From bf819025e506c5c4cf15f87e86aa10bae475c01c Mon Sep 17 00:00:00 2001 From: Ismael Canal Date: Wed, 18 Mar 2026 09:55:53 +0100 Subject: [PATCH 01/21] =?UTF-8?q?feat:=20universal=20theme=20installer=20?= =?UTF-8?q?=E2=80=94=20scraper,=20generators,=20CLI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add rampa theme subcommand that installs color themes for 10 apps: Ghostty, iTerm2, Alacritty, Kitty, Windows Terminal, Warp, Hyper, VSCode, Xcode, and Android Studio. - Theme YAML schema with ANSI colors + metadata (contrast, accent, mode, hue) - Scraper fetches ~20k themes from VSCode Marketplace API - 10 generators output native format per target app - CLI: rampa theme list, --show, --install , --dry-run Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- cli/src/index.ts | 11 + cli/src/theme-generators/alacritty.ts | 54 +++ cli/src/theme-generators/android-studio.ts | 77 ++++ cli/src/theme-generators/base.ts | 37 ++ cli/src/theme-generators/ghostty.ts | 37 ++ cli/src/theme-generators/hyper.ts | 50 +++ cli/src/theme-generators/index.ts | 35 ++ cli/src/theme-generators/iterm2.ts | 73 ++++ cli/src/theme-generators/kitty.ts | 34 ++ cli/src/theme-generators/vscode.ts | 47 ++ cli/src/theme-generators/warp.ts | 46 ++ cli/src/theme-generators/windows-terminal.ts | 44 ++ cli/src/theme-generators/xcode.ts | 79 ++++ cli/src/theme-schema.ts | 200 +++++++++ cli/src/theme.ts | 416 ++++++++++++++++++ scripts/scrape-themes.ts | 435 +++++++++++++++++++ 16 files changed, 1675 insertions(+) create mode 100644 cli/src/theme-generators/alacritty.ts create mode 100644 cli/src/theme-generators/android-studio.ts create mode 100644 cli/src/theme-generators/base.ts create mode 100644 cli/src/theme-generators/ghostty.ts create mode 100644 cli/src/theme-generators/hyper.ts create mode 100644 cli/src/theme-generators/index.ts create mode 100644 cli/src/theme-generators/iterm2.ts create mode 100644 cli/src/theme-generators/kitty.ts create mode 100644 cli/src/theme-generators/vscode.ts create mode 100644 cli/src/theme-generators/warp.ts create mode 100644 cli/src/theme-generators/windows-terminal.ts create mode 100644 cli/src/theme-generators/xcode.ts create mode 100644 cli/src/theme-schema.ts create mode 100644 cli/src/theme.ts create mode 100644 scripts/scrape-themes.ts diff --git a/cli/src/index.ts b/cli/src/index.ts index 842197db..67dbb00e 100644 --- a/cli/src/index.ts +++ b/cli/src/index.ts @@ -64,6 +64,13 @@ if (args[0] === 'palette') { process.exit(0); } +// Intercept theme subcommand +if (args[0] === 'theme') { + const { runTheme } = await import('./theme'); + await runTheme(args.slice(1)); + process.exit(0); +} + if (args.includes('--help') || args.includes('-h') || args.includes('help') || args.length === 0) { showHelp(); } @@ -157,6 +164,10 @@ IMAGE PALETTE ${cyan}rampa palette${reset} ${dim}Extract color palettes from images${reset} ${dim}Use rampa palette --help for details${reset} +COLOR THEMES + ${cyan}rampa theme${reset} ${dim}Install color themes for any terminal or editor${reset} + ${dim}Use rampa theme --help for details${reset} + OTHER ${cyan}-h, --help${reset} ${dim}Show this help${reset} ${cyan}-v, --version${reset} ${dim}Show version${reset} diff --git a/cli/src/theme-generators/alacritty.ts b/cli/src/theme-generators/alacritty.ts new file mode 100644 index 00000000..50f2dc02 --- /dev/null +++ b/cli/src/theme-generators/alacritty.ts @@ -0,0 +1,54 @@ +import type { ThemeYAML } from '../theme-schema'; +import type { ThemeGenerator } from './base'; +import { themeFileName } from './base'; + +const NORMAL_KEYS = ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white'] as const; + +export const alacrittyGenerator: ThemeGenerator = { + name: 'alacritty', + + generate(theme: ThemeYAML): string { + const c = theme.colors; + const lines: string[] = []; + + lines.push('[colors.primary]'); + lines.push(`background = "${c.bg}"`); + lines.push(`foreground = "${c.fg}"`); + lines.push(''); + lines.push('[colors.cursor]'); + lines.push(`cursor = "${c.fg}"`); + lines.push(`text = "${c.bg}"`); + lines.push(''); + lines.push('[colors.normal]'); + lines.push(`black = "${c.black}"`); + lines.push(`red = "${c.red}"`); + lines.push(`green = "${c.green}"`); + lines.push(`yellow = "${c.yellow}"`); + lines.push(`blue = "${c.blue}"`); + lines.push(`magenta = "${c.magenta}"`); + lines.push(`cyan = "${c.cyan}"`); + lines.push(`white = "${c.white}"`); + lines.push(''); + lines.push('[colors.bright]'); + lines.push(`black = "${c.brightBlack}"`); + lines.push(`red = "${c.brightRed}"`); + lines.push(`green = "${c.brightGreen}"`); + lines.push(`yellow = "${c.brightYellow}"`); + lines.push(`blue = "${c.brightBlue}"`); + lines.push(`magenta = "${c.brightMagenta}"`); + lines.push(`cyan = "${c.brightCyan}"`); + lines.push(`white = "${c.brightWhite}"`); + + return lines.join('\n') + '\n'; + }, + + installPath(os) { + if (os === 'darwin' || os === 'linux') return '~/.config/alacritty/themes'; + if (os === 'win32') return '%APPDATA%\\alacritty\\themes'; + return null; + }, + + fileExtension() { + return '.toml'; + }, +}; diff --git a/cli/src/theme-generators/android-studio.ts b/cli/src/theme-generators/android-studio.ts new file mode 100644 index 00000000..f9c914d4 --- /dev/null +++ b/cli/src/theme-generators/android-studio.ts @@ -0,0 +1,77 @@ +import type { ThemeYAML } from '../theme-schema'; +import type { ThemeGenerator } from './base'; +import { hexToRgb } from './base'; + +function iclsColor(hex: string): string { + const [r, g, b] = hexToRgb(hex); + return (r << 16 | g << 8 | b).toString(); +} + +function option(name: string, hex: string): string { + return ` `; +} + +export const androidStudioGenerator: ThemeGenerator = { + name: 'android-studio', + + generate(theme: ThemeYAML): string { + const c = theme.colors; + const lines: string[] = []; + + lines.push(''); + lines.push(``); + lines.push(' '); + lines.push(` '); + lines.push(' '); + lines.push(` `); + + // Console ANSI colors + const mapping: [string, string][] = [ + ['CONSOLE_BLACK_OUTPUT', c.black], + ['CONSOLE_RED_OUTPUT', c.red], + ['CONSOLE_GREEN_OUTPUT', c.green], + ['CONSOLE_YELLOW_OUTPUT', c.yellow], + ['CONSOLE_BLUE_OUTPUT', c.blue], + ['CONSOLE_MAGENTA_OUTPUT', c.magenta], + ['CONSOLE_CYAN_OUTPUT', c.cyan], + ['CONSOLE_WHITE_OUTPUT', c.white], + ['CONSOLE_BLACK_BRIGHT_OUTPUT', c.brightBlack], + ['CONSOLE_RED_BRIGHT_OUTPUT', c.brightRed], + ['CONSOLE_GREEN_BRIGHT_OUTPUT', c.brightGreen], + ['CONSOLE_YELLOW_BRIGHT_OUTPUT', c.brightYellow], + ['CONSOLE_BLUE_BRIGHT_OUTPUT', c.brightBlue], + ['CONSOLE_MAGENTA_BRIGHT_OUTPUT', c.brightMagenta], + ['CONSOLE_CYAN_BRIGHT_OUTPUT', c.brightCyan], + ['CONSOLE_WHITE_BRIGHT_OUTPUT', c.brightWhite], + ]; + + for (const [name, hex] of mapping) { + lines.push(option(name, hex)); + } + + lines.push(' '); + lines.push(''); + + return lines.join('\n') + '\n'; + }, + + installPath(os) { + if (os === 'darwin') return '~/Library/Application Support/Google/AndroidStudio/colors'; + if (os === 'linux') return '~/.config/Google/AndroidStudio/colors'; + if (os === 'win32') return '%APPDATA%\\Google\\AndroidStudio\\colors'; + return null; + }, + + fileExtension() { + return '.icls'; + }, +}; diff --git a/cli/src/theme-generators/base.ts b/cli/src/theme-generators/base.ts new file mode 100644 index 00000000..a60b6c76 --- /dev/null +++ b/cli/src/theme-generators/base.ts @@ -0,0 +1,37 @@ +import type { ThemeYAML, ThemeColors } from '../theme-schema'; + +export interface ThemeGenerator { + name: string; + generate(theme: ThemeYAML): string; + installPath(os: 'darwin' | 'linux' | 'win32'): string | null; + fileExtension(): string; +} + +export function themeFileName(theme: ThemeYAML, ext: string): string { + return theme.name.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-|-$/g, '') + ext; +} + +/** Hex to [r, g, b] 0-255 */ +export function hexToRgb(hex: string): [number, number, number] { + const h = hex.replace('#', ''); + return [ + parseInt(h.slice(0, 2), 16), + parseInt(h.slice(2, 4), 16), + parseInt(h.slice(4, 6), 16), + ]; +} + +/** Hex to [r, g, b] 0.0-1.0 */ +export function hexToRgbFloat(hex: string): [number, number, number] { + const [r, g, b] = hexToRgb(hex); + return [r / 255, g / 255, b / 255]; +} + +/** All ANSI colors as ordered array [black..brightWhite] */ +export function ansiArray(c: ThemeColors): string[] { + return [ + c.black, c.red, c.green, c.yellow, c.blue, c.magenta, c.cyan, c.white, + c.brightBlack, c.brightRed, c.brightGreen, c.brightYellow, + c.brightBlue, c.brightMagenta, c.brightCyan, c.brightWhite, + ]; +} diff --git a/cli/src/theme-generators/ghostty.ts b/cli/src/theme-generators/ghostty.ts new file mode 100644 index 00000000..ee3fb7b1 --- /dev/null +++ b/cli/src/theme-generators/ghostty.ts @@ -0,0 +1,37 @@ +import type { ThemeYAML } from '../theme-schema'; +import type { ThemeGenerator } from './base'; +import { themeFileName, ansiArray } from './base'; + +const ANSI_NAMES = [ + 'black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white', + 'bright_black', 'bright_red', 'bright_green', 'bright_yellow', + 'bright_blue', 'bright_magenta', 'bright_cyan', 'bright_white', +]; + +export const ghosttyGenerator: ThemeGenerator = { + name: 'ghostty', + + generate(theme: ThemeYAML): string { + const lines: string[] = []; + lines.push(`background = ${theme.colors.bg}`); + lines.push(`foreground = ${theme.colors.fg}`); + lines.push(`cursor-color = ${theme.colors.fg}`); + + const colors = ansiArray(theme.colors); + for (let i = 0; i < 16; i++) { + lines.push(`palette = ${i}=${colors[i]}`); + } + + return lines.join('\n') + '\n'; + }, + + installPath(os) { + if (os === 'darwin' || os === 'linux') return '~/.config/ghostty/themes'; + if (os === 'win32') return '%APPDATA%\\ghostty\\themes'; + return null; + }, + + fileExtension() { + return ''; + }, +}; diff --git a/cli/src/theme-generators/hyper.ts b/cli/src/theme-generators/hyper.ts new file mode 100644 index 00000000..1de7d80b --- /dev/null +++ b/cli/src/theme-generators/hyper.ts @@ -0,0 +1,50 @@ +import type { ThemeYAML } from '../theme-schema'; +import type { ThemeGenerator } from './base'; + +export const hyperGenerator: ThemeGenerator = { + name: 'hyper', + + generate(theme: ThemeYAML): string { + const c = theme.colors; + const lines: string[] = []; + + lines.push(`// ${theme.name} — Hyper theme`); + lines.push(`// Generated by rampa`); + lines.push('module.exports = {'); + lines.push(' colors: {'); + lines.push(` black: '${c.black}',`); + lines.push(` red: '${c.red}',`); + lines.push(` green: '${c.green}',`); + lines.push(` yellow: '${c.yellow}',`); + lines.push(` blue: '${c.blue}',`); + lines.push(` magenta: '${c.magenta}',`); + lines.push(` cyan: '${c.cyan}',`); + lines.push(` white: '${c.white}',`); + lines.push(` lightBlack: '${c.brightBlack}',`); + lines.push(` lightRed: '${c.brightRed}',`); + lines.push(` lightGreen: '${c.brightGreen}',`); + lines.push(` lightYellow: '${c.brightYellow}',`); + lines.push(` lightBlue: '${c.brightBlue}',`); + lines.push(` lightMagenta: '${c.brightMagenta}',`); + lines.push(` lightCyan: '${c.brightCyan}',`); + lines.push(` lightWhite: '${c.brightWhite}',`); + lines.push(' },'); + lines.push(` backgroundColor: '${c.bg}',`); + lines.push(` foregroundColor: '${c.fg}',`); + lines.push(` cursorColor: '${c.fg}',`); + lines.push(` selectionColor: '${c.brightBlack}80',`); + lines.push('};'); + + return lines.join('\n') + '\n'; + }, + + installPath(os) { + if (os === 'darwin' || os === 'linux') return '~/.hyper_plugins/local'; + if (os === 'win32') return '%APPDATA%\\Hyper\\.hyper_plugins\\local'; + return null; + }, + + fileExtension() { + return '.js'; + }, +}; diff --git a/cli/src/theme-generators/index.ts b/cli/src/theme-generators/index.ts new file mode 100644 index 00000000..1fcbed8d --- /dev/null +++ b/cli/src/theme-generators/index.ts @@ -0,0 +1,35 @@ +import type { ThemeGenerator } from './base'; +import { ghosttyGenerator } from './ghostty'; +import { iterm2Generator } from './iterm2'; +import { alacrittyGenerator } from './alacritty'; +import { kittyGenerator } from './kitty'; +import { windowsTerminalGenerator } from './windows-terminal'; +import { warpGenerator } from './warp'; +import { hyperGenerator } from './hyper'; +import { vscodeGenerator } from './vscode'; +import { xcodeGenerator } from './xcode'; +import { androidStudioGenerator } from './android-studio'; + +export const generators: Record = { + ghostty: ghosttyGenerator, + iterm2: iterm2Generator, + iterm: iterm2Generator, + alacritty: alacrittyGenerator, + kitty: kittyGenerator, + 'windows-terminal': windowsTerminalGenerator, + wt: windowsTerminalGenerator, + warp: warpGenerator, + hyper: hyperGenerator, + vscode: vscodeGenerator, + xcode: xcodeGenerator, + 'android-studio': androidStudioGenerator, +}; + +export const SUPPORTED_APPS = [ + 'ghostty', 'iterm2', 'alacritty', 'kitty', + 'windows-terminal', 'warp', 'hyper', 'vscode', + 'xcode', 'android-studio', +]; + +export type { ThemeGenerator } from './base'; +export { themeFileName } from './base'; diff --git a/cli/src/theme-generators/iterm2.ts b/cli/src/theme-generators/iterm2.ts new file mode 100644 index 00000000..d7866883 --- /dev/null +++ b/cli/src/theme-generators/iterm2.ts @@ -0,0 +1,73 @@ +import type { ThemeYAML } from '../theme-schema'; +import type { ThemeGenerator } from './base'; +import { themeFileName, hexToRgbFloat } from './base'; + +function colorDict(hex: string): string { + const [r, g, b] = hexToRgbFloat(hex); + return [ + '\t\t', + `\t\t\tAlpha Component`, + `\t\t\t1`, + `\t\t\tBlue Component`, + `\t\t\t${b}`, + `\t\t\tColor Space`, + `\t\t\tsRGB`, + `\t\t\tGreen Component`, + `\t\t\t${g}`, + `\t\t\tRed Component`, + `\t\t\t${r}`, + '\t\t', + ].join('\n'); +} + +function entry(name: string, hex: string): string { + return `\t${name}\n${colorDict(hex)}`; +} + +const ANSI_NAMES = [ + 'Ansi 0 Color', 'Ansi 1 Color', 'Ansi 2 Color', 'Ansi 3 Color', + 'Ansi 4 Color', 'Ansi 5 Color', 'Ansi 6 Color', 'Ansi 7 Color', + 'Ansi 8 Color', 'Ansi 9 Color', 'Ansi 10 Color', 'Ansi 11 Color', + 'Ansi 12 Color', 'Ansi 13 Color', 'Ansi 14 Color', 'Ansi 15 Color', +]; + +import { ansiArray } from './base'; + +export const iterm2Generator: ThemeGenerator = { + name: 'iterm2', + + generate(theme: ThemeYAML): string { + const lines: string[] = []; + lines.push(''); + lines.push(''); + lines.push(''); + lines.push(''); + + const colors = ansiArray(theme.colors); + for (let i = 0; i < 16; i++) { + lines.push(entry(ANSI_NAMES[i], colors[i])); + } + + lines.push(entry('Background Color', theme.colors.bg)); + lines.push(entry('Foreground Color', theme.colors.fg)); + lines.push(entry('Cursor Color', theme.colors.fg)); + lines.push(entry('Cursor Text Color', theme.colors.bg)); + lines.push(entry('Selection Color', theme.colors.brightBlack)); + lines.push(entry('Selected Text Color', theme.colors.fg)); + + lines.push(''); + lines.push(''); + + return lines.join('\n') + '\n'; + }, + + installPath(os) { + // iTerm2 imports from any location — suggest a reasonable default + if (os === 'darwin') return '~/Library/Application Support/iTerm2/DynamicProfiles'; + return null; + }, + + fileExtension() { + return '.itermcolors'; + }, +}; diff --git a/cli/src/theme-generators/kitty.ts b/cli/src/theme-generators/kitty.ts new file mode 100644 index 00000000..33d0daf7 --- /dev/null +++ b/cli/src/theme-generators/kitty.ts @@ -0,0 +1,34 @@ +import type { ThemeYAML } from '../theme-schema'; +import type { ThemeGenerator } from './base'; +import { ansiArray } from './base'; + +export const kittyGenerator: ThemeGenerator = { + name: 'kitty', + + generate(theme: ThemeYAML): string { + const lines: string[] = []; + lines.push(`background ${theme.colors.bg}`); + lines.push(`foreground ${theme.colors.fg}`); + lines.push(`cursor ${theme.colors.fg}`); + lines.push(`cursor_text_color ${theme.colors.bg}`); + lines.push(`selection_background ${theme.colors.brightBlack}`); + lines.push(`selection_foreground ${theme.colors.fg}`); + lines.push(''); + + const colors = ansiArray(theme.colors); + for (let i = 0; i < 16; i++) { + lines.push(`color${i} ${colors[i]}`); + } + + return lines.join('\n') + '\n'; + }, + + installPath(os) { + if (os === 'darwin' || os === 'linux') return '~/.config/kitty/themes'; + return null; + }, + + fileExtension() { + return '.conf'; + }, +}; diff --git a/cli/src/theme-generators/vscode.ts b/cli/src/theme-generators/vscode.ts new file mode 100644 index 00000000..b22b13ae --- /dev/null +++ b/cli/src/theme-generators/vscode.ts @@ -0,0 +1,47 @@ +import type { ThemeYAML } from '../theme-schema'; +import type { ThemeGenerator } from './base'; + +export const vscodeGenerator: ThemeGenerator = { + name: 'vscode', + + generate(theme: ThemeYAML): string { + const c = theme.colors; + const data = { + name: theme.name, + type: theme.meta.mode === 'dark' ? 'dark' : 'light', + colors: { + 'editor.background': c.bg, + 'editor.foreground': c.fg, + 'terminal.background': c.bg, + 'terminal.foreground': c.fg, + 'terminal.ansiBlack': c.black, + 'terminal.ansiRed': c.red, + 'terminal.ansiGreen': c.green, + 'terminal.ansiYellow': c.yellow, + 'terminal.ansiBlue': c.blue, + 'terminal.ansiMagenta': c.magenta, + 'terminal.ansiCyan': c.cyan, + 'terminal.ansiWhite': c.white, + 'terminal.ansiBrightBlack': c.brightBlack, + 'terminal.ansiBrightRed': c.brightRed, + 'terminal.ansiBrightGreen': c.brightGreen, + 'terminal.ansiBrightYellow': c.brightYellow, + 'terminal.ansiBrightBlue': c.brightBlue, + 'terminal.ansiBrightMagenta': c.brightMagenta, + 'terminal.ansiBrightCyan': c.brightCyan, + 'terminal.ansiBrightWhite': c.brightWhite, + }, + }; + + return JSON.stringify(data, null, 2) + '\n'; + }, + + installPath() { + // VSCode themes need to be installed as extensions or added to settings + return null; + }, + + fileExtension() { + return '.json'; + }, +}; diff --git a/cli/src/theme-generators/warp.ts b/cli/src/theme-generators/warp.ts new file mode 100644 index 00000000..31b823bf --- /dev/null +++ b/cli/src/theme-generators/warp.ts @@ -0,0 +1,46 @@ +import type { ThemeYAML } from '../theme-schema'; +import type { ThemeGenerator } from './base'; + +export const warpGenerator: ThemeGenerator = { + name: 'warp', + + generate(theme: ThemeYAML): string { + const c = theme.colors; + const lines: string[] = []; + + lines.push(`accent: "${c.blue}"`); + lines.push(`background: "${c.bg}"`); + lines.push(`foreground: "${c.fg}"`); + lines.push(`cursor: "${c.fg}"`); + lines.push('terminal_colors:'); + lines.push(' normal:'); + lines.push(` black: "${c.black}"`); + lines.push(` red: "${c.red}"`); + lines.push(` green: "${c.green}"`); + lines.push(` yellow: "${c.yellow}"`); + lines.push(` blue: "${c.blue}"`); + lines.push(` magenta: "${c.magenta}"`); + lines.push(` cyan: "${c.cyan}"`); + lines.push(` white: "${c.white}"`); + lines.push(' bright:'); + lines.push(` black: "${c.brightBlack}"`); + lines.push(` red: "${c.brightRed}"`); + lines.push(` green: "${c.brightGreen}"`); + lines.push(` yellow: "${c.brightYellow}"`); + lines.push(` blue: "${c.brightBlue}"`); + lines.push(` magenta: "${c.brightMagenta}"`); + lines.push(` cyan: "${c.brightCyan}"`); + lines.push(` white: "${c.brightWhite}"`); + + return lines.join('\n') + '\n'; + }, + + installPath(os) { + if (os === 'darwin' || os === 'linux') return '~/.warp/themes'; + return null; + }, + + fileExtension() { + return '.yaml'; + }, +}; diff --git a/cli/src/theme-generators/windows-terminal.ts b/cli/src/theme-generators/windows-terminal.ts new file mode 100644 index 00000000..8d7ade42 --- /dev/null +++ b/cli/src/theme-generators/windows-terminal.ts @@ -0,0 +1,44 @@ +import type { ThemeYAML } from '../theme-schema'; +import type { ThemeGenerator } from './base'; + +export const windowsTerminalGenerator: ThemeGenerator = { + name: 'windows-terminal', + + generate(theme: ThemeYAML): string { + const c = theme.colors; + const scheme = { + name: theme.name, + background: c.bg, + foreground: c.fg, + cursorColor: c.fg, + selectionBackground: c.brightBlack, + black: c.black, + red: c.red, + green: c.green, + yellow: c.yellow, + blue: c.blue, + purple: c.magenta, + cyan: c.cyan, + white: c.white, + brightBlack: c.brightBlack, + brightRed: c.brightRed, + brightGreen: c.brightGreen, + brightYellow: c.brightYellow, + brightBlue: c.brightBlue, + brightPurple: c.brightMagenta, + brightCyan: c.brightCyan, + brightWhite: c.brightWhite, + }; + + return JSON.stringify(scheme, null, 2) + '\n'; + }, + + installPath(os) { + if (os === 'win32') return '%LOCALAPPDATA%\\Packages\\Microsoft.WindowsTerminal_8wekyb3d8bbwe\\LocalState'; + return null; + }, + + fileExtension() { + return '.json'; + }, +}; diff --git a/cli/src/theme-generators/xcode.ts b/cli/src/theme-generators/xcode.ts new file mode 100644 index 00000000..a930a80f --- /dev/null +++ b/cli/src/theme-generators/xcode.ts @@ -0,0 +1,79 @@ +import type { ThemeYAML } from '../theme-schema'; +import type { ThemeGenerator } from './base'; +import { hexToRgbFloat } from './base'; + +function xcColorEntry(key: string, hex: string): string { + const [r, g, b] = hexToRgbFloat(hex); + return ` + name + ${key} + red + ${r} + green + ${g} + blue + ${b} + alpha + 1 + `; +} + +export const xcodeGenerator: ThemeGenerator = { + name: 'xcode', + + generate(theme: ThemeYAML): string { + const c = theme.colors; + const lines: string[] = []; + + lines.push(''); + lines.push(''); + lines.push(''); + lines.push(''); + lines.push(' DVTConsoleDebuggerInputTextColor'); + lines.push(xcColorEntry('Debugger Input', c.fg)); + lines.push(' DVTConsoleDebuggerOutputTextColor'); + lines.push(xcColorEntry('Debugger Output', c.fg)); + lines.push(' DVTConsoleDebuggerPromptTextColor'); + lines.push(xcColorEntry('Debugger Prompt', c.blue)); + lines.push(' DVTConsoleExectuableInputTextColor'); + lines.push(xcColorEntry('Executable Input', c.fg)); + lines.push(' DVTConsoleExectuableOutputTextColor'); + lines.push(xcColorEntry('Executable Output', c.fg)); + lines.push(' DVTConsoleTextBackgroundColor'); + lines.push(xcColorEntry('Background', c.bg)); + lines.push(' DVTConsoleTextInsertionPointColor'); + lines.push(xcColorEntry('Cursor', c.fg)); + lines.push(' DVTConsoleTextSelectionColor'); + lines.push(xcColorEntry('Selection', c.brightBlack)); + + // ANSI colors + const ansiNames = [ + 'Black', 'Red', 'Green', 'Yellow', 'Blue', 'Magenta', 'Cyan', 'White', + ]; + const normalColors = [c.black, c.red, c.green, c.yellow, c.blue, c.magenta, c.cyan, c.white]; + const brightColors = [c.brightBlack, c.brightRed, c.brightGreen, c.brightYellow, c.brightBlue, c.brightMagenta, c.brightCyan, c.brightWhite]; + + for (let i = 0; i < 8; i++) { + lines.push(` DVTConsoleANSI${ansiNames[i]}Color`); + lines.push(xcColorEntry(`ANSI ${ansiNames[i]}`, normalColors[i])); + } + for (let i = 0; i < 8; i++) { + lines.push(` DVTConsoleANSIBright${ansiNames[i]}Color`); + lines.push(xcColorEntry(`ANSI Bright ${ansiNames[i]}`, brightColors[i])); + } + + lines.push(''); + lines.push(''); + + return lines.join('\n') + '\n'; + }, + + installPath(os) { + if (os === 'darwin') return '~/Library/Developer/Xcode/UserData/FontAndColorThemes'; + return null; + }, + + fileExtension() { + return '.xccolortheme'; + }, +}; diff --git a/cli/src/theme-schema.ts b/cli/src/theme-schema.ts new file mode 100644 index 00000000..32fb84b6 --- /dev/null +++ b/cli/src/theme-schema.ts @@ -0,0 +1,200 @@ +/** + * Shared types and parser for the universal theme YAML format. + */ + +// ── Types ── + +export interface ThemeSource { + marketplace_id: string; + version: string; + installs: number; + url: string; + author: string; + repo: string | null; +} + +export interface ThemeColors { + bg: string; + fg: string; + black: string; + red: string; + green: string; + yellow: string; + blue: string; + magenta: string; + cyan: string; + white: string; + brightBlack: string; + brightRed: string; + brightGreen: string; + brightYellow: string; + brightBlue: string; + brightMagenta: string; + brightCyan: string; + brightWhite: string; +} + +export interface ThemeContrast { + fg: number; + black: number; + red: number; + green: number; + yellow: number; + blue: number; + magenta: number; + cyan: number; + white: number; + brightBlack: number; + brightRed: number; + brightGreen: number; + brightYellow: number; + brightBlue: number; + brightMagenta: number; + brightCyan: number; + brightWhite: number; +} + +export interface ThemeMeta { + mode: 'dark' | 'light'; + accent: string; + hue: number | null; + contrast: ThemeContrast; +} + +export interface ThemeYAML { + name: string; + source: ThemeSource; + colors: ThemeColors; + meta: ThemeMeta; +} + +// ── ANSI color key ordering (for iteration) ── + +export const ANSI_KEYS = [ + 'black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white', + 'brightBlack', 'brightRed', 'brightGreen', 'brightYellow', + 'brightBlue', 'brightMagenta', 'brightCyan', 'brightWhite', +] as const; + +export const COLOR_KEYS = ['bg', 'fg', ...ANSI_KEYS] as const; + +// ── Parser ── + +const HEX_RE = /^#[0-9a-fA-F]{6}$/; + +function stripYamlComment(line: string): string { + // Don't strip # if it's inside quotes + let inQuote = false; + let quoteChar = ''; + for (let i = 0; i < line.length; i++) { + const ch = line[i]; + if (!inQuote && (ch === '"' || ch === "'")) { + inQuote = true; + quoteChar = ch; + } else if (inQuote && ch === quoteChar) { + inQuote = false; + } else if (!inQuote && ch === '#') { + // Only treat as comment if preceded by whitespace or at start + if (i === 0 || /\s/.test(line[i - 1])) { + return line.slice(0, i); + } + } + } + return line; +} + +export function parseThemeYAML(raw: string): ThemeYAML { + const lines = raw.split('\n'); + const data: Record = {}; + const stack: { indent: number; obj: Record }[] = [{ indent: -1, obj: data }]; + + for (const line of lines) { + // Strip comments but preserve # in quoted strings + const trimmed = stripYamlComment(line).trimEnd(); + if (!trimmed || trimmed.trim() === '') continue; + + const indent = line.search(/\S/); + const match = trimmed.match(/^(\s*)([^:]+):\s*(.*)$/); + if (!match) continue; + + const key = match[2].trim(); + const value = match[3].trim(); + + // Pop stack to find parent + while (stack.length > 1 && stack[stack.length - 1].indent >= indent) { + stack.pop(); + } + const parent = stack[stack.length - 1].obj; + + if (value === '') { + // Nested object + const child: Record = {}; + parent[key] = child; + stack.push({ indent, obj: child }); + } else { + // Scalar value + parent[key] = parseScalar(value); + } + } + + return validateTheme(data); +} + +function parseScalar(value: string): string | number | null { + if (value === 'null' || value === '~') return null; + const unquoted = value.replace(/^["']|["']$/g, ''); + if (HEX_RE.test(unquoted)) return unquoted; + const num = Number(value); + if (!isNaN(num) && value !== '') return num; + return unquoted; +} + +function validateTheme(data: Record): ThemeYAML { + if (!data.name || typeof data.name !== 'string') { + throw new Error('Theme missing required field: name'); + } + if (!data.colors || typeof data.colors !== 'object') { + throw new Error('Theme missing required field: colors'); + } + + for (const key of COLOR_KEYS) { + const val = data.colors[key]; + if (!val || !HEX_RE.test(val)) { + throw new Error(`Theme colors.${key} missing or invalid: ${val}`); + } + } + + return data as ThemeYAML; +} + +// ── Serializer ── + +export function serializeThemeYAML(theme: ThemeYAML): string { + const lines: string[] = []; + lines.push(`name: "${theme.name}"`); + + lines.push('source:'); + lines.push(` marketplace_id: "${theme.source.marketplace_id}"`); + lines.push(` version: "${theme.source.version}"`); + lines.push(` installs: ${theme.source.installs}`); + lines.push(` author: "${theme.source.author}"`); + lines.push(` repo: ${theme.source.repo ? '"' + theme.source.repo + '"' : 'null'}`); + lines.push(` url: "${theme.source.url}"`); + + lines.push('colors:'); + for (const key of COLOR_KEYS) { + lines.push(` ${key}: "${theme.colors[key as keyof ThemeColors]}"`); + } + + lines.push('meta:'); + lines.push(` mode: "${theme.meta.mode}"`); + lines.push(` accent: "${theme.meta.accent}"`); + lines.push(` hue: ${theme.meta.hue === null ? 'null' : theme.meta.hue}`); + lines.push(' contrast:'); + for (const key of ['fg', ...ANSI_KEYS]) { + const val = theme.meta.contrast[key as keyof ThemeContrast]; + lines.push(` ${key}: ${Math.round(val * 10) / 10}`); + } + + return lines.join('\n') + '\n'; +} diff --git a/cli/src/theme.ts b/cli/src/theme.ts new file mode 100644 index 00000000..8e350291 --- /dev/null +++ b/cli/src/theme.ts @@ -0,0 +1,416 @@ +#!/usr/bin/env node +/** + * rampa theme — Universal theme installer + * + * Usage: + * rampa theme list + * rampa theme "Dracula" --show + * rampa theme "Dracula" --install ghostty + * rampa theme "Dracula" --install ghostty --dry-run + */ + +import { readFileSync, writeFileSync, mkdirSync, existsSync, readdirSync } from 'node:fs'; +import { join, resolve, dirname } from 'node:path'; +import { homedir, platform } from 'node:os'; +import { parseThemeYAML, type ThemeYAML } from './theme-schema'; +import { generators, SUPPORTED_APPS, themeFileName } from './theme-generators/index'; +import { supportsTruecolor } from './utils/terminal-colors'; + +function hexToRgbTuple(hex: string): [number, number, number] { + const h = hex.replace('#', ''); + return [parseInt(h.slice(0, 2), 16), parseInt(h.slice(2, 4), 16), parseInt(h.slice(4, 6), 16)]; +} + +function colorSwatch(hex: string): string { + const [r, g, b] = hexToRgbTuple(hex); + return `\x1b[38;2;${r};${g};${b}m■\x1b[0m`; +} + +// ── Constants ── + +const GITHUB_RAW_BASE = 'https://raw.githubusercontent.com/basiclines/rampa-studio/main/themes'; + +// ── Args ── + +interface ThemeArgs { + command: 'list' | 'show' | 'install'; + name: string; + app: string; + dryRun: boolean; + local: boolean; +} + +function showThemeHelp(): void { + const cyan = '\x1b[36m'; + const dim = '\x1b[2m'; + const reset = '\x1b[0m'; + const bold = '\x1b[1m'; + + const help = ` +${bold}rampa theme${reset} — Universal color theme installer + +${bold}USAGE${reset} + ${cyan}rampa theme list${reset} ${dim}List all available themes${reset} + ${cyan}rampa theme "Dracula" --show${reset} ${dim}Show theme colors${reset} + ${cyan}rampa theme "Dracula" --install ghostty${reset} ${dim}Install theme for an app${reset} + ${cyan}rampa theme "Dracula" --install ghostty --dry-run${reset} ${dim}Preview without writing${reset} + +${bold}SUPPORTED APPS${reset} + ${SUPPORTED_APPS.map(a => `${cyan}${a}${reset}`).join(', ')} + +${bold}OPTIONS${reset} + ${cyan}--install ${reset} ${dim}Target app to generate theme for${reset} + ${cyan}--show${reset} ${dim}Print theme colors and metadata${reset} + ${cyan}--dry-run${reset} ${dim}Print generated output without writing file${reset} + ${cyan}--local${reset} ${dim}Use local themes/ directory instead of fetching from GitHub${reset} + ${cyan}-h, --help${reset} ${dim}Show this help${reset} + +${bold}EXAMPLES${reset} + ${cyan}rampa theme list${reset} + ${cyan}rampa theme "Tokyo Night" --show${reset} + ${cyan}rampa theme "Gruvbox Dark Hard" --install alacritty${reset} + ${cyan}rampa theme "Dracula" --install ghostty,kitty,iterm2${reset} + ${cyan}rampa theme "Catppuccin Mocha" --install warp --dry-run${reset} +`; + console.log(help); + process.exit(0); +} + +export function parseThemeArgs(argv: string[]): ThemeArgs { + const args: ThemeArgs = { + command: 'list', + name: '', + app: '', + dryRun: false, + local: false, + }; + + let i = 0; + while (i < argv.length) { + const arg = argv[i]; + + if (arg === '--help' || arg === '-h') { + showThemeHelp(); + } + + if (arg === '--install' && argv[i + 1]) { + args.command = 'install'; + args.app = argv[++i]; + i++; + continue; + } + + if (arg === '--show') { + args.command = 'show'; + i++; + continue; + } + + if (arg === '--dry-run') { + args.dryRun = true; + i++; + continue; + } + + if (arg === '--local') { + args.local = true; + i++; + continue; + } + + if (arg === 'list') { + args.command = 'list'; + i++; + continue; + } + + // Positional: theme name + if (!arg.startsWith('-') && !args.name) { + args.name = arg; + i++; + continue; + } + + i++; + } + + return args; +} + +// ── Theme loading ── + +function resolveThemesDir(): string { + // Walk up from __dirname to find themes/ + let dir = dirname(new URL(import.meta.url).pathname); + for (let i = 0; i < 10; i++) { + const candidate = join(dir, 'themes'); + if (existsSync(candidate)) return candidate; + dir = dirname(dir); + } + // Fallback: CWD + return join(process.cwd(), 'themes'); +} + +async function fetchIndex(local: boolean): Promise> { + if (local) { + const themesDir = resolveThemesDir(); + const indexPath = join(themesDir, 'index.json'); + if (existsSync(indexPath)) { + return JSON.parse(readFileSync(indexPath, 'utf8')); + } + // Build index from directory listing + const files = readdirSync(themesDir).filter(f => f.endsWith('.yaml')); + const index: Record = {}; + for (const f of files) { + const raw = readFileSync(join(themesDir, f), 'utf8'); + const nameMatch = raw.match(/^name:\s*"?([^"\n]+)"?/m); + if (nameMatch) { + index[nameMatch[1]] = f; + } + } + return index; + } + + // Fetch from GitHub + const url = `${GITHUB_RAW_BASE}/index.json`; + const res = await fetch(url); + if (!res.ok) { + console.error(`Failed to fetch theme index from ${url} (${res.status})`); + console.error('Try using --local if you have themes/ locally'); + process.exit(1); + } + return res.json(); +} + +async function fetchTheme(filename: string, local: boolean): Promise { + let raw: string; + + if (local) { + const themesDir = resolveThemesDir(); + raw = readFileSync(join(themesDir, filename), 'utf8'); + } else { + const url = `${GITHUB_RAW_BASE}/${filename}`; + const res = await fetch(url); + if (!res.ok) { + console.error(`Failed to fetch theme: ${url} (${res.status})`); + process.exit(1); + } + raw = await res.text(); + } + + return parseThemeYAML(raw); +} + +function findTheme(index: Record, name: string): string | null { + // Exact match + if (index[name]) return index[name]; + + // Case-insensitive match + const lower = name.toLowerCase(); + for (const [key, file] of Object.entries(index)) { + if (key.toLowerCase() === lower) return file; + } + + // Fuzzy: check if query is contained in theme name + for (const [key, file] of Object.entries(index)) { + if (key.toLowerCase().includes(lower)) return file; + } + + return null; +} + +// ── Path resolution ── + +function resolveInstallPath(basePath: string): string { + let resolved = basePath; + if (resolved.startsWith('~')) { + resolved = resolved.replace('~', homedir()); + } + if (resolved.includes('%APPDATA%')) { + resolved = resolved.replace('%APPDATA%', process.env.APPDATA || ''); + } + if (resolved.includes('%LOCALAPPDATA%')) { + resolved = resolved.replace('%LOCALAPPDATA%', process.env.LOCALAPPDATA || ''); + } + return resolve(resolved); +} + +// ── Commands ── + +async function listThemes(local: boolean): Promise { + const index = await fetchIndex(local); + const entries = Object.entries(index); + + if (entries.length === 0) { + console.log('No themes found. Run the scraper first or check your themes/ directory.'); + return; + } + + console.log(`\n ${entries.length} themes available:\n`); + for (const [name] of entries.sort((a, b) => a[0].localeCompare(b[0]))) { + console.log(` ${name}`); + } + console.log(''); +} + +async function showTheme(name: string, local: boolean): Promise { + const index = await fetchIndex(local); + const file = findTheme(index, name); + if (!file) { + console.error(`Theme not found: "${name}"`); + suggestSimilar(name, Object.keys(index)); + process.exit(1); + } + + const theme = await fetchTheme(file, local); + const canPreview = supportsTruecolor(); + + const cyan = '\x1b[36m'; + const dim = '\x1b[2m'; + const reset = '\x1b[0m'; + const bold = '\x1b[1m'; + + console.log(`\n ${bold}${theme.name}${reset} ${dim}(${theme.meta.mode})${reset}`); + console.log(` ${dim}by ${theme.source.author}${reset}`); + if (theme.source.repo) { + console.log(` ${dim}${theme.source.repo}${reset}`); + } + console.log(` ${dim}${theme.source.url}${reset}`); + console.log(` ${dim}${theme.source.installs.toLocaleString()} installs${reset}\n`); + + const printColor = (label: string, hex: string, contrast?: number) => { + const swatch = canPreview ? colorSwatch(hex) + ' ' : ''; + const contrastStr = contrast !== undefined ? ` ${dim}Lc ${contrast}${reset}` : ''; + console.log(` ${swatch}${hex} ${cyan}${label.padEnd(14)}${reset}${contrastStr}`); + }; + + printColor('bg', theme.colors.bg); + printColor('fg', theme.colors.fg, theme.meta.contrast.fg); + console.log(''); + + const ansiLabels = [ + 'black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white', + ] as const; + + for (const label of ansiLabels) { + const c = theme.colors[label]; + printColor(label, c, theme.meta.contrast[label]); + } + console.log(''); + for (const label of ansiLabels) { + const brightLabel = `bright${label.charAt(0).toUpperCase() + label.slice(1)}` as keyof typeof theme.colors; + const c = theme.colors[brightLabel]; + const contrastKey = brightLabel as keyof typeof theme.meta.contrast; + printColor(brightLabel, c, theme.meta.contrast[contrastKey]); + } + + console.log(`\n ${dim}accent: ${theme.meta.accent} hue: ${theme.meta.hue ?? 'none'}${reset}\n`); +} + +async function installTheme(name: string, appList: string, dryRun: boolean, local: boolean): Promise { + const index = await fetchIndex(local); + const file = findTheme(index, name); + if (!file) { + console.error(`Theme not found: "${name}"`); + suggestSimilar(name, Object.keys(index)); + process.exit(1); + } + + const theme = await fetchTheme(file, local); + const apps = appList.split(',').map(a => a.trim().toLowerCase()); + + const green = '\x1b[32m'; + const red = '\x1b[31m'; + const cyan = '\x1b[36m'; + const dim = '\x1b[2m'; + const reset = '\x1b[0m'; + + for (const app of apps) { + const generator = generators[app]; + if (!generator) { + console.error(`${red}✗${reset} Unknown app: "${app}". Supported: ${SUPPORTED_APPS.join(', ')}`); + continue; + } + + const content = generator.generate(theme); + const os = platform() as 'darwin' | 'linux' | 'win32'; + const basePath = generator.installPath(os); + const ext = generator.fileExtension(); + const fileName = themeFileName(theme, ext); + + if (dryRun) { + console.log(`\n${cyan}── ${generator.name}: ${fileName} ──${reset}\n`); + if (basePath) { + console.log(`${dim}Would write to: ${resolveInstallPath(basePath)}/${fileName}${reset}\n`); + } else { + console.log(`${dim}No install path for ${os} — output only${reset}\n`); + } + console.log(content); + continue; + } + + if (!basePath) { + console.log(`${red}✗${reset} ${generator.name}: not supported on ${os}`); + // Still output the content so the user can manually use it + console.log(`${dim}Generated content:${reset}\n`); + console.log(content); + continue; + } + + const dir = resolveInstallPath(basePath); + const filePath = join(dir, fileName); + + try { + mkdirSync(dir, { recursive: true }); + writeFileSync(filePath, content, 'utf8'); + console.log(`${green}✓${reset} ${generator.name}: ${filePath}`); + } catch (err: any) { + console.error(`${red}✗${reset} ${generator.name}: ${err.message}`); + } + } +} + +function suggestSimilar(query: string, names: string[]): void { + const lower = query.toLowerCase(); + const matches = names + .filter(n => n.toLowerCase().includes(lower) || lower.includes(n.toLowerCase())) + .slice(0, 5); + if (matches.length > 0) { + const dim = '\x1b[2m'; + const reset = '\x1b[0m'; + console.error(`${dim}Did you mean: ${matches.join(', ')}?${reset}`); + } +} + +// ── Main ── + +export async function runTheme(argv: string[]): Promise { + const args = parseThemeArgs(argv); + + switch (args.command) { + case 'list': + await listThemes(args.local); + break; + + case 'show': + if (!args.name) { + console.error('Usage: rampa theme --show'); + process.exit(1); + } + await showTheme(args.name, args.local); + break; + + case 'install': + if (!args.name) { + console.error('Usage: rampa theme --install '); + process.exit(1); + } + if (!args.app) { + console.error('Usage: rampa theme --install '); + console.error(`Supported apps: ${SUPPORTED_APPS.join(', ')}`); + process.exit(1); + } + await installTheme(args.name, args.app, args.dryRun, args.local); + break; + } +} diff --git a/scripts/scrape-themes.ts b/scripts/scrape-themes.ts new file mode 100644 index 00000000..9fef96b0 --- /dev/null +++ b/scripts/scrape-themes.ts @@ -0,0 +1,435 @@ +/** + * Theme Scraper — Fetches color themes from VSCode Marketplace + * + * Paginates the full catalog of color-theme extensions, downloads each VSIX, + * extracts terminal ANSI colors, and writes enriched YAML theme files. + * + * Usage: bun run scripts/scrape-themes.ts [--limit N] [--concurrency N] + */ + +import { mkdirSync, writeFileSync, existsSync, readFileSync } from 'node:fs'; +import { join } from 'node:path'; +import { createHash } from 'node:crypto'; +import { serializeThemeYAML, ANSI_KEYS, type ThemeYAML, type ThemeColors, type ThemeContrast } from '../cli/src/theme-schema'; +import { computeApcaLc } from '../src/engine/ApcaEngine'; +import { hexToOklch } from '../src/engine/OklchMathEngine'; + +// ── Config ── + +const MARKETPLACE_URL = 'https://marketplace.visualstudio.com/_apis/public/gallery/extensionquery'; +const THEMES_DIR = join(import.meta.dir, '..', 'themes'); +const PAGE_SIZE = 100; +const DEFAULT_CONCURRENCY = 5; +const DELAY_BETWEEN_PAGES = 500; + +// ── CLI args ── + +const args = process.argv.slice(2); +let LIMIT = Infinity; +let CONCURRENCY = DEFAULT_CONCURRENCY; + +for (let i = 0; i < args.length; i++) { + if (args[i] === '--limit' && args[i + 1]) LIMIT = parseInt(args[++i]); + if (args[i] === '--concurrency' && args[i + 1]) CONCURRENCY = parseInt(args[++i]); +} + +// ── CSS named colors for accent detection ── + +const CSS_COLORS: Record = { + red: [0, 100, 50], orange: [30, 100, 50], yellow: [60, 100, 50], + green: [120, 100, 50], teal: [180, 100, 50], cyan: [190, 100, 50], + blue: [210, 100, 50], indigo: [240, 100, 50], purple: [270, 100, 50], + magenta: [300, 100, 50], pink: [330, 100, 50], brown: [30, 50, 40], +}; + +// ── Marketplace API ── + +interface MarketplaceExtension { + displayName: string; + publisher: { publisherName: string; displayName: string }; + extensionId: string; + extensionName: string; + versions: Array<{ + version: string; + files: Array<{ assetType: string; source: string }>; + properties: Array<{ key: string; value: string }>; + }>; + statistics: Array<{ statisticName: string; value: number }>; +} + +async function fetchPage(page: number): Promise<{ extensions: MarketplaceExtension[]; total: number }> { + const res = await fetch(MARKETPLACE_URL, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'Accept': 'application/json;api-version=7.2-preview.1', + }, + body: JSON.stringify({ + filters: [{ + criteria: [ + { filterType: 8, value: 'Microsoft.VisualStudio.Code' }, + { filterType: 10, value: 'tag:"color-theme"' }, + ], + pageSize: PAGE_SIZE, + pageNumber: page, + sortBy: 12, // Install count + sortOrder: 0, + }], + flags: 914, + }), + }); + + if (!res.ok) { + throw new Error(`Marketplace API error: ${res.status} ${await res.text()}`); + } + + const data = await res.json(); + const result = data.results[0]; + const total = result.resultMetadata?.[0]?.metadataItems?.[0]?.count || 0; + return { extensions: result.extensions || [], total }; +} + +// ── VSIX download + extraction ── + +async function downloadAndExtractThemes(ext: MarketplaceExtension): Promise { + const version = ext.versions?.[0]; + if (!version) return []; + + const vsixFile = version.files?.find(f => f.assetType === 'Microsoft.VisualStudio.Services.VSIXPackage'); + if (!vsixFile) return []; + + try { + const res = await fetch(vsixFile.source); + if (!res.ok) return []; + + const buffer = await res.arrayBuffer(); + + // Write to temp file, use system unzip (fast + reliable) + const tmpDir = join(THEMES_DIR, '.tmp', ext.extensionId || 'ext'); + mkdirSync(tmpDir, { recursive: true }); + const vsixPath = join(tmpDir, 'ext.vsix'); + writeFileSync(vsixPath, new Uint8Array(buffer)); + + // List theme json files in the zip + const listProc = Bun.spawn(['unzip', '-l', vsixPath], { stdout: 'pipe', stderr: 'pipe' }); + const listOutput = await new Response(listProc.stdout).text(); + const themeFiles = listOutput.split('\n') + .map(line => line.trim().split(/\s+/).pop() || '') + .filter(f => /^extension\/themes?\/.*\.json$/i.test(f)); + + if (themeFiles.length === 0) { + cleanup(tmpDir); + return []; + } + + // Extract theme files + const extractProc = Bun.spawn(['unzip', '-qo', vsixPath, ...themeFiles, '-d', tmpDir], { + stdout: 'pipe', stderr: 'pipe', + }); + await extractProc.exited; + + const themes: ExtractedTheme[] = []; + for (const filePath of themeFiles) { + try { + const fullPath = join(tmpDir, filePath); + if (!existsSync(fullPath)) continue; + const content = readFileSync(fullPath, 'utf8'); + const parsed = parseVSCodeThemeJson(content); + if (parsed) { + themes.push({ + name: parsed.name || filePath.replace(/\.json$/, '').replace(/.*\//, ''), + colors: parsed.colors, + extension: ext, + }); + } + } catch { + // Skip unparseable files + } + } + + cleanup(tmpDir); + return themes; + } catch { + return []; + } +} + +function cleanup(dir: string): void { + try { + const { rmSync } = require('node:fs'); + rmSync(dir, { recursive: true, force: true }); + } catch {} +} + +interface ExtractedTheme { + name: string; + colors: ThemeColors; + extension: MarketplaceExtension; +} + +// ── VSCode theme JSON parsing ── + +const ANSI_MAP: Record = { + 'terminal.ansiBlack': 'black', + 'terminal.ansiRed': 'red', + 'terminal.ansiGreen': 'green', + 'terminal.ansiYellow': 'yellow', + 'terminal.ansiBlue': 'blue', + 'terminal.ansiMagenta': 'magenta', + 'terminal.ansiCyan': 'cyan', + 'terminal.ansiWhite': 'white', + 'terminal.ansiBrightBlack': 'brightBlack', + 'terminal.ansiBrightRed': 'brightRed', + 'terminal.ansiBrightGreen': 'brightGreen', + 'terminal.ansiBrightYellow': 'brightYellow', + 'terminal.ansiBrightBlue': 'brightBlue', + 'terminal.ansiBrightMagenta': 'brightMagenta', + 'terminal.ansiBrightCyan': 'brightCyan', + 'terminal.ansiBrightWhite': 'brightWhite', +}; + +function parseVSCodeThemeJson(raw: string): { name: string | null; colors: ThemeColors } | null { + try { + // Handle JSONC (comments + trailing commas) + const clean = raw + .replace(/\/\/.*$/gm, '') + .replace(/\/\*[\s\S]*?\*\//g, '') + .replace(/,(\s*[}\]])/g, '$1'); + + const data = JSON.parse(clean); + const colors = data.colors || {}; + + const bg = colors['editor.background'] || colors['terminal.background']; + const fg = colors['editor.foreground'] || colors['terminal.foreground']; + + if (!bg || !fg) return null; + if (!isValidHex(bg) || !isValidHex(fg)) return null; + + const result: Partial = { bg: normalizeHex(bg), fg: normalizeHex(fg) }; + let ansiCount = 0; + + for (const [vscKey, yamlKey] of Object.entries(ANSI_MAP)) { + const val = colors[vscKey]; + if (val && isValidHex(val)) { + result[yamlKey] = normalizeHex(val); + ansiCount++; + } + } + + // Require at least 8 ANSI colors + if (ansiCount < 8) return null; + + // Fill missing bright colors from normal colors + const normalToBright: Record = { + black: 'brightBlack', red: 'brightRed', green: 'brightGreen', + yellow: 'brightYellow', blue: 'brightBlue', magenta: 'brightMagenta', + cyan: 'brightCyan', white: 'brightWhite', + }; + for (const [normal, bright] of Object.entries(normalToBright)) { + if (!result[bright as keyof ThemeColors] && result[normal as keyof ThemeColors]) { + result[bright as keyof ThemeColors] = result[normal as keyof ThemeColors]; + } + } + + // Verify all required keys exist + for (const key of ['bg', 'fg', ...ANSI_KEYS]) { + if (!result[key as keyof ThemeColors]) return null; + } + + return { name: data.name || null, colors: result as ThemeColors }; + } catch { + return null; + } +} + +function isValidHex(val: string): boolean { + return /^#[0-9a-fA-F]{3,8}$/.test(val); +} + +function normalizeHex(hex: string): string { + let h = hex.replace('#', ''); + // Strip alpha if 8-char hex + if (h.length === 8) h = h.slice(0, 6); + // Expand 3-char hex + if (h.length === 3) h = h[0] + h[0] + h[1] + h[1] + h[2] + h[2]; + return '#' + h.toUpperCase(); +} + +// ── Metadata enrichment ── + +function enrichTheme(name: string, colors: ThemeColors, ext: MarketplaceExtension): ThemeYAML { + const [bgL, bgC, bgH] = hexToOklch(colors.bg); + + // Mode: dark if bg lightness < 0.5 + const mode: 'dark' | 'light' = bgL < 0.5 ? 'dark' : 'light'; + + // Hue: null if achromatic (very low/high lightness or very low chroma) + const hue = (bgC < 0.01 || bgL < 0.05 || bgL > 0.95) ? null : Math.round(bgH); + + // Contrast: APCA Lc between bg and each color + const contrast = {} as ThemeContrast; + for (const key of ['fg', ...ANSI_KEYS] as const) { + const fg = colors[key as keyof ThemeColors]; + contrast[key as keyof ThemeContrast] = Math.round(Math.abs(computeApcaLc(fg, colors.bg)) * 10) / 10; + } + + // Accent: find the most chromatic ANSI color, match to CSS keyword + let maxChroma = 0; + let accentHue = 0; + for (const key of ANSI_KEYS) { + const [, c, h] = hexToOklch(colors[key as keyof ThemeColors]); + if (c > maxChroma) { + maxChroma = c; + accentHue = h; + } + } + const accent = closestCssColor(accentHue); + + // Source stats + const stats = ext.statistics || []; + const getStat = (name: string) => stats.find(s => s.statisticName === name)?.value || 0; + + // Author and repo from extension properties + const author = ext.publisher.displayName || ext.publisher.publisherName; + const props = ext.versions[0]?.properties || []; + const getProp = (key: string) => props.find(p => p.key === key)?.value || null; + const repo = getProp('Microsoft.VisualStudio.Services.Links.GitHub') + || getProp('Microsoft.VisualStudio.Services.Links.Source') + || null; + // Clean repo URL: strip .git suffix + const cleanRepo = repo?.replace(/\.git$/, '') || null; + + return { + name, + source: { + marketplace_id: `${ext.publisher.publisherName}.${ext.extensionName}`, + version: ext.versions[0]?.version || '0.0.0', + installs: Math.round(getStat('install')), + author, + repo: cleanRepo, + url: `https://marketplace.visualstudio.com/items?itemName=${ext.publisher.publisherName}.${ext.extensionName}`, + }, + colors, + meta: { mode, accent, hue, contrast }, + }; +} + +function closestCssColor(hue: number): string { + let closest = 'red'; + let minDist = Infinity; + for (const [name, [h]] of Object.entries(CSS_COLORS)) { + const dist = Math.min(Math.abs(hue - h), 360 - Math.abs(hue - h)); + if (dist < minDist) { + minDist = dist; + closest = name; + } + } + return closest; +} + +// ── Deduplication ── + +function colorFingerprint(colors: ThemeColors): string { + const values = [colors.bg, colors.fg, ...ANSI_KEYS.map(k => colors[k as keyof ThemeColors])]; + return createHash('md5').update(values.join(',')).digest('hex'); +} + +function themeFilename(name: string): string { + return name.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-|-$/g, '') + '.yaml'; +} + +// ── Main ── + +async function main() { + console.log('🎨 Theme Scraper — VSCode Marketplace\n'); + + mkdirSync(THEMES_DIR, { recursive: true }); + + // Load existing index for incremental runs + const indexPath = join(THEMES_DIR, 'index.json'); + const existingIndex: Record = existsSync(indexPath) + ? JSON.parse(readFileSync(indexPath, 'utf8')) + : {}; + + const seenFingerprints = new Set(); + const index: Record = { ...existingIndex }; + let totalProcessed = 0; + let totalWritten = 0; + let totalSkipped = 0; + let page = 1; + + // Phase 1: Paginate marketplace + console.log('📋 Fetching extension list...'); + const { total } = await fetchPage(1); + const maxPages = Math.min(Math.ceil(total / PAGE_SIZE), Math.ceil(LIMIT / PAGE_SIZE)); + console.log(` ${total} color theme extensions found (scraping up to ${Math.min(total, LIMIT)})\n`); + + while (page <= maxPages && totalProcessed < LIMIT) { + console.log(`📄 Page ${page}/${maxPages}...`); + + const { extensions } = await fetchPage(page); + if (extensions.length === 0) break; + + // Process extensions in batches for concurrency + for (let i = 0; i < extensions.length; i += CONCURRENCY) { + const batch = extensions.slice(i, i + CONCURRENCY); + const results = await Promise.all(batch.map(downloadAndExtractThemes)); + + for (const themes of results) { + for (const { name, colors, extension } of themes) { + totalProcessed++; + + // Deduplicate + const fp = colorFingerprint(colors); + if (seenFingerprints.has(fp)) { + totalSkipped++; + continue; + } + seenFingerprints.add(fp); + + // Enrich + write + const theme = enrichTheme(name, colors, extension); + const filename = themeFilename(theme.name); + + // Avoid name collisions + let finalFilename = filename; + if (index[theme.name] && index[theme.name] !== finalFilename) { + const publisher = extension.publisher.publisherName; + finalFilename = themeFilename(`${theme.name}-${publisher}`); + } + + const yaml = serializeThemeYAML(theme); + writeFileSync(join(THEMES_DIR, finalFilename), yaml, 'utf8'); + index[theme.name] = finalFilename; + totalWritten++; + + if (totalWritten % 50 === 0) { + process.stdout.write(` ✅ ${totalWritten} themes written\r`); + } + } + } + + if (totalProcessed >= LIMIT) break; + } + + page++; + await Bun.sleep(DELAY_BETWEEN_PAGES); + } + + // Write index + const sortedIndex = Object.fromEntries( + Object.entries(index).sort((a, b) => a[0].localeCompare(b[0])) + ); + writeFileSync(indexPath, JSON.stringify(sortedIndex, null, 2) + '\n', 'utf8'); + + console.log(`\n\n📊 Done!`); + console.log(` Processed: ${totalProcessed} theme files`); + console.log(` Written: ${totalWritten} unique themes`); + console.log(` Skipped: ${totalSkipped} duplicates`); + console.log(` Index: ${Object.keys(index).length} entries → themes/index.json`); +} + +main().catch(err => { + console.error('Fatal error:', err); + process.exit(1); +}); From 6974f9ec9b6b19e7a4be15343f189f3c4049cb73 Mon Sep 17 00:00:00 2001 From: Ismael Canal Date: Wed, 18 Mar 2026 10:00:13 +0100 Subject: [PATCH 02/21] data: add scraped themes from VSCode Marketplace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Initial scrape — each YAML includes ANSI palette, APCA contrast, author, GitHub repo URL. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- themes/.yaml | 49 + themes/07-dark.yaml | 49 + themes/07-light.yaml | 49 + themes/0a515-dark.yaml | 49 + themes/0x96f-theme.yaml | 49 + themes/1.yaml | 49 + themes/10x-dark-theme.yaml | 49 + themes/111-theme.yaml | 49 + themes/1977.yaml | 49 + themes/1989.yaml | 49 + themes/19th-century.yaml | 49 + themes/1dark-poncho-hc.yaml | 49 + themes/1mm-dracula.yaml | 49 + themes/2-colors.yaml | 49 + themes/2077.yaml | 49 + themes/24.yaml | 49 + themes/2am.yaml | 49 + themes/365-6-coder-theme.yaml | 49 + themes/365-day-october-dark.yaml | 49 + themes/3xay.yaml | 49 + themes/4-colours.yaml | 49 + themes/404-flat.yaml | 49 + themes/42nd.yaml | 49 + themes/4am-session-aqua.yaml | 49 + themes/4am-session-blue.yaml | 49 + themes/4am-session-green.yaml | 49 + themes/4am-session-orange.yaml | 49 + themes/4am-session-red.yaml | 49 + themes/4am-session-yellow.yaml | 49 + themes/6szn.yaml | 49 + themes/7lou-theme.yaml | 49 + themes/8-bit-dark.yaml | 49 + themes/8-bit-light-high-contrast.yaml | 49 + themes/8-bit-light.yaml | 49 + themes/8-bit-theme.yaml | 49 + themes/80-neon-vibes-fluor.yaml | 49 + themes/80-neon-vibes.yaml | 49 + themes/808s-heartbreak-theme.yaml | 49 + themes/8v.yaml | 49 + themes/8x8-dark-fork.yaml | 49 + themes/8x8-darker.yaml | 49 + themes/9-way-ticket.yaml | 49 + themes/90s-digital-dawning.yaml | 49 + themes/a-2-theme.yaml | 49 + themes/a-cup-of-coffee.yaml | 49 + themes/a-github-dark-dimmed-1-red.yaml | 49 + themes/a-github-dark-dimmed-2-orange.yaml | 49 + themes/a-github-dark-dimmed-3-green.yaml | 49 + themes/a-github-dark-dimmed-4-blue.yaml | 49 + themes/a-github-dark-dimmed-5-purple.yaml | 49 + themes/a-github-dark-dimmed-brown.yaml | 49 + themes/a-github-dark-dimmed-muted.yaml | 49 + themes/a-github-dark-dimmed-vampire.yaml | 49 + themes/a-github-dark-high-contrast-1-red.yaml | 49 + .../a-github-dark-high-contrast-2-orange.yaml | 49 + .../a-github-dark-high-contrast-3-green.yaml | 49 + .../a-github-dark-high-contrast-4-blue.yaml | 49 + .../a-github-dark-high-contrast-5-purple.yaml | 49 + themes/a-github-dark-muted.yaml | 49 + themes/a-github-dark-vampire.yaml | 49 + themes/a-github-light-1-red.yaml | 49 + themes/a-github-light-2-orange.yaml | 49 + themes/a-github-light-3-green.yaml | 49 + themes/a-github-light-4-blue.yaml | 49 + themes/a-github-light-5-purple.yaml | 49 + themes/a-green-cat-dimmed.yaml | 49 + themes/a-green-cat-v2.yaml | 49 + themes/aauu.yaml | 49 + themes/ab-dark.yaml | 49 + themes/abcdef.yaml | 49 + themes/abe-land.yaml | 49 + themes/abissal.yaml | 49 + themes/aboc.yaml | 49 + themes/abolkog-dark.yaml | 49 + themes/abolkog-light.yaml | 49 + themes/abraham.yaml | 49 + themes/absent-contrast.yaml | 49 + themes/absent-light.yaml | 49 + themes/absent.yaml | 49 + themes/abstract-mh.yaml | 49 + themes/abyskai.yaml | 49 + themes/abyss.yaml | 49 + themes/acario.yaml | 49 + themes/acekaizen-calmly-dark.yaml | 49 + themes/acequartz.yaml | 49 + themes/aclear-dark.yaml | 49 + themes/acme.yaml | 49 + themes/aconitum-clean.yaml | 49 + themes/acs-cozy-dark.yaml | 49 + themes/adapt-dark.yaml | 49 + themes/adark.yaml | 49 + themes/adech-theme-legacy.yaml | 49 + themes/adech-theme-superior.yaml | 49 + themes/adeol.yaml | 49 + themes/adey-coder-deep-dark.yaml | 49 + themes/adey-coder.yaml | 49 + themes/adonis.yaml | 49 + themes/adrift.yaml | 49 + themes/advancedbat.yaml | 49 + themes/aelmouny11-theme.yaml | 49 + themes/aeridia.yaml | 49 + themes/aesir-theme.yaml | 49 + themes/aesthetic-dark.yaml | 49 + themes/aesthetic.yaml | 49 + themes/aether-abyss.yaml | 49 + themes/aether-abyssal.yaml | 49 + themes/aether-arctic.yaml | 49 + themes/aether-atlantis.yaml | 49 + themes/aether-aurora.yaml | 49 + themes/aether-borealis.yaml | 49 + themes/aether-carbon.yaml | 49 + themes/aether-clarity.yaml | 49 + themes/aether-coffee-dark.yaml | 49 + themes/aether-coffee.yaml | 49 + themes/aether-cosmos.yaml | 49 + themes/aether-dark-space.yaml | 49 + themes/aether-dark.yaml | 49 + themes/aether-dawn.yaml | 49 + themes/aether-deep-ocean.yaml | 49 + themes/aether-depths.yaml | 49 + themes/aether-dusk.yaml | 49 + themes/aether-emerald.yaml | 49 + themes/aether-forest.yaml | 49 + themes/aether-glass.yaml | 49 + themes/aether-light.yaml | 49 + themes/aether-mariana.yaml | 49 + themes/aether-matrix.yaml | 49 + themes/aether-midnight.yaml | 49 + themes/aether-nautilus.yaml | 49 + themes/aether-nebula.yaml | 49 + themes/aether-neon.yaml | 49 + themes/aether-neptune.yaml | 49 + themes/aether-oceanic.yaml | 49 + themes/aether-quantum.yaml | 49 + themes/aether-reef.yaml | 49 + themes/aether-stellar.yaml | 49 + themes/aether-tempest.yaml | 49 + themes/aether-tidal.yaml | 49 + themes/aether-trench-contrast.yaml | 49 + themes/aether-twilight.yaml | 49 + themes/aether-void.yaml | 49 + themes/aether-zen.yaml | 49 + themes/aether.yaml | 49 + themes/aetherglow.yaml | 49 + themes/afternoon-delight-subtle.yaml | 49 + themes/afterpurple.yaml | 49 + themes/agathist-dark.yaml | 49 + themes/agen-theme.yaml | 49 + themes/ahoy-theme.yaml | 49 + themes/ahroun.yaml | 49 + themes/aka-kuro-light.yaml | 49 + themes/akagami-dark.yaml | 49 + themes/akagami-light.yaml | 49 + themes/akari-dawn.yaml | 49 + themes/akari-night.yaml | 49 + themes/akihabara.yaml | 49 + themes/ako-theme.yaml | 49 + themes/aksin.yaml | 49 + themes/akumanomi-theme.yaml | 49 + themes/akurdor.yaml | 49 + themes/alabaster-dark.yaml | 49 + themes/alchemist-s-orchid-dark.yaml | 49 + themes/alchemist-s-orchid-light.yaml | 49 + themes/alchemist-s-orchid-sepia.yaml | 49 + themes/alchemy-theme.yaml | 49 + themes/aldrico-s-gruvbox.yaml | 49 + themes/aldrico-s.yaml | 49 + themes/alec-teal-theme.yaml | 49 + themes/alien-blood.yaml | 49 + themes/alien-terminal-nostromo-amber.yaml | 49 + themes/alien-terminal-nostromo-green.yaml | 49 + themes/alien-terminal-sevastopol-link.yaml | 49 + themes/alignment-darker-italic.yaml | 49 + themes/alignment-italic.yaml | 49 + themes/alive-dark-theme.yaml | 49 + themes/all-black.yaml | 49 + themes/all-blue.yaml | 49 + themes/all-nighter-theme.yaml | 49 + themes/alligator-light.yaml | 49 + themes/alligator-solarized-dark.yaml | 49 + themes/alligator-solarized-light.yaml | 49 + themes/allomancer.yaml | 49 + themes/allure-contrast.yaml | 49 + themes/allure-light.yaml | 49 + themes/allure.yaml | 49 + themes/alma-sakura-theme.yaml | 49 + themes/almond-cream.yaml | 49 + themes/aloe.yaml | 49 + themes/alpha.yaml | 49 + themes/alpine-warm.yaml | 49 + themes/alpine.yaml | 49 + themes/altearn.yaml | 49 + themes/altered-matter-dopamin-owl.yaml | 49 + themes/alternight.yaml | 49 + themes/altin-s-love-symphony.yaml | 49 + themes/alucard-sotn.yaml | 49 + themes/alx-theme-classic.yaml | 49 + themes/alx-theme-normal.yaml | 49 + themes/amadeus-dark-cobalt.yaml | 49 + themes/amadeus-dark-pastel.yaml | 49 + themes/amadeus-dark.yaml | 49 + themes/amaranth-red-eerie-black-fork.yaml | 49 + themes/amazonfrog.yaml | 49 + themes/ambar-for-vscode.yaml | 49 + themes/amber-blue-light.yaml | 49 + themes/amber-blue.yaml | 49 + themes/amber-color-theme.yaml | 49 + themes/ambient.yaml | 49 + themes/amethyst-dreams.yaml | 49 + themes/amethyst-kiss-dark-amethyst-mode.yaml | 49 + themes/amethyst-kiss-light-amethyst-mode.yaml | 49 + themes/amethyst-theme.yaml | 49 + themes/amoled-dark-theme.yaml | 49 + themes/amoledtest-fork-fork.yaml | 49 + themes/amora.yaml | 49 + themes/amozonia.yaml | 49 + themes/amp-dark.yaml | 49 + themes/amp-light.yaml | 49 + themes/an-bis.yaml | 49 + themes/anakmun.yaml | 49 + themes/analog-dream-beige-terminal.yaml | 49 + themes/analog-dream-magnetic-night.yaml | 49 + themes/anasdev.yaml | 49 + themes/anastasia.yaml | 49 + themes/andromeda-custom.yaml | 49 + themes/andromeda-light-italic-bordered.yaml | 49 + themes/andromeda-zed.yaml | 49 + themes/andromeda.yaml | 49 + themes/anemones.yaml | 49 + themes/angelnature2.yaml | 49 + themes/angrboda-dark.yaml | 49 + themes/angrboda-light.yaml | 49 + themes/angular-dark-theme.yaml | 49 + themes/animatrix.yaml | 49 + themes/animetheme.yaml | 49 + themes/anisochromatic.yaml | 49 + themes/ano-theme-dark.yaml | 49 + themes/anoldhope.yaml | 49 + themes/anquyx-fork.yaml | 49 + themes/anthropic-dark.yaml | 49 + themes/anthropic-light.yaml | 49 + themes/anthropic.yaml | 49 + themes/anthropocene.yaml | 49 + themes/anti-glare-moonlit.yaml | 49 + themes/anti-glare-nebula.yaml | 49 + themes/anti-glare-official.yaml | 49 + themes/anti-gravity-pink.yaml | 49 + themes/antidote.yaml | 49 + themes/antimaterial.yaml | 49 + themes/anubis-dark-theme.yaml | 49 + themes/anubis-dark.yaml | 49 + themes/anubis-light.yaml | 49 + themes/anufemist-dark.yaml | 49 + themes/anya.yaml | 49 + themes/apathy-experimental.yaml | 49 + themes/apathy.yaml | 49 + themes/apcodespaces.yaml | 49 + themes/apex.yaml | 49 + themes/apollo-dark.yaml | 49 + themes/apollo-light.yaml | 49 + themes/apparently-purple.yaml | 49 + themes/apple-dancheong-minimal-light.yaml | 49 + themes/apprentice.yaml | 49 + themes/april-dark-theme.yaml | 49 + themes/aquamain.yaml | 49 + themes/aquanova.yaml | 49 + themes/arabian-nights.yaml | 49 + themes/arabian-theme.yaml | 49 + themes/arc-dark.yaml | 49 + themes/arcadia-theme-dark.yaml | 49 + themes/arcadia-theme-storm.yaml | 49 + themes/arcaea.yaml | 49 + themes/archangel-dusk.yaml | 49 + themes/archangel.yaml | 49 + themes/archie-dark-color-theme.yaml | 49 + themes/architect-dark-fork.yaml | 49 + themes/arctic-depth.yaml | 49 + themes/arctic-night.yaml | 49 + themes/arctis-dark.yaml | 49 + themes/arctis-high-contrast.yaml | 49 + themes/arctis-light.yaml | 49 + themes/arctis-moon.yaml | 49 + themes/arctis-night.yaml | 49 + themes/arctis.yaml | 49 + themes/ares-tron-legacy.yaml | 49 + themes/arete-theme.yaml | 49 + themes/argonaut.yaml | 49 + themes/argprocolor.yaml | 49 + themes/ariake-sands.yaml | 49 + themes/ariake-sun.yaml | 49 + themes/aries.yaml | 49 + themes/arkaios-theme.yaml | 49 + themes/arkinetictheme.yaml | 49 + themes/arkku.yaml | 49 + themes/armada.yaml | 49 + themes/aroace-high-contrast.yaml | 49 + themes/aroace-light.yaml | 49 + themes/aroace.yaml | 49 + themes/aromantic.yaml | 49 + themes/arrakis-day.yaml | 49 + themes/arrakis-night.yaml | 49 + themes/arrpee.yaml | 49 + themes/arstotzka-contrast.yaml | 49 + themes/arstotzka-light.yaml | 49 + themes/arstotzka.yaml | 49 + themes/artinpixel-turquoise-theme-dark.yaml | 49 + themes/artinpixel-turquoise-theme.yaml | 49 + themes/artisan-theme.yaml | 49 + themes/artlab-dark.yaml | 49 + themes/artlab-light.yaml | 49 + themes/arunika.yaml | 49 + themes/arwinux-galaxy.yaml | 49 + themes/as-theme.yaml | 49 + themes/asdfasdfuntitled.yaml | 49 + themes/asexual.yaml | 49 + themes/asgtheme.yaml | 49 + themes/ash-ember.yaml | 49 + themes/ash-lumen-light.yaml | 49 + themes/ash-lumen.yaml | 49 + themes/ash.yaml | 49 + themes/ashao-color-theme.yaml | 49 + themes/ashen-darker.yaml | 49 + themes/ashen.yaml | 49 + themes/ashineui.yaml | 49 + themes/aspiesoft-intellij-theme.yaml | 49 + themes/aspire-core.yaml | 49 + themes/aspire-dark.yaml | 49 + themes/aspire-light.yaml | 49 + themes/assam-tea-gardens.yaml | 49 + themes/asteria.yaml | 49 + themes/astigmatism-theme.yaml | 49 + themes/astra-themedark.yaml | 49 + themes/astra.yaml | 49 + themes/astral-theme.yaml | 49 + themes/astro-dark.yaml | 49 + themes/astro-kanagawa.yaml | 49 + themes/astro-light.yaml | 49 + themes/astrofunk-dark.yaml | 49 + themes/astronaut.yaml | 49 + themes/astrus-midnight.yaml | 49 + themes/astrus-nebula.yaml | 49 + themes/astrus-standard.yaml | 49 + themes/asuka-theme-light.yaml | 49 + themes/asuka-theme.yaml | 49 + themes/athabasca-light.yaml | 49 + themes/athabasca.yaml | 49 + themes/atilio.yaml | 49 + themes/atlantu.yaml | 49 + themes/atom-homepage-fork.yaml | 49 + themes/atom-material-theme.yaml | 49 + themes/atom-one-dark-coal.yaml | 49 + themes/atom-one-dark-cyan.yaml | 49 + themes/atom-one-light-cyan.yaml | 49 + themes/atom-one-light-modern.yaml | 49 + themes/atomax-colorblind-light.yaml | 49 + themes/atomax-dark-dimmed.yaml | 49 + themes/atomax-dark-tritanopia.yaml | 49 + themes/atomax-dark.yaml | 49 + themes/atomax-high-contrast.yaml | 49 + themes/atomax-light-tritanopia.yaml | 49 + themes/atomax-light.yaml | 49 + themes/atomicc.yaml | 49 + themes/atomify.yaml | 49 + themes/atomized-theme.yaml | 49 + themes/atomizer-dark-island.yaml | 49 + .../attack-on-titan-eren-s-determination.yaml | 49 + themes/attentio-flow.yaml | 49 + themes/attentio-pulse.yaml | 49 + themes/attica.yaml | 49 + themes/aube.yaml | 49 + themes/august-ariake-dark.yaml | 49 + themes/august-arstotzka-2-darker.yaml | 49 + themes/august-arstotzka-2.yaml | 49 + themes/august-arstotzka-lighter.yaml | 49 + .../august-beardedtheme-oceanic-reversed.yaml | 49 + ...ust-beardedtheme-surprising-blueberry.yaml | 49 + themes/august-catppuccin.yaml | 49 + themes/august-city-lights-darker.yaml | 49 + themes/august-city-lights.yaml | 49 + themes/august-dark-theme.yaml | 49 + themes/august-drawbridge-darker.yaml | 49 + themes/august-drawbridge.yaml | 49 + themes/august-gruvbox-darker.yaml | 49 + themes/august-kanagawa-darker.yaml | 49 + themes/august-material-palenight.yaml | 49 + themes/august-night-owl-darker.yaml | 49 + themes/august-night-owl.yaml | 49 + themes/august-nord-darker.yaml | 49 + themes/august-nord.yaml | 49 + themes/august-radical-2.yaml | 49 + themes/august-radical.yaml | 49 + themes/august-ros-pine-moon.yaml | 49 + themes/august-ros-pine.yaml | 49 + themes/aura-dark-soft-text.yaml | 49 + themes/aura-dark.yaml | 49 + themes/aura-dracula-spirit-soft.yaml | 49 + themes/aura-dracula-spirit-synthwave.yaml | 49 + themes/aura-dracula-spirit.yaml | 49 + themes/aura-soft-dark-soft-text.yaml | 49 + themes/aura-soft-dark.yaml | 49 + themes/aurbis-dark.yaml | 49 + themes/aurelconstellation.yaml | 49 + themes/aurora-borealis-theme-dark.yaml | 49 + themes/aurora-borealis-theme.yaml | 49 + themes/aurora.yaml | 49 + themes/aurorabloom.yaml | 49 + themes/aurorain.yaml | 49 + themes/aurorasynth-dark.yaml | 49 + themes/aurorasynth-light.yaml | 49 + themes/australian-food-fibre-dark.yaml | 49 + themes/australian-food-fibre-light.yaml | 49 + themes/autumn-fork-contrast.yaml | 49 + themes/autumn-fork.yaml | 49 + themes/autumn-highlighter-syntax.yaml | 49 + themes/autumn.yaml | 49 + themes/awesome-dark.yaml | 49 + themes/awesome-theme.yaml | 49 + themes/awesome-vscode-dark.yaml | 49 + themes/awork-dark.yaml | 49 + themes/axiomatic-dark.yaml | 49 + themes/axiomatic-light.yaml | 49 + themes/axis-ultra-dark.yaml | 49 + themes/ayame.yaml | 49 + themes/ayanokoji.yaml | 49 + themes/aylin.yaml | 49 + themes/ayu-enhanced.yaml | 49 + themes/ayu-owl.yaml | 49 + themes/ayu.yaml | 49 + themes/ayudark.yaml | 49 + themes/ayuloco-dark-bordered.yaml | 49 + themes/ayuloco-dark.yaml | 49 + themes/ayuloco-mirage-bordered.yaml | 49 + themes/ayuloco-mirage.yaml | 49 + themes/ayutokyo-color-theme.yaml | 49 + themes/ayyour.yaml | 49 + themes/az0ox-theme-shadesofblue.yaml | 49 + themes/azathoth.yaml | 49 + themes/azeny-cutimaru.yaml | 49 + themes/azeny-inveny.yaml | 49 + themes/azeny-okano.yaml | 49 + themes/azeny.yaml | 49 + themes/azerite-dark-soft.yaml | 49 + themes/azerite-dark.yaml | 49 + themes/azul.yaml | 49 + themes/azure-contrast.yaml | 49 + themes/azure-dark-teal.yaml | 49 + themes/azure-iris-dark.yaml | 49 + themes/azure-iris-light.yaml | 49 + themes/azure-light.yaml | 49 + themes/azure-noir.yaml | 49 + themes/azure.yaml | 49 + themes/b-nt.yaml | 49 + themes/b150-dark.yaml | 49 + themes/b150-light.yaml | 49 + themes/b2b-edge-light.yaml | 49 + ...b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml | 49 + ...9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml | 49 + themes/backspace-dark-glass.yaml | 49 + themes/backspace-dark-vibe-coder.yaml | 49 + themes/backspace-dark-winter.yaml | 49 + themes/backspace-dark.yaml | 49 + themes/backspace-light.yaml | 49 + themes/baculum-color-lightup-comment.yaml | 49 + themes/baculum-color-minimal-2.yaml | 49 + themes/baculum-color-minimal-vantablack.yaml | 49 + themes/baculum-dark-color.yaml | 49 + themes/badbird.yaml | 49 + themes/baig.yaml | 49 + themes/baitul-hikmah-professional.yaml | 49 + themes/baiyuechu.yaml | 49 + themes/bakaneo.yaml | 49 + ...ance-pink-colorblind-compassion-focus.yaml | 49 + themes/balance-pink-compassion-focus.yaml | 49 + ...e-pink-high-contrast-compassion-focus.yaml | 49 + .../balance-pink-light-compassion-focus.yaml | 49 + themes/ballerini-theme.yaml | 49 + themes/bam.yaml | 49 + themes/bamboo-green.yaml | 49 + themes/bamboo.yaml | 49 + themes/ban-light.yaml | 49 + themes/ban-night.yaml | 49 + themes/ban-typhoon.yaml | 49 + themes/bananalight.yaml | 49 + themes/bandmeup.yaml | 49 + themes/banner-contrast.yaml | 49 + themes/banner-light.yaml | 49 + themes/banner.yaml | 49 + themes/barbenheimer-bunker.yaml | 49 + themes/barbenheimer-dreamhouse.yaml | 49 + themes/barbenheimer-nuclear-sunrise.yaml | 49 + themes/barbie-light.yaml | 49 + themes/barbie-theme.yaml | 49 + themes/barbie.yaml | 49 + themes/barlume.yaml | 49 + themes/barney-pro.yaml | 49 + themes/barstrata.yaml | 49 + themes/base-color-theme.yaml | 49 + themes/base-minor-dark-hard.yaml | 49 + themes/base-minor-dark-soft.yaml | 49 + themes/base-minor-soft.yaml | 49 + themes/base-minor.yaml | 49 + themes/base16-3024-dark.yaml | 49 + themes/base16-3024-light.yaml | 49 + themes/base16-apathy-dark.yaml | 49 + themes/base16-apathy-light.yaml | 49 + themes/base16-ashes-dark.yaml | 49 + themes/base16-ashes-light.yaml | 49 + themes/base16-bespin-dark.yaml | 49 + themes/base16-bespin-light.yaml | 49 + themes/base16-brewer-dark.yaml | 49 + themes/base16-brewer-light.yaml | 49 + themes/base16-bright-dark.yaml | 49 + themes/base16-bright-light.yaml | 49 + themes/base16-codeschool-dark.yaml | 49 + themes/base16-codeschool-light.yaml | 49 + themes/base16-default-dark.yaml | 49 + themes/base16-default-light.yaml | 49 + themes/base16-eighties-dark.yaml | 49 + themes/base16-eighties-light.yaml | 49 + themes/base16-embers-dark.yaml | 49 + themes/base16-embers-light.yaml | 49 + themes/base16-flat-dark.yaml | 49 + themes/base16-flat-light.yaml | 49 + themes/base16-google-dark.yaml | 49 + themes/base16-google-light.yaml | 49 + themes/base16-grayscale-dark.yaml | 49 + themes/base16-grayscale-light.yaml | 49 + themes/base16-green-screen-dark.yaml | 49 + themes/base16-green-screen-light.yaml | 49 + themes/base16-harmonic16-dark.yaml | 49 + themes/base16-harmonic16-light.yaml | 49 + themes/base16-isotope-dark.yaml | 49 + themes/base16-isotope-light.yaml | 49 + themes/base16-marrakesh-dark.yaml | 49 + themes/base16-marrakesh-light.yaml | 49 + themes/base16-mocha-dark.yaml | 49 + themes/base16-mocha-light.yaml | 49 + themes/base16-monokai-dark.yaml | 49 + themes/base16-monokai-light.yaml | 49 + themes/base16-ocean-dark.yaml | 49 + themes/base16-ocean-light.yaml | 49 + themes/base16-oceanicnext-dark.yaml | 49 + themes/base16-oceanicnext-light.yaml | 49 + themes/base16-paraiso-dark.yaml | 49 + themes/base16-paraiso-light.yaml | 49 + themes/base16-pop-dark.yaml | 49 + themes/base16-pop-light.yaml | 49 + themes/base16-railscasts-dark.yaml | 49 + themes/base16-railscasts-light.yaml | 49 + themes/base16-shapeshifter-dark.yaml | 49 + themes/base16-shapeshifter-light.yaml | 49 + themes/base16-solarized-dark.yaml | 49 + themes/base16-solarized-light.yaml | 49 + themes/base16-summerfruit-dark.yaml | 49 + themes/base16-summerfruit-light.yaml | 49 + themes/base16-tomorrow-dark.yaml | 49 + themes/base16-tomorrow-light.yaml | 49 + themes/base16-twilight-dark.yaml | 49 + themes/base16-twilight-light.yaml | 49 + themes/base16-unikitty-dark.yaml | 49 + themes/base16-unikitty-light.yaml | 49 + themes/base16-woodland-dark.yaml | 49 + themes/basic-black.yaml | 49 + themes/basic-blue.yaml | 49 + themes/basterdized.yaml | 49 + themes/bat.yaml | 49 + themes/batsignal-light-color-theme.yaml | 49 + themes/bazmatheme.yaml | 49 + themes/bazutya.yaml | 49 + themes/bbbalabamasuntan.yaml | 49 + themes/bbbdark.yaml | 49 + themes/bbbhotdogstand.yaml | 49 + themes/bbogdanov-dark.yaml | 49 + themes/bbogdanov-light.yaml | 49 + themes/bc-theme.yaml | 49 + themes/beach-vibes.yaml | 49 + themes/beacrisg.yaml | 49 + themes/becolors.yaml | 49 + themes/bedarx-obsidian.yaml | 49 + themes/bedarx-onyx.yaml | 49 + themes/bedarx-pearl.yaml | 49 + themes/bedarx-sapphire.yaml | 49 + themes/bee-theme-color-theme-tow.yaml | 49 + themes/bee-theme.yaml | 49 + themes/beerish.yaml | 49 + themes/behavai-vitesse.yaml | 49 + themes/behavai.yaml | 49 + themes/beloco-italic.yaml | 49 + themes/benimaru.yaml | 49 + themes/benlatheme-azure.yaml | 49 + themes/benpai-theme-dark.yaml | 49 + themes/berg.yaml | 49 + themes/berkeley.yaml | 49 + themes/bernadoque-theme.yaml | 49 + themes/berry-blast-theme.yaml | 49 + themes/berry-latte-light.yaml | 49 + themes/bersk.yaml | 49 + themes/beru.yaml | 49 + themes/best-themes-monokai-next.yaml | 49 + themes/best-themes-one-monokai.yaml | 49 + themes/better-coding-dark.yaml | 49 + themes/better-light.yaml | 49 + themes/better-oceanic-next.yaml | 49 + themes/better-selenized-dark.yaml | 49 + themes/better-solarized-dark-italic.yaml | 49 + themes/better-solarized-dark.yaml | 49 + themes/betu-dark.yaml | 49 + themes/betu-light.yaml | 49 + themes/bhwm715-even-darker.yaml | 49 + themes/bianconero.yaml | 49 + themes/bibauporto-gray.yaml | 49 + themes/bibauporto-simple.yaml | 49 + themes/biddeew.yaml | 49 + themes/bifr-st.yaml | 49 + themes/bigfish.yaml | 49 + themes/bigsur-gtk-theme-dark-blue.yaml | 49 + themes/bini-theme.yaml | 49 + themes/bird.yaml | 49 + themes/bit-intense.yaml | 49 + themes/bit-soft.yaml | 49 + themes/bit.yaml | 49 + themes/bitpurp-dark.yaml | 49 + themes/bits-theme-green-light.yaml | 49 + themes/bits-theme-green.yaml | 49 + themes/bits-theme-light.yaml | 49 + themes/bits-theme-purple-light.yaml | 49 + themes/bits-theme-purple.yaml | 49 + themes/bits-theme.yaml | 49 + themes/bl-nk.yaml | 49 + themes/black-and-red.yaml | 49 + themes/black-back-dark-e-theme.yaml | 49 + themes/black-color-theme.yaml | 49 + themes/black-ocean.yaml | 49 + themes/black-on-gray.yaml | 49 + themes/black-pink-rose.yaml | 49 + themes/black-punk-77.yaml | 49 + themes/black-purple.yaml | 49 + themes/black-rose.yaml | 49 + themes/black-theme.yaml | 49 + themes/blackai-theme.yaml | 49 + themes/blackamp.yaml | 49 + themes/blackberry.yaml | 49 + themes/blackbird-dusk.yaml | 49 + themes/blackbird-midnight.yaml | 49 + themes/blackboard-plus.yaml | 49 + themes/blackcoffeedark.yaml | 49 + themes/blackdot.yaml | 49 + themes/blackhighcontrast.yaml | 49 + themes/blacklite.yaml | 49 + themes/blackout.yaml | 49 + themes/blackpink.yaml | 49 + themes/blackroulette.yaml | 49 + themes/blackula-theme.yaml | 49 + themes/blacky.yaml | 49 + themes/bladerunner-light.yaml | 49 + themes/bladerunner.yaml | 49 + themes/blah-dark.yaml | 49 + themes/blahajtheme.yaml | 49 + themes/blank-ghibli.yaml | 49 + themes/blank-monochrome.yaml | 49 + themes/blank-moonlight.yaml | 49 + themes/blank-s-theme-reborn.yaml | 49 + themes/blank-uchiha.yaml | 49 + themes/blankeos-zen-theme.yaml | 49 + themes/blaze-orange.yaml | 49 + themes/blinds-dark.yaml | 49 + themes/blink-contrast.yaml | 49 + themes/blink-light.yaml | 49 + themes/blink.yaml | 49 + themes/blip-cursor-vscode-theme.yaml | 49 + themes/bloody-pie.yaml | 49 + themes/bloom-1-1-0.yaml | 49 + themes/bloostring.yaml | 49 + themes/blossoms.yaml | 49 + themes/blowington.yaml | 49 + themes/blube-dark-light.yaml | 49 + themes/blue-cheese.yaml | 49 + themes/blue-collection.yaml | 49 + themes/blue-color-theme.yaml | 49 + themes/blue-dark-theme.yaml | 49 + themes/blue-day.yaml | 49 + themes/blue-faded.yaml | 49 + themes/blue-green-theme.yaml | 49 + themes/blue-hacker-theme.yaml | 49 + themes/blue-jeans.yaml | 49 + themes/blue-light-filter-dark.yaml | 49 + themes/blue-light-filter-warm-dark.yaml | 49 + themes/blue-light-theme.yaml | 49 + themes/blue-melon.yaml | 49 + themes/blue-moves-color-theme.yaml | 49 + themes/blue-moves-darker-color-theme.yaml | 49 + themes/blue-neon.yaml | 49 + themes/blue-night.yaml | 49 + themes/blue.yaml | 49 + themes/blueberry-dark-theme.yaml | 49 + themes/blueberry-futuristic-theme-fork.yaml | 49 + themes/blueberry-theme.yaml | 49 + themes/bluebracket-theme.yaml | 49 + themes/bluedark.yaml | 49 + themes/bluegreenspace.yaml | 49 + themes/bluelili-color-theme.yaml | 49 + themes/blueorange.yaml | 49 + themes/bluered-theme.yaml | 49 + themes/bluesea.yaml | 49 + themes/bluespace-s.yaml | 49 + themes/bluespace.yaml | 49 + themes/bluespexter.yaml | 49 + themes/bluethemepulper.yaml | 49 + themes/blueyonedark.yaml | 49 + themes/bluish.yaml | 49 + themes/bluloco-dark-italic.yaml | 49 + themes/bluloco-dark.yaml | 49 + themes/bluloco-light-italic.yaml | 49 + themes/blush-pink-enhanced-premium.yaml | 49 + themes/blve.yaml | 49 + themes/bobascheme.yaml | 49 + themes/bocenago-pradei.yaml | 49 + themes/bogem-s-night-owl.yaml | 49 + themes/bogster.yaml | 49 + themes/bohemian-dark.yaml | 49 + themes/bohemian-light.yaml | 49 + themes/bold-contrast.yaml | 49 + themes/bold-light.yaml | 49 + themes/bold.yaml | 49 + themes/bolsonaro-theme.yaml | 49 + themes/bombyx-light.yaml | 49 + themes/bombyx.yaml | 49 + themes/boo-color-theme.yaml | 49 + themes/boo.yaml | 49 + themes/boogel.yaml | 49 + themes/booklike.yaml | 49 + themes/bootstrap-dark.yaml | 49 + themes/bootstrap-light.yaml | 49 + themes/borders-blue.yaml | 49 + themes/borders-dark.yaml | 49 + themes/borders-darker.yaml | 49 + themes/borealis.yaml | 49 + themes/borealsharp.yaml | 49 + themes/bot2b.yaml | 49 + themes/botany-color-theme.yaml | 49 + themes/botany.yaml | 49 + themes/bougainvillea.yaml | 49 + themes/boundless.yaml | 49 + themes/bouquet.yaml | 49 + themes/boxlang-dark-neon.yaml | 49 + themes/boxuk-contrast.yaml | 49 + themes/boxuk-light.yaml | 49 + themes/boxuk.yaml | 49 + themes/brackethive-theme.yaml | 49 + themes/brave-contrast.yaml | 49 + themes/brave-light.yaml | 49 + themes/brave.yaml | 49 + themes/breath2ripoff.yaml | 49 + themes/breeze.yaml | 49 + themes/brew-theme.yaml | 49 + themes/brid-purple-garden-dark.yaml | 49 + themes/brid-purple-garden-light.yaml | 49 + themes/briggitehelm.yaml | 49 + themes/bright-colors-blue.yaml | 49 + themes/bright-lights.yaml | 49 + themes/britecore.yaml | 49 + themes/british-racing-green-theme.yaml | 49 + themes/brogrammer-plus.yaml | 49 + themes/broken-dreams-blue.yaml | 49 + themes/broken-dreams-purple.yaml | 49 + themes/bromium.yaml | 49 + themes/brownhu.yaml | 49 + themes/brownista.yaml | 49 + themes/bruno-s-wet-dream.yaml | 49 + themes/brutalcode.yaml | 49 + themes/bts-borahae.yaml | 49 + themes/btv-dark.yaml | 49 + themes/bubba-kush-v1.yaml | 49 + themes/bubble-theme.yaml | 49 + themes/bubblegum-color-theme.yaml | 49 + themes/bubblegum-milkshake.yaml | 49 + themes/bubblegum.yaml | 49 + themes/bubblegumtheme.yaml | 49 + themes/buby-color-theme.yaml | 49 + ...ddha-a-super-minimal-theme-for-vscode.yaml | 49 + themes/budha.yaml | 49 + themes/budokan.yaml | 49 + themes/bugged-gpu.yaml | 49 + themes/buhtig.yaml | 49 + themes/bullish-theme.yaml | 49 + themes/bun-gothic.yaml | 49 + themes/burnt-chestnut.yaml | 49 + themes/burple-dark.yaml | 49 + themes/busbyvscode.yaml | 49 + themes/bushland.yaml | 49 + themes/butrin-theme.yaml | 49 + themes/butter-green-fork.yaml | 49 + themes/buttercawfee.yaml | 49 + themes/bynawers.yaml | 49 + themes/byteglow.yaml | 49 + themes/bytenight.yaml | 49 + themes/c-c-theme.yaml | 49 + themes/c-dracula.yaml | 49 + themes/c0v3r.yaml | 49 + themes/cabalyon-theme.yaml | 49 + themes/cadet-dark-gray.yaml | 49 + themes/cadet-medium-gray-flat.yaml | 49 + themes/caf-warmth.yaml | 49 + themes/caffe-crema-dark.yaml | 49 + themes/caffe-crema-light.yaml | 49 + themes/caffeinated-rust.yaml | 49 + themes/cal-4700.yaml | 49 + themes/calm-dark.yaml | 49 + ...m-days-sober-nights-day-no-bold-style.yaml | 49 + ...ys-sober-nights-day-sky-no-bold-style.yaml | 49 + ...days-sober-nights-night-no-bold-style.yaml | 49 + ...-sober-nights-night-sky-no-bold-style.yaml | 49 + themes/calm-down-color-theme.yaml | 49 + themes/calm-light.yaml | 49 + themes/calm-ocean.yaml | 49 + .../calm-teal-colorblind-balance-clarity.yaml | 49 + ...lm-teal-high-contrast-balance-clarity.yaml | 49 + themes/calm-teal-light-balance-clarity.yaml | 49 + themes/calming-coding-dark-theme.yaml | 49 + themes/calming-theme.yaml | 49 + themes/calmppuccin-frappe.yaml | 49 + themes/calmppuccin-latte.yaml | 49 + themes/calmppuccin-macchiato.yaml | 49 + themes/calmppuccin-mocha.yaml | 49 + themes/calmppuccin-nitro-cold-brew.yaml | 49 + themes/calmppuccin-oledppuccin.yaml | 49 + themes/calomnie.yaml | 49 + themes/campbell.yaml | 49 + themes/camula-moon.yaml | 49 + themes/camula-sun.yaml | 49 + themes/camula.yaml | 49 + themes/candle-theme.yaml | 49 + themes/candy-blue.yaml | 49 + themes/candy-pine.yaml | 49 + themes/candy-purple.yaml | 49 + themes/candy-red.yaml | 49 + themes/candy-shop-eclipse.yaml | 49 + themes/canonic-theme.yaml | 49 + themes/cape-town-nights.yaml | 49 + themes/capitola.yaml | 49 + themes/capy-ui.yaml | 49 + themes/caramel-fork.yaml | 49 + themes/carbon-candy-anthracite.yaml | 49 + themes/carbon-candy-aurora-thin-border.yaml | 49 + themes/carbon-candy-carbon-thin-border.yaml | 49 + themes/carbon-candy-dark-thin-border.yaml | 49 + themes/carbon-candy-obsidian-thin-border.yaml | 49 + themes/carbon-candy-palenight.yaml | 49 + themes/carbon-code-amber-dark.yaml | 49 + themes/carbon-code-amber-light.yaml | 49 + themes/carbon-code-crimson-dark.yaml | 49 + themes/carbon-code-crimson-light.yaml | 49 + themes/carbon-code-dark.yaml | 49 + themes/carbon-code-emerald-dark.yaml | 49 + themes/carbon-code-emerald-light.yaml | 49 + themes/carbon-code-light.yaml | 49 + themes/carbon-code-rose-dark.yaml | 49 + themes/carbon-code-rose-light.yaml | 49 + themes/carbon-design-system-theme.yaml | 49 + themes/carbon-one.yaml | 49 + .../carbon-react-color-theme-maya-black.yaml | 49 + themes/carbon-react-color-theme-maya.yaml | 49 + themes/carbon-react-color-theme.yaml | 49 + themes/carbon.yaml | 49 + themes/carbonfox.yaml | 49 + themes/carbonight-contrast.yaml | 49 + themes/carbonight-dusk.yaml | 49 + themes/carbonight-light.yaml | 49 + themes/carbonight-midnight.yaml | 49 + themes/carbonight.yaml | 49 + themes/caret-light.yaml | 49 + themes/carex-dark.yaml | 49 + themes/carex-high-contrast-dark.yaml | 49 + themes/carex-light.yaml | 49 + themes/casa.yaml | 49 + themes/casino-royal.yaml | 49 + themes/cat-pink.yaml | 49 + themes/cat-sleep-color-theme.yaml | 49 + themes/catalyst-light.yaml | 49 + themes/catalyst.yaml | 49 + themes/cathaytrial.yaml | 49 + themes/catppuccin-dark.yaml | 49 + themes/catppuccin-frapp.yaml | 49 + themes/catppuccin-latte.yaml | 49 + themes/catppuccin-macchiato.yaml | 49 + themes/catppuccin-mocha.yaml | 49 + themes/catppuccin-monokai-frappe.yaml | 49 + themes/catppuccin-monokai-latte.yaml | 49 + themes/catppuccin-monokai-macchiato.yaml | 49 + themes/catppuccin-monokai-mocha.yaml | 49 + themes/catthode.yaml | 49 + themes/cchl-color-theme.yaml | 49 + themes/cebola-theme.yaml | 49 + themes/celadon-theme.yaml | 49 + themes/celestial-charm-theme.yaml | 49 + themes/ceo.yaml | 49 + themes/cerydra.yaml | 49 + themes/cfl-one.yaml | 49 + themes/chai-light.yaml | 49 + themes/chalk.yaml | 49 + themes/chalkish.yaml | 49 + themes/charcoal.yaml | 49 + themes/charli-health-dark.yaml | 49 + themes/charli-health-light.yaml | 49 + themes/chatgpt-theme.yaml | 49 + themes/cheese-n-all.yaml | 49 + themes/cheesewaffle-blue.yaml | 49 + themes/cheetha-green.yaml | 49 + themes/cherry-blossom-airy.yaml | 49 + themes/cherry-blossom-breeze.yaml | 49 + themes/cherry-blossom-dark-reflection.yaml | 49 + themes/cherry-blossom-dark-vivid.yaml | 49 + themes/cherry-blossom-dark.yaml | 49 + themes/cherry-blossom-dimmed-dusk.yaml | 49 + themes/cherry-blossom-dimmed.yaml | 49 + themes/cherry-blossom-night-harmony.yaml | 49 + themes/cherry-blossom-night.yaml | 49 + themes/cherry-blossom-osaka-light.yaml | 49 + themes/cherry-blossom-osaka.yaml | 49 + themes/cherry-blossom-sky-vibrant.yaml | 49 + themes/cherry-blossom-spring.yaml | 49 + themes/cherry-blossom-twilight.yaml | 49 + themes/cherry-blossom-warm.yaml | 49 + themes/cherry-delite.yaml | 49 + themes/cherry-midnight.yaml | 49 + themes/cherry-wild-theme.yaml | 49 + themes/cherry.yaml | 49 + themes/cherryblossom.yaml | 49 + themes/chiclete-de-uva-theme.yaml | 49 + themes/chill-night-mode.yaml | 49 + themes/chillhack.yaml | 49 + themes/chinolor-light.yaml | 49 + themes/chinolor.yaml | 49 + themes/chocolate-contrast.yaml | 49 + themes/chocolate-dessert-theme.yaml | 49 + themes/chocolate-light.yaml | 49 + themes/chocolate.yaml | 49 + themes/chpastel.yaml | 49 + themes/chriscoding.yaml | 49 + themes/christmas.yaml | 49 + themes/chromahin-amoled.yaml | 49 + themes/chromahin-dark.yaml | 49 + themes/chromahin-multi-color.yaml | 49 + themes/chromahin-soft.yaml | 49 + themes/chromatic-dark.yaml | 49 + themes/chromatic-light.yaml | 49 + themes/chrome-devtools.yaml | 49 + themes/chromodusk-classic.yaml | 49 + themes/chronokai.yaml | 49 + themes/cielo.yaml | 49 + themes/cinnamon.yaml | 49 + themes/cinnamonroll.yaml | 49 + themes/citric-secret.yaml | 49 + themes/city-fog.yaml | 49 + themes/clairvoyance-theme-alt.yaml | 49 + themes/clairvoyance-theme-grape.yaml | 49 + themes/clairvoyance-theme-pinkish.yaml | 49 + themes/clairvoyance-theme.yaml | 49 + themes/clarity-design-system-dark.yaml | 49 + themes/clarity-design-system-light.yaml | 49 + themes/claro.yaml | 49 + themes/classic-terminal.yaml | 49 + themes/claude-code-dark-brand.yaml | 49 + themes/claude-code-dark-high-contrast.yaml | 49 + themes/claude-code-light-brand.yaml | 49 + themes/claude-code-light-high-contrast.yaml | 49 + themes/claude-dark-anthropic.yaml | 49 + themes/claude-dark-high-contrast-italic.yaml | 49 + themes/claude-dark-italic.yaml | 49 + themes/claude-dark.yaml | 49 + themes/claude-light.yaml | 49 + themes/claude-mode-dark.yaml | 49 + themes/claude-mode-light.yaml | 49 + themes/claude-velvet-dark.yaml | 49 + themes/claude-velvet-light.yaml | 49 + themes/claude-warm-light.yaml | 49 + themes/clean-theme-halloween.yaml | 49 + themes/clean-white.yaml | 49 + themes/clear-dark.yaml | 49 + themes/cleo.yaml | 49 + themes/clesy-theme-dark.yaml | 49 + themes/cloudmint-night.yaml | 49 + themes/clrsync.yaml | 49 + themes/clu-tron-legacy.yaml | 49 + themes/clubcleaver-functional-matrix.yaml | 49 + ...clymate-monochrome-vsdark-color-theme.yaml | 49 + .../clymate-pop-neon-vsdark-color-theme.yaml | 49 + .../clymate-vintage-vsdark-color-theme.yaml | 49 + themes/clymate-vsdark-color-theme.yaml | 49 + themes/cmyk-colourrrs.yaml | 49 + themes/coal.yaml | 49 + themes/cobalt-next-dark.yaml | 49 + themes/cobalt-next.yaml | 49 + themes/cobalt2.yaml | 49 + themes/cobalt3dark.yaml | 49 + themes/cobalt9.yaml | 49 + themes/coco-theme-au-palette.yaml | 49 + themes/coco-theme-ca-palette.yaml | 49 + themes/coco-theme-coco-palette.yaml | 49 + themes/coco-theme-coconut-palette.yaml | 49 + themes/coco-theme-de-palette.yaml | 49 + themes/coco-theme-es-palette.yaml | 49 + themes/coco-theme-fr-palette.yaml | 49 + themes/coco-theme-gb-palette.yaml | 49 + themes/coco-theme-in-palette.yaml | 49 + themes/coco-theme-personnal-palette.yaml | 49 + themes/coco-theme-se-palette.yaml | 49 + themes/coco-theme-tr-palette.yaml | 49 + themes/coco-theme-v1-palette.yaml | 49 + themes/coco-theme.yaml | 49 + themes/coco.yaml | 49 + themes/cocoa.yaml | 49 + themes/coconut-dark.yaml | 49 + themes/coconut.yaml | 49 + themes/coda.yaml | 49 + themes/code-dadi-dark.yaml | 49 + themes/code-dadi-lighter.yaml | 49 + themes/code-hunter-bluepurly.yaml | 49 + themes/code-hunter-magnum-purple.yaml | 49 + themes/code-hunter-spruce-wind.yaml | 49 + themes/code-kraken-theme.yaml | 49 + themes/code-like-a-rainbow.yaml | 49 + themes/code-red.yaml | 49 + .../code-with-colors-pro-midnight-purple.yaml | 49 + themes/code33.yaml | 49 + themes/codeastro-dark.yaml | 49 + themes/codebabel-theme-dark.yaml | 49 + themes/codecourse-contrast.yaml | 49 + themes/codecourse-light.yaml | 49 + themes/codecourse.yaml | 49 + themes/codehesion-dark-theme.yaml | 49 + themes/codehesion-light-theme.yaml | 49 + themes/codeify-dark-berry-color-theme.yaml | 49 + themes/codeitlive-light.yaml | 49 + themes/codeitlive.yaml | 49 + themes/codelabs-inspired.yaml | 49 + themes/codellsby-nightowl.yaml | 49 + themes/codely-dark-theme.yaml | 49 + themes/codeme.yaml | 49 + themes/codeo-light.yaml | 49 + themes/codeo.yaml | 49 + themes/codepdia.yaml | 49 + themes/codepen-nights.yaml | 49 + themes/codepixel-modern-dark.yaml | 49 + themes/coder-coder-dark-redefined.yaml | 49 + themes/coder-vai-forest.yaml | 49 + themes/coder-vai-light.yaml | 49 + themes/coder-vai-ocean.yaml | 49 + themes/coder-vai-purple-haze.yaml | 49 + themes/coder30.yaml | 49 + themes/codesandbox-theme.yaml | 49 + themes/codeschool2-minimal.yaml | 49 + themes/codesso-unison-beta.yaml | 49 + themes/codetest.yaml | 49 + themes/codethread-black.yaml | 49 + themes/codeuccino.yaml | 49 + themes/codevibe-epic-theme.yaml | 49 + themes/codewithme-codex.yaml | 49 + themes/codewithme-dark-cmyk.yaml | 49 + themes/codewithsg-dark-theme.yaml | 49 + themes/codexflow-themes.yaml | 49 + themes/codiefy-optimas-prime-color-theme.yaml | 49 + themes/coding-light-theme.yaml | 49 + themes/cods.yaml | 49 + themes/coelhin-smooth.yaml | 49 + themes/coelhin-violet.yaml | 49 + themes/coffee-contrast.yaml | 49 + themes/coffee-light.yaml | 49 + themes/coffee.yaml | 49 + themes/coffeespace.yaml | 49 + themes/coffeyscript-theme.yaml | 49 + themes/cognac.yaml | 49 + themes/coimbrox-minimalist-panda.yaml | 49 + themes/coimbroxthmedark.yaml | 49 + themes/cold-night.yaml | 49 + themes/cold-python-theme.yaml | 49 + themes/coldark-cold.yaml | 49 + themes/coldark-dark.yaml | 49 + themes/collapse.yaml | 49 + themes/color-coffee-dark.yaml | 49 + themes/color-sea-blue.yaml | 49 + themes/color-sea-gray.yaml | 49 + themes/color-sea-green.yaml | 49 + themes/color-sea-orange.yaml | 49 + themes/color-sea-purple.yaml | 49 + themes/color-sea-red.yaml | 49 + themes/color-sea-yellow.yaml | 49 + themes/colora.yaml | 49 + themes/colorbars-blue.yaml | 49 + themes/colorbars-green.yaml | 49 + themes/colorbars-orange.yaml | 49 + themes/colorbars-purple.yaml | 49 + themes/colorful-carbon-dark-knight.yaml | 49 + themes/colorful-carbon.yaml | 49 + themes/colorful-dark-fork.yaml | 49 + themes/colorful-dark-theme.yaml | 49 + themes/colorful-light.yaml | 49 + themes/colorizer.yaml | 49 + themes/colors-color-theme.yaml | 49 + themes/colors.yaml | 49 + themes/colorshift-material-pro-evening.yaml | 49 + themes/colorshift-material-pro-morning.yaml | 49 + themes/colorshift-material-pro.yaml | 49 + themes/colorways-cheers-soft.yaml | 49 + themes/columbina-high-contrast.yaml | 49 + themes/comfy-monokai.yaml | 49 + themes/comfyeyes.yaml | 49 + themes/commadoor-dark.yaml | 49 + themes/commadoor.yaml | 49 + themes/commentsareimportant.yaml | 49 + themes/common.yaml | 49 + themes/community-material-theme-darker.yaml | 49 + ...-material-theme-default-high-contrast.yaml | 49 + ...-material-theme-lighter-high-contrast.yaml | 49 + themes/community-material-theme-lighter.yaml | 49 + ...ty-material-theme-ocean-high-contrast.yaml | 49 + ...aterial-theme-palenight-high-contrast.yaml | 49 + themes/compline.yaml | 49 + themes/component.yaml | 49 + themes/comrade-contrast.yaml | 49 + themes/comrade-light.yaml | 49 + themes/comrade.yaml | 49 + themes/concoctis-dark-hard.yaml | 49 + themes/concoctis-dark-soft.yaml | 49 + themes/concoctis-light-hard.yaml | 49 + themes/concoctis-light-soft.yaml | 49 + themes/concrete-theme.yaml | 49 + themes/concrete.yaml | 49 + themes/conifer-theme.yaml | 49 + themes/consolvis-dark-theme.yaml | 49 + themes/contrast-kai.yaml | 49 + themes/cool-panda.yaml | 49 + themes/cool-with-a-c.yaml | 49 + themes/cooland.yaml | 49 + themes/coolnight-color-theme.yaml | 49 + themes/coolshine.yaml | 49 + themes/copper-dark.yaml | 49 + themes/corallike.yaml | 49 + themes/corbatita.yaml | 49 + themes/corduroy.yaml | 49 + themes/corgidarkpastel2.yaml | 49 + themes/corgidarkpastel3.yaml | 49 + themes/corporate-dark-theme.yaml | 49 + themes/cosmic-decay.yaml | 49 + themes/cosmic-gleam-darkest.yaml | 49 + themes/cosmic-iris.yaml | 49 + themes/cosmic-purple.yaml | 49 + themes/cosmic-sea.yaml | 49 + themes/cosmic.yaml | 49 + themes/cosmical.yaml | 49 + themes/cosmico.yaml | 49 + themes/cosmicsarthak-dark.yaml | 49 + themes/cosmicsarthak-neon.yaml | 49 + themes/cosmicsarthak-night-owl.yaml | 49 + themes/cosmicsarthak-red.yaml | 49 + themes/cosmo.yaml | 49 + themes/cosmos-theme.yaml | 49 + themes/cosmos.yaml | 49 + themes/coucou-theme.yaml | 49 + themes/couldpeak.yaml | 49 + themes/cowboy-theme.yaml | 49 + themes/cozy-evenings.yaml | 49 + themes/cozy-mornings.yaml | 49 + themes/cpa-lions.yaml | 49 + themes/cr-night-theme.yaml | 49 + themes/crackpot-contrast.yaml | 49 + themes/crackpot-light.yaml | 49 + themes/crackpot.yaml | 49 + themes/crafty-theme-dark-contrast.yaml | 49 + themes/crazydark.yaml | 49 + themes/cream-charcoal.yaml | 49 + ...ple-colorblind-innovation-imagination.yaml | 49 + ...e-purple-light-innovation-imagination.yaml | 49 + themes/crema.yaml | 49 + themes/crf-flamengo.yaml | 49 + themes/crimson-sunset.yaml | 49 + themes/crisp-contrast.yaml | 49 + themes/crisp-light.yaml | 49 + themes/crisp.yaml | 49 + themes/crow-dark.yaml | 49 + themes/crowveil-ayu.yaml | 49 + themes/crt-64.yaml | 49 + themes/crt-alt.yaml | 49 + themes/crt-amber.yaml | 49 + themes/crt-apple.yaml | 49 + themes/crt-appleiic.yaml | 49 + themes/crt-blue.yaml | 49 + themes/crt-gray.yaml | 49 + themes/crt-green.yaml | 49 + themes/crt-green1.yaml | 49 + themes/crt-green2.yaml | 49 + themes/crt-paper.yaml | 49 + themes/crt-red.yaml | 49 + themes/crt.yaml | 49 + themes/crypto.yaml | 49 + themes/crystaltine-s-crystalline-4-1.yaml | 49 + themes/crystaltine-s-crystalline-5-0.yaml | 49 + themes/cs50-light-theme.yaml | 49 + themes/css-battle.yaml | 49 + themes/cucumber-dark.yaml | 49 + themes/cucumber-light.yaml | 49 + themes/cupertino-dark.yaml | 49 + themes/cupertino-light.yaml | 49 + themes/curry-dark.yaml | 49 + themes/cursor-dark-anysphere-v0-0-1.yaml | 49 + themes/cursor-dark.yaml | 49 + themes/cursor-less-dark.yaml | 49 + themes/cursor-light.yaml | 49 + themes/cursor-night-theme-soft.yaml | 49 + themes/cursor-night-theme.yaml | 49 + themes/cursor-theme.yaml | 49 + themes/custom-theme-dark.yaml | 49 + themes/custom-theme-light.yaml | 49 + themes/custom-theme.yaml | 49 + themes/custommarktheme.yaml | 49 + themes/cyan-dark.yaml | 49 + themes/cyber-dark.yaml | 49 + themes/cyber-light-soft.yaml | 49 + themes/cyber-light-warm.yaml | 49 + themes/cyber-light.yaml | 49 + themes/cyber-pastel-violet.yaml | 49 + themes/cyber-purple-77.yaml | 49 + themes/cyberblue.yaml | 49 + themes/cyberdude-black.yaml | 49 + themes/cyberdyne-ghostty.yaml | 49 + themes/cybereternals-vscode-theme.yaml | 49 + themes/cyberlite-fork.yaml | 49 + themes/cybermoon.yaml | 49 + themes/cyberpink-137-theme.yaml | 49 + themes/cyberpunk-2077-night-city-neon.yaml | 49 + themes/cyberpunk-2077-reloaded.yaml | 49 + themes/cyberpunk-2077.yaml | 49 + themes/cyberpunk.yaml | 49 + themes/cyberpunkcygnus-clear-grid.yaml | 49 + themes/cyberpunkcygnus-neon-pulse.yaml | 49 + themes/cyberpunkcygnus-solace-flare.yaml | 49 + themes/cybertrauma-s-dark-theme.yaml | 49 + themes/cybertrauma-s.yaml | 49 + themes/cybertronix.yaml | 49 + themes/cyberui.yaml | 49 + themes/cynical-color-theme.yaml | 49 + themes/cyperpunkrebecca.yaml | 49 + themes/d2t-dark-clean.yaml | 49 + themes/d2t-dark.yaml | 49 + themes/da3m0ns-dark-italic.yaml | 49 + themes/dafault.yaml | 49 + themes/dak-v1.yaml | 49 + themes/dalailahner-dark.yaml | 49 + themes/dalton.yaml | 49 + themes/dan-light-work.yaml | 49 + themes/dan-react-theme.yaml | 49 + themes/dang-jedi.yaml | 49 + themes/dangergray-v2.yaml | 49 + themes/dango-theme.yaml | 49 + themes/danmo.yaml | 49 + themes/dantes-theme.yaml | 49 + themes/dantetheme.yaml | 49 + themes/darcula-contrast-min.yaml | 49 + themes/darcula-contrast.yaml | 49 + themes/darcula-dark-theme.yaml | 49 + themes/darcula-solid-color-theme.yaml | 49 + themes/darcula-void.yaml | 49 + themes/darcula.yaml | 49 + themes/darculacode.yaml | 49 + themes/dare-contrast.yaml | 49 + themes/dare-light.yaml | 49 + themes/dare.yaml | 49 + themes/dark-abyss.yaml | 49 + themes/dark-amethyst.yaml | 49 + themes/dark-army.yaml | 49 + themes/dark-aura.yaml | 49 + themes/dark-black-developer.yaml | 49 + themes/dark-blue-theme.yaml | 49 + themes/dark-bqueiroz.yaml | 49 + themes/dark-brown-theme.yaml | 49 + themes/dark-brown.yaml | 49 + themes/dark-chai.yaml | 49 + themes/dark-clean.yaml | 49 + themes/dark-code-fork.yaml | 49 + themes/dark-codely-theme.yaml | 49 + themes/dark-coffee.yaml | 49 + themes/dark-color-theme.yaml | 49 + themes/dark-cool-theme.yaml | 49 + themes/dark-decay.yaml | 49 + themes/dark-discord-vscode.yaml | 49 + themes/dark-dust-pro.yaml | 49 + themes/dark-edit.yaml | 49 + themes/dark-flow.yaml | 49 + themes/dark-frost-midnight.yaml | 49 + themes/dark-frost.yaml | 49 + themes/dark-fury.yaml | 49 + themes/dark-future-cyberpunk-2077.yaml | 49 + themes/dark-green-energy.yaml | 49 + themes/dark-green-jungle.yaml | 49 + themes/dark-green-minimalist-theme.yaml | 49 + themes/dark-green.yaml | 49 + themes/dark-grey-theme.yaml | 49 + themes/dark-ink-and-red-accents.yaml | 49 + themes/dark-ink-brighter.yaml | 49 + themes/dark-ink-brightest.yaml | 49 + themes/dark-ink-lighter.yaml | 49 + themes/dark-ink.yaml | 49 + themes/dark-jade.yaml | 49 + themes/dark-lavender-black.yaml | 49 + themes/dark-lavender-soft.yaml | 49 + themes/dark-lavender-tailwind-soft.yaml | 49 + themes/dark-lavender-tailwind.yaml | 49 + themes/dark-lavender.yaml | 49 + themes/dark-legibility.yaml | 49 + themes/dark-leocode-theme.yaml | 49 + themes/dark-lime-flat.yaml | 49 + themes/dark-magic-dracula.yaml | 49 + themes/dark-magic-frankenstein.yaml | 49 + themes/dark-magic-light.yaml | 49 + themes/dark-magic-night.yaml | 49 + themes/dark-magic-nord.yaml | 49 + themes/dark-magic-tokyo.yaml | 49 + themes/dark-magic.yaml | 49 + themes/dark-marine.yaml | 49 + themes/dark-matter-code-neptune-medium.yaml | 49 + themes/dark-minimal-lime-theme.yaml | 49 + themes/dark-minimal-theme-sm.yaml | 49 + themes/dark-mode-lover-wasp.yaml | 49 + themes/dark-mode-lover.yaml | 49 + themes/dark-mode-vs.yaml | 49 + themes/dark-mode.yaml | 49 + themes/dark-modern-one-without-italics.yaml | 49 + themes/dark-modern-yuriyprogg.yaml | 49 + themes/dark-molokai.yaml | 49 + themes/dark-mono.yaml | 49 + themes/dark-monokai.yaml | 49 + themes/dark-mute.yaml | 49 + themes/dark-nebula.yaml | 49 + themes/dark-neon-theme-sm.yaml | 49 + themes/dark-night-pro.yaml | 49 + themes/dark-night.yaml | 49 + themes/dark-ocean-sands.yaml | 49 + themes/dark-ocean.yaml | 49 + themes/dark-ohnagi-2020.yaml | 49 + themes/dark-orange.yaml | 49 + themes/dark-owl-darker.yaml | 49 + themes/dark-pastel-pink.yaml | 49 + themes/dark-pastel.yaml | 49 + themes/dark-petrol-dev.yaml | 49 + themes/dark-pie-deep-dark.yaml | 49 + themes/dark-pink-theme.yaml | 49 + themes/dark-plus-chocolate.yaml | 49 + themes/dark-plus-moon-lite.yaml | 49 + themes/dark-plus-oled-dim-100.yaml | 49 + themes/dark-plus-oled-dim-75.yaml | 49 + themes/dark-plus-oled-dim-80.yaml | 49 + themes/dark-plus-oled-dim-85.yaml | 49 + themes/dark-plus-oled-dim-90.yaml | 49 + themes/dark-plus-oled-dim-95.yaml | 49 + themes/dark-plus-syntax.yaml | 49 + themes/dark-purple-flat.yaml | 49 + themes/dark-purple.yaml | 49 + themes/dark-rainbow.yaml | 49 + themes/dark-rblx-rian.yaml | 49 + themes/dark-reader-light.yaml | 49 + themes/dark-readin-5.yaml | 49 + themes/dark-red-theme-vs-code.yaml | 49 + themes/dark-remix-nord.yaml | 49 + themes/dark-remix-one-dark.yaml | 49 + themes/dark-sand-theme.yaml | 49 + themes/dark-sea-green.yaml | 49 + themes/dark-sky-fork-fork.yaml | 49 + themes/dark-soft-theme-sm.yaml | 49 + themes/dark-solarin-2.yaml | 49 + themes/dark-springbok.yaml | 49 + themes/dark-terminal-pro.yaml | 49 + themes/dark-theme-blue.yaml | 49 + themes/dark-theme-by-sanan.yaml | 49 + themes/dark-theme-default-by-luisfelipe.yaml | 49 + themes/dark-theme-new.yaml | 49 + themes/dark-theme-v2.yaml | 49 + themes/dark-theme.yaml | 49 + themes/dark-v3.yaml | 49 + themes/dark-vibes.yaml | 49 + themes/dark-visual-studio.yaml | 49 + themes/dark-wolf.yaml | 49 + themes/dark-yellow-flat.yaml | 49 + themes/dark.yaml | 49 + themes/darka.yaml | 49 + themes/darkalchemy-basic.yaml | 49 + themes/darkalicious.yaml | 49 + themes/darkasp.yaml | 49 + themes/darkblue-theme.yaml | 49 + themes/darkbubble.yaml | 49 + themes/darkbutter.yaml | 49 + themes/darkdarkdark.yaml | 49 + themes/darker-solarized.yaml | 49 + themes/darker-than-black.yaml | 49 + themes/darkest.yaml | 49 + themes/darkestside-theme.yaml | 49 + themes/darkfontenelestheme.yaml | 49 + themes/darkforest.yaml | 49 + themes/darkfusion.yaml | 49 + themes/darkgreen.yaml | 49 + themes/darkheist.yaml | 49 + themes/darkish.yaml | 49 + themes/darkit-astral.yaml | 49 + themes/darkj.yaml | 49 + themes/darkknight.yaml | 49 + themes/darklimeteal.yaml | 49 + themes/darklover.yaml | 49 + themes/darkly-theme.yaml | 49 + themes/darkly.yaml | 49 + themes/darkness-color-theme.yaml | 49 + themes/darkness-of-my-soul.yaml | 49 + themes/darko.yaml | 49 + themes/darkoo.yaml | 49 + themes/darkorange.yaml | 49 + themes/darkpinkpro.yaml | 49 + themes/darkplastic.yaml | 49 + themes/darkpurple.yaml | 49 + themes/darkquark.yaml | 49 + themes/darkr-green.yaml | 49 + themes/darkred.yaml | 49 + themes/darkroom.yaml | 49 + themes/darkroy-night.yaml | 49 + themes/darkroy.yaml | 49 + themes/darkrr-green.yaml | 49 + themes/darkrrr-green.yaml | 49 + themes/darkrrrr-green.yaml | 49 + themes/darkrrrrr-green.yaml | 49 + themes/darkside-contrast.yaml | 49 + themes/darkside-light.yaml | 49 + themes/darkside.yaml | 49 + themes/darksome.yaml | 49 + themes/darkspace.yaml | 49 + themes/darkstar.yaml | 49 + themes/darkstash.yaml | 49 + themes/darktra.yaml | 49 + themes/darkula.yaml | 49 + themes/darkuto.yaml | 49 + themes/darkvoid-ocean.yaml | 49 + themes/darkvoid.yaml | 49 + themes/darkwaves-ashen-core.yaml | 49 + themes/darkwaves-celestial-mist.yaml | 49 + themes/darkwaves-cloud-lands.yaml | 49 + themes/darkwaves-driftwood.yaml | 49 + themes/darkwaves-forge.yaml | 49 + themes/darkwaves-gray-elegance.yaml | 49 + themes/darkwaves-nebula.yaml | 49 + themes/darkwaves-obsidian.yaml | 49 + themes/darkwaves-spectrum.yaml | 49 + themes/darkwind-default.yaml | 49 + themes/darky-purple-storm.yaml | 49 + themes/darky-purple.yaml | 49 + themes/darkyamaris.yaml | 49 + themes/darth-insidious.yaml | 49 + themes/darth-invader.yaml | 49 + themes/darthbuddy.yaml | 49 + themes/dartpad-candy.yaml | 49 + themes/daru.yaml | 49 + themes/darwin.yaml | 49 + themes/darxmon.yaml | 49 + themes/dashxe.yaml | 49 + themes/davi-lacerda-dark.yaml | 49 + themes/davi-lacerda-light.yaml | 49 + themes/david.yaml | 49 + themes/daviontheme.yaml | 49 + themes/dawnblush.yaml | 49 + themes/day-n-nite.yaml | 49 + themes/day.yaml | 49 + themes/dayfox.yaml | 49 + themes/daysofwineandroses.yaml | 49 + themes/dbt-fusion.yaml | 49 + themes/dbt-inspired-dark-theme.yaml | 49 + themes/dbt-inspired-light-theme.yaml | 49 + themes/dcdevthemered.yaml | 49 + themes/deadbeef.yaml | 49 + themes/deadpool.yaml | 49 + themes/deaving-theme.yaml | 49 + themes/decayce.yaml | 49 + themes/deco.yaml | 49 + themes/deeold.yaml | 49 + themes/deep-dark.yaml | 49 + themes/deep-indigo-wisdom-intuition.yaml | 49 + themes/deep-ocean.yaml | 49 + themes/deep-purple-fork-fork.yaml | 49 + themes/deep-purple-fork.yaml | 49 + themes/deep-purple-theme.yaml | 49 + themes/deep-purple.yaml | 49 + themes/deep-rainforest.yaml | 49 + themes/deep-space-dark.yaml | 49 + themes/deepwave.yaml | 49 + themes/deepwoods-autumn-needles-italic.yaml | 49 + themes/deepwoods-frosted-pines-italic.yaml | 49 + themes/deepwoods-high-canopy-italic.yaml | 49 + themes/deepwoods-spring-thaw-italic.yaml | 49 + themes/default-dimmed.yaml | 49 + themes/default-enhanced.yaml | 49 + themes/default-theme.yaml | 49 + themes/defaults.yaml | 49 + themes/defdo-base.yaml | 49 + themes/defdo-halloween.yaml | 49 + themes/definetely-not-github-s-theme.yaml | 49 + themes/definition-theme2023.yaml | 49 + themes/dejaypiii.yaml | 49 + themes/dekirisu-s-rust-theme.yaml | 49 + themes/demon-dark-pro.yaml | 49 + themes/demon-light-pro.yaml | 49 + themes/demon-slayer-light-theme.yaml | 49 + themes/denian-theme.yaml | 49 + themes/desert.yaml | 49 + themes/designcourse-theme.yaml | 49 + themes/designonev2.yaml | 49 + themes/dessert.yaml | 49 + themes/deus-ex-md-dark.yaml | 49 + themes/dev-dark-fork-fork.yaml | 49 + themes/dev-tachgurbanov.yaml | 49 + themes/dev-theme-pro-nebula-mist.yaml | 49 + themes/dev-theme-pro-nebula-void.yaml | 49 + themes/dev-theme-pro-ocean-mist.yaml | 49 + themes/dev-theme-pro-ocean-void.yaml | 49 + themes/dev-theme.yaml | 49 + themes/devcode.yaml | 49 + themes/devdojo-seppuku.yaml | 49 + themes/develer-dark.yaml | 49 + themes/developers-theme-fork.yaml | 49 + themes/devmedia-dark-modern.yaml | 49 + themes/devmedia-dark.yaml | 49 + themes/devmedia-light.yaml | 49 + themes/devr.yaml | 49 + themes/devsena-ultra-dark.yaml | 49 + themes/devtheme.yaml | 49 + themes/devx-dark.yaml | 49 + themes/dew-grey.yaml | 49 + themes/dfp-idle.yaml | 49 + themes/dhamma-dark.yaml | 49 + themes/dhamma-light.yaml | 49 + themes/dharam-gfx-amethyst.yaml | 49 + themes/dharam-gfx-anthracite.yaml | 49 + themes/dharam-gfx-arc-blueberry.yaml | 49 + themes/dharam-gfx-arc-eggplant.yaml | 49 + themes/dharam-gfx-arc-reversed.yaml | 49 + themes/dharam-gfx-hacker-theme.yaml | 49 + themes/dharam-gfx-hight-contrast.yaml | 49 + themes/dharam-gfx-webdevcody.yaml | 49 + themes/diabo-theme.yaml | 49 + themes/diamond-theme.yaml | 49 + themes/digitaliss-italic.yaml | 49 + themes/digitaliss-light-italic.yaml | 49 + themes/digitaliss-pastel-italic.yaml | 49 + themes/dimi-theme-dark.yaml | 49 + themes/dimi-theme-darker.yaml | 49 + themes/dimmed-dark-theme.yaml | 49 + themes/dimmed-theme.yaml | 49 + themes/dimmed.yaml | 49 + themes/dioximo-dark.yaml | 49 + themes/dioximo-light.yaml | 49 + themes/discord-onyx.yaml | 49 + themes/discord-theme.yaml | 49 + themes/dislexic.yaml | 49 + themes/div-s-theme.yaml | 49 + themes/dive-bar.yaml | 49 + themes/dj-s-purple.yaml | 49 + themes/djolof.yaml | 49 + themes/dna-helix.yaml | 49 + themes/dodimmed-dark.yaml | 49 + themes/doli-universal.yaml | 49 + themes/doli-visual-studio.yaml | 49 + themes/dominator-paralyzer.yaml | 49 + themes/domtheme.yaml | 49 + themes/doom-one-dark.yaml | 49 + themes/doom-one-light.yaml | 49 + themes/doom-one.yaml | 49 + themes/dooshtheme.yaml | 49 + themes/dork.yaml | 49 + themes/dorkmode.yaml | 49 + themes/dot-developer-dark.yaml | 49 + themes/dotportal.yaml | 49 + themes/downpour-contrast.yaml | 49 + themes/downpour-light.yaml | 49 + themes/downpour.yaml | 49 + themes/doxa-code-color-theme.yaml | 49 + themes/doyoubleed.yaml | 49 + themes/dr-jones.yaml | 49 + themes/draco-dark.yaml | 49 + themes/draconica.yaml | 49 + themes/dracula-at-dusk.yaml | 49 + themes/dracula-at-midnight.yaml | 49 + themes/dracula-at-night.yaml | 49 + themes/dracula-clean.yaml | 49 + themes/dracula-dimmed-color-theme.yaml | 49 + themes/dracula-falcon.yaml | 49 + themes/dracula-gray.yaml | 49 + themes/dracula-high-contract.yaml | 49 + themes/dracula-light.yaml | 49 + themes/dracula-midnight.yaml | 49 + themes/dracula-min-light-darker-theme.yaml | 49 + themes/dracula-min-light-theme.yaml | 49 + themes/dracula-min-white-darker-theme.yaml | 49 + themes/dracula-min-white-theme.yaml | 49 + themes/dracula-pro-black.yaml | 49 + themes/dracula-soft.yaml | 49 + themes/dracula.yaml | 49 + themes/draculight.yaml | 49 + themes/draculish.yaml | 49 + themes/dragn-dark-color-theme.yaml | 49 + themes/dragon.yaml | 49 + themes/dragonfly.yaml | 49 + themes/dragonight.yaml | 49 + themes/drakencord-blue-fork.yaml | 49 + themes/drakkar.yaml | 49 + themes/draquinho.yaml | 49 + themes/drasing-dark.yaml | 49 + themes/dreadbots-fork.yaml | 49 + themes/dreamer-theme.yaml | 49 + themes/dreamy-lights.yaml | 49 + themes/dribbble-theme-light.yaml | 49 + themes/drifter.yaml | 49 + themes/drk.yaml | 49 + themes/drukyul-dark.yaml | 49 + themes/drukyul-light.yaml | 49 + themes/drux-theme.yaml | 49 + themes/ds-rose.yaml | 49 + themes/duck-in-the-dream.yaml | 49 + themes/duck-in-the-lake.yaml | 49 + themes/duck-story.yaml | 49 + themes/duckcash.yaml | 49 + themes/duckdevlabs.yaml | 49 + themes/duckeys-blurple.yaml | 49 + themes/ducks.yaml | 49 + themes/ducky-light.yaml | 49 + themes/dukana.yaml | 49 + themes/dukemonokai-color-theme.yaml | 49 + themes/dull-sun-dark.yaml | 49 + themes/dull-sun-light.yaml | 49 + themes/dull-sun.yaml | 49 + themes/dumdum-theme.yaml | 49 + themes/dune-arrakis-incandescent.yaml | 49 + themes/dune-bene-gesserit.yaml | 49 + themes/dune-caladan-storm.yaml | 49 + themes/dune-fremen-sietch.yaml | 49 + themes/dune-giedi-prime.yaml | 49 + themes/dune-guild-navigator.yaml | 49 + themes/dune-harkonnen.yaml | 49 + themes/dune-house-atreides.yaml | 49 + themes/dune-ix-technology.yaml | 49 + themes/dune-kaitain.yaml | 49 + themes/dune-mentat.yaml | 49 + themes/dune-muad-dib.yaml | 49 + themes/dune-salusa-secundus.yaml | 49 + themes/dune-sandworm.yaml | 49 + themes/dune-sardaukar-imperial.yaml | 49 + themes/dune-spacing-guild.yaml | 49 + themes/dune-spice-vision.yaml | 49 + themes/dune-water-of-life.yaml | 49 + themes/duomage.yaml | 49 + themes/durgonix-dark.yaml | 49 + themes/dusk-rider.yaml | 49 + themes/dusk.yaml | 49 + themes/duskfox.yaml | 49 + themes/dutchtheme.yaml | 49 + themes/dynamic.yaml | 49 + themes/dyno-cute.yaml | 49 + themes/dyno.yaml | 49 + themes/dzsolarized-dark.yaml | 49 + themes/dzsolarized.yaml | 49 + themes/earl-grey.yaml | 49 + themes/early-riser.yaml | 49 + themes/earth-brown-stability-grounding.yaml | 49 + themes/earth-collection.yaml | 49 + themes/earthsong-contrast.yaml | 49 + themes/earthsong-light.yaml | 49 + themes/earthsong.yaml | 49 + themes/easy-eye.yaml | 49 + themes/easy-eyes-color-theme.yaml | 49 + themes/easy-light.yaml | 49 + themes/ebizome.yaml | 49 + themes/ebullience.yaml | 49 + themes/eclipsa.yaml | 49 + themes/eclipse-dark-darker.yaml | 49 + themes/eclipse-dark-flat.yaml | 49 + themes/eclipse-flare.yaml | 49 + themes/eclipse-optics.yaml | 49 + themes/eclipse-penumbra.yaml | 49 + themes/eclipse-umbra.yaml | 49 + themes/edge-dark-aura.yaml | 49 + themes/edge-dark-neon.yaml | 49 + themes/edge-dark.yaml | 49 + themes/edge-light.yaml | 49 + themes/edgerunner.yaml | 49 + themes/editor.yaml | 49 + themes/edu4dev-vscode-theme-color.yaml | 49 + themes/eerie.yaml | 49 + themes/eezoterial-dark.yaml | 49 + themes/eezoterial-light.yaml | 49 + themes/ef-arbutus.yaml | 49 + themes/ef-autumn.yaml | 49 + themes/ef-bio.yaml | 49 + themes/ef-cherie.yaml | 49 + themes/ef-cyprus.yaml | 49 + themes/ef-dark.yaml | 49 + themes/ef-day.yaml | 49 + themes/ef-deuteranopia-dark.yaml | 49 + themes/ef-deuteranopia-light.yaml | 49 + themes/ef-dream.yaml | 49 + themes/ef-duo-dark.yaml | 49 + themes/ef-duo-light.yaml | 49 + themes/ef-eagle.yaml | 49 + themes/ef-elea-dark.yaml | 49 + themes/ef-elea-light.yaml | 49 + themes/ef-frost.yaml | 49 + themes/ef-kassio.yaml | 49 + themes/ef-light.yaml | 49 + themes/ef-maris-dark.yaml | 49 + themes/ef-maris-light.yaml | 49 + themes/ef-melissa-dark.yaml | 49 + themes/ef-melissa-light.yaml | 49 + themes/ef-night.yaml | 49 + themes/ef-owl.yaml | 49 + themes/ef-reverie.yaml | 49 + themes/ef-rosa.yaml | 49 + themes/ef-spring.yaml | 49 + themes/ef-summer.yaml | 49 + themes/ef-symbiosis.yaml | 49 + themes/ef-trio-dark.yaml | 49 + themes/ef-trio-light.yaml | 49 + themes/ef-tritanopia-dark.yaml | 49 + themes/ef-tritanopia-light.yaml | 49 + themes/ef-winter.yaml | 49 + themes/eggsplo1t.yaml | 49 + themes/eh-s-website-theme.yaml | 49 + themes/eidolon-alter.yaml | 49 + themes/eidolon-less-dark.yaml | 49 + themes/eigen-color-theme.yaml | 49 + themes/ein.yaml | 49 + themes/eink.yaml | 49 + themes/ekim.yaml | 49 + themes/eldar1984.yaml | 49 + themes/elderberry.yaml | 49 + themes/eldritch-dark.yaml | 49 + themes/eldritch.yaml | 49 + themes/electric-blue.yaml | 49 + themes/electric-dreams.yaml | 49 + themes/electric-labs.yaml | 49 + themes/electric-night.yaml | 49 + themes/electric-sheep.yaml | 49 + themes/electric-violet-fork.yaml | 49 + themes/electron-highlighter.yaml | 49 + themes/electron-vue.yaml | 49 + .../electronic-moonlight-theme-borders.yaml | 49 + themes/eleganceu.yaml | 49 + themes/elegant-black.yaml | 49 + themes/elegant-red.yaml | 49 + themes/eleganterror404.yaml | 49 + themes/elementary.yaml | 49 + themes/elementowl.yaml | 49 + themes/elements.yaml | 49 + themes/elf-dream.yaml | 49 + themes/elhassan-neon-cyan.yaml | 49 + themes/elhassan-neon-dark-professional.yaml | 49 + themes/elhassan-neon-light-professional.yaml | 49 + themes/elhassan-neon-magenta.yaml | 49 + themes/elhassan-neon-purple.yaml | 49 + .../elixir-theme-no-italics-less-dark-2.yaml | 49 + themes/elixir-theme-no-italics.yaml | 49 + themes/elly.yaml | 49 + themes/elypink-dark-faded.yaml | 49 + themes/elypink-dark.yaml | 49 + themes/elypink-light-diamond.yaml | 49 + themes/elypink-light-faded.yaml | 49 + themes/elypink-light-spring.yaml | 49 + themes/elypink-light-summer.yaml | 49 + themes/elypink-light.yaml | 49 + themes/ember.yaml | 49 + themes/emberstone-dark-theme.yaml | 49 + themes/emberstone.yaml | 49 + themes/emerald-fork.yaml | 49 + themes/emerald-matrix.yaml | 49 + themes/emerald.yaml | 49 + themes/emeralds.yaml | 49 + themes/emi-theme.yaml | 49 + themes/enchant-high-contrast.yaml | 49 + themes/enchant.yaml | 49 + themes/encom.yaml | 49 + themes/end-color-theme.yaml | 49 + themes/endeavouros-breeze-dark.yaml | 49 + themes/endeavouros-dark-high-contrast.yaml | 49 + themes/endeavouros-dark-night-shift.yaml | 49 + themes/endless-iris.yaml | 49 + ...ergy-red-colorblind-passion-alertness.yaml | 49 + .../energy-red-light-passion-alertness.yaml | 49 + themes/enhanced-hubspot-theme.yaml | 49 + themes/enhanced-material-batman.yaml | 49 + themes/enhanced-material-fork.yaml | 49 + themes/enhanced-material.yaml | 49 + themes/enki-night-owl.yaml | 49 + themes/enki-rainbow-bro.yaml | 49 + themes/enki-red.yaml | 49 + themes/enki.yaml | 49 + themes/enough.yaml | 49 + themes/enova.yaml | 49 + themes/entardecer.yaml | 49 + themes/entropic-theme.yaml | 49 + themes/eon-react.yaml | 49 + themes/eon-theme-second.yaml | 49 + themes/eon-theme-v4.yaml | 49 + themes/eon-theme.yaml | 49 + themes/epsilon.yaml | 49 + themes/equinox-dark.yaml | 49 + themes/equinox-light.yaml | 49 + themes/eralith.yaml | 49 + themes/erikwdevtheme-color-theme.yaml | 49 + themes/eritbh-s-theme.yaml | 49 + themes/errordark.yaml | 49 + themes/errrrrm.yaml | 49 + themes/escook-theme-light.yaml | 49 + themes/espresso-dark-theme.yaml | 49 + themes/espresso-dark.yaml | 49 + themes/etec-pfa-light.yaml | 49 + themes/eternal-autumn.yaml | 49 + themes/eternal-summer.yaml | 49 + themes/eternals-no-italic.yaml | 49 + themes/ethanli-turquoise-dark.yaml | 49 + themes/ethereal.yaml | 49 + themes/ethereum-dark-blue-theme.yaml | 49 + themes/ethereum-dark-grey-theme.yaml | 49 + themes/eva-01-berserk-theme.yaml | 49 + themes/eva-01.yaml | 49 + ...-02-theme-enhanced-red-grey-variation.yaml | 49 + themes/evans-dark-theme.yaml | 49 + themes/evans.yaml | 49 + themes/eve.yaml | 49 + themes/evening-sky.yaml | 49 + themes/everforest-dark.yaml | 49 + themes/everforest-light.yaml | 49 + themes/everforest-pro-dark-cozy.yaml | 49 + themes/everforest-pro-dark-vibrant.yaml | 49 + themes/everforest-pro-light-cozy.yaml | 49 + themes/everforest-pro-light-vibrant.yaml | 49 + themes/everforest-soft.yaml | 49 + themes/evergarden-winter-light.yaml | 49 + themes/evergarden-winter.yaml | 49 + themes/evergarden.yaml | 49 + themes/evernex.yaml | 49 + themes/evex-dark.yaml | 49 + themes/evondev-minimal-theme.yaml | 49 + themes/evondev-tailwind-theme.yaml | 49 + themes/evro-dark.yaml | 49 + themes/evro-darker-flat.yaml | 49 + themes/exalanddark.yaml | 49 + themes/execlabs.yaml | 49 + themes/exias-theme-colorful.yaml | 49 + themes/exias-theme-town.yaml | 49 + themes/exile.yaml | 49 + themes/exploit.yaml | 49 + themes/extreme-dark-theme.yaml | 49 + themes/eye-care-dark.yaml | 49 + themes/eye-care-light.yaml | 49 + themes/eye-care.yaml | 49 + themes/eye-comfort-light.yaml | 49 + themes/eyebreaker.yaml | 49 + themes/eyecooler.yaml | 49 + themes/eyeguard.yaml | 49 + themes/eyehealth-dark.yaml | 49 + themes/eyehealth-plus-light.yaml | 49 + themes/eyera.yaml | 49 + themes/eyesore.yaml | 49 + themes/ezcord-highcontrast.yaml | 49 + themes/ezcord-light.yaml | 49 + themes/ezcord-pastel.yaml | 49 + themes/ezcord.yaml | 49 + themes/ezgiturali-halloween.yaml | 49 + themes/ezra.yaml | 49 + themes/fabi.yaml | 49 + themes/fabulapps-theme.yaml | 49 + themes/fabulous-las-vegas-after-dark.yaml | 49 + themes/fabulous-las-vegas-high-noon.yaml | 49 + themes/fady-ehab-amer-dark-theme.yaml | 49 + themes/faerie-online.yaml | 49 + themes/fakedonald-s.yaml | 49 + themes/falcon.yaml | 49 + themes/falconui-theme.yaml | 49 + themes/fallout-theme.yaml | 49 + themes/famous-dev-light.yaml | 49 + themes/famous-dev-midnight.yaml | 49 + themes/fanuc-karel.yaml | 49 + themes/fcc0ff.yaml | 49 + themes/fcode.yaml | 49 + themes/fearless-dark.yaml | 49 + themes/feefoolec-2-0.yaml | 49 + themes/feels-like-progress-light.yaml | 49 + themes/felina.yaml | 49 + themes/feline-color-theme.yaml | 49 + themes/feline-theme.yaml | 49 + themes/felixo-green-contrast.yaml | 49 + themes/felixo-green-light.yaml | 49 + themes/felixo-green.yaml | 49 + themes/felixo-orange-contrast.yaml | 49 + themes/felixo-orange-light.yaml | 49 + themes/felixo-orange.yaml | 49 + themes/felixoux-theme.yaml | 49 + themes/feliz-dark.yaml | 49 + themes/ferra.yaml | 49 + themes/feta.yaml | 49 + themes/fictionaltheme.yaml | 49 + themes/fiestas.yaml | 49 + themes/fifties.yaml | 49 + themes/fifty-shades-of-grape.yaml | 49 + themes/filtered.yaml | 49 + themes/finalbossjeff.yaml | 49 + themes/finn4ik666corp.yaml | 49 + themes/firefly.yaml | 49 + themes/firefox-dark.yaml | 49 + themes/firelight.yaml | 49 + themes/firewatch.yaml | 49 + themes/flamelabs-argo.yaml | 49 + themes/flamelabs-fire.yaml | 49 + themes/flamelabs-plasma.yaml | 49 + themes/flamingo-galaxy.yaml | 49 + themes/flashbang.yaml | 49 + themes/flat-light.yaml | 49 + themes/flat-theme-gray.yaml | 49 + themes/flat-theme-light.yaml | 49 + themes/flat-ui-immersed.yaml | 49 + themes/flat-ui-one-dark.yaml | 49 + themes/flatcap.yaml | 49 + ...-monokai-improved-no-cursor-highlight.yaml | 49 + themes/flatuiexp.yaml | 49 + themes/flavia.yaml | 49 + themes/fleetish.yaml | 49 + themes/fleetonedark.yaml | 49 + themes/fleety.yaml | 49 + themes/fleex-theme-dark.yaml | 49 + themes/fleex-theme-forest-dark.yaml | 49 + themes/fleex-theme-forest-light.yaml | 49 + themes/fleex-theme-light.yaml | 49 + themes/fleex-theme-mist-dark.yaml | 49 + themes/fleex-theme-mist-light.yaml | 49 + themes/fleex-theme-ocean-dark.yaml | 49 + themes/fleex-theme-ocean-light.yaml | 49 + themes/fleex-theme-plum-dark.yaml | 49 + themes/fleex-theme-plum-light.yaml | 49 + themes/fleex-theme-rose-dark.yaml | 49 + themes/fleex-theme-rose-light.yaml | 49 + themes/fleex-theme-sand-dark.yaml | 49 + themes/fleex-theme-sand-light.yaml | 49 + themes/fleex-theme-warm-dark.yaml | 49 + themes/fleex-theme-warm-light.yaml | 49 + themes/fleury-theme.yaml | 49 + themes/flex-appeal.yaml | 49 + themes/flexoki.yaml | 49 + themes/flora.yaml | 49 + themes/florence.yaml | 49 + themes/floriamaris.yaml | 49 + themes/florist-dark.yaml | 49 + themes/florist-light.yaml | 49 + themes/flow-better-theme.yaml | 49 + themes/flow-light.yaml | 49 + themes/fluffy-dark-theme.yaml | 49 + themes/fluffy-theme.yaml | 49 + themes/fluid-light-theme.yaml | 49 + themes/flukerbr-theme.yaml | 49 + themes/fluminense.yaml | 49 + themes/fluorite-theme.yaml | 49 + themes/flutter-dark.yaml | 49 + themes/flutter-theme-dark.yaml | 49 + themes/flux-dark.yaml | 49 + themes/flux-dawn.yaml | 49 + themes/flux-daylight.yaml | 49 + themes/flux-night.yaml | 49 + themes/flux-twilight.yaml | 49 + themes/flux.yaml | 49 + themes/fluxish.yaml | 49 + themes/foco-1-0-0.yaml | 49 + ...s-blue-colorblind-concentration-trust.yaml | 49 + themes/focus-blue-concentration-trust.yaml | 49 + ...lue-high-contrast-concentration-trust.yaml | 49 + .../focus-blue-light-concentration-trust.yaml | 49 + themes/focus-colors.yaml | 49 + themes/focus-dark-fork-fork.yaml | 49 + themes/focusoncoding.yaml | 49 + themes/fodder-contrast.yaml | 49 + themes/fodder-light.yaml | 49 + themes/fodder.yaml | 49 + themes/fog-hazy.yaml | 49 + themes/foggy-forest-v1.yaml | 49 + themes/foggy-minimal.yaml | 49 + themes/fonteeboa.yaml | 49 + themes/forest-color-theme.yaml | 49 + themes/forest-green-vitality-connection.yaml | 49 + themes/forest-green.yaml | 49 + themes/forest-light.yaml | 49 + themes/forest-night-ethereal-magic.yaml | 49 + themes/forest-night-italic-serenade.yaml | 49 + themes/forest-night-serenade.yaml | 49 + themes/forest-night.yaml | 49 + themes/forest-rose.yaml | 49 + themes/forest-violet.yaml | 49 + themes/forestfly-dark-hard.yaml | 49 + themes/forestfly-dark.yaml | 49 + themes/forestfly-light-hard.yaml | 49 + themes/forestlook.yaml | 49 + themes/forestry.yaml | 49 + themes/forge-dark.yaml | 49 + themes/forge-light.yaml | 49 + themes/formal.yaml | 49 + themes/formosa-dark-ipanema-blue.yaml | 49 + themes/formosa-dark-night-green.yaml | 49 + themes/formosa-light-ipanema-blue.yaml | 49 + themes/formosa-light-night-green.yaml | 49 + themes/forventone.yaml | 49 + themes/forxtu-light.yaml | 49 + themes/forxtu.yaml | 49 + themes/foundyn-dev.yaml | 49 + themes/four-sages-color-theme.yaml | 49 + themes/foxdracula-color-theme.yaml | 49 + themes/frankenstein.yaml | 49 + themes/frantic-contrast.yaml | 49 + themes/frantic-light.yaml | 49 + themes/frantic.yaml | 49 + themes/french-rose.yaml | 49 + themes/fresh-start.yaml | 49 + themes/freshcut-contrast.yaml | 49 + themes/freshcut-light.yaml | 49 + themes/freshcut.yaml | 49 + themes/fretefy.yaml | 49 + themes/friction-contrast.yaml | 49 + themes/friction-light.yaml | 49 + themes/friction.yaml | 49 + themes/fridge.yaml | 49 + themes/friendly.yaml | 49 + themes/frontend-galaxy.yaml | 49 + themes/frontier-contrast.yaml | 49 + themes/frontier-light.yaml | 49 + themes/frontier.yaml | 49 + themes/fruity-loops.yaml | 49 + themes/ftrblue.yaml | 49 + ...k-all-these-vscode-custom-ugly-themes.yaml | 49 + themes/funchosa-dark-theme.yaml | 49 + themes/functional.yaml | 49 + themes/funx-theme.yaml | 49 + themes/furnace.yaml | 49 + themes/furukawa-pop-theme.yaml | 49 + themes/futuremotion-light.yaml | 49 + themes/futuristic-green.yaml | 49 + themes/futuristt.yaml | 49 + themes/g-dark-blue-whale.yaml | 49 + themes/g-dark-jacksons-purple.yaml | 49 + themes/g-dark-light-alice-blue.yaml | 49 + themes/g-dark-light-glitter.yaml | 49 + themes/g-dark-light-hint-of-red.yaml | 49 + themes/g-dark-minimal-2-astronaut-blue.yaml | 49 + themes/g-dark-minimal-3-oxford-blue.yaml | 49 + themes/g-dark-minimal-midnight.yaml | 49 + themes/g-dark-one-love-black-pearl.yaml | 49 + themes/g-dark-one-love.yaml | 49 + .../g-dark-shader-h-ck3r-midnight-moss.yaml | 49 + themes/g-dark-shader-haiti.yaml | 49 + themes/g-dark-shader-mirage.yaml | 49 + themes/g-dark-shift-midnight-moss.yaml | 49 + themes/g-dark-shift-vulcan.yaml | 49 + themes/g-dark-valhalla.yaml | 49 + themes/g-i-reaper.yaml | 49 + themes/g-i-seraph.yaml | 49 + themes/g3-gray.yaml | 49 + themes/gagarin-theme.yaml | 49 + themes/galactic-flavored.yaml | 49 + themes/galactus.yaml | 49 + themes/galaxia.yaml | 49 + themes/galaxytheme.yaml | 49 + themes/galizur.yaml | 49 + themes/game-mode.yaml | 49 + themes/gameboy-classic-dark.yaml | 49 + themes/gameboy-classic-light.yaml | 49 + themes/gamma-fork.yaml | 49 + themes/gamma.yaml | 49 + themes/ganbaru-blue.yaml | 49 + themes/ganbaru-dark.yaml | 49 + themes/gantheory-dark.yaml | 49 + themes/ganyu-theme.yaml | 49 + themes/gapstyle-vs-dark-modern.yaml | 49 + themes/gapstyle-vs.yaml | 49 + themes/garbage-oracle-dark.yaml | 49 + themes/garbage-oracle-light.yaml | 49 + themes/gatito-next-theme.yaml | 49 + themes/gatito-nightly-red.yaml | 49 + themes/gatito-theme.yaml | 49 + themes/gatomontesdark2.yaml | 49 + themes/gdfunkytheme.yaml | 49 + themes/gdscript35.yaml | 49 + themes/geartheme.yaml | 49 + themes/gelato.yaml | 49 + themes/gelgel.yaml | 49 + themes/gems-theme-default.yaml | 49 + themes/gems-theme-light.yaml | 49 + themes/gen-theme.yaml | 49 + themes/generated-color-theme.yaml | 49 + themes/genshin-impact-chiori-dark.yaml | 49 + themes/genshin-impact-chiori.yaml | 49 + themes/genshin-impact-citlali-dark.yaml | 49 + themes/genshin-impact-citlali.yaml | 49 + themes/genshin-impact-columbina-dark.yaml | 49 + themes/genshin-impact-columbina.yaml | 49 + themes/genshin-impact-furina-dark.yaml | 49 + themes/genshin-impact-furina.yaml | 49 + themes/genshin-impact-ganyu-dark.yaml | 49 + .../genshin-impact-ganyu-high-contrast.yaml | 49 + themes/genshin-impact-ganyu-light.yaml | 49 + themes/genshin-impact-il-dottore-dark.yaml | 49 + themes/genshin-impact-il-dottore.yaml | 49 + .../genshin-impact-kamisato-ayaka-dark.yaml | 49 + themes/genshin-impact-kamisato-ayaka.yaml | 49 + themes/genshin-impact-layla-dark.yaml | 49 + themes/genshin-impact-layla.yaml | 49 + themes/genshin-impact-sandrone-dark.yaml | 49 + themes/genshin-impact-sandrone.yaml | 49 + themes/genshin-impact-scaramouche-dark.yaml | 49 + themes/genshin-impact-scaramouche.yaml | 49 + themes/genshin-impact-skirk-dark.yaml | 49 + themes/genshin-impact-skirk.yaml | 49 + themes/genshin-impact-wanderer-dark.yaml | 49 + themes/genshin-impact-wanderer.yaml | 49 + themes/genshin-impact-yae-miko-dark.yaml | 49 + themes/genshin-impact-yae-miko.yaml | 49 + ...genshin-impact-yumemizuki-mizuki-dark.yaml | 49 + ...mpact-yumemizuki-mizuki-high-contrast.yaml | 49 + ...enshin-impact-yumemizuki-mizuki-light.yaml | 49 + themes/genshin-vibes-celestine-bardlight.yaml | 49 + themes/genshin-vibes-damselette-whisper.yaml | 49 + themes/genshin-vibes-emergency-food.yaml | 49 + .../genshin-vibes-eternal-electro-throne.yaml | 49 + themes/genshin-vibes-fontaine-spotlight.yaml | 49 + themes/genshin-vibes-frost-ritual.yaml | 49 + themes/genshin-vibes-geo-contract-vault.yaml | 49 + themes/genshin-vibes-hydrocourt-midnight.yaml | 49 + themes/genshin-vibes-ice-oracle.yaml | 49 + themes/genshin-vibes-kusanali-dawnbloom.yaml | 49 + themes/genshin-vibes-lava-glaze-inferno.yaml | 49 + themes/genshin-vibes-morax-golden-seal.yaml | 49 + themes/genshin-vibes-outrider-blaze.yaml | 49 + themes/genshin-vibes-pyro-scout.yaml | 49 + themes/genshin-vibes-starry-companion.yaml | 49 + themes/genshin-vibes-stormrider-breeze.yaml | 49 + themes/genshin-vibes-sunforge-ember.yaml | 49 + themes/genshin-vibes-veiled-harbinger.yaml | 49 + themes/genshin-vibes-verdant-dreamweave.yaml | 49 + .../genshin-vibes-violet-eternity-glow.yaml | 49 + themes/gentil-dark.yaml | 49 + themes/gentle-builder.yaml | 49 + themes/gentle-clean-light.yaml | 49 + themes/gentle-clean-monokai.yaml | 49 + themes/gentle-dark-warm.yaml | 49 + themes/gentle-dark.yaml | 49 + themes/gentle-light-warmer.yaml | 49 + themes/gentle-light.yaml | 49 + themes/gentle-midnight-warm.yaml | 49 + themes/gentle-midnight.yaml | 49 + themes/gentleblack.yaml | 49 + themes/gfx.yaml | 49 + themes/gg-djaja-darken.yaml | 49 + themes/gg-djaja-default.yaml | 49 + themes/gg-djaja-light.yaml | 49 + themes/ghibli-day.yaml | 49 + themes/ghibli-forest-dark.yaml | 49 + themes/ghibli-night.yaml | 49 + themes/ghibli-sky-light.yaml | 49 + themes/ghost-louise.yaml | 49 + themes/ghostgrey.yaml | 49 + themes/ghostty-default-styledark.yaml | 49 + themes/ghostty-synthwave.yaml | 49 + themes/gigaaa.yaml | 49 + themes/gineticustheme.yaml | 49 + themes/ginseng.yaml | 49 + themes/gipsy-dark.yaml | 49 + themes/girls-theme.yaml | 49 + themes/github-blue-dark.yaml | 49 + themes/github-blue-darkest.yaml | 49 + themes/github-catppuccin-dark-mix.yaml | 49 + themes/github-catppuccin-dark.yaml | 49 + themes/github-contrast-theme.yaml | 49 + themes/github-contrast.yaml | 49 + themes/github-dank-dimmed.yaml | 49 + themes/github-dark-colorblind-grayscale.yaml | 49 + themes/github-dark-colorblind.yaml | 49 + themes/github-dark-default-grayscale.yaml | 49 + themes/github-dark-default.yaml | 49 + themes/github-dark-dimmed-grayscale.yaml | 49 + themes/github-dark-dimmed.yaml | 49 + .../github-dark-high-contrast-grayscale.yaml | 49 + themes/github-dark-high-contrast.yaml | 49 + themes/github-dark-mode.yaml | 49 + themes/github-dark-palenight.yaml | 49 + themes/github-dark-tritanopia.yaml | 49 + themes/github-dark.yaml | 49 + themes/github-light-colorblind.yaml | 49 + themes/github-light-default.yaml | 49 + themes/github-light-high-contrast.yaml | 49 + themes/github-light.yaml | 49 + themes/github-minimal.yaml | 49 + themes/github-revamp-alt.yaml | 49 + themes/github-theme-by-humamafif.yaml | 49 + themes/github.yaml | 49 + themes/gitlab-dark-grey.yaml | 49 + themes/gitlab-dark.yaml | 49 + themes/gitlab-light.yaml | 49 + themes/gitlab.yaml | 49 + themes/giyu-tomioka.yaml | 49 + themes/giza.yaml | 49 + themes/glance-contrast.yaml | 49 + themes/glance-light.yaml | 49 + themes/glance.yaml | 49 + themes/gleam-theme-minimal-dark.yaml | 49 + themes/glitchly-green.yaml | 49 + themes/gloam.yaml | 49 + themes/globe.yaml | 49 + themes/gloom-contrast.yaml | 49 + themes/gloom-light.yaml | 49 + themes/gloom.yaml | 49 + themes/glowfish-contrast.yaml | 49 + themes/glowfish-light.yaml | 49 + themes/glowfish.yaml | 49 + themes/glowing-sun.yaml | 49 + themes/glowing-yellow.yaml | 49 + themes/glowminerals.yaml | 49 + themes/glu-dark-lighter.yaml | 49 + themes/glu-dark.yaml | 49 + themes/glv-s-theme.yaml | 49 + themes/gms2.yaml | 49 + themes/gnome-base16.yaml | 49 + themes/go-playground.yaml | 49 + themes/go-source.yaml | 49 + themes/goa-beach-paradise.yaml | 49 + themes/god-theme.yaml | 49 + themes/godot-4.yaml | 49 + themes/gojo-infinity-dark.yaml | 49 + ...oku-code-dragon-ball-z-power-eye-safe.yaml | 49 + themes/gold.yaml | 49 + themes/golden-blue-color-theme.yaml | 49 + themes/golden-dracula.yaml | 49 + themes/golden-era.yaml | 49 + themes/golden-eye.yaml | 49 + themes/golden-sky.yaml | 49 + themes/golden-sunset.yaml | 49 + themes/golden-wave.yaml | 49 + themes/goldentheme.yaml | 49 + themes/goldfish-contrast.yaml | 49 + themes/goldfish-light.yaml | 49 + themes/goldfish.yaml | 49 + themes/goldream.yaml | 49 + themes/good-purple.yaml | 49 + themes/goodmonokai-color-theme.yaml | 49 + themes/goodnight-classic.yaml | 49 + themes/goodnight.yaml | 49 + themes/gooey-theme.yaml | 49 + themes/googledark.yaml | 49 + themes/googlory-color-theme.yaml | 49 + themes/goolou.yaml | 49 + themes/goose.yaml | 49 + themes/goosebumps.yaml | 49 + themes/gopher.yaml | 49 + themes/gorfius-orange.yaml | 49 + themes/gorfius-peace-forest.yaml | 49 + themes/gorg.yaml | 49 + themes/gosthy.yaml | 49 + themes/gotham.yaml | 49 + themes/gothic-absinthe.yaml | 49 + themes/gothic-amber-fog.yaml | 49 + themes/gothic-blood-moon.yaml | 49 + themes/gothic-cathedral.yaml | 49 + themes/gothic-cemetery.yaml | 49 + themes/gothic-dark.yaml | 49 + themes/gothic-emerald-crypt.yaml | 49 + themes/gothic-jester.yaml | 49 + themes/gothic-midnight-rose.yaml | 49 + themes/gothic-qaddy.yaml | 49 + themes/gothic-raven.yaml | 49 + themes/gothic-spider-lily.yaml | 49 + themes/gothic-twilight-forest.yaml | 49 + themes/gothic-vampire.yaml | 49 + themes/gothic-victorian-mourning.yaml | 49 + themes/gothic.yaml | 49 + themes/gourd.yaml | 49 + themes/gptheme-dark.yaml | 49 + themes/gptheme.yaml | 49 + themes/gracefulbear.yaml | 49 + themes/grandblue-pastel.yaml | 49 + themes/grandblue-soft.yaml | 49 + themes/grandblue.yaml | 49 + themes/grank-blackout.yaml | 49 + themes/grank-italics.yaml | 49 + themes/grapered.yaml | 49 + themes/grapevine.yaml | 49 + themes/graphlinq-dark.yaml | 49 + themes/grassrivers-sunset.yaml | 49 + themes/gravel-pit.yaml | 49 + themes/graveyard.yaml | 49 + themes/gravity.yaml | 49 + themes/gray-matter.yaml | 49 + themes/gray-pastel.yaml | 49 + themes/gray.yaml | 49 + themes/graygraygray.yaml | 49 + themes/graymium-theme.yaml | 49 + themes/grayscale301-light.yaml | 49 + themes/great-white-bloodloss.yaml | 49 + themes/great-white-dark.yaml | 49 + themes/great-white-frost.yaml | 49 + themes/great-white-high-contrast-dark.yaml | 49 + themes/great-white-high-contrast-light.yaml | 49 + themes/great-white-light.yaml | 49 + themes/great-white-storm.yaml | 49 + themes/great-white.yaml | 49 + themes/greblue.yaml | 49 + themes/greeeeen.yaml | 49 + themes/green-coffee.yaml | 49 + themes/green-geek.yaml | 49 + themes/green-kingdom.yaml | 49 + themes/green-low-contrast.yaml | 49 + themes/green-papper.yaml | 49 + themes/green-theme.yaml | 49 + themes/green-tree.yaml | 49 + themes/green-valley-forest.yaml | 49 + themes/green-valley-matrix.yaml | 49 + themes/green-valley-midnight.yaml | 49 + themes/green-valley-mint.yaml | 49 + themes/green-valley-neo.yaml | 49 + themes/green-water.yaml | 49 + themes/green-yow.yaml | 49 + themes/green.yaml | 49 + themes/green500.yaml | 49 + themes/greenbreeze-dark.yaml | 49 + themes/greenbreeze-light.yaml | 49 + themes/greenbyte-dark.yaml | 49 + themes/greencloud.yaml | 49 + themes/greeney-v2.yaml | 49 + themes/greeney.yaml | 49 + themes/greeni.yaml | 49 + themes/greenmachine.yaml | 49 + themes/greenspace.yaml | 49 + themes/greeny.yaml | 49 + themes/grewee-colorscheme.yaml | 49 + themes/greygull.yaml | 49 + themes/greyout.yaml | 49 + themes/greystillplays.yaml | 49 + themes/grimoire-nox.yaml | 49 + themes/grimoire.yaml | 49 + themes/grove-street-noir.yaml | 49 + themes/gru-black.yaml | 49 + themes/gru.yaml | 49 + themes/gruber-blue.yaml | 49 + themes/grumbra.yaml | 49 + themes/grunboxtheme.yaml | 49 + themes/grunge-contrast.yaml | 49 + themes/grunge-light.yaml | 49 + themes/grunge.yaml | 49 + themes/grusper.yaml | 49 + themes/gruvalized-dark.yaml | 49 + themes/gruvalized-light.yaml | 49 + themes/gruvbox-dark-medium.yaml | 49 + themes/gruvbox-dark-soft.yaml | 49 + themes/gruvbox-drakenlords-dark-draken.yaml | 49 + themes/gruvbox-drakenlords-dark.yaml | 49 + themes/gruvbox-drakenlords-grey.yaml | 49 + themes/gruvbox-drakenlords-semi-dark.yaml | 49 + themes/gruvbox-ish-dark-hard.yaml | 49 + themes/gruvbox-ish-dark-medium.yaml | 49 + themes/gruvbox-ish-dark-soft.yaml | 49 + .../gruvbox-material-dark-claude-hybrid.yaml | 49 + themes/gruvbox-material-dark.yaml | 49 + themes/gruvbox-material-flat-dark.yaml | 49 + themes/gruvbox-material-flat-light.yaml | 49 + themes/gruvbox-material-light.yaml | 49 + themes/gruvbox-material-mix.yaml | 49 + themes/gruvbox-minor-dark-hard.yaml | 49 + themes/gruvbox-minor-dark-medium.yaml | 49 + themes/gruvbox-minor-dark-soft.yaml | 49 + themes/gruvbox-minor-light-hard.yaml | 49 + themes/gruvbox-minor-light-medium.yaml | 49 + themes/gruvbox-minor-light-soft.yaml | 49 + themes/gruvchad.yaml | 49 + themes/gruvdark-gbm.yaml | 49 + themes/gruvdark-mono.yaml | 49 + themes/gruvdark-tokyo.yaml | 49 + themes/guezwhoz.yaml | 49 + themes/guisaldanha-light.yaml | 49 + themes/gujarat-vibrant-culture.yaml | 49 + themes/gum.yaml | 49 + themes/gumua.yaml | 49 + themes/gunivers.yaml | 49 + themes/gunmetal-code-pro.yaml | 49 + themes/gustavoglins.yaml | 49 + themes/gusuku-limestone.yaml | 49 + themes/gvalley.yaml | 49 + themes/gyomei-himejima.yaml | 49 + themes/h1-dark-fork.yaml | 49 + themes/h1-light-fork.yaml | 49 + themes/haavyz.yaml | 49 + themes/habamax.yaml | 49 + themes/habamix.yaml | 49 + themes/hachiko.yaml | 49 + themes/hack-and-lima.yaml | 49 + themes/hack-electron.yaml | 49 + themes/hackage-theme.yaml | 49 + themes/hacker-blue.yaml | 49 + themes/hacker-pink.yaml | 49 + themes/hacker-x.yaml | 49 + themes/hacker.yaml | 49 + themes/hackish.yaml | 49 + themes/hackpot-batman-vs-joker-dark.yaml | 49 + themes/hackpot-batman-vs-joker.yaml | 49 + themes/hackpot-dark-knight.yaml | 49 + themes/hackpot-darker-knight.yaml | 49 + themes/hackpot-garden-dark.yaml | 49 + themes/hackpot-garden-of-atlantis.yaml | 49 + themes/hackpot-garden-purple-haze.yaml | 49 + themes/hackpot-garden.yaml | 49 + themes/hackpot-muddy-garden.yaml | 49 + themes/hackpot-poisoned-garden.yaml | 49 + themes/hadar.yaml | 49 + themes/haidark-two.yaml | 49 + themes/halcyon.yaml | 49 + themes/half-gray.yaml | 49 + themes/halflife-contrast.yaml | 49 + themes/halflife-light.yaml | 49 + themes/halflife.yaml | 49 + themes/halloween.yaml | 49 + themes/hallucination.yaml | 49 + themes/hamidthedev-professional.yaml | 49 + themes/han.yaml | 49 + themes/happy-dark.yaml | 49 + themes/happy-heart-1-dark-classic.yaml | 49 + themes/happy-heart-10-forest-green.yaml | 49 + themes/happy-heart-11-emerald-green.yaml | 49 + themes/happy-heart-12-midnight-purple.yaml | 49 + themes/happy-heart-13-royal-purple.yaml | 49 + themes/happy-heart-14-rose-gold.yaml | 49 + themes/happy-heart-15-chilli-paper.yaml | 49 + themes/happy-heart-16-grey.yaml | 49 + themes/happy-heart-17-yellow.yaml | 49 + themes/happy-heart-2-dark-orange.yaml | 49 + themes/happy-heart-3-dark-purple.yaml | 49 + themes/happy-heart-4-dark-green.yaml | 49 + themes/happy-heart-5-deep-blue.yaml | 49 + themes/happy-heart-6-ocean-blue.yaml | 49 + themes/happy-heart-7-navy-blue.yaml | 49 + themes/happy-heart-8-bright-light.yaml | 49 + themes/happy-heart-9-smooth-light.yaml | 49 + themes/hapsida.yaml | 49 + themes/hard-hacker-darker.yaml | 49 + themes/hard-hacker-high-contrast.yaml | 49 + themes/hard-hacker-light-high-contrast.yaml | 49 + themes/harddark.yaml | 49 + themes/hardwired-arctic-blue.yaml | 49 + themes/hardwired-electric-lime.yaml | 49 + themes/hardwired-purple.yaml | 49 + themes/harley-quinn-theme.yaml | 49 + themes/harmonized-dark.yaml | 49 + themes/harmonized-light-hc.yaml | 49 + themes/harmonized-light.yaml | 49 + themes/harriet.yaml | 49 + themes/harrys.yaml | 49 + themes/harshaddevpro.yaml | 49 + themes/hashirama-senju-god-of-shinobi.yaml | 49 + themes/haube-blue-1.yaml | 49 + themes/hawaii-contrast.yaml | 49 + themes/hawaii-light.yaml | 49 + themes/hawaii.yaml | 49 + themes/hc-zenburn.yaml | 49 + themes/hecker-boy.yaml | 49 + themes/held.yaml | 49 + themes/helion.yaml | 49 + themes/helios-solarized-dark.yaml | 49 + themes/helios-solarized-light.yaml | 49 + themes/helix.yaml | 49 + themes/hell-pine.yaml | 49 + themes/hellfire.yaml | 49 + themes/hello-world-theme.yaml | 49 + themes/hello.yaml | 49 + themes/hendrikkels-dark.yaml | 49 + themes/hendrikkels-light.yaml | 49 + themes/heptapod.yaml | 49 + themes/herbal.yaml | 49 + themes/hereafter.yaml | 49 + themes/hero-dark-inverse.yaml | 49 + themes/heroku-contrast.yaml | 49 + themes/heroku-light.yaml | 49 + themes/heroku.yaml | 49 + themes/herzha-dark.yaml | 49 + themes/herzha-flux.yaml | 49 + themes/herzha-vanta.yaml | 49 + themes/hfa-theme.yaml | 49 + themes/hhp1614.yaml | 49 + themes/hi-dark.yaml | 49 + themes/hi-light.yaml | 49 + themes/hibiscus.yaml | 49 + themes/high-contrast-april-light-theme.yaml | 49 + themes/high-contrast-april-theme.yaml | 49 + themes/high-contrast-august-light-theme.yaml | 49 + themes/high-contrast-february-dark-theme.yaml | 49 + ...trast-february-light-theme-accessible.yaml | 49 + ...gh-contrast-february-theme-accessible.yaml | 49 + themes/high-contrast-july-light-theme.yaml | 49 + themes/high-contrast-june-light-theme.yaml | 49 + ...-contrast-march-dark-theme-accessible.yaml | 49 + themes/high-contrast-march-dark-theme.yaml | 49 + ...contrast-march-light-theme-accessible.yaml | 49 + .../high-contrast-march-theme-accessible.yaml | 49 + themes/high-contrast-may-light-theme.yaml | 49 + .../high-contrast-september-light-theme.yaml | 49 + themes/high-contrast-sunset.yaml | 49 + themes/high-tea.yaml | 49 + themes/highflyer.yaml | 49 + themes/highgruv.yaml | 49 + themes/highland-winter.yaml | 49 + themes/himalaya-dark.yaml | 49 + themes/hinode.yaml | 49 + themes/hipster-next.yaml | 49 + themes/hive-contrast.yaml | 49 + themes/hive-light.yaml | 49 + themes/hive.yaml | 49 + themes/hobbyist-goth.yaml | 49 + themes/hoccacas.yaml | 49 + themes/hocsinhnghiemtuc.yaml | 49 + themes/holdesher-dark.yaml | 49 + themes/holy-bible.yaml | 49 + themes/homebrew.yaml | 49 + themes/homecooked-theme.yaml | 49 + themes/homer.yaml | 49 + themes/homey.yaml | 49 + themes/honeycode.yaml | 49 + themes/honkai-star-rail-aventurine-dark.yaml | 49 + themes/honkai-star-rail-aventurine.yaml | 49 + themes/honkai-star-rail-cyrene-dark.yaml | 49 + themes/honkai-star-rail-cyrene.yaml | 49 + themes/honkai-star-rail-dan-heng-dark.yaml | 49 + themes/honkai-star-rail-dan-heng.yaml | 49 + themes/honkai-star-rail-firefly-dark.yaml | 49 + themes/honkai-star-rail-firefly.yaml | 49 + themes/honkai-star-rail-kafka-dark.yaml | 49 + themes/honkai-star-rail-kafka.yaml | 49 + themes/honkai-star-rail-march-7th-dark.yaml | 49 + themes/honkai-star-rail-march-7th.yaml | 49 + themes/honkai-star-rail-robin-dark.yaml | 49 + themes/honkai-star-rail-robin-light-soft.yaml | 49 + themes/honkai-star-rail-ruan-mei-dark.yaml | 49 + themes/honkai-star-rail-ruan-mei.yaml | 49 + themes/horizon-contrast.yaml | 49 + themes/horizon-extended.yaml | 49 + themes/horizon-laker-theme.yaml | 49 + themes/horizon-light.yaml | 49 + themes/horizon.yaml | 49 + themes/horizondark.yaml | 49 + themes/horror-theme.yaml | 49 + themes/horus.yaml | 49 + themes/hot-pink-theme.yaml | 49 + themes/hot-stuff.yaml | 49 + themes/hotrice.yaml | 49 + themes/house-of-the-dragon-team-blacks.yaml | 49 + themes/houston.yaml | 49 + themes/htvodp.yaml | 49 + themes/huacat-pink-dark.yaml | 49 + themes/hub-contrast.yaml | 49 + themes/hub-light.yaml | 49 + themes/hub.yaml | 49 + themes/hugodvlp.yaml | 49 + themes/hulcu.yaml | 49 + themes/human-dark.yaml | 49 + themes/human-high-contrast.yaml | 49 + themes/human-light.yaml | 49 + themes/human-low-light.yaml | 49 + themes/human-soft.yaml | 49 + themes/human-warm.yaml | 49 + themes/human.yaml | 49 + themes/hundred-oceans.yaml | 49 + themes/hush-dark.yaml | 49 + themes/hush-light.yaml | 49 + themes/hutaotheme.yaml | 49 + themes/hybrid-dim.yaml | 49 + themes/hybrid-next-gray-background.yaml | 49 + themes/hybrid-theme.yaml | 49 + themes/hydr-theme.yaml | 49 + themes/hydra-night.yaml | 49 + themes/hydra-storm.yaml | 49 + themes/hyezo-dark.yaml | 49 + themes/hyle-color-theme.yaml | 49 + themes/hyle-night-night-color-theme.yaml | 49 + themes/hyped-down-fork.yaml | 49 + themes/hyped-down-theme.yaml | 49 + themes/hyper-ctrl-theme.yaml | 49 + themes/hyper.yaml | 49 + themes/hyperdark-theme.yaml | 49 + themes/hyperlink.yaml | 49 + .../hyperrail-theme-hyper-syntax-colors.yaml | 49 + themes/hypersubatomic.yaml | 49 + themes/hypervoxel.yaml | 49 + themes/hyprluna.yaml | 49 + themes/hyrule-contrast.yaml | 49 + themes/hyrule-light.yaml | 49 + themes/hyrule.yaml | 49 + themes/i-don-t-know.yaml | 49 + themes/i-solarised-color-theme.yaml | 49 + themes/i3-aurora-x-custom-ii.yaml | 49 + themes/i3-aurora-x-custom-iii.yaml | 49 + themes/i3-aurora-x-custom.yaml | 49 + themes/ian.yaml | 49 + ...gray-10-alternative-code-highlighting.yaml | 49 + ...ray-100-alternative-code-highlighting.yaml | 49 + ...gray-90-alternative-code-highlighting.yaml | 49 + ...n-white-alternative-code-highlighting.yaml | 49 + themes/icaria.yaml | 49 + themes/icattheme.yaml | 49 + themes/icc-light-theme.yaml | 49 + themes/ice-cube-dark.yaml | 49 + themes/ice-cube-light.yaml | 49 + themes/ice.yaml | 49 + themes/iceberg-contrast.yaml | 49 + themes/iceberg-light.yaml | 49 + themes/iceberg.yaml | 49 + themes/icefall.yaml | 49 + themes/iceland.yaml | 49 + themes/icolordarkblue.yaml | 49 + themes/icolordarkcyan.yaml | 49 + themes/icolordarkgeekblue.yaml | 49 + themes/icolordarkgold.yaml | 49 + themes/icolordarkgreen.yaml | 49 + themes/icolordarklime.yaml | 49 + themes/icolordarkmagenta.yaml | 49 + themes/icolordarkorgane.yaml | 49 + themes/icolordarkpurple.yaml | 49 + themes/icolordarkred.yaml | 49 + themes/icolordarkvolcano.yaml | 49 + themes/icolordarkyellow.yaml | 49 + themes/icolorlightblue.yaml | 49 + themes/icolorlightcyan.yaml | 49 + themes/icolorlightgeekblue.yaml | 49 + themes/icolorlightgold.yaml | 49 + themes/icolorlightgreen.yaml | 49 + themes/icolorlightlime.yaml | 49 + themes/icolorlightmagenta.yaml | 49 + themes/icolorlightorgane.yaml | 49 + themes/icolorlightpurple.yaml | 49 + themes/icolorlightred.yaml | 49 + themes/icolorlightvolcano.yaml | 49 + themes/icolorlightyellow.yaml | 49 + themes/idea-islands-dark.yaml | 49 + themes/iditarod.yaml | 49 + themes/idk.yaml | 49 + themes/idx-theme-dark.yaml | 49 + themes/idx-xcode-dark-improved.yaml | 49 + themes/igniter-theme-light.yaml | 49 + themes/igniter-theme.yaml | 49 + themes/ikaros-white.yaml | 49 + themes/ikaros.yaml | 49 + themes/ikki-vscode-dark-theme.yaml | 49 + themes/ikki-vscode-light-theme.yaml | 49 + themes/ikshana.yaml | 49 + themes/illumination-emerald.yaml | 49 + themes/illusion-refined.yaml | 49 + themes/iloveagents-azure-ai-foundry-dark.yaml | 49 + .../iloveagents-azure-ai-foundry-light.yaml | 49 + themes/iloveagents-dark.yaml | 49 + themes/iloveagents-light.yaml | 49 + themes/imba-dark.yaml | 49 + themes/imexoodeex.yaml | 49 + themes/in-bed-by-7pm.yaml | 49 + themes/in-darkest-night.yaml | 49 + themes/in-his-earthy-elements.yaml | 49 + themes/in-the-fog-dark.yaml | 49 + themes/index.json | 6933 +++++++++++++++++ themes/index.yaml | 49 + themes/indielayer.yaml | 49 + themes/indigo-and-amaranth.yaml | 49 + themes/indigo-ice.yaml | 49 + themes/industrialcomplex.yaml | 49 + themes/industry.yaml | 49 + themes/infatuation.yaml | 49 + themes/inferius.yaml | 49 + themes/infinitus.yaml | 49 + ...finity-64-blackboard-by-shingo-murata.yaml | 49 + ...finity-64-whiteboard-by-shingo-murata.yaml | 49 + themes/infinity-dark-contrast.yaml | 49 + themes/infinity-night-theme.yaml | 49 + themes/infinity.yaml | 49 + themes/ingeni.yaml | 49 + themes/inheritance.yaml | 49 + themes/inkpot.yaml | 49 + themes/inksea-dank.yaml | 49 + themes/inksea-dark.yaml | 49 + themes/inksea-dracula.yaml | 49 + themes/inksea-hacker.yaml | 49 + themes/inksea-midnight.yaml | 49 + themes/inksea-oceanic.yaml | 49 + themes/inksea-sea-monkey.yaml | 49 + themes/inksea.yaml | 49 + themes/inkstained.yaml | 49 + themes/inovando-theme.yaml | 49 + themes/insane.yaml | 49 + themes/insight.yaml | 49 + themes/inspiration.yaml | 49 + themes/instamuch.yaml | 49 + themes/intellij-dark-color-theme.yaml | 49 + themes/intellij-idea-islands-dark.yaml | 49 + themes/intellij-idea-islands-light.yaml | 49 + themes/intellij-idea-new-ui.yaml | 49 + .../intellij-light-classic-color-theme.yaml | 49 + themes/intellij-light-deaft.yaml | 49 + themes/intelliyay-color-theme.yaml | 49 + themes/intergalactic.yaml | 49 + themes/interstellar-blue-ii.yaml | 49 + themes/interstellar-blue.yaml | 49 + themes/interstellar.yaml | 49 + themes/intility-bifrost-theme.yaml | 49 + themes/into-the-unknow-fork.yaml | 49 + themes/intrepid-darkness-light.yaml | 49 + themes/intrepid-darkness.yaml | 49 + themes/invi.yaml | 49 + themes/ionztorm-theme.yaml | 49 + themes/iris-pink.yaml | 49 + themes/irishbruse-s-color-theme.yaml | 49 + themes/ironhellrider.yaml | 49 + themes/ironman-theme-dark.yaml | 49 + themes/ironman-theme-light.yaml | 49 + themes/irony.yaml | 49 + themes/is-them-tears-bro.yaml | 49 + themes/islands-dark.yaml | 49 + themes/islands-light.yaml | 49 + themes/isotope-contrast.yaml | 49 + themes/isotope-light.yaml | 49 + themes/isotope.yaml | 49 + themes/itsnp-dark-cyan.yaml | 49 + themes/itsnp-dark-pink.yaml | 49 + themes/itsnp-dark.yaml | 49 + themes/itsnp-night-blue.yaml | 49 + themes/itsnp-yellow.yaml | 49 + themes/iv-spade.yaml | 49 + themes/ivalo-color-theme.yaml | 49 + themes/iwa-s-code-theme.yaml | 49 + themes/j-cinco-da-manh.yaml | 49 + themes/j-theme.yaml | 49 + themes/jabrms.yaml | 49 + themes/jacaranda-theme.yaml | 49 + themes/jackhammar.yaml | 49 + themes/jaga-theme.yaml | 49 + themes/jammy-jellyfish.yaml | 49 + themes/jamuntheme.yaml | 49 + themes/jannchie-black.yaml | 49 + themes/jannchie-dark-soft.yaml | 49 + themes/jannchie-dark.yaml | 49 + themes/jannchie-light-soft.yaml | 49 + themes/jannchie-light.yaml | 49 + themes/janus-light.yaml | 49 + themes/japanese-breakfast.yaml | 49 + themes/jartur.yaml | 49 + themes/jarvis-3d.yaml | 49 + themes/jarvis.yaml | 49 + themes/jasmine.yaml | 49 + themes/java-dark-theme.yaml | 49 + themes/javascript-modern-dark.yaml | 49 + themes/javascript-neon-dark.yaml | 49 + themes/javascript-vibrant-dark.yaml | 49 + themes/jaytheme.yaml | 49 + themes/jazari-dark.yaml | 49 + themes/jazari-light.yaml | 49 + themes/jcardenas.yaml | 49 + themes/jcsoftiablack.yaml | 49 + themes/jcsoftiadark.yaml | 49 + themes/jcsoftiadarkblue.yaml | 49 + themes/jcsoftiadarkred.yaml | 49 + themes/jd-s-abyss.yaml | 49 + themes/jdarkmaterial-v2.yaml | 49 + themes/jdh.yaml | 49 + themes/jehuty-dark.yaml | 49 + themes/jehuty-light.yaml | 49 + themes/jelly-theme.yaml | 49 + themes/jelly.yaml | 49 + themes/jellybeans-theme.yaml | 49 + themes/jellybeans.yaml | 49 + themes/jellyfish.yaml | 49 + themes/jeng-light.yaml | 49 + themes/jetbrain-fleet-color.yaml | 49 + themes/jetbrains-dark-theme.yaml | 49 + themes/jetbrains-deep-dark-theme.yaml | 49 + themes/jetbrains-ide-dark-theme.yaml | 49 + themes/jetcode.yaml | 49 + themes/jetdark.yaml | 49 + themes/jetverse-dev-dark.yaml | 49 + themes/jewel-contrast.yaml | 49 + themes/jewel-light.yaml | 49 + themes/jewel.yaml | 49 + themes/jg-vsc.yaml | 49 + themes/jingle-contrast.yaml | 49 + themes/jingle-light.yaml | 49 + themes/jingle.yaml | 49 + themes/jinglecode.yaml | 49 + themes/jinshi-dark-theme.yaml | 49 + themes/jinshi-light-theme.yaml | 49 + themes/jinx.yaml | 49 + themes/jk.yaml | 49 + themes/jker-purple-wave.yaml | 49 + themes/jngl.yaml | 49 + themes/jojobii-s-colors.yaml | 49 + themes/jokejoke.yaml | 49 + themes/jokenkai.yaml | 49 + themes/jokenpo-obscure.yaml | 49 + themes/joker-contrast.yaml | 49 + themes/joker-light.yaml | 49 + themes/joker-neon.yaml | 49 + themes/joker.yaml | 49 + themes/jollifake.yaml | 49 + themes/jolly-light.yaml | 49 + themes/jone-light.yaml | 49 + themes/josi.yaml | 49 + themes/jott4c-dark.yaml | 49 + themes/joyboy.yaml | 49 + themes/joyful-fork.yaml | 49 + themes/js-dark-theme.yaml | 49 + themes/jtvscode-dark.yaml | 49 + themes/jtvscode-light.yaml | 49 + themes/jugal13-theme.yaml | 49 + themes/juicy-contrast.yaml | 49 + themes/juicy-light.yaml | 49 + themes/juicy.yaml | 49 + themes/july-summer-vibes-dark-theme.yaml | 49 + themes/jummidark.yaml | 49 + themes/jummilight.yaml | 49 + themes/jumper-contrast.yaml | 49 + themes/jumper-light.yaml | 49 + themes/jumper.yaml | 49 + themes/jungle.yaml | 49 + themes/juniorcoder.yaml | 49 + themes/just-code-already-fork.yaml | 49 + themes/jwrdark.yaml | 49 + themes/k-colorable-dark.yaml | 49 + themes/k-colorable-light.yaml | 49 + themes/k-relaxed.yaml | 49 + themes/kabukich.yaml | 49 + themes/kactus-dream-theme-dark.yaml | 49 + themes/kactus-dream-theme.yaml | 49 + themes/kadoku.yaml | 49 + themes/kai-garbage.yaml | 49 + themes/kai-sa-white-fork.yaml | 49 + themes/kai.yaml | 49 + themes/kailash-shaw-dark-theme.yaml | 49 + themes/kaimandres.yaml | 49 + themes/kaio.yaml | 49 + themes/kaiokenkolors.yaml | 49 + themes/kaique-theme.yaml | 49 + themes/kaisa-dark.yaml | 49 + themes/kali-linux-theme.yaml | 49 + themes/kalia.yaml | 49 + themes/kalidozza.yaml | 49 + themes/kalisi.yaml | 49 + themes/kalmia-high-contrast.yaml | 49 + themes/kalmia.yaml | 49 + themes/kami-theme.yaml | 49 + themes/kanagawa-dragon.yaml | 49 + themes/kanagawa-light.yaml | 49 + themes/kanagawa-lotus.yaml | 49 + themes/kanagawa-night.yaml | 49 + themes/kanagawa-paper.yaml | 49 + themes/kanagawa-wave-light.yaml | 49 + themes/kanagawa-wave.yaml | 49 + themes/kanagawa.yaml | 49 + themes/kanamin-dark.yaml | 49 + themes/kanao.yaml | 49 + themes/kanso-ink.yaml | 49 + themes/kanso-mist.yaml | 49 + themes/kanso-pearl.yaml | 49 + themes/kaolin-light-theme-alt.yaml | 49 + themes/kaolin-light-theme.yaml | 49 + themes/kaplan-dark-muted.yaml | 49 + themes/kara.yaml | 49 + themes/karam-theme-darker.yaml | 49 + themes/karma.yaml | 49 + themes/karnataka-sandalwood-state.yaml | 49 + themes/karou-noir.yaml | 49 + themes/karou-theme.yaml | 49 + themes/karrot-theme-classic.yaml | 49 + themes/karry-color-theme.yaml | 49 + themes/kary-pro-colors-dark.yaml | 49 + themes/kary-pro-colors-light.yaml | 49 + themes/kashi-night.yaml | 49 + themes/kastorcode-dark-orange-theme.yaml | 49 + themes/kastorcode-dark-purple-theme.yaml | 49 + themes/katagawatheme.yaml | 49 + themes/kato.yaml | 49 + themes/kaupo.yaml | 49 + themes/kayhan.yaml | 49 + themes/kayto.yaml | 49 + themes/kaze.yaml | 49 + themes/kblue-minimal.yaml | 49 + themes/keen-contrast.yaml | 49 + themes/keen-light.yaml | 49 + themes/keen.yaml | 49 + themes/kenobi-dark-theme.yaml | 49 + themes/kerala-god-s-own-country.yaml | 49 + themes/kerama-deep.yaml | 49 + themes/kermit-fork.yaml | 49 + themes/keval-s-official-electric-lime.yaml | 49 + themes/kiiro-dark.yaml | 49 + themes/killer-dark.yaml | 49 + themes/kindfeeling.yaml | 49 + themes/kingfisher-fishing.yaml | 49 + themes/kinnitchi-neon-dark-modern.yaml | 49 + themes/kintsugi-dark.yaml | 49 + themes/kintsugi-light.yaml | 49 + themes/kiona.yaml | 49 + themes/kira-theme.yaml | 49 + themes/kismat-default-colors.yaml | 49 + themes/kiss.yaml | 49 + themes/kite-dark.yaml | 49 + themes/kite-darker.yaml | 49 + themes/kite-light.yaml | 49 + themes/kitty-catty.yaml | 49 + themes/kitty-night.yaml | 49 + themes/kittypower.yaml | 49 + themes/kiwi-contrast.yaml | 49 + themes/kiwi-light.yaml | 49 + themes/kiwi.yaml | 49 + themes/kiwisoup-fork.yaml | 49 + themes/knapsack.yaml | 49 + themes/knfocus-alt.yaml | 49 + themes/knfocus-base.yaml | 49 + themes/knoctal-dark.yaml | 49 + themes/knoctal-darker.yaml | 49 + themes/knowit-dark.yaml | 49 + themes/knowlyr-dark.yaml | 49 + themes/knowlyr-light.yaml | 49 + themes/koala-codes-theme.yaml | 49 + themes/kod-purple.yaml | 49 + themes/kodex-arctic.yaml | 49 + themes/kodex.yaml | 49 + themes/koffee-kreme.yaml | 49 + themes/koi-noir-lan-theme.yaml | 49 + themes/koi-noir-theme.yaml | 49 + themes/koi-pond-dark.yaml | 49 + themes/koi-pond-light.yaml | 49 + themes/kokatheme.yaml | 49 + themes/koki-dark.yaml | 49 + themes/kokubo.yaml | 49 + themes/kolada.yaml | 49 + themes/komorebi.yaml | 49 + themes/kong-light-extended.yaml | 49 + themes/konng.yaml | 49 + themes/kopo-theme.yaml | 49 + themes/korbit.yaml | 49 + themes/korean-dancheong-dark.yaml | 49 + themes/korsr-theme.yaml | 49 + themes/kozy-darker.yaml | 49 + themes/kozy.yaml | 49 + themes/kpurple.yaml | 49 + themes/kradeno.yaml | 49 + themes/krb-violet.yaml | 49 + themes/kripton.yaml | 49 + themes/krishna-dark-elegant.yaml | 49 + themes/krishna-default-dark-theme.yaml | 49 + themes/kroma-cardinal-light.yaml | 49 + themes/krone.yaml | 49 + themes/krow-t.yaml | 49 + themes/kryptonite-theme.yaml | 49 + themes/ktrz-monokai.yaml | 49 + themes/kubesong.yaml | 49 + themes/kultist-v2.yaml | 49 + themes/kurdish-vibrant-theme.yaml | 49 + themes/kurdor-light.yaml | 49 + themes/kuro-theme-color-theme.yaml | 49 + themes/kuro.yaml | 49 + themes/kuroir-dark-01-crimson.yaml | 49 + themes/kuroir-dark-02-vermilion.yaml | 49 + themes/kuroir-dark-04-goldenrod.yaml | 49 + themes/kuroir-dark-05-citrine.yaml | 49 + themes/kuroir-dark-06-chartreuse.yaml | 49 + themes/kuroir-dark-07-fern.yaml | 49 + themes/kuroir-dark-08-emerald.yaml | 49 + themes/kuroir-dark-09-jade.yaml | 49 + themes/kuroir-dark-13-turquoise.yaml | 49 + themes/kuroir-dark-17-sapphire.yaml | 49 + themes/kuroir-dark-18-indigo.yaml | 49 + themes/kuroir-dark-19-violet.yaml | 49 + themes/kuroir-dark-20-amethyst.yaml | 49 + themes/kuroir-dark-21-magenta.yaml | 49 + themes/kuroir-dark-22-fuchsia.yaml | 49 + themes/kuroir-dark-23-rose.yaml | 49 + themes/kuroir-dark-24-coral.yaml | 49 + themes/kuroir-light-02-vermilion.yaml | 49 + themes/kuroir-light-04-goldenrod.yaml | 49 + themes/kuroir-light-07-fern.yaml | 49 + themes/kuroir-light-09-jade.yaml | 49 + themes/kuroir-light-13-turquoise.yaml | 49 + themes/kuroir-light-15-sky.yaml | 49 + themes/kuroir-light-18-indigo.yaml | 49 + themes/kuroir-light-19-violet.yaml | 49 + themes/kuroir-light-23-rose.yaml | 49 + themes/kyanite.yaml | 49 + themes/kybern.yaml | 49 + themes/kybik-dark.yaml | 49 + themes/kybik.yaml | 49 + themes/kyngo-s-theme.yaml | 49 + themes/kyojuro-rengoku.yaml | 49 + themes/kyorazo-dark-theme.yaml | 49 + themes/lackluster-dark.yaml | 49 + themes/lackluster-night.yaml | 49 + themes/ladyluck-color-theme.yaml | 49 + themes/lanten-color-theme-dark.yaml | 49 + themes/lapis-ruby-dark-stealth-version.yaml | 49 + themes/lapis-ruby-light.yaml | 49 + themes/lapis-stealth-version.yaml | 49 + themes/laracasts-contrast.yaml | 49 + themes/laracasts-light.yaml | 49 + themes/laracasts.yaml | 49 + themes/laradocs.yaml | 49 + themes/laravel-contrast.yaml | 49 + themes/laravel-light.yaml | 49 + themes/laravel.yaml | 49 + themes/laserkai.yaml | 49 + themes/late-night.yaml | 49 + themes/lauds.yaml | 49 + themes/lavalink.yaml | 49 + themes/lavanda.yaml | 49 + themes/lavender-contrast.yaml | 49 + themes/lavender-dark-theme.yaml | 49 + themes/lavender-light-theme.yaml | 49 + themes/lavender-light.yaml | 49 + themes/lavender.yaml | 49 + themes/lazuli.yaml | 49 + themes/lazy-yellow-lemon.yaml | 49 + themes/lazygreed-theme.yaml | 49 + themes/lazzaretti-plenatech.yaml | 49 + themes/lazzaretti-win11.yaml | 49 + themes/lbb-builder-dark.yaml | 49 + themes/lbb-builder-light.yaml | 49 + themes/lc.yaml | 49 + themes/lcars.yaml | 49 + themes/le-moderne.yaml | 49 + themes/leaf-dark-soft.yaml | 49 + themes/leaf-dark.yaml | 49 + themes/lean-coders-dark.yaml | 49 + .../learn-with-sumit-blue-velvet-theme.yaml | 49 + themes/learn-with-sumit-official-theme.yaml | 49 + ...umit-peace-of-the-eye-dracula-version.yaml | 49 + .../learn-with-sumit-professional-theme.yaml | 49 + themes/learn-with-sumit-simple-as-light.yaml | 49 + themes/learn-with-sumit-theme.yaml | 49 + themes/learn-with-sumit-vintage.yaml | 49 + themes/leftish.yaml | 49 + themes/legacy-contrast.yaml | 49 + themes/legacy-light.yaml | 49 + themes/legacy-solarized-dark-color-theme.yaml | 49 + .../legacy-solarized-light-color-theme.yaml | 49 + themes/legacy.yaml | 49 + themes/legendary-dark.yaml | 49 + themes/legends-theme-night-fymhr-special.yaml | 49 + themes/legends-theme-night.yaml | 49 + themes/leios.yaml | 49 + themes/lemon.yaml | 49 + themes/lemonade.yaml | 49 + themes/leon-arantes.yaml | 49 + themes/leon.yaml | 49 + themes/leonida-keys-ocean.yaml | 49 + themes/lesbian.yaml | 49 + themes/lesser.yaml | 49 + themes/let-s-code.yaml | 49 + themes/leviosa-theme.yaml | 49 + themes/levuaska.yaml | 49 + themes/lht.yaml | 49 + themes/liangliang-one-monokai.yaml | 49 + themes/lichen-contrast.yaml | 49 + themes/lichen-light.yaml | 49 + themes/lichen.yaml | 49 + themes/light-brown.yaml | 49 + themes/light-code-with-bars.yaml | 49 + themes/light-color-theme.yaml | 49 + themes/light-decay.yaml | 49 + themes/light-gruvdark-mono.yaml | 49 + themes/light-gruvdark-tokyo.yaml | 49 + themes/light-gruvdark.yaml | 49 + themes/light-print.yaml | 49 + themes/light-red.yaml | 49 + themes/light-springbok.yaml | 49 + themes/light-theme.yaml | 49 + themes/light.yaml | 49 + themes/lightblack.yaml | 49 + themes/lightdelight.yaml | 49 + themes/lighter-a-theme-for-light-coders.yaml | 49 + themes/lightestlighttheme.yaml | 49 + themes/lighthaus.yaml | 49 + ...ghthouse-in-the-dark-boon-island-dark.yaml | 49 + ...hthouse-in-the-dark-boon-island-light.yaml | 49 + ...ghthouse-in-the-dark-rose-island-dark.yaml | 49 + ...hthouse-in-the-dark-rose-island-light.yaml | 49 + themes/lightning-cloud.yaml | 49 + themes/lightning-dark.yaml | 49 + themes/lightning-material-day.yaml | 49 + themes/lightning-material-evening.yaml | 49 + themes/lightning-material-midnight.yaml | 49 + themes/lightning-material-soft.yaml | 49 + themes/lightning-soft-dark.yaml | 49 + themes/lightning-soft.yaml | 49 + themes/lightning-theme.yaml | 49 + themes/lightning.yaml | 49 + themes/ligiapink.yaml | 49 + themes/ligor-fork.yaml | 49 + themes/lilac-dreams.yaml | 49 + themes/lilac-grove.yaml | 49 + themes/lima-theme.yaml | 49 + themes/limpo-dark.yaml | 49 + themes/limpo-darker.yaml | 49 + themes/linear-dark.yaml | 49 + themes/linear-light.yaml | 49 + themes/linkarzu-vscode-theme.yaml | 49 + themes/lino-dark-ruby.yaml | 49 + themes/lionel.yaml | 49 + themes/liquid-dark.yaml | 49 + themes/liquid-ochre.yaml | 49 + themes/liquid-ray-light.yaml | 49 + themes/liquid-ray.yaml | 49 + themes/liquor-theme.yaml | 49 + themes/liquorice.yaml | 49 + themes/little-league-dark.yaml | 49 + themes/little-league-darker.yaml | 49 + themes/little-league-light.yaml | 49 + themes/lives.yaml | 49 + themes/living-twilight.yaml | 49 + themes/lncoder-theme.yaml | 49 + themes/lofi.yaml | 49 + themes/loki-official-classic.yaml | 49 + themes/loki-official-kang-edition.yaml | 49 + themes/loki-theme-contrast.yaml | 49 + themes/loki-theme.yaml | 49 + themes/lolo.yaml | 49 + themes/lone-wolf-dark.yaml | 49 + themes/lonely.yaml | 49 + themes/lonus-dark.yaml | 49 + themes/lookify-dark-mode.yaml | 49 + themes/lookify-light-mode.yaml | 49 + themes/looped.yaml | 49 + themes/loopy.yaml | 49 + themes/lore.yaml | 49 + themes/lostforindia.yaml | 49 + themes/lotus-dark.yaml | 49 + themes/lotus-flat-dusk.yaml | 49 + themes/lotus-flat-midnight.yaml | 49 + themes/lotus-light.yaml | 49 + themes/lovepurple.yaml | 49 + themes/lowlvl.yaml | 49 + themes/loyal-contrast.yaml | 49 + themes/loyal-light.yaml | 49 + themes/loyal.yaml | 49 + themes/luanslaslatheme.yaml | 49 + themes/luau-starlit.yaml | 49 + themes/lubasiverse-freewill.yaml | 49 + themes/lubasiverse.yaml | 49 + themes/lucario.yaml | 49 + themes/lucid-labs-dark.yaml | 49 + themes/lucid-labs-light.yaml | 49 + .../lucifer-terminal-dark-hacker-edition.yaml | 49 + themes/luckyhub.yaml | 49 + themes/lui.yaml | 49 + themes/luiz-dark-theme.yaml | 49 + themes/luke-skywriter.yaml | 49 + themes/lull.yaml | 49 + themes/lulutheme.yaml | 49 + themes/lumenrift.yaml | 49 + themes/lumin.yaml | 49 + themes/lumina.yaml | 49 + themes/luminara-void.yaml | 49 + themes/luminarca-crep-sculo.yaml | 49 + themes/luminarca-luz.yaml | 49 + themes/luminarca-trevas.yaml | 49 + themes/luminashade-amethyst.yaml | 49 + themes/luminescence-theme.yaml | 49 + themes/lumon-theme.yaml | 49 + themes/lumos-black.yaml | 49 + themes/lumos-dark-soft.yaml | 49 + themes/lumos-dark.yaml | 49 + themes/lunar-eclipse-golden-hour.yaml | 49 + themes/lunar-eclipse-light.yaml | 49 + themes/lunar-eclipse.yaml | 49 + themes/lunar-pink-satellite.yaml | 49 + themes/lunar-pink.yaml | 49 + themes/lunar-theme.yaml | 49 + themes/lunar-vscode.yaml | 49 + themes/lunar.yaml | 49 + themes/lunaria.yaml | 49 + themes/lunna-dark.yaml | 49 + themes/lupine.yaml | 49 + themes/lupus.yaml | 49 + themes/luxeforest.yaml | 49 + themes/lyra-s-vega.yaml | 49 + themes/lztheme.yaml | 49 + themes/m-unity-s-custom-vscode-theme.yaml | 49 + themes/m2d-fork.yaml | 49 + themes/mac-theme.yaml | 49 + themes/machine.yaml | 49 + themes/macho-man.yaml | 49 + themes/macos-classic-dark.yaml | 49 + themes/macos-classic-light.yaml | 49 + themes/macos.yaml | 49 + themes/macrodata-refiners-classic.yaml | 49 + themes/macrodata-refiners-cold-harbor.yaml | 49 + themes/macrodata-refiners-defiant-jazz.yaml | 49 + themes/macrodata-refiners-ortbo.yaml | 49 + themes/macrodata-refiners-sweet-vitriol.yaml | 49 + themes/mad-dark-volt.yaml | 49 + themes/madak17z-darkmode-testing.yaml | 49 + themes/madness.yaml | 49 + themes/madnight.yaml | 49 + themes/madrid-night.yaml | 49 + themes/magenta-one-dark-pro.yaml | 49 + themes/magic-mushroom-theme.yaml | 49 + themes/magicorp.yaml | 49 + themes/magicuser-bases.yaml | 49 + themes/magicuser-book.yaml | 49 + themes/magicuser-camouflage-light.yaml | 49 + themes/magicuser-camouflage.yaml | 49 + themes/magicuser-day.yaml | 49 + themes/magicuser-light-blue.yaml | 49 + themes/magicuser-light-gray.yaml | 49 + themes/magicuser-light-green.yaml | 49 + themes/magicuser-light-orange.yaml | 49 + themes/magicuser-light-purple.yaml | 49 + themes/magicuser-light.yaml | 49 + themes/magicuser-neblina.yaml | 49 + themes/magicuser-night-neblina.yaml | 49 + themes/magicuser-night.yaml | 49 + themes/magicuser-paladin.yaml | 49 + themes/magicuser-path.yaml | 49 + themes/magicuser-power.yaml | 49 + themes/magicuser-purple-night.yaml | 49 + themes/magicuser-purple.yaml | 49 + themes/magicuser-room-lamp.yaml | 49 + themes/magicuser-sea.yaml | 49 + themes/magicuser-space.yaml | 49 + themes/magicuser-specialist.yaml | 49 + themes/magicuser-staff.yaml | 49 + themes/magicuser-sun.yaml | 49 + themes/magicuser-talisman.yaml | 49 + themes/magicuser-teal-night.yaml | 49 + themes/magicuser-teal.yaml | 49 + themes/magicuser-veteran-blue.yaml | 49 + themes/magicuser-veteran-purple.yaml | 49 + themes/magicuser-veteran.yaml | 49 + themes/magicuser-wand-blue.yaml | 49 + themes/magicuser.yaml | 49 + themes/magnolia.yaml | 49 + themes/magnus-dark-theme.yaml | 49 + themes/maguh.yaml | 49 + themes/maharashtra-land-of-warriors.yaml | 49 + themes/mahiro.yaml | 49 + themes/maisum-xcode-dark.yaml | 49 + themes/mak1na-theme.yaml | 49 + themes/make-apps.yaml | 49 + themes/malachite.yaml | 49 + themes/maldi-dark.yaml | 49 + themes/malibu-sunset.yaml | 49 + themes/malibun-sunrise.yaml | 49 + themes/malte.yaml | 49 + themes/man-dark-stone.yaml | 49 + themes/manatee.yaml | 49 + themes/mandacaru-syntax-theme.yaml | 49 + themes/manhld-theme.yaml | 49 + themes/manjaro-owl.yaml | 49 + themes/manners.yaml | 49 + themes/mantissa-dark.yaml | 49 + themes/mantissa-light.yaml | 49 + themes/maomao-dark-theme.yaml | 49 + themes/maomao-light-theme.yaml | 49 + themes/maple-dark.yaml | 49 + themes/maple-light.yaml | 49 + themes/marble-dark.yaml | 49 + themes/marci1.yaml | 49 + themes/marcial-theme.yaml | 49 + themes/marcosven.yaml | 49 + themes/mariana-light.yaml | 49 + themes/mariana-pro.yaml | 49 + themes/mariana-refined.yaml | 49 + themes/mariana.yaml | 49 + themes/marigold-night.yaml | 49 + themes/mario-theme.yaml | 49 + themes/marnic1505.yaml | 49 + themes/maroza-cyber-chill.yaml | 49 + themes/maroza-dark-theme.yaml | 49 + themes/maroza-light-theme.yaml | 49 + themes/maroza-soothing-aqua.yaml | 49 + themes/maroza-zen-pro.yaml | 49 + themes/mars.yaml | 49 + themes/marshmallow.yaml | 49 + themes/marsidark.yaml | 49 + themes/marstree.yaml | 49 + themes/marwen-labidi-theme.yaml | 49 + themes/matcha-pink.yaml | 49 + themes/matcha.yaml | 49 + themes/matchalk.yaml | 49 + themes/matchanaa.yaml | 49 + themes/matchati.yaml | 49 + themes/material-color-theme.yaml | 49 + themes/material-community-ansi-16.yaml | 49 + themes/material-dark-color-theme.yaml | 49 + themes/material-last.yaml | 49 + themes/material-midnight.yaml | 49 + themes/material-monokai-high-contrast.yaml | 49 + themes/material-ocean.yaml | 49 + themes/material-rainbow.yaml | 49 + themes/material-solarized.yaml | 49 + themes/material-theme-dark.yaml | 49 + .../material-theme-darker-high-contrast.yaml | 49 + themes/material-theme-darker.yaml | 49 + ...terial-theme-deepforest-high-contrast.yaml | 49 + .../material-theme-default-high-contrast.yaml | 49 + .../material-theme-lighter-high-contrast.yaml | 49 + themes/material-theme-lighter.yaml | 49 + ...aterial-theme-palenight-high-contrast.yaml | 49 + ...material-theme-twilight-wave-ocean-ui.yaml | 49 + themes/material.yaml | 49 + themes/material1.yaml | 49 + themes/materialdarker-monokaist3.yaml | 49 + themes/materialdarkplus.yaml | 49 + themes/matey.yaml | 49 + themes/matitheme-gotham.yaml | 49 + themes/matitheme.yaml | 49 + themes/matrix-hacking-dark-theme.yaml | 49 + themes/matrix-mint.yaml | 49 + themes/matrix.yaml | 49 + themes/matronator-s-theme.yaml | 49 + themes/matte-atelier-ivory.yaml | 49 + themes/matte-atelier-obsidian-colorblind.yaml | 49 + .../matte-atelier-obsidian-high-contrast.yaml | 49 + themes/matte-atelier-obsidian.yaml | 49 + themes/matte-atelier-ros.yaml | 49 + themes/matte-atelier-sapphire.yaml | 49 + themes/matte-light-theme.yaml | 49 + themes/matteblack.yaml | 49 + themes/matter.yaml | 49 + themes/matteric-dark-default.yaml | 49 + themes/mauve-contrast.yaml | 49 + themes/mauve-light.yaml | 49 + themes/mauve.yaml | 49 + themes/mavaia.yaml | 49 + themes/max2.yaml | 49 + themes/maxsumon.yaml | 49 + themes/mayukai.yaml | 49 + themes/mazda-rx7-theme.yaml | 49 + themes/mbp.yaml | 49 + themes/mcdark-theme.yaml | 49 + themes/mcdonalds-theme.yaml | 49 + themes/mcyoda-s-light-theme.yaml | 49 + themes/md-abdur-rakib.yaml | 49 + themes/meaow-dark.yaml | 49 + themes/mecha-01.yaml | 49 + themes/medium-dark.yaml | 49 + themes/mega-green.yaml | 49 + themes/meitnerium-theme.yaml | 49 + themes/mel.yaml | 49 + themes/melancholy.yaml | 49 + themes/melange-redux-light.yaml | 49 + themes/melcr.yaml | 49 + themes/melee-island.yaml | 49 + themes/melinoe.yaml | 49 + themes/mellow-contrast.yaml | 49 + themes/mellow-light.yaml | 49 + themes/mellow.yaml | 49 + themes/melokai.yaml | 49 + themes/meloncode.yaml | 49 + themes/melyon-blue.yaml | 49 + themes/melyon.yaml | 49 + themes/menelik.yaml | 49 + themes/meoceanblackbarry.yaml | 49 + themes/meoceangray.yaml | 49 + themes/merlot.yaml | 49 + themes/mesalvo-cortex.yaml | 49 + themes/meshvoid-light.yaml | 49 + themes/meshvoid.yaml | 49 + themes/metagrama.yaml | 49 + themes/meteora.yaml | 49 + themes/metropolis-light.yaml | 49 + themes/metropolis.yaml | 49 + themes/mgldvd-theme.yaml | 49 + themes/mh-theme.yaml | 49 + themes/mhfeizi.yaml | 49 + themes/mi4uokai.yaml | 49 + themes/miami-nights.yaml | 49 + themes/miami-vice.yaml | 49 + themes/miami-wind.yaml | 49 + themes/miasma-color-theme.yaml | 49 + themes/mibtema.yaml | 49 + themes/micky-dark-black.yaml | 49 + themes/micky-dark-lite-black.yaml | 49 + themes/micky-dark-lite.yaml | 49 + themes/midas-touch-light.yaml | 49 + themes/midas-touch.yaml | 49 + themes/midcentury.yaml | 49 + themes/midight-sun.yaml | 49 + themes/midnight-blueprint.yaml | 49 + themes/midnight-breeze.yaml | 49 + themes/midnight-candy.yaml | 49 + themes/midnight-city.yaml | 49 + themes/midnight-color-theme.yaml | 49 + themes/midnight-darker.yaml | 49 + themes/midnight-dracula.yaml | 49 + themes/midnight-embers.yaml | 49 + themes/midnight-fusion.yaml | 49 + themes/midnight-gambler.yaml | 49 + themes/midnight-grove.yaml | 49 + themes/midnight-guest.yaml | 49 + themes/midnight-lake.yaml | 49 + themes/midnight-marina.yaml | 49 + themes/midnight-mirage.yaml | 49 + themes/midnight-monokai.yaml | 49 + themes/midnight-moon-eclipse.yaml | 49 + themes/midnight-moon-ukiyo.yaml | 49 + themes/midnight-moon.yaml | 49 + themes/midnight-pastel.yaml | 49 + themes/midnight-pro.yaml | 49 + themes/midnight-purple-deep.yaml | 49 + themes/midnight-purple.yaml | 49 + themes/midnight-rainbow.yaml | 49 + themes/midnight-rose-theme.yaml | 49 + themes/midnight-sapphire.yaml | 49 + themes/midnight-theme-light-soft.yaml | 49 + themes/midnight-theme-light.yaml | 49 + themes/midnight-theme.yaml | 49 + themes/midnight-ukiyo.yaml | 49 + themes/midnight-z.yaml | 49 + themes/midnightblue.yaml | 49 + themes/midnightglow.yaml | 49 + themes/midt.yaml | 49 + themes/mihari-bordered.yaml | 49 + themes/mihari.yaml | 49 + themes/mike-sources-green-crt.yaml | 49 + themes/mike-sources-yellowstone.yaml | 49 + themes/mikes-vscode-theme-1.yaml | 49 + themes/miku-code-fusion-light.yaml | 49 + themes/miku-code-light.yaml | 49 + themes/miku-code.yaml | 49 + themes/milianor-theme.yaml | 49 + themes/military-fork.yaml | 49 + themes/milkyway.yaml | 49 + themes/mimesis-dark.yaml | 49 + themes/mimesis-light.yaml | 49 + themes/min-gruvbox.yaml | 49 + themes/min-light.yaml | 49 + themes/mincom.yaml | 49 + themes/minimal-44-pro.yaml | 49 + themes/minimal-44.yaml | 49 + themes/minimal-dark-fork.yaml | 49 + themes/minimal-dark.yaml | 49 + themes/minimal-green.yaml | 49 + themes/minimal-monochrome-dark.yaml | 49 + themes/minimal-monochrome-ink-dark.yaml | 49 + themes/minimal-monochrome-ink-light.yaml | 49 + themes/minimal-monochrome-pastel-dawn.yaml | 49 + themes/minimal-monochrome-pastel-light.yaml | 49 + themes/minimal-monochrome-slate-dark.yaml | 49 + themes/minimal-monochrome-slate-light.yaml | 49 + ...mal-pastel-dark-vibrant-softer-yellow.yaml | 49 + themes/minimal-theme.yaml | 49 + themes/minimal-wave-floral-dark.yaml | 49 + themes/minimal-wave-floral-light.yaml | 49 + themes/minimal.yaml | 49 + themes/minimalesque.yaml | 49 + themes/minimalist.yaml | 49 + themes/minimalistic-dark-theme.yaml | 49 + themes/minimalisticdarktheme.yaml | 49 + themes/minimalistik.yaml | 49 + themes/minimalred.yaml | 49 + themes/miniml-dusk.yaml | 49 + themes/miniml-light.yaml | 49 + themes/miniml-midnight.yaml | 49 + themes/minimus.yaml | 49 + themes/minitheme.yaml | 49 + themes/mink-dark-theme.yaml | 49 + themes/minokai-kalel.yaml | 49 + themes/minone.yaml | 49 + themes/mint-chocolate.yaml | 49 + themes/mint-dark.yaml | 49 + themes/mintchoc-contrast.yaml | 49 + themes/mintchoc-light.yaml | 49 + themes/mintchoc.yaml | 49 + themes/mintdark.yaml | 49 + themes/minty-dark.yaml | 49 + themes/mirai.yaml | 49 + themes/miramare.yaml | 49 + themes/mist-theme.yaml | 49 + themes/mist.yaml | 49 + themes/misterioso.yaml | 49 + themes/misty-blue.yaml | 49 + themes/mistywind.yaml | 49 + themes/mitaverse.yaml | 49 + themes/mitsuri-kanroji.yaml | 49 + themes/mixed-solarized-light.yaml | 49 + themes/mk-iceblack.yaml | 49 + themes/mk-mono-dark.yaml | 49 + themes/mk-mono-light.yaml | 49 + themes/mkanet.yaml | 49 + themes/mkdeveloper-theme.yaml | 49 + themes/mlia-dark.yaml | 49 + themes/mlia-light.yaml | 49 + themes/mlia-soft.yaml | 49 + themes/mlv60-vintage-light.yaml | 49 + themes/mocaccino-light.yaml | 49 + themes/moderate-dimm.yaml | 49 + themes/modern-dracula.yaml | 49 + themes/modern-github-white-purple.yaml | 49 + themes/moderneclipse.yaml | 49 + themes/modernui-fork.yaml | 49 + themes/modest-pink.yaml | 49 + themes/modified-darker-material-theme.yaml | 49 + themes/modus-operandi-deuteranopia.yaml | 49 + themes/modus-operandi-tinted.yaml | 49 + themes/modus-operandi-tritanopia.yaml | 49 + themes/modus-operandi.yaml | 49 + themes/modus-vivendi-deuteranopia.yaml | 49 + themes/modus-vivendi-tinted.yaml | 49 + themes/modus-vivendi-tritanopia.yaml | 49 + themes/modus-vivendi.yaml | 49 + themes/moegi-black-zen.yaml | 49 + themes/moegi-black.yaml | 49 + themes/moegi-dark.yaml | 49 + themes/moegi-dawn.yaml | 49 + themes/moegi-iris.yaml | 49 + themes/moegi-light.yaml | 49 + themes/moegi-space.yaml | 49 + themes/moin-acme.yaml | 49 + themes/moin-dark.yaml | 49 + themes/moin-light.yaml | 49 + themes/moin-soft-dark.yaml | 49 + themes/mojito-pro-dark.yaml | 49 + themes/mojito-pro.yaml | 49 + themes/mokka-fork-darken-blue.yaml | 49 + themes/mokka.yaml | 49 + themes/mol-lurity-theme-soft-fixed.yaml | 49 + themes/mol-lurity-theme.yaml | 49 + themes/molarity-washed.yaml | 49 + themes/molineux.yaml | 49 + themes/moloch.yaml | 49 + themes/molokai-darker.yaml | 49 + themes/molten-aurora.yaml | 49 + themes/monaco-paulsevere-color-theme.yaml | 49 + themes/monfika.yaml | 49 + themes/mono-atom.yaml | 49 + themes/mono-bw.yaml | 49 + themes/mono-cl.yaml | 49 + themes/monochai-dark.yaml | 49 + themes/monochromator-dark-plain.yaml | 49 + themes/monochromator-light-plain.yaml | 49 + themes/monochrome-dark-amplified.yaml | 49 + themes/monochrome-dark-cool-gray.yaml | 49 + themes/monochrome-dark-gray.yaml | 49 + themes/monochrome-dark-indigo.yaml | 49 + themes/monochrome-dark-neutral.yaml | 49 + themes/monochrome-dark-slate.yaml | 49 + themes/monochrome-dark-stone.yaml | 49 + themes/monochrome-dark-subtle.yaml | 49 + themes/monochrome-dark-zinc.yaml | 49 + themes/monochrome-dark.yaml | 49 + themes/monochrome-github-edition.yaml | 49 + themes/monochrome-light-amplified.yaml | 49 + themes/monochrome-light-cool-gray.yaml | 49 + themes/monochrome-light-gray.yaml | 49 + themes/monochrome-light-indigo.yaml | 49 + themes/monochrome-light-neutral.yaml | 49 + themes/monochrome-light-slate.yaml | 49 + themes/monochrome-light-stone.yaml | 49 + themes/monochrome-light-subtle.yaml | 49 + themes/monochrome-light-zinc.yaml | 49 + themes/monochrome-light.yaml | 49 + themes/monochrome.yaml | 49 + themes/monocious-color-theme.yaml | 49 + themes/monoclean-light.yaml | 49 + themes/monocr.yaml | 49 + themes/monocraft.yaml | 49 + themes/monoeye.yaml | 49 + themes/monokai-blue.yaml | 49 + themes/monokai-color-theme-1.yaml | 49 + themes/monokai-color-theme.yaml | 49 + themes/monokai-dark-green.yaml | 49 + themes/monokai-dark.yaml | 49 + themes/monokai-deep-dark.yaml | 49 + themes/monokai-deep-ocean.yaml | 49 + themes/monokai-drizzle.yaml | 49 + themes/monokai-extended.yaml | 49 + themes/monokai-faded.yaml | 49 + themes/monokai-flow.yaml | 49 + themes/monokai-grey.yaml | 49 + themes/monokai-grs.yaml | 49 + themes/monokai-hc-color-theme.yaml | 49 + themes/monokai-japan-color-theme.yaml | 49 + themes/monokai-midnight.yaml | 49 + themes/monokai-night-z-blue.yaml | 49 + themes/monokai-night.yaml | 49 + themes/monokai-ocean-color-theme.yaml | 49 + themes/monokai-octagon.yaml | 49 + themes/monokai-okean.yaml | 49 + themes/monokai-original-sublime-theme.yaml | 49 + themes/monokai-prime.yaml | 49 + themes/monokai-pro.yaml | 49 + themes/monokai-rain.yaml | 49 + themes/monokai-seti-dark.yaml | 49 + themes/monokai-seti-light.yaml | 49 + themes/monokai-sharp.yaml | 49 + themes/monokai-soda-darker.yaml | 49 + themes/monokai-storm.yaml | 49 + themes/monokai-supersaturated.yaml | 49 + themes/monokai-tornado.yaml | 49 + themes/monokai-underdark-mk.yaml | 49 + themes/monokai-underdark.yaml | 49 + themes/monokai-unified.yaml | 49 + themes/monokai.yaml | 49 + themes/monokai22.yaml | 49 + themes/monokaiju.yaml | 49 + themes/monokaisgq.yaml | 49 + themes/monokaizen.yaml | 49 + themes/monokard.yaml | 49 + themes/monokong.yaml | 49 + themes/monokuro-amber.yaml | 49 + themes/monolite.yaml | 49 + themes/monos-blac.yaml | 49 + themes/monospace-dark.yaml | 49 + themes/monospace-light.yaml | 49 + themes/monotone.yaml | 49 + themes/monrch-darc.yaml | 49 + themes/montana.yaml | 49 + themes/monza-dark.yaml | 49 + themes/monzo-contrast.yaml | 49 + themes/monzo-light.yaml | 49 + themes/monzo.yaml | 49 + themes/moon-light-theme.yaml | 49 + themes/moon-night.yaml | 49 + themes/moon-phases.yaml | 49 + themes/moon-purple.yaml | 49 + themes/moon-violet-dark-plus.yaml | 49 + themes/moonbloom-theme-official.yaml | 49 + themes/moonerized-dark.yaml | 49 + themes/moonerized-light.yaml | 49 + themes/moonfly.yaml | 49 + themes/moongate-theme-dark.yaml | 49 + themes/moongate-theme-light.yaml | 49 + themes/moonkai.yaml | 49 + themes/moonlight-ii.yaml | 49 + themes/moonlight.yaml | 49 + themes/moonokai.yaml | 49 + themes/moonspell-northern-lights.yaml | 49 + themes/morass-contrast.yaml | 49 + themes/morass-light.yaml | 49 + themes/morass.yaml | 49 + themes/more-purple.yaml | 49 + themes/morgan-codes.yaml | 49 + themes/mori-keycaps.yaml | 49 + themes/mori.yaml | 49 + themes/morning-mist.yaml | 49 + themes/morning-mocha.yaml | 49 + themes/morose-theme.yaml | 49 + themes/mosaic.yaml | 49 + themes/mosmmy.yaml | 49 + themes/moss-oracle.yaml | 49 + themes/mossframe-light.yaml | 49 + themes/mossframe.yaml | 49 + themes/motion-blue-thin-brackets.yaml | 49 + themes/motiv8der-s-theme.yaml | 49 + themes/mount-kalaga-noir.yaml | 49 + themes/mountain-theme.yaml | 49 + themes/mountain.yaml | 49 + themes/mountains-and-rivers.yaml | 49 + themes/mourning.yaml | 49 + themes/mowgli.yaml | 49 + themes/mr-code-black.yaml | 49 + themes/mr-code-gunmetal.yaml | 49 + themes/ms-dev-theme.yaml | 49 + themes/mt-doom-theme.yaml | 49 + themes/mud-contrast.yaml | 49 + themes/mud-light.yaml | 49 + themes/mud-theme.yaml | 49 + themes/mud.yaml | 49 + themes/murasaki-theme.yaml | 49 + themes/muromachi.yaml | 49 + themes/murora-light-lite.yaml | 49 + themes/murtadapy-green.yaml | 49 + themes/mushroomsynth.yaml | 49 + themes/muted-mirage.yaml | 49 + themes/mutenight.yaml | 49 + themes/mwone-dark.yaml | 49 + themes/my-custom-theme.yaml | 49 + themes/my-dark-theme-refined-updated.yaml | 49 + themes/my-dark-theme.yaml | 49 + themes/my-first-visual-studio-theme.yaml | 49 + themes/my-hero-academia-deku-plus-ultra.yaml | 49 + themes/my-light-theme-blue-dark.yaml | 49 + themes/my-light-theme-blue.yaml | 49 + ...-light-theme-light-green-fork-updated.yaml | 49 + ...ight-theme-light-green-paperblue-fork.yaml | 49 + ...t-theme-light-green-papermint-updated.yaml | 49 + ...theme-mint-sand-updated-fork-bluesand.yaml | 49 + themes/my-light-theme-mint-sand-updated.yaml | 49 + themes/my-monokai.yaml | 49 + themes/my-oceanic.yaml | 49 + themes/my-theme.yaml | 49 + themes/my-zu.yaml | 49 + themes/mycode-dark-blue.yaml | 49 + themes/mygo.yaml | 49 + themes/mynthra.yaml | 49 + themes/myoptic-v2.yaml | 49 + themes/myoptic.yaml | 49 + themes/myrteal.yaml | 49 + themes/mystic-moonshadow.yaml | 49 + themes/mystic.yaml | 49 + themes/mystico-c64-pepto-ntsc-sony.yaml | 49 + themes/mystico-c64-pepto-pal.yaml | 49 + themes/mystico-c64.yaml | 49 + themes/mystico-deep-purple.yaml | 49 + themes/mystico-forest-ocean.yaml | 49 + themes/mystico-mint.yaml | 49 + themes/mystico-plum.yaml | 49 + themes/mystico-purples.yaml | 49 + themes/mytheme.yaml | 49 + themes/myvscode.yaml | 49 + themes/n-darktheme.yaml | 49 + themes/n0m4d.yaml | 49 + themes/n7-lilac.yaml | 49 + themes/n7-maya.yaml | 49 + themes/n7-night-vision.yaml | 49 + themes/n7-purple-green.yaml | 49 + themes/n7-red-flare.yaml | 49 + themes/n7-soft-pink.yaml | 49 + themes/nada-theme.yaml | 49 + themes/nairobi-dark.yaml | 49 + themes/nameless.yaml | 49 + themes/nanowise.yaml | 49 + themes/naps-dusk-gold.yaml | 49 + themes/narasimha-fearless-dark-theme.yaml | 49 + themes/narato.yaml | 49 + themes/narunika.yaml | 49 + themes/naruto-akatsuki.yaml | 49 + .../naruto-hinata-hyuga-byakugan-vision.yaml | 49 + themes/naruto-hokage-dawn.yaml | 49 + themes/naruto-hokage-orange.yaml | 49 + ...uto-itachi-uchiha-tsukuyomi-dimension.yaml | 49 + themes/naruto-jiraiya-gallant-toad-sage.yaml | 49 + themes/naruto-kakashi-copy-ninja.yaml | 49 + themes/naruto-kurama-nine-tails.yaml | 49 + ...hina-uzumaki-red-hot-blooded-habanero.yaml | 49 + ...might-guy-gate-of-death-madara-battle.yaml | 49 + themes/naruto-might-guy-gates-of-youth.yaml | 49 + .../naruto-minato-namikaze-yellow-flash.yaml | 49 + themes/naruto-pain-nagato-rinnegan-god.yaml | 49 + themes/naruto-sage-mode.yaml | 49 + ...to-sakura-haruno-cherry-blossom-storm.yaml | 49 + themes/naruto-sasuke-uchiha-sharingan.yaml | 49 + ...ruto-shikamaru-nara-shadow-possession.yaml | 49 + themes/naruto-shinobi-night.yaml | 49 + themes/natasha-theme.yaml | 49 + themes/natives-in-tech-theme.yaml | 49 + themes/natto-theme-2.yaml | 49 + themes/natty.yaml | 49 + themes/natural-faded-dark.yaml | 49 + ...tural-green-colorblind-growth-harmony.yaml | 49 + .../natural-green-light-growth-harmony.yaml | 49 + themes/nature-color-theme.yaml | 49 + ...ature-green-colorblind-growth-harmony.yaml | 49 + themes/nature-green-light-growth-harmony.yaml | 49 + themes/nature.yaml | 49 + themes/nautilus.yaml | 49 + themes/naver.yaml | 49 + themes/navy-flat.yaml | 49 + themes/navy-nights-theme.yaml | 49 + themes/navy-theme.yaml | 49 + themes/navy.yaml | 49 + themes/nb-monochrome-dark.yaml | 49 + themes/ncl5c.yaml | 49 + themes/nebula-color-theme.yaml | 49 + ...-dark-vibrant-fabo-it-and-media-group.yaml | 49 + themes/nebula-nights.yaml | 49 + themes/nebula-pro-dark.yaml | 49 + themes/nebula-surge.yaml | 49 + themes/nebula-symphony-dark-pro.yaml | 49 + themes/nebula-symphony-dark.yaml | 49 + themes/nebula-symphony-light.yaml | 49 + themes/nebula.yaml | 49 + themes/nebular-theme.yaml | 49 + themes/nebularomantic.yaml | 49 + themes/nebulous-dark.yaml | 49 + themes/nebulous-luna.yaml | 49 + themes/necessity-aaa-light.yaml | 49 + themes/necessity-aaa.yaml | 49 + themes/negative-theme.yaml | 49 + themes/neil-s-theme-dark.yaml | 49 + themes/neil-s-theme.yaml | 49 + themes/nekhbet.yaml | 49 + themes/neki.yaml | 49 + themes/neo-hacker-soft-premium.yaml | 49 + themes/neo-nuxt-matte.yaml | 49 + themes/neo-seoul-dark.yaml | 49 + themes/neo-seoul-light.yaml | 49 + themes/neo-vscode-theme.yaml | 49 + themes/neodark.yaml | 49 + themes/neofusion.yaml | 49 + themes/neogenesis.yaml | 49 + themes/neokai.yaml | 49 + themes/neon-black.yaml | 49 + themes/neon-color-dark-theme.yaml | 49 + themes/neon-cyber.yaml | 49 + themes/neon-cyberpunk.yaml | 49 + themes/neon-dream-code.yaml | 49 + themes/neon-dreams-neobrutalist.yaml | 49 + themes/neon-dusk.yaml | 49 + themes/neon-forest.yaml | 49 + themes/neon-glow.yaml | 49 + themes/neon-green-light.yaml | 49 + themes/neon-green-midnight.yaml | 49 + themes/neon-lights.yaml | 49 + themes/neon-matrix.yaml | 49 + themes/neon-noir.yaml | 49 + themes/neon-ocean.yaml | 49 + themes/neon-palette-themes-blue.yaml | 49 + themes/neon-purple-old-school.yaml | 49 + themes/neon-shimmer-amethyst-core.yaml | 49 + themes/neon-shimmer-bubblegum-punk.yaml | 49 + themes/neon-shimmer-crimson-drive.yaml | 49 + themes/neon-shimmer.yaml | 49 + themes/neon-side.yaml | 49 + themes/neon-sunset.yaml | 49 + themes/neon-synthwave.yaml | 49 + themes/neon-theme.yaml | 49 + themes/neon-trench-theme.yaml | 49 + themes/neon-violet.yaml | 49 + themes/neon.yaml | 49 + themes/neonaska.yaml | 49 + themes/neonite.yaml | 49 + themes/neonmist.yaml | 49 + themes/neonshaded.yaml | 49 + themes/neorose-vimpine.yaml | 49 + themes/neospace.yaml | 49 + themes/neospectrum-midnight.yaml | 49 + themes/neospectrum-mystic.yaml | 49 + themes/neovim-sp.yaml | 49 + themes/neovim-theme.yaml | 49 + themes/nephtis-dark.yaml | 49 + themes/nephtis-light.yaml | 49 + themes/nerc-one-dark-a.yaml | 49 + themes/nerc-one-dark-b.yaml | 49 + themes/nerd-light.yaml | 49 + themes/nero.yaml | 49 + themes/nestjs-codes.yaml | 49 + themes/netbeans-harmonized.yaml | 49 + themes/netbilla-blue.yaml | 49 + themes/netlify-theme.yaml | 49 + themes/netlify.yaml | 49 + themes/netrunnaz.yaml | 49 + themes/netstack.yaml | 49 + themes/nettsi-monokai-darker.yaml | 49 + themes/netuno.yaml | 49 + themes/neumatter-night.yaml | 49 + themes/neuraltone.yaml | 49 + themes/neutral-gray-minimalism-focus.yaml | 49 + themes/neutral.yaml | 49 + themes/neutralvi.yaml | 49 + themes/neutron.yaml | 49 + themes/nevada.yaml | 49 + themes/never-be-lost-day.yaml | 49 + themes/never-be-lost-night.yaml | 49 + themes/nevermore.yaml | 49 + themes/neverwhere.yaml | 49 + themes/nevo-black.yaml | 49 + themes/nevo-comfy.yaml | 49 + themes/nevo.yaml | 49 + themes/new-england-light-theme.yaml | 49 + themes/new-moon.yaml | 49 + themes/new-owl.yaml | 49 + themes/new-retro.yaml | 49 + themes/new-south-wales-dark.yaml | 49 + themes/new-south-wales-light.yaml | 49 + themes/new-sphere.yaml | 49 + themes/new-theme.yaml | 49 + themes/newdarktheme.yaml | 49 + themes/newera-dark-theme.yaml | 49 + themes/newrailscasts.yaml | 49 + themes/newspaperlike.yaml | 49 + themes/newsprint-c.yaml | 49 + themes/newsprint-invert.yaml | 49 + themes/newsprint-so.yaml | 49 + themes/newton-contrast.yaml | 49 + themes/newton-light.yaml | 49 + themes/newton-next-official.yaml | 49 + themes/newton.yaml | 49 + themes/newx-light.yaml | 49 + themes/next-theme.yaml | 49 + themes/nextcode.yaml | 49 + themes/nexus-dark.yaml | 49 + themes/nexus.yaml | 49 + themes/ngc-aurora-dawn.yaml | 49 + themes/ngc-aurora-night.yaml | 49 + themes/ngc-forest-retreat.yaml | 49 + themes/ngc-midnight-base.yaml | 49 + themes/ngoding-bro.yaml | 49 + themes/nibelung-dark.yaml | 49 + themes/nibelung.yaml | 49 + themes/nice-dark.yaml | 49 + themes/nicedark-fork.yaml | 49 + themes/nicedark.yaml | 49 + themes/nicely-neon.yaml | 49 + themes/nier-automata-light-theme.yaml | 49 + themes/nier-automata-theme.yaml | 49 + themes/night-aurora.yaml | 49 + themes/night-blossom.yaml | 49 + themes/night-blue-high.yaml | 49 + themes/night-city.yaml | 49 + themes/night-cyan.yaml | 49 + themes/night-dragon.yaml | 49 + themes/night-fae-theme.yaml | 49 + themes/night-market.yaml | 49 + themes/night-owl-oled-dim-100.yaml | 49 + themes/night-owl-oled-dim-75.yaml | 49 + themes/night-owl-oled-dim-80.yaml | 49 + themes/night-owl-oled-dim-85.yaml | 49 + themes/night-owl-oled-dim-90.yaml | 49 + themes/night-owl-oled-dim-95.yaml | 49 + themes/night-owl.yaml | 49 + themes/night-pink.yaml | 49 + themes/night-raccoon.yaml | 49 + themes/night-rainbow-darker.yaml | 49 + themes/night-rainbow-purple-haze.yaml | 49 + themes/night-rainbow.yaml | 49 + themes/night-stack-amber-crt.yaml | 49 + themes/night-stack-amber-dark.yaml | 49 + themes/night-stack-arctic-night.yaml | 49 + themes/night-stack-aurora.yaml | 49 + themes/night-stack-carbon-green.yaml | 49 + themes/night-stack-carbon.yaml | 49 + themes/night-stack-circuit.yaml | 49 + themes/night-stack-copper-dark.yaml | 49 + themes/night-stack-crimson-dark.yaml | 49 + themes/night-stack-deep-work.yaml | 49 + themes/night-stack-desert-dusk.yaml | 49 + themes/night-stack-dos-blue.yaml | 49 + themes/night-stack-ember-dark.yaml | 49 + themes/night-stack-eyestrain-green.yaml | 49 + themes/night-stack-forest-night.yaml | 49 + themes/night-stack-frost.yaml | 49 + themes/night-stack-graphite.yaml | 49 + themes/night-stack-green-neon.yaml | 49 + themes/night-stack-hacker-soft.yaml | 49 + themes/night-stack-hologram.yaml | 49 + themes/night-stack-indigo-dark.yaml | 49 + themes/night-stack-ion.yaml | 49 + themes/night-stack-low-contrast-pro.yaml | 49 + themes/night-stack-midnight-blue.yaml | 49 + themes/night-stack-mono-focus.yaml | 49 + themes/night-stack-neo-tokyo.yaml | 49 + themes/night-stack-night-city.yaml | 49 + themes/night-stack-noir.yaml | 49 + themes/night-stack-obsidian-glass.yaml | 49 + themes/night-stack-obsidian.yaml | 49 + themes/night-stack-ocean-abyss.yaml | 49 + themes/night-stack-onyx.yaml | 49 + themes/night-stack-phosphor-green.yaml | 49 + themes/night-stack-plasma.yaml | 49 + themes/night-stack-pure-hacker.yaml | 49 + themes/night-stack-quantum.yaml | 49 + themes/night-stack-retro-wave.yaml | 49 + themes/night-stack-slate.yaml | 49 + themes/night-stack-street-grid.yaml | 49 + themes/night-stack-teal-dark.yaml | 49 + themes/night-stack-titanium.yaml | 49 + themes/night-stack-violet-dark.yaml | 49 + themes/night-stack-zen-dark.yaml | 49 + themes/night-storm.yaml | 49 + themes/night-watchers.yaml | 49 + themes/night-wind-theme.yaml | 49 + themes/night-yellow.yaml | 49 + themes/night-zen.yaml | 49 + themes/night.yaml | 49 + themes/nightblue-1.yaml | 49 + themes/nightblue-oled-beta.yaml | 49 + themes/nightcall-no-italics.yaml | 49 + themes/nightchill.yaml | 49 + themes/nightcode.yaml | 49 + themes/nightdream-monokai.yaml | 49 + themes/nightdream.yaml | 49 + themes/nightfly.yaml | 49 + themes/nightfox.yaml | 49 + themes/nighthawk.yaml | 49 + themes/nightlife.yaml | 49 + themes/nightly-code.yaml | 49 + themes/nightly-inspiration-dark.yaml | 49 + themes/nightmare.yaml | 49 + themes/nightnode.yaml | 49 + themes/nightshade.yaml | 49 + themes/nightshift-lobo-dawn.yaml | 49 + themes/nightshiftlobo-obsidian.yaml | 49 + themes/nightshiftlobo-shadow.yaml | 49 + themes/nightshiftlobo.yaml | 49 + themes/nightsky.yaml | 49 + themes/nightswell.yaml | 49 + themes/nightwing.yaml | 49 + themes/nighty-purple-color-theme.yaml | 49 + themes/nigthwolf-color-theme.yaml | 49 + themes/nihilleaf-theme.yaml | 49 + themes/niketa-pop-dark.yaml | 49 + themes/niketa-pop-light.yaml | 49 + themes/niketaoasis.yaml | 49 + themes/niketaplus.yaml | 49 + themes/niketaprettier.yaml | 49 + themes/niko-s-techlabs-dark.yaml | 49 + themes/nikso-vscode-theme-dark.yaml | 49 + themes/nil-ui.yaml | 49 + themes/nimbus-mint-light.yaml | 49 + themes/ninjadark.yaml | 49 + themes/nitrous-theme-dark.yaml | 49 + themes/nivtheme.yaml | 49 + themes/nix.yaml | 49 + themes/njord.yaml | 49 + themes/nkalai-dark.yaml | 49 + themes/nkalai-light.yaml | 49 + themes/nloo-theme.yaml | 49 + .../no-not-the-lava-it-burns-ahhh-fork.yaml | 49 + themes/no-pixie-blue-dark.yaml | 49 + themes/no-pixie-blue-light.yaml | 49 + themes/no-pixie-dark-high-contrast.yaml | 49 + themes/no-pixie-dark.yaml | 49 + themes/no-pixie-light-high-contrast.yaml | 49 + themes/no-pixie-light.yaml | 49 + themes/no-pixie-yellow-dark.yaml | 49 + themes/no-pixie-yellow-light.yaml | 49 + themes/noah-theme.yaml | 49 + themes/noctaliatheme.yaml | 49 + themes/noctilux.yaml | 49 + themes/noctis-azureus.yaml | 49 + themes/noctis-bordo.yaml | 49 + themes/noctis-hibernus.yaml | 49 + themes/noctis-high-contrast.yaml | 49 + themes/noctis-lilac.yaml | 49 + themes/noctis-lux-ansi-16.yaml | 49 + themes/noctis-lux-dean-s-version.yaml | 49 + themes/noctis-lux.yaml | 49 + themes/noctis-minimus.yaml | 49 + themes/noctis-obscuro.yaml | 49 + themes/noctis-red-flow.yaml | 49 + themes/noctis-sereno.yaml | 49 + themes/noctis-uva.yaml | 49 + themes/noctis-viola.yaml | 49 + themes/noctis.yaml | 49 + themes/noctua-black-rose.yaml | 49 + themes/noctua-dark-leaf.yaml | 49 + themes/noctua-grass.yaml | 49 + themes/noctua-hidden-sky.yaml | 49 + themes/nocturnal.yaml | 49 + themes/nodr-cocoa.yaml | 49 + themes/nodr-plum.yaml | 49 + themes/noel.yaml | 49 + themes/noir-dark.yaml | 49 + themes/noir-dracula.yaml | 49 + themes/noir-essence-dark-border.yaml | 49 + themes/noir-essence-light.yaml | 49 + themes/noir-light.yaml | 49 + themes/noir-outrun.yaml | 49 + themes/noir-owl.yaml | 49 + themes/noir-poimandres-black.yaml | 49 + themes/noir-poimandres-dark.yaml | 49 + themes/noir-poimandres-darker.yaml | 49 + themes/noir-poimandres.yaml | 49 + themes/noir-ros-pine-grey.yaml | 49 + themes/noir-ros-pine-moon-grey.yaml | 49 + themes/noir-tokyo-night-black.yaml | 49 + themes/noir-tokyo-night.yaml | 49 + themes/noirex.yaml | 49 + themes/noirzen.yaml | 49 + themes/nokion-clean.yaml | 49 + themes/noll-tta.yaml | 49 + themes/non-arbitrary-colors-theme.yaml | 49 + themes/noname-ui-next.yaml | 49 + themes/noname-ui.yaml | 49 + themes/noori.yaml | 49 + themes/noparanoia.yaml | 49 + themes/nora-dark.yaml | 49 + themes/nora-light-bordered.yaml | 49 + themes/nord-bunker.yaml | 49 + themes/nord-dark-contrast.yaml | 49 + themes/nord-dark-pro.yaml | 49 + themes/nord-deep.yaml | 49 + themes/nord-frost.yaml | 49 + themes/nord-jujoco.yaml | 49 + themes/nord-midnight.yaml | 49 + themes/nord-native.yaml | 49 + themes/nord-operator-theme.yaml | 49 + themes/nord-palette.yaml | 49 + themes/nord-zero.yaml | 49 + themes/nord.yaml | 49 + themes/nordfox.yaml | 49 + themes/nordic-dark.yaml | 49 + themes/nordic-electric-ai-nocturne.yaml | 49 + themes/nordic.yaml | 49 + themes/nordicbox.yaml | 49 + themes/nordicdark.yaml | 49 + themes/nordico.yaml | 49 + themes/nordishcocoa.yaml | 49 + themes/northeirn.yaml | 49 + themes/northern-territory-dark.yaml | 49 + themes/northern-territory-light.yaml | 49 + themes/nosk-theme.yaml | 49 + themes/nostromo.yaml | 49 + themes/not-so-simple.yaml | 49 + themes/notchy-dark.yaml | 49 + themes/notesocean-vs-code-theme.yaml | 49 + themes/notflask-theme-light.yaml | 49 + themes/nothing-dark.yaml | 49 + themes/nothing-light.yaml | 49 + themes/nothing-os-dark.yaml | 49 + themes/nothing-os-gray.yaml | 49 + themes/notion-code-theme.yaml | 49 + themes/notionliketheme.yaml | 49 + themes/notthevimguytheme.yaml | 49 + themes/nova.yaml | 49 + themes/novadust.yaml | 49 + themes/november-theme-black.yaml | 49 + themes/november-theme-darkblue.yaml | 49 + themes/nox.yaml | 49 + themes/noxis-light.yaml | 49 + themes/noxis.yaml | 49 + themes/noxus.yaml | 49 + themes/npp-color-dark-hard.yaml | 49 + themes/npp-color-light-hard.yaml | 49 + .../nstlgy-dark-josh-w-comeau-inspired.yaml | 49 + themes/ntt1.yaml | 49 + themes/nuclear-z-light.yaml | 49 + themes/nudark.yaml | 49 + themes/nuitp-le-theme.yaml | 49 + themes/null-theme-absolute-black.yaml | 49 + themes/null-theme-electric-enhanced.yaml | 49 + themes/null-theme-midnight-enhanced.yaml | 49 + themes/null-theme-muted.yaml | 49 + themes/null-theme-near-black.yaml | 49 + themes/null-theme-pastel.yaml | 49 + themes/null-theme-synthwave.yaml | 49 + themes/null-theme-vivid.yaml | 49 + themes/nultramarine.yaml | 49 + themes/nulzo-relax.yaml | 49 + themes/nulzo-winter-light.yaml | 49 + themes/nur-dark.yaml | 49 + themes/nur-light.yaml | 49 + themes/nushu-classic.yaml | 49 + themes/nushu-dark.yaml | 49 + themes/nushu-light.yaml | 49 + themes/nutheme.yaml | 49 + themes/nutty-dark-theme.yaml | 49 + themes/nutty-light-theme.yaml | 49 + themes/nuxt-blend-bleach-color-theme.yaml | 49 + themes/nuxt-blend.yaml | 49 + themes/nuxtian-deep-space.yaml | 49 + themes/nuxtian-light.yaml | 49 + themes/nuxtian-nitro.yaml | 49 + themes/nuxtian.yaml | 49 + themes/nuxtiansololevel.yaml | 49 + themes/nuxtvite.yaml | 49 + themes/nuxtvoid.yaml | 49 + themes/nw21.yaml | 49 + themes/ny-city-lights-theme.yaml | 49 + themes/nyctophilia.yaml | 49 + themes/oa515.yaml | 49 + themes/oak-dark.yaml | 49 + themes/oak.yaml | 49 + themes/obanai-iguro.yaml | 49 + themes/obito-akatsuki-theme.yaml | 49 + themes/oblivion.yaml | 49 + themes/oboro.yaml | 49 + themes/obsidian-dark.yaml | 49 + themes/obsidian-ember.yaml | 49 + themes/obsidian-light.yaml | 49 + themes/obsidian-nova.yaml | 49 + themes/obsidian-pro-dark-blue-purple.yaml | 49 + themes/obsidian-pro-dark-pink-purple.yaml | 49 + themes/obsidian-pro-dark-purple-neon.yaml | 49 + themes/obsidian-pro-dark-purple-pastel.yaml | 49 + themes/obsidian-pro-dark-purple.yaml | 49 + themes/obsidian-pro-dark.yaml | 49 + themes/obsidian-pro-white-purple.yaml | 49 + themes/obsidian-pro-white.yaml | 49 + themes/obsidian-pulse-light-theme.yaml | 49 + themes/obsidian-pulse-theme.yaml | 49 + themes/obsidian-sea.yaml | 49 + themes/obsidian-sunset.yaml | 49 + themes/obsidian-void.yaml | 49 + themes/obsidian.yaml | 49 + themes/obsidianite-amoled.yaml | 49 + themes/obsidianite.yaml | 49 + themes/oc-7-light.yaml | 49 + themes/ocean-blue-theme.yaml | 49 + themes/ocean-breeze.yaml | 49 + themes/ocean-color-theme.yaml | 49 + themes/ocean-deep-depth-stability.yaml | 49 + themes/ocean-eyes-medium.yaml | 49 + themes/ocean-eyes.yaml | 49 + themes/ocean-high-contrast.yaml | 49 + themes/ocean-mist-light.yaml | 49 + themes/ocean-mist.yaml | 49 + themes/ocean-night.yaml | 49 + themes/ocean-theme.yaml | 49 + themes/ocean.yaml | 49 + themes/oceana.yaml | 49 + themes/oceanic-solitude.yaml | 49 + themes/oceanic-wind-cool.yaml | 49 + themes/oceanic-wind-warm.yaml | 49 + themes/oceanic-wind.yaml | 49 + themes/oceans-of-andromeda.yaml | 49 + themes/ochre-dark-midnight.yaml | 49 + themes/ochre-dark.yaml | 49 + themes/ochre-light-snow.yaml | 49 + themes/ochre-light.yaml | 49 + themes/octalide.yaml | 49 + themes/octo-dark-one.yaml | 49 + themes/octo-light.yaml | 49 + themes/octopus-theme.yaml | 49 + themes/odyssey-night.yaml | 49 + themes/office-light.yaml | 49 + themes/ogone.yaml | 49 + themes/oh-dark-pro.yaml | 49 + themes/ohiostate-fork.yaml | 49 + themes/ohled-aliceblue.yaml | 49 + themes/ohled-antiquewhite.yaml | 49 + themes/ohled-aqua.yaml | 49 + themes/ohled-aquamarine.yaml | 49 + themes/ohled-azure.yaml | 49 + themes/ohled-beige.yaml | 49 + themes/ohled-bisque.yaml | 49 + themes/ohled-blanchedalmond.yaml | 49 + themes/ohled-blue.yaml | 49 + themes/ohled-blueviolet.yaml | 49 + themes/ohled-brown.yaml | 49 + themes/ohled-burlywood.yaml | 49 + themes/ohled-cadetblue.yaml | 49 + themes/ohled-chartreuse.yaml | 49 + themes/ohled-chocolate.yaml | 49 + themes/ohled-coral.yaml | 49 + themes/ohled-cornflowerblue.yaml | 49 + themes/ohled-cornsilk.yaml | 49 + themes/ohled-crimson.yaml | 49 + themes/ohled-darkblue.yaml | 49 + themes/ohled-darkcyan.yaml | 49 + themes/ohled-darkgoldenrod.yaml | 49 + themes/ohled-darkgray.yaml | 49 + themes/ohled-darkgreen.yaml | 49 + themes/ohled-darkkhaki.yaml | 49 + themes/ohled-darkmagenta.yaml | 49 + themes/ohled-darkolivegreen.yaml | 49 + themes/ohled-darkorange.yaml | 49 + themes/ohled-darkorchid.yaml | 49 + themes/ohled-darkred.yaml | 49 + themes/ohled-darksalmon.yaml | 49 + themes/ohled-darkseagreen.yaml | 49 + themes/ohled-darkslateblue.yaml | 49 + themes/ohled-darkslategray.yaml | 49 + themes/ohled-darkturquoise.yaml | 49 + themes/ohled-darkviolet.yaml | 49 + themes/ohled-deeppink.yaml | 49 + themes/ohled-deepskyblue.yaml | 49 + themes/ohled-dimgray.yaml | 49 + themes/ohled-dodgerblue.yaml | 49 + themes/ohled-firebrick.yaml | 49 + themes/ohled-forestgreen.yaml | 49 + themes/ohled-fuchsia.yaml | 49 + themes/ohled-gainsboro.yaml | 49 + themes/ohled-ghostwhite.yaml | 49 + themes/ohled-gold.yaml | 49 + themes/ohled-goldenrod.yaml | 49 + themes/ohled-gray.yaml | 49 + themes/ohled-green.yaml | 49 + themes/ohled-greenyellow.yaml | 49 + themes/ohled-honeydew.yaml | 49 + themes/ohled-hotpink.yaml | 49 + themes/ohled-indianred.yaml | 49 + themes/ohled-indigo.yaml | 49 + themes/ohled-ivory.yaml | 49 + themes/ohled-khaki.yaml | 49 + themes/ohled-lavender.yaml | 49 + themes/ohled-lavenderblush.yaml | 49 + themes/ohled-lawngreen.yaml | 49 + themes/ohled-lemonchiffon.yaml | 49 + themes/ohled-lightblue.yaml | 49 + themes/ohled-lightcoral.yaml | 49 + themes/ohled-lightcyan.yaml | 49 + themes/ohled-lightgoldenrodyellow.yaml | 49 + themes/ohled-lightgray.yaml | 49 + themes/ohled-lightgreen.yaml | 49 + themes/ohled-lightpink.yaml | 49 + themes/ohled-lightsalmon.yaml | 49 + themes/ohled-lightseagreen.yaml | 49 + themes/ohled-lightskyblue.yaml | 49 + themes/ohled-lightslategray.yaml | 49 + themes/ohled-lightsteelblue.yaml | 49 + themes/ohled-lightyellow.yaml | 49 + themes/ohled-lime.yaml | 49 + themes/ohled-limegreen.yaml | 49 + themes/ohled-linen.yaml | 49 + themes/ohled-maroon.yaml | 49 + themes/ohled-mediumaquamarine.yaml | 49 + themes/ohled-mediumblue.yaml | 49 + themes/ohled-mediumorchid.yaml | 49 + themes/ohled-mediumpurple.yaml | 49 + themes/ohled-mediumseagreen.yaml | 49 + themes/ohled-mediumslateblue.yaml | 49 + themes/ohled-mediumspringgreen.yaml | 49 + themes/ohled-mediumturquoise.yaml | 49 + themes/ohled-mediumvioletred.yaml | 49 + themes/ohled-midnightblue.yaml | 49 + themes/ohled-mintcream.yaml | 49 + themes/ohled-mistyrose.yaml | 49 + themes/ohled-moccasin.yaml | 49 + themes/ohled-navajowhite.yaml | 49 + themes/ohled-navy.yaml | 49 + themes/ohled-oldlace.yaml | 49 + themes/ohled-olive.yaml | 49 + themes/ohled-olivedrab.yaml | 49 + themes/ohled-orange.yaml | 49 + themes/ohled-orangered.yaml | 49 + themes/ohled-orchid.yaml | 49 + themes/ohled-palegoldenrod.yaml | 49 + themes/ohled-palegreen.yaml | 49 + themes/ohled-paleturquoise.yaml | 49 + themes/ohled-palevioletred.yaml | 49 + themes/ohled-papayawhip.yaml | 49 + themes/ohled-peachpuff.yaml | 49 + themes/ohled-peru.yaml | 49 + themes/ohled-pink.yaml | 49 + themes/ohled-plum.yaml | 49 + themes/ohled-powderblue.yaml | 49 + themes/ohled-purple.yaml | 49 + themes/ohled-rebeccapurple.yaml | 49 + themes/ohled-red.yaml | 49 + themes/ohled-rosybrown.yaml | 49 + themes/ohled-royalblue.yaml | 49 + themes/ohled-saddlebrown.yaml | 49 + themes/ohled-salmon.yaml | 49 + themes/ohled-sandybrown.yaml | 49 + themes/ohled-seagreen.yaml | 49 + themes/ohled-seashell.yaml | 49 + themes/ohled-sienna.yaml | 49 + themes/ohled-silver.yaml | 49 + themes/ohled-skyblue.yaml | 49 + themes/ohled-slateblue.yaml | 49 + themes/ohled-slategray.yaml | 49 + themes/ohled-snow.yaml | 49 + themes/ohled-springgreen.yaml | 49 + themes/ohled-steelblue.yaml | 49 + themes/ohled-tan.yaml | 49 + themes/ohled-teal.yaml | 49 + themes/ohled-thistle.yaml | 49 + themes/ohled-tomato.yaml | 49 + themes/ohled-turquoise.yaml | 49 + themes/ohled-violet.yaml | 49 + themes/ohled-wheat.yaml | 49 + themes/ohled-white.yaml | 49 + themes/ohled-whitesmoke.yaml | 49 + themes/ohled-yellow.yaml | 49 + themes/ohled-yellowgreen.yaml | 49 + themes/ohled-yelloworange.yaml | 49 + themes/ohled-yellowpink.yaml | 49 + themes/ohled-yellowpurple.yaml | 49 + themes/okas-theme.yaml | 49 + themes/oldschool-terminal-green.yaml | 49 + themes/oldworld.yaml | 49 + themes/olive-dark.yaml | 49 + themes/olive-light.yaml | 49 + themes/omega.yaml | 49 + themes/omni-customized-dark.yaml | 49 + themes/omni-customized.yaml | 49 + themes/omni-dracula-dark.yaml | 49 + ...ni-dracula-theme-tradicional-contrast.yaml | 49 + themes/omni-dracula-theme.yaml | 49 + .../omni-dracula-wine-theme-tradicional.yaml | 49 + themes/omni-monokai-dark.yaml | 49 + themes/omni-pro.yaml | 49 + themes/omni.yaml | 49 + themes/omnisexual.yaml | 49 + themes/omnitrix-code.yaml | 49 + themes/omo-theme.yaml | 49 + themes/one-ai-theme.yaml | 49 + themes/one-dark-cloud-theme.yaml | 49 + themes/one-dark-code.yaml | 49 + themes/one-dark-darker-vivid.yaml | 49 + themes/one-dark-darker.yaml | 49 + themes/one-dark-modern-pro.yaml | 49 + themes/one-dark-night-blue-boy.yaml | 49 + themes/one-dark-night-eye-care.yaml | 49 + themes/one-dark-night-minimalist.yaml | 49 + themes/one-dark-night-professional.yaml | 49 + themes/one-dark-nx.yaml | 49 + themes/one-dark-pro-theme.yaml | 49 + themes/one-dark-pro-var-night.yaml | 49 + themes/one-dark-pro.yaml | 49 + themes/one-dark-vibrant-theme.yaml | 49 + themes/one-dark-vivid.yaml | 49 + themes/one-dark.yaml | 49 + themes/one-darker-pro.yaml | 49 + themes/one-darkpuccin-vivid-italic.yaml | 49 + themes/one-half-light-italic.yaml | 49 + themes/one-hunter-theme.yaml | 49 + themes/one-light-pro.yaml | 49 + themes/one-material.yaml | 49 + themes/one-midnight.yaml | 49 + themes/one-monokai-darker.yaml | 49 + themes/one-monokai-forked.yaml | 49 + themes/one-monokai-michota.yaml | 49 + themes/one-monokai-shadow.yaml | 49 + themes/one-monokai.yaml | 49 + themes/one-monokai1.yaml | 49 + themes/one-moon.yaml | 49 + themes/one-more-dark.yaml | 49 + themes/one-piece-dark.yaml | 49 + themes/one-piece-high-contrast.yaml | 49 + themes/one-piece-light.yaml | 49 + themes/one-piece-straw-hat-red.yaml | 49 + themes/onebitcode-theme.yaml | 49 + themes/onebitcode.yaml | 49 + themes/onecalm.yaml | 49 + themes/onedark-nvim.yaml | 49 + themes/onedark-pro-suhayb-s-version-v2.yaml | 49 + themes/oneiroi-caffeine.yaml | 49 + themes/oneiroi-dream.yaml | 49 + themes/oneiroi-melatonin.yaml | 49 + themes/onemonokai80s.yaml | 49 + themes/onemonokai80sog.yaml | 49 + themes/onenv.yaml | 49 + themes/oni-theme.yaml | 49 + themes/onlydark.yaml | 49 + themes/onora.yaml | 49 + themes/onyx-core.yaml | 49 + themes/onyx-ghost.yaml | 49 + themes/onyx-theme-color.yaml | 49 + themes/onyx.yaml | 49 + themes/ook.yaml | 49 + themes/oolory-dark-color-theme.yaml | 49 + themes/openbase.yaml | 49 + themes/openspace-dark-flat.yaml | 49 + themes/openspace-dark.yaml | 49 + themes/openspace.yaml | 49 + themes/optimus-dark.yaml | 49 + themes/oq-dark-soft.yaml | 49 + themes/oq-dark.yaml | 49 + themes/oq-light-soft.yaml | 49 + themes/oq-light.yaml | 49 + themes/oradia.yaml | 49 + themes/oragethemedark.yaml | 49 + themes/orago-s-warm-theme.yaml | 49 + themes/orange-coral.yaml | 49 + themes/orange-dark.yaml | 49 + themes/orange.yaml | 49 + themes/orangefox-dark.yaml | 49 + themes/orangefox-light.yaml | 49 + themes/orangelemon.yaml | 49 + themes/orangey-darker-1.yaml | 49 + themes/orangey-darker-2.yaml | 49 + themes/orangey-lighter-1.yaml | 49 + themes/orangey-lighter-2.yaml | 49 + themes/orangey.yaml | 49 + themes/orbi-blue.yaml | 49 + themes/orbi-green.yaml | 49 + themes/orca.yaml | 49 + themes/origami-theme.yaml | 49 + themes/origamid.yaml | 49 + themes/original-theme.yaml | 49 + themes/orion-x-black.yaml | 49 + themes/orpheux.yaml | 49 + themes/orwellian-nightmare.yaml | 49 + themes/osaka-solarized-pro-dark.yaml | 49 + themes/osaka-solarized-pro-light.yaml | 49 + themes/osaka-solarized-pro-monokai-storm.yaml | 49 + themes/oslo-dark.yaml | 49 + themes/osmoz-dark.yaml | 49 + themes/osx9.yaml | 49 + themes/otakon-contrast.yaml | 49 + themes/otakon-light.yaml | 49 + themes/otakon.yaml | 49 + themes/outrun-contrast.yaml | 49 + themes/outrun-dark.yaml | 49 + themes/overflow-contrast.yaml | 49 + themes/overflow-light.yaml | 49 + themes/overflow.yaml | 49 + themes/overload.yaml | 49 + themes/overnight-italic.yaml | 49 + themes/owlet-default.yaml | 49 + themes/owlet-material.yaml | 49 + themes/owlet-mono.yaml | 49 + themes/owlet-outrun.yaml | 49 + themes/owlet-solarized.yaml | 49 + themes/owokai-hard.yaml | 49 + themes/owokai.yaml | 49 + themes/oxide.yaml | 49 + themes/oxocarbon-5.yaml | 49 + themes/oxocarbon-compatibility.yaml | 49 + themes/oxocarbon-monochrom-compatibility.yaml | 49 + themes/oxocarbon-oled-compatibility.yaml | 49 + ...xocarbon-oled-monochrom-compatibility.yaml | 49 + themes/oxocarbon-oled-monochrom.yaml | 49 + themes/oxocarbon-port.yaml | 49 + themes/oxocarbonix-dark-theme.yaml | 49 + themes/ozurac.yaml | 49 + themes/ozzy.yaml | 49 + themes/p-black.yaml | 49 + themes/p-citadel.yaml | 49 + themes/p-crimson.yaml | 49 + themes/p-dark.yaml | 49 + themes/p-eggplant.yaml | 49 + themes/p-emerald.yaml | 49 + themes/p-eucalyptus.yaml | 49 + themes/p-floresta.yaml | 49 + themes/p-frost.yaml | 49 + themes/p-genmaicha.yaml | 49 + themes/p-grizzly.yaml | 49 + themes/p-haze.yaml | 49 + themes/p-inkstone.yaml | 49 + themes/p-leipzig.yaml | 49 + themes/p-light.yaml | 49 + themes/p-machine.yaml | 49 + themes/p-mist.yaml | 49 + themes/p-neptune.yaml | 49 + themes/p-nk.yaml | 49 + themes/p-ornithopter.yaml | 49 + themes/p-ox.yaml | 49 + themes/p-terabyte.yaml | 49 + themes/p-ultramarine.yaml | 49 + themes/p-wolf.yaml | 49 + themes/p-yesterday.yaml | 49 + themes/p-zenith.yaml | 49 + themes/p33t.yaml | 49 + themes/pace-dark.yaml | 49 + themes/pace-light.yaml | 49 + themes/padrepio.yaml | 49 + themes/paigio.yaml | 49 + themes/pale-blue.yaml | 49 + themes/pale-boreal-dark.yaml | 49 + themes/palenight-italic.yaml | 49 + themes/palenight-material.yaml | 49 + themes/palenight-pro.yaml | 49 + themes/palenight-theme.yaml | 49 + themes/palenight.yaml | 49 + themes/palespring.yaml | 49 + themes/palestorm-x.yaml | 49 + themes/palestorm.yaml | 49 + themes/palette.yaml | 49 + themes/pall-theme.yaml | 49 + themes/panda-blue.yaml | 49 + themes/panda-dark.yaml | 49 + themes/pandju-no-italics.yaml | 49 + themes/pantasio.yaml | 49 + themes/pantone-amber-dark.yaml | 49 + themes/pantone-amber-light.yaml | 49 + themes/pantone-aqua-dark.yaml | 49 + themes/pantone-aqua-light.yaml | 49 + themes/pantone-aqua-sky-dark.yaml | 49 + themes/pantone-aqua-sky-light.yaml | 49 + themes/pantone-baby-blue-dark.yaml | 49 + themes/pantone-baby-blue-light.yaml | 49 + themes/pantone-blue-iris-dark.yaml | 49 + themes/pantone-blue-iris-light.yaml | 49 + themes/pantone-blue-turquoise-dark.yaml | 49 + themes/pantone-blue-turquoise-light.yaml | 49 + themes/pantone-blush-dark.yaml | 49 + themes/pantone-blush-light.yaml | 49 + themes/pantone-blush-pink-dark.yaml | 49 + themes/pantone-blush-pink-light.yaml | 49 + themes/pantone-brick-red-dark.yaml | 49 + themes/pantone-brick-red-light.yaml | 49 + themes/pantone-bright-green-dark.yaml | 49 + themes/pantone-bright-green-light.yaml | 49 + themes/pantone-burgundy-dark.yaml | 49 + themes/pantone-burgundy-light.yaml | 49 + themes/pantone-burnt-orange-dark.yaml | 49 + themes/pantone-burnt-orange-light.yaml | 49 + themes/pantone-cerulean-dark.yaml | 49 + themes/pantone-cerulean-light.yaml | 49 + themes/pantone-chartreuse-dark.yaml | 49 + themes/pantone-chartreuse-light.yaml | 49 + themes/pantone-chili-pepper-dark.yaml | 49 + themes/pantone-chili-pepper-light.yaml | 49 + themes/pantone-chocolate-dark.yaml | 49 + themes/pantone-chocolate-light.yaml | 49 + themes/pantone-classic-blue-dark.yaml | 49 + themes/pantone-classic-blue-light.yaml | 49 + themes/pantone-classic-red-dark.yaml | 49 + themes/pantone-classic-red-light.yaml | 49 + themes/pantone-cobalt-blue-dark.yaml | 49 + themes/pantone-cobalt-blue-light.yaml | 49 + themes/pantone-coral-dark.yaml | 49 + themes/pantone-coral-light.yaml | 49 + themes/pantone-cornflower-blue-dark.yaml | 49 + themes/pantone-cornflower-blue-light.yaml | 49 + themes/pantone-cyan-dark.yaml | 49 + themes/pantone-cyan-light.yaml | 49 + themes/pantone-dark-brown-dark.yaml | 49 + themes/pantone-dark-brown-light.yaml | 49 + themes/pantone-dark-maroon-dark.yaml | 49 + themes/pantone-dark-maroon-light.yaml | 49 + themes/pantone-dark-red-dark.yaml | 49 + themes/pantone-dark-red-light.yaml | 49 + themes/pantone-deep-pink-dark.yaml | 49 + themes/pantone-deep-pink-light.yaml | 49 + themes/pantone-dusty-blue-dark.yaml | 49 + themes/pantone-dusty-blue-light.yaml | 49 + themes/pantone-emerald-dark.yaml | 49 + themes/pantone-emerald-light.yaml | 49 + themes/pantone-flame-orange-dark.yaml | 49 + themes/pantone-flame-orange-light.yaml | 49 + themes/pantone-forest-green-dark.yaml | 49 + themes/pantone-forest-green-light.yaml | 49 + themes/pantone-fuchsia-rose-dark.yaml | 49 + themes/pantone-fuchsia-rose-light.yaml | 49 + themes/pantone-gold-dark.yaml | 49 + themes/pantone-gold-light.yaml | 49 + themes/pantone-golden-yellow-dark.yaml | 49 + themes/pantone-golden-yellow-light.yaml | 49 + themes/pantone-graphite-dark.yaml | 49 + themes/pantone-graphite-light.yaml | 49 + themes/pantone-green-dark.yaml | 49 + themes/pantone-green-light.yaml | 49 + themes/pantone-greenery-dark.yaml | 49 + themes/pantone-greenery-light.yaml | 49 + themes/pantone-honeysuckle-dark.yaml | 49 + themes/pantone-honeysuckle-light.yaml | 49 + themes/pantone-hot-pink-dark.yaml | 49 + themes/pantone-hot-pink-light.yaml | 49 + themes/pantone-ice-blue-dark.yaml | 49 + themes/pantone-ice-blue-light.yaml | 49 + themes/pantone-illuminating-dark.yaml | 49 + themes/pantone-illuminating-light.yaml | 49 + themes/pantone-indigo-dark.yaml | 49 + themes/pantone-indigo-light.yaml | 49 + themes/pantone-khaki-dark.yaml | 49 + themes/pantone-khaki-light.yaml | 49 + themes/pantone-lavender-dark.yaml | 49 + themes/pantone-lavender-light.yaml | 49 + themes/pantone-lilac-dark.yaml | 49 + themes/pantone-lilac-light.yaml | 49 + themes/pantone-lime-green-dark.yaml | 49 + themes/pantone-lime-green-light.yaml | 49 + themes/pantone-living-coral-dark.yaml | 49 + themes/pantone-living-coral-light.yaml | 49 + themes/pantone-marsala-dark.yaml | 49 + themes/pantone-marsala-light.yaml | 49 + themes/pantone-mauve-dark.yaml | 49 + themes/pantone-mauve-light.yaml | 49 + themes/pantone-mimosa-dark.yaml | 49 + themes/pantone-mimosa-light.yaml | 49 + themes/pantone-mint-green-dark.yaml | 49 + themes/pantone-mint-green-light.yaml | 49 + themes/pantone-mocha-mousse-dark.yaml | 49 + themes/pantone-mocha-mousse-light.yaml | 49 + themes/pantone-navy-dark.yaml | 49 + themes/pantone-navy-light.yaml | 49 + themes/pantone-neon-blue-dark.yaml | 49 + themes/pantone-neon-blue-light.yaml | 49 + themes/pantone-neon-green-dark.yaml | 49 + themes/pantone-neon-green-light.yaml | 49 + themes/pantone-neon-orange-dark.yaml | 49 + themes/pantone-neon-orange-light.yaml | 49 + themes/pantone-neon-pink-dark.yaml | 49 + themes/pantone-neon-pink-light.yaml | 49 + themes/pantone-neon-yellow-dark.yaml | 49 + themes/pantone-neon-yellow-light.yaml | 49 + themes/pantone-olive-green-dark.yaml | 49 + themes/pantone-olive-green-light.yaml | 49 + themes/pantone-orange-dark.yaml | 49 + themes/pantone-orange-light.yaml | 49 + themes/pantone-peach-dark.yaml | 49 + themes/pantone-peach-fuzz-dark.yaml | 49 + themes/pantone-peach-fuzz-light.yaml | 49 + themes/pantone-peach-light.yaml | 49 + themes/pantone-peacock-green-dark.yaml | 49 + themes/pantone-peacock-green-light.yaml | 49 + themes/pantone-pewter-dark.yaml | 49 + themes/pantone-pewter-light.yaml | 49 + themes/pantone-plum-dark.yaml | 49 + themes/pantone-plum-light.yaml | 49 + themes/pantone-poppy-dark.yaml | 49 + themes/pantone-poppy-light.yaml | 49 + themes/pantone-process-blue-dark.yaml | 49 + themes/pantone-process-blue-light.yaml | 49 + themes/pantone-purple-dark.yaml | 49 + themes/pantone-purple-light.yaml | 49 + themes/pantone-radiant-orchid-dark.yaml | 49 + themes/pantone-radiant-orchid-light.yaml | 49 + themes/pantone-rose-quartz-dark.yaml | 49 + themes/pantone-rose-quartz-light.yaml | 49 + themes/pantone-royal-blue-dark.yaml | 49 + themes/pantone-royal-blue-light.yaml | 49 + themes/pantone-ruby-dark.yaml | 49 + themes/pantone-ruby-light.yaml | 49 + themes/pantone-saffron-dark.yaml | 49 + themes/pantone-saffron-light.yaml | 49 + themes/pantone-sage-dark.yaml | 49 + themes/pantone-sage-light.yaml | 49 + themes/pantone-salmon-dark.yaml | 49 + themes/pantone-salmon-light.yaml | 49 + themes/pantone-sand-dark.yaml | 49 + themes/pantone-sand-dollar-dark.yaml | 49 + themes/pantone-sand-dollar-light.yaml | 49 + themes/pantone-sand-light.yaml | 49 + themes/pantone-serenity-dark.yaml | 49 + themes/pantone-serenity-light.yaml | 49 + themes/pantone-sienna-dark.yaml | 49 + themes/pantone-sienna-light.yaml | 49 + themes/pantone-silver-dark.yaml | 49 + themes/pantone-silver-light.yaml | 49 + themes/pantone-sky-blue-dark.yaml | 49 + themes/pantone-sky-blue-light.yaml | 49 + themes/pantone-slate-blue-dark.yaml | 49 + themes/pantone-slate-blue-light.yaml | 49 + themes/pantone-steel-blue-dark.yaml | 49 + themes/pantone-steel-blue-light.yaml | 49 + themes/pantone-tan-dark.yaml | 49 + themes/pantone-tan-light.yaml | 49 + themes/pantone-tangerine-tango-dark.yaml | 49 + themes/pantone-tangerine-tango-light.yaml | 49 + themes/pantone-teal-dark.yaml | 49 + themes/pantone-teal-light.yaml | 49 + themes/pantone-tigerlily-dark.yaml | 49 + themes/pantone-tigerlily-light.yaml | 49 + themes/pantone-true-red-dark.yaml | 49 + themes/pantone-true-red-light.yaml | 49 + themes/pantone-turquoise-classic-dark.yaml | 49 + themes/pantone-turquoise-classic-light.yaml | 49 + themes/pantone-turquoise-dark.yaml | 49 + themes/pantone-turquoise-light.yaml | 49 + themes/pantone-ultimate-gray-dark.yaml | 49 + themes/pantone-ultimate-gray-light.yaml | 49 + themes/pantone-ultra-violet-dark.yaml | 49 + themes/pantone-ultra-violet-light.yaml | 49 + themes/pantone-very-peri-dark.yaml | 49 + themes/pantone-very-peri-light.yaml | 49 + themes/pantone-violet-dark.yaml | 49 + themes/pantone-violet-light.yaml | 49 + themes/pantone-viva-magenta-dark.yaml | 49 + themes/pantone-viva-magenta-light.yaml | 49 + themes/pantone-warm-gray-dark.yaml | 49 + themes/pantone-warm-gray-light.yaml | 49 + themes/pantone-warm-red-dark.yaml | 49 + themes/pantone-warm-red-light.yaml | 49 + themes/pantone-wheat-dark.yaml | 49 + themes/pantone-wheat-light.yaml | 49 + themes/pantone-wine-dark.yaml | 49 + themes/pantone-wine-light.yaml | 49 + themes/pantone-yellow-dark.yaml | 49 + themes/pantone-yellow-green-dark.yaml | 49 + themes/pantone-yellow-green-light.yaml | 49 + themes/pantone-yellow-light.yaml | 49 + themes/papaya.yaml | 49 + themes/papercolordark.yaml | 49 + themes/paradise.yaml | 49 + themes/parakeet-theme.yaml | 49 + themes/parchment-candlelight-color-theme.yaml | 49 + themes/parchment-codex-color-theme.yaml | 49 + themes/parchment-digitized-color-theme.yaml | 49 + themes/parchment-starlight-color-theme.yaml | 49 + themes/parchment.yaml | 49 + themes/pare-colors-theme.yaml | 49 + themes/parkside-light.yaml | 49 + themes/paro-paro-solarized-dark-theme.yaml | 49 + themes/pastel-contrast.yaml | 49 + themes/pastel-inu.yaml | 49 + themes/pastel-light.yaml | 49 + themes/pastel.yaml | 49 + themes/pastelefull.yaml | 49 + themes/pastelfairy.yaml | 49 + themes/pastellize-dark-muted.yaml | 49 + themes/patina-colors.yaml | 49 + themes/patina-dark-soft.yaml | 49 + themes/patina-dark.yaml | 49 + themes/patina-light.yaml | 49 + themes/patina-stellar.yaml | 49 + themes/patr-theme.yaml | 49 + themes/patricklimax.yaml | 49 + themes/patriot-contrast.yaml | 49 + themes/patriot-light.yaml | 49 + themes/patriot.yaml | 49 + themes/paulera-s-dark-monokai.yaml | 49 + themes/paulera-s-lyo.yaml | 49 + themes/paztels.yaml | 49 + themes/peaceful-mind.yaml | 49 + themes/peachy-dolphin.yaml | 49 + themes/peachy.yaml | 49 + themes/peacock-contrast.yaml | 49 + themes/peacock-light.yaml | 49 + themes/peacock.yaml | 49 + themes/peacocks-in-space-contrast.yaml | 49 + themes/peacocks-in-space-light.yaml | 49 + themes/peacocks-in-space.yaml | 49 + themes/peel-contrast.yaml | 49 + themes/peel-light.yaml | 49 + themes/peel.yaml | 49 + themes/penitent-contrast.yaml | 49 + themes/penitent-light.yaml | 49 + themes/penitent.yaml | 49 + themes/penumbra-dark-contrast.yaml | 49 + themes/penumbra-dark.yaml | 49 + themes/penumbra-light.yaml | 49 + themes/perf-pink.yaml | 49 + themes/perfect-dark.yaml | 49 + themes/perfect-grey-pf-dark.yaml | 49 + themes/perfect-grey-pf-light.yaml | 49 + themes/periwinkle-color-theme.yaml | 49 + themes/periwinkle-soft-dark.yaml | 49 + themes/perplexity.yaml | 49 + themes/perry-the-platypus.yaml | 49 + themes/petrel.yaml | 49 + themes/pg-aqualung.yaml | 49 + themes/pg-blue-moon.yaml | 49 + themes/pg-forest.yaml | 49 + themes/pg-may-be-concrete.yaml | 49 + themes/pg-mud-puddle.yaml | 49 + themes/pg-plum-great.yaml | 49 + themes/pg-plum-groovy.yaml | 49 + themes/pg-punkin-spice.yaml | 49 + themes/pg-red-clay.yaml | 49 + themes/pg-ridgeline.yaml | 49 + themes/pg-ruby-clay.yaml | 49 + themes/pg-ruby-soho.yaml | 49 + themes/pg-slax.yaml | 49 + themes/pg-steely-daniel.yaml | 49 + themes/pglight.yaml | 49 + themes/phantom.yaml | 49 + themes/phocus.yaml | 49 + themes/phonebook-dark.yaml | 49 + themes/phonebook-light.yaml | 49 + themes/phosphor-amber-night.yaml | 49 + themes/phosphor-aurora.yaml | 49 + themes/phosphor-dark.yaml | 49 + themes/phosphor-dreams.yaml | 49 + themes/phosphor-event-horizon.yaml | 49 + themes/phosphor-forest.yaml | 49 + themes/phosphor-neon-noir.yaml | 49 + themes/phosphor-violet-dusk.yaml | 49 + themes/phosphorus-minor.yaml | 49 + themes/photon.yaml | 49 + themes/photonica-dark.yaml | 49 + themes/photonica-light.yaml | 49 + themes/photophore.yaml | 49 + themes/piattro.yaml | 49 + themes/pierre-dark.yaml | 49 + themes/pierre-light.yaml | 49 + themes/piggy-contrast.yaml | 49 + themes/piggy-light.yaml | 49 + themes/piggy.yaml | 49 + themes/pillirioen-italics.yaml | 49 + themes/pine-cone-theme.yaml | 49 + themes/pine-editor-light.yaml | 49 + themes/pine-forest-green-dark.yaml | 49 + themes/pine-forest.yaml | 49 + themes/pine-frizz.yaml | 49 + themes/pine-theme-blue.yaml | 49 + themes/pine-theme-dark-low-contrast.yaml | 49 + themes/pine-theme-grey.yaml | 49 + themes/pine-theme-original-dark-extend.yaml | 49 + themes/pine-theme-original-dark.yaml | 49 + themes/pineapple.yaml | 49 + themes/pines.yaml | 49 + themes/pingocho-dark.yaml | 49 + themes/pink-candy-dark-warm.yaml | 49 + themes/pink-candy-dark.yaml | 49 + themes/pink-candy-light.yaml | 49 + themes/pink-flower.yaml | 49 + themes/pink-neon.yaml | 49 + themes/pink-theme.yaml | 49 + themes/pink.yaml | 49 + themes/pinkandgreen.yaml | 49 + themes/pinkandwhite.yaml | 49 + themes/pinkcloud.yaml | 49 + themes/pinkcodes-pink.yaml | 49 + themes/pinkdark.yaml | 49 + themes/pinkdopeybug-primordial-origin.yaml | 49 + themes/pinkmare.yaml | 49 + themes/pinkppuccin.yaml | 49 + themes/pinky-promise-dark.yaml | 49 + themes/pinky-promise-light.yaml | 49 + themes/pinkyboo.yaml | 49 + themes/pinot-gris.yaml | 49 + themes/pinya-theme.yaml | 49 + themes/pipboy-theme.yaml | 49 + themes/pirulug-dark.yaml | 49 + themes/pirulug-ligt.yaml | 49 + themes/pistachio-madness.yaml | 49 + themes/pitaya-smoothie.yaml | 49 + themes/pittaya-theme-light.yaml | 49 + themes/pittaya-theme.yaml | 49 + themes/pittcsc-theme.yaml | 49 + themes/pixeye-theme.yaml | 49 + themes/pizarra.yaml | 49 + themes/plane.yaml | 49 + themes/plantillathemes.yaml | 49 + themes/plasma-pink.yaml | 49 + themes/plasticine.yaml | 49 + themes/plasticman.yaml | 49 + themes/platzi-theme.yaml | 49 + themes/playground-theme-dark.yaml | 49 + themes/playground-theme.yaml | 49 + themes/playground.yaml | 49 + themes/pleasure-contrast.yaml | 49 + themes/pleasure-light.yaml | 49 + themes/pleasure.yaml | 49 + themes/plotka-amethyst.yaml | 49 + themes/pls-my-eyes-sir.yaml | 49 + themes/plurpelvsc.yaml | 49 + themes/pluto-dark.yaml | 49 + themes/po.yaml | 49 + themes/poimandres-dark-theme.yaml | 49 + themes/polar-black-cherry-blossom.yaml | 49 + themes/polar-black-green-cactus.yaml | 49 + themes/polar-black-ice.yaml | 49 + themes/polar-black-less-black-smoke.yaml | 49 + themes/polar-black-light.yaml | 49 + themes/polar-black-red.yaml | 49 + themes/polar-black-savanna.yaml | 49 + themes/polar-black.yaml | 49 + themes/polar-ice-dark.yaml | 49 + themes/polar-ice-light.yaml | 49 + themes/polar-light.yaml | 49 + themes/polar-midnight.yaml | 49 + themes/polar-night.yaml | 49 + themes/polar.yaml | 49 + themes/polish.yaml | 49 + themes/polychrome-dark.yaml | 49 + themes/polychrome-light.yaml | 49 + themes/polygopher-theme.yaml | 49 + themes/polykai.yaml | 49 + themes/polymath.yaml | 49 + themes/pookie-dark.yaml | 49 + themes/poolside.yaml | 49 + themes/pop-os-cosmic.yaml | 49 + themes/popipa.yaml | 49 + themes/popping-and-locking-mod.yaml | 49 + themes/popping-and-locking.yaml | 49 + themes/popsicle-color-theme.yaml | 49 + themes/port-gellhorn-noir.yaml | 49 + themes/posh.yaml | 49 + themes/posterpole.yaml | 49 + themes/potpourri-contrast.yaml | 49 + themes/potpourri-light.yaml | 49 + themes/potpourri.yaml | 49 + themes/powder.yaml | 49 + themes/power-dark.yaml | 49 + themes/power-low-purple-theme.yaml | 49 + themes/poznajkubernetes.yaml | 49 + themes/ppy-like.yaml | 49 + themes/pr-theme-obsidian.yaml | 49 + themes/pr-theme-premium.yaml | 49 + themes/pr-theme.yaml | 49 + themes/pre.yaml | 49 + themes/prescient.yaml | 49 + themes/pretentious-name.yaml | 49 + themes/pretstyle.yaml | 49 + themes/pretty-dark-theme.yaml | 49 + themes/pributan.yaml | 49 + themes/primary-dark.yaml | 49 + themes/primary-light.yaml | 49 + themes/prime-contrast.yaml | 49 + themes/prime-light.yaml | 49 + themes/prime.yaml | 49 + themes/primer-light.yaml | 49 + themes/prism-dark.yaml | 49 + themes/prism-light.yaml | 49 + themes/prisma.yaml | 49 + themes/prismapixel-studios-dark-theme.yaml | 49 + themes/prismatic-dark.yaml | 49 + themes/prismatic-light.yaml | 49 + themes/prismatic-void.yaml | 49 + themes/prismmagic.yaml | 49 + themes/pro-coding.yaml | 49 + themes/professional-dark.yaml | 49 + themes/programmer.yaml | 49 + themes/progress-dark.yaml | 49 + themes/progress.yaml | 49 + themes/project-dark-theme-soft.yaml | 49 + themes/prom-wiki.yaml | 49 + themes/pronight.yaml | 49 + themes/proper-dracula.yaml | 49 + themes/proper-pure.yaml | 49 + themes/proper-theme-alternate-2.yaml | 49 + themes/proper-theme-alternate-fork.yaml | 49 + themes/proper-theme-fork.yaml | 49 + themes/proper-up-for-what.yaml | 49 + themes/proper.yaml | 49 + themes/propurple.yaml | 49 + themes/ps-dark.yaml | 49 + themes/ps-light.yaml | 49 + themes/ps-mid-blue.yaml | 49 + themes/ps-syntax.yaml | 49 + themes/pudding-dark-caramel-beta.yaml | 49 + themes/pudding-dark-christmas.yaml | 49 + themes/pudding-dark.yaml | 49 + themes/pudding-light-jk.yaml | 49 + themes/pudding-light.yaml | 49 + themes/pulpy-orange.yaml | 49 + themes/pulsar-default.yaml | 49 + themes/pulsar.yaml | 49 + themes/pulse-balanced-purple.yaml | 49 + themes/pulse-comfort-light.yaml | 49 + themes/pulse-soft-purple.yaml | 49 + themes/pumpkin.yaml | 49 + themes/punjab-land-of-five-rivers.yaml | 49 + themes/punk-runner.yaml | 49 + themes/pur-theme-v1.yaml | 49 + themes/purble-0-0-2-fork-fork.yaml | 49 + themes/purddy.yaml | 49 + themes/pure-black.yaml | 49 + themes/pure-dark.yaml | 49 + themes/pure-light.yaml | 49 + themes/pureblack.yaml | 49 + themes/puri-twilite.yaml | 49 + themes/purple-cake.yaml | 49 + themes/purple-cloud-minimal.yaml | 49 + themes/purple-cloud-theme.yaml | 49 + themes/purple-codain.yaml | 49 + themes/purple-cyan.yaml | 49 + themes/purple-dark-black.yaml | 49 + themes/purple-dark-theme-unicode.yaml | 49 + themes/purple-dark.yaml | 49 + themes/purple-deep-black-fork.yaml | 49 + themes/purple-deep-black.yaml | 49 + themes/purple-dream.yaml | 49 + themes/purple-ish.yaml | 49 + themes/purple-royal.yaml | 49 + themes/purple-surface-dark.yaml | 49 + themes/purple-theme.yaml | 49 + themes/purple-twist.yaml | 49 + themes/purple-void.yaml | 49 + themes/purple.yaml | 49 + themes/purpleandblack.yaml | 49 + themes/purplechan.yaml | 49 + themes/purplecrystal.yaml | 49 + themes/purplefy.yaml | 49 + themes/purplephantom.yaml | 49 + themes/purpleporschepheme.yaml | 49 + themes/purpler.yaml | 49 + themes/purplespace.yaml | 49 + themes/purplexed-magic.yaml | 49 + themes/purplexed-theme.yaml | 49 + themes/purplezera.yaml | 49 + themes/purplish-fork.yaml | 49 + themes/purplue.yaml | 49 + themes/purply-dark.yaml | 49 + themes/purply-light.yaml | 49 + themes/purppy.yaml | 49 + themes/purps.yaml | 49 + .../purrfect-marshmallow-lavender-night.yaml | 49 + themes/purrfect-marshmallow-pastel-pink.yaml | 49 + themes/purstel.yaml | 49 + themes/purupiu-theme.yaml | 49 + themes/pushkin-is-white.yaml | 49 + themes/pussdev-pink-theme.yaml | 49 + themes/pvc-light.yaml | 49 + themes/pvdk-theme.yaml | 49 + themes/pycharm-theme.yaml | 49 + themes/python-bright-colors-theme.yaml | 49 + themes/qara.yaml | 49 + themes/qerz-theme.yaml | 49 + themes/qii-theme-dark-shallow.yaml | 49 + themes/qii-theme-dark.yaml | 49 + themes/qii-theme-light.yaml | 49 + themes/qoder-dark.yaml | 49 + themes/qqqoid-light-color.yaml | 49 + themes/qt-creator-like-dark-theme.yaml | 49 + themes/qtz-theme.yaml | 49 + themes/quantum-blue-dark.yaml | 49 + themes/quantum-bordered.yaml | 49 + themes/quantum-dark-bordered.yaml | 49 + themes/quantum-green.yaml | 49 + themes/quantum-mirage-bordered.yaml | 49 + themes/quantum-night.yaml | 49 + themes/quantum-synthwave.yaml | 49 + themes/quantumqubic.yaml | 49 + themes/quantxz.yaml | 49 + themes/quarkus-dark-theme.yaml | 49 + themes/quasar.yaml | 49 + themes/qubik-dark.yaml | 49 + themes/qubik-light.yaml | 49 + themes/queensland-dark.yaml | 49 + themes/queensland-light.yaml | 49 + themes/quiet-canvas.yaml | 49 + themes/quiet-hacker.yaml | 49 + themes/quietude.yaml | 49 + themes/quirky-contrast-theme.yaml | 49 + themes/qutheme.yaml | 49 + .../r-dark-pro-filter-black-white-border.yaml | 49 + themes/r-dark-pro-filter-coolnight.yaml | 49 + themes/r-dark-pro-filter-dark-pro.yaml | 49 + themes/r-dark-pro-filter-laser-border.yaml | 49 + themes/r-dark-pro-filter-nightfall.yaml | 49 + themes/r-dark-pro-filter-nightgrey.yaml | 49 + themes/r-dark-pro-filter-nightlate.yaml | 49 + themes/r-e-m.yaml | 49 + themes/r-h-zero-monokai.yaml | 49 + themes/rabbit.yaml | 49 + themes/radiant-noir.yaml | 49 + themes/radium.yaml | 49 + themes/ragequit.yaml | 49 + themes/ragnarok.yaml | 49 + themes/raij-dark-no-italics.yaml | 49 + themes/raij-no-italics.yaml | 49 + themes/rain-city-theme.yaml | 49 + themes/rain.yaml | 49 + themes/rainbow-contrast.yaml | 49 + themes/rainbow-light.yaml | 49 + themes/rainbow-material-theme.yaml | 49 + themes/rainbow-pastel-theme.yaml | 49 + themes/rainbow.yaml | 49 + themes/rainbowdrops-dark.yaml | 49 + themes/rainforest-dark.yaml | 49 + themes/rainx0r.yaml | 49 + themes/rainy-hydrangea.yaml | 49 + themes/raiyanplanet-dark-knight.yaml | 49 + themes/raiyanplanet-darkest.yaml | 49 + themes/raiyanplanet-purple-world.yaml | 49 + themes/rajasthan-land-of-kings.yaml | 49 + themes/rajoyish.yaml | 49 + themes/rakkii-theme.yaml | 49 + themes/ramage.yaml | 49 + themes/ramazzotti-80s.yaml | 49 + themes/ramazzotti-flexobi.yaml | 49 + themes/ramazzotti-gruvbox.yaml | 49 + themes/ramuda.yaml | 49 + themes/rapture.yaml | 49 + themes/rate-dark-cold.yaml | 49 + themes/rate-dark.yaml | 49 + themes/rate-light-soft.yaml | 49 + themes/rate-light.yaml | 49 + themes/ravenwood-dark.yaml | 49 + themes/ravenwood-light.yaml | 49 + themes/rb-s-desaturated.yaml | 49 + themes/rbe-matrix-skin-theme.yaml | 49 + themes/rdcd.yaml | 49 + themes/re-dark-alt.yaml | 49 + themes/re-eclipse-old-school.yaml | 49 + themes/re-eclipse.yaml | 49 + themes/re-vision.yaml | 49 + themes/react-theme.yaml | 49 + themes/rebellion-contrast.yaml | 49 + themes/rebellion-light.yaml | 49 + themes/rebellion.yaml | 49 + themes/recats-classic-dark.yaml | 49 + themes/recats-nova-dark.yaml | 49 + themes/recotheme.yaml | 49 + themes/red-black-white-dark.yaml | 49 + themes/red-black-white-light.yaml | 49 + themes/red-grey.yaml | 49 + themes/red-neon.yaml | 49 + themes/red-one-dark-pro-dark-bordered.yaml | 49 + themes/red-one-dark-pro-dark.yaml | 49 + themes/red-one-dark-pro-mirage-bordered.yaml | 49 + themes/red-one-dark-pro-mirage.yaml | 49 + themes/red-vintage.yaml | 49 + themes/reddark.yaml | 49 + themes/reddish.yaml | 49 + themes/reddit-dark-based-theme-updated.yaml | 49 + themes/rediohead-theme.yaml | 49 + themes/redorainbow.yaml | 49 + themes/redpro-dark.yaml | 49 + themes/redpro-light.yaml | 49 + themes/redspecter.yaml | 49 + themes/refined-charcoal.yaml | 49 + themes/refined-default.yaml | 49 + themes/refined-dracula.yaml | 49 + themes/refined-espresso.yaml | 49 + themes/refined-matcha.yaml | 49 + themes/refined-mocha.yaml | 49 + themes/refined-night-owl.yaml | 49 + themes/refined-oceanic-next.yaml | 49 + themes/refined-one.yaml | 49 + themes/refined-palenight.yaml | 49 + themes/refined-purple.yaml | 49 + themes/refined-slate.yaml | 49 + themes/regard.yaml | 49 + themes/registheme.yaml | 49 + themes/relaxed-theme-dark-focus.yaml | 49 + themes/relaxed-theme-day-light.yaml | 49 + themes/relaxed-theme-night-warm.yaml | 49 + themes/relaxed-theme.yaml | 49 + themes/remedy-bright-tilted.yaml | 49 + themes/remedy-dark-tilted.yaml | 49 + themes/replicant.yaml | 49 + themes/replt-it.yaml | 49 + themes/repoman-color-theme.yaml | 49 + themes/resknow-dark.yaml | 49 + themes/ressgame-advance-coding-theme.yaml | 49 + themes/retina.yaml | 49 + themes/retro-cathode-ray-minimal-theme.yaml | 49 + themes/retro-green.yaml | 49 + themes/retro-hacker-amber.yaml | 49 + themes/retro-hacker-blue.yaml | 49 + themes/retro-hacker-green-subtle.yaml | 49 + themes/retro-hacker-green.yaml | 49 + themes/retro-hacker-magenta.yaml | 49 + themes/retro-keyboard-dark.yaml | 49 + themes/retro-keyboard-light.yaml | 49 + themes/retro-pastel-color-theme.yaml | 49 + themes/retro-theme.yaml | 49 + themes/retro-vibes.yaml | 49 + themes/retro.yaml | 49 + themes/retrocoders.yaml | 49 + themes/retronica-amber-terminal.yaml | 49 + themes/retronica-neon-nights.yaml | 49 + themes/retronica-pastel-arcade.yaml | 49 + themes/retronica-phosphor-green.yaml | 49 + themes/retronica-vintage-computing.yaml | 49 + themes/retropunk.yaml | 49 + themes/retroscope.yaml | 49 + themes/retrox.yaml | 49 + themes/reui-ii-dark-italic.yaml | 49 + themes/reui-ii-italic.yaml | 49 + themes/reui-ii-mirage-italic.yaml | 49 + themes/revelation-contrast.yaml | 49 + themes/revelation-light.yaml | 49 + themes/revelation.yaml | 49 + themes/revisual-assist-color-theme.yaml | 49 + themes/revisualassist.yaml | 49 + themes/rextax-bright-fork.yaml | 49 + themes/rhodes-dark.yaml | 49 + themes/rhodes-light.yaml | 49 + themes/rich-black-theme-no-italic.yaml | 49 + themes/rider-melon-night.yaml | 49 + themes/rider.yaml | 49 + themes/rigel.yaml | 49 + themes/rimber.yaml | 49 + themes/riskified-dark.yaml | 49 + themes/rito.yaml | 49 + themes/rivendell.yaml | 49 + themes/rizz-focused.yaml | 49 + themes/rizz-neutral.yaml | 49 + themes/rm-dark-theme.yaml | 49 + themes/roblox-stylized-dark-theme.yaml | 49 + themes/robodark.yaml | 49 + themes/robolaunch.yaml | 49 + themes/rocinante.yaml | 49 + themes/rocko-s-modern-theme.yaml | 49 + ...rog-theme-v1-1-dark-alpha-syntax-test.yaml | 49 + themes/rogue-squadron.yaml | 49 + themes/rohit-kudalkar-dark-theme.yaml | 49 + themes/ronin-darker.yaml | 49 + themes/ronin.yaml | 49 + themes/root-bear.yaml | 49 + themes/root-dark-mode-theme-v0-1.yaml | 49 + themes/ros-pine-dawn.yaml | 49 + themes/ros-pine.yaml | 49 + themes/rose-paradise.yaml | 49 + themes/rosefall-black.yaml | 49 + themes/rosefall-midnight.yaml | 49 + themes/roselia-orbital-eden-pastel.yaml | 49 + themes/roselia.yaml | 49 + themes/rouge-no-italics.yaml | 49 + themes/roxo-theme.yaml | 49 + themes/royal-darker-theme.yaml | 49 + themes/royal-fork.yaml | 49 + themes/royal.yaml | 49 + themes/rozen.yaml | 49 + themes/rs-dark.yaml | 49 + themes/rsikified-dark-purple.yaml | 49 + themes/rubecula.yaml | 49 + themes/rubi-theme.yaml | 49 + themes/ruby-nights-garnet-midnight.yaml | 49 + themes/ruby-nights-garnet.yaml | 49 + themes/ruby-nights-ruby-midnight.yaml | 49 + themes/ruby-nights-ruby.yaml | 49 + themes/ruby-sea.yaml | 49 + ...udydev-theme-edited-tokyo-night-storm.yaml | 49 + themes/rui-cobalt.yaml | 49 + themes/rui-sapphire.yaml | 49 + themes/runic-minimal.yaml | 49 + themes/ruru-marijuana.yaml | 49 + themes/ruru-moon.yaml | 49 + themes/rust-brown.yaml | 49 + themes/rustacean.yaml | 49 + themes/rusty.yaml | 49 + themes/ryb.yaml | 49 + themes/rypjaws.yaml | 49 + themes/s-kill.yaml | 49 + themes/s-o-paulo-night.yaml | 49 + themes/safari-midnight.yaml | 49 + themes/safira.yaml | 49 + themes/saga-nordic-v1-2.yaml | 49 + themes/saga-oceania-v1-2.yaml | 49 + themes/sage-of-light-color-theme.yaml | 49 + themes/sage-professional.yaml | 49 + themes/sage-siren-theme.yaml | 49 + themes/sailor-at-sea.yaml | 49 + themes/sakai-theme-jupiter.yaml | 49 + themes/sakai-theme-moon.yaml | 49 + themes/sakai-theme-saturn.yaml | 49 + themes/sakai-theme-venus.yaml | 49 + themes/sakura-blossom-midnight.yaml | 49 + themes/sakura-blossom-theme.yaml | 49 + themes/sakura-dreams-dark.yaml | 49 + themes/sakura-dreams.yaml | 49 + themes/sakura-theme-fork.yaml | 49 + themes/sakura-theme.yaml | 49 + themes/sakura-v2-by-leroiadib.yaml | 49 + themes/sakura.yaml | 49 + themes/sakya-dorje.yaml | 49 + themes/samacaca.yaml | 49 + themes/samgido-theme-dark.yaml | 49 + themes/samito-nest-graphql-theme.yaml | 49 + themes/samito-nest-theme.yaml | 49 + themes/samurai.yaml | 49 + themes/samyak-bumb.yaml | 49 + themes/sanam-dark-pro.yaml | 49 + themes/sandcastle.yaml | 49 + themes/sanded.yaml | 49 + themes/sandstorm.yaml | 49 + themes/sanemi-shinazugawa.yaml | 49 + themes/sanrio.yaml | 49 + themes/sapporo.yaml | 49 + themes/saransk-night.yaml | 49 + themes/saraswati-cool-light-theme.yaml | 49 + themes/sarcastic-white.yaml | 49 + themes/sargam.yaml | 49 + themes/satoru-gojo-blue.yaml | 49 + themes/satoru-gojo-white.yaml | 49 + themes/satoshi-nakamoto-theme.yaml | 49 + themes/satsoomahhh.yaml | 49 + themes/satu.yaml | 49 + themes/saturated-dark-terminal.yaml | 49 + themes/saturn-moonlight.yaml | 49 + themes/saturnblue-dark.yaml | 49 + themes/sauna-theme.yaml | 49 + themes/saunf.yaml | 49 + themes/sauve.yaml | 49 + themes/savannah-dawn.yaml | 49 + themes/savannah-sunset.yaml | 49 + themes/save-my-eyes.yaml | 49 + themes/savetemin.yaml | 49 + themes/sazardev.yaml | 49 + themes/scarlet.yaml | 49 + themes/sceanic-dark-gray.yaml | 49 + themes/sceanic-gray.yaml | 49 + themes/sceanic.yaml | 49 + themes/scepter.yaml | 49 + themes/schoero-dark.yaml | 49 + themes/schooltheme.yaml | 49 + themes/schwifty-atom-one-dark.yaml | 49 + themes/schwifty-purple-one-dark.yaml | 49 + themes/schwifty.yaml | 49 + themes/scooby-dooby-dark.yaml | 49 + themes/scorch-contrast.yaml | 49 + themes/scorch-light.yaml | 49 + themes/scorch.yaml | 49 + themes/scorpion-theme.yaml | 49 + themes/scuba.yaml | 49 + themes/sea-glass.yaml | 49 + themes/sea-urchin.yaml | 49 + themes/seabrook-dark-italic.yaml | 49 + themes/seabrook-light-italic.yaml | 49 + themes/seaci-darkbase.yaml | 49 + themes/seaci-shadow.yaml | 49 + themes/seafarer.yaml | 49 + themes/seafoam.yaml | 49 + themes/seagull.yaml | 49 + themes/secret-spring.yaml | 49 + themes/secunda.yaml | 49 + themes/secuoyas-code.yaml | 49 + themes/sedona.yaml | 49 + themes/seed7-tokyo-night-dark.yaml | 49 + themes/seekode-light.yaml | 49 + themes/selene-selenized-dark.yaml | 49 + themes/selene-selenized-light.yaml | 49 + themes/selenitic-color-theme.yaml | 49 + themes/sema.yaml | 49 + themes/semantic-noctis-lux.yaml | 49 + themes/semi-dark-theme-in-yellow.yaml | 49 + themes/senerdark-pro-blue-gray.yaml | 49 + themes/senerdark-pro-deep-gray.yaml | 49 + themes/senkorange.yaml | 49 + themes/senna-dark-black-theme.yaml | 49 + themes/seoul-dancheong.yaml | 49 + themes/seoul-morning.yaml | 49 + themes/seoul-night.yaml | 49 + themes/september-dark-theme.yaml | 49 + themes/sequoia-monochrome.yaml | 49 + themes/sequoia-moonlight.yaml | 49 + themes/sequoia-retro.yaml | 49 + themes/seral-dark-github-stripe.yaml | 49 + themes/seral-light-github-stripe.yaml | 49 + themes/serendipity-midnight-electric.yaml | 49 + themes/serendipity-midnight-v1.yaml | 49 + themes/serendipity-midnight.yaml | 49 + themes/serendipity-morning-v1.yaml | 49 + themes/serendipity-morning.yaml | 49 + themes/serendipity-sunset-v1.yaml | 49 + themes/serendipity-sunset.yaml | 49 + themes/serene.yaml | 49 + themes/service-contrast.yaml | 49 + themes/service-light.yaml | 49 + themes/service.yaml | 49 + themes/seti-classic-vscode.yaml | 49 + themes/seti.yaml | 49 + themes/sewayaki-dark.yaml | 49 + themes/shaan-s.yaml | 49 + themes/shaant-shakti-mystic-roast.yaml | 49 + themes/shaant-shakti-sand-storm.yaml | 49 + themes/shaant-shakti-soul-drift.yaml | 49 + themes/shaant-shakti-spfx-sanctuary.yaml | 49 + themes/shaant-shakti.yaml | 49 + themes/shadcn-blue-light.yaml | 49 + themes/shadcn-green-dark.yaml | 49 + themes/shadcn-green-light.yaml | 49 + themes/shadcn-neutral-dark.yaml | 49 + themes/shadcn-neutral-light.yaml | 49 + themes/shadcn-orange-dark.yaml | 49 + themes/shadcn-orange-light.yaml | 49 + themes/shadcn-red-dark.yaml | 49 + themes/shadcn-red-light.yaml | 49 + themes/shadcn-rose-dark.yaml | 49 + themes/shadcn-rose-light.yaml | 49 + themes/shadcn-violet-dark.yaml | 49 + themes/shadcn-violet-light.yaml | 49 + themes/shadcn-vivid.yaml | 49 + themes/shadcn-yellow-dark.yaml | 49 + themes/shadcn-yellow-light.yaml | 49 + themes/shaddy-lighta.yaml | 49 + themes/shaddy.yaml | 49 + themes/shade-theme.yaml | 49 + themes/shades-of-blue.yaml | 49 + themes/shades-of-cyan-theme.yaml | 49 + themes/shades-of-gravy.yaml | 49 + themes/shades-of-life-light.yaml | 49 + themes/shades-of-life.yaml | 49 + .../shades-of-midnight-blue-dark-theme.yaml | 49 + themes/shades-of-violet.yaml | 49 + themes/shades.yaml | 49 + themes/shadowborn.yaml | 49 + themes/shadowscape.yaml | 49 + themes/shadowspectrum.yaml | 49 + themes/shamrock.yaml | 49 + themes/sharkdark-theme.yaml | 49 + themes/sharpblue.yaml | 49 + themes/sheme.yaml | 49 + themes/shibainu-dark.yaml | 49 + themes/shibuya.yaml | 49 + themes/shifting-sands.yaml | 49 + themes/shiina.yaml | 49 + themes/shinjuku-colored-brackets.yaml | 49 + themes/shinkai.yaml | 49 + themes/ship-dark.yaml | 49 + themes/ship-light.yaml | 49 + themes/shirotelin.yaml | 49 + themes/shiv-vscode-theme.yaml | 49 + themes/shivam.yaml | 49 + themes/shoxwave.yaml | 49 + themes/shrek-contrast.yaml | 49 + themes/shrek-light.yaml | 49 + themes/shrek.yaml | 49 + themes/shuri-midnight.yaml | 49 + themes/siberia.yaml | 49 + themes/side-punk-sql.yaml | 49 + themes/sidev-monokai-dim-ts.yaml | 49 + themes/siemor.yaml | 49 + themes/sign-theme-v3.yaml | 49 + themes/sign-theme-v4.yaml | 49 + themes/silent-code.yaml | 49 + themes/silot-dark-classic.yaml | 49 + themes/silvermist.yaml | 49 + themes/silverwolf.yaml | 49 + themes/simple-3000.yaml | 49 + themes/simple-calm-dark.yaml | 49 + themes/simple-purple.yaml | 49 + themes/simple-red-dark.yaml | 49 + themes/simple-theme.yaml | 49 + themes/simpledark.yaml | 49 + themes/sinequanone-acid.yaml | 49 + themes/sinequanone-apple.yaml | 49 + themes/sinequanone-brighton.yaml | 49 + themes/sinequanone-carbon.yaml | 49 + themes/sinequanone-cerulean.yaml | 49 + themes/sinequanone-noir.yaml | 49 + themes/sinequanone-sunset.yaml | 49 + themes/sinequanone-swan.yaml | 49 + themes/sinergyext.yaml | 49 + themes/sirius-astral.yaml | 49 + themes/sirius-glow.yaml | 49 + themes/sirius-nebula.yaml | 49 + themes/sirius-pulsar.yaml | 49 + themes/sirius-vesper.yaml | 49 + themes/sirius-vibe.yaml | 49 + themes/sirius-vortex.yaml | 49 + themes/sirius-zenith.yaml | 49 + themes/sith.yaml | 49 + themes/sizdah-best-of-all.yaml | 49 + themes/sizo-purple.yaml | 49 + themes/sj-pinkish-theme.yaml | 49 + themes/sj-theme.yaml | 49 + themes/sk5s-vsgt.yaml | 49 + themes/skeletortheme.yaml | 49 + themes/sky-at-night.yaml | 49 + themes/sky-blue-tranquility-focus.yaml | 49 + themes/sky-miami-vice.yaml | 49 + themes/sky-neon.yaml | 49 + themes/skye-wind-light.yaml | 49 + themes/skye-wind.yaml | 49 + themes/skyline.yaml | 49 + themes/slack-theme-aubergine-dark.yaml | 49 + themes/slack-theme-aubergine-new.yaml | 49 + themes/slack-theme-aubergine.yaml | 49 + themes/slack-theme-dark.yaml | 49 + themes/slack-theme.yaml | 49 + themes/slate-black.yaml | 49 + themes/slate-blackish.yaml | 49 + themes/slate-contrast.yaml | 49 + themes/slate-gray.yaml | 49 + themes/slate-light.yaml | 49 + themes/slate.yaml | 49 + themes/sleepy-owl-default-beta.yaml | 49 + themes/sleepy-owl-greenwich-beta.yaml | 49 + themes/sleepy-owl-oak-beta.yaml | 49 + themes/slime-color-theme.yaml | 49 + themes/slime-contrast.yaml | 49 + themes/slime-light.yaml | 49 + themes/slime-solid-color-theme.yaml | 49 + themes/slime.yaml | 49 + themes/slimy-high-contrast.yaml | 49 + themes/slimy-light.yaml | 49 + themes/slimy.yaml | 49 + themes/slinkwave.yaml | 49 + themes/sloth-highlander-theme-1.yaml | 49 + themes/sloth-highlander-theme-2.yaml | 49 + themes/smalltheme-carbon-oled.yaml | 49 + themes/smettboi-light.yaml | 49 + themes/smithy-bronze.yaml | 49 + themes/smooth-burn-dark-hard.yaml | 49 + themes/smooth-burn-dark-medium.yaml | 49 + themes/smooth-burn-dark.yaml | 49 + themes/smooth-burn-light-hard.yaml | 49 + themes/smoothity-dark.yaml | 49 + themes/snakedye-chocolate.yaml | 49 + themes/snappy-contrast.yaml | 49 + themes/snappy-light.yaml | 49 + themes/snappy.yaml | 49 + themes/snazzy-light.yaml | 49 + ...zzy-operator-color-theme-dark-italics.yaml | 49 + .../snazzy-operator-color-theme-italics.yaml | 49 + themes/snazzy-operator-natural.yaml | 49 + themes/snazzy-operator-plus-color-theme.yaml | 49 + themes/snazzy-solaris.yaml | 49 + themes/snazzy-vs-theme.yaml | 49 + themes/snow-theme.yaml | 49 + themes/snowflake-dark-theme.yaml | 49 + themes/snowflake-darker-theme.yaml | 49 + themes/snoword-dark-soft.yaml | 49 + themes/snoword-dark.yaml | 49 + themes/snoword-light-soft.yaml | 49 + themes/snoword-light.yaml | 49 + themes/snowpiercer.yaml | 49 + themes/snowy-mint.yaml | 49 + themes/sober-afternoon.yaml | 49 + themes/sober-deepnight.yaml | 49 + themes/sober-midnight.yaml | 49 + themes/sober.yaml | 49 + themes/sobrio-light.yaml | 49 + themes/sobrio.yaml | 49 + themes/soct-color-theme.yaml | 49 + themes/soda.yaml | 49 + themes/soft-colors.yaml | 49 + themes/soft-dark-2.yaml | 49 + themes/soft-era-ellite-edit.yaml | 49 + themes/soft-kawaii-theme-1-color-theme.yaml | 49 + themes/soft-light-2.yaml | 49 + themes/soft-material.yaml | 49 + themes/soft-midnight.yaml | 49 + themes/soft-mood-theme.yaml | 49 + themes/soft-sight.yaml | 49 + themes/soft-sunset-dark.yaml | 49 + themes/soft-yellow-light.yaml | 49 + themes/soho-color-theme.yaml | 49 + themes/soil-theme.yaml | 49 + themes/solar-drift-dark-theme.yaml | 49 + themes/solar-drift-darker-theme.yaml | 49 + themes/solar-flare.yaml | 49 + themes/solar-future.yaml | 49 + themes/solarflare-contrast.yaml | 49 + themes/solarflare-light.yaml | 49 + themes/solarflare.yaml | 49 + themes/solaris.yaml | 49 + themes/solarized-abydos.yaml | 49 + themes/solarized-complete-dark.yaml | 49 + themes/solarized-complete-light.yaml | 49 + themes/solarized-custom-dark.yaml | 49 + themes/solarized-custom-light.yaml | 49 + themes/solarized-dark-theme.yaml | 49 + themes/solarized-dark.yaml | 49 + themes/solarized-deep.yaml | 49 + themes/solarized-light-functional.yaml | 49 + themes/solarized-light-n.yaml | 49 + themes/solarized-light.yaml | 49 + themes/solarized-lilac.yaml | 49 + themes/solarized-monokai-dark.yaml | 49 + themes/solarized-neue-bright.yaml | 49 + themes/solarized-neue.yaml | 49 + themes/solarized-pro.yaml | 49 + themes/solarized-right.yaml | 49 + themes/solarized-ss-light.yaml | 49 + themes/solarized-yuki.yaml | 49 + themes/solarized.yaml | 49 + themes/solarus.yaml | 49 + themes/solaryss.yaml | 49 + themes/solavsce-packagera.yaml | 49 + themes/solid-dark-theme.yaml | 49 + themes/solitude-dark.yaml | 49 + themes/solitude-soft.yaml | 49 + themes/solo-leveling.yaml | 49 + themes/solstice-estival.yaml | 49 + themes/solstice-hibernal.yaml | 49 + themes/somber.yaml | 49 + themes/something-theme.yaml | 49 + themes/somewhere-on-a-beach.yaml | 49 + themes/sonokai-andromeda.yaml | 49 + themes/sonokai-atlantis.yaml | 49 + themes/sonokai-espresso.yaml | 49 + themes/sonokai-maia.yaml | 49 + themes/sonokai-shusia.yaml | 49 + themes/sonokai.yaml | 49 + themes/sonora-deep-signal-faded.yaml | 49 + themes/sonora-deep-signal-vibrant.yaml | 49 + themes/sonora-deep-signal.yaml | 49 + themes/sonora-tides.yaml | 49 + themes/soothing-dark.yaml | 49 + themes/soothing-light.yaml | 49 + themes/soothing.yaml | 49 + themes/sorcerer.yaml | 49 + themes/soudev-mega-dark.yaml | 49 + themes/soudev-purple-andromeda.yaml | 49 + themes/soudev-semi-dark-andromeda.yaml | 49 + themes/soul-theme.yaml | 49 + themes/souls-theme.yaml | 49 + themes/soup-contrast.yaml | 49 + themes/soup-light.yaml | 49 + themes/soup.yaml | 49 + themes/sourc.yaml | 49 + themes/sourcerer.yaml | 49 + themes/sourlick-contrast.yaml | 49 + themes/sourlick-light.yaml | 49 + themes/sourlick.yaml | 49 + themes/south-australia-dark.yaml | 49 + themes/south-australia-light.yaml | 49 + themes/space-dark.yaml | 49 + themes/space-invader-black.yaml | 49 + themes/space-invader-darker.yaml | 49 + themes/space-invader-light.yaml | 49 + themes/space-invader.yaml | 49 + themes/space-light.yaml | 49 + themes/space-purple-dark.yaml | 49 + themes/space-purple-light.yaml | 49 + themes/space-theme.yaml | 49 + themes/space.yaml | 49 + themes/spacecamp.yaml | 49 + themes/spacedust.yaml | 49 + themes/spacegray.yaml | 49 + themes/spacegrey.yaml | 49 + themes/spacemacs-dark.yaml | 49 + themes/spacemacs-light.yaml | 49 + themes/spaceoceankitrefined.yaml | 49 + themes/spacial.yaml | 49 + themes/spades.yaml | 49 + themes/sparkle-theme.yaml | 49 + themes/speakeasy.yaml | 49 + themes/spearmint-contrast.yaml | 49 + themes/spearmint-light.yaml | 49 + themes/spearmint.yaml | 49 + themes/spider-man.yaml | 49 + themes/spiderverse-2099.yaml | 49 + themes/spiderverse-miles.yaml | 49 + themes/spiderverse-spider-man.yaml | 49 + themes/spin-theme.yaml | 49 + themes/spiral.yaml | 49 + themes/spirited-night.yaml | 49 + themes/spitfire-contrast.yaml | 49 + themes/spitfire-light.yaml | 49 + themes/spitfire.yaml | 49 + themes/splash-theme.yaml | 49 + themes/splus.yaml | 49 + themes/spotly-dark.yaml | 49 + themes/spotly-light.yaml | 49 + themes/spring.yaml | 49 + themes/sprinkles-color-theme.yaml | 49 + themes/spurlys-theme.yaml | 49 + themes/spyder-theme-light.yaml | 49 + themes/sql-dark-pro-high-contrast.yaml | 49 + themes/squeak.yaml | 49 + themes/srcery-gagbo.yaml | 49 + themes/srcery.yaml | 49 + themes/stackmeister.yaml | 49 + themes/stained-glass-dark.yaml | 49 + themes/stannum.yaml | 49 + themes/star-night-luna.yaml | 49 + themes/star-night.yaml | 49 + themes/star-wars-dark-side-theme-global.yaml | 49 + themes/starboy-theme.yaml | 49 + themes/starburst-dark.yaml | 49 + themes/starfield.yaml | 49 + themes/stark-contrast.yaml | 49 + themes/stark-dark.yaml | 49 + themes/stark-light.yaml | 49 + themes/stark.yaml | 49 + themes/starlight-daybreak.yaml | 49 + themes/starlight-light.yaml | 49 + themes/starlight-midnight.yaml | 49 + themes/starlight-obsidian.yaml | 49 + themes/starlight-soft-glow.yaml | 49 + themes/starlight.yaml | 49 + themes/starry-night.yaml | 49 + themes/starry-pillar.yaml | 49 + themes/startlite.yaml | 49 + themes/startrail.yaml | 49 + themes/stasis-contrast.yaml | 49 + themes/stasis-light.yaml | 49 + themes/stasis.yaml | 49 + themes/stealth-contrast.yaml | 49 + themes/stealth-light.yaml | 49 + themes/stealth.yaml | 49 + themes/steel-blue-dark.yaml | 49 + themes/steel-phantom.yaml | 49 + themes/steffula.yaml | 49 + themes/stella-high-contrast.yaml | 49 + themes/stella-theme.yaml | 49 + themes/stella.yaml | 49 + themes/stellar-void.yaml | 49 + themes/stellar.yaml | 49 + themes/stereo-theme.yaml | 49 + themes/sto-classic.yaml | 49 + themes/sto-green-dark.yaml | 49 + themes/sto-green.yaml | 49 + themes/stonerose.yaml | 49 + themes/storm-contrast.yaml | 49 + themes/storm-dark-pro.yaml | 49 + themes/storm-light.yaml | 49 + themes/storm-tracker.yaml | 49 + themes/storm-uvadark-fork.yaml | 49 + themes/storm.yaml | 49 + themes/stormpetrel.yaml | 49 + themes/strangebrew.yaml | 49 + themes/studio-bio-bio-dark-theme.yaml | 49 + themes/stylelight35.yaml | 49 + themes/subessence.yaml | 49 + themes/sublette.yaml | 49 + themes/sublime-breakers.yaml | 49 + themes/sublime-mariana-semantic-colorful.yaml | 49 + themes/sublime-mariana-test.yaml | 49 + themes/sublime-monokai-color-theme.yaml | 49 + themes/sublime-text-3.yaml | 49 + themes/sublime-text-4-theme.yaml | 49 + themes/sublime-vscode-theme.yaml | 49 + themes/subliminal-color-theme.yaml | 49 + themes/subliminalr-next.yaml | 49 + themes/subscribe-color.yaml | 49 + themes/substrata.yaml | 49 + themes/sufocode.yaml | 49 + themes/sugar-dark-focus.yaml | 49 + themes/sugar-dark-github.yaml | 49 + themes/sugar-dark-midnight.yaml | 49 + themes/sugar-dark-one.yaml | 49 + themes/sugar-dark-vitesse.yaml | 49 + themes/sugar-dark-vs.yaml | 49 + themes/sugar-dark.yaml | 49 + themes/sugar-fleet.yaml | 49 + themes/sugar-light-vitesse.yaml | 49 + themes/sugar-light-vs.yaml | 49 + themes/sugar-light.yaml | 49 + themes/sukadia-dev-dark.yaml | 49 + themes/sulfuric-dark.yaml | 49 + themes/sumiiro.yaml | 49 + themes/summer-night-gray-high-contrast.yaml | 49 + themes/summer-night-high-contrast.yaml | 49 + themes/summer-night.yaml | 49 + themes/summer-nights-lullaby.yaml | 49 + themes/summer-nights.yaml | 49 + themes/summer-palenight.yaml | 49 + themes/summer.yaml | 49 + themes/summercamp.yaml | 49 + themes/summerrelax.yaml | 49 + themes/sunbather.yaml | 49 + ...code-dark-soothing-blue-light-reduced.yaml | 49 + themes/sunny.yaml | 49 + themes/sunset-beach-dark.yaml | 49 + themes/sunset-beach-light.yaml | 49 + themes/sunset-boulevard.yaml | 49 + themes/sunset-noir.yaml | 49 + themes/sunset-serenade.yaml | 49 + themes/sunset-theme.yaml | 49 + themes/sunsplash-monodark.yaml | 49 + themes/super-contrast.yaml | 49 + themes/super-dark-cyberpunk-green.yaml | 49 + themes/super-dark-cyberpunk-grey.yaml | 49 + themes/super-dark-cyberpunk-purple.yaml | 49 + themes/super-light.yaml | 49 + themes/super.yaml | 49 + themes/superbright.yaml | 49 + themes/superman-theme.yaml | 49 + themes/supernova.yaml | 49 + themes/surreal.yaml | 49 + themes/susuwatari.yaml | 49 + themes/svelte-5-theme.yaml | 49 + themes/sveltesse-black.yaml | 49 + themes/sveltesse-dark-soft.yaml | 49 + themes/sveltesse-dark.yaml | 49 + themes/sveltesse-light-soft.yaml | 49 + themes/sveltesse-light.yaml | 49 + themes/sw-tatooine.yaml | 49 + themes/sw61.yaml | 49 + themes/swablu.yaml | 49 + themes/swaminarayan.yaml | 49 + themes/swamp-color-theme.yaml | 49 + themes/sweet-lemon.yaml | 49 + themes/sweet-pascal.yaml | 49 + themes/sweet-vscode.yaml | 49 + themes/sweetdracula-monokai.yaml | 49 + themes/swnb-palenight-theme.yaml | 49 + themes/syl-black.yaml | 49 + themes/syl-chocolate.yaml | 49 + themes/syl-forest.yaml | 49 + themes/syl-ice.yaml | 49 + themes/syl-plum.yaml | 49 + themes/syl-shadow.yaml | 49 + themes/syntax-palette.yaml | 49 + themes/synthe.yaml | 49 + themes/synthesis.yaml | 49 + themes/synthor-dark-fork.yaml | 49 + themes/synthwave-2077.yaml | 49 + themes/synthwave-84-csav-edition.yaml | 49 + themes/synthwave-84.yaml | 49 + themes/synthwave-alpha.yaml | 49 + themes/synthwave-material-ansi-16.yaml | 49 + themes/synthwave.yaml | 49 + themes/synthy.yaml | 49 + themes/sypher.yaml | 49 + themes/syrinx.yaml | 49 + themes/sys1.yaml | 49 + themes/sysop.yaml | 49 + themes/t-theme.yaml | 49 + themes/t3chdad-darkside-fork.yaml | 49 + themes/t3nsor-solo-leveling.yaml | 49 + themes/tabycord.yaml | 49 + themes/taco-syntax.yaml | 49 + themes/tahigh.yaml | 49 + themes/taiga.yaml | 49 + themes/tail-dark-theme.yaml | 49 + themes/tailwind-amber-dark.yaml | 49 + themes/tailwind-amber-light.yaml | 49 + themes/tailwind-blue-dark.yaml | 49 + themes/tailwind-blue-light.yaml | 49 + themes/tailwind-breeze.yaml | 49 + themes/tailwind-cyan-dark.yaml | 49 + themes/tailwind-cyan-light.yaml | 49 + themes/tailwind-dark.yaml | 49 + themes/tailwind-darkest.yaml | 49 + themes/tailwind-emerald-dark.yaml | 49 + themes/tailwind-emerald-light.yaml | 49 + themes/tailwind-fuchsia-dark.yaml | 49 + themes/tailwind-fuchsia-light.yaml | 49 + themes/tailwind-gray-dark.yaml | 49 + themes/tailwind-gray-light.yaml | 49 + themes/tailwind-green-dark.yaml | 49 + themes/tailwind-green-light.yaml | 49 + themes/tailwind-indigo-dark.yaml | 49 + themes/tailwind-indigo-light.yaml | 49 + themes/tailwind-lime-dark.yaml | 49 + themes/tailwind-lime-light.yaml | 49 + themes/tailwind-moon-blue.yaml | 49 + themes/tailwind-moon-grey.yaml | 49 + themes/tailwind-moon.yaml | 49 + themes/tailwind-neutral-dark.yaml | 49 + themes/tailwind-neutral-light.yaml | 49 + themes/tailwind-orange-dark.yaml | 49 + themes/tailwind-orange-light.yaml | 49 + themes/tailwind-pink-dark.yaml | 49 + themes/tailwind-pink-light.yaml | 49 + themes/tailwind-purple-dark.yaml | 49 + themes/tailwind-purple-light.yaml | 49 + themes/tailwind-red-dark.yaml | 49 + themes/tailwind-red-light.yaml | 49 + themes/tailwind-rose-dark.yaml | 49 + themes/tailwind-rose-light.yaml | 49 + themes/tailwind-sky-dark.yaml | 49 + themes/tailwind-sky-light.yaml | 49 + themes/tailwind-slate-dark.yaml | 49 + themes/tailwind-slate-light.yaml | 49 + themes/tailwind-stone-dark.yaml | 49 + themes/tailwind-stone-light.yaml | 49 + themes/tailwind-teal-dark.yaml | 49 + themes/tailwind-teal-light.yaml | 49 + themes/tailwind-violet-dark.yaml | 49 + themes/tailwind-violet-light.yaml | 49 + themes/tailwind-yellow-dark.yaml | 49 + themes/tailwind-yellow-light.yaml | 49 + themes/tailwind-zinc-dark.yaml | 49 + themes/tailwind-zinc-light.yaml | 49 + themes/tailwind.yaml | 49 + themes/taipei-night.yaml | 49 + themes/takenawa-modified.yaml | 49 + themes/takenawa.yaml | 49 + themes/tame-contrast.yaml | 49 + themes/tame-light.yaml | 49 + themes/tame.yaml | 49 + themes/tamil-nadu-temple-land.yaml | 49 + themes/tan-jade.yaml | 49 + themes/tangere-dark.yaml | 49 + themes/tangere-light.yaml | 49 + themes/tango-plus.yaml | 49 + themes/tango.yaml | 49 + themes/tanuki.yaml | 49 + themes/tao-theme.yaml | 49 + themes/taquito-darker.yaml | 49 + themes/taquito-lighter.yaml | 49 + themes/tara-theme-carbon-high-contrast.yaml | 49 + themes/tara-theme-carbon.yaml | 49 + themes/tara-theme-deepforest.yaml | 49 + themes/tara-theme-graphene.yaml | 49 + themes/tara-theme-ocean.yaml | 49 + themes/tara-theme-palenight.yaml | 49 + themes/tara-theme-teal.yaml | 49 + themes/taramandal-aurora.yaml | 49 + themes/taramandal-dark.yaml | 49 + themes/taramandal-true-cream.yaml | 49 + themes/tasmania-dark.yaml | 49 + themes/tasmania-light.yaml | 49 + themes/taurus.yaml | 49 + themes/tbfox-theme-light.yaml | 49 + themes/tbfox-theme.yaml | 49 + themes/tbs-theme.yaml | 49 + themes/tea-leaves.yaml | 49 + themes/teags.yaml | 49 + themes/teal-crow-light.yaml | 49 + themes/teal.yaml | 49 + themes/tealicious.yaml | 49 + themes/tealy.yaml | 49 + themes/team-pastel-colors-theme.yaml | 49 + themes/tearz.yaml | 49 + themes/techrazor-pro.yaml | 49 + themes/techstudent10.yaml | 49 + themes/techswahili-color-theme.yaml | 49 + themes/techswahili-deep.yaml | 49 + themes/techswahili-modern-dark.yaml | 49 + themes/tecoma-theme.yaml | 49 + themes/telax.yaml | 49 + themes/telescope-fork.yaml | 49 + themes/telescope.yaml | 49 + themes/tema-dark-nero.yaml | 49 + themes/tema-dos-cria.yaml | 49 + themes/tema-felipao.yaml | 49 + themes/teneblattinus.yaml | 49 + themes/tenebris.yaml | 49 + themes/terafox.yaml | 49 + themes/term.yaml | 49 + themes/terminal.yaml | 49 + themes/terracecat.yaml | 49 + themes/terrarium-minimal-dark.yaml | 49 + themes/terrarium-minimal-light.yaml | 49 + themes/terrorboy-dark.yaml | 49 + themes/tesselate.yaml | 49 + themes/tesseract-dark.yaml | 49 + themes/test.yaml | 49 + themes/tetra-contrast.yaml | 49 + themes/tetra-light.yaml | 49 + themes/tetra.yaml | 49 + themes/teutobourg.yaml | 49 + themes/textmate-rstheme.yaml | 49 + themes/th-me-dark-avril-vert-printemps.yaml | 49 + themes/th-me-dark-janvier-bleu-fonc.yaml | 49 + themes/th-me-dark-juillet-contraste-lev.yaml | 49 + themes/th-me-dark-juin-high-contrast.yaml | 49 + .../th-me-dark-septembre-contraste-lev.yaml | 49 + themes/th-me-high-contrast-janvier-r-vis.yaml | 49 + themes/th-me-sombre-d-automne.yaml | 49 + themes/thanatos.yaml | 49 + themes/thatdatapurple.yaml | 49 + themes/the-best-theme-ever.yaml | 49 + themes/the-dark-stove.yaml | 49 + themes/the-digital-life.yaml | 49 + themes/the-druid.yaml | 49 + themes/the-empire.yaml | 49 + themes/the-end-of-development.yaml | 49 + themes/the-fato-dark.yaml | 49 + themes/the-flying-dutchman-high-contrast.yaml | 49 + themes/the-flying-dutchman-soft.yaml | 49 + themes/the-flying-dutchman.yaml | 49 + themes/the-gentleman.yaml | 49 + themes/the-occult.yaml | 49 + themes/the-one-theme.yaml | 49 + themes/the-only-tolerable-light-theme.yaml | 49 + themes/the-orchid-dark.yaml | 49 + themes/the-orchid-light.yaml | 49 + themes/the-orchid-soft.yaml | 49 + themes/the-theme.yaml | 49 + themes/theaisphere-dark.yaml | 49 + themes/theaisphere-light.yaml | 49 + themes/thebestthemealive.yaml | 49 + themes/thedarkerone.yaml | 49 + themes/themarro-dark-contrast.yaml | 49 + themes/themarro-david-remix.yaml | 49 + themes/themarro.yaml | 49 + themes/theme-bear.yaml | 49 + themes/theme-dark.yaml | 49 + themes/theme-for-codes-dark.yaml | 49 + themes/theme-for-codes-light.yaml | 49 + themes/theme-joey.yaml | 49 + themes/theme-mk-1-green.yaml | 49 + themes/theme-mk-rebuilt.yaml | 49 + themes/theme-nickel.yaml | 49 + themes/theme-one.yaml | 49 + themes/theme-stick-green-dark.yaml | 49 + themes/theme-y-random.yaml | 49 + themes/theme.yaml | 49 + themes/themedarker.yaml | 49 + themes/themeframek.yaml | 49 + themes/themegreen.yaml | 49 + themes/themename.yaml | 49 + themes/themenis.yaml | 49 + themes/themeo.yaml | 49 + themes/themepurple.yaml | 49 + themes/themer-dark.yaml | 49 + themes/themer-light.yaml | 49 + themes/themin-mint.yaml | 49 + themes/theo-swarg-dark.yaml | 49 + themes/theta.yaml | 49 + themes/thinkstorm.yaml | 49 + themes/thore-blue.yaml | 49 + themes/thorn.yaml | 49 + themes/thoughtworks-style-theme.yaml | 49 + themes/thra.yaml | 49 + themes/threedark.yaml | 49 + themes/thunder-focus.yaml | 49 + themes/thunder-remains-unseen.yaml | 49 + themes/thxdude-theme.yaml | 49 + themes/thyme21g.yaml | 49 + themes/thynaptic-dark-base.yaml | 49 + themes/thynaptic-dim-base.yaml | 49 + themes/thynaptic-pro.yaml | 49 + themes/thynaptic-sand-base.yaml | 49 + themes/thynaptic-sand-dark.yaml | 49 + themes/tickle-contrast.yaml | 49 + themes/tickle-light.yaml | 49 + themes/tickle-refresh.yaml | 49 + themes/tickle.yaml | 49 + themes/tidelight-contrast-light.yaml | 49 + themes/tidelight-contrast.yaml | 49 + themes/tidelight-dawn.yaml | 49 + themes/tidelight-daybreak.yaml | 49 + themes/tidelight-deep.yaml | 49 + themes/tidelight-dusk.yaml | 49 + themes/tidelight-fog.yaml | 49 + themes/tidelight-high-noon.yaml | 49 + themes/tidelight-midnight.yaml | 49 + themes/tidelight-shore.yaml | 49 + themes/tiktok.yaml | 49 + themes/tim-s-experiments-dark.yaml | 49 + themes/timir.yaml | 49 + themes/timu-macos-dark-theme.yaml | 49 + themes/timu-macos-light-theme.yaml | 49 + themes/timu-spacegrey-theme.yaml | 49 + themes/tinacious-design-syntax.yaml | 49 + themes/tiniri-dark.yaml | 49 + themes/tiniri-light.yaml | 49 + themes/tiny-light.yaml | 49 + themes/titillating-midnight.yaml | 49 + themes/titillating-sunset.yaml | 49 + themes/tlapalli-00-obsidian.yaml | 49 + themes/tlapalli-01-gold.yaml | 49 + themes/tlapalli-02-turquoise.yaml | 49 + themes/tlapalli-03-quartz.yaml | 49 + themes/tlapalli-04-lapis-lazuli.yaml | 49 + themes/tlapalli-05-amethyst.yaml | 49 + themes/tlapalli-06-jade.yaml | 49 + themes/tlapalli-07-fire-opal.yaml | 49 + themes/tlapalli-l-00-obsidian-light.yaml | 49 + themes/tlapalli-l-01-gold-light.yaml | 49 + themes/tlapalli-l-02-turquoise-light.yaml | 49 + themes/tlapalli-l-03-quartz-light.yaml | 49 + themes/tlapalli-l-04-lapis-lazuli-light.yaml | 49 + themes/tlapalli-l-05-amethyst-light.yaml | 49 + themes/tlapalli-l-06-jade-light.yaml | 49 + themes/tlapalli-l-07-fire-opal-light.yaml | 49 + themes/tm2rd3.yaml | 49 + themes/tnove-dark-theme.yaml | 49 + themes/tobirama-water-style.yaml | 49 + themes/tokito-inspired.yaml | 49 + themes/tokv7.yaml | 49 + themes/tokyo-dark.yaml | 49 + themes/tokyo-dive.yaml | 49 + themes/tokyo-ghosts-dark.yaml | 49 + themes/tokyo-ghosts-light.yaml | 49 + themes/tokyo-gogh-alt.yaml | 49 + themes/tokyo-gogh.yaml | 49 + themes/tokyo-light.yaml | 49 + themes/tokyo-lights.yaml | 49 + themes/tokyo-midnight.yaml | 49 + themes/tokyo-modern.yaml | 49 + themes/tokyo-night-blackout.yaml | 49 + themes/tokyo-night-bright.yaml | 49 + themes/tokyo-night-dark.yaml | 49 + themes/tokyo-night-equalizer.yaml | 49 + themes/tokyo-night-light.yaml | 49 + themes/tokyo-night-nv.yaml | 49 + themes/tokyo-night-pure.yaml | 49 + themes/tokyo-night-storm.yaml | 49 + themes/tokyo-night-void.yaml | 49 + themes/tokyo-night.yaml | 49 + themes/tokyo-panda.yaml | 49 + themes/tokyo.yaml | 49 + themes/tokyonight-moon-lazy.yaml | 49 + themes/tokyonight.yaml | 49 + themes/tol.yaml | 49 + themes/tomorrow-night-bright-r-classic.yaml | 49 + themes/tomorrow-night-ij.yaml | 49 + themes/tomorrow-night-vs.yaml | 49 + themes/tomorrowmyst.yaml | 49 + themes/tonic-contrast.yaml | 49 + themes/tonic-light.yaml | 49 + themes/tonic.yaml | 49 + themes/toodark.yaml | 49 + themes/topic-the-leader.yaml | 49 + themes/tora.yaml | 49 + themes/torque.yaml | 49 + themes/torte-vim.yaml | 49 + themes/total-black-theme.yaml | 49 + themes/total-lunar-eclipse.yaml | 49 + themes/totow-s-th-me.yaml | 49 + themes/toxic-color-theme.yaml | 49 + themes/toxic-waste.yaml | 49 + themes/toy-chest.yaml | 49 + themes/tranquillity-theme.yaml | 49 + themes/trans-pride-light-naomi.yaml | 49 + themes/transylvania.yaml | 49 + themes/triad-dragon.yaml | 49 + themes/tribal-contrast.yaml | 49 + themes/tribal-light.yaml | 49 + themes/tribal.yaml | 49 + themes/trioptimized.yaml | 49 + themes/tristan.yaml | 49 + themes/triumph-v2.yaml | 49 + themes/triumph.yaml | 49 + themes/tron-ares.yaml | 49 + themes/tron-contrast.yaml | 49 + themes/tron-light.yaml | 49 + themes/tron.yaml | 49 + themes/trsm-night-eyes.yaml | 49 + themes/true-dark.yaml | 49 + themes/trueamber.yaml | 49 + themes/tsuki.yaml | 49 + themes/tsukiroku-dark.yaml | 49 + themes/tsukuyomi-light.yaml | 49 + themes/tsukuyomi-no-italics.yaml | 49 + themes/tsumiki-theme.yaml | 49 + themes/ttheme.yaml | 49 + themes/tudoroxo.yaml | 49 + themes/tundra-dusk.yaml | 49 + themes/turbo-c-3-0-borland-style.yaml | 49 + themes/turbo.yaml | 49 + themes/turnip-contrast.yaml | 49 + themes/turnip-light.yaml | 49 + themes/turnip.yaml | 49 + themes/turquesa-bege.yaml | 49 + themes/tutilabs-theme.yaml | 49 + themes/tw40-gigi.yaml | 49 + themes/tweed-contrast.yaml | 49 + themes/tweed-light.yaml | 49 + themes/tweed.yaml | 49 + themes/twentyfour.yaml | 49 + themes/twilight-cosmos.yaml | 49 + themes/twilight-pro.yaml | 49 + themes/twilight-sage.yaml | 49 + themes/twilight.yaml | 49 + themes/twilightsparkle.yaml | 49 + themes/twilite-darker.yaml | 49 + themes/twilite.yaml | 49 + themes/twin-black.yaml | 49 + themes/twin-blue.yaml | 49 + themes/two-firewatch.yaml | 49 + themes/twodark.yaml | 49 + themes/tycho-crater.yaml | 49 + themes/tyh-theme-dark.yaml | 49 + themes/typedark-magenta.yaml | 49 + themes/typedark-yellow.yaml | 49 + themes/tyrell-corporation.yaml | 49 + themes/tyrian-night.yaml | 49 + themes/tyrone-neon-24k-gold.yaml | 49 + themes/ubuntu-dark.yaml | 49 + themes/ui-color.yaml | 49 + themes/ui.yaml | 49 + themes/ukiyo-e-aged-manuscript.yaml | 49 + themes/ukiyo-e-manuscript.yaml | 49 + themes/ukiyo-tone-asahi-morning-sun.yaml | 49 + .../ukiyo-tone-kachi-iro-victory-color.yaml | 49 + .../ukiyo-tone-karesansui-dry-landscape.yaml | 49 + themes/ukiyo-tone-koke-dera-moss-temple.yaml | 49 + themes/ukiyo-tone-kuro-sumi-black-ink.yaml | 49 + themes/ukiyo-tone-tasogare-twilight.yaml | 49 + themes/ukiyo.yaml | 49 + themes/ultima-gwz.yaml | 49 + themes/ultima.yaml | 49 + themes/ultra-instinct-mastered-light.yaml | 49 + themes/ultra-instinct-mastered.yaml | 49 + themes/ultra-instinct-sign.yaml | 49 + themes/umbra.yaml | 49 + themes/umi.yaml | 49 + themes/ump-45-leva.yaml | 49 + themes/unbluelievable.yaml | 49 + themes/undefined.yaml | 49 + themes/under-theme.yaml | 49 + themes/underdark-fork.yaml | 49 + themes/underdark-v2.yaml | 49 + themes/understated-no-italics.yaml | 49 + themes/unicorn-dark.yaml | 49 + themes/unicorn.yaml | 49 + themes/unicornio-dark.yaml | 49 + themes/unieye.yaml | 49 + themes/uniquezhd.yaml | 49 + themes/unitsmash.yaml | 49 + themes/unity-theme.yaml | 49 + themes/universe-gray-italic.yaml | 49 + themes/universe-italic.yaml | 49 + themes/universe-purple-italic.yaml | 49 + themes/universe.yaml | 49 + themes/unlight-v-2.yaml | 49 + themes/untitled-fork-fork.yaml | 49 + themes/untitled-fork.yaml | 49 + themes/untitled.yaml | 49 + themes/unyodusk.yaml | 49 + themes/updog-light.yaml | 49 + themes/updog.yaml | 49 + themes/upward-dark-focus-border-on.yaml | 49 + .../upward-dark-legacy-focus-border-on.yaml | 49 + themes/urara.yaml | 49 + themes/urban-couple.yaml | 49 + themes/urban-forge.yaml | 49 + themes/urban-glow.yaml | 49 + themes/user160.yaml | 49 + themes/userscape-contrast.yaml | 49 + themes/userscape-light.yaml | 49 + themes/userscape.yaml | 49 + themes/utheme.yaml | 49 + themes/utopia.yaml | 49 + themes/uvadark-rahul-fork.yaml | 49 + themes/v-id-contrast.yaml | 49 + themes/v-id-soft.yaml | 49 + themes/v01d-theme-alternative.yaml | 49 + themes/v01d-theme.yaml | 49 + themes/v7.yaml | 49 + themes/vaatu.yaml | 49 + themes/vagalume-dev.yaml | 49 + themes/vagruvboxtheme-color-theme.yaml | 49 + themes/vague-neovim-theme-extended-light.yaml | 49 + themes/vague-neovim-theme-extended.yaml | 49 + themes/valary.yaml | 49 + themes/valkthor-dark-theme.yaml | 49 + themes/valley-italic.yaml | 49 + themes/valorant-theme-darker.yaml | 49 + themes/valorant-theme-remasterd.yaml | 49 + themes/vampurr.yaml | 49 + themes/van-gogh-theme.yaml | 49 + themes/vanilla-jade.yaml | 49 + themes/vanilla.yaml | 49 + themes/vapor.yaml | 49 + themes/vaporizer-alice-dark.yaml | 49 + themes/vaporizer-alice-light.yaml | 49 + themes/vaporizer-ava-light.yaml | 49 + themes/vaporizer-batman-dark-2022.yaml | 49 + themes/vaporizer-batman-dark-night.yaml | 49 + themes/vaporizer-cloudy-light.yaml | 49 + themes/vaporizer-cobalt-dark.yaml | 49 + themes/vaporizer-crescent-dark.yaml | 49 + themes/vaporizer-dark-blue-green.yaml | 49 + themes/vaporizer-dark-cherry.yaml | 49 + themes/vaporizer-dark-coffee.yaml | 49 + themes/vaporizer-dark-cool-1.yaml | 49 + themes/vaporizer-dark-cool-2.yaml | 49 + themes/vaporizer-dark-cop.yaml | 49 + themes/vaporizer-dark-cyber-neon-1.yaml | 49 + themes/vaporizer-dark-cyber-neon-2.yaml | 49 + themes/vaporizer-dark-cyber-neon-3.yaml | 49 + themes/vaporizer-dark-ivy.yaml | 49 + themes/vaporizer-dark-joker.yaml | 49 + themes/vaporizer-dark-matrix-1.yaml | 49 + themes/vaporizer-dark-monterey.yaml | 49 + themes/vaporizer-dark-painting.yaml | 49 + themes/vaporizer-dark-pansy.yaml | 49 + themes/vaporizer-dark-stabilo.yaml | 49 + themes/vaporizer-dark-turquoise.yaml | 49 + themes/vaporizer-epic-red-dark.yaml | 49 + themes/vaporizer-fonc-dark.yaml | 49 + themes/vaporizer-frozen-dark.yaml | 49 + themes/vaporizer-golgi-dark.yaml | 49 + themes/vaporizer-half-moon-dark.yaml | 49 + themes/vaporizer-lemonade-light.yaml | 49 + .../vaporizer-lemonade-solarized-light.yaml | 49 + themes/vaporizer-milk-light.yaml | 49 + themes/vaporizer-mini-blue-light.yaml | 49 + themes/vaporizer-minimalism-light.yaml | 49 + themes/vaporizer-modern-light.yaml | 49 + themes/vaporizer-moon-light-dark.yaml | 49 + themes/vaporizer-phosphoric-blue.yaml | 49 + themes/vaporizer-purple-gray-dark.yaml | 49 + themes/vaporizer-soft-light.yaml | 49 + themes/vaporizer-splash-dark.yaml | 49 + themes/vaporizer-turquoise-light.yaml | 49 + themes/vaporwave.yaml | 49 + themes/vaquita.yaml | 49 + themes/varlet-dark.yaml | 49 + themes/vase-with-twelve-sunflowers.yaml | 49 + themes/vasses-tricolor-theme.yaml | 49 + themes/vcoldtheme.yaml | 49 + themes/vegas-night-details-theme.yaml | 49 + themes/vegetable-contrast.yaml | 49 + themes/vegetable-light.yaml | 49 + themes/vegetable.yaml | 49 + themes/vegetation.yaml | 49 + themes/veil.yaml | 49 + themes/veiled.yaml | 49 + themes/veist.yaml | 49 + themes/vela-spectrum-colorblind-light.yaml | 49 + themes/vela-spectrum-dark-colorblind.yaml | 49 + themes/vela-spectrum-dark-dimmed.yaml | 49 + themes/vela-spectrum-dark-tritanopia.yaml | 49 + themes/vela-spectrum-dark.yaml | 49 + themes/vela-spectrum-dimmed-light.yaml | 49 + themes/vela-spectrum-high-contrast-light.yaml | 49 + themes/vela-spectrum-high-contrast.yaml | 49 + themes/vela-spectrum-light-tritanopia.yaml | 49 + themes/vela-spectrum-light.yaml | 49 + themes/velourous.yaml | 49 + themes/velvet-chrome.yaml | 49 + themes/velvet-thunder.yaml | 49 + themes/venice-beach-sky.yaml | 49 + themes/venom-theme.yaml | 49 + themes/vercel-light.yaml | 49 + themes/vercel.yaml | 49 + themes/verdantium.yaml | 49 + themes/verdure.yaml | 49 + themes/version-1-0-5.yaml | 49 + themes/very-blue.yaml | 49 + themes/very-fast-theme.yaml | 49 + themes/vesper-golden.yaml | 49 + themes/vesper-purple-dark.yaml | 49 + themes/vesper-purple-light.yaml | 49 + themes/vesper.yaml | 49 + themes/vhs80.yaml | 49 + themes/vi-dark.yaml | 49 + themes/vibe-dark-legacy.yaml | 49 + themes/vibecolors-corporate-light.yaml | 49 + themes/vibecolors-dark.yaml | 49 + themes/vibecolors-dynamic-dark.yaml | 49 + themes/vibecolors-dynamic-light.yaml | 49 + themes/vibecolors-light.yaml | 49 + themes/vibecolors-minimal-light.yaml | 49 + themes/vibecolors-neon-dark.yaml | 49 + themes/vibecolors-ocean-dark.yaml | 49 + themes/vibecolors-pastel-light.yaml | 49 + themes/vibecolors-retro-dark.yaml | 49 + themes/vibecolors-soft-dark.yaml | 49 + themes/vibecolors-sunset-light.yaml | 49 + themes/vibes.yaml | 49 + themes/vibra.yaml | 49 + themes/vibrant-abyss-vscode.yaml | 49 + themes/vibrant-dark.yaml | 49 + themes/vibrant-max.yaml | 49 + themes/vice-city-noir.yaml | 49 + themes/vicious.yaml | 49 + themes/victoria-dark.yaml | 49 + themes/victoria-light.yaml | 49 + themes/video-contrast.yaml | 49 + themes/vigerdark.yaml | 49 + themes/vigikai.yaml | 49 + themes/viii-iii-mmv.yaml | 49 + themes/vikkie-dark.yaml | 49 + themes/vikkie-light.yaml | 49 + themes/villain-dark.yaml | 49 + themes/villain-light.yaml | 49 + themes/vim-dar11sdasdasd.yaml | 49 + themes/vim-dark-hard.yaml | 49 + themes/vim-dark-medium.yaml | 49 + themes/vim-dark-soft.yaml | 49 + themes/vim-light-1.yaml | 49 + themes/vim-light-2.yaml | 49 + themes/vim-light-3b.yaml | 49 + themes/vim-light-hard.yaml | 49 + themes/vim-light-medium.yaml | 49 + themes/vim-light-soft.yaml | 49 + themes/vim-night.yaml | 49 + themes/vin-theme.yaml | 49 + themes/vintage-rust-theme.yaml | 49 + themes/vintage-serene.yaml | 49 + themes/vintage.yaml | 49 + themes/vinyl.yaml | 49 + themes/violaceous-contrast.yaml | 49 + themes/violaceous-light.yaml | 49 + themes/violaceous.yaml | 49 + themes/violet-dream.yaml | 49 + themes/violet-night.yaml | 49 + themes/violet-nova.yaml | 49 + themes/viora.yaml | 49 + themes/viper-theme.yaml | 49 + themes/vishwakarma-sunset-glow.yaml | 49 + themes/vision-colorblind.yaml | 49 + themes/vision-light-colorblind.yaml | 49 + themes/visual-studio-code-dark-theme.yaml | 49 + themes/visual-studio-github-light-plus.yaml | 49 + themes/visualos.yaml | 49 + themes/vitepress-theme-vite-dark.yaml | 49 + themes/vitesse-black.yaml | 49 + themes/vitesse-dark-custom.yaml | 49 + themes/vitesse-dark-soft.yaml | 49 + themes/vitesse-dark.yaml | 49 + themes/vitesse-dragon-dark.yaml | 49 + themes/vitesse-dragon.yaml | 49 + themes/vitesse-green-theme.yaml | 49 + themes/vitesse-light-soft.yaml | 49 + themes/vitesse-light.yaml | 49 + themes/vitesse-webstorm-dark.yaml | 49 + themes/vitrioleuse.yaml | 49 + themes/vivid-blue.yaml | 49 + themes/vividnord.yaml | 49 + themes/vivido-theme.yaml | 49 + themes/vkt-theme.yaml | 49 + themes/void-iris.yaml | 49 + themes/void-script.yaml | 49 + themes/void.yaml | 49 + themes/voidbloom-quazar.yaml | 49 + themes/voidbloom-singularity.yaml | 49 + themes/voidwalker.yaml | 49 + themes/volatile-contrast.yaml | 49 + themes/volatile-light.yaml | 49 + themes/volatile.yaml | 49 + themes/volcanofr.yaml | 49 + themes/volskaya.yaml | 49 + themes/volt-dark.yaml | 49 + themes/voodoo.yaml | 49 + themes/voraes.yaml | 49 + themes/vortex.yaml | 49 + themes/vox-ac30.yaml | 49 + themes/voyager.yaml | 49 + themes/vs-code-deep-f-lux-fork-fork.yaml | 49 + themes/vs-code-deep-f-lux.yaml | 49 + themes/vs-code-next-js.yaml | 49 + themes/vs-fleet.yaml | 49 + themes/vs-ghoul.yaml | 49 + themes/vsblue.yaml | 49 + themes/vsc-blue-theme.yaml | 49 + themes/vsc-military-style.yaml | 49 + themes/vsc-minimalist-theme-oak.yaml | 49 + themes/vsc-minimalist-theme-obsidian.yaml | 49 + themes/vsc-minimalist-theme-odp.yaml | 49 + themes/vsc-solarized-light.yaml | 49 + themes/vscode-bt-feynuus-color-theme.yaml | 49 + themes/vscode-material-ui.yaml | 49 + themes/vscode-nofrils-dark.yaml | 49 + themes/vscode-nofrils-github-light.yaml | 49 + themes/vscode-nofrils-gruvbox-dark.yaml | 49 + themes/vscode-nofrils-gruvbox-light.yaml | 49 + themes/vscode-nofrils-light.yaml | 49 + themes/vscode-nofrils-one-dark.yaml | 49 + themes/vscode-nofrils-one-light.yaml | 49 + themes/vscode-nofrils-sepia.yaml | 49 + themes/vscode-nofrils-tokyo-night.yaml | 49 + themes/vscode-pink-and-puple-theme.yaml | 49 + themes/vscode-sublime-ish.yaml | 49 + themes/vscode-theme.yaml | 49 + themes/vscyberpunk-2077.yaml | 49 + themes/vsmuted-color-theme.yaml | 49 + ...vsnordtheme-dark-contrast-color-theme.yaml | 49 + themes/vsnordtheme-light-color-theme.yaml | 49 + ...snordtheme-light-contrast-color-theme.yaml | 49 + themes/vstheme-no-italics.yaml | 49 + themes/vstoolkit-theme-dark.yaml | 49 + themes/vuejs-theme.yaml | 49 + themes/vulpotheme.yaml | 49 + themes/vxcode-blush.yaml | 49 + themes/vxcode-cream.yaml | 49 + themes/vxcode-dark.yaml | 49 + themes/vxcode-darker.yaml | 49 + themes/vxcode-lavender.yaml | 49 + themes/vxcode-lime.yaml | 49 + themes/vxcode-oled.yaml | 49 + themes/w30.yaml | 49 + themes/w40-theme.yaml | 49 + themes/walking-in-the-dark-red.yaml | 49 + themes/wallbash.yaml | 49 + themes/walloco-light-theme.yaml | 49 + themes/walls-fill.yaml | 49 + themes/wandering-mercenary.yaml | 49 + themes/wangyj-bright-black.yaml | 49 + themes/wangyj-contrast-black.yaml | 49 + themes/wangyj-film-black.yaml | 49 + themes/wangyj-film-light.yaml | 49 + themes/warlock-contrast.yaml | 49 + themes/warlock-light.yaml | 49 + themes/warlock.yaml | 49 + themes/warm-black.yaml | 49 + themes/warm-burnout-dark.yaml | 49 + themes/warm-burnout-light.yaml | 49 + themes/warm-orange-enthusiasm-creativity.yaml | 49 + themes/warm-orange-theme.yaml | 49 + themes/warmkai-pro.yaml | 49 + themes/waste-contrast.yaml | 49 + themes/waste-light.yaml | 49 + themes/waste.yaml | 49 + themes/water-grape.yaml | 49 + themes/waterbyte-classic-2022-light.yaml | 49 + themes/watermelon.yaml | 49 + themes/wavefire.yaml | 49 + themes/waves.yaml | 49 + themes/wdark-theme.yaml | 49 + themes/webc-dark.yaml | 49 + themes/webstorm-darcula-dark-theme.yaml | 49 + themes/webstorm-intellij-darcula-theme.yaml | 49 + themes/webstorm-monokai.yaml | 49 + themes/weiting-candycolor.yaml | 49 + themes/west-bengal-cultural-hub.yaml | 49 + themes/what-the-hell.yaml | 49 + themes/wheel-color-theme.yaml | 49 + themes/wheel-light-color-theme.yaml | 49 + themes/whiskey-coder-dark.yaml | 49 + themes/whiskey-coder-light.yaml | 49 + themes/white-blue-demo.yaml | 49 + themes/white-color-theme.yaml | 49 + themes/white-night-color-theme.yaml | 49 + themes/white-shade-color.yaml | 49 + themes/white-winter.yaml | 49 + themes/whiteboard.yaml | 49 + themes/whitespace.yaml | 49 + themes/wick.yaml | 49 + themes/wicked.yaml | 49 + themes/widgit-monokai.yaml | 49 + themes/wiity-green-eye-friendly.yaml | 49 + themes/wiity-green.yaml | 49 + themes/wild-flower.yaml | 49 + themes/wildcat.yaml | 49 + themes/wildtype.yaml | 49 + themes/wildwest.yaml | 49 + themes/will-o-wisp-theme.yaml | 49 + themes/willasm-emerald-sky.yaml | 49 + themes/willi-style-darker.yaml | 49 + themes/willi-style-darkest.yaml | 49 + themes/willi-style-dracula-flavour.yaml | 49 + themes/willow.yaml | 49 + themes/win-xp-luna.yaml | 49 + themes/win10.yaml | 49 + themes/winclassic.yaml | 49 + themes/wind-dark-slate.yaml | 49 + themes/wind-dark-zinc.yaml | 49 + themes/wind.yaml | 49 + themes/windows-95-theme.yaml | 49 + themes/windows-nt.yaml | 49 + themes/windows-xp-dark-luna.yaml | 49 + themes/windu.yaml | 49 + themes/windwaker.yaml | 49 + themes/wine-garden.yaml | 49 + themes/winter-pearl.yaml | 49 + themes/winter.yaml | 49 + themes/winteriscoding-gift.yaml | 49 + themes/winteriscoding.yaml | 49 + themes/wired-lighter.yaml | 49 + themes/wired.yaml | 49 + themes/wise-owl-material-high-contrast.yaml | 49 + themes/wise-owl-material-light.yaml | 49 + themes/wise-owl-material.yaml | 49 + themes/wisteria.yaml | 49 + themes/witch-elaina.yaml | 49 + themes/witcher.yaml | 49 + themes/witchy-dark.yaml | 49 + themes/wl-acid-wash.yaml | 49 + themes/wl-amber-monitor.yaml | 49 + themes/wl-chrome-dreams.yaml | 49 + themes/wl-cosmic-drift.yaml | 49 + themes/wl-crystal-cave.yaml | 49 + themes/wl-cyber-punk.yaml | 49 + themes/wl-data-stream.yaml | 49 + themes/wl-disco-ball.yaml | 49 + themes/wl-electric-dreams.yaml | 49 + themes/wl-electric-sunset.yaml | 49 + themes/wl-fusion-core.yaml | 49 + themes/wl-graffiti-wall.yaml | 49 + themes/wl-hyper-drive.yaml | 49 + themes/wl-ink-splash.yaml | 49 + themes/wl-jade-temple.yaml | 49 + themes/wl-laser-grid.yaml | 49 + themes/wl-lava-lamp.yaml | 49 + themes/wl-mainframe-blue.yaml | 49 + themes/wl-midnight-drive.yaml | 49 + themes/wl-misty-mountain.yaml | 49 + themes/wl-moon-phase.yaml | 49 + themes/wl-neon-cascade.yaml | 49 + themes/wl-neon-sign.yaml | 49 + themes/wl-neon-tokyo.yaml | 49 + themes/wl-nova-burst.yaml | 49 + themes/wl-pastel-dream.yaml | 49 + themes/wl-pixel-punch.yaml | 49 + themes/wl-plasma-storm.yaml | 49 + themes/wl-prism-break.yaml | 49 + themes/wl-pulse-wave.yaml | 49 + themes/wl-punch-tape.yaml | 49 + themes/wl-retro-arcade.yaml | 49 + themes/wl-retro-future.yaml | 49 + themes/wl-signal-wave.yaml | 49 + themes/wl-silk-road.yaml | 49 + themes/wl-synthwave-rider.yaml | 49 + themes/wl-tape-deck.yaml | 49 + themes/wl-terminal-green.yaml | 49 + themes/wl-vacuum-glow.yaml | 49 + themes/wl-velvet-night.yaml | 49 + themes/wl-volt-surge.yaml | 49 + themes/wl-zen-twilight.yaml | 49 + themes/wolves-league-dark.yaml | 49 + themes/woodsmoke.yaml | 49 + themes/wookie.yaml | 49 + themes/word-color-theme.yaml | 49 + themes/word-dark-theme.yaml | 49 + themes/wordsmith-dark.yaml | 49 + themes/wordsmith-light.yaml | 49 + themes/wrkspace-theme.yaml | 49 + themes/wuthering-waves-aemeath-dark.yaml | 49 + themes/wuthering-waves-aemeath.yaml | 49 + themes/wuthering-waves-augusta-dark.yaml | 49 + themes/wuthering-waves-augusta.yaml | 49 + themes/wuthering-waves-baizhi-dark.yaml | 49 + themes/wuthering-waves-baizhi.yaml | 49 + themes/wuthering-waves-brant-dark.yaml | 49 + themes/wuthering-waves-brant.yaml | 49 + themes/wuthering-waves-cantarella-dark.yaml | 49 + themes/wuthering-waves-cantarella.yaml | 49 + themes/wuthering-waves-carlotta-dark.yaml | 49 + themes/wuthering-waves-carlotta.yaml | 49 + themes/wuthering-waves-cartethyia-dark.yaml | 49 + themes/wuthering-waves-cartethyia.yaml | 49 + themes/wuthering-waves-changli-dark.yaml | 49 + themes/wuthering-waves-changli.yaml | 49 + themes/wuthering-waves-chisa-dark.yaml | 49 + themes/wuthering-waves-chisa.yaml | 49 + themes/wuthering-waves-galbrena-dark.yaml | 49 + themes/wuthering-waves-galbrena.yaml | 49 + themes/wuthering-waves-iuno-dark.yaml | 49 + themes/wuthering-waves-iuno.yaml | 49 + themes/wuthering-waves-jinhsi.yaml | 49 + themes/wuthering-waves-lynae-dark.yaml | 49 + themes/wuthering-waves-lynae.yaml | 49 + themes/wuthering-waves-mornye-dark.yaml | 49 + themes/wuthering-waves-mornye.yaml | 49 + themes/wuthering-waves-roccia-dark.yaml | 49 + themes/wuthering-waves-roccia.yaml | 49 + themes/wuthering-waves-rover.yaml | 49 + themes/wuthering-waves-sanhua-dark.yaml | 49 + themes/wuthering-waves-sanhua.yaml | 49 + themes/wuthering-waves-scar-dark.yaml | 49 + themes/wuthering-waves-scar.yaml | 49 + themes/wuthering-waves-taoqi.yaml | 49 + .../wuthering-waves-the-shorekeeper-dark.yaml | 49 + themes/wuthering-waves-the-shorekeeper.yaml | 49 + themes/wuthering-waves-verina-dark.yaml | 49 + themes/wuthering-waves-verina.yaml | 49 + themes/wuthering-waves-yinlin-dark.yaml | 49 + themes/wuthering-waves-yinlin.yaml | 49 + themes/wuthering-waves-zhezhi-dark.yaml | 49 + themes/wuthering-waves-zhezhi.yaml | 49 + themes/wye-black.yaml | 49 + themes/wye-dark-soft.yaml | 49 + themes/wye-dark.yaml | 49 + themes/wye-light-soft.yaml | 49 + themes/wye-light.yaml | 49 + themes/xaeon-dark.yaml | 49 + themes/xaidozy-color.yaml | 49 + themes/xanthron-light.yaml | 49 + themes/xava-color-theme.yaml | 49 + themes/xceodark.yaml | 49 + themes/xcode-dark.yaml | 49 + themes/xecoy-dark.yaml | 49 + themes/xecoy-light.yaml | 49 + themes/xiali-vintage-rose-dark.yaml | 49 + themes/xiali-vintage-rose-light.yaml | 49 + themes/xis-one.yaml | 49 + themes/xk-dark-catppuccin-mocha.yaml | 49 + themes/xk-dark-dracula.yaml | 49 + themes/xk-dark-gruvbox.yaml | 49 + themes/xk-dark-monokai-pro.yaml | 49 + themes/xk-dark-tokyo-night.yaml | 49 + themes/xk-light-catppuccin-latte.yaml | 49 + themes/xk-light-github.yaml | 49 + themes/xk-light-one.yaml | 49 + themes/xk-light-ros-pine.yaml | 49 + themes/xk-light-solarized.yaml | 49 + themes/xlumielvscodetheme.yaml | 49 + themes/xochil.yaml | 49 + themes/xotocode-dark.yaml | 49 + themes/xotopio.yaml | 49 + themes/xpyjs-black.yaml | 49 + themes/xresources-bordered-dark.yaml | 49 + themes/xresources-bordered-mixed.yaml | 49 + themes/xresources-bordered.yaml | 49 + themes/xresources.yaml | 49 + themes/xrodev.yaml | 49 + themes/xs.yaml | 49 + themes/xstheme.yaml | 49 + themes/xthemis-cyan.yaml | 49 + themes/xtree-gold.yaml | 49 + themes/xviewdark.yaml | 49 + themes/xxhtml.yaml | 49 + themes/xxtereshko-light.yaml | 49 + themes/xzadudu179.yaml | 49 + themes/y3m.yaml | 49 + themes/yaast.yaml | 49 + themes/yagnesh.yaml | 49 + themes/yagomaia-theme.yaml | 49 + themes/yalpha-dark-eris.yaml | 49 + themes/yami-blue.yaml | 49 + themes/yanbaru-shadow.yaml | 49 + themes/yarra-valley.yaml | 49 + themes/yaru-dark-grape.yaml | 49 + themes/yaru-dark.yaml | 49 + themes/yaru.yaml | 49 + themes/yaruna-aurora.yaml | 49 + themes/yaruna-forest.yaml | 49 + themes/yaruna-midnight.yaml | 49 + themes/yaruna-nova.yaml | 49 + themes/yaruna-palenight.yaml | 49 + themes/yazbi.yaml | 49 + themes/yd-dark.yaml | 49 + themes/yd-light.yaml | 49 + themes/ydrgzm-light-theme.yaml | 49 + themes/yelan.yaml | 49 + themes/yellow-beryl.yaml | 49 + themes/yellow-green-blue-theme.yaml | 49 + themes/yellow-ish.yaml | 49 + themes/yellow-purple-theme.yaml | 49 + themes/yellowed.yaml | 49 + themes/yerba.yaml | 49 + themes/yet-another-solarized-theme-dark.yaml | 49 + themes/yet-another-solarized-theme-light.yaml | 49 + themes/yharnizedtheme.yaml | 49 + themes/yinloonga-python.yaml | 49 + themes/yitzchok-contrast.yaml | 49 + themes/yitzchok-light.yaml | 49 + themes/yitzchok.yaml | 49 + themes/ylw-dark-theme.yaml | 49 + themes/yoda-mystical-force.yaml | 49 + themes/yoda.yaml | 49 + themes/yodart.yaml | 49 + themes/yohualli-eclipse.yaml | 49 + themes/yohualli-lunaris.yaml | 49 + themes/yohualli-nebulune.yaml | 49 + themes/yohualli-penumbra.yaml | 49 + themes/yonc.yaml | 49 + themes/yondog-dark.yaml | 49 + themes/yotei.yaml | 49 + themes/yoth-theme-dark.yaml | 49 + themes/yoyo-theme-green.yaml | 49 + themes/yoyo-theme.yaml | 49 + themes/ystheme.yaml | 49 + themes/ytheme-dark.yaml | 49 + themes/yue-theme.yaml | 49 + themes/yukinord.yaml | 49 + themes/yule-contrast.yaml | 49 + themes/yule-light.yaml | 49 + themes/yule.yaml | 49 + themes/yulon.yaml | 49 + themes/yum.yaml | 49 + themes/yurei-dark-theme.yaml | 49 + themes/yuru-black.yaml | 49 + themes/yuru.yaml | 49 + themes/yuyuko-vscode-ocean.yaml | 49 + themes/yuyuko-vscode.yaml | 49 + themes/z-darktheme.yaml | 49 + themes/z3r0.yaml | 49 + themes/zach-s-blue-theme.yaml | 49 + themes/zacks-contrast.yaml | 49 + themes/zacks-light.yaml | 49 + themes/zacks.yaml | 49 + themes/zaher-color-theme.yaml | 49 + themes/zan.yaml | 49 + themes/zandromeda.yaml | 49 + themes/zap.yaml | 49 + themes/zathura.yaml | 49 + themes/zbra-dark.yaml | 49 + themes/zeal.yaml | 49 + themes/zednostheme-v1.yaml | 49 + themes/zelda-dark.yaml | 49 + themes/zelzea.yaml | 49 + themes/zemarcolortheme.yaml | 49 + themes/zemizer-grey.yaml | 49 + themes/zen-dark.yaml | 49 + themes/zen-mono.yaml | 49 + themes/zen-sakura-cherry-blossom.yaml | 49 + themes/zen-theme.yaml | 49 + themes/zen.yaml | 49 + themes/zenbones-dark-stark.yaml | 49 + themes/zenbones-dark-warm.yaml | 49 + themes/zenbones-dark.yaml | 49 + themes/zenbones-duckbones-dark-stark.yaml | 49 + themes/zenbones-duckbones-dark-warm.yaml | 49 + themes/zenbones-duckbones-dark.yaml | 49 + themes/zenbones-forestbones-dark-stark.yaml | 49 + themes/zenbones-forestbones-dark-warm.yaml | 49 + themes/zenbones-forestbones-dark.yaml | 49 + themes/zenbones-forestbones-light-bright.yaml | 49 + themes/zenbones-forestbones-light-dim.yaml | 49 + themes/zenbones-forestbones-light.yaml | 49 + themes/zenbones-kanagawabones-dark-stark.yaml | 49 + themes/zenbones-kanagawabones-dark-warm.yaml | 49 + themes/zenbones-kanagawabones-dark.yaml | 49 + themes/zenbones-light-bright.yaml | 49 + themes/zenbones-light-dim.yaml | 49 + themes/zenbones-light.yaml | 49 + themes/zenbones-neobones-dark-stark.yaml | 49 + themes/zenbones-neobones-dark-warm.yaml | 49 + themes/zenbones-neobones-dark.yaml | 49 + themes/zenbones-neobones-light-bright.yaml | 49 + themes/zenbones-neobones-light-dim.yaml | 49 + themes/zenbones-neobones-light.yaml | 49 + themes/zenbones-nordbones-dark-stark.yaml | 49 + themes/zenbones-nordbones-dark-warm.yaml | 49 + themes/zenbones-nordbones-dark.yaml | 49 + themes/zenbones-rosebones-dark-stark.yaml | 49 + themes/zenbones-rosebones-dark-warm.yaml | 49 + themes/zenbones-rosebones-dark.yaml | 49 + themes/zenbones-rosebones-light-bright.yaml | 49 + themes/zenbones-rosebones-light-dim.yaml | 49 + themes/zenbones-rosebones-light.yaml | 49 + themes/zenbones-seoulbones-dark-stark.yaml | 49 + themes/zenbones-seoulbones-dark-warm.yaml | 49 + themes/zenbones-seoulbones-dark.yaml | 49 + themes/zenbones-seoulbones-light-bright.yaml | 49 + themes/zenbones-seoulbones-light-dim.yaml | 49 + themes/zenbones-seoulbones-light.yaml | 49 + themes/zenbones-tokyobones-dark-stark.yaml | 49 + themes/zenbones-tokyobones-dark-warm.yaml | 49 + themes/zenbones-tokyobones-dark.yaml | 49 + themes/zenbones-tokyobones-light-bright.yaml | 49 + themes/zenbones-tokyobones-light-dim.yaml | 49 + themes/zenbones-tokyobones-light.yaml | 49 + themes/zenbones-vimbones-light-bright.yaml | 49 + themes/zenbones-vimbones-light-dim.yaml | 49 + themes/zenbones-vimbones-light.yaml | 49 + themes/zenbones-zenburned-dark-stark.yaml | 49 + themes/zenbones-zenburned-dark-warm.yaml | 49 + themes/zenbones-zenburned-dark.yaml | 49 + themes/zenbones-zenwritten-dark-stark.yaml | 49 + themes/zenbones-zenwritten-dark-warm.yaml | 49 + themes/zenbones-zenwritten-dark.yaml | 49 + themes/zenbones-zenwritten-light-bright.yaml | 49 + themes/zenbones-zenwritten-light-dim.yaml | 49 + themes/zenbones-zenwritten-light.yaml | 49 + ...book-ux534ftc-white-gold-v1-full-dark.yaml | 49 + .../zenbook-ux534ftc-white-gold-v2-1-95.yaml | 49 + themes/zenburn.yaml | 49 + themes/zene-dark-theme.yaml | 49 + themes/zeneth.yaml | 49 + themes/zenflow-noir.yaml | 49 + themes/zenith-aurora.yaml | 49 + themes/zenith-dawn.yaml | 49 + themes/zenith-dusk.yaml | 49 + themes/zenith-forest.yaml | 49 + themes/zenith-midnight.yaml | 49 + themes/zenith-neutral.yaml | 49 + themes/zenith-ocean.yaml | 49 + themes/zenith-ros.yaml | 49 + themes/zenith-zen.yaml | 49 + themes/zenith.yaml | 49 + themes/zenitria-amoled.yaml | 49 + themes/zenml.yaml | 49 + themes/zero-s-solarized.yaml | 49 + themes/zero-wip.yaml | 49 + themes/zeus-turquoise.yaml | 49 + themes/zeus-yelo.yaml | 49 + themes/zhangpengtao-black.yaml | 49 + themes/zhe-qi.yaml | 49 + themes/zhongli.yaml | 49 + themes/zhxo-lt.yaml | 49 + themes/zhxo-red-experimental.yaml | 49 + themes/zhxo-st.yaml | 49 + themes/zhxo-yll.yaml | 49 + themes/zinc.yaml | 49 + themes/zokugun-obsidium.yaml | 49 + themes/zordon-colors.yaml | 49 + themes/zoren-breeze.yaml | 49 + themes/ztheme.yaml | 49 + themes/ztok.yaml | 49 + themes/zunda-dark.yaml | 49 + themes/zux-purple-minimal.yaml | 49 + themes/zwel.yaml | 49 + themes/zxxn.yaml | 49 + themes/zygomatic-blue.yaml | 49 + themes/zyrotec.yaml | 49 + themes/zzhtheme-dark.yaml | 49 + themes/zzhtheme-light.yaml | 49 + 6875 files changed, 343759 insertions(+) create mode 100644 themes/.yaml create mode 100644 themes/07-dark.yaml create mode 100644 themes/07-light.yaml create mode 100644 themes/0a515-dark.yaml create mode 100644 themes/0x96f-theme.yaml create mode 100644 themes/1.yaml create mode 100644 themes/10x-dark-theme.yaml create mode 100644 themes/111-theme.yaml create mode 100644 themes/1977.yaml create mode 100644 themes/1989.yaml create mode 100644 themes/19th-century.yaml create mode 100644 themes/1dark-poncho-hc.yaml create mode 100644 themes/1mm-dracula.yaml create mode 100644 themes/2-colors.yaml create mode 100644 themes/2077.yaml create mode 100644 themes/24.yaml create mode 100644 themes/2am.yaml create mode 100644 themes/365-6-coder-theme.yaml create mode 100644 themes/365-day-october-dark.yaml create mode 100644 themes/3xay.yaml create mode 100644 themes/4-colours.yaml create mode 100644 themes/404-flat.yaml create mode 100644 themes/42nd.yaml create mode 100644 themes/4am-session-aqua.yaml create mode 100644 themes/4am-session-blue.yaml create mode 100644 themes/4am-session-green.yaml create mode 100644 themes/4am-session-orange.yaml create mode 100644 themes/4am-session-red.yaml create mode 100644 themes/4am-session-yellow.yaml create mode 100644 themes/6szn.yaml create mode 100644 themes/7lou-theme.yaml create mode 100644 themes/8-bit-dark.yaml create mode 100644 themes/8-bit-light-high-contrast.yaml create mode 100644 themes/8-bit-light.yaml create mode 100644 themes/8-bit-theme.yaml create mode 100644 themes/80-neon-vibes-fluor.yaml create mode 100644 themes/80-neon-vibes.yaml create mode 100644 themes/808s-heartbreak-theme.yaml create mode 100644 themes/8v.yaml create mode 100644 themes/8x8-dark-fork.yaml create mode 100644 themes/8x8-darker.yaml create mode 100644 themes/9-way-ticket.yaml create mode 100644 themes/90s-digital-dawning.yaml create mode 100644 themes/a-2-theme.yaml create mode 100644 themes/a-cup-of-coffee.yaml create mode 100644 themes/a-github-dark-dimmed-1-red.yaml create mode 100644 themes/a-github-dark-dimmed-2-orange.yaml create mode 100644 themes/a-github-dark-dimmed-3-green.yaml create mode 100644 themes/a-github-dark-dimmed-4-blue.yaml create mode 100644 themes/a-github-dark-dimmed-5-purple.yaml create mode 100644 themes/a-github-dark-dimmed-brown.yaml create mode 100644 themes/a-github-dark-dimmed-muted.yaml create mode 100644 themes/a-github-dark-dimmed-vampire.yaml create mode 100644 themes/a-github-dark-high-contrast-1-red.yaml create mode 100644 themes/a-github-dark-high-contrast-2-orange.yaml create mode 100644 themes/a-github-dark-high-contrast-3-green.yaml create mode 100644 themes/a-github-dark-high-contrast-4-blue.yaml create mode 100644 themes/a-github-dark-high-contrast-5-purple.yaml create mode 100644 themes/a-github-dark-muted.yaml create mode 100644 themes/a-github-dark-vampire.yaml create mode 100644 themes/a-github-light-1-red.yaml create mode 100644 themes/a-github-light-2-orange.yaml create mode 100644 themes/a-github-light-3-green.yaml create mode 100644 themes/a-github-light-4-blue.yaml create mode 100644 themes/a-github-light-5-purple.yaml create mode 100644 themes/a-green-cat-dimmed.yaml create mode 100644 themes/a-green-cat-v2.yaml create mode 100644 themes/aauu.yaml create mode 100644 themes/ab-dark.yaml create mode 100644 themes/abcdef.yaml create mode 100644 themes/abe-land.yaml create mode 100644 themes/abissal.yaml create mode 100644 themes/aboc.yaml create mode 100644 themes/abolkog-dark.yaml create mode 100644 themes/abolkog-light.yaml create mode 100644 themes/abraham.yaml create mode 100644 themes/absent-contrast.yaml create mode 100644 themes/absent-light.yaml create mode 100644 themes/absent.yaml create mode 100644 themes/abstract-mh.yaml create mode 100644 themes/abyskai.yaml create mode 100644 themes/abyss.yaml create mode 100644 themes/acario.yaml create mode 100644 themes/acekaizen-calmly-dark.yaml create mode 100644 themes/acequartz.yaml create mode 100644 themes/aclear-dark.yaml create mode 100644 themes/acme.yaml create mode 100644 themes/aconitum-clean.yaml create mode 100644 themes/acs-cozy-dark.yaml create mode 100644 themes/adapt-dark.yaml create mode 100644 themes/adark.yaml create mode 100644 themes/adech-theme-legacy.yaml create mode 100644 themes/adech-theme-superior.yaml create mode 100644 themes/adeol.yaml create mode 100644 themes/adey-coder-deep-dark.yaml create mode 100644 themes/adey-coder.yaml create mode 100644 themes/adonis.yaml create mode 100644 themes/adrift.yaml create mode 100644 themes/advancedbat.yaml create mode 100644 themes/aelmouny11-theme.yaml create mode 100644 themes/aeridia.yaml create mode 100644 themes/aesir-theme.yaml create mode 100644 themes/aesthetic-dark.yaml create mode 100644 themes/aesthetic.yaml create mode 100644 themes/aether-abyss.yaml create mode 100644 themes/aether-abyssal.yaml create mode 100644 themes/aether-arctic.yaml create mode 100644 themes/aether-atlantis.yaml create mode 100644 themes/aether-aurora.yaml create mode 100644 themes/aether-borealis.yaml create mode 100644 themes/aether-carbon.yaml create mode 100644 themes/aether-clarity.yaml create mode 100644 themes/aether-coffee-dark.yaml create mode 100644 themes/aether-coffee.yaml create mode 100644 themes/aether-cosmos.yaml create mode 100644 themes/aether-dark-space.yaml create mode 100644 themes/aether-dark.yaml create mode 100644 themes/aether-dawn.yaml create mode 100644 themes/aether-deep-ocean.yaml create mode 100644 themes/aether-depths.yaml create mode 100644 themes/aether-dusk.yaml create mode 100644 themes/aether-emerald.yaml create mode 100644 themes/aether-forest.yaml create mode 100644 themes/aether-glass.yaml create mode 100644 themes/aether-light.yaml create mode 100644 themes/aether-mariana.yaml create mode 100644 themes/aether-matrix.yaml create mode 100644 themes/aether-midnight.yaml create mode 100644 themes/aether-nautilus.yaml create mode 100644 themes/aether-nebula.yaml create mode 100644 themes/aether-neon.yaml create mode 100644 themes/aether-neptune.yaml create mode 100644 themes/aether-oceanic.yaml create mode 100644 themes/aether-quantum.yaml create mode 100644 themes/aether-reef.yaml create mode 100644 themes/aether-stellar.yaml create mode 100644 themes/aether-tempest.yaml create mode 100644 themes/aether-tidal.yaml create mode 100644 themes/aether-trench-contrast.yaml create mode 100644 themes/aether-twilight.yaml create mode 100644 themes/aether-void.yaml create mode 100644 themes/aether-zen.yaml create mode 100644 themes/aether.yaml create mode 100644 themes/aetherglow.yaml create mode 100644 themes/afternoon-delight-subtle.yaml create mode 100644 themes/afterpurple.yaml create mode 100644 themes/agathist-dark.yaml create mode 100644 themes/agen-theme.yaml create mode 100644 themes/ahoy-theme.yaml create mode 100644 themes/ahroun.yaml create mode 100644 themes/aka-kuro-light.yaml create mode 100644 themes/akagami-dark.yaml create mode 100644 themes/akagami-light.yaml create mode 100644 themes/akari-dawn.yaml create mode 100644 themes/akari-night.yaml create mode 100644 themes/akihabara.yaml create mode 100644 themes/ako-theme.yaml create mode 100644 themes/aksin.yaml create mode 100644 themes/akumanomi-theme.yaml create mode 100644 themes/akurdor.yaml create mode 100644 themes/alabaster-dark.yaml create mode 100644 themes/alchemist-s-orchid-dark.yaml create mode 100644 themes/alchemist-s-orchid-light.yaml create mode 100644 themes/alchemist-s-orchid-sepia.yaml create mode 100644 themes/alchemy-theme.yaml create mode 100644 themes/aldrico-s-gruvbox.yaml create mode 100644 themes/aldrico-s.yaml create mode 100644 themes/alec-teal-theme.yaml create mode 100644 themes/alien-blood.yaml create mode 100644 themes/alien-terminal-nostromo-amber.yaml create mode 100644 themes/alien-terminal-nostromo-green.yaml create mode 100644 themes/alien-terminal-sevastopol-link.yaml create mode 100644 themes/alignment-darker-italic.yaml create mode 100644 themes/alignment-italic.yaml create mode 100644 themes/alive-dark-theme.yaml create mode 100644 themes/all-black.yaml create mode 100644 themes/all-blue.yaml create mode 100644 themes/all-nighter-theme.yaml create mode 100644 themes/alligator-light.yaml create mode 100644 themes/alligator-solarized-dark.yaml create mode 100644 themes/alligator-solarized-light.yaml create mode 100644 themes/allomancer.yaml create mode 100644 themes/allure-contrast.yaml create mode 100644 themes/allure-light.yaml create mode 100644 themes/allure.yaml create mode 100644 themes/alma-sakura-theme.yaml create mode 100644 themes/almond-cream.yaml create mode 100644 themes/aloe.yaml create mode 100644 themes/alpha.yaml create mode 100644 themes/alpine-warm.yaml create mode 100644 themes/alpine.yaml create mode 100644 themes/altearn.yaml create mode 100644 themes/altered-matter-dopamin-owl.yaml create mode 100644 themes/alternight.yaml create mode 100644 themes/altin-s-love-symphony.yaml create mode 100644 themes/alucard-sotn.yaml create mode 100644 themes/alx-theme-classic.yaml create mode 100644 themes/alx-theme-normal.yaml create mode 100644 themes/amadeus-dark-cobalt.yaml create mode 100644 themes/amadeus-dark-pastel.yaml create mode 100644 themes/amadeus-dark.yaml create mode 100644 themes/amaranth-red-eerie-black-fork.yaml create mode 100644 themes/amazonfrog.yaml create mode 100644 themes/ambar-for-vscode.yaml create mode 100644 themes/amber-blue-light.yaml create mode 100644 themes/amber-blue.yaml create mode 100644 themes/amber-color-theme.yaml create mode 100644 themes/ambient.yaml create mode 100644 themes/amethyst-dreams.yaml create mode 100644 themes/amethyst-kiss-dark-amethyst-mode.yaml create mode 100644 themes/amethyst-kiss-light-amethyst-mode.yaml create mode 100644 themes/amethyst-theme.yaml create mode 100644 themes/amoled-dark-theme.yaml create mode 100644 themes/amoledtest-fork-fork.yaml create mode 100644 themes/amora.yaml create mode 100644 themes/amozonia.yaml create mode 100644 themes/amp-dark.yaml create mode 100644 themes/amp-light.yaml create mode 100644 themes/an-bis.yaml create mode 100644 themes/anakmun.yaml create mode 100644 themes/analog-dream-beige-terminal.yaml create mode 100644 themes/analog-dream-magnetic-night.yaml create mode 100644 themes/anasdev.yaml create mode 100644 themes/anastasia.yaml create mode 100644 themes/andromeda-custom.yaml create mode 100644 themes/andromeda-light-italic-bordered.yaml create mode 100644 themes/andromeda-zed.yaml create mode 100644 themes/andromeda.yaml create mode 100644 themes/anemones.yaml create mode 100644 themes/angelnature2.yaml create mode 100644 themes/angrboda-dark.yaml create mode 100644 themes/angrboda-light.yaml create mode 100644 themes/angular-dark-theme.yaml create mode 100644 themes/animatrix.yaml create mode 100644 themes/animetheme.yaml create mode 100644 themes/anisochromatic.yaml create mode 100644 themes/ano-theme-dark.yaml create mode 100644 themes/anoldhope.yaml create mode 100644 themes/anquyx-fork.yaml create mode 100644 themes/anthropic-dark.yaml create mode 100644 themes/anthropic-light.yaml create mode 100644 themes/anthropic.yaml create mode 100644 themes/anthropocene.yaml create mode 100644 themes/anti-glare-moonlit.yaml create mode 100644 themes/anti-glare-nebula.yaml create mode 100644 themes/anti-glare-official.yaml create mode 100644 themes/anti-gravity-pink.yaml create mode 100644 themes/antidote.yaml create mode 100644 themes/antimaterial.yaml create mode 100644 themes/anubis-dark-theme.yaml create mode 100644 themes/anubis-dark.yaml create mode 100644 themes/anubis-light.yaml create mode 100644 themes/anufemist-dark.yaml create mode 100644 themes/anya.yaml create mode 100644 themes/apathy-experimental.yaml create mode 100644 themes/apathy.yaml create mode 100644 themes/apcodespaces.yaml create mode 100644 themes/apex.yaml create mode 100644 themes/apollo-dark.yaml create mode 100644 themes/apollo-light.yaml create mode 100644 themes/apparently-purple.yaml create mode 100644 themes/apple-dancheong-minimal-light.yaml create mode 100644 themes/apprentice.yaml create mode 100644 themes/april-dark-theme.yaml create mode 100644 themes/aquamain.yaml create mode 100644 themes/aquanova.yaml create mode 100644 themes/arabian-nights.yaml create mode 100644 themes/arabian-theme.yaml create mode 100644 themes/arc-dark.yaml create mode 100644 themes/arcadia-theme-dark.yaml create mode 100644 themes/arcadia-theme-storm.yaml create mode 100644 themes/arcaea.yaml create mode 100644 themes/archangel-dusk.yaml create mode 100644 themes/archangel.yaml create mode 100644 themes/archie-dark-color-theme.yaml create mode 100644 themes/architect-dark-fork.yaml create mode 100644 themes/arctic-depth.yaml create mode 100644 themes/arctic-night.yaml create mode 100644 themes/arctis-dark.yaml create mode 100644 themes/arctis-high-contrast.yaml create mode 100644 themes/arctis-light.yaml create mode 100644 themes/arctis-moon.yaml create mode 100644 themes/arctis-night.yaml create mode 100644 themes/arctis.yaml create mode 100644 themes/ares-tron-legacy.yaml create mode 100644 themes/arete-theme.yaml create mode 100644 themes/argonaut.yaml create mode 100644 themes/argprocolor.yaml create mode 100644 themes/ariake-sands.yaml create mode 100644 themes/ariake-sun.yaml create mode 100644 themes/aries.yaml create mode 100644 themes/arkaios-theme.yaml create mode 100644 themes/arkinetictheme.yaml create mode 100644 themes/arkku.yaml create mode 100644 themes/armada.yaml create mode 100644 themes/aroace-high-contrast.yaml create mode 100644 themes/aroace-light.yaml create mode 100644 themes/aroace.yaml create mode 100644 themes/aromantic.yaml create mode 100644 themes/arrakis-day.yaml create mode 100644 themes/arrakis-night.yaml create mode 100644 themes/arrpee.yaml create mode 100644 themes/arstotzka-contrast.yaml create mode 100644 themes/arstotzka-light.yaml create mode 100644 themes/arstotzka.yaml create mode 100644 themes/artinpixel-turquoise-theme-dark.yaml create mode 100644 themes/artinpixel-turquoise-theme.yaml create mode 100644 themes/artisan-theme.yaml create mode 100644 themes/artlab-dark.yaml create mode 100644 themes/artlab-light.yaml create mode 100644 themes/arunika.yaml create mode 100644 themes/arwinux-galaxy.yaml create mode 100644 themes/as-theme.yaml create mode 100644 themes/asdfasdfuntitled.yaml create mode 100644 themes/asexual.yaml create mode 100644 themes/asgtheme.yaml create mode 100644 themes/ash-ember.yaml create mode 100644 themes/ash-lumen-light.yaml create mode 100644 themes/ash-lumen.yaml create mode 100644 themes/ash.yaml create mode 100644 themes/ashao-color-theme.yaml create mode 100644 themes/ashen-darker.yaml create mode 100644 themes/ashen.yaml create mode 100644 themes/ashineui.yaml create mode 100644 themes/aspiesoft-intellij-theme.yaml create mode 100644 themes/aspire-core.yaml create mode 100644 themes/aspire-dark.yaml create mode 100644 themes/aspire-light.yaml create mode 100644 themes/assam-tea-gardens.yaml create mode 100644 themes/asteria.yaml create mode 100644 themes/astigmatism-theme.yaml create mode 100644 themes/astra-themedark.yaml create mode 100644 themes/astra.yaml create mode 100644 themes/astral-theme.yaml create mode 100644 themes/astro-dark.yaml create mode 100644 themes/astro-kanagawa.yaml create mode 100644 themes/astro-light.yaml create mode 100644 themes/astrofunk-dark.yaml create mode 100644 themes/astronaut.yaml create mode 100644 themes/astrus-midnight.yaml create mode 100644 themes/astrus-nebula.yaml create mode 100644 themes/astrus-standard.yaml create mode 100644 themes/asuka-theme-light.yaml create mode 100644 themes/asuka-theme.yaml create mode 100644 themes/athabasca-light.yaml create mode 100644 themes/athabasca.yaml create mode 100644 themes/atilio.yaml create mode 100644 themes/atlantu.yaml create mode 100644 themes/atom-homepage-fork.yaml create mode 100644 themes/atom-material-theme.yaml create mode 100644 themes/atom-one-dark-coal.yaml create mode 100644 themes/atom-one-dark-cyan.yaml create mode 100644 themes/atom-one-light-cyan.yaml create mode 100644 themes/atom-one-light-modern.yaml create mode 100644 themes/atomax-colorblind-light.yaml create mode 100644 themes/atomax-dark-dimmed.yaml create mode 100644 themes/atomax-dark-tritanopia.yaml create mode 100644 themes/atomax-dark.yaml create mode 100644 themes/atomax-high-contrast.yaml create mode 100644 themes/atomax-light-tritanopia.yaml create mode 100644 themes/atomax-light.yaml create mode 100644 themes/atomicc.yaml create mode 100644 themes/atomify.yaml create mode 100644 themes/atomized-theme.yaml create mode 100644 themes/atomizer-dark-island.yaml create mode 100644 themes/attack-on-titan-eren-s-determination.yaml create mode 100644 themes/attentio-flow.yaml create mode 100644 themes/attentio-pulse.yaml create mode 100644 themes/attica.yaml create mode 100644 themes/aube.yaml create mode 100644 themes/august-ariake-dark.yaml create mode 100644 themes/august-arstotzka-2-darker.yaml create mode 100644 themes/august-arstotzka-2.yaml create mode 100644 themes/august-arstotzka-lighter.yaml create mode 100644 themes/august-beardedtheme-oceanic-reversed.yaml create mode 100644 themes/august-beardedtheme-surprising-blueberry.yaml create mode 100644 themes/august-catppuccin.yaml create mode 100644 themes/august-city-lights-darker.yaml create mode 100644 themes/august-city-lights.yaml create mode 100644 themes/august-dark-theme.yaml create mode 100644 themes/august-drawbridge-darker.yaml create mode 100644 themes/august-drawbridge.yaml create mode 100644 themes/august-gruvbox-darker.yaml create mode 100644 themes/august-kanagawa-darker.yaml create mode 100644 themes/august-material-palenight.yaml create mode 100644 themes/august-night-owl-darker.yaml create mode 100644 themes/august-night-owl.yaml create mode 100644 themes/august-nord-darker.yaml create mode 100644 themes/august-nord.yaml create mode 100644 themes/august-radical-2.yaml create mode 100644 themes/august-radical.yaml create mode 100644 themes/august-ros-pine-moon.yaml create mode 100644 themes/august-ros-pine.yaml create mode 100644 themes/aura-dark-soft-text.yaml create mode 100644 themes/aura-dark.yaml create mode 100644 themes/aura-dracula-spirit-soft.yaml create mode 100644 themes/aura-dracula-spirit-synthwave.yaml create mode 100644 themes/aura-dracula-spirit.yaml create mode 100644 themes/aura-soft-dark-soft-text.yaml create mode 100644 themes/aura-soft-dark.yaml create mode 100644 themes/aurbis-dark.yaml create mode 100644 themes/aurelconstellation.yaml create mode 100644 themes/aurora-borealis-theme-dark.yaml create mode 100644 themes/aurora-borealis-theme.yaml create mode 100644 themes/aurora.yaml create mode 100644 themes/aurorabloom.yaml create mode 100644 themes/aurorain.yaml create mode 100644 themes/aurorasynth-dark.yaml create mode 100644 themes/aurorasynth-light.yaml create mode 100644 themes/australian-food-fibre-dark.yaml create mode 100644 themes/australian-food-fibre-light.yaml create mode 100644 themes/autumn-fork-contrast.yaml create mode 100644 themes/autumn-fork.yaml create mode 100644 themes/autumn-highlighter-syntax.yaml create mode 100644 themes/autumn.yaml create mode 100644 themes/awesome-dark.yaml create mode 100644 themes/awesome-theme.yaml create mode 100644 themes/awesome-vscode-dark.yaml create mode 100644 themes/awork-dark.yaml create mode 100644 themes/axiomatic-dark.yaml create mode 100644 themes/axiomatic-light.yaml create mode 100644 themes/axis-ultra-dark.yaml create mode 100644 themes/ayame.yaml create mode 100644 themes/ayanokoji.yaml create mode 100644 themes/aylin.yaml create mode 100644 themes/ayu-enhanced.yaml create mode 100644 themes/ayu-owl.yaml create mode 100644 themes/ayu.yaml create mode 100644 themes/ayudark.yaml create mode 100644 themes/ayuloco-dark-bordered.yaml create mode 100644 themes/ayuloco-dark.yaml create mode 100644 themes/ayuloco-mirage-bordered.yaml create mode 100644 themes/ayuloco-mirage.yaml create mode 100644 themes/ayutokyo-color-theme.yaml create mode 100644 themes/ayyour.yaml create mode 100644 themes/az0ox-theme-shadesofblue.yaml create mode 100644 themes/azathoth.yaml create mode 100644 themes/azeny-cutimaru.yaml create mode 100644 themes/azeny-inveny.yaml create mode 100644 themes/azeny-okano.yaml create mode 100644 themes/azeny.yaml create mode 100644 themes/azerite-dark-soft.yaml create mode 100644 themes/azerite-dark.yaml create mode 100644 themes/azul.yaml create mode 100644 themes/azure-contrast.yaml create mode 100644 themes/azure-dark-teal.yaml create mode 100644 themes/azure-iris-dark.yaml create mode 100644 themes/azure-iris-light.yaml create mode 100644 themes/azure-light.yaml create mode 100644 themes/azure-noir.yaml create mode 100644 themes/azure.yaml create mode 100644 themes/b-nt.yaml create mode 100644 themes/b150-dark.yaml create mode 100644 themes/b150-light.yaml create mode 100644 themes/b2b-edge-light.yaml create mode 100644 themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml create mode 100644 themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml create mode 100644 themes/backspace-dark-glass.yaml create mode 100644 themes/backspace-dark-vibe-coder.yaml create mode 100644 themes/backspace-dark-winter.yaml create mode 100644 themes/backspace-dark.yaml create mode 100644 themes/backspace-light.yaml create mode 100644 themes/baculum-color-lightup-comment.yaml create mode 100644 themes/baculum-color-minimal-2.yaml create mode 100644 themes/baculum-color-minimal-vantablack.yaml create mode 100644 themes/baculum-dark-color.yaml create mode 100644 themes/badbird.yaml create mode 100644 themes/baig.yaml create mode 100644 themes/baitul-hikmah-professional.yaml create mode 100644 themes/baiyuechu.yaml create mode 100644 themes/bakaneo.yaml create mode 100644 themes/balance-pink-colorblind-compassion-focus.yaml create mode 100644 themes/balance-pink-compassion-focus.yaml create mode 100644 themes/balance-pink-high-contrast-compassion-focus.yaml create mode 100644 themes/balance-pink-light-compassion-focus.yaml create mode 100644 themes/ballerini-theme.yaml create mode 100644 themes/bam.yaml create mode 100644 themes/bamboo-green.yaml create mode 100644 themes/bamboo.yaml create mode 100644 themes/ban-light.yaml create mode 100644 themes/ban-night.yaml create mode 100644 themes/ban-typhoon.yaml create mode 100644 themes/bananalight.yaml create mode 100644 themes/bandmeup.yaml create mode 100644 themes/banner-contrast.yaml create mode 100644 themes/banner-light.yaml create mode 100644 themes/banner.yaml create mode 100644 themes/barbenheimer-bunker.yaml create mode 100644 themes/barbenheimer-dreamhouse.yaml create mode 100644 themes/barbenheimer-nuclear-sunrise.yaml create mode 100644 themes/barbie-light.yaml create mode 100644 themes/barbie-theme.yaml create mode 100644 themes/barbie.yaml create mode 100644 themes/barlume.yaml create mode 100644 themes/barney-pro.yaml create mode 100644 themes/barstrata.yaml create mode 100644 themes/base-color-theme.yaml create mode 100644 themes/base-minor-dark-hard.yaml create mode 100644 themes/base-minor-dark-soft.yaml create mode 100644 themes/base-minor-soft.yaml create mode 100644 themes/base-minor.yaml create mode 100644 themes/base16-3024-dark.yaml create mode 100644 themes/base16-3024-light.yaml create mode 100644 themes/base16-apathy-dark.yaml create mode 100644 themes/base16-apathy-light.yaml create mode 100644 themes/base16-ashes-dark.yaml create mode 100644 themes/base16-ashes-light.yaml create mode 100644 themes/base16-bespin-dark.yaml create mode 100644 themes/base16-bespin-light.yaml create mode 100644 themes/base16-brewer-dark.yaml create mode 100644 themes/base16-brewer-light.yaml create mode 100644 themes/base16-bright-dark.yaml create mode 100644 themes/base16-bright-light.yaml create mode 100644 themes/base16-codeschool-dark.yaml create mode 100644 themes/base16-codeschool-light.yaml create mode 100644 themes/base16-default-dark.yaml create mode 100644 themes/base16-default-light.yaml create mode 100644 themes/base16-eighties-dark.yaml create mode 100644 themes/base16-eighties-light.yaml create mode 100644 themes/base16-embers-dark.yaml create mode 100644 themes/base16-embers-light.yaml create mode 100644 themes/base16-flat-dark.yaml create mode 100644 themes/base16-flat-light.yaml create mode 100644 themes/base16-google-dark.yaml create mode 100644 themes/base16-google-light.yaml create mode 100644 themes/base16-grayscale-dark.yaml create mode 100644 themes/base16-grayscale-light.yaml create mode 100644 themes/base16-green-screen-dark.yaml create mode 100644 themes/base16-green-screen-light.yaml create mode 100644 themes/base16-harmonic16-dark.yaml create mode 100644 themes/base16-harmonic16-light.yaml create mode 100644 themes/base16-isotope-dark.yaml create mode 100644 themes/base16-isotope-light.yaml create mode 100644 themes/base16-marrakesh-dark.yaml create mode 100644 themes/base16-marrakesh-light.yaml create mode 100644 themes/base16-mocha-dark.yaml create mode 100644 themes/base16-mocha-light.yaml create mode 100644 themes/base16-monokai-dark.yaml create mode 100644 themes/base16-monokai-light.yaml create mode 100644 themes/base16-ocean-dark.yaml create mode 100644 themes/base16-ocean-light.yaml create mode 100644 themes/base16-oceanicnext-dark.yaml create mode 100644 themes/base16-oceanicnext-light.yaml create mode 100644 themes/base16-paraiso-dark.yaml create mode 100644 themes/base16-paraiso-light.yaml create mode 100644 themes/base16-pop-dark.yaml create mode 100644 themes/base16-pop-light.yaml create mode 100644 themes/base16-railscasts-dark.yaml create mode 100644 themes/base16-railscasts-light.yaml create mode 100644 themes/base16-shapeshifter-dark.yaml create mode 100644 themes/base16-shapeshifter-light.yaml create mode 100644 themes/base16-solarized-dark.yaml create mode 100644 themes/base16-solarized-light.yaml create mode 100644 themes/base16-summerfruit-dark.yaml create mode 100644 themes/base16-summerfruit-light.yaml create mode 100644 themes/base16-tomorrow-dark.yaml create mode 100644 themes/base16-tomorrow-light.yaml create mode 100644 themes/base16-twilight-dark.yaml create mode 100644 themes/base16-twilight-light.yaml create mode 100644 themes/base16-unikitty-dark.yaml create mode 100644 themes/base16-unikitty-light.yaml create mode 100644 themes/base16-woodland-dark.yaml create mode 100644 themes/basic-black.yaml create mode 100644 themes/basic-blue.yaml create mode 100644 themes/basterdized.yaml create mode 100644 themes/bat.yaml create mode 100644 themes/batsignal-light-color-theme.yaml create mode 100644 themes/bazmatheme.yaml create mode 100644 themes/bazutya.yaml create mode 100644 themes/bbbalabamasuntan.yaml create mode 100644 themes/bbbdark.yaml create mode 100644 themes/bbbhotdogstand.yaml create mode 100644 themes/bbogdanov-dark.yaml create mode 100644 themes/bbogdanov-light.yaml create mode 100644 themes/bc-theme.yaml create mode 100644 themes/beach-vibes.yaml create mode 100644 themes/beacrisg.yaml create mode 100644 themes/becolors.yaml create mode 100644 themes/bedarx-obsidian.yaml create mode 100644 themes/bedarx-onyx.yaml create mode 100644 themes/bedarx-pearl.yaml create mode 100644 themes/bedarx-sapphire.yaml create mode 100644 themes/bee-theme-color-theme-tow.yaml create mode 100644 themes/bee-theme.yaml create mode 100644 themes/beerish.yaml create mode 100644 themes/behavai-vitesse.yaml create mode 100644 themes/behavai.yaml create mode 100644 themes/beloco-italic.yaml create mode 100644 themes/benimaru.yaml create mode 100644 themes/benlatheme-azure.yaml create mode 100644 themes/benpai-theme-dark.yaml create mode 100644 themes/berg.yaml create mode 100644 themes/berkeley.yaml create mode 100644 themes/bernadoque-theme.yaml create mode 100644 themes/berry-blast-theme.yaml create mode 100644 themes/berry-latte-light.yaml create mode 100644 themes/bersk.yaml create mode 100644 themes/beru.yaml create mode 100644 themes/best-themes-monokai-next.yaml create mode 100644 themes/best-themes-one-monokai.yaml create mode 100644 themes/better-coding-dark.yaml create mode 100644 themes/better-light.yaml create mode 100644 themes/better-oceanic-next.yaml create mode 100644 themes/better-selenized-dark.yaml create mode 100644 themes/better-solarized-dark-italic.yaml create mode 100644 themes/better-solarized-dark.yaml create mode 100644 themes/betu-dark.yaml create mode 100644 themes/betu-light.yaml create mode 100644 themes/bhwm715-even-darker.yaml create mode 100644 themes/bianconero.yaml create mode 100644 themes/bibauporto-gray.yaml create mode 100644 themes/bibauporto-simple.yaml create mode 100644 themes/biddeew.yaml create mode 100644 themes/bifr-st.yaml create mode 100644 themes/bigfish.yaml create mode 100644 themes/bigsur-gtk-theme-dark-blue.yaml create mode 100644 themes/bini-theme.yaml create mode 100644 themes/bird.yaml create mode 100644 themes/bit-intense.yaml create mode 100644 themes/bit-soft.yaml create mode 100644 themes/bit.yaml create mode 100644 themes/bitpurp-dark.yaml create mode 100644 themes/bits-theme-green-light.yaml create mode 100644 themes/bits-theme-green.yaml create mode 100644 themes/bits-theme-light.yaml create mode 100644 themes/bits-theme-purple-light.yaml create mode 100644 themes/bits-theme-purple.yaml create mode 100644 themes/bits-theme.yaml create mode 100644 themes/bl-nk.yaml create mode 100644 themes/black-and-red.yaml create mode 100644 themes/black-back-dark-e-theme.yaml create mode 100644 themes/black-color-theme.yaml create mode 100644 themes/black-ocean.yaml create mode 100644 themes/black-on-gray.yaml create mode 100644 themes/black-pink-rose.yaml create mode 100644 themes/black-punk-77.yaml create mode 100644 themes/black-purple.yaml create mode 100644 themes/black-rose.yaml create mode 100644 themes/black-theme.yaml create mode 100644 themes/blackai-theme.yaml create mode 100644 themes/blackamp.yaml create mode 100644 themes/blackberry.yaml create mode 100644 themes/blackbird-dusk.yaml create mode 100644 themes/blackbird-midnight.yaml create mode 100644 themes/blackboard-plus.yaml create mode 100644 themes/blackcoffeedark.yaml create mode 100644 themes/blackdot.yaml create mode 100644 themes/blackhighcontrast.yaml create mode 100644 themes/blacklite.yaml create mode 100644 themes/blackout.yaml create mode 100644 themes/blackpink.yaml create mode 100644 themes/blackroulette.yaml create mode 100644 themes/blackula-theme.yaml create mode 100644 themes/blacky.yaml create mode 100644 themes/bladerunner-light.yaml create mode 100644 themes/bladerunner.yaml create mode 100644 themes/blah-dark.yaml create mode 100644 themes/blahajtheme.yaml create mode 100644 themes/blank-ghibli.yaml create mode 100644 themes/blank-monochrome.yaml create mode 100644 themes/blank-moonlight.yaml create mode 100644 themes/blank-s-theme-reborn.yaml create mode 100644 themes/blank-uchiha.yaml create mode 100644 themes/blankeos-zen-theme.yaml create mode 100644 themes/blaze-orange.yaml create mode 100644 themes/blinds-dark.yaml create mode 100644 themes/blink-contrast.yaml create mode 100644 themes/blink-light.yaml create mode 100644 themes/blink.yaml create mode 100644 themes/blip-cursor-vscode-theme.yaml create mode 100644 themes/bloody-pie.yaml create mode 100644 themes/bloom-1-1-0.yaml create mode 100644 themes/bloostring.yaml create mode 100644 themes/blossoms.yaml create mode 100644 themes/blowington.yaml create mode 100644 themes/blube-dark-light.yaml create mode 100644 themes/blue-cheese.yaml create mode 100644 themes/blue-collection.yaml create mode 100644 themes/blue-color-theme.yaml create mode 100644 themes/blue-dark-theme.yaml create mode 100644 themes/blue-day.yaml create mode 100644 themes/blue-faded.yaml create mode 100644 themes/blue-green-theme.yaml create mode 100644 themes/blue-hacker-theme.yaml create mode 100644 themes/blue-jeans.yaml create mode 100644 themes/blue-light-filter-dark.yaml create mode 100644 themes/blue-light-filter-warm-dark.yaml create mode 100644 themes/blue-light-theme.yaml create mode 100644 themes/blue-melon.yaml create mode 100644 themes/blue-moves-color-theme.yaml create mode 100644 themes/blue-moves-darker-color-theme.yaml create mode 100644 themes/blue-neon.yaml create mode 100644 themes/blue-night.yaml create mode 100644 themes/blue.yaml create mode 100644 themes/blueberry-dark-theme.yaml create mode 100644 themes/blueberry-futuristic-theme-fork.yaml create mode 100644 themes/blueberry-theme.yaml create mode 100644 themes/bluebracket-theme.yaml create mode 100644 themes/bluedark.yaml create mode 100644 themes/bluegreenspace.yaml create mode 100644 themes/bluelili-color-theme.yaml create mode 100644 themes/blueorange.yaml create mode 100644 themes/bluered-theme.yaml create mode 100644 themes/bluesea.yaml create mode 100644 themes/bluespace-s.yaml create mode 100644 themes/bluespace.yaml create mode 100644 themes/bluespexter.yaml create mode 100644 themes/bluethemepulper.yaml create mode 100644 themes/blueyonedark.yaml create mode 100644 themes/bluish.yaml create mode 100644 themes/bluloco-dark-italic.yaml create mode 100644 themes/bluloco-dark.yaml create mode 100644 themes/bluloco-light-italic.yaml create mode 100644 themes/blush-pink-enhanced-premium.yaml create mode 100644 themes/blve.yaml create mode 100644 themes/bobascheme.yaml create mode 100644 themes/bocenago-pradei.yaml create mode 100644 themes/bogem-s-night-owl.yaml create mode 100644 themes/bogster.yaml create mode 100644 themes/bohemian-dark.yaml create mode 100644 themes/bohemian-light.yaml create mode 100644 themes/bold-contrast.yaml create mode 100644 themes/bold-light.yaml create mode 100644 themes/bold.yaml create mode 100644 themes/bolsonaro-theme.yaml create mode 100644 themes/bombyx-light.yaml create mode 100644 themes/bombyx.yaml create mode 100644 themes/boo-color-theme.yaml create mode 100644 themes/boo.yaml create mode 100644 themes/boogel.yaml create mode 100644 themes/booklike.yaml create mode 100644 themes/bootstrap-dark.yaml create mode 100644 themes/bootstrap-light.yaml create mode 100644 themes/borders-blue.yaml create mode 100644 themes/borders-dark.yaml create mode 100644 themes/borders-darker.yaml create mode 100644 themes/borealis.yaml create mode 100644 themes/borealsharp.yaml create mode 100644 themes/bot2b.yaml create mode 100644 themes/botany-color-theme.yaml create mode 100644 themes/botany.yaml create mode 100644 themes/bougainvillea.yaml create mode 100644 themes/boundless.yaml create mode 100644 themes/bouquet.yaml create mode 100644 themes/boxlang-dark-neon.yaml create mode 100644 themes/boxuk-contrast.yaml create mode 100644 themes/boxuk-light.yaml create mode 100644 themes/boxuk.yaml create mode 100644 themes/brackethive-theme.yaml create mode 100644 themes/brave-contrast.yaml create mode 100644 themes/brave-light.yaml create mode 100644 themes/brave.yaml create mode 100644 themes/breath2ripoff.yaml create mode 100644 themes/breeze.yaml create mode 100644 themes/brew-theme.yaml create mode 100644 themes/brid-purple-garden-dark.yaml create mode 100644 themes/brid-purple-garden-light.yaml create mode 100644 themes/briggitehelm.yaml create mode 100644 themes/bright-colors-blue.yaml create mode 100644 themes/bright-lights.yaml create mode 100644 themes/britecore.yaml create mode 100644 themes/british-racing-green-theme.yaml create mode 100644 themes/brogrammer-plus.yaml create mode 100644 themes/broken-dreams-blue.yaml create mode 100644 themes/broken-dreams-purple.yaml create mode 100644 themes/bromium.yaml create mode 100644 themes/brownhu.yaml create mode 100644 themes/brownista.yaml create mode 100644 themes/bruno-s-wet-dream.yaml create mode 100644 themes/brutalcode.yaml create mode 100644 themes/bts-borahae.yaml create mode 100644 themes/btv-dark.yaml create mode 100644 themes/bubba-kush-v1.yaml create mode 100644 themes/bubble-theme.yaml create mode 100644 themes/bubblegum-color-theme.yaml create mode 100644 themes/bubblegum-milkshake.yaml create mode 100644 themes/bubblegum.yaml create mode 100644 themes/bubblegumtheme.yaml create mode 100644 themes/buby-color-theme.yaml create mode 100644 themes/buddha-a-super-minimal-theme-for-vscode.yaml create mode 100644 themes/budha.yaml create mode 100644 themes/budokan.yaml create mode 100644 themes/bugged-gpu.yaml create mode 100644 themes/buhtig.yaml create mode 100644 themes/bullish-theme.yaml create mode 100644 themes/bun-gothic.yaml create mode 100644 themes/burnt-chestnut.yaml create mode 100644 themes/burple-dark.yaml create mode 100644 themes/busbyvscode.yaml create mode 100644 themes/bushland.yaml create mode 100644 themes/butrin-theme.yaml create mode 100644 themes/butter-green-fork.yaml create mode 100644 themes/buttercawfee.yaml create mode 100644 themes/bynawers.yaml create mode 100644 themes/byteglow.yaml create mode 100644 themes/bytenight.yaml create mode 100644 themes/c-c-theme.yaml create mode 100644 themes/c-dracula.yaml create mode 100644 themes/c0v3r.yaml create mode 100644 themes/cabalyon-theme.yaml create mode 100644 themes/cadet-dark-gray.yaml create mode 100644 themes/cadet-medium-gray-flat.yaml create mode 100644 themes/caf-warmth.yaml create mode 100644 themes/caffe-crema-dark.yaml create mode 100644 themes/caffe-crema-light.yaml create mode 100644 themes/caffeinated-rust.yaml create mode 100644 themes/cal-4700.yaml create mode 100644 themes/calm-dark.yaml create mode 100644 themes/calm-days-sober-nights-day-no-bold-style.yaml create mode 100644 themes/calm-days-sober-nights-day-sky-no-bold-style.yaml create mode 100644 themes/calm-days-sober-nights-night-no-bold-style.yaml create mode 100644 themes/calm-days-sober-nights-night-sky-no-bold-style.yaml create mode 100644 themes/calm-down-color-theme.yaml create mode 100644 themes/calm-light.yaml create mode 100644 themes/calm-ocean.yaml create mode 100644 themes/calm-teal-colorblind-balance-clarity.yaml create mode 100644 themes/calm-teal-high-contrast-balance-clarity.yaml create mode 100644 themes/calm-teal-light-balance-clarity.yaml create mode 100644 themes/calming-coding-dark-theme.yaml create mode 100644 themes/calming-theme.yaml create mode 100644 themes/calmppuccin-frappe.yaml create mode 100644 themes/calmppuccin-latte.yaml create mode 100644 themes/calmppuccin-macchiato.yaml create mode 100644 themes/calmppuccin-mocha.yaml create mode 100644 themes/calmppuccin-nitro-cold-brew.yaml create mode 100644 themes/calmppuccin-oledppuccin.yaml create mode 100644 themes/calomnie.yaml create mode 100644 themes/campbell.yaml create mode 100644 themes/camula-moon.yaml create mode 100644 themes/camula-sun.yaml create mode 100644 themes/camula.yaml create mode 100644 themes/candle-theme.yaml create mode 100644 themes/candy-blue.yaml create mode 100644 themes/candy-pine.yaml create mode 100644 themes/candy-purple.yaml create mode 100644 themes/candy-red.yaml create mode 100644 themes/candy-shop-eclipse.yaml create mode 100644 themes/canonic-theme.yaml create mode 100644 themes/cape-town-nights.yaml create mode 100644 themes/capitola.yaml create mode 100644 themes/capy-ui.yaml create mode 100644 themes/caramel-fork.yaml create mode 100644 themes/carbon-candy-anthracite.yaml create mode 100644 themes/carbon-candy-aurora-thin-border.yaml create mode 100644 themes/carbon-candy-carbon-thin-border.yaml create mode 100644 themes/carbon-candy-dark-thin-border.yaml create mode 100644 themes/carbon-candy-obsidian-thin-border.yaml create mode 100644 themes/carbon-candy-palenight.yaml create mode 100644 themes/carbon-code-amber-dark.yaml create mode 100644 themes/carbon-code-amber-light.yaml create mode 100644 themes/carbon-code-crimson-dark.yaml create mode 100644 themes/carbon-code-crimson-light.yaml create mode 100644 themes/carbon-code-dark.yaml create mode 100644 themes/carbon-code-emerald-dark.yaml create mode 100644 themes/carbon-code-emerald-light.yaml create mode 100644 themes/carbon-code-light.yaml create mode 100644 themes/carbon-code-rose-dark.yaml create mode 100644 themes/carbon-code-rose-light.yaml create mode 100644 themes/carbon-design-system-theme.yaml create mode 100644 themes/carbon-one.yaml create mode 100644 themes/carbon-react-color-theme-maya-black.yaml create mode 100644 themes/carbon-react-color-theme-maya.yaml create mode 100644 themes/carbon-react-color-theme.yaml create mode 100644 themes/carbon.yaml create mode 100644 themes/carbonfox.yaml create mode 100644 themes/carbonight-contrast.yaml create mode 100644 themes/carbonight-dusk.yaml create mode 100644 themes/carbonight-light.yaml create mode 100644 themes/carbonight-midnight.yaml create mode 100644 themes/carbonight.yaml create mode 100644 themes/caret-light.yaml create mode 100644 themes/carex-dark.yaml create mode 100644 themes/carex-high-contrast-dark.yaml create mode 100644 themes/carex-light.yaml create mode 100644 themes/casa.yaml create mode 100644 themes/casino-royal.yaml create mode 100644 themes/cat-pink.yaml create mode 100644 themes/cat-sleep-color-theme.yaml create mode 100644 themes/catalyst-light.yaml create mode 100644 themes/catalyst.yaml create mode 100644 themes/cathaytrial.yaml create mode 100644 themes/catppuccin-dark.yaml create mode 100644 themes/catppuccin-frapp.yaml create mode 100644 themes/catppuccin-latte.yaml create mode 100644 themes/catppuccin-macchiato.yaml create mode 100644 themes/catppuccin-mocha.yaml create mode 100644 themes/catppuccin-monokai-frappe.yaml create mode 100644 themes/catppuccin-monokai-latte.yaml create mode 100644 themes/catppuccin-monokai-macchiato.yaml create mode 100644 themes/catppuccin-monokai-mocha.yaml create mode 100644 themes/catthode.yaml create mode 100644 themes/cchl-color-theme.yaml create mode 100644 themes/cebola-theme.yaml create mode 100644 themes/celadon-theme.yaml create mode 100644 themes/celestial-charm-theme.yaml create mode 100644 themes/ceo.yaml create mode 100644 themes/cerydra.yaml create mode 100644 themes/cfl-one.yaml create mode 100644 themes/chai-light.yaml create mode 100644 themes/chalk.yaml create mode 100644 themes/chalkish.yaml create mode 100644 themes/charcoal.yaml create mode 100644 themes/charli-health-dark.yaml create mode 100644 themes/charli-health-light.yaml create mode 100644 themes/chatgpt-theme.yaml create mode 100644 themes/cheese-n-all.yaml create mode 100644 themes/cheesewaffle-blue.yaml create mode 100644 themes/cheetha-green.yaml create mode 100644 themes/cherry-blossom-airy.yaml create mode 100644 themes/cherry-blossom-breeze.yaml create mode 100644 themes/cherry-blossom-dark-reflection.yaml create mode 100644 themes/cherry-blossom-dark-vivid.yaml create mode 100644 themes/cherry-blossom-dark.yaml create mode 100644 themes/cherry-blossom-dimmed-dusk.yaml create mode 100644 themes/cherry-blossom-dimmed.yaml create mode 100644 themes/cherry-blossom-night-harmony.yaml create mode 100644 themes/cherry-blossom-night.yaml create mode 100644 themes/cherry-blossom-osaka-light.yaml create mode 100644 themes/cherry-blossom-osaka.yaml create mode 100644 themes/cherry-blossom-sky-vibrant.yaml create mode 100644 themes/cherry-blossom-spring.yaml create mode 100644 themes/cherry-blossom-twilight.yaml create mode 100644 themes/cherry-blossom-warm.yaml create mode 100644 themes/cherry-delite.yaml create mode 100644 themes/cherry-midnight.yaml create mode 100644 themes/cherry-wild-theme.yaml create mode 100644 themes/cherry.yaml create mode 100644 themes/cherryblossom.yaml create mode 100644 themes/chiclete-de-uva-theme.yaml create mode 100644 themes/chill-night-mode.yaml create mode 100644 themes/chillhack.yaml create mode 100644 themes/chinolor-light.yaml create mode 100644 themes/chinolor.yaml create mode 100644 themes/chocolate-contrast.yaml create mode 100644 themes/chocolate-dessert-theme.yaml create mode 100644 themes/chocolate-light.yaml create mode 100644 themes/chocolate.yaml create mode 100644 themes/chpastel.yaml create mode 100644 themes/chriscoding.yaml create mode 100644 themes/christmas.yaml create mode 100644 themes/chromahin-amoled.yaml create mode 100644 themes/chromahin-dark.yaml create mode 100644 themes/chromahin-multi-color.yaml create mode 100644 themes/chromahin-soft.yaml create mode 100644 themes/chromatic-dark.yaml create mode 100644 themes/chromatic-light.yaml create mode 100644 themes/chrome-devtools.yaml create mode 100644 themes/chromodusk-classic.yaml create mode 100644 themes/chronokai.yaml create mode 100644 themes/cielo.yaml create mode 100644 themes/cinnamon.yaml create mode 100644 themes/cinnamonroll.yaml create mode 100644 themes/citric-secret.yaml create mode 100644 themes/city-fog.yaml create mode 100644 themes/clairvoyance-theme-alt.yaml create mode 100644 themes/clairvoyance-theme-grape.yaml create mode 100644 themes/clairvoyance-theme-pinkish.yaml create mode 100644 themes/clairvoyance-theme.yaml create mode 100644 themes/clarity-design-system-dark.yaml create mode 100644 themes/clarity-design-system-light.yaml create mode 100644 themes/claro.yaml create mode 100644 themes/classic-terminal.yaml create mode 100644 themes/claude-code-dark-brand.yaml create mode 100644 themes/claude-code-dark-high-contrast.yaml create mode 100644 themes/claude-code-light-brand.yaml create mode 100644 themes/claude-code-light-high-contrast.yaml create mode 100644 themes/claude-dark-anthropic.yaml create mode 100644 themes/claude-dark-high-contrast-italic.yaml create mode 100644 themes/claude-dark-italic.yaml create mode 100644 themes/claude-dark.yaml create mode 100644 themes/claude-light.yaml create mode 100644 themes/claude-mode-dark.yaml create mode 100644 themes/claude-mode-light.yaml create mode 100644 themes/claude-velvet-dark.yaml create mode 100644 themes/claude-velvet-light.yaml create mode 100644 themes/claude-warm-light.yaml create mode 100644 themes/clean-theme-halloween.yaml create mode 100644 themes/clean-white.yaml create mode 100644 themes/clear-dark.yaml create mode 100644 themes/cleo.yaml create mode 100644 themes/clesy-theme-dark.yaml create mode 100644 themes/cloudmint-night.yaml create mode 100644 themes/clrsync.yaml create mode 100644 themes/clu-tron-legacy.yaml create mode 100644 themes/clubcleaver-functional-matrix.yaml create mode 100644 themes/clymate-monochrome-vsdark-color-theme.yaml create mode 100644 themes/clymate-pop-neon-vsdark-color-theme.yaml create mode 100644 themes/clymate-vintage-vsdark-color-theme.yaml create mode 100644 themes/clymate-vsdark-color-theme.yaml create mode 100644 themes/cmyk-colourrrs.yaml create mode 100644 themes/coal.yaml create mode 100644 themes/cobalt-next-dark.yaml create mode 100644 themes/cobalt-next.yaml create mode 100644 themes/cobalt2.yaml create mode 100644 themes/cobalt3dark.yaml create mode 100644 themes/cobalt9.yaml create mode 100644 themes/coco-theme-au-palette.yaml create mode 100644 themes/coco-theme-ca-palette.yaml create mode 100644 themes/coco-theme-coco-palette.yaml create mode 100644 themes/coco-theme-coconut-palette.yaml create mode 100644 themes/coco-theme-de-palette.yaml create mode 100644 themes/coco-theme-es-palette.yaml create mode 100644 themes/coco-theme-fr-palette.yaml create mode 100644 themes/coco-theme-gb-palette.yaml create mode 100644 themes/coco-theme-in-palette.yaml create mode 100644 themes/coco-theme-personnal-palette.yaml create mode 100644 themes/coco-theme-se-palette.yaml create mode 100644 themes/coco-theme-tr-palette.yaml create mode 100644 themes/coco-theme-v1-palette.yaml create mode 100644 themes/coco-theme.yaml create mode 100644 themes/coco.yaml create mode 100644 themes/cocoa.yaml create mode 100644 themes/coconut-dark.yaml create mode 100644 themes/coconut.yaml create mode 100644 themes/coda.yaml create mode 100644 themes/code-dadi-dark.yaml create mode 100644 themes/code-dadi-lighter.yaml create mode 100644 themes/code-hunter-bluepurly.yaml create mode 100644 themes/code-hunter-magnum-purple.yaml create mode 100644 themes/code-hunter-spruce-wind.yaml create mode 100644 themes/code-kraken-theme.yaml create mode 100644 themes/code-like-a-rainbow.yaml create mode 100644 themes/code-red.yaml create mode 100644 themes/code-with-colors-pro-midnight-purple.yaml create mode 100644 themes/code33.yaml create mode 100644 themes/codeastro-dark.yaml create mode 100644 themes/codebabel-theme-dark.yaml create mode 100644 themes/codecourse-contrast.yaml create mode 100644 themes/codecourse-light.yaml create mode 100644 themes/codecourse.yaml create mode 100644 themes/codehesion-dark-theme.yaml create mode 100644 themes/codehesion-light-theme.yaml create mode 100644 themes/codeify-dark-berry-color-theme.yaml create mode 100644 themes/codeitlive-light.yaml create mode 100644 themes/codeitlive.yaml create mode 100644 themes/codelabs-inspired.yaml create mode 100644 themes/codellsby-nightowl.yaml create mode 100644 themes/codely-dark-theme.yaml create mode 100644 themes/codeme.yaml create mode 100644 themes/codeo-light.yaml create mode 100644 themes/codeo.yaml create mode 100644 themes/codepdia.yaml create mode 100644 themes/codepen-nights.yaml create mode 100644 themes/codepixel-modern-dark.yaml create mode 100644 themes/coder-coder-dark-redefined.yaml create mode 100644 themes/coder-vai-forest.yaml create mode 100644 themes/coder-vai-light.yaml create mode 100644 themes/coder-vai-ocean.yaml create mode 100644 themes/coder-vai-purple-haze.yaml create mode 100644 themes/coder30.yaml create mode 100644 themes/codesandbox-theme.yaml create mode 100644 themes/codeschool2-minimal.yaml create mode 100644 themes/codesso-unison-beta.yaml create mode 100644 themes/codetest.yaml create mode 100644 themes/codethread-black.yaml create mode 100644 themes/codeuccino.yaml create mode 100644 themes/codevibe-epic-theme.yaml create mode 100644 themes/codewithme-codex.yaml create mode 100644 themes/codewithme-dark-cmyk.yaml create mode 100644 themes/codewithsg-dark-theme.yaml create mode 100644 themes/codexflow-themes.yaml create mode 100644 themes/codiefy-optimas-prime-color-theme.yaml create mode 100644 themes/coding-light-theme.yaml create mode 100644 themes/cods.yaml create mode 100644 themes/coelhin-smooth.yaml create mode 100644 themes/coelhin-violet.yaml create mode 100644 themes/coffee-contrast.yaml create mode 100644 themes/coffee-light.yaml create mode 100644 themes/coffee.yaml create mode 100644 themes/coffeespace.yaml create mode 100644 themes/coffeyscript-theme.yaml create mode 100644 themes/cognac.yaml create mode 100644 themes/coimbrox-minimalist-panda.yaml create mode 100644 themes/coimbroxthmedark.yaml create mode 100644 themes/cold-night.yaml create mode 100644 themes/cold-python-theme.yaml create mode 100644 themes/coldark-cold.yaml create mode 100644 themes/coldark-dark.yaml create mode 100644 themes/collapse.yaml create mode 100644 themes/color-coffee-dark.yaml create mode 100644 themes/color-sea-blue.yaml create mode 100644 themes/color-sea-gray.yaml create mode 100644 themes/color-sea-green.yaml create mode 100644 themes/color-sea-orange.yaml create mode 100644 themes/color-sea-purple.yaml create mode 100644 themes/color-sea-red.yaml create mode 100644 themes/color-sea-yellow.yaml create mode 100644 themes/colora.yaml create mode 100644 themes/colorbars-blue.yaml create mode 100644 themes/colorbars-green.yaml create mode 100644 themes/colorbars-orange.yaml create mode 100644 themes/colorbars-purple.yaml create mode 100644 themes/colorful-carbon-dark-knight.yaml create mode 100644 themes/colorful-carbon.yaml create mode 100644 themes/colorful-dark-fork.yaml create mode 100644 themes/colorful-dark-theme.yaml create mode 100644 themes/colorful-light.yaml create mode 100644 themes/colorizer.yaml create mode 100644 themes/colors-color-theme.yaml create mode 100644 themes/colors.yaml create mode 100644 themes/colorshift-material-pro-evening.yaml create mode 100644 themes/colorshift-material-pro-morning.yaml create mode 100644 themes/colorshift-material-pro.yaml create mode 100644 themes/colorways-cheers-soft.yaml create mode 100644 themes/columbina-high-contrast.yaml create mode 100644 themes/comfy-monokai.yaml create mode 100644 themes/comfyeyes.yaml create mode 100644 themes/commadoor-dark.yaml create mode 100644 themes/commadoor.yaml create mode 100644 themes/commentsareimportant.yaml create mode 100644 themes/common.yaml create mode 100644 themes/community-material-theme-darker.yaml create mode 100644 themes/community-material-theme-default-high-contrast.yaml create mode 100644 themes/community-material-theme-lighter-high-contrast.yaml create mode 100644 themes/community-material-theme-lighter.yaml create mode 100644 themes/community-material-theme-ocean-high-contrast.yaml create mode 100644 themes/community-material-theme-palenight-high-contrast.yaml create mode 100644 themes/compline.yaml create mode 100644 themes/component.yaml create mode 100644 themes/comrade-contrast.yaml create mode 100644 themes/comrade-light.yaml create mode 100644 themes/comrade.yaml create mode 100644 themes/concoctis-dark-hard.yaml create mode 100644 themes/concoctis-dark-soft.yaml create mode 100644 themes/concoctis-light-hard.yaml create mode 100644 themes/concoctis-light-soft.yaml create mode 100644 themes/concrete-theme.yaml create mode 100644 themes/concrete.yaml create mode 100644 themes/conifer-theme.yaml create mode 100644 themes/consolvis-dark-theme.yaml create mode 100644 themes/contrast-kai.yaml create mode 100644 themes/cool-panda.yaml create mode 100644 themes/cool-with-a-c.yaml create mode 100644 themes/cooland.yaml create mode 100644 themes/coolnight-color-theme.yaml create mode 100644 themes/coolshine.yaml create mode 100644 themes/copper-dark.yaml create mode 100644 themes/corallike.yaml create mode 100644 themes/corbatita.yaml create mode 100644 themes/corduroy.yaml create mode 100644 themes/corgidarkpastel2.yaml create mode 100644 themes/corgidarkpastel3.yaml create mode 100644 themes/corporate-dark-theme.yaml create mode 100644 themes/cosmic-decay.yaml create mode 100644 themes/cosmic-gleam-darkest.yaml create mode 100644 themes/cosmic-iris.yaml create mode 100644 themes/cosmic-purple.yaml create mode 100644 themes/cosmic-sea.yaml create mode 100644 themes/cosmic.yaml create mode 100644 themes/cosmical.yaml create mode 100644 themes/cosmico.yaml create mode 100644 themes/cosmicsarthak-dark.yaml create mode 100644 themes/cosmicsarthak-neon.yaml create mode 100644 themes/cosmicsarthak-night-owl.yaml create mode 100644 themes/cosmicsarthak-red.yaml create mode 100644 themes/cosmo.yaml create mode 100644 themes/cosmos-theme.yaml create mode 100644 themes/cosmos.yaml create mode 100644 themes/coucou-theme.yaml create mode 100644 themes/couldpeak.yaml create mode 100644 themes/cowboy-theme.yaml create mode 100644 themes/cozy-evenings.yaml create mode 100644 themes/cozy-mornings.yaml create mode 100644 themes/cpa-lions.yaml create mode 100644 themes/cr-night-theme.yaml create mode 100644 themes/crackpot-contrast.yaml create mode 100644 themes/crackpot-light.yaml create mode 100644 themes/crackpot.yaml create mode 100644 themes/crafty-theme-dark-contrast.yaml create mode 100644 themes/crazydark.yaml create mode 100644 themes/cream-charcoal.yaml create mode 100644 themes/creative-purple-colorblind-innovation-imagination.yaml create mode 100644 themes/creative-purple-light-innovation-imagination.yaml create mode 100644 themes/crema.yaml create mode 100644 themes/crf-flamengo.yaml create mode 100644 themes/crimson-sunset.yaml create mode 100644 themes/crisp-contrast.yaml create mode 100644 themes/crisp-light.yaml create mode 100644 themes/crisp.yaml create mode 100644 themes/crow-dark.yaml create mode 100644 themes/crowveil-ayu.yaml create mode 100644 themes/crt-64.yaml create mode 100644 themes/crt-alt.yaml create mode 100644 themes/crt-amber.yaml create mode 100644 themes/crt-apple.yaml create mode 100644 themes/crt-appleiic.yaml create mode 100644 themes/crt-blue.yaml create mode 100644 themes/crt-gray.yaml create mode 100644 themes/crt-green.yaml create mode 100644 themes/crt-green1.yaml create mode 100644 themes/crt-green2.yaml create mode 100644 themes/crt-paper.yaml create mode 100644 themes/crt-red.yaml create mode 100644 themes/crt.yaml create mode 100644 themes/crypto.yaml create mode 100644 themes/crystaltine-s-crystalline-4-1.yaml create mode 100644 themes/crystaltine-s-crystalline-5-0.yaml create mode 100644 themes/cs50-light-theme.yaml create mode 100644 themes/css-battle.yaml create mode 100644 themes/cucumber-dark.yaml create mode 100644 themes/cucumber-light.yaml create mode 100644 themes/cupertino-dark.yaml create mode 100644 themes/cupertino-light.yaml create mode 100644 themes/curry-dark.yaml create mode 100644 themes/cursor-dark-anysphere-v0-0-1.yaml create mode 100644 themes/cursor-dark.yaml create mode 100644 themes/cursor-less-dark.yaml create mode 100644 themes/cursor-light.yaml create mode 100644 themes/cursor-night-theme-soft.yaml create mode 100644 themes/cursor-night-theme.yaml create mode 100644 themes/cursor-theme.yaml create mode 100644 themes/custom-theme-dark.yaml create mode 100644 themes/custom-theme-light.yaml create mode 100644 themes/custom-theme.yaml create mode 100644 themes/custommarktheme.yaml create mode 100644 themes/cyan-dark.yaml create mode 100644 themes/cyber-dark.yaml create mode 100644 themes/cyber-light-soft.yaml create mode 100644 themes/cyber-light-warm.yaml create mode 100644 themes/cyber-light.yaml create mode 100644 themes/cyber-pastel-violet.yaml create mode 100644 themes/cyber-purple-77.yaml create mode 100644 themes/cyberblue.yaml create mode 100644 themes/cyberdude-black.yaml create mode 100644 themes/cyberdyne-ghostty.yaml create mode 100644 themes/cybereternals-vscode-theme.yaml create mode 100644 themes/cyberlite-fork.yaml create mode 100644 themes/cybermoon.yaml create mode 100644 themes/cyberpink-137-theme.yaml create mode 100644 themes/cyberpunk-2077-night-city-neon.yaml create mode 100644 themes/cyberpunk-2077-reloaded.yaml create mode 100644 themes/cyberpunk-2077.yaml create mode 100644 themes/cyberpunk.yaml create mode 100644 themes/cyberpunkcygnus-clear-grid.yaml create mode 100644 themes/cyberpunkcygnus-neon-pulse.yaml create mode 100644 themes/cyberpunkcygnus-solace-flare.yaml create mode 100644 themes/cybertrauma-s-dark-theme.yaml create mode 100644 themes/cybertrauma-s.yaml create mode 100644 themes/cybertronix.yaml create mode 100644 themes/cyberui.yaml create mode 100644 themes/cynical-color-theme.yaml create mode 100644 themes/cyperpunkrebecca.yaml create mode 100644 themes/d2t-dark-clean.yaml create mode 100644 themes/d2t-dark.yaml create mode 100644 themes/da3m0ns-dark-italic.yaml create mode 100644 themes/dafault.yaml create mode 100644 themes/dak-v1.yaml create mode 100644 themes/dalailahner-dark.yaml create mode 100644 themes/dalton.yaml create mode 100644 themes/dan-light-work.yaml create mode 100644 themes/dan-react-theme.yaml create mode 100644 themes/dang-jedi.yaml create mode 100644 themes/dangergray-v2.yaml create mode 100644 themes/dango-theme.yaml create mode 100644 themes/danmo.yaml create mode 100644 themes/dantes-theme.yaml create mode 100644 themes/dantetheme.yaml create mode 100644 themes/darcula-contrast-min.yaml create mode 100644 themes/darcula-contrast.yaml create mode 100644 themes/darcula-dark-theme.yaml create mode 100644 themes/darcula-solid-color-theme.yaml create mode 100644 themes/darcula-void.yaml create mode 100644 themes/darcula.yaml create mode 100644 themes/darculacode.yaml create mode 100644 themes/dare-contrast.yaml create mode 100644 themes/dare-light.yaml create mode 100644 themes/dare.yaml create mode 100644 themes/dark-abyss.yaml create mode 100644 themes/dark-amethyst.yaml create mode 100644 themes/dark-army.yaml create mode 100644 themes/dark-aura.yaml create mode 100644 themes/dark-black-developer.yaml create mode 100644 themes/dark-blue-theme.yaml create mode 100644 themes/dark-bqueiroz.yaml create mode 100644 themes/dark-brown-theme.yaml create mode 100644 themes/dark-brown.yaml create mode 100644 themes/dark-chai.yaml create mode 100644 themes/dark-clean.yaml create mode 100644 themes/dark-code-fork.yaml create mode 100644 themes/dark-codely-theme.yaml create mode 100644 themes/dark-coffee.yaml create mode 100644 themes/dark-color-theme.yaml create mode 100644 themes/dark-cool-theme.yaml create mode 100644 themes/dark-decay.yaml create mode 100644 themes/dark-discord-vscode.yaml create mode 100644 themes/dark-dust-pro.yaml create mode 100644 themes/dark-edit.yaml create mode 100644 themes/dark-flow.yaml create mode 100644 themes/dark-frost-midnight.yaml create mode 100644 themes/dark-frost.yaml create mode 100644 themes/dark-fury.yaml create mode 100644 themes/dark-future-cyberpunk-2077.yaml create mode 100644 themes/dark-green-energy.yaml create mode 100644 themes/dark-green-jungle.yaml create mode 100644 themes/dark-green-minimalist-theme.yaml create mode 100644 themes/dark-green.yaml create mode 100644 themes/dark-grey-theme.yaml create mode 100644 themes/dark-ink-and-red-accents.yaml create mode 100644 themes/dark-ink-brighter.yaml create mode 100644 themes/dark-ink-brightest.yaml create mode 100644 themes/dark-ink-lighter.yaml create mode 100644 themes/dark-ink.yaml create mode 100644 themes/dark-jade.yaml create mode 100644 themes/dark-lavender-black.yaml create mode 100644 themes/dark-lavender-soft.yaml create mode 100644 themes/dark-lavender-tailwind-soft.yaml create mode 100644 themes/dark-lavender-tailwind.yaml create mode 100644 themes/dark-lavender.yaml create mode 100644 themes/dark-legibility.yaml create mode 100644 themes/dark-leocode-theme.yaml create mode 100644 themes/dark-lime-flat.yaml create mode 100644 themes/dark-magic-dracula.yaml create mode 100644 themes/dark-magic-frankenstein.yaml create mode 100644 themes/dark-magic-light.yaml create mode 100644 themes/dark-magic-night.yaml create mode 100644 themes/dark-magic-nord.yaml create mode 100644 themes/dark-magic-tokyo.yaml create mode 100644 themes/dark-magic.yaml create mode 100644 themes/dark-marine.yaml create mode 100644 themes/dark-matter-code-neptune-medium.yaml create mode 100644 themes/dark-minimal-lime-theme.yaml create mode 100644 themes/dark-minimal-theme-sm.yaml create mode 100644 themes/dark-mode-lover-wasp.yaml create mode 100644 themes/dark-mode-lover.yaml create mode 100644 themes/dark-mode-vs.yaml create mode 100644 themes/dark-mode.yaml create mode 100644 themes/dark-modern-one-without-italics.yaml create mode 100644 themes/dark-modern-yuriyprogg.yaml create mode 100644 themes/dark-molokai.yaml create mode 100644 themes/dark-mono.yaml create mode 100644 themes/dark-monokai.yaml create mode 100644 themes/dark-mute.yaml create mode 100644 themes/dark-nebula.yaml create mode 100644 themes/dark-neon-theme-sm.yaml create mode 100644 themes/dark-night-pro.yaml create mode 100644 themes/dark-night.yaml create mode 100644 themes/dark-ocean-sands.yaml create mode 100644 themes/dark-ocean.yaml create mode 100644 themes/dark-ohnagi-2020.yaml create mode 100644 themes/dark-orange.yaml create mode 100644 themes/dark-owl-darker.yaml create mode 100644 themes/dark-pastel-pink.yaml create mode 100644 themes/dark-pastel.yaml create mode 100644 themes/dark-petrol-dev.yaml create mode 100644 themes/dark-pie-deep-dark.yaml create mode 100644 themes/dark-pink-theme.yaml create mode 100644 themes/dark-plus-chocolate.yaml create mode 100644 themes/dark-plus-moon-lite.yaml create mode 100644 themes/dark-plus-oled-dim-100.yaml create mode 100644 themes/dark-plus-oled-dim-75.yaml create mode 100644 themes/dark-plus-oled-dim-80.yaml create mode 100644 themes/dark-plus-oled-dim-85.yaml create mode 100644 themes/dark-plus-oled-dim-90.yaml create mode 100644 themes/dark-plus-oled-dim-95.yaml create mode 100644 themes/dark-plus-syntax.yaml create mode 100644 themes/dark-purple-flat.yaml create mode 100644 themes/dark-purple.yaml create mode 100644 themes/dark-rainbow.yaml create mode 100644 themes/dark-rblx-rian.yaml create mode 100644 themes/dark-reader-light.yaml create mode 100644 themes/dark-readin-5.yaml create mode 100644 themes/dark-red-theme-vs-code.yaml create mode 100644 themes/dark-remix-nord.yaml create mode 100644 themes/dark-remix-one-dark.yaml create mode 100644 themes/dark-sand-theme.yaml create mode 100644 themes/dark-sea-green.yaml create mode 100644 themes/dark-sky-fork-fork.yaml create mode 100644 themes/dark-soft-theme-sm.yaml create mode 100644 themes/dark-solarin-2.yaml create mode 100644 themes/dark-springbok.yaml create mode 100644 themes/dark-terminal-pro.yaml create mode 100644 themes/dark-theme-blue.yaml create mode 100644 themes/dark-theme-by-sanan.yaml create mode 100644 themes/dark-theme-default-by-luisfelipe.yaml create mode 100644 themes/dark-theme-new.yaml create mode 100644 themes/dark-theme-v2.yaml create mode 100644 themes/dark-theme.yaml create mode 100644 themes/dark-v3.yaml create mode 100644 themes/dark-vibes.yaml create mode 100644 themes/dark-visual-studio.yaml create mode 100644 themes/dark-wolf.yaml create mode 100644 themes/dark-yellow-flat.yaml create mode 100644 themes/dark.yaml create mode 100644 themes/darka.yaml create mode 100644 themes/darkalchemy-basic.yaml create mode 100644 themes/darkalicious.yaml create mode 100644 themes/darkasp.yaml create mode 100644 themes/darkblue-theme.yaml create mode 100644 themes/darkbubble.yaml create mode 100644 themes/darkbutter.yaml create mode 100644 themes/darkdarkdark.yaml create mode 100644 themes/darker-solarized.yaml create mode 100644 themes/darker-than-black.yaml create mode 100644 themes/darkest.yaml create mode 100644 themes/darkestside-theme.yaml create mode 100644 themes/darkfontenelestheme.yaml create mode 100644 themes/darkforest.yaml create mode 100644 themes/darkfusion.yaml create mode 100644 themes/darkgreen.yaml create mode 100644 themes/darkheist.yaml create mode 100644 themes/darkish.yaml create mode 100644 themes/darkit-astral.yaml create mode 100644 themes/darkj.yaml create mode 100644 themes/darkknight.yaml create mode 100644 themes/darklimeteal.yaml create mode 100644 themes/darklover.yaml create mode 100644 themes/darkly-theme.yaml create mode 100644 themes/darkly.yaml create mode 100644 themes/darkness-color-theme.yaml create mode 100644 themes/darkness-of-my-soul.yaml create mode 100644 themes/darko.yaml create mode 100644 themes/darkoo.yaml create mode 100644 themes/darkorange.yaml create mode 100644 themes/darkpinkpro.yaml create mode 100644 themes/darkplastic.yaml create mode 100644 themes/darkpurple.yaml create mode 100644 themes/darkquark.yaml create mode 100644 themes/darkr-green.yaml create mode 100644 themes/darkred.yaml create mode 100644 themes/darkroom.yaml create mode 100644 themes/darkroy-night.yaml create mode 100644 themes/darkroy.yaml create mode 100644 themes/darkrr-green.yaml create mode 100644 themes/darkrrr-green.yaml create mode 100644 themes/darkrrrr-green.yaml create mode 100644 themes/darkrrrrr-green.yaml create mode 100644 themes/darkside-contrast.yaml create mode 100644 themes/darkside-light.yaml create mode 100644 themes/darkside.yaml create mode 100644 themes/darksome.yaml create mode 100644 themes/darkspace.yaml create mode 100644 themes/darkstar.yaml create mode 100644 themes/darkstash.yaml create mode 100644 themes/darktra.yaml create mode 100644 themes/darkula.yaml create mode 100644 themes/darkuto.yaml create mode 100644 themes/darkvoid-ocean.yaml create mode 100644 themes/darkvoid.yaml create mode 100644 themes/darkwaves-ashen-core.yaml create mode 100644 themes/darkwaves-celestial-mist.yaml create mode 100644 themes/darkwaves-cloud-lands.yaml create mode 100644 themes/darkwaves-driftwood.yaml create mode 100644 themes/darkwaves-forge.yaml create mode 100644 themes/darkwaves-gray-elegance.yaml create mode 100644 themes/darkwaves-nebula.yaml create mode 100644 themes/darkwaves-obsidian.yaml create mode 100644 themes/darkwaves-spectrum.yaml create mode 100644 themes/darkwind-default.yaml create mode 100644 themes/darky-purple-storm.yaml create mode 100644 themes/darky-purple.yaml create mode 100644 themes/darkyamaris.yaml create mode 100644 themes/darth-insidious.yaml create mode 100644 themes/darth-invader.yaml create mode 100644 themes/darthbuddy.yaml create mode 100644 themes/dartpad-candy.yaml create mode 100644 themes/daru.yaml create mode 100644 themes/darwin.yaml create mode 100644 themes/darxmon.yaml create mode 100644 themes/dashxe.yaml create mode 100644 themes/davi-lacerda-dark.yaml create mode 100644 themes/davi-lacerda-light.yaml create mode 100644 themes/david.yaml create mode 100644 themes/daviontheme.yaml create mode 100644 themes/dawnblush.yaml create mode 100644 themes/day-n-nite.yaml create mode 100644 themes/day.yaml create mode 100644 themes/dayfox.yaml create mode 100644 themes/daysofwineandroses.yaml create mode 100644 themes/dbt-fusion.yaml create mode 100644 themes/dbt-inspired-dark-theme.yaml create mode 100644 themes/dbt-inspired-light-theme.yaml create mode 100644 themes/dcdevthemered.yaml create mode 100644 themes/deadbeef.yaml create mode 100644 themes/deadpool.yaml create mode 100644 themes/deaving-theme.yaml create mode 100644 themes/decayce.yaml create mode 100644 themes/deco.yaml create mode 100644 themes/deeold.yaml create mode 100644 themes/deep-dark.yaml create mode 100644 themes/deep-indigo-wisdom-intuition.yaml create mode 100644 themes/deep-ocean.yaml create mode 100644 themes/deep-purple-fork-fork.yaml create mode 100644 themes/deep-purple-fork.yaml create mode 100644 themes/deep-purple-theme.yaml create mode 100644 themes/deep-purple.yaml create mode 100644 themes/deep-rainforest.yaml create mode 100644 themes/deep-space-dark.yaml create mode 100644 themes/deepwave.yaml create mode 100644 themes/deepwoods-autumn-needles-italic.yaml create mode 100644 themes/deepwoods-frosted-pines-italic.yaml create mode 100644 themes/deepwoods-high-canopy-italic.yaml create mode 100644 themes/deepwoods-spring-thaw-italic.yaml create mode 100644 themes/default-dimmed.yaml create mode 100644 themes/default-enhanced.yaml create mode 100644 themes/default-theme.yaml create mode 100644 themes/defaults.yaml create mode 100644 themes/defdo-base.yaml create mode 100644 themes/defdo-halloween.yaml create mode 100644 themes/definetely-not-github-s-theme.yaml create mode 100644 themes/definition-theme2023.yaml create mode 100644 themes/dejaypiii.yaml create mode 100644 themes/dekirisu-s-rust-theme.yaml create mode 100644 themes/demon-dark-pro.yaml create mode 100644 themes/demon-light-pro.yaml create mode 100644 themes/demon-slayer-light-theme.yaml create mode 100644 themes/denian-theme.yaml create mode 100644 themes/desert.yaml create mode 100644 themes/designcourse-theme.yaml create mode 100644 themes/designonev2.yaml create mode 100644 themes/dessert.yaml create mode 100644 themes/deus-ex-md-dark.yaml create mode 100644 themes/dev-dark-fork-fork.yaml create mode 100644 themes/dev-tachgurbanov.yaml create mode 100644 themes/dev-theme-pro-nebula-mist.yaml create mode 100644 themes/dev-theme-pro-nebula-void.yaml create mode 100644 themes/dev-theme-pro-ocean-mist.yaml create mode 100644 themes/dev-theme-pro-ocean-void.yaml create mode 100644 themes/dev-theme.yaml create mode 100644 themes/devcode.yaml create mode 100644 themes/devdojo-seppuku.yaml create mode 100644 themes/develer-dark.yaml create mode 100644 themes/developers-theme-fork.yaml create mode 100644 themes/devmedia-dark-modern.yaml create mode 100644 themes/devmedia-dark.yaml create mode 100644 themes/devmedia-light.yaml create mode 100644 themes/devr.yaml create mode 100644 themes/devsena-ultra-dark.yaml create mode 100644 themes/devtheme.yaml create mode 100644 themes/devx-dark.yaml create mode 100644 themes/dew-grey.yaml create mode 100644 themes/dfp-idle.yaml create mode 100644 themes/dhamma-dark.yaml create mode 100644 themes/dhamma-light.yaml create mode 100644 themes/dharam-gfx-amethyst.yaml create mode 100644 themes/dharam-gfx-anthracite.yaml create mode 100644 themes/dharam-gfx-arc-blueberry.yaml create mode 100644 themes/dharam-gfx-arc-eggplant.yaml create mode 100644 themes/dharam-gfx-arc-reversed.yaml create mode 100644 themes/dharam-gfx-hacker-theme.yaml create mode 100644 themes/dharam-gfx-hight-contrast.yaml create mode 100644 themes/dharam-gfx-webdevcody.yaml create mode 100644 themes/diabo-theme.yaml create mode 100644 themes/diamond-theme.yaml create mode 100644 themes/digitaliss-italic.yaml create mode 100644 themes/digitaliss-light-italic.yaml create mode 100644 themes/digitaliss-pastel-italic.yaml create mode 100644 themes/dimi-theme-dark.yaml create mode 100644 themes/dimi-theme-darker.yaml create mode 100644 themes/dimmed-dark-theme.yaml create mode 100644 themes/dimmed-theme.yaml create mode 100644 themes/dimmed.yaml create mode 100644 themes/dioximo-dark.yaml create mode 100644 themes/dioximo-light.yaml create mode 100644 themes/discord-onyx.yaml create mode 100644 themes/discord-theme.yaml create mode 100644 themes/dislexic.yaml create mode 100644 themes/div-s-theme.yaml create mode 100644 themes/dive-bar.yaml create mode 100644 themes/dj-s-purple.yaml create mode 100644 themes/djolof.yaml create mode 100644 themes/dna-helix.yaml create mode 100644 themes/dodimmed-dark.yaml create mode 100644 themes/doli-universal.yaml create mode 100644 themes/doli-visual-studio.yaml create mode 100644 themes/dominator-paralyzer.yaml create mode 100644 themes/domtheme.yaml create mode 100644 themes/doom-one-dark.yaml create mode 100644 themes/doom-one-light.yaml create mode 100644 themes/doom-one.yaml create mode 100644 themes/dooshtheme.yaml create mode 100644 themes/dork.yaml create mode 100644 themes/dorkmode.yaml create mode 100644 themes/dot-developer-dark.yaml create mode 100644 themes/dotportal.yaml create mode 100644 themes/downpour-contrast.yaml create mode 100644 themes/downpour-light.yaml create mode 100644 themes/downpour.yaml create mode 100644 themes/doxa-code-color-theme.yaml create mode 100644 themes/doyoubleed.yaml create mode 100644 themes/dr-jones.yaml create mode 100644 themes/draco-dark.yaml create mode 100644 themes/draconica.yaml create mode 100644 themes/dracula-at-dusk.yaml create mode 100644 themes/dracula-at-midnight.yaml create mode 100644 themes/dracula-at-night.yaml create mode 100644 themes/dracula-clean.yaml create mode 100644 themes/dracula-dimmed-color-theme.yaml create mode 100644 themes/dracula-falcon.yaml create mode 100644 themes/dracula-gray.yaml create mode 100644 themes/dracula-high-contract.yaml create mode 100644 themes/dracula-light.yaml create mode 100644 themes/dracula-midnight.yaml create mode 100644 themes/dracula-min-light-darker-theme.yaml create mode 100644 themes/dracula-min-light-theme.yaml create mode 100644 themes/dracula-min-white-darker-theme.yaml create mode 100644 themes/dracula-min-white-theme.yaml create mode 100644 themes/dracula-pro-black.yaml create mode 100644 themes/dracula-soft.yaml create mode 100644 themes/dracula.yaml create mode 100644 themes/draculight.yaml create mode 100644 themes/draculish.yaml create mode 100644 themes/dragn-dark-color-theme.yaml create mode 100644 themes/dragon.yaml create mode 100644 themes/dragonfly.yaml create mode 100644 themes/dragonight.yaml create mode 100644 themes/drakencord-blue-fork.yaml create mode 100644 themes/drakkar.yaml create mode 100644 themes/draquinho.yaml create mode 100644 themes/drasing-dark.yaml create mode 100644 themes/dreadbots-fork.yaml create mode 100644 themes/dreamer-theme.yaml create mode 100644 themes/dreamy-lights.yaml create mode 100644 themes/dribbble-theme-light.yaml create mode 100644 themes/drifter.yaml create mode 100644 themes/drk.yaml create mode 100644 themes/drukyul-dark.yaml create mode 100644 themes/drukyul-light.yaml create mode 100644 themes/drux-theme.yaml create mode 100644 themes/ds-rose.yaml create mode 100644 themes/duck-in-the-dream.yaml create mode 100644 themes/duck-in-the-lake.yaml create mode 100644 themes/duck-story.yaml create mode 100644 themes/duckcash.yaml create mode 100644 themes/duckdevlabs.yaml create mode 100644 themes/duckeys-blurple.yaml create mode 100644 themes/ducks.yaml create mode 100644 themes/ducky-light.yaml create mode 100644 themes/dukana.yaml create mode 100644 themes/dukemonokai-color-theme.yaml create mode 100644 themes/dull-sun-dark.yaml create mode 100644 themes/dull-sun-light.yaml create mode 100644 themes/dull-sun.yaml create mode 100644 themes/dumdum-theme.yaml create mode 100644 themes/dune-arrakis-incandescent.yaml create mode 100644 themes/dune-bene-gesserit.yaml create mode 100644 themes/dune-caladan-storm.yaml create mode 100644 themes/dune-fremen-sietch.yaml create mode 100644 themes/dune-giedi-prime.yaml create mode 100644 themes/dune-guild-navigator.yaml create mode 100644 themes/dune-harkonnen.yaml create mode 100644 themes/dune-house-atreides.yaml create mode 100644 themes/dune-ix-technology.yaml create mode 100644 themes/dune-kaitain.yaml create mode 100644 themes/dune-mentat.yaml create mode 100644 themes/dune-muad-dib.yaml create mode 100644 themes/dune-salusa-secundus.yaml create mode 100644 themes/dune-sandworm.yaml create mode 100644 themes/dune-sardaukar-imperial.yaml create mode 100644 themes/dune-spacing-guild.yaml create mode 100644 themes/dune-spice-vision.yaml create mode 100644 themes/dune-water-of-life.yaml create mode 100644 themes/duomage.yaml create mode 100644 themes/durgonix-dark.yaml create mode 100644 themes/dusk-rider.yaml create mode 100644 themes/dusk.yaml create mode 100644 themes/duskfox.yaml create mode 100644 themes/dutchtheme.yaml create mode 100644 themes/dynamic.yaml create mode 100644 themes/dyno-cute.yaml create mode 100644 themes/dyno.yaml create mode 100644 themes/dzsolarized-dark.yaml create mode 100644 themes/dzsolarized.yaml create mode 100644 themes/earl-grey.yaml create mode 100644 themes/early-riser.yaml create mode 100644 themes/earth-brown-stability-grounding.yaml create mode 100644 themes/earth-collection.yaml create mode 100644 themes/earthsong-contrast.yaml create mode 100644 themes/earthsong-light.yaml create mode 100644 themes/earthsong.yaml create mode 100644 themes/easy-eye.yaml create mode 100644 themes/easy-eyes-color-theme.yaml create mode 100644 themes/easy-light.yaml create mode 100644 themes/ebizome.yaml create mode 100644 themes/ebullience.yaml create mode 100644 themes/eclipsa.yaml create mode 100644 themes/eclipse-dark-darker.yaml create mode 100644 themes/eclipse-dark-flat.yaml create mode 100644 themes/eclipse-flare.yaml create mode 100644 themes/eclipse-optics.yaml create mode 100644 themes/eclipse-penumbra.yaml create mode 100644 themes/eclipse-umbra.yaml create mode 100644 themes/edge-dark-aura.yaml create mode 100644 themes/edge-dark-neon.yaml create mode 100644 themes/edge-dark.yaml create mode 100644 themes/edge-light.yaml create mode 100644 themes/edgerunner.yaml create mode 100644 themes/editor.yaml create mode 100644 themes/edu4dev-vscode-theme-color.yaml create mode 100644 themes/eerie.yaml create mode 100644 themes/eezoterial-dark.yaml create mode 100644 themes/eezoterial-light.yaml create mode 100644 themes/ef-arbutus.yaml create mode 100644 themes/ef-autumn.yaml create mode 100644 themes/ef-bio.yaml create mode 100644 themes/ef-cherie.yaml create mode 100644 themes/ef-cyprus.yaml create mode 100644 themes/ef-dark.yaml create mode 100644 themes/ef-day.yaml create mode 100644 themes/ef-deuteranopia-dark.yaml create mode 100644 themes/ef-deuteranopia-light.yaml create mode 100644 themes/ef-dream.yaml create mode 100644 themes/ef-duo-dark.yaml create mode 100644 themes/ef-duo-light.yaml create mode 100644 themes/ef-eagle.yaml create mode 100644 themes/ef-elea-dark.yaml create mode 100644 themes/ef-elea-light.yaml create mode 100644 themes/ef-frost.yaml create mode 100644 themes/ef-kassio.yaml create mode 100644 themes/ef-light.yaml create mode 100644 themes/ef-maris-dark.yaml create mode 100644 themes/ef-maris-light.yaml create mode 100644 themes/ef-melissa-dark.yaml create mode 100644 themes/ef-melissa-light.yaml create mode 100644 themes/ef-night.yaml create mode 100644 themes/ef-owl.yaml create mode 100644 themes/ef-reverie.yaml create mode 100644 themes/ef-rosa.yaml create mode 100644 themes/ef-spring.yaml create mode 100644 themes/ef-summer.yaml create mode 100644 themes/ef-symbiosis.yaml create mode 100644 themes/ef-trio-dark.yaml create mode 100644 themes/ef-trio-light.yaml create mode 100644 themes/ef-tritanopia-dark.yaml create mode 100644 themes/ef-tritanopia-light.yaml create mode 100644 themes/ef-winter.yaml create mode 100644 themes/eggsplo1t.yaml create mode 100644 themes/eh-s-website-theme.yaml create mode 100644 themes/eidolon-alter.yaml create mode 100644 themes/eidolon-less-dark.yaml create mode 100644 themes/eigen-color-theme.yaml create mode 100644 themes/ein.yaml create mode 100644 themes/eink.yaml create mode 100644 themes/ekim.yaml create mode 100644 themes/eldar1984.yaml create mode 100644 themes/elderberry.yaml create mode 100644 themes/eldritch-dark.yaml create mode 100644 themes/eldritch.yaml create mode 100644 themes/electric-blue.yaml create mode 100644 themes/electric-dreams.yaml create mode 100644 themes/electric-labs.yaml create mode 100644 themes/electric-night.yaml create mode 100644 themes/electric-sheep.yaml create mode 100644 themes/electric-violet-fork.yaml create mode 100644 themes/electron-highlighter.yaml create mode 100644 themes/electron-vue.yaml create mode 100644 themes/electronic-moonlight-theme-borders.yaml create mode 100644 themes/eleganceu.yaml create mode 100644 themes/elegant-black.yaml create mode 100644 themes/elegant-red.yaml create mode 100644 themes/eleganterror404.yaml create mode 100644 themes/elementary.yaml create mode 100644 themes/elementowl.yaml create mode 100644 themes/elements.yaml create mode 100644 themes/elf-dream.yaml create mode 100644 themes/elhassan-neon-cyan.yaml create mode 100644 themes/elhassan-neon-dark-professional.yaml create mode 100644 themes/elhassan-neon-light-professional.yaml create mode 100644 themes/elhassan-neon-magenta.yaml create mode 100644 themes/elhassan-neon-purple.yaml create mode 100644 themes/elixir-theme-no-italics-less-dark-2.yaml create mode 100644 themes/elixir-theme-no-italics.yaml create mode 100644 themes/elly.yaml create mode 100644 themes/elypink-dark-faded.yaml create mode 100644 themes/elypink-dark.yaml create mode 100644 themes/elypink-light-diamond.yaml create mode 100644 themes/elypink-light-faded.yaml create mode 100644 themes/elypink-light-spring.yaml create mode 100644 themes/elypink-light-summer.yaml create mode 100644 themes/elypink-light.yaml create mode 100644 themes/ember.yaml create mode 100644 themes/emberstone-dark-theme.yaml create mode 100644 themes/emberstone.yaml create mode 100644 themes/emerald-fork.yaml create mode 100644 themes/emerald-matrix.yaml create mode 100644 themes/emerald.yaml create mode 100644 themes/emeralds.yaml create mode 100644 themes/emi-theme.yaml create mode 100644 themes/enchant-high-contrast.yaml create mode 100644 themes/enchant.yaml create mode 100644 themes/encom.yaml create mode 100644 themes/end-color-theme.yaml create mode 100644 themes/endeavouros-breeze-dark.yaml create mode 100644 themes/endeavouros-dark-high-contrast.yaml create mode 100644 themes/endeavouros-dark-night-shift.yaml create mode 100644 themes/endless-iris.yaml create mode 100644 themes/energy-red-colorblind-passion-alertness.yaml create mode 100644 themes/energy-red-light-passion-alertness.yaml create mode 100644 themes/enhanced-hubspot-theme.yaml create mode 100644 themes/enhanced-material-batman.yaml create mode 100644 themes/enhanced-material-fork.yaml create mode 100644 themes/enhanced-material.yaml create mode 100644 themes/enki-night-owl.yaml create mode 100644 themes/enki-rainbow-bro.yaml create mode 100644 themes/enki-red.yaml create mode 100644 themes/enki.yaml create mode 100644 themes/enough.yaml create mode 100644 themes/enova.yaml create mode 100644 themes/entardecer.yaml create mode 100644 themes/entropic-theme.yaml create mode 100644 themes/eon-react.yaml create mode 100644 themes/eon-theme-second.yaml create mode 100644 themes/eon-theme-v4.yaml create mode 100644 themes/eon-theme.yaml create mode 100644 themes/epsilon.yaml create mode 100644 themes/equinox-dark.yaml create mode 100644 themes/equinox-light.yaml create mode 100644 themes/eralith.yaml create mode 100644 themes/erikwdevtheme-color-theme.yaml create mode 100644 themes/eritbh-s-theme.yaml create mode 100644 themes/errordark.yaml create mode 100644 themes/errrrrm.yaml create mode 100644 themes/escook-theme-light.yaml create mode 100644 themes/espresso-dark-theme.yaml create mode 100644 themes/espresso-dark.yaml create mode 100644 themes/etec-pfa-light.yaml create mode 100644 themes/eternal-autumn.yaml create mode 100644 themes/eternal-summer.yaml create mode 100644 themes/eternals-no-italic.yaml create mode 100644 themes/ethanli-turquoise-dark.yaml create mode 100644 themes/ethereal.yaml create mode 100644 themes/ethereum-dark-blue-theme.yaml create mode 100644 themes/ethereum-dark-grey-theme.yaml create mode 100644 themes/eva-01-berserk-theme.yaml create mode 100644 themes/eva-01.yaml create mode 100644 themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml create mode 100644 themes/evans-dark-theme.yaml create mode 100644 themes/evans.yaml create mode 100644 themes/eve.yaml create mode 100644 themes/evening-sky.yaml create mode 100644 themes/everforest-dark.yaml create mode 100644 themes/everforest-light.yaml create mode 100644 themes/everforest-pro-dark-cozy.yaml create mode 100644 themes/everforest-pro-dark-vibrant.yaml create mode 100644 themes/everforest-pro-light-cozy.yaml create mode 100644 themes/everforest-pro-light-vibrant.yaml create mode 100644 themes/everforest-soft.yaml create mode 100644 themes/evergarden-winter-light.yaml create mode 100644 themes/evergarden-winter.yaml create mode 100644 themes/evergarden.yaml create mode 100644 themes/evernex.yaml create mode 100644 themes/evex-dark.yaml create mode 100644 themes/evondev-minimal-theme.yaml create mode 100644 themes/evondev-tailwind-theme.yaml create mode 100644 themes/evro-dark.yaml create mode 100644 themes/evro-darker-flat.yaml create mode 100644 themes/exalanddark.yaml create mode 100644 themes/execlabs.yaml create mode 100644 themes/exias-theme-colorful.yaml create mode 100644 themes/exias-theme-town.yaml create mode 100644 themes/exile.yaml create mode 100644 themes/exploit.yaml create mode 100644 themes/extreme-dark-theme.yaml create mode 100644 themes/eye-care-dark.yaml create mode 100644 themes/eye-care-light.yaml create mode 100644 themes/eye-care.yaml create mode 100644 themes/eye-comfort-light.yaml create mode 100644 themes/eyebreaker.yaml create mode 100644 themes/eyecooler.yaml create mode 100644 themes/eyeguard.yaml create mode 100644 themes/eyehealth-dark.yaml create mode 100644 themes/eyehealth-plus-light.yaml create mode 100644 themes/eyera.yaml create mode 100644 themes/eyesore.yaml create mode 100644 themes/ezcord-highcontrast.yaml create mode 100644 themes/ezcord-light.yaml create mode 100644 themes/ezcord-pastel.yaml create mode 100644 themes/ezcord.yaml create mode 100644 themes/ezgiturali-halloween.yaml create mode 100644 themes/ezra.yaml create mode 100644 themes/fabi.yaml create mode 100644 themes/fabulapps-theme.yaml create mode 100644 themes/fabulous-las-vegas-after-dark.yaml create mode 100644 themes/fabulous-las-vegas-high-noon.yaml create mode 100644 themes/fady-ehab-amer-dark-theme.yaml create mode 100644 themes/faerie-online.yaml create mode 100644 themes/fakedonald-s.yaml create mode 100644 themes/falcon.yaml create mode 100644 themes/falconui-theme.yaml create mode 100644 themes/fallout-theme.yaml create mode 100644 themes/famous-dev-light.yaml create mode 100644 themes/famous-dev-midnight.yaml create mode 100644 themes/fanuc-karel.yaml create mode 100644 themes/fcc0ff.yaml create mode 100644 themes/fcode.yaml create mode 100644 themes/fearless-dark.yaml create mode 100644 themes/feefoolec-2-0.yaml create mode 100644 themes/feels-like-progress-light.yaml create mode 100644 themes/felina.yaml create mode 100644 themes/feline-color-theme.yaml create mode 100644 themes/feline-theme.yaml create mode 100644 themes/felixo-green-contrast.yaml create mode 100644 themes/felixo-green-light.yaml create mode 100644 themes/felixo-green.yaml create mode 100644 themes/felixo-orange-contrast.yaml create mode 100644 themes/felixo-orange-light.yaml create mode 100644 themes/felixo-orange.yaml create mode 100644 themes/felixoux-theme.yaml create mode 100644 themes/feliz-dark.yaml create mode 100644 themes/ferra.yaml create mode 100644 themes/feta.yaml create mode 100644 themes/fictionaltheme.yaml create mode 100644 themes/fiestas.yaml create mode 100644 themes/fifties.yaml create mode 100644 themes/fifty-shades-of-grape.yaml create mode 100644 themes/filtered.yaml create mode 100644 themes/finalbossjeff.yaml create mode 100644 themes/finn4ik666corp.yaml create mode 100644 themes/firefly.yaml create mode 100644 themes/firefox-dark.yaml create mode 100644 themes/firelight.yaml create mode 100644 themes/firewatch.yaml create mode 100644 themes/flamelabs-argo.yaml create mode 100644 themes/flamelabs-fire.yaml create mode 100644 themes/flamelabs-plasma.yaml create mode 100644 themes/flamingo-galaxy.yaml create mode 100644 themes/flashbang.yaml create mode 100644 themes/flat-light.yaml create mode 100644 themes/flat-theme-gray.yaml create mode 100644 themes/flat-theme-light.yaml create mode 100644 themes/flat-ui-immersed.yaml create mode 100644 themes/flat-ui-one-dark.yaml create mode 100644 themes/flatcap.yaml create mode 100644 themes/flatland-monokai-improved-no-cursor-highlight.yaml create mode 100644 themes/flatuiexp.yaml create mode 100644 themes/flavia.yaml create mode 100644 themes/fleetish.yaml create mode 100644 themes/fleetonedark.yaml create mode 100644 themes/fleety.yaml create mode 100644 themes/fleex-theme-dark.yaml create mode 100644 themes/fleex-theme-forest-dark.yaml create mode 100644 themes/fleex-theme-forest-light.yaml create mode 100644 themes/fleex-theme-light.yaml create mode 100644 themes/fleex-theme-mist-dark.yaml create mode 100644 themes/fleex-theme-mist-light.yaml create mode 100644 themes/fleex-theme-ocean-dark.yaml create mode 100644 themes/fleex-theme-ocean-light.yaml create mode 100644 themes/fleex-theme-plum-dark.yaml create mode 100644 themes/fleex-theme-plum-light.yaml create mode 100644 themes/fleex-theme-rose-dark.yaml create mode 100644 themes/fleex-theme-rose-light.yaml create mode 100644 themes/fleex-theme-sand-dark.yaml create mode 100644 themes/fleex-theme-sand-light.yaml create mode 100644 themes/fleex-theme-warm-dark.yaml create mode 100644 themes/fleex-theme-warm-light.yaml create mode 100644 themes/fleury-theme.yaml create mode 100644 themes/flex-appeal.yaml create mode 100644 themes/flexoki.yaml create mode 100644 themes/flora.yaml create mode 100644 themes/florence.yaml create mode 100644 themes/floriamaris.yaml create mode 100644 themes/florist-dark.yaml create mode 100644 themes/florist-light.yaml create mode 100644 themes/flow-better-theme.yaml create mode 100644 themes/flow-light.yaml create mode 100644 themes/fluffy-dark-theme.yaml create mode 100644 themes/fluffy-theme.yaml create mode 100644 themes/fluid-light-theme.yaml create mode 100644 themes/flukerbr-theme.yaml create mode 100644 themes/fluminense.yaml create mode 100644 themes/fluorite-theme.yaml create mode 100644 themes/flutter-dark.yaml create mode 100644 themes/flutter-theme-dark.yaml create mode 100644 themes/flux-dark.yaml create mode 100644 themes/flux-dawn.yaml create mode 100644 themes/flux-daylight.yaml create mode 100644 themes/flux-night.yaml create mode 100644 themes/flux-twilight.yaml create mode 100644 themes/flux.yaml create mode 100644 themes/fluxish.yaml create mode 100644 themes/foco-1-0-0.yaml create mode 100644 themes/focus-blue-colorblind-concentration-trust.yaml create mode 100644 themes/focus-blue-concentration-trust.yaml create mode 100644 themes/focus-blue-high-contrast-concentration-trust.yaml create mode 100644 themes/focus-blue-light-concentration-trust.yaml create mode 100644 themes/focus-colors.yaml create mode 100644 themes/focus-dark-fork-fork.yaml create mode 100644 themes/focusoncoding.yaml create mode 100644 themes/fodder-contrast.yaml create mode 100644 themes/fodder-light.yaml create mode 100644 themes/fodder.yaml create mode 100644 themes/fog-hazy.yaml create mode 100644 themes/foggy-forest-v1.yaml create mode 100644 themes/foggy-minimal.yaml create mode 100644 themes/fonteeboa.yaml create mode 100644 themes/forest-color-theme.yaml create mode 100644 themes/forest-green-vitality-connection.yaml create mode 100644 themes/forest-green.yaml create mode 100644 themes/forest-light.yaml create mode 100644 themes/forest-night-ethereal-magic.yaml create mode 100644 themes/forest-night-italic-serenade.yaml create mode 100644 themes/forest-night-serenade.yaml create mode 100644 themes/forest-night.yaml create mode 100644 themes/forest-rose.yaml create mode 100644 themes/forest-violet.yaml create mode 100644 themes/forestfly-dark-hard.yaml create mode 100644 themes/forestfly-dark.yaml create mode 100644 themes/forestfly-light-hard.yaml create mode 100644 themes/forestlook.yaml create mode 100644 themes/forestry.yaml create mode 100644 themes/forge-dark.yaml create mode 100644 themes/forge-light.yaml create mode 100644 themes/formal.yaml create mode 100644 themes/formosa-dark-ipanema-blue.yaml create mode 100644 themes/formosa-dark-night-green.yaml create mode 100644 themes/formosa-light-ipanema-blue.yaml create mode 100644 themes/formosa-light-night-green.yaml create mode 100644 themes/forventone.yaml create mode 100644 themes/forxtu-light.yaml create mode 100644 themes/forxtu.yaml create mode 100644 themes/foundyn-dev.yaml create mode 100644 themes/four-sages-color-theme.yaml create mode 100644 themes/foxdracula-color-theme.yaml create mode 100644 themes/frankenstein.yaml create mode 100644 themes/frantic-contrast.yaml create mode 100644 themes/frantic-light.yaml create mode 100644 themes/frantic.yaml create mode 100644 themes/french-rose.yaml create mode 100644 themes/fresh-start.yaml create mode 100644 themes/freshcut-contrast.yaml create mode 100644 themes/freshcut-light.yaml create mode 100644 themes/freshcut.yaml create mode 100644 themes/fretefy.yaml create mode 100644 themes/friction-contrast.yaml create mode 100644 themes/friction-light.yaml create mode 100644 themes/friction.yaml create mode 100644 themes/fridge.yaml create mode 100644 themes/friendly.yaml create mode 100644 themes/frontend-galaxy.yaml create mode 100644 themes/frontier-contrast.yaml create mode 100644 themes/frontier-light.yaml create mode 100644 themes/frontier.yaml create mode 100644 themes/fruity-loops.yaml create mode 100644 themes/ftrblue.yaml create mode 100644 themes/fuck-all-these-vscode-custom-ugly-themes.yaml create mode 100644 themes/funchosa-dark-theme.yaml create mode 100644 themes/functional.yaml create mode 100644 themes/funx-theme.yaml create mode 100644 themes/furnace.yaml create mode 100644 themes/furukawa-pop-theme.yaml create mode 100644 themes/futuremotion-light.yaml create mode 100644 themes/futuristic-green.yaml create mode 100644 themes/futuristt.yaml create mode 100644 themes/g-dark-blue-whale.yaml create mode 100644 themes/g-dark-jacksons-purple.yaml create mode 100644 themes/g-dark-light-alice-blue.yaml create mode 100644 themes/g-dark-light-glitter.yaml create mode 100644 themes/g-dark-light-hint-of-red.yaml create mode 100644 themes/g-dark-minimal-2-astronaut-blue.yaml create mode 100644 themes/g-dark-minimal-3-oxford-blue.yaml create mode 100644 themes/g-dark-minimal-midnight.yaml create mode 100644 themes/g-dark-one-love-black-pearl.yaml create mode 100644 themes/g-dark-one-love.yaml create mode 100644 themes/g-dark-shader-h-ck3r-midnight-moss.yaml create mode 100644 themes/g-dark-shader-haiti.yaml create mode 100644 themes/g-dark-shader-mirage.yaml create mode 100644 themes/g-dark-shift-midnight-moss.yaml create mode 100644 themes/g-dark-shift-vulcan.yaml create mode 100644 themes/g-dark-valhalla.yaml create mode 100644 themes/g-i-reaper.yaml create mode 100644 themes/g-i-seraph.yaml create mode 100644 themes/g3-gray.yaml create mode 100644 themes/gagarin-theme.yaml create mode 100644 themes/galactic-flavored.yaml create mode 100644 themes/galactus.yaml create mode 100644 themes/galaxia.yaml create mode 100644 themes/galaxytheme.yaml create mode 100644 themes/galizur.yaml create mode 100644 themes/game-mode.yaml create mode 100644 themes/gameboy-classic-dark.yaml create mode 100644 themes/gameboy-classic-light.yaml create mode 100644 themes/gamma-fork.yaml create mode 100644 themes/gamma.yaml create mode 100644 themes/ganbaru-blue.yaml create mode 100644 themes/ganbaru-dark.yaml create mode 100644 themes/gantheory-dark.yaml create mode 100644 themes/ganyu-theme.yaml create mode 100644 themes/gapstyle-vs-dark-modern.yaml create mode 100644 themes/gapstyle-vs.yaml create mode 100644 themes/garbage-oracle-dark.yaml create mode 100644 themes/garbage-oracle-light.yaml create mode 100644 themes/gatito-next-theme.yaml create mode 100644 themes/gatito-nightly-red.yaml create mode 100644 themes/gatito-theme.yaml create mode 100644 themes/gatomontesdark2.yaml create mode 100644 themes/gdfunkytheme.yaml create mode 100644 themes/gdscript35.yaml create mode 100644 themes/geartheme.yaml create mode 100644 themes/gelato.yaml create mode 100644 themes/gelgel.yaml create mode 100644 themes/gems-theme-default.yaml create mode 100644 themes/gems-theme-light.yaml create mode 100644 themes/gen-theme.yaml create mode 100644 themes/generated-color-theme.yaml create mode 100644 themes/genshin-impact-chiori-dark.yaml create mode 100644 themes/genshin-impact-chiori.yaml create mode 100644 themes/genshin-impact-citlali-dark.yaml create mode 100644 themes/genshin-impact-citlali.yaml create mode 100644 themes/genshin-impact-columbina-dark.yaml create mode 100644 themes/genshin-impact-columbina.yaml create mode 100644 themes/genshin-impact-furina-dark.yaml create mode 100644 themes/genshin-impact-furina.yaml create mode 100644 themes/genshin-impact-ganyu-dark.yaml create mode 100644 themes/genshin-impact-ganyu-high-contrast.yaml create mode 100644 themes/genshin-impact-ganyu-light.yaml create mode 100644 themes/genshin-impact-il-dottore-dark.yaml create mode 100644 themes/genshin-impact-il-dottore.yaml create mode 100644 themes/genshin-impact-kamisato-ayaka-dark.yaml create mode 100644 themes/genshin-impact-kamisato-ayaka.yaml create mode 100644 themes/genshin-impact-layla-dark.yaml create mode 100644 themes/genshin-impact-layla.yaml create mode 100644 themes/genshin-impact-sandrone-dark.yaml create mode 100644 themes/genshin-impact-sandrone.yaml create mode 100644 themes/genshin-impact-scaramouche-dark.yaml create mode 100644 themes/genshin-impact-scaramouche.yaml create mode 100644 themes/genshin-impact-skirk-dark.yaml create mode 100644 themes/genshin-impact-skirk.yaml create mode 100644 themes/genshin-impact-wanderer-dark.yaml create mode 100644 themes/genshin-impact-wanderer.yaml create mode 100644 themes/genshin-impact-yae-miko-dark.yaml create mode 100644 themes/genshin-impact-yae-miko.yaml create mode 100644 themes/genshin-impact-yumemizuki-mizuki-dark.yaml create mode 100644 themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml create mode 100644 themes/genshin-impact-yumemizuki-mizuki-light.yaml create mode 100644 themes/genshin-vibes-celestine-bardlight.yaml create mode 100644 themes/genshin-vibes-damselette-whisper.yaml create mode 100644 themes/genshin-vibes-emergency-food.yaml create mode 100644 themes/genshin-vibes-eternal-electro-throne.yaml create mode 100644 themes/genshin-vibes-fontaine-spotlight.yaml create mode 100644 themes/genshin-vibes-frost-ritual.yaml create mode 100644 themes/genshin-vibes-geo-contract-vault.yaml create mode 100644 themes/genshin-vibes-hydrocourt-midnight.yaml create mode 100644 themes/genshin-vibes-ice-oracle.yaml create mode 100644 themes/genshin-vibes-kusanali-dawnbloom.yaml create mode 100644 themes/genshin-vibes-lava-glaze-inferno.yaml create mode 100644 themes/genshin-vibes-morax-golden-seal.yaml create mode 100644 themes/genshin-vibes-outrider-blaze.yaml create mode 100644 themes/genshin-vibes-pyro-scout.yaml create mode 100644 themes/genshin-vibes-starry-companion.yaml create mode 100644 themes/genshin-vibes-stormrider-breeze.yaml create mode 100644 themes/genshin-vibes-sunforge-ember.yaml create mode 100644 themes/genshin-vibes-veiled-harbinger.yaml create mode 100644 themes/genshin-vibes-verdant-dreamweave.yaml create mode 100644 themes/genshin-vibes-violet-eternity-glow.yaml create mode 100644 themes/gentil-dark.yaml create mode 100644 themes/gentle-builder.yaml create mode 100644 themes/gentle-clean-light.yaml create mode 100644 themes/gentle-clean-monokai.yaml create mode 100644 themes/gentle-dark-warm.yaml create mode 100644 themes/gentle-dark.yaml create mode 100644 themes/gentle-light-warmer.yaml create mode 100644 themes/gentle-light.yaml create mode 100644 themes/gentle-midnight-warm.yaml create mode 100644 themes/gentle-midnight.yaml create mode 100644 themes/gentleblack.yaml create mode 100644 themes/gfx.yaml create mode 100644 themes/gg-djaja-darken.yaml create mode 100644 themes/gg-djaja-default.yaml create mode 100644 themes/gg-djaja-light.yaml create mode 100644 themes/ghibli-day.yaml create mode 100644 themes/ghibli-forest-dark.yaml create mode 100644 themes/ghibli-night.yaml create mode 100644 themes/ghibli-sky-light.yaml create mode 100644 themes/ghost-louise.yaml create mode 100644 themes/ghostgrey.yaml create mode 100644 themes/ghostty-default-styledark.yaml create mode 100644 themes/ghostty-synthwave.yaml create mode 100644 themes/gigaaa.yaml create mode 100644 themes/gineticustheme.yaml create mode 100644 themes/ginseng.yaml create mode 100644 themes/gipsy-dark.yaml create mode 100644 themes/girls-theme.yaml create mode 100644 themes/github-blue-dark.yaml create mode 100644 themes/github-blue-darkest.yaml create mode 100644 themes/github-catppuccin-dark-mix.yaml create mode 100644 themes/github-catppuccin-dark.yaml create mode 100644 themes/github-contrast-theme.yaml create mode 100644 themes/github-contrast.yaml create mode 100644 themes/github-dank-dimmed.yaml create mode 100644 themes/github-dark-colorblind-grayscale.yaml create mode 100644 themes/github-dark-colorblind.yaml create mode 100644 themes/github-dark-default-grayscale.yaml create mode 100644 themes/github-dark-default.yaml create mode 100644 themes/github-dark-dimmed-grayscale.yaml create mode 100644 themes/github-dark-dimmed.yaml create mode 100644 themes/github-dark-high-contrast-grayscale.yaml create mode 100644 themes/github-dark-high-contrast.yaml create mode 100644 themes/github-dark-mode.yaml create mode 100644 themes/github-dark-palenight.yaml create mode 100644 themes/github-dark-tritanopia.yaml create mode 100644 themes/github-dark.yaml create mode 100644 themes/github-light-colorblind.yaml create mode 100644 themes/github-light-default.yaml create mode 100644 themes/github-light-high-contrast.yaml create mode 100644 themes/github-light.yaml create mode 100644 themes/github-minimal.yaml create mode 100644 themes/github-revamp-alt.yaml create mode 100644 themes/github-theme-by-humamafif.yaml create mode 100644 themes/github.yaml create mode 100644 themes/gitlab-dark-grey.yaml create mode 100644 themes/gitlab-dark.yaml create mode 100644 themes/gitlab-light.yaml create mode 100644 themes/gitlab.yaml create mode 100644 themes/giyu-tomioka.yaml create mode 100644 themes/giza.yaml create mode 100644 themes/glance-contrast.yaml create mode 100644 themes/glance-light.yaml create mode 100644 themes/glance.yaml create mode 100644 themes/gleam-theme-minimal-dark.yaml create mode 100644 themes/glitchly-green.yaml create mode 100644 themes/gloam.yaml create mode 100644 themes/globe.yaml create mode 100644 themes/gloom-contrast.yaml create mode 100644 themes/gloom-light.yaml create mode 100644 themes/gloom.yaml create mode 100644 themes/glowfish-contrast.yaml create mode 100644 themes/glowfish-light.yaml create mode 100644 themes/glowfish.yaml create mode 100644 themes/glowing-sun.yaml create mode 100644 themes/glowing-yellow.yaml create mode 100644 themes/glowminerals.yaml create mode 100644 themes/glu-dark-lighter.yaml create mode 100644 themes/glu-dark.yaml create mode 100644 themes/glv-s-theme.yaml create mode 100644 themes/gms2.yaml create mode 100644 themes/gnome-base16.yaml create mode 100644 themes/go-playground.yaml create mode 100644 themes/go-source.yaml create mode 100644 themes/goa-beach-paradise.yaml create mode 100644 themes/god-theme.yaml create mode 100644 themes/godot-4.yaml create mode 100644 themes/gojo-infinity-dark.yaml create mode 100644 themes/goku-code-dragon-ball-z-power-eye-safe.yaml create mode 100644 themes/gold.yaml create mode 100644 themes/golden-blue-color-theme.yaml create mode 100644 themes/golden-dracula.yaml create mode 100644 themes/golden-era.yaml create mode 100644 themes/golden-eye.yaml create mode 100644 themes/golden-sky.yaml create mode 100644 themes/golden-sunset.yaml create mode 100644 themes/golden-wave.yaml create mode 100644 themes/goldentheme.yaml create mode 100644 themes/goldfish-contrast.yaml create mode 100644 themes/goldfish-light.yaml create mode 100644 themes/goldfish.yaml create mode 100644 themes/goldream.yaml create mode 100644 themes/good-purple.yaml create mode 100644 themes/goodmonokai-color-theme.yaml create mode 100644 themes/goodnight-classic.yaml create mode 100644 themes/goodnight.yaml create mode 100644 themes/gooey-theme.yaml create mode 100644 themes/googledark.yaml create mode 100644 themes/googlory-color-theme.yaml create mode 100644 themes/goolou.yaml create mode 100644 themes/goose.yaml create mode 100644 themes/goosebumps.yaml create mode 100644 themes/gopher.yaml create mode 100644 themes/gorfius-orange.yaml create mode 100644 themes/gorfius-peace-forest.yaml create mode 100644 themes/gorg.yaml create mode 100644 themes/gosthy.yaml create mode 100644 themes/gotham.yaml create mode 100644 themes/gothic-absinthe.yaml create mode 100644 themes/gothic-amber-fog.yaml create mode 100644 themes/gothic-blood-moon.yaml create mode 100644 themes/gothic-cathedral.yaml create mode 100644 themes/gothic-cemetery.yaml create mode 100644 themes/gothic-dark.yaml create mode 100644 themes/gothic-emerald-crypt.yaml create mode 100644 themes/gothic-jester.yaml create mode 100644 themes/gothic-midnight-rose.yaml create mode 100644 themes/gothic-qaddy.yaml create mode 100644 themes/gothic-raven.yaml create mode 100644 themes/gothic-spider-lily.yaml create mode 100644 themes/gothic-twilight-forest.yaml create mode 100644 themes/gothic-vampire.yaml create mode 100644 themes/gothic-victorian-mourning.yaml create mode 100644 themes/gothic.yaml create mode 100644 themes/gourd.yaml create mode 100644 themes/gptheme-dark.yaml create mode 100644 themes/gptheme.yaml create mode 100644 themes/gracefulbear.yaml create mode 100644 themes/grandblue-pastel.yaml create mode 100644 themes/grandblue-soft.yaml create mode 100644 themes/grandblue.yaml create mode 100644 themes/grank-blackout.yaml create mode 100644 themes/grank-italics.yaml create mode 100644 themes/grapered.yaml create mode 100644 themes/grapevine.yaml create mode 100644 themes/graphlinq-dark.yaml create mode 100644 themes/grassrivers-sunset.yaml create mode 100644 themes/gravel-pit.yaml create mode 100644 themes/graveyard.yaml create mode 100644 themes/gravity.yaml create mode 100644 themes/gray-matter.yaml create mode 100644 themes/gray-pastel.yaml create mode 100644 themes/gray.yaml create mode 100644 themes/graygraygray.yaml create mode 100644 themes/graymium-theme.yaml create mode 100644 themes/grayscale301-light.yaml create mode 100644 themes/great-white-bloodloss.yaml create mode 100644 themes/great-white-dark.yaml create mode 100644 themes/great-white-frost.yaml create mode 100644 themes/great-white-high-contrast-dark.yaml create mode 100644 themes/great-white-high-contrast-light.yaml create mode 100644 themes/great-white-light.yaml create mode 100644 themes/great-white-storm.yaml create mode 100644 themes/great-white.yaml create mode 100644 themes/greblue.yaml create mode 100644 themes/greeeeen.yaml create mode 100644 themes/green-coffee.yaml create mode 100644 themes/green-geek.yaml create mode 100644 themes/green-kingdom.yaml create mode 100644 themes/green-low-contrast.yaml create mode 100644 themes/green-papper.yaml create mode 100644 themes/green-theme.yaml create mode 100644 themes/green-tree.yaml create mode 100644 themes/green-valley-forest.yaml create mode 100644 themes/green-valley-matrix.yaml create mode 100644 themes/green-valley-midnight.yaml create mode 100644 themes/green-valley-mint.yaml create mode 100644 themes/green-valley-neo.yaml create mode 100644 themes/green-water.yaml create mode 100644 themes/green-yow.yaml create mode 100644 themes/green.yaml create mode 100644 themes/green500.yaml create mode 100644 themes/greenbreeze-dark.yaml create mode 100644 themes/greenbreeze-light.yaml create mode 100644 themes/greenbyte-dark.yaml create mode 100644 themes/greencloud.yaml create mode 100644 themes/greeney-v2.yaml create mode 100644 themes/greeney.yaml create mode 100644 themes/greeni.yaml create mode 100644 themes/greenmachine.yaml create mode 100644 themes/greenspace.yaml create mode 100644 themes/greeny.yaml create mode 100644 themes/grewee-colorscheme.yaml create mode 100644 themes/greygull.yaml create mode 100644 themes/greyout.yaml create mode 100644 themes/greystillplays.yaml create mode 100644 themes/grimoire-nox.yaml create mode 100644 themes/grimoire.yaml create mode 100644 themes/grove-street-noir.yaml create mode 100644 themes/gru-black.yaml create mode 100644 themes/gru.yaml create mode 100644 themes/gruber-blue.yaml create mode 100644 themes/grumbra.yaml create mode 100644 themes/grunboxtheme.yaml create mode 100644 themes/grunge-contrast.yaml create mode 100644 themes/grunge-light.yaml create mode 100644 themes/grunge.yaml create mode 100644 themes/grusper.yaml create mode 100644 themes/gruvalized-dark.yaml create mode 100644 themes/gruvalized-light.yaml create mode 100644 themes/gruvbox-dark-medium.yaml create mode 100644 themes/gruvbox-dark-soft.yaml create mode 100644 themes/gruvbox-drakenlords-dark-draken.yaml create mode 100644 themes/gruvbox-drakenlords-dark.yaml create mode 100644 themes/gruvbox-drakenlords-grey.yaml create mode 100644 themes/gruvbox-drakenlords-semi-dark.yaml create mode 100644 themes/gruvbox-ish-dark-hard.yaml create mode 100644 themes/gruvbox-ish-dark-medium.yaml create mode 100644 themes/gruvbox-ish-dark-soft.yaml create mode 100644 themes/gruvbox-material-dark-claude-hybrid.yaml create mode 100644 themes/gruvbox-material-dark.yaml create mode 100644 themes/gruvbox-material-flat-dark.yaml create mode 100644 themes/gruvbox-material-flat-light.yaml create mode 100644 themes/gruvbox-material-light.yaml create mode 100644 themes/gruvbox-material-mix.yaml create mode 100644 themes/gruvbox-minor-dark-hard.yaml create mode 100644 themes/gruvbox-minor-dark-medium.yaml create mode 100644 themes/gruvbox-minor-dark-soft.yaml create mode 100644 themes/gruvbox-minor-light-hard.yaml create mode 100644 themes/gruvbox-minor-light-medium.yaml create mode 100644 themes/gruvbox-minor-light-soft.yaml create mode 100644 themes/gruvchad.yaml create mode 100644 themes/gruvdark-gbm.yaml create mode 100644 themes/gruvdark-mono.yaml create mode 100644 themes/gruvdark-tokyo.yaml create mode 100644 themes/guezwhoz.yaml create mode 100644 themes/guisaldanha-light.yaml create mode 100644 themes/gujarat-vibrant-culture.yaml create mode 100644 themes/gum.yaml create mode 100644 themes/gumua.yaml create mode 100644 themes/gunivers.yaml create mode 100644 themes/gunmetal-code-pro.yaml create mode 100644 themes/gustavoglins.yaml create mode 100644 themes/gusuku-limestone.yaml create mode 100644 themes/gvalley.yaml create mode 100644 themes/gyomei-himejima.yaml create mode 100644 themes/h1-dark-fork.yaml create mode 100644 themes/h1-light-fork.yaml create mode 100644 themes/haavyz.yaml create mode 100644 themes/habamax.yaml create mode 100644 themes/habamix.yaml create mode 100644 themes/hachiko.yaml create mode 100644 themes/hack-and-lima.yaml create mode 100644 themes/hack-electron.yaml create mode 100644 themes/hackage-theme.yaml create mode 100644 themes/hacker-blue.yaml create mode 100644 themes/hacker-pink.yaml create mode 100644 themes/hacker-x.yaml create mode 100644 themes/hacker.yaml create mode 100644 themes/hackish.yaml create mode 100644 themes/hackpot-batman-vs-joker-dark.yaml create mode 100644 themes/hackpot-batman-vs-joker.yaml create mode 100644 themes/hackpot-dark-knight.yaml create mode 100644 themes/hackpot-darker-knight.yaml create mode 100644 themes/hackpot-garden-dark.yaml create mode 100644 themes/hackpot-garden-of-atlantis.yaml create mode 100644 themes/hackpot-garden-purple-haze.yaml create mode 100644 themes/hackpot-garden.yaml create mode 100644 themes/hackpot-muddy-garden.yaml create mode 100644 themes/hackpot-poisoned-garden.yaml create mode 100644 themes/hadar.yaml create mode 100644 themes/haidark-two.yaml create mode 100644 themes/halcyon.yaml create mode 100644 themes/half-gray.yaml create mode 100644 themes/halflife-contrast.yaml create mode 100644 themes/halflife-light.yaml create mode 100644 themes/halflife.yaml create mode 100644 themes/halloween.yaml create mode 100644 themes/hallucination.yaml create mode 100644 themes/hamidthedev-professional.yaml create mode 100644 themes/han.yaml create mode 100644 themes/happy-dark.yaml create mode 100644 themes/happy-heart-1-dark-classic.yaml create mode 100644 themes/happy-heart-10-forest-green.yaml create mode 100644 themes/happy-heart-11-emerald-green.yaml create mode 100644 themes/happy-heart-12-midnight-purple.yaml create mode 100644 themes/happy-heart-13-royal-purple.yaml create mode 100644 themes/happy-heart-14-rose-gold.yaml create mode 100644 themes/happy-heart-15-chilli-paper.yaml create mode 100644 themes/happy-heart-16-grey.yaml create mode 100644 themes/happy-heart-17-yellow.yaml create mode 100644 themes/happy-heart-2-dark-orange.yaml create mode 100644 themes/happy-heart-3-dark-purple.yaml create mode 100644 themes/happy-heart-4-dark-green.yaml create mode 100644 themes/happy-heart-5-deep-blue.yaml create mode 100644 themes/happy-heart-6-ocean-blue.yaml create mode 100644 themes/happy-heart-7-navy-blue.yaml create mode 100644 themes/happy-heart-8-bright-light.yaml create mode 100644 themes/happy-heart-9-smooth-light.yaml create mode 100644 themes/hapsida.yaml create mode 100644 themes/hard-hacker-darker.yaml create mode 100644 themes/hard-hacker-high-contrast.yaml create mode 100644 themes/hard-hacker-light-high-contrast.yaml create mode 100644 themes/harddark.yaml create mode 100644 themes/hardwired-arctic-blue.yaml create mode 100644 themes/hardwired-electric-lime.yaml create mode 100644 themes/hardwired-purple.yaml create mode 100644 themes/harley-quinn-theme.yaml create mode 100644 themes/harmonized-dark.yaml create mode 100644 themes/harmonized-light-hc.yaml create mode 100644 themes/harmonized-light.yaml create mode 100644 themes/harriet.yaml create mode 100644 themes/harrys.yaml create mode 100644 themes/harshaddevpro.yaml create mode 100644 themes/hashirama-senju-god-of-shinobi.yaml create mode 100644 themes/haube-blue-1.yaml create mode 100644 themes/hawaii-contrast.yaml create mode 100644 themes/hawaii-light.yaml create mode 100644 themes/hawaii.yaml create mode 100644 themes/hc-zenburn.yaml create mode 100644 themes/hecker-boy.yaml create mode 100644 themes/held.yaml create mode 100644 themes/helion.yaml create mode 100644 themes/helios-solarized-dark.yaml create mode 100644 themes/helios-solarized-light.yaml create mode 100644 themes/helix.yaml create mode 100644 themes/hell-pine.yaml create mode 100644 themes/hellfire.yaml create mode 100644 themes/hello-world-theme.yaml create mode 100644 themes/hello.yaml create mode 100644 themes/hendrikkels-dark.yaml create mode 100644 themes/hendrikkels-light.yaml create mode 100644 themes/heptapod.yaml create mode 100644 themes/herbal.yaml create mode 100644 themes/hereafter.yaml create mode 100644 themes/hero-dark-inverse.yaml create mode 100644 themes/heroku-contrast.yaml create mode 100644 themes/heroku-light.yaml create mode 100644 themes/heroku.yaml create mode 100644 themes/herzha-dark.yaml create mode 100644 themes/herzha-flux.yaml create mode 100644 themes/herzha-vanta.yaml create mode 100644 themes/hfa-theme.yaml create mode 100644 themes/hhp1614.yaml create mode 100644 themes/hi-dark.yaml create mode 100644 themes/hi-light.yaml create mode 100644 themes/hibiscus.yaml create mode 100644 themes/high-contrast-april-light-theme.yaml create mode 100644 themes/high-contrast-april-theme.yaml create mode 100644 themes/high-contrast-august-light-theme.yaml create mode 100644 themes/high-contrast-february-dark-theme.yaml create mode 100644 themes/high-contrast-february-light-theme-accessible.yaml create mode 100644 themes/high-contrast-february-theme-accessible.yaml create mode 100644 themes/high-contrast-july-light-theme.yaml create mode 100644 themes/high-contrast-june-light-theme.yaml create mode 100644 themes/high-contrast-march-dark-theme-accessible.yaml create mode 100644 themes/high-contrast-march-dark-theme.yaml create mode 100644 themes/high-contrast-march-light-theme-accessible.yaml create mode 100644 themes/high-contrast-march-theme-accessible.yaml create mode 100644 themes/high-contrast-may-light-theme.yaml create mode 100644 themes/high-contrast-september-light-theme.yaml create mode 100644 themes/high-contrast-sunset.yaml create mode 100644 themes/high-tea.yaml create mode 100644 themes/highflyer.yaml create mode 100644 themes/highgruv.yaml create mode 100644 themes/highland-winter.yaml create mode 100644 themes/himalaya-dark.yaml create mode 100644 themes/hinode.yaml create mode 100644 themes/hipster-next.yaml create mode 100644 themes/hive-contrast.yaml create mode 100644 themes/hive-light.yaml create mode 100644 themes/hive.yaml create mode 100644 themes/hobbyist-goth.yaml create mode 100644 themes/hoccacas.yaml create mode 100644 themes/hocsinhnghiemtuc.yaml create mode 100644 themes/holdesher-dark.yaml create mode 100644 themes/holy-bible.yaml create mode 100644 themes/homebrew.yaml create mode 100644 themes/homecooked-theme.yaml create mode 100644 themes/homer.yaml create mode 100644 themes/homey.yaml create mode 100644 themes/honeycode.yaml create mode 100644 themes/honkai-star-rail-aventurine-dark.yaml create mode 100644 themes/honkai-star-rail-aventurine.yaml create mode 100644 themes/honkai-star-rail-cyrene-dark.yaml create mode 100644 themes/honkai-star-rail-cyrene.yaml create mode 100644 themes/honkai-star-rail-dan-heng-dark.yaml create mode 100644 themes/honkai-star-rail-dan-heng.yaml create mode 100644 themes/honkai-star-rail-firefly-dark.yaml create mode 100644 themes/honkai-star-rail-firefly.yaml create mode 100644 themes/honkai-star-rail-kafka-dark.yaml create mode 100644 themes/honkai-star-rail-kafka.yaml create mode 100644 themes/honkai-star-rail-march-7th-dark.yaml create mode 100644 themes/honkai-star-rail-march-7th.yaml create mode 100644 themes/honkai-star-rail-robin-dark.yaml create mode 100644 themes/honkai-star-rail-robin-light-soft.yaml create mode 100644 themes/honkai-star-rail-ruan-mei-dark.yaml create mode 100644 themes/honkai-star-rail-ruan-mei.yaml create mode 100644 themes/horizon-contrast.yaml create mode 100644 themes/horizon-extended.yaml create mode 100644 themes/horizon-laker-theme.yaml create mode 100644 themes/horizon-light.yaml create mode 100644 themes/horizon.yaml create mode 100644 themes/horizondark.yaml create mode 100644 themes/horror-theme.yaml create mode 100644 themes/horus.yaml create mode 100644 themes/hot-pink-theme.yaml create mode 100644 themes/hot-stuff.yaml create mode 100644 themes/hotrice.yaml create mode 100644 themes/house-of-the-dragon-team-blacks.yaml create mode 100644 themes/houston.yaml create mode 100644 themes/htvodp.yaml create mode 100644 themes/huacat-pink-dark.yaml create mode 100644 themes/hub-contrast.yaml create mode 100644 themes/hub-light.yaml create mode 100644 themes/hub.yaml create mode 100644 themes/hugodvlp.yaml create mode 100644 themes/hulcu.yaml create mode 100644 themes/human-dark.yaml create mode 100644 themes/human-high-contrast.yaml create mode 100644 themes/human-light.yaml create mode 100644 themes/human-low-light.yaml create mode 100644 themes/human-soft.yaml create mode 100644 themes/human-warm.yaml create mode 100644 themes/human.yaml create mode 100644 themes/hundred-oceans.yaml create mode 100644 themes/hush-dark.yaml create mode 100644 themes/hush-light.yaml create mode 100644 themes/hutaotheme.yaml create mode 100644 themes/hybrid-dim.yaml create mode 100644 themes/hybrid-next-gray-background.yaml create mode 100644 themes/hybrid-theme.yaml create mode 100644 themes/hydr-theme.yaml create mode 100644 themes/hydra-night.yaml create mode 100644 themes/hydra-storm.yaml create mode 100644 themes/hyezo-dark.yaml create mode 100644 themes/hyle-color-theme.yaml create mode 100644 themes/hyle-night-night-color-theme.yaml create mode 100644 themes/hyped-down-fork.yaml create mode 100644 themes/hyped-down-theme.yaml create mode 100644 themes/hyper-ctrl-theme.yaml create mode 100644 themes/hyper.yaml create mode 100644 themes/hyperdark-theme.yaml create mode 100644 themes/hyperlink.yaml create mode 100644 themes/hyperrail-theme-hyper-syntax-colors.yaml create mode 100644 themes/hypersubatomic.yaml create mode 100644 themes/hypervoxel.yaml create mode 100644 themes/hyprluna.yaml create mode 100644 themes/hyrule-contrast.yaml create mode 100644 themes/hyrule-light.yaml create mode 100644 themes/hyrule.yaml create mode 100644 themes/i-don-t-know.yaml create mode 100644 themes/i-solarised-color-theme.yaml create mode 100644 themes/i3-aurora-x-custom-ii.yaml create mode 100644 themes/i3-aurora-x-custom-iii.yaml create mode 100644 themes/i3-aurora-x-custom.yaml create mode 100644 themes/ian.yaml create mode 100644 themes/ibm-carbon-gray-10-alternative-code-highlighting.yaml create mode 100644 themes/ibm-carbon-gray-100-alternative-code-highlighting.yaml create mode 100644 themes/ibm-carbon-gray-90-alternative-code-highlighting.yaml create mode 100644 themes/ibm-carbon-white-alternative-code-highlighting.yaml create mode 100644 themes/icaria.yaml create mode 100644 themes/icattheme.yaml create mode 100644 themes/icc-light-theme.yaml create mode 100644 themes/ice-cube-dark.yaml create mode 100644 themes/ice-cube-light.yaml create mode 100644 themes/ice.yaml create mode 100644 themes/iceberg-contrast.yaml create mode 100644 themes/iceberg-light.yaml create mode 100644 themes/iceberg.yaml create mode 100644 themes/icefall.yaml create mode 100644 themes/iceland.yaml create mode 100644 themes/icolordarkblue.yaml create mode 100644 themes/icolordarkcyan.yaml create mode 100644 themes/icolordarkgeekblue.yaml create mode 100644 themes/icolordarkgold.yaml create mode 100644 themes/icolordarkgreen.yaml create mode 100644 themes/icolordarklime.yaml create mode 100644 themes/icolordarkmagenta.yaml create mode 100644 themes/icolordarkorgane.yaml create mode 100644 themes/icolordarkpurple.yaml create mode 100644 themes/icolordarkred.yaml create mode 100644 themes/icolordarkvolcano.yaml create mode 100644 themes/icolordarkyellow.yaml create mode 100644 themes/icolorlightblue.yaml create mode 100644 themes/icolorlightcyan.yaml create mode 100644 themes/icolorlightgeekblue.yaml create mode 100644 themes/icolorlightgold.yaml create mode 100644 themes/icolorlightgreen.yaml create mode 100644 themes/icolorlightlime.yaml create mode 100644 themes/icolorlightmagenta.yaml create mode 100644 themes/icolorlightorgane.yaml create mode 100644 themes/icolorlightpurple.yaml create mode 100644 themes/icolorlightred.yaml create mode 100644 themes/icolorlightvolcano.yaml create mode 100644 themes/icolorlightyellow.yaml create mode 100644 themes/idea-islands-dark.yaml create mode 100644 themes/iditarod.yaml create mode 100644 themes/idk.yaml create mode 100644 themes/idx-theme-dark.yaml create mode 100644 themes/idx-xcode-dark-improved.yaml create mode 100644 themes/igniter-theme-light.yaml create mode 100644 themes/igniter-theme.yaml create mode 100644 themes/ikaros-white.yaml create mode 100644 themes/ikaros.yaml create mode 100644 themes/ikki-vscode-dark-theme.yaml create mode 100644 themes/ikki-vscode-light-theme.yaml create mode 100644 themes/ikshana.yaml create mode 100644 themes/illumination-emerald.yaml create mode 100644 themes/illusion-refined.yaml create mode 100644 themes/iloveagents-azure-ai-foundry-dark.yaml create mode 100644 themes/iloveagents-azure-ai-foundry-light.yaml create mode 100644 themes/iloveagents-dark.yaml create mode 100644 themes/iloveagents-light.yaml create mode 100644 themes/imba-dark.yaml create mode 100644 themes/imexoodeex.yaml create mode 100644 themes/in-bed-by-7pm.yaml create mode 100644 themes/in-darkest-night.yaml create mode 100644 themes/in-his-earthy-elements.yaml create mode 100644 themes/in-the-fog-dark.yaml create mode 100644 themes/index.json create mode 100644 themes/index.yaml create mode 100644 themes/indielayer.yaml create mode 100644 themes/indigo-and-amaranth.yaml create mode 100644 themes/indigo-ice.yaml create mode 100644 themes/industrialcomplex.yaml create mode 100644 themes/industry.yaml create mode 100644 themes/infatuation.yaml create mode 100644 themes/inferius.yaml create mode 100644 themes/infinitus.yaml create mode 100644 themes/infinity-64-blackboard-by-shingo-murata.yaml create mode 100644 themes/infinity-64-whiteboard-by-shingo-murata.yaml create mode 100644 themes/infinity-dark-contrast.yaml create mode 100644 themes/infinity-night-theme.yaml create mode 100644 themes/infinity.yaml create mode 100644 themes/ingeni.yaml create mode 100644 themes/inheritance.yaml create mode 100644 themes/inkpot.yaml create mode 100644 themes/inksea-dank.yaml create mode 100644 themes/inksea-dark.yaml create mode 100644 themes/inksea-dracula.yaml create mode 100644 themes/inksea-hacker.yaml create mode 100644 themes/inksea-midnight.yaml create mode 100644 themes/inksea-oceanic.yaml create mode 100644 themes/inksea-sea-monkey.yaml create mode 100644 themes/inksea.yaml create mode 100644 themes/inkstained.yaml create mode 100644 themes/inovando-theme.yaml create mode 100644 themes/insane.yaml create mode 100644 themes/insight.yaml create mode 100644 themes/inspiration.yaml create mode 100644 themes/instamuch.yaml create mode 100644 themes/intellij-dark-color-theme.yaml create mode 100644 themes/intellij-idea-islands-dark.yaml create mode 100644 themes/intellij-idea-islands-light.yaml create mode 100644 themes/intellij-idea-new-ui.yaml create mode 100644 themes/intellij-light-classic-color-theme.yaml create mode 100644 themes/intellij-light-deaft.yaml create mode 100644 themes/intelliyay-color-theme.yaml create mode 100644 themes/intergalactic.yaml create mode 100644 themes/interstellar-blue-ii.yaml create mode 100644 themes/interstellar-blue.yaml create mode 100644 themes/interstellar.yaml create mode 100644 themes/intility-bifrost-theme.yaml create mode 100644 themes/into-the-unknow-fork.yaml create mode 100644 themes/intrepid-darkness-light.yaml create mode 100644 themes/intrepid-darkness.yaml create mode 100644 themes/invi.yaml create mode 100644 themes/ionztorm-theme.yaml create mode 100644 themes/iris-pink.yaml create mode 100644 themes/irishbruse-s-color-theme.yaml create mode 100644 themes/ironhellrider.yaml create mode 100644 themes/ironman-theme-dark.yaml create mode 100644 themes/ironman-theme-light.yaml create mode 100644 themes/irony.yaml create mode 100644 themes/is-them-tears-bro.yaml create mode 100644 themes/islands-dark.yaml create mode 100644 themes/islands-light.yaml create mode 100644 themes/isotope-contrast.yaml create mode 100644 themes/isotope-light.yaml create mode 100644 themes/isotope.yaml create mode 100644 themes/itsnp-dark-cyan.yaml create mode 100644 themes/itsnp-dark-pink.yaml create mode 100644 themes/itsnp-dark.yaml create mode 100644 themes/itsnp-night-blue.yaml create mode 100644 themes/itsnp-yellow.yaml create mode 100644 themes/iv-spade.yaml create mode 100644 themes/ivalo-color-theme.yaml create mode 100644 themes/iwa-s-code-theme.yaml create mode 100644 themes/j-cinco-da-manh.yaml create mode 100644 themes/j-theme.yaml create mode 100644 themes/jabrms.yaml create mode 100644 themes/jacaranda-theme.yaml create mode 100644 themes/jackhammar.yaml create mode 100644 themes/jaga-theme.yaml create mode 100644 themes/jammy-jellyfish.yaml create mode 100644 themes/jamuntheme.yaml create mode 100644 themes/jannchie-black.yaml create mode 100644 themes/jannchie-dark-soft.yaml create mode 100644 themes/jannchie-dark.yaml create mode 100644 themes/jannchie-light-soft.yaml create mode 100644 themes/jannchie-light.yaml create mode 100644 themes/janus-light.yaml create mode 100644 themes/japanese-breakfast.yaml create mode 100644 themes/jartur.yaml create mode 100644 themes/jarvis-3d.yaml create mode 100644 themes/jarvis.yaml create mode 100644 themes/jasmine.yaml create mode 100644 themes/java-dark-theme.yaml create mode 100644 themes/javascript-modern-dark.yaml create mode 100644 themes/javascript-neon-dark.yaml create mode 100644 themes/javascript-vibrant-dark.yaml create mode 100644 themes/jaytheme.yaml create mode 100644 themes/jazari-dark.yaml create mode 100644 themes/jazari-light.yaml create mode 100644 themes/jcardenas.yaml create mode 100644 themes/jcsoftiablack.yaml create mode 100644 themes/jcsoftiadark.yaml create mode 100644 themes/jcsoftiadarkblue.yaml create mode 100644 themes/jcsoftiadarkred.yaml create mode 100644 themes/jd-s-abyss.yaml create mode 100644 themes/jdarkmaterial-v2.yaml create mode 100644 themes/jdh.yaml create mode 100644 themes/jehuty-dark.yaml create mode 100644 themes/jehuty-light.yaml create mode 100644 themes/jelly-theme.yaml create mode 100644 themes/jelly.yaml create mode 100644 themes/jellybeans-theme.yaml create mode 100644 themes/jellybeans.yaml create mode 100644 themes/jellyfish.yaml create mode 100644 themes/jeng-light.yaml create mode 100644 themes/jetbrain-fleet-color.yaml create mode 100644 themes/jetbrains-dark-theme.yaml create mode 100644 themes/jetbrains-deep-dark-theme.yaml create mode 100644 themes/jetbrains-ide-dark-theme.yaml create mode 100644 themes/jetcode.yaml create mode 100644 themes/jetdark.yaml create mode 100644 themes/jetverse-dev-dark.yaml create mode 100644 themes/jewel-contrast.yaml create mode 100644 themes/jewel-light.yaml create mode 100644 themes/jewel.yaml create mode 100644 themes/jg-vsc.yaml create mode 100644 themes/jingle-contrast.yaml create mode 100644 themes/jingle-light.yaml create mode 100644 themes/jingle.yaml create mode 100644 themes/jinglecode.yaml create mode 100644 themes/jinshi-dark-theme.yaml create mode 100644 themes/jinshi-light-theme.yaml create mode 100644 themes/jinx.yaml create mode 100644 themes/jk.yaml create mode 100644 themes/jker-purple-wave.yaml create mode 100644 themes/jngl.yaml create mode 100644 themes/jojobii-s-colors.yaml create mode 100644 themes/jokejoke.yaml create mode 100644 themes/jokenkai.yaml create mode 100644 themes/jokenpo-obscure.yaml create mode 100644 themes/joker-contrast.yaml create mode 100644 themes/joker-light.yaml create mode 100644 themes/joker-neon.yaml create mode 100644 themes/joker.yaml create mode 100644 themes/jollifake.yaml create mode 100644 themes/jolly-light.yaml create mode 100644 themes/jone-light.yaml create mode 100644 themes/josi.yaml create mode 100644 themes/jott4c-dark.yaml create mode 100644 themes/joyboy.yaml create mode 100644 themes/joyful-fork.yaml create mode 100644 themes/js-dark-theme.yaml create mode 100644 themes/jtvscode-dark.yaml create mode 100644 themes/jtvscode-light.yaml create mode 100644 themes/jugal13-theme.yaml create mode 100644 themes/juicy-contrast.yaml create mode 100644 themes/juicy-light.yaml create mode 100644 themes/juicy.yaml create mode 100644 themes/july-summer-vibes-dark-theme.yaml create mode 100644 themes/jummidark.yaml create mode 100644 themes/jummilight.yaml create mode 100644 themes/jumper-contrast.yaml create mode 100644 themes/jumper-light.yaml create mode 100644 themes/jumper.yaml create mode 100644 themes/jungle.yaml create mode 100644 themes/juniorcoder.yaml create mode 100644 themes/just-code-already-fork.yaml create mode 100644 themes/jwrdark.yaml create mode 100644 themes/k-colorable-dark.yaml create mode 100644 themes/k-colorable-light.yaml create mode 100644 themes/k-relaxed.yaml create mode 100644 themes/kabukich.yaml create mode 100644 themes/kactus-dream-theme-dark.yaml create mode 100644 themes/kactus-dream-theme.yaml create mode 100644 themes/kadoku.yaml create mode 100644 themes/kai-garbage.yaml create mode 100644 themes/kai-sa-white-fork.yaml create mode 100644 themes/kai.yaml create mode 100644 themes/kailash-shaw-dark-theme.yaml create mode 100644 themes/kaimandres.yaml create mode 100644 themes/kaio.yaml create mode 100644 themes/kaiokenkolors.yaml create mode 100644 themes/kaique-theme.yaml create mode 100644 themes/kaisa-dark.yaml create mode 100644 themes/kali-linux-theme.yaml create mode 100644 themes/kalia.yaml create mode 100644 themes/kalidozza.yaml create mode 100644 themes/kalisi.yaml create mode 100644 themes/kalmia-high-contrast.yaml create mode 100644 themes/kalmia.yaml create mode 100644 themes/kami-theme.yaml create mode 100644 themes/kanagawa-dragon.yaml create mode 100644 themes/kanagawa-light.yaml create mode 100644 themes/kanagawa-lotus.yaml create mode 100644 themes/kanagawa-night.yaml create mode 100644 themes/kanagawa-paper.yaml create mode 100644 themes/kanagawa-wave-light.yaml create mode 100644 themes/kanagawa-wave.yaml create mode 100644 themes/kanagawa.yaml create mode 100644 themes/kanamin-dark.yaml create mode 100644 themes/kanao.yaml create mode 100644 themes/kanso-ink.yaml create mode 100644 themes/kanso-mist.yaml create mode 100644 themes/kanso-pearl.yaml create mode 100644 themes/kaolin-light-theme-alt.yaml create mode 100644 themes/kaolin-light-theme.yaml create mode 100644 themes/kaplan-dark-muted.yaml create mode 100644 themes/kara.yaml create mode 100644 themes/karam-theme-darker.yaml create mode 100644 themes/karma.yaml create mode 100644 themes/karnataka-sandalwood-state.yaml create mode 100644 themes/karou-noir.yaml create mode 100644 themes/karou-theme.yaml create mode 100644 themes/karrot-theme-classic.yaml create mode 100644 themes/karry-color-theme.yaml create mode 100644 themes/kary-pro-colors-dark.yaml create mode 100644 themes/kary-pro-colors-light.yaml create mode 100644 themes/kashi-night.yaml create mode 100644 themes/kastorcode-dark-orange-theme.yaml create mode 100644 themes/kastorcode-dark-purple-theme.yaml create mode 100644 themes/katagawatheme.yaml create mode 100644 themes/kato.yaml create mode 100644 themes/kaupo.yaml create mode 100644 themes/kayhan.yaml create mode 100644 themes/kayto.yaml create mode 100644 themes/kaze.yaml create mode 100644 themes/kblue-minimal.yaml create mode 100644 themes/keen-contrast.yaml create mode 100644 themes/keen-light.yaml create mode 100644 themes/keen.yaml create mode 100644 themes/kenobi-dark-theme.yaml create mode 100644 themes/kerala-god-s-own-country.yaml create mode 100644 themes/kerama-deep.yaml create mode 100644 themes/kermit-fork.yaml create mode 100644 themes/keval-s-official-electric-lime.yaml create mode 100644 themes/kiiro-dark.yaml create mode 100644 themes/killer-dark.yaml create mode 100644 themes/kindfeeling.yaml create mode 100644 themes/kingfisher-fishing.yaml create mode 100644 themes/kinnitchi-neon-dark-modern.yaml create mode 100644 themes/kintsugi-dark.yaml create mode 100644 themes/kintsugi-light.yaml create mode 100644 themes/kiona.yaml create mode 100644 themes/kira-theme.yaml create mode 100644 themes/kismat-default-colors.yaml create mode 100644 themes/kiss.yaml create mode 100644 themes/kite-dark.yaml create mode 100644 themes/kite-darker.yaml create mode 100644 themes/kite-light.yaml create mode 100644 themes/kitty-catty.yaml create mode 100644 themes/kitty-night.yaml create mode 100644 themes/kittypower.yaml create mode 100644 themes/kiwi-contrast.yaml create mode 100644 themes/kiwi-light.yaml create mode 100644 themes/kiwi.yaml create mode 100644 themes/kiwisoup-fork.yaml create mode 100644 themes/knapsack.yaml create mode 100644 themes/knfocus-alt.yaml create mode 100644 themes/knfocus-base.yaml create mode 100644 themes/knoctal-dark.yaml create mode 100644 themes/knoctal-darker.yaml create mode 100644 themes/knowit-dark.yaml create mode 100644 themes/knowlyr-dark.yaml create mode 100644 themes/knowlyr-light.yaml create mode 100644 themes/koala-codes-theme.yaml create mode 100644 themes/kod-purple.yaml create mode 100644 themes/kodex-arctic.yaml create mode 100644 themes/kodex.yaml create mode 100644 themes/koffee-kreme.yaml create mode 100644 themes/koi-noir-lan-theme.yaml create mode 100644 themes/koi-noir-theme.yaml create mode 100644 themes/koi-pond-dark.yaml create mode 100644 themes/koi-pond-light.yaml create mode 100644 themes/kokatheme.yaml create mode 100644 themes/koki-dark.yaml create mode 100644 themes/kokubo.yaml create mode 100644 themes/kolada.yaml create mode 100644 themes/komorebi.yaml create mode 100644 themes/kong-light-extended.yaml create mode 100644 themes/konng.yaml create mode 100644 themes/kopo-theme.yaml create mode 100644 themes/korbit.yaml create mode 100644 themes/korean-dancheong-dark.yaml create mode 100644 themes/korsr-theme.yaml create mode 100644 themes/kozy-darker.yaml create mode 100644 themes/kozy.yaml create mode 100644 themes/kpurple.yaml create mode 100644 themes/kradeno.yaml create mode 100644 themes/krb-violet.yaml create mode 100644 themes/kripton.yaml create mode 100644 themes/krishna-dark-elegant.yaml create mode 100644 themes/krishna-default-dark-theme.yaml create mode 100644 themes/kroma-cardinal-light.yaml create mode 100644 themes/krone.yaml create mode 100644 themes/krow-t.yaml create mode 100644 themes/kryptonite-theme.yaml create mode 100644 themes/ktrz-monokai.yaml create mode 100644 themes/kubesong.yaml create mode 100644 themes/kultist-v2.yaml create mode 100644 themes/kurdish-vibrant-theme.yaml create mode 100644 themes/kurdor-light.yaml create mode 100644 themes/kuro-theme-color-theme.yaml create mode 100644 themes/kuro.yaml create mode 100644 themes/kuroir-dark-01-crimson.yaml create mode 100644 themes/kuroir-dark-02-vermilion.yaml create mode 100644 themes/kuroir-dark-04-goldenrod.yaml create mode 100644 themes/kuroir-dark-05-citrine.yaml create mode 100644 themes/kuroir-dark-06-chartreuse.yaml create mode 100644 themes/kuroir-dark-07-fern.yaml create mode 100644 themes/kuroir-dark-08-emerald.yaml create mode 100644 themes/kuroir-dark-09-jade.yaml create mode 100644 themes/kuroir-dark-13-turquoise.yaml create mode 100644 themes/kuroir-dark-17-sapphire.yaml create mode 100644 themes/kuroir-dark-18-indigo.yaml create mode 100644 themes/kuroir-dark-19-violet.yaml create mode 100644 themes/kuroir-dark-20-amethyst.yaml create mode 100644 themes/kuroir-dark-21-magenta.yaml create mode 100644 themes/kuroir-dark-22-fuchsia.yaml create mode 100644 themes/kuroir-dark-23-rose.yaml create mode 100644 themes/kuroir-dark-24-coral.yaml create mode 100644 themes/kuroir-light-02-vermilion.yaml create mode 100644 themes/kuroir-light-04-goldenrod.yaml create mode 100644 themes/kuroir-light-07-fern.yaml create mode 100644 themes/kuroir-light-09-jade.yaml create mode 100644 themes/kuroir-light-13-turquoise.yaml create mode 100644 themes/kuroir-light-15-sky.yaml create mode 100644 themes/kuroir-light-18-indigo.yaml create mode 100644 themes/kuroir-light-19-violet.yaml create mode 100644 themes/kuroir-light-23-rose.yaml create mode 100644 themes/kyanite.yaml create mode 100644 themes/kybern.yaml create mode 100644 themes/kybik-dark.yaml create mode 100644 themes/kybik.yaml create mode 100644 themes/kyngo-s-theme.yaml create mode 100644 themes/kyojuro-rengoku.yaml create mode 100644 themes/kyorazo-dark-theme.yaml create mode 100644 themes/lackluster-dark.yaml create mode 100644 themes/lackluster-night.yaml create mode 100644 themes/ladyluck-color-theme.yaml create mode 100644 themes/lanten-color-theme-dark.yaml create mode 100644 themes/lapis-ruby-dark-stealth-version.yaml create mode 100644 themes/lapis-ruby-light.yaml create mode 100644 themes/lapis-stealth-version.yaml create mode 100644 themes/laracasts-contrast.yaml create mode 100644 themes/laracasts-light.yaml create mode 100644 themes/laracasts.yaml create mode 100644 themes/laradocs.yaml create mode 100644 themes/laravel-contrast.yaml create mode 100644 themes/laravel-light.yaml create mode 100644 themes/laravel.yaml create mode 100644 themes/laserkai.yaml create mode 100644 themes/late-night.yaml create mode 100644 themes/lauds.yaml create mode 100644 themes/lavalink.yaml create mode 100644 themes/lavanda.yaml create mode 100644 themes/lavender-contrast.yaml create mode 100644 themes/lavender-dark-theme.yaml create mode 100644 themes/lavender-light-theme.yaml create mode 100644 themes/lavender-light.yaml create mode 100644 themes/lavender.yaml create mode 100644 themes/lazuli.yaml create mode 100644 themes/lazy-yellow-lemon.yaml create mode 100644 themes/lazygreed-theme.yaml create mode 100644 themes/lazzaretti-plenatech.yaml create mode 100644 themes/lazzaretti-win11.yaml create mode 100644 themes/lbb-builder-dark.yaml create mode 100644 themes/lbb-builder-light.yaml create mode 100644 themes/lc.yaml create mode 100644 themes/lcars.yaml create mode 100644 themes/le-moderne.yaml create mode 100644 themes/leaf-dark-soft.yaml create mode 100644 themes/leaf-dark.yaml create mode 100644 themes/lean-coders-dark.yaml create mode 100644 themes/learn-with-sumit-blue-velvet-theme.yaml create mode 100644 themes/learn-with-sumit-official-theme.yaml create mode 100644 themes/learn-with-sumit-peace-of-the-eye-dracula-version.yaml create mode 100644 themes/learn-with-sumit-professional-theme.yaml create mode 100644 themes/learn-with-sumit-simple-as-light.yaml create mode 100644 themes/learn-with-sumit-theme.yaml create mode 100644 themes/learn-with-sumit-vintage.yaml create mode 100644 themes/leftish.yaml create mode 100644 themes/legacy-contrast.yaml create mode 100644 themes/legacy-light.yaml create mode 100644 themes/legacy-solarized-dark-color-theme.yaml create mode 100644 themes/legacy-solarized-light-color-theme.yaml create mode 100644 themes/legacy.yaml create mode 100644 themes/legendary-dark.yaml create mode 100644 themes/legends-theme-night-fymhr-special.yaml create mode 100644 themes/legends-theme-night.yaml create mode 100644 themes/leios.yaml create mode 100644 themes/lemon.yaml create mode 100644 themes/lemonade.yaml create mode 100644 themes/leon-arantes.yaml create mode 100644 themes/leon.yaml create mode 100644 themes/leonida-keys-ocean.yaml create mode 100644 themes/lesbian.yaml create mode 100644 themes/lesser.yaml create mode 100644 themes/let-s-code.yaml create mode 100644 themes/leviosa-theme.yaml create mode 100644 themes/levuaska.yaml create mode 100644 themes/lht.yaml create mode 100644 themes/liangliang-one-monokai.yaml create mode 100644 themes/lichen-contrast.yaml create mode 100644 themes/lichen-light.yaml create mode 100644 themes/lichen.yaml create mode 100644 themes/light-brown.yaml create mode 100644 themes/light-code-with-bars.yaml create mode 100644 themes/light-color-theme.yaml create mode 100644 themes/light-decay.yaml create mode 100644 themes/light-gruvdark-mono.yaml create mode 100644 themes/light-gruvdark-tokyo.yaml create mode 100644 themes/light-gruvdark.yaml create mode 100644 themes/light-print.yaml create mode 100644 themes/light-red.yaml create mode 100644 themes/light-springbok.yaml create mode 100644 themes/light-theme.yaml create mode 100644 themes/light.yaml create mode 100644 themes/lightblack.yaml create mode 100644 themes/lightdelight.yaml create mode 100644 themes/lighter-a-theme-for-light-coders.yaml create mode 100644 themes/lightestlighttheme.yaml create mode 100644 themes/lighthaus.yaml create mode 100644 themes/lighthouse-in-the-dark-boon-island-dark.yaml create mode 100644 themes/lighthouse-in-the-dark-boon-island-light.yaml create mode 100644 themes/lighthouse-in-the-dark-rose-island-dark.yaml create mode 100644 themes/lighthouse-in-the-dark-rose-island-light.yaml create mode 100644 themes/lightning-cloud.yaml create mode 100644 themes/lightning-dark.yaml create mode 100644 themes/lightning-material-day.yaml create mode 100644 themes/lightning-material-evening.yaml create mode 100644 themes/lightning-material-midnight.yaml create mode 100644 themes/lightning-material-soft.yaml create mode 100644 themes/lightning-soft-dark.yaml create mode 100644 themes/lightning-soft.yaml create mode 100644 themes/lightning-theme.yaml create mode 100644 themes/lightning.yaml create mode 100644 themes/ligiapink.yaml create mode 100644 themes/ligor-fork.yaml create mode 100644 themes/lilac-dreams.yaml create mode 100644 themes/lilac-grove.yaml create mode 100644 themes/lima-theme.yaml create mode 100644 themes/limpo-dark.yaml create mode 100644 themes/limpo-darker.yaml create mode 100644 themes/linear-dark.yaml create mode 100644 themes/linear-light.yaml create mode 100644 themes/linkarzu-vscode-theme.yaml create mode 100644 themes/lino-dark-ruby.yaml create mode 100644 themes/lionel.yaml create mode 100644 themes/liquid-dark.yaml create mode 100644 themes/liquid-ochre.yaml create mode 100644 themes/liquid-ray-light.yaml create mode 100644 themes/liquid-ray.yaml create mode 100644 themes/liquor-theme.yaml create mode 100644 themes/liquorice.yaml create mode 100644 themes/little-league-dark.yaml create mode 100644 themes/little-league-darker.yaml create mode 100644 themes/little-league-light.yaml create mode 100644 themes/lives.yaml create mode 100644 themes/living-twilight.yaml create mode 100644 themes/lncoder-theme.yaml create mode 100644 themes/lofi.yaml create mode 100644 themes/loki-official-classic.yaml create mode 100644 themes/loki-official-kang-edition.yaml create mode 100644 themes/loki-theme-contrast.yaml create mode 100644 themes/loki-theme.yaml create mode 100644 themes/lolo.yaml create mode 100644 themes/lone-wolf-dark.yaml create mode 100644 themes/lonely.yaml create mode 100644 themes/lonus-dark.yaml create mode 100644 themes/lookify-dark-mode.yaml create mode 100644 themes/lookify-light-mode.yaml create mode 100644 themes/looped.yaml create mode 100644 themes/loopy.yaml create mode 100644 themes/lore.yaml create mode 100644 themes/lostforindia.yaml create mode 100644 themes/lotus-dark.yaml create mode 100644 themes/lotus-flat-dusk.yaml create mode 100644 themes/lotus-flat-midnight.yaml create mode 100644 themes/lotus-light.yaml create mode 100644 themes/lovepurple.yaml create mode 100644 themes/lowlvl.yaml create mode 100644 themes/loyal-contrast.yaml create mode 100644 themes/loyal-light.yaml create mode 100644 themes/loyal.yaml create mode 100644 themes/luanslaslatheme.yaml create mode 100644 themes/luau-starlit.yaml create mode 100644 themes/lubasiverse-freewill.yaml create mode 100644 themes/lubasiverse.yaml create mode 100644 themes/lucario.yaml create mode 100644 themes/lucid-labs-dark.yaml create mode 100644 themes/lucid-labs-light.yaml create mode 100644 themes/lucifer-terminal-dark-hacker-edition.yaml create mode 100644 themes/luckyhub.yaml create mode 100644 themes/lui.yaml create mode 100644 themes/luiz-dark-theme.yaml create mode 100644 themes/luke-skywriter.yaml create mode 100644 themes/lull.yaml create mode 100644 themes/lulutheme.yaml create mode 100644 themes/lumenrift.yaml create mode 100644 themes/lumin.yaml create mode 100644 themes/lumina.yaml create mode 100644 themes/luminara-void.yaml create mode 100644 themes/luminarca-crep-sculo.yaml create mode 100644 themes/luminarca-luz.yaml create mode 100644 themes/luminarca-trevas.yaml create mode 100644 themes/luminashade-amethyst.yaml create mode 100644 themes/luminescence-theme.yaml create mode 100644 themes/lumon-theme.yaml create mode 100644 themes/lumos-black.yaml create mode 100644 themes/lumos-dark-soft.yaml create mode 100644 themes/lumos-dark.yaml create mode 100644 themes/lunar-eclipse-golden-hour.yaml create mode 100644 themes/lunar-eclipse-light.yaml create mode 100644 themes/lunar-eclipse.yaml create mode 100644 themes/lunar-pink-satellite.yaml create mode 100644 themes/lunar-pink.yaml create mode 100644 themes/lunar-theme.yaml create mode 100644 themes/lunar-vscode.yaml create mode 100644 themes/lunar.yaml create mode 100644 themes/lunaria.yaml create mode 100644 themes/lunna-dark.yaml create mode 100644 themes/lupine.yaml create mode 100644 themes/lupus.yaml create mode 100644 themes/luxeforest.yaml create mode 100644 themes/lyra-s-vega.yaml create mode 100644 themes/lztheme.yaml create mode 100644 themes/m-unity-s-custom-vscode-theme.yaml create mode 100644 themes/m2d-fork.yaml create mode 100644 themes/mac-theme.yaml create mode 100644 themes/machine.yaml create mode 100644 themes/macho-man.yaml create mode 100644 themes/macos-classic-dark.yaml create mode 100644 themes/macos-classic-light.yaml create mode 100644 themes/macos.yaml create mode 100644 themes/macrodata-refiners-classic.yaml create mode 100644 themes/macrodata-refiners-cold-harbor.yaml create mode 100644 themes/macrodata-refiners-defiant-jazz.yaml create mode 100644 themes/macrodata-refiners-ortbo.yaml create mode 100644 themes/macrodata-refiners-sweet-vitriol.yaml create mode 100644 themes/mad-dark-volt.yaml create mode 100644 themes/madak17z-darkmode-testing.yaml create mode 100644 themes/madness.yaml create mode 100644 themes/madnight.yaml create mode 100644 themes/madrid-night.yaml create mode 100644 themes/magenta-one-dark-pro.yaml create mode 100644 themes/magic-mushroom-theme.yaml create mode 100644 themes/magicorp.yaml create mode 100644 themes/magicuser-bases.yaml create mode 100644 themes/magicuser-book.yaml create mode 100644 themes/magicuser-camouflage-light.yaml create mode 100644 themes/magicuser-camouflage.yaml create mode 100644 themes/magicuser-day.yaml create mode 100644 themes/magicuser-light-blue.yaml create mode 100644 themes/magicuser-light-gray.yaml create mode 100644 themes/magicuser-light-green.yaml create mode 100644 themes/magicuser-light-orange.yaml create mode 100644 themes/magicuser-light-purple.yaml create mode 100644 themes/magicuser-light.yaml create mode 100644 themes/magicuser-neblina.yaml create mode 100644 themes/magicuser-night-neblina.yaml create mode 100644 themes/magicuser-night.yaml create mode 100644 themes/magicuser-paladin.yaml create mode 100644 themes/magicuser-path.yaml create mode 100644 themes/magicuser-power.yaml create mode 100644 themes/magicuser-purple-night.yaml create mode 100644 themes/magicuser-purple.yaml create mode 100644 themes/magicuser-room-lamp.yaml create mode 100644 themes/magicuser-sea.yaml create mode 100644 themes/magicuser-space.yaml create mode 100644 themes/magicuser-specialist.yaml create mode 100644 themes/magicuser-staff.yaml create mode 100644 themes/magicuser-sun.yaml create mode 100644 themes/magicuser-talisman.yaml create mode 100644 themes/magicuser-teal-night.yaml create mode 100644 themes/magicuser-teal.yaml create mode 100644 themes/magicuser-veteran-blue.yaml create mode 100644 themes/magicuser-veteran-purple.yaml create mode 100644 themes/magicuser-veteran.yaml create mode 100644 themes/magicuser-wand-blue.yaml create mode 100644 themes/magicuser.yaml create mode 100644 themes/magnolia.yaml create mode 100644 themes/magnus-dark-theme.yaml create mode 100644 themes/maguh.yaml create mode 100644 themes/maharashtra-land-of-warriors.yaml create mode 100644 themes/mahiro.yaml create mode 100644 themes/maisum-xcode-dark.yaml create mode 100644 themes/mak1na-theme.yaml create mode 100644 themes/make-apps.yaml create mode 100644 themes/malachite.yaml create mode 100644 themes/maldi-dark.yaml create mode 100644 themes/malibu-sunset.yaml create mode 100644 themes/malibun-sunrise.yaml create mode 100644 themes/malte.yaml create mode 100644 themes/man-dark-stone.yaml create mode 100644 themes/manatee.yaml create mode 100644 themes/mandacaru-syntax-theme.yaml create mode 100644 themes/manhld-theme.yaml create mode 100644 themes/manjaro-owl.yaml create mode 100644 themes/manners.yaml create mode 100644 themes/mantissa-dark.yaml create mode 100644 themes/mantissa-light.yaml create mode 100644 themes/maomao-dark-theme.yaml create mode 100644 themes/maomao-light-theme.yaml create mode 100644 themes/maple-dark.yaml create mode 100644 themes/maple-light.yaml create mode 100644 themes/marble-dark.yaml create mode 100644 themes/marci1.yaml create mode 100644 themes/marcial-theme.yaml create mode 100644 themes/marcosven.yaml create mode 100644 themes/mariana-light.yaml create mode 100644 themes/mariana-pro.yaml create mode 100644 themes/mariana-refined.yaml create mode 100644 themes/mariana.yaml create mode 100644 themes/marigold-night.yaml create mode 100644 themes/mario-theme.yaml create mode 100644 themes/marnic1505.yaml create mode 100644 themes/maroza-cyber-chill.yaml create mode 100644 themes/maroza-dark-theme.yaml create mode 100644 themes/maroza-light-theme.yaml create mode 100644 themes/maroza-soothing-aqua.yaml create mode 100644 themes/maroza-zen-pro.yaml create mode 100644 themes/mars.yaml create mode 100644 themes/marshmallow.yaml create mode 100644 themes/marsidark.yaml create mode 100644 themes/marstree.yaml create mode 100644 themes/marwen-labidi-theme.yaml create mode 100644 themes/matcha-pink.yaml create mode 100644 themes/matcha.yaml create mode 100644 themes/matchalk.yaml create mode 100644 themes/matchanaa.yaml create mode 100644 themes/matchati.yaml create mode 100644 themes/material-color-theme.yaml create mode 100644 themes/material-community-ansi-16.yaml create mode 100644 themes/material-dark-color-theme.yaml create mode 100644 themes/material-last.yaml create mode 100644 themes/material-midnight.yaml create mode 100644 themes/material-monokai-high-contrast.yaml create mode 100644 themes/material-ocean.yaml create mode 100644 themes/material-rainbow.yaml create mode 100644 themes/material-solarized.yaml create mode 100644 themes/material-theme-dark.yaml create mode 100644 themes/material-theme-darker-high-contrast.yaml create mode 100644 themes/material-theme-darker.yaml create mode 100644 themes/material-theme-deepforest-high-contrast.yaml create mode 100644 themes/material-theme-default-high-contrast.yaml create mode 100644 themes/material-theme-lighter-high-contrast.yaml create mode 100644 themes/material-theme-lighter.yaml create mode 100644 themes/material-theme-palenight-high-contrast.yaml create mode 100644 themes/material-theme-twilight-wave-ocean-ui.yaml create mode 100644 themes/material.yaml create mode 100644 themes/material1.yaml create mode 100644 themes/materialdarker-monokaist3.yaml create mode 100644 themes/materialdarkplus.yaml create mode 100644 themes/matey.yaml create mode 100644 themes/matitheme-gotham.yaml create mode 100644 themes/matitheme.yaml create mode 100644 themes/matrix-hacking-dark-theme.yaml create mode 100644 themes/matrix-mint.yaml create mode 100644 themes/matrix.yaml create mode 100644 themes/matronator-s-theme.yaml create mode 100644 themes/matte-atelier-ivory.yaml create mode 100644 themes/matte-atelier-obsidian-colorblind.yaml create mode 100644 themes/matte-atelier-obsidian-high-contrast.yaml create mode 100644 themes/matte-atelier-obsidian.yaml create mode 100644 themes/matte-atelier-ros.yaml create mode 100644 themes/matte-atelier-sapphire.yaml create mode 100644 themes/matte-light-theme.yaml create mode 100644 themes/matteblack.yaml create mode 100644 themes/matter.yaml create mode 100644 themes/matteric-dark-default.yaml create mode 100644 themes/mauve-contrast.yaml create mode 100644 themes/mauve-light.yaml create mode 100644 themes/mauve.yaml create mode 100644 themes/mavaia.yaml create mode 100644 themes/max2.yaml create mode 100644 themes/maxsumon.yaml create mode 100644 themes/mayukai.yaml create mode 100644 themes/mazda-rx7-theme.yaml create mode 100644 themes/mbp.yaml create mode 100644 themes/mcdark-theme.yaml create mode 100644 themes/mcdonalds-theme.yaml create mode 100644 themes/mcyoda-s-light-theme.yaml create mode 100644 themes/md-abdur-rakib.yaml create mode 100644 themes/meaow-dark.yaml create mode 100644 themes/mecha-01.yaml create mode 100644 themes/medium-dark.yaml create mode 100644 themes/mega-green.yaml create mode 100644 themes/meitnerium-theme.yaml create mode 100644 themes/mel.yaml create mode 100644 themes/melancholy.yaml create mode 100644 themes/melange-redux-light.yaml create mode 100644 themes/melcr.yaml create mode 100644 themes/melee-island.yaml create mode 100644 themes/melinoe.yaml create mode 100644 themes/mellow-contrast.yaml create mode 100644 themes/mellow-light.yaml create mode 100644 themes/mellow.yaml create mode 100644 themes/melokai.yaml create mode 100644 themes/meloncode.yaml create mode 100644 themes/melyon-blue.yaml create mode 100644 themes/melyon.yaml create mode 100644 themes/menelik.yaml create mode 100644 themes/meoceanblackbarry.yaml create mode 100644 themes/meoceangray.yaml create mode 100644 themes/merlot.yaml create mode 100644 themes/mesalvo-cortex.yaml create mode 100644 themes/meshvoid-light.yaml create mode 100644 themes/meshvoid.yaml create mode 100644 themes/metagrama.yaml create mode 100644 themes/meteora.yaml create mode 100644 themes/metropolis-light.yaml create mode 100644 themes/metropolis.yaml create mode 100644 themes/mgldvd-theme.yaml create mode 100644 themes/mh-theme.yaml create mode 100644 themes/mhfeizi.yaml create mode 100644 themes/mi4uokai.yaml create mode 100644 themes/miami-nights.yaml create mode 100644 themes/miami-vice.yaml create mode 100644 themes/miami-wind.yaml create mode 100644 themes/miasma-color-theme.yaml create mode 100644 themes/mibtema.yaml create mode 100644 themes/micky-dark-black.yaml create mode 100644 themes/micky-dark-lite-black.yaml create mode 100644 themes/micky-dark-lite.yaml create mode 100644 themes/midas-touch-light.yaml create mode 100644 themes/midas-touch.yaml create mode 100644 themes/midcentury.yaml create mode 100644 themes/midight-sun.yaml create mode 100644 themes/midnight-blueprint.yaml create mode 100644 themes/midnight-breeze.yaml create mode 100644 themes/midnight-candy.yaml create mode 100644 themes/midnight-city.yaml create mode 100644 themes/midnight-color-theme.yaml create mode 100644 themes/midnight-darker.yaml create mode 100644 themes/midnight-dracula.yaml create mode 100644 themes/midnight-embers.yaml create mode 100644 themes/midnight-fusion.yaml create mode 100644 themes/midnight-gambler.yaml create mode 100644 themes/midnight-grove.yaml create mode 100644 themes/midnight-guest.yaml create mode 100644 themes/midnight-lake.yaml create mode 100644 themes/midnight-marina.yaml create mode 100644 themes/midnight-mirage.yaml create mode 100644 themes/midnight-monokai.yaml create mode 100644 themes/midnight-moon-eclipse.yaml create mode 100644 themes/midnight-moon-ukiyo.yaml create mode 100644 themes/midnight-moon.yaml create mode 100644 themes/midnight-pastel.yaml create mode 100644 themes/midnight-pro.yaml create mode 100644 themes/midnight-purple-deep.yaml create mode 100644 themes/midnight-purple.yaml create mode 100644 themes/midnight-rainbow.yaml create mode 100644 themes/midnight-rose-theme.yaml create mode 100644 themes/midnight-sapphire.yaml create mode 100644 themes/midnight-theme-light-soft.yaml create mode 100644 themes/midnight-theme-light.yaml create mode 100644 themes/midnight-theme.yaml create mode 100644 themes/midnight-ukiyo.yaml create mode 100644 themes/midnight-z.yaml create mode 100644 themes/midnightblue.yaml create mode 100644 themes/midnightglow.yaml create mode 100644 themes/midt.yaml create mode 100644 themes/mihari-bordered.yaml create mode 100644 themes/mihari.yaml create mode 100644 themes/mike-sources-green-crt.yaml create mode 100644 themes/mike-sources-yellowstone.yaml create mode 100644 themes/mikes-vscode-theme-1.yaml create mode 100644 themes/miku-code-fusion-light.yaml create mode 100644 themes/miku-code-light.yaml create mode 100644 themes/miku-code.yaml create mode 100644 themes/milianor-theme.yaml create mode 100644 themes/military-fork.yaml create mode 100644 themes/milkyway.yaml create mode 100644 themes/mimesis-dark.yaml create mode 100644 themes/mimesis-light.yaml create mode 100644 themes/min-gruvbox.yaml create mode 100644 themes/min-light.yaml create mode 100644 themes/mincom.yaml create mode 100644 themes/minimal-44-pro.yaml create mode 100644 themes/minimal-44.yaml create mode 100644 themes/minimal-dark-fork.yaml create mode 100644 themes/minimal-dark.yaml create mode 100644 themes/minimal-green.yaml create mode 100644 themes/minimal-monochrome-dark.yaml create mode 100644 themes/minimal-monochrome-ink-dark.yaml create mode 100644 themes/minimal-monochrome-ink-light.yaml create mode 100644 themes/minimal-monochrome-pastel-dawn.yaml create mode 100644 themes/minimal-monochrome-pastel-light.yaml create mode 100644 themes/minimal-monochrome-slate-dark.yaml create mode 100644 themes/minimal-monochrome-slate-light.yaml create mode 100644 themes/minimal-pastel-dark-vibrant-softer-yellow.yaml create mode 100644 themes/minimal-theme.yaml create mode 100644 themes/minimal-wave-floral-dark.yaml create mode 100644 themes/minimal-wave-floral-light.yaml create mode 100644 themes/minimal.yaml create mode 100644 themes/minimalesque.yaml create mode 100644 themes/minimalist.yaml create mode 100644 themes/minimalistic-dark-theme.yaml create mode 100644 themes/minimalisticdarktheme.yaml create mode 100644 themes/minimalistik.yaml create mode 100644 themes/minimalred.yaml create mode 100644 themes/miniml-dusk.yaml create mode 100644 themes/miniml-light.yaml create mode 100644 themes/miniml-midnight.yaml create mode 100644 themes/minimus.yaml create mode 100644 themes/minitheme.yaml create mode 100644 themes/mink-dark-theme.yaml create mode 100644 themes/minokai-kalel.yaml create mode 100644 themes/minone.yaml create mode 100644 themes/mint-chocolate.yaml create mode 100644 themes/mint-dark.yaml create mode 100644 themes/mintchoc-contrast.yaml create mode 100644 themes/mintchoc-light.yaml create mode 100644 themes/mintchoc.yaml create mode 100644 themes/mintdark.yaml create mode 100644 themes/minty-dark.yaml create mode 100644 themes/mirai.yaml create mode 100644 themes/miramare.yaml create mode 100644 themes/mist-theme.yaml create mode 100644 themes/mist.yaml create mode 100644 themes/misterioso.yaml create mode 100644 themes/misty-blue.yaml create mode 100644 themes/mistywind.yaml create mode 100644 themes/mitaverse.yaml create mode 100644 themes/mitsuri-kanroji.yaml create mode 100644 themes/mixed-solarized-light.yaml create mode 100644 themes/mk-iceblack.yaml create mode 100644 themes/mk-mono-dark.yaml create mode 100644 themes/mk-mono-light.yaml create mode 100644 themes/mkanet.yaml create mode 100644 themes/mkdeveloper-theme.yaml create mode 100644 themes/mlia-dark.yaml create mode 100644 themes/mlia-light.yaml create mode 100644 themes/mlia-soft.yaml create mode 100644 themes/mlv60-vintage-light.yaml create mode 100644 themes/mocaccino-light.yaml create mode 100644 themes/moderate-dimm.yaml create mode 100644 themes/modern-dracula.yaml create mode 100644 themes/modern-github-white-purple.yaml create mode 100644 themes/moderneclipse.yaml create mode 100644 themes/modernui-fork.yaml create mode 100644 themes/modest-pink.yaml create mode 100644 themes/modified-darker-material-theme.yaml create mode 100644 themes/modus-operandi-deuteranopia.yaml create mode 100644 themes/modus-operandi-tinted.yaml create mode 100644 themes/modus-operandi-tritanopia.yaml create mode 100644 themes/modus-operandi.yaml create mode 100644 themes/modus-vivendi-deuteranopia.yaml create mode 100644 themes/modus-vivendi-tinted.yaml create mode 100644 themes/modus-vivendi-tritanopia.yaml create mode 100644 themes/modus-vivendi.yaml create mode 100644 themes/moegi-black-zen.yaml create mode 100644 themes/moegi-black.yaml create mode 100644 themes/moegi-dark.yaml create mode 100644 themes/moegi-dawn.yaml create mode 100644 themes/moegi-iris.yaml create mode 100644 themes/moegi-light.yaml create mode 100644 themes/moegi-space.yaml create mode 100644 themes/moin-acme.yaml create mode 100644 themes/moin-dark.yaml create mode 100644 themes/moin-light.yaml create mode 100644 themes/moin-soft-dark.yaml create mode 100644 themes/mojito-pro-dark.yaml create mode 100644 themes/mojito-pro.yaml create mode 100644 themes/mokka-fork-darken-blue.yaml create mode 100644 themes/mokka.yaml create mode 100644 themes/mol-lurity-theme-soft-fixed.yaml create mode 100644 themes/mol-lurity-theme.yaml create mode 100644 themes/molarity-washed.yaml create mode 100644 themes/molineux.yaml create mode 100644 themes/moloch.yaml create mode 100644 themes/molokai-darker.yaml create mode 100644 themes/molten-aurora.yaml create mode 100644 themes/monaco-paulsevere-color-theme.yaml create mode 100644 themes/monfika.yaml create mode 100644 themes/mono-atom.yaml create mode 100644 themes/mono-bw.yaml create mode 100644 themes/mono-cl.yaml create mode 100644 themes/monochai-dark.yaml create mode 100644 themes/monochromator-dark-plain.yaml create mode 100644 themes/monochromator-light-plain.yaml create mode 100644 themes/monochrome-dark-amplified.yaml create mode 100644 themes/monochrome-dark-cool-gray.yaml create mode 100644 themes/monochrome-dark-gray.yaml create mode 100644 themes/monochrome-dark-indigo.yaml create mode 100644 themes/monochrome-dark-neutral.yaml create mode 100644 themes/monochrome-dark-slate.yaml create mode 100644 themes/monochrome-dark-stone.yaml create mode 100644 themes/monochrome-dark-subtle.yaml create mode 100644 themes/monochrome-dark-zinc.yaml create mode 100644 themes/monochrome-dark.yaml create mode 100644 themes/monochrome-github-edition.yaml create mode 100644 themes/monochrome-light-amplified.yaml create mode 100644 themes/monochrome-light-cool-gray.yaml create mode 100644 themes/monochrome-light-gray.yaml create mode 100644 themes/monochrome-light-indigo.yaml create mode 100644 themes/monochrome-light-neutral.yaml create mode 100644 themes/monochrome-light-slate.yaml create mode 100644 themes/monochrome-light-stone.yaml create mode 100644 themes/monochrome-light-subtle.yaml create mode 100644 themes/monochrome-light-zinc.yaml create mode 100644 themes/monochrome-light.yaml create mode 100644 themes/monochrome.yaml create mode 100644 themes/monocious-color-theme.yaml create mode 100644 themes/monoclean-light.yaml create mode 100644 themes/monocr.yaml create mode 100644 themes/monocraft.yaml create mode 100644 themes/monoeye.yaml create mode 100644 themes/monokai-blue.yaml create mode 100644 themes/monokai-color-theme-1.yaml create mode 100644 themes/monokai-color-theme.yaml create mode 100644 themes/monokai-dark-green.yaml create mode 100644 themes/monokai-dark.yaml create mode 100644 themes/monokai-deep-dark.yaml create mode 100644 themes/monokai-deep-ocean.yaml create mode 100644 themes/monokai-drizzle.yaml create mode 100644 themes/monokai-extended.yaml create mode 100644 themes/monokai-faded.yaml create mode 100644 themes/monokai-flow.yaml create mode 100644 themes/monokai-grey.yaml create mode 100644 themes/monokai-grs.yaml create mode 100644 themes/monokai-hc-color-theme.yaml create mode 100644 themes/monokai-japan-color-theme.yaml create mode 100644 themes/monokai-midnight.yaml create mode 100644 themes/monokai-night-z-blue.yaml create mode 100644 themes/monokai-night.yaml create mode 100644 themes/monokai-ocean-color-theme.yaml create mode 100644 themes/monokai-octagon.yaml create mode 100644 themes/monokai-okean.yaml create mode 100644 themes/monokai-original-sublime-theme.yaml create mode 100644 themes/monokai-prime.yaml create mode 100644 themes/monokai-pro.yaml create mode 100644 themes/monokai-rain.yaml create mode 100644 themes/monokai-seti-dark.yaml create mode 100644 themes/monokai-seti-light.yaml create mode 100644 themes/monokai-sharp.yaml create mode 100644 themes/monokai-soda-darker.yaml create mode 100644 themes/monokai-storm.yaml create mode 100644 themes/monokai-supersaturated.yaml create mode 100644 themes/monokai-tornado.yaml create mode 100644 themes/monokai-underdark-mk.yaml create mode 100644 themes/monokai-underdark.yaml create mode 100644 themes/monokai-unified.yaml create mode 100644 themes/monokai.yaml create mode 100644 themes/monokai22.yaml create mode 100644 themes/monokaiju.yaml create mode 100644 themes/monokaisgq.yaml create mode 100644 themes/monokaizen.yaml create mode 100644 themes/monokard.yaml create mode 100644 themes/monokong.yaml create mode 100644 themes/monokuro-amber.yaml create mode 100644 themes/monolite.yaml create mode 100644 themes/monos-blac.yaml create mode 100644 themes/monospace-dark.yaml create mode 100644 themes/monospace-light.yaml create mode 100644 themes/monotone.yaml create mode 100644 themes/monrch-darc.yaml create mode 100644 themes/montana.yaml create mode 100644 themes/monza-dark.yaml create mode 100644 themes/monzo-contrast.yaml create mode 100644 themes/monzo-light.yaml create mode 100644 themes/monzo.yaml create mode 100644 themes/moon-light-theme.yaml create mode 100644 themes/moon-night.yaml create mode 100644 themes/moon-phases.yaml create mode 100644 themes/moon-purple.yaml create mode 100644 themes/moon-violet-dark-plus.yaml create mode 100644 themes/moonbloom-theme-official.yaml create mode 100644 themes/moonerized-dark.yaml create mode 100644 themes/moonerized-light.yaml create mode 100644 themes/moonfly.yaml create mode 100644 themes/moongate-theme-dark.yaml create mode 100644 themes/moongate-theme-light.yaml create mode 100644 themes/moonkai.yaml create mode 100644 themes/moonlight-ii.yaml create mode 100644 themes/moonlight.yaml create mode 100644 themes/moonokai.yaml create mode 100644 themes/moonspell-northern-lights.yaml create mode 100644 themes/morass-contrast.yaml create mode 100644 themes/morass-light.yaml create mode 100644 themes/morass.yaml create mode 100644 themes/more-purple.yaml create mode 100644 themes/morgan-codes.yaml create mode 100644 themes/mori-keycaps.yaml create mode 100644 themes/mori.yaml create mode 100644 themes/morning-mist.yaml create mode 100644 themes/morning-mocha.yaml create mode 100644 themes/morose-theme.yaml create mode 100644 themes/mosaic.yaml create mode 100644 themes/mosmmy.yaml create mode 100644 themes/moss-oracle.yaml create mode 100644 themes/mossframe-light.yaml create mode 100644 themes/mossframe.yaml create mode 100644 themes/motion-blue-thin-brackets.yaml create mode 100644 themes/motiv8der-s-theme.yaml create mode 100644 themes/mount-kalaga-noir.yaml create mode 100644 themes/mountain-theme.yaml create mode 100644 themes/mountain.yaml create mode 100644 themes/mountains-and-rivers.yaml create mode 100644 themes/mourning.yaml create mode 100644 themes/mowgli.yaml create mode 100644 themes/mr-code-black.yaml create mode 100644 themes/mr-code-gunmetal.yaml create mode 100644 themes/ms-dev-theme.yaml create mode 100644 themes/mt-doom-theme.yaml create mode 100644 themes/mud-contrast.yaml create mode 100644 themes/mud-light.yaml create mode 100644 themes/mud-theme.yaml create mode 100644 themes/mud.yaml create mode 100644 themes/murasaki-theme.yaml create mode 100644 themes/muromachi.yaml create mode 100644 themes/murora-light-lite.yaml create mode 100644 themes/murtadapy-green.yaml create mode 100644 themes/mushroomsynth.yaml create mode 100644 themes/muted-mirage.yaml create mode 100644 themes/mutenight.yaml create mode 100644 themes/mwone-dark.yaml create mode 100644 themes/my-custom-theme.yaml create mode 100644 themes/my-dark-theme-refined-updated.yaml create mode 100644 themes/my-dark-theme.yaml create mode 100644 themes/my-first-visual-studio-theme.yaml create mode 100644 themes/my-hero-academia-deku-plus-ultra.yaml create mode 100644 themes/my-light-theme-blue-dark.yaml create mode 100644 themes/my-light-theme-blue.yaml create mode 100644 themes/my-light-theme-light-green-fork-updated.yaml create mode 100644 themes/my-light-theme-light-green-paperblue-fork.yaml create mode 100644 themes/my-light-theme-light-green-papermint-updated.yaml create mode 100644 themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml create mode 100644 themes/my-light-theme-mint-sand-updated.yaml create mode 100644 themes/my-monokai.yaml create mode 100644 themes/my-oceanic.yaml create mode 100644 themes/my-theme.yaml create mode 100644 themes/my-zu.yaml create mode 100644 themes/mycode-dark-blue.yaml create mode 100644 themes/mygo.yaml create mode 100644 themes/mynthra.yaml create mode 100644 themes/myoptic-v2.yaml create mode 100644 themes/myoptic.yaml create mode 100644 themes/myrteal.yaml create mode 100644 themes/mystic-moonshadow.yaml create mode 100644 themes/mystic.yaml create mode 100644 themes/mystico-c64-pepto-ntsc-sony.yaml create mode 100644 themes/mystico-c64-pepto-pal.yaml create mode 100644 themes/mystico-c64.yaml create mode 100644 themes/mystico-deep-purple.yaml create mode 100644 themes/mystico-forest-ocean.yaml create mode 100644 themes/mystico-mint.yaml create mode 100644 themes/mystico-plum.yaml create mode 100644 themes/mystico-purples.yaml create mode 100644 themes/mytheme.yaml create mode 100644 themes/myvscode.yaml create mode 100644 themes/n-darktheme.yaml create mode 100644 themes/n0m4d.yaml create mode 100644 themes/n7-lilac.yaml create mode 100644 themes/n7-maya.yaml create mode 100644 themes/n7-night-vision.yaml create mode 100644 themes/n7-purple-green.yaml create mode 100644 themes/n7-red-flare.yaml create mode 100644 themes/n7-soft-pink.yaml create mode 100644 themes/nada-theme.yaml create mode 100644 themes/nairobi-dark.yaml create mode 100644 themes/nameless.yaml create mode 100644 themes/nanowise.yaml create mode 100644 themes/naps-dusk-gold.yaml create mode 100644 themes/narasimha-fearless-dark-theme.yaml create mode 100644 themes/narato.yaml create mode 100644 themes/narunika.yaml create mode 100644 themes/naruto-akatsuki.yaml create mode 100644 themes/naruto-hinata-hyuga-byakugan-vision.yaml create mode 100644 themes/naruto-hokage-dawn.yaml create mode 100644 themes/naruto-hokage-orange.yaml create mode 100644 themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml create mode 100644 themes/naruto-jiraiya-gallant-toad-sage.yaml create mode 100644 themes/naruto-kakashi-copy-ninja.yaml create mode 100644 themes/naruto-kurama-nine-tails.yaml create mode 100644 themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml create mode 100644 themes/naruto-might-guy-gate-of-death-madara-battle.yaml create mode 100644 themes/naruto-might-guy-gates-of-youth.yaml create mode 100644 themes/naruto-minato-namikaze-yellow-flash.yaml create mode 100644 themes/naruto-pain-nagato-rinnegan-god.yaml create mode 100644 themes/naruto-sage-mode.yaml create mode 100644 themes/naruto-sakura-haruno-cherry-blossom-storm.yaml create mode 100644 themes/naruto-sasuke-uchiha-sharingan.yaml create mode 100644 themes/naruto-shikamaru-nara-shadow-possession.yaml create mode 100644 themes/naruto-shinobi-night.yaml create mode 100644 themes/natasha-theme.yaml create mode 100644 themes/natives-in-tech-theme.yaml create mode 100644 themes/natto-theme-2.yaml create mode 100644 themes/natty.yaml create mode 100644 themes/natural-faded-dark.yaml create mode 100644 themes/natural-green-colorblind-growth-harmony.yaml create mode 100644 themes/natural-green-light-growth-harmony.yaml create mode 100644 themes/nature-color-theme.yaml create mode 100644 themes/nature-green-colorblind-growth-harmony.yaml create mode 100644 themes/nature-green-light-growth-harmony.yaml create mode 100644 themes/nature.yaml create mode 100644 themes/nautilus.yaml create mode 100644 themes/naver.yaml create mode 100644 themes/navy-flat.yaml create mode 100644 themes/navy-nights-theme.yaml create mode 100644 themes/navy-theme.yaml create mode 100644 themes/navy.yaml create mode 100644 themes/nb-monochrome-dark.yaml create mode 100644 themes/ncl5c.yaml create mode 100644 themes/nebula-color-theme.yaml create mode 100644 themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml create mode 100644 themes/nebula-nights.yaml create mode 100644 themes/nebula-pro-dark.yaml create mode 100644 themes/nebula-surge.yaml create mode 100644 themes/nebula-symphony-dark-pro.yaml create mode 100644 themes/nebula-symphony-dark.yaml create mode 100644 themes/nebula-symphony-light.yaml create mode 100644 themes/nebula.yaml create mode 100644 themes/nebular-theme.yaml create mode 100644 themes/nebularomantic.yaml create mode 100644 themes/nebulous-dark.yaml create mode 100644 themes/nebulous-luna.yaml create mode 100644 themes/necessity-aaa-light.yaml create mode 100644 themes/necessity-aaa.yaml create mode 100644 themes/negative-theme.yaml create mode 100644 themes/neil-s-theme-dark.yaml create mode 100644 themes/neil-s-theme.yaml create mode 100644 themes/nekhbet.yaml create mode 100644 themes/neki.yaml create mode 100644 themes/neo-hacker-soft-premium.yaml create mode 100644 themes/neo-nuxt-matte.yaml create mode 100644 themes/neo-seoul-dark.yaml create mode 100644 themes/neo-seoul-light.yaml create mode 100644 themes/neo-vscode-theme.yaml create mode 100644 themes/neodark.yaml create mode 100644 themes/neofusion.yaml create mode 100644 themes/neogenesis.yaml create mode 100644 themes/neokai.yaml create mode 100644 themes/neon-black.yaml create mode 100644 themes/neon-color-dark-theme.yaml create mode 100644 themes/neon-cyber.yaml create mode 100644 themes/neon-cyberpunk.yaml create mode 100644 themes/neon-dream-code.yaml create mode 100644 themes/neon-dreams-neobrutalist.yaml create mode 100644 themes/neon-dusk.yaml create mode 100644 themes/neon-forest.yaml create mode 100644 themes/neon-glow.yaml create mode 100644 themes/neon-green-light.yaml create mode 100644 themes/neon-green-midnight.yaml create mode 100644 themes/neon-lights.yaml create mode 100644 themes/neon-matrix.yaml create mode 100644 themes/neon-noir.yaml create mode 100644 themes/neon-ocean.yaml create mode 100644 themes/neon-palette-themes-blue.yaml create mode 100644 themes/neon-purple-old-school.yaml create mode 100644 themes/neon-shimmer-amethyst-core.yaml create mode 100644 themes/neon-shimmer-bubblegum-punk.yaml create mode 100644 themes/neon-shimmer-crimson-drive.yaml create mode 100644 themes/neon-shimmer.yaml create mode 100644 themes/neon-side.yaml create mode 100644 themes/neon-sunset.yaml create mode 100644 themes/neon-synthwave.yaml create mode 100644 themes/neon-theme.yaml create mode 100644 themes/neon-trench-theme.yaml create mode 100644 themes/neon-violet.yaml create mode 100644 themes/neon.yaml create mode 100644 themes/neonaska.yaml create mode 100644 themes/neonite.yaml create mode 100644 themes/neonmist.yaml create mode 100644 themes/neonshaded.yaml create mode 100644 themes/neorose-vimpine.yaml create mode 100644 themes/neospace.yaml create mode 100644 themes/neospectrum-midnight.yaml create mode 100644 themes/neospectrum-mystic.yaml create mode 100644 themes/neovim-sp.yaml create mode 100644 themes/neovim-theme.yaml create mode 100644 themes/nephtis-dark.yaml create mode 100644 themes/nephtis-light.yaml create mode 100644 themes/nerc-one-dark-a.yaml create mode 100644 themes/nerc-one-dark-b.yaml create mode 100644 themes/nerd-light.yaml create mode 100644 themes/nero.yaml create mode 100644 themes/nestjs-codes.yaml create mode 100644 themes/netbeans-harmonized.yaml create mode 100644 themes/netbilla-blue.yaml create mode 100644 themes/netlify-theme.yaml create mode 100644 themes/netlify.yaml create mode 100644 themes/netrunnaz.yaml create mode 100644 themes/netstack.yaml create mode 100644 themes/nettsi-monokai-darker.yaml create mode 100644 themes/netuno.yaml create mode 100644 themes/neumatter-night.yaml create mode 100644 themes/neuraltone.yaml create mode 100644 themes/neutral-gray-minimalism-focus.yaml create mode 100644 themes/neutral.yaml create mode 100644 themes/neutralvi.yaml create mode 100644 themes/neutron.yaml create mode 100644 themes/nevada.yaml create mode 100644 themes/never-be-lost-day.yaml create mode 100644 themes/never-be-lost-night.yaml create mode 100644 themes/nevermore.yaml create mode 100644 themes/neverwhere.yaml create mode 100644 themes/nevo-black.yaml create mode 100644 themes/nevo-comfy.yaml create mode 100644 themes/nevo.yaml create mode 100644 themes/new-england-light-theme.yaml create mode 100644 themes/new-moon.yaml create mode 100644 themes/new-owl.yaml create mode 100644 themes/new-retro.yaml create mode 100644 themes/new-south-wales-dark.yaml create mode 100644 themes/new-south-wales-light.yaml create mode 100644 themes/new-sphere.yaml create mode 100644 themes/new-theme.yaml create mode 100644 themes/newdarktheme.yaml create mode 100644 themes/newera-dark-theme.yaml create mode 100644 themes/newrailscasts.yaml create mode 100644 themes/newspaperlike.yaml create mode 100644 themes/newsprint-c.yaml create mode 100644 themes/newsprint-invert.yaml create mode 100644 themes/newsprint-so.yaml create mode 100644 themes/newton-contrast.yaml create mode 100644 themes/newton-light.yaml create mode 100644 themes/newton-next-official.yaml create mode 100644 themes/newton.yaml create mode 100644 themes/newx-light.yaml create mode 100644 themes/next-theme.yaml create mode 100644 themes/nextcode.yaml create mode 100644 themes/nexus-dark.yaml create mode 100644 themes/nexus.yaml create mode 100644 themes/ngc-aurora-dawn.yaml create mode 100644 themes/ngc-aurora-night.yaml create mode 100644 themes/ngc-forest-retreat.yaml create mode 100644 themes/ngc-midnight-base.yaml create mode 100644 themes/ngoding-bro.yaml create mode 100644 themes/nibelung-dark.yaml create mode 100644 themes/nibelung.yaml create mode 100644 themes/nice-dark.yaml create mode 100644 themes/nicedark-fork.yaml create mode 100644 themes/nicedark.yaml create mode 100644 themes/nicely-neon.yaml create mode 100644 themes/nier-automata-light-theme.yaml create mode 100644 themes/nier-automata-theme.yaml create mode 100644 themes/night-aurora.yaml create mode 100644 themes/night-blossom.yaml create mode 100644 themes/night-blue-high.yaml create mode 100644 themes/night-city.yaml create mode 100644 themes/night-cyan.yaml create mode 100644 themes/night-dragon.yaml create mode 100644 themes/night-fae-theme.yaml create mode 100644 themes/night-market.yaml create mode 100644 themes/night-owl-oled-dim-100.yaml create mode 100644 themes/night-owl-oled-dim-75.yaml create mode 100644 themes/night-owl-oled-dim-80.yaml create mode 100644 themes/night-owl-oled-dim-85.yaml create mode 100644 themes/night-owl-oled-dim-90.yaml create mode 100644 themes/night-owl-oled-dim-95.yaml create mode 100644 themes/night-owl.yaml create mode 100644 themes/night-pink.yaml create mode 100644 themes/night-raccoon.yaml create mode 100644 themes/night-rainbow-darker.yaml create mode 100644 themes/night-rainbow-purple-haze.yaml create mode 100644 themes/night-rainbow.yaml create mode 100644 themes/night-stack-amber-crt.yaml create mode 100644 themes/night-stack-amber-dark.yaml create mode 100644 themes/night-stack-arctic-night.yaml create mode 100644 themes/night-stack-aurora.yaml create mode 100644 themes/night-stack-carbon-green.yaml create mode 100644 themes/night-stack-carbon.yaml create mode 100644 themes/night-stack-circuit.yaml create mode 100644 themes/night-stack-copper-dark.yaml create mode 100644 themes/night-stack-crimson-dark.yaml create mode 100644 themes/night-stack-deep-work.yaml create mode 100644 themes/night-stack-desert-dusk.yaml create mode 100644 themes/night-stack-dos-blue.yaml create mode 100644 themes/night-stack-ember-dark.yaml create mode 100644 themes/night-stack-eyestrain-green.yaml create mode 100644 themes/night-stack-forest-night.yaml create mode 100644 themes/night-stack-frost.yaml create mode 100644 themes/night-stack-graphite.yaml create mode 100644 themes/night-stack-green-neon.yaml create mode 100644 themes/night-stack-hacker-soft.yaml create mode 100644 themes/night-stack-hologram.yaml create mode 100644 themes/night-stack-indigo-dark.yaml create mode 100644 themes/night-stack-ion.yaml create mode 100644 themes/night-stack-low-contrast-pro.yaml create mode 100644 themes/night-stack-midnight-blue.yaml create mode 100644 themes/night-stack-mono-focus.yaml create mode 100644 themes/night-stack-neo-tokyo.yaml create mode 100644 themes/night-stack-night-city.yaml create mode 100644 themes/night-stack-noir.yaml create mode 100644 themes/night-stack-obsidian-glass.yaml create mode 100644 themes/night-stack-obsidian.yaml create mode 100644 themes/night-stack-ocean-abyss.yaml create mode 100644 themes/night-stack-onyx.yaml create mode 100644 themes/night-stack-phosphor-green.yaml create mode 100644 themes/night-stack-plasma.yaml create mode 100644 themes/night-stack-pure-hacker.yaml create mode 100644 themes/night-stack-quantum.yaml create mode 100644 themes/night-stack-retro-wave.yaml create mode 100644 themes/night-stack-slate.yaml create mode 100644 themes/night-stack-street-grid.yaml create mode 100644 themes/night-stack-teal-dark.yaml create mode 100644 themes/night-stack-titanium.yaml create mode 100644 themes/night-stack-violet-dark.yaml create mode 100644 themes/night-stack-zen-dark.yaml create mode 100644 themes/night-storm.yaml create mode 100644 themes/night-watchers.yaml create mode 100644 themes/night-wind-theme.yaml create mode 100644 themes/night-yellow.yaml create mode 100644 themes/night-zen.yaml create mode 100644 themes/night.yaml create mode 100644 themes/nightblue-1.yaml create mode 100644 themes/nightblue-oled-beta.yaml create mode 100644 themes/nightcall-no-italics.yaml create mode 100644 themes/nightchill.yaml create mode 100644 themes/nightcode.yaml create mode 100644 themes/nightdream-monokai.yaml create mode 100644 themes/nightdream.yaml create mode 100644 themes/nightfly.yaml create mode 100644 themes/nightfox.yaml create mode 100644 themes/nighthawk.yaml create mode 100644 themes/nightlife.yaml create mode 100644 themes/nightly-code.yaml create mode 100644 themes/nightly-inspiration-dark.yaml create mode 100644 themes/nightmare.yaml create mode 100644 themes/nightnode.yaml create mode 100644 themes/nightshade.yaml create mode 100644 themes/nightshift-lobo-dawn.yaml create mode 100644 themes/nightshiftlobo-obsidian.yaml create mode 100644 themes/nightshiftlobo-shadow.yaml create mode 100644 themes/nightshiftlobo.yaml create mode 100644 themes/nightsky.yaml create mode 100644 themes/nightswell.yaml create mode 100644 themes/nightwing.yaml create mode 100644 themes/nighty-purple-color-theme.yaml create mode 100644 themes/nigthwolf-color-theme.yaml create mode 100644 themes/nihilleaf-theme.yaml create mode 100644 themes/niketa-pop-dark.yaml create mode 100644 themes/niketa-pop-light.yaml create mode 100644 themes/niketaoasis.yaml create mode 100644 themes/niketaplus.yaml create mode 100644 themes/niketaprettier.yaml create mode 100644 themes/niko-s-techlabs-dark.yaml create mode 100644 themes/nikso-vscode-theme-dark.yaml create mode 100644 themes/nil-ui.yaml create mode 100644 themes/nimbus-mint-light.yaml create mode 100644 themes/ninjadark.yaml create mode 100644 themes/nitrous-theme-dark.yaml create mode 100644 themes/nivtheme.yaml create mode 100644 themes/nix.yaml create mode 100644 themes/njord.yaml create mode 100644 themes/nkalai-dark.yaml create mode 100644 themes/nkalai-light.yaml create mode 100644 themes/nloo-theme.yaml create mode 100644 themes/no-not-the-lava-it-burns-ahhh-fork.yaml create mode 100644 themes/no-pixie-blue-dark.yaml create mode 100644 themes/no-pixie-blue-light.yaml create mode 100644 themes/no-pixie-dark-high-contrast.yaml create mode 100644 themes/no-pixie-dark.yaml create mode 100644 themes/no-pixie-light-high-contrast.yaml create mode 100644 themes/no-pixie-light.yaml create mode 100644 themes/no-pixie-yellow-dark.yaml create mode 100644 themes/no-pixie-yellow-light.yaml create mode 100644 themes/noah-theme.yaml create mode 100644 themes/noctaliatheme.yaml create mode 100644 themes/noctilux.yaml create mode 100644 themes/noctis-azureus.yaml create mode 100644 themes/noctis-bordo.yaml create mode 100644 themes/noctis-hibernus.yaml create mode 100644 themes/noctis-high-contrast.yaml create mode 100644 themes/noctis-lilac.yaml create mode 100644 themes/noctis-lux-ansi-16.yaml create mode 100644 themes/noctis-lux-dean-s-version.yaml create mode 100644 themes/noctis-lux.yaml create mode 100644 themes/noctis-minimus.yaml create mode 100644 themes/noctis-obscuro.yaml create mode 100644 themes/noctis-red-flow.yaml create mode 100644 themes/noctis-sereno.yaml create mode 100644 themes/noctis-uva.yaml create mode 100644 themes/noctis-viola.yaml create mode 100644 themes/noctis.yaml create mode 100644 themes/noctua-black-rose.yaml create mode 100644 themes/noctua-dark-leaf.yaml create mode 100644 themes/noctua-grass.yaml create mode 100644 themes/noctua-hidden-sky.yaml create mode 100644 themes/nocturnal.yaml create mode 100644 themes/nodr-cocoa.yaml create mode 100644 themes/nodr-plum.yaml create mode 100644 themes/noel.yaml create mode 100644 themes/noir-dark.yaml create mode 100644 themes/noir-dracula.yaml create mode 100644 themes/noir-essence-dark-border.yaml create mode 100644 themes/noir-essence-light.yaml create mode 100644 themes/noir-light.yaml create mode 100644 themes/noir-outrun.yaml create mode 100644 themes/noir-owl.yaml create mode 100644 themes/noir-poimandres-black.yaml create mode 100644 themes/noir-poimandres-dark.yaml create mode 100644 themes/noir-poimandres-darker.yaml create mode 100644 themes/noir-poimandres.yaml create mode 100644 themes/noir-ros-pine-grey.yaml create mode 100644 themes/noir-ros-pine-moon-grey.yaml create mode 100644 themes/noir-tokyo-night-black.yaml create mode 100644 themes/noir-tokyo-night.yaml create mode 100644 themes/noirex.yaml create mode 100644 themes/noirzen.yaml create mode 100644 themes/nokion-clean.yaml create mode 100644 themes/noll-tta.yaml create mode 100644 themes/non-arbitrary-colors-theme.yaml create mode 100644 themes/noname-ui-next.yaml create mode 100644 themes/noname-ui.yaml create mode 100644 themes/noori.yaml create mode 100644 themes/noparanoia.yaml create mode 100644 themes/nora-dark.yaml create mode 100644 themes/nora-light-bordered.yaml create mode 100644 themes/nord-bunker.yaml create mode 100644 themes/nord-dark-contrast.yaml create mode 100644 themes/nord-dark-pro.yaml create mode 100644 themes/nord-deep.yaml create mode 100644 themes/nord-frost.yaml create mode 100644 themes/nord-jujoco.yaml create mode 100644 themes/nord-midnight.yaml create mode 100644 themes/nord-native.yaml create mode 100644 themes/nord-operator-theme.yaml create mode 100644 themes/nord-palette.yaml create mode 100644 themes/nord-zero.yaml create mode 100644 themes/nord.yaml create mode 100644 themes/nordfox.yaml create mode 100644 themes/nordic-dark.yaml create mode 100644 themes/nordic-electric-ai-nocturne.yaml create mode 100644 themes/nordic.yaml create mode 100644 themes/nordicbox.yaml create mode 100644 themes/nordicdark.yaml create mode 100644 themes/nordico.yaml create mode 100644 themes/nordishcocoa.yaml create mode 100644 themes/northeirn.yaml create mode 100644 themes/northern-territory-dark.yaml create mode 100644 themes/northern-territory-light.yaml create mode 100644 themes/nosk-theme.yaml create mode 100644 themes/nostromo.yaml create mode 100644 themes/not-so-simple.yaml create mode 100644 themes/notchy-dark.yaml create mode 100644 themes/notesocean-vs-code-theme.yaml create mode 100644 themes/notflask-theme-light.yaml create mode 100644 themes/nothing-dark.yaml create mode 100644 themes/nothing-light.yaml create mode 100644 themes/nothing-os-dark.yaml create mode 100644 themes/nothing-os-gray.yaml create mode 100644 themes/notion-code-theme.yaml create mode 100644 themes/notionliketheme.yaml create mode 100644 themes/notthevimguytheme.yaml create mode 100644 themes/nova.yaml create mode 100644 themes/novadust.yaml create mode 100644 themes/november-theme-black.yaml create mode 100644 themes/november-theme-darkblue.yaml create mode 100644 themes/nox.yaml create mode 100644 themes/noxis-light.yaml create mode 100644 themes/noxis.yaml create mode 100644 themes/noxus.yaml create mode 100644 themes/npp-color-dark-hard.yaml create mode 100644 themes/npp-color-light-hard.yaml create mode 100644 themes/nstlgy-dark-josh-w-comeau-inspired.yaml create mode 100644 themes/ntt1.yaml create mode 100644 themes/nuclear-z-light.yaml create mode 100644 themes/nudark.yaml create mode 100644 themes/nuitp-le-theme.yaml create mode 100644 themes/null-theme-absolute-black.yaml create mode 100644 themes/null-theme-electric-enhanced.yaml create mode 100644 themes/null-theme-midnight-enhanced.yaml create mode 100644 themes/null-theme-muted.yaml create mode 100644 themes/null-theme-near-black.yaml create mode 100644 themes/null-theme-pastel.yaml create mode 100644 themes/null-theme-synthwave.yaml create mode 100644 themes/null-theme-vivid.yaml create mode 100644 themes/nultramarine.yaml create mode 100644 themes/nulzo-relax.yaml create mode 100644 themes/nulzo-winter-light.yaml create mode 100644 themes/nur-dark.yaml create mode 100644 themes/nur-light.yaml create mode 100644 themes/nushu-classic.yaml create mode 100644 themes/nushu-dark.yaml create mode 100644 themes/nushu-light.yaml create mode 100644 themes/nutheme.yaml create mode 100644 themes/nutty-dark-theme.yaml create mode 100644 themes/nutty-light-theme.yaml create mode 100644 themes/nuxt-blend-bleach-color-theme.yaml create mode 100644 themes/nuxt-blend.yaml create mode 100644 themes/nuxtian-deep-space.yaml create mode 100644 themes/nuxtian-light.yaml create mode 100644 themes/nuxtian-nitro.yaml create mode 100644 themes/nuxtian.yaml create mode 100644 themes/nuxtiansololevel.yaml create mode 100644 themes/nuxtvite.yaml create mode 100644 themes/nuxtvoid.yaml create mode 100644 themes/nw21.yaml create mode 100644 themes/ny-city-lights-theme.yaml create mode 100644 themes/nyctophilia.yaml create mode 100644 themes/oa515.yaml create mode 100644 themes/oak-dark.yaml create mode 100644 themes/oak.yaml create mode 100644 themes/obanai-iguro.yaml create mode 100644 themes/obito-akatsuki-theme.yaml create mode 100644 themes/oblivion.yaml create mode 100644 themes/oboro.yaml create mode 100644 themes/obsidian-dark.yaml create mode 100644 themes/obsidian-ember.yaml create mode 100644 themes/obsidian-light.yaml create mode 100644 themes/obsidian-nova.yaml create mode 100644 themes/obsidian-pro-dark-blue-purple.yaml create mode 100644 themes/obsidian-pro-dark-pink-purple.yaml create mode 100644 themes/obsidian-pro-dark-purple-neon.yaml create mode 100644 themes/obsidian-pro-dark-purple-pastel.yaml create mode 100644 themes/obsidian-pro-dark-purple.yaml create mode 100644 themes/obsidian-pro-dark.yaml create mode 100644 themes/obsidian-pro-white-purple.yaml create mode 100644 themes/obsidian-pro-white.yaml create mode 100644 themes/obsidian-pulse-light-theme.yaml create mode 100644 themes/obsidian-pulse-theme.yaml create mode 100644 themes/obsidian-sea.yaml create mode 100644 themes/obsidian-sunset.yaml create mode 100644 themes/obsidian-void.yaml create mode 100644 themes/obsidian.yaml create mode 100644 themes/obsidianite-amoled.yaml create mode 100644 themes/obsidianite.yaml create mode 100644 themes/oc-7-light.yaml create mode 100644 themes/ocean-blue-theme.yaml create mode 100644 themes/ocean-breeze.yaml create mode 100644 themes/ocean-color-theme.yaml create mode 100644 themes/ocean-deep-depth-stability.yaml create mode 100644 themes/ocean-eyes-medium.yaml create mode 100644 themes/ocean-eyes.yaml create mode 100644 themes/ocean-high-contrast.yaml create mode 100644 themes/ocean-mist-light.yaml create mode 100644 themes/ocean-mist.yaml create mode 100644 themes/ocean-night.yaml create mode 100644 themes/ocean-theme.yaml create mode 100644 themes/ocean.yaml create mode 100644 themes/oceana.yaml create mode 100644 themes/oceanic-solitude.yaml create mode 100644 themes/oceanic-wind-cool.yaml create mode 100644 themes/oceanic-wind-warm.yaml create mode 100644 themes/oceanic-wind.yaml create mode 100644 themes/oceans-of-andromeda.yaml create mode 100644 themes/ochre-dark-midnight.yaml create mode 100644 themes/ochre-dark.yaml create mode 100644 themes/ochre-light-snow.yaml create mode 100644 themes/ochre-light.yaml create mode 100644 themes/octalide.yaml create mode 100644 themes/octo-dark-one.yaml create mode 100644 themes/octo-light.yaml create mode 100644 themes/octopus-theme.yaml create mode 100644 themes/odyssey-night.yaml create mode 100644 themes/office-light.yaml create mode 100644 themes/ogone.yaml create mode 100644 themes/oh-dark-pro.yaml create mode 100644 themes/ohiostate-fork.yaml create mode 100644 themes/ohled-aliceblue.yaml create mode 100644 themes/ohled-antiquewhite.yaml create mode 100644 themes/ohled-aqua.yaml create mode 100644 themes/ohled-aquamarine.yaml create mode 100644 themes/ohled-azure.yaml create mode 100644 themes/ohled-beige.yaml create mode 100644 themes/ohled-bisque.yaml create mode 100644 themes/ohled-blanchedalmond.yaml create mode 100644 themes/ohled-blue.yaml create mode 100644 themes/ohled-blueviolet.yaml create mode 100644 themes/ohled-brown.yaml create mode 100644 themes/ohled-burlywood.yaml create mode 100644 themes/ohled-cadetblue.yaml create mode 100644 themes/ohled-chartreuse.yaml create mode 100644 themes/ohled-chocolate.yaml create mode 100644 themes/ohled-coral.yaml create mode 100644 themes/ohled-cornflowerblue.yaml create mode 100644 themes/ohled-cornsilk.yaml create mode 100644 themes/ohled-crimson.yaml create mode 100644 themes/ohled-darkblue.yaml create mode 100644 themes/ohled-darkcyan.yaml create mode 100644 themes/ohled-darkgoldenrod.yaml create mode 100644 themes/ohled-darkgray.yaml create mode 100644 themes/ohled-darkgreen.yaml create mode 100644 themes/ohled-darkkhaki.yaml create mode 100644 themes/ohled-darkmagenta.yaml create mode 100644 themes/ohled-darkolivegreen.yaml create mode 100644 themes/ohled-darkorange.yaml create mode 100644 themes/ohled-darkorchid.yaml create mode 100644 themes/ohled-darkred.yaml create mode 100644 themes/ohled-darksalmon.yaml create mode 100644 themes/ohled-darkseagreen.yaml create mode 100644 themes/ohled-darkslateblue.yaml create mode 100644 themes/ohled-darkslategray.yaml create mode 100644 themes/ohled-darkturquoise.yaml create mode 100644 themes/ohled-darkviolet.yaml create mode 100644 themes/ohled-deeppink.yaml create mode 100644 themes/ohled-deepskyblue.yaml create mode 100644 themes/ohled-dimgray.yaml create mode 100644 themes/ohled-dodgerblue.yaml create mode 100644 themes/ohled-firebrick.yaml create mode 100644 themes/ohled-forestgreen.yaml create mode 100644 themes/ohled-fuchsia.yaml create mode 100644 themes/ohled-gainsboro.yaml create mode 100644 themes/ohled-ghostwhite.yaml create mode 100644 themes/ohled-gold.yaml create mode 100644 themes/ohled-goldenrod.yaml create mode 100644 themes/ohled-gray.yaml create mode 100644 themes/ohled-green.yaml create mode 100644 themes/ohled-greenyellow.yaml create mode 100644 themes/ohled-honeydew.yaml create mode 100644 themes/ohled-hotpink.yaml create mode 100644 themes/ohled-indianred.yaml create mode 100644 themes/ohled-indigo.yaml create mode 100644 themes/ohled-ivory.yaml create mode 100644 themes/ohled-khaki.yaml create mode 100644 themes/ohled-lavender.yaml create mode 100644 themes/ohled-lavenderblush.yaml create mode 100644 themes/ohled-lawngreen.yaml create mode 100644 themes/ohled-lemonchiffon.yaml create mode 100644 themes/ohled-lightblue.yaml create mode 100644 themes/ohled-lightcoral.yaml create mode 100644 themes/ohled-lightcyan.yaml create mode 100644 themes/ohled-lightgoldenrodyellow.yaml create mode 100644 themes/ohled-lightgray.yaml create mode 100644 themes/ohled-lightgreen.yaml create mode 100644 themes/ohled-lightpink.yaml create mode 100644 themes/ohled-lightsalmon.yaml create mode 100644 themes/ohled-lightseagreen.yaml create mode 100644 themes/ohled-lightskyblue.yaml create mode 100644 themes/ohled-lightslategray.yaml create mode 100644 themes/ohled-lightsteelblue.yaml create mode 100644 themes/ohled-lightyellow.yaml create mode 100644 themes/ohled-lime.yaml create mode 100644 themes/ohled-limegreen.yaml create mode 100644 themes/ohled-linen.yaml create mode 100644 themes/ohled-maroon.yaml create mode 100644 themes/ohled-mediumaquamarine.yaml create mode 100644 themes/ohled-mediumblue.yaml create mode 100644 themes/ohled-mediumorchid.yaml create mode 100644 themes/ohled-mediumpurple.yaml create mode 100644 themes/ohled-mediumseagreen.yaml create mode 100644 themes/ohled-mediumslateblue.yaml create mode 100644 themes/ohled-mediumspringgreen.yaml create mode 100644 themes/ohled-mediumturquoise.yaml create mode 100644 themes/ohled-mediumvioletred.yaml create mode 100644 themes/ohled-midnightblue.yaml create mode 100644 themes/ohled-mintcream.yaml create mode 100644 themes/ohled-mistyrose.yaml create mode 100644 themes/ohled-moccasin.yaml create mode 100644 themes/ohled-navajowhite.yaml create mode 100644 themes/ohled-navy.yaml create mode 100644 themes/ohled-oldlace.yaml create mode 100644 themes/ohled-olive.yaml create mode 100644 themes/ohled-olivedrab.yaml create mode 100644 themes/ohled-orange.yaml create mode 100644 themes/ohled-orangered.yaml create mode 100644 themes/ohled-orchid.yaml create mode 100644 themes/ohled-palegoldenrod.yaml create mode 100644 themes/ohled-palegreen.yaml create mode 100644 themes/ohled-paleturquoise.yaml create mode 100644 themes/ohled-palevioletred.yaml create mode 100644 themes/ohled-papayawhip.yaml create mode 100644 themes/ohled-peachpuff.yaml create mode 100644 themes/ohled-peru.yaml create mode 100644 themes/ohled-pink.yaml create mode 100644 themes/ohled-plum.yaml create mode 100644 themes/ohled-powderblue.yaml create mode 100644 themes/ohled-purple.yaml create mode 100644 themes/ohled-rebeccapurple.yaml create mode 100644 themes/ohled-red.yaml create mode 100644 themes/ohled-rosybrown.yaml create mode 100644 themes/ohled-royalblue.yaml create mode 100644 themes/ohled-saddlebrown.yaml create mode 100644 themes/ohled-salmon.yaml create mode 100644 themes/ohled-sandybrown.yaml create mode 100644 themes/ohled-seagreen.yaml create mode 100644 themes/ohled-seashell.yaml create mode 100644 themes/ohled-sienna.yaml create mode 100644 themes/ohled-silver.yaml create mode 100644 themes/ohled-skyblue.yaml create mode 100644 themes/ohled-slateblue.yaml create mode 100644 themes/ohled-slategray.yaml create mode 100644 themes/ohled-snow.yaml create mode 100644 themes/ohled-springgreen.yaml create mode 100644 themes/ohled-steelblue.yaml create mode 100644 themes/ohled-tan.yaml create mode 100644 themes/ohled-teal.yaml create mode 100644 themes/ohled-thistle.yaml create mode 100644 themes/ohled-tomato.yaml create mode 100644 themes/ohled-turquoise.yaml create mode 100644 themes/ohled-violet.yaml create mode 100644 themes/ohled-wheat.yaml create mode 100644 themes/ohled-white.yaml create mode 100644 themes/ohled-whitesmoke.yaml create mode 100644 themes/ohled-yellow.yaml create mode 100644 themes/ohled-yellowgreen.yaml create mode 100644 themes/ohled-yelloworange.yaml create mode 100644 themes/ohled-yellowpink.yaml create mode 100644 themes/ohled-yellowpurple.yaml create mode 100644 themes/okas-theme.yaml create mode 100644 themes/oldschool-terminal-green.yaml create mode 100644 themes/oldworld.yaml create mode 100644 themes/olive-dark.yaml create mode 100644 themes/olive-light.yaml create mode 100644 themes/omega.yaml create mode 100644 themes/omni-customized-dark.yaml create mode 100644 themes/omni-customized.yaml create mode 100644 themes/omni-dracula-dark.yaml create mode 100644 themes/omni-dracula-theme-tradicional-contrast.yaml create mode 100644 themes/omni-dracula-theme.yaml create mode 100644 themes/omni-dracula-wine-theme-tradicional.yaml create mode 100644 themes/omni-monokai-dark.yaml create mode 100644 themes/omni-pro.yaml create mode 100644 themes/omni.yaml create mode 100644 themes/omnisexual.yaml create mode 100644 themes/omnitrix-code.yaml create mode 100644 themes/omo-theme.yaml create mode 100644 themes/one-ai-theme.yaml create mode 100644 themes/one-dark-cloud-theme.yaml create mode 100644 themes/one-dark-code.yaml create mode 100644 themes/one-dark-darker-vivid.yaml create mode 100644 themes/one-dark-darker.yaml create mode 100644 themes/one-dark-modern-pro.yaml create mode 100644 themes/one-dark-night-blue-boy.yaml create mode 100644 themes/one-dark-night-eye-care.yaml create mode 100644 themes/one-dark-night-minimalist.yaml create mode 100644 themes/one-dark-night-professional.yaml create mode 100644 themes/one-dark-nx.yaml create mode 100644 themes/one-dark-pro-theme.yaml create mode 100644 themes/one-dark-pro-var-night.yaml create mode 100644 themes/one-dark-pro.yaml create mode 100644 themes/one-dark-vibrant-theme.yaml create mode 100644 themes/one-dark-vivid.yaml create mode 100644 themes/one-dark.yaml create mode 100644 themes/one-darker-pro.yaml create mode 100644 themes/one-darkpuccin-vivid-italic.yaml create mode 100644 themes/one-half-light-italic.yaml create mode 100644 themes/one-hunter-theme.yaml create mode 100644 themes/one-light-pro.yaml create mode 100644 themes/one-material.yaml create mode 100644 themes/one-midnight.yaml create mode 100644 themes/one-monokai-darker.yaml create mode 100644 themes/one-monokai-forked.yaml create mode 100644 themes/one-monokai-michota.yaml create mode 100644 themes/one-monokai-shadow.yaml create mode 100644 themes/one-monokai.yaml create mode 100644 themes/one-monokai1.yaml create mode 100644 themes/one-moon.yaml create mode 100644 themes/one-more-dark.yaml create mode 100644 themes/one-piece-dark.yaml create mode 100644 themes/one-piece-high-contrast.yaml create mode 100644 themes/one-piece-light.yaml create mode 100644 themes/one-piece-straw-hat-red.yaml create mode 100644 themes/onebitcode-theme.yaml create mode 100644 themes/onebitcode.yaml create mode 100644 themes/onecalm.yaml create mode 100644 themes/onedark-nvim.yaml create mode 100644 themes/onedark-pro-suhayb-s-version-v2.yaml create mode 100644 themes/oneiroi-caffeine.yaml create mode 100644 themes/oneiroi-dream.yaml create mode 100644 themes/oneiroi-melatonin.yaml create mode 100644 themes/onemonokai80s.yaml create mode 100644 themes/onemonokai80sog.yaml create mode 100644 themes/onenv.yaml create mode 100644 themes/oni-theme.yaml create mode 100644 themes/onlydark.yaml create mode 100644 themes/onora.yaml create mode 100644 themes/onyx-core.yaml create mode 100644 themes/onyx-ghost.yaml create mode 100644 themes/onyx-theme-color.yaml create mode 100644 themes/onyx.yaml create mode 100644 themes/ook.yaml create mode 100644 themes/oolory-dark-color-theme.yaml create mode 100644 themes/openbase.yaml create mode 100644 themes/openspace-dark-flat.yaml create mode 100644 themes/openspace-dark.yaml create mode 100644 themes/openspace.yaml create mode 100644 themes/optimus-dark.yaml create mode 100644 themes/oq-dark-soft.yaml create mode 100644 themes/oq-dark.yaml create mode 100644 themes/oq-light-soft.yaml create mode 100644 themes/oq-light.yaml create mode 100644 themes/oradia.yaml create mode 100644 themes/oragethemedark.yaml create mode 100644 themes/orago-s-warm-theme.yaml create mode 100644 themes/orange-coral.yaml create mode 100644 themes/orange-dark.yaml create mode 100644 themes/orange.yaml create mode 100644 themes/orangefox-dark.yaml create mode 100644 themes/orangefox-light.yaml create mode 100644 themes/orangelemon.yaml create mode 100644 themes/orangey-darker-1.yaml create mode 100644 themes/orangey-darker-2.yaml create mode 100644 themes/orangey-lighter-1.yaml create mode 100644 themes/orangey-lighter-2.yaml create mode 100644 themes/orangey.yaml create mode 100644 themes/orbi-blue.yaml create mode 100644 themes/orbi-green.yaml create mode 100644 themes/orca.yaml create mode 100644 themes/origami-theme.yaml create mode 100644 themes/origamid.yaml create mode 100644 themes/original-theme.yaml create mode 100644 themes/orion-x-black.yaml create mode 100644 themes/orpheux.yaml create mode 100644 themes/orwellian-nightmare.yaml create mode 100644 themes/osaka-solarized-pro-dark.yaml create mode 100644 themes/osaka-solarized-pro-light.yaml create mode 100644 themes/osaka-solarized-pro-monokai-storm.yaml create mode 100644 themes/oslo-dark.yaml create mode 100644 themes/osmoz-dark.yaml create mode 100644 themes/osx9.yaml create mode 100644 themes/otakon-contrast.yaml create mode 100644 themes/otakon-light.yaml create mode 100644 themes/otakon.yaml create mode 100644 themes/outrun-contrast.yaml create mode 100644 themes/outrun-dark.yaml create mode 100644 themes/overflow-contrast.yaml create mode 100644 themes/overflow-light.yaml create mode 100644 themes/overflow.yaml create mode 100644 themes/overload.yaml create mode 100644 themes/overnight-italic.yaml create mode 100644 themes/owlet-default.yaml create mode 100644 themes/owlet-material.yaml create mode 100644 themes/owlet-mono.yaml create mode 100644 themes/owlet-outrun.yaml create mode 100644 themes/owlet-solarized.yaml create mode 100644 themes/owokai-hard.yaml create mode 100644 themes/owokai.yaml create mode 100644 themes/oxide.yaml create mode 100644 themes/oxocarbon-5.yaml create mode 100644 themes/oxocarbon-compatibility.yaml create mode 100644 themes/oxocarbon-monochrom-compatibility.yaml create mode 100644 themes/oxocarbon-oled-compatibility.yaml create mode 100644 themes/oxocarbon-oled-monochrom-compatibility.yaml create mode 100644 themes/oxocarbon-oled-monochrom.yaml create mode 100644 themes/oxocarbon-port.yaml create mode 100644 themes/oxocarbonix-dark-theme.yaml create mode 100644 themes/ozurac.yaml create mode 100644 themes/ozzy.yaml create mode 100644 themes/p-black.yaml create mode 100644 themes/p-citadel.yaml create mode 100644 themes/p-crimson.yaml create mode 100644 themes/p-dark.yaml create mode 100644 themes/p-eggplant.yaml create mode 100644 themes/p-emerald.yaml create mode 100644 themes/p-eucalyptus.yaml create mode 100644 themes/p-floresta.yaml create mode 100644 themes/p-frost.yaml create mode 100644 themes/p-genmaicha.yaml create mode 100644 themes/p-grizzly.yaml create mode 100644 themes/p-haze.yaml create mode 100644 themes/p-inkstone.yaml create mode 100644 themes/p-leipzig.yaml create mode 100644 themes/p-light.yaml create mode 100644 themes/p-machine.yaml create mode 100644 themes/p-mist.yaml create mode 100644 themes/p-neptune.yaml create mode 100644 themes/p-nk.yaml create mode 100644 themes/p-ornithopter.yaml create mode 100644 themes/p-ox.yaml create mode 100644 themes/p-terabyte.yaml create mode 100644 themes/p-ultramarine.yaml create mode 100644 themes/p-wolf.yaml create mode 100644 themes/p-yesterday.yaml create mode 100644 themes/p-zenith.yaml create mode 100644 themes/p33t.yaml create mode 100644 themes/pace-dark.yaml create mode 100644 themes/pace-light.yaml create mode 100644 themes/padrepio.yaml create mode 100644 themes/paigio.yaml create mode 100644 themes/pale-blue.yaml create mode 100644 themes/pale-boreal-dark.yaml create mode 100644 themes/palenight-italic.yaml create mode 100644 themes/palenight-material.yaml create mode 100644 themes/palenight-pro.yaml create mode 100644 themes/palenight-theme.yaml create mode 100644 themes/palenight.yaml create mode 100644 themes/palespring.yaml create mode 100644 themes/palestorm-x.yaml create mode 100644 themes/palestorm.yaml create mode 100644 themes/palette.yaml create mode 100644 themes/pall-theme.yaml create mode 100644 themes/panda-blue.yaml create mode 100644 themes/panda-dark.yaml create mode 100644 themes/pandju-no-italics.yaml create mode 100644 themes/pantasio.yaml create mode 100644 themes/pantone-amber-dark.yaml create mode 100644 themes/pantone-amber-light.yaml create mode 100644 themes/pantone-aqua-dark.yaml create mode 100644 themes/pantone-aqua-light.yaml create mode 100644 themes/pantone-aqua-sky-dark.yaml create mode 100644 themes/pantone-aqua-sky-light.yaml create mode 100644 themes/pantone-baby-blue-dark.yaml create mode 100644 themes/pantone-baby-blue-light.yaml create mode 100644 themes/pantone-blue-iris-dark.yaml create mode 100644 themes/pantone-blue-iris-light.yaml create mode 100644 themes/pantone-blue-turquoise-dark.yaml create mode 100644 themes/pantone-blue-turquoise-light.yaml create mode 100644 themes/pantone-blush-dark.yaml create mode 100644 themes/pantone-blush-light.yaml create mode 100644 themes/pantone-blush-pink-dark.yaml create mode 100644 themes/pantone-blush-pink-light.yaml create mode 100644 themes/pantone-brick-red-dark.yaml create mode 100644 themes/pantone-brick-red-light.yaml create mode 100644 themes/pantone-bright-green-dark.yaml create mode 100644 themes/pantone-bright-green-light.yaml create mode 100644 themes/pantone-burgundy-dark.yaml create mode 100644 themes/pantone-burgundy-light.yaml create mode 100644 themes/pantone-burnt-orange-dark.yaml create mode 100644 themes/pantone-burnt-orange-light.yaml create mode 100644 themes/pantone-cerulean-dark.yaml create mode 100644 themes/pantone-cerulean-light.yaml create mode 100644 themes/pantone-chartreuse-dark.yaml create mode 100644 themes/pantone-chartreuse-light.yaml create mode 100644 themes/pantone-chili-pepper-dark.yaml create mode 100644 themes/pantone-chili-pepper-light.yaml create mode 100644 themes/pantone-chocolate-dark.yaml create mode 100644 themes/pantone-chocolate-light.yaml create mode 100644 themes/pantone-classic-blue-dark.yaml create mode 100644 themes/pantone-classic-blue-light.yaml create mode 100644 themes/pantone-classic-red-dark.yaml create mode 100644 themes/pantone-classic-red-light.yaml create mode 100644 themes/pantone-cobalt-blue-dark.yaml create mode 100644 themes/pantone-cobalt-blue-light.yaml create mode 100644 themes/pantone-coral-dark.yaml create mode 100644 themes/pantone-coral-light.yaml create mode 100644 themes/pantone-cornflower-blue-dark.yaml create mode 100644 themes/pantone-cornflower-blue-light.yaml create mode 100644 themes/pantone-cyan-dark.yaml create mode 100644 themes/pantone-cyan-light.yaml create mode 100644 themes/pantone-dark-brown-dark.yaml create mode 100644 themes/pantone-dark-brown-light.yaml create mode 100644 themes/pantone-dark-maroon-dark.yaml create mode 100644 themes/pantone-dark-maroon-light.yaml create mode 100644 themes/pantone-dark-red-dark.yaml create mode 100644 themes/pantone-dark-red-light.yaml create mode 100644 themes/pantone-deep-pink-dark.yaml create mode 100644 themes/pantone-deep-pink-light.yaml create mode 100644 themes/pantone-dusty-blue-dark.yaml create mode 100644 themes/pantone-dusty-blue-light.yaml create mode 100644 themes/pantone-emerald-dark.yaml create mode 100644 themes/pantone-emerald-light.yaml create mode 100644 themes/pantone-flame-orange-dark.yaml create mode 100644 themes/pantone-flame-orange-light.yaml create mode 100644 themes/pantone-forest-green-dark.yaml create mode 100644 themes/pantone-forest-green-light.yaml create mode 100644 themes/pantone-fuchsia-rose-dark.yaml create mode 100644 themes/pantone-fuchsia-rose-light.yaml create mode 100644 themes/pantone-gold-dark.yaml create mode 100644 themes/pantone-gold-light.yaml create mode 100644 themes/pantone-golden-yellow-dark.yaml create mode 100644 themes/pantone-golden-yellow-light.yaml create mode 100644 themes/pantone-graphite-dark.yaml create mode 100644 themes/pantone-graphite-light.yaml create mode 100644 themes/pantone-green-dark.yaml create mode 100644 themes/pantone-green-light.yaml create mode 100644 themes/pantone-greenery-dark.yaml create mode 100644 themes/pantone-greenery-light.yaml create mode 100644 themes/pantone-honeysuckle-dark.yaml create mode 100644 themes/pantone-honeysuckle-light.yaml create mode 100644 themes/pantone-hot-pink-dark.yaml create mode 100644 themes/pantone-hot-pink-light.yaml create mode 100644 themes/pantone-ice-blue-dark.yaml create mode 100644 themes/pantone-ice-blue-light.yaml create mode 100644 themes/pantone-illuminating-dark.yaml create mode 100644 themes/pantone-illuminating-light.yaml create mode 100644 themes/pantone-indigo-dark.yaml create mode 100644 themes/pantone-indigo-light.yaml create mode 100644 themes/pantone-khaki-dark.yaml create mode 100644 themes/pantone-khaki-light.yaml create mode 100644 themes/pantone-lavender-dark.yaml create mode 100644 themes/pantone-lavender-light.yaml create mode 100644 themes/pantone-lilac-dark.yaml create mode 100644 themes/pantone-lilac-light.yaml create mode 100644 themes/pantone-lime-green-dark.yaml create mode 100644 themes/pantone-lime-green-light.yaml create mode 100644 themes/pantone-living-coral-dark.yaml create mode 100644 themes/pantone-living-coral-light.yaml create mode 100644 themes/pantone-marsala-dark.yaml create mode 100644 themes/pantone-marsala-light.yaml create mode 100644 themes/pantone-mauve-dark.yaml create mode 100644 themes/pantone-mauve-light.yaml create mode 100644 themes/pantone-mimosa-dark.yaml create mode 100644 themes/pantone-mimosa-light.yaml create mode 100644 themes/pantone-mint-green-dark.yaml create mode 100644 themes/pantone-mint-green-light.yaml create mode 100644 themes/pantone-mocha-mousse-dark.yaml create mode 100644 themes/pantone-mocha-mousse-light.yaml create mode 100644 themes/pantone-navy-dark.yaml create mode 100644 themes/pantone-navy-light.yaml create mode 100644 themes/pantone-neon-blue-dark.yaml create mode 100644 themes/pantone-neon-blue-light.yaml create mode 100644 themes/pantone-neon-green-dark.yaml create mode 100644 themes/pantone-neon-green-light.yaml create mode 100644 themes/pantone-neon-orange-dark.yaml create mode 100644 themes/pantone-neon-orange-light.yaml create mode 100644 themes/pantone-neon-pink-dark.yaml create mode 100644 themes/pantone-neon-pink-light.yaml create mode 100644 themes/pantone-neon-yellow-dark.yaml create mode 100644 themes/pantone-neon-yellow-light.yaml create mode 100644 themes/pantone-olive-green-dark.yaml create mode 100644 themes/pantone-olive-green-light.yaml create mode 100644 themes/pantone-orange-dark.yaml create mode 100644 themes/pantone-orange-light.yaml create mode 100644 themes/pantone-peach-dark.yaml create mode 100644 themes/pantone-peach-fuzz-dark.yaml create mode 100644 themes/pantone-peach-fuzz-light.yaml create mode 100644 themes/pantone-peach-light.yaml create mode 100644 themes/pantone-peacock-green-dark.yaml create mode 100644 themes/pantone-peacock-green-light.yaml create mode 100644 themes/pantone-pewter-dark.yaml create mode 100644 themes/pantone-pewter-light.yaml create mode 100644 themes/pantone-plum-dark.yaml create mode 100644 themes/pantone-plum-light.yaml create mode 100644 themes/pantone-poppy-dark.yaml create mode 100644 themes/pantone-poppy-light.yaml create mode 100644 themes/pantone-process-blue-dark.yaml create mode 100644 themes/pantone-process-blue-light.yaml create mode 100644 themes/pantone-purple-dark.yaml create mode 100644 themes/pantone-purple-light.yaml create mode 100644 themes/pantone-radiant-orchid-dark.yaml create mode 100644 themes/pantone-radiant-orchid-light.yaml create mode 100644 themes/pantone-rose-quartz-dark.yaml create mode 100644 themes/pantone-rose-quartz-light.yaml create mode 100644 themes/pantone-royal-blue-dark.yaml create mode 100644 themes/pantone-royal-blue-light.yaml create mode 100644 themes/pantone-ruby-dark.yaml create mode 100644 themes/pantone-ruby-light.yaml create mode 100644 themes/pantone-saffron-dark.yaml create mode 100644 themes/pantone-saffron-light.yaml create mode 100644 themes/pantone-sage-dark.yaml create mode 100644 themes/pantone-sage-light.yaml create mode 100644 themes/pantone-salmon-dark.yaml create mode 100644 themes/pantone-salmon-light.yaml create mode 100644 themes/pantone-sand-dark.yaml create mode 100644 themes/pantone-sand-dollar-dark.yaml create mode 100644 themes/pantone-sand-dollar-light.yaml create mode 100644 themes/pantone-sand-light.yaml create mode 100644 themes/pantone-serenity-dark.yaml create mode 100644 themes/pantone-serenity-light.yaml create mode 100644 themes/pantone-sienna-dark.yaml create mode 100644 themes/pantone-sienna-light.yaml create mode 100644 themes/pantone-silver-dark.yaml create mode 100644 themes/pantone-silver-light.yaml create mode 100644 themes/pantone-sky-blue-dark.yaml create mode 100644 themes/pantone-sky-blue-light.yaml create mode 100644 themes/pantone-slate-blue-dark.yaml create mode 100644 themes/pantone-slate-blue-light.yaml create mode 100644 themes/pantone-steel-blue-dark.yaml create mode 100644 themes/pantone-steel-blue-light.yaml create mode 100644 themes/pantone-tan-dark.yaml create mode 100644 themes/pantone-tan-light.yaml create mode 100644 themes/pantone-tangerine-tango-dark.yaml create mode 100644 themes/pantone-tangerine-tango-light.yaml create mode 100644 themes/pantone-teal-dark.yaml create mode 100644 themes/pantone-teal-light.yaml create mode 100644 themes/pantone-tigerlily-dark.yaml create mode 100644 themes/pantone-tigerlily-light.yaml create mode 100644 themes/pantone-true-red-dark.yaml create mode 100644 themes/pantone-true-red-light.yaml create mode 100644 themes/pantone-turquoise-classic-dark.yaml create mode 100644 themes/pantone-turquoise-classic-light.yaml create mode 100644 themes/pantone-turquoise-dark.yaml create mode 100644 themes/pantone-turquoise-light.yaml create mode 100644 themes/pantone-ultimate-gray-dark.yaml create mode 100644 themes/pantone-ultimate-gray-light.yaml create mode 100644 themes/pantone-ultra-violet-dark.yaml create mode 100644 themes/pantone-ultra-violet-light.yaml create mode 100644 themes/pantone-very-peri-dark.yaml create mode 100644 themes/pantone-very-peri-light.yaml create mode 100644 themes/pantone-violet-dark.yaml create mode 100644 themes/pantone-violet-light.yaml create mode 100644 themes/pantone-viva-magenta-dark.yaml create mode 100644 themes/pantone-viva-magenta-light.yaml create mode 100644 themes/pantone-warm-gray-dark.yaml create mode 100644 themes/pantone-warm-gray-light.yaml create mode 100644 themes/pantone-warm-red-dark.yaml create mode 100644 themes/pantone-warm-red-light.yaml create mode 100644 themes/pantone-wheat-dark.yaml create mode 100644 themes/pantone-wheat-light.yaml create mode 100644 themes/pantone-wine-dark.yaml create mode 100644 themes/pantone-wine-light.yaml create mode 100644 themes/pantone-yellow-dark.yaml create mode 100644 themes/pantone-yellow-green-dark.yaml create mode 100644 themes/pantone-yellow-green-light.yaml create mode 100644 themes/pantone-yellow-light.yaml create mode 100644 themes/papaya.yaml create mode 100644 themes/papercolordark.yaml create mode 100644 themes/paradise.yaml create mode 100644 themes/parakeet-theme.yaml create mode 100644 themes/parchment-candlelight-color-theme.yaml create mode 100644 themes/parchment-codex-color-theme.yaml create mode 100644 themes/parchment-digitized-color-theme.yaml create mode 100644 themes/parchment-starlight-color-theme.yaml create mode 100644 themes/parchment.yaml create mode 100644 themes/pare-colors-theme.yaml create mode 100644 themes/parkside-light.yaml create mode 100644 themes/paro-paro-solarized-dark-theme.yaml create mode 100644 themes/pastel-contrast.yaml create mode 100644 themes/pastel-inu.yaml create mode 100644 themes/pastel-light.yaml create mode 100644 themes/pastel.yaml create mode 100644 themes/pastelefull.yaml create mode 100644 themes/pastelfairy.yaml create mode 100644 themes/pastellize-dark-muted.yaml create mode 100644 themes/patina-colors.yaml create mode 100644 themes/patina-dark-soft.yaml create mode 100644 themes/patina-dark.yaml create mode 100644 themes/patina-light.yaml create mode 100644 themes/patina-stellar.yaml create mode 100644 themes/patr-theme.yaml create mode 100644 themes/patricklimax.yaml create mode 100644 themes/patriot-contrast.yaml create mode 100644 themes/patriot-light.yaml create mode 100644 themes/patriot.yaml create mode 100644 themes/paulera-s-dark-monokai.yaml create mode 100644 themes/paulera-s-lyo.yaml create mode 100644 themes/paztels.yaml create mode 100644 themes/peaceful-mind.yaml create mode 100644 themes/peachy-dolphin.yaml create mode 100644 themes/peachy.yaml create mode 100644 themes/peacock-contrast.yaml create mode 100644 themes/peacock-light.yaml create mode 100644 themes/peacock.yaml create mode 100644 themes/peacocks-in-space-contrast.yaml create mode 100644 themes/peacocks-in-space-light.yaml create mode 100644 themes/peacocks-in-space.yaml create mode 100644 themes/peel-contrast.yaml create mode 100644 themes/peel-light.yaml create mode 100644 themes/peel.yaml create mode 100644 themes/penitent-contrast.yaml create mode 100644 themes/penitent-light.yaml create mode 100644 themes/penitent.yaml create mode 100644 themes/penumbra-dark-contrast.yaml create mode 100644 themes/penumbra-dark.yaml create mode 100644 themes/penumbra-light.yaml create mode 100644 themes/perf-pink.yaml create mode 100644 themes/perfect-dark.yaml create mode 100644 themes/perfect-grey-pf-dark.yaml create mode 100644 themes/perfect-grey-pf-light.yaml create mode 100644 themes/periwinkle-color-theme.yaml create mode 100644 themes/periwinkle-soft-dark.yaml create mode 100644 themes/perplexity.yaml create mode 100644 themes/perry-the-platypus.yaml create mode 100644 themes/petrel.yaml create mode 100644 themes/pg-aqualung.yaml create mode 100644 themes/pg-blue-moon.yaml create mode 100644 themes/pg-forest.yaml create mode 100644 themes/pg-may-be-concrete.yaml create mode 100644 themes/pg-mud-puddle.yaml create mode 100644 themes/pg-plum-great.yaml create mode 100644 themes/pg-plum-groovy.yaml create mode 100644 themes/pg-punkin-spice.yaml create mode 100644 themes/pg-red-clay.yaml create mode 100644 themes/pg-ridgeline.yaml create mode 100644 themes/pg-ruby-clay.yaml create mode 100644 themes/pg-ruby-soho.yaml create mode 100644 themes/pg-slax.yaml create mode 100644 themes/pg-steely-daniel.yaml create mode 100644 themes/pglight.yaml create mode 100644 themes/phantom.yaml create mode 100644 themes/phocus.yaml create mode 100644 themes/phonebook-dark.yaml create mode 100644 themes/phonebook-light.yaml create mode 100644 themes/phosphor-amber-night.yaml create mode 100644 themes/phosphor-aurora.yaml create mode 100644 themes/phosphor-dark.yaml create mode 100644 themes/phosphor-dreams.yaml create mode 100644 themes/phosphor-event-horizon.yaml create mode 100644 themes/phosphor-forest.yaml create mode 100644 themes/phosphor-neon-noir.yaml create mode 100644 themes/phosphor-violet-dusk.yaml create mode 100644 themes/phosphorus-minor.yaml create mode 100644 themes/photon.yaml create mode 100644 themes/photonica-dark.yaml create mode 100644 themes/photonica-light.yaml create mode 100644 themes/photophore.yaml create mode 100644 themes/piattro.yaml create mode 100644 themes/pierre-dark.yaml create mode 100644 themes/pierre-light.yaml create mode 100644 themes/piggy-contrast.yaml create mode 100644 themes/piggy-light.yaml create mode 100644 themes/piggy.yaml create mode 100644 themes/pillirioen-italics.yaml create mode 100644 themes/pine-cone-theme.yaml create mode 100644 themes/pine-editor-light.yaml create mode 100644 themes/pine-forest-green-dark.yaml create mode 100644 themes/pine-forest.yaml create mode 100644 themes/pine-frizz.yaml create mode 100644 themes/pine-theme-blue.yaml create mode 100644 themes/pine-theme-dark-low-contrast.yaml create mode 100644 themes/pine-theme-grey.yaml create mode 100644 themes/pine-theme-original-dark-extend.yaml create mode 100644 themes/pine-theme-original-dark.yaml create mode 100644 themes/pineapple.yaml create mode 100644 themes/pines.yaml create mode 100644 themes/pingocho-dark.yaml create mode 100644 themes/pink-candy-dark-warm.yaml create mode 100644 themes/pink-candy-dark.yaml create mode 100644 themes/pink-candy-light.yaml create mode 100644 themes/pink-flower.yaml create mode 100644 themes/pink-neon.yaml create mode 100644 themes/pink-theme.yaml create mode 100644 themes/pink.yaml create mode 100644 themes/pinkandgreen.yaml create mode 100644 themes/pinkandwhite.yaml create mode 100644 themes/pinkcloud.yaml create mode 100644 themes/pinkcodes-pink.yaml create mode 100644 themes/pinkdark.yaml create mode 100644 themes/pinkdopeybug-primordial-origin.yaml create mode 100644 themes/pinkmare.yaml create mode 100644 themes/pinkppuccin.yaml create mode 100644 themes/pinky-promise-dark.yaml create mode 100644 themes/pinky-promise-light.yaml create mode 100644 themes/pinkyboo.yaml create mode 100644 themes/pinot-gris.yaml create mode 100644 themes/pinya-theme.yaml create mode 100644 themes/pipboy-theme.yaml create mode 100644 themes/pirulug-dark.yaml create mode 100644 themes/pirulug-ligt.yaml create mode 100644 themes/pistachio-madness.yaml create mode 100644 themes/pitaya-smoothie.yaml create mode 100644 themes/pittaya-theme-light.yaml create mode 100644 themes/pittaya-theme.yaml create mode 100644 themes/pittcsc-theme.yaml create mode 100644 themes/pixeye-theme.yaml create mode 100644 themes/pizarra.yaml create mode 100644 themes/plane.yaml create mode 100644 themes/plantillathemes.yaml create mode 100644 themes/plasma-pink.yaml create mode 100644 themes/plasticine.yaml create mode 100644 themes/plasticman.yaml create mode 100644 themes/platzi-theme.yaml create mode 100644 themes/playground-theme-dark.yaml create mode 100644 themes/playground-theme.yaml create mode 100644 themes/playground.yaml create mode 100644 themes/pleasure-contrast.yaml create mode 100644 themes/pleasure-light.yaml create mode 100644 themes/pleasure.yaml create mode 100644 themes/plotka-amethyst.yaml create mode 100644 themes/pls-my-eyes-sir.yaml create mode 100644 themes/plurpelvsc.yaml create mode 100644 themes/pluto-dark.yaml create mode 100644 themes/po.yaml create mode 100644 themes/poimandres-dark-theme.yaml create mode 100644 themes/polar-black-cherry-blossom.yaml create mode 100644 themes/polar-black-green-cactus.yaml create mode 100644 themes/polar-black-ice.yaml create mode 100644 themes/polar-black-less-black-smoke.yaml create mode 100644 themes/polar-black-light.yaml create mode 100644 themes/polar-black-red.yaml create mode 100644 themes/polar-black-savanna.yaml create mode 100644 themes/polar-black.yaml create mode 100644 themes/polar-ice-dark.yaml create mode 100644 themes/polar-ice-light.yaml create mode 100644 themes/polar-light.yaml create mode 100644 themes/polar-midnight.yaml create mode 100644 themes/polar-night.yaml create mode 100644 themes/polar.yaml create mode 100644 themes/polish.yaml create mode 100644 themes/polychrome-dark.yaml create mode 100644 themes/polychrome-light.yaml create mode 100644 themes/polygopher-theme.yaml create mode 100644 themes/polykai.yaml create mode 100644 themes/polymath.yaml create mode 100644 themes/pookie-dark.yaml create mode 100644 themes/poolside.yaml create mode 100644 themes/pop-os-cosmic.yaml create mode 100644 themes/popipa.yaml create mode 100644 themes/popping-and-locking-mod.yaml create mode 100644 themes/popping-and-locking.yaml create mode 100644 themes/popsicle-color-theme.yaml create mode 100644 themes/port-gellhorn-noir.yaml create mode 100644 themes/posh.yaml create mode 100644 themes/posterpole.yaml create mode 100644 themes/potpourri-contrast.yaml create mode 100644 themes/potpourri-light.yaml create mode 100644 themes/potpourri.yaml create mode 100644 themes/powder.yaml create mode 100644 themes/power-dark.yaml create mode 100644 themes/power-low-purple-theme.yaml create mode 100644 themes/poznajkubernetes.yaml create mode 100644 themes/ppy-like.yaml create mode 100644 themes/pr-theme-obsidian.yaml create mode 100644 themes/pr-theme-premium.yaml create mode 100644 themes/pr-theme.yaml create mode 100644 themes/pre.yaml create mode 100644 themes/prescient.yaml create mode 100644 themes/pretentious-name.yaml create mode 100644 themes/pretstyle.yaml create mode 100644 themes/pretty-dark-theme.yaml create mode 100644 themes/pributan.yaml create mode 100644 themes/primary-dark.yaml create mode 100644 themes/primary-light.yaml create mode 100644 themes/prime-contrast.yaml create mode 100644 themes/prime-light.yaml create mode 100644 themes/prime.yaml create mode 100644 themes/primer-light.yaml create mode 100644 themes/prism-dark.yaml create mode 100644 themes/prism-light.yaml create mode 100644 themes/prisma.yaml create mode 100644 themes/prismapixel-studios-dark-theme.yaml create mode 100644 themes/prismatic-dark.yaml create mode 100644 themes/prismatic-light.yaml create mode 100644 themes/prismatic-void.yaml create mode 100644 themes/prismmagic.yaml create mode 100644 themes/pro-coding.yaml create mode 100644 themes/professional-dark.yaml create mode 100644 themes/programmer.yaml create mode 100644 themes/progress-dark.yaml create mode 100644 themes/progress.yaml create mode 100644 themes/project-dark-theme-soft.yaml create mode 100644 themes/prom-wiki.yaml create mode 100644 themes/pronight.yaml create mode 100644 themes/proper-dracula.yaml create mode 100644 themes/proper-pure.yaml create mode 100644 themes/proper-theme-alternate-2.yaml create mode 100644 themes/proper-theme-alternate-fork.yaml create mode 100644 themes/proper-theme-fork.yaml create mode 100644 themes/proper-up-for-what.yaml create mode 100644 themes/proper.yaml create mode 100644 themes/propurple.yaml create mode 100644 themes/ps-dark.yaml create mode 100644 themes/ps-light.yaml create mode 100644 themes/ps-mid-blue.yaml create mode 100644 themes/ps-syntax.yaml create mode 100644 themes/pudding-dark-caramel-beta.yaml create mode 100644 themes/pudding-dark-christmas.yaml create mode 100644 themes/pudding-dark.yaml create mode 100644 themes/pudding-light-jk.yaml create mode 100644 themes/pudding-light.yaml create mode 100644 themes/pulpy-orange.yaml create mode 100644 themes/pulsar-default.yaml create mode 100644 themes/pulsar.yaml create mode 100644 themes/pulse-balanced-purple.yaml create mode 100644 themes/pulse-comfort-light.yaml create mode 100644 themes/pulse-soft-purple.yaml create mode 100644 themes/pumpkin.yaml create mode 100644 themes/punjab-land-of-five-rivers.yaml create mode 100644 themes/punk-runner.yaml create mode 100644 themes/pur-theme-v1.yaml create mode 100644 themes/purble-0-0-2-fork-fork.yaml create mode 100644 themes/purddy.yaml create mode 100644 themes/pure-black.yaml create mode 100644 themes/pure-dark.yaml create mode 100644 themes/pure-light.yaml create mode 100644 themes/pureblack.yaml create mode 100644 themes/puri-twilite.yaml create mode 100644 themes/purple-cake.yaml create mode 100644 themes/purple-cloud-minimal.yaml create mode 100644 themes/purple-cloud-theme.yaml create mode 100644 themes/purple-codain.yaml create mode 100644 themes/purple-cyan.yaml create mode 100644 themes/purple-dark-black.yaml create mode 100644 themes/purple-dark-theme-unicode.yaml create mode 100644 themes/purple-dark.yaml create mode 100644 themes/purple-deep-black-fork.yaml create mode 100644 themes/purple-deep-black.yaml create mode 100644 themes/purple-dream.yaml create mode 100644 themes/purple-ish.yaml create mode 100644 themes/purple-royal.yaml create mode 100644 themes/purple-surface-dark.yaml create mode 100644 themes/purple-theme.yaml create mode 100644 themes/purple-twist.yaml create mode 100644 themes/purple-void.yaml create mode 100644 themes/purple.yaml create mode 100644 themes/purpleandblack.yaml create mode 100644 themes/purplechan.yaml create mode 100644 themes/purplecrystal.yaml create mode 100644 themes/purplefy.yaml create mode 100644 themes/purplephantom.yaml create mode 100644 themes/purpleporschepheme.yaml create mode 100644 themes/purpler.yaml create mode 100644 themes/purplespace.yaml create mode 100644 themes/purplexed-magic.yaml create mode 100644 themes/purplexed-theme.yaml create mode 100644 themes/purplezera.yaml create mode 100644 themes/purplish-fork.yaml create mode 100644 themes/purplue.yaml create mode 100644 themes/purply-dark.yaml create mode 100644 themes/purply-light.yaml create mode 100644 themes/purppy.yaml create mode 100644 themes/purps.yaml create mode 100644 themes/purrfect-marshmallow-lavender-night.yaml create mode 100644 themes/purrfect-marshmallow-pastel-pink.yaml create mode 100644 themes/purstel.yaml create mode 100644 themes/purupiu-theme.yaml create mode 100644 themes/pushkin-is-white.yaml create mode 100644 themes/pussdev-pink-theme.yaml create mode 100644 themes/pvc-light.yaml create mode 100644 themes/pvdk-theme.yaml create mode 100644 themes/pycharm-theme.yaml create mode 100644 themes/python-bright-colors-theme.yaml create mode 100644 themes/qara.yaml create mode 100644 themes/qerz-theme.yaml create mode 100644 themes/qii-theme-dark-shallow.yaml create mode 100644 themes/qii-theme-dark.yaml create mode 100644 themes/qii-theme-light.yaml create mode 100644 themes/qoder-dark.yaml create mode 100644 themes/qqqoid-light-color.yaml create mode 100644 themes/qt-creator-like-dark-theme.yaml create mode 100644 themes/qtz-theme.yaml create mode 100644 themes/quantum-blue-dark.yaml create mode 100644 themes/quantum-bordered.yaml create mode 100644 themes/quantum-dark-bordered.yaml create mode 100644 themes/quantum-green.yaml create mode 100644 themes/quantum-mirage-bordered.yaml create mode 100644 themes/quantum-night.yaml create mode 100644 themes/quantum-synthwave.yaml create mode 100644 themes/quantumqubic.yaml create mode 100644 themes/quantxz.yaml create mode 100644 themes/quarkus-dark-theme.yaml create mode 100644 themes/quasar.yaml create mode 100644 themes/qubik-dark.yaml create mode 100644 themes/qubik-light.yaml create mode 100644 themes/queensland-dark.yaml create mode 100644 themes/queensland-light.yaml create mode 100644 themes/quiet-canvas.yaml create mode 100644 themes/quiet-hacker.yaml create mode 100644 themes/quietude.yaml create mode 100644 themes/quirky-contrast-theme.yaml create mode 100644 themes/qutheme.yaml create mode 100644 themes/r-dark-pro-filter-black-white-border.yaml create mode 100644 themes/r-dark-pro-filter-coolnight.yaml create mode 100644 themes/r-dark-pro-filter-dark-pro.yaml create mode 100644 themes/r-dark-pro-filter-laser-border.yaml create mode 100644 themes/r-dark-pro-filter-nightfall.yaml create mode 100644 themes/r-dark-pro-filter-nightgrey.yaml create mode 100644 themes/r-dark-pro-filter-nightlate.yaml create mode 100644 themes/r-e-m.yaml create mode 100644 themes/r-h-zero-monokai.yaml create mode 100644 themes/rabbit.yaml create mode 100644 themes/radiant-noir.yaml create mode 100644 themes/radium.yaml create mode 100644 themes/ragequit.yaml create mode 100644 themes/ragnarok.yaml create mode 100644 themes/raij-dark-no-italics.yaml create mode 100644 themes/raij-no-italics.yaml create mode 100644 themes/rain-city-theme.yaml create mode 100644 themes/rain.yaml create mode 100644 themes/rainbow-contrast.yaml create mode 100644 themes/rainbow-light.yaml create mode 100644 themes/rainbow-material-theme.yaml create mode 100644 themes/rainbow-pastel-theme.yaml create mode 100644 themes/rainbow.yaml create mode 100644 themes/rainbowdrops-dark.yaml create mode 100644 themes/rainforest-dark.yaml create mode 100644 themes/rainx0r.yaml create mode 100644 themes/rainy-hydrangea.yaml create mode 100644 themes/raiyanplanet-dark-knight.yaml create mode 100644 themes/raiyanplanet-darkest.yaml create mode 100644 themes/raiyanplanet-purple-world.yaml create mode 100644 themes/rajasthan-land-of-kings.yaml create mode 100644 themes/rajoyish.yaml create mode 100644 themes/rakkii-theme.yaml create mode 100644 themes/ramage.yaml create mode 100644 themes/ramazzotti-80s.yaml create mode 100644 themes/ramazzotti-flexobi.yaml create mode 100644 themes/ramazzotti-gruvbox.yaml create mode 100644 themes/ramuda.yaml create mode 100644 themes/rapture.yaml create mode 100644 themes/rate-dark-cold.yaml create mode 100644 themes/rate-dark.yaml create mode 100644 themes/rate-light-soft.yaml create mode 100644 themes/rate-light.yaml create mode 100644 themes/ravenwood-dark.yaml create mode 100644 themes/ravenwood-light.yaml create mode 100644 themes/rb-s-desaturated.yaml create mode 100644 themes/rbe-matrix-skin-theme.yaml create mode 100644 themes/rdcd.yaml create mode 100644 themes/re-dark-alt.yaml create mode 100644 themes/re-eclipse-old-school.yaml create mode 100644 themes/re-eclipse.yaml create mode 100644 themes/re-vision.yaml create mode 100644 themes/react-theme.yaml create mode 100644 themes/rebellion-contrast.yaml create mode 100644 themes/rebellion-light.yaml create mode 100644 themes/rebellion.yaml create mode 100644 themes/recats-classic-dark.yaml create mode 100644 themes/recats-nova-dark.yaml create mode 100644 themes/recotheme.yaml create mode 100644 themes/red-black-white-dark.yaml create mode 100644 themes/red-black-white-light.yaml create mode 100644 themes/red-grey.yaml create mode 100644 themes/red-neon.yaml create mode 100644 themes/red-one-dark-pro-dark-bordered.yaml create mode 100644 themes/red-one-dark-pro-dark.yaml create mode 100644 themes/red-one-dark-pro-mirage-bordered.yaml create mode 100644 themes/red-one-dark-pro-mirage.yaml create mode 100644 themes/red-vintage.yaml create mode 100644 themes/reddark.yaml create mode 100644 themes/reddish.yaml create mode 100644 themes/reddit-dark-based-theme-updated.yaml create mode 100644 themes/rediohead-theme.yaml create mode 100644 themes/redorainbow.yaml create mode 100644 themes/redpro-dark.yaml create mode 100644 themes/redpro-light.yaml create mode 100644 themes/redspecter.yaml create mode 100644 themes/refined-charcoal.yaml create mode 100644 themes/refined-default.yaml create mode 100644 themes/refined-dracula.yaml create mode 100644 themes/refined-espresso.yaml create mode 100644 themes/refined-matcha.yaml create mode 100644 themes/refined-mocha.yaml create mode 100644 themes/refined-night-owl.yaml create mode 100644 themes/refined-oceanic-next.yaml create mode 100644 themes/refined-one.yaml create mode 100644 themes/refined-palenight.yaml create mode 100644 themes/refined-purple.yaml create mode 100644 themes/refined-slate.yaml create mode 100644 themes/regard.yaml create mode 100644 themes/registheme.yaml create mode 100644 themes/relaxed-theme-dark-focus.yaml create mode 100644 themes/relaxed-theme-day-light.yaml create mode 100644 themes/relaxed-theme-night-warm.yaml create mode 100644 themes/relaxed-theme.yaml create mode 100644 themes/remedy-bright-tilted.yaml create mode 100644 themes/remedy-dark-tilted.yaml create mode 100644 themes/replicant.yaml create mode 100644 themes/replt-it.yaml create mode 100644 themes/repoman-color-theme.yaml create mode 100644 themes/resknow-dark.yaml create mode 100644 themes/ressgame-advance-coding-theme.yaml create mode 100644 themes/retina.yaml create mode 100644 themes/retro-cathode-ray-minimal-theme.yaml create mode 100644 themes/retro-green.yaml create mode 100644 themes/retro-hacker-amber.yaml create mode 100644 themes/retro-hacker-blue.yaml create mode 100644 themes/retro-hacker-green-subtle.yaml create mode 100644 themes/retro-hacker-green.yaml create mode 100644 themes/retro-hacker-magenta.yaml create mode 100644 themes/retro-keyboard-dark.yaml create mode 100644 themes/retro-keyboard-light.yaml create mode 100644 themes/retro-pastel-color-theme.yaml create mode 100644 themes/retro-theme.yaml create mode 100644 themes/retro-vibes.yaml create mode 100644 themes/retro.yaml create mode 100644 themes/retrocoders.yaml create mode 100644 themes/retronica-amber-terminal.yaml create mode 100644 themes/retronica-neon-nights.yaml create mode 100644 themes/retronica-pastel-arcade.yaml create mode 100644 themes/retronica-phosphor-green.yaml create mode 100644 themes/retronica-vintage-computing.yaml create mode 100644 themes/retropunk.yaml create mode 100644 themes/retroscope.yaml create mode 100644 themes/retrox.yaml create mode 100644 themes/reui-ii-dark-italic.yaml create mode 100644 themes/reui-ii-italic.yaml create mode 100644 themes/reui-ii-mirage-italic.yaml create mode 100644 themes/revelation-contrast.yaml create mode 100644 themes/revelation-light.yaml create mode 100644 themes/revelation.yaml create mode 100644 themes/revisual-assist-color-theme.yaml create mode 100644 themes/revisualassist.yaml create mode 100644 themes/rextax-bright-fork.yaml create mode 100644 themes/rhodes-dark.yaml create mode 100644 themes/rhodes-light.yaml create mode 100644 themes/rich-black-theme-no-italic.yaml create mode 100644 themes/rider-melon-night.yaml create mode 100644 themes/rider.yaml create mode 100644 themes/rigel.yaml create mode 100644 themes/rimber.yaml create mode 100644 themes/riskified-dark.yaml create mode 100644 themes/rito.yaml create mode 100644 themes/rivendell.yaml create mode 100644 themes/rizz-focused.yaml create mode 100644 themes/rizz-neutral.yaml create mode 100644 themes/rm-dark-theme.yaml create mode 100644 themes/roblox-stylized-dark-theme.yaml create mode 100644 themes/robodark.yaml create mode 100644 themes/robolaunch.yaml create mode 100644 themes/rocinante.yaml create mode 100644 themes/rocko-s-modern-theme.yaml create mode 100644 themes/rog-theme-v1-1-dark-alpha-syntax-test.yaml create mode 100644 themes/rogue-squadron.yaml create mode 100644 themes/rohit-kudalkar-dark-theme.yaml create mode 100644 themes/ronin-darker.yaml create mode 100644 themes/ronin.yaml create mode 100644 themes/root-bear.yaml create mode 100644 themes/root-dark-mode-theme-v0-1.yaml create mode 100644 themes/ros-pine-dawn.yaml create mode 100644 themes/ros-pine.yaml create mode 100644 themes/rose-paradise.yaml create mode 100644 themes/rosefall-black.yaml create mode 100644 themes/rosefall-midnight.yaml create mode 100644 themes/roselia-orbital-eden-pastel.yaml create mode 100644 themes/roselia.yaml create mode 100644 themes/rouge-no-italics.yaml create mode 100644 themes/roxo-theme.yaml create mode 100644 themes/royal-darker-theme.yaml create mode 100644 themes/royal-fork.yaml create mode 100644 themes/royal.yaml create mode 100644 themes/rozen.yaml create mode 100644 themes/rs-dark.yaml create mode 100644 themes/rsikified-dark-purple.yaml create mode 100644 themes/rubecula.yaml create mode 100644 themes/rubi-theme.yaml create mode 100644 themes/ruby-nights-garnet-midnight.yaml create mode 100644 themes/ruby-nights-garnet.yaml create mode 100644 themes/ruby-nights-ruby-midnight.yaml create mode 100644 themes/ruby-nights-ruby.yaml create mode 100644 themes/ruby-sea.yaml create mode 100644 themes/rudydev-theme-edited-tokyo-night-storm.yaml create mode 100644 themes/rui-cobalt.yaml create mode 100644 themes/rui-sapphire.yaml create mode 100644 themes/runic-minimal.yaml create mode 100644 themes/ruru-marijuana.yaml create mode 100644 themes/ruru-moon.yaml create mode 100644 themes/rust-brown.yaml create mode 100644 themes/rustacean.yaml create mode 100644 themes/rusty.yaml create mode 100644 themes/ryb.yaml create mode 100644 themes/rypjaws.yaml create mode 100644 themes/s-kill.yaml create mode 100644 themes/s-o-paulo-night.yaml create mode 100644 themes/safari-midnight.yaml create mode 100644 themes/safira.yaml create mode 100644 themes/saga-nordic-v1-2.yaml create mode 100644 themes/saga-oceania-v1-2.yaml create mode 100644 themes/sage-of-light-color-theme.yaml create mode 100644 themes/sage-professional.yaml create mode 100644 themes/sage-siren-theme.yaml create mode 100644 themes/sailor-at-sea.yaml create mode 100644 themes/sakai-theme-jupiter.yaml create mode 100644 themes/sakai-theme-moon.yaml create mode 100644 themes/sakai-theme-saturn.yaml create mode 100644 themes/sakai-theme-venus.yaml create mode 100644 themes/sakura-blossom-midnight.yaml create mode 100644 themes/sakura-blossom-theme.yaml create mode 100644 themes/sakura-dreams-dark.yaml create mode 100644 themes/sakura-dreams.yaml create mode 100644 themes/sakura-theme-fork.yaml create mode 100644 themes/sakura-theme.yaml create mode 100644 themes/sakura-v2-by-leroiadib.yaml create mode 100644 themes/sakura.yaml create mode 100644 themes/sakya-dorje.yaml create mode 100644 themes/samacaca.yaml create mode 100644 themes/samgido-theme-dark.yaml create mode 100644 themes/samito-nest-graphql-theme.yaml create mode 100644 themes/samito-nest-theme.yaml create mode 100644 themes/samurai.yaml create mode 100644 themes/samyak-bumb.yaml create mode 100644 themes/sanam-dark-pro.yaml create mode 100644 themes/sandcastle.yaml create mode 100644 themes/sanded.yaml create mode 100644 themes/sandstorm.yaml create mode 100644 themes/sanemi-shinazugawa.yaml create mode 100644 themes/sanrio.yaml create mode 100644 themes/sapporo.yaml create mode 100644 themes/saransk-night.yaml create mode 100644 themes/saraswati-cool-light-theme.yaml create mode 100644 themes/sarcastic-white.yaml create mode 100644 themes/sargam.yaml create mode 100644 themes/satoru-gojo-blue.yaml create mode 100644 themes/satoru-gojo-white.yaml create mode 100644 themes/satoshi-nakamoto-theme.yaml create mode 100644 themes/satsoomahhh.yaml create mode 100644 themes/satu.yaml create mode 100644 themes/saturated-dark-terminal.yaml create mode 100644 themes/saturn-moonlight.yaml create mode 100644 themes/saturnblue-dark.yaml create mode 100644 themes/sauna-theme.yaml create mode 100644 themes/saunf.yaml create mode 100644 themes/sauve.yaml create mode 100644 themes/savannah-dawn.yaml create mode 100644 themes/savannah-sunset.yaml create mode 100644 themes/save-my-eyes.yaml create mode 100644 themes/savetemin.yaml create mode 100644 themes/sazardev.yaml create mode 100644 themes/scarlet.yaml create mode 100644 themes/sceanic-dark-gray.yaml create mode 100644 themes/sceanic-gray.yaml create mode 100644 themes/sceanic.yaml create mode 100644 themes/scepter.yaml create mode 100644 themes/schoero-dark.yaml create mode 100644 themes/schooltheme.yaml create mode 100644 themes/schwifty-atom-one-dark.yaml create mode 100644 themes/schwifty-purple-one-dark.yaml create mode 100644 themes/schwifty.yaml create mode 100644 themes/scooby-dooby-dark.yaml create mode 100644 themes/scorch-contrast.yaml create mode 100644 themes/scorch-light.yaml create mode 100644 themes/scorch.yaml create mode 100644 themes/scorpion-theme.yaml create mode 100644 themes/scuba.yaml create mode 100644 themes/sea-glass.yaml create mode 100644 themes/sea-urchin.yaml create mode 100644 themes/seabrook-dark-italic.yaml create mode 100644 themes/seabrook-light-italic.yaml create mode 100644 themes/seaci-darkbase.yaml create mode 100644 themes/seaci-shadow.yaml create mode 100644 themes/seafarer.yaml create mode 100644 themes/seafoam.yaml create mode 100644 themes/seagull.yaml create mode 100644 themes/secret-spring.yaml create mode 100644 themes/secunda.yaml create mode 100644 themes/secuoyas-code.yaml create mode 100644 themes/sedona.yaml create mode 100644 themes/seed7-tokyo-night-dark.yaml create mode 100644 themes/seekode-light.yaml create mode 100644 themes/selene-selenized-dark.yaml create mode 100644 themes/selene-selenized-light.yaml create mode 100644 themes/selenitic-color-theme.yaml create mode 100644 themes/sema.yaml create mode 100644 themes/semantic-noctis-lux.yaml create mode 100644 themes/semi-dark-theme-in-yellow.yaml create mode 100644 themes/senerdark-pro-blue-gray.yaml create mode 100644 themes/senerdark-pro-deep-gray.yaml create mode 100644 themes/senkorange.yaml create mode 100644 themes/senna-dark-black-theme.yaml create mode 100644 themes/seoul-dancheong.yaml create mode 100644 themes/seoul-morning.yaml create mode 100644 themes/seoul-night.yaml create mode 100644 themes/september-dark-theme.yaml create mode 100644 themes/sequoia-monochrome.yaml create mode 100644 themes/sequoia-moonlight.yaml create mode 100644 themes/sequoia-retro.yaml create mode 100644 themes/seral-dark-github-stripe.yaml create mode 100644 themes/seral-light-github-stripe.yaml create mode 100644 themes/serendipity-midnight-electric.yaml create mode 100644 themes/serendipity-midnight-v1.yaml create mode 100644 themes/serendipity-midnight.yaml create mode 100644 themes/serendipity-morning-v1.yaml create mode 100644 themes/serendipity-morning.yaml create mode 100644 themes/serendipity-sunset-v1.yaml create mode 100644 themes/serendipity-sunset.yaml create mode 100644 themes/serene.yaml create mode 100644 themes/service-contrast.yaml create mode 100644 themes/service-light.yaml create mode 100644 themes/service.yaml create mode 100644 themes/seti-classic-vscode.yaml create mode 100644 themes/seti.yaml create mode 100644 themes/sewayaki-dark.yaml create mode 100644 themes/shaan-s.yaml create mode 100644 themes/shaant-shakti-mystic-roast.yaml create mode 100644 themes/shaant-shakti-sand-storm.yaml create mode 100644 themes/shaant-shakti-soul-drift.yaml create mode 100644 themes/shaant-shakti-spfx-sanctuary.yaml create mode 100644 themes/shaant-shakti.yaml create mode 100644 themes/shadcn-blue-light.yaml create mode 100644 themes/shadcn-green-dark.yaml create mode 100644 themes/shadcn-green-light.yaml create mode 100644 themes/shadcn-neutral-dark.yaml create mode 100644 themes/shadcn-neutral-light.yaml create mode 100644 themes/shadcn-orange-dark.yaml create mode 100644 themes/shadcn-orange-light.yaml create mode 100644 themes/shadcn-red-dark.yaml create mode 100644 themes/shadcn-red-light.yaml create mode 100644 themes/shadcn-rose-dark.yaml create mode 100644 themes/shadcn-rose-light.yaml create mode 100644 themes/shadcn-violet-dark.yaml create mode 100644 themes/shadcn-violet-light.yaml create mode 100644 themes/shadcn-vivid.yaml create mode 100644 themes/shadcn-yellow-dark.yaml create mode 100644 themes/shadcn-yellow-light.yaml create mode 100644 themes/shaddy-lighta.yaml create mode 100644 themes/shaddy.yaml create mode 100644 themes/shade-theme.yaml create mode 100644 themes/shades-of-blue.yaml create mode 100644 themes/shades-of-cyan-theme.yaml create mode 100644 themes/shades-of-gravy.yaml create mode 100644 themes/shades-of-life-light.yaml create mode 100644 themes/shades-of-life.yaml create mode 100644 themes/shades-of-midnight-blue-dark-theme.yaml create mode 100644 themes/shades-of-violet.yaml create mode 100644 themes/shades.yaml create mode 100644 themes/shadowborn.yaml create mode 100644 themes/shadowscape.yaml create mode 100644 themes/shadowspectrum.yaml create mode 100644 themes/shamrock.yaml create mode 100644 themes/sharkdark-theme.yaml create mode 100644 themes/sharpblue.yaml create mode 100644 themes/sheme.yaml create mode 100644 themes/shibainu-dark.yaml create mode 100644 themes/shibuya.yaml create mode 100644 themes/shifting-sands.yaml create mode 100644 themes/shiina.yaml create mode 100644 themes/shinjuku-colored-brackets.yaml create mode 100644 themes/shinkai.yaml create mode 100644 themes/ship-dark.yaml create mode 100644 themes/ship-light.yaml create mode 100644 themes/shirotelin.yaml create mode 100644 themes/shiv-vscode-theme.yaml create mode 100644 themes/shivam.yaml create mode 100644 themes/shoxwave.yaml create mode 100644 themes/shrek-contrast.yaml create mode 100644 themes/shrek-light.yaml create mode 100644 themes/shrek.yaml create mode 100644 themes/shuri-midnight.yaml create mode 100644 themes/siberia.yaml create mode 100644 themes/side-punk-sql.yaml create mode 100644 themes/sidev-monokai-dim-ts.yaml create mode 100644 themes/siemor.yaml create mode 100644 themes/sign-theme-v3.yaml create mode 100644 themes/sign-theme-v4.yaml create mode 100644 themes/silent-code.yaml create mode 100644 themes/silot-dark-classic.yaml create mode 100644 themes/silvermist.yaml create mode 100644 themes/silverwolf.yaml create mode 100644 themes/simple-3000.yaml create mode 100644 themes/simple-calm-dark.yaml create mode 100644 themes/simple-purple.yaml create mode 100644 themes/simple-red-dark.yaml create mode 100644 themes/simple-theme.yaml create mode 100644 themes/simpledark.yaml create mode 100644 themes/sinequanone-acid.yaml create mode 100644 themes/sinequanone-apple.yaml create mode 100644 themes/sinequanone-brighton.yaml create mode 100644 themes/sinequanone-carbon.yaml create mode 100644 themes/sinequanone-cerulean.yaml create mode 100644 themes/sinequanone-noir.yaml create mode 100644 themes/sinequanone-sunset.yaml create mode 100644 themes/sinequanone-swan.yaml create mode 100644 themes/sinergyext.yaml create mode 100644 themes/sirius-astral.yaml create mode 100644 themes/sirius-glow.yaml create mode 100644 themes/sirius-nebula.yaml create mode 100644 themes/sirius-pulsar.yaml create mode 100644 themes/sirius-vesper.yaml create mode 100644 themes/sirius-vibe.yaml create mode 100644 themes/sirius-vortex.yaml create mode 100644 themes/sirius-zenith.yaml create mode 100644 themes/sith.yaml create mode 100644 themes/sizdah-best-of-all.yaml create mode 100644 themes/sizo-purple.yaml create mode 100644 themes/sj-pinkish-theme.yaml create mode 100644 themes/sj-theme.yaml create mode 100644 themes/sk5s-vsgt.yaml create mode 100644 themes/skeletortheme.yaml create mode 100644 themes/sky-at-night.yaml create mode 100644 themes/sky-blue-tranquility-focus.yaml create mode 100644 themes/sky-miami-vice.yaml create mode 100644 themes/sky-neon.yaml create mode 100644 themes/skye-wind-light.yaml create mode 100644 themes/skye-wind.yaml create mode 100644 themes/skyline.yaml create mode 100644 themes/slack-theme-aubergine-dark.yaml create mode 100644 themes/slack-theme-aubergine-new.yaml create mode 100644 themes/slack-theme-aubergine.yaml create mode 100644 themes/slack-theme-dark.yaml create mode 100644 themes/slack-theme.yaml create mode 100644 themes/slate-black.yaml create mode 100644 themes/slate-blackish.yaml create mode 100644 themes/slate-contrast.yaml create mode 100644 themes/slate-gray.yaml create mode 100644 themes/slate-light.yaml create mode 100644 themes/slate.yaml create mode 100644 themes/sleepy-owl-default-beta.yaml create mode 100644 themes/sleepy-owl-greenwich-beta.yaml create mode 100644 themes/sleepy-owl-oak-beta.yaml create mode 100644 themes/slime-color-theme.yaml create mode 100644 themes/slime-contrast.yaml create mode 100644 themes/slime-light.yaml create mode 100644 themes/slime-solid-color-theme.yaml create mode 100644 themes/slime.yaml create mode 100644 themes/slimy-high-contrast.yaml create mode 100644 themes/slimy-light.yaml create mode 100644 themes/slimy.yaml create mode 100644 themes/slinkwave.yaml create mode 100644 themes/sloth-highlander-theme-1.yaml create mode 100644 themes/sloth-highlander-theme-2.yaml create mode 100644 themes/smalltheme-carbon-oled.yaml create mode 100644 themes/smettboi-light.yaml create mode 100644 themes/smithy-bronze.yaml create mode 100644 themes/smooth-burn-dark-hard.yaml create mode 100644 themes/smooth-burn-dark-medium.yaml create mode 100644 themes/smooth-burn-dark.yaml create mode 100644 themes/smooth-burn-light-hard.yaml create mode 100644 themes/smoothity-dark.yaml create mode 100644 themes/snakedye-chocolate.yaml create mode 100644 themes/snappy-contrast.yaml create mode 100644 themes/snappy-light.yaml create mode 100644 themes/snappy.yaml create mode 100644 themes/snazzy-light.yaml create mode 100644 themes/snazzy-operator-color-theme-dark-italics.yaml create mode 100644 themes/snazzy-operator-color-theme-italics.yaml create mode 100644 themes/snazzy-operator-natural.yaml create mode 100644 themes/snazzy-operator-plus-color-theme.yaml create mode 100644 themes/snazzy-solaris.yaml create mode 100644 themes/snazzy-vs-theme.yaml create mode 100644 themes/snow-theme.yaml create mode 100644 themes/snowflake-dark-theme.yaml create mode 100644 themes/snowflake-darker-theme.yaml create mode 100644 themes/snoword-dark-soft.yaml create mode 100644 themes/snoword-dark.yaml create mode 100644 themes/snoword-light-soft.yaml create mode 100644 themes/snoword-light.yaml create mode 100644 themes/snowpiercer.yaml create mode 100644 themes/snowy-mint.yaml create mode 100644 themes/sober-afternoon.yaml create mode 100644 themes/sober-deepnight.yaml create mode 100644 themes/sober-midnight.yaml create mode 100644 themes/sober.yaml create mode 100644 themes/sobrio-light.yaml create mode 100644 themes/sobrio.yaml create mode 100644 themes/soct-color-theme.yaml create mode 100644 themes/soda.yaml create mode 100644 themes/soft-colors.yaml create mode 100644 themes/soft-dark-2.yaml create mode 100644 themes/soft-era-ellite-edit.yaml create mode 100644 themes/soft-kawaii-theme-1-color-theme.yaml create mode 100644 themes/soft-light-2.yaml create mode 100644 themes/soft-material.yaml create mode 100644 themes/soft-midnight.yaml create mode 100644 themes/soft-mood-theme.yaml create mode 100644 themes/soft-sight.yaml create mode 100644 themes/soft-sunset-dark.yaml create mode 100644 themes/soft-yellow-light.yaml create mode 100644 themes/soho-color-theme.yaml create mode 100644 themes/soil-theme.yaml create mode 100644 themes/solar-drift-dark-theme.yaml create mode 100644 themes/solar-drift-darker-theme.yaml create mode 100644 themes/solar-flare.yaml create mode 100644 themes/solar-future.yaml create mode 100644 themes/solarflare-contrast.yaml create mode 100644 themes/solarflare-light.yaml create mode 100644 themes/solarflare.yaml create mode 100644 themes/solaris.yaml create mode 100644 themes/solarized-abydos.yaml create mode 100644 themes/solarized-complete-dark.yaml create mode 100644 themes/solarized-complete-light.yaml create mode 100644 themes/solarized-custom-dark.yaml create mode 100644 themes/solarized-custom-light.yaml create mode 100644 themes/solarized-dark-theme.yaml create mode 100644 themes/solarized-dark.yaml create mode 100644 themes/solarized-deep.yaml create mode 100644 themes/solarized-light-functional.yaml create mode 100644 themes/solarized-light-n.yaml create mode 100644 themes/solarized-light.yaml create mode 100644 themes/solarized-lilac.yaml create mode 100644 themes/solarized-monokai-dark.yaml create mode 100644 themes/solarized-neue-bright.yaml create mode 100644 themes/solarized-neue.yaml create mode 100644 themes/solarized-pro.yaml create mode 100644 themes/solarized-right.yaml create mode 100644 themes/solarized-ss-light.yaml create mode 100644 themes/solarized-yuki.yaml create mode 100644 themes/solarized.yaml create mode 100644 themes/solarus.yaml create mode 100644 themes/solaryss.yaml create mode 100644 themes/solavsce-packagera.yaml create mode 100644 themes/solid-dark-theme.yaml create mode 100644 themes/solitude-dark.yaml create mode 100644 themes/solitude-soft.yaml create mode 100644 themes/solo-leveling.yaml create mode 100644 themes/solstice-estival.yaml create mode 100644 themes/solstice-hibernal.yaml create mode 100644 themes/somber.yaml create mode 100644 themes/something-theme.yaml create mode 100644 themes/somewhere-on-a-beach.yaml create mode 100644 themes/sonokai-andromeda.yaml create mode 100644 themes/sonokai-atlantis.yaml create mode 100644 themes/sonokai-espresso.yaml create mode 100644 themes/sonokai-maia.yaml create mode 100644 themes/sonokai-shusia.yaml create mode 100644 themes/sonokai.yaml create mode 100644 themes/sonora-deep-signal-faded.yaml create mode 100644 themes/sonora-deep-signal-vibrant.yaml create mode 100644 themes/sonora-deep-signal.yaml create mode 100644 themes/sonora-tides.yaml create mode 100644 themes/soothing-dark.yaml create mode 100644 themes/soothing-light.yaml create mode 100644 themes/soothing.yaml create mode 100644 themes/sorcerer.yaml create mode 100644 themes/soudev-mega-dark.yaml create mode 100644 themes/soudev-purple-andromeda.yaml create mode 100644 themes/soudev-semi-dark-andromeda.yaml create mode 100644 themes/soul-theme.yaml create mode 100644 themes/souls-theme.yaml create mode 100644 themes/soup-contrast.yaml create mode 100644 themes/soup-light.yaml create mode 100644 themes/soup.yaml create mode 100644 themes/sourc.yaml create mode 100644 themes/sourcerer.yaml create mode 100644 themes/sourlick-contrast.yaml create mode 100644 themes/sourlick-light.yaml create mode 100644 themes/sourlick.yaml create mode 100644 themes/south-australia-dark.yaml create mode 100644 themes/south-australia-light.yaml create mode 100644 themes/space-dark.yaml create mode 100644 themes/space-invader-black.yaml create mode 100644 themes/space-invader-darker.yaml create mode 100644 themes/space-invader-light.yaml create mode 100644 themes/space-invader.yaml create mode 100644 themes/space-light.yaml create mode 100644 themes/space-purple-dark.yaml create mode 100644 themes/space-purple-light.yaml create mode 100644 themes/space-theme.yaml create mode 100644 themes/space.yaml create mode 100644 themes/spacecamp.yaml create mode 100644 themes/spacedust.yaml create mode 100644 themes/spacegray.yaml create mode 100644 themes/spacegrey.yaml create mode 100644 themes/spacemacs-dark.yaml create mode 100644 themes/spacemacs-light.yaml create mode 100644 themes/spaceoceankitrefined.yaml create mode 100644 themes/spacial.yaml create mode 100644 themes/spades.yaml create mode 100644 themes/sparkle-theme.yaml create mode 100644 themes/speakeasy.yaml create mode 100644 themes/spearmint-contrast.yaml create mode 100644 themes/spearmint-light.yaml create mode 100644 themes/spearmint.yaml create mode 100644 themes/spider-man.yaml create mode 100644 themes/spiderverse-2099.yaml create mode 100644 themes/spiderverse-miles.yaml create mode 100644 themes/spiderverse-spider-man.yaml create mode 100644 themes/spin-theme.yaml create mode 100644 themes/spiral.yaml create mode 100644 themes/spirited-night.yaml create mode 100644 themes/spitfire-contrast.yaml create mode 100644 themes/spitfire-light.yaml create mode 100644 themes/spitfire.yaml create mode 100644 themes/splash-theme.yaml create mode 100644 themes/splus.yaml create mode 100644 themes/spotly-dark.yaml create mode 100644 themes/spotly-light.yaml create mode 100644 themes/spring.yaml create mode 100644 themes/sprinkles-color-theme.yaml create mode 100644 themes/spurlys-theme.yaml create mode 100644 themes/spyder-theme-light.yaml create mode 100644 themes/sql-dark-pro-high-contrast.yaml create mode 100644 themes/squeak.yaml create mode 100644 themes/srcery-gagbo.yaml create mode 100644 themes/srcery.yaml create mode 100644 themes/stackmeister.yaml create mode 100644 themes/stained-glass-dark.yaml create mode 100644 themes/stannum.yaml create mode 100644 themes/star-night-luna.yaml create mode 100644 themes/star-night.yaml create mode 100644 themes/star-wars-dark-side-theme-global.yaml create mode 100644 themes/starboy-theme.yaml create mode 100644 themes/starburst-dark.yaml create mode 100644 themes/starfield.yaml create mode 100644 themes/stark-contrast.yaml create mode 100644 themes/stark-dark.yaml create mode 100644 themes/stark-light.yaml create mode 100644 themes/stark.yaml create mode 100644 themes/starlight-daybreak.yaml create mode 100644 themes/starlight-light.yaml create mode 100644 themes/starlight-midnight.yaml create mode 100644 themes/starlight-obsidian.yaml create mode 100644 themes/starlight-soft-glow.yaml create mode 100644 themes/starlight.yaml create mode 100644 themes/starry-night.yaml create mode 100644 themes/starry-pillar.yaml create mode 100644 themes/startlite.yaml create mode 100644 themes/startrail.yaml create mode 100644 themes/stasis-contrast.yaml create mode 100644 themes/stasis-light.yaml create mode 100644 themes/stasis.yaml create mode 100644 themes/stealth-contrast.yaml create mode 100644 themes/stealth-light.yaml create mode 100644 themes/stealth.yaml create mode 100644 themes/steel-blue-dark.yaml create mode 100644 themes/steel-phantom.yaml create mode 100644 themes/steffula.yaml create mode 100644 themes/stella-high-contrast.yaml create mode 100644 themes/stella-theme.yaml create mode 100644 themes/stella.yaml create mode 100644 themes/stellar-void.yaml create mode 100644 themes/stellar.yaml create mode 100644 themes/stereo-theme.yaml create mode 100644 themes/sto-classic.yaml create mode 100644 themes/sto-green-dark.yaml create mode 100644 themes/sto-green.yaml create mode 100644 themes/stonerose.yaml create mode 100644 themes/storm-contrast.yaml create mode 100644 themes/storm-dark-pro.yaml create mode 100644 themes/storm-light.yaml create mode 100644 themes/storm-tracker.yaml create mode 100644 themes/storm-uvadark-fork.yaml create mode 100644 themes/storm.yaml create mode 100644 themes/stormpetrel.yaml create mode 100644 themes/strangebrew.yaml create mode 100644 themes/studio-bio-bio-dark-theme.yaml create mode 100644 themes/stylelight35.yaml create mode 100644 themes/subessence.yaml create mode 100644 themes/sublette.yaml create mode 100644 themes/sublime-breakers.yaml create mode 100644 themes/sublime-mariana-semantic-colorful.yaml create mode 100644 themes/sublime-mariana-test.yaml create mode 100644 themes/sublime-monokai-color-theme.yaml create mode 100644 themes/sublime-text-3.yaml create mode 100644 themes/sublime-text-4-theme.yaml create mode 100644 themes/sublime-vscode-theme.yaml create mode 100644 themes/subliminal-color-theme.yaml create mode 100644 themes/subliminalr-next.yaml create mode 100644 themes/subscribe-color.yaml create mode 100644 themes/substrata.yaml create mode 100644 themes/sufocode.yaml create mode 100644 themes/sugar-dark-focus.yaml create mode 100644 themes/sugar-dark-github.yaml create mode 100644 themes/sugar-dark-midnight.yaml create mode 100644 themes/sugar-dark-one.yaml create mode 100644 themes/sugar-dark-vitesse.yaml create mode 100644 themes/sugar-dark-vs.yaml create mode 100644 themes/sugar-dark.yaml create mode 100644 themes/sugar-fleet.yaml create mode 100644 themes/sugar-light-vitesse.yaml create mode 100644 themes/sugar-light-vs.yaml create mode 100644 themes/sugar-light.yaml create mode 100644 themes/sukadia-dev-dark.yaml create mode 100644 themes/sulfuric-dark.yaml create mode 100644 themes/sumiiro.yaml create mode 100644 themes/summer-night-gray-high-contrast.yaml create mode 100644 themes/summer-night-high-contrast.yaml create mode 100644 themes/summer-night.yaml create mode 100644 themes/summer-nights-lullaby.yaml create mode 100644 themes/summer-nights.yaml create mode 100644 themes/summer-palenight.yaml create mode 100644 themes/summer.yaml create mode 100644 themes/summercamp.yaml create mode 100644 themes/summerrelax.yaml create mode 100644 themes/sunbather.yaml create mode 100644 themes/sunilcode-dark-soothing-blue-light-reduced.yaml create mode 100644 themes/sunny.yaml create mode 100644 themes/sunset-beach-dark.yaml create mode 100644 themes/sunset-beach-light.yaml create mode 100644 themes/sunset-boulevard.yaml create mode 100644 themes/sunset-noir.yaml create mode 100644 themes/sunset-serenade.yaml create mode 100644 themes/sunset-theme.yaml create mode 100644 themes/sunsplash-monodark.yaml create mode 100644 themes/super-contrast.yaml create mode 100644 themes/super-dark-cyberpunk-green.yaml create mode 100644 themes/super-dark-cyberpunk-grey.yaml create mode 100644 themes/super-dark-cyberpunk-purple.yaml create mode 100644 themes/super-light.yaml create mode 100644 themes/super.yaml create mode 100644 themes/superbright.yaml create mode 100644 themes/superman-theme.yaml create mode 100644 themes/supernova.yaml create mode 100644 themes/surreal.yaml create mode 100644 themes/susuwatari.yaml create mode 100644 themes/svelte-5-theme.yaml create mode 100644 themes/sveltesse-black.yaml create mode 100644 themes/sveltesse-dark-soft.yaml create mode 100644 themes/sveltesse-dark.yaml create mode 100644 themes/sveltesse-light-soft.yaml create mode 100644 themes/sveltesse-light.yaml create mode 100644 themes/sw-tatooine.yaml create mode 100644 themes/sw61.yaml create mode 100644 themes/swablu.yaml create mode 100644 themes/swaminarayan.yaml create mode 100644 themes/swamp-color-theme.yaml create mode 100644 themes/sweet-lemon.yaml create mode 100644 themes/sweet-pascal.yaml create mode 100644 themes/sweet-vscode.yaml create mode 100644 themes/sweetdracula-monokai.yaml create mode 100644 themes/swnb-palenight-theme.yaml create mode 100644 themes/syl-black.yaml create mode 100644 themes/syl-chocolate.yaml create mode 100644 themes/syl-forest.yaml create mode 100644 themes/syl-ice.yaml create mode 100644 themes/syl-plum.yaml create mode 100644 themes/syl-shadow.yaml create mode 100644 themes/syntax-palette.yaml create mode 100644 themes/synthe.yaml create mode 100644 themes/synthesis.yaml create mode 100644 themes/synthor-dark-fork.yaml create mode 100644 themes/synthwave-2077.yaml create mode 100644 themes/synthwave-84-csav-edition.yaml create mode 100644 themes/synthwave-84.yaml create mode 100644 themes/synthwave-alpha.yaml create mode 100644 themes/synthwave-material-ansi-16.yaml create mode 100644 themes/synthwave.yaml create mode 100644 themes/synthy.yaml create mode 100644 themes/sypher.yaml create mode 100644 themes/syrinx.yaml create mode 100644 themes/sys1.yaml create mode 100644 themes/sysop.yaml create mode 100644 themes/t-theme.yaml create mode 100644 themes/t3chdad-darkside-fork.yaml create mode 100644 themes/t3nsor-solo-leveling.yaml create mode 100644 themes/tabycord.yaml create mode 100644 themes/taco-syntax.yaml create mode 100644 themes/tahigh.yaml create mode 100644 themes/taiga.yaml create mode 100644 themes/tail-dark-theme.yaml create mode 100644 themes/tailwind-amber-dark.yaml create mode 100644 themes/tailwind-amber-light.yaml create mode 100644 themes/tailwind-blue-dark.yaml create mode 100644 themes/tailwind-blue-light.yaml create mode 100644 themes/tailwind-breeze.yaml create mode 100644 themes/tailwind-cyan-dark.yaml create mode 100644 themes/tailwind-cyan-light.yaml create mode 100644 themes/tailwind-dark.yaml create mode 100644 themes/tailwind-darkest.yaml create mode 100644 themes/tailwind-emerald-dark.yaml create mode 100644 themes/tailwind-emerald-light.yaml create mode 100644 themes/tailwind-fuchsia-dark.yaml create mode 100644 themes/tailwind-fuchsia-light.yaml create mode 100644 themes/tailwind-gray-dark.yaml create mode 100644 themes/tailwind-gray-light.yaml create mode 100644 themes/tailwind-green-dark.yaml create mode 100644 themes/tailwind-green-light.yaml create mode 100644 themes/tailwind-indigo-dark.yaml create mode 100644 themes/tailwind-indigo-light.yaml create mode 100644 themes/tailwind-lime-dark.yaml create mode 100644 themes/tailwind-lime-light.yaml create mode 100644 themes/tailwind-moon-blue.yaml create mode 100644 themes/tailwind-moon-grey.yaml create mode 100644 themes/tailwind-moon.yaml create mode 100644 themes/tailwind-neutral-dark.yaml create mode 100644 themes/tailwind-neutral-light.yaml create mode 100644 themes/tailwind-orange-dark.yaml create mode 100644 themes/tailwind-orange-light.yaml create mode 100644 themes/tailwind-pink-dark.yaml create mode 100644 themes/tailwind-pink-light.yaml create mode 100644 themes/tailwind-purple-dark.yaml create mode 100644 themes/tailwind-purple-light.yaml create mode 100644 themes/tailwind-red-dark.yaml create mode 100644 themes/tailwind-red-light.yaml create mode 100644 themes/tailwind-rose-dark.yaml create mode 100644 themes/tailwind-rose-light.yaml create mode 100644 themes/tailwind-sky-dark.yaml create mode 100644 themes/tailwind-sky-light.yaml create mode 100644 themes/tailwind-slate-dark.yaml create mode 100644 themes/tailwind-slate-light.yaml create mode 100644 themes/tailwind-stone-dark.yaml create mode 100644 themes/tailwind-stone-light.yaml create mode 100644 themes/tailwind-teal-dark.yaml create mode 100644 themes/tailwind-teal-light.yaml create mode 100644 themes/tailwind-violet-dark.yaml create mode 100644 themes/tailwind-violet-light.yaml create mode 100644 themes/tailwind-yellow-dark.yaml create mode 100644 themes/tailwind-yellow-light.yaml create mode 100644 themes/tailwind-zinc-dark.yaml create mode 100644 themes/tailwind-zinc-light.yaml create mode 100644 themes/tailwind.yaml create mode 100644 themes/taipei-night.yaml create mode 100644 themes/takenawa-modified.yaml create mode 100644 themes/takenawa.yaml create mode 100644 themes/tame-contrast.yaml create mode 100644 themes/tame-light.yaml create mode 100644 themes/tame.yaml create mode 100644 themes/tamil-nadu-temple-land.yaml create mode 100644 themes/tan-jade.yaml create mode 100644 themes/tangere-dark.yaml create mode 100644 themes/tangere-light.yaml create mode 100644 themes/tango-plus.yaml create mode 100644 themes/tango.yaml create mode 100644 themes/tanuki.yaml create mode 100644 themes/tao-theme.yaml create mode 100644 themes/taquito-darker.yaml create mode 100644 themes/taquito-lighter.yaml create mode 100644 themes/tara-theme-carbon-high-contrast.yaml create mode 100644 themes/tara-theme-carbon.yaml create mode 100644 themes/tara-theme-deepforest.yaml create mode 100644 themes/tara-theme-graphene.yaml create mode 100644 themes/tara-theme-ocean.yaml create mode 100644 themes/tara-theme-palenight.yaml create mode 100644 themes/tara-theme-teal.yaml create mode 100644 themes/taramandal-aurora.yaml create mode 100644 themes/taramandal-dark.yaml create mode 100644 themes/taramandal-true-cream.yaml create mode 100644 themes/tasmania-dark.yaml create mode 100644 themes/tasmania-light.yaml create mode 100644 themes/taurus.yaml create mode 100644 themes/tbfox-theme-light.yaml create mode 100644 themes/tbfox-theme.yaml create mode 100644 themes/tbs-theme.yaml create mode 100644 themes/tea-leaves.yaml create mode 100644 themes/teags.yaml create mode 100644 themes/teal-crow-light.yaml create mode 100644 themes/teal.yaml create mode 100644 themes/tealicious.yaml create mode 100644 themes/tealy.yaml create mode 100644 themes/team-pastel-colors-theme.yaml create mode 100644 themes/tearz.yaml create mode 100644 themes/techrazor-pro.yaml create mode 100644 themes/techstudent10.yaml create mode 100644 themes/techswahili-color-theme.yaml create mode 100644 themes/techswahili-deep.yaml create mode 100644 themes/techswahili-modern-dark.yaml create mode 100644 themes/tecoma-theme.yaml create mode 100644 themes/telax.yaml create mode 100644 themes/telescope-fork.yaml create mode 100644 themes/telescope.yaml create mode 100644 themes/tema-dark-nero.yaml create mode 100644 themes/tema-dos-cria.yaml create mode 100644 themes/tema-felipao.yaml create mode 100644 themes/teneblattinus.yaml create mode 100644 themes/tenebris.yaml create mode 100644 themes/terafox.yaml create mode 100644 themes/term.yaml create mode 100644 themes/terminal.yaml create mode 100644 themes/terracecat.yaml create mode 100644 themes/terrarium-minimal-dark.yaml create mode 100644 themes/terrarium-minimal-light.yaml create mode 100644 themes/terrorboy-dark.yaml create mode 100644 themes/tesselate.yaml create mode 100644 themes/tesseract-dark.yaml create mode 100644 themes/test.yaml create mode 100644 themes/tetra-contrast.yaml create mode 100644 themes/tetra-light.yaml create mode 100644 themes/tetra.yaml create mode 100644 themes/teutobourg.yaml create mode 100644 themes/textmate-rstheme.yaml create mode 100644 themes/th-me-dark-avril-vert-printemps.yaml create mode 100644 themes/th-me-dark-janvier-bleu-fonc.yaml create mode 100644 themes/th-me-dark-juillet-contraste-lev.yaml create mode 100644 themes/th-me-dark-juin-high-contrast.yaml create mode 100644 themes/th-me-dark-septembre-contraste-lev.yaml create mode 100644 themes/th-me-high-contrast-janvier-r-vis.yaml create mode 100644 themes/th-me-sombre-d-automne.yaml create mode 100644 themes/thanatos.yaml create mode 100644 themes/thatdatapurple.yaml create mode 100644 themes/the-best-theme-ever.yaml create mode 100644 themes/the-dark-stove.yaml create mode 100644 themes/the-digital-life.yaml create mode 100644 themes/the-druid.yaml create mode 100644 themes/the-empire.yaml create mode 100644 themes/the-end-of-development.yaml create mode 100644 themes/the-fato-dark.yaml create mode 100644 themes/the-flying-dutchman-high-contrast.yaml create mode 100644 themes/the-flying-dutchman-soft.yaml create mode 100644 themes/the-flying-dutchman.yaml create mode 100644 themes/the-gentleman.yaml create mode 100644 themes/the-occult.yaml create mode 100644 themes/the-one-theme.yaml create mode 100644 themes/the-only-tolerable-light-theme.yaml create mode 100644 themes/the-orchid-dark.yaml create mode 100644 themes/the-orchid-light.yaml create mode 100644 themes/the-orchid-soft.yaml create mode 100644 themes/the-theme.yaml create mode 100644 themes/theaisphere-dark.yaml create mode 100644 themes/theaisphere-light.yaml create mode 100644 themes/thebestthemealive.yaml create mode 100644 themes/thedarkerone.yaml create mode 100644 themes/themarro-dark-contrast.yaml create mode 100644 themes/themarro-david-remix.yaml create mode 100644 themes/themarro.yaml create mode 100644 themes/theme-bear.yaml create mode 100644 themes/theme-dark.yaml create mode 100644 themes/theme-for-codes-dark.yaml create mode 100644 themes/theme-for-codes-light.yaml create mode 100644 themes/theme-joey.yaml create mode 100644 themes/theme-mk-1-green.yaml create mode 100644 themes/theme-mk-rebuilt.yaml create mode 100644 themes/theme-nickel.yaml create mode 100644 themes/theme-one.yaml create mode 100644 themes/theme-stick-green-dark.yaml create mode 100644 themes/theme-y-random.yaml create mode 100644 themes/theme.yaml create mode 100644 themes/themedarker.yaml create mode 100644 themes/themeframek.yaml create mode 100644 themes/themegreen.yaml create mode 100644 themes/themename.yaml create mode 100644 themes/themenis.yaml create mode 100644 themes/themeo.yaml create mode 100644 themes/themepurple.yaml create mode 100644 themes/themer-dark.yaml create mode 100644 themes/themer-light.yaml create mode 100644 themes/themin-mint.yaml create mode 100644 themes/theo-swarg-dark.yaml create mode 100644 themes/theta.yaml create mode 100644 themes/thinkstorm.yaml create mode 100644 themes/thore-blue.yaml create mode 100644 themes/thorn.yaml create mode 100644 themes/thoughtworks-style-theme.yaml create mode 100644 themes/thra.yaml create mode 100644 themes/threedark.yaml create mode 100644 themes/thunder-focus.yaml create mode 100644 themes/thunder-remains-unseen.yaml create mode 100644 themes/thxdude-theme.yaml create mode 100644 themes/thyme21g.yaml create mode 100644 themes/thynaptic-dark-base.yaml create mode 100644 themes/thynaptic-dim-base.yaml create mode 100644 themes/thynaptic-pro.yaml create mode 100644 themes/thynaptic-sand-base.yaml create mode 100644 themes/thynaptic-sand-dark.yaml create mode 100644 themes/tickle-contrast.yaml create mode 100644 themes/tickle-light.yaml create mode 100644 themes/tickle-refresh.yaml create mode 100644 themes/tickle.yaml create mode 100644 themes/tidelight-contrast-light.yaml create mode 100644 themes/tidelight-contrast.yaml create mode 100644 themes/tidelight-dawn.yaml create mode 100644 themes/tidelight-daybreak.yaml create mode 100644 themes/tidelight-deep.yaml create mode 100644 themes/tidelight-dusk.yaml create mode 100644 themes/tidelight-fog.yaml create mode 100644 themes/tidelight-high-noon.yaml create mode 100644 themes/tidelight-midnight.yaml create mode 100644 themes/tidelight-shore.yaml create mode 100644 themes/tiktok.yaml create mode 100644 themes/tim-s-experiments-dark.yaml create mode 100644 themes/timir.yaml create mode 100644 themes/timu-macos-dark-theme.yaml create mode 100644 themes/timu-macos-light-theme.yaml create mode 100644 themes/timu-spacegrey-theme.yaml create mode 100644 themes/tinacious-design-syntax.yaml create mode 100644 themes/tiniri-dark.yaml create mode 100644 themes/tiniri-light.yaml create mode 100644 themes/tiny-light.yaml create mode 100644 themes/titillating-midnight.yaml create mode 100644 themes/titillating-sunset.yaml create mode 100644 themes/tlapalli-00-obsidian.yaml create mode 100644 themes/tlapalli-01-gold.yaml create mode 100644 themes/tlapalli-02-turquoise.yaml create mode 100644 themes/tlapalli-03-quartz.yaml create mode 100644 themes/tlapalli-04-lapis-lazuli.yaml create mode 100644 themes/tlapalli-05-amethyst.yaml create mode 100644 themes/tlapalli-06-jade.yaml create mode 100644 themes/tlapalli-07-fire-opal.yaml create mode 100644 themes/tlapalli-l-00-obsidian-light.yaml create mode 100644 themes/tlapalli-l-01-gold-light.yaml create mode 100644 themes/tlapalli-l-02-turquoise-light.yaml create mode 100644 themes/tlapalli-l-03-quartz-light.yaml create mode 100644 themes/tlapalli-l-04-lapis-lazuli-light.yaml create mode 100644 themes/tlapalli-l-05-amethyst-light.yaml create mode 100644 themes/tlapalli-l-06-jade-light.yaml create mode 100644 themes/tlapalli-l-07-fire-opal-light.yaml create mode 100644 themes/tm2rd3.yaml create mode 100644 themes/tnove-dark-theme.yaml create mode 100644 themes/tobirama-water-style.yaml create mode 100644 themes/tokito-inspired.yaml create mode 100644 themes/tokv7.yaml create mode 100644 themes/tokyo-dark.yaml create mode 100644 themes/tokyo-dive.yaml create mode 100644 themes/tokyo-ghosts-dark.yaml create mode 100644 themes/tokyo-ghosts-light.yaml create mode 100644 themes/tokyo-gogh-alt.yaml create mode 100644 themes/tokyo-gogh.yaml create mode 100644 themes/tokyo-light.yaml create mode 100644 themes/tokyo-lights.yaml create mode 100644 themes/tokyo-midnight.yaml create mode 100644 themes/tokyo-modern.yaml create mode 100644 themes/tokyo-night-blackout.yaml create mode 100644 themes/tokyo-night-bright.yaml create mode 100644 themes/tokyo-night-dark.yaml create mode 100644 themes/tokyo-night-equalizer.yaml create mode 100644 themes/tokyo-night-light.yaml create mode 100644 themes/tokyo-night-nv.yaml create mode 100644 themes/tokyo-night-pure.yaml create mode 100644 themes/tokyo-night-storm.yaml create mode 100644 themes/tokyo-night-void.yaml create mode 100644 themes/tokyo-night.yaml create mode 100644 themes/tokyo-panda.yaml create mode 100644 themes/tokyo.yaml create mode 100644 themes/tokyonight-moon-lazy.yaml create mode 100644 themes/tokyonight.yaml create mode 100644 themes/tol.yaml create mode 100644 themes/tomorrow-night-bright-r-classic.yaml create mode 100644 themes/tomorrow-night-ij.yaml create mode 100644 themes/tomorrow-night-vs.yaml create mode 100644 themes/tomorrowmyst.yaml create mode 100644 themes/tonic-contrast.yaml create mode 100644 themes/tonic-light.yaml create mode 100644 themes/tonic.yaml create mode 100644 themes/toodark.yaml create mode 100644 themes/topic-the-leader.yaml create mode 100644 themes/tora.yaml create mode 100644 themes/torque.yaml create mode 100644 themes/torte-vim.yaml create mode 100644 themes/total-black-theme.yaml create mode 100644 themes/total-lunar-eclipse.yaml create mode 100644 themes/totow-s-th-me.yaml create mode 100644 themes/toxic-color-theme.yaml create mode 100644 themes/toxic-waste.yaml create mode 100644 themes/toy-chest.yaml create mode 100644 themes/tranquillity-theme.yaml create mode 100644 themes/trans-pride-light-naomi.yaml create mode 100644 themes/transylvania.yaml create mode 100644 themes/triad-dragon.yaml create mode 100644 themes/tribal-contrast.yaml create mode 100644 themes/tribal-light.yaml create mode 100644 themes/tribal.yaml create mode 100644 themes/trioptimized.yaml create mode 100644 themes/tristan.yaml create mode 100644 themes/triumph-v2.yaml create mode 100644 themes/triumph.yaml create mode 100644 themes/tron-ares.yaml create mode 100644 themes/tron-contrast.yaml create mode 100644 themes/tron-light.yaml create mode 100644 themes/tron.yaml create mode 100644 themes/trsm-night-eyes.yaml create mode 100644 themes/true-dark.yaml create mode 100644 themes/trueamber.yaml create mode 100644 themes/tsuki.yaml create mode 100644 themes/tsukiroku-dark.yaml create mode 100644 themes/tsukuyomi-light.yaml create mode 100644 themes/tsukuyomi-no-italics.yaml create mode 100644 themes/tsumiki-theme.yaml create mode 100644 themes/ttheme.yaml create mode 100644 themes/tudoroxo.yaml create mode 100644 themes/tundra-dusk.yaml create mode 100644 themes/turbo-c-3-0-borland-style.yaml create mode 100644 themes/turbo.yaml create mode 100644 themes/turnip-contrast.yaml create mode 100644 themes/turnip-light.yaml create mode 100644 themes/turnip.yaml create mode 100644 themes/turquesa-bege.yaml create mode 100644 themes/tutilabs-theme.yaml create mode 100644 themes/tw40-gigi.yaml create mode 100644 themes/tweed-contrast.yaml create mode 100644 themes/tweed-light.yaml create mode 100644 themes/tweed.yaml create mode 100644 themes/twentyfour.yaml create mode 100644 themes/twilight-cosmos.yaml create mode 100644 themes/twilight-pro.yaml create mode 100644 themes/twilight-sage.yaml create mode 100644 themes/twilight.yaml create mode 100644 themes/twilightsparkle.yaml create mode 100644 themes/twilite-darker.yaml create mode 100644 themes/twilite.yaml create mode 100644 themes/twin-black.yaml create mode 100644 themes/twin-blue.yaml create mode 100644 themes/two-firewatch.yaml create mode 100644 themes/twodark.yaml create mode 100644 themes/tycho-crater.yaml create mode 100644 themes/tyh-theme-dark.yaml create mode 100644 themes/typedark-magenta.yaml create mode 100644 themes/typedark-yellow.yaml create mode 100644 themes/tyrell-corporation.yaml create mode 100644 themes/tyrian-night.yaml create mode 100644 themes/tyrone-neon-24k-gold.yaml create mode 100644 themes/ubuntu-dark.yaml create mode 100644 themes/ui-color.yaml create mode 100644 themes/ui.yaml create mode 100644 themes/ukiyo-e-aged-manuscript.yaml create mode 100644 themes/ukiyo-e-manuscript.yaml create mode 100644 themes/ukiyo-tone-asahi-morning-sun.yaml create mode 100644 themes/ukiyo-tone-kachi-iro-victory-color.yaml create mode 100644 themes/ukiyo-tone-karesansui-dry-landscape.yaml create mode 100644 themes/ukiyo-tone-koke-dera-moss-temple.yaml create mode 100644 themes/ukiyo-tone-kuro-sumi-black-ink.yaml create mode 100644 themes/ukiyo-tone-tasogare-twilight.yaml create mode 100644 themes/ukiyo.yaml create mode 100644 themes/ultima-gwz.yaml create mode 100644 themes/ultima.yaml create mode 100644 themes/ultra-instinct-mastered-light.yaml create mode 100644 themes/ultra-instinct-mastered.yaml create mode 100644 themes/ultra-instinct-sign.yaml create mode 100644 themes/umbra.yaml create mode 100644 themes/umi.yaml create mode 100644 themes/ump-45-leva.yaml create mode 100644 themes/unbluelievable.yaml create mode 100644 themes/undefined.yaml create mode 100644 themes/under-theme.yaml create mode 100644 themes/underdark-fork.yaml create mode 100644 themes/underdark-v2.yaml create mode 100644 themes/understated-no-italics.yaml create mode 100644 themes/unicorn-dark.yaml create mode 100644 themes/unicorn.yaml create mode 100644 themes/unicornio-dark.yaml create mode 100644 themes/unieye.yaml create mode 100644 themes/uniquezhd.yaml create mode 100644 themes/unitsmash.yaml create mode 100644 themes/unity-theme.yaml create mode 100644 themes/universe-gray-italic.yaml create mode 100644 themes/universe-italic.yaml create mode 100644 themes/universe-purple-italic.yaml create mode 100644 themes/universe.yaml create mode 100644 themes/unlight-v-2.yaml create mode 100644 themes/untitled-fork-fork.yaml create mode 100644 themes/untitled-fork.yaml create mode 100644 themes/untitled.yaml create mode 100644 themes/unyodusk.yaml create mode 100644 themes/updog-light.yaml create mode 100644 themes/updog.yaml create mode 100644 themes/upward-dark-focus-border-on.yaml create mode 100644 themes/upward-dark-legacy-focus-border-on.yaml create mode 100644 themes/urara.yaml create mode 100644 themes/urban-couple.yaml create mode 100644 themes/urban-forge.yaml create mode 100644 themes/urban-glow.yaml create mode 100644 themes/user160.yaml create mode 100644 themes/userscape-contrast.yaml create mode 100644 themes/userscape-light.yaml create mode 100644 themes/userscape.yaml create mode 100644 themes/utheme.yaml create mode 100644 themes/utopia.yaml create mode 100644 themes/uvadark-rahul-fork.yaml create mode 100644 themes/v-id-contrast.yaml create mode 100644 themes/v-id-soft.yaml create mode 100644 themes/v01d-theme-alternative.yaml create mode 100644 themes/v01d-theme.yaml create mode 100644 themes/v7.yaml create mode 100644 themes/vaatu.yaml create mode 100644 themes/vagalume-dev.yaml create mode 100644 themes/vagruvboxtheme-color-theme.yaml create mode 100644 themes/vague-neovim-theme-extended-light.yaml create mode 100644 themes/vague-neovim-theme-extended.yaml create mode 100644 themes/valary.yaml create mode 100644 themes/valkthor-dark-theme.yaml create mode 100644 themes/valley-italic.yaml create mode 100644 themes/valorant-theme-darker.yaml create mode 100644 themes/valorant-theme-remasterd.yaml create mode 100644 themes/vampurr.yaml create mode 100644 themes/van-gogh-theme.yaml create mode 100644 themes/vanilla-jade.yaml create mode 100644 themes/vanilla.yaml create mode 100644 themes/vapor.yaml create mode 100644 themes/vaporizer-alice-dark.yaml create mode 100644 themes/vaporizer-alice-light.yaml create mode 100644 themes/vaporizer-ava-light.yaml create mode 100644 themes/vaporizer-batman-dark-2022.yaml create mode 100644 themes/vaporizer-batman-dark-night.yaml create mode 100644 themes/vaporizer-cloudy-light.yaml create mode 100644 themes/vaporizer-cobalt-dark.yaml create mode 100644 themes/vaporizer-crescent-dark.yaml create mode 100644 themes/vaporizer-dark-blue-green.yaml create mode 100644 themes/vaporizer-dark-cherry.yaml create mode 100644 themes/vaporizer-dark-coffee.yaml create mode 100644 themes/vaporizer-dark-cool-1.yaml create mode 100644 themes/vaporizer-dark-cool-2.yaml create mode 100644 themes/vaporizer-dark-cop.yaml create mode 100644 themes/vaporizer-dark-cyber-neon-1.yaml create mode 100644 themes/vaporizer-dark-cyber-neon-2.yaml create mode 100644 themes/vaporizer-dark-cyber-neon-3.yaml create mode 100644 themes/vaporizer-dark-ivy.yaml create mode 100644 themes/vaporizer-dark-joker.yaml create mode 100644 themes/vaporizer-dark-matrix-1.yaml create mode 100644 themes/vaporizer-dark-monterey.yaml create mode 100644 themes/vaporizer-dark-painting.yaml create mode 100644 themes/vaporizer-dark-pansy.yaml create mode 100644 themes/vaporizer-dark-stabilo.yaml create mode 100644 themes/vaporizer-dark-turquoise.yaml create mode 100644 themes/vaporizer-epic-red-dark.yaml create mode 100644 themes/vaporizer-fonc-dark.yaml create mode 100644 themes/vaporizer-frozen-dark.yaml create mode 100644 themes/vaporizer-golgi-dark.yaml create mode 100644 themes/vaporizer-half-moon-dark.yaml create mode 100644 themes/vaporizer-lemonade-light.yaml create mode 100644 themes/vaporizer-lemonade-solarized-light.yaml create mode 100644 themes/vaporizer-milk-light.yaml create mode 100644 themes/vaporizer-mini-blue-light.yaml create mode 100644 themes/vaporizer-minimalism-light.yaml create mode 100644 themes/vaporizer-modern-light.yaml create mode 100644 themes/vaporizer-moon-light-dark.yaml create mode 100644 themes/vaporizer-phosphoric-blue.yaml create mode 100644 themes/vaporizer-purple-gray-dark.yaml create mode 100644 themes/vaporizer-soft-light.yaml create mode 100644 themes/vaporizer-splash-dark.yaml create mode 100644 themes/vaporizer-turquoise-light.yaml create mode 100644 themes/vaporwave.yaml create mode 100644 themes/vaquita.yaml create mode 100644 themes/varlet-dark.yaml create mode 100644 themes/vase-with-twelve-sunflowers.yaml create mode 100644 themes/vasses-tricolor-theme.yaml create mode 100644 themes/vcoldtheme.yaml create mode 100644 themes/vegas-night-details-theme.yaml create mode 100644 themes/vegetable-contrast.yaml create mode 100644 themes/vegetable-light.yaml create mode 100644 themes/vegetable.yaml create mode 100644 themes/vegetation.yaml create mode 100644 themes/veil.yaml create mode 100644 themes/veiled.yaml create mode 100644 themes/veist.yaml create mode 100644 themes/vela-spectrum-colorblind-light.yaml create mode 100644 themes/vela-spectrum-dark-colorblind.yaml create mode 100644 themes/vela-spectrum-dark-dimmed.yaml create mode 100644 themes/vela-spectrum-dark-tritanopia.yaml create mode 100644 themes/vela-spectrum-dark.yaml create mode 100644 themes/vela-spectrum-dimmed-light.yaml create mode 100644 themes/vela-spectrum-high-contrast-light.yaml create mode 100644 themes/vela-spectrum-high-contrast.yaml create mode 100644 themes/vela-spectrum-light-tritanopia.yaml create mode 100644 themes/vela-spectrum-light.yaml create mode 100644 themes/velourous.yaml create mode 100644 themes/velvet-chrome.yaml create mode 100644 themes/velvet-thunder.yaml create mode 100644 themes/venice-beach-sky.yaml create mode 100644 themes/venom-theme.yaml create mode 100644 themes/vercel-light.yaml create mode 100644 themes/vercel.yaml create mode 100644 themes/verdantium.yaml create mode 100644 themes/verdure.yaml create mode 100644 themes/version-1-0-5.yaml create mode 100644 themes/very-blue.yaml create mode 100644 themes/very-fast-theme.yaml create mode 100644 themes/vesper-golden.yaml create mode 100644 themes/vesper-purple-dark.yaml create mode 100644 themes/vesper-purple-light.yaml create mode 100644 themes/vesper.yaml create mode 100644 themes/vhs80.yaml create mode 100644 themes/vi-dark.yaml create mode 100644 themes/vibe-dark-legacy.yaml create mode 100644 themes/vibecolors-corporate-light.yaml create mode 100644 themes/vibecolors-dark.yaml create mode 100644 themes/vibecolors-dynamic-dark.yaml create mode 100644 themes/vibecolors-dynamic-light.yaml create mode 100644 themes/vibecolors-light.yaml create mode 100644 themes/vibecolors-minimal-light.yaml create mode 100644 themes/vibecolors-neon-dark.yaml create mode 100644 themes/vibecolors-ocean-dark.yaml create mode 100644 themes/vibecolors-pastel-light.yaml create mode 100644 themes/vibecolors-retro-dark.yaml create mode 100644 themes/vibecolors-soft-dark.yaml create mode 100644 themes/vibecolors-sunset-light.yaml create mode 100644 themes/vibes.yaml create mode 100644 themes/vibra.yaml create mode 100644 themes/vibrant-abyss-vscode.yaml create mode 100644 themes/vibrant-dark.yaml create mode 100644 themes/vibrant-max.yaml create mode 100644 themes/vice-city-noir.yaml create mode 100644 themes/vicious.yaml create mode 100644 themes/victoria-dark.yaml create mode 100644 themes/victoria-light.yaml create mode 100644 themes/video-contrast.yaml create mode 100644 themes/vigerdark.yaml create mode 100644 themes/vigikai.yaml create mode 100644 themes/viii-iii-mmv.yaml create mode 100644 themes/vikkie-dark.yaml create mode 100644 themes/vikkie-light.yaml create mode 100644 themes/villain-dark.yaml create mode 100644 themes/villain-light.yaml create mode 100644 themes/vim-dar11sdasdasd.yaml create mode 100644 themes/vim-dark-hard.yaml create mode 100644 themes/vim-dark-medium.yaml create mode 100644 themes/vim-dark-soft.yaml create mode 100644 themes/vim-light-1.yaml create mode 100644 themes/vim-light-2.yaml create mode 100644 themes/vim-light-3b.yaml create mode 100644 themes/vim-light-hard.yaml create mode 100644 themes/vim-light-medium.yaml create mode 100644 themes/vim-light-soft.yaml create mode 100644 themes/vim-night.yaml create mode 100644 themes/vin-theme.yaml create mode 100644 themes/vintage-rust-theme.yaml create mode 100644 themes/vintage-serene.yaml create mode 100644 themes/vintage.yaml create mode 100644 themes/vinyl.yaml create mode 100644 themes/violaceous-contrast.yaml create mode 100644 themes/violaceous-light.yaml create mode 100644 themes/violaceous.yaml create mode 100644 themes/violet-dream.yaml create mode 100644 themes/violet-night.yaml create mode 100644 themes/violet-nova.yaml create mode 100644 themes/viora.yaml create mode 100644 themes/viper-theme.yaml create mode 100644 themes/vishwakarma-sunset-glow.yaml create mode 100644 themes/vision-colorblind.yaml create mode 100644 themes/vision-light-colorblind.yaml create mode 100644 themes/visual-studio-code-dark-theme.yaml create mode 100644 themes/visual-studio-github-light-plus.yaml create mode 100644 themes/visualos.yaml create mode 100644 themes/vitepress-theme-vite-dark.yaml create mode 100644 themes/vitesse-black.yaml create mode 100644 themes/vitesse-dark-custom.yaml create mode 100644 themes/vitesse-dark-soft.yaml create mode 100644 themes/vitesse-dark.yaml create mode 100644 themes/vitesse-dragon-dark.yaml create mode 100644 themes/vitesse-dragon.yaml create mode 100644 themes/vitesse-green-theme.yaml create mode 100644 themes/vitesse-light-soft.yaml create mode 100644 themes/vitesse-light.yaml create mode 100644 themes/vitesse-webstorm-dark.yaml create mode 100644 themes/vitrioleuse.yaml create mode 100644 themes/vivid-blue.yaml create mode 100644 themes/vividnord.yaml create mode 100644 themes/vivido-theme.yaml create mode 100644 themes/vkt-theme.yaml create mode 100644 themes/void-iris.yaml create mode 100644 themes/void-script.yaml create mode 100644 themes/void.yaml create mode 100644 themes/voidbloom-quazar.yaml create mode 100644 themes/voidbloom-singularity.yaml create mode 100644 themes/voidwalker.yaml create mode 100644 themes/volatile-contrast.yaml create mode 100644 themes/volatile-light.yaml create mode 100644 themes/volatile.yaml create mode 100644 themes/volcanofr.yaml create mode 100644 themes/volskaya.yaml create mode 100644 themes/volt-dark.yaml create mode 100644 themes/voodoo.yaml create mode 100644 themes/voraes.yaml create mode 100644 themes/vortex.yaml create mode 100644 themes/vox-ac30.yaml create mode 100644 themes/voyager.yaml create mode 100644 themes/vs-code-deep-f-lux-fork-fork.yaml create mode 100644 themes/vs-code-deep-f-lux.yaml create mode 100644 themes/vs-code-next-js.yaml create mode 100644 themes/vs-fleet.yaml create mode 100644 themes/vs-ghoul.yaml create mode 100644 themes/vsblue.yaml create mode 100644 themes/vsc-blue-theme.yaml create mode 100644 themes/vsc-military-style.yaml create mode 100644 themes/vsc-minimalist-theme-oak.yaml create mode 100644 themes/vsc-minimalist-theme-obsidian.yaml create mode 100644 themes/vsc-minimalist-theme-odp.yaml create mode 100644 themes/vsc-solarized-light.yaml create mode 100644 themes/vscode-bt-feynuus-color-theme.yaml create mode 100644 themes/vscode-material-ui.yaml create mode 100644 themes/vscode-nofrils-dark.yaml create mode 100644 themes/vscode-nofrils-github-light.yaml create mode 100644 themes/vscode-nofrils-gruvbox-dark.yaml create mode 100644 themes/vscode-nofrils-gruvbox-light.yaml create mode 100644 themes/vscode-nofrils-light.yaml create mode 100644 themes/vscode-nofrils-one-dark.yaml create mode 100644 themes/vscode-nofrils-one-light.yaml create mode 100644 themes/vscode-nofrils-sepia.yaml create mode 100644 themes/vscode-nofrils-tokyo-night.yaml create mode 100644 themes/vscode-pink-and-puple-theme.yaml create mode 100644 themes/vscode-sublime-ish.yaml create mode 100644 themes/vscode-theme.yaml create mode 100644 themes/vscyberpunk-2077.yaml create mode 100644 themes/vsmuted-color-theme.yaml create mode 100644 themes/vsnordtheme-dark-contrast-color-theme.yaml create mode 100644 themes/vsnordtheme-light-color-theme.yaml create mode 100644 themes/vsnordtheme-light-contrast-color-theme.yaml create mode 100644 themes/vstheme-no-italics.yaml create mode 100644 themes/vstoolkit-theme-dark.yaml create mode 100644 themes/vuejs-theme.yaml create mode 100644 themes/vulpotheme.yaml create mode 100644 themes/vxcode-blush.yaml create mode 100644 themes/vxcode-cream.yaml create mode 100644 themes/vxcode-dark.yaml create mode 100644 themes/vxcode-darker.yaml create mode 100644 themes/vxcode-lavender.yaml create mode 100644 themes/vxcode-lime.yaml create mode 100644 themes/vxcode-oled.yaml create mode 100644 themes/w30.yaml create mode 100644 themes/w40-theme.yaml create mode 100644 themes/walking-in-the-dark-red.yaml create mode 100644 themes/wallbash.yaml create mode 100644 themes/walloco-light-theme.yaml create mode 100644 themes/walls-fill.yaml create mode 100644 themes/wandering-mercenary.yaml create mode 100644 themes/wangyj-bright-black.yaml create mode 100644 themes/wangyj-contrast-black.yaml create mode 100644 themes/wangyj-film-black.yaml create mode 100644 themes/wangyj-film-light.yaml create mode 100644 themes/warlock-contrast.yaml create mode 100644 themes/warlock-light.yaml create mode 100644 themes/warlock.yaml create mode 100644 themes/warm-black.yaml create mode 100644 themes/warm-burnout-dark.yaml create mode 100644 themes/warm-burnout-light.yaml create mode 100644 themes/warm-orange-enthusiasm-creativity.yaml create mode 100644 themes/warm-orange-theme.yaml create mode 100644 themes/warmkai-pro.yaml create mode 100644 themes/waste-contrast.yaml create mode 100644 themes/waste-light.yaml create mode 100644 themes/waste.yaml create mode 100644 themes/water-grape.yaml create mode 100644 themes/waterbyte-classic-2022-light.yaml create mode 100644 themes/watermelon.yaml create mode 100644 themes/wavefire.yaml create mode 100644 themes/waves.yaml create mode 100644 themes/wdark-theme.yaml create mode 100644 themes/webc-dark.yaml create mode 100644 themes/webstorm-darcula-dark-theme.yaml create mode 100644 themes/webstorm-intellij-darcula-theme.yaml create mode 100644 themes/webstorm-monokai.yaml create mode 100644 themes/weiting-candycolor.yaml create mode 100644 themes/west-bengal-cultural-hub.yaml create mode 100644 themes/what-the-hell.yaml create mode 100644 themes/wheel-color-theme.yaml create mode 100644 themes/wheel-light-color-theme.yaml create mode 100644 themes/whiskey-coder-dark.yaml create mode 100644 themes/whiskey-coder-light.yaml create mode 100644 themes/white-blue-demo.yaml create mode 100644 themes/white-color-theme.yaml create mode 100644 themes/white-night-color-theme.yaml create mode 100644 themes/white-shade-color.yaml create mode 100644 themes/white-winter.yaml create mode 100644 themes/whiteboard.yaml create mode 100644 themes/whitespace.yaml create mode 100644 themes/wick.yaml create mode 100644 themes/wicked.yaml create mode 100644 themes/widgit-monokai.yaml create mode 100644 themes/wiity-green-eye-friendly.yaml create mode 100644 themes/wiity-green.yaml create mode 100644 themes/wild-flower.yaml create mode 100644 themes/wildcat.yaml create mode 100644 themes/wildtype.yaml create mode 100644 themes/wildwest.yaml create mode 100644 themes/will-o-wisp-theme.yaml create mode 100644 themes/willasm-emerald-sky.yaml create mode 100644 themes/willi-style-darker.yaml create mode 100644 themes/willi-style-darkest.yaml create mode 100644 themes/willi-style-dracula-flavour.yaml create mode 100644 themes/willow.yaml create mode 100644 themes/win-xp-luna.yaml create mode 100644 themes/win10.yaml create mode 100644 themes/winclassic.yaml create mode 100644 themes/wind-dark-slate.yaml create mode 100644 themes/wind-dark-zinc.yaml create mode 100644 themes/wind.yaml create mode 100644 themes/windows-95-theme.yaml create mode 100644 themes/windows-nt.yaml create mode 100644 themes/windows-xp-dark-luna.yaml create mode 100644 themes/windu.yaml create mode 100644 themes/windwaker.yaml create mode 100644 themes/wine-garden.yaml create mode 100644 themes/winter-pearl.yaml create mode 100644 themes/winter.yaml create mode 100644 themes/winteriscoding-gift.yaml create mode 100644 themes/winteriscoding.yaml create mode 100644 themes/wired-lighter.yaml create mode 100644 themes/wired.yaml create mode 100644 themes/wise-owl-material-high-contrast.yaml create mode 100644 themes/wise-owl-material-light.yaml create mode 100644 themes/wise-owl-material.yaml create mode 100644 themes/wisteria.yaml create mode 100644 themes/witch-elaina.yaml create mode 100644 themes/witcher.yaml create mode 100644 themes/witchy-dark.yaml create mode 100644 themes/wl-acid-wash.yaml create mode 100644 themes/wl-amber-monitor.yaml create mode 100644 themes/wl-chrome-dreams.yaml create mode 100644 themes/wl-cosmic-drift.yaml create mode 100644 themes/wl-crystal-cave.yaml create mode 100644 themes/wl-cyber-punk.yaml create mode 100644 themes/wl-data-stream.yaml create mode 100644 themes/wl-disco-ball.yaml create mode 100644 themes/wl-electric-dreams.yaml create mode 100644 themes/wl-electric-sunset.yaml create mode 100644 themes/wl-fusion-core.yaml create mode 100644 themes/wl-graffiti-wall.yaml create mode 100644 themes/wl-hyper-drive.yaml create mode 100644 themes/wl-ink-splash.yaml create mode 100644 themes/wl-jade-temple.yaml create mode 100644 themes/wl-laser-grid.yaml create mode 100644 themes/wl-lava-lamp.yaml create mode 100644 themes/wl-mainframe-blue.yaml create mode 100644 themes/wl-midnight-drive.yaml create mode 100644 themes/wl-misty-mountain.yaml create mode 100644 themes/wl-moon-phase.yaml create mode 100644 themes/wl-neon-cascade.yaml create mode 100644 themes/wl-neon-sign.yaml create mode 100644 themes/wl-neon-tokyo.yaml create mode 100644 themes/wl-nova-burst.yaml create mode 100644 themes/wl-pastel-dream.yaml create mode 100644 themes/wl-pixel-punch.yaml create mode 100644 themes/wl-plasma-storm.yaml create mode 100644 themes/wl-prism-break.yaml create mode 100644 themes/wl-pulse-wave.yaml create mode 100644 themes/wl-punch-tape.yaml create mode 100644 themes/wl-retro-arcade.yaml create mode 100644 themes/wl-retro-future.yaml create mode 100644 themes/wl-signal-wave.yaml create mode 100644 themes/wl-silk-road.yaml create mode 100644 themes/wl-synthwave-rider.yaml create mode 100644 themes/wl-tape-deck.yaml create mode 100644 themes/wl-terminal-green.yaml create mode 100644 themes/wl-vacuum-glow.yaml create mode 100644 themes/wl-velvet-night.yaml create mode 100644 themes/wl-volt-surge.yaml create mode 100644 themes/wl-zen-twilight.yaml create mode 100644 themes/wolves-league-dark.yaml create mode 100644 themes/woodsmoke.yaml create mode 100644 themes/wookie.yaml create mode 100644 themes/word-color-theme.yaml create mode 100644 themes/word-dark-theme.yaml create mode 100644 themes/wordsmith-dark.yaml create mode 100644 themes/wordsmith-light.yaml create mode 100644 themes/wrkspace-theme.yaml create mode 100644 themes/wuthering-waves-aemeath-dark.yaml create mode 100644 themes/wuthering-waves-aemeath.yaml create mode 100644 themes/wuthering-waves-augusta-dark.yaml create mode 100644 themes/wuthering-waves-augusta.yaml create mode 100644 themes/wuthering-waves-baizhi-dark.yaml create mode 100644 themes/wuthering-waves-baizhi.yaml create mode 100644 themes/wuthering-waves-brant-dark.yaml create mode 100644 themes/wuthering-waves-brant.yaml create mode 100644 themes/wuthering-waves-cantarella-dark.yaml create mode 100644 themes/wuthering-waves-cantarella.yaml create mode 100644 themes/wuthering-waves-carlotta-dark.yaml create mode 100644 themes/wuthering-waves-carlotta.yaml create mode 100644 themes/wuthering-waves-cartethyia-dark.yaml create mode 100644 themes/wuthering-waves-cartethyia.yaml create mode 100644 themes/wuthering-waves-changli-dark.yaml create mode 100644 themes/wuthering-waves-changli.yaml create mode 100644 themes/wuthering-waves-chisa-dark.yaml create mode 100644 themes/wuthering-waves-chisa.yaml create mode 100644 themes/wuthering-waves-galbrena-dark.yaml create mode 100644 themes/wuthering-waves-galbrena.yaml create mode 100644 themes/wuthering-waves-iuno-dark.yaml create mode 100644 themes/wuthering-waves-iuno.yaml create mode 100644 themes/wuthering-waves-jinhsi.yaml create mode 100644 themes/wuthering-waves-lynae-dark.yaml create mode 100644 themes/wuthering-waves-lynae.yaml create mode 100644 themes/wuthering-waves-mornye-dark.yaml create mode 100644 themes/wuthering-waves-mornye.yaml create mode 100644 themes/wuthering-waves-roccia-dark.yaml create mode 100644 themes/wuthering-waves-roccia.yaml create mode 100644 themes/wuthering-waves-rover.yaml create mode 100644 themes/wuthering-waves-sanhua-dark.yaml create mode 100644 themes/wuthering-waves-sanhua.yaml create mode 100644 themes/wuthering-waves-scar-dark.yaml create mode 100644 themes/wuthering-waves-scar.yaml create mode 100644 themes/wuthering-waves-taoqi.yaml create mode 100644 themes/wuthering-waves-the-shorekeeper-dark.yaml create mode 100644 themes/wuthering-waves-the-shorekeeper.yaml create mode 100644 themes/wuthering-waves-verina-dark.yaml create mode 100644 themes/wuthering-waves-verina.yaml create mode 100644 themes/wuthering-waves-yinlin-dark.yaml create mode 100644 themes/wuthering-waves-yinlin.yaml create mode 100644 themes/wuthering-waves-zhezhi-dark.yaml create mode 100644 themes/wuthering-waves-zhezhi.yaml create mode 100644 themes/wye-black.yaml create mode 100644 themes/wye-dark-soft.yaml create mode 100644 themes/wye-dark.yaml create mode 100644 themes/wye-light-soft.yaml create mode 100644 themes/wye-light.yaml create mode 100644 themes/xaeon-dark.yaml create mode 100644 themes/xaidozy-color.yaml create mode 100644 themes/xanthron-light.yaml create mode 100644 themes/xava-color-theme.yaml create mode 100644 themes/xceodark.yaml create mode 100644 themes/xcode-dark.yaml create mode 100644 themes/xecoy-dark.yaml create mode 100644 themes/xecoy-light.yaml create mode 100644 themes/xiali-vintage-rose-dark.yaml create mode 100644 themes/xiali-vintage-rose-light.yaml create mode 100644 themes/xis-one.yaml create mode 100644 themes/xk-dark-catppuccin-mocha.yaml create mode 100644 themes/xk-dark-dracula.yaml create mode 100644 themes/xk-dark-gruvbox.yaml create mode 100644 themes/xk-dark-monokai-pro.yaml create mode 100644 themes/xk-dark-tokyo-night.yaml create mode 100644 themes/xk-light-catppuccin-latte.yaml create mode 100644 themes/xk-light-github.yaml create mode 100644 themes/xk-light-one.yaml create mode 100644 themes/xk-light-ros-pine.yaml create mode 100644 themes/xk-light-solarized.yaml create mode 100644 themes/xlumielvscodetheme.yaml create mode 100644 themes/xochil.yaml create mode 100644 themes/xotocode-dark.yaml create mode 100644 themes/xotopio.yaml create mode 100644 themes/xpyjs-black.yaml create mode 100644 themes/xresources-bordered-dark.yaml create mode 100644 themes/xresources-bordered-mixed.yaml create mode 100644 themes/xresources-bordered.yaml create mode 100644 themes/xresources.yaml create mode 100644 themes/xrodev.yaml create mode 100644 themes/xs.yaml create mode 100644 themes/xstheme.yaml create mode 100644 themes/xthemis-cyan.yaml create mode 100644 themes/xtree-gold.yaml create mode 100644 themes/xviewdark.yaml create mode 100644 themes/xxhtml.yaml create mode 100644 themes/xxtereshko-light.yaml create mode 100644 themes/xzadudu179.yaml create mode 100644 themes/y3m.yaml create mode 100644 themes/yaast.yaml create mode 100644 themes/yagnesh.yaml create mode 100644 themes/yagomaia-theme.yaml create mode 100644 themes/yalpha-dark-eris.yaml create mode 100644 themes/yami-blue.yaml create mode 100644 themes/yanbaru-shadow.yaml create mode 100644 themes/yarra-valley.yaml create mode 100644 themes/yaru-dark-grape.yaml create mode 100644 themes/yaru-dark.yaml create mode 100644 themes/yaru.yaml create mode 100644 themes/yaruna-aurora.yaml create mode 100644 themes/yaruna-forest.yaml create mode 100644 themes/yaruna-midnight.yaml create mode 100644 themes/yaruna-nova.yaml create mode 100644 themes/yaruna-palenight.yaml create mode 100644 themes/yazbi.yaml create mode 100644 themes/yd-dark.yaml create mode 100644 themes/yd-light.yaml create mode 100644 themes/ydrgzm-light-theme.yaml create mode 100644 themes/yelan.yaml create mode 100644 themes/yellow-beryl.yaml create mode 100644 themes/yellow-green-blue-theme.yaml create mode 100644 themes/yellow-ish.yaml create mode 100644 themes/yellow-purple-theme.yaml create mode 100644 themes/yellowed.yaml create mode 100644 themes/yerba.yaml create mode 100644 themes/yet-another-solarized-theme-dark.yaml create mode 100644 themes/yet-another-solarized-theme-light.yaml create mode 100644 themes/yharnizedtheme.yaml create mode 100644 themes/yinloonga-python.yaml create mode 100644 themes/yitzchok-contrast.yaml create mode 100644 themes/yitzchok-light.yaml create mode 100644 themes/yitzchok.yaml create mode 100644 themes/ylw-dark-theme.yaml create mode 100644 themes/yoda-mystical-force.yaml create mode 100644 themes/yoda.yaml create mode 100644 themes/yodart.yaml create mode 100644 themes/yohualli-eclipse.yaml create mode 100644 themes/yohualli-lunaris.yaml create mode 100644 themes/yohualli-nebulune.yaml create mode 100644 themes/yohualli-penumbra.yaml create mode 100644 themes/yonc.yaml create mode 100644 themes/yondog-dark.yaml create mode 100644 themes/yotei.yaml create mode 100644 themes/yoth-theme-dark.yaml create mode 100644 themes/yoyo-theme-green.yaml create mode 100644 themes/yoyo-theme.yaml create mode 100644 themes/ystheme.yaml create mode 100644 themes/ytheme-dark.yaml create mode 100644 themes/yue-theme.yaml create mode 100644 themes/yukinord.yaml create mode 100644 themes/yule-contrast.yaml create mode 100644 themes/yule-light.yaml create mode 100644 themes/yule.yaml create mode 100644 themes/yulon.yaml create mode 100644 themes/yum.yaml create mode 100644 themes/yurei-dark-theme.yaml create mode 100644 themes/yuru-black.yaml create mode 100644 themes/yuru.yaml create mode 100644 themes/yuyuko-vscode-ocean.yaml create mode 100644 themes/yuyuko-vscode.yaml create mode 100644 themes/z-darktheme.yaml create mode 100644 themes/z3r0.yaml create mode 100644 themes/zach-s-blue-theme.yaml create mode 100644 themes/zacks-contrast.yaml create mode 100644 themes/zacks-light.yaml create mode 100644 themes/zacks.yaml create mode 100644 themes/zaher-color-theme.yaml create mode 100644 themes/zan.yaml create mode 100644 themes/zandromeda.yaml create mode 100644 themes/zap.yaml create mode 100644 themes/zathura.yaml create mode 100644 themes/zbra-dark.yaml create mode 100644 themes/zeal.yaml create mode 100644 themes/zednostheme-v1.yaml create mode 100644 themes/zelda-dark.yaml create mode 100644 themes/zelzea.yaml create mode 100644 themes/zemarcolortheme.yaml create mode 100644 themes/zemizer-grey.yaml create mode 100644 themes/zen-dark.yaml create mode 100644 themes/zen-mono.yaml create mode 100644 themes/zen-sakura-cherry-blossom.yaml create mode 100644 themes/zen-theme.yaml create mode 100644 themes/zen.yaml create mode 100644 themes/zenbones-dark-stark.yaml create mode 100644 themes/zenbones-dark-warm.yaml create mode 100644 themes/zenbones-dark.yaml create mode 100644 themes/zenbones-duckbones-dark-stark.yaml create mode 100644 themes/zenbones-duckbones-dark-warm.yaml create mode 100644 themes/zenbones-duckbones-dark.yaml create mode 100644 themes/zenbones-forestbones-dark-stark.yaml create mode 100644 themes/zenbones-forestbones-dark-warm.yaml create mode 100644 themes/zenbones-forestbones-dark.yaml create mode 100644 themes/zenbones-forestbones-light-bright.yaml create mode 100644 themes/zenbones-forestbones-light-dim.yaml create mode 100644 themes/zenbones-forestbones-light.yaml create mode 100644 themes/zenbones-kanagawabones-dark-stark.yaml create mode 100644 themes/zenbones-kanagawabones-dark-warm.yaml create mode 100644 themes/zenbones-kanagawabones-dark.yaml create mode 100644 themes/zenbones-light-bright.yaml create mode 100644 themes/zenbones-light-dim.yaml create mode 100644 themes/zenbones-light.yaml create mode 100644 themes/zenbones-neobones-dark-stark.yaml create mode 100644 themes/zenbones-neobones-dark-warm.yaml create mode 100644 themes/zenbones-neobones-dark.yaml create mode 100644 themes/zenbones-neobones-light-bright.yaml create mode 100644 themes/zenbones-neobones-light-dim.yaml create mode 100644 themes/zenbones-neobones-light.yaml create mode 100644 themes/zenbones-nordbones-dark-stark.yaml create mode 100644 themes/zenbones-nordbones-dark-warm.yaml create mode 100644 themes/zenbones-nordbones-dark.yaml create mode 100644 themes/zenbones-rosebones-dark-stark.yaml create mode 100644 themes/zenbones-rosebones-dark-warm.yaml create mode 100644 themes/zenbones-rosebones-dark.yaml create mode 100644 themes/zenbones-rosebones-light-bright.yaml create mode 100644 themes/zenbones-rosebones-light-dim.yaml create mode 100644 themes/zenbones-rosebones-light.yaml create mode 100644 themes/zenbones-seoulbones-dark-stark.yaml create mode 100644 themes/zenbones-seoulbones-dark-warm.yaml create mode 100644 themes/zenbones-seoulbones-dark.yaml create mode 100644 themes/zenbones-seoulbones-light-bright.yaml create mode 100644 themes/zenbones-seoulbones-light-dim.yaml create mode 100644 themes/zenbones-seoulbones-light.yaml create mode 100644 themes/zenbones-tokyobones-dark-stark.yaml create mode 100644 themes/zenbones-tokyobones-dark-warm.yaml create mode 100644 themes/zenbones-tokyobones-dark.yaml create mode 100644 themes/zenbones-tokyobones-light-bright.yaml create mode 100644 themes/zenbones-tokyobones-light-dim.yaml create mode 100644 themes/zenbones-tokyobones-light.yaml create mode 100644 themes/zenbones-vimbones-light-bright.yaml create mode 100644 themes/zenbones-vimbones-light-dim.yaml create mode 100644 themes/zenbones-vimbones-light.yaml create mode 100644 themes/zenbones-zenburned-dark-stark.yaml create mode 100644 themes/zenbones-zenburned-dark-warm.yaml create mode 100644 themes/zenbones-zenburned-dark.yaml create mode 100644 themes/zenbones-zenwritten-dark-stark.yaml create mode 100644 themes/zenbones-zenwritten-dark-warm.yaml create mode 100644 themes/zenbones-zenwritten-dark.yaml create mode 100644 themes/zenbones-zenwritten-light-bright.yaml create mode 100644 themes/zenbones-zenwritten-light-dim.yaml create mode 100644 themes/zenbones-zenwritten-light.yaml create mode 100644 themes/zenbook-ux534ftc-white-gold-v1-full-dark.yaml create mode 100644 themes/zenbook-ux534ftc-white-gold-v2-1-95.yaml create mode 100644 themes/zenburn.yaml create mode 100644 themes/zene-dark-theme.yaml create mode 100644 themes/zeneth.yaml create mode 100644 themes/zenflow-noir.yaml create mode 100644 themes/zenith-aurora.yaml create mode 100644 themes/zenith-dawn.yaml create mode 100644 themes/zenith-dusk.yaml create mode 100644 themes/zenith-forest.yaml create mode 100644 themes/zenith-midnight.yaml create mode 100644 themes/zenith-neutral.yaml create mode 100644 themes/zenith-ocean.yaml create mode 100644 themes/zenith-ros.yaml create mode 100644 themes/zenith-zen.yaml create mode 100644 themes/zenith.yaml create mode 100644 themes/zenitria-amoled.yaml create mode 100644 themes/zenml.yaml create mode 100644 themes/zero-s-solarized.yaml create mode 100644 themes/zero-wip.yaml create mode 100644 themes/zeus-turquoise.yaml create mode 100644 themes/zeus-yelo.yaml create mode 100644 themes/zhangpengtao-black.yaml create mode 100644 themes/zhe-qi.yaml create mode 100644 themes/zhongli.yaml create mode 100644 themes/zhxo-lt.yaml create mode 100644 themes/zhxo-red-experimental.yaml create mode 100644 themes/zhxo-st.yaml create mode 100644 themes/zhxo-yll.yaml create mode 100644 themes/zinc.yaml create mode 100644 themes/zokugun-obsidium.yaml create mode 100644 themes/zordon-colors.yaml create mode 100644 themes/zoren-breeze.yaml create mode 100644 themes/ztheme.yaml create mode 100644 themes/ztok.yaml create mode 100644 themes/zunda-dark.yaml create mode 100644 themes/zux-purple-minimal.yaml create mode 100644 themes/zwel.yaml create mode 100644 themes/zxxn.yaml create mode 100644 themes/zygomatic-blue.yaml create mode 100644 themes/zyrotec.yaml create mode 100644 themes/zzhtheme-dark.yaml create mode 100644 themes/zzhtheme-light.yaml diff --git a/themes/.yaml b/themes/.yaml new file mode 100644 index 00000000..ec9b706b --- /dev/null +++ b/themes/.yaml @@ -0,0 +1,49 @@ +name: "𝐂𝐚𝐥𝐜𝐢𝐮𝐦º❍。⊹・゚✧" +source: + marketplace_id: "Feefoolec.calcium" + version: "1.0.0" + installs: 80 + author: "Feefoolec" + repo: "https://github.com/FilipKajetaniak/calcium" + url: "https://marketplace.visualstudio.com/items?itemName=Feefoolec.calcium" +colors: + bg: "#191919" + fg: "#74D8FF" + black: "#000000" + red: "#FD207D" + green: "#1CD9BF" + yellow: "#FDA85D" + blue: "#667DFF" + magenta: "#C697FF" + cyan: "#5ED2FF" + white: "#EEC9FF" + brightBlack: "#3108A3" + brightRed: "#FF6396" + brightGreen: "#43FFDC" + brightYellow: "#FFD862" + brightBlue: "#97B6FF" + brightMagenta: "#FFA2CE" + brightCyan: "#76C2E0" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 74.4 + black: 0 + red: 38.1 + green: 68.9 + yellow: 64.8 + blue: 37.9 + magenta: 56.4 + cyan: 70.5 + white: 80.5 + brightBlack: 0 + brightRed: 47.4 + brightGreen: 89.9 + brightYellow: 84.1 + brightBlue: 62.2 + brightMagenta: 66.5 + brightCyan: 62.8 + brightWhite: 86.7 diff --git a/themes/07-dark.yaml b/themes/07-dark.yaml new file mode 100644 index 00000000..79825e8a --- /dev/null +++ b/themes/07-dark.yaml @@ -0,0 +1,49 @@ +name: "07 Dark" +source: + marketplace_id: "flower607.07Theme" + version: "1.0.0" + installs: 290 + author: "flower607" + repo: "https://github.com/flower-dc/07Theme" + url: "https://marketplace.visualstudio.com/items?itemName=flower607.07Theme" +colors: + bg: "#201B1B" + fg: "#DBD7CA" + black: "#7B678A" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 80.7 + black: 25.2 + red: 40.2 + green: 36.1 + yellow: 75 + blue: 40.8 + magenta: 43.3 + cyan: 48.7 + white: 80.7 + brightBlack: 29 + brightRed: 40.2 + brightGreen: 36.1 + brightYellow: 75 + brightBlue: 40.8 + brightMagenta: 43.3 + brightCyan: 48.7 + brightWhite: 106.3 diff --git a/themes/07-light.yaml b/themes/07-light.yaml new file mode 100644 index 00000000..cdb5e4b8 --- /dev/null +++ b/themes/07-light.yaml @@ -0,0 +1,49 @@ +name: "07 Light" +source: + marketplace_id: "flower607.07Theme" + version: "1.0.0" + installs: 290 + author: "flower607" + repo: "https://github.com/flower-dc/07Theme" + url: "https://marketplace.visualstudio.com/items?itemName=flower607.07Theme" +colors: + bg: "#F9EEE3" + fg: "#7B678A" + black: "#201B1B" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 65.8 + black: 94.8 + red: 64.3 + green: 68.8 + yellow: 39.2 + blue: 69.1 + magenta: 72 + cyan: 54.3 + white: 11.9 + brightBlack: 36.7 + brightRed: 64.3 + brightGreen: 68.8 + brightYellow: 39.2 + brightBlue: 69.1 + brightMagenta: 72 + brightCyan: 54.3 + brightWhite: 8.4 diff --git a/themes/0a515-dark.yaml b/themes/0a515-dark.yaml new file mode 100644 index 00000000..4030570e --- /dev/null +++ b/themes/0a515-dark.yaml @@ -0,0 +1,49 @@ +name: "0A515 Dark" +source: + marketplace_id: "kingllama.oa515" + version: "1.2.0" + installs: 95 + author: "kingllama" + repo: "https://github.com/kingllama/vscode-OA515" + url: "https://marketplace.visualstudio.com/items?itemName=kingllama.oa515" +colors: + bg: "#1E1C04" + fg: "#E0D3AF" + black: "#47432E" + red: "#BE0033" + green: "#547A00" + yellow: "#AC5B00" + blue: "#2E409A" + magenta: "#AF56FF" + cyan: "#007F87" + white: "#B8B8B8" + brightBlack: "#5F5F57" + brightRed: "#C7224E" + brightGreen: "#9BC53D" + brightYellow: "#ED9B40" + brightBlue: "#4C61CA" + brightMagenta: "#D7ABFF" + brightCyan: "#75B9BE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 105 + contrast: + fg: 78.7 + black: 7.8 + red: 20.8 + green: 25.5 + yellow: 26.5 + blue: 10.3 + magenta: 35.8 + cyan: 27.5 + white: 62.5 + brightBlack: 18.4 + brightRed: 24.1 + brightGreen: 62 + brightYellow: 56.7 + brightBlue: 23.5 + brightMagenta: 65.4 + brightCyan: 56.9 + brightWhite: 106.4 diff --git a/themes/0x96f-theme.yaml b/themes/0x96f-theme.yaml new file mode 100644 index 00000000..27e3fdff --- /dev/null +++ b/themes/0x96f-theme.yaml @@ -0,0 +1,49 @@ +name: "0x96f Theme" +source: + marketplace_id: "filipjane.0x96f-vscode-theme" + version: "0.2.0" + installs: 622 + author: "Filip" + repo: "https://github.com/filipjanevski/0x96f-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=filipjane.0x96f-vscode-theme" +colors: + bg: "#262427" + fg: "#FCFCFC" + black: "#262427" + red: "#FF7272" + green: "#BCDF59" + yellow: "#FFCA58" + blue: "#49CAE4" + magenta: "#A093E2" + cyan: "#AEE8F4" + white: "#FCFCFC" + brightBlack: "#545452" + brightRed: "#FF8787" + brightGreen: "#C6E472" + brightYellow: "#FFD271" + brightBlue: "#64D2E8" + brightMagenta: "#AEA3E6" + brightCyan: "#BAEBF6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 103 + black: 0 + red: 48 + green: 76.3 + yellow: 76.4 + blue: 62.8 + magenta: 46.6 + cyan: 84 + white: 103 + brightBlack: 12.8 + brightRed: 54 + brightGreen: 80.2 + brightYellow: 80.1 + brightBlue: 67.8 + brightMagenta: 54.2 + brightCyan: 86.7 + brightWhite: 105 diff --git a/themes/1.yaml b/themes/1.yaml new file mode 100644 index 00000000..207229cf --- /dev/null +++ b/themes/1.yaml @@ -0,0 +1,49 @@ +name: "1️⃣" +source: + marketplace_id: "PhanTriVietHoang.think-in-react" + version: "1.0.0" + installs: 5 + author: "PhanTriVietHoang" + repo: "https://github.com/phantriviethoang/think-in-react" + url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.think-in-react" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#282C34" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 56.2 + brightBlack: 17.4 + brightRed: 38.9 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 51.5 + brightMagenta: 41.9 + brightCyan: 51.4 + brightWhite: 87.4 diff --git a/themes/10x-dark-theme.yaml b/themes/10x-dark-theme.yaml new file mode 100644 index 00000000..ad7560e7 --- /dev/null +++ b/themes/10x-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "10x Dark Theme" +source: + marketplace_id: "gutenfries.10x-dark-theme" + version: "1.1.1" + installs: 422 + author: "Mark Gutenberger" + repo: "https://github.com/gutenfries/10x-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=gutenfries.10x-dark-theme" +colors: + bg: "#313135" + fg: "#C5CDD9" + black: "#363A4E" + red: "#EC7279" + green: "#00CB6A" + yellow: "#E2B35E" + blue: "#6CB6EB" + magenta: "#D38AEA" + cyan: "#4DDBC1" + white: "#C5CDD9" + brightBlack: "#363A4E" + brightRed: "#EC7279" + brightGreen: "#00CB6A" + brightYellow: "#E2B35E" + brightBlue: "#6CB6EB" + brightMagenta: "#D38AEA" + brightCyan: "#4DDBC1" + brightWhite: "#C5CDD9" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 70.4 + black: 0 + red: 41.6 + green: 55.3 + yellow: 60 + blue: 53.5 + magenta: 48.7 + cyan: 66.7 + white: 70.4 + brightBlack: 0 + brightRed: 41.6 + brightGreen: 55.3 + brightYellow: 60 + brightBlue: 53.5 + brightMagenta: 48.7 + brightCyan: 66.7 + brightWhite: 70.4 diff --git a/themes/111-theme.yaml b/themes/111-theme.yaml new file mode 100644 index 00000000..4e612026 --- /dev/null +++ b/themes/111-theme.yaml @@ -0,0 +1,49 @@ +name: "111-theme" +source: + marketplace_id: "Rion.111-theme" + version: "1.0.2" + installs: 29 + author: "Rion" + repo: "https://github.com/ri0n-dev/111-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Rion.111-theme" +colors: + bg: "#111111" + fg: "#BABABA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 64.7 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/1977.yaml b/themes/1977.yaml new file mode 100644 index 00000000..b28b093e --- /dev/null +++ b/themes/1977.yaml @@ -0,0 +1,49 @@ +name: "1977" +source: + marketplace_id: "BrianYuen.1977" + version: "0.0.3" + installs: 610 + author: "Brian Yuen" + repo: "https://github.com/brianyuen/vscode-1977" + url: "https://marketplace.visualstudio.com/items?itemName=BrianYuen.1977" +colors: + bg: "#0C1821" + fg: "#FFFFFF" + black: "#88CCFF" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#9BD4FF" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 242 + contrast: + fg: 106.9 + black: 70.5 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 90 + brightBlack: 75.5 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/1989.yaml b/themes/1989.yaml new file mode 100644 index 00000000..df5c2d0b --- /dev/null +++ b/themes/1989.yaml @@ -0,0 +1,49 @@ +name: "1989" +source: + marketplace_id: "dereje.1989" + version: "1.0.1" + installs: 98 + author: "dereje" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dereje.1989" +colors: + bg: "#303030" + fg: "#FFFFFF" + black: "#303030" + red: "#FF005F" + green: "#00875F" + yellow: "#FFFFAF" + blue: "#0087AF" + magenta: "#DFAFFF" + cyan: "#AFFFFF" + white: "#FFFFFF" + brightBlack: "#303030" + brightRed: "#FF005F" + brightGreen: "#00875F" + brightYellow: "#FFFFAF" + brightBlue: "#0087AF" + brightMagenta: "#DFAFFF" + brightCyan: "#AFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 102.8 + black: 0 + red: 33.3 + green: 25.7 + yellow: 99.7 + blue: 28.8 + magenta: 64.4 + cyan: 93.6 + white: 102.8 + brightBlack: 0 + brightRed: 33.3 + brightGreen: 25.7 + brightYellow: 99.7 + brightBlue: 28.8 + brightMagenta: 64.4 + brightCyan: 93.6 + brightWhite: 102.8 diff --git a/themes/19th-century.yaml b/themes/19th-century.yaml new file mode 100644 index 00000000..3c9af870 --- /dev/null +++ b/themes/19th-century.yaml @@ -0,0 +1,49 @@ +name: "19th Century" +source: + marketplace_id: "SkylarCoelho.nineteenth-century-engineer" + version: "0.2.0" + installs: 9 + author: "Skylar Coelho" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SkylarCoelho.nineteenth-century-engineer" +colors: + bg: "#1B1B1B" + fg: "#B6B8BA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 62.4 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/1dark-poncho-hc.yaml b/themes/1dark-poncho-hc.yaml new file mode 100644 index 00000000..09d0a610 --- /dev/null +++ b/themes/1dark-poncho-hc.yaml @@ -0,0 +1,49 @@ +name: "1Dark Poncho HC" +source: + marketplace_id: "ginfuru.ginfuru-onedark-raincoat-theme" + version: "0.9.9" + installs: 24972 + author: "Ed Heltzel" + repo: "https://github.com/ginfuru/vscode-1dark-raincoat" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.ginfuru-onedark-raincoat-theme" +colors: + bg: "#030D22" + fg: "#FDFEFF" + black: "#303742" + red: "#FF2E97" + green: "#21FF78" + yellow: "#FFD400" + blue: "#00BEFF" + magenta: "#EA00D9" + cyan: "#AF79FE" + white: "#E3EEFE" + brightBlack: "#3A1B75" + brightRed: "#EE1682" + brightGreen: "#20F6BB" + brightYellow: "#FED400" + brightBlue: "#31BEFF" + brightMagenta: "#D328FF" + brightCyan: "#3789FE" + brightWhite: "#F0F5FF" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 106.7 + black: 0 + red: 41.2 + green: 87.2 + yellow: 82.6 + blue: 60.6 + magenta: 38.3 + cyan: 44.9 + white: 95.7 + brightBlack: 0 + brightRed: 35.1 + brightGreen: 84.2 + brightYellow: 82.4 + brightBlue: 61 + brightMagenta: 37.5 + brightCyan: 40.3 + brightWhite: 100.7 diff --git a/themes/1mm-dracula.yaml b/themes/1mm-dracula.yaml new file mode 100644 index 00000000..365047ef --- /dev/null +++ b/themes/1mm-dracula.yaml @@ -0,0 +1,49 @@ +name: "1mm - Dracula" +source: + marketplace_id: "joytrekker.1mm-themes" + version: "0.0.1" + installs: 37030 + author: "joytrekker" + repo: "https://github.com/joytrekker/1mm-themes" + url: "https://marketplace.visualstudio.com/items?itemName=joytrekker.1mm-themes" +colors: + bg: "#282A36" + fg: "#9DA5B4" + black: "#575757" + red: "#FF6E67" + green: "#5AF78E" + yellow: "#F4F99D" + blue: "#CAA9FA" + magenta: "#FF92D0" + cyan: "#9AEDFE" + white: "#F8F8F2" + brightBlack: "#4D4D4D" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#BD93F9" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + contrast: + fg: 49.3 + black: 12.9 + red: 45.7 + green: 81.1 + yellow: 95.9 + blue: 60.1 + magenta: 58.9 + cyan: 84.1 + white: 99 + brightBlack: 9.1 + brightRed: 40.4 + brightGreen: 81.9 + brightYellow: 95.6 + brightBlue: 50.7 + brightMagenta: 51.6 + brightCyan: 81 + brightWhite: 103.9 diff --git a/themes/2-colors.yaml b/themes/2-colors.yaml new file mode 100644 index 00000000..40d78683 --- /dev/null +++ b/themes/2-colors.yaml @@ -0,0 +1,49 @@ +name: "2_colors" +source: + marketplace_id: "AC34.vscode-night-cruise" + version: "0.1.0" + installs: 1011 + author: "AC34" + repo: "https://github.com/AC34/VSCode-Night-Cruise" + url: "https://marketplace.visualstudio.com/items?itemName=AC34.vscode-night-cruise" +colors: + bg: "#0E0E13" + fg: "#9798A5" + black: "#929292" + red: "#C54C27" + green: "#26DA95" + yellow: "#EEA02C" + blue: "#5285F3" + magenta: "#C126DD" + cyan: "#20BEEE" + white: "#CACACA" + brightBlack: "#B1B1B1" + brightRed: "#C54C27" + brightGreen: "#7DE0BA" + brightYellow: "#E6BA78" + brightBlue: "#789BE6" + brightMagenta: "#D469E7" + brightCyan: "#6CCDEB" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 46.7 + black: 43.3 + red: 29.3 + green: 68.9 + yellow: 59.6 + blue: 39.2 + magenta: 31.2 + cyan: 59.7 + white: 74.1 + brightBlack: 59.8 + brightRed: 29.3 + brightGreen: 76.3 + brightYellow: 68.9 + brightBlue: 48.4 + brightMagenta: 45.1 + brightCyan: 68.6 + brightWhite: 96.4 diff --git a/themes/2077.yaml b/themes/2077.yaml new file mode 100644 index 00000000..7c3609d5 --- /dev/null +++ b/themes/2077.yaml @@ -0,0 +1,49 @@ +name: "2077" +source: + marketplace_id: "KvS.kvs-2077" + version: "0.0.4" + installs: 104 + author: "KvS" + repo: "https://github.com/notKvS/2077-theme" + url: "https://marketplace.visualstudio.com/items?itemName=KvS.kvs-2077" +colors: + bg: "#03102C" + fg: "#FDFEFF" + black: "#3A1B75" + red: "#EE1682" + green: "#06AD00" + yellow: "#FFD400" + blue: "#3787D6" + magenta: "#EA00D9" + cyan: "#0AB2FA" + white: "#F2F8FF" + brightBlack: "#5C6D75" + brightRed: "#FF2E97" + brightGreen: "#3DD69C" + brightYellow: "#FFD400" + brightBlue: "#5994CE" + brightMagenta: "#EA00D9" + brightCyan: "#4BC5FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 106.5 + black: 0 + red: 34.8 + green: 45.2 + yellow: 82.3 + blue: 36.3 + magenta: 38.1 + cyan: 54.8 + white: 102.1 + brightBlack: 24.2 + brightRed: 40.9 + brightGreen: 67.3 + brightYellow: 82.3 + brightBlue: 42 + brightMagenta: 38.1 + brightCyan: 64.1 + brightWhite: 107.2 diff --git a/themes/24.yaml b/themes/24.yaml new file mode 100644 index 00000000..305cde6c --- /dev/null +++ b/themes/24.yaml @@ -0,0 +1,49 @@ +name: "24" +source: + marketplace_id: "YesCode.shadesTheme" + version: "0.0.13" + installs: 3082 + author: "YesCode" + repo: "https://github.com/yesomac/ShadesThemeVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.shadesTheme" +colors: + bg: "#F9F7F3" + fg: "#03031F" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#3B3B3F" + brightYellow: "#FFCC80" + brightBlue: "#606066" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.1 + black: 98.7 + red: 54 + green: 35.6 + yellow: 24.1 + blue: 48.6 + magenta: 76.6 + cyan: 46.7 + white: 48.9 + brightBlack: 77.6 + brightRed: 54 + brightGreen: 91.1 + brightYellow: 17.8 + brightBlue: 76.5 + brightMagenta: 76.6 + brightCyan: 46.7 + brightWhite: 0 diff --git a/themes/2am.yaml b/themes/2am.yaml new file mode 100644 index 00000000..92663654 --- /dev/null +++ b/themes/2am.yaml @@ -0,0 +1,49 @@ +name: "2am" +source: + marketplace_id: "33p.2am" + version: "0.3.2" + installs: 1139 + author: "33p" + repo: "https://github.com/33p/2am" + url: "https://marketplace.visualstudio.com/items?itemName=33p.2am" +colors: + bg: "#1E1E1E" + fg: "#E0E0E0" + black: "#4D4D4D" + red: "#CC3300" + green: "#A6E22E" + yellow: "#FF7700" + blue: "#008FCE" + magenta: "#FF0099" + cyan: "#44EECC" + white: "#A0A0A0" + brightBlack: "#6C6C6C" + brightRed: "#FF3300" + brightGreen: "#CCFF44" + brightYellow: "#FFCC00" + brightBlue: "#00BFDF" + brightMagenta: "#FF00FF" + brightCyan: "#44FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 86 + black: 11.2 + red: 25.7 + green: 76.2 + yellow: 49.1 + blue: 36.8 + magenta: 38.3 + cyan: 79.9 + white: 49 + brightBlack: 23.8 + brightRed: 37.6 + brightGreen: 94.6 + brightYellow: 77.8 + brightBlue: 57.6 + brightMagenta: 44.4 + brightCyan: 91 + brightWhite: 106 diff --git a/themes/365-6-coder-theme.yaml b/themes/365-6-coder-theme.yaml new file mode 100644 index 00000000..4c42e55e --- /dev/null +++ b/themes/365-6-coder-theme.yaml @@ -0,0 +1,49 @@ +name: "365.6 coder theme" +source: + marketplace_id: "dheeraj-kumar-rao.365-6--coder--theme" + version: "0.3.0" + installs: 86 + author: "dheeraj-kumar-rao" + repo: "https://github.com/rao123dk/365.6-Coder-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dheeraj-kumar-rao.365-6--coder--theme" +colors: + bg: "#02202C" + fg: "#0B6E6E" + black: "#0E0D1A" + red: "#FA1313" + green: "#00C82B" + yellow: "#FFE553" + blue: "#8C97EA" + magenta: "#FF00F2" + cyan: "#8C97EA" + white: "#FFFFFF" + brightBlack: "#5966CC" + brightRed: "#FA1313" + brightGreen: "#17F648" + brightYellow: "#FFFFFF" + brightBlue: "#8C97EA" + brightMagenta: "#FF00F2" + brightCyan: "#23DEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 228 + contrast: + fg: 20.2 + black: 0 + red: 34.6 + green: 56.6 + yellow: 89 + blue: 47.4 + magenta: 43.4 + cyan: 47.4 + white: 106 + brightBlack: 25.5 + brightRed: 34.6 + brightGreen: 80.1 + brightYellow: 106 + brightBlue: 47.4 + brightMagenta: 43.4 + brightCyan: 73.9 + brightWhite: 106 diff --git a/themes/365-day-october-dark.yaml b/themes/365-day-october-dark.yaml new file mode 100644 index 00000000..be5bbb9e --- /dev/null +++ b/themes/365-day-october-dark.yaml @@ -0,0 +1,49 @@ +name: "365 Day october dark" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#FEFBE9" + fg: "#714620" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#000000" + brightBlack: "#666666" + brightRed: "#FF6B00" + brightGreen: "#23D18B" + brightYellow: "#D4A15D" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#B3753E" + brightWhite: "#000000" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 85 + black: 103.3 + red: 71.2 + green: 45.2 + yellow: 14.3 + blue: 70.5 + magenta: 68.2 + cyan: 50.5 + white: 103.3 + brightBlack: 76 + brightRed: 51 + brightGreen: 35.1 + brightYellow: 42.9 + brightBlue: 57.9 + brightMagenta: 52.7 + brightCyan: 62.5 + brightWhite: 103.3 diff --git a/themes/3xay.yaml b/themes/3xay.yaml new file mode 100644 index 00000000..1c62a200 --- /dev/null +++ b/themes/3xay.yaml @@ -0,0 +1,49 @@ +name: "3XAY" +source: + marketplace_id: "3XAY.3xay-dark" + version: "1.0.0" + installs: 41 + author: "3XAY" + repo: "https://github.com/3XAY/3xay-dark" + url: "https://marketplace.visualstudio.com/items?itemName=3XAY.3xay-dark" +colors: + bg: "#010101" + fg: "#FFFFFF" + black: "#000000" + red: "#FF4141" + green: "#00FF33" + yellow: "#FFD900" + blue: "#0088FF" + magenta: "#FF00F7" + cyan: "#00C3FF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF2525" + brightGreen: "#5EFF00" + brightYellow: "#F8C727" + brightBlue: "#009DFF" + brightMagenta: "#FF00F7" + brightCyan: "#00EEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 41.2 + green: 86.6 + yellow: 85.1 + blue: 39.8 + magenta: 45.6 + cyan: 63.2 + white: 107.9 + brightBlack: 0 + brightRed: 38.5 + brightGreen: 88 + brightYellow: 76.4 + brightBlue: 47.4 + brightMagenta: 45.6 + brightCyan: 83.5 + brightWhite: 107.9 diff --git a/themes/4-colours.yaml b/themes/4-colours.yaml new file mode 100644 index 00000000..b30d2e96 --- /dev/null +++ b/themes/4-colours.yaml @@ -0,0 +1,49 @@ +name: "4-Colours" +source: + marketplace_id: "gpem.4-colours" + version: "1.1.27" + installs: 4651 + author: "gpem" + repo: "https://github.com/Germain-Gadel/4-colours" + url: "https://marketplace.visualstudio.com/items?itemName=gpem.4-colours" +colors: + bg: "#1F2127" + fg: "#F1F1F1" + black: "#313131" + red: "#FF203B" + green: "#41CE3C" + yellow: "#ECDA14" + blue: "#0687FF" + magenta: "#DA1AC6" + cyan: "#06C1FF" + white: "#FFFFFF" + brightBlack: "#313131" + brightRed: "#FF203B" + brightGreen: "#41CE3C" + brightYellow: "#ECDA14" + brightBlue: "#0687FF" + brightMagenta: "#DA1AC6" + brightCyan: "#06C1FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 96.4 + black: 0 + red: 36.2 + green: 60 + yellow: 80.3 + blue: 37.1 + magenta: 32.1 + cyan: 60 + white: 105.6 + brightBlack: 0 + brightRed: 36.2 + brightGreen: 60 + brightYellow: 80.3 + brightBlue: 37.1 + brightMagenta: 32.1 + brightCyan: 60 + brightWhite: 105.6 diff --git a/themes/404-flat.yaml b/themes/404-flat.yaml new file mode 100644 index 00000000..56b61439 --- /dev/null +++ b/themes/404-flat.yaml @@ -0,0 +1,49 @@ +name: "404 Flat" +source: + marketplace_id: "arthur404dev.theme-404" + version: "0.2.0" + installs: 2447 + author: "Arthur 404 dev" + repo: "https://github.com/404-theme/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=arthur404dev.theme-404" +colors: + bg: "#161926" + fg: "#B9C3D5" + black: "#1A1A1A" + red: "#F4005F" + green: "#58EBD7" + yellow: "#FA8419" + blue: "#9D65FF" + magenta: "#FF65F7" + cyan: "#9D65FF" + white: "#C4C5B5" + brightBlack: "#625E4C" + brightRed: "#F4005F" + brightGreen: "#9AEFEA" + brightYellow: "#FA8419" + brightBlue: "#9D65FF" + brightMagenta: "#FF65F7" + brightCyan: "#9D65FF" + brightWhite: "#F6F6EF" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 68.7 + black: 0 + red: 34.4 + green: 80.1 + yellow: 52.1 + blue: 36.7 + magenta: 52.8 + cyan: 36.7 + white: 69.5 + brightBlack: 18.3 + brightRed: 34.4 + brightGreen: 86.7 + brightYellow: 52.1 + brightBlue: 36.7 + brightMagenta: 52.8 + brightCyan: 36.7 + brightWhite: 100.3 diff --git a/themes/42nd.yaml b/themes/42nd.yaml new file mode 100644 index 00000000..bf9d2670 --- /dev/null +++ b/themes/42nd.yaml @@ -0,0 +1,49 @@ +name: "42nd" +source: + marketplace_id: "fawkes42.42nd" + version: "0.0.15" + installs: 118 + author: "fawkes42" + repo: "https://github.com/fawkes42/42nd" + url: "https://marketplace.visualstudio.com/items?itemName=fawkes42.42nd" +colors: + bg: "#0E0D0D" + fg: "#C9D1D9" + black: "#0E0D0D" + red: "#DB6B6B" + green: "#72C572" + yellow: "#CAB577" + blue: "#79C0FF" + magenta: "#D2A8FF" + cyan: "#72C5AA" + white: "#C9D1D9" + brightBlack: "#373737" + brightRed: "#FF5C5C" + brightGreen: "#8CE88C" + brightYellow: "#FCE788" + brightBlue: "#80D0FF" + brightMagenta: "#A57EDE" + brightCyan: "#89F2D6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 77.8 + black: 0 + red: 41.3 + green: 60.8 + yellow: 62.8 + blue: 65 + magenta: 64.8 + cyan: 62.4 + white: 77.8 + brightBlack: 0 + brightRed: 45.5 + brightGreen: 79.8 + brightYellow: 91.9 + brightBlue: 72.4 + brightMagenta: 42.9 + brightCyan: 87.1 + brightWhite: 107.6 diff --git a/themes/4am-session-aqua.yaml b/themes/4am-session-aqua.yaml new file mode 100644 index 00000000..0ed840db --- /dev/null +++ b/themes/4am-session-aqua.yaml @@ -0,0 +1,49 @@ +name: "4am session (aqua)" +source: + marketplace_id: "4Themes.4am-session-theme" + version: "1.0.0" + installs: 270 + author: "4Themes" + repo: "https://github.com/4-themes/4am-session-theme" + url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" +colors: + bg: "#1E353E" + fg: "#D4D4D4" + black: "#3B3B3B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 225 + contrast: + fg: 74.9 + black: 0 + red: 22.1 + green: 48.4 + yellow: 81 + blue: 22.8 + magenta: 25.1 + cyan: 42.9 + white: 85.4 + brightBlack: 17.4 + brightRed: 33.9 + brightGreen: 58.9 + brightYellow: 91 + brightBlue: 35.4 + brightMagenta: 40.7 + brightCyan: 50.8 + brightWhite: 85.4 diff --git a/themes/4am-session-blue.yaml b/themes/4am-session-blue.yaml new file mode 100644 index 00000000..523c8799 --- /dev/null +++ b/themes/4am-session-blue.yaml @@ -0,0 +1,49 @@ +name: "4am session (blue)" +source: + marketplace_id: "4Themes.4am-session-theme" + version: "1.0.0" + installs: 270 + author: "4Themes" + repo: "https://github.com/4-themes/4am-session-theme" + url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" +colors: + bg: "#161A2B" + fg: "#D4D4D4" + black: "#3B3B3B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 273 + contrast: + fg: 79 + black: 0 + red: 26.3 + green: 52.5 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/4am-session-green.yaml b/themes/4am-session-green.yaml new file mode 100644 index 00000000..edc4f0d0 --- /dev/null +++ b/themes/4am-session-green.yaml @@ -0,0 +1,49 @@ +name: "4am session (green)" +source: + marketplace_id: "4Themes.4am-session-theme" + version: "1.0.0" + installs: 270 + author: "4Themes" + repo: "https://github.com/4-themes/4am-session-theme" + url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" +colors: + bg: "#102111" + fg: "#D4D4D4" + black: "#3B3B3B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 146 + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.7 + magenta: 29 + cyan: 46.8 + white: 89.2 + brightBlack: 21.3 + brightRed: 37.8 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/4am-session-orange.yaml b/themes/4am-session-orange.yaml new file mode 100644 index 00000000..e2987b7b --- /dev/null +++ b/themes/4am-session-orange.yaml @@ -0,0 +1,49 @@ +name: "4am session (orange)" +source: + marketplace_id: "4Themes.4am-session-theme" + version: "1.0.0" + installs: 270 + author: "4Themes" + repo: "https://github.com/4-themes/4am-session-theme" + url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" +colors: + bg: "#211910" + fg: "#D4D4D4" + black: "#3B3B3B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 70 + contrast: + fg: 79.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.4 + cyan: 47.2 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.2 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/4am-session-red.yaml b/themes/4am-session-red.yaml new file mode 100644 index 00000000..ef119413 --- /dev/null +++ b/themes/4am-session-red.yaml @@ -0,0 +1,49 @@ +name: "4am session (red)" +source: + marketplace_id: "4Themes.4am-session-theme" + version: "1.0.0" + installs: 270 + author: "4Themes" + repo: "https://github.com/4-themes/4am-session-theme" + url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" +colors: + bg: "#211010" + fg: "#D4D4D4" + black: "#3B3B3B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 20 + contrast: + fg: 79.6 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.5 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/4am-session-yellow.yaml b/themes/4am-session-yellow.yaml new file mode 100644 index 00000000..97f5b04a --- /dev/null +++ b/themes/4am-session-yellow.yaml @@ -0,0 +1,49 @@ +name: "4am session (yellow)" +source: + marketplace_id: "4Themes.4am-session-theme" + version: "1.0.0" + installs: 270 + author: "4Themes" + repo: "https://github.com/4-themes/4am-session-theme" + url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" +colors: + bg: "#212010" + fg: "#D4D4D4" + black: "#3B3B3B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 105 + contrast: + fg: 78.5 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.3 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/6szn.yaml b/themes/6szn.yaml new file mode 100644 index 00000000..da3064b1 --- /dev/null +++ b/themes/6szn.yaml @@ -0,0 +1,49 @@ +name: "6szn" +source: + marketplace_id: "6.6szn-dark" + version: "1.11.0" + installs: 358 + author: "6" + repo: "https://github.com/exeDavid/6szn-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=6.6szn-dark" +colors: + bg: "#1A1B26" + fg: "#AAB3E5" + black: "#000000" + red: "#FF5370" + green: "#C7F59B" + yellow: "#FFDB8E" + blue: "#70B0FF" + magenta: "#BAACFF" + cyan: "#7FDAFF" + white: "#E4F3FA" + brightBlack: "#7C85B3" + brightRed: "#FF5370" + brightGreen: "#C7F59B" + brightYellow: "#FFDB8E" + brightBlue: "#70B0FF" + brightMagenta: "#BAACFF" + brightCyan: "#7FDAFF" + brightWhite: "#E4F3FA" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 61 + black: 0 + red: 43.1 + green: 90.7 + yellow: 85.9 + blue: 56.5 + magenta: 61.8 + cyan: 75.6 + white: 96.8 + brightBlack: 36.7 + brightRed: 43.1 + brightGreen: 90.7 + brightYellow: 85.9 + brightBlue: 56.5 + brightMagenta: 61.8 + brightCyan: 75.6 + brightWhite: 96.8 diff --git a/themes/7lou-theme.yaml b/themes/7lou-theme.yaml new file mode 100644 index 00000000..55b4c03f --- /dev/null +++ b/themes/7lou-theme.yaml @@ -0,0 +1,49 @@ +name: "7lou Theme" +source: + marketplace_id: "bachiramiri.7lou-vscode" + version: "0.1.1" + installs: 2004 + author: "Bachir Amiri" + repo: "https://github.com/BachirAmiri/7lou-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=bachiramiri.7lou-vscode" +colors: + bg: "#212B38" + fg: "#F8F8F2" + black: "#171E27" + red: "#FF5555" + green: "#CAFFB5" + yellow: "#FDE184" + blue: "#9DCAF8" + magenta: "#FF79C6" + cyan: "#6EC1D6" + white: "#F8F8F2" + brightBlack: "#7984A7" + brightRed: "#FF6E6E" + brightGreen: "#94CF95" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 255 + contrast: + fg: 99.1 + black: 0 + red: 40.5 + green: 94.4 + yellow: 85.6 + blue: 68 + magenta: 51.7 + cyan: 58.7 + white: 99.1 + brightBlack: 33.2 + brightRed: 45.9 + brightGreen: 65.2 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.9 + brightWhite: 104 diff --git a/themes/8-bit-dark.yaml b/themes/8-bit-dark.yaml new file mode 100644 index 00000000..64b3bc8c --- /dev/null +++ b/themes/8-bit-dark.yaml @@ -0,0 +1,49 @@ +name: "8-Bit Dark" +source: + marketplace_id: "handsomeone.8bit" + version: "0.2.3" + installs: 29597 + author: "Zhou Qi" + repo: "https://github.com/HandsomeOne/8bit" + url: "https://marketplace.visualstudio.com/items?itemName=handsomeone.8bit" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 16.2 + brightMagenta: 46.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/8-bit-light-high-contrast.yaml b/themes/8-bit-light-high-contrast.yaml new file mode 100644 index 00000000..da81ae22 --- /dev/null +++ b/themes/8-bit-light-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "8-Bit Light High Contrast" +source: + marketplace_id: "pbower.8-bit-high-contrast" + version: "0.0.1" + installs: 248 + author: "pbower" + repo: "https://github.com/pbower/8-Bit-High-Contrast" + url: "https://marketplace.visualstudio.com/items?itemName=pbower.8-bit-high-contrast" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#FFFFFF" + red: "#CC0000" + green: "#009933" + yellow: "#FFFF00" + blue: "#0033CC" + magenta: "#996633" + cyan: "#0033CC" + white: "#000000" + brightBlack: "#FFFFFF" + brightRed: "#CC0000" + brightGreen: "#009933" + brightYellow: "#FFFF00" + brightBlue: "#0033CC" + brightMagenta: "#996633" + brightCyan: "#0033CC" + brightWhite: "#000000" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 106 + black: 0 + red: 76.5 + green: 64.3 + yellow: 0 + blue: 89 + magenta: 73.6 + cyan: 89 + white: 106 + brightBlack: 0 + brightRed: 76.5 + brightGreen: 64.3 + brightYellow: 0 + brightBlue: 89 + brightMagenta: 73.6 + brightCyan: 89 + brightWhite: 106 diff --git a/themes/8-bit-light.yaml b/themes/8-bit-light.yaml new file mode 100644 index 00000000..da78570c --- /dev/null +++ b/themes/8-bit-light.yaml @@ -0,0 +1,49 @@ +name: "8-Bit Light" +source: + marketplace_id: "handsomeone.8bit" + version: "0.2.3" + installs: 29597 + author: "Zhou Qi" + repo: "https://github.com/HandsomeOne/8bit" + url: "https://marketplace.visualstudio.com/items?itemName=handsomeone.8bit" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#FFFFFF" + red: "#FF0000" + green: "#00BB00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00BBFF" + white: "#000000" + brightBlack: "#FFFFFF" + brightRed: "#FF0000" + brightGreen: "#00BB00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00BBFF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 0 + red: 64.1 + green: 49.7 + yellow: 0 + blue: 85.8 + magenta: 55.6 + cyan: 42.5 + white: 106 + brightBlack: 0 + brightRed: 64.1 + brightGreen: 49.7 + brightYellow: 0 + brightBlue: 85.8 + brightMagenta: 55.6 + brightCyan: 42.5 + brightWhite: 106 diff --git a/themes/8-bit-theme.yaml b/themes/8-bit-theme.yaml new file mode 100644 index 00000000..f973c75f --- /dev/null +++ b/themes/8-bit-theme.yaml @@ -0,0 +1,49 @@ +name: "8-bit-theme" +source: + marketplace_id: "cicero-lino.cicero-lino-theme" + version: "1.0.1" + installs: 9 + author: "cicero-lino" + repo: "https://github.com/CiceroLino/cicero-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=cicero-lino.cicero-lino-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#A000A0" + cyan: "#70A0FF" + white: "#FFFFFF" + brightBlack: "#4C4C4C" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#70A0FF" + brightMagenta: "#FF80FF" + brightCyan: "#70A0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 20 + cyan: 51.8 + white: 107.9 + brightBlack: 12.7 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 51.8 + brightMagenta: 60.6 + brightCyan: 51.8 + brightWhite: 107.9 diff --git a/themes/80-neon-vibes-fluor.yaml b/themes/80-neon-vibes-fluor.yaml new file mode 100644 index 00000000..ea225aec --- /dev/null +++ b/themes/80-neon-vibes-fluor.yaml @@ -0,0 +1,49 @@ +name: "'80 Neon Vibes - Fluor" +source: + marketplace_id: "caiqueex.neon-beat" + version: "0.0.5" + installs: 1202 + author: "Caique Lourenço" + repo: "https://github.com/caiqueex/neon-beat-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=caiqueex.neon-beat" +colors: + bg: "#091827" + fg: "#A6F164" + black: "#3B3B3B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 250 + contrast: + fg: 84.8 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 89.9 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/80-neon-vibes.yaml b/themes/80-neon-vibes.yaml new file mode 100644 index 00000000..7f5d1aa8 --- /dev/null +++ b/themes/80-neon-vibes.yaml @@ -0,0 +1,49 @@ +name: "'80 Neon Vibes" +source: + marketplace_id: "caiqueex.neon-beat" + version: "0.0.5" + installs: 1202 + author: "Caique Lourenço" + repo: "https://github.com/caiqueex/neon-beat-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=caiqueex.neon-beat" +colors: + bg: "#091827" + fg: "#ECEDEE" + black: "#3B3B3B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 250 + contrast: + fg: 94.9 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 89.9 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/808s-heartbreak-theme.yaml b/themes/808s-heartbreak-theme.yaml new file mode 100644 index 00000000..7417eca9 --- /dev/null +++ b/themes/808s-heartbreak-theme.yaml @@ -0,0 +1,49 @@ +name: "808s & Heartbreak Theme" +source: + marketplace_id: "chrisnevers.808s-and-heartbreak-theme" + version: "0.7.0" + installs: 463 + author: "Chris Nevers" + repo: "http://github.com/chrisnevers/808s-and-heartbreak-theme" + url: "https://marketplace.visualstudio.com/items?itemName=chrisnevers.808s-and-heartbreak-theme" +colors: + bg: "#ECECEC" + fg: "#867F7F" + black: "#867F7F" + red: "#BA8A8A" + green: "#AF9CA9" + yellow: "#D9BD42" + blue: "#8AB0B8" + magenta: "#8FC7B9" + cyan: "#8AB8A0" + white: "#A5A5A5" + brightBlack: "#867F7F" + brightRed: "#BA8A8A" + brightGreen: "#AF9CA9" + brightYellow: "#D9BD42" + brightBlue: "#8AB0B8" + brightMagenta: "#8FC7B9" + brightCyan: "#8AB8A0" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 55.4 + black: 55.4 + red: 44.8 + green: 39.1 + yellow: 23.6 + blue: 34.8 + magenta: 24.9 + cyan: 32.5 + white: 37.2 + brightBlack: 55.4 + brightRed: 44.8 + brightGreen: 39.1 + brightYellow: 23.6 + brightBlue: 34.8 + brightMagenta: 24.9 + brightCyan: 32.5 + brightWhite: 37.2 diff --git a/themes/8v.yaml b/themes/8v.yaml new file mode 100644 index 00000000..fd71cf6d --- /dev/null +++ b/themes/8v.yaml @@ -0,0 +1,49 @@ +name: "8V" +source: + marketplace_id: "Voithila.8V" + version: "0.0.8" + installs: 150 + author: "Voithila" + repo: "https://github.com/voithila/8v-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Voithila.8V" +colors: + bg: "#000000" + fg: "#DDDDDD" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 86 + black: 0 + red: 25.6 + green: 54 + yellow: 58.7 + blue: 35.6 + magenta: 33.2 + cyan: 51.5 + white: 89.5 + brightBlack: 23 + brightRed: 38.3 + brightGreen: 78 + brightYellow: 84.9 + brightBlue: 50.9 + brightMagenta: 47.5 + brightCyan: 74.4 + brightWhite: 103 diff --git a/themes/8x8-dark-fork.yaml b/themes/8x8-dark-fork.yaml new file mode 100644 index 00000000..945fad5b --- /dev/null +++ b/themes/8x8-dark-fork.yaml @@ -0,0 +1,49 @@ +name: "8x8_dark - Fork" +source: + marketplace_id: "xynny.dullgrey-theme" + version: "0.0.1" + installs: 1816 + author: "xynny" + repo: "https://github.com/xynnylol/vsthemes" + url: "https://marketplace.visualstudio.com/items?itemName=xynny.dullgrey-theme" +colors: + bg: "#29343D" + fg: "#FCFCFC" + black: "#141A1F" + red: "#F94144" + green: "#90BE6D" + yellow: "#F9C74F" + blue: "#577590" + magenta: "#F3722C" + cyan: "#43AA8B" + white: "#FCFCFC" + brightBlack: "#1F272E" + brightRed: "#FB7274" + brightGreen: "#ADCE93" + brightYellow: "#FAD47A" + brightBlue: "#7C98B0" + brightMagenta: "#F69460" + brightCyan: "#6BC4A9" + brightWhite: "#FCFCFC" +meta: + mode: "dark" + accent: "orange" + hue: 243 + contrast: + fg: 100.1 + black: 0 + red: 34 + green: 54.3 + yellow: 71.1 + blue: 22.5 + magenta: 41.5 + cyan: 41.7 + white: 100.1 + brightBlack: 0 + brightRed: 44.3 + brightGreen: 65.2 + brightYellow: 77.4 + brightBlue: 39.2 + brightMagenta: 52.3 + brightCyan: 56 + brightWhite: 100.1 diff --git a/themes/8x8-darker.yaml b/themes/8x8-darker.yaml new file mode 100644 index 00000000..97ee5c69 --- /dev/null +++ b/themes/8x8-darker.yaml @@ -0,0 +1,49 @@ +name: "8x8 - Darker" +source: + marketplace_id: "keepflying.csr-blue" + version: "0.0.22" + installs: 180 + author: "keepflying" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=keepflying.csr-blue" +colors: + bg: "#E6E6E6" + fg: "#000000" + black: "#29343D" + red: "#F8961E" + green: "#8EFF38" + yellow: "#F3722C" + blue: "#577590" + magenta: "#F9C74F" + cyan: "#43AA8B" + white: "#555555" + brightBlack: "#394956" + brightRed: "#F8961E" + brightGreen: "#90BE6D" + brightYellow: "#F3722C" + brightBlue: "#577590" + brightMagenta: "#F9C74F" + brightCyan: "#43AA8B" + brightWhite: "#ABABAB" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 91.3 + black: 84 + red: 29 + green: 0 + yellow: 39.8 + blue: 58.7 + magenta: 11.4 + cyan: 39.6 + white: 71.2 + brightBlack: 76.7 + brightRed: 29 + brightGreen: 27.4 + brightYellow: 39.8 + brightBlue: 58.7 + brightMagenta: 11.4 + brightCyan: 39.6 + brightWhite: 30.5 diff --git a/themes/9-way-ticket.yaml b/themes/9-way-ticket.yaml new file mode 100644 index 00000000..5db4335a --- /dev/null +++ b/themes/9-way-ticket.yaml @@ -0,0 +1,49 @@ +name: "9 Way Ticket" +source: + marketplace_id: "flover.fromis-day" + version: "0.0.5" + installs: 198 + author: "flover" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=flover.fromis-day" +colors: + bg: "#E2DAD2" + fg: "#3C3836" + black: "#8F6B53" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: 68 + contrast: + fg: 75.7 + black: 52.1 + red: 54.5 + green: 36.8 + yellow: 27.5 + blue: 48.1 + magenta: 48 + cyan: 37.8 + white: 52.8 + brightBlack: 43.3 + brightRed: 66 + brightGreen: 52.6 + brightYellow: 44 + brightBlue: 61.2 + brightMagenta: 61.7 + brightCyan: 53.4 + brightWhite: 75.7 diff --git a/themes/90s-digital-dawning.yaml b/themes/90s-digital-dawning.yaml new file mode 100644 index 00000000..4f4caa89 --- /dev/null +++ b/themes/90s-digital-dawning.yaml @@ -0,0 +1,49 @@ +name: "90s Digital Dawning" +source: + marketplace_id: "BasilecomInc.digital-dawning-95" + version: "0.0.1" + installs: 259 + author: "Basilecom Inc." + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=BasilecomInc.digital-dawning-95" +colors: + bg: "#1F1F1F" + fg: "#BFBFBF" + black: "#1A1A1A" + red: "#FF4242" + green: "#2E8B57" + yellow: "#FFFF00" + blue: "#62B1FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#F0F0F0" + brightBlack: "#404040" + brightRed: "#FF6666" + brightGreen: "#3CB371" + brightYellow: "#FFFF80" + brightBlue: "#80C0FF" + brightMagenta: "#FF80FF" + brightCyan: "#80FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 66.1 + black: 0 + red: 39.4 + green: 30.7 + yellow: 100.7 + blue: 55.6 + magenta: 44.2 + cyan: 90.2 + white: 96.1 + brightBlack: 0 + brightRed: 45.9 + brightGreen: 48.4 + brightYellow: 101.7 + brightBlue: 63.7 + brightMagenta: 58.6 + brightCyan: 93.3 + brightWhite: 105.9 diff --git a/themes/a-2-theme.yaml b/themes/a-2-theme.yaml new file mode 100644 index 00000000..81db38f5 --- /dev/null +++ b/themes/a-2-theme.yaml @@ -0,0 +1,49 @@ +name: "A.2 Theme" +source: + marketplace_id: "AmitGupta60600.a2-theme" + version: "0.0.3" + installs: 83 + author: "Amit.Gupta" + repo: "https://github.com/Amit7976/A.2-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=AmitGupta60600.a2-theme" +colors: + bg: "#0F0F0F" + fg: "#BABABA" + black: "#7B7B7B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2777CF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E0E0E0" + brightBlack: "#9D9D9D" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 64.8 + black: 32 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 30.2 + magenta: 30.4 + cyan: 48.2 + white: 87.5 + brightBlack: 48.9 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 107.5 diff --git a/themes/a-cup-of-coffee.yaml b/themes/a-cup-of-coffee.yaml new file mode 100644 index 00000000..fb6537ce --- /dev/null +++ b/themes/a-cup-of-coffee.yaml @@ -0,0 +1,49 @@ +name: "A cup of coffee" +source: + marketplace_id: "HenriLima05.a-cup-of-coffee" + version: "0.0.2" + installs: 4677 + author: "Henri Lima" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.a-cup-of-coffee" +colors: + bg: "#1E1E1E" + fg: "#BEBEBE" + black: "#929292" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 65.6 + black: 41.8 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/a-github-dark-dimmed-1-red.yaml b/themes/a-github-dark-dimmed-1-red.yaml new file mode 100644 index 00000000..8a40ef5d --- /dev/null +++ b/themes/a-github-dark-dimmed-1-red.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark Dimmed 1 🔴 Red" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#312226" + fg: "#CCB0B7" + black: "#6C555B" + red: "#EF7756" + green: "#42AD6E" + yellow: "#BA962E" + blue: "#6E96F2" + magenta: "#BC80E2" + cyan: "#49C2D8" + white: "#AF939A" + brightBlack: "#7E656C" + brightRed: "#FB987E" + brightGreen: "#56C682" + brightYellow: "#CDB048" + brightBlue: "#81B1FE" + brightMagenta: "#E4BBF2" + brightCyan: "#62D1E6" + brightWhite: "#EACFD6" +meta: + mode: "dark" + accent: "orange" + hue: 1 + contrast: + fg: 60.3 + black: 15.4 + red: 45 + green: 44.8 + yellow: 44.9 + blue: 43.9 + magenta: 44 + cyan: 58.3 + white: 44.6 + brightBlack: 22.3 + brightRed: 57.8 + brightGreen: 57.3 + brightYellow: 57.6 + brightBlue: 56.4 + brightMagenta: 70.9 + brightCyan: 66.9 + brightWhite: 78.4 diff --git a/themes/a-github-dark-dimmed-2-orange.yaml b/themes/a-github-dark-dimmed-2-orange.yaml new file mode 100644 index 00000000..ce92ea39 --- /dev/null +++ b/themes/a-github-dark-dimmed-2-orange.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark Dimmed 2 🟠 Orange" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#2D2519" + fg: "#C4B6A1" + black: "#655A48" + red: "#EF7756" + green: "#42AD6E" + yellow: "#BA962E" + blue: "#6E96F2" + magenta: "#BC80E2" + cyan: "#49C2D8" + white: "#A79983" + brightBlack: "#776B56" + brightRed: "#FB987E" + brightGreen: "#56C682" + brightYellow: "#CDB048" + brightBlue: "#81B1FE" + brightMagenta: "#E4BBF2" + brightCyan: "#62D1E6" + brightWhite: "#E2D6C1" +meta: + mode: "dark" + accent: "orange" + hue: 78 + contrast: + fg: 60.7 + black: 15.5 + red: 45 + green: 44.8 + yellow: 44.9 + blue: 43.9 + magenta: 44 + cyan: 58.3 + white: 45 + brightBlack: 22.7 + brightRed: 57.8 + brightGreen: 57.3 + brightYellow: 57.6 + brightBlue: 56.4 + brightMagenta: 70.8 + brightCyan: 66.9 + brightWhite: 79.3 diff --git a/themes/a-github-dark-dimmed-3-green.yaml b/themes/a-github-dark-dimmed-3-green.yaml new file mode 100644 index 00000000..007cd228 --- /dev/null +++ b/themes/a-github-dark-dimmed-3-green.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark Dimmed 3 🟢 Green" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#1E2A20" + fg: "#AABFAD" + black: "#506153" + red: "#EF7756" + green: "#42AD6E" + yellow: "#BA962E" + blue: "#6E96F2" + magenta: "#BC80E2" + cyan: "#49C2D8" + white: "#8DA290" + brightBlack: "#5F7362" + brightRed: "#FB987E" + brightGreen: "#56C682" + brightYellow: "#CDB048" + brightBlue: "#81B1FE" + brightMagenta: "#E4BBF2" + brightCyan: "#62D1E6" + brightWhite: "#CADECD" +meta: + mode: "dark" + accent: "orange" + hue: 149 + contrast: + fg: 61.6 + black: 15.9 + red: 44.9 + green: 44.6 + yellow: 44.7 + blue: 43.7 + magenta: 43.8 + cyan: 58.1 + white: 45.8 + brightBlack: 23.2 + brightRed: 57.6 + brightGreen: 57.1 + brightYellow: 57.5 + brightBlue: 56.2 + brightMagenta: 70.7 + brightCyan: 66.7 + brightWhite: 80.1 diff --git a/themes/a-github-dark-dimmed-4-blue.yaml b/themes/a-github-dark-dimmed-4-blue.yaml new file mode 100644 index 00000000..f1b2703a --- /dev/null +++ b/themes/a-github-dark-dimmed-4-blue.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark Dimmed 4 🔵 Blue" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#1B2832" + fg: "#A6BCCC" + black: "#4D5F6C" + red: "#EF7756" + green: "#42AD6E" + yellow: "#BA962E" + blue: "#6E96F2" + magenta: "#BC80E2" + cyan: "#49C2D8" + white: "#889FB0" + brightBlack: "#5B707F" + brightRed: "#FB987E" + brightGreen: "#56C682" + brightYellow: "#CDB048" + brightBlue: "#81B1FE" + brightMagenta: "#E4BBF2" + brightCyan: "#62D1E6" + brightWhite: "#C6DBEA" +meta: + mode: "dark" + accent: "orange" + hue: 242 + contrast: + fg: 61.3 + black: 16 + red: 45 + green: 44.7 + yellow: 44.8 + blue: 43.8 + magenta: 43.9 + cyan: 58.2 + white: 45.5 + brightBlack: 23 + brightRed: 57.7 + brightGreen: 57.2 + brightYellow: 57.6 + brightBlue: 56.3 + brightMagenta: 70.8 + brightCyan: 66.8 + brightWhite: 79.7 diff --git a/themes/a-github-dark-dimmed-5-purple.yaml b/themes/a-github-dark-dimmed-5-purple.yaml new file mode 100644 index 00000000..4171c1aa --- /dev/null +++ b/themes/a-github-dark-dimmed-5-purple.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark Dimmed 5 🟣 Purple" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#282431" + fg: "#BBB4CB" + black: "#5F586B" + red: "#EF7756" + green: "#42AD6E" + yellow: "#BA962E" + blue: "#6E96F2" + magenta: "#BC80E2" + cyan: "#49C2D8" + white: "#9E97AF" + brightBlack: "#70697E" + brightRed: "#FB987E" + brightGreen: "#56C682" + brightYellow: "#CDB048" + brightBlue: "#81B1FE" + brightMagenta: "#E4BBF2" + brightCyan: "#62D1E6" + brightWhite: "#DAD3E9" +meta: + mode: "dark" + accent: "orange" + hue: 299 + contrast: + fg: 60.5 + black: 15.4 + red: 45.1 + green: 44.8 + yellow: 44.9 + blue: 43.9 + magenta: 44.1 + cyan: 58.4 + white: 44.8 + brightBlack: 22.6 + brightRed: 57.8 + brightGreen: 57.3 + brightYellow: 57.7 + brightBlue: 56.4 + brightMagenta: 70.9 + brightCyan: 66.9 + brightWhite: 78.7 diff --git a/themes/a-github-dark-dimmed-brown.yaml b/themes/a-github-dark-dimmed-brown.yaml new file mode 100644 index 00000000..58e925dd --- /dev/null +++ b/themes/a-github-dark-dimmed-brown.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark Dimmed 🟤 Brown" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#1A1112" + fg: "#796E6F" + black: "#3D3334" + red: "#C37051" + green: "#44936B" + yellow: "#988540" + blue: "#6C81C5" + magenta: "#A373B6" + cyan: "#59A5B9" + white: "#675B5C" + brightBlack: "#483E3F" + brightRed: "#CF8A71" + brightGreen: "#55A97E" + brightYellow: "#A99B55" + brightBlue: "#7D98D1" + brightMagenta: "#C5A4CA" + brightCyan: "#6AB2C5" + brightWhite: "#8E8183" +meta: + mode: "dark" + accent: "orange" + hue: 11 + contrast: + fg: 26.9 + black: 0 + red: 37.2 + green: 36.3 + yellow: 37 + blue: 35.9 + magenta: 36.6 + cyan: 47.5 + white: 18.9 + brightBlack: 7.9 + brightRed: 47.6 + brightGreen: 46.7 + brightYellow: 47.3 + brightBlue: 46.1 + brightMagenta: 58.2 + brightCyan: 54.4 + brightWhite: 36 diff --git a/themes/a-github-dark-dimmed-muted.yaml b/themes/a-github-dark-dimmed-muted.yaml new file mode 100644 index 00000000..712a58db --- /dev/null +++ b/themes/a-github-dark-dimmed-muted.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark Dimmed 🩶 Muted" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#2D343D" + fg: "#BECAD5" + black: "#626B76" + red: "#D6867E" + green: "#6DA56E" + yellow: "#BC944E" + blue: "#6F9CD7" + magenta: "#A98FD2" + cyan: "#5FC1C9" + white: "#A2ACB7" + brightBlack: "#737C87" + brightRed: "#EF9D95" + brightGreen: "#84BD84" + brightYellow: "#D0AD65" + brightBlue: "#7EB6EE" + brightMagenta: "#D9C0F2" + brightCyan: "#74D0D7" + brightWhite: "#DEE9F5" +meta: + mode: "dark" + accent: "purple" + hue: 255 + contrast: + fg: 67.6 + black: 18.8 + red: 42.6 + green: 40.7 + yellow: 42 + blue: 41.6 + magenta: 42.3 + cyan: 55.2 + white: 50.7 + brightBlack: 26.5 + brightRed: 55 + brightGreen: 53.2 + brightYellow: 54.5 + brightBlue: 54.4 + brightMagenta: 68.4 + brightCyan: 63.8 + brightWhite: 86.7 diff --git a/themes/a-github-dark-dimmed-vampire.yaml b/themes/a-github-dark-dimmed-vampire.yaml new file mode 100644 index 00000000..25863d7a --- /dev/null +++ b/themes/a-github-dark-dimmed-vampire.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark Dimmed 🧛 Vampire" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#1A1433" + fg: "#877EBD" + black: "#42396C" + red: "#DF854D" + green: "#3AAB89" + yellow: "#A69E4C" + blue: "#32A7D6" + magenta: "#8996EC" + cyan: "#69C3AF" + white: "#7267A9" + brightBlack: "#4F4480" + brightRed: "#ECA277" + brightGreen: "#4EC49F" + brightYellow: "#B7B864" + brightBlue: "#5EBEE2" + brightMagenta: "#C4C7FB" + brightCyan: "#7DD2BD" + brightWhite: "#9E97D1" +meta: + mode: "dark" + accent: "yellow" + hue: 289 + contrast: + fg: 36.3 + black: 7.4 + red: 47.5 + green: 46.2 + yellow: 47.4 + blue: 47.8 + magenta: 47.5 + cyan: 60.2 + white: 26.1 + brightBlack: 11.8 + brightRed: 60 + brightGreen: 58.8 + brightYellow: 60.2 + brightBlue: 59.8 + brightMagenta: 73.7 + brightCyan: 68.8 + brightWhite: 48.4 diff --git a/themes/a-github-dark-high-contrast-1-red.yaml b/themes/a-github-dark-high-contrast-1-red.yaml new file mode 100644 index 00000000..94d80e3d --- /dev/null +++ b/themes/a-github-dark-high-contrast-1-red.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark High Contrast 1 🔴 Red" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#1F0F14" + fg: "#FFF9FF" + black: "#A3838C" + red: "#FF9492" + green: "#26CD4D" + yellow: "#F0B72F" + blue: "#71B7FF" + magenta: "#CB9EFF" + cyan: "#39C5CF" + white: "#FCE3EA" + brightBlack: "#C9A9B1" + brightRed: "#FFB1AF" + brightGreen: "#4AE168" + brightYellow: "#F7C843" + brightBlue: "#91CBFF" + brightMagenta: "#DBB7FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 360 + contrast: + fg: 104.3 + black: 39.5 + red: 60.2 + green: 60.7 + yellow: 68 + blue: 60.2 + magenta: 59.9 + cyan: 61.1 + white: 92.9 + brightBlack: 59.4 + brightRed: 70.9 + brightGreen: 71.7 + brightYellow: 76.1 + brightBlue: 71 + brightMagenta: 71.1 + brightCyan: 69.7 + brightWhite: 107.1 diff --git a/themes/a-github-dark-high-contrast-2-orange.yaml b/themes/a-github-dark-high-contrast-2-orange.yaml new file mode 100644 index 00000000..349e0ca7 --- /dev/null +++ b/themes/a-github-dark-high-contrast-2-orange.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark High Contrast 2 🟠 Orange" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#1C1305" + fg: "#FFFFEE" + black: "#9B8B72" + red: "#FF9492" + green: "#26CD4D" + yellow: "#F0B72F" + blue: "#71B7FF" + magenta: "#CB9EFF" + cyan: "#39C5CF" + white: "#F5E9D6" + brightBlack: "#C0B096" + brightRed: "#FFB1AF" + brightGreen: "#4AE168" + brightYellow: "#F7C843" + brightBlue: "#91CBFF" + brightMagenta: "#DBB7FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFE" +meta: + mode: "dark" + accent: "green" + hue: 78 + contrast: + fg: 106.3 + black: 40.3 + red: 60.2 + green: 60.6 + yellow: 67.9 + blue: 60.1 + magenta: 59.8 + cyan: 61.1 + white: 93.6 + brightBlack: 59.8 + brightRed: 70.8 + brightGreen: 71.7 + brightYellow: 76 + brightBlue: 70.9 + brightMagenta: 71.1 + brightCyan: 69.6 + brightWhite: 107 diff --git a/themes/a-github-dark-high-contrast-3-green.yaml b/themes/a-github-dark-high-contrast-3-green.yaml new file mode 100644 index 00000000..1563e3e0 --- /dev/null +++ b/themes/a-github-dark-high-contrast-3-green.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark High Contrast 3 🟢 Green" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#0B180E" + fg: "#F5FFF7" + black: "#7C9581" + red: "#FF9492" + green: "#26CD4D" + yellow: "#F0B72F" + blue: "#71B7FF" + magenta: "#CB9EFF" + cyan: "#39C5CF" + white: "#DEF0E1" + brightBlack: "#A1BAA5" + brightRed: "#FFB1AF" + brightGreen: "#4AE168" + brightYellow: "#F7C843" + brightBlue: "#91CBFF" + brightMagenta: "#DBB7FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 151 + contrast: + fg: 105.3 + black: 41.1 + red: 60.1 + green: 60.6 + yellow: 67.9 + blue: 60.1 + magenta: 59.8 + cyan: 61 + white: 94.1 + brightBlack: 60.7 + brightRed: 70.8 + brightGreen: 71.6 + brightYellow: 76 + brightBlue: 70.9 + brightMagenta: 71 + brightCyan: 69.6 + brightWhite: 107 diff --git a/themes/a-github-dark-high-contrast-4-blue.yaml b/themes/a-github-dark-high-contrast-4-blue.yaml new file mode 100644 index 00000000..2a344406 --- /dev/null +++ b/themes/a-github-dark-high-contrast-4-blue.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark High Contrast 4 🔵 Blue" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#071620" + fg: "#F2FFFF" + black: "#7891A4" + red: "#FF9492" + green: "#26CD4D" + yellow: "#F0B72F" + blue: "#71B7FF" + magenta: "#CB9EFF" + cyan: "#39C5CF" + white: "#DAEEFC" + brightBlack: "#9CB7CA" + brightRed: "#FFB1AF" + brightGreen: "#4AE168" + brightYellow: "#F7C843" + brightBlue: "#91CBFF" + brightMagenta: "#DBB7FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 239 + contrast: + fg: 105.3 + black: 40.6 + red: 60.2 + green: 60.6 + yellow: 67.9 + blue: 60.1 + magenta: 59.8 + cyan: 61 + white: 94 + brightBlack: 60.5 + brightRed: 70.8 + brightGreen: 71.6 + brightYellow: 76 + brightBlue: 70.9 + brightMagenta: 71.1 + brightCyan: 69.6 + brightWhite: 107 diff --git a/themes/a-github-dark-high-contrast-5-purple.yaml b/themes/a-github-dark-high-contrast-5-purple.yaml new file mode 100644 index 00000000..cf021283 --- /dev/null +++ b/themes/a-github-dark-high-contrast-5-purple.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark High Contrast 5 🟣 Purple" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#171220" + fg: "#FFFDFF" + black: "#9188A3" + red: "#FF9492" + green: "#26CD4D" + yellow: "#F0B72F" + blue: "#71B7FF" + magenta: "#CB9EFF" + cyan: "#39C5CF" + white: "#EDE7FC" + brightBlack: "#B6ADC9" + brightRed: "#FFB1AF" + brightGreen: "#4AE168" + brightYellow: "#F7C843" + brightBlue: "#91CBFF" + brightMagenta: "#DBB7FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 300 + contrast: + fg: 106.1 + black: 39.9 + red: 60.2 + green: 60.6 + yellow: 68 + blue: 60.1 + magenta: 59.9 + cyan: 61.1 + white: 93.3 + brightBlack: 59.4 + brightRed: 70.9 + brightGreen: 71.7 + brightYellow: 76.1 + brightBlue: 71 + brightMagenta: 71.1 + brightCyan: 69.6 + brightWhite: 107.1 diff --git a/themes/a-github-dark-muted.yaml b/themes/a-github-dark-muted.yaml new file mode 100644 index 00000000..08eba621 --- /dev/null +++ b/themes/a-github-dark-muted.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark 🩶 Muted" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#161C25" + fg: "#D6E2ED" + black: "#555D67" + red: "#E19088" + green: "#74AE77" + yellow: "#C59D58" + blue: "#76A7E0" + magenta: "#B499DD" + cyan: "#5FC1C9" + white: "#C0CAD6" + brightBlack: "#7C8590" + brightRed: "#F3A8A0" + brightGreen: "#8BC68E" + brightYellow: "#D8B66D" + brightBlue: "#88BFF1" + brightMagenta: "#CEADF1" + brightCyan: "#74D0D7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + contrast: + fg: 86.6 + black: 17.4 + red: 52.3 + green: 49.6 + yellow: 51.1 + blue: 51.3 + magenta: 52.1 + cyan: 59.6 + white: 72.3 + brightBlack: 35.1 + brightRed: 64.3 + brightGreen: 62.5 + brightYellow: 63.8 + brightBlue: 63.5 + brightMagenta: 63.9 + brightCyan: 68.2 + brightWhite: 106.3 diff --git a/themes/a-github-dark-vampire.yaml b/themes/a-github-dark-vampire.yaml new file mode 100644 index 00000000..33db90f9 --- /dev/null +++ b/themes/a-github-dark-vampire.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Dark 🧛 Vampire" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#181625" + fg: "#FFFFFF" + black: "#656379" + red: "#EA8F59" + green: "#00B990" + yellow: "#AFA84F" + blue: "#3BB1DF" + magenta: "#93A0FB" + cyan: "#69C3AF" + white: "#EBE8FF" + brightBlack: "#9693AE" + brightRed: "#EEAE89" + brightGreen: "#0ED3A7" + brightYellow: "#BFC16A" + brightBlue: "#71C7E3" + brightMagenta: "#B2B7FF" + brightCyan: "#7DD2BD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 290 + contrast: + fg: 106.8 + black: 21.6 + red: 53 + green: 52.2 + yellow: 52.6 + blue: 52.9 + magenta: 53.3 + cyan: 60.3 + white: 93.3 + brightBlack: 44.4 + brightRed: 65.3 + brightGreen: 65.1 + brightYellow: 65.2 + brightBlue: 65 + brightMagenta: 65.5 + brightCyan: 69 + brightWhite: 106.8 diff --git a/themes/a-github-light-1-red.yaml b/themes/a-github-light-1-red.yaml new file mode 100644 index 00000000..f2582e7f --- /dev/null +++ b/themes/a-github-light-1-red.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Light 1 🔴 Red" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#F5F5F5" + fg: "#342026" + black: "#342026" + red: "#E1000D" + green: "#006906" + yellow: "#5B2200" + blue: "#0061F5" + magenta: "#873BF8" + cyan: "#00838F" + white: "#896670" + brightBlack: "#724F5A" + brightRed: "#B5000E" + brightGreen: "#008517" + brightYellow: "#723200" + brightBlue: "#0086FF" + brightMagenta: "#A966FF" + brightCyan: "#0097BD" + brightWhite: "#A6838D" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 96.1 + black: 96.1 + red: 65.6 + green: 77.4 + yellow: 91.9 + blue: 68.8 + magenta: 68.9 + cyan: 64.9 + white: 68.6 + brightBlack: 78.4 + brightRed: 75.8 + brightGreen: 66.6 + brightYellow: 85.8 + brightBlue: 56.6 + brightMagenta: 55.9 + brightCyan: 55 + brightWhite: 55 diff --git a/themes/a-github-light-2-orange.yaml b/themes/a-github-light-2-orange.yaml new file mode 100644 index 00000000..7065ec36 --- /dev/null +++ b/themes/a-github-light-2-orange.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Light 2 🟠 Orange" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#F5F5F5" + fg: "#2F2513" + black: "#2F2513" + red: "#E1000D" + green: "#006906" + yellow: "#5B2200" + blue: "#0061F5" + magenta: "#873BF8" + cyan: "#00838F" + white: "#806E52" + brightBlack: "#69583B" + brightRed: "#B5000E" + brightGreen: "#008517" + brightYellow: "#723200" + brightBlue: "#0086FF" + brightMagenta: "#A966FF" + brightCyan: "#0097BD" + brightWhite: "#9D8B6F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 95.9 + black: 95.9 + red: 65.6 + green: 77.4 + yellow: 91.9 + blue: 68.8 + magenta: 68.9 + cyan: 64.9 + white: 68.1 + brightBlack: 77.7 + brightRed: 75.8 + brightGreen: 66.6 + brightYellow: 85.8 + brightBlue: 56.6 + brightMagenta: 55.9 + brightCyan: 55 + brightWhite: 54.4 diff --git a/themes/a-github-light-3-green.yaml b/themes/a-github-light-3-green.yaml new file mode 100644 index 00000000..5ed84de5 --- /dev/null +++ b/themes/a-github-light-3-green.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Light 3 🟢 Green" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#F5F5F5" + fg: "#1B2B1E" + black: "#1B2B1E" + red: "#E1000D" + green: "#006906" + yellow: "#5B2200" + blue: "#0061F5" + magenta: "#873BF8" + cyan: "#00838F" + white: "#5E7963" + brightBlack: "#47634C" + brightRed: "#B5000E" + brightGreen: "#008517" + brightYellow: "#723200" + brightBlue: "#0086FF" + brightMagenta: "#A966FF" + brightCyan: "#0097BD" + brightWhite: "#7B9680" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 95.7 + black: 95.7 + red: 65.6 + green: 77.4 + yellow: 91.9 + blue: 68.8 + magenta: 68.9 + cyan: 64.9 + white: 67.2 + brightBlack: 76.9 + brightRed: 75.8 + brightGreen: 66.6 + brightYellow: 85.8 + brightBlue: 56.6 + brightMagenta: 55.9 + brightCyan: 55 + brightWhite: 53.5 diff --git a/themes/a-github-light-4-blue.yaml b/themes/a-github-light-4-blue.yaml new file mode 100644 index 00000000..c0f9c2c4 --- /dev/null +++ b/themes/a-github-light-4-blue.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Light 4 🔵 Blue" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#F5F5F5" + fg: "#172935" + black: "#172935" + red: "#E1000D" + green: "#006906" + yellow: "#5B2200" + blue: "#0061F5" + magenta: "#873BF8" + cyan: "#00838F" + white: "#58758A" + brightBlack: "#415F74" + brightRed: "#B5000E" + brightGreen: "#008517" + brightYellow: "#723200" + brightBlue: "#0086FF" + brightMagenta: "#A966FF" + brightCyan: "#0097BD" + brightWhite: "#7592A7" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 95.8 + black: 95.8 + red: 65.6 + green: 77.4 + yellow: 91.9 + blue: 68.8 + magenta: 68.9 + cyan: 64.9 + white: 67.7 + brightBlack: 77.2 + brightRed: 75.8 + brightGreen: 66.6 + brightYellow: 85.8 + brightBlue: 56.6 + brightMagenta: 55.9 + brightCyan: 55 + brightWhite: 54 diff --git a/themes/a-github-light-5-purple.yaml b/themes/a-github-light-5-purple.yaml new file mode 100644 index 00000000..afafd075 --- /dev/null +++ b/themes/a-github-light-5-purple.yaml @@ -0,0 +1,49 @@ +name: "A GitHub Light 5 🟣 Purple" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 889 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" +colors: + bg: "#F5F5F5" + fg: "#292334" + black: "#292334" + red: "#E1000D" + green: "#006906" + yellow: "#5B2200" + blue: "#0061F5" + magenta: "#873BF8" + cyan: "#00838F" + white: "#756B89" + brightBlack: "#5F5573" + brightRed: "#B5000E" + brightGreen: "#008517" + brightYellow: "#723200" + brightBlue: "#0086FF" + brightMagenta: "#A966FF" + brightCyan: "#0097BD" + brightWhite: "#9288A6" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 96.1 + black: 96.1 + red: 65.6 + green: 77.4 + yellow: 91.9 + blue: 68.8 + magenta: 68.9 + cyan: 64.9 + white: 68.5 + brightBlack: 78 + brightRed: 75.8 + brightGreen: 66.6 + brightYellow: 85.8 + brightBlue: 56.6 + brightMagenta: 55.9 + brightCyan: 55 + brightWhite: 54.8 diff --git a/themes/a-green-cat-dimmed.yaml b/themes/a-green-cat-dimmed.yaml new file mode 100644 index 00000000..a07b29da --- /dev/null +++ b/themes/a-green-cat-dimmed.yaml @@ -0,0 +1,49 @@ +name: "a_green_cat dimmed" +source: + marketplace_id: "agreencat.a-green-cat-theme" + version: "1.0.3" + installs: 368 + author: "a_green_cat" + repo: "https://github.com/KiraGreifeneder/a-green-cat-theme" + url: "https://marketplace.visualstudio.com/items?itemName=agreencat.a-green-cat-theme" +colors: + bg: "#282932" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 76.7 + black: 0 + red: 24 + green: 50.3 + yellow: 82.9 + blue: 24.7 + magenta: 27 + cyan: 44.8 + white: 87.3 + brightBlack: 19.3 + brightRed: 35.8 + brightGreen: 60.8 + brightYellow: 92.9 + brightBlue: 37.3 + brightMagenta: 42.6 + brightCyan: 52.7 + brightWhite: 87.3 diff --git a/themes/a-green-cat-v2.yaml b/themes/a-green-cat-v2.yaml new file mode 100644 index 00000000..fa2ea34a --- /dev/null +++ b/themes/a-green-cat-v2.yaml @@ -0,0 +1,49 @@ +name: "a_green_cat v2" +source: + marketplace_id: "agreencat.a-green-cat-theme" + version: "1.0.3" + installs: 368 + author: "a_green_cat" + repo: "https://github.com/KiraGreifeneder/a-green-cat-theme" + url: "https://marketplace.visualstudio.com/items?itemName=agreencat.a-green-cat-theme" +colors: + bg: "#101010" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/aauu.yaml b/themes/aauu.yaml new file mode 100644 index 00000000..c331e7ee --- /dev/null +++ b/themes/aauu.yaml @@ -0,0 +1,49 @@ +name: "AAUU" +source: + marketplace_id: "blackblackcat.vscode-flow" + version: "0.1.4" + installs: 1464 + author: "black_black_cat" + repo: "https://github.com/black-black-cat/vscode-firefox-flow" + url: "https://marketplace.visualstudio.com/items?itemName=blackblackcat.vscode-flow" +colors: + bg: "#2F2F2F" + fg: "#D7DCE2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.1 + black: 0 + red: 22.8 + green: 49.1 + yellow: 81.7 + blue: 23.5 + magenta: 25.9 + cyan: 43.7 + white: 86.1 + brightBlack: 18.2 + brightRed: 34.7 + brightGreen: 59.6 + brightYellow: 91.7 + brightBlue: 36.1 + brightMagenta: 41.5 + brightCyan: 51.5 + brightWhite: 86.1 diff --git a/themes/ab-dark.yaml b/themes/ab-dark.yaml new file mode 100644 index 00000000..f28c1602 --- /dev/null +++ b/themes/ab-dark.yaml @@ -0,0 +1,49 @@ +name: "Ab-dark" +source: + marketplace_id: "ABABIL.ab-dark" + version: "1.1.0" + installs: 50 + author: "ABABIL" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ABABIL.ab-dark" +colors: + bg: "#0A0A0A" + fg: "#F5F12E" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 94.5 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/abcdef.yaml b/themes/abcdef.yaml new file mode 100644 index 00000000..a734d2b4 --- /dev/null +++ b/themes/abcdef.yaml @@ -0,0 +1,49 @@ +name: "abcdef" +source: + marketplace_id: "jxne00.abcdef" + version: "0.2.3" + installs: 145 + author: "jxne00" + repo: "https://github.com/jxne00/abcdef-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jxne00.abcdef" +colors: + bg: "#262936" + fg: "#9DA5B3" + black: "#282A36" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#4DA1FA" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#EFF0EB" + brightBlack: "#282A36" + brightRed: "#FF5C57" + brightGreen: "#70F99D" + brightYellow: "#F3F99D" + brightBlue: "#57BCFF" + brightMagenta: "#FF6AC1" + brightCyan: "#87E9FC" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 49.5 + black: 0 + red: 41.9 + green: 81.3 + yellow: 96 + blue: 46.2 + magenta: 48.2 + cyan: 84.3 + white: 93.9 + brightBlack: 0 + brightRed: 41.9 + brightGreen: 83.7 + brightYellow: 96 + brightBlue: 57.9 + brightMagenta: 48.2 + brightCyan: 80.9 + brightWhite: 93.9 diff --git a/themes/abe-land.yaml b/themes/abe-land.yaml new file mode 100644 index 00000000..76aac253 --- /dev/null +++ b/themes/abe-land.yaml @@ -0,0 +1,49 @@ +name: "Abe Land" +source: + marketplace_id: "abesoftware.abeland" + version: "0.0.1" + installs: 49 + author: "abesoftware" + repo: "https://github.com/ablardo/abeland" + url: "https://marketplace.visualstudio.com/items?itemName=abesoftware.abeland" +colors: + bg: "#2E2E30" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 103.2 + black: 0 + red: 23 + green: 49.3 + yellow: 81.9 + blue: 23.7 + magenta: 26.1 + cyan: 43.9 + white: 86.3 + brightBlack: 18.3 + brightRed: 34.9 + brightGreen: 59.8 + brightYellow: 91.9 + brightBlue: 36.3 + brightMagenta: 41.7 + brightCyan: 51.7 + brightWhite: 86.3 diff --git a/themes/abissal.yaml b/themes/abissal.yaml new file mode 100644 index 00000000..73d77ade --- /dev/null +++ b/themes/abissal.yaml @@ -0,0 +1,49 @@ +name: "Abissal" +source: + marketplace_id: "Henriquehnnm.abissal" + version: "1.2.1" + installs: 76 + author: "Henrique" + repo: "https://github.com/Henriquehnnm/abissal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.abissal" +colors: + bg: "#282A36" + fg: "#F2F8F8" + black: "#000000" + red: "#F2B8AC" + green: "#75A782" + yellow: "#C2C26D" + blue: "#75B0EE" + magenta: "#BD93F9" + cyan: "#A4C3E4" + white: "#F7F7F7" + brightBlack: "#666666" + brightRed: "#F0CCC4" + brightGreen: "#99B6A0" + brightYellow: "#CBCB9B" + brightBlue: "#91BFEE" + brightMagenta: "#D2B8F9" + brightCyan: "#B5D6F9" + brightWhite: "#CFD3D3" +meta: + mode: "dark" + accent: "magenta" + hue: 278 + contrast: + fg: 98.5 + black: 0 + red: 67.9 + green: 44.6 + yellow: 63.2 + blue: 53.3 + magenta: 50.7 + cyan: 64.5 + white: 98.6 + brightBlack: 19.1 + brightRed: 76.4 + brightGreen: 54.9 + brightYellow: 69.4 + brightBlue: 61.6 + brightMagenta: 66.7 + brightCyan: 75.6 + brightWhite: 75.4 diff --git a/themes/aboc.yaml b/themes/aboc.yaml new file mode 100644 index 00000000..bb6765f6 --- /dev/null +++ b/themes/aboc.yaml @@ -0,0 +1,49 @@ +name: "ABOC" +source: + marketplace_id: "aboc.aboc" + version: "0.0.4" + installs: 94 + author: "aboc" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aboc.aboc" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#585858" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#FFA800" + magenta: "#BC3FBC" + cyan: "#A76E00" + white: "#7B6800" + brightBlack: "#999999" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#DE9200" + brightMagenta: "#D670D6" + brightCyan: "#6B4701" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.5 + black: 17.3 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 65.8 + magenta: 30.8 + cyan: 32.2 + white: 24.5 + brightBlack: 47.2 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 52.3 + brightMagenta: 46.4 + brightCyan: 13.7 + brightWhite: 107.9 diff --git a/themes/abolkog-dark.yaml b/themes/abolkog-dark.yaml new file mode 100644 index 00000000..4479ef57 --- /dev/null +++ b/themes/abolkog-dark.yaml @@ -0,0 +1,49 @@ +name: "ABOLKOG Dark" +source: + marketplace_id: "abolkog.vscode-abolkog-light" + version: "1.1.0" + installs: 2729 + author: "Khalid Elshafie" + repo: "https://github.com/abolkog/vscode-abolkog-theme" + url: "https://marketplace.visualstudio.com/items?itemName=abolkog.vscode-abolkog-light" +colors: + bg: "#282C34" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 82.2 + black: 0 + red: 29.8 + green: 58.5 + yellow: 73.2 + blue: 45.4 + magenta: 43.3 + cyan: 59.5 + white: 89.1 + brightBlack: 12.2 + brightRed: 29.8 + brightGreen: 58.5 + brightYellow: 73.2 + brightBlue: 45.4 + brightMagenta: 43.3 + brightCyan: 57.4 + brightWhite: 93 diff --git a/themes/abolkog-light.yaml b/themes/abolkog-light.yaml new file mode 100644 index 00000000..9ae48227 --- /dev/null +++ b/themes/abolkog-light.yaml @@ -0,0 +1,49 @@ +name: "ABOLKOG Light" +source: + marketplace_id: "abolkog.vscode-abolkog-light" + version: "1.1.0" + installs: 2729 + author: "Khalid Elshafie" + repo: "https://github.com/abolkog/vscode-abolkog-theme" + url: "https://marketplace.visualstudio.com/items?itemName=abolkog.vscode-abolkog-light" +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.5 + black: 93.4 + red: 67.7 + green: 39.7 + yellow: 25.7 + blue: 52.2 + magenta: 54.3 + cyan: 38.7 + white: 10.7 + brightBlack: 85.6 + brightRed: 67.7 + brightGreen: 39.7 + brightYellow: 25.7 + brightBlue: 52.2 + brightMagenta: 54.3 + brightCyan: 40.7 + brightWhite: 0 diff --git a/themes/abraham.yaml b/themes/abraham.yaml new file mode 100644 index 00000000..2ccd23d0 --- /dev/null +++ b/themes/abraham.yaml @@ -0,0 +1,49 @@ +name: "Abraham" +source: + marketplace_id: "Abraham.customalabaster" + version: "0.75.0" + installs: 174 + author: "Abraham" + repo: "https://github.com/abeprincec/customalabaster" + url: "https://marketplace.visualstudio.com/items?itemName=Abraham.customalabaster" +colors: + bg: "#1E293B" + fg: "#94A3B8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F1F5F9" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#F1F5F9" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 48.1 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.2 + cyan: 45 + white: 97.3 + brightBlack: 19.4 + brightRed: 36 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 97.3 diff --git a/themes/absent-contrast.yaml b/themes/absent-contrast.yaml new file mode 100644 index 00000000..be385743 --- /dev/null +++ b/themes/absent-contrast.yaml @@ -0,0 +1,49 @@ +name: "absent-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0E1114" + fg: "#AEB9C4" + black: "#181E23" + red: "#BA0E2E" + green: "#228A96" + yellow: "#6BA77F" + blue: "#E6EAEF" + magenta: "#228A96" + cyan: "#6BA77F" + white: "#BDC6CF" + brightBlack: "#384450" + brightRed: "#F03E5F" + brightGreen: "#48C7D6" + brightYellow: "#ABCDB6" + brightBlue: "#FFFFFF" + brightMagenta: "#48C7D6" + brightCyan: "#ABCDB6" + brightWhite: "#E9ECEF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 63.3 + black: 0 + red: 21 + green: 33.5 + yellow: 47.3 + blue: 93.4 + magenta: 33.5 + cyan: 47.3 + white: 70.9 + brightBlack: 8.9 + brightRed: 37.3 + brightGreen: 63.1 + brightYellow: 71 + brightBlue: 107.4 + brightMagenta: 63.1 + brightCyan: 71 + brightWhite: 94.7 diff --git a/themes/absent-light.yaml b/themes/absent-light.yaml new file mode 100644 index 00000000..398b54dd --- /dev/null +++ b/themes/absent-light.yaml @@ -0,0 +1,49 @@ +name: "absent-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#465360" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#228A96" + yellow: "#6BA77F" + blue: "#465360" + magenta: "#228A96" + cyan: "#6BA77F" + white: "#51606F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#48C7D6" + brightYellow: "#ABCDB6" + brightBlue: "#738699" + brightMagenta: "#48C7D6" + brightCyan: "#ABCDB6" + brightWhite: "#738699" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 80.3 + green: 67.6 + yellow: 54 + blue: 87.3 + magenta: 67.6 + cyan: 54 + white: 82.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 38.8 + brightYellow: 31.3 + brightBlue: 65.1 + brightMagenta: 38.8 + brightCyan: 31.3 + brightWhite: 65.1 diff --git a/themes/absent.yaml b/themes/absent.yaml new file mode 100644 index 00000000..91213d9e --- /dev/null +++ b/themes/absent.yaml @@ -0,0 +1,49 @@ +name: "absent" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#252C33" + fg: "#AEB9C4" + black: "#303942" + red: "#BA0E2E" + green: "#228A96" + yellow: "#6BA77F" + blue: "#E6EAEF" + magenta: "#228A96" + cyan: "#6BA77F" + white: "#BDC6CF" + brightBlack: "#505F6E" + brightRed: "#F03E5F" + brightGreen: "#48C7D6" + brightYellow: "#ABCDB6" + brightBlue: "#FFFFFF" + brightMagenta: "#48C7D6" + brightCyan: "#ABCDB6" + brightWhite: "#E9ECEF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 59.7 + black: 0 + red: 17.4 + green: 29.9 + yellow: 43.7 + blue: 89.8 + magenta: 29.9 + cyan: 43.7 + white: 67.3 + brightBlack: 15.4 + brightRed: 33.7 + brightGreen: 59.5 + brightYellow: 67.4 + brightBlue: 103.8 + brightMagenta: 59.5 + brightCyan: 67.4 + brightWhite: 91.1 diff --git a/themes/abstract-mh.yaml b/themes/abstract-mh.yaml new file mode 100644 index 00000000..7f1081dd --- /dev/null +++ b/themes/abstract-mh.yaml @@ -0,0 +1,49 @@ +name: "Abstract MH" +source: + marketplace_id: "MiguelHP.Abstract-MH" + version: "1.0.0" + installs: 620 + author: "Miguel HP" + repo: "https://github.com/MHP24/vsc-abstract-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MiguelHP.Abstract-MH" +colors: + bg: "#1C1C1C" + fg: "#D4DCE0" + black: "#272727" + red: "#F55F6B" + green: "#9ED776" + yellow: "#FECB6D" + blue: "#4684FF" + magenta: "#D470F3" + cyan: "#51CBDC" + white: "#DDE0E6" + brightBlack: "#757981" + brightRed: "#FD4B4B" + brightGreen: "#A2DF76" + brightYellow: "#EBBD67" + brightBlue: "#528CFF" + brightMagenta: "#84019E" + brightCyan: "#59C3D1" + brightWhite: "#DCE0E7" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 83 + black: 0 + red: 42.8 + green: 71.3 + yellow: 78.2 + blue: 38 + magenta: 46.4 + cyan: 64.4 + white: 86.2 + brightBlack: 29.8 + brightRed: 40.6 + brightGreen: 75.5 + brightYellow: 69.3 + brightBlue: 41.3 + brightMagenta: 13.6 + brightCyan: 60.6 + brightWhite: 86.1 diff --git a/themes/abyskai.yaml b/themes/abyskai.yaml new file mode 100644 index 00000000..160c1715 --- /dev/null +++ b/themes/abyskai.yaml @@ -0,0 +1,49 @@ +name: "Abyskai" +source: + marketplace_id: "jamiesmiths.abyski" + version: "0.0.15" + installs: 2358 + author: "jamiesmiths" + repo: "https://github.com/jsmithdev/abyski" + url: "https://marketplace.visualstudio.com/items?itemName=jamiesmiths.abyski" +colors: + bg: "#0C0C18" + fg: "#DDDDDD" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#3AFFC4" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 283 + contrast: + fg: 85.7 + black: 0 + red: 64.1 + green: 91.6 + yellow: 96.5 + blue: 82 + magenta: 75.5 + cyan: 96.6 + white: 75.4 + brightBlack: 0 + brightRed: 52.4 + brightGreen: 89.7 + brightYellow: 91.2 + brightBlue: 62.9 + brightMagenta: 51 + brightCyan: 94.6 + brightWhite: 107.6 diff --git a/themes/abyss.yaml b/themes/abyss.yaml new file mode 100644 index 00000000..99b3da07 --- /dev/null +++ b/themes/abyss.yaml @@ -0,0 +1,49 @@ +name: "Abyss" +source: + marketplace_id: "filip-bydalek.abyss-tweaked" + version: "0.2.2" + installs: 261 + author: "Filip Bydałek" + repo: "https://github.com/AGameDevPhilip/abyss-tweaked" + url: "https://marketplace.visualstudio.com/items?itemName=filip-bydalek.abyss-tweaked" +colors: + bg: "#000C18" + fg: "#6688CC" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 242 + contrast: + fg: 38.7 + black: 0 + red: 64.2 + green: 91.6 + yellow: 96.5 + blue: 82.1 + magenta: 75.5 + cyan: 96.7 + white: 75.4 + brightBlack: 0 + brightRed: 52.5 + brightGreen: 87.6 + brightYellow: 91.3 + brightBlue: 63 + brightMagenta: 51 + brightCyan: 94.6 + brightWhite: 107.6 diff --git a/themes/acario.yaml b/themes/acario.yaml new file mode 100644 index 00000000..4bbb426c --- /dev/null +++ b/themes/acario.yaml @@ -0,0 +1,49 @@ +name: "Acario" +source: + marketplace_id: "gagbo.acario" + version: "0.0.1" + installs: 506 + author: "gagbo" + repo: "https://github.com/gagbo/acario-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=gagbo.acario" +colors: + bg: "#12141F" + fg: "#CEDBE5" + black: "#12141F" + red: "#D83441" + green: "#79D836" + yellow: "#D8B941" + blue: "#3679D8" + magenta: "#8041D8" + cyan: "#36D8BD" + white: "#959EA5" + brightBlack: "#2D304C" + brightRed: "#FF7266" + brightGreen: "#B2FF66" + brightYellow: "#FFDF66" + brightBlue: "#66A5FF" + brightMagenta: "#9866FF" + brightCyan: "#66FFD8" + brightWhite: "#E5F4FF" +meta: + mode: "dark" + accent: "magenta" + hue: 276 + contrast: + fg: 82.8 + black: 0 + red: 29.9 + green: 68.9 + yellow: 65.1 + blue: 31.5 + magenta: 23.1 + cyan: 69.1 + white: 48.3 + brightBlack: 0 + brightRed: 49.8 + brightGreen: 93.3 + brightYellow: 87.6 + brightBlue: 52.3 + brightMagenta: 36.8 + brightCyan: 91.4 + brightWhite: 98.4 diff --git a/themes/acekaizen-calmly-dark.yaml b/themes/acekaizen-calmly-dark.yaml new file mode 100644 index 00000000..29018c38 --- /dev/null +++ b/themes/acekaizen-calmly-dark.yaml @@ -0,0 +1,49 @@ +name: "AceKaizen Calmly Dark" +source: + marketplace_id: "AryanKashyap.theme-acekaizen-code" + version: "1.1.1" + installs: 455 + author: "Aryan Kashyap" + repo: "https://github.com/aryankashyap7/AceKaizen-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=AryanKashyap.theme-acekaizen-code" +colors: + bg: "#141414" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#B8B8B8" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFF9F9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.1 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 63.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 104 diff --git a/themes/acequartz.yaml b/themes/acequartz.yaml new file mode 100644 index 00000000..edf5df83 --- /dev/null +++ b/themes/acequartz.yaml @@ -0,0 +1,49 @@ +name: "AceQuartz" +source: + marketplace_id: "AceSardonyx.darkrose-quartz-theme" + version: "1.0.8" + installs: 1170 + author: "Kai" + repo: "https://github.com/Teakuutarts/VSC-Quartz-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=AceSardonyx.darkrose-quartz-theme" +colors: + bg: "#110010" + fg: "#00C3FF" + black: "#502832" + red: "#A45A74" + green: "#B39987" + yellow: "#A47F7C" + blue: "#AD5F74" + magenta: "#D78594" + cyan: "#B39487" + white: "#FF55BD" + brightBlack: "#703A47" + brightRed: "#A45A74" + brightGreen: "#B39987" + brightYellow: "#A47F7C" + brightBlue: "#AD5F74" + brightMagenta: "#D78594" + brightCyan: "#B39487" + brightWhite: "#D2738A" +meta: + mode: "dark" + accent: "red" + hue: 330 + contrast: + fg: 63 + black: 0 + red: 27.9 + green: 49.6 + yellow: 38.4 + blue: 30.6 + magenta: 49 + cyan: 47.8 + white: 47.7 + brightBlack: 12.3 + brightRed: 27.9 + brightGreen: 49.6 + brightYellow: 38.4 + brightBlue: 30.6 + brightMagenta: 49 + brightCyan: 47.8 + brightWhite: 42.7 diff --git a/themes/aclear-dark.yaml b/themes/aclear-dark.yaml new file mode 100644 index 00000000..76b284d0 --- /dev/null +++ b/themes/aclear-dark.yaml @@ -0,0 +1,49 @@ +name: "aclear-dark" +source: + marketplace_id: "andrewaclear.aclear" + version: "0.1.3" + installs: 1003 + author: "Andrew D'Amario" + repo: "https://github.com/andrewaclear/aclear-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewaclear.aclear" +colors: + bg: "#CFD3DB" + fg: "#575E6B" + black: "#C4C9D3" + red: "#D13452" + green: "#159682" + yellow: "#C9A145" + blue: "#002E6D" + magenta: "#643090" + cyan: "#B850A9" + white: "#424242" + brightBlack: "#BCC1CD" + brightRed: "#D13452" + brightGreen: "#70C3A9" + brightYellow: "#D1B766" + brightBlue: "#428BD1" + brightMagenta: "#9270D1" + brightCyan: "#7EB2D1" + brightWhite: "#353535" +meta: + mode: "light" + accent: "orange" + hue: 265 + contrast: + fg: 56.6 + black: 0 + red: 46.5 + green: 38.1 + yellow: 21.8 + blue: 72.9 + magenta: 64 + cyan: 44.3 + white: 67.6 + brightBlack: 7.7 + brightRed: 46.5 + brightGreen: 14.9 + brightYellow: 12.1 + brightBlue: 37.5 + brightMagenta: 40 + brightCyan: 19.3 + brightWhite: 72.2 diff --git a/themes/acme.yaml b/themes/acme.yaml new file mode 100644 index 00000000..d8b8d528 --- /dev/null +++ b/themes/acme.yaml @@ -0,0 +1,49 @@ +name: "Acme" +source: + marketplace_id: "aaqaIshtyaq.themes-go-acme" + version: "0.0.5" + installs: 2247 + author: "Aaqa Ishtyaq" + repo: "https://github.com/aaqaishtyaq/themes-go-acme" + url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.themes-go-acme" +colors: + bg: "#FFFFEA" + fg: "#000000" + black: "#000000" + red: "#000000" + green: "#000000" + yellow: "#000000" + blue: "#000000" + magenta: "#000000" + cyan: "#000000" + white: "#000000" + brightBlack: "#EEEE9E" + brightRed: "#000000" + brightGreen: "#000000" + brightYellow: "#000000" + brightBlue: "#000000" + brightMagenta: "#000000" + brightCyan: "#000000" + brightWhite: "#000000" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 105.2 + black: 105.2 + red: 105.2 + green: 105.2 + yellow: 105.2 + blue: 105.2 + magenta: 105.2 + cyan: 105.2 + white: 105.2 + brightBlack: 9.4 + brightRed: 105.2 + brightGreen: 105.2 + brightYellow: 105.2 + brightBlue: 105.2 + brightMagenta: 105.2 + brightCyan: 105.2 + brightWhite: 105.2 diff --git a/themes/aconitum-clean.yaml b/themes/aconitum-clean.yaml new file mode 100644 index 00000000..439ed5ba --- /dev/null +++ b/themes/aconitum-clean.yaml @@ -0,0 +1,49 @@ +name: "Aconitum - Clean" +source: + marketplace_id: "ArturGuedx.Aconitum" + version: "0.0.2" + installs: 173 + author: "ArturGuedx" + repo: "https://github.com/ArturGuedes/Aconitum" + url: "https://marketplace.visualstudio.com/items?itemName=ArturGuedx.Aconitum" +colors: + bg: "#212121" + fg: "#707E8A" + black: "#000000" + red: "#FF8B92" + green: "#9EE1BF" + yellow: "#FFC475" + blue: "#5B3CBE" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#ABBECF" + brightBlack: "#666666" + brightRed: "#FF525C" + brightGreen: "#66FFB1" + brightYellow: "#FFAD3F" + brightBlue: "#6D7DFE" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 30.7 + black: 0 + red: 56 + green: 77.5 + yellow: 75 + blue: 14.6 + magenta: 28.5 + cyan: 46.3 + white: 63.8 + brightBlack: 20.8 + brightRed: 41.8 + brightGreen: 88.5 + brightYellow: 65.5 + brightBlue: 37.2 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/acs-cozy-dark.yaml b/themes/acs-cozy-dark.yaml new file mode 100644 index 00000000..b43e2ab4 --- /dev/null +++ b/themes/acs-cozy-dark.yaml @@ -0,0 +1,49 @@ +name: "ACS - Cozy Dark" +source: + marketplace_id: "ACSPL.acsplext" + version: "0.30.0" + installs: 509 + author: "ACSPL" + repo: "https://github.com/BarPupko/ACSPL-vscode-Extenstion" + url: "https://marketplace.visualstudio.com/items?itemName=ACSPL.acsplext" +colors: + bg: "#1E1A1A" + fg: "#E8E0DC" + black: "#2D2422" + red: "#C77F72" + green: "#8BA87F" + yellow: "#C9A572" + blue: "#8A9DB8" + magenta: "#B58A9F" + cyan: "#7FA5A0" + white: "#D4CBC7" + brightBlack: "#5A4D4A" + brightRed: "#D89386" + brightGreen: "#A0BA95" + brightYellow: "#DBB889" + brightBlue: "#9FB0CA" + brightMagenta: "#C9A0B3" + brightCyan: "#95BAB5" + brightWhite: "#E8E0DC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 42.1 + green: 49.3 + yellow: 55.2 + blue: 47 + magenta: 44.3 + cyan: 48.1 + white: 74.6 + brightBlack: 12.7 + brightRed: 51.8 + brightGreen: 59.5 + brightYellow: 65.7 + brightBlue: 57.4 + brightMagenta: 55.5 + brightCyan: 59.6 + brightWhite: 87.3 diff --git a/themes/adapt-dark.yaml b/themes/adapt-dark.yaml new file mode 100644 index 00000000..dbdbf57b --- /dev/null +++ b/themes/adapt-dark.yaml @@ -0,0 +1,49 @@ +name: "Adapt Dark" +source: + marketplace_id: "Tone.adapt-vscode-colors" + version: "0.9.2" + installs: 19 + author: "Tone" + repo: "https://github.com/ToneAr/adapt-vscode-colors" + url: "https://marketplace.visualstudio.com/items?itemName=Tone.adapt-vscode-colors" +colors: + bg: "#0F0F0F" + fg: "#E8E8EC" + black: "#0F1419" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#DCDFE4" + brightBlack: "#5C6570" + brightRed: "#FF7B72" + brightGreen: "#B6E3A1" + brightYellow: "#FFD580" + brightBlue: "#93D6FF" + brightMagenta: "#E3A3F5" + brightCyan: "#8FD8E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 92.7 + black: 0 + red: 42.7 + green: 62.9 + yellow: 71.2 + blue: 55.3 + magenta: 45.8 + cyan: 55.2 + white: 86.7 + brightBlack: 21.8 + brightRed: 52.7 + brightGreen: 81.6 + brightYellow: 84.1 + brightBlue: 76.4 + brightMagenta: 65 + brightCyan: 75.8 + brightWhite: 107.5 diff --git a/themes/adark.yaml b/themes/adark.yaml new file mode 100644 index 00000000..463dd356 --- /dev/null +++ b/themes/adark.yaml @@ -0,0 +1,49 @@ +name: "ADark" +source: + marketplace_id: "AmoghAgarwal.adark" + version: "1.0.0" + installs: 483 + author: "AmoghAgarwal" + repo: "https://github.com/agarwalamogh/Adark_vscode_theme/tree/master/ADark" + url: "https://marketplace.visualstudio.com/items?itemName=AmoghAgarwal.adark" +colors: + bg: "#191E2B" + fg: "#99A1B4" + black: "#20273A" + red: "#F3505B" + green: "#B7DB62" + yellow: "#EEBE5D" + blue: "#55DCF7" + magenta: "#B093E9" + cyan: "#55DCF7" + white: "#99A1B4" + brightBlack: "#3A4157" + brightRed: "#F3505B" + brightGreen: "#B7DB62" + brightYellow: "#EEBE5D" + brightBlue: "#55DCF7" + brightMagenta: "#B093E9" + brightCyan: "#55DCF7" + brightWhite: "#99A1B4" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 49.4 + black: 0 + red: 39 + green: 75 + yellow: 69.8 + blue: 73.7 + magenta: 50 + cyan: 73.7 + white: 49.4 + brightBlack: 0 + brightRed: 39 + brightGreen: 75 + brightYellow: 69.8 + brightBlue: 73.7 + brightMagenta: 50 + brightCyan: 73.7 + brightWhite: 49.4 diff --git a/themes/adech-theme-legacy.yaml b/themes/adech-theme-legacy.yaml new file mode 100644 index 00000000..5e25227b --- /dev/null +++ b/themes/adech-theme-legacy.yaml @@ -0,0 +1,49 @@ +name: "Adech Theme Legacy" +source: + marketplace_id: "Adechlien.adech-theme" + version: "0.1.2" + installs: 33 + author: "Adechlien" + repo: "https://github.com/adechlien/adech-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=Adechlien.adech-theme" +colors: + bg: "#162137" + fg: "#B2D0FF" + black: "#000000" + red: "#FF99C8" + green: "#80ED99" + yellow: "#FFE482" + blue: "#74ADE8" + magenta: "#FF99C8" + cyan: "#00E8C6" + white: "#EEEEFF" + brightBlack: "#666666" + brightRed: "#FF99C8" + brightGreen: "#80ED99" + brightYellow: "#FFE482" + brightBlue: "#74ADE8" + brightMagenta: "#FF99C8" + brightCyan: "#00E8C6" + brightWhite: "#EEEEFF" +meta: + mode: "dark" + accent: "green" + hue: 263 + contrast: + fg: 74.6 + black: 0 + red: 62.2 + green: 79.8 + yellow: 88.8 + blue: 53.2 + magenta: 62.2 + cyan: 75.4 + white: 95.2 + brightBlack: 20.7 + brightRed: 62.2 + brightGreen: 79.8 + brightYellow: 88.8 + brightBlue: 53.2 + brightMagenta: 62.2 + brightCyan: 75.4 + brightWhite: 95.2 diff --git a/themes/adech-theme-superior.yaml b/themes/adech-theme-superior.yaml new file mode 100644 index 00000000..65a5550f --- /dev/null +++ b/themes/adech-theme-superior.yaml @@ -0,0 +1,49 @@ +name: "Adech Theme Superior" +source: + marketplace_id: "Adechlien.adech-theme" + version: "0.1.2" + installs: 33 + author: "Adechlien" + repo: "https://github.com/adechlien/adech-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=Adechlien.adech-theme" +colors: + bg: "#142039" + fg: "#9AC0FF" + black: "#000000" + red: "#D19090" + green: "#A6D2B9" + yellow: "#D1CE90" + blue: "#7088C8" + magenta: "#D19090" + cyan: "#8CAEED" + white: "#DFE5F9" + brightBlack: "#666666" + brightRed: "#D19090" + brightGreen: "#CCE8CC" + brightYellow: "#E8E6B9" + brightBlue: "#7E9BDA" + brightMagenta: "#ECB5B5" + brightCyan: "#9AC0FF" + brightWhite: "#ECF0FD" +meta: + mode: "dark" + accent: "purple" + hue: 264 + contrast: + fg: 65.6 + black: 0 + red: 49.1 + green: 71 + yellow: 72.8 + blue: 37.2 + magenta: 49.1 + cyan: 55.9 + white: 88.9 + brightBlack: 20.8 + brightRed: 49.1 + brightGreen: 85.9 + brightYellow: 87.9 + brightBlue: 46.2 + brightMagenta: 67.8 + brightCyan: 65.6 + brightWhite: 95.9 diff --git a/themes/adeol.yaml b/themes/adeol.yaml new file mode 100644 index 00000000..cfa323b3 --- /dev/null +++ b/themes/adeol.yaml @@ -0,0 +1,49 @@ +name: "Adeol" +source: + marketplace_id: "darcula-as-start.darcula-as-start" + version: "0.0.1" + installs: 28 + author: "Darcula As Start" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=darcula-as-start.darcula-as-start" +colors: + bg: "#191919" + fg: "#CBCBCB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.9 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/adey-coder-deep-dark.yaml b/themes/adey-coder-deep-dark.yaml new file mode 100644 index 00000000..0d4b6a67 --- /dev/null +++ b/themes/adey-coder-deep-dark.yaml @@ -0,0 +1,49 @@ +name: "Adey Coder - Deep dark" +source: + marketplace_id: "AdeyCoder.adey-coder-dark" + version: "1.0.3" + installs: 1786 + author: "Adey Coder" + repo: "https://github.com/yohanstesfaye/adey-coder-dark" + url: "https://marketplace.visualstudio.com/items?itemName=AdeyCoder.adey-coder-dark" +colors: + bg: "#0E150E" + fg: "#FFFFFF" + black: "#363636" + red: "#FF7776" + green: "#9BFF9B" + yellow: "#F0FF77" + blue: "#5060FF" + magenta: "#FF81F7" + cyan: "#89FFFF" + white: "#EDEDED" + brightBlack: "#A3A3A3" + brightRed: "#FFA8A8" + brightGreen: "#9EFF9E" + brightYellow: "#F5FF8A" + brightBlue: "#94A9FF" + brightMagenta: "#FFB1FA" + brightCyan: "#BDFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 145 + contrast: + fg: 107.2 + black: 0 + red: 51.5 + green: 92.6 + yellow: 100.8 + blue: 28.9 + magenta: 59.7 + cyan: 95.2 + white: 95.4 + brightBlack: 51.8 + brightRed: 67.5 + brightGreen: 92.9 + brightYellow: 101.8 + brightBlue: 57.4 + brightMagenta: 74.5 + brightCyan: 99.3 + brightWhite: 107.2 diff --git a/themes/adey-coder.yaml b/themes/adey-coder.yaml new file mode 100644 index 00000000..4cc16fc6 --- /dev/null +++ b/themes/adey-coder.yaml @@ -0,0 +1,49 @@ +name: "Adey Coder" +source: + marketplace_id: "AdeyCoder.adey-coder-dark" + version: "1.0.3" + installs: 1786 + author: "Adey Coder" + repo: "https://github.com/yohanstesfaye/adey-coder-dark" + url: "https://marketplace.visualstudio.com/items?itemName=AdeyCoder.adey-coder-dark" +colors: + bg: "#121F12" + fg: "#FFFFFF" + black: "#363636" + red: "#FF7776" + green: "#6BFF6B" + yellow: "#F0FF57" + blue: "#5060FF" + magenta: "#FF81F7" + cyan: "#59FFFF" + white: "#EDEDED" + brightBlack: "#A3A3A3" + brightRed: "#FFA8A8" + brightGreen: "#9EFF9E" + brightYellow: "#F5FF8A" + brightBlue: "#94A9FF" + brightMagenta: "#FFB1FA" + brightCyan: "#BDFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 144 + contrast: + fg: 106.3 + black: 0 + red: 50.6 + green: 87.7 + yellow: 99.4 + blue: 28 + magenta: 58.8 + cyan: 91.9 + white: 94.5 + brightBlack: 50.9 + brightRed: 66.6 + brightGreen: 92 + brightYellow: 100.9 + brightBlue: 56.5 + brightMagenta: 73.5 + brightCyan: 98.4 + brightWhite: 106.3 diff --git a/themes/adonis.yaml b/themes/adonis.yaml new file mode 100644 index 00000000..4d85bb61 --- /dev/null +++ b/themes/adonis.yaml @@ -0,0 +1,49 @@ +name: "Adonis" +source: + marketplace_id: "saeed-nazari.adonis-theme" + version: "5.1.0" + installs: 17277 + author: "Saeed Nazari" + repo: "https://github.com/saeed-nazari/vsc-theme-adonis" + url: "https://marketplace.visualstudio.com/items?itemName=saeed-nazari.adonis-theme" +colors: + bg: "#272A2F" + fg: "#CCCCCC" + black: "#272A2F" + red: "#FA6780" + green: "#9DD56E" + yellow: "#A4D676" + blue: "#FDB772" + magenta: "#D9BDF8" + cyan: "#7DD5F4" + white: "#CCCCCC" + brightBlack: "#272A2F" + brightRed: "#FA6780" + brightGreen: "#9DD56E" + brightYellow: "#A4D676" + brightBlue: "#FDB772" + brightMagenta: "#D9BDF8" + brightCyan: "#7DD5F4" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: 261 + contrast: + fg: 71.9 + black: 0 + red: 43.9 + green: 67.9 + yellow: 69.2 + blue: 68 + magenta: 69.7 + cyan: 70.3 + white: 71.9 + brightBlack: 0 + brightRed: 43.9 + brightGreen: 67.9 + brightYellow: 69.2 + brightBlue: 68 + brightMagenta: 69.7 + brightCyan: 70.3 + brightWhite: 71.9 diff --git a/themes/adrift.yaml b/themes/adrift.yaml new file mode 100644 index 00000000..0a0f4f13 --- /dev/null +++ b/themes/adrift.yaml @@ -0,0 +1,49 @@ +name: "Adrift" +source: + marketplace_id: "JBoggsDev.adrift-theme" + version: "0.0.3" + installs: 267 + author: "JBoggsDev" + repo: "https://github.com/jaredb1011/VSCode-Theme-Adrift" + url: "https://marketplace.visualstudio.com/items?itemName=JBoggsDev.adrift-theme" +colors: + bg: "#061115" + fg: "#DDD6C2" + black: "#000000" + red: "#CD3131" + green: "#3D624C" + yellow: "#BFA26B" + blue: "#24A9C8" + magenta: "#AA69E0" + cyan: "#20B8B8" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#CB645D" + brightGreen: "#66987B" + brightYellow: "#BDA02C" + brightBlue: "#63B7F5" + brightMagenta: "#DE95D9" + brightCyan: "#29DBCA" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 222 + contrast: + fg: 81.4 + black: 0 + red: 27.3 + green: 17.8 + yellow: 53.5 + blue: 48.5 + magenta: 37.8 + cyan: 54.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 36.1 + brightGreen: 40.8 + brightYellow: 51.7 + brightBlue: 59 + brightMagenta: 57.9 + brightCyan: 71.3 + brightWhite: 90.6 diff --git a/themes/advancedbat.yaml b/themes/advancedbat.yaml new file mode 100644 index 00000000..2831288c --- /dev/null +++ b/themes/advancedbat.yaml @@ -0,0 +1,49 @@ +name: "AdvancedBat" +source: + marketplace_id: "selfrefactor.AdvancedBatNiketa" + version: "1.3.5" + installs: 186 + author: "selfrefactor" + repo: "https://github.com/selfrefactor/niketa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.AdvancedBatNiketa" +colors: + bg: "#AAAAAA" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 58.1 + black: 58.1 + red: 26.1 + green: 0 + yellow: 10 + blue: 38.2 + magenta: 26.7 + cyan: 12.7 + white: 38 + brightBlack: 30.9 + brightRed: 26.1 + brightGreen: 0 + brightYellow: 0 + brightBlue: 38.2 + brightMagenta: 26.7 + brightCyan: 12.7 + brightWhite: 0 diff --git a/themes/aelmouny11-theme.yaml b/themes/aelmouny11-theme.yaml new file mode 100644 index 00000000..2ceafd4d --- /dev/null +++ b/themes/aelmouny11-theme.yaml @@ -0,0 +1,49 @@ +name: "aelmouny11_theme" +source: + marketplace_id: "aelmouny11.aelmouny11" + version: "0.0.1" + installs: 94 + author: "Azddine ELMOUMNY" + repo: "https://github.com/Aelmouny11/vscode_theme" + url: "https://marketplace.visualstudio.com/items?itemName=aelmouny11.aelmouny11" +colors: + bg: "#030C1B" + fg: "#FFFDF5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 106.2 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/aeridia.yaml b/themes/aeridia.yaml new file mode 100644 index 00000000..2f5478e0 --- /dev/null +++ b/themes/aeridia.yaml @@ -0,0 +1,49 @@ +name: "Aeridia" +source: + marketplace_id: "Be-njamin.aeridia" + version: "0.0.7" + installs: 226 + author: "Benjamin Vasquez" + repo: "https://github.com/Be-njamin/aeridia" + url: "https://marketplace.visualstudio.com/items?itemName=Be-njamin.aeridia" +colors: + bg: "#1E1E1E" + fg: "#D2D2D3" + black: "#1E1E1E" + red: "#963232" + green: "#329632" + yellow: "#969632" + blue: "#323296" + magenta: "#963296" + cyan: "#329696" + white: "#DCDCDC" + brightBlack: "#323232" + brightRed: "#C83232" + brightGreen: "#32C832" + brightYellow: "#C8C832" + brightBlue: "#3232C8" + brightMagenta: "#C832C8" + brightCyan: "#32C8C8" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.5 + black: 0 + red: 15 + green: 34.8 + yellow: 41.6 + blue: 0 + magenta: 18.4 + cyan: 37.2 + white: 83.6 + brightBlack: 0 + brightRed: 24.9 + brightGreen: 57.1 + brightYellow: 68 + brightBlue: 11.7 + brightMagenta: 30.5 + brightCyan: 60.9 + brightWhite: 96.2 diff --git a/themes/aesir-theme.yaml b/themes/aesir-theme.yaml new file mode 100644 index 00000000..44511b82 --- /dev/null +++ b/themes/aesir-theme.yaml @@ -0,0 +1,49 @@ +name: "Aesir Theme" +source: + marketplace_id: "tomgobich.aesir-theme" + version: "1.0.3" + installs: 1738 + author: "tomgobich" + repo: "https://github.com/tomgobich/aesir-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=tomgobich.aesir-theme" +colors: + bg: "#1F2228" + fg: "#D4D4D4" + black: "#1F2228" + red: "#E74C3C" + green: "#5D6879" + yellow: "#5D6879" + blue: "#27AE60" + magenta: "#5D6879" + cyan: "#2ECC71" + white: "#D4D4D4" + brightBlack: "#3E4651" + brightRed: "#C0392B" + brightGreen: "#2ECC71" + brightYellow: "#5D6879" + brightBlue: "#27AE60" + brightMagenta: "#5D6879" + brightCyan: "#2ECC71" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 78.1 + black: 0 + red: 34.7 + green: 21.1 + yellow: 21.1 + blue: 45 + magenta: 21.1 + cyan: 59.3 + white: 78.1 + brightBlack: 7.9 + brightRed: 23.4 + brightGreen: 59.3 + brightYellow: 21.1 + brightBlue: 45 + brightMagenta: 21.1 + brightCyan: 59.3 + brightWhite: 78.1 diff --git a/themes/aesthetic-dark.yaml b/themes/aesthetic-dark.yaml new file mode 100644 index 00000000..b15a17a5 --- /dev/null +++ b/themes/aesthetic-dark.yaml @@ -0,0 +1,49 @@ +name: "Aesthetic Dark" +source: + marketplace_id: "manojjoshi.aesthetic" + version: "3.0.0" + installs: 8071 + author: "manoj joshi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=manojjoshi.aesthetic" +colors: + bg: "#16172D" + fg: "#FFFFFF" + black: "#3A3D4B" + red: "#FF517D" + green: "#ADFF84" + yellow: "#1FB5FF" + blue: "#FA7539" + magenta: "#FFFFFF" + cyan: "#4BD0D7" + white: "#E5E5E5" + brightBlack: "#696D77" + brightRed: "#FF517D" + brightGreen: "#ADFF84" + brightYellow: "#1FB5FF" + brightBlue: "#FA7539" + brightMagenta: "#FFFFFF" + brightCyan: "#4BD0D7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 106.6 + black: 0 + red: 43.4 + green: 92.9 + yellow: 56 + blue: 48.3 + magenta: 106.6 + cyan: 66.6 + white: 89.8 + brightBlack: 24.8 + brightRed: 43.4 + brightGreen: 92.9 + brightYellow: 56 + brightBlue: 48.3 + brightMagenta: 106.6 + brightCyan: 66.6 + brightWhite: 106.6 diff --git a/themes/aesthetic.yaml b/themes/aesthetic.yaml new file mode 100644 index 00000000..8195fd1a --- /dev/null +++ b/themes/aesthetic.yaml @@ -0,0 +1,49 @@ +name: "Aesthetic" +source: + marketplace_id: "sophtli.cute-aesthetic" + version: "1.1.4" + installs: 4504 + author: "Sophtli" + repo: "https://github.com/Sophtli/cute-aesthetic" + url: "https://marketplace.visualstudio.com/items?itemName=sophtli.cute-aesthetic" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 98.7 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/aether-abyss.yaml b/themes/aether-abyss.yaml new file mode 100644 index 00000000..929dc6bf --- /dev/null +++ b/themes/aether-abyss.yaml @@ -0,0 +1,49 @@ +name: "Aether Abyss" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#020810" + fg: "#C8D8E8" + black: "#0A1420" + red: "#EF4444" + green: "#10B981" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#F472B6" + cyan: "#22D3EE" + white: "#C8D8E8" + brightBlack: "#3E5575" + brightRed: "#F87171" + brightGreen: "#34D399" + brightYellow: "#FDE047" + brightBlue: "#93C5FD" + brightMagenta: "#F9A8D4" + brightCyan: "#67E8F9" + brightWhite: "#F1F5F9" +meta: + mode: "dark" + accent: "orange" + hue: 246 + contrast: + fg: 81.6 + black: 0 + red: 37.8 + green: 52.8 + yellow: 78.7 + blue: 52.3 + magenta: 50.8 + cyan: 69.5 + white: 81.6 + brightBlack: 15.6 + brightRed: 49 + brightGreen: 66.1 + brightYellow: 88.1 + brightBlue: 69.1 + brightMagenta: 68.9 + brightCyan: 82.1 + brightWhite: 100.8 diff --git a/themes/aether-abyssal.yaml b/themes/aether-abyssal.yaml new file mode 100644 index 00000000..13f471ff --- /dev/null +++ b/themes/aether-abyssal.yaml @@ -0,0 +1,49 @@ +name: "Aether Abyssal" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#020D10" + fg: "#A8C2C5" + black: "#2E4245" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#A8C2C5" + brightBlack: "#456266" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#BBCFD2" +meta: + mode: "dark" + accent: "orange" + hue: 213 + contrast: + fg: 66.7 + black: 7.8 + red: 41.3 + green: 77.8 + yellow: 67.8 + blue: 52.8 + magenta: 46.4 + cyan: 71.3 + white: 66.7 + brightBlack: 19.2 + brightRed: 46.5 + brightGreen: 80 + brightYellow: 54.6 + brightBlue: 58.1 + brightMagenta: 58.8 + brightCyan: 74.6 + brightWhite: 75 diff --git a/themes/aether-arctic.yaml b/themes/aether-arctic.yaml new file mode 100644 index 00000000..9b376a50 --- /dev/null +++ b/themes/aether-arctic.yaml @@ -0,0 +1,49 @@ +name: "Aether Arctic" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#0E1419" + fg: "#E0F2FF" + black: "#19232E" + red: "#FF9999" + green: "#99F2D9" + yellow: "#FFEB99" + blue: "#73E6FF" + magenta: "#CCB3FF" + cyan: "#99E6F2" + white: "#E0F2FF" + brightBlack: "#3D5266" + brightRed: "#FFB3B3" + brightGreen: "#B3F5E6" + brightYellow: "#FFF2CC" + brightBlue: "#A6E3FF" + brightMagenta: "#DECCFF" + brightCyan: "#B3EFF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 244 + contrast: + fg: 96.9 + black: 0 + red: 62.1 + green: 88 + yellow: 94.1 + blue: 81.5 + magenta: 67.6 + cyan: 83.3 + white: 96.9 + brightBlack: 13.5 + brightRed: 71.8 + brightGreen: 92.2 + brightYellow: 98.9 + brightBlue: 83.7 + brightMagenta: 79.9 + brightCyan: 90.1 + brightWhite: 107.2 diff --git a/themes/aether-atlantis.yaml b/themes/aether-atlantis.yaml new file mode 100644 index 00000000..9b39abf5 --- /dev/null +++ b/themes/aether-atlantis.yaml @@ -0,0 +1,49 @@ +name: "Aether Atlantis" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#051114" + fg: "#C0DCE0" + black: "#0D2329" + red: "#DC2626" + green: "#84CC16" + yellow: "#FCD34D" + blue: "#38BDF8" + magenta: "#E879F9" + cyan: "#2DD4BF" + white: "#C0DCE0" + brightBlack: "#456970" + brightRed: "#EF4444" + brightGreen: "#A3E635" + brightYellow: "#FDE68A" + brightBlue: "#7DD3FC" + brightMagenta: "#F0ABFC" + brightCyan: "#5EEAD4" + brightWhite: "#E0F2FE" +meta: + mode: "dark" + accent: "orange" + hue: 214 + contrast: + fg: 81.8 + black: 0 + red: 29.7 + green: 64.1 + yellow: 82 + blue: 60.2 + magenta: 53.7 + cyan: 67.5 + white: 81.8 + brightBlack: 21.5 + brightRed: 37.4 + brightGreen: 79.3 + brightYellow: 91.5 + brightBlue: 73.3 + brightMagenta: 70.2 + brightCyan: 80.5 + brightWhite: 97.1 diff --git a/themes/aether-aurora.yaml b/themes/aether-aurora.yaml new file mode 100644 index 00000000..579a8cf9 --- /dev/null +++ b/themes/aether-aurora.yaml @@ -0,0 +1,49 @@ +name: "Aether Aurora" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#0F1419" + fg: "#E6F1FF" + black: "#0F1419" + red: "#F07178" + green: "#7FDBCA" + yellow: "#FFEE99" + blue: "#4FC1FF" + magenta: "#C792EA" + cyan: "#7FDBCA" + white: "#E6F1FF" + brightBlack: "#0F1419" + brightRed: "#F07178" + brightGreen: "#7FDBCA" + brightYellow: "#FFEE99" + brightBlue: "#4FC1FF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#E6F1FF" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 97.2 + black: 0 + red: 46.9 + green: 74.3 + yellow: 95.5 + blue: 62.8 + magenta: 54.1 + cyan: 74.3 + white: 97.2 + brightBlack: 0 + brightRed: 46.9 + brightGreen: 74.3 + brightYellow: 95.5 + brightBlue: 62.8 + brightMagenta: 54.1 + brightCyan: 74.3 + brightWhite: 97.2 diff --git a/themes/aether-borealis.yaml b/themes/aether-borealis.yaml new file mode 100644 index 00000000..3f45d06d --- /dev/null +++ b/themes/aether-borealis.yaml @@ -0,0 +1,49 @@ +name: "Aether Borealis" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#0F1419" + fg: "#D8DEE9" + black: "#2E3440" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#88C0D0" + magenta: "#B48EAD" + cyan: "#8FBCBB" + white: "#D8DEE9" + brightBlack: "#4C566A" + brightRed: "#D08770" + brightGreen: "#B9D196" + brightYellow: "#F0D399" + brightBlue: "#9FC9D8" + brightMagenta: "#C9A6C1" + brightCyan: "#A3CCC9" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 85.7 + black: 0 + red: 33.3 + green: 62 + yellow: 76.7 + blue: 63 + magenta: 46.8 + cyan: 60.9 + white: 85.7 + brightBlack: 15.7 + brightRed: 46.8 + brightGreen: 73 + brightYellow: 81.2 + brightBlue: 69.3 + brightMagenta: 59 + brightCyan: 70.3 + brightWhite: 96.5 diff --git a/themes/aether-carbon.yaml b/themes/aether-carbon.yaml new file mode 100644 index 00000000..a8db9766 --- /dev/null +++ b/themes/aether-carbon.yaml @@ -0,0 +1,49 @@ +name: "Aether Carbon" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#0A0A0A" + fg: "#D4D4D4" + black: "#0A0A0A" + red: "#A0A0A0" + green: "#B0B0B0" + yellow: "#C0C0C0" + blue: "#909090" + magenta: "#808080" + cyan: "#989898" + white: "#D4D4D4" + brightBlack: "#3A3A3A" + brightRed: "#B8B8B8" + brightGreen: "#C8C8C8" + brightYellow: "#E0E0E0" + brightBlue: "#A8A8A8" + brightMagenta: "#989898" + brightCyan: "#B0B0B0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 80.3 + black: 0 + red: 50.7 + green: 59.4 + yellow: 68.5 + blue: 42.4 + magenta: 34.6 + cyan: 46.5 + white: 80.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 73.2 + brightYellow: 87.7 + brightBlue: 55 + brightMagenta: 46.5 + brightCyan: 59.4 + brightWhite: 107.7 diff --git a/themes/aether-clarity.yaml b/themes/aether-clarity.yaml new file mode 100644 index 00000000..3eb90821 --- /dev/null +++ b/themes/aether-clarity.yaml @@ -0,0 +1,49 @@ +name: "Aether Clarity" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#FFFFFF" + fg: "#1F2328" + black: "#24292F" + red: "#CF222E" + green: "#1F883D" + yellow: "#9A6700" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#0598BC" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#DA3633" + brightGreen: "#2EA043" + brightYellow: "#BF8700" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3FB8D4" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 102.8 + black: 101.5 + red: 74.8 + green: 70.9 + yellow: 73.4 + blue: 74.9 + magenta: 74.3 + cyan: 60.6 + white: 71.6 + brightBlack: 81.8 + brightRed: 70.5 + brightGreen: 60.8 + brightYellow: 58.2 + brightBlue: 60.7 + brightMagenta: 59.3 + brightCyan: 45.6 + brightWhite: 57.2 diff --git a/themes/aether-coffee-dark.yaml b/themes/aether-coffee-dark.yaml new file mode 100644 index 00000000..285a1893 --- /dev/null +++ b/themes/aether-coffee-dark.yaml @@ -0,0 +1,49 @@ +name: "Aether Coffee Dark" +source: + marketplace_id: "diogo-aether.aether-dark" + version: "1.4.0" + installs: 203 + author: "Diogo Pereira" + repo: "https://github.com/Diiipereira/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" +colors: + bg: "#080706" + fg: "#D8CCB8" + black: "#080706" + red: "#B86060" + green: "#88A868" + yellow: "#B8A840" + blue: "#7898A8" + magenta: "#9880B0" + cyan: "#6898A0" + white: "#6E6050" + brightBlack: "#3A3020" + brightRed: "#C87878" + brightGreen: "#A8C888" + brightYellow: "#D8C860" + brightBlue: "#98B8C8" + brightMagenta: "#B8A0C8" + brightCyan: "#88B8B0" + brightWhite: "#D8CCB8" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 76.4 + black: 0 + red: 32.2 + green: 49.9 + yellow: 54.6 + blue: 44.2 + magenta: 39.4 + cyan: 42.7 + white: 21.4 + brightBlack: 0 + brightRed: 41.8 + brightGreen: 67.4 + brightYellow: 72.4 + brightBlue: 61.2 + brightMagenta: 55.5 + brightCyan: 58.8 + brightWhite: 76.4 diff --git a/themes/aether-coffee.yaml b/themes/aether-coffee.yaml new file mode 100644 index 00000000..24c48a3e --- /dev/null +++ b/themes/aether-coffee.yaml @@ -0,0 +1,49 @@ +name: "Aether Coffee" +source: + marketplace_id: "diogo-aether.aether-dark" + version: "1.4.0" + installs: 203 + author: "Diogo Pereira" + repo: "https://github.com/Diiipereira/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" +colors: + bg: "#1E1810" + fg: "#F0DFC0" + black: "#1E1810" + red: "#E07878" + green: "#90B870" + yellow: "#C8B040" + blue: "#7AA8C0" + magenta: "#C090B8" + cyan: "#70A8A0" + white: "#9A8A72" + brightBlack: "#5A4830" + brightRed: "#E89898" + brightGreen: "#B0D090" + brightYellow: "#E0D060" + brightBlue: "#A0C8E0" + brightMagenta: "#E0B0D8" + brightCyan: "#90C8C0" + brightWhite: "#F0DFC0" +meta: + mode: "dark" + accent: "green" + hue: 75 + contrast: + fg: 87.1 + black: 0 + red: 45 + green: 56.3 + yellow: 58.7 + blue: 50.6 + magenta: 49.1 + cyan: 48.4 + white: 39.4 + brightBlack: 11.1 + brightRed: 56.9 + brightGreen: 70.8 + brightYellow: 75.8 + brightBlue: 68.8 + brightMagenta: 66.6 + brightCyan: 65.9 + brightWhite: 87.1 diff --git a/themes/aether-cosmos.yaml b/themes/aether-cosmos.yaml new file mode 100644 index 00000000..b9bdebc1 --- /dev/null +++ b/themes/aether-cosmos.yaml @@ -0,0 +1,49 @@ +name: "Aether Cosmos" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#0A0E27" + fg: "#E1E8FF" + black: "#0A0E27" + red: "#FF6B9D" + green: "#66D9A0" + yellow: "#FFD93D" + blue: "#82E2FF" + magenta: "#C792EA" + cyan: "#66D9EF" + white: "#E1E8FF" + brightBlack: "#3E4B8A" + brightRed: "#FF8FB3" + brightGreen: "#8CE6B8" + brightYellow: "#FFE66D" + brightBlue: "#A8E8FF" + brightMagenta: "#DBB7FF" + brightCyan: "#8CE6F4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 273 + contrast: + fg: 92.6 + black: 0 + red: 50.1 + green: 70.5 + yellow: 84.8 + blue: 80.6 + magenta: 54.2 + cyan: 73.9 + white: 92.6 + brightBlack: 13.6 + brightRed: 60.1 + brightGreen: 79.9 + brightYellow: 91.1 + brightBlue: 86.4 + brightMagenta: 71.4 + brightCyan: 82.6 + brightWhite: 107.4 diff --git a/themes/aether-dark-space.yaml b/themes/aether-dark-space.yaml new file mode 100644 index 00000000..eed16226 --- /dev/null +++ b/themes/aether-dark-space.yaml @@ -0,0 +1,49 @@ +name: "Aether Dark Space" +source: + marketplace_id: "diogo-aether.aether-dark" + version: "1.4.0" + installs: 203 + author: "Diogo Pereira" + repo: "https://github.com/Diiipereira/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" +colors: + bg: "#0F0B14" + fg: "#E3E1E6" + black: "#0F0B14" + red: "#FF5F5F" + green: "#4FFFD0" + yellow: "#FFCB6B" + blue: "#7ACFFF" + magenta: "#BD5EFF" + cyan: "#5EE6FF" + white: "#7A6E8A" + brightBlack: "#3A2850" + brightRed: "#FF8080" + brightGreen: "#8AFFDE" + brightYellow: "#FFE0A3" + brightBlue: "#A3E4FF" + brightMagenta: "#D699FF" + brightCyan: "#99F2FF" + brightWhite: "#E3E1E6" +meta: + mode: "dark" + accent: "magenta" + hue: 305 + contrast: + fg: 88.7 + black: 0 + red: 46.1 + green: 90.7 + yellow: 79.7 + blue: 71.6 + magenta: 40.8 + cyan: 80.9 + white: 28.5 + brightBlack: 0 + brightRed: 54.5 + brightGreen: 94.1 + brightYellow: 89.9 + brightBlue: 84.3 + brightMagenta: 60.4 + brightCyan: 90.2 + brightWhite: 88.7 diff --git a/themes/aether-dark.yaml b/themes/aether-dark.yaml new file mode 100644 index 00000000..e006da30 --- /dev/null +++ b/themes/aether-dark.yaml @@ -0,0 +1,49 @@ +name: "Aether Dark" +source: + marketplace_id: "diogo-aether.aether-dark" + version: "1.4.0" + installs: 203 + author: "Diogo Pereira" + repo: "https://github.com/Diiipereira/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" +colors: + bg: "#0D0F13" + fg: "#E2E8F0" + black: "#0D0F13" + red: "#F87171" + green: "#86EFAC" + yellow: "#FBBF24" + blue: "#93C5FD" + magenta: "#C4B5FD" + cyan: "#5EEAD4" + white: "#94A3B8" + brightBlack: "#3D4A5C" + brightRed: "#FCA5A5" + brightGreen: "#BBF7D0" + brightYellow: "#FDE047" + brightBlue: "#BFDBFE" + brightMagenta: "#DDD6FE" + brightCyan: "#99F6E4" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 92.1 + black: 0 + red: 48.7 + green: 83.7 + yellow: 73.3 + blue: 68.8 + magenta: 67.5 + cyan: 80.6 + white: 51.4 + brightBlack: 11.3 + brightRed: 66.2 + brightGreen: 93.4 + brightYellow: 87.8 + brightBlue: 82.8 + brightMagenta: 84.2 + brightCyan: 90.7 + brightWhite: 92.1 diff --git a/themes/aether-dawn.yaml b/themes/aether-dawn.yaml new file mode 100644 index 00000000..a8007339 --- /dev/null +++ b/themes/aether-dawn.yaml @@ -0,0 +1,49 @@ +name: "Aether Dawn" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#FEF6E4" + fg: "#2D3748" + black: "#2D3748" + red: "#F6416C" + green: "#00B8A9" + yellow: "#F8B500" + blue: "#3490DE" + magenta: "#9561E2" + cyan: "#00BCD4" + white: "#FFFFFF" + brightBlack: "#2D3748" + brightRed: "#F6416C" + brightGreen: "#00B8A9" + brightYellow: "#F8B500" + brightBlue: "#3490DE" + brightMagenta: "#9561E2" + brightCyan: "#00BCD4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 92.4 + black: 92.4 + red: 56.8 + green: 43.2 + yellow: 28.3 + blue: 55.9 + magenta: 62.9 + cyan: 39.5 + white: 0 + brightBlack: 92.4 + brightRed: 56.8 + brightGreen: 43.2 + brightYellow: 28.3 + brightBlue: 55.9 + brightMagenta: 62.9 + brightCyan: 39.5 + brightWhite: 0 diff --git a/themes/aether-deep-ocean.yaml b/themes/aether-deep-ocean.yaml new file mode 100644 index 00000000..82cdff13 --- /dev/null +++ b/themes/aether-deep-ocean.yaml @@ -0,0 +1,49 @@ +name: "Aether Deep Ocean" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#0A1628" + fg: "#C3E2FF" + black: "#0A1628" + red: "#FF5252" + green: "#00E676" + yellow: "#FFCA28" + blue: "#00BCD4" + magenta: "#7C4DFF" + cyan: "#00ACC1" + white: "#C3E2FF" + brightBlack: "#2E5A8E" + brightRed: "#FF6E6E" + brightGreen: "#69F0AE" + brightYellow: "#FFD54F" + brightBlue: "#4FC3F7" + brightMagenta: "#B388FF" + brightCyan: "#84FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + contrast: + fg: 85.8 + black: 0 + red: 42.9 + green: 73.3 + yellow: 77.9 + blue: 56.6 + magenta: 28.1 + cyan: 48.6 + white: 85.8 + brightBlack: 16.7 + brightRed: 48.9 + brightGreen: 82.1 + brightYellow: 82.8 + brightBlue: 62.9 + brightMagenta: 49.3 + brightCyan: 94.6 + brightWhite: 106.9 diff --git a/themes/aether-depths.yaml b/themes/aether-depths.yaml new file mode 100644 index 00000000..24a78f0e --- /dev/null +++ b/themes/aether-depths.yaml @@ -0,0 +1,49 @@ +name: "Aether Depths" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#030F11" + fg: "#AFC5C8" + black: "#294146" + red: "#D65D6E" + green: "#55D98C" + yellow: "#C99C5C" + blue: "#4AB9D0" + magenta: "#D76B91" + cyan: "#4AC8D1" + white: "#AFC5C8" + brightBlack: "#3C5A60" + brightRed: "#E17180" + brightGreen: "#6CE19B" + brightYellow: "#D4AD71" + brightBlue: "#5EC6DA" + brightMagenta: "#E180A2" + brightCyan: "#5ED5DA" + brightWhite: "#C6D8DB" +meta: + mode: "dark" + accent: "teal" + hue: 207 + contrast: + fg: 68.8 + black: 0 + red: 37.2 + green: 69.4 + yellow: 52.6 + blue: 56.8 + magenta: 41.7 + cyan: 63.5 + white: 68.8 + brightBlack: 15.9 + brightRed: 44.5 + brightGreen: 74.8 + brightYellow: 61 + brightBlue: 63.9 + brightMagenta: 49.7 + brightCyan: 70.8 + brightWhite: 80.5 diff --git a/themes/aether-dusk.yaml b/themes/aether-dusk.yaml new file mode 100644 index 00000000..44e19357 --- /dev/null +++ b/themes/aether-dusk.yaml @@ -0,0 +1,49 @@ +name: "Aether Dusk" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#1A1220" + fg: "#E6DCE8" + black: "#261A33" + red: "#DF8F8F" + green: "#A1C181" + yellow: "#E8B87E" + blue: "#A7C7E7" + magenta: "#C19BD6" + cyan: "#8FC5DB" + white: "#E6DCE8" + brightBlack: "#4A3666" + brightRed: "#E6A3A3" + brightGreen: "#B5D196" + brightYellow: "#F4C493" + brightBlue: "#B8D4ED" + brightMagenta: "#D3B0E3" + brightCyan: "#A3D3E5" + brightWhite: "#F5F0F6" +meta: + mode: "dark" + accent: "orange" + hue: 310 + contrast: + fg: 86.4 + black: 0 + red: 52.5 + green: 62.6 + yellow: 68.1 + blue: 69.8 + magenta: 54.9 + cyan: 66.1 + white: 86.4 + brightBlack: 7.6 + brightRed: 61.1 + brightGreen: 72.4 + brightYellow: 75.3 + brightBlue: 77.5 + brightMagenta: 65.7 + brightCyan: 74.6 + brightWhite: 98.2 diff --git a/themes/aether-emerald.yaml b/themes/aether-emerald.yaml new file mode 100644 index 00000000..c45076d8 --- /dev/null +++ b/themes/aether-emerald.yaml @@ -0,0 +1,49 @@ +name: "Aether Emerald" +source: + marketplace_id: "diogo-aether.aether-dark" + version: "1.4.0" + installs: 203 + author: "Diogo Pereira" + repo: "https://github.com/Diiipereira/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" +colors: + bg: "#0D1311" + fg: "#E2E8F0" + black: "#0D1311" + red: "#F87171" + green: "#34D399" + yellow: "#FBBF24" + blue: "#38BDF8" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#6A8A80" + brightBlack: "#2D5045" + brightRed: "#FCA5A5" + brightGreen: "#6EE7B7" + brightYellow: "#FCD34D" + brightBlue: "#7DD3FC" + brightMagenta: "#E879F9" + brightCyan: "#67E8F9" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "pink" + hue: 173 + contrast: + fg: 91.9 + black: 0 + red: 48.5 + green: 65.6 + yellow: 73.1 + blue: 60.1 + magenta: 50.1 + cyan: 69 + white: 35.8 + brightBlack: 11.3 + brightRed: 66 + brightGreen: 78.5 + brightYellow: 81.8 + brightBlue: 73.1 + brightMagenta: 53.5 + brightCyan: 81.6 + brightWhite: 91.9 diff --git a/themes/aether-forest.yaml b/themes/aether-forest.yaml new file mode 100644 index 00000000..02fcfb32 --- /dev/null +++ b/themes/aether-forest.yaml @@ -0,0 +1,49 @@ +name: "Aether Forest" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#0A0D0A" + fg: "#E0F2E9" + black: "#111611" + red: "#F87171" + green: "#34D399" + yellow: "#FBBF24" + blue: "#60A5FA" + magenta: "#A78BFA" + cyan: "#67E8F9" + white: "#E0F2E9" + brightBlack: "#374151" + brightRed: "#FCA5A5" + brightGreen: "#6EE7B7" + brightYellow: "#FDE68A" + brightBlue: "#93C5FD" + brightMagenta: "#C4B5FD" + brightCyan: "#A5F3FC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 96.3 + black: 0 + red: 48.9 + green: 66 + yellow: 73.5 + blue: 52.1 + magenta: 49.1 + cyan: 82 + white: 96.3 + brightBlack: 8.4 + brightRed: 66.3 + brightGreen: 78.8 + brightYellow: 91.6 + brightBlue: 69 + brightMagenta: 67.6 + brightCyan: 91.5 + brightWhite: 107.7 diff --git a/themes/aether-glass.yaml b/themes/aether-glass.yaml new file mode 100644 index 00000000..6519a6df --- /dev/null +++ b/themes/aether-glass.yaml @@ -0,0 +1,49 @@ +name: "Aether Glass" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#0A0B0E" + fg: "#E8F0FF" + black: "#14161B" + red: "#FFB5B5" + green: "#A8FF90" + yellow: "#FFD6A5" + blue: "#94E2FF" + magenta: "#E5B5FF" + cyan: "#B8E7FF" + white: "#E8F0FF" + brightBlack: "#404650" + brightRed: "#FFCCCC" + brightGreen: "#C5FFB5" + brightYellow: "#FFE8CC" + brightBlue: "#B8EDFF" + brightMagenta: "#F0D5FF" + brightCyan: "#D5F0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 97.5 + black: 0 + red: 73.1 + green: 93.9 + yellow: 85.7 + blue: 82.2 + magenta: 72.4 + cyan: 87.8 + white: 97.5 + brightBlack: 10.2 + brightRed: 82.9 + brightGreen: 97.6 + brightYellow: 94.9 + brightBlue: 90.6 + brightMagenta: 86.7 + brightCyan: 95.2 + brightWhite: 107.7 diff --git a/themes/aether-light.yaml b/themes/aether-light.yaml new file mode 100644 index 00000000..b8189d51 --- /dev/null +++ b/themes/aether-light.yaml @@ -0,0 +1,49 @@ +name: "Aether Light" +source: + marketplace_id: "diogo-aether.aether-dark" + version: "1.4.0" + installs: 203 + author: "Diogo Pereira" + repo: "https://github.com/Diiipereira/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" +colors: + bg: "#F5F1ED" + fg: "#3D3835" + black: "#2C2826" + red: "#C76B6B" + green: "#4A7A5C" + yellow: "#A06840" + blue: "#3D7A7A" + magenta: "#8B5E83" + cyan: "#4A8080" + white: "#E8E2DB" + brightBlack: "#857D76" + brightRed: "#D98888" + brightGreen: "#6A9A7A" + brightYellow: "#C08050" + brightBlue: "#5A9898" + brightMagenta: "#A87AA0" + brightCyan: "#6AA0A0" + brightWhite: "#F5F1ED" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 88.7 + black: 93.4 + red: 55.8 + green: 66.3 + yellow: 63.9 + blue: 66 + magenta: 67.8 + cyan: 63 + white: 0 + brightBlack: 59.7 + brightRed: 43.9 + brightGreen: 51.4 + brightYellow: 51.7 + brightBlue: 52.2 + brightMagenta: 54.8 + brightCyan: 47.8 + brightWhite: 0 diff --git a/themes/aether-mariana.yaml b/themes/aether-mariana.yaml new file mode 100644 index 00000000..e3096816 --- /dev/null +++ b/themes/aether-mariana.yaml @@ -0,0 +1,49 @@ +name: "Aether Mariana" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#051214" + fg: "#B0C5C8" + black: "#334B50" + red: "#E7704A" + green: "#40D4A6" + yellow: "#D19A66" + blue: "#4AB0D9" + magenta: "#E17BA5" + cyan: "#39C5D7" + white: "#B0C5C8" + brightBlack: "#486D73" + brightRed: "#EA8260" + brightGreen: "#5BD9B3" + brightYellow: "#D89544" + brightBlue: "#5DB9DF" + brightMagenta: "#E799BB" + brightCyan: "#5DD5E5" + brightWhite: "#C0D5D8" +meta: + mode: "dark" + accent: "orange" + hue: 208 + contrast: + fg: 68.7 + black: 10.5 + red: 44.1 + green: 66.9 + yellow: 53.2 + blue: 53.3 + magenta: 48.2 + cyan: 61.8 + white: 68.7 + brightBlack: 23.1 + brightRed: 49.9 + brightGreen: 70.7 + brightYellow: 52.1 + brightBlue: 58.2 + brightMagenta: 59.2 + brightCyan: 71.1 + brightWhite: 78.2 diff --git a/themes/aether-matrix.yaml b/themes/aether-matrix.yaml new file mode 100644 index 00000000..f9ab37c0 --- /dev/null +++ b/themes/aether-matrix.yaml @@ -0,0 +1,49 @@ +name: "Aether Matrix" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#0A0F0A" + fg: "#D4F4DD" + black: "#0A0F0A" + red: "#F87171" + green: "#4ADE80" + yellow: "#FBBF24" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#D4F4DD" + brightBlack: "#1A2F1A" + brightRed: "#FCA5A5" + brightGreen: "#86EFAC" + brightYellow: "#FDE047" + brightBlue: "#93C5FD" + brightMagenta: "#D8B4FE" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 145 + contrast: + fg: 95.2 + black: 0 + red: 48.8 + green: 71.2 + yellow: 73.4 + blue: 52.1 + magenta: 50.4 + cyan: 69.3 + white: 95.2 + brightBlack: 0 + brightRed: 66.2 + brightGreen: 83.8 + brightYellow: 87.8 + brightBlue: 68.9 + brightMagenta: 70 + brightCyan: 81.9 + brightWhite: 107.6 diff --git a/themes/aether-midnight.yaml b/themes/aether-midnight.yaml new file mode 100644 index 00000000..0cb131f9 --- /dev/null +++ b/themes/aether-midnight.yaml @@ -0,0 +1,49 @@ +name: "Aether Midnight" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#000000" + fg: "#E0E0E0" + black: "#000000" + red: "#FF6B6B" + green: "#98FB98" + yellow: "#FFD700" + blue: "#87CEEB" + magenta: "#DDA0DD" + cyan: "#87CEEB" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF9999" + brightGreen: "#B5FFB5" + brightYellow: "#FFE14D" + brightBlue: "#ADD8E6" + brightMagenta: "#EECCEE" + brightCyan: "#B0E0E6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 87.9 + black: 0 + red: 49.1 + green: 90.9 + yellow: 84.3 + blue: 71.2 + magenta: 62 + cyan: 71.2 + white: 87.9 + brightBlack: 23 + brightRed: 62.8 + brightGreen: 96.2 + brightYellow: 89 + brightBlue: 78.7 + brightMagenta: 82 + brightCyan: 82.6 + brightWhite: 107.9 diff --git a/themes/aether-nautilus.yaml b/themes/aether-nautilus.yaml new file mode 100644 index 00000000..aa48b797 --- /dev/null +++ b/themes/aether-nautilus.yaml @@ -0,0 +1,49 @@ +name: "Aether Nautilus" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#021316" + fg: "#B8CACD" + black: "#31484B" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B8CACD" + brightBlack: "#456568" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C3D3D6" +meta: + mode: "dark" + accent: "orange" + hue: 209 + contrast: + fg: 71.9 + black: 9.4 + red: 41 + green: 77.4 + yellow: 67.4 + blue: 52.5 + magenta: 46.1 + cyan: 71 + white: 71.9 + brightBlack: 19.8 + brightRed: 46.2 + brightGreen: 79.6 + brightYellow: 54.3 + brightBlue: 57.7 + brightMagenta: 58.5 + brightCyan: 74.3 + brightWhite: 77.5 diff --git a/themes/aether-nebula.yaml b/themes/aether-nebula.yaml new file mode 100644 index 00000000..8d22ae02 --- /dev/null +++ b/themes/aether-nebula.yaml @@ -0,0 +1,49 @@ +name: "Aether Nebula" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#1A0F2E" + fg: "#E9D5FF" + black: "#1A0F2E" + red: "#FF79C6" + green: "#50FA7B" + yellow: "#FFB86C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#E9D5FF" + brightBlack: "#1A0F2E" + brightRed: "#FF79C6" + brightGreen: "#50FA7B" + brightYellow: "#FFB86C" + brightBlue: "#BD93F9" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#E9D5FF" +meta: + mode: "dark" + accent: "green" + hue: 297 + contrast: + fg: 85 + black: 0 + red: 54.6 + green: 84.9 + yellow: 71.5 + blue: 53.7 + magenta: 54.6 + cyan: 84 + white: 85 + brightBlack: 0 + brightRed: 54.6 + brightGreen: 84.9 + brightYellow: 71.5 + brightBlue: 53.7 + brightMagenta: 54.6 + brightCyan: 84 + brightWhite: 85 diff --git a/themes/aether-neon.yaml b/themes/aether-neon.yaml new file mode 100644 index 00000000..c1829408 --- /dev/null +++ b/themes/aether-neon.yaml @@ -0,0 +1,49 @@ +name: "Aether Neon" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#020705" + fg: "#39FF14" + black: "#020705" + red: "#FF073A" + green: "#39FF14" + yellow: "#FFFF00" + blue: "#0080FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#C0C0C0" + brightBlack: "#0A1F0F" + brightRed: "#FF3366" + brightGreen: "#66FF33" + brightYellow: "#FFFF66" + brightBlue: "#3399FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 171 + contrast: + fg: 86.9 + black: 0 + red: 37.8 + green: 86.9 + yellow: 102.7 + blue: 37 + magenta: 46.2 + cyan: 92.1 + white: 68.6 + brightBlack: 0 + brightRed: 40.4 + brightGreen: 88.4 + brightYellow: 103.2 + brightBlue: 46.4 + brightMagenta: 54.8 + brightCyan: 93.9 + brightWhite: 107.8 diff --git a/themes/aether-neptune.yaml b/themes/aether-neptune.yaml new file mode 100644 index 00000000..1bef9f8c --- /dev/null +++ b/themes/aether-neptune.yaml @@ -0,0 +1,49 @@ +name: "Aether Neptune" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#031419" + fg: "#B8D4E3" + black: "#0A2832" + red: "#F87171" + green: "#4ADE80" + yellow: "#FBBF24" + blue: "#00E5FF" + magenta: "#B794F6" + cyan: "#22D3EE" + white: "#B8D4E3" + brightBlack: "#3D6680" + brightRed: "#FCA5A5" + brightGreen: "#86EFAC" + brightYellow: "#FDE047" + brightBlue: "#67E8F9" + brightMagenta: "#D8B4FE" + brightCyan: "#A5F3FC" + brightWhite: "#E0F2FE" +meta: + mode: "dark" + accent: "teal" + hue: 218 + contrast: + fg: 77.2 + black: 0 + red: 48.5 + green: 70.8 + yellow: 73.1 + blue: 78.4 + magenta: 53.3 + cyan: 69 + white: 77.2 + brightBlack: 20.6 + brightRed: 65.9 + brightGreen: 83.5 + brightYellow: 87.5 + brightBlue: 81.6 + brightMagenta: 69.7 + brightCyan: 91.1 + brightWhite: 96.9 diff --git a/themes/aether-oceanic.yaml b/themes/aether-oceanic.yaml new file mode 100644 index 00000000..ab333243 --- /dev/null +++ b/themes/aether-oceanic.yaml @@ -0,0 +1,49 @@ +name: "Aether Oceanic" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#041518" + fg: "#B8CFD2" + black: "#2E4A4D" + red: "#E06C75" + green: "#5CE6A6" + yellow: "#D4A76A" + blue: "#52C7E7" + magenta: "#E17B9D" + cyan: "#52E5E7" + white: "#B8CFD2" + brightBlack: "#426669" + brightRed: "#EC8087" + brightGreen: "#73EBB5" + brightYellow: "#DBB67F" + brightBlue: "#6BD1EB" + brightMagenta: "#E891AD" + brightCyan: "#6DEAEB" + brightWhite: "#CFDFE2" +meta: + mode: "dark" + accent: "teal" + hue: 210 + contrast: + fg: 74.2 + black: 9.7 + red: 42.4 + green: 76.5 + yellow: 58.2 + blue: 64.1 + magenta: 47.7 + cyan: 78.2 + white: 74.2 + brightBlack: 19.9 + brightRed: 50.4 + brightGreen: 80.6 + brightYellow: 65.5 + brightBlue: 70.1 + brightMagenta: 56 + brightCyan: 82 + brightWhite: 84.7 diff --git a/themes/aether-quantum.yaml b/themes/aether-quantum.yaml new file mode 100644 index 00000000..9c76c0bd --- /dev/null +++ b/themes/aether-quantum.yaml @@ -0,0 +1,49 @@ +name: "Aether Quantum" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#0D0F14" + fg: "#E3E8F0" + black: "#161922" + red: "#FF5252" + green: "#76FF03" + yellow: "#FFEA00" + blue: "#00E5FF" + magenta: "#E91E63" + cyan: "#00ACC1" + white: "#E3E8F0" + brightBlack: "#3F455A" + brightRed: "#FF6E6E" + brightGreen: "#9CFF57" + brightYellow: "#FFF176" + brightBlue: "#40EBFF" + brightMagenta: "#FF4081" + brightCyan: "#84FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 268 + contrast: + fg: 92.3 + black: 0 + red: 43.5 + green: 88.8 + yellow: 92.4 + blue: 78.7 + magenta: 33.3 + cyan: 49.2 + white: 92.3 + brightBlack: 10 + brightRed: 49.5 + brightGreen: 91.7 + brightYellow: 96.5 + brightBlue: 82.3 + brightMagenta: 42.1 + brightCyan: 95.2 + brightWhite: 107.5 diff --git a/themes/aether-reef.yaml b/themes/aether-reef.yaml new file mode 100644 index 00000000..d2499af0 --- /dev/null +++ b/themes/aether-reef.yaml @@ -0,0 +1,49 @@ +name: "Aether Reef" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#041619" + fg: "#AFC8CC" + black: "#354F54" + red: "#E86A44" + green: "#4AEAAA" + yellow: "#E6BA85" + blue: "#4CB0EA" + magenta: "#E27EA0" + cyan: "#4BD9EA" + white: "#AFC8CC" + brightBlack: "#4A6F75" + brightRed: "#EB7C5A" + brightGreen: "#63ECB7" + brightYellow: "#E99844" + brightBlue: "#63BAEC" + brightMagenta: "#E89CB8" + brightCyan: "#63DEEC" + brightWhite: "#BED8DB" +meta: + mode: "dark" + accent: "orange" + hue: 209 + contrast: + fg: 69.8 + black: 11.6 + red: 42.5 + green: 77.9 + yellow: 68.8 + blue: 54.1 + magenta: 48.8 + cyan: 72.3 + white: 69.8 + brightBlack: 23.6 + brightRed: 48 + brightGreen: 80.3 + brightYellow: 55.8 + brightBlue: 59.4 + brightMagenta: 59.9 + brightCyan: 75.7 + brightWhite: 79.2 diff --git a/themes/aether-stellar.yaml b/themes/aether-stellar.yaml new file mode 100644 index 00000000..ac3e73c6 --- /dev/null +++ b/themes/aether-stellar.yaml @@ -0,0 +1,49 @@ +name: "Aether Stellar" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#10141A" + fg: "#D4E0F0" + black: "#20252E" + red: "#FF6666" + green: "#66FFB3" + yellow: "#FFD700" + blue: "#66D9FF" + magenta: "#FF66B3" + cyan: "#66B3FF" + white: "#D4E0F0" + brightBlack: "#505A70" + brightRed: "#FF8C8C" + brightGreen: "#8CFFC6" + brightYellow: "#FFEB3B" + brightBlue: "#8CE3FF" + brightMagenta: "#FF8CC6" + brightCyan: "#8CC6FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 258 + contrast: + fg: 86.4 + black: 0 + red: 47.2 + green: 90.1 + yellow: 83.5 + blue: 74.6 + magenta: 49.7 + cyan: 57.9 + white: 86.4 + brightBlack: 17.3 + brightRed: 57.7 + brightGreen: 92.8 + brightYellow: 92.6 + brightBlue: 81.6 + brightMagenta: 59.9 + brightCyan: 68.5 + brightWhite: 107.2 diff --git a/themes/aether-tempest.yaml b/themes/aether-tempest.yaml new file mode 100644 index 00000000..94d79a86 --- /dev/null +++ b/themes/aether-tempest.yaml @@ -0,0 +1,49 @@ +name: "Aether Tempest" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#0A1929" + fg: "#D6E7FF" + black: "#0A1929" + red: "#FF6B6B" + green: "#26D9A6" + yellow: "#FFA726" + blue: "#2979FF" + magenta: "#BA68C8" + cyan: "#4DD0E1" + white: "#D6E7FF" + brightBlack: "#3665A4" + brightRed: "#FF8787" + brightGreen: "#69F0AE" + brightYellow: "#FFB74D" + brightBlue: "#66C3FF" + brightMagenta: "#CE93D8" + brightCyan: "#84FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 251 + contrast: + fg: 90.1 + black: 0 + red: 47.9 + green: 68.1 + yellow: 64.3 + blue: 34 + magenta: 37.7 + cyan: 67.2 + white: 90.1 + brightBlack: 21.3 + brightRed: 55.6 + brightGreen: 81.8 + brightYellow: 70.4 + brightBlue: 64.2 + brightMagenta: 53.9 + brightCyan: 94.3 + brightWhite: 106.7 diff --git a/themes/aether-tidal.yaml b/themes/aether-tidal.yaml new file mode 100644 index 00000000..b6f69f27 --- /dev/null +++ b/themes/aether-tidal.yaml @@ -0,0 +1,49 @@ +name: "Aether Tidal" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#051419" + fg: "#C2D4D7" + black: "#304B4F" + red: "#E67681" + green: "#6CE6A1" + yellow: "#E0A568" + blue: "#5ECCE3" + magenta: "#EE789E" + cyan: "#63DEE7" + white: "#C2D4D7" + brightBlack: "#446669" + brightRed: "#ED8A94" + brightGreen: "#82EBAF" + brightYellow: "#E5B47D" + brightBlue: "#72D6EC" + brightMagenta: "#F28DAE" + brightCyan: "#78E4EC" + brightWhite: "#D6E2E5" +meta: + mode: "dark" + accent: "red" + hue: 221 + contrast: + fg: 77.8 + black: 10.2 + red: 46.5 + green: 77.1 + yellow: 59.4 + blue: 66.8 + magenta: 49.5 + cyan: 75.6 + white: 77.8 + brightBlack: 20.1 + brightRed: 54 + brightGreen: 81.3 + brightYellow: 66.3 + brightBlue: 72.9 + brightMagenta: 56.7 + brightCyan: 79.8 + brightWhite: 87.1 diff --git a/themes/aether-trench-contrast.yaml b/themes/aether-trench-contrast.yaml new file mode 100644 index 00000000..e412e46a --- /dev/null +++ b/themes/aether-trench-contrast.yaml @@ -0,0 +1,49 @@ +name: "Aether Trench Contrast" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#000000" + fg: "#D0E0E3" + black: "#405060" + red: "#FF6666" + green: "#00FF88" + yellow: "#FFD700" + blue: "#00BBFF" + magenta: "#FF88BB" + cyan: "#00DDFF" + white: "#D0E0E3" + brightBlack: "#607080" + brightRed: "#FF8888" + brightGreen: "#66FFAA" + brightYellow: "#FFCC00" + brightBlue: "#66CCFF" + brightMagenta: "#FFAACC" + brightCyan: "#66EEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 86 + black: 13.6 + red: 47.9 + green: 87.8 + yellow: 84.3 + blue: 59.7 + magenta: 59 + cyan: 75.2 + white: 86 + brightBlack: 26.6 + brightRed: 57.2 + brightGreen: 90.5 + brightYellow: 79.6 + brightBlue: 69.4 + brightMagenta: 70.4 + brightCyan: 85.4 + brightWhite: 107.9 diff --git a/themes/aether-twilight.yaml b/themes/aether-twilight.yaml new file mode 100644 index 00000000..929c9d1a --- /dev/null +++ b/themes/aether-twilight.yaml @@ -0,0 +1,49 @@ +name: "Aether Twilight" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#CBA6F7" + cyan: "#94E2D5" + white: "#CDD6F4" + brightBlack: "#45475A" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#CBA6F7" + brightCyan: "#94E2D5" + brightWhite: "#CDD6F4" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 80 + black: 9.3 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 60.8 + cyan: 78.2 + white: 80 + brightBlack: 9.3 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 88.4 + brightBlue: 59.1 + brightMagenta: 60.8 + brightCyan: 78.2 + brightWhite: 80 diff --git a/themes/aether-void.yaml b/themes/aether-void.yaml new file mode 100644 index 00000000..5a9d2907 --- /dev/null +++ b/themes/aether-void.yaml @@ -0,0 +1,49 @@ +name: "Aether Void" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#07090F" + fg: "#C5CDD9" + black: "#07090F" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#70C0E8" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#C5CDD9" + brightBlack: "#2D3548" + brightRed: "#F07178" + brightGreen: "#B3D39C" + brightYellow: "#F0C674" + brightBlue: "#8CC4FF" + brightMagenta: "#E2A6FF" + brightCyan: "#6FC3DF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 268 + contrast: + fg: 75.7 + black: 0 + red: 43 + green: 63.2 + yellow: 71.5 + blue: 63.2 + magenta: 46 + cyan: 55.5 + white: 75.7 + brightBlack: 0 + brightRed: 47.5 + brightGreen: 74 + brightYellow: 75.5 + brightBlue: 68.2 + brightMagenta: 66.7 + brightCyan: 63.9 + brightWhite: 107.8 diff --git a/themes/aether-zen.yaml b/themes/aether-zen.yaml new file mode 100644 index 00000000..af06cc69 --- /dev/null +++ b/themes/aether-zen.yaml @@ -0,0 +1,49 @@ +name: "Aether Zen" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" +colors: + bg: "#FAFAFA" + fg: "#383A42" + black: "#383A42" + red: "#E45649" + green: "#50A14F" + yellow: "#C18401" + blue: "#4078F2" + magenta: "#A626A4" + cyan: "#0997B3" + white: "#FAFAFA" + brightBlack: "#383A42" + brightRed: "#E45649" + brightGreen: "#50A14F" + brightYellow: "#C18401" + brightBlue: "#4078F2" + brightMagenta: "#A626A4" + brightCyan: "#0997B3" + brightWhite: "#FAFAFA" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 93.2 + black: 93.2 + red: 60.4 + green: 56 + yellow: 55.8 + blue: 64.3 + magenta: 76.2 + cyan: 58.5 + white: 0 + brightBlack: 93.2 + brightRed: 60.4 + brightGreen: 56 + brightYellow: 55.8 + brightBlue: 64.3 + brightMagenta: 76.2 + brightCyan: 58.5 + brightWhite: 0 diff --git a/themes/aether.yaml b/themes/aether.yaml new file mode 100644 index 00000000..947cf087 --- /dev/null +++ b/themes/aether.yaml @@ -0,0 +1,49 @@ +name: "aether" +source: + marketplace_id: "Clicxl.aether-theme-pallete-picker" + version: "0.0.1" + installs: 67 + author: "Hrishikesh H Puliga" + repo: "https://github.com/Clicxl/vscode-aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Clicxl.aether-theme-pallete-picker" +colors: + bg: "#15151F" + fg: "#FFFFFF" + black: "#15151F" + red: "#FFFFFF" + green: "#15151F" + yellow: "#C9635F" + blue: "#FED539" + magenta: "#FB9F24" + cyan: "#959BC0" + white: "#FFFFFF" + brightBlack: "#A7B2CD" + brightRed: "#EEBBC1" + brightGreen: "#828298" + brightYellow: "#E3A3A1" + brightBlue: "#FFE994" + brightMagenta: "#FFC77C" + brightCyan: "#CED1E3" + brightWhite: "#E8D9E8" +meta: + mode: "dark" + accent: "green" + hue: 284 + contrast: + fg: 107 + black: 0 + red: 107 + green: 0 + yellow: 35.1 + blue: 82.5 + magenta: 61.1 + cyan: 48.3 + white: 107 + brightBlack: 59.7 + brightRed: 72.3 + brightGreen: 35.7 + brightYellow: 60.4 + brightBlue: 92.9 + brightMagenta: 77.7 + brightCyan: 78.2 + brightWhite: 85.4 diff --git a/themes/aetherglow.yaml b/themes/aetherglow.yaml new file mode 100644 index 00000000..6f5644dd --- /dev/null +++ b/themes/aetherglow.yaml @@ -0,0 +1,49 @@ +name: "Aetherglow" +source: + marketplace_id: "WebCraftID.aetherglow" + version: "0.0.2" + installs: 101 + author: "WebCraftID" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=WebCraftID.aetherglow" +colors: + bg: "#000B1A" + fg: "#00FFF7" + black: "#1FFFEC" + red: "#D70000" + green: "#007700" + yellow: "#FFBF00" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "green" + hue: 248 + contrast: + fg: 91.5 + black: 91.1 + red: 27.5 + green: 23.4 + yellow: 74.1 + blue: 37.5 + magenta: 31.2 + cyan: 43.2 + white: 92.7 + brightBlack: 24.7 + brightRed: 30.4 + brightGreen: 86.3 + brightYellow: 102.5 + brightBlue: 42.7 + brightMagenta: 31.2 + brightCyan: 49.7 + brightWhite: 101.9 diff --git a/themes/afternoon-delight-subtle.yaml b/themes/afternoon-delight-subtle.yaml new file mode 100644 index 00000000..b8c599ad --- /dev/null +++ b/themes/afternoon-delight-subtle.yaml @@ -0,0 +1,49 @@ +name: "Afternoon Delight Subtle" +source: + marketplace_id: "magnush.afternoon-delight" + version: "2.0.2" + installs: 349 + author: "Magnus Hvidtfeldt" + repo: "https://github.com/mch-sg/afternoon-delight" + url: "https://marketplace.visualstudio.com/items?itemName=magnush.afternoon-delight" +colors: + bg: "#0D0D0D" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#FFB17A" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#DB889A" + cyan: "#5EAAB5" + white: "#FFFFFF" + brightBlack: "#393A34" + brightRed: "#CB7676" + brightGreen: "#FFB17A" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#DB889A" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 82 + black: 0 + red: 41.5 + green: 69.9 + yellow: 76.3 + blue: 42.1 + magenta: 50.7 + cyan: 50 + white: 107.6 + brightBlack: 0 + brightRed: 41.5 + brightGreen: 69.9 + brightYellow: 76.3 + brightBlue: 42.1 + brightMagenta: 50.7 + brightCyan: 50 + brightWhite: 107.6 diff --git a/themes/afterpurple.yaml b/themes/afterpurple.yaml new file mode 100644 index 00000000..a08453a6 --- /dev/null +++ b/themes/afterpurple.yaml @@ -0,0 +1,49 @@ +name: "AfterPurple" +source: + marketplace_id: "lukearch.after-purple" + version: "0.0.1" + installs: 1 + author: "lukearch" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=lukearch.after-purple" +colors: + bg: "#221F26" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#469DF1" + magenta: "#BC3FBC" + cyan: "#39CDE2" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#74BCFF" + brightMagenta: "#D670D6" + brightCyan: "#74F2FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 305 + contrast: + fg: 73.5 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 45.3 + magenta: 28.6 + cyan: 64.4 + white: 88.9 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 61.1 + brightMagenta: 44.2 + brightCyan: 85.9 + brightWhite: 88.9 diff --git a/themes/agathist-dark.yaml b/themes/agathist-dark.yaml new file mode 100644 index 00000000..3e422a25 --- /dev/null +++ b/themes/agathist-dark.yaml @@ -0,0 +1,49 @@ +name: "Agathist Dark" +source: + marketplace_id: "agathist.agathist-vscode-themes" + version: "0.1.3" + installs: 939 + author: "Agathist" + repo: "https://github.com/agathist/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=agathist.agathist-vscode-themes" +colors: + bg: "#0F172A" + fg: "#E2E8F0" + black: "#0F172A" + red: "#F43F5E" + green: "#34D399" + yellow: "#FB923C" + blue: "#FDA4AF" + magenta: "#FB7185" + cyan: "#22D3EE" + white: "#C4CAD4" + brightBlack: "#2D3546" + brightRed: "#CBD5E1" + brightGreen: "#22D3EE" + brightYellow: "#FB923C" + brightBlue: "#FDA4AF" + brightMagenta: "#FB7185" + brightCyan: "#22D3EE" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 91.4 + black: 0 + red: 37.7 + green: 65.1 + yellow: 56.8 + blue: 65.6 + magenta: 49.2 + cyan: 68.5 + white: 73.1 + brightBlack: 0 + brightRed: 79.3 + brightGreen: 68.5 + brightYellow: 56.8 + brightBlue: 65.6 + brightMagenta: 49.2 + brightCyan: 68.5 + brightWhite: 91.4 diff --git a/themes/agen-theme.yaml b/themes/agen-theme.yaml new file mode 100644 index 00000000..44b51691 --- /dev/null +++ b/themes/agen-theme.yaml @@ -0,0 +1,49 @@ +name: "aGen Theme" +source: + marketplace_id: "maxxborer.agen-theme" + version: "2.0.1" + installs: 638 + author: "Maxx Borer" + repo: "https://github.com/maxxborer/agen-theme" + url: "https://marketplace.visualstudio.com/items?itemName=maxxborer.agen-theme" +colors: + bg: "#161619" + fg: "#EFEEEE" + black: "#000000" + red: "#E63016" + green: "#12EE43" + yellow: "#E8E41E" + blue: "#0067FD" + magenta: "#F12C85" + cyan: "#3FF3FF" + white: "#F8EEE6" + brightBlack: "#565A74" + brightRed: "#FF4D33" + brightGreen: "#00FF55" + brightYellow: "#FFF233" + brightBlue: "#1854FD" + brightMagenta: "#FF0062" + brightCyan: "#33F4FF" + brightWhite: "#FFF8F8" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 96 + black: 0 + red: 32.2 + green: 76.8 + yellow: 85.7 + blue: 28.4 + magenta: 36.4 + cyan: 85.7 + white: 96.9 + brightBlack: 17.7 + brightRed: 41.8 + brightGreen: 86 + brightYellow: 95.6 + brightBlue: 23.8 + brightMagenta: 37.5 + brightCyan: 85.9 + brightWhite: 103.3 diff --git a/themes/ahoy-theme.yaml b/themes/ahoy-theme.yaml new file mode 100644 index 00000000..3d36effa --- /dev/null +++ b/themes/ahoy-theme.yaml @@ -0,0 +1,49 @@ +name: "Ahoy theme" +source: + marketplace_id: "alexNeto.ahoy-theme" + version: "0.0.4" + installs: 872 + author: "alexNeto" + repo: "https://github.com/alexNeto/ahoy-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=alexNeto.ahoy-theme" +colors: + bg: "#1D1C1A" + fg: "#ECECEC" + black: "#414141" + red: "#FF7F7F" + green: "#A7E18C" + yellow: "#FFD166" + blue: "#81BECB" + magenta: "#B497FF" + cyan: "#8AE1FC" + white: "#ECECEC" + brightBlack: "#414141" + brightRed: "#FFC1C1" + brightGreen: "#C1E0A2" + brightYellow: "#FFFF93" + brightBlue: "#99C2CA" + brightMagenta: "#CBB9FF" + brightCyan: "#A9FFFF" + brightWhite: "#ECECEC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 93.9 + black: 0 + red: 52.8 + green: 77.4 + yellow: 80.8 + blue: 60.4 + magenta: 53.6 + cyan: 79.4 + white: 93.9 + brightBlack: 0 + brightRed: 76.7 + brightGreen: 80.2 + brightYellow: 102.5 + brightBlue: 64.1 + brightMagenta: 68.9 + brightCyan: 96.6 + brightWhite: 93.9 diff --git a/themes/ahroun.yaml b/themes/ahroun.yaml new file mode 100644 index 00000000..69e0753e --- /dev/null +++ b/themes/ahroun.yaml @@ -0,0 +1,49 @@ +name: "ahroun" +source: + marketplace_id: "DiegoBrocanelli.ahroun-theme" + version: "0.0.5" + installs: 122 + author: "Diego Brocanelli" + repo: "https://github.com/Diego-Brocanelli/ahroun-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DiegoBrocanelli.ahroun-theme" +colors: + bg: "#1A1A1A" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 101.6 + black: 0 + red: 43.1 + green: 84.5 + yellow: 98.2 + blue: 53.3 + magenta: 54.2 + cyan: 83.6 + white: 101.6 + brightBlack: 27.7 + brightRed: 48.5 + brightGreen: 88.7 + brightYellow: 103.2 + brightBlue: 65.8 + brightMagenta: 62.3 + brightCyan: 96.4 + brightWhite: 106.5 diff --git a/themes/aka-kuro-light.yaml b/themes/aka-kuro-light.yaml new file mode 100644 index 00000000..35a284e0 --- /dev/null +++ b/themes/aka-kuro-light.yaml @@ -0,0 +1,49 @@ +name: "Aka Kuro Light" +source: + marketplace_id: "NoaHeutz.akakuro-theme" + version: "7.7.7" + installs: 915 + author: "Noa Heutz" + repo: "https://github.com/Nah-Nova/akakuro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NoaHeutz.akakuro-theme" +colors: + bg: "#FCFCFC" + fg: "#29343D" + black: "#29343D" + red: "#F8961E" + green: "#90BE6D" + yellow: "#F3722C" + blue: "#577590" + magenta: "#F9C74F" + cyan: "#43AA8B" + white: "#555555" + brightBlack: "#394956" + brightRed: "#F8961E" + brightGreen: "#90BE6D" + brightYellow: "#F3722C" + brightBlue: "#577590" + brightMagenta: "#F9C74F" + brightCyan: "#43AA8B" + brightWhite: "#ABABAB" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 97 + black: 97 + red: 41.9 + green: 40.3 + yellow: 52.8 + blue: 71.6 + magenta: 24.3 + cyan: 52.6 + white: 84.1 + brightBlack: 89.6 + brightRed: 41.9 + brightGreen: 40.3 + brightYellow: 52.8 + brightBlue: 71.6 + brightMagenta: 24.3 + brightCyan: 52.6 + brightWhite: 43.5 diff --git a/themes/akagami-dark.yaml b/themes/akagami-dark.yaml new file mode 100644 index 00000000..709950d7 --- /dev/null +++ b/themes/akagami-dark.yaml @@ -0,0 +1,49 @@ +name: "Akagami Dark" +source: + marketplace_id: "nicholasXue.akagami-theme" + version: "0.0.2" + installs: 515 + author: "nicholasXue" + repo: "https://github.com/nicholasxjy/akagami-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nicholasXue.akagami-theme" +colors: + bg: "#121212" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#DB889A" + cyan: "#5EAAB5" + white: "#FFFFFF" + brightBlack: "#393A34" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#DB889A" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 81.7 + black: 0 + red: 41.2 + green: 37.1 + yellow: 76 + blue: 41.8 + magenta: 50.3 + cyan: 49.7 + white: 107.3 + brightBlack: 0 + brightRed: 41.2 + brightGreen: 37.1 + brightYellow: 76 + brightBlue: 41.8 + brightMagenta: 50.3 + brightCyan: 49.7 + brightWhite: 107.3 diff --git a/themes/akagami-light.yaml b/themes/akagami-light.yaml new file mode 100644 index 00000000..80425854 --- /dev/null +++ b/themes/akagami-light.yaml @@ -0,0 +1,49 @@ +name: "Akagami Light" +source: + marketplace_id: "nicholasXue.akagami-theme" + version: "0.0.2" + installs: 515 + author: "nicholasXue" + repo: "https://github.com/nicholasxjy/akagami-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nicholasXue.akagami-theme" +colors: + bg: "#FFFFFF" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#1C6B48" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#B05A78" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#121212" + brightRed: "#AB5959" + brightGreen: "#1C6B48" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#B05A78" + brightCyan: "#2993A3" + brightWhite: "#DBD7CA" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 96.5 + black: 105.3 + red: 73.5 + green: 81.8 + yellow: 48.3 + blue: 78.2 + magenta: 71.5 + cyan: 63.5 + white: 21.1 + brightBlack: 105.3 + brightRed: 73.5 + brightGreen: 81.8 + brightYellow: 48.3 + brightBlue: 78.2 + brightMagenta: 71.5 + brightCyan: 63.5 + brightWhite: 21.1 diff --git a/themes/akari-dawn.yaml b/themes/akari-dawn.yaml new file mode 100644 index 00000000..1cf91c35 --- /dev/null +++ b/themes/akari-dawn.yaml @@ -0,0 +1,49 @@ +name: "Akari Dawn" +source: + marketplace_id: "cappyzawa.akari-theme" + version: "1.18.0" + installs: 58 + author: "Shu Kutsuzawa" + repo: "https://github.com/cappyzawa/akari-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cappyzawa.akari-theme" +colors: + bg: "#E4DED6" + fg: "#1A1816" + black: "#1A1816" + red: "#6A2828" + green: "#3A5830" + yellow: "#B07840" + blue: "#304050" + magenta: "#806080" + cyan: "#305858" + white: "#E4DED6" + brightBlack: "#514B45" + brightRed: "#3E1717" + brightGreen: "#20301A" + brightYellow: "#78522C" + brightBlue: "#131A20" + brightMagenta: "#543F54" + brightCyan: "#152727" + brightWhite: "#D0C5B7" +meta: + mode: "light" + accent: "yellow" + hue: 75 + contrast: + fg: 85.6 + black: 85.6 + red: 75.5 + green: 68.8 + yellow: 45.9 + blue: 75.7 + magenta: 57.8 + cyan: 68.3 + white: 0 + brightBlack: 70.6 + brightRed: 83.4 + brightGreen: 81.7 + brightYellow: 64.8 + brightBlue: 85.4 + brightMagenta: 72.9 + brightCyan: 83.5 + brightWhite: 11.4 diff --git a/themes/akari-night.yaml b/themes/akari-night.yaml new file mode 100644 index 00000000..c5c1f72c --- /dev/null +++ b/themes/akari-night.yaml @@ -0,0 +1,49 @@ +name: "Akari Night" +source: + marketplace_id: "cappyzawa.akari-theme" + version: "1.18.0" + installs: 58 + author: "Shu Kutsuzawa" + repo: "https://github.com/cappyzawa/akari-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cappyzawa.akari-theme" +colors: + bg: "#25231F" + fg: "#E6DED3" + black: "#1E1C19" + red: "#D25046" + green: "#7FAF6A" + yellow: "#D4A05A" + blue: "#7A8FA2" + magenta: "#8E7BA0" + cyan: "#6F8F8A" + white: "#E6DED3" + brightBlack: "#716A5F" + brightRed: "#DE7F77" + brightGreen: "#A1C492" + brightYellow: "#E4C397" + brightBlue: "#A7B5C1" + brightMagenta: "#B4A7C0" + brightCyan: "#9AB1AD" + brightWhite: "#EFEAE3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 84.6 + black: 0 + red: 30.8 + green: 49.5 + yellow: 53.4 + blue: 38.2 + magenta: 33.3 + cyan: 36.3 + white: 84.6 + brightBlack: 22.5 + brightRed: 45.1 + brightGreen: 62.6 + brightYellow: 70.7 + brightBlue: 58.6 + brightMagenta: 54.6 + brightCyan: 54.8 + brightWhite: 92 diff --git a/themes/akihabara.yaml b/themes/akihabara.yaml new file mode 100644 index 00000000..01b0c389 --- /dev/null +++ b/themes/akihabara.yaml @@ -0,0 +1,49 @@ +name: "Akihabara" +source: + marketplace_id: "justin-lavi.akihabara" + version: "4.8.8" + installs: 1295 + author: "Justin Lavi" + repo: "https://github.com/justinlavi/Akihabara" + url: "https://marketplace.visualstudio.com/items?itemName=justin-lavi.akihabara" +colors: + bg: "#171322" + fg: "#C7BFDB" + black: "#171322" + red: "#C13838" + green: "#14B871" + yellow: "#585785" + blue: "#04C4D9" + magenta: "#A8547A" + cyan: "#89C4FF" + white: "#C7BFDB" + brightBlack: "#43365F" + brightRed: "#E61313" + brightGreen: "#00CC74" + brightYellow: "#3836A6" + brightBlue: "#00C7DD" + brightMagenta: "#CE2E76" + brightCyan: "#89C4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 296 + contrast: + fg: 69.5 + black: 0 + red: 25.1 + green: 51.1 + yellow: 17.9 + blue: 60.5 + magenta: 26.7 + cyan: 67.2 + white: 69.5 + brightBlack: 0 + brightRed: 30.7 + brightGreen: 60.5 + brightYellow: 10.5 + brightBlue: 62.1 + brightMagenta: 28.3 + brightCyan: 67.2 + brightWhite: 107 diff --git a/themes/ako-theme.yaml b/themes/ako-theme.yaml new file mode 100644 index 00000000..67cb5edf --- /dev/null +++ b/themes/ako-theme.yaml @@ -0,0 +1,49 @@ +name: "Ako Theme" +source: + marketplace_id: "wxn0brP.wxn0brp-ako-theme" + version: "0.0.1" + installs: 1 + author: "wxn0brP" + repo: "https://github.com/wxn0brP/ako-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wxn0brP.wxn0brp-ako-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#C51E14" + green: "#1DC121" + yellow: "#C7C329" + blue: "#0A2FC4" + magenta: "#C839C5" + cyan: "#20C5C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#FD6F6B" + brightGreen: "#67F86F" + brightYellow: "#FFFA72" + brightBlue: "#6A76FB" + brightMagenta: "#FD7CFC" + brightCyan: "#68FDFE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 24.3 + green: 55.2 + yellow: 67.5 + blue: 11.9 + magenta: 32.9 + cyan: 61 + white: 72.7 + brightBlack: 23.9 + brightRed: 49.6 + brightGreen: 85.5 + brightYellow: 101 + brightBlue: 36.9 + brightMagenta: 59 + brightCyan: 93 + brightWhite: 107.9 diff --git a/themes/aksin.yaml b/themes/aksin.yaml new file mode 100644 index 00000000..7dc8246a --- /dev/null +++ b/themes/aksin.yaml @@ -0,0 +1,49 @@ +name: "Aksin" +source: + marketplace_id: "Akshayindraganti.Indraganti-Akshay" + version: "1.0.0" + installs: 89 + author: "Akshayindraganti" + repo: "https://github.com/AkshayIndraganti/Aksin-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Akshayindraganti.Indraganti-Akshay" +colors: + bg: "#212121" + fg: "#909090" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#D3D3D3" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#D3D3D3" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 40.3 + black: 0 + red: 42.4 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 77.6 + brightBlack: 9.7 + brightRed: 42.4 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 77.6 diff --git a/themes/akumanomi-theme.yaml b/themes/akumanomi-theme.yaml new file mode 100644 index 00000000..e4c16953 --- /dev/null +++ b/themes/akumanomi-theme.yaml @@ -0,0 +1,49 @@ +name: "Akumanomi Theme" +source: + marketplace_id: "IngridLiana.akumanomi-theme" + version: "0.1.4" + installs: 2721 + author: "Ingrid Liana" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=IngridLiana.akumanomi-theme" +colors: + bg: "#000000" + fg: "#D7D7D7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 82.3 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/akurdor.yaml b/themes/akurdor.yaml new file mode 100644 index 00000000..fc020908 --- /dev/null +++ b/themes/akurdor.yaml @@ -0,0 +1,49 @@ +name: "akurdor" +source: + marketplace_id: "rashidfarhad.kurdor" + version: "1.4.1" + installs: 27 + author: "KurdorTheme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=rashidfarhad.kurdor" +colors: + bg: "#10141C" + fg: "#BFBDB6" + black: "#1B1F29" + red: "#F06B73" + green: "#70BF56" + yellow: "#FDB04C" + blue: "#4FBFFF" + magenta: "#D0A1FF" + cyan: "#93E2C8" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 66.1 + black: 0 + red: 45.3 + green: 57 + yellow: 67.9 + blue: 61.9 + magenta: 61.7 + cyan: 78.9 + white: 72 + brightBlack: 23.2 + brightRed: 46.9 + brightGreen: 73.6 + brightYellow: 69.8 + brightBlue: 63.6 + brightMagenta: 63.7 + brightCyan: 81.1 + brightWhite: 107.1 diff --git a/themes/alabaster-dark.yaml b/themes/alabaster-dark.yaml new file mode 100644 index 00000000..e8f6230d --- /dev/null +++ b/themes/alabaster-dark.yaml @@ -0,0 +1,49 @@ +name: "Alabaster Dark" +source: + marketplace_id: "lao-liang.vscode-theme-alabaster-dark" + version: "0.0.2" + installs: 207 + author: "LaoLiang" + repo: "https://github.com/liangpengyv/vscode-theme-alabaster-dark" + url: "https://marketplace.visualstudio.com/items?itemName=lao-liang.vscode-theme-alabaster-dark" +colors: + bg: "#21252B" + fg: "#ABB2BF" + black: "#21252B" + red: "#E06C75" + green: "#98C379" + yellow: "#D19A66" + blue: "#61AFEF" + magenta: "#B57EDC" + cyan: "#56B6C2" + white: "#A9B2C3" + brightBlack: "#5F6672" + brightRed: "#E34234" + brightGreen: "#66FF00" + brightYellow: "#E5C07B" + brightBlue: "#007FFF" + brightMagenta: "#8B00FF" + brightCyan: "#08E8DE" + brightWhite: "#D4D7D9" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + contrast: + fg: 57.5 + black: 0 + red: 40.2 + green: 60.4 + yellow: 50.8 + blue: 52.8 + magenta: 42.3 + cyan: 52.7 + white: 57.5 + brightBlack: 20 + brightRed: 31.8 + brightGreen: 85.5 + brightYellow: 68.7 + brightBlue: 33.9 + brightMagenta: 21.9 + brightCyan: 75.9 + brightWhite: 79.2 diff --git a/themes/alchemist-s-orchid-dark.yaml b/themes/alchemist-s-orchid-dark.yaml new file mode 100644 index 00000000..503a17d9 --- /dev/null +++ b/themes/alchemist-s-orchid-dark.yaml @@ -0,0 +1,49 @@ +name: "Alchemist's Orchid Dark" +source: + marketplace_id: "Rynaro.alchemists-orchid" + version: "0.1.2" + installs: 111 + author: "Rynaro" + repo: "https://github.com/Rynaro/alchemists-orchid" + url: "https://marketplace.visualstudio.com/items?itemName=Rynaro.alchemists-orchid" +colors: + bg: "#2E3440" + fg: "#E5E9F0" + black: "#3B4252" + red: "#E8A4CC" + green: "#A3BE8C" + yellow: "#DFCA9A" + blue: "#81A1C1" + magenta: "#C89BD0" + cyan: "#8FBCBB" + white: "#D8DEE9" + brightBlack: "#4C566A" + brightRed: "#F0C0DD" + brightGreen: "#C3E4A8" + brightYellow: "#EBD9AF" + brightBlue: "#A3C2E8" + brightMagenta: "#DAC0F2" + brightCyan: "#9EECE8" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 87.3 + black: 0 + red: 58.2 + green: 56.6 + yellow: 69.5 + blue: 43.6 + magenta: 50.3 + cyan: 55.5 + white: 80.3 + brightBlack: 10.3 + brightRed: 70.6 + brightGreen: 78 + brightYellow: 78.3 + brightBlue: 62.1 + brightMagenta: 68.4 + brightCyan: 80.7 + brightWhite: 91.2 diff --git a/themes/alchemist-s-orchid-light.yaml b/themes/alchemist-s-orchid-light.yaml new file mode 100644 index 00000000..c13ded3e --- /dev/null +++ b/themes/alchemist-s-orchid-light.yaml @@ -0,0 +1,49 @@ +name: "Alchemist's Orchid Light" +source: + marketplace_id: "Rynaro.alchemists-orchid" + version: "0.1.2" + installs: 111 + author: "Rynaro" + repo: "https://github.com/Rynaro/alchemists-orchid" + url: "https://marketplace.visualstudio.com/items?itemName=Rynaro.alchemists-orchid" +colors: + bg: "#FAFBFC" + fg: "#2E3440" + black: "#2E3440" + red: "#C41585" + green: "#4D7028" + yellow: "#8A6000" + blue: "#2D6299" + magenta: "#8839AA" + cyan: "#1D7A78" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#E31C97" + brightGreen: "#5E8A32" + brightYellow: "#A57800" + brightBlue: "#3A7AB8" + brightMagenta: "#9F47C4" + brightCyan: "#248E8B" + brightWhite: "#FAFBFC" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 95.9 + black: 95.9 + red: 73.2 + green: 76.1 + yellow: 75.2 + blue: 78.7 + magenta: 79.2 + cyan: 72.4 + white: 8.2 + brightBlack: 83.2 + brightRed: 65.3 + brightGreen: 65.3 + brightYellow: 64.3 + brightBlue: 68.6 + brightMagenta: 71.6 + brightCyan: 64 + brightWhite: 0 diff --git a/themes/alchemist-s-orchid-sepia.yaml b/themes/alchemist-s-orchid-sepia.yaml new file mode 100644 index 00000000..06e00bf9 --- /dev/null +++ b/themes/alchemist-s-orchid-sepia.yaml @@ -0,0 +1,49 @@ +name: "Alchemist's Orchid Sepia" +source: + marketplace_id: "Rynaro.alchemists-orchid" + version: "0.1.2" + installs: 111 + author: "Rynaro" + repo: "https://github.com/Rynaro/alchemists-orchid" + url: "https://marketplace.visualstudio.com/items?itemName=Rynaro.alchemists-orchid" +colors: + bg: "#F5F0E6" + fg: "#3B3228" + black: "#3B3228" + red: "#B52080" + green: "#4A6A28" + yellow: "#806000" + blue: "#2E5E8A" + magenta: "#7B3399" + cyan: "#1A6B69" + white: "#E5E0D6" + brightBlack: "#5A5045" + brightRed: "#D42995" + brightGreen: "#5C8432" + brightYellow: "#997300" + brightBlue: "#3972A8" + brightMagenta: "#9440B3" + brightCyan: "#238280" + brightWhite: "#F5F0E6" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 89.8 + black: 89.8 + red: 69.8 + green: 72.1 + yellow: 70.3 + blue: 74.6 + magenta: 76.9 + cyan: 72.2 + white: 0 + brightBlack: 78.6 + brightRed: 61.7 + brightGreen: 61.5 + brightYellow: 61.3 + brightBlue: 66.1 + brightMagenta: 69.5 + brightCyan: 62.8 + brightWhite: 0 diff --git a/themes/alchemy-theme.yaml b/themes/alchemy-theme.yaml new file mode 100644 index 00000000..98dec83a --- /dev/null +++ b/themes/alchemy-theme.yaml @@ -0,0 +1,49 @@ +name: "Alchemy Theme" +source: + marketplace_id: "thgmhz.alchemy" + version: "1.1.0" + installs: 425 + author: "thgmhz" + repo: "https://github.com/thgmhz/alchemy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thgmhz.alchemy" +colors: + bg: "#0F0918" + fg: "#E2E2EA" + black: "#1E0F39" + red: "#FF5B5B" + green: "#70E27A" + yellow: "#40C263" + blue: "#194AB3" + magenta: "#988BC7" + cyan: "#2B243C" + white: "#E9E9E9" + brightBlack: "#626483" + brightRed: "#FF2828" + brightGreen: "#00F769" + brightYellow: "#E0A91D" + brightBlue: "#78D1E1" + brightMagenta: "#231548" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 301 + contrast: + fg: 89.3 + black: 0 + red: 45.3 + green: 74.7 + yellow: 56.8 + blue: 15.2 + magenta: 44 + cyan: 0 + white: 93.3 + brightBlack: 22.9 + brightRed: 38.5 + brightGreen: 82.7 + brightYellow: 60.5 + brightBlue: 70.7 + brightMagenta: 0 + brightCyan: 97.5 + brightWhite: 107.6 diff --git a/themes/aldrico-s-gruvbox.yaml b/themes/aldrico-s-gruvbox.yaml new file mode 100644 index 00000000..237644cb --- /dev/null +++ b/themes/aldrico-s-gruvbox.yaml @@ -0,0 +1,49 @@ +name: "Aldrico's Gruvbox" +source: + marketplace_id: "HeavenAldrico.aldrico-s-gruvbox" + version: "0.2.3" + installs: 4288 + author: "Heaven Aldrico" + repo: "https://github.com/ldriko/gruvbox-in-black" + url: "https://marketplace.visualstudio.com/items?itemName=HeavenAldrico.aldrico-s-gruvbox" +colors: + bg: "#000000" + fg: "#D4BE98" + black: "#32302F" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 69 + black: 0 + red: 44 + green: 59 + yellow: 58.8 + blue: 53.2 + magenta: 49 + cyan: 55.7 + white: 69 + brightBlack: 37.4 + brightRed: 44 + brightGreen: 59 + brightYellow: 58.8 + brightBlue: 53.2 + brightMagenta: 49 + brightCyan: 55.7 + brightWhite: 74.3 diff --git a/themes/aldrico-s.yaml b/themes/aldrico-s.yaml new file mode 100644 index 00000000..768105ae --- /dev/null +++ b/themes/aldrico-s.yaml @@ -0,0 +1,49 @@ +name: "Aldrico's" +source: + marketplace_id: "HeavenAldrico.aldrico-s" + version: "0.4.1" + installs: 756 + author: "Heaven Aldrico" + repo: "https://github.com/ldriko/aldrico-s" + url: "https://marketplace.visualstudio.com/items?itemName=HeavenAldrico.aldrico-s" +colors: + bg: "#000000" + fg: "#BFBDB6" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 66.9 + black: 0 + red: 45.1 + green: 71 + yellow: 67.6 + blue: 61.6 + magenta: 61.6 + cyan: 78.9 + white: 72.7 + brightBlack: 23.9 + brightRed: 47.6 + brightGreen: 74.3 + brightYellow: 70.6 + brightBlue: 64.3 + brightMagenta: 64.4 + brightCyan: 81.9 + brightWhite: 107.9 diff --git a/themes/alec-teal-theme.yaml b/themes/alec-teal-theme.yaml new file mode 100644 index 00000000..24585e6e --- /dev/null +++ b/themes/alec-teal-theme.yaml @@ -0,0 +1,49 @@ +name: "Alec Teal Theme" +source: + marketplace_id: "alecvision.alecvision-themes" + version: "0.0.1" + installs: 264 + author: "AlecVision" + repo: "https://github.com/AlecVision/themes" + url: "https://marketplace.visualstudio.com/items?itemName=alecvision.alecvision-themes" +colors: + bg: "#13222E" + fg: "#ACBECC" + black: "#13222E" + red: "#CA3E5A" + green: "#81A559" + yellow: "#EBB062" + blue: "#4496CD" + magenta: "#B35D8D" + cyan: "#42ABAB" + white: "#96A8B5" + brightBlack: "#293845" + brightRed: "#D8843E" + brightGreen: "#42ABAB" + brightYellow: "#EBB062" + brightBlue: "#4496CD" + brightMagenta: "#B35D8D" + brightCyan: "#42ABAB" + brightWhite: "#ACBECC" +meta: + mode: "dark" + accent: "red" + hue: 244 + contrast: + fg: 63.8 + black: 0 + red: 27 + green: 45.5 + yellow: 63.6 + blue: 40.1 + magenta: 29.9 + cyan: 46.8 + white: 51.5 + brightBlack: 0 + brightRed: 44.8 + brightGreen: 46.8 + brightYellow: 63.6 + brightBlue: 40.1 + brightMagenta: 29.9 + brightCyan: 46.8 + brightWhite: 63.8 diff --git a/themes/alien-blood.yaml b/themes/alien-blood.yaml new file mode 100644 index 00000000..d7dd5823 --- /dev/null +++ b/themes/alien-blood.yaml @@ -0,0 +1,49 @@ +name: "Alien Blood" +source: + marketplace_id: "ThomasBishop.alien-blood" + version: "1.7.3" + installs: 2384 + author: "Thomas Bishop" + repo: "https://github.com/thomasabishop/alien-blood-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ThomasBishop.alien-blood" +colors: + bg: "#0F1610" + fg: "#637D75" + black: "#112616" + red: "#E08009" + green: "#2F7E25" + yellow: "#717F24" + blue: "#2F6A7F" + magenta: "#47587F" + cyan: "#327F77" + white: "#647D75" + brightBlack: "#3C4812" + brightRed: "#E08009" + brightGreen: "#717F24" + brightYellow: "#BDE000" + brightBlue: "#00AAE0" + brightMagenta: "#0058E0" + brightCyan: "#00E0C4" + brightWhite: "#717F24" +meta: + mode: "dark" + accent: "purple" + hue: 149 + contrast: + fg: 30 + black: 0 + red: 46.3 + green: 26.2 + yellow: 30.4 + blue: 21.2 + magenta: 16.8 + cyan: 28.3 + white: 30.1 + brightBlack: 8.9 + brightRed: 46.3 + brightGreen: 30.4 + brightYellow: 78.5 + brightBlue: 49.7 + brightMagenta: 21.9 + brightCyan: 72.9 + brightWhite: 30.4 diff --git a/themes/alien-terminal-nostromo-amber.yaml b/themes/alien-terminal-nostromo-amber.yaml new file mode 100644 index 00000000..a469b7cd --- /dev/null +++ b/themes/alien-terminal-nostromo-amber.yaml @@ -0,0 +1,49 @@ +name: "Alien Terminal Nostromo Amber" +source: + marketplace_id: "ericson-willians.uscss-nostromo-theme" + version: "1.0.0" + installs: 595 + author: "Ericson Willians Rocha Pires" + repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" +colors: + bg: "#000000" + fg: "#FFAA00" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFEE00" + blue: "#FFAA00" + magenta: "#FF66FF" + cyan: "#FFAA66" + white: "#CCCCCC" + brightBlack: "#DD9900" + brightRed: "#FF3333" + brightGreen: "#66FF66" + brightYellow: "#FFFF00" + brightBlue: "#FFEE00" + brightMagenta: "#FF99FF" + brightCyan: "#FFDD99" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 66.5 + black: 0 + red: 37.5 + green: 86.5 + yellow: 94.6 + blue: 66.5 + magenta: 54.8 + cyan: 67.2 + white: 75.7 + brightBlack: 54.5 + brightRed: 39.6 + brightGreen: 89 + brightYellow: 102.7 + brightBlue: 94.6 + brightMagenta: 67.6 + brightCyan: 88.6 + brightWhite: 107.9 diff --git a/themes/alien-terminal-nostromo-green.yaml b/themes/alien-terminal-nostromo-green.yaml new file mode 100644 index 00000000..9ece6335 --- /dev/null +++ b/themes/alien-terminal-nostromo-green.yaml @@ -0,0 +1,49 @@ +name: "Alien Terminal Nostromo Green" +source: + marketplace_id: "ericson-willians.uscss-nostromo-theme" + version: "1.0.0" + installs: 595 + author: "Ericson Willians Rocha Pires" + repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" +colors: + bg: "#000000" + fg: "#00FF00" + black: "#000000" + red: "#FF3333" + green: "#00FF00" + yellow: "#FFCC00" + blue: "#00DD00" + magenta: "#FF66FF" + cyan: "#66FFCC" + white: "#CCCCCC" + brightBlack: "#00AA00" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#FFEE00" + brightBlue: "#66FF66" + brightMagenta: "#FF99FF" + brightCyan: "#99FFDD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 86.5 + black: 0 + red: 39.6 + green: 86.5 + yellow: 79.6 + blue: 68.7 + magenta: 54.8 + cyan: 91.7 + white: 75.7 + brightBlack: 44.5 + brightRed: 47.9 + brightGreen: 89 + brightYellow: 94.6 + brightBlue: 89 + brightMagenta: 67.6 + brightCyan: 95.4 + brightWhite: 107.9 diff --git a/themes/alien-terminal-sevastopol-link.yaml b/themes/alien-terminal-sevastopol-link.yaml new file mode 100644 index 00000000..94937a6e --- /dev/null +++ b/themes/alien-terminal-sevastopol-link.yaml @@ -0,0 +1,49 @@ +name: "Alien Terminal Sevastopol Link" +source: + marketplace_id: "ericson-willians.uscss-nostromo-theme" + version: "1.0.0" + installs: 595 + author: "Ericson Willians Rocha Pires" + repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" +colors: + bg: "#000000" + fg: "#CCFFCC" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#CCFFCC" + magenta: "#FF66FF" + cyan: "#66FFCC" + white: "#FFFFFF" + brightBlack: "#00FF00" + brightRed: "#FF3333" + brightGreen: "#CCFFCC" + brightYellow: "#FFFF99" + brightBlue: "#FFFFFF" + brightMagenta: "#FF99FF" + brightCyan: "#99FFDD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 99.3 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 99.3 + magenta: 54.8 + cyan: 91.7 + white: 107.9 + brightBlack: 86.5 + brightRed: 39.6 + brightGreen: 99.3 + brightYellow: 104.2 + brightBlue: 107.9 + brightMagenta: 67.6 + brightCyan: 95.4 + brightWhite: 107.9 diff --git a/themes/alignment-darker-italic.yaml b/themes/alignment-darker-italic.yaml new file mode 100644 index 00000000..386cdab2 --- /dev/null +++ b/themes/alignment-darker-italic.yaml @@ -0,0 +1,49 @@ +name: "Alignment darker (italic)" +source: + marketplace_id: "natixco.alignment-theme-vsc" + version: "0.0.1" + installs: 117 + author: "natixco" + repo: "https://github.com/natixco/alignment-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=natixco.alignment-theme-vsc" +colors: + bg: "#161622" + fg: "#EADEDA" + black: "#000000" + red: "#EA5D36" + green: "#EADEDA" + yellow: "#EABF38" + blue: "#3C98F5" + magenta: "#D45CFF" + cyan: "#3C98F5" + white: "#EADEDA" + brightBlack: "#000000" + brightRed: "#EA5D36" + brightGreen: "#EADEDA" + brightYellow: "#EABF38" + brightBlue: "#3C98F5" + brightMagenta: "#D45CFF" + brightCyan: "#3C98F5" + brightWhite: "#EADEDA" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 87.1 + black: 0 + red: 39.7 + green: 87.1 + yellow: 70 + blue: 44.5 + magenta: 43.5 + cyan: 44.5 + white: 87.1 + brightBlack: 0 + brightRed: 39.7 + brightGreen: 87.1 + brightYellow: 70 + brightBlue: 44.5 + brightMagenta: 43.5 + brightCyan: 44.5 + brightWhite: 87.1 diff --git a/themes/alignment-italic.yaml b/themes/alignment-italic.yaml new file mode 100644 index 00000000..5ee99e72 --- /dev/null +++ b/themes/alignment-italic.yaml @@ -0,0 +1,49 @@ +name: "Alignment (italic)" +source: + marketplace_id: "natixco.alignment-theme-vsc" + version: "0.0.1" + installs: 117 + author: "natixco" + repo: "https://github.com/natixco/alignment-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=natixco.alignment-theme-vsc" +colors: + bg: "#1E1E29" + fg: "#EADEDA" + black: "#000000" + red: "#EA5D36" + green: "#EADEDA" + yellow: "#EABF38" + blue: "#3C98F5" + magenta: "#D45CFF" + cyan: "#3C98F5" + white: "#EADEDA" + brightBlack: "#000000" + brightRed: "#EA5D36" + brightGreen: "#EADEDA" + brightYellow: "#EABF38" + brightBlue: "#3C98F5" + brightMagenta: "#D45CFF" + brightCyan: "#3C98F5" + brightWhite: "#EADEDA" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 86.1 + black: 0 + red: 38.8 + green: 86.1 + yellow: 69 + blue: 43.5 + magenta: 42.6 + cyan: 43.5 + white: 86.1 + brightBlack: 0 + brightRed: 38.8 + brightGreen: 86.1 + brightYellow: 69 + brightBlue: 43.5 + brightMagenta: 42.6 + brightCyan: 43.5 + brightWhite: 86.1 diff --git a/themes/alive-dark-theme.yaml b/themes/alive-dark-theme.yaml new file mode 100644 index 00000000..941ceeda --- /dev/null +++ b/themes/alive-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "alive-dark-theme" +source: + marketplace_id: "PedroFernandes.alive-dark-theme" + version: "0.0.1" + installs: 157 + author: "Pedro Fernandes" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PedroFernandes.alive-dark-theme" +colors: + bg: "#0A0A0A" + fg: "#FFFFFF" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.7 + black: 7.3 + red: 39.5 + green: 87 + yellow: 92.2 + blue: 38.3 + magenta: 46.1 + cyan: 77 + white: 52.3 + brightBlack: 22.9 + brightRed: 48 + brightGreen: 93.4 + brightYellow: 80.3 + brightBlue: 72.4 + brightMagenta: 67.7 + brightCyan: 90.5 + brightWhite: 73.7 diff --git a/themes/all-black.yaml b/themes/all-black.yaml new file mode 100644 index 00000000..c768fdf8 --- /dev/null +++ b/themes/all-black.yaml @@ -0,0 +1,49 @@ +name: "all-black" +source: + marketplace_id: "xiaobai.all-black" + version: "0.6.4" + installs: 5846 + author: "xiaobai" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xiaobai.all-black" +colors: + bg: "#1E1E1E" + fg: "#F8F8F2" + black: "#333333" + red: "#F92672" + green: "#A6E22E" + yellow: "#E2E22E" + blue: "#819AFF" + magenta: "#AE81FF" + cyan: "#66D9EF" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.1 + black: 0 + red: 36.5 + green: 76.2 + yellow: 83.1 + blue: 49 + magenta: 45.7 + cyan: 72.6 + white: 87.7 + brightBlack: 21.2 + brightRed: 36.5 + brightGreen: 76.2 + brightYellow: 83.1 + brightBlue: 49 + brightMagenta: 45.7 + brightCyan: 72.6 + brightWhite: 101.1 diff --git a/themes/all-blue.yaml b/themes/all-blue.yaml new file mode 100644 index 00000000..ec019f13 --- /dev/null +++ b/themes/all-blue.yaml @@ -0,0 +1,49 @@ +name: "All Blue" +source: + marketplace_id: "njshockey.all-blue" + version: "1.2.0" + installs: 360 + author: "njshockey" + repo: "https://github.com/njshockey/all-blue-theme" + url: "https://marketplace.visualstudio.com/items?itemName=njshockey.all-blue" +colors: + bg: "#002138" + fg: "#63C5DA" + black: "#000000" + red: "#F9968B" + green: "#50C878" + yellow: "#FEF08A" + blue: "#4F86F7" + magenta: "#FC8EAC" + cyan: "#AEC6CF" + white: "#E5E9F0" + brightBlack: "#2E3440" + brightRed: "#FF7566" + brightGreen: "#0BDA51" + brightYellow: "#FFFD37" + brightBlue: "#079BF5" + brightMagenta: "#F77FBE" + brightCyan: "#00CCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 244 + contrast: + fg: 61.8 + black: 0 + red: 58 + green: 58.7 + yellow: 94.4 + blue: 37.8 + magenta: 57.3 + cyan: 67.5 + white: 91.1 + brightBlack: 0 + brightRed: 49.1 + brightGreen: 65.4 + brightYellow: 99.7 + brightBlue: 43.7 + brightMagenta: 52.9 + brightCyan: 65 + brightWhite: 105.7 diff --git a/themes/all-nighter-theme.yaml b/themes/all-nighter-theme.yaml new file mode 100644 index 00000000..f09dd9af --- /dev/null +++ b/themes/all-nighter-theme.yaml @@ -0,0 +1,49 @@ +name: "all-nighter Theme" +source: + marketplace_id: "aaa1.all-nighter-italic" + version: "1.0.1" + installs: 2155 + author: "Martin Enzinger" + repo: "https://github.com/martinenzinger/allnighter" + url: "https://marketplace.visualstudio.com/items?itemName=aaa1.all-nighter-italic" +colors: + bg: "#2C2C2C" + fg: "#BABABA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.9 + black: 0 + red: 23.5 + green: 49.8 + yellow: 82.4 + blue: 24.2 + magenta: 26.5 + cyan: 44.3 + white: 86.8 + brightBlack: 18.8 + brightRed: 35.3 + brightGreen: 60.3 + brightYellow: 92.4 + brightBlue: 36.8 + brightMagenta: 42.1 + brightCyan: 52.2 + brightWhite: 86.8 diff --git a/themes/alligator-light.yaml b/themes/alligator-light.yaml new file mode 100644 index 00000000..b9820f95 --- /dev/null +++ b/themes/alligator-light.yaml @@ -0,0 +1,49 @@ +name: "alligator-light" +source: + marketplace_id: "alligator-vscode-color-theme.alligator" + version: "1.3.2" + installs: 1108 + author: "alligator-vscode-color-theme" + repo: "https://github.com/lianghx-319/Alligator-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=alligator-vscode-color-theme.alligator" +colors: + bg: "#FCFCFC" + fg: "#6C7757" + black: "#403F53" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2AA298" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 71.2 + black: 91.9 + red: 66.9 + green: 64.8 + yellow: 37.6 + blue: 60.7 + magenta: 65.9 + cyan: 56.1 + white: 0 + brightBlack: 91.9 + brightRed: 66.9 + brightGreen: 64.8 + brightYellow: 40.3 + brightBlue: 60.7 + brightMagenta: 65.9 + brightCyan: 56.1 + brightWhite: 0 diff --git a/themes/alligator-solarized-dark.yaml b/themes/alligator-solarized-dark.yaml new file mode 100644 index 00000000..3901c2ee --- /dev/null +++ b/themes/alligator-solarized-dark.yaml @@ -0,0 +1,49 @@ +name: "alligator-solarized-dark" +source: + marketplace_id: "alligator-vscode-color-theme.alligator" + version: "1.3.2" + installs: 1108 + author: "alligator-vscode-color-theme" + repo: "https://github.com/lianghx-319/Alligator-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=alligator-vscode-color-theme.alligator" +colors: + bg: "#073642" + fg: "#7D99A3" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#839496" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#859900" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#839496" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 39.2 + black: 0 + red: 25.5 + green: 37.1 + yellow: 37.1 + blue: 32.1 + magenta: 25.8 + cyan: 37.8 + white: 37.4 + brightBlack: 19.3 + brightRed: 25 + brightGreen: 37.1 + brightYellow: 25.1 + brightBlue: 37.4 + brightMagenta: 25.8 + brightCyan: 44.3 + brightWhite: 37.4 diff --git a/themes/alligator-solarized-light.yaml b/themes/alligator-solarized-light.yaml new file mode 100644 index 00000000..d61f8da0 --- /dev/null +++ b/themes/alligator-solarized-light.yaml @@ -0,0 +1,49 @@ +name: "alligator-solarized-light" +source: + marketplace_id: "alligator-vscode-color-theme.alligator" + version: "1.3.2" + installs: 1108 + author: "alligator-vscode-color-theme" + repo: "https://github.com/lianghx-319/Alligator-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=alligator-vscode-color-theme.alligator" +colors: + bg: "#FCF9EF" + fg: "#586E75" + black: "#657B83" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#657B83" + brightRed: "#CB4B16" + brightGreen: "#859900" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#EEE8D5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 73.2 + black: 67.3 + red: 66.9 + green: 55.4 + yellow: 55.4 + blue: 60.3 + magenta: 66.6 + cyan: 54.7 + white: 7.5 + brightBlack: 67.3 + brightRed: 67.4 + brightGreen: 55.4 + brightYellow: 67.3 + brightBlue: 55.1 + brightMagenta: 66.6 + brightCyan: 48.4 + brightWhite: 7.5 diff --git a/themes/allomancer.yaml b/themes/allomancer.yaml new file mode 100644 index 00000000..b6480847 --- /dev/null +++ b/themes/allomancer.yaml @@ -0,0 +1,49 @@ +name: "Allomancer" +source: + marketplace_id: "maneeshJohn.allomancer-vscode" + version: "1.0.1" + installs: 489 + author: "Maneesh John" + repo: "https://github.com/maneeshjohn/allomancer-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=maneeshJohn.allomancer-vscode" +colors: + bg: "#282C34" + fg: "#EEFFFF" + black: "#383838" + red: "#F44747" + green: "#87AF87" + yellow: "#FFCB6B" + blue: "#6E88A6" + magenta: "#C678DD" + cyan: "#5FAFAF" + white: "#D7DAE0" + brightBlack: "#787878" + brightRed: "#FF875F" + brightGreen: "#87AF87" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#875FAF" + brightCyan: "#5FAFAF" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 101.4 + black: 0 + red: 35.2 + green: 49.3 + yellow: 75.7 + blue: 33.3 + magenta: 41.9 + cyan: 48 + white: 79.8 + brightBlack: 26.8 + brightRed: 51.7 + brightGreen: 49.3 + brightYellow: 75.7 + brightBlue: 52.7 + brightMagenta: 23.7 + brightCyan: 48 + brightWhite: 78.7 diff --git a/themes/allure-contrast.yaml b/themes/allure-contrast.yaml new file mode 100644 index 00000000..75f6eb3f --- /dev/null +++ b/themes/allure-contrast.yaml @@ -0,0 +1,49 @@ +name: "allure-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#17191C" + fg: "#C0CCDB" + black: "#23262A" + red: "#BA0E2E" + green: "#5DA892" + yellow: "#E4D294" + blue: "#FFFFFF" + magenta: "#5DA892" + cyan: "#E4D294" + white: "#D0D9E4" + brightBlack: "#454B54" + brightRed: "#F03E5F" + brightGreen: "#9FCCBF" + brightYellow: "#F9F4E5" + brightBlue: "#FFFFFF" + brightMagenta: "#9FCCBF" + brightCyan: "#F9F4E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.7 + black: 0 + red: 20.3 + green: 46.8 + yellow: 78.4 + blue: 106.7 + magenta: 46.8 + cyan: 78.4 + white: 81.7 + brightBlack: 10.9 + brightRed: 36.6 + brightGreen: 69 + brightYellow: 99.5 + brightBlue: 106.7 + brightMagenta: 69 + brightCyan: 99.5 + brightWhite: 106.7 diff --git a/themes/allure-light.yaml b/themes/allure-light.yaml new file mode 100644 index 00000000..9f816062 --- /dev/null +++ b/themes/allure-light.yaml @@ -0,0 +1,49 @@ +name: "allure-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#555E68" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#5DA892" + yellow: "#E4D294" + blue: "#555E68" + magenta: "#5DA892" + cyan: "#E4D294" + white: "#606B76" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#9FCCBF" + brightYellow: "#F9F4E5" + brightBlue: "#86919C" + brightMagenta: "#9FCCBF" + brightCyan: "#F9F4E5" + brightWhite: "#86919C" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 82.6 + black: 0 + red: 80.3 + green: 53.9 + yellow: 23.6 + blue: 82.6 + magenta: 53.9 + cyan: 23.6 + white: 77.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 32.5 + brightYellow: 0 + brightBlue: 59.3 + brightMagenta: 32.5 + brightCyan: 0 + brightWhite: 59.3 diff --git a/themes/allure.yaml b/themes/allure.yaml new file mode 100644 index 00000000..c5e767a1 --- /dev/null +++ b/themes/allure.yaml @@ -0,0 +1,49 @@ +name: "allure" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#32373D" + fg: "#C0CCDB" + black: "#3D444B" + red: "#BA0E2E" + green: "#5DA892" + yellow: "#E4D294" + blue: "#FFFFFF" + magenta: "#5DA892" + cyan: "#E4D294" + white: "#D0D9E4" + brightBlack: "#606A75" + brightRed: "#F03E5F" + brightGreen: "#9FCCBF" + brightYellow: "#F9F4E5" + brightBlue: "#FFFFFF" + brightMagenta: "#9FCCBF" + brightCyan: "#F9F4E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + contrast: + fg: 68 + black: 0 + red: 14.7 + green: 41.1 + yellow: 72.7 + blue: 101 + magenta: 41.1 + cyan: 72.7 + white: 76.1 + brightBlack: 17.4 + brightRed: 31 + brightGreen: 63.3 + brightYellow: 93.8 + brightBlue: 101 + brightMagenta: 63.3 + brightCyan: 93.8 + brightWhite: 101 diff --git a/themes/alma-sakura-theme.yaml b/themes/alma-sakura-theme.yaml new file mode 100644 index 00000000..a7eb8677 --- /dev/null +++ b/themes/alma-sakura-theme.yaml @@ -0,0 +1,49 @@ +name: "Alma Sakura Theme" +source: + marketplace_id: "hoshinokanade.alma-sakura" + version: "0.1.2" + installs: 9216 + author: "hoshinokanade" + repo: "https://github.com/as-alma/Alma-Sakura" + url: "https://marketplace.visualstudio.com/items?itemName=hoshinokanade.alma-sakura" +colors: + bg: "#2E2B2C" + fg: "#CBBEC2" + black: "#47393E" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B9ACB0" + brightBlack: "#69545B" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#CBBEC2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65.1 + black: 0 + red: 37.4 + green: 73.8 + yellow: 63.8 + blue: 48.8 + magenta: 42.4 + cyan: 67.3 + white: 54.9 + brightBlack: 13.7 + brightRed: 42.6 + brightGreen: 76 + brightYellow: 50.7 + brightBlue: 54.1 + brightMagenta: 54.8 + brightCyan: 70.7 + brightWhite: 65.1 diff --git a/themes/almond-cream.yaml b/themes/almond-cream.yaml new file mode 100644 index 00000000..1b0df90b --- /dev/null +++ b/themes/almond-cream.yaml @@ -0,0 +1,49 @@ +name: "Almond Cream" +source: + marketplace_id: "wicked-labs.cocoa-butter" + version: "0.1.4" + installs: 1140 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/cocoabutter" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.cocoa-butter" +colors: + bg: "#FAF4ED" + fg: "#526479" + black: "#F2E9E1" + red: "#B58245" + green: "#587D8A" + yellow: "#737847" + blue: "#29668F" + magenta: "#CC5C3D" + cyan: "#766899" + white: "#526479" + brightBlack: "#758C93" + brightRed: "#B58245" + brightGreen: "#587D8A" + brightYellow: "#737847" + brightBlue: "#29668F" + brightMagenta: "#CC5C3D" + brightCyan: "#766899" + brightWhite: "#526479" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 74.2 + black: 0 + red: 54.9 + green: 64.8 + yellow: 66.3 + blue: 74.5 + magenta: 61.1 + cyan: 68.4 + white: 74.2 + brightBlack: 56.9 + brightRed: 54.9 + brightGreen: 64.8 + brightYellow: 66.3 + brightBlue: 74.5 + brightMagenta: 61.1 + brightCyan: 68.4 + brightWhite: 74.2 diff --git a/themes/aloe.yaml b/themes/aloe.yaml new file mode 100644 index 00000000..21f0b211 --- /dev/null +++ b/themes/aloe.yaml @@ -0,0 +1,49 @@ +name: "Aloe" +source: + marketplace_id: "Lab829.aloe" + version: "0.0.5" + installs: 98 + author: "Lab829" + repo: "https://github.com/lab829/aloe" + url: "https://marketplace.visualstudio.com/items?itemName=Lab829.aloe" +colors: + bg: "#1A1D1A" + fg: "#D9EBE0" + black: "#1F221F" + red: "#F5C97A" + green: "#A8E6A3" + yellow: "#F5E67A" + blue: "#7DC3E8" + magenta: "#D99CE8" + cyan: "#7DD3C0" + white: "#D9EBE0" + brightBlack: "#4A6850" + brightRed: "#F5C97A" + brightGreen: "#A8E6A3" + brightYellow: "#F5E67A" + brightBlue: "#7DC3E8" + brightMagenta: "#D99CE8" + brightCyan: "#7DD3C0" + brightWhite: "#D9EBE0" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 90.4 + black: 0 + red: 76.1 + green: 80.5 + yellow: 88.7 + blue: 63.8 + magenta: 59 + cyan: 69.1 + white: 90.4 + brightBlack: 19.4 + brightRed: 76.1 + brightGreen: 80.5 + brightYellow: 88.7 + brightBlue: 63.8 + brightMagenta: 59 + brightCyan: 69.1 + brightWhite: 90.4 diff --git a/themes/alpha.yaml b/themes/alpha.yaml new file mode 100644 index 00000000..a9eff326 --- /dev/null +++ b/themes/alpha.yaml @@ -0,0 +1,49 @@ +name: ".Alpha" +source: + marketplace_id: "slepe.topl-theme" + version: "1.0.1" + installs: 824 + author: "Slepe" + repo: "https://github.com/slepe/topl-theme" + url: "https://marketplace.visualstudio.com/items?itemName=slepe.topl-theme" +colors: + bg: "#24242A" + fg: "#A6A9B7" + black: "#484E5B" + red: "#E56F92" + green: "#8CD7AA" + yellow: "#E9967E" + blue: "#E56F92" + magenta: "#E56F92" + cyan: "#7ABCE4" + white: "#DADDEE" + brightBlack: "#484E5B" + brightRed: "#E56F92" + brightGreen: "#8CD7AA" + brightYellow: "#E9967E" + brightBlue: "#E56F92" + brightMagenta: "#E56F92" + brightCyan: "#7ABCE4" + brightWhite: "#DADDEE" +meta: + mode: "dark" + accent: "red" + hue: 286 + contrast: + fg: 53.1 + black: 10.6 + red: 42.9 + green: 70 + yellow: 54.1 + blue: 42.9 + magenta: 42.9 + cyan: 59.1 + white: 83.6 + brightBlack: 10.6 + brightRed: 42.9 + brightGreen: 70 + brightYellow: 54.1 + brightBlue: 42.9 + brightMagenta: 42.9 + brightCyan: 59.1 + brightWhite: 83.6 diff --git a/themes/alpine-warm.yaml b/themes/alpine-warm.yaml new file mode 100644 index 00000000..a84d5391 --- /dev/null +++ b/themes/alpine-warm.yaml @@ -0,0 +1,49 @@ +name: "Alpine-Warm" +source: + marketplace_id: "Hyperbolic-Labs.Alpine-Warm" + version: "0.0.1" + installs: 788 + author: "Hyperbolic-Labs" + repo: "https://github.com/Hyperbolic-Labs/alpine-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Hyperbolic-Labs.Alpine-Warm" +colors: + bg: "#22262A" + fg: "#D0D0D0" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#D5C4A1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 75.1 + black: 0 + red: 23.3 + green: 40.9 + yellow: 50.5 + blue: 29.6 + magenta: 29.7 + cyan: 40 + white: 45.2 + brightBlack: 34.4 + brightRed: 38.2 + brightGreen: 59.2 + brightYellow: 69.8 + brightBlue: 46.6 + brightMagenta: 46 + brightCyan: 58.1 + brightWhite: 68.9 diff --git a/themes/alpine.yaml b/themes/alpine.yaml new file mode 100644 index 00000000..a69b184c --- /dev/null +++ b/themes/alpine.yaml @@ -0,0 +1,49 @@ +name: "alpine" +source: + marketplace_id: "snapperito.alpine" + version: "0.0.1" + installs: 3297 + author: "snapper" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=snapperito.alpine" +colors: + bg: "#222222" + fg: "#A3A5AA" + black: "#000000" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#5E81AC" + magenta: "#B48EAD" + cyan: "#81A1C1" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#EE7682" + brightGreen: "#BEE29F" + brightYellow: "#FFEAC0" + brightBlue: "#8BBFFF" + brightMagenta: "#E08BD0" + brightCyan: "#A3CEF9" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 51.1 + black: 0 + red: 31.6 + green: 60.2 + yellow: 75 + blue: 31.7 + magenta: 45.1 + cyan: 47.2 + white: 88.6 + brightBlack: 20.6 + brightRed: 46.3 + brightGreen: 79.9 + brightYellow: 93.1 + brightBlue: 63.7 + brightMagenta: 52.7 + brightCyan: 71.9 + brightWhite: 88.6 diff --git a/themes/altearn.yaml b/themes/altearn.yaml new file mode 100644 index 00000000..1612c150 --- /dev/null +++ b/themes/altearn.yaml @@ -0,0 +1,49 @@ +name: "Altearn" +source: + marketplace_id: "Leirof.gunivers-theme" + version: "0.0.23" + installs: 568 + author: "Leirof" + repo: "https://github.com/Gunivers/VSC-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Leirof.gunivers-theme" +colors: + bg: "#F9F6F1" + fg: "#333333" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 93.5 + black: 100.8 + red: 68.8 + green: 44 + yellow: 52.7 + blue: 80.9 + magenta: 69.4 + cyan: 55.4 + white: 80.7 + brightBlack: 73.5 + brightRed: 68.8 + brightGreen: 35.7 + brightYellow: 35.7 + brightBlue: 80.9 + brightMagenta: 69.4 + brightCyan: 55.4 + brightWhite: 43.3 diff --git a/themes/altered-matter-dopamin-owl.yaml b/themes/altered-matter-dopamin-owl.yaml new file mode 100644 index 00000000..f80bfa92 --- /dev/null +++ b/themes/altered-matter-dopamin-owl.yaml @@ -0,0 +1,49 @@ +name: "Altered Matter Dopamin Owl" +source: + marketplace_id: "techwithcarlos.cyberpunk-2021" + version: "1.8.5" + installs: 31480 + author: "techwithcarlos" + repo: "https://github.com/CarlosTaubeler/cyberpunk-2021" + url: "https://marketplace.visualstudio.com/items?itemName=techwithcarlos.cyberpunk-2021" +colors: + bg: "#011627" + fg: "#97A7C8" + black: "#000000" + red: "#FF0000" + green: "#33FF00" + yellow: "#F2FF00" + blue: "#0066FF" + magenta: "#CC00FF" + cyan: "#0AB6C2" + white: "#D7DBE0" + brightBlack: "#808080" + brightRed: "#FF0000" + brightGreen: "#00FF9D" + brightYellow: "#F2FF00" + brightBlue: "#0066FF" + brightMagenta: "#CC00FF" + brightCyan: "#35E2EE" + brightWhite: "#D7DBE0" +meta: + mode: "dark" + accent: "pink" + hue: 244 + contrast: + fg: 53.4 + black: 0 + red: 36.6 + green: 85.9 + yellow: 100 + blue: 28.3 + magenta: 34.6 + cyan: 53 + white: 83.6 + brightBlack: 33.8 + brightRed: 36.6 + brightGreen: 87.4 + brightYellow: 100 + brightBlue: 28.3 + brightMagenta: 34.6 + brightCyan: 76.1 + brightWhite: 83.6 diff --git a/themes/alternight.yaml b/themes/alternight.yaml new file mode 100644 index 00000000..a9ac87c3 --- /dev/null +++ b/themes/alternight.yaml @@ -0,0 +1,49 @@ +name: "alternight" +source: + marketplace_id: "spaceinvadev.alternight" + version: "3.0.0" + installs: 12495 + author: "Mauro Paternina" + repo: "https://github.com/spaceinvadev/alternight-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=spaceinvadev.alternight" +colors: + bg: "#1F172B" + fg: "#CAAEEB" + black: "#292929" + red: "#F07C7C" + green: "#4CA779" + yellow: "#FFCB6B" + blue: "#5C7FE2" + magenta: "#C869D1" + cyan: "#40CFCF" + white: "#FAFAFA" + brightBlack: "#080808" + brightRed: "#F08A8A" + brightGreen: "#71BD97" + brightYellow: "#FDDA9A" + brightBlue: "#718EDF" + brightMagenta: "#D581DD" + brightCyan: "#70D1D1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 302 + contrast: + fg: 63.5 + black: 0 + red: 49 + green: 44.5 + yellow: 78.5 + blue: 35.3 + magenta: 40.5 + cyan: 65.2 + white: 103.1 + brightBlack: 0 + brightRed: 53.4 + brightGreen: 56.9 + brightYellow: 85.5 + brightBlue: 41.6 + brightMagenta: 49.6 + brightCyan: 68.2 + brightWhite: 106.4 diff --git a/themes/altin-s-love-symphony.yaml b/themes/altin-s-love-symphony.yaml new file mode 100644 index 00000000..e4e4cb23 --- /dev/null +++ b/themes/altin-s-love-symphony.yaml @@ -0,0 +1,49 @@ +name: "Altin's Love Symphony" +source: + marketplace_id: "slumbersage.slumbersage" + version: "0.0.1" + installs: 852 + author: "slumbersage" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=slumbersage.slumbersage" +colors: + bg: "#181818" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#FFFF66" + brightBlue: "#6666FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.8 + black: 0 + red: 36.4 + green: 85.4 + yellow: 101.6 + blue: 15.1 + magenta: 45.1 + cyan: 91.1 + white: 106.8 + brightBlack: 21.9 + brightRed: 46.8 + brightGreen: 87.9 + brightYellow: 102.2 + brightBlue: 31.5 + brightMagenta: 53.7 + brightCyan: 92.9 + brightWhite: 106.8 diff --git a/themes/alucard-sotn.yaml b/themes/alucard-sotn.yaml new file mode 100644 index 00000000..aca4fedc --- /dev/null +++ b/themes/alucard-sotn.yaml @@ -0,0 +1,49 @@ +name: "Alucard Sotn" +source: + marketplace_id: "DanielDlc.alucardsotn" + version: "4.0.0" + installs: 1501 + author: "Alucard Sotn" + repo: "https://github.com/DanielDlc/Alucard-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DanielDlc.alucardsotn" +colors: + bg: "#292A43" + fg: "#C0C0D0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 282 + contrast: + fg: 65 + black: 0 + red: 23.4 + green: 49.7 + yellow: 82.3 + blue: 24.1 + magenta: 26.5 + cyan: 44.3 + white: 86.7 + brightBlack: 18.7 + brightRed: 35.3 + brightGreen: 60.2 + brightYellow: 92.3 + brightBlue: 36.7 + brightMagenta: 42.1 + brightCyan: 52.1 + brightWhite: 86.7 diff --git a/themes/alx-theme-classic.yaml b/themes/alx-theme-classic.yaml new file mode 100644 index 00000000..83a44e04 --- /dev/null +++ b/themes/alx-theme-classic.yaml @@ -0,0 +1,49 @@ +name: "ALX_THEME_CLASSIC" +source: + marketplace_id: "ALX-ZMN.alx-theme-color-theme" + version: "8.9.0" + installs: 1246 + author: "ALX_ZMN" + repo: "https://github.com/revivalver/VScodeTHEME" + url: "https://marketplace.visualstudio.com/items?itemName=ALX-ZMN.alx-theme-color-theme" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#686868" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C77878" + brightBlack: "#A5A5A5" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.5 + black: 23.9 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 41.7 + brightBlack: 53.5 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/alx-theme-normal.yaml b/themes/alx-theme-normal.yaml new file mode 100644 index 00000000..593298da --- /dev/null +++ b/themes/alx-theme-normal.yaml @@ -0,0 +1,49 @@ +name: "ALX_THEME_NORMAL" +source: + marketplace_id: "ALX-ZMN.alx-theme-color-theme" + version: "8.9.0" + installs: 1246 + author: "ALX_ZMN" + repo: "https://github.com/revivalver/VScodeTHEME" + url: "https://marketplace.visualstudio.com/items?itemName=ALX-ZMN.alx-theme-color-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#686868" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C77878" + brightBlack: "#A5A5A5" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 23.9 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 41.7 + brightBlack: 53.5 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/amadeus-dark-cobalt.yaml b/themes/amadeus-dark-cobalt.yaml new file mode 100644 index 00000000..6fbd544b --- /dev/null +++ b/themes/amadeus-dark-cobalt.yaml @@ -0,0 +1,49 @@ +name: "Amadeus Dark Cobalt" +source: + marketplace_id: "gbrachetta.amadeus-dark-theme" + version: "0.0.17" + installs: 1760 + author: "gbrachetta" + repo: "https://github.com/GBrachetta/amadeus-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=gbrachetta.amadeus-dark-theme" +colors: + bg: "#101618" + fg: "#DAD5C1" + black: "#045053" + red: "#E2442F" + green: "#8CDD30" + yellow: "#DBBE15" + blue: "#0CB6A8" + magenta: "#8F4673" + cyan: "#18CFC0" + white: "#D47640" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#467E06" + brightYellow: "#FAC03B" + brightBlue: "#0695EE" + brightMagenta: "#D43B9A" + brightCyan: "#38E9E9" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 80.1 + black: 10.7 + red: 33.8 + green: 72.5 + yellow: 67.3 + blue: 52 + magenta: 19.7 + cyan: 64.5 + white: 41.5 + brightBlack: 18.8 + brightRed: 42.2 + brightGreen: 26.9 + brightYellow: 73.2 + brightBlue: 42.3 + brightMagenta: 32.3 + brightCyan: 79.5 + brightWhite: 99 diff --git a/themes/amadeus-dark-pastel.yaml b/themes/amadeus-dark-pastel.yaml new file mode 100644 index 00000000..b8c8c9ba --- /dev/null +++ b/themes/amadeus-dark-pastel.yaml @@ -0,0 +1,49 @@ +name: "Amadeus Dark Pastel" +source: + marketplace_id: "gbrachetta.amadeus-dark-theme" + version: "0.0.17" + installs: 1760 + author: "gbrachetta" + repo: "https://github.com/GBrachetta/amadeus-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=gbrachetta.amadeus-dark-theme" +colors: + bg: "#1A1A1A" + fg: "#DBBE94" + black: "#191919" + red: "#FB543F" + green: "#95C085" + yellow: "#B88D2B" + blue: "#0D6678" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#95C085" + brightYellow: "#FAC03B" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#86C5AD" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 68.6 + black: 0 + red: 41.6 + green: 60.6 + yellow: 43.3 + blue: 18.4 + magenta: 19.2 + cyan: 49.1 + white: 46.9 + brightBlack: 18.3 + brightRed: 41.6 + brightGreen: 60.6 + brightYellow: 72.7 + brightBlue: 18.4 + brightMagenta: 19.2 + brightCyan: 62.9 + brightWhite: 98.5 diff --git a/themes/amadeus-dark.yaml b/themes/amadeus-dark.yaml new file mode 100644 index 00000000..8e1f578a --- /dev/null +++ b/themes/amadeus-dark.yaml @@ -0,0 +1,49 @@ +name: "Amadeus Dark" +source: + marketplace_id: "gbrachetta.amadeus-dark-theme" + version: "0.0.17" + installs: 1760 + author: "gbrachetta" + repo: "https://github.com/GBrachetta/amadeus-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=gbrachetta.amadeus-dark-theme" +colors: + bg: "#202020" + fg: "#91A7C4" + black: "#521212" + red: "#AD364E" + green: "#91AC41" + yellow: "#DDB26F" + blue: "#6FC2EF" + magenta: "#E1A3EE" + cyan: "#12CFC0" + white: "#D0D0D0" + brightBlack: "#505050" + brightRed: "#FB9FB1" + brightGreen: "#A0C72D" + brightYellow: "#DDB26F" + brightBlue: "#6FC2EF" + brightMagenta: "#E1A3EE" + brightCyan: "#12CFC0" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 51.5 + black: 0 + red: 20 + green: 49.7 + yellow: 62.4 + blue: 62.4 + magenta: 62.5 + cyan: 63.2 + white: 75.9 + brightBlack: 12.1 + brightRed: 62.7 + brightGreen: 62.7 + brightYellow: 62.4 + brightBlue: 62.4 + brightMagenta: 62.5 + brightCyan: 63.2 + brightWhite: 99.2 diff --git a/themes/amaranth-red-eerie-black-fork.yaml b/themes/amaranth-red-eerie-black-fork.yaml new file mode 100644 index 00000000..1653c214 --- /dev/null +++ b/themes/amaranth-red-eerie-black-fork.yaml @@ -0,0 +1,49 @@ +name: "Amaranth Red & Eerie Black - Fork" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29903 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" +colors: + bg: "#131415" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.2 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/amazonfrog.yaml b/themes/amazonfrog.yaml new file mode 100644 index 00000000..72f57388 --- /dev/null +++ b/themes/amazonfrog.yaml @@ -0,0 +1,49 @@ +name: "AmazonFrog" +source: + marketplace_id: "TiagoMarcial.AmazonFrog" + version: "0.1.8" + installs: 309 + author: "Tiago Marcial" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TiagoMarcial.AmazonFrog" +colors: + bg: "#011627" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 244 + contrast: + fg: 107 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/ambar-for-vscode.yaml b/themes/ambar-for-vscode.yaml new file mode 100644 index 00000000..e16a62e4 --- /dev/null +++ b/themes/ambar-for-vscode.yaml @@ -0,0 +1,49 @@ +name: "Ambar for VSCode" +source: + marketplace_id: "guimar10dev.amber-for-vscode" + version: "0.3.1" + installs: 481 + author: "guimar10_dev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=guimar10dev.amber-for-vscode" +colors: + bg: "#3F1400" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 44 + contrast: + fg: 77.8 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.7 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/amber-blue-light.yaml b/themes/amber-blue-light.yaml new file mode 100644 index 00000000..4ff53fc5 --- /dev/null +++ b/themes/amber-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Amber-Blue-Light" +source: + marketplace_id: "HantigoZore.amber-studio" + version: "1.2.0" + installs: 77 + author: "HantigoZore" + repo: "https://github.com/HantigoZore/AmberStudio" + url: "https://marketplace.visualstudio.com/items?itemName=HantigoZore.amber-studio" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#C8C8C8" + red: "#E05561" + green: "#98C379" + yellow: "#F69D50" + blue: "#4AA5F0" + magenta: "#C792EA" + cyan: "#82AAFF" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 98.7 + black: 29.5 + red: 63.9 + green: 39.1 + yellow: 41.5 + blue: 51.2 + magenta: 47.3 + cyan: 45.2 + white: 12.3 + brightBlack: 85.6 + brightRed: 54.7 + brightGreen: 25.3 + brightYellow: 40.1 + brightBlue: 37.7 + brightMagenta: 50.7 + brightCyan: 33.8 + brightWhite: 19.4 diff --git a/themes/amber-blue.yaml b/themes/amber-blue.yaml new file mode 100644 index 00000000..fbff213e --- /dev/null +++ b/themes/amber-blue.yaml @@ -0,0 +1,49 @@ +name: "Amber-Blue" +source: + marketplace_id: "HantigoZore.amber-studio" + version: "1.2.0" + installs: 77 + author: "HantigoZore" + repo: "https://github.com/HantigoZore/AmberStudio" + url: "https://marketplace.visualstudio.com/items?itemName=HantigoZore.amber-studio" +colors: + bg: "#000000" + fg: "#E1E4E8" + black: "#3F4451" + red: "#E05561" + green: "#98C379" + yellow: "#F69D50" + blue: "#4AA5F0" + magenta: "#C792EA" + cyan: "#82AAFF" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 90.2 + black: 9.9 + red: 37.7 + green: 63.3 + yellow: 60.7 + blue: 50.7 + magenta: 54.8 + cyan: 56.9 + white: 91.7 + brightBlack: 16.5 + brightRed: 47.1 + brightGreen: 77.8 + brightYellow: 62.2 + brightBlue: 64.7 + brightMagenta: 51.3 + brightCyan: 68.8 + brightWhite: 84 diff --git a/themes/amber-color-theme.yaml b/themes/amber-color-theme.yaml new file mode 100644 index 00000000..1e1ec1ac --- /dev/null +++ b/themes/amber-color-theme.yaml @@ -0,0 +1,49 @@ +name: "amber-color-theme" +source: + marketplace_id: "electropol-fr.coloredtheme" + version: "1.3.0" + installs: 4210 + author: "electropol.fr" + repo: "https://github.com/FrankSAURET/colored-theme" + url: "https://marketplace.visualstudio.com/items?itemName=electropol-fr.coloredtheme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#FF0000" + green: "#00FF22" + yellow: "#FFEE00" + blue: "#40BFFA" + magenta: "#FF00DD" + cyan: "#00EEFF" + white: "#EEEEEE" + brightBlack: "#808080" + brightRed: "#ED7D31" + brightGreen: "#70AD47" + brightYellow: "#FFC000" + brightBlue: "#4472C4" + brightMagenta: "#DAC2F7" + brightCyan: "#5B9BD5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 64.1 + green: 17.1 + yellow: 9.6 + blue: 40.5 + magenta: 58 + cyan: 19.9 + white: 7.6 + brightBlack: 66.9 + brightRed: 52.9 + brightGreen: 52.3 + brightYellow: 28.2 + brightBlue: 72.5 + brightMagenta: 27.4 + brightCyan: 56 + brightWhite: 0 diff --git a/themes/ambient.yaml b/themes/ambient.yaml new file mode 100644 index 00000000..b49a6d48 --- /dev/null +++ b/themes/ambient.yaml @@ -0,0 +1,49 @@ +name: "Ambient" +source: + marketplace_id: "Avetis.twodark" + version: "0.4.3" + installs: 444 + author: "Avetis" + repo: "https://github.com/AvetisDN/twodark-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.twodark" +colors: + bg: "#151517" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#717171" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.7 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 27 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.5 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/amethyst-dreams.yaml b/themes/amethyst-dreams.yaml new file mode 100644 index 00000000..84f0eeff --- /dev/null +++ b/themes/amethyst-dreams.yaml @@ -0,0 +1,49 @@ +name: "Amethyst Dreams" +source: + marketplace_id: "Sniffin.amethyst-dreams" + version: "1.1.1" + installs: 263 + author: "Sniffin" + repo: "https://github.com/Sniffin3083/amethyst-dreams" + url: "https://marketplace.visualstudio.com/items?itemName=Sniffin.amethyst-dreams" +colors: + bg: "#24082C" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 318 + contrast: + fg: 79.5 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 90 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.3 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/amethyst-kiss-dark-amethyst-mode.yaml b/themes/amethyst-kiss-dark-amethyst-mode.yaml new file mode 100644 index 00000000..27e46f6c --- /dev/null +++ b/themes/amethyst-kiss-dark-amethyst-mode.yaml @@ -0,0 +1,49 @@ +name: "Amethyst Kiss Dark(Amethyst Mode)" +source: + marketplace_id: "MahdiBehkar.amethyst-kiss" + version: "0.1.0" + installs: 641 + author: "MahdiBehkar" + repo: "https://github.com/Behkar/amethyst_kiss_theme" + url: "https://marketplace.visualstudio.com/items?itemName=MahdiBehkar.amethyst-kiss" +colors: + bg: "#373E4D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 265 + contrast: + fg: 71.4 + black: 9 + red: 18.6 + green: 44.9 + yellow: 77.5 + blue: 19.3 + magenta: 21.7 + cyan: 39.5 + white: 81.9 + brightBlack: 13.9 + brightRed: 30.5 + brightGreen: 55.4 + brightYellow: 87.5 + brightBlue: 31.9 + brightMagenta: 37.3 + brightCyan: 47.3 + brightWhite: 81.9 diff --git a/themes/amethyst-kiss-light-amethyst-mode.yaml b/themes/amethyst-kiss-light-amethyst-mode.yaml new file mode 100644 index 00000000..faabbfe8 --- /dev/null +++ b/themes/amethyst-kiss-light-amethyst-mode.yaml @@ -0,0 +1,49 @@ +name: "Amethyst Kiss Light(Amethyst Mode)" +source: + marketplace_id: "MahdiBehkar.amethyst-kiss" + version: "0.1.0" + installs: 641 + author: "MahdiBehkar" + repo: "https://github.com/Behkar/amethyst_kiss_theme" + url: "https://marketplace.visualstudio.com/items?itemName=MahdiBehkar.amethyst-kiss" +colors: + bg: "#F9F9F9" + fg: "#29343D" + black: "#29343D" + red: "#F8961E" + green: "#90BE6D" + yellow: "#F3722C" + blue: "#577590" + magenta: "#F9C74F" + cyan: "#43AA8B" + white: "#555555" + brightBlack: "#394956" + brightRed: "#F8961E" + brightGreen: "#90BE6D" + brightYellow: "#F3722C" + brightBlue: "#577590" + brightMagenta: "#F9C74F" + brightCyan: "#43AA8B" + brightWhite: "#ABABAB" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 95.2 + black: 95.2 + red: 40.1 + green: 38.5 + yellow: 51 + blue: 69.8 + magenta: 22.5 + cyan: 50.8 + white: 82.3 + brightBlack: 87.8 + brightRed: 40.1 + brightGreen: 38.5 + brightYellow: 51 + brightBlue: 69.8 + brightMagenta: 22.5 + brightCyan: 50.8 + brightWhite: 41.7 diff --git a/themes/amethyst-theme.yaml b/themes/amethyst-theme.yaml new file mode 100644 index 00000000..cefa52b1 --- /dev/null +++ b/themes/amethyst-theme.yaml @@ -0,0 +1,49 @@ +name: "Amethyst Theme" +source: + marketplace_id: "JuanILlaberia.amethyst-dark-theme" + version: "1.0.0" + installs: 1330 + author: "Juan I. Llaberia" + repo: "https://github.com/JuaniLlaberia/Amethyst" + url: "https://marketplace.visualstudio.com/items?itemName=JuanILlaberia.amethyst-dark-theme" +colors: + bg: "#1A1624" + fg: "#A2A3A3" + black: "#5C5C5C" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 297 + contrast: + fg: 51.2 + black: 17.7 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/amoled-dark-theme.yaml b/themes/amoled-dark-theme.yaml new file mode 100644 index 00000000..a6e28727 --- /dev/null +++ b/themes/amoled-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Amoled Dark Theme" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3734 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#0E0E0E" + fg: "#999999" + black: "#343434" + red: "#E1270E" + green: "#5BC266" + yellow: "#FBCC43" + blue: "#535BCF" + magenta: "#BF5AF2" + cyan: "#6CC7F6" + white: "#FFFFFF" + brightBlack: "#535BCF" + brightRed: "#E1270E" + brightGreen: "#5BC266" + brightYellow: "#FBCC43" + brightBlue: "#535BCF" + brightMagenta: "#BF5AF2" + brightCyan: "#6CC7F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 46.9 + black: 0 + red: 30.9 + green: 57.9 + yellow: 78.9 + blue: 23.9 + magenta: 39.2 + cyan: 66.6 + white: 107.6 + brightBlack: 23.9 + brightRed: 30.9 + brightGreen: 57.9 + brightYellow: 78.9 + brightBlue: 23.9 + brightMagenta: 39.2 + brightCyan: 66.6 + brightWhite: 107.6 diff --git a/themes/amoledtest-fork-fork.yaml b/themes/amoledtest-fork-fork.yaml new file mode 100644 index 00000000..99b93047 --- /dev/null +++ b/themes/amoledtest-fork-fork.yaml @@ -0,0 +1,49 @@ +name: "amoledTest - Fork - Fork" +source: + marketplace_id: "DanielLucario.Mitternacht" + version: "1.0.0" + installs: 17 + author: "Daniel Lucario" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=DanielLucario.Mitternacht" +colors: + bg: "#000000" + fg: "#ABB2BF" + black: "#000000" + red: "#C11007" + green: "#047154" + yellow: "#BAA388" + blue: "#142458" + magenta: "#A813B7" + cyan: "#2FA291" + white: "#9D9D9D" + brightBlack: "#4F4F56" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#BAA388" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#94E2D5" + brightWhite: "#DBDBDB" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.4 + black: 0 + red: 22.9 + green: 22.3 + yellow: 54.4 + blue: 0 + magenta: 23.2 + cyan: 43.7 + white: 49.3 + brightBlack: 14 + brightRed: 56.7 + brightGreen: 80.4 + brightYellow: 54.4 + brightBlue: 61.1 + brightMagenta: 78.7 + brightCyan: 80.3 + brightWhite: 84.8 diff --git a/themes/amora.yaml b/themes/amora.yaml new file mode 100644 index 00000000..d47a148b --- /dev/null +++ b/themes/amora.yaml @@ -0,0 +1,49 @@ +name: "Amora" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" +colors: + bg: "#171717" + fg: "#D4D4D4" + black: "#141414" + red: "#ED3F7F" + green: "#A2BAA8" + yellow: "#EACAC0" + blue: "#9985D1" + magenta: "#E68AC1" + cyan: "#AABAE7" + white: "#DEDBEB" + brightBlack: "#292929" + brightRed: "#FB5C8E" + brightGreen: "#BFD1C3" + brightYellow: "#F0DDD8" + brightBlue: "#B4A4DE" + brightMagenta: "#EDABD2" + brightCyan: "#C4D1F5" + brightWhite: "#EDEBF7" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 79.5 + black: 0 + red: 37.1 + green: 60.8 + yellow: 77.5 + blue: 42 + magenta: 54.1 + cyan: 64.5 + white: 84.9 + brightBlack: 0 + brightRed: 45.1 + brightGreen: 74.9 + brightYellow: 87.4 + brightBlue: 56.6 + brightMagenta: 66.8 + brightCyan: 77.8 + brightWhite: 94.7 diff --git a/themes/amozonia.yaml b/themes/amozonia.yaml new file mode 100644 index 00000000..e2090e28 --- /dev/null +++ b/themes/amozonia.yaml @@ -0,0 +1,49 @@ +name: "Amozonia" +source: + marketplace_id: "VueComputedTheme.styldev" + version: "0.0.2" + installs: 188 + author: "VueComputed Theme" + repo: "https://github.com/rafa4dev/styldev" + url: "https://marketplace.visualstudio.com/items?itemName=VueComputedTheme.styldev" +colors: + bg: "#322726" + fg: "#CBAB8F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 24 + contrast: + fg: 56.2 + black: 0 + red: 24 + green: 50.2 + yellow: 82.9 + blue: 24.7 + magenta: 27 + cyan: 44.8 + white: 87.3 + brightBlack: 19.3 + brightRed: 35.8 + brightGreen: 60.8 + brightYellow: 92.9 + brightBlue: 37.2 + brightMagenta: 42.6 + brightCyan: 52.6 + brightWhite: 87.3 diff --git a/themes/amp-dark.yaml b/themes/amp-dark.yaml new file mode 100644 index 00000000..abb509a2 --- /dev/null +++ b/themes/amp-dark.yaml @@ -0,0 +1,49 @@ +name: "Amp Dark" +source: + marketplace_id: "hrose.amp-theme" + version: "0.1.0" + installs: 492 + author: "Hanna Rose" + repo: "https://codeberg.org/hanna/amp-theme#vscode" + url: "https://marketplace.visualstudio.com/items?itemName=hrose.amp-theme" +colors: + bg: "#161616" + fg: "#F2ECDD" + black: "#161616" + red: "#D9634F" + green: "#7C9B96" + yellow: "#E3A25A" + blue: "#316E99" + magenta: "#B98BA4" + cyan: "#5A8F8F" + white: "#E1E1E1" + brightBlack: "#627987" + brightRed: "#E7894C" + brightGreen: "#B6D7BA" + brightYellow: "#E3C888" + brightBlue: "#6A9FCC" + brightMagenta: "#D6B4A4" + brightCyan: "#8FC4C4" + brightWhite: "#F2ECDD" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.7 + black: 0 + red: 37.9 + green: 44.1 + yellow: 58.3 + blue: 23.6 + magenta: 45.9 + cyan: 36.8 + white: 87.6 + brightBlack: 29.1 + brightRed: 50.6 + brightGreen: 76.3 + brightYellow: 73.9 + brightBlue: 46.8 + brightMagenta: 64.8 + brightCyan: 64.5 + brightWhite: 94.7 diff --git a/themes/amp-light.yaml b/themes/amp-light.yaml new file mode 100644 index 00000000..4952f0ec --- /dev/null +++ b/themes/amp-light.yaml @@ -0,0 +1,49 @@ +name: "Amp Light" +source: + marketplace_id: "hrose.amp-theme" + version: "0.1.0" + installs: 492 + author: "Hanna Rose" + repo: "https://codeberg.org/hanna/amp-theme#vscode" + url: "https://marketplace.visualstudio.com/items?itemName=hrose.amp-theme" +colors: + bg: "#FFFFFF" + fg: "#2A2A2A" + black: "#E1E1E1" + red: "#D9634F" + green: "#5A8F8F" + yellow: "#C87A2F" + blue: "#316E99" + magenta: "#B98BA4" + cyan: "#5A8F8F" + white: "#2A2A2A" + brightBlack: "#8A8A8A" + brightRed: "#E7894C" + brightGreen: "#7C9B96" + brightYellow: "#E3A25A" + brightBlue: "#6A9FCC" + brightMagenta: "#D6B4A4" + brightCyan: "#8FC4C4" + brightWhite: "#161616" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.1 + black: 15.2 + red: 62.9 + green: 64 + yellow: 60.5 + blue: 77.2 + magenta: 55 + cyan: 64 + white: 101.1 + brightBlack: 62.1 + brightRed: 50.4 + brightGreen: 56.8 + brightYellow: 43 + brightBlue: 54.1 + brightMagenta: 36.8 + brightCyan: 37 + brightWhite: 104.8 diff --git a/themes/an-bis.yaml b/themes/an-bis.yaml new file mode 100644 index 00000000..d9e9bc3c --- /dev/null +++ b/themes/an-bis.yaml @@ -0,0 +1,49 @@ +name: "Anúbis" +source: + marketplace_id: "felipe-bergamaschi.anubis-theme" + version: "1.0.3" + installs: 142 + author: "Felipe Bergamaschi" + repo: "https://github.com/felipe-bergamaschi/anubis-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=felipe-bergamaschi.anubis-theme" +colors: + bg: "#212D3B" + fg: "#F8F8F2" + black: "#151E27" + red: "#E8414E" + green: "#F1FA8C" + yellow: "#37FA68" + blue: "#AA7BE3" + magenta: "#FF73D0" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6D7A8A" + brightRed: "#ED5151" + brightGreen: "#FFEA99" + brightYellow: "#8BE9FD" + brightBlue: "#8BE9FD" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 253 + contrast: + fg: 98.7 + black: 0 + red: 31.7 + green: 95.3 + yellow: 80.7 + blue: 39 + magenta: 50.4 + cyan: 80.7 + white: 98.7 + brightBlack: 27.1 + brightRed: 35.3 + brightGreen: 90.1 + brightYellow: 80.7 + brightBlue: 80.7 + brightMagenta: 59.3 + brightCyan: 93.5 + brightWhite: 103.6 diff --git a/themes/anakmun.yaml b/themes/anakmun.yaml new file mode 100644 index 00000000..721c59a5 --- /dev/null +++ b/themes/anakmun.yaml @@ -0,0 +1,49 @@ +name: "Anakmun" +source: + marketplace_id: "louiscavalcante.theme-anakmun" + version: "3.5.0" + installs: 472 + author: "Luiz Cavalcante" + repo: "https://github.com/louiscavalcante/theme-anakmun" + url: "https://marketplace.visualstudio.com/items?itemName=louiscavalcante.theme-anakmun" +colors: + bg: "#282C34" + fg: "#CCCCCC" + black: "#282C34" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#FFFFFF" + brightBlack: "#757B88" + brightRed: "#E06C75" + brightGreen: "#93DD5E" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 71.5 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 103.7 + brightBlack: 28.1 + brightRed: 38.9 + brightGreen: 70.2 + brightYellow: 67.4 + brightBlue: 51.5 + brightMagenta: 41.9 + brightCyan: 51.4 + brightWhite: 103.7 diff --git a/themes/analog-dream-beige-terminal.yaml b/themes/analog-dream-beige-terminal.yaml new file mode 100644 index 00000000..7222e5ec --- /dev/null +++ b/themes/analog-dream-beige-terminal.yaml @@ -0,0 +1,49 @@ +name: "Analog Dream: Beige Terminal" +source: + marketplace_id: "taotao7.cassette-futurism" + version: "0.0.1" + installs: 33 + author: "taotao7" + repo: "https://github.com/taotao7/cassette-futurism" + url: "https://marketplace.visualstudio.com/items?itemName=taotao7.cassette-futurism" +colors: + bg: "#FAF8F4" + fg: "#2D2A27" + black: "#1A1D21" + red: "#9D0006" + green: "#79740E" + yellow: "#D65D0E" + blue: "#076678" + magenta: "#B16286" + cyan: "#458588" + white: "#2D2A27" + brightBlack: "#928374" + brightRed: "#CC241D" + brightGreen: "#79740E" + brightYellow: "#D65D0E" + brightBlue: "#076678" + brightMagenta: "#B16286" + brightCyan: "#458588" + brightWhite: "#2D2A27" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.9 + black: 99.7 + red: 82.9 + green: 69.5 + yellow: 61.2 + blue: 78.1 + magenta: 64.8 + cyan: 65 + white: 96.9 + brightBlack: 60.2 + brightRed: 71.3 + brightGreen: 69.5 + brightYellow: 61.2 + brightBlue: 78.1 + brightMagenta: 64.8 + brightCyan: 65 + brightWhite: 96.9 diff --git a/themes/analog-dream-magnetic-night.yaml b/themes/analog-dream-magnetic-night.yaml new file mode 100644 index 00000000..288dd7a6 --- /dev/null +++ b/themes/analog-dream-magnetic-night.yaml @@ -0,0 +1,49 @@ +name: "Analog Dream: Magnetic Night" +source: + marketplace_id: "taotao7.cassette-futurism" + version: "0.0.1" + installs: 33 + author: "taotao7" + repo: "https://github.com/taotao7/cassette-futurism" + url: "https://marketplace.visualstudio.com/items?itemName=taotao7.cassette-futurism" +colors: + bg: "#25292E" + fg: "#D4D4D4" + black: "#1A1D21" + red: "#FF5555" + green: "#50FA7B" + yellow: "#FFB86C" + blue: "#8BE9FD" + magenta: "#BD93F9" + cyan: "#8BE9FD" + white: "#D4D4D4" + brightBlack: "#6272A4" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#FFB86C" + brightBlue: "#8BE9FD" + brightMagenta: "#BD93F9" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 254 + contrast: + fg: 76.9 + black: 0 + red: 40.8 + green: 82.3 + yellow: 68.9 + blue: 81.4 + magenta: 51.1 + cyan: 81.4 + white: 76.9 + brightBlack: 25.5 + brightRed: 40.8 + brightGreen: 82.3 + brightYellow: 68.9 + brightBlue: 81.4 + brightMagenta: 51.1 + brightCyan: 81.4 + brightWhite: 99.4 diff --git a/themes/anasdev.yaml b/themes/anasdev.yaml new file mode 100644 index 00000000..af182d2a --- /dev/null +++ b/themes/anasdev.yaml @@ -0,0 +1,49 @@ +name: "anasdev" +source: + marketplace_id: "anasdev.meza-theme" + version: "0.0.9" + installs: 75 + author: "anasdev" + repo: "https://github.com/MezaStudio/Meza-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=anasdev.meza-theme" +colors: + bg: "#18191F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 79.2 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.8 diff --git a/themes/anastasia.yaml b/themes/anastasia.yaml new file mode 100644 index 00000000..77ed125d --- /dev/null +++ b/themes/anastasia.yaml @@ -0,0 +1,49 @@ +name: "Anastasia" +source: + marketplace_id: "ShayanMukherjee.anastasia" + version: "1.0.3" + installs: 19 + author: "Sayanjit Mukherjee" + repo: "https://github.com/Thedrogon/anastasia" + url: "https://marketplace.visualstudio.com/items?itemName=ShayanMukherjee.anastasia" +colors: + bg: "#041F1A" + fg: "#E2F1F0" + black: "#02120F" + red: "#FF5370" + green: "#00FF9D" + yellow: "#FBBF24" + blue: "#82AAFF" + magenta: "#A78BFA" + cyan: "#2DD4BF" + white: "#FFFFFF" + brightBlack: "#5D7E78" + brightRed: "#FF5370" + brightGreen: "#6EE7B7" + brightYellow: "#FBBF24" + brightBlue: "#82AAFF" + brightMagenta: "#A78BFA" + brightCyan: "#2DD4BF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 179 + contrast: + fg: 95.1 + black: 0 + red: 43.1 + green: 86.7 + yellow: 72.2 + blue: 55.4 + magenta: 47.8 + cyan: 66.4 + white: 106.3 + brightBlack: 29.3 + brightRed: 43.1 + brightGreen: 77.5 + brightYellow: 72.2 + brightBlue: 55.4 + brightMagenta: 47.8 + brightCyan: 66.4 + brightWhite: 106.3 diff --git a/themes/andromeda-custom.yaml b/themes/andromeda-custom.yaml new file mode 100644 index 00000000..7a054a21 --- /dev/null +++ b/themes/andromeda-custom.yaml @@ -0,0 +1,49 @@ +name: "Andromeda-Custom" +source: + marketplace_id: "canhabil.andromeda-custom" + version: "0.0.1" + installs: 898 + author: "canhabil" + repo: "https://github.com/Khoalah/Andromeda-custom" + url: "https://marketplace.visualstudio.com/items?itemName=canhabil.andromeda-custom" +colors: + bg: "#101417" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.2 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30.1 + cyan: 47.9 + white: 79.8 + brightBlack: 22.3 + brightRed: 38.9 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/andromeda-light-italic-bordered.yaml b/themes/andromeda-light-italic-bordered.yaml new file mode 100644 index 00000000..7d68beb1 --- /dev/null +++ b/themes/andromeda-light-italic-bordered.yaml @@ -0,0 +1,49 @@ +name: "Andromeda Light Italic Bordered" +source: + marketplace_id: "kailoklum.perseus" + version: "1.0.0" + installs: 220 + author: "kailoklum" + repo: "https://github.com/kailoklum/Perseus" + url: "https://marketplace.visualstudio.com/items?itemName=kailoklum.perseus" +colors: + bg: "#FFFFFF" + fg: "#455059" + black: "#370067" + red: "#EF4444" + green: "#07D258" + yellow: "#EAB308" + blue: "#0284C7" + magenta: "#BF568B" + cyan: "#2F7ECD" + white: "#FFFFFF" + brightBlack: "#627E99" + brightRed: "#EF4444" + brightGreen: "#24966E" + brightYellow: "#EAB308" + brightBlue: "#8B56BF" + brightMagenta: "#BF568B" + brightCyan: "#20BCFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 88.5 + black: 101 + red: 63.8 + green: 38.6 + yellow: 36.4 + blue: 67.5 + magenta: 69 + cyan: 68.7 + white: 0 + brightBlack: 69.2 + brightRed: 63.8 + brightGreen: 64.3 + brightYellow: 36.4 + brightBlue: 74.4 + brightMagenta: 69 + brightCyan: 42 + brightWhite: 0 diff --git a/themes/andromeda-zed.yaml b/themes/andromeda-zed.yaml new file mode 100644 index 00000000..81824ff8 --- /dev/null +++ b/themes/andromeda-zed.yaml @@ -0,0 +1,49 @@ +name: "Andromeda Zed" +source: + marketplace_id: "AdrienLeloup.andromeda-zed" + version: "0.0.1" + installs: 2130 + author: "Adrien Leloup" + repo: "https://github.com/voidgraphics/andromeda-zed-vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=AdrienLeloup.andromeda-zed" +colors: + bg: "#1E2025" + fg: "#F7F7F8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F7F7F8" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#F7F7F8" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 100.5 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.3 + magenta: 28.6 + cyan: 46.4 + white: 100.5 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 100.5 diff --git a/themes/andromeda.yaml b/themes/andromeda.yaml new file mode 100644 index 00000000..dbf63bbe --- /dev/null +++ b/themes/andromeda.yaml @@ -0,0 +1,49 @@ +name: "Andromeda" +source: + marketplace_id: "apoorvkhare07.andromeda-vscode" + version: "1.1.0" + installs: 35967 + author: "apoorvkhare07" + repo: "https://github.com/apoorvkhare07/andromeda" + url: "https://marketplace.visualstudio.com/items?itemName=apoorvkhare07.andromeda-vscode" +colors: + bg: "#0A0A0A" + fg: "#FFFFFF" + black: "#666666" + red: "#F2777A" + green: "#92D192" + yellow: "#FFD479" + blue: "#6AB0F3" + magenta: "#E1A6F2" + cyan: "#62CFCF" + white: "#FFFFFF" + brightBlack: "#777777" + brightRed: "#F2777A" + brightGreen: "#92D192" + brightYellow: "#FFD479" + brightBlue: "#6AB0F3" + brightMagenta: "#E1A6F2" + brightCyan: "#62CFCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.7 + black: 22.9 + red: 49.4 + green: 69.6 + yellow: 83.8 + blue: 56.7 + magenta: 65.7 + cyan: 67.8 + white: 107.7 + brightBlack: 30.4 + brightRed: 49.4 + brightGreen: 69.6 + brightYellow: 83.8 + brightBlue: 56.7 + brightMagenta: 65.7 + brightCyan: 67.8 + brightWhite: 107.7 diff --git a/themes/anemones.yaml b/themes/anemones.yaml new file mode 100644 index 00000000..ccd41873 --- /dev/null +++ b/themes/anemones.yaml @@ -0,0 +1,49 @@ +name: "Anemones" +source: + marketplace_id: "anemones.anemone-colors" + version: "0.0.2" + installs: 378 + author: "anemones" + repo: "https://github.com/radio-alice/anemone-colors" + url: "https://marketplace.visualstudio.com/items?itemName=anemones.anemone-colors" +colors: + bg: "#EAE2FF" + fg: "#150049" + black: "#EAE2FF" + red: "#F14100" + green: "#009892" + yellow: "#750091" + blue: "#007699" + magenta: "#0024F3" + cyan: "#ED0090" + white: "#332063" + brightBlack: "#CCC2E5" + brightRed: "#00BCE1" + brightGreen: "#ED0090" + brightYellow: "#750091" + brightBlue: "#007699" + brightMagenta: "#0024F3" + brightCyan: "#ED0090" + brightWhite: "#150049" +meta: + mode: "light" + accent: "purple" + hue: 298 + contrast: + fg: 89.5 + black: 0 + red: 49.4 + green: 47.7 + yellow: 75.5 + blue: 60.3 + magenta: 71.3 + cyan: 51.4 + white: 85.2 + brightBlack: 15.3 + brightRed: 29.1 + brightGreen: 51.4 + brightYellow: 75.5 + brightBlue: 60.3 + brightMagenta: 71.3 + brightCyan: 51.4 + brightWhite: 89.5 diff --git a/themes/angelnature2.yaml b/themes/angelnature2.yaml new file mode 100644 index 00000000..067e0da5 --- /dev/null +++ b/themes/angelnature2.yaml @@ -0,0 +1,49 @@ +name: "angelnature2" +source: + marketplace_id: "angelcontreras.angelnature2" + version: "0.3.0" + installs: 25 + author: "angelcontreras" + repo: "https://github.com/username/repository" + url: "https://marketplace.visualstudio.com/items?itemName=angelcontreras.angelnature2" +colors: + bg: "#322923" + fg: "#FFE3B8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 56 + contrast: + fg: 88.1 + black: 0 + red: 23.7 + green: 50 + yellow: 82.6 + blue: 24.4 + magenta: 26.8 + cyan: 44.6 + white: 87 + brightBlack: 19.1 + brightRed: 35.6 + brightGreen: 60.6 + brightYellow: 92.7 + brightBlue: 37 + brightMagenta: 42.4 + brightCyan: 52.4 + brightWhite: 87 diff --git a/themes/angrboda-dark.yaml b/themes/angrboda-dark.yaml new file mode 100644 index 00000000..fb1c9e99 --- /dev/null +++ b/themes/angrboda-dark.yaml @@ -0,0 +1,49 @@ +name: "Angrboda Dark" +source: + marketplace_id: "carlssonloke.angrboda" + version: "1.3.1" + installs: 363 + author: "carlssonloke" + repo: "https://github.com/lokecarlsson/Angrboda" + url: "https://marketplace.visualstudio.com/items?itemName=carlssonloke.angrboda" +colors: + bg: "#1E1E1E" + fg: "#F0E8F5" + black: "#F0E8F5" + red: "#FF6478" + green: "#C78FFF" + yellow: "#FF6478" + blue: "#C78FFF" + magenta: "#C78FFF" + cyan: "#F0E8F5" + white: "#1E1E1E" + brightBlack: "#F0E8F5" + brightRed: "#FF6478" + brightGreen: "#C78FFF" + brightYellow: "#FF6478" + brightBlue: "#C78FFF" + brightMagenta: "#C78FFF" + brightCyan: "#F0E8F5" + brightWhite: "#F0E8F5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 92.8 + black: 92.8 + red: 46.1 + green: 53.4 + yellow: 46.1 + blue: 53.4 + magenta: 53.4 + cyan: 92.8 + white: 0 + brightBlack: 92.8 + brightRed: 46.1 + brightGreen: 53.4 + brightYellow: 46.1 + brightBlue: 53.4 + brightMagenta: 53.4 + brightCyan: 92.8 + brightWhite: 92.8 diff --git a/themes/angrboda-light.yaml b/themes/angrboda-light.yaml new file mode 100644 index 00000000..b9b238ff --- /dev/null +++ b/themes/angrboda-light.yaml @@ -0,0 +1,49 @@ +name: "Angrboda Light" +source: + marketplace_id: "carlssonloke.angrboda" + version: "1.3.1" + installs: 363 + author: "carlssonloke" + repo: "https://github.com/lokecarlsson/Angrboda" + url: "https://marketplace.visualstudio.com/items?itemName=carlssonloke.angrboda" +colors: + bg: "#FFFFFF" + fg: "#1A1A1A" + black: "#1A1A1A" + red: "#A01818" + green: "#5A3B94" + yellow: "#A01818" + blue: "#5A3B94" + magenta: "#5A3B94" + cyan: "#FFFFFF" + white: "#1A1A1A" + brightBlack: "#1A1A1A" + brightRed: "#A01818" + brightGreen: "#5A3B94" + brightYellow: "#A01818" + brightBlue: "#5A3B94" + brightMagenta: "#5A3B94" + brightCyan: "#FFFFFF" + brightWhite: "#1A1A1A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 104.3 + black: 104.3 + red: 85.8 + green: 88.7 + yellow: 85.8 + blue: 88.7 + magenta: 88.7 + cyan: 0 + white: 104.3 + brightBlack: 104.3 + brightRed: 85.8 + brightGreen: 88.7 + brightYellow: 85.8 + brightBlue: 88.7 + brightMagenta: 88.7 + brightCyan: 0 + brightWhite: 104.3 diff --git a/themes/angular-dark-theme.yaml b/themes/angular-dark-theme.yaml new file mode 100644 index 00000000..708ca68c --- /dev/null +++ b/themes/angular-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Angular Dark Theme" +source: + marketplace_id: "MichaellAlavedraMunayco.angular-theme" + version: "7.1.1" + installs: 16333 + author: "Michaell Alavedra" + repo: "https://github.com/gitchaell/angular-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MichaellAlavedraMunayco.angular-theme" +colors: + bg: "#09090B" + fg: "#FAFAFA" + black: "#27272A" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#E4E4E7" + brightBlack: "#52525B" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 104.5 + black: 0 + red: 37.7 + green: 57.7 + yellow: 66 + blue: 37.7 + magenta: 35.3 + cyan: 54.8 + white: 90.4 + brightBlack: 15.1 + brightRed: 49 + brightGreen: 71.3 + brightYellow: 78.7 + brightBlue: 52.3 + brightMagenta: 50.6 + brightCyan: 69.5 + brightWhite: 104.5 diff --git a/themes/animatrix.yaml b/themes/animatrix.yaml new file mode 100644 index 00000000..65f2cf1d --- /dev/null +++ b/themes/animatrix.yaml @@ -0,0 +1,49 @@ +name: "Animatrix" +source: + marketplace_id: "KurtDunn.animatrix" + version: "0.0.4" + installs: 6173 + author: "Animatrix" + repo: "https://github.com/kurtisdunn/animatrix" + url: "https://marketplace.visualstudio.com/items?itemName=KurtDunn.animatrix" +colors: + bg: "#0E191C" + fg: "#6CFF75" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 217 + contrast: + fg: 88.5 + black: 0 + red: 26.7 + green: 52.9 + yellow: 85.6 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 90 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 90 diff --git a/themes/animetheme.yaml b/themes/animetheme.yaml new file mode 100644 index 00000000..463360bc --- /dev/null +++ b/themes/animetheme.yaml @@ -0,0 +1,49 @@ +name: "animetheme" +source: + marketplace_id: "animetheme.animetheme" + version: "0.0.2" + installs: 3931 + author: "animetheme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=animetheme.animetheme" +colors: + bg: "#282650" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 283 + contrast: + fg: 76.3 + black: 0 + red: 23.6 + green: 49.9 + yellow: 82.5 + blue: 24.3 + magenta: 26.6 + cyan: 44.4 + white: 86.9 + brightBlack: 18.9 + brightRed: 35.4 + brightGreen: 60.4 + brightYellow: 92.5 + brightBlue: 36.9 + brightMagenta: 42.2 + brightCyan: 52.3 + brightWhite: 86.9 diff --git a/themes/anisochromatic.yaml b/themes/anisochromatic.yaml new file mode 100644 index 00000000..2f80eb56 --- /dev/null +++ b/themes/anisochromatic.yaml @@ -0,0 +1,49 @@ +name: "Anisochromatic" +source: + marketplace_id: "isomorph-research.anisochromatic" + version: "0.0.14" + installs: 424 + author: "Isomorph Research Laboratories" + repo: "https://github.com/isomorph-research/anisochromatic-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=isomorph-research.anisochromatic" +colors: + bg: "#2C313A" + fg: "#F2ECE1" + black: "#EDE7DD" + red: "#E3837A" + green: "#98CC79" + yellow: "#EEC76D" + blue: "#62B5F8" + magenta: "#B083F0" + cyan: "#8FBCB1" + white: "#909DAB" + brightBlack: "#363C47" + brightRed: "#E3837A" + brightGreen: "#98CC79" + brightYellow: "#EFBF8F" + brightBlue: "#62B5F8" + brightMagenta: "#DCBDFB" + brightCyan: "#A4DBF4" + brightWhite: "#EDE7DD" +meta: + mode: "dark" + accent: "magenta" + hue: 262 + contrast: + fg: 90.5 + black: 87.4 + red: 44.6 + green: 62 + yellow: 70.3 + blue: 53.5 + magenta: 42 + cyan: 55.9 + white: 43.2 + brightBlack: 0 + brightRed: 44.6 + brightGreen: 62 + brightYellow: 67.9 + brightBlue: 53.5 + brightMagenta: 68.8 + brightCyan: 74.6 + brightWhite: 87.4 diff --git a/themes/ano-theme-dark.yaml b/themes/ano-theme-dark.yaml new file mode 100644 index 00000000..93170094 --- /dev/null +++ b/themes/ano-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Ano Theme - Dark" +source: + marketplace_id: "MaksymMarholin.ano-theme" + version: "0.1.26" + installs: 1166 + author: "Maksym Marholin" + repo: "https://github.com/delafin/AnoTheme" + url: "https://marketplace.visualstudio.com/items?itemName=MaksymMarholin.ano-theme" +colors: + bg: "#222527" + fg: "#CDD3DE" + black: "#3F4451" + red: "#771818" + green: "#358B52" + yellow: "#D18F52" + blue: "#224C79" + magenta: "#764386" + cyan: "#42B3C2" + white: "#B8BBC0" + brightBlack: "#4F5666" + brightRed: "#9A2E37" + brightGreen: "#3D5D48" + brightYellow: "#E5C07B" + brightBlue: "#5C83AC" + brightMagenta: "#C162DE" + brightCyan: "#62A5C7" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 76.8 + black: 0 + red: 0 + green: 29.9 + yellow: 46.8 + blue: 9.5 + magenta: 14.4 + cyan: 50.7 + white: 62.8 + brightBlack: 13.6 + brightRed: 14.3 + brightGreen: 13.7 + brightYellow: 68.7 + brightBlue: 31.9 + brightMagenta: 37.2 + brightCyan: 46.5 + brightWhite: 88.8 diff --git a/themes/anoldhope.yaml b/themes/anoldhope.yaml new file mode 100644 index 00000000..8a29d766 --- /dev/null +++ b/themes/anoldhope.yaml @@ -0,0 +1,49 @@ +name: "AnOldHope" +source: + marketplace_id: "dustinsanders.an-old-hope-theme-vscode" + version: "4.4.0" + installs: 102953 + author: "Dustin Sanders" + repo: "https://github.com/git@github.com:dustinsanders/an-old-hope-theme-vscode.git" + url: "https://marketplace.visualstudio.com/items?itemName=dustinsanders.an-old-hope-theme-vscode" +colors: + bg: "#1C1D21" + fg: "#CBCDD2" + black: "#818491" + red: "#EB3D54" + green: "#78BD65" + yellow: "#E5CD52" + blue: "#4FB4D8" + magenta: "#EB3D54" + cyan: "#4FB4D8" + white: "#CBCDD2" + brightBlack: "#818491" + brightRed: "#EB3D54" + brightGreen: "#78BD65" + brightYellow: "#E5CD52" + brightBlue: "#4FB4D8" + brightMagenta: "#78BD65" + brightCyan: "#4FB4D8" + brightWhite: "#CBCDD2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 74.5 + black: 35.1 + red: 34.6 + green: 55.9 + yellow: 74.6 + blue: 53.8 + magenta: 34.6 + cyan: 53.8 + white: 74.5 + brightBlack: 35.1 + brightRed: 34.6 + brightGreen: 55.9 + brightYellow: 74.6 + brightBlue: 53.8 + brightMagenta: 55.9 + brightCyan: 53.8 + brightWhite: 74.5 diff --git a/themes/anquyx-fork.yaml b/themes/anquyx-fork.yaml new file mode 100644 index 00000000..ef912ae0 --- /dev/null +++ b/themes/anquyx-fork.yaml @@ -0,0 +1,49 @@ +name: "anquyx - Fork" +source: + marketplace_id: "julisales.anquyx-theme" + version: "2.0.0" + installs: 39 + author: "julisales" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=julisales.anquyx-theme" +colors: + bg: "#1A1727" + fg: "#FFFBFB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#B8B8B8" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 292 + contrast: + fg: 104.5 + black: 0 + red: 26.5 + green: 52.7 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 62.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.8 diff --git a/themes/anthropic-dark.yaml b/themes/anthropic-dark.yaml new file mode 100644 index 00000000..a432fa66 --- /dev/null +++ b/themes/anthropic-dark.yaml @@ -0,0 +1,49 @@ +name: "Anthropic Dark" +source: + marketplace_id: "TeoVoss.antzed-theme" + version: "1.1.1" + installs: 136 + author: "TeoVoss" + repo: "https://github.com/TeoVoss/antzed-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TeoVoss.antzed-theme" +colors: + bg: "#151412" + fg: "#F0EDE3" + black: "#151412" + red: "#E68868" + green: "#9FB980" + yellow: "#E9B868" + blue: "#7AACDD" + magenta: "#E68868" + cyan: "#7AACDD" + white: "#F0EDE3" + brightBlack: "#6A6760" + brightRed: "#F09978" + brightGreen: "#AFC990" + brightYellow: "#F9C978" + brightBlue: "#8ABDEE" + brightMagenta: "#F09978" + brightCyan: "#8ABDEE" + brightWhite: "#FAF9F5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 95.3 + black: 0 + red: 50.8 + green: 59.1 + yellow: 67.9 + blue: 54.2 + magenta: 50.8 + cyan: 54.2 + white: 95.3 + brightBlack: 22.8 + brightRed: 58.3 + brightGreen: 68.1 + brightYellow: 77.6 + brightBlue: 63.4 + brightMagenta: 58.3 + brightCyan: 63.4 + brightWhite: 103.1 diff --git a/themes/anthropic-light.yaml b/themes/anthropic-light.yaml new file mode 100644 index 00000000..c50724fa --- /dev/null +++ b/themes/anthropic-light.yaml @@ -0,0 +1,49 @@ +name: "Anthropic Light" +source: + marketplace_id: "TeoVoss.antzed-theme" + version: "1.1.1" + installs: 136 + author: "TeoVoss" + repo: "https://github.com/TeoVoss/antzed-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TeoVoss.antzed-theme" +colors: + bg: "#FAF9F5" + fg: "#141413" + black: "#141413" + red: "#D97757" + green: "#788C5D" + yellow: "#D97757" + blue: "#6A9BCC" + magenta: "#D97757" + cyan: "#6A9BCC" + white: "#FAF9F5" + brightBlack: "#B0AEA5" + brightRed: "#D97757" + brightGreen: "#788C5D" + brightYellow: "#D97757" + brightBlue: "#6A9BCC" + brightMagenta: "#D97757" + brightCyan: "#6A9BCC" + brightWhite: "#FAF9F5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.4 + black: 101.4 + red: 54.2 + green: 60.7 + yellow: 54.2 + blue: 52 + magenta: 54.2 + cyan: 52 + white: 0 + brightBlack: 40.2 + brightRed: 54.2 + brightGreen: 60.7 + brightYellow: 54.2 + brightBlue: 52 + brightMagenta: 54.2 + brightCyan: 52 + brightWhite: 0 diff --git a/themes/anthropic.yaml b/themes/anthropic.yaml new file mode 100644 index 00000000..2e7fa77d --- /dev/null +++ b/themes/anthropic.yaml @@ -0,0 +1,49 @@ +name: "Anthropic" +source: + marketplace_id: "bryanr.anthropic-theme" + version: "0.0.1" + installs: 966 + author: "Bryan Russett" + repo: "https://github.com/od0/anthropic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bryanr.anthropic-theme" +colors: + bg: "#1B1815" + fg: "#D9CCCC" + black: "#1F1F1F" + red: "#CC6F4E" + green: "#CCA699" + yellow: "#D2A17D" + blue: "#CCB3B3" + magenta: "#CC7373" + cyan: "#D9CCCC" + white: "#D9CCCC" + brightBlack: "#353535" + brightRed: "#D87B61" + brightGreen: "#E2CCC0" + brightYellow: "#F2C6AE" + brightBlue: "#E0D3D3" + brightMagenta: "#E0A5A5" + brightCyan: "#EAE2E2" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 76.2 + black: 0 + red: 38 + green: 57.4 + yellow: 55.7 + blue: 63.3 + magenta: 39.9 + cyan: 76.2 + white: 76.2 + brightBlack: 0 + brightRed: 43.8 + brightGreen: 77 + brightYellow: 76.3 + brightBlue: 80.5 + brightMagenta: 60.5 + brightCyan: 89.1 + brightWhite: 98.2 diff --git a/themes/anthropocene.yaml b/themes/anthropocene.yaml new file mode 100644 index 00000000..1c7d95f5 --- /dev/null +++ b/themes/anthropocene.yaml @@ -0,0 +1,49 @@ +name: "anthropocene" +source: + marketplace_id: "ridamu.anthropocene" + version: "0.0.1" + installs: 150 + author: "ridamu" + repo: "https://github.com/rdmulford/anthropocene" + url: "https://marketplace.visualstudio.com/items?itemName=ridamu.anthropocene" +colors: + bg: "#141517" + fg: "#ECEDEF" + black: "#0C0D0F" + red: "#362C34" + green: "#A8849E" + yellow: "#D2AA9D" + blue: "#6CB0C7" + magenta: "#FD00FB" + cyan: "#E3AAD5" + white: "#ECEDEF" + brightBlack: "#0C0D0F" + brightRed: "#362C34" + brightGreen: "#A8849E" + brightYellow: "#D2AA9D" + brightBlue: "#6CB0C7" + brightMagenta: "#FD00FB" + brightCyan: "#E3AAD5" + brightWhite: "#ECEDEF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 95.3 + black: 0 + red: 0 + green: 41.1 + yellow: 60.3 + blue: 53.6 + magenta: 44.6 + cyan: 65.2 + white: 95.3 + brightBlack: 0 + brightRed: 0 + brightGreen: 41.1 + brightYellow: 60.3 + brightBlue: 53.6 + brightMagenta: 44.6 + brightCyan: 65.2 + brightWhite: 95.3 diff --git a/themes/anti-glare-moonlit.yaml b/themes/anti-glare-moonlit.yaml new file mode 100644 index 00000000..911496dd --- /dev/null +++ b/themes/anti-glare-moonlit.yaml @@ -0,0 +1,49 @@ +name: "anti-glare-moonlit" +source: + marketplace_id: "azmarifdev.anti-glare-theme" + version: "1.7.0" + installs: 759 + author: "A. Z. M. Arif" + repo: "https://github.com/azmarifdev/anti-glare-theme" + url: "https://marketplace.visualstudio.com/items?itemName=azmarifdev.anti-glare-theme" +colors: + bg: "#01192E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 247 + contrast: + fg: 79.2 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.8 diff --git a/themes/anti-glare-nebula.yaml b/themes/anti-glare-nebula.yaml new file mode 100644 index 00000000..769b7db3 --- /dev/null +++ b/themes/anti-glare-nebula.yaml @@ -0,0 +1,49 @@ +name: "anti-glare-nebula" +source: + marketplace_id: "azmarifdev.anti-glare-theme" + version: "1.7.0" + installs: 759 + author: "A. Z. M. Arif" + repo: "https://github.com/azmarifdev/anti-glare-theme" + url: "https://marketplace.visualstudio.com/items?itemName=azmarifdev.anti-glare-theme" +colors: + bg: "#001C35" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 248 + contrast: + fg: 78.8 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.1 + cyan: 46.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 37.9 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.7 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/anti-glare-official.yaml b/themes/anti-glare-official.yaml new file mode 100644 index 00000000..0c4d899a --- /dev/null +++ b/themes/anti-glare-official.yaml @@ -0,0 +1,49 @@ +name: "anti-glare-official" +source: + marketplace_id: "azmarifdev.anti-glare-theme" + version: "1.7.0" + installs: 759 + author: "A. Z. M. Arif" + repo: "https://github.com/azmarifdev/anti-glare-theme" + url: "https://marketplace.visualstudio.com/items?itemName=azmarifdev.anti-glare-theme" +colors: + bg: "#001322" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 242 + contrast: + fg: 79.8 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.4 diff --git a/themes/anti-gravity-pink.yaml b/themes/anti-gravity-pink.yaml new file mode 100644 index 00000000..865deb83 --- /dev/null +++ b/themes/anti-gravity-pink.yaml @@ -0,0 +1,49 @@ +name: "Anti-Gravity Pink" +source: + marketplace_id: "hap4114.antigravity-pink" + version: "0.1.0" + installs: 117 + author: "Himani Anil Patil" + repo: "https://github.com/hap4114/antigravity-pink" + url: "https://marketplace.visualstudio.com/items?itemName=hap4114.antigravity-pink" +colors: + bg: "#0D0010" + fg: "#FFFFFF" + black: "#1A0025" + red: "#FF2D78" + green: "#FF79C6" + yellow: "#FFB3DE" + blue: "#C084FC" + magenta: "#FF2D78" + cyan: "#D485F5" + white: "#FFD6EC" + brightBlack: "#7B3F6E" + brightRed: "#FF6EB4" + brightGreen: "#FF6EB4" + brightYellow: "#FFD6EC" + brightBlue: "#D485F5" + brightMagenta: "#FF6EB4" + brightCyan: "#CF6BFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 322 + contrast: + fg: 107.8 + black: 0 + red: 40.3 + green: 55.5 + yellow: 74.3 + blue: 50.6 + magenta: 40.3 + cyan: 53.5 + white: 88.6 + brightBlack: 16 + brightRed: 52.1 + brightGreen: 52.1 + brightYellow: 88.6 + brightBlue: 53.5 + brightMagenta: 52.1 + brightCyan: 46.7 + brightWhite: 107.8 diff --git a/themes/antidote.yaml b/themes/antidote.yaml new file mode 100644 index 00000000..71499248 --- /dev/null +++ b/themes/antidote.yaml @@ -0,0 +1,49 @@ +name: "Antidote" +source: + marketplace_id: "philecker.antidote" + version: "2.0.1" + installs: 884 + author: "Phil Ecker" + repo: "https://github.com/philecker/antidote" + url: "https://marketplace.visualstudio.com/items?itemName=philecker.antidote" +colors: + bg: "#181818" + fg: "#B3B3B3" + black: "#282A36" + red: "#FF5C57" + green: "#66BE84" + yellow: "#F3F99D" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#F1F1F0" + brightBlack: "#686868" + brightRed: "#FF5C57" + brightGreen: "#66BE84" + brightYellow: "#F3F99D" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 60.1 + black: 0 + red: 44.6 + green: 56.5 + yellow: 98.6 + blue: 65.3 + magenta: 50.8 + cyan: 86.9 + white: 97.5 + brightBlack: 22.8 + brightRed: 44.6 + brightGreen: 56.5 + brightYellow: 98.6 + brightBlue: 65.3 + brightMagenta: 50.8 + brightCyan: 86.9 + brightWhite: 96.6 diff --git a/themes/antimaterial.yaml b/themes/antimaterial.yaml new file mode 100644 index 00000000..a1a72a3b --- /dev/null +++ b/themes/antimaterial.yaml @@ -0,0 +1,49 @@ +name: "Antimaterial" +source: + marketplace_id: "tatyshev.vscode-antimaterial" + version: "2.2.0" + installs: 1032 + author: "tatyshev" + repo: "https://github.com/tatyshev/vscode-antimaterial" + url: "https://marketplace.visualstudio.com/items?itemName=tatyshev.vscode-antimaterial" +colors: + bg: "#263238" + fg: "#D5DEE2" + black: "#546E7A" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 230 + contrast: + fg: 80.5 + black: 19.7 + red: 39.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 102.7 + brightBlack: 19.7 + brightRed: 39.4 + brightGreen: 80 + brightYellow: 74.7 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/anubis-dark-theme.yaml b/themes/anubis-dark-theme.yaml new file mode 100644 index 00000000..75cf80a7 --- /dev/null +++ b/themes/anubis-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Anubis Dark Theme" +source: + marketplace_id: "MoAli.anubis-dark-theme" + version: "0.0.1" + installs: 265 + author: "Mo Ali" + repo: "https://github.com/devMoAli/AnubisDarkTheme" + url: "https://marketplace.visualstudio.com/items?itemName=MoAli.anubis-dark-theme" +colors: + bg: "#000000" + fg: "#CDCDCD" + black: "#585858" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C9C9C9" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 76.3 + black: 17.3 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 73.9 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/anubis-dark.yaml b/themes/anubis-dark.yaml new file mode 100644 index 00000000..e9825365 --- /dev/null +++ b/themes/anubis-dark.yaml @@ -0,0 +1,49 @@ +name: "Anubis Dark" +source: + marketplace_id: "Meastblue.orbital-frame" + version: "2.2.0" + installs: 66 + author: "Meastblue" + repo: "https://github.com/meastblue/orbital-frame-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" +colors: + bg: "#0D0D0D" + fg: "#F5F5F5" + black: "#1A1A1A" + red: "#B91C1C" + green: "#228B22" + yellow: "#FF6B35" + blue: "#0000CD" + magenta: "#8B008B" + cyan: "#008B8B" + white: "#F5F5F5" + brightBlack: "#666666" + brightRed: "#DC2626" + brightGreen: "#32CD32" + brightYellow: "#FF8500" + brightBlue: "#4169E1" + brightMagenta: "#9370DB" + brightCyan: "#00BFFF" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 101 + black: 0 + red: 21.4 + green: 31.5 + yellow: 48 + blue: 9.8 + magenta: 14.8 + cyan: 33.5 + white: 101 + brightBlack: 22.8 + brightRed: 29.8 + brightGreen: 61.1 + brightYellow: 54.4 + brightBlue: 28.3 + brightMagenta: 36.4 + brightCyan: 61.1 + brightWhite: 101 diff --git a/themes/anubis-light.yaml b/themes/anubis-light.yaml new file mode 100644 index 00000000..c243145b --- /dev/null +++ b/themes/anubis-light.yaml @@ -0,0 +1,49 @@ +name: "Anubis Light" +source: + marketplace_id: "Meastblue.orbital-frame" + version: "2.2.0" + installs: 66 + author: "Meastblue" + repo: "https://github.com/meastblue/orbital-frame-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" +colors: + bg: "#FFFFFF" + fg: "#1A1A1A" + black: "#1F2937" + red: "#B91C1C" + green: "#059669" + yellow: "#D97706" + blue: "#1D4ED8" + magenta: "#9333EA" + cyan: "#0891B2" + white: "#F5F5F5" + brightBlack: "#6B7280" + brightRed: "#DC2626" + brightGreen: "#16A34A" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#C026D3" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 104.3 + black: 101.5 + red: 80.2 + green: 64.6 + yellow: 58.5 + blue: 82.2 + magenta: 75.6 + cyan: 63.8 + white: 0 + brightBlack: 73.6 + brightRed: 71.6 + brightGreen: 59.7 + brightYellow: 41.8 + brightBlue: 63.9 + brightMagenta: 71.1 + brightCyan: 47.1 + brightWhite: 0 diff --git a/themes/anufemist-dark.yaml b/themes/anufemist-dark.yaml new file mode 100644 index 00000000..eed4e874 --- /dev/null +++ b/themes/anufemist-dark.yaml @@ -0,0 +1,49 @@ +name: "Anufemist Dark" +source: + marketplace_id: "Anufemist.anufemist-dark" + version: "2.1.0" + installs: 50 + author: "Anufemist" + repo: "https://github.com/anufemist/vscode-theme-anufemist-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Anufemist.anufemist-dark" +colors: + bg: "#151515" + fg: "#DDDDDD" + black: "#000000" + red: "#DD3131" + green: "#31DE3F" + yellow: "#DEA731" + blue: "#314EDE" + magenta: "#DE319C" + cyan: "#31DEDE" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#FF4D4D" + brightGreen: "#4DFF5B" + brightYellow: "#FFC64D" + brightBlue: "#4D6AFF" + brightMagenta: "#FF4DBB" + brightCyan: "#4DFFFF" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 85.2 + black: 0 + red: 30.5 + green: 69 + yellow: 58.9 + blue: 20 + magenta: 33.6 + cyan: 73.4 + white: 85.2 + brightBlack: 22.2 + brightRed: 42.2 + brightGreen: 87.1 + brightYellow: 76.7 + brightBlue: 31.2 + brightMagenta: 45.7 + brightCyan: 92.3 + brightWhite: 95.9 diff --git a/themes/anya.yaml b/themes/anya.yaml new file mode 100644 index 00000000..718b36f1 --- /dev/null +++ b/themes/anya.yaml @@ -0,0 +1,49 @@ +name: "Anya" +source: + marketplace_id: "choednwn.anya" + version: "0.0.8" + installs: 331 + author: "choednwn" + repo: "https://github.com/anya-theme/anya-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=choednwn.anya" +colors: + bg: "#1E1E1E" + fg: "#CCCCCC" + black: "#282727" + red: "#E05656" + green: "#69AD7A" + yellow: "#DDB96C" + blue: "#6396BD" + magenta: "#DB89C0" + cyan: "#61AC93" + white: "#DDDDDD" + brightBlack: "#444444" + brightRed: "#E05656" + brightGreen: "#69AD7A" + brightYellow: "#DDB96C" + brightBlue: "#6396BD" + brightMagenta: "#DB89C0" + brightCyan: "#61AC93" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.8 + black: 0 + red: 35.8 + green: 48.2 + yellow: 65.4 + blue: 41.2 + magenta: 51 + cyan: 48.1 + white: 84.2 + brightBlack: 8 + brightRed: 35.8 + brightGreen: 48.2 + brightYellow: 65.4 + brightBlue: 41.2 + brightMagenta: 51 + brightCyan: 48.1 + brightWhite: 88.6 diff --git a/themes/apathy-experimental.yaml b/themes/apathy-experimental.yaml new file mode 100644 index 00000000..fa3be2ac --- /dev/null +++ b/themes/apathy-experimental.yaml @@ -0,0 +1,49 @@ +name: "Apathy Experimental" +source: + marketplace_id: "CooperMaruyama.apathy-theme" + version: "2.3.0" + installs: 263 + author: "Cooper Maruyama" + repo: "https://github.com/coopmoney/apathy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CooperMaruyama.apathy-theme" +colors: + bg: "#12121C" + fg: "#E1E2E5" + black: "#2A273F" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#ECEFF4" + brightBlack: "#3B3853" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 88.5 + black: 0 + red: 46.9 + green: 84.5 + yellow: 79.3 + blue: 56.3 + magenta: 54.1 + cyan: 78.6 + white: 96.6 + brightBlack: 0 + brightRed: 44 + brightGreen: 84.5 + brightYellow: 79.3 + brightBlue: 56.3 + brightMagenta: 54.1 + brightCyan: 78.6 + brightWhite: 107.2 diff --git a/themes/apathy.yaml b/themes/apathy.yaml new file mode 100644 index 00000000..7bedbac8 --- /dev/null +++ b/themes/apathy.yaml @@ -0,0 +1,49 @@ +name: "Apathy" +source: + marketplace_id: "CooperMaruyama.apathy-theme" + version: "2.3.0" + installs: 263 + author: "Cooper Maruyama" + repo: "https://github.com/coopmoney/apathy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CooperMaruyama.apathy-theme" +colors: + bg: "#0E0E15" + fg: "#8E93B0" + black: "#2A273F" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#D1D3D9" + brightBlack: "#3F3B5A" + brightRed: "#FF6B82" + brightGreen: "#D7F2A6" + brightYellow: "#FFE082" + brightBlue: "#9EC3FF" + brightMagenta: "#DDA4FF" + brightCyan: "#A3EEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 44.4 + black: 0 + red: 47.2 + green: 84.8 + yellow: 79.6 + blue: 56.6 + magenta: 54.4 + cyan: 78.9 + white: 79.5 + brightBlack: 7.7 + brightRed: 49.3 + brightGreen: 92.6 + brightYellow: 89 + brightBlue: 69.1 + brightMagenta: 65 + brightCyan: 89 + brightWhite: 107.5 diff --git a/themes/apcodespaces.yaml b/themes/apcodespaces.yaml new file mode 100644 index 00000000..1e808f28 --- /dev/null +++ b/themes/apcodespaces.yaml @@ -0,0 +1,49 @@ +name: "APcodespaces" +source: + marketplace_id: "ap-dev.theme-customs" + version: "1.7.3" + installs: 197 + author: "AP" + repo: "https://github.com/MrParindiyal/apcodespaces-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ap-dev.theme-customs" +colors: + bg: "#021B21" + fg: "#D4D4D4" + black: "#073642" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#53D77A" + brightYellow: "#F7FF00" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 216 + contrast: + fg: 79.3 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 36.5 + magenta: 30.2 + cyan: 42.2 + white: 91.7 + brightBlack: 0 + brightRed: 29.4 + brightGreen: 67 + brightYellow: 100.3 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/apex.yaml b/themes/apex.yaml new file mode 100644 index 00000000..e2090a18 --- /dev/null +++ b/themes/apex.yaml @@ -0,0 +1,49 @@ +name: "Apex" +source: + marketplace_id: "FluffyBear1111.apex-theme" + version: "1.0.0" + installs: 160 + author: "FluffyBear" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=FluffyBear1111.apex-theme" +colors: + bg: "#23272C" + fg: "#D9D9D9" + black: "#2C3035" + red: "#FF4444" + green: "#78D34E" + yellow: "#F4D300" + blue: "#32B6E6" + magenta: "#C04BFF" + cyan: "#18FAC9" + white: "#D9D9D9" + brightBlack: "#757575" + brightRed: "#FF5555" + brightGreen: "#88E35E" + brightYellow: "#FFE310" + brightBlue: "#42C6F6" + brightMagenta: "#D05BFF" + brightCyan: "#28FAD9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 254 + contrast: + fg: 80.4 + black: 0 + red: 38.4 + green: 64.2 + yellow: 77.6 + blue: 53.1 + magenta: 35 + cyan: 84 + white: 80.4 + brightBlack: 26.5 + brightRed: 41.2 + brightGreen: 73.3 + brightYellow: 86.4 + brightBlue: 61.5 + brightMagenta: 40.5 + brightCyan: 84.8 + brightWhite: 104.7 diff --git a/themes/apollo-dark.yaml b/themes/apollo-dark.yaml new file mode 100644 index 00000000..09f34e5b --- /dev/null +++ b/themes/apollo-dark.yaml @@ -0,0 +1,49 @@ +name: "Apollo Dark" +source: + marketplace_id: "lufutu.apollo-theme" + version: "1.0.0" + installs: 148 + author: "lufutu" + repo: "https://github.com/lufutu/apollo-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lufutu.apollo-theme" +colors: + bg: "#090A14" + fg: "#EBEDE9" + black: "#090A14" + red: "#CF573C" + green: "#75A743" + yellow: "#DE9E41" + blue: "#4F8FBA" + magenta: "#C65197" + cyan: "#73BED3" + white: "#EBEDE9" + brightBlack: "#394A50" + brightRed: "#DA863E" + brightGreen: "#A8CA58" + brightYellow: "#E8C170" + brightBlue: "#73BED3" + brightMagenta: "#DF84A5" + brightCyan: "#A4DDDB" + brightWhite: "#EBEDE9" +meta: + mode: "dark" + accent: "red" + hue: 279 + contrast: + fg: 95.5 + black: 0 + red: 33.8 + green: 47.1 + yellow: 56.5 + blue: 38.9 + magenta: 33.3 + cyan: 61.3 + white: 95.5 + brightBlack: 10.8 + brightRed: 47.9 + brightGreen: 67.2 + brightYellow: 72 + brightBlue: 61.3 + brightMagenta: 50.7 + brightCyan: 79.4 + brightWhite: 95.5 diff --git a/themes/apollo-light.yaml b/themes/apollo-light.yaml new file mode 100644 index 00000000..4c821e4d --- /dev/null +++ b/themes/apollo-light.yaml @@ -0,0 +1,49 @@ +name: "Apollo Light" +source: + marketplace_id: "lufutu.apollo-theme" + version: "1.0.0" + installs: 148 + author: "lufutu" + repo: "https://github.com/lufutu/apollo-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lufutu.apollo-theme" +colors: + bg: "#EBEDE9" + fg: "#090A14" + black: "#090A14" + red: "#CF573C" + green: "#75A743" + yellow: "#DE9E41" + blue: "#4F8FBA" + magenta: "#C65197" + cyan: "#73BED3" + white: "#EBEDE9" + brightBlack: "#577277" + brightRed: "#DA863E" + brightGreen: "#A8CA58" + brightYellow: "#E8C170" + brightBlue: "#73BED3" + brightMagenta: "#DF84A5" + brightCyan: "#A4DDDB" + brightWhite: "#EBEDE9" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 94.7 + black: 94.7 + red: 56.6 + green: 43.4 + yellow: 34.3 + blue: 51.5 + magenta: 57 + cyan: 29.7 + white: 0 + brightBlack: 64.4 + brightRed: 42.7 + brightGreen: 24.1 + brightYellow: 19.5 + brightBlue: 29.7 + brightMagenta: 39.9 + brightCyan: 12.5 + brightWhite: 0 diff --git a/themes/apparently-purple.yaml b/themes/apparently-purple.yaml new file mode 100644 index 00000000..ed4e9cdb --- /dev/null +++ b/themes/apparently-purple.yaml @@ -0,0 +1,49 @@ +name: "Apparently Purple" +source: + marketplace_id: "ApparentlyStudio.apparently-purple" + version: "1.0.3" + installs: 4455 + author: "Apparently Studio" + repo: "https://github.com/apparently-studio/apparently-purple" + url: "https://marketplace.visualstudio.com/items?itemName=ApparentlyStudio.apparently-purple" +colors: + bg: "#1B1436" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 290 + contrast: + fg: 106.5 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.6 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/apple-dancheong-minimal-light.yaml b/themes/apple-dancheong-minimal-light.yaml new file mode 100644 index 00000000..e9b184c3 --- /dev/null +++ b/themes/apple-dancheong-minimal-light.yaml @@ -0,0 +1,49 @@ +name: "apple-dancheong-minimal-light" +source: + marketplace_id: "weston0713.korean-dancheong-light" + version: "1.1.0" + installs: 73 + author: "weston0713" + repo: "https://github.com/HC-kang/korean-dancheong-light" + url: "https://marketplace.visualstudio.com/items?itemName=weston0713.korean-dancheong-light" +colors: + bg: "#ECF3ED" + fg: "#333333" + black: "#000000" + red: "#C24141" + green: "#2E7D32" + yellow: "#B8860B" + blue: "#116AEE" + magenta: "#AF52DE" + cyan: "#00A8A8" + white: "#EAF0EC" + brightBlack: "#636366" + brightRed: "#FF3B30" + brightGreen: "#4CD164" + brightYellow: "#FFD60A" + brightBlue: "#0A84FF" + brightMagenta: "#BF5AF2" + brightCyan: "#64D2FF" + brightWhite: "#ECF3ED" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 90.4 + black: 97.8 + red: 65.9 + green: 66.8 + yellow: 51.3 + blue: 64.6 + magenta: 59.5 + cyan: 46.8 + white: 0 + brightBlack: 71.7 + brightRed: 53.1 + brightGreen: 29.5 + brightYellow: 11.4 + brightBlue: 55 + brightMagenta: 53.9 + brightCyan: 22.5 + brightWhite: 0 diff --git a/themes/apprentice.yaml b/themes/apprentice.yaml new file mode 100644 index 00000000..b4bbc46f --- /dev/null +++ b/themes/apprentice.yaml @@ -0,0 +1,49 @@ +name: "Apprentice" +source: + marketplace_id: "arzg.apprentice" + version: "1.3.0" + installs: 660 + author: "arzg" + repo: "https://github.com/arzg/apprentice-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=arzg.apprentice" +colors: + bg: "#262626" + fg: "#BCBCBC" + black: "#1C1C1C" + red: "#AF5F5F" + green: "#5F875F" + yellow: "#87875F" + blue: "#5F87AF" + magenta: "#5F5F87" + cyan: "#5F8787" + white: "#BCBCBC" + brightBlack: "#444444" + brightRed: "#FF8700" + brightGreen: "#87AF87" + brightYellow: "#FFFFAF" + brightBlue: "#87AFD7" + brightMagenta: "#8787AF" + brightCyan: "#5FAFAF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 63.2 + black: 0 + red: 27.4 + green: 30.4 + yellow: 33.9 + blue: 33.4 + magenta: 18.6 + cyan: 31.6 + white: 63.2 + brightBlack: 0 + brightRed: 52.1 + brightGreen: 50.4 + brightYellow: 101.7 + brightBlue: 53.8 + brightMagenta: 36.7 + brightCyan: 49.1 + brightWhite: 104.8 diff --git a/themes/april-dark-theme.yaml b/themes/april-dark-theme.yaml new file mode 100644 index 00000000..2183c28b --- /dev/null +++ b/themes/april-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "April Dark Theme" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#1E2230" + fg: "#EBECF2" + black: "#303C50" + red: "#C05E5E" + green: "#8EB06E" + yellow: "#E6BF6D" + blue: "#6D91C3" + magenta: "#AC8BAE" + cyan: "#74A4CF" + white: "#EBEDF4" + brightBlack: "#4C5767" + brightRed: "#C05E5E" + brightGreen: "#97C17D" + brightYellow: "#E6D07C" + brightBlue: "#7DA3D1" + brightMagenta: "#B79BC0" + brightCyan: "#84B4DB" + brightWhite: "#EBEDF4" +meta: + mode: "dark" + accent: "orange" + hue: 272 + contrast: + fg: 93.1 + black: 0 + red: 30.7 + green: 51.4 + yellow: 68.5 + blue: 39.6 + magenta: 42.9 + cyan: 48 + white: 93.7 + brightBlack: 14.1 + brightRed: 30.7 + brightGreen: 59.9 + brightYellow: 75.9 + brightBlue: 48.4 + brightMagenta: 50.7 + brightCyan: 56.4 + brightWhite: 93.7 diff --git a/themes/aquamain.yaml b/themes/aquamain.yaml new file mode 100644 index 00000000..830ded77 --- /dev/null +++ b/themes/aquamain.yaml @@ -0,0 +1,49 @@ +name: "AquaMain" +source: + marketplace_id: "JohnnyBoySou.aqua-main" + version: "0.0.9" + installs: 1646 + author: "JohnnyBoySou" + repo: "https://github.com/JohnnyBoySou/aqua-main" + url: "https://marketplace.visualstudio.com/items?itemName=JohnnyBoySou.aqua-main" +colors: + bg: "#11172C" + fg: "#FFFFFF" + black: "#A5A5A5" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + contrast: + fg: 106.7 + black: 52.4 + red: 26.6 + green: 52.8 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.9 diff --git a/themes/aquanova.yaml b/themes/aquanova.yaml new file mode 100644 index 00000000..5fa8ad35 --- /dev/null +++ b/themes/aquanova.yaml @@ -0,0 +1,49 @@ +name: "AquaNova" +source: + marketplace_id: "AarMagic.aquanova" + version: "0.0.5" + installs: 231 + author: "AarWeb" + repo: "https://github.com/aarweb/aquanova" + url: "https://marketplace.visualstudio.com/items?itemName=AarMagic.aquanova" +colors: + bg: "#111010" + fg: "#D7D7D7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 81.9 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/arabian-nights.yaml b/themes/arabian-nights.yaml new file mode 100644 index 00000000..d5ee7648 --- /dev/null +++ b/themes/arabian-nights.yaml @@ -0,0 +1,49 @@ +name: "Arabian Nights" +source: + marketplace_id: "andrejkoller.arabian-nights-theme" + version: "1.0.4" + installs: 132 + author: "andrejkoller" + repo: "https://github.com/andrejkoller/arabian-nights-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrejkoller.arabian-nights-theme" +colors: + bg: "#3B3446" + fg: "#F4F2F8" + black: "#1E1B26" + red: "#A84C4C" + green: "#5C8762" + yellow: "#D09B38" + blue: "#6E94C1" + magenta: "#9C70B3" + cyan: "#5FB9B0" + white: "#E0D9D1" + brightBlack: "#3A3240" + brightRed: "#D65F5F" + brightGreen: "#87AF87" + brightYellow: "#F2C66D" + brightBlue: "#8FBCE6" + brightMagenta: "#C08CD7" + brightCyan: "#8BDAD5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 302 + contrast: + fg: 92.9 + black: 0 + red: 17.7 + green: 26.4 + yellow: 46.2 + blue: 36.2 + magenta: 28.3 + cyan: 49.5 + white: 77.1 + brightBlack: 0 + brightRed: 30.6 + brightGreen: 46.5 + brightYellow: 68.7 + brightBlue: 56.7 + brightMagenta: 43.7 + brightCyan: 68.8 + brightWhite: 100.8 diff --git a/themes/arabian-theme.yaml b/themes/arabian-theme.yaml new file mode 100644 index 00000000..93a5af82 --- /dev/null +++ b/themes/arabian-theme.yaml @@ -0,0 +1,49 @@ +name: "arabian-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#ECCB8E" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 82 + contrast: + fg: 78.3 + black: 78.3 + red: 46.3 + green: 21.5 + yellow: 30.2 + blue: 58.3 + magenta: 46.8 + cyan: 32.9 + white: 58.2 + brightBlack: 51 + brightRed: 46.3 + brightGreen: 13.2 + brightYellow: 13.2 + brightBlue: 58.3 + brightMagenta: 46.8 + brightCyan: 32.9 + brightWhite: 20.7 diff --git a/themes/arc-dark.yaml b/themes/arc-dark.yaml new file mode 100644 index 00000000..02c44ad5 --- /dev/null +++ b/themes/arc-dark.yaml @@ -0,0 +1,49 @@ +name: "Arc Dark" +source: + marketplace_id: "rdnlsmith.linux-themes" + version: "1.3.0" + installs: 41699 + author: "rdnlsmith" + repo: "https://github.com/rdnlsmith/vscode-arc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" +colors: + bg: "#383C4A" + fg: "#A2A2A2" + black: "#262B36" + red: "#9C3528" + green: "#61BC3B" + yellow: "#F3B43A" + blue: "#0D68A8" + magenta: "#744560" + cyan: "#288E9C" + white: "#A2A2A2" + brightBlack: "#2F343F" + brightRed: "#D64937" + brightGreen: "#86DF5D" + brightYellow: "#FDD75A" + brightBlue: "#0F75BD" + brightMagenta: "#9E5E83" + brightCyan: "#37C3D6" + brightWhite: "#F9F9F9" +meta: + mode: "dark" + accent: "green" + hue: 273 + contrast: + fg: 43.3 + black: 0 + red: 9.6 + green: 46.5 + yellow: 59.6 + blue: 14.2 + magenta: 0 + cyan: 27.3 + white: 43.3 + brightBlack: 0 + brightRed: 24.2 + brightGreen: 65.7 + brightYellow: 75.8 + brightBlue: 19.8 + brightMagenta: 20 + brightCyan: 52.7 + brightWhite: 95.3 diff --git a/themes/arcadia-theme-dark.yaml b/themes/arcadia-theme-dark.yaml new file mode 100644 index 00000000..c8734d6d --- /dev/null +++ b/themes/arcadia-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Arcadia Theme Dark" +source: + marketplace_id: "Kodi.arcadia-theme" + version: "1.3.2" + installs: 1149 + author: "Moti" + repo: "https://github.com/motidev/arcadia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Kodi.arcadia-theme" +colors: + bg: "#1E2227" + fg: "#9DA5B4" + black: "#6B717D" + red: "#E06C75" + green: "#5D9B5F" + yellow: "#CC9343" + blue: "#4DADB9" + magenta: "#8780D8" + cyan: "#4DADB9" + white: "#D7DAE0" + brightBlack: "#6B717D" + brightRed: "#E06C75" + brightGreen: "#5D9B5F" + brightYellow: "#CC9343" + brightBlue: "#4DADB9" + brightMagenta: "#8780D8" + brightCyan: "#4DADB9" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "orange" + hue: 254 + contrast: + fg: 50.9 + black: 25.3 + red: 40.7 + green: 38.8 + yellow: 47.6 + blue: 48.6 + magenta: 37.5 + cyan: 48.6 + white: 81.7 + brightBlack: 25.3 + brightRed: 40.7 + brightGreen: 38.8 + brightYellow: 47.6 + brightBlue: 48.6 + brightMagenta: 37.5 + brightCyan: 48.6 + brightWhite: 89.3 diff --git a/themes/arcadia-theme-storm.yaml b/themes/arcadia-theme-storm.yaml new file mode 100644 index 00000000..50f6ebdd --- /dev/null +++ b/themes/arcadia-theme-storm.yaml @@ -0,0 +1,49 @@ +name: "Arcadia Theme Storm" +source: + marketplace_id: "Kodi.arcadia-theme" + version: "1.3.2" + installs: 1149 + author: "Moti" + repo: "https://github.com/motidev/arcadia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Kodi.arcadia-theme" +colors: + bg: "#1A1B27" + fg: "#9DA5B4" + black: "#6B717D" + red: "#E06C75" + green: "#5D9B5F" + yellow: "#CC9343" + blue: "#4DADB9" + magenta: "#8780D8" + cyan: "#4DADB9" + white: "#D7DAE0" + brightBlack: "#6B717D" + brightRed: "#E06C75" + brightGreen: "#5D9B5F" + brightYellow: "#CC9343" + brightBlue: "#4DADB9" + brightMagenta: "#8780D8" + brightCyan: "#4DADB9" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "orange" + hue: 281 + contrast: + fg: 51.7 + black: 26.1 + red: 41.5 + green: 39.6 + yellow: 48.4 + blue: 49.3 + magenta: 38.3 + cyan: 49.3 + white: 82.5 + brightBlack: 26.1 + brightRed: 41.5 + brightGreen: 39.6 + brightYellow: 48.4 + brightBlue: 49.3 + brightMagenta: 38.3 + brightCyan: 49.3 + brightWhite: 90.1 diff --git a/themes/arcaea.yaml b/themes/arcaea.yaml new file mode 100644 index 00000000..248ac68f --- /dev/null +++ b/themes/arcaea.yaml @@ -0,0 +1,49 @@ +name: "Arcaea" +source: + marketplace_id: "ayatough.arcaea-theme" + version: "0.1.2" + installs: 2253 + author: "ayatough" + repo: "https://github.com/ayatough/vscode-arcaea-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ayatough.arcaea-theme" +colors: + bg: "#1C1C1C" + fg: "#BDBCDB" + black: "#1F1F1F" + red: "#CC7F65" + green: "#70C184" + yellow: "#CCCC4F" + blue: "#7099C1" + magenta: "#AD70C1" + cyan: "#70C1C1" + white: "#F1F1F1" + brightBlack: "#1F1F1F" + brightRed: "#CC7F65" + brightGreen: "#70C184" + brightYellow: "#CCCC4F" + brightBlue: "#7099C1" + brightMagenta: "#AD70C1" + brightCyan: "#70C1C1" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 66.3 + black: 0 + red: 42.5 + green: 58 + yellow: 70.8 + blue: 43.7 + magenta: 36.9 + cyan: 60.1 + white: 97.1 + brightBlack: 0 + brightRed: 42.5 + brightGreen: 58 + brightYellow: 70.8 + brightBlue: 43.7 + brightMagenta: 36.9 + brightCyan: 60.1 + brightWhite: 97.1 diff --git a/themes/archangel-dusk.yaml b/themes/archangel-dusk.yaml new file mode 100644 index 00000000..047d71eb --- /dev/null +++ b/themes/archangel-dusk.yaml @@ -0,0 +1,49 @@ +name: "🪽 archangel → dusk" +source: + marketplace_id: "allam-se.archangel" + version: "3.1.0" + installs: 505 + author: "Allam" + repo: "https://github.com/allam-se/archangel" + url: "https://marketplace.visualstudio.com/items?itemName=allam-se.archangel" +colors: + bg: "#0F0F0F" + fg: "#FFFFFF" + black: "#222029" + red: "#E92741" + green: "#3EC841" + yellow: "#E0D561" + blue: "#418EDD" + magenta: "#FF00CC" + cyan: "#00ECD8" + white: "#FFFFFF" + brightBlack: "#777777" + brightRed: "#E92741" + brightGreen: "#3EC841" + brightYellow: "#E0D561" + brightBlue: "#418EDD" + brightMagenta: "#FF00CC" + brightCyan: "#00ECD8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.5 + black: 0 + red: 33.1 + green: 59 + yellow: 78.9 + blue: 39.9 + magenta: 42.4 + cyan: 80.1 + white: 107.5 + brightBlack: 30.2 + brightRed: 33.1 + brightGreen: 59 + brightYellow: 78.9 + brightBlue: 39.9 + brightMagenta: 42.4 + brightCyan: 80.1 + brightWhite: 107.5 diff --git a/themes/archangel.yaml b/themes/archangel.yaml new file mode 100644 index 00000000..c7e662d0 --- /dev/null +++ b/themes/archangel.yaml @@ -0,0 +1,49 @@ +name: "🪽 archangel" +source: + marketplace_id: "allam-se.archangel" + version: "3.1.0" + installs: 505 + author: "Allam" + repo: "https://github.com/allam-se/archangel" + url: "https://marketplace.visualstudio.com/items?itemName=allam-se.archangel" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#222029" + red: "#E92741" + green: "#3EC841" + yellow: "#E0D561" + blue: "#418EDD" + magenta: "#FF00CC" + cyan: "#00ECD8" + white: "#FFFFFF" + brightBlack: "#343C50" + brightRed: "#E92741" + brightGreen: "#3EC841" + brightYellow: "#E0D561" + brightBlue: "#418EDD" + brightMagenta: "#FF00CC" + brightCyan: "#00ECD8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 33.5 + green: 59.4 + yellow: 79.3 + blue: 40.3 + magenta: 42.7 + cyan: 80.5 + white: 107.9 + brightBlack: 0 + brightRed: 33.5 + brightGreen: 59.4 + brightYellow: 79.3 + brightBlue: 40.3 + brightMagenta: 42.7 + brightCyan: 80.5 + brightWhite: 107.9 diff --git a/themes/archie-dark-color-theme.yaml b/themes/archie-dark-color-theme.yaml new file mode 100644 index 00000000..a654252b --- /dev/null +++ b/themes/archie-dark-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Archie-dark-color-theme" +source: + marketplace_id: "SahilKumar115.archie-dark-custom" + version: "1.0.0" + installs: 92 + author: "Sahil_Kumar_115" + repo: "https://github.com/Sahiljangra115/Archie-dark-custom-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SahilKumar115.archie-dark-custom" +colors: + bg: "#0B0E14" + fg: "#9D9B96" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 48 + black: 0 + red: 44.7 + green: 70.7 + yellow: 67.3 + blue: 61.3 + magenta: 61.3 + cyan: 78.6 + white: 72.4 + brightBlack: 23.6 + brightRed: 47.3 + brightGreen: 74 + brightYellow: 70.3 + brightBlue: 64 + brightMagenta: 64.1 + brightCyan: 81.6 + brightWhite: 107.6 diff --git a/themes/architect-dark-fork.yaml b/themes/architect-dark-fork.yaml new file mode 100644 index 00000000..5e130aff --- /dev/null +++ b/themes/architect-dark-fork.yaml @@ -0,0 +1,49 @@ +name: "Architect (dark) - Fork" +source: + marketplace_id: "valentinesamuel.fallout-dark" + version: "0.0.1" + installs: 2242 + author: "valentine samuel" + repo: "https://github.com/valentinesamuel/themes" + url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" +colors: + bg: "#040404" + fg: "#FDFE02" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FDF1AE" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#D9D9D9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.5 + white: 97.8 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 83.5 diff --git a/themes/arctic-depth.yaml b/themes/arctic-depth.yaml new file mode 100644 index 00000000..68853dcb --- /dev/null +++ b/themes/arctic-depth.yaml @@ -0,0 +1,49 @@ +name: "Arctic Depth" +source: + marketplace_id: "MarvellinusVincent.arctic-depth" + version: "1.0.11" + installs: 393 + author: "Marvellinus Vincent" + repo: "https://github.com/MarvellinusVincent/Arctic-Depth" + url: "https://marketplace.visualstudio.com/items?itemName=MarvellinusVincent.arctic-depth" +colors: + bg: "#171A22" + fg: "#78BAE7" + black: "#171A22" + red: "#EE6C7D" + green: "#4FC414" + yellow: "#F9C74F" + blue: "#5E81AC" + magenta: "#5E81AC" + cyan: "#06B8B8" + white: "#E0E7EC" + brightBlack: "#1E2025" + brightRed: "#FF8A9A" + brightGreen: "#7F9BC5" + brightYellow: "#FFDF80" + brightBlue: "#7F9BC5" + brightMagenta: "#7F9BC5" + brightCyan: "#00E5E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 269 + contrast: + fg: 59.8 + black: 0 + red: 44.8 + green: 56.4 + yellow: 75.6 + blue: 32.8 + magenta: 32.8 + cyan: 53 + white: 90.2 + brightBlack: 0 + brightRed: 56.9 + brightGreen: 46 + brightYellow: 87.5 + brightBlue: 46 + brightMagenta: 46 + brightCyan: 76.3 + brightWhite: 106.5 diff --git a/themes/arctic-night.yaml b/themes/arctic-night.yaml new file mode 100644 index 00000000..93dbe3fc --- /dev/null +++ b/themes/arctic-night.yaml @@ -0,0 +1,49 @@ +name: "Arctic Night" +source: + marketplace_id: "k22pr.arctic-night-theme" + version: "1.0.6" + installs: 53 + author: "k22pr" + repo: "https://github.com/k22pr/arctic-night-theme" + url: "https://marketplace.visualstudio.com/items?itemName=k22pr.arctic-night-theme" +colors: + bg: "#1A1D21" + fg: "#E6EDF3" + black: "#484F58" + red: "#BF7E78" + green: "#7FA684" + yellow: "#BFA673" + blue: "#7FA1C4" + magenta: "#BC8CFF" + cyan: "#80B0B5" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#D1A8A4" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#A1BDD6" + brightMagenta: "#D2A8FF" + brightCyan: "#80B0B5" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 93.8 + black: 11.9 + red: 40.5 + green: 47.4 + yellow: 54 + blue: 48 + magenta: 51 + cyan: 53.4 + white: 62.9 + brightBlack: 28.1 + brightRed: 58.8 + brightGreen: 64.3 + brightYellow: 63.5 + brightBlue: 63.3 + brightMagenta: 63.4 + brightCyan: 53.4 + brightWhite: 99.7 diff --git a/themes/arctis-dark.yaml b/themes/arctis-dark.yaml new file mode 100644 index 00000000..f0bf51f7 --- /dev/null +++ b/themes/arctis-dark.yaml @@ -0,0 +1,49 @@ +name: "Arctis Dark+" +source: + marketplace_id: "avidworks.arctis" + version: "2.3.1" + installs: 15547 + author: "adamdotjs" + repo: "https://github.com/avidworks/arctis" + url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" +colors: + bg: "#1E1E1E" + fg: "#D1D1D1" + black: "#333333" + red: "#F1855B" + green: "#13BE76" + yellow: "#E8C59B" + blue: "#9B90F4" + magenta: "#EB94B2" + cyan: "#8ACFEF" + white: "#DBDBDB" + brightBlack: "#575757" + brightRed: "#F1855B" + brightGreen: "#13BE76" + brightYellow: "#E8C59B" + brightBlue: "#9B90F4" + brightMagenta: "#EB94B2" + brightCyan: "#8ACFEF" + brightWhite: "#DBDBDB" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 76.8 + black: 0 + red: 50.6 + green: 53 + yellow: 73 + blue: 47.3 + magenta: 56.5 + cyan: 70.2 + white: 82.9 + brightBlack: 15.1 + brightRed: 50.6 + brightGreen: 53 + brightYellow: 73 + brightBlue: 47.3 + brightMagenta: 56.5 + brightCyan: 70.2 + brightWhite: 82.9 diff --git a/themes/arctis-high-contrast.yaml b/themes/arctis-high-contrast.yaml new file mode 100644 index 00000000..701be5b9 --- /dev/null +++ b/themes/arctis-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Arctis High Contrast" +source: + marketplace_id: "avidworks.arctis" + version: "2.3.1" + installs: 15547 + author: "adamdotjs" + repo: "https://github.com/avidworks/arctis" + url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" +colors: + bg: "#000000" + fg: "#C7CCD6" + black: "#313744" + red: "#F1855B" + green: "#13BE76" + yellow: "#E8C59B" + blue: "#9B90F4" + magenta: "#EB94B2" + cyan: "#8ACFEF" + white: "#D3D7DF" + brightBlack: "#515B71" + brightRed: "#F1855B" + brightGreen: "#13BE76" + brightYellow: "#E8C59B" + brightBlue: "#9B90F4" + brightMagenta: "#EB94B2" + brightCyan: "#8ACFEF" + brightWhite: "#D3D7DF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 75.5 + black: 0 + red: 52.5 + green: 54.9 + yellow: 74.9 + blue: 49.1 + magenta: 58.4 + cyan: 72 + white: 82.2 + brightBlack: 18.4 + brightRed: 52.5 + brightGreen: 54.9 + brightYellow: 74.9 + brightBlue: 49.1 + brightMagenta: 58.4 + brightCyan: 72 + brightWhite: 82.2 diff --git a/themes/arctis-light.yaml b/themes/arctis-light.yaml new file mode 100644 index 00000000..1606e2da --- /dev/null +++ b/themes/arctis-light.yaml @@ -0,0 +1,49 @@ +name: "Arctis Light" +source: + marketplace_id: "avidworks.arctis" + version: "2.3.1" + installs: 15547 + author: "adamdotjs" + repo: "https://github.com/avidworks/arctis" + url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" +colors: + bg: "#EAECF0" + fg: "#404859" + black: "#CCD1DB" + red: "#C0400C" + green: "#06653D" + yellow: "#B16B16" + blue: "#5946E5" + magenta: "#2E3440" + cyan: "#8ACFEF" + white: "#2E3440" + brightBlack: "#97A1B4" + brightRed: "#C0400C" + brightGreen: "#06653D" + brightYellow: "#B16B16" + brightBlue: "#5946E5" + brightMagenta: "#2E3440" + brightCyan: "#8ACFEF" + brightWhite: "#2E3440" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 79.8 + black: 13.3 + red: 63.8 + green: 73 + yellow: 57.4 + blue: 68.4 + magenta: 87.1 + cyan: 19.4 + white: 87.1 + brightBlack: 39.5 + brightRed: 63.8 + brightGreen: 73 + brightYellow: 57.4 + brightBlue: 68.4 + brightMagenta: 87.1 + brightCyan: 19.4 + brightWhite: 87.1 diff --git a/themes/arctis-moon.yaml b/themes/arctis-moon.yaml new file mode 100644 index 00000000..e8063ede --- /dev/null +++ b/themes/arctis-moon.yaml @@ -0,0 +1,49 @@ +name: "Arctis Moon" +source: + marketplace_id: "avidworks.arctis" + version: "2.3.1" + installs: 15547 + author: "adamdotjs" + repo: "https://github.com/avidworks/arctis" + url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" +colors: + bg: "#212337" + fg: "#CCCEE1" + black: "#323453" + red: "#F1855B" + green: "#13BE76" + yellow: "#E8C59B" + blue: "#9B90F4" + magenta: "#EB94B2" + cyan: "#8ACFEF" + white: "#D9DAE8" + brightBlack: "#525689" + brightRed: "#F1855B" + brightGreen: "#13BE76" + brightYellow: "#E8C59B" + brightBlue: "#9B90F4" + brightMagenta: "#EB94B2" + brightCyan: "#8ACFEF" + brightWhite: "#D9DAE8" +meta: + mode: "dark" + accent: "teal" + hue: 279 + contrast: + fg: 74.6 + black: 0 + red: 49.6 + green: 52 + yellow: 72 + blue: 46.3 + magenta: 55.5 + cyan: 69.2 + white: 81.8 + brightBlack: 15.4 + brightRed: 49.6 + brightGreen: 52 + brightYellow: 72 + brightBlue: 46.3 + brightMagenta: 55.5 + brightCyan: 69.2 + brightWhite: 81.8 diff --git a/themes/arctis-night.yaml b/themes/arctis-night.yaml new file mode 100644 index 00000000..ebfbbb14 --- /dev/null +++ b/themes/arctis-night.yaml @@ -0,0 +1,49 @@ +name: "Arctis Night" +source: + marketplace_id: "avidworks.arctis" + version: "2.3.1" + installs: 15547 + author: "adamdotjs" + repo: "https://github.com/avidworks/arctis" + url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" +colors: + bg: "#011627" + fg: "#BBD1E2" + black: "#162E41" + red: "#F1855B" + green: "#13BE76" + yellow: "#E8C59B" + blue: "#9B90F4" + magenta: "#EB94B2" + cyan: "#8ACFEF" + white: "#CDDDEA" + brightBlack: "#2B5473" + brightRed: "#F1855B" + brightGreen: "#13BE76" + brightYellow: "#E8C59B" + brightBlue: "#9B90F4" + brightMagenta: "#EB94B2" + brightCyan: "#8ACFEF" + brightWhite: "#CDDDEA" +meta: + mode: "dark" + accent: "teal" + hue: 244 + contrast: + fg: 75.9 + black: 0 + red: 51.6 + green: 54 + yellow: 74 + blue: 48.2 + magenta: 57.5 + cyan: 71.1 + white: 83.7 + brightBlack: 13.6 + brightRed: 51.6 + brightGreen: 54 + brightYellow: 74 + brightBlue: 48.2 + brightMagenta: 57.5 + brightCyan: 71.1 + brightWhite: 83.7 diff --git a/themes/arctis.yaml b/themes/arctis.yaml new file mode 100644 index 00000000..421fdc07 --- /dev/null +++ b/themes/arctis.yaml @@ -0,0 +1,49 @@ +name: "Arctis" +source: + marketplace_id: "avidworks.arctis" + version: "2.3.1" + installs: 15547 + author: "adamdotjs" + repo: "https://github.com/avidworks/arctis" + url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" +colors: + bg: "#2E3440" + fg: "#D3D7DF" + black: "#3E4656" + red: "#F1855B" + green: "#13BE76" + yellow: "#E8C59B" + blue: "#9B90F4" + magenta: "#EB94B2" + cyan: "#8ACFEF" + white: "#DEE1E7" + brightBlack: "#5F6B83" + brightRed: "#F1855B" + brightGreen: "#13BE76" + brightYellow: "#E8C59B" + brightBlue: "#9B90F4" + brightMagenta: "#EB94B2" + brightCyan: "#8ACFEF" + brightWhite: "#DEE1E7" +meta: + mode: "dark" + accent: "teal" + hue: 264 + contrast: + fg: 76.1 + black: 0 + red: 46.4 + green: 48.8 + yellow: 68.8 + blue: 43 + magenta: 52.3 + cyan: 66 + white: 82.3 + brightBlack: 19 + brightRed: 46.4 + brightGreen: 48.8 + brightYellow: 68.8 + brightBlue: 43 + brightMagenta: 52.3 + brightCyan: 66 + brightWhite: 82.3 diff --git a/themes/ares-tron-legacy.yaml b/themes/ares-tron-legacy.yaml new file mode 100644 index 00000000..2f0fb43e --- /dev/null +++ b/themes/ares-tron-legacy.yaml @@ -0,0 +1,49 @@ +name: "Ares Tron Legacy" +source: + marketplace_id: "rubenzn.encom-tron-legacy" + version: "1.0.0" + installs: 60 + author: "rubenzn" + repo: "https://github.com/ruben-cxtx/best-tron-legacy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rubenzn.encom-tron-legacy" +colors: + bg: "#110000" + fg: "#FFB3B3" + black: "#1A0000" + red: "#FF0022" + green: "#FF5A5A" + yellow: "#FFD400" + blue: "#FF6A3D" + magenta: "#8B1E2D" + cyan: "#5A141A" + white: "#FFD6D6" + brightBlack: "#1A0000" + brightRed: "#FF3355" + brightGreen: "#FF5A5A" + brightYellow: "#FFE066" + brightBlue: "#FF6A3D" + brightMagenta: "#8B1E2D" + brightCyan: "#5A141A" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 29 + contrast: + fg: 72.4 + black: 0 + red: 37.5 + green: 45.2 + yellow: 82.9 + blue: 48 + magenta: 12.6 + cyan: 0 + white: 87.5 + brightBlack: 0 + brightRed: 40 + brightGreen: 45.2 + brightYellow: 88.7 + brightBlue: 48 + brightMagenta: 12.6 + brightCyan: 0 + brightWhite: 107.8 diff --git a/themes/arete-theme.yaml b/themes/arete-theme.yaml new file mode 100644 index 00000000..45f9f10c --- /dev/null +++ b/themes/arete-theme.yaml @@ -0,0 +1,49 @@ +name: "Arete Theme" +source: + marketplace_id: "PlatoArete.arete-theme" + version: "0.0.5" + installs: 24 + author: "PlatoArete" + repo: "https://github.com/PlatoArete/arete-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PlatoArete.arete-theme" +colors: + bg: "#110F10" + fg: "#D4D4D4" + black: "#000000" + red: "#FF6B47" + green: "#98FB98" + yellow: "#FFD700" + blue: "#FF8C42" + magenta: "#DDA0DD" + cyan: "#FFCC66" + white: "#D4D4D4" + brightBlack: "#000000" + brightRed: "#FF6347" + brightGreen: "#90EE90" + brightYellow: "#FFFF00" + brightBlue: "#FFA500" + brightMagenta: "#FF69B4" + brightCyan: "#FFD700" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 80.1 + black: 0 + red: 48.1 + green: 90.5 + yellow: 83.8 + blue: 56.6 + magenta: 61.6 + cyan: 79.9 + white: 80.1 + brightBlack: 0 + brightRed: 46.4 + brightGreen: 83.1 + brightYellow: 102.3 + brightBlue: 64.3 + brightMagenta: 50.7 + brightCyan: 83.8 + brightWhite: 107.5 diff --git a/themes/argonaut.yaml b/themes/argonaut.yaml new file mode 100644 index 00000000..19fc58bd --- /dev/null +++ b/themes/argonaut.yaml @@ -0,0 +1,49 @@ +name: "argonaut" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" +colors: + bg: "#111421" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 79.7 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 30 + cyan: 47.8 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.8 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/argprocolor.yaml b/themes/argprocolor.yaml new file mode 100644 index 00000000..8eb3934b --- /dev/null +++ b/themes/argprocolor.yaml @@ -0,0 +1,49 @@ +name: "argprocolor" +source: + marketplace_id: "AnkurGoyal.argprocolor" + version: "3.3.0" + installs: 183 + author: "Ankur Goyal" + repo: "https://github.com/argankur/argprocolor" + url: "https://marketplace.visualstudio.com/items?itemName=AnkurGoyal.argprocolor" +colors: + bg: "#021013" + fg: "#B2CACD" + black: "#324A4D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B2CACD" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "dark" + accent: "orange" + hue: 211 + contrast: + fg: 71.4 + black: 10.2 + red: 41.2 + green: 77.6 + yellow: 67.6 + blue: 52.6 + magenta: 46.3 + cyan: 71.2 + white: 71.4 + brightBlack: 21.2 + brightRed: 46.4 + brightGreen: 79.8 + brightYellow: 54.5 + brightBlue: 57.9 + brightMagenta: 58.6 + brightCyan: 74.5 + brightWhite: 77.9 diff --git a/themes/ariake-sands.yaml b/themes/ariake-sands.yaml new file mode 100644 index 00000000..59b69cad --- /dev/null +++ b/themes/ariake-sands.yaml @@ -0,0 +1,49 @@ +name: "Ariake Sands" +source: + marketplace_id: "radiolevity.ariake-sands" + version: "1.1.3" + installs: 6041 + author: "Finn James" + repo: "https://github.com/radiolevity/ariake-sands" + url: "https://marketplace.visualstudio.com/items?itemName=radiolevity.ariake-sands" +colors: + bg: "#242424" + fg: "#C2C6D6" + black: "#677989" + red: "#ED5C93" + green: "#78BBB7" + yellow: "#7E99DD" + blue: "#85B6C8" + magenta: "#B081C5" + cyan: "#B084EB" + white: "#F4FAFF" + brightBlack: "#677989" + brightRed: "#F993BA" + brightGreen: "#9AEFEA" + brightYellow: "#ABBFF2" + brightBlue: "#B8E0EF" + brightMagenta: "#DDA3F7" + brightCyan: "#D3B2FF" + brightWhite: "#F4FAFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 69.6 + black: 27.7 + red: 40.5 + green: 56.4 + yellow: 45.2 + blue: 56 + magenta: 41.2 + cyan: 44.5 + white: 101.2 + brightBlack: 27.7 + brightRed: 58.2 + brightGreen: 85.3 + brightYellow: 65.6 + brightBlue: 81.1 + brightMagenta: 61.8 + brightCyan: 66.1 + brightWhite: 101.2 diff --git a/themes/ariake-sun.yaml b/themes/ariake-sun.yaml new file mode 100644 index 00000000..9cc00550 --- /dev/null +++ b/themes/ariake-sun.yaml @@ -0,0 +1,49 @@ +name: "Ariake Sun" +source: + marketplace_id: "radiolevity.ariake-sands" + version: "1.1.3" + installs: 6041 + author: "Finn James" + repo: "https://github.com/radiolevity/ariake-sands" + url: "https://marketplace.visualstudio.com/items?itemName=radiolevity.ariake-sands" +colors: + bg: "#F9FAFA" + fg: "#1F1F1F" + black: "#1F1F1F" + red: "#6A12ED" + green: "#1DAFA8" + yellow: "#BA45ED" + blue: "#6A12ED" + magenta: "#6A12ED" + cyan: "#7851B2" + white: "#F9FAFA" + brightBlack: "#B6BAC9" + brightRed: "#770034" + brightGreen: "#1DAFA8" + brightYellow: "#6A12ED" + brightBlue: "#3471B2" + brightMagenta: "#48215C" + brightCyan: "#43227D" + brightWhite: "#F9FAFA" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 100.3 + black: 100.3 + red: 79.7 + green: 48.9 + yellow: 63.8 + blue: 79.7 + magenta: 79.7 + cyan: 75.6 + white: 0 + brightBlack: 34 + brightRed: 91.1 + brightGreen: 48.9 + brightYellow: 79.7 + brightBlue: 71.5 + brightMagenta: 95.3 + brightCyan: 93.5 + brightWhite: 0 diff --git a/themes/aries.yaml b/themes/aries.yaml new file mode 100644 index 00000000..aa4e4d26 --- /dev/null +++ b/themes/aries.yaml @@ -0,0 +1,49 @@ +name: "aries" +source: + marketplace_id: "ariebird.aries-pink-theme" + version: "0.0.1" + installs: 1912 + author: "Aries Russin" + repo: "https://github.com/adragonqc/aries-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ariebird.aries-pink-theme" +colors: + bg: "#FECFD9" + fg: "#9F0000" + black: "#000000" + red: "#FB5959" + green: "#169418" + yellow: "#FFEB47" + blue: "#0451A5" + magenta: "#8233DB" + cyan: "#0AA395" + white: "#555555" + brightBlack: "#666666" + brightRed: "#E21616" + brightGreen: "#90F791" + brightYellow: "#FFF38E" + brightBlue: "#CFE6FF" + brightMagenta: "#B676FF" + brightCyan: "#A9FBF3" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: 4 + contrast: + fg: 65.4 + black: 84.9 + red: 36.4 + green: 45.3 + yellow: 0 + blue: 64.9 + magenta: 58.2 + cyan: 36.8 + white: 64.8 + brightBlack: 57.6 + brightRed: 49.8 + brightGreen: 0 + brightYellow: 11.8 + brightBlue: 0 + brightMagenta: 35 + brightCyan: 9.2 + brightWhite: 21.5 diff --git a/themes/arkaios-theme.yaml b/themes/arkaios-theme.yaml new file mode 100644 index 00000000..296aa799 --- /dev/null +++ b/themes/arkaios-theme.yaml @@ -0,0 +1,49 @@ +name: "Arkaios Theme" +source: + marketplace_id: "vilela.theme-arkaios" + version: "1.0.8" + installs: 411 + author: "Vilela" + repo: "https://github.com/vilelagit/Arkaios_Theme" + url: "https://marketplace.visualstudio.com/items?itemName=vilela.theme-arkaios" +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#76A6E0" + yellow: "#83DBEE" + blue: "#8968C6" + magenta: "#B685D5" + cyan: "#B2C2D7" + white: "#F8F8F2" + brightBlack: "#5B6074" + brightRed: "#76A6E0" + brightGreen: "#DB9213" + brightYellow: "#B2C2D7" + brightBlue: "#D6ACFF" + brightMagenta: "#8968C6" + brightCyan: "#83DBEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 48.5 + yellow: 73 + blue: 28 + magenta: 43 + cyan: 64.9 + white: 99 + brightBlack: 16.8 + brightRed: 48.5 + brightGreen: 47.8 + brightYellow: 64.9 + brightBlue: 63.2 + brightMagenta: 28 + brightCyan: 73 + brightWhite: 103.9 diff --git a/themes/arkinetictheme.yaml b/themes/arkinetictheme.yaml new file mode 100644 index 00000000..00878291 --- /dev/null +++ b/themes/arkinetictheme.yaml @@ -0,0 +1,49 @@ +name: "ArkineticTheme" +source: + marketplace_id: "Arkinetic.com-arkinetic-theme" + version: "0.0.1" + installs: 289 + author: "Arkinetic" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Arkinetic.com-arkinetic-theme" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#1C65B6" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 21.2 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/arkku.yaml b/themes/arkku.yaml new file mode 100644 index 00000000..f87b50ed --- /dev/null +++ b/themes/arkku.yaml @@ -0,0 +1,49 @@ +name: "Arkku" +source: + marketplace_id: "arkku.arkku-color-theme" + version: "1.1.0" + installs: 356 + author: "Kimmo Kulovesi" + repo: "https://github.com/arkku/arkku-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arkku.arkku-color-theme" +colors: + bg: "#080811" + fg: "#AAABAC" + black: "#000000" + red: "#CC0000" + green: "#009900" + yellow: "#CC6600" + blue: "#0033CC" + magenta: "#AA00AA" + cyan: "#6699CC" + white: "#BBBBBB" + brightBlack: "#333333" + brightRed: "#FF6633" + brightGreen: "#00CC33" + brightYellow: "#FF9900" + brightBlue: "#0099FF" + brightMagenta: "#CC33FF" + brightCyan: "#00CCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 56.6 + black: 0 + red: 25.1 + green: 37.1 + yellow: 36.3 + blue: 13.1 + magenta: 22.4 + cyan: 45.1 + white: 65.6 + brightBlack: 0 + brightRed: 47.1 + brightGreen: 60.4 + brightYellow: 60.6 + brightBlue: 45.8 + brightMagenta: 37.3 + brightCyan: 67.1 + brightWhite: 107.8 diff --git a/themes/armada.yaml b/themes/armada.yaml new file mode 100644 index 00000000..0ff00659 --- /dev/null +++ b/themes/armada.yaml @@ -0,0 +1,49 @@ +name: "armada" +source: + marketplace_id: "hakan-akgul.armada" + version: "3.1.8" + installs: 550 + author: "hakan-akgul" + repo: "https://github.com/hakan-akgul/armada" + url: "https://marketplace.visualstudio.com/items?itemName=hakan-akgul.armada" +colors: + bg: "#223043" + fg: "#D2D5DB" + black: "#010B13" + red: "#F20D5E" + green: "#8DCC33" + yellow: "#E5F20D" + blue: "#4688D8" + magenta: "#8F26D9" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#546E7A" + brightRed: "#FF5909" + brightGreen: "#10BC97" + brightYellow: "#F6EF87" + brightBlue: "#139FCD" + brightMagenta: "#9500FF" + brightCyan: "#1FB7EA" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: 256 + contrast: + fg: 76 + black: 0 + red: 30.2 + green: 60.4 + yellow: 87.8 + blue: 33 + magenta: 17.8 + cyan: 43.6 + white: 86.1 + brightBlack: 19.9 + brightRed: 39.5 + brightGreen: 49.9 + brightYellow: 89.9 + brightBlue: 39.9 + brightMagenta: 21.2 + brightCyan: 51.7 + brightWhite: 86.1 diff --git a/themes/aroace-high-contrast.yaml b/themes/aroace-high-contrast.yaml new file mode 100644 index 00000000..c86dbee0 --- /dev/null +++ b/themes/aroace-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "AroAce High Contrast" +source: + marketplace_id: "philbschmidt.aroace" + version: "1.3.0" + installs: 46 + author: "Philipp Schmidt" + repo: "https://codeberg.org/philbschmidt/Aro-Ace" + url: "https://marketplace.visualstudio.com/items?itemName=philbschmidt.aroace" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#3DA542" + yellow: "#ECCD00" + blue: "#62AEDC" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#3DA542" + brightYellow: "#ECCD00" + brightBlue: "#62AEDC" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 43.5 + yellow: 77 + blue: 54.2 + magenta: 54.8 + cyan: 79.3 + white: 107.9 + brightBlack: 23 + brightRed: 37.5 + brightGreen: 43.5 + brightYellow: 77 + brightBlue: 54.2 + brightMagenta: 54.8 + brightCyan: 79.3 + brightWhite: 107.9 diff --git a/themes/aroace-light.yaml b/themes/aroace-light.yaml new file mode 100644 index 00000000..bba43828 --- /dev/null +++ b/themes/aroace-light.yaml @@ -0,0 +1,49 @@ +name: "AroAce Light" +source: + marketplace_id: "philbschmidt.aroace" + version: "1.3.0" + installs: 46 + author: "Philipp Schmidt" + repo: "https://codeberg.org/philbschmidt/Aro-Ace" + url: "https://marketplace.visualstudio.com/items?itemName=philbschmidt.aroace" +colors: + bg: "#FFFFFF" + fg: "#2B2B2B" + black: "#000000" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#85B0CA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#85B0CA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 100.9 + black: 106 + red: 56.8 + green: 35.7 + yellow: 23.3 + blue: 45.2 + magenta: 45.7 + cyan: 23.9 + white: 0 + brightBlack: 74.3 + brightRed: 56.8 + brightGreen: 18.3 + brightYellow: 23.3 + brightBlue: 45.2 + brightMagenta: 45.7 + brightCyan: 23.9 + brightWhite: 0 diff --git a/themes/aroace.yaml b/themes/aroace.yaml new file mode 100644 index 00000000..57a4c20a --- /dev/null +++ b/themes/aroace.yaml @@ -0,0 +1,49 @@ +name: "AroAce" +source: + marketplace_id: "philbschmidt.aroace" + version: "1.3.0" + installs: 46 + author: "Philipp Schmidt" + repo: "https://codeberg.org/philbschmidt/Aro-Ace" + url: "https://marketplace.visualstudio.com/items?itemName=philbschmidt.aroace" +colors: + bg: "#23252F" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#85B0CA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#85B0CA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 276 + contrast: + fg: 69.4 + black: 24.4 + red: 42 + green: 63.8 + yellow: 76.9 + blue: 53.9 + magenta: 53.4 + cyan: 76.3 + white: 104.9 + brightBlack: 24.4 + brightRed: 42 + brightGreen: 82.2 + brightYellow: 76.9 + brightBlue: 53.9 + brightMagenta: 53.4 + brightCyan: 76.3 + brightWhite: 104.9 diff --git a/themes/aromantic.yaml b/themes/aromantic.yaml new file mode 100644 index 00000000..c04ab26f --- /dev/null +++ b/themes/aromantic.yaml @@ -0,0 +1,49 @@ +name: "Aromantic" +source: + marketplace_id: "ElizaMuss.elizas-pride-themes" + version: "1.0.2" + installs: 848 + author: "Eliza Muss" + repo: "https://github.com/The-Gamer69/elizas-pride-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#4B4B4B" + red: "#CD3131" + green: "#3AA740" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#ABABAB" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 12.3 + red: 27.7 + green: 44.2 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 107.9 + brightBlack: 56.8 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/arrakis-day.yaml b/themes/arrakis-day.yaml new file mode 100644 index 00000000..3383f9e8 --- /dev/null +++ b/themes/arrakis-day.yaml @@ -0,0 +1,49 @@ +name: "Arrakis Day" +source: + marketplace_id: "anvell.arrakis-theme" + version: "1.6.0" + installs: 522 + author: "Anvell" + repo: "https://github.com/Anvell/vscode-arrakis-theme" + url: "https://marketplace.visualstudio.com/items?itemName=anvell.arrakis-theme" +colors: + bg: "#F5EBE1" + fg: "#403E3C" + black: "#100F0F" + red: "#AF3029" + green: "#66800B" + yellow: "#AD8301" + blue: "#205EA6" + magenta: "#A02F6F" + cyan: "#24837B" + white: "#FAF0E6" + brightBlack: "#343331" + brightRed: "#D14D41" + brightGreen: "#879A39" + brightYellow: "#D0A215" + brightBlue: "#4385BE" + brightMagenta: "#CE5D97" + brightCyan: "#3AA99F" + brightWhite: "#FAF0E6" +meta: + mode: "light" + accent: "orange" + hue: 68 + contrast: + fg: 83.7 + black: 94.5 + red: 69.6 + green: 60.1 + yellow: 51.2 + blue: 71 + magenta: 71.1 + cyan: 60.3 + white: 0 + brightBlack: 87.7 + brightRed: 58.1 + brightGreen: 47.3 + brightYellow: 35.5 + brightBlue: 55.5 + brightMagenta: 53.3 + brightCyan: 43.4 + brightWhite: 0 diff --git a/themes/arrakis-night.yaml b/themes/arrakis-night.yaml new file mode 100644 index 00000000..e5e06904 --- /dev/null +++ b/themes/arrakis-night.yaml @@ -0,0 +1,49 @@ +name: "Arrakis Night" +source: + marketplace_id: "anvell.arrakis-theme" + version: "1.6.0" + installs: 522 + author: "Anvell" + repo: "https://github.com/Anvell/vscode-arrakis-theme" + url: "https://marketplace.visualstudio.com/items?itemName=anvell.arrakis-theme" +colors: + bg: "#2B2927" + fg: "#C6CBCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 70.8 + black: 0 + red: 24 + green: 50.3 + yellow: 82.9 + blue: 24.7 + magenta: 27.1 + cyan: 44.9 + white: 87.3 + brightBlack: 19.3 + brightRed: 35.9 + brightGreen: 60.8 + brightYellow: 92.9 + brightBlue: 37.3 + brightMagenta: 42.7 + brightCyan: 52.7 + brightWhite: 87.3 diff --git a/themes/arrpee.yaml b/themes/arrpee.yaml new file mode 100644 index 00000000..f43815e1 --- /dev/null +++ b/themes/arrpee.yaml @@ -0,0 +1,49 @@ +name: "Arrpee" +source: + marketplace_id: "Arrpee.arrpee-theme" + version: "0.1.2" + installs: 176 + author: "Arrpee" + repo: "https://github.com/arrpee/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Arrpee.arrpee-theme" +colors: + bg: "#111317" + fg: "#EBEBEB" + black: "#546E7A" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 94.2 + black: 24.2 + red: 44 + green: 84.5 + yellow: 79.3 + blue: 56.3 + magenta: 54.1 + cyan: 78.6 + white: 107.2 + brightBlack: 24.2 + brightRed: 44 + brightGreen: 84.5 + brightYellow: 79.3 + brightBlue: 56.3 + brightMagenta: 54.1 + brightCyan: 78.6 + brightWhite: 107.2 diff --git a/themes/arstotzka-contrast.yaml b/themes/arstotzka-contrast.yaml new file mode 100644 index 00000000..e83dd74d --- /dev/null +++ b/themes/arstotzka-contrast.yaml @@ -0,0 +1,49 @@ +name: "arstotzka-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0F0E0D" + fg: "#EDEBE6" + black: "#1D1B19" + red: "#BA0E2E" + green: "#A2A797" + yellow: "#516B6B" + blue: "#70807B" + magenta: "#A2A797" + cyan: "#CF433E" + white: "#F8F7F5" + brightBlack: "#46413C" + brightRed: "#F03E5F" + brightGreen: "#D3D6CE" + brightYellow: "#82A0A0" + brightBlue: "#A5B1AD" + brightMagenta: "#D3D6CE" + brightCyan: "#E39390" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.6 + black: 0 + red: 21.2 + green: 53.1 + yellow: 22.8 + blue: 32.8 + magenta: 53.1 + cyan: 30.2 + white: 102.3 + brightBlack: 8.7 + brightRed: 37.5 + brightGreen: 80.7 + brightYellow: 47.5 + brightBlue: 58.2 + brightMagenta: 80.7 + brightCyan: 55.1 + brightWhite: 107.6 diff --git a/themes/arstotzka-light.yaml b/themes/arstotzka-light.yaml new file mode 100644 index 00000000..be2d3222 --- /dev/null +++ b/themes/arstotzka-light.yaml @@ -0,0 +1,49 @@ +name: "arstotzka-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#A2A797" + yellow: "#516B6B" + blue: "#70807B" + magenta: "#A2A797" + cyan: "#CF433E" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#D3D6CE" + brightYellow: "#82A0A0" + brightBlue: "#A5B1AD" + brightMagenta: "#D3D6CE" + brightCyan: "#E39390" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 48.5 + yellow: 78.7 + blue: 68.6 + magenta: 48.5 + cyan: 71.2 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 22.3 + brightYellow: 54 + brightBlue: 43.6 + brightMagenta: 22.3 + brightCyan: 46.6 + brightWhite: 78.8 diff --git a/themes/arstotzka.yaml b/themes/arstotzka.yaml new file mode 100644 index 00000000..2b10456c --- /dev/null +++ b/themes/arstotzka.yaml @@ -0,0 +1,49 @@ +name: "arstotzka" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#332E2E" + fg: "#EDEBE6" + black: "#403A3A" + red: "#BA0E2E" + green: "#A2A797" + yellow: "#516B6B" + blue: "#70807B" + magenta: "#A2A797" + cyan: "#CF433E" + white: "#F8F7F5" + brightBlack: "#695E5E" + brightRed: "#F03E5F" + brightGreen: "#D3D6CE" + brightYellow: "#82A0A0" + brightBlue: "#A5B1AD" + brightMagenta: "#D3D6CE" + brightCyan: "#E39390" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 90 + black: 0 + red: 16.6 + green: 48.5 + yellow: 18.2 + blue: 28.2 + magenta: 48.5 + cyan: 25.6 + white: 97.7 + brightBlack: 15.8 + brightRed: 32.9 + brightGreen: 76.1 + brightYellow: 42.9 + brightBlue: 53.7 + brightMagenta: 76.1 + brightCyan: 50.5 + brightWhite: 103 diff --git a/themes/artinpixel-turquoise-theme-dark.yaml b/themes/artinpixel-turquoise-theme-dark.yaml new file mode 100644 index 00000000..2349a262 --- /dev/null +++ b/themes/artinpixel-turquoise-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Artinpixel Turquoise Theme - Dark" +source: + marketplace_id: "anselmodev.artinpixel-turquoise-master" + version: "0.1.4" + installs: 684 + author: "Anselmo Lima" + repo: "https://github.com/anselmodev/artinpixel-turquoise-master" + url: "https://marketplace.visualstudio.com/items?itemName=anselmodev.artinpixel-turquoise-master" +colors: + bg: "#21282B" + fg: "#CCD8DE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 226 + contrast: + fg: 78.4 + black: 0 + red: 24.5 + green: 50.8 + yellow: 83.4 + blue: 25.2 + magenta: 27.5 + cyan: 45.3 + white: 87.8 + brightBlack: 19.8 + brightRed: 36.3 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.8 + brightMagenta: 43.1 + brightCyan: 53.2 + brightWhite: 87.8 diff --git a/themes/artinpixel-turquoise-theme.yaml b/themes/artinpixel-turquoise-theme.yaml new file mode 100644 index 00000000..1d62c368 --- /dev/null +++ b/themes/artinpixel-turquoise-theme.yaml @@ -0,0 +1,49 @@ +name: "Artinpixel Turquoise Theme" +source: + marketplace_id: "anselmodev.artinpixel-turquoise-master" + version: "0.1.4" + installs: 684 + author: "Anselmo Lima" + repo: "https://github.com/anselmodev/artinpixel-turquoise-master" + url: "https://marketplace.visualstudio.com/items?itemName=anselmodev.artinpixel-turquoise-master" +colors: + bg: "#323638" + fg: "#CCD8DE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75.2 + black: 0 + red: 21.2 + green: 47.5 + yellow: 80.1 + blue: 21.9 + magenta: 24.3 + cyan: 42.1 + white: 84.5 + brightBlack: 16.5 + brightRed: 33.1 + brightGreen: 58 + brightYellow: 90.1 + brightBlue: 34.5 + brightMagenta: 39.9 + brightCyan: 49.9 + brightWhite: 84.5 diff --git a/themes/artisan-theme.yaml b/themes/artisan-theme.yaml new file mode 100644 index 00000000..1110bdda --- /dev/null +++ b/themes/artisan-theme.yaml @@ -0,0 +1,49 @@ +name: "Artisan Theme" +source: + marketplace_id: "VheissuLabs.artisan-theme" + version: "0.1.0" + installs: 39 + author: "VheissuLabs" + repo: "https://github.com/VheissuLabs/artisan-theme" + url: "https://marketplace.visualstudio.com/items?itemName=VheissuLabs.artisan-theme" +colors: + bg: "#F3F3F3" + fg: "#171717" + black: "#171717" + red: "#CA2606" + green: "#007A4C" + yellow: "#F9B803" + blue: "#2176D3" + magenta: "#EE9DAC" + cyan: "#007A4C" + white: "#F3F3F3" + brightBlack: "#6B6B6B" + brightRed: "#CA2606" + brightGreen: "#007A4C" + brightYellow: "#F9B803" + brightBlue: "#2176D3" + brightMagenta: "#EE9DAC" + brightCyan: "#007A4C" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.5 + black: 97.5 + red: 68.7 + green: 69.2 + yellow: 25 + blue: 64.1 + magenta: 33.5 + cyan: 69.2 + white: 0 + brightBlack: 69.4 + brightRed: 68.7 + brightGreen: 69.2 + brightYellow: 25 + brightBlue: 64.1 + brightMagenta: 33.5 + brightCyan: 69.2 + brightWhite: 0 diff --git a/themes/artlab-dark.yaml b/themes/artlab-dark.yaml new file mode 100644 index 00000000..f8350576 --- /dev/null +++ b/themes/artlab-dark.yaml @@ -0,0 +1,49 @@ +name: "ArtLab Dark" +source: + marketplace_id: "ArthurDanjou.theme-artlab" + version: "1.0.5" + installs: 12 + author: "Arthur Danjou" + repo: "https://github.com/arthurdanjou/vscode-theme-artlab" + url: "https://marketplace.visualstudio.com/items?itemName=ArthurDanjou.theme-artlab" +colors: + bg: "#121212" + fg: "#DBD7CA" + black: "#393A34" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#94E2D5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 81.7 + black: 0 + red: 56.1 + green: 79.8 + yellow: 89.9 + blue: 60.5 + magenta: 78.2 + cyan: 79.7 + white: 81.7 + brightBlack: 30 + brightRed: 56.1 + brightGreen: 79.8 + brightYellow: 89.9 + brightBlue: 60.5 + brightMagenta: 78.2 + brightCyan: 79.7 + brightWhite: 107.3 diff --git a/themes/artlab-light.yaml b/themes/artlab-light.yaml new file mode 100644 index 00000000..fba40f23 --- /dev/null +++ b/themes/artlab-light.yaml @@ -0,0 +1,49 @@ +name: "ArtLab Light" +source: + marketplace_id: "ArthurDanjou.theme-artlab" + version: "1.0.5" + installs: 12 + author: "Arthur Danjou" + repo: "https://github.com/arthurdanjou/vscode-theme-artlab" + url: "https://marketplace.visualstudio.com/items?itemName=ArthurDanjou.theme-artlab" +colors: + bg: "#FFFFFF" + fg: "#393A34" + black: "#121212" + red: "#D20F39" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#EA76CB" + cyan: "#179299" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#D20F39" + brightGreen: "#40A02B" + brightYellow: "#DF8E1D" + brightBlue: "#1E66F5" + brightMagenta: "#EA76CB" + brightCyan: "#179299" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 96.5 + black: 105.3 + red: 74.7 + green: 60.5 + yellow: 50.7 + blue: 73.2 + magenta: 51 + cyan: 64.5 + white: 21.1 + brightBlack: 45.8 + brightRed: 74.7 + brightGreen: 60.5 + brightYellow: 50.7 + brightBlue: 73.2 + brightMagenta: 51 + brightCyan: 64.5 + brightWhite: 17.6 diff --git a/themes/arunika.yaml b/themes/arunika.yaml new file mode 100644 index 00000000..82584852 --- /dev/null +++ b/themes/arunika.yaml @@ -0,0 +1,49 @@ +name: "arunika" +source: + marketplace_id: "ansandi.arunika" + version: "4.0.5" + installs: 80 + author: "ansandi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ansandi.arunika" +colors: + bg: "#202231" + fg: "#DEE0EF" + black: "#363847" + red: "#D1918F" + green: "#D980FA" + yellow: "#FD73BB" + blue: "#A0B6E8" + magenta: "#FFA089" + cyan: "#D6B4B4" + white: "#DEE0EF" + brightBlack: "#6B6D7C" + brightRed: "#D1918F" + brightGreen: "#D6B4B4" + brightYellow: "#B3BDCA" + brightBlue: "#A0B6E8" + brightMagenta: "#AAC9D4" + brightCyan: "#D6B4B4" + brightWhite: "#C9D3DF" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 85.7 + black: 0 + red: 49.1 + green: 50.8 + yellow: 50.6 + blue: 60.3 + magenta: 62 + cyan: 63.7 + white: 85.7 + brightBlack: 23.8 + brightRed: 49.1 + brightGreen: 63.7 + brightYellow: 63.7 + brightBlue: 60.3 + brightMagenta: 68.3 + brightCyan: 63.7 + brightWhite: 76.6 diff --git a/themes/arwinux-galaxy.yaml b/themes/arwinux-galaxy.yaml new file mode 100644 index 00000000..87ececcc --- /dev/null +++ b/themes/arwinux-galaxy.yaml @@ -0,0 +1,49 @@ +name: "Arwinux Galaxy" +source: + marketplace_id: "arwinux.arwinux-galaxy" + version: "0.2.0" + installs: 87 + author: "arwinux" + repo: "https://github.com/arwinux/arwinux-galaxy" + url: "https://marketplace.visualstudio.com/items?itemName=arwinux.arwinux-galaxy" +colors: + bg: "#272822" + fg: "#EEFFFF" + black: "#3B3C35" + red: "#F92672" + green: "#A6E22E" + yellow: "#9BEC00" + blue: "#FD971F" + magenta: "#AE81FF" + cyan: "#66D9EF" + white: "#FDFFF1" + brightBlack: "#6E7066" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#9BEC00" + brightBlue: "#FD971F" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#FDFFF1" +meta: + mode: "dark" + accent: "red" + hue: 115 + contrast: + fg: 102.2 + black: 0 + red: 35 + green: 74.7 + yellow: 78.5 + blue: 56.4 + magenta: 44.2 + cyan: 71.1 + white: 103.6 + brightBlack: 23.6 + brightRed: 35 + brightGreen: 74.7 + brightYellow: 78.5 + brightBlue: 56.4 + brightMagenta: 44.2 + brightCyan: 71.1 + brightWhite: 103.6 diff --git a/themes/as-theme.yaml b/themes/as-theme.yaml new file mode 100644 index 00000000..26bac876 --- /dev/null +++ b/themes/as-theme.yaml @@ -0,0 +1,49 @@ +name: "AS Theme" +source: + marketplace_id: "ArpitTheme.as-theme" + version: "1.0.3" + installs: 111 + author: "Arpit Shukla" + repo: "https://github.com/arpitshukla9/AS-VsCode-Theme-dark" + url: "https://marketplace.visualstudio.com/items?itemName=ArpitTheme.as-theme" +colors: + bg: "#040204" + fg: "#E8E8E8" + black: "#040204" + red: "#FF0040" + green: "#007A33" + yellow: "#FF6600" + blue: "#0080FF" + magenta: "#CC00CC" + cyan: "#00CCCC" + white: "#E8E8E8" + brightBlack: "#666666" + brightRed: "#FF4D66" + brightGreen: "#4DFF80" + brightYellow: "#FFCC4D" + brightBlue: "#4DA6FF" + brightMagenta: "#FF4DFF" + brightCyan: "#4DFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 327 + contrast: + fg: 92.9 + black: 0 + red: 37.9 + green: 25 + yellow: 47 + blue: 37.1 + magenta: 31.4 + cyan: 64.4 + white: 92.9 + brightBlack: 23 + brightRed: 43.5 + brightGreen: 88.5 + brightYellow: 79.9 + brightBlue: 52.2 + brightMagenta: 50.7 + brightCyan: 93.1 + brightWhite: 107.9 diff --git a/themes/asdfasdfuntitled.yaml b/themes/asdfasdfuntitled.yaml new file mode 100644 index 00000000..1576b13a --- /dev/null +++ b/themes/asdfasdfuntitled.yaml @@ -0,0 +1,49 @@ +name: "asdfasdfUntitled" +source: + marketplace_id: "vulfpeck.pastellize" + version: "0.0.3" + installs: 656 + author: "vulfpeck" + repo: "https://github.com/Vulfpeck/pastellize" + url: "https://marketplace.visualstudio.com/items?itemName=vulfpeck.pastellize" +colors: + bg: "#111115" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/asexual.yaml b/themes/asexual.yaml new file mode 100644 index 00000000..520bb593 --- /dev/null +++ b/themes/asexual.yaml @@ -0,0 +1,49 @@ +name: "Asexual" +source: + marketplace_id: "ElizaMuss.elizas-pride-themes" + version: "1.0.2" + installs: 848 + author: "Eliza Muss" + repo: "https://github.com/The-Gamer69/elizas-pride-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#4B4B4B" + red: "#CD3131" + green: "#33D057" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#660066" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#7F7F7F" + brightRed: "#F14C4C" + brightGreen: "#67FF8A" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#EC84FF" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.9 + black: 12.3 + red: 27.7 + green: 63.2 + yellow: 86.6 + blue: 28.4 + magenta: 0 + cyan: 48.6 + white: 107.9 + brightBlack: 34.3 + brightRed: 39.6 + brightGreen: 89.7 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 58.1 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/asgtheme.yaml b/themes/asgtheme.yaml new file mode 100644 index 00000000..ff380bd1 --- /dev/null +++ b/themes/asgtheme.yaml @@ -0,0 +1,49 @@ +name: "ASGTheme" +source: + marketplace_id: "asgthedev.asgthemes" + version: "0.1.1" + installs: 38 + author: "ASGTheDev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=asgthedev.asgthemes" +colors: + bg: "#242429" + fg: "#EEEEEE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 93.9 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.8 + blue: 25.6 + magenta: 28 + cyan: 45.8 + white: 88.2 + brightBlack: 20.2 + brightRed: 36.8 + brightGreen: 61.7 + brightYellow: 93.8 + brightBlue: 38.2 + brightMagenta: 43.6 + brightCyan: 53.6 + brightWhite: 88.2 diff --git a/themes/ash-ember.yaml b/themes/ash-ember.yaml new file mode 100644 index 00000000..5e0591f0 --- /dev/null +++ b/themes/ash-ember.yaml @@ -0,0 +1,49 @@ +name: "Ash & Ember" +source: + marketplace_id: "InnaSodri.ash-ember-theme" + version: "0.0.3" + installs: 127 + author: "Inna Sodri" + repo: "https://example.com/inna/ash-ember-theme" + url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.ash-ember-theme" +colors: + bg: "#131313" + fg: "#EDEDED" + black: "#2A2A2A" + red: "#D14D41" + green: "#6FBF8F" + yellow: "#FFB067" + blue: "#6FA4FF" + magenta: "#A08CC2" + cyan: "#3FB8C0" + white: "#D9D9D9" + brightBlack: "#2A2A2A" + brightRed: "#D14D41" + brightGreen: "#6FBF8F" + brightYellow: "#FFB067" + brightBlue: "#6FA4FF" + brightMagenta: "#A08CC2" + brightCyan: "#3FB8C0" + brightWhite: "#D9D9D9" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 95.5 + black: 0 + red: 31.9 + green: 58.3 + yellow: 68.7 + blue: 52.6 + magenta: 44.6 + cyan: 54.9 + white: 82.9 + brightBlack: 0 + brightRed: 31.9 + brightGreen: 58.3 + brightYellow: 68.7 + brightBlue: 52.6 + brightMagenta: 44.6 + brightCyan: 54.9 + brightWhite: 82.9 diff --git a/themes/ash-lumen-light.yaml b/themes/ash-lumen-light.yaml new file mode 100644 index 00000000..ed133a5f --- /dev/null +++ b/themes/ash-lumen-light.yaml @@ -0,0 +1,49 @@ +name: "Ash Lumen Light" +source: + marketplace_id: "edfl.ash-lumen" + version: "0.1.0" + installs: 9 + author: "edfl" + repo: "https://github.com/emersxw/edfl" + url: "https://marketplace.visualstudio.com/items?itemName=edfl.ash-lumen" +colors: + bg: "#EEEEEE" + fg: "#505050" + black: "#505050" + red: "#806060" + green: "#607060" + yellow: "#808060" + blue: "#607080" + magenta: "#706070" + cyan: "#607070" + white: "#808080" + brightBlack: "#A0A0A0" + brightRed: "#705050" + brightGreen: "#506050" + brightYellow: "#707050" + brightBlue: "#506070" + brightMagenta: "#605060" + brightCyan: "#506060" + brightWhite: "#404040" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 77.9 + black: 77.9 + red: 67.8 + green: 66.1 + yellow: 57.7 + blue: 65 + magenta: 69.1 + cyan: 65.6 + white: 56.8 + brightBlack: 40.9 + brightRed: 74.5 + brightGreen: 73 + brightYellow: 65.1 + brightBlue: 72 + brightMagenta: 75.8 + brightCyan: 72.6 + brightWhite: 84 diff --git a/themes/ash-lumen.yaml b/themes/ash-lumen.yaml new file mode 100644 index 00000000..bfe13a50 --- /dev/null +++ b/themes/ash-lumen.yaml @@ -0,0 +1,49 @@ +name: "Ash Lumen" +source: + marketplace_id: "edfl.ash-lumen" + version: "0.1.0" + installs: 9 + author: "edfl" + repo: "https://github.com/emersxw/edfl" + url: "https://marketplace.visualstudio.com/items?itemName=edfl.ash-lumen" +colors: + bg: "#161616" + fg: "#A0A0A0" + black: "#161616" + red: "#A88080" + green: "#80A080" + yellow: "#A0A080" + blue: "#8090A0" + magenta: "#A080A0" + cyan: "#80A0A0" + white: "#A0A0A0" + brightBlack: "#505050" + brightRed: "#B89090" + brightGreen: "#90B090" + brightYellow: "#B0B090" + brightBlue: "#90A0B0" + brightMagenta: "#B090B0" + brightCyan: "#90B0B0" + brightWhite: "#C0C0C0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 49.9 + black: 0 + red: 38.6 + green: 45.7 + yellow: 48.9 + blue: 40.7 + magenta: 38.8 + cyan: 46.8 + white: 49.9 + brightBlack: 13.3 + brightRed: 46.7 + brightGreen: 54.1 + brightYellow: 57.5 + brightBlue: 48.9 + brightMagenta: 46.8 + brightCyan: 55.3 + brightWhite: 67.7 diff --git a/themes/ash.yaml b/themes/ash.yaml new file mode 100644 index 00000000..29546d43 --- /dev/null +++ b/themes/ash.yaml @@ -0,0 +1,49 @@ +name: "Ash" +source: + marketplace_id: "Priyaank.ether" + version: "2.0.1" + installs: 55 + author: "Priyaank" + repo: "https://github.com/PRIYAANK2510/Ether" + url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.ether" +colors: + bg: "#1F1F1F" + fg: "#656565" + black: "#181818" + red: "#B09388" + green: "#91BB96" + yellow: "#AF89A8" + blue: "#81A1BC" + magenta: "#947DB9" + cyan: "#909090" + white: "#DFDFDF" + brightBlack: "#656565" + brightRed: "#C5A89A" + brightGreen: "#A5CBA8" + brightYellow: "#C29BBA" + brightBlue: "#95B3CA" + brightMagenta: "#A891C7" + brightCyan: "#A8A8A8" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 20.6 + black: 0 + red: 45.3 + green: 58 + yellow: 43 + blue: 47.4 + magenta: 36.5 + cyan: 40.6 + white: 85.3 + brightBlack: 20.6 + brightRed: 56.4 + brightGreen: 67.5 + brightYellow: 52.5 + brightBlue: 57.1 + brightMagenta: 46.2 + brightCyan: 53.2 + brightWhite: 96.1 diff --git a/themes/ashao-color-theme.yaml b/themes/ashao-color-theme.yaml new file mode 100644 index 00000000..7f685777 --- /dev/null +++ b/themes/ashao-color-theme.yaml @@ -0,0 +1,49 @@ +name: "ashao-color-theme" +source: + marketplace_id: "ashao.theme-ashao" + version: "1.0.0" + installs: 52 + author: "ashao" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ashao.theme-ashao" +colors: + bg: "#2B2B2B" + fg: "#C5C8C6" + black: "#1E1E1E" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 68.8 + black: 0 + red: 21.6 + green: 50 + yellow: 54.6 + blue: 31.6 + magenta: 29.2 + cyan: 47.4 + white: 85.5 + brightBlack: 19 + brightRed: 34.3 + brightGreen: 74 + brightYellow: 80.9 + brightBlue: 46.8 + brightMagenta: 43.5 + brightCyan: 70.4 + brightWhite: 98.9 diff --git a/themes/ashen-darker.yaml b/themes/ashen-darker.yaml new file mode 100644 index 00000000..3dc6d6b7 --- /dev/null +++ b/themes/ashen-darker.yaml @@ -0,0 +1,49 @@ +name: "Ashen Darker" +source: + marketplace_id: "derder.ashen-theme" + version: "1.0.3" + installs: 187 + author: "Der Der" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=derder.ashen-theme" +colors: + bg: "#0D0D0D" + fg: "#B4B4B4" + black: "#151515" + red: "#B14242" + green: "#1E6F54" + yellow: "#E5A72A" + blue: "#4A8B8B" + magenta: "#C53030" + cyan: "#D87C4A" + white: "#B4B4B4" + brightBlack: "#535353" + brightRed: "#DF6464" + brightGreen: "#629C7D" + brightYellow: "#E49A44" + brightBlue: "#4A8B8B" + brightMagenta: "#DF6464" + brightCyan: "#C4693D" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 61.5 + black: 0 + red: 24.1 + green: 21.5 + yellow: 60.6 + blue: 34.9 + magenta: 25.6 + cyan: 44.6 + white: 61.5 + brightBlack: 15.1 + brightRed: 40.4 + brightGreen: 42.4 + brightYellow: 56.1 + brightBlue: 34.9 + brightMagenta: 40.4 + brightCyan: 35.7 + brightWhite: 90.8 diff --git a/themes/ashen.yaml b/themes/ashen.yaml new file mode 100644 index 00000000..b077b616 --- /dev/null +++ b/themes/ashen.yaml @@ -0,0 +1,49 @@ +name: "Ashen" +source: + marketplace_id: "derder.ashen-theme" + version: "1.0.3" + installs: 187 + author: "Der Der" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=derder.ashen-theme" +colors: + bg: "#121212" + fg: "#B4B4B4" + black: "#151515" + red: "#B14242" + green: "#1E6F54" + yellow: "#E5A72A" + blue: "#4A8B8B" + magenta: "#C53030" + cyan: "#D87C4A" + white: "#B4B4B4" + brightBlack: "#535353" + brightRed: "#DF6464" + brightGreen: "#629C7D" + brightYellow: "#E49A44" + brightBlue: "#4A8B8B" + brightMagenta: "#DF6464" + brightCyan: "#C4693D" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 61.2 + black: 0 + red: 23.8 + green: 21.2 + yellow: 60.3 + blue: 34.6 + magenta: 25.3 + cyan: 44.3 + white: 61.2 + brightBlack: 14.8 + brightRed: 40.1 + brightGreen: 42.1 + brightYellow: 55.8 + brightBlue: 34.6 + brightMagenta: 40.1 + brightCyan: 35.4 + brightWhite: 90.4 diff --git a/themes/ashineui.yaml b/themes/ashineui.yaml new file mode 100644 index 00000000..a3784ffb --- /dev/null +++ b/themes/ashineui.yaml @@ -0,0 +1,49 @@ +name: "AShineUI" +source: + marketplace_id: "Morgheas.ashine-ui-theme" + version: "0.1.0" + installs: 10 + author: "Morgheas" + repo: "https://github.com/Akumuuu/AShineUI" + url: "https://marketplace.visualstudio.com/items?itemName=Morgheas.ashine-ui-theme" +colors: + bg: "#1D1D1D" + fg: "#D4D4D4" + black: "#666666" + red: "#FF5555" + green: "#BAE67E" + yellow: "#FFD866" + blue: "#7AA2F7" + magenta: "#C792EA" + cyan: "#5CCFE6" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF5555" + brightGreen: "#BAE67E" + brightYellow: "#FFD866" + brightBlue: "#7AA2F7" + brightMagenta: "#C792EA" + brightCyan: "#5CCFE6" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.8 + black: 21.3 + red: 42.7 + green: 81.2 + yellow: 83.6 + blue: 51 + magenta: 53.1 + cyan: 67.1 + white: 89.3 + brightBlack: 21.3 + brightRed: 42.7 + brightGreen: 81.2 + brightYellow: 83.6 + brightBlue: 51 + brightMagenta: 53.1 + brightCyan: 67.1 + brightWhite: 89.3 diff --git a/themes/aspiesoft-intellij-theme.yaml b/themes/aspiesoft-intellij-theme.yaml new file mode 100644 index 00000000..fcfb5db5 --- /dev/null +++ b/themes/aspiesoft-intellij-theme.yaml @@ -0,0 +1,49 @@ +name: "AspieSoft IntelliJ Theme" +source: + marketplace_id: "AspieSoft.aspiesoft-intellij-theme" + version: "1.0.3" + installs: 3790 + author: "AspieSoft" + repo: "https://github.com/aspiesoft/vscode-intellij-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AspieSoft.aspiesoft-intellij-theme" +colors: + bg: "#272727" + fg: "#A9B7C6" + black: "#FFFFFF" + red: "#FF6B68" + green: "#A8C023" + yellow: "#D6BF55" + blue: "#5394EC" + magenta: "#AE8ABE" + cyan: "#299999" + white: "#1F1F1F" + brightBlack: "#FFFFFF" + brightRed: "#FF8785" + brightGreen: "#A8C023" + brightYellow: "#FFFF00" + brightBlue: "#7EAEF1" + brightMagenta: "#FF99FF" + brightCyan: "#6CDADA" + brightWhite: "#1F1F1F" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 59.2 + black: 104.6 + red: 45.8 + green: 59.2 + yellow: 65 + blue: 41 + magenta: 42.9 + cyan: 36.9 + white: 0 + brightBlack: 104.6 + brightRed: 53.5 + brightGreen: 59.2 + brightYellow: 99.4 + brightBlue: 54 + brightMagenta: 64.3 + brightCyan: 70.9 + brightWhite: 0 diff --git a/themes/aspire-core.yaml b/themes/aspire-core.yaml new file mode 100644 index 00000000..505835b1 --- /dev/null +++ b/themes/aspire-core.yaml @@ -0,0 +1,49 @@ +name: "Aspire Core" +source: + marketplace_id: "adwardstark.catacino" + version: "1.0.2" + installs: 170 + author: "Aditya Awasthi" + repo: "https://github.com/adwardstark/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=adwardstark.catacino" +colors: + bg: "#0C365A" + fg: "#FFFFFF" + black: "#000000" + red: "#F56F51" + green: "#0DBC79" + yellow: "#FABC41" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F56F51" + brightGreen: "#23D18B" + brightYellow: "#FABC41" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: 249 + contrast: + fg: 101.4 + black: 0 + red: 40.9 + green: 47.5 + yellow: 66.1 + blue: 23.6 + magenta: 24.3 + cyan: 42.1 + white: 84.5 + brightBlack: 16.6 + brightRed: 40.9 + brightGreen: 58.1 + brightYellow: 66.1 + brightBlue: 34.5 + brightMagenta: 39.9 + brightCyan: 49.9 + brightWhite: 84.5 diff --git a/themes/aspire-dark.yaml b/themes/aspire-dark.yaml new file mode 100644 index 00000000..d74fec67 --- /dev/null +++ b/themes/aspire-dark.yaml @@ -0,0 +1,49 @@ +name: "Aspire Dark" +source: + marketplace_id: "adwardstark.catacino" + version: "1.0.2" + installs: 170 + author: "Aditya Awasthi" + repo: "https://github.com/adwardstark/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=adwardstark.catacino" +colors: + bg: "#293034" + fg: "#FFFFFF" + black: "#000000" + red: "#F56F51" + green: "#0DBC79" + yellow: "#FABC41" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F56F51" + brightGreen: "#23D18B" + brightYellow: "#FABC41" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: 233 + contrast: + fg: 103 + black: 0 + red: 42.5 + green: 49.1 + yellow: 67.7 + blue: 25.2 + magenta: 25.9 + cyan: 43.7 + white: 86.1 + brightBlack: 18.2 + brightRed: 42.5 + brightGreen: 59.7 + brightYellow: 67.7 + brightBlue: 36.1 + brightMagenta: 41.5 + brightCyan: 51.5 + brightWhite: 86.1 diff --git a/themes/aspire-light.yaml b/themes/aspire-light.yaml new file mode 100644 index 00000000..61a51990 --- /dev/null +++ b/themes/aspire-light.yaml @@ -0,0 +1,49 @@ +name: "Aspire Light" +source: + marketplace_id: "adwardstark.catacino" + version: "1.0.2" + installs: 170 + author: "Aditya Awasthi" + repo: "https://github.com/adwardstark/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=adwardstark.catacino" +colors: + bg: "#FFFFFF" + fg: "#38383D" + black: "#0C0C0D" + red: "#CD3131" + green: "#00BC00" + yellow: "#BE9B00" + blue: "#005BD3" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#737373" + brightBlack: "#424242" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#C7BC77" + brightBlue: "#0060DF" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 96.8 + black: 105.7 + red: 74 + green: 49.2 + yellow: 51.6 + blue: 79.6 + magenta: 74.6 + cyan: 60.6 + white: 72.9 + brightBlack: 93.4 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 36.9 + brightBlue: 77.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/assam-tea-gardens.yaml b/themes/assam-tea-gardens.yaml new file mode 100644 index 00000000..9a2a6467 --- /dev/null +++ b/themes/assam-tea-gardens.yaml @@ -0,0 +1,49 @@ +name: "Assam - Tea Gardens" +source: + marketplace_id: "ProudIndian.colors-of-india-themes" + version: "1.0.1" + installs: 37 + author: "Sachin Ghadi" + repo: "https://github.com/GhadiSachin/colors-of-india-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" +colors: + bg: "#181A16" + fg: "#E8F0E8" + black: "#000000" + red: "#E74856" + green: "#DC143C" + yellow: "#DAA520" + blue: "#3B8EEA" + magenta: "#B140AA" + cyan: "#29B8DB" + white: "#E5E5E5" + brightBlack: "#000000" + brightRed: "#E74856" + brightGreen: "#DC143C" + brightYellow: "#DAA520" + brightBlue: "#3B8EEA" + brightMagenta: "#B140AA" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 95.3 + black: 0 + red: 35.6 + green: 28.2 + yellow: 57 + blue: 39.7 + magenta: 26.6 + cyan: 55.1 + white: 89.8 + brightBlack: 0 + brightRed: 35.6 + brightGreen: 28.2 + brightYellow: 57 + brightBlue: 39.7 + brightMagenta: 26.6 + brightCyan: 55.1 + brightWhite: 89.8 diff --git a/themes/asteria.yaml b/themes/asteria.yaml new file mode 100644 index 00000000..fef650d9 --- /dev/null +++ b/themes/asteria.yaml @@ -0,0 +1,49 @@ +name: "Asteria" +source: + marketplace_id: "spaceinvadev.asteria" + version: "0.2.0" + installs: 699 + author: "Mauro Paternina" + repo: "https://github.com/spaceinvadev/asteria" + url: "https://marketplace.visualstudio.com/items?itemName=spaceinvadev.asteria" +colors: + bg: "#0E1011" + fg: "#7B7B7B" + black: "#0E1011" + red: "#FF8E8E" + green: "#65D39C" + yellow: "#D39165" + blue: "#6BB3EE" + magenta: "#F898D3" + cyan: "#8CEBE3" + white: "#F8F8F8" + brightBlack: "#0E1011" + brightRed: "#FF8E8E" + brightGreen: "#65D39C" + brightYellow: "#D39165" + brightBlue: "#6BB3EE" + brightMagenta: "#F898D3" + brightCyan: "#8CEBE3" + brightWhite: "#F8F8F8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 32 + black: 0 + red: 58.6 + green: 67.6 + yellow: 50.5 + blue: 57.4 + magenta: 63.1 + cyan: 84.3 + white: 102.8 + brightBlack: 0 + brightRed: 58.6 + brightGreen: 67.6 + brightYellow: 50.5 + brightBlue: 57.4 + brightMagenta: 63.1 + brightCyan: 84.3 + brightWhite: 102.8 diff --git a/themes/astigmatism-theme.yaml b/themes/astigmatism-theme.yaml new file mode 100644 index 00000000..2481f3e2 --- /dev/null +++ b/themes/astigmatism-theme.yaml @@ -0,0 +1,49 @@ +name: "Astigmatism Theme" +source: + marketplace_id: "GabrielFacioni.astigmatism-theme" + version: "1.0.3" + installs: 259 + author: "GabrielFacioni" + repo: "https://github.com/GabrielMMC/astigmatism-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GabrielFacioni.astigmatism-theme" +colors: + bg: "#20283A" + fg: "#DBD5C0" + black: "#242424" + red: "#DF3E3E" + green: "#78B37B" + yellow: "#D2BF61" + blue: "#0054D1" + magenta: "#A16FC2" + cyan: "#29C5BD" + white: "#FDD8D8" + brightBlack: "#242424" + brightRed: "#DF3E3E" + brightGreen: "#78B37B" + brightYellow: "#D2BF61" + brightBlue: "#0054D1" + brightMagenta: "#A16FC2" + brightCyan: "#29C5BD" + brightWhite: "#FDD8D8" +meta: + mode: "dark" + accent: "purple" + hue: 266 + contrast: + fg: 77.5 + black: 0 + red: 29.8 + green: 50.2 + yellow: 64.4 + blue: 16.8 + magenta: 33.1 + cyan: 57.2 + white: 84.8 + brightBlack: 0 + brightRed: 29.8 + brightGreen: 50.2 + brightYellow: 64.4 + brightBlue: 16.8 + brightMagenta: 33.1 + brightCyan: 57.2 + brightWhite: 84.8 diff --git a/themes/astra-themedark.yaml b/themes/astra-themedark.yaml new file mode 100644 index 00000000..46277563 --- /dev/null +++ b/themes/astra-themedark.yaml @@ -0,0 +1,49 @@ +name: "Astra-ThemeDark" +source: + marketplace_id: "AstraVirtual.astra-theme-dark" + version: "0.0.1" + installs: 6 + author: "AstraVirtual" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AstraVirtual.astra-theme-dark" +colors: + bg: "#1E1E1E" + fg: "#E0C3C3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72.4 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/astra.yaml b/themes/astra.yaml new file mode 100644 index 00000000..ed2fe81f --- /dev/null +++ b/themes/astra.yaml @@ -0,0 +1,49 @@ +name: "Astra" +source: + marketplace_id: "fulin.astra" + version: "1.0.1" + installs: 1585 + author: "Giovanni Fu Lin" + repo: "https://github.com/aeither/vscode-astra-theme" + url: "https://marketplace.visualstudio.com/items?itemName=fulin.astra" +colors: + bg: "#181818" + fg: "#FFFFFF" + black: "#2D3139" + red: "#DD6094" + green: "#6FE25A" + yellow: "#E4B050" + blue: "#528BFF" + magenta: "#B438DA" + cyan: "#56E8FF" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#6FE25A" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#84EFFF" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.8 + black: 0 + red: 39.7 + green: 73.2 + yellow: 63.3 + blue: 41.4 + magenta: 29.4 + cyan: 80.7 + white: 82.9 + brightBlack: 35.4 + brightRed: 38.3 + brightGreen: 73.2 + brightYellow: 70.5 + brightBlue: 41.4 + brightMagenta: 12.6 + brightCyan: 86.4 + brightWhite: 82.9 diff --git a/themes/astral-theme.yaml b/themes/astral-theme.yaml new file mode 100644 index 00000000..f13d10f0 --- /dev/null +++ b/themes/astral-theme.yaml @@ -0,0 +1,49 @@ +name: "Astral Theme" +source: + marketplace_id: "ArthurBottcher.astral-theme" + version: "0.0.1" + installs: 32 + author: "Arthur Bottcher" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ArthurBottcher.astral-theme" +colors: + bg: "#111213" + fg: "#E4E4E7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F5F5F5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 90 + black: 0 + red: 27.2 + green: 53.4 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 100.7 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.5 diff --git a/themes/astro-dark.yaml b/themes/astro-dark.yaml new file mode 100644 index 00000000..b1b5c59f --- /dev/null +++ b/themes/astro-dark.yaml @@ -0,0 +1,49 @@ +name: "Astro Dark" +source: + marketplace_id: "wicked-labs.astro-theme" + version: "0.9.7" + installs: 5253 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/astro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.astro-theme" +colors: + bg: "#0F1014" + fg: "#9898A2" + black: "#FFFFFF" + red: "#EEF0F9" + green: "#5CC9F5" + yellow: "#23EBC0" + blue: "#ACAFFF" + magenta: "#DA68FB" + cyan: "#FFD493" + white: "#9898A2" + brightBlack: "#686974" + brightRed: "#EEF0F9" + brightGreen: "#5CC9F5" + brightYellow: "#23EBC0" + brightBlue: "#ACAFFF" + brightMagenta: "#DA68FB" + brightCyan: "#FFD493" + brightWhite: "#9898A2" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 46.6 + black: 107.4 + red: 97.8 + green: 66.5 + yellow: 78.7 + blue: 62.4 + magenta: 47.3 + cyan: 84.1 + white: 46.6 + brightBlack: 24.2 + brightRed: 97.8 + brightGreen: 66.5 + brightYellow: 78.7 + brightBlue: 62.4 + brightMagenta: 47.3 + brightCyan: 84.1 + brightWhite: 46.6 diff --git a/themes/astro-kanagawa.yaml b/themes/astro-kanagawa.yaml new file mode 100644 index 00000000..daa19da9 --- /dev/null +++ b/themes/astro-kanagawa.yaml @@ -0,0 +1,49 @@ +name: "Astro Kanagawa" +source: + marketplace_id: "panquequelol.astro-kanagawa" + version: "0.0.4" + installs: 3863 + author: "panquequelol" + repo: "https://github.com/panquequelol/astro-kanagawa" + url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.astro-kanagawa" +colors: + bg: "#191919" + fg: "#9898A2" + black: "#131317" + red: "#DCD7BA" + green: "#855C8D" + yellow: "#879A3B" + blue: "#4F76A1" + magenta: "#BE3F48" + cyan: "#578FA4" + white: "#9898A2" + brightBlack: "#686974" + brightRed: "#DCD7BA" + brightGreen: "#855C8D" + brightYellow: "#879A3B" + brightBlue: "#4F76A1" + brightMagenta: "#BE3F48" + brightCyan: "#578FA4" + brightWhite: "#9898A2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 45.8 + black: 0 + red: 80.6 + green: 23.9 + yellow: 42.3 + blue: 27.7 + magenta: 25.4 + cyan: 37.2 + white: 45.8 + brightBlack: 23.4 + brightRed: 80.6 + brightGreen: 23.9 + brightYellow: 42.3 + brightBlue: 27.7 + brightMagenta: 25.4 + brightCyan: 37.2 + brightWhite: 45.8 diff --git a/themes/astro-light.yaml b/themes/astro-light.yaml new file mode 100644 index 00000000..d949df8f --- /dev/null +++ b/themes/astro-light.yaml @@ -0,0 +1,49 @@ +name: "Astro Light" +source: + marketplace_id: "wicked-labs.astro-theme" + version: "0.9.7" + installs: 5253 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/astro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.astro-theme" +colors: + bg: "#FDFDFE" + fg: "#4E5377" + black: "#D8DAE4" + red: "#686974" + green: "#1585B3" + yellow: "#10A380" + blue: "#787CD5" + magenta: "#B81AE6" + cyan: "#DE8601" + white: "#4E5377" + brightBlack: "#5F6488" + brightRed: "#686974" + brightGreen: "#1585B3" + brightYellow: "#10A380" + brightBlue: "#787CD5" + brightMagenta: "#B81AE6" + brightCyan: "#DE8601" + brightWhite: "#4E5377" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 84.6 + black: 18 + red: 76 + green: 67.1 + yellow: 57.4 + blue: 63.5 + magenta: 70.5 + cyan: 52.2 + white: 84.6 + brightBlack: 77.5 + brightRed: 76 + brightGreen: 67.1 + brightYellow: 57.4 + brightBlue: 63.5 + brightMagenta: 70.5 + brightCyan: 52.2 + brightWhite: 84.6 diff --git a/themes/astrofunk-dark.yaml b/themes/astrofunk-dark.yaml new file mode 100644 index 00000000..dc8f75c0 --- /dev/null +++ b/themes/astrofunk-dark.yaml @@ -0,0 +1,49 @@ +name: "Astrofunk Dark" +source: + marketplace_id: "JamesGulland.astrofunk-dark-theme" + version: "0.1.0" + installs: 35 + author: "James Gulland" + repo: "https://github.com/james-gulland/astrofunk-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.astrofunk-dark-theme" +colors: + bg: "#272635" + fg: "#B9C2E0" + black: "#272635" + red: "#FC8899" + green: "#93E2D4" + yellow: "#FFFFC5" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#B9C2E0" + brightRed: "#FC8899" + brightGreen: "#93E2D4" + brightYellow: "#FFFFC5" + brightBlue: "#B9C2E0" + brightMagenta: "#F087BD" + brightCyan: "#FFCA85" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 288 + contrast: + fg: 66.7 + black: 0 + red: 53.7 + green: 76.8 + yellow: 102.1 + blue: 75.9 + magenta: 52.5 + cyan: 75.9 + white: 104.5 + brightBlack: 66.7 + brightRed: 53.7 + brightGreen: 76.8 + brightYellow: 102.1 + brightBlue: 66.7 + brightMagenta: 52.5 + brightCyan: 76.7 + brightWhite: 104.5 diff --git a/themes/astronaut.yaml b/themes/astronaut.yaml new file mode 100644 index 00000000..876b3ea5 --- /dev/null +++ b/themes/astronaut.yaml @@ -0,0 +1,49 @@ +name: "Astronaut" +source: + marketplace_id: "larabeatriz32.theme-astronaut" + version: "1.0.1" + installs: 2473 + author: "larabeatriz32" + repo: "https://github.com/larabeatrizms/astronaut-theme" + url: "https://marketplace.visualstudio.com/items?itemName=larabeatriz32.theme-astronaut" +colors: + bg: "#191622" + fg: "#E1E1E6" + black: "#201B2D" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 296 + contrast: + fg: 87.6 + black: 0 + red: 43.3 + green: 84.8 + yellow: 98.5 + blue: 53.6 + magenta: 54.5 + cyan: 83.9 + white: 101.9 + brightBlack: 28 + brightRed: 48.7 + brightGreen: 88.9 + brightYellow: 103.4 + brightBlue: 66 + brightMagenta: 62.5 + brightCyan: 96.7 + brightWhite: 106.8 diff --git a/themes/astrus-midnight.yaml b/themes/astrus-midnight.yaml new file mode 100644 index 00000000..d399d228 --- /dev/null +++ b/themes/astrus-midnight.yaml @@ -0,0 +1,49 @@ +name: "Astrus Midnight" +source: + marketplace_id: "shailesh43.astrus" + version: "1.0.1" + installs: 170 + author: "Shailesh Sathe" + repo: "https://github.com/shailesh43/Astrus" + url: "https://marketplace.visualstudio.com/items?itemName=shailesh43.astrus" +colors: + bg: "#151529" + fg: "#ACB9D9" + black: "#1C1C1C" + red: "#C98181" + green: "#60FB77" + yellow: "#E3D37B" + blue: "#78A9FF" + magenta: "#CA79F9" + cyan: "#73D0FF" + white: "#D9D9D9" + brightBlack: "#65686F" + brightRed: "#FFBFBF" + brightGreen: "#9DFAAB" + brightYellow: "#FAD07B" + brightBlue: "#6696E9" + brightMagenta: "#F0ABFC" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 282 + contrast: + fg: 63.5 + black: 0 + red: 43.9 + green: 85.9 + yellow: 78.2 + blue: 54.7 + magenta: 47.9 + cyan: 70.8 + white: 82.5 + brightBlack: 22.8 + brightRed: 76.4 + brightGreen: 90.3 + brightYellow: 80.4 + brightBlue: 44.8 + brightMagenta: 69.6 + brightCyan: 81.1 + brightWhite: 106.8 diff --git a/themes/astrus-nebula.yaml b/themes/astrus-nebula.yaml new file mode 100644 index 00000000..bbb56d51 --- /dev/null +++ b/themes/astrus-nebula.yaml @@ -0,0 +1,49 @@ +name: "Astrus Nebula" +source: + marketplace_id: "shailesh43.astrus" + version: "1.0.1" + installs: 170 + author: "Shailesh Sathe" + repo: "https://github.com/shailesh43/Astrus" + url: "https://marketplace.visualstudio.com/items?itemName=shailesh43.astrus" +colors: + bg: "#1F1A27" + fg: "#ACB9D9" + black: "#1C1C1C" + red: "#C98181" + green: "#60FB77" + yellow: "#E3D37B" + blue: "#78A9FF" + magenta: "#CA79F9" + cyan: "#73D0FF" + white: "#D9D9D9" + brightBlack: "#65686F" + brightRed: "#FFBFBF" + brightGreen: "#9DFAAB" + brightYellow: "#FAD07B" + brightBlue: "#6696E9" + brightMagenta: "#F0ABFC" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 302 + contrast: + fg: 63 + black: 0 + red: 43.3 + green: 85.3 + yellow: 77.6 + blue: 54.2 + magenta: 47.3 + cyan: 70.3 + white: 81.9 + brightBlack: 22.2 + brightRed: 75.8 + brightGreen: 89.7 + brightYellow: 79.9 + brightBlue: 44.2 + brightMagenta: 69 + brightCyan: 80.6 + brightWhite: 106.3 diff --git a/themes/astrus-standard.yaml b/themes/astrus-standard.yaml new file mode 100644 index 00000000..b2fd659d --- /dev/null +++ b/themes/astrus-standard.yaml @@ -0,0 +1,49 @@ +name: "Astrus Standard" +source: + marketplace_id: "shailesh43.astrus" + version: "1.0.1" + installs: 170 + author: "Shailesh Sathe" + repo: "https://github.com/shailesh43/Astrus" + url: "https://marketplace.visualstudio.com/items?itemName=shailesh43.astrus" +colors: + bg: "#171717" + fg: "#ACB9D9" + black: "#1C1C1C" + red: "#C98181" + green: "#60FB77" + yellow: "#E3D37B" + blue: "#78A9FF" + magenta: "#CA79F9" + cyan: "#73D0FF" + white: "#D9D9D9" + brightBlack: "#65686F" + brightRed: "#FFBFBF" + brightGreen: "#9DFAAB" + brightYellow: "#FAD07B" + brightBlue: "#6696E9" + brightMagenta: "#F0ABFC" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 63.6 + black: 0 + red: 43.9 + green: 85.9 + yellow: 78.2 + blue: 54.8 + magenta: 47.9 + cyan: 70.9 + white: 82.5 + brightBlack: 22.8 + brightRed: 76.5 + brightGreen: 90.3 + brightYellow: 80.5 + brightBlue: 44.9 + brightMagenta: 69.6 + brightCyan: 81.2 + brightWhite: 106.9 diff --git a/themes/asuka-theme-light.yaml b/themes/asuka-theme-light.yaml new file mode 100644 index 00000000..ba6dba63 --- /dev/null +++ b/themes/asuka-theme-light.yaml @@ -0,0 +1,49 @@ +name: "Asuka-Theme-Light" +source: + marketplace_id: "MennyfSoryu.asuka-theme" + version: "0.1.1" + installs: 4076 + author: "MennyfSoryu" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MennyfSoryu.asuka-theme" +colors: + bg: "#FFFFFF" + fg: "#65B04B" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 51.7 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/asuka-theme.yaml b/themes/asuka-theme.yaml new file mode 100644 index 00000000..ddf6f585 --- /dev/null +++ b/themes/asuka-theme.yaml @@ -0,0 +1,49 @@ +name: "Asuka-Theme" +source: + marketplace_id: "MennyfSoryu.asuka-theme" + version: "0.1.1" + installs: 4076 + author: "MennyfSoryu" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MennyfSoryu.asuka-theme" +colors: + bg: "#2C2C32" + fg: "#65B04B" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 45.9 + black: 0 + red: 23.4 + green: 49.7 + yellow: 82.3 + blue: 24.1 + magenta: 26.4 + cyan: 44.2 + white: 86.7 + brightBlack: 18.7 + brightRed: 35.2 + brightGreen: 60.2 + brightYellow: 92.3 + brightBlue: 36.7 + brightMagenta: 42 + brightCyan: 52.1 + brightWhite: 86.7 diff --git a/themes/athabasca-light.yaml b/themes/athabasca-light.yaml new file mode 100644 index 00000000..2d719100 --- /dev/null +++ b/themes/athabasca-light.yaml @@ -0,0 +1,49 @@ +name: "Athabasca Light" +source: + marketplace_id: "ianlord.athabasca" + version: "0.0.3" + installs: 637 + author: "Ian Lord" + repo: "https://github.com/ianlord/athabasca" + url: "https://marketplace.visualstudio.com/items?itemName=ianlord.athabasca" +colors: + bg: "#0C151C" + fg: "#E3F0FF" + black: "#263849" + red: "#A82E2E" + green: "#46997B" + yellow: "#B07426" + blue: "#4C6B88" + magenta: "#A40E45" + cyan: "#3288A7" + white: "#E6E6E6" + brightBlack: "#728BA5" + brightRed: "#F04242" + brightGreen: "#75FFCD" + brightYellow: "#FFB452" + brightBlue: "#88B2D9" + brightMagenta: "#D64379" + brightCyan: "#3CAED7" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: 242 + contrast: + fg: 96.3 + black: 0 + red: 18.9 + green: 39.2 + yellow: 34.6 + blue: 23.2 + magenta: 16.5 + cyan: 33.7 + white: 90.9 + brightBlack: 38.1 + brightRed: 37 + brightGreen: 91.7 + brightYellow: 69.8 + brightBlue: 57.5 + brightMagenta: 32.6 + brightCyan: 51.6 + brightWhite: 103.8 diff --git a/themes/athabasca.yaml b/themes/athabasca.yaml new file mode 100644 index 00000000..99a4608d --- /dev/null +++ b/themes/athabasca.yaml @@ -0,0 +1,49 @@ +name: "Athabasca" +source: + marketplace_id: "ianlord.athabasca" + version: "0.0.3" + installs: 637 + author: "Ian Lord" + repo: "https://github.com/ianlord/athabasca" + url: "https://marketplace.visualstudio.com/items?itemName=ianlord.athabasca" +colors: + bg: "#0A1016" + fg: "#E3F0FF" + black: "#263849" + red: "#A82E2E" + green: "#46997B" + yellow: "#B07426" + blue: "#4C6B88" + magenta: "#A40E45" + cyan: "#3288A7" + white: "#E6E6E6" + brightBlack: "#728BA5" + brightRed: "#F04242" + brightGreen: "#75FFCD" + brightYellow: "#FFB452" + brightBlue: "#88B2D9" + brightMagenta: "#D64379" + brightCyan: "#3CAED7" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 96.6 + black: 0 + red: 19.3 + green: 39.5 + yellow: 35 + blue: 23.5 + magenta: 16.8 + cyan: 34 + white: 91.2 + brightBlack: 38.4 + brightRed: 37.4 + brightGreen: 92 + brightYellow: 70.1 + brightBlue: 57.8 + brightMagenta: 32.9 + brightCyan: 51.9 + brightWhite: 104.2 diff --git a/themes/atilio.yaml b/themes/atilio.yaml new file mode 100644 index 00000000..6b4fc871 --- /dev/null +++ b/themes/atilio.yaml @@ -0,0 +1,49 @@ +name: "Atilio" +source: + marketplace_id: "pingocho.atilio" + version: "1.0.0" + installs: 36 + author: "Leo Marello" + repo: "https://github.com/lmarello/atilio-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pingocho.atilio" +colors: + bg: "#191A1F" + fg: "#D7D7D7" + black: "#565454" + red: "#D1949E" + green: "#DFF7A9" + yellow: "#879071" + blue: "#747EA7" + magenta: "#6F6F6F" + cyan: "#8BA6A9" + white: "#8A8A8A" + brightBlack: "#3D3D3D" + brightRed: "#904E64" + brightGreen: "#D1FF69" + brightYellow: "#F5F543" + brightBlue: "#9EABDE" + brightMagenta: "#8A8A8A" + brightCyan: "#9ED8DE" + brightWhite: "#ABABAB" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 81 + black: 14.5 + red: 51.8 + green: 95.1 + yellow: 39.3 + blue: 33.2 + magenta: 25.6 + cyan: 50 + white: 38.2 + brightBlack: 0 + brightRed: 20.4 + brightGreen: 96 + brightYellow: 95.3 + brightBlue: 56.4 + brightMagenta: 38.2 + brightCyan: 75.5 + brightWhite: 55.4 diff --git a/themes/atlantu.yaml b/themes/atlantu.yaml new file mode 100644 index 00000000..5f44cc53 --- /dev/null +++ b/themes/atlantu.yaml @@ -0,0 +1,49 @@ +name: "Atlantu" +source: + marketplace_id: "yradex.atlantu" + version: "1.4.2" + installs: 355 + author: "yradex" + repo: "https://github.com/Yradex/Atlantu" + url: "https://marketplace.visualstudio.com/items?itemName=yradex.atlantu" +colors: + bg: "#1B1C1E" + fg: "#D1D3D8" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.3 + black: 0 + red: 41.5 + green: 61.7 + yellow: 70 + blue: 54.1 + magenta: 44.6 + cyan: 54 + white: 82.5 + brightBlack: 35 + brightRed: 37.9 + brightGreen: 61.7 + brightYellow: 70 + brightBlue: 40.9 + brightMagenta: 12.2 + brightCyan: 54 + brightWhite: 82.5 diff --git a/themes/atom-homepage-fork.yaml b/themes/atom-homepage-fork.yaml new file mode 100644 index 00000000..bc272a8b --- /dev/null +++ b/themes/atom-homepage-fork.yaml @@ -0,0 +1,49 @@ +name: "Atom Homepage - Fork" +source: + marketplace_id: "xynny.atom-theme" + version: "0.0.1" + installs: 1062 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.atom-theme" +colors: + bg: "#363639" + fg: "#EDD9B7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.2 + black: 0 + red: 21 + green: 47.2 + yellow: 79.9 + blue: 21.7 + magenta: 24 + cyan: 41.8 + white: 84.3 + brightBlack: 16.3 + brightRed: 32.8 + brightGreen: 57.8 + brightYellow: 89.9 + brightBlue: 34.2 + brightMagenta: 39.6 + brightCyan: 49.6 + brightWhite: 84.3 diff --git a/themes/atom-material-theme.yaml b/themes/atom-material-theme.yaml new file mode 100644 index 00000000..ca995f7b --- /dev/null +++ b/themes/atom-material-theme.yaml @@ -0,0 +1,49 @@ +name: "Atom Material Theme" +source: + marketplace_id: "waseemakhter028.wise-owl-material-theme" + version: "1.0.0" + installs: 31 + author: "WaseemAkhter" + repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" +colors: + bg: "#263238" + fg: "#D4D4D4" + black: "#313131" + red: "#FF5D4E" + green: "#CDDC39" + yellow: "#FFCB43" + blue: "#4FB6F7" + magenta: "#E23673" + cyan: "#00B9CC" + white: "#E6E5E5" + brightBlack: "#708284" + brightRed: "#FF5D4E" + brightGreen: "#CDDC39" + brightYellow: "#FFCB43" + brightBlue: "#4FB6F7" + brightMagenta: "#E23673" + brightCyan: "#00B9CC" + brightWhite: "#E6E5E5" +meta: + mode: "dark" + accent: "red" + hue: 230 + contrast: + fg: 75.3 + black: 0 + red: 40.5 + green: 74.3 + yellow: 74.2 + blue: 53.1 + magenta: 29 + cyan: 50.6 + white: 86 + brightBlack: 28.9 + brightRed: 40.5 + brightGreen: 74.3 + brightYellow: 74.2 + brightBlue: 53.1 + brightMagenta: 29 + brightCyan: 50.6 + brightWhite: 86 diff --git a/themes/atom-one-dark-coal.yaml b/themes/atom-one-dark-coal.yaml new file mode 100644 index 00000000..7683539a --- /dev/null +++ b/themes/atom-one-dark-coal.yaml @@ -0,0 +1,49 @@ +name: "Atom One dark Coal" +source: + marketplace_id: "shiftybody.atom-one-dark-coal" + version: "1.5.0" + installs: 10664 + author: "shiftybody" + repo: "https://github.com/shiftybody/atom-one-dark-coal" + url: "https://marketplace.visualstudio.com/items?itemName=shiftybody.atom-one-dark-coal" +colors: + bg: "#181818" + fg: "#BFBFBF" + black: "#4D4D4D" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#666666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 66.9 + black: 12 + red: 36.6 + green: 60.3 + yellow: 48.5 + blue: 49.5 + magenta: 38.9 + cyan: 52.4 + white: 90.5 + brightBlack: 21.9 + brightRed: 46 + brightGreen: 76.7 + brightYellow: 61.1 + brightBlue: 63.6 + brightMagenta: 50.1 + brightCyan: 67.7 + brightWhite: 82.9 diff --git a/themes/atom-one-dark-cyan.yaml b/themes/atom-one-dark-cyan.yaml new file mode 100644 index 00000000..ae48d105 --- /dev/null +++ b/themes/atom-one-dark-cyan.yaml @@ -0,0 +1,49 @@ +name: "Atom One Dark Cyan" +source: + marketplace_id: "kq996.atom-one-cyan" + version: "1.2.0" + installs: 300 + author: "kq996" + repo: "https://github.com/keqing996/vscode-atom-one-cyan" + url: "https://marketplace.visualstudio.com/items?itemName=kq996.atom-one-cyan" +colors: + bg: "#303845" + fg: "#ABB2BF" + black: "#303845" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#56B6C2" + magenta: "#C678DD" + cyan: "#61AFEF" + white: "#DCDFE4" + brightBlack: "#5C6370" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#56B6C2" + brightMagenta: "#C678DD" + brightCyan: "#61AFEF" + brightWhite: "#DCDFE4" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 53.2 + black: 0 + red: 35.9 + green: 56.1 + yellow: 64.4 + blue: 48.4 + magenta: 39 + cyan: 48.5 + white: 79.9 + brightBlack: 14.4 + brightRed: 35.9 + brightGreen: 56.1 + brightYellow: 64.4 + brightBlue: 48.4 + brightMagenta: 39 + brightCyan: 48.5 + brightWhite: 79.9 diff --git a/themes/atom-one-light-cyan.yaml b/themes/atom-one-light-cyan.yaml new file mode 100644 index 00000000..f2908a04 --- /dev/null +++ b/themes/atom-one-light-cyan.yaml @@ -0,0 +1,49 @@ +name: "Atom One Light Cyan" +source: + marketplace_id: "kq996.atom-one-cyan" + version: "1.2.0" + installs: 300 + author: "kq996" + repo: "https://github.com/keqing996/vscode-atom-one-cyan" + url: "https://marketplace.visualstudio.com/items?itemName=kq996.atom-one-cyan" +colors: + bg: "#F2F3F7" + fg: "#383A42" + black: "#002B36" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#F2F3F7" + brightBlack: "#073642" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#F6F8FB" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 89.1 + black: 94.5 + red: 63.4 + green: 51.9 + yellow: 51.9 + blue: 56.8 + magenta: 63.2 + cyan: 51.2 + white: 0 + brightBlack: 91.9 + brightRed: 63.9 + brightGreen: 69.7 + brightYellow: 63.8 + brightBlue: 51.6 + brightMagenta: 63.1 + brightCyan: 44.9 + brightWhite: 0 diff --git a/themes/atom-one-light-modern.yaml b/themes/atom-one-light-modern.yaml new file mode 100644 index 00000000..97aedcf5 --- /dev/null +++ b/themes/atom-one-light-modern.yaml @@ -0,0 +1,49 @@ +name: "Atom One Light Modern" +source: + marketplace_id: "mani-sh-reddy.atom-one-light-modern" + version: "1.0.5" + installs: 2192 + author: "Manish Reddy" + repo: "https://github.com/mani-sh-reddy/atom-one-light-modern" + url: "https://marketplace.visualstudio.com/items?itemName=mani-sh-reddy.atom-one-light-modern" +colors: + bg: "#F2F2F2" + fg: "#24292E" + black: "#24292E" + red: "#D73A49" + green: "#28A745" + yellow: "#DBAB09" + blue: "#6D6D6D" + magenta: "#5A32A3" + cyan: "#1B7C83" + white: "#6A737D" + brightBlack: "#959DA5" + brightRed: "#CB2431" + brightGreen: "#22863A" + brightYellow: "#B08800" + brightBlue: "#005CC5" + brightMagenta: "#5A32A3" + brightCyan: "#3192AA" + brightWhite: "#D1D5DA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93.8 + black: 93.8 + red: 62.7 + green: 50.1 + yellow: 33.9 + blue: 67.9 + magenta: 81.4 + cyan: 66 + white: 65.7 + brightBlack: 45.4 + brightRed: 67.8 + brightGreen: 64 + brightYellow: 52.4 + brightBlue: 72.7 + brightMagenta: 81.4 + brightCyan: 55.6 + brightWhite: 14.7 diff --git a/themes/atomax-colorblind-light.yaml b/themes/atomax-colorblind-light.yaml new file mode 100644 index 00000000..a89162fe --- /dev/null +++ b/themes/atomax-colorblind-light.yaml @@ -0,0 +1,49 @@ +name: "AtomAx Colorblind Light" +source: + marketplace_id: "telianedward.atomaax-theme" + version: "0.3.1" + installs: 305 + author: "Vela Inc" + repo: "https://github.com/telianedward/AtomaxAxTheme" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" +colors: + bg: "#F6F8FA" + fg: "#24292F" + black: "#24292F" + red: "#B35900" + green: "#0550AE" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#8A4600" + brightGreen: "#0969DA" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 97.1 + black: 97.1 + red: 68.6 + green: 81.3 + yellow: 93.6 + blue: 70.6 + magenta: 70 + cyan: 69.4 + white: 67.2 + brightBlack: 77.4 + brightRed: 79.8 + brightGreen: 70.6 + brightYellow: 87.7 + brightBlue: 56.4 + brightMagenta: 55 + brightCyan: 59 + brightWhite: 52.8 diff --git a/themes/atomax-dark-dimmed.yaml b/themes/atomax-dark-dimmed.yaml new file mode 100644 index 00000000..8c654a0c --- /dev/null +++ b/themes/atomax-dark-dimmed.yaml @@ -0,0 +1,49 @@ +name: "AtomAx Dark+ Dimmed" +source: + marketplace_id: "telianedward.atomaax-theme" + version: "0.3.1" + installs: 305 + author: "Vela Inc" + repo: "https://github.com/telianedward/AtomaxAxTheme" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" +colors: + bg: "#1C2128" + fg: "#ADBAC7" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: 257 + contrast: + fg: 62 + black: 16.7 + red: 45.6 + green: 45.3 + yellow: 45.5 + blue: 45.3 + magenta: 45.1 + cyan: 59.7 + white: 46.3 + brightBlack: 23.8 + brightRed: 58.2 + brightGreen: 57.9 + brightYellow: 58.1 + brightBlue: 58 + brightMagenta: 71.9 + brightCyan: 68.2 + brightWhite: 80.4 diff --git a/themes/atomax-dark-tritanopia.yaml b/themes/atomax-dark-tritanopia.yaml new file mode 100644 index 00000000..2bad2cbf --- /dev/null +++ b/themes/atomax-dark-tritanopia.yaml @@ -0,0 +1,49 @@ +name: "AtomAx Dark+ Tritanopia" +source: + marketplace_id: "telianedward.atomaax-theme" + version: "0.3.1" + installs: 305 + author: "Vela Inc" + repo: "https://github.com/telianedward/AtomaxAxTheme" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" +colors: + bg: "#010409" + fg: "#C9D1D9" + black: "#484F58" + red: "#FF7B72" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 248 + contrast: + fg: 78 + black: 13.5 + red: 53.1 + green: 52.7 + yellow: 52.7 + blue: 52.7 + magenta: 52.7 + cyan: 61.9 + white: 64.5 + brightBlack: 29.7 + brightRed: 65.3 + brightGreen: 65.2 + brightYellow: 65.2 + brightBlue: 65.2 + brightMagenta: 65.1 + brightCyan: 70.4 + brightWhite: 107.9 diff --git a/themes/atomax-dark.yaml b/themes/atomax-dark.yaml new file mode 100644 index 00000000..a053ac20 --- /dev/null +++ b/themes/atomax-dark.yaml @@ -0,0 +1,49 @@ +name: "AtomAx Dark+" +source: + marketplace_id: "telianedward.atomaax-theme" + version: "0.3.1" + installs: 305 + author: "Vela Inc" + repo: "https://github.com/telianedward/AtomaxAxTheme" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" +colors: + bg: "#010409" + fg: "#C9D1D9" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 248 + contrast: + fg: 78 + black: 13.5 + red: 53.1 + green: 52.6 + yellow: 52.7 + blue: 52.7 + magenta: 52.7 + cyan: 61.9 + white: 64.5 + brightBlack: 29.7 + brightRed: 65.3 + brightGreen: 65.9 + brightYellow: 65.2 + brightBlue: 65.2 + brightMagenta: 65.1 + brightCyan: 70.4 + brightWhite: 107.9 diff --git a/themes/atomax-high-contrast.yaml b/themes/atomax-high-contrast.yaml new file mode 100644 index 00000000..659584c6 --- /dev/null +++ b/themes/atomax-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "AtomAx High Contrast" +source: + marketplace_id: "telianedward.atomaax-theme" + version: "0.3.1" + installs: 305 + author: "Vela Inc" + repo: "https://github.com/telianedward/AtomaxAxTheme" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" +colors: + bg: "#010409" + fg: "#F0F3F6" + black: "#7A828E" + red: "#FF9492" + green: "#26CD4D" + yellow: "#F0B72F" + blue: "#71B7FF" + magenta: "#CB9EFF" + cyan: "#39C5CF" + white: "#D9DEE3" + brightBlack: "#9EA7B3" + brightRed: "#FFB1AF" + brightGreen: "#4AE168" + brightYellow: "#F7C843" + brightBlue: "#91CBFF" + brightMagenta: "#DBB7FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 248 + contrast: + fg: 99.7 + black: 35.4 + red: 61 + green: 61.4 + yellow: 68.7 + blue: 60.9 + magenta: 60.6 + cyan: 61.9 + white: 86.2 + brightBlack: 54.1 + brightRed: 71.6 + brightGreen: 72.5 + brightYellow: 76.8 + brightBlue: 71.7 + brightMagenta: 71.9 + brightCyan: 70.4 + brightWhite: 107.9 diff --git a/themes/atomax-light-tritanopia.yaml b/themes/atomax-light-tritanopia.yaml new file mode 100644 index 00000000..38e72711 --- /dev/null +++ b/themes/atomax-light-tritanopia.yaml @@ -0,0 +1,49 @@ +name: "AtomAx Light+ Tritanopia" +source: + marketplace_id: "telianedward.atomaax-theme" + version: "0.3.1" + installs: 305 + author: "Vela Inc" + repo: "https://github.com/telianedward/AtomaxAxTheme" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" +colors: + bg: "#F6F8FA" + fg: "#24292F" + black: "#24292F" + red: "#CF222E" + green: "#0550AE" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#0969DA" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 97.1 + black: 97.1 + red: 70.4 + green: 81.3 + yellow: 93.6 + blue: 70.6 + magenta: 70 + cyan: 69.4 + white: 67.2 + brightBlack: 77.4 + brightRed: 80.9 + brightGreen: 70.6 + brightYellow: 87.7 + brightBlue: 56.4 + brightMagenta: 55 + brightCyan: 59 + brightWhite: 52.8 diff --git a/themes/atomax-light.yaml b/themes/atomax-light.yaml new file mode 100644 index 00000000..1104e234 --- /dev/null +++ b/themes/atomax-light.yaml @@ -0,0 +1,49 @@ +name: "AtomAx Light+" +source: + marketplace_id: "telianedward.atomaax-theme" + version: "0.3.1" + installs: 305 + author: "Vela Inc" + repo: "https://github.com/telianedward/AtomaxAxTheme" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" +colors: + bg: "#F6F8FA" + fg: "#24292F" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 97.1 + black: 97.1 + red: 70.4 + green: 80.9 + yellow: 93.6 + blue: 70.6 + magenta: 70 + cyan: 69.4 + white: 67.2 + brightBlack: 77.4 + brightRed: 80.9 + brightGreen: 70.2 + brightYellow: 87.7 + brightBlue: 56.4 + brightMagenta: 55 + brightCyan: 59 + brightWhite: 52.8 diff --git a/themes/atomicc.yaml b/themes/atomicc.yaml new file mode 100644 index 00000000..f15a67d2 --- /dev/null +++ b/themes/atomicc.yaml @@ -0,0 +1,49 @@ +name: "Atomicc" +source: + marketplace_id: "carlowisse.atomicc" + version: "2.0.0" + installs: 682 + author: "carlowisse" + repo: "https://github.com/carlowisse/atomicc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=carlowisse.atomicc" +colors: + bg: "#000000" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#A4F644" + yellow: "#FFD319" + blue: "#4C6EFF" + magenta: "#F222FF" + cyan: "#4CC8FF" + white: "#CCCCCC" + brightBlack: "#555555" + brightRed: "#FF6C53" + brightGreen: "#A4F644" + brightYellow: "#FFE05E" + brightBlue: "#6F8BFF" + brightMagenta: "#F564FF" + brightCyan: "#81D8FF" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75.7 + black: 0 + red: 27.7 + green: 87.9 + yellow: 82.6 + blue: 33.1 + magenta: 44 + cyan: 66.5 + white: 75.7 + brightBlack: 16.1 + brightRed: 48.9 + brightGreen: 87.9 + brightYellow: 88.7 + brightBlue: 44.2 + brightMagenta: 52.4 + brightCyan: 76.4 + brightWhite: 96.8 diff --git a/themes/atomify.yaml b/themes/atomify.yaml new file mode 100644 index 00000000..94a15ac8 --- /dev/null +++ b/themes/atomify.yaml @@ -0,0 +1,49 @@ +name: "Atomify" +source: + marketplace_id: "SwayamRabari.atomify" + version: "1.0.9" + installs: 650 + author: "Swayam Rabari" + repo: "https://github.com/SwayamRabari/atomify" + url: "https://marketplace.visualstudio.com/items?itemName=SwayamRabari.atomify" +colors: + bg: "#0D1217" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 249 + contrast: + fg: 59.9 + black: 9.3 + red: 37.2 + green: 60.8 + yellow: 49.1 + blue: 50.1 + magenta: 39.5 + cyan: 53 + white: 83.5 + brightBlack: 15.9 + brightRed: 46.5 + brightGreen: 77.2 + brightYellow: 61.7 + brightBlue: 64.2 + brightMagenta: 50.7 + brightCyan: 68.3 + brightWhite: 91.1 diff --git a/themes/atomized-theme.yaml b/themes/atomized-theme.yaml new file mode 100644 index 00000000..4692f05b --- /dev/null +++ b/themes/atomized-theme.yaml @@ -0,0 +1,49 @@ +name: "Atomized-Theme" +source: + marketplace_id: "excalith.atomized-theme" + version: "1.1.4" + installs: 12098 + author: "excalith" + repo: "https://github.com/excalith/Atomized-Theme/" + url: "https://marketplace.visualstudio.com/items?itemName=excalith.atomized-theme" +colors: + bg: "#282C34" + fg: "#F8FAFD" + black: "#495162" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#99ECFD" + white: "#F8FAFD" + brightBlack: "#495162" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#99ECFD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 100.2 + black: 10.3 + red: 40.4 + green: 81 + yellow: 75.7 + blue: 52.7 + magenta: 50.6 + cyan: 83.2 + white: 100.2 + brightBlack: 10.3 + brightRed: 40.4 + brightGreen: 81 + brightYellow: 75.7 + brightBlue: 52.7 + brightMagenta: 50.6 + brightCyan: 83.2 + brightWhite: 103.7 diff --git a/themes/atomizer-dark-island.yaml b/themes/atomizer-dark-island.yaml new file mode 100644 index 00000000..01b2c40f --- /dev/null +++ b/themes/atomizer-dark-island.yaml @@ -0,0 +1,49 @@ +name: "Atomizer Dark Island" +source: + marketplace_id: "riipandi.vscode-atomizer-theme" + version: "3.1.3" + installs: 6583 + author: "Aris Ripandi" + repo: "https://github.com/riipandi/vscode-atomizer-theme" + url: "https://marketplace.visualstudio.com/items?itemName=riipandi.vscode-atomizer-theme" +colors: + bg: "#181A1D" + fg: "#BCBEC4" + black: "#191A1C" + red: "#F85149" + green: "#6A9955" + yellow: "#FF8A00" + blue: "#336FF1" + magenta: "#BA8EF7" + cyan: "#2AACB8" + white: "#BCBEC4" + brightBlack: "#6F737A" + brightRed: "#F9667A" + brightGreen: "#8CCF15" + brightYellow: "#F0B95E" + brightBlue: "#7CACF8" + brightMagenta: "#D79FD2" + brightCyan: "#42C6D2" + brightWhite: "#D4D5D9" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 66.2 + black: 0 + red: 40.6 + green: 39.7 + yellow: 54.8 + blue: 29.8 + magenta: 51.2 + cyan: 48.1 + white: 66.2 + brightBlack: 27.3 + brightRed: 45.8 + brightGreen: 65.3 + brightYellow: 68.7 + brightBlue: 55.5 + brightMagenta: 58.8 + brightCyan: 61.4 + brightWhite: 79.8 diff --git a/themes/attack-on-titan-eren-s-determination.yaml b/themes/attack-on-titan-eren-s-determination.yaml new file mode 100644 index 00000000..cbab4108 --- /dev/null +++ b/themes/attack-on-titan-eren-s-determination.yaml @@ -0,0 +1,49 @@ +name: "Attack on Titan (Eren's Determination)" +source: + marketplace_id: "LunaCode.anime-theme" + version: "0.0.3" + installs: 373 + author: "LunaCode" + repo: "https://github.com/BuildXO/anime-theme-pack" + url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" +colors: + bg: "#1A1512" + fg: "#E8DCC8" + black: "#3C3428" + red: "#DC143C" + green: "#6B8E23" + yellow: "#DAA520" + blue: "#4682B4" + magenta: "#8B4789" + cyan: "#5F9EA0" + white: "#D3C5B0" + brightBlack: "#6B5D4F" + brightRed: "#FF6B6B" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#F0E4D0" +meta: + mode: "dark" + accent: "orange" + hue: 53 + contrast: + fg: 85.3 + black: 0 + red: 28.6 + green: 35.3 + yellow: 57.4 + blue: 32.7 + magenta: 20.2 + cyan: 43.6 + white: 71.6 + brightBlack: 19.3 + brightRed: 48.2 + brightGreen: 62.4 + brightYellow: 70.7 + brightBlue: 54.8 + brightMagenta: 45.2 + brightCyan: 54.7 + brightWhite: 90.3 diff --git a/themes/attentio-flow.yaml b/themes/attentio-flow.yaml new file mode 100644 index 00000000..6d258bbc --- /dev/null +++ b/themes/attentio-flow.yaml @@ -0,0 +1,49 @@ +name: "Attentio Flow" +source: + marketplace_id: "shadz-dev.attentio" + version: "1.1.4" + installs: 250 + author: "Shaditya Kinlekar" + repo: "https://github.com/Shaditya-Kinlekar/Attentio-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=shadz-dev.attentio" +colors: + bg: "#010107" + fg: "#C0C4D8" + black: "#28353E" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#AEC3D0" + brightBlack: "#475E6C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#BECFDA" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 71.4 + black: 0 + red: 41.5 + green: 78 + yellow: 68 + blue: 53 + magenta: 46.6 + cyan: 71.5 + white: 68.5 + brightBlack: 18.5 + brightRed: 46.8 + brightGreen: 80.2 + brightYellow: 54.9 + brightBlue: 58.3 + brightMagenta: 59 + brightCyan: 74.9 + brightWhite: 75.9 diff --git a/themes/attentio-pulse.yaml b/themes/attentio-pulse.yaml new file mode 100644 index 00000000..9cafe61b --- /dev/null +++ b/themes/attentio-pulse.yaml @@ -0,0 +1,49 @@ +name: "Attentio Pulse" +source: + marketplace_id: "shadz-dev.attentio" + version: "1.1.4" + installs: 250 + author: "Shaditya Kinlekar" + repo: "https://github.com/Shaditya-Kinlekar/Attentio-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=shadz-dev.attentio" +colors: + bg: "#010107" + fg: "#C0C4D8" + black: "#111422" + red: "#E35535" + green: "#3CEC85" + yellow: "#EACD61" + blue: "#69C3FF" + magenta: "#F38CEC" + cyan: "#22ECDB" + white: "#C0C4D8" + brightBlack: "#69C3FF" + brightRed: "#E35535" + brightGreen: "#3CEC85" + brightYellow: "#EACD61" + brightBlue: "#69C3FF" + brightMagenta: "#F38CEC" + brightCyan: "#22ECDB" + brightWhite: "#C0C4D8" +meta: + mode: "dark" + accent: "teal" + hue: 278 + contrast: + fg: 71.4 + black: 0 + red: 37.7 + green: 78.3 + yellow: 77.2 + blue: 65.6 + magenta: 60.4 + cyan: 80.8 + white: 71.4 + brightBlack: 65.6 + brightRed: 37.7 + brightGreen: 78.3 + brightYellow: 77.2 + brightBlue: 65.6 + brightMagenta: 60.4 + brightCyan: 80.8 + brightWhite: 71.4 diff --git a/themes/attica.yaml b/themes/attica.yaml new file mode 100644 index 00000000..e9854f50 --- /dev/null +++ b/themes/attica.yaml @@ -0,0 +1,49 @@ +name: "Attica" +source: + marketplace_id: "Alekzandriia.attica" + version: "0.4.0" + installs: 220 + author: "Alekzandriia" + repo: "https://github.com/alekzandria/attica" + url: "https://marketplace.visualstudio.com/items?itemName=Alekzandriia.attica" +colors: + bg: "#E1DEE9" + fg: "#7E7F9A" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 299 + contrast: + fg: 47.9 + black: 87.5 + red: 55.4 + green: 30.7 + yellow: 39.4 + blue: 67.5 + magenta: 56 + cyan: 42.1 + white: 67.4 + brightBlack: 60.2 + brightRed: 55.4 + brightGreen: 22.4 + brightYellow: 22.4 + brightBlue: 67.5 + brightMagenta: 56 + brightCyan: 42.1 + brightWhite: 29.9 diff --git a/themes/aube.yaml b/themes/aube.yaml new file mode 100644 index 00000000..c5c93e8a --- /dev/null +++ b/themes/aube.yaml @@ -0,0 +1,49 @@ +name: "Aube" +source: + marketplace_id: "fatekkl.aube" + version: "1.0.5" + installs: 43 + author: "fatekkl" + repo: "https://github.com/fatekkl/Aube" + url: "https://marketplace.visualstudio.com/items?itemName=fatekkl.aube" +colors: + bg: "#1E1E1E" + fg: "#E8E6F0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 90.6 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/august-ariake-dark.yaml b/themes/august-ariake-dark.yaml new file mode 100644 index 00000000..2d18549b --- /dev/null +++ b/themes/august-ariake-dark.yaml @@ -0,0 +1,49 @@ +name: "August - Ariake Dark" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#191C22" + fg: "#7B88A1" + black: "#272C36" + red: "#DDA2F6" + green: "#9AEFEA" + yellow: "#EBCB8B" + blue: "#69B1E0" + magenta: "#7E7EDD" + cyan: "#9AEFEA" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#DDA2F6" + brightGreen: "#93C7E9" + brightYellow: "#EBCB8B" + brightBlue: "#93C7E9" + brightMagenta: "#A571F4" + brightCyan: "#9AEFEA" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "magenta" + hue: 264 + contrast: + fg: 36.8 + black: 0 + red: 62.5 + green: 86.4 + yellow: 75.8 + blue: 54.5 + magenta: 37.2 + cyan: 86.4 + white: 91.8 + brightBlack: 14.8 + brightRed: 62.5 + brightGreen: 67.3 + brightYellow: 75.8 + brightBlue: 67.3 + brightMagenta: 39.5 + brightCyan: 86.4 + brightWhite: 95.7 diff --git a/themes/august-arstotzka-2-darker.yaml b/themes/august-arstotzka-2-darker.yaml new file mode 100644 index 00000000..8ced7695 --- /dev/null +++ b/themes/august-arstotzka-2-darker.yaml @@ -0,0 +1,49 @@ +name: "August - Arstotzka 2 (Darker)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#050404" + fg: "#556955" + black: "#050404" + red: "#A62828" + green: "#85A4B1" + yellow: "#B19600" + blue: "#85A4B1" + magenta: "#837485" + cyan: "#9CB5AA" + white: "#A2A797" + brightBlack: "#565656" + brightRed: "#A62828" + brightGreen: "#678813" + brightYellow: "#B19600" + brightBlue: "#9CB5AA" + brightMagenta: "#837485" + brightCyan: "#9CB5AA" + brightWhite: "#A2A797" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 22.1 + black: 0 + red: 18.6 + green: 50.4 + yellow: 46.6 + blue: 50.4 + magenta: 31.3 + cyan: 59.1 + white: 53.4 + brightBlack: 16.5 + brightRed: 18.6 + brightGreen: 33.6 + brightYellow: 46.6 + brightBlue: 59.1 + brightMagenta: 31.3 + brightCyan: 59.1 + brightWhite: 53.4 diff --git a/themes/august-arstotzka-2.yaml b/themes/august-arstotzka-2.yaml new file mode 100644 index 00000000..ccc322c0 --- /dev/null +++ b/themes/august-arstotzka-2.yaml @@ -0,0 +1,49 @@ +name: "August - Arstotzka 2" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#0F0B0B" + fg: "#556955" + black: "#0F0B0B" + red: "#A62828" + green: "#85A4B1" + yellow: "#B19600" + blue: "#85A4B1" + magenta: "#837485" + cyan: "#9CB5AA" + white: "#A2A797" + brightBlack: "#565656" + brightRed: "#A62828" + brightGreen: "#678813" + brightYellow: "#B19600" + brightBlue: "#9CB5AA" + brightMagenta: "#837485" + brightCyan: "#9CB5AA" + brightWhite: "#A2A797" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 21.9 + black: 0 + red: 18.4 + green: 50.2 + yellow: 46.4 + blue: 50.2 + magenta: 31.1 + cyan: 58.9 + white: 53.2 + brightBlack: 16.3 + brightRed: 18.4 + brightGreen: 33.4 + brightYellow: 46.4 + brightBlue: 58.9 + brightMagenta: 31.1 + brightCyan: 58.9 + brightWhite: 53.2 diff --git a/themes/august-arstotzka-lighter.yaml b/themes/august-arstotzka-lighter.yaml new file mode 100644 index 00000000..b8c16756 --- /dev/null +++ b/themes/august-arstotzka-lighter.yaml @@ -0,0 +1,49 @@ +name: "August - Arstotzka (Lighter)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#191212" + fg: "#556955" + black: "#191212" + red: "#A62828" + green: "#85A4B1" + yellow: "#B19600" + blue: "#85A4B1" + magenta: "#837485" + cyan: "#9CB5AA" + white: "#A2A797" + brightBlack: "#565656" + brightRed: "#A62828" + brightGreen: "#678813" + brightYellow: "#B19600" + brightBlue: "#9CB5AA" + brightMagenta: "#837485" + brightCyan: "#9CB5AA" + brightWhite: "#A2A797" +meta: + mode: "dark" + accent: "orange" + hue: 18 + contrast: + fg: 21.4 + black: 0 + red: 17.9 + green: 49.7 + yellow: 45.9 + blue: 49.7 + magenta: 30.6 + cyan: 58.4 + white: 52.7 + brightBlack: 15.8 + brightRed: 17.9 + brightGreen: 32.9 + brightYellow: 45.9 + brightBlue: 58.4 + brightMagenta: 30.6 + brightCyan: 58.4 + brightWhite: 52.7 diff --git a/themes/august-beardedtheme-oceanic-reversed.yaml b/themes/august-beardedtheme-oceanic-reversed.yaml new file mode 100644 index 00000000..80907904 --- /dev/null +++ b/themes/august-beardedtheme-oceanic-reversed.yaml @@ -0,0 +1,49 @@ +name: "August - BeardedTheme Oceanic Reversed" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#111C22" + fg: "#C3D6E0" + black: "#111C22" + red: "#EE5D75" + green: "#97C892" + yellow: "#F6CC73" + blue: "#5FB2DF" + magenta: "#D194CD" + cyan: "#59C6C8" + white: "#C3D6E0" + brightBlack: "#C3D6E0" + brightRed: "#FF4C6A" + brightGreen: "#83E179" + brightYellow: "#FFCF6A" + brightBlue: "#42BBFC" + brightMagenta: "#E87DE1" + brightCyan: "#38E6E9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 233 + contrast: + fg: 78.4 + black: 0 + red: 41.3 + green: 64.7 + yellow: 77.6 + blue: 54.4 + magenta: 53.8 + cyan: 61.7 + white: 78.4 + brightBlack: 78.4 + brightRed: 42 + brightGreen: 74.2 + brightYellow: 80.2 + brightBlue: 58.9 + brightMagenta: 52.1 + brightCyan: 77.4 + brightWhite: 106.5 diff --git a/themes/august-beardedtheme-surprising-blueberry.yaml b/themes/august-beardedtheme-surprising-blueberry.yaml new file mode 100644 index 00000000..228eff86 --- /dev/null +++ b/themes/august-beardedtheme-surprising-blueberry.yaml @@ -0,0 +1,49 @@ +name: "August - BeardedTheme Surprising Blueberry" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#101A29" + fg: "#BACBE4" + black: "#101A29" + red: "#E35535" + green: "#A9DC76" + yellow: "#C93E71" + blue: "#00B3BD" + magenta: "#C47CBF" + cyan: "#C93E71" + white: "#BACBE4" + brightBlack: "#2C476E" + brightRed: "#FF4319" + brightGreen: "#A9F65C" + brightYellow: "#EE1967" + brightBlue: "#00B3BD" + brightMagenta: "#E15FD8" + brightCyan: "#EE1967" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 258 + contrast: + fg: 72.9 + black: 0 + red: 36.3 + green: 74.9 + yellow: 28.3 + blue: 51.1 + magenta: 43.9 + cyan: 28.3 + white: 72.9 + brightBlack: 9.4 + brightRed: 39.8 + brightGreen: 87.3 + brightYellow: 33.4 + brightBlue: 51.1 + brightMagenta: 43.5 + brightCyan: 33.4 + brightWhite: 106.5 diff --git a/themes/august-catppuccin.yaml b/themes/august-catppuccin.yaml new file mode 100644 index 00000000..fb805d79 --- /dev/null +++ b/themes/august-catppuccin.yaml @@ -0,0 +1,49 @@ +name: "August - Catppuccin" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#1E2030" + fg: "#CAD3F5" + black: "#A5ADCB" + red: "#ED8796" + green: "#A6DA95" + yellow: "#EED49F" + blue: "#8AADF4" + magenta: "#F5BDE6" + cyan: "#91D7E3" + white: "#B8C0E0" + brightBlack: "#5B6078" + brightRed: "#ED8796" + brightGreen: "#A6DA95" + brightYellow: "#EED49F" + brightBlue: "#8AADF4" + brightMagenta: "#F5BDE6" + brightCyan: "#91D7E3" + brightWhite: "#494D64" +meta: + mode: "dark" + accent: "red" + hue: 278 + contrast: + fg: 78.1 + black: 56 + red: 51.5 + green: 73.5 + yellow: 79.9 + blue: 55.7 + magenta: 74.5 + cyan: 73.3 + white: 66.9 + brightBlack: 18.7 + brightRed: 51.5 + brightGreen: 73.5 + brightYellow: 79.9 + brightBlue: 55.7 + brightMagenta: 74.5 + brightCyan: 73.3 + brightWhite: 11.2 diff --git a/themes/august-city-lights-darker.yaml b/themes/august-city-lights-darker.yaml new file mode 100644 index 00000000..2be4ff76 --- /dev/null +++ b/themes/august-city-lights-darker.yaml @@ -0,0 +1,49 @@ +name: "August - City Lights (Darker)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#161C22" + fg: "#8094A7" + black: "#41505E" + red: "#B62D65" + green: "#008B94" + yellow: "#EBBF83" + blue: "#539AFC" + magenta: "#B62D65" + cyan: "#70E1E8" + white: "#B7C5D3" + brightBlack: "#41505E" + brightRed: "#B62D65" + brightGreen: "#33CED8" + brightYellow: "#EBBF83" + brightBlue: "#5EC4FF" + brightMagenta: "#B62D65" + brightCyan: "#70E1E8" + brightWhite: "#B7C5D3" +meta: + mode: "dark" + accent: "red" + hue: 248 + contrast: + fg: 41.9 + black: 12.1 + red: 22 + green: 32.6 + yellow: 70.8 + blue: 46.2 + magenta: 22 + cyan: 76.9 + white: 69 + brightBlack: 12.1 + brightRed: 22 + brightGreen: 64.8 + brightYellow: 70.8 + brightBlue: 63.9 + brightMagenta: 22 + brightCyan: 76.9 + brightWhite: 69 diff --git a/themes/august-city-lights.yaml b/themes/august-city-lights.yaml new file mode 100644 index 00000000..8a61493e --- /dev/null +++ b/themes/august-city-lights.yaml @@ -0,0 +1,49 @@ +name: "August - City Lights" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#1D252C" + fg: "#8094A7" + black: "#41505E" + red: "#B62D65" + green: "#008B94" + yellow: "#EBBF83" + blue: "#539AFC" + magenta: "#B62D65" + cyan: "#70E1E8" + white: "#B7C5D3" + brightBlack: "#41505E" + brightRed: "#B62D65" + brightGreen: "#33CED8" + brightYellow: "#EBBF83" + brightBlue: "#5EC4FF" + brightMagenta: "#B62D65" + brightCyan: "#70E1E8" + brightWhite: "#B7C5D3" +meta: + mode: "dark" + accent: "red" + hue: 245 + contrast: + fg: 40.6 + black: 10.8 + red: 20.7 + green: 31.3 + yellow: 69.5 + blue: 44.9 + magenta: 20.7 + cyan: 75.6 + white: 67.7 + brightBlack: 10.8 + brightRed: 20.7 + brightGreen: 63.6 + brightYellow: 69.5 + brightBlue: 62.7 + brightMagenta: 20.7 + brightCyan: 75.6 + brightWhite: 67.7 diff --git a/themes/august-dark-theme.yaml b/themes/august-dark-theme.yaml new file mode 100644 index 00000000..33daf436 --- /dev/null +++ b/themes/august-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "August Dark Theme" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#0F172A" + fg: "#F1F5F9" + black: "#0F172A" + red: "#EF4444" + green: "#22C55E" + yellow: "#FACC15" + blue: "#3B82F6" + magenta: "#C084FC" + cyan: "#06B6D4" + white: "#F1F5F9" + brightBlack: "#1E293B" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#D8B4FE" + brightCyan: "#67E8F9" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 99.8 + black: 0 + red: 36.7 + green: 56.7 + yellow: 77.7 + blue: 36.7 + magenta: 49.6 + cyan: 53.8 + white: 99.8 + brightBlack: 0 + brightRed: 48 + brightGreen: 70.4 + brightYellow: 72.6 + brightBlue: 51.3 + brightMagenta: 69.2 + brightCyan: 81.1 + brightWhite: 103.3 diff --git a/themes/august-drawbridge-darker.yaml b/themes/august-drawbridge-darker.yaml new file mode 100644 index 00000000..a2e9083a --- /dev/null +++ b/themes/august-drawbridge-darker.yaml @@ -0,0 +1,49 @@ +name: "August - Drawbridge (Darker)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#0D0E15" + fg: "#B8CDFE" + black: "#252A41" + red: "#4961DA" + green: "#67C9E4" + yellow: "#627AF4" + blue: "#627AF4" + magenta: "#7289FD" + cyan: "#67C9E4" + white: "#B8CDFE" + brightBlack: "#4961DA" + brightRed: "#627AF4" + brightGreen: "#75D5F0" + brightYellow: "#B8CDFE" + brightBlue: "#67C9E4" + brightMagenta: "#7289FD" + brightCyan: "#75D5F0" + brightWhite: "#B8CDFE" +meta: + mode: "dark" + accent: "purple" + hue: 278 + contrast: + fg: 75.9 + black: 0 + red: 25.8 + green: 66.2 + yellow: 36.6 + blue: 36.6 + magenta: 43.3 + cyan: 66.2 + white: 75.9 + brightBlack: 25.8 + brightRed: 36.6 + brightGreen: 73.1 + brightYellow: 75.9 + brightBlue: 66.2 + brightMagenta: 43.3 + brightCyan: 73.1 + brightWhite: 75.9 diff --git a/themes/august-drawbridge.yaml b/themes/august-drawbridge.yaml new file mode 100644 index 00000000..3a19b24b --- /dev/null +++ b/themes/august-drawbridge.yaml @@ -0,0 +1,49 @@ +name: "August - Drawbridge" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#131520" + fg: "#B8CDFE" + black: "#252A41" + red: "#4961DA" + green: "#67C9E4" + yellow: "#627AF4" + blue: "#627AF4" + magenta: "#7289FD" + cyan: "#67C9E4" + white: "#B8CDFE" + brightBlack: "#4961DA" + brightRed: "#627AF4" + brightGreen: "#75D5F0" + brightYellow: "#B8CDFE" + brightBlue: "#67C9E4" + brightMagenta: "#7289FD" + brightCyan: "#75D5F0" + brightWhite: "#B8CDFE" +meta: + mode: "dark" + accent: "purple" + hue: 276 + contrast: + fg: 75.4 + black: 0 + red: 25.2 + green: 65.6 + yellow: 36.1 + blue: 36.1 + magenta: 42.8 + cyan: 65.6 + white: 75.4 + brightBlack: 25.2 + brightRed: 36.1 + brightGreen: 72.5 + brightYellow: 75.4 + brightBlue: 65.6 + brightMagenta: 42.8 + brightCyan: 72.5 + brightWhite: 75.4 diff --git a/themes/august-gruvbox-darker.yaml b/themes/august-gruvbox-darker.yaml new file mode 100644 index 00000000..1bc2f61a --- /dev/null +++ b/themes/august-gruvbox-darker.yaml @@ -0,0 +1,49 @@ +name: "August - Gruvbox (Darker)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#151718" + fg: "#EBDBB2" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 84.4 + black: 0 + red: 25.3 + green: 43 + yellow: 52.5 + blue: 31.6 + magenta: 31.7 + cyan: 42 + white: 47.3 + brightBlack: 36.4 + brightRed: 40.2 + brightGreen: 61.2 + brightYellow: 71.8 + brightBlue: 48.6 + brightMagenta: 48 + brightCyan: 60.2 + brightWhite: 84.4 diff --git a/themes/august-kanagawa-darker.yaml b/themes/august-kanagawa-darker.yaml new file mode 100644 index 00000000..dc5960a5 --- /dev/null +++ b/themes/august-kanagawa-darker.yaml @@ -0,0 +1,49 @@ +name: "August - Kanagawa (Darker)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#16161E" + fg: "#DCD7BA" + black: "#16161E" + red: "#E82424" + green: "#76946A" + yellow: "#FF9E3B" + blue: "#658594" + magenta: "#957FB8" + cyan: "#9CABCA" + white: "#DCD7BA" + brightBlack: "#2A2A37" + brightRed: "#FF5D62" + brightGreen: "#98BB6C" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#D27E99" + brightCyan: "#A3D4D5" + brightWhite: "#DCD7BA" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 80.8 + black: 0 + red: 31.8 + green: 39.5 + yellow: 61.6 + blue: 33.9 + magenta: 38.2 + cyan: 55.5 + white: 80.8 + brightBlack: 0 + brightRed: 45.1 + brightGreen: 58.5 + brightYellow: 72.2 + brightBlue: 56.6 + brightMagenta: 45.4 + brightCyan: 74.1 + brightWhite: 80.8 diff --git a/themes/august-material-palenight.yaml b/themes/august-material-palenight.yaml new file mode 100644 index 00000000..7be95903 --- /dev/null +++ b/themes/august-material-palenight.yaml @@ -0,0 +1,49 @@ +name: "August - Material Palenight" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#292D3E" + fg: "#A6ACCD" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 53.5 + black: 0 + red: 43 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 43 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/august-night-owl-darker.yaml b/themes/august-night-owl-darker.yaml new file mode 100644 index 00000000..ff5a86fd --- /dev/null +++ b/themes/august-night-owl-darker.yaml @@ -0,0 +1,49 @@ +name: "August - Night Owl (Darker)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#010D16" + fg: "#5F7E97" + black: "#010D16" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ADDB67" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 236 + contrast: + fg: 31.9 + black: 0 + red: 40.1 + green: 68 + yellow: 75.7 + blue: 56.7 + magenta: 54.5 + cyan: 60.4 + white: 107.6 + brightBlack: 16.3 + brightRed: 40.1 + brightGreen: 68 + brightYellow: 94.5 + brightBlue: 56.7 + brightMagenta: 54.5 + brightCyan: 74.7 + brightWhite: 107.6 diff --git a/themes/august-night-owl.yaml b/themes/august-night-owl.yaml new file mode 100644 index 00000000..51a038b9 --- /dev/null +++ b/themes/august-night-owl.yaml @@ -0,0 +1,49 @@ +name: "August - Night Owl" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#011627" + fg: "#5F7E97" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ADDB67" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 244 + contrast: + fg: 31.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 75 + blue: 56 + magenta: 53.8 + cyan: 59.8 + white: 107 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 107 diff --git a/themes/august-nord-darker.yaml b/themes/august-nord-darker.yaml new file mode 100644 index 00000000..1a68b6b4 --- /dev/null +++ b/themes/august-nord-darker.yaml @@ -0,0 +1,49 @@ +name: "August - Nord (Darker)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#191C22" + fg: "#7B88A1" + black: "#272C36" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#7D7C9B" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 36.8 + black: 0 + red: 32.4 + green: 61.1 + yellow: 75.8 + blue: 48.1 + magenta: 32.6 + cyan: 62.1 + white: 91.8 + brightBlack: 14.8 + brightRed: 32.4 + brightGreen: 61.1 + brightYellow: 75.8 + brightBlue: 48.1 + brightMagenta: 45.9 + brightCyan: 60 + brightWhite: 95.7 diff --git a/themes/august-nord.yaml b/themes/august-nord.yaml new file mode 100644 index 00000000..24ca8f5c --- /dev/null +++ b/themes/august-nord.yaml @@ -0,0 +1,49 @@ +name: "August - Nord" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#272C36" + fg: "#7B88A1" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#7D7C9B" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 34.1 + black: 0 + red: 29.8 + green: 58.5 + yellow: 73.2 + blue: 45.4 + magenta: 30 + cyan: 59.5 + white: 89.1 + brightBlack: 12.2 + brightRed: 29.8 + brightGreen: 58.5 + brightYellow: 73.2 + brightBlue: 45.4 + brightMagenta: 43.3 + brightCyan: 57.4 + brightWhite: 93 diff --git a/themes/august-radical-2.yaml b/themes/august-radical-2.yaml new file mode 100644 index 00000000..76a26e3d --- /dev/null +++ b/themes/august-radical-2.yaml @@ -0,0 +1,49 @@ +name: "August - Radical 2" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#12111F" + fg: "#7C9C9E" + black: "#2E324D" + red: "#F86C8A" + green: "#6BF8EF" + yellow: "#EDF179" + blue: "#B0FDEB" + magenta: "#F899F8" + cyan: "#9D88FA" + white: "#C4F7EB" + brightBlack: "#62466B" + brightRed: "#F33990" + brightGreen: "#6BF8EF" + brightYellow: "#F4F957" + brightBlue: "#6BF8EF" + brightMagenta: "#F73BEE" + brightCyan: "#7D77FF" + brightWhite: "#E4FDF7" +meta: + mode: "dark" + accent: "pink" + hue: 287 + contrast: + fg: 45.1 + black: 0 + red: 48 + green: 89.2 + yellow: 93.7 + blue: 96.2 + magenta: 65.2 + cyan: 46.6 + white: 95.2 + brightBlack: 13.7 + brightRed: 38.8 + brightGreen: 89.2 + brightYellow: 98 + brightBlue: 89.2 + brightMagenta: 45 + brightCyan: 38.5 + brightWhite: 102.3 diff --git a/themes/august-radical.yaml b/themes/august-radical.yaml new file mode 100644 index 00000000..46cd2ed2 --- /dev/null +++ b/themes/august-radical.yaml @@ -0,0 +1,49 @@ +name: "August - Radical" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#12111F" + fg: "#7C9C9E" + black: "#2E324D" + red: "#F86C8A" + green: "#A8FFEF" + yellow: "#EDF179" + blue: "#B0FDEB" + magenta: "#F899F8" + cyan: "#9D88FA" + white: "#C4F7EB" + brightBlack: "#62466B" + brightRed: "#F33990" + brightGreen: "#6BF8EF" + brightYellow: "#F4F957" + brightBlue: "#6BF8EF" + brightMagenta: "#F33990" + brightCyan: "#7D77FF" + brightWhite: "#E4FDF7" +meta: + mode: "dark" + accent: "red" + hue: 287 + contrast: + fg: 45.1 + black: 0 + red: 48 + green: 96.7 + yellow: 93.7 + blue: 96.2 + magenta: 65.2 + cyan: 46.6 + white: 95.2 + brightBlack: 13.7 + brightRed: 38.8 + brightGreen: 89.2 + brightYellow: 98 + brightBlue: 89.2 + brightMagenta: 38.8 + brightCyan: 38.5 + brightWhite: 102.3 diff --git a/themes/august-ros-pine-moon.yaml b/themes/august-ros-pine-moon.yaml new file mode 100644 index 00000000..c6530eff --- /dev/null +++ b/themes/august-ros-pine-moon.yaml @@ -0,0 +1,49 @@ +name: "August - Rosé Pine Moon" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#232136" + fg: "#E0DEF4" + black: "#393552" + red: "#EB6F92" + green: "#3E8FB0" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#EA9A97" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#3E8FB0" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#EA9A97" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: 288 + contrast: + fg: 85.3 + black: 0 + red: 44.2 + green: 35.2 + yellow: 71.9 + blue: 69.7 + magenta: 58.7 + cyan: 56.5 + white: 85.3 + brightBlack: 39.6 + brightRed: 44.2 + brightGreen: 35.2 + brightYellow: 71.9 + brightBlue: 69.7 + brightMagenta: 58.7 + brightCyan: 56.5 + brightWhite: 85.3 diff --git a/themes/august-ros-pine.yaml b/themes/august-ros-pine.yaml new file mode 100644 index 00000000..e4a611d7 --- /dev/null +++ b/themes/august-ros-pine.yaml @@ -0,0 +1,49 @@ +name: "August - Rosé Pine" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146390 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#191724" + fg: "#E0DEF4" + black: "#26233A" + red: "#EB6F92" + green: "#31748F" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#EBBCBA" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#31748F" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#EBBCBA" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: 291 + contrast: + fg: 86.8 + black: 0 + red: 45.7 + green: 24.9 + yellow: 73.4 + blue: 71.2 + magenta: 60.1 + cyan: 71.6 + white: 86.8 + brightBlack: 41.1 + brightRed: 45.7 + brightGreen: 24.9 + brightYellow: 73.4 + brightBlue: 71.2 + brightMagenta: 60.1 + brightCyan: 71.6 + brightWhite: 86.8 diff --git a/themes/aura-dark-soft-text.yaml b/themes/aura-dark-soft-text.yaml new file mode 100644 index 00000000..6c26e1b4 --- /dev/null +++ b/themes/aura-dark-soft-text.yaml @@ -0,0 +1,49 @@ +name: "Aura Dark (Soft Text)" +source: + marketplace_id: "DaltonMenezes.aura-theme" + version: "2.1.2" + installs: 559627 + author: "Dalton Menezes" + repo: "https://github.com/daltonmenezes/aura-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DaltonMenezes.aura-theme" +colors: + bg: "#15141B" + fg: "#BDBDBD" + black: "#15141B" + red: "#C55858" + green: "#54C59F" + yellow: "#C7A06F" + blue: "#8464C6" + magenta: "#54C59F" + cyan: "#8464C6" + white: "#B4B4B4" + brightBlack: "#2D2D2D" + brightRed: "#C7A06F" + brightGreen: "#8464C6" + brightYellow: "#C7A06F" + brightBlue: "#8464C6" + brightMagenta: "#54C59F" + brightCyan: "#54C59F" + brightWhite: "#BDBDBD" +meta: + mode: "dark" + accent: "magenta" + hue: 292 + contrast: + fg: 66.1 + black: 0 + red: 31.9 + green: 59.9 + yellow: 53.7 + blue: 29.5 + magenta: 59.9 + cyan: 29.5 + white: 61 + brightBlack: 0 + brightRed: 53.7 + brightGreen: 29.5 + brightYellow: 53.7 + brightBlue: 29.5 + brightMagenta: 59.9 + brightCyan: 59.9 + brightWhite: 66.1 diff --git a/themes/aura-dark.yaml b/themes/aura-dark.yaml new file mode 100644 index 00000000..a136388e --- /dev/null +++ b/themes/aura-dark.yaml @@ -0,0 +1,49 @@ +name: "Aura Dark" +source: + marketplace_id: "DaltonMenezes.aura-theme" + version: "2.1.2" + installs: 559627 + author: "Dalton Menezes" + repo: "https://github.com/daltonmenezes/aura-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DaltonMenezes.aura-theme" +colors: + bg: "#15141B" + fg: "#EDECEE" + black: "#15141B" + red: "#FF6767" + green: "#61FFCA" + yellow: "#FFCA85" + blue: "#A277FF" + magenta: "#61FFCA" + cyan: "#A277FF" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#FFCA85" + brightGreen: "#A277FF" + brightYellow: "#FFCA85" + brightBlue: "#A277FF" + brightMagenta: "#61FFCA" + brightCyan: "#61FFCA" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "magenta" + hue: 292 + contrast: + fg: 94.9 + black: 0 + red: 47.3 + green: 90.6 + yellow: 79.2 + blue: 42.4 + magenta: 90.6 + cyan: 42.4 + white: 75.1 + brightBlack: 0 + brightRed: 79.2 + brightGreen: 42.4 + brightYellow: 79.2 + brightBlue: 42.4 + brightMagenta: 90.6 + brightCyan: 90.6 + brightWhite: 94.9 diff --git a/themes/aura-dracula-spirit-soft.yaml b/themes/aura-dracula-spirit-soft.yaml new file mode 100644 index 00000000..4e4fa4f5 --- /dev/null +++ b/themes/aura-dracula-spirit-soft.yaml @@ -0,0 +1,49 @@ +name: "Aura Dracula Spirit (Soft)" +source: + marketplace_id: "JoseMurilloc.aura-spirit-dracula" + version: "0.1.10" + installs: 70846 + author: "JoseMurilloc" + repo: "https://github.com/josemurilloc/aura-spirit-dracula" + url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" +colors: + bg: "#191521" + fg: "#EDECEE" + black: "#140E1A" + red: "#FF6767" + green: "#8EFFD9" + yellow: "#FFCA85" + blue: "#F477FF" + magenta: "#61FFCA" + cyan: "#A277FF" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#FFCA85" + brightGreen: "#A277FF" + brightYellow: "#FFCA85" + brightBlue: "#A277FF" + brightMagenta: "#61FFCA" + brightCyan: "#61FFCA" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "pink" + hue: 300 + contrast: + fg: 94.7 + black: 0 + red: 47.1 + green: 93.4 + yellow: 79 + blue: 55.3 + magenta: 90.4 + cyan: 42.1 + white: 74.9 + brightBlack: 0 + brightRed: 79 + brightGreen: 42.1 + brightYellow: 79 + brightBlue: 42.1 + brightMagenta: 90.4 + brightCyan: 90.4 + brightWhite: 94.7 diff --git a/themes/aura-dracula-spirit-synthwave.yaml b/themes/aura-dracula-spirit-synthwave.yaml new file mode 100644 index 00000000..c475cb39 --- /dev/null +++ b/themes/aura-dracula-spirit-synthwave.yaml @@ -0,0 +1,49 @@ +name: "Aura Dracula Spirit (SynthWave)" +source: + marketplace_id: "JoseMurilloc.aura-spirit-dracula" + version: "0.1.10" + installs: 70846 + author: "JoseMurilloc" + repo: "https://github.com/josemurilloc/aura-spirit-dracula" + url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" +colors: + bg: "#262335" + fg: "#EDECEE" + black: "#140E1A" + red: "#FF6767" + green: "#8EFFD9" + yellow: "#FFCA85" + blue: "#F477FF" + magenta: "#61FFCA" + cyan: "#A277FF" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#FFCA85" + brightGreen: "#A277FF" + brightYellow: "#FFCA85" + brightBlue: "#A277FF" + brightMagenta: "#61FFCA" + brightCyan: "#61FFCA" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "pink" + hue: 292 + contrast: + fg: 92.7 + black: 0 + red: 45.2 + green: 91.4 + yellow: 77.1 + blue: 53.3 + magenta: 88.4 + cyan: 40.2 + white: 72.9 + brightBlack: 0 + brightRed: 77.1 + brightGreen: 40.2 + brightYellow: 77.1 + brightBlue: 40.2 + brightMagenta: 88.4 + brightCyan: 88.4 + brightWhite: 92.7 diff --git a/themes/aura-dracula-spirit.yaml b/themes/aura-dracula-spirit.yaml new file mode 100644 index 00000000..9f0ab797 --- /dev/null +++ b/themes/aura-dracula-spirit.yaml @@ -0,0 +1,49 @@ +name: "Aura Dracula Spirit" +source: + marketplace_id: "JoseMurilloc.aura-spirit-dracula" + version: "0.1.10" + installs: 70846 + author: "JoseMurilloc" + repo: "https://github.com/josemurilloc/aura-spirit-dracula" + url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" +colors: + bg: "#140E1A" + fg: "#EDECEE" + black: "#140E1A" + red: "#FF6767" + green: "#8EFFD9" + yellow: "#FFCA85" + blue: "#F477FF" + magenta: "#61FFCA" + cyan: "#A277FF" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#FFCA85" + brightGreen: "#A277FF" + brightYellow: "#FFCA85" + brightBlue: "#A277FF" + brightMagenta: "#61FFCA" + brightCyan: "#61FFCA" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "pink" + hue: 307 + contrast: + fg: 95.2 + black: 0 + red: 47.7 + green: 93.9 + yellow: 79.6 + blue: 55.8 + magenta: 90.9 + cyan: 42.7 + white: 75.4 + brightBlack: 0 + brightRed: 79.6 + brightGreen: 42.7 + brightYellow: 79.6 + brightBlue: 42.7 + brightMagenta: 90.9 + brightCyan: 90.9 + brightWhite: 95.2 diff --git a/themes/aura-soft-dark-soft-text.yaml b/themes/aura-soft-dark-soft-text.yaml new file mode 100644 index 00000000..0d245725 --- /dev/null +++ b/themes/aura-soft-dark-soft-text.yaml @@ -0,0 +1,49 @@ +name: "Aura Soft Dark (Soft Text)" +source: + marketplace_id: "DaltonMenezes.aura-theme" + version: "2.1.2" + installs: 559627 + author: "Dalton Menezes" + repo: "https://github.com/daltonmenezes/aura-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DaltonMenezes.aura-theme" +colors: + bg: "#21202E" + fg: "#BDBDBD" + black: "#21202E" + red: "#C55858" + green: "#54C59F" + yellow: "#C7A06F" + blue: "#8464C6" + magenta: "#54C59F" + cyan: "#8464C6" + white: "#B4B4B4" + brightBlack: "#444444" + brightRed: "#C7A06F" + brightGreen: "#8464C6" + brightYellow: "#C7A06F" + brightBlue: "#8464C6" + brightMagenta: "#54C59F" + brightCyan: "#54C59F" + brightWhite: "#BDBDBD" +meta: + mode: "dark" + accent: "magenta" + hue: 288 + contrast: + fg: 64.5 + black: 0 + red: 30.3 + green: 58.4 + yellow: 52.1 + blue: 28 + magenta: 58.4 + cyan: 28 + white: 59.4 + brightBlack: 7.5 + brightRed: 52.1 + brightGreen: 28 + brightYellow: 52.1 + brightBlue: 28 + brightMagenta: 58.4 + brightCyan: 58.4 + brightWhite: 64.5 diff --git a/themes/aura-soft-dark.yaml b/themes/aura-soft-dark.yaml new file mode 100644 index 00000000..af13b457 --- /dev/null +++ b/themes/aura-soft-dark.yaml @@ -0,0 +1,49 @@ +name: "Aura Soft Dark" +source: + marketplace_id: "DaltonMenezes.aura-theme" + version: "2.1.2" + installs: 559627 + author: "Dalton Menezes" + repo: "https://github.com/daltonmenezes/aura-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DaltonMenezes.aura-theme" +colors: + bg: "#21202E" + fg: "#EDECEE" + black: "#21202E" + red: "#FF6767" + green: "#61FFCA" + yellow: "#FFCA85" + blue: "#A277FF" + magenta: "#61FFCA" + cyan: "#A277FF" + white: "#CDCCCE" + brightBlack: "#444444" + brightRed: "#FFCA85" + brightGreen: "#A277FF" + brightYellow: "#FFCA85" + brightBlue: "#A277FF" + brightMagenta: "#61FFCA" + brightCyan: "#61FFCA" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "magenta" + hue: 288 + contrast: + fg: 93.4 + black: 0 + red: 45.8 + green: 89.1 + yellow: 77.7 + blue: 40.8 + magenta: 89.1 + cyan: 40.8 + white: 73.5 + brightBlack: 7.5 + brightRed: 77.7 + brightGreen: 40.8 + brightYellow: 77.7 + brightBlue: 40.8 + brightMagenta: 89.1 + brightCyan: 89.1 + brightWhite: 93.4 diff --git a/themes/aurbis-dark.yaml b/themes/aurbis-dark.yaml new file mode 100644 index 00000000..157bf20b --- /dev/null +++ b/themes/aurbis-dark.yaml @@ -0,0 +1,49 @@ +name: "Aurbis Dark" +source: + marketplace_id: "dara.aurbis-theme" + version: "0.2.0" + installs: 29 + author: "dara" + repo: "https://github.com/azuradara/aurbis-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dara.aurbis-theme" +colors: + bg: "#0D0D0D" + fg: "#DDDDDD" + black: "#151515" + red: "#C38B8B" + green: "#8FA897" + yellow: "#C4B591" + blue: "#8094B8" + magenta: "#A787A5" + cyan: "#7AA2A6" + white: "#B8B8B8" + brightBlack: "#4A4A4A" + brightRed: "#D49999" + brightGreen: "#A4BBAD" + brightYellow: "#D8C9A3" + brightBlue: "#91A8CC" + brightMagenta: "#B898B8" + brightCyan: "#8DB8BC" + brightWhite: "#D0D0D0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.8 + black: 0 + red: 47.1 + green: 51.6 + yellow: 62.7 + blue: 43.9 + magenta: 42.8 + cyan: 48 + white: 63.8 + brightBlack: 11.7 + brightRed: 54.9 + brightGreen: 62.3 + brightYellow: 74.2 + brightBlue: 54.1 + brightMagenta: 51.7 + brightCyan: 59.5 + brightWhite: 77.8 diff --git a/themes/aurelconstellation.yaml b/themes/aurelconstellation.yaml new file mode 100644 index 00000000..ef36f5bb --- /dev/null +++ b/themes/aurelconstellation.yaml @@ -0,0 +1,49 @@ +name: "aurelConstellation" +source: + marketplace_id: "Pierminator.aurelion-constellation" + version: "0.0.1" + installs: 61 + author: "Pierminator" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Pierminator.aurelion-constellation" +colors: + bg: "#2B2E4A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 102.7 + black: 0 + red: 22.5 + green: 48.8 + yellow: 81.4 + blue: 23.3 + magenta: 25.6 + cyan: 43.4 + white: 85.8 + brightBlack: 17.9 + brightRed: 34.4 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.8 + brightMagenta: 41.2 + brightCyan: 51.2 + brightWhite: 85.8 diff --git a/themes/aurora-borealis-theme-dark.yaml b/themes/aurora-borealis-theme-dark.yaml new file mode 100644 index 00000000..e4790d43 --- /dev/null +++ b/themes/aurora-borealis-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Aurora Borealis Theme Dark" +source: + marketplace_id: "mister-gold.aurora-borealis-theme" + version: "1.5.0" + installs: 636 + author: "Anton Zolotukhin" + repo: "https://github.com/bandantonio/aurora-borealis-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mister-gold.aurora-borealis-theme" +colors: + bg: "#0F042D" + fg: "#DEDEDE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 288 + contrast: + fg: 86.2 + black: 0 + red: 27.3 + green: 53.5 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.6 diff --git a/themes/aurora-borealis-theme.yaml b/themes/aurora-borealis-theme.yaml new file mode 100644 index 00000000..ba3aaf31 --- /dev/null +++ b/themes/aurora-borealis-theme.yaml @@ -0,0 +1,49 @@ +name: "Aurora Borealis Theme" +source: + marketplace_id: "mister-gold.aurora-borealis-theme" + version: "1.5.0" + installs: 636 + author: "Anton Zolotukhin" + repo: "https://github.com/bandantonio/aurora-borealis-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mister-gold.aurora-borealis-theme" +colors: + bg: "#1A1E27" + fg: "#DEDEDE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 266 + contrast: + fg: 84.8 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/aurora.yaml b/themes/aurora.yaml new file mode 100644 index 00000000..14b32430 --- /dev/null +++ b/themes/aurora.yaml @@ -0,0 +1,49 @@ +name: "Aurora" +source: + marketplace_id: "b4v1n4t0r.material-aurora" + version: "0.0.1" + installs: 78 + author: "b4v1n4t0r" + repo: "https://github.com/sjbavier/aurora" + url: "https://marketplace.visualstudio.com/items?itemName=b4v1n4t0r.material-aurora" +colors: + bg: "#302C40" + fg: "#BABED8" + black: "#000000" + red: "#F57484" + green: "#ACEA88" + yellow: "#FFCB6B" + blue: "#71B9ED" + magenta: "#C5A3FF" + cyan: "#88E7CA" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F57484" + brightGreen: "#ACEA88" + brightYellow: "#FFCB6B" + brightBlue: "#71B9ED" + brightMagenta: "#C5A3FF" + brightCyan: "#88E7CA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 293 + contrast: + fg: 63.3 + black: 0 + red: 44.9 + green: 78.9 + yellow: 75.1 + blue: 55.8 + magenta: 56.7 + cyan: 76.5 + white: 103.1 + brightBlack: 22.6 + brightRed: 44.9 + brightGreen: 78.9 + brightYellow: 75.1 + brightBlue: 55.8 + brightMagenta: 56.7 + brightCyan: 76.5 + brightWhite: 103.1 diff --git a/themes/aurorabloom.yaml b/themes/aurorabloom.yaml new file mode 100644 index 00000000..8e28f90a --- /dev/null +++ b/themes/aurorabloom.yaml @@ -0,0 +1,49 @@ +name: "AuroraBloom" +source: + marketplace_id: "R-404.aurorabloom" + version: "0.0.1" + installs: 51 + author: "R-404" + repo: "https://github.com/Meharab-Islam/Aurorabloom" + url: "https://marketplace.visualstudio.com/items?itemName=R-404.aurorabloom" +colors: + bg: "#081B25" + fg: "#EEFFFF" + black: "#081B25" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#007ACC" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#EEFFFF" + brightBlack: "#4B5C67" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#EEFFFF" +meta: + mode: "dark" + accent: "red" + hue: 234 + contrast: + fg: 104.3 + black: 0 + red: 43.3 + green: 83.9 + yellow: 78.6 + blue: 29.8 + magenta: 53.5 + cyan: 78 + white: 104.3 + brightBlack: 16.7 + brightRed: 43.3 + brightGreen: 83.9 + brightYellow: 78.6 + brightBlue: 55.6 + brightMagenta: 53.5 + brightCyan: 78 + brightWhite: 104.3 diff --git a/themes/aurorain.yaml b/themes/aurorain.yaml new file mode 100644 index 00000000..4c96106b --- /dev/null +++ b/themes/aurorain.yaml @@ -0,0 +1,49 @@ +name: "Aurorain" +source: + marketplace_id: "MostafaGh.aurorain" + version: "1.0.2" + installs: 537 + author: "Mostafa-Gholami" + repo: "https://github.com/Mostafa229Gh/Aurorain" + url: "https://marketplace.visualstudio.com/items?itemName=MostafaGh.aurorain" +colors: + bg: "#131E1C" + fg: "#BFE5C7" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#6FA0DE" + magenta: "#A68DCD" + cyan: "#74C9DE" + white: "#FFFFFF" + brightBlack: "#476352" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#6FA0DE" + brightMagenta: "#A68DCD" + brightCyan: "#74C9DE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 182 + contrast: + fg: 83.6 + black: 0 + red: 46 + green: 83.6 + yellow: 78.4 + blue: 47.9 + magenta: 45.4 + cyan: 65.4 + white: 106.3 + brightBlack: 17.6 + brightRed: 46 + brightGreen: 83.6 + brightYellow: 78.4 + brightBlue: 47.9 + brightMagenta: 45.4 + brightCyan: 65.4 + brightWhite: 106.3 diff --git a/themes/aurorasynth-dark.yaml b/themes/aurorasynth-dark.yaml new file mode 100644 index 00000000..8a5d3645 --- /dev/null +++ b/themes/aurorasynth-dark.yaml @@ -0,0 +1,49 @@ +name: "AuroraSynth Dark" +source: + marketplace_id: "0xK4GE.aurorasynth" + version: "0.0.2" + installs: 136 + author: "0xK4GE" + repo: "https://github.com/Ayushvishwakarma04/AuroraSynth" + url: "https://marketplace.visualstudio.com/items?itemName=0xK4GE.aurorasynth" +colors: + bg: "#353935" + fg: "#EAEAEA" + black: "#353935" + red: "#FF6B6B" + green: "#4CAF50" + yellow: "#FFD700" + blue: "#87CEEB" + magenta: "#FF6EC7" + cyan: "#6BCA8F" + white: "#EAEAEA" + brightBlack: "#353935" + brightRed: "#FF6B6B" + brightGreen: "#7ACC7A" + brightYellow: "#FDFE9F" + brightBlue: "#ADD8E6" + brightMagenta: "#CC99FF" + brightCyan: "#7ACC7A" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 86.9 + black: 0 + red: 41.8 + green: 41.3 + yellow: 77 + blue: 63.9 + magenta: 45.8 + cyan: 56.4 + white: 86.9 + brightBlack: 0 + brightRed: 41.8 + brightGreen: 57.7 + brightYellow: 96.4 + brightBlue: 71.4 + brightMagenta: 51.9 + brightCyan: 57.7 + brightWhite: 100.6 diff --git a/themes/aurorasynth-light.yaml b/themes/aurorasynth-light.yaml new file mode 100644 index 00000000..7dad5b77 --- /dev/null +++ b/themes/aurorasynth-light.yaml @@ -0,0 +1,49 @@ +name: "AuroraSynth Light" +source: + marketplace_id: "0xK4GE.aurorasynth" + version: "0.0.2" + installs: 136 + author: "0xK4GE" + repo: "https://github.com/Ayushvishwakarma04/AuroraSynth" + url: "https://marketplace.visualstudio.com/items?itemName=0xK4GE.aurorasynth" +colors: + bg: "#FAF6FB" + fg: "#B8005A" + black: "#353935" + red: "#FF6B6B" + green: "#4CAF50" + yellow: "#FFD700" + blue: "#87CEEB" + magenta: "#FF6EC7" + cyan: "#6BCA8F" + white: "#B8005A" + brightBlack: "#353935" + brightRed: "#FF6B6B" + brightGreen: "#20D020" + brightYellow: "#FDFE9F" + brightBlue: "#ADD8E6" + brightMagenta: "#CC99FF" + brightCyan: "#20D020" + brightWhite: "#FAF6FB" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 75.4 + black: 92.4 + red: 48.1 + green: 48.6 + yellow: 14.6 + blue: 26.9 + magenta: 44.2 + cyan: 34 + white: 75.4 + brightBlack: 92.4 + brightRed: 48.1 + brightGreen: 35.2 + brightYellow: 0 + brightBlue: 19.8 + brightMagenta: 38.4 + brightCyan: 35.2 + brightWhite: 0 diff --git a/themes/australian-food-fibre-dark.yaml b/themes/australian-food-fibre-dark.yaml new file mode 100644 index 00000000..2561a9a5 --- /dev/null +++ b/themes/australian-food-fibre-dark.yaml @@ -0,0 +1,49 @@ +name: "Australian Food & Fibre Dark" +source: + marketplace_id: "lucidlabs.australian-food-fibre-theme" + version: "1.1.0" + installs: 8 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.australian-food-fibre-theme" +colors: + bg: "#0E1826" + fg: "#E4E8F0" + black: "#060C18" + red: "#E87272" + green: "#6BBF5B" + yellow: "#D4B06C" + blue: "#5B8CE8" + magenta: "#C06BDA" + cyan: "#5BB8BF" + white: "#E4E8F0" + brightBlack: "#999999" + brightRed: "#E06050" + brightGreen: "#80D470" + brightYellow: "#E8C870" + brightBlue: "#6B9BFF" + brightMagenta: "#D898E8" + brightCyan: "#78D0D4" + brightWhite: "#F0ECF8" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 91.7 + black: 0 + red: 45 + green: 56.4 + yellow: 61.2 + blue: 40.4 + magenta: 40.6 + cyan: 55.4 + white: 91.7 + brightBlack: 46.1 + brightRed: 38.5 + brightGreen: 67.9 + brightYellow: 74 + brightBlue: 48.5 + brightMagenta: 58.1 + brightCyan: 68.8 + brightWhite: 95.5 diff --git a/themes/australian-food-fibre-light.yaml b/themes/australian-food-fibre-light.yaml new file mode 100644 index 00000000..72526ca8 --- /dev/null +++ b/themes/australian-food-fibre-light.yaml @@ -0,0 +1,49 @@ +name: "Australian Food & Fibre Light" +source: + marketplace_id: "lucidlabs.australian-food-fibre-theme" + version: "1.1.0" + installs: 8 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.australian-food-fibre-theme" +colors: + bg: "#FFFFFF" + fg: "#111827" + black: "#111827" + red: "#D43030" + green: "#2E8B30" + yellow: "#8B6B20" + blue: "#1E3D82" + magenta: "#8B30A8" + cyan: "#1B7264" + white: "#FFFFFF" + brightBlack: "#636B78" + brightRed: "#E04040" + brightGreen: "#3AA040" + brightYellow: "#A08030" + brightBlue: "#2A50A0" + brightMagenta: "#A040C0" + brightCyan: "#20887A" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 104.5 + black: 104.5 + red: 72.5 + green: 69.6 + yellow: 74.3 + blue: 93.4 + magenta: 82.6 + cyan: 78.5 + white: 0 + brightBlack: 76.8 + brightRed: 67.8 + brightGreen: 60.5 + brightYellow: 64.8 + brightBlue: 86.1 + brightMagenta: 75.4 + brightCyan: 69.5 + brightWhite: 0 diff --git a/themes/autumn-fork-contrast.yaml b/themes/autumn-fork-contrast.yaml new file mode 100644 index 00000000..6884a28b --- /dev/null +++ b/themes/autumn-fork-contrast.yaml @@ -0,0 +1,49 @@ +name: "Autumn - Fork - Contrast" +source: + marketplace_id: "brinklju.jb-autumn" + version: "0.4.0" + installs: 293 + author: "brinklju" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=brinklju.jb-autumn" +colors: + bg: "#171316" + fg: "#FFF8BC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2473C8" + magenta: "#BC3FBC" + cyan: "#11A7CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8DEA" + brightMagenta: "#D670D6" + brightCyan: "#29B7DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.1 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 28 + magenta: 30 + cyan: 47.4 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 39.9 + brightMagenta: 45.6 + brightCyan: 55.2 + brightWhite: 90.3 diff --git a/themes/autumn-fork.yaml b/themes/autumn-fork.yaml new file mode 100644 index 00000000..97ec9268 --- /dev/null +++ b/themes/autumn-fork.yaml @@ -0,0 +1,49 @@ +name: "Autumn - Fork" +source: + marketplace_id: "jonothankh.dyslexia-autumn-theme" + version: "0.0.1" + installs: 1550 + author: "Jonothan Hunt" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jonothankh.dyslexia-autumn-theme" +colors: + bg: "#1D0F0F" + fg: "#A08060" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 20 + contrast: + fg: 36.9 + black: 0 + red: 27 + green: 53.3 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.4 diff --git a/themes/autumn-highlighter-syntax.yaml b/themes/autumn-highlighter-syntax.yaml new file mode 100644 index 00000000..c1b5c195 --- /dev/null +++ b/themes/autumn-highlighter-syntax.yaml @@ -0,0 +1,49 @@ +name: "Autumn Highlighter Syntax" +source: + marketplace_id: "undefynd.vscode-autumn-highlighter-syntax" + version: "0.0.1" + installs: 264 + author: "undefynd" + repo: "https://github.com/undefynd/vscode-autumn-highlighter-syntax" + url: "https://marketplace.visualstudio.com/items?itemName=undefynd.vscode-autumn-highlighter-syntax" +colors: + bg: "#1D232F" + fg: "#A8B5D1" + black: "#1D232F" + red: "#C98B7E" + green: "#6EAA7F" + yellow: "#C8E69E" + blue: "#7B6D9C" + magenta: "#8B4B65" + cyan: "#9EC8E6" + white: "#99A3B8" + brightBlack: "#7992B4" + brightRed: "#C98B7E" + brightGreen: "#6EAA7F" + brightYellow: "#C8E69E" + brightBlue: "#7B6D9C" + brightMagenta: "#8B4B65" + brightCyan: "#9EC8E6" + brightWhite: "#99A3B8" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 59.5 + black: 0 + red: 45.4 + green: 46.7 + yellow: 82.7 + blue: 26.8 + magenta: 17.9 + cyan: 67.6 + white: 49.7 + brightBlack: 40.1 + brightRed: 45.4 + brightGreen: 46.7 + brightYellow: 82.7 + brightBlue: 26.8 + brightMagenta: 17.9 + brightCyan: 67.6 + brightWhite: 49.7 diff --git a/themes/autumn.yaml b/themes/autumn.yaml new file mode 100644 index 00000000..57e36f18 --- /dev/null +++ b/themes/autumn.yaml @@ -0,0 +1,49 @@ +name: "Autumn" +source: + marketplace_id: "den-swe.autumn-theme-light" + version: "1.6.0" + installs: 123 + author: "Denniz Ege" + repo: "https://github.com/den-swe/autumn-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=den-swe.autumn-theme-light" +colors: + bg: "#FFFEFD" + fg: "#624234" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#454545" + brightBlack: "#474747" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#C7CD00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#686868" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 89.9 + black: 105.5 + red: 73.5 + green: 48.7 + yellow: 57.4 + blue: 85.5 + magenta: 74.1 + cyan: 60.1 + white: 91.7 + brightBlack: 91 + brightRed: 73.5 + brightGreen: 40.4 + brightYellow: 30.5 + brightBlue: 85.5 + brightMagenta: 74.1 + brightCyan: 60.1 + brightWhite: 77.4 diff --git a/themes/awesome-dark.yaml b/themes/awesome-dark.yaml new file mode 100644 index 00000000..99577e1f --- /dev/null +++ b/themes/awesome-dark.yaml @@ -0,0 +1,49 @@ +name: "Awesome Dark" +source: + marketplace_id: "iSSamQa.awesome-dark-theme" + version: "0.2.1" + installs: 1946 + author: "iSSam Qa" + repo: "https://github.com/iSSamQa/vscode-awesome-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=iSSamQa.awesome-dark-theme" +colors: + bg: "#0E1112" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.6 diff --git a/themes/awesome-theme.yaml b/themes/awesome-theme.yaml new file mode 100644 index 00000000..2894c4f5 --- /dev/null +++ b/themes/awesome-theme.yaml @@ -0,0 +1,49 @@ +name: "awesome-theme" +source: + marketplace_id: "ast2kg.awesome-theme" + version: "0.0.1" + installs: 110 + author: "AshishK" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ast2kg.awesome-theme" +colors: + bg: "#161930" + fg: "#E8E1E1" + black: "#000000" + red: "#14FF38" + green: "#14FF38" + yellow: "#14FF38" + blue: "#14FF38" + magenta: "#14FF38" + cyan: "#14FF38" + white: "#14FF38" + brightBlack: "#14FF38" + brightRed: "#14FF38" + brightGreen: "#14FF38" + brightYellow: "#14FF38" + brightBlue: "#14FF38" + brightMagenta: "#14FF38" + brightCyan: "#14FF38" + brightWhite: "#14FF38" +meta: + mode: "dark" + accent: "green" + hue: 277 + contrast: + fg: 88 + black: 0 + red: 85.2 + green: 85.2 + yellow: 85.2 + blue: 85.2 + magenta: 85.2 + cyan: 85.2 + white: 85.2 + brightBlack: 85.2 + brightRed: 85.2 + brightGreen: 85.2 + brightYellow: 85.2 + brightBlue: 85.2 + brightMagenta: 85.2 + brightCyan: 85.2 + brightWhite: 85.2 diff --git a/themes/awesome-vscode-dark.yaml b/themes/awesome-vscode-dark.yaml new file mode 100644 index 00000000..4d7828ca --- /dev/null +++ b/themes/awesome-vscode-dark.yaml @@ -0,0 +1,49 @@ +name: "awesome-vscode-dark" +source: + marketplace_id: "SatyamTripathi-codehouse.awesome-vscode-dark" + version: "0.0.1" + installs: 26 + author: "Satyam Tripathi6212" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SatyamTripathi-codehouse.awesome-vscode-dark" +colors: + bg: "#2A0E0E" + fg: "#27C438" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D9D9D9" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 22 + contrast: + fg: 55.8 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 82.4 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/awork-dark.yaml b/themes/awork-dark.yaml new file mode 100644 index 00000000..3562ed98 --- /dev/null +++ b/themes/awork-dark.yaml @@ -0,0 +1,49 @@ +name: "Awork Dark" +source: + marketplace_id: "sils.awork-dark" + version: "0.0.9" + installs: 22 + author: "Sil's" + repo: "https://github.com/silvandiepen/awork-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sils.awork-dark" +colors: + bg: "#1A1C28" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + contrast: + fg: 78.8 + black: 0 + red: 26 + green: 52.3 + yellow: 85 + blue: 26.8 + magenta: 29.1 + cyan: 46.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 37.9 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.4 diff --git a/themes/axiomatic-dark.yaml b/themes/axiomatic-dark.yaml new file mode 100644 index 00000000..e14274ef --- /dev/null +++ b/themes/axiomatic-dark.yaml @@ -0,0 +1,49 @@ +name: "Axiomatic Dark" +source: + marketplace_id: "xcuzalex.axiomatic" + version: "0.5.0" + installs: 42 + author: "xcuzalex" + repo: "https://github.com/xcuzalex/axiomatic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xcuzalex.axiomatic" +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#E4E4E4" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 278 + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 50.7 + magenta: 51.6 + cyan: 81 + white: 86.4 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 99 diff --git a/themes/axiomatic-light.yaml b/themes/axiomatic-light.yaml new file mode 100644 index 00000000..b5d6848d --- /dev/null +++ b/themes/axiomatic-light.yaml @@ -0,0 +1,49 @@ +name: "Axiomatic Light" +source: + marketplace_id: "xcuzalex.axiomatic" + version: "0.5.0" + installs: 42 + author: "xcuzalex" + repo: "https://github.com/xcuzalex/axiomatic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xcuzalex.axiomatic" +colors: + bg: "#FAFAFA" + fg: "#383A42" + black: "#383A42" + red: "#E45649" + green: "#50A14F" + yellow: "#986801" + blue: "#4078F2" + magenta: "#A626A4" + cyan: "#0184BC" + white: "#383A42" + brightBlack: "#A0A1A7" + brightRed: "#E45649" + brightGreen: "#50A14F" + brightYellow: "#986801" + brightBlue: "#4078F2" + brightMagenta: "#A626A4" + brightCyan: "#0184BC" + brightWhite: "#FAFAFA" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 93.2 + black: 93.2 + red: 60.4 + green: 56 + yellow: 70.5 + blue: 64.3 + magenta: 76.2 + cyan: 65.1 + white: 93.2 + brightBlack: 47.4 + brightRed: 60.4 + brightGreen: 56 + brightYellow: 70.5 + brightBlue: 64.3 + brightMagenta: 76.2 + brightCyan: 65.1 + brightWhite: 0 diff --git a/themes/axis-ultra-dark.yaml b/themes/axis-ultra-dark.yaml new file mode 100644 index 00000000..c4d0db56 --- /dev/null +++ b/themes/axis-ultra-dark.yaml @@ -0,0 +1,49 @@ +name: "Axis Ultra Dark" +source: + marketplace_id: "utreras.axis-ultra-dark" + version: "3.0.0" + installs: 112 + author: "Ignacio Utreras Urrutia" + repo: "https://github.com/utreras/axis-ultra-dark" + url: "https://marketplace.visualstudio.com/items?itemName=utreras.axis-ultra-dark" +colors: + bg: "#0C0D0D" + fg: "#E1E1E1" + black: "#000000" + red: "#F14251" + green: "#9DD194" + yellow: "#FFD666" + blue: "#77AAFF" + magenta: "#D4A5D4" + cyan: "#66C2C2" + white: "#E1E1E1" + brightBlack: "#6B7089" + brightRed: "#F14251" + brightGreen: "#9DD194" + brightYellow: "#FFD666" + brightBlue: "#77AAFF" + brightMagenta: "#D4A5D4" + brightCyan: "#66C2C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88.3 + black: 0 + red: 38 + green: 70.5 + yellow: 84.2 + blue: 55.8 + magenta: 61.6 + cyan: 61.4 + white: 88.3 + brightBlack: 27.6 + brightRed: 38 + brightGreen: 70.5 + brightYellow: 84.2 + brightBlue: 55.8 + brightMagenta: 61.6 + brightCyan: 61.4 + brightWhite: 107.6 diff --git a/themes/ayame.yaml b/themes/ayame.yaml new file mode 100644 index 00000000..86701c02 --- /dev/null +++ b/themes/ayame.yaml @@ -0,0 +1,49 @@ +name: "Ayame" +source: + marketplace_id: "Nurdoidz.ayame" + version: "1.1.2" + installs: 302 + author: "Nurdoidz" + repo: "https://github.com/AyameTheme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Nurdoidz.ayame" +colors: + bg: "#130F1E" + fg: "#CBBADE" + black: "#564585" + red: "#C43053" + green: "#76B65B" + yellow: "#FF874B" + blue: "#2B7BBD" + magenta: "#9768F8" + cyan: "#41BAC8" + white: "#8A7D9B" + brightBlack: "#342950" + brightRed: "#FF4B73" + brightGreen: "#96E474" + brightYellow: "#F5CB40" + brightBlue: "#44A3F5" + brightMagenta: "#F76EF1" + brightCyan: "#54E7F8" + brightWhite: "#E5DCEF" +meta: + mode: "dark" + accent: "pink" + hue: 295 + contrast: + fg: 68.4 + black: 13.6 + red: 25.7 + green: 53.6 + yellow: 55.1 + blue: 30.3 + magenta: 36.8 + cyan: 56.3 + white: 35.3 + brightBlack: 0 + brightRed: 42.9 + brightGreen: 77.8 + brightYellow: 77.2 + brightBlue: 49.5 + brightMagenta: 53.3 + brightCyan: 80.3 + brightWhite: 87 diff --git a/themes/ayanokoji.yaml b/themes/ayanokoji.yaml new file mode 100644 index 00000000..9f486479 --- /dev/null +++ b/themes/ayanokoji.yaml @@ -0,0 +1,49 @@ +name: "Ayanokoji" +source: + marketplace_id: "Pratik1107.ayanokoji-theme" + version: "2.0.1" + installs: 91 + author: "Pratik1107" + repo: "https://github.com/yourusername/ayanokoji-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Pratik1107.ayanokoji-theme" +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#000000" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#8BE9FD" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#8BE9FD" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 278 + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 81 + magenta: 51.6 + cyan: 81 + white: 99 + brightBlack: 25.1 + brightRed: 40.4 + brightGreen: 81.9 + brightYellow: 95.6 + brightBlue: 81 + brightMagenta: 51.6 + brightCyan: 81 + brightWhite: 99 diff --git a/themes/aylin.yaml b/themes/aylin.yaml new file mode 100644 index 00000000..44bfa9b8 --- /dev/null +++ b/themes/aylin.yaml @@ -0,0 +1,49 @@ +name: "Aylin" +source: + marketplace_id: "AhmedAbdulrahman.aylin" + version: "1.13.0" + installs: 9802 + author: "Ahmed Abdulrahman" + repo: "https://github.com/AhmedAbdulrahman/aylin-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AhmedAbdulrahman.aylin" +colors: + bg: "#191F2B" + fg: "#CBCCC6" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#6DCBFA" + magenta: "#CFBAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#73D0FF" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 73.3 + black: 0 + red: 49.4 + green: 66.5 + yellow: 79.5 + blue: 67 + magenta: 69.1 + cyan: 76.9 + white: 70.7 + brightBlack: 21.9 + brightRed: 51.9 + brightGreen: 80.9 + brightYellow: 82.5 + brightBlue: 69.9 + brightMagenta: 72 + brightCyan: 79.9 + brightWhite: 105.9 diff --git a/themes/ayu-enhanced.yaml b/themes/ayu-enhanced.yaml new file mode 100644 index 00000000..93474b6b --- /dev/null +++ b/themes/ayu-enhanced.yaml @@ -0,0 +1,49 @@ +name: "Ayu Enhanced" +source: + marketplace_id: "Jonaqhan.jonaqhan" + version: "4.8.0" + installs: 753 + author: "Jonaqhan" + repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" +colors: + bg: "#1F2430" + fg: "#CCCAC2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 267 + contrast: + fg: 71.6 + black: 0 + red: 25 + green: 51.2 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.2 + brightMagenta: 43.6 + brightCyan: 53.6 + brightWhite: 88.3 diff --git a/themes/ayu-owl.yaml b/themes/ayu-owl.yaml new file mode 100644 index 00000000..545e133d --- /dev/null +++ b/themes/ayu-owl.yaml @@ -0,0 +1,49 @@ +name: "ayu-owl" +source: + marketplace_id: "dermohamad.ayu-owl" + version: "0.5.0" + installs: 17992 + author: "dermohamad" + repo: "https://github.com/mo-develop/ayu-owl" + url: "https://marketplace.visualstudio.com/items?itemName=dermohamad.ayu-owl" +colors: + bg: "#011627" + fg: "#CBCCC6" + black: "#2F3B54" + red: "#EF6B73" + green: "#BAE67E" + yellow: "#FFCC66" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#BAE67E" + brightYellow: "#FFCC66" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "orange" + hue: 244 + contrast: + fg: 74.4 + black: 0 + red: 44.9 + green: 82 + yellow: 79.4 + blue: 67.9 + magenta: 61.4 + cyan: 67.9 + white: 55.2 + brightBlack: 11.2 + brightRed: 44.9 + brightGreen: 82 + brightYellow: 79.4 + brightBlue: 67.9 + brightMagenta: 61.4 + brightCyan: 67.9 + brightWhite: 55.2 diff --git a/themes/ayu.yaml b/themes/ayu.yaml new file mode 100644 index 00000000..cdc730b0 --- /dev/null +++ b/themes/ayu.yaml @@ -0,0 +1,49 @@ +name: "ayu" +source: + marketplace_id: "tsybko22.ayu-fork" + version: "1.2.0" + installs: 790 + author: "Ivan Tsybko" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tsybko22.ayu-fork" +colors: + bg: "#1F2430" + fg: "#CCCAC2" + black: "#191E2A" + red: "#ED8274" + green: "#BAE67E" + yellow: "#FAD07B" + blue: "#71B6F0" + magenta: "#CFBAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FAC761" + brightBlue: "#71B6F0" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + contrast: + fg: 71.6 + black: 0 + red: 48.6 + green: 80.2 + yellow: 78.7 + blue: 56.8 + magenta: 68.3 + cyan: 76.1 + white: 69.9 + brightBlack: 21.1 + brightRed: 51.1 + brightGreen: 80.2 + brightYellow: 74.5 + brightBlue: 56.8 + brightMagenta: 71.2 + brightCyan: 79.1 + brightWhite: 105.1 diff --git a/themes/ayudark.yaml b/themes/ayudark.yaml new file mode 100644 index 00000000..4f9d7e6b --- /dev/null +++ b/themes/ayudark.yaml @@ -0,0 +1,49 @@ +name: "AyuDark" +source: + marketplace_id: "Avetis.codeme-theme" + version: "0.1.1" + installs: 8079 + author: "Avetis" + repo: "https://github.com/AvetisDN/codeme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" +colors: + bg: "#0F1319" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 258 + contrast: + fg: 79.9 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/ayuloco-dark-bordered.yaml b/themes/ayuloco-dark-bordered.yaml new file mode 100644 index 00000000..7209b149 --- /dev/null +++ b/themes/ayuloco-dark-bordered.yaml @@ -0,0 +1,49 @@ +name: "Ayuloco Dark Bordered" +source: + marketplace_id: "dpaulos6.ayuloco-theme" + version: "2.0.3" + installs: 1465 + author: "dpaulos6" + repo: "https://github.com/dpaulos6/ayuloco-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dpaulos6.ayuloco-theme" +colors: + bg: "#0D1017" + fg: "#BFBDB6" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + contrast: + fg: 66.4 + black: 0 + red: 44.6 + green: 70.6 + yellow: 67.1 + blue: 61.2 + magenta: 61.2 + cyan: 78.4 + white: 72.3 + brightBlack: 23.5 + brightRed: 47.2 + brightGreen: 73.9 + brightYellow: 70.1 + brightBlue: 63.9 + brightMagenta: 64 + brightCyan: 81.4 + brightWhite: 107.4 diff --git a/themes/ayuloco-dark.yaml b/themes/ayuloco-dark.yaml new file mode 100644 index 00000000..c0e08643 --- /dev/null +++ b/themes/ayuloco-dark.yaml @@ -0,0 +1,49 @@ +name: "Ayuloco Dark" +source: + marketplace_id: "dpaulos6.ayuloco-theme" + version: "2.0.3" + installs: 1465 + author: "dpaulos6" + repo: "https://github.com/dpaulos6/ayuloco-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dpaulos6.ayuloco-theme" +colors: + bg: "#0B0E14" + fg: "#BFBDB6" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 66.5 + black: 0 + red: 44.7 + green: 70.7 + yellow: 67.3 + blue: 61.3 + magenta: 61.3 + cyan: 78.6 + white: 72.4 + brightBlack: 23.6 + brightRed: 47.3 + brightGreen: 74 + brightYellow: 70.3 + brightBlue: 64 + brightMagenta: 64.1 + brightCyan: 81.6 + brightWhite: 107.6 diff --git a/themes/ayuloco-mirage-bordered.yaml b/themes/ayuloco-mirage-bordered.yaml new file mode 100644 index 00000000..b4805e33 --- /dev/null +++ b/themes/ayuloco-mirage-bordered.yaml @@ -0,0 +1,49 @@ +name: "Ayuloco Mirage Bordered" +source: + marketplace_id: "dpaulos6.ayuloco-theme" + version: "2.0.3" + installs: 1465 + author: "dpaulos6" + repo: "https://github.com/dpaulos6/ayuloco-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dpaulos6.ayuloco-theme" +colors: + bg: "#242936" + fg: "#CCCAC2" + black: "#171B24" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#FFD173" + brightBlue: "#73D0FF" + brightMagenta: "#DFBFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 268 + contrast: + fg: 70.7 + black: 0 + red: 47.7 + green: 68.1 + yellow: 75.9 + blue: 65.3 + magenta: 68.9 + cyan: 75.2 + white: 69 + brightBlack: 20.2 + brightRed: 50.2 + brightGreen: 94.6 + brightYellow: 78.9 + brightBlue: 68.2 + brightMagenta: 71.9 + brightCyan: 78.2 + brightWhite: 104.2 diff --git a/themes/ayuloco-mirage.yaml b/themes/ayuloco-mirage.yaml new file mode 100644 index 00000000..d79a15af --- /dev/null +++ b/themes/ayuloco-mirage.yaml @@ -0,0 +1,49 @@ +name: "Ayuloco Mirage" +source: + marketplace_id: "dpaulos6.ayuloco-theme" + version: "2.0.3" + installs: 1465 + author: "dpaulos6" + repo: "https://github.com/dpaulos6/ayuloco-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dpaulos6.ayuloco-theme" +colors: + bg: "#1F2430" + fg: "#CCCAC2" + black: "#171B24" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#FFD173" + brightBlue: "#73D0FF" + brightMagenta: "#DFBFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + contrast: + fg: 71.6 + black: 0 + red: 48.6 + green: 69 + yellow: 76.8 + blue: 66.2 + magenta: 69.8 + cyan: 76.1 + white: 69.9 + brightBlack: 21.1 + brightRed: 51.1 + brightGreen: 95.5 + brightYellow: 79.8 + brightBlue: 69.1 + brightMagenta: 72.8 + brightCyan: 79.1 + brightWhite: 105.1 diff --git a/themes/ayutokyo-color-theme.yaml b/themes/ayutokyo-color-theme.yaml new file mode 100644 index 00000000..98c33f5e --- /dev/null +++ b/themes/ayutokyo-color-theme.yaml @@ -0,0 +1,49 @@ +name: "AyuTokyo-color-theme" +source: + marketplace_id: "LudoLoops.ayutokyo" + version: "0.2.1" + installs: 21424 + author: "LudoLoops" + repo: "https://github.com/neuroloops/ayutokyo" + url: "https://marketplace.visualstudio.com/items?itemName=LudoLoops.ayutokyo" +colors: + bg: "#0D1017" + fg: "#BFBDB6" + black: "#11151C" + red: "#EA6C73" + green: "#00FFAA" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 267 + contrast: + fg: 66.4 + black: 0 + red: 44.6 + green: 88.2 + yellow: 67.1 + blue: 61.2 + magenta: 61.2 + cyan: 78.4 + white: 72.3 + brightBlack: 23.5 + brightRed: 47.2 + brightGreen: 73.9 + brightYellow: 70.1 + brightBlue: 63.9 + brightMagenta: 64 + brightCyan: 81.4 + brightWhite: 107.4 diff --git a/themes/ayyour.yaml b/themes/ayyour.yaml new file mode 100644 index 00000000..1aed0321 --- /dev/null +++ b/themes/ayyour.yaml @@ -0,0 +1,49 @@ +name: "Ayyour" +source: + marketplace_id: "akil-s.ayyour" + version: "0.0.1" + installs: 195 + author: "akil-s" + repo: "https://github.com/Salah-Akil/ayyour-theme" + url: "https://marketplace.visualstudio.com/items?itemName=akil-s.ayyour" +colors: + bg: "#EAE7E1" + fg: "#323435" + black: "#232627" + red: "#BF0C0C" + green: "#738D01" + yellow: "#D59200" + blue: "#009C8F" + magenta: "#AA62C8" + cyan: "#17B898" + white: "#42413F" + brightBlack: "#464E4F" + brightRed: "#CA1111" + brightGreen: "#7F990D" + brightYellow: "#9E6200" + brightBlue: "#00B6A4" + brightMagenta: "#8E44AD" + brightCyan: "#16A085" + brightWhite: "#5D5C5A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 84.4 + black: 88.1 + red: 65.4 + green: 51.2 + yellow: 37.1 + blue: 47 + magenta: 52.6 + cyan: 34.8 + white: 79.6 + brightBlack: 75.3 + brightRed: 62.8 + brightGreen: 45.5 + brightYellow: 60.2 + brightBlue: 35.3 + brightMagenta: 64.7 + brightCyan: 45.6 + brightWhite: 69 diff --git a/themes/az0ox-theme-shadesofblue.yaml b/themes/az0ox-theme-shadesofblue.yaml new file mode 100644 index 00000000..a20675e0 --- /dev/null +++ b/themes/az0ox-theme-shadesofblue.yaml @@ -0,0 +1,49 @@ +name: "az0ox.theme-shadesOfBlue" +source: + marketplace_id: "NathanEcht.az0ox-theme-ShadesOfBlue" + version: "0.0.2" + installs: 143 + author: "Nathan_Echt" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NathanEcht.az0ox-theme-ShadesOfBlue" +colors: + bg: "#2B2A41" + fg: "#D9B23C" + black: "#000000" + red: "#CB2D2D" + green: "#2CFF00" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#FF00FF" + cyan: "#00CDFF" + white: "#CBC4FF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#39D123" + brightYellow: "#D5D528" + brightBlue: "#3B8EEA" + brightMagenta: "#FF71FF" + brightCyan: "#22B5D9" + brightWhite: "#6371BC" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 58.9 + black: 0 + red: 22.5 + green: 82.4 + yellow: 82.3 + blue: 24.1 + magenta: 41.9 + cyan: 63.3 + white: 70.5 + brightBlack: 18.7 + brightRed: 35.2 + brightGreen: 59 + brightYellow: 72.9 + brightBlue: 36.7 + brightMagenta: 52.8 + brightCyan: 50.6 + brightWhite: 25.9 diff --git a/themes/azathoth.yaml b/themes/azathoth.yaml new file mode 100644 index 00000000..cd290150 --- /dev/null +++ b/themes/azathoth.yaml @@ -0,0 +1,49 @@ +name: "Azathoth" +source: + marketplace_id: "chocolatemoles.theme-azathoth-vscode" + version: "1.0.3" + installs: 213 + author: "chocolate_moles" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=chocolatemoles.theme-azathoth-vscode" +colors: + bg: "#424552" + fg: "#CFE8EB" + black: "#2B303B" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#8FA1B3" + magenta: "#B48EAD" + cyan: "#96B5B4" + white: "#C0C5CE" + brightBlack: "#65737E" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#8FA1B3" + brightMagenta: "#B48EAD" + brightCyan: "#96B5B4" + brightWhite: "#EFF1F5" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 78.3 + black: 0 + red: 22.4 + green: 51.1 + yellow: 65.8 + blue: 38.7 + magenta: 35.9 + cyan: 47.4 + white: 59.7 + brightBlack: 16.3 + brightRed: 22.4 + brightGreen: 51.1 + brightYellow: 65.8 + brightBlue: 38.7 + brightMagenta: 35.9 + brightCyan: 47.4 + brightWhite: 87 diff --git a/themes/azeny-cutimaru.yaml b/themes/azeny-cutimaru.yaml new file mode 100644 index 00000000..7db662f4 --- /dev/null +++ b/themes/azeny-cutimaru.yaml @@ -0,0 +1,49 @@ +name: "Azeny Cutimaru" +source: + marketplace_id: "Azeny.azeny" + version: "0.1.11" + installs: 684 + author: "Azeny" + repo: "https://github.com/joaopedroaats/azeny-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Azeny.azeny" +colors: + bg: "#24283B" + fg: "#B1B8DA" + black: "#1F2335" + red: "#FF5555" + green: "#61F0FF" + yellow: "#FFFC59" + blue: "#B9B3FF" + magenta: "#667EEA" + cyan: "#66EA90" + white: "#B1B8DA" + brightBlack: "#4D5980" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 61.1 + black: 0 + red: 40.7 + green: 82.5 + yellow: 98 + blue: 62.2 + magenta: 34.1 + cyan: 75.3 + white: 61.1 + brightBlack: 14.6 + brightRed: 46.2 + brightGreen: 86.4 + brightYellow: 100.9 + brightBlue: 63.5 + brightMagenta: 60 + brightCyan: 94.1 + brightWhite: 104.2 diff --git a/themes/azeny-inveny.yaml b/themes/azeny-inveny.yaml new file mode 100644 index 00000000..81ae7a56 --- /dev/null +++ b/themes/azeny-inveny.yaml @@ -0,0 +1,49 @@ +name: "Azeny Inveny" +source: + marketplace_id: "Azeny.azeny" + version: "0.1.11" + installs: 684 + author: "Azeny" + repo: "https://github.com/joaopedroaats/azeny-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Azeny.azeny" +colors: + bg: "#21222C" + fg: "#FFFFFF" + black: "#1C1E26" + red: "#FF5555" + green: "#61F0FF" + yellow: "#FFFC59" + blue: "#BD93F9" + magenta: "#50F2A7" + cyan: "#9951E8" + white: "#FFFFFF" + brightBlack: "#4D5980" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 280 + contrast: + fg: 105.4 + black: 0 + red: 41.9 + green: 83.7 + yellow: 99.1 + blue: 52.1 + magenta: 80.3 + cyan: 28.7 + white: 105.4 + brightBlack: 15.7 + brightRed: 47.3 + brightGreen: 87.5 + brightYellow: 102 + brightBlue: 64.6 + brightMagenta: 61.1 + brightCyan: 95.3 + brightWhite: 105.4 diff --git a/themes/azeny-okano.yaml b/themes/azeny-okano.yaml new file mode 100644 index 00000000..e768fe6c --- /dev/null +++ b/themes/azeny-okano.yaml @@ -0,0 +1,49 @@ +name: "Azeny Okano" +source: + marketplace_id: "Azeny.azeny" + version: "0.1.11" + installs: 684 + author: "Azeny" + repo: "https://github.com/joaopedroaats/azeny-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Azeny.azeny" +colors: + bg: "#212537" + fg: "#FFFFFF" + black: "#1A1D2C" + red: "#FF5555" + green: "#61F0FF" + yellow: "#FFFC59" + blue: "#BD93F9" + magenta: "#667EEA" + cyan: "#66EA90" + white: "#FFFFFF" + brightBlack: "#4D5980" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 104.8 + black: 0 + red: 41.3 + green: 83.1 + yellow: 98.6 + blue: 51.6 + magenta: 34.6 + cyan: 75.9 + white: 104.8 + brightBlack: 15.2 + brightRed: 46.8 + brightGreen: 87 + brightYellow: 101.5 + brightBlue: 64 + brightMagenta: 60.5 + brightCyan: 94.7 + brightWhite: 104.8 diff --git a/themes/azeny.yaml b/themes/azeny.yaml new file mode 100644 index 00000000..4fa6265a --- /dev/null +++ b/themes/azeny.yaml @@ -0,0 +1,49 @@ +name: "Azeny" +source: + marketplace_id: "Azeny.azeny" + version: "0.1.11" + installs: 684 + author: "Azeny" + repo: "https://github.com/joaopedroaats/azeny-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Azeny.azeny" +colors: + bg: "#21222C" + fg: "#FFFFFF" + black: "#1C1E26" + red: "#FF5555" + green: "#61F0FF" + yellow: "#FFFC59" + blue: "#BD93F9" + magenta: "#9951E8" + cyan: "#50F2A7" + white: "#FFFFFF" + brightBlack: "#4D5980" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 280 + contrast: + fg: 105.4 + black: 0 + red: 41.9 + green: 83.7 + yellow: 99.1 + blue: 52.1 + magenta: 28.7 + cyan: 80.3 + white: 105.4 + brightBlack: 15.7 + brightRed: 47.3 + brightGreen: 87.5 + brightYellow: 102 + brightBlue: 64.6 + brightMagenta: 61.1 + brightCyan: 95.3 + brightWhite: 105.4 diff --git a/themes/azerite-dark-soft.yaml b/themes/azerite-dark-soft.yaml new file mode 100644 index 00000000..11a9d6fe --- /dev/null +++ b/themes/azerite-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Azerite Dark Soft" +source: + marketplace_id: "wistb.azerite-dark" + version: "0.0.7" + installs: 248 + author: "wistb" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=wistb.azerite-dark" +colors: + bg: "#171B24" + fg: "#AEBBEA" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#828AFF" + magenta: "#C792EA" + cyan: "#98C2D2" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 266 + contrast: + fg: 65.1 + black: 26 + red: 43.5 + green: 65.4 + yellow: 78.5 + blue: 44 + magenta: 53.3 + cyan: 64.5 + white: 106.4 + brightBlack: 26 + brightRed: 43.5 + brightGreen: 83.7 + brightYellow: 78.5 + brightBlue: 55.5 + brightMagenta: 53.3 + brightCyan: 77.8 + brightWhite: 106.4 diff --git a/themes/azerite-dark.yaml b/themes/azerite-dark.yaml new file mode 100644 index 00000000..813015bb --- /dev/null +++ b/themes/azerite-dark.yaml @@ -0,0 +1,49 @@ +name: "Azerite Dark" +source: + marketplace_id: "wistb.azerite-dark" + version: "0.0.7" + installs: 248 + author: "wistb" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=wistb.azerite-dark" +colors: + bg: "#0B0D14" + fg: "#AEBBEA" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#828AFF" + magenta: "#C792EA" + cyan: "#98C2D2" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 272 + contrast: + fg: 66.2 + black: 27.2 + red: 44.7 + green: 66.5 + yellow: 79.7 + blue: 45.2 + magenta: 54.5 + cyan: 65.7 + white: 107.6 + brightBlack: 27.2 + brightRed: 44.7 + brightGreen: 84.9 + brightYellow: 79.7 + brightBlue: 56.6 + brightMagenta: 54.5 + brightCyan: 79 + brightWhite: 107.6 diff --git a/themes/azul.yaml b/themes/azul.yaml new file mode 100644 index 00000000..e1ea25e6 --- /dev/null +++ b/themes/azul.yaml @@ -0,0 +1,49 @@ +name: "Azul" +source: + marketplace_id: "YesCode.arcobow" + version: "0.0.3" + installs: 232 + author: "YesCode" + repo: "https://github.com/yesomac/Arcobow" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.arcobow" +colors: + bg: "#31211D" + fg: "#DDDDDD" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#986ABE" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: 35 + contrast: + fg: 83.1 + black: 0 + red: 40.1 + green: 59.1 + yellow: 71.1 + blue: 80.9 + magenta: 17.6 + cyan: 47.5 + white: 45.3 + brightBlack: 16.7 + brightRed: 40.1 + brightGreen: 30.9 + brightYellow: 77.8 + brightBlue: 16.8 + brightMagenta: 17.6 + brightCyan: 47.5 + brightWhite: 96.9 diff --git a/themes/azure-contrast.yaml b/themes/azure-contrast.yaml new file mode 100644 index 00000000..7d5ec157 --- /dev/null +++ b/themes/azure-contrast.yaml @@ -0,0 +1,49 @@ +name: "azure-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#040507" + fg: "#FFFFFF" + black: "#0D1117" + red: "#BA0E2E" + green: "#6AB0A3" + yellow: "#52708B" + blue: "#508AAA" + magenta: "#508AAA" + cyan: "#6AB0A3" + white: "#FFFFFF" + brightBlack: "#293348" + brightRed: "#F03E5F" + brightGreen: "#ADD3CC" + brightYellow: "#89A3BA" + brightBlue: "#94B8CC" + brightMagenta: "#94B8CC" + brightCyan: "#ADD3CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 21.5 + green: 52.7 + yellow: 26 + blue: 36.4 + magenta: 36.4 + cyan: 52.7 + white: 107.9 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 75.2 + brightYellow: 50.8 + brightBlue: 61.1 + brightMagenta: 61.1 + brightCyan: 75.2 + brightWhite: 107.9 diff --git a/themes/azure-dark-teal.yaml b/themes/azure-dark-teal.yaml new file mode 100644 index 00000000..a96fa1aa --- /dev/null +++ b/themes/azure-dark-teal.yaml @@ -0,0 +1,49 @@ +name: "Azure-Dark-Teal" +source: + marketplace_id: "Diamo-Bachar.azure-teal" + version: "0.0.1" + installs: 1062 + author: "Diamo Bachar" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Diamo-Bachar.azure-teal" +colors: + bg: "#3B3B3B" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 99.7 + black: 8 + red: 19.5 + green: 45.8 + yellow: 78.4 + blue: 20.2 + magenta: 22.6 + cyan: 40.4 + white: 82.8 + brightBlack: 14.8 + brightRed: 31.4 + brightGreen: 56.3 + brightYellow: 88.4 + brightBlue: 32.8 + brightMagenta: 38.2 + brightCyan: 48.2 + brightWhite: 82.8 diff --git a/themes/azure-iris-dark.yaml b/themes/azure-iris-dark.yaml new file mode 100644 index 00000000..682ca0f1 --- /dev/null +++ b/themes/azure-iris-dark.yaml @@ -0,0 +1,49 @@ +name: "Azure Iris Dark" +source: + marketplace_id: "Codetown-3.azure-iris-theme" + version: "0.0.39" + installs: 109 + author: "Lielisk" + repo: "https://github.com/your-username/azure-iris-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Codetown-3.azure-iris-theme" +colors: + bg: "#0F1419" + fg: "#E0E0E0" + black: "#000000" + red: "#F44336" + green: "#4CAF50" + yellow: "#FF9800" + blue: "#3B6CF6" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#E0E0E0" + brightBlack: "#424242" + brightRed: "#F44336" + brightGreen: "#4CAF50" + brightYellow: "#FFEB3B" + brightBlue: "#3B6CF6" + brightMagenta: "#E91E63" + brightCyan: "#00BCD4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 249 + contrast: + fg: 87.2 + black: 0 + red: 38 + green: 47.9 + yellow: 59.7 + blue: 30.3 + magenta: 33 + cyan: 56.8 + white: 87.2 + brightBlack: 8.4 + brightRed: 38 + brightGreen: 47.9 + brightYellow: 92.7 + brightBlue: 30.3 + brightMagenta: 33 + brightCyan: 56.8 + brightWhite: 107.2 diff --git a/themes/azure-iris-light.yaml b/themes/azure-iris-light.yaml new file mode 100644 index 00000000..62ae899d --- /dev/null +++ b/themes/azure-iris-light.yaml @@ -0,0 +1,49 @@ +name: "Azure Iris Light" +source: + marketplace_id: "Codetown-3.azure-iris-theme" + version: "0.0.39" + installs: 109 + author: "Lielisk" + repo: "https://github.com/your-username/azure-iris-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Codetown-3.azure-iris-theme" +colors: + bg: "#FFFFFF" + fg: "#424242" + black: "#000000" + red: "#F44336" + green: "#4CAF50" + yellow: "#FF9800" + blue: "#3B6CF6" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#424242" + brightBlack: "#424242" + brightRed: "#F44336" + brightGreen: "#4CAF50" + brightYellow: "#FFEB3B" + brightBlue: "#3B6CF6" + brightMagenta: "#E91E63" + brightCyan: "#00BCD4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 93.4 + black: 106 + red: 63 + green: 53.3 + yellow: 41.8 + blue: 70.7 + magenta: 68 + cyan: 44.6 + white: 93.4 + brightBlack: 93.4 + brightRed: 63 + brightGreen: 53.3 + brightYellow: 10.7 + brightBlue: 70.7 + brightMagenta: 68 + brightCyan: 44.6 + brightWhite: 0 diff --git a/themes/azure-light.yaml b/themes/azure-light.yaml new file mode 100644 index 00000000..8ead40e6 --- /dev/null +++ b/themes/azure-light.yaml @@ -0,0 +1,49 @@ +name: "azure-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#6AB0A3" + yellow: "#8291AD" + blue: "#508AAA" + magenta: "#508AAA" + cyan: "#6AB0A3" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#ADD3CC" + brightYellow: "#C0C7D5" + brightBlue: "#94B8CC" + brightMagenta: "#94B8CC" + brightCyan: "#ADD3CC" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 49.2 + yellow: 59 + blue: 65.2 + magenta: 65.2 + cyan: 49.2 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 27.7 + brightYellow: 30.3 + brightBlue: 41.1 + brightMagenta: 41.1 + brightCyan: 27.7 + brightWhite: 71.1 diff --git a/themes/azure-noir.yaml b/themes/azure-noir.yaml new file mode 100644 index 00000000..cb0a3a54 --- /dev/null +++ b/themes/azure-noir.yaml @@ -0,0 +1,49 @@ +name: "Azure Noir" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 80 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" +colors: + bg: "#0A0F1F" + fg: "#DCEFFF" + black: "#101423" + red: "#FF6E6E" + green: "#B4FF97" + yellow: "#FFD56E" + blue: "#78DCE8" + magenta: "#BE8FFF" + cyan: "#5FEFC4" + white: "#E2F3F1" + brightBlack: "#4F5B6E" + brightRed: "#FF7A7A" + brightGreen: "#C4FFB4" + brightYellow: "#FFEB9C" + brightBlue: "#A5CCFF" + brightMagenta: "#D4A8FF" + brightCyan: "#8FFFF4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 269 + contrast: + fg: 95.3 + black: 0 + red: 49.4 + green: 94.8 + yellow: 83.7 + blue: 76 + magenta: 53.5 + cyan: 82.4 + white: 97.2 + brightBlack: 17.7 + brightRed: 52.6 + brightGreen: 97.2 + brightYellow: 94.4 + brightBlue: 73.5 + brightMagenta: 64.9 + brightCyan: 95.2 + brightWhite: 107.4 diff --git a/themes/azure.yaml b/themes/azure.yaml new file mode 100644 index 00000000..882a3cc2 --- /dev/null +++ b/themes/azure.yaml @@ -0,0 +1,49 @@ +name: "azure" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#181D26" + fg: "#FFFFFF" + black: "#222936" + red: "#BA0E2E" + green: "#6AB0A3" + yellow: "#52708B" + blue: "#508AAA" + magenta: "#508AAA" + cyan: "#6AB0A3" + white: "#FFFFFF" + brightBlack: "#3F4D64" + brightRed: "#F03E5F" + brightGreen: "#ADD3CC" + brightYellow: "#89A3BA" + brightBlue: "#94B8CC" + brightMagenta: "#94B8CC" + brightCyan: "#ADD3CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 106.2 + black: 0 + red: 19.8 + green: 51 + yellow: 24.4 + blue: 34.8 + magenta: 34.8 + cyan: 51 + white: 106.2 + brightBlack: 11.2 + brightRed: 36.1 + brightGreen: 73.5 + brightYellow: 49.1 + brightBlue: 59.4 + brightMagenta: 59.4 + brightCyan: 73.5 + brightWhite: 106.2 diff --git a/themes/b-nt.yaml b/themes/b-nt.yaml new file mode 100644 index 00000000..57239595 --- /dev/null +++ b/themes/b-nt.yaml @@ -0,0 +1,49 @@ +name: "B'nT" +source: + marketplace_id: "GD-alt.black--n-turquoise" + version: "1.0.0" + installs: 1950 + author: "GD-alt" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GD-alt.black--n-turquoise" +colors: + bg: "#000000" + fg: "#D1D1D1" + black: "#262626" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/b150-dark.yaml b/themes/b150-dark.yaml new file mode 100644 index 00000000..9a51e9fe --- /dev/null +++ b/themes/b150-dark.yaml @@ -0,0 +1,49 @@ +name: "B150 Dark" +source: + marketplace_id: "B150.b150-theme" + version: "1.0.0" + installs: 16 + author: "B150" + repo: "https://github.com/b150/b150-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=B150.b150-theme" +colors: + bg: "#121212" + fg: "#E0E0E0" + black: "#1E1E1E" + red: "#F87171" + green: "#4BD395" + yellow: "#D4A52E" + blue: "#5C7CFF" + magenta: "#A78BFA" + cyan: "#67D4E2" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF8A70" + brightGreen: "#6DE4B0" + brightYellow: "#E6C54D" + brightBlue: "#7D9AFF" + brightMagenta: "#C4A8FF" + brightCyan: "#8DE4EF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 48.5 + green: 66.1 + yellow: 56.8 + blue: 37.6 + magenta: 48.7 + cyan: 70.9 + white: 87.3 + brightBlack: 22.5 + brightRed: 56.5 + brightGreen: 76.7 + brightYellow: 72.4 + brightBlue: 50 + brightMagenta: 62.6 + brightCyan: 81.4 + brightWhite: 107.3 diff --git a/themes/b150-light.yaml b/themes/b150-light.yaml new file mode 100644 index 00000000..ffffb1ed --- /dev/null +++ b/themes/b150-light.yaml @@ -0,0 +1,49 @@ +name: "B150 Light" +source: + marketplace_id: "B150.b150-theme" + version: "1.0.0" + installs: 16 + author: "B150" + repo: "https://github.com/b150/b150-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=B150.b150-theme" +colors: + bg: "#F2EFE9" + fg: "#1A1A1A" + black: "#1A1A1A" + red: "#E25F59" + green: "#769447" + yellow: "#B38600" + blue: "#59A0E2" + magenta: "#A259E2" + cyan: "#4DB8C7" + white: "#F2EFE9" + brightBlack: "#999999" + brightRed: "#FA725A" + brightGreen: "#8AAB5A" + brightYellow: "#C99B00" + brightBlue: "#6DB0ED" + brightMagenta: "#B870ED" + brightCyan: "#5CC9D9" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 94.9 + black: 94.9 + red: 52.4 + green: 52.5 + yellow: 50.9 + blue: 44 + magenta: 58.6 + cyan: 36.4 + white: 0 + brightBlack: 45.2 + brightRed: 43.2 + brightGreen: 41.5 + brightYellow: 40.6 + brightBlue: 36.1 + brightMagenta: 49.4 + brightCyan: 27.7 + brightWhite: 8.1 diff --git a/themes/b2b-edge-light.yaml b/themes/b2b-edge-light.yaml new file mode 100644 index 00000000..95617e97 --- /dev/null +++ b/themes/b2b-edge-light.yaml @@ -0,0 +1,49 @@ +name: "B2B Edge - Light" +source: + marketplace_id: "B2BEdge.b2b-edge-light" + version: "0.1.2" + installs: 185 + author: "B2B Edge" + repo: "https://github.com/b2bedge/b2bedge-theme-light" + url: "https://marketplace.visualstudio.com/items?itemName=B2BEdge.b2b-edge-light" +colors: + bg: "#EBEBEB" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#E6E6E6" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 94.2 + black: 94.2 + red: 62.1 + green: 37.4 + yellow: 46.1 + blue: 74.2 + magenta: 62.7 + cyan: 48.7 + white: 0 + brightBlack: 66.9 + brightRed: 62.1 + brightGreen: 29.1 + brightYellow: 29.1 + brightBlue: 74.2 + brightMagenta: 62.7 + brightCyan: 48.7 + brightWhite: 36.6 diff --git a/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml new file mode 100644 index 00000000..c4c577ab --- /dev/null +++ b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml @@ -0,0 +1,49 @@ +name: "B9F36BCF530F3D6B5C9CF39D2E260A99 (Dark)" +source: + marketplace_id: "shahabkhalvati.b9f36bcf530f3d6b5c9cf39d2e260a99" + version: "0.1.6" + installs: 255 + author: "Shahab Khalvati" + repo: "https://github.com/shahabkhalvati/b9f36bcf530f3d6b5c9cf39d2e260a99" + url: "https://marketplace.visualstudio.com/items?itemName=shahabkhalvati.b9f36bcf530f3d6b5c9cf39d2e260a99" +colors: + bg: "#191C24" + fg: "#A9A9A9" + black: "#191C24" + red: "#A10502" + green: "#24A159" + yellow: "#F2A127" + blue: "#638BB3" + magenta: "#B381B3" + cyan: "#1BA39C" + white: "#939393" + brightBlack: "#7A7A7A" + brightRed: "#E74C3C" + brightGreen: "#24A159" + brightYellow: "#F2A127" + brightBlue: "#638BB3" + brightMagenta: "#B381B3" + brightCyan: "#1BA39C" + brightWhite: "#D2D7D3" +meta: + mode: "dark" + accent: "orange" + hue: 269 + contrast: + fg: 54.1 + black: 0 + red: 14.3 + green: 39.9 + yellow: 59.4 + blue: 36.8 + magenta: 41.9 + cyan: 42.6 + white: 42.5 + brightBlack: 30.4 + brightRed: 35.5 + brightGreen: 39.9 + brightYellow: 59.4 + brightBlue: 36.8 + brightMagenta: 41.9 + brightCyan: 42.6 + brightWhite: 79.9 diff --git a/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml new file mode 100644 index 00000000..aff4c6a6 --- /dev/null +++ b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml @@ -0,0 +1,49 @@ +name: "B9F36BCF530F3D6B5C9CF39D2E260A99 (Light)" +source: + marketplace_id: "shahabkhalvati.b9f36bcf530f3d6b5c9cf39d2e260a99" + version: "0.1.6" + installs: 255 + author: "Shahab Khalvati" + repo: "https://github.com/shahabkhalvati/b9f36bcf530f3d6b5c9cf39d2e260a99" + url: "https://marketplace.visualstudio.com/items?itemName=shahabkhalvati.b9f36bcf530f3d6b5c9cf39d2e260a99" +colors: + bg: "#F8F8F7" + fg: "#7E7E7E" + black: "#3E3E3E" + red: "#F15152" + green: "#1B7742" + yellow: "#B8860B" + blue: "#1460AA" + magenta: "#8E44AD" + cyan: "#007A7C" + white: "#EBEBEA" + brightBlack: "#7A7A7A" + brightRed: "#F15152" + brightGreen: "#1B7742" + brightYellow: "#B8860B" + brightBlue: "#1460AA" + brightMagenta: "#8E44AD" + brightCyan: "#007A7C" + brightWhite: "#F8F8F7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 63.6 + black: 90.6 + red: 57 + green: 73.3 + yellow: 55.4 + blue: 77 + magenta: 74.6 + cyan: 70.7 + white: 0 + brightBlack: 65.5 + brightRed: 57 + brightGreen: 73.3 + brightYellow: 55.4 + brightBlue: 77 + brightMagenta: 74.6 + brightCyan: 70.7 + brightWhite: 0 diff --git a/themes/backspace-dark-glass.yaml b/themes/backspace-dark-glass.yaml new file mode 100644 index 00000000..03a61a0a --- /dev/null +++ b/themes/backspace-dark-glass.yaml @@ -0,0 +1,49 @@ +name: "Backspace Dark Glass" +source: + marketplace_id: "SamiurRahmanMukul.backspace-theme" + version: "0.2.0" + installs: 289 + author: "SamiurRahmanMukul" + repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" +colors: + bg: "#0F0F0F" + fg: "#E8E6E3" + black: "#141414" + red: "#E6622E" + green: "#B3B3B3" + yellow: "#F2F2F2" + blue: "#4D4D4D" + magenta: "#E6622E" + cyan: "#B3B3B3" + white: "#F2F2F2" + brightBlack: "#2E2E2E" + brightRed: "#E6622E" + brightGreen: "#B3B3B3" + brightYellow: "#F2F2F2" + brightBlue: "#4D4D4D" + brightMagenta: "#E6622E" + brightCyan: "#B3B3B3" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.4 + black: 0 + red: 40.5 + green: 60.8 + yellow: 99 + blue: 12.7 + magenta: 40.5 + cyan: 60.8 + white: 99 + brightBlack: 0 + brightRed: 40.5 + brightGreen: 60.8 + brightYellow: 99 + brightBlue: 12.7 + brightMagenta: 40.5 + brightCyan: 60.8 + brightWhite: 99 diff --git a/themes/backspace-dark-vibe-coder.yaml b/themes/backspace-dark-vibe-coder.yaml new file mode 100644 index 00000000..a0786bd9 --- /dev/null +++ b/themes/backspace-dark-vibe-coder.yaml @@ -0,0 +1,49 @@ +name: "Backspace Dark Vibe Coder" +source: + marketplace_id: "SamiurRahmanMukul.backspace-theme" + version: "0.2.0" + installs: 289 + author: "SamiurRahmanMukul" + repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" +colors: + bg: "#1A0F2A" + fg: "#E8E6E3" + black: "#12041F" + red: "#FF7A3D" + green: "#8CFFCB" + yellow: "#FFD27F" + blue: "#6EF3FF" + magenta: "#FF5EDB" + cyan: "#9FE4FF" + white: "#FFFFFF" + brightBlack: "#12041F" + brightRed: "#FF7A3D" + brightGreen: "#8CFFCB" + brightYellow: "#FFD27F" + brightBlue: "#6EF3FF" + brightMagenta: "#FF5EDB" + brightCyan: "#9FE4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 300 + contrast: + fg: 90.9 + black: 0 + red: 51.1 + green: 92.9 + yellow: 82.4 + blue: 87.4 + magenta: 50.1 + cyan: 83.4 + white: 107 + brightBlack: 0 + brightRed: 51.1 + brightGreen: 92.9 + brightYellow: 82.4 + brightBlue: 87.4 + brightMagenta: 50.1 + brightCyan: 83.4 + brightWhite: 107 diff --git a/themes/backspace-dark-winter.yaml b/themes/backspace-dark-winter.yaml new file mode 100644 index 00000000..956126a0 --- /dev/null +++ b/themes/backspace-dark-winter.yaml @@ -0,0 +1,49 @@ +name: "Backspace Dark Winter" +source: + marketplace_id: "SamiurRahmanMukul.backspace-theme" + version: "0.2.0" + installs: 289 + author: "SamiurRahmanMukul" + repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" +colors: + bg: "#0B1420" + fg: "#E8E6E3" + black: "#0C1726" + red: "#FF7A7D" + green: "#7BD5C7" + yellow: "#F7D38A" + blue: "#FF7A3D" + magenta: "#DCC2FF" + cyan: "#7FE7FF" + white: "#F2FAFF" + brightBlack: "#0C1726" + brightRed: "#FF7A7D" + brightGreen: "#7BD5C7" + brightYellow: "#F7D38A" + brightBlue: "#FF7A3D" + brightMagenta: "#DCC2FF" + brightCyan: "#7FE7FF" + brightWhite: "#F2FAFF" +meta: + mode: "dark" + accent: "orange" + hue: 256 + contrast: + fg: 91.1 + black: 0 + red: 52.4 + green: 71.1 + yellow: 81.9 + blue: 51.2 + magenta: 75.6 + cyan: 82.6 + white: 103 + brightBlack: 0 + brightRed: 52.4 + brightGreen: 71.1 + brightYellow: 81.9 + brightBlue: 51.2 + brightMagenta: 75.6 + brightCyan: 82.6 + brightWhite: 103 diff --git a/themes/backspace-dark.yaml b/themes/backspace-dark.yaml new file mode 100644 index 00000000..b825bdd2 --- /dev/null +++ b/themes/backspace-dark.yaml @@ -0,0 +1,49 @@ +name: "Backspace Dark" +source: + marketplace_id: "SamiurRahmanMukul.backspace-theme" + version: "0.2.0" + installs: 289 + author: "SamiurRahmanMukul" + repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" +colors: + bg: "#161616" + fg: "#E8E6E3" + black: "#141414" + red: "#E6622E" + green: "#4D4D4D" + yellow: "#B3B3B3" + blue: "#E6622E" + magenta: "#F2F2F2" + cyan: "#2E2E2E" + white: "#F2F2F2" + brightBlack: "#141414" + brightRed: "#E6622E" + brightGreen: "#4D4D4D" + brightYellow: "#B3B3B3" + brightBlue: "#E6622E" + brightMagenta: "#F2F2F2" + brightCyan: "#2E2E2E" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 90.9 + black: 0 + red: 39.9 + green: 12.2 + yellow: 60.3 + blue: 39.9 + magenta: 98.4 + cyan: 0 + white: 98.4 + brightBlack: 0 + brightRed: 39.9 + brightGreen: 12.2 + brightYellow: 60.3 + brightBlue: 39.9 + brightMagenta: 98.4 + brightCyan: 0 + brightWhite: 98.4 diff --git a/themes/backspace-light.yaml b/themes/backspace-light.yaml new file mode 100644 index 00000000..fd089bfb --- /dev/null +++ b/themes/backspace-light.yaml @@ -0,0 +1,49 @@ +name: "Backspace Light" +source: + marketplace_id: "SamiurRahmanMukul.backspace-theme" + version: "0.2.0" + installs: 289 + author: "SamiurRahmanMukul" + repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" +colors: + bg: "#F8F6F3" + fg: "#2D2A26" + black: "#000000" + red: "#FC4A1A" + green: "#595959" + yellow: "#FC4A1A" + blue: "#666666" + magenta: "#A3A3A3" + cyan: "#595959" + white: "#F2F2F2" + brightBlack: "#666666" + brightRed: "#FC4A1A" + brightGreen: "#595959" + brightYellow: "#FC4A1A" + brightBlue: "#666666" + brightMagenta: "#A3A3A3" + brightCyan: "#595959" + brightWhite: "#F2F2F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.8 + black: 100.8 + red: 55.1 + green: 79 + yellow: 55.1 + blue: 73.5 + magenta: 44.2 + cyan: 79 + white: 0 + brightBlack: 73.5 + brightRed: 55.1 + brightGreen: 79 + brightYellow: 55.1 + brightBlue: 73.5 + brightMagenta: 44.2 + brightCyan: 79 + brightWhite: 0 diff --git a/themes/baculum-color-lightup-comment.yaml b/themes/baculum-color-lightup-comment.yaml new file mode 100644 index 00000000..c086a497 --- /dev/null +++ b/themes/baculum-color-lightup-comment.yaml @@ -0,0 +1,49 @@ +name: "Baculum Color Lightup Comment" +source: + marketplace_id: "oneplus1000.baculum-color" + version: "0.0.27" + installs: 144 + author: "oneplus1000" + repo: "https://github.com/oneplus1000/baculum-color" + url: "https://marketplace.visualstudio.com/items?itemName=oneplus1000.baculum-color" +colors: + bg: "#272821" + fg: "#D4D4D4" + black: "#272821" + red: "#FC4384" + green: "#98E342" + yellow: "#E6DB74" + blue: "#00A7AA" + magenta: "#FFB1F2" + cyan: "#37E5E7" + white: "#D4D4D4" + brightBlack: "#555555" + brightRed: "#FC4384" + brightGreen: "#98E342" + brightYellow: "#E6DB74" + brightBlue: "#00A7AA" + brightMagenta: "#FFB1F2" + brightCyan: "#37E5E7" + brightWhite: "#F1F1EF" +meta: + mode: "dark" + accent: "red" + hue: 114 + contrast: + fg: 77.2 + black: 0 + red: 38.9 + green: 74.1 + yellow: 79.8 + blue: 43 + magenta: 71.4 + cyan: 74.9 + white: 77.2 + brightBlack: 12.8 + brightRed: 38.9 + brightGreen: 74.1 + brightYellow: 79.8 + brightBlue: 43 + brightMagenta: 71.4 + brightCyan: 74.9 + brightWhite: 95.3 diff --git a/themes/baculum-color-minimal-2.yaml b/themes/baculum-color-minimal-2.yaml new file mode 100644 index 00000000..f9e55c6b --- /dev/null +++ b/themes/baculum-color-minimal-2.yaml @@ -0,0 +1,49 @@ +name: "Baculum Color Minimal 2" +source: + marketplace_id: "oneplus1000.baculum-color" + version: "0.0.27" + installs: 144 + author: "oneplus1000" + repo: "https://github.com/oneplus1000/baculum-color" + url: "https://marketplace.visualstudio.com/items?itemName=oneplus1000.baculum-color" +colors: + bg: "#222328" + fg: "#D4D4D4" + black: "#222328" + red: "#FC4384" + green: "#98E342" + yellow: "#E6DB74" + blue: "#00A7AA" + magenta: "#FFB1F2" + cyan: "#37E5E7" + white: "#D4D4D4" + brightBlack: "#555555" + brightRed: "#FC4384" + brightGreen: "#98E342" + brightYellow: "#E6DB74" + brightBlue: "#00A7AA" + brightMagenta: "#FFB1F2" + brightCyan: "#37E5E7" + brightWhite: "#F1F1EF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 77.9 + black: 0 + red: 39.6 + green: 74.8 + yellow: 80.5 + blue: 43.8 + magenta: 72.1 + cyan: 75.6 + white: 77.9 + brightBlack: 13.5 + brightRed: 39.6 + brightGreen: 74.8 + brightYellow: 80.5 + brightBlue: 43.8 + brightMagenta: 72.1 + brightCyan: 75.6 + brightWhite: 96 diff --git a/themes/baculum-color-minimal-vantablack.yaml b/themes/baculum-color-minimal-vantablack.yaml new file mode 100644 index 00000000..690f288c --- /dev/null +++ b/themes/baculum-color-minimal-vantablack.yaml @@ -0,0 +1,49 @@ +name: "Baculum Color Minimal Vantablack" +source: + marketplace_id: "oneplus1000.baculum-color" + version: "0.0.27" + installs: 144 + author: "oneplus1000" + repo: "https://github.com/oneplus1000/baculum-color" + url: "https://marketplace.visualstudio.com/items?itemName=oneplus1000.baculum-color" +colors: + bg: "#020202" + fg: "#D4D4D4" + black: "#020202" + red: "#FC4384" + green: "#98E342" + yellow: "#E6DB74" + blue: "#00A7AA" + magenta: "#FFB1F2" + cyan: "#37E5E7" + white: "#D4D4D4" + brightBlack: "#555555" + brightRed: "#FC4384" + brightGreen: "#98E342" + brightYellow: "#E6DB74" + brightBlue: "#00A7AA" + brightMagenta: "#FFB1F2" + brightCyan: "#37E5E7" + brightWhite: "#F1F1EF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 42.2 + green: 77.4 + yellow: 83.1 + blue: 46.4 + magenta: 74.7 + cyan: 78.2 + white: 80.5 + brightBlack: 16.1 + brightRed: 42.2 + brightGreen: 77.4 + brightYellow: 83.1 + brightBlue: 46.4 + brightMagenta: 74.7 + brightCyan: 78.2 + brightWhite: 98.6 diff --git a/themes/baculum-dark-color.yaml b/themes/baculum-dark-color.yaml new file mode 100644 index 00000000..97ac9144 --- /dev/null +++ b/themes/baculum-dark-color.yaml @@ -0,0 +1,49 @@ +name: "Baculum Dark Color" +source: + marketplace_id: "oneplus1000.baculum-color" + version: "0.0.27" + installs: 144 + author: "oneplus1000" + repo: "https://github.com/oneplus1000/baculum-color" + url: "https://marketplace.visualstudio.com/items?itemName=oneplus1000.baculum-color" +colors: + bg: "#20211B" + fg: "#D4D4D4" + black: "#20211B" + red: "#FC4384" + green: "#98E342" + yellow: "#E6DB74" + blue: "#00A7AA" + magenta: "#FFB1F2" + cyan: "#37E5E7" + white: "#D4D4D4" + brightBlack: "#555555" + brightRed: "#FC4384" + brightGreen: "#98E342" + brightYellow: "#E6DB74" + brightBlue: "#00A7AA" + brightMagenta: "#FFB1F2" + brightCyan: "#37E5E7" + brightWhite: "#F1F1EF" +meta: + mode: "dark" + accent: "red" + hue: 115 + contrast: + fg: 78.3 + black: 0 + red: 40 + green: 75.2 + yellow: 80.9 + blue: 44.2 + magenta: 72.5 + cyan: 76 + white: 78.3 + brightBlack: 13.9 + brightRed: 40 + brightGreen: 75.2 + brightYellow: 80.9 + brightBlue: 44.2 + brightMagenta: 72.5 + brightCyan: 76 + brightWhite: 96.4 diff --git a/themes/badbird.yaml b/themes/badbird.yaml new file mode 100644 index 00000000..842460b7 --- /dev/null +++ b/themes/badbird.yaml @@ -0,0 +1,49 @@ +name: "badbird" +source: + marketplace_id: "dullptr.badbird" + version: "0.1.0" + installs: 1375 + author: "dullptr" + repo: "https://github.com/PatrickTorgerson/badbird" + url: "https://marketplace.visualstudio.com/items?itemName=dullptr.badbird" +colors: + bg: "#161317" + fg: "#D7CDBA" + black: "#1B171B" + red: "#814D3B" + green: "#626960" + yellow: "#ADA383" + blue: "#515764" + magenta: "#815F7C" + cyan: "#546768" + white: "#A59E92" + brightBlack: "#666666" + brightRed: "#AA644D" + brightGreen: "#869183" + brightYellow: "#EBDEB2" + brightBlue: "#6F788B" + brightMagenta: "#AA7DA3" + brightCyan: "#6F8A8B" + brightWhite: "#F0E8D9" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 76.1 + black: 0 + red: 17.7 + green: 22.7 + yellow: 51.8 + blue: 16.1 + magenta: 23.9 + cyan: 21.2 + white: 49.4 + brightBlack: 22.3 + brightRed: 29.8 + brightGreen: 40.7 + brightYellow: 86 + brightBlue: 30.2 + brightMagenta: 39.5 + brightCyan: 36.4 + brightWhite: 92.6 diff --git a/themes/baig.yaml b/themes/baig.yaml new file mode 100644 index 00000000..70a7565c --- /dev/null +++ b/themes/baig.yaml @@ -0,0 +1,49 @@ +name: "Baig" +source: + marketplace_id: "shohelranabaig.Baig" + version: "1.0.4" + installs: 62 + author: "shohelranabaig" + repo: "https://github.com/Shohelrana63/vscodebaigtheme" + url: "https://marketplace.visualstudio.com/items?itemName=shohelranabaig.Baig" +colors: + bg: "#2E3440" + fg: "#D4D4D4" + black: "#98A6A9" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#266EBE" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#ADADAD" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 74.4 + black: 46.6 + red: 21.6 + green: 47.9 + yellow: 80.5 + blue: 20.4 + magenta: 24.7 + cyan: 42.5 + white: 51.8 + brightBlack: 17 + brightRed: 33.5 + brightGreen: 58.5 + brightYellow: 90.6 + brightBlue: 34.9 + brightMagenta: 40.3 + brightCyan: 50.3 + brightWhite: 84.9 diff --git a/themes/baitul-hikmah-professional.yaml b/themes/baitul-hikmah-professional.yaml new file mode 100644 index 00000000..39e3e172 --- /dev/null +++ b/themes/baitul-hikmah-professional.yaml @@ -0,0 +1,49 @@ +name: "Baitul Hikmah Professional" +source: + marketplace_id: "ShahriyarHosen.baitul-hikmah-dark" + version: "3.2.6" + installs: 570 + author: "Shahriyar Hosen" + repo: "https://github.com/Shahriyar-Hosen/Baitul-Hikmah-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ShahriyarHosen.baitul-hikmah-dark" +colors: + bg: "#000014" + fg: "#EDF1FF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 98.8 + black: 0 + red: 44.6 + green: 85.1 + yellow: 79.9 + blue: 56.9 + magenta: 54.7 + cyan: 79.2 + white: 107.8 + brightBlack: 12.5 + brightRed: 44.6 + brightGreen: 85.1 + brightYellow: 79.9 + brightBlue: 56.9 + brightMagenta: 54.7 + brightCyan: 79.2 + brightWhite: 107.8 diff --git a/themes/baiyuechu.yaml b/themes/baiyuechu.yaml new file mode 100644 index 00000000..fb544450 --- /dev/null +++ b/themes/baiyuechu.yaml @@ -0,0 +1,49 @@ +name: "Baiyuechu" +source: + marketplace_id: "DongFangBaiYue.DongFangBai" + version: "4.5.6" + installs: 2 + author: "Dong Fang Bai Yue" + repo: "https://github.com/xiaowu-d3" + url: "https://marketplace.visualstudio.com/items?itemName=DongFangBaiYue.DongFangBai" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#A6ADC8" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#89DCEB" + white: "#BAC2DE" + brightBlack: "#585B70" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#89DCEB" + brightWhite: "#45475A" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 80 + black: 56.2 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 76.7 + cyan: 75.6 + white: 68.1 + brightBlack: 16.9 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 88.4 + brightBlue: 59.1 + brightMagenta: 76.7 + brightCyan: 75.6 + brightWhite: 9.3 diff --git a/themes/bakaneo.yaml b/themes/bakaneo.yaml new file mode 100644 index 00000000..a5b93943 --- /dev/null +++ b/themes/bakaneo.yaml @@ -0,0 +1,49 @@ +name: "BakaNeo" +source: + marketplace_id: "coelhomarcus.bakaneo" + version: "1.1.7" + installs: 114 + author: "Marcus Coelho" + repo: "https://github.com/coelhomarcus/bakaneo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=coelhomarcus.bakaneo" +colors: + bg: "#131313" + fg: "#FFFFFF" + black: "#333333" + red: "#88BBFF" + green: "#FFDD44" + yellow: "#88CC44" + blue: "#88BBFF" + magenta: "#88BBFF" + cyan: "#42BC7F" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#88BBFF" + brightGreen: "#FFDD44" + brightYellow: "#94A4FF" + brightBlue: "#88BBFF" + brightMagenta: "#88BBFF" + brightCyan: "#42BC7F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.2 + black: 0 + red: 63.6 + green: 86.5 + yellow: 64.5 + blue: 63.6 + magenta: 63.6 + cyan: 54.4 + white: 107.2 + brightBlack: 22.4 + brightRed: 63.6 + brightGreen: 86.5 + brightYellow: 55.6 + brightBlue: 63.6 + brightMagenta: 63.6 + brightCyan: 54.4 + brightWhite: 107.2 diff --git a/themes/balance-pink-colorblind-compassion-focus.yaml b/themes/balance-pink-colorblind-compassion-focus.yaml new file mode 100644 index 00000000..fbed4a5a --- /dev/null +++ b/themes/balance-pink-colorblind-compassion-focus.yaml @@ -0,0 +1,49 @@ +name: "Balance Pink Colorblind - Compassion & Focus" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#1A0A0F" + fg: "#E0E0E0" + black: "#263238" + red: "#EF5350" + green: "#66BB6A" + yellow: "#FFEB3B" + blue: "#42A5F5" + magenta: "#AB47BC" + cyan: "#26C6DA" + white: "#ECEFF1" + brightBlack: "#546E7A" + brightRed: "#EF5350" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#E040FB" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 1 + contrast: + fg: 87.5 + black: 0 + red: 39.9 + green: 55.2 + yellow: 92.9 + blue: 50.3 + magenta: 28.5 + cyan: 62.1 + white: 96.7 + brightBlack: 24.4 + brightRed: 39.9 + brightGreen: 82.6 + brightYellow: 102.3 + brightBlue: 41.1 + brightMagenta: 41.9 + brightCyan: 91.8 + brightWhite: 107.5 diff --git a/themes/balance-pink-compassion-focus.yaml b/themes/balance-pink-compassion-focus.yaml new file mode 100644 index 00000000..90dcc04a --- /dev/null +++ b/themes/balance-pink-compassion-focus.yaml @@ -0,0 +1,49 @@ +name: "Balance Pink - Compassion & Focus" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#1A0A0F" + fg: "#FCE4EC" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#C2185B" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "red" + hue: 1 + contrast: + fg: 93.8 + black: 0 + red: 38.3 + green: 48.1 + yellow: 92.9 + blue: 43.6 + magenta: 33.2 + cyan: 57.1 + white: 96.7 + brightBlack: 23.9 + brightRed: 43.4 + brightGreen: 82.6 + brightYellow: 102.3 + brightBlue: 41.1 + brightMagenta: 42 + brightCyan: 91.8 + brightWhite: 96.3 diff --git a/themes/balance-pink-high-contrast-compassion-focus.yaml b/themes/balance-pink-high-contrast-compassion-focus.yaml new file mode 100644 index 00000000..a5927c46 --- /dev/null +++ b/themes/balance-pink-high-contrast-compassion-focus.yaml @@ -0,0 +1,49 @@ +name: "Balance Pink High Contrast - Compassion & Focus" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0080FF" + magenta: "#FF69B4" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#808080" + brightRed: "#FF6B6B" + brightGreen: "#69FF69" + brightYellow: "#FFFF69" + brightBlue: "#69B3FF" + brightMagenta: "#FF69FF" + brightCyan: "#69FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 37.1 + magenta: 51.1 + cyan: 92.2 + white: 107.9 + brightBlack: 34.8 + brightRed: 49.1 + brightGreen: 89.2 + brightYellow: 103.3 + brightBlue: 58.8 + brightMagenta: 55.4 + brightCyan: 94.1 + brightWhite: 107.9 diff --git a/themes/balance-pink-light-compassion-focus.yaml b/themes/balance-pink-light-compassion-focus.yaml new file mode 100644 index 00000000..59c85e21 --- /dev/null +++ b/themes/balance-pink-light-compassion-focus.yaml @@ -0,0 +1,49 @@ +name: "Balance Pink Light - Compassion & Focus" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#FCE4EC" + fg: "#1A0A0F" + black: "#1A0A0F" + red: "#D32F2F" + green: "#388E3C" + yellow: "#FBC02D" + blue: "#1976D2" + magenta: "#C2185B" + cyan: "#0097A7" + white: "#F5F5F5" + brightBlack: "#616161" + brightRed: "#EF5350" + brightGreen: "#66BB6A" + brightYellow: "#FFEB3B" + brightBlue: "#42A5F5" + brightMagenta: "#EC407A" + brightCyan: "#26C6DA" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: 355 + contrast: + fg: 93 + black: 93 + red: 60.4 + green: 55.5 + yellow: 16.3 + blue: 58.9 + magenta: 65 + cyan: 49.6 + white: 0 + brightBlack: 68.5 + brightRed: 48.9 + brightGreen: 34 + brightYellow: 0 + brightBlue: 38.7 + brightMagenta: 51.4 + brightCyan: 27.3 + brightWhite: 11.6 diff --git a/themes/ballerini-theme.yaml b/themes/ballerini-theme.yaml new file mode 100644 index 00000000..f5b5fd11 --- /dev/null +++ b/themes/ballerini-theme.yaml @@ -0,0 +1,49 @@ +name: "Ballerini Theme" +source: + marketplace_id: "BalleriniServer.ballerini-theme" + version: "1.2.4" + installs: 55161 + author: "Ballerini Theme" + repo: "https://github.com/Ballerini-Server/Ballerini-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BalleriniServer.ballerini-theme" +colors: + bg: "#261C1E" + fg: "#FFF2E7" + black: "#111111" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#EFC764" + brightBlue: "#97D4D9" + brightMagenta: "#D670D6" + brightCyan: "#B3DFD3" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 5 + contrast: + fg: 98.8 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 73.6 + brightBlue: 72.3 + brightMagenta: 44.4 + brightCyan: 79.7 + brightWhite: 89.1 diff --git a/themes/bam.yaml b/themes/bam.yaml new file mode 100644 index 00000000..c226d6f6 --- /dev/null +++ b/themes/bam.yaml @@ -0,0 +1,49 @@ +name: "Bam" +source: + marketplace_id: "mark-cummins.bam-dark-theme" + version: "0.1.0" + installs: 244 + author: "Mark Cummins" + repo: "https://github.com/markcummins/Bam" + url: "https://marketplace.visualstudio.com/items?itemName=mark-cummins.bam-dark-theme" +colors: + bg: "#111111" + fg: "#FFFFFF" + black: "#111111" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 44.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.3 + cyan: 78.8 + white: 107.4 + brightBlack: 11.5 + brightRed: 44.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.3 + brightCyan: 78.8 + brightWhite: 107.4 diff --git a/themes/bamboo-green.yaml b/themes/bamboo-green.yaml new file mode 100644 index 00000000..0f1ec933 --- /dev/null +++ b/themes/bamboo-green.yaml @@ -0,0 +1,49 @@ +name: "Bamboo Green" +source: + marketplace_id: "exoad.bamboo-light-green-color-theme" + version: "0.0.5" + installs: 3990 + author: "exoad" + repo: "https://github.com/exoad/bamboo-light-green-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=exoad.bamboo-light-green-color-theme" +colors: + bg: "#E9FBCB" + fg: "#000000" + black: "#000000" + red: "#E06C75" + green: "#98C379" + yellow: "#847B00" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#555555" + brightBlack: "#666666" + brightRed: "#FF9EA6" + brightGreen: "#C6F2A6" + brightYellow: "#A39800" + brightBlue: "#99CFFB" + brightMagenta: "#ECB8FB" + brightCyan: "#8DE0EA" + brightWhite: "#757575" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 99.6 + black: 99.6 + red: 52.2 + green: 32.6 + yellow: 63.6 + blue: 39.9 + magenta: 49.2 + cyan: 40 + white: 79.5 + brightBlack: 72.3 + brightRed: 31.2 + brightGreen: 0 + brightYellow: 49.8 + brightBlue: 22.5 + brightMagenta: 21.9 + brightCyan: 17 + brightWhite: 65.6 diff --git a/themes/bamboo.yaml b/themes/bamboo.yaml new file mode 100644 index 00000000..110e3b8e --- /dev/null +++ b/themes/bamboo.yaml @@ -0,0 +1,49 @@ +name: "bamboo" +source: + marketplace_id: "TiltShift.bamboo" + version: "0.0.6" + installs: 601 + author: "Tilt Shift" + repo: "https://github.com/chrisdrackett/bamboo-vs" + url: "https://marketplace.visualstudio.com/items?itemName=TiltShift.bamboo" +colors: + bg: "#FFFFFF" + fg: "#8F8C8C" + black: "#FF0000" + red: "#FF2C6D" + green: "#98C379" + yellow: "#D19A66" + blue: "#56B6C2" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D0D0D0" + brightBlack: "#808080" + brightRed: "#E06C75" + brightGreen: "#19F9D8" + brightYellow: "#FFCC95" + brightBlue: "#56B6C2" + brightMagenta: "#FF75B5" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 60.8 + black: 64.1 + red: 61.7 + green: 39.1 + yellow: 48.3 + blue: 46.5 + magenta: 55.6 + cyan: 46.5 + white: 25 + brightBlack: 66.9 + brightRed: 58.6 + brightGreen: 16.4 + brightYellow: 22 + brightBlue: 46.5 + brightMagenta: 48.2 + brightCyan: 46.5 + brightWhite: 0 diff --git a/themes/ban-light.yaml b/themes/ban-light.yaml new file mode 100644 index 00000000..ab982283 --- /dev/null +++ b/themes/ban-light.yaml @@ -0,0 +1,49 @@ +name: "Ban Light" +source: + marketplace_id: "drujban.ban-theme" + version: "0.1.1" + installs: 62 + author: "drujban" + repo: "https://github.com/drujbanjo/ban-theme-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=drujban.ban-theme" +colors: + bg: "#E6E7ED" + fg: "#343B59" + black: "#343B58" + red: "#8C4351" + green: "#3E8076" + yellow: "#A87323" + blue: "#276F96" + magenta: "#5F43BA" + cyan: "#419185" + white: "#707280" + brightBlack: "#343B58" + brightRed: "#8C4351" + brightGreen: "#3E8076" + brightYellow: "#A87323" + brightBlue: "#276F96" + brightMagenta: "#5F43BA" + brightCyan: "#419185" + brightWhite: "#707280" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 81.3 + black: 81.3 + red: 69.5 + green: 57.8 + yellow: 53.7 + blue: 63.3 + magenta: 69.7 + cyan: 50.7 + white: 59 + brightBlack: 81.3 + brightRed: 69.5 + brightGreen: 57.8 + brightYellow: 53.7 + brightBlue: 63.3 + brightMagenta: 69.7 + brightCyan: 50.7 + brightWhite: 59 diff --git a/themes/ban-night.yaml b/themes/ban-night.yaml new file mode 100644 index 00000000..113bdece --- /dev/null +++ b/themes/ban-night.yaml @@ -0,0 +1,49 @@ +name: "Ban Night" +source: + marketplace_id: "drujban.ban-theme" + version: "0.1.1" + installs: 62 + author: "drujban" + repo: "https://github.com/drujbanjo/ban-theme-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=drujban.ban-theme" +colors: + bg: "#191A25" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#FF9E64" + blue: "#7AA2F7" + magenta: "#919FF1" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#FF9E64" + brightBlue: "#7AA2F7" + brightMagenta: "#919FF1" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 59.5 + black: 0 + red: 49.5 + green: 72.3 + yellow: 61.6 + blue: 51.3 + magenta: 51.7 + cyan: 70.6 + white: 32.2 + brightBlack: 0 + brightRed: 49.5 + brightGreen: 72.3 + brightYellow: 61.6 + brightBlue: 51.3 + brightMagenta: 51.7 + brightCyan: 70.6 + brightWhite: 59.1 diff --git a/themes/ban-typhoon.yaml b/themes/ban-typhoon.yaml new file mode 100644 index 00000000..72d6c7d9 --- /dev/null +++ b/themes/ban-typhoon.yaml @@ -0,0 +1,49 @@ +name: "Ban Typhoon" +source: + marketplace_id: "drujban.ban-theme" + version: "0.1.1" + installs: 62 + author: "drujban" + repo: "https://github.com/drujbanjo/ban-theme-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=drujban.ban-theme" +colors: + bg: "#1A1D2B" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#FFA46E" + blue: "#7AA2F7" + magenta: "#919FF1" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#FFA46E" + brightBlue: "#7AA2F7" + brightMagenta: "#919FF1" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 59.1 + black: 0 + red: 49.1 + green: 72 + yellow: 63.5 + blue: 50.9 + magenta: 51.3 + cyan: 70.2 + white: 31.8 + brightBlack: 0 + brightRed: 49.1 + brightGreen: 72 + brightYellow: 63.5 + brightBlue: 50.9 + brightMagenta: 51.3 + brightCyan: 70.2 + brightWhite: 58.7 diff --git a/themes/bananalight.yaml b/themes/bananalight.yaml new file mode 100644 index 00000000..013750a1 --- /dev/null +++ b/themes/bananalight.yaml @@ -0,0 +1,49 @@ +name: "bananalight" +source: + marketplace_id: "bananaspy.bananaspy" + version: "0.0.4" + installs: 169 + author: "Vitaliy Starov" + repo: "https://github.com/bananaspy/bananalight" + url: "https://marketplace.visualstudio.com/items?itemName=bananaspy.bananaspy" +colors: + bg: "#FFFFFF" + fg: "#410E0E" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 102.6 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/bandmeup.yaml b/themes/bandmeup.yaml new file mode 100644 index 00000000..2301ddb0 --- /dev/null +++ b/themes/bandmeup.yaml @@ -0,0 +1,49 @@ +name: "BandMeUp" +source: + marketplace_id: "eyebonk.bandmeup" + version: "1.0.0" + installs: 10 + author: "eyebonk" + repo: "https://github.com/eyebonk/vscode-Theme-BandMeUp" + url: "https://marketplace.visualstudio.com/items?itemName=eyebonk.bandmeup" +colors: + bg: "#181818" + fg: "#AAAAAA" + black: "#000000" + red: "#DB5355" + green: "#7EEF8C" + yellow: "#FEF376" + blue: "#5599FF" + magenta: "#D90E80" + cyan: "#07C1D8" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FE6D6F" + brightGreen: "#B7FFC0" + brightYellow: "#FFFABF" + brightBlue: "#66A3FF" + brightMagenta: "#E64CA2" + brightCyan: "#0DE4FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 55.1 + black: 0 + red: 34.9 + green: 81.6 + yellow: 96.5 + blue: 46.5 + magenta: 29.2 + cyan: 58.8 + white: 89.9 + brightBlack: 21.9 + brightRed: 48.3 + brightGreen: 95.7 + brightYellow: 101.8 + brightBlue: 51.2 + brightMagenta: 38.5 + brightCyan: 77.4 + brightWhite: 89.9 diff --git a/themes/banner-contrast.yaml b/themes/banner-contrast.yaml new file mode 100644 index 00000000..82b9d5d6 --- /dev/null +++ b/themes/banner-contrast.yaml @@ -0,0 +1,49 @@ +name: "banner-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0B0A0F" + fg: "#C5BEDD" + black: "#16141E" + red: "#BA0E2E" + green: "#7CD827" + yellow: "#A25CDB" + blue: "#FFFFFF" + magenta: "#A6EF61" + cyan: "#A6EF61" + white: "#D4CFE6" + brightBlack: "#38334C" + brightRed: "#F03E5F" + brightGreen: "#B0E87D" + brightYellow: "#D2B0ED" + brightBlue: "#FFFFFF" + brightMagenta: "#DAF8BE" + brightCyan: "#DAF8BE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 294 + contrast: + fg: 69.6 + black: 0 + red: 21.3 + green: 69.6 + yellow: 33.6 + blue: 107.7 + magenta: 84.7 + cyan: 84.7 + white: 79 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 82.7 + brightYellow: 66.8 + brightBlue: 107.7 + brightMagenta: 96.8 + brightCyan: 96.8 + brightWhite: 107.7 diff --git a/themes/banner-light.yaml b/themes/banner-light.yaml new file mode 100644 index 00000000..05a25022 --- /dev/null +++ b/themes/banner-light.yaml @@ -0,0 +1,49 @@ +name: "banner-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#373247" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#7CD827" + yellow: "#A25CDB" + blue: "#373247" + magenta: "#7CD827" + cyan: "#7CD827" + white: "#433D56" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#B0E87D" + brightYellow: "#D2B0ED" + brightBlue: "#655C83" + brightMagenta: "#B0E87D" + brightCyan: "#B0E87D" + brightWhite: "#655C83" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 98 + black: 0 + red: 80.3 + green: 32.9 + yellow: 67.9 + blue: 98 + magenta: 32.9 + cyan: 32.9 + white: 93.9 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 20.5 + brightYellow: 35.6 + brightBlue: 80.7 + brightMagenta: 20.5 + brightCyan: 20.5 + brightWhite: 80.7 diff --git a/themes/banner.yaml b/themes/banner.yaml new file mode 100644 index 00000000..bcad1417 --- /dev/null +++ b/themes/banner.yaml @@ -0,0 +1,49 @@ +name: "banner" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#1D1A26" + fg: "#C5BEDD" + black: "#292435" + red: "#BA0E2E" + green: "#7CD827" + yellow: "#A25CDB" + blue: "#FFFFFF" + magenta: "#A6EF61" + cyan: "#A6EF61" + white: "#D4CFE6" + brightBlack: "#4B4363" + brightRed: "#F03E5F" + brightGreen: "#B0E87D" + brightYellow: "#D2B0ED" + brightBlue: "#FFFFFF" + brightMagenta: "#DAF8BE" + brightCyan: "#DAF8BE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 296 + contrast: + fg: 68.2 + black: 0 + red: 19.9 + green: 68.2 + yellow: 32.2 + blue: 106.3 + magenta: 83.3 + cyan: 83.3 + white: 77.6 + brightBlack: 9.6 + brightRed: 36.2 + brightGreen: 81.3 + brightYellow: 65.4 + brightBlue: 106.3 + brightMagenta: 95.4 + brightCyan: 95.4 + brightWhite: 106.3 diff --git a/themes/barbenheimer-bunker.yaml b/themes/barbenheimer-bunker.yaml new file mode 100644 index 00000000..b3419c91 --- /dev/null +++ b/themes/barbenheimer-bunker.yaml @@ -0,0 +1,49 @@ +name: "Barbenheimer Bunker" +source: + marketplace_id: "jayvicsanantonio.barbenheimer" + version: "1.0.0" + installs: 4071 + author: "Jayvic San Antonio" + repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" +colors: + bg: "#14140B" + fg: "#E9B2CF" + black: "#14140B" + red: "#F672AC" + green: "#A0E0C0" + yellow: "#F0E0B0" + blue: "#A0C0F0" + magenta: "#D4A8F9" + cyan: "#A0E0D0" + white: "#E0E0E0" + brightBlack: "#FCE5D8" + brightRed: "#F672AC" + brightGreen: "#A0E0C0" + brightYellow: "#F0E0B0" + brightBlue: "#A0C0F0" + brightMagenta: "#D4A8F9" + brightCyan: "#A0E0D0" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "red" + hue: 108 + contrast: + fg: 68.9 + black: 0 + red: 50.2 + green: 78.8 + yellow: 87.6 + blue: 66.8 + magenta: 64.3 + cyan: 79.4 + white: 87.2 + brightBlack: 93 + brightRed: 50.2 + brightGreen: 78.8 + brightYellow: 87.6 + brightBlue: 66.8 + brightMagenta: 64.3 + brightCyan: 79.4 + brightWhite: 87.2 diff --git a/themes/barbenheimer-dreamhouse.yaml b/themes/barbenheimer-dreamhouse.yaml new file mode 100644 index 00000000..ff5d5844 --- /dev/null +++ b/themes/barbenheimer-dreamhouse.yaml @@ -0,0 +1,49 @@ +name: "Barbenheimer Dreamhouse" +source: + marketplace_id: "jayvicsanantonio.barbenheimer" + version: "1.0.0" + installs: 4071 + author: "Jayvic San Antonio" + repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" +colors: + bg: "#FFF8F0" + fg: "#14140B" + black: "#302820" + red: "#F060A0" + green: "#A8D977" + yellow: "#F7D787" + blue: "#87CEFA" + magenta: "#BA55D3" + cyan: "#80CBC4" + white: "#14140B" + brightBlack: "#4A443A" + brightRed: "#DC5687" + brightGreen: "#86B465" + brightYellow: "#E0C070" + brightBlue: "#64B5D9" + brightMagenta: "#9B40B4" + brightCyan: "#609E9A" + brightWhite: "#000000" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 101.5 + black: 97.6 + red: 52.9 + green: 24.5 + yellow: 15.6 + blue: 27.1 + magenta: 62.6 + cyan: 31.5 + white: 101.5 + brightBlack: 88.7 + brightRed: 59.9 + brightGreen: 43.7 + brightYellow: 28.5 + brightBlue: 41.5 + brightMagenta: 73.4 + brightCyan: 53.8 + brightWhite: 102.4 diff --git a/themes/barbenheimer-nuclear-sunrise.yaml b/themes/barbenheimer-nuclear-sunrise.yaml new file mode 100644 index 00000000..29e7e501 --- /dev/null +++ b/themes/barbenheimer-nuclear-sunrise.yaml @@ -0,0 +1,49 @@ +name: "Barbenheimer Nuclear Sunrise" +source: + marketplace_id: "jayvicsanantonio.barbenheimer" + version: "1.0.0" + installs: 4071 + author: "Jayvic San Antonio" + repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" +colors: + bg: "#0F0F0A" + fg: "#FFFFFF" + black: "#0F0F0A" + red: "#FF69B4" + green: "#80C0A0" + yellow: "#C0C080" + blue: "#80A0C0" + magenta: "#C080C0" + cyan: "#80C0C0" + white: "#D0D0D0" + brightBlack: "#EEEEEE" + brightRed: "#FF69B4" + brightGreen: "#80C0A0" + brightYellow: "#C0C080" + brightBlue: "#80A0C0" + brightMagenta: "#C080C0" + brightCyan: "#80C0C0" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "red" + hue: 107 + contrast: + fg: 107.5 + black: 0 + red: 50.7 + green: 60.7 + yellow: 66.2 + blue: 48.8 + magenta: 45.4 + cyan: 62 + white: 77.7 + brightBlack: 96.4 + brightRed: 50.7 + brightGreen: 60.7 + brightYellow: 66.2 + brightBlue: 48.8 + brightMagenta: 45.4 + brightCyan: 62 + brightWhite: 87.5 diff --git a/themes/barbie-light.yaml b/themes/barbie-light.yaml new file mode 100644 index 00000000..98464ecc --- /dev/null +++ b/themes/barbie-light.yaml @@ -0,0 +1,49 @@ +name: "Barbie Light" +source: + marketplace_id: "LuanKisaki.barbie-light-theme" + version: "1.0.0" + installs: 3028 + author: "Luan Kisaki" + repo: "https://github.com/LuanKisaki/barbie-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LuanKisaki.barbie-light-theme" +colors: + bg: "#FFF3FD" + fg: "#6B095F" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 89.7 + black: 100.9 + red: 68.8 + green: 44.1 + yellow: 52.7 + blue: 80.9 + magenta: 69.4 + cyan: 55.4 + white: 80.8 + brightBlack: 73.6 + brightRed: 68.8 + brightGreen: 35.7 + brightYellow: 35.8 + brightBlue: 80.9 + brightMagenta: 69.4 + brightCyan: 55.4 + brightWhite: 43.3 diff --git a/themes/barbie-theme.yaml b/themes/barbie-theme.yaml new file mode 100644 index 00000000..19f69e8b --- /dev/null +++ b/themes/barbie-theme.yaml @@ -0,0 +1,49 @@ +name: "Barbie Theme" +source: + marketplace_id: "mihtoa.barbie-theme" + version: "0.0.2" + installs: 10582 + author: "Milene Toazza" + repo: "https://github.com/mihtoa/barbie-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mihtoa.barbie-theme" +colors: + bg: "#1E1E1E" + fg: "#FFCEF0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 83.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/barbie.yaml b/themes/barbie.yaml new file mode 100644 index 00000000..82c84503 --- /dev/null +++ b/themes/barbie.yaml @@ -0,0 +1,49 @@ +name: "Barbie" +source: + marketplace_id: "Miraz007.Barbie" + version: "0.0.2" + installs: 5930 + author: "Miraz" + repo: "https://github.com/PiyushYadav007/Barbie-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Miraz007.Barbie" +colors: + bg: "#FBCDFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#000000" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 324 + contrast: + fg: 85.4 + black: 85.4 + red: 53.4 + green: 28.6 + yellow: 37.3 + blue: 65.5 + magenta: 54 + cyan: 40 + white: 85.4 + brightBlack: 58.1 + brightRed: 53.4 + brightGreen: 20.3 + brightYellow: 20.3 + brightBlue: 65.5 + brightMagenta: 54 + brightCyan: 40 + brightWhite: 27.9 diff --git a/themes/barlume.yaml b/themes/barlume.yaml new file mode 100644 index 00000000..a44504fa --- /dev/null +++ b/themes/barlume.yaml @@ -0,0 +1,49 @@ +name: "barlume" +source: + marketplace_id: "gnkz.barlume" + version: "1.3.0" + installs: 279 + author: "gionkez" + repo: "https://github.com/dellarosciagiorgio/barlume" + url: "https://marketplace.visualstudio.com/items?itemName=gnkz.barlume" +colors: + bg: "#FCFCFC" + fg: "#303030" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 97.8 + black: 104.2 + red: 72.2 + green: 47.4 + yellow: 56.1 + blue: 84.3 + magenta: 72.8 + cyan: 58.8 + white: 84.1 + brightBlack: 77 + brightRed: 72.2 + brightGreen: 39.1 + brightYellow: 39.1 + brightBlue: 84.3 + brightMagenta: 72.8 + brightCyan: 58.8 + brightWhite: 46.7 diff --git a/themes/barney-pro.yaml b/themes/barney-pro.yaml new file mode 100644 index 00000000..0123bffa --- /dev/null +++ b/themes/barney-pro.yaml @@ -0,0 +1,49 @@ +name: "Barney PRO" +source: + marketplace_id: "barney-pro-one.barney-pro" + version: "0.0.1" + installs: 1280 + author: "barney-pro-one" + repo: "https://github.com/armando10rafael10/theme-barney-pro" + url: "https://marketplace.visualstudio.com/items?itemName=barney-pro-one.barney-pro" +colors: + bg: "#140E1A" + fg: "#7DF9FF" + black: "#606060" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#C2C2C2" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 307 + contrast: + fg: 91.6 + black: 20 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 69.3 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/barstrata.yaml b/themes/barstrata.yaml new file mode 100644 index 00000000..566ce838 --- /dev/null +++ b/themes/barstrata.yaml @@ -0,0 +1,49 @@ +name: "Barstrata" +source: + marketplace_id: "w3barsi.barstrata" + version: "0.1.0" + installs: 47 + author: "w3barsi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=w3barsi.barstrata" +colors: + bg: "#111319" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 79.8 + black: 0 + red: 27.1 + green: 53.3 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.4 diff --git a/themes/base-color-theme.yaml b/themes/base-color-theme.yaml new file mode 100644 index 00000000..57593c10 --- /dev/null +++ b/themes/base-color-theme.yaml @@ -0,0 +1,49 @@ +name: "base-color-theme" +source: + marketplace_id: "electricduck.elementary-theme" + version: "1.51.2" + installs: 4186 + author: "Ducky" + repo: "https://github.com/electricduck/vscode-elementary-theme" + url: "https://marketplace.visualstudio.com/items?itemName=electricduck.elementary-theme" +colors: + bg: "#FFFFFF" + fg: "#111111" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#EC0048" + cyan: "#2AA198" + white: "#94A3A5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#9BDB4D" + brightYellow: "#D48E15" + brightBlue: "#3689E6" + brightMagenta: "#D33682" + brightCyan: "#2AA198" + brightWhite: "#EEEEEE" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.4 + black: 99 + red: 70.5 + green: 59 + yellow: 59.1 + blue: 63.9 + magenta: 68.4 + cyan: 58.3 + white: 51 + brightBlack: 76.8 + brightRed: 71 + brightGreen: 29 + brightYellow: 52.6 + brightBlue: 62.9 + brightMagenta: 70.3 + brightCyan: 58.3 + brightWhite: 7.6 diff --git a/themes/base-minor-dark-hard.yaml b/themes/base-minor-dark-hard.yaml new file mode 100644 index 00000000..e818305f --- /dev/null +++ b/themes/base-minor-dark-hard.yaml @@ -0,0 +1,49 @@ +name: "Base Minor Dark Hard" +source: + marketplace_id: "adamsome.vscode-theme-base-minor" + version: "1.1.2" + installs: 213 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-base-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-base-minor" +colors: + bg: "#171717" + fg: "#E5E5E5" + black: "#000000" + red: "#FF453A" + green: "#007A75" + yellow: "#FFD60A" + blue: "#59A5DE" + magenta: "#C053D5" + cyan: "#24B0DB" + white: "#FFFFFF" + brightBlack: "#1B1B1B" + brightRed: "#EB877A" + brightGreen: "#00B3AA" + brightYellow: "#F5DDA4" + brightBlue: "#77BDEE" + brightMagenta: "#CF88DD" + brightCyan: "#6AC1DC" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 90 + black: 0 + red: 40.6 + green: 25.5 + yellow: 82.8 + blue: 49.2 + magenta: 35.3 + cyan: 51.9 + white: 106.9 + brightBlack: 0 + brightRed: 51.5 + brightGreen: 50.5 + brightYellow: 86.3 + brightBlue: 61.8 + brightMagenta: 51.1 + brightCyan: 61.7 + brightWhite: 93.2 diff --git a/themes/base-minor-dark-soft.yaml b/themes/base-minor-dark-soft.yaml new file mode 100644 index 00000000..e483b942 --- /dev/null +++ b/themes/base-minor-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Base Minor Dark Soft" +source: + marketplace_id: "adamsome.vscode-theme-base-minor" + version: "1.1.2" + installs: 213 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-base-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-base-minor" +colors: + bg: "#1E1E1E" + fg: "#E5E5E5" + black: "#000000" + red: "#FF453A" + green: "#007A75" + yellow: "#FFD60A" + blue: "#59A5DE" + magenta: "#C053D5" + cyan: "#24B0DB" + white: "#FFFFFF" + brightBlack: "#1B1B1B" + brightRed: "#EB877A" + brightGreen: "#00B3AA" + brightYellow: "#F5DDA4" + brightBlue: "#77BDEE" + brightMagenta: "#CF88DD" + brightCyan: "#6AC1DC" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.2 + black: 0 + red: 39.8 + green: 24.7 + yellow: 82 + blue: 48.3 + magenta: 34.4 + cyan: 51.1 + white: 106 + brightBlack: 0 + brightRed: 50.7 + brightGreen: 49.7 + brightYellow: 85.5 + brightBlue: 60.9 + brightMagenta: 50.3 + brightCyan: 60.9 + brightWhite: 92.4 diff --git a/themes/base-minor-soft.yaml b/themes/base-minor-soft.yaml new file mode 100644 index 00000000..45295ce4 --- /dev/null +++ b/themes/base-minor-soft.yaml @@ -0,0 +1,49 @@ +name: "Base Minor Soft" +source: + marketplace_id: "adamsome.vscode-theme-base-minor" + version: "1.1.2" + installs: 213 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-base-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-base-minor" +colors: + bg: "#1E1E1E" + fg: "#E5E5E5" + black: "#000000" + red: "#FF453A" + green: "#32D74B" + yellow: "#FFD60A" + blue: "#0A84FF" + magenta: "#BF5AF2" + cyan: "#6AC4DC" + white: "#FFFFFF" + brightBlack: "#1B1B1B" + brightRed: "#FF453A" + brightGreen: "#32D74B" + brightYellow: "#FFD60A" + brightBlue: "#0A84FF" + brightMagenta: "#BF5AF2" + brightCyan: "#6AC4DC" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 89.2 + black: 0 + red: 39.8 + green: 64.6 + yellow: 82 + blue: 36.6 + magenta: 37.7 + cyan: 62.2 + white: 106 + brightBlack: 0 + brightRed: 39.8 + brightGreen: 64.6 + brightYellow: 82 + brightBlue: 36.6 + brightMagenta: 37.7 + brightCyan: 62.2 + brightWhite: 92.4 diff --git a/themes/base-minor.yaml b/themes/base-minor.yaml new file mode 100644 index 00000000..5c50e70c --- /dev/null +++ b/themes/base-minor.yaml @@ -0,0 +1,49 @@ +name: "Base Minor" +source: + marketplace_id: "adamsome.vscode-theme-phosphorus-minor" + version: "1.1.3" + installs: 421 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-phosphorus-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-phosphorus-minor" +colors: + bg: "#000000" + fg: "#A8A29E" + black: "#000000" + red: "#DC2626" + green: "#7E9E83" + yellow: "#A09B4E" + blue: "#55757F" + magenta: "#DC2626" + cyan: "#60A2A3" + white: "#292524" + brightBlack: "#120F0E" + brightRed: "#F87171" + brightGreen: "#B8D3BB" + brightYellow: "#D9D385" + brightBlue: "#93A7AF" + brightMagenta: "#F87171" + brightCyan: "#9AD7D8" + brightWhite: "#1C1917" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 52.5 + black: 0 + red: 30.1 + green: 45.7 + yellow: 46.8 + blue: 27.4 + magenta: 30.1 + cyan: 46.3 + white: 0 + brightBlack: 0 + brightRed: 49.1 + brightGreen: 75.7 + brightYellow: 78.1 + brightBlue: 52.8 + brightMagenta: 49.1 + brightCyan: 75.8 + brightWhite: 0 diff --git a/themes/base16-3024-dark.yaml b/themes/base16-3024-dark.yaml new file mode 100644 index 00000000..cdd45dd5 --- /dev/null +++ b/themes/base16-3024-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 3024 Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#090300" + fg: "#A5A2A2" + black: "#4A4543" + red: "#DB2D20" + green: "#01A252" + yellow: "#E8BBD0" + blue: "#01A0E4" + magenta: "#A16A94" + cyan: "#B5E4F4" + white: "#D6D5D4" + brightBlack: "#5C5855" + brightRed: "#DB2D20" + brightGreen: "#01A252" + brightYellow: "#FDED02" + brightBlue: "#01A0E4" + brightMagenta: "#A16A94" + brightCyan: "#B5E4F4" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 66 + contrast: + fg: 52.2 + black: 10.5 + red: 30.3 + green: 41.6 + yellow: 72.9 + blue: 46.6 + magenta: 32.8 + cyan: 85.6 + white: 81.2 + brightBlack: 17.5 + brightRed: 30.3 + brightGreen: 41.6 + brightYellow: 93.8 + brightBlue: 46.6 + brightMagenta: 32.8 + brightCyan: 85.6 + brightWhite: 102.6 diff --git a/themes/base16-3024-light.yaml b/themes/base16-3024-light.yaml new file mode 100644 index 00000000..c5456826 --- /dev/null +++ b/themes/base16-3024-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 3024 Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#F7F7F7" + fg: "#4A4543" + black: "#A5A2A2" + red: "#DB2D20" + green: "#01A252" + yellow: "#E8BBD0" + blue: "#01A0E4" + magenta: "#A16A94" + cyan: "#B5E4F4" + white: "#3A3432" + brightBlack: "#807D7C" + brightRed: "#DB2D20" + brightGreen: "#01A252" + brightYellow: "#FDED02" + brightBlue: "#01A0E4" + brightMagenta: "#A16A94" + brightCyan: "#B5E4F4" + brightWhite: "#090300" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 87.1 + black: 44.9 + red: 66.5 + green: 55.3 + yellow: 25.1 + blue: 50.4 + magenta: 64 + cyan: 13.1 + white: 93.2 + brightBlack: 63.3 + brightRed: 66.5 + brightGreen: 55.3 + brightYellow: 0 + brightBlue: 50.4 + brightMagenta: 64 + brightCyan: 13.1 + brightWhite: 101.2 diff --git a/themes/base16-apathy-dark.yaml b/themes/base16-apathy-dark.yaml new file mode 100644 index 00000000..6ca17516 --- /dev/null +++ b/themes/base16-apathy-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Apathy Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#031A16" + fg: "#81B5AC" + black: "#184E45" + red: "#3E9688" + green: "#883E96" + yellow: "#3E7996" + blue: "#96883E" + magenta: "#4C963E" + cyan: "#963E4C" + white: "#A7CEC8" + brightBlack: "#2B685E" + brightRed: "#3E9688" + brightGreen: "#883E96" + brightYellow: "#3E4C96" + brightBlue: "#96883E" + brightMagenta: "#4C963E" + brightCyan: "#963E4C" + brightWhite: "#D2E7E4" +meta: + mode: "dark" + accent: "pink" + hue: 180 + contrast: + fg: 55.8 + black: 9.6 + red: 37.8 + green: 18.7 + yellow: 27.5 + blue: 37.4 + magenta: 36.7 + cyan: 18 + white: 71.2 + brightBlack: 18.9 + brightRed: 37.8 + brightGreen: 18.7 + brightYellow: 14.1 + brightBlue: 37.4 + brightMagenta: 36.7 + brightCyan: 18 + brightWhite: 88.4 diff --git a/themes/base16-apathy-light.yaml b/themes/base16-apathy-light.yaml new file mode 100644 index 00000000..8a15f5de --- /dev/null +++ b/themes/base16-apathy-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Apathy Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#D2E7E4" + fg: "#184E45" + black: "#81B5AC" + red: "#3E9688" + green: "#883E96" + yellow: "#3E7996" + blue: "#96883E" + magenta: "#4C963E" + cyan: "#963E4C" + white: "#0B342D" + brightBlack: "#5F9C92" + brightRed: "#3E9688" + brightGreen: "#883E96" + brightYellow: "#3E4C96" + brightBlue: "#96883E" + brightMagenta: "#4C963E" + brightCyan: "#963E4C" + brightWhite: "#031A16" +meta: + mode: "light" + accent: "pink" + hue: 186 + contrast: + fg: 74.9 + black: 28.5 + red: 46 + green: 65.4 + yellow: 56.3 + blue: 46.4 + magenta: 47.2 + cyan: 66.1 + white: 83.2 + brightBlack: 41.8 + brightRed: 46 + brightGreen: 65.4 + brightYellow: 70.2 + brightBlue: 46.4 + brightMagenta: 47.2 + brightCyan: 66.1 + brightWhite: 87.9 diff --git a/themes/base16-ashes-dark.yaml b/themes/base16-ashes-dark.yaml new file mode 100644 index 00000000..01e8c390 --- /dev/null +++ b/themes/base16-ashes-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Ashes Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#1C2023" + fg: "#C7CCD1" + black: "#565E65" + red: "#C7AE95" + green: "#95C7AE" + yellow: "#C7C795" + blue: "#AE95C7" + magenta: "#C795AE" + cyan: "#95AEC7" + white: "#DFE2E5" + brightBlack: "#747C84" + brightRed: "#C7AE95" + brightGreen: "#95C7AE" + brightYellow: "#AEC795" + brightBlue: "#AE95C7" + brightMagenta: "#C795AE" + brightCyan: "#95AEC7" + brightWhite: "#F3F4F5" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 73.2 + black: 17.2 + red: 58.7 + green: 64.3 + yellow: 68.9 + blue: 48.3 + magenta: 50.6 + cyan: 54.8 + white: 86.8 + brightBlack: 30.4 + brightRed: 58.7 + brightGreen: 64.3 + brightYellow: 65.9 + brightBlue: 48.3 + brightMagenta: 50.6 + brightCyan: 54.8 + brightWhite: 98.5 diff --git a/themes/base16-ashes-light.yaml b/themes/base16-ashes-light.yaml new file mode 100644 index 00000000..8480cec9 --- /dev/null +++ b/themes/base16-ashes-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Ashes Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#F3F4F5" + fg: "#565E65" + black: "#C7CCD1" + red: "#C7AE95" + green: "#95C7AE" + yellow: "#C7C795" + blue: "#AE95C7" + magenta: "#C795AE" + cyan: "#95AEC7" + white: "#393F45" + brightBlack: "#ADB3BA" + brightRed: "#C7AE95" + brightGreen: "#95C7AE" + brightYellow: "#AEC795" + brightBlue: "#AE95C7" + brightMagenta: "#C795AE" + brightCyan: "#95AEC7" + brightWhite: "#1C2023" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 76 + black: 21 + red: 34.9 + green: 29.5 + yellow: 25.1 + blue: 44.9 + magenta: 42.7 + cyan: 38.6 + white: 88.1 + brightBlack: 34.8 + brightRed: 34.9 + brightGreen: 29.5 + brightYellow: 27.9 + brightBlue: 44.9 + brightMagenta: 42.7 + brightCyan: 38.6 + brightWhite: 96.7 diff --git a/themes/base16-bespin-dark.yaml b/themes/base16-bespin-dark.yaml new file mode 100644 index 00000000..7be13641 --- /dev/null +++ b/themes/base16-bespin-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Bespin Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#28211C" + fg: "#8A8986" + black: "#5E5D5C" + red: "#CF6A4C" + green: "#54BE0D" + yellow: "#CF7D34" + blue: "#5EA6EA" + magenta: "#9B859D" + cyan: "#AFC4DB" + white: "#9D9B97" + brightBlack: "#666666" + brightRed: "#CF6A4C" + brightGreen: "#54BE0D" + brightYellow: "#F9EE98" + brightBlue: "#5EA6EA" + brightMagenta: "#9B859D" + brightCyan: "#AFC4DB" + brightWhite: "#BAAE9E" +meta: + mode: "dark" + accent: "green" + hue: 58 + contrast: + fg: 36.6 + black: 16.9 + red: 36 + green: 52.7 + yellow: 40.8 + blue: 49.1 + magenta: 38.1 + cyan: 67.1 + white: 45.8 + brightBlack: 20.6 + brightRed: 36 + brightGreen: 52.7 + brightYellow: 92.8 + brightBlue: 49.1 + brightMagenta: 38.1 + brightCyan: 67.1 + brightWhite: 56.8 diff --git a/themes/base16-bespin-light.yaml b/themes/base16-bespin-light.yaml new file mode 100644 index 00000000..9b5388fc --- /dev/null +++ b/themes/base16-bespin-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Bespin Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#BAAE9E" + fg: "#5E5D5C" + black: "#8A8986" + red: "#CF6A4C" + green: "#54BE0D" + yellow: "#CF7D34" + blue: "#5EA6EA" + magenta: "#9B859D" + cyan: "#AFC4DB" + white: "#36312E" + brightBlack: "#797977" + brightRed: "#CF6A4C" + brightGreen: "#54BE0D" + brightYellow: "#F9EE98" + brightBlue: "#5EA6EA" + brightMagenta: "#9B859D" + brightCyan: "#AFC4DB" + brightWhite: "#28211C" +meta: + mode: "light" + accent: "green" + hue: 75 + contrast: + fg: 37.6 + black: 17.6 + red: 18.3 + green: 0 + yellow: 13.5 + blue: 0 + magenta: 16.2 + cyan: 9.3 + white: 54 + brightBlack: 25.3 + brightRed: 18.3 + brightGreen: 0 + brightYellow: 35 + brightBlue: 0 + brightMagenta: 16.2 + brightCyan: 9.3 + brightWhite: 57.9 diff --git a/themes/base16-brewer-dark.yaml b/themes/base16-brewer-dark.yaml new file mode 100644 index 00000000..5bf5127e --- /dev/null +++ b/themes/base16-brewer-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Brewer Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#0C0D0E" + fg: "#B7B8B9" + black: "#515253" + red: "#E31A1C" + green: "#31A354" + yellow: "#E6550D" + blue: "#3182BD" + magenta: "#756BB1" + cyan: "#80B1D3" + white: "#DADBDC" + brightBlack: "#737475" + brightRed: "#E31A1C" + brightGreen: "#31A354" + brightYellow: "#DCA060" + brightBlue: "#3182BD" + brightMagenta: "#756BB1" + brightCyan: "#80B1D3" + brightWhite: "#FCFDFE" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 63.7 + black: 14.6 + red: 30.8 + green: 42.3 + yellow: 37.9 + blue: 33.2 + magenta: 29 + cyan: 56.6 + white: 84.4 + brightBlack: 28.9 + brightRed: 30.8 + brightGreen: 42.3 + brightYellow: 57.2 + brightBlue: 33.2 + brightMagenta: 29 + brightCyan: 56.6 + brightWhite: 106.2 diff --git a/themes/base16-brewer-light.yaml b/themes/base16-brewer-light.yaml new file mode 100644 index 00000000..a165f8e7 --- /dev/null +++ b/themes/base16-brewer-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Brewer Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#FCFDFE" + fg: "#515253" + black: "#B7B8B9" + red: "#E31A1C" + green: "#31A354" + yellow: "#E6550D" + blue: "#3182BD" + magenta: "#756BB1" + cyan: "#80B1D3" + white: "#2E2F30" + brightBlack: "#959697" + brightRed: "#E31A1C" + brightGreen: "#31A354" + brightYellow: "#DCA060" + brightBlue: "#3182BD" + brightMagenta: "#756BB1" + brightCyan: "#80B1D3" + brightWhite: "#0C0D0E" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 85.9 + black: 37.1 + red: 69.3 + green: 57.9 + yellow: 62.3 + blue: 67 + magenta: 71.1 + cyan: 43.9 + white: 98.6 + brightBlack: 54.9 + brightRed: 69.3 + brightGreen: 57.9 + brightYellow: 43.4 + brightBlue: 67 + brightMagenta: 71.1 + brightCyan: 43.9 + brightWhite: 104.4 diff --git a/themes/base16-bright-dark.yaml b/themes/base16-bright-dark.yaml new file mode 100644 index 00000000..ffc74c53 --- /dev/null +++ b/themes/base16-bright-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Bright Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#000000" + fg: "#E0E0E0" + black: "#505050" + red: "#FB0120" + green: "#A1C659" + yellow: "#FC6D24" + blue: "#6FB3D2" + magenta: "#D381C3" + cyan: "#76C7B7" + white: "#F5F5F5" + brightBlack: "#B0B0B0" + brightRed: "#FB0120" + brightGreen: "#A1C659" + brightYellow: "#FDA331" + brightBlue: "#6FB3D2" + brightMagenta: "#D381C3" + brightCyan: "#76C7B7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 87.9 + black: 14.2 + red: 36.6 + green: 64.9 + yellow: 48 + blue: 56.5 + magenta: 49.3 + cyan: 64.4 + white: 101.3 + brightBlack: 59.5 + brightRed: 36.6 + brightGreen: 64.9 + brightYellow: 63.8 + brightBlue: 56.5 + brightMagenta: 49.3 + brightCyan: 64.4 + brightWhite: 107.9 diff --git a/themes/base16-bright-light.yaml b/themes/base16-bright-light.yaml new file mode 100644 index 00000000..1ffcc179 --- /dev/null +++ b/themes/base16-bright-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Bright Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#FFFFFF" + fg: "#505050" + black: "#E0E0E0" + red: "#FB0120" + green: "#A1C659" + yellow: "#FC6D24" + blue: "#6FB3D2" + magenta: "#D381C3" + cyan: "#76C7B7" + white: "#303030" + brightBlack: "#D0D0D0" + brightRed: "#FB0120" + brightGreen: "#A1C659" + brightYellow: "#FDA331" + brightBlue: "#6FB3D2" + brightMagenta: "#D381C3" + brightCyan: "#76C7B7" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 88 + black: 15.8 + red: 65.1 + green: 37.5 + yellow: 53.9 + blue: 45.6 + magenta: 52.6 + cyan: 38 + white: 99.6 + brightBlack: 25 + brightRed: 65.1 + brightGreen: 37.5 + brightYellow: 38.6 + brightBlue: 45.6 + brightMagenta: 52.6 + brightCyan: 38 + brightWhite: 106 diff --git a/themes/base16-codeschool-dark.yaml b/themes/base16-codeschool-dark.yaml new file mode 100644 index 00000000..f6192cf0 --- /dev/null +++ b/themes/base16-codeschool-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Codeschool Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#232C31" + fg: "#9EA7A6" + black: "#2A343A" + red: "#2A5491" + green: "#237986" + yellow: "#43820D" + blue: "#484D79" + magenta: "#C59820" + cyan: "#B02F30" + white: "#A7CFA3" + brightBlack: "#3F4944" + brightRed: "#2A5491" + brightGreen: "#237986" + brightYellow: "#A03B1E" + brightBlue: "#484D79" + brightMagenta: "#C59820" + brightCyan: "#B02F30" + brightWhite: "#B5D8F6" +meta: + mode: "dark" + accent: "orange" + hue: 232 + contrast: + fg: 49.6 + black: 0 + red: 12.1 + green: 23.1 + yellow: 25.2 + blue: 10.4 + magenta: 46.3 + cyan: 17.4 + white: 67.3 + brightBlack: 0 + brightRed: 12.1 + brightGreen: 23.1 + brightYellow: 15.7 + brightBlue: 10.4 + brightMagenta: 46.3 + brightCyan: 17.4 + brightWhite: 76.3 diff --git a/themes/base16-codeschool-light.yaml b/themes/base16-codeschool-light.yaml new file mode 100644 index 00000000..6a145796 --- /dev/null +++ b/themes/base16-codeschool-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Codeschool Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#B5D8F6" + fg: "#2A343A" + black: "#9EA7A6" + red: "#2A5491" + green: "#237986" + yellow: "#43820D" + blue: "#484D79" + magenta: "#C59820" + cyan: "#B02F30" + white: "#1C3657" + brightBlack: "#84898C" + brightRed: "#2A5491" + brightGreen: "#237986" + brightYellow: "#A03B1E" + brightBlue: "#484D79" + brightMagenta: "#C59820" + brightCyan: "#B02F30" + brightWhite: "#232C31" +meta: + mode: "light" + accent: "orange" + hue: 244 + contrast: + fg: 73.6 + black: 23.2 + red: 60.8 + green: 49.4 + yellow: 47.3 + blue: 62.6 + magenta: 26.4 + cyan: 55.2 + white: 72.5 + brightBlack: 37.7 + brightRed: 60.8 + brightGreen: 49.4 + brightYellow: 57 + brightBlue: 62.6 + brightMagenta: 26.4 + brightCyan: 55.2 + brightWhite: 75.7 diff --git a/themes/base16-default-dark.yaml b/themes/base16-default-dark.yaml new file mode 100644 index 00000000..f3fea806 --- /dev/null +++ b/themes/base16-default-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Default Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#181818" + fg: "#D8D8D8" + black: "#383838" + red: "#AB4642" + green: "#A1B56C" + yellow: "#DC9656" + blue: "#7CAFC2" + magenta: "#BA8BAF" + cyan: "#86C1B9" + white: "#E8E8E8" + brightBlack: "#585858" + brightRed: "#AB4642" + brightGreen: "#A1B56C" + brightYellow: "#F7CA88" + brightBlue: "#7CAFC2" + brightMagenta: "#BA8BAF" + brightCyan: "#86C1B9" + brightWhite: "#F8F8F8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81.8 + black: 0 + red: 22.8 + green: 56.7 + yellow: 52.7 + blue: 53.8 + magenta: 46.3 + cyan: 61.8 + white: 91.8 + brightBlack: 16.2 + brightRed: 22.8 + brightGreen: 56.7 + brightYellow: 77.7 + brightBlue: 53.8 + brightMagenta: 46.3 + brightCyan: 61.8 + brightWhite: 102.1 diff --git a/themes/base16-default-light.yaml b/themes/base16-default-light.yaml new file mode 100644 index 00000000..49c1827e --- /dev/null +++ b/themes/base16-default-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Default Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#F8F8F8" + fg: "#383838" + black: "#D8D8D8" + red: "#AB4642" + green: "#A1B56C" + yellow: "#DC9656" + blue: "#7CAFC2" + magenta: "#BA8BAF" + cyan: "#86C1B9" + white: "#282828" + brightBlack: "#B8B8B8" + brightRed: "#AB4642" + brightGreen: "#A1B56C" + brightYellow: "#F7CA88" + brightBlue: "#7CAFC2" + brightMagenta: "#BA8BAF" + brightCyan: "#86C1B9" + brightWhite: "#181818" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.8 + black: 16.3 + red: 73.6 + green: 40.1 + yellow: 44 + blue: 42.9 + magenta: 50.2 + cyan: 35.2 + white: 97.4 + brightBlack: 34.2 + brightRed: 73.6 + brightGreen: 40.1 + brightYellow: 20.2 + brightBlue: 42.9 + brightMagenta: 50.2 + brightCyan: 35.2 + brightWhite: 100.4 diff --git a/themes/base16-eighties-dark.yaml b/themes/base16-eighties-dark.yaml new file mode 100644 index 00000000..6294deb0 --- /dev/null +++ b/themes/base16-eighties-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Eighties Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#2D2D2D" + fg: "#D3D0C8" + black: "#515151" + red: "#F2777A" + green: "#99CC99" + yellow: "#F99157" + blue: "#6699CC" + magenta: "#CC99CC" + cyan: "#66CCCC" + white: "#E8E6DF" + brightBlack: "#747369" + brightRed: "#F2777A" + brightGreen: "#99CC99" + brightYellow: "#FFCC66" + brightBlue: "#6699CC" + brightMagenta: "#CC99CC" + brightCyan: "#66CCCC" + brightWhite: "#F2F0EC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.7 + black: 10.1 + red: 45.1 + green: 63.8 + yellow: 53.1 + blue: 40.7 + magenta: 51.7 + cyan: 62.2 + white: 87.2 + brightBlack: 24.1 + brightRed: 45.1 + brightGreen: 63.8 + brightYellow: 75.8 + brightBlue: 40.7 + brightMagenta: 51.7 + brightCyan: 62.2 + brightWhite: 93.7 diff --git a/themes/base16-eighties-light.yaml b/themes/base16-eighties-light.yaml new file mode 100644 index 00000000..d56c4168 --- /dev/null +++ b/themes/base16-eighties-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Eighties Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#F2F0EC" + fg: "#515151" + black: "#D3D0C8" + red: "#F2777A" + green: "#99CC99" + yellow: "#F99157" + blue: "#6699CC" + magenta: "#CC99CC" + cyan: "#66CCCC" + white: "#393939" + brightBlack: "#A09F93" + brightRed: "#F2777A" + brightGreen: "#99CC99" + brightYellow: "#FFCC66" + brightBlue: "#6699CC" + brightMagenta: "#CC99CC" + brightCyan: "#66CCCC" + brightWhite: "#2D2D2D" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 78.7 + black: 16.1 + red: 43.5 + green: 25.5 + yellow: 35.7 + blue: 47.8 + magenta: 37.1 + cyan: 27 + white: 87.8 + brightBlack: 43 + brightRed: 43.5 + brightGreen: 25.5 + brightYellow: 14.1 + brightBlue: 47.8 + brightMagenta: 37.1 + brightCyan: 27 + brightWhite: 91.5 diff --git a/themes/base16-embers-dark.yaml b/themes/base16-embers-dark.yaml new file mode 100644 index 00000000..7d1e33de --- /dev/null +++ b/themes/base16-embers-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Embers Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#16130F" + fg: "#A39A90" + black: "#433B32" + red: "#826D57" + green: "#57826D" + yellow: "#828257" + blue: "#6D5782" + magenta: "#82576D" + cyan: "#576D82" + white: "#BEB6AE" + brightBlack: "#5A5047" + brightRed: "#826D57" + brightGreen: "#57826D" + brightYellow: "#6D8257" + brightBlue: "#6D5782" + brightMagenta: "#82576D" + brightCyan: "#576D82" + brightWhite: "#DBD6D1" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 47.7 + black: 0 + red: 27 + green: 30.8 + yellow: 33.9 + blue: 19.9 + magenta: 21.5 + cyan: 24.4 + white: 62.9 + brightBlack: 14.1 + brightRed: 27 + brightGreen: 30.8 + brightYellow: 31.9 + brightBlue: 19.9 + brightMagenta: 21.5 + brightCyan: 24.4 + brightWhite: 81.5 diff --git a/themes/base16-embers-light.yaml b/themes/base16-embers-light.yaml new file mode 100644 index 00000000..cdc2c29c --- /dev/null +++ b/themes/base16-embers-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Embers Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#DBD6D1" + fg: "#433B32" + black: "#A39A90" + red: "#826D57" + green: "#57826D" + yellow: "#828257" + blue: "#6D5782" + magenta: "#82576D" + cyan: "#576D82" + white: "#2C2620" + brightBlack: "#8A8075" + brightRed: "#826D57" + brightGreen: "#57826D" + brightYellow: "#6D8257" + brightBlue: "#6D5782" + brightMagenta: "#82576D" + brightCyan: "#576D82" + brightWhite: "#16130F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 71.9 + black: 29.9 + red: 50.5 + green: 46.6 + yellow: 43.6 + blue: 57.8 + magenta: 56.1 + cyan: 53.2 + white: 78.3 + brightBlack: 42.7 + brightRed: 50.5 + brightGreen: 46.6 + brightYellow: 45.6 + brightBlue: 57.8 + brightMagenta: 56.1 + brightCyan: 53.2 + brightWhite: 81.6 diff --git a/themes/base16-flat-dark.yaml b/themes/base16-flat-dark.yaml new file mode 100644 index 00000000..01ee0382 --- /dev/null +++ b/themes/base16-flat-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Flat Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#2C3E50" + fg: "#E0E0E0" + black: "#7F8C8D" + red: "#E74C3C" + green: "#2ECC71" + yellow: "#E67E22" + blue: "#3498DB" + magenta: "#9B59B6" + cyan: "#1ABC9C" + white: "#F5F5F5" + brightBlack: "#95A5A6" + brightRed: "#E74C3C" + brightGreen: "#2ECC71" + brightYellow: "#F1C40F" + brightBlue: "#3498DB" + brightMagenta: "#9B59B6" + brightCyan: "#1ABC9C" + brightWhite: "#ECF0F1" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 79.2 + black: 30.7 + red: 28.4 + green: 53 + yellow: 39.1 + blue: 34.8 + magenta: 20.9 + cyan: 46.5 + white: 92.6 + brightBlack: 43.2 + brightRed: 28.4 + brightGreen: 53 + brightYellow: 65.3 + brightBlue: 34.8 + brightMagenta: 20.9 + brightCyan: 46.5 + brightWhite: 88.9 diff --git a/themes/base16-flat-light.yaml b/themes/base16-flat-light.yaml new file mode 100644 index 00000000..d4bf0fa5 --- /dev/null +++ b/themes/base16-flat-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Flat Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#ECF0F1" + fg: "#7F8C8D" + black: "#E0E0E0" + red: "#E74C3C" + green: "#2ECC71" + yellow: "#E67E22" + blue: "#3498DB" + magenta: "#9B59B6" + cyan: "#1ABC9C" + white: "#34495E" + brightBlack: "#BDC3C7" + brightRed: "#E74C3C" + brightGreen: "#2ECC71" + brightYellow: "#F1C40F" + brightBlue: "#3498DB" + brightMagenta: "#9B59B6" + brightCyan: "#1ABC9C" + brightWhite: "#2C3E50" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 53 + black: 0 + red: 55.2 + green: 31.2 + yellow: 44.7 + blue: 48.9 + magenta: 62.7 + cyan: 37.5 + white: 82 + brightBlack: 23.5 + brightRed: 55.2 + brightGreen: 31.2 + brightYellow: 19.5 + brightBlue: 48.9 + brightMagenta: 62.7 + brightCyan: 37.5 + brightWhite: 86 diff --git a/themes/base16-google-dark.yaml b/themes/base16-google-dark.yaml new file mode 100644 index 00000000..8410c0fc --- /dev/null +++ b/themes/base16-google-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Google Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#1D1F21" + fg: "#C5C8C6" + black: "#373B41" + red: "#CC342B" + green: "#198844" + yellow: "#F96A38" + blue: "#3971ED" + magenta: "#A36AC7" + cyan: "#3971ED" + white: "#E0E0E0" + brightBlack: "#969896" + brightRed: "#CC342B" + brightGreen: "#198844" + brightYellow: "#FBA922" + brightBlue: "#3971ED" + brightMagenta: "#A36AC7" + brightCyan: "#3971ED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 70.9 + black: 0 + red: 25.8 + green: 28.8 + yellow: 44.8 + blue: 29.6 + magenta: 33.9 + cyan: 29.6 + white: 85.9 + brightBlack: 44.4 + brightRed: 25.8 + brightGreen: 28.8 + brightYellow: 63.5 + brightBlue: 29.6 + brightMagenta: 33.9 + brightCyan: 29.6 + brightWhite: 105.9 diff --git a/themes/base16-google-light.yaml b/themes/base16-google-light.yaml new file mode 100644 index 00000000..5c7cdea2 --- /dev/null +++ b/themes/base16-google-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Google Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#FFFFFF" + fg: "#373B41" + black: "#C5C8C6" + red: "#CC342B" + green: "#198844" + yellow: "#F96A38" + blue: "#3971ED" + magenta: "#A36AC7" + cyan: "#3971ED" + white: "#282A2E" + brightBlack: "#B4B7B4" + brightRed: "#CC342B" + brightGreen: "#198844" + brightYellow: "#FBA922" + brightBlue: "#3971ED" + brightMagenta: "#A36AC7" + brightCyan: "#3971ED" + brightWhite: "#1D1F21" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 96 + black: 30 + red: 73.9 + green: 70.9 + yellow: 55 + blue: 70.1 + magenta: 65.8 + cyan: 70.1 + white: 101.1 + brightBlack: 39.3 + brightRed: 73.9 + brightGreen: 70.9 + brightYellow: 37 + brightBlue: 70.1 + brightMagenta: 65.8 + brightCyan: 70.1 + brightWhite: 103.5 diff --git a/themes/base16-grayscale-dark.yaml b/themes/base16-grayscale-dark.yaml new file mode 100644 index 00000000..9d17aac5 --- /dev/null +++ b/themes/base16-grayscale-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Grayscale Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#101010" + fg: "#B9B9B9" + black: "#464646" + red: "#7C7C7C" + green: "#8E8E8E" + yellow: "#999999" + blue: "#686868" + magenta: "#747474" + cyan: "#868686" + white: "#E3E3E3" + brightBlack: "#525252" + brightRed: "#7C7C7C" + brightGreen: "#8E8E8E" + brightYellow: "#A0A0A0" + brightBlue: "#686868" + brightMagenta: "#747474" + brightCyan: "#868686" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 64.2 + black: 10.1 + red: 32.4 + green: 41.2 + yellow: 46.8 + blue: 23.5 + magenta: 28.8 + cyan: 37.2 + white: 89.3 + brightBlack: 14.5 + brightRed: 32.4 + brightGreen: 41.2 + brightYellow: 50.4 + brightBlue: 23.5 + brightMagenta: 28.8 + brightCyan: 37.2 + brightWhite: 102.2 diff --git a/themes/base16-grayscale-light.yaml b/themes/base16-grayscale-light.yaml new file mode 100644 index 00000000..9d801fb6 --- /dev/null +++ b/themes/base16-grayscale-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Grayscale Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#F7F7F7" + fg: "#464646" + black: "#B9B9B9" + red: "#7C7C7C" + green: "#8E8E8E" + yellow: "#999999" + blue: "#686868" + magenta: "#747474" + cyan: "#868686" + white: "#252525" + brightBlack: "#ABABAB" + brightRed: "#7C7C7C" + brightGreen: "#8E8E8E" + brightYellow: "#A0A0A0" + brightBlue: "#686868" + brightMagenta: "#747474" + brightCyan: "#868686" + brightWhite: "#101010" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 87.1 + black: 33 + red: 64 + green: 55.3 + yellow: 49.8 + blue: 73.1 + magenta: 67.7 + cyan: 59.2 + white: 97.5 + brightBlack: 40.5 + brightRed: 64 + brightGreen: 55.3 + brightYellow: 46.3 + brightBlue: 73.1 + brightMagenta: 67.7 + brightCyan: 59.2 + brightWhite: 100.7 diff --git a/themes/base16-green-screen-dark.yaml b/themes/base16-green-screen-dark.yaml new file mode 100644 index 00000000..b5b26264 --- /dev/null +++ b/themes/base16-green-screen-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Green Screen Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#001100" + fg: "#00BB00" + black: "#005500" + red: "#007700" + green: "#00BB00" + yellow: "#009900" + blue: "#009900" + magenta: "#00BB00" + cyan: "#005500" + white: "#00DD00" + brightBlack: "#007700" + brightRed: "#007700" + brightGreen: "#00BB00" + brightYellow: "#007700" + brightBlue: "#009900" + brightMagenta: "#00BB00" + brightCyan: "#005500" + brightWhite: "#00FF00" +meta: + mode: "dark" + accent: "green" + hue: 142 + contrast: + fg: 51.9 + black: 11.6 + red: 23.3 + green: 51.9 + yellow: 36.8 + blue: 36.8 + magenta: 51.9 + cyan: 11.6 + white: 68.4 + brightBlack: 23.3 + brightRed: 23.3 + brightGreen: 51.9 + brightYellow: 23.3 + brightBlue: 36.8 + brightMagenta: 51.9 + brightCyan: 11.6 + brightWhite: 86.1 diff --git a/themes/base16-green-screen-light.yaml b/themes/base16-green-screen-light.yaml new file mode 100644 index 00000000..8972683b --- /dev/null +++ b/themes/base16-green-screen-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Green Screen Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#00FF00" + fg: "#005500" + black: "#00BB00" + red: "#007700" + green: "#00BB00" + yellow: "#009900" + blue: "#009900" + magenta: "#00BB00" + cyan: "#005500" + white: "#003300" + brightBlack: "#009900" + brightRed: "#007700" + brightGreen: "#00BB00" + brightYellow: "#007700" + brightBlue: "#009900" + brightMagenta: "#00BB00" + brightCyan: "#005500" + brightWhite: "#001100" +meta: + mode: "light" + accent: "green" + hue: 142 + contrast: + fg: 70.8 + black: 30.2 + red: 58.6 + green: 30.2 + yellow: 45 + blue: 45 + magenta: 30.2 + cyan: 70.8 + white: 81 + brightBlack: 45 + brightRed: 58.6 + brightGreen: 30.2 + brightYellow: 58.6 + brightBlue: 45 + brightMagenta: 30.2 + brightCyan: 70.8 + brightWhite: 86 diff --git a/themes/base16-harmonic16-dark.yaml b/themes/base16-harmonic16-dark.yaml new file mode 100644 index 00000000..662cfda6 --- /dev/null +++ b/themes/base16-harmonic16-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Harmonic16 Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#0B1C2C" + fg: "#CBD6E2" + black: "#405C79" + red: "#BF8B56" + green: "#56BF8B" + yellow: "#BFBF56" + blue: "#8B56BF" + magenta: "#BF568B" + cyan: "#568BBF" + white: "#E5EBF1" + brightBlack: "#627E99" + brightRed: "#BF8B56" + brightGreen: "#56BF8B" + brightYellow: "#8BBF56" + brightBlue: "#8B56BF" + brightMagenta: "#BF568B" + brightCyan: "#568BBF" + brightWhite: "#F7F9FB" +meta: + mode: "dark" + accent: "magenta" + hue: 249 + contrast: + fg: 79.4 + black: 16.5 + red: 44 + green: 56 + yellow: 63.7 + blue: 25.8 + magenta: 31.2 + cyan: 36.8 + white: 92.8 + brightBlack: 31 + brightRed: 44 + brightGreen: 56 + brightYellow: 58.2 + brightBlue: 25.8 + brightMagenta: 31.2 + brightCyan: 36.8 + brightWhite: 102.2 diff --git a/themes/base16-harmonic16-light.yaml b/themes/base16-harmonic16-light.yaml new file mode 100644 index 00000000..b393f2e0 --- /dev/null +++ b/themes/base16-harmonic16-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Harmonic16 Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#F7F9FB" + fg: "#405C79" + black: "#CBD6E2" + red: "#BF8B56" + green: "#56BF8B" + yellow: "#BFBF56" + blue: "#8B56BF" + magenta: "#BF568B" + cyan: "#568BBF" + white: "#223B54" + brightBlack: "#AABCCE" + brightRed: "#BF8B56" + brightGreen: "#56BF8B" + brightYellow: "#8BBF56" + brightBlue: "#8B56BF" + brightMagenta: "#BF568B" + brightCyan: "#568BBF" + brightWhite: "#0B1C2C" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 80.2 + black: 18.6 + red: 52.6 + green: 40.9 + yellow: 33.5 + blue: 70.6 + magenta: 65.2 + cyan: 59.6 + white: 92.7 + brightBlack: 33.6 + brightRed: 52.6 + brightGreen: 40.9 + brightYellow: 38.7 + brightBlue: 70.6 + brightMagenta: 65.2 + brightCyan: 59.6 + brightWhite: 100.3 diff --git a/themes/base16-isotope-dark.yaml b/themes/base16-isotope-dark.yaml new file mode 100644 index 00000000..1568a5f7 --- /dev/null +++ b/themes/base16-isotope-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Isotope Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#000000" + fg: "#D0D0D0" + black: "#606060" + red: "#FF0000" + green: "#33FF00" + yellow: "#FF9900" + blue: "#0066FF" + magenta: "#CC00FF" + cyan: "#00FFFF" + white: "#E0E0E0" + brightBlack: "#808080" + brightRed: "#FF0000" + brightGreen: "#33FF00" + brightYellow: "#FF0099" + brightBlue: "#0066FF" + brightMagenta: "#CC00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.1 + black: 20.5 + red: 37.5 + green: 86.8 + yellow: 60.7 + blue: 29.3 + magenta: 35.5 + cyan: 92.2 + white: 87.9 + brightBlack: 34.8 + brightRed: 37.5 + brightGreen: 86.8 + brightYellow: 40.2 + brightBlue: 29.3 + brightMagenta: 35.5 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/base16-isotope-light.yaml b/themes/base16-isotope-light.yaml new file mode 100644 index 00000000..2b4a91bd --- /dev/null +++ b/themes/base16-isotope-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Isotope Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#FFFFFF" + fg: "#606060" + black: "#D0D0D0" + red: "#FF0000" + green: "#33FF00" + yellow: "#FF9900" + blue: "#0066FF" + magenta: "#CC00FF" + cyan: "#00FFFF" + white: "#404040" + brightBlack: "#C0C0C0" + brightRed: "#FF0000" + brightGreen: "#33FF00" + brightYellow: "#FF0099" + brightBlue: "#0066FF" + brightMagenta: "#CC00FF" + brightCyan: "#00FFFF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 81.3 + black: 25 + red: 64.1 + green: 16.8 + yellow: 41.5 + blue: 72.4 + magenta: 66.2 + cyan: 11.8 + white: 94.1 + brightBlack: 34 + brightRed: 64.1 + brightGreen: 16.8 + brightYellow: 61.5 + brightBlue: 72.4 + brightMagenta: 66.2 + brightCyan: 11.8 + brightWhite: 106 diff --git a/themes/base16-marrakesh-dark.yaml b/themes/base16-marrakesh-dark.yaml new file mode 100644 index 00000000..966ea984 --- /dev/null +++ b/themes/base16-marrakesh-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Marrakesh Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#201602" + fg: "#948E48" + black: "#5F5B17" + red: "#C35359" + green: "#18974E" + yellow: "#B36144" + blue: "#477CA1" + magenta: "#8868B3" + cyan: "#75A738" + white: "#CCC37A" + brightBlack: "#6C6823" + brightRed: "#C35359" + brightGreen: "#18974E" + brightYellow: "#A88339" + brightBlue: "#477CA1" + brightMagenta: "#8868B3" + brightCyan: "#75A738" + brightWhite: "#FAF0A5" +meta: + mode: "dark" + accent: "teal" + hue: 84 + contrast: + fg: 39.4 + black: 16.7 + red: 30.2 + green: 35.9 + yellow: 30 + blue: 29.4 + magenta: 29.5 + cyan: 46.1 + white: 68.1 + brightBlack: 21.9 + brightRed: 30.2 + brightGreen: 35.9 + brightYellow: 37.9 + brightBlue: 29.4 + brightMagenta: 29.5 + brightCyan: 46.1 + brightWhite: 95.6 diff --git a/themes/base16-marrakesh-light.yaml b/themes/base16-marrakesh-light.yaml new file mode 100644 index 00000000..4909c6d4 --- /dev/null +++ b/themes/base16-marrakesh-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Marrakesh Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#FAF0A5" + fg: "#5F5B17" + black: "#948E48" + red: "#C35359" + green: "#18974E" + yellow: "#B36144" + blue: "#477CA1" + magenta: "#8868B3" + cyan: "#75A738" + white: "#302E00" + brightBlack: "#86813B" + brightRed: "#C35359" + brightGreen: "#18974E" + brightYellow: "#A88339" + brightBlue: "#477CA1" + brightMagenta: "#8868B3" + brightCyan: "#75A738" + brightWhite: "#201602" +meta: + mode: "light" + accent: "teal" + hue: 102 + contrast: + fg: 74 + black: 51 + red: 60.2 + green: 54.5 + yellow: 60.4 + blue: 61 + magenta: 60.9 + cyan: 44.4 + white: 90.2 + brightBlack: 57.3 + brightRed: 60.2 + brightGreen: 54.5 + brightYellow: 52.5 + brightBlue: 61 + brightMagenta: 60.9 + brightCyan: 44.4 + brightWhite: 94.4 diff --git a/themes/base16-mocha-dark.yaml b/themes/base16-mocha-dark.yaml new file mode 100644 index 00000000..7864266c --- /dev/null +++ b/themes/base16-mocha-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Mocha Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#3B3228" + fg: "#D0C8C6" + black: "#645240" + red: "#CB6077" + green: "#BEB55B" + yellow: "#D28B71" + blue: "#8AB3B5" + magenta: "#A89BB9" + cyan: "#7BBDA4" + white: "#E9E1DD" + brightBlack: "#7E705A" + brightRed: "#CB6077" + brightGreen: "#BEB55B" + brightYellow: "#F4BC87" + brightBlue: "#8AB3B5" + brightMagenta: "#A89BB9" + brightCyan: "#7BBDA4" + brightWhite: "#F5EEEB" +meta: + mode: "dark" + accent: "red" + hue: 70 + contrast: + fg: 68.3 + black: 10.2 + red: 30.3 + green: 55 + yellow: 43.1 + blue: 51.1 + magenta: 45 + cyan: 53.5 + white: 83.4 + brightBlack: 22.2 + brightRed: 30.3 + brightGreen: 55 + brightYellow: 66.7 + brightBlue: 51.1 + brightMagenta: 45 + brightCyan: 53.5 + brightWhite: 91.6 diff --git a/themes/base16-mocha-light.yaml b/themes/base16-mocha-light.yaml new file mode 100644 index 00000000..574603a3 --- /dev/null +++ b/themes/base16-mocha-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Mocha Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#F5EEEB" + fg: "#645240" + black: "#D0C8C6" + red: "#CB6077" + green: "#BEB55B" + yellow: "#D28B71" + blue: "#8AB3B5" + magenta: "#A89BB9" + cyan: "#7BBDA4" + white: "#534636" + brightBlack: "#B8AFAD" + brightRed: "#CB6077" + brightGreen: "#BEB55B" + brightYellow: "#F4BC87" + brightBlue: "#8AB3B5" + brightMagenta: "#A89BB9" + brightCyan: "#7BBDA4" + brightWhite: "#3B3228" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 76.5 + black: 19.3 + red: 56 + green: 32 + yellow: 43.4 + blue: 35.7 + magenta: 41.6 + cyan: 33.3 + white: 81.7 + brightBlack: 32.9 + brightRed: 56 + brightGreen: 32 + brightYellow: 20.8 + brightBlue: 35.7 + brightMagenta: 41.6 + brightCyan: 33.3 + brightWhite: 89.2 diff --git a/themes/base16-monokai-dark.yaml b/themes/base16-monokai-dark.yaml new file mode 100644 index 00000000..f47ee80c --- /dev/null +++ b/themes/base16-monokai-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Monokai Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#272822" + fg: "#F8F8F2" + black: "#49483E" + red: "#F92672" + green: "#A6E22E" + yellow: "#FD971F" + blue: "#66D9EF" + magenta: "#AE81FF" + cyan: "#A1EFE4" + white: "#F5F4F1" + brightBlack: "#75715E" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#F4BF75" + brightBlue: "#66D9EF" + brightMagenta: "#AE81FF" + brightCyan: "#A1EFE4" + brightWhite: "#F9F8F5" +meta: + mode: "dark" + accent: "red" + hue: 115 + contrast: + fg: 99.6 + black: 7.8 + red: 35 + green: 74.7 + yellow: 56.4 + blue: 71.1 + magenta: 44.2 + cyan: 85 + white: 97.3 + brightBlack: 24.3 + brightRed: 35 + brightGreen: 74.7 + brightYellow: 70.1 + brightBlue: 71.1 + brightMagenta: 44.2 + brightCyan: 85 + brightWhite: 99.9 diff --git a/themes/base16-monokai-light.yaml b/themes/base16-monokai-light.yaml new file mode 100644 index 00000000..d0aa76b2 --- /dev/null +++ b/themes/base16-monokai-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Monokai Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#F9F8F5" + fg: "#49483E" + black: "#F8F8F2" + red: "#F92672" + green: "#A6E22E" + yellow: "#FD971F" + blue: "#66D9EF" + magenta: "#AE81FF" + cyan: "#A1EFE4" + white: "#383830" + brightBlack: "#A59F85" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#F4BF75" + brightBlue: "#66D9EF" + brightMagenta: "#AE81FF" + brightCyan: "#A1EFE4" + brightWhite: "#272822" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 87.1 + black: 0 + red: 59.2 + green: 20.9 + yellow: 38.3 + blue: 24.3 + magenta: 50.1 + cyan: 11.3 + white: 93 + brightBlack: 47.6 + brightRed: 59.2 + brightGreen: 20.9 + brightYellow: 25.2 + brightBlue: 24.3 + brightMagenta: 50.1 + brightCyan: 11.3 + brightWhite: 97.5 diff --git a/themes/base16-ocean-dark.yaml b/themes/base16-ocean-dark.yaml new file mode 100644 index 00000000..e37b3ac2 --- /dev/null +++ b/themes/base16-ocean-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Ocean Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#2B303B" + fg: "#C0C5CE" + black: "#4F5B66" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#D08770" + blue: "#8FA1B3" + magenta: "#B48EAD" + cyan: "#96B5B4" + white: "#DFE1E8" + brightBlack: "#65737E" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#8FA1B3" + brightMagenta: "#B48EAD" + brightCyan: "#96B5B4" + brightWhite: "#EFF1F5" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 66.2 + black: 12.8 + red: 28.9 + green: 57.6 + yellow: 42.4 + blue: 45.1 + magenta: 42.4 + cyan: 53.9 + white: 83.5 + brightBlack: 22.8 + brightRed: 28.9 + brightGreen: 57.6 + brightYellow: 72.3 + brightBlue: 45.1 + brightMagenta: 42.4 + brightCyan: 53.9 + brightWhite: 93.5 diff --git a/themes/base16-ocean-light.yaml b/themes/base16-ocean-light.yaml new file mode 100644 index 00000000..6bfcc480 --- /dev/null +++ b/themes/base16-ocean-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Ocean Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#EFF1F5" + fg: "#4F5B66" + black: "#C0C5CE" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#D08770" + blue: "#8FA1B3" + magenta: "#B48EAD" + cyan: "#96B5B4" + white: "#343D46" + brightBlack: "#A7ADBA" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#8FA1B3" + brightMagenta: "#B48EAD" + brightCyan: "#96B5B4" + brightWhite: "#2B303B" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 75.7 + black: 23 + red: 59.3 + green: 31.2 + yellow: 46 + blue: 43.2 + magenta: 45.9 + cyan: 34.8 + white: 87.1 + brightBlack: 36 + brightRed: 59.3 + brightGreen: 31.2 + brightYellow: 17.3 + brightBlue: 43.2 + brightMagenta: 45.9 + brightCyan: 34.8 + brightWhite: 91.2 diff --git a/themes/base16-oceanicnext-dark.yaml b/themes/base16-oceanicnext-dark.yaml new file mode 100644 index 00000000..dd50f7f4 --- /dev/null +++ b/themes/base16-oceanicnext-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 OceanicNext Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#1B2B34" + fg: "#C0C5CE" + black: "#4F5B66" + red: "#EC5F67" + green: "#99C794" + yellow: "#F99157" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#CDD3DE" + brightBlack: "#65737E" + brightRed: "#EC5F67" + brightGreen: "#99C794" + brightYellow: "#FAC863" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D8DEE9" +meta: + mode: "dark" + accent: "orange" + hue: 234 + contrast: + fg: 67.6 + black: 14.2 + red: 38.7 + green: 62.2 + yellow: 53.9 + blue: 41.5 + magenta: 49.4 + cyan: 50.4 + white: 76 + brightBlack: 24.2 + brightRed: 38.7 + brightGreen: 62.2 + brightYellow: 74.1 + brightBlue: 41.5 + brightMagenta: 49.4 + brightCyan: 50.4 + brightWhite: 82.7 diff --git a/themes/base16-oceanicnext-light.yaml b/themes/base16-oceanicnext-light.yaml new file mode 100644 index 00000000..3fa8be4b --- /dev/null +++ b/themes/base16-oceanicnext-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 OceanicNext Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#D8DEE9" + fg: "#4F5B66" + black: "#C0C5CE" + red: "#EC5F67" + green: "#99C794" + yellow: "#F99157" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#343D46" + brightBlack: "#A7ADBA" + brightRed: "#EC5F67" + brightGreen: "#99C794" + brightYellow: "#FAC863" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#1B2B34" +meta: + mode: "light" + accent: "orange" + hue: 263 + contrast: + fg: 64.5 + black: 11.8 + red: 39.8 + green: 17 + yellow: 24.9 + blue: 37 + magenta: 29.3 + cyan: 28.3 + white: 75.9 + brightBlack: 24.8 + brightRed: 39.8 + brightGreen: 17 + brightYellow: 0 + brightBlue: 37 + brightMagenta: 29.3 + brightCyan: 28.3 + brightWhite: 81.7 diff --git a/themes/base16-paraiso-dark.yaml b/themes/base16-paraiso-dark.yaml new file mode 100644 index 00000000..978539cb --- /dev/null +++ b/themes/base16-paraiso-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Paraiso Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#2F1E2E" + fg: "#A39E9B" + black: "#4F424C" + red: "#EF6155" + green: "#48B685" + yellow: "#F99B15" + blue: "#06B6EF" + magenta: "#815BA4" + cyan: "#5BC4BF" + white: "#B9B6B0" + brightBlack: "#776E71" + brightRed: "#EF6155" + brightGreen: "#48B685" + brightYellow: "#FEC418" + brightBlue: "#06B6EF" + brightMagenta: "#815BA4" + brightCyan: "#5BC4BF" + brightWhite: "#E7E9DB" +meta: + mode: "dark" + accent: "orange" + hue: 329 + contrast: + fg: 47.5 + black: 7.7 + red: 40.3 + green: 49.9 + yellow: 57.5 + blue: 53.7 + magenta: 22.8 + cyan: 59.1 + white: 60.3 + brightBlack: 24.8 + brightRed: 40.3 + brightGreen: 49.9 + brightYellow: 73.4 + brightBlue: 53.7 + brightMagenta: 22.8 + brightCyan: 59.1 + brightWhite: 89.9 diff --git a/themes/base16-paraiso-light.yaml b/themes/base16-paraiso-light.yaml new file mode 100644 index 00000000..81b78c2c --- /dev/null +++ b/themes/base16-paraiso-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Paraiso Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#E7E9DB" + fg: "#4F424C" + black: "#A39E9B" + red: "#EF6155" + green: "#48B685" + yellow: "#F99B15" + blue: "#06B6EF" + magenta: "#815BA4" + cyan: "#5BC4BF" + white: "#41323F" + brightBlack: "#8D8687" + brightRed: "#EF6155" + brightGreen: "#48B685" + brightYellow: "#FEC418" + brightBlue: "#06B6EF" + brightMagenta: "#815BA4" + brightCyan: "#5BC4BF" + brightWhite: "#2F1E2E" +meta: + mode: "light" + accent: "orange" + hue: 113 + contrast: + fg: 78.1 + black: 37.8 + red: 44.9 + green: 35.5 + yellow: 28.2 + blue: 31.8 + magenta: 62.3 + cyan: 26.6 + white: 83.6 + brightBlack: 49.4 + brightRed: 44.9 + brightGreen: 35.5 + brightYellow: 13 + brightBlue: 31.8 + brightMagenta: 62.3 + brightCyan: 26.6 + brightWhite: 88.7 diff --git a/themes/base16-pop-dark.yaml b/themes/base16-pop-dark.yaml new file mode 100644 index 00000000..8019b655 --- /dev/null +++ b/themes/base16-pop-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Pop Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#000000" + fg: "#D0D0D0" + black: "#303030" + red: "#EB008A" + green: "#37B349" + yellow: "#F29333" + blue: "#0E5A94" + magenta: "#B31E8D" + cyan: "#00AABB" + white: "#E0E0E0" + brightBlack: "#505050" + brightRed: "#EB008A" + brightGreen: "#37B349" + brightYellow: "#F8CA12" + brightBlue: "#0E5A94" + brightMagenta: "#B31E8D" + brightCyan: "#00AABB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 78.1 + black: 0 + red: 34.8 + green: 49.6 + yellow: 56.4 + blue: 17.4 + magenta: 23.3 + cyan: 48.4 + white: 87.9 + brightBlack: 14.2 + brightRed: 34.8 + brightGreen: 49.6 + brightYellow: 77.6 + brightBlue: 17.4 + brightMagenta: 23.3 + brightCyan: 48.4 + brightWhite: 107.9 diff --git a/themes/base16-pop-light.yaml b/themes/base16-pop-light.yaml new file mode 100644 index 00000000..efcea4bc --- /dev/null +++ b/themes/base16-pop-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Pop Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#FFFFFF" + fg: "#303030" + black: "#D0D0D0" + red: "#EB008A" + green: "#37B349" + yellow: "#F29333" + blue: "#0E5A94" + magenta: "#B31E8D" + cyan: "#00AABB" + white: "#202020" + brightBlack: "#B0B0B0" + brightRed: "#EB008A" + brightGreen: "#37B349" + brightYellow: "#F8CA12" + brightBlue: "#0E5A94" + brightMagenta: "#B31E8D" + brightCyan: "#00AABB" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 99.6 + black: 25 + red: 66.9 + green: 52.3 + yellow: 45.7 + blue: 84.6 + magenta: 78.5 + cyan: 53.4 + white: 103.3 + brightBlack: 42.7 + brightRed: 66.9 + brightGreen: 52.3 + brightYellow: 25.5 + brightBlue: 84.6 + brightMagenta: 78.5 + brightCyan: 53.4 + brightWhite: 106 diff --git a/themes/base16-railscasts-dark.yaml b/themes/base16-railscasts-dark.yaml new file mode 100644 index 00000000..aab8c1d0 --- /dev/null +++ b/themes/base16-railscasts-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Railscasts Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#2B2B2B" + fg: "#E6E1DC" + black: "#3A4055" + red: "#DA4939" + green: "#A5C261" + yellow: "#CC7833" + blue: "#6D9CBE" + magenta: "#B6B3EB" + cyan: "#519F50" + white: "#F4F1ED" + brightBlack: "#5A647E" + brightRed: "#DA4939" + brightGreen: "#A5C261" + brightYellow: "#FFC66D" + brightBlue: "#6D9CBE" + brightMagenta: "#B6B3EB" + brightCyan: "#519F50" + brightWhite: "#F9F7F3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 84.9 + black: 0 + red: 29.7 + green: 59.6 + yellow: 37.3 + blue: 42 + magenta: 60.3 + cyan: 37.9 + white: 94.9 + brightBlack: 18.3 + brightRed: 29.7 + brightGreen: 59.6 + brightYellow: 73.9 + brightBlue: 42 + brightMagenta: 60.3 + brightCyan: 37.9 + brightWhite: 98.7 diff --git a/themes/base16-railscasts-light.yaml b/themes/base16-railscasts-light.yaml new file mode 100644 index 00000000..73c9f513 --- /dev/null +++ b/themes/base16-railscasts-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Railscasts Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#F9F7F3" + fg: "#3A4055" + black: "#E6E1DC" + red: "#DA4939" + green: "#A5C261" + yellow: "#CC7833" + blue: "#6D9CBE" + magenta: "#B6B3EB" + cyan: "#519F50" + white: "#272935" + brightBlack: "#D4CFC9" + brightRed: "#DA4939" + brightGreen: "#A5C261" + brightYellow: "#FFC66D" + brightBlue: "#6D9CBE" + brightMagenta: "#B6B3EB" + brightCyan: "#519F50" + brightWhite: "#2B2B2B" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 89.2 + black: 10.1 + red: 63.2 + green: 34 + yellow: 55.7 + blue: 51.1 + magenta: 33.4 + cyan: 55.1 + white: 96.5 + brightBlack: 20.5 + brightRed: 63.2 + brightGreen: 34 + brightYellow: 20.5 + brightBlue: 51.1 + brightMagenta: 33.4 + brightCyan: 55.1 + brightWhite: 96.2 diff --git a/themes/base16-shapeshifter-dark.yaml b/themes/base16-shapeshifter-dark.yaml new file mode 100644 index 00000000..53088fd5 --- /dev/null +++ b/themes/base16-shapeshifter-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Shapeshifter Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#000000" + fg: "#ABABAB" + black: "#102015" + red: "#E92F2F" + green: "#0ED839" + yellow: "#E09448" + blue: "#3B48E3" + magenta: "#F996E2" + cyan: "#23EDDA" + white: "#E0E0E0" + brightBlack: "#343434" + brightRed: "#E92F2F" + brightGreen: "#0ED839" + brightYellow: "#DDDD13" + brightBlue: "#3B48E3" + brightMagenta: "#F996E2" + brightCyan: "#23EDDA" + brightWhite: "#F9F9F9" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 56.8 + black: 0 + red: 33.9 + green: 66.4 + yellow: 53.7 + blue: 20.4 + magenta: 63.8 + cyan: 81.3 + white: 87.9 + brightBlack: 0 + brightRed: 33.9 + brightGreen: 66.4 + brightYellow: 81.9 + brightBlue: 20.4 + brightMagenta: 63.8 + brightCyan: 81.3 + brightWhite: 103.9 diff --git a/themes/base16-shapeshifter-light.yaml b/themes/base16-shapeshifter-light.yaml new file mode 100644 index 00000000..ebd8b98e --- /dev/null +++ b/themes/base16-shapeshifter-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Shapeshifter Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#F9F9F9" + fg: "#102015" + black: "#ABABAB" + red: "#E92F2F" + green: "#0ED839" + yellow: "#E09448" + blue: "#3B48E3" + magenta: "#F996E2" + cyan: "#23EDDA" + white: "#040404" + brightBlack: "#555555" + brightRed: "#E92F2F" + brightGreen: "#0ED839" + brightYellow: "#DDDD13" + brightBlue: "#3B48E3" + brightMagenta: "#F996E2" + brightCyan: "#23EDDA" + brightWhite: "#000000" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 100.2 + black: 41.7 + red: 64.2 + green: 32.5 + yellow: 44.7 + blue: 77.9 + magenta: 34.9 + cyan: 18.4 + white: 102.4 + brightBlack: 82.3 + brightRed: 64.2 + brightGreen: 32.5 + brightYellow: 17.9 + brightBlue: 77.9 + brightMagenta: 34.9 + brightCyan: 18.4 + brightWhite: 102.5 diff --git a/themes/base16-solarized-dark.yaml b/themes/base16-solarized-dark.yaml new file mode 100644 index 00000000..5e1d65c1 --- /dev/null +++ b/themes/base16-solarized-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Solarized Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#002B36" + fg: "#93A1A1" + black: "#586E75" + red: "#DC322F" + green: "#859900" + yellow: "#CB4B16" + blue: "#268BD2" + magenta: "#6C71C4" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#657B83" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#6C71C4" + brightCyan: "#2AA198" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 46.4 + black: 21.5 + red: 27.7 + green: 39.2 + yellow: 27.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 89.5 + brightBlack: 27.3 + brightRed: 27.7 + brightGreen: 39.2 + brightYellow: 39.2 + brightBlue: 34.3 + brightMagenta: 28 + brightCyan: 40 + brightWhite: 98.6 diff --git a/themes/base16-solarized-light.yaml b/themes/base16-solarized-light.yaml new file mode 100644 index 00000000..2dcd4dae --- /dev/null +++ b/themes/base16-solarized-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Solarized Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#FDF6E3" + fg: "#586E75" + black: "#93A1A1" + red: "#DC322F" + green: "#859900" + yellow: "#CB4B16" + blue: "#268BD2" + magenta: "#6C71C4" + cyan: "#2AA198" + white: "#073642" + brightBlack: "#839496" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#6C71C4" + brightCyan: "#2AA198" + brightWhite: "#002B36" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 71.6 + black: 46.7 + red: 65.3 + green: 53.8 + yellow: 65.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 93.7 + brightBlack: 53.5 + brightRed: 65.3 + brightGreen: 53.8 + brightYellow: 53.8 + brightBlue: 58.7 + brightMagenta: 65 + brightCyan: 53.1 + brightWhite: 96.4 diff --git a/themes/base16-summerfruit-dark.yaml b/themes/base16-summerfruit-dark.yaml new file mode 100644 index 00000000..d9340d87 --- /dev/null +++ b/themes/base16-summerfruit-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Summerfruit Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#151515" + fg: "#D0D0D0" + black: "#303030" + red: "#FF0086" + green: "#00C918" + yellow: "#FD8900" + blue: "#3777E6" + magenta: "#AD00A1" + cyan: "#1FAAAA" + white: "#E0E0E0" + brightBlack: "#505050" + brightRed: "#FF0086" + brightGreen: "#00C918" + brightYellow: "#ABA800" + brightBlue: "#3777E6" + brightMagenta: "#AD00A1" + brightCyan: "#1FAAAA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 77.2 + black: 0 + red: 38.7 + green: 58.1 + yellow: 54.6 + blue: 32 + magenta: 21.7 + cyan: 47 + white: 87.1 + brightBlack: 13.4 + brightRed: 38.7 + brightGreen: 58.1 + brightYellow: 51.9 + brightBlue: 32 + brightMagenta: 21.7 + brightCyan: 47 + brightWhite: 107.1 diff --git a/themes/base16-summerfruit-light.yaml b/themes/base16-summerfruit-light.yaml new file mode 100644 index 00000000..56255b6a --- /dev/null +++ b/themes/base16-summerfruit-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Summerfruit Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#FFFFFF" + fg: "#101010" + black: "#D0D0D0" + red: "#FF0086" + green: "#00C918" + yellow: "#FD8900" + blue: "#3777E6" + magenta: "#AD00A1" + cyan: "#1FAAAA" + white: "#151515" + brightBlack: "#B0B0B0" + brightRed: "#FF0086" + brightGreen: "#00C918" + brightYellow: "#ABA800" + brightBlue: "#3777E6" + brightMagenta: "#AD00A1" + brightCyan: "#1FAAAA" + brightWhite: "#202020" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 105.5 + black: 25 + red: 62.2 + green: 43.3 + yellow: 46.6 + blue: 68.9 + magenta: 79.3 + cyan: 54 + white: 104.9 + brightBlack: 42.7 + brightRed: 62.2 + brightGreen: 43.3 + brightYellow: 49.2 + brightBlue: 68.9 + brightMagenta: 79.3 + brightCyan: 54 + brightWhite: 103.3 diff --git a/themes/base16-tomorrow-dark.yaml b/themes/base16-tomorrow-dark.yaml new file mode 100644 index 00000000..21116d40 --- /dev/null +++ b/themes/base16-tomorrow-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Tomorrow Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#1D1F21" + fg: "#D6D6D6" + black: "#4D4D4C" + red: "#C82829" + green: "#718C00" + yellow: "#F5871F" + blue: "#4271AE" + magenta: "#8959A8" + cyan: "#3E999F" + white: "#E0E0E0" + brightBlack: "#969896" + brightRed: "#C82829" + brightGreen: "#718C00" + brightYellow: "#EAB700" + brightBlue: "#4271AE" + brightMagenta: "#8959A8" + brightCyan: "#3E999F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.8 + black: 11.1 + red: 23.8 + green: 33.9 + yellow: 51.3 + blue: 25.4 + magenta: 24.4 + cyan: 39 + white: 85.9 + brightBlack: 44.4 + brightRed: 23.8 + brightGreen: 33.9 + brightYellow: 65.7 + brightBlue: 25.4 + brightMagenta: 24.4 + brightCyan: 39 + brightWhite: 105.9 diff --git a/themes/base16-tomorrow-light.yaml b/themes/base16-tomorrow-light.yaml new file mode 100644 index 00000000..0a4fc4dc --- /dev/null +++ b/themes/base16-tomorrow-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Tomorrow Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#FFFFFF" + fg: "#4D4D4C" + black: "#D6D6D6" + red: "#C82829" + green: "#718C00" + yellow: "#F5871F" + blue: "#4271AE" + magenta: "#8959A8" + cyan: "#3E999F" + white: "#282A2E" + brightBlack: "#8E908C" + brightRed: "#C82829" + brightGreen: "#718C00" + brightYellow: "#EAB700" + brightBlue: "#4271AE" + brightMagenta: "#8959A8" + brightCyan: "#3E999F" + brightWhite: "#1D1F21" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 89.2 + black: 21.6 + red: 76 + green: 65.8 + yellow: 48.7 + blue: 74.3 + magenta: 75.4 + cyan: 60.7 + white: 101.1 + brightBlack: 59.5 + brightRed: 76 + brightGreen: 65.8 + brightYellow: 34.9 + brightBlue: 74.3 + brightMagenta: 75.4 + brightCyan: 60.7 + brightWhite: 103.5 diff --git a/themes/base16-twilight-dark.yaml b/themes/base16-twilight-dark.yaml new file mode 100644 index 00000000..db0b209c --- /dev/null +++ b/themes/base16-twilight-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Twilight Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#1E1E1E" + fg: "#A7A7A7" + black: "#464B50" + red: "#CF6A4C" + green: "#8F9D6A" + yellow: "#CDA869" + blue: "#7587A6" + magenta: "#9B859D" + cyan: "#AFC4DB" + white: "#C3C3C3" + brightBlack: "#5F5A60" + brightRed: "#CF6A4C" + brightGreen: "#8F9D6A" + brightYellow: "#F9EE98" + brightBlue: "#7587A6" + brightMagenta: "#9B859D" + brightCyan: "#AFC4DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 52.8 + black: 10.3 + red: 36.6 + green: 44.4 + yellow: 56.4 + blue: 35.9 + magenta: 38.7 + cyan: 67.7 + white: 68.5 + brightBlack: 16.9 + brightRed: 36.6 + brightGreen: 44.4 + brightYellow: 93.4 + brightBlue: 35.9 + brightMagenta: 38.7 + brightCyan: 67.7 + brightWhite: 106 diff --git a/themes/base16-twilight-light.yaml b/themes/base16-twilight-light.yaml new file mode 100644 index 00000000..186c4012 --- /dev/null +++ b/themes/base16-twilight-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Twilight Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#FFFFFF" + fg: "#464B50" + black: "#A7A7A7" + red: "#CF6A4C" + green: "#8F9D6A" + yellow: "#CDA869" + blue: "#7587A6" + magenta: "#9B859D" + cyan: "#AFC4DB" + white: "#323537" + brightBlack: "#838184" + brightRed: "#CF6A4C" + brightGreen: "#8F9D6A" + brightYellow: "#F9EE98" + brightBlue: "#7587A6" + brightMagenta: "#9B859D" + brightCyan: "#AFC4DB" + brightWhite: "#1E1E1E" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 90.2 + black: 47.4 + red: 63.2 + green: 55.5 + yellow: 43.9 + blue: 64 + magenta: 61.1 + cyan: 33.1 + white: 98.2 + brightBlack: 66.1 + brightRed: 63.2 + brightGreen: 55.5 + brightYellow: 8.9 + brightBlue: 64 + brightMagenta: 61.1 + brightCyan: 33.1 + brightWhite: 103.6 diff --git a/themes/base16-unikitty-dark.yaml b/themes/base16-unikitty-dark.yaml new file mode 100644 index 00000000..cc77573b --- /dev/null +++ b/themes/base16-unikitty-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Unikitty Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#2E2A31" + fg: "#BCBABE" + black: "#666369" + red: "#D8137F" + green: "#17AD98" + yellow: "#D65407" + blue: "#796AF5" + magenta: "#BB60EA" + cyan: "#149BDA" + white: "#D8D7DA" + brightBlack: "#838085" + brightRed: "#D8137F" + brightGreen: "#17AD98" + brightYellow: "#DC8A0E" + brightBlue: "#796AF5" + brightMagenta: "#BB60EA" + brightCyan: "#149BDA" + brightWhite: "#F5F4F7" +meta: + mode: "dark" + accent: "red" + hue: 311 + contrast: + fg: 61.5 + black: 18.1 + red: 26 + green: 44.2 + yellow: 30.4 + blue: 30.2 + magenta: 35.4 + cyan: 40 + white: 78.5 + brightBlack: 31.1 + brightRed: 26 + brightGreen: 44.2 + brightYellow: 45.3 + brightBlue: 30.2 + brightMagenta: 35.4 + brightCyan: 40 + brightWhite: 96.8 diff --git a/themes/base16-unikitty-light.yaml b/themes/base16-unikitty-light.yaml new file mode 100644 index 00000000..00c0e2da --- /dev/null +++ b/themes/base16-unikitty-light.yaml @@ -0,0 +1,49 @@ +name: "Base16 Unikitty Light" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#FFFFFF" + fg: "#6C696E" + black: "#C4C3C5" + red: "#D8137F" + green: "#17AD98" + yellow: "#D65407" + blue: "#775DFF" + magenta: "#AA17E6" + cyan: "#149BDA" + white: "#4F4B51" + brightBlack: "#A7A5A8" + brightRed: "#D8137F" + brightGreen: "#17AD98" + brightYellow: "#DC8A0E" + brightBlue: "#775DFF" + brightMagenta: "#AA17E6" + brightCyan: "#149BDA" + brightWhite: "#322D34" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 77 + black: 32.1 + red: 71.5 + green: 53.5 + yellow: 67.1 + blue: 69.8 + magenta: 74.3 + cyan: 57.6 + white: 89.4 + brightBlack: 48.1 + brightRed: 71.5 + brightGreen: 53.5 + brightYellow: 52.5 + brightBlue: 69.8 + brightMagenta: 74.3 + brightCyan: 57.6 + brightWhite: 99.9 diff --git a/themes/base16-woodland-dark.yaml b/themes/base16-woodland-dark.yaml new file mode 100644 index 00000000..b6ec4f00 --- /dev/null +++ b/themes/base16-woodland-dark.yaml @@ -0,0 +1,49 @@ +name: "Base16 Woodland Dark" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159085 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" +colors: + bg: "#231E18" + fg: "#CABCB1" + black: "#48413A" + red: "#D35C5C" + green: "#B7BA53" + yellow: "#CA7F32" + blue: "#88A4D3" + magenta: "#BB90E2" + cyan: "#6EB958" + white: "#D7C8BC" + brightBlack: "#9D8B70" + brightRed: "#D35C5C" + brightGreen: "#B7BA53" + brightYellow: "#E0AC16" + brightBlue: "#88A4D3" + brightMagenta: "#BB90E2" + brightCyan: "#6EB958" + brightWhite: "#E4D4C8" +meta: + mode: "dark" + accent: "yellow" + hue: 72 + contrast: + fg: 65.7 + black: 0 + red: 34.4 + green: 60.1 + yellow: 41.1 + blue: 50.4 + magenta: 50 + cyan: 53 + white: 72.8 + brightBlack: 39.4 + brightRed: 34.4 + brightGreen: 60.1 + brightYellow: 59.9 + brightBlue: 50.4 + brightMagenta: 50 + brightCyan: 53 + brightWhite: 80.2 diff --git a/themes/basic-black.yaml b/themes/basic-black.yaml new file mode 100644 index 00000000..b4e36b85 --- /dev/null +++ b/themes/basic-black.yaml @@ -0,0 +1,49 @@ +name: "basic_black" +source: + marketplace_id: "Alencar26.dk-bee" + version: "0.0.2" + installs: 817 + author: "André Alencar" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Alencar26.dk-bee" +colors: + bg: "#090909" + fg: "#F8F8F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 102.9 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/basic-blue.yaml b/themes/basic-blue.yaml new file mode 100644 index 00000000..7278bd14 --- /dev/null +++ b/themes/basic-blue.yaml @@ -0,0 +1,49 @@ +name: "basic blue" +source: + marketplace_id: "guicastro13.onebitcode-theme" + version: "0.0.5" + installs: 2293 + author: "guicastro13" + repo: "https://github.com/guicastro13/onebitcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" +colors: + bg: "#292C3E" + fg: "#B4B4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + contrast: + fg: 57.3 + black: 0 + red: 23.3 + green: 49.5 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.6 diff --git a/themes/basterdized.yaml b/themes/basterdized.yaml new file mode 100644 index 00000000..f510cef7 --- /dev/null +++ b/themes/basterdized.yaml @@ -0,0 +1,49 @@ +name: "Basterdized" +source: + marketplace_id: "nashpatty.basterdized" + version: "1.0.0" + installs: 114 + author: "nashpatty" + repo: "https://github.com/nashpatty/vs-code-basterdized" + url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.basterdized" +colors: + bg: "#1E1F20" + fg: "#839496" + black: "#000000" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#FDF6E3" + brightBlack: "#000000" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#D33682" + brightCyan: "#2AA198" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 41 + black: 0 + red: 29.2 + green: 40.7 + yellow: 40.7 + blue: 35.8 + magenta: 29.4 + cyan: 41.5 + white: 100.1 + brightBlack: 0 + brightRed: 29.2 + brightGreen: 40.7 + brightYellow: 40.7 + brightBlue: 35.8 + brightMagenta: 29.4 + brightCyan: 41.5 + brightWhite: 100.1 diff --git a/themes/bat.yaml b/themes/bat.yaml new file mode 100644 index 00000000..b5d12414 --- /dev/null +++ b/themes/bat.yaml @@ -0,0 +1,49 @@ +name: "bat" +source: + marketplace_id: "JohannesFreutel.bat" + version: "0.0.12" + installs: 3383 + author: "JohannesFreutel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.bat" +colors: + bg: "#000308" + fg: "#008EA4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 244 + contrast: + fg: 36 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/batsignal-light-color-theme.yaml b/themes/batsignal-light-color-theme.yaml new file mode 100644 index 00000000..fbe62cd1 --- /dev/null +++ b/themes/batsignal-light-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Batsignal-light-color-theme" +source: + marketplace_id: "tamagui.batsignal" + version: "0.0.9" + installs: 2046 + author: "tamagui" + repo: "https://github.com/natew/batsignal" + url: "https://marketplace.visualstudio.com/items?itemName=tamagui.batsignal" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#FF0032" + green: "#00FF68" + yellow: "#FFCA00" + blue: "#5A5A5A" + magenta: "#7D46FC" + cyan: "#00D2FF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0032" + brightGreen: "#00FF68" + brightYellow: "#FFCA00" + brightBlue: "#7A7A7A" + brightMagenta: "#7D46FC" + brightCyan: "#00D2FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 106 + black: 106 + red: 63.9 + green: 16.5 + yellow: 24.4 + blue: 83.9 + magenta: 74 + cyan: 32.7 + white: 0 + brightBlack: 106 + brightRed: 63.9 + brightGreen: 16.5 + brightYellow: 24.4 + brightBlue: 69.7 + brightMagenta: 74 + brightCyan: 32.7 + brightWhite: 0 diff --git a/themes/bazmatheme.yaml b/themes/bazmatheme.yaml new file mode 100644 index 00000000..ecf58c2f --- /dev/null +++ b/themes/bazmatheme.yaml @@ -0,0 +1,49 @@ +name: "BazmaTheme" +source: + marketplace_id: "bayupriyambada.bazma-theme" + version: "0.0.1" + installs: 49 + author: "bayu priyambada" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=bayupriyambada.bazma-theme" +colors: + bg: "#000000" + fg: "#C07A0E" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 39.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/bazutya.yaml b/themes/bazutya.yaml new file mode 100644 index 00000000..c8485801 --- /dev/null +++ b/themes/bazutya.yaml @@ -0,0 +1,49 @@ +name: "Bazutya" +source: + marketplace_id: "bazutya.bazutya" + version: "0.0.5" + installs: 692 + author: "Bazutya" + repo: "https://github.com/kotuck/bazutya" + url: "https://marketplace.visualstudio.com/items?itemName=bazutya.bazutya" +colors: + bg: "#202030" + fg: "#D5D5E8" + black: "#2A2A3F" + red: "#BA0E2E" + green: "#9D50BA" + yellow: "#EE4266" + blue: "#FFD23F" + magenta: "#F3FCF0" + cyan: "#EE4266" + white: "#9F9FBC" + brightBlack: "#49496D" + brightRed: "#F03E5F" + brightGreen: "#C699D7" + brightYellow: "#F6A0B2" + brightBlue: "#FFEAA5" + brightMagenta: "#FFFFFF" + brightCyan: "#F6A0B2" + brightWhite: "#CCCCDC" +meta: + mode: "dark" + accent: "orange" + hue: 284 + contrast: + fg: 79.6 + black: 0 + red: 19.1 + green: 25.9 + yellow: 35.6 + blue: 80 + magenta: 101.7 + cyan: 35.6 + white: 49.2 + brightBlack: 10.5 + brightRed: 35.4 + brightGreen: 53.5 + brightYellow: 61.9 + brightBlue: 92.3 + brightMagenta: 105.5 + brightCyan: 61.9 + brightWhite: 74 diff --git a/themes/bbbalabamasuntan.yaml b/themes/bbbalabamasuntan.yaml new file mode 100644 index 00000000..fc3398cf --- /dev/null +++ b/themes/bbbalabamasuntan.yaml @@ -0,0 +1,49 @@ +name: "BBBAlabamaSuntan" +source: + marketplace_id: "cmjchrisjones1.bbbthemes" + version: "0.1.9" + installs: 351 + author: "cmjchrisjones" + repo: "https://github.com/cmjchrisjones/BBBThemes" + url: "https://marketplace.visualstudio.com/items?itemName=cmjchrisjones1.bbbthemes" +colors: + bg: "#FF0000" + fg: "#FFFF00" + black: "#FF0000" + red: "#FF0000" + green: "#FF0000" + yellow: "#FF0000" + blue: "#FF0000" + magenta: "#FF0000" + cyan: "#FF0000" + white: "#FF0000" + brightBlack: "#FF0000" + brightRed: "#FF0000" + brightGreen: "#FF0000" + brightYellow: "#FF0000" + brightBlue: "#FF0000" + brightMagenta: "#FF0000" + brightCyan: "#FF0000" + brightWhite: "#FF0000" +meta: + mode: "light" + accent: "orange" + hue: 29 + contrast: + fg: 64.4 + black: 0 + red: 0 + green: 0 + yellow: 0 + blue: 0 + magenta: 0 + cyan: 0 + white: 0 + brightBlack: 0 + brightRed: 0 + brightGreen: 0 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/bbbdark.yaml b/themes/bbbdark.yaml new file mode 100644 index 00000000..8a5ad89b --- /dev/null +++ b/themes/bbbdark.yaml @@ -0,0 +1,49 @@ +name: "BBBDark" +source: + marketplace_id: "cmjchrisjones1.bbbthemes" + version: "0.1.9" + installs: 351 + author: "cmjchrisjones" + repo: "https://github.com/cmjchrisjones/BBBThemes" + url: "https://marketplace.visualstudio.com/items?itemName=cmjchrisjones1.bbbthemes" +colors: + bg: "#000000" + fg: "#000000" + black: "#000000" + red: "#000000" + green: "#000000" + yellow: "#000000" + blue: "#000000" + magenta: "#000000" + cyan: "#000000" + white: "#000000" + brightBlack: "#000000" + brightRed: "#000000" + brightGreen: "#000000" + brightYellow: "#000000" + brightBlue: "#000000" + brightMagenta: "#000000" + brightCyan: "#000000" + brightWhite: "#000000" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 0 + black: 0 + red: 0 + green: 0 + yellow: 0 + blue: 0 + magenta: 0 + cyan: 0 + white: 0 + brightBlack: 0 + brightRed: 0 + brightGreen: 0 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/bbbhotdogstand.yaml b/themes/bbbhotdogstand.yaml new file mode 100644 index 00000000..7231ff2e --- /dev/null +++ b/themes/bbbhotdogstand.yaml @@ -0,0 +1,49 @@ +name: "BBBHotDogStand" +source: + marketplace_id: "cmjchrisjones1.bbbthemes" + version: "0.1.9" + installs: 351 + author: "cmjchrisjones" + repo: "https://github.com/cmjchrisjones/BBBThemes" + url: "https://marketplace.visualstudio.com/items?itemName=cmjchrisjones1.bbbthemes" +colors: + bg: "#FF1100" + fg: "#E1AD01" + black: "#FF1100" + red: "#FF1100" + green: "#FF1100" + yellow: "#FF1100" + blue: "#FF1100" + magenta: "#FF1100" + cyan: "#FF1100" + white: "#FF1100" + brightBlack: "#FF1100" + brightRed: "#FF1100" + brightGreen: "#FF1100" + brightYellow: "#FF1100" + brightBlue: "#FF1100" + brightMagenta: "#FF1100" + brightCyan: "#FF1100" + brightWhite: "#FF1100" +meta: + mode: "light" + accent: "orange" + hue: 30 + contrast: + fg: 23.9 + black: 0 + red: 0 + green: 0 + yellow: 0 + blue: 0 + magenta: 0 + cyan: 0 + white: 0 + brightBlack: 0 + brightRed: 0 + brightGreen: 0 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/bbogdanov-dark.yaml b/themes/bbogdanov-dark.yaml new file mode 100644 index 00000000..5ff0f260 --- /dev/null +++ b/themes/bbogdanov-dark.yaml @@ -0,0 +1,49 @@ +name: "BBogdanov Dark" +source: + marketplace_id: "BBogdanov.bbogdanov-color-themes" + version: "1.0.1" + installs: 679 + author: "BBogdanov" + repo: "https://github.com/bbogdanov/bbogdanov-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=BBogdanov.bbogdanov-color-themes" +colors: + bg: "#444847" + fg: "#E0E2DD" + black: "#444847" + red: "#E29288" + green: "#A4CC78" + yellow: "#DBB66D" + blue: "#7EB9D0" + magenta: "#C08DA4" + cyan: "#71CA98" + white: "#CACCC8" + brightBlack: "#5A5E5C" + brightRed: "#E4A572" + brightGreen: "#71CA98" + brightYellow: "#DBB66D" + brightBlue: "#7EB9D0" + brightMagenta: "#C08DA4" + brightCyan: "#71CA98" + brightWhite: "#E0E2DD" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 76.5 + black: 0 + red: 42.5 + green: 56.3 + yellow: 53.6 + blue: 47.8 + magenta: 36.4 + cyan: 52.2 + white: 63.1 + brightBlack: 0 + brightRed: 48.8 + brightGreen: 52.2 + brightYellow: 53.6 + brightBlue: 47.8 + brightMagenta: 36.4 + brightCyan: 52.2 + brightWhite: 76.5 diff --git a/themes/bbogdanov-light.yaml b/themes/bbogdanov-light.yaml new file mode 100644 index 00000000..3528ef8f --- /dev/null +++ b/themes/bbogdanov-light.yaml @@ -0,0 +1,49 @@ +name: "BBogdanov Light" +source: + marketplace_id: "BBogdanov.bbogdanov-color-themes" + version: "1.0.1" + installs: 679 + author: "BBogdanov" + repo: "https://github.com/bbogdanov/bbogdanov-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=BBogdanov.bbogdanov-color-themes" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#AB5B51" + green: "#669900" + yellow: "#C49F47" + blue: "#70A4B9" + magenta: "#B2889B" + cyan: "#336600" + white: "#505050" + brightBlack: "#E2E2E2" + brightRed: "#B97B49" + brightGreen: "#336600" + brightYellow: "#C49F47" + brightBlue: "#70A4B9" + brightMagenta: "#B2889B" + brightCyan: "#336600" + brightWhite: "#333333" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 98.7 + black: 0 + red: 73.2 + green: 61.6 + yellow: 49 + blue: 52.7 + magenta: 57.3 + cyan: 83.6 + white: 88 + brightBlack: 14.7 + brightRed: 62.4 + brightGreen: 83.6 + brightYellow: 49 + brightBlue: 52.7 + brightMagenta: 57.3 + brightCyan: 83.6 + brightWhite: 98.7 diff --git a/themes/bc-theme.yaml b/themes/bc-theme.yaml new file mode 100644 index 00000000..734a3bb4 --- /dev/null +++ b/themes/bc-theme.yaml @@ -0,0 +1,49 @@ +name: "BC-Theme" +source: + marketplace_id: "CodeWithMitch.bc-code-theme" + version: "0.0.1" + installs: 187 + author: "CodeWithMitch" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CodeWithMitch.bc-code-theme" +colors: + bg: "#030C1B" + fg: "#2FF533" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 81.3 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/beach-vibes.yaml b/themes/beach-vibes.yaml new file mode 100644 index 00000000..fd783fc5 --- /dev/null +++ b/themes/beach-vibes.yaml @@ -0,0 +1,49 @@ +name: "Beach Vibes" +source: + marketplace_id: "dward1502.beach-vibes" + version: "0.0.1" + installs: 358 + author: "dward1502" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dward1502.beach-vibes" +colors: + bg: "#0D1124" + fg: "#CA2DEA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 273 + contrast: + fg: 34.2 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/beacrisg.yaml b/themes/beacrisg.yaml new file mode 100644 index 00000000..91384283 --- /dev/null +++ b/themes/beacrisg.yaml @@ -0,0 +1,49 @@ +name: "Beacrisg" +source: + marketplace_id: "BeatrizGoncalves.bia-goncalves-theme" + version: "0.0.5" + installs: 36 + author: "BeatrizGoncalves" + repo: "https://github.com/robianchini/biacrisg-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BeatrizGoncalves.bia-goncalves-theme" +colors: + bg: "#130819" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 313 + contrast: + fg: 80.2 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.3 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/becolors.yaml b/themes/becolors.yaml new file mode 100644 index 00000000..8c57f880 --- /dev/null +++ b/themes/becolors.yaml @@ -0,0 +1,49 @@ +name: "becolors" +source: + marketplace_id: "goodhartsmusic.becolour" + version: "1.0.1" + installs: 17 + author: "goodhartsmusic" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=goodhartsmusic.becolour" +colors: + bg: "#000000" + fg: "#113814" + black: "#383838" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#7B7B7B" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 0 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 32.4 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/bedarx-obsidian.yaml b/themes/bedarx-obsidian.yaml new file mode 100644 index 00000000..e6058cb6 --- /dev/null +++ b/themes/bedarx-obsidian.yaml @@ -0,0 +1,49 @@ +name: "BedarX Obsidian" +source: + marketplace_id: "saqibbedar.bedarx-pro" + version: "2.0.0" + installs: 136 + author: "saqibbedar" + repo: "https://github.com/saqibbedar/BedarX-Pro" + url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" +colors: + bg: "#14141A" + fg: "#E8E8EF" + black: "#3B3B4B" + red: "#E06B74" + green: "#7EC699" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#C8C8D0" + brightBlack: "#505060" + brightRed: "#E88490" + brightGreen: "#98D4B0" + brightYellow: "#EDD49B" + brightBlue: "#7EC3FF" + brightMagenta: "#D6A0E8" + brightCyan: "#7DCBD0" + brightWhite: "#E8E8EF" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 92.5 + black: 0 + red: 42 + green: 62.6 + yellow: 70.8 + blue: 54.9 + magenta: 45.4 + cyan: 54.8 + white: 72.9 + brightBlack: 13.9 + brightRed: 51 + brightGreen: 71.8 + brightYellow: 81.2 + brightBlue: 66.1 + brightMagenta: 60.7 + brightCyan: 66.9 + brightWhite: 92.5 diff --git a/themes/bedarx-onyx.yaml b/themes/bedarx-onyx.yaml new file mode 100644 index 00000000..254053d3 --- /dev/null +++ b/themes/bedarx-onyx.yaml @@ -0,0 +1,49 @@ +name: "BedarX Onyx" +source: + marketplace_id: "saqibbedar.bedarx-pro" + version: "2.0.0" + installs: 136 + author: "saqibbedar" + repo: "https://github.com/saqibbedar/BedarX-Pro" + url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" +colors: + bg: "#0D0D10" + fg: "#E0E0E5" + black: "#28282F" + red: "#E06B74" + green: "#7EC699" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#C8C8D0" + brightBlack: "#505058" + brightRed: "#E88490" + brightGreen: "#98D4B0" + brightYellow: "#F0B06A" + brightBlue: "#7EC3FF" + brightMagenta: "#D6A0E8" + brightCyan: "#7DCBD0" + brightWhite: "#E0E0E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.8 + black: 0 + red: 42.5 + green: 63.1 + yellow: 71.3 + blue: 55.4 + magenta: 45.9 + cyan: 55.3 + white: 73.4 + brightBlack: 14.1 + brightRed: 51.5 + brightGreen: 72.3 + brightYellow: 66.5 + brightBlue: 66.6 + brightMagenta: 61.2 + brightCyan: 67.4 + brightWhite: 87.8 diff --git a/themes/bedarx-pearl.yaml b/themes/bedarx-pearl.yaml new file mode 100644 index 00000000..5fa99def --- /dev/null +++ b/themes/bedarx-pearl.yaml @@ -0,0 +1,49 @@ +name: "BedarX Pearl" +source: + marketplace_id: "saqibbedar.bedarx-pro" + version: "2.0.0" + installs: 136 + author: "saqibbedar" + repo: "https://github.com/saqibbedar/BedarX-Pro" + url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" +colors: + bg: "#FFFFFF" + fg: "#383840" + black: "#383840" + red: "#D93E4C" + green: "#3D8F5F" + yellow: "#A67C2E" + blue: "#3A7AB8" + magenta: "#9446A8" + cyan: "#2D8A8A" + white: "#E8E8EF" + brightBlack: "#6E6E78" + brightRed: "#E06B74" + brightGreen: "#4BA672" + brightYellow: "#BE8A2D" + brightBlue: "#4A8FCC" + brightMagenta: "#A855A8" + brightCyan: "#3AA0A0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.7 + black: 96.7 + red: 69.5 + green: 66.8 + yellow: 65.3 + blue: 71.1 + magenta: 77.9 + cyan: 67.9 + white: 10.8 + brightBlack: 74.9 + brightRed: 58.9 + brightGreen: 56.5 + brightYellow: 57.3 + brightBlue: 61.8 + brightMagenta: 71.8 + brightCyan: 58 + brightWhite: 0 diff --git a/themes/bedarx-sapphire.yaml b/themes/bedarx-sapphire.yaml new file mode 100644 index 00000000..1099debc --- /dev/null +++ b/themes/bedarx-sapphire.yaml @@ -0,0 +1,49 @@ +name: "BedarX Sapphire" +source: + marketplace_id: "saqibbedar.bedarx-pro" + version: "2.0.0" + installs: 136 + author: "saqibbedar" + repo: "https://github.com/saqibbedar/BedarX-Pro" + url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" +colors: + bg: "#0F1319" + fg: "#D0D8E0" + black: "#303848" + red: "#E5484D" + green: "#4CC38A" + yellow: "#E5C07B" + blue: "#4A90D9" + magenta: "#8A5CCF" + cyan: "#56B6C2" + white: "#B0B8C5" + brightBlack: "#505A68" + brightRed: "#F07178" + brightGreen: "#6CD9A0" + brightYellow: "#F0D090" + brightBlue: "#6AABF0" + brightMagenta: "#A87DE0" + brightCyan: "#7DCBD0" + brightWhite: "#D0D8E0" +meta: + mode: "dark" + accent: "orange" + hue: 258 + contrast: + fg: 81.6 + black: 0 + red: 35.6 + green: 58.2 + yellow: 70.9 + blue: 40.5 + magenta: 29 + cyan: 54.9 + white: 63 + brightBlack: 17.1 + brightRed: 47 + brightGreen: 70.7 + brightYellow: 79.8 + brightBlue: 54 + brightMagenta: 42.7 + brightCyan: 67.1 + brightWhite: 81.6 diff --git a/themes/bee-theme-color-theme-tow.yaml b/themes/bee-theme-color-theme-tow.yaml new file mode 100644 index 00000000..2fc88369 --- /dev/null +++ b/themes/bee-theme-color-theme-tow.yaml @@ -0,0 +1,49 @@ +name: "bee-theme-color-theme-tow" +source: + marketplace_id: "eulukasthyago.bee-theme" + version: "2.0.0" + installs: 1470 + author: "Lucas Tiago" + repo: "https://github.com/webcolmeia/bee-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eulukasthyago.bee-theme" +colors: + bg: "#1A1A1A" + fg: "#EEFFFF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.2 + black: 0 + red: 46.3 + green: 83.9 + yellow: 78.6 + blue: 55.6 + magenta: 53.4 + cyan: 77.9 + white: 106.5 + brightBlack: 10.6 + brightRed: 46.3 + brightGreen: 83.9 + brightYellow: 78.6 + brightBlue: 55.6 + brightMagenta: 53.4 + brightCyan: 77.9 + brightWhite: 106.5 diff --git a/themes/bee-theme.yaml b/themes/bee-theme.yaml new file mode 100644 index 00000000..12fb78c7 --- /dev/null +++ b/themes/bee-theme.yaml @@ -0,0 +1,49 @@ +name: "Bee Theme" +source: + marketplace_id: "eulukasthyago.bee-theme" + version: "2.0.0" + installs: 1470 + author: "Lucas Tiago" + repo: "https://github.com/webcolmeia/bee-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eulukasthyago.bee-theme" +colors: + bg: "#2A2A2A" + fg: "#CCD6DD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#FFC864" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 76.9 + black: 0 + red: 23.9 + green: 50.2 + yellow: 82.8 + blue: 24.6 + magenta: 26.9 + cyan: 44.7 + white: 87.2 + brightBlack: 74.8 + brightRed: 35.7 + brightGreen: 60.7 + brightYellow: 92.8 + brightBlue: 37.2 + brightMagenta: 42.5 + brightCyan: 52.6 + brightWhite: 87.2 diff --git a/themes/beerish.yaml b/themes/beerish.yaml new file mode 100644 index 00000000..e55146e5 --- /dev/null +++ b/themes/beerish.yaml @@ -0,0 +1,49 @@ +name: "Beerish" +source: + marketplace_id: "sjsepan.sjsepan-beerish" + version: "0.0.1" + installs: 36 + author: "sjsepan" + repo: "https://gitlab.com/sjsepan/sjsepan-beerish" + url: "https://marketplace.visualstudio.com/items?itemName=sjsepan.sjsepan-beerish" +colors: + bg: "#FFFFFF" + fg: "#623700" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 93.2 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/behavai-vitesse.yaml b/themes/behavai-vitesse.yaml new file mode 100644 index 00000000..1054ac3b --- /dev/null +++ b/themes/behavai-vitesse.yaml @@ -0,0 +1,49 @@ +name: "Behavai Vitesse" +source: + marketplace_id: "4536251.behavai" + version: "0.1.0" + installs: 109 + author: "Voar" + repo: "https://github.com/EnchantedJoy/Behavai" + url: "https://marketplace.visualstudio.com/items?itemName=4536251.behavai" +colors: + bg: "#272C37" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 82.1 + black: 0 + red: 29.7 + green: 58.4 + yellow: 73.2 + blue: 45.4 + magenta: 43.3 + cyan: 59.4 + white: 89.1 + brightBlack: 12.2 + brightRed: 29.7 + brightGreen: 58.4 + brightYellow: 73.2 + brightBlue: 45.4 + brightMagenta: 43.3 + brightCyan: 57.3 + brightWhite: 93 diff --git a/themes/behavai.yaml b/themes/behavai.yaml new file mode 100644 index 00000000..049a38f0 --- /dev/null +++ b/themes/behavai.yaml @@ -0,0 +1,49 @@ +name: "Behavai" +source: + marketplace_id: "4536251.behavai" + version: "0.1.0" + installs: 109 + author: "Voar" + repo: "https://github.com/EnchantedJoy/Behavai" + url: "https://marketplace.visualstudio.com/items?itemName=4536251.behavai" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#2D3139" + red: "#EC9076" + green: "#98C379" + yellow: "#D7BA7D" + blue: "#528BFF" + magenta: "#8AACEB" + cyan: "#7DCBC4" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#D7BA7D" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#7DCBC4" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 51.2 + green: 59.1 + yellow: 62.9 + blue: 38.3 + magenta: 52.9 + cyan: 63 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 59.1 + brightYellow: 62.9 + brightBlue: 38.3 + brightMagenta: 9.5 + brightCyan: 63 + brightWhite: 79.8 diff --git a/themes/beloco-italic.yaml b/themes/beloco-italic.yaml new file mode 100644 index 00000000..ca721abe --- /dev/null +++ b/themes/beloco-italic.yaml @@ -0,0 +1,49 @@ +name: "Beloco Italic" +source: + marketplace_id: "needcoder.theme-beloco-dark" + version: "1.0.1" + installs: 163 + author: "needcoder" + repo: "https://github.com/needcoder/beloco" + url: "https://marketplace.visualstudio.com/items?itemName=needcoder.theme-beloco-dark" +colors: + bg: "#282C34" + fg: "#A6B6B4" + black: "#42444D" + red: "#FC2E51" + green: "#25A45C" + yellow: "#FF9369" + blue: "#3375FE" + magenta: "#9F7EFE" + cyan: "#4483AA" + white: "#CDD3E0" + brightBlack: "#8F9AAE" + brightRed: "#FF637F" + brightGreen: "#3FC56A" + brightYellow: "#F9C858" + brightBlue: "#10B0FE" + brightMagenta: "#FF78F8" + brightCyan: "#5FB9BC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 56.8 + black: 0 + red: 34.6 + green: 38.7 + yellow: 55.5 + blue: 29.9 + magenta: 40.5 + cyan: 29.2 + white: 75.5 + brightBlack: 43.2 + brightRed: 43.7 + brightGreen: 54.4 + brightYellow: 73.2 + brightBlue: 50.8 + brightMagenta: 54 + brightCyan: 52.8 + brightWhite: 103.7 diff --git a/themes/benimaru.yaml b/themes/benimaru.yaml new file mode 100644 index 00000000..c8896dab --- /dev/null +++ b/themes/benimaru.yaml @@ -0,0 +1,49 @@ +name: "Benimaru" +source: + marketplace_id: "HenriLima05.shadowrealm-rebirth" + version: "1.0.0" + installs: 448 + author: "Henri Lima" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.shadowrealm-rebirth" +colors: + bg: "#1A1A1A" + fg: "#F2F2F2" + black: "#1A1A1A" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 98 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/benlatheme-azure.yaml b/themes/benlatheme-azure.yaml new file mode 100644 index 00000000..48baecae --- /dev/null +++ b/themes/benlatheme-azure.yaml @@ -0,0 +1,49 @@ +name: "BenLaTheme Azure" +source: + marketplace_id: "BenLaTheme.benlatheme" + version: "0.0.1" + installs: 83 + author: "BenLaTheme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=BenLaTheme.benlatheme" +colors: + bg: "#080907" + fg: "#080907" + black: "#080907" + red: "#080907" + green: "#080907" + yellow: "#080907" + blue: "#080907" + magenta: "#080907" + cyan: "#080907" + white: "#080907" + brightBlack: "#080907" + brightRed: "#080907" + brightGreen: "#080907" + brightYellow: "#080907" + brightBlue: "#080907" + brightMagenta: "#080907" + brightCyan: "#080907" + brightWhite: "#080907" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 0 + black: 0 + red: 0 + green: 0 + yellow: 0 + blue: 0 + magenta: 0 + cyan: 0 + white: 0 + brightBlack: 0 + brightRed: 0 + brightGreen: 0 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/benpai-theme-dark.yaml b/themes/benpai-theme-dark.yaml new file mode 100644 index 00000000..948b4309 --- /dev/null +++ b/themes/benpai-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Benpai Theme (Dark)" +source: + marketplace_id: "theRealBenpai.benpai-theme" + version: "1.1.0" + installs: 89 + author: "Sparty182020" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=theRealBenpai.benpai-theme" +colors: + bg: "#151515" + fg: "#FFFFFF" + black: "#242424" + red: "#A10909" + green: "#00A51A" + yellow: "#9F9F05" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CFCFCF" + brightBlack: "#666666" + brightRed: "#FB3030" + brightGreen: "#15FF19" + brightYellow: "#FFFF00" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.1 + black: 0 + red: 15.1 + green: 41.5 + yellow: 46.9 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 76.6 + brightBlack: 22.2 + brightRed: 37.5 + brightGreen: 85.7 + brightYellow: 101.9 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 107.1 diff --git a/themes/berg.yaml b/themes/berg.yaml new file mode 100644 index 00000000..7f82189c --- /dev/null +++ b/themes/berg.yaml @@ -0,0 +1,49 @@ +name: "Berg" +source: + marketplace_id: "stephenedavis17.b" + version: "0.0.3" + installs: 39 + author: "stephenedavis17" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=stephenedavis17.b" +colors: + bg: "#000000" + fg: "#888888" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 38.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/berkeley.yaml b/themes/berkeley.yaml new file mode 100644 index 00000000..a2f4c50e --- /dev/null +++ b/themes/berkeley.yaml @@ -0,0 +1,49 @@ +name: "Berkeley" +source: + marketplace_id: "ocat.berkeley-theme" + version: "1.0.6" + installs: 322 + author: "ocat" + repo: "https://github.com/Coordinate-Cat/berkeley-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ocat.berkeley-theme" +colors: + bg: "#0E0E10" + fg: "#FFFFFF" + black: "#0E0E10" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.6 + black: 0 + red: 27.4 + green: 52.4 + yellow: 43.5 + blue: 15.7 + magenta: 26.8 + cyan: 40.8 + white: 15.8 + brightBlack: 22.7 + brightRed: 27.4 + brightGreen: 61 + brightYellow: 61 + brightBlue: 15.7 + brightMagenta: 26.8 + brightCyan: 40.8 + brightWhite: 53.2 diff --git a/themes/bernadoque-theme.yaml b/themes/bernadoque-theme.yaml new file mode 100644 index 00000000..da7fbbb5 --- /dev/null +++ b/themes/bernadoque-theme.yaml @@ -0,0 +1,49 @@ +name: "Bernadoque Theme" +source: + marketplace_id: "WesleyBernadoque.bernadoque-theme" + version: "0.0.8" + installs: 48 + author: "Wesley Bernadoque" + repo: "https://github.com/WesleyBernadoque/bernadoque-theme" + url: "https://marketplace.visualstudio.com/items?itemName=WesleyBernadoque.bernadoque-theme" +colors: + bg: "#0D0D0D" + fg: "#D4D4D4" + black: "#118A8A" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#66FFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.2 + black: 33.1 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 93.7 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 107.6 diff --git a/themes/berry-blast-theme.yaml b/themes/berry-blast-theme.yaml new file mode 100644 index 00000000..0908cec1 --- /dev/null +++ b/themes/berry-blast-theme.yaml @@ -0,0 +1,49 @@ +name: "berry-blast-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#FF69B4" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: 352 + contrast: + fg: 28.6 + black: 53.2 + red: 21.1 + green: 0 + yellow: 34.7 + blue: 20.4 + magenta: 18.1 + cyan: 0 + white: 39.1 + brightBlack: 25.9 + brightRed: 9.3 + brightGreen: 12.6 + brightYellow: 44.7 + brightBlue: 7.9 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 39.1 diff --git a/themes/berry-latte-light.yaml b/themes/berry-latte-light.yaml new file mode 100644 index 00000000..7a2d0c73 --- /dev/null +++ b/themes/berry-latte-light.yaml @@ -0,0 +1,49 @@ +name: "Berry Latte Light" +source: + marketplace_id: "goncin.berry-latte-light-theme" + version: "1.3.0" + installs: 2486 + author: "Fausto Cintra" + repo: "https://github.com/faustocintra/vscode-berry-latte-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=goncin.berry-latte-light-theme" +colors: + bg: "#FEFDFF" + fg: "#2F4F4F" + black: "#2F4F4F" + red: "#FF6347" + green: "#9ACD32" + yellow: "#DAA520" + blue: "#4169E1" + magenta: "#FF69B4" + cyan: "#66CDAA" + white: "#C0C0C0" + brightBlack: "#666666" + brightRed: "#DC143C" + brightGreen: "#6B8E23" + brightYellow: "#B8860B" + brightBlue: "#4169E1" + brightMagenta: "#C71585" + brightCyan: "#20B2AA" + brightWhite: "#A9A9A9" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 89.4 + black: 89.4 + red: 54 + green: 34.5 + yellow: 42.9 + blue: 72.2 + magenta: 49.8 + cyan: 35.8 + white: 33 + brightBlack: 77.8 + brightRed: 71.2 + brightGreen: 64.4 + brightYellow: 58.6 + brightBlue: 72.2 + brightMagenta: 74 + brightCyan: 49.7 + brightWhite: 45.4 diff --git a/themes/bersk.yaml b/themes/bersk.yaml new file mode 100644 index 00000000..773ff715 --- /dev/null +++ b/themes/bersk.yaml @@ -0,0 +1,49 @@ +name: "Bersk" +source: + marketplace_id: "Bersk.bersk" + version: "1.5.0" + installs: 1545 + author: "Bersk Dark Theme for VS Code" + repo: "https://github.com/gbaierski/bersk-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bersk.bersk" +colors: + bg: "#1C1D1D" + fg: "#FFFFFF" + black: "#1E1F1C" + red: "#FA4DA4" + green: "#1BE7A3" + yellow: "#1BE7A3" + blue: "#23C1FF" + magenta: "#C5A2FD" + cyan: "#23C1FF" + white: "#FFFFFF" + brightBlack: "#1E1F1C" + brightRed: "#FA4DA4" + brightGreen: "#1BE7A3" + brightYellow: "#1BE7A3" + brightBlue: "#23C1FF" + brightMagenta: "#C5A2FD" + brightCyan: "#1BE7A3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 106.2 + black: 0 + red: 42.6 + green: 74.4 + yellow: 74.4 + blue: 60.8 + magenta: 59.4 + cyan: 60.8 + white: 106.2 + brightBlack: 0 + brightRed: 42.6 + brightGreen: 74.4 + brightYellow: 74.4 + brightBlue: 60.8 + brightMagenta: 59.4 + brightCyan: 74.4 + brightWhite: 106.2 diff --git a/themes/beru.yaml b/themes/beru.yaml new file mode 100644 index 00000000..a8c6ba07 --- /dev/null +++ b/themes/beru.yaml @@ -0,0 +1,49 @@ +name: "Beru" +source: + marketplace_id: "FullDev.beru-theme" + version: "1.0.3" + installs: 238 + author: "FullDev" + repo: "https://github.com/getBeru/beru-theme" + url: "https://marketplace.visualstudio.com/items?itemName=FullDev.beru-theme" +colors: + bg: "#101010" + fg: "#BABABA" + black: "#101010" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#8B5CF6" + cyan: "#E87235" + white: "#BABABA" + brightBlack: "#666666" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#8B5CF6" + brightCyan: "#E87235" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 64.7 + black: 0 + red: 37.4 + green: 52.4 + yellow: 60 + blue: 37.3 + magenta: 32.5 + cyan: 44.6 + white: 64.7 + brightBlack: 22.6 + brightRed: 37.4 + brightGreen: 52.4 + brightYellow: 60 + brightBlue: 37.3 + brightMagenta: 32.5 + brightCyan: 44.6 + brightWhite: 104.1 diff --git a/themes/best-themes-monokai-next.yaml b/themes/best-themes-monokai-next.yaml new file mode 100644 index 00000000..158b52aa --- /dev/null +++ b/themes/best-themes-monokai-next.yaml @@ -0,0 +1,49 @@ +name: "Best Themes - Monokai Next" +source: + marketplace_id: "lakshits11.best-themes-redefined" + version: "0.4.6" + installs: 145966 + author: "Lakshit Somani" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=lakshits11.best-themes-redefined" +colors: + bg: "#272822" + fg: "#FDFFF1" + black: "#3B3C35" + red: "#F92672" + green: "#A6E22E" + yellow: "#E6DB74" + blue: "#FD971F" + magenta: "#AE81FF" + cyan: "#66D9EF" + white: "#FDFFF1" + brightBlack: "#6E7066" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E6DB74" + brightBlue: "#FD971F" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#FDFFF1" +meta: + mode: "dark" + accent: "red" + hue: 115 + contrast: + fg: 103.6 + black: 0 + red: 35 + green: 74.7 + yellow: 79.7 + blue: 56.4 + magenta: 44.2 + cyan: 71.1 + white: 103.6 + brightBlack: 23.6 + brightRed: 35 + brightGreen: 74.7 + brightYellow: 79.7 + brightBlue: 56.4 + brightMagenta: 44.2 + brightCyan: 71.1 + brightWhite: 103.6 diff --git a/themes/best-themes-one-monokai.yaml b/themes/best-themes-one-monokai.yaml new file mode 100644 index 00000000..97a1c233 --- /dev/null +++ b/themes/best-themes-one-monokai.yaml @@ -0,0 +1,49 @@ +name: "Best Themes - One Monokai" +source: + marketplace_id: "lakshits11.best-themes-redefined" + version: "0.4.6" + installs: 145966 + author: "Lakshit Somani" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=lakshits11.best-themes-redefined" +colors: + bg: "#1E222A" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E45E69" + green: "#91CB67" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#48BCCB" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#91CB67" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#48BCCB" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 58 + black: 0 + red: 38.1 + green: 63.5 + yellow: 69.2 + blue: 40.1 + magenta: 43.7 + cyan: 55.7 + white: 81.6 + brightBlack: 34.1 + brightRed: 37.1 + brightGreen: 63.5 + brightYellow: 69.2 + brightBlue: 40.1 + brightMagenta: 11.3 + brightCyan: 55.7 + brightWhite: 81.6 diff --git a/themes/better-coding-dark.yaml b/themes/better-coding-dark.yaml new file mode 100644 index 00000000..9771aa1e --- /dev/null +++ b/themes/better-coding-dark.yaml @@ -0,0 +1,49 @@ +name: "Better Coding Dark" +source: + marketplace_id: "nicovy.better-coding-theme" + version: "2.44.0" + installs: 538 + author: "Nicolas V." + repo: "https://github.com/nicovy/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nicovy.better-coding-theme" +colors: + bg: "#201B16" + fg: "#CDCDCD" + black: "#1E2227" + red: "#E06C75" + green: "#68A871" + yellow: "#F8C162" + blue: "#53A1EA" + magenta: "#A086EF" + cyan: "#6FC7F5" + white: "#ABB2BF" + brightBlack: "#6E737B" + brightRed: "#FF7B86" + brightGreen: "#7DC489" + brightYellow: "#FFD97F" + brightBlue: "#73B9FF" + brightMagenta: "#BD9EFF" + brightCyan: "#8FD9FF" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "orange" + hue: 67 + contrast: + fg: 74.7 + black: 0 + red: 41.5 + green: 46.1 + yellow: 73 + blue: 47.5 + magenta: 44.5 + cyan: 65.5 + white: 58.8 + brightBlack: 27 + brightRed: 52 + brightGreen: 60.4 + brightYellow: 84.7 + brightBlue: 60.3 + brightMagenta: 57.2 + brightCyan: 76.3 + brightWhite: 90.1 diff --git a/themes/better-light.yaml b/themes/better-light.yaml new file mode 100644 index 00000000..0431abe8 --- /dev/null +++ b/themes/better-light.yaml @@ -0,0 +1,49 @@ +name: "Better Light" +source: + marketplace_id: "ShizamDaGeek.better-light" + version: "0.0.6" + installs: 43 + author: "ShizamDa_Geek" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ShizamDaGeek.better-light" +colors: + bg: "#D7E3FF" + fg: "#000000" + black: "#868686" + red: "#FF5470" + green: "#33D057" + yellow: "#E1C542" + blue: "#469DF1" + magenta: "#E557F9" + cyan: "#39CDE2" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#FF718A" + brightGreen: "#67FF8A" + brightYellow: "#FFE05B" + brightBlue: "#74BCFF" + brightMagenta: "#EC84FF" + brightCyan: "#74F2FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: 267 + contrast: + fg: 89.4 + black: 47.4 + red: 40.3 + green: 22.5 + yellow: 14 + blue: 37.7 + magenta: 38.7 + cyan: 19.3 + white: 0 + brightBlack: 28.7 + brightRed: 34 + brightGreen: 0 + brightYellow: 0 + brightBlue: 22.5 + brightMagenta: 27.4 + brightCyan: 0 + brightWhite: 16.4 diff --git a/themes/better-oceanic-next.yaml b/themes/better-oceanic-next.yaml new file mode 100644 index 00000000..0de4ba8e --- /dev/null +++ b/themes/better-oceanic-next.yaml @@ -0,0 +1,49 @@ +name: "Better Oceanic Next" +source: + marketplace_id: "SeyMi.better-oceanic-next" + version: "1.1.0" + installs: 324 + author: "SeyMi" + repo: "https://github.com/Hasan-Mir/better-oceanic-next" + url: "https://marketplace.visualstudio.com/items?itemName=SeyMi.better-oceanic-next" +colors: + bg: "#262A30" + fg: "#DFDFDF" + black: "#282C34" + red: "#712F33" + green: "#005144" + yellow: "#BFAE73" + blue: "#93B1EB" + magenta: "#CAA1DB" + cyan: "#5EBDD9" + white: "#DFDFDF" + brightBlack: "#606368" + brightRed: "#E99A9A" + brightGreen: "#61C0AE" + brightYellow: "#BFAE73" + brightBlue: "#93B1EB" + brightMagenta: "#CAA1DB" + brightCyan: "#5EBDD9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "blue" + hue: 258 + contrast: + fg: 83.5 + black: 0 + red: 0 + green: 7.6 + yellow: 55 + blue: 56.1 + magenta: 55.6 + cyan: 56.4 + white: 83.5 + brightBlack: 17.9 + brightRed: 55.3 + brightGreen: 55.9 + brightYellow: 55 + brightBlue: 56.1 + brightMagenta: 55.6 + brightCyan: 56.4 + brightWhite: 104.1 diff --git a/themes/better-selenized-dark.yaml b/themes/better-selenized-dark.yaml new file mode 100644 index 00000000..f54275d9 --- /dev/null +++ b/themes/better-selenized-dark.yaml @@ -0,0 +1,49 @@ +name: "Better Selenized Dark" +source: + marketplace_id: "ginfuru.ginfuru-better-solarized-dark-theme" + version: "0.10.9" + installs: 146723 + author: "Ed Heltzel" + repo: "https://github.com/ginfuru/vscode-better-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.ginfuru-better-solarized-dark-theme" +colors: + bg: "#053D48" + fg: "#C8D7D8" + black: "#FDF6E3" + red: "#FD564E" + green: "#80B83C" + yellow: "#E3B230" + blue: "#0096F5" + magenta: "#F275BE" + cyan: "#39C7B9" + white: "#002B36" + brightBlack: "#FBF3DB" + brightRed: "#ED8649" + brightGreen: "#80B83C" + brightYellow: "#E3B230" + brightBlue: "#ADBCBC" + brightMagenta: "#A58CEC" + brightCyan: "#0096F5" + brightWhite: "#00212B" +meta: + mode: "dark" + accent: "orange" + hue: 215 + contrast: + fg: 73.1 + black: 94.7 + red: 36.6 + green: 48 + yellow: 57.3 + blue: 36.6 + magenta: 44.2 + cyan: 54.4 + white: 0 + brightBlack: 92.7 + brightRed: 44.3 + brightGreen: 48 + brightYellow: 57.3 + brightBlue: 57.2 + brightMagenta: 41 + brightCyan: 36.6 + brightWhite: 0 diff --git a/themes/better-solarized-dark-italic.yaml b/themes/better-solarized-dark-italic.yaml new file mode 100644 index 00000000..cb23d5fb --- /dev/null +++ b/themes/better-solarized-dark-italic.yaml @@ -0,0 +1,49 @@ +name: "Better Solarized Dark Italic" +source: + marketplace_id: "ginfuru.ginfuru-better-solarized-dark-theme" + version: "0.10.9" + installs: 146723 + author: "Ed Heltzel" + repo: "https://github.com/ginfuru/vscode-better-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.ginfuru-better-solarized-dark-theme" +colors: + bg: "#002B36" + fg: "#839496" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#00212B" + brightRed: "#CB4B16" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#268BD2" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 39.5 + black: 0 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 89.5 + brightBlack: 0 + brightRed: 27.2 + brightGreen: 39.2 + brightYellow: 39.2 + brightBlue: 39.5 + brightMagenta: 28 + brightCyan: 34.3 + brightWhite: 98.6 diff --git a/themes/better-solarized-dark.yaml b/themes/better-solarized-dark.yaml new file mode 100644 index 00000000..9517579b --- /dev/null +++ b/themes/better-solarized-dark.yaml @@ -0,0 +1,49 @@ +name: "Better Solarized Dark" +source: + marketplace_id: "joelsantos.darkerized-better-solarized-dark-theme" + version: "0.10.11" + installs: 566 + author: "joelsantos" + repo: "https://github.com/joelsantosjunior/vscode-better-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=joelsantos.darkerized-better-solarized-dark-theme" +colors: + bg: "#002B36" + fg: "#839496" + black: "#EEE8D5" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#073642" + brightBlack: "#FDF6E3" + brightRed: "#CB4B16" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#839496" + brightMagenta: "#565A9C" + brightCyan: "#268BD2" + brightWhite: "#002B36" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 39.5 + black: 89.5 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 0 + brightBlack: 98.6 + brightRed: 27.2 + brightGreen: 39.2 + brightYellow: 39.2 + brightBlue: 39.5 + brightMagenta: 17.2 + brightCyan: 34.3 + brightWhite: 0 diff --git a/themes/betu-dark.yaml b/themes/betu-dark.yaml new file mode 100644 index 00000000..a925a014 --- /dev/null +++ b/themes/betu-dark.yaml @@ -0,0 +1,49 @@ +name: "betu-dark" +source: + marketplace_id: "Betu55.betu-dark-theme" + version: "1.6.1" + installs: 142 + author: "Betu55" + repo: "https://github.com/betu55/Betu-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Betu55.betu-dark-theme" +colors: + bg: "#1E1E1E" + fg: "#4CC9F0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FF6D78" + blue: "#00B4D8" + magenta: "#BC3FBC" + cyan: "#00B4D8" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FF6D78" + brightBlue: "#00B4D8" + brightMagenta: "#D670D6" + brightCyan: "#00B4D8" + brightWhite: "#CF6262" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 64.2 + black: 0 + red: 25.9 + green: 52.2 + yellow: 48 + blue: 52.4 + magenta: 28.9 + cyan: 52.4 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 48 + brightBlue: 52.4 + brightMagenta: 44.5 + brightCyan: 52.4 + brightWhite: 35.1 diff --git a/themes/betu-light.yaml b/themes/betu-light.yaml new file mode 100644 index 00000000..a744f51c --- /dev/null +++ b/themes/betu-light.yaml @@ -0,0 +1,49 @@ +name: "betu-light" +source: + marketplace_id: "Betu55.betu-light-theme" + version: "1.2.0" + installs: 168 + author: "Betu55" + repo: "https://github.com/betu55/Betu-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Betu55.betu-light-theme" +colors: + bg: "#E8E8E8" + fg: "#585858" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#007CFF" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#BC0505" + white: "#555555" + brightBlack: "#000000" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#0093FF" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#BC0505" + brightWhite: "#565656" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 71.1 + black: 92.4 + red: 60.4 + green: 35.6 + yellow: 52.3 + blue: 72.5 + magenta: 61 + cyan: 66.6 + white: 72.3 + brightBlack: 92.4 + brightRed: 60.4 + brightGreen: 27.3 + brightYellow: 44.5 + brightBlue: 72.5 + brightMagenta: 61 + brightCyan: 66.6 + brightWhite: 71.9 diff --git a/themes/bhwm715-even-darker.yaml b/themes/bhwm715-even-darker.yaml new file mode 100644 index 00000000..b9bf49ee --- /dev/null +++ b/themes/bhwm715-even-darker.yaml @@ -0,0 +1,49 @@ +name: "BHWM715 - Even Darker" +source: + marketplace_id: "brian-local.b715xyz" + version: "0.1.0" + installs: 51 + author: "brian-local" + repo: "https://github.com/brian715/b715xyz" + url: "https://marketplace.visualstudio.com/items?itemName=brian-local.b715xyz" +colors: + bg: "#252935" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + contrast: + fg: 76.8 + black: 0 + red: 24 + green: 50.3 + yellow: 82.9 + blue: 24.7 + magenta: 27.1 + cyan: 44.9 + white: 87.3 + brightBlack: 19.4 + brightRed: 35.9 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.3 + brightMagenta: 42.7 + brightCyan: 52.7 + brightWhite: 87.3 diff --git a/themes/bianconero.yaml b/themes/bianconero.yaml new file mode 100644 index 00000000..2be7c032 --- /dev/null +++ b/themes/bianconero.yaml @@ -0,0 +1,49 @@ +name: "BiancoNero" +source: + marketplace_id: "spaceinvadev.bianconero" + version: "0.2.1" + installs: 1474 + author: "Mauro Paternina" + repo: "https://github.com/spaceinvadev/bianconero" + url: "https://marketplace.visualstudio.com/items?itemName=spaceinvadev.bianconero" +colors: + bg: "#FFFFFF" + fg: "#080808" + black: "#080808" + red: "#AD0000" + green: "#172E23" + yellow: "#C2B608" + blue: "#281C6D" + magenta: "#700070" + cyan: "#8CEBE3" + white: "#DDDDDD" + brightBlack: "#080808" + brightRed: "#AD0000" + brightGreen: "#172E23" + brightYellow: "#C2B608" + brightBlue: "#281C6D" + brightMagenta: "#700070" + brightCyan: "#8CEBE3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.9 + black: 105.9 + red: 83.6 + green: 101.2 + yellow: 41 + blue: 100.4 + magenta: 93.2 + cyan: 18.8 + white: 17.6 + brightBlack: 105.9 + brightRed: 83.6 + brightGreen: 101.2 + brightYellow: 41 + brightBlue: 100.4 + brightMagenta: 93.2 + brightCyan: 18.8 + brightWhite: 17.6 diff --git a/themes/bibauporto-gray.yaml b/themes/bibauporto-gray.yaml new file mode 100644 index 00000000..56952dcd --- /dev/null +++ b/themes/bibauporto-gray.yaml @@ -0,0 +1,49 @@ +name: "Bibauporto Gray" +source: + marketplace_id: "bibauporto.bibauporto-theme" + version: "0.1.0" + installs: 12 + author: "bibauporto" + repo: "https://github.com/bibauporto/bibauporto-vs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bibauporto.bibauporto-theme" +colors: + bg: "#0D1117" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 258 + contrast: + fg: 59.9 + black: 9.4 + red: 37.2 + green: 60.9 + yellow: 49.1 + blue: 50.2 + magenta: 39.6 + cyan: 53 + white: 83.6 + brightBlack: 16 + brightRed: 46.6 + brightGreen: 77.3 + brightYellow: 61.7 + brightBlue: 64.3 + brightMagenta: 50.8 + brightCyan: 68.3 + brightWhite: 91.2 diff --git a/themes/bibauporto-simple.yaml b/themes/bibauporto-simple.yaml new file mode 100644 index 00000000..98ce8aa6 --- /dev/null +++ b/themes/bibauporto-simple.yaml @@ -0,0 +1,49 @@ +name: "Bibauporto Simple" +source: + marketplace_id: "bibauporto.bibauporto-theme" + version: "0.1.0" + installs: 12 + author: "bibauporto" + repo: "https://github.com/bibauporto/bibauporto-vs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bibauporto.bibauporto-theme" +colors: + bg: "#000000" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.4 + black: 9.9 + red: 37.7 + green: 61.4 + yellow: 49.6 + blue: 50.7 + magenta: 40.1 + cyan: 53.5 + white: 84 + brightBlack: 16.5 + brightRed: 47.1 + brightGreen: 77.8 + brightYellow: 62.2 + brightBlue: 64.7 + brightMagenta: 51.3 + brightCyan: 68.8 + brightWhite: 91.7 diff --git a/themes/biddeew.yaml b/themes/biddeew.yaml new file mode 100644 index 00000000..6d0c9799 --- /dev/null +++ b/themes/biddeew.yaml @@ -0,0 +1,49 @@ +name: "Biddeew" +source: + marketplace_id: "daoodaba975.taaru" + version: "3.0.0" + installs: 1693 + author: "Daooda" + repo: "https://github.com/daoodaba975/taaru" + url: "https://marketplace.visualstudio.com/items?itemName=daoodaba975.taaru" +colors: + bg: "#0B0E14" + fg: "#BFBDB6" + black: "#11151C" + red: "#EA6C73" + green: "#6CC551" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#DDFC74" + brightYellow: "#9575AA" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 66.5 + black: 0 + red: 44.7 + green: 59.8 + yellow: 67.3 + blue: 61.3 + magenta: 61.3 + cyan: 78.6 + white: 72.4 + brightBlack: 23.6 + brightRed: 47.3 + brightGreen: 97.2 + brightYellow: 35.1 + brightBlue: 64 + brightMagenta: 64.1 + brightCyan: 81.6 + brightWhite: 107.6 diff --git a/themes/bifr-st.yaml b/themes/bifr-st.yaml new file mode 100644 index 00000000..81037ab5 --- /dev/null +++ b/themes/bifr-st.yaml @@ -0,0 +1,49 @@ +name: "Bifröst" +source: + marketplace_id: "TheCodeTherapy.bitfrost-code-theme" + version: "1.0.2" + installs: 58 + author: "TheCodeTherapy" + repo: "https://github.com/TheCodeTherapy/bifrost" + url: "https://marketplace.visualstudio.com/items?itemName=TheCodeTherapy.bitfrost-code-theme" +colors: + bg: "#171245" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 281 + contrast: + fg: 58.8 + black: 8.3 + red: 36.1 + green: 59.8 + yellow: 48 + blue: 49.1 + magenta: 38.5 + cyan: 51.9 + white: 82.5 + brightBlack: 14.9 + brightRed: 45.5 + brightGreen: 76.2 + brightYellow: 60.6 + brightBlue: 63.2 + brightMagenta: 49.7 + brightCyan: 67.2 + brightWhite: 90.1 diff --git a/themes/bigfish.yaml b/themes/bigfish.yaml new file mode 100644 index 00000000..e0ba2468 --- /dev/null +++ b/themes/bigfish.yaml @@ -0,0 +1,49 @@ +name: "BigFish" +source: + marketplace_id: "lemonshark.bigfish" + version: "0.0.1" + installs: 95 + author: "Lemonshark" + repo: "https://github.com/N-Nikolaev/bigfish" + url: "https://marketplace.visualstudio.com/items?itemName=lemonshark.bigfish" +colors: + bg: "#252930" + fg: "#E2E2E2" + black: "#161616" + red: "#995C5E" + green: "#55A171" + yellow: "#C7AD56" + blue: "#5474B8" + magenta: "#9A62A3" + cyan: "#6B9FB3" + white: "#D3D3D3" + brightBlack: "#696969" + brightRed: "#D15C5C" + brightGreen: "#8ADB98" + brightYellow: "#E3CB7B" + brightBlue: "#8CA4DB" + brightMagenta: "#D992DE" + brightCyan: "#A7D8EB" + brightWhite: "#E2E2E2" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 85.5 + black: 0 + red: 22.6 + green: 40.1 + yellow: 55.3 + blue: 26.3 + magenta: 26.9 + cyan: 42.9 + white: 76.3 + brightBlack: 20.7 + brightRed: 32.3 + brightGreen: 70.4 + brightYellow: 72.2 + brightBlue: 49.6 + brightMagenta: 53.2 + brightCyan: 74.7 + brightWhite: 85.5 diff --git a/themes/bigsur-gtk-theme-dark-blue.yaml b/themes/bigsur-gtk-theme-dark-blue.yaml new file mode 100644 index 00000000..ca0e407a --- /dev/null +++ b/themes/bigsur-gtk-theme-dark-blue.yaml @@ -0,0 +1,49 @@ +name: "BigSur GTK Theme (Dark Blue)" +source: + marketplace_id: "zeriax.bigsurgtk-blue" + version: "0.0.2" + installs: 1249 + author: "zeriax" + repo: "https://github.com/zeriaxdev/bigsurgtk-blue" + url: "https://marketplace.visualstudio.com/items?itemName=zeriax.bigsurgtk-blue" +colors: + bg: "#191F22" + fg: "#FBE179" + black: "#050606" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D5F1FF" + brightBlack: "#354147" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#ECF9FF" +meta: + mode: "dark" + accent: "pink" + hue: 229 + contrast: + fg: 87.1 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 94 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 100.6 diff --git a/themes/bini-theme.yaml b/themes/bini-theme.yaml new file mode 100644 index 00000000..10b02aed --- /dev/null +++ b/themes/bini-theme.yaml @@ -0,0 +1,49 @@ +name: "BINI Theme" +source: + marketplace_id: "warengonzaga.bini-theme" + version: "0.0.4" + installs: 595 + author: "Waren Gonzaga" + repo: "https://github.com/warengonzaga/bini-theme" + url: "https://marketplace.visualstudio.com/items?itemName=warengonzaga.bini-theme" +colors: + bg: "#101317" + fg: "#94A3B8" + black: "#191D22" + red: "#F87070" + green: "#37D99E" + yellow: "#FFE59E" + blue: "#7AB0DF" + magenta: "#C397D8" + cyan: "#87BDEC" + white: "#D4D4D5" + brightBlack: "#45484C" + brightRed: "#FF8E8E" + brightGreen: "#79DCAA" + brightYellow: "#FFEDA6" + brightBlue: "#7AB0DF" + brightMagenta: "#C397D8" + brightCyan: "#87BDEC" + brightWhite: "#D4D4D5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 51.1 + black: 0 + red: 48.2 + green: 68.7 + yellow: 91.6 + blue: 56.1 + magenta: 54.1 + cyan: 63.2 + white: 79.9 + brightBlack: 10.5 + brightRed: 58.4 + brightGreen: 73.2 + brightYellow: 95.4 + brightBlue: 56.1 + brightMagenta: 54.1 + brightCyan: 63.2 + brightWhite: 79.9 diff --git a/themes/bird.yaml b/themes/bird.yaml new file mode 100644 index 00000000..ea6d2226 --- /dev/null +++ b/themes/bird.yaml @@ -0,0 +1,49 @@ +name: "bird" +source: + marketplace_id: "indigo.warm" + version: "1.0.1" + installs: 2593 + author: "indigo" + repo: "https://github.com/gabriela-tomazzi/warm-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=indigo.warm" +colors: + bg: "#110D10" + fg: "#E1B473" + black: "#241C22" + red: "#6B7D7A" + green: "#6B7D7A" + yellow: "#DF8038" + blue: "#5F2F45" + magenta: "#5F2F45" + cyan: "#6B7D7A" + white: "#E0D8C9" + brightBlack: "#666666" + brightRed: "#6B7D7A" + brightGreen: "#6B7D7A" + brightYellow: "#DF8038" + brightBlue: "#5F2F45" + brightMagenta: "#5F2F45" + brightCyan: "#6B7D7A" + brightWhite: "#E0D8C9" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 65.7 + black: 0 + red: 31.3 + green: 31.3 + yellow: 46.8 + blue: 7.9 + magenta: 7.9 + cyan: 31.3 + white: 83 + brightBlack: 22.7 + brightRed: 31.3 + brightGreen: 31.3 + brightYellow: 46.8 + brightBlue: 7.9 + brightMagenta: 7.9 + brightCyan: 31.3 + brightWhite: 83 diff --git a/themes/bit-intense.yaml b/themes/bit-intense.yaml new file mode 100644 index 00000000..93ff79de --- /dev/null +++ b/themes/bit-intense.yaml @@ -0,0 +1,49 @@ +name: "Bit Intense" +source: + marketplace_id: "bit-theme.bit-theme" + version: "1.0.4" + installs: 1062 + author: "Bit Theme" + repo: "https://github.com/bit-theme/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=bit-theme.bit-theme" +colors: + bg: "#131715" + fg: "#E2E2E2" + black: "#121212" + red: "#F55258" + green: "#41B883" + yellow: "#F4F564" + blue: "#79B4E2" + magenta: "#E25698" + cyan: "#50CCD0" + white: "#E2E2E2" + brightBlack: "#505050" + brightRed: "#FB3F3F" + brightGreen: "#41B847" + brightYellow: "#F7E100" + brightBlue: "#63A4DD" + brightMagenta: "#E14985" + brightCyan: "#45C2CA" + brightWhite: "#FEFEFE" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88.2 + black: 0 + red: 40.7 + green: 52.4 + yellow: 95.9 + blue: 57.5 + magenta: 39.1 + cyan: 64.9 + white: 88.2 + brightBlack: 13.3 + brightRed: 39.1 + brightGreen: 51.2 + brightYellow: 86.5 + brightBlue: 49.3 + brightMagenta: 36 + brightCyan: 59.7 + brightWhite: 106.3 diff --git a/themes/bit-soft.yaml b/themes/bit-soft.yaml new file mode 100644 index 00000000..60bf507c --- /dev/null +++ b/themes/bit-soft.yaml @@ -0,0 +1,49 @@ +name: "Bit Soft" +source: + marketplace_id: "bit-theme.bit-theme" + version: "1.0.4" + installs: 1062 + author: "Bit Theme" + repo: "https://github.com/bit-theme/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=bit-theme.bit-theme" +colors: + bg: "#2A2A2A" + fg: "#E2E2E2" + black: "#232323" + red: "#E9747A" + green: "#41B883" + yellow: "#F8F893" + blue: "#9BC9EC" + magenta: "#E676AB" + cyan: "#8DE2E2" + white: "#E2E2E2" + brightBlack: "#808080" + brightRed: "#F55258" + brightGreen: "#60C364" + brightYellow: "#F7F740" + brightBlue: "#79B4E2" + brightMagenta: "#E25C98" + brightCyan: "#66D5D7" + brightWhite: "#EFEFEF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.3 + black: 0 + red: 43.1 + green: 49.4 + yellow: 95.9 + blue: 66.8 + magenta: 44.8 + cyan: 76.5 + white: 85.3 + brightBlack: 30.9 + brightRed: 37.8 + brightGreen: 55 + brightYellow: 94 + brightBlue: 54.6 + brightMagenta: 37.3 + brightCyan: 67.5 + brightWhite: 93.6 diff --git a/themes/bit.yaml b/themes/bit.yaml new file mode 100644 index 00000000..9313f528 --- /dev/null +++ b/themes/bit.yaml @@ -0,0 +1,49 @@ +name: "Bit" +source: + marketplace_id: "bit-theme.bit-theme" + version: "1.0.4" + installs: 1062 + author: "Bit Theme" + repo: "https://github.com/bit-theme/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=bit-theme.bit-theme" +colors: + bg: "#171717" + fg: "#E2E2E2" + black: "#121212" + red: "#F55258" + green: "#41B883" + yellow: "#F4F564" + blue: "#79B4E2" + magenta: "#E25698" + cyan: "#50CCD0" + white: "#E2E2E2" + brightBlack: "#555555" + brightRed: "#FB3F3F" + brightGreen: "#41B847" + brightYellow: "#F7E100" + brightBlue: "#63A4DD" + brightMagenta: "#E14985" + brightCyan: "#45C2CA" + brightWhite: "#FEFEFE" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88.1 + black: 0 + red: 40.6 + green: 52.3 + yellow: 95.8 + blue: 57.4 + magenta: 39 + cyan: 64.8 + white: 88.1 + brightBlack: 15.1 + brightRed: 39 + brightGreen: 51.1 + brightYellow: 86.4 + brightBlue: 49.2 + brightMagenta: 36 + brightCyan: 59.6 + brightWhite: 106.2 diff --git a/themes/bitpurp-dark.yaml b/themes/bitpurp-dark.yaml new file mode 100644 index 00000000..6b7db121 --- /dev/null +++ b/themes/bitpurp-dark.yaml @@ -0,0 +1,49 @@ +name: "bitPurp Dark" +source: + marketplace_id: "bit3301.bitpurp" + version: "0.1.0" + installs: 15 + author: "bit3301" + repo: "https://github.com/bit3301/bitpurp" + url: "https://marketplace.visualstudio.com/items?itemName=bit3301.bitpurp" +colors: + bg: "#17121D" + fg: "#F2E7D4" + black: "#5A5A5A" + red: "#FF252F" + green: "#55D328" + yellow: "#FFCA2B" + blue: "#6F97E4" + magenta: "#FF58A6" + cyan: "#58D8FF" + white: "#E5E5E5" + brightBlack: "#909090" + brightRed: "#FF4A53" + brightGreen: "#9AFF77" + brightYellow: "#FFD659" + brightBlue: "#59B1FF" + brightMagenta: "#FF8BC1" + brightCyan: "#6FDDFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 305 + contrast: + fg: 92.2 + black: 17.3 + red: 37.8 + green: 64.5 + yellow: 78.1 + blue: 45.8 + magenta: 46.5 + cyan: 73.5 + white: 90.3 + brightBlack: 41.8 + brightRed: 41.9 + brightGreen: 91.6 + brightYellow: 83.5 + brightBlue: 56.4 + brightMagenta: 59.3 + brightCyan: 76.9 + brightWhite: 90.3 diff --git a/themes/bits-theme-green-light.yaml b/themes/bits-theme-green-light.yaml new file mode 100644 index 00000000..3be7867b --- /dev/null +++ b/themes/bits-theme-green-light.yaml @@ -0,0 +1,49 @@ +name: "Bits Theme Green Light" +source: + marketplace_id: "Joabits.bits-dark-theme" + version: "0.0.15" + installs: 85 + author: "Joabits" + repo: "https://github.com/Joabits/bits-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" +colors: + bg: "#FFFFFF" + fg: "#1A1A1A" + black: "#1A1A1A" + red: "#FF595E" + green: "#00FF2F" + yellow: "#FFE4A3" + blue: "#22EEFF" + magenta: "#DDA8FF" + cyan: "#00CECB" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF6B88" + brightGreen: "#33FF55" + brightYellow: "#FFDA88" + brightBlue: "#5DD5FF" + brightMagenta: "#FF8895" + brightCyan: "#00E8E5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 104.3 + black: 104.3 + red: 56.5 + green: 17 + yellow: 12.1 + blue: 19.8 + magenta: 35.8 + cyan: 37.1 + white: 15.8 + brightBlack: 78.8 + brightRed: 52 + brightGreen: 16.4 + brightYellow: 16.8 + brightBlue: 29.8 + brightMagenta: 44.6 + brightCyan: 24 + brightWhite: 0 diff --git a/themes/bits-theme-green.yaml b/themes/bits-theme-green.yaml new file mode 100644 index 00000000..1d1b7f5f --- /dev/null +++ b/themes/bits-theme-green.yaml @@ -0,0 +1,49 @@ +name: "Bits Theme Green" +source: + marketplace_id: "Joabits.bits-dark-theme" + version: "0.0.15" + installs: 85 + author: "Joabits" + repo: "https://github.com/Joabits/bits-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" +colors: + bg: "#000200" + fg: "#FFFFFF" + black: "#000200" + red: "#FF595E" + green: "#00FF2F" + yellow: "#FFE4A3" + blue: "#22EEFF" + magenta: "#DDA8FF" + cyan: "#00CECB" + white: "#F5F0F0" + brightBlack: "#444446" + brightRed: "#FF6B88" + brightGreen: "#33FF55" + brightYellow: "#FFDA88" + brightBlue: "#5DD5FF" + brightMagenta: "#FF8895" + brightCyan: "#00E8E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 142 + contrast: + fg: 107.9 + black: 0 + red: 45.3 + green: 86.6 + yellow: 91.9 + blue: 83.6 + magenta: 66.7 + cyan: 65.3 + white: 98.7 + brightBlack: 9.9 + brightRed: 49.9 + brightGreen: 87.3 + brightYellow: 86.8 + brightBlue: 73.1 + brightMagenta: 57.5 + brightCyan: 79.1 + brightWhite: 107.9 diff --git a/themes/bits-theme-light.yaml b/themes/bits-theme-light.yaml new file mode 100644 index 00000000..4c044321 --- /dev/null +++ b/themes/bits-theme-light.yaml @@ -0,0 +1,49 @@ +name: "Bits Theme Light" +source: + marketplace_id: "Joabits.bits-dark-theme" + version: "0.0.15" + installs: 85 + author: "Joabits" + repo: "https://github.com/Joabits/bits-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" +colors: + bg: "#FFFFFF" + fg: "#1A1A1A" + black: "#1A1A1A" + red: "#FF595E" + green: "#6BF178" + yellow: "#FFE4A3" + blue: "#22EEFF" + magenta: "#DDA8FF" + cyan: "#00CECB" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF6B88" + brightGreen: "#D5FFA3" + brightYellow: "#FFDA88" + brightBlue: "#5DD5FF" + brightMagenta: "#FF8895" + brightCyan: "#00E8E5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 104.3 + black: 104.3 + red: 56.5 + green: 21.1 + yellow: 12.1 + blue: 19.8 + magenta: 35.8 + cyan: 37.1 + white: 15.8 + brightBlack: 78.8 + brightRed: 52 + brightGreen: 0 + brightYellow: 16.8 + brightBlue: 29.8 + brightMagenta: 44.6 + brightCyan: 24 + brightWhite: 0 diff --git a/themes/bits-theme-purple-light.yaml b/themes/bits-theme-purple-light.yaml new file mode 100644 index 00000000..4eea418e --- /dev/null +++ b/themes/bits-theme-purple-light.yaml @@ -0,0 +1,49 @@ +name: "Bits Theme Purple Light" +source: + marketplace_id: "Joabits.bits-dark-theme" + version: "0.0.15" + installs: 85 + author: "Joabits" + repo: "https://github.com/Joabits/bits-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" +colors: + bg: "#FFFFFF" + fg: "#1A1A1A" + black: "#1A1A1A" + red: "#FF595E" + green: "#6BF178" + yellow: "#FFE4A3" + blue: "#22EEFF" + magenta: "#B24BF3" + cyan: "#00CECB" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF6B88" + brightGreen: "#D5FFA3" + brightYellow: "#FFDA88" + brightBlue: "#5DD5FF" + brightMagenta: "#C66BFF" + brightCyan: "#00E8E5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 104.3 + black: 104.3 + red: 56.5 + green: 21.1 + yellow: 12.1 + blue: 19.8 + magenta: 66.8 + cyan: 37.1 + white: 15.8 + brightBlack: 78.8 + brightRed: 52 + brightGreen: 0 + brightYellow: 16.8 + brightBlue: 29.8 + brightMagenta: 56.5 + brightCyan: 24 + brightWhite: 0 diff --git a/themes/bits-theme-purple.yaml b/themes/bits-theme-purple.yaml new file mode 100644 index 00000000..79fbbec8 --- /dev/null +++ b/themes/bits-theme-purple.yaml @@ -0,0 +1,49 @@ +name: "Bits Theme Purple" +source: + marketplace_id: "Joabits.bits-dark-theme" + version: "0.0.15" + installs: 85 + author: "Joabits" + repo: "https://github.com/Joabits/bits-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" +colors: + bg: "#040207" + fg: "#FFFFFF" + black: "#040207" + red: "#FF595E" + green: "#6BF178" + yellow: "#FFE4A3" + blue: "#22EEFF" + magenta: "#B24BF3" + cyan: "#00CECB" + white: "#F5F0F0" + brightBlack: "#444446" + brightRed: "#FF6B88" + brightGreen: "#D5FFA3" + brightYellow: "#FFDA88" + brightBlue: "#5DD5FF" + brightMagenta: "#C66BFF" + brightCyan: "#00E8E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 305 + contrast: + fg: 107.9 + black: 0 + red: 45.2 + green: 82.2 + yellow: 91.9 + blue: 83.6 + magenta: 34.8 + cyan: 65.3 + white: 98.7 + brightBlack: 9.9 + brightRed: 49.9 + brightGreen: 99 + brightYellow: 86.8 + brightBlue: 73 + brightMagenta: 45.3 + brightCyan: 79.1 + brightWhite: 107.9 diff --git a/themes/bits-theme.yaml b/themes/bits-theme.yaml new file mode 100644 index 00000000..9d30119d --- /dev/null +++ b/themes/bits-theme.yaml @@ -0,0 +1,49 @@ +name: "Bits Theme" +source: + marketplace_id: "Joabits.bits-dark-theme" + version: "0.0.15" + installs: 85 + author: "Joabits" + repo: "https://github.com/Joabits/bits-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" +colors: + bg: "#060A0F" + fg: "#FFFFFF" + black: "#060A0F" + red: "#FF595E" + green: "#6BF178" + yellow: "#FFE4A3" + blue: "#22EEFF" + magenta: "#DDA8FF" + cyan: "#00CECB" + white: "#F5F0F0" + brightBlack: "#444446" + brightRed: "#FF6B88" + brightGreen: "#D5FFA3" + brightYellow: "#FFDA88" + brightBlue: "#5DD5FF" + brightMagenta: "#FF8895" + brightCyan: "#00E8E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 251 + contrast: + fg: 107.7 + black: 0 + red: 45.1 + green: 82.1 + yellow: 91.8 + blue: 83.5 + magenta: 66.6 + cyan: 65.2 + white: 98.6 + brightBlack: 9.7 + brightRed: 49.7 + brightGreen: 98.9 + brightYellow: 86.7 + brightBlue: 72.9 + brightMagenta: 57.4 + brightCyan: 79 + brightWhite: 107.7 diff --git a/themes/bl-nk.yaml b/themes/bl-nk.yaml new file mode 100644 index 00000000..968f8c4e --- /dev/null +++ b/themes/bl-nk.yaml @@ -0,0 +1,49 @@ +name: "Bl!nk" +source: + marketplace_id: "the-unknown.blink" + version: "0.0.1" + installs: 697 + author: "the-unknown" + repo: "https://github.com/the-unknown/blink-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=the-unknown.blink" +colors: + bg: "#121212" + fg: "#A0A0A0" + black: "#1B1D1E" + red: "#F92672" + green: "#82B414" + yellow: "#FD971F" + blue: "#4E82AA" + magenta: "#8C54FE" + cyan: "#465457" + white: "#FFFFFF" + brightBlack: "#505354" + brightRed: "#FF5995" + brightGreen: "#B6E354" + brightYellow: "#FEED6C" + brightBlue: "#0C73C2" + brightMagenta: "#9E6FFE" + brightCyan: "#899CA1" + brightWhite: "#A0A0A0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 50.3 + black: 0 + red: 37.7 + green: 53 + yellow: 59.1 + blue: 32.9 + magenta: 31.5 + cyan: 14.2 + white: 107.3 + brightBlack: 14.6 + brightRed: 46.2 + brightGreen: 79.8 + brightYellow: 94.1 + brightBlue: 27.5 + brightMagenta: 39.9 + brightCyan: 46.4 + brightWhite: 50.3 diff --git a/themes/black-and-red.yaml b/themes/black-and-red.yaml new file mode 100644 index 00000000..1590bd3f --- /dev/null +++ b/themes/black-and-red.yaml @@ -0,0 +1,49 @@ +name: "Black and Red" +source: + marketplace_id: "PRUFT.theme-black" + version: "1.1.0" + installs: 10 + author: "PRUFT" + repo: "https://github.com/microsoft/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=PRUFT.theme-black" +colors: + bg: "#171717" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#777777" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.9 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 29.5 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 106.9 diff --git a/themes/black-back-dark-e-theme.yaml b/themes/black-back-dark-e-theme.yaml new file mode 100644 index 00000000..02575e8a --- /dev/null +++ b/themes/black-back-dark-e-theme.yaml @@ -0,0 +1,49 @@ +name: "black-back-dark-e-theme" +source: + marketplace_id: "Eray.black-back-dark-e-theme" + version: "0.0.1" + installs: 872 + author: "Eray" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Eray.black-back-dark-e-theme" +colors: + bg: "#1E1E1E" + fg: "#F0F0F0" + black: "#3C3C3C" + red: "#FF5064" + green: "#64F050" + yellow: "#FFC814" + blue: "#1496FF" + magenta: "#AF8CF0" + cyan: "#28B4B4" + white: "#F0F0F0" + brightBlack: "#646464" + brightRed: "#FF7878" + brightGreen: "#C8FF46" + brightYellow: "#FFDC64" + brightBlue: "#00C8F0" + brightMagenta: "#D28CFA" + brightCyan: "#8CE1E1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 96.2 + black: 0 + red: 42 + green: 78.9 + yellow: 76.1 + blue: 43 + magenta: 48.1 + cyan: 50.8 + white: 96.2 + brightBlack: 20.4 + brightRed: 50.6 + brightGreen: 94.1 + brightYellow: 85.2 + brightBlue: 62.6 + brightMagenta: 53.8 + brightCyan: 77.9 + brightWhite: 106 diff --git a/themes/black-color-theme.yaml b/themes/black-color-theme.yaml new file mode 100644 index 00000000..22fddb54 --- /dev/null +++ b/themes/black-color-theme.yaml @@ -0,0 +1,49 @@ +name: "black-color-theme" +source: + marketplace_id: "ctf0.seti-ux" + version: "0.1.7" + installs: 1554 + author: "ctf0" + repo: "https://github.com/ctf0/Seti_UX-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ctf0.seti-ux" +colors: + bg: "#1A1A1A" + fg: "#FFFFFF" + black: "#3A3A3A" + red: "#FF4545" + green: "#42E0AC" + yellow: "#FFD200" + blue: "#009FFF" + magenta: "#CF3BE9" + cyan: "#94DDFF" + white: "#FFFFFF" + brightBlack: "#FF4545" + brightRed: "#FF4545" + brightGreen: "#42E0AC" + brightYellow: "#FFD200" + brightBlue: "#009FFF" + brightMagenta: "#CF3BE9" + brightCyan: "#94DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.5 + black: 0 + red: 40.4 + green: 72.1 + yellow: 80.8 + blue: 46.8 + magenta: 35.7 + cyan: 78.7 + white: 106.5 + brightBlack: 40.4 + brightRed: 40.4 + brightGreen: 72.1 + brightYellow: 80.8 + brightBlue: 46.8 + brightMagenta: 35.7 + brightCyan: 78.7 + brightWhite: 106.5 diff --git a/themes/black-ocean.yaml b/themes/black-ocean.yaml new file mode 100644 index 00000000..fd14fa0e --- /dev/null +++ b/themes/black-ocean.yaml @@ -0,0 +1,49 @@ +name: "Black Ocean" +source: + marketplace_id: "zamerick.black-ocean" + version: "1.1.3" + installs: 87734 + author: "zamerick" + repo: "https://github.com/Zamerick/black-ocean" + url: "https://marketplace.visualstudio.com/items?itemName=zamerick.black-ocean" +colors: + bg: "#101316" + fg: "#DFDFDF" + black: "#1B2025" + red: "#E61F44" + green: "#019D76" + yellow: "#A7DA1E" + blue: "#007AAE" + magenta: "#9100AE" + cyan: "#0490A0" + white: "#DFDFDF" + brightBlack: "#3B4651" + brightRed: "#E61F44" + brightGreen: "#00C200" + brightYellow: "#DFDFDF" + brightBlue: "#DFDFDF" + brightMagenta: "#EDCE72" + brightCyan: "#00EEFF" + brightWhite: "#DFDFDF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 86.6 + black: 0 + red: 31.8 + green: 39.7 + yellow: 73.6 + blue: 28.5 + magenta: 17.7 + cyan: 35.9 + white: 86.6 + brightBlack: 9.5 + brightRed: 31.8 + brightGreen: 54.9 + brightYellow: 86.6 + brightBlue: 86.6 + brightMagenta: 77.8 + brightCyan: 82.9 + brightWhite: 86.6 diff --git a/themes/black-on-gray.yaml b/themes/black-on-gray.yaml new file mode 100644 index 00000000..25f7eee3 --- /dev/null +++ b/themes/black-on-gray.yaml @@ -0,0 +1,49 @@ +name: "Black on Gray" +source: + marketplace_id: "KramLololo.black-on-gray" + version: "1.0.3" + installs: 429 + author: "Kram Lololo" + repo: "https://github.com/KramLololo/theme-black-on-gray" + url: "https://marketplace.visualstudio.com/items?itemName=KramLololo.black-on-gray" +colors: + bg: "#949494" + fg: "#0F0F0F" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#81841C" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 46.4 + black: 46.9 + red: 14.9 + green: 7.3 + yellow: 8.1 + blue: 26.9 + magenta: 15.4 + cyan: 0 + white: 26.8 + brightBlack: 19.6 + brightRed: 14.9 + brightGreen: 16 + brightYellow: 15.9 + brightBlue: 26.9 + brightMagenta: 15.4 + brightCyan: 0 + brightWhite: 8.2 diff --git a/themes/black-pink-rose.yaml b/themes/black-pink-rose.yaml new file mode 100644 index 00000000..3b75cb0f --- /dev/null +++ b/themes/black-pink-rose.yaml @@ -0,0 +1,49 @@ +name: "Black Pink Rose" +source: + marketplace_id: "abenavidesh.theme-blackpink" + version: "0.0.5" + installs: 3276 + author: "abenavidesh" + repo: "https://github.com/abenavidesh/vs-blackpink-theme" + url: "https://marketplace.visualstudio.com/items?itemName=abenavidesh.theme-blackpink" +colors: + bg: "#1F2B31" + fg: "#F8BBD0" + black: "#1F2B31" + red: "#FF1744" + green: "#F48FB1" + yellow: "#F06292" + blue: "#1F2B31" + magenta: "#1F2B31" + cyan: "#1F2B31" + white: "#E91E63" + brightBlack: "#E91E63" + brightRed: "#FF1744" + brightGreen: "#F48FB1" + brightYellow: "#F06292" + brightBlue: "#1F2B31" + brightMagenta: "#1F2B31" + brightCyan: "#1F2B31" + brightWhite: "#1F2B31" +meta: + mode: "dark" + accent: "orange" + hue: 230 + contrast: + fg: 71.8 + black: 0 + red: 34.5 + green: 54.7 + yellow: 41.4 + blue: 0 + magenta: 0 + cyan: 0 + white: 29.9 + brightBlack: 29.9 + brightRed: 34.5 + brightGreen: 54.7 + brightYellow: 41.4 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/black-punk-77.yaml b/themes/black-punk-77.yaml new file mode 100644 index 00000000..dba3afde --- /dev/null +++ b/themes/black-punk-77.yaml @@ -0,0 +1,49 @@ +name: "Black punk 77" +source: + marketplace_id: "PlutonicVoid.black-punk-77" + version: "1.0.1" + installs: 115 + author: "PlutonicVoid" + repo: "https://gitlab.com/peter_thesequel/black-punk-77" + url: "https://marketplace.visualstudio.com/items?itemName=PlutonicVoid.black-punk-77" +colors: + bg: "#131313" + fg: "#D9C200" + black: "#000000" + red: "#FF003C" + green: "#0DBC79" + yellow: "#FCEC0C" + blue: "#136377" + magenta: "#AB5797" + cyan: "#6665A7" + white: "#D1C5C0" + brightBlack: "#666666" + brightRed: "#FF698C" + brightGreen: "#23D18B" + brightYellow: "#FFF45A" + brightBlue: "#5B93A1" + brightMagenta: "#E4AFD5" + brightCyan: "#7A72E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 68.8 + black: 0 + red: 37.2 + green: 53.4 + yellow: 92.5 + blue: 18.1 + magenta: 29.3 + cyan: 25 + white: 72.2 + brightBlack: 22.4 + brightRed: 48.9 + brightGreen: 63.9 + brightYellow: 97.2 + brightBlue: 39.4 + brightMagenta: 67.3 + brightCyan: 34.7 + brightWhite: 107.2 diff --git a/themes/black-purple.yaml b/themes/black-purple.yaml new file mode 100644 index 00000000..026585a0 --- /dev/null +++ b/themes/black-purple.yaml @@ -0,0 +1,49 @@ +name: "Black Purple" +source: + marketplace_id: "VishalMaurya.zenith-ui" + version: "0.2.4" + installs: 189 + author: "Vishal Maurya" + repo: "https://github.com/maurya-07/zenith-ui" + url: "https://marketplace.visualstudio.com/items?itemName=VishalMaurya.zenith-ui" +colors: + bg: "#000000" + fg: "#E1E1E0" + black: "#474747" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 88.5 + black: 10.9 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/black-rose.yaml b/themes/black-rose.yaml new file mode 100644 index 00000000..91b72c87 --- /dev/null +++ b/themes/black-rose.yaml @@ -0,0 +1,49 @@ +name: "Black-Rose" +source: + marketplace_id: "Dananjaya.black-rose" + version: "0.3.0" + installs: 1725 + author: "Dananjaya" + repo: "https://github.com/dananjaya6005/Black_rose-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Dananjaya.black-rose" +colors: + bg: "#211A21" + fg: "#E4E4E4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 326 + contrast: + fg: 88.8 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.4 + brightRed: 38 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/black-theme.yaml b/themes/black-theme.yaml new file mode 100644 index 00000000..df45dad4 --- /dev/null +++ b/themes/black-theme.yaml @@ -0,0 +1,49 @@ +name: "black-theme" +source: + marketplace_id: "electropol-fr.coloredtheme" + version: "1.3.0" + installs: 4210 + author: "electropol.fr" + repo: "https://github.com/FrankSAURET/colored-theme" + url: "https://marketplace.visualstudio.com/items?itemName=electropol-fr.coloredtheme" +colors: + bg: "#262626" + fg: "#F6F6F6" + black: "#000000" + red: "#ED7D31" + green: "#70AD47" + yellow: "#FFC000" + blue: "#4472C4" + magenta: "#8064A2" + cyan: "#5B9BD5" + white: "#F6F6F6" + brightBlack: "#A5A5A5" + brightRed: "#F4B183" + brightGreen: "#A8D08D" + brightYellow: "#FFD965" + brightBlue: "#8EAADB" + brightMagenta: "#B2A1C7" + brightCyan: "#9CC3E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 98.9 + black: 0 + red: 45.8 + green: 46.5 + yellow: 71.7 + blue: 26.1 + magenta: 24.6 + cyan: 42.7 + white: 98.9 + brightBlack: 50.4 + brightRed: 65.3 + brightGreen: 68.1 + brightYellow: 82.7 + brightBlue: 52.6 + brightMagenta: 52 + brightCyan: 64.7 + brightWhite: 104.8 diff --git a/themes/blackai-theme.yaml b/themes/blackai-theme.yaml new file mode 100644 index 00000000..915e094c --- /dev/null +++ b/themes/blackai-theme.yaml @@ -0,0 +1,49 @@ +name: "blackai-theme" +source: + marketplace_id: "asilverio.blackai-visual-studio-code" + version: "0.1.9" + installs: 51213 + author: "asilverio" + repo: "https://github.com/slipnox/blackai-theme" + url: "https://marketplace.visualstudio.com/items?itemName=asilverio.blackai-visual-studio-code" +colors: + bg: "#070707" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 102.9 + black: 0 + red: 25.6 + green: 54 + yellow: 58.6 + blue: 35.6 + magenta: 33.2 + cyan: 51.4 + white: 89.4 + brightBlack: 23 + brightRed: 38.2 + brightGreen: 77.9 + brightYellow: 84.9 + brightBlue: 50.8 + brightMagenta: 47.5 + brightCyan: 74.4 + brightWhite: 102.9 diff --git a/themes/blackamp.yaml b/themes/blackamp.yaml new file mode 100644 index 00000000..cf8e6bd8 --- /dev/null +++ b/themes/blackamp.yaml @@ -0,0 +1,49 @@ +name: "blackamp" +source: + marketplace_id: "KevinTerry.blackamp" + version: "0.2.1" + installs: 29 + author: "Kevin Terry" + repo: "https://github.com/kevinjterry/blackamp-theme" + url: "https://marketplace.visualstudio.com/items?itemName=KevinTerry.blackamp" +colors: + bg: "#1B1B1C" + fg: "#D3DADE" + black: "#5E5E5E" + red: "#C57575" + green: "#8BB374" + yellow: "#C8A368" + blue: "#6B8DB5" + magenta: "#B58DB5" + cyan: "#7A9AA3" + white: "#D3DADE" + brightBlack: "#8C8C8C" + brightRed: "#D89595" + brightGreen: "#A5C796" + brightYellow: "#D9B584" + brightBlue: "#8DB1D4" + brightMagenta: "#D1A8D1" + brightCyan: "#9BB8C2" + brightWhite: "#EBEBEB" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 82 + black: 18.2 + red: 39 + green: 53.6 + yellow: 54.1 + blue: 38.3 + magenta: 46.2 + cyan: 43.5 + white: 82 + brightBlack: 39.1 + brightRed: 52.9 + brightGreen: 65.6 + brightYellow: 64.1 + brightBlue: 56.5 + brightMagenta: 60.9 + brightCyan: 59.8 + brightWhite: 93.4 diff --git a/themes/blackberry.yaml b/themes/blackberry.yaml new file mode 100644 index 00000000..63b8f49d --- /dev/null +++ b/themes/blackberry.yaml @@ -0,0 +1,49 @@ +name: "blackberry" +source: + marketplace_id: "indigo.blackberry" + version: "1.0.0" + installs: 108 + author: "indigo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=indigo.blackberry" +colors: + bg: "#130F13" + fg: "#CBAA72" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 326 + contrast: + fg: 58.4 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.6 diff --git a/themes/blackbird-dusk.yaml b/themes/blackbird-dusk.yaml new file mode 100644 index 00000000..02a23b93 --- /dev/null +++ b/themes/blackbird-dusk.yaml @@ -0,0 +1,49 @@ +name: "🏴 blackbird → dusk" +source: + marketplace_id: "MattGleich.theme-blackbird" + version: "6.0.1" + installs: 10037 + author: "Matt Gleich" + repo: "https://github.com/blackbirdtheme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MattGleich.theme-blackbird" +colors: + bg: "#0F0F0F" + fg: "#FDF7CD" + black: "#222029" + red: "#E92741" + green: "#3EC841" + yellow: "#E1DB3F" + blue: "#418EDD" + magenta: "#FF00CC" + cyan: "#00ECD8" + white: "#FDF7CD" + brightBlack: "#777777" + brightRed: "#E92741" + brightGreen: "#3EC841" + brightYellow: "#E1DB3F" + brightBlue: "#418EDD" + brightMagenta: "#FF00CC" + brightCyan: "#00ECD8" + brightWhite: "#FDF7CD" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.3 + black: 0 + red: 33.1 + green: 59 + yellow: 81.3 + blue: 39.9 + magenta: 42.4 + cyan: 80.1 + white: 101.3 + brightBlack: 30.2 + brightRed: 33.1 + brightGreen: 59 + brightYellow: 81.3 + brightBlue: 39.9 + brightMagenta: 42.4 + brightCyan: 80.1 + brightWhite: 101.3 diff --git a/themes/blackbird-midnight.yaml b/themes/blackbird-midnight.yaml new file mode 100644 index 00000000..ec69d9e1 --- /dev/null +++ b/themes/blackbird-midnight.yaml @@ -0,0 +1,49 @@ +name: "🏴 blackbird → midnight" +source: + marketplace_id: "MattGleich.theme-blackbird" + version: "6.0.1" + installs: 10037 + author: "Matt Gleich" + repo: "https://github.com/blackbirdtheme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MattGleich.theme-blackbird" +colors: + bg: "#000000" + fg: "#FDF7CD" + black: "#222029" + red: "#E92741" + green: "#3EC841" + yellow: "#E1DB3F" + blue: "#418EDD" + magenta: "#FF00CC" + cyan: "#00ECD8" + white: "#FDF7CD" + brightBlack: "#343C50" + brightRed: "#E92741" + brightGreen: "#3EC841" + brightYellow: "#E1DB3F" + brightBlue: "#418EDD" + brightMagenta: "#FF00CC" + brightCyan: "#00ECD8" + brightWhite: "#FDF7CD" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.7 + black: 0 + red: 33.5 + green: 59.4 + yellow: 81.7 + blue: 40.3 + magenta: 42.7 + cyan: 80.5 + white: 101.7 + brightBlack: 0 + brightRed: 33.5 + brightGreen: 59.4 + brightYellow: 81.7 + brightBlue: 40.3 + brightMagenta: 42.7 + brightCyan: 80.5 + brightWhite: 101.7 diff --git a/themes/blackboard-plus.yaml b/themes/blackboard-plus.yaml new file mode 100644 index 00000000..3d787ccf --- /dev/null +++ b/themes/blackboard-plus.yaml @@ -0,0 +1,49 @@ +name: "Blackboard Plus" +source: + marketplace_id: "huacnlee.theme-blackboard-plus" + version: "1.0.2" + installs: 7459 + author: "Jason Lee" + repo: "https://github.com/huacnlee/vscode-blackboard-plus.theme" + url: "https://marketplace.visualstudio.com/items?itemName=huacnlee.theme-blackboard-plus" +colors: + bg: "#090B18" + fg: "#F8F8F8" + black: "#575757" + red: "#FF6E67" + green: "#5AF78E" + yellow: "#F4F99D" + blue: "#CAA9FA" + magenta: "#FF92D0" + cyan: "#9AEDFE" + white: "#F8F8F8" + brightBlack: "#4D4D4D" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#61CE3C" + brightBlue: "#86A7D0" + brightMagenta: "#61C3FE" + brightCyan: "#CBFE2A" + brightWhite: "#BFBFBF" +meta: + mode: "dark" + accent: "green" + hue: 276 + contrast: + fg: 103 + black: 16.7 + red: 49.4 + green: 84.8 + yellow: 99.6 + blue: 63.8 + magenta: 62.6 + cyan: 87.8 + white: 103 + brightBlack: 12.8 + brightRed: 44.2 + brightGreen: 85.6 + brightYellow: 63.3 + brightBlue: 53 + brightMagenta: 64.8 + brightCyan: 95.4 + brightWhite: 67.8 diff --git a/themes/blackcoffeedark.yaml b/themes/blackcoffeedark.yaml new file mode 100644 index 00000000..b39f7606 --- /dev/null +++ b/themes/blackcoffeedark.yaml @@ -0,0 +1,49 @@ +name: "BlackCoffeeDark" +source: + marketplace_id: "MalikAhmadRasheed.coffeecode" + version: "0.0.2" + installs: 38 + author: "Malik Ahmad Rasheed" + repo: "https://github.com/ahmaddii/BlackCoffeeDark" + url: "https://marketplace.visualstudio.com/items?itemName=MalikAhmadRasheed.coffeecode" +colors: + bg: "#0B0F1A" + fg: "#F0F4F8" + black: "#1E1E1E" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#DCDFE4" + brightBlack: "#1E1E1E" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#DCDFE4" +meta: + mode: "dark" + accent: "pink" + hue: 268 + contrast: + fg: 99.9 + black: 0 + red: 42.7 + green: 62.9 + yellow: 71.2 + blue: 55.3 + magenta: 45.7 + cyan: 55.2 + white: 86.7 + brightBlack: 0 + brightRed: 42.7 + brightGreen: 62.9 + brightYellow: 71.2 + brightBlue: 55.3 + brightMagenta: 45.7 + brightCyan: 55.2 + brightWhite: 86.7 diff --git a/themes/blackdot.yaml b/themes/blackdot.yaml new file mode 100644 index 00000000..3259dc14 --- /dev/null +++ b/themes/blackdot.yaml @@ -0,0 +1,49 @@ +name: "Blackdot" +source: + marketplace_id: "ignaprados.blackdot" + version: "1.6.0" + installs: 1713 + author: "Ignacio Prados" + repo: "https://github.com/IgnacioPrados/Blackdot" + url: "https://marketplace.visualstudio.com/items?itemName=ignaprados.blackdot" +colors: + bg: "#0A0A0D" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.2 + black: 9.7 + red: 37.6 + green: 61.2 + yellow: 49.4 + blue: 50.5 + magenta: 39.9 + cyan: 53.4 + white: 91.5 + brightBlack: 16.3 + brightRed: 46.9 + brightGreen: 77.6 + brightYellow: 62.1 + brightBlue: 64.6 + brightMagenta: 51.1 + brightCyan: 68.7 + brightWhite: 107.7 diff --git a/themes/blackhighcontrast.yaml b/themes/blackhighcontrast.yaml new file mode 100644 index 00000000..90c4bd62 --- /dev/null +++ b/themes/blackhighcontrast.yaml @@ -0,0 +1,49 @@ +name: "BlackHighContrast" +source: + marketplace_id: "sHellWalker.blackhighcontrast-theme" + version: "0.0.2" + installs: 98 + author: "sHellWalker" + repo: "https://github.com/abstractParm/BlackHighContrast-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=sHellWalker.blackhighcontrast-theme" +colors: + bg: "#000000" + fg: "#E6EDF3" + black: "#020202" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 95.5 + black: 0 + red: 53.1 + green: 52.6 + yellow: 52.7 + blue: 52.7 + magenta: 52.7 + cyan: 61.9 + white: 64.5 + brightBlack: 29.7 + brightRed: 65.3 + brightGreen: 65.9 + brightYellow: 65.2 + brightBlue: 65.2 + brightMagenta: 65.1 + brightCyan: 70.4 + brightWhite: 107.9 diff --git a/themes/blacklite.yaml b/themes/blacklite.yaml new file mode 100644 index 00000000..b1431466 --- /dev/null +++ b/themes/blacklite.yaml @@ -0,0 +1,49 @@ +name: "BlackLite" +source: + marketplace_id: "LiamRalph.blacklite" + version: "1.0.9" + installs: 27 + author: "LiamRalph" + repo: "https://github.com/Liam-Ralph/blacklite" + url: "https://marketplace.visualstudio.com/items?itemName=LiamRalph.blacklite" +colors: + bg: "#000000" + fg: "#BBBBBB" + black: "#000000" + red: "#AA0000" + green: "#00AA00" + yellow: "#AAAA00" + blue: "#0000AA" + magenta: "#AA00AA" + cyan: "#00AAAA" + white: "#808080" + brightBlack: "#555555" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 65.7 + black: 0 + red: 17.8 + green: 44.5 + yellow: 53.4 + blue: 0 + magenta: 22.5 + cyan: 47.6 + white: 34.8 + brightBlack: 16.1 + brightRed: 44.4 + brightGreen: 88.1 + brightYellow: 103.1 + brightBlue: 27.4 + brightMagenta: 51.9 + brightCyan: 93.4 + brightWhite: 107.9 diff --git a/themes/blackout.yaml b/themes/blackout.yaml new file mode 100644 index 00000000..99c7f327 --- /dev/null +++ b/themes/blackout.yaml @@ -0,0 +1,49 @@ +name: "Blackout" +source: + marketplace_id: "agustinduarte.blackout-theme" + version: "0.0.72" + installs: 1014 + author: "Agustin Duarte" + repo: "https://github.com/agustinduarte/blackout-theme" + url: "https://marketplace.visualstudio.com/items?itemName=agustinduarte.blackout-theme" +colors: + bg: "#000000" + fg: "#E0E0E0" + black: "#565454" + red: "#D1949E" + green: "#DFF7A9" + yellow: "#879071" + blue: "#747EA7" + magenta: "#6F6F6F" + cyan: "#8BA6A9" + white: "#8A8A8A" + brightBlack: "#3D3D3D" + brightRed: "#904E64" + brightGreen: "#D1FF69" + brightYellow: "#F5F543" + brightBlue: "#9EABDE" + brightMagenta: "#8A8A8A" + brightCyan: "#9ED8DE" + brightWhite: "#ABABAB" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 87.9 + black: 15.9 + red: 53.2 + green: 96.5 + yellow: 40.7 + blue: 34.6 + magenta: 27 + cyan: 51.4 + white: 39.6 + brightBlack: 7.5 + brightRed: 21.8 + brightGreen: 97.4 + brightYellow: 96.6 + brightBlue: 57.8 + brightMagenta: 39.6 + brightCyan: 76.9 + brightWhite: 56.8 diff --git a/themes/blackpink.yaml b/themes/blackpink.yaml new file mode 100644 index 00000000..2124916f --- /dev/null +++ b/themes/blackpink.yaml @@ -0,0 +1,49 @@ +name: "BLACKPINK" +source: + marketplace_id: "banebo.black-pink-theme" + version: "0.0.1" + installs: 3832 + author: "banebo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=banebo.black-pink-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#3F3F3F" + red: "#FF3333" + green: "#0BFFA2" + yellow: "#FFFF24" + blue: "#3597FF" + magenta: "#FF07FF" + cyan: "#07CFFF" + white: "#D5D5D5" + brightBlack: "#6D6D6D" + brightRed: "#FF7B7B" + brightGreen: "#6DFFC4" + brightYellow: "#FFFF7C" + brightBlue: "#7EBBFF" + brightMagenta: "#FF62FF" + brightCyan: "#80E6FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 8.1 + red: 39.6 + green: 88.4 + yellow: 102.8 + blue: 45.7 + magenta: 46.2 + cyan: 68.6 + white: 81.1 + brightBlack: 26.1 + brightRed: 53.3 + brightGreen: 91.7 + brightYellow: 103.6 + brightBlue: 63.5 + brightMagenta: 54.1 + brightCyan: 82.9 + brightWhite: 107.9 diff --git a/themes/blackroulette.yaml b/themes/blackroulette.yaml new file mode 100644 index 00000000..7e30a159 --- /dev/null +++ b/themes/blackroulette.yaml @@ -0,0 +1,49 @@ +name: "BlackRoulette" +source: + marketplace_id: "j-schneble.blackroulette-theme" + version: "0.2.0" + installs: 165 + author: "j-schneble" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=j-schneble.blackroulette-theme" +colors: + bg: "#131313" + fg: "#DCE3EA" + black: "#282626" + red: "#E61F44" + green: "#5BD1B9" + yellow: "#43AAF9" + blue: "#43AAF9" + magenta: "#DD4F7D" + cyan: "#B267E6" + white: "#DCE3EA" + brightBlack: "#454D54" + brightRed: "#E61F44" + brightGreen: "#B7F0E5" + brightYellow: "#A7D1F5" + brightBlue: "#A7D1F5" + brightMagenta: "#DD4F7D" + brightCyan: "#D7C9F0" + brightWhite: "#DCE3EA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88.5 + black: 0 + red: 31.7 + green: 66.9 + yellow: 52.4 + blue: 52.4 + magenta: 36.1 + cyan: 38.7 + white: 88.5 + brightBlack: 12 + brightRed: 31.7 + brightGreen: 90.2 + brightYellow: 75.1 + brightBlue: 75.1 + brightMagenta: 36.1 + brightCyan: 76.9 + brightWhite: 88.5 diff --git a/themes/blackula-theme.yaml b/themes/blackula-theme.yaml new file mode 100644 index 00000000..8f472bae --- /dev/null +++ b/themes/blackula-theme.yaml @@ -0,0 +1,49 @@ +name: "blackula-theme" +source: + marketplace_id: "crsayen.blackula-theme" + version: "0.0.4" + installs: 269 + author: "Chris Sayen" + repo: "https://github.com/crsayen/blackula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=crsayen.blackula-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#191919" + red: "#FF9797" + green: "#6AE2B4" + yellow: "#FFFD8D" + blue: "#767DFF" + magenta: "#FDA3FD" + cyan: "#9FECFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FFA6A6" + brightGreen: "#BDFFE4" + brightYellow: "#FFFEB1" + brightBlue: "#B2B3FF" + brightMagenta: "#FFC6FF" + brightCyan: "#BEF2FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 62.1 + green: 76.3 + yellow: 103 + blue: 40.3 + magenta: 70.2 + cyan: 88 + white: 107.9 + brightBlack: 23 + brightRed: 67.5 + brightGreen: 98.7 + brightYellow: 104.4 + brightBlue: 65.1 + brightMagenta: 83.2 + brightCyan: 93.8 + brightWhite: 91 diff --git a/themes/blacky.yaml b/themes/blacky.yaml new file mode 100644 index 00000000..ed566d3d --- /dev/null +++ b/themes/blacky.yaml @@ -0,0 +1,49 @@ +name: "Blacky" +source: + marketplace_id: "KumarAshishRanjan.blacky" + version: "0.0.2" + installs: 110 + author: "Kumar Ashish Ranjan" + repo: "https://github.com/dev-AshishRanjan/Blackie" + url: "https://marketplace.visualstudio.com/items?itemName=KumarAshishRanjan.blacky" +colors: + bg: "#000000" + fg: "#5B8FB9" + black: "#000000" + red: "#EA6C6D" + green: "#6CBF43" + yellow: "#ECA944" + blue: "#3199E1" + magenta: "#9E75C7" + cyan: "#46BA94" + white: "#939393" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#F2AE49" + brightBlue: "#B6EADA" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#ABABAB" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 39.7 + black: 0 + red: 44.9 + green: 57.2 + yellow: 63 + blue: 44.2 + magenta: 38.2 + cyan: 54.9 + white: 44.1 + brightBlack: 23.9 + brightRed: 47.4 + brightGreen: 53.5 + brightYellow: 65.9 + brightBlue: 87.4 + brightMagenta: 40.6 + brightCyan: 57.5 + brightWhite: 56.8 diff --git a/themes/bladerunner-light.yaml b/themes/bladerunner-light.yaml new file mode 100644 index 00000000..633e5676 --- /dev/null +++ b/themes/bladerunner-light.yaml @@ -0,0 +1,49 @@ +name: "Bladerunner-light" +source: + marketplace_id: "NeilSchroeder.vscode-theme-bladerunner" + version: "0.3.1" + installs: 214 + author: "Neil Schroeder" + repo: "https://github.com/neilSchroeder/vscode-theme-bladerunner" + url: "https://marketplace.visualstudio.com/items?itemName=NeilSchroeder.vscode-theme-bladerunner" +colors: + bg: "#FEF3DA" + fg: "#062726" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#EEE8D5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.9 + black: 92.2 + red: 63.8 + green: 52.3 + yellow: 52.3 + blue: 57.2 + magenta: 63.5 + cyan: 51.6 + white: 0 + brightBlack: 70.1 + brightRed: 64.3 + brightGreen: 70.1 + brightYellow: 64.2 + brightBlue: 52 + brightMagenta: 63.5 + brightCyan: 45.3 + brightWhite: 0 diff --git a/themes/bladerunner.yaml b/themes/bladerunner.yaml new file mode 100644 index 00000000..171cfb97 --- /dev/null +++ b/themes/bladerunner.yaml @@ -0,0 +1,49 @@ +name: "Bladerunner" +source: + marketplace_id: "NeilSchroeder.vscode-theme-bladerunner" + version: "0.3.1" + installs: 214 + author: "Neil Schroeder" + repo: "https://github.com/neilSchroeder/vscode-theme-bladerunner" + url: "https://marketplace.visualstudio.com/items?itemName=NeilSchroeder.vscode-theme-bladerunner" +colors: + bg: "#03151F" + fg: "#2BB900" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 234 + contrast: + fg: 50.9 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/blah-dark.yaml b/themes/blah-dark.yaml new file mode 100644 index 00000000..3cf0ed39 --- /dev/null +++ b/themes/blah-dark.yaml @@ -0,0 +1,49 @@ +name: "Blah Dark" +source: + marketplace_id: "amila.blah" + version: "2.1.0" + installs: 207 + author: "Amila Nirmal" + repo: "https://github.com/Y-AmilaNirmal/blah" + url: "https://marketplace.visualstudio.com/items?itemName=amila.blah" +colors: + bg: "#011627" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#14C159" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 244 + contrast: + fg: 85.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 82.1 + blue: 56 + magenta: 53.8 + cyan: 59.8 + white: 107 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 54.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 107 diff --git a/themes/blahajtheme.yaml b/themes/blahajtheme.yaml new file mode 100644 index 00000000..5c9f7b70 --- /dev/null +++ b/themes/blahajtheme.yaml @@ -0,0 +1,49 @@ +name: "BlahajTheme 🦈" +source: + marketplace_id: "PratyushRaj.Blahajcode" + version: "0.0.1" + installs: 158 + author: "Pratyush Raj" + repo: "https://github.com/rajpratyush/BlahajCode" + url: "https://marketplace.visualstudio.com/items?itemName=PratyushRaj.Blahajcode" +colors: + bg: "#000000" + fg: "#5AD8FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EFF5FF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 74.3 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 101 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/blank-ghibli.yaml b/themes/blank-ghibli.yaml new file mode 100644 index 00000000..4eb8653a --- /dev/null +++ b/themes/blank-ghibli.yaml @@ -0,0 +1,49 @@ +name: "Blank Ghibli" +source: + marketplace_id: "kiritocode1.blank-theme" + version: "1.0.3" + installs: 420 + author: "kiritocode1" + repo: "https://github.com/kiritocode1/Blank-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=kiritocode1.blank-theme" +colors: + bg: "#000000" + fg: "#868690" + black: "#131317" + red: "#829FA7" + green: "#648F68" + yellow: "#DA674B" + blue: "#5C87A4" + magenta: "#E8B246" + cyan: "#A27E57" + white: "#868690" + brightBlack: "#575861" + brightRed: "#E8B246" + brightGreen: "#648F68" + brightYellow: "#DA674B" + brightBlue: "#5C87A4" + brightMagenta: "#829FA7" + brightCyan: "#A27E57" + brightWhite: "#868690" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 38 + black: 0 + red: 47.8 + green: 37.1 + yellow: 39.8 + blue: 35.8 + magenta: 65.7 + cyan: 37 + white: 38 + brightBlack: 17.5 + brightRed: 65.7 + brightGreen: 37.1 + brightYellow: 39.8 + brightBlue: 35.8 + brightMagenta: 47.8 + brightCyan: 37 + brightWhite: 38 diff --git a/themes/blank-monochrome.yaml b/themes/blank-monochrome.yaml new file mode 100644 index 00000000..e4f4634b --- /dev/null +++ b/themes/blank-monochrome.yaml @@ -0,0 +1,49 @@ +name: "Blank Monochrome" +source: + marketplace_id: "kiritocode1.blank-theme" + version: "1.0.3" + installs: 420 + author: "kiritocode1" + repo: "https://github.com/kiritocode1/Blank-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=kiritocode1.blank-theme" +colors: + bg: "#000000" + fg: "#868690" + black: "#131317" + red: "#999EB2" + green: "#626983" + yellow: "#D3D5DE" + blue: "#7C829D" + magenta: "#E2E4ED" + cyan: "#B6BAC8" + white: "#868690" + brightBlack: "#575861" + brightRed: "#999EB2" + brightGreen: "#626983" + brightYellow: "#D3D5DE" + brightBlue: "#7C829D" + brightMagenta: "#E2E4ED" + brightCyan: "#B6BAC8" + brightWhite: "#868690" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 38 + black: 0 + red: 50.1 + green: 24.7 + yellow: 81.3 + blue: 36.2 + magenta: 90.6 + cyan: 65.3 + white: 38 + brightBlack: 17.5 + brightRed: 50.1 + brightGreen: 24.7 + brightYellow: 81.3 + brightBlue: 36.2 + brightMagenta: 90.6 + brightCyan: 65.3 + brightWhite: 38 diff --git a/themes/blank-moonlight.yaml b/themes/blank-moonlight.yaml new file mode 100644 index 00000000..b5aed850 --- /dev/null +++ b/themes/blank-moonlight.yaml @@ -0,0 +1,49 @@ +name: "Blank Moonlight" +source: + marketplace_id: "kiritocode1.blank-theme" + version: "1.0.3" + installs: 420 + author: "kiritocode1" + repo: "https://github.com/kiritocode1/Blank-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=kiritocode1.blank-theme" +colors: + bg: "#000000" + fg: "#868690" + black: "#131317" + red: "#F58EE0" + green: "#8EB6F5" + yellow: "#9898A6" + blue: "#C58FFF" + magenta: "#FDFDFE" + cyan: "#FFBB88" + white: "#868690" + brightBlack: "#575861" + brightRed: "#F58EE0" + brightGreen: "#8EB6F5" + brightYellow: "#9898A6" + brightBlue: "#C58FFF" + brightMagenta: "#FDFDFE" + brightCyan: "#FFBB88" + brightWhite: "#868690" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 38 + black: 0 + red: 60.6 + green: 62 + yellow: 47.2 + blue: 54.9 + magenta: 106.6 + cyan: 74.2 + white: 38 + brightBlack: 17.5 + brightRed: 60.6 + brightGreen: 62 + brightYellow: 47.2 + brightBlue: 54.9 + brightMagenta: 106.6 + brightCyan: 74.2 + brightWhite: 38 diff --git a/themes/blank-s-theme-reborn.yaml b/themes/blank-s-theme-reborn.yaml new file mode 100644 index 00000000..d5dcda79 --- /dev/null +++ b/themes/blank-s-theme-reborn.yaml @@ -0,0 +1,49 @@ +name: "Blank's Theme Reborn" +source: + marketplace_id: "QuidqueStudio.blank-s-theme-reborn" + version: "1.0.1" + installs: 17 + author: "Quidque Studio" + repo: "https://github.com/Quidque-Studio/Blank-s-Theme-Reborn" + url: "https://marketplace.visualstudio.com/items?itemName=QuidqueStudio.blank-s-theme-reborn" +colors: + bg: "#1A1A2E" + fg: "#E8E8E8" + black: "#1A1A2E" + red: "#CB1010" + green: "#0DBC79" + yellow: "#C9C90E" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BBBBBB" + brightBlack: "#666666" + brightRed: "#FF5252" + brightGreen: "#00E6A8" + brightYellow: "#FFFF3B" + brightBlue: "#3B8EEA" + brightMagenta: "#E91E8C" + brightCyan: "#29B8DB" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "red" + hue: 283 + contrast: + fg: 91.3 + black: 0 + red: 23.5 + green: 52.4 + yellow: 68.7 + blue: 26.8 + magenta: 29.2 + cyan: 47 + white: 64.1 + brightBlack: 21.4 + brightRed: 42.3 + brightGreen: 74 + brightYellow: 101.3 + brightBlue: 39.4 + brightMagenta: 33.3 + brightCyan: 54.8 + brightWhite: 84.4 diff --git a/themes/blank-uchiha.yaml b/themes/blank-uchiha.yaml new file mode 100644 index 00000000..96270a90 --- /dev/null +++ b/themes/blank-uchiha.yaml @@ -0,0 +1,49 @@ +name: "Blank Uchiha" +source: + marketplace_id: "kiritocode1.blank-theme" + version: "1.0.3" + installs: 420 + author: "kiritocode1" + repo: "https://github.com/kiritocode1/Blank-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=kiritocode1.blank-theme" +colors: + bg: "#000000" + fg: "#868686" + black: "#131313" + red: "#BD4450" + green: "#8EB6F5" + yellow: "#989898" + blue: "#8C3037" + magenta: "#F0F0F0" + cyan: "#B87878" + white: "#868686" + brightBlack: "#575757" + brightRed: "#BD4450" + brightGreen: "#A33B45" + brightYellow: "#989898" + brightBlue: "#8C3037" + brightMagenta: "#F0F0F0" + brightCyan: "#A33B45" + brightWhite: "#868686" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 37.6 + black: 0 + red: 27.3 + green: 62 + yellow: 46.7 + blue: 14.9 + magenta: 98.1 + cyan: 39.2 + white: 37.6 + brightBlack: 16.9 + brightRed: 27.3 + brightGreen: 20.7 + brightYellow: 46.7 + brightBlue: 14.9 + brightMagenta: 98.1 + brightCyan: 20.7 + brightWhite: 37.6 diff --git a/themes/blankeos-zen-theme.yaml b/themes/blankeos-zen-theme.yaml new file mode 100644 index 00000000..6e87c82f --- /dev/null +++ b/themes/blankeos-zen-theme.yaml @@ -0,0 +1,49 @@ +name: "blankeos zen theme" +source: + marketplace_id: "Blankeos.blankeos-zen" + version: "0.0.3" + installs: 942 + author: "Blankeos" + repo: "https://github.com/blankeos/zen" + url: "https://marketplace.visualstudio.com/items?itemName=Blankeos.blankeos-zen" +colors: + bg: "#121212" + fg: "#A6ACCD" + black: "#121212" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 57.6 + black: 0 + red: 39.7 + green: 76.8 + yellow: 102.4 + blue: 78.7 + magenta: 55.3 + cyan: 78.7 + white: 107.3 + brightBlack: 57.6 + brightRed: 39.7 + brightGreen: 76.8 + brightYellow: 102.4 + brightBlue: 79 + brightMagenta: 55.3 + brightCyan: 79 + brightWhite: 107.3 diff --git a/themes/blaze-orange.yaml b/themes/blaze-orange.yaml new file mode 100644 index 00000000..2833ab21 --- /dev/null +++ b/themes/blaze-orange.yaml @@ -0,0 +1,49 @@ +name: "blaze-orange" +source: + marketplace_id: "BrennoFruhauf.ocms-theme" + version: "0.0.1" + installs: 394 + author: "Brenno Fruhauf" + repo: "https://github.com/brennofruhauf/ocms-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BrennoFruhauf.ocms-theme" +colors: + bg: "#131313" + fg: "#EBEBEB" + black: "#FFFFFF" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 94.2 + black: 107.2 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/blinds-dark.yaml b/themes/blinds-dark.yaml new file mode 100644 index 00000000..a673a7f3 --- /dev/null +++ b/themes/blinds-dark.yaml @@ -0,0 +1,49 @@ +name: "Blinds (Dark)" +source: + marketplace_id: "tankashing.blinds-theme" + version: "8.0.0" + installs: 4025 + author: "Tan Ka-Shing" + repo: "https://github.com/orbulant/blinds-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tankashing.blinds-theme" +colors: + bg: "#1F1F1F" + fg: "#F7F7F7" + black: "#000000" + red: "#DE1010" + green: "#117717" + yellow: "#E5E510" + blue: "#3E1D86" + magenta: "#822082" + cyan: "#008094" + white: "#D4D4D4" + brightBlack: "#545454" + brightRed: "#FF0016" + brightGreen: "#33C989" + brightYellow: "#F5F543" + brightBlue: "#6338FF" + brightMagenta: "#E246E2" + brightCyan: "#00CBE0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 100.6 + black: 0 + red: 27.6 + green: 21.8 + yellow: 84.6 + blue: 0 + magenta: 12.1 + cyan: 28 + white: 78.5 + brightBlack: 13.7 + brightRed: 35.6 + brightGreen: 58.9 + brightYellow: 94.7 + brightBlue: 21.4 + brightMagenta: 39.6 + brightCyan: 63 + brightWhite: 105.9 diff --git a/themes/blink-contrast.yaml b/themes/blink-contrast.yaml new file mode 100644 index 00000000..11dad3a7 --- /dev/null +++ b/themes/blink-contrast.yaml @@ -0,0 +1,49 @@ +name: "blink-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#131719" + fg: "#C0CCDB" + black: "#1E2427" + red: "#BA0E2E" + green: "#5298C4" + yellow: "#D4856A" + blue: "#43B5B3" + magenta: "#D4856A" + cyan: "#43B5B3" + white: "#D0D9E4" + brightBlack: "#3F4C53" + brightRed: "#F03E5F" + brightGreen: "#9EC5DE" + brightYellow: "#EBC6B9" + brightBlue: "#8AD4D2" + brightMagenta: "#EBC6B9" + brightCyan: "#8AD4D2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.9 + black: 0 + red: 20.5 + green: 42.3 + yellow: 46.4 + blue: 52.8 + magenta: 46.4 + cyan: 52.8 + white: 82 + brightBlack: 11 + brightRed: 36.8 + brightGreen: 67.5 + brightYellow: 75.8 + brightBlue: 71.9 + brightMagenta: 75.8 + brightCyan: 71.9 + brightWhite: 106.9 diff --git a/themes/blink-light.yaml b/themes/blink-light.yaml new file mode 100644 index 00000000..422da0fb --- /dev/null +++ b/themes/blink-light.yaml @@ -0,0 +1,49 @@ +name: "blink-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#6A7E89" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#5298C4" + yellow: "#D4856A" + blue: "#43B5B3" + magenta: "#D4856A" + cyan: "#43B5B3" + white: "#778B96" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#9EC5DE" + brightYellow: "#EBC6B9" + brightBlue: "#8AD4D2" + brightMagenta: "#EBC6B9" + brightCyan: "#8AD4D2" + brightWhite: "#A2B0B7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 69.3 + black: 0 + red: 80.3 + green: 58.5 + yellow: 54.4 + blue: 48.3 + magenta: 54.4 + cyan: 48.3 + white: 63.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 34.1 + brightYellow: 26.3 + brightBlue: 30 + brightMagenta: 26.3 + brightCyan: 30 + brightWhite: 43.9 diff --git a/themes/blink.yaml b/themes/blink.yaml new file mode 100644 index 00000000..91660245 --- /dev/null +++ b/themes/blink.yaml @@ -0,0 +1,49 @@ +name: "blink" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#283035" + fg: "#C0CCDB" + black: "#333D44" + red: "#BA0E2E" + green: "#5298C4" + yellow: "#D4856A" + blue: "#43B5B3" + magenta: "#D4856A" + cyan: "#43B5B3" + white: "#D0D9E4" + brightBlack: "#54656F" + brightRed: "#F03E5F" + brightGreen: "#9EC5DE" + brightYellow: "#EBC6B9" + brightBlue: "#8AD4D2" + brightMagenta: "#EBC6B9" + brightCyan: "#8AD4D2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 235 + contrast: + fg: 70 + black: 0 + red: 16.6 + green: 38.4 + yellow: 42.5 + blue: 48.9 + magenta: 42.5 + cyan: 48.9 + white: 78.1 + brightBlack: 16.7 + brightRed: 32.9 + brightGreen: 63.6 + brightYellow: 71.9 + brightBlue: 68 + brightMagenta: 71.9 + brightCyan: 68 + brightWhite: 103 diff --git a/themes/blip-cursor-vscode-theme.yaml b/themes/blip-cursor-vscode-theme.yaml new file mode 100644 index 00000000..7a918e47 --- /dev/null +++ b/themes/blip-cursor-vscode-theme.yaml @@ -0,0 +1,49 @@ +name: "Blip Cursor VSCode Theme" +source: + marketplace_id: "b1ip.blip-cursor-vscode-theme" + version: "0.0.1" + installs: 408 + author: "b1ip" + repo: "https://github.com/b1ip/blip-cursor-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=b1ip.blip-cursor-vscode-theme" +colors: + bg: "#212121" + fg: "#E1E1E2" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D1D5DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 86.3 + black: 17.9 + red: 35.7 + green: 61 + yellow: 91.5 + blue: 37.7 + magenta: 50.1 + cyan: 59.6 + white: 78.5 + brightBlack: 46.5 + brightRed: 48.5 + brightGreen: 77.8 + brightYellow: 91.5 + brightBlue: 59.6 + brightMagenta: 50.1 + brightCyan: 68.2 + brightWhite: 102.9 diff --git a/themes/bloody-pie.yaml b/themes/bloody-pie.yaml new file mode 100644 index 00000000..c906dcec --- /dev/null +++ b/themes/bloody-pie.yaml @@ -0,0 +1,49 @@ +name: "Bloody Pie" +source: + marketplace_id: "wrobeljakub.bloody-pie" + version: "1.0.0" + installs: 1301 + author: "wrobeljakub" + repo: "https://github.com/wrobeljakub/bloody-pie-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wrobeljakub.bloody-pie" +colors: + bg: "#1B1A19" + fg: "#F3F2F1" + black: "#11100F" + red: "#D7494E" + green: "#52CE90" + yellow: "#FDEE65" + blue: "#92A4F4" + magenta: "#DA7DCF" + cyan: "#57D2DA" + white: "#F3F2F1" + brightBlack: "#484644" + brightRed: "#D7494E" + brightGreen: "#52CE90" + brightYellow: "#FDEE65" + brightBlue: "#92A4F4" + brightMagenta: "#DA7DCF" + brightCyan: "#57D2DA" + brightWhite: "#F3F2F1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 98.1 + black: 0 + red: 32 + green: 63 + yellow: 93.5 + blue: 53.9 + magenta: 48.7 + cyan: 68 + white: 98.1 + brightBlack: 9.3 + brightRed: 32 + brightGreen: 63 + brightYellow: 93.5 + brightBlue: 53.9 + brightMagenta: 48.7 + brightCyan: 68 + brightWhite: 98.1 diff --git a/themes/bloom-1-1-0.yaml b/themes/bloom-1-1-0.yaml new file mode 100644 index 00000000..971b55b3 --- /dev/null +++ b/themes/bloom-1-1-0.yaml @@ -0,0 +1,49 @@ +name: "Bloom 1.1.0" +source: + marketplace_id: "avago24.bloom" + version: "1.1.0" + installs: 312 + author: "avago24" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=avago24.bloom" +colors: + bg: "#000000" + fg: "#BBBBBB" + black: "#808080" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#A5A5A5" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 65.7 + black: 34.8 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 107.9 + brightBlack: 53.5 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/bloostring.yaml b/themes/bloostring.yaml new file mode 100644 index 00000000..10f9241b --- /dev/null +++ b/themes/bloostring.yaml @@ -0,0 +1,49 @@ +name: "BlooString" +source: + marketplace_id: "AdrianFung.bloo-string" + version: "1.1.0" + installs: 27 + author: "Adrian Fung" + repo: "https://github.com/TheHatttMan/bloo-string" + url: "https://marketplace.visualstudio.com/items?itemName=AdrianFung.bloo-string" +colors: + bg: "#1B1B1B" + fg: "#F5F9FC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 102 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/blossoms.yaml b/themes/blossoms.yaml new file mode 100644 index 00000000..ec874e82 --- /dev/null +++ b/themes/blossoms.yaml @@ -0,0 +1,49 @@ +name: "Blossoms" +source: + marketplace_id: "AprilMayCodes.blossoms-dark-theme" + version: "1.0.1" + installs: 214 + author: "AprilMayCodes" + repo: "https://github.com/AprilBlossoms/blossoms-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AprilMayCodes.blossoms-dark-theme" +colors: + bg: "#1A002C" + fg: "#72FFCA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F0F0F0" + brightBlack: "#343434" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 307 + contrast: + fg: 91.5 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 97.4 + brightBlack: 0 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 107.2 diff --git a/themes/blowington.yaml b/themes/blowington.yaml new file mode 100644 index 00000000..eb472c53 --- /dev/null +++ b/themes/blowington.yaml @@ -0,0 +1,49 @@ +name: "Blowington" +source: + marketplace_id: "treuks.blowington-theme" + version: "1.1.0" + installs: 429 + author: "treuks" + repo: "https://github.com/treuks/blowington-theme" + url: "https://marketplace.visualstudio.com/items?itemName=treuks.blowington-theme" +colors: + bg: "#062626" + fg: "#C7B18F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CBCBCB" + brightBlack: "#5A5A5A" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 195 + contrast: + fg: 59.2 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 28.3 + cyan: 46.1 + white: 72.6 + brightBlack: 15.6 + brightRed: 37.1 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 105.4 diff --git a/themes/blube-dark-light.yaml b/themes/blube-dark-light.yaml new file mode 100644 index 00000000..a952bccb --- /dev/null +++ b/themes/blube-dark-light.yaml @@ -0,0 +1,49 @@ +name: "BluBe Dark Light" +source: + marketplace_id: "BlueBe.blube-dark" + version: "0.0.3" + installs: 314 + author: "BlueBe" + repo: "https://github.com/rafaspdev/blube-dark" + url: "https://marketplace.visualstudio.com/items?itemName=BlueBe.blube-dark" +colors: + bg: "#1A1D2C" + fg: "#949494" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 42.8 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/blue-cheese.yaml b/themes/blue-cheese.yaml new file mode 100644 index 00000000..130cfcda --- /dev/null +++ b/themes/blue-cheese.yaml @@ -0,0 +1,49 @@ +name: "Blue Cheese" +source: + marketplace_id: "N-l1.blue-cheese" + version: "2021.2.6" + installs: 2043 + author: "N-l1" + repo: "https://github.com/N-l1/blue-cheese" + url: "https://marketplace.visualstudio.com/items?itemName=N-l1.blue-cheese" +colors: + bg: "#282C34" + fg: "#E0E0E0" + black: "#3F4451" + red: "#EF5350" + green: "#D0FFA8" + yellow: "#FFCF4D" + blue: "#4AA5F0" + magenta: "#F8BEFF" + cyan: "#85FFFF" + white: "#E0E0E0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#FDEDA2" + brightBlue: "#6ABAFF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 83.7 + black: 0 + red: 36.1 + green: 94.4 + yellow: 77 + blue: 46.5 + magenta: 74.8 + cyan: 91.4 + white: 83.7 + brightBlack: 12.3 + brightRed: 42.9 + brightGreen: 73.6 + brightYellow: 91.5 + brightBlue: 57.6 + brightMagenta: 47.1 + brightCyan: 64.6 + brightWhite: 79.8 diff --git a/themes/blue-collection.yaml b/themes/blue-collection.yaml new file mode 100644 index 00000000..12bd47c1 --- /dev/null +++ b/themes/blue-collection.yaml @@ -0,0 +1,49 @@ +name: "Blue Collection" +source: + marketplace_id: "RLabsInc.rlabs-theme-collection" + version: "0.1.4" + installs: 181 + author: "RLabs Inc." + repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" + url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" +colors: + bg: "#13151B" + fg: "#F7F6F5" + black: "#292929" + red: "#FF7575" + green: "#0CA26B" + yellow: "#FFAC75" + blue: "#759EC9" + magenta: "#9B7AB9" + cyan: "#76A9AC" + white: "#F7F6F5" + brightBlack: "#BBB9B6" + brightRed: "#FF7575" + brightGreen: "#6DCBA9" + brightYellow: "#FFFAA1" + brightBlue: "#AFD8FF" + brightMagenta: "#C096E7" + brightCyan: "#A5D2D4" + brightWhite: "#C9C7C6" +meta: + mode: "dark" + accent: "orange" + hue: 271 + contrast: + fg: 101.2 + black: 0 + red: 50.8 + green: 41.3 + yellow: 67.4 + blue: 47.1 + magenta: 37.6 + cyan: 50.2 + white: 101.2 + brightBlack: 63.9 + brightRed: 50.8 + brightGreen: 64.3 + brightYellow: 101.2 + brightBlue: 79.4 + brightMagenta: 54 + brightCyan: 73.5 + brightWhite: 72.1 diff --git a/themes/blue-color-theme.yaml b/themes/blue-color-theme.yaml new file mode 100644 index 00000000..aeeb9f62 --- /dev/null +++ b/themes/blue-color-theme.yaml @@ -0,0 +1,49 @@ +name: "blue-color-theme" +source: + marketplace_id: "ctf0.seti-ux" + version: "0.1.7" + installs: 1554 + author: "ctf0" + repo: "https://github.com/ctf0/Seti_UX-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ctf0.seti-ux" +colors: + bg: "#1E2024" + fg: "#FFFFFF" + black: "#292C31" + red: "#FF4545" + green: "#42E0AC" + yellow: "#42E0AC" + blue: "#FF4545" + magenta: "#CF3BE9" + cyan: "#94DDFF" + white: "#FFFFFF" + brightBlack: "#5A5A5A" + brightRed: "#FF4545" + brightGreen: "#42E0AC" + brightYellow: "#42E0AC" + brightBlue: "#FF4545" + brightMagenta: "#CF3BE9" + brightCyan: "#94DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.8 + black: 0 + red: 39.7 + green: 71.4 + yellow: 71.4 + blue: 39.7 + magenta: 34.9 + cyan: 78 + white: 105.8 + brightBlack: 16 + brightRed: 39.7 + brightGreen: 71.4 + brightYellow: 71.4 + brightBlue: 39.7 + brightMagenta: 34.9 + brightCyan: 78 + brightWhite: 105.8 diff --git a/themes/blue-dark-theme.yaml b/themes/blue-dark-theme.yaml new file mode 100644 index 00000000..6e9d31b5 --- /dev/null +++ b/themes/blue-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Blue Dark theme" +source: + marketplace_id: "william-piron.night-dark-theme" + version: "0.0.55" + installs: 393 + author: "William PIRON" + repo: "https://github.com/wpiron10/night-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=william-piron.night-dark-theme" +colors: + bg: "#071432" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 74.7 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/blue-day.yaml b/themes/blue-day.yaml new file mode 100644 index 00000000..5ac10d0c --- /dev/null +++ b/themes/blue-day.yaml @@ -0,0 +1,49 @@ +name: "Blue-Day" +source: + marketplace_id: "thiagobessimo.bluenight" + version: "1.0.1" + installs: 1347 + author: "Thiago P B Bessimo" + repo: "https://github.com/thiagobessimo/bluenight" + url: "https://marketplace.visualstudio.com/items?itemName=thiagobessimo.bluenight" +colors: + bg: "#F5F8FF" + fg: "#000510" + black: "#F5F8FF" + red: "#CC3333" + green: "#08DDAA" + yellow: "#FFC500" + blue: "#2080FF" + magenta: "#FF60DD" + cyan: "#20EEEE" + white: "#000510" + brightBlack: "#88ADFF" + brightRed: "#CC3333" + brightGreen: "#08DDAA" + brightYellow: "#FFC500" + brightBlue: "#2080FF" + brightMagenta: "#FF60DD" + brightCyan: "#20EEEE" + brightWhite: "#000510" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 101.7 + black: 0 + red: 69.7 + green: 27.3 + yellow: 22 + blue: 60.2 + magenta: 46.2 + cyan: 16.4 + white: 101.7 + brightBlack: 39.3 + brightRed: 69.7 + brightGreen: 27.3 + brightYellow: 22 + brightBlue: 60.2 + brightMagenta: 46.2 + brightCyan: 16.4 + brightWhite: 101.7 diff --git a/themes/blue-faded.yaml b/themes/blue-faded.yaml new file mode 100644 index 00000000..feccb283 --- /dev/null +++ b/themes/blue-faded.yaml @@ -0,0 +1,49 @@ +name: "Blue faded" +source: + marketplace_id: "aztechcorps.monday-blues" + version: "0.0.2" + installs: 134 + author: "AztechCorps" + repo: "https://github.com/subhamayd2/monday-blues-theme" + url: "https://marketplace.visualstudio.com/items?itemName=aztechcorps.monday-blues" +colors: + bg: "#0D1117" + fg: "#ECF0D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 258 + contrast: + fg: 95.7 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/blue-green-theme.yaml b/themes/blue-green-theme.yaml new file mode 100644 index 00000000..9590d277 --- /dev/null +++ b/themes/blue-green-theme.yaml @@ -0,0 +1,49 @@ +name: "blue-green-theme" +source: + marketplace_id: "agungandre687.blue-green-theme" + version: "0.0.1" + installs: 1471 + author: "agungandre687" + repo: "https://github.com/Andndre/blue-green" + url: "https://marketplace.visualstudio.com/items?itemName=agungandre687.blue-green-theme" +colors: + bg: "#192A2C" + fg: "#ADADAD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 205 + contrast: + fg: 54.5 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.1 + magenta: 27.4 + cyan: 45.2 + white: 87.7 + brightBlack: 19.7 + brightRed: 36.2 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.7 + brightMagenta: 43 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/blue-hacker-theme.yaml b/themes/blue-hacker-theme.yaml new file mode 100644 index 00000000..c5d5869e --- /dev/null +++ b/themes/blue-hacker-theme.yaml @@ -0,0 +1,49 @@ +name: "Blue-Hacker Theme" +source: + marketplace_id: "nguyenhauweb.blue-dark-themb" + version: "0.0.39" + installs: 109 + author: "Nguyễn Thanh Hậu" + repo: "https://github.com/z1001st/blue-dark-themb" + url: "https://marketplace.visualstudio.com/items?itemName=nguyenhauweb.blue-dark-themb" +colors: + bg: "#0D1628" + fg: "#D8DEE9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 263 + contrast: + fg: 85.4 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/blue-jeans.yaml b/themes/blue-jeans.yaml new file mode 100644 index 00000000..ba34c510 --- /dev/null +++ b/themes/blue-jeans.yaml @@ -0,0 +1,49 @@ +name: "Blue Jeans" +source: + marketplace_id: "victorseara.blue-jeans" + version: "0.0.1" + installs: 198 + author: "victorseara" + repo: "https://github.com/victorseara/blue-jeans-theme" + url: "https://marketplace.visualstudio.com/items?itemName=victorseara.blue-jeans" +colors: + bg: "#2B2A33" + fg: "#D7D7DB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FBFBFE" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 290 + contrast: + fg: 78.5 + black: 0 + red: 23.7 + green: 50 + yellow: 82.6 + blue: 24.4 + magenta: 26.7 + cyan: 44.5 + white: 101.4 + brightBlack: 19 + brightRed: 35.5 + brightGreen: 60.5 + brightYellow: 92.6 + brightBlue: 37 + brightMagenta: 42.4 + brightCyan: 52.4 + brightWhite: 103.9 diff --git a/themes/blue-light-filter-dark.yaml b/themes/blue-light-filter-dark.yaml new file mode 100644 index 00000000..f1e0af48 --- /dev/null +++ b/themes/blue-light-filter-dark.yaml @@ -0,0 +1,49 @@ +name: "Blue Light Filter - Dark" +source: + marketplace_id: "SakshamYadav.blue-light-filter-theme" + version: "1.0.0" + installs: 153 + author: "Saksham Yadav" + repo: "https://github.com/Sakshamyadav15/GitCode" + url: "https://marketplace.visualstudio.com/items?itemName=SakshamYadav.blue-light-filter-theme" +colors: + bg: "#1A1512" + fg: "#D4B89C" + black: "#1A1512" + red: "#E67E80" + green: "#A7C080" + yellow: "#E6B673" + blue: "#D9A566" + magenta: "#D69999" + cyan: "#C9A678" + white: "#D4B89C" + brightBlack: "#4A3623" + brightRed: "#EC8E8E" + brightGreen: "#B5CE8F" + brightYellow: "#F0C486" + brightBlue: "#E8B380" + brightMagenta: "#E5A8A8" + brightCyan: "#D9B890" + brightWhite: "#E8C499" +meta: + mode: "dark" + accent: "orange" + hue: 53 + contrast: + fg: 65.8 + black: 0 + red: 48.3 + green: 62.7 + yellow: 66.7 + blue: 58 + magenta: 54.6 + cyan: 56.3 + white: 65.8 + brightBlack: 0 + brightRed: 54.5 + brightGreen: 70.8 + brightYellow: 74.3 + brightBlue: 66.1 + brightMagenta: 62.8 + brightCyan: 66.2 + brightWhite: 73.5 diff --git a/themes/blue-light-filter-warm-dark.yaml b/themes/blue-light-filter-warm-dark.yaml new file mode 100644 index 00000000..014b9c01 --- /dev/null +++ b/themes/blue-light-filter-warm-dark.yaml @@ -0,0 +1,49 @@ +name: "Blue Light Filter - Warm Dark" +source: + marketplace_id: "SakshamYadav.blue-light-filter-theme" + version: "1.0.0" + installs: 153 + author: "Saksham Yadav" + repo: "https://github.com/Sakshamyadav15/GitCode" + url: "https://marketplace.visualstudio.com/items?itemName=SakshamYadav.blue-light-filter-theme" +colors: + bg: "#1C1108" + fg: "#D9B896" + black: "#1C1108" + red: "#E87860" + green: "#B0BA70" + yellow: "#F0B55C" + blue: "#E0A556" + magenta: "#DB9A8A" + cyan: "#D4A76A" + white: "#D9B896" + brightBlack: "#4D3318" + brightRed: "#F08A75" + brightGreen: "#BFCE82" + brightYellow: "#FCC270" + brightBlue: "#F0B570" + brightMagenta: "#ECA99C" + brightCyan: "#E0B880" + brightWhite: "#F0CA88" +meta: + mode: "dark" + accent: "orange" + hue: 60 + contrast: + fg: 66.5 + black: 0 + red: 46.5 + green: 61 + yellow: 67.7 + blue: 59 + magenta: 55.5 + cyan: 58.2 + white: 66.5 + brightBlack: 0 + brightRed: 53.6 + brightGreen: 71.8 + brightYellow: 75.2 + brightBlue: 68.1 + brightMagenta: 64.1 + brightCyan: 67 + brightWhite: 77 diff --git a/themes/blue-light-theme.yaml b/themes/blue-light-theme.yaml new file mode 100644 index 00000000..7dd74256 --- /dev/null +++ b/themes/blue-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Blue Light Theme" +source: + marketplace_id: "msnilshartmann.blue-light" + version: "0.6.4" + installs: 94952 + author: "Nils Hartmann" + repo: "https://github.com/nilshartmann/vscode-blue-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=msnilshartmann.blue-light" +colors: + bg: "#FFFFFF" + fg: "#9B9B9B" + black: "#1A1A1A" + red: "#A56416" + green: "#428226" + yellow: "#A56416" + blue: "#3778B7" + magenta: "#B052A1" + cyan: "#3778B7" + white: "#F7F7F7" + brightBlack: "#9B9B9B" + brightRed: "#A56416" + brightGreen: "#428226" + brightYellow: "#A56416" + brightBlue: "#3778B7" + brightMagenta: "#B052A1" + brightCyan: "#3778B7" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 53.6 + black: 104.3 + red: 72.5 + green: 72.5 + yellow: 72.5 + blue: 71.9 + magenta: 71.4 + cyan: 71.9 + white: 0 + brightBlack: 53.6 + brightRed: 72.5 + brightGreen: 72.5 + brightYellow: 72.5 + brightBlue: 71.9 + brightMagenta: 71.4 + brightCyan: 71.9 + brightWhite: 0 diff --git a/themes/blue-melon.yaml b/themes/blue-melon.yaml new file mode 100644 index 00000000..816c875b --- /dev/null +++ b/themes/blue-melon.yaml @@ -0,0 +1,49 @@ +name: "Blue Melon" +source: + marketplace_id: "JamesGulland.blue-melon" + version: "1.9.0" + installs: 102 + author: "James Gulland" + repo: "https://github.com/james-gulland/blue-melon" + url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.blue-melon" +colors: + bg: "#1C2233" + fg: "#91B4D5" + black: "#1C2233" + red: "#FC8899" + green: "#A3E2D3" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#91B4D5" + brightRed: "#FC8899" + brightGreen: "#A3E2D3" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 269 + contrast: + fg: 57.1 + black: 0 + red: 54.6 + green: 79 + yellow: 100.5 + blue: 76.8 + magenta: 53.4 + cyan: 76.8 + white: 105.4 + brightBlack: 57.1 + brightRed: 54.6 + brightGreen: 79 + brightYellow: 100.5 + brightBlue: 77 + brightMagenta: 53.4 + brightCyan: 77 + brightWhite: 105.4 diff --git a/themes/blue-moves-color-theme.yaml b/themes/blue-moves-color-theme.yaml new file mode 100644 index 00000000..212ec35a --- /dev/null +++ b/themes/blue-moves-color-theme.yaml @@ -0,0 +1,49 @@ +name: "blue-moves-color-theme" +source: + marketplace_id: "Synth1983GreenWave.blue-moves-theme" + version: "2.0.1" + installs: 366 + author: "🧪 ovct 🧪" + repo: "https://github.com/Octaviocossy/blue-moves-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Synth1983GreenWave.blue-moves-theme" +colors: + bg: "#0C1F3C" + fg: "#A5ABB3" + black: "#0C1F3C" + red: "#BE9164" + green: "#51BD99" + yellow: "#ADB96E" + blue: "#7096C2" + magenta: "#C08FD4" + cyan: "#51ADBB" + white: "#A5ABB3" + brightBlack: "#7096C2" + brightRed: "#BE9164" + brightGreen: "#51BD99" + brightYellow: "#ADB96E" + brightBlue: "#7096C2" + brightMagenta: "#C08FD4" + brightCyan: "#51ADBB" + brightWhite: "#A5ABB3" +meta: + mode: "dark" + accent: "teal" + hue: 259 + contrast: + fg: 54.3 + black: 0 + red: 45.5 + green: 54.6 + yellow: 58.8 + blue: 42 + magenta: 49.3 + cyan: 49 + white: 54.3 + brightBlack: 42 + brightRed: 45.5 + brightGreen: 54.6 + brightYellow: 58.8 + brightBlue: 42 + brightMagenta: 49.3 + brightCyan: 49 + brightWhite: 54.3 diff --git a/themes/blue-moves-darker-color-theme.yaml b/themes/blue-moves-darker-color-theme.yaml new file mode 100644 index 00000000..d13e7649 --- /dev/null +++ b/themes/blue-moves-darker-color-theme.yaml @@ -0,0 +1,49 @@ +name: "blue-moves-darker-color-theme" +source: + marketplace_id: "Synth1983GreenWave.blue-moves-theme" + version: "2.0.1" + installs: 366 + author: "🧪 ovct 🧪" + repo: "https://github.com/Octaviocossy/blue-moves-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Synth1983GreenWave.blue-moves-theme" +colors: + bg: "#111B2E" + fg: "#A5ABB3" + black: "#111B2E" + red: "#BE9164" + green: "#51BD99" + yellow: "#ADB96E" + blue: "#7096C2" + magenta: "#C08FD4" + cyan: "#51ADBB" + white: "#A5ABB3" + brightBlack: "#7096C2" + brightRed: "#BE9164" + brightGreen: "#51BD99" + brightYellow: "#ADB96E" + brightBlue: "#7096C2" + brightMagenta: "#C08FD4" + brightCyan: "#51ADBB" + brightWhite: "#A5ABB3" +meta: + mode: "dark" + accent: "teal" + hue: 262 + contrast: + fg: 54.9 + black: 0 + red: 46.1 + green: 55.3 + yellow: 59.4 + blue: 42.7 + magenta: 50 + cyan: 49.7 + white: 54.9 + brightBlack: 42.7 + brightRed: 46.1 + brightGreen: 55.3 + brightYellow: 59.4 + brightBlue: 42.7 + brightMagenta: 50 + brightCyan: 49.7 + brightWhite: 54.9 diff --git a/themes/blue-neon.yaml b/themes/blue-neon.yaml new file mode 100644 index 00000000..07d500d9 --- /dev/null +++ b/themes/blue-neon.yaml @@ -0,0 +1,49 @@ +name: "Blue Neon" +source: + marketplace_id: "puszkarek.arasaka-inferno-vscode-theme" + version: "1.2.0" + installs: 268 + author: "Puszkarek" + repo: "https://github.com/Puszkarek/arasaka-inferno-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.arasaka-inferno-vscode-theme" +colors: + bg: "#0E0E17" + fg: "#63A6FD" + black: "#0E0E17" + red: "#FF2E6E" + green: "#2570D4" + yellow: "#F0B437" + blue: "#00FFCC" + magenta: "#FF00AA" + cyan: "#00FFF7" + white: "#2570D4" + brightBlack: "#030305" + brightRed: "#FF2E6E" + brightGreen: "#2570D4" + brightYellow: "#F0B437" + brightBlue: "#00FFCC" + brightMagenta: "#FF00A8" + brightCyan: "#00FFF7" + brightWhite: "#8FBFFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 52.8 + black: 0 + red: 39.8 + green: 28.3 + yellow: 67.3 + blue: 89.5 + magenta: 40.6 + cyan: 91.4 + white: 28.3 + brightBlack: 0 + brightRed: 39.8 + brightGreen: 28.3 + brightYellow: 67.3 + brightBlue: 89.5 + brightMagenta: 40.5 + brightCyan: 91.4 + brightWhite: 66.1 diff --git a/themes/blue-night.yaml b/themes/blue-night.yaml new file mode 100644 index 00000000..4e32013d --- /dev/null +++ b/themes/blue-night.yaml @@ -0,0 +1,49 @@ +name: "Blue-Night" +source: + marketplace_id: "thiagobessimo.bluenight" + version: "1.0.1" + installs: 1347 + author: "Thiago P B Bessimo" + repo: "https://github.com/thiagobessimo/bluenight" + url: "https://marketplace.visualstudio.com/items?itemName=thiagobessimo.bluenight" +colors: + bg: "#000510" + fg: "#F5F8FF" + black: "#000510" + red: "#CC3333" + green: "#08DDAA" + yellow: "#FFC500" + blue: "#2080FF" + magenta: "#FF60DD" + cyan: "#20EEEE" + white: "#F5F8FF" + brightBlack: "#00194D" + brightRed: "#CC3333" + brightGreen: "#08DDAA" + brightYellow: "#FFC500" + brightBlue: "#2080FF" + brightMagenta: "#FF60DD" + brightCyan: "#20EEEE" + brightWhite: "#F5F8FF" +meta: + mode: "dark" + accent: "pink" + hue: 251 + contrast: + fg: 103.1 + black: 0 + red: 27.7 + green: 71.2 + yellow: 76.7 + blue: 37.2 + magenta: 51.4 + cyan: 82.7 + white: 103.1 + brightBlack: 0 + brightRed: 27.7 + brightGreen: 71.2 + brightYellow: 76.7 + brightBlue: 37.2 + brightMagenta: 51.4 + brightCyan: 82.7 + brightWhite: 103.1 diff --git a/themes/blue.yaml b/themes/blue.yaml new file mode 100644 index 00000000..3e21dee7 --- /dev/null +++ b/themes/blue.yaml @@ -0,0 +1,49 @@ +name: "blue" +source: + marketplace_id: "natecrow.consonance-themes" + version: "1.2.0" + installs: 317 + author: "natecrow" + repo: "https://github.com/natecrow/consonance-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" +colors: + bg: "#111111" + fg: "#D9C1BD" + black: "#000000" + red: "#B7C7EC" + green: "#66A1F7" + yellow: "#93C9FF" + blue: "#88726F" + magenta: "#367ACD" + cyan: "#8E9FC1" + white: "#F6DDD9" + brightBlack: "#88726F" + brightRed: "#B7C7EC" + brightGreen: "#66A1F7" + brightYellow: "#93C9FF" + brightBlue: "#88726F" + brightMagenta: "#367ACD" + brightCyan: "#8E9FC1" + brightWhite: "#FFF9F6" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 71.7 + black: 0 + red: 72.1 + green: 50.5 + yellow: 70.5 + blue: 30 + magenta: 31.3 + cyan: 49.6 + white: 88.9 + brightBlack: 30 + brightRed: 72.1 + brightGreen: 50.5 + brightYellow: 70.5 + brightBlue: 30 + brightMagenta: 31.3 + brightCyan: 49.6 + brightWhite: 104.1 diff --git a/themes/blueberry-dark-theme.yaml b/themes/blueberry-dark-theme.yaml new file mode 100644 index 00000000..3541690f --- /dev/null +++ b/themes/blueberry-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Blueberry dark theme" +source: + marketplace_id: "peymanslh.blueberry-dark-theme" + version: "1.1.1" + installs: 95862 + author: "peymanslh" + repo: "https://github.com/peymanslh/vscode-blueberry-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=peymanslh.blueberry-dark-theme" +colors: + bg: "#242938" + fg: "#A6ACCD" + black: "#676E95" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 270 + contrast: + fg: 54.4 + black: 23.7 + red: 40.9 + green: 81.5 + yellow: 76.2 + blue: 53.2 + magenta: 51 + cyan: 75.5 + white: 104.2 + brightBlack: 23.7 + brightRed: 40.9 + brightGreen: 81.5 + brightYellow: 76.2 + brightBlue: 53.2 + brightMagenta: 51 + brightCyan: 75.5 + brightWhite: 104.2 diff --git a/themes/blueberry-futuristic-theme-fork.yaml b/themes/blueberry-futuristic-theme-fork.yaml new file mode 100644 index 00000000..29e5167d --- /dev/null +++ b/themes/blueberry-futuristic-theme-fork.yaml @@ -0,0 +1,49 @@ +name: "Blueberry Futuristic theme - Fork" +source: + marketplace_id: "andyluisilva.BlueTheme-andy" + version: "0.0.0" + installs: 165 + author: "andyluisilva" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=andyluisilva.BlueTheme-andy" +colors: + bg: "#040C16" + fg: "#506477" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#0F7575" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#246890" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 251 + contrast: + fg: 21.1 + black: 0 + red: 27.5 + green: 53.8 + yellow: 24.5 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 21.6 + brightBlue: 40.8 + brightMagenta: 46.1 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/blueberry-theme.yaml b/themes/blueberry-theme.yaml new file mode 100644 index 00000000..a798653c --- /dev/null +++ b/themes/blueberry-theme.yaml @@ -0,0 +1,49 @@ +name: "Blueberry Theme" +source: + marketplace_id: "sylten.strawberry-theme" + version: "1.0.5" + installs: 8896 + author: "Jonas Siltamäki Håkansson" + repo: "https://github.com/sylten/strawberry-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sylten.strawberry-theme" +colors: + bg: "#252B2E" + fg: "#D4D4D4" + black: "#878787" + red: "#E15A60" + green: "#99C794" + yellow: "#FAC863" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#878787" + brightRed: "#E15A60" + brightGreen: "#99C794" + brightYellow: "#FAC863" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 229 + contrast: + fg: 76.6 + black: 34.3 + red: 35 + green: 62 + yellow: 73.9 + blue: 41.3 + magenta: 49.2 + cyan: 50.2 + white: 76.6 + brightBlack: 34.3 + brightRed: 35 + brightGreen: 62 + brightYellow: 73.9 + brightBlue: 41.3 + brightMagenta: 49.2 + brightCyan: 50.2 + brightWhite: 76.6 diff --git a/themes/bluebracket-theme.yaml b/themes/bluebracket-theme.yaml new file mode 100644 index 00000000..a5ecaf84 --- /dev/null +++ b/themes/bluebracket-theme.yaml @@ -0,0 +1,49 @@ +name: "bluebracket-theme" +source: + marketplace_id: "bluebracket.bluebracket-material" + version: "1.6.0" + installs: 3654 + author: "bluebracket" + repo: "https://github.com/ppozniak/bluebracket-material-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=bluebracket.bluebracket-material" +colors: + bg: "#0F1E28" + fg: "#FEFEFE" + black: "#676E95" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 239 + contrast: + fg: 105.5 + black: 25.8 + red: 43 + green: 83.5 + yellow: 78.3 + blue: 55.3 + magenta: 53.1 + cyan: 77.6 + white: 106.2 + brightBlack: 25.8 + brightRed: 43 + brightGreen: 83.5 + brightYellow: 78.3 + brightBlue: 55.3 + brightMagenta: 53.1 + brightCyan: 77.6 + brightWhite: 106.2 diff --git a/themes/bluedark.yaml b/themes/bluedark.yaml new file mode 100644 index 00000000..2ab73f5f --- /dev/null +++ b/themes/bluedark.yaml @@ -0,0 +1,49 @@ +name: "BlueDark" +source: + marketplace_id: "Drakencord.blue-dark" + version: "0.0.1" + installs: 818 + author: "Drakencord" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Drakencord.blue-dark" +colors: + bg: "#1F2937" + fg: "#ABB2BF" + black: "#000000" + red: "#FF2348" + green: "#ADDB67" + yellow: "#ECC48D" + blue: "#407DFF" + magenta: "#9F60EC" + cyan: "#11A8CD" + white: "#ABB2BF" + brightBlack: "#637777" + brightRed: "#FF5874" + brightGreen: "#8FB05E" + brightYellow: "#DCDCAA" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#29B8DB" + brightWhite: "#BBBEC4" +meta: + mode: "dark" + accent: "orange" + hue: 257 + contrast: + fg: 56.9 + black: 0 + red: 35.2 + green: 72.4 + yellow: 71.2 + blue: 33.5 + magenta: 32 + cyan: 45 + white: 56.9 + brightBlack: 25.3 + brightRed: 42 + brightGreen: 50.2 + brightYellow: 80 + brightBlue: 53.4 + brightMagenta: 51.2 + brightCyan: 52.9 + brightWhite: 63.8 diff --git a/themes/bluegreenspace.yaml b/themes/bluegreenspace.yaml new file mode 100644 index 00000000..7eeb597b --- /dev/null +++ b/themes/bluegreenspace.yaml @@ -0,0 +1,49 @@ +name: "BlueGreenSpace" +source: + marketplace_id: "YesCode.inspiration" + version: "0.0.19" + installs: 1076 + author: "YesCode" + repo: "https://github.com/yesomac/inspiration_themevsc" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" +colors: + bg: "#090A00" + fg: "#E7F4FF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#474609" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 113 + contrast: + fg: 99.3 + black: 0 + red: 42.9 + green: 61.9 + yellow: 73.9 + blue: 48.4 + magenta: 20.4 + cyan: 50.3 + white: 48.1 + brightBlack: 19.5 + brightRed: 42.9 + brightGreen: 9.7 + brightYellow: 80.6 + brightBlue: 19.6 + brightMagenta: 20.4 + brightCyan: 50.3 + brightWhite: 99.7 diff --git a/themes/bluelili-color-theme.yaml b/themes/bluelili-color-theme.yaml new file mode 100644 index 00000000..a7584637 --- /dev/null +++ b/themes/bluelili-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Bluelili-color-theme" +source: + marketplace_id: "daniloBrayann.blue-theme-dark" + version: "0.0.37" + installs: 454 + author: "daniloBrayann" + repo: "https://github.com/danilobrayann/dev-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.blue-theme-dark" +colors: + bg: "#19191A" + fg: "#878784" + black: "#21222C" + red: "#FF5555" + green: "#46B1F2" + yellow: "#1EE6C2" + blue: "#00FF9E" + magenta: "#1FEA4F" + cyan: "#8C1FF1" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#8C1FF1" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 36.8 + black: 0 + red: 43.2 + green: 54.3 + yellow: 75.4 + blue: 87.1 + magenta: 74.6 + cyan: 23 + white: 101.7 + brightBlack: 27.8 + brightRed: 48.6 + brightGreen: 88.8 + brightYellow: 103.3 + brightBlue: 23 + brightMagenta: 62.4 + brightCyan: 96.6 + brightWhite: 106.7 diff --git a/themes/blueorange.yaml b/themes/blueorange.yaml new file mode 100644 index 00000000..21c490b6 --- /dev/null +++ b/themes/blueorange.yaml @@ -0,0 +1,49 @@ +name: "BlueOrange" +source: + marketplace_id: "paul-hansen.blueorange" + version: "1.0.0" + installs: 490 + author: "Paul Hansen" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=paul-hansen.blueorange" +colors: + bg: "#0F1419" + fg: "#E6E1CF" + black: "#000000" + red: "#FF3333" + green: "#B8CC52" + yellow: "#E7C547" + blue: "#36A3D9" + magenta: "#BC3FBC" + cyan: "#95E6CB" + white: "#FFFFFF" + brightBlack: "#323232" + brightRed: "#FF6565" + brightGreen: "#EAFE84" + brightYellow: "#FFF779" + brightBlue: "#68D5FF" + brightMagenta: "#D670D6" + brightCyan: "#C7FFFD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 87.7 + black: 0 + red: 38.9 + green: 69.2 + yellow: 72.4 + blue: 47.1 + magenta: 30.1 + cyan: 81.2 + white: 107.2 + brightBlack: 0 + brightRed: 47 + brightGreen: 99.7 + brightYellow: 99 + brightBlue: 72.9 + brightMagenta: 45.7 + brightCyan: 100.2 + brightWhite: 107.2 diff --git a/themes/bluered-theme.yaml b/themes/bluered-theme.yaml new file mode 100644 index 00000000..5c81e635 --- /dev/null +++ b/themes/bluered-theme.yaml @@ -0,0 +1,49 @@ +name: "bluered-theme" +source: + marketplace_id: "KelsonCarvalho.bluered-theme" + version: "2.0.0" + installs: 112 + author: "Kelson Carvalho" + repo: "https://github.com/NoslekCode/bluered-theme" + url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.bluered-theme" +colors: + bg: "#2E3D5A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#B0ACAC" +meta: + mode: "dark" + accent: "pink" + hue: 263 + contrast: + fg: 71.6 + black: 8.8 + red: 18.8 + green: 45.1 + yellow: 77.7 + blue: 19.6 + magenta: 21.9 + cyan: 39.7 + white: 99 + brightBlack: 14.2 + brightRed: 30.7 + brightGreen: 55.7 + brightYellow: 87.8 + brightBlue: 32.1 + brightMagenta: 37.5 + brightCyan: 47.5 + brightWhite: 48.9 diff --git a/themes/bluesea.yaml b/themes/bluesea.yaml new file mode 100644 index 00000000..62c0d8f4 --- /dev/null +++ b/themes/bluesea.yaml @@ -0,0 +1,49 @@ +name: "BlueSea" +source: + marketplace_id: "YesCode.neutral" + version: "0.0.9" + installs: 608 + author: "YesCode" + repo: "https://github.com/yesomac/NeutralThemeVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.neutral" +colors: + bg: "#09021D" + fg: "#F7EEFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#F9F8FA" + brightYellow: "#C4A2EB" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 292 + contrast: + fg: 98.7 + black: 0 + red: 42.8 + green: 61.8 + yellow: 73.9 + blue: 48.4 + magenta: 20.4 + cyan: 50.3 + white: 48.1 + brightBlack: 19.4 + brightRed: 42.8 + brightGreen: 103.3 + brightYellow: 59.6 + brightBlue: 19.6 + brightMagenta: 20.4 + brightCyan: 50.3 + brightWhite: 99.7 diff --git a/themes/bluespace-s.yaml b/themes/bluespace-s.yaml new file mode 100644 index 00000000..74d28f36 --- /dev/null +++ b/themes/bluespace-s.yaml @@ -0,0 +1,49 @@ +name: "BlueSpace S" +source: + marketplace_id: "YesCode.bluespace" + version: "0.0.22" + installs: 208 + author: "YesCode" + repo: "https://github.com/yesomac/BlueSpaceVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.bluespace" +colors: + bg: "#16181F" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#BDEFFA" + brightYellow: "#E7F0FF" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 273 + contrast: + fg: 104.4 + black: 0 + red: 41.8 + green: 60.8 + yellow: 72.9 + blue: 47.4 + magenta: 19.4 + cyan: 49.3 + white: 47.1 + brightBlack: 18.5 + brightRed: 41.8 + brightGreen: 90.8 + brightYellow: 96.4 + brightBlue: 18.6 + brightMagenta: 19.4 + brightCyan: 49.3 + brightWhite: 98.7 diff --git a/themes/bluespace.yaml b/themes/bluespace.yaml new file mode 100644 index 00000000..d4fe2bf4 --- /dev/null +++ b/themes/bluespace.yaml @@ -0,0 +1,49 @@ +name: "BlueSpace" +source: + marketplace_id: "YesCode.bluespace" + version: "0.0.22" + installs: 208 + author: "YesCode" + repo: "https://github.com/yesomac/BlueSpaceVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.bluespace" +colors: + bg: "#02031D" + fg: "#FFFFFF" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#8F8EDA" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: 271 + contrast: + fg: 107.7 + black: 0 + red: 42.8 + green: 61.8 + yellow: 73.9 + blue: 83.7 + magenta: 20.4 + cyan: 50.3 + white: 48.1 + brightBlack: 19.5 + brightRed: 42.8 + brightGreen: 45.3 + brightYellow: 80.6 + brightBlue: 19.6 + brightMagenta: 20.4 + brightCyan: 50.3 + brightWhite: 99.7 diff --git a/themes/bluespexter.yaml b/themes/bluespexter.yaml new file mode 100644 index 00000000..d9e1b008 --- /dev/null +++ b/themes/bluespexter.yaml @@ -0,0 +1,49 @@ +name: "BluespEXTER" +source: + marketplace_id: "jefffree22.BluespEXTER" + version: "0.0.1" + installs: 42 + author: "jeff free 22" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jefffree22.BluespEXTER" +colors: + bg: "#00080D" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 224 + contrast: + fg: 107.8 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/bluethemepulper.yaml b/themes/bluethemepulper.yaml new file mode 100644 index 00000000..d5a01f34 --- /dev/null +++ b/themes/bluethemepulper.yaml @@ -0,0 +1,49 @@ +name: "BlueThemePulper" +source: + marketplace_id: "daniloBrayann.blue-theme-dark" + version: "0.0.37" + installs: 454 + author: "daniloBrayann" + repo: "https://github.com/danilobrayann/dev-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.blue-theme-dark" +colors: + bg: "#171131" + fg: "#C7BFE8" + black: "#171131" + red: "#D62C2C" + green: "#42DD76" + yellow: "#FFB638" + blue: "#28A9FF" + magenta: "#E66DFF" + cyan: "#14E5D4" + white: "#C7BFE8" + brightBlack: "#382B78" + brightRed: "#FC0606" + brightGreen: "#21FE6B" + brightYellow: "#FFB638" + brightBlue: "#28A9FF" + brightMagenta: "#E66DFF" + brightCyan: "#00F9E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 288 + contrast: + fg: 70 + black: 0 + red: 28.2 + green: 69.5 + yellow: 70 + blue: 51.4 + magenta: 50.3 + cyan: 75.9 + white: 70 + brightBlack: 0 + brightRed: 35.8 + brightGreen: 85.8 + brightYellow: 70 + brightBlue: 51.4 + brightMagenta: 50.3 + brightCyan: 86.8 + brightWhite: 106.9 diff --git a/themes/blueyonedark.yaml b/themes/blueyonedark.yaml new file mode 100644 index 00000000..f17a1f57 --- /dev/null +++ b/themes/blueyonedark.yaml @@ -0,0 +1,49 @@ +name: "BlueyOneDark" +source: + marketplace_id: "BlueyThemes.blueyonedark" + version: "2.2.1" + installs: 190 + author: "BlueyThemes" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=BlueyThemes.blueyonedark" +colors: + bg: "#282C34" + fg: "#D9DBE0" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D1BC52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0EE5D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 80.5 + black: 0 + red: 33.5 + green: 57.2 + yellow: 62.1 + blue: 46.5 + magenta: 35.9 + cyan: 49.3 + white: 79.8 + brightBlack: 12.3 + brightRed: 42.9 + brightGreen: 73.6 + brightYellow: 88.7 + brightBlue: 60.5 + brightMagenta: 47.1 + brightCyan: 64.6 + brightWhite: 87.4 diff --git a/themes/bluish.yaml b/themes/bluish.yaml new file mode 100644 index 00000000..b98ab54b --- /dev/null +++ b/themes/bluish.yaml @@ -0,0 +1,49 @@ +name: "Bluish" +source: + marketplace_id: "Kudu.Kudu" + version: "1.0.4" + installs: 277 + author: "Kudu" + repo: "https://github.com/BradStephen/bluish/blob/main/blueberry.png" + url: "https://marketplace.visualstudio.com/items?itemName=Kudu.Kudu" +colors: + bg: "#24262F" + fg: "#CBCBCB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 71.9 + black: 0 + red: 24.6 + green: 50.9 + yellow: 83.5 + blue: 25.3 + magenta: 27.6 + cyan: 45.4 + white: 87.9 + brightBlack: 19.9 + brightRed: 36.4 + brightGreen: 61.4 + brightYellow: 93.5 + brightBlue: 37.9 + brightMagenta: 43.2 + brightCyan: 53.3 + brightWhite: 87.9 diff --git a/themes/bluloco-dark-italic.yaml b/themes/bluloco-dark-italic.yaml new file mode 100644 index 00000000..b6ca3427 --- /dev/null +++ b/themes/bluloco-dark-italic.yaml @@ -0,0 +1,49 @@ +name: "Bluloco Dark Italic" +source: + marketplace_id: "uloco.theme-bluloco-dark" + version: "3.7.6" + installs: 510899 + author: "Umut Topuzoğlu" + repo: "https://github.com/uloco/theme-bluloco-dark" + url: "https://marketplace.visualstudio.com/items?itemName=uloco.theme-bluloco-dark" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#42444D" + red: "#FC2E51" + green: "#25A45C" + yellow: "#FF9369" + blue: "#3375FE" + magenta: "#9F7EFE" + cyan: "#4483AA" + white: "#CDD3E0" + brightBlack: "#8F9AAE" + brightRed: "#FF637F" + brightGreen: "#3FC56A" + brightYellow: "#F9C858" + brightBlue: "#10B0FE" + brightMagenta: "#FF78F8" + brightCyan: "#5FB9BC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 34.6 + green: 38.7 + yellow: 55.5 + blue: 29.9 + magenta: 40.5 + cyan: 29.2 + white: 75.5 + brightBlack: 43.2 + brightRed: 43.7 + brightGreen: 54.4 + brightYellow: 73.2 + brightBlue: 50.8 + brightMagenta: 54 + brightCyan: 52.8 + brightWhite: 103.7 diff --git a/themes/bluloco-dark.yaml b/themes/bluloco-dark.yaml new file mode 100644 index 00000000..7b3d4289 --- /dev/null +++ b/themes/bluloco-dark.yaml @@ -0,0 +1,49 @@ +name: "Bluloco Dark" +source: + marketplace_id: "W77.bluloco-dark-muted-theme-w77" + version: "0.0.2" + installs: 699 + author: "W77" + repo: "https://github.com/wojtek77/bluloco-dark-muted-theme-w77" + url: "https://marketplace.visualstudio.com/items?itemName=W77.bluloco-dark-muted-theme-w77" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#42444D" + red: "#FC2E51" + green: "#25A45C" + yellow: "#FF9369" + blue: "#3375FE" + magenta: "#8F74E0" + cyan: "#4483AA" + white: "#CDD3E0" + brightBlack: "#8F9AAE" + brightRed: "#FF637F" + brightGreen: "#3FC56A" + brightYellow: "#F9C858" + brightBlue: "#10B0FE" + brightMagenta: "#BD6AB9" + brightCyan: "#5FB9BC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 34.6 + green: 38.7 + yellow: 55.5 + blue: 29.9 + magenta: 33.5 + cyan: 29.2 + white: 75.5 + brightBlack: 43.2 + brightRed: 43.7 + brightGreen: 54.4 + brightYellow: 73.2 + brightBlue: 50.8 + brightMagenta: 34.8 + brightCyan: 52.8 + brightWhite: 103.7 diff --git a/themes/bluloco-light-italic.yaml b/themes/bluloco-light-italic.yaml new file mode 100644 index 00000000..ee9759cd --- /dev/null +++ b/themes/bluloco-light-italic.yaml @@ -0,0 +1,49 @@ +name: "Bluloco Light Italic" +source: + marketplace_id: "uloco.theme-bluloco-light" + version: "3.7.5" + installs: 484924 + author: "Umut Topuzoğlu" + repo: "https://github.com/uloco/theme-bluloco-light" + url: "https://marketplace.visualstudio.com/items?itemName=uloco.theme-bluloco-light" +colors: + bg: "#F9F9F9" + fg: "#383A42" + black: "#373A41" + red: "#D52652" + green: "#239749" + yellow: "#DF621B" + blue: "#275FE4" + magenta: "#823EF0" + cyan: "#26608C" + white: "#B9BAC1" + brightBlack: "#676A77" + brightRed: "#FF637F" + brightGreen: "#3CBC66" + brightYellow: "#C5A231" + brightBlue: "#0099E0" + brightMagenta: "#CE32C0" + brightCyan: "#6D92BA" + brightWhite: "#D3D3D3" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 92.6 + black: 92.7 + red: 69 + green: 61 + yellow: 58.8 + blue: 73 + magenta: 72.3 + cyan: 79.2 + white: 33.5 + brightBlack: 73.2 + brightRed: 50.3 + brightGreen: 44.2 + brightYellow: 44.4 + brightBlue: 54.5 + brightMagenta: 65 + brightCyan: 56.1 + brightWhite: 19.7 diff --git a/themes/blush-pink-enhanced-premium.yaml b/themes/blush-pink-enhanced-premium.yaml new file mode 100644 index 00000000..e063c5a0 --- /dev/null +++ b/themes/blush-pink-enhanced-premium.yaml @@ -0,0 +1,49 @@ +name: "Blush Pink Enhanced Premium" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#FDF8F9" + fg: "#2D2D2D" + black: "#2D2D2D" + red: "#E74C3C" + green: "#27AE60" + yellow: "#F39C12" + blue: "#3498DB" + magenta: "#D14769" + cyan: "#1ABC9C" + white: "#ECF0F1" + brightBlack: "#2D2D2D" + brightRed: "#E74C3C" + brightGreen: "#27AE60" + brightYellow: "#F39C12" + brightBlue: "#3498DB" + brightMagenta: "#D14769" + brightCyan: "#1ABC9C" + brightWhite: "#ECF0F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.9 + black: 96.9 + red: 61.1 + green: 50.9 + yellow: 39.3 + blue: 54.7 + magenta: 65.8 + cyan: 43.4 + white: 0 + brightBlack: 96.9 + brightRed: 61.1 + brightGreen: 50.9 + brightYellow: 39.3 + brightBlue: 54.7 + brightMagenta: 65.8 + brightCyan: 43.4 + brightWhite: 0 diff --git a/themes/blve.yaml b/themes/blve.yaml new file mode 100644 index 00000000..8d029e1f --- /dev/null +++ b/themes/blve.yaml @@ -0,0 +1,49 @@ +name: "Blve" +source: + marketplace_id: "YMG.blve-theme" + version: "1.1.0" + installs: 514 + author: "YMG" + repo: "https://github.com/0xymg/blve_vscode_theme" + url: "https://marketplace.visualstudio.com/items?itemName=YMG.blve-theme" +colors: + bg: "#0B1015" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 249 + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.2 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/bobascheme.yaml b/themes/bobascheme.yaml new file mode 100644 index 00000000..0cfd98dd --- /dev/null +++ b/themes/bobascheme.yaml @@ -0,0 +1,49 @@ +name: "bobascheme" +source: + marketplace_id: "bbaovanc.bobascheme" + version: "0.0.3" + installs: 35 + author: "BBaoVanC" + repo: "https://github.com/BBaoVanC/bobascheme" + url: "https://marketplace.visualstudio.com/items?itemName=bbaovanc.bobascheme" +colors: + bg: "#111111" + fg: "#D4D4D4" + black: "#2B2B2B" + red: "#B04744" + green: "#167A42" + yellow: "#8C6110" + blue: "#216DBF" + magenta: "#9F4B95" + cyan: "#29757F" + white: "#BFBFBF" + brightBlack: "#5E5E5E" + brightRed: "#EB7C74" + brightGreen: "#54B073" + brightYellow: "#B78738" + brightBlue: "#66A1F8" + brightMagenta: "#D87FCC" + brightCyan: "#61AAB3" + brightWhite: "#E9E9E9" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 80 + black: 0 + red: 24.6 + green: 24.8 + yellow: 24.1 + blue: 25.7 + magenta: 25 + cyan: 25 + white: 67.5 + brightBlack: 19.2 + brightRed: 48.8 + brightGreen: 49.5 + brightYellow: 42 + brightBlue: 50.5 + brightMagenta: 49.5 + brightCyan: 49.8 + brightWhite: 93.1 diff --git a/themes/bocenago-pradei.yaml b/themes/bocenago-pradei.yaml new file mode 100644 index 00000000..a9bce75a --- /dev/null +++ b/themes/bocenago-pradei.yaml @@ -0,0 +1,49 @@ +name: "Bocenago: Pradei" +source: + marketplace_id: "einar-hjortdal.bocenago-themes" + version: "3.0.2" + installs: 39 + author: "Einar Hjortdal" + repo: "https://github.com/einar-hjortdal/Bocenago" + url: "https://marketplace.visualstudio.com/items?itemName=einar-hjortdal.bocenago-themes" +colors: + bg: "#24211E" + fg: "#D7C484" + black: "#24211E" + red: "#AC987D" + green: "#5F865F" + yellow: "#77824A" + blue: "#B36B42" + magenta: "#BB7844" + cyan: "#C9A654" + white: "#D7C484" + brightBlack: "#24211E" + brightRed: "#AC987D" + brightGreen: "#5F865F" + brightYellow: "#77824A" + brightBlue: "#B36B42" + brightMagenta: "#BB7844" + brightCyan: "#C9A654" + brightWhite: "#D7C484" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 69 + black: 0 + red: 45.8 + green: 30.8 + yellow: 30.9 + blue: 31.3 + magenta: 36.3 + cyan: 54.2 + white: 69 + brightBlack: 0 + brightRed: 45.8 + brightGreen: 30.8 + brightYellow: 30.9 + brightBlue: 31.3 + brightMagenta: 36.3 + brightCyan: 54.2 + brightWhite: 69 diff --git a/themes/bogem-s-night-owl.yaml b/themes/bogem-s-night-owl.yaml new file mode 100644 index 00000000..faf9a9a6 --- /dev/null +++ b/themes/bogem-s-night-owl.yaml @@ -0,0 +1,49 @@ +name: "Bogem's Night Owl" +source: + marketplace_id: "bogem.bogems-night-owl" + version: "1.2.0" + installs: 18234 + author: "Albert Nigmatzianov" + repo: "https://github.com/bogem/bogems-night-owl-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bogem.bogems-night-owl" +colors: + bg: "#011627" + fg: "#DADADA" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#9FC149" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 244 + contrast: + fg: 83.2 + black: 0 + red: 39.4 + green: 67.3 + yellow: 61.3 + blue: 56 + magenta: 53.8 + cyan: 59.8 + white: 107 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 107 diff --git a/themes/bogster.yaml b/themes/bogster.yaml new file mode 100644 index 00000000..033d5857 --- /dev/null +++ b/themes/bogster.yaml @@ -0,0 +1,49 @@ +name: "Bogster" +source: + marketplace_id: "boosted.helix-bogster-theme" + version: "1.0.4" + installs: 102 + author: "Boosted" + repo: "https://github.com/pyboosted/vscode-hx-bogster" + url: "https://marketplace.visualstudio.com/items?itemName=boosted.helix-bogster-theme" +colors: + bg: "#141C24" + fg: "#E5DED6" + black: "#13181E" + red: "#D32C5D" + green: "#7FDC59" + yellow: "#DCB659" + blue: "#36B2D4" + magenta: "#B759DC" + cyan: "#00DFB5" + white: "#E5DED6" + brightBlack: "#415367" + brightRed: "#DC597F" + brightGreen: "#7FDC59" + brightYellow: "#DCB659" + brightBlue: "#59DCD8" + brightMagenta: "#B759DC" + brightCyan: "#59DCD8" + brightWhite: "#E5DED6" +meta: + mode: "dark" + accent: "pink" + hue: 249 + contrast: + fg: 85.7 + black: 0 + red: 27.8 + green: 70.9 + yellow: 64.1 + blue: 52.2 + magenta: 34.9 + cyan: 71.1 + white: 85.7 + brightBlack: 13.2 + brightRed: 37 + brightGreen: 70.9 + brightYellow: 64.1 + brightBlue: 72.6 + brightMagenta: 34.9 + brightCyan: 72.6 + brightWhite: 85.7 diff --git a/themes/bohemian-dark.yaml b/themes/bohemian-dark.yaml new file mode 100644 index 00000000..7cdb8632 --- /dev/null +++ b/themes/bohemian-dark.yaml @@ -0,0 +1,49 @@ +name: "Bohemian Dark" +source: + marketplace_id: "Alastair908.bohemian-theme" + version: "1.2.0" + installs: 309 + author: "Alastair908" + repo: "https://github.com/Alastair908/BohemianTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Alastair908.bohemian-theme" +colors: + bg: "#1F1E1E" + fg: "#FFE5D9" + black: "#5A3A3A" + red: "#E65C5C" + green: "#85CB6C" + yellow: "#E9A700" + blue: "#4F99D9" + magenta: "#8E6FE4" + cyan: "#44A4AD" + white: "#F3F3F3" + brightBlack: "#754F4F" + brightRed: "#E65C5C" + brightGreen: "#85CB6C" + brightYellow: "#E9A700" + brightBlue: "#4F99D9" + brightMagenta: "#8E6FE4" + brightCyan: "#44A4AD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 92.4 + black: 7.5 + red: 38.4 + green: 63.2 + yellow: 59.6 + blue: 42.8 + magenta: 34.6 + cyan: 44.4 + white: 98.1 + brightBlack: 15.8 + brightRed: 38.4 + brightGreen: 63.2 + brightYellow: 59.6 + brightBlue: 42.8 + brightMagenta: 34.6 + brightCyan: 44.4 + brightWhite: 106 diff --git a/themes/bohemian-light.yaml b/themes/bohemian-light.yaml new file mode 100644 index 00000000..cf478f90 --- /dev/null +++ b/themes/bohemian-light.yaml @@ -0,0 +1,49 @@ +name: "Bohemian Light" +source: + marketplace_id: "Alastair908.bohemian-theme" + version: "1.2.0" + installs: 309 + author: "Alastair908" + repo: "https://github.com/Alastair908/BohemianTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Alastair908.bohemian-theme" +colors: + bg: "#FFFFFF" + fg: "#5A3A3A" + black: "#5A3A3A" + red: "#E65C5C" + green: "#68C945" + yellow: "#E9A700" + blue: "#4F99D9" + magenta: "#8E6FE4" + cyan: "#44A4AD" + white: "#8C4B2C" + brightBlack: "#754F4F" + brightRed: "#E65C5C" + brightGreen: "#68C945" + brightYellow: "#E9A700" + brightBlue: "#4F99D9" + brightMagenta: "#8E6FE4" + brightCyan: "#44A4AD" + brightWhite: "#BE9480" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 93.1 + black: 93.1 + red: 61.5 + green: 40.7 + yellow: 40.8 + blue: 57.1 + magenta: 65.2 + cyan: 55.5 + white: 82.5 + brightBlack: 84.3 + brightRed: 61.5 + brightGreen: 40.7 + brightYellow: 40.8 + brightBlue: 57.1 + brightMagenta: 65.2 + brightCyan: 55.5 + brightWhite: 52.5 diff --git a/themes/bold-contrast.yaml b/themes/bold-contrast.yaml new file mode 100644 index 00000000..35f55e70 --- /dev/null +++ b/themes/bold-contrast.yaml @@ -0,0 +1,49 @@ +name: "bold-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0F0D0D" + fg: "#FFFFFF" + black: "#1D1919" + red: "#BA0E2E" + green: "#3D8E91" + yellow: "#F0624B" + blue: "#B4B7AD" + magenta: "#F0624B" + cyan: "#3D8E91" + white: "#FFFFFF" + brightBlack: "#463C3C" + brightRed: "#F03E5F" + brightGreen: "#71C0C3" + brightYellow: "#F8B4A9" + brightBlue: "#E6E7E3" + brightMagenta: "#F8B4A9" + brightCyan: "#71C0C3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.6 + black: 0 + red: 21.2 + green: 35.7 + yellow: 43 + blue: 62.4 + magenta: 43 + cyan: 35.7 + white: 107.6 + brightBlack: 7.6 + brightRed: 37.5 + brightGreen: 61.1 + brightYellow: 71 + brightBlue: 91.7 + brightMagenta: 71 + brightCyan: 61.1 + brightWhite: 107.6 diff --git a/themes/bold-light.yaml b/themes/bold-light.yaml new file mode 100644 index 00000000..2c73ca30 --- /dev/null +++ b/themes/bold-light.yaml @@ -0,0 +1,49 @@ +name: "bold-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#555555" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#3D8E91" + yellow: "#F0624B" + blue: "#888C81" + magenta: "#F0624B" + cyan: "#3D8E91" + white: "#626262" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#71C0C3" + brightYellow: "#F8B4A9" + brightBlue: "#BABDB6" + brightMagenta: "#F8B4A9" + brightCyan: "#71C0C3" + brightWhite: "#888888" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 85.9 + black: 0 + red: 80.3 + green: 65.6 + yellow: 58.4 + blue: 61.9 + magenta: 58.4 + cyan: 65.6 + white: 80.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 40.8 + brightYellow: 31.4 + brightBlue: 36.2 + brightMagenta: 31.4 + brightCyan: 40.8 + brightWhite: 63.1 diff --git a/themes/bold.yaml b/themes/bold.yaml new file mode 100644 index 00000000..d70d3b27 --- /dev/null +++ b/themes/bold.yaml @@ -0,0 +1,49 @@ +name: "bold" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2A2626" + fg: "#FFFFFF" + black: "#373232" + red: "#BA0E2E" + green: "#3D8E91" + yellow: "#F0624B" + blue: "#B4B7AD" + magenta: "#F0624B" + cyan: "#3D8E91" + white: "#FFFFFF" + brightBlack: "#605656" + brightRed: "#F03E5F" + brightGreen: "#71C0C3" + brightYellow: "#F8B4A9" + brightBlue: "#E6E7E3" + brightMagenta: "#F8B4A9" + brightCyan: "#71C0C3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.6 + black: 0 + red: 18.3 + green: 32.8 + yellow: 40.1 + blue: 59.5 + magenta: 40.1 + cyan: 32.8 + white: 104.6 + brightBlack: 14.1 + brightRed: 34.5 + brightGreen: 58.2 + brightYellow: 68.1 + brightBlue: 88.7 + brightMagenta: 68.1 + brightCyan: 58.2 + brightWhite: 104.6 diff --git a/themes/bolsonaro-theme.yaml b/themes/bolsonaro-theme.yaml new file mode 100644 index 00000000..765da7e7 --- /dev/null +++ b/themes/bolsonaro-theme.yaml @@ -0,0 +1,49 @@ +name: "bolsonaro theme" +source: + marketplace_id: "higordevv.bolsonarodarktheme" + version: "0.0.1" + installs: 1818 + author: "Higor Devkkkjj" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=higordevv.bolsonarodarktheme" +colors: + bg: "#111311" + fg: "#CB6767" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFBF00" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#D3FF00" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 36.9 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.2 + cyan: 48 + white: 73.7 + brightBlack: 22.4 + brightRed: 39 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 96.4 diff --git a/themes/bombyx-light.yaml b/themes/bombyx-light.yaml new file mode 100644 index 00000000..1753cf81 --- /dev/null +++ b/themes/bombyx-light.yaml @@ -0,0 +1,49 @@ +name: "Bombyx Light" +source: + marketplace_id: "y6nH.bombyx" + version: "0.4.1" + installs: 599 + author: "y6nH" + repo: "https://github.com/y6nH/bombyx" + url: "https://marketplace.visualstudio.com/items?itemName=y6nH.bombyx" +colors: + bg: "#FFFEFA" + fg: "#272A2B" + black: "#272A2B" + red: "#B83840" + green: "#597100" + yellow: "#998B66" + blue: "#0B9AB6" + magenta: "#B34D91" + cyan: "#669199" + white: "#D5CEBE" + brightBlack: "#777570" + brightRed: "#C74438" + brightGreen: "#729200" + brightYellow: "#DE9F00" + brightBlue: "#3BD8F7" + brightMagenta: "#E166B8" + brightCyan: "#79B3BE" + brightWhite: "#EEEDE9" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 100.6 + black: 100.6 + red: 76.8 + green: 76.9 + yellow: 60.5 + blue: 59.5 + magenta: 72 + cyan: 61.4 + white: 25.3 + brightBlack: 71.4 + brightRed: 72.1 + brightGreen: 62.8 + brightYellow: 44.7 + brightBlue: 29.3 + brightMagenta: 56.6 + brightCyan: 45.3 + brightWhite: 7.6 diff --git a/themes/bombyx.yaml b/themes/bombyx.yaml new file mode 100644 index 00000000..7697431c --- /dev/null +++ b/themes/bombyx.yaml @@ -0,0 +1,49 @@ +name: "Bombyx" +source: + marketplace_id: "y6nH.bombyx" + version: "0.4.1" + installs: 599 + author: "y6nH" + repo: "https://github.com/y6nH/bombyx" + url: "https://marketplace.visualstudio.com/items?itemName=y6nH.bombyx" +colors: + bg: "#272A2B" + fg: "#EBE8E0" + black: "#272A2B" + red: "#C74438" + green: "#BCE52A" + yellow: "#FFCB47" + blue: "#446C74" + magenta: "#B34D91" + cyan: "#669199" + white: "#D5CEBE" + brightBlack: "#C2BAA8" + brightRed: "#FF857A" + brightGreen: "#D3E0A4" + brightYellow: "#EAD59F" + brightBlue: "#3BD8F7" + brightMagenta: "#E166B8" + brightCyan: "#B8F3FF" + brightWhite: "#EBE8E0" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 89.2 + black: 0 + red: 25.2 + green: 77.9 + yellow: 75.7 + blue: 19.3 + magenta: 25.3 + cyan: 35.9 + white: 73.4 + brightBlack: 61.7 + brightRed: 52.2 + brightGreen: 80.2 + brightYellow: 78.3 + brightBlue: 69.1 + brightMagenta: 40.8 + brightCyan: 89.9 + brightWhite: 89.2 diff --git a/themes/boo-color-theme.yaml b/themes/boo-color-theme.yaml new file mode 100644 index 00000000..653f121d --- /dev/null +++ b/themes/boo-color-theme.yaml @@ -0,0 +1,49 @@ +name: "boo-color-theme" +source: + marketplace_id: "JohannesFreutel.boo-color-theme" + version: "0.0.1" + installs: 35 + author: "JohannesFreutel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.boo-color-theme" +colors: + bg: "#0E1014" + fg: "#83978C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 43.3 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/boo.yaml b/themes/boo.yaml new file mode 100644 index 00000000..8d0384a2 --- /dev/null +++ b/themes/boo.yaml @@ -0,0 +1,49 @@ +name: "boo" +source: + marketplace_id: "ene-ne.mio" + version: "0.1.0" + installs: 101 + author: "ene-ne" + repo: "https://github.com/ene-ne/mio" + url: "https://marketplace.visualstudio.com/items?itemName=ene-ne.mio" +colors: + bg: "#FFFAFA" + fg: "#250E07" + black: "#D8B8B3" + red: "#873E40" + green: "#839A53" + yellow: "#D4A520" + blue: "#A6B6CE" + magenta: "#D68482" + cyan: "#89BEB7" + white: "#ECC3C2" + brightBlack: "#F3EAE9" + brightRed: "#832426" + brightGreen: "#6F873E" + brightYellow: "#C39104" + brightBlue: "#7B91B3" + brightMagenta: "#C97270" + brightCyan: "#63A098" + brightWhite: "#F2CC60" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 102.5 + black: 32.1 + red: 83.3 + green: 55.9 + yellow: 42.4 + blue: 37.8 + magenta: 51.4 + cyan: 38.2 + white: 24.6 + brightBlack: 0 + brightRed: 88.2 + brightGreen: 65.1 + brightYellow: 52 + brightBlue: 56.9 + brightMagenta: 59.2 + brightCyan: 54.2 + brightWhite: 22.7 diff --git a/themes/boogel.yaml b/themes/boogel.yaml new file mode 100644 index 00000000..75b2ed20 --- /dev/null +++ b/themes/boogel.yaml @@ -0,0 +1,49 @@ +name: "Boogel" +source: + marketplace_id: "ArmOwOn.Boogel" + version: "0.0.1" + installs: 25 + author: "ArmOwOn" + repo: "https://github.com/ArmOwOn/Boogel" + url: "https://marketplace.visualstudio.com/items?itemName=ArmOwOn.Boogel" +colors: + bg: "#292940" + fg: "#A7AED2" + black: "#1A1A28" + red: "#CE5473" + green: "#58CE81" + yellow: "#FFE277" + blue: "#69C6FF" + magenta: "#F170F5" + cyan: "#5EFFDC" + white: "#C8CDE3" + brightBlack: "#444469" + brightRed: "#D97E95" + brightGreen: "#81DAA0" + brightYellow: "#FFE896" + brightBlue: "#8FD4FF" + brightMagenta: "#F492F7" + brightCyan: "#83FFE4" + brightWhite: "#D6DAEA" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 55.2 + black: 0 + red: 30.2 + green: 60.2 + yellow: 85.9 + blue: 62.8 + magenta: 49.3 + cyan: 87.9 + white: 72.6 + brightBlack: 0 + brightRed: 43.4 + brightGreen: 69 + brightYellow: 89.3 + brightBlue: 71.5 + brightMagenta: 58.9 + brightCyan: 90.1 + brightWhite: 80.3 diff --git a/themes/booklike.yaml b/themes/booklike.yaml new file mode 100644 index 00000000..73b3536d --- /dev/null +++ b/themes/booklike.yaml @@ -0,0 +1,49 @@ +name: "booklike" +source: + marketplace_id: "mervyn.booklike" + version: "0.0.1" + installs: 921 + author: "mervyn" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mervyn.booklike" +colors: + bg: "#FFFAE8" + fg: "#3E4B53" + black: "#000000" + red: "#CE3885" + green: "#49997E" + yellow: "#D49B45" + blue: "#5597EF" + magenta: "#CE5EFF" + cyan: "#399DCC" + white: "#BBBBBB" + brightBlack: "#686868" + brightRed: "#CE0885" + brightGreen: "#439B7E" + brightYellow: "#C2853F" + brightBlue: "#7FAFF4" + brightMagenta: "#CE0EFF" + brightCyan: "#6F94DA" + brightWhite: "#534F4F" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 87.6 + black: 103 + red: 67.9 + green: 58.4 + yellow: 44.9 + blue: 53 + magenta: 54.8 + cyan: 54 + white: 33.6 + brightBlack: 74.8 + brightRed: 70.6 + brightGreen: 57.9 + brightYellow: 55 + brightBlue: 41.1 + brightMagenta: 62.6 + brightCyan: 53.9 + brightWhite: 84.9 diff --git a/themes/bootstrap-dark.yaml b/themes/bootstrap-dark.yaml new file mode 100644 index 00000000..99de98cf --- /dev/null +++ b/themes/bootstrap-dark.yaml @@ -0,0 +1,49 @@ +name: "Bootstrap Dark" +source: + marketplace_id: "Bootstrap.bootstrap-vscode-theme" + version: "0.0.9" + installs: 73 + author: "Bootstrap" + repo: "https://github.com/twbs/bootstrap-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bootstrap.bootstrap-vscode-theme" +colors: + bg: "#0B0C0D" + fg: "#F6F7F8" + black: "#131415" + red: "#E62845" + green: "#00B15A" + yellow: "#FFC900" + blue: "#0075FF" + magenta: "#AE29C9" + cyan: "#00B4F8" + white: "#ABB2B8" + brightBlack: "#131415" + brightRed: "#E62845" + brightGreen: "#00B15A" + brightYellow: "#FFC900" + brightBlue: "#0075FF" + brightMagenta: "#AE29C9" + brightCyan: "#00B4F8" + brightWhite: "#ABB2B8" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 102.3 + black: 0 + red: 32.7 + green: 48.1 + yellow: 78.1 + blue: 33.4 + magenta: 26.6 + cyan: 56 + white: 59.9 + brightBlack: 0 + brightRed: 32.7 + brightGreen: 48.1 + brightYellow: 78.1 + brightBlue: 33.4 + brightMagenta: 26.6 + brightCyan: 56 + brightWhite: 59.9 diff --git a/themes/bootstrap-light.yaml b/themes/bootstrap-light.yaml new file mode 100644 index 00000000..fb9d7e2c --- /dev/null +++ b/themes/bootstrap-light.yaml @@ -0,0 +1,49 @@ +name: "Bootstrap Light" +source: + marketplace_id: "Bootstrap.bootstrap-vscode-theme" + version: "0.0.9" + installs: 73 + author: "Bootstrap" + repo: "https://github.com/twbs/bootstrap-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bootstrap.bootstrap-vscode-theme" +colors: + bg: "#FFFFFF" + fg: "#0B0C0D" + black: "#18191A" + red: "#E62845" + green: "#00B15A" + yellow: "#FFC900" + blue: "#0075FF" + magenta: "#AE29C9" + cyan: "#00B4F8" + white: "#ABB2B8" + brightBlack: "#18191A" + brightRed: "#E62845" + brightGreen: "#00B15A" + brightYellow: "#FFC900" + brightBlue: "#0075FF" + brightMagenta: "#AE29C9" + brightCyan: "#00B4F8" + brightWhite: "#ABB2B8" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 105.7 + black: 104.4 + red: 68.7 + green: 53.5 + yellow: 24.8 + blue: 68.1 + magenta: 74.9 + cyan: 45.9 + white: 42.1 + brightBlack: 104.4 + brightRed: 68.7 + brightGreen: 53.5 + brightYellow: 24.8 + brightBlue: 68.1 + brightMagenta: 74.9 + brightCyan: 45.9 + brightWhite: 42.1 diff --git a/themes/borders-blue.yaml b/themes/borders-blue.yaml new file mode 100644 index 00000000..3fb9bfbc --- /dev/null +++ b/themes/borders-blue.yaml @@ -0,0 +1,49 @@ +name: "Borders Blue" +source: + marketplace_id: "bloumbs.borders-dark" + version: "1.7.0" + installs: 4682 + author: "Bloumbs" + repo: "https://github.com/Bloumbs/Borders-Dark" + url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" +colors: + bg: "#12171D" + fg: "#E5E8EB" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#84DF44" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 253 + contrast: + fg: 91.7 + black: 0 + red: 42.1 + green: 62.3 + yellow: 70.6 + blue: 54.7 + magenta: 45.2 + cyan: 54.6 + white: 83.1 + brightBlack: 35.6 + brightRed: 38.5 + brightGreen: 72.9 + brightYellow: 70.6 + brightBlue: 41.5 + brightMagenta: 12.8 + brightCyan: 54.6 + brightWhite: 83.1 diff --git a/themes/borders-dark.yaml b/themes/borders-dark.yaml new file mode 100644 index 00000000..6bd1392f --- /dev/null +++ b/themes/borders-dark.yaml @@ -0,0 +1,49 @@ +name: "Borders Dark" +source: + marketplace_id: "bloumbs.borders-dark" + version: "1.7.0" + installs: 4682 + author: "Bloumbs" + repo: "https://github.com/Bloumbs/Borders-Dark" + url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" +colors: + bg: "#202020" + fg: "#EEEEEE" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#84DF44" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.6 + black: 0 + red: 41 + green: 61.2 + yellow: 69.5 + blue: 53.6 + magenta: 44 + cyan: 53.5 + white: 81.9 + brightBlack: 34.4 + brightRed: 37.3 + brightGreen: 71.8 + brightYellow: 69.5 + brightBlue: 40.4 + brightMagenta: 11.6 + brightCyan: 53.5 + brightWhite: 81.9 diff --git a/themes/borders-darker.yaml b/themes/borders-darker.yaml new file mode 100644 index 00000000..ab2d39b1 --- /dev/null +++ b/themes/borders-darker.yaml @@ -0,0 +1,49 @@ +name: "Borders Darker" +source: + marketplace_id: "bloumbs.borders-dark" + version: "1.7.0" + installs: 4682 + author: "Bloumbs" + repo: "https://github.com/Bloumbs/Borders-Dark" + url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" +colors: + bg: "#141414" + fg: "#EEEEEE" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#84DF44" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 96 + black: 0 + red: 42.4 + green: 62.6 + yellow: 70.8 + blue: 54.9 + magenta: 45.4 + cyan: 54.8 + white: 83.3 + brightBlack: 35.8 + brightRed: 38.7 + brightGreen: 73.2 + brightYellow: 70.8 + brightBlue: 41.8 + brightMagenta: 13 + brightCyan: 54.8 + brightWhite: 83.3 diff --git a/themes/borealis.yaml b/themes/borealis.yaml new file mode 100644 index 00000000..7515bf64 --- /dev/null +++ b/themes/borealis.yaml @@ -0,0 +1,49 @@ +name: "Borealis" +source: + marketplace_id: "AlejandroMejia.borealis-vscode-theme" + version: "1.0.2" + installs: 823 + author: "Alejandro Mejia" + repo: "https://github.com/HX-AQuintero/awesome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlejandroMejia.borealis-vscode-theme" +colors: + bg: "#0E0E1A" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#808080" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 283 + contrast: + fg: 107.5 + black: 0 + red: 37.1 + green: 86.1 + yellow: 102.3 + blue: 15.8 + magenta: 45.8 + cyan: 91.8 + white: 107.5 + brightBlack: 34.4 + brightRed: 37.1 + brightGreen: 86.1 + brightYellow: 102.3 + brightBlue: 15.8 + brightMagenta: 45.8 + brightCyan: 91.8 + brightWhite: 107.5 diff --git a/themes/borealsharp.yaml b/themes/borealsharp.yaml new file mode 100644 index 00000000..650029ee --- /dev/null +++ b/themes/borealsharp.yaml @@ -0,0 +1,49 @@ +name: "BorealSharp" +source: + marketplace_id: "Sullyvan.borealsharp" + version: "0.0.1" + installs: 172 + author: "Sullyvan" + repo: "https://github.com/SullyvanBoulanger/borealsharp" + url: "https://marketplace.visualstudio.com/items?itemName=Sullyvan.borealsharp" +colors: + bg: "#DEE0E5" + fg: "#404859" + black: "#CCD1DB" + red: "#C0400C" + green: "#06653D" + yellow: "#B16B16" + blue: "#5946E5" + magenta: "#2E3440" + cyan: "#8ACFEF" + white: "#2E3440" + brightBlack: "#97A1B4" + brightRed: "#C0400C" + brightGreen: "#06653D" + brightYellow: "#B16B16" + brightBlue: "#5946E5" + brightMagenta: "#2E3440" + brightCyan: "#8ACFEF" + brightWhite: "#2E3440" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 72.9 + black: 0 + red: 56.9 + green: 66.1 + yellow: 50.5 + blue: 61.5 + magenta: 80.1 + cyan: 12.5 + white: 80.1 + brightBlack: 32.6 + brightRed: 56.9 + brightGreen: 66.1 + brightYellow: 50.5 + brightBlue: 61.5 + brightMagenta: 80.1 + brightCyan: 12.5 + brightWhite: 80.1 diff --git a/themes/bot2b.yaml b/themes/bot2b.yaml new file mode 100644 index 00000000..93491035 --- /dev/null +++ b/themes/bot2b.yaml @@ -0,0 +1,49 @@ +name: "BOT2B" +source: + marketplace_id: "lenglounh.BOT2B" + version: "0.0.2" + installs: 85 + author: "lenglounh" + repo: "https://github.com/lenglounh/BOT2B" + url: "https://marketplace.visualstudio.com/items?itemName=lenglounh.BOT2B" +colors: + bg: "#040411" + fg: "#47CBFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 67.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/botany-color-theme.yaml b/themes/botany-color-theme.yaml new file mode 100644 index 00000000..b85fd5c2 --- /dev/null +++ b/themes/botany-color-theme.yaml @@ -0,0 +1,49 @@ +name: "botany-color-theme" +source: + marketplace_id: "prabinpanta0.theme-botany" + version: "1.0.2" + installs: 78 + author: "Prabin Panta" + repo: "https://github.com/prabinpanta0/theme-botany" + url: "https://marketplace.visualstudio.com/items?itemName=prabinpanta0.theme-botany" +colors: + bg: "#273136" + fg: "#D1DED3" + black: "#323E45" + red: "#8FB996" + green: "#7EB08A" + yellow: "#D2B48C" + blue: "#7EA4B0" + magenta: "#BA8EAF" + cyan: "#7EA4B0" + white: "#D1DED3" + brightBlack: "#323E45" + brightRed: "#8FB996" + brightGreen: "#7EB08A" + brightYellow: "#D2B48C" + brightBlue: "#7EA4B0" + brightMagenta: "#BA8EAF" + brightCyan: "#7EA4B0" + brightWhite: "#D1DED3" +meta: + mode: "dark" + accent: "teal" + hue: 230 + contrast: + fg: 79.5 + black: 0 + red: 53.9 + green: 48.3 + yellow: 59.4 + blue: 44.8 + magenta: 43.4 + cyan: 44.8 + white: 79.5 + brightBlack: 0 + brightRed: 53.9 + brightGreen: 48.3 + brightYellow: 59.4 + brightBlue: 44.8 + brightMagenta: 43.4 + brightCyan: 44.8 + brightWhite: 79.5 diff --git a/themes/botany.yaml b/themes/botany.yaml new file mode 100644 index 00000000..3dc3798c --- /dev/null +++ b/themes/botany.yaml @@ -0,0 +1,49 @@ +name: "Botany" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2036 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" +colors: + bg: "#1E2128" + fg: "#FFFFFF" + black: "#4A5568" + red: "#E67E80" + green: "#89B482" + yellow: "#A7C080" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#7FBBB3" + white: "#89B482" + brightBlack: "#5D6B73" + brightRed: "#EA9A9A" + brightGreen: "#A3C496" + brightYellow: "#B8CC94" + brightBlue: "#95C9C2" + brightMagenta: "#E0ADCA" + brightCyan: "#95C9C2" + brightWhite: "#A3C496" +meta: + mode: "dark" + accent: "orange" + hue: 267 + contrast: + fg: 105.6 + black: 13.6 + red: 46.9 + green: 53.4 + yellow: 61.4 + blue: 57.3 + magenta: 54.4 + cyan: 57.3 + white: 53.4 + brightBlack: 22 + brightRed: 57 + brightGreen: 63.3 + brightYellow: 69 + brightBlue: 65.8 + brightMagenta: 63.8 + brightCyan: 65.8 + brightWhite: 63.3 diff --git a/themes/bougainvillea.yaml b/themes/bougainvillea.yaml new file mode 100644 index 00000000..8c648df5 --- /dev/null +++ b/themes/bougainvillea.yaml @@ -0,0 +1,49 @@ +name: "bougainvillea" +source: + marketplace_id: "kitvex.bougainvillea" + version: "0.0.1" + installs: 96 + author: "kitvex" + repo: "https://github.com/kitvex/bougainvillea" + url: "https://marketplace.visualstudio.com/items?itemName=kitvex.bougainvillea" +colors: + bg: "#1A2028" + fg: "#DEFAFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 99.1 + black: 0 + red: 25.7 + green: 51.9 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 89 diff --git a/themes/boundless.yaml b/themes/boundless.yaml new file mode 100644 index 00000000..0264deb7 --- /dev/null +++ b/themes/boundless.yaml @@ -0,0 +1,49 @@ +name: "Boundless" +source: + marketplace_id: "bakrimoharram.boundless" + version: "0.0.2" + installs: 104 + author: "bakrimoharram" + repo: "https://github.com/bakrimoharram/boundless-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.boundless" +colors: + bg: "#EBDBB2" + fg: "#A7722D" + black: "#282828" + red: "#CD3131" + green: "#019001" + yellow: "#844C61" + blue: "#034286" + magenta: "#660666" + cyan: "#045F75" + white: "#282828" + brightBlack: "#282828" + brightRed: "#CD3131" + brightGreen: "#019001" + brightYellow: "#844C61" + brightBlue: "#034286" + brightMagenta: "#660666" + brightCyan: "#045F75" + brightWhite: "#282828" +meta: + mode: "light" + accent: "orange" + hue: 89 + contrast: + fg: 47.7 + black: 81.1 + red: 53.5 + green: 47.7 + yellow: 61.9 + blue: 71.7 + magenta: 74.8 + cyan: 64.1 + white: 81.1 + brightBlack: 81.1 + brightRed: 53.5 + brightGreen: 47.7 + brightYellow: 61.9 + brightBlue: 71.7 + brightMagenta: 74.8 + brightCyan: 64.1 + brightWhite: 81.1 diff --git a/themes/bouquet.yaml b/themes/bouquet.yaml new file mode 100644 index 00000000..4f8439b0 --- /dev/null +++ b/themes/bouquet.yaml @@ -0,0 +1,49 @@ +name: "bouquet" +source: + marketplace_id: "richiebzzzt.bouquet" + version: "1.407.7" + installs: 69 + author: "Richie Lee" + repo: "https://github.com/richiebzzzt/bouquet" + url: "https://marketplace.visualstudio.com/items?itemName=richiebzzzt.bouquet" +colors: + bg: "#012725" + fg: "#D6E9EB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 190 + contrast: + fg: 88.6 + black: 0 + red: 37.7 + green: 65.7 + yellow: 80.5 + blue: 54.3 + magenta: 52.2 + cyan: 58.1 + white: 105.3 + brightBlack: 14 + brightRed: 37.7 + brightGreen: 65.7 + brightYellow: 92.1 + brightBlue: 54.3 + brightMagenta: 52.2 + brightCyan: 72.4 + brightWhite: 105.3 diff --git a/themes/boxlang-dark-neon.yaml b/themes/boxlang-dark-neon.yaml new file mode 100644 index 00000000..321da723 --- /dev/null +++ b/themes/boxlang-dark-neon.yaml @@ -0,0 +1,49 @@ +name: "BoxLang Dark (Neon)" +source: + marketplace_id: "ortus-solutions.vscode-boxlang-theme" + version: "1.1.0" + installs: 276 + author: "Ortus Solutions" + repo: "https://github.com/ortus-boxlang/vscode-boxlang-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ortus-solutions.vscode-boxlang-theme" +colors: + bg: "#1C1E2D" + fg: "#F5F5F5" + black: "#000000" + red: "#FF407B" + green: "#85EEA7" + yellow: "#FFEA16" + blue: "#78A8D6" + magenta: "#F806FA" + cyan: "#59E1E3" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF407B" + brightGreen: "#85EEA7" + brightYellow: "#FFEA16" + brightBlue: "#78A8D6" + brightMagenta: "#F806FA" + brightCyan: "#6BE4E6" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 99.3 + black: 0 + red: 40.3 + green: 81.4 + yellow: 90.8 + blue: 50.8 + magenta: 42.3 + cyan: 75.1 + white: 89 + brightBlack: 21.1 + brightRed: 40.3 + brightGreen: 81.4 + brightYellow: 90.8 + brightBlue: 50.8 + brightMagenta: 42.3 + brightCyan: 77.5 + brightWhite: 89 diff --git a/themes/boxuk-contrast.yaml b/themes/boxuk-contrast.yaml new file mode 100644 index 00000000..4c4fb7d5 --- /dev/null +++ b/themes/boxuk-contrast.yaml @@ -0,0 +1,49 @@ +name: "boxuk-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#111519" + fg: "#FFFFFF" + black: "#1B2228" + red: "#BA0E2E" + green: "#017C9D" + yellow: "#019D76" + blue: "#15B8AE" + magenta: "#017C9D" + cyan: "#019D76" + white: "#FFFFFF" + brightBlack: "#3A4856" + brightRed: "#F03E5F" + brightGreen: "#07C9FD" + brightYellow: "#07FDC0" + brightBlue: "#49EAE0" + brightMagenta: "#07C9FD" + brightCyan: "#07FDC0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 107.1 + black: 0 + red: 20.7 + green: 28.2 + yellow: 39.5 + blue: 53.2 + magenta: 28.2 + cyan: 39.5 + white: 107.1 + brightBlack: 9.9 + brightRed: 37 + brightGreen: 64.9 + brightYellow: 87.6 + brightBlue: 80 + brightMagenta: 64.9 + brightCyan: 87.6 + brightWhite: 107.1 diff --git a/themes/boxuk-light.yaml b/themes/boxuk-light.yaml new file mode 100644 index 00000000..4e981fb5 --- /dev/null +++ b/themes/boxuk-light.yaml @@ -0,0 +1,49 @@ +name: "boxuk-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#414F5C" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#017C9D" + yellow: "#019D76" + blue: "#15B8AE" + magenta: "#017C9D" + cyan: "#019D76" + white: "#4C5C6B" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#07C9FD" + brightYellow: "#07FDC0" + brightBlue: "#49EAE0" + brightMagenta: "#07C9FD" + brightCyan: "#07FDC0" + brightWhite: "#6C8297" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 89 + black: 0 + red: 80.3 + green: 72.7 + yellow: 61.4 + blue: 48 + magenta: 72.7 + cyan: 61.4 + white: 83.8 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 36.7 + brightYellow: 15.4 + brightBlue: 22.5 + brightMagenta: 36.7 + brightCyan: 15.4 + brightWhite: 67.1 diff --git a/themes/boxuk.yaml b/themes/boxuk.yaml new file mode 100644 index 00000000..5172be2a --- /dev/null +++ b/themes/boxuk.yaml @@ -0,0 +1,49 @@ +name: "boxuk" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2A353F" + fg: "#FFFFFF" + black: "#34424E" + red: "#BA0E2E" + green: "#017C9D" + yellow: "#019D76" + blue: "#15B8AE" + magenta: "#017C9D" + cyan: "#019D76" + white: "#FFFFFF" + brightBlack: "#53687C" + brightRed: "#F03E5F" + brightGreen: "#07C9FD" + brightYellow: "#07FDC0" + brightBlue: "#49EAE0" + brightMagenta: "#07C9FD" + brightCyan: "#07FDC0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 246 + contrast: + fg: 101.8 + black: 0 + red: 15.4 + green: 22.9 + yellow: 34.2 + blue: 47.9 + magenta: 22.9 + cyan: 34.2 + white: 101.8 + brightBlack: 16.9 + brightRed: 31.7 + brightGreen: 59.7 + brightYellow: 82.3 + brightBlue: 74.7 + brightMagenta: 59.7 + brightCyan: 82.3 + brightWhite: 101.8 diff --git a/themes/brackethive-theme.yaml b/themes/brackethive-theme.yaml new file mode 100644 index 00000000..c8feaf4f --- /dev/null +++ b/themes/brackethive-theme.yaml @@ -0,0 +1,49 @@ +name: "BracketHive Theme" +source: + marketplace_id: "BracketHive.brackethive-theme" + version: "1.0.0" + installs: 111 + author: "BracketHive" + repo: "https://github.com/BracketHive/BracketHiveVSCodeTheme" + url: "https://marketplace.visualstudio.com/items?itemName=BracketHive.brackethive-theme" +colors: + bg: "#110F1A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 292 + contrast: + fg: 80 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/brave-contrast.yaml b/themes/brave-contrast.yaml new file mode 100644 index 00000000..6909a027 --- /dev/null +++ b/themes/brave-contrast.yaml @@ -0,0 +1,49 @@ +name: "brave-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#101216" + fg: "#D6DBDB" + black: "#1B1E25" + red: "#BA0E2E" + green: "#BC4331" + yellow: "#908BBC" + blue: "#91B9C9" + magenta: "#ABAAB7" + cyan: "#908BBC" + white: "#E4E7E7" + brightBlack: "#3B4251" + brightRed: "#F03E5F" + brightGreen: "#DC8477" + brightYellow: "#CECCE1" + brightBlue: "#D5E5EB" + brightMagenta: "#E2E1E6" + brightCyan: "#CECCE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.6 + black: 0 + red: 20.9 + green: 25.9 + yellow: 42.2 + blue: 60.5 + magenta: 56.3 + cyan: 42.2 + white: 91.3 + brightBlack: 8.5 + brightRed: 37.2 + brightGreen: 48.2 + brightYellow: 76.3 + brightBlue: 88.7 + brightMagenta: 88.3 + brightCyan: 76.3 + brightWhite: 107.3 diff --git a/themes/brave-light.yaml b/themes/brave-light.yaml new file mode 100644 index 00000000..5fb07c05 --- /dev/null +++ b/themes/brave-light.yaml @@ -0,0 +1,49 @@ +name: "brave-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#F7F9F9" + fg: "#2C2D2D" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#BC4331" + yellow: "#7873A0" + blue: "#6E909E" + magenta: "#ABAAB7" + cyan: "#7873A0" + white: "#393A3A" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DC8477" + brightYellow: "#B3B0C9" + brightBlue: "#ABBFC7" + brightMagenta: "#E2E1E6" + brightCyan: "#B3B0C9" + brightWhite: "#5E6161" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.6 + black: 0 + red: 76.5 + green: 71.4 + yellow: 66.8 + blue: 57.8 + magenta: 41.4 + cyan: 66.8 + white: 92.5 + brightBlack: 0 + brightRed: 60 + brightGreen: 49.2 + brightYellow: 37.4 + brightBlue: 32.5 + brightMagenta: 11.1 + brightCyan: 37.4 + brightWhite: 77.3 diff --git a/themes/brave.yaml b/themes/brave.yaml new file mode 100644 index 00000000..c353fbc1 --- /dev/null +++ b/themes/brave.yaml @@ -0,0 +1,49 @@ +name: "brave" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#333846" + fg: "#D6DBDB" + black: "#3E4455" + red: "#BA0E2E" + green: "#BC4331" + yellow: "#908BBC" + blue: "#91B9C9" + magenta: "#ABAAB7" + cyan: "#908BBC" + white: "#E4E7E7" + brightBlack: "#5E6781" + brightRed: "#F03E5F" + brightGreen: "#DC8477" + brightYellow: "#CECCE1" + brightBlue: "#D5E5EB" + brightMagenta: "#E2E1E6" + brightCyan: "#CECCE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 270 + contrast: + fg: 76.8 + black: 0 + red: 14.1 + green: 19.1 + yellow: 35.4 + blue: 53.8 + magenta: 49.5 + cyan: 35.4 + white: 84.5 + brightBlack: 16.3 + brightRed: 30.4 + brightGreen: 41.5 + brightYellow: 69.5 + brightBlue: 81.9 + brightMagenta: 81.5 + brightCyan: 69.5 + brightWhite: 100.5 diff --git a/themes/breath2ripoff.yaml b/themes/breath2ripoff.yaml new file mode 100644 index 00000000..96c4e60b --- /dev/null +++ b/themes/breath2ripoff.yaml @@ -0,0 +1,49 @@ +name: "Breath2Ripoff" +source: + marketplace_id: "HORSE.breath2ripoff" + version: "1.0.2" + installs: 917 + author: "H___O___R___S___E" + repo: "https://github.com/MuazAlhaidar/Breath2Ripoff_VSCodeVersion" + url: "https://marketplace.visualstudio.com/items?itemName=HORSE.breath2ripoff" +colors: + bg: "#222B2E" + fg: "#17A88B" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 220 + contrast: + fg: 41.9 + black: 0 + red: 24 + green: 50.3 + yellow: 82.9 + blue: 24.7 + magenta: 27 + cyan: 44.8 + white: 87.3 + brightBlack: 19.3 + brightRed: 35.8 + brightGreen: 60.8 + brightYellow: 92.9 + brightBlue: 37.3 + brightMagenta: 42.6 + brightCyan: 52.7 + brightWhite: 87.3 diff --git a/themes/breeze.yaml b/themes/breeze.yaml new file mode 100644 index 00000000..2a7d9a75 --- /dev/null +++ b/themes/breeze.yaml @@ -0,0 +1,49 @@ +name: "Breeze" +source: + marketplace_id: "BreezeTheme.BreezeTheme" + version: "0.0.1" + installs: 165 + author: "Breeze Theme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=BreezeTheme.BreezeTheme" +colors: + bg: "#191919" + fg: "#A7A7A7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 53.4 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/brew-theme.yaml b/themes/brew-theme.yaml new file mode 100644 index 00000000..4a5eedfa --- /dev/null +++ b/themes/brew-theme.yaml @@ -0,0 +1,49 @@ +name: "Brew Theme" +source: + marketplace_id: "turtlehq.brew-theme" + version: "1.0.5" + installs: 795 + author: "Turtle Labs LLC" + repo: "https://github.com/trentbrew/brew-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=turtlehq.brew-theme" +colors: + bg: "#111111" + fg: "#A5B7C0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 61.3 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/brid-purple-garden-dark.yaml b/themes/brid-purple-garden-dark.yaml new file mode 100644 index 00000000..83c962ca --- /dev/null +++ b/themes/brid-purple-garden-dark.yaml @@ -0,0 +1,49 @@ +name: "Brid Purple Garden Dark" +source: + marketplace_id: "layon-extensions.brid-purple-garden" + version: "1.0.0" + installs: 8 + author: "layon-extensions" + repo: "https://github.com/Fernando-Leon/theme-brid" + url: "https://marketplace.visualstudio.com/items?itemName=layon-extensions.brid-purple-garden" +colors: + bg: "#0D0713" + fg: "#E2D9F3" + black: "#1A0F26" + red: "#FF6B6B" + green: "#6AE0A0" + yellow: "#FFB347" + blue: "#6AE0FF" + magenta: "#B084FF" + cyan: "#6AE0FF" + white: "#E2D9F3" + brightBlack: "#3D2A5A" + brightRed: "#FF8E8E" + brightGreen: "#8AF0B8" + brightYellow: "#FFD080" + brightBlue: "#8AECFF" + brightMagenta: "#C4A3FF" + brightCyan: "#8AECFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 307 + contrast: + fg: 85.8 + black: 0 + red: 49 + green: 74.5 + yellow: 69.9 + blue: 78.7 + magenta: 48.5 + cyan: 78.7 + white: 85.8 + brightBlack: 0 + brightRed: 58.9 + brightGreen: 85.1 + brightYellow: 82.3 + brightBlue: 86.3 + brightMagenta: 61.2 + brightCyan: 86.3 + brightWhite: 107.7 diff --git a/themes/brid-purple-garden-light.yaml b/themes/brid-purple-garden-light.yaml new file mode 100644 index 00000000..98ccd9bb --- /dev/null +++ b/themes/brid-purple-garden-light.yaml @@ -0,0 +1,49 @@ +name: "Brid Purple Garden Light" +source: + marketplace_id: "layon-extensions.brid-purple-garden" + version: "1.0.0" + installs: 8 + author: "layon-extensions" + repo: "https://github.com/Fernando-Leon/theme-brid" + url: "https://marketplace.visualstudio.com/items?itemName=layon-extensions.brid-purple-garden" +colors: + bg: "#F4EEFF" + fg: "#2D1A4A" + black: "#2D1A4A" + red: "#D4202A" + green: "#2A8030" + yellow: "#CC6600" + blue: "#0066CC" + magenta: "#8A5CFF" + cyan: "#0088AA" + white: "#F4EEFF" + brightBlack: "#4A3380" + brightRed: "#FF4040" + brightGreen: "#40A040" + brightYellow: "#FF8800" + brightBlue: "#2288FF" + brightMagenta: "#B084FF" + brightCyan: "#00AACC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 93.6 + black: 93.6 + red: 65.2 + green: 65.4 + yellow: 56.7 + blue: 68.4 + magenta: 59.4 + cyan: 59.1 + white: 0 + brightBlack: 84.6 + brightRed: 52 + brightGreen: 51.7 + brightYellow: 37.9 + brightBlue: 53.1 + brightMagenta: 44.6 + brightCyan: 44 + brightWhite: 0 diff --git a/themes/briggitehelm.yaml b/themes/briggitehelm.yaml new file mode 100644 index 00000000..17f183f2 --- /dev/null +++ b/themes/briggitehelm.yaml @@ -0,0 +1,49 @@ +name: "briggitehelm" +source: + marketplace_id: "ColonelMoutarde.mammoth-color-theme" + version: "1.0.1" + installs: 101 + author: "Colonel Moutarde" + repo: "https://github.com/Karakoukie/mammoth-vs-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ColonelMoutarde.mammoth-color-theme" +colors: + bg: "#FFF8F1" + fg: "#000000" + black: "#000000" + red: "#C00000" + green: "#008000" + yellow: "#808000" + blue: "#0000C0" + magenta: "#B000B0" + cyan: "#00B0B0" + white: "#FFFFE0" + brightBlack: "#505050" + brightRed: "#F04040" + brightGreen: "#80F080" + brightYellow: "#F0F060" + brightBlue: "#2080F0" + brightMagenta: "#F060F0" + brightCyan: "#80F0F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 102.5 + black: 102.5 + red: 75.7 + green: 71 + yellow: 65.2 + blue: 90.4 + magenta: 74.2 + cyan: 47.8 + white: 0 + brightBlack: 84.4 + brightRed: 60.6 + brightGreen: 16.8 + brightYellow: 0 + brightBlue: 62.1 + brightMagenta: 48.7 + brightCyan: 13.1 + brightWhite: 0 diff --git a/themes/bright-colors-blue.yaml b/themes/bright-colors-blue.yaml new file mode 100644 index 00000000..dd7073d2 --- /dev/null +++ b/themes/bright-colors-blue.yaml @@ -0,0 +1,49 @@ +name: "Bright Colors Blue" +source: + marketplace_id: "nikhil2007.Bright-Color" + version: "1.4.2" + installs: 17799 + author: "Nikhil Nath Jha" + repo: "https://github.com/jhanikhilnath/bright_colors_theme" + url: "https://marketplace.visualstudio.com/items?itemName=nikhil2007.Bright-Color" +colors: + bg: "#193549" + fg: "#FFFFFF" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FFC600" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FFC600" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 242 + contrast: + fg: 102.1 + black: 0 + red: 42.3 + green: 61.5 + yellow: 71.3 + blue: 33.9 + magenta: 59.5 + cyan: 87.9 + white: 102.1 + brightBlack: 9.8 + brightRed: 42.3 + brightGreen: 61.5 + brightYellow: 71.3 + brightBlue: 33.9 + brightMagenta: 59.5 + brightCyan: 87.9 + brightWhite: 102.1 diff --git a/themes/bright-lights.yaml b/themes/bright-lights.yaml new file mode 100644 index 00000000..7aa047dc --- /dev/null +++ b/themes/bright-lights.yaml @@ -0,0 +1,49 @@ +name: "Bright Lights" +source: + marketplace_id: "hittero.bright-lights" + version: "0.1.0" + installs: 38 + author: "Hittero" + repo: "https://github.com/joaodanilo123/bright-lights-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hittero.bright-lights" +colors: + bg: "#191919" + fg: "#CDC7C7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72.3 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/britecore.yaml b/themes/britecore.yaml new file mode 100644 index 00000000..bb6af8a0 --- /dev/null +++ b/themes/britecore.yaml @@ -0,0 +1,49 @@ +name: "britecore" +source: + marketplace_id: "z3by.vscode-theme-britecore" + version: "0.0.1" + installs: 866 + author: "z3by" + repo: "https://github.com/z3by/vscode-theme-britecore" + url: "https://marketplace.visualstudio.com/items?itemName=z3by.vscode-theme-britecore" +colors: + bg: "#032E35" + fg: "#FFFFFF" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#EFB38F" + blue: "#099AB3" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#EFB38F" + brightBlue: "#099AB3" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#032E35" +meta: + mode: "dark" + accent: "green" + hue: 211 + contrast: + fg: 104 + black: 0 + red: 44.2 + green: 63.4 + yellow: 64.7 + blue: 37.6 + magenta: 61.4 + cyan: 89.9 + white: 104 + brightBlack: 11.8 + brightRed: 44.2 + brightGreen: 63.4 + brightYellow: 64.7 + brightBlue: 37.6 + brightMagenta: 61.4 + brightCyan: 89.9 + brightWhite: 0 diff --git a/themes/british-racing-green-theme.yaml b/themes/british-racing-green-theme.yaml new file mode 100644 index 00000000..44d068c2 --- /dev/null +++ b/themes/british-racing-green-theme.yaml @@ -0,0 +1,49 @@ +name: "British Racing Green Theme" +source: + marketplace_id: "Danesed.british-racing-green-theme" + version: "1.0.1" + installs: 13 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.british-racing-green-theme" +colors: + bg: "#07231E" + fg: "#BAD1D0" + black: "#105140" + red: "#FF3525" + green: "#31D198" + yellow: "#FF5246" + blue: "#2AB088" + magenta: "#FF5246" + cyan: "#2AB088" + white: "#BAD1D0" + brightBlack: "#344D4D" + brightRed: "#FF3525" + brightGreen: "#31D198" + brightYellow: "#FF5246" + brightBlue: "#2AB088" + brightMagenta: "#FF5246" + brightCyan: "#2AB088" + brightWhite: "#BAD1D0" +meta: + mode: "dark" + accent: "orange" + hue: 179 + contrast: + fg: 73.8 + black: 9.3 + red: 37.7 + green: 63.1 + yellow: 41.6 + blue: 47.3 + magenta: 41.6 + cyan: 47.3 + white: 73.8 + brightBlack: 9.5 + brightRed: 37.7 + brightGreen: 63.1 + brightYellow: 41.6 + brightBlue: 47.3 + brightMagenta: 41.6 + brightCyan: 47.3 + brightWhite: 73.8 diff --git a/themes/brogrammer-plus.yaml b/themes/brogrammer-plus.yaml new file mode 100644 index 00000000..e6fcd918 --- /dev/null +++ b/themes/brogrammer-plus.yaml @@ -0,0 +1,49 @@ +name: "Brogrammer Plus" +source: + marketplace_id: "jackjyq.brogrammer-plus" + version: "1.0.1" + installs: 8954 + author: "Jack Jiang" + repo: "https://github.com/jackjyq/vscode-theme-brogrammer-plus" + url: "https://marketplace.visualstudio.com/items?itemName=jackjyq.brogrammer-plus" +colors: + bg: "#121212" + fg: "#FFFFFF" + black: "#121212" + red: "#E74C3C" + green: "#2ECC71" + yellow: "#F1C40F" + blue: "#3498DB" + magenta: "#6C71C4" + cyan: "#3CC9D6" + white: "#FBFBFB" + brightBlack: "#373737" + brightRed: "#FF5542" + brightGreen: "#3BFB9D" + brightYellow: "#FFD60D" + brightBlue: "#48C0FF" + brightMagenta: "#9EA7FF" + brightCyan: "#51F1FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.3 + black: 0 + red: 36.5 + green: 61.1 + yellow: 73.4 + blue: 42.9 + magenta: 30.9 + cyan: 63.6 + white: 104.7 + brightBlack: 0 + brightRed: 43.5 + brightGreen: 86.1 + brightYellow: 83.3 + brightBlue: 62.2 + brightMagenta: 57.8 + brightCyan: 85.5 + brightWhite: 107.3 diff --git a/themes/broken-dreams-blue.yaml b/themes/broken-dreams-blue.yaml new file mode 100644 index 00000000..c8aeecf8 --- /dev/null +++ b/themes/broken-dreams-blue.yaml @@ -0,0 +1,49 @@ +name: "Broken Dreams Blue" +source: + marketplace_id: "emanuelpna.broken-dreams" + version: "0.2.1" + installs: 334 + author: "EmanuelPNA" + repo: "https://github.com/Emanuelpna/broken-dreams-theme" + url: "https://marketplace.visualstudio.com/items?itemName=emanuelpna.broken-dreams" +colors: + bg: "#232330" + fg: "#D7E5EF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 86.9 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.2 + brightMagenta: 43.6 + brightCyan: 53.6 + brightWhite: 88.3 diff --git a/themes/broken-dreams-purple.yaml b/themes/broken-dreams-purple.yaml new file mode 100644 index 00000000..b2670a6a --- /dev/null +++ b/themes/broken-dreams-purple.yaml @@ -0,0 +1,49 @@ +name: "Broken Dreams Purple" +source: + marketplace_id: "emanuelpna.broken-dreams" + version: "0.2.1" + installs: 334 + author: "EmanuelPNA" + repo: "https://github.com/Emanuelpna/broken-dreams-theme" + url: "https://marketplace.visualstudio.com/items?itemName=emanuelpna.broken-dreams" +colors: + bg: "#1E1B21" + fg: "#F5F5F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 308 + contrast: + fg: 99.7 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.4 + brightRed: 38 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/bromium.yaml b/themes/bromium.yaml new file mode 100644 index 00000000..b15fbb00 --- /dev/null +++ b/themes/bromium.yaml @@ -0,0 +1,49 @@ +name: "Bromium" +source: + marketplace_id: "TheBromo.bromium" + version: "0.1.4" + installs: 2047 + author: "TheBromo" + repo: "https://github.com/TheBromo/bromium" + url: "https://marketplace.visualstudio.com/items?itemName=TheBromo.bromium" +colors: + bg: "#101317" + fg: "#D4D4D5" + black: "#191D22" + red: "#F87070" + green: "#37D99E" + yellow: "#FFE59E" + blue: "#7AB0DF" + magenta: "#C397D8" + cyan: "#87BDEC" + white: "#D4D4D5" + brightBlack: "#45484C" + brightRed: "#FF8E8E" + brightGreen: "#79DCAA" + brightYellow: "#FFEDA6" + brightBlue: "#7AB0DF" + brightMagenta: "#C397D8" + brightCyan: "#87BDEC" + brightWhite: "#D4D4D5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.9 + black: 0 + red: 48.2 + green: 68.7 + yellow: 91.6 + blue: 56.1 + magenta: 54.1 + cyan: 63.2 + white: 79.9 + brightBlack: 10.5 + brightRed: 58.4 + brightGreen: 73.2 + brightYellow: 95.4 + brightBlue: 56.1 + brightMagenta: 54.1 + brightCyan: 63.2 + brightWhite: 79.9 diff --git a/themes/brownhu.yaml b/themes/brownhu.yaml new file mode 100644 index 00000000..59740e94 --- /dev/null +++ b/themes/brownhu.yaml @@ -0,0 +1,49 @@ +name: "Brownhu" +source: + marketplace_id: "Brownhu.duang" + version: "0.1.2" + installs: 1860 + author: "Brownhu" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Brownhu.duang" +colors: + bg: "#282C34" + fg: "#9CDAFB" + black: "#2D3139" + red: "#FFB094" + green: "#AAE691" + yellow: "#56ECD5" + blue: "#ACEBFC" + magenta: "#C591E6" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#AAE691" + brightYellow: "#56ECD5" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 74.9 + black: 0 + red: 66.2 + green: 77.6 + yellow: 77.5 + blue: 84.3 + magenta: 49.7 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 77.6 + brightYellow: 77.5 + brightBlue: 38.3 + brightMagenta: 9.5 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/brownista.yaml b/themes/brownista.yaml new file mode 100644 index 00000000..fecc38c7 --- /dev/null +++ b/themes/brownista.yaml @@ -0,0 +1,49 @@ +name: "Brownista" +source: + marketplace_id: "hubaldium.brownista-hubaldium" + version: "0.0.1" + installs: 69 + author: "Brownista" + repo: "https://github.com/theBoss-png/brownista-hubaldium" + url: "https://marketplace.visualstudio.com/items?itemName=hubaldium.brownista-hubaldium" +colors: + bg: "#1B1714" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.4 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.7 + cyan: 47.5 + white: 89.9 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/bruno-s-wet-dream.yaml b/themes/bruno-s-wet-dream.yaml new file mode 100644 index 00000000..8e346559 --- /dev/null +++ b/themes/bruno-s-wet-dream.yaml @@ -0,0 +1,49 @@ +name: "bruno's wet dream" +source: + marketplace_id: "massoladb.brunos-wet-dream" + version: "0.3.0" + installs: 190 + author: "Felipe Massola" + repo: "https://github.com/massoladb/brunos-wet-dream" + url: "https://marketplace.visualstudio.com/items?itemName=massoladb.brunos-wet-dream" +colors: + bg: "#2E1731" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 323 + contrast: + fg: 105.7 + black: 0 + red: 25.5 + green: 51.8 + yellow: 84.4 + blue: 26.2 + magenta: 28.6 + cyan: 46.4 + white: 88.8 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.8 + brightMagenta: 44.2 + brightCyan: 54.2 + brightWhite: 88.8 diff --git a/themes/brutalcode.yaml b/themes/brutalcode.yaml new file mode 100644 index 00000000..45d00ce1 --- /dev/null +++ b/themes/brutalcode.yaml @@ -0,0 +1,49 @@ +name: "BrutalCode" +source: + marketplace_id: "WaiYanMinLwin.brutal-code" + version: "0.0.1" + installs: 51 + author: "Wai Yan Min Lwin" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=WaiYanMinLwin.brutal-code" +colors: + bg: "#252525" + fg: "#FFFEFE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 104.4 + black: 0 + red: 24.8 + green: 51.1 + yellow: 83.7 + blue: 25.5 + magenta: 27.9 + cyan: 45.6 + white: 88.1 + brightBlack: 20.1 + brightRed: 36.7 + brightGreen: 61.6 + brightYellow: 93.7 + brightBlue: 38.1 + brightMagenta: 43.5 + brightCyan: 53.5 + brightWhite: 88.1 diff --git a/themes/bts-borahae.yaml b/themes/bts-borahae.yaml new file mode 100644 index 00000000..884f35cb --- /dev/null +++ b/themes/bts-borahae.yaml @@ -0,0 +1,49 @@ +name: "BTS Borahae" +source: + marketplace_id: "sooj.btsborahae-dark" + version: "1.0.3" + installs: 1798 + author: "sooj" + repo: "https://github.com/cloudycatt/btsborahae-dark" + url: "https://marketplace.visualstudio.com/items?itemName=sooj.btsborahae-dark" +colors: + bg: "#150F21" + fg: "#B6B6B6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 298 + contrast: + fg: 62.3 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/btv-dark.yaml b/themes/btv-dark.yaml new file mode 100644 index 00000000..5325d6d5 --- /dev/null +++ b/themes/btv-dark.yaml @@ -0,0 +1,49 @@ +name: "BTV Dark" +source: + marketplace_id: "BrandonVout.btv-themes" + version: "0.13.0" + installs: 34 + author: "Brandon Vout" + repo: "https://github.com/brandonvout/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=BrandonVout.btv-themes" +colors: + bg: "#1D1D20" + fg: "#BBD1E5" + black: "#5E5C64" + red: "#E62D42" + green: "#3A944A" + yellow: "#C88800" + blue: "#3584E4" + magenta: "#9141AC" + cyan: "#2190A4" + white: "#F6F5F4" + brightBlack: "#77767B" + brightRed: "#FF888C" + brightGreen: "#8DE698" + brightYellow: "#FFC057" + brightBlue: "#81D0FF" + brightMagenta: "#FBA7FF" + brightCyan: "#7BDFF4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 75.2 + black: 17.6 + red: 31.5 + green: 34.6 + yellow: 43.6 + blue: 35.1 + magenta: 21.1 + cyan: 35.2 + white: 99.6 + brightBlack: 28.6 + brightRed: 55.5 + brightGreen: 77.8 + brightYellow: 73.5 + brightBlue: 71 + brightMagenta: 69.6 + brightCyan: 76.9 + brightWhite: 106.1 diff --git a/themes/bubba-kush-v1.yaml b/themes/bubba-kush-v1.yaml new file mode 100644 index 00000000..22a5e01d --- /dev/null +++ b/themes/bubba-kush-v1.yaml @@ -0,0 +1,49 @@ +name: "Bubba Kush v1" +source: + marketplace_id: "astergabe.bubba-kush-theme" + version: "0.0.6" + installs: 132 + author: "Gabriel Fernandes" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=astergabe.bubba-kush-theme" +colors: + bg: "#191919" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.7 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/bubble-theme.yaml b/themes/bubble-theme.yaml new file mode 100644 index 00000000..0b55eb15 --- /dev/null +++ b/themes/bubble-theme.yaml @@ -0,0 +1,49 @@ +name: "Bubble Theme" +source: + marketplace_id: "NiltonPontes.bubble-theme" + version: "1.2.0" + installs: 480 + author: "Nilton Pontes" + repo: "https://github.com/niltoneapontes/bubble-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NiltonPontes.bubble-theme" +colors: + bg: "#181B28" + fg: "#F0F0F0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 96.5 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/bubblegum-color-theme.yaml b/themes/bubblegum-color-theme.yaml new file mode 100644 index 00000000..542b67fc --- /dev/null +++ b/themes/bubblegum-color-theme.yaml @@ -0,0 +1,49 @@ +name: "bubblegum-color-theme" +source: + marketplace_id: "wavebeem.theme-unoduetre" + version: "5.11.1" + installs: 4290 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/vscode-theme-unoduetre" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" +colors: + bg: "#F6EAF6" + fg: "#800080" + black: "#200E1E" + red: "#BB1634" + green: "#477648" + yellow: "#A5522C" + blue: "#632ECC" + magenta: "#BE1EA6" + cyan: "#3E727E" + white: "#E6E6E6" + brightBlack: "#200E1E" + brightRed: "#BB1634" + brightGreen: "#477648" + brightYellow: "#A5522C" + brightBlue: "#632ECC" + brightMagenta: "#BE1EA6" + brightCyan: "#3E727E" + brightWhite: "#E6E6E6" +meta: + mode: "light" + accent: "pink" + hue: 326 + contrast: + fg: 79.2 + black: 94.5 + red: 69.4 + green: 65.9 + yellow: 66.4 + blue: 74.7 + magenta: 64.5 + cyan: 66.2 + white: 0 + brightBlack: 94.5 + brightRed: 69.4 + brightGreen: 65.9 + brightYellow: 66.4 + brightBlue: 74.7 + brightMagenta: 64.5 + brightCyan: 66.2 + brightWhite: 0 diff --git a/themes/bubblegum-milkshake.yaml b/themes/bubblegum-milkshake.yaml new file mode 100644 index 00000000..96a4f56b --- /dev/null +++ b/themes/bubblegum-milkshake.yaml @@ -0,0 +1,49 @@ +name: "Bubblegum Milkshake" +source: + marketplace_id: "persocon.bubblegum-milkshake" + version: "0.0.2" + installs: 1499 + author: "persocon" + repo: "https://github.com/persocon/bubblegum-milkshake" + url: "https://marketplace.visualstudio.com/items?itemName=persocon.bubblegum-milkshake" +colors: + bg: "#263647" + fg: "#FFFFFF" + black: "#000000" + red: "#FEA0A3" + green: "#1DBB9B" + yellow: "#FFFBCC" + blue: "#B2D6FB" + magenta: "#A665A6" + cyan: "#1DAFEC" + white: "#EDEDED" + brightBlack: "#686868" + brightRed: "#FEB9B9" + brightGreen: "#3CC5AA" + brightYellow: "#FFFBCC" + brightBlue: "#B2D6FB" + brightMagenta: "#FFD1DC" + brightCyan: "#478DC8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: 251 + contrast: + fg: 101.5 + black: 0 + red: 58.8 + green: 48.3 + yellow: 97.5 + blue: 73 + magenta: 26.8 + cyan: 47.1 + white: 89.8 + brightBlack: 17.6 + brightRed: 68.4 + brightGreen: 54 + brightYellow: 97.5 + brightBlue: 73 + brightMagenta: 79.5 + brightCyan: 32.5 + brightWhite: 101.5 diff --git a/themes/bubblegum.yaml b/themes/bubblegum.yaml new file mode 100644 index 00000000..d165b66f --- /dev/null +++ b/themes/bubblegum.yaml @@ -0,0 +1,49 @@ +name: "Bubblegum" +source: + marketplace_id: "AdrianTriS.bubblegum-theme" + version: "1.0.0" + installs: 57 + author: "AdrianTriS" + repo: "https://github.com/AdrianTriSetiawan/Bubblegums-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AdrianTriS.bubblegum-theme" +colors: + bg: "#1A1226" + fg: "#FFD4E8" + black: "#1A1226" + red: "#FF6B9D" + green: "#A8E6CF" + yellow: "#FFD3A5" + blue: "#A8D8FF" + magenta: "#FF8EC4" + cyan: "#A8E6E6" + white: "#FFD4E8" + brightBlack: "#1A1226" + brightRed: "#FF6B9D" + brightGreen: "#A8E6CF" + brightYellow: "#FFD3A5" + brightBlue: "#A8D8FF" + brightMagenta: "#FF8EC4" + brightCyan: "#A8E6E6" + brightWhite: "#FFD4E8" +meta: + mode: "dark" + accent: "red" + hue: 301 + contrast: + fg: 86.7 + black: 0 + red: 49.6 + green: 82.7 + yellow: 83.7 + blue: 78.6 + magenta: 60.2 + cyan: 83.7 + white: 86.7 + brightBlack: 0 + brightRed: 49.6 + brightGreen: 82.7 + brightYellow: 83.7 + brightBlue: 78.6 + brightMagenta: 60.2 + brightCyan: 83.7 + brightWhite: 86.7 diff --git a/themes/bubblegumtheme.yaml b/themes/bubblegumtheme.yaml new file mode 100644 index 00000000..3ec9f277 --- /dev/null +++ b/themes/bubblegumtheme.yaml @@ -0,0 +1,49 @@ +name: "bubbleGumTheme" +source: + marketplace_id: "MarioFernndezEstvez.bubblegumtheme" + version: "0.0.2" + installs: 463 + author: "Mario Fernández Estévez" + repo: "https://github.com/mariof99/bubbleGumTheme" + url: "https://marketplace.visualstudio.com/items?itemName=MarioFernndezEstvez.bubblegumtheme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#4F4F4F" + red: "#FF0083" + green: "#00FF9D" + yellow: "#AFFF00" + blue: "#F100EF" + magenta: "#D900D8" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#686868" + brightRed: "#FF0083" + brightGreen: "#00FF98" + brightYellow: "#AFFF00" + brightBlue: "#FF1CD1" + brightMagenta: "#F100EF" + brightCyan: "#00CFFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 13.8 + red: 39.4 + green: 88.3 + yellow: 93.3 + blue: 41.8 + magenta: 35 + cyan: 48.6 + white: 107.9 + brightBlack: 23.9 + brightRed: 39.4 + brightGreen: 88.2 + brightYellow: 93.3 + brightBlue: 43.5 + brightMagenta: 41.8 + brightCyan: 68.6 + brightWhite: 91 diff --git a/themes/buby-color-theme.yaml b/themes/buby-color-theme.yaml new file mode 100644 index 00000000..76430f20 --- /dev/null +++ b/themes/buby-color-theme.yaml @@ -0,0 +1,49 @@ +name: "BUBY-color-theme" +source: + marketplace_id: "kerneldevs.buby" + version: "0.0.1" + installs: 85 + author: "kernel_devs" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kerneldevs.buby" +colors: + bg: "#D9D2E9" + fg: "#8E7CC3" + black: "#D9D2E9" + red: "#B4A7D6" + green: "#594197" + yellow: "#674EA7" + blue: "#5C4497" + magenta: "#351C75" + cyan: "#7A62B7" + white: "#9988C8" + brightBlack: "#CEC6E4" + brightRed: "#7767A4" + brightGreen: "#7A62B7" + brightYellow: "#674EA7" + brightBlue: "#5C4497" + brightMagenta: "#351C75" + brightCyan: "#7A62B7" + brightWhite: "#8E7CC3" +meta: + mode: "light" + accent: "magenta" + hue: 300 + contrast: + fg: 39.3 + black: 0 + red: 19.5 + green: 63.1 + yellow: 57.7 + blue: 62.1 + magenta: 74.8 + cyan: 49.7 + white: 34 + brightBlack: 0 + brightRed: 49.7 + brightGreen: 49.7 + brightYellow: 57.7 + brightBlue: 62.1 + brightMagenta: 74.8 + brightCyan: 49.7 + brightWhite: 39.3 diff --git a/themes/buddha-a-super-minimal-theme-for-vscode.yaml b/themes/buddha-a-super-minimal-theme-for-vscode.yaml new file mode 100644 index 00000000..89db152d --- /dev/null +++ b/themes/buddha-a-super-minimal-theme-for-vscode.yaml @@ -0,0 +1,49 @@ +name: "buddha - a super minimal theme for vscode" +source: + marketplace_id: "AnupJha.buddha-a-super-minimal-theme-for-vscode" + version: "0.0.1" + installs: 1036 + author: "Anup Jha" + repo: "https://github.com/anupjha/buddha-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AnupJha.buddha-a-super-minimal-theme-for-vscode" +colors: + bg: "#003440" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#FF0032" + green: "#00FF68" + yellow: "#FFCA00" + blue: "#004BFF" + magenta: "#7D46FC" + cyan: "#00D2FF" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#FF0032" + brightGreen: "#00FF68" + brightYellow: "#FFCA00" + brightBlue: "#004BFF" + brightMagenta: "#7D46FC" + brightCyan: "#00D2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 219 + contrast: + fg: 102.7 + black: 102.7 + red: 32.6 + green: 82 + yellow: 73.6 + blue: 17.7 + magenta: 22.5 + cyan: 64.8 + white: 102.7 + brightBlack: 102.7 + brightRed: 32.6 + brightGreen: 82 + brightYellow: 73.6 + brightBlue: 17.7 + brightMagenta: 22.5 + brightCyan: 64.8 + brightWhite: 102.7 diff --git a/themes/budha.yaml b/themes/budha.yaml new file mode 100644 index 00000000..748048d0 --- /dev/null +++ b/themes/budha.yaml @@ -0,0 +1,49 @@ +name: "Budha" +source: + marketplace_id: "overfl0w.budha" + version: "0.0.1" + installs: 75 + author: "overfl0w" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=overfl0w.budha" +colors: + bg: "#12151C" + fg: "#686868" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 267 + contrast: + fg: 23.1 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/budokan.yaml b/themes/budokan.yaml new file mode 100644 index 00000000..d06d152a --- /dev/null +++ b/themes/budokan.yaml @@ -0,0 +1,49 @@ +name: "Budokan" +source: + marketplace_id: "matheusfunil.budokan-theme" + version: "1.1.3" + installs: 666 + author: "Matheus Gabriel" + repo: "https://github.com/matheusfnl/budokan-theme" + url: "https://marketplace.visualstudio.com/items?itemName=matheusfunil.budokan-theme" +colors: + bg: "#1D1818" + fg: "#6FEA94" + black: "#000000" + red: "#8C3333" + green: "#207957" + yellow: "#A3A331" + blue: "#43678E" + magenta: "#993299" + cyan: "#2E6C7B" + white: "#BABABA" + brightBlack: "#7D7A7A" + brightRed: "#BA5C5C" + brightGreen: "#199664" + brightYellow: "#E8E866" + brightBlue: "#425C79" + brightMagenta: "#A75AA7" + brightCyan: "#1A6779" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.3 + black: 0 + red: 14 + green: 24.3 + yellow: 48.7 + blue: 21.2 + magenta: 19.6 + cyan: 21.2 + white: 63.9 + brightBlack: 31 + brightRed: 30.3 + brightGreen: 35.8 + brightYellow: 87.8 + brightBlue: 16.9 + brightMagenta: 29.5 + brightCyan: 19 + brightWhite: 90.4 diff --git a/themes/bugged-gpu.yaml b/themes/bugged-gpu.yaml new file mode 100644 index 00000000..248c5caf --- /dev/null +++ b/themes/bugged-gpu.yaml @@ -0,0 +1,49 @@ +name: "Bugged GPU" +source: + marketplace_id: "BuggedGpuTheme.darker-high-contrast-bugged-gpu" + version: "1.0.0" + installs: 156 + author: "Bugged Gpu Theme" + repo: "https://github.com/jguigo/bugged-gpu-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BuggedGpuTheme.darker-high-contrast-bugged-gpu" +colors: + bg: "#212121" + fg: "#ECFFFF" + black: "#000000" + red: "#FF2E70" + green: "#97FF80" + yellow: "#FEDC50" + blue: "#9D78FF" + magenta: "#E813F0" + cyan: "#73DAFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF2E70" + brightGreen: "#97FF80" + brightYellow: "#FEDC50" + brightBlue: "#9D78FF" + brightMagenta: "#E813F0" + brightCyan: "#73DAFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 103 + black: 0 + red: 38 + green: 90.1 + yellow: 84.4 + blue: 40.6 + magenta: 37.9 + cyan: 74.2 + white: 105.6 + brightBlack: 9.7 + brightRed: 38 + brightGreen: 90.1 + brightYellow: 84.4 + brightBlue: 40.6 + brightMagenta: 37.9 + brightCyan: 74.2 + brightWhite: 105.6 diff --git a/themes/buhtig.yaml b/themes/buhtig.yaml new file mode 100644 index 00000000..94f50397 --- /dev/null +++ b/themes/buhtig.yaml @@ -0,0 +1,49 @@ +name: "Buhtig" +source: + marketplace_id: "NeoWees.onebadass-theme-neowees" + version: "0.6.0" + installs: 109 + author: "Neo Wees" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NeoWees.onebadass-theme-neowees" +colors: + bg: "#181D22" + fg: "#E1E4E8" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D1D5DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: 248 + contrast: + fg: 88.5 + black: 18.5 + red: 36.3 + green: 61.6 + yellow: 92.1 + blue: 38.3 + magenta: 50.7 + cyan: 60.2 + white: 79.2 + brightBlack: 47.1 + brightRed: 49.1 + brightGreen: 78.4 + brightYellow: 92.1 + brightBlue: 60.2 + brightMagenta: 50.7 + brightCyan: 68.8 + brightWhite: 103.5 diff --git a/themes/bullish-theme.yaml b/themes/bullish-theme.yaml new file mode 100644 index 00000000..502395a3 --- /dev/null +++ b/themes/bullish-theme.yaml @@ -0,0 +1,49 @@ +name: "Bullish Theme" +source: + marketplace_id: "zhiking.bullish-theme" + version: "0.0.4" + installs: 454 + author: "zhiking" + repo: "https://github.com/zyj1022/vscode-bullish-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zhiking.bullish-theme" +colors: + bg: "#EFEFF4" + fg: "#5C6066" + black: "#000000" + red: "#FF83AC" + green: "#77CC00" + yellow: "#FAB005" + blue: "#339AF0" + magenta: "#9966CC" + cyan: "#12B886" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#D6656A" + brightGreen: "#A3D900" + brightYellow: "#FAB005" + brightBlue: "#6871FF" + brightMagenta: "#A37ACC" + brightCyan: "#57D9AD" + brightWhite: "#5C6773" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 72.2 + black: 96.7 + red: 35.8 + green: 29.4 + yellow: 25.5 + blue: 46.8 + magenta: 58.6 + cyan: 40.1 + white: 20.8 + brightBlack: 68.6 + brightRed: 53.2 + brightGreen: 20.2 + brightYellow: 25.5 + brightBlue: 56.7 + brightMagenta: 51.9 + brightCyan: 22.6 + brightWhite: 69.6 diff --git a/themes/bun-gothic.yaml b/themes/bun-gothic.yaml new file mode 100644 index 00000000..93f3d1fc --- /dev/null +++ b/themes/bun-gothic.yaml @@ -0,0 +1,49 @@ +name: "bun_gothic" +source: + marketplace_id: "ArtemBunichev.bun-gothic-theme" + version: "1.1.0" + installs: 430 + author: "ArtemBunichev" + repo: "https://github.com/spleekz/vscode-bun_gothic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ArtemBunichev.bun-gothic-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#000000" + green: "#000000" + yellow: "#000000" + blue: "#000000" + magenta: "#000000" + cyan: "#000000" + white: "#000000" + brightBlack: "#000000" + brightRed: "#000000" + brightGreen: "#000000" + brightYellow: "#000000" + brightBlue: "#000000" + brightMagenta: "#000000" + brightCyan: "#000000" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 106 + black: 106 + red: 106 + green: 106 + yellow: 106 + blue: 106 + magenta: 106 + cyan: 106 + white: 106 + brightBlack: 106 + brightRed: 106 + brightGreen: 106 + brightYellow: 106 + brightBlue: 106 + brightMagenta: 106 + brightCyan: 106 + brightWhite: 106 diff --git a/themes/burnt-chestnut.yaml b/themes/burnt-chestnut.yaml new file mode 100644 index 00000000..a6509db7 --- /dev/null +++ b/themes/burnt-chestnut.yaml @@ -0,0 +1,49 @@ +name: "Burnt Chestnut" +source: + marketplace_id: "wicked-labs.cocoa-butter" + version: "0.1.4" + installs: 1140 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/cocoabutter" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.cocoa-butter" +colors: + bg: "#211D20" + fg: "#BBB1A7" + black: "#3A3237" + red: "#DFB583" + green: "#7D96A8" + yellow: "#8C8F6E" + blue: "#847C98" + magenta: "#588291" + cyan: "#E6927A" + white: "#BBB1A7" + brightBlack: "#FFFFFF" + brightRed: "#DFB583" + brightGreen: "#7D96A8" + brightYellow: "#8C8F6E" + brightBlue: "#847C98" + brightMagenta: "#588291" + brightCyan: "#E6927A" + brightWhite: "#BBB1A7" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 59.1 + black: 0 + red: 64.6 + green: 42.1 + yellow: 38.9 + blue: 32.9 + magenta: 31 + cyan: 53.1 + white: 59.1 + brightBlack: 106 + brightRed: 64.6 + brightGreen: 42.1 + brightYellow: 38.9 + brightBlue: 32.9 + brightMagenta: 31 + brightCyan: 53.1 + brightWhite: 59.1 diff --git a/themes/burple-dark.yaml b/themes/burple-dark.yaml new file mode 100644 index 00000000..692c66fc --- /dev/null +++ b/themes/burple-dark.yaml @@ -0,0 +1,49 @@ +name: "Burple Dark" +source: + marketplace_id: "Vencordthemer.burple" + version: "1.0.4" + installs: 79 + author: "Vencordthemer" + repo: "https://github.com/vencordthemer/burple" + url: "https://marketplace.visualstudio.com/items?itemName=Vencordthemer.burple" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF5F5F" + green: "#A3E635" + yellow: "#FACC15" + blue: "#3B82F6" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF5F5F" + brightGreen: "#B4F34D" + brightYellow: "#FDE047" + brightBlue: "#60A5FA" + brightMagenta: "#BB86FC" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 46.4 + green: 79.7 + yellow: 78.8 + blue: 37.8 + magenta: 50.7 + cyan: 69.6 + white: 107.9 + brightBlack: 23 + brightRed: 46.4 + brightGreen: 87.9 + brightYellow: 88.2 + brightBlue: 52.4 + brightMagenta: 50.6 + brightCyan: 82.2 + brightWhite: 107.9 diff --git a/themes/busbyvscode.yaml b/themes/busbyvscode.yaml new file mode 100644 index 00000000..de040589 --- /dev/null +++ b/themes/busbyvscode.yaml @@ -0,0 +1,49 @@ +name: "BusbyVSCode" +source: + marketplace_id: "MikeBusby.busbyvscode" + version: "0.0.3" + installs: 132 + author: "MikeBusby" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MikeBusby.busbyvscode" +colors: + bg: "#002436" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 235 + contrast: + fg: 69.8 + black: 24.9 + red: 42.5 + green: 64.3 + yellow: 77.4 + blue: 54.4 + magenta: 52.3 + cyan: 76.8 + white: 105.4 + brightBlack: 24.9 + brightRed: 42.5 + brightGreen: 82.7 + brightYellow: 77.4 + brightBlue: 54.4 + brightMagenta: 52.3 + brightCyan: 76.8 + brightWhite: 105.4 diff --git a/themes/bushland.yaml b/themes/bushland.yaml new file mode 100644 index 00000000..61c9c753 --- /dev/null +++ b/themes/bushland.yaml @@ -0,0 +1,49 @@ +name: "Bushland" +source: + marketplace_id: "wicked-labs.bushland" + version: "0.4.8" + installs: 1430 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/bushland" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.bushland" +colors: + bg: "#313531" + fg: "#FAFAFA" + black: "#626A62" + red: "#A2C1E0" + green: "#FEA090" + yellow: "#D3B58F" + blue: "#FD6043" + magenta: "#E4DEC8" + cyan: "#D99E63" + white: "#EDD1B5" + brightBlack: "#D7DAD7" + brightRed: "#A2C1E0" + brightGreen: "#FEA090" + brightYellow: "#D3B58F" + brightBlue: "#FD6043" + brightMagenta: "#E4DEC8" + brightCyan: "#D99E63" + brightWhite: "#EDD1B5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 98.5 + black: 17.7 + red: 61.1 + green: 58.5 + yellow: 58.9 + blue: 39.6 + magenta: 80.4 + cyan: 50.2 + white: 75.4 + brightBlack: 77.5 + brightRed: 61.1 + brightGreen: 58.5 + brightYellow: 58.9 + brightBlue: 39.6 + brightMagenta: 80.4 + brightCyan: 50.2 + brightWhite: 75.4 diff --git a/themes/butrin-theme.yaml b/themes/butrin-theme.yaml new file mode 100644 index 00000000..599afcdb --- /dev/null +++ b/themes/butrin-theme.yaml @@ -0,0 +1,49 @@ +name: "Butrin-Theme" +source: + marketplace_id: "stormedx.butrin-theme" + version: "0.0.4" + installs: 1312 + author: "stormed" + repo: "https://github.com/stormedx/butrin-theme" + url: "https://marketplace.visualstudio.com/items?itemName=stormedx.butrin-theme" +colors: + bg: "#4B3B3C" + fg: "#DCDCDC" + black: "#8C7E78" + red: "#E68A8A" + green: "#99CC99" + yellow: "#FAD7A0" + blue: "#6699CC" + magenta: "#C8A2C8" + cyan: "#6FC3B2" + white: "#E2CEBE" + brightBlack: "#BFACA4" + brightRed: "#F2B1B1" + brightGreen: "#B2D8B2" + brightYellow: "#F7DCB4" + brightBlue: "#87CEFA" + brightMagenta: "#D8BFD8" + brightCyan: "#64DBDB" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "orange" + hue: 14 + contrast: + fg: 76 + black: 25.7 + red: 43.5 + green: 58.8 + yellow: 75.9 + blue: 35.7 + magenta: 49 + cyan: 52.5 + white: 69.5 + brightBlack: 50 + brightRed: 60 + brightGreen: 67.5 + brightYellow: 78.2 + brightBlue: 62.6 + brightMagenta: 63 + brightCyan: 64.8 + brightWhite: 89.9 diff --git a/themes/butter-green-fork.yaml b/themes/butter-green-fork.yaml new file mode 100644 index 00000000..0fe988b5 --- /dev/null +++ b/themes/butter-green-fork.yaml @@ -0,0 +1,49 @@ +name: "Butter green - Fork" +source: + marketplace_id: "xynny.delightfulgreen" + version: "0.0.1" + installs: 534 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.delightfulgreen" +colors: + bg: "#1E1E1E" + fg: "#BE9F9F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 52.4 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/buttercawfee.yaml b/themes/buttercawfee.yaml new file mode 100644 index 00000000..0c178a03 --- /dev/null +++ b/themes/buttercawfee.yaml @@ -0,0 +1,49 @@ +name: "Buttercawfee" +source: + marketplace_id: "shurj0.buttercawfee" + version: "1.1.5" + installs: 10 + author: "shurj0" + repo: "https://github.com/shurj0/Buttercawfee" + url: "https://marketplace.visualstudio.com/items?itemName=shurj0.buttercawfee" +colors: + bg: "#15130F" + fg: "#D4D4D4" + black: "#000000" + red: "#B05F15" + green: "#97A882" + yellow: "#E5E510" + blue: "#8292A7" + magenta: "#A28092" + cyan: "#87A894" + white: "#A8B0B8" + brightBlack: "#5F666F" + brightRed: "#B05F15" + brightGreen: "#97A882" + brightYellow: "#F5F543" + brightBlue: "#8292A7" + brightMagenta: "#907FA6" + brightCyan: "#87A894" + brightWhite: "#EBEDF1" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 79.8 + black: 0 + red: 29 + green: 51.3 + yellow: 86 + blue: 42.2 + magenta: 38.7 + cyan: 50.4 + white: 58.3 + brightBlack: 22.1 + brightRed: 29 + brightGreen: 51.3 + brightYellow: 96 + brightBlue: 42.2 + brightMagenta: 37 + brightCyan: 50.4 + brightWhite: 95.4 diff --git a/themes/bynawers.yaml b/themes/bynawers.yaml new file mode 100644 index 00000000..1c9ea220 --- /dev/null +++ b/themes/bynawers.yaml @@ -0,0 +1,49 @@ +name: "Bynawers" +source: + marketplace_id: "Bynawers.manjaro-bynawers-theme" + version: "0.0.1" + installs: 770 + author: "Bynawers" + repo: "https://github.com/Bynawers/vscode-manjaro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bynawers.manjaro-bynawers-theme" +colors: + bg: "#222B2E" + fg: "#ABB2BF" + black: "#222B2E" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#3A4A51" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 220 + contrast: + fg: 56.7 + black: 0 + red: 34 + green: 57.6 + yellow: 45.9 + blue: 46.9 + magenta: 36.3 + cyan: 49.8 + white: 80.3 + brightBlack: 7.4 + brightRed: 43.3 + brightGreen: 74 + brightYellow: 58.5 + brightBlue: 61 + brightMagenta: 47.5 + brightCyan: 65.1 + brightWhite: 87.9 diff --git a/themes/byteglow.yaml b/themes/byteglow.yaml new file mode 100644 index 00000000..60e3c5c1 --- /dev/null +++ b/themes/byteglow.yaml @@ -0,0 +1,49 @@ +name: "ByteGlow" +source: + marketplace_id: "ByteLoom.byteglow-theme" + version: "1.0.1" + installs: 36 + author: "AMITRAJIT SARKAR" + repo: "https://github.com/Amitrajit007/ByteGlow" + url: "https://marketplace.visualstudio.com/items?itemName=ByteLoom.byteglow-theme" +colors: + bg: "#242434" + fg: "#E0E3E6" + black: "#1E1E2E" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#89DDFF" + white: "#E0E3E6" + brightBlack: "#5C6370" + brightRed: "#FF6B6B" + brightGreen: "#B9F27C" + brightYellow: "#FDDB7C" + brightBlue: "#6BBAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 284 + contrast: + fg: 86.5 + black: 0 + red: 47.9 + green: 65.5 + yellow: 60.7 + blue: 49.7 + magenta: 53.6 + cyan: 76.3 + white: 86.5 + brightBlack: 18.6 + brightRed: 46.1 + brightGreen: 85.6 + brightYellow: 83.7 + brightBlue: 58.8 + brightMagenta: 51.8 + brightCyan: 76.3 + brightWhite: 104.9 diff --git a/themes/bytenight.yaml b/themes/bytenight.yaml new file mode 100644 index 00000000..a9c3c12e --- /dev/null +++ b/themes/bytenight.yaml @@ -0,0 +1,49 @@ +name: "ByteNight" +source: + marketplace_id: "AmirPhilAdam.bytenighttheme" + version: "1.0.0" + installs: 27 + author: "Amir Phil Adam" + repo: "https://github.com/amirphiladam2/ByteNight" + url: "https://marketplace.visualstudio.com/items?itemName=AmirPhilAdam.bytenighttheme" +colors: + bg: "#00000A" + fg: "#E2E8F0" + black: "#1E293B" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F1F5F9" + brightBlack: "#475569" + brightRed: "#F87171" + brightGreen: "#34D399" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 264 + contrast: + fg: 92.5 + black: 0 + red: 37.8 + green: 52.8 + yellow: 60.4 + blue: 37.8 + magenta: 35.4 + cyan: 54.9 + white: 100.9 + brightBlack: 15.7 + brightRed: 49.1 + brightGreen: 66.2 + brightYellow: 73.7 + brightBlue: 52.4 + brightMagenta: 50.7 + brightCyan: 69.6 + brightWhite: 107.9 diff --git a/themes/c-c-theme.yaml b/themes/c-c-theme.yaml new file mode 100644 index 00000000..2c5ecb30 --- /dev/null +++ b/themes/c-c-theme.yaml @@ -0,0 +1,49 @@ +name: "C/C++ Theme" +source: + marketplace_id: "Xen.ccpp-theme" + version: "0.3.4" + installs: 18872 + author: "Xen" + repo: "https://github.com/xenkuo/ccpp_theme" + url: "https://marketplace.visualstudio.com/items?itemName=Xen.ccpp-theme" +colors: + bg: "#282A36" + fg: "#F5F5EF" + black: "#21222C" + red: "#FF5555" + green: "#5FEA77" + yellow: "#EAF48C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F5F5EF" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 97.1 + black: 0 + red: 40.4 + green: 74.1 + yellow: 91.8 + blue: 50.7 + magenta: 51.6 + cyan: 81 + white: 97.1 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/c-dracula.yaml b/themes/c-dracula.yaml new file mode 100644 index 00000000..15ad16cc --- /dev/null +++ b/themes/c-dracula.yaml @@ -0,0 +1,49 @@ +name: "C# Dracula" +source: + marketplace_id: "Gabrieldp-dev.reduc-csharp-dracula" + version: "1.0.2" + installs: 9010 + author: "Gabriel-dp" + repo: "https://github.com/gabrieldp23/sBotics_Snippets_vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Gabrieldp-dev.reduc-csharp-dracula" +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#252732" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 50.7 + magenta: 51.6 + cyan: 81 + white: 99 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/c0v3r.yaml b/themes/c0v3r.yaml new file mode 100644 index 00000000..fd84748d --- /dev/null +++ b/themes/c0v3r.yaml @@ -0,0 +1,49 @@ +name: "C0V3R" +source: + marketplace_id: "LiamLoughty.c0v3r" + version: "0.0.1" + installs: 99 + author: "Liam Loughty" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LiamLoughty.c0v3r" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#4B4B4B" + red: "#960000" + green: "#007D00" + yellow: "#7D7D00" + blue: "#004B96" + magenta: "#6400C8" + cyan: "#0082AA" + white: "#C8C8C8" + brightBlack: "#646464" + brightRed: "#C80000" + brightGreen: "#00AF00" + brightYellow: "#C8C800" + brightBlue: "#0064C8" + brightMagenta: "#9600C8" + brightCyan: "#00AFC8" + brightWhite: "#969696" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 78.7 + black: 10.5 + red: 11.9 + green: 24.1 + yellow: 29.7 + blue: 11.6 + magenta: 12.5 + cyan: 29.9 + white: 71.5 + brightBlack: 20.4 + brightRed: 22.5 + brightGreen: 44.9 + brightYellow: 67.9 + brightBlue: 22 + brightMagenta: 19.4 + brightCyan: 49.4 + brightWhite: 43.8 diff --git a/themes/cabalyon-theme.yaml b/themes/cabalyon-theme.yaml new file mode 100644 index 00000000..5c1f4f58 --- /dev/null +++ b/themes/cabalyon-theme.yaml @@ -0,0 +1,49 @@ +name: "Cabalyon Theme" +source: + marketplace_id: "WeeCode.cabalyon" + version: "0.0.2" + installs: 89 + author: "WeeC0de" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=WeeCode.cabalyon" +colors: + bg: "#0F0F0F" + fg: "#00FF9F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 88 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/cadet-dark-gray.yaml b/themes/cadet-dark-gray.yaml new file mode 100644 index 00000000..8f9b5ec6 --- /dev/null +++ b/themes/cadet-dark-gray.yaml @@ -0,0 +1,49 @@ +name: "Cadet Dark Gray" +source: + marketplace_id: "SethCox.cadet" + version: "0.0.4" + installs: 2440 + author: "Seth Cox" + repo: "https://github.com/sethaddison/Cadet-Vscode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=SethCox.cadet" +colors: + bg: "#111827" + fg: "#FFF9F1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 265 + contrast: + fg: 103.2 + black: 0 + red: 26.6 + green: 52.8 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.9 diff --git a/themes/cadet-medium-gray-flat.yaml b/themes/cadet-medium-gray-flat.yaml new file mode 100644 index 00000000..b3a71264 --- /dev/null +++ b/themes/cadet-medium-gray-flat.yaml @@ -0,0 +1,49 @@ +name: "Cadet Medium Gray Flat" +source: + marketplace_id: "SethCox.cadet" + version: "0.0.4" + installs: 2440 + author: "Seth Cox" + repo: "https://github.com/sethaddison/Cadet-Vscode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=SethCox.cadet" +colors: + bg: "#1F2937" + fg: "#FFF9F1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 100.9 + black: 0 + red: 24.2 + green: 50.5 + yellow: 83.1 + blue: 24.9 + magenta: 27.2 + cyan: 45 + white: 87.5 + brightBlack: 19.5 + brightRed: 36 + brightGreen: 61 + brightYellow: 93.1 + brightBlue: 37.5 + brightMagenta: 42.8 + brightCyan: 52.9 + brightWhite: 87.5 diff --git a/themes/caf-warmth.yaml b/themes/caf-warmth.yaml new file mode 100644 index 00000000..375b94a6 --- /dev/null +++ b/themes/caf-warmth.yaml @@ -0,0 +1,49 @@ +name: "Café Warmth" +source: + marketplace_id: "Icycoldveins.verum-monokai-themes" + version: "1.2.1" + installs: 46 + author: "Icycoldveins" + repo: "https://github.com/icycoldveins/Ide-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" +colors: + bg: "#292828" + fg: "#A89984" + black: "#1F1D1A" + red: "#E06C75" + green: "#7DA061" + yellow: "#E78A4E" + blue: "#7DA061" + magenta: "#E8E4D9" + cyan: "#C4B299" + white: "#C4B299" + brightBlack: "#8B6F47" + brightRed: "#E06C75" + brightGreen: "#7DA061" + brightYellow: "#E78A4E" + brightBlue: "#7DA061" + brightMagenta: "#E8E4D9" + brightCyan: "#C4B299" + brightWhite: "#E8E4D9" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 44.8 + black: 0 + red: 39.6 + green: 42.1 + yellow: 48.3 + blue: 42.1 + magenta: 87 + cyan: 58.5 + white: 58.5 + brightBlack: 25.6 + brightRed: 39.6 + brightGreen: 42.1 + brightYellow: 48.3 + brightBlue: 42.1 + brightMagenta: 87 + brightCyan: 58.5 + brightWhite: 87 diff --git a/themes/caffe-crema-dark.yaml b/themes/caffe-crema-dark.yaml new file mode 100644 index 00000000..9984e0ab --- /dev/null +++ b/themes/caffe-crema-dark.yaml @@ -0,0 +1,49 @@ +name: "Caffe Crema Dark" +source: + marketplace_id: "MonicaVilla.caffe-crema-theme" + version: "1.0.1" + installs: 298 + author: "Mónica Villarroel" + repo: "https://github.com/MonicaVillap/CaffeCremaTheme" + url: "https://marketplace.visualstudio.com/items?itemName=MonicaVilla.caffe-crema-theme" +colors: + bg: "#2B1F1A" + fg: "#F3E5D8" + black: "#3F2E28" + red: "#C16A5B" + green: "#9DB17C" + yellow: "#E3B98C" + blue: "#A3BFD9" + magenta: "#D6A2E8" + cyan: "#92C7C7" + white: "#F3E5D8" + brightBlack: "#3F2E28" + brightRed: "#C16A5B" + brightGreen: "#9DB17C" + brightYellow: "#E3B98C" + brightBlue: "#A3BFD9" + brightMagenta: "#D6A2E8" + brightCyan: "#92C7C7" + brightWhite: "#F3E5D8" +meta: + mode: "dark" + accent: "orange" + hue: 44 + contrast: + fg: 90 + black: 0 + red: 33.8 + green: 53.7 + yellow: 66.5 + blue: 63.7 + magenta: 59.8 + cyan: 64.7 + white: 90 + brightBlack: 0 + brightRed: 33.8 + brightGreen: 53.7 + brightYellow: 66.5 + brightBlue: 63.7 + brightMagenta: 59.8 + brightCyan: 64.7 + brightWhite: 90 diff --git a/themes/caffe-crema-light.yaml b/themes/caffe-crema-light.yaml new file mode 100644 index 00000000..a4b655df --- /dev/null +++ b/themes/caffe-crema-light.yaml @@ -0,0 +1,49 @@ +name: "Caffe Crema Light" +source: + marketplace_id: "MonicaVilla.caffe-crema-theme" + version: "1.0.1" + installs: 298 + author: "Mónica Villarroel" + repo: "https://github.com/MonicaVillap/CaffeCremaTheme" + url: "https://marketplace.visualstudio.com/items?itemName=MonicaVilla.caffe-crema-theme" +colors: + bg: "#FDF8F3" + fg: "#3B2E2E" + black: "#5A4747" + red: "#C55353" + green: "#669966" + yellow: "#D9A441" + blue: "#6688AA" + magenta: "#996699" + cyan: "#669999" + white: "#3B2E2E" + brightBlack: "#5A4747" + brightRed: "#C55353" + brightGreen: "#669966" + brightYellow: "#D9A441" + brightBlue: "#6688AA" + brightMagenta: "#996699" + brightCyan: "#669999" + brightWhite: "#3B2E2E" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.5 + black: 85.9 + red: 66.3 + green: 56.8 + yellow: 40.4 + blue: 60.8 + magenta: 67 + cyan: 55.3 + white: 95.5 + brightBlack: 85.9 + brightRed: 66.3 + brightGreen: 56.8 + brightYellow: 40.4 + brightBlue: 60.8 + brightMagenta: 67 + brightCyan: 55.3 + brightWhite: 95.5 diff --git a/themes/caffeinated-rust.yaml b/themes/caffeinated-rust.yaml new file mode 100644 index 00000000..24c9dbde --- /dev/null +++ b/themes/caffeinated-rust.yaml @@ -0,0 +1,49 @@ +name: "Caffeinated Rust" +source: + marketplace_id: "CaffeinatedMinds.caffeinated-rust-dark" + version: "0.1.0" + installs: 139 + author: "Caffeinated Minds" + repo: "https://github.com/caffeinated-minds/caffeinated-rust" + url: "https://marketplace.visualstudio.com/items?itemName=CaffeinatedMinds.caffeinated-rust-dark" +colors: + bg: "#1A1A1A" + fg: "#EDEDED" + black: "#1A1A1A" + red: "#D1604D" + green: "#76C7A5" + yellow: "#F4BE68" + blue: "#70AFFF" + magenta: "#B7410E" + cyan: "#F7A072" + white: "#EDEDED" + brightBlack: "#6C6C6C" + brightRed: "#D1604D" + brightGreen: "#76C7A5" + brightYellow: "#F4BE68" + brightBlue: "#70AFFF" + brightMagenta: "#B7410E" + brightCyan: "#F7A072" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.8 + black: 0 + red: 35.2 + green: 62.3 + yellow: 71.5 + blue: 56.3 + magenta: 23.6 + cyan: 61.2 + white: 94.8 + brightBlack: 24.3 + brightRed: 35.2 + brightGreen: 62.3 + brightYellow: 71.5 + brightBlue: 56.3 + brightMagenta: 23.6 + brightCyan: 61.2 + brightWhite: 94.8 diff --git a/themes/cal-4700.yaml b/themes/cal-4700.yaml new file mode 100644 index 00000000..7e515d05 --- /dev/null +++ b/themes/cal-4700.yaml @@ -0,0 +1,49 @@ +name: "CAL-4700" +source: + marketplace_id: "TheOsmosianOrderofPlainEnglishProgrammers.cal-4700-theme" + version: "0.0.1" + installs: 197 + author: "The Osmosian Order of Plain English Programmers" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TheOsmosianOrderofPlainEnglishProgrammers.cal-4700-theme" +colors: + bg: "#DFDFDF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 87.2 + black: 87.2 + red: 55.2 + green: 30.4 + yellow: 39.1 + blue: 67.3 + magenta: 55.8 + cyan: 41.8 + white: 67.1 + brightBlack: 60 + brightRed: 55.2 + brightGreen: 22.1 + brightYellow: 22.1 + brightBlue: 67.3 + brightMagenta: 55.8 + brightCyan: 41.8 + brightWhite: 29.7 diff --git a/themes/calm-dark.yaml b/themes/calm-dark.yaml new file mode 100644 index 00000000..6e160021 --- /dev/null +++ b/themes/calm-dark.yaml @@ -0,0 +1,49 @@ +name: "Calm Dark" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#191F22" + fg: "#E6E2D9" + black: "#2F353B" + red: "#E8A06D" + green: "#8DC6AC" + yellow: "#DDB06F" + blue: "#7A90AE" + magenta: "#A48EB5" + cyan: "#85B9C8" + white: "#E3DDD2" + brightBlack: "#555B63" + brightRed: "#F3B081" + brightGreen: "#A9D9C2" + brightYellow: "#E8C89C" + brightBlue: "#90A4C4" + brightMagenta: "#C4B0CF" + brightCyan: "#B3DCE9" + brightWhite: "#F3EEE2" +meta: + mode: "dark" + accent: "yellow" + hue: 229 + contrast: + fg: 87.4 + black: 0 + red: 57.9 + green: 63.3 + yellow: 61.9 + blue: 39.9 + magenta: 43.9 + cyan: 58.2 + white: 84.5 + brightBlack: 16.4 + brightRed: 65.9 + brightGreen: 75.3 + brightYellow: 74.3 + brightBlue: 50.5 + brightMagenta: 61.6 + brightCyan: 79.4 + brightWhite: 95.1 diff --git a/themes/calm-days-sober-nights-day-no-bold-style.yaml b/themes/calm-days-sober-nights-day-no-bold-style.yaml new file mode 100644 index 00000000..90c861c1 --- /dev/null +++ b/themes/calm-days-sober-nights-day-no-bold-style.yaml @@ -0,0 +1,49 @@ +name: "Calm Days, Sober Nights - Day (no bold style)" +source: + marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" + version: "7.1.6" + installs: 6373 + author: "Giovani Cascaes" + repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" +colors: + bg: "#F0F4F7" + fg: "#6B7682" + black: "#000000" + red: "#EB6C81" + green: "#00B342" + yellow: "#EDC045" + blue: "#2EA0D1" + magenta: "#B375C7" + cyan: "#46ACBA" + white: "#C7D4E0" + brightBlack: "#94A2B0" + brightRed: "#F07186" + brightGreen: "#00B342" + brightYellow: "#F2C549" + brightBlue: "#36A6D6" + brightMagenta: "#B87ACC" + brightCyan: "#4CB2BF" + brightWhite: "#DDE7F0" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 65.2 + black: 99.1 + red: 49.2 + green: 46 + yellow: 23.8 + blue: 49 + magenta: 53.7 + cyan: 44.7 + white: 16.8 + brightBlack: 44 + brightRed: 46.9 + brightGreen: 46 + brightYellow: 21.1 + brightBlue: 46.1 + brightMagenta: 51.3 + brightCyan: 41.8 + brightWhite: 0 diff --git a/themes/calm-days-sober-nights-day-sky-no-bold-style.yaml b/themes/calm-days-sober-nights-day-sky-no-bold-style.yaml new file mode 100644 index 00000000..06bbc5b4 --- /dev/null +++ b/themes/calm-days-sober-nights-day-sky-no-bold-style.yaml @@ -0,0 +1,49 @@ +name: "Calm Days, Sober Nights - Day (Sky) (no bold style)" +source: + marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" + version: "7.1.6" + installs: 6373 + author: "Giovani Cascaes" + repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" +colors: + bg: "#FFFFFF" + fg: "#687082" + black: "#000000" + red: "#EB6C81" + green: "#00B342" + yellow: "#EDC045" + blue: "#2EA0D1" + magenta: "#B375C7" + cyan: "#46ACBA" + white: "#C5CDE0" + brightBlack: "#929BB0" + brightRed: "#F07186" + brightGreen: "#00B342" + brightYellow: "#F2C549" + brightBlue: "#36A6D6" + brightMagenta: "#B87ACC" + brightCyan: "#4CB2BF" + brightWhite: "#DAE1F0" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 74.4 + black: 106 + red: 56.1 + green: 53 + yellow: 30.8 + blue: 55.9 + magenta: 60.6 + cyan: 51.6 + white: 26.8 + brightBlack: 53.7 + brightRed: 53.8 + brightGreen: 53 + brightYellow: 28 + brightBlue: 53.1 + brightMagenta: 58.2 + brightCyan: 48.7 + brightWhite: 15.4 diff --git a/themes/calm-days-sober-nights-night-no-bold-style.yaml b/themes/calm-days-sober-nights-night-no-bold-style.yaml new file mode 100644 index 00000000..25d2d16e --- /dev/null +++ b/themes/calm-days-sober-nights-night-no-bold-style.yaml @@ -0,0 +1,49 @@ +name: "Calm Days, Sober Nights - Night (no bold style)" +source: + marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" + version: "7.1.6" + installs: 6373 + author: "Giovani Cascaes" + repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" +colors: + bg: "#232530" + fg: "#D3D6E8" + black: "#000000" + red: "#ED7480" + green: "#70CC92" + yellow: "#F2D988" + blue: "#6ED0FA" + magenta: "#EAB9FA" + cyan: "#90D7E0" + white: "#DFE3FA" + brightBlack: "#6A708C" + brightRed: "#F27985" + brightGreen: "#70CC92" + brightYellow: "#F7DD8D" + brightBlue: "#73D5FF" + brightMagenta: "#EFBFFF" + brightCyan: "#95DDE6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 277 + contrast: + fg: 79.2 + black: 0 + red: 44.9 + green: 62 + yellow: 81.4 + blue: 68.3 + magenta: 71.6 + cyan: 72.3 + white: 87.3 + brightBlack: 24.9 + brightRed: 47.4 + brightGreen: 62 + brightYellow: 84 + brightBlue: 71.1 + brightMagenta: 74.9 + brightCyan: 75.8 + brightWhite: 104.9 diff --git a/themes/calm-days-sober-nights-night-sky-no-bold-style.yaml b/themes/calm-days-sober-nights-night-sky-no-bold-style.yaml new file mode 100644 index 00000000..eb357905 --- /dev/null +++ b/themes/calm-days-sober-nights-night-sky-no-bold-style.yaml @@ -0,0 +1,49 @@ +name: "Calm Days, Sober Nights - Night (Sky) (no bold style)" +source: + marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" + version: "7.1.6" + installs: 6373 + author: "Giovani Cascaes" + repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" +colors: + bg: "#192030" + fg: "#D3DAE8" + black: "#000000" + red: "#ED7480" + green: "#70CC92" + yellow: "#F2D988" + blue: "#6ED0FA" + magenta: "#EAB9FA" + cyan: "#90D7E0" + white: "#D2DDFA" + brightBlack: "#63708C" + brightRed: "#F27985" + brightGreen: "#70CC92" + brightYellow: "#F7DD8D" + brightBlue: "#73D5FF" + brightMagenta: "#EFBFFF" + brightCyan: "#95DDE6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 81.7 + black: 0 + red: 45.8 + green: 62.8 + yellow: 82.2 + blue: 69.1 + magenta: 72.4 + cyan: 73.2 + white: 83.9 + brightBlack: 25.2 + brightRed: 48.2 + brightGreen: 62.8 + brightYellow: 84.8 + brightBlue: 72 + brightMagenta: 75.8 + brightCyan: 76.7 + brightWhite: 105.7 diff --git a/themes/calm-down-color-theme.yaml b/themes/calm-down-color-theme.yaml new file mode 100644 index 00000000..577a20a0 --- /dev/null +++ b/themes/calm-down-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Calm Down Color Theme" +source: + marketplace_id: "DanielEichwald.vscode-calm-down-theme" + version: "1.1.0" + installs: 220 + author: "Daniel Eichwald" + repo: "https://github.com/DE-Danloc/vscode-calm-down-theme/blob/master/README.md" + url: "https://marketplace.visualstudio.com/items?itemName=DanielEichwald.vscode-calm-down-theme" +colors: + bg: "#27272C" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 76.5 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.1 + magenta: 27.4 + cyan: 45.2 + white: 87.7 + brightBlack: 19.7 + brightRed: 36.2 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.7 + brightMagenta: 43 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/calm-light.yaml b/themes/calm-light.yaml new file mode 100644 index 00000000..f2cb0700 --- /dev/null +++ b/themes/calm-light.yaml @@ -0,0 +1,49 @@ +name: "Calm Light" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#F9F5E7" + fg: "#2F291F" + black: "#2A2219" + red: "#C87A55" + green: "#7CB099" + yellow: "#C39B56" + blue: "#4C4F63" + magenta: "#9D7694" + cyan: "#6EA2B5" + white: "#EFE5D4" + brightBlack: "#8B8073" + brightRed: "#DA8D68" + brightGreen: "#8BC0A7" + brightYellow: "#DAB478" + brightBlue: "#5F6580" + brightMagenta: "#B18CA9" + brightCyan: "#88B8CB" + brightWhite: "#F6F1E5" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 95.1 + black: 96.6 + red: 54 + green: 42.3 + yellow: 44.3 + blue: 81.9 + magenta: 59.9 + cyan: 47.8 + white: 0 + brightBlack: 60.1 + brightRed: 45 + brightGreen: 34.1 + brightYellow: 31.3 + brightBlue: 72.7 + brightMagenta: 49.5 + brightCyan: 36.2 + brightWhite: 0 diff --git a/themes/calm-ocean.yaml b/themes/calm-ocean.yaml new file mode 100644 index 00000000..73d713d1 --- /dev/null +++ b/themes/calm-ocean.yaml @@ -0,0 +1,49 @@ +name: "Calm Ocean" +source: + marketplace_id: "tlolkema.natural-indigo" + version: "0.0.3" + installs: 510 + author: "tlolkema" + repo: "https://github.com/tlolkema/natural-indigo.git#master" + url: "https://marketplace.visualstudio.com/items?itemName=tlolkema.natural-indigo" +colors: + bg: "#1C2026" + fg: "#F1FAEE" + black: "#2E3440" + red: "#BF616A" + green: "#A8DADC" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#4E9DCF" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A8DADC" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#4E9DCF" + brightCyan: "#A8DADC" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 258 + contrast: + fg: 100.7 + black: 0 + red: 31.9 + green: 76.5 + yellow: 75.3 + blue: 47.6 + magenta: 43.5 + cyan: 61.6 + white: 91.3 + brightBlack: 14.3 + brightRed: 31.9 + brightGreen: 76.5 + brightYellow: 75.3 + brightBlue: 47.6 + brightMagenta: 43.5 + brightCyan: 76.5 + brightWhite: 95.2 diff --git a/themes/calm-teal-colorblind-balance-clarity.yaml b/themes/calm-teal-colorblind-balance-clarity.yaml new file mode 100644 index 00000000..e916dcf2 --- /dev/null +++ b/themes/calm-teal-colorblind-balance-clarity.yaml @@ -0,0 +1,49 @@ +name: "Calm Teal Colorblind - Balance & Clarity" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#0D1A1A" + fg: "#E0F2F1" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 196 + contrast: + fg: 95.8 + black: 0 + red: 37.6 + green: 47.5 + yellow: 92.2 + blue: 42.9 + magenta: 32.5 + cyan: 56.4 + white: 96 + brightBlack: 9 + brightRed: 42.7 + brightGreen: 81.9 + brightYellow: 101.6 + brightBlue: 40.4 + brightMagenta: 41.3 + brightCyan: 91.1 + brightWhite: 106.8 diff --git a/themes/calm-teal-high-contrast-balance-clarity.yaml b/themes/calm-teal-high-contrast-balance-clarity.yaml new file mode 100644 index 00000000..c6cec3e9 --- /dev/null +++ b/themes/calm-teal-high-contrast-balance-clarity.yaml @@ -0,0 +1,49 @@ +name: "Calm Teal High Contrast - Balance & Clarity" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#808080" + brightRed: "#FF6B6B" + brightGreen: "#69FF69" + brightYellow: "#FFFF69" + brightBlue: "#6B6BFF" + brightMagenta: "#FF69FF" + brightCyan: "#69FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 34.8 + brightRed: 49.1 + brightGreen: 89.2 + brightYellow: 103.3 + brightBlue: 34.3 + brightMagenta: 55.4 + brightCyan: 94.1 + brightWhite: 107.9 diff --git a/themes/calm-teal-light-balance-clarity.yaml b/themes/calm-teal-light-balance-clarity.yaml new file mode 100644 index 00000000..0156c130 --- /dev/null +++ b/themes/calm-teal-light-balance-clarity.yaml @@ -0,0 +1,49 @@ +name: "Calm Teal Light - Balance & Clarity" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#F5FAFA" + fg: "#0D1A1A" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 100.9 + black: 95.9 + red: 59.3 + green: 49.7 + yellow: 0 + blue: 54.1 + magenta: 64.4 + cyan: 41 + white: 0 + brightBlack: 88.7 + brightRed: 54.3 + brightGreen: 16.8 + brightYellow: 0 + brightBlue: 56.6 + brightMagenta: 55.6 + brightCyan: 8.2 + brightWhite: 102.4 diff --git a/themes/calming-coding-dark-theme.yaml b/themes/calming-coding-dark-theme.yaml new file mode 100644 index 00000000..d60e9152 --- /dev/null +++ b/themes/calming-coding-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "calming-coding-dark-theme" +source: + marketplace_id: "CalmingCoding.calming-coding" + version: "1.0.2" + installs: 58 + author: "Calming Coding" + repo: "https://github.com/tianrodez/calming-coding" + url: "https://marketplace.visualstudio.com/items?itemName=CalmingCoding.calming-coding" +colors: + bg: "#282523" + fg: "#D7C8B6" + black: "#211F1D" + red: "#D95B5B" + green: "#98C379" + yellow: "#D17D3B" + blue: "#81A1C1" + magenta: "#B58DAE" + cyan: "#5FADAD" + white: "#A1988E" + brightBlack: "#615B51" + brightRed: "#E06C75" + brightGreen: "#A4D489" + brightYellow: "#E08B41" + brightBlue: "#88C0D0" + brightMagenta: "#C678DD" + brightCyan: "#88C0D0" + brightWhite: "#D7C8B6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 71.6 + black: 0 + red: 34.3 + green: 60.3 + yellow: 40.7 + blue: 46.6 + magenta: 44.3 + cyan: 48.2 + white: 44.3 + brightBlack: 15.8 + brightRed: 40.1 + brightGreen: 69.5 + brightYellow: 47.7 + brightBlue: 60.7 + brightMagenta: 43.1 + brightCyan: 60.7 + brightWhite: 71.6 diff --git a/themes/calming-theme.yaml b/themes/calming-theme.yaml new file mode 100644 index 00000000..0ef77276 --- /dev/null +++ b/themes/calming-theme.yaml @@ -0,0 +1,49 @@ +name: "Calming Theme" +source: + marketplace_id: "diff001a.calming-theme" + version: "1.0.1" + installs: 4034 + author: "diff001a" + repo: "https://github.com/diff001a/CalmingTheme" + url: "https://marketplace.visualstudio.com/items?itemName=diff001a.calming-theme" +colors: + bg: "#252A34" + fg: "#CFD3DC" + black: "#282936" + red: "#FC8A9F" + green: "#F7C280" + yellow: "#F4CE9F" + blue: "#85A2CD" + magenta: "#F99FB0" + cyan: "#9EB0CB" + white: "#CFD3DC" + brightBlack: "#626483" + brightRed: "#F87089" + brightGreen: "#F4CE9F" + brightYellow: "#F7C280" + brightBlue: "#85A2CD" + brightMagenta: "#F4C8CD" + brightCyan: "#9EB0CB" + brightWhite: "#CFD3DC" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 76 + black: 0 + red: 54 + green: 71.6 + yellow: 76.8 + blue: 47.2 + magenta: 60.6 + cyan: 55 + white: 76 + brightBlack: 19.4 + brightRed: 45.7 + brightGreen: 76.8 + brightYellow: 71.6 + brightBlue: 47.2 + brightMagenta: 76 + brightCyan: 55 + brightWhite: 76 diff --git a/themes/calmppuccin-frappe.yaml b/themes/calmppuccin-frappe.yaml new file mode 100644 index 00000000..1eaf671a --- /dev/null +++ b/themes/calmppuccin-frappe.yaml @@ -0,0 +1,49 @@ +name: "Calmppuccin Frappe" +source: + marketplace_id: "kenan-salar.calmppuccin-vscode" + version: "1.9.9" + installs: 6402 + author: "Kenan Salar" + repo: "https://github.com/KenanSalar/calmppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" +colors: + bg: "#2F3344" + fg: "#C6D0F5" + black: "#51576D" + red: "#DD7D9A" + green: "#A6D189" + yellow: "#E5C890" + blue: "#79A0DF" + magenta: "#F4B8E4" + cyan: "#89D3CA" + white: "#A5ADCE" + brightBlack: "#626880" + brightRed: "#E67172" + brightGreen: "#8EC772" + brightYellow: "#D9BA73" + brightBlue: "#7B9EF0" + brightMagenta: "#F2A4DB" + brightCyan: "#5ABFB5" + brightWhite: "#B5BFE2" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 72.6 + black: 11.1 + red: 42.1 + green: 65.3 + yellow: 69.3 + blue: 44.2 + magenta: 68.6 + cyan: 65.9 + white: 52.4 + brightBlack: 18.2 + brightRed: 39.4 + brightGreen: 58 + brightYellow: 61.1 + brightBlue: 44.7 + brightMagenta: 60.7 + brightCyan: 53.1 + brightWhite: 62.5 diff --git a/themes/calmppuccin-latte.yaml b/themes/calmppuccin-latte.yaml new file mode 100644 index 00000000..37ec861c --- /dev/null +++ b/themes/calmppuccin-latte.yaml @@ -0,0 +1,49 @@ +name: "Calmppuccin Latte" +source: + marketplace_id: "kenan-salar.calmppuccin-vscode" + version: "1.9.9" + installs: 6402 + author: "Kenan Salar" + repo: "https://github.com/KenanSalar/calmppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" +colors: + bg: "#E9EAEE" + fg: "#474A63" + black: "#5C5F77" + red: "#D20F39" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1C5EE4" + magenta: "#EA76CB" + cyan: "#179299" + white: "#5E617E" + brightBlack: "#6C6F85" + brightRed: "#DE293E" + brightGreen: "#49AF3D" + brightYellow: "#EEA02D" + brightBlue: "#456EFF" + brightMagenta: "#FE85D8" + brightCyan: "#2D9FA8" + brightWhite: "#BCC0CC" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 77.3 + black: 68.8 + red: 62.3 + green: 48.1 + yellow: 38.3 + blue: 64.6 + magenta: 38.6 + cyan: 52.2 + white: 67.7 + brightBlack: 61.8 + brightRed: 58.3 + brightGreen: 41.2 + brightYellow: 29.9 + brightBlue: 56.5 + brightMagenta: 30.4 + brightCyan: 46 + brightWhite: 21.6 diff --git a/themes/calmppuccin-macchiato.yaml b/themes/calmppuccin-macchiato.yaml new file mode 100644 index 00000000..56048d32 --- /dev/null +++ b/themes/calmppuccin-macchiato.yaml @@ -0,0 +1,49 @@ +name: "Calmppuccin Macchiato" +source: + marketplace_id: "kenan-salar.calmppuccin-vscode" + version: "1.9.9" + installs: 6402 + author: "Kenan Salar" + repo: "https://github.com/KenanSalar/calmppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" +colors: + bg: "#24273A" + fg: "#C2CAE9" + black: "#494D64" + red: "#D87C97" + green: "#A6DA95" + yellow: "#EED49F" + blue: "#799FDB" + magenta: "#F5BDE6" + cyan: "#85CAC2" + white: "#A5ADCB" + brightBlack: "#5B6078" + brightRed: "#EC7486" + brightGreen: "#8CCF7F" + brightYellow: "#E1C682" + brightBlue: "#78A1F6" + brightMagenta: "#F2A9DD" + brightCyan: "#63CBC0" + brightWhite: "#B8C0E0" +meta: + mode: "dark" + accent: "red" + hue: 277 + contrast: + fg: 71.5 + black: 10 + red: 43.3 + green: 72.3 + yellow: 78.7 + blue: 46.2 + magenta: 73.3 + cyan: 63.7 + white: 54.8 + brightBlack: 17.5 + brightRed: 44.4 + brightGreen: 64.3 + brightYellow: 70.1 + brightBlue: 48.6 + brightMagenta: 65 + brightCyan: 62 + brightWhite: 65.7 diff --git a/themes/calmppuccin-mocha.yaml b/themes/calmppuccin-mocha.yaml new file mode 100644 index 00000000..a035a749 --- /dev/null +++ b/themes/calmppuccin-mocha.yaml @@ -0,0 +1,49 @@ +name: "Calmppuccin Mocha" +source: + marketplace_id: "kenan-salar.calmppuccin-vscode" + version: "1.9.9" + installs: 6402 + author: "Kenan Salar" + repo: "https://github.com/KenanSalar/calmppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" +colors: + bg: "#1D1D2C" + fg: "#AEB6CF" + black: "#45475A" + red: "#D47B95" + green: "#95CE8F" + yellow: "#D6C08F" + blue: "#789CD6" + magenta: "#CFA0C2" + cyan: "#81C4BC" + white: "#A6ADC8" + brightBlack: "#585B70" + brightRed: "#E27894" + brightGreen: "#89D88B" + brightYellow: "#E4CC8C" + brightBlue: "#6796E2" + brightMagenta: "#E6A3D1" + brightCyan: "#6BD7CA" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 61.2 + black: 9.4 + red: 43.8 + green: 66.6 + yellow: 67.9 + blue: 46.3 + magenta: 56.6 + cyan: 62.1 + white: 56.4 + brightBlack: 17 + brightRed: 45.6 + brightGreen: 70.2 + brightYellow: 74.9 + brightBlue: 43.6 + brightMagenta: 62 + brightCyan: 70 + brightWhite: 68.2 diff --git a/themes/calmppuccin-nitro-cold-brew.yaml b/themes/calmppuccin-nitro-cold-brew.yaml new file mode 100644 index 00000000..54819ad6 --- /dev/null +++ b/themes/calmppuccin-nitro-cold-brew.yaml @@ -0,0 +1,49 @@ +name: "Calmppuccin Nitro-cold-brew" +source: + marketplace_id: "kenan-salar.calmppuccin-vscode" + version: "1.9.9" + installs: 6402 + author: "Kenan Salar" + repo: "https://github.com/KenanSalar/calmppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" +colors: + bg: "#181825" + fg: "#A7AEC5" + black: "#404253" + red: "#D17A94" + green: "#91C78B" + yellow: "#CCB789" + blue: "#7698CF" + magenta: "#C298B6" + cyan: "#7FBEB7" + white: "#A2A9C2" + brightBlack: "#4F5264" + brightRed: "#DD7792" + brightGreen: "#86D189" + brightYellow: "#DAC488" + brightBlue: "#6791D6" + brightMagenta: "#DDA0CA" + brightCyan: "#6ACFC4" + brightWhite: "#BAC1DB" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 57.4 + black: 8.2 + red: 43.6 + green: 63.6 + yellow: 63.4 + blue: 44.8 + magenta: 52 + cyan: 59.7 + white: 54.7 + brightBlack: 14 + brightRed: 44.9 + brightGreen: 67.3 + brightYellow: 70.6 + brightBlue: 41.6 + brightMagenta: 59.8 + brightCyan: 66.6 + brightWhite: 68.3 diff --git a/themes/calmppuccin-oledppuccin.yaml b/themes/calmppuccin-oledppuccin.yaml new file mode 100644 index 00000000..c8750a94 --- /dev/null +++ b/themes/calmppuccin-oledppuccin.yaml @@ -0,0 +1,49 @@ +name: "Calmppuccin Oledppuccin" +source: + marketplace_id: "kenan-salar.calmppuccin-vscode" + version: "1.9.9" + installs: 6402 + author: "Kenan Salar" + repo: "https://github.com/KenanSalar/calmppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" +colors: + bg: "#0B0B11" + fg: "#8C92A7" + black: "#333542" + red: "#BD7087" + green: "#85B480" + yellow: "#BBA981" + blue: "#708FC0" + magenta: "#AD8BA4" + cyan: "#78AFA9" + white: "#959BAF" + brightBlack: "#31333F" + brightRed: "#C5738B" + brightGreen: "#92C78C" + brightYellow: "#C9B487" + brightBlue: "#7598CC" + brightMagenta: "#BD94B2" + brightCyan: "#81C0B9" + brightWhite: "#A1A9C2" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 43.6 + black: 0 + red: 38.1 + green: 55.1 + yellow: 56.4 + blue: 41.3 + magenta: 44.9 + cyan: 53.3 + white: 48.2 + brightBlack: 0 + brightRed: 40.4 + brightGreen: 64.8 + brightYellow: 62.8 + brightBlue: 45.6 + brightMagenta: 50.8 + brightCyan: 61.9 + brightWhite: 55.7 diff --git a/themes/calomnie.yaml b/themes/calomnie.yaml new file mode 100644 index 00000000..d73ab7bb --- /dev/null +++ b/themes/calomnie.yaml @@ -0,0 +1,49 @@ +name: "Calomnie" +source: + marketplace_id: "404mat.calomnie" + version: "1.1.0" + installs: 63 + author: "404mat" + repo: "https://github.com/404mat/calomnie" + url: "https://marketplace.visualstudio.com/items?itemName=404mat.calomnie" +colors: + bg: "#0F1114" + fg: "#A6ACCD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 57.6 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/campbell.yaml b/themes/campbell.yaml new file mode 100644 index 00000000..1a90f802 --- /dev/null +++ b/themes/campbell.yaml @@ -0,0 +1,49 @@ +name: "campbell" +source: + marketplace_id: "stephenedavis17.campbell" + version: "0.0.6" + installs: 399 + author: "stephenedavis17" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=stephenedavis17.campbell" +colors: + bg: "#0C0C0C" + fg: "#CCCCCC" + black: "#0C0C0C" + red: "#C50F1F" + green: "#13A10E" + yellow: "#C19C00" + blue: "#0037DA" + magenta: "#881798" + cyan: "#3A96DD" + white: "#E5E5E5" + brightBlack: "#767676" + brightRed: "#E74856" + brightGreen: "#16C60C" + brightYellow: "#F9F1A5" + brightBlue: "#3B78FF" + brightMagenta: "#B4009E" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 75.5 + black: 0 + red: 23.6 + green: 40.4 + yellow: 50.9 + blue: 15.1 + magenta: 15.6 + cyan: 42.8 + white: 90.8 + brightBlack: 29.9 + brightRed: 36.7 + brightGreen: 57.3 + brightYellow: 96.8 + brightBlue: 35.1 + brightMagenta: 23.5 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/camula-moon.yaml b/themes/camula-moon.yaml new file mode 100644 index 00000000..e76fb47f --- /dev/null +++ b/themes/camula-moon.yaml @@ -0,0 +1,49 @@ +name: "Camula Moon" +source: + marketplace_id: "Vesko.theme-camula" + version: "1.0.0" + installs: 52 + author: "Vesko" + repo: "https://github.com/veselink1/camula-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vesko.theme-camula" +colors: + bg: "#292D3E" + fg: "#D0D0D0" + black: "#262626" + red: "#EE6666" + green: "#C0DA9B" + yellow: "#F0C77A" + blue: "#8EAEF2" + magenta: "#C49FDD" + cyan: "#95D8F3" + white: "#D0D0D0" + brightBlack: "#7B7F8B" + brightRed: "#F07C7C" + brightGreen: "#78F09A" + brightYellow: "#F6F6AE" + brightBlue: "#D6B4F7" + brightMagenta: "#F49DDA" + brightCyan: "#ADF6F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 73.5 + black: 0 + red: 39.6 + green: 74.1 + yellow: 71.5 + blue: 54 + magenta: 53.3 + cyan: 72.6 + white: 73.5 + brightBlack: 29.7 + brightRed: 45.9 + brightGreen: 78.6 + brightYellow: 94.6 + brightBlue: 65 + brightMagenta: 60.1 + brightCyan: 89 + brightWhite: 103.3 diff --git a/themes/camula-sun.yaml b/themes/camula-sun.yaml new file mode 100644 index 00000000..488c740c --- /dev/null +++ b/themes/camula-sun.yaml @@ -0,0 +1,49 @@ +name: "Camula Sun" +source: + marketplace_id: "Vesko.theme-camula" + version: "1.0.0" + installs: 52 + author: "Vesko" + repo: "https://github.com/veselink1/camula-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vesko.theme-camula" +colors: + bg: "#2D2A2E" + fg: "#FBFBFB" + black: "#262626" + red: "#EE6666" + green: "#A9CB87" + yellow: "#F0D175" + blue: "#B2A8E7" + magenta: "#EF7190" + cyan: "#88D0D8" + white: "#FBFBFB" + brightBlack: "#717171" + brightRed: "#F07C7C" + brightGreen: "#78F09A" + brightYellow: "#F6F6AE" + brightBlue: "#D6B4F7" + brightMagenta: "#F49DDA" + brightCyan: "#ADF6F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 101.2 + black: 0 + red: 40.2 + green: 64.8 + yellow: 76.2 + blue: 55.4 + magenta: 44.1 + cyan: 67.1 + white: 101.2 + brightBlack: 23.8 + brightRed: 46.5 + brightGreen: 79.2 + brightYellow: 95.2 + brightBlue: 65.5 + brightMagenta: 60.7 + brightCyan: 89.6 + brightWhite: 103.9 diff --git a/themes/camula.yaml b/themes/camula.yaml new file mode 100644 index 00000000..3db4f53a --- /dev/null +++ b/themes/camula.yaml @@ -0,0 +1,49 @@ +name: "Camula" +source: + marketplace_id: "Vesko.theme-camula" + version: "1.0.0" + installs: 52 + author: "Vesko" + repo: "https://github.com/veselink1/camula-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vesko.theme-camula" +colors: + bg: "#22212C" + fg: "#F6F6F4" + black: "#262626" + red: "#EE6666" + green: "#95F28D" + yellow: "#F2F28D" + blue: "#9D8DF2" + magenta: "#F28DBF" + cyan: "#8DF2E1" + white: "#F6F6F4" + brightBlack: "#7B7F8B" + brightRed: "#F07C7C" + brightGreen: "#78F09A" + brightYellow: "#F6F6AE" + brightBlue: "#D6B4F7" + brightMagenta: "#F49DDA" + brightCyan: "#ADF6F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 289 + contrast: + fg: 99.4 + black: 0 + red: 41.8 + green: 83.4 + yellow: 93.4 + blue: 45.8 + magenta: 55.6 + cyan: 85.7 + white: 99.4 + brightBlack: 31.9 + brightRed: 48 + brightGreen: 80.7 + brightYellow: 96.7 + brightBlue: 67.1 + brightMagenta: 62.3 + brightCyan: 91.2 + brightWhite: 105.4 diff --git a/themes/candle-theme.yaml b/themes/candle-theme.yaml new file mode 100644 index 00000000..b19c45a5 --- /dev/null +++ b/themes/candle-theme.yaml @@ -0,0 +1,49 @@ +name: "Candle Theme" +source: + marketplace_id: "creasty.vscode-candle-theme" + version: "0.0.3" + installs: 1855 + author: "Creasty" + repo: "https://github.com/creasty/vscode-candle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=creasty.vscode-candle-theme" +colors: + bg: "#1B1B1B" + fg: "#C0C0C0" + black: "#0F0F0F" + red: "#A57572" + green: "#A6B083" + yellow: "#D0B888" + blue: "#8CA2B6" + magenta: "#A186A3" + cyan: "#9ABBB6" + white: "#E7E7E7" + brightBlack: "#575757" + brightRed: "#A57572" + brightGreen: "#A6B083" + brightYellow: "#D0B888" + brightBlue: "#8CA2B6" + brightMagenta: "#A186A3" + brightCyan: "#9ABBB6" + brightWhite: "#E7E7E7" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 67.2 + black: 0 + red: 33.9 + green: 55.4 + yellow: 64.1 + blue: 49 + magenta: 40.4 + cyan: 60.5 + white: 90.8 + brightBlack: 15.4 + brightRed: 33.9 + brightGreen: 55.4 + brightYellow: 64.1 + brightBlue: 49 + brightMagenta: 40.4 + brightCyan: 60.5 + brightWhite: 90.8 diff --git a/themes/candy-blue.yaml b/themes/candy-blue.yaml new file mode 100644 index 00000000..18fda681 --- /dev/null +++ b/themes/candy-blue.yaml @@ -0,0 +1,49 @@ +name: "Candy Blue" +source: + marketplace_id: "xynny.candy-blue" + version: "1.0.0" + installs: 336 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.candy-blue" +colors: + bg: "#10283F" + fg: "#EEFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 249 + contrast: + fg: 102.3 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.1 + magenta: 27.5 + cyan: 45.3 + white: 87.7 + brightBlack: 19.7 + brightRed: 36.3 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.7 + brightMagenta: 43.1 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/candy-pine.yaml b/themes/candy-pine.yaml new file mode 100644 index 00000000..c20acc1d --- /dev/null +++ b/themes/candy-pine.yaml @@ -0,0 +1,49 @@ +name: "Candy Pine" +source: + marketplace_id: "yuschick.candy-pine" + version: "0.2.5" + installs: 1594 + author: "Yuschick" + repo: "https://github.com/candy-pine/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=yuschick.candy-pine" +colors: + bg: "#161421" + fg: "#E4E1F0" + black: "#272336" + red: "#F962A0" + green: "#4D94A8" + yellow: "#F2B56B" + blue: "#88C6C5" + magenta: "#F99FB5" + cyan: "#F2B56B" + white: "#E4E1F0" + brightBlack: "#9B97B1" + brightRed: "#F962A0" + brightGreen: "#4D94A8" + brightYellow: "#F2B56B" + brightBlue: "#88C6C5" + brightMagenta: "#F99FB5" + brightCyan: "#F2B56B" + brightWhite: "#E4E1F0" +meta: + mode: "dark" + accent: "red" + hue: 291 + contrast: + fg: 88.7 + black: 0 + red: 46.6 + green: 39.1 + yellow: 68.1 + blue: 64.9 + magenta: 63.7 + cyan: 68.1 + white: 88.7 + brightBlack: 46.8 + brightRed: 46.6 + brightGreen: 39.1 + brightYellow: 68.1 + brightBlue: 64.9 + brightMagenta: 63.7 + brightCyan: 68.1 + brightWhite: 88.7 diff --git a/themes/candy-purple.yaml b/themes/candy-purple.yaml new file mode 100644 index 00000000..e378c520 --- /dev/null +++ b/themes/candy-purple.yaml @@ -0,0 +1,49 @@ +name: "Candy Purple" +source: + marketplace_id: "xynny.candy-purple" + version: "1.0.0" + installs: 475 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.candy-purple" +colors: + bg: "#16111B" + fg: "#6E9BBC" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 307 + contrast: + fg: 44.9 + black: 0 + red: 27.1 + green: 53.3 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.4 diff --git a/themes/candy-red.yaml b/themes/candy-red.yaml new file mode 100644 index 00000000..9310f0d3 --- /dev/null +++ b/themes/candy-red.yaml @@ -0,0 +1,49 @@ +name: "Candy Red" +source: + marketplace_id: "xynny.candy-red" + version: "1.0.0" + installs: 3492 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.candy-red" +colors: + bg: "#130B0D" + fg: "#FBFBFB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0194EC" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 2 + contrast: + fg: 104.9 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 42.3 + magenta: 30.5 + cyan: 48.3 + white: 90.7 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/candy-shop-eclipse.yaml b/themes/candy-shop-eclipse.yaml new file mode 100644 index 00000000..67720f05 --- /dev/null +++ b/themes/candy-shop-eclipse.yaml @@ -0,0 +1,49 @@ +name: "Candy-Shop-Eclipse" +source: + marketplace_id: "ErfanFathalizadeh.Candy-Shop-Eclipse" + version: "2.1.0" + installs: 1099 + author: "Erfan Fathalizadeh" + repo: "https://github.com/ErfanFathalizadeh/VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ErfanFathalizadeh.Candy-Shop-Eclipse" +colors: + bg: "#303633" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.6 + black: 0 + red: 21.4 + green: 47.7 + yellow: 80.3 + blue: 22.1 + magenta: 24.5 + cyan: 42.3 + white: 74.2 + brightBlack: 16.7 + brightRed: 33.3 + brightGreen: 58.2 + brightYellow: 90.3 + brightBlue: 34.7 + brightMagenta: 40.1 + brightCyan: 50.1 + brightWhite: 84.7 diff --git a/themes/canonic-theme.yaml b/themes/canonic-theme.yaml new file mode 100644 index 00000000..31c60066 --- /dev/null +++ b/themes/canonic-theme.yaml @@ -0,0 +1,49 @@ +name: "Canonic Theme" +source: + marketplace_id: "lucodifier.canonic-theme" + version: "1.2.1" + installs: 84 + author: "lucodifier" + repo: "https://github.com/lucodifier/canonic-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucodifier.canonic-theme" +colors: + bg: "#1E1E1E" + fg: "#FFFFFF" + black: "#2E3436" + red: "#CC0000" + green: "#4E9A06" + yellow: "#C4A000" + blue: "#3465A4" + magenta: "#75507B" + cyan: "#06989A" + white: "#D3D7CF" + brightBlack: "#555753" + brightRed: "#EF2929" + brightGreen: "#8AE234" + brightYellow: "#FCE94F" + brightBlue: "#729FCF" + brightMagenta: "#AD7FA8" + brightCyan: "#34E2E2" + brightWhite: "#EEEEEC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 106 + black: 0 + red: 23.4 + green: 37.3 + yellow: 51.2 + blue: 20.6 + magenta: 17.6 + cyan: 37.6 + white: 79.6 + brightBlack: 14.8 + brightRed: 33 + brightGreen: 73.9 + brightYellow: 90.3 + brightBlue: 46.6 + brightMagenta: 39.7 + brightCyan: 74.6 + brightWhite: 94.8 diff --git a/themes/cape-town-nights.yaml b/themes/cape-town-nights.yaml new file mode 100644 index 00000000..c53d1d3d --- /dev/null +++ b/themes/cape-town-nights.yaml @@ -0,0 +1,49 @@ +name: "Cape Town Nights" +source: + marketplace_id: "WalterHahn.cape-town-nights" + version: "1.0.1" + installs: 282 + author: "Walter Hahn" + repo: "https://github.com/WalterHahn/cape-town-nights" + url: "https://marketplace.visualstudio.com/items?itemName=WalterHahn.cape-town-nights" +colors: + bg: "#0E1D1F" + fg: "#EDECEE" + black: "#0E1D1F" + red: "#00D8EE" + green: "#4DF197" + yellow: "#F0E600" + blue: "#F8B5F0" + magenta: "#FF5E57" + cyan: "#00CCF2" + white: "#CDCED0" + brightBlack: "#2E3B3D" + brightRed: "#FD53BF" + brightGreen: "#00CCF2" + brightYellow: "#F0E600" + brightBlue: "#F8B5F0" + brightMagenta: "#FF5E57" + brightCyan: "#00CCF2" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "red" + hue: 207 + contrast: + fg: 94.3 + black: 0 + red: 70.4 + green: 80.3 + yellow: 87.2 + blue: 73.4 + magenta: 44.6 + cyan: 65 + white: 75.4 + brightBlack: 0 + brightRed: 45.7 + brightGreen: 65 + brightYellow: 87.2 + brightBlue: 73.4 + brightMagenta: 44.6 + brightCyan: 65 + brightWhite: 94.3 diff --git a/themes/capitola.yaml b/themes/capitola.yaml new file mode 100644 index 00000000..4a17beee --- /dev/null +++ b/themes/capitola.yaml @@ -0,0 +1,49 @@ +name: "Capitola" +source: + marketplace_id: "vitornovictor.capitola" + version: "1.0.2" + installs: 693 + author: "Vitor Nunes" + repo: "https://github.com/vitornovictor/capitola" + url: "https://marketplace.visualstudio.com/items?itemName=vitornovictor.capitola" +colors: + bg: "#E4E4E4" + fg: "#000000" + black: "#000000" + red: "#8B0000" + green: "#00AF00" + yellow: "#D78700" + blue: "#0000FF" + magenta: "#8B008B" + cyan: "#00AF87" + white: "#949494" + brightBlack: "#444444" + brightRed: "#CD3131" + brightGreen: "#00D700" + brightYellow: "#D7AF00" + brightBlue: "#005FFF" + brightMagenta: "#BC05BC" + brightCyan: "#00D7AF" + brightWhite: "#A8A8A8" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 90.1 + black: 90.1 + red: 74.8 + green: 39.1 + yellow: 38.4 + blue: 69.9 + magenta: 71.1 + cyan: 37.4 + white: 41.2 + brightBlack: 76.7 + brightRed: 58.1 + brightGreen: 20.8 + brightYellow: 24.8 + brightBlue: 58.4 + brightMagenta: 58.6 + brightCyan: 18.2 + brightWhite: 31 diff --git a/themes/capy-ui.yaml b/themes/capy-ui.yaml new file mode 100644 index 00000000..34d51b8b --- /dev/null +++ b/themes/capy-ui.yaml @@ -0,0 +1,49 @@ +name: "Capy UI" +source: + marketplace_id: "PatrickBoyd.capy-ui-theme" + version: "1.0.3" + installs: 30 + author: "Patrick Boyd" + repo: "https://github.com/yourusername/capy-ui-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PatrickBoyd.capy-ui-theme" +colors: + bg: "#1C1D21" + fg: "#F7F9F9" + black: "#1C1D21" + red: "#E11D1D" + green: "#00BA7C" + yellow: "#BDBEC1" + blue: "#1E80C7" + magenta: "#4F5B6F" + cyan: "#1E80C7" + white: "#F7F9F9" + brightBlack: "#36383F" + brightRed: "#E11D1D" + brightGreen: "#00BA7C" + brightYellow: "#BDBEC1" + brightBlue: "#8BB4D8" + brightMagenta: "#A0B0C0" + brightCyan: "#8BB4D8" + brightWhite: "#F7F9F9" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 101.9 + black: 0 + red: 29 + green: 51.4 + yellow: 65.7 + blue: 31.2 + magenta: 16.5 + cyan: 31.2 + white: 101.9 + brightBlack: 0 + brightRed: 29 + brightGreen: 51.4 + brightYellow: 65.7 + brightBlue: 57.6 + brightMagenta: 56.7 + brightCyan: 57.6 + brightWhite: 101.9 diff --git a/themes/caramel-fork.yaml b/themes/caramel-fork.yaml new file mode 100644 index 00000000..73f59c3e --- /dev/null +++ b/themes/caramel-fork.yaml @@ -0,0 +1,49 @@ +name: "Caramel - Fork" +source: + marketplace_id: "xynny.sweetcaramel" + version: "0.0.1" + installs: 331 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.sweetcaramel" +colors: + bg: "#1B1B1B" + fg: "#CDCDCD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 74.8 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/carbon-candy-anthracite.yaml b/themes/carbon-candy-anthracite.yaml new file mode 100644 index 00000000..db79b2d9 --- /dev/null +++ b/themes/carbon-candy-anthracite.yaml @@ -0,0 +1,49 @@ +name: "carbon-candy-anthracite" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 835 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" +colors: + bg: "#212121" + fg: "#CCCCCC" + black: "#262626" + red: "#EE5396" + green: "#42BE65" + yellow: "#FDDC68" + blue: "#78A9FF" + magenta: "#BE95FF" + cyan: "#08BDBA" + white: "#F2F4F8" + brightBlack: "#525252" + brightRed: "#FF7EB6" + brightGreen: "#44E070" + brightYellow: "#FDE593" + brightBlue: "#33B1FF" + brightMagenta: "#FF7EB6" + brightCyan: "#3DDBD9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 73.4 + black: 0 + red: 39.7 + green: 53.1 + yellow: 84.5 + blue: 53.5 + magenta: 53.6 + cyan: 54.4 + white: 98.3 + brightBlack: 12.7 + brightRed: 53.8 + brightGreen: 69.7 + brightYellow: 89.4 + brightBlue: 53.6 + brightMagenta: 53.8 + brightCyan: 70.5 + brightWhite: 105.6 diff --git a/themes/carbon-candy-aurora-thin-border.yaml b/themes/carbon-candy-aurora-thin-border.yaml new file mode 100644 index 00000000..e1326656 --- /dev/null +++ b/themes/carbon-candy-aurora-thin-border.yaml @@ -0,0 +1,49 @@ +name: "carbon-candy-aurora (thin-border)" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 835 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" +colors: + bg: "#1A1A1A" + fg: "#E8E8E8" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#5A5A5A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.6 + black: 0 + red: 46.3 + green: 83.9 + yellow: 78.6 + blue: 55.6 + magenta: 53.4 + cyan: 77.9 + white: 106.5 + brightBlack: 16.7 + brightRed: 46.3 + brightGreen: 83.9 + brightYellow: 78.6 + brightBlue: 55.6 + brightMagenta: 53.4 + brightCyan: 77.9 + brightWhite: 106.5 diff --git a/themes/carbon-candy-carbon-thin-border.yaml b/themes/carbon-candy-carbon-thin-border.yaml new file mode 100644 index 00000000..79af6926 --- /dev/null +++ b/themes/carbon-candy-carbon-thin-border.yaml @@ -0,0 +1,49 @@ +name: "carbon-candy-carbon (thin-border)" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 835 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" +colors: + bg: "#1A1A1A" + fg: "#D4D4D4" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#424242" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.2 + black: 0 + red: 46.3 + green: 83.9 + yellow: 78.6 + blue: 55.6 + magenta: 53.4 + cyan: 77.9 + white: 106.5 + brightBlack: 7.8 + brightRed: 46.3 + brightGreen: 83.9 + brightYellow: 78.6 + brightBlue: 55.6 + brightMagenta: 53.4 + brightCyan: 77.9 + brightWhite: 106.5 diff --git a/themes/carbon-candy-dark-thin-border.yaml b/themes/carbon-candy-dark-thin-border.yaml new file mode 100644 index 00000000..67fb5136 --- /dev/null +++ b/themes/carbon-candy-dark-thin-border.yaml @@ -0,0 +1,49 @@ +name: "carbon-candy-dark (thin-border)" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 835 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" +colors: + bg: "#161616" + fg: "#CCCCCC" + black: "#262626" + red: "#EE5396" + green: "#42BE65" + yellow: "#FDDC68" + blue: "#78A9FF" + magenta: "#BE95FF" + cyan: "#08BDBA" + white: "#F2F4F8" + brightBlack: "#525252" + brightRed: "#FF7EB6" + brightGreen: "#44E070" + brightYellow: "#FDE593" + brightBlue: "#33B1FF" + brightMagenta: "#FF7EB6" + brightCyan: "#3DDBD9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 74.8 + black: 0 + red: 41.1 + green: 54.4 + yellow: 85.9 + blue: 54.9 + magenta: 54.9 + cyan: 55.8 + white: 99.6 + brightBlack: 14 + brightRed: 55.2 + brightGreen: 71 + brightYellow: 90.7 + brightBlue: 55 + brightMagenta: 55.2 + brightCyan: 71.9 + brightWhite: 107 diff --git a/themes/carbon-candy-obsidian-thin-border.yaml b/themes/carbon-candy-obsidian-thin-border.yaml new file mode 100644 index 00000000..a197836c --- /dev/null +++ b/themes/carbon-candy-obsidian-thin-border.yaml @@ -0,0 +1,49 @@ +name: "carbon-candy-obsidian (thin-border)" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 835 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" +colors: + bg: "#0F0F0F" + fg: "#D8D8D8" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#363636" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 82.6 + black: 0 + red: 47.2 + green: 84.8 + yellow: 79.6 + blue: 56.6 + magenta: 54.4 + cyan: 78.9 + white: 107.5 + brightBlack: 0 + brightRed: 47.2 + brightGreen: 84.8 + brightYellow: 79.6 + brightBlue: 56.6 + brightMagenta: 54.4 + brightCyan: 78.9 + brightWhite: 107.5 diff --git a/themes/carbon-candy-palenight.yaml b/themes/carbon-candy-palenight.yaml new file mode 100644 index 00000000..9a8f906b --- /dev/null +++ b/themes/carbon-candy-palenight.yaml @@ -0,0 +1,49 @@ +name: "carbon-candy-palenight" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 835 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" +colors: + bg: "#292D3E" + fg: "#EEFFFF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676767" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 101 + black: 0 + red: 43 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 18.9 + brightRed: 43 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/carbon-code-amber-dark.yaml b/themes/carbon-code-amber-dark.yaml new file mode 100644 index 00000000..648215a8 --- /dev/null +++ b/themes/carbon-code-amber-dark.yaml @@ -0,0 +1,49 @@ +name: "Carbon Code Amber Dark" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 903 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" +colors: + bg: "#100E08" + fg: "#E6E6E6" + black: "#000000" + red: "#EF4444" + green: "#22C55E" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 92 + contrast: + fg: 91.3 + black: 0 + red: 37.5 + green: 57.5 + yellow: 60.1 + blue: 37.4 + magenta: 35.1 + cyan: 54.6 + white: 107.6 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 57.5 + brightYellow: 60.1 + brightBlue: 37.4 + brightMagenta: 35.1 + brightCyan: 54.6 + brightWhite: 107.6 diff --git a/themes/carbon-code-amber-light.yaml b/themes/carbon-code-amber-light.yaml new file mode 100644 index 00000000..71d817b0 --- /dev/null +++ b/themes/carbon-code-amber-light.yaml @@ -0,0 +1,49 @@ +name: "Carbon Code Amber Light" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 903 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" +colors: + bg: "#FFFBF0" + fg: "#0A0A0A" + black: "#000000" + red: "#EF4444" + green: "#22C55E" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 103.5 + black: 103.7 + red: 61.5 + green: 42 + yellow: 39.4 + blue: 61.6 + magenta: 63.9 + cyan: 44.8 + white: 0 + brightBlack: 103.7 + brightRed: 61.5 + brightGreen: 42 + brightYellow: 39.4 + brightBlue: 61.6 + brightMagenta: 63.9 + brightCyan: 44.8 + brightWhite: 0 diff --git a/themes/carbon-code-crimson-dark.yaml b/themes/carbon-code-crimson-dark.yaml new file mode 100644 index 00000000..beb9b670 --- /dev/null +++ b/themes/carbon-code-crimson-dark.yaml @@ -0,0 +1,49 @@ +name: "Carbon Code Crimson Dark" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 903 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" +colors: + bg: "#120E0E" + fg: "#E6E6E6" + black: "#000000" + red: "#DC2626" + green: "#16A34A" + yellow: "#F59E0B" + blue: "#2563EB" + magenta: "#C026D3" + cyan: "#0891B2" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#DC2626" + brightGreen: "#16A34A" + brightYellow: "#F59E0B" + brightBlue: "#2563EB" + brightMagenta: "#C026D3" + brightCyan: "#0891B2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91.3 + black: 0 + red: 29.7 + green: 41.6 + yellow: 60.1 + blue: 26.5 + magenta: 30.2 + cyan: 37.5 + white: 107.5 + brightBlack: 0 + brightRed: 29.7 + brightGreen: 41.6 + brightYellow: 60.1 + brightBlue: 26.5 + brightMagenta: 30.2 + brightCyan: 37.5 + brightWhite: 107.5 diff --git a/themes/carbon-code-crimson-light.yaml b/themes/carbon-code-crimson-light.yaml new file mode 100644 index 00000000..1d40f501 --- /dev/null +++ b/themes/carbon-code-crimson-light.yaml @@ -0,0 +1,49 @@ +name: "Carbon Code Crimson Light" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 903 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" +colors: + bg: "#FEFCFC" + fg: "#0A0A0A" + black: "#000000" + red: "#DC2626" + green: "#16A34A" + yellow: "#F59E0B" + blue: "#2563EB" + magenta: "#C026D3" + cyan: "#0891B2" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#DC2626" + brightGreen: "#16A34A" + brightYellow: "#F59E0B" + brightBlue: "#2563EB" + brightMagenta: "#C026D3" + brightCyan: "#0891B2" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 104.3 + black: 104.5 + red: 70 + green: 58.2 + yellow: 40.2 + blue: 73.3 + magenta: 69.5 + cyan: 62.3 + white: 0 + brightBlack: 104.5 + brightRed: 70 + brightGreen: 58.2 + brightYellow: 40.2 + brightBlue: 73.3 + brightMagenta: 69.5 + brightCyan: 62.3 + brightWhite: 0 diff --git a/themes/carbon-code-dark.yaml b/themes/carbon-code-dark.yaml new file mode 100644 index 00000000..7b61ec9d --- /dev/null +++ b/themes/carbon-code-dark.yaml @@ -0,0 +1,49 @@ +name: "Carbon Code Dark" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 903 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" +colors: + bg: "#0F0F13" + fg: "#E6E6E6" + black: "#000000" + red: "#FF0055" + green: "#6366F1" + yellow: "#FFDD00" + blue: "#0088FF" + magenta: "#FF00DD" + cyan: "#00FFDD" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#FF3377" + brightGreen: "#33FFAA" + brightYellow: "#FFEE33" + brightBlue: "#3399FF" + brightMagenta: "#FF33EE" + brightCyan: "#33FFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91.3 + black: 0 + red: 37.8 + green: 30.7 + yellow: 86.5 + blue: 39.4 + magenta: 43.4 + cyan: 90.1 + white: 107.5 + brightBlack: 0 + brightRed: 40.5 + brightGreen: 88.6 + brightYellow: 94.3 + brightBlue: 46 + brightMagenta: 46.3 + brightCyan: 91.3 + brightWhite: 107.5 diff --git a/themes/carbon-code-emerald-dark.yaml b/themes/carbon-code-emerald-dark.yaml new file mode 100644 index 00000000..75472c33 --- /dev/null +++ b/themes/carbon-code-emerald-dark.yaml @@ -0,0 +1,49 @@ +name: "Carbon Code Emerald Dark" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 903 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" +colors: + bg: "#0E110E" + fg: "#E6E6E6" + black: "#000000" + red: "#FF0055" + green: "#00FF88" + yellow: "#FFDD00" + blue: "#0088FF" + magenta: "#FF00DD" + cyan: "#00FFDD" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#FF3377" + brightGreen: "#33FFAA" + brightYellow: "#FFEE33" + brightBlue: "#3399FF" + brightMagenta: "#FF33EE" + brightCyan: "#33FFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91.2 + black: 0 + red: 37.7 + green: 87.3 + yellow: 86.4 + blue: 39.3 + magenta: 43.3 + cyan: 90.1 + white: 107.4 + brightBlack: 0 + brightRed: 40.4 + brightGreen: 88.6 + brightYellow: 94.2 + brightBlue: 46 + brightMagenta: 46.2 + brightCyan: 91.2 + brightWhite: 107.4 diff --git a/themes/carbon-code-emerald-light.yaml b/themes/carbon-code-emerald-light.yaml new file mode 100644 index 00000000..df5fdb53 --- /dev/null +++ b/themes/carbon-code-emerald-light.yaml @@ -0,0 +1,49 @@ +name: "Carbon Code Emerald Light" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 903 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" +colors: + bg: "#FAFEFC" + fg: "#0A0A0A" + black: "#000000" + red: "#FF0055" + green: "#00FF88" + yellow: "#FFBB00" + blue: "#0088FF" + magenta: "#FF00DD" + cyan: "#00DDFF" + white: "#000000" + brightBlack: "#666666" + brightRed: "#FF3377" + brightGreen: "#33FF99" + brightYellow: "#FFDD33" + brightBlue: "#3399FF" + brightMagenta: "#FF33DD" + brightCyan: "#33DDFF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 104.7 + black: 104.8 + red: 62.3 + green: 14.7 + yellow: 28.8 + blue: 60.7 + magenta: 56.8 + cyan: 26.6 + white: 104.8 + brightBlack: 77.6 + brightRed: 59.7 + brightGreen: 14 + brightYellow: 15.5 + brightBlue: 54.2 + brightMagenta: 55.1 + brightCyan: 26.2 + brightWhite: 104.8 diff --git a/themes/carbon-code-light.yaml b/themes/carbon-code-light.yaml new file mode 100644 index 00000000..1a19e68b --- /dev/null +++ b/themes/carbon-code-light.yaml @@ -0,0 +1,49 @@ +name: "Carbon Code Light" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 903 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" +colors: + bg: "#FCFCFF" + fg: "#0A0A0A" + black: "#000000" + red: "#FF0055" + green: "#6366F1" + yellow: "#FFBB00" + blue: "#0088FF" + magenta: "#FF00DD" + cyan: "#00DDFF" + white: "#000000" + brightBlack: "#666666" + brightRed: "#FF3377" + brightGreen: "#33FF99" + brightYellow: "#FFDD33" + brightBlue: "#3399FF" + brightMagenta: "#FF33DD" + brightCyan: "#33DDFF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 104.2 + black: 104.4 + red: 61.8 + green: 68.9 + yellow: 28.4 + blue: 60.3 + magenta: 56.3 + cyan: 26.1 + white: 104.4 + brightBlack: 77.1 + brightRed: 59.2 + brightGreen: 13.6 + brightYellow: 15 + brightBlue: 53.7 + brightMagenta: 54.6 + brightCyan: 25.7 + brightWhite: 104.4 diff --git a/themes/carbon-code-rose-dark.yaml b/themes/carbon-code-rose-dark.yaml new file mode 100644 index 00000000..c6216237 --- /dev/null +++ b/themes/carbon-code-rose-dark.yaml @@ -0,0 +1,49 @@ +name: "Carbon Code Rose Dark" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 903 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" +colors: + bg: "#110E10" + fg: "#E6E6E6" + black: "#000000" + red: "#F43F5E" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#EC4899" + cyan: "#06B6D4" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#F43F5E" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#EC4899" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.3 + black: 0 + red: 38.5 + green: 57.4 + yellow: 65.7 + blue: 37.4 + magenta: 39.6 + cyan: 54.5 + white: 107.5 + brightBlack: 0 + brightRed: 38.5 + brightGreen: 57.4 + brightYellow: 65.7 + brightBlue: 37.4 + brightMagenta: 39.6 + brightCyan: 54.5 + brightWhite: 107.5 diff --git a/themes/carbon-code-rose-light.yaml b/themes/carbon-code-rose-light.yaml new file mode 100644 index 00000000..dad72e54 --- /dev/null +++ b/themes/carbon-code-rose-light.yaml @@ -0,0 +1,49 @@ +name: "Carbon Code Rose Light" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 903 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" +colors: + bg: "#FEF9FC" + fg: "#0A0A0A" + black: "#000000" + red: "#F43F5E" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#EC4899" + cyan: "#06B6D4" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#F43F5E" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#EC4899" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103 + black: 103.2 + red: 60 + green: 41.5 + yellow: 33.5 + blue: 61.1 + magenta: 58.9 + cyan: 44.3 + white: 0 + brightBlack: 103.2 + brightRed: 60 + brightGreen: 41.5 + brightYellow: 33.5 + brightBlue: 61.1 + brightMagenta: 58.9 + brightCyan: 44.3 + brightWhite: 0 diff --git a/themes/carbon-design-system-theme.yaml b/themes/carbon-design-system-theme.yaml new file mode 100644 index 00000000..982bffd5 --- /dev/null +++ b/themes/carbon-design-system-theme.yaml @@ -0,0 +1,49 @@ +name: "Carbon Design System Theme" +source: + marketplace_id: "taotao7.ibm-carbon-theme" + version: "1.0.0" + installs: 130 + author: "taotao7" + repo: "https://github.com/taotao7/carbon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=taotao7.ibm-carbon-theme" +colors: + bg: "#161616" + fg: "#F4F4F4" + black: "#161616" + red: "#DA1E28" + green: "#24A148" + yellow: "#F1C21B" + blue: "#4589FF" + magenta: "#EE5396" + cyan: "#82CFFF" + white: "#F4F4F4" + brightBlack: "#393939" + brightRed: "#FF8389" + brightGreen: "#42BE65" + brightYellow: "#F1C21B" + brightBlue: "#78A9FF" + brightMagenta: "#BE95FF" + brightCyan: "#A6C8FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 99.7 + black: 0 + red: 28.3 + green: 40.3 + yellow: 72.3 + blue: 40.3 + magenta: 41.1 + cyan: 71.5 + white: 99.7 + brightBlack: 0 + brightRed: 54.9 + brightGreen: 54.4 + brightYellow: 72.3 + brightBlue: 54.9 + brightMagenta: 54.9 + brightCyan: 71.4 + brightWhite: 107 diff --git a/themes/carbon-one.yaml b/themes/carbon-one.yaml new file mode 100644 index 00000000..6795ceac --- /dev/null +++ b/themes/carbon-one.yaml @@ -0,0 +1,49 @@ +name: "Carbon One" +source: + marketplace_id: "Gerardo-Tordoya.carbon-one" + version: "2.0.0" + installs: 53 + author: "Gerardo Tordoya" + repo: "https://github.com/zherar7ordoya/carbon-one" + url: "https://marketplace.visualstudio.com/items?itemName=Gerardo-Tordoya.carbon-one" +colors: + bg: "#F4F4F4" + fg: "#161616" + black: "#0C0C0C" + red: "#C50F1F" + green: "#13A10E" + yellow: "#C19C00" + blue: "#0037DA" + magenta: "#881798" + cyan: "#3A96DD" + white: "#CCCCCC" + brightBlack: "#767676" + brightRed: "#E74856" + brightGreen: "#16C60C" + brightYellow: "#F9F1A5" + brightBlue: "#3B78FF" + brightMagenta: "#B4009E" + brightCyan: "#61D6D6" + brightWhite: "#F2F2F2" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 98.3 + black: 99.2 + red: 71.4 + green: 54.5 + yellow: 44.3 + blue: 80.2 + magenta: 79.7 + cyan: 52.1 + white: 20.7 + brightBlack: 65 + brightRed: 58.2 + brightGreen: 38.1 + brightYellow: 0 + brightBlue: 59.8 + brightMagenta: 71.5 + brightCyan: 24.7 + brightWhite: 0 diff --git a/themes/carbon-react-color-theme-maya-black.yaml b/themes/carbon-react-color-theme-maya-black.yaml new file mode 100644 index 00000000..5f54f6b5 --- /dev/null +++ b/themes/carbon-react-color-theme-maya-black.yaml @@ -0,0 +1,49 @@ +name: "Carbon React Color Theme - Maya Black" +source: + marketplace_id: "yathink3.carbon-react-color-theme" + version: "1.4.5" + installs: 6737 + author: "yathink3" + repo: "https://github.com/yathink3/carbon-react-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" +colors: + bg: "#000205" + fg: "#BFBDB6" + black: "#11151C" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 242 + contrast: + fg: 66.8 + black: 0 + red: 45 + green: 71 + yellow: 67.6 + blue: 61.6 + magenta: 61.6 + cyan: 78.9 + white: 72.7 + brightBlack: 23.9 + brightRed: 47.6 + brightGreen: 74.3 + brightYellow: 70.6 + brightBlue: 64.3 + brightMagenta: 64.4 + brightCyan: 81.9 + brightWhite: 107.9 diff --git a/themes/carbon-react-color-theme-maya.yaml b/themes/carbon-react-color-theme-maya.yaml new file mode 100644 index 00000000..411d9b26 --- /dev/null +++ b/themes/carbon-react-color-theme-maya.yaml @@ -0,0 +1,49 @@ +name: "Carbon React Color Theme - Maya" +source: + marketplace_id: "yathink3.carbon-react-color-theme" + version: "1.4.5" + installs: 6737 + author: "yathink3" + repo: "https://github.com/yathink3/carbon-react-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" +colors: + bg: "#161A26" + fg: "#BFBDB6" + black: "#343B4D" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 270 + contrast: + fg: 65.5 + black: 0 + red: 43.7 + green: 69.6 + yellow: 66.2 + blue: 60.2 + magenta: 60.2 + cyan: 77.5 + white: 71.3 + brightBlack: 22.5 + brightRed: 46.2 + brightGreen: 72.9 + brightYellow: 69.2 + brightBlue: 63 + brightMagenta: 63 + brightCyan: 80.5 + brightWhite: 106.5 diff --git a/themes/carbon-react-color-theme.yaml b/themes/carbon-react-color-theme.yaml new file mode 100644 index 00000000..f59bd801 --- /dev/null +++ b/themes/carbon-react-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Carbon React Color Theme" +source: + marketplace_id: "yathink3.carbon-react-color-theme" + version: "1.4.5" + installs: 6737 + author: "yathink3" + repo: "https://github.com/yathink3/carbon-react-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" +colors: + bg: "#1B1D22" + fg: "#BBBBBB" + black: "#370067" + red: "#BF8B56" + green: "#07D258" + yellow: "#E3B625" + blue: "#BD1C98" + magenta: "#BF568B" + cyan: "#2F7ECD" + white: "#FFFFFF" + brightBlack: "#627E99" + brightRed: "#BF8B56" + brightGreen: "#24966E" + brightYellow: "#BFA656" + brightBlue: "#8B56BF" + brightMagenta: "#BF568B" + brightCyan: "#20BCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 268 + contrast: + fg: 64 + black: 0 + red: 43.8 + green: 62.1 + yellow: 64.5 + blue: 24.1 + magenta: 31 + cyan: 31.3 + white: 106.2 + brightBlack: 30.8 + brightRed: 43.8 + brightGreen: 35.7 + brightYellow: 53.4 + brightBlue: 25.6 + brightMagenta: 31 + brightCyan: 58.5 + brightWhite: 106.2 diff --git a/themes/carbon.yaml b/themes/carbon.yaml new file mode 100644 index 00000000..15386fc8 --- /dev/null +++ b/themes/carbon.yaml @@ -0,0 +1,49 @@ +name: "Carbon" +source: + marketplace_id: "PhanTriVietHoang.theme4anyone" + version: "1.0.3" + installs: 6 + author: "PhanTriVietHoang" + repo: "https://github.com/phantriviethoang/theme4anyone" + url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.theme4anyone" +colors: + bg: "#172030" + fg: "#C9CCCD" + black: "#172030" + red: "#FF8A7A" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#94D0FF" + magenta: "#FF85B8" + cyan: "#9AEDFE" + white: "#F1F1F0" + brightBlack: "#686868" + brightRed: "#FF8A7A" + brightGreen: "#5AF78E" + brightYellow: "#F3F99D" + brightBlue: "#94D0FF" + brightMagenta: "#FF85B8" + brightCyan: "#9AEDFE" + brightWhite: "#EEFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 262 + contrast: + fg: 73.2 + black: 0 + red: 55.2 + green: 82.9 + yellow: 97.6 + blue: 72.1 + magenta: 55.9 + cyan: 85.9 + white: 96.5 + brightBlack: 21.8 + brightRed: 55.2 + brightGreen: 82.9 + brightYellow: 97.6 + brightBlue: 72.1 + brightMagenta: 55.9 + brightCyan: 85.9 + brightWhite: 103.4 diff --git a/themes/carbonfox.yaml b/themes/carbonfox.yaml new file mode 100644 index 00000000..71f1b3d3 --- /dev/null +++ b/themes/carbonfox.yaml @@ -0,0 +1,49 @@ +name: "carbonfox" +source: + marketplace_id: "letrieu.tornado-themes" + version: "0.0.7" + installs: 356 + author: "Le Trieu" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=letrieu.tornado-themes" +colors: + bg: "#161616" + fg: "#CBCCC6" + black: "#161616" + red: "#FA4D56" + green: "#42BE65" + yellow: "#F1C21B" + blue: "#78A9FF" + magenta: "#BE95FF" + cyan: "#3DDBD9" + white: "#CBCCC6" + brightBlack: "#6F6F6F" + brightRed: "#FA4D56" + brightGreen: "#42BE65" + brightYellow: "#F1C21B" + brightBlue: "#78A9FF" + brightMagenta: "#BE95FF" + brightCyan: "#3DDBD9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 74.4 + black: 0 + red: 41.1 + green: 54.4 + yellow: 72.3 + blue: 54.9 + magenta: 54.9 + cyan: 71.9 + white: 74.4 + brightBlack: 26 + brightRed: 41.1 + brightGreen: 54.4 + brightYellow: 72.3 + brightBlue: 54.9 + brightMagenta: 54.9 + brightCyan: 71.9 + brightWhite: 107 diff --git a/themes/carbonight-contrast.yaml b/themes/carbonight-contrast.yaml new file mode 100644 index 00000000..8018af08 --- /dev/null +++ b/themes/carbonight-contrast.yaml @@ -0,0 +1,49 @@ +name: "carbonight-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#C4C4C4" + yellow: "#8C8C8C" + blue: "#FFFFFF" + magenta: "#EEEEEE" + cyan: "#FFFFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#F7F7F7" + brightYellow: "#BFBFBF" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 21.5 + green: 70.9 + yellow: 40.6 + blue: 107.9 + magenta: 96.8 + cyan: 107.9 + white: 107.9 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 102.6 + brightYellow: 68 + brightBlue: 107.9 + brightMagenta: 107.9 + brightCyan: 107.9 + brightWhite: 107.9 diff --git a/themes/carbonight-dusk.yaml b/themes/carbonight-dusk.yaml new file mode 100644 index 00000000..bc937f73 --- /dev/null +++ b/themes/carbonight-dusk.yaml @@ -0,0 +1,49 @@ +name: "Carbonight Dusk" +source: + marketplace_id: "Erfannsb.carbonight" + version: "1.0.0" + installs: 83 + author: "Erfan Nasibi" + repo: "https://github.com/erfannsb/carbonight" + url: "https://marketplace.visualstudio.com/items?itemName=Erfannsb.carbonight" +colors: + bg: "#151726" + fg: "#DADFF0" + black: "#151726" + red: "#FF6B81" + green: "#9FF7C2" + yellow: "#FFE6A7" + blue: "#4CC9F0" + magenta: "#E4B1FF" + cyan: "#9EE7F5" + white: "#E9EDF3" + brightBlack: "#1E223A" + brightRed: "#FF8DA2" + brightGreen: "#AFFFD1" + brightYellow: "#FFF2BD" + brightBlue: "#7DDFFF" + brightMagenta: "#F2C6FF" + brightCyan: "#C8F4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 278 + contrast: + fg: 86.3 + black: 0 + red: 48.5 + green: 89.6 + yellow: 91.8 + blue: 64.9 + magenta: 69.9 + cyan: 83.9 + white: 94.7 + brightBlack: 0 + brightRed: 58.3 + brightGreen: 95.5 + brightYellow: 98 + brightBlue: 78.3 + brightMagenta: 80 + brightCyan: 94.6 + brightWhite: 106.7 diff --git a/themes/carbonight-light.yaml b/themes/carbonight-light.yaml new file mode 100644 index 00000000..b8796d43 --- /dev/null +++ b/themes/carbonight-light.yaml @@ -0,0 +1,49 @@ +name: "carbonight-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#2E2C2B" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#C4C4C4" + yellow: "#8C8C8C" + blue: "#222222" + magenta: "#555555" + cyan: "#222222" + white: "#3B3937" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F7F7F7" + brightYellow: "#BFBFBF" + brightBlue: "#555555" + brightMagenta: "#888888" + brightCyan: "#555555" + brightWhite: "#635E5C" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 100.5 + black: 0 + red: 80.3 + green: 31.8 + yellow: 61.1 + blue: 102.9 + magenta: 85.9 + cyan: 102.9 + white: 96.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 0 + brightYellow: 34.5 + brightBlue: 85.9 + brightMagenta: 63.1 + brightCyan: 85.9 + brightWhite: 81.8 diff --git a/themes/carbonight-midnight.yaml b/themes/carbonight-midnight.yaml new file mode 100644 index 00000000..b5c52425 --- /dev/null +++ b/themes/carbonight-midnight.yaml @@ -0,0 +1,49 @@ +name: "Carbonight Midnight" +source: + marketplace_id: "Erfannsb.carbonight" + version: "1.0.0" + installs: 83 + author: "Erfan Nasibi" + repo: "https://github.com/erfannsb/carbonight" + url: "https://marketplace.visualstudio.com/items?itemName=Erfannsb.carbonight" +colors: + bg: "#0A0A0A" + fg: "#E0E0E0" + black: "#0A0A0A" + red: "#FF6B81" + green: "#9FF7C2" + yellow: "#FFE6A7" + blue: "#4CC9F0" + magenta: "#E4B1FF" + cyan: "#9EE7F5" + white: "#E9EDF3" + brightBlack: "#1E2123" + brightRed: "#FF8DA2" + brightGreen: "#AFFFD1" + brightYellow: "#FFF2BD" + brightBlue: "#7DDFFF" + brightMagenta: "#F2C6FF" + brightCyan: "#C8F4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 87.7 + black: 0 + red: 49.5 + green: 90.6 + yellow: 92.8 + blue: 65.9 + magenta: 70.9 + cyan: 84.9 + white: 95.7 + brightBlack: 0 + brightRed: 59.3 + brightGreen: 96.5 + brightYellow: 98.9 + brightBlue: 79.3 + brightMagenta: 81 + brightCyan: 95.6 + brightWhite: 107.7 diff --git a/themes/carbonight.yaml b/themes/carbonight.yaml new file mode 100644 index 00000000..18174bd2 --- /dev/null +++ b/themes/carbonight.yaml @@ -0,0 +1,49 @@ +name: "Carbonight" +source: + marketplace_id: "Erfannsb.carbonight" + version: "1.0.0" + installs: 83 + author: "Erfan Nasibi" + repo: "https://github.com/erfannsb/carbonight" + url: "https://marketplace.visualstudio.com/items?itemName=Erfannsb.carbonight" +colors: + bg: "#0C1015" + fg: "#D8DEE9" + black: "#0C1015" + red: "#FF6B81" + green: "#9FF7C2" + yellow: "#FFE6A7" + blue: "#4CC9F0" + magenta: "#E4B1FF" + cyan: "#9EE7F5" + white: "#E9EDF3" + brightBlack: "#1A2330" + brightRed: "#FF8DA2" + brightGreen: "#AFFFD1" + brightYellow: "#FFF2BD" + brightBlue: "#7DDFFF" + brightMagenta: "#F2C6FF" + brightCyan: "#C8F4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 254 + contrast: + fg: 86 + black: 0 + red: 49.2 + green: 90.3 + yellow: 92.5 + blue: 65.6 + magenta: 70.6 + cyan: 84.6 + white: 95.4 + brightBlack: 0 + brightRed: 59 + brightGreen: 96.2 + brightYellow: 98.7 + brightBlue: 79 + brightMagenta: 80.7 + brightCyan: 95.3 + brightWhite: 107.5 diff --git a/themes/caret-light.yaml b/themes/caret-light.yaml new file mode 100644 index 00000000..fb4f5dca --- /dev/null +++ b/themes/caret-light.yaml @@ -0,0 +1,49 @@ +name: "Caret (light)" +source: + marketplace_id: "bjornarhagen.caret-theme" + version: "0.1.1" + installs: 416 + author: "Bjørnar Hagen" + repo: "https://github.com/bjornarhagen/caret-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bjornarhagen.caret-theme" +colors: + bg: "#CAD8B1" + fg: "#2A2D25" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 124 + contrast: + fg: 74.8 + black: 80.2 + red: 48.1 + green: 23.4 + yellow: 32.1 + blue: 60.2 + magenta: 48.7 + cyan: 34.8 + white: 60.1 + brightBlack: 52.9 + brightRed: 48.1 + brightGreen: 15.1 + brightYellow: 15.1 + brightBlue: 60.2 + brightMagenta: 48.7 + brightCyan: 34.8 + brightWhite: 22.6 diff --git a/themes/carex-dark.yaml b/themes/carex-dark.yaml new file mode 100644 index 00000000..f67dd676 --- /dev/null +++ b/themes/carex-dark.yaml @@ -0,0 +1,49 @@ +name: "Carex Dark" +source: + marketplace_id: "OMERBABACO.carex-theme" + version: "2.0.0" + installs: 43 + author: "OMERBABACO" + repo: "https://github.com/babajoeltdsti/carex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=OMERBABACO.carex-theme" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#CBA6F7" + cyan: "#94E2D5" + white: "#BAC2DE" + brightBlack: "#585B70" + brightRed: "#F5C2E7" + brightGreen: "#B9E5B3" + brightYellow: "#FBEDC1" + brightBlue: "#A6C9F7" + brightMagenta: "#D9C0F5" + brightCyan: "#B5E8E0" + brightWhite: "#CDD6F4" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 80 + black: 9.3 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 60.8 + cyan: 78.2 + white: 68.1 + brightBlack: 16.9 + brightRed: 76.7 + brightGreen: 81.7 + brightYellow: 94.3 + brightBlue: 70.2 + brightMagenta: 72.4 + brightCyan: 84.5 + brightWhite: 80 diff --git a/themes/carex-high-contrast-dark.yaml b/themes/carex-high-contrast-dark.yaml new file mode 100644 index 00000000..38120e9c --- /dev/null +++ b/themes/carex-high-contrast-dark.yaml @@ -0,0 +1,49 @@ +name: "Carex High Contrast Dark" +source: + marketplace_id: "OMERBABACO.carex-theme" + version: "2.0.0" + installs: 43 + author: "OMERBABACO" + repo: "https://github.com/babajoeltdsti/carex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=OMERBABACO.carex-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0088FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#808080" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#FFFF66" + brightBlue: "#66AAFF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 39.8 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 34.8 + brightRed: 47.9 + brightGreen: 89 + brightYellow: 103.3 + brightBlue: 55 + brightMagenta: 54.8 + brightCyan: 94 + brightWhite: 107.9 diff --git a/themes/carex-light.yaml b/themes/carex-light.yaml new file mode 100644 index 00000000..b9a297af --- /dev/null +++ b/themes/carex-light.yaml @@ -0,0 +1,49 @@ +name: "Carex Light" +source: + marketplace_id: "OMERBABACO.carex-theme" + version: "2.0.0" + installs: 43 + author: "OMERBABACO" + repo: "https://github.com/babajoeltdsti/carex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=OMERBABACO.carex-theme" +colors: + bg: "#EFF1F5" + fg: "#4C4F69" + black: "#5C5F77" + red: "#D20428" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#8839EF" + cyan: "#179299" + white: "#ACB0BE" + brightBlack: "#6C6F85" + brightRed: "#E64553" + brightGreen: "#5FB950" + brightYellow: "#E49320" + brightBlue: "#4077F5" + brightMagenta: "#9D4EFF" + brightCyan: "#04A5AC" + brightWhite: "#BCC0CC" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 79.3 + black: 72.8 + red: 66.6 + green: 52.1 + yellow: 42.3 + blue: 64.8 + magenta: 67.5 + cyan: 56.1 + white: 34.1 + brightBlack: 65.8 + brightRed: 57.1 + brightGreen: 39.7 + brightYellow: 39.8 + brightBlue: 58.9 + brightMagenta: 60 + brightCyan: 47.8 + brightWhite: 25.5 diff --git a/themes/casa.yaml b/themes/casa.yaml new file mode 100644 index 00000000..2be2aa88 --- /dev/null +++ b/themes/casa.yaml @@ -0,0 +1,49 @@ +name: "Casa" +source: + marketplace_id: "FenFex.Casa" + version: "0.0.1" + installs: 23 + author: "FenFex" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=FenFex.Casa" +colors: + bg: "#033F56" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 231 + contrast: + fg: 99.6 + black: 8.1 + red: 19.4 + green: 45.7 + yellow: 78.3 + blue: 20.1 + magenta: 22.4 + cyan: 40.2 + white: 99.6 + brightBlack: 8.1 + brightRed: 31.2 + brightGreen: 56.2 + brightYellow: 88.3 + brightBlue: 32.7 + brightMagenta: 38.1 + brightCyan: 48.1 + brightWhite: 99.6 diff --git a/themes/casino-royal.yaml b/themes/casino-royal.yaml new file mode 100644 index 00000000..a5ecaf4c --- /dev/null +++ b/themes/casino-royal.yaml @@ -0,0 +1,49 @@ +name: "Casino Royal" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#0F3F0F" + fg: "#F5F5F5" + black: "#000000" + red: "#FF4500" + green: "#228B22" + yellow: "#FFD700" + blue: "#4169E1" + magenta: "#8B008B" + cyan: "#00CED1" + white: "#F5F5F5" + brightBlack: "#000000" + brightRed: "#FF4500" + brightGreen: "#228B22" + brightYellow: "#FFD700" + brightBlue: "#4169E1" + brightMagenta: "#8B008B" + brightCyan: "#00CED1" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "orange" + hue: 143 + contrast: + fg: 94.3 + black: 0 + red: 34.4 + green: 24.7 + yellow: 77.2 + blue: 21.5 + magenta: 8.1 + cyan: 58.6 + white: 94.3 + brightBlack: 0 + brightRed: 34.4 + brightGreen: 24.7 + brightYellow: 77.2 + brightBlue: 21.5 + brightMagenta: 8.1 + brightCyan: 58.6 + brightWhite: 94.3 diff --git a/themes/cat-pink.yaml b/themes/cat-pink.yaml new file mode 100644 index 00000000..5be43364 --- /dev/null +++ b/themes/cat-pink.yaml @@ -0,0 +1,49 @@ +name: "Cat_Pink" +source: + marketplace_id: "daniloBrayann.cat-sleep" + version: "0.0.6" + installs: 2880 + author: "daniloBrayann" + repo: "https://github.com/danilobrayann/dev-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.cat-sleep" +colors: + bg: "#151416" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.1 + black: 0 + red: 27 + green: 53.2 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.3 diff --git a/themes/cat-sleep-color-theme.yaml b/themes/cat-sleep-color-theme.yaml new file mode 100644 index 00000000..a1d985ed --- /dev/null +++ b/themes/cat-sleep-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Cat_Sleep-color-theme" +source: + marketplace_id: "daniloBrayann.cat-sleep" + version: "0.0.6" + installs: 2880 + author: "daniloBrayann" + repo: "https://github.com/danilobrayann/dev-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.cat-sleep" +colors: + bg: "#19191A" + fg: "#878784" + black: "#21222C" + red: "#FF5555" + green: "#46F2D4" + yellow: "#8D1EE6" + blue: "#00FF9E" + magenta: "#1FEA4F" + cyan: "#ECED18" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 36.8 + black: 0 + red: 43.2 + green: 82.9 + yellow: 22 + blue: 87.1 + magenta: 74.6 + cyan: 90.1 + white: 101.7 + brightBlack: 27.8 + brightRed: 48.6 + brightGreen: 88.8 + brightYellow: 103.3 + brightBlue: 65.9 + brightMagenta: 62.4 + brightCyan: 96.6 + brightWhite: 106.7 diff --git a/themes/catalyst-light.yaml b/themes/catalyst-light.yaml new file mode 100644 index 00000000..5f1b8302 --- /dev/null +++ b/themes/catalyst-light.yaml @@ -0,0 +1,49 @@ +name: "Catalyst Light" +source: + marketplace_id: "hyphenzero.catalyst-theme" + version: "2.0.1" + installs: 992 + author: "Jasper Gorchov" + repo: "https://github.com/hyphenzero/tailwind-catalyst-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hyphenzero.catalyst-theme" +colors: + bg: "#FFFFFF" + fg: "#1E293B" + black: "#000000" + red: "#BE123C" + green: "#059669" + yellow: "#D97706" + blue: "#1D4ED8" + magenta: "#7E22CE" + cyan: "#0891B2" + white: "#94A3B8" + brightBlack: "#64748B" + brightRed: "#E11D48" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#2563EB" + brightMagenta: "#9333EA" + brightCyan: "#06B6D4" + brightWhite: "#000000" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.4 + black: 106 + red: 79.2 + green: 64.6 + yellow: 58.5 + blue: 82.2 + magenta: 82.8 + cyan: 63.8 + white: 50.2 + brightBlack: 73 + brightRed: 70.5 + brightGreen: 49.1 + brightYellow: 41.8 + brightBlue: 74.9 + brightMagenta: 75.6 + brightCyan: 47.1 + brightWhite: 106 diff --git a/themes/catalyst.yaml b/themes/catalyst.yaml new file mode 100644 index 00000000..fdfbe3ec --- /dev/null +++ b/themes/catalyst.yaml @@ -0,0 +1,49 @@ +name: "Catalyst" +source: + marketplace_id: "Priyaank.catalystirony" + version: "0.0.2" + installs: 140 + author: "Priyaank" + repo: "https://github.com/PRIYAANK2510/Catalyst-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.catalystirony" +colors: + bg: "#252525" + fg: "#63716A" + black: "#444444" + red: "#A35043" + green: "#38773B" + yellow: "#A79A4B" + blue: "#558BAA" + magenta: "#8A4C8C" + cyan: "#0B828A" + white: "#BBBBBB" + brightBlack: "#666666" + brightRed: "#EE6752" + brightGreen: "#62BA6B" + brightYellow: "#DED07A" + brightBlue: "#67B1D9" + brightMagenta: "#B66ABA" + brightCyan: "#4FC8D1" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 23.5 + black: 0 + red: 21.6 + green: 22 + yellow: 44.3 + blue: 34.2 + magenta: 19.2 + cyan: 27.4 + white: 62.8 + brightBlack: 20.1 + brightRed: 41.1 + brightGreen: 52.1 + brightYellow: 74.3 + brightBlue: 52.6 + brightMagenta: 35 + brightCyan: 61.1 + brightWhite: 83.1 diff --git a/themes/cathaytrial.yaml b/themes/cathaytrial.yaml new file mode 100644 index 00000000..22b63af8 --- /dev/null +++ b/themes/cathaytrial.yaml @@ -0,0 +1,49 @@ +name: "cathayTrial" +source: + marketplace_id: "JackyChong.jacky" + version: "0.0.1" + installs: 3 + author: "Jacky Chong" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JackyChong.jacky" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#C83D3F" + green: "#8BB39F" + yellow: "#967C00" + blue: "#116F9A" + magenta: "#BC62BC" + cyan: "#70A8C2" + white: "#555555" + brightBlack: "#666666" + brightRed: "#C83D3F" + brightGreen: "#8BB39F" + brightYellow: "#967C00" + brightBlue: "#116F9A" + brightMagenta: "#C07EC0" + brightCyan: "#70A8C2" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 106 + black: 106 + red: 73.5 + green: 45.8 + yellow: 67.6 + blue: 77.4 + magenta: 64.6 + cyan: 50.7 + white: 85.9 + brightBlack: 78.8 + brightRed: 73.5 + brightGreen: 45.8 + brightYellow: 67.6 + brightBlue: 77.4 + brightMagenta: 56.6 + brightCyan: 50.7 + brightWhite: 48.5 diff --git a/themes/catppuccin-dark.yaml b/themes/catppuccin-dark.yaml new file mode 100644 index 00000000..fccdc1da --- /dev/null +++ b/themes/catppuccin-dark.yaml @@ -0,0 +1,49 @@ +name: "Catppuccin Dark" +source: + marketplace_id: "codelogix.catppuccin-darker-vsc" + version: "0.0.3" + installs: 1329 + author: "Carl Weis" + repo: "https://github.com/carlweis/catppuccin-dark" + url: "https://marketplace.visualstudio.com/items?itemName=codelogix.catppuccin-darker-vsc" +colors: + bg: "#181818" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#A6ADC8" + brightBlack: "#585B70" + brightRed: "#F37799" + brightGreen: "#89D88B" + brightYellow: "#EBD391" + brightBlue: "#74A8FC" + brightMagenta: "#F2AEDE" + brightCyan: "#6BD7CA" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 80.9 + black: 10.2 + red: 55.6 + green: 79.3 + yellow: 89.4 + blue: 60 + magenta: 77.6 + cyan: 79.2 + white: 57.2 + brightBlack: 17.8 + brightRed: 49.6 + brightGreen: 71 + brightYellow: 79.8 + brightBlue: 53.8 + brightMagenta: 69.2 + brightCyan: 70.8 + brightWhite: 69 diff --git a/themes/catppuccin-frapp.yaml b/themes/catppuccin-frapp.yaml new file mode 100644 index 00000000..5d0f9304 --- /dev/null +++ b/themes/catppuccin-frapp.yaml @@ -0,0 +1,49 @@ +name: "Catppuccin Frappé" +source: + marketplace_id: "Catppuccin.catppuccin-vsc" + version: "3.18.1" + installs: 1123950 + author: "Catppuccin" + repo: "https://github.com/catppuccin/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc" +colors: + bg: "#303446" + fg: "#C6D0F5" + black: "#51576D" + red: "#E78284" + green: "#A6D189" + yellow: "#E5C890" + blue: "#8CAAEE" + magenta: "#F4B8E4" + cyan: "#81C8BE" + white: "#A5ADCE" + brightBlack: "#626880" + brightRed: "#E67172" + brightGreen: "#8EC772" + brightYellow: "#D9BA73" + brightBlue: "#7B9EF0" + brightMagenta: "#F2A4DB" + brightCyan: "#5ABFB5" + brightWhite: "#B5BFE2" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 72.3 + black: 10.8 + red: 44.3 + green: 65 + yellow: 69 + blue: 50.3 + magenta: 68.3 + cyan: 59.5 + white: 52.1 + brightBlack: 17.9 + brightRed: 39.1 + brightGreen: 57.7 + brightYellow: 60.8 + brightBlue: 44.4 + brightMagenta: 60.4 + brightCyan: 52.8 + brightWhite: 62.1 diff --git a/themes/catppuccin-latte.yaml b/themes/catppuccin-latte.yaml new file mode 100644 index 00000000..bf18907c --- /dev/null +++ b/themes/catppuccin-latte.yaml @@ -0,0 +1,49 @@ +name: "Catppuccin Latte" +source: + marketplace_id: "Catppuccin.catppuccin-vsc" + version: "3.18.1" + installs: 1123950 + author: "Catppuccin" + repo: "https://github.com/catppuccin/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc" +colors: + bg: "#EFF1F5" + fg: "#4C4F69" + black: "#5C5F77" + red: "#D20F39" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#EA76CB" + cyan: "#179299" + white: "#ACB0BE" + brightBlack: "#6C6F85" + brightRed: "#DE293E" + brightGreen: "#49AF3D" + brightYellow: "#EEA02D" + brightBlue: "#456EFF" + brightMagenta: "#FE85D8" + brightCyan: "#2D9FA8" + brightWhite: "#BCC0CC" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 79.3 + black: 72.8 + red: 66.3 + green: 52.1 + yellow: 42.3 + blue: 64.8 + magenta: 42.6 + cyan: 56.1 + white: 34.1 + brightBlack: 65.8 + brightRed: 62.2 + brightGreen: 45.2 + brightYellow: 33.8 + brightBlue: 60.5 + brightMagenta: 34.4 + brightCyan: 50 + brightWhite: 25.5 diff --git a/themes/catppuccin-macchiato.yaml b/themes/catppuccin-macchiato.yaml new file mode 100644 index 00000000..186d5635 --- /dev/null +++ b/themes/catppuccin-macchiato.yaml @@ -0,0 +1,49 @@ +name: "Catppuccin Macchiato" +source: + marketplace_id: "Catppuccin.catppuccin-vsc" + version: "3.18.1" + installs: 1123950 + author: "Catppuccin" + repo: "https://github.com/catppuccin/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc" +colors: + bg: "#24273A" + fg: "#CAD3F5" + black: "#494D64" + red: "#ED8796" + green: "#A6DA95" + yellow: "#EED49F" + blue: "#8AADF4" + magenta: "#F5BDE6" + cyan: "#8BD5CA" + white: "#A5ADCB" + brightBlack: "#5B6078" + brightRed: "#EC7486" + brightGreen: "#8CCF7F" + brightYellow: "#E1C682" + brightBlue: "#78A1F6" + brightMagenta: "#F2A9DD" + brightCyan: "#63CBC0" + brightWhite: "#B8C0E0" +meta: + mode: "dark" + accent: "red" + hue: 277 + contrast: + fg: 76.9 + black: 10 + red: 50.3 + green: 72.3 + yellow: 78.7 + blue: 54.5 + magenta: 73.3 + cyan: 69.5 + white: 54.8 + brightBlack: 17.5 + brightRed: 44.4 + brightGreen: 64.3 + brightYellow: 70.1 + brightBlue: 48.6 + brightMagenta: 65 + brightCyan: 62 + brightWhite: 65.7 diff --git a/themes/catppuccin-mocha.yaml b/themes/catppuccin-mocha.yaml new file mode 100644 index 00000000..5f883c6d --- /dev/null +++ b/themes/catppuccin-mocha.yaml @@ -0,0 +1,49 @@ +name: "Catppuccin Mocha" +source: + marketplace_id: "skyrocket-qy.whisper" + version: "0.1.3" + installs: 576 + author: "skyrocket-qy" + repo: "https://github.com/skyrocket-qy/Whisper" + url: "https://marketplace.visualstudio.com/items?itemName=skyrocket-qy.whisper" +colors: + bg: "#131313" + fg: "#D6D6D6" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#89DCEB" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#A6ADC8" + brightBlack: "#585B70" + brightRed: "#F37799" + brightGreen: "#89D88B" + brightYellow: "#EBD391" + brightBlue: "#74A8FC" + brightMagenta: "#F2AEDE" + brightCyan: "#6BD7CA" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 81.1 + black: 10.7 + red: 56.1 + green: 79.7 + yellow: 77.1 + blue: 60.5 + magenta: 78.1 + cyan: 79.7 + white: 57.6 + brightBlack: 18.3 + brightRed: 50.1 + brightGreen: 71.5 + brightYellow: 80.3 + brightBlue: 54.3 + brightMagenta: 69.7 + brightCyan: 71.3 + brightWhite: 69.5 diff --git a/themes/catppuccin-monokai-frappe.yaml b/themes/catppuccin-monokai-frappe.yaml new file mode 100644 index 00000000..4b3883e7 --- /dev/null +++ b/themes/catppuccin-monokai-frappe.yaml @@ -0,0 +1,49 @@ +name: "Catppuccin Monokai Frappe" +source: + marketplace_id: "dooez.alt-catppuccin-vsc" + version: "2.7.4" + installs: 50560 + author: "dooez" + repo: "https://github.com/Dooez/alt-catppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dooez.alt-catppuccin-vsc" +colors: + bg: "#303446" + fg: "#C6D0F5" + black: "#737994" + red: "#E78284" + green: "#A6D189" + yellow: "#E5C890" + blue: "#8CAAEE" + magenta: "#F4B8E4" + cyan: "#99D1DB" + white: "#949CBB" + brightBlack: "#838BA7" + brightRed: "#E78284" + brightGreen: "#A6D189" + brightYellow: "#E5C890" + brightBlue: "#8CAAEE" + brightMagenta: "#F4B8E4" + brightCyan: "#99D1DB" + brightWhite: "#C6D0F5" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 72.3 + black: 25.6 + red: 44.3 + green: 65 + yellow: 69 + blue: 50.3 + magenta: 68.3 + cyan: 66.8 + white: 42.9 + brightBlack: 34.1 + brightRed: 44.3 + brightGreen: 65 + brightYellow: 69 + brightBlue: 50.3 + brightMagenta: 68.3 + brightCyan: 66.8 + brightWhite: 72.3 diff --git a/themes/catppuccin-monokai-latte.yaml b/themes/catppuccin-monokai-latte.yaml new file mode 100644 index 00000000..71751dce --- /dev/null +++ b/themes/catppuccin-monokai-latte.yaml @@ -0,0 +1,49 @@ +name: "Catppuccin Monokai Latte" +source: + marketplace_id: "dooez.alt-catppuccin-vsc" + version: "2.7.4" + installs: 50560 + author: "dooez" + repo: "https://github.com/Dooez/alt-catppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dooez.alt-catppuccin-vsc" +colors: + bg: "#EFF1F5" + fg: "#4C4F69" + black: "#9CA0B0" + red: "#D20F39" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#EA76CB" + cyan: "#04A5E5" + white: "#7C7F93" + brightBlack: "#8C8FA1" + brightRed: "#D20F39" + brightGreen: "#40A02B" + brightYellow: "#DF8E1D" + brightBlue: "#1E66F5" + brightMagenta: "#EA76CB" + brightCyan: "#04A5E5" + brightWhite: "#4C4F69" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 79.3 + black: 42.4 + red: 66.3 + green: 52.1 + yellow: 42.3 + blue: 64.8 + magenta: 42.6 + cyan: 44.7 + white: 58.5 + brightBlack: 50.8 + brightRed: 66.3 + brightGreen: 52.1 + brightYellow: 42.3 + brightBlue: 64.8 + brightMagenta: 42.6 + brightCyan: 44.7 + brightWhite: 79.3 diff --git a/themes/catppuccin-monokai-macchiato.yaml b/themes/catppuccin-monokai-macchiato.yaml new file mode 100644 index 00000000..f40efac5 --- /dev/null +++ b/themes/catppuccin-monokai-macchiato.yaml @@ -0,0 +1,49 @@ +name: "Catppuccin Monokai Macchiato" +source: + marketplace_id: "dooez.alt-catppuccin-vsc" + version: "2.7.4" + installs: 50560 + author: "dooez" + repo: "https://github.com/Dooez/alt-catppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dooez.alt-catppuccin-vsc" +colors: + bg: "#24273A" + fg: "#CAD3F5" + black: "#6E738D" + red: "#ED8796" + green: "#A6DA95" + yellow: "#EED49F" + blue: "#8AADF4" + magenta: "#F5BDE6" + cyan: "#91D7E3" + white: "#939AB7" + brightBlack: "#8087A2" + brightRed: "#ED8796" + brightGreen: "#A6DA95" + brightYellow: "#EED49F" + brightBlue: "#8AADF4" + brightMagenta: "#F5BDE6" + brightCyan: "#91D7E3" + brightWhite: "#CAD3F5" +meta: + mode: "dark" + accent: "red" + hue: 277 + contrast: + fg: 76.9 + black: 25.8 + red: 50.3 + green: 72.3 + yellow: 78.7 + blue: 54.5 + magenta: 73.3 + cyan: 72.1 + white: 44.7 + brightBlack: 35 + brightRed: 50.3 + brightGreen: 72.3 + brightYellow: 78.7 + brightBlue: 54.5 + brightMagenta: 73.3 + brightCyan: 72.1 + brightWhite: 76.9 diff --git a/themes/catppuccin-monokai-mocha.yaml b/themes/catppuccin-monokai-mocha.yaml new file mode 100644 index 00000000..376d1dc2 --- /dev/null +++ b/themes/catppuccin-monokai-mocha.yaml @@ -0,0 +1,49 @@ +name: "Catppuccin Monokai Mocha" +source: + marketplace_id: "dooez.alt-catppuccin-vsc" + version: "2.7.4" + installs: 50560 + author: "dooez" + repo: "https://github.com/Dooez/alt-catppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dooez.alt-catppuccin-vsc" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#6C7086" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#89DCEB" + white: "#9399B2" + brightBlack: "#7F849C" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#89DCEB" + brightWhite: "#CDD6F4" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 80 + black: 25.8 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 76.7 + cyan: 75.6 + white: 45.5 + brightBlack: 35.1 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 88.4 + brightBlue: 59.1 + brightMagenta: 76.7 + brightCyan: 75.6 + brightWhite: 80 diff --git a/themes/catthode.yaml b/themes/catthode.yaml new file mode 100644 index 00000000..56c13c2d --- /dev/null +++ b/themes/catthode.yaml @@ -0,0 +1,49 @@ +name: "Catthode" +source: + marketplace_id: "Catthode.catthode" + version: "0.1.1" + installs: 63 + author: "Catthode" + repo: "https://github.com/catthode/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Catthode.catthode" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF6B6B" + green: "#B9D665" + yellow: "#FFB86C" + blue: "#9CD9E6" + magenta: "#EBA4BE" + cyan: "#AEE6D6" + white: "#B3B3B3" + brightBlack: "#636363" + brightRed: "#F08D49" + brightGreen: "#B9D665" + brightYellow: "#D9B98C" + brightBlue: "#9CD9E6" + brightMagenta: "#EBA4BE" + brightCyan: "#AEE6D6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 49.1 + green: 74.8 + yellow: 72.5 + blue: 77.6 + magenta: 64.2 + cyan: 84.5 + white: 61.2 + brightBlack: 21.8 + brightRed: 54.4 + brightGreen: 74.8 + brightYellow: 67.4 + brightBlue: 77.6 + brightMagenta: 64.2 + brightCyan: 84.5 + brightWhite: 107.9 diff --git a/themes/cchl-color-theme.yaml b/themes/cchl-color-theme.yaml new file mode 100644 index 00000000..c65b4945 --- /dev/null +++ b/themes/cchl-color-theme.yaml @@ -0,0 +1,49 @@ +name: "cchl-color-theme" +source: + marketplace_id: "lvchencheng.theme-ckai" + version: "1.3.0" + installs: 91 + author: "lvchencheng" + repo: "https://gitee.com/lu-chencheng/ckai" + url: "https://marketplace.visualstudio.com/items?itemName=lvchencheng.theme-ckai" +colors: + bg: "#292929" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 99.3 + black: 0 + red: 22 + green: 50.4 + yellow: 55 + blue: 32 + magenta: 29.6 + cyan: 47.8 + white: 85.9 + brightBlack: 19.4 + brightRed: 34.7 + brightGreen: 74.4 + brightYellow: 81.3 + brightBlue: 47.2 + brightMagenta: 43.9 + brightCyan: 70.8 + brightWhite: 99.3 diff --git a/themes/cebola-theme.yaml b/themes/cebola-theme.yaml new file mode 100644 index 00000000..5c9bff5d --- /dev/null +++ b/themes/cebola-theme.yaml @@ -0,0 +1,49 @@ +name: "cebola-theme" +source: + marketplace_id: "thomasluizon.thomasluizon" + version: "0.3.0" + installs: 47 + author: "thomasluizon" + repo: "https://github.com/thomasluizon/cebola-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thomasluizon.thomasluizon" +colors: + bg: "#10161B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 244 + contrast: + fg: 79.6 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.2 diff --git a/themes/celadon-theme.yaml b/themes/celadon-theme.yaml new file mode 100644 index 00000000..215e3c33 --- /dev/null +++ b/themes/celadon-theme.yaml @@ -0,0 +1,49 @@ +name: "Celadon Theme" +source: + marketplace_id: "alif-naufal.celadon-theme" + version: "0.0.11" + installs: 7 + author: "Alif Naufal" + repo: "https://github.com/alif898/celadon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=alif-naufal.celadon-theme" +colors: + bg: "#1B2222" + fg: "#CEDDDD" + black: "#1B2222" + red: "#E66E6E" + green: "#90B36B" + yellow: "#C1B374" + blue: "#62ABE3" + magenta: "#8C74A8" + cyan: "#509FB3" + white: "#CEDDDD" + brightBlack: "#1B2222" + brightRed: "#E66E6E" + brightGreen: "#90B36B" + brightYellow: "#C1B374" + brightBlue: "#62ABE3" + brightMagenta: "#8C74A8" + brightCyan: "#509FB3" + brightWhite: "#CEDDDD" +meta: + mode: "dark" + accent: "orange" + hue: 197 + contrast: + fg: 81.9 + black: 0 + red: 42.4 + green: 53.1 + yellow: 58.8 + blue: 51.1 + magenta: 31.7 + cyan: 42.8 + white: 81.9 + brightBlack: 0 + brightRed: 42.4 + brightGreen: 53.1 + brightYellow: 58.8 + brightBlue: 51.1 + brightMagenta: 31.7 + brightCyan: 42.8 + brightWhite: 81.9 diff --git a/themes/celestial-charm-theme.yaml b/themes/celestial-charm-theme.yaml new file mode 100644 index 00000000..2d97a90e --- /dev/null +++ b/themes/celestial-charm-theme.yaml @@ -0,0 +1,49 @@ +name: "celestial-charm-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#281016" + fg: "#FFA2B8" + black: "#502832" + red: "#A45A74" + green: "#B39987" + yellow: "#A47F7C" + blue: "#AD5F74" + magenta: "#D78594" + cyan: "#B39487" + white: "#CA988E" + brightBlack: "#703A47" + brightRed: "#A45A74" + brightGreen: "#B39987" + brightYellow: "#A47F7C" + brightBlue: "#AD5F74" + brightMagenta: "#D78594" + brightCyan: "#B39487" + brightWhite: "#D2738A" +meta: + mode: "dark" + accent: "red" + hue: 5 + contrast: + fg: 65.6 + black: 0 + red: 26.9 + green: 48.6 + yellow: 37.4 + blue: 29.5 + magenta: 47.9 + cyan: 46.8 + white: 51.7 + brightBlack: 11.2 + brightRed: 26.9 + brightGreen: 48.6 + brightYellow: 37.4 + brightBlue: 29.5 + brightMagenta: 47.9 + brightCyan: 46.8 + brightWhite: 41.7 diff --git a/themes/ceo.yaml b/themes/ceo.yaml new file mode 100644 index 00000000..8c2a600a --- /dev/null +++ b/themes/ceo.yaml @@ -0,0 +1,49 @@ +name: "Ceo" +source: + marketplace_id: "ceo.ceo" + version: "1.0.2" + installs: 51 + author: "ceo" + repo: "https://github.com/Ceo-Sammarco/Ceo-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ceo.ceo" +colors: + bg: "#1C1C21" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.9 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.1 + cyan: 46.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 37.9 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/cerydra.yaml b/themes/cerydra.yaml new file mode 100644 index 00000000..404ebd82 --- /dev/null +++ b/themes/cerydra.yaml @@ -0,0 +1,49 @@ +name: "cerydra" +source: + marketplace_id: "Michii.cerydra" + version: "1.0.0" + installs: 59 + author: "Michii" + repo: "https://github.com/hi-doki/cerydra" + url: "https://marketplace.visualstudio.com/items?itemName=Michii.cerydra" +colors: + bg: "#090D10" + fg: "#F5FBFF" + black: "#090D10" + red: "#E17F7F" + green: "#7FDCA4" + yellow: "#F7C97F" + blue: "#81B7DD" + magenta: "#A3D6F7" + cyan: "#8FD0FF" + white: "#F5FBFF" + brightBlack: "#3A4A5A" + brightRed: "#E17F7F" + brightGreen: "#7FDCA4" + brightYellow: "#F7C97F" + brightBlue: "#5FA6D1" + brightMagenta: "#A3D6F7" + brightCyan: "#CBE7FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.3 + black: 0 + red: 48.3 + green: 73.8 + yellow: 77.9 + blue: 59.7 + magenta: 77.5 + cyan: 73.5 + white: 104.3 + brightBlack: 11.1 + brightRed: 48.3 + brightGreen: 73.8 + brightYellow: 77.9 + brightBlue: 49.9 + brightMagenta: 77.5 + brightCyan: 89.5 + brightWhite: 107.6 diff --git a/themes/cfl-one.yaml b/themes/cfl-one.yaml new file mode 100644 index 00000000..50e63d7e --- /dev/null +++ b/themes/cfl-one.yaml @@ -0,0 +1,49 @@ +name: "cfl-one" +source: + marketplace_id: "YamasInvitation.Colorful-One" + version: "0.2.3" + installs: 237 + author: "YamasInvitation" + repo: "https://github.com/trapsixteen/cfl-one" + url: "https://marketplace.visualstudio.com/items?itemName=YamasInvitation.Colorful-One" +colors: + bg: "#1D1D1D" + fg: "#CFCFCF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#717171" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FEFEFE" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75.8 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 26.1 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 105.5 diff --git a/themes/chai-light.yaml b/themes/chai-light.yaml new file mode 100644 index 00000000..6eb965a6 --- /dev/null +++ b/themes/chai-light.yaml @@ -0,0 +1,49 @@ +name: "Chai Light" +source: + marketplace_id: "hiteshchoudharycode.chai-theme" + version: "0.2.0" + installs: 167423 + author: "hitesh choudhary" + repo: "https://github.com/hiteshchoudhary/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hiteshchoudharycode.chai-theme" +colors: + bg: "#F7F7F7" + fg: "#383A42" + black: "#373A41" + red: "#D52652" + green: "#239749" + yellow: "#DF621B" + blue: "#275FE4" + magenta: "#823EF0" + cyan: "#26608C" + white: "#B9BAC1" + brightBlack: "#676A77" + brightRed: "#FF637F" + brightGreen: "#3CBC66" + brightYellow: "#C5A231" + brightBlue: "#0099E0" + brightMagenta: "#CE32C0" + brightCyan: "#6D92BA" + brightWhite: "#D3D3D3" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 91.4 + black: 91.5 + red: 67.8 + green: 59.8 + yellow: 57.6 + blue: 71.8 + magenta: 71.1 + cyan: 78 + white: 32.3 + brightBlack: 72 + brightRed: 49.1 + brightGreen: 43 + brightYellow: 43.2 + brightBlue: 53.3 + brightMagenta: 63.9 + brightCyan: 54.9 + brightWhite: 18.5 diff --git a/themes/chalk.yaml b/themes/chalk.yaml new file mode 100644 index 00000000..2c08700b --- /dev/null +++ b/themes/chalk.yaml @@ -0,0 +1,49 @@ +name: "Chalk" +source: + marketplace_id: "emmakrause.chalk" + version: "1.0.0" + installs: 3042 + author: "Emma Krause" + repo: "https://github.com/emkrause14/chalk-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=emmakrause.chalk" +colors: + bg: "#3B3B3B" + fg: "#DDDCDC" + black: "#787878" + red: "#F9A1A0" + green: "#B7DAB9" + yellow: "#FEDB8F" + blue: "#8BBADC" + magenta: "#DEBDDD" + cyan: "#88DBDC" + white: "#DDDCDC" + brightBlack: "#787878" + brightRed: "#F9A1A0" + brightGreen: "#B7DAB9" + brightYellow: "#FEDB8F" + brightBlue: "#8BBADC" + brightMagenta: "#DEBDDD" + brightCyan: "#88DBDC" + brightWhite: "#DDDCDC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 77.3 + black: 22.8 + red: 56.3 + green: 70.5 + yellow: 79.1 + blue: 53.8 + magenta: 64.6 + cyan: 68.2 + white: 77.3 + brightBlack: 22.8 + brightRed: 56.3 + brightGreen: 70.5 + brightYellow: 79.1 + brightBlue: 53.8 + brightMagenta: 64.6 + brightCyan: 68.2 + brightWhite: 77.3 diff --git a/themes/chalkish.yaml b/themes/chalkish.yaml new file mode 100644 index 00000000..c7713ce1 --- /dev/null +++ b/themes/chalkish.yaml @@ -0,0 +1,49 @@ +name: "Chalkish" +source: + marketplace_id: "mikonunez.chalkish" + version: "0.0.4" + installs: 192 + author: "Miko Nuñez" + repo: "https://github.com/mikonunyez/chalkish-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=mikonunez.chalkish" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#1F1F1F" + red: "#F58E8E" + green: "#A9D3AB" + yellow: "#FED37E" + blue: "#7AABD4" + magenta: "#D6ADD5" + cyan: "#79D4D5" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F58E8E" + brightGreen: "#A9D3AB" + brightYellow: "#FED37E" + brightBlue: "#7AABD4" + brightMagenta: "#D6ADD5" + brightCyan: "#79D4D5" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 55.3 + green: 71.7 + yellow: 81.6 + blue: 52.2 + magenta: 63.3 + cyan: 70 + white: 78.7 + brightBlack: 21.2 + brightRed: 55.3 + brightGreen: 71.7 + brightYellow: 81.6 + brightBlue: 52.2 + brightMagenta: 63.3 + brightCyan: 70 + brightWhite: 78.7 diff --git a/themes/charcoal.yaml b/themes/charcoal.yaml new file mode 100644 index 00000000..e2204dca --- /dev/null +++ b/themes/charcoal.yaml @@ -0,0 +1,49 @@ +name: "Charcoal" +source: + marketplace_id: "tobiasalthoff.charcoal" + version: "1.0.4" + installs: 1134 + author: "Tobias Althoff" + repo: "https://github.com/tobiasalthoff/vscode-charcoal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tobiasalthoff.charcoal" +colors: + bg: "#262B30" + fg: "#BCD1E4" + black: "#000000" + red: "#EB0A42" + green: "#3AA655" + yellow: "#FBE870" + blue: "#4771E6" + magenta: "#F651A6" + cyan: "#76D6EA" + white: "#F8F9FA" + brightBlack: "#6C757D" + brightRed: "#FFADAD" + brightGreen: "#CAFFBF" + brightYellow: "#FDFFB6" + brightBlue: "#A0C4FF" + brightMagenta: "#FFC6FF" + brightCyan: "#9BF6FF" + brightWhite: "#FFFFFC" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 73.1 + black: 0 + red: 29.1 + green: 40.2 + yellow: 88.1 + blue: 27.6 + magenta: 40.2 + cyan: 69.7 + white: 99.9 + brightBlack: 25.2 + brightRed: 66.2 + brightGreen: 94.7 + brightYellow: 100.8 + brightBlue: 66.1 + brightMagenta: 79.3 + brightCyan: 88.7 + brightWhite: 103.8 diff --git a/themes/charli-health-dark.yaml b/themes/charli-health-dark.yaml new file mode 100644 index 00000000..c593eee0 --- /dev/null +++ b/themes/charli-health-dark.yaml @@ -0,0 +1,49 @@ +name: "CHARLI Health Dark" +source: + marketplace_id: "lucidlabs.charli-health-theme" + version: "1.2.0" + installs: 14 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.charli-health-theme" +colors: + bg: "#1E1A24" + fg: "#F0E8E0" + black: "#161220" + red: "#F58F85" + green: "#4DCDB8" + yellow: "#FCC88F" + blue: "#4A9AD4" + magenta: "#F1A8C9" + cyan: "#34B9A4" + white: "#F0E8E0" + brightBlack: "#9692A3" + brightRed: "#F5A49C" + brightGreen: "#6DDBC8" + brightYellow: "#FDD9A8" + brightBlue: "#6DB0E0" + brightMagenta: "#F5C0D8" + brightCyan: "#5BC5BC" + brightWhite: "#F0E8E0" +meta: + mode: "dark" + accent: "orange" + hue: 303 + contrast: + fg: 92.1 + black: 0 + red: 55.6 + green: 63.6 + yellow: 77.4 + blue: 43 + magenta: 65.5 + cyan: 52.9 + white: 92.1 + brightBlack: 43.2 + brightRed: 63.1 + brightGreen: 72.3 + brightYellow: 85.4 + brightBlue: 54.3 + brightMagenta: 75.7 + brightCyan: 60.6 + brightWhite: 92.1 diff --git a/themes/charli-health-light.yaml b/themes/charli-health-light.yaml new file mode 100644 index 00000000..d506c848 --- /dev/null +++ b/themes/charli-health-light.yaml @@ -0,0 +1,49 @@ +name: "CHARLI Health Light" +source: + marketplace_id: "lucidlabs.charli-health-theme" + version: "1.2.0" + installs: 14 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.charli-health-theme" +colors: + bg: "#FFF6ED" + fg: "#58595B" + black: "#161220" + red: "#C0524A" + green: "#1B7264" + yellow: "#9E7520" + blue: "#1D76B8" + magenta: "#9E4470" + cyan: "#186B5E" + white: "#F0E8E0" + brightBlack: "#7A7A7A" + brightRed: "#B04840" + brightGreen: "#238577" + brightYellow: "#B88A30" + brightBlue: "#1D76B8" + brightMagenta: "#B0507E" + brightCyan: "#1B7264" + brightWhite: "#58595B" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 79.7 + black: 100.4 + red: 66.8 + green: 74 + yellow: 64.1 + blue: 68.5 + magenta: 74.8 + cyan: 76.7 + white: 0 + brightBlack: 65.1 + brightRed: 72 + brightGreen: 66.1 + brightYellow: 53.5 + brightBlue: 68.5 + brightMagenta: 68.8 + brightCyan: 74 + brightWhite: 79.7 diff --git a/themes/chatgpt-theme.yaml b/themes/chatgpt-theme.yaml new file mode 100644 index 00000000..fe87f87a --- /dev/null +++ b/themes/chatgpt-theme.yaml @@ -0,0 +1,49 @@ +name: "ChatGPT Theme" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 80 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" +colors: + bg: "#171717" + fg: "#E9E9E9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 92.5 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 106.9 diff --git a/themes/cheese-n-all.yaml b/themes/cheese-n-all.yaml new file mode 100644 index 00000000..e27f9163 --- /dev/null +++ b/themes/cheese-n-all.yaml @@ -0,0 +1,49 @@ +name: "cheese n all" +source: + marketplace_id: "Jejunum.8008" + version: "0.0.1" + installs: 991 + author: "Jejunum" + repo: "https://github.com/Nathan-Hu-2/8008-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Jejunum.8008" +colors: + bg: "#1D222A" + fg: "#939EAE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFFFFF" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFB2B2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#67FF8A" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 46.9 + black: 0 + red: 25.3 + green: 51.6 + yellow: 105.5 + blue: 26.1 + magenta: 28.4 + cyan: 46.2 + white: 69.7 + brightBlack: 20.7 + brightRed: 37.2 + brightGreen: 87.3 + brightYellow: 94.3 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/cheesewaffle-blue.yaml b/themes/cheesewaffle-blue.yaml new file mode 100644 index 00000000..1d6edae2 --- /dev/null +++ b/themes/cheesewaffle-blue.yaml @@ -0,0 +1,49 @@ +name: "Cheesewaffle Blue" +source: + marketplace_id: "Cheesewaffle.cheesewaffle-color-theme" + version: "1.2.2" + installs: 84 + author: "Cheesewaffle" + repo: "https://github.com/aldenluthfi/cheesecolortheme" + url: "https://marketplace.visualstudio.com/items?itemName=Cheesewaffle.cheesewaffle-color-theme" +colors: + bg: "#18181B" + fg: "#FAFAFA" + black: "#000000" + red: "#DC2625" + green: "#65A30C" + yellow: "#EBB305" + blue: "#1C4ED8" + magenta: "#C125D3" + cyan: "#0A91B1" + white: "#D4D4D8" + brightBlack: "#3F3F46" + brightRed: "#F87171" + brightGreen: "#A3E635" + brightYellow: "#FFEF8A" + brightBlue: "#3C82F6" + brightMagenta: "#E979F9" + brightCyan: "#24D3EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 103.4 + black: 0 + red: 29 + green: 43.1 + yellow: 65.1 + blue: 18.6 + magenta: 29.6 + cyan: 36.7 + white: 79.5 + brightBlack: 0 + brightRed: 48 + brightGreen: 78.6 + brightYellow: 95.2 + brightBlue: 36.7 + brightMagenta: 53.1 + brightCyan: 68.5 + brightWhite: 106.7 diff --git a/themes/cheetha-green.yaml b/themes/cheetha-green.yaml new file mode 100644 index 00000000..99d3d706 --- /dev/null +++ b/themes/cheetha-green.yaml @@ -0,0 +1,49 @@ +name: "Cheetha Green" +source: + marketplace_id: "CheethaCoder.cheethatheme" + version: "0.0.1" + installs: 39 + author: "Cheetha Coder" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CheethaCoder.cheethatheme" +colors: + bg: "#000000" + fg: "#EA3434" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 34.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/cherry-blossom-airy.yaml b/themes/cherry-blossom-airy.yaml new file mode 100644 index 00000000..03c9708f --- /dev/null +++ b/themes/cherry-blossom-airy.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Airy" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#FFFFFF" + fg: "#5C5C5C" + black: "#5C5C5C" + red: "#FFB7C5" + green: "#A2D8A2" + yellow: "#FFD6A2" + blue: "#A2C8FF" + magenta: "#FFC8D6" + cyan: "#A2D8D8" + white: "#EDEDED" + brightBlack: "#A3A3A3" + brightRed: "#FADADD" + brightGreen: "#D6FFD6" + brightYellow: "#FFE4B7" + brightBlue: "#D6E4FF" + brightMagenta: "#FFE4E6" + brightCyan: "#D6FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 83 + black: 83 + red: 28.2 + green: 28.1 + yellow: 17.8 + blue: 30.8 + magenta: 21.4 + cyan: 26.1 + white: 8.2 + brightBlack: 49.5 + brightRed: 14.9 + brightGreen: 0 + brightYellow: 11.5 + brightBlue: 13.9 + brightMagenta: 9.8 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/cherry-blossom-breeze.yaml b/themes/cherry-blossom-breeze.yaml new file mode 100644 index 00000000..81eeaa4d --- /dev/null +++ b/themes/cherry-blossom-breeze.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Breeze" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#1A2030" + fg: "#EFF1F5" + black: "#1D2438" + red: "#E296AF" + green: "#A8D0E3" + yellow: "#F0D1A3" + blue: "#92B2E5" + magenta: "#C79FD0" + cyan: "#86C4D2" + white: "#D9E0F0" + brightBlack: "#536180" + brightRed: "#EAA8BF" + brightGreen: "#BADCED" + brightYellow: "#F6DEBC" + brightBlue: "#A4BFED" + brightMagenta: "#D5B2DA" + brightCyan: "#A2D5E0" + brightWhite: "#EFF1F5" +meta: + mode: "dark" + accent: "red" + hue: 268 + contrast: + fg: 96.4 + black: 0 + red: 55.1 + green: 72.3 + yellow: 79.2 + blue: 57.6 + magenta: 55.5 + cyan: 63.2 + white: 85.5 + brightBlack: 18.8 + brightRed: 63.2 + brightGreen: 80 + brightYellow: 86.5 + brightBlue: 65.1 + brightMagenta: 64.9 + brightCyan: 73.8 + brightWhite: 96.4 diff --git a/themes/cherry-blossom-dark-reflection.yaml b/themes/cherry-blossom-dark-reflection.yaml new file mode 100644 index 00000000..858797bd --- /dev/null +++ b/themes/cherry-blossom-dark-reflection.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Dark Reflection" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#151820" + fg: "#E8E9F0" + black: "#171B24" + red: "#F9BECA" + green: "#A8D6E2" + yellow: "#F8D3A7" + blue: "#7AACD6" + magenta: "#D8A8C8" + cyan: "#91C7D9" + white: "#D8DCE9" + brightBlack: "#596377" + brightRed: "#FACFD8" + brightGreen: "#C5E3EB" + brightYellow: "#F9DFC2" + brightBlue: "#A3C6E5" + brightMagenta: "#E5C6DB" + brightCyan: "#B4D7E4" + brightWhite: "#E8E9F0" +meta: + mode: "dark" + accent: "indigo" + hue: 269 + contrast: + fg: 92.6 + black: 0 + red: 75.4 + green: 76 + yellow: 82.4 + blue: 53.4 + magenta: 61.8 + cyan: 66.8 + white: 84.4 + brightBlack: 20.5 + brightRed: 82.9 + brightGreen: 85.3 + brightYellow: 88.7 + brightBlue: 68.6 + brightMagenta: 76.2 + brightCyan: 77.7 + brightWhite: 92.6 diff --git a/themes/cherry-blossom-dark-vivid.yaml b/themes/cherry-blossom-dark-vivid.yaml new file mode 100644 index 00000000..0c047bea --- /dev/null +++ b/themes/cherry-blossom-dark-vivid.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Dark Vivid" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#1D1E26" + fg: "#D9D9D9" + black: "#2A2B34" + red: "#FDA4BA" + green: "#9CDBA8" + yellow: "#F5D6A0" + blue: "#7EB0E8" + magenta: "#D592BC" + cyan: "#78B3CD" + white: "#D9D9D9" + brightBlack: "#373740" + brightRed: "#FDB9CA" + brightGreen: "#B7E7C0" + brightYellow: "#F9E3BD" + brightBlue: "#A2C5EF" + brightMagenta: "#E3B1D0" + brightCyan: "#9CCADF" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 81.6 + black: 0 + red: 65.3 + green: 74 + yellow: 82.3 + blue: 55.6 + magenta: 52.5 + cyan: 54.9 + white: 81.6 + brightBlack: 0 + brightRed: 73.4 + brightGreen: 83.1 + brightYellow: 89.5 + brightBlue: 67.8 + brightMagenta: 66.4 + brightCyan: 68.6 + brightWhite: 97.4 diff --git a/themes/cherry-blossom-dark.yaml b/themes/cherry-blossom-dark.yaml new file mode 100644 index 00000000..b934cd54 --- /dev/null +++ b/themes/cherry-blossom-dark.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Dark" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#1A1A1E" + fg: "#F2F2F7" + black: "#1D1D22" + red: "#F8B2CC" + green: "#8ED9A9" + yellow: "#FFD87D" + blue: "#7EB5E7" + magenta: "#D297D6" + cyan: "#7CE2E1" + white: "#E8E8EF" + brightBlack: "#5C5C66" + brightRed: "#FAC2D8" + brightGreen: "#A5E6BD" + brightYellow: "#FFE49F" + brightBlue: "#9DC6ED" + brightMagenta: "#E0B1E0" + brightCyan: "#9FEDED" + brightWhite: "#F2F2F7" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 98.2 + black: 0 + red: 70.6 + green: 72.5 + yellow: 84.4 + blue: 58.1 + magenta: 55.5 + cyan: 77.8 + white: 91.9 + brightBlack: 17.8 + brightRed: 77.5 + brightGreen: 81.3 + brightYellow: 90.4 + brightBlue: 68.2 + brightMagenta: 67.3 + brightCyan: 86.2 + brightWhite: 98.2 diff --git a/themes/cherry-blossom-dimmed-dusk.yaml b/themes/cherry-blossom-dimmed-dusk.yaml new file mode 100644 index 00000000..f6cfa54d --- /dev/null +++ b/themes/cherry-blossom-dimmed-dusk.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Dimmed Dusk" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#141414" + fg: "#C6CAC9" + black: "#1A1A1A" + red: "#A34242" + green: "#4F9E64" + yellow: "#C4B483" + blue: "#4A8399" + magenta: "#9A5085" + cyan: "#36575E" + white: "#C6CAC9" + brightBlack: "#404040" + brightRed: "#C24A4A" + brightGreen: "#5FBE78" + brightYellow: "#D9C999" + brightBlue: "#5CA5C0" + brightMagenta: "#B266A1" + brightCyan: "#9ED4E0" + brightWhite: "#D9E3F4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.2 + black: 0 + red: 21.1 + green: 41.1 + yellow: 61.4 + blue: 32.1 + magenta: 24.2 + cyan: 14.3 + white: 73.2 + brightBlack: 7.7 + brightRed: 28.4 + brightGreen: 56.2 + brightYellow: 73.6 + brightBlue: 47.9 + brightMagenta: 34.3 + brightCyan: 74.4 + brightWhite: 88.5 diff --git a/themes/cherry-blossom-dimmed.yaml b/themes/cherry-blossom-dimmed.yaml new file mode 100644 index 00000000..fee77718 --- /dev/null +++ b/themes/cherry-blossom-dimmed.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Dimmed" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#0D0D0D" + fg: "#F2F0F2" + black: "#1F1F1F" + red: "#D96A7E" + green: "#7DAD89" + yellow: "#BF8563" + blue: "#7DA6A6" + magenta: "#B07DA6" + cyan: "#7DA6A6" + white: "#F2F0F2" + brightBlack: "#735448" + brightRed: "#F24B88" + brightGreen: "#8FD19E" + brightYellow: "#F2A999" + brightBlue: "#8EBDC5" + brightMagenta: "#C88CBD" + brightCyan: "#8EBDC5" + brightWhite: "#F2F0F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 98.2 + black: 0 + red: 41.2 + green: 51.6 + yellow: 43.5 + blue: 49.8 + magenta: 41 + cyan: 49.8 + white: 98.2 + brightBlack: 18.3 + brightRed: 40.9 + brightGreen: 69.6 + brightYellow: 65.5 + brightBlue: 62.1 + brightMagenta: 50.2 + brightCyan: 62.1 + brightWhite: 98.2 diff --git a/themes/cherry-blossom-night-harmony.yaml b/themes/cherry-blossom-night-harmony.yaml new file mode 100644 index 00000000..b26b571e --- /dev/null +++ b/themes/cherry-blossom-night-harmony.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Night Harmony" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#16172E" + fg: "#F8FAFF" + black: "#1A1B34" + red: "#E06796" + green: "#5DA68C" + yellow: "#D4964C" + blue: "#4A88C7" + magenta: "#C0579D" + cyan: "#4BA7BE" + white: "#DBE6F7" + brightBlack: "#5D6A85" + brightRed: "#E87CA6" + brightGreen: "#7FCEA8" + brightYellow: "#E6B575" + brightBlue: "#78A8DB" + brightMagenta: "#D07EB3" + brightCyan: "#6CBFD2" + brightWhite: "#F8FAFF" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 103.2 + black: 0 + red: 41.7 + green: 45.7 + yellow: 51.1 + blue: 35.8 + magenta: 32.5 + cyan: 47.3 + white: 89.8 + brightBlack: 23.4 + brightRed: 49.1 + brightGreen: 66.3 + brightYellow: 66 + brightBlue: 51.8 + brightMagenta: 45.9 + brightCyan: 60.1 + brightWhite: 103.2 diff --git a/themes/cherry-blossom-night.yaml b/themes/cherry-blossom-night.yaml new file mode 100644 index 00000000..06fe2db0 --- /dev/null +++ b/themes/cherry-blossom-night.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Night" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#18182E" + fg: "#FFFFFF" + black: "#1E1E36" + red: "#FF9FB2" + green: "#FFD9C0" + yellow: "#FFD0D0" + blue: "#A7CAEC" + magenta: "#D7A5BC" + cyan: "#B8E6FF" + white: "#FFFFFF" + brightBlack: "#433F4D" + brightRed: "#FFB5C5" + brightGreen: "#FFE4D0" + brightYellow: "#FFE0E0" + brightBlue: "#C0DBFF" + brightMagenta: "#EBBDD0" + brightCyan: "#CEEEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 282 + contrast: + fg: 106.5 + black: 0 + red: 64.2 + green: 86.7 + yellow: 83.5 + blue: 70.8 + magenta: 59.8 + cyan: 86.1 + white: 106.5 + brightBlack: 7.4 + brightRed: 72.6 + brightGreen: 92 + brightYellow: 90.9 + brightBlue: 81.9 + brightMagenta: 72.7 + brightCyan: 92.2 + brightWhite: 106.5 diff --git a/themes/cherry-blossom-osaka-light.yaml b/themes/cherry-blossom-osaka-light.yaml new file mode 100644 index 00000000..bfabe00f --- /dev/null +++ b/themes/cherry-blossom-osaka-light.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Osaka Light" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#FAF8F5" + fg: "#5C5248" + black: "#3B342E" + red: "#C75B45" + green: "#7A8C51" + yellow: "#D68C45" + blue: "#4F7E91" + magenta: "#A66887" + cyan: "#5C9199" + white: "#9E948A" + brightBlack: "#6B6158" + brightRed: "#DA6C55" + brightGreen: "#8FA663" + brightYellow: "#E89E5A" + brightBlue: "#6596AA" + brightMagenta: "#BF80A1" + brightCyan: "#73ABB5" + brightWhite: "#D4CEC5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 82.4 + black: 93.9 + red: 64.2 + green: 60.3 + yellow: 48.5 + blue: 66.7 + magenta: 65.1 + cyan: 58.6 + white: 52.3 + brightBlack: 76.1 + brightRed: 56.4 + brightGreen: 48.1 + brightYellow: 39.4 + brightBlue: 55.5 + brightMagenta: 53.5 + brightCyan: 45.9 + brightWhite: 21.7 diff --git a/themes/cherry-blossom-osaka.yaml b/themes/cherry-blossom-osaka.yaml new file mode 100644 index 00000000..fdd191cb --- /dev/null +++ b/themes/cherry-blossom-osaka.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Osaka" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#1C2025" + fg: "#CED4DA" + black: "#16191D" + red: "#D98C71" + green: "#8ABF94" + yellow: "#E0C068" + blue: "#7DA3C4" + magenta: "#CEB195" + cyan: "#7DA3C4" + white: "#ADB5BD" + brightBlack: "#495057" + brightRed: "#EEBCB0" + brightGreen: "#A8D5B1" + brightYellow: "#EAD496" + brightBlue: "#9EC3E0" + brightMagenta: "#E6CCB2" + brightCyan: "#9EC3E0" + brightWhite: "#CED4DA" +meta: + mode: "dark" + accent: "yellow" + hue: 254 + contrast: + fg: 77.9 + black: 0 + red: 48.5 + green: 59 + yellow: 68.4 + blue: 48.2 + magenta: 60.8 + cyan: 48.2 + white: 59.7 + brightBlack: 11.8 + brightRed: 70.9 + brightGreen: 72.5 + brightYellow: 79.3 + brightBlue: 65.6 + brightMagenta: 76.2 + brightCyan: 65.6 + brightWhite: 77.9 diff --git a/themes/cherry-blossom-sky-vibrant.yaml b/themes/cherry-blossom-sky-vibrant.yaml new file mode 100644 index 00000000..86a2d60a --- /dev/null +++ b/themes/cherry-blossom-sky-vibrant.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Sky Vibrant" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#F5F9FF" + fg: "#192536" + black: "#192536" + red: "#E06796" + green: "#5DA68C" + yellow: "#D4964C" + blue: "#4A88C7" + magenta: "#C0579D" + cyan: "#4BA7BE" + white: "#F5F9FF" + brightBlack: "#8CA2BC" + brightRed: "#E87CA6" + brightGreen: "#7FCEA8" + brightYellow: "#E6B575" + brightBlue: "#78A8DB" + brightMagenta: "#D07EB3" + brightCyan: "#6CBFD2" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 98.5 + black: 98.5 + red: 54.9 + green: 51 + yellow: 45.8 + blue: 60.8 + magenta: 64 + cyan: 49.4 + white: 0 + brightBlack: 47.3 + brightRed: 47.7 + brightGreen: 31.1 + brightYellow: 31.4 + brightBlue: 45 + brightMagenta: 50.8 + brightCyan: 37 + brightWhite: 0 diff --git a/themes/cherry-blossom-spring.yaml b/themes/cherry-blossom-spring.yaml new file mode 100644 index 00000000..8060d697 --- /dev/null +++ b/themes/cherry-blossom-spring.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Spring" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#F0F5FA" + fg: "#2D3748" + black: "#1A202C" + red: "#FC8181" + green: "#68D391" + yellow: "#F6AD55" + blue: "#63B3ED" + magenta: "#D53F8C" + cyan: "#4FD1C5" + white: "#CBD5E0" + brightBlack: "#4A5568" + brightRed: "#F56565" + brightGreen: "#48BB78" + brightYellow: "#ED8936" + brightBlue: "#4299E1" + brightMagenta: "#B83280" + brightCyan: "#38B2AC" + brightWhite: "#E2E8F0" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 91.1 + black: 96.9 + red: 41.2 + green: 28.4 + yellow: 29.7 + blue: 38.4 + magenta: 62 + cyan: 28.5 + white: 16.5 + brightBlack: 79.8 + brightRed: 49.9 + brightGreen: 41.1 + brightYellow: 43.2 + brightBlue: 50.7 + brightMagenta: 70 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/cherry-blossom-twilight.yaml b/themes/cherry-blossom-twilight.yaml new file mode 100644 index 00000000..28aac488 --- /dev/null +++ b/themes/cherry-blossom-twilight.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Twilight" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#232026" + fg: "#F0E6EF" + black: "#201D23" + red: "#DF88A7" + green: "#84BD8B" + yellow: "#EDBE80" + blue: "#8992D4" + magenta: "#C87D9D" + cyan: "#8CCBED" + white: "#E0D6E0" + brightBlack: "#6E636E" + brightRed: "#E7A4BA" + brightGreen: "#A2D1A7" + brightYellow: "#EDCEA1" + brightBlue: "#A5ACE5" + brightMagenta: "#D898B4" + brightCyan: "#A3D5F3" + brightWhite: "#F0E6EF" +meta: + mode: "dark" + accent: "red" + hue: 308 + contrast: + fg: 91.2 + black: 0 + red: 49.8 + green: 57.1 + yellow: 69.9 + blue: 43.6 + magenta: 42.3 + cyan: 68 + white: 81.2 + brightBlack: 20.9 + brightRed: 61 + brightGreen: 69.5 + brightYellow: 77.3 + brightBlue: 57 + brightMagenta: 54.2 + brightCyan: 74.8 + brightWhite: 91.2 diff --git a/themes/cherry-blossom-warm.yaml b/themes/cherry-blossom-warm.yaml new file mode 100644 index 00000000..29762a88 --- /dev/null +++ b/themes/cherry-blossom-warm.yaml @@ -0,0 +1,49 @@ +name: "Cherry Blossom Warm" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2129 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" +colors: + bg: "#FFF5F8" + fg: "#2A1F28" + black: "#2A1F28" + red: "#D95D92" + green: "#6BAD9A" + yellow: "#D9A95D" + blue: "#5D92D9" + magenta: "#B15D95" + cyan: "#5DB1D9" + white: "#FFF0F5" + brightBlack: "#AA8699" + brightRed: "#E678A5" + brightGreen: "#87C4B1" + brightYellow: "#EBBE7D" + brightBlue: "#7DABEB" + brightMagenta: "#CE7DAD" + brightCyan: "#7DCEEB" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 98.2 + black: 98.2 + red: 57.8 + green: 46.2 + yellow: 37.5 + blue: 54.4 + magenta: 65 + cyan: 42.5 + white: 0 + brightBlack: 54.5 + brightRed: 48.4 + brightGreen: 33.8 + brightYellow: 26.4 + brightBlue: 41.9 + brightMagenta: 51 + brightCyan: 27.7 + brightWhite: 0 diff --git a/themes/cherry-delite.yaml b/themes/cherry-delite.yaml new file mode 100644 index 00000000..863efc3b --- /dev/null +++ b/themes/cherry-delite.yaml @@ -0,0 +1,49 @@ +name: "Cherry Delite" +source: + marketplace_id: "pshr1.cherry-delite" + version: "0.1.1" + installs: 77 + author: "pshr1" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=pshr1.cherry-delite" +colors: + bg: "#191919" + fg: "#ADADAD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 56.7 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/cherry-midnight.yaml b/themes/cherry-midnight.yaml new file mode 100644 index 00000000..e75175d1 --- /dev/null +++ b/themes/cherry-midnight.yaml @@ -0,0 +1,49 @@ +name: "Cherry Midnight" +source: + marketplace_id: "nullxception.cherry-theme" + version: "0.2.7" + installs: 8306 + author: "Nauval Rizky" + repo: "https://github.com/nullxception/cherry-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=nullxception.cherry-theme" +colors: + bg: "#101017" + fg: "#BDC3DF" + black: "#33333F" + red: "#FF568E" + green: "#64DE83" + yellow: "#EFFF73" + blue: "#73A9FF" + magenta: "#946FF7" + cyan: "#62C6DA" + white: "#DEDEEF" + brightBlack: "#43435A" + brightRed: "#FF69A2" + brightGreen: "#73DE8A" + brightYellow: "#F3FF85" + brightBlue: "#85B6FF" + brightMagenta: "#A481F7" + brightCyan: "#71C2D9" + brightWhite: "#EBEBF0" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 70.5 + black: 0 + red: 45.5 + green: 72.1 + yellow: 100.8 + blue: 55 + magenta: 38.2 + cyan: 63.9 + white: 87 + brightBlack: 9.7 + brightRed: 49.9 + brightGreen: 73 + brightYellow: 101.6 + brightBlue: 61.5 + brightMagenta: 45.2 + brightCyan: 62.9 + brightWhite: 94.6 diff --git a/themes/cherry-wild-theme.yaml b/themes/cherry-wild-theme.yaml new file mode 100644 index 00000000..63a09d80 --- /dev/null +++ b/themes/cherry-wild-theme.yaml @@ -0,0 +1,49 @@ +name: "Cherry Wild Theme" +source: + marketplace_id: "yyynnn.cherry-wild-theme" + version: "1.2.0" + installs: 731 + author: "yyynnn" + repo: "https://github.com/yyynnn/cherry-wild-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=yyynnn.cherry-wild-theme" +colors: + bg: "#2B1F32" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 313 + contrast: + fg: 105.2 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 25.7 + magenta: 28.1 + cyan: 45.9 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.9 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.7 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/cherry.yaml b/themes/cherry.yaml new file mode 100644 index 00000000..ae7c4f66 --- /dev/null +++ b/themes/cherry.yaml @@ -0,0 +1,49 @@ +name: "Cherry" +source: + marketplace_id: "nullxception.cherry-theme" + version: "0.2.7" + installs: 8306 + author: "Nauval Rizky" + repo: "https://github.com/nullxception/cherry-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=nullxception.cherry-theme" +colors: + bg: "#1F1F2A" + fg: "#BDC3DF" + black: "#43435A" + red: "#FF568E" + green: "#64DE83" + yellow: "#EFFF73" + blue: "#73A9FF" + magenta: "#946FF7" + cyan: "#62C6DA" + white: "#DEDEEF" + brightBlack: "#53536B" + brightRed: "#FF69A2" + brightGreen: "#73DE8A" + brightYellow: "#F3FF85" + brightBlue: "#85B6FF" + brightMagenta: "#A481F7" + brightCyan: "#71C2D9" + brightWhite: "#EBEBF0" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 68.8 + black: 8.1 + red: 43.9 + green: 70.4 + yellow: 99.1 + blue: 53.3 + magenta: 36.6 + cyan: 62.3 + white: 85.3 + brightBlack: 14 + brightRed: 48.2 + brightGreen: 71.4 + brightYellow: 100 + brightBlue: 59.8 + brightMagenta: 43.5 + brightCyan: 61.3 + brightWhite: 93 diff --git a/themes/cherryblossom.yaml b/themes/cherryblossom.yaml new file mode 100644 index 00000000..e71a574a --- /dev/null +++ b/themes/cherryblossom.yaml @@ -0,0 +1,49 @@ +name: "cherryBlossom" +source: + marketplace_id: "NaClara117.cherryblossom" + version: "0.0.1" + installs: 2234 + author: "NaClara" + repo: "https://github.com/AnaXP/cherryBlossom" + url: "https://marketplace.visualstudio.com/items?itemName=NaClara117.cherryblossom" +colors: + bg: "#201708" + fg: "#F5E9D7" + black: "#000000" + red: "#FF0000" + green: "#5DFF00" + yellow: "#FFFF00" + blue: "#0034FF" + magenta: "#FF005C" + cyan: "#00FF93" + white: "#F7EEE2" + brightBlack: "#0D0902" + brightRed: "#FF5050" + brightGreen: "#95FF58" + brightYellow: "#FFFF59" + brightBlue: "#5899FF" + brightMagenta: "#FF3E83" + brightCyan: "#55FFAF" + brightWhite: "#F7EEE2" +meta: + mode: "dark" + accent: "purple" + hue: 79 + contrast: + fg: 93.3 + black: 0 + red: 36.3 + green: 86.8 + yellow: 101.5 + blue: 17.9 + magenta: 37.1 + cyan: 86.8 + white: 96.3 + brightBlack: 0 + brightRed: 42.3 + brightGreen: 90.4 + brightYellow: 101.9 + brightBlue: 46.6 + brightMagenta: 41.1 + brightCyan: 88.8 + brightWhite: 96.3 diff --git a/themes/chiclete-de-uva-theme.yaml b/themes/chiclete-de-uva-theme.yaml new file mode 100644 index 00000000..29e9f626 --- /dev/null +++ b/themes/chiclete-de-uva-theme.yaml @@ -0,0 +1,49 @@ +name: "Chiclete de uva | Theme" +source: + marketplace_id: "BiancaPereira.chiclete-de-uva-theme" + version: "2.1.6" + installs: 555 + author: "Bianca Pereira" + repo: "https://github.com/BiancaPereira/chiclete-de-uva-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BiancaPereira.chiclete-de-uva-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC5B" + yellow: "#E68100" + blue: "#0451A5" + magenta: "#FF2696" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE65" + brightYellow: "#FF8F19" + brightBlue: "#0451A5" + brightMagenta: "#E432E4" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 48.6 + yellow: 53.3 + blue: 86.1 + magenta: 60.7 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.2 + brightYellow: 44.5 + brightBlue: 86.1 + brightMagenta: 61.7 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/chill-night-mode.yaml b/themes/chill-night-mode.yaml new file mode 100644 index 00000000..296572ad --- /dev/null +++ b/themes/chill-night-mode.yaml @@ -0,0 +1,49 @@ +name: "Chill Night Mode" +source: + marketplace_id: "Moth-Coder.chillnightmode" + version: "1.0.1" + installs: 20 + author: "Moth-Coder" + repo: "https://github.com/M-Renberg/chill-night-mode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Moth-Coder.chillnightmode" +colors: + bg: "#0F0E0F" + fg: "#EE8D5E" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 54 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/chillhack.yaml b/themes/chillhack.yaml new file mode 100644 index 00000000..7fa083b2 --- /dev/null +++ b/themes/chillhack.yaml @@ -0,0 +1,49 @@ +name: "chillhack" +source: + marketplace_id: "thadryanjs.chillhack" + version: "0.0.2" + installs: 98 + author: "thadryanjs" + repo: "https://github.com/thadryanjs/chillhack" + url: "https://marketplace.visualstudio.com/items?itemName=thadryanjs.chillhack" +colors: + bg: "#0F0E0E" + fg: "#74D7C9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/chinolor-light.yaml b/themes/chinolor-light.yaml new file mode 100644 index 00000000..21c55134 --- /dev/null +++ b/themes/chinolor-light.yaml @@ -0,0 +1,49 @@ +name: "Chinolor Light" +source: + marketplace_id: "iwyvi.chinolor" + version: "0.2.19" + installs: 36136 + author: "iwyvi" + repo: "https://github.com/iwyvi/chinolor" + url: "https://marketplace.visualstudio.com/items?itemName=iwyvi.chinolor" +colors: + bg: "#F8F4ED" + fg: "#2B312C" + black: "#000000" + red: "#EE3F4D" + green: "#96C24E" + yellow: "#F9D367" + blue: "#619AC3" + magenta: "#D276A3" + cyan: "#57C3C2" + white: "#E4DFD7" + brightBlack: "#2B312C" + brightRed: "#EE3F4D" + brightGreen: "#41AE3C" + brightYellow: "#B78D12" + brightBlue: "#619AC3" + brightMagenta: "#CC5595" + brightCyan: "#12AA9C" + brightWhite: "#F8F4ED" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93.4 + black: 99.7 + red: 58.2 + green: 34 + yellow: 14.8 + blue: 50.7 + magenta: 50.8 + cyan: 34.6 + white: 9.8 + brightBlack: 93.4 + brightRed: 58.2 + brightGreen: 48 + brightYellow: 51.1 + brightBlue: 50.7 + brightMagenta: 60 + brightCyan: 48.3 + brightWhite: 0 diff --git a/themes/chinolor.yaml b/themes/chinolor.yaml new file mode 100644 index 00000000..40587dde --- /dev/null +++ b/themes/chinolor.yaml @@ -0,0 +1,49 @@ +name: "Chinolor" +source: + marketplace_id: "iwyvi.chinolor" + version: "0.2.19" + installs: 36136 + author: "iwyvi" + repo: "https://github.com/iwyvi/chinolor" + url: "https://marketplace.visualstudio.com/items?itemName=iwyvi.chinolor" +colors: + bg: "#2B312C" + fg: "#E4DFD7" + black: "#000000" + red: "#EE3F4D" + green: "#96C24E" + yellow: "#F9D367" + blue: "#619AC3" + magenta: "#D276A3" + cyan: "#57C3C2" + white: "#E4DFD7" + brightBlack: "#8A988E" + brightRed: "#EE3F4D" + brightGreen: "#41AE3C" + brightYellow: "#B78D12" + brightBlue: "#619AC3" + brightMagenta: "#CC5595" + brightCyan: "#12AA9C" + brightWhite: "#F8F4ED" +meta: + mode: "dark" + accent: "orange" + hue: 150 + contrast: + fg: 82.6 + black: 0 + red: 32.1 + green: 56.9 + yellow: 77.2 + blue: 39.7 + magenta: 39.6 + cyan: 56.4 + white: 82.6 + brightBlack: 39.9 + brightRed: 32.1 + brightGreen: 42.5 + brightYellow: 39.3 + brightBlue: 39.7 + brightMagenta: 30.3 + brightCyan: 42.1 + brightWhite: 95.9 diff --git a/themes/chocolate-contrast.yaml b/themes/chocolate-contrast.yaml new file mode 100644 index 00000000..6bb0de69 --- /dev/null +++ b/themes/chocolate-contrast.yaml @@ -0,0 +1,49 @@ +name: "chocolate-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#150F08" + fg: "#FFFFFF" + black: "#271C0F" + red: "#BA0E2E" + green: "#8B6E46" + yellow: "#CCB697" + blue: "#E2CDB0" + magenta: "#B99768" + cyan: "#8B6E46" + white: "#FFFFFF" + brightBlack: "#5F4424" + brightRed: "#F03E5F" + brightGreen: "#BCA17B" + brightYellow: "#EEE6DB" + brightBlue: "#FDFCFB" + brightMagenta: "#D9C7AE" + brightCyan: "#BCA17B" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 71 + contrast: + fg: 107.4 + black: 0 + red: 21 + green: 28.3 + yellow: 64.2 + blue: 77.5 + magenta: 48.6 + cyan: 28.3 + white: 107.4 + brightBlack: 11.3 + brightRed: 37.3 + brightGreen: 53.1 + brightYellow: 91.8 + brightBlue: 105.5 + brightMagenta: 73.7 + brightCyan: 53.1 + brightWhite: 107.4 diff --git a/themes/chocolate-dessert-theme.yaml b/themes/chocolate-dessert-theme.yaml new file mode 100644 index 00000000..44cc6db5 --- /dev/null +++ b/themes/chocolate-dessert-theme.yaml @@ -0,0 +1,49 @@ +name: "chocolate-dessert-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#1B1210" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 33 + contrast: + fg: 79.7 + black: 0 + red: 27 + green: 53.2 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.3 diff --git a/themes/chocolate-light.yaml b/themes/chocolate-light.yaml new file mode 100644 index 00000000..e1c21ed8 --- /dev/null +++ b/themes/chocolate-light.yaml @@ -0,0 +1,49 @@ +name: "chocolate-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#150F08" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#5B472C" + yellow: "#A08F76" + blue: "#B5A48D" + magenta: "#8E744F" + cyan: "#5B472C" + white: "#271C0F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#A07D4D" + brightYellow: "#CAC0B2" + brightBlue: "#DDD5CB" + brightMagenta: "#BCA687" + brightCyan: "#A07D4D" + brightWhite: "#5F4424" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.4 + black: 0 + red: 80.3 + green: 90.1 + yellow: 58.5 + blue: 47.7 + magenta: 70.5 + cyan: 90.1 + white: 103.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 65.4 + brightYellow: 33.3 + brightBlue: 21.6 + brightMagenta: 46.3 + brightCyan: 65.4 + brightWhite: 90.5 diff --git a/themes/chocolate.yaml b/themes/chocolate.yaml new file mode 100644 index 00000000..88f5b1ac --- /dev/null +++ b/themes/chocolate.yaml @@ -0,0 +1,49 @@ +name: "chocolate" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#261B0E" + fg: "#FFFFFF" + black: "#392815" + red: "#BA0E2E" + green: "#8B6E46" + yellow: "#CCB697" + blue: "#E2CDB0" + magenta: "#B99768" + cyan: "#8B6E46" + white: "#FFFFFF" + brightBlack: "#715029" + brightRed: "#F03E5F" + brightGreen: "#BCA17B" + brightYellow: "#EEE6DB" + brightBlue: "#FDFCFB" + brightMagenta: "#D9C7AE" + brightCyan: "#BCA17B" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 70 + contrast: + fg: 106.1 + black: 0 + red: 19.8 + green: 27 + yellow: 62.9 + blue: 76.3 + magenta: 47.3 + cyan: 27 + white: 106.1 + brightBlack: 15.1 + brightRed: 36.1 + brightGreen: 51.8 + brightYellow: 90.5 + brightBlue: 104.2 + brightMagenta: 72.4 + brightCyan: 51.8 + brightWhite: 106.1 diff --git a/themes/chpastel.yaml b/themes/chpastel.yaml new file mode 100644 index 00000000..15ff7bd9 --- /dev/null +++ b/themes/chpastel.yaml @@ -0,0 +1,49 @@ +name: "CHPastel" +source: + marketplace_id: "caasi.chpastel-vscode" + version: "3.1.3" + installs: 803 + author: "Jakub Gawlik" + repo: "https://github.com/caasi-dev/chpastel-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=caasi.chpastel-vscode" +colors: + bg: "#E3E3E4" + fg: "#A2A2A2" + black: "#495D7E" + red: "#C63957" + green: "#5CBB5B" + yellow: "#D6AB63" + blue: "#648CDD" + magenta: "#C68ED7" + cyan: "#46AEB9" + white: "#A2A2A2" + brightBlack: "#495D7E" + brightRed: "#C63957" + brightGreen: "#5CBB5B" + brightYellow: "#D6AB63" + brightBlue: "#648CDD" + brightMagenta: "#C68ED7" + brightCyan: "#46AEB9" + brightWhite: "#A2A2A2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 33.6 + black: 66.4 + red: 57.5 + green: 30.7 + yellow: 25.2 + blue: 43.9 + magenta: 33.3 + cyan: 34.4 + white: 33.6 + brightBlack: 66.4 + brightRed: 57.5 + brightGreen: 30.7 + brightYellow: 25.2 + brightBlue: 43.9 + brightMagenta: 33.3 + brightCyan: 34.4 + brightWhite: 33.6 diff --git a/themes/chriscoding.yaml b/themes/chriscoding.yaml new file mode 100644 index 00000000..c9e19688 --- /dev/null +++ b/themes/chriscoding.yaml @@ -0,0 +1,49 @@ +name: "ChrisCoding" +source: + marketplace_id: "ChrisK.chriscoding" + version: "0.0.1" + installs: 165 + author: "ChrisK" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ChrisK.chriscoding" +colors: + bg: "#07101B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#C4C498" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 253 + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 68.9 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/christmas.yaml b/themes/christmas.yaml new file mode 100644 index 00000000..3f857321 --- /dev/null +++ b/themes/christmas.yaml @@ -0,0 +1,49 @@ +name: "christmas" +source: + marketplace_id: "csesztii.white-christmas-theme" + version: "0.1.0" + installs: 102 + author: "csesztii" + repo: "https://github.com/csesztii/white-christmas-theme" + url: "https://marketplace.visualstudio.com/items?itemName=csesztii.white-christmas-theme" +colors: + bg: "#FFFFFF" + fg: "#73716E" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 73.8 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/chromahin-amoled.yaml b/themes/chromahin-amoled.yaml new file mode 100644 index 00000000..3bd2338d --- /dev/null +++ b/themes/chromahin-amoled.yaml @@ -0,0 +1,49 @@ +name: "CHROMAHIN AMOLED" +source: + marketplace_id: "mahin-ltd.chromahin" + version: "1.0.0" + installs: 52 + author: "Mahin Ltd" + repo: "https://github.com/mahinltd/chromahin" + url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" +colors: + bg: "#000000" + fg: "#E8F1FF" + black: "#02070D" + red: "#FF4F73" + green: "#33D876" + yellow: "#F0C54A" + blue: "#3F77F0" + magenta: "#8B7CFF" + cyan: "#16D5EE" + white: "#E8F1FF" + brightBlack: "#172030" + brightRed: "#FF6A8A" + brightGreen: "#53E38A" + brightYellow: "#F5D562" + brightBlue: "#5C8FF3" + brightMagenta: "#A897FF" + brightCyan: "#3BE9F7" + brightWhite: "#F9FBFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 98.2 + black: 0 + red: 44.1 + green: 67.7 + yellow: 74.6 + blue: 33.9 + magenta: 42 + cyan: 70.4 + white: 98.2 + brightBlack: 0 + brightRed: 49.7 + brightGreen: 74.5 + brightYellow: 82.4 + brightBlue: 43.5 + brightMagenta: 53.7 + brightCyan: 81.1 + brightWhite: 105.1 diff --git a/themes/chromahin-dark.yaml b/themes/chromahin-dark.yaml new file mode 100644 index 00000000..25071665 --- /dev/null +++ b/themes/chromahin-dark.yaml @@ -0,0 +1,49 @@ +name: "CHROMAHIN Dark" +source: + marketplace_id: "mahin-ltd.chromahin" + version: "1.0.0" + installs: 52 + author: "Mahin Ltd" + repo: "https://github.com/mahinltd/chromahin" + url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" +colors: + bg: "#0C111B" + fg: "#E3ECFF" + black: "#0C111B" + red: "#FF5C7A" + green: "#46D879" + yellow: "#F2C744" + blue: "#4F7DF3" + magenta: "#8B7CFF" + cyan: "#22D3EE" + white: "#E3ECFF" + brightBlack: "#1E2636" + brightRed: "#FF7B92" + brightGreen: "#63E28F" + brightYellow: "#F6D563" + brightBlue: "#6C95F6" + brightMagenta: "#A897FF" + brightCyan: "#46E5F7" + brightWhite: "#F7FAFF" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 94.7 + black: 0 + red: 45.9 + green: 67.7 + yellow: 75.1 + blue: 36.2 + magenta: 41.4 + cyan: 69.1 + white: 94.7 + brightBlack: 0 + brightRed: 53.4 + brightGreen: 74.3 + brightYellow: 82 + brightBlue: 46.3 + brightMagenta: 53.2 + brightCyan: 78.9 + brightWhite: 103.9 diff --git a/themes/chromahin-multi-color.yaml b/themes/chromahin-multi-color.yaml new file mode 100644 index 00000000..fcc190f6 --- /dev/null +++ b/themes/chromahin-multi-color.yaml @@ -0,0 +1,49 @@ +name: "CHROMAHIN Multi-color" +source: + marketplace_id: "mahin-ltd.chromahin" + version: "1.0.0" + installs: 52 + author: "Mahin Ltd" + repo: "https://github.com/mahinltd/chromahin" + url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" +colors: + bg: "#0D1220" + fg: "#E4EEFF" + black: "#0D1220" + red: "#FF6F98" + green: "#47D988" + yellow: "#F3C955" + blue: "#5B7CFF" + magenta: "#B985FF" + cyan: "#45E0FF" + white: "#E4EEFF" + brightBlack: "#1E273A" + brightRed: "#FF8BAF" + brightGreen: "#64E79B" + brightYellow: "#F7D86F" + brightBlue: "#7690FF" + brightMagenta: "#C9A3FF" + brightCyan: "#62EAFF" + brightWhite: "#F7FAFF" +meta: + mode: "dark" + accent: "purple" + hue: 268 + contrast: + fg: 95.6 + black: 0 + red: 50.7 + green: 68.5 + yellow: 76.2 + blue: 37.4 + magenta: 49.6 + cyan: 76.8 + white: 95.6 + brightBlack: 0 + brightRed: 58.7 + brightGreen: 77 + brightYellow: 83.6 + brightBlue: 45.8 + brightMagenta: 61.5 + brightCyan: 82.6 + brightWhite: 103.8 diff --git a/themes/chromahin-soft.yaml b/themes/chromahin-soft.yaml new file mode 100644 index 00000000..8c7b9955 --- /dev/null +++ b/themes/chromahin-soft.yaml @@ -0,0 +1,49 @@ +name: "CHROMAHIN Soft" +source: + marketplace_id: "mahin-ltd.chromahin" + version: "1.0.0" + installs: 52 + author: "Mahin Ltd" + repo: "https://github.com/mahinltd/chromahin" + url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" +colors: + bg: "#111724" + fg: "#E7EFFB" + black: "#111724" + red: "#F8748F" + green: "#50C98A" + yellow: "#EFC36D" + blue: "#5F86E8" + magenta: "#9F8DFF" + cyan: "#54CCE6" + white: "#E7EFFB" + brightBlack: "#1E2A3B" + brightRed: "#FF8FA5" + brightGreen: "#69DAA2" + brightYellow: "#F3D488" + brightBlue: "#779AF0" + brightMagenta: "#B5A6FF" + brightCyan: "#6CDDF1" + brightWhite: "#F7FAFF" +meta: + mode: "dark" + accent: "red" + hue: 265 + contrast: + fg: 95.9 + black: 0 + red: 49.6 + green: 60.8 + yellow: 73 + blue: 38.7 + magenta: 48.3 + cyan: 66.1 + white: 95.9 + brightBlack: 0 + brightRed: 59.1 + brightGreen: 70.7 + brightYellow: 81.3 + brightBlue: 48 + brightMagenta: 59.5 + brightCyan: 75.7 + brightWhite: 103.4 diff --git a/themes/chromatic-dark.yaml b/themes/chromatic-dark.yaml new file mode 100644 index 00000000..cede8500 --- /dev/null +++ b/themes/chromatic-dark.yaml @@ -0,0 +1,49 @@ +name: "Chromatic Dark" +source: + marketplace_id: "chromatictheme.chromatic" + version: "1.1.2" + installs: 111 + author: "cakeray" + repo: "https://github.com/cakeray/chromatic" + url: "https://marketplace.visualstudio.com/items?itemName=chromatictheme.chromatic" +colors: + bg: "#0F0F0F" + fg: "#8A8A8A" + black: "#000000" + red: "#B03C3A" + green: "#3B8B6E" + yellow: "#8B6A4D" + blue: "#6D85C6" + magenta: "#9F7C8F" + cyan: "#438F8F" + white: "#FFFFFF" + brightBlack: "#1C1C1C" + brightRed: "#FF4F4F" + brightGreen: "#4FA678" + brightYellow: "#C19A66" + brightBlue: "#6DA8F3" + brightMagenta: "#D38FBF" + brightCyan: "#5DA9B0" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 39.2 + black: 0 + red: 22.8 + green: 33.2 + yellow: 27.3 + blue: 37.7 + magenta: 37.2 + cyan: 36.2 + white: 107.5 + brightBlack: 0 + brightRed: 43 + brightGreen: 45.3 + brightYellow: 50.9 + brightBlue: 53.5 + brightMagenta: 52.9 + brightCyan: 49.2 + brightWhite: 100.9 diff --git a/themes/chromatic-light.yaml b/themes/chromatic-light.yaml new file mode 100644 index 00000000..15ae4022 --- /dev/null +++ b/themes/chromatic-light.yaml @@ -0,0 +1,49 @@ +name: "Chromatic Light" +source: + marketplace_id: "chromatictheme.chromatic" + version: "1.1.2" + installs: 111 + author: "cakeray" + repo: "https://github.com/cakeray/chromatic" + url: "https://marketplace.visualstudio.com/items?itemName=chromatictheme.chromatic" +colors: + bg: "#F7F1E6" + fg: "#121212" + black: "#484848" + red: "#B54848" + green: "#3B8B6E" + yellow: "#885533" + blue: "#0064C2" + magenta: "#C35A85" + cyan: "#256F73" + white: "#848484" + brightBlack: "#121212" + brightRed: "#E03030" + brightGreen: "#28A364" + brightYellow: "#A8623A" + brightBlue: "#0099FF" + brightMagenta: "#F2679C" + brightCyan: "#00A6D6" + brightWhite: "#C0C0C0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.2 + black: 83.1 + red: 67.4 + green: 60 + yellow: 72.6 + blue: 70.4 + magenta: 59.6 + cyan: 70.9 + white: 57 + brightBlack: 97.2 + brightRed: 61.7 + brightGreen: 51 + brightYellow: 64.3 + brightBlue: 47.9 + brightMagenta: 46.9 + brightCyan: 45.6 + brightWhite: 26 diff --git a/themes/chrome-devtools.yaml b/themes/chrome-devtools.yaml new file mode 100644 index 00000000..247b7a0a --- /dev/null +++ b/themes/chrome-devtools.yaml @@ -0,0 +1,49 @@ +name: "Chrome DevTools" +source: + marketplace_id: "nicmeriano.chrome-devtools-theme-dark" + version: "0.0.1" + installs: 496 + author: "nicmeriano" + repo: "https://github.com/nicmeriano/chrome-devtools-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nicmeriano.chrome-devtools-theme-dark" +colors: + bg: "#202124" + fg: "#BFC6CE" + black: "#494B4F" + red: "#F07178" + green: "#BAE67E" + yellow: "#FFCC66" + blue: "#36A3D9" + magenta: "#D4BFFF" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#CBE645" + brightYellow: "#FFDF80" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#A6FDE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 69.3 + black: 10 + red: 45.3 + green: 80.7 + yellow: 78 + blue: 45.5 + magenta: 71.7 + cyan: 79.6 + white: 70.4 + brightBlack: 21.6 + brightRed: 45.3 + brightGreen: 81.7 + brightYellow: 86.6 + brightBlue: 33.4 + brightMagenta: 56.2 + brightCyan: 93.3 + brightWhite: 105.6 diff --git a/themes/chromodusk-classic.yaml b/themes/chromodusk-classic.yaml new file mode 100644 index 00000000..b4a1599b --- /dev/null +++ b/themes/chromodusk-classic.yaml @@ -0,0 +1,49 @@ +name: "Chromodusk Classic" +source: + marketplace_id: "pluumenbrownie.chromodynamics-v4" + version: "1.0.1" + installs: 133 + author: "pluumenbrownie" + repo: "https://github.com/pluumenbrownie/Chromodusk-Classic-V4" + url: "https://marketplace.visualstudio.com/items?itemName=pluumenbrownie.chromodynamics-v4" +colors: + bg: "#000205" + fg: "#C6C6C6" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 242 + contrast: + fg: 72.1 + black: 13.6 + red: 53.1 + green: 52.6 + yellow: 52.7 + blue: 52.7 + magenta: 52.7 + cyan: 61.9 + white: 64.5 + brightBlack: 29.7 + brightRed: 65.3 + brightGreen: 65.9 + brightYellow: 65.2 + brightBlue: 65.2 + brightMagenta: 65.1 + brightCyan: 70.4 + brightWhite: 107.9 diff --git a/themes/chronokai.yaml b/themes/chronokai.yaml new file mode 100644 index 00000000..6965cf95 --- /dev/null +++ b/themes/chronokai.yaml @@ -0,0 +1,49 @@ +name: "Chronokai" +source: + marketplace_id: "ChrisNewland.chronokai" + version: "0.0.1" + installs: 161 + author: "Chris Newland" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ChrisNewland.chronokai" +colors: + bg: "#2D2A2E" + fg: "#FCFCFA" + black: "#282828" + red: "#E14778" + green: "#9ADF67" + yellow: "#DCBB43" + blue: "#9180C9" + magenta: "#DF865B" + cyan: "#4CCED8" + white: "#FFFFFF" + brightBlack: "#727072" + brightRed: "#E14778" + brightGreen: "#9ADF67" + brightYellow: "#DCBB43" + brightBlue: "#9180C9" + brightMagenta: "#DF865B" + brightCyan: "#4CCED8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.8 + black: 0 + red: 32.2 + green: 72 + yellow: 63.3 + blue: 36 + magenta: 45.3 + cyan: 63 + white: 103.9 + brightBlack: 23.6 + brightRed: 32.2 + brightGreen: 72 + brightYellow: 63.3 + brightBlue: 36 + brightMagenta: 45.3 + brightCyan: 63 + brightWhite: 103.9 diff --git a/themes/cielo.yaml b/themes/cielo.yaml new file mode 100644 index 00000000..7ac8bbcb --- /dev/null +++ b/themes/cielo.yaml @@ -0,0 +1,49 @@ +name: "Cielo" +source: + marketplace_id: "PeterAhlgren.cielo-theme" + version: "1.0.0" + installs: 20 + author: "Peter Ahlgren" + repo: "https://github.com/ahlgren1234/cielo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PeterAhlgren.cielo-theme" +colors: + bg: "#1E2337" + fg: "#E2F0FF" + black: "#171C2C" + red: "#FF6E9C" + green: "#80E79A" + yellow: "#FFD76E" + blue: "#6096FF" + magenta: "#C894FF" + cyan: "#78E3FF" + white: "#E2F0FF" + brightBlack: "#171C2C" + brightRed: "#FF6E9C" + brightGreen: "#80E79A" + brightYellow: "#FFD76E" + brightBlue: "#6096FF" + brightMagenta: "#C894FF" + brightCyan: "#78E3FF" + brightWhite: "#E2F0FF" +meta: + mode: "dark" + accent: "red" + hue: 273 + contrast: + fg: 94.2 + black: 0 + red: 48.4 + green: 76.4 + yellow: 82.3 + blue: 44.3 + magenta: 54.2 + cyan: 78.2 + white: 94.2 + brightBlack: 0 + brightRed: 48.4 + brightGreen: 76.4 + brightYellow: 82.3 + brightBlue: 44.3 + brightMagenta: 54.2 + brightCyan: 78.2 + brightWhite: 94.2 diff --git a/themes/cinnamon.yaml b/themes/cinnamon.yaml new file mode 100644 index 00000000..62b7261e --- /dev/null +++ b/themes/cinnamon.yaml @@ -0,0 +1,49 @@ +name: "Cinnamon" +source: + marketplace_id: "imran.cinnamon" + version: "0.4.0" + installs: 714 + author: "imran" + repo: "https://github.com/strongSoda/cinnamon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=imran.cinnamon" +colors: + bg: "#272A3F" + fg: "#A9BAEF" + black: "#000000" + red: "#FF4D58" + green: "#B2E16B" + yellow: "#FFB54D" + blue: "#4D85FF" + magenta: "#FB84E1" + cyan: "#6AD9FB" + white: "#A9BAEF" + brightBlack: "#6C77AC" + brightRed: "#FF4D58" + brightGreen: "#B2E16B" + brightYellow: "#FFB54D" + brightBlue: "#4D85FF" + brightMagenta: "#FB84E1" + brightCyan: "#6AD9FB" + brightWhite: "#A9BAEF" +meta: + mode: "dark" + accent: "orange" + hue: 277 + contrast: + fg: 61.7 + black: 0 + red: 39.1 + green: 75.2 + yellow: 66.7 + blue: 36.1 + magenta: 54.9 + cyan: 71.2 + white: 61.7 + brightBlack: 27.7 + brightRed: 39.1 + brightGreen: 75.2 + brightYellow: 66.7 + brightBlue: 36.1 + brightMagenta: 54.9 + brightCyan: 71.2 + brightWhite: 61.7 diff --git a/themes/cinnamonroll.yaml b/themes/cinnamonroll.yaml new file mode 100644 index 00000000..8e45aeee --- /dev/null +++ b/themes/cinnamonroll.yaml @@ -0,0 +1,49 @@ +name: "Cinnamonroll" +source: + marketplace_id: "dango.cinnamonroll-theme" + version: "1.0.3" + installs: 1201 + author: "Daniel Radosa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dango.cinnamonroll-theme" +colors: + bg: "#FFFFFF" + fg: "#999999" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 54.6 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/citric-secret.yaml b/themes/citric-secret.yaml new file mode 100644 index 00000000..d9480b0a --- /dev/null +++ b/themes/citric-secret.yaml @@ -0,0 +1,49 @@ +name: "citric secret" +source: + marketplace_id: "Shayan-Chakraborty.citric-secret-theme" + version: "1.0.0" + installs: 94 + author: "Shayan-Chakraborty" + repo: "https://github.com/shayan-chakraborty/citric-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Shayan-Chakraborty.citric-secret-theme" +colors: + bg: "#000000" + fg: "#EEEEEE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E2E2E2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 96.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 89.1 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/city-fog.yaml b/themes/city-fog.yaml new file mode 100644 index 00000000..dbd654f3 --- /dev/null +++ b/themes/city-fog.yaml @@ -0,0 +1,49 @@ +name: "City Fog" +source: + marketplace_id: "metalloriff.city-fog-dawn" + version: "0.0.1" + installs: 1182 + author: "Metalloriff" + repo: "https://github.com/Metalloriff/city-fog-dawn-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=metalloriff.city-fog-dawn" +colors: + bg: "#D8E1E9" + fg: "#2C3945" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: 245 + contrast: + fg: 78.7 + black: 87.7 + red: 55.6 + green: 29.6 + yellow: 0 + blue: 54.9 + magenta: 52.5 + cyan: 34.9 + white: 0 + brightBlack: 60.4 + brightRed: 43.7 + brightGreen: 19.5 + brightYellow: 0 + brightBlue: 42.3 + brightMagenta: 37 + brightCyan: 27.3 + brightWhite: 0 diff --git a/themes/clairvoyance-theme-alt.yaml b/themes/clairvoyance-theme-alt.yaml new file mode 100644 index 00000000..12d759fc --- /dev/null +++ b/themes/clairvoyance-theme-alt.yaml @@ -0,0 +1,49 @@ +name: "Clairvoyance Theme - Alt" +source: + marketplace_id: "dnlcorona.clairvoyance-theme" + version: "1.2.0" + installs: 147 + author: "dnlcorona" + repo: "https://github.com/dnlcorona/clairvoyance-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dnlcorona.clairvoyance-theme" +colors: + bg: "#050815" + fg: "#B4B4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + contrast: + fg: 61.6 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/clairvoyance-theme-grape.yaml b/themes/clairvoyance-theme-grape.yaml new file mode 100644 index 00000000..3e8062c2 --- /dev/null +++ b/themes/clairvoyance-theme-grape.yaml @@ -0,0 +1,49 @@ +name: "Clairvoyance Theme - Grape" +source: + marketplace_id: "dnlcorona.clairvoyance-theme" + version: "1.2.0" + installs: 147 + author: "dnlcorona" + repo: "https://github.com/dnlcorona/clairvoyance-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dnlcorona.clairvoyance-theme" +colors: + bg: "#050815" + fg: "#CAAFF0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + contrast: + fg: 65.5 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/clairvoyance-theme-pinkish.yaml b/themes/clairvoyance-theme-pinkish.yaml new file mode 100644 index 00000000..339c5078 --- /dev/null +++ b/themes/clairvoyance-theme-pinkish.yaml @@ -0,0 +1,49 @@ +name: "Clairvoyance Theme - Pinkish" +source: + marketplace_id: "dnlcorona.clairvoyance-theme" + version: "1.2.0" + installs: 147 + author: "dnlcorona" + repo: "https://github.com/dnlcorona/clairvoyance-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dnlcorona.clairvoyance-theme" +colors: + bg: "#050815" + fg: "#C0C0C0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + contrast: + fg: 68.5 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/clairvoyance-theme.yaml b/themes/clairvoyance-theme.yaml new file mode 100644 index 00000000..c73c512d --- /dev/null +++ b/themes/clairvoyance-theme.yaml @@ -0,0 +1,49 @@ +name: "Clairvoyance Theme" +source: + marketplace_id: "dnlcorona.clairvoyance-theme" + version: "1.2.0" + installs: 147 + author: "dnlcorona" + repo: "https://github.com/dnlcorona/clairvoyance-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dnlcorona.clairvoyance-theme" +colors: + bg: "#050815" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + contrast: + fg: 80.4 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/clarity-design-system-dark.yaml b/themes/clarity-design-system-dark.yaml new file mode 100644 index 00000000..932594ce --- /dev/null +++ b/themes/clarity-design-system-dark.yaml @@ -0,0 +1,49 @@ +name: "Clarity Design System - Dark" +source: + marketplace_id: "BBogdanov.cds-color-theme" + version: "0.0.6" + installs: 432 + author: "BBogdanov" + repo: "https://github.com/bbogdanov/cds-code-themes" + url: "https://marketplace.visualstudio.com/items?itemName=BBogdanov.cds-color-theme" +colors: + bg: "#0F1218" + fg: "#EAEDF0" + black: "#0F1218" + red: "#FF9C33" + green: "#6C7784" + yellow: "#61B715" + blue: "#61B715" + magenta: "#FF9C33" + cyan: "#61B715" + white: "#CBCED1" + brightBlack: "#2E3137" + brightRed: "#FF9C33" + brightGreen: "#61B715" + brightYellow: "#61B715" + brightBlue: "#61B715" + brightMagenta: "#FF9C33" + brightCyan: "#61B715" + brightWhite: "#EAEDF0" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 95.3 + black: 0 + red: 61.3 + green: 29.4 + yellow: 52.1 + blue: 52.1 + magenta: 61.3 + cyan: 52.1 + white: 76 + brightBlack: 0 + brightRed: 61.3 + brightGreen: 52.1 + brightYellow: 52.1 + brightBlue: 52.1 + brightMagenta: 61.3 + brightCyan: 52.1 + brightWhite: 95.3 diff --git a/themes/clarity-design-system-light.yaml b/themes/clarity-design-system-light.yaml new file mode 100644 index 00000000..89de87a2 --- /dev/null +++ b/themes/clarity-design-system-light.yaml @@ -0,0 +1,49 @@ +name: "Clarity Design System - Light" +source: + marketplace_id: "BBogdanov.cds-color-theme" + version: "0.0.6" + installs: 432 + author: "BBogdanov" + repo: "https://github.com/bbogdanov/cds-code-themes" + url: "https://marketplace.visualstudio.com/items?itemName=BBogdanov.cds-color-theme" +colors: + bg: "#FAFAFA" + fg: "#333333" + black: "#FAFAFA" + red: "#DB2100" + green: "#666666" + yellow: "#9E57BC" + blue: "#DB2100" + magenta: "#00567A" + cyan: "#3C8500" + white: "#4F4F4F" + brightBlack: "#DEDEDE" + brightRed: "#00567A" + brightGreen: "#3C8500" + brightYellow: "#9E57BC" + brightBlue: "#DB2100" + brightMagenta: "#00567A" + brightCyan: "#3C8500" + brightWhite: "#333333" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.7 + black: 0 + red: 69.2 + green: 75.8 + yellow: 68.7 + blue: 69.2 + magenta: 84.3 + cyan: 68.7 + white: 85.4 + brightBlack: 14 + brightRed: 84.3 + brightGreen: 68.7 + brightYellow: 68.7 + brightBlue: 69.2 + brightMagenta: 84.3 + brightCyan: 68.7 + brightWhite: 95.7 diff --git a/themes/claro.yaml b/themes/claro.yaml new file mode 100644 index 00000000..0f6aeb3f --- /dev/null +++ b/themes/claro.yaml @@ -0,0 +1,49 @@ +name: "Claro" +source: + marketplace_id: "JosafaMarengo.foco" + version: "0.2.0" + installs: 139 + author: "Josafá Marengo" + repo: "https://github.com/josafamarengo/VSCode-Foco-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=JosafaMarengo.foco" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#E83B3B" + green: "#00DE00" + yellow: "#C7B100" + blue: "#036BDB" + magenta: "#EC0FEC" + cyan: "#05B0D9" + white: "#C4C4C4" + brightBlack: "#000000" + brightRed: "#FF5E5E" + brightGreen: "#18F218" + brightYellow: "#FFE619" + brightBlue: "#0C80FF" + brightMagenta: "#FF35FF" + brightCyan: "#06C9F9" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 66.7 + green: 33.4 + yellow: 42.2 + blue: 74.3 + magenta: 61.1 + cyan: 49.4 + white: 31.8 + brightBlack: 106 + brightRed: 55.6 + brightGreen: 23.6 + brightYellow: 13 + brightBlue: 64.6 + brightMagenta: 53.8 + brightCyan: 37 + brightWhite: 48.5 diff --git a/themes/classic-terminal.yaml b/themes/classic-terminal.yaml new file mode 100644 index 00000000..ad046f18 --- /dev/null +++ b/themes/classic-terminal.yaml @@ -0,0 +1,49 @@ +name: "classic_terminal" +source: + marketplace_id: "YesCode.inspiration" + version: "0.0.19" + installs: 1076 + author: "YesCode" + repo: "https://github.com/yesomac/inspiration_themevsc" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" +colors: + bg: "#212121" + fg: "#008800" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#74F0B6" + brightYellow: "#06FF82" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 28 + black: 0 + red: 40.7 + green: 59.7 + yellow: 71.8 + blue: 46.2 + magenta: 18.3 + cyan: 48.2 + white: 46 + brightBlack: 17.3 + brightRed: 40.7 + brightGreen: 81.6 + brightYellow: 85.4 + brightBlue: 17.5 + brightMagenta: 18.3 + brightCyan: 48.2 + brightWhite: 97.6 diff --git a/themes/claude-code-dark-brand.yaml b/themes/claude-code-dark-brand.yaml new file mode 100644 index 00000000..621e769d --- /dev/null +++ b/themes/claude-code-dark-brand.yaml @@ -0,0 +1,49 @@ +name: "Claude Code Dark Brand" +source: + marketplace_id: "ashwingopalsamy.claude-code-theme" + version: "1.2.2" + installs: 889 + author: "Ashwin Gopalsamy" + repo: "https://github.com/ashwingopalsamy/claude-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" +colors: + bg: "#141413" + fg: "#EAE7DF" + black: "#1A1917" + red: "#D47563" + green: "#9ACA86" + yellow: "#E8C96B" + blue: "#61AAF2" + magenta: "#9B87F5" + cyan: "#8CC4FF" + white: "#D9D5CC" + brightBlack: "#6B665F" + brightRed: "#F09884" + brightGreen: "#B6E0A5" + brightYellow: "#F2D98F" + brightBlue: "#A2D2FF" + brightMagenta: "#C9BCFF" + brightCyan: "#BDE0FF" + brightWhite: "#F5F2E9" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 91.6 + black: 0 + red: 41.9 + green: 66.2 + yellow: 74.7 + blue: 53.1 + magenta: 45.5 + cyan: 67.6 + white: 80.5 + brightBlack: 22.6 + brightRed: 58.3 + brightGreen: 79.9 + brightYellow: 83.8 + brightBlue: 75.6 + brightMagenta: 70.6 + brightCyan: 84.5 + brightWhite: 98.6 diff --git a/themes/claude-code-dark-high-contrast.yaml b/themes/claude-code-dark-high-contrast.yaml new file mode 100644 index 00000000..0ea25569 --- /dev/null +++ b/themes/claude-code-dark-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Claude Code Dark High Contrast" +source: + marketplace_id: "ashwingopalsamy.claude-code-theme" + version: "1.2.2" + installs: 889 + author: "Ashwin Gopalsamy" + repo: "https://github.com/ashwingopalsamy/claude-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" +colors: + bg: "#11100F" + fg: "#F5F2E9" + black: "#151311" + red: "#F09884" + green: "#B6E0A5" + yellow: "#F2D98F" + blue: "#8CC4FF" + magenta: "#C9BCFF" + cyan: "#B2D8FF" + white: "#E0DBD0" + brightBlack: "#6B665F" + brightRed: "#FFB4A4" + brightGreen: "#B6E0A5" + brightYellow: "#F2D98F" + brightBlue: "#BED0ED" + brightMagenta: "#DCC6FF" + brightCyan: "#C5EAFF" + brightWhite: "#F5F2E9" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 98.9 + black: 0 + red: 58.6 + green: 80.2 + yellow: 84.1 + blue: 67.9 + magenta: 70.9 + cyan: 80.1 + white: 84.5 + brightBlack: 22.9 + brightRed: 71.9 + brightGreen: 80.2 + brightYellow: 84.1 + brightBlue: 76.8 + brightMagenta: 77.4 + brightCyan: 90.3 + brightWhite: 98.9 diff --git a/themes/claude-code-light-brand.yaml b/themes/claude-code-light-brand.yaml new file mode 100644 index 00000000..7411a435 --- /dev/null +++ b/themes/claude-code-light-brand.yaml @@ -0,0 +1,49 @@ +name: "Claude Code Light Brand" +source: + marketplace_id: "ashwingopalsamy.claude-code-theme" + version: "1.2.2" + installs: 889 + author: "Ashwin Gopalsamy" + repo: "https://github.com/ashwingopalsamy/claude-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" +colors: + bg: "#FAF9F5" + fg: "#1A1917" + black: "#1A1917" + red: "#A84B3A" + green: "#2E7C4C" + yellow: "#8A6220" + blue: "#207FDE" + magenta: "#6A5BCC" + cyan: "#2E5F99" + white: "#746E64" + brightBlack: "#8D877D" + brightRed: "#C45F4A" + brightGreen: "#5E8F6D" + brightYellow: "#9C7A39" + brightBlue: "#4F79A8" + brightMagenta: "#6D5DBD" + brightCyan: "#45809E" + brightWhite: "#4A473F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 100.8 + black: 100.8 + red: 73.9 + green: 71.4 + yellow: 73.4 + blue: 63.8 + magenta: 72.3 + cyan: 78.5 + white: 71.3 + brightBlack: 59.6 + brightRed: 64.3 + brightGreen: 61.2 + brightYellow: 63.5 + brightBlue: 67.7 + brightMagenta: 72.6 + brightCyan: 66.3 + brightWhite: 87.8 diff --git a/themes/claude-code-light-high-contrast.yaml b/themes/claude-code-light-high-contrast.yaml new file mode 100644 index 00000000..2e915590 --- /dev/null +++ b/themes/claude-code-light-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Claude Code Light High Contrast" +source: + marketplace_id: "ashwingopalsamy.claude-code-theme" + version: "1.2.2" + installs: 889 + author: "Ashwin Gopalsamy" + repo: "https://github.com/ashwingopalsamy/claude-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" +colors: + bg: "#F6F3EA" + fg: "#141413" + black: "#141413" + red: "#8F3C2D" + green: "#286945" + yellow: "#775618" + blue: "#1B6EBF" + magenta: "#5B4DB4" + cyan: "#27598F" + white: "#6B665F" + brightBlack: "#8D877D" + brightRed: "#A44E3A" + brightGreen: "#437954" + brightYellow: "#826326" + brightBlue: "#4B7098" + brightMagenta: "#5D538F" + brightCyan: "#3F738C" + brightWhite: "#4A473F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 97.9 + black: 97.9 + red: 77.8 + green: 75.1 + yellow: 75.8 + blue: 68.2 + magenta: 75.3 + cyan: 77.6 + white: 71.3 + brightBlack: 56.1 + brightRed: 70.5 + brightGreen: 68 + brightYellow: 70.6 + brightBlue: 68.3 + brightMagenta: 76.1 + brightCyan: 68.5 + brightWhite: 84.3 diff --git a/themes/claude-dark-anthropic.yaml b/themes/claude-dark-anthropic.yaml new file mode 100644 index 00000000..7a1dd1ae --- /dev/null +++ b/themes/claude-dark-anthropic.yaml @@ -0,0 +1,49 @@ +name: "Claude Dark (Anthropic)" +source: + marketplace_id: "duca.claude-anthropic-theme" + version: "1.0.0" + installs: 16 + author: "duca" + repo: "https://github.com/igorfelipeduca/claude-theme" + url: "https://marketplace.visualstudio.com/items?itemName=duca.claude-anthropic-theme" +colors: + bg: "#262624" + fg: "#E8E4DC" + black: "#262624" + red: "#F28B82" + green: "#7EC699" + yellow: "#E8C47C" + blue: "#7CACE8" + magenta: "#C49BE8" + cyan: "#7CE8D4" + white: "#E8E4DC" + brightBlack: "#4A4A48" + brightRed: "#F4A58A" + brightGreen: "#A3D9B1" + brightYellow: "#F0D8A0" + brightBlue: "#A3C8F0" + brightMagenta: "#D4B8F0" + brightCyan: "#A3F0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 87.5 + black: 0 + red: 52.2 + green: 60.3 + yellow: 70.6 + blue: 52.7 + magenta: 54.1 + cyan: 78.4 + white: 87.5 + brightBlack: 8.9 + brightRed: 61.2 + brightGreen: 72.9 + brightYellow: 81.2 + brightBlue: 68.1 + brightMagenta: 67.3 + brightCyan: 85.7 + brightWhite: 104.8 diff --git a/themes/claude-dark-high-contrast-italic.yaml b/themes/claude-dark-high-contrast-italic.yaml new file mode 100644 index 00000000..819f5132 --- /dev/null +++ b/themes/claude-dark-high-contrast-italic.yaml @@ -0,0 +1,49 @@ +name: "Claude Dark High Contrast Italic" +source: + marketplace_id: "AlvinUnreal.claude-vscode-theme" + version: "1.2.0" + installs: 2138 + author: "Alvin Unreal" + repo: "https://github.com/alvinunreal/awesome-claude" + url: "https://marketplace.visualstudio.com/items?itemName=AlvinUnreal.claude-vscode-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#FF8A8A" + green: "#8FE99F" + yellow: "#FFE066" + blue: "#82C7FF" + magenta: "#C49BFF" + cyan: "#66E8FF" + white: "#B8B8B8" + brightBlack: "#5A5A5A" + brightRed: "#FFAAAA" + brightGreen: "#AAFFBB" + brightYellow: "#FFF099" + brightBlue: "#AADDFF" + brightMagenta: "#DDBBFF" + brightCyan: "#99FFFF" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 57.8 + green: 81.3 + yellow: 88.8 + blue: 68.9 + magenta: 58.7 + cyan: 82.5 + white: 64 + brightBlack: 18.1 + brightRed: 69 + brightGreen: 95.4 + brightYellow: 97.1 + brightBlue: 82 + brightMagenta: 73.7 + brightCyan: 96.9 + brightWhite: 98.1 diff --git a/themes/claude-dark-italic.yaml b/themes/claude-dark-italic.yaml new file mode 100644 index 00000000..0343189a --- /dev/null +++ b/themes/claude-dark-italic.yaml @@ -0,0 +1,49 @@ +name: "Claude Dark Italic" +source: + marketplace_id: "AlvinUnreal.claude-vscode-theme" + version: "1.2.0" + installs: 2138 + author: "Alvin Unreal" + repo: "https://github.com/alvinunreal/awesome-claude" + url: "https://marketplace.visualstudio.com/items?itemName=AlvinUnreal.claude-vscode-theme" +colors: + bg: "#141414" + fg: "#E4E4E4" + black: "#1E1E1E" + red: "#F87171" + green: "#7BD88F" + yellow: "#FCD34D" + blue: "#6CABF7" + magenta: "#B68BF7" + cyan: "#4DD4E8" + white: "#9C9893" + brightBlack: "#6A6A6A" + brightRed: "#FFA8A8" + brightGreen: "#9FFFAF" + brightYellow: "#FFED7D" + brightBlue: "#92D5FF" + brightMagenta: "#D6BBFF" + brightCyan: "#7DFFFF" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.7 + black: 0 + red: 48.4 + green: 70.5 + yellow: 81.6 + blue: 54.5 + magenta: 50.3 + cyan: 69.9 + white: 46.2 + brightBlack: 24 + brightRed: 67.5 + brightGreen: 93.4 + brightYellow: 94.4 + brightBlue: 75.5 + brightMagenta: 72 + brightCyan: 94.4 + brightWhite: 79.8 diff --git a/themes/claude-dark.yaml b/themes/claude-dark.yaml new file mode 100644 index 00000000..2c81a67f --- /dev/null +++ b/themes/claude-dark.yaml @@ -0,0 +1,49 @@ +name: "Claude Dark" +source: + marketplace_id: "SamiHindi.claude-theme-sami-hindi" + version: "0.0.1" + installs: 1290 + author: "Sami Hindi" + repo: "https://github.com/FujiwaraChoki/claude-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SamiHindi.claude-theme-sami-hindi" +colors: + bg: "#262624" + fg: "#C2C0B6" + black: "#000000" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F8FAFC" + brightBlack: "#525252" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 65.4 + black: 0 + red: 34.8 + green: 54.7 + yellow: 63 + blue: 34.7 + magenta: 32.3 + cyan: 51.8 + white: 101.3 + brightBlack: 11.9 + brightRed: 46 + brightGreen: 68.4 + brightYellow: 75.7 + brightBlue: 49.3 + brightMagenta: 47.6 + brightCyan: 66.5 + brightWhite: 104.8 diff --git a/themes/claude-light.yaml b/themes/claude-light.yaml new file mode 100644 index 00000000..62eeda5d --- /dev/null +++ b/themes/claude-light.yaml @@ -0,0 +1,49 @@ +name: "Claude Light" +source: + marketplace_id: "SamiHindi.claude-theme-sami-hindi" + version: "0.0.1" + installs: 1290 + author: "Sami Hindi" + repo: "https://github.com/FujiwaraChoki/claude-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SamiHindi.claude-theme-sami-hindi" +colors: + bg: "#FFFFFF" + fg: "#B85A3E" + black: "#1E293B" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F8FAFC" + brightBlack: "#64748B" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FEFEFE" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 71.4 + black: 101.4 + red: 63.8 + green: 44.3 + yellow: 36.4 + blue: 63.9 + magenta: 66.2 + cyan: 47.1 + white: 0 + brightBlack: 73 + brightRed: 52.8 + brightGreen: 31.3 + brightYellow: 24.4 + brightBlue: 49.6 + brightMagenta: 51.2 + brightCyan: 33 + brightWhite: 0 diff --git a/themes/claude-mode-dark.yaml b/themes/claude-mode-dark.yaml new file mode 100644 index 00000000..c4f674fc --- /dev/null +++ b/themes/claude-mode-dark.yaml @@ -0,0 +1,49 @@ +name: "Claude Mode Dark" +source: + marketplace_id: "TheWebDev.claude-mode" + version: "1.1.0" + installs: 60 + author: "TheWebDev" + repo: "https://github.com/stevie2codes/claude-mode" + url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.claude-mode" +colors: + bg: "#1F1E1B" + fg: "#E8E6DC" + black: "#2A2925" + red: "#C44D3E" + green: "#8FA874" + yellow: "#D4A05A" + blue: "#6A9BCC" + magenta: "#B0889A" + cyan: "#6A9E9E" + white: "#E8E6DC" + brightBlack: "#6B6961" + brightRed: "#D97757" + brightGreen: "#A4C28E" + brightYellow: "#E0B87A" + brightBlue: "#7DAFD4" + brightMagenta: "#C49DB0" + brightCyan: "#80B4B4" + brightWhite: "#FAF9F5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.6 + black: 0 + red: 28.1 + green: 49 + yellow: 54.2 + blue: 44.3 + magenta: 42.3 + cyan: 43.3 + white: 89.6 + brightBlack: 22.4 + brightRed: 42 + brightGreen: 62.7 + brightYellow: 65.7 + brightBlue: 54 + brightMagenta: 53.2 + brightCyan: 54.8 + brightWhite: 102 diff --git a/themes/claude-mode-light.yaml b/themes/claude-mode-light.yaml new file mode 100644 index 00000000..f9de900c --- /dev/null +++ b/themes/claude-mode-light.yaml @@ -0,0 +1,49 @@ +name: "Claude Mode Light" +source: + marketplace_id: "TheWebDev.claude-mode" + version: "1.1.0" + installs: 60 + author: "TheWebDev" + repo: "https://github.com/stevie2codes/claude-mode" + url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.claude-mode" +colors: + bg: "#F5F0E6" + fg: "#2C2A25" + black: "#2C2A25" + red: "#C44D3E" + green: "#788C5D" + yellow: "#A67235" + blue: "#5A82A6" + magenta: "#9B6E7A" + cyan: "#5A8A8A" + white: "#E8E6DC" + brightBlack: "#8A8780" + brightRed: "#D97757" + brightGreen: "#8FA874" + brightYellow: "#C9956B" + brightBlue: "#6A9BCC" + brightMagenta: "#B0889A" + brightCyan: "#6A9E9E" + brightWhite: "#FAF9F5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.4 + black: 92.4 + red: 63.1 + green: 55.7 + yellow: 59.6 + blue: 59 + magenta: 60.8 + cyan: 57.3 + white: 0 + brightBlack: 54.8 + brightRed: 49.2 + brightGreen: 42.4 + brightYellow: 42.4 + brightBlue: 46.9 + brightMagenta: 48.9 + brightCyan: 47.9 + brightWhite: 0 diff --git a/themes/claude-velvet-dark.yaml b/themes/claude-velvet-dark.yaml new file mode 100644 index 00000000..5668ee53 --- /dev/null +++ b/themes/claude-velvet-dark.yaml @@ -0,0 +1,49 @@ +name: "Claude Velvet Dark" +source: + marketplace_id: "TheWebDev.claude-mode" + version: "1.1.0" + installs: 60 + author: "TheWebDev" + repo: "https://github.com/stevie2codes/claude-mode" + url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.claude-mode" +colors: + bg: "#1F1E1B" + fg: "#E8E6DC" + black: "#2A2925" + red: "#C44D3E" + green: "#8FA874" + yellow: "#D4A05A" + blue: "#6A9BCC" + magenta: "#9A6A98" + cyan: "#6A9E9E" + white: "#E8E6DC" + brightBlack: "#6B6961" + brightRed: "#D97757" + brightGreen: "#A4C28E" + brightYellow: "#E0B87A" + brightBlue: "#7DAFD4" + brightMagenta: "#B888B6" + brightCyan: "#80B4B4" + brightWhite: "#FAF9F5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.6 + black: 0 + red: 28.1 + green: 49 + yellow: 54.2 + blue: 44.3 + magenta: 30.2 + cyan: 43.3 + white: 89.6 + brightBlack: 22.4 + brightRed: 42 + brightGreen: 62.7 + brightYellow: 65.7 + brightBlue: 54 + brightMagenta: 44.7 + brightCyan: 54.8 + brightWhite: 102 diff --git a/themes/claude-velvet-light.yaml b/themes/claude-velvet-light.yaml new file mode 100644 index 00000000..c28d0b56 --- /dev/null +++ b/themes/claude-velvet-light.yaml @@ -0,0 +1,49 @@ +name: "Claude Velvet Light" +source: + marketplace_id: "TheWebDev.claude-mode" + version: "1.1.0" + installs: 60 + author: "TheWebDev" + repo: "https://github.com/stevie2codes/claude-mode" + url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.claude-mode" +colors: + bg: "#F5F0E6" + fg: "#2C2A25" + black: "#2C2A25" + red: "#C44D3E" + green: "#788C5D" + yellow: "#A67235" + blue: "#5A82A6" + magenta: "#7A4A78" + cyan: "#5A8A8A" + white: "#E8E6DC" + brightBlack: "#8A8780" + brightRed: "#D97757" + brightGreen: "#8FA874" + brightYellow: "#C9956B" + brightBlue: "#6A9BCC" + brightMagenta: "#9A6A98" + brightCyan: "#6A9E9E" + brightWhite: "#FAF9F5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.4 + black: 92.4 + red: 63.1 + green: 55.7 + yellow: 59.6 + blue: 59 + magenta: 74.7 + cyan: 57.3 + white: 0 + brightBlack: 54.8 + brightRed: 49.2 + brightGreen: 42.4 + brightYellow: 42.4 + brightBlue: 46.9 + brightMagenta: 60.9 + brightCyan: 47.9 + brightWhite: 0 diff --git a/themes/claude-warm-light.yaml b/themes/claude-warm-light.yaml new file mode 100644 index 00000000..9980f314 --- /dev/null +++ b/themes/claude-warm-light.yaml @@ -0,0 +1,49 @@ +name: "Claude Warm Light" +source: + marketplace_id: "nghiavo.claude-warm-light" + version: "0.2.5" + installs: 48 + author: "Nghia SDET" + repo: "https://github.com/vodainghia/claude-warm-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nghiavo.claude-warm-light" +colors: + bg: "#FAF6F0" + fg: "#3D3929" + black: "#3D3929" + red: "#B05050" + green: "#5A8A5A" + yellow: "#B08A40" + blue: "#5A7A9A" + magenta: "#8A5A8A" + cyan: "#2E7D7A" + white: "#E8E2D8" + brightBlack: "#9A9080" + brightRed: "#C06060" + brightGreen: "#6A9A6A" + brightYellow: "#C09A50" + brightBlue: "#6A8AAA" + brightMagenta: "#9A6A9A" + brightCyan: "#3E8D8A" + brightWhite: "#FAF6F0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 91.5 + black: 91.5 + red: 69.6 + green: 62.3 + yellow: 54 + blue: 65.9 + magenta: 71.5 + cyan: 68.3 + white: 9.2 + brightBlack: 53.4 + brightRed: 62.9 + brightGreen: 54.7 + brightYellow: 46.1 + brightBlue: 58.5 + brightMagenta: 64.4 + brightCyan: 61.1 + brightWhite: 0 diff --git a/themes/clean-theme-halloween.yaml b/themes/clean-theme-halloween.yaml new file mode 100644 index 00000000..ce7c0110 --- /dev/null +++ b/themes/clean-theme-halloween.yaml @@ -0,0 +1,49 @@ +name: "Clean Theme Halloween" +source: + marketplace_id: "GrischaTDev.clean-theme-halloween" + version: "0.0.8" + installs: 236 + author: "GrischaTDev" + repo: "https://github.com/GrischaTDev/Clean-Theme-Halloween" + url: "https://marketplace.visualstudio.com/items?itemName=GrischaTDev.clean-theme-halloween" +colors: + bg: "#1C262A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 224 + contrast: + fg: 105 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.8 + blue: 25.6 + magenta: 27.9 + cyan: 45.7 + white: 88.2 + brightBlack: 20.2 + brightRed: 36.7 + brightGreen: 61.7 + brightYellow: 93.8 + brightBlue: 38.2 + brightMagenta: 43.5 + brightCyan: 53.6 + brightWhite: 88.2 diff --git a/themes/clean-white.yaml b/themes/clean-white.yaml new file mode 100644 index 00000000..ead337c0 --- /dev/null +++ b/themes/clean-white.yaml @@ -0,0 +1,49 @@ +name: "Clean White" +source: + marketplace_id: "nanakon.clear" + version: "1.1.1" + installs: 1252 + author: "nana_kon" + repo: "https://github.com/va1kio/clear-white" + url: "https://marketplace.visualstudio.com/items?itemName=nanakon.clear" +colors: + bg: "#FFFFFF" + fg: "#9D9D9D" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 52.6 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/clear-dark.yaml b/themes/clear-dark.yaml new file mode 100644 index 00000000..e62e8d70 --- /dev/null +++ b/themes/clear-dark.yaml @@ -0,0 +1,49 @@ +name: "Clear Dark" +source: + marketplace_id: "nanakon.clear" + version: "1.1.1" + installs: 1252 + author: "nana_kon" + repo: "https://github.com/va1kio/clear-white" + url: "https://marketplace.visualstudio.com/items?itemName=nanakon.clear" +colors: + bg: "#131313" + fg: "#6B6B6B" + black: "#2E2E2E" + red: "#DB4A4A" + green: "#0DBC79" + yellow: "#C9C918" + blue: "#2B66A7" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D1D1D1" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#E2E24C" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 24.5 + black: 0 + red: 33.7 + green: 53.4 + yellow: 69.6 + blue: 22 + magenta: 30.1 + cyan: 47.9 + white: 78 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 84.5 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/cleo.yaml b/themes/cleo.yaml new file mode 100644 index 00000000..c641974f --- /dev/null +++ b/themes/cleo.yaml @@ -0,0 +1,49 @@ +name: "Cleo" +source: + marketplace_id: "Cleo.cleo" + version: "0.1.7" + installs: 1576 + author: "Cleo" + repo: "https://github.com/FabioKaelin/cleo-vscode-extension" + url: "https://marketplace.visualstudio.com/items?itemName=Cleo.cleo" +colors: + bg: "#071D36" + fg: "#B6DDE4" + black: "#111111" + red: "#E42C39" + green: "#0CBA78" + yellow: "#E5E510" + blue: "#0073FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 254 + contrast: + fg: 80 + black: 0 + red: 30.8 + green: 51.3 + yellow: 84.8 + blue: 31.2 + magenta: 29 + cyan: 46.8 + white: 73.9 + brightBlack: 0 + brightRed: 50.9 + brightGreen: 86.1 + brightYellow: 89.8 + brightBlue: 61.4 + brightMagenta: 49.5 + brightCyan: 93.1 + brightWhite: 106.1 diff --git a/themes/clesy-theme-dark.yaml b/themes/clesy-theme-dark.yaml new file mode 100644 index 00000000..4ffa0f2f --- /dev/null +++ b/themes/clesy-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "clesy-theme-dark" +source: + marketplace_id: "EvgeniyGerasimenko.clesy-theme-dark" + version: "1.0.1" + installs: 124 + author: "Evgeniy Gerasimenko" + repo: "https://github.com/Clesy/clesy-theme-vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=EvgeniyGerasimenko.clesy-theme-dark" +colors: + bg: "#142531" + fg: "#D6DEEB" + black: "#142531" + red: "#D43532" + green: "#3BB19D" + yellow: "#5C99CA" + blue: "#82AAFF" + magenta: "#7795D6" + cyan: "#03F841" + white: "#7E2929" + brightBlack: "#575656" + brightRed: "#500D0C" + brightGreen: "#5AC585" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#8A7373" +meta: + mode: "dark" + accent: "green" + hue: 240 + contrast: + fg: 83.6 + black: 0 + red: 27 + green: 48.2 + yellow: 41.8 + blue: 54.3 + magenta: 42.8 + cyan: 80.3 + white: 8.8 + brightBlack: 13.9 + brightRed: 0 + brightGreen: 57.6 + brightYellow: 92.1 + brightBlue: 54.3 + brightMagenta: 52.1 + brightCyan: 72.3 + brightWhite: 28.5 diff --git a/themes/cloudmint-night.yaml b/themes/cloudmint-night.yaml new file mode 100644 index 00000000..7fd4af5d --- /dev/null +++ b/themes/cloudmint-night.yaml @@ -0,0 +1,49 @@ +name: "CloudMint Night" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#212836" + fg: "#E9ECEF" + black: "#151C28" + red: "#FF5555" + green: "#5CFF87" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#FF79C6" + cyan: "#64FFDA" + white: "#E9ECEF" + brightBlack: "#8695A8" + brightRed: "#FF8A8A" + brightGreen: "#98FFB3" + brightYellow: "#FFE08A" + brightBlue: "#9DACFF" + brightMagenta: "#FFA6FF" + brightCyan: "#A1FFF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 91.8 + black: 0 + red: 41 + green: 85.8 + yellow: 76.5 + blue: 53.5 + magenta: 52.1 + cyan: 88.7 + white: 91.8 + brightBlack: 40.9 + brightRed: 54.3 + brightGreen: 90.3 + brightYellow: 86.1 + brightBlue: 56.7 + brightMagenta: 68.3 + brightCyan: 93.7 + brightWhite: 104.4 diff --git a/themes/clrsync.yaml b/themes/clrsync.yaml new file mode 100644 index 00000000..1c81cf8c --- /dev/null +++ b/themes/clrsync.yaml @@ -0,0 +1,49 @@ +name: "clrsync" +source: + marketplace_id: "obsqrbtz.clrsync" + version: "1.0.2" + installs: 13 + author: "obsqrbtz" + repo: "https://github.com/obsqrbtz/clrsync-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=obsqrbtz.clrsync" +colors: + bg: "#111111" + fg: "#D4D4D4" + black: "#111111" + red: "#AA4E4A" + green: "#668A51" + yellow: "#C5916B" + blue: "#3A898C" + magenta: "#AA477B" + cyan: "#849899" + white: "#D4D4D4" + brightBlack: "#2E2E2E" + brightRed: "#AA4E4A" + brightGreen: "#668A51" + brightYellow: "#C5916B" + brightBlue: "#3A898C" + brightMagenta: "#AA477B" + brightCyan: "#849899" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 80 + black: 0 + red: 24.9 + green: 34.4 + yellow: 48.3 + blue: 33.3 + magenta: 25 + cyan: 44.2 + white: 80 + brightBlack: 0 + brightRed: 24.9 + brightGreen: 34.4 + brightYellow: 48.3 + brightBlue: 33.3 + brightMagenta: 25 + brightCyan: 44.2 + brightWhite: 80 diff --git a/themes/clu-tron-legacy.yaml b/themes/clu-tron-legacy.yaml new file mode 100644 index 00000000..5797afa1 --- /dev/null +++ b/themes/clu-tron-legacy.yaml @@ -0,0 +1,49 @@ +name: "CLU Tron Legacy" +source: + marketplace_id: "rubenzn.encom-tron-legacy" + version: "1.0.0" + installs: 60 + author: "rubenzn" + repo: "https://github.com/ruben-cxtx/best-tron-legacy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rubenzn.encom-tron-legacy" +colors: + bg: "#0A0703" + fg: "#FFDB9E" + black: "#1A120A" + red: "#FF6600" + green: "#FF8C1A" + yellow: "#FFCC00" + blue: "#FF9500" + magenta: "#CC5500" + cyan: "#804000" + white: "#FFDB9E" + brightBlack: "#1A120A" + brightRed: "#FF7A1A" + brightGreen: "#FF8C1A" + brightYellow: "#FFE08A" + brightBlue: "#FF9500" + brightMagenta: "#CC5500" + brightCyan: "#804000" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 82 + contrast: + fg: 87.8 + black: 0 + red: 46.9 + green: 56.6 + yellow: 79.5 + blue: 59.4 + magenta: 32.6 + cyan: 15.1 + white: 87.8 + brightBlack: 0 + brightRed: 51.7 + brightGreen: 56.6 + brightYellow: 89.4 + brightBlue: 59.4 + brightMagenta: 32.6 + brightCyan: 15.1 + brightWhite: 107.8 diff --git a/themes/clubcleaver-functional-matrix.yaml b/themes/clubcleaver-functional-matrix.yaml new file mode 100644 index 00000000..71f34b52 --- /dev/null +++ b/themes/clubcleaver-functional-matrix.yaml @@ -0,0 +1,49 @@ +name: "Clubcleaver Functional Matrix" +source: + marketplace_id: "clubcleaver.functional-matrix" + version: "1.0.1" + installs: 517 + author: "clubcleaver" + repo: "https://github.com/clubcleaver/functional-matrix" + url: "https://marketplace.visualstudio.com/items?itemName=clubcleaver.functional-matrix" +colors: + bg: "#000000" + fg: "#44FF00" + black: "#000000" + red: "#008A23" + green: "#65FF8E" + yellow: "#639408" + blue: "#62FF6C" + magenta: "#BC3FBC" + cyan: "#F11E1E" + white: "#8DFF97" + brightBlack: "#D50A0A" + brightRed: "#FFFFFF" + brightGreen: "#0EF945" + brightYellow: "#F5F543" + brightBlue: "#86C900" + brightMagenta: "#5B005B" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 87.2 + black: 0 + red: 31.1 + green: 89.7 + yellow: 37.9 + blue: 88.9 + magenta: 30.8 + cyan: 34.6 + white: 92.2 + brightBlack: 27.3 + brightRed: 107.9 + brightGreen: 83.5 + brightYellow: 96.6 + brightBlue: 63.3 + brightMagenta: 0 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/clymate-monochrome-vsdark-color-theme.yaml b/themes/clymate-monochrome-vsdark-color-theme.yaml new file mode 100644 index 00000000..6896596b --- /dev/null +++ b/themes/clymate-monochrome-vsdark-color-theme.yaml @@ -0,0 +1,49 @@ +name: "clymate-monochrome-vsdark.color-theme" +source: + marketplace_id: "clydedsouza.clymate-themes-vscode" + version: "1.0.0" + installs: 2726 + author: "Clyde D'Souza" + repo: "https://github.com/ClydeDz/clymate-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=clydedsouza.clymate-themes-vscode" +colors: + bg: "#0F0F0F" + fg: "#FFFFFF" + black: "#373737" + red: "#C3C3C3" + green: "#666666" + yellow: "#737373" + blue: "#878787" + magenta: "#9B9B9B" + cyan: "#D7D7D7" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#737373" + brightGreen: "#878787" + brightYellow: "#878787" + brightBlue: "#9B9B9B" + brightMagenta: "#D7D7D7" + brightCyan: "#EBEBEB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 107.5 + black: 0 + red: 70 + green: 22.7 + yellow: 28.4 + blue: 37.8 + magenta: 47.9 + cyan: 81.9 + white: 107.5 + brightBlack: 22.7 + brightRed: 28.4 + brightGreen: 37.8 + brightYellow: 37.8 + brightBlue: 47.9 + brightMagenta: 81.9 + brightCyan: 94.5 + brightWhite: 107.5 diff --git a/themes/clymate-pop-neon-vsdark-color-theme.yaml b/themes/clymate-pop-neon-vsdark-color-theme.yaml new file mode 100644 index 00000000..3fef882b --- /dev/null +++ b/themes/clymate-pop-neon-vsdark-color-theme.yaml @@ -0,0 +1,49 @@ +name: "clymate-pop-neon-vsdark.color-theme" +source: + marketplace_id: "clydedsouza.clymate-themes-vscode" + version: "1.0.0" + installs: 2726 + author: "Clyde D'Souza" + repo: "https://github.com/ClydeDz/clymate-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=clydedsouza.clymate-themes-vscode" +colors: + bg: "#0E0B16" + fg: "#D7DD35" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#D7DD35" +meta: + mode: "dark" + accent: "red" + hue: 296 + contrast: + fg: 80.9 + black: 0 + red: 25.3 + green: 53.8 + yellow: 58.4 + blue: 35.4 + magenta: 32.9 + cyan: 51.2 + white: 89.2 + brightBlack: 22.8 + brightRed: 38 + brightGreen: 77.7 + brightYellow: 84.6 + brightBlue: 50.6 + brightMagenta: 47.3 + brightCyan: 74.1 + brightWhite: 80.9 diff --git a/themes/clymate-vintage-vsdark-color-theme.yaml b/themes/clymate-vintage-vsdark-color-theme.yaml new file mode 100644 index 00000000..0f1f63a4 --- /dev/null +++ b/themes/clymate-vintage-vsdark-color-theme.yaml @@ -0,0 +1,49 @@ +name: "clymate-vintage-vsdark.color-theme" +source: + marketplace_id: "clydedsouza.clymate-themes-vscode" + version: "1.0.0" + installs: 2726 + author: "Clyde D'Souza" + repo: "https://github.com/ClydeDz/clymate-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=clydedsouza.clymate-themes-vscode" +colors: + bg: "#373F27" + fg: "#F98B95" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F98B95" +meta: + mode: "dark" + accent: "red" + hue: 123 + contrast: + fg: 48.7 + black: 0 + red: 17.1 + green: 45.5 + yellow: 50.1 + blue: 27.1 + magenta: 24.7 + cyan: 42.9 + white: 81 + brightBlack: 14.5 + brightRed: 29.8 + brightGreen: 69.5 + brightYellow: 76.4 + brightBlue: 42.3 + brightMagenta: 39 + brightCyan: 65.9 + brightWhite: 48.7 diff --git a/themes/clymate-vsdark-color-theme.yaml b/themes/clymate-vsdark-color-theme.yaml new file mode 100644 index 00000000..e1b18d5f --- /dev/null +++ b/themes/clymate-vsdark-color-theme.yaml @@ -0,0 +1,49 @@ +name: "clymate-vsdark.color-theme" +source: + marketplace_id: "clydedsouza.clymate-themes-vscode" + version: "1.0.0" + installs: 2726 + author: "Clyde D'Souza" + repo: "https://github.com/ClydeDz/clymate-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=clydedsouza.clymate-themes-vscode" +colors: + bg: "#2E0000" + fg: "#F5E6E6" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F5E6E6" +meta: + mode: "dark" + accent: "red" + hue: 29 + contrast: + fg: 92.6 + black: 0 + red: 24.5 + green: 52.9 + yellow: 57.5 + blue: 34.5 + magenta: 32.1 + cyan: 50.3 + white: 88.4 + brightBlack: 21.9 + brightRed: 37.2 + brightGreen: 76.9 + brightYellow: 83.8 + brightBlue: 49.7 + brightMagenta: 46.4 + brightCyan: 73.3 + brightWhite: 92.6 diff --git a/themes/cmyk-colourrrs.yaml b/themes/cmyk-colourrrs.yaml new file mode 100644 index 00000000..da481f1b --- /dev/null +++ b/themes/cmyk-colourrrs.yaml @@ -0,0 +1,49 @@ +name: "CMYK colourrrs" +source: + marketplace_id: "techygrrrl.techygrrrl-cmyk-colourrrs" + version: "0.2.2" + installs: 1382 + author: "techygrrrl" + repo: "https://github.com/techygrrrl/techygrrrl-cmyk-colourrrs-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=techygrrrl.techygrrrl-cmyk-colourrrs" +colors: + bg: "#FFFFFF" + fg: "#130E0F" + black: "#130E0F" + red: "#EF1563" + green: "#00CC8F" + yellow: "#EBEF15" + blue: "#15AEEF" + magenta: "#EF15BF" + cyan: "#00CC8F" + white: "#FFFFFF" + brightBlack: "#130E0F" + brightRed: "#EF1563" + brightGreen: "#00CC8F" + brightYellow: "#EBEF15" + brightBlue: "#15AEEF" + brightMagenta: "#EF15BF" + brightCyan: "#00CC8F" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 105.5 + black: 105.5 + red: 66.9 + green: 40.2 + yellow: 11.8 + blue: 48.8 + magenta: 63.2 + cyan: 40.2 + white: 0 + brightBlack: 105.5 + brightRed: 66.9 + brightGreen: 40.2 + brightYellow: 11.8 + brightBlue: 48.8 + brightMagenta: 63.2 + brightCyan: 40.2 + brightWhite: 0 diff --git a/themes/coal.yaml b/themes/coal.yaml new file mode 100644 index 00000000..37a9fcbe --- /dev/null +++ b/themes/coal.yaml @@ -0,0 +1,49 @@ +name: "Coal" +source: + marketplace_id: "tfeak2.coal" + version: "0.0.1" + installs: 335 + author: "tfeak2" + repo: "https://github.com/tfeak2/coal" + url: "https://marketplace.visualstudio.com/items?itemName=tfeak2.coal" +colors: + bg: "#26262C" + fg: "#D4D4D4" + black: "#09090B" + red: "#E55381" + green: "#9CFF99" + yellow: "#E5E059" + blue: "#64B5F7" + magenta: "#9758DA" + cyan: "#7CDEDC" + white: "#FFFAFF" + brightBlack: "#121216" + brightRed: "#EC83A4" + brightGreen: "#B9FFB7" + brightYellow: "#ECE883" + brightBlue: "#8BC7F9" + brightMagenta: "#AC79E2" + brightCyan: "#9DE7E5" + brightWhite: "#FFFAFF" +meta: + mode: "dark" + accent: "magenta" + hue: 286 + contrast: + fg: 77.3 + black: 0 + red: 36.1 + green: 90.1 + yellow: 81.6 + blue: 55.7 + magenta: 28.1 + cyan: 73.9 + white: 102.3 + brightBlack: 0 + brightRed: 49.8 + brightGreen: 93.5 + brightYellow: 87 + brightBlue: 66 + brightMagenta: 39.7 + brightCyan: 81 + brightWhite: 102.3 diff --git a/themes/cobalt-next-dark.yaml b/themes/cobalt-next-dark.yaml new file mode 100644 index 00000000..c84f5121 --- /dev/null +++ b/themes/cobalt-next-dark.yaml @@ -0,0 +1,49 @@ +name: "Cobalt Next Dark" +source: + marketplace_id: "dline.CobaltNext" + version: "0.4.5" + installs: 125771 + author: "David Leininger" + repo: "https://github.com/davidleininger/cobaltnext-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dline.CobaltNext" +colors: + bg: "#0F1C23" + fg: "#FFFFFF" + black: "#343D46" + red: "#ED6F7D" + green: "#99C794" + yellow: "#FAC863" + blue: "#5A9BCF" + magenta: "#C5A5C5" + cyan: "#5FB3B3" + white: "#D8DEE9" + brightBlack: "#65737E" + brightRed: "#D6838C" + brightGreen: "#C1DCBE" + brightYellow: "#FFDE9B" + brightBlue: "#8ABEE7" + brightMagenta: "#EDCDED" + brightCyan: "#9BE2E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 233 + contrast: + fg: 106.5 + black: 0 + red: 45.2 + green: 64.5 + yellow: 76.3 + blue: 44 + magenta: 57.6 + cyan: 52.6 + white: 85 + brightBlack: 26.5 + brightRed: 46.7 + brightGreen: 79.5 + brightYellow: 87.6 + brightBlue: 62.8 + brightMagenta: 80.8 + brightCyan: 80.1 + brightWhite: 106.5 diff --git a/themes/cobalt-next.yaml b/themes/cobalt-next.yaml new file mode 100644 index 00000000..8f43e8f8 --- /dev/null +++ b/themes/cobalt-next.yaml @@ -0,0 +1,49 @@ +name: "Cobalt Next" +source: + marketplace_id: "dline.CobaltNext" + version: "0.4.5" + installs: 125771 + author: "David Leininger" + repo: "https://github.com/davidleininger/cobaltnext-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dline.CobaltNext" +colors: + bg: "#1B2B34" + fg: "#FFFFFF" + black: "#000000" + red: "#ED6F7D" + green: "#99C794" + yellow: "#FAC863" + blue: "#5A9BCF" + magenta: "#C5A5C5" + cyan: "#5FB3B3" + white: "#D8DEE9" + brightBlack: "#65737E" + brightRed: "#D6838C" + brightGreen: "#C1DCBE" + brightYellow: "#FFDE9B" + brightBlue: "#8ABEE7" + brightMagenta: "#EDCDED" + brightCyan: "#9BE2E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 234 + contrast: + fg: 104.2 + black: 0 + red: 43 + green: 62.2 + yellow: 74.1 + blue: 41.7 + magenta: 55.3 + cyan: 50.4 + white: 82.7 + brightBlack: 24.2 + brightRed: 44.4 + brightGreen: 77.2 + brightYellow: 85.4 + brightBlue: 60.5 + brightMagenta: 78.5 + brightCyan: 77.8 + brightWhite: 104.2 diff --git a/themes/cobalt2.yaml b/themes/cobalt2.yaml new file mode 100644 index 00000000..f07d4995 --- /dev/null +++ b/themes/cobalt2.yaml @@ -0,0 +1,49 @@ +name: "Cobalt2" +source: + marketplace_id: "AgraeonLabs.dev-themes" + version: "0.1.0" + installs: 283 + author: "Agraeon Labs" + repo: "https://github.com/adiagcodelance/VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" +colors: + bg: "#193549" + fg: "#FFFFFF" + black: "#193549" + red: "#FF0088" + green: "#3AD900" + yellow: "#FFC600" + blue: "#0088FF" + magenta: "#9D41FF" + cyan: "#80FFBB" + white: "#FFFFFF" + brightBlack: "#193549" + brightRed: "#FF0088" + brightGreen: "#3AD900" + brightYellow: "#FFC600" + brightBlue: "#0088FF" + brightMagenta: "#9D41FF" + brightCyan: "#80FFBB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 242 + contrast: + fg: 102.1 + black: 0 + red: 33.7 + green: 61.5 + yellow: 71.3 + blue: 33.9 + magenta: 25.4 + cyan: 86.6 + white: 102.1 + brightBlack: 0 + brightRed: 33.7 + brightGreen: 61.5 + brightYellow: 71.3 + brightBlue: 33.9 + brightMagenta: 25.4 + brightCyan: 86.6 + brightWhite: 102.1 diff --git a/themes/cobalt3dark.yaml b/themes/cobalt3dark.yaml new file mode 100644 index 00000000..980a2e3f --- /dev/null +++ b/themes/cobalt3dark.yaml @@ -0,0 +1,49 @@ +name: "Cobalt3Dark" +source: + marketplace_id: "hendrikbeutlin.Cobalt3Dark" + version: "0.5.0" + installs: 1521 + author: "hendrikbeutlin" + repo: "https://github.com/hendrikbeutlin/Cobalt3Dark" + url: "https://marketplace.visualstudio.com/items?itemName=hendrikbeutlin.Cobalt3Dark" +colors: + bg: "#10222F" + fg: "#80FCFF" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FFC600" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FFC600" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#80FCFF" +meta: + mode: "dark" + accent: "green" + hue: 241 + contrast: + fg: 91.5 + black: 0 + red: 45.9 + green: 65.1 + yellow: 74.9 + blue: 37.5 + magenta: 63.1 + cyan: 91.5 + white: 105.7 + brightBlack: 13.4 + brightRed: 45.9 + brightGreen: 65.1 + brightYellow: 74.9 + brightBlue: 37.5 + brightMagenta: 63.1 + brightCyan: 91.5 + brightWhite: 91.5 diff --git a/themes/cobalt9.yaml b/themes/cobalt9.yaml new file mode 100644 index 00000000..500e03d5 --- /dev/null +++ b/themes/cobalt9.yaml @@ -0,0 +1,49 @@ +name: "Cobalt9" +source: + marketplace_id: "pydemia.cobalt9" + version: "1.4.2" + installs: 7244 + author: "Youngju Jaden Kim" + repo: "https://github.com/pydemia/pydemia-vscode-syntax/cobalt9" + url: "https://marketplace.visualstudio.com/items?itemName=pydemia.cobalt9" +colors: + bg: "#072539" + fg: "#FFFFFF" + black: "#333333" + red: "#FF2600" + green: "#3DDF2B" + yellow: "#FFE700" + blue: "#1478DB" + magenta: "#FF2C70" + cyan: "#00C5C7" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F92A1C" + brightGreen: "#43D426" + brightYellow: "#F1D000" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#79E8FB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 242 + contrast: + fg: 105.2 + black: 0 + red: 35.8 + green: 67.7 + yellow: 88.6 + blue: 28.9 + magenta: 37.4 + cyan: 58.2 + white: 70 + brightBlack: 21.2 + brightRed: 34.6 + brightGreen: 62.4 + brightYellow: 76.3 + brightBlue: 33 + brightMagenta: 55.7 + brightCyan: 80.5 + brightWhite: 105.2 diff --git a/themes/coco-theme-au-palette.yaml b/themes/coco-theme-au-palette.yaml new file mode 100644 index 00000000..1781877d --- /dev/null +++ b/themes/coco-theme-au-palette.yaml @@ -0,0 +1,49 @@ +name: "coco-theme-AU-palette" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#130F40" + fg: "#C7ECEE" + black: "#BE2EDD" + red: "#EB4D4B" + green: "#6AB04C" + yellow: "#F9CA24" + blue: "#22A6B3" + magenta: "#E056FD" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#BE2EDD" + brightRed: "#FF7979" + brightGreen: "#6AB04C" + brightYellow: "#F9CA24" + brightBlue: "#22A6B3" + brightMagenta: "#E056FD" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 279 + contrast: + fg: 89.8 + black: 30.4 + red: 37.1 + green: 49.3 + yellow: 76.6 + blue: 45.3 + magenta: 44.3 + cyan: 92.5 + white: 106.6 + brightBlack: 30.4 + brightRed: 51.5 + brightGreen: 49.3 + brightYellow: 76.6 + brightBlue: 45.3 + brightMagenta: 44.3 + brightCyan: 92.5 + brightWhite: 106.6 diff --git a/themes/coco-theme-ca-palette.yaml b/themes/coco-theme-ca-palette.yaml new file mode 100644 index 00000000..ad1e9798 --- /dev/null +++ b/themes/coco-theme-ca-palette.yaml @@ -0,0 +1,49 @@ +name: "coco-theme-CA-palette" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#0C1A25" + fg: "#F2E5BC" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FECA57" + blue: "#2E86DE" + magenta: "#FF4B5C" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#FF9FF3" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FECA57" + brightBlue: "#2E86DE" + brightMagenta: "#FF4B5C" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 244 + contrast: + fg: 90 + black: 0 + red: 46.9 + green: 66.1 + yellow: 77.8 + blue: 35.7 + magenta: 41.7 + cyan: 92.5 + white: 106.7 + brightBlack: 67.5 + brightRed: 46.9 + brightGreen: 66.1 + brightYellow: 77.8 + brightBlue: 35.7 + brightMagenta: 41.7 + brightCyan: 92.5 + brightWhite: 106.7 diff --git a/themes/coco-theme-coco-palette.yaml b/themes/coco-theme-coco-palette.yaml new file mode 100644 index 00000000..88f08766 --- /dev/null +++ b/themes/coco-theme-coco-palette.yaml @@ -0,0 +1,49 @@ +name: "coco-theme-Coco-palette" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#1E272E" + fg: "#FFFFFF" + black: "#00A8FF" + red: "#FF4D4D" + green: "#3AE374" + yellow: "#FFF200" + blue: "#17C0EB" + magenta: "#7D5FFF" + cyan: "#67E6DC" + white: "#FFFFFF" + brightBlack: "#00A8FF" + brightRed: "#FF4D4D" + brightGreen: "#3AE374" + brightYellow: "#FFF200" + brightBlue: "#17C0EB" + brightMagenta: "#7D5FFF" + brightCyan: "#67E6DC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 242 + contrast: + fg: 104.8 + black: 48.7 + red: 39.9 + green: 70.2 + yellow: 93.4 + blue: 57.6 + magenta: 29.8 + cyan: 76.7 + white: 104.8 + brightBlack: 48.7 + brightRed: 39.9 + brightGreen: 70.2 + brightYellow: 93.4 + brightBlue: 57.6 + brightMagenta: 29.8 + brightCyan: 76.7 + brightWhite: 104.8 diff --git a/themes/coco-theme-coconut-palette.yaml b/themes/coco-theme-coconut-palette.yaml new file mode 100644 index 00000000..27eb0295 --- /dev/null +++ b/themes/coco-theme-coconut-palette.yaml @@ -0,0 +1,49 @@ +name: "coco-theme-Coconut-palette" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#04293A" + fg: "#FFFFFF" + black: "#00A8FF" + red: "#FF4D4D" + green: "#3AE374" + yellow: "#FFF200" + blue: "#17C0EB" + magenta: "#7D5FFF" + cyan: "#67E6DC" + white: "#FFFFFF" + brightBlack: "#00A8FF" + brightRed: "#FF4D4D" + brightGreen: "#3AE374" + brightYellow: "#FFF200" + brightBlue: "#17C0EB" + brightMagenta: "#7D5FFF" + brightCyan: "#67E6DC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 233 + contrast: + fg: 104.6 + black: 48.5 + red: 39.7 + green: 70 + yellow: 93.2 + blue: 57.4 + magenta: 29.7 + cyan: 76.5 + white: 104.6 + brightBlack: 48.5 + brightRed: 39.7 + brightGreen: 70 + brightYellow: 93.2 + brightBlue: 57.4 + brightMagenta: 29.7 + brightCyan: 76.5 + brightWhite: 104.6 diff --git a/themes/coco-theme-de-palette.yaml b/themes/coco-theme-de-palette.yaml new file mode 100644 index 00000000..ca3cc4d6 --- /dev/null +++ b/themes/coco-theme-de-palette.yaml @@ -0,0 +1,49 @@ +name: "coco-theme-DE-palette" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#4B6584" + fg: "#FFFFFF" + black: "#000000" + red: "#FC5C65" + green: "#26DE81" + yellow: "#FED330" + blue: "#45AAF2" + magenta: "#B71540" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#2D98DA" + brightRed: "#FC5C65" + brightGreen: "#26DE81" + brightYellow: "#FED330" + brightBlue: "#45AAF2" + brightMagenta: "#B71540" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + contrast: + fg: 85.2 + black: 24.1 + red: 22.6 + green: 48 + yellow: 59.8 + blue: 29.9 + magenta: 0 + cyan: 71.1 + white: 85.2 + brightBlack: 20.6 + brightRed: 22.6 + brightGreen: 48 + brightYellow: 59.8 + brightBlue: 29.9 + brightMagenta: 0 + brightCyan: 71.1 + brightWhite: 85.2 diff --git a/themes/coco-theme-es-palette.yaml b/themes/coco-theme-es-palette.yaml new file mode 100644 index 00000000..c3fa480e --- /dev/null +++ b/themes/coco-theme-es-palette.yaml @@ -0,0 +1,49 @@ +name: "coco-theme-ES-palette" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#103546" + fg: "#FFFFFF" + black: "#000000" + red: "#FF5252" + green: "#33D9B2" + yellow: "#FFB142" + blue: "#474787" + magenta: "#CD6133" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#40407A" + brightRed: "#FF5252" + brightGreen: "#33D9B2" + brightYellow: "#FFB142" + brightBlue: "#474787" + brightMagenta: "#CD6133" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 232 + contrast: + fg: 102.3 + black: 0 + red: 38.3 + green: 64.3 + yellow: 63.7 + blue: 8 + magenta: 30 + cyan: 88.2 + white: 102.3 + brightBlack: 0 + brightRed: 38.3 + brightGreen: 64.3 + brightYellow: 63.7 + brightBlue: 8 + brightMagenta: 30 + brightCyan: 88.2 + brightWhite: 102.3 diff --git a/themes/coco-theme-fr-palette.yaml b/themes/coco-theme-fr-palette.yaml new file mode 100644 index 00000000..cfc8194e --- /dev/null +++ b/themes/coco-theme-fr-palette.yaml @@ -0,0 +1,49 @@ +name: "coco-theme-FR-palette" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#0A3D62" + fg: "#FFFFFF" + black: "#000000" + red: "#E55039" + green: "#78E08F" + yellow: "#FAD390" + blue: "#82CCDD" + magenta: "#B71540" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#E58E26" + brightRed: "#E55039" + brightGreen: "#78E08F" + brightYellow: "#FAD390" + brightBlue: "#82CCDD" + brightMagenta: "#B71540" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 246 + contrast: + fg: 99.5 + black: 8.2 + red: 28.9 + green: 66.6 + yellow: 74.9 + blue: 60.8 + magenta: 12.9 + cyan: 85.4 + white: 99.5 + brightBlack: 44 + brightRed: 28.9 + brightGreen: 66.6 + brightYellow: 74.9 + brightBlue: 60.8 + brightMagenta: 12.9 + brightCyan: 85.4 + brightWhite: 99.5 diff --git a/themes/coco-theme-gb-palette.yaml b/themes/coco-theme-gb-palette.yaml new file mode 100644 index 00000000..4a1a5908 --- /dev/null +++ b/themes/coco-theme-gb-palette.yaml @@ -0,0 +1,49 @@ +name: "coco-theme-GB-palette" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#192A56" + fg: "#F5F6FA" + black: "#000000" + red: "#E84118" + green: "#4CD137" + yellow: "#FBC531" + blue: "#9C88FF" + magenta: "#FF4B5C" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#279AF1" + brightRed: "#E84118" + brightGreen: "#4CD137" + brightYellow: "#FBC531" + brightBlue: "#9C88FF" + brightMagenta: "#FF4B5C" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 266 + contrast: + fg: 97.6 + black: 0 + red: 31 + green: 59.6 + yellow: 71.7 + blue: 43 + magenta: 38.5 + cyan: 89.3 + white: 103.4 + brightBlack: 41 + brightRed: 31 + brightGreen: 59.6 + brightYellow: 71.7 + brightBlue: 43 + brightMagenta: 38.5 + brightCyan: 89.3 + brightWhite: 103.4 diff --git a/themes/coco-theme-in-palette.yaml b/themes/coco-theme-in-palette.yaml new file mode 100644 index 00000000..7d953e78 --- /dev/null +++ b/themes/coco-theme-in-palette.yaml @@ -0,0 +1,49 @@ +name: "coco-theme-IN-palette" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#2C3A47" + fg: "#F5F6FA" + black: "#000000" + red: "#F97F51" + green: "#58B19F" + yellow: "#FAD390" + blue: "#1B9CFC" + magenta: "#B33771" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#D6A2E8" + brightRed: "#F97F51" + brightGreen: "#58B19F" + brightYellow: "#FAD390" + brightBlue: "#1B9CFC" + brightMagenta: "#B33771" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: 247 + contrast: + fg: 94.5 + black: 0 + red: 44.8 + green: 44.6 + yellow: 75.8 + blue: 39.4 + magenta: 16.9 + cyan: 86.3 + white: 100.4 + brightBlack: 54.7 + brightRed: 44.8 + brightGreen: 44.6 + brightYellow: 75.8 + brightBlue: 39.4 + brightMagenta: 16.9 + brightCyan: 86.3 + brightWhite: 100.4 diff --git a/themes/coco-theme-personnal-palette.yaml b/themes/coco-theme-personnal-palette.yaml new file mode 100644 index 00000000..763c5023 --- /dev/null +++ b/themes/coco-theme-personnal-palette.yaml @@ -0,0 +1,49 @@ +name: "coco-theme-Personnal-palette" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#09131B" + fg: "#F2E5BC" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FFC600" + blue: "#0088FF" + magenta: "#FF4B5C" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#3867D6" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FFC600" + brightBlue: "#0088FF" + brightMagenta: "#FF4B5C" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 243 + contrast: + fg: 90.6 + black: 0 + red: 47.5 + green: 66.7 + yellow: 76.5 + blue: 39.2 + magenta: 42.4 + cyan: 93.2 + white: 107.3 + brightBlack: 26.1 + brightRed: 47.5 + brightGreen: 66.7 + brightYellow: 76.5 + brightBlue: 39.2 + brightMagenta: 42.4 + brightCyan: 93.2 + brightWhite: 107.3 diff --git a/themes/coco-theme-se-palette.yaml b/themes/coco-theme-se-palette.yaml new file mode 100644 index 00000000..f554840f --- /dev/null +++ b/themes/coco-theme-se-palette.yaml @@ -0,0 +1,49 @@ +name: "coco-theme-SE-palette" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#1E272E" + fg: "#FFFFFF" + black: "#000000" + red: "#F53B57" + green: "#0BE881" + yellow: "#FFA801" + blue: "#0FBCF9" + magenta: "#575FCF" + cyan: "#00D8D6" + white: "#FFFFFF" + brightBlack: "#010101" + brightRed: "#F53B57" + brightGreen: "#0BE881" + brightYellow: "#FFA801" + brightBlue: "#0FBCF9" + brightMagenta: "#575FCF" + brightCyan: "#00D8D6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 242 + contrast: + fg: 104.8 + black: 0 + red: 35.4 + green: 72.5 + yellow: 62.7 + blue: 56.6 + magenta: 22.5 + cyan: 67.5 + white: 104.8 + brightBlack: 0 + brightRed: 35.4 + brightGreen: 72.5 + brightYellow: 62.7 + brightBlue: 56.6 + brightMagenta: 22.5 + brightCyan: 67.5 + brightWhite: 104.8 diff --git a/themes/coco-theme-tr-palette.yaml b/themes/coco-theme-tr-palette.yaml new file mode 100644 index 00000000..764fa134 --- /dev/null +++ b/themes/coco-theme-tr-palette.yaml @@ -0,0 +1,49 @@ +name: "coco-theme-TR-palette" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#3D3D3D" + fg: "#FFFFFF" + black: "#67E6DC" + red: "#FF4D4D" + green: "#3AE374" + yellow: "#FFF200" + blue: "#17C0EB" + magenta: "#FFAF40" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#67E6DC" + brightRed: "#FF4D4D" + brightGreen: "#3AE374" + brightYellow: "#FFF200" + brightBlue: "#17C0EB" + brightMagenta: "#FFAF40" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 99.1 + black: 70.9 + red: 34.2 + green: 64.5 + yellow: 87.6 + blue: 51.8 + magenta: 59.7 + cyan: 84.9 + white: 99.1 + brightBlack: 70.9 + brightRed: 34.2 + brightGreen: 64.5 + brightYellow: 87.6 + brightBlue: 51.8 + brightMagenta: 59.7 + brightCyan: 84.9 + brightWhite: 99.1 diff --git a/themes/coco-theme-v1-palette.yaml b/themes/coco-theme-v1-palette.yaml new file mode 100644 index 00000000..cdb0003c --- /dev/null +++ b/themes/coco-theme-v1-palette.yaml @@ -0,0 +1,49 @@ +name: "coco-theme-V1-palette" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#2C3E50" + fg: "#FFFFFF" + black: "#000000" + red: "#E74C3C" + green: "#2ECC71" + yellow: "#F1C40F" + blue: "#3498DB" + magenta: "#9B59B6" + cyan: "#1ABC9C" + white: "#FFFFFF" + brightBlack: "#FFFA65" + brightRed: "#E74C3C" + brightGreen: "#2ECC71" + brightYellow: "#F1C40F" + brightBlue: "#3498DB" + brightMagenta: "#9B59B6" + brightCyan: "#1ABC9C" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 99.2 + black: 8.5 + red: 28.4 + green: 53 + yellow: 65.3 + blue: 34.8 + magenta: 20.9 + cyan: 46.5 + white: 99.2 + brightBlack: 92.2 + brightRed: 28.4 + brightGreen: 53 + brightYellow: 65.3 + brightBlue: 34.8 + brightMagenta: 20.9 + brightCyan: 46.5 + brightWhite: 99.2 diff --git a/themes/coco-theme.yaml b/themes/coco-theme.yaml new file mode 100644 index 00000000..d5a80680 --- /dev/null +++ b/themes/coco-theme.yaml @@ -0,0 +1,49 @@ +name: "coco-theme" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#393E46" + fg: "#F2E5BC" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FCA311" + blue: "#0088FF" + magenta: "#FF4B5C" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#279AF1" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FCA311" + brightBlue: "#0088FF" + brightMagenta: "#FF4B5C" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 260 + contrast: + fg: 82.2 + black: 8.9 + red: 39.1 + green: 58.3 + yellow: 54.5 + blue: 30.7 + magenta: 33.9 + cyan: 84.7 + white: 98.9 + brightBlack: 36.5 + brightRed: 39.1 + brightGreen: 58.3 + brightYellow: 54.5 + brightBlue: 30.7 + brightMagenta: 33.9 + brightCyan: 84.7 + brightWhite: 98.9 diff --git a/themes/coco.yaml b/themes/coco.yaml new file mode 100644 index 00000000..1029545d --- /dev/null +++ b/themes/coco.yaml @@ -0,0 +1,49 @@ +name: "Coco" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#1E272E" + fg: "#D2DAE2" + black: "#000000" + red: "#F53B57" + green: "#0BE881" + yellow: "#FFD32A" + blue: "#3C40C6" + magenta: "#FF3F34" + cyan: "#0FBCF9" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#F53B57" + brightGreen: "#0BE881" + brightYellow: "#FFD32A" + brightBlue: "#3C40C6" + brightMagenta: "#FF3F34" + brightCyan: "#0FBCF9" + brightWhite: "#D2DAE2" +meta: + mode: "dark" + accent: "orange" + hue: 242 + contrast: + fg: 80.4 + black: 0 + red: 35.4 + green: 72.5 + yellow: 79.5 + blue: 13.1 + magenta: 37.8 + cyan: 56.6 + white: 104.8 + brightBlack: 0 + brightRed: 35.4 + brightGreen: 72.5 + brightYellow: 79.5 + brightBlue: 13.1 + brightMagenta: 37.8 + brightCyan: 56.6 + brightWhite: 80.4 diff --git a/themes/cocoa.yaml b/themes/cocoa.yaml new file mode 100644 index 00000000..05210f40 --- /dev/null +++ b/themes/cocoa.yaml @@ -0,0 +1,49 @@ +name: "cocoa" +source: + marketplace_id: "akirco.cocoa-theme" + version: "0.0.4" + installs: 130 + author: "akirco" + repo: "https://github.com/akirco/vscode-theme-cocoa" + url: "https://marketplace.visualstudio.com/items?itemName=akirco.cocoa-theme" +colors: + bg: "#0B0D19" + fg: "#6EBBFF" + black: "#7F68F5" + red: "#EA3592" + green: "#1EFFBF" + yellow: "#D1D14F" + blue: "#2378D5" + magenta: "#C970C9" + cyan: "#23C8F0" + white: "#9F7979" + brightBlack: "#897FFF" + brightRed: "#F01D89" + brightGreen: "#19FFA2" + brightYellow: "#FFFF00" + brightBlue: "#3F9AFF" + brightMagenta: "#FF66FF" + brightCyan: "#59DDFD" + brightWhite: "#C09B9B" +meta: + mode: "dark" + accent: "pink" + hue: 276 + contrast: + fg: 62.1 + black: 34.1 + red: 36.7 + green: 89.1 + yellow: 74.9 + blue: 31 + magenta: 43 + cyan: 64.3 + white: 35.6 + brightBlack: 42.3 + brightRed: 36.1 + brightGreen: 88.2 + brightYellow: 102.4 + brightBlue: 46.8 + brightMagenta: 54.5 + brightCyan: 76.2 + brightWhite: 52.6 diff --git a/themes/coconut-dark.yaml b/themes/coconut-dark.yaml new file mode 100644 index 00000000..bb6b50f3 --- /dev/null +++ b/themes/coconut-dark.yaml @@ -0,0 +1,49 @@ +name: "coconut dark" +source: + marketplace_id: "coconut.coconut-vscode-theme" + version: "0.0.4" + installs: 226 + author: "coconut" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=coconut.coconut-vscode-theme" +colors: + bg: "#0F1014" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/coconut.yaml b/themes/coconut.yaml new file mode 100644 index 00000000..8697b5fe --- /dev/null +++ b/themes/coconut.yaml @@ -0,0 +1,49 @@ +name: "coconut" +source: + marketplace_id: "Kifzuka.coco" + version: "16.1.2" + installs: 651 + author: "Kifzuka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" +colors: + bg: "#1E272E" + fg: "#FFFFFF" + black: "#000000" + red: "#FF4D4D" + green: "#3AE374" + yellow: "#FFF200" + blue: "#17C0EB" + magenta: "#FFAF40" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#101010" + brightRed: "#FF4D4D" + brightGreen: "#3AE374" + brightYellow: "#FFF200" + brightBlue: "#17C0EB" + brightMagenta: "#FFAF40" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 242 + contrast: + fg: 104.8 + black: 0 + red: 39.9 + green: 70.2 + yellow: 93.4 + blue: 57.6 + magenta: 65.4 + cyan: 90.7 + white: 104.8 + brightBlack: 0 + brightRed: 39.9 + brightGreen: 70.2 + brightYellow: 93.4 + brightBlue: 57.6 + brightMagenta: 65.4 + brightCyan: 90.7 + brightWhite: 104.8 diff --git a/themes/coda.yaml b/themes/coda.yaml new file mode 100644 index 00000000..e5917aeb --- /dev/null +++ b/themes/coda.yaml @@ -0,0 +1,49 @@ +name: "Coda" +source: + marketplace_id: "will-roscoe.coda-dark-1" + version: "1.0.0" + installs: 247 + author: "Will Roscoe" + repo: "https://github.com/will-roscoe/physicstools" + url: "https://marketplace.visualstudio.com/items?itemName=will-roscoe.coda-dark-1" +colors: + bg: "#0F0F0F" + fg: "#ABABAB" + black: "#2A2A2A" + red: "#CD5631" + green: "#317718" + yellow: "#F7DC01" + blue: "#0057B8" + magenta: "#E42EE4" + cyan: "#11A8CD" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#E42319" + brightGreen: "#6AD123" + brightYellow: "#FFFF68" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 56.4 + black: 0 + red: 32.9 + green: 24 + yellow: 84.8 + blue: 18.6 + magenta: 39.3 + cyan: 48.2 + white: 52.1 + brightBlack: 22.7 + brightRed: 31.4 + brightGreen: 64.9 + brightYellow: 102.9 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/code-dadi-dark.yaml b/themes/code-dadi-dark.yaml new file mode 100644 index 00000000..79414dac --- /dev/null +++ b/themes/code-dadi-dark.yaml @@ -0,0 +1,49 @@ +name: "Code-Dadi Dark" +source: + marketplace_id: "CodeDadi.code-dadi-dark" + version: "1.1.1" + installs: 139 + author: "Code Dadi" + repo: "https://github.com/4rexdadi/code-dadi-dark" + url: "https://marketplace.visualstudio.com/items?itemName=CodeDadi.code-dadi-dark" +colors: + bg: "#110B1E" + fg: "#DBE8FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 297 + contrast: + fg: 92 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/code-dadi-lighter.yaml b/themes/code-dadi-lighter.yaml new file mode 100644 index 00000000..13e613de --- /dev/null +++ b/themes/code-dadi-lighter.yaml @@ -0,0 +1,49 @@ +name: "Code-Dadi Lighter" +source: + marketplace_id: "CodeDadi.code-dadi-dark" + version: "1.1.1" + installs: 139 + author: "Code Dadi" + repo: "https://github.com/4rexdadi/code-dadi-dark" + url: "https://marketplace.visualstudio.com/items?itemName=CodeDadi.code-dadi-dark" +colors: + bg: "#000938" + fg: "#DBE8FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 263 + contrast: + fg: 91.7 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30.1 + cyan: 47.9 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.9 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/code-hunter-bluepurly.yaml b/themes/code-hunter-bluepurly.yaml new file mode 100644 index 00000000..d2774f70 --- /dev/null +++ b/themes/code-hunter-bluepurly.yaml @@ -0,0 +1,49 @@ +name: "Code Hunter - BluePurly" +source: + marketplace_id: "CodeHunterBD.code-hunter-theme" + version: "4.5.1" + installs: 1088 + author: "Code Hunter" + repo: "https://github.com/Code-Hunter-OfficialBD/code-hunter-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CodeHunterBD.code-hunter-theme" +colors: + bg: "#181B28" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 78.3 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/code-hunter-magnum-purple.yaml b/themes/code-hunter-magnum-purple.yaml new file mode 100644 index 00000000..9f818131 --- /dev/null +++ b/themes/code-hunter-magnum-purple.yaml @@ -0,0 +1,49 @@ +name: "Code Hunter - MagNum Purple" +source: + marketplace_id: "CodeHunterBD.code-hunter-theme" + version: "4.5.1" + installs: 1088 + author: "Code Hunter" + repo: "https://github.com/Code-Hunter-OfficialBD/code-hunter-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CodeHunterBD.code-hunter-theme" +colors: + bg: "#111111" + fg: "#E2E4FF" + black: "#545454" + red: "#CD3131" + green: "#31C089" + yellow: "#E5E510" + blue: "#277AD5" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A1A1A1" + brightBlack: "#777777" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91 + black: 15.2 + red: 27.2 + green: 56.2 + yellow: 86.1 + blue: 31.5 + magenta: 30.3 + cyan: 48.1 + white: 50.9 + brightBlack: 30.1 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/code-hunter-spruce-wind.yaml b/themes/code-hunter-spruce-wind.yaml new file mode 100644 index 00000000..18871826 --- /dev/null +++ b/themes/code-hunter-spruce-wind.yaml @@ -0,0 +1,49 @@ +name: "Code Hunter - Spruce Wind" +source: + marketplace_id: "CodeHunterBD.code-hunter-theme" + version: "4.5.1" + installs: 1088 + author: "Code Hunter" + repo: "https://github.com/Code-Hunter-OfficialBD/code-hunter-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CodeHunterBD.code-hunter-theme" +colors: + bg: "#242934" + fg: "#FF7279" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 266 + contrast: + fg: 47.4 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.1 + cyan: 44.9 + white: 87.4 + brightBlack: 19.4 + brightRed: 35.9 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.7 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/code-kraken-theme.yaml b/themes/code-kraken-theme.yaml new file mode 100644 index 00000000..05e8068d --- /dev/null +++ b/themes/code-kraken-theme.yaml @@ -0,0 +1,49 @@ +name: "Code Kraken ™ Theme" +source: + marketplace_id: "TheCodeKraken.code-kraken-theme" + version: "1.0.1" + installs: 230 + author: "The Code Kraken" + repo: "https://github.com/officialcodekraken/code-kraken-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TheCodeKraken.code-kraken-theme" +colors: + bg: "#201537" + fg: "#FFFFFF" + black: "#9AFF00" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FBC02D" + blue: "#9AFF00" + magenta: "#9AFF00" + cyan: "#9AFF00" + white: "#9AFF00" + brightBlack: "#9AFF00" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FBC02D" + brightBlue: "#9AFF00" + brightMagenta: "#9AFF00" + brightCyan: "#9AFF00" + brightWhite: "#9AFF00" +meta: + mode: "dark" + accent: "green" + hue: 296 + contrast: + fg: 106.3 + black: 89.9 + red: 26.1 + green: 52.4 + yellow: 72.5 + blue: 89.9 + magenta: 89.9 + cyan: 89.9 + white: 89.9 + brightBlack: 89.9 + brightRed: 38 + brightGreen: 62.9 + brightYellow: 72.5 + brightBlue: 89.9 + brightMagenta: 89.9 + brightCyan: 89.9 + brightWhite: 89.9 diff --git a/themes/code-like-a-rainbow.yaml b/themes/code-like-a-rainbow.yaml new file mode 100644 index 00000000..db9c2901 --- /dev/null +++ b/themes/code-like-a-rainbow.yaml @@ -0,0 +1,49 @@ +name: "Code_Like_a_Rainbow" +source: + marketplace_id: "invillia.Code-Like-A-Rainbow" + version: "0.3.0" + installs: 10472 + author: "invillia" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=invillia.Code-Like-A-Rainbow" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFE937" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FE7E24" + brightGreen: "#23D18B" + brightYellow: "#FFFF00" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 90.6 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 50.8 + brightGreen: 62.7 + brightYellow: 100.9 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/code-red.yaml b/themes/code-red.yaml new file mode 100644 index 00000000..f6383e63 --- /dev/null +++ b/themes/code-red.yaml @@ -0,0 +1,49 @@ +name: "Code Red" +source: + marketplace_id: "Noqs.darkstack" + version: "1.1.1" + installs: 2842 + author: "Noqs" + repo: "https://github.com/NoxQ/Darkstack" + url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" +colors: + bg: "#100C28" + fg: "#ABABAB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 56.3 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.8 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/code-with-colors-pro-midnight-purple.yaml b/themes/code-with-colors-pro-midnight-purple.yaml new file mode 100644 index 00000000..4df60947 --- /dev/null +++ b/themes/code-with-colors-pro-midnight-purple.yaml @@ -0,0 +1,49 @@ +name: "Code With Colors Pro - Midnight Purple" +source: + marketplace_id: "veduishu1257.code-with-colors-pro" + version: "2.3.0" + installs: 18 + author: "veduishu" + repo: "https://github.com/vishal-s-reddy/code-with-colors" + url: "https://marketplace.visualstudio.com/items?itemName=veduishu1257.code-with-colors-pro" +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#21222C" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#BD93F9" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 278 + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 50.7 + magenta: 51.6 + cyan: 81 + white: 99 + brightBlack: 0 + brightRed: 40.4 + brightGreen: 81.9 + brightYellow: 95.6 + brightBlue: 50.7 + brightMagenta: 51.6 + brightCyan: 81 + brightWhite: 99 diff --git a/themes/code33.yaml b/themes/code33.yaml new file mode 100644 index 00000000..e9d30bf7 --- /dev/null +++ b/themes/code33.yaml @@ -0,0 +1,49 @@ +name: "Code33" +source: + marketplace_id: "StephenFuchs.code33" + version: "1.0.3" + installs: 121 + author: "Stephen Fuchs" + repo: "https://github.com/stephenfuchs/code33-theme" + url: "https://marketplace.visualstudio.com/items?itemName=StephenFuchs.code33" +colors: + bg: "#161616" + fg: "#EDEDED" + black: "#3E3E3E" + red: "#E03177" + green: "#46A758" + yellow: "#EFD36C" + blue: "#0078A1" + magenta: "#AB4ABA" + cyan: "#5FD4F4" + white: "#EDEDED" + brightBlack: "#2E2E2E" + brightRed: "#F76190" + brightGreen: "#63C174" + brightYellow: "#EFD36C" + brightBlue: "#2EC8EE" + brightMagenta: "#D864D8" + brightCyan: "#8AE8FF" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 95.2 + black: 0 + red: 32.5 + green: 44.1 + yellow: 79.8 + blue: 26.8 + magenta: 28.4 + cyan: 71.1 + white: 95.2 + brightBlack: 0 + brightRed: 45.4 + brightGreen: 57.5 + brightYellow: 79.8 + brightBlue: 63.8 + brightMagenta: 43.2 + brightCyan: 83.6 + brightWhite: 95.2 diff --git a/themes/codeastro-dark.yaml b/themes/codeastro-dark.yaml new file mode 100644 index 00000000..0a52d82f --- /dev/null +++ b/themes/codeastro-dark.yaml @@ -0,0 +1,49 @@ +name: "Codeastro Dark" +source: + marketplace_id: "codeastro.codeastro-vscode-themes" + version: "0.0.1" + installs: 137 + author: "Codeastro" + repo: "https://github.com/zaryabdev/codeastro-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=codeastro.codeastro-vscode-themes" +colors: + bg: "#0F172A" + fg: "#E2E8F0" + black: "#0F172A" + red: "#F43F5E" + green: "#34D399" + yellow: "#FB923C" + blue: "#A5F3FC" + magenta: "#5EEAD4" + cyan: "#22D3EE" + white: "#C4CAD4" + brightBlack: "#2D3546" + brightRed: "#CBD5E1" + brightGreen: "#22D3EE" + brightYellow: "#FB923C" + brightBlue: "#A5F3FC" + brightMagenta: "#5EEAD4" + brightCyan: "#22D3EE" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 91.4 + black: 0 + red: 37.7 + green: 65.1 + yellow: 56.8 + blue: 90.7 + magenta: 79.9 + cyan: 68.5 + white: 73.1 + brightBlack: 0 + brightRed: 79.3 + brightGreen: 68.5 + brightYellow: 56.8 + brightBlue: 90.7 + brightMagenta: 79.9 + brightCyan: 68.5 + brightWhite: 91.4 diff --git a/themes/codebabel-theme-dark.yaml b/themes/codebabel-theme-dark.yaml new file mode 100644 index 00000000..409d4e32 --- /dev/null +++ b/themes/codebabel-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "codebabel-theme-dark" +source: + marketplace_id: "CodeBabel.codebabel-theme-drk" + version: "0.0.3" + installs: 222 + author: "CodeBabel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CodeBabel.codebabel-theme-drk" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 106 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 106 diff --git a/themes/codecourse-contrast.yaml b/themes/codecourse-contrast.yaml new file mode 100644 index 00000000..e06748a4 --- /dev/null +++ b/themes/codecourse-contrast.yaml @@ -0,0 +1,49 @@ +name: "codecourse-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#05080A" + fg: "#B6CED8" + black: "#0D161B" + red: "#BA0E2E" + green: "#1EA8FC" + yellow: "#5DCDFD" + blue: "#FFFFFF" + magenta: "#1EA8FC" + cyan: "#5DCDFD" + white: "#C7D9E1" + brightBlack: "#273E4E" + brightRed: "#F03E5F" + brightGreen: "#83CFFD" + brightYellow: "#C2ECFE" + brightBlue: "#FFFFFF" + brightMagenta: "#83CFFD" + brightCyan: "#C2ECFE" + brightWhite: "#F8FBFC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 74.4 + black: 0 + red: 21.4 + green: 51.6 + yellow: 69.2 + blue: 107.8 + magenta: 51.6 + cyan: 69.2 + white: 81.6 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 72.3 + brightYellow: 91.2 + brightBlue: 107.8 + brightMagenta: 72.3 + brightCyan: 91.2 + brightWhite: 104.8 diff --git a/themes/codecourse-light.yaml b/themes/codecourse-light.yaml new file mode 100644 index 00000000..bafb929d --- /dev/null +++ b/themes/codecourse-light.yaml @@ -0,0 +1,49 @@ +name: "codecourse-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#547F91" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#1EA8FC" + yellow: "#5DCDFD" + blue: "#547F91" + magenta: "#1EA8FC" + cyan: "#5DCDFD" + white: "#5D8DA1" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#83CFFD" + brightYellow: "#C2ECFE" + brightBlue: "#8EAFBD" + brightMagenta: "#83CFFD" + brightCyan: "#C2ECFE" + brightWhite: "#8EAFBD" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 70.1 + black: 0 + red: 80.3 + green: 50.3 + yellow: 33.4 + blue: 70.1 + magenta: 50.3 + cyan: 33.4 + white: 63.8 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 30.4 + brightYellow: 12.7 + brightBlue: 45.9 + brightMagenta: 30.4 + brightCyan: 12.7 + brightWhite: 45.9 diff --git a/themes/codecourse.yaml b/themes/codecourse.yaml new file mode 100644 index 00000000..b48f20af --- /dev/null +++ b/themes/codecourse.yaml @@ -0,0 +1,49 @@ +name: "codecourse" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#19272D" + fg: "#B6CED8" + black: "#22353D" + red: "#BA0E2E" + green: "#1EA8FC" + yellow: "#5DCDFD" + blue: "#FFFFFF" + magenta: "#1EA8FC" + cyan: "#5DCDFD" + white: "#C7D9E1" + brightBlack: "#3D606F" + brightRed: "#F03E5F" + brightGreen: "#83CFFD" + brightYellow: "#C2ECFE" + brightBlue: "#FFFFFF" + brightMagenta: "#83CFFD" + brightCyan: "#C2ECFE" + brightWhite: "#F8FBFC" +meta: + mode: "dark" + accent: "orange" + hue: 226 + contrast: + fg: 71.5 + black: 0 + red: 18.6 + green: 48.7 + yellow: 66.3 + blue: 104.9 + magenta: 48.7 + cyan: 66.3 + white: 78.7 + brightBlack: 15.7 + brightRed: 34.9 + brightGreen: 69.4 + brightYellow: 88.3 + brightBlue: 104.9 + brightMagenta: 69.4 + brightCyan: 88.3 + brightWhite: 101.9 diff --git a/themes/codehesion-dark-theme.yaml b/themes/codehesion-dark-theme.yaml new file mode 100644 index 00000000..3e9cbd7d --- /dev/null +++ b/themes/codehesion-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Codehesion Dark Theme" +source: + marketplace_id: "Codehesion.codehesion-themes" + version: "0.0.1" + installs: 34 + author: "Codehesion" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Codehesion.codehesion-themes" +colors: + bg: "#000F13" + fg: "#FFFFFF" + black: "#353535" + red: "#F92A82" + green: "#36DB54" + yellow: "#FAC748" + blue: "#128DFF" + magenta: "#5F5FFF" + cyan: "#0FA3B1" + white: "#FCFCFC" + brightBlack: "#535353" + brightRed: "#FF5FA4" + brightGreen: "#55FF74" + brightYellow: "#FFE29A" + brightBlue: "#57AEFF" + brightMagenta: "#6700FD" + brightCyan: "#42C9D5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 213 + contrast: + fg: 107.6 + black: 0 + red: 38.7 + green: 68.3 + yellow: 76.7 + blue: 41.2 + magenta: 30 + cyan: 44.7 + white: 105.6 + brightBlack: 15 + brightRed: 48.1 + brightGreen: 88.3 + brightYellow: 90.5 + brightBlue: 55.5 + brightMagenta: 20.1 + brightCyan: 63.9 + brightWhite: 107.6 diff --git a/themes/codehesion-light-theme.yaml b/themes/codehesion-light-theme.yaml new file mode 100644 index 00000000..ea6c38d5 --- /dev/null +++ b/themes/codehesion-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Codehesion Light Theme" +source: + marketplace_id: "Codehesion.codehesion-themes" + version: "0.0.1" + installs: 34 + author: "Codehesion" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Codehesion.codehesion-themes" +colors: + bg: "#FFFFFF" + fg: "#003A4E" + black: "#353535" + red: "#F92A82" + green: "#36DB54" + yellow: "#E2A100" + blue: "#128DFF" + magenta: "#5F5FFF" + cyan: "#0FA3B1" + white: "#FFFFFF" + brightBlack: "#535353" + brightRed: "#CF0059" + brightGreen: "#00A71E" + brightYellow: "#A57600" + brightBlue: "#0064C0" + brightMagenta: "#6700FD" + brightCyan: "#00818C" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 97.5 + black: 98 + red: 62.6 + green: 33.9 + yellow: 44 + blue: 60.2 + magenta: 71.3 + cyan: 56.7 + white: 0 + brightBlack: 86.7 + brightRed: 74.9 + brightGreen: 58.5 + brightYellow: 67.4 + brightBlue: 78.5 + brightMagenta: 81.5 + brightCyan: 71.7 + brightWhite: 0 diff --git a/themes/codeify-dark-berry-color-theme.yaml b/themes/codeify-dark-berry-color-theme.yaml new file mode 100644 index 00000000..966795e9 --- /dev/null +++ b/themes/codeify-dark-berry-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Codeify dark berry color theme" +source: + marketplace_id: "siyam.Codeify" + version: "1.1.2" + installs: 2979 + author: "siyam" + repo: "https://github.com/SISIYAM/codiefy-color-theme-vs-code-extension" + url: "https://marketplace.visualstudio.com/items?itemName=siyam.Codeify" +colors: + bg: "#222222" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 100.6 + black: 0 + red: 23.2 + green: 51.6 + yellow: 56.2 + blue: 33.2 + magenta: 30.8 + cyan: 49 + white: 87.1 + brightBlack: 20.6 + brightRed: 35.9 + brightGreen: 75.6 + brightYellow: 82.5 + brightBlue: 48.4 + brightMagenta: 45.1 + brightCyan: 72 + brightWhite: 100.6 diff --git a/themes/codeitlive-light.yaml b/themes/codeitlive-light.yaml new file mode 100644 index 00000000..a00fece6 --- /dev/null +++ b/themes/codeitlive-light.yaml @@ -0,0 +1,49 @@ +name: "CodeItLive - Light" +source: + marketplace_id: "EdCharbeneau.codeitlivetheme" + version: "2.0.0" + installs: 576 + author: "Ed Charbeneau" + repo: "https://github.com/EdCharbeneau/CodeItLive-vstheme" + url: "https://marketplace.visualstudio.com/items?itemName=EdCharbeneau.codeitlivetheme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#F4364C" + green: "#2CC84D" + yellow: "#FF9133" + blue: "#0051D3" + magenta: "#BC05BC" + cyan: "#00797C" + white: "#555555" + brightBlack: "#666666" + brightRed: "#FF6279" + brightGreen: "#50DD50" + brightYellow: "#FFE600" + brightBlue: "#006AE8" + brightMagenta: "#BC05BC" + brightCyan: "#0AA39F" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 64.1 + green: 43.1 + yellow: 43.8 + blue: 82.1 + magenta: 74.6 + cyan: 75.3 + white: 85.9 + brightBlack: 78.8 + brightRed: 54.3 + brightGreen: 32.3 + brightYellow: 13 + brightBlue: 73.5 + brightMagenta: 74.6 + brightCyan: 57.5 + brightWhite: 48.5 diff --git a/themes/codeitlive.yaml b/themes/codeitlive.yaml new file mode 100644 index 00000000..59a5c916 --- /dev/null +++ b/themes/codeitlive.yaml @@ -0,0 +1,49 @@ +name: "CodeItLive" +source: + marketplace_id: "EdCharbeneau.codeitlivetheme" + version: "2.0.0" + installs: 576 + author: "Ed Charbeneau" + repo: "https://github.com/EdCharbeneau/CodeItLive-vstheme" + url: "https://marketplace.visualstudio.com/items?itemName=EdCharbeneau.codeitlivetheme" +colors: + bg: "#231E36" + fg: "#C6D5EB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 292 + contrast: + fg: 77.9 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.3 + blue: 26.1 + magenta: 28.4 + cyan: 46.2 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.2 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.7 diff --git a/themes/codelabs-inspired.yaml b/themes/codelabs-inspired.yaml new file mode 100644 index 00000000..b47caf53 --- /dev/null +++ b/themes/codelabs-inspired.yaml @@ -0,0 +1,49 @@ +name: "Codelabs Inspired" +source: + marketplace_id: "SiriusPal.codelabs-inspired" + version: "0.0.5" + installs: 558 + author: "Sirius Pal" + repo: "https://github.com/siriuspal/codelabs-inspired" + url: "https://marketplace.visualstudio.com/items?itemName=SiriusPal.codelabs-inspired" +colors: + bg: "#13181F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 79.4 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.7 + cyan: 47.5 + white: 89.9 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/codellsby-nightowl.yaml b/themes/codellsby-nightowl.yaml new file mode 100644 index 00000000..381777ef --- /dev/null +++ b/themes/codellsby-nightowl.yaml @@ -0,0 +1,49 @@ +name: "Codellsby-NightOwl" +source: + marketplace_id: "codellsby.codellsby-nightowl-vscode" + version: "0.0.1" + installs: 1191 + author: "Codellsby" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=codellsby.codellsby-nightowl-vscode" +colors: + bg: "#181818" + fg: "#D9D9D9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 82.4 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.5 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/codely-dark-theme.yaml b/themes/codely-dark-theme.yaml new file mode 100644 index 00000000..7bdca31e --- /dev/null +++ b/themes/codely-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Codely Dark Theme" +source: + marketplace_id: "Rupesh9369.Codely-Dark-Pro-Theme" + version: "0.4.0" + installs: 477 + author: "Rupesh9369" + repo: "https://github.com/Rupesh9369/Codely-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Rupesh9369.Codely-Dark-Pro-Theme" +colors: + bg: "#202124" + fg: "#EBDBB2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#B8BB26" + blue: "#0747E0" + magenta: "#E46C8D" + cyan: "#2BB5D7" + white: "#E5E5E5" + brightBlack: "#DDDDDD" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#E8EC25" + brightBlue: "#3B8EEA" + brightMagenta: "#E4537A" + brightCyan: "#00CDFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 83.1 + black: 0 + red: 25.4 + green: 51.7 + yellow: 59.9 + blue: 16.5 + magenta: 42.3 + cyan: 52.6 + white: 88.8 + brightBlack: 83.7 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 88.1 + brightBlue: 38.7 + brightMagenta: 36.6 + brightCyan: 65.4 + brightWhite: 88.8 diff --git a/themes/codeme.yaml b/themes/codeme.yaml new file mode 100644 index 00000000..678297dd --- /dev/null +++ b/themes/codeme.yaml @@ -0,0 +1,49 @@ +name: "CodeMe" +source: + marketplace_id: "Avetis.codeme-theme" + version: "0.1.1" + installs: 8079 + author: "Avetis" + repo: "https://github.com/AvetisDN/codeme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" +colors: + bg: "#1B1D1F" + fg: "#D5D7D9" + black: "#000000" + red: "#CD3131" + green: "#12B02A" + yellow: "#E5E510" + blue: "#1461B0" + magenta: "#A944DE" + cyan: "#18A1C0" + white: "#D5D7D9" + brightBlack: "#666666" + brightRed: "#FD736B" + brightGreen: "#48E260" + brightYellow: "#F5F543" + brightBlue: "#3584D5" + brightMagenta: "#CC72FB" + brightCyan: "#5AC8FA" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 26 + green: 45.7 + yellow: 85 + blue: 19.6 + magenta: 28.9 + cyan: 43.3 + white: 80.5 + brightBlack: 21.4 + brightRed: 48.8 + brightGreen: 71.1 + brightYellow: 95 + brightBlue: 34.1 + brightMagenta: 46 + brightCyan: 65 + brightWhite: 89.4 diff --git a/themes/codeo-light.yaml b/themes/codeo-light.yaml new file mode 100644 index 00000000..f38c3e6c --- /dev/null +++ b/themes/codeo-light.yaml @@ -0,0 +1,49 @@ +name: "Codeo Light" +source: + marketplace_id: "JithinVijayan.codeo" + version: "1.2.0" + installs: 127 + author: "Jithin Vijayan" + repo: "https://github.com/itsmeJithin/codeo" + url: "https://marketplace.visualstudio.com/items?itemName=JithinVijayan.codeo" +colors: + bg: "#FBFBFB" + fg: "#403F53" + black: "#403F53" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#93A1A1" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2AA298" + brightWhite: "#93A1A1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 91.3 + black: 91.3 + red: 66.3 + green: 64.2 + yellow: 37 + blue: 60.1 + magenta: 65.3 + cyan: 55.5 + white: 49.6 + brightBlack: 91.3 + brightRed: 66.3 + brightGreen: 64.2 + brightYellow: 39.7 + brightBlue: 60.1 + brightMagenta: 65.3 + brightCyan: 55.5 + brightWhite: 49.6 diff --git a/themes/codeo.yaml b/themes/codeo.yaml new file mode 100644 index 00000000..f34fe55f --- /dev/null +++ b/themes/codeo.yaml @@ -0,0 +1,49 @@ +name: "Codeo" +source: + marketplace_id: "JithinVijayan.codeo" + version: "1.2.0" + installs: 127 + author: "Jithin Vijayan" + repo: "https://github.com/itsmeJithin/codeo" + url: "https://marketplace.visualstudio.com/items?itemName=JithinVijayan.codeo" +colors: + bg: "#011627" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#6CC0FF" + magenta: "#EC7FFF" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#6CC0FF" + brightMagenta: "#EC7FFF" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 244 + contrast: + fg: 85.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 82.1 + blue: 63.5 + magenta: 55.8 + cyan: 59.8 + white: 107 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 63.5 + brightMagenta: 55.8 + brightCyan: 74.1 + brightWhite: 107 diff --git a/themes/codepdia.yaml b/themes/codepdia.yaml new file mode 100644 index 00000000..18638dfd --- /dev/null +++ b/themes/codepdia.yaml @@ -0,0 +1,49 @@ +name: "codepdia" +source: + marketplace_id: "codepedia.codepedia" + version: "2.3.0" + installs: 89 + author: "codepedia" + repo: "https://github.com/codepediair/codepediatheme" + url: "https://marketplace.visualstudio.com/items?itemName=codepedia.codepedia" +colors: + bg: "#141413" + fg: "#EAE4DA" + black: "#3F3E3B" + red: "#EAA7C7" + green: "#ED773C" + yellow: "#EAC119" + blue: "#808BC5" + magenta: "#245E55" + cyan: "#9ED6DF" + white: "#EAE4DA" + brightBlack: "#A6A29A" + brightRed: "#EAA7C7" + brightGreen: "#ED773C" + brightYellow: "#EAC119" + brightBlue: "#808BC5" + brightMagenta: "#245E55" + brightCyan: "#9ED6DF" + brightWhite: "#EAE4DA" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 90 + black: 0 + red: 64.7 + green: 46.7 + yellow: 70.9 + blue: 41 + magenta: 15.5 + cyan: 75.3 + white: 90 + brightBlack: 51.4 + brightRed: 64.7 + brightGreen: 46.7 + brightYellow: 70.9 + brightBlue: 41 + brightMagenta: 15.5 + brightCyan: 75.3 + brightWhite: 90 diff --git a/themes/codepen-nights.yaml b/themes/codepen-nights.yaml new file mode 100644 index 00000000..90f62e3f --- /dev/null +++ b/themes/codepen-nights.yaml @@ -0,0 +1,49 @@ +name: "CodePen-Nights" +source: + marketplace_id: "klarefrank.codepen-nights" + version: "0.0.5" + installs: 5259 + author: "Klare" + repo: "https://github.com/kfrank/CodePen-Nights" + url: "https://marketplace.visualstudio.com/items?itemName=klarefrank.codepen-nights" +colors: + bg: "#1E1F27" + fg: "#EEFFFF" + black: "#000000" + red: "#CA2825" + green: "#47CF73" + yellow: "#FFDD40" + blue: "#5E91F2" + magenta: "#AE63E4" + cyan: "#0EBEFF" + white: "#FFFFFF" + brightBlack: "#88AFBF" + brightRed: "#CA2825" + brightGreen: "#47CF73" + brightYellow: "#FFDD40" + brightBlue: "#5E91F2" + brightMagenta: "#AE63E4" + brightCyan: "#0EBEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 280 + contrast: + fg: 103.5 + black: 0 + red: 24.1 + green: 61.7 + yellow: 85 + blue: 42.2 + magenta: 35.7 + cyan: 58.9 + white: 105.8 + brightBlack: 53.7 + brightRed: 24.1 + brightGreen: 61.7 + brightYellow: 85 + brightBlue: 42.2 + brightMagenta: 35.7 + brightCyan: 58.9 + brightWhite: 105.8 diff --git a/themes/codepixel-modern-dark.yaml b/themes/codepixel-modern-dark.yaml new file mode 100644 index 00000000..c76e8421 --- /dev/null +++ b/themes/codepixel-modern-dark.yaml @@ -0,0 +1,49 @@ +name: "CodePixel Modern Dark" +source: + marketplace_id: "AmirPhilipAdam.codepixelmodern" + version: "0.0.4" + installs: 43 + author: "Amir Philip Adam" + repo: "https://github.com/amirphiladam2/CoderPixel" + url: "https://marketplace.visualstudio.com/items?itemName=AmirPhilipAdam.codepixelmodern" +colors: + bg: "#0A0A0F" + fg: "#E2E8F0" + black: "#1E293B" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F1F5F9" + brightBlack: "#475569" + brightRed: "#F87171" + brightGreen: "#34D399" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 285 + contrast: + fg: 92.3 + black: 0 + red: 37.7 + green: 52.7 + yellow: 60.3 + blue: 37.6 + magenta: 35.3 + cyan: 54.7 + white: 100.8 + brightBlack: 15.6 + brightRed: 48.9 + brightGreen: 66 + brightYellow: 73.5 + brightBlue: 52.2 + brightMagenta: 50.5 + brightCyan: 69.4 + brightWhite: 107.7 diff --git a/themes/coder-coder-dark-redefined.yaml b/themes/coder-coder-dark-redefined.yaml new file mode 100644 index 00000000..47d4de6a --- /dev/null +++ b/themes/coder-coder-dark-redefined.yaml @@ -0,0 +1,49 @@ +name: "Coder Coder Dark Redefined" +source: + marketplace_id: "moondevaa.codercoderdarkredefined" + version: "0.1.2" + installs: 1532 + author: "moondevaa" + repo: "https://github.com/AaBbdev29/Redefined-coder" + url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.codercoderdarkredefined" +colors: + bg: "#0E0D1A" + fg: "#8DA0AD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 287 + contrast: + fg: 49 + black: 0 + red: 27.4 + green: 53.6 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.7 diff --git a/themes/coder-vai-forest.yaml b/themes/coder-vai-forest.yaml new file mode 100644 index 00000000..6f7956ba --- /dev/null +++ b/themes/coder-vai-forest.yaml @@ -0,0 +1,49 @@ +name: "Coder Vai Forest" +source: + marketplace_id: "umorfaruksupto.coder-vai" + version: "1.0.0" + installs: 428 + author: "umorfaruksupto" + repo: "https://github.com/umorfaruksupto/coder-vai" + url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" +colors: + bg: "#1A1F1A" + fg: "#D3E4CD" + black: "#2D3C2D" + red: "#D97979" + green: "#9FC08D" + yellow: "#E0C080" + blue: "#7FBC8C" + magenta: "#B8A0D0" + cyan: "#85C5A6" + white: "#C7D7C7" + brightBlack: "#5A6B5A" + brightRed: "#E89999" + brightGreen: "#B5D4A6" + brightYellow: "#F0D49A" + brightBlue: "#96CCA0" + brightMagenta: "#C9B3E0" + brightCyan: "#A0D8BB" + brightWhite: "#E5F0E5" +meta: + mode: "dark" + accent: "orange" + hue: 145 + contrast: + fg: 85.4 + black: 0 + red: 43.4 + green: 61.4 + yellow: 69.1 + blue: 56.8 + magenta: 54.2 + cyan: 62.1 + white: 77.9 + brightBlack: 21.5 + brightRed: 56.7 + brightGreen: 73.3 + brightYellow: 80.6 + brightBlue: 66.4 + brightMagenta: 64.3 + brightCyan: 73.8 + brightWhite: 94.3 diff --git a/themes/coder-vai-light.yaml b/themes/coder-vai-light.yaml new file mode 100644 index 00000000..44b6be7c --- /dev/null +++ b/themes/coder-vai-light.yaml @@ -0,0 +1,49 @@ +name: "Coder Vai Light" +source: + marketplace_id: "umorfaruksupto.coder-vai" + version: "1.0.0" + installs: 428 + author: "umorfaruksupto" + repo: "https://github.com/umorfaruksupto/coder-vai" + url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" +colors: + bg: "#EFF1F5" + fg: "#4C4F69" + black: "#5C5F77" + red: "#D20F39" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#EA76CB" + cyan: "#179299" + white: "#ACB0BE" + brightBlack: "#6C6F85" + brightRed: "#D20F39" + brightGreen: "#40A02B" + brightYellow: "#DF8E1D" + brightBlue: "#1E66F5" + brightMagenta: "#EA76CB" + brightCyan: "#179299" + brightWhite: "#BCC0CC" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 79.3 + black: 72.8 + red: 66.3 + green: 52.1 + yellow: 42.3 + blue: 64.8 + magenta: 42.6 + cyan: 56.1 + white: 34.1 + brightBlack: 65.8 + brightRed: 66.3 + brightGreen: 52.1 + brightYellow: 42.3 + brightBlue: 64.8 + brightMagenta: 42.6 + brightCyan: 56.1 + brightWhite: 25.5 diff --git a/themes/coder-vai-ocean.yaml b/themes/coder-vai-ocean.yaml new file mode 100644 index 00000000..dd1dee69 --- /dev/null +++ b/themes/coder-vai-ocean.yaml @@ -0,0 +1,49 @@ +name: "Coder Vai Ocean" +source: + marketplace_id: "umorfaruksupto.coder-vai" + version: "1.0.0" + installs: 428 + author: "umorfaruksupto" + repo: "https://github.com/umorfaruksupto/coder-vai" + url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" +colors: + bg: "#0F1419" + fg: "#BFBDB6" + black: "#1F2430" + red: "#FF3333" + green: "#C2D94C" + yellow: "#FFB454" + blue: "#59C2FF" + magenta: "#FFEE99" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#FF6565" + brightGreen: "#D5F770" + brightYellow: "#FFD173" + brightBlue: "#73D0FF" + brightMagenta: "#FFFFB8" + brightCyan: "#B8F0DF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 66.2 + black: 0 + red: 38.9 + green: 76.2 + yellow: 69.9 + blue: 63.6 + magenta: 95.5 + cyan: 81.2 + white: 72 + brightBlack: 23.2 + brightRed: 47 + brightGreen: 93.3 + brightYellow: 81.9 + brightBlue: 71.2 + brightMagenta: 104.4 + brightCyan: 90 + brightWhite: 107.2 diff --git a/themes/coder-vai-purple-haze.yaml b/themes/coder-vai-purple-haze.yaml new file mode 100644 index 00000000..020cf1e5 --- /dev/null +++ b/themes/coder-vai-purple-haze.yaml @@ -0,0 +1,49 @@ +name: "Coder Vai Purple Haze" +source: + marketplace_id: "umorfaruksupto.coder-vai" + version: "1.0.0" + installs: 428 + author: "umorfaruksupto" + repo: "https://github.com/umorfaruksupto/coder-vai" + url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" +colors: + bg: "#1A0D2E" + fg: "#E4D4F4" + black: "#2D1B4E" + red: "#FF6AC1" + green: "#9AEDFE" + yellow: "#F5D76E" + blue: "#B794F6" + magenta: "#F093FB" + cyan: "#78E8E8" + white: "#D4C5E0" + brightBlack: "#6B4F8A" + brightRed: "#FF8AD4" + brightGreen: "#B4F4FF" + brightYellow: "#FFEB9C" + brightBlue: "#C9B0FF" + brightMagenta: "#FFB3FF" + brightCyan: "#9FFBFB" + brightWhite: "#F0E6F6" +meta: + mode: "dark" + accent: "red" + hue: 299 + contrast: + fg: 83.3 + black: 0 + red: 51.1 + green: 87.2 + yellow: 82.6 + blue: 53.1 + magenta: 61.9 + cyan: 81.3 + white: 73.9 + brightBlack: 17.9 + brightRed: 59.9 + brightGreen: 92.9 + brightYellow: 94 + brightBlue: 65.9 + brightMagenta: 75.3 + brightCyan: 94.3 + brightWhite: 92.9 diff --git a/themes/coder30.yaml b/themes/coder30.yaml new file mode 100644 index 00000000..1eb6abb3 --- /dev/null +++ b/themes/coder30.yaml @@ -0,0 +1,49 @@ +name: "Coder30" +source: + marketplace_id: "NitishRoy7033.Coder30" + version: "1.0.0" + installs: 445 + author: "Rishi Kumar" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NitishRoy7033.Coder30" +colors: + bg: "#282A36" + fg: "#FFE300" + black: "#048200" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#07A0B0" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#D6BE06" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 85.6 + black: 23.9 + red: 23.8 + green: 50 + yellow: 82.7 + blue: 24.5 + magenta: 26.8 + cyan: 44.6 + white: 39.8 + brightBlack: 19.1 + brightRed: 35.6 + brightGreen: 60.6 + brightYellow: 92.7 + brightBlue: 37 + brightMagenta: 42.4 + brightCyan: 52.4 + brightWhite: 63.4 diff --git a/themes/codesandbox-theme.yaml b/themes/codesandbox-theme.yaml new file mode 100644 index 00000000..910437c8 --- /dev/null +++ b/themes/codesandbox-theme.yaml @@ -0,0 +1,49 @@ +name: "CodeSandbox Theme" +source: + marketplace_id: "isneru.codesandbox-theme-neru" + version: "1.1.0" + installs: 621 + author: "Diogo neru Nogueira" + repo: "https://github.com/isneru/codesandbox-theme" + url: "https://marketplace.visualstudio.com/items?itemName=isneru.codesandbox-theme-neru" +colors: + bg: "#151515" + fg: "#999999" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 46.4 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/codeschool2-minimal.yaml b/themes/codeschool2-minimal.yaml new file mode 100644 index 00000000..3d8876a7 --- /dev/null +++ b/themes/codeschool2-minimal.yaml @@ -0,0 +1,49 @@ +name: "CodeSchool2 Minimal" +source: + marketplace_id: "gargakshit.theme-alabaster-dark" + version: "0.1.3" + installs: 4222 + author: "Akshit Garg" + repo: "https://github.com/gargakshit/vscode-theme-alabaster-dark" + url: "https://marketplace.visualstudio.com/items?itemName=gargakshit.theme-alabaster-dark" +colors: + bg: "#0E1415" + fg: "#CECECE" + black: "#000000" + red: "#E25D56" + green: "#73CA50" + yellow: "#E9BF57" + blue: "#4A88E4" + magenta: "#915CAF" + cyan: "#23ACDD" + white: "#CECECE" + brightBlack: "#777777" + brightRed: "#F36868" + brightGreen: "#88DB3F" + brightYellow: "#F0BF7A" + brightBlue: "#6F8FDB" + brightMagenta: "#E987E9" + brightCyan: "#4AC9E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 76.2 + black: 0 + red: 38.8 + green: 62.2 + yellow: 70.5 + blue: 38.4 + magenta: 27.8 + cyan: 50.7 + white: 76.2 + brightBlack: 29.9 + brightRed: 45.1 + brightGreen: 71.6 + brightYellow: 72.2 + brightBlue: 42.4 + brightMagenta: 56.3 + brightCyan: 64.5 + brightWhite: 107.2 diff --git a/themes/codesso-unison-beta.yaml b/themes/codesso-unison-beta.yaml new file mode 100644 index 00000000..9504c99d --- /dev/null +++ b/themes/codesso-unison-beta.yaml @@ -0,0 +1,49 @@ +name: "Codesso Unison (Beta)" +source: + marketplace_id: "elvados.codesso" + version: "1.4.1" + installs: 1049 + author: "vadyapan" + repo: "https://github.com/vadyapan/theme-codesso" + url: "https://marketplace.visualstudio.com/items?itemName=elvados.codesso" +colors: + bg: "#F8FAFD" + fg: "#232731" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.7 + black: 90.2 + red: 64.6 + green: 36.5 + yellow: 22.5 + blue: 49.1 + magenta: 51.2 + cyan: 35.6 + white: 7.6 + brightBlack: 82.5 + brightRed: 64.6 + brightGreen: 36.5 + brightYellow: 22.5 + brightBlue: 49.1 + brightMagenta: 51.2 + brightCyan: 37.6 + brightWhite: 0 diff --git a/themes/codetest.yaml b/themes/codetest.yaml new file mode 100644 index 00000000..4c17e736 --- /dev/null +++ b/themes/codetest.yaml @@ -0,0 +1,49 @@ +name: "CodeTest" +source: + marketplace_id: "ArturGuedx.agx-code" + version: "0.0.1" + installs: 48 + author: "ArturGuedx" + repo: "https://github.com/ArturGuedes/test" + url: "https://marketplace.visualstudio.com/items?itemName=ArturGuedx.agx-code" +colors: + bg: "#151515" + fg: "#BBBBBB" + black: "#000000" + red: "#FF8B92" + green: "#BDE873" + yellow: "#E9FF92" + blue: "#52547F" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#ABBECF" + brightBlack: "#666666" + brightRed: "#FF525C" + brightGreen: "#66FFB1" + brightYellow: "#FFAD3F" + brightBlue: "#6D7DFE" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 64.9 + black: 0 + red: 57.5 + green: 83.2 + yellow: 100.2 + blue: 16.4 + magenta: 29.9 + cyan: 47.7 + white: 65.2 + brightBlack: 22.2 + brightRed: 43.2 + brightGreen: 89.9 + brightYellow: 67 + brightBlue: 38.7 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/codethread-black.yaml b/themes/codethread-black.yaml new file mode 100644 index 00000000..9e282221 --- /dev/null +++ b/themes/codethread-black.yaml @@ -0,0 +1,49 @@ +name: "codethread-black" +source: + marketplace_id: "JayantRohila.codethread-black" + version: "2.2.6" + installs: 2180 + author: "Jayant Rohila" + repo: "https://github.com/jayantrohila57/codethread-black" + url: "https://marketplace.visualstudio.com/items?itemName=JayantRohila.codethread-black" +colors: + bg: "#000000" + fg: "#4D4D4D" + black: "#959E8B" + red: "#F5A55F" + green: "#3CB2FF" + yellow: "#FFFF23" + blue: "#629FD5" + magenta: "#FF4325" + cyan: "#3BFF51" + white: "#C9D1D9" + brightBlack: "#737373" + brightRed: "#F5A55F" + brightGreen: "#3BB2FF" + brightYellow: "#FFFF00" + brightBlue: "#79C0FF" + brightMagenta: "#FF4A2E" + brightCyan: "#3BFF51" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 13.1 + black: 48.2 + red: 63.5 + green: 56.5 + yellow: 102.8 + blue: 47.8 + magenta: 41.2 + cyan: 87.4 + white: 78 + brightBlack: 28.7 + brightRed: 63.5 + brightGreen: 56.5 + brightYellow: 102.7 + brightBlue: 65.2 + brightMagenta: 42.2 + brightCyan: 87.4 + brightWhite: 107.9 diff --git a/themes/codeuccino.yaml b/themes/codeuccino.yaml new file mode 100644 index 00000000..e8e88eef --- /dev/null +++ b/themes/codeuccino.yaml @@ -0,0 +1,49 @@ +name: "Codeuccino" +source: + marketplace_id: "HariVajja.codeuccino" + version: "0.0.1" + installs: 74 + author: "Hari Vajja" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HariVajja.codeuccino" +colors: + bg: "#F9D397" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#747541" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#828600" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#FFDEDE" +meta: + mode: "light" + accent: "pink" + hue: 79 + contrast: + fg: 23 + black: 83.5 + red: 51.5 + green: 26.7 + yellow: 50.9 + blue: 63.6 + magenta: 52.1 + cyan: 38.1 + white: 63.4 + brightBlack: 56.3 + brightRed: 51.5 + brightGreen: 18.4 + brightYellow: 43.9 + brightBlue: 63.6 + brightMagenta: 52.1 + brightCyan: 38.1 + brightWhite: 0 diff --git a/themes/codevibe-epic-theme.yaml b/themes/codevibe-epic-theme.yaml new file mode 100644 index 00000000..18150dbb --- /dev/null +++ b/themes/codevibe-epic-theme.yaml @@ -0,0 +1,49 @@ +name: "CodeVibe - Epic Theme" +source: + marketplace_id: "noyonalways.codevibe-themes" + version: "0.0.4" + installs: 644 + author: "Noyon Rahman" + repo: "https://github.com/noyonalways/codevibe-themes" + url: "https://marketplace.visualstudio.com/items?itemName=noyonalways.codevibe-themes" +colors: + bg: "#292D3E" + fg: "#D9D8D8" + black: "#000000" + red: "#FF4040" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 78.5 + black: 0 + red: 36.5 + green: 49.4 + yellow: 82 + blue: 23.8 + magenta: 26.2 + cyan: 43.9 + white: 86.4 + brightBlack: 18.4 + brightRed: 35 + brightGreen: 59.9 + brightYellow: 92 + brightBlue: 36.4 + brightMagenta: 41.8 + brightCyan: 51.8 + brightWhite: 86.4 diff --git a/themes/codewithme-codex.yaml b/themes/codewithme-codex.yaml new file mode 100644 index 00000000..7bcc567b --- /dev/null +++ b/themes/codewithme-codex.yaml @@ -0,0 +1,49 @@ +name: "Codewithme-codex" +source: + marketplace_id: "codewithme224.codewithme224" + version: "0.0.3" + installs: 88 + author: "Emmanuel Abraham Jones" + repo: "https://github.com/codewithme224/codewithme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=codewithme224.codewithme224" +colors: + bg: "#051928" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 243 + contrast: + fg: 79.3 + black: 0 + red: 26.6 + green: 52.8 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.9 diff --git a/themes/codewithme-dark-cmyk.yaml b/themes/codewithme-dark-cmyk.yaml new file mode 100644 index 00000000..c0100991 --- /dev/null +++ b/themes/codewithme-dark-cmyk.yaml @@ -0,0 +1,49 @@ +name: "Codewithme - Dark CMYK" +source: + marketplace_id: "codewithme224.codewithme224" + version: "0.0.3" + installs: 88 + author: "Emmanuel Abraham Jones" + repo: "https://github.com/codewithme224/codewithme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=codewithme224.codewithme224" +colors: + bg: "#0F0F17" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 107.5 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/codewithsg-dark-theme.yaml b/themes/codewithsg-dark-theme.yaml new file mode 100644 index 00000000..303490a3 --- /dev/null +++ b/themes/codewithsg-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Codewithsg Dark Theme" +source: + marketplace_id: "codewithsg.codewithsgdark" + version: "0.0.1" + installs: 12 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/codewithsgDark" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.codewithsgdark" +colors: + bg: "#000000" + fg: "#E6EDF3" + black: "#4FF36A" + red: "#CA0000" + green: "#3FB950" + yellow: "#3CFF00" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#00FF22" + brightBlack: "#4FF36A" + brightRed: "#CA0000" + brightGreen: "#3FB950" + brightYellow: "#3CFF00" + brightBlue: "#58A6FF" + brightMagenta: "#BC8CFF" + brightCyan: "#39C5CF" + brightWhite: "#00FF22" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 95.5 + black: 81.9 + red: 24.8 + green: 52.6 + yellow: 87 + blue: 52.7 + magenta: 52.7 + cyan: 61.9 + white: 86.5 + brightBlack: 81.9 + brightRed: 24.8 + brightGreen: 52.6 + brightYellow: 87 + brightBlue: 52.7 + brightMagenta: 52.7 + brightCyan: 61.9 + brightWhite: 86.5 diff --git a/themes/codexflow-themes.yaml b/themes/codexflow-themes.yaml new file mode 100644 index 00000000..33a35c8d --- /dev/null +++ b/themes/codexflow-themes.yaml @@ -0,0 +1,49 @@ +name: "CodeXFlow Themes" +source: + marketplace_id: "CodeXFlow.codexflow-themes" + version: "0.0.3" + installs: 36 + author: "CodeXFlow" + repo: "https://github.com/CodeXFlow/CodeXFlow-Themes-VS-Codes" + url: "https://marketplace.visualstudio.com/items?itemName=CodeXFlow.codexflow-themes" +colors: + bg: "#030C1B" + fg: "#E6C91C" + black: "#131313" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 74.1 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/codiefy-optimas-prime-color-theme.yaml b/themes/codiefy-optimas-prime-color-theme.yaml new file mode 100644 index 00000000..93878e10 --- /dev/null +++ b/themes/codiefy-optimas-prime-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Codiefy optimas prime color theme" +source: + marketplace_id: "siyam.Codeify" + version: "1.1.2" + installs: 2979 + author: "siyam" + repo: "https://github.com/SISIYAM/codiefy-color-theme-vs-code-extension" + url: "https://marketplace.visualstudio.com/items?itemName=siyam.Codeify" +colors: + bg: "#241E1E" + fg: "#F5F5F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 99.3 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.3 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/coding-light-theme.yaml b/themes/coding-light-theme.yaml new file mode 100644 index 00000000..60f54315 --- /dev/null +++ b/themes/coding-light-theme.yaml @@ -0,0 +1,49 @@ +name: "coding-light-theme" +source: + marketplace_id: "sgtcoder.developer-coding-theme" + version: "2.0.4" + installs: 308 + author: "SgtCoder" + repo: "https://github.com/sgtcoder/vscode-developer-coding-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sgtcoder.developer-coding-theme" +colors: + bg: "#F2F2F2" + fg: "#212121" + black: "#212121" + red: "#C0392B" + green: "#2E7D32" + yellow: "#A8601A" + blue: "#1565C0" + magenta: "#9C00B0" + cyan: "#00838F" + white: "#E0E0E0" + brightBlack: "#212121" + brightRed: "#C0392B" + brightGreen: "#2E7D32" + brightYellow: "#A8601A" + brightBlue: "#1565C0" + brightMagenta: "#9C00B0" + brightCyan: "#00838F" + brightWhite: "#E0E0E0" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 95.3 + black: 95.3 + red: 68.2 + green: 67.3 + yellow: 65.3 + blue: 70.4 + magenta: 73.8 + cyan: 63.1 + white: 8.1 + brightBlack: 95.3 + brightRed: 68.2 + brightGreen: 67.3 + brightYellow: 65.3 + brightBlue: 70.4 + brightMagenta: 73.8 + brightCyan: 63.1 + brightWhite: 8.1 diff --git a/themes/cods.yaml b/themes/cods.yaml new file mode 100644 index 00000000..7d132853 --- /dev/null +++ b/themes/cods.yaml @@ -0,0 +1,49 @@ +name: "cods" +source: + marketplace_id: "emet.cods" + version: "0.0.1" + installs: 3780 + author: "emet" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=emet.cods" +colors: + bg: "#181C28" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + contrast: + fg: 58.8 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.1 + cyan: 46.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 37.9 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/coelhin-smooth.yaml b/themes/coelhin-smooth.yaml new file mode 100644 index 00000000..0b5a30ec --- /dev/null +++ b/themes/coelhin-smooth.yaml @@ -0,0 +1,49 @@ +name: "coelhiN-Smooth" +source: + marketplace_id: "coelhiN.coelhiN-theme" + version: "2.0.0" + installs: 145 + author: "coelhiN" + repo: "https://github.com/coelhiN77/coelhiN-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=coelhiN.coelhiN-theme" +colors: + bg: "#242424" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#5CC09A" + yellow: "#D3D375" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#545454" + brightRed: "#F14C4C" + brightGreen: "#77EEBE" + brightYellow: "#FBFB75" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#CBCBCB" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.7 + black: 0 + red: 25 + green: 55.9 + yellow: 74.2 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 105.1 + brightBlack: 13 + brightRed: 36.8 + brightGreen: 80.5 + brightYellow: 98.3 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 72.3 diff --git a/themes/coelhin-violet.yaml b/themes/coelhin-violet.yaml new file mode 100644 index 00000000..fc5c48f3 --- /dev/null +++ b/themes/coelhin-violet.yaml @@ -0,0 +1,49 @@ +name: "coelhiN-Violet" +source: + marketplace_id: "coelhiN.coelhiN-theme" + version: "2.0.0" + installs: 145 + author: "coelhiN" + repo: "https://github.com/coelhiN77/coelhiN-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=coelhiN.coelhiN-theme" +colors: + bg: "#282B44" + fg: "#FFFADF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 99.7 + black: 0 + red: 23.3 + green: 49.6 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.6 + brightMagenta: 41.9 + brightCyan: 52 + brightWhite: 86.6 diff --git a/themes/coffee-contrast.yaml b/themes/coffee-contrast.yaml new file mode 100644 index 00000000..cca559fd --- /dev/null +++ b/themes/coffee-contrast.yaml @@ -0,0 +1,49 @@ +name: "coffee-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0F0C0C" + fg: "#C4BABB" + black: "#1D1717" + red: "#BA0E2E" + green: "#0A9F9B" + yellow: "#F5F3EB" + blue: "#E77757" + magenta: "#80B2B0" + cyan: "#E77757" + white: "#D0C8C9" + brightBlack: "#483939" + brightRed: "#F03E5F" + brightGreen: "#1EF1EB" + brightYellow: "#FFFFFF" + brightBlue: "#F4BFB0" + brightMagenta: "#C0D8D7" + brightCyan: "#F4BFB0" + brightWhite: "#F3F1F1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 66.2 + black: 0 + red: 21.2 + green: 42.1 + yellow: 99.6 + blue: 46.3 + magenta: 55.4 + cyan: 46.3 + white: 74.1 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 83.8 + brightYellow: 107.6 + brightBlue: 74.8 + brightMagenta: 79.7 + brightCyan: 74.8 + brightWhite: 98.7 diff --git a/themes/coffee-light.yaml b/themes/coffee-light.yaml new file mode 100644 index 00000000..50a0f02c --- /dev/null +++ b/themes/coffee-light.yaml @@ -0,0 +1,49 @@ +name: "coffee-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#F4F2F2" + fg: "#282122" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#0A9F9B" + yellow: "#282122" + blue: "#E77757" + magenta: "#80B2B0" + cyan: "#E77757" + white: "#362D2E" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#1EF1EB" + brightYellow: "#604F52" + brightBlue: "#F4BFB0" + brightMagenta: "#C0D8D7" + brightCyan: "#F4BFB0" + brightWhite: "#604F52" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.2 + black: 0 + red: 72.8 + green: 51.8 + yellow: 95.2 + blue: 47.7 + magenta: 38.9 + cyan: 47.7 + white: 92.3 + brightBlack: 0 + brightRed: 56.4 + brightGreen: 11.9 + brightYellow: 79.2 + brightBlue: 20.4 + brightMagenta: 15.8 + brightCyan: 20.4 + brightWhite: 79.2 diff --git a/themes/coffee.yaml b/themes/coffee.yaml new file mode 100644 index 00000000..5aaaf6b1 --- /dev/null +++ b/themes/coffee.yaml @@ -0,0 +1,49 @@ +name: "coffee" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#282122" + fg: "#C4BABB" + black: "#362D2E" + red: "#BA0E2E" + green: "#0A9F9B" + yellow: "#F5F3EB" + blue: "#E77757" + magenta: "#80B2B0" + cyan: "#E77757" + white: "#D0C8C9" + brightBlack: "#604F52" + brightRed: "#F03E5F" + brightGreen: "#1EF1EB" + brightYellow: "#FFFFFF" + brightBlue: "#F4BFB0" + brightMagenta: "#C0D8D7" + brightCyan: "#F4BFB0" + brightWhite: "#F3F1F1" +meta: + mode: "dark" + accent: "orange" + hue: 8 + contrast: + fg: 63.9 + black: 0 + red: 19 + green: 39.9 + yellow: 97.4 + blue: 44 + magenta: 53.1 + cyan: 44 + white: 71.8 + brightBlack: 12.9 + brightRed: 35.3 + brightGreen: 81.5 + brightYellow: 105.3 + brightBlue: 72.5 + brightMagenta: 77.4 + brightCyan: 72.5 + brightWhite: 96.4 diff --git a/themes/coffeespace.yaml b/themes/coffeespace.yaml new file mode 100644 index 00000000..e8a59be9 --- /dev/null +++ b/themes/coffeespace.yaml @@ -0,0 +1,49 @@ +name: "coffeespace" +source: + marketplace_id: "YesCode.darkspace" + version: "0.0.7" + installs: 174 + author: "YesCode" + repo: "https://github.com/yesomac/darkSpace" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.darkspace" +colors: + bg: "#000000" + fg: "#FAE8D8" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#0687FF" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.8 + black: 0 + red: 43 + green: 62 + yellow: 74.1 + blue: 48.5 + magenta: 20.5 + cyan: 50.5 + white: 48.2 + brightBlack: 19.6 + brightRed: 43 + brightGreen: 39.4 + brightYellow: 80.8 + brightBlue: 19.7 + brightMagenta: 20.5 + brightCyan: 50.5 + brightWhite: 99.9 diff --git a/themes/coffeyscript-theme.yaml b/themes/coffeyscript-theme.yaml new file mode 100644 index 00000000..ea59d7b1 --- /dev/null +++ b/themes/coffeyscript-theme.yaml @@ -0,0 +1,49 @@ +name: "CoffeyScript Theme" +source: + marketplace_id: "MichaelCoffeyMint.coffeyscript-theme" + version: "0.0.5" + installs: 299 + author: "Michael Coffey Mint" + repo: "https://github.com/MichaelCoffey6/CoffeyScript-VSC-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MichaelCoffeyMint.coffeyscript-theme" +colors: + bg: "#2F2625" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#CDA869" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#8F9D6A" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 25 + contrast: + fg: 77 + black: 0 + red: 24.3 + green: 50.5 + yellow: 54.7 + blue: 25 + magenta: 27.3 + cyan: 42.8 + white: 87.6 + brightBlack: 19.6 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.5 + brightMagenta: 42.9 + brightCyan: 52.9 + brightWhite: 87.6 diff --git a/themes/cognac.yaml b/themes/cognac.yaml new file mode 100644 index 00000000..a6728ab5 --- /dev/null +++ b/themes/cognac.yaml @@ -0,0 +1,49 @@ +name: "Cognac" +source: + marketplace_id: "ArtSabintsev.cognac" + version: "0.1.0" + installs: 553 + author: "ArtSabintsev" + repo: "git://github.com/ArtSabintsev/Cognac-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=ArtSabintsev.cognac" +colors: + bg: "#222222" + fg: "#DFDFDF" + black: "#222222" + red: "#FF9595" + green: "#8AEC8A" + yellow: "#FFF680" + blue: "#87D5FF" + magenta: "#C18AFF" + cyan: "#FF80C6" + white: "#DFDFDF" + brightBlack: "#222222" + brightRed: "#FF9595" + brightGreen: "#8AEC8A" + brightYellow: "#FFF680" + brightBlue: "#87D5FF" + brightMagenta: "#C18AFF" + brightCyan: "#FF80C6" + brightWhite: "#DFDFDF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 84.8 + black: 0 + red: 59 + green: 79.5 + yellow: 97 + blue: 73 + magenta: 50.4 + cyan: 54.9 + white: 84.8 + brightBlack: 0 + brightRed: 59 + brightGreen: 79.5 + brightYellow: 97 + brightBlue: 73 + brightMagenta: 50.4 + brightCyan: 54.9 + brightWhite: 84.8 diff --git a/themes/coimbrox-minimalist-panda.yaml b/themes/coimbrox-minimalist-panda.yaml new file mode 100644 index 00000000..e80b8a64 --- /dev/null +++ b/themes/coimbrox-minimalist-panda.yaml @@ -0,0 +1,49 @@ +name: "Coimbrox Minimalist Panda" +source: + marketplace_id: "GabrielCoimbra.coimbrox-panda-theme" + version: "0.0.2" + installs: 64 + author: "Gabriel Coimbra" + repo: "https://github.com/coimbrox/CoimbroxMinimalistPandaTheme" + url: "https://marketplace.visualstudio.com/items?itemName=GabrielCoimbra.coimbrox-panda-theme" +colors: + bg: "#1E1E1E" + fg: "#E6E6E6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 89.8 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/coimbroxthmedark.yaml b/themes/coimbroxthmedark.yaml new file mode 100644 index 00000000..a22be025 --- /dev/null +++ b/themes/coimbroxthmedark.yaml @@ -0,0 +1,49 @@ +name: "CoimbroxThmeDark" +source: + marketplace_id: "Coimbrox.coimbrox-theme" + version: "0.0.4" + installs: 1869 + author: "Coimbrox" + repo: "https://github.com/coimbrox/coimbrox-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Coimbrox.coimbrox-theme" +colors: + bg: "#1F122C" + fg: "#81D140" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 306 + contrast: + fg: 65.7 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.8 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/cold-night.yaml b/themes/cold-night.yaml new file mode 100644 index 00000000..467aeeba --- /dev/null +++ b/themes/cold-night.yaml @@ -0,0 +1,49 @@ +name: "Cold Night" +source: + marketplace_id: "MarkZaky.cold-night" + version: "1.2.1" + installs: 4763 + author: "MarkZaky" + repo: "https://github.com/MarkZaki/cold-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MarkZaky.cold-night" +colors: + bg: "#193549" + fg: "#FFFFFF" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FFC600" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FFC600" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: 242 + contrast: + fg: 102.1 + black: 0 + red: 42.3 + green: 61.5 + yellow: 71.3 + blue: 33.9 + magenta: 59.5 + cyan: 87.9 + white: 102.1 + brightBlack: 9.8 + brightRed: 42.3 + brightGreen: 61.5 + brightYellow: 71.3 + brightBlue: 33.9 + brightMagenta: 59.5 + brightCyan: 87.9 + brightWhite: 0 diff --git a/themes/cold-python-theme.yaml b/themes/cold-python-theme.yaml new file mode 100644 index 00000000..a78f9f38 --- /dev/null +++ b/themes/cold-python-theme.yaml @@ -0,0 +1,49 @@ +name: "Cold Python Theme" +source: + marketplace_id: "nparamonov.cold-python-theme" + version: "1.14.1" + installs: 31692 + author: "nparamonov" + repo: "https://github.com/nparamonov/vscode-cold-python-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nparamonov.cold-python-theme" +colors: + bg: "#1E1F22" + fg: "#BCBEC4" + black: "#000000" + red: "#F0524F" + green: "#5C962C" + yellow: "#A68A0D" + blue: "#3993D4" + magenta: "#A771BF" + cyan: "#00A3A3" + white: "#808080" + brightBlack: "#595959" + brightRed: "#FF4050" + brightGreen: "#4FC414" + brightYellow: "#E5BF00" + brightBlue: "#1FB0FF" + brightMagenta: "#ED7EED" + brightCyan: "#00E5E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65.5 + black: 0 + red: 38.4 + green: 36.4 + yellow: 38.9 + blue: 39.3 + magenta: 35.8 + cyan: 42.4 + white: 32.8 + brightBlack: 15.7 + brightRed: 39.3 + brightGreen: 55.8 + brightYellow: 68.1 + brightBlue: 53.2 + brightMagenta: 53.5 + brightCyan: 75.7 + brightWhite: 105.9 diff --git a/themes/coldark-cold.yaml b/themes/coldark-cold.yaml new file mode 100644 index 00000000..8a473ba4 --- /dev/null +++ b/themes/coldark-cold.yaml @@ -0,0 +1,49 @@ +name: "Coldark - Cold" +source: + marketplace_id: "ArmandPhilippot.coldark" + version: "1.2.11" + installs: 6466 + author: "Armand Philippot" + repo: "https://github.com/ArmandPhilippot/coldark-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ArmandPhilippot.coldark" +colors: + bg: "#E3EAF2" + fg: "#111B27" + black: "#E3EAF2" + red: "#C22F2E" + green: "#116B00" + yellow: "#755F00" + blue: "#005A8E" + magenta: "#AF00AF" + cyan: "#006D6D" + white: "#111B27" + brightBlack: "#3C526D" + brightRed: "#C22F2E" + brightGreen: "#116B00" + brightYellow: "#755F00" + brightBlue: "#005A8E" + brightMagenta: "#AF00AF" + brightCyan: "#006D6D" + brightWhite: "#0B121B" +meta: + mode: "light" + accent: "pink" + hue: 252 + contrast: + fg: 91.2 + black: 0 + red: 63.7 + green: 69.6 + yellow: 67.7 + blue: 72 + magenta: 65.1 + cyan: 67.3 + white: 91.2 + brightBlack: 74.8 + brightRed: 63.7 + brightGreen: 69.6 + brightYellow: 67.7 + brightBlue: 72 + brightMagenta: 65.1 + brightCyan: 67.3 + brightWhite: 92.3 diff --git a/themes/coldark-dark.yaml b/themes/coldark-dark.yaml new file mode 100644 index 00000000..4e501668 --- /dev/null +++ b/themes/coldark-dark.yaml @@ -0,0 +1,49 @@ +name: "Coldark - Dark" +source: + marketplace_id: "ArmandPhilippot.coldark" + version: "1.2.11" + installs: 6466 + author: "Armand Philippot" + repo: "https://github.com/ArmandPhilippot/coldark-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ArmandPhilippot.coldark" +colors: + bg: "#111B27" + fg: "#E3EAF2" + black: "#111B27" + red: "#CD6660" + green: "#91D076" + yellow: "#E6D37A" + blue: "#6CB8E6" + magenta: "#F4ADF4" + cyan: "#66CCCC" + white: "#E3EAF2" + brightBlack: "#8DA1B9" + brightRed: "#CD6660" + brightGreen: "#91D076" + brightYellow: "#E6D37A" + brightBlue: "#6CB8E6" + brightMagenta: "#F4ADF4" + brightCyan: "#66CCCC" + brightWhite: "#F0F4F8" +meta: + mode: "dark" + accent: "green" + hue: 253 + contrast: + fg: 92.2 + black: 0 + red: 36.1 + green: 67.1 + yellow: 78.3 + blue: 58.1 + magenta: 70.1 + cyan: 65.2 + white: 92.2 + brightBlack: 48.9 + brightRed: 36.1 + brightGreen: 67.1 + brightYellow: 78.3 + brightBlue: 58.1 + brightMagenta: 70.1 + brightCyan: 65.2 + brightWhite: 98.9 diff --git a/themes/collapse.yaml b/themes/collapse.yaml new file mode 100644 index 00000000..09908d2b --- /dev/null +++ b/themes/collapse.yaml @@ -0,0 +1,49 @@ +name: "Collapse" +source: + marketplace_id: "shwuy.zhxo-themes" + version: "2.0.1" + installs: 1481 + author: "shwuy" + repo: "https://github.com/sxhk0/.theme" + url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" +colors: + bg: "#111827" + fg: "#DEDEDE" + black: "#3B3B3B" + red: "#E03C3C" + green: "#22CD8B" + yellow: "#EEC051" + blue: "#668BE2" + magenta: "#A34BB0" + cyan: "#10CCD5" + white: "#CBCBCB" + brightBlack: "#66676F" + brightRed: "#F08359" + brightGreen: "#3FE6A3" + brightYellow: "#FBFB7B" + brightBlue: "#81A6FD" + brightMagenta: "#C970D6" + brightCyan: "#4DEAEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 265 + contrast: + fg: 85.5 + black: 0 + red: 32.1 + green: 61.4 + yellow: 71.1 + blue: 40.3 + magenta: 26.4 + cyan: 63.7 + white: 73.9 + brightBlack: 22.5 + brightRed: 50.5 + brightGreen: 74.9 + brightYellow: 99.9 + brightBlue: 54 + brightMagenta: 43 + brightCyan: 80.2 + brightWhite: 106.7 diff --git a/themes/color-coffee-dark.yaml b/themes/color-coffee-dark.yaml new file mode 100644 index 00000000..14d3595c --- /dev/null +++ b/themes/color-coffee-dark.yaml @@ -0,0 +1,49 @@ +name: "Color Coffee Dark" +source: + marketplace_id: "color-syntax.coffee-color-dark" + version: "0.4.1" + installs: 4125 + author: "SkyRider" + repo: "https://github.com/FredPizarro/coffee-color-dark-syntax" + url: "https://marketplace.visualstudio.com/items?itemName=color-syntax.coffee-color-dark" +colors: + bg: "#FFFFFE" + fg: "#3D3E43" + black: "#676E95" + red: "#EC407A" + green: "#81C784" + yellow: "#FFD54F" + blue: "#0091EA" + magenta: "#AB47BC" + cyan: "#E0E0E0" + white: "#FAFAFA" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#E6EE9C" + brightYellow: "#FFCB6B" + brightBlue: "#0091EA" + brightMagenta: "#9BEB93" + brightCyan: "#E0E0E0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 94.7 + black: 74.2 + red: 63.8 + green: 38.9 + yellow: 19.7 + blue: 60.3 + magenta: 72.7 + cyan: 15.8 + white: 0 + brightBlack: 74.2 + brightRed: 56.7 + brightGreen: 11.3 + brightYellow: 23.2 + brightBlue: 60.3 + brightMagenta: 20.4 + brightCyan: 15.8 + brightWhite: 0 diff --git a/themes/color-sea-blue.yaml b/themes/color-sea-blue.yaml new file mode 100644 index 00000000..e50587a7 --- /dev/null +++ b/themes/color-sea-blue.yaml @@ -0,0 +1,49 @@ +name: "Color Sea Blue" +source: + marketplace_id: "Danesed.color-sea" + version: "1.0.0" + installs: 16 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" +colors: + bg: "#132035" + fg: "#A3A9BB" + black: "#234677" + red: "#FF2D3B" + green: "#90E0EF" + yellow: "#FF595E" + blue: "#00BBF9" + magenta: "#FF595E" + cyan: "#00BBF9" + white: "#A3A9BB" + brightBlack: "#45495D" + brightRed: "#FF2D3B" + brightGreen: "#90E0EF" + brightYellow: "#FF595E" + brightBlue: "#00BBF9" + brightMagenta: "#FF595E" + brightCyan: "#00BBF9" + brightWhite: "#A3A9BB" +meta: + mode: "dark" + accent: "orange" + hue: 260 + contrast: + fg: 53.6 + black: 8.5 + red: 37.1 + green: 78.1 + yellow: 43.1 + blue: 57.1 + magenta: 43.1 + cyan: 57.1 + white: 53.6 + brightBlack: 9.8 + brightRed: 37.1 + brightGreen: 78.1 + brightYellow: 43.1 + brightBlue: 57.1 + brightMagenta: 43.1 + brightCyan: 57.1 + brightWhite: 53.6 diff --git a/themes/color-sea-gray.yaml b/themes/color-sea-gray.yaml new file mode 100644 index 00000000..2297329f --- /dev/null +++ b/themes/color-sea-gray.yaml @@ -0,0 +1,49 @@ +name: "Color Sea Gray" +source: + marketplace_id: "Danesed.color-sea" + version: "1.0.0" + installs: 16 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" +colors: + bg: "#1D202B" + fg: "#A9AAB5" + black: "#3A4562" + red: "#FF2D3B" + green: "#72DDF7" + yellow: "#FF595E" + blue: "#5C7CFA" + magenta: "#FF595E" + cyan: "#5C7CFA" + white: "#A9AAB5" + brightBlack: "#4B4B57" + brightRed: "#FF2D3B" + brightGreen: "#72DDF7" + brightYellow: "#FF595E" + brightBlue: "#5C7CFA" + brightMagenta: "#FF595E" + brightCyan: "#5C7CFA" + brightWhite: "#A9AAB5" +meta: + mode: "dark" + accent: "orange" + hue: 273 + contrast: + fg: 54.4 + black: 8.2 + red: 37 + green: 75.2 + yellow: 43.1 + blue: 35.5 + magenta: 43.1 + cyan: 35.5 + white: 54.4 + brightBlack: 10.5 + brightRed: 37 + brightGreen: 75.2 + brightYellow: 43.1 + brightBlue: 35.5 + brightMagenta: 43.1 + brightCyan: 35.5 + brightWhite: 54.4 diff --git a/themes/color-sea-green.yaml b/themes/color-sea-green.yaml new file mode 100644 index 00000000..f28506ec --- /dev/null +++ b/themes/color-sea-green.yaml @@ -0,0 +1,49 @@ +name: "Color Sea Green" +source: + marketplace_id: "Danesed.color-sea" + version: "1.0.0" + installs: 16 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" +colors: + bg: "#132E31" + fg: "#A4B5BA" + black: "#1F5C61" + red: "#FF2D3B" + green: "#80FFDB" + yellow: "#2EC4B6" + blue: "#00A6FB" + magenta: "#2EC4B6" + cyan: "#00A6FB" + white: "#A4B5BA" + brightBlack: "#46555C" + brightRed: "#FF2D3B" + brightGreen: "#80FFDB" + brightYellow: "#2EC4B6" + brightBlue: "#00A6FB" + brightMagenta: "#2EC4B6" + brightCyan: "#00A6FB" + brightWhite: "#A4B5BA" +meta: + mode: "dark" + accent: "orange" + hue: 205 + contrast: + fg: 56.7 + black: 12 + red: 35.3 + green: 89.7 + yellow: 56.1 + blue: 46.7 + magenta: 56.1 + cyan: 46.7 + white: 56.7 + brightBlack: 11.3 + brightRed: 35.3 + brightGreen: 89.7 + brightYellow: 56.1 + brightBlue: 46.7 + brightMagenta: 56.1 + brightCyan: 46.7 + brightWhite: 56.7 diff --git a/themes/color-sea-orange.yaml b/themes/color-sea-orange.yaml new file mode 100644 index 00000000..45288f1c --- /dev/null +++ b/themes/color-sea-orange.yaml @@ -0,0 +1,49 @@ +name: "Color Sea Orange" +source: + marketplace_id: "Danesed.color-sea" + version: "1.0.0" + installs: 16 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" +colors: + bg: "#312117" + fg: "#B8AFA6" + black: "#6E422B" + red: "#FF2D3B" + green: "#56CFE1" + yellow: "#FB5607" + blue: "#4D8EFF" + magenta: "#FB5607" + cyan: "#4D8EFF" + white: "#B8AFA6" + brightBlack: "#5A5348" + brightRed: "#FF2D3B" + brightGreen: "#56CFE1" + brightYellow: "#FB5607" + brightBlue: "#4D8EFF" + brightMagenta: "#FB5607" + brightCyan: "#4D8EFF" + brightWhite: "#B8AFA6" +meta: + mode: "dark" + accent: "orange" + hue: 53 + contrast: + fg: 56.9 + black: 10.3 + red: 36.3 + green: 65.4 + yellow: 40.2 + blue: 40.4 + magenta: 40.2 + cyan: 40.4 + white: 56.9 + brightBlack: 12.8 + brightRed: 36.3 + brightGreen: 65.4 + brightYellow: 40.2 + brightBlue: 40.4 + brightMagenta: 40.2 + brightCyan: 40.4 + brightWhite: 56.9 diff --git a/themes/color-sea-purple.yaml b/themes/color-sea-purple.yaml new file mode 100644 index 00000000..99306a56 --- /dev/null +++ b/themes/color-sea-purple.yaml @@ -0,0 +1,49 @@ +name: "Color Sea Purple" +source: + marketplace_id: "Danesed.color-sea" + version: "1.0.0" + installs: 16 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" +colors: + bg: "#1F192F" + fg: "#AEA7B7" + black: "#48387A" + red: "#FF2D3B" + green: "#C77DFF" + yellow: "#8B5CF6" + blue: "#4CC9F0" + magenta: "#8B5CF6" + cyan: "#4CC9F0" + white: "#AEA7B7" + brightBlack: "#514959" + brightRed: "#FF2D3B" + brightGreen: "#C77DFF" + brightYellow: "#8B5CF6" + brightBlue: "#4CC9F0" + brightMagenta: "#8B5CF6" + brightCyan: "#4CC9F0" + brightWhite: "#AEA7B7" +meta: + mode: "dark" + accent: "orange" + hue: 295 + contrast: + fg: 54.4 + black: 8 + red: 37.5 + green: 48.3 + yellow: 31.3 + blue: 64.3 + magenta: 31.3 + cyan: 64.3 + white: 54.4 + brightBlack: 11.1 + brightRed: 37.5 + brightGreen: 48.3 + brightYellow: 31.3 + brightBlue: 64.3 + brightMagenta: 31.3 + brightCyan: 64.3 + brightWhite: 54.4 diff --git a/themes/color-sea-red.yaml b/themes/color-sea-red.yaml new file mode 100644 index 00000000..66e7fadb --- /dev/null +++ b/themes/color-sea-red.yaml @@ -0,0 +1,49 @@ +name: "Color Sea Red" +source: + marketplace_id: "Danesed.color-sea" + version: "1.0.0" + installs: 16 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" +colors: + bg: "#301820" + fg: "#B8A6AA" + black: "#6F3046" + red: "#FF2D3B" + green: "#72E3FF" + yellow: "#FF4D5A" + blue: "#3A86FF" + magenta: "#FF4D5A" + cyan: "#3A86FF" + white: "#B8A6AA" + brightBlack: "#5A484A" + brightRed: "#FF2D3B" + brightGreen: "#72E3FF" + brightYellow: "#FF4D5A" + brightBlue: "#3A86FF" + brightMagenta: "#FF4D5A" + brightCyan: "#3A86FF" + brightWhite: "#B8A6AA" +meta: + mode: "dark" + accent: "orange" + hue: 359 + contrast: + fg: 54.3 + black: 8.5 + red: 37.1 + green: 78.5 + yellow: 41.1 + blue: 37.7 + magenta: 41.1 + cyan: 37.7 + white: 54.3 + brightBlack: 10.8 + brightRed: 37.1 + brightGreen: 78.5 + brightYellow: 41.1 + brightBlue: 37.7 + brightMagenta: 41.1 + brightCyan: 37.7 + brightWhite: 54.3 diff --git a/themes/color-sea-yellow.yaml b/themes/color-sea-yellow.yaml new file mode 100644 index 00000000..3a947a4d --- /dev/null +++ b/themes/color-sea-yellow.yaml @@ -0,0 +1,49 @@ +name: "Color Sea Yellow" +source: + marketplace_id: "Danesed.color-sea" + version: "1.0.0" + installs: 16 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" +colors: + bg: "#332614" + fg: "#BAB4A4" + black: "#6D4B23" + red: "#FF2D3B" + green: "#72DDF7" + yellow: "#FFBE0B" + blue: "#7B8CFF" + magenta: "#FFBE0B" + cyan: "#7B8CFF" + white: "#BAB4A4" + brightBlack: "#5C5846" + brightRed: "#FF2D3B" + brightGreen: "#72DDF7" + brightYellow: "#FFBE0B" + brightBlue: "#7B8CFF" + brightMagenta: "#FFBE0B" + brightCyan: "#7B8CFF" + brightWhite: "#BAB4A4" +meta: + mode: "dark" + accent: "orange" + hue: 74 + contrast: + fg: 58.4 + black: 11.5 + red: 35.7 + green: 73.8 + yellow: 70.4 + blue: 42 + magenta: 70.4 + cyan: 42 + white: 58.4 + brightBlack: 13.7 + brightRed: 35.7 + brightGreen: 73.8 + brightYellow: 70.4 + brightBlue: 42 + brightMagenta: 70.4 + brightCyan: 42 + brightWhite: 58.4 diff --git a/themes/colora.yaml b/themes/colora.yaml new file mode 100644 index 00000000..f3daa5d6 --- /dev/null +++ b/themes/colora.yaml @@ -0,0 +1,49 @@ +name: "Colora" +source: + marketplace_id: "abcdHg.colora-theme" + version: "0.0.1" + installs: 345 + author: "Harshika Gurav" + repo: "https://github.com/harshika07/colora-theme" + url: "https://marketplace.visualstudio.com/items?itemName=abcdHg.colora-theme" +colors: + bg: "#252A3A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 76.6 + black: 0 + red: 23.8 + green: 50.1 + yellow: 82.7 + blue: 24.5 + magenta: 26.8 + cyan: 44.6 + white: 87.1 + brightBlack: 19.1 + brightRed: 35.6 + brightGreen: 60.6 + brightYellow: 92.7 + brightBlue: 37.1 + brightMagenta: 42.4 + brightCyan: 52.5 + brightWhite: 87.1 diff --git a/themes/colorbars-blue.yaml b/themes/colorbars-blue.yaml new file mode 100644 index 00000000..e9822316 --- /dev/null +++ b/themes/colorbars-blue.yaml @@ -0,0 +1,49 @@ +name: "Colorbars: blue" +source: + marketplace_id: "Spring.color-bars" + version: "0.0.1" + installs: 523 + author: "Spring" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" +colors: + bg: "#1A1A1F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.4 + cyan: 47.2 + white: 89.6 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/colorbars-green.yaml b/themes/colorbars-green.yaml new file mode 100644 index 00000000..e939fe20 --- /dev/null +++ b/themes/colorbars-green.yaml @@ -0,0 +1,49 @@ +name: "Colorbars: green" +source: + marketplace_id: "Spring.color-bars" + version: "0.0.1" + installs: 523 + author: "Spring" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" +colors: + bg: "#171918" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.3 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.9 diff --git a/themes/colorbars-orange.yaml b/themes/colorbars-orange.yaml new file mode 100644 index 00000000..5a292eac --- /dev/null +++ b/themes/colorbars-orange.yaml @@ -0,0 +1,49 @@ +name: "Colorbars: orange" +source: + marketplace_id: "Spring.color-bars" + version: "0.0.1" + installs: 523 + author: "Spring" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" +colors: + bg: "#171313" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.8 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/colorbars-purple.yaml b/themes/colorbars-purple.yaml new file mode 100644 index 00000000..cd9f2071 --- /dev/null +++ b/themes/colorbars-purple.yaml @@ -0,0 +1,49 @@ +name: "Colorbars: purple" +source: + marketplace_id: "Spring.color-bars" + version: "0.0.1" + installs: 523 + author: "Spring" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" +colors: + bg: "#110E10" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.1 + black: 0 + red: 27.4 + green: 53.6 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.7 diff --git a/themes/colorful-carbon-dark-knight.yaml b/themes/colorful-carbon-dark-knight.yaml new file mode 100644 index 00000000..f7735b06 --- /dev/null +++ b/themes/colorful-carbon-dark-knight.yaml @@ -0,0 +1,49 @@ +name: "Colorful Carbon Dark Knight" +source: + marketplace_id: "Sonali-Sharma.colorful-carbon" + version: "2.0.5" + installs: 202 + author: "Sonali Sharma" + repo: "https://github.com/Sonali-Sharma-tech/colorful-carbon-extension" + url: "https://marketplace.visualstudio.com/items?itemName=Sonali-Sharma.colorful-carbon" +colors: + bg: "#0A0A0A" + fg: "#E0E0E0" + black: "#0A0A0A" + red: "#FF6B6B" + green: "#6BCB77" + yellow: "#FFD93D" + blue: "#4D96FF" + magenta: "#FF8B13" + cyan: "#4ECDC4" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF6B6B" + brightGreen: "#6BCB77" + brightYellow: "#FFD93D" + brightBlue: "#4D96FF" + brightMagenta: "#FF8B13" + brightCyan: "#4ECDC4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 87.7 + black: 0 + red: 49 + green: 63.4 + yellow: 85.2 + blue: 46 + magenta: 56.3 + cyan: 65.5 + white: 87.7 + brightBlack: 22.9 + brightRed: 49 + brightGreen: 63.4 + brightYellow: 85.2 + brightBlue: 46 + brightMagenta: 56.3 + brightCyan: 65.5 + brightWhite: 107.7 diff --git a/themes/colorful-carbon.yaml b/themes/colorful-carbon.yaml new file mode 100644 index 00000000..3e9395b0 --- /dev/null +++ b/themes/colorful-carbon.yaml @@ -0,0 +1,49 @@ +name: "Colorful Carbon" +source: + marketplace_id: "Sonali-Sharma.colorful-carbon" + version: "2.0.5" + installs: 202 + author: "Sonali Sharma" + repo: "https://github.com/Sonali-Sharma-tech/colorful-carbon-extension" + url: "https://marketplace.visualstudio.com/items?itemName=Sonali-Sharma.colorful-carbon" +colors: + bg: "#0A0A0A" + fg: "#D9D9D9" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 83.4 + black: 0 + red: 44.5 + green: 85.1 + yellow: 79.8 + blue: 56.8 + magenta: 54.6 + cyan: 79.1 + white: 107.7 + brightBlack: 24.7 + brightRed: 44.5 + brightGreen: 85.1 + brightYellow: 79.8 + brightBlue: 56.8 + brightMagenta: 54.6 + brightCyan: 79.1 + brightWhite: 107.7 diff --git a/themes/colorful-dark-fork.yaml b/themes/colorful-dark-fork.yaml new file mode 100644 index 00000000..92852ef7 --- /dev/null +++ b/themes/colorful-dark-fork.yaml @@ -0,0 +1,49 @@ +name: "Colorful-Dark - Fork" +source: + marketplace_id: "asant930.pop" + version: "0.0.1" + installs: 621 + author: "asant930" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=asant930.pop" +colors: + bg: "#003049" + fg: "#90E0EF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 238 + contrast: + fg: 75.6 + black: 0 + red: 23 + green: 49.3 + yellow: 81.9 + blue: 23.7 + magenta: 26.1 + cyan: 43.9 + white: 86.3 + brightBlack: 18.3 + brightRed: 34.9 + brightGreen: 59.8 + brightYellow: 91.9 + brightBlue: 36.3 + brightMagenta: 41.7 + brightCyan: 51.7 + brightWhite: 86.3 diff --git a/themes/colorful-dark-theme.yaml b/themes/colorful-dark-theme.yaml new file mode 100644 index 00000000..f1f260fe --- /dev/null +++ b/themes/colorful-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "colorful-dark-theme" +source: + marketplace_id: "leonex16.colorful-theme" + version: "1.1.4" + installs: 3551 + author: "Leonel Espinoza Sotelo" + repo: "https://github.com/leonex16/colorful-theme" + url: "https://marketplace.visualstudio.com/items?itemName=leonex16.colorful-theme" +colors: + bg: "#202022" + fg: "#FAFAFA" + black: "#000000" + red: "#FF4C42" + green: "#34CB5A" + yellow: "#FFD814" + blue: "#148AFF" + magenta: "#C363F2" + cyan: "#47CAE1" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF4C42" + brightGreen: "#34CB5A" + brightYellow: "#FFD814" + brightBlue: "#148AFF" + brightMagenta: "#C363F2" + brightCyan: "#47CAE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 102.4 + black: 0 + red: 40.6 + green: 58.7 + yellow: 82.6 + blue: 38.4 + magenta: 39.9 + cyan: 63.3 + white: 105.7 + brightBlack: 0 + brightRed: 40.6 + brightGreen: 58.7 + brightYellow: 82.6 + brightBlue: 38.4 + brightMagenta: 39.9 + brightCyan: 63.3 + brightWhite: 105.7 diff --git a/themes/colorful-light.yaml b/themes/colorful-light.yaml new file mode 100644 index 00000000..37ef2b14 --- /dev/null +++ b/themes/colorful-light.yaml @@ -0,0 +1,49 @@ +name: "Colorful Light" +source: + marketplace_id: "Huka.light-purple" + version: "0.0.2" + installs: 2552 + author: "Huka" + repo: "https://github.com/hukacode/vscode-light-purple" + url: "https://marketplace.visualstudio.com/items?itemName=Huka.light-purple" +colors: + bg: "#EFEAE9" + fg: "#4E3163" + black: "#4E3163" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#715AB1" + white: "#E4E4E4" + brightBlack: "#4E3163" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#B1951D" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#715AB1" + brightWhite: "#E4E4E4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 83 + black: 83 + red: 56.9 + green: 54.8 + yellow: 27.5 + blue: 50.6 + magenta: 55.9 + cyan: 65.6 + white: 0 + brightBlack: 83 + brightRed: 56.9 + brightGreen: 54.8 + brightYellow: 43.6 + brightBlue: 50.6 + brightMagenta: 55.9 + brightCyan: 65.6 + brightWhite: 0 diff --git a/themes/colorizer.yaml b/themes/colorizer.yaml new file mode 100644 index 00000000..bdfa9f29 --- /dev/null +++ b/themes/colorizer.yaml @@ -0,0 +1,49 @@ +name: "Colorizer" +source: + marketplace_id: "MohammedShalabi.colorizer" + version: "0.0.2" + installs: 12128 + author: "Mohammed Shalabi" + repo: "https://github.com/M-Shalabi/Colorizer" + url: "https://marketplace.visualstudio.com/items?itemName=MohammedShalabi.colorizer" +colors: + bg: "#20252E" + fg: "#C3CBD9" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 71.8 + black: 0 + red: 34.8 + green: 58.5 + yellow: 46.7 + blue: 47.8 + magenta: 37.2 + cyan: 50.6 + white: 88.8 + brightBlack: 13.6 + brightRed: 44.2 + brightGreen: 74.9 + brightYellow: 59.4 + brightBlue: 61.9 + brightMagenta: 48.4 + brightCyan: 65.9 + brightWhite: 81.2 diff --git a/themes/colors-color-theme.yaml b/themes/colors-color-theme.yaml new file mode 100644 index 00000000..f11d08b1 --- /dev/null +++ b/themes/colors-color-theme.yaml @@ -0,0 +1,49 @@ +name: "colors.color-theme" +source: + marketplace_id: "sissel.material-potion" + version: "0.1.1" + installs: 1206 + author: "panoply" + repo: "https://github.com/panoply/vscode-potion-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sissel.material-potion" +colors: + bg: "#080808" + fg: "#F2F2F2" + black: "#000000" + red: "#F44336" + green: "#9CCC65" + yellow: "#FFEB3B" + blue: "#42A5F5" + magenta: "#CE93D8" + cyan: "#00BCD4" + white: "#E0E0E0" + brightBlack: "#807E7B" + brightRed: "#E57373" + brightGreen: "#8BC34A" + brightYellow: "#FFF59D" + brightBlue: "#29B6F6" + brightMagenta: "#E1BEE7" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 99.3 + black: 0 + red: 38.6 + green: 67.2 + yellow: 93.3 + blue: 50.6 + magenta: 55 + cyan: 57.4 + white: 87.8 + brightBlack: 33.8 + brightRed: 45.7 + brightGreen: 61.3 + brightYellow: 99.5 + brightBlue: 57.1 + brightMagenta: 74 + brightCyan: 68.3 + brightWhite: 107.8 diff --git a/themes/colors.yaml b/themes/colors.yaml new file mode 100644 index 00000000..0469ef4e --- /dev/null +++ b/themes/colors.yaml @@ -0,0 +1,49 @@ +name: "colors" +source: + marketplace_id: "RedFoxxo.rfxtheme" + version: "1.1.1" + installs: 436 + author: "RedFoxxo" + repo: "https://github.com/RedFoxxo/RFXTheme" + url: "https://marketplace.visualstudio.com/items?itemName=RedFoxxo.rfxtheme" +colors: + bg: "#212121" + fg: "#F0F0F0" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#F0F0F0" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 95.8 + black: 0 + red: 42.4 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 95.8 + brightBlack: 9.7 + brightRed: 42.4 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 95.8 diff --git a/themes/colorshift-material-pro-evening.yaml b/themes/colorshift-material-pro-evening.yaml new file mode 100644 index 00000000..1330f48e --- /dev/null +++ b/themes/colorshift-material-pro-evening.yaml @@ -0,0 +1,49 @@ +name: "ColorShift Material Pro - Evening" +source: + marketplace_id: "ColorShift.colorshift-material-pro" + version: "1.0.0" + installs: 56 + author: "ColorShift" + repo: "https://github.com/colorshift/colorshift-material-pro" + url: "https://marketplace.visualstudio.com/items?itemName=ColorShift.colorshift-material-pro" +colors: + bg: "#1A2327" + fg: "#E0E0E0" + black: "#000000" + red: "#F57C00" + green: "#689F38" + yellow: "#FFA000" + blue: "#5C6BC0" + magenta: "#9575CD" + cyan: "#00ACC1" + white: "#E0E0E0" + brightBlack: "#546E7A" + brightRed: "#FFB74D" + brightGreen: "#AED581" + brightYellow: "#FFD54F" + brightBlue: "#7986CB" + brightMagenta: "#B39DDB" + brightCyan: "#4DD0E1" + brightWhite: "#ECEFF1" +meta: + mode: "dark" + accent: "yellow" + hue: 227 + contrast: + fg: 85.5 + black: 0 + red: 47.7 + green: 40.6 + yellow: 60.6 + blue: 25.8 + magenta: 35 + cyan: 47.2 + white: 85.5 + brightBlack: 22.5 + brightRed: 69.2 + brightGreen: 71.4 + brightYellow: 81.4 + brightBlue: 37.3 + brightMagenta: 52.5 + brightCyan: 66.1 + brightWhite: 94.7 diff --git a/themes/colorshift-material-pro-morning.yaml b/themes/colorshift-material-pro-morning.yaml new file mode 100644 index 00000000..34c19bba --- /dev/null +++ b/themes/colorshift-material-pro-morning.yaml @@ -0,0 +1,49 @@ +name: "ColorShift Material Pro - Morning" +source: + marketplace_id: "ColorShift.colorshift-material-pro" + version: "1.0.0" + installs: 56 + author: "ColorShift" + repo: "https://github.com/colorshift/colorshift-material-pro" + url: "https://marketplace.visualstudio.com/items?itemName=ColorShift.colorshift-material-pro" +colors: + bg: "#2A3A45" + fg: "#FFFFFF" + black: "#000000" + red: "#FF7043" + green: "#9CCC65" + yellow: "#FFEE58" + blue: "#64B5F6" + magenta: "#BA68C8" + cyan: "#4DD0E1" + white: "#FFFFFF" + brightBlack: "#78909C" + brightRed: "#FFAB91" + brightGreen: "#C5E1A5" + brightYellow: "#FFF59D" + brightBlue: "#90CAF9" + brightMagenta: "#CE93D8" + brightCyan: "#80DEEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 239 + contrast: + fg: 100.6 + black: 0 + red: 42.2 + green: 60 + yellow: 87.7 + blue: 51.4 + magenta: 31.5 + cyan: 61.1 + white: 100.6 + brightBlack: 33.4 + brightRed: 61.2 + brightGreen: 75.5 + brightYellow: 92.2 + brightBlue: 63.6 + brightMagenta: 47.8 + brightCyan: 70.7 + brightWhite: 100.6 diff --git a/themes/colorshift-material-pro.yaml b/themes/colorshift-material-pro.yaml new file mode 100644 index 00000000..8c186a38 --- /dev/null +++ b/themes/colorshift-material-pro.yaml @@ -0,0 +1,49 @@ +name: "ColorShift Material Pro" +source: + marketplace_id: "ColorShift.colorshift-material-pro" + version: "1.0.0" + installs: 56 + author: "ColorShift" + repo: "https://github.com/colorshift/colorshift-material-pro" + url: "https://marketplace.visualstudio.com/items?itemName=ColorShift.colorshift-material-pro" +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5252" + green: "#C3E88D" + yellow: "#FFCA28" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#EEFFFF" + brightBlack: "#546E7A" + brightRed: "#FF8A80" + brightGreen: "#E6EE9C" + brightYellow: "#FFE57F" + brightBlue: "#B0C9FF" + brightMagenta: "#E1BEE7" + brightCyan: "#B2EBF2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 230 + contrast: + fg: 100.4 + black: 0 + red: 38.7 + green: 80 + yellow: 73.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 100.4 + brightBlack: 19.7 + brightRed: 52.3 + brightGreen: 87.5 + brightYellow: 86.3 + brightBlue: 68.6 + brightMagenta: 68.9 + brightCyan: 83.4 + brightWhite: 102.7 diff --git a/themes/colorways-cheers-soft.yaml b/themes/colorways-cheers-soft.yaml new file mode 100644 index 00000000..8950b1dc --- /dev/null +++ b/themes/colorways-cheers-soft.yaml @@ -0,0 +1,49 @@ +name: "Colorways - Cheers (Soft)" +source: + marketplace_id: "Franthormel.colorways" + version: "0.2.1" + installs: 1011 + author: "Franthormel" + repo: "https://github.com/franthormel/colorways-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Franthormel.colorways" +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#414141" + red: "#D73A49" + green: "#90D259" + yellow: "#F7C400" + blue: "#005CC5" + magenta: "#FF73FD" + cyan: "#0BC7D7" + white: "#BFBFBF" + brightBlack: "#989898" + brightRed: "#FA6F71" + brightGreen: "#35D61C" + brightYellow: "#FFCA39" + brightBlue: "#1C23D6" + brightMagenta: "#FF00FF" + brightCyan: "#3CD7E7" + brightWhite: "#E0E0E0" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 101.5 + black: 93.7 + red: 70.4 + green: 33.8 + yellow: 28 + blue: 80.5 + magenta: 44.7 + cyan: 39.7 + white: 34.5 + brightBlack: 55.1 + brightRed: 52.8 + brightGreen: 36.7 + brightYellow: 24.2 + brightBlue: 89.6 + brightMagenta: 55.6 + brightCyan: 31.2 + brightWhite: 15.8 diff --git a/themes/columbina-high-contrast.yaml b/themes/columbina-high-contrast.yaml new file mode 100644 index 00000000..a76848d0 --- /dev/null +++ b/themes/columbina-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Columbina - High Contrast" +source: + marketplace_id: "frostmoon-dev.columbina-theme" + version: "0.0.2" + installs: 235 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/columbina-theme" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.columbina-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF91AB" + green: "#85D8DA" + yellow: "#FFD8B5" + blue: "#A8DCF5" + magenta: "#F5A7E0" + cyan: "#C0E8FF" + white: "#FFFFFF" + brightBlack: "#8A8598" + brightRed: "#FFAAC0" + brightGreen: "#A0F0F2" + brightYellow: "#FFE8CA" + brightBlue: "#C0E8FF" + brightMagenta: "#FFBCF0" + brightCyan: "#DAF5FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 60.9 + green: 74.7 + yellow: 87.2 + blue: 80.8 + magenta: 68.5 + cyan: 89.2 + white: 107.9 + brightBlack: 38.4 + brightRed: 69.8 + brightGreen: 89.4 + brightYellow: 95 + brightBlue: 89.2 + brightMagenta: 78.6 + brightCyan: 98.3 + brightWhite: 107.9 diff --git a/themes/comfy-monokai.yaml b/themes/comfy-monokai.yaml new file mode 100644 index 00000000..49b8bec9 --- /dev/null +++ b/themes/comfy-monokai.yaml @@ -0,0 +1,49 @@ +name: "comfy monokai" +source: + marketplace_id: "afarwind.comfy-monokai-theme" + version: "1.0.3" + installs: 2420 + author: "chase chou" + repo: "https://github.com/afarwind/comfy-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=afarwind.comfy-monokai-theme" +colors: + bg: "#252A32" + fg: "#DDEFF1" + black: "#3A4449" + red: "#E06C75" + green: "#98C379" + yellow: "#E6DB74" + blue: "#3B74D4" + magenta: "#BAA0F8" + cyan: "#4CA5CB" + white: "#DDEFF1" + brightBlack: "#3A4449" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E6DB74" + brightBlue: "#4284EB" + brightMagenta: "#BAA0F8" + brightCyan: "#61AFEF" + brightWhite: "#DDEFF1" +meta: + mode: "dark" + accent: "purple" + hue: 260 + contrast: + fg: 91.4 + black: 0 + red: 39.3 + green: 59.5 + yellow: 79.3 + blue: 26.8 + magenta: 54.8 + cyan: 44.7 + white: 91.4 + brightBlack: 0 + brightRed: 39.3 + brightGreen: 59.5 + brightYellow: 79.3 + brightBlue: 34.1 + brightMagenta: 54.8 + brightCyan: 51.9 + brightWhite: 91.4 diff --git a/themes/comfyeyes.yaml b/themes/comfyeyes.yaml new file mode 100644 index 00000000..428f416c --- /dev/null +++ b/themes/comfyeyes.yaml @@ -0,0 +1,49 @@ +name: "ComfyEyes" +source: + marketplace_id: "LukasFend.comfyeyes-theme" + version: "0.0.1" + installs: 192 + author: "Lukas Fend" + repo: "https://github.com/lukasfend/comfyeyes-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LukasFend.comfyeyes-theme" +colors: + bg: "#1D1D1D" + fg: "#B8B8B8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 62.3 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/commadoor-dark.yaml b/themes/commadoor-dark.yaml new file mode 100644 index 00000000..82dc15fd --- /dev/null +++ b/themes/commadoor-dark.yaml @@ -0,0 +1,49 @@ +name: "commadoor dark" +source: + marketplace_id: "CommadoorBooks.commadoor-theme" + version: "1.0.1" + installs: 36 + author: "Commadoor Books" + repo: "https://github.com/commadoor/commadoor-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CommadoorBooks.commadoor-theme" +colors: + bg: "#26231C" + fg: "#B2AA9A" + black: "#1F1C16" + red: "#8C1F3D" + green: "#6C7D0F" + yellow: "#944A00" + blue: "#0B7F99" + magenta: "#9B3D99" + cyan: "#186644" + white: "#B2AA9A" + brightBlack: "#69645A" + brightRed: "#8C1F3D" + brightGreen: "#6C7D0F" + brightYellow: "#944A00" + brightBlue: "#0B7F99" + brightMagenta: "#9B3D99" + brightCyan: "#186644" + brightWhite: "#E8D7C7" +meta: + mode: "dark" + accent: "pink" + hue: 88 + contrast: + fg: 54 + black: 0 + red: 10.6 + green: 27.3 + yellow: 17.6 + blue: 27.2 + magenta: 20.1 + cyan: 15.6 + white: 54 + brightBlack: 19.8 + brightRed: 10.6 + brightGreen: 27.3 + brightYellow: 17.6 + brightBlue: 27.2 + brightMagenta: 20.1 + brightCyan: 15.6 + brightWhite: 81.4 diff --git a/themes/commadoor.yaml b/themes/commadoor.yaml new file mode 100644 index 00000000..39c935e3 --- /dev/null +++ b/themes/commadoor.yaml @@ -0,0 +1,49 @@ +name: "commadoor" +source: + marketplace_id: "CommadoorBooks.commadoor-theme" + version: "1.0.1" + installs: 36 + author: "Commadoor Books" + repo: "https://github.com/commadoor/commadoor-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CommadoorBooks.commadoor-theme" +colors: + bg: "#E8D7C7" + fg: "#29261A" + black: "#29261A" + red: "#F03660" + green: "#6C7D0F" + yellow: "#944A00" + blue: "#0B7F99" + magenta: "#9B3D99" + cyan: "#186644" + white: "#69645A" + brightBlack: "#69645A" + brightRed: "#F03660" + brightGreen: "#6C7D0F" + brightYellow: "#944A00" + brightBlue: "#0B7F99" + brightMagenta: "#9B3D99" + brightCyan: "#186644" + brightWhite: "#29261A" +meta: + mode: "light" + accent: "red" + hue: 66 + contrast: + fg: 80.2 + black: 80.2 + red: 42.9 + green: 49.9 + yellow: 59.8 + blue: 50 + magenta: 57.3 + cyan: 61.9 + white: 57.6 + brightBlack: 57.6 + brightRed: 42.9 + brightGreen: 49.9 + brightYellow: 59.8 + brightBlue: 50 + brightMagenta: 57.3 + brightCyan: 61.9 + brightWhite: 80.2 diff --git a/themes/commentsareimportant.yaml b/themes/commentsareimportant.yaml new file mode 100644 index 00000000..7d7df115 --- /dev/null +++ b/themes/commentsareimportant.yaml @@ -0,0 +1,49 @@ +name: "CommentsAreImportant" +source: + marketplace_id: "pluveto.comments-are-important" + version: "0.0.1" + installs: 144 + author: "Zhang Zijing (Pluveto)" + repo: "https://github.com/pluveto/comments-are-important" + url: "https://marketplace.visualstudio.com/items?itemName=pluveto.comments-are-important" +colors: + bg: "#06020D" + fg: "#D4D4D4" + black: "#262626" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 304 + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/common.yaml b/themes/common.yaml new file mode 100644 index 00000000..3dccc030 --- /dev/null +++ b/themes/common.yaml @@ -0,0 +1,49 @@ +name: "_common" +source: + marketplace_id: "IVSoftware.nononsense" + version: "0.0.2" + installs: 36 + author: "IV Software" + repo: "https://github.com/JackShort/nononsense" + url: "https://marketplace.visualstudio.com/items?itemName=IVSoftware.nononsense" +colors: + bg: "#121212" + fg: "#CBCCC6" + black: "#303030" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#6DCBFA" + magenta: "#CFBAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#73D0FF" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 74.7 + black: 0 + red: 50.8 + green: 67.9 + yellow: 80.9 + blue: 68.4 + magenta: 70.5 + cyan: 78.3 + white: 72.1 + brightBlack: 23.3 + brightRed: 53.3 + brightGreen: 82.3 + brightYellow: 83.9 + brightBlue: 71.3 + brightMagenta: 73.4 + brightCyan: 81.3 + brightWhite: 107.3 diff --git a/themes/community-material-theme-darker.yaml b/themes/community-material-theme-darker.yaml new file mode 100644 index 00000000..8768a266 --- /dev/null +++ b/themes/community-material-theme-darker.yaml @@ -0,0 +1,49 @@ +name: "Community-Material-Theme-Darker" +source: + marketplace_id: "Equinusocio.vsc-community-material-theme" + version: "1.4.7" + installs: 3728631 + author: "Material Theme" + repo: "https://github.com/material-theme/vsc-community-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#545454" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 103.3 + black: 0 + red: 42.4 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 13.5 + brightRed: 42.4 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/community-material-theme-default-high-contrast.yaml b/themes/community-material-theme-default-high-contrast.yaml new file mode 100644 index 00000000..f4e12458 --- /dev/null +++ b/themes/community-material-theme-default-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Community-Material-Theme-Default-High-Contrast" +source: + marketplace_id: "Equinusocio.vsc-community-material-theme" + version: "1.4.7" + installs: 3728631 + author: "Material Theme" + repo: "https://github.com/material-theme/vsc-community-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 230 + contrast: + fg: 100.4 + black: 0 + red: 39.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 102.7 + brightBlack: 19.7 + brightRed: 39.4 + brightGreen: 80 + brightYellow: 74.7 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/community-material-theme-lighter-high-contrast.yaml b/themes/community-material-theme-lighter-high-contrast.yaml new file mode 100644 index 00000000..b75ff143 --- /dev/null +++ b/themes/community-material-theme-lighter-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Community-Material-Theme-Lighter-High-Contrast" +source: + marketplace_id: "Equinusocio.vsc-community-material-theme" + version: "1.4.7" + installs: 3728631 + author: "Material Theme" + repo: "https://github.com/material-theme/vsc-community-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" +colors: + bg: "#FFFFFF" + fg: "#90A4AE" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 50.6 + black: 106 + red: 67.7 + green: 44.9 + yellow: 31.7 + blue: 66.3 + magenta: 72.6 + cyan: 51.8 + white: 0 + brightBlack: 50.6 + brightRed: 67.7 + brightGreen: 44.9 + brightYellow: 31.7 + brightBlue: 66.3 + brightMagenta: 72.6 + brightCyan: 51.8 + brightWhite: 0 diff --git a/themes/community-material-theme-lighter.yaml b/themes/community-material-theme-lighter.yaml new file mode 100644 index 00000000..5cf1c37e --- /dev/null +++ b/themes/community-material-theme-lighter.yaml @@ -0,0 +1,49 @@ +name: "Community-Material-Theme-Lighter" +source: + marketplace_id: "Equinusocio.vsc-community-material-theme" + version: "1.4.7" + installs: 3728631 + author: "Material Theme" + repo: "https://github.com/material-theme/vsc-community-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" +colors: + bg: "#FAFAFA" + fg: "#90A4AE" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 47.6 + black: 103 + red: 64.7 + green: 41.9 + yellow: 28.7 + blue: 63.3 + magenta: 69.6 + cyan: 48.8 + white: 0 + brightBlack: 47.6 + brightRed: 64.7 + brightGreen: 41.9 + brightYellow: 28.7 + brightBlue: 63.3 + brightMagenta: 69.6 + brightCyan: 48.8 + brightWhite: 0 diff --git a/themes/community-material-theme-ocean-high-contrast.yaml b/themes/community-material-theme-ocean-high-contrast.yaml new file mode 100644 index 00000000..0206ddec --- /dev/null +++ b/themes/community-material-theme-ocean-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Community-Material-Theme-Ocean-High-Contrast" +source: + marketplace_id: "Equinusocio.vsc-community-material-theme" + version: "1.4.7" + installs: 3728631 + author: "Material Theme" + repo: "https://github.com/material-theme/vsc-community-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" +colors: + bg: "#0F111A" + fg: "#8F93A2" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 43.7 + black: 0 + red: 44.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 44.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/community-material-theme-palenight-high-contrast.yaml b/themes/community-material-theme-palenight-high-contrast.yaml new file mode 100644 index 00000000..03470005 --- /dev/null +++ b/themes/community-material-theme-palenight-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Community-Material-Theme-Palenight-High-Contrast" +source: + marketplace_id: "Equinusocio.vsc-community-material-theme" + version: "1.4.7" + installs: 3728631 + author: "Material Theme" + repo: "https://github.com/material-theme/vsc-community-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" +colors: + bg: "#292D3E" + fg: "#A6ACCD" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 53.5 + black: 0 + red: 40 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 40 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/compline.yaml b/themes/compline.yaml new file mode 100644 index 00000000..75e7bfc7 --- /dev/null +++ b/themes/compline.yaml @@ -0,0 +1,49 @@ +name: "Compline" +source: + marketplace_id: "rivethorn.compline" + version: "1.0.1" + installs: 547 + author: "Rivethorn" + repo: "https://github.com/jblais493/compline" + url: "https://marketplace.visualstudio.com/items?itemName=rivethorn.compline" +colors: + bg: "#1A1D21" + fg: "#F0EFEB" + black: "#22262B" + red: "#CDACAC" + green: "#B8C4B8" + yellow: "#D4CCB4" + blue: "#B4BCC4" + magenta: "#CCC4B4" + cyan: "#B4C0C8" + white: "#8B919A" + brightBlack: "#515761" + brightRed: "#CDACAC" + brightGreen: "#B8C4B8" + brightYellow: "#D4CCB4" + brightBlue: "#B4BCC4" + brightMagenta: "#CCC4B4" + brightCyan: "#B4C0C8" + brightWhite: "#E0DCD4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 95.7 + black: 0 + red: 60 + green: 67.3 + yellow: 74.1 + blue: 64 + magenta: 69.7 + cyan: 65.9 + white: 41.1 + brightBlack: 15.1 + brightRed: 60 + brightGreen: 67.3 + brightYellow: 74.1 + brightBlue: 64 + brightMagenta: 69.7 + brightCyan: 65.9 + brightWhite: 83.9 diff --git a/themes/component.yaml b/themes/component.yaml new file mode 100644 index 00000000..798bf5c7 --- /dev/null +++ b/themes/component.yaml @@ -0,0 +1,49 @@ +name: "component" +source: + marketplace_id: "AkashK.frame" + version: "0.0.2" + installs: 1100 + author: "Akash K" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AkashK.frame" +colors: + bg: "#232323" + fg: "#8F8F8F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 39.5 + black: 0 + red: 25.1 + green: 51.4 + yellow: 84 + blue: 25.8 + magenta: 28.2 + cyan: 46 + white: 88.4 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/comrade-contrast.yaml b/themes/comrade-contrast.yaml new file mode 100644 index 00000000..21d5cdb5 --- /dev/null +++ b/themes/comrade-contrast.yaml @@ -0,0 +1,49 @@ +name: "comrade-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#121414" + fg: "#D6DBDB" + black: "#1E2121" + red: "#BA0E2E" + green: "#C24E4B" + yellow: "#9BB7A7" + blue: "#F9F7F1" + magenta: "#9BB7A7" + cyan: "#C24E4B" + white: "#E4E7E7" + brightBlack: "#424A4A" + brightRed: "#F03E5F" + brightGreen: "#DC9997" + brightYellow: "#D6E2DB" + brightBlue: "#FFFFFF" + brightMagenta: "#D6E2DB" + brightCyan: "#DC9997" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.4 + black: 0 + red: 20.8 + green: 29.2 + yellow: 59.1 + blue: 101.9 + magenta: 59.1 + cyan: 29.2 + white: 91.2 + brightBlack: 10.7 + brightRed: 37.1 + brightGreen: 55.7 + brightYellow: 86.6 + brightBlue: 107.2 + brightMagenta: 86.6 + brightCyan: 55.7 + brightWhite: 107.2 diff --git a/themes/comrade-light.yaml b/themes/comrade-light.yaml new file mode 100644 index 00000000..89db04fa --- /dev/null +++ b/themes/comrade-light.yaml @@ -0,0 +1,49 @@ +name: "comrade-light" +source: + marketplace_id: "ztaylor.comradeyuri" + version: "0.0.9" + installs: 177 + author: "Zachary Taylor" + repo: "https://github.com/thezacharytaylor/comradeyuri" + url: "https://marketplace.visualstudio.com/items?itemName=ztaylor.comradeyuri" +colors: + bg: "#D6DBDB" + fg: "#343939" + black: "#E4E7E7" + red: "#BA0E2E" + green: "#BE1704" + yellow: "#4A6656" + blue: "#343939" + magenta: "#4A6656" + cyan: "#BE1704" + white: "#404646" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DC9997" + brightYellow: "#B7C4BD" + brightBlue: "#656E6E" + brightMagenta: "#B7C4BD" + brightCyan: "#DC9997" + brightWhite: "#656E6E" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 75.3 + black: 0 + red: 58.7 + green: 57.7 + yellow: 59.7 + blue: 75.3 + magenta: 59.7 + cyan: 57.7 + white: 70.6 + brightBlack: 22.1 + brightRed: 42.2 + brightGreen: 24 + brightYellow: 11.8 + brightBlue: 54.3 + brightMagenta: 11.8 + brightCyan: 24 + brightWhite: 54.3 diff --git a/themes/comrade.yaml b/themes/comrade.yaml new file mode 100644 index 00000000..2eb62adf --- /dev/null +++ b/themes/comrade.yaml @@ -0,0 +1,49 @@ +name: "comrade" +source: + marketplace_id: "ztaylor.comradeyuri" + version: "0.0.9" + installs: 177 + author: "Zachary Taylor" + repo: "https://github.com/thezacharytaylor/comradeyuri" + url: "https://marketplace.visualstudio.com/items?itemName=ztaylor.comradeyuri" +colors: + bg: "#343939" + fg: "#D6DBDB" + black: "#404646" + red: "#BA0E2E" + green: "#FB4934" + yellow: "#9BB7A7" + blue: "#F9F7F1" + magenta: "#9BB7A7" + cyan: "#FB4934" + white: "#E4E7E7" + brightBlack: "#656E6E" + brightRed: "#F03E5F" + brightGreen: "#DC9997" + brightYellow: "#D6E2DB" + brightBlue: "#FFFFFF" + brightMagenta: "#D6E2DB" + brightCyan: "#DC9997" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 76.8 + black: 0 + red: 14.2 + green: 33.9 + yellow: 52.5 + blue: 95.3 + magenta: 52.5 + cyan: 33.9 + white: 84.6 + brightBlack: 18.4 + brightRed: 30.5 + brightGreen: 49.1 + brightYellow: 80 + brightBlue: 100.6 + brightMagenta: 80 + brightCyan: 49.1 + brightWhite: 100.6 diff --git a/themes/concoctis-dark-hard.yaml b/themes/concoctis-dark-hard.yaml new file mode 100644 index 00000000..40485bc7 --- /dev/null +++ b/themes/concoctis-dark-hard.yaml @@ -0,0 +1,49 @@ +name: "Concoctis - Dark : Hard" +source: + marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" + version: "10.30.27" + installs: 74043 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" +colors: + bg: "#202020" + fg: "#D4BE98" + black: "#2A2827" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 66.9 + black: 0 + red: 41.8 + green: 56.9 + yellow: 56.7 + blue: 51.1 + magenta: 46.9 + cyan: 53.5 + white: 66.9 + brightBlack: 35.2 + brightRed: 41.8 + brightGreen: 56.9 + brightYellow: 56.7 + brightBlue: 51.1 + brightMagenta: 46.9 + brightCyan: 53.5 + brightWhite: 72.1 diff --git a/themes/concoctis-dark-soft.yaml b/themes/concoctis-dark-soft.yaml new file mode 100644 index 00000000..0ff983a3 --- /dev/null +++ b/themes/concoctis-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Concoctis - Dark : Soft" +source: + marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" + version: "10.30.27" + installs: 74043 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" +colors: + bg: "#32302F" + fg: "#D4BE98" + black: "#3C3836" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 63.8 + black: 0 + red: 38.8 + green: 53.8 + yellow: 53.6 + blue: 48 + magenta: 43.8 + cyan: 50.4 + white: 63.8 + brightBlack: 32.2 + brightRed: 38.8 + brightGreen: 53.8 + brightYellow: 53.6 + brightBlue: 48 + brightMagenta: 43.8 + brightCyan: 50.4 + brightWhite: 69.1 diff --git a/themes/concoctis-light-hard.yaml b/themes/concoctis-light-hard.yaml new file mode 100644 index 00000000..39f4570c --- /dev/null +++ b/themes/concoctis-light-hard.yaml @@ -0,0 +1,49 @@ +name: "Concoctis - Light : Hard" +source: + marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" + version: "10.30.27" + installs: 74043 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" +colors: + bg: "#F9F5D7" + fg: "#654735" + black: "#4F3829" + red: "#C14A4A" + green: "#6C782E" + yellow: "#B47109" + blue: "#45707A" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#654735" + brightRed: "#C14A4A" + brightGreen: "#6C782E" + brightYellow: "#B47109" + brightBlue: "#45707A" + brightMagenta: "#945E80" + brightCyan: "#4C7A5D" + brightWhite: "#FBF1C7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 82.2 + black: 88.5 + red: 66.1 + green: 66.7 + yellow: 59.9 + blue: 70.5 + magenta: 68 + cyan: 67.5 + white: 57.7 + brightBlack: 82.2 + brightRed: 66.1 + brightGreen: 66.7 + brightYellow: 59.9 + brightBlue: 70.5 + brightMagenta: 68 + brightCyan: 67.5 + brightWhite: 0 diff --git a/themes/concoctis-light-soft.yaml b/themes/concoctis-light-soft.yaml new file mode 100644 index 00000000..5b70717c --- /dev/null +++ b/themes/concoctis-light-soft.yaml @@ -0,0 +1,49 @@ +name: "Concoctis - Light : Soft" +source: + marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" + version: "10.30.27" + installs: 74043 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" +colors: + bg: "#F2E5BC" + fg: "#654735" + black: "#4F3829" + red: "#C14A4A" + green: "#6C782E" + yellow: "#B47109" + blue: "#45707A" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#654735" + brightRed: "#C14A4A" + brightGreen: "#6C782E" + brightYellow: "#B47109" + brightBlue: "#45707A" + brightMagenta: "#945E80" + brightCyan: "#4C7A5D" + brightWhite: "#EBDBB2" +meta: + mode: "light" + accent: "orange" + hue: 93 + contrast: + fg: 73.6 + black: 80 + red: 57.5 + green: 58.1 + yellow: 51.4 + blue: 61.9 + magenta: 59.5 + cyan: 59 + white: 49.1 + brightBlack: 73.6 + brightRed: 57.5 + brightGreen: 58.1 + brightYellow: 51.4 + brightBlue: 61.9 + brightMagenta: 59.5 + brightCyan: 59 + brightWhite: 0 diff --git a/themes/concrete-theme.yaml b/themes/concrete-theme.yaml new file mode 100644 index 00000000..a7819029 --- /dev/null +++ b/themes/concrete-theme.yaml @@ -0,0 +1,49 @@ +name: "Concrete Theme" +source: + marketplace_id: "HaiderNadeem.concrete-theme" + version: "0.0.2" + installs: 1105 + author: "Haider Nadeem" + repo: "https://github.com/HaiderNadeem/Concrete-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=HaiderNadeem.concrete-theme" +colors: + bg: "#282C34" + fg: "#EEFFFF" + black: "#2F3B54" + red: "#EF6B73" + green: "#FFCC66" + yellow: "#FFCC66" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#FFCC66" + brightYellow: "#FFCC66" + brightBlue: "#BAE67E" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 101.4 + black: 0 + red: 41.6 + green: 76.1 + yellow: 76.1 + blue: 64.6 + magenta: 58.1 + cyan: 64.6 + white: 51.9 + brightBlack: 8 + brightRed: 41.6 + brightGreen: 76.1 + brightYellow: 76.1 + brightBlue: 78.7 + brightMagenta: 58.1 + brightCyan: 64.6 + brightWhite: 51.9 diff --git a/themes/concrete.yaml b/themes/concrete.yaml new file mode 100644 index 00000000..170d475a --- /dev/null +++ b/themes/concrete.yaml @@ -0,0 +1,49 @@ +name: "Concrete" +source: + marketplace_id: "bezbac.concrete-vscode" + version: "0.3.0" + installs: 1232 + author: "bezbac" + repo: "https://github.com/bezbac/concrete" + url: "https://marketplace.visualstudio.com/items?itemName=bezbac.concrete-vscode" +colors: + bg: "#262626" + fg: "#D1D5DA" + black: "#313031" + red: "#F97583" + green: "#85E89D" + yellow: "#F1993B" + blue: "#4091C9" + magenta: "#B392F0" + cyan: "#9ECBFF" + white: "#D1D5DA" + brightBlack: "#4F4E4F" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#F1993B" + brightBlue: "#4091C9" + brightMagenta: "#B392F0" + brightCyan: "#9ECBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 77.7 + black: 0 + red: 47.7 + green: 77 + yellow: 55.2 + blue: 37 + magenta: 49.3 + cyan: 69.8 + white: 77.7 + brightBlack: 10.5 + brightRed: 47.7 + brightGreen: 77 + brightYellow: 55.2 + brightBlue: 37 + brightMagenta: 49.3 + brightCyan: 69.8 + brightWhite: 104.8 diff --git a/themes/conifer-theme.yaml b/themes/conifer-theme.yaml new file mode 100644 index 00000000..9ca356b0 --- /dev/null +++ b/themes/conifer-theme.yaml @@ -0,0 +1,49 @@ +name: "Conifer Theme" +source: + marketplace_id: "imalbert.conifer-theme" + version: "2.4.3" + installs: 1380 + author: "imalbert" + repo: "https://github.com/imalbert/conifer-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=imalbert.conifer-theme" +colors: + bg: "#292929" + fg: "#A7BEB1" + black: "#292929" + red: "#C1918B" + green: "#8BC191" + yellow: "#A59F5D" + blue: "#A7BEB1" + magenta: "#C18BBB" + cyan: "#A59F5D" + white: "#A7BEB1" + brightBlack: "#6D8571" + brightRed: "#C1918B" + brightGreen: "#8BC191" + brightYellow: "#A59F5D" + brightBlue: "#A7BEB1" + brightMagenta: "#C18BBB" + brightCyan: "#A59F5D" + brightWhite: "#A7BEB1" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.7 + black: 0 + red: 45.4 + green: 58.3 + yellow: 45.5 + blue: 60.7 + magenta: 45.4 + cyan: 45.5 + white: 60.7 + brightBlack: 30.7 + brightRed: 45.4 + brightGreen: 58.3 + brightYellow: 45.5 + brightBlue: 60.7 + brightMagenta: 45.4 + brightCyan: 45.5 + brightWhite: 60.7 diff --git a/themes/consolvis-dark-theme.yaml b/themes/consolvis-dark-theme.yaml new file mode 100644 index 00000000..9192bd95 --- /dev/null +++ b/themes/consolvis-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Consolvis Dark Theme" +source: + marketplace_id: "Consolvis.consolvis-vscode-theme" + version: "1.0.1" + installs: 222 + author: "Consolvis" + repo: "https://github.com/Consolvis/consolvis-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Consolvis.consolvis-vscode-theme" +colors: + bg: "#111827" + fg: "#9CA3AF" + black: "#030712" + red: "#F87171" + green: "#A3E635" + yellow: "#FBBF24" + blue: "#60A5FA" + magenta: "#FB923C" + cyan: "#22D3EE" + white: "#E5E7EB" + brightBlack: "#1F2937" + brightRed: "#DC2626" + brightGreen: "#4D7C0F" + brightYellow: "#B45309" + brightBlue: "#1D4ED8" + brightMagenta: "#EA580C" + brightCyan: "#0891B2" + brightWhite: "#6B7280" +meta: + mode: "dark" + accent: "purple" + hue: 265 + contrast: + fg: 51 + black: 0 + red: 47.9 + green: 78.5 + yellow: 72.6 + blue: 51.2 + magenta: 56.8 + cyan: 68.4 + white: 91 + brightBlack: 0 + brightRed: 29 + brightGreen: 26.2 + brightYellow: 26.5 + brightBlue: 18.6 + brightMagenta: 38.4 + brightCyan: 36.7 + brightWhite: 27 diff --git a/themes/contrast-kai.yaml b/themes/contrast-kai.yaml new file mode 100644 index 00000000..94dc5970 --- /dev/null +++ b/themes/contrast-kai.yaml @@ -0,0 +1,49 @@ +name: "Contrast kai" +source: + marketplace_id: "MartinPalomaresGarcia.dark-kai" + version: "0.7.0" + installs: 1009 + author: "Martin Palomares Garcia" + repo: "https://github.com/MartinPaGarcia/contrast-kai" + url: "https://marketplace.visualstudio.com/items?itemName=MartinPalomaresGarcia.dark-kai" +colors: + bg: "#171717" + fg: "#D3D0D0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#CBCBCB" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.4 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 106.9 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 74.1 diff --git a/themes/cool-panda.yaml b/themes/cool-panda.yaml new file mode 100644 index 00000000..a46d5161 --- /dev/null +++ b/themes/cool-panda.yaml @@ -0,0 +1,49 @@ +name: "Cool Panda" +source: + marketplace_id: "MatthewJustice.cool-panda" + version: "1.0.18" + installs: 1588 + author: "Matthew Justice" + repo: "https://github.com/JusticeMatthew/cool-panda" + url: "https://marketplace.visualstudio.com/items?itemName=MatthewJustice.cool-panda" +colors: + bg: "#212121" + fg: "#D8DEE9" + black: "#2A2A2A" + red: "#E6789E" + green: "#4DD9BF" + yellow: "#4DD9BF" + blue: "#92A3FF" + magenta: "#B794D1" + cyan: "#4DB8C4" + white: "#D8DEE9" + brightBlack: "#4F5051" + brightRed: "#E6789E" + brightGreen: "#4DD9BF" + brightYellow: "#4DD9BF" + brightBlue: "#92A3FF" + brightMagenta: "#B794D1" + brightCyan: "#4DB8C4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 84.1 + black: 0 + red: 46.3 + green: 68.8 + yellow: 68.8 + blue: 53.4 + magenta: 49.4 + cyan: 53.9 + white: 84.1 + brightBlack: 11.9 + brightRed: 46.3 + brightGreen: 68.8 + brightYellow: 68.8 + brightBlue: 53.4 + brightMagenta: 49.4 + brightCyan: 53.9 + brightWhite: 105.6 diff --git a/themes/cool-with-a-c.yaml b/themes/cool-with-a-c.yaml new file mode 100644 index 00000000..d72fdaf3 --- /dev/null +++ b/themes/cool-with-a-c.yaml @@ -0,0 +1,49 @@ +name: "Cool with a C" +source: + marketplace_id: "LucasNovaes94.cool-with-a-c" + version: "0.0.1" + installs: 825 + author: "Lucas Novaes" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LucasNovaes94.cool-with-a-c" +colors: + bg: "#000811" + fg: "#FFDC4F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 239 + contrast: + fg: 86.7 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/cooland.yaml b/themes/cooland.yaml new file mode 100644 index 00000000..25ac441e --- /dev/null +++ b/themes/cooland.yaml @@ -0,0 +1,49 @@ +name: "Cooland" +source: + marketplace_id: "samuelbran.cooland" + version: "0.0.2" + installs: 1494 + author: "Samuel Bran" + repo: "https://github.com/samuelbran/Cooland" + url: "https://marketplace.visualstudio.com/items?itemName=samuelbran.cooland" +colors: + bg: "#212121" + fg: "#E0E2F0" + black: "#2D2D2D" + red: "#FF7733" + green: "#C2D94C" + yellow: "#E1B072" + blue: "#50B4E6" + magenta: "#CA30C7" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#CBE645" + brightYellow: "#FFEE99" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#A6FDE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 48.8 + green: 74.6 + yellow: 62.2 + blue: 54.1 + magenta: 30.2 + cyan: 79.6 + white: 70.4 + brightBlack: 21.6 + brightRed: 45.3 + brightGreen: 81.7 + brightYellow: 93.9 + brightBlue: 33.4 + brightMagenta: 56.2 + brightCyan: 93.3 + brightWhite: 105.6 diff --git a/themes/coolnight-color-theme.yaml b/themes/coolnight-color-theme.yaml new file mode 100644 index 00000000..fb2848aa --- /dev/null +++ b/themes/coolnight-color-theme.yaml @@ -0,0 +1,49 @@ +name: "coolnight-color-theme" +source: + marketplace_id: "kpatdev.coolnight-theme" + version: "0.1.1" + installs: 155 + author: "kpatdev" + repo: "https://github.com/kpatdev/coolnight" + url: "https://marketplace.visualstudio.com/items?itemName=kpatdev.coolnight-theme" +colors: + bg: "#011423" + fg: "#CBE0F0" + black: "#214969" + red: "#E52E2E" + green: "#44FFB1" + yellow: "#FFE073" + blue: "#0FC5ED" + magenta: "#A277FF" + cyan: "#24EAF7" + white: "#24EAF7" + brightBlack: "#214969" + brightRed: "#E52E2E" + brightGreen: "#44FFB1" + brightYellow: "#FFE073" + brightBlue: "#A277FF" + brightMagenta: "#A277FF" + brightCyan: "#24EAF7" + brightWhite: "#24EAF7" +meta: + mode: "dark" + accent: "orange" + hue: 242 + contrast: + fg: 85.3 + black: 10 + red: 32.1 + green: 88.9 + yellow: 88.3 + blue: 62.2 + magenta: 42.4 + cyan: 80.5 + white: 80.5 + brightBlack: 10 + brightRed: 32.1 + brightGreen: 88.9 + brightYellow: 88.3 + brightBlue: 42.4 + brightMagenta: 42.4 + brightCyan: 80.5 + brightWhite: 80.5 diff --git a/themes/coolshine.yaml b/themes/coolshine.yaml new file mode 100644 index 00000000..3b3c5389 --- /dev/null +++ b/themes/coolshine.yaml @@ -0,0 +1,49 @@ +name: "CoolShine" +source: + marketplace_id: "Daiki.coolshine" + version: "0.0.1" + installs: 33 + author: "Daiki" + repo: "https://github.com/Daiki48/CoolShine" + url: "https://marketplace.visualstudio.com/items?itemName=Daiki.coolshine" +colors: + bg: "#CADCE0" + fg: "#333333" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 213 + contrast: + fg: 76.2 + black: 83.6 + red: 51.6 + green: 26.8 + yellow: 35.5 + blue: 63.6 + magenta: 52.1 + cyan: 38.2 + white: 63.5 + brightBlack: 56.3 + brightRed: 51.6 + brightGreen: 18.5 + brightYellow: 18.5 + brightBlue: 63.6 + brightMagenta: 52.1 + brightCyan: 38.2 + brightWhite: 26 diff --git a/themes/copper-dark.yaml b/themes/copper-dark.yaml new file mode 100644 index 00000000..169d3197 --- /dev/null +++ b/themes/copper-dark.yaml @@ -0,0 +1,49 @@ +name: "Copper Dark" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#1A1412" + fg: "#E8D5C4" + black: "#1A1412" + red: "#E65C4F" + green: "#7FAE6D" + yellow: "#F0A855" + blue: "#6B9AC4" + magenta: "#D4743F" + cyan: "#6B9AC4" + white: "#C4AA96" + brightBlack: "#3D2F27" + brightRed: "#E65C4F" + brightGreen: "#7FAE6D" + brightYellow: "#F0A855" + brightBlue: "#FF7034" + brightMagenta: "#E89B5F" + brightCyan: "#6B9AC4" + brightWhite: "#E8D5C4" +meta: + mode: "dark" + accent: "orange" + hue: 39 + contrast: + fg: 82.1 + black: 0 + red: 39.1 + green: 50.9 + yellow: 62.7 + blue: 44.6 + magenta: 40.9 + cyan: 44.6 + white: 58 + brightBlack: 0 + brightRed: 39.1 + brightGreen: 50.9 + brightYellow: 62.7 + brightBlue: 48.6 + brightMagenta: 56.9 + brightCyan: 44.6 + brightWhite: 82.1 diff --git a/themes/corallike.yaml b/themes/corallike.yaml new file mode 100644 index 00000000..9ca15a5f --- /dev/null +++ b/themes/corallike.yaml @@ -0,0 +1,49 @@ +name: "Corallike" +source: + marketplace_id: "JoaquinMartinez.corallike" + version: "0.11.2" + installs: 208 + author: "Joaquin Martinez" + repo: "https://github.com/Joaquinuriel/coral-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JoaquinMartinez.corallike" +colors: + bg: "#1E1E1E" + fg: "#EEEEEE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 94.9 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/corbatita.yaml b/themes/corbatita.yaml new file mode 100644 index 00000000..fe64d779 --- /dev/null +++ b/themes/corbatita.yaml @@ -0,0 +1,49 @@ +name: "Corbatita" +source: + marketplace_id: "MSZS.corbatita" + version: "0.0.1" + installs: 43 + author: "MSZS" + repo: "https://github.com/MoisesOliveira/corbatita-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MSZS.corbatita" +colors: + bg: "#383838" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#4585CD" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.2 + black: 0 + red: 20.4 + green: 46.7 + yellow: 79.3 + blue: 21.1 + magenta: 23.5 + cyan: 41.3 + white: 83.7 + brightBlack: 15.7 + brightRed: 32.3 + brightGreen: 57.2 + brightYellow: 89.3 + brightBlue: 28.9 + brightMagenta: 39.1 + brightCyan: 49.1 + brightWhite: 83.7 diff --git a/themes/corduroy.yaml b/themes/corduroy.yaml new file mode 100644 index 00000000..7569728a --- /dev/null +++ b/themes/corduroy.yaml @@ -0,0 +1,49 @@ +name: "Corduroy" +source: + marketplace_id: "TaylorSattenfield.corduroy-theme-vscode" + version: "1.2.3" + installs: 861 + author: "taysatte" + repo: "https://github.com/taysatte/corduroy-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TaylorSattenfield.corduroy-theme-vscode" +colors: + bg: "#1D1920" + fg: "#CDC8D0" + black: "#362D3B" + red: "#E06278" + green: "#4B8686" + yellow: "#EDB392" + blue: "#D27F91" + magenta: "#C285B2" + cyan: "#E99D90" + white: "#CDC8D0" + brightBlack: "#887B8C" + brightRed: "#E06278" + brightGreen: "#4B8686" + brightYellow: "#EDB392" + brightBlue: "#D27F91" + brightMagenta: "#C285B2" + brightCyan: "#E99D90" + brightWhite: "#CDC8D0" +meta: + mode: "dark" + accent: "red" + hue: 311 + contrast: + fg: 72.9 + black: 0 + red: 39.5 + green: 31.8 + yellow: 67 + blue: 45 + magenta: 45.5 + cyan: 58.4 + white: 72.9 + brightBlack: 33 + brightRed: 39.5 + brightGreen: 31.8 + brightYellow: 67 + brightBlue: 45 + brightMagenta: 45.5 + brightCyan: 58.4 + brightWhite: 72.9 diff --git a/themes/corgidarkpastel2.yaml b/themes/corgidarkpastel2.yaml new file mode 100644 index 00000000..781f884a --- /dev/null +++ b/themes/corgidarkpastel2.yaml @@ -0,0 +1,49 @@ +name: "corgidarkpastel2" +source: + marketplace_id: "ermeneses.corgidarkpastel" + version: "0.0.91" + installs: 254 + author: "ermeneses" + repo: "git remote add origin https://github.com/ermeneses/VsThemes" + url: "https://marketplace.visualstudio.com/items?itemName=ermeneses.corgidarkpastel" +colors: + bg: "#1D252C" + fg: "#B7C5D3" + black: "#41505E" + red: "#D95468" + green: "#8BD49C" + yellow: "#EBBF83" + blue: "#539AFC" + magenta: "#B62D65" + cyan: "#70E1E8" + white: "#FFFFFF" + brightBlack: "#41505E" + brightRed: "#D95468" + brightGreen: "#8BD49C" + brightYellow: "#EBBF83" + brightBlue: "#539AFC" + brightMagenta: "#B62D65" + brightCyan: "#70E1E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 245 + contrast: + fg: 67.7 + black: 10.8 + red: 33.5 + green: 68.1 + yellow: 69.5 + blue: 44.9 + magenta: 20.7 + cyan: 75.6 + white: 105.1 + brightBlack: 10.8 + brightRed: 33.5 + brightGreen: 68.1 + brightYellow: 69.5 + brightBlue: 44.9 + brightMagenta: 20.7 + brightCyan: 75.6 + brightWhite: 105.1 diff --git a/themes/corgidarkpastel3.yaml b/themes/corgidarkpastel3.yaml new file mode 100644 index 00000000..ae09a80e --- /dev/null +++ b/themes/corgidarkpastel3.yaml @@ -0,0 +1,49 @@ +name: "corgidarkpastel3" +source: + marketplace_id: "ermeneses.corgidarkpastel" + version: "0.0.91" + installs: 254 + author: "ermeneses" + repo: "git remote add origin https://github.com/ermeneses/VsThemes" + url: "https://marketplace.visualstudio.com/items?itemName=ermeneses.corgidarkpastel" +colors: + bg: "#292C3E" + fg: "#E7E7E7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + contrast: + fg: 87.8 + black: 0 + red: 23.3 + green: 49.5 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.6 diff --git a/themes/corporate-dark-theme.yaml b/themes/corporate-dark-theme.yaml new file mode 100644 index 00000000..de97e2d8 --- /dev/null +++ b/themes/corporate-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Corporate Dark Theme" +source: + marketplace_id: "sahiljhajharia.corporate-dark-theme" + version: "1.0.7" + installs: 21 + author: "Sahil Jhajharia" + repo: "https://github.com/Sahil4596/corporate-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sahiljhajharia.corporate-dark-theme" +colors: + bg: "#121212" + fg: "#E2E8F0" + black: "#000000" + red: "#E25858" + green: "#34D399" + yellow: "#FBBF24" + blue: "#60A5FA" + magenta: "#FB7185" + cyan: "#22D3EE" + white: "#E2E8F0" + brightBlack: "#000000" + brightRed: "#E25858" + brightGreen: "#34D399" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#FB7185" + brightCyan: "#22D3EE" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.9 + black: 0 + red: 37.9 + green: 65.6 + yellow: 73.1 + blue: 51.8 + magenta: 49.7 + cyan: 69 + white: 91.9 + brightBlack: 0 + brightRed: 37.9 + brightGreen: 65.6 + brightYellow: 73.1 + brightBlue: 51.8 + brightMagenta: 49.7 + brightCyan: 69 + brightWhite: 91.9 diff --git a/themes/cosmic-decay.yaml b/themes/cosmic-decay.yaml new file mode 100644 index 00000000..3e840874 --- /dev/null +++ b/themes/cosmic-decay.yaml @@ -0,0 +1,49 @@ +name: "Cosmic Decay" +source: + marketplace_id: "decaycs.decay" + version: "1.0.9" + installs: 37704 + author: "decaycs" + repo: "https://github.com/decaycs/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" +colors: + bg: "#12131C" + fg: "#A5B7D5" + black: "#2C2F44" + red: "#CA7E9E" + green: "#8FC8A8" + yellow: "#EFD9B0" + blue: "#A9ACDB" + magenta: "#C296EB" + cyan: "#91CEDF" + white: "#C1C4CB" + brightBlack: "#1C1E27" + brightRed: "#CA7E9E" + brightGreen: "#8FC8A8" + brightYellow: "#FFC19F" + brightBlue: "#A9ACDB" + brightMagenta: "#C296EB" + brightCyan: "#91CEDF" + brightWhite: "#A5B7D5" +meta: + mode: "dark" + accent: "magenta" + hue: 280 + contrast: + fg: 62.1 + black: 0 + red: 44.5 + green: 65.4 + yellow: 84.3 + blue: 58.5 + magenta: 54.7 + cyan: 70.6 + white: 70.2 + brightBlack: 0 + brightRed: 44.5 + brightGreen: 65.4 + brightYellow: 76.4 + brightBlue: 58.5 + brightMagenta: 54.7 + brightCyan: 70.6 + brightWhite: 62.1 diff --git a/themes/cosmic-gleam-darkest.yaml b/themes/cosmic-gleam-darkest.yaml new file mode 100644 index 00000000..1b1084c2 --- /dev/null +++ b/themes/cosmic-gleam-darkest.yaml @@ -0,0 +1,49 @@ +name: "Cosmic Gleam: Darkest" +source: + marketplace_id: "srshah.cosmic-gleam" + version: "4.4.0" + installs: 1416 + author: "Snehil Shah" + repo: "https://github.com/snehilshah/cosmic-gleam" + url: "https://marketplace.visualstudio.com/items?itemName=srshah.cosmic-gleam" +colors: + bg: "#000000" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#A6ADC8" + brightBlack: "#585B70" + brightRed: "#F37799" + brightGreen: "#89D88B" + brightYellow: "#EBD391" + brightBlue: "#74A8FC" + brightMagenta: "#F2AEDE" + brightCyan: "#6BD7CA" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 82 + black: 11.3 + red: 56.7 + green: 80.4 + yellow: 90.5 + blue: 61.1 + magenta: 78.7 + cyan: 80.3 + white: 58.3 + brightBlack: 18.9 + brightRed: 50.7 + brightGreen: 72.1 + brightYellow: 80.9 + brightBlue: 54.9 + brightMagenta: 70.3 + brightCyan: 71.9 + brightWhite: 70.1 diff --git a/themes/cosmic-iris.yaml b/themes/cosmic-iris.yaml new file mode 100644 index 00000000..5b1f7f37 --- /dev/null +++ b/themes/cosmic-iris.yaml @@ -0,0 +1,49 @@ +name: "Cosmic Iris" +source: + marketplace_id: "shravaninikam.cosmic-iris" + version: "0.1.0" + installs: 826 + author: "Shravani Nikam" + repo: "https://github.com/shravaninikam/Cosmic-Iris" + url: "https://marketplace.visualstudio.com/items?itemName=shravaninikam.cosmic-iris" +colors: + bg: "#111111" + fg: "#DBC8E0" + black: "#545454" + red: "#CD3131" + green: "#31C089" + yellow: "#E5E510" + blue: "#277AD5" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A1A1A1" + brightBlack: "#777777" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 76.4 + black: 15.2 + red: 27.2 + green: 56.2 + yellow: 86.1 + blue: 31.5 + magenta: 30.3 + cyan: 48.1 + white: 50.9 + brightBlack: 30.1 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/cosmic-purple.yaml b/themes/cosmic-purple.yaml new file mode 100644 index 00000000..ff3671fd --- /dev/null +++ b/themes/cosmic-purple.yaml @@ -0,0 +1,49 @@ +name: "Cosmic Purple" +source: + marketplace_id: "codeM.mystic-dark-collection" + version: "0.1.0" + installs: 86 + author: "Mustafa Özdemir" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=codeM.mystic-dark-collection" +colors: + bg: "#0F0F1A" + fg: "#E6E6FA" + black: "#0F0F1A" + red: "#DC143C" + green: "#228B22" + yellow: "#9370DB" + blue: "#6A5ACD" + magenta: "#8B008B" + cyan: "#9370DB" + white: "#E6E6FA" + brightBlack: "#483D8B" + brightRed: "#FF6B6B" + brightGreen: "#32CD32" + brightYellow: "#A57EDB" + brightBlue: "#8A7BCD" + brightMagenta: "#9932CC" + brightCyan: "#A57EDB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 284 + contrast: + fg: 92.2 + black: 0 + red: 29 + green: 31.3 + yellow: 36.2 + blue: 25.2 + magenta: 14.6 + cyan: 36.2 + white: 92.2 + brightBlack: 11.3 + brightRed: 48.7 + brightGreen: 60.9 + brightYellow: 42.5 + brightBlue: 37.5 + brightMagenta: 23.9 + brightCyan: 42.5 + brightWhite: 107.4 diff --git a/themes/cosmic-sea.yaml b/themes/cosmic-sea.yaml new file mode 100644 index 00000000..80086ca1 --- /dev/null +++ b/themes/cosmic-sea.yaml @@ -0,0 +1,49 @@ +name: "Cosmic Sea" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2036 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" +colors: + bg: "#0F1A2E" + fg: "#B3E5FC" + black: "#263238" + red: "#FF7043" + green: "#4DD0E1" + yellow: "#FFF59D" + blue: "#42A5F5" + magenta: "#BA68C8" + cyan: "#26C6DA" + white: "#E1F5FE" + brightBlack: "#37474F" + brightRed: "#FF8A65" + brightGreen: "#80E5FF" + brightYellow: "#FFECB3" + brightBlue: "#64B5F6" + brightMagenta: "#CE93D8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 85 + black: 0 + red: 48.2 + green: 67 + yellow: 98.2 + blue: 49.3 + magenta: 37.5 + cyan: 61.1 + white: 97.7 + brightBlack: 8.7 + brightRed: 55.5 + brightGreen: 81 + brightYellow: 94.6 + brightBlue: 57.4 + brightMagenta: 53.7 + brightCyan: 67 + brightWhite: 106.5 diff --git a/themes/cosmic.yaml b/themes/cosmic.yaml new file mode 100644 index 00000000..66b5fe8b --- /dev/null +++ b/themes/cosmic.yaml @@ -0,0 +1,49 @@ +name: "Cosmic" +source: + marketplace_id: "carmelopullara.vscode-cosmic" + version: "0.0.4" + installs: 3991 + author: "Carmelo Pullara" + repo: "https://github.com/carmelopullara/vscode-cosmic" + url: "https://marketplace.visualstudio.com/items?itemName=carmelopullara.vscode-cosmic" +colors: + bg: "#21242B" + fg: "#F2F2F2" + black: "#000000" + red: "#EF3B7D" + green: "#6BD679" + yellow: "#FAC863" + blue: "#79B6F2" + magenta: "#FF69C1" + cyan: "#55B5DB" + white: "#F2F2F2" + brightBlack: "#000000" + brightRed: "#EF3B7D" + brightGreen: "#6BD679" + brightYellow: "#FAC863" + brightBlue: "#79B6F2" + brightMagenta: "#FF69C1" + brightCyan: "#55B5DB" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "red" + hue: 267 + contrast: + fg: 96.6 + black: 0 + red: 35.3 + green: 66.1 + yellow: 75 + blue: 57.5 + magenta: 49 + cyan: 53.7 + white: 96.6 + brightBlack: 0 + brightRed: 35.3 + brightGreen: 66.1 + brightYellow: 75 + brightBlue: 57.5 + brightMagenta: 49 + brightCyan: 53.7 + brightWhite: 96.6 diff --git a/themes/cosmical.yaml b/themes/cosmical.yaml new file mode 100644 index 00000000..9d7df6f5 --- /dev/null +++ b/themes/cosmical.yaml @@ -0,0 +1,49 @@ +name: "Cosmical" +source: + marketplace_id: "jorgemrtr.cosmical" + version: "0.5.0" + installs: 1081 + author: "jorgemrtr" + repo: "https://github.com/jorgemrtr/cosmical-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jorgemrtr.cosmical" +colors: + bg: "#121212" + fg: "#DEDEDE" + black: "#121212" + red: "#F3836D" + green: "#9BD180" + yellow: "#FCCB88" + blue: "#65A4E7" + magenta: "#CC9DEC" + cyan: "#99DCFF" + white: "#DEDEDE" + brightBlack: "#121212" + brightRed: "#F3836D" + brightGreen: "#9BD180" + brightYellow: "#FCCB88" + brightBlue: "#65A4E7" + brightMagenta: "#CC9DEC" + brightCyan: "#99DCFF" + brightWhite: "#DEDEDE" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.1 + black: 0 + red: 52.1 + green: 69.5 + yellow: 79.4 + blue: 50.4 + magenta: 58.7 + cyan: 79.4 + white: 86.1 + brightBlack: 0 + brightRed: 52.1 + brightGreen: 69.5 + brightYellow: 79.4 + brightBlue: 50.4 + brightMagenta: 58.7 + brightCyan: 79.4 + brightWhite: 86.1 diff --git a/themes/cosmico.yaml b/themes/cosmico.yaml new file mode 100644 index 00000000..7d65d152 --- /dev/null +++ b/themes/cosmico.yaml @@ -0,0 +1,49 @@ +name: "Cosmico" +source: + marketplace_id: "MarianoIbarra.cosmico" + version: "0.3.0" + installs: 744 + author: "Mariano Ibarra" + repo: "https://github.com/marianoibarra/cosmico-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MarianoIbarra.cosmico" +colors: + bg: "#10151D" + fg: "#D9DFE7" + black: "#738295" + red: "#F76769" + green: "#17B877" + yellow: "#FFA23E" + blue: "#708FFF" + magenta: "#A87FFB" + cyan: "#25A6E9" + white: "#A4AFBD" + brightBlack: "#8B98A9" + brightRed: "#FC8F8E" + brightGreen: "#66CE98" + brightYellow: "#FFC26E" + brightBlue: "#A2B6FF" + brightMagenta: "#C8AAFF" + brightCyan: "#71C2EE" + brightWhite: "#FAFBFE" +meta: + mode: "dark" + accent: "magenta" + hue: 260 + contrast: + fg: 86 + black: 34.2 + red: 45.6 + green: 51.4 + yellow: 63.1 + blue: 44.9 + magenta: 45.1 + cyan: 48.8 + white: 57.5 + brightBlack: 45.2 + brightRed: 58 + brightGreen: 64.7 + brightYellow: 75.6 + brightBlue: 63.7 + brightMagenta: 63.6 + brightCyan: 63.7 + brightWhite: 104.4 diff --git a/themes/cosmicsarthak-dark.yaml b/themes/cosmicsarthak-dark.yaml new file mode 100644 index 00000000..7c24d406 --- /dev/null +++ b/themes/cosmicsarthak-dark.yaml @@ -0,0 +1,49 @@ +name: "cosmicsarthak Dark" +source: + marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" + version: "4.4.7" + installs: 24448 + author: "cosmicsarthak" + repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" +colors: + bg: "#010D18" + fg: "#9AB3C1" + black: "#010D18" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#FFF500" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#FFF500" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 242 + contrast: + fg: 58.8 + black: 0 + red: 40 + green: 68 + yellow: 82.8 + blue: 97.6 + magenta: 54.5 + cyan: 60.4 + white: 107.6 + brightBlack: 16.3 + brightRed: 40 + brightGreen: 68 + brightYellow: 94.4 + brightBlue: 97.6 + brightMagenta: 54.5 + brightCyan: 74.7 + brightWhite: 107.6 diff --git a/themes/cosmicsarthak-neon.yaml b/themes/cosmicsarthak-neon.yaml new file mode 100644 index 00000000..f651cc3d --- /dev/null +++ b/themes/cosmicsarthak-neon.yaml @@ -0,0 +1,49 @@ +name: "cosmicsarthak-neon" +source: + marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" + version: "4.4.7" + installs: 24448 + author: "cosmicsarthak" + repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" +colors: + bg: "#030D22" + fg: "#FDFEFF" + black: "#3A1B75" + red: "#EE1682" + green: "#06AD00" + yellow: "#FFD400" + blue: "#3787D6" + magenta: "#26FF00" + cyan: "#0AB2FA" + white: "#FD6666" + brightBlack: "#5C6D75" + brightRed: "#FF2E97" + brightGreen: "#00FFF2" + brightYellow: "#FD6666" + brightBlue: "#5994CE" + brightMagenta: "#FFD400" + brightCyan: "#4BC5FA" + brightWhite: "#EE0077" +meta: + mode: "dark" + accent: "green" + hue: 260 + contrast: + fg: 106.7 + black: 0 + red: 35.1 + green: 45.5 + yellow: 82.6 + blue: 36.6 + magenta: 86.3 + cyan: 55.1 + white: 47.1 + brightBlack: 24.5 + brightRed: 41.2 + brightGreen: 91.1 + brightYellow: 47.1 + brightBlue: 42.2 + brightMagenta: 82.6 + brightCyan: 64.4 + brightWhite: 34.5 diff --git a/themes/cosmicsarthak-night-owl.yaml b/themes/cosmicsarthak-night-owl.yaml new file mode 100644 index 00000000..3a1b6e98 --- /dev/null +++ b/themes/cosmicsarthak-night-owl.yaml @@ -0,0 +1,49 @@ +name: "cosmicsarthak Night Owl" +source: + marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" + version: "4.4.7" + installs: 24448 + author: "cosmicsarthak" + repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" +colors: + bg: "#011627" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 244 + contrast: + fg: 85.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 82.1 + blue: 56 + magenta: 53.8 + cyan: 59.8 + white: 107 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 107 diff --git a/themes/cosmicsarthak-red.yaml b/themes/cosmicsarthak-red.yaml new file mode 100644 index 00000000..8670f9a5 --- /dev/null +++ b/themes/cosmicsarthak-red.yaml @@ -0,0 +1,49 @@ +name: "cosmicsarthak Red" +source: + marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" + version: "4.4.7" + installs: 24448 + author: "cosmicsarthak" + repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" +colors: + bg: "#390000" + fg: "#CD8D8D" + black: "#390000" + red: "#EF5350" + green: "#22DA6E" + yellow: "#E544FF" + blue: "#FFF500" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#FFF500" + brightMagenta: "#C792EA" + brightCyan: "#FF4329" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 29 + contrast: + fg: 47.9 + black: 0 + red: 38.5 + green: 66.4 + yellow: 42.3 + blue: 96.1 + magenta: 52.9 + cyan: 58.9 + white: 106.1 + brightBlack: 14.8 + brightRed: 38.5 + brightGreen: 66.4 + brightYellow: 92.9 + brightBlue: 96.1 + brightMagenta: 52.9 + brightCyan: 39.4 + brightWhite: 106.1 diff --git a/themes/cosmo.yaml b/themes/cosmo.yaml new file mode 100644 index 00000000..9c6f1e00 --- /dev/null +++ b/themes/cosmo.yaml @@ -0,0 +1,49 @@ +name: "Cosmo" +source: + marketplace_id: "sociale11.cosmo" + version: "0.1.4" + installs: 40 + author: "Sociale11" + repo: "https://github.com/sociale11/vscode-cosmo" + url: "https://marketplace.visualstudio.com/items?itemName=sociale11.cosmo" +colors: + bg: "#161B25" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#B39C4D" + blue: "#B39C4D" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#B39C4D" + brightBlue: "#B39C4D" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 58.9 + black: 0 + red: 41.6 + green: 61.8 + yellow: 48.1 + blue: 48.1 + magenta: 44.7 + cyan: 54.1 + white: 82.6 + brightBlack: 35.1 + brightRed: 38 + brightGreen: 61.8 + brightYellow: 48.1 + brightBlue: 48.1 + brightMagenta: 12.3 + brightCyan: 54.1 + brightWhite: 82.6 diff --git a/themes/cosmos-theme.yaml b/themes/cosmos-theme.yaml new file mode 100644 index 00000000..d974b6fe --- /dev/null +++ b/themes/cosmos-theme.yaml @@ -0,0 +1,49 @@ +name: "Cosmos Theme" +source: + marketplace_id: "vinisaveg.cosmos-theme" + version: "1.0.4" + installs: 870 + author: "Vinicius Savegnago" + repo: "https://github.com/vinisaveg/cosmos-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vinisaveg.cosmos-theme" +colors: + bg: "#191622" + fg: "#E1E1E6" + black: "#201B2D" + red: "#EF81C0" + green: "#67E480" + yellow: "#E7DE79" + blue: "#84C7F8" + magenta: "#988BC7" + cyan: "#A1EFE4" + white: "#E1E1E6" + brightBlack: "#6272A4" + brightRed: "#ED4556" + brightGreen: "#5DEE9F" + brightYellow: "#E7DE79" + brightBlue: "#78D1E1" + brightMagenta: "#988BC7" + brightCyan: "#A4FFFF" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "orange" + hue: 296 + contrast: + fg: 87.6 + black: 0 + red: 53.1 + green: 74.5 + yellow: 83.6 + blue: 67.5 + magenta: 43.2 + cyan: 87.2 + white: 87.6 + brightBlack: 28 + brightRed: 36.7 + brightGreen: 79.9 + brightYellow: 83.6 + brightBlue: 69.9 + brightMagenta: 43.2 + brightCyan: 96.7 + brightWhite: 101.7 diff --git a/themes/cosmos.yaml b/themes/cosmos.yaml new file mode 100644 index 00000000..86b241e3 --- /dev/null +++ b/themes/cosmos.yaml @@ -0,0 +1,49 @@ +name: "cosmos" +source: + marketplace_id: "Ark-Platforms-Inc.galaxyum-theme-arkcorporation" + version: "0.0.1" + installs: 302 + author: "Ark Platforms" + repo: "https://github.com/ArkCorporation/Cosmic" + url: "https://marketplace.visualstudio.com/items?itemName=Ark-Platforms-Inc.galaxyum-theme-arkcorporation" +colors: + bg: "#010B21" + fg: "#FDFEFF" + black: "#3A1B75" + red: "#EE1682" + green: "#06AD00" + yellow: "#FFD400" + blue: "#3787D6" + magenta: "#EA00D9" + cyan: "#0AB2FA" + white: "#F2F8FF" + brightBlack: "#5C6D75" + brightRed: "#962EFF" + brightGreen: "#3DD69C" + brightYellow: "#FFD400" + brightBlue: "#5994CE" + brightMagenta: "#EA00D9" + brightCyan: "#4BC5FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 258 + contrast: + fg: 106.8 + black: 0 + red: 35.2 + green: 45.6 + yellow: 82.7 + blue: 36.7 + magenta: 38.4 + cyan: 55.2 + white: 102.5 + brightBlack: 24.6 + brightRed: 27.8 + brightGreen: 67.6 + brightYellow: 82.7 + brightBlue: 42.3 + brightMagenta: 38.4 + brightCyan: 64.5 + brightWhite: 107.6 diff --git a/themes/coucou-theme.yaml b/themes/coucou-theme.yaml new file mode 100644 index 00000000..544061c9 --- /dev/null +++ b/themes/coucou-theme.yaml @@ -0,0 +1,49 @@ +name: "Coucou Theme" +source: + marketplace_id: "jsmith.coucou-theme" + version: "1.0.0" + installs: 123 + author: "jsmith" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jsmith.coucou-theme" +colors: + bg: "#28231E" + fg: "#FFFFFF" + black: "#333333" + red: "#FC5432" + green: "#00C896" + yellow: "#FC8D4C" + blue: "#7DAFFF" + magenta: "#7E80E6" + cyan: "#8DE1EB" + white: "#D4D0CC" + brightBlack: "#666666" + brightRed: "#FC5432" + brightGreen: "#00C896" + brightYellow: "#FC8D4C" + brightBlue: "#7DAFFF" + brightMagenta: "#7E80E6" + brightCyan: "#8DE1EB" + brightWhite: "#D4D0CC" +meta: + mode: "dark" + accent: "orange" + hue: 67 + contrast: + fg: 105.2 + black: 0 + red: 40.4 + green: 57.7 + yellow: 54.1 + blue: 55.8 + magenta: 37.3 + cyan: 77.6 + white: 75.7 + brightBlack: 20.3 + brightRed: 40.4 + brightGreen: 57.7 + brightYellow: 54.1 + brightBlue: 55.8 + brightMagenta: 37.3 + brightCyan: 77.6 + brightWhite: 75.7 diff --git a/themes/couldpeak.yaml b/themes/couldpeak.yaml new file mode 100644 index 00000000..875e47be --- /dev/null +++ b/themes/couldpeak.yaml @@ -0,0 +1,49 @@ +name: "Couldpeak" +source: + marketplace_id: "DarkMe.Couldpeak" + version: "1.0.0" + installs: 20 + author: "DarkMe" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=DarkMe.Couldpeak" +colors: + bg: "#000000" + fg: "#FF0000" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#4BD1B2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 37.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 66.7 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/cowboy-theme.yaml b/themes/cowboy-theme.yaml new file mode 100644 index 00000000..71c7752a --- /dev/null +++ b/themes/cowboy-theme.yaml @@ -0,0 +1,49 @@ +name: "Cowboy Theme" +source: + marketplace_id: "lulu-rijpkema.cool-cowboy-theme" + version: "0.2.0" + installs: 895 + author: "LRijpkema" + repo: "https://github.com/LRijpkema/cool-cowboy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lulu-rijpkema.cool-cowboy-theme" +colors: + bg: "#1D1A23" + fg: "#E1DFE5" + black: "#1D1A23" + red: "#A25A63" + green: "#708B91" + yellow: "#BFA481" + blue: "#7790A8" + magenta: "#8D88B6" + cyan: "#2C8585" + white: "#918A9F" + brightBlack: "#746B84" + brightRed: "#E16F6F" + brightGreen: "#6BC46D" + brightYellow: "#F0BF5E" + brightBlue: "#6C9EDD" + brightMagenta: "#A48ADE" + brightCyan: "#4EB1B1" + brightWhite: "#E1DFE5" +meta: + mode: "dark" + accent: "green" + hue: 300 + contrast: + fg: 86.3 + black: 0 + red: 25.7 + green: 36.3 + yellow: 53.7 + blue: 39.7 + magenta: 39.6 + cyan: 30.1 + white: 39.7 + brightBlack: 25.5 + brightRed: 42.3 + brightGreen: 58.6 + brightYellow: 70.9 + brightBlue: 47 + brightMagenta: 45.2 + brightCyan: 50.8 + brightWhite: 86.3 diff --git a/themes/cozy-evenings.yaml b/themes/cozy-evenings.yaml new file mode 100644 index 00000000..02f12b20 --- /dev/null +++ b/themes/cozy-evenings.yaml @@ -0,0 +1,49 @@ +name: "Cozy Evenings" +source: + marketplace_id: "Naous.cozy-coding" + version: "0.0.3" + installs: 634 + author: "Naous" + repo: "https://github.com/Naawa/cozy-coding" + url: "https://marketplace.visualstudio.com/items?itemName=Naous.cozy-coding" +colors: + bg: "#000F19" + fg: "#F2D2D4" + black: "#757575" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#A7A7A7" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 234 + contrast: + fg: 83.5 + black: 29.3 + red: 27.4 + green: 53.6 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 54.2 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.7 diff --git a/themes/cozy-mornings.yaml b/themes/cozy-mornings.yaml new file mode 100644 index 00000000..54abf118 --- /dev/null +++ b/themes/cozy-mornings.yaml @@ -0,0 +1,49 @@ +name: "Cozy Mornings" +source: + marketplace_id: "Naous.cozy-coding" + version: "0.0.3" + installs: 634 + author: "Naous" + repo: "https://github.com/Naawa/cozy-coding" + url: "https://marketplace.visualstudio.com/items?itemName=Naous.cozy-coding" +colors: + bg: "#FFF6F0" + fg: "#493C3A" + black: "#000000" + red: "#7B0000" + green: "#009400" + yellow: "#FF8300" + blue: "#003875" + magenta: "#730073" + cyan: "#00637B" + white: "#A9A9A9" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#2CBE2C" + brightYellow: "#FFA84D" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#C0C0C0" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 90 + black: 101.6 + red: 89.4 + green: 62.1 + yellow: 43.4 + blue: 91.4 + magenta: 88.1 + cyan: 78.6 + white: 41.9 + brightBlack: 74.3 + brightRed: 69.5 + brightGreen: 43.4 + brightYellow: 31.9 + brightBlue: 81.6 + brightMagenta: 70.1 + brightCyan: 56.1 + brightWhite: 29.5 diff --git a/themes/cpa-lions.yaml b/themes/cpa-lions.yaml new file mode 100644 index 00000000..f6efef41 --- /dev/null +++ b/themes/cpa-lions.yaml @@ -0,0 +1,49 @@ +name: "CPA Lions" +source: + marketplace_id: "cmbell715.cpa-theme" + version: "1.0.0" + installs: 32 + author: "cmbell715" + repo: "https://github.com/cmbell715/" + url: "https://marketplace.visualstudio.com/items?itemName=cmbell715.cpa-theme" +colors: + bg: "#151323" + fg: "#AE9C66" + black: "#474438" + red: "#F60C2E" + green: "#08D058" + yellow: "#FFC617" + blue: "#138BDD" + magenta: "#F40092" + cyan: "#00F4DC" + white: "#AAA493" + brightBlack: "#5D5849" + brightRed: "#F8435D" + brightGreen: "#19F671" + brightYellow: "#FFCA63" + brightBlue: "#21A4FF" + brightMagenta: "#E5349D" + brightCyan: "#2BFDD7" + brightWhite: "#6A6453" +meta: + mode: "dark" + accent: "red" + hue: 289 + contrast: + fg: 48.5 + black: 9 + red: 34.6 + green: 62 + yellow: 76.3 + blue: 37.4 + magenta: 36.4 + cyan: 83.9 + white: 52.2 + brightBlack: 16.5 + brightRed: 39.4 + brightGreen: 81.7 + brightYellow: 78.6 + brightBlue: 49.5 + brightMagenta: 35.4 + brightCyan: 88.6 + brightWhite: 21.5 diff --git a/themes/cr-night-theme.yaml b/themes/cr-night-theme.yaml new file mode 100644 index 00000000..86dd8b55 --- /dev/null +++ b/themes/cr-night-theme.yaml @@ -0,0 +1,49 @@ +name: "cr-night-theme" +source: + marketplace_id: "carcruz.cr-theme-night" + version: "0.0.1" + installs: 138 + author: "carcruz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=carcruz.cr-theme-night" +colors: + bg: "#1D1D1D" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.2 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/crackpot-contrast.yaml b/themes/crackpot-contrast.yaml new file mode 100644 index 00000000..204ba4ce --- /dev/null +++ b/themes/crackpot-contrast.yaml @@ -0,0 +1,49 @@ +name: "crackpot-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#181726" + fg: "#D2C9EF" + black: "#222136" + red: "#BA0E2E" + green: "#E4B363" + yellow: "#EF6461" + blue: "#908CD8" + magenta: "#E4B363" + cyan: "#E8E9EB" + white: "#E2DDF5" + brightBlack: "#403D66" + brightRed: "#F03E5F" + brightGreen: "#F3DDBA" + brightYellow: "#F8BFBE" + brightBlue: "#DAD8F2" + brightMagenta: "#F3DDBA" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 287 + contrast: + fg: 75.7 + black: 0 + red: 20.3 + green: 64.6 + yellow: 42.7 + blue: 43.5 + magenta: 64.6 + cyan: 92.3 + white: 86.6 + brightBlack: 7.9 + brightRed: 36.6 + brightGreen: 86.5 + brightYellow: 75.1 + brightBlue: 83.2 + brightMagenta: 86.5 + brightCyan: 106.7 + brightWhite: 106.7 diff --git a/themes/crackpot-light.yaml b/themes/crackpot-light.yaml new file mode 100644 index 00000000..f899b6c7 --- /dev/null +++ b/themes/crackpot-light.yaml @@ -0,0 +1,49 @@ +name: "crackpot-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#E6E3EF" + fg: "#3A385B" + black: "#F4F3F8" + red: "#BA0E2E" + green: "#E4B363" + yellow: "#EF6461" + blue: "#908CD8" + magenta: "#E4B363" + cyan: "#3A385B" + white: "#44426B" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F3DDBA" + brightYellow: "#F8BFBE" + brightBlue: "#DAD8F2" + brightMagenta: "#F3DDBA" + brightCyan: "#625F9A" + brightWhite: "#625F9A" +meta: + mode: "light" + accent: "orange" + hue: 298 + contrast: + fg: 80 + black: 7.7 + red: 64.7 + green: 21 + yellow: 42.2 + blue: 41.4 + magenta: 21 + cyan: 80 + white: 76 + brightBlack: 15.2 + brightRed: 48.3 + brightGreen: 0 + brightYellow: 11.1 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 63.3 + brightWhite: 63.3 diff --git a/themes/crackpot.yaml b/themes/crackpot.yaml new file mode 100644 index 00000000..47e868f7 --- /dev/null +++ b/themes/crackpot.yaml @@ -0,0 +1,49 @@ +name: "crackpot" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#3A385B" + fg: "#D2C9EF" + black: "#44426B" + red: "#BA0E2E" + green: "#E4B363" + yellow: "#EF6461" + blue: "#908CD8" + magenta: "#E4B363" + cyan: "#E8E9EB" + white: "#E2DDF5" + brightBlack: "#625F9A" + brightRed: "#F03E5F" + brightGreen: "#F3DDBA" + brightYellow: "#F8BFBE" + brightBlue: "#DAD8F2" + brightMagenta: "#F3DDBA" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 286 + contrast: + fg: 68.4 + black: 0 + red: 13 + green: 57.3 + yellow: 35.4 + blue: 36.2 + magenta: 57.3 + cyan: 85 + white: 79.3 + brightBlack: 14.4 + brightRed: 29.3 + brightGreen: 79.2 + brightYellow: 67.7 + brightBlue: 75.9 + brightMagenta: 79.2 + brightCyan: 99.4 + brightWhite: 99.4 diff --git a/themes/crafty-theme-dark-contrast.yaml b/themes/crafty-theme-dark-contrast.yaml new file mode 100644 index 00000000..ff1fbef8 --- /dev/null +++ b/themes/crafty-theme-dark-contrast.yaml @@ -0,0 +1,49 @@ +name: "Crafty Theme Dark Contrast" +source: + marketplace_id: "MarkRyan.crafty-theme-dark" + version: "0.0.47" + installs: 114 + author: "Mark Ryan" + repo: "https://github.com/mk-ryan1988/crafty-pro" + url: "https://marketplace.visualstudio.com/items?itemName=MarkRyan.crafty-theme-dark" +colors: + bg: "#222222" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.5 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 88.6 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/crazydark.yaml b/themes/crazydark.yaml new file mode 100644 index 00000000..62ea6ff3 --- /dev/null +++ b/themes/crazydark.yaml @@ -0,0 +1,49 @@ +name: "CrazyDark" +source: + marketplace_id: "DarkThemes.CrazyDark" + version: "0.0.1" + installs: 117 + author: "DarkThemes" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=DarkThemes.CrazyDark" +colors: + bg: "#000000" + fg: "#C07F7F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 42.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/cream-charcoal.yaml b/themes/cream-charcoal.yaml new file mode 100644 index 00000000..45cd6268 --- /dev/null +++ b/themes/cream-charcoal.yaml @@ -0,0 +1,49 @@ +name: "Cream Charcoal" +source: + marketplace_id: "Icycoldveins.verum-monokai-themes" + version: "1.2.1" + installs: 46 + author: "Icycoldveins" + repo: "https://github.com/icycoldveins/Ide-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" +colors: + bg: "#2D2A2E" + fg: "#A89984" + black: "#1A1A1A" + red: "#E06C75" + green: "#5A5A5A" + yellow: "#E78A4E" + blue: "#5A5A5A" + magenta: "#F5F0E8" + cyan: "#E5D5C8" + white: "#E5D5C8" + brightBlack: "#A89984" + brightRed: "#E06C75" + brightGreen: "#5A5A5A" + brightYellow: "#E78A4E" + brightBlue: "#5A5A5A" + brightMagenta: "#F5F0E8" + brightCyan: "#E5D5C8" + brightWhite: "#F5F0E8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 44.2 + black: 0 + red: 39.1 + green: 14.1 + yellow: 47.8 + blue: 14.1 + magenta: 94.4 + cyan: 78.7 + white: 78.7 + brightBlack: 44.2 + brightRed: 39.1 + brightGreen: 14.1 + brightYellow: 47.8 + brightBlue: 14.1 + brightMagenta: 94.4 + brightCyan: 78.7 + brightWhite: 94.4 diff --git a/themes/creative-purple-colorblind-innovation-imagination.yaml b/themes/creative-purple-colorblind-innovation-imagination.yaml new file mode 100644 index 00000000..84cc9cbe --- /dev/null +++ b/themes/creative-purple-colorblind-innovation-imagination.yaml @@ -0,0 +1,49 @@ +name: "Creative Purple Colorblind - Innovation & Imagination" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#1A0D1A" + fg: "#F3E5F5" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 327 + contrast: + fg: 93.1 + black: 0 + red: 38.1 + green: 48 + yellow: 92.8 + blue: 43.5 + magenta: 33.1 + cyan: 56.9 + white: 96.5 + brightBlack: 9.5 + brightRed: 43.3 + brightGreen: 82.4 + brightYellow: 102.1 + brightBlue: 41 + brightMagenta: 41.9 + brightCyan: 91.6 + brightWhite: 107.3 diff --git a/themes/creative-purple-light-innovation-imagination.yaml b/themes/creative-purple-light-innovation-imagination.yaml new file mode 100644 index 00000000..689835db --- /dev/null +++ b/themes/creative-purple-light-innovation-imagination.yaml @@ -0,0 +1,49 @@ +name: "Creative Purple Light - Innovation & Imagination" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#FAF5FA" + fg: "#1A0D1A" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 100.1 + black: 94.4 + red: 57.8 + green: 48.2 + yellow: 0 + blue: 52.6 + magenta: 62.9 + cyan: 39.5 + white: 0 + brightBlack: 87.2 + brightRed: 52.8 + brightGreen: 15.3 + brightYellow: 0 + brightBlue: 55.1 + brightMagenta: 54.1 + brightCyan: 0 + brightWhite: 100.9 diff --git a/themes/crema.yaml b/themes/crema.yaml new file mode 100644 index 00000000..0132026c --- /dev/null +++ b/themes/crema.yaml @@ -0,0 +1,49 @@ +name: "Crema" +source: + marketplace_id: "Le-BlitzZz.vscode-crema-theme" + version: "7.0.0" + installs: 124 + author: "Le-BlitzZz" + repo: "https://github.com/Le-BlitzZz/vscode-crema-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Le-BlitzZz.vscode-crema-theme" +colors: + bg: "#1F1F1F" + fg: "#CCCCCC" + black: "#51576D" + red: "#E78284" + green: "#A6D189" + yellow: "#E5C890" + blue: "#8CAAEE" + magenta: "#F4B8E4" + cyan: "#81C8BE" + white: "#A5ADCE" + brightBlack: "#626880" + brightRed: "#E67172" + brightGreen: "#8EC772" + brightYellow: "#D9BA73" + brightBlue: "#7B9EF0" + brightMagenta: "#F2A4DB" + brightCyan: "#5ABFB5" + brightWhite: "#B5BFE2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.7 + black: 15.2 + red: 48.6 + green: 69.3 + yellow: 73.4 + blue: 54.7 + magenta: 72.6 + cyan: 63.9 + white: 56.5 + brightBlack: 22.3 + brightRed: 43.4 + brightGreen: 62.1 + brightYellow: 65.2 + brightBlue: 48.8 + brightMagenta: 64.7 + brightCyan: 57.2 + brightWhite: 66.5 diff --git a/themes/crf-flamengo.yaml b/themes/crf-flamengo.yaml new file mode 100644 index 00000000..95de587a --- /dev/null +++ b/themes/crf-flamengo.yaml @@ -0,0 +1,49 @@ +name: "CRF Flamengo" +source: + marketplace_id: "crf-flamengo-theme.crf-flamengo-theme" + version: "0.0.1" + installs: 258 + author: "crf-flamengo-theme" + repo: "https://keoxcoelho@dev.azure.com/keoxcoelho/VSC_Themes/_git/VSC_Themes" + url: "https://marketplace.visualstudio.com/items?itemName=crf-flamengo-theme.crf-flamengo-theme" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#868686" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#474747" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 37.6 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 10.9 diff --git a/themes/crimson-sunset.yaml b/themes/crimson-sunset.yaml new file mode 100644 index 00000000..48a5445b --- /dev/null +++ b/themes/crimson-sunset.yaml @@ -0,0 +1,49 @@ +name: "Crimson Sunset" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#DC143C" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#DC143C" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 29.5 + cyan: 92.2 + white: 107.9 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 16.2 + brightMagenta: 29.5 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/crisp-contrast.yaml b/themes/crisp-contrast.yaml new file mode 100644 index 00000000..6f5e6608 --- /dev/null +++ b/themes/crisp-contrast.yaml @@ -0,0 +1,49 @@ +name: "crisp-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0C090C" + fg: "#FFFFFF" + black: "#1B141B" + red: "#BA0E2E" + green: "#CBA0CD" + yellow: "#765478" + blue: "#FC6A0F" + magenta: "#FC6A0F" + cyan: "#CBA0CD" + white: "#FFFFFF" + brightBlack: "#463546" + brightRed: "#F03E5F" + brightGreen: "#F0E3F0" + brightYellow: "#A987AB" + brightBlue: "#FDA974" + brightMagenta: "#FDA974" + brightCyan: "#F0E3F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.7 + black: 0 + red: 21.4 + green: 58.3 + yellow: 20.2 + blue: 47.1 + magenta: 47.1 + cyan: 58.3 + white: 107.7 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 92 + brightYellow: 43.5 + brightBlue: 66.6 + brightMagenta: 66.6 + brightCyan: 92 + brightWhite: 107.7 diff --git a/themes/crisp-light.yaml b/themes/crisp-light.yaml new file mode 100644 index 00000000..d794d0c5 --- /dev/null +++ b/themes/crisp-light.yaml @@ -0,0 +1,49 @@ +name: "crisp-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#221A22" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#99769B" + yellow: "#765478" + blue: "#FC6A0F" + magenta: "#FC6A0F" + cyan: "#99769B" + white: "#302530" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C5B1C6" + brightYellow: "#A987AB" + brightBlue: "#FDA974" + brightMagenta: "#FDA974" + brightCyan: "#C5B1C6" + brightWhite: "#5C465C" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103.9 + black: 0 + red: 80.3 + green: 66.2 + yellow: 81.5 + blue: 54.6 + magenta: 54.6 + cyan: 66.2 + white: 101.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 38.8 + brightYellow: 58.1 + brightBlue: 35.7 + brightMagenta: 35.7 + brightCyan: 38.8 + brightWhite: 89.1 diff --git a/themes/crisp.yaml b/themes/crisp.yaml new file mode 100644 index 00000000..bdcdf3cc --- /dev/null +++ b/themes/crisp.yaml @@ -0,0 +1,49 @@ +name: "crisp" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#221A22" + fg: "#FFFFFF" + black: "#302530" + red: "#BA0E2E" + green: "#CBA0CD" + yellow: "#765478" + blue: "#FC6A0F" + magenta: "#FC6A0F" + cyan: "#CBA0CD" + white: "#FFFFFF" + brightBlack: "#5C465C" + brightRed: "#F03E5F" + brightGreen: "#F0E3F0" + brightYellow: "#A987AB" + brightBlue: "#FDA974" + brightMagenta: "#FDA974" + brightCyan: "#F0E3F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 326 + contrast: + fg: 106.2 + black: 0 + red: 19.8 + green: 56.8 + yellow: 18.7 + blue: 45.6 + magenta: 45.6 + cyan: 56.8 + white: 106.2 + brightBlack: 11.5 + brightRed: 36.1 + brightGreen: 90.5 + brightYellow: 42 + brightBlue: 65.1 + brightMagenta: 65.1 + brightCyan: 90.5 + brightWhite: 106.2 diff --git a/themes/crow-dark.yaml b/themes/crow-dark.yaml new file mode 100644 index 00000000..3cc5e81c --- /dev/null +++ b/themes/crow-dark.yaml @@ -0,0 +1,49 @@ +name: "Crow Dark" +source: + marketplace_id: "codejockie.crow" + version: "0.1.1" + installs: 1139 + author: "John Kennedy" + repo: "https://github.com/codejockie/crow-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=codejockie.crow" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF8585" + green: "#87C591" + yellow: "#F3D09B" + blue: "#70B8FF" + magenta: "#AEA3FF" + cyan: "#9EE0E0" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF8585" + brightGreen: "#87C591" + brightYellow: "#F3D09B" + brightBlue: "#70B8FF" + brightMagenta: "#AEA3FF" + brightCyan: "#9EE0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 56.2 + green: 63.4 + yellow: 81.2 + blue: 61.3 + magenta: 58.6 + cyan: 80.7 + white: 107.9 + brightBlack: 0 + brightRed: 56.2 + brightGreen: 63.4 + brightYellow: 81.2 + brightBlue: 61.3 + brightMagenta: 58.6 + brightCyan: 80.7 + brightWhite: 107.9 diff --git a/themes/crowveil-ayu.yaml b/themes/crowveil-ayu.yaml new file mode 100644 index 00000000..874528df --- /dev/null +++ b/themes/crowveil-ayu.yaml @@ -0,0 +1,49 @@ +name: "Crowveil - Ayu" +source: + marketplace_id: "Arch-Darker.Arch-Darker" + version: "1.1.1" + installs: 143 + author: "Crowveil" + repo: "https://github.com/m4wi/Arch-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Arch-Darker.Arch-Darker" +colors: + bg: "#020202" + fg: "#B0B0B0" + black: "#000000" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 59.5 + black: 0 + red: 45 + green: 71 + yellow: 67.6 + blue: 61.6 + magenta: 61.6 + cyan: 78.9 + white: 72.7 + brightBlack: 23.9 + brightRed: 47.6 + brightGreen: 74.3 + brightYellow: 70.6 + brightBlue: 64.3 + brightMagenta: 64.4 + brightCyan: 81.9 + brightWhite: 107.9 diff --git a/themes/crt-64.yaml b/themes/crt-64.yaml new file mode 100644 index 00000000..d8b2fb9c --- /dev/null +++ b/themes/crt-64.yaml @@ -0,0 +1,49 @@ +name: "CRT 64" +source: + marketplace_id: "krueger71.crt-themes" + version: "0.5.2" + installs: 38247 + author: "krueger71" + repo: "https://github.com/krueger71/crt-themes" + url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" +colors: + bg: "#352879" + fg: "#6C5EB5" + black: "#6C5EB5" + red: "#5D50A5" + green: "#6153A9" + yellow: "#56489D" + blue: "#685AB1" + magenta: "#6557AD" + cyan: "#5A4CA1" + white: "#524599" + brightBlack: "#6C5EB5" + brightRed: "#5D50A5" + brightGreen: "#6153A9" + brightYellow: "#56489D" + brightBlue: "#685AB1" + brightMagenta: "#6557AD" + brightCyan: "#5A4CA1" + brightWhite: "#524599" +meta: + mode: "dark" + accent: "magenta" + hue: 284 + contrast: + fg: 18.1 + black: 18.1 + red: 12.2 + green: 13.5 + yellow: 9.3 + blue: 16.4 + magenta: 15.1 + cyan: 10.8 + white: 8 + brightBlack: 18.1 + brightRed: 12.2 + brightGreen: 13.5 + brightYellow: 9.3 + brightBlue: 16.4 + brightMagenta: 15.1 + brightCyan: 10.8 + brightWhite: 8 diff --git a/themes/crt-alt.yaml b/themes/crt-alt.yaml new file mode 100644 index 00000000..9dc32a8a --- /dev/null +++ b/themes/crt-alt.yaml @@ -0,0 +1,49 @@ +name: "CRT-ALT" +source: + marketplace_id: "leandro-rodrigues.crt-vscode" + version: "0.1.0" + installs: 6563 + author: "Leandro Rodrigues" + repo: "https://github.com/TheOld/legacy-term" + url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" +colors: + bg: "#000C00" + fg: "#00FF66" + black: "#00FF66" + red: "#00BE4B" + green: "#00CE52" + yellow: "#009E3D" + blue: "#00EF5F" + magenta: "#00DF58" + cyan: "#00AE44" + white: "#008E36" + brightBlack: "#00FF66" + brightRed: "#00BE4B" + brightGreen: "#00CE52" + brightYellow: "#009E3D" + brightBlue: "#00EF5F" + brightMagenta: "#00DF58" + brightCyan: "#00AE44" + brightWhite: "#008E36" +meta: + mode: "dark" + accent: "green" + hue: 142 + contrast: + fg: 87 + black: 87 + red: 53.9 + green: 61.6 + yellow: 39.4 + blue: 78.4 + magenta: 70.1 + cyan: 46.5 + white: 32.7 + brightBlack: 87 + brightRed: 53.9 + brightGreen: 61.6 + brightYellow: 39.4 + brightBlue: 78.4 + brightMagenta: 70.1 + brightCyan: 46.5 + brightWhite: 32.7 diff --git a/themes/crt-amber.yaml b/themes/crt-amber.yaml new file mode 100644 index 00000000..ca864085 --- /dev/null +++ b/themes/crt-amber.yaml @@ -0,0 +1,49 @@ +name: "CRT Amber" +source: + marketplace_id: "leandro-rodrigues.crt-vscode" + version: "0.1.0" + installs: 6563 + author: "Leandro Rodrigues" + repo: "https://github.com/TheOld/legacy-term" + url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" +colors: + bg: "#180F06" + fg: "#FFB000" + black: "#FFB000" + red: "#C68C0B" + green: "#D49508" + yellow: "#A97A10" + blue: "#F1A703" + magenta: "#E29E05" + cyan: "#B7830D" + white: "#9B7113" + brightBlack: "#FFB000" + brightRed: "#C68C0B" + brightGreen: "#D49508" + brightYellow: "#A97A10" + brightBlue: "#F1A703" + brightMagenta: "#E29E05" + brightCyan: "#B7830D" + brightWhite: "#9B7113" +meta: + mode: "dark" + accent: "yellow" + hue: 67 + contrast: + fg: 68.1 + black: 68.1 + red: 45.8 + green: 51.1 + yellow: 35.6 + blue: 62.3 + magenta: 56.5 + cyan: 40.5 + white: 30.8 + brightBlack: 68.1 + brightRed: 45.8 + brightGreen: 51.1 + brightYellow: 35.6 + brightBlue: 62.3 + brightMagenta: 56.5 + brightCyan: 40.5 + brightWhite: 30.8 diff --git a/themes/crt-apple.yaml b/themes/crt-apple.yaml new file mode 100644 index 00000000..a940d2b1 --- /dev/null +++ b/themes/crt-apple.yaml @@ -0,0 +1,49 @@ +name: "CRT Apple" +source: + marketplace_id: "leandro-rodrigues.crt-vscode" + version: "0.1.0" + installs: 6563 + author: "Leandro Rodrigues" + repo: "https://github.com/TheOld/legacy-term" + url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" +colors: + bg: "#000C00" + fg: "#33FF33" + black: "#33FF33" + red: "#25BE25" + green: "#29CE29" + yellow: "#1F9E1F" + blue: "#30EF30" + magenta: "#2CDF2C" + cyan: "#22AE22" + white: "#1B8E1B" + brightBlack: "#33FF33" + brightRed: "#25BE25" + brightGreen: "#29CE29" + brightYellow: "#1F9E1F" + brightBlue: "#30EF30" + brightMagenta: "#2CDF2C" + brightCyan: "#22AE22" + brightWhite: "#1B8E1B" +meta: + mode: "dark" + accent: "green" + hue: 142 + contrast: + fg: 86.8 + black: 86.8 + red: 53.8 + green: 61.5 + yellow: 39.4 + blue: 78.3 + magenta: 70 + cyan: 46.4 + white: 32.7 + brightBlack: 86.8 + brightRed: 53.8 + brightGreen: 61.5 + brightYellow: 39.4 + brightBlue: 78.3 + brightMagenta: 70 + brightCyan: 46.4 + brightWhite: 32.7 diff --git a/themes/crt-appleiic.yaml b/themes/crt-appleiic.yaml new file mode 100644 index 00000000..df4afecb --- /dev/null +++ b/themes/crt-appleiic.yaml @@ -0,0 +1,49 @@ +name: "CRT AppleIIc" +source: + marketplace_id: "leandro-rodrigues.crt-vscode" + version: "0.1.0" + installs: 6563 + author: "Leandro Rodrigues" + repo: "https://github.com/TheOld/legacy-term" + url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" +colors: + bg: "#000C00" + fg: "#66FF66" + black: "#66FF66" + red: "#4BBE4B" + green: "#52CE52" + yellow: "#3D9E3D" + blue: "#5FEF5F" + magenta: "#58DF58" + cyan: "#44AE44" + white: "#368E36" + brightBlack: "#66FF66" + brightRed: "#4BBE4B" + brightGreen: "#52CE52" + brightYellow: "#3D9E3D" + brightBlue: "#5FEF5F" + brightMagenta: "#58DF58" + brightCyan: "#44AE44" + brightWhite: "#368E36" +meta: + mode: "dark" + accent: "green" + hue: 142 + contrast: + fg: 88.8 + black: 88.8 + red: 55.1 + green: 62.9 + yellow: 40.3 + blue: 80.1 + magenta: 71.6 + cyan: 47.5 + white: 33.4 + brightBlack: 88.8 + brightRed: 55.1 + brightGreen: 62.9 + brightYellow: 40.3 + brightBlue: 80.1 + brightMagenta: 71.6 + brightCyan: 47.5 + brightWhite: 33.4 diff --git a/themes/crt-blue.yaml b/themes/crt-blue.yaml new file mode 100644 index 00000000..ea4ef2bc --- /dev/null +++ b/themes/crt-blue.yaml @@ -0,0 +1,49 @@ +name: "CRT Blue" +source: + marketplace_id: "leandro-rodrigues.crt-vscode" + version: "0.1.0" + installs: 6563 + author: "Leandro Rodrigues" + repo: "https://github.com/TheOld/legacy-term" + url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" +colors: + bg: "#00000C" + fg: "#00B7FF" + black: "#00B7FF" + red: "#0DB4C6" + green: "#0AC1D4" + yellow: "#129BA9" + blue: "#05DAF1" + magenta: "#08CEE2" + cyan: "#0FA7B7" + white: "#148E9B" + brightBlack: "#00B7FF" + brightRed: "#0DB4C6" + brightGreen: "#0AC1D4" + brightYellow: "#129BA9" + brightBlue: "#05DAF1" + brightMagenta: "#08CEE2" + brightCyan: "#0FA7B7" + brightWhite: "#148E9B" +meta: + mode: "dark" + accent: "indigo" + hue: 264 + contrast: + fg: 57.9 + black: 57.9 + red: 53.3 + green: 59.7 + yellow: 41.4 + blue: 72.9 + magenta: 66.4 + cyan: 47 + white: 35.6 + brightBlack: 57.9 + brightRed: 53.3 + brightGreen: 59.7 + brightYellow: 41.4 + brightBlue: 72.9 + brightMagenta: 66.4 + brightCyan: 47 + brightWhite: 35.6 diff --git a/themes/crt-gray.yaml b/themes/crt-gray.yaml new file mode 100644 index 00000000..f6bf9db3 --- /dev/null +++ b/themes/crt-gray.yaml @@ -0,0 +1,49 @@ +name: "CRT Gray" +source: + marketplace_id: "krueger71.crt-themes" + version: "0.5.2" + installs: 38247 + author: "krueger71" + repo: "https://github.com/krueger71/crt-themes" + url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" +colors: + bg: "#111111" + fg: "#BBBBBB" + black: "#BBBBBB" + red: "#8E8E8E" + green: "#999999" + yellow: "#777777" + blue: "#B0B0B0" + magenta: "#A4A4A4" + cyan: "#828282" + white: "#6C6C6C" + brightBlack: "#BBBBBB" + brightRed: "#8E8E8E" + brightGreen: "#999999" + brightYellow: "#777777" + brightBlue: "#B0B0B0" + brightMagenta: "#A4A4A4" + brightCyan: "#828282" + brightWhite: "#6C6C6C" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 65.2 + black: 65.2 + red: 41.1 + green: 46.7 + yellow: 30.1 + blue: 59 + magenta: 52.5 + cyan: 35.2 + white: 25.1 + brightBlack: 65.2 + brightRed: 41.1 + brightGreen: 46.7 + brightYellow: 30.1 + brightBlue: 59 + brightMagenta: 52.5 + brightCyan: 35.2 + brightWhite: 25.1 diff --git a/themes/crt-green.yaml b/themes/crt-green.yaml new file mode 100644 index 00000000..39d027f4 --- /dev/null +++ b/themes/crt-green.yaml @@ -0,0 +1,49 @@ +name: "CRT Green" +source: + marketplace_id: "krueger71.crt-themes" + version: "0.5.2" + installs: 38247 + author: "krueger71" + repo: "https://github.com/krueger71/crt-themes" + url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" +colors: + bg: "#111111" + fg: "#33FF00" + black: "#33FF00" + red: "#2AC005" + green: "#2CCF03" + yellow: "#25A007" + blue: "#31EF01" + magenta: "#2EDF02" + cyan: "#28B006" + white: "#239008" + brightBlack: "#33FF00" + brightRed: "#2AC005" + brightGreen: "#2CCF03" + brightYellow: "#25A007" + brightBlue: "#31EF01" + brightMagenta: "#2EDF02" + brightCyan: "#28B006" + brightWhite: "#239008" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 86.3 + black: 86.3 + red: 54.4 + green: 61.6 + yellow: 39.9 + blue: 77.8 + magenta: 69.5 + cyan: 47 + white: 33.2 + brightBlack: 86.3 + brightRed: 54.4 + brightGreen: 61.6 + brightYellow: 39.9 + brightBlue: 77.8 + brightMagenta: 69.5 + brightCyan: 47 + brightWhite: 33.2 diff --git a/themes/crt-green1.yaml b/themes/crt-green1.yaml new file mode 100644 index 00000000..ec9bbbc5 --- /dev/null +++ b/themes/crt-green1.yaml @@ -0,0 +1,49 @@ +name: "CRT Green1" +source: + marketplace_id: "leandro-rodrigues.crt-vscode" + version: "0.1.0" + installs: 6563 + author: "Leandro Rodrigues" + repo: "https://github.com/TheOld/legacy-term" + url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" +colors: + bg: "#000C00" + fg: "#33FF00" + black: "#33FF00" + red: "#25BE00" + green: "#29CE00" + yellow: "#1F9E00" + blue: "#30EF00" + magenta: "#2CDF00" + cyan: "#22AE00" + white: "#1B8E00" + brightBlack: "#33FF00" + brightRed: "#25BE00" + brightGreen: "#29CE00" + brightYellow: "#1F9E00" + brightBlue: "#30EF00" + brightMagenta: "#2CDF00" + brightCyan: "#22AE00" + brightWhite: "#1B8E00" +meta: + mode: "dark" + accent: "green" + hue: 142 + contrast: + fg: 86.7 + black: 86.7 + red: 53.7 + green: 61.4 + yellow: 39.3 + blue: 78.1 + magenta: 69.9 + cyan: 46.4 + white: 32.6 + brightBlack: 86.7 + brightRed: 53.7 + brightGreen: 61.4 + brightYellow: 39.3 + brightBlue: 78.1 + brightMagenta: 69.9 + brightCyan: 46.4 + brightWhite: 32.6 diff --git a/themes/crt-green2.yaml b/themes/crt-green2.yaml new file mode 100644 index 00000000..e8f59ca9 --- /dev/null +++ b/themes/crt-green2.yaml @@ -0,0 +1,49 @@ +name: "CRT Green2" +source: + marketplace_id: "leandro-rodrigues.crt-vscode" + version: "0.1.0" + installs: 6563 + author: "Leandro Rodrigues" + repo: "https://github.com/TheOld/legacy-term" + url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" +colors: + bg: "#000C00" + fg: "#00FF33" + black: "#00FF33" + red: "#00BE4B" + green: "#00CE52" + yellow: "#009E3D" + blue: "#00EF5F" + magenta: "#00DF58" + cyan: "#00AE44" + white: "#008E36" + brightBlack: "#00FF33" + brightRed: "#00BE4B" + brightGreen: "#00CE52" + brightYellow: "#009E3D" + brightBlue: "#00EF5F" + brightMagenta: "#00DF58" + brightCyan: "#00AE44" + brightWhite: "#008E36" +meta: + mode: "dark" + accent: "green" + hue: 142 + contrast: + fg: 86.5 + black: 86.5 + red: 53.9 + green: 61.6 + yellow: 39.4 + blue: 78.4 + magenta: 70.1 + cyan: 46.5 + white: 32.7 + brightBlack: 86.5 + brightRed: 53.9 + brightGreen: 61.6 + brightYellow: 39.4 + brightBlue: 78.4 + brightMagenta: 70.1 + brightCyan: 46.5 + brightWhite: 32.7 diff --git a/themes/crt-paper.yaml b/themes/crt-paper.yaml new file mode 100644 index 00000000..041adc07 --- /dev/null +++ b/themes/crt-paper.yaml @@ -0,0 +1,49 @@ +name: "CRT Paper" +source: + marketplace_id: "krueger71.crt-themes" + version: "0.5.2" + installs: 38247 + author: "krueger71" + repo: "https://github.com/krueger71/crt-themes" + url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" +colors: + bg: "#F0F0F0" + fg: "#0F0F0F" + black: "#0F0F0F" + red: "#4B4B4B" + green: "#3C3C3C" + yellow: "#696969" + blue: "#1E1E1E" + magenta: "#2D2D2D" + cyan: "#5A5A5A" + white: "#787878" + brightBlack: "#0F0F0F" + brightRed: "#4B4B4B" + brightGreen: "#3C3C3C" + brightYellow: "#696969" + brightBlue: "#1E1E1E" + brightMagenta: "#2D2D2D" + brightCyan: "#5A5A5A" + brightWhite: "#787878" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 96.6 + black: 96.6 + red: 81 + green: 86.6 + yellow: 68.5 + blue: 94.7 + magenta: 91.4 + cyan: 75 + white: 61.7 + brightBlack: 96.6 + brightRed: 81 + brightGreen: 86.6 + brightYellow: 68.5 + brightBlue: 94.7 + brightMagenta: 91.4 + brightCyan: 75 + brightWhite: 61.7 diff --git a/themes/crt-red.yaml b/themes/crt-red.yaml new file mode 100644 index 00000000..5193e7f1 --- /dev/null +++ b/themes/crt-red.yaml @@ -0,0 +1,49 @@ +name: "CRT Red" +source: + marketplace_id: "krueger71.crt-themes" + version: "0.5.2" + installs: 38247 + author: "krueger71" + repo: "https://github.com/krueger71/crt-themes" + url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" +colors: + bg: "#111111" + fg: "#FF2222" + black: "#FF2222" + red: "#C01D1D" + green: "#CF1F1F" + yellow: "#A01B1B" + blue: "#EF2121" + magenta: "#DF2020" + cyan: "#B01C1C" + white: "#901A1A" + brightBlack: "#FF2222" + brightRed: "#C01D1D" + brightGreen: "#CF1F1F" + brightYellow: "#A01B1B" + brightBlue: "#EF2121" + brightMagenta: "#DF2020" + brightCyan: "#B01C1C" + brightWhite: "#901A1A" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 37.8 + black: 37.8 + red: 22.7 + green: 26.2 + yellow: 15.9 + blue: 33.8 + magenta: 29.9 + cyan: 19.2 + white: 12.7 + brightBlack: 37.8 + brightRed: 22.7 + brightGreen: 26.2 + brightYellow: 15.9 + brightBlue: 33.8 + brightMagenta: 29.9 + brightCyan: 19.2 + brightWhite: 12.7 diff --git a/themes/crt.yaml b/themes/crt.yaml new file mode 100644 index 00000000..636ed21c --- /dev/null +++ b/themes/crt.yaml @@ -0,0 +1,49 @@ +name: "crt" +source: + marketplace_id: "jojihatzz.fosphor" + version: "0.0.1" + installs: 55 + author: "jojihatzz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jojihatzz.fosphor" +colors: + bg: "#111B13" + fg: "#A8E6A3" + black: "#111B13" + red: "#F07178" + green: "#C3E88D" + yellow: "#F8B965" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#EEFFFF" + brightBlack: "#5D7E5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#EEFFFF" +meta: + mode: "dark" + accent: "red" + hue: 150 + contrast: + fg: 80.9 + black: 0 + red: 46.4 + green: 84 + yellow: 70.3 + blue: 55.7 + magenta: 53.6 + cyan: 78.1 + white: 104.4 + brightBlack: 28.9 + brightRed: 43.4 + brightGreen: 84 + brightYellow: 78.7 + brightBlue: 55.7 + brightMagenta: 53.6 + brightCyan: 78.1 + brightWhite: 104.4 diff --git a/themes/crypto.yaml b/themes/crypto.yaml new file mode 100644 index 00000000..6edcc127 --- /dev/null +++ b/themes/crypto.yaml @@ -0,0 +1,49 @@ +name: "Crypto" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#16141B" + fg: "#9D52E8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 298 + contrast: + fg: 31.2 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/crystaltine-s-crystalline-4-1.yaml b/themes/crystaltine-s-crystalline-4-1.yaml new file mode 100644 index 00000000..6afd519c --- /dev/null +++ b/themes/crystaltine-s-crystalline-4-1.yaml @@ -0,0 +1,49 @@ +name: "Crystaltine's Crystalline 4.1" +source: + marketplace_id: "nonagon.crystalline-theme" + version: "5.0.10" + installs: 1894 + author: "crystaltine" + repo: "https://github.com/crystaltine/Crystalline-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=nonagon.crystalline-theme" +colors: + bg: "#1C1C1F" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#FCE56E" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#FBE291" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 58.8 + black: 8.2 + red: 36.1 + green: 59.8 + yellow: 89.1 + blue: 49.1 + magenta: 38.5 + cyan: 51.9 + white: 90 + brightBlack: 14.9 + brightRed: 45.5 + brightGreen: 76.2 + brightYellow: 88.3 + brightBlue: 63.1 + brightMagenta: 49.7 + brightCyan: 67.2 + brightWhite: 106.3 diff --git a/themes/crystaltine-s-crystalline-5-0.yaml b/themes/crystaltine-s-crystalline-5-0.yaml new file mode 100644 index 00000000..8c3b741e --- /dev/null +++ b/themes/crystaltine-s-crystalline-5-0.yaml @@ -0,0 +1,49 @@ +name: "Crystaltine's Crystalline 5.0" +source: + marketplace_id: "nonagon.crystalline-theme" + version: "5.0.10" + installs: 1894 + author: "crystaltine" + repo: "https://github.com/crystaltine/Crystalline-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=nonagon.crystalline-theme" +colors: + bg: "#1D1D1F" + fg: "#A0A0B0" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#FCE56E" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#FBE291" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 49.8 + black: 8.1 + red: 36 + green: 59.6 + yellow: 89 + blue: 48.9 + magenta: 38.3 + cyan: 51.8 + white: 89.9 + brightBlack: 14.7 + brightRed: 45.4 + brightGreen: 76.1 + brightYellow: 88.2 + brightBlue: 63 + brightMagenta: 49.5 + brightCyan: 67.1 + brightWhite: 106.2 diff --git a/themes/cs50-light-theme.yaml b/themes/cs50-light-theme.yaml new file mode 100644 index 00000000..e773e524 --- /dev/null +++ b/themes/cs50-light-theme.yaml @@ -0,0 +1,49 @@ +name: "cs50-light-theme" +source: + marketplace_id: "whitehat4u.cs50-theme-harvard" + version: "1.1.0" + installs: 4449 + author: "juan santos" + repo: "https://github.com/juanpumpkinpie/cs50-theme-harvard" + url: "https://marketplace.visualstudio.com/items?itemName=whitehat4u.cs50-theme-harvard" +colors: + bg: "#F5F3EF" + fg: "#403718" + black: "#403718" + red: "#A64536" + green: "#599F37" + yellow: "#C09734" + blue: "#316CA5" + magenta: "#93319F" + cyan: "#A51C30" + white: "#807F7A" + brightBlack: "#594D26" + brightRed: "#CB513F" + brightGreen: "#43A912" + brightYellow: "#D29B18" + brightBlue: "#1D72C5" + brightMagenta: "#B418C7" + brightCyan: "#A51C30" + brightWhite: "#594D26" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 90 + black: 90 + red: 72.1 + green: 52.6 + yellow: 45.5 + blue: 70.1 + magenta: 74.7 + cyan: 77.3 + white: 60.4 + brightBlack: 81.7 + brightRed: 62.6 + brightGreen: 49.6 + brightYellow: 41.5 + brightBlue: 66.5 + brightMagenta: 67.9 + brightCyan: 77.3 + brightWhite: 81.7 diff --git a/themes/css-battle.yaml b/themes/css-battle.yaml new file mode 100644 index 00000000..aae1e3c8 --- /dev/null +++ b/themes/css-battle.yaml @@ -0,0 +1,49 @@ +name: "CSS Battle" +source: + marketplace_id: "JamesGulland.solar-storm-dark-theme" + version: "0.1.0" + installs: 177 + author: "James Gulland" + repo: "https://github.com/james-gulland/solar-storm-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.solar-storm-dark-theme" +colors: + bg: "#101219" + fg: "#86819C" + black: "#101219" + red: "#FB7186" + green: "#A3E2D3" + yellow: "#FFCC99" + blue: "#9A86FD" + magenta: "#9A86FD" + cyan: "#A3E2D3" + white: "#EEEBFF" + brightBlack: "#86819C" + brightRed: "#FB7186" + brightGreen: "#A3E2D3" + brightYellow: "#FFCC99" + brightBlue: "#9A86FD" + brightMagenta: "#9A86FD" + brightCyan: "#A3E2D3" + brightWhite: "#EEEBFF" +meta: + mode: "dark" + accent: "magenta" + hue: 272 + contrast: + fg: 36.2 + black: 0 + red: 49.7 + green: 80.9 + yellow: 80.8 + blue: 45.9 + magenta: 45.9 + cyan: 80.9 + white: 95.6 + brightBlack: 36.2 + brightRed: 49.7 + brightGreen: 80.9 + brightYellow: 80.8 + brightBlue: 45.9 + brightMagenta: 45.9 + brightCyan: 80.9 + brightWhite: 95.6 diff --git a/themes/cucumber-dark.yaml b/themes/cucumber-dark.yaml new file mode 100644 index 00000000..2d2528f9 --- /dev/null +++ b/themes/cucumber-dark.yaml @@ -0,0 +1,49 @@ +name: "Cucumber - Dark" +source: + marketplace_id: "jbird.cucumber-color-theme" + version: "0.0.1" + installs: 40 + author: "Jason Hulbert" + repo: "https://github.com/jasonhulbert/cucumber-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jbird.cucumber-color-theme" +colors: + bg: "#141A1A" + fg: "#B3C2BF" + black: "#000000" + red: "#DD9482" + green: "#21B9B9" + yellow: "#E2E3B3" + blue: "#40A6FF" + magenta: "#788AF2" + cyan: "#47BBFF" + white: "#B3C2BF" + brightBlack: "#000000" + brightRed: "#DD9482" + brightGreen: "#21B9B9" + brightYellow: "#E2E3B3" + brightBlue: "#40A6FF" + brightMagenta: "#788AF2" + brightCyan: "#47BBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 66.7 + black: 0 + red: 53.1 + green: 53.8 + yellow: 86.5 + blue: 50.6 + magenta: 42.4 + cyan: 59.4 + white: 66.7 + brightBlack: 0 + brightRed: 53.1 + brightGreen: 53.8 + brightYellow: 86.5 + brightBlue: 50.6 + brightMagenta: 42.4 + brightCyan: 59.4 + brightWhite: 106.7 diff --git a/themes/cucumber-light.yaml b/themes/cucumber-light.yaml new file mode 100644 index 00000000..843fceef --- /dev/null +++ b/themes/cucumber-light.yaml @@ -0,0 +1,49 @@ +name: "Cucumber - Light" +source: + marketplace_id: "jbird.cucumber-color-theme" + version: "0.0.1" + installs: 40 + author: "Jason Hulbert" + repo: "https://github.com/jasonhulbert/cucumber-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jbird.cucumber-color-theme" +colors: + bg: "#FAF8F4" + fg: "#323131" + black: "#FFFFFF" + red: "#943D25" + green: "#038177" + yellow: "#77790A" + blue: "#0865B6" + magenta: "#534AF3" + cyan: "#006B95" + white: "#323131" + brightBlack: "#FFFFFF" + brightRed: "#943D25" + brightGreen: "#038177" + brightYellow: "#77790A" + brightBlue: "#0865B6" + brightMagenta: "#534AF3" + brightCyan: "#006B95" + brightWhite: "#000000" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 95.1 + black: 0 + red: 79.9 + green: 68.4 + yellow: 68 + blue: 74.9 + magenta: 73.9 + cyan: 75 + white: 95.1 + brightBlack: 0 + brightRed: 79.9 + brightGreen: 68.4 + brightYellow: 68 + brightBlue: 74.9 + brightMagenta: 73.9 + brightCyan: 75 + brightWhite: 101.9 diff --git a/themes/cupertino-dark.yaml b/themes/cupertino-dark.yaml new file mode 100644 index 00000000..e9f0d272 --- /dev/null +++ b/themes/cupertino-dark.yaml @@ -0,0 +1,49 @@ +name: "Cupertino Dark" +source: + marketplace_id: "EuraIndustries.cupertino-vscode" + version: "1.3.1" + installs: 14 + author: "Eura Industries" + repo: "https://github.com/eura-industries/cupertino-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=EuraIndustries.cupertino-vscode" +colors: + bg: "#111318" + fg: "#D9DEE8" + black: "#000000" + red: "#FF383C" + green: "#33C758" + yellow: "#FFCC00" + blue: "#0088FF" + magenta: "#CB30E0" + cyan: "#0088FF" + white: "#FFFFFF" + brightBlack: "#8F8F94" + brightRed: "#FF383C" + brightGreen: "#33C758" + brightYellow: "#FFCC00" + brightBlue: "#00C0E8" + brightMagenta: "#FF2D55" + brightCyan: "#0088FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 268 + contrast: + fg: 85.8 + black: 0 + red: 39.5 + green: 58.3 + yellow: 78.9 + blue: 39.1 + magenta: 33.8 + cyan: 39.1 + white: 107.2 + brightBlack: 41.6 + brightRed: 39.5 + brightGreen: 58.3 + brightYellow: 78.9 + brightBlue: 59.7 + brightMagenta: 38.9 + brightCyan: 39.1 + brightWhite: 107.2 diff --git a/themes/cupertino-light.yaml b/themes/cupertino-light.yaml new file mode 100644 index 00000000..e17d5a1c --- /dev/null +++ b/themes/cupertino-light.yaml @@ -0,0 +1,49 @@ +name: "Cupertino Light" +source: + marketplace_id: "EuraIndustries.cupertino-vscode" + version: "1.3.1" + installs: 14 + author: "Eura Industries" + repo: "https://github.com/eura-industries/cupertino-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=EuraIndustries.cupertino-vscode" +colors: + bg: "#F7F8FA" + fg: "#1F2328" + black: "#000000" + red: "#FF383C" + green: "#33C758" + yellow: "#FFCC00" + blue: "#0088FF" + magenta: "#CB30E0" + cyan: "#0088FF" + white: "#FFFFFF" + brightBlack: "#8F8F94" + brightRed: "#FF383C" + brightGreen: "#33C758" + brightYellow: "#FFCC00" + brightBlue: "#00C0E8" + brightMagenta: "#FF2D55" + brightCyan: "#0088FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 98.5 + black: 101.8 + red: 57.3 + green: 39 + yellow: 19.4 + blue: 57.7 + magenta: 63 + cyan: 57.7 + white: 0 + brightBlack: 55.2 + brightRed: 57.3 + brightGreen: 39 + brightYellow: 19.4 + brightBlue: 37.6 + brightMagenta: 57.9 + brightCyan: 57.7 + brightWhite: 0 diff --git a/themes/curry-dark.yaml b/themes/curry-dark.yaml new file mode 100644 index 00000000..55ea566c --- /dev/null +++ b/themes/curry-dark.yaml @@ -0,0 +1,49 @@ +name: "Curry Dark" +source: + marketplace_id: "CoderCurry.curry-theme" + version: "0.0.3" + installs: 117 + author: "CoderCurry" + repo: "https://github.com/learnsomesome/curry-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CoderCurry.curry-theme" +colors: + bg: "#121212" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#FFA726" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#FFA726" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 81.7 + black: 0 + red: 41.2 + green: 64.9 + yellow: 76 + blue: 41.8 + magenta: 44.3 + cyan: 49.7 + white: 81.7 + brightBlack: 30 + brightRed: 41.2 + brightGreen: 64.9 + brightYellow: 76 + brightBlue: 41.8 + brightMagenta: 44.3 + brightCyan: 49.7 + brightWhite: 107.3 diff --git a/themes/cursor-dark-anysphere-v0-0-1.yaml b/themes/cursor-dark-anysphere-v0-0-1.yaml new file mode 100644 index 00000000..e924abac --- /dev/null +++ b/themes/cursor-dark-anysphere-v0-0-1.yaml @@ -0,0 +1,49 @@ +name: "Cursor Dark Anysphere v0.0.1" +source: + marketplace_id: "mpulido.cursor-dark-origin" + version: "0.0.2" + installs: 248 + author: "Michael Pulido" + repo: "https://github.com/michaeljpulido/cursor-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mpulido.cursor-dark-origin" +colors: + bg: "#191919" + fg: "#F3F3F3" + black: "#242424" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#F3F3F3" + brightBlack: "#494949" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#F3F3F3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 98.8 + black: 0 + red: 32.8 + green: 61.4 + yellow: 76.2 + blue: 48.4 + magenta: 46.3 + cyan: 62.5 + white: 98.8 + brightBlack: 10.4 + brightRed: 32.8 + brightGreen: 61.4 + brightYellow: 76.2 + brightBlue: 48.4 + brightMagenta: 46.3 + brightCyan: 62.5 + brightWhite: 98.8 diff --git a/themes/cursor-dark.yaml b/themes/cursor-dark.yaml new file mode 100644 index 00000000..a1fa9f4a --- /dev/null +++ b/themes/cursor-dark.yaml @@ -0,0 +1,49 @@ +name: "Cursor Dark" +source: + marketplace_id: "MohdZaid.vscode-cursor-theme" + version: "0.0.1" + installs: 2733 + author: "Mohd Zaid" + repo: "https://github.com/BioHazard786/cursor-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MohdZaid.vscode-cursor-theme" +colors: + bg: "#181818" + fg: "#E4E4E4" + black: "#242424" + red: "#FC6B83" + green: "#3FA266" + yellow: "#D2943E" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E4E4E4" + brightBlack: "#E4E4E4" + brightRed: "#FC6B83" + brightGreen: "#70B489" + brightYellow: "#F1B467" + brightBlue: "#87A6C4" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 89.3 + black: 0 + red: 47.9 + green: 41.8 + yellow: 50.1 + blue: 48.5 + magenta: 46.4 + cyan: 62.6 + white: 89.3 + brightBlack: 89.3 + brightRed: 47.9 + brightGreen: 52.8 + brightYellow: 67.3 + brightBlue: 51.2 + brightMagenta: 46.4 + brightCyan: 62.6 + brightWhite: 89.3 diff --git a/themes/cursor-less-dark.yaml b/themes/cursor-less-dark.yaml new file mode 100644 index 00000000..8fc98a00 --- /dev/null +++ b/themes/cursor-less-dark.yaml @@ -0,0 +1,49 @@ +name: "Cursor Less Dark" +source: + marketplace_id: "cedricverlinden.cursor-dark" + version: "2.2.0" + installs: 18680 + author: "Cédric Verlinden" + repo: "https://github.com/CedricVerlinden/cursor-dark" + url: "https://marketplace.visualstudio.com/items?itemName=cedricverlinden.cursor-dark" +colors: + bg: "#242424" + fg: "#D8DEE9" + black: "#2A2A2A" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#FFFFFF" + brightBlack: "#505050" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.6 + black: 0 + red: 31.2 + green: 59.9 + yellow: 74.6 + blue: 46.9 + magenta: 44.7 + cyan: 60.9 + white: 105.1 + brightBlack: 11.4 + brightRed: 31.2 + brightGreen: 59.9 + brightYellow: 74.6 + brightBlue: 46.9 + brightMagenta: 44.7 + brightCyan: 60.9 + brightWhite: 105.1 diff --git a/themes/cursor-light.yaml b/themes/cursor-light.yaml new file mode 100644 index 00000000..68985b33 --- /dev/null +++ b/themes/cursor-light.yaml @@ -0,0 +1,49 @@ +name: "Cursor Light" +source: + marketplace_id: "MohdZaid.vscode-cursor-theme" + version: "0.0.1" + installs: 2733 + author: "Mohd Zaid" + repo: "https://github.com/BioHazard786/cursor-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MohdZaid.vscode-cursor-theme" +colors: + bg: "#FCFCFC" + fg: "#141414" + black: "#141414" + red: "#CF2D56" + green: "#1F8A65" + yellow: "#A16900" + blue: "#3C7CAB" + magenta: "#B8448B" + cyan: "#4C7F8C" + white: "#FCFCFC" + brightBlack: "#141414" + brightRed: "#E75E78" + brightGreen: "#55A583" + brightYellow: "#C08532" + brightBlue: "#6299C3" + brightMagenta: "#D06BA6" + brightCyan: "#6F9BA6" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 103.3 + black: 103.3 + red: 71.5 + green: 67.6 + yellow: 70 + blue: 69.2 + magenta: 71.7 + cyan: 69 + white: 0 + brightBlack: 103.3 + brightRed: 58.4 + brightGreen: 54.2 + brightYellow: 56.7 + brightBlue: 55.5 + brightMagenta: 58.3 + brightCyan: 55.3 + brightWhite: 0 diff --git a/themes/cursor-night-theme-soft.yaml b/themes/cursor-night-theme-soft.yaml new file mode 100644 index 00000000..0c61eead --- /dev/null +++ b/themes/cursor-night-theme-soft.yaml @@ -0,0 +1,49 @@ +name: "Cursor Night Theme Soft" +source: + marketplace_id: "DiegoMontejano.cursor-night-theme" + version: "1.0.0" + installs: 1011 + author: "Diego Montejano" + repo: "https://github.com/diegomontejano/cursor-night-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DiegoMontejano.cursor-night-theme" +colors: + bg: "#272B34" + fg: "#D6DADF" + black: "#272C36" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#E6CFA1" + blue: "#81A1C1" + magenta: "#7D7C9B" + cyan: "#90CADB" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#E6CFA1" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#D6DADF" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 79.8 + black: 0 + red: 30 + green: 58.6 + yellow: 74.9 + blue: 45.6 + magenta: 30.2 + cyan: 65.2 + white: 89.3 + brightBlack: 12.4 + brightRed: 30 + brightGreen: 58.6 + brightYellow: 74.9 + brightBlue: 45.6 + brightMagenta: 43.5 + brightCyan: 57.6 + brightWhite: 79.8 diff --git a/themes/cursor-night-theme.yaml b/themes/cursor-night-theme.yaml new file mode 100644 index 00000000..0673e562 --- /dev/null +++ b/themes/cursor-night-theme.yaml @@ -0,0 +1,49 @@ +name: "Cursor Night Theme" +source: + marketplace_id: "DiegoMontejano.cursor-night-theme" + version: "1.0.0" + installs: 1011 + author: "Diego Montejano" + repo: "https://github.com/diegomontejano/cursor-night-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DiegoMontejano.cursor-night-theme" +colors: + bg: "#181D21" + fg: "#D6DADF" + black: "#272C36" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#E6CFA1" + blue: "#81A1C1" + magenta: "#7D7C9B" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#E6CFA1" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#D6DADF" +meta: + mode: "dark" + accent: "orange" + hue: 242 + contrast: + fg: 82.2 + black: 0 + red: 32.4 + green: 61 + yellow: 77.3 + blue: 48 + magenta: 32.6 + cyan: 62.1 + white: 91.7 + brightBlack: 14.8 + brightRed: 32.4 + brightGreen: 61 + brightYellow: 77.3 + brightBlue: 48 + brightMagenta: 45.9 + brightCyan: 60 + brightWhite: 82.2 diff --git a/themes/cursor-theme.yaml b/themes/cursor-theme.yaml new file mode 100644 index 00000000..83787cd9 --- /dev/null +++ b/themes/cursor-theme.yaml @@ -0,0 +1,49 @@ +name: "Cursor Theme" +source: + marketplace_id: "ManitejaPratha.cursor-midnight-theme" + version: "0.0.3" + installs: 5028 + author: "Maniteja Pratha" + repo: "https://github.com/Manitej66/cursor-theme-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ManitejaPratha.cursor-midnight-theme" +colors: + bg: "#1E2127" + fg: "#7B88A1" + black: "#272C36" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#7D7C9B" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 36.1 + black: 0 + red: 31.7 + green: 60.4 + yellow: 75.1 + blue: 47.4 + magenta: 31.9 + cyan: 61.4 + white: 91.1 + brightBlack: 14.1 + brightRed: 31.7 + brightGreen: 60.4 + brightYellow: 75.1 + brightBlue: 47.4 + brightMagenta: 45.2 + brightCyan: 59.3 + brightWhite: 95 diff --git a/themes/custom-theme-dark.yaml b/themes/custom-theme-dark.yaml new file mode 100644 index 00000000..6f8ad513 --- /dev/null +++ b/themes/custom-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Custom Theme (dark)" +source: + marketplace_id: "Teambotics.theme-studio" + version: "0.0.2" + installs: 13 + author: "Teambotics" + repo: "https://github.com/nickhilster/theme-crafter" + url: "https://marketplace.visualstudio.com/items?itemName=Teambotics.theme-studio" +colors: + bg: "#1A1A23" + fg: "#D1D0D7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#000000" + brightRed: "#CD3131" + brightGreen: "#0DBC79" + brightYellow: "#E5E510" + brightBlue: "#2472C8" + brightMagenta: "#BC3FBC" + brightCyan: "#11A8CD" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 77.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 0 + brightRed: 26.3 + brightGreen: 52.6 + brightYellow: 85.2 + brightBlue: 27 + brightMagenta: 29.3 + brightCyan: 47.1 + brightWhite: 89.6 diff --git a/themes/custom-theme-light.yaml b/themes/custom-theme-light.yaml new file mode 100644 index 00000000..d14d1e57 --- /dev/null +++ b/themes/custom-theme-light.yaml @@ -0,0 +1,49 @@ +name: "Custom Theme (light)" +source: + marketplace_id: "Teambotics.theme-studio" + version: "0.0.2" + installs: 13 + author: "Teambotics" + repo: "https://github.com/nickhilster/theme-crafter" + url: "https://marketplace.visualstudio.com/items?itemName=Teambotics.theme-studio" +colors: + bg: "#FAFAFA" + fg: "#293229" + black: "#000000" + red: "#CD3131" + green: "#008000" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#000000" + brightRed: "#CD3131" + brightGreen: "#008000" + brightYellow: "#949800" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#555555" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 96.7 + black: 103 + red: 71 + green: 71.6 + yellow: 54.9 + blue: 83.1 + magenta: 71.6 + cyan: 57.6 + white: 82.9 + brightBlack: 103 + brightRed: 71 + brightGreen: 71.6 + brightYellow: 54.9 + brightBlue: 83.1 + brightMagenta: 71.6 + brightCyan: 57.6 + brightWhite: 82.9 diff --git a/themes/custom-theme.yaml b/themes/custom-theme.yaml new file mode 100644 index 00000000..0dfbc04a --- /dev/null +++ b/themes/custom-theme.yaml @@ -0,0 +1,49 @@ +name: "Custom Theme" +source: + marketplace_id: "suleymanozkeskin.dark-theme-s" + version: "0.0.1" + installs: 47 + author: "suleymanozkeskin" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=suleymanozkeskin.dark-theme-s" +colors: + bg: "#22272E" + fg: "#ADBAC7" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#FFF3CF" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: 257 + contrast: + fg: 61 + black: 15.7 + red: 44.6 + green: 44.3 + yellow: 44.5 + blue: 44.3 + magenta: 44.1 + cyan: 58.7 + white: 45.3 + brightBlack: 22.8 + brightRed: 57.3 + brightGreen: 56.9 + brightYellow: 57.1 + brightBlue: 57 + brightMagenta: 97 + brightCyan: 67.2 + brightWhite: 79.4 diff --git a/themes/custommarktheme.yaml b/themes/custommarktheme.yaml new file mode 100644 index 00000000..42d04d31 --- /dev/null +++ b/themes/custommarktheme.yaml @@ -0,0 +1,49 @@ +name: "CustomMarkTheme" +source: + marketplace_id: "Meuid3.headfox-theme-intense" + version: "1.0.0" + installs: 89 + author: "meuid3" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Meuid3.headfox-theme-intense" +colors: + bg: "#303845" + fg: "#B4BDCD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 59.4 + black: 0 + red: 20.6 + green: 46.8 + yellow: 79.5 + blue: 21.3 + magenta: 23.6 + cyan: 41.4 + white: 83.9 + brightBlack: 15.9 + brightRed: 32.4 + brightGreen: 57.4 + brightYellow: 89.5 + brightBlue: 33.8 + brightMagenta: 39.2 + brightCyan: 49.2 + brightWhite: 83.9 diff --git a/themes/cyan-dark.yaml b/themes/cyan-dark.yaml new file mode 100644 index 00000000..4850a049 --- /dev/null +++ b/themes/cyan-dark.yaml @@ -0,0 +1,49 @@ +name: "Cyan Dark" +source: + marketplace_id: "ceciljacob.code-color-theme" + version: "1.0.0" + installs: 22121 + author: "Cecil Jacob" + repo: "https://github.com/ceciljacob/code-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ceciljacob.code-color-theme" +colors: + bg: "#0F141C" + fg: "#D8DCE8" + black: "#020202" + red: "#C45E04" + green: "#82A48F" + yellow: "#F4DB60" + blue: "#76ABDC" + magenta: "#B68DB2" + cyan: "#56B8C8" + white: "#EFEFEF" + brightBlack: "#424242" + brightRed: "#C45E04" + brightGreen: "#82A48F" + brightYellow: "#F4DB60" + brightBlue: "#76ABDC" + brightMagenta: "#B68DB2" + brightCyan: "#56B8C8" + brightWhite: "#FEFEFE" +meta: + mode: "dark" + accent: "yellow" + hue: 260 + contrast: + fg: 84.7 + black: 0 + red: 32.3 + green: 48.1 + yellow: 84.1 + blue: 53.5 + magenta: 46.9 + cyan: 56 + white: 96.7 + brightBlack: 8.4 + brightRed: 32.3 + brightGreen: 48.1 + brightYellow: 84.1 + brightBlue: 53.5 + brightMagenta: 46.9 + brightCyan: 56 + brightWhite: 106.5 diff --git a/themes/cyber-dark.yaml b/themes/cyber-dark.yaml new file mode 100644 index 00000000..dc12f5db --- /dev/null +++ b/themes/cyber-dark.yaml @@ -0,0 +1,49 @@ +name: "Cyber Dark" +source: + marketplace_id: "tryToDEv.cyber-dark-theme-collection" + version: "1.0.0" + installs: 22 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-dark-theme-collection" +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#0D1117" + red: "#FF7B72" + green: "#7EE787" + yellow: "#FFA657" + blue: "#58A6FF" + magenta: "#D2A8FF" + cyan: "#79C0FF" + white: "#C9D1D9" + brightBlack: "#8B949E" + brightRed: "#FF7B72" + brightGreen: "#7EE787" + brightYellow: "#FFD580" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#79C0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 258 + contrast: + fg: 77.5 + black: 0 + red: 52.6 + green: 78.1 + yellow: 65.1 + blue: 52.2 + magenta: 64.6 + cyan: 64.7 + white: 77.5 + brightBlack: 43.6 + brightRed: 52.6 + brightGreen: 78.1 + brightYellow: 84 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 64.7 + brightWhite: 107.4 diff --git a/themes/cyber-light-soft.yaml b/themes/cyber-light-soft.yaml new file mode 100644 index 00000000..a8b42e0e --- /dev/null +++ b/themes/cyber-light-soft.yaml @@ -0,0 +1,49 @@ +name: "Cyber Light Soft" +source: + marketplace_id: "tryToDEv.cyber-dark-theme-collection" + version: "1.0.0" + installs: 22 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-dark-theme-collection" +colors: + bg: "#FAFBFC" + fg: "#2F363D" + black: "#2F363D" + red: "#CF222E" + green: "#1A7F37" + yellow: "#BF8700" + blue: "#0550AE" + magenta: "#8250DF" + cyan: "#0969DA" + white: "#959DA5" + brightBlack: "#6E7781" + brightRed: "#CF222E" + brightGreen: "#1A7F37" + brightYellow: "#BF8700" + brightBlue: "#0969DA" + brightMagenta: "#8250DF" + brightCyan: "#0969DA" + brightWhite: "#2F363D" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 95.5 + black: 95.5 + red: 72.3 + green: 72.1 + yellow: 55.7 + blue: 83.1 + magenta: 71.8 + cyan: 72.5 + white: 50.6 + brightBlack: 69.1 + brightRed: 72.3 + brightGreen: 72.1 + brightYellow: 55.7 + brightBlue: 72.5 + brightMagenta: 71.8 + brightCyan: 72.5 + brightWhite: 95.5 diff --git a/themes/cyber-light-warm.yaml b/themes/cyber-light-warm.yaml new file mode 100644 index 00000000..0471e6d3 --- /dev/null +++ b/themes/cyber-light-warm.yaml @@ -0,0 +1,49 @@ +name: "Cyber Light Warm" +source: + marketplace_id: "tryToDEv.cyber-dark-theme-collection" + version: "1.0.0" + installs: 22 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-dark-theme-collection" +colors: + bg: "#FFFBF0" + fg: "#3A2A1A" + black: "#3A2A1A" + red: "#CC3300" + green: "#2E7D32" + yellow: "#B8860B" + blue: "#CC5500" + magenta: "#8B4513" + cyan: "#006699" + white: "#A89078" + brightBlack: "#6B5B4F" + brightRed: "#CC3300" + brightGreen: "#2E7D32" + brightYellow: "#B8860B" + brightBlue: "#006699" + brightMagenta: "#8B4513" + brightCyan: "#006699" + brightWhite: "#3A2A1A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.9 + black: 97.9 + red: 71.9 + green: 72.7 + yellow: 57.2 + blue: 66.6 + magenta: 81.8 + cyan: 78.2 + white: 54.7 + brightBlack: 79.9 + brightRed: 71.9 + brightGreen: 72.7 + brightYellow: 57.2 + brightBlue: 78.2 + brightMagenta: 81.8 + brightCyan: 78.2 + brightWhite: 97.9 diff --git a/themes/cyber-light.yaml b/themes/cyber-light.yaml new file mode 100644 index 00000000..931d6909 --- /dev/null +++ b/themes/cyber-light.yaml @@ -0,0 +1,49 @@ +name: "Cyber Light" +source: + marketplace_id: "tryToDEv.cyber-dark-theme-collection" + version: "1.0.0" + installs: 22 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-dark-theme-collection" +colors: + bg: "#FFFFFF" + fg: "#24292F" + black: "#24292F" + red: "#CF222E" + green: "#1A7F37" + yellow: "#D29922" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1F6FEB" + white: "#8C959F" + brightBlack: "#6E7781" + brightRed: "#CF222E" + brightGreen: "#1A7F37" + brightYellow: "#D29922" + brightBlue: "#1F6FEB" + brightMagenta: "#8250DF" + brightCyan: "#1F6FEB" + brightWhite: "#24292F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.5 + black: 101.5 + red: 74.8 + green: 74.6 + yellow: 49.3 + blue: 74.9 + magenta: 74.3 + cyan: 71.5 + white: 57.2 + brightBlack: 71.6 + brightRed: 74.8 + brightGreen: 74.6 + brightYellow: 49.3 + brightBlue: 71.5 + brightMagenta: 74.3 + brightCyan: 71.5 + brightWhite: 101.5 diff --git a/themes/cyber-pastel-violet.yaml b/themes/cyber-pastel-violet.yaml new file mode 100644 index 00000000..8eda4fb3 --- /dev/null +++ b/themes/cyber-pastel-violet.yaml @@ -0,0 +1,49 @@ +name: "Cyber Pastel - Violet" +source: + marketplace_id: "cyber-pastel-themes.cyber-pastel-theme-pack" + version: "1.0.0" + installs: 424 + author: "cyber-pastel-themes" + repo: "https://github.com/your-username/cyber-pastel-theme-pack" + url: "https://marketplace.visualstudio.com/items?itemName=cyber-pastel-themes.cyber-pastel-theme-pack" +colors: + bg: "#FEFEFF" + fg: "#374151" + black: "#374151" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#8B5CF6" + cyan: "#06B6D4" + white: "#F9FAFB" + brightBlack: "#374151" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#8B5CF6" + brightCyan: "#06B6D4" + brightWhite: "#F9FAFB" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 93.4 + black: 93.4 + red: 63.3 + green: 48.5 + yellow: 41.2 + blue: 63.3 + magenta: 68.2 + cyan: 46.6 + white: 0 + brightBlack: 93.4 + brightRed: 63.3 + brightGreen: 48.5 + brightYellow: 41.2 + brightBlue: 63.3 + brightMagenta: 68.2 + brightCyan: 46.6 + brightWhite: 0 diff --git a/themes/cyber-purple-77.yaml b/themes/cyber-purple-77.yaml new file mode 100644 index 00000000..493b46a0 --- /dev/null +++ b/themes/cyber-purple-77.yaml @@ -0,0 +1,49 @@ +name: "Cyber Purple 77" +source: + marketplace_id: "flep.cyber-purple-77" + version: "1.2.1" + installs: 4861 + author: "flep" + repo: "https://github.com/fleps/cyber-purple-77-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=flep.cyber-purple-77" +colors: + bg: "#120C18" + fg: "#C39CDE" + black: "#868686" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 307 + contrast: + fg: 56.4 + black: 37.3 + red: 27.4 + green: 53.6 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 80.1 + brightBlack: 56.4 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 107.5 diff --git a/themes/cyberblue.yaml b/themes/cyberblue.yaml new file mode 100644 index 00000000..fd9ce315 --- /dev/null +++ b/themes/cyberblue.yaml @@ -0,0 +1,49 @@ +name: "Cyberblue" +source: + marketplace_id: "Noqs.darkstack" + version: "1.1.1" + installs: 2842 + author: "Noqs" + repo: "https://github.com/NoxQ/Darkstack" + url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" +colors: + bg: "#020B22" + fg: "#D4D4D4" + black: "#515151" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 80.2 + black: 14.3 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/cyberdude-black.yaml b/themes/cyberdude-black.yaml new file mode 100644 index 00000000..e21a0bf3 --- /dev/null +++ b/themes/cyberdude-black.yaml @@ -0,0 +1,49 @@ +name: "CyberDude Black" +source: + marketplace_id: "AnbuselvanRocky.cyberdude-theme" + version: "0.1.4" + installs: 4908 + author: "Anbuselvan Rocky" + repo: "https://github.com/anburocky3/vscode-cyberdude-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AnbuselvanRocky.cyberdude-theme" +colors: + bg: "#0E1419" + fg: "#F8F8F2" + black: "#44475A" + red: "#DE312B" + green: "#2FD651" + yellow: "#D0D662" + blue: "#9C6FCF" + magenta: "#DE559C" + cyan: "#6AC5D3" + white: "#656B84" + brightBlack: "#656B84" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#BD93F9" + brightMagenta: "#E1623E" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 244 + contrast: + fg: 102.3 + black: 10.6 + red: 30.8 + green: 65.3 + yellow: 76.9 + blue: 36 + magenta: 38.5 + cyan: 63.3 + white: 24.9 + brightBlack: 24.9 + brightRed: 43.7 + brightGreen: 85.2 + brightYellow: 98.9 + brightBlue: 54 + brightMagenta: 39.3 + brightCyan: 84.3 + brightWhite: 102.3 diff --git a/themes/cyberdyne-ghostty.yaml b/themes/cyberdyne-ghostty.yaml new file mode 100644 index 00000000..4f072d46 --- /dev/null +++ b/themes/cyberdyne-ghostty.yaml @@ -0,0 +1,49 @@ +name: "Cyberdyne Ghostty" +source: + marketplace_id: "m0-hassan.cyberdyne" + version: "0.1.3" + installs: 136 + author: "m0-hassan" + repo: "https://github.com/m0-hassan/cyberdyne" + url: "https://marketplace.visualstudio.com/items?itemName=m0-hassan.cyberdyne" +colors: + bg: "#151144" + fg: "#00FF92" + black: "#080808" + red: "#FF8373" + green: "#00C172" + yellow: "#D2A700" + blue: "#0071CF" + magenta: "#FF90FE" + cyan: "#6BFFDD" + white: "#F1F1F1" + brightBlack: "#2E2E2E" + brightRed: "#FFC4BE" + brightGreen: "#D6FCBA" + brightYellow: "#FFFED5" + brightBlue: "#C2E3FF" + brightMagenta: "#FFB2FE" + brightCyan: "#E6E7FE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 279 + contrast: + fg: 86.5 + black: 0 + red: 53.7 + green: 54.7 + yellow: 56.2 + blue: 26.9 + magenta: 63.4 + cyan: 91.1 + white: 97.2 + brightBlack: 0 + brightRed: 77.9 + brightGreen: 96.9 + brightYellow: 104.1 + brightBlue: 85.7 + brightMagenta: 74.3 + brightCyan: 91.8 + brightWhite: 106.4 diff --git a/themes/cybereternals-vscode-theme.yaml b/themes/cybereternals-vscode-theme.yaml new file mode 100644 index 00000000..7fbd4197 --- /dev/null +++ b/themes/cybereternals-vscode-theme.yaml @@ -0,0 +1,49 @@ +name: "cybereternals-vscode-theme" +source: + marketplace_id: "CyberEternal.cybereternals-vscode-theme" + version: "1.0.8" + installs: 527 + author: "CyberEternal" + repo: "https://github.com/cyber-eternal/cybereternals-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CyberEternal.cybereternals-vscode-theme" +colors: + bg: "#0D1017" + fg: "#BFBDB6" + black: "#11151C" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + contrast: + fg: 66.4 + black: 0 + red: 44.6 + green: 70.6 + yellow: 67.1 + blue: 61.2 + magenta: 61.2 + cyan: 78.4 + white: 72.3 + brightBlack: 23.5 + brightRed: 47.2 + brightGreen: 73.9 + brightYellow: 70.1 + brightBlue: 63.9 + brightMagenta: 64 + brightCyan: 81.4 + brightWhite: 107.4 diff --git a/themes/cyberlite-fork.yaml b/themes/cyberlite-fork.yaml new file mode 100644 index 00000000..5b3be147 --- /dev/null +++ b/themes/cyberlite-fork.yaml @@ -0,0 +1,49 @@ +name: "Cyberlite - Fork" +source: + marketplace_id: "ACO-626-theme.cyberlite" + version: "0.0.1" + installs: 120 + author: "ACO-626-theme" + repo: "https://github.com/ACO-626/Cyberlite-Visual-Studio-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ACO-626-theme.cyberlite" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#8A8A8A" + red: "#DE0000" + green: "#16CF88" + yellow: "#DBDB00" + blue: "#3A8FEC" + magenta: "#E800E8" + cyan: "#62CAE4" + white: "#FFEBF4" + brightBlack: "#C7C7C7" + brightRed: "#FF0000" + brightGreen: "#00FF98" + brightYellow: "#FFFF00" + brightBlue: "#0078FF" + brightMagenta: "#FF00FF" + brightCyan: "#00CDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 39.6 + red: 29.4 + green: 63.4 + yellow: 80.7 + blue: 41.5 + magenta: 39.3 + cyan: 66.7 + white: 98.1 + brightBlack: 72.7 + brightRed: 37.5 + brightGreen: 88.2 + brightYellow: 102.7 + brightBlue: 34.5 + brightMagenta: 46.2 + brightCyan: 67.7 + brightWhite: 107.9 diff --git a/themes/cybermoon.yaml b/themes/cybermoon.yaml new file mode 100644 index 00000000..911340b0 --- /dev/null +++ b/themes/cybermoon.yaml @@ -0,0 +1,49 @@ +name: "Cybermoon" +source: + marketplace_id: "JulianoVentola.cybermoon-theme" + version: "1.2.3" + installs: 1002 + author: "Juliano Ventola" + repo: "https://github.com/julianoventola/cybermoon" + url: "https://marketplace.visualstudio.com/items?itemName=JulianoVentola.cybermoon-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#B22A2A" + green: "#0BA369" + yellow: "#C6C60E" + blue: "#1F63AD" + magenta: "#A337A3" + cyan: "#0F92B2" + white: "#C6C6C6" + brightBlack: "#585858" + brightRed: "#DD0000" + brightGreen: "#00DD84" + brightYellow: "#DDDD00" + brightBlue: "#066FE3" + brightMagenta: "#DD00DD" + brightCyan: "#00B2DD" + brightWhite: "#C6C6C6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 21.3 + green: 42.5 + yellow: 68.6 + blue: 21.8 + magenta: 23.8 + cyan: 38.3 + white: 72.1 + brightBlack: 17.3 + brightRed: 29.2 + brightGreen: 70.1 + brightYellow: 81.8 + brightBlue: 29.3 + brightMagenta: 36.2 + brightCyan: 53.7 + brightWhite: 72.1 diff --git a/themes/cyberpink-137-theme.yaml b/themes/cyberpink-137-theme.yaml new file mode 100644 index 00000000..6e23e5d2 --- /dev/null +++ b/themes/cyberpink-137-theme.yaml @@ -0,0 +1,49 @@ +name: "Cyberpink-137© Theme" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#07001A" + fg: "#FF007B" + black: "#6F6F6F" + red: "#5F61EC" + green: "#F0005A" + yellow: "#FF0060" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#1152CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#614CF1" + brightGreen: "#86001F" + brightYellow: "#FF24A9" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#0F4FE8" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: 293 + contrast: + fg: 39 + black: 26.8 + red: 28.9 + green: 34.5 + yellow: 38.3 + blue: 28.3 + magenta: 30.7 + cyan: 19.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 24.9 + brightGreen: 10.6 + brightYellow: 41.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 21.2 + brightWhite: 90.9 diff --git a/themes/cyberpunk-2077-night-city-neon.yaml b/themes/cyberpunk-2077-night-city-neon.yaml new file mode 100644 index 00000000..c495e30d --- /dev/null +++ b/themes/cyberpunk-2077-night-city-neon.yaml @@ -0,0 +1,49 @@ +name: "Cyberpunk 2077 - Night City Neon" +source: + marketplace_id: "GriffReaper.cyberpunk-2077-night-city-theme" + version: "1.0.5" + installs: 74 + author: "Griff Reaper" + repo: "https://github.com/your-username/cyberpunk-2077-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GriffReaper.cyberpunk-2077-night-city-theme" +colors: + bg: "#000000" + fg: "#00F0FF" + black: "#000000" + red: "#FF0040" + green: "#00FF9F" + yellow: "#FFE600" + blue: "#00F0FF" + magenta: "#FF006E" + cyan: "#00F0FF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF1744" + brightGreen: "#00FFAA" + brightYellow: "#FCEE0C" + brightBlue: "#00F0FF" + brightMagenta: "#FF10F0" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 84.5 + black: 0 + red: 37.9 + green: 88.3 + yellow: 90.9 + blue: 84.5 + magenta: 38.8 + cyan: 84.5 + white: 107.9 + brightBlack: 23 + brightRed: 38.2 + brightGreen: 88.7 + brightYellow: 94.1 + brightBlue: 84.5 + brightMagenta: 45.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/cyberpunk-2077-reloaded.yaml b/themes/cyberpunk-2077-reloaded.yaml new file mode 100644 index 00000000..4c3ce190 --- /dev/null +++ b/themes/cyberpunk-2077-reloaded.yaml @@ -0,0 +1,49 @@ +name: "Cyberpunk 2077 Reloaded" +source: + marketplace_id: "andre-s-nascimento.cyberpunk-reloaded-theme" + version: "1.0.3" + installs: 2791 + author: "André Soares Nascimento" + repo: "https://github.com/andre-s-nascimento/cyberpunk-reloaded-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andre-s-nascimento.cyberpunk-reloaded-theme" +colors: + bg: "#272932" + fg: "#FDF500" + black: "#272932" + red: "#D62246" + green: "#9370DB" + yellow: "#CB1DCD" + blue: "#37EBF3" + magenta: "#CB1DCD" + cyan: "#E455AE" + white: "#37EBF3" + brightBlack: "#37EBF3" + brightRed: "#D62246" + brightGreen: "#2CF6B3" + brightYellow: "#CB1DCD" + brightBlue: "#37EBF3" + brightMagenta: "#CB1DCD" + brightCyan: "#E455AE" + brightWhite: "#37EBF3" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 93.9 + black: 0 + red: 25.1 + green: 33 + yellow: 28.1 + blue: 78.1 + magenta: 28.1 + cyan: 37.6 + white: 78.1 + brightBlack: 78.1 + brightRed: 25.1 + brightGreen: 80.8 + brightYellow: 28.1 + brightBlue: 78.1 + brightMagenta: 28.1 + brightCyan: 37.6 + brightWhite: 78.1 diff --git a/themes/cyberpunk-2077.yaml b/themes/cyberpunk-2077.yaml new file mode 100644 index 00000000..9330d4b4 --- /dev/null +++ b/themes/cyberpunk-2077.yaml @@ -0,0 +1,49 @@ +name: "CyberPunk 2077" +source: + marketplace_id: "AshutoshPunia7109.cyberpunk-2077" + version: "0.1.0" + installs: 3145 + author: "As" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AshutoshPunia7109.cyberpunk-2077" +colors: + bg: "#272932" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 104.2 + black: 0 + red: 24 + green: 50.3 + yellow: 82.9 + blue: 24.7 + magenta: 27.1 + cyan: 44.9 + white: 104.2 + brightBlack: 19.3 + brightRed: 35.9 + brightGreen: 60.8 + brightYellow: 92.9 + brightBlue: 37.3 + brightMagenta: 42.7 + brightCyan: 52.7 + brightWhite: 87.3 diff --git a/themes/cyberpunk.yaml b/themes/cyberpunk.yaml new file mode 100644 index 00000000..38a587f6 --- /dev/null +++ b/themes/cyberpunk.yaml @@ -0,0 +1,49 @@ +name: "Cyberpunk" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2036 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF007F" + green: "#39FF14" + yellow: "#FFFF00" + blue: "#1B03A3" + magenta: "#8A2BE2" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#FF3399" + brightGreen: "#66FF33" + brightYellow: "#FFFF66" + brightBlue: "#3366FF" + brightMagenta: "#CC66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 39.2 + green: 87 + yellow: 102.7 + blue: 0 + magenta: 23.3 + cyan: 92.2 + white: 107.9 + brightBlack: 0 + brightRed: 42 + brightGreen: 88.5 + brightYellow: 103.3 + brightBlue: 29.9 + brightMagenta: 45.2 + brightCyan: 94 + brightWhite: 107.9 diff --git a/themes/cyberpunkcygnus-clear-grid.yaml b/themes/cyberpunkcygnus-clear-grid.yaml new file mode 100644 index 00000000..81368017 --- /dev/null +++ b/themes/cyberpunkcygnus-clear-grid.yaml @@ -0,0 +1,49 @@ +name: "CyberpunkCygnus Clear Grid" +source: + marketplace_id: "ai-acc.cyberpunkcygnus" + version: "0.2.17" + installs: 454 + author: "AI Acc" + repo: "https://github.com/sascharo/" + url: "https://marketplace.visualstudio.com/items?itemName=ai-acc.cyberpunkcygnus" +colors: + bg: "#FFFFFF" + fg: "#050505" + black: "#343A40" + red: "#A13D3A" + green: "#00CC8E" + yellow: "#A06D1A" + blue: "#0066FF" + magenta: "#9933FF" + cyan: "#00B4CC" + white: "#ADB5BD" + brightBlack: "#495057" + brightRed: "#FF3355" + brightGreen: "#00FF9D" + brightYellow: "#FFBB00" + brightBlue: "#0099FF" + brightMagenta: "#FF00AA" + brightCyan: "#00EEFF" + brightWhite: "#050505" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 106 + black: 96.5 + red: 81.4 + green: 40.2 + yellow: 70.8 + blue: 72.4 + magenta: 72.7 + cyan: 48.4 + white: 40.5 + brightBlack: 88.3 + brightRed: 61.6 + brightGreen: 15.5 + brightYellow: 30 + brightBlue: 55.9 + brightMagenta: 60.8 + brightCyan: 19.9 + brightWhite: 106 diff --git a/themes/cyberpunkcygnus-neon-pulse.yaml b/themes/cyberpunkcygnus-neon-pulse.yaml new file mode 100644 index 00000000..48518443 --- /dev/null +++ b/themes/cyberpunkcygnus-neon-pulse.yaml @@ -0,0 +1,49 @@ +name: "CyberpunkCygnus Neon Pulse" +source: + marketplace_id: "ai-acc.cyberpunkcygnus" + version: "0.2.17" + installs: 454 + author: "AI Acc" + repo: "https://github.com/sascharo/" + url: "https://marketplace.visualstudio.com/items?itemName=ai-acc.cyberpunkcygnus" +colors: + bg: "#16181D" + fg: "#FFFFFF" + black: "#232733" + red: "#FF3B3B" + green: "#A3FF8C" + yellow: "#FFE066" + blue: "#00EAFF" + magenta: "#FF7DE9" + cyan: "#00EAFF" + white: "#BFC9DB" + brightBlack: "#7B88A1" + brightRed: "#FF3B3B" + brightGreen: "#A3FF8C" + brightYellow: "#FFE066" + brightBlue: "#00EAFF" + brightMagenta: "#FF7DE9" + brightCyan: "#00EAFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 106.8 + black: 0 + red: 39.4 + green: 92.4 + yellow: 87.7 + blue: 80.4 + magenta: 57.4 + cyan: 80.4 + white: 72.4 + brightBlack: 37.2 + brightRed: 39.4 + brightGreen: 92.4 + brightYellow: 87.7 + brightBlue: 80.4 + brightMagenta: 57.4 + brightCyan: 80.4 + brightWhite: 106.8 diff --git a/themes/cyberpunkcygnus-solace-flare.yaml b/themes/cyberpunkcygnus-solace-flare.yaml new file mode 100644 index 00000000..b0afe10f --- /dev/null +++ b/themes/cyberpunkcygnus-solace-flare.yaml @@ -0,0 +1,49 @@ +name: "CyberpunkCygnus Solace Flare" +source: + marketplace_id: "ai-acc.cyberpunkcygnus" + version: "0.2.17" + installs: 454 + author: "AI Acc" + repo: "https://github.com/sascharo/" + url: "https://marketplace.visualstudio.com/items?itemName=ai-acc.cyberpunkcygnus" +colors: + bg: "#F0F2F5" + fg: "#1E2127" + black: "#4E5666" + red: "#D9534F" + green: "#2A9D8F" + yellow: "#E09F3E" + blue: "#0088A1" + magenta: "#A15EAD" + cyan: "#0088A1" + white: "#D5DBE3" + brightBlack: "#5C677D" + brightRed: "#E86964" + brightGreen: "#3DBD7D" + brightYellow: "#F2BD5A" + brightBlue: "#00A1BD" + brightMagenta: "#C774D9" + brightCyan: "#00A1BD" + brightWhite: "#1E2127" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.2 + black: 77.8 + red: 58.3 + green: 52.4 + yellow: 36.9 + blue: 60.3 + magenta: 62.7 + cyan: 60.3 + white: 11.2 + brightBlack: 70.6 + brightRed: 50.3 + brightGreen: 38.9 + brightYellow: 23 + brightBlue: 49.1 + brightMagenta: 48.9 + brightCyan: 49.1 + brightWhite: 95.2 diff --git a/themes/cybertrauma-s-dark-theme.yaml b/themes/cybertrauma-s-dark-theme.yaml new file mode 100644 index 00000000..6f7fada4 --- /dev/null +++ b/themes/cybertrauma-s-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "CyberTrauma's Dark Theme" +source: + marketplace_id: "CyberTrauma.cybertrauma-s-dark-theme" + version: "0.1.11" + installs: 2108 + author: "CyberTrauma" + repo: "https://github.com/siddarthreddygsr/CyberTrauma-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=CyberTrauma.cybertrauma-s-dark-theme" +colors: + bg: "#000000" + fg: "#C9D1D9" + black: "#0D1117" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#76E3EA" + white: "#B1BAC4" + brightBlack: "#161B22" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#B3F0FF" + brightWhite: "#B1BAC4" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 78 + black: 0 + red: 53.1 + green: 52.6 + yellow: 52.7 + blue: 52.7 + magenta: 52.7 + cyan: 79.8 + white: 64.5 + brightBlack: 0 + brightRed: 65.3 + brightGreen: 65.9 + brightYellow: 65.2 + brightBlue: 65.2 + brightMagenta: 65.1 + brightCyan: 91.7 + brightWhite: 64.5 diff --git a/themes/cybertrauma-s.yaml b/themes/cybertrauma-s.yaml new file mode 100644 index 00000000..411c9b36 --- /dev/null +++ b/themes/cybertrauma-s.yaml @@ -0,0 +1,49 @@ +name: "Cybertrauma's" +source: + marketplace_id: "CyberTrauma.cybertrauma" + version: "0.0.4" + installs: 1676 + author: "CyberTrauma" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CyberTrauma.cybertrauma" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#474040" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 9 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/cybertronix.yaml b/themes/cybertronix.yaml new file mode 100644 index 00000000..9271a0e5 --- /dev/null +++ b/themes/cybertronix.yaml @@ -0,0 +1,49 @@ +name: "CYBERTRONIX" +source: + marketplace_id: "GEISERBIT.cybertronix-theme" + version: "0.2.2" + installs: 69 + author: "GEISERBIT" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GEISERBIT.cybertronix-theme" +colors: + bg: "#000019" + fg: "#969DFF" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 53.8 + black: 7.4 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/cyberui.yaml b/themes/cyberui.yaml new file mode 100644 index 00000000..9984b92c --- /dev/null +++ b/themes/cyberui.yaml @@ -0,0 +1,49 @@ +name: "cyberui" +source: + marketplace_id: "AarMagic.cyberui" + version: "1.4.0" + installs: 349 + author: "AarWeb" + repo: "https://github.com/aarweb/cyberui" + url: "https://marketplace.visualstudio.com/items?itemName=AarMagic.cyberui" +colors: + bg: "#000000" + fg: "#55EAD4" + black: "#000000" + red: "#C5003C" + green: "#55EAD4" + yellow: "#F3E600" + blue: "#880425" + magenta: "#C5003C" + cyan: "#55EAD4" + white: "#55EAD4" + brightBlack: "#880425" + brightRed: "#C5003C" + brightGreen: "#55EAD4" + brightYellow: "#F3E600" + brightBlue: "#880425" + brightMagenta: "#C5003C" + brightCyan: "#55EAD4" + brightWhite: "#F3E600" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 80.6 + black: 0 + red: 24 + green: 80.6 + yellow: 89.1 + blue: 11.2 + magenta: 24 + cyan: 80.6 + white: 80.6 + brightBlack: 11.2 + brightRed: 24 + brightGreen: 80.6 + brightYellow: 89.1 + brightBlue: 11.2 + brightMagenta: 24 + brightCyan: 80.6 + brightWhite: 89.1 diff --git a/themes/cynical-color-theme.yaml b/themes/cynical-color-theme.yaml new file mode 100644 index 00000000..599e31d9 --- /dev/null +++ b/themes/cynical-color-theme.yaml @@ -0,0 +1,49 @@ +name: "cynical-color-theme" +source: + marketplace_id: "TheRepoClub.theme-mangayo" + version: "1.0.1" + installs: 645 + author: "TheRepoClub" + repo: "https://github.com/TheCynicalTeam/vscode-theme-cynical" + url: "https://marketplace.visualstudio.com/items?itemName=TheRepoClub.theme-mangayo" +colors: + bg: "#292F34" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 243 + contrast: + fg: 98.3 + black: 0 + red: 20.9 + green: 49.3 + yellow: 54 + blue: 30.9 + magenta: 28.5 + cyan: 46.7 + white: 84.8 + brightBlack: 18.3 + brightRed: 33.6 + brightGreen: 73.3 + brightYellow: 80.2 + brightBlue: 46.2 + brightMagenta: 42.8 + brightCyan: 69.7 + brightWhite: 98.3 diff --git a/themes/cyperpunkrebecca.yaml b/themes/cyperpunkrebecca.yaml new file mode 100644 index 00000000..df6997c5 --- /dev/null +++ b/themes/cyperpunkrebecca.yaml @@ -0,0 +1,49 @@ +name: "CyperpunkRebecca" +source: + marketplace_id: "LazzyE.cyberpunk-rebecca-color-theme" + version: "0.0.5" + installs: 26 + author: "LazzyE" + repo: "https://github.com/ErliCai/cyberpunk-rebecca-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LazzyE.cyberpunk-rebecca-color-theme" +colors: + bg: "#0E2025" + fg: "#CFFFF0" + black: "#0E2025" + red: "#FF2D95" + green: "#56E0B0" + yellow: "#E8B830" + blue: "#2D8CCC" + magenta: "#FF2D95" + cyan: "#7AECC8" + white: "#CFFFF0" + brightBlack: "#183038" + brightRed: "#FF69B4" + brightGreen: "#7AECC8" + brightYellow: "#F0D060" + brightBlue: "#5AAFEE" + brightMagenta: "#FF69B4" + brightCyan: "#FFB8D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 218 + contrast: + fg: 99.3 + black: 0 + red: 39.6 + green: 72.5 + yellow: 66 + blue: 36 + magenta: 39.6 + cyan: 81 + white: 99.3 + brightBlack: 0 + brightRed: 49.3 + brightGreen: 81 + brightYellow: 77.6 + brightBlue: 53.4 + brightMagenta: 49.3 + brightCyan: 73.9 + brightWhite: 106.1 diff --git a/themes/d2t-dark-clean.yaml b/themes/d2t-dark-clean.yaml new file mode 100644 index 00000000..4529ed8e --- /dev/null +++ b/themes/d2t-dark-clean.yaml @@ -0,0 +1,49 @@ +name: "D2T Dark Clean" +source: + marketplace_id: "dthanhtoan.d2t-colorful-theme" + version: "0.4.0" + installs: 1925 + author: "dthanhtoan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dthanhtoan.d2t-colorful-theme" +colors: + bg: "#1E2030" + fg: "#E4E7F3" + black: "#6F748E" + red: "#EE8897" + green: "#A7DB94" + yellow: "#EFD59E" + blue: "#8BAEF5" + magenta: "#F6BCE7" + cyan: "#92D8E4" + white: "#949BB8" + brightBlack: "#8188A3" + brightRed: "#EE8897" + brightGreen: "#A7DB94" + brightYellow: "#EFD59E" + brightBlue: "#8BAEF5" + brightMagenta: "#F6BCE7" + brightCyan: "#92D8E4" + brightWhite: "#CBD4F6" +meta: + mode: "dark" + accent: "red" + hue: 278 + contrast: + fg: 90.2 + black: 27.4 + red: 52 + green: 74 + yellow: 80.5 + blue: 56.3 + magenta: 74.3 + cyan: 73.9 + white: 46.4 + brightBlack: 36.7 + brightRed: 52 + brightGreen: 74 + brightYellow: 80.5 + brightBlue: 56.3 + brightMagenta: 74.3 + brightCyan: 73.9 + brightWhite: 78.7 diff --git a/themes/d2t-dark.yaml b/themes/d2t-dark.yaml new file mode 100644 index 00000000..1a49d770 --- /dev/null +++ b/themes/d2t-dark.yaml @@ -0,0 +1,49 @@ +name: "D2T Dark" +source: + marketplace_id: "dthanhtoan.d2t-colorful-theme" + version: "0.4.0" + installs: 1925 + author: "dthanhtoan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dthanhtoan.d2t-colorful-theme" +colors: + bg: "#24273A" + fg: "#E4E7F3" + black: "#6F748E" + red: "#EE8897" + green: "#A7DB94" + yellow: "#EFD59E" + blue: "#8BAEF5" + magenta: "#F6BCE7" + cyan: "#92D8E4" + white: "#949BB8" + brightBlack: "#8188A3" + brightRed: "#EE8897" + brightGreen: "#A7DB94" + brightYellow: "#EFD59E" + brightBlue: "#8BAEF5" + brightMagenta: "#F6BCE7" + brightCyan: "#92D8E4" + brightWhite: "#CBD4F6" +meta: + mode: "dark" + accent: "red" + hue: 277 + contrast: + fg: 89 + black: 26.2 + red: 50.8 + green: 72.8 + yellow: 79.3 + blue: 55.1 + magenta: 73.1 + cyan: 72.7 + white: 45.2 + brightBlack: 35.5 + brightRed: 50.8 + brightGreen: 72.8 + brightYellow: 79.3 + brightBlue: 55.1 + brightMagenta: 73.1 + brightCyan: 72.7 + brightWhite: 77.5 diff --git a/themes/da3m0ns-dark-italic.yaml b/themes/da3m0ns-dark-italic.yaml new file mode 100644 index 00000000..c070800a --- /dev/null +++ b/themes/da3m0ns-dark-italic.yaml @@ -0,0 +1,49 @@ +name: "Da3m0ns Dark (Italic)" +source: + marketplace_id: "mrknown404.daemons" + version: "0.1.5" + installs: 262 + author: "mrknown404" + repo: "https://github.com/TheShiveshNetwork/vscode-da3m0ns" + url: "https://marketplace.visualstudio.com/items?itemName=mrknown404.daemons" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#32344A" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#AD8EE6" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#32344A" + brightRed: "#F7768E" + brightGreen: "#9ECE6A" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#AD8EE6" + brightCyan: "#7DCFFF" + brightWhite: "#787C99" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 59.3 + black: 0 + red: 49.4 + green: 66.9 + yellow: 62.2 + blue: 51.1 + magenta: 48.1 + cyan: 70.5 + white: 32.1 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 66.9 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 48.1 + brightCyan: 70.5 + brightWhite: 32.1 diff --git a/themes/dafault.yaml b/themes/dafault.yaml new file mode 100644 index 00000000..cff1b596 --- /dev/null +++ b/themes/dafault.yaml @@ -0,0 +1,49 @@ +name: "Dafault" +source: + marketplace_id: "AurinoGeraldo.auri-theme" + version: "3.1.2" + installs: 190 + author: "Aurino Geraldo" + repo: "https://github.com/AurinoJunior/vscode-extensions.git#main" + url: "https://marketplace.visualstudio.com/items?itemName=AurinoGeraldo.auri-theme" +colors: + bg: "#13151D" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 107 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.5 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/dak-v1.yaml b/themes/dak-v1.yaml new file mode 100644 index 00000000..5259e548 --- /dev/null +++ b/themes/dak-v1.yaml @@ -0,0 +1,49 @@ +name: "dak-v1" +source: + marketplace_id: "d-kito.theme-dak-running-red-lights" + version: "1.0.1" + installs: 32 + author: "dakito" + repo: "https://github.com/d-kito/dak-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=d-kito.theme-dak-running-red-lights" +colors: + bg: "#070527" + fg: "#163AD0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 14.6 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.3 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/dalailahner-dark.yaml b/themes/dalailahner-dark.yaml new file mode 100644 index 00000000..71c58996 --- /dev/null +++ b/themes/dalailahner-dark.yaml @@ -0,0 +1,49 @@ +name: "dalailahner-dark" +source: + marketplace_id: "dalailahner.dalailahner-dark" + version: "2.0.1" + installs: 118 + author: "dalailahner" + repo: "https://github.com/dalailahner/dalailahner-dark" + url: "https://marketplace.visualstudio.com/items?itemName=dalailahner.dalailahner-dark" +colors: + bg: "#1C1C1C" + fg: "#D9D9D9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 82 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/dalton.yaml b/themes/dalton.yaml new file mode 100644 index 00000000..b72015ef --- /dev/null +++ b/themes/dalton.yaml @@ -0,0 +1,49 @@ +name: "Dalton" +source: + marketplace_id: "edersonferreira.dalton" + version: "1.0.1" + installs: 413 + author: "ederson ferreira" + repo: "https://github.com/edersonferreira/dalton-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=edersonferreira.dalton" +colors: + bg: "#0C0A0F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#3BF035" + yellow: "#E5E510" + blue: "#2B7DF0" + magenta: "#BC3FBC" + cyan: "#32BCD9" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 303 + contrast: + fg: 107.7 + black: 0 + red: 27.5 + green: 79 + yellow: 86.4 + blue: 35 + magenta: 30.6 + cyan: 58 + white: 90.8 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/dan-light-work.yaml b/themes/dan-light-work.yaml new file mode 100644 index 00000000..a060feed --- /dev/null +++ b/themes/dan-light-work.yaml @@ -0,0 +1,49 @@ +name: "Dan-light-work" +source: + marketplace_id: "Theme-xp-javascript-dark.danlightworktheme" + version: "1.0.3" + installs: 67 + author: "Theme-xp-javascript-dark" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Theme-xp-javascript-dark.danlightworktheme" +colors: + bg: "#C3E4E4" + fg: "#000000" + black: "#FFFFFF" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#DB9393" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 197 + contrast: + fg: 86.4 + black: 19.8 + red: 54.4 + green: 29.6 + yellow: 38.3 + blue: 66.4 + magenta: 54.9 + cyan: 41 + white: 28.2 + brightBlack: 59.1 + brightRed: 54.4 + brightGreen: 21.3 + brightYellow: 21.3 + brightBlue: 66.4 + brightMagenta: 54.9 + brightCyan: 41 + brightWhite: 28.8 diff --git a/themes/dan-react-theme.yaml b/themes/dan-react-theme.yaml new file mode 100644 index 00000000..6d37b76c --- /dev/null +++ b/themes/dan-react-theme.yaml @@ -0,0 +1,49 @@ +name: "Dan React Theme" +source: + marketplace_id: "carrie999.dan-react-theme" + version: "0.0.4" + installs: 2651 + author: "carrie999" + repo: "https://github.com/Carrie999/dan-react-theme" + url: "https://marketplace.visualstudio.com/items?itemName=carrie999.dan-react-theme" +colors: + bg: "#051525" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#DA92E4" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#E9A5DA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 249 + contrast: + fg: 71.5 + black: 26.6 + red: 44.2 + green: 66 + yellow: 79.1 + blue: 56.1 + magenta: 56.5 + cyan: 78.4 + white: 107.1 + brightBlack: 26.6 + brightRed: 44.2 + brightGreen: 84.4 + brightYellow: 79.1 + brightBlue: 56.1 + brightMagenta: 64.7 + brightCyan: 78.4 + brightWhite: 107.1 diff --git a/themes/dang-jedi.yaml b/themes/dang-jedi.yaml new file mode 100644 index 00000000..3764bd42 --- /dev/null +++ b/themes/dang-jedi.yaml @@ -0,0 +1,49 @@ +name: "Dang-Jedi" +source: + marketplace_id: "aaqaIshtyaq.dang-theme-vscode" + version: "1.0.4" + installs: 3302 + author: "Aaqa Ishtyaq" + repo: "https://github.com/aaqaishtyaq/dang-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.dang-theme-vscode" +colors: + bg: "#0F111A" + fg: "#8F93A2" + black: "#0F111D" + red: "#EB2940" + green: "#78F868" + yellow: "#FFB835" + blue: "#27A9D8" + magenta: "#7834D1" + cyan: "#5B8FFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#EB3D54" + brightGreen: "#78BD65" + brightYellow: "#FFCB6B" + brightBlue: "#89DDFF" + brightMagenta: "#7834D1" + brightCyan: "#82AAFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 43.7 + black: 0 + red: 33.6 + green: 85.7 + yellow: 71.2 + blue: 49.3 + magenta: 19.9 + cyan: 43.8 + white: 107.3 + brightBlack: 12 + brightRed: 35.8 + brightGreen: 57 + brightYellow: 79.4 + brightBlue: 78.7 + brightMagenta: 19.9 + brightCyan: 56.4 + brightWhite: 107.3 diff --git a/themes/dangergray-v2.yaml b/themes/dangergray-v2.yaml new file mode 100644 index 00000000..c43aa2be --- /dev/null +++ b/themes/dangergray-v2.yaml @@ -0,0 +1,49 @@ +name: "DangerGray v2" +source: + marketplace_id: "jynfairchild.dangerdark-theme" + version: "0.1.0" + installs: 613 + author: "jynfairchild" + repo: "https://github.com/jpfairchild/dangergrey-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jynfairchild.dangerdark-theme" +colors: + bg: "#1F1F1F" + fg: "#F7F7F7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#C82424" + magenta: "#BC3FBC" + cyan: "#E2AF37" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#EA5C3B" + brightMagenta: "#D670D6" + brightCyan: "#DBAE29" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 100.6 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 23.4 + magenta: 28.8 + cyan: 61.5 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 38.6 + brightMagenta: 44.4 + brightCyan: 59.9 + brightWhite: 89 diff --git a/themes/dango-theme.yaml b/themes/dango-theme.yaml new file mode 100644 index 00000000..d3befffb --- /dev/null +++ b/themes/dango-theme.yaml @@ -0,0 +1,49 @@ +name: "Dango theme" +source: + marketplace_id: "teloru.dango-theme" + version: "0.2.0" + installs: 933 + author: "teloru" + repo: "https://gitlab.com/Astrid-Beyer/dango-vsc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=teloru.dango-theme" +colors: + bg: "#050C1B" + fg: "#FBF8E9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 102.7 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.7 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/danmo.yaml b/themes/danmo.yaml new file mode 100644 index 00000000..57f3cae8 --- /dev/null +++ b/themes/danmo.yaml @@ -0,0 +1,49 @@ +name: "danmo" +source: + marketplace_id: "Rach0101.danmo-theme" + version: "0.0.3" + installs: 44 + author: "tianxiang24" + repo: "https://github.com/randomVariable2000/danmo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Rach0101.danmo-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#F75B5B" + green: "#63FC68" + yellow: "#F3FF4A" + blue: "#5568F8" + magenta: "#F845AE" + cyan: "#58E0FF" + white: "#555555" + brightBlack: "#666666" + brightRed: "#FB9999" + brightGreen: "#90FEA3" + brightYellow: "#F6FB99" + brightBlue: "#7DA3FB" + brightMagenta: "#F87AC3" + brightCyan: "#84F5F9" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 106 + black: 106 + red: 58 + green: 16.4 + yellow: 0 + blue: 70.4 + magenta: 58.5 + cyan: 25.1 + white: 85.9 + brightBlack: 78.8 + brightRed: 40.3 + brightGreen: 11.8 + brightYellow: 0 + brightBlue: 48.4 + brightMagenta: 47.7 + brightCyan: 13.7 + brightWhite: 48.5 diff --git a/themes/dantes-theme.yaml b/themes/dantes-theme.yaml new file mode 100644 index 00000000..00314cff --- /dev/null +++ b/themes/dantes-theme.yaml @@ -0,0 +1,49 @@ +name: "Dantes Theme" +source: + marketplace_id: "dantes.dantes" + version: "2.1.1" + installs: 156 + author: "Dantes" + repo: "https://github.com/dantestheme/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=dantes.dantes" +colors: + bg: "#1D2128" + fg: "#FAFAFA" + black: "#1D2128" + red: "#F01900" + green: "#14EB96" + yellow: "#FFF94B" + blue: "#0060E0" + magenta: "#FF3CE1" + cyan: "#00D2FF" + white: "#FAFAFA" + brightBlack: "#00B3F5" + brightRed: "#FF505F" + brightGreen: "#53FEBE" + brightYellow: "#FFEA7F" + brightBlue: "#00B3F5" + brightMagenta: "#FF6BBB" + brightCyan: "#00DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 102.3 + black: 0 + red: 31.9 + green: 75.4 + yellow: 97.8 + blue: 22.5 + magenta: 44.4 + cyan: 67.7 + white: 102.3 + brightBlack: 53.3 + brightRed: 41.5 + brightGreen: 87.7 + brightYellow: 91.5 + brightBlue: 53.3 + brightMagenta: 49.6 + brightCyan: 72.9 + brightWhite: 105.6 diff --git a/themes/dantetheme.yaml b/themes/dantetheme.yaml new file mode 100644 index 00000000..55cf08d5 --- /dev/null +++ b/themes/dantetheme.yaml @@ -0,0 +1,49 @@ +name: "DanteTheme" +source: + marketplace_id: "DanteTheme.dantetheme" + version: "0.0.9" + installs: 204 + author: "DanteTheme" + repo: "https://github.com/peidrao/DanteTheme" + url: "https://marketplace.visualstudio.com/items?itemName=DanteTheme.dantetheme" +colors: + bg: "#181913" + fg: "#FFF1E6" + black: "#FFFFFF" + red: "#6FA571" + green: "#2BFF00" + yellow: "#F92672" + blue: "#0F919F" + magenta: "#AE81FF" + cyan: "#66D9EF" + white: "#66D9EF" + brightBlack: "#75715E" + brightRed: "#B81C1C" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#EF66D1" + brightWhite: "#FF0000" +meta: + mode: "dark" + accent: "green" + hue: 115 + contrast: + fg: 99 + black: 106.7 + red: 45.7 + green: 85.6 + yellow: 37.1 + blue: 35.8 + magenta: 46.4 + cyan: 73.3 + white: 73.3 + brightBlack: 26.5 + brightRed: 20.3 + brightGreen: 76.8 + brightYellow: 83.7 + brightBlue: 49.7 + brightMagenta: 46.4 + brightCyan: 47.4 + brightWhite: 36.4 diff --git a/themes/darcula-contrast-min.yaml b/themes/darcula-contrast-min.yaml new file mode 100644 index 00000000..e5902e22 --- /dev/null +++ b/themes/darcula-contrast-min.yaml @@ -0,0 +1,49 @@ +name: "Darcula Contrast Min" +source: + marketplace_id: "nashpatty.darculacontrast" + version: "1.3.1" + installs: 1838 + author: "nashpatty" + repo: "https://github.com/nashpatty/vscode-darcula" + url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.darculacontrast" +colors: + bg: "#1E1F22" + fg: "#BCBEC4" + black: "#000000" + red: "#FA6675" + green: "#6AAB73" + yellow: "#CF8E6D" + blue: "#56A8F5" + magenta: "#C77DBB" + cyan: "#2AACB8" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FA6675" + brightGreen: "#6AAB73" + brightYellow: "#CF8E6D" + brightBlue: "#56A8F5" + brightMagenta: "#C77DBB" + brightCyan: "#2AACB8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65.5 + black: 0 + red: 45.2 + green: 47.1 + yellow: 47.5 + blue: 50.7 + magenta: 43.8 + cyan: 47.5 + white: 105.9 + brightBlack: 0 + brightRed: 45.2 + brightGreen: 47.1 + brightYellow: 47.5 + brightBlue: 50.7 + brightMagenta: 43.8 + brightCyan: 47.5 + brightWhite: 105.9 diff --git a/themes/darcula-contrast.yaml b/themes/darcula-contrast.yaml new file mode 100644 index 00000000..732ed4a0 --- /dev/null +++ b/themes/darcula-contrast.yaml @@ -0,0 +1,49 @@ +name: "Darcula Contrast" +source: + marketplace_id: "nashpatty.darculacontrast" + version: "1.3.1" + installs: 1838 + author: "nashpatty" + repo: "https://github.com/nashpatty/vscode-darcula" + url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.darculacontrast" +colors: + bg: "#1E1F22" + fg: "#A9B7C6" + black: "#000000" + red: "#BC3F3C" + green: "#6A8759" + yellow: "#FFC66D" + blue: "#6897BB" + magenta: "#9876AA" + cyan: "#BCA5C4" + white: "#F5F5F5" + brightBlack: "#000000" + brightRed: "#BC3F3C" + brightGreen: "#6A8759" + brightYellow: "#FFC66D" + brightBlue: "#6897BB" + brightMagenta: "#9876AA" + brightCyan: "#BCA5C4" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 60.5 + black: 0 + red: 24 + green: 32.2 + yellow: 76 + blue: 41.6 + magenta: 34.1 + cyan: 55.7 + white: 99.3 + brightBlack: 0 + brightRed: 24 + brightGreen: 32.2 + brightYellow: 76 + brightBlue: 41.6 + brightMagenta: 34.1 + brightCyan: 55.7 + brightWhite: 99.3 diff --git a/themes/darcula-dark-theme.yaml b/themes/darcula-dark-theme.yaml new file mode 100644 index 00000000..776f97d5 --- /dev/null +++ b/themes/darcula-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Darcula Dark Theme" +source: + marketplace_id: "CyrilLeblanc.amoled-darcula" + version: "1.0.1" + installs: 3271 + author: "CyrilLeblanc" + repo: "https://github.com/CyrilLeblanc/vscode-amoled-darcula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CyrilLeblanc.amoled-darcula" +colors: + bg: "#000000" + fg: "#999999" + black: "#343434" + red: "#E1270E" + green: "#5BC266" + yellow: "#FBCC43" + blue: "#535BCF" + magenta: "#BF5AF2" + cyan: "#6CC7F6" + white: "#FFFFFF" + brightBlack: "#535BCF" + brightRed: "#E1270E" + brightGreen: "#5BC266" + brightYellow: "#FBCC43" + brightBlue: "#535BCF" + brightMagenta: "#BF5AF2" + brightCyan: "#6CC7F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 47.2 + black: 0 + red: 31.3 + green: 58.2 + yellow: 79.2 + blue: 24.3 + magenta: 39.6 + cyan: 66.9 + white: 107.9 + brightBlack: 24.3 + brightRed: 31.3 + brightGreen: 58.2 + brightYellow: 79.2 + brightBlue: 24.3 + brightMagenta: 39.6 + brightCyan: 66.9 + brightWhite: 107.9 diff --git a/themes/darcula-solid-color-theme.yaml b/themes/darcula-solid-color-theme.yaml new file mode 100644 index 00000000..5aca93e4 --- /dev/null +++ b/themes/darcula-solid-color-theme.yaml @@ -0,0 +1,49 @@ +name: "darcula-solid-color-theme" +source: + marketplace_id: "jussiemion.darcula-solid" + version: "1.2.1" + installs: 3515 + author: "jussiemion" + repo: "https://github.com/jussiemion/darcula-solid" + url: "https://marketplace.visualstudio.com/items?itemName=jussiemion.darcula-solid" +colors: + bg: "#181818" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 74.6 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.5 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/darcula-void.yaml b/themes/darcula-void.yaml new file mode 100644 index 00000000..821fdc6c --- /dev/null +++ b/themes/darcula-void.yaml @@ -0,0 +1,49 @@ +name: "Darcula Void" +source: + marketplace_id: "sjlex.vscode-theme-darcula-void" + version: "1.1.0" + installs: 909 + author: "sjlex" + repo: "https://github.com/sjlex/vscode-theme-darcula-void" + url: "https://marketplace.visualstudio.com/items?itemName=sjlex.vscode-theme-darcula-void" +colors: + bg: "#000000" + fg: "#BFBFBF" + black: "#161616" + red: "#FD387F" + green: "#A8EC21" + yellow: "#F6C60A" + blue: "#15B5FF" + magenta: "#B37BFF" + cyan: "#5ED6FF" + white: "#E8E8E8" + brightBlack: "#939393" + brightRed: "#FF5F61" + brightGreen: "#B3F138" + brightYellow: "#FFEF5F" + brightBlue: "#00BDFF" + brightMagenta: "#BD9EFF" + brightCyan: "#59CBF1" + brightWhite: "#FEFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 68 + black: 0 + red: 41.1 + green: 83 + yellow: 75.6 + blue: 57.2 + magenta: 46.5 + cyan: 73.6 + white: 92.9 + brightBlack: 44.1 + brightRed: 46.4 + brightGreen: 86.7 + brightYellow: 95.6 + brightBlue: 60.5 + brightMagenta: 58.7 + brightCyan: 67.5 + brightWhite: 107.7 diff --git a/themes/darcula.yaml b/themes/darcula.yaml new file mode 100644 index 00000000..8c48d34d --- /dev/null +++ b/themes/darcula.yaml @@ -0,0 +1,49 @@ +name: "Darcula" +source: + marketplace_id: "sldobri.bunker" + version: "1.1.6" + installs: 377837 + author: "dobbbri" + repo: "https://github.com/sldobri/bunker" + url: "https://marketplace.visualstudio.com/items?itemName=sldobri.bunker" +colors: + bg: "#0B1015" + fg: "#F5F5F5" + black: "#05080A" + red: "#FB467B" + green: "#4EC9B0" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#CB6CFE" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FB467B" + brightGreen: "#4EC9B0" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#CB6CFE" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 249 + contrast: + fg: 100.9 + black: 0 + red: 41.7 + green: 62.6 + yellow: 79.5 + blue: 56.5 + magenta: 45.9 + cyan: 78.9 + white: 107.5 + brightBlack: 27 + brightRed: 41.7 + brightGreen: 62.6 + brightYellow: 79.5 + brightBlue: 56.5 + brightMagenta: 45.9 + brightCyan: 78.9 + brightWhite: 107.5 diff --git a/themes/darculacode.yaml b/themes/darculacode.yaml new file mode 100644 index 00000000..82ed7432 --- /dev/null +++ b/themes/darculacode.yaml @@ -0,0 +1,49 @@ +name: "DarculaCode" +source: + marketplace_id: "nejcbw.darcula-code" + version: "1.0.9" + installs: 1115 + author: "Nejc Brelih-Wasowski" + repo: "https://github.com/nejcbw/darcula-code" + url: "https://marketplace.visualstudio.com/items?itemName=nejcbw.darcula-code" +colors: + bg: "#2B2B2B" + fg: "#A9B7C6" + black: "#FFFFFF" + red: "#FF6B68" + green: "#ABC023" + yellow: "#D6BF55" + blue: "#5394EC" + magenta: "#AE8ABE" + cyan: "#299999" + white: "#999999" + brightBlack: "#555555" + brightRed: "#FF8785" + brightGreen: "#A8C023" + brightYellow: "#FFFF00" + brightBlue: "#7EAEF1" + brightMagenta: "#299999" + brightCyan: "#6CDADA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 58.5 + black: 103.8 + red: 45 + green: 58.8 + yellow: 64.2 + blue: 40.3 + magenta: 42.1 + cyan: 36.1 + white: 43.2 + brightBlack: 12.1 + brightRed: 52.7 + brightGreen: 58.4 + brightYellow: 98.7 + brightBlue: 53.2 + brightMagenta: 36.1 + brightCyan: 70.1 + brightWhite: 103.8 diff --git a/themes/dare-contrast.yaml b/themes/dare-contrast.yaml new file mode 100644 index 00000000..c77758f2 --- /dev/null +++ b/themes/dare-contrast.yaml @@ -0,0 +1,49 @@ +name: "dare-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#17191C" + fg: "#C0CCDB" + black: "#23262A" + red: "#BA0E2E" + green: "#3A8881" + yellow: "#D15736" + blue: "#FFFFFF" + magenta: "#3A8881" + cyan: "#D15736" + white: "#D0D9E4" + brightBlack: "#454B54" + brightRed: "#F03E5F" + brightGreen: "#69BFB7" + brightYellow: "#E49C89" + brightBlue: "#FFFFFF" + brightMagenta: "#69BFB7" + brightCyan: "#E49C89" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.7 + black: 0 + red: 20.3 + green: 31.8 + yellow: 33.1 + blue: 106.7 + magenta: 31.8 + cyan: 33.1 + white: 81.7 + brightBlack: 10.9 + brightRed: 36.6 + brightGreen: 58.8 + brightYellow: 57.1 + brightBlue: 106.7 + brightMagenta: 58.8 + brightCyan: 57.1 + brightWhite: 106.7 diff --git a/themes/dare-light.yaml b/themes/dare-light.yaml new file mode 100644 index 00000000..39ad1a7b --- /dev/null +++ b/themes/dare-light.yaml @@ -0,0 +1,49 @@ +name: "dare-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#6E7A87" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#3A8881" + yellow: "#D15736" + blue: "#6E7A87" + magenta: "#3A8881" + cyan: "#D15736" + white: "#7B8793" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#69BFB7" + brightYellow: "#E49C89" + brightBlue: "#A5ADB6" + brightMagenta: "#69BFB7" + brightCyan: "#E49C89" + brightWhite: "#A5ADB6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 70.4 + black: 0 + red: 80.3 + green: 68.6 + yellow: 67.4 + blue: 70.4 + magenta: 68.6 + cyan: 67.4 + white: 64.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 42.2 + brightYellow: 43.8 + brightBlue: 44.8 + brightMagenta: 42.2 + brightCyan: 43.8 + brightWhite: 44.8 diff --git a/themes/dare.yaml b/themes/dare.yaml new file mode 100644 index 00000000..64a723b4 --- /dev/null +++ b/themes/dare.yaml @@ -0,0 +1,49 @@ +name: "dare" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#32373D" + fg: "#C0CCDB" + black: "#3D444B" + red: "#BA0E2E" + green: "#3A8881" + yellow: "#D15736" + blue: "#FFFFFF" + magenta: "#3A8881" + cyan: "#D15736" + white: "#D0D9E4" + brightBlack: "#606A75" + brightRed: "#F03E5F" + brightGreen: "#69BFB7" + brightYellow: "#E49C89" + brightBlue: "#FFFFFF" + brightMagenta: "#69BFB7" + brightCyan: "#E49C89" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + contrast: + fg: 68 + black: 0 + red: 14.7 + green: 26.2 + yellow: 27.5 + blue: 101 + magenta: 26.2 + cyan: 27.5 + white: 76.1 + brightBlack: 17.4 + brightRed: 31 + brightGreen: 53.2 + brightYellow: 51.5 + brightBlue: 101 + brightMagenta: 53.2 + brightCyan: 51.5 + brightWhite: 101 diff --git a/themes/dark-abyss.yaml b/themes/dark-abyss.yaml new file mode 100644 index 00000000..98cabbee --- /dev/null +++ b/themes/dark-abyss.yaml @@ -0,0 +1,49 @@ +name: "Dark Abyss" +source: + marketplace_id: "MatongoMulindi.abyss" + version: "0.1.2" + installs: 10344 + author: "Matongo Mulindi" + repo: "https://github.com/mmatongo/vscode-abyss" + url: "https://marketplace.visualstudio.com/items?itemName=MatongoMulindi.abyss" +colors: + bg: "#151515" + fg: "#EEEEEE" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#CC72CC" + blue: "#6E6E6E" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#84DF44" + brightYellow: "#CC72CC" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 95.9 + black: 0 + red: 42.3 + green: 62.5 + yellow: 43.7 + blue: 25.7 + magenta: 45.3 + cyan: 54.8 + white: 83.2 + brightBlack: 35.7 + brightRed: 38.6 + brightGreen: 73.1 + brightYellow: 43.7 + brightBlue: 41.7 + brightMagenta: 12.9 + brightCyan: 54.8 + brightWhite: 83.2 diff --git a/themes/dark-amethyst.yaml b/themes/dark-amethyst.yaml new file mode 100644 index 00000000..36ce10ff --- /dev/null +++ b/themes/dark-amethyst.yaml @@ -0,0 +1,49 @@ +name: "Dark-amethyst" +source: + marketplace_id: "Munz.dark-amethyst" + version: "1.1.0" + installs: 61 + author: "Munz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Munz.dark-amethyst" +colors: + bg: "#100319" + fg: "#DBDBDB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 310 + contrast: + fg: 84.6 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/dark-army.yaml b/themes/dark-army.yaml new file mode 100644 index 00000000..07bb0295 --- /dev/null +++ b/themes/dark-army.yaml @@ -0,0 +1,49 @@ +name: "Dark_Army" +source: + marketplace_id: "BhaskarNeogi.dark-army" + version: "0.1.0" + installs: 498 + author: "Bhaskar Neogi" + repo: "https://github.com/Ellipse404/Dark-Army-Theme[VS Code]" + url: "https://marketplace.visualstudio.com/items?itemName=BhaskarNeogi.dark-army" +colors: + bg: "#1B1A1A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#C4C416" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#56DBCF" + brightBlack: "#C08686" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#E0E02B" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.1 + black: 0 + red: 26.4 + green: 52.6 + yellow: 66.1 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 71.7 + brightBlack: 43.8 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 82.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.7 diff --git a/themes/dark-aura.yaml b/themes/dark-aura.yaml new file mode 100644 index 00000000..5d1bf519 --- /dev/null +++ b/themes/dark-aura.yaml @@ -0,0 +1,49 @@ +name: "Dark Aura" +source: + marketplace_id: "Furqan.dark-aura-theme" + version: "1.0.0" + installs: 847 + author: "Furqan" + repo: "https://github.com/furqanistic/darkaura" + url: "https://marketplace.visualstudio.com/items?itemName=Furqan.dark-aura-theme" +colors: + bg: "#0A0A0F" + fg: "#E8E8F0" + black: "#2A2A3E" + red: "#FF6B6B" + green: "#51FA7B" + yellow: "#FFD93D" + blue: "#74C0FC" + magenta: "#D0BFFF" + cyan: "#00FFFF" + white: "#E8E8F0" + brightBlack: "#5A5A7A" + brightRed: "#FFA8A8" + brightGreen: "#8CFF8C" + brightYellow: "#FFE66D" + brightBlue: "#A4CAFE" + brightMagenta: "#E5D5FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 285 + contrast: + fg: 93.1 + black: 0 + red: 48.9 + green: 85.8 + yellow: 85.1 + blue: 64.6 + magenta: 73.3 + cyan: 92 + white: 93.1 + brightBlack: 19.1 + brightRed: 68.1 + brightGreen: 91.7 + brightYellow: 91.5 + brightBlue: 72.8 + brightMagenta: 85.2 + brightCyan: 93.8 + brightWhite: 107.7 diff --git a/themes/dark-black-developer.yaml b/themes/dark-black-developer.yaml new file mode 100644 index 00000000..4ee7ba23 --- /dev/null +++ b/themes/dark-black-developer.yaml @@ -0,0 +1,49 @@ +name: "Dark Black Developer" +source: + marketplace_id: "Harshil-Kaneria.dark-black-developer" + version: "0.0.2" + installs: 1402 + author: "Harshil-Kaneria" + repo: "https://github.com/Harshil-Kaneria/VS-Code-Dark-Black-Developer-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Harshil-Kaneria.dark-black-developer" +colors: + bg: "#090717" + fg: "#D4D4D4" + black: "#BC6666" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C08F8F" + brightBlack: "#A5A5A5" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#BC9393" +meta: + mode: "dark" + accent: "pink" + hue: 288 + contrast: + fg: 80.3 + black: 34.4 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 48.2 + brightBlack: 53.4 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 49.1 diff --git a/themes/dark-blue-theme.yaml b/themes/dark-blue-theme.yaml new file mode 100644 index 00000000..453ab4d3 --- /dev/null +++ b/themes/dark-blue-theme.yaml @@ -0,0 +1,49 @@ +name: "Dark Blue Theme" +source: + marketplace_id: "ceciljacob.overcast-code-theme" + version: "1.1.0" + installs: 768 + author: "Cecil Jacob" + repo: "https://github.com/ceciljacob/overcast-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ceciljacob.overcast-code-theme" +colors: + bg: "#081620" + fg: "#F6FAFD" + black: "#020202" + red: "#C45E04" + green: "#80A28E" + yellow: "#F4DB60" + blue: "#76ABDC" + magenta: "#B68DB2" + cyan: "#56B8C8" + white: "#EFEFEF" + brightBlack: "#424242" + brightRed: "#C45E04" + brightGreen: "#80A28E" + brightYellow: "#F4DB60" + brightBlue: "#76ABDC" + brightMagenta: "#B68DB2" + brightCyan: "#56B8C8" + brightWhite: "#FEFEFE" +meta: + mode: "dark" + accent: "yellow" + hue: 241 + contrast: + fg: 103.3 + black: 0 + red: 32.2 + green: 47 + yellow: 84 + blue: 53.4 + magenta: 46.8 + cyan: 55.9 + white: 96.6 + brightBlack: 8.3 + brightRed: 32.2 + brightGreen: 47 + brightYellow: 84 + brightBlue: 53.4 + brightMagenta: 46.8 + brightCyan: 55.9 + brightWhite: 106.4 diff --git a/themes/dark-bqueiroz.yaml b/themes/dark-bqueiroz.yaml new file mode 100644 index 00000000..1c92badc --- /dev/null +++ b/themes/dark-bqueiroz.yaml @@ -0,0 +1,49 @@ +name: "dark-bqueiroz" +source: + marketplace_id: "dark-bqueiroz.dark-bqueiroz" + version: "0.0.11" + installs: 2402 + author: "dark-bqueiroz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dark-bqueiroz.dark-bqueiroz" +colors: + bg: "#020006" + fg: "#CBF0FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#242EC8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: 303 + contrast: + fg: 94.2 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 12.5 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/dark-brown-theme.yaml b/themes/dark-brown-theme.yaml new file mode 100644 index 00000000..58d1d76d --- /dev/null +++ b/themes/dark-brown-theme.yaml @@ -0,0 +1,49 @@ +name: "Dark Brown Theme" +source: + marketplace_id: "ceciljacob.overcast-code-theme" + version: "1.1.0" + installs: 768 + author: "Cecil Jacob" + repo: "https://github.com/ceciljacob/overcast-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ceciljacob.overcast-code-theme" +colors: + bg: "#180F08" + fg: "#FCFAF6" + black: "#020202" + red: "#C45E04" + green: "#80A28E" + yellow: "#F4DB60" + blue: "#76ABDC" + magenta: "#B68DB2" + cyan: "#56B8C8" + white: "#EFEFEF" + brightBlack: "#424242" + brightRed: "#C45E04" + brightGreen: "#80A28E" + brightYellow: "#F4DB60" + brightBlue: "#76ABDC" + brightMagenta: "#B68DB2" + brightCyan: "#56B8C8" + brightWhite: "#FEFEFE" +meta: + mode: "dark" + accent: "yellow" + hue: 59 + contrast: + fg: 104.1 + black: 0 + red: 32.5 + green: 47.3 + yellow: 84.3 + blue: 53.7 + magenta: 47.1 + cyan: 56.2 + white: 96.9 + brightBlack: 8.6 + brightRed: 32.5 + brightGreen: 47.3 + brightYellow: 84.3 + brightBlue: 53.7 + brightMagenta: 47.1 + brightCyan: 56.2 + brightWhite: 106.7 diff --git a/themes/dark-brown.yaml b/themes/dark-brown.yaml new file mode 100644 index 00000000..706d8292 --- /dev/null +++ b/themes/dark-brown.yaml @@ -0,0 +1,49 @@ +name: "Dark Brown" +source: + marketplace_id: "blono.dark-brown" + version: "0.0.1" + installs: 4045 + author: "blono" + repo: "https://github.com/blono/vscode-theme-dark-brown" + url: "https://marketplace.visualstudio.com/items?itemName=blono.dark-brown" +colors: + bg: "#202020" + fg: "#DDDDDD" + black: "#1B1B1B" + red: "#EE6767" + green: "#9A4D24" + yellow: "#C49B3D" + blue: "#E8B77B" + magenta: "#9A4D24" + cyan: "#E8B77B" + white: "#C0C0C0" + brightBlack: "#2D2D2D" + brightRed: "#F694FF" + brightGreen: "#9A4D24" + brightYellow: "#C49B3D" + brightBlue: "#E8B77B" + brightMagenta: "#9A4D24" + brightCyan: "#E8B77B" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 83.9 + black: 0 + red: 42.3 + green: 19.9 + yellow: 49.3 + blue: 66.4 + magenta: 19.9 + cyan: 66.4 + white: 66.5 + brightBlack: 0 + brightRed: 62.3 + brightGreen: 19.9 + brightYellow: 49.3 + brightBlue: 66.4 + brightMagenta: 19.9 + brightCyan: 66.4 + brightWhite: 83.9 diff --git a/themes/dark-chai.yaml b/themes/dark-chai.yaml new file mode 100644 index 00000000..774583f7 --- /dev/null +++ b/themes/dark-chai.yaml @@ -0,0 +1,49 @@ +name: "Dark Chai" +source: + marketplace_id: "hiteshchoudharycode.chai-theme" + version: "0.2.0" + installs: 167423 + author: "hitesh choudhary" + repo: "https://github.com/hiteshchoudhary/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hiteshchoudharycode.chai-theme" +colors: + bg: "#010107" + fg: "#BECFDA" + black: "#28353E" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#AEC3D0" + brightBlack: "#475E6C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#BECFDA" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 75.9 + black: 0 + red: 41.5 + green: 78 + yellow: 68 + blue: 53 + magenta: 46.6 + cyan: 71.5 + white: 68.5 + brightBlack: 18.5 + brightRed: 46.8 + brightGreen: 80.2 + brightYellow: 54.9 + brightBlue: 58.3 + brightMagenta: 59 + brightCyan: 74.9 + brightWhite: 75.9 diff --git a/themes/dark-clean.yaml b/themes/dark-clean.yaml new file mode 100644 index 00000000..73580865 --- /dev/null +++ b/themes/dark-clean.yaml @@ -0,0 +1,49 @@ +name: "Dark Clean" +source: + marketplace_id: "Veccy-vec.cleardarktheme" + version: "1.1.2" + installs: 827 + author: "Veccy" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Veccy-vec.cleardarktheme" +colors: + bg: "#060606" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/dark-code-fork.yaml b/themes/dark-code-fork.yaml new file mode 100644 index 00000000..4ecdfbe7 --- /dev/null +++ b/themes/dark-code-fork.yaml @@ -0,0 +1,49 @@ +name: "Dark Code - Fork" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29903 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" +colors: + bg: "#000000" + fg: "#539BCF" + black: "#5A5A5A" + red: "#6D1F1F" + green: "#075637" + yellow: "#5C5C0D" + blue: "#1D4168" + magenta: "#5E205E" + cyan: "#0C5B6F" + white: "#AB8C8C" + brightBlack: "#666666" + brightRed: "#7B2A2A" + brightGreen: "#126242" + brightYellow: "#51511A" + brightBlue: "#245284" + brightMagenta: "#683868" + brightCyan: "#196D82" + brightWhite: "#807F7F" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 45 + black: 18.1 + red: 7.6 + green: 12.7 + yellow: 17.8 + blue: 8.5 + magenta: 0 + cyan: 15.9 + white: 44.3 + brightBlack: 23 + brightRed: 11.1 + brightGreen: 16.8 + brightYellow: 13.7 + brightBlue: 14.6 + brightMagenta: 12.1 + brightCyan: 22.6 + brightWhite: 34.4 diff --git a/themes/dark-codely-theme.yaml b/themes/dark-codely-theme.yaml new file mode 100644 index 00000000..59e0527e --- /dev/null +++ b/themes/dark-codely-theme.yaml @@ -0,0 +1,49 @@ +name: "dark.codely-theme" +source: + marketplace_id: "codely.dark-codely-theme" + version: "0.0.1" + installs: 39 + author: "Codely" + repo: "https://github.com/CodelyTV/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=codely.dark-codely-theme" +colors: + bg: "#1E1E1E" + fg: "#EBDBB2" + black: "#000000" + red: "#FB5245" + green: "#B8BB26" + yellow: "#FAC149" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EBDBB2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#B8BB26" + brightYellow: "#F5F543" + brightBlue: "#95B7F7" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 83.6 + black: 0 + red: 40.9 + green: 60.3 + yellow: 72.7 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 83.6 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 60.3 + brightYellow: 94.8 + brightBlue: 61.3 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/dark-coffee.yaml b/themes/dark-coffee.yaml new file mode 100644 index 00000000..01bf6e44 --- /dev/null +++ b/themes/dark-coffee.yaml @@ -0,0 +1,49 @@ +name: "Dark Coffee" +source: + marketplace_id: "sentientcoffee.dark-coffee-theme" + version: "0.0.40" + installs: 1397 + author: "sentientcoffee" + repo: "https://github.com/SentientCoffee/DarkCoffeeTheme_VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=sentientcoffee.dark-coffee-theme" +colors: + bg: "#151515" + fg: "#D4D4D4" + black: "#1A1A1A" + red: "#993333" + green: "#339919" + yellow: "#B29933" + blue: "#194DB2" + magenta: "#B23399" + cyan: "#19B2CC" + white: "#B4B4B4" + brightBlack: "#4D4D4D" + brightRed: "#E64D4D" + brightGreen: "#33E64D" + brightYellow: "#E6CC4D" + brightBlue: "#3366E6" + brightMagenta: "#E64DCC" + brightCyan: "#4DE6E6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 79.7 + black: 0 + red: 16.7 + green: 37 + yellow: 47.2 + blue: 15.3 + magenta: 24.6 + cyan: 52 + white: 61 + brightBlack: 12.3 + brightRed: 36.4 + brightGreen: 73.2 + brightYellow: 75.1 + brightBlue: 26.8 + brightMagenta: 41.2 + brightCyan: 78.4 + brightWhite: 107.1 diff --git a/themes/dark-color-theme.yaml b/themes/dark-color-theme.yaml new file mode 100644 index 00000000..aa0fffd2 --- /dev/null +++ b/themes/dark-color-theme.yaml @@ -0,0 +1,49 @@ +name: "dark-color-theme" +source: + marketplace_id: "wavebeem.theme-unoduetre" + version: "5.11.1" + installs: 4290 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/vscode-theme-unoduetre" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" +colors: + bg: "#333333" + fg: "#E6E6E6" + black: "#333333" + red: "#ED817D" + green: "#88E29B" + yellow: "#EEC7A0" + blue: "#AFA0EE" + magenta: "#EFA3E2" + cyan: "#86E9E7" + white: "#F0F0F0" + brightBlack: "#333333" + brightRed: "#ED817D" + brightGreen: "#88E29B" + brightYellow: "#EEC7A0" + brightBlue: "#AFA0EE" + brightMagenta: "#EFA3E2" + brightCyan: "#86E9E7" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.8 + black: 0 + red: 45.4 + green: 71.4 + yellow: 70.9 + blue: 50.7 + magenta: 60.4 + cyan: 77.6 + white: 92.2 + brightBlack: 0 + brightRed: 45.4 + brightGreen: 71.4 + brightYellow: 70.9 + brightBlue: 50.7 + brightMagenta: 60.4 + brightCyan: 77.6 + brightWhite: 92.2 diff --git a/themes/dark-cool-theme.yaml b/themes/dark-cool-theme.yaml new file mode 100644 index 00000000..370a29dd --- /dev/null +++ b/themes/dark-cool-theme.yaml @@ -0,0 +1,49 @@ +name: "Dark cool theme" +source: + marketplace_id: "emintoklu.dark-cool-theme" + version: "0.1.2" + installs: 212 + author: "Emin Toklu" + repo: "https://github.com/emintokluu/codefor-green-theme" + url: "https://marketplace.visualstudio.com/items?itemName=emintoklu.dark-cool-theme" +colors: + bg: "#0E0E13" + fg: "#B5B0D9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 61.7 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/dark-decay.yaml b/themes/dark-decay.yaml new file mode 100644 index 00000000..5176778a --- /dev/null +++ b/themes/dark-decay.yaml @@ -0,0 +1,49 @@ +name: "Dark Decay" +source: + marketplace_id: "nishantg96.dark-decay-pro" + version: "1.0.0" + installs: 299 + author: "Nishant Gajjar" + repo: "https://github.com/nishantg96/Dark-Decay-Pro-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=nishantg96.dark-decay-pro" +colors: + bg: "#101419" + fg: "#B6BECA" + black: "#384148" + red: "#E05F65" + green: "#78DBA9" + yellow: "#F1CF8A" + blue: "#70A5EB" + magenta: "#815A9C" + cyan: "#74BEE9" + white: "#DEE1E6" + brightBlack: "#666666" + brightRed: "#E5646A" + brightGreen: "#94F7C5" + brightYellow: "#F5F543" + brightBlue: "#75AAF0" + brightMagenta: "#CB8FF3" + brightCyan: "#79C3EE" + brightWhite: "#E3E6EB" +meta: + mode: "dark" + accent: "green" + hue: 254 + contrast: + fg: 66.3 + black: 7.7 + red: 39.1 + green: 72.6 + yellow: 79.3 + blue: 51.6 + magenta: 24.2 + cyan: 62 + white: 87.6 + brightBlack: 22.3 + brightRed: 41.3 + brightGreen: 89.3 + brightYellow: 95.9 + brightBlue: 54.2 + brightMagenta: 54.3 + brightCyan: 64.8 + brightWhite: 90.8 diff --git a/themes/dark-discord-vscode.yaml b/themes/dark-discord-vscode.yaml new file mode 100644 index 00000000..3f4a0dfb --- /dev/null +++ b/themes/dark-discord-vscode.yaml @@ -0,0 +1,49 @@ +name: "Dark Discord VSCode" +source: + marketplace_id: "akis.dark-discord-vscode" + version: "2.0.3" + installs: 2730 + author: "akisblack" + repo: "https://github.com/akisblack/dark-discord-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=akis.dark-discord-vscode" +colors: + bg: "#141414" + fg: "#B6B6B6" + black: "#868686" + red: "#FF5470" + green: "#33D057" + yellow: "#E1C542" + blue: "#469DF1" + magenta: "#E557F9" + cyan: "#39CDE2" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#FF718A" + brightGreen: "#67FF8A" + brightYellow: "#FFE05B" + brightBlue: "#74BCFF" + brightMagenta: "#EC84FF" + brightCyan: "#74F2FF" + brightWhite: "#D9E0EE" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 62.2 + black: 36.9 + red: 44.1 + green: 62.5 + yellow: 71.4 + blue: 46.7 + magenta: 45.7 + cyan: 65.8 + white: 79.8 + brightBlack: 56.1 + brightRed: 50.5 + brightGreen: 89 + brightYellow: 87.9 + brightBlue: 62.5 + brightMagenta: 57.3 + brightCyan: 87.3 + brightWhite: 86.9 diff --git a/themes/dark-dust-pro.yaml b/themes/dark-dust-pro.yaml new file mode 100644 index 00000000..1460acc1 --- /dev/null +++ b/themes/dark-dust-pro.yaml @@ -0,0 +1,49 @@ +name: "Dark Dust Pro" +source: + marketplace_id: "snelusha.dark-dust" + version: "1.0.0" + installs: 725 + author: "snelusha" + repo: "https://github.com/SNelusha/dark-dust-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=snelusha.dark-dust" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#14C159" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 33.5 + green: 57.2 + yellow: 45.4 + blue: 46.5 + magenta: 35.9 + cyan: 49.3 + white: 87.4 + brightBlack: 12.3 + brightRed: 42.9 + brightGreen: 73.6 + brightYellow: 51.5 + brightBlue: 60.5 + brightMagenta: 47.1 + brightCyan: 64.6 + brightWhite: 79.8 diff --git a/themes/dark-edit.yaml b/themes/dark-edit.yaml new file mode 100644 index 00000000..81786971 --- /dev/null +++ b/themes/dark-edit.yaml @@ -0,0 +1,49 @@ +name: "Dark Edit+" +source: + marketplace_id: "9K14.EditPlusDark" + version: "1.0.3" + installs: 322 + author: "Eberk9" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=9K14.EditPlusDark" +colors: + bg: "#111010" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/dark-flow.yaml b/themes/dark-flow.yaml new file mode 100644 index 00000000..c42267c4 --- /dev/null +++ b/themes/dark-flow.yaml @@ -0,0 +1,49 @@ +name: "dark-flow" +source: + marketplace_id: "MauroBalades.dark-flow-vscode" + version: "1.0.1" + installs: 260 + author: "Mauro Balades" + repo: "https://github.com/dark-flow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MauroBalades.dark-flow-vscode" +colors: + bg: "#2C303A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 268 + contrast: + fg: 75.4 + black: 0 + red: 22.6 + green: 48.9 + yellow: 81.5 + blue: 23.3 + magenta: 25.6 + cyan: 43.4 + white: 85.9 + brightBlack: 17.9 + brightRed: 34.4 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.9 + brightMagenta: 41.3 + brightCyan: 51.3 + brightWhite: 85.9 diff --git a/themes/dark-frost-midnight.yaml b/themes/dark-frost-midnight.yaml new file mode 100644 index 00000000..bc0753e4 --- /dev/null +++ b/themes/dark-frost-midnight.yaml @@ -0,0 +1,49 @@ +name: "Dark Frost Midnight" +source: + marketplace_id: "sprovo.dark-frost" + version: "2.0.0" + installs: 2470 + author: "Sandrico Provo" + repo: "https://github.com/sandricoprovo/dark-frost-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sprovo.dark-frost" +colors: + bg: "#272629" + fg: "#DDDDDD" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 82.9 + black: 24.3 + red: 41.8 + green: 63.7 + yellow: 76.8 + blue: 53.8 + magenta: 51.6 + cyan: 76.1 + white: 104.7 + brightBlack: 24.3 + brightRed: 41.8 + brightGreen: 82 + brightYellow: 76.8 + brightBlue: 53.8 + brightMagenta: 51.6 + brightCyan: 76.1 + brightWhite: 104.7 diff --git a/themes/dark-frost.yaml b/themes/dark-frost.yaml new file mode 100644 index 00000000..6e011a85 --- /dev/null +++ b/themes/dark-frost.yaml @@ -0,0 +1,49 @@ +name: "Dark Frost" +source: + marketplace_id: "sprovo.dark-frost" + version: "2.0.0" + installs: 2470 + author: "Sandrico Provo" + repo: "https://github.com/sandricoprovo/dark-frost-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sprovo.dark-frost" +colors: + bg: "#202733" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 261 + contrast: + fg: 69.1 + black: 24.2 + red: 41.8 + green: 63.6 + yellow: 76.7 + blue: 53.7 + magenta: 51.5 + cyan: 76 + white: 104.7 + brightBlack: 24.2 + brightRed: 41.8 + brightGreen: 82 + brightYellow: 76.7 + brightBlue: 53.7 + brightMagenta: 51.5 + brightCyan: 76 + brightWhite: 104.7 diff --git a/themes/dark-fury.yaml b/themes/dark-fury.yaml new file mode 100644 index 00000000..34e4fb18 --- /dev/null +++ b/themes/dark-fury.yaml @@ -0,0 +1,49 @@ +name: "Dark Fury" +source: + marketplace_id: "alive-ninja.dark-fury-theme" + version: "1.0.13" + installs: 152 + author: "alive ninja" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=alive-ninja.dark-fury-theme" +colors: + bg: "#000000" + fg: "#666666" + black: "#222222" + red: "#B38080" + green: "#80B380" + yellow: "#B3B380" + blue: "#8080B3" + magenta: "#B380B3" + cyan: "#80B3B3" + white: "#B3B3B3" + brightBlack: "#222222" + brightRed: "#B38080" + brightGreen: "#80B380" + brightYellow: "#B3B380" + brightBlue: "#8080B3" + brightMagenta: "#B380B3" + brightCyan: "#80B3B3" + brightWhite: "#B3B3B3" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 23 + black: 0 + red: 41.1 + green: 54.4 + yellow: 59.5 + blue: 37 + magenta: 43.2 + cyan: 56.2 + white: 61.2 + brightBlack: 0 + brightRed: 41.1 + brightGreen: 54.4 + brightYellow: 59.5 + brightBlue: 37 + brightMagenta: 43.2 + brightCyan: 56.2 + brightWhite: 61.2 diff --git a/themes/dark-future-cyberpunk-2077.yaml b/themes/dark-future-cyberpunk-2077.yaml new file mode 100644 index 00000000..b2e3ddf8 --- /dev/null +++ b/themes/dark-future-cyberpunk-2077.yaml @@ -0,0 +1,49 @@ +name: "Dark Future Cyberpunk 2077" +source: + marketplace_id: "SashaPetrenko.dark-future" + version: "0.0.17" + installs: 2064 + author: "Sasha Petrenko" + repo: "https://github.com/AP6YC/dark-future" + url: "https://marketplace.visualstudio.com/items?itemName=SashaPetrenko.dark-future" +colors: + bg: "#101116" + fg: "#00D4B1" + black: "#10D4B0" + red: "#940303" + green: "#0059FF" + yellow: "#1A1B03" + blue: "#004CF1" + magenta: "#94058A" + cyan: "#029790" + white: "#311B92" + brightBlack: "#02ADF1" + brightRed: "#BE0000" + brightGreen: "#00FF9C" + brightYellow: "#D0F30C" + brightBlue: "#00A2FF" + brightMagenta: "#E215D6" + brightCyan: "#08E1D7" + brightWhite: "#2EB8F8" +meta: + mode: "dark" + accent: "pink" + hue: 276 + contrast: + fg: 66.5 + black: 66.5 + red: 12.8 + green: 25.4 + yellow: 0 + blue: 21.1 + magenta: 16.1 + cyan: 38.2 + white: 0 + brightBlack: 52.3 + brightRed: 21.5 + brightGreen: 87.7 + brightYellow: 90.1 + brightBlue: 48.8 + brightMagenta: 36.5 + brightCyan: 74.5 + brightWhite: 57.7 diff --git a/themes/dark-green-energy.yaml b/themes/dark-green-energy.yaml new file mode 100644 index 00000000..e28cd8b3 --- /dev/null +++ b/themes/dark-green-energy.yaml @@ -0,0 +1,49 @@ +name: "Dark&Green energy" +source: + marketplace_id: "Rambo1558.dark-and-green-my-first-theme" + version: "2.3.0" + installs: 149 + author: "Rambo1558" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Rambo1558.dark-and-green-my-first-theme" +colors: + bg: "#222222" + fg: "#00C0A5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 54.8 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 78.1 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/dark-green-jungle.yaml b/themes/dark-green-jungle.yaml new file mode 100644 index 00000000..ccdd2eae --- /dev/null +++ b/themes/dark-green-jungle.yaml @@ -0,0 +1,49 @@ +name: "Dark Green Jungle" +source: + marketplace_id: "moondevaa.DarkGreenJungle" + version: "0.4.3" + installs: 29594 + author: "moondevaa" + repo: "https://github.com/AaBbdev29/Dark-Green-Jungle" + url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.DarkGreenJungle" +colors: + bg: "#18211E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 173 + contrast: + fg: 78.5 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21 + brightRed: 37.6 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/dark-green-minimalist-theme.yaml b/themes/dark-green-minimalist-theme.yaml new file mode 100644 index 00000000..f2bf03b4 --- /dev/null +++ b/themes/dark-green-minimalist-theme.yaml @@ -0,0 +1,49 @@ +name: "Dark Green Minimalist Theme" +source: + marketplace_id: "drifaro-theme.dark-green-minimalist-theme" + version: "0.0.1" + installs: 2308 + author: "drifaro-theme" + repo: "https://github.com/drifaro/theme-vscode-dark-green-minimalist" + url: "https://marketplace.visualstudio.com/items?itemName=drifaro-theme.dark-green-minimalist-theme" +colors: + bg: "#000000" + fg: "#8E90FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C4C4C4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFAFA" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 48.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 70.9 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 105.3 diff --git a/themes/dark-green.yaml b/themes/dark-green.yaml new file mode 100644 index 00000000..6f592977 --- /dev/null +++ b/themes/dark-green.yaml @@ -0,0 +1,49 @@ +name: "Dark-Green" +source: + marketplace_id: "bakrimoharram.shades-of-green" + version: "0.0.1" + installs: 2132 + author: "bakrimoharram" + repo: "https://github.com/bakrimoharram/shades-of-green" + url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.shades-of-green" +colors: + bg: "#0E2810" + fg: "#BC7B7B" + black: "#000000" + red: "#CD3131" + green: "#00B26E" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A7EEAE" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#4AE8A9" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#D9FFDD" +meta: + mode: "dark" + accent: "pink" + hue: 145 + contrast: + fg: 38.2 + black: 0 + red: 25.1 + green: 46.6 + yellow: 84 + blue: 25.8 + magenta: 28.1 + cyan: 45.9 + white: 83.6 + brightBlack: 20.4 + brightRed: 36.9 + brightGreen: 75 + brightYellow: 94 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 98.8 diff --git a/themes/dark-grey-theme.yaml b/themes/dark-grey-theme.yaml new file mode 100644 index 00000000..e7000469 --- /dev/null +++ b/themes/dark-grey-theme.yaml @@ -0,0 +1,49 @@ +name: "Dark Grey Theme" +source: + marketplace_id: "DarkMannn.dark-grey-theme" + version: "0.0.1" + installs: 816 + author: "DarkMannn" + repo: "https://github.com/DarkMannn/dark-grey-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-grey-theme" +colors: + bg: "#000000" + fg: "#808080" + black: "#343434" + red: "#FF8080" + green: "#33D057" + yellow: "#EDED88" + blue: "#7895C7" + magenta: "#E557F9" + cyan: "#50D2F7" + white: "#DDDDDD" + brightBlack: "#808080" + brightRed: "#E64444" + brightGreen: "#67FF8A" + brightYellow: "#D9CE9B" + brightBlue: "#74BCFF" + brightMagenta: "#EC84FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 34.8 + black: 0 + red: 54.7 + green: 63.2 + yellow: 92.7 + blue: 44.7 + magenta: 46.4 + cyan: 70.7 + white: 86 + brightBlack: 34.8 + brightRed: 35.8 + brightGreen: 89.7 + brightYellow: 76.5 + brightBlue: 63.2 + brightMagenta: 58.1 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/dark-ink-and-red-accents.yaml b/themes/dark-ink-and-red-accents.yaml new file mode 100644 index 00000000..e5e32a74 --- /dev/null +++ b/themes/dark-ink-and-red-accents.yaml @@ -0,0 +1,49 @@ +name: "Dark Ink And Red Accents" +source: + marketplace_id: "DarkMannn.dark-ink-theme" + version: "0.0.9" + installs: 412 + author: "DarkMannn" + repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" +colors: + bg: "#0E0E0E" + fg: "#717C8E" + black: "#444444" + red: "#D66B6B" + green: "#33D057" + yellow: "#EDED88" + blue: "#717C8E" + magenta: "#E557F9" + cyan: "#50D2F7" + white: "#D8D8D8" + brightBlack: "#666666" + brightRed: "#FF7966" + brightGreen: "#67FF8A" + brightYellow: "#D9CE9B" + brightBlue: "#8FABD3" + brightMagenta: "#EC84FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 32.2 + black: 9.5 + red: 40.3 + green: 62.9 + yellow: 92.4 + blue: 32.2 + magenta: 46.1 + cyan: 70.4 + white: 82.6 + brightBlack: 22.7 + brightRed: 52 + brightGreen: 89.4 + brightYellow: 76.2 + brightBlue: 55.4 + brightMagenta: 57.8 + brightCyan: 91.9 + brightWhite: 107.6 diff --git a/themes/dark-ink-brighter.yaml b/themes/dark-ink-brighter.yaml new file mode 100644 index 00000000..c120e0d3 --- /dev/null +++ b/themes/dark-ink-brighter.yaml @@ -0,0 +1,49 @@ +name: "Dark Ink Brighter" +source: + marketplace_id: "DarkMannn.dark-ink-theme" + version: "0.0.9" + installs: 412 + author: "DarkMannn" + repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" +colors: + bg: "#1E1E1E" + fg: "#818C9E" + black: "#555555" + red: "#FF8080" + green: "#33D057" + yellow: "#EDED88" + blue: "#818C9E" + magenta: "#E557F9" + cyan: "#50D2F7" + white: "#E8E8E8" + brightBlack: "#777777" + brightRed: "#E64444" + brightGreen: "#67FF8A" + brightYellow: "#D9CE9B" + brightBlue: "#9FBBE3" + brightMagenta: "#EC84FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 38.4 + black: 14.3 + red: 52.9 + green: 61.4 + yellow: 90.9 + blue: 38.4 + magenta: 44.6 + cyan: 68.8 + white: 91.1 + brightBlack: 28.7 + brightRed: 33.9 + brightGreen: 87.9 + brightYellow: 74.6 + brightBlue: 62.7 + brightMagenta: 56.2 + brightCyan: 90.3 + brightWhite: 106 diff --git a/themes/dark-ink-brightest.yaml b/themes/dark-ink-brightest.yaml new file mode 100644 index 00000000..a8416a2b --- /dev/null +++ b/themes/dark-ink-brightest.yaml @@ -0,0 +1,49 @@ +name: "Dark Ink Brightest" +source: + marketplace_id: "DarkMannn.dark-ink-theme" + version: "0.0.9" + installs: 412 + author: "DarkMannn" + repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" +colors: + bg: "#1E1E1E" + fg: "#919CAE" + black: "#555555" + red: "#FF8080" + green: "#33D057" + yellow: "#EDED88" + blue: "#919CAE" + magenta: "#E557F9" + cyan: "#50D2F7" + white: "#F8F8F8" + brightBlack: "#777777" + brightRed: "#E64444" + brightGreen: "#67FF8A" + brightYellow: "#D9CE9B" + brightBlue: "#AFCBF3" + brightMagenta: "#EC84FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 46.5 + black: 14.3 + red: 52.9 + green: 61.4 + yellow: 90.9 + blue: 46.5 + magenta: 44.6 + cyan: 68.8 + white: 101.4 + brightBlack: 28.7 + brightRed: 33.9 + brightGreen: 87.9 + brightYellow: 74.6 + brightBlue: 72 + brightMagenta: 56.2 + brightCyan: 90.3 + brightWhite: 106 diff --git a/themes/dark-ink-lighter.yaml b/themes/dark-ink-lighter.yaml new file mode 100644 index 00000000..a8d8a14d --- /dev/null +++ b/themes/dark-ink-lighter.yaml @@ -0,0 +1,49 @@ +name: "Dark Ink Lighter" +source: + marketplace_id: "DarkMannn.dark-ink-theme" + version: "0.0.9" + installs: 412 + author: "DarkMannn" + repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" +colors: + bg: "#FDFDFD" + fg: "#3D5981" + black: "#000000" + red: "#FF8080" + green: "#33D057" + yellow: "#CDCD74" + blue: "#3D5981" + magenta: "#E557F9" + cyan: "#50D2F7" + white: "#FDFDFD" + brightBlack: "#7D7D7D" + brightRed: "#E64444" + brightGreen: "#67FF8A" + brightYellow: "#D9CE9B" + brightBlue: "#3F79CB" + brightMagenta: "#EC84FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 83.4 + black: 104.8 + red: 46.1 + green: 37.9 + yellow: 28.1 + blue: 83.4 + magenta: 54.2 + cyan: 30.8 + white: 0 + brightBlack: 67.1 + brightRed: 64.7 + brightGreen: 12.9 + brightYellow: 25.3 + brightBlue: 68.8 + brightMagenta: 42.9 + brightCyan: 10.6 + brightWhite: 0 diff --git a/themes/dark-ink.yaml b/themes/dark-ink.yaml new file mode 100644 index 00000000..5bd69084 --- /dev/null +++ b/themes/dark-ink.yaml @@ -0,0 +1,49 @@ +name: "Dark Ink" +source: + marketplace_id: "DarkMannn.dark-ink-theme" + version: "0.0.9" + installs: 412 + author: "DarkMannn" + repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" +colors: + bg: "#0E0E0E" + fg: "#717C8E" + black: "#444444" + red: "#FF8080" + green: "#33D057" + yellow: "#EDED88" + blue: "#717C8E" + magenta: "#E557F9" + cyan: "#50D2F7" + white: "#D8D8D8" + brightBlack: "#666666" + brightRed: "#E64444" + brightGreen: "#67FF8A" + brightYellow: "#D9CE9B" + brightBlue: "#8FABD3" + brightMagenta: "#EC84FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 32.2 + black: 9.5 + red: 54.4 + green: 62.9 + yellow: 92.4 + blue: 32.2 + magenta: 46.1 + cyan: 70.4 + white: 82.6 + brightBlack: 22.7 + brightRed: 35.5 + brightGreen: 89.4 + brightYellow: 76.2 + brightBlue: 55.4 + brightMagenta: 57.8 + brightCyan: 91.9 + brightWhite: 107.6 diff --git a/themes/dark-jade.yaml b/themes/dark-jade.yaml new file mode 100644 index 00000000..43d9eda7 --- /dev/null +++ b/themes/dark-jade.yaml @@ -0,0 +1,49 @@ +name: "Dark Jade" +source: + marketplace_id: "edca-jadetheme.jade" + version: "0.0.2" + installs: 1054 + author: "ErikDCAlmeida" + repo: "https://github.com/ErikDCAlmeida/jade-theme" + url: "https://marketplace.visualstudio.com/items?itemName=edca-jadetheme.jade" +colors: + bg: "#000000" + fg: "#A7A7A7" + black: "#262626" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 54.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/dark-lavender-black.yaml b/themes/dark-lavender-black.yaml new file mode 100644 index 00000000..a02629e2 --- /dev/null +++ b/themes/dark-lavender-black.yaml @@ -0,0 +1,49 @@ +name: "Dark Lavender (Black)" +source: + marketplace_id: "t7yang.dark-lavender" + version: "6.2.1" + installs: 8090 + author: "t7yang" + repo: "https://github.com/t7yang/dark-lavender" + url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" +colors: + bg: "#010109" + fg: "#CFD8DC" + black: "#263238" + red: "#D32F2F" + green: "#388E3C" + yellow: "#FBC02D" + blue: "#0D47A1" + magenta: "#C2185B" + cyan: "#0097A7" + white: "#607D8B" + brightBlack: "#455A64" + brightRed: "#F44336" + brightGreen: "#4CAF50" + brightYellow: "#FFEB3B" + brightBlue: "#2196F3" + brightMagenta: "#E91E63" + brightCyan: "#00BCD4" + brightWhite: "#90A4AE" +meta: + mode: "dark" + accent: "red" + hue: 276 + contrast: + fg: 82 + black: 0 + red: 28.8 + green: 33.7 + yellow: 74.1 + blue: 13.2 + magenta: 24.3 + cyan: 39.6 + white: 31.4 + brightBlack: 16.9 + brightRed: 38.7 + brightGreen: 48.6 + brightYellow: 93.4 + brightBlue: 44 + brightMagenta: 33.6 + brightCyan: 57.5 + brightWhite: 51.3 diff --git a/themes/dark-lavender-soft.yaml b/themes/dark-lavender-soft.yaml new file mode 100644 index 00000000..e20cf57a --- /dev/null +++ b/themes/dark-lavender-soft.yaml @@ -0,0 +1,49 @@ +name: "Dark Lavender (Soft)" +source: + marketplace_id: "t7yang.dark-lavender" + version: "6.2.1" + installs: 8090 + author: "t7yang" + repo: "https://github.com/t7yang/dark-lavender" + url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" +colors: + bg: "#13151E" + fg: "#CFD8DC" + black: "#263238" + red: "#D32F2F" + green: "#388E3C" + yellow: "#FBC02D" + blue: "#0D47A1" + magenta: "#C2185B" + cyan: "#0097A7" + white: "#607D8B" + brightBlack: "#455A64" + brightRed: "#F44336" + brightGreen: "#4CAF50" + brightYellow: "#FFEB3B" + brightBlue: "#2196F3" + brightMagenta: "#E91E63" + brightCyan: "#00BCD4" + brightWhite: "#90A4AE" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 81.1 + black: 0 + red: 28 + green: 32.8 + yellow: 73.3 + blue: 12.4 + magenta: 23.5 + cyan: 38.8 + white: 30.5 + brightBlack: 16 + brightRed: 37.9 + brightGreen: 47.7 + brightYellow: 92.5 + brightBlue: 43.2 + brightMagenta: 32.8 + brightCyan: 56.6 + brightWhite: 50.4 diff --git a/themes/dark-lavender-tailwind-soft.yaml b/themes/dark-lavender-tailwind-soft.yaml new file mode 100644 index 00000000..aa33d12d --- /dev/null +++ b/themes/dark-lavender-tailwind-soft.yaml @@ -0,0 +1,49 @@ +name: "Dark Lavender (Tailwind Soft)" +source: + marketplace_id: "t7yang.dark-lavender" + version: "6.2.1" + installs: 8090 + author: "t7yang" + repo: "https://github.com/t7yang/dark-lavender" + url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" +colors: + bg: "#13151E" + fg: "#F1F5F9" + black: "#0F172A" + red: "#BE123C" + green: "#047857" + yellow: "#A16207" + blue: "#1E3A8A" + magenta: "#BE185D" + cyan: "#0E7490" + white: "#64748B" + brightBlack: "#334155" + brightRed: "#F43F5E" + brightGreen: "#10B981" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#EC4899" + brightCyan: "#06B6D4" + brightWhite: "#CBD5E1" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 100.1 + black: 0 + red: 21.8 + green: 24.1 + yellow: 27.1 + blue: 8.1 + magenta: 22.7 + cyan: 24.7 + white: 27.8 + brightBlack: 7.7 + brightRed: 38 + brightGreen: 52 + brightYellow: 65.2 + brightBlue: 36.9 + brightMagenta: 39.1 + brightCyan: 54 + brightWhite: 79.5 diff --git a/themes/dark-lavender-tailwind.yaml b/themes/dark-lavender-tailwind.yaml new file mode 100644 index 00000000..02b883c5 --- /dev/null +++ b/themes/dark-lavender-tailwind.yaml @@ -0,0 +1,49 @@ +name: "Dark Lavender (Tailwind)" +source: + marketplace_id: "t7yang.dark-lavender" + version: "6.2.1" + installs: 8090 + author: "t7yang" + repo: "https://github.com/t7yang/dark-lavender" + url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" +colors: + bg: "#07090F" + fg: "#F1F5F9" + black: "#0F172A" + red: "#BE123C" + green: "#047857" + yellow: "#A16207" + blue: "#1E3A8A" + magenta: "#BE185D" + cyan: "#0E7490" + white: "#64748B" + brightBlack: "#334155" + brightRed: "#F43F5E" + brightGreen: "#10B981" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#EC4899" + brightCyan: "#06B6D4" + brightWhite: "#CBD5E1" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 100.8 + black: 0 + red: 22.5 + green: 24.8 + yellow: 27.8 + blue: 8.8 + magenta: 23.4 + cyan: 25.4 + white: 28.5 + brightBlack: 8.4 + brightRed: 38.7 + brightGreen: 52.7 + brightYellow: 66 + brightBlue: 37.7 + brightMagenta: 39.9 + brightCyan: 54.8 + brightWhite: 80.3 diff --git a/themes/dark-lavender.yaml b/themes/dark-lavender.yaml new file mode 100644 index 00000000..2f1bce55 --- /dev/null +++ b/themes/dark-lavender.yaml @@ -0,0 +1,49 @@ +name: "Dark Lavender" +source: + marketplace_id: "t7yang.dark-lavender" + version: "6.2.1" + installs: 8090 + author: "t7yang" + repo: "https://github.com/t7yang/dark-lavender" + url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" +colors: + bg: "#07090F" + fg: "#CFD8DC" + black: "#263238" + red: "#D32F2F" + green: "#388E3C" + yellow: "#FBC02D" + blue: "#0D47A1" + magenta: "#C2185B" + cyan: "#0097A7" + white: "#607D8B" + brightBlack: "#455A64" + brightRed: "#F44336" + brightGreen: "#4CAF50" + brightYellow: "#FFEB3B" + brightBlue: "#2196F3" + brightMagenta: "#E91E63" + brightCyan: "#00BCD4" + brightWhite: "#90A4AE" +meta: + mode: "dark" + accent: "red" + hue: 268 + contrast: + fg: 81.9 + black: 0 + red: 28.7 + green: 33.6 + yellow: 74 + blue: 13.1 + magenta: 24.2 + cyan: 39.5 + white: 31.3 + brightBlack: 16.8 + brightRed: 38.6 + brightGreen: 48.5 + brightYellow: 93.2 + brightBlue: 43.9 + brightMagenta: 33.5 + brightCyan: 57.4 + brightWhite: 51.2 diff --git a/themes/dark-legibility.yaml b/themes/dark-legibility.yaml new file mode 100644 index 00000000..cf04131b --- /dev/null +++ b/themes/dark-legibility.yaml @@ -0,0 +1,49 @@ +name: "Dark legibility" +source: + marketplace_id: "Jamers.jamestheme" + version: "0.0.4" + installs: 12 + author: "Jamers" + repo: "https://github.com/kokjp1/jamestheme" + url: "https://marketplace.visualstudio.com/items?itemName=Jamers.jamestheme" +colors: + bg: "#21202E" + fg: "#DEDEDE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 288 + contrast: + fg: 84.3 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.1 + magenta: 28.4 + cyan: 46.2 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.2 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.7 + brightMagenta: 44 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/dark-leocode-theme.yaml b/themes/dark-leocode-theme.yaml new file mode 100644 index 00000000..a39e468f --- /dev/null +++ b/themes/dark-leocode-theme.yaml @@ -0,0 +1,49 @@ +name: "dark-leocode-theme" +source: + marketplace_id: "LeonardoEspinosaCassales.dark-leocode-theme" + version: "0.0.1" + installs: 42 + author: "Leonardo Espinosa Cassales" + repo: "https://github.com/leointhecode/lionleo-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LeonardoEspinosaCassales.dark-leocode-theme" +colors: + bg: "#262424" + fg: "#BEB9B9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 62.4 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.8 + blue: 25.6 + magenta: 27.9 + cyan: 45.7 + white: 88.2 + brightBlack: 20.2 + brightRed: 36.7 + brightGreen: 61.7 + brightYellow: 93.8 + brightBlue: 38.2 + brightMagenta: 43.6 + brightCyan: 53.6 + brightWhite: 88.2 diff --git a/themes/dark-lime-flat.yaml b/themes/dark-lime-flat.yaml new file mode 100644 index 00000000..03270872 --- /dev/null +++ b/themes/dark-lime-flat.yaml @@ -0,0 +1,49 @@ +name: "Dark Lime Flat" +source: + marketplace_id: "Ayrz.vscode-theme-ayrz-arcticfox" + version: "1.0.2" + installs: 212 + author: "Ayrz" + repo: "https://github.com/ayrzDev/ArcticFox-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ayrz.vscode-theme-ayrz-arcticfox" +colors: + bg: "#202226" + fg: "#E1E4E8" + black: "#3F4451" + red: "#E05561" + green: "#98C379" + yellow: "#F69D50" + blue: "#4AA5F0" + magenta: "#C792EA" + cyan: "#82AAFF" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.8 + black: 7.4 + red: 35.3 + green: 60.9 + yellow: 58.3 + blue: 48.3 + magenta: 52.4 + cyan: 54.5 + white: 89.2 + brightBlack: 14.1 + brightRed: 44.7 + brightGreen: 75.4 + brightYellow: 59.8 + brightBlue: 62.3 + brightMagenta: 48.9 + brightCyan: 66.4 + brightWhite: 81.6 diff --git a/themes/dark-magic-dracula.yaml b/themes/dark-magic-dracula.yaml new file mode 100644 index 00000000..63fc1c11 --- /dev/null +++ b/themes/dark-magic-dracula.yaml @@ -0,0 +1,49 @@ +name: "Dark Magic Dracula" +source: + marketplace_id: "DavidMorais.dark-magic-themes" + version: "0.3.1" + installs: 47308 + author: "David Morais" + repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" +colors: + bg: "#282A36" + fg: "#CCE3F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 83.8 + black: 0 + red: 23.8 + green: 50 + yellow: 82.7 + blue: 24.5 + magenta: 26.8 + cyan: 44.6 + white: 87.1 + brightBlack: 19.1 + brightRed: 35.6 + brightGreen: 60.6 + brightYellow: 92.7 + brightBlue: 37 + brightMagenta: 42.4 + brightCyan: 52.4 + brightWhite: 87.1 diff --git a/themes/dark-magic-frankenstein.yaml b/themes/dark-magic-frankenstein.yaml new file mode 100644 index 00000000..a3997746 --- /dev/null +++ b/themes/dark-magic-frankenstein.yaml @@ -0,0 +1,49 @@ +name: "Dark Magic Frankenstein" +source: + marketplace_id: "DavidMorais.dark-magic-themes" + version: "0.3.1" + installs: 47308 + author: "David Morais" + repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" +colors: + bg: "#0F1715" + fg: "#B6E8CF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 178 + contrast: + fg: 85.1 + black: 0 + red: 26.9 + green: 53.1 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.2 diff --git a/themes/dark-magic-light.yaml b/themes/dark-magic-light.yaml new file mode 100644 index 00000000..4f9856f9 --- /dev/null +++ b/themes/dark-magic-light.yaml @@ -0,0 +1,49 @@ +name: "Dark Magic - Light" +source: + marketplace_id: "DavidMorais.dark-magic-themes" + version: "0.3.1" + installs: 47308 + author: "David Morais" + repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" +colors: + bg: "#EAEAFF" + fg: "#3E3F54" + black: "#111111" + red: "#D90000" + green: "#00FF28" + yellow: "#CBA402" + blue: "#009FFF" + magenta: "#FF003C" + cyan: "#00FFFF" + white: "#E3E3FF" + brightBlack: "#333333" + brightRed: "#FF0000" + brightGreen: "#00FF80" + brightYellow: "#FFCE00" + brightBlue: "#004BFF" + brightMagenta: "#FF006B" + brightCyan: "#00FFFF" + brightWhite: "#F0F0FF" +meta: + mode: "light" + accent: "green" + hue: 286 + contrast: + fg: 82.4 + black: 93.9 + red: 62 + green: 0 + yellow: 35 + blue: 42.2 + magenta: 52.3 + cyan: 0 + white: 0 + brightBlack: 87.2 + brightRed: 52.6 + brightGreen: 0 + brightYellow: 11.3 + brightBlue: 67.4 + brightMagenta: 51.5 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/dark-magic-night.yaml b/themes/dark-magic-night.yaml new file mode 100644 index 00000000..02933ae8 --- /dev/null +++ b/themes/dark-magic-night.yaml @@ -0,0 +1,49 @@ +name: "Dark Magic Night" +source: + marketplace_id: "DavidMorais.dark-magic-themes" + version: "0.3.1" + installs: 47308 + author: "David Morais" + repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" +colors: + bg: "#111111" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75.2 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/dark-magic-nord.yaml b/themes/dark-magic-nord.yaml new file mode 100644 index 00000000..573538df --- /dev/null +++ b/themes/dark-magic-nord.yaml @@ -0,0 +1,49 @@ +name: "Dark Magic Nord" +source: + marketplace_id: "DavidMorais.dark-magic-themes" + version: "0.3.1" + installs: 47308 + author: "David Morais" + repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" +colors: + bg: "#2E3440" + fg: "#D8DEE9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 80.3 + black: 0 + red: 21.6 + green: 47.9 + yellow: 80.5 + blue: 22.4 + magenta: 24.7 + cyan: 42.5 + white: 84.9 + brightBlack: 17 + brightRed: 33.5 + brightGreen: 58.5 + brightYellow: 90.6 + brightBlue: 34.9 + brightMagenta: 40.3 + brightCyan: 50.3 + brightWhite: 84.9 diff --git a/themes/dark-magic-tokyo.yaml b/themes/dark-magic-tokyo.yaml new file mode 100644 index 00000000..3bffe650 --- /dev/null +++ b/themes/dark-magic-tokyo.yaml @@ -0,0 +1,49 @@ +name: "Dark Magic Tokyo" +source: + marketplace_id: "DavidMorais.dark-magic-themes" + version: "0.3.1" + installs: 47308 + author: "David Morais" + repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" +colors: + bg: "#16161E" + fg: "#787C99" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 32.6 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/dark-magic.yaml b/themes/dark-magic.yaml new file mode 100644 index 00000000..ae0eda87 --- /dev/null +++ b/themes/dark-magic.yaml @@ -0,0 +1,49 @@ +name: "Dark Magic" +source: + marketplace_id: "DavidMorais.dark-magic-themes" + version: "0.3.1" + installs: 47308 + author: "David Morais" + repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" +colors: + bg: "#0F0F17" + fg: "#BBCCEE" + black: "#111111" + red: "#BB3232" + green: "#00FFAB" + yellow: "#FBDE66" + blue: "#4C89AE" + magenta: "#E04C6F" + cyan: "#3D9393" + white: "#D4DBE8" + brightBlack: "#333333" + brightRed: "#BB3232" + brightGreen: "#66EEAA" + brightYellow: "#FFD31B" + brightBlue: "#4F6BAE" + brightMagenta: "#C3115C" + brightCyan: "#52F3F3" + brightWhite: "#111111" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 74.9 + black: 0 + red: 23.6 + green: 88.3 + yellow: 86.9 + blue: 35.7 + magenta: 36.1 + cyan: 37.6 + white: 84.1 + brightBlack: 0 + brightRed: 23.6 + brightGreen: 81.3 + brightYellow: 82.1 + brightBlue: 25.7 + brightMagenta: 23.9 + brightCyan: 86.1 + brightWhite: 0 diff --git a/themes/dark-marine.yaml b/themes/dark-marine.yaml new file mode 100644 index 00000000..5653dff9 --- /dev/null +++ b/themes/dark-marine.yaml @@ -0,0 +1,49 @@ +name: "Dark Marine" +source: + marketplace_id: "MustafizKaifee.dark-marine" + version: "1.0.2" + installs: 38 + author: "Mustafiz Kaifee" + repo: "https://github.com/Mustafiz04/vs-colour-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MustafizKaifee.dark-marine" +colors: + bg: "#20303E" + fg: "#E5D0AC" + black: "#20303E" + red: "#C14600" + green: "#3D8D7A" + yellow: "#FF9D23" + blue: "#3674B5" + magenta: "#C14600" + cyan: "#3D8D7A" + white: "#FEF9E1" + brightBlack: "#20303E" + brightRed: "#C14600" + brightGreen: "#3D8D7A" + brightYellow: "#FF9D23" + brightBlue: "#3674B5" + brightMagenta: "#C14600" + brightCyan: "#3D8D7A" + brightWhite: "#FEF9E1" +meta: + mode: "dark" + accent: "orange" + hue: 246 + contrast: + fg: 74.8 + black: 0 + red: 23 + green: 30 + yellow: 57.3 + blue: 23.5 + magenta: 23 + cyan: 30 + white: 98.8 + brightBlack: 0 + brightRed: 23 + brightGreen: 30 + brightYellow: 57.3 + brightBlue: 23.5 + brightMagenta: 23 + brightCyan: 30 + brightWhite: 98.8 diff --git a/themes/dark-matter-code-neptune-medium.yaml b/themes/dark-matter-code-neptune-medium.yaml new file mode 100644 index 00000000..121e3dcd --- /dev/null +++ b/themes/dark-matter-code-neptune-medium.yaml @@ -0,0 +1,49 @@ +name: "Dark Matter Code Neptune Medium" +source: + marketplace_id: "AmiraliBeigi.dark-matter-code" + version: "0.0.6" + installs: 97 + author: "Amirali Beigi" + repo: "https://github.com/amiralibg/dark-coder-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AmiraliBeigi.dark-matter-code" +colors: + bg: "#1A1B26" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 78.9 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/dark-minimal-lime-theme.yaml b/themes/dark-minimal-lime-theme.yaml new file mode 100644 index 00000000..cc6c3c7b --- /dev/null +++ b/themes/dark-minimal-lime-theme.yaml @@ -0,0 +1,49 @@ +name: "Dark Minimal Lime Theme" +source: + marketplace_id: "BeanZ.dark-minimal-matte-theme" + version: "0.2.2" + installs: 557 + author: "BeanZ" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=BeanZ.dark-minimal-matte-theme" +colors: + bg: "#0A0A0A" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#CDFF42" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#67FF8A" + brightYellow: "#B9FF42" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 60.3 + black: 0 + red: 27.6 + green: 96.4 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 89.6 + brightYellow: 94.3 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/dark-minimal-theme-sm.yaml b/themes/dark-minimal-theme-sm.yaml new file mode 100644 index 00000000..660f6aa0 --- /dev/null +++ b/themes/dark-minimal-theme-sm.yaml @@ -0,0 +1,49 @@ +name: "Dark Minimal Theme(SM)" +source: + marketplace_id: "SIRILMP.dark-theme-sm" + version: "3.11.3" + installs: 21064 + author: "SIRIL M P" + repo: "https://github.com/sirilmp/dark-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" +colors: + bg: "#212733" + fg: "#D9D7CE" + black: "#343D4A" + red: "#F07178" + green: "#937DC2" + yellow: "#7FE9DE" + blue: "#36A3D9" + magenta: "#D4BFFF" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#CBE645" + brightYellow: "#FFDF80" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#A6FDE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 78.9 + black: 0 + red: 44.3 + green: 35.6 + yellow: 79.4 + blue: 44.5 + magenta: 70.7 + cyan: 78.6 + white: 69.5 + brightBlack: 20.6 + brightRed: 44.3 + brightGreen: 80.7 + brightYellow: 85.6 + brightBlue: 32.4 + brightMagenta: 55.2 + brightCyan: 92.3 + brightWhite: 104.6 diff --git a/themes/dark-mode-lover-wasp.yaml b/themes/dark-mode-lover-wasp.yaml new file mode 100644 index 00000000..65df7912 --- /dev/null +++ b/themes/dark-mode-lover-wasp.yaml @@ -0,0 +1,49 @@ +name: "Dark Mode Lover - Wasp" +source: + marketplace_id: "Lovervoid.dark-mode-lover" + version: "0.8.31" + installs: 25 + author: "Lovervoid" + repo: "https://github.com/Kailuss/dark-mode-lover" + url: "https://marketplace.visualstudio.com/items?itemName=Lovervoid.dark-mode-lover" +colors: + bg: "#1C1D26" + fg: "#969FA3" + black: "#010103" + red: "#ED8274" + green: "#88DD77" + yellow: "#FF9900" + blue: "#3399FF" + magenta: "#DABAFA" + cyan: "#70E1CC" + white: "#ABB2BF" + brightBlack: "#4C4C64" + brightRed: "#EE6677" + brightGreen: "#99CC66" + brightYellow: "#EECC66" + brightBlue: "#66BBFF" + brightMagenta: "#DD77AA" + brightCyan: "#99EEDD" + brightWhite: "#CCCAC2" +meta: + mode: "dark" + accent: "indigo" + hue: 280 + contrast: + fg: 47.7 + black: 0 + red: 49.6 + green: 72.2 + yellow: 58.9 + blue: 44.6 + magenta: 70.8 + cyan: 75.3 + white: 58.6 + brightBlack: 11.7 + brightRed: 42.9 + brightGreen: 65.3 + brightYellow: 75.7 + brightBlue: 60.2 + brightMagenta: 45.3 + brightCyan: 85.1 + brightWhite: 72.6 diff --git a/themes/dark-mode-lover.yaml b/themes/dark-mode-lover.yaml new file mode 100644 index 00000000..b7ac81c5 --- /dev/null +++ b/themes/dark-mode-lover.yaml @@ -0,0 +1,49 @@ +name: "Dark Mode Lover" +source: + marketplace_id: "Lovervoid.dark-mode-lover" + version: "0.8.31" + installs: 25 + author: "Lovervoid" + repo: "https://github.com/Kailuss/dark-mode-lover" + url: "https://marketplace.visualstudio.com/items?itemName=Lovervoid.dark-mode-lover" +colors: + bg: "#1C1D26" + fg: "#B1B2B4" + black: "#010103" + red: "#EE6666" + green: "#88DD77" + yellow: "#FFCC66" + blue: "#3399FF" + magenta: "#DDBBFF" + cyan: "#77DDCC" + white: "#CCCCBB" + brightBlack: "#222222" + brightRed: "#FF8888" + brightGreen: "#99DD88" + brightYellow: "#FFDD88" + brightBlue: "#66BBFF" + brightMagenta: "#FF77AA" + brightCyan: "#99FFDD" + brightWhite: "#EEEEDD" +meta: + mode: "dark" + accent: "indigo" + hue: 280 + contrast: + fg: 58.8 + black: 0 + red: 42.4 + green: 72.2 + yellow: 78.5 + blue: 44.6 + magenta: 71.9 + cyan: 73.7 + white: 73.2 + brightBlack: 0 + brightRed: 55.4 + brightGreen: 73.9 + brightYellow: 86.4 + brightBlue: 60.2 + brightMagenta: 52.1 + brightCyan: 93.6 + brightWhite: 94.2 diff --git a/themes/dark-mode-vs.yaml b/themes/dark-mode-vs.yaml new file mode 100644 index 00000000..88df60bb --- /dev/null +++ b/themes/dark-mode-vs.yaml @@ -0,0 +1,49 @@ +name: "Dark Mode VS" +source: + marketplace_id: "DarkModeVS.dark-mode-vs" + version: "1.3.0" + installs: 2689 + author: "Dark Mode VS" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=DarkModeVS.dark-mode-vs" +colors: + bg: "#000000" + fg: "#FFFF00" + black: "#201B2D" + red: "#FF79C6" + green: "#67E480" + yellow: "#A6B144" + blue: "#78D1E1" + magenta: "#FF00DD" + cyan: "#FF0000" + white: "#E1E1E1" + brightBlack: "#626483" + brightRed: "#ED4556" + brightGreen: "#00F769" + brightYellow: "#E7DE79" + brightBlue: "#78D1E1" + brightMagenta: "#988BC7" + brightCyan: "#A4FFFF" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 102.7 + black: 0 + red: 55.6 + green: 75.6 + yellow: 56.1 + blue: 71 + magenta: 43.8 + cyan: 37.5 + white: 88.5 + brightBlack: 23.2 + brightRed: 37.8 + brightGreen: 82.9 + brightYellow: 84.7 + brightBlue: 71 + brightMagenta: 44.3 + brightCyan: 97.8 + brightWhite: 102.8 diff --git a/themes/dark-mode.yaml b/themes/dark-mode.yaml new file mode 100644 index 00000000..5455228c --- /dev/null +++ b/themes/dark-mode.yaml @@ -0,0 +1,49 @@ +name: "Dark Mode" +source: + marketplace_id: "philsinatra.macos-dark-mode-theme" + version: "1.1.3" + installs: 60747 + author: "Phil Sinatra" + repo: "https://github.com/philsinatra/macos-dark-mode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=philsinatra.macos-dark-mode-theme" +colors: + bg: "#1E1E1E" + fg: "#FFFFFF" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FFC600" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FFC600" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 106 + black: 0 + red: 46.3 + green: 65.4 + yellow: 75.3 + blue: 37.9 + magenta: 63.5 + cyan: 91.9 + white: 106 + brightBlack: 13.8 + brightRed: 46.3 + brightGreen: 65.4 + brightYellow: 75.3 + brightBlue: 37.9 + brightMagenta: 63.5 + brightCyan: 91.9 + brightWhite: 0 diff --git a/themes/dark-modern-one-without-italics.yaml b/themes/dark-modern-one-without-italics.yaml new file mode 100644 index 00000000..9eb9427e --- /dev/null +++ b/themes/dark-modern-one-without-italics.yaml @@ -0,0 +1,49 @@ +name: "Dark Modern One without italics" +source: + marketplace_id: "nicolaerario.dark-modern-one" + version: "0.3.1" + installs: 3338 + author: "Nicola Erario" + repo: "https://github.com/nicolaerario/dark-modern-one" + url: "https://marketplace.visualstudio.com/items?itemName=nicolaerario.dark-modern-one" +colors: + bg: "#1C2026" + fg: "#CCCCCC" + black: "#3F4451" + red: "#E05561" + green: "#66BB6A" + yellow: "#E5C07B" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#FFDF5D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 258 + contrast: + fg: 73.6 + black: 7.8 + red: 35.6 + green: 53.6 + yellow: 69.5 + blue: 48.6 + magenta: 38 + cyan: 51.4 + white: 82 + brightBlack: 14.4 + brightRed: 45 + brightGreen: 75.7 + brightYellow: 86.2 + brightBlue: 62.7 + brightMagenta: 49.2 + brightCyan: 66.7 + brightWhite: 89.6 diff --git a/themes/dark-modern-yuriyprogg.yaml b/themes/dark-modern-yuriyprogg.yaml new file mode 100644 index 00000000..86d7737a --- /dev/null +++ b/themes/dark-modern-yuriyprogg.yaml @@ -0,0 +1,49 @@ +name: "Dark Modern+ | yuriyProgg" +source: + marketplace_id: "yuriyProgg.yuriyprogg-theme" + version: "1.0.0" + installs: 114 + author: "YuriyProgg" + repo: "https://github.com/yuriyProgg/yuriyprogg-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yuriyProgg.yuriyprogg-theme" +colors: + bg: "#1E1E1E" + fg: "#9D9D9D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 47.4 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/dark-molokai.yaml b/themes/dark-molokai.yaml new file mode 100644 index 00000000..d32087a8 --- /dev/null +++ b/themes/dark-molokai.yaml @@ -0,0 +1,49 @@ +name: "Dark (molokai)" +source: + marketplace_id: "nonylene.dark-molokai-theme" + version: "1.0.10" + installs: 33282 + author: "nonylene" + repo: "https://github.com/nonylene/vscode-dark-molokai-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nonylene.dark-molokai-theme" +colors: + bg: "#1B1D1E" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.3 + black: 0 + red: 23.9 + green: 52.4 + yellow: 57 + blue: 34 + magenta: 31.5 + cyan: 49.8 + white: 87.8 + brightBlack: 21.4 + brightRed: 36.6 + brightGreen: 76.3 + brightYellow: 83.2 + brightBlue: 49.2 + brightMagenta: 45.9 + brightCyan: 72.8 + brightWhite: 101.3 diff --git a/themes/dark-mono.yaml b/themes/dark-mono.yaml new file mode 100644 index 00000000..6692a7f8 --- /dev/null +++ b/themes/dark-mono.yaml @@ -0,0 +1,49 @@ +name: "Dark Mono" +source: + marketplace_id: "leonardoleal202.dark-mono" + version: "1.1.0" + installs: 6602 + author: "leonardoleal202" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=leonardoleal202.dark-mono" +colors: + bg: "#181818" + fg: "#D0D1D0" + black: "#AE9CFE" + red: "#CD3131" + green: "#70CDCA" + yellow: "#EBC88D" + blue: "#1F61C2" + magenta: "#E193DA" + cyan: "#70CDCA" + white: "#D0D1D0" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#70CDCA" + brightYellow: "#EBC88D" + brightBlue: "#3D8BFD" + brightMagenta: "#DB52CF" + brightCyan: "#70CDCA" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.4 + black: 55 + red: 26.6 + green: 66.4 + yellow: 75.1 + blue: 21.6 + magenta: 57.1 + cyan: 66.4 + white: 77.4 + brightBlack: 21.9 + brightRed: 38.5 + brightGreen: 66.4 + brightYellow: 75.1 + brightBlue: 40.4 + brightMagenta: 39.6 + brightCyan: 66.4 + brightWhite: 89.9 diff --git a/themes/dark-monokai.yaml b/themes/dark-monokai.yaml new file mode 100644 index 00000000..57feeb6d --- /dev/null +++ b/themes/dark-monokai.yaml @@ -0,0 +1,49 @@ +name: "Dark monokai" +source: + marketplace_id: "yuriyProgg.yuriyprogg-theme" + version: "1.0.0" + installs: 114 + author: "YuriyProgg" + repo: "https://github.com/yuriyProgg/yuriyprogg-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yuriyProgg.yuriyprogg-theme" +colors: + bg: "#2A2724" + fg: "#B8B8B8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.7 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.1 + magenta: 27.4 + cyan: 45.2 + white: 87.7 + brightBlack: 19.7 + brightRed: 36.2 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.7 + brightMagenta: 43 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/dark-mute.yaml b/themes/dark-mute.yaml new file mode 100644 index 00000000..6789738e --- /dev/null +++ b/themes/dark-mute.yaml @@ -0,0 +1,49 @@ +name: "dark-mute" +source: + marketplace_id: "EugeneGhanizadehKhoub.dark-mute" + version: "1.0.0" + installs: 309 + author: "Eugene Ghanizadeh Khoub" + repo: "https://github.com/loreanvictor/vscode-darkmute-theme" + url: "https://marketplace.visualstudio.com/items?itemName=EugeneGhanizadehKhoub.dark-mute" +colors: + bg: "#000000" + fg: "#B3B3B3" + black: "#000000" + red: "#7D1935" + green: "#6D8B74" + yellow: "#FDC57B" + blue: "#27496D" + magenta: "#570A57" + cyan: "#00ADB5" + white: "#D0D0D0" + brightBlack: "#1A1A1A" + brightRed: "#B42B51" + brightGreen: "#83BD75" + brightYellow: "#F9D276" + brightBlue: "#0C7B93" + brightMagenta: "#A91079" + brightCyan: "#94F3E4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 61.2 + black: 0 + red: 10 + green: 36.6 + yellow: 77.5 + blue: 11.1 + magenta: 0 + cyan: 49.4 + white: 78.1 + brightBlack: 0 + brightRed: 22.4 + brightGreen: 58.7 + brightYellow: 82.1 + brightBlue: 28.1 + brightMagenta: 19.9 + brightCyan: 89.2 + brightWhite: 107.9 diff --git a/themes/dark-nebula.yaml b/themes/dark-nebula.yaml new file mode 100644 index 00000000..c61f4991 --- /dev/null +++ b/themes/dark-nebula.yaml @@ -0,0 +1,49 @@ +name: "Dark Nebula" +source: + marketplace_id: "KaydenNolin.darknebula" + version: "0.0.1" + installs: 669 + author: "Nebula" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=KaydenNolin.darknebula" +colors: + bg: "#000000" + fg: "#C7C7C7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/dark-neon-theme-sm.yaml b/themes/dark-neon-theme-sm.yaml new file mode 100644 index 00000000..77ee4254 --- /dev/null +++ b/themes/dark-neon-theme-sm.yaml @@ -0,0 +1,49 @@ +name: "Dark Neon Theme(SM)" +source: + marketplace_id: "SIRILMP.dark-theme-sm" + version: "3.11.3" + installs: 21064 + author: "SIRIL M P" + repo: "https://github.com/sirilmp/dark-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" +colors: + bg: "#041C32" + fg: "#D6DEEB" + black: "#041C32" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 249 + contrast: + fg: 84.6 + black: 0 + red: 38.7 + green: 66.7 + yellow: 81.5 + blue: 55.3 + magenta: 53.2 + cyan: 59.1 + white: 106.3 + brightBlack: 15 + brightRed: 38.7 + brightGreen: 66.7 + brightYellow: 93.1 + brightBlue: 55.3 + brightMagenta: 53.2 + brightCyan: 73.4 + brightWhite: 106.3 diff --git a/themes/dark-night-pro.yaml b/themes/dark-night-pro.yaml new file mode 100644 index 00000000..9b1e5467 --- /dev/null +++ b/themes/dark-night-pro.yaml @@ -0,0 +1,49 @@ +name: "dark-night-pro" +source: + marketplace_id: "ErickSosa.dark-night-pro" + version: "1.0.4" + installs: 759 + author: "Erick Sosa" + repo: "https://github.com/buttercubz/dark-night-pro" + url: "https://marketplace.visualstudio.com/items?itemName=ErickSosa.dark-night-pro" +colors: + bg: "#181825" + fg: "#FFFFFF" + black: "#181825" + red: "#F60055" + green: "#06C993" + yellow: "#433047" + blue: "#F69154" + magenta: "#EC89CB" + cyan: "#00DDED" + white: "#FFFFFF" + brightBlack: "#3F3F54" + brightRed: "#F60055" + brightGreen: "#06C993" + brightYellow: "#7001B9" + brightBlue: "#F69154" + brightMagenta: "#EC89CB" + brightCyan: "#00DDED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 106.6 + black: 0 + red: 34.7 + green: 59.5 + yellow: 0 + blue: 55.7 + magenta: 55.1 + cyan: 72.9 + white: 106.6 + brightBlack: 7.5 + brightRed: 34.7 + brightGreen: 59.5 + brightYellow: 13.2 + brightBlue: 55.7 + brightMagenta: 55.1 + brightCyan: 72.9 + brightWhite: 106.6 diff --git a/themes/dark-night.yaml b/themes/dark-night.yaml new file mode 100644 index 00000000..fcf06248 --- /dev/null +++ b/themes/dark-night.yaml @@ -0,0 +1,49 @@ +name: "Dark Night" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157486 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" +colors: + bg: "#000000" + fg: "#B0B6BD" + black: "#34393E" + red: "#E61F44" + green: "#62C073" + yellow: "#43AAF9" + blue: "#43AAF9" + magenta: "#F75F8F" + cyan: "#B267E6" + white: "#B0B6BD" + brightBlack: "#454D54" + brightRed: "#E61F44" + brightGreen: "#B7F0E5" + brightYellow: "#A7D1F5" + brightBlue: "#A7D1F5" + brightMagenta: "#F75F8F" + brightCyan: "#D7C9F0" + brightWhite: "#B0B6BD" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 62.5 + black: 0 + red: 32.4 + green: 57.9 + yellow: 53 + blue: 53 + magenta: 45.9 + cyan: 39.4 + white: 62.5 + brightBlack: 12.7 + brightRed: 32.4 + brightGreen: 90.8 + brightYellow: 75.8 + brightBlue: 75.8 + brightMagenta: 45.9 + brightCyan: 77.6 + brightWhite: 62.5 diff --git a/themes/dark-ocean-sands.yaml b/themes/dark-ocean-sands.yaml new file mode 100644 index 00000000..7a929500 --- /dev/null +++ b/themes/dark-ocean-sands.yaml @@ -0,0 +1,49 @@ +name: "Dark Ocean Sands" +source: + marketplace_id: "laurentlahmy.dark-ocean-sands" + version: "0.0.5" + installs: 154 + author: "laurent lahmy" + repo: "https://github.com/laurentlahmy/tokyo-nights-dark-pro-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=laurentlahmy.dark-ocean-sands" +colors: + bg: "#0F121C" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 59.8 + black: 9.2 + red: 37.1 + green: 60.8 + yellow: 49 + blue: 50.1 + magenta: 39.4 + cyan: 52.9 + white: 91 + brightBlack: 15.9 + brightRed: 46.5 + brightGreen: 77.2 + brightYellow: 61.6 + brightBlue: 64.1 + brightMagenta: 50.7 + brightCyan: 68.2 + brightWhite: 83.4 diff --git a/themes/dark-ocean.yaml b/themes/dark-ocean.yaml new file mode 100644 index 00000000..9e3086bc --- /dev/null +++ b/themes/dark-ocean.yaml @@ -0,0 +1,49 @@ +name: "Dark Ocean" +source: + marketplace_id: "patricklopes33.theme-dark-ocean" + version: "1.0.7" + installs: 4533 + author: "patricklopes33" + repo: "https://github.com/patlopes/vscode-dark-ocean" + url: "https://marketplace.visualstudio.com/items?itemName=patricklopes33.theme-dark-ocean" +colors: + bg: "#100E16" + fg: "#E1E1E6" + black: "#201B2D" + red: "#FF4D4F" + green: "#67E480" + yellow: "#E7DE79" + blue: "#78D1E1" + magenta: "#988BC7" + cyan: "#A1EFE4" + white: "#E1E1E6" + brightBlack: "#626483" + brightRed: "#ED4556" + brightGreen: "#00F769" + brightYellow: "#E7DE79" + brightBlue: "#78D1E1" + brightMagenta: "#988BC7" + brightCyan: "#A4FFFF" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "green" + hue: 296 + contrast: + fg: 88.4 + black: 0 + red: 42.6 + green: 75.2 + yellow: 84.3 + blue: 70.6 + magenta: 43.9 + cyan: 87.9 + white: 88.4 + brightBlack: 22.8 + brightRed: 37.4 + brightGreen: 82.5 + brightYellow: 84.3 + brightBlue: 70.6 + brightMagenta: 43.9 + brightCyan: 97.4 + brightWhite: 102.4 diff --git a/themes/dark-ohnagi-2020.yaml b/themes/dark-ohnagi-2020.yaml new file mode 100644 index 00000000..83b6b927 --- /dev/null +++ b/themes/dark-ohnagi-2020.yaml @@ -0,0 +1,49 @@ +name: "dark-ohnagi-2020" +source: + marketplace_id: "koprodev.devpro" + version: "1.1.2" + installs: 729 + author: "koprodev" + repo: "https://github.com/koprodev/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=koprodev.devpro" +colors: + bg: "#2E323B" + fg: "#BBBBBB" + black: "#1E1E1E" + red: "#D16969" + green: "#608B4E" + yellow: "#D7BA7D" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#4EC9B0" + white: "#D4D4D4" + brightBlack: "#808080" + brightRed: "#D16969" + brightGreen: "#B5CEA8" + brightYellow: "#CE9178" + brightBlue: "#9CDCFE" + brightMagenta: "#C586C0" + brightCyan: "#4EC9B0" + brightWhite: "#808080" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 60.2 + black: 0 + red: 33.6 + green: 29.2 + yellow: 61.5 + blue: 40.4 + magenta: 42.7 + cyan: 57.4 + white: 74.9 + brightBlack: 29.2 + brightRed: 33.6 + brightGreen: 66.9 + brightYellow: 45 + brightBlue: 74.6 + brightMagenta: 42.7 + brightCyan: 57.4 + brightWhite: 29.2 diff --git a/themes/dark-orange.yaml b/themes/dark-orange.yaml new file mode 100644 index 00000000..574509aa --- /dev/null +++ b/themes/dark-orange.yaml @@ -0,0 +1,49 @@ +name: "Dark Orange" +source: + marketplace_id: "Ayrz.vscode-theme-ayrz-arcticfox" + version: "1.0.2" + installs: 212 + author: "Ayrz" + repo: "https://github.com/ayrzDev/ArcticFox-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ayrz.vscode-theme-ayrz-arcticfox" +colors: + bg: "#24292E" + fg: "#E1E4E8" + black: "#3F4451" + red: "#E05561" + green: "#98C379" + yellow: "#F69D50" + blue: "#4AA5F0" + magenta: "#C792EA" + cyan: "#82AAFF" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 248 + contrast: + fg: 86.7 + black: 0 + red: 34.2 + green: 59.8 + yellow: 57.2 + blue: 47.1 + magenta: 51.2 + cyan: 53.4 + white: 88.1 + brightBlack: 12.9 + brightRed: 43.6 + brightGreen: 74.3 + brightYellow: 58.7 + brightBlue: 61.2 + brightMagenta: 47.7 + brightCyan: 65.3 + brightWhite: 80.5 diff --git a/themes/dark-owl-darker.yaml b/themes/dark-owl-darker.yaml new file mode 100644 index 00000000..ce70a89a --- /dev/null +++ b/themes/dark-owl-darker.yaml @@ -0,0 +1,49 @@ +name: "Dark Owl Darker" +source: + marketplace_id: "hmseeb.dark-owl" + version: "2.2.6" + installs: 4451 + author: "hmseeb" + repo: "https://github.com/hmseeb/dark-owl" + url: "https://marketplace.visualstudio.com/items?itemName=hmseeb.dark-owl" +colors: + bg: "#011627" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 244 + contrast: + fg: 79 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/dark-pastel-pink.yaml b/themes/dark-pastel-pink.yaml new file mode 100644 index 00000000..ea4523df --- /dev/null +++ b/themes/dark-pastel-pink.yaml @@ -0,0 +1,49 @@ +name: "Dark Pastel Pink" +source: + marketplace_id: "Pand.dark-pastels" + version: "1.0.0" + installs: 211 + author: "Pand" + repo: "https://github.com/pandirel/dark-pastels" + url: "https://marketplace.visualstudio.com/items?itemName=Pand.dark-pastels" +colors: + bg: "#232527" + fg: "#E0E0E0" + black: "#232527" + red: "#FF6F91" + green: "#B2FF9E" + yellow: "#FFF9B1" + blue: "#A0C4FF" + magenta: "#FFB3C6" + cyan: "#94E8EE" + white: "#E0E0E0" + brightBlack: "#232527" + brightRed: "#FF6F91" + brightGreen: "#B2FF9E" + brightYellow: "#FFF9B1" + brightBlue: "#A0C4FF" + brightMagenta: "#FFB3C6" + brightCyan: "#94E8EE" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 85 + black: 0 + red: 48.2 + green: 92.4 + yellow: 99.1 + blue: 67.2 + magenta: 70.4 + cyan: 81.5 + white: 85 + brightBlack: 0 + brightRed: 48.2 + brightGreen: 92.4 + brightYellow: 99.1 + brightBlue: 67.2 + brightMagenta: 70.4 + brightCyan: 81.5 + brightWhite: 85 diff --git a/themes/dark-pastel.yaml b/themes/dark-pastel.yaml new file mode 100644 index 00000000..c7bbe715 --- /dev/null +++ b/themes/dark-pastel.yaml @@ -0,0 +1,49 @@ +name: "Dark Pastel" +source: + marketplace_id: "Pand.dark-pastels" + version: "1.0.0" + installs: 211 + author: "Pand" + repo: "https://github.com/pandirel/dark-pastels" + url: "https://marketplace.visualstudio.com/items?itemName=Pand.dark-pastels" +colors: + bg: "#232527" + fg: "#F09595" + black: "#232527" + red: "#B94E53" + green: "#70FFCF" + yellow: "#FDEBBA" + blue: "#508CC9" + magenta: "#DBABBC" + cyan: "#94E8EE" + white: "#AFB7BE" + brightBlack: "#232527" + brightRed: "#B94E53" + brightGreen: "#70FFCF" + brightYellow: "#FDEBBA" + brightBlue: "#508CC9" + brightMagenta: "#DBABBC" + brightCyan: "#94E8EE" + brightWhite: "#AFB7BE" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 55.7 + black: 0 + red: 25.4 + green: 89.4 + yellow: 92.6 + blue: 36 + magenta: 61.1 + cyan: 81.5 + white: 60 + brightBlack: 0 + brightRed: 25.4 + brightGreen: 89.4 + brightYellow: 92.6 + brightBlue: 36 + brightMagenta: 61.1 + brightCyan: 81.5 + brightWhite: 60 diff --git a/themes/dark-petrol-dev.yaml b/themes/dark-petrol-dev.yaml new file mode 100644 index 00000000..24316f49 --- /dev/null +++ b/themes/dark-petrol-dev.yaml @@ -0,0 +1,49 @@ +name: "Dark Petrol - Dev" +source: + marketplace_id: "ptrptrd.darkpetrol" + version: "0.1.3" + installs: 90 + author: "ptrptrd" + repo: "https://github.com/ptrptrd/dark-petrol-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ptrptrd.darkpetrol" +colors: + bg: "#141D1B" + fg: "#C5C8C6" + black: "#2B3E3B" + red: "#A54242" + green: "#28786E" + yellow: "#EB983E" + blue: "#5F819D" + magenta: "#85678F" + cyan: "#5E8D87" + white: "#C5C8C6" + brightBlack: "#536F6B" + brightRed: "#CC6666" + brightGreen: "#47C6B5" + brightYellow: "#D29656" + brightBlue: "#5F819D" + brightMagenta: "#85678F" + brightCyan: "#8ABEB7" + brightWhite: "#CFE3E0" +meta: + mode: "dark" + accent: "yellow" + hue: 180 + contrast: + fg: 71.4 + black: 0 + red: 20.7 + green: 24.5 + yellow: 55.4 + blue: 32 + magenta: 26.6 + cyan: 35.4 + white: 71.4 + brightBlack: 23.1 + brightRed: 35.9 + brightGreen: 60.1 + brightYellow: 50.7 + brightBlue: 32 + brightMagenta: 26.6 + brightCyan: 60.4 + brightWhite: 85.6 diff --git a/themes/dark-pie-deep-dark.yaml b/themes/dark-pie-deep-dark.yaml new file mode 100644 index 00000000..94eea883 --- /dev/null +++ b/themes/dark-pie-deep-dark.yaml @@ -0,0 +1,49 @@ +name: "Dark Pie - Deep dark" +source: + marketplace_id: "AT-mAh.dark-pie" + version: "1.0.24" + installs: 537 + author: "Abu Taher Muhammad" + repo: "https://github.com/abutahermuhammad/Dark-Pie" + url: "https://marketplace.visualstudio.com/items?itemName=AT-mAh.dark-pie" +colors: + bg: "#1A222E" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 258 + contrast: + fg: 58 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.3 + blue: 26.1 + magenta: 28.4 + cyan: 46.2 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.2 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.7 diff --git a/themes/dark-pink-theme.yaml b/themes/dark-pink-theme.yaml new file mode 100644 index 00000000..2190a322 --- /dev/null +++ b/themes/dark-pink-theme.yaml @@ -0,0 +1,49 @@ +name: "Dark Pink Theme" +source: + marketplace_id: "MartinaTorce.beautiful-theme" + version: "0.3.0" + installs: 5766 + author: "Martina Torcè" + repo: "https://github.com/martina-torce/vscode-theme-dp" + url: "https://marketplace.visualstudio.com/items?itemName=MartinaTorce.beautiful-theme" +colors: + bg: "#471F29" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 6 + contrast: + fg: 76.1 + black: 0 + red: 23.3 + green: 49.6 + yellow: 82.2 + blue: 24 + magenta: 26.4 + cyan: 44.2 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.2 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.6 + brightMagenta: 42 + brightCyan: 52 + brightWhite: 86.6 diff --git a/themes/dark-plus-chocolate.yaml b/themes/dark-plus-chocolate.yaml new file mode 100644 index 00000000..8c6435ee --- /dev/null +++ b/themes/dark-plus-chocolate.yaml @@ -0,0 +1,49 @@ +name: "Dark Plus Chocolate" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#160F0F" + fg: "#F0CD9E" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 18 + contrast: + fg: 79 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/dark-plus-moon-lite.yaml b/themes/dark-plus-moon-lite.yaml new file mode 100644 index 00000000..292ce4b3 --- /dev/null +++ b/themes/dark-plus-moon-lite.yaml @@ -0,0 +1,49 @@ +name: "dark Plus moon lite" +source: + marketplace_id: "moondevaa.darkplusmoonlite" + version: "0.8.7" + installs: 15869 + author: "moondevaa" + repo: "https://github.com/AaBbdev29/Darkplusmoonlite" + url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.darkplusmoonlite" +colors: + bg: "#171B22" + fg: "#C4B3E1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 64.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/dark-plus-oled-dim-100.yaml b/themes/dark-plus-oled-dim-100.yaml new file mode 100644 index 00000000..60329cc7 --- /dev/null +++ b/themes/dark-plus-oled-dim-100.yaml @@ -0,0 +1,49 @@ +name: "Dark Plus Oled Dim 100" +source: + marketplace_id: "WeiyuWang.dark-plus-oled" + version: "0.0.1" + installs: 2223 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/dark-plus-oled" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 40.3 + green: 68.3 + yellow: 83.1 + blue: 56.9 + magenta: 54.8 + cyan: 60.7 + white: 107.9 + brightBlack: 16.6 + brightRed: 40.3 + brightGreen: 68.3 + brightYellow: 94.7 + brightBlue: 56.9 + brightMagenta: 54.8 + brightCyan: 75 + brightWhite: 107.9 diff --git a/themes/dark-plus-oled-dim-75.yaml b/themes/dark-plus-oled-dim-75.yaml new file mode 100644 index 00000000..4efb8a77 --- /dev/null +++ b/themes/dark-plus-oled-dim-75.yaml @@ -0,0 +1,49 @@ +name: "Dark Plus Oled Dim 75" +source: + marketplace_id: "WeiyuWang.dark-plus-oled" + version: "0.0.1" + installs: 2223 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/dark-plus-oled" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" +colors: + bg: "#000000" + fg: "#9F9F9F" + black: "#00101D" + red: "#B33E3C" + green: "#19A352" + yellow: "#93AB5A" + blue: "#617FBF" + magenta: "#956DAF" + cyan: "#18957E" + white: "#BFBFBF" + brightBlack: "#414040" + brightRed: "#B33E3C" + brightGreen: "#19A352" + brightYellow: "#BFB06F" + brightBlue: "#617FBF" + brightMagenta: "#956DAF" + brightCyan: "#5FA497" + brightWhite: "#BFBFBF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 50.3 + black: 0 + red: 24.1 + green: 42.1 + yellow: 51.9 + blue: 34.8 + magenta: 33.4 + cyan: 37.3 + white: 68 + brightBlack: 8.5 + brightRed: 24.1 + brightGreen: 42.1 + brightYellow: 59.5 + brightBlue: 34.8 + brightMagenta: 33.4 + brightCyan: 46.6 + brightWhite: 68 diff --git a/themes/dark-plus-oled-dim-80.yaml b/themes/dark-plus-oled-dim-80.yaml new file mode 100644 index 00000000..dfdaaa9f --- /dev/null +++ b/themes/dark-plus-oled-dim-80.yaml @@ -0,0 +1,49 @@ +name: "Dark Plus Oled Dim 80" +source: + marketplace_id: "WeiyuWang.dark-plus-oled" + version: "0.0.1" + installs: 2223 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/dark-plus-oled" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" +colors: + bg: "#000000" + fg: "#A9A9A9" + black: "#00111F" + red: "#BF4240" + green: "#1BAE58" + yellow: "#9DB660" + blue: "#6888CC" + magenta: "#9F74BB" + cyan: "#1A9F86" + white: "#CCCCCC" + brightBlack: "#454444" + brightRed: "#BF4240" + brightGreen: "#1BAE58" + brightYellow: "#CCBC77" + brightBlue: "#6888CC" + brightMagenta: "#9F74BB" + brightCyan: "#65AFA1" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 55.7 + black: 0 + red: 27.1 + green: 47.1 + yellow: 57.6 + blue: 39.1 + magenta: 37.3 + cyan: 41.7 + white: 75.7 + brightBlack: 9.9 + brightRed: 27.1 + brightGreen: 47.1 + brightYellow: 66.2 + brightBlue: 39.1 + brightMagenta: 37.3 + brightCyan: 51.9 + brightWhite: 75.7 diff --git a/themes/dark-plus-oled-dim-85.yaml b/themes/dark-plus-oled-dim-85.yaml new file mode 100644 index 00000000..82316ad9 --- /dev/null +++ b/themes/dark-plus-oled-dim-85.yaml @@ -0,0 +1,49 @@ +name: "Dark Plus Oled Dim 85" +source: + marketplace_id: "WeiyuWang.dark-plus-oled" + version: "0.0.1" + installs: 2223 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/dark-plus-oled" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" +colors: + bg: "#000000" + fg: "#B4B4B4" + black: "#001221" + red: "#CB4644" + green: "#1CB95D" + yellow: "#A7C166" + blue: "#6E90D8" + magenta: "#A97CC6" + cyan: "#1CA98E" + white: "#D8D8D8" + brightBlack: "#494949" + brightRed: "#CB4644" + brightGreen: "#1CB95D" + brightYellow: "#D8C77E" + brightBlue: "#6E90D8" + brightMagenta: "#A97CC6" + brightCyan: "#6BBAAB" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 61.8 + black: 0 + red: 30.2 + green: 52.1 + yellow: 63.5 + blue: 43.1 + magenta: 41.6 + cyan: 46.3 + white: 82.9 + brightBlack: 11.6 + brightRed: 30.2 + brightGreen: 52.1 + brightYellow: 72.6 + brightBlue: 43.1 + brightMagenta: 41.6 + brightCyan: 57.4 + brightWhite: 82.9 diff --git a/themes/dark-plus-oled-dim-90.yaml b/themes/dark-plus-oled-dim-90.yaml new file mode 100644 index 00000000..18a247d8 --- /dev/null +++ b/themes/dark-plus-oled-dim-90.yaml @@ -0,0 +1,49 @@ +name: "Dark Plus Oled Dim 90" +source: + marketplace_id: "WeiyuWang.dark-plus-oled" + version: "0.0.1" + installs: 2223 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/dark-plus-oled" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" +colors: + bg: "#000000" + fg: "#BEBEBE" + black: "#001323" + red: "#D74A48" + green: "#1EC463" + yellow: "#B1CD6C" + blue: "#7599E5" + magenta: "#B383D2" + cyan: "#1DB397" + white: "#E5E5E5" + brightBlack: "#4E4D4D" + brightRed: "#D74A48" + brightGreen: "#1EC463" + brightYellow: "#E5D386" + brightBlue: "#7599E5" + brightMagenta: "#B383D2" + brightCyan: "#72C5B5" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 67.5 + black: 0 + red: 33.4 + green: 57.4 + yellow: 70 + blue: 47.7 + magenta: 45.8 + cyan: 51 + white: 91 + brightBlack: 13.2 + brightRed: 33.4 + brightGreen: 57.4 + brightYellow: 79.8 + brightBlue: 47.7 + brightMagenta: 45.8 + brightCyan: 63.1 + brightWhite: 91 diff --git a/themes/dark-plus-oled-dim-95.yaml b/themes/dark-plus-oled-dim-95.yaml new file mode 100644 index 00000000..690b25f4 --- /dev/null +++ b/themes/dark-plus-oled-dim-95.yaml @@ -0,0 +1,49 @@ +name: "Dark Plus Oled Dim 95" +source: + marketplace_id: "WeiyuWang.dark-plus-oled" + version: "0.0.1" + installs: 2223 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/dark-plus-oled" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" +colors: + bg: "#000000" + fg: "#C9C9C9" + black: "#001425" + red: "#E34E4C" + green: "#20CF68" + yellow: "#BBD872" + blue: "#7BA1F2" + magenta: "#BD8ADE" + cyan: "#1FBD9F" + white: "#F2F2F2" + brightBlack: "#525151" + brightRed: "#E34E4C" + brightGreen: "#20CF68" + brightYellow: "#F2DF8D" + brightBlue: "#7BA1F2" + brightMagenta: "#BD8ADE" + brightCyan: "#78D0BF" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 73.9 + black: 0 + red: 36.8 + green: 62.7 + yellow: 76.2 + blue: 52.1 + magenta: 50 + cyan: 55.7 + white: 99.3 + brightBlack: 14.7 + brightRed: 36.8 + brightGreen: 62.7 + brightYellow: 87.1 + brightBlue: 52.1 + brightMagenta: 50 + brightCyan: 68.9 + brightWhite: 99.3 diff --git a/themes/dark-plus-syntax.yaml b/themes/dark-plus-syntax.yaml new file mode 100644 index 00000000..7c670c4e --- /dev/null +++ b/themes/dark-plus-syntax.yaml @@ -0,0 +1,49 @@ +name: "dark-plus-syntax" +source: + marketplace_id: "dunstontc-org.dark-plus-syntax" + version: "0.0.165" + installs: 448 + author: "dunstontc-org" + repo: "https://github.com/dunstontc/dark-plus-syntax" + url: "https://marketplace.visualstudio.com/items?itemName=dunstontc-org.dark-plus-syntax" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#1E1E1E" + red: "#D16969" + green: "#608B4E" + yellow: "#D7BA7D" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#4EC9B0" + white: "#D4D4D4" + brightBlack: "#808080" + brightRed: "#D16969" + brightGreen: "#B5CEA8" + brightYellow: "#CE9178" + brightBlue: "#9CDCFE" + brightMagenta: "#C586C0" + brightCyan: "#4EC9B0" + brightWhite: "#808080" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 37.3 + green: 32.9 + yellow: 65.3 + blue: 44.2 + magenta: 46.5 + cyan: 61.1 + white: 78.7 + brightBlack: 32.9 + brightRed: 37.3 + brightGreen: 70.6 + brightYellow: 48.7 + brightBlue: 78.4 + brightMagenta: 46.5 + brightCyan: 61.1 + brightWhite: 32.9 diff --git a/themes/dark-purple-flat.yaml b/themes/dark-purple-flat.yaml new file mode 100644 index 00000000..c03e569d --- /dev/null +++ b/themes/dark-purple-flat.yaml @@ -0,0 +1,49 @@ +name: "Dark Purple Flat" +source: + marketplace_id: "Ayrz.vscode-theme-ayrz-arcticfox" + version: "1.0.2" + installs: 212 + author: "Ayrz" + repo: "https://github.com/ayrzDev/ArcticFox-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ayrz.vscode-theme-ayrz-arcticfox" +colors: + bg: "#1C1E26" + fg: "#E1E4E8" + black: "#3F4451" + red: "#E05561" + green: "#98C379" + yellow: "#F69D50" + blue: "#4AA5F0" + magenta: "#C792EA" + cyan: "#82AAFF" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 88.3 + black: 8 + red: 35.8 + green: 61.4 + yellow: 58.9 + blue: 48.8 + magenta: 52.9 + cyan: 55 + white: 89.8 + brightBlack: 14.6 + brightRed: 45.2 + brightGreen: 75.9 + brightYellow: 60.4 + brightBlue: 62.9 + brightMagenta: 49.4 + brightCyan: 66.9 + brightWhite: 82.2 diff --git a/themes/dark-purple.yaml b/themes/dark-purple.yaml new file mode 100644 index 00000000..7b6101da --- /dev/null +++ b/themes/dark-purple.yaml @@ -0,0 +1,49 @@ +name: "Dark/Purple" +source: + marketplace_id: "ThemeOne.themeone" + version: "1.0.3" + installs: 51 + author: "Theme One" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ThemeOne.themeone" +colors: + bg: "#001824" + fg: "#E1E1E0" + black: "#474747" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 232 + contrast: + fg: 87.4 + black: 9.9 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/dark-rainbow.yaml b/themes/dark-rainbow.yaml new file mode 100644 index 00000000..331f37d1 --- /dev/null +++ b/themes/dark-rainbow.yaml @@ -0,0 +1,49 @@ +name: "Dark Rainbow" +source: + marketplace_id: "DarkRainbow.darkrainbow" + version: "2.0.0" + installs: 3281 + author: "Dark Rainbow" + repo: "https://github.com/Gabrielvt14/dark-rainbow-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkRainbow.darkrainbow" +colors: + bg: "#171616" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.6 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/dark-rblx-rian.yaml b/themes/dark-rblx-rian.yaml new file mode 100644 index 00000000..c2bb3b65 --- /dev/null +++ b/themes/dark-rblx-rian.yaml @@ -0,0 +1,49 @@ +name: "dark-rblx-rian" +source: + marketplace_id: "Rianyj.light-rblx-rian" + version: "0.0.12" + installs: 37 + author: "RianyJ" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Rianyj.light-rblx-rian" +colors: + bg: "#C9C8C8" + fg: "#383A42" + black: "#373A41" + red: "#D52652" + green: "#239749" + yellow: "#DF621B" + blue: "#275FE4" + magenta: "#823EF0" + cyan: "#26608C" + white: "#B9BAC1" + brightBlack: "#676A77" + brightRed: "#FF637F" + brightGreen: "#3CBC66" + brightYellow: "#C5A231" + brightBlue: "#0099E0" + brightMagenta: "#CE32C0" + brightCyan: "#6D92BA" + brightWhite: "#D3D3D3" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 64.5 + black: 64.6 + red: 41 + green: 33 + yellow: 30.8 + blue: 44.9 + magenta: 44.2 + cyan: 51.2 + white: 0 + brightBlack: 45.2 + brightRed: 22.3 + brightGreen: 16.1 + brightYellow: 16.3 + brightBlue: 26.4 + brightMagenta: 37 + brightCyan: 28 + brightWhite: 0 diff --git a/themes/dark-reader-light.yaml b/themes/dark-reader-light.yaml new file mode 100644 index 00000000..996519e3 --- /dev/null +++ b/themes/dark-reader-light.yaml @@ -0,0 +1,49 @@ +name: "Dark Reader (Light)" +source: + marketplace_id: "akil-s.dark-reader-light" + version: "0.0.4" + installs: 607 + author: "akil-s" + repo: "https://github.com/Salah-Akil/darkreader-vscode-light" + url: "https://marketplace.visualstudio.com/items?itemName=akil-s.dark-reader-light" +colors: + bg: "#D9D7D4" + fg: "#35393C" + black: "#232627" + red: "#BF0C0C" + green: "#738D01" + yellow: "#D59200" + blue: "#009C8F" + magenta: "#AA62C8" + cyan: "#17B898" + white: "#42413F" + brightBlack: "#464E4F" + brightRed: "#CA1111" + brightGreen: "#7F990D" + brightYellow: "#9E6200" + brightBlue: "#00B6A4" + brightMagenta: "#8E44AD" + brightCyan: "#16A085" + brightWhite: "#5D5C5A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 73.6 + black: 78.9 + red: 56.2 + green: 42 + yellow: 27.9 + blue: 37.8 + magenta: 43.5 + cyan: 25.6 + white: 70.5 + brightBlack: 66.1 + brightRed: 53.6 + brightGreen: 36.3 + brightYellow: 51 + brightBlue: 26.1 + brightMagenta: 55.6 + brightCyan: 36.4 + brightWhite: 59.8 diff --git a/themes/dark-readin-5.yaml b/themes/dark-readin-5.yaml new file mode 100644 index 00000000..799f9652 --- /dev/null +++ b/themes/dark-readin-5.yaml @@ -0,0 +1,49 @@ +name: "Dark_Readin_5" +source: + marketplace_id: "GuilhermeFalco.Dark-Redin" + version: "1.1.9" + installs: 295 + author: "GuilhermeFalco" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GuilhermeFalco.Dark-Redin" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#ABABAB" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 106 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 54.9 diff --git a/themes/dark-red-theme-vs-code.yaml b/themes/dark-red-theme-vs-code.yaml new file mode 100644 index 00000000..af2fa089 --- /dev/null +++ b/themes/dark-red-theme-vs-code.yaml @@ -0,0 +1,49 @@ +name: "Dark Red Theme VS-Code" +source: + marketplace_id: "vscode-dark-red-theme.vscode-dark-red-theme" + version: "0.30.0" + installs: 2739 + author: "Kailash Shaw" + repo: "https://github.com/kailash-shaw/vscode-dark-red-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vscode-dark-red-theme.vscode-dark-red-theme" +colors: + bg: "#1A1C21" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 268 + contrast: + fg: 74.1 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/dark-remix-nord.yaml b/themes/dark-remix-nord.yaml new file mode 100644 index 00000000..f46edf22 --- /dev/null +++ b/themes/dark-remix-nord.yaml @@ -0,0 +1,49 @@ +name: "Dark+ Remix (Nord)" +source: + marketplace_id: "daydev.dark-pastels-remix" + version: "0.2.0" + installs: 2455 + author: "daydev" + repo: "https://github.com/daydev/vscode-dark-remix" + url: "https://marketplace.visualstudio.com/items?itemName=daydev.dark-pastels-remix" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#1E1E1E" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#5E81AC" + magenta: "#B48EAD" + cyan: "#2AA198" + white: "#D4D4D4" + brightBlack: "#2E3440" + brightRed: "#DC322F" + brightGreen: "#50FA7B" + brightYellow: "#859900" + brightBlue: "#268BD2" + brightMagenta: "#D33682" + brightCyan: "#88C0D0" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 32.1 + green: 60.8 + yellow: 75.6 + blue: 32.3 + magenta: 45.6 + cyan: 41.6 + white: 78.7 + brightBlack: 0 + brightRed: 29.3 + brightGreen: 84 + brightYellow: 40.8 + brightBlue: 35.9 + brightMagenta: 29.6 + brightCyan: 61.8 + brightWhite: 100.3 diff --git a/themes/dark-remix-one-dark.yaml b/themes/dark-remix-one-dark.yaml new file mode 100644 index 00000000..7e8d27a0 --- /dev/null +++ b/themes/dark-remix-one-dark.yaml @@ -0,0 +1,49 @@ +name: "Dark+ Remix (One Dark)" +source: + marketplace_id: "daydev.dark-pastels-remix" + version: "0.2.0" + installs: 2455 + author: "daydev" + repo: "https://github.com/daydev/vscode-dark-remix" + url: "https://marketplace.visualstudio.com/items?itemName=daydev.dark-pastels-remix" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#1E1E1E" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#2AA198" + white: "#D4D4D4" + brightBlack: "#002B36" + brightRed: "#DC322F" + brightGreen: "#50FA7B" + brightYellow: "#859900" + brightBlue: "#268BD2" + brightMagenta: "#D33682" + brightCyan: "#9CDCFE" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 41.2 + green: 61.4 + yellow: 69.7 + blue: 44.2 + magenta: 46.5 + cyan: 41.6 + white: 78.7 + brightBlack: 0 + brightRed: 29.3 + brightGreen: 84 + brightYellow: 40.8 + brightBlue: 35.9 + brightMagenta: 29.6 + brightCyan: 78.4 + brightWhite: 100.3 diff --git a/themes/dark-sand-theme.yaml b/themes/dark-sand-theme.yaml new file mode 100644 index 00000000..cc8631ff --- /dev/null +++ b/themes/dark-sand-theme.yaml @@ -0,0 +1,49 @@ +name: "Dark Sand Theme" +source: + marketplace_id: "DarkMannn.dark-sand-color-theme" + version: "0.0.4" + installs: 1415 + author: "DarkMannn" + repo: "https://github.com/DarkMannn/dark-sand-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-sand-color-theme" +colors: + bg: "#040404" + fg: "#CDCDCD" + black: "#000000" + red: "#CD6161" + green: "#2BB681" + yellow: "#E2E298" + blue: "#3B7AC0" + magenta: "#7851A9" + cyan: "#2EACCB" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF8181" + brightGreen: "#4FE4A8" + brightYellow: "#F7F780" + brightBlue: "#50A3FF" + brightMagenta: "#AE87E0" + brightCyan: "#42CCEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 76.3 + black: 0 + red: 36.3 + green: 51.8 + yellow: 86.5 + blue: 31.1 + magenta: 22.4 + cyan: 50.5 + white: 107.9 + brightBlack: 23 + brightRed: 55 + brightGreen: 75.7 + brightYellow: 98.7 + brightBlue: 51.2 + brightMagenta: 47.2 + brightCyan: 66.9 + brightWhite: 107.9 diff --git a/themes/dark-sea-green.yaml b/themes/dark-sea-green.yaml new file mode 100644 index 00000000..351bff05 --- /dev/null +++ b/themes/dark-sea-green.yaml @@ -0,0 +1,49 @@ +name: "Dark Sea Green" +source: + marketplace_id: "Dadoux.Dadoux" + version: "0.0.3" + installs: 2656 + author: "Dadoux" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Dadoux.Dadoux" +colors: + bg: "#1D262F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 249 + contrast: + fg: 104.9 + black: 0 + red: 24.8 + green: 51.1 + yellow: 83.7 + blue: 25.5 + magenta: 27.8 + cyan: 45.6 + white: 88.1 + brightBlack: 20.1 + brightRed: 36.6 + brightGreen: 61.6 + brightYellow: 93.7 + brightBlue: 38.1 + brightMagenta: 43.4 + brightCyan: 53.5 + brightWhite: 88.1 diff --git a/themes/dark-sky-fork-fork.yaml b/themes/dark-sky-fork-fork.yaml new file mode 100644 index 00000000..c74dc53a --- /dev/null +++ b/themes/dark-sky-fork-fork.yaml @@ -0,0 +1,49 @@ +name: "Dark Sky - Fork - Fork" +source: + marketplace_id: "HarryL.harry-dark-5" + version: "1.0.2" + installs: 48 + author: "HarryL" + repo: "https://github.com/harrylynchh/my-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=HarryL.harry-dark-5" +colors: + bg: "#080808" + fg: "#D9D4D4" + black: "#141414" + red: "#FF5555" + green: "#98EC65" + yellow: "#FFCC33" + blue: "#00AAFF" + magenta: "#AA88FF" + cyan: "#88DDFF" + white: "#E7E7E7" + brightBlack: "#414141" + brightRed: "#FF8888" + brightGreen: "#B6F292" + brightYellow: "#FFD966" + brightBlue: "#33BBFF" + brightMagenta: "#CEBBFF" + brightCyan: "#BBECFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81.1 + black: 0 + red: 44.3 + green: 82.2 + yellow: 79.6 + blue: 52.5 + magenta: 49 + cyan: 79.1 + white: 92.2 + brightBlack: 8.7 + brightRed: 57.1 + brightGreen: 88.7 + brightYellow: 85.7 + brightBlue: 60 + brightMagenta: 71.5 + brightCyan: 90.5 + brightWhite: 107.8 diff --git a/themes/dark-soft-theme-sm.yaml b/themes/dark-soft-theme-sm.yaml new file mode 100644 index 00000000..69400590 --- /dev/null +++ b/themes/dark-soft-theme-sm.yaml @@ -0,0 +1,49 @@ +name: "Dark Soft Theme(SM)" +source: + marketplace_id: "SIRILMP.dark-theme-sm" + version: "3.11.3" + installs: 21064 + author: "SIRIL M P" + repo: "https://github.com/sirilmp/dark-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" +colors: + bg: "#212733" + fg: "#B5CDA3" + black: "#343D4A" + red: "#F07178" + green: "#AF7AB3" + yellow: "#92B4EC" + blue: "#36A3D9" + magenta: "#D4BFFF" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#CBE645" + brightYellow: "#FFDF80" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#A6FDE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 68.6 + black: 0 + red: 44.3 + green: 37.6 + yellow: 57.8 + blue: 44.5 + magenta: 70.7 + cyan: 78.6 + white: 69.5 + brightBlack: 20.6 + brightRed: 44.3 + brightGreen: 80.7 + brightYellow: 85.6 + brightBlue: 32.4 + brightMagenta: 55.2 + brightCyan: 92.3 + brightWhite: 104.6 diff --git a/themes/dark-solarin-2.yaml b/themes/dark-solarin-2.yaml new file mode 100644 index 00000000..d0af15f2 --- /dev/null +++ b/themes/dark-solarin-2.yaml @@ -0,0 +1,49 @@ +name: "dark-solarin-2" +source: + marketplace_id: "kevboutin.dark-solarin-2" + version: "1.0.3" + installs: 32 + author: "Kevin Boutin" + repo: "https://github.com/kevboutin/vscode-theme-dark-solarin-2" + url: "https://marketplace.visualstudio.com/items?itemName=kevboutin.dark-solarin-2" +colors: + bg: "#1E1E1E" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.8 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/dark-springbok.yaml b/themes/dark-springbok.yaml new file mode 100644 index 00000000..74f3f345 --- /dev/null +++ b/themes/dark-springbok.yaml @@ -0,0 +1,49 @@ +name: "Dark Springbok" +source: + marketplace_id: "chrp.springbok-theme" + version: "0.12.0" + installs: 620 + author: "chrp" + repo: "https://github.com/christophehurpeau/springbok-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=chrp.springbok-theme" +colors: + bg: "#080808" + fg: "#E0E0E0" + black: "#797979" + red: "#D34F4A" + green: "#4AD34F" + yellow: "#D3C64A" + blue: "#4A61D3" + magenta: "#D34AC1" + cyan: "#4AC1D3" + white: "#D7D7D7" + brightBlack: "#A0A0A0" + brightRed: "#E60800" + brightGreen: "#00E608" + brightYellow: "#E6CF00" + brightBlue: "#0026E6" + brightMagenta: "#E600C7" + brightCyan: "#00C7E6" + brightWhite: "#FEFEFE" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.8 + black: 31.4 + red: 33.4 + green: 65.1 + yellow: 70.6 + blue: 25.5 + magenta: 37 + cyan: 60.7 + white: 82.2 + brightBlack: 50.8 + brightRed: 31.3 + brightGreen: 73.2 + brightYellow: 76.8 + brightBlue: 14.5 + brightMagenta: 36.6 + brightCyan: 63.4 + brightWhite: 107.1 diff --git a/themes/dark-terminal-pro.yaml b/themes/dark-terminal-pro.yaml new file mode 100644 index 00000000..95905768 --- /dev/null +++ b/themes/dark-terminal-pro.yaml @@ -0,0 +1,49 @@ +name: "Dark Terminal pro" +source: + marketplace_id: "xnjf33ubs66n5cynckwm42bn6akv3z5er2a4zcrgtdlgc4cfi6qa.dark-theme-pro" + version: "0.0.1" + installs: 241 + author: "theme-dark" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xnjf33ubs66n5cynckwm42bn6akv3z5er2a4zcrgtdlgc4cfi6qa.dark-theme-pro" +colors: + bg: "#1E1E1E" + fg: "#D7B1B6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BEB1B1" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 63.5 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 59.9 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 96.2 diff --git a/themes/dark-theme-blue.yaml b/themes/dark-theme-blue.yaml new file mode 100644 index 00000000..455e368d --- /dev/null +++ b/themes/dark-theme-blue.yaml @@ -0,0 +1,49 @@ +name: "dark-theme-blue" +source: + marketplace_id: "gthbccnt.dark-theme-blue" + version: "1.0.8" + installs: 277 + author: "gthbccnt" + repo: "https://github.com/gthbccnt/gthbccnt.dark-theme-blue" + url: "https://marketplace.visualstudio.com/items?itemName=gthbccnt.dark-theme-blue" +colors: + bg: "#1D1F21" + fg: "#D4D4D4" + black: "#000000" + red: "#D97779" + green: "#9DC085" + yellow: "#F4BF75" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#3A8DBE" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#4CBAFA" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.5 + black: 0 + red: 42.7 + green: 60.8 + yellow: 71.5 + blue: 26.5 + magenta: 28.8 + cyan: 35.8 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.4 + brightCyan: 58.1 + brightWhite: 89.1 diff --git a/themes/dark-theme-by-sanan.yaml b/themes/dark-theme-by-sanan.yaml new file mode 100644 index 00000000..e60bedb9 --- /dev/null +++ b/themes/dark-theme-by-sanan.yaml @@ -0,0 +1,49 @@ +name: "dark-theme-by-sanan" +source: + marketplace_id: "Sanan4li.dark-theme-by-sanan" + version: "3.0.1" + installs: 2104 + author: "Sanan Ali" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Sanan4li.dark-theme-by-sanan" +colors: + bg: "#0D0D0C" + fg: "#E2EAF0" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 93.2 + black: 0 + red: 25.3 + green: 53.8 + yellow: 58.4 + blue: 35.4 + magenta: 32.9 + cyan: 51.2 + white: 89.2 + brightBlack: 22.8 + brightRed: 38 + brightGreen: 77.7 + brightYellow: 84.6 + brightBlue: 50.6 + brightMagenta: 47.3 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/dark-theme-default-by-luisfelipe.yaml b/themes/dark-theme-default-by-luisfelipe.yaml new file mode 100644 index 00000000..e9425375 --- /dev/null +++ b/themes/dark-theme-default-by-luisfelipe.yaml @@ -0,0 +1,49 @@ +name: "dark-theme-default-by-luisfelipe" +source: + marketplace_id: "LuisFelipe.my-theme-luisfelipe" + version: "0.0.1" + installs: 32 + author: "Luis Felipe" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LuisFelipe.my-theme-luisfelipe" +colors: + bg: "#27272A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.2 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.1 + magenta: 27.5 + cyan: 45.3 + white: 87.7 + brightBlack: 19.7 + brightRed: 36.3 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.7 + brightMagenta: 43.1 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/dark-theme-new.yaml b/themes/dark-theme-new.yaml new file mode 100644 index 00000000..dc6f36b6 --- /dev/null +++ b/themes/dark-theme-new.yaml @@ -0,0 +1,49 @@ +name: "Dark Theme New" +source: + marketplace_id: "AstrayYouth.dark-theme-new" + version: "1.0.0" + installs: 34 + author: "Astray Youth" + repo: "https://github.com/AstrayYouth/dark-theme-new" + url: "https://marketplace.visualstudio.com/items?itemName=AstrayYouth.dark-theme-new" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#2CFF00" + yellow: "#4743C9" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#8A8A8A" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 84.9 + yellow: 15.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 37.8 diff --git a/themes/dark-theme-v2.yaml b/themes/dark-theme-v2.yaml new file mode 100644 index 00000000..813abc23 --- /dev/null +++ b/themes/dark-theme-v2.yaml @@ -0,0 +1,49 @@ +name: "Dark theme v2" +source: + marketplace_id: "yuriyProgg.yuriyprogg-theme" + version: "1.0.0" + installs: 114 + author: "YuriyProgg" + repo: "https://github.com/yuriyProgg/yuriyprogg-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yuriyProgg.yuriyprogg-theme" +colors: + bg: "#1B1B1B" + fg: "#41BCC2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 56 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/dark-theme.yaml b/themes/dark-theme.yaml new file mode 100644 index 00000000..3979ff78 --- /dev/null +++ b/themes/dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Dark Theme" +source: + marketplace_id: "MarceloSoares.marcelo" + version: "0.3.0" + installs: 939 + author: "Marcelo Soares" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MarceloSoares.marcelo" +colors: + bg: "#000000" + fg: "#E1E1E1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 88.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/dark-v3.yaml b/themes/dark-v3.yaml new file mode 100644 index 00000000..66f162ed --- /dev/null +++ b/themes/dark-v3.yaml @@ -0,0 +1,49 @@ +name: "Dark+ V3" +source: + marketplace_id: "Jan-PhilippDiesler.darkV3" + version: "0.0.4" + installs: 359 + author: "Jan-Philipp Diesler" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Jan-PhilippDiesler.darkV3" +colors: + bg: "#1F1F1F" + fg: "#D4D4D4" + black: "#000000" + red: "#FF4528" + green: "#67D968" + yellow: "#D9D60B" + blue: "#2793C7" + magenta: "#C040BE" + cyan: "#00C5C7" + white: "#E5E5E5" + brightBlack: "#868686" + brightRed: "#FF4528" + brightGreen: "#7EF0AB" + brightYellow: "#FFF300" + brightBlue: "#AAFCFF" + brightMagenta: "#E17EE1" + brightCyan: "#66E2E3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.5 + black: 0 + red: 39.5 + green: 67.7 + yellow: 76.2 + blue: 38.1 + magenta: 29.8 + cyan: 58.9 + white: 89 + brightBlack: 35.7 + brightRed: 39.5 + brightGreen: 82.1 + brightYellow: 95 + brightBlue: 94.8 + brightMagenta: 50.6 + brightCyan: 76.1 + brightWhite: 105.9 diff --git a/themes/dark-vibes.yaml b/themes/dark-vibes.yaml new file mode 100644 index 00000000..495e9bad --- /dev/null +++ b/themes/dark-vibes.yaml @@ -0,0 +1,49 @@ +name: "Dark Vibes" +source: + marketplace_id: "rishabkumar.dark-vibes-theme" + version: "0.1.3" + installs: 81 + author: "Rishab Kumar" + repo: "https://github.com/rishabkumar7/dark-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=rishabkumar.dark-vibes-theme" +colors: + bg: "#1E2433" + fg: "#D4D4D4" + black: "#000000" + red: "#F92672" + green: "#4EC9B0" + yellow: "#FFD700" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#4EC9B0" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#F92672" + brightGreen: "#4EC9B0" + brightYellow: "#FFD700" + brightBlue: "#569CD6" + brightMagenta: "#C586C0" + brightCyan: "#4EC9B0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 267 + contrast: + fg: 77.7 + black: 0 + red: 35.5 + green: 60.2 + yellow: 81.5 + blue: 43.2 + magenta: 45.5 + cyan: 60.2 + white: 105.1 + brightBlack: 0 + brightRed: 35.5 + brightGreen: 60.2 + brightYellow: 81.5 + brightBlue: 43.2 + brightMagenta: 45.5 + brightCyan: 60.2 + brightWhite: 105.1 diff --git a/themes/dark-visual-studio.yaml b/themes/dark-visual-studio.yaml new file mode 100644 index 00000000..77459c52 --- /dev/null +++ b/themes/dark-visual-studio.yaml @@ -0,0 +1,49 @@ +name: "Dark+ Visual Studio" +source: + marketplace_id: "yuriyProgg.yuriyprogg-theme" + version: "1.0.0" + installs: 114 + author: "YuriyProgg" + repo: "https://github.com/yuriyProgg/yuriyprogg-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yuriyProgg.yuriyprogg-theme" +colors: + bg: "#1E1E1E" + fg: "#ABABAB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 54.9 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/dark-wolf.yaml b/themes/dark-wolf.yaml new file mode 100644 index 00000000..d9bfb803 --- /dev/null +++ b/themes/dark-wolf.yaml @@ -0,0 +1,49 @@ +name: "Dark-Wolf" +source: + marketplace_id: "ThiagoSaytson.dark-wolf" + version: "1.0.1" + installs: 1363 + author: "Thiago Saytson" + repo: "https://github.com/TSaytson/Dark-Wolf-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ThiagoSaytson.dark-wolf" +colors: + bg: "#15151C" + fg: "#D4D4D4" + black: "#000000" + red: "#900000" + green: "#0DBC79" + yellow: "#939000" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 79.6 + black: 0 + red: 11.7 + green: 53.1 + yellow: 39.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/dark-yellow-flat.yaml b/themes/dark-yellow-flat.yaml new file mode 100644 index 00000000..65951873 --- /dev/null +++ b/themes/dark-yellow-flat.yaml @@ -0,0 +1,49 @@ +name: "Dark Yellow Flat" +source: + marketplace_id: "Ayrz.vscode-theme-ayrz-arcticfox" + version: "1.0.2" + installs: 212 + author: "Ayrz" + repo: "https://github.com/ayrzDev/ArcticFox-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ayrz.vscode-theme-ayrz-arcticfox" +colors: + bg: "#23272E" + fg: "#E1E4E8" + black: "#3F4451" + red: "#E05561" + green: "#98C379" + yellow: "#F69D50" + blue: "#4AA5F0" + magenta: "#C792EA" + cyan: "#82AAFF" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 87 + black: 0 + red: 34.5 + green: 60.1 + yellow: 57.5 + blue: 47.4 + magenta: 51.5 + cyan: 53.7 + white: 88.4 + brightBlack: 13.2 + brightRed: 43.9 + brightGreen: 74.6 + brightYellow: 59 + brightBlue: 61.5 + brightMagenta: 48 + brightCyan: 65.6 + brightWhite: 80.8 diff --git a/themes/dark.yaml b/themes/dark.yaml new file mode 100644 index 00000000..09331412 --- /dev/null +++ b/themes/dark.yaml @@ -0,0 +1,49 @@ +name: "dark" +source: + marketplace_id: "lenglounh2024.lenglounh-theme" + version: "0.0.7" + installs: 28 + author: "lenglounh2024" + repo: "https://github.com/lenglounh2024/lenglounh-vscode-extension-pack.git#main" + url: "https://marketplace.visualstudio.com/items?itemName=lenglounh2024.lenglounh-theme" +colors: + bg: "#060218" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 289 + contrast: + fg: 80.4 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/darka.yaml b/themes/darka.yaml new file mode 100644 index 00000000..faaccdb9 --- /dev/null +++ b/themes/darka.yaml @@ -0,0 +1,49 @@ +name: "Darka" +source: + marketplace_id: "ManuCodes.bits" + version: "1.0.3" + installs: 1500 + author: "Manu Codes" + repo: "https://github.com/manudevcode/bits-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ManuCodes.bits" +colors: + bg: "#1F222E" + fg: "#F2F3F7" + black: "#283034" + red: "#FF2E97" + green: "#3ADA5D" + yellow: "#FDE74E" + blue: "#42C6FF" + magenta: "#FF2AFC" + cyan: "#42C6FF" + white: "#D9E0E9" + brightBlack: "#435056" + brightRed: "#FF2E97" + brightGreen: "#ADD0E5" + brightYellow: "#FDE74E" + brightBlue: "#42C6FF" + brightMagenta: "#FF2AFC" + brightCyan: "#42C6FF" + brightWhite: "#F4F6F9" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 97.5 + black: 0 + red: 39 + green: 65.9 + yellow: 88.9 + blue: 62.8 + magenta: 44.6 + cyan: 62.8 + white: 84.9 + brightBlack: 10.9 + brightRed: 39 + brightGreen: 72.5 + brightYellow: 88.9 + brightBlue: 62.8 + brightMagenta: 44.6 + brightCyan: 62.8 + brightWhite: 99.3 diff --git a/themes/darkalchemy-basic.yaml b/themes/darkalchemy-basic.yaml new file mode 100644 index 00000000..11df0c25 --- /dev/null +++ b/themes/darkalchemy-basic.yaml @@ -0,0 +1,49 @@ +name: "DarkAlchemy-Basic" +source: + marketplace_id: "DarkAlchemy.darkalchemy" + version: "0.0.3" + installs: 576 + author: "Dark Alchemy" + repo: "https://github.com/dark-alchemy/darkalchemy-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkAlchemy.darkalchemy" +colors: + bg: "#151515" + fg: "#FFFFFF" + black: "#000000" + red: "#DA8548" + green: "#23D18B" + yellow: "#ECBE7B" + blue: "#00BFF8" + magenta: "#BC3FBC" + cyan: "#46D9FF" + white: "#E5E5E5" + brightBlack: "#CFCFCF" + brightRed: "#DA8548" + brightGreen: "#23D18B" + brightYellow: "#ECBE7B" + brightBlue: "#00BFF8" + brightMagenta: "#D670D6" + brightCyan: "#46D9FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.1 + black: 0 + red: 47 + green: 63.7 + yellow: 71 + blue: 60.1 + magenta: 29.9 + cyan: 73.3 + white: 90.2 + brightBlack: 76.6 + brightRed: 47 + brightGreen: 63.7 + brightYellow: 71 + brightBlue: 60.1 + brightMagenta: 45.6 + brightCyan: 73.3 + brightWhite: 90.2 diff --git a/themes/darkalicious.yaml b/themes/darkalicious.yaml new file mode 100644 index 00000000..bc48feb9 --- /dev/null +++ b/themes/darkalicious.yaml @@ -0,0 +1,49 @@ +name: "Darkalicious" +source: + marketplace_id: "shanedonburke.darkalicious-theme" + version: "0.0.4" + installs: 128 + author: "shanedonburke" + repo: "https://github.com/shanedonburke/darkalicious-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shanedonburke.darkalicious-theme" +colors: + bg: "#151F2C" + fg: "#D4D4D4" + black: "#000000" + red: "#FF0B45" + green: "#08C77D" + yellow: "#F0ED02" + blue: "#177CE8" + magenta: "#FF6FE1" + cyan: "#08C3F0" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF6177" + brightGreen: "#52E8AC" + brightYellow: "#F9F97C" + brightBlue: "#53A6FF" + brightMagenta: "#FFA1FF" + brightCyan: "#73CCE2" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 255 + contrast: + fg: 78.6 + black: 0 + red: 36.1 + green: 57.3 + yellow: 90 + blue: 32 + magenta: 52.8 + cyan: 60.3 + white: 89.1 + brightBlack: 21.1 + brightRed: 45.4 + brightGreen: 76 + brightYellow: 98 + brightBlue: 50.6 + brightMagenta: 68.2 + brightCyan: 66.5 + brightWhite: 89.1 diff --git a/themes/darkasp.yaml b/themes/darkasp.yaml new file mode 100644 index 00000000..ca6f7142 --- /dev/null +++ b/themes/darkasp.yaml @@ -0,0 +1,49 @@ +name: "DarkASP" +source: + marketplace_id: "aspeditor.asp-language-editor-dlv2" + version: "0.1.5" + installs: 2188 + author: "aspeditor" + repo: "https://github.com/pierpaolosestito-dev/ASPEditorPlugin" + url: "https://marketplace.visualstudio.com/items?itemName=aspeditor.asp-language-editor-dlv2" +colors: + bg: "#1B1D1E" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#3A7986" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.3 + black: 0 + red: 23.9 + green: 52.4 + yellow: 57 + blue: 34 + magenta: 31.5 + cyan: 49.8 + white: 87.8 + brightBlack: 21.4 + brightRed: 36.6 + brightGreen: 76.3 + brightYellow: 83.2 + brightBlue: 49.2 + brightMagenta: 45.9 + brightCyan: 26.1 + brightWhite: 101.3 diff --git a/themes/darkblue-theme.yaml b/themes/darkblue-theme.yaml new file mode 100644 index 00000000..c0ff3441 --- /dev/null +++ b/themes/darkblue-theme.yaml @@ -0,0 +1,49 @@ +name: "darkblue-theme" +source: + marketplace_id: "guicastro13.onebitcode-theme" + version: "0.0.5" + installs: 2293 + author: "guicastro13" + repo: "https://github.com/guicastro13/onebitcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" +colors: + bg: "#2E3440" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 74.4 + black: 0 + red: 21.6 + green: 47.9 + yellow: 80.5 + blue: 22.4 + magenta: 24.7 + cyan: 42.5 + white: 84.9 + brightBlack: 17 + brightRed: 33.5 + brightGreen: 58.5 + brightYellow: 90.6 + brightBlue: 34.9 + brightMagenta: 40.3 + brightCyan: 50.3 + brightWhite: 84.9 diff --git a/themes/darkbubble.yaml b/themes/darkbubble.yaml new file mode 100644 index 00000000..54cec4aa --- /dev/null +++ b/themes/darkbubble.yaml @@ -0,0 +1,49 @@ +name: "darkbubble" +source: + marketplace_id: "rwbyc.darkbubble" + version: "0.0.2" + installs: 37 + author: "rwbyc" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=rwbyc.darkbubble" +colors: + bg: "#19191B" + fg: "#EAC0A3" + black: "#000000" + red: "#FC4B4B" + green: "#6D9E5D" + yellow: "#F66894" + blue: "#71A3E8" + magenta: "#A884B7" + cyan: "#63A098" + white: "#C1BEBA" + brightBlack: "#918175" + brightRed: "#D24C4C" + brightGreen: "#75BA5D" + brightYellow: "#D95E84" + brightBlue: "#658EC7" + brightMagenta: "#C991E1" + brightCyan: "#29B8DB" + brightWhite: "#F9F5EF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 72.2 + black: 0 + red: 40.7 + green: 42.2 + yellow: 46.4 + blue: 50.2 + magenta: 41.9 + cyan: 44 + white: 66.4 + brightBlack: 35.4 + brightRed: 31.5 + brightGreen: 54.7 + brightYellow: 37.8 + brightBlue: 39.5 + brightMagenta: 53 + brightCyan: 55.2 + brightWhite: 100.3 diff --git a/themes/darkbutter.yaml b/themes/darkbutter.yaml new file mode 100644 index 00000000..3dd90d30 --- /dev/null +++ b/themes/darkbutter.yaml @@ -0,0 +1,49 @@ +name: "DarkButter" +source: + marketplace_id: "SaiRohith.DarkButter" + version: "0.0.8" + installs: 2976 + author: "SaiRohith" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SaiRohith.DarkButter" +colors: + bg: "#000000" + fg: "#BAC6DB" + black: "#01060E" + red: "#EA6C73" + green: "#6A62B3" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#9B94FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#5A4CD9" + brightYellow: "#5754FF" + brightBlue: "#69C8FF" + brightMagenta: "#A099FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 71.6 + black: 0 + red: 45.1 + green: 25.9 + yellow: 67.6 + blue: 61.6 + magenta: 50.9 + cyan: 78.9 + white: 72.7 + brightBlack: 23.9 + brightRed: 47.6 + brightGreen: 22.2 + brightYellow: 27.3 + brightBlue: 67.8 + brightMagenta: 53.5 + brightCyan: 81.9 + brightWhite: 107.9 diff --git a/themes/darkdarkdark.yaml b/themes/darkdarkdark.yaml new file mode 100644 index 00000000..7c3089c6 --- /dev/null +++ b/themes/darkdarkdark.yaml @@ -0,0 +1,49 @@ +name: "darkdarkdark" +source: + marketplace_id: "nicolelele.darkdarkdark" + version: "1.0.5" + installs: 21 + author: "nicolelele" + repo: "https://github.com/npcnicolelele/darkdarkdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nicolelele.darkdarkdark" +colors: + bg: "#1A1A2A" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 78.4 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/darker-solarized.yaml b/themes/darker-solarized.yaml new file mode 100644 index 00000000..0ab5a676 --- /dev/null +++ b/themes/darker-solarized.yaml @@ -0,0 +1,49 @@ +name: "Darker Solarized" +source: + marketplace_id: "soklaysam.darker-solarized" + version: "1.0.0" + installs: 1324 + author: "SokLay Sam" + repo: "https://github.com/soklaysam/vscode-darker-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=soklaysam.darker-solarized" +colors: + bg: "#002028" + fg: "#839496" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#839496" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#859900" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#839496" +meta: + mode: "dark" + accent: "orange" + hue: 218 + contrast: + fg: 41.2 + black: 0 + red: 29.4 + green: 40.9 + yellow: 40.9 + blue: 35.9 + magenta: 29.6 + cyan: 41.6 + white: 41.2 + brightBlack: 23.1 + brightRed: 28.8 + brightGreen: 40.9 + brightYellow: 28.9 + brightBlue: 41.2 + brightMagenta: 29.6 + brightCyan: 48.1 + brightWhite: 41.2 diff --git a/themes/darker-than-black.yaml b/themes/darker-than-black.yaml new file mode 100644 index 00000000..86d85bde --- /dev/null +++ b/themes/darker-than-black.yaml @@ -0,0 +1,49 @@ +name: "Darker Than Black" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 80 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" +colors: + bg: "#0B0C0F" + fg: "#E0E0E0" + black: "#2E3440" + red: "#FF6B6B" + green: "#50FA7B" + yellow: "#FFD700" + blue: "#5FD4FB" + magenta: "#D291FF" + cyan: "#8BE9FD" + white: "#E0E0E0" + brightBlack: "#4C566A" + brightRed: "#FF5F5F" + brightGreen: "#B3E85F" + brightYellow: "#FFFF99" + brightBlue: "#81A1C1" + brightMagenta: "#C084FC" + brightCyan: "#9AEDFE" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 87.7 + black: 0 + red: 48.9 + green: 85.7 + yellow: 84 + blue: 72.2 + magenta: 57.3 + cyan: 84.7 + white: 87.7 + brightBlack: 16.2 + brightRed: 46.2 + brightGreen: 82.4 + brightYellow: 104 + brightBlue: 49.4 + brightMagenta: 50.5 + brightCyan: 87.8 + brightWhite: 97 diff --git a/themes/darkest.yaml b/themes/darkest.yaml new file mode 100644 index 00000000..31c5ad17 --- /dev/null +++ b/themes/darkest.yaml @@ -0,0 +1,49 @@ +name: "darkEST" +source: + marketplace_id: "RakeshKannaS.darkest-theme" + version: "0.0.2" + installs: 439 + author: "Rakesh Kanna S" + repo: "https://github.com/rakeshkanna-rk/darkest" + url: "https://marketplace.visualstudio.com/items?itemName=RakeshKannaS.darkest-theme" +colors: + bg: "#010101" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/darkestside-theme.yaml b/themes/darkestside-theme.yaml new file mode 100644 index 00000000..f95c3c6d --- /dev/null +++ b/themes/darkestside-theme.yaml @@ -0,0 +1,49 @@ +name: "DarkestSide theme" +source: + marketplace_id: "YousefAyash.DarkestSide" + version: "1.0.2" + installs: 251 + author: "Yousef Ayash" + repo: "https://github.com/Yousef-Ayash/Darkestside" + url: "https://marketplace.visualstudio.com/items?itemName=YousefAyash.DarkestSide" +colors: + bg: "#0A090D" + fg: "#E3F3FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 98.3 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 92.8 diff --git a/themes/darkfontenelestheme.yaml b/themes/darkfontenelestheme.yaml new file mode 100644 index 00000000..e39127e8 --- /dev/null +++ b/themes/darkfontenelestheme.yaml @@ -0,0 +1,49 @@ +name: "DarkFontenelesTheme" +source: + marketplace_id: "HenriqueDark.henriquedark" + version: "0.0.1" + installs: 100 + author: "HenriqueDark" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HenriqueDark.henriquedark" +colors: + bg: "#1E1E1E" + fg: "#CDCDCD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 74.4 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/darkforest.yaml b/themes/darkforest.yaml new file mode 100644 index 00000000..45d76e5b --- /dev/null +++ b/themes/darkforest.yaml @@ -0,0 +1,49 @@ +name: "DarkForest" +source: + marketplace_id: "JavierdeMarco.darkforest" + version: "0.0.1" + installs: 79 + author: "Javier de Marco" + repo: "https://github.com/javierdemarco/dark-forest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=JavierdeMarco.darkforest" +colors: + bg: "#20282F" + fg: "#C5CDD9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 245 + contrast: + fg: 72.5 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.2 + magenta: 27.5 + cyan: 45.3 + white: 87.7 + brightBlack: 19.8 + brightRed: 36.3 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.7 + brightMagenta: 43.1 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/darkfusion.yaml b/themes/darkfusion.yaml new file mode 100644 index 00000000..4d200a40 --- /dev/null +++ b/themes/darkfusion.yaml @@ -0,0 +1,49 @@ +name: "DarkFusion" +source: + marketplace_id: "sahilmondal.dark-fusion-theme" + version: "1.0.0" + installs: 121 + author: "Sahil Mondal" + repo: "https://github.com/sahilmondal/darkFusion-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sahilmondal.dark-fusion-theme" +colors: + bg: "#100F2E" + fg: "#A2AABC" + black: "#2F3B54" + red: "#EF6B73" + green: "#A9D03F" + yellow: "#5852FF" + blue: "#40B972" + magenta: "#C3A6FF" + cyan: "#4AD283" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#A9D03F" + brightYellow: "#716CFF" + brightBlue: "#4AD283" + brightMagenta: "#C3A6FF" + brightCyan: "#4AD2BE" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "purple" + hue: 280 + contrast: + fg: 55.4 + black: 0 + red: 45.1 + green: 69.2 + yellow: 26.2 + blue: 52.5 + magenta: 61.6 + cyan: 64.9 + white: 55.4 + brightBlack: 11.4 + brightRed: 45.1 + brightGreen: 69.2 + brightYellow: 34.3 + brightBlue: 64.9 + brightMagenta: 61.6 + brightCyan: 66.9 + brightWhite: 55.4 diff --git a/themes/darkgreen.yaml b/themes/darkgreen.yaml new file mode 100644 index 00000000..fdfc6fac --- /dev/null +++ b/themes/darkgreen.yaml @@ -0,0 +1,49 @@ +name: "DarkGreen" +source: + marketplace_id: "Tkl02.darkgreen" + version: "0.0.3" + installs: 28 + author: "Tkl02" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Tkl02.darkgreen" +colors: + bg: "#000000" + fg: "#00FFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 92.2 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/darkheist.yaml b/themes/darkheist.yaml new file mode 100644 index 00000000..ddcf8e72 --- /dev/null +++ b/themes/darkheist.yaml @@ -0,0 +1,49 @@ +name: "DarkHeist" +source: + marketplace_id: "EliHeist.darkheist" + version: "0.0.1" + installs: 58 + author: "Eli Heist" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=EliHeist.darkheist" +colors: + bg: "#0D0008" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 340 + contrast: + fg: 80.4 + black: 0 + red: 27.7 + green: 53.9 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 91 diff --git a/themes/darkish.yaml b/themes/darkish.yaml new file mode 100644 index 00000000..12b1e76d --- /dev/null +++ b/themes/darkish.yaml @@ -0,0 +1,49 @@ +name: "Darkish" +source: + marketplace_id: "SylvioRandrianarisata.darkish-gray" + version: "0.0.1" + installs: 781 + author: "Sylvio Randrianarisata" + repo: "https://github.com/Microsoft/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SylvioRandrianarisata.darkish-gray" +colors: + bg: "#1B1B1B" + fg: "#D9D9D9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E4E4E4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 82.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 88.9 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/darkit-astral.yaml b/themes/darkit-astral.yaml new file mode 100644 index 00000000..7106abe8 --- /dev/null +++ b/themes/darkit-astral.yaml @@ -0,0 +1,49 @@ +name: "Darkit Astral" +source: + marketplace_id: "mrheio.darkit" + version: "27.0.1" + installs: 310 + author: "mrheio" + repo: "https://github.com/mrheio/vsc-theme-darkit" + url: "https://marketplace.visualstudio.com/items?itemName=mrheio.darkit" +colors: + bg: "#24283B" + fg: "#A9B1D6" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#A7B0D4" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 57.2 + black: 8.2 + red: 47.3 + green: 70.1 + yellow: 60.1 + blue: 49 + magenta: 52.9 + cyan: 68.4 + white: 56.5 + brightBlack: 8.2 + brightRed: 47.3 + brightGreen: 70.1 + brightYellow: 60.1 + brightBlue: 49 + brightMagenta: 52.9 + brightCyan: 68.4 + brightWhite: 57.2 diff --git a/themes/darkj.yaml b/themes/darkj.yaml new file mode 100644 index 00000000..1e41887f --- /dev/null +++ b/themes/darkj.yaml @@ -0,0 +1,49 @@ +name: "DarkJ" +source: + marketplace_id: "Diego-gh.darkj" + version: "0.0.1" + installs: 328 + author: "Diego-gh" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Diego-gh.darkj" +colors: + bg: "#1E1E1E" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#6A8759" + yellow: "#FFC66D" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.8 + black: 0 + red: 25.9 + green: 32.4 + yellow: 76.1 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/darkknight.yaml b/themes/darkknight.yaml new file mode 100644 index 00000000..80ee791f --- /dev/null +++ b/themes/darkknight.yaml @@ -0,0 +1,49 @@ +name: "DarkKnight" +source: + marketplace_id: "PyJOJO.pycodejojo" + version: "2025.11.13" + installs: 121 + author: "PyJOJO" + repo: "https://github.com/SakuraMYK/PyCodeJOJO" + url: "https://marketplace.visualstudio.com/items?itemName=PyJOJO.pycodejojo" +colors: + bg: "#151515" + fg: "#FFFFFF" + black: "#363B54" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#2AC3DE" + white: "#A9B1D6" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#9ECE6A" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#2AC3DE" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 107.1 + black: 0 + red: 50.1 + green: 67.7 + yellow: 62.9 + blue: 51.9 + magenta: 55.7 + cyan: 60.6 + white: 60.1 + brightBlack: 0 + brightRed: 50.1 + brightGreen: 67.7 + brightYellow: 62.9 + brightBlue: 51.9 + brightMagenta: 55.7 + brightCyan: 60.6 + brightWhite: 60.1 diff --git a/themes/darklimeteal.yaml b/themes/darklimeteal.yaml new file mode 100644 index 00000000..42ec9ee8 --- /dev/null +++ b/themes/darklimeteal.yaml @@ -0,0 +1,49 @@ +name: "darklimeteal" +source: + marketplace_id: "ReubenMarcBraganca.darklimeteal" + version: "0.0.6" + installs: 20 + author: "ReubenMarcBraganca" + repo: "https://github.com/ReubenMarc/theme" + url: "https://marketplace.visualstudio.com/items?itemName=ReubenMarcBraganca.darklimeteal" +colors: + bg: "#1B282E" + fg: "#69D93A" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 228 + contrast: + fg: 66.1 + black: 0 + red: 24.6 + green: 50.9 + yellow: 83.5 + blue: 25.3 + magenta: 27.6 + cyan: 45.4 + white: 87.9 + brightBlack: 19.9 + brightRed: 36.4 + brightGreen: 61.4 + brightYellow: 93.5 + brightBlue: 37.9 + brightMagenta: 43.2 + brightCyan: 53.3 + brightWhite: 87.9 diff --git a/themes/darklover.yaml b/themes/darklover.yaml new file mode 100644 index 00000000..3c69f03c --- /dev/null +++ b/themes/darklover.yaml @@ -0,0 +1,49 @@ +name: "darkLover" +source: + marketplace_id: "rayan2228.darkLover" + version: "1.0.0" + installs: 340 + author: "rayan2228" + repo: "https://github.com/rayan2228/darkLover" + url: "https://marketplace.visualstudio.com/items?itemName=rayan2228.darkLover" +colors: + bg: "#020311" + fg: "#EAECFF" + black: "#666666" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFFF87" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#949494" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFFF00" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 273 + contrast: + fg: 96.1 + black: 23 + red: 27.7 + green: 54 + yellow: 103.8 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 44.6 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 102.7 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/darkly-theme.yaml b/themes/darkly-theme.yaml new file mode 100644 index 00000000..a3358574 --- /dev/null +++ b/themes/darkly-theme.yaml @@ -0,0 +1,49 @@ +name: "Darkly Theme" +source: + marketplace_id: "YoussefMoussaoui.darkly" + version: "1.1.8" + installs: 164 + author: "Youssef Moussaoui" + repo: "https://github.com/youssefm/darkly-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YoussefMoussaoui.darkly" +colors: + bg: "#1D1F21" + fg: "#CCCCCC" + black: "#000000" + red: "#F2777A" + green: "#99CC99" + yellow: "#FFCC66" + blue: "#6699CC" + magenta: "#C081C0" + cyan: "#66CCCC" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#F2777A" + brightGreen: "#99CC99" + brightYellow: "#FFCC66" + brightBlue: "#6699CC" + brightMagenta: "#C081C0" + brightCyan: "#66CCCC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.7 + black: 0 + red: 47.6 + green: 66.3 + yellow: 78.3 + blue: 43.2 + magenta: 44.1 + cyan: 64.7 + white: 105.9 + brightBlack: 0 + brightRed: 47.6 + brightGreen: 66.3 + brightYellow: 78.3 + brightBlue: 43.2 + brightMagenta: 44.1 + brightCyan: 64.7 + brightWhite: 105.9 diff --git a/themes/darkly.yaml b/themes/darkly.yaml new file mode 100644 index 00000000..8321d3f7 --- /dev/null +++ b/themes/darkly.yaml @@ -0,0 +1,49 @@ +name: "Darkly" +source: + marketplace_id: "AyushL.darkly-theme" + version: "1.1.8" + installs: 927 + author: "Ayush Lal" + repo: "https://github.com/ayush-lal/darkly-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AyushL.darkly-theme" +colors: + bg: "#212337" + fg: "#AAB3E5" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFDB8E" + blue: "#65BCFF" + magenta: "#C099FF" + cyan: "#86E1FC" + white: "#C3CDEE" + brightBlack: "#7C85B3" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFDB8E" + brightBlue: "#65BCFF" + brightMagenta: "#C099FF" + brightCyan: "#86E1FC" + brightWhite: "#C3CDEE" +meta: + mode: "dark" + accent: "red" + hue: 279 + contrast: + fg: 59.8 + black: 0 + red: 41.8 + green: 82.3 + yellow: 84.6 + blue: 59.5 + magenta: 54.6 + cyan: 77.9 + white: 73.8 + brightBlack: 35.4 + brightRed: 41.8 + brightGreen: 82.3 + brightYellow: 84.6 + brightBlue: 59.5 + brightMagenta: 54.6 + brightCyan: 77.9 + brightWhite: 73.8 diff --git a/themes/darkness-color-theme.yaml b/themes/darkness-color-theme.yaml new file mode 100644 index 00000000..d30e5f80 --- /dev/null +++ b/themes/darkness-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Darkness-color-theme" +source: + marketplace_id: "digitalspacestudio.digitalspacestdio-darkness" + version: "0.0.7" + installs: 135 + author: "digitalspacestudio" + repo: "https://github.com/digitalspacestdio/vscode-darkness-theme" + url: "https://marketplace.visualstudio.com/items?itemName=digitalspacestudio.digitalspacestdio-darkness" +colors: + bg: "#1A1919" + fg: "#FFFFFF" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 106.6 + black: 0 + red: 24.4 + green: 52.8 + yellow: 57.4 + blue: 34.4 + magenta: 32 + cyan: 50.2 + white: 88.2 + brightBlack: 21.8 + brightRed: 37.1 + brightGreen: 76.7 + brightYellow: 83.7 + brightBlue: 49.6 + brightMagenta: 46.3 + brightCyan: 73.2 + brightWhite: 101.7 diff --git a/themes/darkness-of-my-soul.yaml b/themes/darkness-of-my-soul.yaml new file mode 100644 index 00000000..0580c6dc --- /dev/null +++ b/themes/darkness-of-my-soul.yaml @@ -0,0 +1,49 @@ +name: "darkness_of_my_soul" +source: + marketplace_id: "rnmazouz.darkness-of-my-soul" + version: "1.1.0" + installs: 127 + author: "rnmazouz" + repo: "https://github.com/rayan-mazouz/darkness_of_my_soul" + url: "https://marketplace.visualstudio.com/items?itemName=rnmazouz.darkness-of-my-soul" +colors: + bg: "#222630" + fg: "#E5D0E3" + black: "#010409" + red: "#EE1B26" + green: "#00A676" + yellow: "#EDF86C" + blue: "#47A3FF" + magenta: "#BE89B8" + cyan: "#33829D" + white: "#FEFEFE" + brightBlack: "#041025" + brightRed: "#F2545B" + brightGreen: "#30B76D" + brightYellow: "#E6F53D" + brightBlue: "#B0D7FF" + brightMagenta: "#E5D0E3" + brightCyan: "#7AB6CD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 78.7 + black: 0 + red: 30.7 + green: 41 + yellow: 94.3 + blue: 47.7 + magenta: 44.7 + cyan: 28.6 + white: 104.1 + brightBlack: 0 + brightRed: 38.3 + brightGreen: 48.7 + brightYellow: 91.4 + brightBlue: 76.8 + brightMagenta: 78.7 + brightCyan: 55.1 + brightWhite: 104.8 diff --git a/themes/darko.yaml b/themes/darko.yaml new file mode 100644 index 00000000..b2d88406 --- /dev/null +++ b/themes/darko.yaml @@ -0,0 +1,49 @@ +name: "darko" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#0A0A0A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.3 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/darkoo.yaml b/themes/darkoo.yaml new file mode 100644 index 00000000..67c8e1b4 --- /dev/null +++ b/themes/darkoo.yaml @@ -0,0 +1,49 @@ +name: "darkoo" +source: + marketplace_id: "bambooyuh.darkoo" + version: "0.3.8" + installs: 55 + author: "bambooyuh" + repo: "https://github.com/roachj9/darkoo" + url: "https://marketplace.visualstudio.com/items?itemName=bambooyuh.darkoo" +colors: + bg: "#212733" + fg: "#D9D7CE" + black: "#343D4A" + red: "#F07178" + green: "#BAE67E" + yellow: "#FFCC66" + blue: "#36A3D9" + magenta: "#D4BFFF" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#BAE67E" + brightYellow: "#FFDF80" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#A6FDE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 78.9 + black: 0 + red: 44.3 + green: 79.7 + yellow: 77 + blue: 44.5 + magenta: 70.7 + cyan: 78.6 + white: 69.5 + brightBlack: 20.6 + brightRed: 44.3 + brightGreen: 79.7 + brightYellow: 85.6 + brightBlue: 32.4 + brightMagenta: 55.2 + brightCyan: 92.3 + brightWhite: 104.6 diff --git a/themes/darkorange.yaml b/themes/darkorange.yaml new file mode 100644 index 00000000..2d009643 --- /dev/null +++ b/themes/darkorange.yaml @@ -0,0 +1,49 @@ +name: "darkOrange" +source: + marketplace_id: "BasitTahir.DarkOrange" + version: "1.0.1" + installs: 72 + author: "Abdul Basit" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=BasitTahir.DarkOrange" +colors: + bg: "#DA8013" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: 62 + contrast: + fg: 48.3 + black: 48.3 + red: 16.2 + green: 0 + yellow: 39.9 + blue: 15.5 + magenta: 13.1 + cyan: 0 + white: 44.3 + brightBlack: 21 + brightRed: 0 + brightGreen: 17.8 + brightYellow: 49.9 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 9.6 + brightWhite: 44.3 diff --git a/themes/darkpinkpro.yaml b/themes/darkpinkpro.yaml new file mode 100644 index 00000000..d288c33a --- /dev/null +++ b/themes/darkpinkpro.yaml @@ -0,0 +1,49 @@ +name: "DarkPinkPro" +source: + marketplace_id: "AhmedSaid.darkpinkpro" + version: "0.3.4" + installs: 12745 + author: "Ahmed Said" + repo: "https://github.com/AhmeddSaid/darkpinkpro" + url: "https://marketplace.visualstudio.com/items?itemName=AhmedSaid.darkpinkpro" +colors: + bg: "#181818" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.8 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.5 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/darkplastic.yaml b/themes/darkplastic.yaml new file mode 100644 index 00000000..853fc2fd --- /dev/null +++ b/themes/darkplastic.yaml @@ -0,0 +1,49 @@ +name: "DarkPlastic" +source: + marketplace_id: "StefanRemberg.darkplastic-vc" + version: "1.1.3" + installs: 285 + author: "Stefan Remberg" + repo: "https://github.com/remberg/DarkPlastik-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=StefanRemberg.darkplastic-vc" +colors: + bg: "#0C0F15" + fg: "#A3BFD7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 65.6 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/darkpurple.yaml b/themes/darkpurple.yaml new file mode 100644 index 00000000..be7565d3 --- /dev/null +++ b/themes/darkpurple.yaml @@ -0,0 +1,49 @@ +name: "DarkPurple" +source: + marketplace_id: "bakrimoharram.just-purple" + version: "0.0.1" + installs: 575 + author: "bakrimoharram" + repo: "https://github.com/bakrimoharram/just-purple" + url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.just-purple" +colors: + bg: "#1D001B" + fg: "#D1C7D3" + black: "#6F316B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BCB2BB" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 331 + contrast: + fg: 74 + black: 11.5 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 61.8 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/darkquark.yaml b/themes/darkquark.yaml new file mode 100644 index 00000000..0f6f0457 --- /dev/null +++ b/themes/darkquark.yaml @@ -0,0 +1,49 @@ +name: "Darkquark" +source: + marketplace_id: "SatyamRana.the-prime-themes" + version: "1.0.2" + installs: 130 + author: "Satyam Rana" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SatyamRana.the-prime-themes" +colors: + bg: "#0D1117" + fg: "#F0F6FC" + black: "#484F58" + red: "#FF7B72" + green: "#009A97" + yellow: "#E3B341" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#00D4D0" + brightYellow: "#F2CC60" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + contrast: + fg: 100.9 + black: 13.1 + red: 52.6 + green: 39.7 + yellow: 64.7 + blue: 52.2 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 29.3 + brightRed: 64.8 + brightGreen: 67.9 + brightYellow: 77.6 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 100.9 diff --git a/themes/darkr-green.yaml b/themes/darkr-green.yaml new file mode 100644 index 00000000..0e2a6a8a --- /dev/null +++ b/themes/darkr-green.yaml @@ -0,0 +1,49 @@ +name: "Darkr - Green" +source: + marketplace_id: "RyanCraigMartin.darkr" + version: "0.0.5" + installs: 69 + author: "Ryan Craig Martin" + repo: "https://github.com/ryancraigmartin/Darkr" + url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" +colors: + bg: "#1E2229" + fg: "#FFFFFF" + black: "#313131" + red: "#D77279" + green: "#9EC183" + yellow: "#E1C187" + blue: "#72AEE3" + magenta: "#C792EA" + cyan: "#6DB3BC" + white: "#DADADA" + brightBlack: "#848484" + brightRed: "#EC514C" + brightGreen: "#9EC183" + brightYellow: "#E1C187" + brightBlue: "#5E8BF3" + brightMagenta: "#C792EA" + brightCyan: "#6DB3BC" + brightWhite: "#DADADA" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 105.5 + black: 0 + red: 40.6 + green: 60.8 + yellow: 69.3 + blue: 53.2 + magenta: 52.4 + cyan: 52.9 + white: 81.8 + brightBlack: 34.3 + brightRed: 36.8 + brightGreen: 60.8 + brightYellow: 69.3 + brightBlue: 39.8 + brightMagenta: 52.4 + brightCyan: 52.9 + brightWhite: 81.8 diff --git a/themes/darkred.yaml b/themes/darkred.yaml new file mode 100644 index 00000000..ca3bba3b --- /dev/null +++ b/themes/darkred.yaml @@ -0,0 +1,49 @@ +name: "darkRed" +source: + marketplace_id: "xXkkmXx.DarkPinkRed" + version: "0.0.1" + installs: 10 + author: "xXkkmXx" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xXkkmXx.DarkPinkRed" +colors: + bg: "#1F1B1B" + fg: "#FFC9C9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.2 + black: 0 + red: 26.2 + green: 52.4 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.5 diff --git a/themes/darkroom.yaml b/themes/darkroom.yaml new file mode 100644 index 00000000..ea1bc403 --- /dev/null +++ b/themes/darkroom.yaml @@ -0,0 +1,49 @@ +name: "Darkroom" +source: + marketplace_id: "LokeshKavisth.darkroom" + version: "0.0.6" + installs: 597 + author: "Lokesh Kavisth" + repo: "https://github.com/lokeshkavisth/darkroom" + url: "https://marketplace.visualstudio.com/items?itemName=LokeshKavisth.darkroom" +colors: + bg: "#121421" + fg: "#07CFBC" + black: "#CB8989" + red: "#D51D1D" + green: "#0DBC79" + yellow: "#D1D100" + blue: "#2472C8" + magenta: "#C73CC7" + cyan: "#11A8CD" + white: "#CBCBCB" + brightBlack: "#CB9C54" + brightRed: "#FF6161" + brightGreen: "#23D18B" + brightYellow: "#FFFF33" + brightBlue: "#3B8EEA" + brightMagenta: "#E8A9E8" + brightCyan: "#29B8DB" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "pink" + hue: 277 + contrast: + fg: 64.3 + black: 47.1 + red: 27.1 + green: 53.2 + yellow: 74 + blue: 27.6 + magenta: 32.3 + cyan: 47.7 + white: 74.3 + brightBlack: 52.3 + brightRed: 46 + brightGreen: 63.7 + brightYellow: 102 + brightBlue: 40.2 + brightMagenta: 66.6 + brightCyan: 55.6 + brightWhite: 98.5 diff --git a/themes/darkroy-night.yaml b/themes/darkroy-night.yaml new file mode 100644 index 00000000..fc6297cc --- /dev/null +++ b/themes/darkroy-night.yaml @@ -0,0 +1,49 @@ +name: "DarkRoy Night" +source: + marketplace_id: "Royce.darkroy" + version: "0.0.2" + installs: 135 + author: "Royce" + repo: "https://github.com/royshemtov13/DarkRoy" + url: "https://marketplace.visualstudio.com/items?itemName=Royce.darkroy" +colors: + bg: "#0C090A" + fg: "#EAEAEA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 94.1 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/darkroy.yaml b/themes/darkroy.yaml new file mode 100644 index 00000000..23d6e396 --- /dev/null +++ b/themes/darkroy.yaml @@ -0,0 +1,49 @@ +name: "DarkRoy" +source: + marketplace_id: "Royce.darkroy" + version: "0.0.2" + installs: 135 + author: "Royce" + repo: "https://github.com/royshemtov13/DarkRoy" + url: "https://marketplace.visualstudio.com/items?itemName=Royce.darkroy" +colors: + bg: "#000000" + fg: "#EAEAEA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 94.2 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/darkrr-green.yaml b/themes/darkrr-green.yaml new file mode 100644 index 00000000..cd1328ce --- /dev/null +++ b/themes/darkrr-green.yaml @@ -0,0 +1,49 @@ +name: "Darkrr - Green" +source: + marketplace_id: "RyanCraigMartin.darkr" + version: "0.0.5" + installs: 69 + author: "Ryan Craig Martin" + repo: "https://github.com/ryancraigmartin/Darkr" + url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" +colors: + bg: "#1A1D23" + fg: "#FFFFFF" + black: "#313131" + red: "#D77279" + green: "#9EC183" + yellow: "#E1C187" + blue: "#72AEE3" + magenta: "#C792EA" + cyan: "#6DB3BC" + white: "#DADADA" + brightBlack: "#848484" + brightRed: "#EC514C" + brightGreen: "#9EC183" + brightYellow: "#E1C187" + brightBlue: "#5E8BF3" + brightMagenta: "#C792EA" + brightCyan: "#6DB3BC" + brightWhite: "#DADADA" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 106.2 + black: 0 + red: 41.3 + green: 61.5 + yellow: 70 + blue: 53.9 + magenta: 53.1 + cyan: 53.6 + white: 82.5 + brightBlack: 35 + brightRed: 37.5 + brightGreen: 61.5 + brightYellow: 70 + brightBlue: 40.5 + brightMagenta: 53.1 + brightCyan: 53.6 + brightWhite: 82.5 diff --git a/themes/darkrrr-green.yaml b/themes/darkrrr-green.yaml new file mode 100644 index 00000000..6ecf628b --- /dev/null +++ b/themes/darkrrr-green.yaml @@ -0,0 +1,49 @@ +name: "Darkrrr - Green" +source: + marketplace_id: "RyanCraigMartin.darkr" + version: "0.0.5" + installs: 69 + author: "Ryan Craig Martin" + repo: "https://github.com/ryancraigmartin/Darkr" + url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" +colors: + bg: "#131519" + fg: "#FFFFFF" + black: "#313131" + red: "#D77279" + green: "#9EC183" + yellow: "#E1C187" + blue: "#72AEE3" + magenta: "#C792EA" + cyan: "#6DB3BC" + white: "#DADADA" + brightBlack: "#848484" + brightRed: "#EC514C" + brightGreen: "#9EC183" + brightYellow: "#E1C187" + brightBlue: "#5E8BF3" + brightMagenta: "#C792EA" + brightCyan: "#6DB3BC" + brightWhite: "#DADADA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.1 + black: 0 + red: 42.1 + green: 62.4 + yellow: 70.8 + blue: 54.7 + magenta: 53.9 + cyan: 54.4 + white: 83.3 + brightBlack: 35.9 + brightRed: 38.4 + brightGreen: 62.4 + brightYellow: 70.8 + brightBlue: 41.4 + brightMagenta: 53.9 + brightCyan: 54.4 + brightWhite: 83.3 diff --git a/themes/darkrrrr-green.yaml b/themes/darkrrrr-green.yaml new file mode 100644 index 00000000..0c981bd8 --- /dev/null +++ b/themes/darkrrrr-green.yaml @@ -0,0 +1,49 @@ +name: "Darkrrrr - Green" +source: + marketplace_id: "RyanCraigMartin.darkr" + version: "0.0.5" + installs: 69 + author: "Ryan Craig Martin" + repo: "https://github.com/ryancraigmartin/Darkr" + url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" +colors: + bg: "#121216" + fg: "#FFFFFF" + black: "#313131" + red: "#D77279" + green: "#9EC183" + yellow: "#E1C187" + blue: "#72AEE3" + magenta: "#C792EA" + cyan: "#6DB3BC" + white: "#DADADA" + brightBlack: "#848484" + brightRed: "#EC514C" + brightGreen: "#9EC183" + brightYellow: "#E1C187" + brightBlue: "#5E8BF3" + brightMagenta: "#C792EA" + brightCyan: "#6DB3BC" + brightWhite: "#DADADA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.3 + black: 0 + red: 42.4 + green: 62.6 + yellow: 71.1 + blue: 54.9 + magenta: 54.2 + cyan: 54.6 + white: 83.6 + brightBlack: 36.1 + brightRed: 38.6 + brightGreen: 62.6 + brightYellow: 71.1 + brightBlue: 41.6 + brightMagenta: 54.2 + brightCyan: 54.6 + brightWhite: 83.6 diff --git a/themes/darkrrrrr-green.yaml b/themes/darkrrrrr-green.yaml new file mode 100644 index 00000000..7bd1ee90 --- /dev/null +++ b/themes/darkrrrrr-green.yaml @@ -0,0 +1,49 @@ +name: "Darkrrrrr - Green" +source: + marketplace_id: "RyanCraigMartin.darkr" + version: "0.0.5" + installs: 69 + author: "Ryan Craig Martin" + repo: "https://github.com/ryancraigmartin/Darkr" + url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" +colors: + bg: "#101115" + fg: "#FFFFFF" + black: "#313131" + red: "#D77279" + green: "#9EC183" + yellow: "#E1C187" + blue: "#72AEE3" + magenta: "#C792EA" + cyan: "#6DB3BC" + white: "#DADADA" + brightBlack: "#848484" + brightRed: "#EC514C" + brightGreen: "#9EC183" + brightYellow: "#E1C187" + brightBlue: "#5E8BF3" + brightMagenta: "#C792EA" + brightCyan: "#6DB3BC" + brightWhite: "#DADADA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 42.4 + green: 62.7 + yellow: 71.1 + blue: 55 + magenta: 54.2 + cyan: 54.7 + white: 83.7 + brightBlack: 36.2 + brightRed: 38.7 + brightGreen: 62.7 + brightYellow: 71.1 + brightBlue: 41.7 + brightMagenta: 54.2 + brightCyan: 54.7 + brightWhite: 83.7 diff --git a/themes/darkside-contrast.yaml b/themes/darkside-contrast.yaml new file mode 100644 index 00000000..1318df58 --- /dev/null +++ b/themes/darkside-contrast.yaml @@ -0,0 +1,49 @@ +name: "darkside-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#000000" + fg: "#BABABA" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#1CC3E8" + yellow: "#E8341C" + blue: "#68C244" + magenta: "#F08D24" + cyan: "#8E69C9" + white: "#C7C7C7" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#79DBF1" + brightYellow: "#F18779" + brightBlue: "#A6DB91" + brightMagenta: "#F7BF83" + brightCyan: "#C7B4E4" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65.2 + black: 0 + red: 21.5 + green: 61.9 + yellow: 34 + blue: 58.4 + magenta: 54.1 + cyan: 33 + white: 72.7 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 76.5 + brightYellow: 53.7 + brightBlue: 76.2 + brightMagenta: 74.3 + brightCyan: 66.4 + brightWhite: 96.1 diff --git a/themes/darkside-light.yaml b/themes/darkside-light.yaml new file mode 100644 index 00000000..9e0e5087 --- /dev/null +++ b/themes/darkside-light.yaml @@ -0,0 +1,49 @@ +name: "darkside-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#E0E0E0" + fg: "#222324" + black: "#EDEDED" + red: "#BA0E2E" + green: "#15A2C1" + yellow: "#BF2713" + blue: "#4B8E30" + magenta: "#C1721D" + cyan: "#7B5BAF" + white: "#2E3031" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#50D0EC" + brightYellow: "#ED5E4B" + brightBlue: "#7BC85C" + brightMagenta: "#E7A45D" + brightCyan: "#B2A0D0" + brightWhite: "#545658" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 84.5 + black: 0 + red: 62.1 + green: 38.1 + yellow: 60 + blue: 49.1 + magenta: 45.9 + cyan: 58 + white: 81.4 + brightBlack: 18.2 + brightRed: 45.7 + brightGreen: 15.3 + brightYellow: 41.6 + brightBlue: 21.5 + brightMagenta: 23.3 + brightCyan: 28.6 + brightWhite: 67.4 diff --git a/themes/darkside.yaml b/themes/darkside.yaml new file mode 100644 index 00000000..d1ab6d93 --- /dev/null +++ b/themes/darkside.yaml @@ -0,0 +1,49 @@ +name: "darkside" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#222324" + fg: "#BABABA" + black: "#2E3031" + red: "#BA0E2E" + green: "#1CC3E8" + yellow: "#E8341C" + blue: "#68C244" + magenta: "#F08D24" + cyan: "#8E69C9" + white: "#C7C7C7" + brightBlack: "#545658" + brightRed: "#F03E5F" + brightGreen: "#79DBF1" + brightYellow: "#F18779" + brightBlue: "#A6DB91" + brightMagenta: "#F7BF83" + brightCyan: "#C7B4E4" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 62.6 + black: 0 + red: 18.9 + green: 59.3 + yellow: 31.4 + blue: 55.8 + magenta: 51.5 + cyan: 30.4 + white: 70.1 + brightBlack: 13.8 + brightRed: 35.2 + brightGreen: 73.9 + brightYellow: 51.1 + brightBlue: 73.6 + brightMagenta: 71.7 + brightCyan: 63.9 + brightWhite: 93.6 diff --git a/themes/darksome.yaml b/themes/darksome.yaml new file mode 100644 index 00000000..5062a306 --- /dev/null +++ b/themes/darksome.yaml @@ -0,0 +1,49 @@ +name: "Darksome" +source: + marketplace_id: "rochekollie.darksome" + version: "1.0.1" + installs: 221 + author: "Roche Kollie" + repo: "https://github.com/rochekollie/darksome" + url: "https://marketplace.visualstudio.com/items?itemName=rochekollie.darksome" +colors: + bg: "#101010" + fg: "#FFFFFF" + black: "#171717" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#777777" + brightRed: "#FB543F" + brightGreen: "#237E02" + brightYellow: "#FAC03B" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#018C91" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 42.5 + green: 61.5 + yellow: 73.6 + blue: 48.1 + magenta: 20.1 + cyan: 50 + white: 47.8 + brightBlack: 30.1 + brightRed: 42.5 + brightGreen: 26.2 + brightYellow: 73.6 + brightBlue: 19.3 + brightMagenta: 20.1 + brightCyan: 33.9 + brightWhite: 99.4 diff --git a/themes/darkspace.yaml b/themes/darkspace.yaml new file mode 100644 index 00000000..7b6bd151 --- /dev/null +++ b/themes/darkspace.yaml @@ -0,0 +1,49 @@ +name: "DarkSpace" +source: + marketplace_id: "YesCode.grayspace" + version: "0.0.23" + installs: 768 + author: "YesCode" + repo: "https://github.com/yesomac/platzi_theme" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.grayspace" +colors: + bg: "#1A1B1B" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#A2F1F7" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.1 + black: 0 + red: 41.6 + green: 60.6 + yellow: 72.6 + blue: 47.1 + magenta: 19.1 + cyan: 49 + white: 46.8 + brightBlack: 18.2 + brightRed: 41.6 + brightGreen: 88.8 + brightYellow: 79.3 + brightBlue: 18.3 + brightMagenta: 19.1 + brightCyan: 49 + brightWhite: 98.4 diff --git a/themes/darkstar.yaml b/themes/darkstar.yaml new file mode 100644 index 00000000..626e676e --- /dev/null +++ b/themes/darkstar.yaml @@ -0,0 +1,49 @@ +name: "DarkStar" +source: + marketplace_id: "DarkStar.darkstar" + version: "0.0.5" + installs: 1166 + author: "DarkStar" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=DarkStar.darkstar" +colors: + bg: "#282A36" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 103.9 + black: 0 + red: 23.8 + green: 50 + yellow: 82.7 + blue: 24.5 + magenta: 26.8 + cyan: 44.6 + white: 87.1 + brightBlack: 19.1 + brightRed: 35.6 + brightGreen: 60.6 + brightYellow: 92.7 + brightBlue: 37 + brightMagenta: 42.4 + brightCyan: 52.4 + brightWhite: 87.1 diff --git a/themes/darkstash.yaml b/themes/darkstash.yaml new file mode 100644 index 00000000..35ace246 --- /dev/null +++ b/themes/darkstash.yaml @@ -0,0 +1,49 @@ +name: "DarkStash" +source: + marketplace_id: "HurrellT.theme-darkstash" + version: "1.0.0" + installs: 14 + author: "Tomas Hurrell" + repo: "https://github.com/HurrellT/theme-darkstash" + url: "https://marketplace.visualstudio.com/items?itemName=HurrellT.theme-darkstash" +colors: + bg: "#1D1B1D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/darktra.yaml b/themes/darktra.yaml new file mode 100644 index 00000000..71b6d207 --- /dev/null +++ b/themes/darktra.yaml @@ -0,0 +1,49 @@ +name: "darktra" +source: + marketplace_id: "fajismohd.darktra" + version: "1.4.0" + installs: 922 + author: "fajis mohd" + repo: "https://github.com/fajismohd/Darktra" + url: "https://marketplace.visualstudio.com/items?itemName=fajismohd.darktra" +colors: + bg: "#000000" + fg: "#FAFAFA" + black: "#262E36" + red: "#F07178" + green: "#BAE67E" + yellow: "#FFCC66" + blue: "#36A3D9" + magenta: "#D4BFFF" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#BAE67E" + brightYellow: "#FFCC66" + brightBlue: "#36A3D9" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#C7C7C7" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.6 + black: 0 + red: 47.6 + green: 82.9 + yellow: 80.3 + blue: 47.8 + magenta: 74 + cyan: 81.9 + white: 72.7 + brightBlack: 23.9 + brightRed: 47.6 + brightGreen: 82.9 + brightYellow: 80.3 + brightBlue: 47.8 + brightMagenta: 74 + brightCyan: 81.9 + brightWhite: 72.7 diff --git a/themes/darkula.yaml b/themes/darkula.yaml new file mode 100644 index 00000000..02c40f18 --- /dev/null +++ b/themes/darkula.yaml @@ -0,0 +1,49 @@ +name: "Darkula" +source: + marketplace_id: "JorgeDorio.darkula-theme" + version: "0.0.1" + installs: 3699 + author: "Jorge Dorio" + repo: "https://github.com/JorgeDorio/darkula" + url: "https://marketplace.visualstudio.com/items?itemName=JorgeDorio.darkula-theme" +colors: + bg: "#131313" + fg: "#F8F8F2" + black: "#131313" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 102.3 + black: 0 + red: 43.7 + green: 85.2 + yellow: 98.9 + blue: 54 + magenta: 54.9 + cyan: 84.3 + white: 102.3 + brightBlack: 28.4 + brightRed: 49.2 + brightGreen: 89.4 + brightYellow: 103.9 + brightBlue: 66.5 + brightMagenta: 63 + brightCyan: 97.1 + brightWhite: 107.2 diff --git a/themes/darkuto.yaml b/themes/darkuto.yaml new file mode 100644 index 00000000..d7d2b98f --- /dev/null +++ b/themes/darkuto.yaml @@ -0,0 +1,49 @@ +name: "Darkuto" +source: + marketplace_id: "AmreshMaurya1234.darkuto-theme" + version: "0.0.1" + installs: 197 + author: "ursamresh" + repo: "https://github.com/ursamresh/darkuto" + url: "https://marketplace.visualstudio.com/items?itemName=AmreshMaurya1234.darkuto-theme" +colors: + bg: "#0E1B21" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 229 + contrast: + fg: 79.2 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.5 + cyan: 47.3 + white: 89.7 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/darkvoid-ocean.yaml b/themes/darkvoid-ocean.yaml new file mode 100644 index 00000000..3b6c4603 --- /dev/null +++ b/themes/darkvoid-ocean.yaml @@ -0,0 +1,49 @@ +name: "darkvoid ocean" +source: + marketplace_id: "Aliqyan-21.darkvoid" + version: "2.1.1" + installs: 517 + author: "darkvoid" + repo: "https://github.com/darkvoid-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Aliqyan-21.darkvoid" +colors: + bg: "#141414" + fg: "#C0C0C0" + black: "#121212" + red: "#FF3131" + green: "#2E8B57" + yellow: "#D1D1D1" + blue: "#66B2B2" + magenta: "#B16286" + cyan: "#00FFFD" + white: "#F1F1F1" + brightBlack: "#404040" + brightRed: "#FF7F50" + brightGreen: "#7FCDFF" + brightYellow: "#FFFFBA" + brightBlue: "#93C6C6" + brightMagenta: "#D3869B" + brightCyan: "#00FFFD" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 67.9 + black: 0 + red: 38.7 + green: 31.9 + yellow: 77.9 + blue: 53.2 + magenta: 32 + cyan: 91.3 + white: 98 + brightBlack: 7.7 + brightRed: 52.8 + brightGreen: 70.6 + brightYellow: 104.4 + brightBlue: 66 + brightMagenta: 48.2 + brightCyan: 91.3 + brightWhite: 98 diff --git a/themes/darkvoid.yaml b/themes/darkvoid.yaml new file mode 100644 index 00000000..74da4ec9 --- /dev/null +++ b/themes/darkvoid.yaml @@ -0,0 +1,49 @@ +name: "darkvoid" +source: + marketplace_id: "Aliqyan-21.darkvoid" + version: "2.1.1" + installs: 517 + author: "darkvoid" + repo: "https://github.com/darkvoid-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Aliqyan-21.darkvoid" +colors: + bg: "#141414" + fg: "#C0C0C0" + black: "#141414" + red: "#FF3131" + green: "#B2D8D8" + yellow: "#D1D1D1" + blue: "#66B2B2" + magenta: "#B16286" + cyan: "#1BFD9C" + white: "#F1F1F1" + brightBlack: "#404040" + brightRed: "#FFB3BA" + brightGreen: "#BDFE58" + brightYellow: "#FFFFBA" + brightBlue: "#B2D8D8" + brightMagenta: "#D3869B" + brightCyan: "#1BFD9C" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 67.9 + black: 0 + red: 38.7 + green: 77.8 + yellow: 77.9 + blue: 53.2 + magenta: 32 + cyan: 86.5 + white: 98 + brightBlack: 7.7 + brightRed: 72.1 + brightGreen: 93.8 + brightYellow: 104.4 + brightBlue: 77.8 + brightMagenta: 48.2 + brightCyan: 86.5 + brightWhite: 98 diff --git a/themes/darkwaves-ashen-core.yaml b/themes/darkwaves-ashen-core.yaml new file mode 100644 index 00000000..f81b723d --- /dev/null +++ b/themes/darkwaves-ashen-core.yaml @@ -0,0 +1,49 @@ +name: "Darkwaves: Ashen Core" +source: + marketplace_id: "spacelaxy.spacelaxy-darkwaves" + version: "0.0.8" + installs: 677 + author: "Spacelaxy LLC" + repo: "https://github.com/spacelaxy/darkwaves" + url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" +colors: + bg: "#181A1B" + fg: "#C9C9C9" + black: "#181A1B" + red: "#E87D7D" + green: "#9FDB7D" + yellow: "#E5C07B" + blue: "#6CA0FF" + magenta: "#E5C07B" + cyan: "#8BC6FF" + white: "#C9C9C9" + brightBlack: "#181A1B" + brightRed: "#E87D7D" + brightGreen: "#9FDB7D" + brightYellow: "#E5C07B" + brightBlue: "#6CA0FF" + brightMagenta: "#E5C07B" + brightCyan: "#8BC6FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 72.6 + black: 0 + red: 47.9 + green: 73.7 + yellow: 70.3 + blue: 50.2 + magenta: 70.3 + cyan: 67.8 + white: 72.6 + brightBlack: 0 + brightRed: 47.9 + brightGreen: 73.7 + brightYellow: 70.3 + brightBlue: 50.2 + brightMagenta: 70.3 + brightCyan: 67.8 + brightWhite: 106.6 diff --git a/themes/darkwaves-celestial-mist.yaml b/themes/darkwaves-celestial-mist.yaml new file mode 100644 index 00000000..c72ff31c --- /dev/null +++ b/themes/darkwaves-celestial-mist.yaml @@ -0,0 +1,49 @@ +name: "Darkwaves: Celestial Mist" +source: + marketplace_id: "spacelaxy.spacelaxy-darkwaves" + version: "0.0.8" + installs: 677 + author: "Spacelaxy LLC" + repo: "https://github.com/spacelaxy/darkwaves" + url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" +colors: + bg: "#1A1A1A" + fg: "#DCDCDC" + black: "#DDDDDD" + red: "#DDDDDD" + green: "#DDDDDD" + yellow: "#DDDDDD" + blue: "#DDDDDD" + magenta: "#DDDDDD" + cyan: "#DDDDDD" + white: "#DDDDDD" + brightBlack: "#DDDDDD" + brightRed: "#DDDDDD" + brightGreen: "#DDDDDD" + brightYellow: "#DDDDDD" + brightBlue: "#DDDDDD" + brightMagenta: "#DDDDDD" + brightCyan: "#DDDDDD" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 84.1 + black: 84.7 + red: 84.7 + green: 84.7 + yellow: 84.7 + blue: 84.7 + magenta: 84.7 + cyan: 84.7 + white: 84.7 + brightBlack: 84.7 + brightRed: 84.7 + brightGreen: 84.7 + brightYellow: 84.7 + brightBlue: 84.7 + brightMagenta: 84.7 + brightCyan: 84.7 + brightWhite: 84.7 diff --git a/themes/darkwaves-cloud-lands.yaml b/themes/darkwaves-cloud-lands.yaml new file mode 100644 index 00000000..3828da97 --- /dev/null +++ b/themes/darkwaves-cloud-lands.yaml @@ -0,0 +1,49 @@ +name: "Darkwaves Cloud Lands" +source: + marketplace_id: "spacelaxy.spacelaxy-darkwaves" + version: "0.0.8" + installs: 677 + author: "Spacelaxy LLC" + repo: "https://github.com/spacelaxy/darkwaves" + url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" +colors: + bg: "#15171C" + fg: "#D8DEE9" + black: "#1B1D23" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#8FBCBB" + white: "#D8DEE9" + brightBlack: "#15171C" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 85.4 + black: 0 + red: 33 + green: 61.7 + yellow: 76.4 + blue: 48.6 + magenta: 46.5 + cyan: 60.6 + white: 85.4 + brightBlack: 0 + brightRed: 33 + brightGreen: 61.7 + brightYellow: 76.4 + brightBlue: 48.6 + brightMagenta: 46.5 + brightCyan: 60.6 + brightWhite: 106.9 diff --git a/themes/darkwaves-driftwood.yaml b/themes/darkwaves-driftwood.yaml new file mode 100644 index 00000000..34f275a3 --- /dev/null +++ b/themes/darkwaves-driftwood.yaml @@ -0,0 +1,49 @@ +name: "Darkwaves: Driftwood" +source: + marketplace_id: "spacelaxy.spacelaxy-darkwaves" + version: "0.0.8" + installs: 677 + author: "Spacelaxy LLC" + repo: "https://github.com/spacelaxy/darkwaves" + url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" +colors: + bg: "#1C1B1A" + fg: "#C2BEB9" + black: "#1C1B1A" + red: "#C2BEB9" + green: "#C2BEB9" + yellow: "#C2BEB9" + blue: "#C2BEB9" + magenta: "#C2BEB9" + cyan: "#C2BEB9" + white: "#C2BEB9" + brightBlack: "#1A1918" + brightRed: "#C2BEB9" + brightGreen: "#C2BEB9" + brightYellow: "#C2BEB9" + brightBlue: "#C2BEB9" + brightMagenta: "#C2BEB9" + brightCyan: "#C2BEB9" + brightWhite: "#C2BEB9" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 66.3 + black: 0 + red: 66.3 + green: 66.3 + yellow: 66.3 + blue: 66.3 + magenta: 66.3 + cyan: 66.3 + white: 66.3 + brightBlack: 0 + brightRed: 66.3 + brightGreen: 66.3 + brightYellow: 66.3 + brightBlue: 66.3 + brightMagenta: 66.3 + brightCyan: 66.3 + brightWhite: 66.3 diff --git a/themes/darkwaves-forge.yaml b/themes/darkwaves-forge.yaml new file mode 100644 index 00000000..2a4817d1 --- /dev/null +++ b/themes/darkwaves-forge.yaml @@ -0,0 +1,49 @@ +name: "Darkwaves: Forge" +source: + marketplace_id: "spacelaxy.spacelaxy-darkwaves" + version: "0.0.8" + installs: 677 + author: "Spacelaxy LLC" + repo: "https://github.com/spacelaxy/darkwaves" + url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" +colors: + bg: "#0F1012" + fg: "#D6D9E0" + black: "#0F1012" + red: "#FF5C6E" + green: "#9EE07A" + yellow: "#FFC857" + blue: "#4FC3F7" + magenta: "#C994EC" + cyan: "#5AC8FA" + white: "#D6D9E0" + brightBlack: "#0B0C0E" + brightRed: "#FF5C6E" + brightGreen: "#9EE07A" + brightYellow: "#FFC857" + brightBlue: "#4FC3F7" + brightMagenta: "#C994EC" + brightCyan: "#5AC8FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83 + black: 0 + red: 45.7 + green: 76.8 + yellow: 78 + blue: 63.4 + magenta: 55.4 + cyan: 66.3 + white: 83 + brightBlack: 0 + brightRed: 45.7 + brightGreen: 76.8 + brightYellow: 78 + brightBlue: 63.4 + brightMagenta: 55.4 + brightCyan: 66.3 + brightWhite: 107.4 diff --git a/themes/darkwaves-gray-elegance.yaml b/themes/darkwaves-gray-elegance.yaml new file mode 100644 index 00000000..f1c9c094 --- /dev/null +++ b/themes/darkwaves-gray-elegance.yaml @@ -0,0 +1,49 @@ +name: "Darkwaves Gray Elegance" +source: + marketplace_id: "spacelaxy.spacelaxy-darkwaves" + version: "0.0.8" + installs: 677 + author: "Spacelaxy LLC" + repo: "https://github.com/spacelaxy/darkwaves" + url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" +colors: + bg: "#1E1E22" + fg: "#D4D4D8" + black: "#1E1E22" + red: "#EF9A9A" + green: "#A5D6A7" + yellow: "#FFD984" + blue: "#82A9FF" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#D4D4D8" + brightBlack: "#1A1A1E" + brightRed: "#EF9A9A" + brightGreen: "#A5D6A7" + brightYellow: "#FFD984" + brightBlue: "#82A9FF" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 78.8 + black: 0 + red: 58.3 + green: 72.5 + yellow: 84.4 + blue: 54.7 + magenta: 53.7 + cyan: 83.1 + white: 78.8 + brightBlack: 0 + brightRed: 58.3 + brightGreen: 72.5 + brightYellow: 84.4 + brightBlue: 54.7 + brightMagenta: 53.7 + brightCyan: 83.1 + brightWhite: 106 diff --git a/themes/darkwaves-nebula.yaml b/themes/darkwaves-nebula.yaml new file mode 100644 index 00000000..97897f3a --- /dev/null +++ b/themes/darkwaves-nebula.yaml @@ -0,0 +1,49 @@ +name: "Darkwaves: Nebula" +source: + marketplace_id: "spacelaxy.spacelaxy-darkwaves" + version: "0.0.8" + installs: 677 + author: "Spacelaxy LLC" + repo: "https://github.com/spacelaxy/darkwaves" + url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" +colors: + bg: "#1A1D23" + fg: "#ABB2BF" + black: "#282C34" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#1E2127" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 58.7 + black: 0 + red: 41.4 + green: 61.6 + yellow: 69.9 + blue: 54 + magenta: 44.4 + cyan: 53.9 + white: 58.7 + brightBlack: 0 + brightRed: 41.4 + brightGreen: 61.6 + brightYellow: 69.9 + brightBlue: 54 + brightMagenta: 44.4 + brightCyan: 53.9 + brightWhite: 106.2 diff --git a/themes/darkwaves-obsidian.yaml b/themes/darkwaves-obsidian.yaml new file mode 100644 index 00000000..66c32e81 --- /dev/null +++ b/themes/darkwaves-obsidian.yaml @@ -0,0 +1,49 @@ +name: "Darkwaves: Obsidian" +source: + marketplace_id: "spacelaxy.spacelaxy-darkwaves" + version: "0.0.8" + installs: 677 + author: "Spacelaxy LLC" + repo: "https://github.com/spacelaxy/darkwaves" + url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" +colors: + bg: "#0A0A0A" + fg: "#D0D0D0" + black: "#000000" + red: "#FF6B6B" + green: "#00FF88" + yellow: "#FFD93D" + blue: "#4EC9B0" + magenta: "#C586C0" + cyan: "#00D4FF" + white: "#E8E8E8" + brightBlack: "#000000" + brightRed: "#FF6B6B" + brightGreen: "#00FF88" + brightYellow: "#FFD93D" + brightBlue: "#4EC9B0" + brightMagenta: "#C586C0" + brightCyan: "#00D4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 77.9 + black: 0 + red: 49 + green: 87.6 + yellow: 85.2 + blue: 62.8 + magenta: 48.2 + cyan: 70.8 + white: 92.8 + brightBlack: 0 + brightRed: 49 + brightGreen: 87.6 + brightYellow: 85.2 + brightBlue: 62.8 + brightMagenta: 48.2 + brightCyan: 70.8 + brightWhite: 107.7 diff --git a/themes/darkwaves-spectrum.yaml b/themes/darkwaves-spectrum.yaml new file mode 100644 index 00000000..8ab9867f --- /dev/null +++ b/themes/darkwaves-spectrum.yaml @@ -0,0 +1,49 @@ +name: "Darkwaves Spectrum" +source: + marketplace_id: "spacelaxy.spacelaxy-darkwaves" + version: "0.0.8" + installs: 677 + author: "Spacelaxy LLC" + repo: "https://github.com/spacelaxy/darkwaves" + url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" +colors: + bg: "#121212" + fg: "#E0E0E0" + black: "#121212" + red: "#FF4C4C" + green: "#E07A7A" + yellow: "#E6B965" + blue: "#61AFEF" + magenta: "#C586C0" + cyan: "#4EC9B0" + white: "#E0E0E0" + brightBlack: "#0F0F0F" + brightRed: "#FF4C4C" + brightGreen: "#E07A7A" + brightYellow: "#E6B965" + brightBlue: "#61AFEF" + brightMagenta: "#C586C0" + brightCyan: "#4EC9B0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 42.3 + green: 46.2 + yellow: 67.9 + blue: 55.1 + magenta: 47.8 + cyan: 62.4 + white: 87.3 + brightBlack: 0 + brightRed: 42.3 + brightGreen: 46.2 + brightYellow: 67.9 + brightBlue: 55.1 + brightMagenta: 47.8 + brightCyan: 62.4 + brightWhite: 107.3 diff --git a/themes/darkwind-default.yaml b/themes/darkwind-default.yaml new file mode 100644 index 00000000..32db4a45 --- /dev/null +++ b/themes/darkwind-default.yaml @@ -0,0 +1,49 @@ +name: "Darkwind Default" +source: + marketplace_id: "BlakeDev.darkwind" + version: "1.0.1" + installs: 632 + author: "BlakeDev" + repo: "https://github.com/BlakeCampbells/Darkwind" + url: "https://marketplace.visualstudio.com/items?itemName=BlakeDev.darkwind" +colors: + bg: "#111827" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 265 + contrast: + fg: 79.3 + black: 0 + red: 26.6 + green: 52.8 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.9 diff --git a/themes/darky-purple-storm.yaml b/themes/darky-purple-storm.yaml new file mode 100644 index 00000000..19391a69 --- /dev/null +++ b/themes/darky-purple-storm.yaml @@ -0,0 +1,49 @@ +name: "Darky Purple Storm" +source: + marketplace_id: "AlexanderAlekseenko.darky-purple-theme" + version: "1.4.0" + installs: 11695 + author: "Alexander Alekseenko" + repo: "https://github.com/Akaike0/vsc-darky-purple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.darky-purple-theme" +colors: + bg: "#21202E" + fg: "#848CFF" + black: "#646464" + red: "#CD3131" + green: "#31C089" + yellow: "#E5E510" + blue: "#277AD5" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A1A1A1" + brightBlack: "#777777" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3D8EE8" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 288 + contrast: + fg: 43.9 + black: 19.8 + red: 25.4 + green: 54.3 + yellow: 84.3 + blue: 29.7 + magenta: 28.4 + cyan: 46.2 + white: 49 + brightBlack: 28.2 + brightRed: 37.2 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/darky-purple.yaml b/themes/darky-purple.yaml new file mode 100644 index 00000000..17502090 --- /dev/null +++ b/themes/darky-purple.yaml @@ -0,0 +1,49 @@ +name: "Darky Purple" +source: + marketplace_id: "AlexanderAlekseenko.darky-purple-theme" + version: "1.4.0" + installs: 11695 + author: "Alexander Alekseenko" + repo: "https://github.com/Akaike0/vsc-darky-purple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.darky-purple-theme" +colors: + bg: "#111111" + fg: "#848CFF" + black: "#545454" + red: "#CD3131" + green: "#31C089" + yellow: "#E5E510" + blue: "#277AD5" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A1A1A1" + brightBlack: "#777777" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 45.8 + black: 15.2 + red: 27.2 + green: 56.2 + yellow: 86.1 + blue: 31.5 + magenta: 30.3 + cyan: 48.1 + white: 50.9 + brightBlack: 30.1 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/darkyamaris.yaml b/themes/darkyamaris.yaml new file mode 100644 index 00000000..90f364bb --- /dev/null +++ b/themes/darkyamaris.yaml @@ -0,0 +1,49 @@ +name: "darkyamaris" +source: + marketplace_id: "indiamaris.darkyamaris" + version: "0.0.1" + installs: 20 + author: "indiamaris" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=indiamaris.darkyamaris" +colors: + bg: "#000000" + fg: "#FD00E1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 43.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/darth-insidious.yaml b/themes/darth-insidious.yaml new file mode 100644 index 00000000..733ca2e9 --- /dev/null +++ b/themes/darth-insidious.yaml @@ -0,0 +1,49 @@ +name: "Darth Insidious" +source: + marketplace_id: "Dutchorange.space-wars" + version: "1.1.7" + installs: 1710 + author: "Dutchorange" + repo: "https://github.com/entropy-glitch/space-wars" + url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" +colors: + bg: "#1A1420" + fg: "#E6E1EA" + black: "#2C2235" + red: "#FF4242" + green: "#9F87FF" + yellow: "#E7C374" + blue: "#7F54F6" + magenta: "#BA3BE7" + cyan: "#8B1F1F" + white: "#E6E1EA" + brightBlack: "#6E5C82" + brightRed: "#FF6B6B" + brightGreen: "#B5A3FF" + brightYellow: "#EBD194" + brightBlue: "#9574FF" + brightMagenta: "#CA5BF7" + brightCyan: "#74C4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 307 + contrast: + fg: 88.6 + black: 0 + red: 40.4 + green: 46.5 + yellow: 72 + blue: 28.9 + magenta: 32 + cyan: 11.7 + white: 88.6 + brightBlack: 21 + brightRed: 48.1 + brightGreen: 58.5 + brightYellow: 79.2 + brightBlue: 39.8 + brightMagenta: 41 + brightCyan: 65.7 + brightWhite: 106.9 diff --git a/themes/darth-invader.yaml b/themes/darth-invader.yaml new file mode 100644 index 00000000..85570f8b --- /dev/null +++ b/themes/darth-invader.yaml @@ -0,0 +1,49 @@ +name: "Darth Invader" +source: + marketplace_id: "Dutchorange.space-wars" + version: "1.1.7" + installs: 1710 + author: "Dutchorange" + repo: "https://github.com/entropy-glitch/space-wars" + url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" +colors: + bg: "#050505" + fg: "#E0E0E0" + black: "#1B1B1B" + red: "#FF6464" + green: "#77C677" + yellow: "#FFC74A" + blue: "#3A5FCD" + magenta: "#C98A85" + cyan: "#FF9966" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF6B68" + brightGreen: "#98FB98" + brightYellow: "#FFD700" + brightBlue: "#B5655A" + brightMagenta: "#DB3C3C" + brightCyan: "#FF6464" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 87.9 + black: 0 + red: 47.4 + green: 61.9 + yellow: 77.8 + blue: 23.8 + magenta: 47.8 + cyan: 61.5 + white: 87.9 + brightBlack: 23 + brightRed: 49 + brightGreen: 90.9 + brightYellow: 84.2 + brightBlue: 32.8 + brightMagenta: 32.1 + brightCyan: 47.4 + brightWhite: 107.9 diff --git a/themes/darthbuddy.yaml b/themes/darthbuddy.yaml new file mode 100644 index 00000000..fe375038 --- /dev/null +++ b/themes/darthbuddy.yaml @@ -0,0 +1,49 @@ +name: "darthbuddy" +source: + marketplace_id: "darthp87.darthbuddy" + version: "1.0.0" + installs: 64 + author: "darthp87" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=darthp87.darthbuddy" +colors: + bg: "#161616" + fg: "#FFFFFF" + black: "#121212" + red: "#EC144C" + green: "#00FF77" + yellow: "#FFFFFF" + blue: "#B0B0B0" + magenta: "#7A7A7A" + cyan: "#D5D5D5" + white: "#FFFFFF" + brightBlack: "#737373" + brightRed: "#EC144C" + brightGreen: "#EC144C" + brightYellow: "#FDFDFD" + brightBlue: "#BEBEBE" + brightMagenta: "#939393" + brightCyan: "#F5F5F5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107 + black: 0 + red: 32.6 + green: 86.5 + yellow: 107 + blue: 58.6 + magenta: 31 + cyan: 80.2 + white: 107 + brightBlack: 27.8 + brightRed: 32.6 + brightGreen: 32.6 + brightYellow: 105.6 + brightBlue: 66.5 + brightMagenta: 43.2 + brightCyan: 100.4 + brightWhite: 107 diff --git a/themes/dartpad-candy.yaml b/themes/dartpad-candy.yaml new file mode 100644 index 00000000..2a3df143 --- /dev/null +++ b/themes/dartpad-candy.yaml @@ -0,0 +1,49 @@ +name: "DartPad Candy" +source: + marketplace_id: "Alejandro-FA.vscode-theme-dartpad" + version: "0.5.4" + installs: 5313 + author: "Alejandro-FA" + repo: "https://github.com/Alejandro-FA/vscode-theme-dartpad" + url: "https://marketplace.visualstudio.com/items?itemName=Alejandro-FA.vscode-theme-dartpad" +colors: + bg: "#0E161F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 252 + contrast: + fg: 107 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.2 diff --git a/themes/daru.yaml b/themes/daru.yaml new file mode 100644 index 00000000..5e608e3f --- /dev/null +++ b/themes/daru.yaml @@ -0,0 +1,49 @@ +name: "daru" +source: + marketplace_id: "baboyiban.daru" + version: "0.0.1" + installs: 143 + author: "baboyiban" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=baboyiban.daru" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#97040C" + green: "#17A41A" + yellow: "#99981D" + blue: "#E323E3" + magenta: "#B119B0" + cyan: "#1AA6B1" + white: "#BFBFBF" + brightBlack: "#666666" + brightRed: "#DF0A17" + brightGreen: "#21D726" + brightYellow: "#E5E431" + brightBlue: "#E323E3" + brightMagenta: "#E323E3" + brightCyan: "#27E5E4" + brightWhite: "#E6E5E6" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 88.2 + green: 59.7 + yellow: 57.3 + blue: 63 + magenta: 77.1 + cyan: 55.4 + white: 34.5 + brightBlack: 78.8 + brightRed: 72 + brightGreen: 36.5 + brightYellow: 17.3 + brightBlue: 63 + brightMagenta: 63 + brightCyan: 25.3 + brightWhite: 12.7 diff --git a/themes/darwin.yaml b/themes/darwin.yaml new file mode 100644 index 00000000..8581e0f4 --- /dev/null +++ b/themes/darwin.yaml @@ -0,0 +1,49 @@ +name: "Darwin" +source: + marketplace_id: "chriskseidel.darwin" + version: "1.5.1" + installs: 12800 + author: "Chris K. Seidel" + repo: "https://chriskseidel.visualstudio.com/_git/Darwin" + url: "https://marketplace.visualstudio.com/items?itemName=chriskseidel.darwin" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#3A3A3A" + red: "#F90086" + green: "#08FBCF" + yellow: "#FFF900" + blue: "#54D4FF" + magenta: "#F90086" + cyan: "#54D4FF" + white: "#FFFFFF" + brightBlack: "#3A3A3A" + brightRed: "#F90086" + brightGreen: "#08FBCF" + brightYellow: "#FFF900" + brightBlue: "#54D4FF" + brightMagenta: "#F90086" + brightCyan: "#54D4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 38 + green: 87.9 + yellow: 99.8 + blue: 72.2 + magenta: 38 + cyan: 72.2 + white: 107.9 + brightBlack: 0 + brightRed: 38 + brightGreen: 87.9 + brightYellow: 99.8 + brightBlue: 72.2 + brightMagenta: 38 + brightCyan: 72.2 + brightWhite: 107.9 diff --git a/themes/darxmon.yaml b/themes/darxmon.yaml new file mode 100644 index 00000000..5a54eea1 --- /dev/null +++ b/themes/darxmon.yaml @@ -0,0 +1,49 @@ +name: "DarXmon" +source: + marketplace_id: "xpldan.darkxplmon" + version: "0.1.1" + installs: 120 + author: "XplDan" + repo: "https://github.com/0srD4n/darkxplmon" + url: "https://marketplace.visualstudio.com/items?itemName=xpldan.darkxplmon" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#FFADAD" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F7FF00" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FF0000" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 70.2 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 101.6 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 37.5 diff --git a/themes/dashxe.yaml b/themes/dashxe.yaml new file mode 100644 index 00000000..30e5daa5 --- /dev/null +++ b/themes/dashxe.yaml @@ -0,0 +1,49 @@ +name: "Dashxe" +source: + marketplace_id: "EmilAndersson.dashxe" + version: "0.0.1" + installs: 186 + author: "Emil Andersson" + repo: "https://github.com/emilanderss0n/dashxe-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=EmilAndersson.dashxe" +colors: + bg: "#080E16" + fg: "#FFFFFF" + black: "#545454" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#8C8C8C" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 255 + contrast: + fg: 107.6 + black: 15.4 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.2 + white: 90.7 + brightBlack: 40.3 + brightRed: 39.3 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/davi-lacerda-dark.yaml b/themes/davi-lacerda-dark.yaml new file mode 100644 index 00000000..40b6db44 --- /dev/null +++ b/themes/davi-lacerda-dark.yaml @@ -0,0 +1,49 @@ +name: "Davi Lacerda Dark" +source: + marketplace_id: "DaviLacerda.davi-lacerda-themes" + version: "0.2.1" + installs: 124 + author: "Davi Lacerda" + repo: "https://github.com/davilacerda/davi-lacerda-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DaviLacerda.davi-lacerda-themes" +colors: + bg: "#09090B" + fg: "#FAFAFA" + black: "#484F58" + red: "#FF7B72" + green: "#A3E635" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 104.5 + black: 13.4 + red: 53 + green: 79.6 + yellow: 52.6 + blue: 52.6 + magenta: 52.6 + cyan: 61.8 + white: 64.4 + brightBlack: 29.6 + brightRed: 65.2 + brightGreen: 65.8 + brightYellow: 65.1 + brightBlue: 65.1 + brightMagenta: 65 + brightCyan: 70.3 + brightWhite: 107.8 diff --git a/themes/davi-lacerda-light.yaml b/themes/davi-lacerda-light.yaml new file mode 100644 index 00000000..9c7a9aec --- /dev/null +++ b/themes/davi-lacerda-light.yaml @@ -0,0 +1,49 @@ +name: "Davi Lacerda Light" +source: + marketplace_id: "DaviLacerda.davi-lacerda-themes" + version: "0.2.1" + installs: 124 + author: "Davi Lacerda" + repo: "https://github.com/davilacerda/davi-lacerda-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DaviLacerda.davi-lacerda-themes" +colors: + bg: "#FAFAFA" + fg: "#09090B" + black: "#484F58" + red: "#FF7B72" + green: "#4D7C0F" + yellow: "#F59E0B" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#6366F1" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 102.9 + black: 85.6 + red: 45.9 + green: 71.3 + yellow: 38.8 + blue: 46.3 + magenta: 46.2 + cyan: 37.4 + white: 34.9 + brightBlack: 68.9 + brightRed: 34.1 + brightGreen: 33.5 + brightYellow: 34.2 + brightBlue: 34.2 + brightMagenta: 67.6 + brightCyan: 29.3 + brightWhite: 0 diff --git a/themes/david.yaml b/themes/david.yaml new file mode 100644 index 00000000..4bbb7220 --- /dev/null +++ b/themes/david.yaml @@ -0,0 +1,49 @@ +name: "david" +source: + marketplace_id: "batdavid70.david" + version: "0.0.1" + installs: 233 + author: "batdavid70" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=batdavid70.david" +colors: + bg: "#0B0E11" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.2 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.3 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/daviontheme.yaml b/themes/daviontheme.yaml new file mode 100644 index 00000000..c2655e13 --- /dev/null +++ b/themes/daviontheme.yaml @@ -0,0 +1,49 @@ +name: "DavionTheme" +source: + marketplace_id: "MahdiAlavitabar.daviontheme" + version: "1.1.4" + installs: 102 + author: "Mahdi Alavitabar" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MahdiAlavitabar.daviontheme" +colors: + bg: "#0A0A0A" + fg: "#E6BD8A" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 70.7 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/dawnblush.yaml b/themes/dawnblush.yaml new file mode 100644 index 00000000..9de3e861 --- /dev/null +++ b/themes/dawnblush.yaml @@ -0,0 +1,49 @@ +name: "DawnBlush" +source: + marketplace_id: "shurj0.dawnblush-code" + version: "1.0.5" + installs: 76 + author: "shurj0" + repo: "https://github.com/shurj0/DawnBlush-code" + url: "https://marketplace.visualstudio.com/items?itemName=shurj0.dawnblush-code" +colors: + bg: "#15130F" + fg: "#D4D4D4" + black: "#262A2F" + red: "#BC776C" + green: "#96A682" + yellow: "#A59481" + blue: "#8292A7" + magenta: "#A68295" + cyan: "#9182A6" + white: "#A8B0B8" + brightBlack: "#5F666F" + brightRed: "#D16757" + brightGreen: "#98BC6C" + brightYellow: "#BC976C" + brightBlue: "#6C8FBC" + brightMagenta: "#BD6B97" + brightCyan: "#8D6CBC" + brightWhite: "#EBEDF1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.8 + black: 0 + red: 38.6 + green: 50.4 + yellow: 45.3 + blue: 42.2 + magenta: 40 + cyan: 38.1 + white: 58.3 + brightBlack: 22.1 + brightRed: 37.6 + brightGreen: 59.3 + brightYellow: 48.9 + brightBlue: 40.3 + brightMagenta: 36.9 + brightCyan: 32.2 + brightWhite: 95.4 diff --git a/themes/day-n-nite.yaml b/themes/day-n-nite.yaml new file mode 100644 index 00000000..26b60175 --- /dev/null +++ b/themes/day-n-nite.yaml @@ -0,0 +1,49 @@ +name: "Day 'n' Nite" +source: + marketplace_id: "BrunoKawka.day-n-nite" + version: "0.0.1" + installs: 145 + author: "Bruno Kawka" + repo: "https://github.com/letelete/day-n-nite-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BrunoKawka.day-n-nite" +colors: + bg: "#000000" + fg: "#000000" + black: "#0A0A0A" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#FDF4FF" + cyan: "#06B6D4" + white: "#FFFFFF" + brightBlack: "#0A0A0A" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#E879F9" + brightCyan: "#22D3EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 0 + black: 0 + red: 37.8 + green: 57.8 + yellow: 66.1 + blue: 37.8 + magenta: 102.4 + cyan: 54.9 + white: 107.9 + brightBlack: 0 + brightRed: 49.1 + brightGreen: 71.5 + brightYellow: 78.8 + brightBlue: 52.4 + brightMagenta: 54.1 + brightCyan: 69.6 + brightWhite: 107.9 diff --git a/themes/day.yaml b/themes/day.yaml new file mode 100644 index 00000000..2996801a --- /dev/null +++ b/themes/day.yaml @@ -0,0 +1,49 @@ +name: "day" +source: + marketplace_id: "AninhaPardini.coffee-break-theme" + version: "1.5.0" + installs: 834 + author: "Aninha Pardini" + repo: "https://github.com/AninhaPardini/coffee-break-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AninhaPardini.coffee-break-theme" +colors: + bg: "#FFFAF6" + fg: "#1F1103" + black: "#502F04" + red: "#CD3131" + green: "#00BC00" + yellow: "#D17E12" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#FF9A16" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 102.4 + black: 94.7 + red: 71.5 + green: 46.7 + yellow: 55.4 + blue: 83.5 + magenta: 72 + cyan: 58.1 + white: 83.4 + brightBlack: 76.2 + brightRed: 71.5 + brightGreen: 38.4 + brightYellow: 38.7 + brightBlue: 83.5 + brightMagenta: 72 + brightCyan: 58.1 + brightWhite: 45.9 diff --git a/themes/dayfox.yaml b/themes/dayfox.yaml new file mode 100644 index 00000000..908817dc --- /dev/null +++ b/themes/dayfox.yaml @@ -0,0 +1,49 @@ +name: "Dayfox" +source: + marketplace_id: "michalpopek.dayfox-vsc" + version: "0.1.0" + installs: 1936 + author: "Michał Popek" + repo: "https://github.com/michalpopek/dayfox-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=michalpopek.dayfox-vsc" +colors: + bg: "#F6F2EE" + fg: "#3D2B5A" + black: "#352C24" + red: "#A5222F" + green: "#396847" + yellow: "#AC5402" + blue: "#2848A9" + magenta: "#6E33CE" + cyan: "#287980" + white: "#F2E9E1" + brightBlack: "#534C45" + brightRed: "#B3434E" + brightGreen: "#577F63" + brightYellow: "#B86E28" + brightBlue: "#4863B6" + brightMagenta: "#8452D5" + brightCyan: "#488D93" + brightWhite: "#F4ECE6" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 90.7 + black: 92.8 + red: 76.5 + green: 74.6 + yellow: 67.9 + blue: 80.2 + magenta: 75.6 + cyan: 67.4 + white: 0 + brightBlack: 81.7 + brightRed: 69.2 + brightGreen: 64.1 + brightYellow: 59.2 + brightBlue: 70.5 + brightMagenta: 67.1 + brightCyan: 58.1 + brightWhite: 0 diff --git a/themes/daysofwineandroses.yaml b/themes/daysofwineandroses.yaml new file mode 100644 index 00000000..61252f13 --- /dev/null +++ b/themes/daysofwineandroses.yaml @@ -0,0 +1,49 @@ +name: "DaysOfWineAndRoses" +source: + marketplace_id: "JohannesFreutel.daysofwineandroses" + version: "1.0.5" + installs: 38 + author: "JohannesFreutel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.daysofwineandroses" +colors: + bg: "#050306" + fg: "#9A7D75" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 316 + contrast: + fg: 36.4 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/dbt-fusion.yaml b/themes/dbt-fusion.yaml new file mode 100644 index 00000000..a2d08bae --- /dev/null +++ b/themes/dbt-fusion.yaml @@ -0,0 +1,49 @@ +name: "dbt Fusion" +source: + marketplace_id: "dbtLabsInc.dbt" + version: "0.54.0" + installs: 76524 + author: "dbt Labs Inc" + repo: "https://github.com/dbt-labs/dbt-fusion" + url: "https://marketplace.visualstudio.com/items?itemName=dbtLabsInc.dbt" +colors: + bg: "#0B1321" + fg: "#E0D7FF" + black: "#444C5E" + red: "#EB4610" + green: "#3CCE96" + yellow: "#F8E230" + blue: "#5362FF" + magenta: "#C45E97" + cyan: "#1DB6D8" + white: "#E5E5E5" + brightBlack: "#444C5E" + brightRed: "#F75B28" + brightGreen: "#44F7B2" + brightYellow: "#FFE61F" + brightBlue: "#6E7BFF" + brightMagenta: "#EA48A2" + brightCyan: "#21D7FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: 261 + contrast: + fg: 84.8 + black: 12 + red: 36.1 + green: 63.2 + yellow: 87.4 + blue: 29.6 + magenta: 35.1 + cyan: 54.5 + white: 90.3 + brightBlack: 12 + brightRed: 42.4 + brightGreen: 84.7 + brightYellow: 90.3 + brightBlue: 38.4 + brightMagenta: 39.2 + brightCyan: 71.8 + brightWhite: 90.3 diff --git a/themes/dbt-inspired-dark-theme.yaml b/themes/dbt-inspired-dark-theme.yaml new file mode 100644 index 00000000..6ca91433 --- /dev/null +++ b/themes/dbt-inspired-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "DBT Inspired Dark Theme" +source: + marketplace_id: "jayzelenkov.jz-vscode-themes" + version: "0.0.2" + installs: 6 + author: "Jay Zelenkov" + repo: "https://github.com/jayzelenkov/jz-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=jayzelenkov.jz-vscode-themes" +colors: + bg: "#161514" + fg: "#F6F6F6" + black: "#2F2D2C" + red: "#F64B44" + green: "#31A753" + yellow: "#D47500" + blue: "#1894F8" + magenta: "#F83D75" + cyan: "#0BA58B" + white: "#EBE9E9" + brightBlack: "#736D6C" + brightRed: "#FF866F" + brightGreen: "#45D170" + brightYellow: "#F79900" + brightBlue: "#6AB8FF" + brightMagenta: "#FF82A1" + brightCyan: "#38CCB2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.1 + black: 0 + red: 39.6 + green: 43.4 + yellow: 40.9 + blue: 42.7 + magenta: 39.3 + cyan: 43.5 + white: 93 + brightBlack: 25.8 + brightRed: 55.1 + brightGreen: 63.8 + brightYellow: 58.3 + brightBlue: 60.1 + brightMagenta: 55.5 + brightCyan: 63 + brightWhite: 107 diff --git a/themes/dbt-inspired-light-theme.yaml b/themes/dbt-inspired-light-theme.yaml new file mode 100644 index 00000000..bc82f568 --- /dev/null +++ b/themes/dbt-inspired-light-theme.yaml @@ -0,0 +1,49 @@ +name: "DBT Inspired Light Theme" +source: + marketplace_id: "jayzelenkov.jz-vscode-themes" + version: "0.0.2" + installs: 6 + author: "Jay Zelenkov" + repo: "https://github.com/jayzelenkov/jz-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=jayzelenkov.jz-vscode-themes" +colors: + bg: "#FDFDFD" + fg: "#1C1A19" + black: "#1C1A19" + red: "#8D0D10" + green: "#105A20" + yellow: "#AB5100" + blue: "#004895" + magenta: "#8B0839" + cyan: "#105748" + white: "#CFCDCC" + brightBlack: "#4E4A49" + brightRed: "#C42C28" + brightGreen: "#188435" + brightYellow: "#D47500" + brightBlue: "#006DCE" + brightMagenta: "#CA0356" + brightCyan: "#17806C" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 103 + black: 103 + red: 89 + green: 87.3 + yellow: 74.9 + blue: 88.4 + magenta: 89 + cyan: 87.6 + white: 25.3 + brightBlack: 88.8 + brightRed: 75.3 + brightGreen: 71.5 + brightYellow: 58.8 + brightBlue: 73.5 + brightMagenta: 75 + brightCyan: 71.9 + brightWhite: 0 diff --git a/themes/dcdevthemered.yaml b/themes/dcdevthemered.yaml new file mode 100644 index 00000000..51b81ba8 --- /dev/null +++ b/themes/dcdevthemered.yaml @@ -0,0 +1,49 @@ +name: "DcDevThemeRed" +source: + marketplace_id: "DcDevThemeRed.DcDevThemeRed" + version: "0.0.1" + installs: 260 + author: "DcDevThemeRed" + repo: "https://github.com/DcDevRep/dcdevthemered" + url: "https://marketplace.visualstudio.com/items?itemName=DcDevThemeRed.DcDevThemeRed" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFC1C1" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FF7676" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 78.3 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 51.9 diff --git a/themes/deadbeef.yaml b/themes/deadbeef.yaml new file mode 100644 index 00000000..879e70bc --- /dev/null +++ b/themes/deadbeef.yaml @@ -0,0 +1,49 @@ +name: "deadbeef" +source: + marketplace_id: "Prelly95.deadbeef" + version: "1.1.0" + installs: 306 + author: "Prelly95" + repo: "https://github.com/Prelly95/deadbeef" + url: "https://marketplace.visualstudio.com/items?itemName=Prelly95.deadbeef" +colors: + bg: "#292D3E" + fg: "#FCE8C3" + black: "#1C1B19" + red: "#EF2F27" + green: "#519F50" + yellow: "#FBB829" + blue: "#2C78BF" + magenta: "#E02C6D" + cyan: "#0AAEB3" + white: "#918175" + brightBlack: "#2D2C29" + brightRed: "#F75341" + brightGreen: "#98BC37" + brightYellow: "#FED06E" + brightBlue: "#68A8E4" + brightMagenta: "#FF5C8F" + brightCyan: "#53FDE9" + brightWhite: "#FCE8C3" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 89.7 + black: 0 + red: 30.7 + green: 37.3 + yellow: 66.4 + blue: 25.3 + magenta: 28.1 + cyan: 45.2 + white: 32 + brightBlack: 0 + brightRed: 37.3 + brightGreen: 54.6 + brightYellow: 77.3 + brightBlue: 47.9 + brightMagenta: 42.5 + brightCyan: 86.5 + brightWhite: 89.7 diff --git a/themes/deadpool.yaml b/themes/deadpool.yaml new file mode 100644 index 00000000..2f80eb91 --- /dev/null +++ b/themes/deadpool.yaml @@ -0,0 +1,49 @@ +name: "DeadPool" +source: + marketplace_id: "MukeshJoshi.dodopool" + version: "0.0.6" + installs: 1803 + author: "Mukesh Joshi" + repo: "https://github.com/orangepreneur/dodopool" + url: "https://marketplace.visualstudio.com/items?itemName=MukeshJoshi.dodopool" +colors: + bg: "#13171B" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#B64853" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 248 + contrast: + fg: 59.4 + black: 0 + red: 26.7 + green: 53 + yellow: 85.7 + blue: 25.7 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90.1 diff --git a/themes/deaving-theme.yaml b/themes/deaving-theme.yaml new file mode 100644 index 00000000..0d082966 --- /dev/null +++ b/themes/deaving-theme.yaml @@ -0,0 +1,49 @@ +name: "Deaving-Theme" +source: + marketplace_id: "deaving.deaving-theme" + version: "0.0.1" + installs: 22 + author: "deaving" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=deaving.deaving-theme" +colors: + bg: "#141414" + fg: "#F5F5F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 100.6 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/decayce.yaml b/themes/decayce.yaml new file mode 100644 index 00000000..a47fd525 --- /dev/null +++ b/themes/decayce.yaml @@ -0,0 +1,49 @@ +name: "Decayce" +source: + marketplace_id: "decaycs.decay" + version: "1.0.9" + installs: 37704 + author: "decaycs" + repo: "https://github.com/decaycs/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" +colors: + bg: "#0D0F18" + fg: "#A5B6CF" + black: "#151720" + red: "#DD6777" + green: "#90CEAA" + yellow: "#ECD3A0" + blue: "#86AAEC" + magenta: "#C296EB" + cyan: "#93CEE9" + white: "#CBCED3" + brightBlack: "#1C1E27" + brightRed: "#DD6777" + brightGreen: "#90CEAA" + brightYellow: "#E9A180" + brightBlue: "#86AAEC" + brightMagenta: "#C296EB" + brightCyan: "#93CEE9" + brightWhite: "#A5B6CF" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 61.7 + black: 0 + red: 41 + green: 68.5 + yellow: 81.1 + blue: 55.6 + magenta: 55 + cyan: 71.6 + white: 76.3 + brightBlack: 0 + brightRed: 41 + brightGreen: 68.5 + brightYellow: 60.3 + brightBlue: 55.6 + brightMagenta: 55 + brightCyan: 71.6 + brightWhite: 61.7 diff --git a/themes/deco.yaml b/themes/deco.yaml new file mode 100644 index 00000000..d61dcf3a --- /dev/null +++ b/themes/deco.yaml @@ -0,0 +1,49 @@ +name: "Deco" +source: + marketplace_id: "ParsaDehghani.DecoTheme" + version: "0.0.3" + installs: 88 + author: "Parsa Dehghani" + repo: "https://github.com/Gamer2030a/VSDecoTheme" + url: "https://marketplace.visualstudio.com/items?itemName=ParsaDehghani.DecoTheme" +colors: + bg: "#04151B" + fg: "#D6CEFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 222 + contrast: + fg: 79.7 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30.1 + cyan: 47.9 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.9 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/deeold.yaml b/themes/deeold.yaml new file mode 100644 index 00000000..7dcf08fe --- /dev/null +++ b/themes/deeold.yaml @@ -0,0 +1,49 @@ +name: "Deeold" +source: + marketplace_id: "xyr0z1ne.deeold" + version: "0.0.3" + installs: 1859 + author: "xyr0z1ne" + repo: "https://github.com/Xyr0s1gn/deeold" + url: "https://marketplace.visualstudio.com/items?itemName=xyr0z1ne.deeold" +colors: + bg: "#121824" + fg: "#ADB6C2" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FF9713" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FF9713" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#171F2E" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 61.2 + black: 0 + red: 47 + green: 66.2 + yellow: 59 + blue: 38.6 + magenta: 64.2 + cyan: 92.6 + white: 106.8 + brightBlack: 14.5 + brightRed: 47 + brightGreen: 66.2 + brightYellow: 59 + brightBlue: 38.6 + brightMagenta: 64.2 + brightCyan: 92.6 + brightWhite: 0 diff --git a/themes/deep-dark.yaml b/themes/deep-dark.yaml new file mode 100644 index 00000000..6313e5f5 --- /dev/null +++ b/themes/deep-dark.yaml @@ -0,0 +1,49 @@ +name: "Deep Dark" +source: + marketplace_id: "andrey2620.andrey2620-theme" + version: "1.0.0" + installs: 8 + author: "andrey2620" + repo: "https://github.com/andrey2620/andrey2620-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrey2620.andrey2620-theme" +colors: + bg: "#151515" + fg: "#E181FF" + black: "#000000" + red: "#FF0000" + green: "#FDA400" + yellow: "#B54AFD" + blue: "#404CBB" + magenta: "#FF6905" + cyan: "#00A563" + white: "#FF7777" + brightBlack: "#808080" + brightRed: "#DD4F4F" + brightGreen: "#A7D651" + brightYellow: "#FF0099" + brightBlue: "#67DA0A" + brightMagenta: "#CC00FF" + brightCyan: "#4043E6" + brightWhite: "#FFFAFA" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 54.5 + black: 0 + red: 36.7 + green: 63.2 + yellow: 35.2 + blue: 17.1 + magenta: 46.8 + cyan: 42.4 + white: 51.4 + brightBlack: 33.9 + brightRed: 34.8 + brightGreen: 71.9 + brightYellow: 39.4 + brightBlue: 68.6 + brightMagenta: 34.7 + brightCyan: 19.2 + brightWhite: 104.5 diff --git a/themes/deep-indigo-wisdom-intuition.yaml b/themes/deep-indigo-wisdom-intuition.yaml new file mode 100644 index 00000000..5115d121 --- /dev/null +++ b/themes/deep-indigo-wisdom-intuition.yaml @@ -0,0 +1,49 @@ +name: "Deep Indigo - Wisdom & Intuition" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#0F0F1A" + fg: "#E8EAF6" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 94.1 + black: 0 + red: 38.3 + green: 48.1 + yellow: 92.9 + blue: 43.6 + magenta: 33.2 + cyan: 57.1 + white: 96.6 + brightBlack: 9.6 + brightRed: 43.4 + brightGreen: 82.6 + brightYellow: 102.3 + brightBlue: 41.1 + brightMagenta: 42 + brightCyan: 91.8 + brightWhite: 107.4 diff --git a/themes/deep-ocean.yaml b/themes/deep-ocean.yaml new file mode 100644 index 00000000..ce4abfde --- /dev/null +++ b/themes/deep-ocean.yaml @@ -0,0 +1,49 @@ +name: "Deep Ocean" +source: + marketplace_id: "codeM.mystic-dark-collection" + version: "0.1.0" + installs: 86 + author: "Mustafa Özdemir" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=codeM.mystic-dark-collection" +colors: + bg: "#0A1A2A" + fg: "#E0F7FA" + black: "#0A1A2A" + red: "#FF4757" + green: "#48D1CC" + yellow: "#FFA726" + blue: "#4169E1" + magenta: "#FF6B6B" + cyan: "#40E0D0" + white: "#E0F7FA" + brightBlack: "#1A2F3F" + brightRed: "#FF6B6B" + brightGreen: "#66D9EF" + brightYellow: "#FFCC02" + brightBlue: "#6495ED" + brightMagenta: "#FF8A80" + brightCyan: "#48D1CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 250 + contrast: + fg: 98.4 + black: 0 + red: 41 + green: 66.4 + yellow: 64.2 + blue: 27.2 + magenta: 47.8 + cyan: 73.6 + white: 98.4 + brightBlack: 0 + brightRed: 47.8 + brightGreen: 73.1 + brightYellow: 78.3 + brightBlue: 44.4 + brightMagenta: 56.2 + brightCyan: 66.4 + brightWhite: 106.6 diff --git a/themes/deep-purple-fork-fork.yaml b/themes/deep-purple-fork-fork.yaml new file mode 100644 index 00000000..7d45de30 --- /dev/null +++ b/themes/deep-purple-fork-fork.yaml @@ -0,0 +1,49 @@ +name: "Deep Purple - Fork - Fork" +source: + marketplace_id: "stackdevlopr.sd-deep-purple-theme" + version: "1.1.0" + installs: 146 + author: "stackdevlopr" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=stackdevlopr.sd-deep-purple-theme" +colors: + bg: "#181B21" + fg: "#FF0000" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 36.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/deep-purple-fork.yaml b/themes/deep-purple-fork.yaml new file mode 100644 index 00000000..061dab3e --- /dev/null +++ b/themes/deep-purple-fork.yaml @@ -0,0 +1,49 @@ +name: "Deep Purple - Fork" +source: + marketplace_id: "MrudulMistri.mystic-fusion-theme" + version: "1.0.18" + installs: 74 + author: "Mrudul Mistri" + repo: "https://github.com/Mrudul1234/mystic-fusion-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MrudulMistri.mystic-fusion-theme" +colors: + bg: "#16111B" + fg: "#E4EEF0" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 307 + contrast: + fg: 94.9 + black: 0 + red: 27.1 + green: 53.3 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.4 diff --git a/themes/deep-purple-theme.yaml b/themes/deep-purple-theme.yaml new file mode 100644 index 00000000..a257bf87 --- /dev/null +++ b/themes/deep-purple-theme.yaml @@ -0,0 +1,49 @@ +name: "deep-purple-theme" +source: + marketplace_id: "miles-crighton.deep-purple" + version: "0.0.15" + installs: 1 + author: "miles-crighton" + repo: "https://github.com/miles-crighton/deep-purple-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=miles-crighton.deep-purple" +colors: + bg: "#39293B" + fg: "#FFE3E3" + black: "#9C6F9F" + red: "#E05470" + green: "#A4BC77" + yellow: "#EBB984" + blue: "#8078D1" + magenta: "#EB579C" + cyan: "#9AE0F0" + white: "#FFE3E3" + brightBlack: "#9C6F9F" + brightRed: "#EF4568" + brightGreen: "#A7C966" + brightYellow: "#F9B975" + brightBlue: "#9994FF" + brightMagenta: "#E54386" + brightCyan: "#87DDEE" + brightWhite: "#FFF0F0" +meta: + mode: "dark" + accent: "red" + hue: 323 + contrast: + fg: 89 + black: 29.2 + red: 33.1 + green: 56.6 + yellow: 65.2 + blue: 31.5 + magenta: 37.5 + cyan: 76.4 + white: 89 + brightBlack: 29.2 + brightRed: 33.9 + brightGreen: 62.3 + brightYellow: 67.2 + brightBlue: 46.2 + brightMagenta: 32.2 + brightCyan: 73.4 + brightWhite: 95.4 diff --git a/themes/deep-purple.yaml b/themes/deep-purple.yaml new file mode 100644 index 00000000..82f4520c --- /dev/null +++ b/themes/deep-purple.yaml @@ -0,0 +1,49 @@ +name: "Deep Purple" +source: + marketplace_id: "HGlennon.raisin" + version: "1.0.6" + installs: 26 + author: "HGlennon" + repo: "https://github.com/HGlennon/Raisin" + url: "https://marketplace.visualstudio.com/items?itemName=HGlennon.raisin" +colors: + bg: "#171320" + fg: "#DEDEDE" + black: "#8C8C8C" + red: "#DD7373" + green: "#0FD287" + yellow: "#E5E510" + blue: "#468FDD" + magenta: "#BC3FBC" + cyan: "#12B9E2" + white: "#E5E5E5" + brightBlack: "#A1A1A1" + brightRed: "#F36D6D" + brightGreen: "#3BDE9D" + brightYellow: "#F5F543" + brightBlue: "#589EEE" + brightMagenta: "#DC84DC" + brightCyan: "#51C4E1" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 298 + contrast: + fg: 85.8 + black: 39.8 + red: 43.3 + green: 63.9 + yellow: 85.8 + blue: 40 + magenta: 29.9 + cyan: 56.2 + white: 90.2 + brightBlack: 50.5 + brightRed: 46.2 + brightGreen: 71 + brightYellow: 95.8 + brightBlue: 47.6 + brightMagenta: 52.2 + brightCyan: 62.3 + brightWhite: 90.2 diff --git a/themes/deep-rainforest.yaml b/themes/deep-rainforest.yaml new file mode 100644 index 00000000..f24b62e7 --- /dev/null +++ b/themes/deep-rainforest.yaml @@ -0,0 +1,49 @@ +name: "Deep Rainforest" +source: + marketplace_id: "yeskunall.deep-rainforest" + version: "0.3.0" + installs: 646 + author: "Kunall Banerjee" + repo: "https://github.com/yeskunall/deep-rainforest" + url: "https://marketplace.visualstudio.com/items?itemName=yeskunall.deep-rainforest" +colors: + bg: "#000E14" + fg: "#006666" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 222 + contrast: + fg: 18.7 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 90.7 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/deep-space-dark.yaml b/themes/deep-space-dark.yaml new file mode 100644 index 00000000..628ebc8a --- /dev/null +++ b/themes/deep-space-dark.yaml @@ -0,0 +1,49 @@ +name: "Deep Space Dark" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#0A0019" + fg: "#FFFFFF" + black: "#474747" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 301 + contrast: + fg: 107.8 + black: 10.8 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/deepwave.yaml b/themes/deepwave.yaml new file mode 100644 index 00000000..a331e517 --- /dev/null +++ b/themes/deepwave.yaml @@ -0,0 +1,49 @@ +name: "DeepWave" +source: + marketplace_id: "NelsonDJCR.deepwave" + version: "0.0.1" + installs: 10 + author: "NelsonDJCR" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NelsonDJCR.deepwave" +colors: + bg: "#0D0F15" + fg: "#AFB07E" + black: "#453D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EEEEEE" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 57.4 + black: 7.7 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 96.4 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/deepwoods-autumn-needles-italic.yaml b/themes/deepwoods-autumn-needles-italic.yaml new file mode 100644 index 00000000..0c2fd49c --- /dev/null +++ b/themes/deepwoods-autumn-needles-italic.yaml @@ -0,0 +1,49 @@ +name: "Deepwoods Autumn Needles Italic" +source: + marketplace_id: "just-spliff.frosty-pine" + version: "1.1.4" + installs: 63 + author: "just-spliff" + repo: "https://github.com/just-spliff/frosty-pine" + url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" +colors: + bg: "#090806" + fg: "#FFF8F0" + black: "#15100C" + red: "#E36B5F" + green: "#8AA37C" + yellow: "#E9A86C" + blue: "#A49B8F" + magenta: "#BF8A82" + cyan: "#C2D2B7" + white: "#FFF8F0" + brightBlack: "#43372D" + brightRed: "#F18977" + brightGreen: "#B6C79B" + brightYellow: "#F4C98D" + brightBlue: "#C0B7AA" + brightMagenta: "#D9A496" + brightCyan: "#E4F0DE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 103.8 + black: 0 + red: 42.8 + green: 48.5 + yellow: 62.6 + blue: 48.8 + magenta: 46.1 + cyan: 76.1 + white: 103.8 + brightBlack: 0 + brightRed: 54.1 + brightGreen: 69 + brightYellow: 77.9 + brightBlue: 64 + brightMagenta: 59.6 + brightCyan: 95.6 + brightWhite: 107.8 diff --git a/themes/deepwoods-frosted-pines-italic.yaml b/themes/deepwoods-frosted-pines-italic.yaml new file mode 100644 index 00000000..c00041c2 --- /dev/null +++ b/themes/deepwoods-frosted-pines-italic.yaml @@ -0,0 +1,49 @@ +name: "Deepwoods Frosted Pines Italic" +source: + marketplace_id: "just-spliff.frosty-pine" + version: "1.1.4" + installs: 63 + author: "just-spliff" + repo: "https://github.com/just-spliff/frosty-pine" + url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" +colors: + bg: "#05070B" + fg: "#F5FAFF" + black: "#11151C" + red: "#E38A9E" + green: "#7CB4A0" + yellow: "#CFE7C0" + blue: "#8FA7C7" + magenta: "#B6ABD8" + cyan: "#A5DFF9" + white: "#F5FAFF" + brightBlack: "#3B4652" + brightRed: "#F2A3B5" + brightGreen: "#AEE6C7" + brightYellow: "#E5F5D8" + brightBlue: "#B9CBE4" + brightMagenta: "#D2C5F0" + brightCyan: "#CDEBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 260 + contrast: + fg: 104.1 + black: 0 + red: 53 + green: 55.5 + yellow: 87.6 + blue: 53.5 + magenta: 60.1 + cyan: 82 + white: 104.1 + brightBlack: 10.1 + brightRed: 64.6 + brightGreen: 83.8 + brightYellow: 97.8 + brightBlue: 74 + brightMagenta: 75.2 + brightCyan: 92 + brightWhite: 107.8 diff --git a/themes/deepwoods-high-canopy-italic.yaml b/themes/deepwoods-high-canopy-italic.yaml new file mode 100644 index 00000000..6796d272 --- /dev/null +++ b/themes/deepwoods-high-canopy-italic.yaml @@ -0,0 +1,49 @@ +name: "Deepwoods High Canopy Italic" +source: + marketplace_id: "just-spliff.frosty-pine" + version: "1.1.4" + installs: 63 + author: "just-spliff" + repo: "https://github.com/just-spliff/frosty-pine" + url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" +colors: + bg: "#050807" + fg: "#F7FFF5" + black: "#11160F" + red: "#F28B82" + green: "#8EDC73" + yellow: "#CFEA8A" + blue: "#9BAE97" + magenta: "#B59F8E" + cyan: "#B7F1C5" + white: "#F7FFF5" + brightBlack: "#3D493C" + brightRed: "#F7A395" + brightGreen: "#B7F171" + brightYellow: "#E6FFD2" + brightBlue: "#C0D1BF" + brightMagenta: "#D0BBA6" + brightCyan: "#E0FFE9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 106.2 + black: 0 + red: 55.2 + green: 73.8 + yellow: 87.4 + blue: 55.4 + magenta: 52.4 + cyan: 89.9 + white: 106.2 + brightBlack: 10.4 + brightRed: 64.4 + brightGreen: 87.7 + brightYellow: 102.5 + brightBlue: 75.8 + brightMagenta: 67.6 + brightCyan: 102.7 + brightWhite: 107.8 diff --git a/themes/deepwoods-spring-thaw-italic.yaml b/themes/deepwoods-spring-thaw-italic.yaml new file mode 100644 index 00000000..4476dde2 --- /dev/null +++ b/themes/deepwoods-spring-thaw-italic.yaml @@ -0,0 +1,49 @@ +name: "Deepwoods Spring Thaw Italic" +source: + marketplace_id: "just-spliff.frosty-pine" + version: "1.1.4" + installs: 63 + author: "just-spliff" + repo: "https://github.com/just-spliff/frosty-pine" + url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" +colors: + bg: "#060809" + fg: "#F5F8F6" + black: "#101414" + red: "#4E7D5A" + green: "#8FD39A" + yellow: "#CBEA96" + blue: "#A8B3AE" + magenta: "#A8B3AE" + cyan: "#E0F8E6" + white: "#F5F8F6" + brightBlack: "#3A4440" + brightRed: "#6BA874" + brightGreen: "#CBEA96" + brightYellow: "#E0F8E6" + brightBlue: "#D0DDDA" + brightMagenta: "#D0DDDA" + brightCyan: "#F5F8F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 102.7 + black: 0 + red: 28.6 + green: 70.6 + yellow: 87.2 + blue: 59.7 + magenta: 59.7 + cyan: 99.2 + white: 102.7 + brightBlack: 9 + brightRed: 47.9 + brightGreen: 87.2 + brightYellow: 99.2 + brightBlue: 84.2 + brightMagenta: 84.2 + brightCyan: 102.7 + brightWhite: 107.8 diff --git a/themes/default-dimmed.yaml b/themes/default-dimmed.yaml new file mode 100644 index 00000000..2fe94b30 --- /dev/null +++ b/themes/default-dimmed.yaml @@ -0,0 +1,49 @@ +name: "Default dimmed" +source: + marketplace_id: "arthurimmich.default-dimmed" + version: "0.3.0" + installs: 450 + author: "arthurimmich" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=arthurimmich.default-dimmed" +colors: + bg: "#252526" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.6 + black: 0 + red: 24.8 + green: 51.1 + yellow: 83.7 + blue: 25.5 + magenta: 27.8 + cyan: 45.6 + white: 88.1 + brightBlack: 20.1 + brightRed: 36.6 + brightGreen: 61.6 + brightYellow: 93.7 + brightBlue: 38.1 + brightMagenta: 43.5 + brightCyan: 53.5 + brightWhite: 88.1 diff --git a/themes/default-enhanced.yaml b/themes/default-enhanced.yaml new file mode 100644 index 00000000..e07d732f --- /dev/null +++ b/themes/default-enhanced.yaml @@ -0,0 +1,49 @@ +name: "Default Enhanced" +source: + marketplace_id: "Jonaqhan.jonaqhan" + version: "4.8.0" + installs: 753 + author: "Jonaqhan" + repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" +colors: + bg: "#1E1E1E" + fg: "#63BBFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A8BAC2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 61.6 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/default-theme.yaml b/themes/default-theme.yaml new file mode 100644 index 00000000..52de0633 --- /dev/null +++ b/themes/default-theme.yaml @@ -0,0 +1,49 @@ +name: "default_theme" +source: + marketplace_id: "alanramalho.sagui" + version: "0.0.6" + installs: 7 + author: "alan ramalho" + repo: "https://github.com/azzalan/sagui_vscode" + url: "https://marketplace.visualstudio.com/items?itemName=alanramalho.sagui" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#21252B" + red: "#E06C75" + green: "#98C379" + yellow: "#D19A66" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#D19A66" + brightBlue: "#528BFF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "purple" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 49.5 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 56.2 + brightBlack: 17.4 + brightRed: 38.9 + brightGreen: 59.1 + brightYellow: 49.5 + brightBlue: 38.3 + brightMagenta: 41.9 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/defaults.yaml b/themes/defaults.yaml new file mode 100644 index 00000000..2cff900e --- /dev/null +++ b/themes/defaults.yaml @@ -0,0 +1,49 @@ +name: "defaults" +source: + marketplace_id: "drzix.hc-zenburn-vscode" + version: "0.3.0" + installs: 7767 + author: "Kyeongmin Cho" + repo: "https://github.com/drzix/hc-zenburn-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=drzix.hc-zenburn-vscode" +colors: + bg: "#313131" + fg: "#DCDCCC" + black: "#4E4E4E" + red: "#D9A0A0" + green: "#6C8C6C" + yellow: "#EDDCAC" + blue: "#C5BBCC" + magenta: "#B986A9" + cyan: "#94CACC" + white: "#DCDCCC" + brightBlack: "#5E5E5E" + brightRed: "#E66666" + brightGreen: "#8CAC8C" + brightYellow: "#FDECBC" + brightBlue: "#DAC0E9" + brightMagenta: "#E090C7" + brightCyan: "#A0EDF0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.4 + black: 8.1 + red: 53.3 + green: 31.3 + yellow: 80.6 + blue: 62.4 + magenta: 40.1 + cyan: 63.5 + white: 79.4 + brightBlack: 14.3 + brightRed: 37.2 + brightGreen: 47.5 + brightYellow: 90.6 + brightBlue: 68.6 + brightMagenta: 50.8 + brightCyan: 82.5 + brightWhite: 102.5 diff --git a/themes/defdo-base.yaml b/themes/defdo-base.yaml new file mode 100644 index 00000000..c6cdcb34 --- /dev/null +++ b/themes/defdo-base.yaml @@ -0,0 +1,49 @@ +name: "defdo base" +source: + marketplace_id: "defdo.defdo-themes" + version: "0.0.15" + installs: 1254 + author: "defdo" + repo: "https://github.com/defdo-dev/defdo-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=defdo.defdo-themes" +colors: + bg: "#131C21" + fg: "#EEFFFF" + black: "#131C21" + red: "#E24F4F" + green: "#0DBC79" + yellow: "#F9BC02" + blue: "#006EE8" + magenta: "#8954AC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F65757" + brightGreen: "#23D18B" + brightYellow: "#F9E802" + brightBlue: "#3B8EEA" + brightMagenta: "#A870D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFEFE" +meta: + mode: "dark" + accent: "purple" + hue: 233 + contrast: + fg: 104.1 + black: 0 + red: 35.3 + green: 52.6 + yellow: 70.7 + blue: 28 + magenta: 24 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 41.3 + brightGreen: 63.1 + brightYellow: 89.5 + brightBlue: 39.6 + brightMagenta: 37.6 + brightCyan: 55 + brightWhite: 105.9 diff --git a/themes/defdo-halloween.yaml b/themes/defdo-halloween.yaml new file mode 100644 index 00000000..f7b43c34 --- /dev/null +++ b/themes/defdo-halloween.yaml @@ -0,0 +1,49 @@ +name: "defdo halloween" +source: + marketplace_id: "defdo.defdo-themes" + version: "0.0.15" + installs: 1254 + author: "defdo" + repo: "https://github.com/defdo-dev/defdo-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=defdo.defdo-themes" +colors: + bg: "#140021" + fg: "#EEFFFF" + black: "#100021" + red: "#E24F4F" + green: "#0DBC79" + yellow: "#F9BC02" + blue: "#006EE8" + magenta: "#8954AC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F65757" + brightGreen: "#23D18B" + brightYellow: "#F9E802" + brightBlue: "#3B8EEA" + brightMagenta: "#A870D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFEFE" +meta: + mode: "dark" + accent: "purple" + hue: 310 + contrast: + fg: 105.2 + black: 0 + red: 36.4 + green: 53.7 + yellow: 71.8 + blue: 29.1 + magenta: 25.1 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 42.4 + brightGreen: 64.2 + brightYellow: 90.6 + brightBlue: 40.7 + brightMagenta: 38.7 + brightCyan: 56.1 + brightWhite: 107 diff --git a/themes/definetely-not-github-s-theme.yaml b/themes/definetely-not-github-s-theme.yaml new file mode 100644 index 00000000..1ad329f2 --- /dev/null +++ b/themes/definetely-not-github-s-theme.yaml @@ -0,0 +1,49 @@ +name: "Definetely Not Github's Theme" +source: + marketplace_id: "vhespanha.dngh-vscode" + version: "0.2.2" + installs: 139 + author: "vhespanha" + repo: "https://github.com/vhespanha/dngh-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=vhespanha.dngh-vscode" +colors: + bg: "#0F0F0F" + fg: "#E6EDF3" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D1D5DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 95.1 + black: 19.8 + red: 37.5 + green: 62.9 + yellow: 93.4 + blue: 39.6 + magenta: 52 + cyan: 61.5 + white: 80.4 + brightBlack: 48.4 + brightRed: 50.4 + brightGreen: 79.7 + brightYellow: 93.4 + brightBlue: 61.5 + brightMagenta: 52 + brightCyan: 70 + brightWhite: 104.8 diff --git a/themes/definition-theme2023.yaml b/themes/definition-theme2023.yaml new file mode 100644 index 00000000..f7d91767 --- /dev/null +++ b/themes/definition-theme2023.yaml @@ -0,0 +1,49 @@ +name: "Definition-theme2023" +source: + marketplace_id: "Mainframeai.dfn2023theme" + version: "0.4.5" + installs: 196 + author: "Mainframeai" + repo: "https://github.com/mainframeai/mainframai.neon-verdigris-plus-theme-main" + url: "https://marketplace.visualstudio.com/items?itemName=Mainframeai.dfn2023theme" +colors: + bg: "#272B34" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 266 + contrast: + fg: 76.5 + black: 0 + red: 23.7 + green: 50 + yellow: 82.6 + blue: 24.4 + magenta: 26.7 + cyan: 44.5 + white: 87 + brightBlack: 19 + brightRed: 35.5 + brightGreen: 60.5 + brightYellow: 92.6 + brightBlue: 37 + brightMagenta: 42.4 + brightCyan: 52.4 + brightWhite: 87 diff --git a/themes/dejaypiii.yaml b/themes/dejaypiii.yaml new file mode 100644 index 00000000..196ecbd5 --- /dev/null +++ b/themes/dejaypiii.yaml @@ -0,0 +1,49 @@ +name: "dejaypiii" +source: + marketplace_id: "dejaypiii.dejaypiii-theme" + version: "0.1.0" + installs: 42 + author: "Johann-Peter Duchon" + repo: "https://github.com/dejaypiii/dejaypiii-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dejaypiii.dejaypiii-theme" +colors: + bg: "#181818" + fg: "#E4E4EF" + black: "#52494E" + red: "#C73C3F" + green: "#73C936" + yellow: "#FFDD33" + blue: "#96A6C8" + magenta: "#9E95C7" + cyan: "#95A99F" + white: "#E4E4EF" + brightBlack: "#484848" + brightRed: "#C73C3F" + brightGreen: "#73C936" + brightYellow: "#FFDD33" + brightBlue: "#96A6C8" + brightMagenta: "#9E95C7" + brightCyan: "#95A99F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 89.8 + black: 11.4 + red: 26.8 + green: 61 + yellow: 85.9 + blue: 52.8 + magenta: 47.3 + cyan: 52 + white: 89.8 + brightBlack: 10.1 + brightRed: 26.8 + brightGreen: 61 + brightYellow: 85.9 + brightBlue: 52.8 + brightMagenta: 47.3 + brightCyan: 52 + brightWhite: 106.8 diff --git a/themes/dekirisu-s-rust-theme.yaml b/themes/dekirisu-s-rust-theme.yaml new file mode 100644 index 00000000..87305019 --- /dev/null +++ b/themes/dekirisu-s-rust-theme.yaml @@ -0,0 +1,49 @@ +name: "Dekirisu's Rust Theme" +source: + marketplace_id: "dekirisu.dekirisu-rust-themes" + version: "0.0.1" + installs: 3896 + author: "Dekirisu" + repo: "https://github.com/dekirisu/vscode-rust-themes" + url: "https://marketplace.visualstudio.com/items?itemName=dekirisu.dekirisu-rust-themes" +colors: + bg: "#101316" + fg: "#C3C6CB" + black: "#101316" + red: "#E35535" + green: "#00A884" + yellow: "#5AD8B2" + blue: "#11B7D4" + magenta: "#D46EC0" + cyan: "#5AD8B2" + white: "#C3C6CB" + brightBlack: "#11B7D4" + brightRed: "#E35535" + brightGreen: "#00A884" + brightYellow: "#5AD8B2" + brightBlue: "#11B7D4" + brightMagenta: "#D46EC0" + brightCyan: "#5AD8B2" + brightWhite: "#C3C6CB" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 71.3 + black: 0 + red: 37.1 + green: 44.8 + yellow: 70 + blue: 54.7 + magenta: 43.7 + cyan: 70 + white: 71.3 + brightBlack: 54.7 + brightRed: 37.1 + brightGreen: 44.8 + brightYellow: 70 + brightBlue: 54.7 + brightMagenta: 43.7 + brightCyan: 70 + brightWhite: 71.3 diff --git a/themes/demon-dark-pro.yaml b/themes/demon-dark-pro.yaml new file mode 100644 index 00000000..2176fd8d --- /dev/null +++ b/themes/demon-dark-pro.yaml @@ -0,0 +1,49 @@ +name: "Demon Dark Pro" +source: + marketplace_id: "mrsiddharthsolanki.demon-dark-pro-theme" + version: "2.6.7" + installs: 140 + author: "mrsiddharthsolanki" + repo: "https://github.com/mrsiddharthsolanki/demon-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=mrsiddharthsolanki.demon-dark-pro-theme" +colors: + bg: "#0D0D0D" + fg: "#E8E8E8" + black: "#0A0A0A" + red: "#FF4757" + green: "#2ED573" + yellow: "#C9A87C" + blue: "#3742FA" + magenta: "#D9A8FF" + cyan: "#26D0CE" + white: "#E8E8E8" + brightBlack: "#666666" + brightRed: "#FF6B7D" + brightGreen: "#7BED9F" + brightYellow: "#C9A87C" + brightBlue: "#5352ED" + brightMagenta: "#C44569" + brightCyan: "#40C8C6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 92.7 + black: 0 + red: 42 + green: 65.8 + yellow: 57.8 + blue: 21.3 + magenta: 65.9 + cyan: 66.3 + white: 92.7 + brightBlack: 22.8 + brightRed: 49.3 + brightGreen: 81.7 + brightYellow: 57.8 + brightBlue: 24.5 + brightMagenta: 29.2 + brightCyan: 62.7 + brightWhite: 107.6 diff --git a/themes/demon-light-pro.yaml b/themes/demon-light-pro.yaml new file mode 100644 index 00000000..ad1c14be --- /dev/null +++ b/themes/demon-light-pro.yaml @@ -0,0 +1,49 @@ +name: "Demon Light Pro" +source: + marketplace_id: "mrsiddharthsolanki.demon-dark-pro-theme" + version: "2.6.7" + installs: 140 + author: "mrsiddharthsolanki" + repo: "https://github.com/mrsiddharthsolanki/demon-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=mrsiddharthsolanki.demon-dark-pro-theme" +colors: + bg: "#F5F5F5" + fg: "#2C2C2C" + black: "#2C2C2C" + red: "#D32F2F" + green: "#388E3C" + yellow: "#F57C00" + blue: "#1976D2" + magenta: "#8E24AA" + cyan: "#0097A7" + white: "#D4D4D4" + brightBlack: "#757575" + brightRed: "#EF5350" + brightGreen: "#66BB6A" + brightYellow: "#FFA726" + brightBlue: "#42A5F5" + brightMagenta: "#AB47BC" + brightCyan: "#26C6DA" + brightWhite: "#E0E0E0" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 94.7 + black: 94.7 + red: 66.9 + green: 62 + yellow: 45.8 + blue: 65.4 + magenta: 77.2 + cyan: 56.1 + white: 16.8 + brightBlack: 66.1 + brightRed: 55.4 + brightGreen: 40.4 + brightYellow: 31 + brightBlue: 45.2 + brightMagenta: 66.7 + brightCyan: 33.8 + brightWhite: 9.9 diff --git a/themes/demon-slayer-light-theme.yaml b/themes/demon-slayer-light-theme.yaml new file mode 100644 index 00000000..7830e4be --- /dev/null +++ b/themes/demon-slayer-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Demon Slayer Light Theme" +source: + marketplace_id: "TeteDeCactus.demon-slayer-light-theme" + version: "0.0.1" + installs: 8483 + author: "TeteDeCactus" + repo: "https://github.com/tetedecactus/VScode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=TeteDeCactus.demon-slayer-light-theme" +colors: + bg: "#EEEEED" + fg: "#004CFF" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 68.5 + black: 95.9 + red: 63.8 + green: 39.1 + yellow: 47.8 + blue: 75.9 + magenta: 64.4 + cyan: 50.5 + white: 75.8 + brightBlack: 68.6 + brightRed: 63.8 + brightGreen: 30.8 + brightYellow: 30.8 + brightBlue: 75.9 + brightMagenta: 64.4 + brightCyan: 50.5 + brightWhite: 38.3 diff --git a/themes/denian-theme.yaml b/themes/denian-theme.yaml new file mode 100644 index 00000000..63229bb8 --- /dev/null +++ b/themes/denian-theme.yaml @@ -0,0 +1,49 @@ +name: "Denian Theme" +source: + marketplace_id: "denianxd.denianxd" + version: "0.0.27" + installs: 122 + author: "denianxd" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=denianxd.denianxd" +colors: + bg: "#141414" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.8 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/desert.yaml b/themes/desert.yaml new file mode 100644 index 00000000..31ddb1fc --- /dev/null +++ b/themes/desert.yaml @@ -0,0 +1,49 @@ +name: "Desert" +source: + marketplace_id: "AFLO.desert-vim" + version: "1.0.6" + installs: 791 + author: "AFLO" + repo: "https://github.com/Ayoobf/desert-vim" + url: "https://marketplace.visualstudio.com/items?itemName=AFLO.desert-vim" +colors: + bg: "#333333" + fg: "#FFFFFF" + black: "#000000" + red: "#FFA0A0" + green: "#86D886" + yellow: "#F0E68C" + blue: "#87CEEB" + magenta: "#FFA0A0" + cyan: "#FFDAB9" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FFA0A0" + brightGreen: "#86D886" + brightYellow: "#F0E68C" + brightBlue: "#87CEEB" + brightMagenta: "#FFA0A0" + brightCyan: "#FFDAB9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 102 + black: 0 + red: 59.4 + green: 65.9 + yellow: 84.1 + blue: 65.3 + magenta: 59.4 + cyan: 82.4 + white: 102 + brightBlack: 0 + brightRed: 59.4 + brightGreen: 65.9 + brightYellow: 84.1 + brightBlue: 65.3 + brightMagenta: 59.4 + brightCyan: 82.4 + brightWhite: 102 diff --git a/themes/designcourse-theme.yaml b/themes/designcourse-theme.yaml new file mode 100644 index 00000000..5703d075 --- /dev/null +++ b/themes/designcourse-theme.yaml @@ -0,0 +1,49 @@ +name: "DesignCourse Theme" +source: + marketplace_id: "DesignCourse.designcourse" + version: "0.0.1" + installs: 3418 + author: "DesignCourse" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=DesignCourse.designcourse" +colors: + bg: "#222226" + fg: "#DDDDDD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#B1B1C4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 83.5 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 58.4 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 88.6 diff --git a/themes/designonev2.yaml b/themes/designonev2.yaml new file mode 100644 index 00000000..70adcbc5 --- /dev/null +++ b/themes/designonev2.yaml @@ -0,0 +1,49 @@ +name: "designONEv2" +source: + marketplace_id: "danilamdesign.designone-v2" + version: "0.0.1" + installs: 65 + author: "danilamdesign" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=danilamdesign.designone-v2" +colors: + bg: "#282C3D" + fg: "#8595AD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 40.1 + black: 0 + red: 23.3 + green: 49.6 + yellow: 82.2 + blue: 24 + magenta: 26.4 + cyan: 44.2 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.2 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.6 + brightMagenta: 42 + brightCyan: 52 + brightWhite: 86.6 diff --git a/themes/dessert.yaml b/themes/dessert.yaml new file mode 100644 index 00000000..2afdd6dd --- /dev/null +++ b/themes/dessert.yaml @@ -0,0 +1,49 @@ +name: "Dessert" +source: + marketplace_id: "curtisj44.dessert" + version: "1.0.6" + installs: 208 + author: "curtisj44" + repo: "https://github.com/curtisj44/dessert-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=curtisj44.dessert" +colors: + bg: "#2B2B2B" + fg: "#C0C0C0" + black: "#2B2B2B" + red: "#FA8072" + green: "#7CCD7C" + yellow: "#BCB8A4" + blue: "#87CEEB" + magenta: "#EE799F" + cyan: "#2B91AF" + white: "#C0C0C0" + brightBlack: "#424242" + brightRed: "#FA8072" + brightGreen: "#7CCD7C" + brightYellow: "#EEDC82" + brightBlue: "#87CEEB" + brightMagenta: "#EE799F" + brightCyan: "#2B91AF" + brightWhite: "#C0C0C0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 64.6 + black: 0 + red: 49.3 + green: 61.6 + yellow: 59.7 + blue: 67.1 + magenta: 46.4 + cyan: 34 + white: 64.6 + brightBlack: 0 + brightRed: 49.3 + brightGreen: 61.6 + brightYellow: 80.9 + brightBlue: 67.1 + brightMagenta: 46.4 + brightCyan: 34 + brightWhite: 64.6 diff --git a/themes/deus-ex-md-dark.yaml b/themes/deus-ex-md-dark.yaml new file mode 100644 index 00000000..1d50e89d --- /dev/null +++ b/themes/deus-ex-md-dark.yaml @@ -0,0 +1,49 @@ +name: "Deus Ex - MD - Dark" +source: + marketplace_id: "NosAve.nosave" + version: "0.0.1" + installs: 718 + author: "NosAve" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NosAve.nosave" +colors: + bg: "#151515" + fg: "#FFB300" + black: "#949494" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#FFF7B5" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E4E4E4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#FFF7B5" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 68.9 + black: 43.8 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 100.4 + magenta: 29.9 + cyan: 47.7 + white: 89.6 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 100.4 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 89.6 diff --git a/themes/dev-dark-fork-fork.yaml b/themes/dev-dark-fork-fork.yaml new file mode 100644 index 00000000..7f61b9ea --- /dev/null +++ b/themes/dev-dark-fork-fork.yaml @@ -0,0 +1,49 @@ +name: "Dev+ Dark - Fork - Fork" +source: + marketplace_id: "Thzin.Thzin-theme" + version: "1.0.2" + installs: 2031 + author: "Thzin" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Thzin.Thzin-theme" +colors: + bg: "#191A1F" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.5 + black: 0 + red: 26.4 + green: 52.6 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.7 diff --git a/themes/dev-tachgurbanov.yaml b/themes/dev-tachgurbanov.yaml new file mode 100644 index 00000000..a3cafad8 --- /dev/null +++ b/themes/dev-tachgurbanov.yaml @@ -0,0 +1,49 @@ +name: "dev.tachgurbanov" +source: + marketplace_id: "dark-devtachgurbanov.dark-dev-tachgurbanov" + version: "0.0.3" + installs: 83 + author: "dark - dev.tachgurbanov" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dark-devtachgurbanov.dark-dev-tachgurbanov" +colors: + bg: "#1E1F2A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 281 + contrast: + fg: 78.4 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.3 + magenta: 28.7 + cyan: 46.5 + white: 88.9 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/dev-theme-pro-nebula-mist.yaml b/themes/dev-theme-pro-nebula-mist.yaml new file mode 100644 index 00000000..a583a8c7 --- /dev/null +++ b/themes/dev-theme-pro-nebula-mist.yaml @@ -0,0 +1,49 @@ +name: "Dev Theme Pro — 🔮 Nebula ☁️ Mist" +source: + marketplace_id: "FaizanAshiq.dev-theme-pro" + version: "0.5.7" + installs: 70 + author: "Faizan Ashiq" + repo: "https://github.com/FaizanAshiq/dev-theme-pro" + url: "https://marketplace.visualstudio.com/items?itemName=FaizanAshiq.dev-theme-pro" +colors: + bg: "#1F1F1F" + fg: "#BECEE0" + black: "#000000" + red: "#E05269" + green: "#7BD88F" + yellow: "#E0AE52" + blue: "#9C63FF" + magenta: "#B070FF" + cyan: "#9C63FF" + white: "#BECEE0" + brightBlack: "#464B5D" + brightRed: "#E05269" + brightGreen: "#7BD88F" + brightYellow: "#E0AE52" + brightBlue: "#9C63FF" + brightMagenta: "#C093DE" + brightCyan: "#9C63FF" + brightWhite: "#BECEE0" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 73.8 + black: 0 + red: 35.4 + green: 69.3 + yellow: 61 + blue: 35.4 + magenta: 41.2 + cyan: 35.4 + white: 73.8 + brightBlack: 10.5 + brightRed: 35.4 + brightGreen: 69.3 + brightYellow: 61 + brightBlue: 35.4 + brightMagenta: 51.4 + brightCyan: 35.4 + brightWhite: 73.8 diff --git a/themes/dev-theme-pro-nebula-void.yaml b/themes/dev-theme-pro-nebula-void.yaml new file mode 100644 index 00000000..8e4f09a5 --- /dev/null +++ b/themes/dev-theme-pro-nebula-void.yaml @@ -0,0 +1,49 @@ +name: "Dev Theme Pro — 🔮 Nebula ✨ Void" +source: + marketplace_id: "FaizanAshiq.dev-theme-pro" + version: "0.5.7" + installs: 70 + author: "Faizan Ashiq" + repo: "https://github.com/FaizanAshiq/dev-theme-pro" + url: "https://marketplace.visualstudio.com/items?itemName=FaizanAshiq.dev-theme-pro" +colors: + bg: "#141414" + fg: "#BECEE0" + black: "#000000" + red: "#E05269" + green: "#7BD88F" + yellow: "#E0AE52" + blue: "#9C63FF" + magenta: "#B070FF" + cyan: "#9C63FF" + white: "#BECEE0" + brightBlack: "#464B5D" + brightRed: "#E05269" + brightGreen: "#7BD88F" + brightYellow: "#E0AE52" + brightBlue: "#9C63FF" + brightMagenta: "#C093DE" + brightCyan: "#9C63FF" + brightWhite: "#BECEE0" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 75 + black: 0 + red: 36.6 + green: 70.5 + yellow: 62.3 + blue: 36.6 + magenta: 42.5 + cyan: 36.6 + white: 75 + brightBlack: 11.8 + brightRed: 36.6 + brightGreen: 70.5 + brightYellow: 62.3 + brightBlue: 36.6 + brightMagenta: 52.6 + brightCyan: 36.6 + brightWhite: 75 diff --git a/themes/dev-theme-pro-ocean-mist.yaml b/themes/dev-theme-pro-ocean-mist.yaml new file mode 100644 index 00000000..3739a84b --- /dev/null +++ b/themes/dev-theme-pro-ocean-mist.yaml @@ -0,0 +1,49 @@ +name: "Dev Theme Pro — 🌊 Ocean ☁️ Mist" +source: + marketplace_id: "FaizanAshiq.dev-theme-pro" + version: "0.5.7" + installs: 70 + author: "Faizan Ashiq" + repo: "https://github.com/FaizanAshiq/dev-theme-pro" + url: "https://marketplace.visualstudio.com/items?itemName=FaizanAshiq.dev-theme-pro" +colors: + bg: "#1F1F1F" + fg: "#BECEE0" + black: "#000000" + red: "#E05269" + green: "#7BD88F" + yellow: "#E0AE52" + blue: "#1699E5" + magenta: "#B070FF" + cyan: "#1699E5" + white: "#BECEE0" + brightBlack: "#464B5D" + brightRed: "#E05269" + brightGreen: "#7BD88F" + brightYellow: "#E0AE52" + brightBlue: "#1699E5" + brightMagenta: "#C093DE" + brightCyan: "#1699E5" + brightWhite: "#BECEE0" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 73.8 + black: 0 + red: 35.4 + green: 69.3 + yellow: 61 + blue: 42.1 + magenta: 41.2 + cyan: 42.1 + white: 73.8 + brightBlack: 10.5 + brightRed: 35.4 + brightGreen: 69.3 + brightYellow: 61 + brightBlue: 42.1 + brightMagenta: 51.4 + brightCyan: 42.1 + brightWhite: 73.8 diff --git a/themes/dev-theme-pro-ocean-void.yaml b/themes/dev-theme-pro-ocean-void.yaml new file mode 100644 index 00000000..4c890fdb --- /dev/null +++ b/themes/dev-theme-pro-ocean-void.yaml @@ -0,0 +1,49 @@ +name: "Dev Theme Pro — 🌊 Ocean ✨ Void" +source: + marketplace_id: "FaizanAshiq.dev-theme-pro" + version: "0.5.7" + installs: 70 + author: "Faizan Ashiq" + repo: "https://github.com/FaizanAshiq/dev-theme-pro" + url: "https://marketplace.visualstudio.com/items?itemName=FaizanAshiq.dev-theme-pro" +colors: + bg: "#141414" + fg: "#BECEE0" + black: "#000000" + red: "#E05269" + green: "#7BD88F" + yellow: "#E0AE52" + blue: "#1699E5" + magenta: "#B070FF" + cyan: "#1699E5" + white: "#BECEE0" + brightBlack: "#464B5D" + brightRed: "#E05269" + brightGreen: "#7BD88F" + brightYellow: "#E0AE52" + brightBlue: "#1699E5" + brightMagenta: "#C093DE" + brightCyan: "#1699E5" + brightWhite: "#BECEE0" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 75 + black: 0 + red: 36.6 + green: 70.5 + yellow: 62.3 + blue: 43.3 + magenta: 42.5 + cyan: 43.3 + white: 75 + brightBlack: 11.8 + brightRed: 36.6 + brightGreen: 70.5 + brightYellow: 62.3 + brightBlue: 43.3 + brightMagenta: 52.6 + brightCyan: 43.3 + brightWhite: 75 diff --git a/themes/dev-theme.yaml b/themes/dev-theme.yaml new file mode 100644 index 00000000..bab813e6 --- /dev/null +++ b/themes/dev-theme.yaml @@ -0,0 +1,49 @@ +name: "dev-theme" +source: + marketplace_id: "naqvi.dev-theme" + version: "1.0.0" + installs: 138 + author: "naqvi" + repo: "https://github.com/nrcool/vscode-theme-dev-theme" + url: "https://marketplace.visualstudio.com/items?itemName=naqvi.dev-theme" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#FFFFFF" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFEFE" + brightBlack: "#605F5F" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.5 + black: 107.9 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 107.4 + brightBlack: 20.2 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 99.3 diff --git a/themes/devcode.yaml b/themes/devcode.yaml new file mode 100644 index 00000000..b7b9b4f0 --- /dev/null +++ b/themes/devcode.yaml @@ -0,0 +1,49 @@ +name: "DevCode+" +source: + marketplace_id: "Mokudjinn.devcodeplus" + version: "1.4.4" + installs: 157 + author: "Mokudjinn" + repo: "https://github.com/Mokudjinn/DevCode-Plus" + url: "https://marketplace.visualstudio.com/items?itemName=Mokudjinn.devcodeplus" +colors: + bg: "#1B1B1B" + fg: "#FFFAD2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFCB00" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BEBEBE" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#DEDE68" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 102.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 77.7 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 66 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 81.7 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 96.6 diff --git a/themes/devdojo-seppuku.yaml b/themes/devdojo-seppuku.yaml new file mode 100644 index 00000000..2c7fd8e4 --- /dev/null +++ b/themes/devdojo-seppuku.yaml @@ -0,0 +1,49 @@ +name: "DevDojo Seppuku" +source: + marketplace_id: "JSSamurai.devdojoseppuku" + version: "0.1.0" + installs: 213 + author: "A. Jay Chambers" + repo: "https://github.com/JSSamurai/DevDojoSeppuku" + url: "https://marketplace.visualstudio.com/items?itemName=JSSamurai.devdojoseppuku" +colors: + bg: "#040A11" + fg: "#CCC840" + black: "#000000" + red: "#C8402D" + green: "#14A424" + yellow: "#C5C034" + blue: "#2888E8" + magenta: "#BB40BB" + cyan: "#40BBBF" + white: "#C4C4C4" + brightBlack: "#444444" + brightRed: "#FF1A00" + brightGreen: "#FF0A40" + brightYellow: "#FFF234" + brightBlue: "#48AAFF" + brightMagenta: "#FF40FF" + brightCyan: "#40FFFF" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "pink" + hue: 247 + contrast: + fg: 70.3 + black: 0 + red: 28.3 + green: 41.9 + yellow: 65.9 + blue: 38.1 + magenta: 30.5 + cyan: 56.7 + white: 70.8 + brightBlack: 9.7 + brightRed: 37.8 + brightGreen: 37.8 + brightYellow: 96.4 + brightBlue: 53.5 + brightMagenta: 49 + brightCyan: 92.6 + brightWhite: 96.6 diff --git a/themes/develer-dark.yaml b/themes/develer-dark.yaml new file mode 100644 index 00000000..17b3ca41 --- /dev/null +++ b/themes/develer-dark.yaml @@ -0,0 +1,49 @@ +name: "Develer Dark" +source: + marketplace_id: "gennarobosone.develer-dark" + version: "0.0.2" + installs: 52 + author: "Gennaro" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gennarobosone.develer-dark" +colors: + bg: "#000F14" + fg: "#416B79" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 217 + contrast: + fg: 22.4 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/developers-theme-fork.yaml b/themes/developers-theme-fork.yaml new file mode 100644 index 00000000..50e86f0c --- /dev/null +++ b/themes/developers-theme-fork.yaml @@ -0,0 +1,49 @@ +name: "Developers theme - Fork" +source: + marketplace_id: "Rajeshwaran.developer-theme-dark" + version: "5.0.0" + installs: 162112 + author: "Rajeshwaran" + repo: "https://github.com/Rajeshwaran2001/developer-theme-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Rajeshwaran.developer-theme-dark" +colors: + bg: "#141026" + fg: "#FFFFFF" + black: "#715A5A" + red: "#FF0000" + green: "#0DBC79" + yellow: "#FFFF00" + blue: "#2472C8" + magenta: "#FF04FF" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#909090" + brightRed: "#F14C4C" + brightGreen: "#00F995" + brightYellow: "#F5F543" + brightBlue: "#0076F9" + brightMagenta: "#FF7DFF" + brightCyan: "#02CDFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 290 + contrast: + fg: 107.2 + black: 19.6 + red: 36.8 + green: 53.3 + yellow: 102 + blue: 27.7 + magenta: 45.5 + cyan: 47.9 + white: 90.3 + brightBlack: 41.9 + brightRed: 38.9 + brightGreen: 84.2 + brightYellow: 95.9 + brightBlue: 32.6 + brightMagenta: 59.2 + brightCyan: 67 + brightWhite: 90.3 diff --git a/themes/devmedia-dark-modern.yaml b/themes/devmedia-dark-modern.yaml new file mode 100644 index 00000000..bf31ec6e --- /dev/null +++ b/themes/devmedia-dark-modern.yaml @@ -0,0 +1,49 @@ +name: "DevMedia Dark Modern" +source: + marketplace_id: "joaomjbraga.devmedia-theme" + version: "1.1.0" + installs: 137 + author: "João M J Braga" + repo: "https://github.com/joaomjbraga/devmedia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=joaomjbraga.devmedia-theme" +colors: + bg: "#1E2227" + fg: "#E8ECF2" + black: "#1A1A1A" + red: "#F47070" + green: "#82C020" + yellow: "#D4913A" + blue: "#21BAD6" + magenta: "#D4913A" + cyan: "#21BAD6" + white: "#D8DBE4" + brightBlack: "#484E58" + brightRed: "#F47070" + brightGreen: "#9CD633" + brightYellow: "#F0C060" + brightBlue: "#5FF5FF" + brightMagenta: "#D4913A" + brightCyan: "#5FF5FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 254 + contrast: + fg: 92.9 + black: 0 + red: 45.6 + green: 56.6 + yellow: 48.1 + blue: 54.5 + magenta: 48.1 + cyan: 54.5 + white: 82.4 + brightBlack: 10.9 + brightRed: 45.6 + brightGreen: 69 + brightYellow: 70.5 + brightBlue: 86.2 + brightMagenta: 48.1 + brightCyan: 86.2 + brightWhite: 105.5 diff --git a/themes/devmedia-dark.yaml b/themes/devmedia-dark.yaml new file mode 100644 index 00000000..eceb7d3e --- /dev/null +++ b/themes/devmedia-dark.yaml @@ -0,0 +1,49 @@ +name: "DevMedia Dark" +source: + marketplace_id: "joaomjbraga.devmedia-theme" + version: "1.1.0" + installs: 137 + author: "João M J Braga" + repo: "https://github.com/joaomjbraga/devmedia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=joaomjbraga.devmedia-theme" +colors: + bg: "#1C1C1C" + fg: "#F0F2F7" + black: "#1A1A1A" + red: "#F47070" + green: "#82C020" + yellow: "#D4913A" + blue: "#21BAD6" + magenta: "#D4913A" + cyan: "#21BAD6" + white: "#D8DBE4" + brightBlack: "#484E58" + brightRed: "#F47070" + brightGreen: "#9CD633" + brightYellow: "#F0C060" + brightBlue: "#5FF5FF" + brightMagenta: "#D4913A" + brightCyan: "#5FF5FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 97.7 + black: 0 + red: 46.4 + green: 57.4 + yellow: 48.9 + blue: 55.3 + magenta: 48.9 + cyan: 55.3 + white: 83.2 + brightBlack: 11.7 + brightRed: 46.4 + brightGreen: 69.8 + brightYellow: 71.2 + brightBlue: 87 + brightMagenta: 48.9 + brightCyan: 87 + brightWhite: 106.3 diff --git a/themes/devmedia-light.yaml b/themes/devmedia-light.yaml new file mode 100644 index 00000000..cfd499c8 --- /dev/null +++ b/themes/devmedia-light.yaml @@ -0,0 +1,49 @@ +name: "DevMedia Light" +source: + marketplace_id: "joaomjbraga.devmedia-theme" + version: "1.1.0" + installs: 137 + author: "João M J Braga" + repo: "https://github.com/joaomjbraga/devmedia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=joaomjbraga.devmedia-theme" +colors: + bg: "#F0F2F5" + fg: "#1F2F36" + black: "#1A1A1A" + red: "#DC2626" + green: "#6F9A35" + yellow: "#D7840A" + blue: "#0369A1" + magenta: "#9333EA" + cyan: "#0891B2" + white: "#F6F7FA" + brightBlack: "#6B7280" + brightRed: "#EF4444" + brightGreen: "#84CC16" + brightYellow: "#F59E0B" + brightBlue: "#0284C7" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FAFBFC" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 92.5 + black: 96.4 + red: 63.7 + green: 52.5 + yellow: 47.3 + blue: 71.2 + magenta: 67.7 + cyan: 56 + white: 0 + brightBlack: 65.7 + brightRed: 56 + brightGreen: 30 + brightYellow: 33.9 + brightBlue: 59.6 + brightMagenta: 58.4 + brightCyan: 39.3 + brightWhite: 0 diff --git a/themes/devr.yaml b/themes/devr.yaml new file mode 100644 index 00000000..d0841959 --- /dev/null +++ b/themes/devr.yaml @@ -0,0 +1,49 @@ +name: "DevR" +source: + marketplace_id: "DevR.monokai-dark" + version: "0.0.4" + installs: 2924 + author: "DevR" + repo: "https://github.com/ratul-devR/Monokai-Dark" + url: "https://marketplace.visualstudio.com/items?itemName=DevR.monokai-dark" +colors: + bg: "#001528" + fg: "#F8F8F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 246 + contrast: + fg: 102.1 + black: 0 + red: 26.9 + green: 53.1 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.2 diff --git a/themes/devsena-ultra-dark.yaml b/themes/devsena-ultra-dark.yaml new file mode 100644 index 00000000..8c3ad71a --- /dev/null +++ b/themes/devsena-ultra-dark.yaml @@ -0,0 +1,49 @@ +name: "DevSena (ultra dark)" +source: + marketplace_id: "AsutoshSahoo.devsena-dark" + version: "0.0.1" + installs: 29 + author: "Asutosh Sahoo" + repo: "https://github.com/DearAsutosh/DevSena-vsCode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=AsutoshSahoo.devsena-dark" +colors: + bg: "#000000" + fg: "#CDC9FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#6F6F6F" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.1 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 27 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/devtheme.yaml b/themes/devtheme.yaml new file mode 100644 index 00000000..bccec6c0 --- /dev/null +++ b/themes/devtheme.yaml @@ -0,0 +1,49 @@ +name: "DevTheme" +source: + marketplace_id: "devTheme.devtheme" + version: "0.0.3" + installs: 75 + author: "devTheme" + repo: "https://github.com/mrgold92/devtheme" + url: "https://marketplace.visualstudio.com/items?itemName=devTheme.devtheme" +colors: + bg: "#353538" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 74 + black: 0 + red: 21.2 + green: 47.5 + yellow: 80.1 + blue: 22 + magenta: 24.3 + cyan: 42.1 + white: 84.5 + brightBlack: 16.6 + brightRed: 33.1 + brightGreen: 58.1 + brightYellow: 90.2 + brightBlue: 34.5 + brightMagenta: 39.9 + brightCyan: 49.9 + brightWhite: 84.5 diff --git a/themes/devx-dark.yaml b/themes/devx-dark.yaml new file mode 100644 index 00000000..5017f7bb --- /dev/null +++ b/themes/devx-dark.yaml @@ -0,0 +1,49 @@ +name: "DevX Dark" +source: + marketplace_id: "devx-dark-theme.devx-dark-theme" + version: "0.0.1" + installs: 228 + author: "DevX Dark Theme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=devx-dark-theme.devx-dark-theme" +colors: + bg: "#1E2125" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 58.2 + black: 0 + red: 40.9 + green: 61.1 + yellow: 69.3 + blue: 53.4 + magenta: 43.9 + cyan: 53.3 + white: 81.8 + brightBlack: 34.3 + brightRed: 37.2 + brightGreen: 61.1 + brightYellow: 69.3 + brightBlue: 40.3 + brightMagenta: 11.5 + brightCyan: 53.3 + brightWhite: 81.8 diff --git a/themes/dew-grey.yaml b/themes/dew-grey.yaml new file mode 100644 index 00000000..f895803b --- /dev/null +++ b/themes/dew-grey.yaml @@ -0,0 +1,49 @@ +name: "DEW-GREY" +source: + marketplace_id: "DEW.dew-grey" + version: "2.1.0" + installs: 1346 + author: "DEW" + repo: "https://github.com/dewanshDT/DEW-GREY" + url: "https://marketplace.visualstudio.com/items?itemName=DEW.dew-grey" +colors: + bg: "#182038" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 269 + contrast: + fg: 103.3 + black: 0 + red: 42.3 + green: 82.9 + yellow: 77.6 + blue: 54.6 + magenta: 52.5 + cyan: 76.9 + white: 105.6 + brightBlack: 22.5 + brightRed: 42.3 + brightGreen: 82.9 + brightYellow: 77.6 + brightBlue: 54.6 + brightMagenta: 52.5 + brightCyan: 76.9 + brightWhite: 105.6 diff --git a/themes/dfp-idle.yaml b/themes/dfp-idle.yaml new file mode 100644 index 00000000..fe9f4409 --- /dev/null +++ b/themes/dfp-idle.yaml @@ -0,0 +1,49 @@ +name: "DFP-IDLE" +source: + marketplace_id: "anto.dafluffypotato-s-idle-theme" + version: "0.0.2" + installs: 990 + author: "anto" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=anto.dafluffypotato-s-idle-theme" +colors: + bg: "#142329" + fg: "#BAC5C8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 225 + contrast: + fg: 68 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.1 + magenta: 28.5 + cyan: 46.3 + white: 88.7 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/dhamma-dark.yaml b/themes/dhamma-dark.yaml new file mode 100644 index 00000000..82bbb25b --- /dev/null +++ b/themes/dhamma-dark.yaml @@ -0,0 +1,49 @@ +name: "Dhamma Dark" +source: + marketplace_id: "tanmaybalwa.dhamma-theme" + version: "1.0.0" + installs: 16 + author: "Tanmay Balwa" + repo: "https://github.com/your-username/dhamma-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tanmaybalwa.dhamma-theme" +colors: + bg: "#1E1E1E" + fg: "#E8E4DB" + black: "#1E1E1E" + red: "#E06C75" + green: "#8FBC8F" + yellow: "#D4AF37" + blue: "#7B9FB8" + magenta: "#C9A0DC" + cyan: "#6B8E9F" + white: "#E8E4DB" + brightBlack: "#5A5A5A" + brightRed: "#E88388" + brightGreen: "#A8D5A8" + brightYellow: "#E6B87D" + brightBlue: "#8FB0C8" + brightMagenta: "#D8B4E8" + brightCyan: "#7B9FB8" + brightWhite: "#F5F1E8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88.7 + black: 0 + red: 41.2 + green: 58.1 + yellow: 59.4 + blue: 46.1 + magenta: 57.1 + cyan: 37.3 + white: 88.7 + brightBlack: 16.2 + brightRed: 49.4 + brightGreen: 72.4 + brightYellow: 66.8 + brightBlue: 55.3 + brightMagenta: 67.2 + brightCyan: 46.1 + brightWhite: 97 diff --git a/themes/dhamma-light.yaml b/themes/dhamma-light.yaml new file mode 100644 index 00000000..f05f108f --- /dev/null +++ b/themes/dhamma-light.yaml @@ -0,0 +1,49 @@ +name: "Dhamma Light" +source: + marketplace_id: "tanmaybalwa.dhamma-theme" + version: "1.0.0" + installs: 16 + author: "Tanmay Balwa" + repo: "https://github.com/your-username/dhamma-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tanmaybalwa.dhamma-theme" +colors: + bg: "#F5F1E8" + fg: "#2B2B2B" + black: "#2B2B2B" + red: "#C74545" + green: "#5A8F5A" + yellow: "#C5A028" + blue: "#5A7A8F" + magenta: "#9A6FB8" + cyan: "#4A6A7A" + white: "#E8E4DB" + brightBlack: "#707070" + brightRed: "#E06C75" + brightGreen: "#6FA86F" + brightYellow: "#D4AF37" + brightBlue: "#6B8E9F" + brightMagenta: "#B88FD0" + brightCyan: "#5A7A8F" + brightWhite: "#F5F1E8" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.7 + black: 92.7 + red: 64.2 + green: 57.3 + yellow: 40.5 + blue: 63.4 + magenta: 58.4 + cyan: 70.7 + white: 0 + brightBlack: 66.1 + brightRed: 50.4 + brightGreen: 45.6 + brightYellow: 32.8 + brightBlue: 54.4 + brightMagenta: 43.6 + brightCyan: 63.4 + brightWhite: 0 diff --git a/themes/dharam-gfx-amethyst.yaml b/themes/dharam-gfx-amethyst.yaml new file mode 100644 index 00000000..3d12ac85 --- /dev/null +++ b/themes/dharam-gfx-amethyst.yaml @@ -0,0 +1,49 @@ +name: "dharam-gfx-amethyst" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 660 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" +colors: + bg: "#111418" + fg: "#BEC6D0" + black: "#111418" + red: "#E35535" + green: "#00A884" + yellow: "#C7910C" + blue: "#11B7D4" + magenta: "#D46EC0" + cyan: "#38C7BD" + white: "#BEC6D0" + brightBlack: "#3A4551" + brightRed: "#FF4319" + brightGreen: "#00A884" + brightYellow: "#D39600" + brightBlue: "#00C3E5" + brightMagenta: "#F052D1" + brightCyan: "#12EDDE" + brightWhite: "#F9FAFB" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 70.9 + black: 0 + red: 37 + green: 44.7 + yellow: 47.4 + blue: 54.6 + magenta: 43.6 + cyan: 61.2 + white: 70.9 + brightBlack: 9.1 + brightRed: 40.5 + brightGreen: 44.7 + brightYellow: 51 + brightBlue: 60.9 + brightMagenta: 44.4 + brightCyan: 80.6 + brightWhite: 103.8 diff --git a/themes/dharam-gfx-anthracite.yaml b/themes/dharam-gfx-anthracite.yaml new file mode 100644 index 00000000..19a08a06 --- /dev/null +++ b/themes/dharam-gfx-anthracite.yaml @@ -0,0 +1,49 @@ +name: "dharam-gfx-anthracite" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 660 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" +colors: + bg: "#181A1F" + fg: "#C8CCD4" + black: "#181A1F" + red: "#C13838" + green: "#37AE6F" + yellow: "#C9A022" + blue: "#3398DB" + magenta: "#CC71BC" + cyan: "#24B5A8" + white: "#C8CCD4" + brightBlack: "#434955" + brightRed: "#E61313" + brightGreen: "#15D06D" + brightYellow: "#EBB100" + brightBlue: "#0F9FFF" + brightMagenta: "#E954CF" + brightCyan: "#03D6C3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 74.2 + black: 0 + red: 24.7 + green: 46.7 + yellow: 52.5 + blue: 42.1 + magenta: 42.1 + cyan: 51.2 + white: 74.2 + brightBlack: 10.2 + brightRed: 30.2 + brightGreen: 61.9 + brightYellow: 64.2 + brightBlue: 46.9 + brightMagenta: 42.6 + brightCyan: 67.4 + brightWhite: 106.5 diff --git a/themes/dharam-gfx-arc-blueberry.yaml b/themes/dharam-gfx-arc-blueberry.yaml new file mode 100644 index 00000000..2b0f6caf --- /dev/null +++ b/themes/dharam-gfx-arc-blueberry.yaml @@ -0,0 +1,49 @@ +name: "dharam-gfx-arc-blueberry" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 660 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" +colors: + bg: "#111422" + fg: "#BCC1DC" + black: "#111422" + red: "#E35535" + green: "#3CEC85" + yellow: "#EACD61" + blue: "#69C3FF" + magenta: "#F38CEC" + cyan: "#22ECDB" + white: "#BCC1DC" + brightBlack: "#313B62" + brightRed: "#FF4319" + brightGreen: "#29FF82" + brightYellow: "#FFD94C" + brightBlue: "#69C3FF" + brightMagenta: "#FF80F6" + brightCyan: "#0FFFEB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 69 + black: 0 + red: 36.9 + green: 77.5 + yellow: 76.4 + blue: 64.7 + magenta: 59.5 + cyan: 80 + white: 69 + brightBlack: 0 + brightRed: 40.4 + brightGreen: 87 + brightYellow: 84.6 + brightBlue: 64.7 + brightMagenta: 59.2 + brightCyan: 90.4 + brightWhite: 107.1 diff --git a/themes/dharam-gfx-arc-eggplant.yaml b/themes/dharam-gfx-arc-eggplant.yaml new file mode 100644 index 00000000..dea73d34 --- /dev/null +++ b/themes/dharam-gfx-arc-eggplant.yaml @@ -0,0 +1,49 @@ +name: "dharam-gfx-arc-eggplant" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 660 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" +colors: + bg: "#181421" + fg: "#C8C1D9" + black: "#181421" + red: "#E35535" + green: "#3CEC85" + yellow: "#EACD61" + blue: "#69C3FF" + magenta: "#F38CEC" + cyan: "#22ECDB" + white: "#C8C1D9" + brightBlack: "#46395C" + brightRed: "#FF4319" + brightGreen: "#29FF82" + brightYellow: "#FFD94C" + brightBlue: "#69C3FF" + brightMagenta: "#FF80F6" + brightCyan: "#0FFFEB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 298 + contrast: + fg: 70.2 + black: 0 + red: 36.7 + green: 77.3 + yellow: 76.3 + blue: 64.6 + magenta: 59.4 + cyan: 79.9 + white: 70.2 + brightBlack: 7.3 + brightRed: 40.2 + brightGreen: 86.9 + brightYellow: 84.5 + brightBlue: 64.6 + brightMagenta: 59.1 + brightCyan: 90.3 + brightWhite: 106.9 diff --git a/themes/dharam-gfx-arc-reversed.yaml b/themes/dharam-gfx-arc-reversed.yaml new file mode 100644 index 00000000..390e262a --- /dev/null +++ b/themes/dharam-gfx-arc-reversed.yaml @@ -0,0 +1,49 @@ +name: "dharam-gfx-arc-reversed" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 660 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" +colors: + bg: "#121721" + fg: "#C5CDDE" + black: "#121721" + red: "#E35535" + green: "#3CEC85" + yellow: "#EACD61" + blue: "#69C3FF" + magenta: "#F38CEC" + cyan: "#22ECDB" + white: "#C5CDDE" + brightBlack: "#384766" + brightRed: "#FF4319" + brightGreen: "#29FF82" + brightYellow: "#FFD94C" + brightBlue: "#69C3FF" + brightMagenta: "#FF80F6" + brightCyan: "#0FFFEB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 75 + black: 0 + red: 36.7 + green: 77.3 + yellow: 76.2 + blue: 64.5 + magenta: 59.3 + cyan: 79.8 + white: 75 + brightBlack: 10 + brightRed: 40.2 + brightGreen: 86.8 + brightYellow: 84.4 + brightBlue: 64.5 + brightMagenta: 59 + brightCyan: 90.2 + brightWhite: 106.9 diff --git a/themes/dharam-gfx-hacker-theme.yaml b/themes/dharam-gfx-hacker-theme.yaml new file mode 100644 index 00000000..1eaf5d55 --- /dev/null +++ b/themes/dharam-gfx-hacker-theme.yaml @@ -0,0 +1,49 @@ +name: "dharam-gfx-hacker-theme" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 660 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" +colors: + bg: "#07001C" + fg: "#0094C6" + black: "#060016" + red: "#FF0000" + green: "#0AED43" + yellow: "#D0FF00" + blue: "#071399" + magenta: "#06D6A0" + cyan: "#3EFF70" + white: "#FFFFFF" + brightBlack: "#FF1E00" + brightRed: "#F02727" + brightGreen: "#46DF46" + brightYellow: "#FFFB00" + brightBlue: "#5CA9FA" + brightMagenta: "#D606CF" + brightCyan: "#3EFF70" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 291 + contrast: + fg: 40 + black: 0 + red: 37.4 + green: 77.1 + yellow: 96.5 + blue: 0 + magenta: 67.3 + cyan: 87.7 + white: 107.7 + brightBlack: 37.9 + brightRed: 34.8 + brightGreen: 70.8 + brightYellow: 100.6 + brightBlue: 53.6 + brightMagenta: 33.6 + brightCyan: 87.7 + brightWhite: 107.7 diff --git a/themes/dharam-gfx-hight-contrast.yaml b/themes/dharam-gfx-hight-contrast.yaml new file mode 100644 index 00000000..2e849372 --- /dev/null +++ b/themes/dharam-gfx-hight-contrast.yaml @@ -0,0 +1,49 @@ +name: "Dharam-gfx-Hight-Contrast" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 660 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" +colors: + bg: "#191A2E" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#20E3B2" + yellow: "#FDE181" + blue: "#BD93F9" + magenta: "#FF6BCB" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#8D92FF" + brightRed: "#FF6E6E" + brightGreen: "#20E3B2" + brightYellow: "#EAC394" + brightBlue: "#BD93F9" + brightMagenta: "#FF6BCB" + brightCyan: "#2CCCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 281 + contrast: + fg: 101.4 + black: 0 + red: 42.8 + green: 73 + yellow: 87.9 + blue: 53.1 + magenta: 51.1 + cyan: 83.4 + white: 101.4 + brightBlack: 47.6 + brightRed: 48.3 + brightGreen: 73 + brightYellow: 72.6 + brightBlue: 53.1 + brightMagenta: 51.1 + brightCyan: 65.9 + brightWhite: 106.3 diff --git a/themes/dharam-gfx-webdevcody.yaml b/themes/dharam-gfx-webdevcody.yaml new file mode 100644 index 00000000..f6971ff4 --- /dev/null +++ b/themes/dharam-gfx-webdevcody.yaml @@ -0,0 +1,49 @@ +name: "dharam-gfx-webdevcody" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 660 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" +colors: + bg: "#00171A" + fg: "#81F0FE" + black: "#00171A" + red: "#E61E3F" + green: "#60E66F" + yellow: "#F1D868" + blue: "#F1D868" + magenta: "#F75F94" + cyan: "#F1D868" + white: "#81F0FE" + brightBlack: "#006F7B" + brightRed: "#FF052E" + brightGreen: "#47FF5C" + brightYellow: "#FFE15A" + brightBlue: "#FFE15A" + brightMagenta: "#FF5792" + brightCyan: "#FFE15A" + brightWhite: "#E6FCFF" +meta: + mode: "dark" + accent: "orange" + hue: 206 + contrast: + fg: 86.9 + black: 0 + red: 31.4 + green: 75.1 + yellow: 82.3 + blue: 82.3 + magenta: 45.2 + cyan: 82.3 + white: 86.9 + brightBlack: 22 + brightRed: 36.9 + brightGreen: 86.9 + brightYellow: 88.3 + brightBlue: 88.3 + brightMagenta: 45.5 + brightCyan: 88.3 + brightWhite: 102.3 diff --git a/themes/diabo-theme.yaml b/themes/diabo-theme.yaml new file mode 100644 index 00000000..a6ad75ab --- /dev/null +++ b/themes/diabo-theme.yaml @@ -0,0 +1,49 @@ +name: "Diabo Theme" +source: + marketplace_id: "vinciuscr.diabo" + version: "0.0.1" + installs: 62 + author: "Vinícius Castelani Reck" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=vinciuscr.diabo" +colors: + bg: "#0F0303" + fg: "#C7592A" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 22 + contrast: + fg: 32.5 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/diamond-theme.yaml b/themes/diamond-theme.yaml new file mode 100644 index 00000000..2382af38 --- /dev/null +++ b/themes/diamond-theme.yaml @@ -0,0 +1,49 @@ +name: "Diamond Theme" +source: + marketplace_id: "DiaxManPl.diamondtheme" + version: "1.1.3" + installs: 417 + author: "DiaxManPl" + repo: "https://github.com/DiaxManPl/DiamondTheme" + url: "https://marketplace.visualstudio.com/items?itemName=DiaxManPl.diamondtheme" +colors: + bg: "#343036" + fg: "#FFFFFF" + black: "#1B1818" + red: "#F28C9D" + green: "#8CF28C" + yellow: "#F2F28C" + blue: "#8C8CF2" + magenta: "#F28CF2" + cyan: "#8CF2F2" + white: "#FFFFFF" + brightBlack: "#999999" + brightRed: "#F28C9D" + brightGreen: "#8CF28C" + brightYellow: "#F2F28C" + brightBlue: "#8C8CF2" + brightMagenta: "#F28CF2" + brightCyan: "#8CF2F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 315 + contrast: + fg: 102.4 + black: 0 + red: 51 + green: 79.7 + yellow: 90.4 + blue: 40.6 + magenta: 55.1 + cyan: 83.4 + white: 102.4 + brightBlack: 41.7 + brightRed: 51 + brightGreen: 79.7 + brightYellow: 90.4 + brightBlue: 40.6 + brightMagenta: 55.1 + brightCyan: 83.4 + brightWhite: 102.4 diff --git a/themes/digitaliss-italic.yaml b/themes/digitaliss-italic.yaml new file mode 100644 index 00000000..7a36dc92 --- /dev/null +++ b/themes/digitaliss-italic.yaml @@ -0,0 +1,49 @@ +name: "digitaliss Italic" +source: + marketplace_id: "dgtlss.digitaliss" + version: "2.0.2" + installs: 122 + author: "dgtlss" + repo: "https://github.com/dgtlss/digitaliss" + url: "https://marketplace.visualstudio.com/items?itemName=dgtlss.digitaliss" +colors: + bg: "#1A1925" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 288 + contrast: + fg: 79.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.6 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/digitaliss-light-italic.yaml b/themes/digitaliss-light-italic.yaml new file mode 100644 index 00000000..df0389be --- /dev/null +++ b/themes/digitaliss-light-italic.yaml @@ -0,0 +1,49 @@ +name: "digitaliss Light Italic" +source: + marketplace_id: "dgtlss.digitaliss" + version: "2.0.2" + installs: 122 + author: "dgtlss" + repo: "https://github.com/dgtlss/digitaliss" + url: "https://marketplace.visualstudio.com/items?itemName=dgtlss.digitaliss" +colors: + bg: "#FAFAFA" + fg: "#4A4A4A" + black: "#383A42" + red: "#E45649" + green: "#44A14F" + yellow: "#C18401" + blue: "#4078F2" + magenta: "#A626A4" + cyan: "#0997B3" + white: "#F0F0F3" + brightBlack: "#A0A1A7" + brightRed: "#E45649" + brightGreen: "#50A14F" + brightYellow: "#C18401" + brightBlue: "#5589F5" + brightMagenta: "#A626A4" + brightCyan: "#0184BC" + brightWhite: "#383A42" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 87.3 + black: 93.2 + red: 60.4 + green: 56.5 + yellow: 55.8 + blue: 64.3 + magenta: 76.2 + cyan: 58.5 + white: 0 + brightBlack: 47.4 + brightRed: 60.4 + brightGreen: 56 + brightYellow: 55.8 + brightBlue: 57.6 + brightMagenta: 76.2 + brightCyan: 65.1 + brightWhite: 93.2 diff --git a/themes/digitaliss-pastel-italic.yaml b/themes/digitaliss-pastel-italic.yaml new file mode 100644 index 00000000..2b120b12 --- /dev/null +++ b/themes/digitaliss-pastel-italic.yaml @@ -0,0 +1,49 @@ +name: "digitaliss Pastel Italic" +source: + marketplace_id: "dgtlss.digitaliss" + version: "2.0.2" + installs: 122 + author: "dgtlss" + repo: "https://github.com/dgtlss/digitaliss" + url: "https://marketplace.visualstudio.com/items?itemName=dgtlss.digitaliss" +colors: + bg: "#1E1D2B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 287 + contrast: + fg: 78.6 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.7 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/dimi-theme-dark.yaml b/themes/dimi-theme-dark.yaml new file mode 100644 index 00000000..a54d1d41 --- /dev/null +++ b/themes/dimi-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Dimi Theme (Dark)" +source: + marketplace_id: "Dimi.dimi" + version: "1.0.9" + installs: 2863 + author: "Dimi" + repo: "https://github.com/Dimi15/dimi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Dimi.dimi" +colors: + bg: "#242A36" + fg: "#CED4DF" + black: "#313848" + red: "#B55760" + green: "#99B482" + yellow: "#E1C181" + blue: "#7797B7" + magenta: "#AA84A3" + cyan: "#7EB6C6" + white: "#DBDFE6" + brightBlack: "#424C60" + brightRed: "#B55760" + brightGreen: "#99B482" + brightYellow: "#E1C181" + brightBlue: "#7797B7" + brightMagenta: "#AA84A3" + brightCyan: "#85B2B1" + brightWhite: "#E2E5EA" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 76.4 + black: 0 + red: 25.9 + green: 53.3 + yellow: 67.7 + blue: 40.7 + magenta: 38.6 + cyan: 54.3 + white: 83.2 + brightBlack: 8.8 + brightRed: 25.9 + brightGreen: 53.3 + brightYellow: 67.7 + brightBlue: 40.7 + brightMagenta: 38.6 + brightCyan: 52.3 + brightWhite: 87 diff --git a/themes/dimi-theme-darker.yaml b/themes/dimi-theme-darker.yaml new file mode 100644 index 00000000..296205a1 --- /dev/null +++ b/themes/dimi-theme-darker.yaml @@ -0,0 +1,49 @@ +name: "Dimi Theme (Darker)" +source: + marketplace_id: "Dimi.dimi" + version: "1.0.9" + installs: 2863 + author: "Dimi" + repo: "https://github.com/Dimi15/dimi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Dimi.dimi" +colors: + bg: "#1F2531" + fg: "#C9CFDA" + black: "#2C3343" + red: "#B0525B" + green: "#94AF7D" + yellow: "#DCBC7C" + blue: "#7292B2" + magenta: "#A57F9E" + cyan: "#79B1C1" + white: "#D6DAE1" + brightBlack: "#3D475B" + brightRed: "#B0525B" + brightGreen: "#94AF7D" + brightYellow: "#DCBC7C" + brightBlue: "#7292B2" + brightMagenta: "#A57F9E" + brightCyan: "#80ADAC" + brightWhite: "#DDE0E5" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 74.3 + black: 0 + red: 24.7 + green: 51.5 + yellow: 65.7 + blue: 39.1 + magenta: 37 + cyan: 52.6 + white: 81.1 + brightBlack: 7.9 + brightRed: 24.7 + brightGreen: 51.5 + brightYellow: 65.7 + brightBlue: 39.1 + brightMagenta: 37 + brightCyan: 50.5 + brightWhite: 84.8 diff --git a/themes/dimmed-dark-theme.yaml b/themes/dimmed-dark-theme.yaml new file mode 100644 index 00000000..ca33db31 --- /dev/null +++ b/themes/dimmed-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Dimmed Dark Theme" +source: + marketplace_id: "jamestedy.dark-theme-first" + version: "1.1.2" + installs: 86 + author: "jamestedy" + repo: "https://github.com/jte0711/Dim-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=jamestedy.dark-theme-first" +colors: + bg: "#001219" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 223 + contrast: + fg: 80 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/dimmed-theme.yaml b/themes/dimmed-theme.yaml new file mode 100644 index 00000000..dcb1233e --- /dev/null +++ b/themes/dimmed-theme.yaml @@ -0,0 +1,49 @@ +name: "Dimmed Theme" +source: + marketplace_id: "AleCaste.dimmed-theme" + version: "0.0.16" + installs: 1127 + author: "AleCaste" + repo: "https://github.com/AleCaste/dimmed-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AleCaste.dimmed-theme" +colors: + bg: "#202122" + fg: "#52645D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 18.3 + black: 0 + red: 25.5 + green: 51.8 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.8 + brightMagenta: 44.1 + brightCyan: 54.2 + brightWhite: 88.8 diff --git a/themes/dimmed.yaml b/themes/dimmed.yaml new file mode 100644 index 00000000..48ae41f5 --- /dev/null +++ b/themes/dimmed.yaml @@ -0,0 +1,49 @@ +name: "Dimmed" +source: + marketplace_id: "shoizz.dimmed" + version: "0.0.3" + installs: 4853 + author: "denis" + repo: "https://github.com/Shoizz/vscode-theme-dimmed" + url: "https://marketplace.visualstudio.com/items?itemName=shoizz.dimmed" +colors: + bg: "#1D2021" + fg: "#FFFFFF" + black: "#3C3836" + red: "#F44336" + green: "#98971A" + yellow: "#FFDE03" + blue: "#2196F3" + magenta: "#FF0266" + cyan: "#00E676" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#00E676" + brightMagenta: "#DF6495" + brightCyan: "#8EC07C" + brightWhite: "#C2C3C3" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 105.8 + black: 0 + red: 36.7 + green: 41.9 + yellow: 85.3 + blue: 42 + magenta: 36.5 + cyan: 72.3 + white: 46.2 + brightBlack: 35.3 + brightRed: 39.1 + brightGreen: 60.1 + brightYellow: 70.8 + brightBlue: 72.3 + brightMagenta: 40.1 + brightCyan: 59.1 + brightWhite: 68.2 diff --git a/themes/dioximo-dark.yaml b/themes/dioximo-dark.yaml new file mode 100644 index 00000000..58911304 --- /dev/null +++ b/themes/dioximo-dark.yaml @@ -0,0 +1,49 @@ +name: "Dioximo Dark" +source: + marketplace_id: "omisai.dioximo" + version: "1.0.3" + installs: 32 + author: "Omisai Technologies" + repo: "https://github.com/omisai-tech/dioximo" + url: "https://marketplace.visualstudio.com/items?itemName=omisai.dioximo" +colors: + bg: "#18181B" + fg: "#C6C6C8" + black: "#2B2B2F" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#3B82F6" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#C6C6C8" + brightBlack: "#3B3B3F" + brightRed: "#FF6B73" + brightGreen: "#9FD36B" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#C973FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 71.1 + black: 0 + red: 36.6 + green: 60.2 + yellow: 48.5 + blue: 36.6 + magenta: 38.9 + cyan: 52.4 + white: 71.1 + brightBlack: 0 + brightRed: 48.1 + brightGreen: 69.8 + brightYellow: 61.1 + brightBlue: 63.6 + brightMagenta: 46.6 + brightCyan: 67.7 + brightWhite: 90.5 diff --git a/themes/dioximo-light.yaml b/themes/dioximo-light.yaml new file mode 100644 index 00000000..68c3c34f --- /dev/null +++ b/themes/dioximo-light.yaml @@ -0,0 +1,49 @@ +name: "Dioximo Light" +source: + marketplace_id: "omisai.dioximo" + version: "1.0.3" + installs: 32 + author: "Omisai Technologies" + repo: "https://github.com/omisai-tech/dioximo" + url: "https://marketplace.visualstudio.com/items?itemName=omisai.dioximo" +colors: + bg: "#FFFFFF" + fg: "#111827" + black: "#E5E7EB" + red: "#EF4444" + green: "#16A34A" + yellow: "#F59E0B" + blue: "#2563EB" + magenta: "#8B5CF6" + cyan: "#06B6D4" + white: "#111827" + brightBlack: "#9CA3AF" + brightRed: "#FF7B7B" + brightGreen: "#86EFAC" + brightYellow: "#FCD34D" + brightBlue: "#60A5FA" + brightMagenta: "#C7A2FF" + brightCyan: "#67E8F9" + brightWhite: "#111827" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 104.5 + black: 11.8 + red: 63.8 + green: 59.7 + yellow: 41.8 + blue: 74.9 + magenta: 68.7 + cyan: 47.1 + white: 104.5 + brightBlack: 49.8 + brightRed: 48.7 + brightGreen: 19.4 + brightYellow: 21 + brightBlue: 49.6 + brightMagenta: 40.8 + brightCyan: 21.2 + brightWhite: 104.5 diff --git a/themes/discord-onyx.yaml b/themes/discord-onyx.yaml new file mode 100644 index 00000000..ac682ec2 --- /dev/null +++ b/themes/discord-onyx.yaml @@ -0,0 +1,49 @@ +name: "Discord Onyx" +source: + marketplace_id: "zangetsu002.dark-discord-theme" + version: "1.0.0" + installs: 307 + author: "zangetsu002" + repo: "https://github.com/zangetsu02/dark-discord-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zangetsu002.dark-discord-theme" +colors: + bg: "#070709" + fg: "#B5B4B4" + black: "#000000" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 61.8 + black: 0 + red: 41.7 + green: 37.6 + yellow: 76.5 + blue: 42.3 + magenta: 44.8 + cyan: 50.2 + white: 82.2 + brightBlack: 30.5 + brightRed: 41.7 + brightGreen: 37.6 + brightYellow: 76.5 + brightBlue: 42.3 + brightMagenta: 44.8 + brightCyan: 50.2 + brightWhite: 107.8 diff --git a/themes/discord-theme.yaml b/themes/discord-theme.yaml new file mode 100644 index 00000000..6d70bd0d --- /dev/null +++ b/themes/discord-theme.yaml @@ -0,0 +1,49 @@ +name: "Discord Theme" +source: + marketplace_id: "tanmay.discord-theme" + version: "1.0.6" + installs: 61655 + author: "tanmay" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tanmay.discord-theme" +colors: + bg: "#1F1F25" + fg: "#BFC9D7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#8EA7FF" + blue: "#8DA6FF" + magenta: "#BC3FBC" + cyan: "#5FD796" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#7289DA" + brightMagenta: "#D670D6" + brightCyan: "#59DEFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 71.3 + black: 0 + red: 25.7 + green: 52 + yellow: 54.7 + blue: 54.3 + magenta: 28.7 + cyan: 67.4 + white: 89 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39.1 + brightMagenta: 44.3 + brightCyan: 75.1 + brightWhite: 89 diff --git a/themes/dislexic.yaml b/themes/dislexic.yaml new file mode 100644 index 00000000..4603d5a9 --- /dev/null +++ b/themes/dislexic.yaml @@ -0,0 +1,49 @@ +name: "dislexic" +source: + marketplace_id: "SpeedyLom.dislexic-vscode" + version: "2.1.0" + installs: 2005 + author: "SpeedyLom" + repo: "https://github.com/SpeedyLom/dislexic-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SpeedyLom.dislexic-vscode" +colors: + bg: "#F7F3F3" + fg: "#242523" + black: "#000000" + red: "#CD3131" + green: "#28A148" + yellow: "#949800" + blue: "#0451A5" + magenta: "#AD11C8" + cyan: "#005E85" + white: "#555555" + brightBlack: "#666666" + brightRed: "#E02525" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#008CE3" + brightMagenta: "#CA007D" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 95.7 + black: 99.4 + red: 67.3 + green: 53.7 + yellow: 51.3 + blue: 79.4 + magenta: 69.8 + cyan: 77.6 + white: 79.3 + brightBlack: 72.1 + brightRed: 64.1 + brightGreen: 34.3 + brightYellow: 34.3 + brightBlue: 56 + brightMagenta: 68.3 + brightCyan: 54 + brightWhite: 41.8 diff --git a/themes/div-s-theme.yaml b/themes/div-s-theme.yaml new file mode 100644 index 00000000..c6bc848a --- /dev/null +++ b/themes/div-s-theme.yaml @@ -0,0 +1,49 @@ +name: "Div's Theme" +source: + marketplace_id: "dec82000.div-s-theme" + version: "0.0.4" + installs: 1155 + author: "Divyansh Jain" + repo: "https://github.com/divyansh-gq/div-s-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dec82000.div-s-theme" +colors: + bg: "#1D1D1D" + fg: "#E2E2E2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#FD6309" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.4 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 44.2 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/dive-bar.yaml b/themes/dive-bar.yaml new file mode 100644 index 00000000..2bd1b089 --- /dev/null +++ b/themes/dive-bar.yaml @@ -0,0 +1,49 @@ +name: "Dive Bar" +source: + marketplace_id: "mattseddon.vscode-dive-bar-theme" + version: "0.1.6" + installs: 1288 + author: "mattseddon" + repo: "https://github.com/mattseddon/vscode-dive-bar-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mattseddon.vscode-dive-bar-theme" +colors: + bg: "#141322" + fg: "#94B4C4" + black: "#30317D" + red: "#FF5395" + green: "#0ADB8B" + yellow: "#00EAFF" + blue: "#7DD9E4" + magenta: "#FA61B8" + cyan: "#A8FFEF" + white: "#CFF0E8" + brightBlack: "#391AB5" + brightRed: "#FF427B" + brightGreen: "#00EAFF" + brightYellow: "#00EAFF" + brightBlue: "#84F9FE" + brightMagenta: "#D5358F" + brightCyan: "#83FEE8" + brightWhite: "#CBFFF2" +meta: + mode: "dark" + accent: "red" + hue: 286 + contrast: + fg: 58.3 + black: 0 + red: 45 + green: 68.5 + yellow: 80.7 + blue: 74.3 + magenta: 47.8 + cyan: 96.5 + white: 92.7 + brightBlack: 8.7 + brightRed: 41.7 + brightGreen: 80.7 + brightYellow: 80.7 + brightBlue: 91.6 + brightMagenta: 31.4 + brightCyan: 93 + brightWhite: 100 diff --git a/themes/dj-s-purple.yaml b/themes/dj-s-purple.yaml new file mode 100644 index 00000000..fa342118 --- /dev/null +++ b/themes/dj-s-purple.yaml @@ -0,0 +1,49 @@ +name: "DJ's Purple" +source: + marketplace_id: "GroganSoft.djpurple" + version: "1.1.3" + installs: 121 + author: "GroganSoft" + repo: "https://dev.azure.com/grogansoft/DJPurple%20VS%20Code%20Theme/" + url: "https://marketplace.visualstudio.com/items?itemName=GroganSoft.djpurple" +colors: + bg: "#171717" + fg: "#15B21F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 47.2 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/djolof.yaml b/themes/djolof.yaml new file mode 100644 index 00000000..f1ba183b --- /dev/null +++ b/themes/djolof.yaml @@ -0,0 +1,49 @@ +name: "Djolof" +source: + marketplace_id: "daoodaba975.taaru" + version: "3.0.0" + installs: 1693 + author: "Daooda" + repo: "https://github.com/daoodaba975/taaru" + url: "https://marketplace.visualstudio.com/items?itemName=daoodaba975.taaru" +colors: + bg: "#1C1E26" + fg: "#A6A6A6" + black: "#1A1A1A" + red: "#E83C6A" + green: "#1FFF9C" + yellow: "#F1FA8C" + blue: "#00BDFF" + magenta: "#FE2B99" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#1A1A1A" + brightRed: "#E83C6A" + brightGreen: "#1FFF9C" + brightYellow: "#F1FA8C" + brightBlue: "#00BDFF" + brightMagenta: "#FE2B99" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 52.2 + black: 0 + red: 34.1 + green: 86.5 + yellow: 97.7 + blue: 58.6 + magenta: 39.3 + cyan: 83.1 + white: 101.1 + brightBlack: 0 + brightRed: 34.1 + brightGreen: 86.5 + brightYellow: 97.7 + brightBlue: 58.6 + brightMagenta: 39.3 + brightCyan: 83.1 + brightWhite: 101.1 diff --git a/themes/dna-helix.yaml b/themes/dna-helix.yaml new file mode 100644 index 00000000..4489d9d4 --- /dev/null +++ b/themes/dna-helix.yaml @@ -0,0 +1,49 @@ +name: "DNA Helix" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 358 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" +colors: + bg: "#0A0F1A" + fg: "#E0F0FF" + black: "#000000" + red: "#FF4757" + green: "#00FF99" + yellow: "#FFA502" + blue: "#3742FA" + magenta: "#E056FD" + cyan: "#00FFCC" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF6B7A" + brightGreen: "#33FFAA" + brightYellow: "#FFB733" + brightBlue: "#5865F2" + brightMagenta: "#E67EFF" + brightCyan: "#33FFDD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 265 + contrast: + fg: 96.3 + black: 0 + red: 41.9 + green: 87.8 + yellow: 64.3 + blue: 21.2 + magenta: 45.2 + cyan: 89.4 + white: 107.5 + brightBlack: 22.6 + brightRed: 49.1 + brightGreen: 88.6 + brightYellow: 71 + brightBlue: 29.7 + brightMagenta: 55 + brightCyan: 90.5 + brightWhite: 107.5 diff --git a/themes/dodimmed-dark.yaml b/themes/dodimmed-dark.yaml new file mode 100644 index 00000000..2606478c --- /dev/null +++ b/themes/dodimmed-dark.yaml @@ -0,0 +1,49 @@ +name: "DoDimmed Dark" +source: + marketplace_id: "doolooper.do-dimmed" + version: "0.1.0" + installs: 558 + author: "Mahdi Harati" + repo: "https://github.com/Doolooper/DoDimmed" + url: "https://marketplace.visualstudio.com/items?itemName=doolooper.do-dimmed" +colors: + bg: "#161616" + fg: "#FFFFFF" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107 + black: 8.2 + red: 33.1 + green: 61.8 + yellow: 76.5 + blue: 48.7 + magenta: 46.6 + cyan: 62.8 + white: 92.4 + brightBlack: 15.5 + brightRed: 33.1 + brightGreen: 61.8 + brightYellow: 76.5 + brightBlue: 48.7 + brightMagenta: 46.6 + brightCyan: 60.7 + brightWhite: 96.3 diff --git a/themes/doli-universal.yaml b/themes/doli-universal.yaml new file mode 100644 index 00000000..330b205f --- /dev/null +++ b/themes/doli-universal.yaml @@ -0,0 +1,49 @@ +name: "Doli Universal" +source: + marketplace_id: "EthanLi.ethan-li-cyber-glow-theme" + version: "1.0.3" + installs: 58 + author: "EthanLi" + repo: "https://github.com/LQYld/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=EthanLi.ethan-li-cyber-glow-theme" +colors: + bg: "#2B2B2B" + fg: "#C6CACD" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 70.1 + black: 0 + red: 37.7 + green: 33.7 + yellow: 72.6 + blue: 38.3 + magenta: 40.9 + cyan: 46.2 + white: 78.3 + brightBlack: 26.5 + brightRed: 37.7 + brightGreen: 33.7 + brightYellow: 72.6 + brightBlue: 38.3 + brightMagenta: 40.9 + brightCyan: 46.2 + brightWhite: 103.8 diff --git a/themes/doli-visual-studio.yaml b/themes/doli-visual-studio.yaml new file mode 100644 index 00000000..a1866976 --- /dev/null +++ b/themes/doli-visual-studio.yaml @@ -0,0 +1,49 @@ +name: "Doli Visual Studio" +source: + marketplace_id: "EthanLi.ethan-li-cyber-glow-theme" + version: "1.0.3" + installs: 58 + author: "EthanLi" + repo: "https://github.com/LQYld/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=EthanLi.ethan-li-cyber-glow-theme" +colors: + bg: "#1E1E1E" + fg: "#DCDCDC" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 83.6 + black: 0 + red: 39.9 + green: 35.8 + yellow: 74.8 + blue: 40.5 + magenta: 43.1 + cyan: 48.4 + white: 80.5 + brightBlack: 28.7 + brightRed: 39.9 + brightGreen: 35.8 + brightYellow: 74.8 + brightBlue: 40.5 + brightMagenta: 43.1 + brightCyan: 48.4 + brightWhite: 106 diff --git a/themes/dominator-paralyzer.yaml b/themes/dominator-paralyzer.yaml new file mode 100644 index 00000000..bd06dfe9 --- /dev/null +++ b/themes/dominator-paralyzer.yaml @@ -0,0 +1,49 @@ +name: "Dominator Paralyzer" +source: + marketplace_id: "tomocy.dominator" + version: "0.7.0" + installs: 1228 + author: "tomocy" + repo: "https://github.com/tomocy/dominator-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=tomocy.dominator" +colors: + bg: "#000000" + fg: "#E0E7FF" + black: "#000000" + red: "#DE2163" + green: "#00FFD8" + yellow: "#DEC32C" + blue: "#09E7FB" + magenta: "#DE2163" + cyan: "#09E7FB" + white: "#E0E7FF" + brightBlack: "#E0E7FF" + brightRed: "#DE2163" + brightGreen: "#00FFD8" + brightYellow: "#DEC32C" + brightBlue: "#09E7FB" + brightMagenta: "#DE2163" + brightCyan: "#09E7FB" + brightWhite: "#E0E7FF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 92.5 + black: 0 + red: 31.2 + green: 90.3 + yellow: 70.7 + blue: 79.8 + magenta: 31.2 + cyan: 79.8 + white: 92.5 + brightBlack: 92.5 + brightRed: 31.2 + brightGreen: 90.3 + brightYellow: 70.7 + brightBlue: 79.8 + brightMagenta: 31.2 + brightCyan: 79.8 + brightWhite: 92.5 diff --git a/themes/domtheme.yaml b/themes/domtheme.yaml new file mode 100644 index 00000000..392f0419 --- /dev/null +++ b/themes/domtheme.yaml @@ -0,0 +1,49 @@ +name: "DomTheme" +source: + marketplace_id: "DomTheme.DomTheme" + version: "0.0.1" + installs: 2261 + author: "DomTheme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=DomTheme.DomTheme" +colors: + bg: "#0A0A0A" + fg: "#7F26FF" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E1C542" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#39CDE2" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFE05B" + brightBlue: "#74BCFF" + brightMagenta: "#D670D6" + brightCyan: "#74F2FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 24.3 + black: 7.3 + red: 27.6 + green: 53.9 + yellow: 72 + blue: 28.3 + magenta: 30.6 + cyan: 66.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 88.5 + brightBlue: 63.1 + brightMagenta: 46.2 + brightCyan: 87.9 + brightWhite: 90.9 diff --git a/themes/doom-one-dark.yaml b/themes/doom-one-dark.yaml new file mode 100644 index 00000000..4e1c19f5 --- /dev/null +++ b/themes/doom-one-dark.yaml @@ -0,0 +1,49 @@ +name: "Doom One Dark" +source: + marketplace_id: "lroolle.doom-themes" + version: "1.2.1" + installs: 513 + author: "lroolle" + repo: "https://github.com/lroolle/doom-one-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lroolle.doom-themes" +colors: + bg: "#282C34" + fg: "#BBC2CF" + black: "#1B2229" + red: "#FF6C6B" + green: "#98BE65" + yellow: "#ECBE7B" + blue: "#51AFEF" + magenta: "#C678DD" + cyan: "#46D9FF" + white: "#9CA0A4" + brightBlack: "#1C1F24" + brightRed: "#FF6C6B" + brightGreen: "#98BE65" + brightYellow: "#ECBE7B" + brightBlue: "#51AFEF" + brightMagenta: "#C678DD" + brightCyan: "#46D9FF" + brightWhite: "#BBC2CF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 65.3 + black: 0 + red: 45.1 + green: 56.5 + yellow: 67.7 + blue: 50.7 + magenta: 41.9 + cyan: 69.9 + white: 46.4 + brightBlack: 0 + brightRed: 45.1 + brightGreen: 56.5 + brightYellow: 67.7 + brightBlue: 50.7 + brightMagenta: 41.9 + brightCyan: 69.9 + brightWhite: 65.3 diff --git a/themes/doom-one-light.yaml b/themes/doom-one-light.yaml new file mode 100644 index 00000000..d23de383 --- /dev/null +++ b/themes/doom-one-light.yaml @@ -0,0 +1,49 @@ +name: "Doom One Light" +source: + marketplace_id: "lroolle.doom-themes" + version: "1.2.1" + installs: 513 + author: "lroolle" + repo: "https://github.com/lroolle/doom-one-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lroolle.doom-themes" +colors: + bg: "#FAFAFA" + fg: "#383A42" + black: "#1B2229" + red: "#E45649" + green: "#50A14F" + yellow: "#986801" + blue: "#4078F2" + magenta: "#A626A4" + cyan: "#0184BC" + white: "#C6C7C7" + brightBlack: "#202328" + brightRed: "#E45649" + brightGreen: "#50A14F" + brightYellow: "#986801" + brightBlue: "#4078F2" + brightMagenta: "#A626A4" + brightCyan: "#0184BC" + brightWhite: "#383A42" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 93.2 + black: 100 + red: 60.4 + green: 56 + yellow: 70.5 + blue: 64.3 + magenta: 76.2 + cyan: 65.1 + white: 27.2 + brightBlack: 99.7 + brightRed: 60.4 + brightGreen: 56 + brightYellow: 70.5 + brightBlue: 64.3 + brightMagenta: 76.2 + brightCyan: 65.1 + brightWhite: 93.2 diff --git a/themes/doom-one.yaml b/themes/doom-one.yaml new file mode 100644 index 00000000..85377040 --- /dev/null +++ b/themes/doom-one.yaml @@ -0,0 +1,49 @@ +name: "Doom One" +source: + marketplace_id: "NTBBloodbath.doom-one" + version: "0.1.1" + installs: 8955 + author: "NTBBloodbath" + repo: "https://github.com/NTBBloodbath/doom-one-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NTBBloodbath.doom-one" +colors: + bg: "#282C34" + fg: "#BBC2CF" + black: "#1B2229" + red: "#FF6C6B" + green: "#98BE65" + yellow: "#ECBE7B" + blue: "#51AFEF" + magenta: "#C678DD" + cyan: "#46D9FF" + white: "#BBC2CF" + brightBlack: "#3F444A" + brightRed: "#FF6C6B" + brightGreen: "#98BE65" + brightYellow: "#ECBE7B" + brightBlue: "#51AFEF" + brightMagenta: "#A9A1E1" + brightCyan: "#46D9FF" + brightWhite: "#EFEFEF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 65.3 + black: 0 + red: 45.1 + green: 56.5 + yellow: 67.7 + blue: 50.7 + magenta: 41.9 + cyan: 69.9 + white: 65.3 + brightBlack: 0 + brightRed: 45.1 + brightGreen: 56.5 + brightYellow: 67.7 + brightBlue: 50.7 + brightMagenta: 51.2 + brightCyan: 69.9 + brightWhite: 93.2 diff --git a/themes/dooshtheme.yaml b/themes/dooshtheme.yaml new file mode 100644 index 00000000..10c9b2b0 --- /dev/null +++ b/themes/dooshtheme.yaml @@ -0,0 +1,49 @@ +name: "DooshTheme" +source: + marketplace_id: "dooshii.dooshtheme" + version: "0.0.1" + installs: 16 + author: "dooshii" + repo: "https://github.com/dooshiifox/dotfiles" + url: "https://marketplace.visualstudio.com/items?itemName=dooshii.dooshtheme" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#42454F" + red: "#C7202E" + green: "#5DBA1A" + yellow: "#CBC815" + blue: "#2377BC" + magenta: "#9F2BC2" + cyan: "#0E99A7" + white: "#CCEBEB" + brightBlack: "#636D82" + brightRed: "#EE7781" + brightGreen: "#B9F08C" + brightYellow: "#FBFF84" + brightBlue: "#78CAF2" + brightMagenta: "#CD7BE6" + brightCyan: "#6ABEC7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 20.8 + green: 49.6 + yellow: 65.9 + blue: 25 + magenta: 19.6 + cyan: 36.3 + white: 86.7 + brightBlack: 21.7 + brightRed: 44.7 + brightGreen: 83.8 + brightYellow: 99 + brightBlue: 64.5 + brightMagenta: 44.4 + brightCyan: 56.1 + brightWhite: 103.7 diff --git a/themes/dork.yaml b/themes/dork.yaml new file mode 100644 index 00000000..380bce85 --- /dev/null +++ b/themes/dork.yaml @@ -0,0 +1,49 @@ +name: "dork" +source: + marketplace_id: "goldyflakes.dork" + version: "0.0.1" + installs: 117 + author: "goldyflakes" + repo: "https://github.com/goldyflakes/dork-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=goldyflakes.dork" +colors: + bg: "#242229" + fg: "#E7DEFC" + black: "#4B4956" + red: "#FC6399" + green: "#A0DAA0" + yellow: "#FCCD9B" + blue: "#9FA7EA" + magenta: "#FDB1DF" + cyan: "#ADFFFF" + white: "#E7DEFC" + brightBlack: "#4C5056" + brightRed: "#F587A6" + brightGreen: "#97EED8" + brightYellow: "#F8D6BF" + brightBlue: "#B4BEFE" + brightMagenta: "#D49AF7" + brightCyan: "#94EAEA" + brightWhite: "#BAB3C5" +meta: + mode: "dark" + accent: "red" + hue: 299 + contrast: + fg: 86.7 + black: 9.6 + red: 45.5 + green: 73 + yellow: 78.8 + blue: 54.5 + magenta: 70.8 + cyan: 96 + white: 86.7 + brightBlack: 11.5 + brightRed: 53.3 + brightGreen: 83.9 + brightYellow: 83.1 + brightBlue: 67 + brightMagenta: 57.5 + brightCyan: 82.5 + brightWhite: 60.3 diff --git a/themes/dorkmode.yaml b/themes/dorkmode.yaml new file mode 100644 index 00000000..ae53b491 --- /dev/null +++ b/themes/dorkmode.yaml @@ -0,0 +1,49 @@ +name: "Dorkmode" +source: + marketplace_id: "DomGiarrusso.dorkmode" + version: "1.0.6" + installs: 93 + author: "Dom Giarrusso" + repo: "https://github.com/DomGiarrusso/Dorkmode" + url: "https://marketplace.visualstudio.com/items?itemName=DomGiarrusso.dorkmode" +colors: + bg: "#010409" + fg: "#F8F9FA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 248 + contrast: + fg: 103.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/dot-developer-dark.yaml b/themes/dot-developer-dark.yaml new file mode 100644 index 00000000..49feee5f --- /dev/null +++ b/themes/dot-developer-dark.yaml @@ -0,0 +1,49 @@ +name: "Dot Developer (Dark)" +source: + marketplace_id: "n-devs.vscode-dot-developer" + version: "1.1.9" + installs: 796 + author: "n-devs" + repo: "https://github.com/n-devs/vscode-dot-developer" + url: "https://marketplace.visualstudio.com/items?itemName=n-devs.vscode-dot-developer" +colors: + bg: "#28334C" + fg: "#BACFFF" + black: "#403F53" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2AA298" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 71.4 + black: 0 + red: 27 + green: 29.1 + yellow: 57 + blue: 33.2 + magenta: 28 + cyan: 37.9 + white: 92.1 + brightBlack: 0 + brightRed: 27 + brightGreen: 29.1 + brightYellow: 54.1 + brightBlue: 33.2 + brightMagenta: 28 + brightCyan: 37.9 + brightWhite: 92.1 diff --git a/themes/dotportal.yaml b/themes/dotportal.yaml new file mode 100644 index 00000000..83a616f2 --- /dev/null +++ b/themes/dotportal.yaml @@ -0,0 +1,49 @@ +name: "dotPortal" +source: + marketplace_id: "dotPortal.just-a-theme" + version: "1.0.4" + installs: 256 + author: "dotPortal" + repo: "https://github.com/dotportal/just-a-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dotPortal.just-a-theme" +colors: + bg: "#242424" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.7 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/downpour-contrast.yaml b/themes/downpour-contrast.yaml new file mode 100644 index 00000000..d1779fb8 --- /dev/null +++ b/themes/downpour-contrast.yaml @@ -0,0 +1,49 @@ +name: "downpour-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#121419" + fg: "#D6DBDB" + black: "#1D2028" + red: "#BA0E2E" + green: "#BC4331" + yellow: "#908BBC" + blue: "#91B9C9" + magenta: "#ABAAB7" + cyan: "#908BBC" + white: "#E4E7E7" + brightBlack: "#3D4354" + brightRed: "#F03E5F" + brightGreen: "#DC8477" + brightYellow: "#CECCE1" + brightBlue: "#D5E5EB" + brightMagenta: "#E2E1E6" + brightCyan: "#CECCE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 83.4 + black: 0 + red: 20.8 + green: 25.7 + yellow: 42.1 + blue: 60.4 + magenta: 56.2 + cyan: 42.1 + white: 91.2 + brightBlack: 8.8 + brightRed: 37.1 + brightGreen: 48.1 + brightYellow: 76.2 + brightBlue: 88.5 + brightMagenta: 88.1 + brightCyan: 76.2 + brightWhite: 107.1 diff --git a/themes/downpour-light.yaml b/themes/downpour-light.yaml new file mode 100644 index 00000000..bd550c28 --- /dev/null +++ b/themes/downpour-light.yaml @@ -0,0 +1,49 @@ +name: "downpour-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#D6DBDB" + fg: "#2C323D" + black: "#E4E7E7" + red: "#BA0E2E" + green: "#BC4331" + yellow: "#736F99" + blue: "#698996" + magenta: "#787782" + cyan: "#736F99" + white: "#373E4C" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DC8477" + brightYellow: "#ADABC3" + brightBlue: "#A5B8C0" + brightMagenta: "#ADACB3" + brightCyan: "#ADABC3" + brightWhite: "#576378" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 77.4 + black: 0 + red: 58.7 + green: 53.6 + yellow: 51 + blue: 43.2 + magenta: 48.9 + cyan: 51 + white: 73.2 + brightBlack: 22.1 + brightRed: 42.2 + brightGreen: 31.3 + brightYellow: 22.4 + brightBlue: 18.4 + brightMagenta: 22.7 + brightCyan: 22.4 + brightWhite: 58.6 diff --git a/themes/downpour.yaml b/themes/downpour.yaml new file mode 100644 index 00000000..0a9f5906 --- /dev/null +++ b/themes/downpour.yaml @@ -0,0 +1,49 @@ +name: "downpour" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2C323D" + fg: "#D6DBDB" + black: "#373E4C" + red: "#BA0E2E" + green: "#BC4331" + yellow: "#908BBC" + blue: "#91B9C9" + magenta: "#ABAAB7" + cyan: "#908BBC" + white: "#E4E7E7" + brightBlack: "#576378" + brightRed: "#F03E5F" + brightGreen: "#DC8477" + brightYellow: "#CECCE1" + brightBlue: "#D5E5EB" + brightMagenta: "#E2E1E6" + brightCyan: "#CECCE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 263 + contrast: + fg: 78.6 + black: 0 + red: 16 + green: 20.9 + yellow: 37.3 + blue: 55.6 + magenta: 51.4 + cyan: 37.3 + white: 86.3 + brightBlack: 16 + brightRed: 32.3 + brightGreen: 43.3 + brightYellow: 71.4 + brightBlue: 83.7 + brightMagenta: 83.3 + brightCyan: 71.4 + brightWhite: 102.3 diff --git a/themes/doxa-code-color-theme.yaml b/themes/doxa-code-color-theme.yaml new file mode 100644 index 00000000..3f1101d9 --- /dev/null +++ b/themes/doxa-code-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Doxa Code Color Theme" +source: + marketplace_id: "doxa-code-color-theme.doxa-code-theme-colorr" + version: "0.0.5" + installs: 131 + author: "Doxa Code" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=doxa-code-color-theme.doxa-code-theme-colorr" +colors: + bg: "#22202C" + fg: "#F8F8F2" + black: "#22202C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6C6985" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 292 + contrast: + fg: 100.6 + black: 0 + red: 42 + green: 83.5 + yellow: 97.2 + blue: 52.3 + magenta: 53.2 + cyan: 82.6 + white: 100.6 + brightBlack: 23.3 + brightRed: 47.5 + brightGreen: 87.7 + brightYellow: 102.2 + brightBlue: 64.8 + brightMagenta: 61.3 + brightCyan: 95.4 + brightWhite: 105.5 diff --git a/themes/doyoubleed.yaml b/themes/doyoubleed.yaml new file mode 100644 index 00000000..823f63a8 --- /dev/null +++ b/themes/doyoubleed.yaml @@ -0,0 +1,49 @@ +name: "DoYouBleed" +source: + marketplace_id: "GeoBrodas.geobrodas-theme-red-doyoubleed" + version: "1.0.2" + installs: 351 + author: "GeoBrodas" + repo: "https://github.com/GeoBrodas/doyoubleed" + url: "https://marketplace.visualstudio.com/items?itemName=GeoBrodas.geobrodas-theme-red-doyoubleed" +colors: + bg: "#121013" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E0CBCB" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 107.4 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 77.4 diff --git a/themes/dr-jones.yaml b/themes/dr-jones.yaml new file mode 100644 index 00000000..6ac155c6 --- /dev/null +++ b/themes/dr-jones.yaml @@ -0,0 +1,49 @@ +name: "Dr. Jones" +source: + marketplace_id: "Rachael.rachaels-themes" + version: "0.0.2" + installs: 1169 + author: "Rachael" + repo: "https://github.com/rbouissey/rachaelsthemes" + url: "https://marketplace.visualstudio.com/items?itemName=Rachael.rachaels-themes" +colors: + bg: "#EDDABC" + fg: "#002D3A" + black: "#000000" + red: "#002D3A" + green: "#47722D" + yellow: "#FFCA00" + blue: "#002D3A" + magenta: "#5A5072" + cyan: "#79B9C7" + white: "#EDDABC" + brightBlack: "#000000" + brightRed: "#002D3A" + brightGreen: "#47722D" + brightYellow: "#FFCA00" + brightBlue: "#002D3A" + brightMagenta: "#5A5072" + brightCyan: "#79B9C7" + brightWhite: "#814E00" +meta: + mode: "light" + accent: "yellow" + hue: 79 + contrast: + fg: 80.8 + black: 85.7 + red: 80.8 + green: 57.8 + yellow: 0 + blue: 80.8 + magenta: 65.5 + cyan: 22.7 + white: 0 + brightBlack: 85.7 + brightRed: 80.8 + brightGreen: 57.8 + brightYellow: 0 + brightBlue: 80.8 + brightMagenta: 65.5 + brightCyan: 22.7 + brightWhite: 63.3 diff --git a/themes/draco-dark.yaml b/themes/draco-dark.yaml new file mode 100644 index 00000000..96f8601f --- /dev/null +++ b/themes/draco-dark.yaml @@ -0,0 +1,49 @@ +name: "Draco-dark" +source: + marketplace_id: "Draco.draco-dark" + version: "0.0.3" + installs: 6842 + author: "Draco" + repo: "https://github.com/PR7JW7L/vsc-draco-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Draco.draco-dark" +colors: + bg: "#151515" + fg: "#BCBCBC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 65.5 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/draconica.yaml b/themes/draconica.yaml new file mode 100644 index 00000000..04da4e13 --- /dev/null +++ b/themes/draconica.yaml @@ -0,0 +1,49 @@ +name: "Draconica" +source: + marketplace_id: "daniloBrayann.blue-theme-dark" + version: "0.0.37" + installs: 454 + author: "daniloBrayann" + repo: "https://github.com/danilobrayann/dev-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.blue-theme-dark" +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#21212B" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 50.7 + magenta: 51.6 + cyan: 81 + white: 99 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/dracula-at-dusk.yaml b/themes/dracula-at-dusk.yaml new file mode 100644 index 00000000..41a61acf --- /dev/null +++ b/themes/dracula-at-dusk.yaml @@ -0,0 +1,49 @@ +name: "Dracula At Dusk" +source: + marketplace_id: "Telokis.theme-dracula-at-dusk" + version: "1.0.6" + installs: 12062 + author: "Telokis" + repo: "https://gitlab.com/Telokis/dracula-at-dusk" + url: "https://marketplace.visualstudio.com/items?itemName=Telokis.theme-dracula-at-dusk" +colors: + bg: "#0E1419" + fg: "#EBEBE6" + black: "#44475A" + red: "#DE312B" + green: "#2FD651" + yellow: "#D0D662" + blue: "#9C6FCF" + magenta: "#DE559C" + cyan: "#6AC5D3" + white: "#656B84" + brightBlack: "#656B84" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#BD93F9" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 244 + contrast: + fg: 93.9 + black: 10.6 + red: 30.8 + green: 65.3 + yellow: 76.9 + blue: 36 + magenta: 38.5 + cyan: 63.3 + white: 24.9 + brightBlack: 24.9 + brightRed: 43.7 + brightGreen: 85.2 + brightYellow: 98.9 + brightBlue: 54 + brightMagenta: 54.9 + brightCyan: 84.3 + brightWhite: 102.3 diff --git a/themes/dracula-at-midnight.yaml b/themes/dracula-at-midnight.yaml new file mode 100644 index 00000000..116ed7ec --- /dev/null +++ b/themes/dracula-at-midnight.yaml @@ -0,0 +1,49 @@ +name: "Dracula At Midnight" +source: + marketplace_id: "walcew.dracula-at-midnight" + version: "3.0.0" + installs: 27 + author: "Wallacy Santos Ferreira" + repo: "https://github.com/walcew/dracula-at-midnight" + url: "https://marketplace.visualstudio.com/items?itemName=walcew.dracula-at-midnight" +colors: + bg: "#1F1F1F" + fg: "#F8F8F2" + black: "#44475A" + red: "#DE312B" + green: "#2FD651" + yellow: "#D0D662" + blue: "#9C6FCF" + magenta: "#DE559C" + cyan: "#6AC5D3" + white: "#656B84" + brightBlack: "#656B84" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#BD93F9" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 101 + black: 9.3 + red: 29.5 + green: 64 + yellow: 75.6 + blue: 34.7 + magenta: 37.2 + cyan: 62 + white: 23.6 + brightBlack: 23.6 + brightRed: 42.4 + brightGreen: 83.9 + brightYellow: 97.6 + brightBlue: 52.7 + brightMagenta: 53.6 + brightCyan: 83 + brightWhite: 101 diff --git a/themes/dracula-at-night.yaml b/themes/dracula-at-night.yaml new file mode 100644 index 00000000..a3c22369 --- /dev/null +++ b/themes/dracula-at-night.yaml @@ -0,0 +1,49 @@ +name: "Dracula At Night" +source: + marketplace_id: "bceskavich.theme-dracula-at-night" + version: "2.7.1" + installs: 567159 + author: "bceskavich" + repo: "https://github.com/bceskavich/dracula-at-night" + url: "https://marketplace.visualstudio.com/items?itemName=bceskavich.theme-dracula-at-night" +colors: + bg: "#0E1419" + fg: "#F8F8F2" + black: "#44475A" + red: "#DE312B" + green: "#2FD651" + yellow: "#D0D662" + blue: "#9C6FCF" + magenta: "#DE559C" + cyan: "#6AC5D3" + white: "#656B84" + brightBlack: "#656B84" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#BD93F9" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 244 + contrast: + fg: 102.3 + black: 10.6 + red: 30.8 + green: 65.3 + yellow: 76.9 + blue: 36 + magenta: 38.5 + cyan: 63.3 + white: 24.9 + brightBlack: 24.9 + brightRed: 43.7 + brightGreen: 85.2 + brightYellow: 98.9 + brightBlue: 54 + brightMagenta: 54.9 + brightCyan: 84.3 + brightWhite: 102.3 diff --git a/themes/dracula-clean.yaml b/themes/dracula-clean.yaml new file mode 100644 index 00000000..11d9e8fd --- /dev/null +++ b/themes/dracula-clean.yaml @@ -0,0 +1,49 @@ +name: "Dracula Clean" +source: + marketplace_id: "echevarriandre.theme-dracula-clean" + version: "4.0.6" + installs: 34464 + author: "André Echevarria" + repo: "https://github.com/echevarriandre/dracula-clean" + url: "https://marketplace.visualstudio.com/items?itemName=echevarriandre.theme-dracula-clean" +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 50.7 + magenta: 51.6 + cyan: 81 + white: 99 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/dracula-dimmed-color-theme.yaml b/themes/dracula-dimmed-color-theme.yaml new file mode 100644 index 00000000..80c547f8 --- /dev/null +++ b/themes/dracula-dimmed-color-theme.yaml @@ -0,0 +1,49 @@ +name: "dracula-dimmed-color-theme" +source: + marketplace_id: "scjorge.theme-dracula-dimmed" + version: "0.1.1" + installs: 2025 + author: "Jorge Silva" + repo: "https://github.com/scjorge/dracula-dimmed" + url: "https://marketplace.visualstudio.com/items?itemName=scjorge.theme-dracula-dimmed" +colors: + bg: "#22272E" + fg: "#DAE3ED" + black: "#262626" + red: "#EE6666" + green: "#57AB5A" + yellow: "#E7EE98" + blue: "#BF9EEE" + magenta: "#F286C4" + cyan: "#97E1F1" + white: "#F6F6F4" + brightBlack: "#7B7F8B" + brightRed: "#F07C7C" + brightGreen: "#57AB5A" + brightYellow: "#F6F6AE" + brightBlue: "#D6B4F7" + brightMagenta: "#F49DDA" + brightCyan: "#ADF6F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 257 + contrast: + fg: 85.9 + black: 0 + red: 41 + green: 44.3 + yellow: 89.5 + blue: 54.7 + magenta: 53.1 + cyan: 78.2 + white: 98.7 + brightBlack: 31.1 + brightRed: 47.3 + brightGreen: 44.3 + brightYellow: 96 + brightBlue: 66.4 + brightMagenta: 61.5 + brightCyan: 90.4 + brightWhite: 104.7 diff --git a/themes/dracula-falcon.yaml b/themes/dracula-falcon.yaml new file mode 100644 index 00000000..3b6245fe --- /dev/null +++ b/themes/dracula-falcon.yaml @@ -0,0 +1,49 @@ +name: "Dracula Falcon" +source: + marketplace_id: "nandofalcao.dracula-falcon" + version: "0.0.71" + installs: 3760 + author: "Fernando Falcão" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=nandofalcao.dracula-falcon" +colors: + bg: "#202125" + fg: "#CDD0DD" + black: "#21222C" + red: "#FF5555" + green: "#00B5DC" + yellow: "#E2DD61" + blue: "#FF79C6" + magenta: "#FF79C6" + cyan: "#00B5DC" + white: "#CDD0DD" + brightBlack: "#465276" + brightRed: "#FF5555" + brightGreen: "#00B5DC" + brightYellow: "#E2DD61" + brightBlue: "#FF79C6" + brightMagenta: "#FF79C6" + brightCyan: "#00B5DC" + brightWhite: "#CDD0DD" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 76 + black: 0 + red: 42.1 + green: 52.6 + yellow: 80.8 + blue: 53.3 + magenta: 53.3 + cyan: 52.6 + white: 76 + brightBlack: 13.1 + brightRed: 42.1 + brightGreen: 52.6 + brightYellow: 80.8 + brightBlue: 53.3 + brightMagenta: 53.3 + brightCyan: 52.6 + brightWhite: 76 diff --git a/themes/dracula-gray.yaml b/themes/dracula-gray.yaml new file mode 100644 index 00000000..1051636e --- /dev/null +++ b/themes/dracula-gray.yaml @@ -0,0 +1,49 @@ +name: "dracula-gray" +source: + marketplace_id: "wivim-dev.graydraculatheme" + version: "0.1.14" + installs: 325 + author: "wivimdavid" + repo: "https://github.com/WivimDavid/vscode-gray" + url: "https://marketplace.visualstudio.com/items?itemName=wivim-dev.graydraculatheme" +colors: + bg: "#1E2029" + fg: "#868690" + black: "#1E2029" + red: "#4E4F59" + green: "#4E4F59" + yellow: "#4E4F59" + blue: "#4E4F59" + magenta: "#4E4F59" + cyan: "#4E4F59" + white: "#E2E4ED" + brightBlack: "#575861" + brightRed: "#4E4F59" + brightGreen: "#4E4F59" + brightYellow: "#4E4F59" + brightBlue: "#4E4F59" + brightMagenta: "#4E4F59" + brightCyan: "#4E4F59" + brightWhite: "#E2E4ED" +meta: + mode: "dark" + accent: "purple" + hue: 275 + contrast: + fg: 35.8 + black: 0 + red: 11.9 + green: 11.9 + yellow: 11.9 + blue: 11.9 + magenta: 11.9 + cyan: 11.9 + white: 88.4 + brightBlack: 15.3 + brightRed: 11.9 + brightGreen: 11.9 + brightYellow: 11.9 + brightBlue: 11.9 + brightMagenta: 11.9 + brightCyan: 11.9 + brightWhite: 88.4 diff --git a/themes/dracula-high-contract.yaml b/themes/dracula-high-contract.yaml new file mode 100644 index 00000000..3442bec2 --- /dev/null +++ b/themes/dracula-high-contract.yaml @@ -0,0 +1,49 @@ +name: "Dracula High Contract" +source: + marketplace_id: "datvo.theme-monokai-v2" + version: "1.0.4" + installs: 1745 + author: "Dat Vo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=datvo.theme-monokai-v2" +colors: + bg: "#202232" + fg: "#FFFFFF" + black: "#171926" + red: "#FF4F4F" + green: "#48FF80" + yellow: "#FFFF90" + blue: "#D29BFF" + magenta: "#FF79DF" + cyan: "#8FFFFF" + white: "#FFFFFF" + brightBlack: "#6278BA" + brightRed: "#FF6E6E" + brightGreen: "#66FF9F" + brightYellow: "#FFFFAF" + brightBlue: "#F1BAFF" + brightMagenta: "#FF98FE" + brightCyan: "#AEFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 279 + contrast: + fg: 105.3 + black: 0 + red: 40.7 + green: 85.8 + yellow: 101.4 + blue: 58.1 + magenta: 54.3 + cyan: 93.6 + white: 105.3 + brightBlack: 29.6 + brightRed: 47.2 + brightGreen: 87.6 + brightYellow: 102.2 + brightBlue: 73.8 + brightMagenta: 64.6 + brightCyan: 96 + brightWhite: 105.3 diff --git a/themes/dracula-light.yaml b/themes/dracula-light.yaml new file mode 100644 index 00000000..cbf5ffe6 --- /dev/null +++ b/themes/dracula-light.yaml @@ -0,0 +1,49 @@ +name: "Dracula Light" +source: + marketplace_id: "f-hossen.dracula-theme-light-dark" + version: "0.0.2" + installs: 1097 + author: "Farhad H." + repo: "https://github.com/f-hossen/dracula-theme-light-dark" + url: "https://marketplace.visualstudio.com/items?itemName=f-hossen.dracula-theme-light-dark" +colors: + bg: "#F4F4F9" + fg: "#404040" + black: "#E6E6EB" + red: "#E45649" + green: "#008000" + yellow: "#A8A800" + blue: "#9C66E8" + magenta: "#FF9ED4" + cyan: "#00C1EC" + white: "#404040" + brightBlack: "#8A8F9E" + brightRed: "#D16969" + brightGreen: "#6A9955" + brightYellow: "#D7AF00" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#282A36" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 87.8 + black: 0 + red: 57 + green: 68.3 + yellow: 43.2 + blue: 59.1 + magenta: 29.4 + cyan: 34.8 + white: 87.8 + brightBlack: 53.2 + brightRed: 56.2 + brightGreen: 54.3 + brightYellow: 34.4 + brightBlue: 29.1 + brightMagenta: 32.4 + brightCyan: 0 + brightWhite: 94.6 diff --git a/themes/dracula-midnight.yaml b/themes/dracula-midnight.yaml new file mode 100644 index 00000000..f9360e9b --- /dev/null +++ b/themes/dracula-midnight.yaml @@ -0,0 +1,49 @@ +name: "Dracula Midnight" +source: + marketplace_id: "realeinar.theme-dracula-midnight" + version: "1.0.0" + installs: 673 + author: "Einar" + repo: "https://github.com/realeinar/dracula-midnight" + url: "https://marketplace.visualstudio.com/items?itemName=realeinar.theme-dracula-midnight" +colors: + bg: "#242530" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 281 + contrast: + fg: 99.9 + black: 0 + red: 41.4 + green: 82.8 + yellow: 96.5 + blue: 51.6 + magenta: 52.5 + cyan: 81.9 + white: 99.9 + brightBlack: 26 + brightRed: 46.8 + brightGreen: 87 + brightYellow: 101.5 + brightBlue: 64.1 + brightMagenta: 60.6 + brightCyan: 94.7 + brightWhite: 104.8 diff --git a/themes/dracula-min-light-darker-theme.yaml b/themes/dracula-min-light-darker-theme.yaml new file mode 100644 index 00000000..58b09b65 --- /dev/null +++ b/themes/dracula-min-light-darker-theme.yaml @@ -0,0 +1,49 @@ +name: "Dracula.min Light Darker Theme" +source: + marketplace_id: "ashrafhadden.dracula-dot-min" + version: "2.1.1" + installs: 12878 + author: "Ashraf Hadden" + repo: "https://github.com/ashrafhadden/dracula.min" + url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" +colors: + bg: "#F8F8F2" + fg: "#282A36" + black: "#EAEBF9" + red: "#AE001C" + green: "#006400" + yellow: "#4C5B00" + blue: "#64429E" + magenta: "#9F1670" + cyan: "#005D6F" + white: "#282A36" + brightBlack: "#7E8EC2" + brightRed: "#A7192C" + brightGreen: "#006400" + brightYellow: "#535901" + brightBlue: "#68448E" + brightMagenta: "#912A78" + brightCyan: "#005F60" + brightWhite: "#555555" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.5 + black: 0 + red: 78.8 + green: 80.7 + yellow: 81.4 + blue: 81.2 + magenta: 79.8 + cyan: 81.1 + white: 96.5 + brightBlack: 54.9 + brightRed: 79.7 + brightGreen: 80.7 + brightYellow: 81.5 + brightBlue: 81.3 + brightMagenta: 80.6 + brightCyan: 81.1 + brightWhite: 81.5 diff --git a/themes/dracula-min-light-theme.yaml b/themes/dracula-min-light-theme.yaml new file mode 100644 index 00000000..65189775 --- /dev/null +++ b/themes/dracula-min-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Dracula.min Light Theme" +source: + marketplace_id: "ashrafhadden.dracula-dot-min" + version: "2.1.1" + installs: 12878 + author: "Ashraf Hadden" + repo: "https://github.com/ashrafhadden/dracula.min" + url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" +colors: + bg: "#F8F8F2" + fg: "#282A36" + black: "#EAEBF9" + red: "#D82F39" + green: "#008504" + yellow: "#6C7908" + blue: "#855FBF" + magenta: "#C13F8E" + cyan: "#007E90" + white: "#282A36" + brightBlack: "#7E8EC2" + brightRed: "#CB4046" + brightGreen: "#008525" + brightYellow: "#727724" + brightBlue: "#8762AE" + brightMagenta: "#B34B97" + brightCyan: "#157F80" + brightWhite: "#727272" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.5 + black: 0 + red: 67.2 + green: 68.2 + yellow: 68.7 + blue: 68.6 + magenta: 68 + cyan: 68.2 + white: 96.5 + brightBlack: 54.9 + brightRed: 67.9 + brightGreen: 68.1 + brightYellow: 68.7 + brightBlue: 68.6 + brightMagenta: 68.3 + brightCyan: 68.4 + brightWhite: 69 diff --git a/themes/dracula-min-white-darker-theme.yaml b/themes/dracula-min-white-darker-theme.yaml new file mode 100644 index 00000000..e843943f --- /dev/null +++ b/themes/dracula-min-white-darker-theme.yaml @@ -0,0 +1,49 @@ +name: "Dracula.min White Darker Theme" +source: + marketplace_id: "ashrafhadden.dracula-dot-min" + version: "2.1.1" + installs: 12878 + author: "Ashraf Hadden" + repo: "https://github.com/ashrafhadden/dracula.min" + url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" +colors: + bg: "#FFFFFF" + fg: "#282A36" + black: "#F1F2FF" + red: "#B60021" + green: "#006800" + yellow: "#515F00" + blue: "#6946A3" + magenta: "#A41D74" + cyan: "#006274" + white: "#282A36" + brightBlack: "#8393C7" + brightRed: "#AC202F" + brightGreen: "#006803" + brightYellow: "#585E06" + brightBlue: "#6C4993" + brightMagenta: "#962F7C" + brightCyan: "#006465" + brightWhite: "#595959" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101 + black: 0 + red: 81.5 + green: 83.7 + yellow: 84.2 + blue: 83.9 + magenta: 82.7 + cyan: 83.7 + white: 101 + brightBlack: 56.9 + brightRed: 82.6 + brightGreen: 83.7 + brightYellow: 83.9 + brightBlue: 83.9 + brightMagenta: 83.4 + brightCyan: 83.6 + brightWhite: 84.3 diff --git a/themes/dracula-min-white-theme.yaml b/themes/dracula-min-white-theme.yaml new file mode 100644 index 00000000..1d65ce94 --- /dev/null +++ b/themes/dracula-min-white-theme.yaml @@ -0,0 +1,49 @@ +name: "Dracula.min White Theme" +source: + marketplace_id: "ashrafhadden.dracula-dot-min" + version: "2.1.1" + installs: 12878 + author: "Ashraf Hadden" + repo: "https://github.com/ashrafhadden/dracula.min" + url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" +colors: + bg: "#FFFFFF" + fg: "#282A36" + black: "#F1F2FF" + red: "#DE353D" + green: "#008A0D" + yellow: "#707E0F" + blue: "#8963C4" + magenta: "#C74493" + cyan: "#048395" + white: "#282A36" + brightBlack: "#8393C7" + brightRed: "#D1454B" + brightGreen: "#008A2A" + brightYellow: "#777B28" + brightBlue: "#8C66B3" + brightMagenta: "#B8509C" + brightCyan: "#1E8484" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101 + black: 0 + red: 69.6 + green: 70.6 + yellow: 71 + blue: 71.2 + magenta: 70.3 + cyan: 70.6 + white: 101 + brightBlack: 56.9 + brightRed: 70.2 + brightGreen: 70.5 + brightYellow: 71.3 + brightBlue: 71.1 + brightMagenta: 70.7 + brightCyan: 70.7 + brightWhite: 71.1 diff --git a/themes/dracula-pro-black.yaml b/themes/dracula-pro-black.yaml new file mode 100644 index 00000000..e13cfac3 --- /dev/null +++ b/themes/dracula-pro-black.yaml @@ -0,0 +1,49 @@ +name: "Dracula Pro Black" +source: + marketplace_id: "caiovellani.dracula-pro-free" + version: "1.2.0" + installs: 447 + author: "caiovellani" + repo: "https://github.com/caiovellani/dracula-pro" + url: "https://marketplace.visualstudio.com/items?itemName=caiovellani.dracula-pro-free" +colors: + bg: "#000000" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 103 + black: 0 + red: 44.4 + green: 85.9 + yellow: 99.6 + blue: 54.6 + magenta: 55.6 + cyan: 85 + white: 103 + brightBlack: 29.1 + brightRed: 49.8 + brightGreen: 90 + brightYellow: 104.5 + brightBlue: 67.1 + brightMagenta: 63.6 + brightCyan: 97.8 + brightWhite: 107.9 diff --git a/themes/dracula-soft.yaml b/themes/dracula-soft.yaml new file mode 100644 index 00000000..b769f5c8 --- /dev/null +++ b/themes/dracula-soft.yaml @@ -0,0 +1,49 @@ +name: "dracula-soft" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 660 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" +colors: + bg: "#282A36" + fg: "#F6F6F4" + black: "#262626" + red: "#EE6666" + green: "#62E884" + yellow: "#E7EE98" + blue: "#BF9EEE" + magenta: "#F286C4" + cyan: "#97E1F1" + white: "#F6F6F4" + brightBlack: "#7B7F8B" + brightRed: "#F07C7C" + brightGreen: "#78F09A" + brightYellow: "#F6F6AE" + brightBlue: "#D6B4F7" + brightMagenta: "#F49DDA" + brightCyan: "#ADF6F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + contrast: + fg: 97.9 + black: 0 + red: 40.3 + green: 73.5 + yellow: 88.8 + blue: 53.9 + magenta: 52.4 + cyan: 77.5 + white: 97.9 + brightBlack: 30.4 + brightRed: 46.5 + brightGreen: 79.2 + brightYellow: 95.2 + brightBlue: 65.6 + brightMagenta: 60.8 + brightCyan: 89.7 + brightWhite: 103.9 diff --git a/themes/dracula.yaml b/themes/dracula.yaml new file mode 100644 index 00000000..7a03cdb2 --- /dev/null +++ b/themes/dracula.yaml @@ -0,0 +1,49 @@ +name: "Dracula" +source: + marketplace_id: "titouan.theme-dracula" + version: "2.18.0" + installs: 15187 + author: "Titouan CREACH" + repo: "https://github.com/dracula/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=titouan.theme-dracula" +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#6EB0A5" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 49.1 + yellow: 95.6 + blue: 50.7 + magenta: 51.6 + cyan: 81 + white: 99 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/draculight.yaml b/themes/draculight.yaml new file mode 100644 index 00000000..d73daf28 --- /dev/null +++ b/themes/draculight.yaml @@ -0,0 +1,49 @@ +name: "Draculight" +source: + marketplace_id: "Nevyk.draculight" + version: "1.1.0" + installs: 1985 + author: "Nevyk" + repo: "https://github.com/nevyk/draculight" + url: "https://marketplace.visualstudio.com/items?itemName=Nevyk.draculight" +colors: + bg: "#F7F7F6" + fg: "#21253F" + black: "#000000" + red: "#FF0000" + green: "#39B757" + yellow: "#D4B701" + blue: "#3994FE" + magenta: "#FF29A3" + cyan: "#8D73E3" + white: "#F7F7F6" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#39B757" + brightYellow: "#D4B701" + brightBlue: "#3994FE" + brightMagenta: "#FF29A3" + brightCyan: "#8D73E3" + brightWhite: "#F7F7F6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97 + black: 101.2 + red: 59.3 + green: 45.5 + yellow: 33.3 + blue: 52.3 + magenta: 55.2 + cyan: 59.4 + white: 0 + brightBlack: 101.2 + brightRed: 59.3 + brightGreen: 45.5 + brightYellow: 33.3 + brightBlue: 52.3 + brightMagenta: 55.2 + brightCyan: 59.4 + brightWhite: 0 diff --git a/themes/draculish.yaml b/themes/draculish.yaml new file mode 100644 index 00000000..94620989 --- /dev/null +++ b/themes/draculish.yaml @@ -0,0 +1,49 @@ +name: "Draculish" +source: + marketplace_id: "gndf5000.dracul-ish" + version: "1.0.1" + installs: 901 + author: "gndf5000" + repo: "https://github.com/GNDF5000/draculish" + url: "https://marketplace.visualstudio.com/items?itemName=gndf5000.dracul-ish" +colors: + bg: "#1D2025" + fg: "#CBCEBC" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#95E6CB" + magenta: "#CFBAFA" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#95E6CB" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 261 + contrast: + fg: 73.7 + black: 0 + red: 49.3 + green: 66.4 + yellow: 79.4 + blue: 79.8 + magenta: 69 + cyan: 79.8 + white: 70.6 + brightBlack: 21.8 + brightRed: 51.8 + brightGreen: 80.8 + brightYellow: 82.4 + brightBlue: 79.8 + brightMagenta: 71.9 + brightCyan: 79.8 + brightWhite: 105.8 diff --git a/themes/dragn-dark-color-theme.yaml b/themes/dragn-dark-color-theme.yaml new file mode 100644 index 00000000..97cfe2ba --- /dev/null +++ b/themes/dragn-dark-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Dragn Dark Color Theme" +source: + marketplace_id: "Miladfathy.dragan-color-theme" + version: "2.0.8" + installs: 69755 + author: "Milad Fathy" + repo: "https://github.com/miladfathy" + url: "https://marketplace.visualstudio.com/items?itemName=Miladfathy.dragan-color-theme" +colors: + bg: "#17181A" + fg: "#E2E2E2" + black: "#090300" + red: "#DB2D20" + green: "#01A252" + yellow: "#FDED02" + blue: "#01A0E4" + magenta: "#A16A94" + cyan: "#0BA9DD" + white: "#F37676" + brightBlack: "#F38028" + brightRed: "#0A37FF" + brightGreen: "#01A252" + brightYellow: "#FDED02" + brightBlue: "#01A0E4" + brightMagenta: "#EB64CB" + brightCyan: "#FF0FF3" + brightWhite: "#240EE2" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 88 + black: 0 + red: 29.3 + green: 40.5 + yellow: 92.7 + blue: 45.6 + magenta: 31.7 + cyan: 48.8 + white: 48.3 + brightBlack: 49.8 + brightRed: 18.4 + brightGreen: 40.5 + brightYellow: 92.7 + brightBlue: 45.6 + brightMagenta: 45.9 + brightCyan: 44.3 + brightWhite: 12 diff --git a/themes/dragon.yaml b/themes/dragon.yaml new file mode 100644 index 00000000..027af833 --- /dev/null +++ b/themes/dragon.yaml @@ -0,0 +1,49 @@ +name: "Dragon" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2036 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" +colors: + bg: "#322518" + fg: "#E8DCC6" + black: "#1A1410" + red: "#8B2635" + green: "#7A8471" + yellow: "#D4A574" + blue: "#5A7C8A" + magenta: "#C08A96" + cyan: "#8FABA3" + white: "#E8DCC6" + brightBlack: "#4D3D2A" + brightRed: "#A03447" + brightGreen: "#8C9580" + brightYellow: "#E6B787" + brightBlue: "#6B8D9B" + brightMagenta: "#D4A1AA" + brightCyan: "#A5C4BA" + brightWhite: "#F7F1E8" +meta: + mode: "dark" + accent: "red" + hue: 66 + contrast: + fg: 82.7 + black: 0 + red: 10.1 + green: 31.7 + yellow: 55 + blue: 27.2 + magenta: 43.6 + cyan: 50.2 + white: 82.7 + brightBlack: 0 + brightRed: 15.9 + brightGreen: 40.1 + brightYellow: 65.1 + brightBlue: 35.2 + brightMagenta: 55.2 + brightCyan: 63.7 + brightWhite: 95.7 diff --git a/themes/dragonfly.yaml b/themes/dragonfly.yaml new file mode 100644 index 00000000..dbe71d07 --- /dev/null +++ b/themes/dragonfly.yaml @@ -0,0 +1,49 @@ +name: "Dragonfly" +source: + marketplace_id: "thelayeredmind.dragonfly-theme" + version: "1.0.1" + installs: 1884 + author: "thelayeredmind" + repo: "https://github.com/thelayeredmind/dragonfly-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thelayeredmind.dragonfly-theme" +colors: + bg: "#100F13" + fg: "#B3B8C5" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 63.6 + black: 0 + red: 44.6 + green: 54.8 + yellow: 67.2 + blue: 61.2 + magenta: 92.6 + cyan: 78.5 + white: 72.3 + brightBlack: 23.5 + brightRed: 47.2 + brightGreen: 76.5 + brightYellow: 70.2 + brightBlue: 63.9 + brightMagenta: 95.8 + brightCyan: 81.5 + brightWhite: 107.5 diff --git a/themes/dragonight.yaml b/themes/dragonight.yaml new file mode 100644 index 00000000..07fee3d1 --- /dev/null +++ b/themes/dragonight.yaml @@ -0,0 +1,49 @@ +name: "Dragonight" +source: + marketplace_id: "teamdragonight.dragonight" + version: "0.0.7" + installs: 4065 + author: "teamdragonight" + repo: "https://github.com/Akshaykumar2908/The-Dragonight" + url: "https://marketplace.visualstudio.com/items?itemName=teamdragonight.dragonight" +colors: + bg: "#121521" + fg: "#E5E5E5" + black: "#292121" + red: "#FF3333" + green: "#4AC948" + yellow: "#FFE303" + blue: "#1E90FF" + magenta: "#FF41FF" + cyan: "#00FFFF" + white: "#F2F2F2" + brightBlack: "#AEAEAE" + brightRed: "#FF6F6F" + brightGreen: "#80D97E" + brightYellow: "#FFF49A" + brightBlue: "#60B1FF" + brightMagenta: "#FF93FF" + brightCyan: "#99FFFF" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "pink" + hue: 273 + contrast: + fg: 90.1 + black: 0 + red: 38.7 + green: 59.4 + yellow: 88.7 + blue: 41.8 + magenta: 48.3 + cyan: 91.3 + white: 98.5 + brightBlack: 57.6 + brightRed: 49.2 + brightGreen: 70.8 + brightYellow: 98.1 + brightBlue: 56.6 + brightMagenta: 64.9 + brightCyan: 96.1 + brightWhite: 101.7 diff --git a/themes/drakencord-blue-fork.yaml b/themes/drakencord-blue-fork.yaml new file mode 100644 index 00000000..f79fb3ff --- /dev/null +++ b/themes/drakencord-blue-fork.yaml @@ -0,0 +1,49 @@ +name: "DrakenCord Blue - Fork" +source: + marketplace_id: "kvi2611.drakencord-blue" + version: "0.0.1" + installs: 68 + author: "kvi 2611" + repo: "https://github.com/Kaii-Dev/blue-cheese-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kvi2611.drakencord-blue" +colors: + bg: "#1D232C" + fg: "#E5E7EB" + black: "#000000" + red: "#FF2348" + green: "#ADDB67" + yellow: "#ECC48D" + blue: "#407DFF" + magenta: "#9F60EC" + cyan: "#11A8CD" + white: "#E5E7EB" + brightBlack: "#637777" + brightRed: "#FF5874" + brightGreen: "#8FB05E" + brightYellow: "#DCDCAA" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#29B8DB" + brightWhite: "#BBBEC4" +meta: + mode: "dark" + accent: "orange" + hue: 258 + contrast: + fg: 89.7 + black: 0 + red: 36.2 + green: 73.4 + yellow: 72.2 + blue: 34.6 + magenta: 33 + cyan: 46 + white: 89.7 + brightBlack: 26.3 + brightRed: 43 + brightGreen: 51.2 + brightYellow: 81 + brightBlue: 54.4 + brightMagenta: 52.2 + brightCyan: 53.9 + brightWhite: 64.8 diff --git a/themes/drakkar.yaml b/themes/drakkar.yaml new file mode 100644 index 00000000..05216ec0 --- /dev/null +++ b/themes/drakkar.yaml @@ -0,0 +1,49 @@ +name: "Drakkar" +source: + marketplace_id: "ubbeck.drakkar" + version: "1.1.2" + installs: 266 + author: "ubbeck" + repo: "https://github.com/ubbeck/drakkar.theme" + url: "https://marketplace.visualstudio.com/items?itemName=ubbeck.drakkar" +colors: + bg: "#24292E" + fg: "#E1E4E8" + black: "#3F4451" + red: "#E05561" + green: "#98C379" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#98C379" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 248 + contrast: + fg: 86.7 + black: 0 + red: 34.2 + green: 59.8 + yellow: 46.1 + blue: 47.1 + magenta: 36.5 + cyan: 50 + white: 80.5 + brightBlack: 12.9 + brightRed: 43.6 + brightGreen: 59.8 + brightYellow: 58.7 + brightBlue: 61.2 + brightMagenta: 47.7 + brightCyan: 65.3 + brightWhite: 88.1 diff --git a/themes/draquinho.yaml b/themes/draquinho.yaml new file mode 100644 index 00000000..b6087428 --- /dev/null +++ b/themes/draquinho.yaml @@ -0,0 +1,49 @@ +name: "Draquinho" +source: + marketplace_id: "KelsonCarvalho.draquinho" + version: "2.0.0" + installs: 184 + author: "Kelson Carvalho" + repo: "https://github.com/NoslekCode/draquinho" + url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.draquinho" +colors: + bg: "#282A36" + fg: "#FF8FFF" + black: "#B6B6B6" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#DBDBDB" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#F9F9F9" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 60.7 + black: 58.9 + red: 23.8 + green: 50 + yellow: 82.7 + blue: 24.5 + magenta: 26.8 + cyan: 44.6 + white: 80.8 + brightBlack: 19.1 + brightRed: 35.6 + brightGreen: 60.6 + brightYellow: 92.7 + brightBlue: 37 + brightMagenta: 42.4 + brightCyan: 52.4 + brightWhite: 100 diff --git a/themes/drasing-dark.yaml b/themes/drasing-dark.yaml new file mode 100644 index 00000000..a3800a30 --- /dev/null +++ b/themes/drasing-dark.yaml @@ -0,0 +1,49 @@ +name: "Drasing Dark" +source: + marketplace_id: "drasing.drasing-dark-theme" + version: "0.0.6" + installs: 13 + author: "drasing" + repo: "https://github.com/thiagoboize/drasing-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=drasing.drasing-dark-theme" +colors: + bg: "#101010" + fg: "#FFFFFF" + black: "#101010" + red: "#FF8080" + green: "#FFC799" + yellow: "#99FFE4" + blue: "#FFC799" + magenta: "#99FFE4" + cyan: "#FFC799" + white: "#FFFFFF" + brightBlack: "#505050" + brightRed: "#FF8080" + brightGreen: "#FFC799" + brightYellow: "#99FFE4" + brightBlue: "#FFC799" + brightMagenta: "#99FFE4" + brightCyan: "#FFC799" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 54.3 + green: 78.9 + yellow: 95.2 + blue: 78.9 + magenta: 95.2 + cyan: 78.9 + white: 107.4 + brightBlack: 13.8 + brightRed: 54.3 + brightGreen: 78.9 + brightYellow: 95.2 + brightBlue: 78.9 + brightMagenta: 95.2 + brightCyan: 78.9 + brightWhite: 107.4 diff --git a/themes/dreadbots-fork.yaml b/themes/dreadbots-fork.yaml new file mode 100644 index 00000000..271edd96 --- /dev/null +++ b/themes/dreadbots-fork.yaml @@ -0,0 +1,49 @@ +name: "Dreadbots - Fork" +source: + marketplace_id: "xynny.blazing-red" + version: "0.0.1" + installs: 7922 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.blazing-red" +colors: + bg: "#380E10" + fg: "#D4AC36" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D7D7D7" + brightBlack: "#5A5A5A" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 21 + contrast: + fg: 58.1 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 80.3 + brightBlack: 16.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 105.9 diff --git a/themes/dreamer-theme.yaml b/themes/dreamer-theme.yaml new file mode 100644 index 00000000..0a4ccc3e --- /dev/null +++ b/themes/dreamer-theme.yaml @@ -0,0 +1,49 @@ +name: "dreamer-theme" +source: + marketplace_id: "onlyadaydreamer.dreamer-theme" + version: "0.0.2" + installs: 134 + author: "onlyadaydreamer" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=onlyadaydreamer.dreamer-theme" +colors: + bg: "#151515" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 59.6 + black: 9 + red: 36.9 + green: 60.5 + yellow: 48.8 + blue: 49.8 + magenta: 39.2 + cyan: 52.7 + white: 90.8 + brightBlack: 15.6 + brightRed: 46.3 + brightGreen: 77 + brightYellow: 61.4 + brightBlue: 63.9 + brightMagenta: 50.4 + brightCyan: 68 + brightWhite: 83.2 diff --git a/themes/dreamy-lights.yaml b/themes/dreamy-lights.yaml new file mode 100644 index 00000000..fc8db6ef --- /dev/null +++ b/themes/dreamy-lights.yaml @@ -0,0 +1,49 @@ +name: "Dreamy Lights" +source: + marketplace_id: "t3nsor.dreamy-lights" + version: "0.0.1" + installs: 30 + author: "t3nsor" + repo: "https://github.com/t3nsor98/dreamy-lights-theme" + url: "https://marketplace.visualstudio.com/items?itemName=t3nsor.dreamy-lights" +colors: + bg: "#1A1A1A" + fg: "#FEF9EF" + black: "#000000" + red: "#FE6D73" + green: "#17C3B2" + yellow: "#FFCB77" + blue: "#227C9D" + magenta: "#FE6D73" + cyan: "#17C3B2" + white: "#FEF9EF" + brightBlack: "#000000" + brightRed: "#FE6D73" + brightGreen: "#17C3B2" + brightYellow: "#FFCB77" + brightBlue: "#17C3B2" + brightMagenta: "#FE6D73" + brightCyan: "#17C3B2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 102.8 + black: 0 + red: 48.2 + green: 57.8 + yellow: 78.8 + blue: 27.8 + magenta: 48.2 + cyan: 57.8 + white: 102.8 + brightBlack: 0 + brightRed: 48.2 + brightGreen: 57.8 + brightYellow: 78.8 + brightBlue: 57.8 + brightMagenta: 48.2 + brightCyan: 57.8 + brightWhite: 106.5 diff --git a/themes/dribbble-theme-light.yaml b/themes/dribbble-theme-light.yaml new file mode 100644 index 00000000..5b400f54 --- /dev/null +++ b/themes/dribbble-theme-light.yaml @@ -0,0 +1,49 @@ +name: "Dribbble Theme - Light" +source: + marketplace_id: "MarvinSernee.dribbble-theme" + version: "1.0.0" + installs: 707 + author: "Marvin Sernee" + repo: "https://github.com/MarvinMichel/dribbble-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MarvinSernee.dribbble-theme" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#757575" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 92.6 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 72 diff --git a/themes/drifter.yaml b/themes/drifter.yaml new file mode 100644 index 00000000..b9167b2d --- /dev/null +++ b/themes/drifter.yaml @@ -0,0 +1,49 @@ +name: "Drifter" +source: + marketplace_id: "dhruvkoli.drifter" + version: "0.0.1" + installs: 44 + author: "DhruvKoli" + repo: "https://github.com/dask-58/turbocodertheme" + url: "https://marketplace.visualstudio.com/items?itemName=dhruvkoli.drifter" +colors: + bg: "#260D22" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 334 + contrast: + fg: 106.8 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.7 + cyan: 47.5 + white: 89.9 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/drk.yaml b/themes/drk.yaml new file mode 100644 index 00000000..968bc1a3 --- /dev/null +++ b/themes/drk.yaml @@ -0,0 +1,49 @@ +name: "drk" +source: + marketplace_id: "u29dc.set" + version: "2.0.7" + installs: 1570 + author: "iinfin" + repo: "https://github.com/u29dc/set-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=u29dc.set" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#F5F5F5" + red: "#7F7F7F" + green: "#7F7F7F" + yellow: "#E5E5E5" + blue: "#7F7F7F" + magenta: "#7F7F7F" + cyan: "#7F7F7F" + white: "#0A0A0A" + brightBlack: "#FFFFFF" + brightRed: "#7F7F7F" + brightGreen: "#7F7F7F" + brightYellow: "#7F7F7F" + brightBlue: "#7F7F7F" + brightMagenta: "#7F7F7F" + brightCyan: "#7F7F7F" + brightWhite: "#333333" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 107.9 + black: 101.3 + red: 34.3 + green: 34.3 + yellow: 91 + blue: 34.3 + magenta: 34.3 + cyan: 34.3 + white: 0 + brightBlack: 107.9 + brightRed: 34.3 + brightGreen: 34.3 + brightYellow: 34.3 + brightBlue: 34.3 + brightMagenta: 34.3 + brightCyan: 34.3 + brightWhite: 0 diff --git a/themes/drukyul-dark.yaml b/themes/drukyul-dark.yaml new file mode 100644 index 00000000..52292648 --- /dev/null +++ b/themes/drukyul-dark.yaml @@ -0,0 +1,49 @@ +name: "Drukyul Dark" +source: + marketplace_id: "kashgurung.drukyul-themes" + version: "1.1.0" + installs: 529 + author: "Bikash Gurung" + repo: "https://github.com/kashgurung/drukyul-themes" + url: "https://marketplace.visualstudio.com/items?itemName=kashgurung.drukyul-themes" +colors: + bg: "#252929" + fg: "#EEFFFF" + black: "#252929" + red: "#F56B82" + green: "#71E197" + yellow: "#F78C6C" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#38B3BC" + white: "#EEFFFF" + brightBlack: "#6B7280" + brightRed: "#F56B82" + brightGreen: "#71E197" + brightYellow: "#F78C6C" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#38B3BC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 102.1 + black: 0 + red: 44 + green: 71.7 + yellow: 52.5 + blue: 53.4 + magenta: 51.3 + cyan: 49.5 + white: 102.1 + brightBlack: 24.7 + brightRed: 44 + brightGreen: 71.7 + brightYellow: 52.5 + brightBlue: 53.4 + brightMagenta: 51.3 + brightCyan: 49.5 + brightWhite: 104.4 diff --git a/themes/drukyul-light.yaml b/themes/drukyul-light.yaml new file mode 100644 index 00000000..f873b9b9 --- /dev/null +++ b/themes/drukyul-light.yaml @@ -0,0 +1,49 @@ +name: "Drukyul Light" +source: + marketplace_id: "kashgurung.drukyul-themes" + version: "1.1.0" + installs: 529 + author: "Bikash Gurung" + repo: "https://github.com/kashgurung/drukyul-themes" + url: "https://marketplace.visualstudio.com/items?itemName=kashgurung.drukyul-themes" +colors: + bg: "#F8F8F8" + fg: "#2D3232" + black: "#252929" + red: "#F56B82" + green: "#40C86D" + yellow: "#F78C6C" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#38B3BC" + white: "#EEFFFF" + brightBlack: "#6B7280" + brightRed: "#F56B82" + brightGreen: "#40C86D" + brightYellow: "#F78C6C" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#38B3BC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "teal" + hue: null + contrast: + fg: 95.1 + black: 97.4 + red: 50.1 + green: 37.9 + yellow: 41.9 + blue: 41 + magenta: 43.1 + cyan: 44.8 + white: 0 + brightBlack: 69.4 + brightRed: 50.1 + brightGreen: 37.9 + brightYellow: 41.9 + brightBlue: 41 + brightMagenta: 43.1 + brightCyan: 44.8 + brightWhite: 0 diff --git a/themes/drux-theme.yaml b/themes/drux-theme.yaml new file mode 100644 index 00000000..f49d18ca --- /dev/null +++ b/themes/drux-theme.yaml @@ -0,0 +1,49 @@ +name: "Drux Theme" +source: + marketplace_id: "DruxTech.drux-theme" + version: "1.0.1" + installs: 70 + author: "DruxTech" + repo: "https://gitlab.com/khaniuk/drux-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=DruxTech.drux-theme" +colors: + bg: "#EAE4E1" + fg: "#36221D" + black: "#EAE4E1" + red: "#FF3A3A" + green: "#8BC34A" + yellow: "#AD8200" + blue: "#009DB5" + magenta: "#CE4985" + cyan: "#00A47B" + white: "#36221D" + brightBlack: "#009DB5" + brightRed: "#FF3A3A" + brightGreen: "#8BC34A" + brightYellow: "#AD8200" + brightBlue: "#009DB5" + brightMagenta: "#CE4985" + brightCyan: "#00A47B" + brightWhite: "#36221D" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 86.5 + black: 0 + red: 46 + green: 25.6 + yellow: 47.2 + blue: 43.7 + magenta: 53.4 + cyan: 43.1 + white: 86.5 + brightBlack: 43.7 + brightRed: 46 + brightGreen: 25.6 + brightYellow: 47.2 + brightBlue: 43.7 + brightMagenta: 53.4 + brightCyan: 43.1 + brightWhite: 86.5 diff --git a/themes/ds-rose.yaml b/themes/ds-rose.yaml new file mode 100644 index 00000000..4a9c9297 --- /dev/null +++ b/themes/ds-rose.yaml @@ -0,0 +1,49 @@ +name: "DS Rose" +source: + marketplace_id: "MKDev.ds-rose" + version: "0.2.0" + installs: 770 + author: "MKDev" + repo: "https://github.com/Martin-Kristensen-WD/DS-Rose" + url: "https://marketplace.visualstudio.com/items?itemName=MKDev.ds-rose" +colors: + bg: "#161624" + fg: "#D5C1C1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 70.8 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 90 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 90 diff --git a/themes/duck-in-the-dream.yaml b/themes/duck-in-the-dream.yaml new file mode 100644 index 00000000..1c1f85e2 --- /dev/null +++ b/themes/duck-in-the-dream.yaml @@ -0,0 +1,49 @@ +name: "Duck in the Dream" +source: + marketplace_id: "MEvesalTR.duck-mode-vscode" + version: "0.9.7" + installs: 2138 + author: "MEvesalTR" + repo: "https://github.com/MEvesalTR/duck-mode" + url: "https://marketplace.visualstudio.com/items?itemName=MEvesalTR.duck-mode-vscode" +colors: + bg: "#110F17" + fg: "#EDECEE" + black: "#110F17" + red: "#FF5164" + green: "#87FF5F" + yellow: "#FFCA85" + blue: "#9B78FF" + magenta: "#87FF5F" + cyan: "#9B78FF" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#FFCA85" + brightGreen: "#9B78FF" + brightYellow: "#FFCA85" + brightBlue: "#9B78FF" + brightMagenta: "#87FF5F" + brightCyan: "#87FF5F" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "green" + hue: 296 + contrast: + fg: 95.3 + black: 0 + red: 43.6 + green: 90.2 + yellow: 79.6 + blue: 42.1 + magenta: 90.2 + cyan: 42.1 + white: 75.4 + brightBlack: 0 + brightRed: 79.6 + brightGreen: 42.1 + brightYellow: 79.6 + brightBlue: 42.1 + brightMagenta: 90.2 + brightCyan: 90.2 + brightWhite: 95.3 diff --git a/themes/duck-in-the-lake.yaml b/themes/duck-in-the-lake.yaml new file mode 100644 index 00000000..7400ed77 --- /dev/null +++ b/themes/duck-in-the-lake.yaml @@ -0,0 +1,49 @@ +name: "Duck in the Lake" +source: + marketplace_id: "MEvesalTR.duck-mode-vscode" + version: "0.9.7" + installs: 2138 + author: "MEvesalTR" + repo: "https://github.com/MEvesalTR/duck-mode" + url: "https://marketplace.visualstudio.com/items?itemName=MEvesalTR.duck-mode-vscode" +colors: + bg: "#1D222D" + fg: "#CCCAC2" + black: "#171B24" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#FFCD69" + brightBlue: "#73D0FF" + brightMagenta: "#DFBFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 266 + contrast: + fg: 72 + black: 0 + red: 48.9 + green: 69.3 + yellow: 77.1 + blue: 66.6 + magenta: 70.2 + cyan: 76.5 + white: 70.3 + brightBlack: 21.5 + brightRed: 51.4 + brightGreen: 95.8 + brightYellow: 78.3 + brightBlue: 69.5 + brightMagenta: 73.1 + brightCyan: 79.4 + brightWhite: 105.5 diff --git a/themes/duck-story.yaml b/themes/duck-story.yaml new file mode 100644 index 00000000..02447402 --- /dev/null +++ b/themes/duck-story.yaml @@ -0,0 +1,49 @@ +name: "Duck Story" +source: + marketplace_id: "andzhr.duck-story" + version: "1.0.0" + installs: 437 + author: "Andrey Zakharov" + repo: "https://github.com/andzhr/duck-story-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andzhr.duck-story" +colors: + bg: "#242423" + fg: "#EFE2BE" + black: "#151514" + red: "#E83221" + green: "#7ABC24" + yellow: "#FFB833" + blue: "#00CCF5" + magenta: "#D076C0" + cyan: "#19EDF0" + white: "#EBDDAD" + brightBlack: "#535350" + brightRed: "#EE6559" + brightGreen: "#99DB43" + brightYellow: "#FFCD70" + brightBlue: "#47E0FF" + brightMagenta: "#DB95CE" + brightCyan: "#52F1F4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.8 + black: 0 + red: 31.1 + green: 53.8 + yellow: 69 + blue: 63.9 + magenta: 42.9 + cyan: 79.5 + white: 83.4 + brightBlack: 12.5 + brightRed: 41 + brightGreen: 70.9 + brightYellow: 78.1 + brightBlue: 74.7 + brightMagenta: 54.5 + brightCyan: 82.8 + brightWhite: 105.1 diff --git a/themes/duckcash.yaml b/themes/duckcash.yaml new file mode 100644 index 00000000..bf1b6a1c --- /dev/null +++ b/themes/duckcash.yaml @@ -0,0 +1,49 @@ +name: "duckcash" +source: + marketplace_id: "duckcash.duckcash" + version: "0.3.1" + installs: 102 + author: "duckcash" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=duckcash.duckcash" +colors: + bg: "#FFFFFF" + fg: "#1F1F1F" + black: "#FFFFFF" + red: "#F7899C" + green: "#9BFBA3" + yellow: "#E1C342" + blue: "#39B1B3" + magenta: "#B200B3" + cyan: "#00A6B3" + white: "#C0BFBF" + brightBlack: "#C9C9C9" + brightRed: "#F8A3B3" + brightGreen: "#75FDC0" + brightYellow: "#F9EA8C" + brightBlue: "#43CCCA" + brightMagenta: "#E601E5" + brightCyan: "#31F4F4" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 103.4 + black: 0 + red: 45.6 + green: 12.5 + yellow: 31.4 + blue: 50.2 + magenta: 77.2 + cyan: 55.4 + white: 34.4 + brightBlack: 29 + brightRed: 36.8 + brightGreen: 13 + brightYellow: 10.9 + brightBlue: 37.3 + brightMagenta: 63 + brightCyan: 17.3 + brightWhite: 12.9 diff --git a/themes/duckdevlabs.yaml b/themes/duckdevlabs.yaml new file mode 100644 index 00000000..f98aab9e --- /dev/null +++ b/themes/duckdevlabs.yaml @@ -0,0 +1,49 @@ +name: "DuckDevLabs" +source: + marketplace_id: "DuckDevbyAllanRamos.duckdevlabs" + version: "0.3.0" + installs: 118 + author: "DuckDev by Allan Ramos" + repo: "https://github.com/allansrc/duckdevlabs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DuckDevbyAllanRamos.duckdevlabs" +colors: + bg: "#1E1E1E" + fg: "#CECECE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/duckeys-blurple.yaml b/themes/duckeys-blurple.yaml new file mode 100644 index 00000000..eb2b2b7f --- /dev/null +++ b/themes/duckeys-blurple.yaml @@ -0,0 +1,49 @@ +name: "Duckeys blurple" +source: + marketplace_id: "BlurpleTheme.blurpletheme" + version: "0.2.0" + installs: 604 + author: "BlurpleTheme" + repo: "https://github.com/Nova-develoment-team/Blurpled" + url: "https://marketplace.visualstudio.com/items?itemName=BlurpleTheme.blurpletheme" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FF0000" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 35.7 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 106 diff --git a/themes/ducks.yaml b/themes/ducks.yaml new file mode 100644 index 00000000..76d58137 --- /dev/null +++ b/themes/ducks.yaml @@ -0,0 +1,49 @@ +name: "Ducks" +source: + marketplace_id: "beautifulgoat.ducks-color-theme" + version: "2.1.1" + installs: 25 + author: "beautifulgoat" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=beautifulgoat.ducks-color-theme" +colors: + bg: "#010101" + fg: "#8D9093" + black: "#666666" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#8A8A8A" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 42.4 + black: 23 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 39.6 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/ducky-light.yaml b/themes/ducky-light.yaml new file mode 100644 index 00000000..b56951b0 --- /dev/null +++ b/themes/ducky-light.yaml @@ -0,0 +1,49 @@ +name: "Ducky Light" +source: + marketplace_id: "utsavgupta.theme-ducky-light" + version: "0.0.4" + installs: 1307 + author: "Utsav Gupta" + repo: "https://github.com/utsavgupta/ducky-light" + url: "https://marketplace.visualstudio.com/items?itemName=utsavgupta.theme-ducky-light" +colors: + bg: "#F9F9F9" + fg: "#383A42" + black: "#D5D6DD" + red: "#D52753" + green: "#23974A" + yellow: "#DF631C" + blue: "#275FE4" + magenta: "#823FF1" + cyan: "#27618D" + white: "#000000" + brightBlack: "#E4E5ED" + brightRed: "#FF6480" + brightGreen: "#3CBC66" + brightYellow: "#C5A332" + brightBlue: "#0099E1" + brightMagenta: "#CE33C0" + brightCyan: "#6D93BB" + brightWhite: "#26272D" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 92.6 + black: 17.8 + red: 68.9 + green: 61 + yellow: 58.6 + blue: 73 + magenta: 72 + cyan: 78.8 + white: 102.5 + brightBlack: 9.1 + brightRed: 50.1 + brightGreen: 44.2 + brightYellow: 44 + brightBlue: 54.4 + brightMagenta: 65 + brightCyan: 55.7 + brightWhite: 98.2 diff --git a/themes/dukana.yaml b/themes/dukana.yaml new file mode 100644 index 00000000..c3a4b282 --- /dev/null +++ b/themes/dukana.yaml @@ -0,0 +1,49 @@ +name: "Dukana" +source: + marketplace_id: "lekiagospel.dukana" + version: "1.1.5" + installs: 125 + author: "Gospel Lekia" + repo: "https://github.com/Yigaue/vscode-dukana" + url: "https://marketplace.visualstudio.com/items?itemName=lekiagospel.dukana" +colors: + bg: "#1D0D30" + fg: "#BEAC16" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 302 + contrast: + fg: 55.8 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/dukemonokai-color-theme.yaml b/themes/dukemonokai-color-theme.yaml new file mode 100644 index 00000000..c05327ab --- /dev/null +++ b/themes/dukemonokai-color-theme.yaml @@ -0,0 +1,49 @@ +name: "DukeMonokai-color-theme" +source: + marketplace_id: "cafeduke.dukemonokai" + version: "0.0.2" + installs: 436 + author: "cafeduke" + repo: "https://github.com/cafeduke/vscode-dukemonokai-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cafeduke.dukemonokai" +colors: + bg: "#202320" + fg: "#F8F8F0" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 100.4 + black: 0 + red: 23.2 + green: 51.6 + yellow: 56.2 + blue: 33.2 + magenta: 30.8 + cyan: 49 + white: 87 + brightBlack: 20.6 + brightRed: 35.9 + brightGreen: 75.5 + brightYellow: 82.5 + brightBlue: 48.4 + brightMagenta: 45.1 + brightCyan: 72 + brightWhite: 100.5 diff --git a/themes/dull-sun-dark.yaml b/themes/dull-sun-dark.yaml new file mode 100644 index 00000000..793bd74b --- /dev/null +++ b/themes/dull-sun-dark.yaml @@ -0,0 +1,49 @@ +name: "dull-sun-dark" +source: + marketplace_id: "DullSun.dull-sun" + version: "0.0.3" + installs: 521 + author: "Dull Sun" + repo: "https://github.com/leutzed/Dull-Sun-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=DullSun.dull-sun" +colors: + bg: "#14181F" + fg: "#CCCAC2" + black: "#171B24" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#FFD173" + brightBlue: "#569CD6" + brightMagenta: "#DFBFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 262 + contrast: + fg: 73.3 + black: 0 + red: 50.2 + green: 70.7 + yellow: 78.5 + blue: 67.9 + magenta: 71.5 + cyan: 77.8 + white: 71.6 + brightBlack: 22.8 + brightRed: 52.8 + brightGreen: 97.1 + brightYellow: 81.5 + brightBlue: 44.9 + brightMagenta: 74.4 + brightCyan: 80.8 + brightWhite: 106.8 diff --git a/themes/dull-sun-light.yaml b/themes/dull-sun-light.yaml new file mode 100644 index 00000000..3623c4ce --- /dev/null +++ b/themes/dull-sun-light.yaml @@ -0,0 +1,49 @@ +name: "dull-sun-light" +source: + marketplace_id: "DullSun.dull-sun" + version: "0.0.3" + installs: 521 + author: "Dull Sun" + repo: "https://github.com/leutzed/Dull-Sun-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=DullSun.dull-sun" +colors: + bg: "#212733" + fg: "#CCCAC2" + black: "#171B24" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#FFD173" + brightBlue: "#569CD6" + brightMagenta: "#DFBFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 71.2 + black: 0 + red: 48.1 + green: 68.5 + yellow: 76.3 + blue: 65.7 + magenta: 69.3 + cyan: 75.6 + white: 69.5 + brightBlack: 20.6 + brightRed: 50.6 + brightGreen: 95 + brightYellow: 79.3 + brightBlue: 42.7 + brightMagenta: 72.3 + brightCyan: 78.6 + brightWhite: 104.6 diff --git a/themes/dull-sun.yaml b/themes/dull-sun.yaml new file mode 100644 index 00000000..262824bb --- /dev/null +++ b/themes/dull-sun.yaml @@ -0,0 +1,49 @@ +name: "dull-sun" +source: + marketplace_id: "DullSun.dull-sun" + version: "0.0.3" + installs: 521 + author: "Dull Sun" + repo: "https://github.com/leutzed/Dull-Sun-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=DullSun.dull-sun" +colors: + bg: "#191F2C" + fg: "#CCCAC2" + black: "#171B24" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#FFD173" + brightBlue: "#569CD6" + brightMagenta: "#DFBFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 265 + contrast: + fg: 72.4 + black: 0 + red: 49.4 + green: 69.8 + yellow: 77.6 + blue: 67 + magenta: 70.6 + cyan: 76.9 + white: 70.7 + brightBlack: 21.9 + brightRed: 51.9 + brightGreen: 96.2 + brightYellow: 80.6 + brightBlue: 44 + brightMagenta: 73.5 + brightCyan: 79.9 + brightWhite: 105.9 diff --git a/themes/dumdum-theme.yaml b/themes/dumdum-theme.yaml new file mode 100644 index 00000000..95147f38 --- /dev/null +++ b/themes/dumdum-theme.yaml @@ -0,0 +1,49 @@ +name: "「愚純」dumDum_theme" +source: + marketplace_id: "jstmax.dumdum-theme" + version: "1.0.0" + installs: 216 + author: "jstmax! - ceez2exst" + repo: "https://github.com/jstmaxlol/dumdum-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jstmax.dumdum-theme" +colors: + bg: "#171717" + fg: "#D1D1D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.7 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/dune-arrakis-incandescent.yaml b/themes/dune-arrakis-incandescent.yaml new file mode 100644 index 00000000..93c5c0fb --- /dev/null +++ b/themes/dune-arrakis-incandescent.yaml @@ -0,0 +1,49 @@ +name: "Dune Arrakis Incandescent" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#151313" + fg: "#CECDC3" + black: "#151313" + red: "#E2AD4A" + green: "#7FB069" + yellow: "#5A96BC" + blue: "#CC6B49" + magenta: "#E0A98E" + cyan: "#DE956A" + white: "#CECDC3" + brightBlack: "#878580" + brightRed: "#C15849" + brightGreen: "#7FB069" + brightYellow: "#E8B04B" + brightBlue: "#5A96BC" + brightMagenta: "#C17B8D" + brightCyan: "#6B8FA3" + brightWhite: "#E6DCC6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 75.3 + black: 0 + red: 62.2 + green: 51.8 + yellow: 41.7 + blue: 37.4 + magenta: 61.7 + cyan: 53.5 + white: 75.3 + brightBlack: 36.5 + brightRed: 30.9 + brightGreen: 51.8 + brightYellow: 64.3 + brightBlue: 41.7 + brightMagenta: 41.5 + brightCyan: 39 + brightWhite: 85.2 diff --git a/themes/dune-bene-gesserit.yaml b/themes/dune-bene-gesserit.yaml new file mode 100644 index 00000000..bc974afd --- /dev/null +++ b/themes/dune-bene-gesserit.yaml @@ -0,0 +1,49 @@ +name: "Dune Bene Gesserit" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#08090D" + fg: "#E0E4E8" + black: "#08090D" + red: "#C9934E" + green: "#4A7C9E" + yellow: "#2C5F8D" + blue: "#6B5B8C" + magenta: "#4E5D7A" + cyan: "#7A8C6E" + white: "#E0E4E8" + brightBlack: "#606878" + brightRed: "#A65353" + brightGreen: "#6B8C5F" + brightYellow: "#C9934E" + brightBlue: "#4A7C9E" + brightMagenta: "#8C6BAE" + brightCyan: "#5CA8CE" + brightWhite: "#F0F4F8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.9 + black: 0 + red: 49.5 + green: 30.4 + yellow: 18.9 + blue: 21.8 + magenta: 19.1 + cyan: 37.8 + white: 89.9 + brightBlack: 23.6 + brightRed: 25.8 + brightGreen: 36.2 + brightYellow: 49.5 + brightBlue: 30.4 + brightMagenta: 31.5 + brightCyan: 50.5 + brightWhite: 100.2 diff --git a/themes/dune-caladan-storm.yaml b/themes/dune-caladan-storm.yaml new file mode 100644 index 00000000..0cb371da --- /dev/null +++ b/themes/dune-caladan-storm.yaml @@ -0,0 +1,49 @@ +name: "Dune Caladan Storm" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#0D1117" + fg: "#E6EDF3" + black: "#0D1117" + red: "#79C0FF" + green: "#7EE787" + yellow: "#A5D6FF" + blue: "#FF9B54" + magenta: "#2F5D8A" + cyan: "#58A6FF" + white: "#E6EDF3" + brightBlack: "#6E7681" + brightRed: "#FF7B72" + brightGreen: "#7EE787" + brightYellow: "#FFA657" + brightBlue: "#79C0FF" + brightMagenta: "#BB9AF7" + brightCyan: "#56D4DD" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "green" + hue: 258 + contrast: + fg: 95 + black: 0 + red: 64.7 + green: 78.1 + yellow: 77.9 + blue: 61.4 + magenta: 17.9 + cyan: 52.2 + white: 95 + brightBlack: 29.3 + brightRed: 52.6 + brightGreen: 78.1 + brightYellow: 65.1 + brightBlue: 64.7 + brightMagenta: 56.1 + brightCyan: 69.9 + brightWhite: 100.9 diff --git a/themes/dune-fremen-sietch.yaml b/themes/dune-fremen-sietch.yaml new file mode 100644 index 00000000..bc77c9c2 --- /dev/null +++ b/themes/dune-fremen-sietch.yaml @@ -0,0 +1,49 @@ +name: "Dune Fremen Sietch" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#FAF8F3" + fg: "#2C2416" + black: "#FAF8F3" + red: "#8B6239" + green: "#2A7F9E" + yellow: "#1E6B8C" + blue: "#A0522D" + magenta: "#6B4226" + cyan: "#4A7C59" + white: "#2C2416" + brightBlack: "#8B7355" + brightRed: "#C2410C" + brightGreen: "#4A7C59" + brightYellow: "#B45309" + brightBlue: "#2A7F9E" + brightMagenta: "#8B4A8C" + brightCyan: "#3C9FBC" + brightWhite: "#1A1511" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.1 + black: 0 + red: 72.5 + green: 67.1 + yellow: 75.2 + blue: 73.5 + magenta: 85.3 + cyan: 69.5 + white: 98.1 + brightBlack: 67 + brightRed: 70.4 + brightGreen: 69.5 + brightYellow: 69.9 + brightBlue: 67.1 + brightMagenta: 75.9 + brightCyan: 52.9 + brightWhite: 100.7 diff --git a/themes/dune-giedi-prime.yaml b/themes/dune-giedi-prime.yaml new file mode 100644 index 00000000..3d905656 --- /dev/null +++ b/themes/dune-giedi-prime.yaml @@ -0,0 +1,49 @@ +name: "Dune Giedi Prime" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#0A0A0A" + fg: "#D4D4D4" + black: "#0A0A0A" + red: "#E3BDAD" + green: "#B6D8E6" + yellow: "#A2BEE8" + blue: "#DCCDBE" + magenta: "#EDCBB8" + cyan: "#C0DCC0" + white: "#D4D4D4" + brightBlack: "#7C7C7C" + brightRed: "#9E6A6A" + brightGreen: "#6A8E6A" + brightYellow: "#9E8A6A" + brightBlue: "#6A7E9E" + brightMagenta: "#A5A5A5" + brightCyan: "#ADADAD" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 80.3 + black: 0 + red: 71.3 + green: 79.4 + yellow: 66.3 + blue: 77.5 + magenta: 78.9 + cyan: 80.7 + white: 80.3 + brightBlack: 32.7 + brightRed: 30.8 + brightGreen: 37.1 + brightYellow: 40.8 + brightBlue: 33.2 + brightMagenta: 53.4 + brightCyan: 57.7 + brightWhite: 101.8 diff --git a/themes/dune-guild-navigator.yaml b/themes/dune-guild-navigator.yaml new file mode 100644 index 00000000..de0f8e51 --- /dev/null +++ b/themes/dune-guild-navigator.yaml @@ -0,0 +1,49 @@ +name: "Dune Guild Navigator" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#050308" + fg: "#F0E8FF" + black: "#050308" + red: "#C8884C" + green: "#FF8C42" + yellow: "#4CA8FF" + blue: "#9B72D4" + magenta: "#7C6CA4" + cyan: "#FF9D5C" + white: "#F0E8FF" + brightBlack: "#5E5468" + brightRed: "#FF6B6B" + brightGreen: "#69DB7C" + brightYellow: "#FFA94D" + brightBlue: "#5CA7FF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 305 + contrast: + fg: 95.1 + black: 0 + red: 45.7 + green: 57 + yellow: 53 + blue: 37.7 + magenta: 29.6 + cyan: 62.6 + white: 95.1 + brightBlack: 17.2 + brightRed: 49.1 + brightGreen: 71.2 + brightYellow: 66.5 + brightBlue: 53.3 + brightMagenta: 46.1 + brightCyan: 55.6 + brightWhite: 107.9 diff --git a/themes/dune-harkonnen.yaml b/themes/dune-harkonnen.yaml new file mode 100644 index 00000000..c0b9c6be --- /dev/null +++ b/themes/dune-harkonnen.yaml @@ -0,0 +1,49 @@ +name: "Dune Harkonnen" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#090A0C" + fg: "#D4D7DE" + black: "#090A0C" + red: "#D2D895" + green: "#73BD96" + yellow: "#7DACE4" + blue: "#A88BBF" + magenta: "#86A6CF" + cyan: "#8BBBB0" + white: "#D4D7DE" + brightBlack: "#565760" + brightRed: "#C77374" + brightGreen: "#8FB5A3" + brightYellow: "#C4C7A0" + brightBlue: "#8FA9D0" + brightMagenta: "#9F93A8" + brightCyan: "#8FB0A8" + brightWhite: "#D4D7DE" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 82.1 + black: 0 + red: 79.6 + green: 58.3 + yellow: 55.4 + blue: 45.6 + magenta: 52.6 + cyan: 60.2 + white: 82.1 + brightBlack: 16.9 + brightRed: 40.1 + brightGreen: 57.5 + brightYellow: 70.7 + brightBlue: 54.6 + brightMagenta: 46.2 + brightCyan: 55.6 + brightWhite: 82.1 diff --git a/themes/dune-house-atreides.yaml b/themes/dune-house-atreides.yaml new file mode 100644 index 00000000..f7e1317b --- /dev/null +++ b/themes/dune-house-atreides.yaml @@ -0,0 +1,49 @@ +name: "Dune House Atreides" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#11161C" + fg: "#E4EDF7" + black: "#11161C" + red: "#60A5FA" + green: "#4A9FA5" + yellow: "#3B82F6" + blue: "#22D3EE" + magenta: "#94A3B8" + cyan: "#10B981" + white: "#E4EDF7" + brightBlack: "#5A6B7E" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#A78BFA" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + contrast: + fg: 94.5 + black: 0 + red: 51.5 + green: 43.2 + yellow: 36.9 + blue: 68.7 + magenta: 50.9 + cyan: 52 + white: 94.5 + brightBlack: 23.6 + brightRed: 37 + brightGreen: 52 + brightYellow: 59.6 + brightBlue: 36.9 + brightMagenta: 48.4 + brightCyan: 54 + brightWhite: 107 diff --git a/themes/dune-ix-technology.yaml b/themes/dune-ix-technology.yaml new file mode 100644 index 00000000..d88879da --- /dev/null +++ b/themes/dune-ix-technology.yaml @@ -0,0 +1,49 @@ +name: "Dune Ix Technology" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#0A0C0F" + fg: "#E8ECF0" + black: "#0A0C0F" + red: "#FFB86C" + green: "#50FA7B" + yellow: "#6272A4" + blue: "#BD93F9" + magenta: "#8897B4" + cyan: "#66D9EF" + white: "#E8ECF0" + brightBlack: "#6B7585" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1B644" + brightBlue: "#6272A4" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 94.9 + black: 0 + red: 72.2 + green: 85.7 + yellow: 28.8 + blue: 54.4 + magenta: 45.6 + cyan: 74.2 + white: 94.9 + brightBlack: 29.1 + brightRed: 44.2 + brightGreen: 85.7 + brightYellow: 68.5 + brightBlue: 28.8 + brightMagenta: 55.4 + brightCyan: 84.8 + brightWhite: 102.8 diff --git a/themes/dune-kaitain.yaml b/themes/dune-kaitain.yaml new file mode 100644 index 00000000..87d9cb1b --- /dev/null +++ b/themes/dune-kaitain.yaml @@ -0,0 +1,49 @@ +name: "dune-kaitain" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#00151A" + fg: "#A8BCC9" + black: "#00151A" + red: "#D4A52A" + green: "#869900" + yellow: "#268BD2" + blue: "#CB4C16" + magenta: "#A15DA1" + cyan: "#2DA198" + white: "#A8BCC9" + brightBlack: "#2B4753" + brightRed: "#CC5555" + brightGreen: "#4A9A4A" + brightYellow: "#CCAD31" + brightBlue: "#55A2C2" + brightMagenta: "#D33682" + brightCyan: "#2AA198" + brightWhite: "#C7D1D6" +meta: + mode: "dark" + accent: "red" + hue: 214 + contrast: + fg: 63.9 + black: 0 + red: 56.7 + green: 42.1 + yellow: 37 + blue: 30.1 + magenta: 29.5 + cyan: 42.8 + white: 63.9 + brightBlack: 8.9 + brightRed: 32.7 + brightGreen: 38.8 + brightYellow: 58.6 + brightBlue: 46.5 + brightMagenta: 30.7 + brightCyan: 42.7 + brightWhite: 77 diff --git a/themes/dune-mentat.yaml b/themes/dune-mentat.yaml new file mode 100644 index 00000000..25ab78fb --- /dev/null +++ b/themes/dune-mentat.yaml @@ -0,0 +1,49 @@ +name: "Dune Mentat" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#FAFAFA" + fg: "#1A1A1A" + black: "#FAFAFA" + red: "#8250DF" + green: "#0969DA" + yellow: "#0550AE" + blue: "#CF222E" + magenta: "#6639BA" + cyan: "#116329" + white: "#1A1A1A" + brightBlack: "#909090" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#9A6700" + brightBlue: "#0969DA" + brightMagenta: "#8250DF" + brightCyan: "#0598D3" + brightWhite: "#0A0A0A" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.3 + black: 0 + red: 71.3 + green: 72 + yellow: 82.6 + blue: 71.8 + magenta: 81.9 + cyan: 82.3 + white: 101.3 + brightBlack: 56.1 + brightRed: 82.2 + brightGreen: 71.6 + brightYellow: 70.4 + brightBlue: 72 + brightMagenta: 71.3 + brightCyan: 56.3 + brightWhite: 102.9 diff --git a/themes/dune-muad-dib.yaml b/themes/dune-muad-dib.yaml new file mode 100644 index 00000000..8f6d28f6 --- /dev/null +++ b/themes/dune-muad-dib.yaml @@ -0,0 +1,49 @@ +name: "Dune Muad'Dib" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#0F0E0C" + fg: "#E8E2D0" + black: "#0F0E0C" + red: "#D4A85C" + green: "#88B068" + yellow: "#4A9EFF" + blue: "#9B7AC4" + magenta: "#A08458" + cyan: "#C89C5C" + white: "#E8E2D0" + brightBlack: "#6E6858" + brightRed: "#D67E60" + brightGreen: "#7CA668" + brightYellow: "#E8A85C" + brightBlue: "#5CA8E8" + brightMagenta: "#B088D0" + brightCyan: "#6CBCE8" + brightWhite: "#F8F4E8" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 88.9 + black: 0 + red: 58.7 + green: 52.9 + yellow: 48.7 + blue: 38.7 + magenta: 38.4 + cyan: 52.5 + white: 88.9 + brightBlack: 23.7 + brightRed: 45.1 + brightGreen: 47.7 + brightYellow: 61.9 + brightBlue: 51.8 + brightMagenta: 46.5 + brightCyan: 61 + brightWhite: 100.3 diff --git a/themes/dune-salusa-secundus.yaml b/themes/dune-salusa-secundus.yaml new file mode 100644 index 00000000..a1785161 --- /dev/null +++ b/themes/dune-salusa-secundus.yaml @@ -0,0 +1,49 @@ +name: "Dune Salusa Secundus" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#0F0D0D" + fg: "#E8D6D6" + black: "#0F0D0D" + red: "#FFB86C" + green: "#FF9D5C" + yellow: "#FF7979" + blue: "#FF5555" + magenta: "#8B4A4A" + cyan: "#CC6666" + white: "#E8D6D6" + brightBlack: "#726565" + brightRed: "#FF3838" + brightGreen: "#C78860" + brightYellow: "#FFA500" + brightBlue: "#FF8C42" + brightMagenta: "#FF79C6" + brightCyan: "#FFB86C" + brightWhite: "#F4E8E8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.9 + black: 0 + red: 72.2 + green: 62.3 + yellow: 52.4 + blue: 44.1 + magenta: 19.2 + cyan: 37.1 + white: 83.9 + brightBlack: 23.6 + brightRed: 39.8 + brightGreen: 45.6 + brightYellow: 64.4 + brightBlue: 56.7 + brightMagenta: 55.3 + brightCyan: 72.2 + brightWhite: 94.3 diff --git a/themes/dune-sandworm.yaml b/themes/dune-sandworm.yaml new file mode 100644 index 00000000..2d333383 --- /dev/null +++ b/themes/dune-sandworm.yaml @@ -0,0 +1,49 @@ +name: "Dune Sandworm" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#1A1611" + fg: "#E8DCC4" + black: "#1A1611" + red: "#E8B88C" + green: "#D4A574" + yellow: "#5CA7E8" + blue: "#CE7E4A" + magenta: "#8B6239" + cyan: "#A68860" + white: "#E8DCC4" + brightBlack: "#7A6548" + brightRed: "#D67C5C" + brightGreen: "#8CA674" + brightYellow: "#E8A85C" + brightBlue: "#6CB4EE" + brightMagenta: "#C88A6A" + brightCyan: "#7AC0D8" + brightWhite: "#F4EDE4" +meta: + mode: "dark" + accent: "indigo" + hue: 73 + contrast: + fg: 85.1 + black: 0 + red: 68.3 + green: 57.4 + yellow: 50.8 + blue: 42.7 + magenta: 24.1 + cyan: 40.1 + white: 85.1 + brightBlack: 23.1 + brightRed: 43.8 + brightGreen: 48.8 + brightYellow: 61.3 + brightBlue: 57.3 + brightMagenta: 46 + brightCyan: 62.1 + brightWhite: 95.7 diff --git a/themes/dune-sardaukar-imperial.yaml b/themes/dune-sardaukar-imperial.yaml new file mode 100644 index 00000000..5e6e2afe --- /dev/null +++ b/themes/dune-sardaukar-imperial.yaml @@ -0,0 +1,49 @@ +name: "Dune Sardaukar Imperial" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#0C0C0E" + fg: "#E8E8F0" + black: "#0C0C0E" + red: "#FFD700" + green: "#9D6FCC" + yellow: "#8B72C7" + blue: "#DC143C" + magenta: "#7C6CA4" + cyan: "#C0C0C0" + white: "#E8E8F0" + brightBlack: "#6A6A7C" + brightRed: "#FF3838" + brightGreen: "#6B9E6B" + brightYellow: "#FFAA40" + brightBlue: "#8B72C7" + brightMagenta: "#FF79C6" + brightCyan: "#68D4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 93.1 + black: 0 + red: 84 + green: 36.4 + yellow: 34.8 + blue: 29.3 + magenta: 29.4 + cyan: 68.4 + white: 93.1 + brightBlack: 25.2 + brightRed: 39.9 + brightGreen: 43.4 + brightYellow: 66.5 + brightBlue: 34.8 + brightMagenta: 55.4 + brightCyan: 72.9 + brightWhite: 107.7 diff --git a/themes/dune-spacing-guild.yaml b/themes/dune-spacing-guild.yaml new file mode 100644 index 00000000..a3e7be84 --- /dev/null +++ b/themes/dune-spacing-guild.yaml @@ -0,0 +1,49 @@ +name: "Dune Spacing Guild" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#0A0B0D" + fg: "#E8ECF4" + black: "#0A0B0D" + red: "#FFD700" + green: "#4A90E2" + yellow: "#6BB6FF" + blue: "#FF9940" + magenta: "#8899B4" + cyan: "#A8B8D0" + white: "#E8ECF4" + brightBlack: "#68707C" + brightRed: "#E85855" + brightGreen: "#6BC46D" + brightYellow: "#FFAA40" + brightBlue: "#5CA7FF" + brightMagenta: "#B794F6" + brightCyan: "#68D4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 95.1 + black: 0 + red: 84.1 + green: 41.5 + yellow: 60 + blue: 60.8 + magenta: 46.4 + cyan: 63.1 + white: 95.1 + brightBlack: 26.9 + brightRed: 39.6 + brightGreen: 59.9 + brightYellow: 66.5 + brightBlue: 53.1 + brightMagenta: 53.8 + brightCyan: 72.9 + brightWhite: 107.7 diff --git a/themes/dune-spice-vision.yaml b/themes/dune-spice-vision.yaml new file mode 100644 index 00000000..8447f325 --- /dev/null +++ b/themes/dune-spice-vision.yaml @@ -0,0 +1,49 @@ +name: "Dune Spice Vision" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#140F0A" + fg: "#FFEDC6" + black: "#140F0A" + red: "#FFD700" + green: "#FF9500" + yellow: "#00BFFF" + blue: "#FF6B35" + magenta: "#9B59B6" + cyan: "#FFB347" + white: "#FFEDC6" + brightBlack: "#6E5A48" + brightRed: "#FF4757" + brightGreen: "#26DE81" + brightYellow: "#FFA502" + brightBlue: "#00BFFF" + brightMagenta: "#C56CF0" + brightCyan: "#18DCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 67 + contrast: + fg: 96.7 + black: 0 + red: 83.8 + green: 59 + yellow: 61 + blue: 47.9 + magenta: 29.1 + cyan: 69.6 + white: 96.7 + brightBlack: 19.1 + brightRed: 41.9 + brightGreen: 70.3 + brightYellow: 64.3 + brightBlue: 61 + brightMagenta: 43.8 + brightCyan: 74.3 + brightWhite: 107.4 diff --git a/themes/dune-water-of-life.yaml b/themes/dune-water-of-life.yaml new file mode 100644 index 00000000..bb0d74e3 --- /dev/null +++ b/themes/dune-water-of-life.yaml @@ -0,0 +1,49 @@ +name: "Dune Water of Life" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 237 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" +colors: + bg: "#0A0E14" + fg: "#E8F0FF" + black: "#0A0E14" + red: "#FFD700" + green: "#87CEEB" + yellow: "#5EB3FF" + blue: "#9B88D3" + magenta: "#7AA2E3" + cyan: "#66E0CE" + white: "#E8F0FF" + brightBlack: "#5A6B88" + brightRed: "#FF6B9D" + brightGreen: "#48DBFB" + brightYellow: "#FECA57" + brightBlue: "#54A0FF" + brightMagenta: "#C792EA" + brightCyan: "#80DEEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 258 + contrast: + fg: 97.4 + black: 0 + red: 83.9 + green: 70.8 + yellow: 57.9 + blue: 44 + magenta: 51.1 + cyan: 75.8 + white: 97.4 + brightBlack: 24.6 + brightRed: 50.3 + brightGreen: 74.6 + brightYellow: 78.8 + brightBlue: 49.9 + brightMagenta: 54.5 + brightCyan: 77.7 + brightWhite: 107.6 diff --git a/themes/duomage.yaml b/themes/duomage.yaml new file mode 100644 index 00000000..7b8131b3 --- /dev/null +++ b/themes/duomage.yaml @@ -0,0 +1,49 @@ +name: "Duomage" +source: + marketplace_id: "neacsustefan14.duomage" + version: "0.0.2" + installs: 2141 + author: "Neacsu Stefan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=neacsustefan14.duomage" +colors: + bg: "#0C0C0C" + fg: "#F8F8F8" + black: "#1E2123" + red: "#D2304B" + green: "#A6E22E" + yellow: "#E6DB74" + blue: "#AE81FF" + magenta: "#F92672" + cyan: "#66D9EF" + white: "#F8F8F8" + brightBlack: "#5C6166" + brightRed: "#D2304B" + brightGreen: "#A6E22E" + brightYellow: "#E6DB74" + brightBlue: "#AE81FF" + brightMagenta: "#F92672" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F8" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 103 + black: 0 + red: 28.9 + green: 77.8 + yellow: 82.9 + blue: 47.3 + magenta: 38.1 + cyan: 74.2 + white: 103 + brightBlack: 20.4 + brightRed: 28.9 + brightGreen: 77.8 + brightYellow: 82.9 + brightBlue: 47.3 + brightMagenta: 38.1 + brightCyan: 74.2 + brightWhite: 103 diff --git a/themes/durgonix-dark.yaml b/themes/durgonix-dark.yaml new file mode 100644 index 00000000..669d2756 --- /dev/null +++ b/themes/durgonix-dark.yaml @@ -0,0 +1,49 @@ +name: "Durgonix Dark" +source: + marketplace_id: "i8o8i.durgonix-dark-theme" + version: "1.0.6" + installs: 23 + author: "i8o8i" + repo: "https://github.com/i8o8i-Developer/Durgonix-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=i8o8i.durgonix-dark-theme" +colors: + bg: "#0B0C0E" + fg: "#CFCFCF" + black: "#090300" + red: "#DB2D20" + green: "#00FF41" + yellow: "#FED604" + blue: "#01A0E4" + magenta: "#A16A94" + cyan: "#0BA9DD" + white: "#F37676" + brightBlack: "#F39C12" + brightRed: "#0A37FF" + brightGreen: "#00FF41" + brightYellow: "#FED604" + brightBlue: "#01A0E4" + brightMagenta: "#EB64CB" + brightCyan: "#FF0FF3" + brightWhite: "#240EE2" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.2 + black: 0 + red: 30.2 + green: 86.5 + yellow: 83.4 + blue: 46.4 + magenta: 32.6 + cyan: 49.7 + white: 49.2 + brightBlack: 59.2 + brightRed: 19.3 + brightGreen: 86.5 + brightYellow: 83.4 + brightBlue: 46.4 + brightMagenta: 46.8 + brightCyan: 45.2 + brightWhite: 12.9 diff --git a/themes/dusk-rider.yaml b/themes/dusk-rider.yaml new file mode 100644 index 00000000..64c6e7e2 --- /dev/null +++ b/themes/dusk-rider.yaml @@ -0,0 +1,49 @@ +name: "Dusk Rider" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#0D0A0F" + fg: "#F3E5F5" + black: "#0D0A0F" + red: "#F44336" + green: "#4CAF50" + yellow: "#FF9800" + blue: "#3F51B5" + magenta: "#9C27B0" + cyan: "#00BCD4" + white: "#F3E5F5" + brightBlack: "#7B1FA2" + brightRed: "#EF5350" + brightGreen: "#81C784" + brightYellow: "#FFB74D" + brightBlue: "#7986CB" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#F3E5F5" +meta: + mode: "dark" + accent: "orange" + hue: 312 + contrast: + fg: 93.5 + black: 0 + red: 38.5 + green: 48.4 + yellow: 60.2 + blue: 18.4 + magenta: 21.5 + cyan: 57.3 + white: 93.5 + brightBlack: 14.8 + brightRed: 40.1 + brightGreen: 63.3 + brightYellow: 71.4 + brightBlue: 39.5 + brightMagenta: 38.7 + brightCyan: 68.2 + brightWhite: 93.5 diff --git a/themes/dusk.yaml b/themes/dusk.yaml new file mode 100644 index 00000000..5a2ecd03 --- /dev/null +++ b/themes/dusk.yaml @@ -0,0 +1,49 @@ +name: "Dusk" +source: + marketplace_id: "leelhn2345.chromodynamics-v3-theme" + version: "0.4.7" + installs: 612 + author: "leelhn2345" + repo: "https://github.com/leelhn2345/chromodynamics-v3-theme" + url: "https://marketplace.visualstudio.com/items?itemName=leelhn2345.chromodynamics-v3-theme" +colors: + bg: "#060606" + fg: "#C6C6C6" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 72.1 + black: 13.5 + red: 53 + green: 52.6 + yellow: 52.7 + blue: 52.7 + magenta: 52.7 + cyan: 61.8 + white: 64.5 + brightBlack: 29.7 + brightRed: 65.3 + brightGreen: 65.9 + brightYellow: 65.2 + brightBlue: 65.2 + brightMagenta: 65.1 + brightCyan: 70.4 + brightWhite: 107.8 diff --git a/themes/duskfox.yaml b/themes/duskfox.yaml new file mode 100644 index 00000000..34a57471 --- /dev/null +++ b/themes/duskfox.yaml @@ -0,0 +1,49 @@ +name: "Duskfox" +source: + marketplace_id: "keifererikson.nightfox" + version: "0.0.14" + installs: 17378 + author: "Keifer Erikson" + repo: "https://github.com/keifererikson/vscode-nightfox" + url: "https://marketplace.visualstudio.com/items?itemName=keifererikson.nightfox" +colors: + bg: "#232136" + fg: "#CDCECF" + black: "#393552" + red: "#EB6F92" + green: "#A3BE8C" + yellow: "#F6C177" + blue: "#569FBA" + magenta: "#C4A7E7" + cyan: "#9CCFD8" + white: "#E0DEF4" + brightBlack: "#484A55" + brightRed: "#D16982" + brightGreen: "#90C7AC" + brightYellow: "#F9CB8C" + brightBlue: "#65B1CD" + brightMagenta: "#CCB1ED" + brightCyan: "#A6DAE3" + brightWhite: "#E3E3E4" +meta: + mode: "dark" + accent: "red" + hue: 288 + contrast: + fg: 74.1 + black: 0 + red: 44.2 + green: 60 + yellow: 71.9 + blue: 43 + magenta: 58.7 + cyan: 69.7 + white: 85.3 + brightBlack: 9.5 + brightRed: 37.2 + brightGreen: 63.2 + brightYellow: 77 + brightBlue: 52.1 + brightMagenta: 63.8 + brightCyan: 76.1 + brightWhite: 87.1 diff --git a/themes/dutchtheme.yaml b/themes/dutchtheme.yaml new file mode 100644 index 00000000..889defca --- /dev/null +++ b/themes/dutchtheme.yaml @@ -0,0 +1,49 @@ +name: "DutchTheme" +source: + marketplace_id: "gnrfilipe04.dutchtheme" + version: "0.0.1" + installs: 46 + author: "gnrfilipe04" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gnrfilipe04.dutchtheme" +colors: + bg: "#060606" + fg: "#737373" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#24C864" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3BEA90" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 28.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 59.3 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 77.5 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/dynamic.yaml b/themes/dynamic.yaml new file mode 100644 index 00000000..0f8f5968 --- /dev/null +++ b/themes/dynamic.yaml @@ -0,0 +1,49 @@ +name: "dynamic" +source: + marketplace_id: "zoydburger.workspace-theme-switcher" + version: "0.0.5" + installs: 0 + author: "zoydburger" + repo: "https://github.com/zoydburger/workspace-theme-switcher" + url: "https://marketplace.visualstudio.com/items?itemName=zoydburger.workspace-theme-switcher" +colors: + bg: "#002451" + fg: "#FFFFFF" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 256 + contrast: + fg: 104.6 + black: 0 + red: 61.1 + green: 88.6 + yellow: 93.5 + blue: 79 + magenta: 72.5 + cyan: 93.6 + white: 72.4 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 84.5 + brightYellow: 88.2 + brightBlue: 59.9 + brightMagenta: 48 + brightCyan: 91.6 + brightWhite: 104.6 diff --git a/themes/dyno-cute.yaml b/themes/dyno-cute.yaml new file mode 100644 index 00000000..f3b75acd --- /dev/null +++ b/themes/dyno-cute.yaml @@ -0,0 +1,49 @@ +name: "Dyno cute" +source: + marketplace_id: "dyno-nguyen.dyno-dark-mode" + version: "1.2.4" + installs: 193 + author: "Dyno Nguyen (Legacy)" + repo: "https://github.com/TuanNguyen2504/my-devtools-config.git#main" + url: "https://marketplace.visualstudio.com/items?itemName=dyno-nguyen.dyno-dark-mode" +colors: + bg: "#1D2433" + fg: "#A2AABC" + black: "#2F3B54" + red: "#FF5555" + green: "#BAE67E" + yellow: "#EC60CE" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#FF5555" + brightGreen: "#BAE67E" + brightYellow: "#EC60CE" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "pink" + hue: 265 + contrast: + fg: 53.3 + black: 0 + red: 41.6 + green: 80.2 + yellow: 43.9 + blue: 66.1 + magenta: 59.6 + cyan: 66.1 + white: 53.3 + brightBlack: 9.4 + brightRed: 41.6 + brightGreen: 80.2 + brightYellow: 43.9 + brightBlue: 66.1 + brightMagenta: 59.6 + brightCyan: 66.1 + brightWhite: 53.3 diff --git a/themes/dyno.yaml b/themes/dyno.yaml new file mode 100644 index 00000000..ac877e3e --- /dev/null +++ b/themes/dyno.yaml @@ -0,0 +1,49 @@ +name: "Dyno" +source: + marketplace_id: "dyno-nguyen.dyno-dark-mode" + version: "1.2.4" + installs: 193 + author: "Dyno Nguyen (Legacy)" + repo: "https://github.com/TuanNguyen2504/my-devtools-config.git#main" + url: "https://marketplace.visualstudio.com/items?itemName=dyno-nguyen.dyno-dark-mode" +colors: + bg: "#011C37" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#32EAAC" + yellow: "#FDE181" + blue: "#BD93F9" + magenta: "#EE4ECC" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#8D92FF" + brightRed: "#FF6E6E" + brightGreen: "#32EAAC" + brightYellow: "#EAC394" + brightBlue: "#BD93F9" + brightMagenta: "#EE4ECC" + brightCyan: "#2CCCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 251 + contrast: + fg: 101.3 + black: 0 + red: 42.7 + green: 76.5 + yellow: 87.7 + blue: 53 + magenta: 42.1 + cyan: 83.3 + white: 101.3 + brightBlack: 47.5 + brightRed: 48.1 + brightGreen: 76.5 + brightYellow: 72.5 + brightBlue: 53 + brightMagenta: 42.1 + brightCyan: 65.8 + brightWhite: 106.2 diff --git a/themes/dzsolarized-dark.yaml b/themes/dzsolarized-dark.yaml new file mode 100644 index 00000000..58f06afa --- /dev/null +++ b/themes/dzsolarized-dark.yaml @@ -0,0 +1,49 @@ +name: "DzSolarized Dark" +source: + marketplace_id: "ChrisDzombak.dzsolarized" + version: "0.0.18" + installs: 18 + author: "Chris Dzombak" + repo: "https://github.com/cdzombak/dzsolarized-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ChrisDzombak.dzsolarized" +colors: + bg: "#001E28" + fg: "#839496" + black: "#002831" + red: "#D11C24" + green: "#6CBE6C" + yellow: "#A57706" + blue: "#2176C7" + magenta: "#C61C6F" + cyan: "#259286" + white: "#EAE3CB" + brightBlack: "#006488" + brightRed: "#F5163B" + brightGreen: "#51EF84" + brightYellow: "#B27E28" + brightBlue: "#178EC8" + brightMagenta: "#E24D8E" + brightCyan: "#00B39E" + brightWhite: "#FCF4DC" +meta: + mode: "dark" + accent: "orange" + hue: 224 + contrast: + fg: 41.4 + black: 0 + red: 25.4 + green: 55.8 + yellow: 32.9 + blue: 28 + magenta: 24.3 + cyan: 35 + white: 88.1 + brightBlack: 18.2 + brightRed: 34 + brightGreen: 78.8 + brightYellow: 37.2 + brightBlue: 36.4 + brightMagenta: 36.5 + brightCyan: 49.5 + brightWhite: 99.1 diff --git a/themes/dzsolarized.yaml b/themes/dzsolarized.yaml new file mode 100644 index 00000000..ee1a2444 --- /dev/null +++ b/themes/dzsolarized.yaml @@ -0,0 +1,49 @@ +name: "DzSolarized" +source: + marketplace_id: "ChrisDzombak.dzsolarized" + version: "0.0.18" + installs: 18 + author: "Chris Dzombak" + repo: "https://github.com/cdzombak/dzsolarized-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ChrisDzombak.dzsolarized" +colors: + bg: "#FDF6E3" + fg: "#586E75" + black: "#002831" + red: "#D11C24" + green: "#6CBE6C" + yellow: "#A57706" + blue: "#2176C7" + magenta: "#C61C6F" + cyan: "#259286" + white: "#EAE3CB" + brightBlack: "#006488" + brightRed: "#F5163B" + brightGreen: "#51EF84" + brightYellow: "#B27E28" + brightBlue: "#178EC8" + brightMagenta: "#E24D8E" + brightCyan: "#00B39E" + brightWhite: "#FCF4DC" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 71.6 + black: 97 + red: 69.5 + green: 39.5 + yellow: 61.9 + blue: 66.8 + magenta: 70.5 + cyan: 59.9 + white: 8.9 + brightBlack: 76.9 + brightRed: 60.9 + brightGreen: 17.6 + brightYellow: 57.7 + brightBlue: 58.4 + brightMagenta: 58.3 + brightCyan: 45.6 + brightWhite: 0 diff --git a/themes/earl-grey.yaml b/themes/earl-grey.yaml new file mode 100644 index 00000000..fc8e7ac1 --- /dev/null +++ b/themes/earl-grey.yaml @@ -0,0 +1,49 @@ +name: "Earl Grey" +source: + marketplace_id: "EarlGrey.earl-grey" + version: "1.0.1" + installs: 3413 + author: "Earl Grey" + repo: "https://github.com/earl-grey-theme/earl-grey-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=EarlGrey.earl-grey" +colors: + bg: "#FCFBF9" + fg: "#605A52" + black: "#605A52" + red: "#A57773" + green: "#8F956F" + yellow: "#9F8768" + blue: "#7686A9" + magenta: "#9B7896" + cyan: "#6B9494" + white: "#FCFBF9" + brightBlack: "#605A52" + brightRed: "#8F5652" + brightGreen: "#747B4D" + brightYellow: "#886A44" + brightBlue: "#556995" + brightMagenta: "#83577D" + brightCyan: "#477A7B" + brightWhite: "#FCFBF9" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 81.2 + black: 81.2 + red: 63.4 + green: 56.1 + yellow: 59.3 + blue: 61.7 + magenta: 63.2 + cyan: 58.4 + white: 0 + brightBlack: 81.2 + brightRed: 76.5 + brightGreen: 68.8 + brightYellow: 72.2 + brightBlue: 74.9 + brightMagenta: 76.5 + brightCyan: 71.1 + brightWhite: 0 diff --git a/themes/early-riser.yaml b/themes/early-riser.yaml new file mode 100644 index 00000000..f513b8a3 --- /dev/null +++ b/themes/early-riser.yaml @@ -0,0 +1,49 @@ +name: "Early Riser" +source: + marketplace_id: "mikemcbride.early-riser" + version: "1.2.2" + installs: 441 + author: "Mike McBride" + repo: "https://github.com/mikemcbride/vscode-early-riser" + url: "https://marketplace.visualstudio.com/items?itemName=mikemcbride.early-riser" +colors: + bg: "#F7FAFC" + fg: "#6E7F91" + black: "#424C57" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#2563EB" + magenta: "#7C3AED" + cyan: "#06B6D4" + white: "#F7FAFC" + brightBlack: "#8B99A7" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#2563EB" + brightMagenta: "#7C3AED" + brightCyan: "#06B6D4" + brightWhite: "#F7FAFC" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 65 + black: 86.7 + red: 60.5 + green: 45.8 + yellow: 38.5 + blue: 71.6 + magenta: 74.2 + cyan: 43.9 + white: 0 + brightBlack: 52.2 + brightRed: 60.5 + brightGreen: 45.8 + brightYellow: 38.5 + brightBlue: 71.6 + brightMagenta: 74.2 + brightCyan: 43.9 + brightWhite: 0 diff --git a/themes/earth-brown-stability-grounding.yaml b/themes/earth-brown-stability-grounding.yaml new file mode 100644 index 00000000..8e5c6f93 --- /dev/null +++ b/themes/earth-brown-stability-grounding.yaml @@ -0,0 +1,49 @@ +name: "Earth Brown - Stability & Grounding" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#1A1410" + fg: "#EFEBE9" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 56 + contrast: + fg: 94.4 + black: 0 + red: 37.9 + green: 47.7 + yellow: 92.5 + blue: 43.2 + magenta: 32.8 + cyan: 56.7 + white: 96.2 + brightBlack: 9.2 + brightRed: 43 + brightGreen: 82.2 + brightYellow: 101.9 + brightBlue: 40.7 + brightMagenta: 41.6 + brightCyan: 91.4 + brightWhite: 107 diff --git a/themes/earth-collection.yaml b/themes/earth-collection.yaml new file mode 100644 index 00000000..0bc1a897 --- /dev/null +++ b/themes/earth-collection.yaml @@ -0,0 +1,49 @@ +name: "Earth Collection" +source: + marketplace_id: "RLabsInc.rlabs-theme-collection" + version: "0.1.4" + installs: 181 + author: "RLabs Inc." + repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" + url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" +colors: + bg: "#161312" + fg: "#F7F6F5" + black: "#292929" + red: "#FF7575" + green: "#88A881" + yellow: "#FFB794" + blue: "#7BBFFF" + magenta: "#9B7AB9" + cyan: "#76A9AC" + white: "#F7F6F5" + brightBlack: "#BBB9B6" + brightRed: "#FF7575" + brightGreen: "#DAF8D4" + brightYellow: "#FFEABB" + brightBlue: "#AFD8FF" + brightMagenta: "#C096E7" + brightCyan: "#A5D2D4" + brightWhite: "#C9C7C6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 101.3 + black: 0 + red: 50.9 + green: 49.8 + yellow: 72.3 + blue: 64.2 + magenta: 37.7 + cyan: 50.3 + white: 101.3 + brightBlack: 64 + brightRed: 50.9 + brightGreen: 97.1 + brightYellow: 94.7 + brightBlue: 79.5 + brightMagenta: 54.2 + brightCyan: 73.6 + brightWhite: 72.2 diff --git a/themes/earthsong-contrast.yaml b/themes/earthsong-contrast.yaml new file mode 100644 index 00000000..622255bc --- /dev/null +++ b/themes/earthsong-contrast.yaml @@ -0,0 +1,49 @@ +name: "earthsong-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#12100F" + fg: "#EBD1B7" + black: "#201C1B" + red: "#BA0E2E" + green: "#95CC5E" + yellow: "#DB784D" + blue: "#60A365" + magenta: "#DB784D" + cyan: "#95CC5E" + white: "#F1DECB" + brightBlack: "#4A413D" + brightRed: "#F03E5F" + brightGreen: "#C8E5AB" + brightYellow: "#ECB8A2" + brightBlue: "#A1C8A4" + brightMagenta: "#ECB8A2" + brightCyan: "#C8E5AB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 80.8 + black: 0 + red: 21 + green: 66.1 + yellow: 43.9 + blue: 44.3 + magenta: 43.9 + cyan: 66.1 + white: 88 + brightBlack: 9 + brightRed: 37.3 + brightGreen: 84.7 + brightYellow: 70.1 + brightBlue: 67.1 + brightMagenta: 70.1 + brightCyan: 84.7 + brightWhite: 107.4 diff --git a/themes/earthsong-light.yaml b/themes/earthsong-light.yaml new file mode 100644 index 00000000..a2d41875 --- /dev/null +++ b/themes/earthsong-light.yaml @@ -0,0 +1,49 @@ +name: "earthsong-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#4D463E" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#95CC5E" + yellow: "#DB784D" + blue: "#60A365" + magenta: "#DB784D" + cyan: "#95CC5E" + white: "#5B5349" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C8E5AB" + brightYellow: "#ECB8A2" + brightBlue: "#A1C8A4" + brightMagenta: "#ECB8A2" + brightCyan: "#C8E5AB" + brightWhite: "#85796B" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 91.5 + black: 0 + red: 80.3 + green: 35.9 + yellow: 57.4 + blue: 57 + magenta: 57.4 + cyan: 35.9 + white: 86.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 18.4 + brightYellow: 32.1 + brightBlue: 35 + brightMagenta: 32.1 + brightCyan: 18.4 + brightWhite: 69.4 diff --git a/themes/earthsong.yaml b/themes/earthsong.yaml new file mode 100644 index 00000000..3b198173 --- /dev/null +++ b/themes/earthsong.yaml @@ -0,0 +1,49 @@ +name: "earthsong" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#36312C" + fg: "#EBD1B7" + black: "#443E37" + red: "#BA0E2E" + green: "#95CC5E" + yellow: "#DB784D" + blue: "#60A365" + magenta: "#DB784D" + cyan: "#95CC5E" + white: "#F1DECB" + brightBlack: "#6E645A" + brightRed: "#F03E5F" + brightGreen: "#C8E5AB" + brightYellow: "#ECB8A2" + brightBlue: "#A1C8A4" + brightMagenta: "#ECB8A2" + brightCyan: "#C8E5AB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 67 + contrast: + fg: 75.7 + black: 0 + red: 15.9 + green: 61 + yellow: 38.8 + blue: 39.2 + magenta: 38.8 + cyan: 61 + white: 82.9 + brightBlack: 17.3 + brightRed: 32.2 + brightGreen: 79.6 + brightYellow: 65 + brightBlue: 62 + brightMagenta: 65 + brightCyan: 79.6 + brightWhite: 102.3 diff --git a/themes/easy-eye.yaml b/themes/easy-eye.yaml new file mode 100644 index 00000000..c44f15b5 --- /dev/null +++ b/themes/easy-eye.yaml @@ -0,0 +1,49 @@ +name: "Easy Eye" +source: + marketplace_id: "SufficientDaikon.sufficentdaikon-darkpp" + version: "1.3.5" + installs: 698 + author: "SufficientDaikon" + repo: "https://github.com/SufficientDaikon/Black-Void_VSCode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SufficientDaikon.sufficentdaikon-darkpp" +colors: + bg: "#0A0A0A" + fg: "#C7C7C7" + black: "#0E0E0E" + red: "#FC6A67" + green: "#A9DC76" + yellow: "#FFD866" + blue: "#78DCE8" + magenta: "#E991E3" + cyan: "#78E8C6" + white: "#C7C7C7" + brightBlack: "#000000" + brightRed: "#FF6764" + brightGreen: "#A9F65C" + brightYellow: "#FFD866" + brightBlue: "#61EEFF" + brightMagenta: "#FD7DF4" + brightCyan: "#61FFCF" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72.6 + black: 0 + red: 48 + green: 76.1 + yellow: 85.2 + blue: 76.3 + magenta: 59.4 + cyan: 80.5 + white: 72.6 + brightBlack: 0 + brightRed: 47.9 + brightGreen: 88.4 + brightYellow: 85.2 + brightBlue: 85.1 + brightMagenta: 58.6 + brightCyan: 91.4 + brightWhite: 104.4 diff --git a/themes/easy-eyes-color-theme.yaml b/themes/easy-eyes-color-theme.yaml new file mode 100644 index 00000000..ff05fa8d --- /dev/null +++ b/themes/easy-eyes-color-theme.yaml @@ -0,0 +1,49 @@ +name: "easy-eyes-color-theme" +source: + marketplace_id: "vvhg1.theme-easy-eyes" + version: "1.2.1" + installs: 5650 + author: "vvhg1" + repo: "https://github.com/vvhg1/easyeyes" + url: "https://marketplace.visualstudio.com/items?itemName=vvhg1.theme-easy-eyes" +colors: + bg: "#1E1E1E" + fg: "#CCC9C0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72.1 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/easy-light.yaml b/themes/easy-light.yaml new file mode 100644 index 00000000..36cc09c3 --- /dev/null +++ b/themes/easy-light.yaml @@ -0,0 +1,49 @@ +name: "Easy Light" +source: + marketplace_id: "Sean-Chaplin.easy-light-theme" + version: "0.0.3" + installs: 256 + author: "Sean Chaplin" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Sean-Chaplin.easy-light-theme" +colors: + bg: "#D7D7D7" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#BEBEBE" + brightBlack: "#3F3F3F" + brightRed: "#FF7676" + brightGreen: "#3EFF3E" + brightYellow: "#F8FF00" + brightBlue: "#007AFF" + brightMagenta: "#FF59FF" + brightCyan: "#00CDFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 82.7 + black: 82.7 + red: 50.6 + green: 25.9 + yellow: 34.6 + blue: 62.7 + magenta: 51.2 + cyan: 37.2 + white: 11.7 + brightBlack: 71.1 + brightRed: 26.7 + brightGreen: 0 + brightYellow: 17.8 + brightBlue: 43.2 + brightMagenta: 26.1 + brightCyan: 11.5 + brightWhite: 23.9 diff --git a/themes/ebizome.yaml b/themes/ebizome.yaml new file mode 100644 index 00000000..529f6316 --- /dev/null +++ b/themes/ebizome.yaml @@ -0,0 +1,49 @@ +name: "Ebizome" +source: + marketplace_id: "ryoh827.ebizome-theme-vscode" + version: "0.0.3" + installs: 40 + author: "ryoh827" + repo: "https://github.com/Ryoh827/ebizome-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ryoh827.ebizome-theme-vscode" +colors: + bg: "#7A4171" + fg: "#FFF5F7" + black: "#3A1F3B" + red: "#FFC9DA" + green: "#6DE8AB" + yellow: "#FFDD47" + blue: "#00DEF2" + magenta: "#CEC0FC" + cyan: "#74EDD9" + white: "#EDE4E6" + brightBlack: "#582F56" + brightRed: "#FFC9DA" + brightGreen: "#6DE8AB" + brightYellow: "#FFDD47" + brightBlue: "#00DEF2" + brightMagenta: "#CEC0FC" + brightCyan: "#74EDD9" + brightWhite: "#FFF5F7" +meta: + mode: "dark" + accent: "green" + hue: 333 + contrast: + fg: 85.4 + black: 13.7 + red: 65.1 + green: 61.6 + yellow: 69.7 + blue: 57.4 + magenta: 56 + cyan: 66.3 + white: 74.3 + brightBlack: 0 + brightRed: 65.1 + brightGreen: 61.6 + brightYellow: 69.7 + brightBlue: 57.4 + brightMagenta: 56 + brightCyan: 66.3 + brightWhite: 85.4 diff --git a/themes/ebullience.yaml b/themes/ebullience.yaml new file mode 100644 index 00000000..be8a0adc --- /dev/null +++ b/themes/ebullience.yaml @@ -0,0 +1,49 @@ +name: "Ebullience" +source: + marketplace_id: "Nash0810.ebullience" + version: "0.0.7" + installs: 22 + author: "Nash" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Nash0810.ebullience" +colors: + bg: "#202020" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.8 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.3 + magenta: 28.6 + cyan: 46.4 + white: 88.9 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/eclipsa.yaml b/themes/eclipsa.yaml new file mode 100644 index 00000000..fc03265d --- /dev/null +++ b/themes/eclipsa.yaml @@ -0,0 +1,49 @@ +name: "Eclipsa" +source: + marketplace_id: "yumma-css.eclipsa" + version: "0.0.14" + installs: 251 + author: "Yumma CSS" + repo: "https://github.com/yummacss/eclipsa" + url: "https://marketplace.visualstudio.com/items?itemName=yumma-css.eclipsa" +colors: + bg: "#21243F" + fg: "#B9BED5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 64.7 + black: 0 + red: 24.6 + green: 50.9 + yellow: 83.5 + blue: 25.3 + magenta: 27.6 + cyan: 45.4 + white: 104.7 + brightBlack: 19.9 + brightRed: 36.4 + brightGreen: 61.4 + brightYellow: 93.5 + brightBlue: 37.9 + brightMagenta: 43.2 + brightCyan: 53.3 + brightWhite: 87.9 diff --git a/themes/eclipse-dark-darker.yaml b/themes/eclipse-dark-darker.yaml new file mode 100644 index 00000000..5f8b08c6 --- /dev/null +++ b/themes/eclipse-dark-darker.yaml @@ -0,0 +1,49 @@ +name: "Eclipse Dark Darker" +source: + marketplace_id: "NoahLezama.eclipse-dark" + version: "0.0.8" + installs: 137 + author: "Noah Lezama" + repo: "https://github.com/A5TUT0/Eclipse" + url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#8089B3" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 73.8 + black: 10.3 + red: 49.4 + green: 72.2 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 38.5 + brightBlack: 10.3 + brightRed: 49.4 + brightGreen: 72.2 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 59.3 diff --git a/themes/eclipse-dark-flat.yaml b/themes/eclipse-dark-flat.yaml new file mode 100644 index 00000000..debb918a --- /dev/null +++ b/themes/eclipse-dark-flat.yaml @@ -0,0 +1,49 @@ +name: "Eclipse Dark Flat" +source: + marketplace_id: "NoahLezama.eclipse-dark" + version: "0.0.8" + installs: 137 + author: "Noah Lezama" + repo: "https://github.com/A5TUT0/Eclipse" + url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" +colors: + bg: "#23283D" + fg: "#C9D1FF" + black: "#5A607D" + red: "#FF7A93" + green: "#5DD7C2" + yellow: "#FF9D6A" + blue: "#82AAFF" + magenta: "#D4A5FF" + cyan: "#7EE8FF" + white: "#9AA5CE" + brightBlack: "#6B7394" + brightRed: "#FF7A93" + brightGreen: "#5DD7C2" + brightYellow: "#FF9D6A" + brightBlue: "#82AAFF" + brightMagenta: "#D4A5FF" + brightCyan: "#7EE8FF" + brightWhite: "#C9D1FF" +meta: + mode: "dark" + accent: "red" + hue: 273 + contrast: + fg: 76.3 + black: 17.4 + red: 50.1 + green: 67.2 + yellow: 59.2 + blue: 53.3 + magenta: 60.7 + cyan: 80.1 + white: 50.5 + brightBlack: 25.6 + brightRed: 50.1 + brightGreen: 67.2 + brightYellow: 59.2 + brightBlue: 53.3 + brightMagenta: 60.7 + brightCyan: 80.1 + brightWhite: 76.3 diff --git a/themes/eclipse-flare.yaml b/themes/eclipse-flare.yaml new file mode 100644 index 00000000..b752f60f --- /dev/null +++ b/themes/eclipse-flare.yaml @@ -0,0 +1,49 @@ +name: "Eclipse Flare" +source: + marketplace_id: "NoahLezama.eclipse-dark" + version: "0.0.8" + installs: 137 + author: "Noah Lezama" + repo: "https://github.com/A5TUT0/Eclipse" + url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" +colors: + bg: "#1F1F1F" + fg: "#D4D4D4" + black: "#1F1F1F" + red: "#FF1744" + green: "#76FF03" + yellow: "#FFAB00" + blue: "#448AFF" + magenta: "#F50057" + cyan: "#00E5FF" + white: "#D4D4D4" + brightBlack: "#757575" + brightRed: "#FF1744" + brightGreen: "#76FF03" + brightYellow: "#FFAB00" + brightBlue: "#448AFF" + brightMagenta: "#F50057" + brightCyan: "#00E5FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 78.5 + black: 0 + red: 36.2 + green: 87.2 + yellow: 64.9 + blue: 39.6 + magenta: 33.8 + cyan: 77.1 + white: 78.5 + brightBlack: 27.7 + brightRed: 36.2 + brightGreen: 87.2 + brightYellow: 64.9 + brightBlue: 39.6 + brightMagenta: 33.8 + brightCyan: 77.1 + brightWhite: 105.9 diff --git a/themes/eclipse-optics.yaml b/themes/eclipse-optics.yaml new file mode 100644 index 00000000..df94e189 --- /dev/null +++ b/themes/eclipse-optics.yaml @@ -0,0 +1,49 @@ +name: "Eclipse Optics" +source: + marketplace_id: "NoahLezama.eclipse-dark" + version: "0.0.8" + installs: 137 + author: "Noah Lezama" + repo: "https://github.com/A5TUT0/Eclipse" + url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" +colors: + bg: "#262626" + fg: "#CCCCCC" + black: "#262626" + red: "#D98C8C" + green: "#8CD9B3" + yellow: "#B3864D" + blue: "#668099" + magenta: "#B38CD9" + cyan: "#8CB3D9" + white: "#CCCCCC" + brightBlack: "#737373" + brightRed: "#D98C8C" + brightGreen: "#8CD9B3" + brightYellow: "#B3864D" + brightBlue: "#668099" + brightMagenta: "#B38CD9" + brightCyan: "#8CB3D9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 72.6 + black: 0 + red: 48.2 + green: 71 + yellow: 38.8 + blue: 30.4 + magenta: 45.9 + cyan: 55.9 + white: 72.6 + brightBlack: 25.7 + brightRed: 48.2 + brightGreen: 71 + brightYellow: 38.8 + brightBlue: 30.4 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 104.8 diff --git a/themes/eclipse-penumbra.yaml b/themes/eclipse-penumbra.yaml new file mode 100644 index 00000000..b6f7fc44 --- /dev/null +++ b/themes/eclipse-penumbra.yaml @@ -0,0 +1,49 @@ +name: "Eclipse Penumbra" +source: + marketplace_id: "NoahLezama.eclipse-dark" + version: "0.0.8" + installs: 137 + author: "Noah Lezama" + repo: "https://github.com/A5TUT0/Eclipse" + url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" +colors: + bg: "#1D3557" + fg: "#F1FAEE" + black: "#1D3557" + red: "#E63946" + green: "#A8DADC" + yellow: "#F4A261" + blue: "#8DB5E0" + magenta: "#B2B5E0" + cyan: "#A8DADC" + white: "#F1FAEE" + brightBlack: "#6B728E" + brightRed: "#E63946" + brightGreen: "#A8DADC" + brightYellow: "#F4A261" + brightBlue: "#8DB5E0" + brightMagenta: "#B2B5E0" + brightCyan: "#A8DADC" + brightWhite: "#F1FAEE" +meta: + mode: "dark" + accent: "orange" + hue: 257 + contrast: + fg: 96.4 + black: 0 + red: 28 + green: 72.2 + yellow: 55.9 + blue: 53.9 + magenta: 57.6 + cyan: 72.2 + white: 96.4 + brightBlack: 22.3 + brightRed: 28 + brightGreen: 72.2 + brightYellow: 55.9 + brightBlue: 53.9 + brightMagenta: 57.6 + brightCyan: 72.2 + brightWhite: 96.4 diff --git a/themes/eclipse-umbra.yaml b/themes/eclipse-umbra.yaml new file mode 100644 index 00000000..4b42b135 --- /dev/null +++ b/themes/eclipse-umbra.yaml @@ -0,0 +1,49 @@ +name: "Eclipse Umbra" +source: + marketplace_id: "NoahLezama.eclipse-dark" + version: "0.0.8" + installs: 137 + author: "Noah Lezama" + repo: "https://github.com/A5TUT0/Eclipse" + url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#282C34" + red: "#E06C75" + green: "#98C379" + yellow: "#D19A66" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#D19A66" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 49.5 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 56.2 + brightBlack: 17.4 + brightRed: 38.9 + brightGreen: 59.1 + brightYellow: 49.5 + brightBlue: 51.5 + brightMagenta: 41.9 + brightCyan: 51.4 + brightWhite: 103.7 diff --git a/themes/edge-dark-aura.yaml b/themes/edge-dark-aura.yaml new file mode 100644 index 00000000..80e1e1f5 --- /dev/null +++ b/themes/edge-dark-aura.yaml @@ -0,0 +1,49 @@ +name: "Edge Dark (Aura)" +source: + marketplace_id: "sainnhe.edge" + version: "0.1.8" + installs: 20558 + author: "sainnhe" + repo: "https://github.com/sainnhe/edge-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" +colors: + bg: "#2B2D37" + fg: "#C5CDD9" + black: "#363A49" + red: "#EC7279" + green: "#A0C980" + yellow: "#DEB974" + blue: "#6CB6EB" + magenta: "#D38AEA" + cyan: "#5DBBC1" + white: "#C5CDD9" + brightBlack: "#363A49" + brightRed: "#EC7279" + brightGreen: "#A0C980" + brightYellow: "#DEB974" + brightBlue: "#6CB6EB" + brightMagenta: "#D38AEA" + brightCyan: "#5DBBC1" + brightWhite: "#C5CDD9" +meta: + mode: "dark" + accent: "pink" + hue: 276 + contrast: + fg: 71.3 + black: 0 + red: 42.5 + green: 62.3 + yellow: 63 + blue: 54.4 + magenta: 49.6 + cyan: 53.5 + white: 71.3 + brightBlack: 0 + brightRed: 42.5 + brightGreen: 62.3 + brightYellow: 63 + brightBlue: 54.4 + brightMagenta: 49.6 + brightCyan: 53.5 + brightWhite: 71.3 diff --git a/themes/edge-dark-neon.yaml b/themes/edge-dark-neon.yaml new file mode 100644 index 00000000..bb387b3d --- /dev/null +++ b/themes/edge-dark-neon.yaml @@ -0,0 +1,49 @@ +name: "Edge Dark (Neon)" +source: + marketplace_id: "sainnhe.edge" + version: "0.1.8" + installs: 20558 + author: "sainnhe" + repo: "https://github.com/sainnhe/edge-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" +colors: + bg: "#2B2D3A" + fg: "#C5CDD9" + black: "#363A4E" + red: "#EC7279" + green: "#A0C980" + yellow: "#DEB974" + blue: "#6CB6EB" + magenta: "#D38AEA" + cyan: "#5DBBC1" + white: "#C5CDD9" + brightBlack: "#363A4E" + brightRed: "#EC7279" + brightGreen: "#A0C980" + brightYellow: "#DEB974" + brightBlue: "#6CB6EB" + brightMagenta: "#D38AEA" + brightCyan: "#5DBBC1" + brightWhite: "#C5CDD9" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 71.2 + black: 0 + red: 42.4 + green: 62.3 + yellow: 62.9 + blue: 54.3 + magenta: 49.5 + cyan: 53.4 + white: 71.2 + brightBlack: 0 + brightRed: 42.4 + brightGreen: 62.3 + brightYellow: 62.9 + brightBlue: 54.3 + brightMagenta: 49.5 + brightCyan: 53.4 + brightWhite: 71.2 diff --git a/themes/edge-dark.yaml b/themes/edge-dark.yaml new file mode 100644 index 00000000..04fbb8d3 --- /dev/null +++ b/themes/edge-dark.yaml @@ -0,0 +1,49 @@ +name: "Edge Dark" +source: + marketplace_id: "sainnhe.edge" + version: "0.1.8" + installs: 20558 + author: "sainnhe" + repo: "https://github.com/sainnhe/edge-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" +colors: + bg: "#2C2E34" + fg: "#C5CDD9" + black: "#363944" + red: "#EC7279" + green: "#A0C980" + yellow: "#DEB974" + blue: "#6CB6EB" + magenta: "#D38AEA" + cyan: "#5DBBC1" + white: "#C5CDD9" + brightBlack: "#363944" + brightRed: "#EC7279" + brightGreen: "#A0C980" + brightYellow: "#DEB974" + brightBlue: "#6CB6EB" + brightMagenta: "#D38AEA" + brightCyan: "#5DBBC1" + brightWhite: "#C5CDD9" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 71.1 + black: 0 + red: 42.4 + green: 62.2 + yellow: 62.9 + blue: 54.3 + magenta: 49.5 + cyan: 53.4 + white: 71.1 + brightBlack: 0 + brightRed: 42.4 + brightGreen: 62.2 + brightYellow: 62.9 + brightBlue: 54.3 + brightMagenta: 49.5 + brightCyan: 53.4 + brightWhite: 71.1 diff --git a/themes/edge-light.yaml b/themes/edge-light.yaml new file mode 100644 index 00000000..7140da76 --- /dev/null +++ b/themes/edge-light.yaml @@ -0,0 +1,49 @@ +name: "Edge Light" +source: + marketplace_id: "sainnhe.edge" + version: "0.1.8" + installs: 20558 + author: "sainnhe" + repo: "https://github.com/sainnhe/edge-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" +colors: + bg: "#FAFAFA" + fg: "#4B505B" + black: "#E8EBF0" + red: "#D05858" + green: "#608E32" + yellow: "#BE7E05" + blue: "#5079BE" + magenta: "#B05CCC" + cyan: "#3A8B84" + white: "#4B505B" + brightBlack: "#E8EBF0" + brightRed: "#D05858" + brightGreen: "#608E32" + brightYellow: "#BE7E05" + brightBlue: "#5079BE" + brightMagenta: "#B05CCC" + brightCyan: "#3A8B84" + brightWhite: "#4B505B" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 85 + black: 0 + red: 63.8 + green: 63.1 + yellow: 58.2 + blue: 67 + magenta: 63.9 + cyan: 64.4 + white: 85 + brightBlack: 0 + brightRed: 63.8 + brightGreen: 63.1 + brightYellow: 58.2 + brightBlue: 67 + brightMagenta: 63.9 + brightCyan: 64.4 + brightWhite: 85 diff --git a/themes/edgerunner.yaml b/themes/edgerunner.yaml new file mode 100644 index 00000000..6e51df4b --- /dev/null +++ b/themes/edgerunner.yaml @@ -0,0 +1,49 @@ +name: "Edgerunner" +source: + marketplace_id: "Noqs.darkstack" + version: "1.1.1" + installs: 2842 + author: "Noqs" + repo: "https://github.com/NoxQ/Darkstack" + url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" +colors: + bg: "#071104" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 137 + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/editor.yaml b/themes/editor.yaml new file mode 100644 index 00000000..1e0e3912 --- /dev/null +++ b/themes/editor.yaml @@ -0,0 +1,49 @@ +name: "Editor" +source: + marketplace_id: "Didier.editor-theme" + version: "0.7.5" + installs: 603 + author: "Didier" + repo: "https://github.com/didier/editor-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Didier.editor-theme" +colors: + bg: "#171717" + fg: "#A3A3A3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 51.4 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/edu4dev-vscode-theme-color.yaml b/themes/edu4dev-vscode-theme-color.yaml new file mode 100644 index 00000000..556fed87 --- /dev/null +++ b/themes/edu4dev-vscode-theme-color.yaml @@ -0,0 +1,49 @@ +name: "Edu4Dev - VSCode Theme Color" +source: + marketplace_id: "Edu4Dev.vscode-edu4dev-color-theme" + version: "1.0.5" + installs: 370 + author: "Edu4Dev" + repo: "https://github.com/nuktpls/vscode-edu4dev-theme-color" + url: "https://marketplace.visualstudio.com/items?itemName=Edu4Dev.vscode-edu4dev-color-theme" +colors: + bg: "#000000" + fg: "#AFFFD4" + black: "#283034" + red: "#EB4757" + green: "#62A9CF" + yellow: "#FFFF00" + blue: "#00CFFF" + magenta: "#FF2AFC" + cyan: "#00CFFF" + white: "#D9E0E9" + brightBlack: "#435056" + brightRed: "#EB4757" + brightGreen: "#ADD0E5" + brightYellow: "#FFFF00" + brightBlue: "#00CFFF" + brightMagenta: "#FF2AFC" + brightCyan: "#00CFFF" + brightWhite: "#F4F6F9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 96.8 + black: 0 + red: 37.7 + green: 51.4 + yellow: 102.7 + blue: 68.6 + magenta: 47.1 + cyan: 68.6 + white: 87.4 + brightBlack: 13.4 + brightRed: 37.7 + brightGreen: 75.1 + brightYellow: 102.7 + brightBlue: 68.6 + brightMagenta: 47.1 + brightCyan: 68.6 + brightWhite: 101.8 diff --git a/themes/eerie.yaml b/themes/eerie.yaml new file mode 100644 index 00000000..aabda9b1 --- /dev/null +++ b/themes/eerie.yaml @@ -0,0 +1,49 @@ +name: "Eerie" +source: + marketplace_id: "Priyaank.radiancexx" + version: "1.1.0" + installs: 68 + author: "Priyaank" + repo: "https://github.com/PRIYAANK2510/Radiance" + url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.radiancexx" +colors: + bg: "#18181F" + fg: "#70708F" + black: "#262626" + red: "#C03D3D" + green: "#27923B" + yellow: "#BE8939" + blue: "#2A70BC" + magenta: "#9F399F" + cyan: "#2D9EBA" + white: "#A9A9A9" + brightBlack: "#383838" + brightRed: "#E64343" + brightGreen: "#30B649" + brightYellow: "#E4A546" + brightBlue: "#338BEA" + brightMagenta: "#BE47BE" + brightCyan: "#38C0E2" + brightWhite: "#C0C0C0" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 27.4 + black: 0 + red: 25.3 + green: 33.7 + yellow: 43.1 + blue: 25.9 + magenta: 21.9 + cyan: 42.6 + white: 54.5 + brightBlack: 0 + brightRed: 34.5 + brightGreen: 49.6 + brightYellow: 59 + brightBlue: 38.5 + brightMagenta: 31.2 + brightCyan: 59.4 + brightWhite: 67.4 diff --git a/themes/eezoterial-dark.yaml b/themes/eezoterial-dark.yaml new file mode 100644 index 00000000..b61ade93 --- /dev/null +++ b/themes/eezoterial-dark.yaml @@ -0,0 +1,49 @@ +name: "eezoterial dark" +source: + marketplace_id: "unic0rn.theme-eezoterial" + version: "0.0.1" + installs: 500 + author: "unic0rn" + repo: "https://github.com/unic0rn/eezoterial" + url: "https://marketplace.visualstudio.com/items?itemName=unic0rn.theme-eezoterial" +colors: + bg: "#0D1240" + fg: "#9FA8DA" + black: "#260A47" + red: "#AD1457" + green: "#AB47BC" + yellow: "#388E3C" + blue: "#0288D1" + magenta: "#7E57C2" + cyan: "#009688" + white: "#F3E5F5" + brightBlack: "#0D1240" + brightRed: "#8D6E63" + brightGreen: "#3F51B5" + brightYellow: "#5C6BC0" + brightBlue: "#7986CB" + brightMagenta: "#607D8B" + brightCyan: "#9FA8DA" + brightWhite: "#E8EAF6" +meta: + mode: "dark" + accent: "pink" + hue: 272 + contrast: + fg: 55.2 + black: 0 + red: 18.4 + green: 27.7 + yellow: 32.4 + blue: 35 + magenta: 24.9 + cyan: 36.7 + white: 92.4 + brightBlack: 0 + brightRed: 28.3 + brightGreen: 17.3 + brightYellow: 26.9 + brightBlue: 38.4 + brightMagenta: 30.1 + brightCyan: 55.2 + brightWhite: 93.2 diff --git a/themes/eezoterial-light.yaml b/themes/eezoterial-light.yaml new file mode 100644 index 00000000..a00470a5 --- /dev/null +++ b/themes/eezoterial-light.yaml @@ -0,0 +1,49 @@ +name: "eezoterial light" +source: + marketplace_id: "unic0rn.theme-eezoterial" + version: "0.0.1" + installs: 500 + author: "unic0rn" + repo: "https://github.com/unic0rn/eezoterial" + url: "https://marketplace.visualstudio.com/items?itemName=unic0rn.theme-eezoterial" +colors: + bg: "#E8EAF6" + fg: "#3F51B5" + black: "#260A47" + red: "#AD1457" + green: "#AB47BC" + yellow: "#388E3C" + blue: "#0288D1" + magenta: "#7E57C2" + cyan: "#009688" + white: "#F3E5F5" + brightBlack: "#0D1240" + brightRed: "#8D6E63" + brightGreen: "#3F51B5" + brightYellow: "#5C6BC0" + brightBlue: "#7986CB" + brightMagenta: "#607D8B" + brightCyan: "#9FA8DA" + brightWhite: "#E8EAF6" +meta: + mode: "light" + accent: "pink" + hue: 279 + contrast: + fg: 71.2 + black: 91.5 + red: 70.1 + green: 60.6 + yellow: 55.8 + blue: 53.2 + magenta: 63.4 + cyan: 51.5 + white: 0 + brightBlack: 92.2 + brightRed: 59.9 + brightGreen: 71.2 + brightYellow: 61.4 + brightBlue: 49.8 + brightMagenta: 58.1 + brightCyan: 33.4 + brightWhite: 0 diff --git a/themes/ef-arbutus.yaml b/themes/ef-arbutus.yaml new file mode 100644 index 00000000..59203b04 --- /dev/null +++ b/themes/ef-arbutus.yaml @@ -0,0 +1,49 @@ +name: "Ef Arbutus" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#FFEAD8" + fg: "#393330" + black: "#393330" + red: "#B0000F" + green: "#007000" + yellow: "#906200" + blue: "#375CC6" + magenta: "#A23EA4" + cyan: "#3F69AF" + white: "#F0D8CF" + brightBlack: "#6E678F" + brightRed: "#B20F00" + brightGreen: "#557000" + brightYellow: "#B44405" + brightBlue: "#5F55DF" + brightMagenta: "#BF2C90" + brightCyan: "#4060A0" + brightWhite: "#FFEAD8" +meta: + mode: "light" + accent: "pink" + hue: 63 + contrast: + fg: 87.9 + black: 87.9 + red: 72.5 + green: 70.3 + yellow: 65.9 + blue: 69.1 + magenta: 66.8 + cyan: 66.6 + white: 0 + brightBlack: 65.7 + brightRed: 71.9 + brightGreen: 67.8 + brightYellow: 66.5 + brightBlue: 66.3 + brightMagenta: 64.5 + brightCyan: 70.2 + brightWhite: 0 diff --git a/themes/ef-autumn.yaml b/themes/ef-autumn.yaml new file mode 100644 index 00000000..67fa383f --- /dev/null +++ b/themes/ef-autumn.yaml @@ -0,0 +1,49 @@ +name: "Ef Autumn" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#0F0E06" + fg: "#CFBCBA" + black: "#CFBCBA" + red: "#EF656A" + green: "#2FA526" + yellow: "#C48702" + blue: "#379CF6" + magenta: "#D570AF" + cyan: "#4FB0CF" + white: "#26211D" + brightBlack: "#887C8A" + brightRed: "#F06A3F" + brightGreen: "#64AA0F" + brightYellow: "#D0730F" + brightBlue: "#6A88FF" + brightMagenta: "#E580EA" + brightCyan: "#6FAFFF" + brightWhite: "#0F0E06" +meta: + mode: "dark" + accent: "green" + hue: 102 + contrast: + fg: 68.4 + black: 68.4 + red: 44 + green: 42.6 + yellow: 44 + blue: 46.7 + magenta: 43.8 + cyan: 53.1 + white: 0 + brightBlack: 34.3 + brightRed: 44.6 + brightGreen: 46.8 + brightYellow: 40.2 + brightBlue: 42.6 + brightMagenta: 54.1 + brightCyan: 57.2 + brightWhite: 0 diff --git a/themes/ef-bio.yaml b/themes/ef-bio.yaml new file mode 100644 index 00000000..90d834c9 --- /dev/null +++ b/themes/ef-bio.yaml @@ -0,0 +1,49 @@ +name: "Ef Bio" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#111111" + fg: "#CFDFD5" + black: "#CFDFD5" + red: "#EF6560" + green: "#3FB83F" + yellow: "#D4AA02" + blue: "#37AFF6" + magenta: "#D38FAF" + cyan: "#6FC5EF" + white: "#222522" + brightBlack: "#808F80" + brightRed: "#F47360" + brightGreen: "#7FC500" + brightYellow: "#E09A0F" + brightBlue: "#78AFFF" + brightMagenta: "#E490DF" + brightCyan: "#7FCFDF" + brightWhite: "#111111" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 84.3 + black: 84.3 + red: 43.6 + green: 51.4 + yellow: 58.6 + blue: 54 + magenta: 52.1 + cyan: 65.3 + white: 0 + brightBlack: 39.6 + brightRed: 47.9 + brightGreen: 60.4 + brightYellow: 54.8 + brightBlue: 57.6 + brightMagenta: 57.6 + brightCyan: 69.9 + brightWhite: 0 diff --git a/themes/ef-cherie.yaml b/themes/ef-cherie.yaml new file mode 100644 index 00000000..5ab62379 --- /dev/null +++ b/themes/ef-cherie.yaml @@ -0,0 +1,49 @@ +name: "Ef Cherie" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#190A0F" + fg: "#D3CFCF" + black: "#D3CFCF" + red: "#FF7359" + green: "#60B444" + yellow: "#E5B76F" + blue: "#8FA5F6" + magenta: "#EF80BF" + cyan: "#8FBAEF" + white: "#291F26" + brightBlack: "#808898" + brightRed: "#FF656F" + brightGreen: "#80B25F" + brightYellow: "#EA9955" + brightBlue: "#A897EF" + brightMagenta: "#F470DF" + brightCyan: "#9AC0E4" + brightWhite: "#190A0F" +meta: + mode: "dark" + accent: "pink" + hue: 359 + contrast: + fg: 77.6 + black: 77.6 + red: 50.2 + green: 51.2 + yellow: 67.3 + blue: 55.1 + magenta: 53.5 + cyan: 63 + white: 0 + brightBlack: 38 + brightRed: 47.5 + brightGreen: 52.9 + brightYellow: 56.9 + brightBlue: 52.2 + brightMagenta: 52.2 + brightCyan: 65.9 + brightWhite: 0 diff --git a/themes/ef-cyprus.yaml b/themes/ef-cyprus.yaml new file mode 100644 index 00000000..87b331ef --- /dev/null +++ b/themes/ef-cyprus.yaml @@ -0,0 +1,49 @@ +name: "Ef Cyprus" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#FCF7EF" + fg: "#242521" + black: "#242521" + red: "#9F0D0F" + green: "#006F00" + yellow: "#A7601F" + blue: "#375CC6" + magenta: "#9A456F" + cyan: "#1F70AF" + white: "#F0ECE0" + brightBlack: "#59786F" + brightRed: "#DD0020" + brightGreen: "#557400" + brightYellow: "#BF4400" + brightBlue: "#444FCF" + brightMagenta: "#BF456A" + brightCyan: "#3F6FAF" + brightWhite: "#FCF7EF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.9 + black: 97.9 + red: 82 + green: 76.6 + yellow: 68.7 + blue: 75 + magenta: 75.4 + cyan: 71.2 + white: 0 + brightBlack: 69.1 + brightRed: 68 + brightGreen: 72.3 + brightYellow: 70.2 + brightBlue: 76.9 + brightMagenta: 68.7 + brightCyan: 70.6 + brightWhite: 0 diff --git a/themes/ef-dark.yaml b/themes/ef-dark.yaml new file mode 100644 index 00000000..55699ee9 --- /dev/null +++ b/themes/ef-dark.yaml @@ -0,0 +1,49 @@ +name: "Ef Dark" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#000000" + fg: "#D0D0D0" + black: "#D0D0D0" + red: "#EF6560" + green: "#0FAA26" + yellow: "#BF9032" + blue: "#3F95F6" + magenta: "#D369AF" + cyan: "#4FBAEF" + white: "#1A1A1A" + brightBlack: "#857F8F" + brightRed: "#F47360" + brightGreen: "#6AAD0F" + brightYellow: "#D1843F" + brightBlue: "#6A9FFF" + brightMagenta: "#E580EA" + brightCyan: "#6FAFFF" + brightWhite: "#000000" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 78.1 + black: 78.1 + red: 44.1 + green: 44.7 + yellow: 46.7 + blue: 44.6 + magenta: 42.1 + cyan: 59.5 + white: 0 + brightBlack: 35.5 + brightRed: 48.4 + brightGreen: 48.8 + brightYellow: 45.9 + brightBlue: 51 + brightMagenta: 54.4 + brightCyan: 57.6 + brightWhite: 0 diff --git a/themes/ef-day.yaml b/themes/ef-day.yaml new file mode 100644 index 00000000..ce715bd4 --- /dev/null +++ b/themes/ef-day.yaml @@ -0,0 +1,49 @@ +name: "Ef Day" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#FFF5EA" + fg: "#584141" + black: "#584141" + red: "#BA2D2F" + green: "#007A0A" + yellow: "#A45A22" + blue: "#375CC6" + magenta: "#CA3E54" + cyan: "#3F60AF" + white: "#F2E9DB" + brightBlack: "#63728F" + brightRed: "#CE3F00" + brightGreen: "#5F7200" + brightYellow: "#B75515" + brightBlue: "#5F5FDF" + brightMagenta: "#CB2F80" + brightCyan: "#3F6FAF" + brightWhite: "#FFF5EA" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 86.4 + black: 86.4 + red: 73.4 + green: 71.8 + yellow: 70.1 + blue: 74.3 + magenta: 67.4 + cyan: 74.6 + white: 0 + brightBlack: 68.5 + brightRed: 67.2 + brightGreen: 71.6 + brightYellow: 67.9 + brightBlue: 69.1 + brightMagenta: 67.6 + brightCyan: 69.9 + brightWhite: 0 diff --git a/themes/ef-deuteranopia-dark.yaml b/themes/ef-deuteranopia-dark.yaml new file mode 100644 index 00000000..df2226a0 --- /dev/null +++ b/themes/ef-deuteranopia-dark.yaml @@ -0,0 +1,49 @@ +name: "Ef Deuteranopia Dark" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#000A1F" + fg: "#DDDDEE" + black: "#DDDDEE" + red: "#CF8560" + green: "#3FAA26" + yellow: "#AA9F32" + blue: "#3F90F0" + magenta: "#B379BF" + cyan: "#5FAAEF" + white: "#121F34" + brightBlack: "#7F8797" + brightRed: "#E47360" + brightGreen: "#7AAD0F" + brightYellow: "#CFAF00" + brightBlue: "#6A9FFF" + brightMagenta: "#AF80EA" + brightCyan: "#7FAFFF" + brightWhite: "#000A1F" +meta: + mode: "dark" + accent: "green" + hue: 256 + contrast: + fg: 86.6 + black: 86.6 + red: 46.1 + green: 45.2 + yellow: 49 + blue: 42 + magenta: 41.5 + cyan: 53.3 + white: 0 + brightBlack: 37.7 + brightRed: 44.9 + brightGreen: 49.7 + brightYellow: 60.1 + brightBlue: 50.8 + brightMagenta: 45.6 + brightCyan: 58.4 + brightWhite: 0 diff --git a/themes/ef-deuteranopia-light.yaml b/themes/ef-deuteranopia-light.yaml new file mode 100644 index 00000000..43d2777c --- /dev/null +++ b/themes/ef-deuteranopia-light.yaml @@ -0,0 +1,49 @@ +name: "Ef Deuteranopia Light" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#F5F5FF" + fg: "#1A1A2F" + black: "#1A1A2F" + red: "#D3303A" + green: "#217A3C" + yellow: "#805D00" + blue: "#375CD8" + magenta: "#BA35AF" + cyan: "#1F6FBF" + white: "#E8E8EA" + brightBlack: "#70627F" + brightRed: "#E00033" + brightGreen: "#4A7D00" + brightYellow: "#965000" + brightBlue: "#4250EF" + brightMagenta: "#CF25AA" + brightCyan: "#3F6FAF" + brightWhite: "#F5F5FF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 98.4 + black: 98.4 + red: 67.1 + green: 70.8 + yellow: 74.4 + blue: 72.4 + magenta: 67.8 + cyan: 69.4 + white: 0 + brightBlack: 72.5 + brightRed: 66 + brightGreen: 68.6 + brightYellow: 74.4 + brightBlue: 72.7 + brightMagenta: 65.2 + brightCyan: 69.5 + brightWhite: 0 diff --git a/themes/ef-dream.yaml b/themes/ef-dream.yaml new file mode 100644 index 00000000..a0f59249 --- /dev/null +++ b/themes/ef-dream.yaml @@ -0,0 +1,49 @@ +name: "Ef Dream" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#232025" + fg: "#EFD5C5" + black: "#EFD5C5" + red: "#FF6F6F" + green: "#51B04F" + yellow: "#C0B24F" + blue: "#57B0FF" + magenta: "#FFAACF" + cyan: "#6FB3C0" + white: "#322F34" + brightBlack: "#8F8886" + brightRed: "#FF7A5F" + brightGreen: "#7FCE5F" + brightYellow: "#D09950" + brightBlue: "#80AADF" + brightMagenta: "#F498C0" + brightCyan: "#8FCFD0" + brightWhite: "#232025" +meta: + mode: "dark" + accent: "orange" + hue: 312 + contrast: + fg: 81.8 + black: 81.8 + red: 47.8 + green: 46.9 + yellow: 57.6 + blue: 54.4 + magenta: 68.2 + cyan: 53.3 + white: 0 + brightBlack: 37 + brightRed: 50.1 + brightGreen: 63.5 + brightYellow: 50.5 + brightBlue: 52.4 + brightMagenta: 59.6 + brightCyan: 68.6 + brightWhite: 0 diff --git a/themes/ef-duo-dark.yaml b/themes/ef-duo-dark.yaml new file mode 100644 index 00000000..ae0b13a8 --- /dev/null +++ b/themes/ef-duo-dark.yaml @@ -0,0 +1,49 @@ +name: "Ef Duo Dark" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#070019" + fg: "#D0D0D0" + black: "#D0D0D0" + red: "#EF656A" + green: "#1FA526" + yellow: "#C48702" + blue: "#379CF6" + magenta: "#D369AF" + cyan: "#5FAAEF" + white: "#1D1A26" + brightBlack: "#857F8F" + brightRed: "#F47360" + brightGreen: "#50A22F" + brightYellow: "#D0730F" + brightBlue: "#6F80FF" + brightMagenta: "#E580EA" + brightCyan: "#7FAFFF" + brightWhite: "#070019" +meta: + mode: "dark" + accent: "green" + hue: 294 + contrast: + fg: 78 + black: 78 + red: 44.2 + green: 42.5 + yellow: 44.2 + blue: 46.9 + magenta: 42 + cyan: 53.4 + white: 0 + brightBlack: 35.4 + brightRed: 48.3 + brightGreen: 42.7 + brightYellow: 40.4 + brightBlue: 40.6 + brightMagenta: 54.3 + brightCyan: 58.6 + brightWhite: 0 diff --git a/themes/ef-duo-light.yaml b/themes/ef-duo-light.yaml new file mode 100644 index 00000000..16bef7db --- /dev/null +++ b/themes/ef-duo-light.yaml @@ -0,0 +1,49 @@ +name: "Ef Duo Light" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#FFF8F0" + fg: "#222222" + black: "#222222" + red: "#CC3333" + green: "#217A3C" + yellow: "#8A5D00" + blue: "#375CD8" + magenta: "#BA35AF" + cyan: "#1F6FBF" + white: "#F6ECE8" + brightBlack: "#63728F" + brightRed: "#DD1100" + brightGreen: "#4A7D00" + brightYellow: "#9F4A00" + brightBlue: "#4250EF" + brightMagenta: "#CF25AA" + brightCyan: "#3F70A0" + brightWhite: "#FFF8F0" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 99.3 + black: 99.3 + red: 70.4 + green: 72.7 + yellow: 74.9 + blue: 74.3 + magenta: 69.7 + cyan: 71.3 + white: 0 + brightBlack: 70 + brightRed: 68.7 + brightGreen: 70.5 + brightYellow: 76.1 + brightBlue: 74.6 + brightMagenta: 67.1 + brightCyan: 72 + brightWhite: 0 diff --git a/themes/ef-eagle.yaml b/themes/ef-eagle.yaml new file mode 100644 index 00000000..24ced7a6 --- /dev/null +++ b/themes/ef-eagle.yaml @@ -0,0 +1,49 @@ +name: "Ef Eagle" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#F1ECD0" + fg: "#231A1F" + black: "#231A1F" + red: "#882000" + green: "#226022" + yellow: "#6B4500" + blue: "#113384" + magenta: "#822478" + cyan: "#125A7F" + white: "#E4DBC0" + brightBlack: "#685F53" + brightRed: "#9A0000" + brightGreen: "#3A7800" + brightYellow: "#843300" + brightBlue: "#3A3DA0" + brightMagenta: "#960F4F" + brightCyan: "#4A5D90" + brightWhite: "#F1ECD0" +meta: + mode: "light" + accent: "orange" + hue: 99 + contrast: + fg: 92.1 + black: 92.1 + red: 78.5 + green: 74.4 + yellow: 77.2 + blue: 84.1 + magenta: 76.5 + cyan: 74 + white: 0 + brightBlack: 69.5 + brightRed: 75.9 + brightGreen: 65 + brightYellow: 76.9 + brightBlue: 78.3 + brightMagenta: 75.6 + brightCyan: 70.2 + brightWhite: 0 diff --git a/themes/ef-elea-dark.yaml b/themes/ef-elea-dark.yaml new file mode 100644 index 00000000..ce57062a --- /dev/null +++ b/themes/ef-elea-dark.yaml @@ -0,0 +1,49 @@ +name: "Ef Elea Dark" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#222524" + fg: "#EAF2EF" + black: "#EAF2EF" + red: "#FF656A" + green: "#7FC87F" + yellow: "#CAC85F" + blue: "#57AFF6" + magenta: "#F59ACF" + cyan: "#6FCFD2" + white: "#303332" + brightBlack: "#969FAF" + brightRed: "#FF7A5F" + brightGreen: "#7FCA5A" + brightYellow: "#E0B02F" + brightBlue: "#78AFFF" + brightMagenta: "#FA90EA" + brightCyan: "#7FCFDF" + brightWhite: "#222524" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 95.3 + black: 95.3 + red: 45 + green: 60.8 + yellow: 67.8 + blue: 52.8 + magenta: 60.6 + cyan: 66 + white: 0 + brightBlack: 47.2 + brightRed: 49.6 + brightGreen: 61 + brightYellow: 60.6 + brightBlue: 55.3 + brightMagenta: 59.9 + brightCyan: 67.6 + brightWhite: 0 diff --git a/themes/ef-elea-light.yaml b/themes/ef-elea-light.yaml new file mode 100644 index 00000000..63ee14b0 --- /dev/null +++ b/themes/ef-elea-light.yaml @@ -0,0 +1,49 @@ +name: "Ef Elea Light" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#EDF5E2" + fg: "#221321" + black: "#221321" + red: "#C3303A" + green: "#00601F" + yellow: "#9A501F" + blue: "#375CC6" + magenta: "#80308F" + cyan: "#1F70AF" + white: "#E3E9D6" + brightBlack: "#676470" + brightRed: "#D00000" + brightGreen: "#355500" + brightYellow: "#B04300" + brightBlue: "#444FCF" + brightMagenta: "#9F356A" + brightCyan: "#3F6FAF" + brightWhite: "#EDF5E2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.8 + black: 96.8 + red: 68.4 + green: 78.7 + yellow: 71.5 + blue: 71.7 + magenta: 78.2 + cyan: 68 + white: 0 + brightBlack: 71.2 + brightRed: 67.9 + brightGreen: 81.5 + brightYellow: 70.1 + brightBlue: 73.7 + brightMagenta: 74 + brightCyan: 67.3 + brightWhite: 0 diff --git a/themes/ef-frost.yaml b/themes/ef-frost.yaml new file mode 100644 index 00000000..8be06083 --- /dev/null +++ b/themes/ef-frost.yaml @@ -0,0 +1,49 @@ +name: "Ef Frost" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#FCFFFF" + fg: "#232323" + black: "#232323" + red: "#C42D2F" + green: "#008A00" + yellow: "#AA6100" + blue: "#004FC0" + magenta: "#AA44C5" + cyan: "#1F6FBF" + white: "#EAEFEF" + brightBlack: "#66657F" + brightRed: "#D03003" + brightGreen: "#468400" + brightYellow: "#B6532F" + brightBlue: "#4244EF" + brightMagenta: "#C0469A" + brightCyan: "#3A6DD2" + brightWhite: "#FCFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 102.3 + black: 102.3 + red: 76 + green: 70.3 + yellow: 72.2 + blue: 84 + magenta: 72.4 + cyan: 74.6 + white: 0 + brightBlack: 77.8 + brightRed: 73.2 + brightGreen: 71.3 + brightYellow: 73.1 + brightBlue: 80.2 + brightMagenta: 70.6 + brightCyan: 73.1 + brightWhite: 0 diff --git a/themes/ef-kassio.yaml b/themes/ef-kassio.yaml new file mode 100644 index 00000000..2084812a --- /dev/null +++ b/themes/ef-kassio.yaml @@ -0,0 +1,49 @@ +name: "Ef Kassio" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#FFF7F7" + fg: "#201F36" + black: "#201F36" + red: "#B00234" + green: "#217A3C" + yellow: "#9A6012" + blue: "#3C3BBE" + magenta: "#A01F64" + cyan: "#2F5F9F" + white: "#EFE7E7" + brightBlack: "#776F79" + brightRed: "#E00033" + brightGreen: "#4A7D00" + brightYellow: "#B6530F" + brightBlue: "#4250EF" + brightMagenta: "#9F248A" + brightCyan: "#3F6FAF" + brightWhite: "#FFF7F7" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 99.2 + black: 99.2 + red: 78.8 + green: 72.6 + yellow: 71.6 + blue: 83.9 + magenta: 80.2 + cyan: 78 + white: 0 + brightBlack: 69.9 + brightRed: 67.8 + brightGreen: 70.4 + brightYellow: 69.9 + brightBlue: 74.4 + brightMagenta: 78.4 + brightCyan: 71.3 + brightWhite: 0 diff --git a/themes/ef-light.yaml b/themes/ef-light.yaml new file mode 100644 index 00000000..e8e31ae1 --- /dev/null +++ b/themes/ef-light.yaml @@ -0,0 +1,49 @@ +name: "Ef Light" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#FFFFFF" + fg: "#202020" + black: "#202020" + red: "#D3303A" + green: "#217A3C" + yellow: "#A45F22" + blue: "#3740CF" + magenta: "#BA35AF" + cyan: "#1F6FBF" + white: "#EFEFEF" + brightBlack: "#68759F" + brightRed: "#E00033" + brightGreen: "#4A7D00" + brightYellow: "#B6532F" + brightBlue: "#4250EF" + brightMagenta: "#CF25AA" + brightCyan: "#3F6FAF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 103.3 + black: 103.3 + red: 72.6 + green: 76.3 + yellow: 74 + blue: 85.3 + magenta: 73.3 + cyan: 75 + white: 0 + brightBlack: 71.5 + brightRed: 71.6 + brightGreen: 74.1 + brightYellow: 73.5 + brightBlue: 78.2 + brightMagenta: 70.7 + brightCyan: 75.1 + brightWhite: 0 diff --git a/themes/ef-maris-dark.yaml b/themes/ef-maris-dark.yaml new file mode 100644 index 00000000..9745d4df --- /dev/null +++ b/themes/ef-maris-dark.yaml @@ -0,0 +1,49 @@ +name: "Ef Maris Dark" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#131C2B" + fg: "#EAEDEF" + black: "#EAEDEF" + red: "#FF6F6F" + green: "#41BF4F" + yellow: "#D0D24F" + blue: "#57B0FF" + magenta: "#F59ACF" + cyan: "#2FD0DB" + white: "#1D2C39" + brightBlack: "#969FAF" + brightRed: "#FF7A5F" + brightGreen: "#7FCE5F" + brightYellow: "#F0C060" + brightBlue: "#70A0FF" + brightMagenta: "#FA90EA" + brightCyan: "#7FCFDF" + brightWhite: "#131C2B" +meta: + mode: "dark" + accent: "green" + hue: 260 + contrast: + fg: 94.2 + black: 94.2 + red: 48.5 + green: 53.8 + yellow: 73.9 + blue: 55.1 + magenta: 61.8 + cyan: 65.8 + white: 0 + brightBlack: 48.4 + brightRed: 50.8 + brightGreen: 64.2 + brightYellow: 71.2 + brightBlue: 50.2 + brightMagenta: 61.1 + brightCyan: 68.8 + brightWhite: 0 diff --git a/themes/ef-maris-light.yaml b/themes/ef-maris-light.yaml new file mode 100644 index 00000000..3b72c1e4 --- /dev/null +++ b/themes/ef-maris-light.yaml @@ -0,0 +1,49 @@ +name: "Ef Maris Light" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#EDF4F8" + fg: "#151A27" + black: "#151A27" + red: "#C3303A" + green: "#007010" + yellow: "#805A1F" + blue: "#375CC6" + magenta: "#80308F" + cyan: "#1F66AF" + white: "#E0E7EF" + brightBlack: "#676470" + brightRed: "#D00000" + brightGreen: "#3A6F00" + brightYellow: "#8B4400" + brightBlue: "#444FCF" + brightMagenta: "#9A3A6A" + brightCyan: "#305675" + brightWhite: "#EDF4F8" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97 + black: 97 + red: 68.9 + green: 73.5 + yellow: 73.4 + blue: 72.2 + magenta: 78.7 + cyan: 71.7 + white: 0 + brightBlack: 71.7 + brightRed: 68.3 + brightGreen: 72.8 + brightYellow: 77.1 + brightBlue: 74.1 + brightMagenta: 74.7 + brightCyan: 79.5 + brightWhite: 0 diff --git a/themes/ef-melissa-dark.yaml b/themes/ef-melissa-dark.yaml new file mode 100644 index 00000000..bc5eb3b7 --- /dev/null +++ b/themes/ef-melissa-dark.yaml @@ -0,0 +1,49 @@ +name: "Ef Melissa Dark" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#352718" + fg: "#E8E4B1" + black: "#E8E4B1" + red: "#FF7F7F" + green: "#6FD560" + yellow: "#E4B53F" + blue: "#57AFF6" + magenta: "#F0AAC5" + cyan: "#6FCAD0" + white: "#483426" + brightBlack: "#90918A" + brightRed: "#FF7F4F" + brightGreen: "#A0D13A" + brightYellow: "#FFA21F" + brightBlue: "#98BFFF" + brightMagenta: "#FA90AA" + brightCyan: "#7FC5DF" + brightWhite: "#352718" +meta: + mode: "dark" + accent: "green" + hue: 68 + contrast: + fg: 85.2 + black: 85.2 + red: 50.6 + green: 64.3 + yellow: 62.3 + blue: 51.8 + magenta: 63.6 + cyan: 62.6 + white: 0 + brightBlack: 38.9 + brightRed: 49.7 + brightGreen: 65.7 + brightYellow: 59.9 + brightBlue: 63.4 + brightMagenta: 55.8 + brightCyan: 62.1 + brightWhite: 0 diff --git a/themes/ef-melissa-light.yaml b/themes/ef-melissa-light.yaml new file mode 100644 index 00000000..0f37b518 --- /dev/null +++ b/themes/ef-melissa-light.yaml @@ -0,0 +1,49 @@ +name: "Ef Melissa Light" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#FFF6D8" + fg: "#484431" + black: "#484431" + red: "#BA2D2F" + green: "#007A0A" + yellow: "#A26310" + blue: "#375CC6" + magenta: "#AA3E74" + cyan: "#3F60AF" + white: "#F5E9CB" + brightBlack: "#68708A" + brightRed: "#C74400" + brightGreen: "#5A7400" + brightYellow: "#BA5205" + brightBlue: "#5F5FDF" + brightMagenta: "#B02F80" + brightCyan: "#4060A0" + brightWhite: "#FFF6D8" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 87.3 + black: 87.3 + red: 73.2 + green: 71.6 + yellow: 67.9 + blue: 74.1 + magenta: 72.6 + cyan: 74.3 + white: 0 + brightBlack: 68.7 + brightRed: 67.7 + brightGreen: 71 + brightYellow: 67.7 + brightBlue: 68.9 + brightMagenta: 72.9 + brightCyan: 75.3 + brightWhite: 0 diff --git a/themes/ef-night.yaml b/themes/ef-night.yaml new file mode 100644 index 00000000..f3c727c0 --- /dev/null +++ b/themes/ef-night.yaml @@ -0,0 +1,49 @@ +name: "Ef Night" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#000E17" + fg: "#AFBCBF" + black: "#AFBCBF" + red: "#EF656A" + green: "#1FA526" + yellow: "#C48502" + blue: "#379CF6" + magenta: "#D570AF" + cyan: "#4FB0CF" + white: "#1A202B" + brightBlack: "#70819F" + brightRed: "#F47360" + brightGreen: "#50A22F" + brightYellow: "#E6832F" + brightBlue: "#6A88FF" + brightMagenta: "#E580EA" + brightCyan: "#6FAFFF" + brightWhite: "#000E17" +meta: + mode: "dark" + accent: "green" + hue: 232 + contrast: + fg: 64.6 + black: 64.6 + red: 44 + green: 42.3 + yellow: 43.4 + blue: 46.7 + magenta: 43.8 + cyan: 53.1 + white: 0 + brightBlack: 34.6 + brightRed: 48.1 + brightGreen: 42.5 + brightYellow: 48.9 + brightBlue: 42.6 + brightMagenta: 54.1 + brightCyan: 57.2 + brightWhite: 0 diff --git a/themes/ef-owl.yaml b/themes/ef-owl.yaml new file mode 100644 index 00000000..fdb20d71 --- /dev/null +++ b/themes/ef-owl.yaml @@ -0,0 +1,49 @@ +name: "Ef Owl" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#292C2F" + fg: "#D0D0D0" + black: "#D0D0D0" + red: "#D67869" + green: "#70BB70" + yellow: "#C09F6F" + blue: "#80A4E0" + magenta: "#E5A0EA" + cyan: "#8FB8EA" + white: "#373B3D" + brightBlack: "#857F8F" + brightRed: "#DF885F" + brightGreen: "#98C06F" + brightYellow: "#D1A45F" + brightBlue: "#A0A0EF" + brightMagenta: "#D389AF" + brightCyan: "#99BFD0" + brightWhite: "#292C2F" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 73.9 + black: 73.9 + red: 39.8 + green: 52.2 + yellow: 48.9 + blue: 48.3 + magenta: 59.8 + cyan: 58.1 + white: 0 + brightBlack: 31.3 + brightRed: 45.9 + brightGreen: 57.6 + brightYellow: 53 + brightBlue: 50.7 + brightMagenta: 46.5 + brightCyan: 60.6 + brightWhite: 0 diff --git a/themes/ef-reverie.yaml b/themes/ef-reverie.yaml new file mode 100644 index 00000000..2a1589d4 --- /dev/null +++ b/themes/ef-reverie.yaml @@ -0,0 +1,49 @@ +name: "Ef Reverie" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#F3EDDF" + fg: "#4F204F" + black: "#4F204F" + red: "#BA2D2F" + green: "#007A0A" + yellow: "#87591F" + blue: "#375CC6" + magenta: "#9F4E74" + cyan: "#3060AF" + white: "#E5D6D4" + brightBlack: "#6F6877" + brightRed: "#B21F00" + brightGreen: "#5A7400" + brightYellow: "#A05900" + brightBlue: "#5059C0" + brightMagenta: "#A73080" + brightCyan: "#4F60A0" + brightWhite: "#F3EDDF" +meta: + mode: "light" + accent: "orange" + hue: 88 + contrast: + fg: 87.9 + black: 87.9 + red: 68.1 + green: 66.5 + yellow: 69.5 + blue: 69 + magenta: 66.6 + cyan: 69.8 + white: 9.3 + brightBlack: 66.2 + brightRed: 71.1 + brightGreen: 65.9 + brightYellow: 65.7 + brightBlue: 68.9 + brightMagenta: 69.5 + brightCyan: 69.3 + brightWhite: 0 diff --git a/themes/ef-rosa.yaml b/themes/ef-rosa.yaml new file mode 100644 index 00000000..6fbfd042 --- /dev/null +++ b/themes/ef-rosa.yaml @@ -0,0 +1,49 @@ +name: "Ef Rosa" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#322023" + fg: "#E4D3E1" + black: "#E4D3E1" + red: "#FF707F" + green: "#5FBB5F" + yellow: "#E4C53F" + blue: "#57AFF6" + magenta: "#FFB2D6" + cyan: "#5FC0DC" + white: "#432E32" + brightBlack: "#9D9D9D" + brightRed: "#FF7F5F" + brightGreen: "#8AD05A" + brightYellow: "#F2A85F" + brightBlue: "#78B2FF" + brightMagenta: "#F28FDF" + brightCyan: "#7FC5DF" + brightWhite: "#322023" +meta: + mode: "dark" + accent: "orange" + hue: 8 + contrast: + fg: 79.9 + black: 79.9 + red: 47.8 + green: 52.1 + yellow: 69.6 + blue: 52.7 + magenta: 70.7 + cyan: 58.7 + white: 0 + brightBlack: 46.3 + brightRed: 50.8 + brightGreen: 64.5 + brightYellow: 61.1 + brightBlue: 56.4 + brightMagenta: 57.4 + brightCyan: 63 + brightWhite: 0 diff --git a/themes/ef-spring.yaml b/themes/ef-spring.yaml new file mode 100644 index 00000000..04150e6e --- /dev/null +++ b/themes/ef-spring.yaml @@ -0,0 +1,49 @@ +name: "Ef Spring" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#F6FFF9" + fg: "#34494A" + black: "#34494A" + red: "#C42D2F" + green: "#1A870F" + yellow: "#A45F22" + blue: "#375CC6" + magenta: "#D5206F" + cyan: "#1F6FBF" + white: "#E8F0F0" + brightBlack: "#777294" + brightRed: "#D03003" + brightGreen: "#4A7D00" + brightYellow: "#B6540F" + brightBlue: "#5F5FDF" + brightMagenta: "#CB26A0" + brightCyan: "#3F6FAF" + brightWhite: "#F6FFF9" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 90.7 + black: 90.7 + red: 75 + green: 70.3 + yellow: 72.6 + blue: 78.1 + magenta: 70.8 + cyan: 73.6 + white: 0 + brightBlack: 70.2 + brightRed: 72.2 + brightGreen: 72.7 + brightYellow: 72.1 + brightBlue: 72.9 + brightMagenta: 70.7 + brightCyan: 73.7 + brightWhite: 0 diff --git a/themes/ef-summer.yaml b/themes/ef-summer.yaml new file mode 100644 index 00000000..e0478771 --- /dev/null +++ b/themes/ef-summer.yaml @@ -0,0 +1,49 @@ +name: "Ef Summer" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#FFF2F3" + fg: "#4F4073" + black: "#4F4073" + red: "#D3303A" + green: "#217A3C" + yellow: "#A45F22" + blue: "#375CE6" + magenta: "#BA35AF" + cyan: "#1F6FBF" + white: "#F2E4EA" + brightBlack: "#786E74" + brightRed: "#E00033" + brightGreen: "#4A7D00" + brightYellow: "#B6532F" + brightBlue: "#5250EF" + brightMagenta: "#CB1AAA" + brightCyan: "#3F6FAF" + brightWhite: "#FFF2F3" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 84.8 + black: 84.8 + red: 66.6 + green: 70.3 + yellow: 67.9 + blue: 70.7 + magenta: 67.3 + cyan: 68.9 + white: 0 + brightBlack: 68 + brightRed: 65.6 + brightGreen: 68.1 + brightYellow: 67.5 + brightBlue: 71.2 + brightMagenta: 66.1 + brightCyan: 69.1 + brightWhite: 0 diff --git a/themes/ef-symbiosis.yaml b/themes/ef-symbiosis.yaml new file mode 100644 index 00000000..ad908386 --- /dev/null +++ b/themes/ef-symbiosis.yaml @@ -0,0 +1,49 @@ +name: "Ef Symbiosis" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#130911" + fg: "#D0D0D0" + black: "#D0D0D0" + red: "#EF6360" + green: "#0FAA26" + yellow: "#BF9032" + blue: "#3F95F6" + magenta: "#D369AF" + cyan: "#4FBAEF" + white: "#221920" + brightBlack: "#857F8F" + brightRed: "#FF7355" + brightGreen: "#6AAD0F" + brightYellow: "#D1843F" + brightBlue: "#6A9FFF" + brightMagenta: "#E580EA" + brightCyan: "#6FAFFF" + brightWhite: "#130911" +meta: + mode: "dark" + accent: "green" + hue: 334 + contrast: + fg: 77.8 + black: 77.8 + red: 43.4 + green: 44.4 + yellow: 46.5 + blue: 44.3 + magenta: 41.8 + cyan: 59.2 + white: 0 + brightBlack: 35.2 + brightRed: 50.3 + brightGreen: 48.5 + brightYellow: 45.6 + brightBlue: 50.8 + brightMagenta: 54.1 + brightCyan: 57.3 + brightWhite: 0 diff --git a/themes/ef-trio-dark.yaml b/themes/ef-trio-dark.yaml new file mode 100644 index 00000000..3cb8bc34 --- /dev/null +++ b/themes/ef-trio-dark.yaml @@ -0,0 +1,49 @@ +name: "Ef Trio Dark" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#160F0F" + fg: "#D8CFD5" + black: "#D8CFD5" + red: "#F48359" + green: "#60B444" + yellow: "#D4A052" + blue: "#7FA5F6" + magenta: "#D37FAF" + cyan: "#8FBAFF" + white: "#2A2228" + brightBlack: "#908890" + brightRed: "#FF7560" + brightGreen: "#A0C27F" + brightYellow: "#EF926F" + brightBlue: "#8895FF" + brightMagenta: "#E772DF" + brightCyan: "#9AC2FF" + brightWhite: "#160F0F" +meta: + mode: "dark" + accent: "pink" + hue: 18 + contrast: + fg: 78.4 + black: 78.4 + red: 52 + green: 51.1 + yellow: 55.4 + blue: 53.7 + magenta: 47.3 + cyan: 63.9 + white: 0 + brightBlack: 39.3 + brightRed: 50.7 + brightGreen: 63.3 + brightYellow: 55.9 + brightBlue: 49.2 + brightMagenta: 50 + brightCyan: 68.2 + brightWhite: 0 diff --git a/themes/ef-trio-light.yaml b/themes/ef-trio-light.yaml new file mode 100644 index 00000000..01687485 --- /dev/null +++ b/themes/ef-trio-light.yaml @@ -0,0 +1,49 @@ +name: "Ef Trio Light" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#F8F5FF" + fg: "#4F3363" + black: "#4F3363" + red: "#C3303A" + green: "#057800" + yellow: "#A45F22" + blue: "#375CD6" + magenta: "#AD45BA" + cyan: "#1F6FBF" + white: "#EBE7F1" + brightBlack: "#786E74" + brightRed: "#D03033" + brightGreen: "#4F7D0F" + brightYellow: "#B8532F" + brightBlue: "#5165E4" + brightMagenta: "#C035AA" + brightCyan: "#3F6FAF" + brightWhite: "#F8F5FF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 89.2 + black: 89.2 + red: 71 + green: 72.6 + yellow: 68.8 + blue: 73 + magenta: 67.7 + cyan: 69.8 + white: 0 + brightBlack: 68.9 + brightRed: 68.2 + brightGreen: 68.7 + brightYellow: 68 + brightBlue: 68.1 + brightMagenta: 67.3 + brightCyan: 69.9 + brightWhite: 0 diff --git a/themes/ef-tritanopia-dark.yaml b/themes/ef-tritanopia-dark.yaml new file mode 100644 index 00000000..941b9016 --- /dev/null +++ b/themes/ef-tritanopia-dark.yaml @@ -0,0 +1,49 @@ +name: "Ef Tritanopia Dark" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#15050F" + fg: "#DFD0D5" + black: "#DFD0D5" + red: "#CF4F5F" + green: "#2FA526" + yellow: "#C48702" + blue: "#379CF6" + magenta: "#B0648F" + cyan: "#3FAFCF" + white: "#282026" + brightBlack: "#908890" + brightRed: "#DF4F4F" + brightGreen: "#64AA0F" + brightYellow: "#D0730F" + brightBlue: "#6A88FF" + brightMagenta: "#C560AA" + brightCyan: "#3F9AAF" + brightWhite: "#15050F" +meta: + mode: "dark" + accent: "green" + hue: 343 + contrast: + fg: 80.1 + black: 80.1 + red: 32.8 + green: 42.6 + yellow: 44.1 + blue: 46.7 + magenta: 33.2 + cyan: 52.2 + white: 0 + brightBlack: 39.5 + brightRed: 35.9 + brightGreen: 46.9 + brightYellow: 40.3 + brightBlue: 42.7 + brightMagenta: 37 + brightCyan: 41.9 + brightWhite: 0 diff --git a/themes/ef-tritanopia-light.yaml b/themes/ef-tritanopia-light.yaml new file mode 100644 index 00000000..319a2176 --- /dev/null +++ b/themes/ef-tritanopia-light.yaml @@ -0,0 +1,49 @@ +name: "Ef Tritanopia Light" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#FFF9F9" + fg: "#1A1A1A" + black: "#1A1A1A" + red: "#AA0010" + green: "#217A3C" + yellow: "#805D00" + blue: "#375CD8" + magenta: "#AA357F" + cyan: "#2070AF" + white: "#EFECEC" + brightBlack: "#756275" + brightRed: "#DD0000" + brightGreen: "#4A7D00" + brightYellow: "#965000" + brightBlue: "#4250EF" + brightMagenta: "#BF256A" + brightCyan: "#2F5FAF" + brightWhite: "#FFF9F9" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 101.5 + black: 101.5 + red: 81.4 + green: 73.5 + yellow: 77.1 + blue: 75.1 + magenta: 76 + cyan: 72.9 + white: 0 + brightBlack: 75.1 + brightRed: 69.7 + brightGreen: 71.3 + brightYellow: 77.1 + brightBlue: 75.4 + brightMagenta: 74.1 + brightCyan: 77.8 + brightWhite: 0 diff --git a/themes/ef-winter.yaml b/themes/ef-winter.yaml new file mode 100644 index 00000000..c21f95f3 --- /dev/null +++ b/themes/ef-winter.yaml @@ -0,0 +1,49 @@ +name: "Ef Winter" +source: + marketplace_id: "bzy-debug.ef-themes" + version: "0.0.4" + installs: 60 + author: "bzy-debug" + repo: "https://github.com/bzy-debug-orgnization/ef-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" +colors: + bg: "#0F0B15" + fg: "#B8C6D5" + black: "#B8C6D5" + red: "#F47359" + green: "#29A444" + yellow: "#B58A52" + blue: "#3F95F6" + magenta: "#D369AF" + cyan: "#4FBAEF" + white: "#1D202F" + brightBlack: "#807C9F" + brightRed: "#EF6560" + brightGreen: "#6AAD0F" + brightYellow: "#D1803F" + brightBlue: "#6A9FFF" + brightMagenta: "#E580E0" + brightCyan: "#6FAFDF" + brightWhite: "#0F0B15" +meta: + mode: "dark" + accent: "green" + hue: 302 + contrast: + fg: 70.9 + black: 70.9 + red: 48 + green: 42.3 + yellow: 43.3 + blue: 44.3 + magenta: 41.8 + cyan: 59.2 + white: 0 + brightBlack: 34.4 + brightRed: 43.8 + brightGreen: 48.5 + brightYellow: 44.4 + brightBlue: 50.8 + brightMagenta: 53.5 + brightCyan: 55.3 + brightWhite: 0 diff --git a/themes/eggsplo1t.yaml b/themes/eggsplo1t.yaml new file mode 100644 index 00000000..eb6e2828 --- /dev/null +++ b/themes/eggsplo1t.yaml @@ -0,0 +1,49 @@ +name: "EggsPlo1t" +source: + marketplace_id: "ExPlo1t-php.eggsplo1t" + version: "0.0.2" + installs: 308 + author: "ExPlo1t-php" + repo: "https://github.com/ExPlo1t-php/eggsplo1t-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ExPlo1t-php.eggsplo1t" +colors: + bg: "#0C070F" + fg: "#FFFFFF" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 313 + contrast: + fg: 107.8 + black: 0 + red: 64.3 + green: 91.7 + yellow: 96.6 + blue: 82.2 + magenta: 75.7 + cyan: 96.8 + white: 75.6 + brightBlack: 0 + brightRed: 52.6 + brightGreen: 87.7 + brightYellow: 91.4 + brightBlue: 63.1 + brightMagenta: 51.2 + brightCyan: 94.7 + brightWhite: 107.8 diff --git a/themes/eh-s-website-theme.yaml b/themes/eh-s-website-theme.yaml new file mode 100644 index 00000000..9ecf2103 --- /dev/null +++ b/themes/eh-s-website-theme.yaml @@ -0,0 +1,49 @@ +name: "Eh's Website Theme" +source: + marketplace_id: "gayeh.EhWebThemes" + version: "1.0.0" + installs: 6 + author: "Eh" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gayeh.EhWebThemes" +colors: + bg: "#EEE8D5" + fg: "#6F848A" + black: "#333333" + red: "#D32F2F" + green: "#5B8C3A" + yellow: "#F57F17" + blue: "#2B63A8" + magenta: "#8B4789" + cyan: "#0097A7" + white: "#AAAAAA" + brightBlack: "#333333" + brightRed: "#D32F2F" + brightGreen: "#5B8C3A" + brightYellow: "#F57F17" + brightBlue: "#2B63A8" + brightMagenta: "#8B4789" + brightCyan: "#0097A7" + brightWhite: "#AAAAAA" +meta: + mode: "light" + accent: "orange" + hue: 92 + contrast: + fg: 53.1 + black: 85.1 + red: 59.2 + green: 53.5 + yellow: 37.4 + blue: 66.4 + magenta: 67.2 + cyan: 48.4 + white: 32.2 + brightBlack: 85.1 + brightRed: 59.2 + brightGreen: 53.5 + brightYellow: 37.4 + brightBlue: 66.4 + brightMagenta: 67.2 + brightCyan: 48.4 + brightWhite: 32.2 diff --git a/themes/eidolon-alter.yaml b/themes/eidolon-alter.yaml new file mode 100644 index 00000000..cfe20b53 --- /dev/null +++ b/themes/eidolon-alter.yaml @@ -0,0 +1,49 @@ +name: "Eidolon Alter" +source: + marketplace_id: "eidolon.eidolon-theme" + version: "4.0.8" + installs: 110 + author: "Eurico Magalhães Neto" + repo: "https://github.com/Eurico77/eidolon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eidolon.eidolon-theme" +colors: + bg: "#12121F" + fg: "#DADDFF" + black: "#1D1D2F" + red: "#BD4277" + green: "#74D2B7" + yellow: "#E5DCA4" + blue: "#87BFF7" + magenta: "#9486E4" + cyan: "#9BE9F8" + white: "#D4D7FF" + brightBlack: "#4F5071" + brightRed: "#BF4A7F" + brightGreen: "#7ED7C0" + brightYellow: "#ECDFAC" + brightBlue: "#8FC8FA" + brightMagenta: "#9F95E9" + brightCyan: "#AAECF8" + brightWhite: "#DADDFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 86.6 + black: 0 + red: 27.4 + green: 68.6 + yellow: 83.9 + blue: 64.6 + magenta: 43.3 + cyan: 85.2 + white: 83.2 + brightBlack: 14.6 + brightRed: 29.3 + brightGreen: 71.9 + brightYellow: 86.4 + brightBlue: 69.3 + brightMagenta: 49.8 + brightCyan: 87.9 + brightWhite: 86.6 diff --git a/themes/eidolon-less-dark.yaml b/themes/eidolon-less-dark.yaml new file mode 100644 index 00000000..89c9a33f --- /dev/null +++ b/themes/eidolon-less-dark.yaml @@ -0,0 +1,49 @@ +name: "Eidolon Less Dark" +source: + marketplace_id: "eidolon.eidolon-theme" + version: "4.0.8" + installs: 110 + author: "Eurico Magalhães Neto" + repo: "https://github.com/Eurico77/eidolon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eidolon.eidolon-theme" +colors: + bg: "#1D1D2F" + fg: "#DADDFF" + black: "#222236" + red: "#BD4277" + green: "#74D2B7" + yellow: "#E5DCA4" + blue: "#87BFF7" + magenta: "#9486E4" + cyan: "#9BE9F8" + white: "#D4D7FF" + brightBlack: "#4F5071" + brightRed: "#BF4A7F" + brightGreen: "#7ED7C0" + brightYellow: "#ECDFAC" + brightBlue: "#8FC8FA" + brightMagenta: "#9F95E9" + brightCyan: "#AAECF8" + brightWhite: "#DADDFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 85.4 + black: 0 + red: 26.1 + green: 67.3 + yellow: 82.6 + blue: 63.4 + magenta: 42 + cyan: 83.9 + white: 82 + brightBlack: 13.3 + brightRed: 28 + brightGreen: 70.7 + brightYellow: 85.2 + brightBlue: 68 + brightMagenta: 48.6 + brightCyan: 86.7 + brightWhite: 85.4 diff --git a/themes/eigen-color-theme.yaml b/themes/eigen-color-theme.yaml new file mode 100644 index 00000000..b0c01643 --- /dev/null +++ b/themes/eigen-color-theme.yaml @@ -0,0 +1,49 @@ +name: "eigen-color-theme" +source: + marketplace_id: "eesov.eigengrau" + version: "0.0.3" + installs: 4121 + author: "Igor Sotsugov" + repo: "https://github.com/sotsugov/eigengrau" + url: "https://marketplace.visualstudio.com/items?itemName=eesov.eigengrau" +colors: + bg: "#16161D" + fg: "#D6DEEB" + black: "#16161D" + red: "#FF5555" + green: "#7FDBCA" + yellow: "#F1FA8C" + blue: "#16161D" + magenta: "#C792EA" + cyan: "#8BE9FD" + white: "#D6DEEB" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 85.2 + black: 0 + red: 43.4 + green: 74 + yellow: 98.6 + blue: 0 + magenta: 53.8 + cyan: 84 + white: 85.2 + brightBlack: 28.1 + brightRed: 48.9 + brightGreen: 89.1 + brightYellow: 103.6 + brightBlue: 66.1 + brightMagenta: 62.6 + brightCyan: 96.8 + brightWhite: 106.9 diff --git a/themes/ein.yaml b/themes/ein.yaml new file mode 100644 index 00000000..d5190a69 --- /dev/null +++ b/themes/ein.yaml @@ -0,0 +1,49 @@ +name: "Ein" +source: + marketplace_id: "eincher.ein" + version: "0.0.1" + installs: 23 + author: "eincher" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=eincher.ein" +colors: + bg: "#212529" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.7 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.8 + blue: 25.6 + magenta: 27.9 + cyan: 45.7 + white: 88.2 + brightBlack: 20.2 + brightRed: 36.7 + brightGreen: 61.7 + brightYellow: 93.8 + brightBlue: 38.2 + brightMagenta: 43.5 + brightCyan: 53.6 + brightWhite: 88.2 diff --git a/themes/eink.yaml b/themes/eink.yaml new file mode 100644 index 00000000..2ef0fbb2 --- /dev/null +++ b/themes/eink.yaml @@ -0,0 +1,49 @@ +name: "eink" +source: + marketplace_id: "henderjon.eink" + version: "0.0.5" + installs: 349 + author: "henderjon" + repo: "https://github.com/henderjon/eink" + url: "https://marketplace.visualstudio.com/items?itemName=henderjon.eink" +colors: + bg: "#F3F1EB" + fg: "#5F5F5E" + black: "#000000" + red: "#660000" + green: "#448C27" + yellow: "#AB6526" + blue: "#205988" + magenta: "#7A3E9D" + cyan: "#4B83CD" + white: "#5F5F5E" + brightBlack: "#75715E" + brightRed: "#660000" + brightGreen: "#448C27" + brightYellow: "#AB6526" + brightBlue: "#205988" + brightMagenta: "#7A3E9D" + brightCyan: "#4B83CD" + brightWhite: "#5F5F5E" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 73.5 + black: 97.7 + red: 89.5 + green: 60.2 + yellow: 62.9 + blue: 77 + magenta: 75.4 + cyan: 57.6 + white: 73.5 + brightBlack: 65.7 + brightRed: 89.5 + brightGreen: 60.2 + brightYellow: 62.9 + brightBlue: 77 + brightMagenta: 75.4 + brightCyan: 57.6 + brightWhite: 73.5 diff --git a/themes/ekim.yaml b/themes/ekim.yaml new file mode 100644 index 00000000..e4330ffc --- /dev/null +++ b/themes/ekim.yaml @@ -0,0 +1,49 @@ +name: "Ekim" +source: + marketplace_id: "mjpeppersdev.ekim" + version: "0.0.1" + installs: 57 + author: "mjpeppersdev" + repo: "https://github.com/MJPeppersdev/ekim-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mjpeppersdev.ekim" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D1D1D1" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 76.8 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 106 diff --git a/themes/eldar1984.yaml b/themes/eldar1984.yaml new file mode 100644 index 00000000..6ac429b6 --- /dev/null +++ b/themes/eldar1984.yaml @@ -0,0 +1,49 @@ +name: "Eldar1984" +source: + marketplace_id: "Eldar1984.eldar1984" + version: "1.0.1" + installs: 1501 + author: "Eldar1984" + repo: "https://github.com/eldare/Eldar1984_VSCodeColorTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Eldar1984.eldar1984" +colors: + bg: "#30303F" + fg: "#F0F0F8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 93 + black: 0 + red: 22.3 + green: 48.6 + yellow: 81.2 + blue: 23 + magenta: 25.3 + cyan: 43.1 + white: 85.6 + brightBlack: 17.6 + brightRed: 34.1 + brightGreen: 59.1 + brightYellow: 91.2 + brightBlue: 35.6 + brightMagenta: 40.9 + brightCyan: 51 + brightWhite: 85.6 diff --git a/themes/elderberry.yaml b/themes/elderberry.yaml new file mode 100644 index 00000000..f65def68 --- /dev/null +++ b/themes/elderberry.yaml @@ -0,0 +1,49 @@ +name: "Elderberry" +source: + marketplace_id: "IronGeek.vscode-theme-elderberry" + version: "0.2.0" + installs: 23 + author: "Jakka Prihatna" + repo: "https://github.com/IronGeek/vscode-theme-elderberry" + url: "https://marketplace.visualstudio.com/items?itemName=IronGeek.vscode-theme-elderberry" +colors: + bg: "#17182B" + fg: "#C6C8D1" + black: "#0F1117" + red: "#BD6980" + green: "#6DA565" + yellow: "#FBF39D" + blue: "#3F83A6" + magenta: "#A357B3" + cyan: "#7EC2D3" + white: "#C6C8D1" + brightBlack: "#13131D" + brightRed: "#D799B0" + brightGreen: "#AADA9A" + brightYellow: "#FDF9B5" + brightBlue: "#6EA1BC" + brightMagenta: "#CA8FDA" + brightCyan: "#8BD5E8" + brightWhite: "#E9EAEF" +meta: + mode: "dark" + accent: "pink" + hue: 281 + contrast: + fg: 72.1 + black: 0 + red: 34.9 + green: 45.1 + yellow: 96.7 + blue: 31.6 + magenta: 28.8 + cyan: 62.6 + white: 72.1 + brightBlack: 0 + brightRed: 55.2 + brightGreen: 75 + brightYellow: 100.5 + brightBlue: 46.6 + brightMagenta: 52 + brightCyan: 73.1 + brightWhite: 93 diff --git a/themes/eldritch-dark.yaml b/themes/eldritch-dark.yaml new file mode 100644 index 00000000..a02883d5 --- /dev/null +++ b/themes/eldritch-dark.yaml @@ -0,0 +1,49 @@ +name: "Eldritch Dark" +source: + marketplace_id: "Eldritch.eldritch" + version: "1.1.1" + installs: 1477 + author: "Eldritch" + repo: "https://github.com/eldritch-theme/eldritch" + url: "https://marketplace.visualstudio.com/items?itemName=Eldritch.eldritch" +colors: + bg: "#171928" + fg: "#EBFAFA" + black: "#21222C" + red: "#F9515D" + green: "#37F499" + yellow: "#E9F941" + blue: "#9071F4" + magenta: "#F265B5" + cyan: "#04D1F9" + white: "#EBFAFA" + brightBlack: "#7081D0" + brightRed: "#F16C75" + brightGreen: "#69F8B3" + brightYellow: "#F1FC79" + brightBlue: "#A48CF2" + brightMagenta: "#FD92CE" + brightCyan: "#66E4FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 101.2 + black: 0 + red: 41.1 + green: 81.5 + yellow: 95.6 + blue: 37.2 + magenta: 46.2 + cyan: 67.8 + white: 101.2 + brightBlack: 36.2 + brightRed: 45.2 + brightGreen: 85.9 + brightYellow: 98.8 + brightBlue: 47.3 + brightMagenta: 61 + brightCyan: 79.1 + brightWhite: 106.5 diff --git a/themes/eldritch.yaml b/themes/eldritch.yaml new file mode 100644 index 00000000..154d4e81 --- /dev/null +++ b/themes/eldritch.yaml @@ -0,0 +1,49 @@ +name: "Eldritch" +source: + marketplace_id: "Eldritch.eldritch" + version: "1.1.1" + installs: 1477 + author: "Eldritch" + repo: "https://github.com/eldritch-theme/eldritch" + url: "https://marketplace.visualstudio.com/items?itemName=Eldritch.eldritch" +colors: + bg: "#212337" + fg: "#EBFAFA" + black: "#21222C" + red: "#F9515D" + green: "#37F499" + yellow: "#E9F941" + blue: "#9071F4" + magenta: "#F265B5" + cyan: "#04D1F9" + white: "#EBFAFA" + brightBlack: "#7081D0" + brightRed: "#F16C75" + brightGreen: "#69F8B3" + brightYellow: "#F1FC79" + brightBlue: "#A48CF2" + brightMagenta: "#FD92CE" + brightCyan: "#66E4FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 99.7 + black: 0 + red: 39.6 + green: 80 + yellow: 94.1 + blue: 35.7 + magenta: 44.7 + cyan: 66.3 + white: 99.7 + brightBlack: 34.8 + brightRed: 43.7 + brightGreen: 84.4 + brightYellow: 97.3 + brightBlue: 45.9 + brightMagenta: 59.5 + brightCyan: 77.6 + brightWhite: 105 diff --git a/themes/electric-blue.yaml b/themes/electric-blue.yaml new file mode 100644 index 00000000..7567fb3b --- /dev/null +++ b/themes/electric-blue.yaml @@ -0,0 +1,49 @@ +name: "Electric Blue" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 358 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" +colors: + bg: "#0A0F1A" + fg: "#E0F0FF" + black: "#000000" + red: "#FF4080" + green: "#40FF80" + yellow: "#FFFF40" + blue: "#0080FF" + magenta: "#8040FF" + cyan: "#00BFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF6080" + brightGreen: "#60FF80" + brightYellow: "#FFFF60" + brightBlue: "#4080FF" + brightMagenta: "#A060FF" + brightCyan: "#40DFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 265 + contrast: + fg: 96.3 + black: 0 + red: 42 + green: 87.8 + yellow: 102.5 + blue: 36.7 + magenta: 27 + cyan: 61 + white: 107.5 + brightBlack: 22.6 + brightRed: 47 + brightGreen: 88.8 + brightYellow: 102.8 + brightBlue: 37.6 + brightMagenta: 36.8 + brightCyan: 76.4 + brightWhite: 107.5 diff --git a/themes/electric-dreams.yaml b/themes/electric-dreams.yaml new file mode 100644 index 00000000..3ef47344 --- /dev/null +++ b/themes/electric-dreams.yaml @@ -0,0 +1,49 @@ +name: "Electric Dreams" +source: + marketplace_id: "nylanalyn.electric-dreams-neon" + version: "1.0.0" + installs: 133 + author: "nylan cat" + repo: "https://github.com/nylanalyn/electric-dreams-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nylanalyn.electric-dreams-neon" +colors: + bg: "#0A0A0F" + fg: "#D0D0E0" + black: "#0A0A0F" + red: "#FF1744" + green: "#1DE9B6" + yellow: "#FF006E" + blue: "#9C27B0" + magenta: "#FF006E" + cyan: "#00D9FF" + white: "#D0D0E0" + brightBlack: "#4A4A6A" + brightRed: "#C41E3A" + brightGreen: "#00BFA5" + brightYellow: "#E91E63" + brightBlue: "#BB86FC" + brightMagenta: "#D81B60" + brightCyan: "#1DE9B6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 78.6 + black: 0 + red: 38 + green: 77.6 + yellow: 38.6 + blue: 21.6 + magenta: 38.6 + cyan: 73.1 + white: 78.6 + brightBlack: 12.9 + brightRed: 24.2 + brightGreen: 56.6 + brightYellow: 33.5 + brightBlue: 50.4 + brightMagenta: 29.3 + brightCyan: 77.6 + brightWhite: 107.7 diff --git a/themes/electric-labs.yaml b/themes/electric-labs.yaml new file mode 100644 index 00000000..e2afb642 --- /dev/null +++ b/themes/electric-labs.yaml @@ -0,0 +1,49 @@ +name: "electric labs" +source: + marketplace_id: "CybionLabs.electriclabs" + version: "0.8.0" + installs: 6 + author: "Cybion Labs" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CybionLabs.electriclabs" +colors: + bg: "#000000" + fg: "#00FF10" + black: "#0000FF" + red: "#0000FF" + green: "#0000FF" + yellow: "#0000FF" + blue: "#0000FF" + magenta: "#0000FF" + cyan: "#0000FF" + white: "#0000FF" + brightBlack: "#0000FF" + brightRed: "#0000FF" + brightGreen: "#0000FF" + brightYellow: "#0000FF" + brightBlue: "#0000FF" + brightMagenta: "#0000FF" + brightCyan: "#0000FF" + brightWhite: "#0000FF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 86.5 + black: 16.2 + red: 16.2 + green: 16.2 + yellow: 16.2 + blue: 16.2 + magenta: 16.2 + cyan: 16.2 + white: 16.2 + brightBlack: 16.2 + brightRed: 16.2 + brightGreen: 16.2 + brightYellow: 16.2 + brightBlue: 16.2 + brightMagenta: 16.2 + brightCyan: 16.2 + brightWhite: 16.2 diff --git a/themes/electric-night.yaml b/themes/electric-night.yaml new file mode 100644 index 00000000..d4c61f3c --- /dev/null +++ b/themes/electric-night.yaml @@ -0,0 +1,49 @@ +name: "Electric Night" +source: + marketplace_id: "nlarew.electric-night-theme" + version: "1.1.0" + installs: 20 + author: "nlarew" + repo: "https://github.com/nlarew/electric-night-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nlarew.electric-night-theme" +colors: + bg: "#101010" + fg: "#F0F0F0" + black: "#282A36" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#EFF0EB" + brightBlack: "#282A36" + brightRed: "#FF5C57" + brightGreen: "#5AF78E" + brightYellow: "#F3F99D" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 97.6 + black: 0 + red: 45.2 + green: 84.6 + yellow: 99.3 + blue: 66 + magenta: 51.5 + cyan: 87.6 + white: 97.2 + brightBlack: 0 + brightRed: 45.2 + brightGreen: 84.6 + brightYellow: 99.3 + brightBlue: 66 + brightMagenta: 51.5 + brightCyan: 87.6 + brightWhite: 97.2 diff --git a/themes/electric-sheep.yaml b/themes/electric-sheep.yaml new file mode 100644 index 00000000..30dcc6e8 --- /dev/null +++ b/themes/electric-sheep.yaml @@ -0,0 +1,49 @@ +name: "Electric Sheep" +source: + marketplace_id: "JMWeeks.electric-sheep" + version: "0.1.2" + installs: 224 + author: "JMWeeks" + repo: "https://github.com/cyanitol/Theme.VSCode.ElectricSheep" + url: "https://marketplace.visualstudio.com/items?itemName=JMWeeks.electric-sheep" +colors: + bg: "#012456" + fg: "#F5F5F5" + black: "#000000" + red: "#CD3131" + green: "#107C10" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: 258 + contrast: + fg: 97.8 + black: 0 + red: 24.2 + green: 22.1 + yellow: 40.4 + blue: 12.5 + magenta: 23.7 + cyan: 37.6 + white: 12.6 + brightBlack: 19.6 + brightRed: 24.2 + brightGreen: 57.9 + brightYellow: 57.8 + brightBlue: 12.5 + brightMagenta: 23.7 + brightCyan: 37.6 + brightWhite: 50.1 diff --git a/themes/electric-violet-fork.yaml b/themes/electric-violet-fork.yaml new file mode 100644 index 00000000..5ceb2f68 --- /dev/null +++ b/themes/electric-violet-fork.yaml @@ -0,0 +1,49 @@ +name: "Electric Violet - Fork" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29903 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" +colors: + bg: "#292C3F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + contrast: + fg: 76 + black: 0 + red: 23.2 + green: 49.5 + yellow: 82.1 + blue: 23.9 + magenta: 26.3 + cyan: 44.1 + white: 86.5 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.5 diff --git a/themes/electron-highlighter.yaml b/themes/electron-highlighter.yaml new file mode 100644 index 00000000..62af749c --- /dev/null +++ b/themes/electron-highlighter.yaml @@ -0,0 +1,49 @@ +name: "Electron Highlighter" +source: + marketplace_id: "drg.electron-highlighter-remake" + version: "1.4.0" + installs: 936 + author: "drg" + repo: "https://github.com/DrgOv/vscode-electron-highlighter" + url: "https://marketplace.visualstudio.com/items?itemName=drg.electron-highlighter-remake" +colors: + bg: "#181818" + fg: "#EFEFEF" + black: "#161616" + red: "#FF5874" + green: "#6AF699" + yellow: "#FFFA9E" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#4FF2F8" + white: "#99A3B8" + brightBlack: "#7992B4" + brightRed: "#FF5874" + brightGreen: "#6AF699" + brightYellow: "#FFFA9E" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#4FF2F8" + brightWhite: "#99A3B8" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 96.3 + black: 0 + red: 44.5 + green: 84.4 + yellow: 100.8 + blue: 55.8 + magenta: 53.6 + cyan: 85 + white: 51.1 + brightBlack: 41.6 + brightRed: 44.5 + brightGreen: 84.4 + brightYellow: 100.8 + brightBlue: 55.8 + brightMagenta: 53.6 + brightCyan: 85 + brightWhite: 51.1 diff --git a/themes/electron-vue.yaml b/themes/electron-vue.yaml new file mode 100644 index 00000000..88187c9c --- /dev/null +++ b/themes/electron-vue.yaml @@ -0,0 +1,49 @@ +name: "Electron vue" +source: + marketplace_id: "icao.electron-vue" + version: "3.2.0" + installs: 49016 + author: "icao" + repo: "https://github.com/icao/electron-vue" + url: "https://marketplace.visualstudio.com/items?itemName=icao.electron-vue" +colors: + bg: "#1B202C" + fg: "#BAC7E4" + black: "#1B202C" + red: "#FF4579" + green: "#6AF699" + yellow: "#FFFA9E" + blue: "#37C886" + magenta: "#C792EA" + cyan: "#00D9FF" + white: "#F8FAFD" + brightBlack: "#7992B4" + brightRed: "#FF4579" + brightGreen: "#6AF699" + brightYellow: "#FFFA9E" + brightBlue: "#37C886" + brightMagenta: "#C792EA" + brightCyan: "#00D9FF" + brightWhite: "#F8FAFD" +meta: + mode: "dark" + accent: "red" + hue: 267 + contrast: + fg: 70.4 + black: 0 + red: 40.7 + green: 83.4 + yellow: 99.8 + blue: 58.3 + magenta: 52.6 + cyan: 71.1 + white: 102.3 + brightBlack: 40.5 + brightRed: 40.7 + brightGreen: 83.4 + brightYellow: 99.8 + brightBlue: 58.3 + brightMagenta: 52.6 + brightCyan: 71.1 + brightWhite: 102.3 diff --git a/themes/electronic-moonlight-theme-borders.yaml b/themes/electronic-moonlight-theme-borders.yaml new file mode 100644 index 00000000..b8652ef3 --- /dev/null +++ b/themes/electronic-moonlight-theme-borders.yaml @@ -0,0 +1,49 @@ +name: "Electronic Moonlight Theme + borders" +source: + marketplace_id: "purpleblack.electronic-moonlight-theme-borders" + version: "0.5.0" + installs: 1356 + author: "purpleblack" + repo: "https://github.com/goodideagiver/electronic-moonlight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=purpleblack.electronic-moonlight-theme-borders" +colors: + bg: "#1D1F31" + fg: "#C8D3F5" + black: "#000000" + red: "#FF757F" + green: "#C3E88D" + yellow: "#FFC777" + blue: "#82AAFF" + magenta: "#FCA7EA" + cyan: "#86E1FC" + white: "#C8D3F5" + brightBlack: "#828BB8" + brightRed: "#FF757F" + brightGreen: "#C3E88D" + brightYellow: "#FFC777" + brightBlue: "#82AAFF" + brightMagenta: "#FCA7EA" + brightCyan: "#86E1FC" + brightWhite: "#C8D3F5" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 78 + black: 0 + red: 49.7 + green: 83 + yellow: 76.3 + blue: 54.7 + magenta: 68.1 + cyan: 78.6 + white: 78 + brightBlack: 39 + brightRed: 49.7 + brightGreen: 83 + brightYellow: 76.3 + brightBlue: 54.7 + brightMagenta: 68.1 + brightCyan: 78.6 + brightWhite: 78 diff --git a/themes/eleganceu.yaml b/themes/eleganceu.yaml new file mode 100644 index 00000000..b2c111f3 --- /dev/null +++ b/themes/eleganceu.yaml @@ -0,0 +1,49 @@ +name: "ELEGANCEu" +source: + marketplace_id: "ELEGANCEu.eleganceu-darkpurpletheme" + version: "0.0.2" + installs: 278 + author: "ELEGANCEu" + repo: "https://github.com/ELEGANCEu/temaDarkPurple" + url: "https://marketplace.visualstudio.com/items?itemName=ELEGANCEu.eleganceu-darkpurpletheme" +colors: + bg: "#0D0B0F" + fg: "#FF8F00" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 57.4 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/elegant-black.yaml b/themes/elegant-black.yaml new file mode 100644 index 00000000..38ffa7e6 --- /dev/null +++ b/themes/elegant-black.yaml @@ -0,0 +1,49 @@ +name: "Elegant Black" +source: + marketplace_id: "iamjazzar.elegant-black" + version: "0.1.2" + installs: 3038 + author: "iamjazzar" + repo: "https://github.com/iamjazzar/elegant-black" + url: "https://marketplace.visualstudio.com/items?itemName=iamjazzar.elegant-black" +colors: + bg: "#030C1B" + fg: "#FBE179" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 88.7 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/elegant-red.yaml b/themes/elegant-red.yaml new file mode 100644 index 00000000..002c2363 --- /dev/null +++ b/themes/elegant-red.yaml @@ -0,0 +1,49 @@ +name: "Elegant Red" +source: + marketplace_id: "hudadamar21.monokai-red-moon" + version: "1.0.0" + installs: 2317 + author: "hudadamar21" + repo: "https://themes.vscode.one/theme/hudadamar21/29medjnT" + url: "https://marketplace.visualstudio.com/items?itemName=hudadamar21.monokai-red-moon" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#868686" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#469DF1" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#74BCFF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 37.6 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 47.5 + magenta: 30.8 + cyan: 48.6 + white: 80.5 + brightBlack: 56.8 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 63.2 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/eleganterror404.yaml b/themes/eleganterror404.yaml new file mode 100644 index 00000000..d4e0ca22 --- /dev/null +++ b/themes/eleganterror404.yaml @@ -0,0 +1,49 @@ +name: "ElegantError404" +source: + marketplace_id: "JuanSantosError404.elegantthemeerror404" + version: "0.0.1" + installs: 229 + author: "JuanSantosError404" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JuanSantosError404.elegantthemeerror404" +colors: + bg: "#301F1F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 19 + contrast: + fg: 105.2 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 25.8 + magenta: 28.1 + cyan: 45.9 + white: 88.3 + brightBlack: 20.4 + brightRed: 36.9 + brightGreen: 61.9 + brightYellow: 94 + brightBlue: 38.3 + brightMagenta: 43.7 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/elementary.yaml b/themes/elementary.yaml new file mode 100644 index 00000000..c041211a --- /dev/null +++ b/themes/elementary.yaml @@ -0,0 +1,49 @@ +name: "Elementary" +source: + marketplace_id: "rdnlsmith.linux-themes" + version: "1.3.0" + installs: 41699 + author: "rdnlsmith" + repo: "https://github.com/rdnlsmith/vscode-arc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" +colors: + bg: "#FDF6E3" + fg: "#5E5E5E" + black: "#586E75" + red: "#CB4B16" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEEEEE" + brightBlack: "#073642" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#EC0048" + brightCyan: "#2AA198" + brightWhite: "#94A3A5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 76.9 + black: 71.6 + red: 65.8 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 0 + brightBlack: 93.7 + brightRed: 65.3 + brightGreen: 53.8 + brightYellow: 53.8 + brightBlue: 58.7 + brightMagenta: 63.2 + brightCyan: 53.1 + brightWhite: 45.7 diff --git a/themes/elementowl.yaml b/themes/elementowl.yaml new file mode 100644 index 00000000..35681350 --- /dev/null +++ b/themes/elementowl.yaml @@ -0,0 +1,49 @@ +name: "ElementOwl" +source: + marketplace_id: "dre1080.elementowl" + version: "0.1.2" + installs: 922 + author: "ando" + repo: "https://github.com/dre1080/elementowl-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dre1080.elementowl" +colors: + bg: "#FBFBFB" + fg: "#111111" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#EC0048" + cyan: "#2AA198" + white: "#94A3A5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#9BDB4D" + brightYellow: "#D48E15" + brightBlue: "#3689E6" + brightMagenta: "#D33682" + brightCyan: "#2AA198" + brightWhite: "#EEEEEE" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103 + black: 96.6 + red: 68.1 + green: 56.6 + yellow: 56.7 + blue: 61.5 + magenta: 66 + cyan: 55.9 + white: 48.6 + brightBlack: 74.4 + brightRed: 68.6 + brightGreen: 26.6 + brightYellow: 50.2 + brightBlue: 60.5 + brightMagenta: 67.9 + brightCyan: 55.9 + brightWhite: 0 diff --git a/themes/elements.yaml b/themes/elements.yaml new file mode 100644 index 00000000..4a8158ef --- /dev/null +++ b/themes/elements.yaml @@ -0,0 +1,49 @@ +name: "Elements" +source: + marketplace_id: "gordonhch.elements-vscode-theme" + version: "1.0.2" + installs: 6037 + author: "Gordon Ho" + repo: "https://github.com/gordonhch/elements-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=gordonhch.elements-vscode-theme" +colors: + bg: "#0E151B" + fg: "#D6DEEB" + black: "#011624" + red: "#EF5350" + green: "#22DA6E" + yellow: "#F6BB42" + blue: "#4245F6" + magenta: "#CC30BF" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#F6BB42" + brightMagenta: "#CC30BF" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 245 + contrast: + fg: 85.5 + black: 0 + red: 39.5 + green: 67.5 + yellow: 70.7 + blue: 21.4 + magenta: 31.6 + cyan: 59.9 + white: 107.1 + brightBlack: 15.8 + brightRed: 39.5 + brightGreen: 67.5 + brightYellow: 93.9 + brightBlue: 70.7 + brightMagenta: 31.6 + brightCyan: 74.2 + brightWhite: 107.1 diff --git a/themes/elf-dream.yaml b/themes/elf-dream.yaml new file mode 100644 index 00000000..2bdcf8a5 --- /dev/null +++ b/themes/elf-dream.yaml @@ -0,0 +1,49 @@ +name: "Elf Dream" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 80 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" +colors: + bg: "#E9F7ED" + fg: "#3A4D41" + black: "#3A4D41" + red: "#B93326" + green: "#3CC57B" + yellow: "#D59A3B" + blue: "#2D9BAF" + magenta: "#9D4EDD" + cyan: "#3A86FF" + white: "#E9F7ED" + brightBlack: "#5C6F68" + brightRed: "#E63946" + brightGreen: "#5A9367" + brightYellow: "#FFB703" + brightBlue: "#3A86FF" + brightMagenta: "#E07A5F" + brightCyan: "#00B4D8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 83.9 + black: 83.9 + red: 71.3 + green: 36.4 + yellow: 41.4 + blue: 52.8 + magenta: 64.4 + cyan: 54.9 + white: 0 + brightBlack: 69.7 + brightRed: 60.3 + brightGreen: 56.8 + brightYellow: 24.6 + brightBlue: 54.9 + brightMagenta: 48.7 + brightCyan: 40.9 + brightWhite: 0 diff --git a/themes/elhassan-neon-cyan.yaml b/themes/elhassan-neon-cyan.yaml new file mode 100644 index 00000000..e3aa38d1 --- /dev/null +++ b/themes/elhassan-neon-cyan.yaml @@ -0,0 +1,49 @@ +name: "Elhassan Neon Cyan" +source: + marketplace_id: "elhassan-dev.elhassan-neon-themes" + version: "1.1.2" + installs: 44 + author: "elhassan-dev" + repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" + url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" +colors: + bg: "#0D1B26" + fg: "#D0F0FF" + black: "#1A3D52" + red: "#FF0066" + green: "#00FF88" + yellow: "#FFFF00" + blue: "#00FFFF" + magenta: "#00DDFF" + cyan: "#00FFFF" + white: "#D0F0FF" + brightBlack: "#1A3D52" + brightRed: "#FF0066" + brightGreen: "#00FF88" + brightYellow: "#FFFF00" + brightBlue: "#00FFFF" + brightMagenta: "#00DDFF" + brightCyan: "#00FFFF" + brightWhite: "#D0F0FF" +meta: + mode: "dark" + accent: "red" + hue: 243 + contrast: + fg: 93.4 + black: 0 + red: 37.2 + green: 86.4 + yellow: 101.4 + blue: 90.8 + magenta: 73.8 + cyan: 90.8 + white: 93.4 + brightBlack: 0 + brightRed: 37.2 + brightGreen: 86.4 + brightYellow: 101.4 + brightBlue: 90.8 + brightMagenta: 73.8 + brightCyan: 90.8 + brightWhite: 93.4 diff --git a/themes/elhassan-neon-dark-professional.yaml b/themes/elhassan-neon-dark-professional.yaml new file mode 100644 index 00000000..3f1b126c --- /dev/null +++ b/themes/elhassan-neon-dark-professional.yaml @@ -0,0 +1,49 @@ +name: "Elhassan Neon Dark Professional" +source: + marketplace_id: "elhassan-dev.elhassan-neon-themes" + version: "1.1.2" + installs: 44 + author: "elhassan-dev" + repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" + url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" +colors: + bg: "#0F0F1E" + fg: "#E0E0FF" + black: "#1A1A2E" + red: "#FF006E" + green: "#00FF88" + yellow: "#FFBE0B" + blue: "#00D9FF" + magenta: "#B537F2" + cyan: "#00FFFF" + white: "#E0E0FF" + brightBlack: "#3D3D5C" + brightRed: "#FF3366" + brightGreen: "#33FF99" + brightYellow: "#FFCC00" + brightBlue: "#33DDFF" + brightMagenta: "#D946FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 283 + contrast: + fg: 88.9 + black: 0 + red: 38.3 + green: 87.3 + yellow: 73.5 + blue: 72.8 + magenta: 32.1 + cyan: 91.7 + white: 88.9 + brightBlack: 8 + brightRed: 39.9 + brightGreen: 88 + brightYellow: 79.1 + brightBlue: 75.1 + brightMagenta: 41.5 + brightCyan: 91.7 + brightWhite: 107.4 diff --git a/themes/elhassan-neon-light-professional.yaml b/themes/elhassan-neon-light-professional.yaml new file mode 100644 index 00000000..87b16d40 --- /dev/null +++ b/themes/elhassan-neon-light-professional.yaml @@ -0,0 +1,49 @@ +name: "Elhassan Neon Light Professional" +source: + marketplace_id: "elhassan-dev.elhassan-neon-themes" + version: "1.1.2" + installs: 44 + author: "elhassan-dev" + repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" + url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" +colors: + bg: "#FAFAFA" + fg: "#2D2D2D" + black: "#333333" + red: "#DD0066" + green: "#00AA44" + yellow: "#DD6600" + blue: "#0066CC" + magenta: "#9933CC" + cyan: "#00AAAA" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#DD0066" + brightGreen: "#00AA44" + brightYellow: "#DD6600" + brightBlue: "#0066CC" + brightMagenta: "#9933CC" + brightCyan: "#00AAAA" + brightWhite: "#CCCCCC" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 97.4 + black: 95.7 + red: 68.4 + green: 53.9 + yellow: 59 + blue: 74 + magenta: 74.3 + cyan: 51.2 + white: 24.3 + brightBlack: 95.7 + brightRed: 68.4 + brightGreen: 53.9 + brightYellow: 59 + brightBlue: 74 + brightMagenta: 74.3 + brightCyan: 51.2 + brightWhite: 24.3 diff --git a/themes/elhassan-neon-magenta.yaml b/themes/elhassan-neon-magenta.yaml new file mode 100644 index 00000000..6a70757c --- /dev/null +++ b/themes/elhassan-neon-magenta.yaml @@ -0,0 +1,49 @@ +name: "Elhassan Neon Magenta" +source: + marketplace_id: "elhassan-dev.elhassan-neon-themes" + version: "1.1.2" + installs: 44 + author: "elhassan-dev" + repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" + url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" +colors: + bg: "#1A0F2E" + fg: "#FFD0FF" + black: "#3D1A66" + red: "#FF1493" + green: "#00FF88" + yellow: "#FFD000" + blue: "#FF1493" + magenta: "#00FFCC" + cyan: "#00FFFF" + white: "#FFD0FF" + brightBlack: "#3D1A66" + brightRed: "#FF1493" + brightGreen: "#00FF88" + brightYellow: "#FFD000" + brightBlue: "#FF1493" + brightMagenta: "#00FFCC" + brightCyan: "#00FFFF" + brightWhite: "#FFD0FF" +meta: + mode: "dark" + accent: "red" + hue: 297 + contrast: + fg: 86.2 + black: 0 + red: 39.2 + green: 86.8 + yellow: 80.3 + blue: 39.2 + magenta: 88.9 + cyan: 91.2 + white: 86.2 + brightBlack: 0 + brightRed: 39.2 + brightGreen: 86.8 + brightYellow: 80.3 + brightBlue: 39.2 + brightMagenta: 88.9 + brightCyan: 91.2 + brightWhite: 86.2 diff --git a/themes/elhassan-neon-purple.yaml b/themes/elhassan-neon-purple.yaml new file mode 100644 index 00000000..f87b47a8 --- /dev/null +++ b/themes/elhassan-neon-purple.yaml @@ -0,0 +1,49 @@ +name: "Elhassan Neon Purple" +source: + marketplace_id: "elhassan-dev.elhassan-neon-themes" + version: "1.1.2" + installs: 44 + author: "elhassan-dev" + repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" + url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" +colors: + bg: "#1A0033" + fg: "#E6CCFF" + black: "#2D1A4D" + red: "#FF0099" + green: "#00FF99" + yellow: "#FFAA00" + blue: "#BB00FF" + magenta: "#FF99FF" + cyan: "#00FFFF" + white: "#E6CCFF" + brightBlack: "#2D1A4D" + brightRed: "#FF0099" + brightGreen: "#00FF99" + brightYellow: "#FFAA00" + brightBlue: "#BB00FF" + brightMagenta: "#FF99FF" + brightCyan: "#00FFFF" + brightWhite: "#E6CCFF" +meta: + mode: "dark" + accent: "magenta" + hue: 301 + contrast: + fg: 80.9 + black: 0 + red: 39.4 + green: 87.4 + yellow: 65.7 + blue: 31.5 + magenta: 66.8 + cyan: 91.4 + white: 80.9 + brightBlack: 0 + brightRed: 39.4 + brightGreen: 87.4 + brightYellow: 65.7 + brightBlue: 31.5 + brightMagenta: 66.8 + brightCyan: 91.4 + brightWhite: 80.9 diff --git a/themes/elixir-theme-no-italics-less-dark-2.yaml b/themes/elixir-theme-no-italics-less-dark-2.yaml new file mode 100644 index 00000000..453ebb84 --- /dev/null +++ b/themes/elixir-theme-no-italics-less-dark-2.yaml @@ -0,0 +1,49 @@ +name: "elixir-theme-no-italics-less-dark-2" +source: + marketplace_id: "maiquitome.elixir-theme" + version: "0.12.0" + installs: 9237 + author: "Maiqui Tomé" + repo: "https://github.com/maiquitome/vscode_elixir_theme" + url: "https://marketplace.visualstudio.com/items?itemName=maiquitome.elixir-theme" +colors: + bg: "#201B2D" + fg: "#8F93A2" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 296 + contrast: + fg: 42.4 + black: 0 + red: 42.8 + green: 83.4 + yellow: 78.1 + blue: 55.1 + magenta: 52.9 + cyan: 77.4 + white: 106.1 + brightBlack: 10.7 + brightRed: 42.8 + brightGreen: 83.4 + brightYellow: 78.1 + brightBlue: 55.1 + brightMagenta: 52.9 + brightCyan: 77.4 + brightWhite: 106.1 diff --git a/themes/elixir-theme-no-italics.yaml b/themes/elixir-theme-no-italics.yaml new file mode 100644 index 00000000..0a24767a --- /dev/null +++ b/themes/elixir-theme-no-italics.yaml @@ -0,0 +1,49 @@ +name: "elixir-theme-no-italics" +source: + marketplace_id: "maiquitome.elixir-theme" + version: "0.12.0" + installs: 9237 + author: "Maiqui Tomé" + repo: "https://github.com/maiquitome/vscode_elixir_theme" + url: "https://marketplace.visualstudio.com/items?itemName=maiquitome.elixir-theme" +colors: + bg: "#090B10" + fg: "#8F93A2" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 268 + contrast: + fg: 44.1 + black: 0 + red: 44.4 + green: 85 + yellow: 79.8 + blue: 56.7 + magenta: 54.6 + cyan: 79.1 + white: 107.7 + brightBlack: 12.3 + brightRed: 44.4 + brightGreen: 85 + brightYellow: 79.8 + brightBlue: 56.7 + brightMagenta: 54.6 + brightCyan: 79.1 + brightWhite: 107.7 diff --git a/themes/elly.yaml b/themes/elly.yaml new file mode 100644 index 00000000..6d26721e --- /dev/null +++ b/themes/elly.yaml @@ -0,0 +1,49 @@ +name: "elly" +source: + marketplace_id: "ulwlu.elly" + version: "1.0.4" + installs: 790 + author: "ulwlu" + repo: "https://github.com/ulwlu/elly-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ulwlu.elly" +colors: + bg: "#111A1F" + fg: "#9A9A9A" + black: "#111A1F" + red: "#8D7856" + green: "#798362" + yellow: "#9B9257" + blue: "#63768A" + magenta: "#738C9C" + cyan: "#6998B3" + white: "#9A9A9A" + brightBlack: "#868B8D" + brightRed: "#8D7856" + brightGreen: "#798362" + brightYellow: "#9B9257" + brightBlue: "#63768A" + brightMagenta: "#738C9C" + brightCyan: "#6998B3" + brightWhite: "#9A9A9A" +meta: + mode: "dark" + accent: "green" + hue: 233 + contrast: + fg: 46.5 + black: 0 + red: 31.2 + green: 33 + yellow: 41.8 + blue: 28 + magenta: 37.7 + cyan: 42.4 + white: 46.5 + brightBlack: 38.4 + brightRed: 31.2 + brightGreen: 33 + brightYellow: 41.8 + brightBlue: 28 + brightMagenta: 37.7 + brightCyan: 42.4 + brightWhite: 46.5 diff --git a/themes/elypink-dark-faded.yaml b/themes/elypink-dark-faded.yaml new file mode 100644 index 00000000..586b7690 --- /dev/null +++ b/themes/elypink-dark-faded.yaml @@ -0,0 +1,49 @@ +name: "Elypink Dark (Faded)" +source: + marketplace_id: "barineco.elypink-theme" + version: "0.6.0" + installs: 37 + author: "barineco" + repo: "https://github.com/barineco/elypink-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" +colors: + bg: "#2A2D30" + fg: "#98A8C6" + black: "#2D2D2D" + red: "#FF56AB" + green: "#00DD00" + yellow: "#F5C400" + blue: "#00BFFF" + magenta: "#F574FF" + cyan: "#00EFEF" + white: "#F8F8F8" + brightBlack: "#ECECEC" + brightRed: "#FF6AB5" + brightGreen: "#57FF57" + brightYellow: "#FEDB4E" + brightBlue: "#56D5FF" + brightMagenta: "#F788FF" + brightCyan: "#5DFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 50.4 + black: 0 + red: 42.8 + green: 64.4 + yellow: 70.3 + blue: 57 + magenta: 51.4 + cyan: 78.8 + white: 98.9 + brightBlack: 91.1 + brightRed: 47 + brightGreen: 83.8 + brightYellow: 81.8 + brightBlue: 68.4 + brightMagenta: 56.8 + brightCyan: 89.3 + brightWhite: 103.5 diff --git a/themes/elypink-dark.yaml b/themes/elypink-dark.yaml new file mode 100644 index 00000000..1ba1c933 --- /dev/null +++ b/themes/elypink-dark.yaml @@ -0,0 +1,49 @@ +name: "Elypink Dark" +source: + marketplace_id: "barineco.elypink-theme" + version: "0.6.0" + installs: 37 + author: "barineco" + repo: "https://github.com/barineco/elypink-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" +colors: + bg: "#302A2D" + fg: "#C698B6" + black: "#2D2D2D" + red: "#FF56AB" + green: "#00DD00" + yellow: "#F5C400" + blue: "#00BFFF" + magenta: "#F574FF" + cyan: "#00EFEF" + white: "#F8F8F8" + brightBlack: "#ECECEC" + brightRed: "#FF6AB5" + brightGreen: "#57FF57" + brightYellow: "#FEDB4E" + brightBlue: "#56D5FF" + brightMagenta: "#F788FF" + brightCyan: "#5DFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 346 + contrast: + fg: 49.7 + black: 0 + red: 43 + green: 64.6 + yellow: 70.5 + blue: 57.2 + magenta: 51.6 + cyan: 79 + white: 99.1 + brightBlack: 91.3 + brightRed: 47.2 + brightGreen: 84.1 + brightYellow: 82 + brightBlue: 68.6 + brightMagenta: 57 + brightCyan: 89.5 + brightWhite: 103.7 diff --git a/themes/elypink-light-diamond.yaml b/themes/elypink-light-diamond.yaml new file mode 100644 index 00000000..8703c9ef --- /dev/null +++ b/themes/elypink-light-diamond.yaml @@ -0,0 +1,49 @@ +name: "Elypink Light (Diamond)" +source: + marketplace_id: "barineco.elypink-theme" + version: "0.6.0" + installs: 37 + author: "barineco" + repo: "https://github.com/barineco/elypink-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" +colors: + bg: "#F9F3F8" + fg: "#8F8DB0" + black: "#2D2D2D" + red: "#FF72B9" + green: "#00DD00" + yellow: "#F5C400" + blue: "#00BFFF" + magenta: "#F78BFF" + cyan: "#00EFEF" + white: "#F8F8F8" + brightBlack: "#ECECEC" + brightRed: "#FF83C1" + brightGreen: "#73FF73" + brightYellow: "#FEE16B" + brightBlue: "#72DCFF" + brightMagenta: "#F89CFF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 52.8 + black: 94.2 + red: 42.5 + green: 27.7 + yellow: 22.1 + blue: 34.7 + magenta: 34.1 + cyan: 14.1 + white: 0 + brightBlack: 0 + brightRed: 38.1 + brightGreen: 7.8 + brightYellow: 8.4 + brightBlue: 19.5 + brightMagenta: 29.1 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/elypink-light-faded.yaml b/themes/elypink-light-faded.yaml new file mode 100644 index 00000000..76545413 --- /dev/null +++ b/themes/elypink-light-faded.yaml @@ -0,0 +1,49 @@ +name: "Elypink Light (Faded)" +source: + marketplace_id: "barineco.elypink-theme" + version: "0.6.0" + installs: 37 + author: "barineco" + repo: "https://github.com/barineco/elypink-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" +colors: + bg: "#EEF4F9" + fg: "#6D7687" + black: "#2D2D2D" + red: "#FF72B9" + green: "#00DD00" + yellow: "#F5C400" + blue: "#00BFFF" + magenta: "#F78BFF" + cyan: "#00EFEF" + white: "#F8F8F8" + brightBlack: "#ECECEC" + brightRed: "#FF83C1" + brightGreen: "#73FF73" + brightYellow: "#FEE16B" + brightBlue: "#72DCFF" + brightMagenta: "#F89CFF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 64.7 + black: 93.3 + red: 41.6 + green: 26.8 + yellow: 21.2 + blue: 33.8 + magenta: 33.2 + cyan: 13.2 + white: 0 + brightBlack: 0 + brightRed: 37.1 + brightGreen: 0 + brightYellow: 7.5 + brightBlue: 18.6 + brightMagenta: 28.2 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/elypink-light-spring.yaml b/themes/elypink-light-spring.yaml new file mode 100644 index 00000000..ecf717f9 --- /dev/null +++ b/themes/elypink-light-spring.yaml @@ -0,0 +1,49 @@ +name: "Elypink Light (Spring)" +source: + marketplace_id: "barineco.elypink-theme" + version: "0.6.0" + installs: 37 + author: "barineco" + repo: "https://github.com/barineco/elypink-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" +colors: + bg: "#FAEEF3" + fg: "#936B7D" + black: "#2D2D2D" + red: "#FF72B9" + green: "#00DD00" + yellow: "#F5C400" + blue: "#00BFFF" + magenta: "#F78BFF" + cyan: "#00EFEF" + white: "#F8F8F8" + brightBlack: "#ECECEC" + brightRed: "#FF83C1" + brightGreen: "#73FF73" + brightYellow: "#FEE16B" + brightBlue: "#72DCFF" + brightMagenta: "#F89CFF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 63 + black: 92 + red: 40.3 + green: 25.5 + yellow: 19.9 + blue: 32.5 + magenta: 31.9 + cyan: 11.9 + white: 0 + brightBlack: 0 + brightRed: 35.9 + brightGreen: 0 + brightYellow: 0 + brightBlue: 17.4 + brightMagenta: 27 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/elypink-light-summer.yaml b/themes/elypink-light-summer.yaml new file mode 100644 index 00000000..e3802594 --- /dev/null +++ b/themes/elypink-light-summer.yaml @@ -0,0 +1,49 @@ +name: "Elypink Light (Summer)" +source: + marketplace_id: "barineco.elypink-theme" + version: "0.6.0" + installs: 37 + author: "barineco" + repo: "https://github.com/barineco/elypink-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" +colors: + bg: "#F8EEF7" + fg: "#7A6BA4" + black: "#2D2D2D" + red: "#FF72B9" + green: "#00DD00" + yellow: "#F5C400" + blue: "#00BFFF" + magenta: "#F78BFF" + cyan: "#00EFEF" + white: "#F8F8F8" + brightBlack: "#ECECEC" + brightRed: "#FF83C1" + brightGreen: "#73FF73" + brightYellow: "#FEE16B" + brightBlue: "#72DCFF" + brightMagenta: "#F89CFF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 64.2 + black: 91.9 + red: 40.2 + green: 25.4 + yellow: 19.8 + blue: 32.4 + magenta: 31.9 + cyan: 11.8 + white: 0 + brightBlack: 0 + brightRed: 35.8 + brightGreen: 0 + brightYellow: 0 + brightBlue: 17.3 + brightMagenta: 26.9 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/elypink-light.yaml b/themes/elypink-light.yaml new file mode 100644 index 00000000..d6441be1 --- /dev/null +++ b/themes/elypink-light.yaml @@ -0,0 +1,49 @@ +name: "Elypink Light" +source: + marketplace_id: "barineco.elypink-theme" + version: "0.6.0" + installs: 37 + author: "barineco" + repo: "https://github.com/barineco/elypink-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" +colors: + bg: "#F9EEF3" + fg: "#876D7E" + black: "#2D2D2D" + red: "#FF72B9" + green: "#00DD00" + yellow: "#F5C400" + blue: "#00BFFF" + magenta: "#F78BFF" + cyan: "#00EFEF" + white: "#F8F8F8" + brightBlack: "#ECECEC" + brightRed: "#FF83C1" + brightGreen: "#73FF73" + brightYellow: "#FEE16B" + brightBlue: "#72DCFF" + brightMagenta: "#F89CFF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 63.8 + black: 91.9 + red: 40.2 + green: 25.4 + yellow: 19.8 + blue: 32.4 + magenta: 31.8 + cyan: 11.8 + white: 0 + brightBlack: 0 + brightRed: 35.8 + brightGreen: 0 + brightYellow: 0 + brightBlue: 17.2 + brightMagenta: 26.8 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/ember.yaml b/themes/ember.yaml new file mode 100644 index 00000000..ba05892b --- /dev/null +++ b/themes/ember.yaml @@ -0,0 +1,49 @@ +name: "Ember" +source: + marketplace_id: "jgibson.ember-color-theme" + version: "0.0.1" + installs: 718 + author: "jgibson" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jgibson.ember-color-theme" +colors: + bg: "#1F1F1F" + fg: "#D9D9D9" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 81.6 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/emberstone-dark-theme.yaml b/themes/emberstone-dark-theme.yaml new file mode 100644 index 00000000..f17feecc --- /dev/null +++ b/themes/emberstone-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Emberstone-dark-theme" +source: + marketplace_id: "Emberstonetheme.emberstone" + version: "0.0.6" + installs: 205 + author: "Emberstone theme" + repo: "https://github.com/Emberstone-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Emberstonetheme.emberstone" +colors: + bg: "#212536" + fg: "#F8EDDC" + black: "#00849A" + red: "#C84C53" + green: "#BAD761" + yellow: "#ECDA9C" + blue: "#D88349" + magenta: "#7FA39F" + cyan: "#A17AB5" + white: "#F8EDDC" + brightBlack: "#8AD9E9" + brightRed: "#EDB7BF" + brightGreen: "#BAD761" + brightYellow: "#ECDA9C" + brightBlue: "#D88349" + brightMagenta: "#A8E7D2" + brightCyan: "#D7C0E4" + brightWhite: "#E3E3E3" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 93.9 + black: 28.7 + red: 27.8 + green: 72.3 + yellow: 81.4 + blue: 43.8 + magenta: 45.7 + cyan: 35.9 + white: 93.9 + brightBlack: 73.2 + brightRed: 68.4 + brightGreen: 72.3 + brightYellow: 81.4 + brightBlue: 43.8 + brightMagenta: 81.2 + brightCyan: 70.2 + brightWhite: 86.7 diff --git a/themes/emberstone.yaml b/themes/emberstone.yaml new file mode 100644 index 00000000..ba1ca648 --- /dev/null +++ b/themes/emberstone.yaml @@ -0,0 +1,49 @@ +name: "Emberstone" +source: + marketplace_id: "dfmknz.emberstone-theme-vscode" + version: "0.1.1" + installs: 66 + author: "dfmknz" + repo: "https://github.com/dfmknz/emberstone-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dfmknz.emberstone-theme-vscode" +colors: + bg: "#28353E" + fg: "#FFD37C" + black: "#28353E" + red: "#BE8967" + green: "#FFD37C" + yellow: "#F8D079" + blue: "#FFD37C" + magenta: "#BFCDCD" + cyan: "#FFFFFF" + white: "#FFD37C" + brightBlack: "#FFD37C" + brightRed: "#BE8967" + brightGreen: "#FFFFFF" + brightYellow: "#F8D079" + brightBlue: "#FFFFFF" + brightMagenta: "#BFCDCD" + brightCyan: "#FFD37C" + brightWhite: "#FFD37C" +meta: + mode: "dark" + accent: "yellow" + hue: 239 + contrast: + fg: 77.6 + black: 0 + red: 39 + green: 77.6 + yellow: 75.2 + blue: 77.6 + magenta: 68.6 + cyan: 101.9 + white: 77.6 + brightBlack: 77.6 + brightRed: 39 + brightGreen: 101.9 + brightYellow: 75.2 + brightBlue: 101.9 + brightMagenta: 68.6 + brightCyan: 77.6 + brightWhite: 77.6 diff --git a/themes/emerald-fork.yaml b/themes/emerald-fork.yaml new file mode 100644 index 00000000..e910ad12 --- /dev/null +++ b/themes/emerald-fork.yaml @@ -0,0 +1,49 @@ +name: "EMERALD - Fork" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29903 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" +colors: + bg: "#1E1E1E" + fg: "#E4E4E4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 88.6 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/emerald-matrix.yaml b/themes/emerald-matrix.yaml new file mode 100644 index 00000000..d5a0d05f --- /dev/null +++ b/themes/emerald-matrix.yaml @@ -0,0 +1,49 @@ +name: "Emerald Matrix" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#001A1A" + fg: "#00F0A0" + black: "#001A1A" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#00F0A0" + brightBlack: "#004D3D" + brightRed: "#FF7A85" + brightGreen: "#D3F595" + brightYellow: "#FFD47F" + brightBlue: "#9DC3FF" + brightMagenta: "#D9A3F5" + brightCyan: "#9CE5FF" + brightWhite: "#00F99E" +meta: + mode: "dark" + accent: "red" + hue: 195 + contrast: + fg: 79.4 + black: 0 + red: 43.6 + green: 84.1 + yellow: 78.9 + blue: 55.9 + magenta: 53.7 + cyan: 78.2 + white: 79.4 + brightBlack: 9 + brightRed: 52.2 + brightGreen: 92.4 + brightYellow: 83 + brightBlue: 68.3 + brightMagenta: 62.7 + brightCyan: 83.4 + brightWhite: 84.1 diff --git a/themes/emerald.yaml b/themes/emerald.yaml new file mode 100644 index 00000000..2475a75b --- /dev/null +++ b/themes/emerald.yaml @@ -0,0 +1,49 @@ +name: "Emerald" +source: + marketplace_id: "zecuse.emerald-theme" + version: "1.0.2" + installs: 491 + author: "zecuse" + repo: "https://github.com/zecuse/emerald-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zecuse.emerald-theme" +colors: + bg: "#00281E" + fg: "#FFFFFF" + black: "#414141" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#8C8C8C" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 172 + contrast: + fg: 105.2 + black: 0 + red: 25.1 + green: 51.3 + yellow: 84 + blue: 25.8 + magenta: 28.1 + cyan: 45.9 + white: 88.4 + brightBlack: 37.9 + brightRed: 36.9 + brightGreen: 61.9 + brightYellow: 94 + brightBlue: 38.3 + brightMagenta: 43.7 + brightCyan: 53.7 + brightWhite: 105.2 diff --git a/themes/emeralds.yaml b/themes/emeralds.yaml new file mode 100644 index 00000000..5b76bbd1 --- /dev/null +++ b/themes/emeralds.yaml @@ -0,0 +1,49 @@ +name: "Emeralds" +source: + marketplace_id: "KelsonCarvalho.emerald-kc" + version: "2.0.0" + installs: 291 + author: "Kelson Carvalho" + repo: "https://github.com/NoslekCode/emeralds_Theme_VsCode" + url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.emerald-kc" +colors: + bg: "#212124" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.2 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.1 + magenta: 28.5 + cyan: 46.3 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.3 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/emi-theme.yaml b/themes/emi-theme.yaml new file mode 100644 index 00000000..36648313 --- /dev/null +++ b/themes/emi-theme.yaml @@ -0,0 +1,49 @@ +name: "Emi Theme" +source: + marketplace_id: "denianszz.emi-theme" + version: "0.0.5" + installs: 714 + author: "Denian" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=denianszz.emi-theme" +colors: + bg: "#141318" + fg: "#ADA52D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 295 + contrast: + fg: 51.2 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30.1 + cyan: 47.9 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.9 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/enchant-high-contrast.yaml b/themes/enchant-high-contrast.yaml new file mode 100644 index 00000000..fd3b3147 --- /dev/null +++ b/themes/enchant-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Enchant - High Contrast" +source: + marketplace_id: "Ansub.enchant" + version: "0.3.4" + installs: 1032 + author: "Ansub" + repo: "https://github.com/ansub/enchant" + url: "https://marketplace.visualstudio.com/items?itemName=Ansub.enchant" +colors: + bg: "#090909" + fg: "#DEE0EF" + black: "#090909" + red: "#EE8679" + green: "#5BA2D0" + yellow: "#A78BFA" + blue: "#94B8FF" + magenta: "#9CCFD8" + cyan: "#5BA2D0" + white: "#DEE0EF" + brightBlack: "#6B6D7C" + brightRed: "#EE8679" + brightGreen: "#5BA2D0" + brightYellow: "#A78BFA" + brightBlue: "#94B8FF" + brightMagenta: "#9CCFD8" + brightCyan: "#5BA2D0" + brightWhite: "#DEE0EF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 88.2 + black: 0 + red: 52.7 + green: 48.1 + yellow: 49.2 + blue: 63.9 + magenta: 72.2 + cyan: 48.1 + white: 88.2 + brightBlack: 26.3 + brightRed: 52.7 + brightGreen: 48.1 + brightYellow: 49.2 + brightBlue: 63.9 + brightMagenta: 72.2 + brightCyan: 48.1 + brightWhite: 88.2 diff --git a/themes/enchant.yaml b/themes/enchant.yaml new file mode 100644 index 00000000..2988f50a --- /dev/null +++ b/themes/enchant.yaml @@ -0,0 +1,49 @@ +name: "Enchant" +source: + marketplace_id: "Ansub.enchant" + version: "0.3.4" + installs: 1032 + author: "Ansub" + repo: "https://github.com/ansub/enchant" + url: "https://marketplace.visualstudio.com/items?itemName=Ansub.enchant" +colors: + bg: "#151515" + fg: "#DEE0EF" + black: "#151515" + red: "#EE8679" + green: "#5BA2D0" + yellow: "#A78BFA" + blue: "#94B8FF" + magenta: "#9CCFD8" + cyan: "#5BA2D0" + white: "#DEE0EF" + brightBlack: "#6B6D7C" + brightRed: "#EE8679" + brightGreen: "#5BA2D0" + brightYellow: "#A78BFA" + brightBlue: "#94B8FF" + brightMagenta: "#9CCFD8" + brightCyan: "#5BA2D0" + brightWhite: "#DEE0EF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 87.5 + black: 0 + red: 52 + green: 47.4 + yellow: 48.5 + blue: 63.2 + magenta: 71.5 + cyan: 47.4 + white: 87.5 + brightBlack: 25.6 + brightRed: 52 + brightGreen: 47.4 + brightYellow: 48.5 + brightBlue: 63.2 + brightMagenta: 71.5 + brightCyan: 47.4 + brightWhite: 87.5 diff --git a/themes/encom.yaml b/themes/encom.yaml new file mode 100644 index 00000000..cd3ba46f --- /dev/null +++ b/themes/encom.yaml @@ -0,0 +1,49 @@ +name: "ENCOM" +source: + marketplace_id: "emeraldio.encom" + version: "0.0.3" + installs: 677 + author: "emerald.io" + repo: "https://github.com/emeraldio/encom" + url: "https://marketplace.visualstudio.com/items?itemName=emeraldio.encom" +colors: + bg: "#000000" + fg: "#00A595" + black: "#000000" + red: "#9F0000" + green: "#008B00" + yellow: "#FFD000" + blue: "#0081FF" + magenta: "#BC00CA" + cyan: "#008B8B" + white: "#BBBBBB" + brightBlack: "#555555" + brightRed: "#FF0000" + brightGreen: "#00EE00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00CDCD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 44.7 + black: 0 + red: 15.5 + green: 31.4 + yellow: 81.3 + blue: 37.4 + magenta: 28.1 + cyan: 33.7 + white: 65.7 + brightBlack: 16.1 + brightRed: 37.5 + brightGreen: 77.5 + brightYellow: 102.7 + brightBlue: 16.2 + brightMagenta: 46.2 + brightCyan: 64.9 + brightWhite: 107.9 diff --git a/themes/end-color-theme.yaml b/themes/end-color-theme.yaml new file mode 100644 index 00000000..e5c9dc2c --- /dev/null +++ b/themes/end-color-theme.yaml @@ -0,0 +1,49 @@ +name: "End-color-theme" +source: + marketplace_id: "hzao.theme-end" + version: "0.3.0" + installs: 3155 + author: "hzao" + repo: "https://github.com/hezeao/theme-end" + url: "https://marketplace.visualstudio.com/items?itemName=hzao.theme-end" +colors: + bg: "#161616" + fg: "#F8EEFF" + black: "#161616" + red: "#FF1155" + green: "#AADD00" + yellow: "#EEEEAA" + blue: "#00DDFF" + magenta: "#E55FFF" + cyan: "#00CCBB" + white: "#D8CFDE" + brightBlack: "#363537" + brightRed: "#EE7722" + brightGreen: "#00CCBB" + brightYellow: "#EEEEAA" + brightBlue: "#00DDFF" + brightMagenta: "#E55FFF" + brightCyan: "#00CCBB" + brightWhite: "#F8EEFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 98.1 + black: 0 + red: 37.4 + green: 75 + yellow: 93.3 + blue: 74.2 + magenta: 47.4 + cyan: 62.7 + white: 78.4 + brightBlack: 0 + brightRed: 46.5 + brightGreen: 62.7 + brightYellow: 93.3 + brightBlue: 74.2 + brightMagenta: 47.4 + brightCyan: 62.7 + brightWhite: 98.1 diff --git a/themes/endeavouros-breeze-dark.yaml b/themes/endeavouros-breeze-dark.yaml new file mode 100644 index 00000000..cdf30521 --- /dev/null +++ b/themes/endeavouros-breeze-dark.yaml @@ -0,0 +1,49 @@ +name: "EndeavourOS Breeze Dark" +source: + marketplace_id: "jordojordo.endeavouros-dark" + version: "0.1.2" + installs: 271 + author: "Jordon Leach" + repo: "https://github.com/jordojordo/endeavouros-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jordojordo.endeavouros-dark" +colors: + bg: "#222529" + fg: "#E3E3EA" + black: "#222529" + red: "#FF7F7F" + green: "#27AE60" + yellow: "#F67400" + blue: "#7FBAFF" + magenta: "#CC3980" + cyan: "#7F3FBF" + white: "#E3E3EA" + brightBlack: "#EFF0F1" + brightRed: "#FF7F7F" + brightGreen: "#27AE60" + brightYellow: "#F67400" + brightBlue: "#7F7FFF" + brightMagenta: "#CC3980" + brightCyan: "#7F3FBF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 87.2 + black: 0 + red: 51.6 + green: 44.5 + yellow: 45.4 + blue: 60.3 + magenta: 27.3 + cyan: 18.5 + white: 87.2 + brightBlack: 95.1 + brightRed: 51.6 + brightGreen: 44.5 + brightYellow: 45.4 + brightBlue: 38.8 + brightMagenta: 27.3 + brightCyan: 18.5 + brightWhite: 105 diff --git a/themes/endeavouros-dark-high-contrast.yaml b/themes/endeavouros-dark-high-contrast.yaml new file mode 100644 index 00000000..cc1225cf --- /dev/null +++ b/themes/endeavouros-dark-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "EndeavourOS Dark High Contrast" +source: + marketplace_id: "jordojordo.endeavouros-dark" + version: "0.1.2" + installs: 271 + author: "Jordon Leach" + repo: "https://github.com/jordojordo/endeavouros-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jordojordo.endeavouros-dark" +colors: + bg: "#1B1C1E" + fg: "#FFFFFF" + black: "#1B1C1E" + red: "#FF7F7F" + green: "#27AE60" + yellow: "#F67400" + blue: "#7FBAFF" + magenta: "#CC3980" + cyan: "#7F3FBF" + white: "#FFFFFF" + brightBlack: "#B0B0B0" + brightRed: "#FF7F7F" + brightGreen: "#27AE60" + brightYellow: "#F67400" + brightBlue: "#7F7FFF" + brightMagenta: "#CC3980" + brightCyan: "#7F3FBF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 52.9 + green: 45.8 + yellow: 46.7 + blue: 61.6 + magenta: 28.6 + cyan: 19.8 + white: 106.3 + brightBlack: 58 + brightRed: 52.9 + brightGreen: 45.8 + brightYellow: 46.7 + brightBlue: 40.1 + brightMagenta: 28.6 + brightCyan: 19.8 + brightWhite: 106.3 diff --git a/themes/endeavouros-dark-night-shift.yaml b/themes/endeavouros-dark-night-shift.yaml new file mode 100644 index 00000000..c0effdd7 --- /dev/null +++ b/themes/endeavouros-dark-night-shift.yaml @@ -0,0 +1,49 @@ +name: "EndeavourOS Dark Night Shift" +source: + marketplace_id: "jordojordo.endeavouros-dark" + version: "0.1.2" + installs: 271 + author: "Jordon Leach" + repo: "https://github.com/jordojordo/endeavouros-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jordojordo.endeavouros-dark" +colors: + bg: "#1B1C1E" + fg: "#FFFFFF" + black: "#1B1C1E" + red: "#FF7F7F" + green: "#98C379" + yellow: "#F67400" + blue: "#7FBAFF" + magenta: "#CC3980" + cyan: "#7F3FBF" + white: "#FFFFFF" + brightBlack: "#B0B0B0" + brightRed: "#FF7F7F" + brightGreen: "#98C379" + brightYellow: "#F67400" + brightBlue: "#7F7FFF" + brightMagenta: "#CC3980" + brightCyan: "#7F3FBF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 52.9 + green: 61.7 + yellow: 46.7 + blue: 61.6 + magenta: 28.6 + cyan: 19.8 + white: 106.3 + brightBlack: 58 + brightRed: 52.9 + brightGreen: 61.7 + brightYellow: 46.7 + brightBlue: 40.1 + brightMagenta: 28.6 + brightCyan: 19.8 + brightWhite: 106.3 diff --git a/themes/endless-iris.yaml b/themes/endless-iris.yaml new file mode 100644 index 00000000..9295a9c0 --- /dev/null +++ b/themes/endless-iris.yaml @@ -0,0 +1,49 @@ +name: "Endless Iris" +source: + marketplace_id: "Dikroll.void-iris-theme" + version: "1.1.1" + installs: 141 + author: "Dikroll" + repo: "https://github.com/Dikroll/Void-Iris" + url: "https://marketplace.visualstudio.com/items?itemName=Dikroll.void-iris-theme" +colors: + bg: "#FFFFFF" + fg: "#031740" + black: "#021F59" + red: "#D9534F" + green: "#3999BF" + yellow: "#F0AD4E" + blue: "#3999BF" + magenta: "#3999BF" + cyan: "#3999BF" + white: "#031740" + brightBlack: "#021F59" + brightRed: "#D9534F" + brightGreen: "#3999BF" + brightYellow: "#F0AD4E" + brightBlue: "#3999BF" + brightMagenta: "#F2994B" + brightCyan: "#3999BF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 104 + black: 102.1 + red: 66.1 + green: 59.4 + yellow: 37.2 + blue: 59.4 + magenta: 59.4 + cyan: 59.4 + white: 104 + brightBlack: 102.1 + brightRed: 66.1 + brightGreen: 59.4 + brightYellow: 37.2 + brightBlue: 59.4 + brightMagenta: 43.6 + brightCyan: 59.4 + brightWhite: 0 diff --git a/themes/energy-red-colorblind-passion-alertness.yaml b/themes/energy-red-colorblind-passion-alertness.yaml new file mode 100644 index 00000000..f5f191d9 --- /dev/null +++ b/themes/energy-red-colorblind-passion-alertness.yaml @@ -0,0 +1,49 @@ +name: "Energy Red Colorblind - Passion & Alertness" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#1A0505" + fg: "#FFEBEE" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#D32F2F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "red" + hue: 23 + contrast: + fg: 97.5 + black: 0 + red: 38.4 + green: 48.3 + yellow: 93 + blue: 43.7 + magenta: 33.3 + cyan: 57.2 + white: 96.8 + brightBlack: 28.5 + brightRed: 43.5 + brightGreen: 82.7 + brightYellow: 102.4 + brightBlue: 41.2 + brightMagenta: 42.1 + brightCyan: 91.9 + brightWhite: 96.4 diff --git a/themes/energy-red-light-passion-alertness.yaml b/themes/energy-red-light-passion-alertness.yaml new file mode 100644 index 00000000..25a38350 --- /dev/null +++ b/themes/energy-red-light-passion-alertness.yaml @@ -0,0 +1,49 @@ +name: "Energy Red Light - Passion & Alertness" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#FFF5F5" + fg: "#1A0505" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#D32F2F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 100.9 + black: 94.8 + red: 58.3 + green: 48.6 + yellow: 0 + blue: 53 + magenta: 63.3 + cyan: 39.9 + white: 0 + brightBlack: 68.2 + brightRed: 53.2 + brightGreen: 15.7 + brightYellow: 0 + brightBlue: 55.5 + brightMagenta: 54.6 + brightCyan: 0 + brightWhite: 101.4 diff --git a/themes/enhanced-hubspot-theme.yaml b/themes/enhanced-hubspot-theme.yaml new file mode 100644 index 00000000..6a97a2b4 --- /dev/null +++ b/themes/enhanced-hubspot-theme.yaml @@ -0,0 +1,49 @@ +name: "Enhanced HubSpot Theme" +source: + marketplace_id: "NicolasMendes.enhanced-canvas-theme" + version: "2.2.2" + installs: 1553 + author: "Nicolas Mendes" + repo: "https://github.com/DreamDevourer/Enhanced-HubSpot-VScode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=NicolasMendes.enhanced-canvas-theme" +colors: + bg: "#2D3E50" + fg: "#FCFCFC" + black: "#191A4F" + red: "#F2547D" + green: "#00BDA5" + yellow: "#FF7A59" + blue: "#3794FF" + magenta: "#6A78D1" + cyan: "#11A8CD" + white: "#FCFCFC" + brightBlack: "#9F9F9F" + brightRed: "#F03264" + brightGreen: "#07DBC1" + brightYellow: "#F5C26B" + brightBlue: "#5CA5F9" + brightMagenta: "#929EE8" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: 250 + contrast: + fg: 97.2 + black: 0 + red: 33.5 + green: 47.1 + yellow: 43.6 + blue: 36 + magenta: 25.6 + cyan: 39.9 + white: 97.2 + brightBlack: 41.6 + brightRed: 28 + brightGreen: 62.4 + brightYellow: 65.9 + brightBlue: 43.4 + brightMagenta: 43.6 + brightCyan: 47.7 + brightWhite: 82.3 diff --git a/themes/enhanced-material-batman.yaml b/themes/enhanced-material-batman.yaml new file mode 100644 index 00000000..d0da44ca --- /dev/null +++ b/themes/enhanced-material-batman.yaml @@ -0,0 +1,49 @@ +name: "Enhanced Material - Batman" +source: + marketplace_id: "RonnyFX.enhanced-material-batman" + version: "0.0.1" + installs: 1039 + author: "RonnyFX" + repo: "https://github.com/ronnyf/enhanced-material-batman" + url: "https://marketplace.visualstudio.com/items?itemName=RonnyFX.enhanced-material-batman" +colors: + bg: "#23242D" + fg: "#B4B4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 58.9 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.8 + blue: 25.6 + magenta: 27.9 + cyan: 45.7 + white: 88.2 + brightBlack: 20.2 + brightRed: 36.7 + brightGreen: 61.7 + brightYellow: 93.8 + brightBlue: 38.2 + brightMagenta: 43.5 + brightCyan: 53.6 + brightWhite: 88.2 diff --git a/themes/enhanced-material-fork.yaml b/themes/enhanced-material-fork.yaml new file mode 100644 index 00000000..7a2f1618 --- /dev/null +++ b/themes/enhanced-material-fork.yaml @@ -0,0 +1,49 @@ +name: "Enhanced Material - Fork" +source: + marketplace_id: "Leak.leak-theme" + version: "0.0.0" + installs: 24 + author: "Leak" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Leak.leak-theme" +colors: + bg: "#191919" + fg: "#D9D2D2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/enhanced-material.yaml b/themes/enhanced-material.yaml new file mode 100644 index 00000000..45cd279c --- /dev/null +++ b/themes/enhanced-material.yaml @@ -0,0 +1,49 @@ +name: "Enhanced Material" +source: + marketplace_id: "aviksaikat.material-tweaked" + version: "0.0.1" + installs: 109 + author: "avik_saikat" + repo: "https://github.com/Aviksaikat/Vscode-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=aviksaikat.material-tweaked" +colors: + bg: "#292C3E" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + contrast: + fg: 103.4 + black: 0 + red: 23.3 + green: 49.5 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.6 diff --git a/themes/enki-night-owl.yaml b/themes/enki-night-owl.yaml new file mode 100644 index 00000000..03dc2238 --- /dev/null +++ b/themes/enki-night-owl.yaml @@ -0,0 +1,49 @@ +name: "Enki Night Owl" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3734 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#011627" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ADDB67" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#AFBAD4" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#AFBAD4" +meta: + mode: "dark" + accent: "teal" + hue: 244 + contrast: + fg: 85.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 75 + blue: 56 + magenta: 53.8 + cyan: 59.8 + white: 64.2 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 64.2 diff --git a/themes/enki-rainbow-bro.yaml b/themes/enki-rainbow-bro.yaml new file mode 100644 index 00000000..3304156a --- /dev/null +++ b/themes/enki-rainbow-bro.yaml @@ -0,0 +1,49 @@ +name: "Enki Rainbow Bro" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3734 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#19191F" + fg: "#9699A8" + black: "#595D78" + red: "#C33C4A" + green: "#0F8976" + yellow: "#CA9B55" + blue: "#50B4E6" + magenta: "#6D3B66" + cyan: "#7ED6F9" + white: "#707386" + brightBlack: "#595D78" + brightRed: "#C33C4A" + brightGreen: "#0F8976" + brightYellow: "#CA9B55" + brightBlue: "#6582AF" + brightMagenta: "#9D599D" + brightCyan: "#7ED6F9" + brightWhite: "#707386" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 46.2 + black: 18.6 + red: 25.9 + green: 31 + yellow: 51.4 + blue: 55.1 + magenta: 11.9 + cyan: 73.7 + white: 27.9 + brightBlack: 18.6 + brightRed: 25.9 + brightGreen: 31 + brightYellow: 51.4 + brightBlue: 33.9 + brightMagenta: 27.2 + brightCyan: 73.7 + brightWhite: 27.9 diff --git a/themes/enki-red.yaml b/themes/enki-red.yaml new file mode 100644 index 00000000..817b1b16 --- /dev/null +++ b/themes/enki-red.yaml @@ -0,0 +1,49 @@ +name: "Enki Red" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3734 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#19191F" + fg: "#9699A8" + black: "#787C99" + red: "#C33C4A" + green: "#0F8976" + yellow: "#CE9C3D" + blue: "#50B4E6" + magenta: "#6D3B66" + cyan: "#7ED6F9" + white: "#707386" + brightBlack: "#787C99" + brightRed: "#C33C4A" + brightGreen: "#0F8976" + brightYellow: "#CE9C3D" + brightBlue: "#6582AF" + brightMagenta: "#9D599D" + brightCyan: "#7ED6F9" + brightWhite: "#707386" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 46.2 + black: 32.3 + red: 25.9 + green: 31 + yellow: 52 + blue: 55.1 + magenta: 11.9 + cyan: 73.7 + white: 27.9 + brightBlack: 32.3 + brightRed: 25.9 + brightGreen: 31 + brightYellow: 52 + brightBlue: 33.9 + brightMagenta: 27.2 + brightCyan: 73.7 + brightWhite: 27.9 diff --git a/themes/enki.yaml b/themes/enki.yaml new file mode 100644 index 00000000..20c1a28a --- /dev/null +++ b/themes/enki.yaml @@ -0,0 +1,49 @@ +name: "Enki" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3734 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#19191F" + fg: "#9699A8" + black: "#595D78" + red: "#C33C4A" + green: "#0F8976" + yellow: "#CE9C3D" + blue: "#50B4E6" + magenta: "#6D3B66" + cyan: "#7ED6F9" + white: "#707386" + brightBlack: "#595D78" + brightRed: "#C33C4A" + brightGreen: "#0F8976" + brightYellow: "#CE9C3D" + brightBlue: "#6582AF" + brightMagenta: "#9D599D" + brightCyan: "#7ED6F9" + brightWhite: "#707386" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 46.2 + black: 18.6 + red: 25.9 + green: 31 + yellow: 52 + blue: 55.1 + magenta: 11.9 + cyan: 73.7 + white: 27.9 + brightBlack: 18.6 + brightRed: 25.9 + brightGreen: 31 + brightYellow: 52 + brightBlue: 33.9 + brightMagenta: 27.2 + brightCyan: 73.7 + brightWhite: 27.9 diff --git a/themes/enough.yaml b/themes/enough.yaml new file mode 100644 index 00000000..56eb5e8c --- /dev/null +++ b/themes/enough.yaml @@ -0,0 +1,49 @@ +name: "Enough" +source: + marketplace_id: "marcusolsson.enough-visual-studio-code" + version: "1.0.0" + installs: 886 + author: "Marcus Olsson" + repo: "https://github.com/marcusolsson/vscode-theme-enough" + url: "https://marketplace.visualstudio.com/items?itemName=marcusolsson.enough-visual-studio-code" +colors: + bg: "#1E1E1E" + fg: "#FFFFFF" + black: "#1E1E1E" + red: "#CC6666" + green: "#B5BD68" + yellow: "#F0C674" + blue: "#81A2BE" + magenta: "#B294BB" + cyan: "#8ABEB7" + white: "#FFFFFF" + brightBlack: "#1E1E1E" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#F0C674" + brightBlue: "#81A2BE" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 106 + black: 0 + red: 35.6 + green: 61.6 + yellow: 73.8 + blue: 48 + magenta: 48.1 + cyan: 60 + white: 106 + brightBlack: 0 + brightRed: 35.6 + brightGreen: 61.6 + brightYellow: 73.8 + brightBlue: 48 + brightMagenta: 48.1 + brightCyan: 60 + brightWhite: 106 diff --git a/themes/enova.yaml b/themes/enova.yaml new file mode 100644 index 00000000..99af8291 --- /dev/null +++ b/themes/enova.yaml @@ -0,0 +1,49 @@ +name: "Enova" +source: + marketplace_id: "shekhars0940054.enova" + version: "0.0.1" + installs: 116 + author: "shekhars0940054" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=shekhars0940054.enova" +colors: + bg: "#1B1919" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.2 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.8 diff --git a/themes/entardecer.yaml b/themes/entardecer.yaml new file mode 100644 index 00000000..d64b1956 --- /dev/null +++ b/themes/entardecer.yaml @@ -0,0 +1,49 @@ +name: "Entardecer" +source: + marketplace_id: "GustavoLimadaSilva.Tardezinha-Light-Theme" + version: "0.0.1" + installs: 19 + author: "Gustavo Lima da Silva" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GustavoLimadaSilva.Tardezinha-Light-Theme" +colors: + bg: "#FEEEC7" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 96.6 + black: 96.6 + red: 64.5 + green: 39.8 + yellow: 48.4 + blue: 76.6 + magenta: 65.1 + cyan: 51.1 + white: 76.5 + brightBlack: 69.3 + brightRed: 64.5 + brightGreen: 31.4 + brightYellow: 31.5 + brightBlue: 76.6 + brightMagenta: 65.1 + brightCyan: 51.1 + brightWhite: 39 diff --git a/themes/entropic-theme.yaml b/themes/entropic-theme.yaml new file mode 100644 index 00000000..54b8c255 --- /dev/null +++ b/themes/entropic-theme.yaml @@ -0,0 +1,49 @@ +name: "Entropic Theme" +source: + marketplace_id: "entropic-soft.entropic-theme" + version: "1.0.3" + installs: 174 + author: "Entropic Software" + repo: "https://github.com/entropic-software/entropic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=entropic-soft.entropic-theme" +colors: + bg: "#101010" + fg: "#D4D4D4" + black: "#565656" + red: "#BD0249" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#828282" + brightRed: "#FF0262" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 80.1 + black: 16.1 + red: 22 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 35.3 + brightRed: 38 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/eon-react.yaml b/themes/eon-react.yaml new file mode 100644 index 00000000..adca95ff --- /dev/null +++ b/themes/eon-react.yaml @@ -0,0 +1,49 @@ +name: "Eon React" +source: + marketplace_id: "Mrkumar.Eon-theme" + version: "1.2.6" + installs: 447 + author: "Mr.kumar" + repo: "https://github.com/Cod-Kumar/Cod-kumar-vs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Mrkumar.Eon-theme" +colors: + bg: "#111113" + fg: "#A7ACCA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F4F4F4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#D9D9D9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 57.6 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48 + white: 100.1 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 83 diff --git a/themes/eon-theme-second.yaml b/themes/eon-theme-second.yaml new file mode 100644 index 00000000..e1e46d65 --- /dev/null +++ b/themes/eon-theme-second.yaml @@ -0,0 +1,49 @@ +name: "Eon Theme Second" +source: + marketplace_id: "Mrkumar.Eon-theme" + version: "1.2.6" + installs: 447 + author: "Mr.kumar" + repo: "https://github.com/Cod-Kumar/Cod-kumar-vs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Mrkumar.Eon-theme" +colors: + bg: "#0A141D" + fg: "#E5E6EB" + black: "#000000" + red: "#CD3131" + green: "#D66210" + yellow: "#D8BF30" + blue: "#2472C8" + magenta: "#9858FF" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#6B7D97" + brightRed: "#F14C4C" + brightGreen: "#D17D23" + brightYellow: "#FF7B2E" + brightBlue: "#3B8EEA" + brightMagenta: "#9858FF" + brightCyan: "#29B8DB" + brightWhite: "#CDCDCD" +meta: + mode: "dark" + accent: "magenta" + hue: 247 + contrast: + fg: 91.1 + black: 0 + red: 27 + green: 36.7 + yellow: 67.5 + blue: 27.7 + magenta: 33.8 + cyan: 47.9 + white: 107.2 + brightBlack: 32 + brightRed: 38.9 + brightGreen: 42.9 + brightYellow: 51.4 + brightBlue: 40.3 + brightMagenta: 33.8 + brightCyan: 55.7 + brightWhite: 75.6 diff --git a/themes/eon-theme-v4.yaml b/themes/eon-theme-v4.yaml new file mode 100644 index 00000000..d3daba80 --- /dev/null +++ b/themes/eon-theme-v4.yaml @@ -0,0 +1,49 @@ +name: "Eon Theme v4" +source: + marketplace_id: "Mrkumar.Eon-theme" + version: "1.2.6" + installs: 447 + author: "Mr.kumar" + repo: "https://github.com/Cod-Kumar/Cod-kumar-vs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Mrkumar.Eon-theme" +colors: + bg: "#0B1721" + fg: "#E5E6EB" + black: "#000000" + red: "#CD3131" + green: "#D66210" + yellow: "#D8BF30" + blue: "#2472C8" + magenta: "#9858FF" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#6B7D97" + brightRed: "#F14C4C" + brightGreen: "#D17D23" + brightYellow: "#FF7B2E" + brightBlue: "#3B8EEA" + brightMagenta: "#9858FF" + brightCyan: "#29B8DB" + brightWhite: "#CDCDCD" +meta: + mode: "dark" + accent: "magenta" + hue: 245 + contrast: + fg: 90.8 + black: 0 + red: 26.8 + green: 36.5 + yellow: 67.3 + blue: 27.5 + magenta: 33.6 + cyan: 47.6 + white: 106.9 + brightBlack: 31.8 + brightRed: 38.6 + brightGreen: 42.6 + brightYellow: 51.1 + brightBlue: 40.1 + brightMagenta: 33.6 + brightCyan: 55.5 + brightWhite: 75.3 diff --git a/themes/eon-theme.yaml b/themes/eon-theme.yaml new file mode 100644 index 00000000..839c0ad7 --- /dev/null +++ b/themes/eon-theme.yaml @@ -0,0 +1,49 @@ +name: "Eon Theme" +source: + marketplace_id: "Mrkumar.Eon-theme" + version: "1.2.6" + installs: 447 + author: "Mr.kumar" + repo: "https://github.com/Cod-Kumar/Cod-kumar-vs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Mrkumar.Eon-theme" +colors: + bg: "#0A141D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#D66210" + yellow: "#D8BF30" + blue: "#2472C8" + magenta: "#9858FF" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#6B7D97" + brightRed: "#F14C4C" + brightGreen: "#D17D23" + brightYellow: "#FF7B2E" + brightBlue: "#3B8EEA" + brightMagenta: "#9858FF" + brightCyan: "#29B8DB" + brightWhite: "#CDCDCD" +meta: + mode: "dark" + accent: "magenta" + hue: 247 + contrast: + fg: 79.8 + black: 0 + red: 27 + green: 36.7 + yellow: 67.5 + blue: 27.7 + magenta: 33.8 + cyan: 47.9 + white: 107.2 + brightBlack: 32 + brightRed: 38.9 + brightGreen: 42.9 + brightYellow: 51.4 + brightBlue: 40.3 + brightMagenta: 33.8 + brightCyan: 55.7 + brightWhite: 75.6 diff --git a/themes/epsilon.yaml b/themes/epsilon.yaml new file mode 100644 index 00000000..861fc7c5 --- /dev/null +++ b/themes/epsilon.yaml @@ -0,0 +1,49 @@ +name: "Epsilon" +source: + marketplace_id: "mzafram2001.epsilon" + version: "0.0.18" + installs: 69 + author: "mzafram2001" + repo: "https://github.com/mzafram2001/Epsilon" + url: "https://marketplace.visualstudio.com/items?itemName=mzafram2001.epsilon" +colors: + bg: "#1F2023" + fg: "#BCB28D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EEEEEE" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 58.5 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.3 + magenta: 28.6 + cyan: 46.4 + white: 94.6 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 105.8 diff --git a/themes/equinox-dark.yaml b/themes/equinox-dark.yaml new file mode 100644 index 00000000..52e74305 --- /dev/null +++ b/themes/equinox-dark.yaml @@ -0,0 +1,49 @@ +name: "Equinox Dark" +source: + marketplace_id: "xAlvzx.equinox-theme" + version: "1.0.4" + installs: 45 + author: "xAlvzx" + repo: "https://github.com/xAlvzx/equinox-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xAlvzx.equinox-theme" +colors: + bg: "#323234" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 54.8 + black: 0 + red: 32.1 + green: 55.7 + yellow: 44 + blue: 45 + magenta: 34.4 + cyan: 47.9 + white: 78.4 + brightBlack: 10.8 + brightRed: 41.4 + brightGreen: 72.1 + brightYellow: 56.6 + brightBlue: 59.1 + brightMagenta: 45.6 + brightCyan: 63.2 + brightWhite: 86 diff --git a/themes/equinox-light.yaml b/themes/equinox-light.yaml new file mode 100644 index 00000000..7c97a2ba --- /dev/null +++ b/themes/equinox-light.yaml @@ -0,0 +1,49 @@ +name: "Equinox Light" +source: + marketplace_id: "xAlvzx.equinox-theme" + version: "1.0.4" + installs: 45 + author: "xAlvzx" + repo: "https://github.com/xAlvzx/equinox-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xAlvzx.equinox-theme" +colors: + bg: "#D9D9D9" + fg: "#333333" + black: "#3A3E45" + red: "#B91C1C" + green: "#15803D" + yellow: "#B45309" + blue: "#2563EB" + magenta: "#7C3AED" + cyan: "#0E7490" + white: "#1F2937" + brightBlack: "#6B7280" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#D8B4FE" + brightCyan: "#67E8F9" + brightWhite: "#F9FAFB" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 76.4 + black: 72.7 + red: 58 + green: 52 + yellow: 51.8 + blue: 52.6 + magenta: 55.2 + cyan: 54 + white: 79.3 + brightBlack: 51.3 + brightRed: 41.6 + brightGreen: 22.1 + brightYellow: 19.6 + brightBlue: 41.7 + brightMagenta: 10.2 + brightCyan: 0 + brightWhite: 19.3 diff --git a/themes/eralith.yaml b/themes/eralith.yaml new file mode 100644 index 00000000..4045b4c1 --- /dev/null +++ b/themes/eralith.yaml @@ -0,0 +1,49 @@ +name: "Eralith" +source: + marketplace_id: "eralith-theme.eralith-theme" + version: "1.0.3" + installs: 114 + author: "Eralith Theme" + repo: "https://github.com/Danrley-Ruan-Saquetti/Eralith-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=eralith-theme.eralith-theme" +colors: + bg: "#211B26" + fg: "#D1D1D1" + black: "#000000" + red: "#A52AFF" + green: "#7129FF" + yellow: "#3D2AFF" + blue: "#2B4FFF" + magenta: "#BC3FBC" + cyan: "#28B9FF" + white: "#F1F1F1" + brightBlack: "#757575" + brightRed: "#BA5AFF" + brightGreen: "#905AFF" + brightYellow: "#685AFF" + brightBlue: "#5C78FF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 309 + contrast: + fg: 76.9 + black: 0 + red: 28.2 + green: 21.3 + yellow: 17.5 + blue: 22.4 + magenta: 29 + cyan: 57.3 + white: 96.9 + brightBlack: 27.9 + brightRed: 38 + brightGreen: 32.2 + brightYellow: 28.1 + brightBlue: 35.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 106.1 diff --git a/themes/erikwdevtheme-color-theme.yaml b/themes/erikwdevtheme-color-theme.yaml new file mode 100644 index 00000000..3aa3731b --- /dev/null +++ b/themes/erikwdevtheme-color-theme.yaml @@ -0,0 +1,49 @@ +name: "ErikWDevTheme-color-theme" +source: + marketplace_id: "ErikWDev.erikwdevtheme" + version: "1.2.2" + installs: 152 + author: "ErikWDev" + repo: "https://www.github.com/ErikWDev/ErikWDevTheme" + url: "https://marketplace.visualstudio.com/items?itemName=ErikWDev.erikwdevtheme" +colors: + bg: "#20223A" + fg: "#CBCCC6" + black: "#1A1D34" + red: "#A577DE" + green: "#A6CC70" + yellow: "#E9B93F" + blue: "#6DCBFA" + magenta: "#BAFAF2" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#AA7CE3" + brightGreen: "#67C988" + brightYellow: "#EEBE44" + brightBlue: "#73D0FF" + brightMagenta: "#BFFFF7" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 279 + contrast: + fg: 72.5 + black: 0 + red: 38.3 + green: 65.7 + yellow: 65.7 + blue: 66.2 + magenta: 93.8 + cyan: 76.1 + white: 69.9 + brightBlack: 21.1 + brightRed: 40.8 + brightGreen: 60 + brightYellow: 68.6 + brightBlue: 69.1 + brightMagenta: 97 + brightCyan: 79.1 + brightWhite: 105.1 diff --git a/themes/eritbh-s-theme.yaml b/themes/eritbh-s-theme.yaml new file mode 100644 index 00000000..848ae4c8 --- /dev/null +++ b/themes/eritbh-s-theme.yaml @@ -0,0 +1,49 @@ +name: "eritbh's theme" +source: + marketplace_id: "eritbh.eritbh-theme" + version: "1.2.6" + installs: 149 + author: "eritbh" + repo: "https://github.com/eritbh/eritbh-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eritbh.eritbh-theme" +colors: + bg: "#2D2D2D" + fg: "#EFE8E4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BAB5B2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#EFE8E4" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 89.3 + black: 0 + red: 23.3 + green: 49.6 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 58.4 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.6 + brightMagenta: 41.9 + brightCyan: 52 + brightWhite: 89.3 diff --git a/themes/errordark.yaml b/themes/errordark.yaml new file mode 100644 index 00000000..9705ad18 --- /dev/null +++ b/themes/errordark.yaml @@ -0,0 +1,49 @@ +name: "ErrorDark" +source: + marketplace_id: "Fukumi.friendly-dark" + version: "2.2.27" + installs: 2075 + author: "Satou Fukumi" + repo: "https://github.com/satoufukumi/friendly-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Fukumi.friendly-dark" +colors: + bg: "#141523" + fg: "#C8C7D5" + black: "#0C0C0C" + red: "#C50F1F" + green: "#16B311" + yellow: "#FFE448" + blue: "#0037DA" + magenta: "#881798" + cyan: "#3A96DD" + white: "#C8C7D5" + brightBlack: "#767676" + brightRed: "#E74856" + brightGreen: "#16C60C" + brightYellow: "#F9F1A5" + brightBlue: "#3B78FF" + brightMagenta: "#B4009E" + brightCyan: "#61D6D6" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "purple" + hue: 280 + contrast: + fg: 72.5 + black: 0 + red: 22.9 + green: 47.7 + yellow: 89.3 + blue: 14.4 + magenta: 14.9 + cyan: 42.1 + white: 72.5 + brightBlack: 29.2 + brightRed: 35.9 + brightGreen: 56.6 + brightYellow: 96.1 + brightBlue: 34.4 + brightMagenta: 22.8 + brightCyan: 70.6 + brightWhite: 98.4 diff --git a/themes/errrrrm.yaml b/themes/errrrrm.yaml new file mode 100644 index 00000000..70866d49 --- /dev/null +++ b/themes/errrrrm.yaml @@ -0,0 +1,49 @@ +name: "errrrrm" +source: + marketplace_id: "red-theme.red-vscode-theme" + version: "0.0.3" + installs: 69 + author: "red-theme" + repo: "https://github.com/ddertaliss/vscode-red-theme.git#main" + url: "https://marketplace.visualstudio.com/items?itemName=red-theme.red-vscode-theme" +colors: + bg: "#191617" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.5 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/escook-theme-light.yaml b/themes/escook-theme-light.yaml new file mode 100644 index 00000000..197901b5 --- /dev/null +++ b/themes/escook-theme-light.yaml @@ -0,0 +1,49 @@ +name: "escook-theme-light" +source: + marketplace_id: "Eternity.Eternity" + version: "0.0.1" + installs: 180 + author: "Eternity" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Eternity.Eternity" +colors: + bg: "#FAFAFA" + fg: "#6C7680" + black: "#000000" + red: "#EA6C6D" + green: "#99BF4D" + yellow: "#ECA944" + blue: "#3199E1" + magenta: "#9E75C7" + cyan: "#46BA94" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#F2AE49" + brightBlue: "#399EE6" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 69.2 + black: 103 + red: 53.9 + green: 38.4 + yellow: 36.3 + blue: 54.6 + magenta: 60.5 + cyan: 44.2 + white: 27.1 + brightBlack: 74.9 + brightRed: 51.4 + brightGreen: 45.5 + brightYellow: 33.6 + brightBlue: 52.1 + brightMagenta: 58.2 + brightCyan: 41.6 + brightWhite: 21.5 diff --git a/themes/espresso-dark-theme.yaml b/themes/espresso-dark-theme.yaml new file mode 100644 index 00000000..83c79469 --- /dev/null +++ b/themes/espresso-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Espresso Dark Theme" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#11111B" + fg: "#CDD6F4" + black: "#11111B" + red: "#CE6565" + green: "#2E9E95" + yellow: "#A6E3A1" + blue: "#89B4FA" + magenta: "#BD8DF3" + cyan: "#47BAAE" + white: "#FAF6FE" + brightBlack: "#313244" + brightRed: "#CE6565" + brightGreen: "#2E9E95" + brightYellow: "#F7D790" + brightBlue: "#89B4FA" + brightMagenta: "#BD8DF3" + brightCyan: "#74D4C8" + brightWhite: "#FAF6FE" +meta: + mode: "dark" + accent: "magenta" + hue: 284 + contrast: + fg: 81.5 + black: 0 + red: 37 + green: 41.6 + yellow: 79.8 + blue: 60.5 + magenta: 51.8 + cyan: 55.3 + white: 102.3 + brightBlack: 0 + brightRed: 37 + brightGreen: 41.6 + brightYellow: 83.9 + brightBlue: 60.5 + brightMagenta: 51.8 + brightCyan: 70.3 + brightWhite: 102.3 diff --git a/themes/espresso-dark.yaml b/themes/espresso-dark.yaml new file mode 100644 index 00000000..cc0ad2a8 --- /dev/null +++ b/themes/espresso-dark.yaml @@ -0,0 +1,49 @@ +name: "Espresso Dark" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#1E1714" + fg: "#D4C4B0" + black: "#2A211A" + red: "#E88878" + green: "#A4C484" + yellow: "#E8C878" + blue: "#88B4D4" + magenta: "#C4A4DD" + cyan: "#8AC4C4" + white: "#D4C4B0" + brightBlack: "#6A5A48" + brightRed: "#FFAA98" + brightGreen: "#C4E4A4" + brightYellow: "#FFE898" + brightBlue: "#A8D4F4" + brightMagenta: "#E4C4FF" + brightCyan: "#AAE4E4" + brightWhite: "#FAF4E8" +meta: + mode: "dark" + accent: "orange" + hue: 44 + contrast: + fg: 71.1 + black: 0 + red: 51.1 + green: 64 + yellow: 74.1 + blue: 57.6 + magenta: 58.5 + cyan: 63.8 + white: 71.1 + brightBlack: 18 + brightRed: 67.2 + brightGreen: 82.9 + brightYellow: 92.2 + brightBlue: 75.9 + brightMagenta: 77 + brightCyan: 82.6 + brightWhite: 99.8 diff --git a/themes/etec-pfa-light.yaml b/themes/etec-pfa-light.yaml new file mode 100644 index 00000000..44e59eeb --- /dev/null +++ b/themes/etec-pfa-light.yaml @@ -0,0 +1,49 @@ +name: "Etec PFA - Light" +source: + marketplace_id: "Gustavo2022003.cps-theme" + version: "0.1.3" + installs: 1033 + author: "Gustavo2022003" + repo: "https://github.com/Gustavo2022003/CPS-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gustavo2022003.cps-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#666666" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#828282" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 78.8 + red: 74 + green: 48 + yellow: 17 + blue: 73.3 + magenta: 70.9 + cyan: 53.3 + white: 12.9 + brightBlack: 65.9 + brightRed: 62.1 + brightGreen: 37.9 + brightYellow: 7.7 + brightBlue: 60.7 + brightMagenta: 55.4 + brightCyan: 45.7 + brightWhite: 12.9 diff --git a/themes/eternal-autumn.yaml b/themes/eternal-autumn.yaml new file mode 100644 index 00000000..56561c4d --- /dev/null +++ b/themes/eternal-autumn.yaml @@ -0,0 +1,49 @@ +name: "Eternal Autumn" +source: + marketplace_id: "devkvlt.eternal" + version: "0.0.2" + installs: 116 + author: "devkvlt" + repo: "https://github.com/devkvlt/eternal.vscode" + url: "https://marketplace.visualstudio.com/items?itemName=devkvlt.eternal" +colors: + bg: "#110014" + fg: "#B3AFCE" + black: "#110014" + red: "#B2437C" + green: "#57AD9C" + yellow: "#DCAA70" + blue: "#6A8CF6" + magenta: "#A679FC" + cyan: "#55C6CE" + white: "#B3AFCE" + brightBlack: "#827A96" + brightRed: "#B2437C" + brightGreen: "#57AD9C" + brightYellow: "#DCAA70" + brightBlue: "#6A8CF6" + brightMagenta: "#A679FC" + brightCyan: "#55C6CE" + brightWhite: "#625871" +meta: + mode: "dark" + accent: "magenta" + hue: 323 + contrast: + fg: 60.7 + black: 0 + red: 26.1 + green: 50 + yellow: 61.2 + blue: 43.4 + magenta: 43.8 + cyan: 63 + white: 60.7 + brightBlack: 33.7 + brightRed: 26.1 + brightGreen: 50 + brightYellow: 61.2 + brightBlue: 43.4 + brightMagenta: 43.8 + brightCyan: 63 + brightWhite: 18.9 diff --git a/themes/eternal-summer.yaml b/themes/eternal-summer.yaml new file mode 100644 index 00000000..5d6563eb --- /dev/null +++ b/themes/eternal-summer.yaml @@ -0,0 +1,49 @@ +name: "Eternal Summer" +source: + marketplace_id: "devkvlt.eternal" + version: "0.0.2" + installs: 116 + author: "devkvlt" + repo: "https://github.com/devkvlt/eternal.vscode" + url: "https://marketplace.visualstudio.com/items?itemName=devkvlt.eternal" +colors: + bg: "#E7D5B4" + fg: "#332720" + black: "#E7D5B4" + red: "#AA251D" + green: "#64671A" + yellow: "#875906" + blue: "#1F5A7B" + magenta: "#8F4B76" + cyan: "#406A58" + white: "#332720" + brightBlack: "#695B4C" + brightRed: "#AA251D" + brightGreen: "#64671A" + brightYellow: "#875906" + brightBlue: "#1F5A7B" + brightMagenta: "#8F4B76" + brightCyan: "#406A58" + brightWhite: "#8D7E6A" +meta: + mode: "light" + accent: "orange" + hue: 83 + contrast: + fg: 77.8 + black: 0 + red: 59.4 + green: 56.5 + yellow: 56.6 + blue: 62.3 + magenta: 56.8 + cyan: 57.2 + white: 77.8 + brightBlack: 59.1 + brightRed: 59.4 + brightGreen: 56.5 + brightYellow: 56.6 + brightBlue: 62.3 + brightMagenta: 56.8 + brightCyan: 57.2 + brightWhite: 43.4 diff --git a/themes/eternals-no-italic.yaml b/themes/eternals-no-italic.yaml new file mode 100644 index 00000000..78873429 --- /dev/null +++ b/themes/eternals-no-italic.yaml @@ -0,0 +1,49 @@ +name: "Eternals No Italic" +source: + marketplace_id: "SurajNarsale.eternals" + version: "0.0.4" + installs: 332 + author: "Suraj Narsale" + repo: "https://github.com/surajnarsale/eternals-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SurajNarsale.eternals" +colors: + bg: "#161B27" + fg: "#C2C2D1" + black: "#161B27" + red: "#EF5350" + green: "#22DA6E" + yellow: "#F6EB9D" + blue: "#F385FC" + magenta: "#00D1FF" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#F385FC" + brightMagenta: "#00D1FF" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 267 + contrast: + fg: 69 + black: 0 + red: 38.8 + green: 66.8 + yellow: 92.1 + blue: 57.9 + magenta: 68 + cyan: 59.2 + white: 106.4 + brightBlack: 15.1 + brightRed: 38.8 + brightGreen: 66.8 + brightYellow: 93.2 + brightBlue: 57.9 + brightMagenta: 68 + brightCyan: 73.5 + brightWhite: 106.4 diff --git a/themes/ethanli-turquoise-dark.yaml b/themes/ethanli-turquoise-dark.yaml new file mode 100644 index 00000000..d241d981 --- /dev/null +++ b/themes/ethanli-turquoise-dark.yaml @@ -0,0 +1,49 @@ +name: "EthanLi Turquoise Dark" +source: + marketplace_id: "EthanLi.ethan-li-cyber-glow-theme" + version: "1.0.3" + installs: 58 + author: "EthanLi" + repo: "https://github.com/LQYld/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=EthanLi.ethan-li-cyber-glow-theme" +colors: + bg: "#0B1013" + fg: "#F0F0F4" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 235 + contrast: + fg: 97.8 + black: 0 + red: 41.4 + green: 37.3 + yellow: 76.2 + blue: 42 + magenta: 44.5 + cyan: 49.9 + white: 81.9 + brightBlack: 30.2 + brightRed: 41.4 + brightGreen: 37.3 + brightYellow: 76.2 + brightBlue: 42 + brightMagenta: 44.5 + brightCyan: 49.9 + brightWhite: 107.5 diff --git a/themes/ethereal.yaml b/themes/ethereal.yaml new file mode 100644 index 00000000..a071fc4f --- /dev/null +++ b/themes/ethereal.yaml @@ -0,0 +1,49 @@ +name: "ethereal" +source: + marketplace_id: "brandonkong.ethereal" + version: "0.1.2" + installs: 388 + author: "Brandon Kong" + repo: "https://github.com/brandon-kong/ethereal" + url: "https://marketplace.visualstudio.com/items?itemName=brandonkong.ethereal" +colors: + bg: "#210B20" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 329 + contrast: + fg: 79.7 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 30 + cyan: 47.8 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.8 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/ethereum-dark-blue-theme.yaml b/themes/ethereum-dark-blue-theme.yaml new file mode 100644 index 00000000..147d827e --- /dev/null +++ b/themes/ethereum-dark-blue-theme.yaml @@ -0,0 +1,49 @@ +name: "Ethereum Dark Blue Theme" +source: + marketplace_id: "karolk.ethereum-dark" + version: "1.8.15" + installs: 4737 + author: "karolk" + repo: "https://github.com/karolkozer/one-dark-ethereum-theme" + url: "https://marketplace.visualstudio.com/items?itemName=karolk.ethereum-dark" +colors: + bg: "#01162B" + fg: "#5F7398" + black: "#052442" + red: "#00E6D4" + green: "#8CA0C6" + yellow: "#5F7398" + blue: "#344A6B" + magenta: "#5F7398" + cyan: "#5F7398" + white: "#8CA0C6" + brightBlack: "#052442" + brightRed: "#00E6D4" + brightGreen: "#8CA0C6" + brightYellow: "#5F7398" + brightBlue: "#344A6B" + brightMagenta: "#5F7398" + brightCyan: "#5F7398" + brightWhite: "#8CA0C6" +meta: + mode: "dark" + accent: "teal" + hue: 249 + contrast: + fg: 27.6 + black: 0 + red: 76.4 + green: 49.5 + yellow: 27.6 + blue: 10.8 + magenta: 27.6 + cyan: 27.6 + white: 49.5 + brightBlack: 0 + brightRed: 76.4 + brightGreen: 49.5 + brightYellow: 27.6 + brightBlue: 10.8 + brightMagenta: 27.6 + brightCyan: 27.6 + brightWhite: 49.5 diff --git a/themes/ethereum-dark-grey-theme.yaml b/themes/ethereum-dark-grey-theme.yaml new file mode 100644 index 00000000..2117f69a --- /dev/null +++ b/themes/ethereum-dark-grey-theme.yaml @@ -0,0 +1,49 @@ +name: "Ethereum Dark Grey Theme" +source: + marketplace_id: "karolk.ethereum-dark" + version: "1.8.15" + installs: 4737 + author: "karolk" + repo: "https://github.com/karolkozer/one-dark-ethereum-theme" + url: "https://marketplace.visualstudio.com/items?itemName=karolk.ethereum-dark" +colors: + bg: "#240530" + fg: "#B48CC0" + black: "#2A0B36" + red: "#00E6D4" + green: "#E7BDF3" + yellow: "#B48CC0" + blue: "#835E8F" + magenta: "#B48CC0" + cyan: "#B48CC0" + white: "#E7BDF3" + brightBlack: "#22072B" + brightRed: "#00E6D4" + brightGreen: "#E7BDF3" + brightYellow: "#B48CC0" + brightBlue: "#835E8F" + brightMagenta: "#B48CC0" + brightCyan: "#B48CC0" + brightWhite: "#E7BDF3" +meta: + mode: "dark" + accent: "teal" + hue: 315 + contrast: + fg: 46.7 + black: 0 + red: 76.3 + green: 74.2 + yellow: 46.7 + blue: 24.4 + magenta: 46.7 + cyan: 46.7 + white: 74.2 + brightBlack: 0 + brightRed: 76.3 + brightGreen: 74.2 + brightYellow: 46.7 + brightBlue: 24.4 + brightMagenta: 46.7 + brightCyan: 46.7 + brightWhite: 74.2 diff --git a/themes/eva-01-berserk-theme.yaml b/themes/eva-01-berserk-theme.yaml new file mode 100644 index 00000000..dde032e4 --- /dev/null +++ b/themes/eva-01-berserk-theme.yaml @@ -0,0 +1,49 @@ +name: "EVA-01 Berserk Theme" +source: + marketplace_id: "engr.eva-unit-01-berserk-theme" + version: "0.1.0" + installs: 590 + author: "engr" + repo: "https://github.com/engrx0/eva-unit01-berserk-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=engr.eva-unit-01-berserk-theme" +colors: + bg: "#1C182C" + fg: "#13FF1E" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#00FF00" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 292 + contrast: + fg: 85.1 + black: 0 + red: 26.3 + green: 52.5 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 85 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 106.4 diff --git a/themes/eva-01.yaml b/themes/eva-01.yaml new file mode 100644 index 00000000..7eb33561 --- /dev/null +++ b/themes/eva-01.yaml @@ -0,0 +1,49 @@ +name: "EVA-01" +source: + marketplace_id: "kvx.evangelion-unit-eva-01-theme" + version: "0.1.2" + installs: 748 + author: "kvx" + repo: "https://github.com/luqezr/eva-01-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kvx.evangelion-unit-eva-01-theme" +colors: + bg: "#1D1A2F" + fg: "#F5F5F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#6CB0FB" + magenta: "#734F9A" + cyan: "#11A8CD" + white: "#B6B6B6" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#965FD4" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 289 + contrast: + fg: 99.6 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 55.8 + magenta: 18.8 + cyan: 46.9 + white: 61.2 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 30.6 + brightCyan: 54.7 + brightWhite: 106.2 diff --git a/themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml b/themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml new file mode 100644 index 00000000..ca98c338 --- /dev/null +++ b/themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml @@ -0,0 +1,49 @@ +name: "EVA Unit-02 Theme (Enhanced Red & Grey Variation)" +source: + marketplace_id: "engr.neon-genesis-evangelion-themes" + version: "0.3.0" + installs: 1737 + author: "engr" + repo: "https://github.com/engrx0/neon-genesis-evangelion-vscode-theme-extension" + url: "https://marketplace.visualstudio.com/items?itemName=engr.neon-genesis-evangelion-themes" +colors: + bg: "#0A0A0A" + fg: "#FBE6E5" + black: "#0A0A0A" + red: "#E6122B" + green: "#65AF50" + yellow: "#E07A3F" + blue: "#65AF50" + magenta: "#E07A3F" + cyan: "#65AF50" + white: "#F93431" + brightBlack: "#101010" + brightRed: "#F93431" + brightGreen: "#65AF50" + brightYellow: "#E07A3F" + brightBlue: "#65AF50" + brightMagenta: "#E07A3F" + brightCyan: "#65AF50" + brightWhite: "#FBE6E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.4 + black: 0 + red: 31.5 + green: 49.7 + yellow: 45.5 + blue: 49.7 + magenta: 45.5 + cyan: 49.7 + white: 38.1 + brightBlack: 0 + brightRed: 38.1 + brightGreen: 49.7 + brightYellow: 45.5 + brightBlue: 49.7 + brightMagenta: 45.5 + brightCyan: 49.7 + brightWhite: 94.4 diff --git a/themes/evans-dark-theme.yaml b/themes/evans-dark-theme.yaml new file mode 100644 index 00000000..b0023ea4 --- /dev/null +++ b/themes/evans-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "evans-dark-theme" +source: + marketplace_id: "AnilBeesetti.evans-dark-theme" + version: "1.1.0" + installs: 7733 + author: "AnilBeesetti" + repo: "https://github.com/attitudeanil/Evans-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=AnilBeesetti.evans-dark-theme" +colors: + bg: "#1C262C" + fg: "#DBDBDB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#EFD25C" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#EFD25C" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 235 + contrast: + fg: 81.9 + black: 0 + red: 24.9 + green: 51.1 + yellow: 77.2 + blue: 25.6 + magenta: 27.9 + cyan: 45.7 + white: 88.2 + brightBlack: 20.2 + brightRed: 36.7 + brightGreen: 61.7 + brightYellow: 77.2 + brightBlue: 38.1 + brightMagenta: 43.5 + brightCyan: 53.5 + brightWhite: 88.2 diff --git a/themes/evans.yaml b/themes/evans.yaml new file mode 100644 index 00000000..731e0b67 --- /dev/null +++ b/themes/evans.yaml @@ -0,0 +1,49 @@ +name: "EVANS" +source: + marketplace_id: "Evans.awesome-vscode-theme" + version: "0.0.1" + installs: 200 + author: "Evans" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Evans.awesome-vscode-theme" +colors: + bg: "#030C1B" + fg: "#FBE179" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#05F997" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 88.7 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 84.7 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/eve.yaml b/themes/eve.yaml new file mode 100644 index 00000000..998885ef --- /dev/null +++ b/themes/eve.yaml @@ -0,0 +1,49 @@ +name: "Eve" +source: + marketplace_id: "origin.adam" + version: "0.1.2" + installs: 1985 + author: "Ricardo Brito" + repo: "https://github.com/souzk/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=origin.adam" +colors: + bg: "#FCFCFD" + fg: "#9393A8" + black: "#787892" + red: "#F7768E" + green: "#79F391" + yellow: "#FFDB89" + blue: "#8DDDFF" + magenta: "#B1B2FF" + cyan: "#8DDDFF" + white: "#FCFCFD" + brightBlack: "#9393A8" + brightRed: "#F7768E" + brightGreen: "#79F391" + brightYellow: "#FFDB89" + brightBlue: "#8DDDFF" + brightMagenta: "#B1B2FF" + brightCyan: "#8DDDFF" + brightWhite: "#F7F7F8" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 55.1 + black: 67.9 + red: 49.2 + green: 17.2 + yellow: 14.6 + blue: 21.9 + magenta: 36.1 + cyan: 21.9 + white: 0 + brightBlack: 55.1 + brightRed: 49.2 + brightGreen: 17.2 + brightYellow: 14.6 + brightBlue: 21.9 + brightMagenta: 36.1 + brightCyan: 21.9 + brightWhite: 0 diff --git a/themes/evening-sky.yaml b/themes/evening-sky.yaml new file mode 100644 index 00000000..e38bcef9 --- /dev/null +++ b/themes/evening-sky.yaml @@ -0,0 +1,49 @@ +name: "Evening Sky" +source: + marketplace_id: "SunSpot.evening-sky-theme" + version: "1.1.0" + installs: 1030 + author: "Sun Spot" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SunSpot.evening-sky-theme" +colors: + bg: "#2B213D" + fg: "#D4D4D4" + black: "#3D3C3C" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 299 + contrast: + fg: 77.3 + black: 0 + red: 24.6 + green: 50.9 + yellow: 83.5 + blue: 25.3 + magenta: 27.6 + cyan: 45.4 + white: 87.9 + brightBlack: 19.9 + brightRed: 36.4 + brightGreen: 61.4 + brightYellow: 93.5 + brightBlue: 37.9 + brightMagenta: 43.2 + brightCyan: 53.3 + brightWhite: 87.9 diff --git a/themes/everforest-dark.yaml b/themes/everforest-dark.yaml new file mode 100644 index 00000000..8f834354 --- /dev/null +++ b/themes/everforest-dark.yaml @@ -0,0 +1,49 @@ +name: "Everforest Dark" +source: + marketplace_id: "johnull.blackforest" + version: "0.0.2" + installs: 1527 + author: "johnull" + repo: "https://github.com/johnull/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=johnull.blackforest" +colors: + bg: "#000000" + fg: "#D3C6AA" + black: "#343F44" + red: "#E67E80" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#83C092" + white: "#D3C6AA" + brightBlack: "#859289" + brightRed: "#E67E80" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#7FBBB3" + brightMagenta: "#D699B6" + brightCyan: "#83C092" + brightWhite: "#D3C6AA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 72.7 + black: 7.5 + red: 49.2 + green: 63.6 + yellow: 68.5 + blue: 59.5 + magenta: 56.6 + cyan: 60.8 + white: 72.7 + brightBlack: 42 + brightRed: 49.2 + brightGreen: 63.6 + brightYellow: 68.5 + brightBlue: 59.5 + brightMagenta: 56.6 + brightCyan: 60.8 + brightWhite: 72.7 diff --git a/themes/everforest-light.yaml b/themes/everforest-light.yaml new file mode 100644 index 00000000..695e0d58 --- /dev/null +++ b/themes/everforest-light.yaml @@ -0,0 +1,49 @@ +name: "Everforest Light" +source: + marketplace_id: "sainnhe.everforest" + version: "0.3.0" + installs: 123139 + author: "sainnhe" + repo: "https://github.com/sainnhe/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.everforest" +colors: + bg: "#FDF6E3" + fg: "#5C6A72" + black: "#5C6A72" + red: "#F85552" + green: "#8DA101" + yellow: "#DFA000" + blue: "#3A94C5" + magenta: "#DF69BA" + cyan: "#35A77C" + white: "#939F91" + brightBlack: "#5C6A72" + brightRed: "#F85552" + brightGreen: "#8DA101" + brightYellow: "#DFA000" + brightBlue: "#3A94C5" + brightMagenta: "#DF69BA" + brightCyan: "#35A77C" + brightWhite: "#F4F0D9" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 72.7 + black: 72.7 + red: 53.8 + green: 49.9 + yellow: 39.6 + blue: 55.7 + magenta: 51.7 + cyan: 51.3 + white: 48.1 + brightBlack: 72.7 + brightRed: 53.8 + brightGreen: 49.9 + brightYellow: 39.6 + brightBlue: 55.7 + brightMagenta: 51.7 + brightCyan: 51.3 + brightWhite: 0 diff --git a/themes/everforest-pro-dark-cozy.yaml b/themes/everforest-pro-dark-cozy.yaml new file mode 100644 index 00000000..7758f48d --- /dev/null +++ b/themes/everforest-pro-dark-cozy.yaml @@ -0,0 +1,49 @@ +name: "Everforest Pro Dark Cozy" +source: + marketplace_id: "AndreiLucaci.everforest-pro" + version: "2.0.0" + installs: 2464 + author: "Andrei Lucaci" + repo: "https://github.com/AndreiLucaci/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" +colors: + bg: "#333C43" + fg: "#D3C6AA" + black: "#3A464C" + red: "#E67E80" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#83C092" + white: "#D3C6AA" + brightBlack: "#859289" + brightRed: "#E67E80" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#7FBBB3" + brightMagenta: "#D699B6" + brightCyan: "#83C092" + brightWhite: "#D3C6AA" +meta: + mode: "dark" + accent: "orange" + hue: 241 + contrast: + fg: 64.6 + black: 0 + red: 41.1 + green: 55.5 + yellow: 60.4 + blue: 51.4 + magenta: 48.5 + cyan: 52.7 + white: 64.6 + brightBlack: 33.8 + brightRed: 41.1 + brightGreen: 55.5 + brightYellow: 60.4 + brightBlue: 51.4 + brightMagenta: 48.5 + brightCyan: 52.7 + brightWhite: 64.6 diff --git a/themes/everforest-pro-dark-vibrant.yaml b/themes/everforest-pro-dark-vibrant.yaml new file mode 100644 index 00000000..9b40f031 --- /dev/null +++ b/themes/everforest-pro-dark-vibrant.yaml @@ -0,0 +1,49 @@ +name: "Everforest Pro Dark Vibrant" +source: + marketplace_id: "AndreiLucaci.everforest-pro" + version: "2.0.0" + installs: 2464 + author: "Andrei Lucaci" + repo: "https://github.com/AndreiLucaci/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" +colors: + bg: "#272E33" + fg: "#D3C6AA" + black: "#2E383C" + red: "#E67E80" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#83C092" + white: "#D3C6AA" + brightBlack: "#859289" + brightRed: "#E67E80" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#7FBBB3" + brightMagenta: "#D699B6" + brightCyan: "#83C092" + brightWhite: "#D3C6AA" +meta: + mode: "dark" + accent: "orange" + hue: 239 + contrast: + fg: 68.3 + black: 0 + red: 44.7 + green: 59.2 + yellow: 64.1 + blue: 55.1 + magenta: 52.2 + cyan: 56.4 + white: 68.3 + brightBlack: 37.5 + brightRed: 44.7 + brightGreen: 59.2 + brightYellow: 64.1 + brightBlue: 55.1 + brightMagenta: 52.2 + brightCyan: 56.4 + brightWhite: 68.3 diff --git a/themes/everforest-pro-light-cozy.yaml b/themes/everforest-pro-light-cozy.yaml new file mode 100644 index 00000000..6559e29a --- /dev/null +++ b/themes/everforest-pro-light-cozy.yaml @@ -0,0 +1,49 @@ +name: "Everforest Pro Light Cozy" +source: + marketplace_id: "AndreiLucaci.everforest-pro" + version: "2.0.0" + installs: 2464 + author: "Andrei Lucaci" + repo: "https://github.com/AndreiLucaci/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" +colors: + bg: "#F3EAD3" + fg: "#5C6A72" + black: "#5C6A72" + red: "#F85552" + green: "#8DA101" + yellow: "#DFA000" + blue: "#3A94C5" + magenta: "#DF69BA" + cyan: "#35A77C" + white: "#939F91" + brightBlack: "#5C6A72" + brightRed: "#F85552" + brightGreen: "#8DA101" + brightYellow: "#DFA000" + brightBlue: "#3A94C5" + brightMagenta: "#DF69BA" + brightCyan: "#35A77C" + brightWhite: "#EAE4CA" +meta: + mode: "light" + accent: "orange" + hue: 89 + contrast: + fg: 65.7 + black: 65.7 + red: 46.8 + green: 43 + yellow: 32.7 + blue: 48.7 + magenta: 44.7 + cyan: 44.3 + white: 41.1 + brightBlack: 65.7 + brightRed: 46.8 + brightGreen: 43 + brightYellow: 32.7 + brightBlue: 48.7 + brightMagenta: 44.7 + brightCyan: 44.3 + brightWhite: 0 diff --git a/themes/everforest-pro-light-vibrant.yaml b/themes/everforest-pro-light-vibrant.yaml new file mode 100644 index 00000000..5408ccc5 --- /dev/null +++ b/themes/everforest-pro-light-vibrant.yaml @@ -0,0 +1,49 @@ +name: "Everforest Pro Light Vibrant" +source: + marketplace_id: "AndreiLucaci.everforest-pro" + version: "2.0.0" + installs: 2464 + author: "Andrei Lucaci" + repo: "https://github.com/AndreiLucaci/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" +colors: + bg: "#FFFBEF" + fg: "#5C6A72" + black: "#5C6A72" + red: "#F85552" + green: "#8DA101" + yellow: "#DFA000" + blue: "#3A94C5" + magenta: "#DF69BA" + cyan: "#35A77C" + white: "#939F91" + brightBlack: "#5C6A72" + brightRed: "#F85552" + brightGreen: "#8DA101" + brightYellow: "#DFA000" + brightBlue: "#3A94C5" + brightMagenta: "#DF69BA" + brightCyan: "#35A77C" + brightWhite: "#F8F5E4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 75.5 + black: 75.5 + red: 56.6 + green: 52.8 + yellow: 42.5 + blue: 58.5 + magenta: 54.5 + cyan: 54.1 + white: 50.9 + brightBlack: 75.5 + brightRed: 56.6 + brightGreen: 52.8 + brightYellow: 42.5 + brightBlue: 58.5 + brightMagenta: 54.5 + brightCyan: 54.1 + brightWhite: 0 diff --git a/themes/everforest-soft.yaml b/themes/everforest-soft.yaml new file mode 100644 index 00000000..a6d9cf10 --- /dev/null +++ b/themes/everforest-soft.yaml @@ -0,0 +1,49 @@ +name: "Everforest Soft" +source: + marketplace_id: "MrMartian.everforest-moist" + version: "0.0.2" + installs: 4411 + author: "MrMartian" + repo: "https://github.com/CraigglesO/everforest-moist-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MrMartian.everforest-moist" +colors: + bg: "#2C3338" + fg: "#D3C6AA" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#DC7B7C" + brightGreen: "#DBBC7F" + brightYellow: "#A7C080" + brightBlue: "#83A598" + brightMagenta: "#D699B6" + brightCyan: "#9DB579" + brightWhite: "#D3C6AA" +meta: + mode: "dark" + accent: "orange" + hue: 239 + contrast: + fg: 67.1 + black: 0 + red: 20.7 + green: 38.3 + yellow: 47.9 + blue: 27 + magenta: 27.1 + cyan: 37.3 + white: 42.6 + brightBlack: 31.8 + brightRed: 40.8 + brightGreen: 62.9 + brightYellow: 58 + brightBlue: 44 + brightMagenta: 51 + brightCyan: 52.1 + brightWhite: 67.1 diff --git a/themes/evergarden-winter-light.yaml b/themes/evergarden-winter-light.yaml new file mode 100644 index 00000000..92c4238b --- /dev/null +++ b/themes/evergarden-winter-light.yaml @@ -0,0 +1,49 @@ +name: "Evergarden Winter Light" +source: + marketplace_id: "concatenateline.evergarden-winter-vscode" + version: "1.0.0" + installs: 39 + author: "concatenateline" + repo: "https://github.com/ConcatenateLine/evergarden-winter-vscode-1.0.0" + url: "https://marketplace.visualstudio.com/items?itemName=concatenateline.evergarden-winter-vscode" +colors: + bg: "#F8F7F3" + fg: "#3A2F27" + black: "#5A5047" + red: "#A63355" + green: "#1F5942" + yellow: "#B88800" + blue: "#234060" + magenta: "#C75080" + cyan: "#0D6565" + white: "#C8BFB8" + brightBlack: "#8A7F77" + brightRed: "#C74A70" + brightGreen: "#3D9080" + brightYellow: "#D8A000" + brightBlue: "#4A7A9D" + brightMagenta: "#D57093" + brightCyan: "#2D9090" + brightWhite: "#D8D0C8" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 94.4 + black: 82.5 + red: 76.5 + green: 83.3 + yellow: 54.1 + blue: 89.7 + magenta: 64.2 + cyan: 78.4 + white: 28.9 + brightBlack: 61.6 + brightRed: 65.8 + brightGreen: 60.7 + brightYellow: 41.2 + brightBlue: 67 + brightMagenta: 54 + brightCyan: 60.5 + brightWhite: 19.5 diff --git a/themes/evergarden-winter.yaml b/themes/evergarden-winter.yaml new file mode 100644 index 00000000..6fef5b98 --- /dev/null +++ b/themes/evergarden-winter.yaml @@ -0,0 +1,49 @@ +name: "Evergarden Winter" +source: + marketplace_id: "concatenateline.evergarden-winter-vscode" + version: "1.0.0" + installs: 39 + author: "concatenateline" + repo: "https://github.com/ConcatenateLine/evergarden-winter-vscode-1.0.0" + url: "https://marketplace.visualstudio.com/items?itemName=concatenateline.evergarden-winter-vscode" +colors: + bg: "#0E1012" + fg: "#E2E3E4" + black: "#3D484D" + red: "#F5A8B8" + green: "#9AE8A8" + yellow: "#E8D090" + blue: "#A0C8F0" + magenta: "#DBBC7F" + cyan: "#B8F0E0" + white: "#E5DFC8" + brightBlack: "#5A6268" + brightRed: "#F5C8D0" + brightGreen: "#B8F0C8" + brightYellow: "#F0E0A0" + brightBlue: "#D0E8F8" + brightMagenta: "#F0D5E8" + brightCyan: "#D0F8F0" + brightWhite: "#F5F0E0" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 89.3 + black: 10.2 + red: 66.6 + green: 81.6 + yellow: 78.8 + blue: 70.5 + magenta: 68.1 + cyan: 90.3 + white: 86.7 + brightBlack: 20.5 + brightRed: 79.6 + brightGreen: 89.3 + brightYellow: 87.4 + brightBlue: 90.2 + brightMagenta: 85.3 + brightCyan: 97.4 + brightWhite: 97.6 diff --git a/themes/evergarden.yaml b/themes/evergarden.yaml new file mode 100644 index 00000000..eb124c37 --- /dev/null +++ b/themes/evergarden.yaml @@ -0,0 +1,49 @@ +name: "Evergarden" +source: + marketplace_id: "icarrera.evergarden-theme" + version: "1.3.0" + installs: 757 + author: "Ignacio Carrera" + repo: "https://github.com/nachokb/vscode-evergarden-theme" + url: "https://marketplace.visualstudio.com/items?itemName=icarrera.evergarden-theme" +colors: + bg: "#252B2E" + fg: "#D6CBB4" + black: "#232A2E" + red: "#F57F82" + green: "#B2D185" + yellow: "#F2C27F" + blue: "#95AEE1" + magenta: "#E680C8" + cyan: "#78D0CA" + white: "#A3B8BD" + brightBlack: "#44535A" + brightRed: "#FAA7A9" + brightGreen: "#CAE0A7" + brightYellow: "#F1D09E" + brightBlue: "#B5CCEC" + brightMagenta: "#F3C0E5" + brightCyan: "#9BE0D9" + brightWhite: "#E2E9EB" +meta: + mode: "dark" + accent: "pink" + hue: 229 + contrast: + fg: 71.8 + black: 0 + red: 48.6 + green: 68.6 + yellow: 70.7 + blue: 54.4 + magenta: 48.8 + cyan: 65.6 + white: 58 + brightBlack: 10.6 + brightRed: 63.2 + brightGreen: 79.1 + brightYellow: 77.1 + brightBlue: 70.7 + brightMagenta: 73.7 + brightCyan: 76.3 + brightWhite: 88.9 diff --git a/themes/evernex.yaml b/themes/evernex.yaml new file mode 100644 index 00000000..a90f6292 --- /dev/null +++ b/themes/evernex.yaml @@ -0,0 +1,49 @@ +name: "EverNex" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#0A1612" + fg: "#D4F4DD" + black: "#0A1612" + red: "#FF5566" + green: "#00FF88" + yellow: "#FFAA33" + blue: "#66AAFF" + magenta: "#DD88FF" + cyan: "#44FFDD" + white: "#D4F4DD" + brightBlack: "#4D8866" + brightRed: "#FF8899" + brightGreen: "#4DFFAA" + brightYellow: "#FFCC66" + brightBlue: "#99CCFF" + brightMagenta: "#EEBBFF" + brightCyan: "#88FFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 171 + contrast: + fg: 94.8 + black: 0 + red: 44 + green: 87 + yellow: 65.9 + blue: 54.3 + magenta: 55.8 + cyan: 90.5 + white: 94.8 + brightBlack: 32.3 + brightRed: 56.9 + brightGreen: 88.9 + brightYellow: 79.5 + brightBlue: 72.1 + brightMagenta: 75.5 + brightCyan: 94.2 + brightWhite: 107.2 diff --git a/themes/evex-dark.yaml b/themes/evex-dark.yaml new file mode 100644 index 00000000..c0fdf060 --- /dev/null +++ b/themes/evex-dark.yaml @@ -0,0 +1,49 @@ +name: "Evex Dark" +source: + marketplace_id: "evex-dev.evex-theme" + version: "1.1.0" + installs: 237 + author: "Evex Developers" + repo: "https://github.com/evex-dev/theme" + url: "https://marketplace.visualstudio.com/items?itemName=evex-dev.evex-theme" +colors: + bg: "#020102" + fg: "#94A3B8" + black: "#1E293B" + red: "#F87171" + green: "#34D399" + yellow: "#FDE68A" + blue: "#3B82F6" + magenta: "#C084FC" + cyan: "#2DD4BF" + white: "#CBD5E1" + brightBlack: "#64748B" + brightRed: "#EF4444" + brightGreen: "#34D399" + brightYellow: "#FDE68A" + brightBlue: "#3B82F6" + brightMagenta: "#86198F" + brightCyan: "#2DD4BF" + brightWhite: "#CBD5E1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 51.7 + black: 0 + red: 49.1 + green: 66.2 + yellow: 91.9 + blue: 37.8 + magenta: 50.7 + cyan: 67.9 + white: 80.4 + brightBlack: 28.7 + brightRed: 37.8 + brightGreen: 66.2 + brightYellow: 91.9 + brightBlue: 37.8 + brightMagenta: 15 + brightCyan: 67.9 + brightWhite: 80.4 diff --git a/themes/evondev-minimal-theme.yaml b/themes/evondev-minimal-theme.yaml new file mode 100644 index 00000000..e7f4b361 --- /dev/null +++ b/themes/evondev-minimal-theme.yaml @@ -0,0 +1,49 @@ +name: "Evondev Minimal Theme" +source: + marketplace_id: "evondev.evondev-minimal-theme" + version: "0.0.10" + installs: 7 + author: "evondev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=evondev.evondev-minimal-theme" +colors: + bg: "#1E1F35" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#20E3B2" + yellow: "#FDE181" + blue: "#BD93F9" + magenta: "#FF6BCB" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#8D92FF" + brightRed: "#FF6E6E" + brightGreen: "#20E3B2" + brightYellow: "#EAC394" + brightBlue: "#BD93F9" + brightMagenta: "#FF6BCB" + brightCyan: "#2CCCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 281 + contrast: + fg: 100.7 + black: 0 + red: 42.1 + green: 72.3 + yellow: 87.2 + blue: 52.4 + magenta: 50.4 + cyan: 82.7 + white: 100.7 + brightBlack: 46.9 + brightRed: 47.5 + brightGreen: 72.3 + brightYellow: 71.9 + brightBlue: 52.4 + brightMagenta: 50.4 + brightCyan: 65.2 + brightWhite: 105.6 diff --git a/themes/evondev-tailwind-theme.yaml b/themes/evondev-tailwind-theme.yaml new file mode 100644 index 00000000..7314cd74 --- /dev/null +++ b/themes/evondev-tailwind-theme.yaml @@ -0,0 +1,49 @@ +name: "Evondev Tailwind Theme" +source: + marketplace_id: "evondev.evondev-tailwind-theme" + version: "0.0.38" + installs: 4791 + author: "evondev" + repo: "https://github.com/evondev/evondev-tailwind-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evondev.evondev-tailwind-theme" +colors: + bg: "#1B1E28" + fg: "#EEFFFF" + black: "#21222C" + red: "#FF5555" + green: "#20E3B2" + yellow: "#FFB86C" + blue: "#00AEFD" + magenta: "#FF79C6" + cyan: "#7DD3FC" + white: "#F8FAFC" + brightBlack: "#8D92FF" + brightRed: "#FF5555" + brightGreen: "#20E3B2" + brightYellow: "#FFB86C" + brightBlue: "#00AEFD" + brightMagenta: "#FF79C6" + brightCyan: "#7DD3FC" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "orange" + hue: 272 + contrast: + fg: 103.7 + black: 0 + red: 42.5 + green: 72.7 + yellow: 70.6 + blue: 52.2 + magenta: 53.7 + cyan: 71.8 + white: 102.5 + brightBlack: 47.3 + brightRed: 42.5 + brightGreen: 72.7 + brightYellow: 70.6 + brightBlue: 52.2 + brightMagenta: 53.7 + brightCyan: 71.8 + brightWhite: 102.5 diff --git a/themes/evro-dark.yaml b/themes/evro-dark.yaml new file mode 100644 index 00000000..39efb69f --- /dev/null +++ b/themes/evro-dark.yaml @@ -0,0 +1,49 @@ +name: "Evro Dark" +source: + marketplace_id: "EvroHQ.evro-dark" + version: "1.9.8" + installs: 3672 + author: "EvroHQ" + repo: "https://github.com/evrohq/EvroDark" + url: "https://marketplace.visualstudio.com/items?itemName=EvroHQ.evro-dark" +colors: + bg: "#191D22" + fg: "#ABB2BF" + black: "#151720" + red: "#E06C75" + green: "#76ECB7" + yellow: "#F5B187" + blue: "#86AAEC" + magenta: "#9D88D0" + cyan: "#93CEE9" + white: "#CBCED3" + brightBlack: "#1C1E27" + brightRed: "#DD6777" + brightGreen: "#76ECB7" + brightYellow: "#DBD594" + brightBlue: "#86AAEC" + brightMagenta: "#9D88D0" + brightCyan: "#93CEE9" + brightWhite: "#A5B6CF" +meta: + mode: "dark" + accent: "red" + hue: 254 + contrast: + fg: 58.7 + black: 0 + red: 41.4 + green: 80.3 + yellow: 67 + blue: 54.3 + magenta: 42.7 + cyan: 70.3 + white: 75.1 + brightBlack: 0 + brightRed: 39.7 + brightGreen: 80.3 + brightYellow: 78 + brightBlue: 54.3 + brightMagenta: 42.7 + brightCyan: 70.3 + brightWhite: 60.4 diff --git a/themes/evro-darker-flat.yaml b/themes/evro-darker-flat.yaml new file mode 100644 index 00000000..a61df5b5 --- /dev/null +++ b/themes/evro-darker-flat.yaml @@ -0,0 +1,49 @@ +name: "Evro Darker Flat" +source: + marketplace_id: "EvroHQ.evro-dark" + version: "1.9.8" + installs: 3672 + author: "EvroHQ" + repo: "https://github.com/evrohq/EvroDark" + url: "https://marketplace.visualstudio.com/items?itemName=EvroHQ.evro-dark" +colors: + bg: "#141417" + fg: "#ABB2BF" + black: "#151720" + red: "#E06C75" + green: "#76ECB7" + yellow: "#F5B187" + blue: "#86AAEC" + magenta: "#9D88D0" + cyan: "#93CEE9" + white: "#CBCED3" + brightBlack: "#1C1E27" + brightRed: "#DD6777" + brightGreen: "#76ECB7" + brightYellow: "#DBD594" + brightBlue: "#86AAEC" + brightMagenta: "#9D88D0" + brightCyan: "#93CEE9" + brightWhite: "#A5B6CF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 59.6 + black: 0 + red: 42.3 + green: 81.2 + yellow: 67.9 + blue: 55.2 + magenta: 43.6 + cyan: 71.2 + white: 76 + brightBlack: 0 + brightRed: 40.6 + brightGreen: 81.2 + brightYellow: 78.9 + brightBlue: 55.2 + brightMagenta: 43.6 + brightCyan: 71.2 + brightWhite: 61.4 diff --git a/themes/exalanddark.yaml b/themes/exalanddark.yaml new file mode 100644 index 00000000..a202ecd2 --- /dev/null +++ b/themes/exalanddark.yaml @@ -0,0 +1,49 @@ +name: "ExalandDark" +source: + marketplace_id: "Exaland.exaland-darktheme" + version: "0.0.3" + installs: 8 + author: "Exaland" + repo: "https://github.com/exaland/exaland-darktheme" + url: "https://marketplace.visualstudio.com/items?itemName=Exaland.exaland-darktheme" +colors: + bg: "#030C1B" + fg: "#D7DDE8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 85.5 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/execlabs.yaml b/themes/execlabs.yaml new file mode 100644 index 00000000..df70c98f --- /dev/null +++ b/themes/execlabs.yaml @@ -0,0 +1,49 @@ +name: "ExecLabs" +source: + marketplace_id: "ExecLabs.execlabs" + version: "0.0.3" + installs: 1510 + author: "ExecLabs" + repo: "https://github.com/mkuchak/execlabs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ExecLabs.execlabs" +colors: + bg: "#000213" + fg: "#858494" + black: "#454545" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F9F9F9" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 263 + contrast: + fg: 37.3 + black: 10.1 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 103.9 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/exias-theme-colorful.yaml b/themes/exias-theme-colorful.yaml new file mode 100644 index 00000000..f335206a --- /dev/null +++ b/themes/exias-theme-colorful.yaml @@ -0,0 +1,49 @@ +name: "Exias Theme (Colorful)" +source: + marketplace_id: "AldiiX.exias-theme" + version: "1.2.140" + installs: 115 + author: "AldiiX" + repo: "https://github.com/AldiiX/Exias-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=AldiiX.exias-theme" +colors: + bg: "#13161B" + fg: "#9FADC2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 56.3 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/exias-theme-town.yaml b/themes/exias-theme-town.yaml new file mode 100644 index 00000000..7fb0b31b --- /dev/null +++ b/themes/exias-theme-town.yaml @@ -0,0 +1,49 @@ +name: "Exias Theme (Town)" +source: + marketplace_id: "AldiiX.exias-theme" + version: "1.2.140" + installs: 115 + author: "AldiiX" + repo: "https://github.com/AldiiX/Exias-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=AldiiX.exias-theme" +colors: + bg: "#13161B" + fg: "#D1D1D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 77.8 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/exile.yaml b/themes/exile.yaml new file mode 100644 index 00000000..807c6303 --- /dev/null +++ b/themes/exile.yaml @@ -0,0 +1,49 @@ +name: "exile" +source: + marketplace_id: "johnull.exilebeans" + version: "0.1.1" + installs: 13 + author: "johnull" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=johnull.exilebeans" +colors: + bg: "#000000" + fg: "#CECECE" + black: "#000000" + red: "#E25D56" + green: "#73CA50" + yellow: "#E9BF57" + blue: "#4A88E4" + magenta: "#915CAF" + cyan: "#23ACDD" + white: "#CECECE" + brightBlack: "#777777" + brightRed: "#F36868" + brightGreen: "#71ADE7" + brightYellow: "#F0BF7A" + brightBlue: "#6F8FDB" + brightMagenta: "#E987E9" + brightCyan: "#4AC9E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 76.9 + black: 0 + red: 39.5 + green: 62.9 + yellow: 71.2 + blue: 39 + magenta: 28.5 + cyan: 51.3 + white: 76.9 + brightBlack: 30.6 + brightRed: 45.8 + brightGreen: 55.3 + brightYellow: 72.9 + brightBlue: 43 + brightMagenta: 56.9 + brightCyan: 65.2 + brightWhite: 107.9 diff --git a/themes/exploit.yaml b/themes/exploit.yaml new file mode 100644 index 00000000..d562ddc6 --- /dev/null +++ b/themes/exploit.yaml @@ -0,0 +1,49 @@ +name: "exploit" +source: + marketplace_id: "sevnth.exploit" + version: "1.0.1" + installs: 360 + author: "sevnth" + repo: "https://github.com/sevnth/exploit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sevnth.exploit" +colors: + bg: "#171717" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#F934FF" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#FF66D9" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.9 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 45.6 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 51.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/extreme-dark-theme.yaml b/themes/extreme-dark-theme.yaml new file mode 100644 index 00000000..6bd69f35 --- /dev/null +++ b/themes/extreme-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Extreme Dark Theme" +source: + marketplace_id: "97a3a878637c6a75bd87a20a0d1a1d21.extreme-theme" + version: "0.0.1" + installs: 262 + author: "Extreme" + repo: "https://github.com/MARomagna/Extreme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=97a3a878637c6a75bd87a20a0d1a1d21.extreme-theme" +colors: + bg: "#000000" + fg: "#00FF87" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/eye-care-dark.yaml b/themes/eye-care-dark.yaml new file mode 100644 index 00000000..44218327 --- /dev/null +++ b/themes/eye-care-dark.yaml @@ -0,0 +1,49 @@ +name: "Eye Care Dark" +source: + marketplace_id: "lynnjinjie.vscode-happy-theme" + version: "0.2.1" + installs: 218 + author: "lynnjinjie" + repo: "https://github.com/lynnjinjie/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lynnjinjie.vscode-happy-theme" +colors: + bg: "#232323" + fg: "#C8C8C8" + black: "#1E1E1E" + red: "#B87C7C" + green: "#8A9A5B" + yellow: "#B8A76B" + blue: "#6B8C9D" + magenta: "#9D6B9D" + cyan: "#6B9D9D" + white: "#E0E0E0" + brightBlack: "#1E1E1E" + brightRed: "#B87C7C" + brightGreen: "#8A9A5B" + brightYellow: "#B8A76B" + brightBlue: "#6B8C9D" + brightMagenta: "#9D6B9D" + brightCyan: "#6B9D9D" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 70.7 + black: 0 + red: 38 + green: 41.7 + yellow: 52.3 + blue: 35.7 + magenta: 30.4 + cyan: 42.2 + white: 85.3 + brightBlack: 0 + brightRed: 38 + brightGreen: 41.7 + brightYellow: 52.3 + brightBlue: 35.7 + brightMagenta: 30.4 + brightCyan: 42.2 + brightWhite: 85.3 diff --git a/themes/eye-care-light.yaml b/themes/eye-care-light.yaml new file mode 100644 index 00000000..77160d3b --- /dev/null +++ b/themes/eye-care-light.yaml @@ -0,0 +1,49 @@ +name: "Eye Care Light" +source: + marketplace_id: "lynnjinjie.vscode-happy-theme" + version: "0.2.1" + installs: 218 + author: "lynnjinjie" + repo: "https://github.com/lynnjinjie/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lynnjinjie.vscode-happy-theme" +colors: + bg: "#FDFCF8" + fg: "#3A3A3A" + black: "#1E1E1E" + red: "#B87C7C" + green: "#8A9A5B" + yellow: "#B8A76B" + blue: "#6B8C9D" + magenta: "#9D6B9D" + cyan: "#6B9D9D" + white: "#FFFFFF" + brightBlack: "#1E1E1E" + brightRed: "#B87C7C" + brightGreen: "#8A9A5B" + brightYellow: "#B8A76B" + brightBlue: "#6B8C9D" + brightMagenta: "#9D6B9D" + brightCyan: "#6B9D9D" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 94.4 + black: 101.8 + red: 59.3 + green: 55.6 + yellow: 45.3 + blue: 61.5 + magenta: 66.8 + cyan: 55.2 + white: 0 + brightBlack: 101.8 + brightRed: 59.3 + brightGreen: 55.6 + brightYellow: 45.3 + brightBlue: 61.5 + brightMagenta: 66.8 + brightCyan: 55.2 + brightWhite: 0 diff --git a/themes/eye-care.yaml b/themes/eye-care.yaml new file mode 100644 index 00000000..8b18b704 --- /dev/null +++ b/themes/eye-care.yaml @@ -0,0 +1,49 @@ +name: "eye-care" +source: + marketplace_id: "NazmusSayad.onnokicu" + version: "2.4.12" + installs: 561 + author: "Nazmus Sayad" + repo: "git+github.com:nazmussayad/vscode-theme.onnokicu--" + url: "https://marketplace.visualstudio.com/items?itemName=NazmusSayad.onnokicu" +colors: + bg: "#21252C" + fg: "#ABB2BF" + black: "#4A4F5A" + red: "#EE5D69" + green: "#97C775" + yellow: "#B68353" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#CCCCCC" + brightBlack: "#616A7B" + brightRed: "#FE808A" + brightGreen: "#C2DEAD" + brightYellow: "#D1A47A" + brightBlue: "#93CFFF" + brightMagenta: "#E0A8F1" + brightCyan: "#82D2DC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 57.5 + black: 10.9 + red: 39.5 + green: 62 + yellow: 38.6 + blue: 52.8 + magenta: 43.3 + cyan: 52.7 + white: 72.8 + brightBlack: 21.7 + brightRed: 51.9 + brightGreen: 78.4 + brightYellow: 54.8 + brightBlue: 70.8 + brightMagenta: 63.5 + brightCyan: 69 + brightWhite: 105 diff --git a/themes/eye-comfort-light.yaml b/themes/eye-comfort-light.yaml new file mode 100644 index 00000000..e1b5b548 --- /dev/null +++ b/themes/eye-comfort-light.yaml @@ -0,0 +1,49 @@ +name: "Eye Comfort Light" +source: + marketplace_id: "SaikatDas.eye-comfort-themes" + version: "1.0.1" + installs: 1296 + author: "Saikat Das" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SaikatDas.eye-comfort-themes" +colors: + bg: "#FAF8F5" + fg: "#4C4F69" + black: "#5C5F77" + red: "#D20515" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#EA76CB" + cyan: "#04A5E5" + white: "#BCC0CC" + brightBlack: "#6C6F85" + brightRed: "#D20515" + brightGreen: "#40A02B" + brightYellow: "#DF8E1D" + brightBlue: "#1E66F5" + brightMagenta: "#EA76CB" + brightCyan: "#04A5E5" + brightWhite: "#ACB0BE" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 83.6 + black: 77.1 + red: 71 + green: 56.4 + yellow: 46.6 + blue: 69.2 + magenta: 46.9 + cyan: 49.1 + white: 29.9 + brightBlack: 70.2 + brightRed: 71 + brightGreen: 56.4 + brightYellow: 46.6 + brightBlue: 69.2 + brightMagenta: 46.9 + brightCyan: 49.1 + brightWhite: 38.5 diff --git a/themes/eyebreaker.yaml b/themes/eyebreaker.yaml new file mode 100644 index 00000000..b0744020 --- /dev/null +++ b/themes/eyebreaker.yaml @@ -0,0 +1,49 @@ +name: "EyeBreaker" +source: + marketplace_id: "Berpcor.eyebreakertheme" + version: "0.0.1" + installs: 68 + author: "Berpcor" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Berpcor.eyebreakertheme" +colors: + bg: "#130C43" + fg: "#31B2D1" + black: "#482FC2" + red: "#CD5757" + green: "#0DBC79" + yellow: "#CB9E17" + blue: "#1463BA" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BDDDFF" + brightBlack: "#5432FF" + brightRed: "#D51515" + brightGreen: "#23D18B" + brightYellow: "#D7D719" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 280 + contrast: + fg: 52.2 + black: 12.6 + red: 32.8 + green: 52.8 + yellow: 52.1 + blue: 21.4 + magenta: 29.5 + cyan: 47.3 + white: 82.7 + brightBlack: 20.2 + brightRed: 26.4 + brightGreen: 63.3 + brightYellow: 77.1 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 106.7 diff --git a/themes/eyecooler.yaml b/themes/eyecooler.yaml new file mode 100644 index 00000000..fdbd3103 --- /dev/null +++ b/themes/eyecooler.yaml @@ -0,0 +1,49 @@ +name: "EyeCooler" +source: + marketplace_id: "thedevtechub.eyecooler" + version: "0.3.11" + installs: 117 + author: "TheDevTecHub" + repo: "https://github.com/devendew/eyecooler" + url: "https://marketplace.visualstudio.com/items?itemName=thedevtechub.eyecooler" +colors: + bg: "#000000" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5F56" + green: "#27C93F" + yellow: "#FFBD2E" + blue: "#1E90FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#FF6E67" + brightGreen: "#5FFA68" + brightYellow: "#FFF75E" + brightBlue: "#6A9FFF" + brightMagenta: "#FF9FFF" + brightCyan: "#9FFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.6 + black: 0 + red: 46.2 + green: 59.4 + yellow: 73.7 + blue: 42.7 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 16.1 + brightRed: 49.7 + brightGreen: 86.1 + brightYellow: 99.3 + brightBlue: 51 + brightMagenta: 69.4 + brightCyan: 97.4 + brightWhite: 107.9 diff --git a/themes/eyeguard.yaml b/themes/eyeguard.yaml new file mode 100644 index 00000000..ac430a70 --- /dev/null +++ b/themes/eyeguard.yaml @@ -0,0 +1,49 @@ +name: "EyeGuard" +source: + marketplace_id: "ImamHossainRoni.EyeGuard" + version: "0.0.1" + installs: 355 + author: "Imam Hossain Roni" + repo: "https://github.com/ImamHossainRoni/eye-guard" + url: "https://marketplace.visualstudio.com/items?itemName=ImamHossainRoni.EyeGuard" +colors: + bg: "#1E1E1E" + fg: "#A9B7C6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/eyehealth-dark.yaml b/themes/eyehealth-dark.yaml new file mode 100644 index 00000000..3b007074 --- /dev/null +++ b/themes/eyehealth-dark.yaml @@ -0,0 +1,49 @@ +name: "EyeHealth Dark" +source: + marketplace_id: "jonathanhild.eyehealth" + version: "0.3.0" + installs: 5036 + author: "Jonathan Hildenbrand" + repo: "https://github.com/jonathanhild/eyehealth" + url: "https://marketplace.visualstudio.com/items?itemName=jonathanhild.eyehealth" +colors: + bg: "#424242" + fg: "#FFFFFF" + black: "#E6E9ED" + red: "#DA4453" + green: "#37BC9B" + yellow: "#FF9800" + blue: "#4A89DC" + magenta: "#D770AD" + cyan: "#3BAFDA" + white: "#8CC152" + brightBlack: "#F5F7FA" + brightRed: "#ED5565" + brightGreen: "#48CFAD" + brightYellow: "#FFB74D" + brightBlue: "#5D9CEC" + brightMagenta: "#EC87C0" + brightCyan: "#4FC1E9" + brightWhite: "#A0D468" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 97.5 + black: 82.9 + red: 22.9 + green: 45.1 + yellow: 50 + blue: 28.4 + magenta: 34 + cyan: 42.5 + white: 50.2 + brightBlack: 92 + brightRed: 30.2 + brightGreen: 55.1 + brightYellow: 61.2 + brightBlue: 37.4 + brightMagenta: 44.9 + brightCyan: 51.7 + brightWhite: 61 diff --git a/themes/eyehealth-plus-light.yaml b/themes/eyehealth-plus-light.yaml new file mode 100644 index 00000000..8bb99cff --- /dev/null +++ b/themes/eyehealth-plus-light.yaml @@ -0,0 +1,49 @@ +name: "EyeHealth Plus Light" +source: + marketplace_id: "jonathanhild.eyehealth" + version: "0.3.0" + installs: 5036 + author: "Jonathan Hildenbrand" + repo: "https://github.com/jonathanhild/eyehealth" + url: "https://marketplace.visualstudio.com/items?itemName=jonathanhild.eyehealth" +colors: + bg: "#FFFAE8" + fg: "#8D634A" + black: "#434A54" + red: "#DA4453" + green: "#37BC9B" + yellow: "#FF9800" + blue: "#4A89DC" + magenta: "#D770AD" + cyan: "#3BAFDA" + white: "#8CC152" + brightBlack: "#656D78" + brightRed: "#ED5565" + brightGreen: "#48CFAD" + brightYellow: "#FFB74D" + brightBlue: "#5D9CEC" + brightMagenta: "#EC87C0" + brightCyan: "#4FC1E9" + brightWhite: "#A0D468" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 72.8 + black: 87.5 + red: 65.2 + green: 43.4 + yellow: 38.8 + blue: 59.8 + magenta: 54.3 + cyan: 46 + white: 38.5 + brightBlack: 72.9 + brightRed: 58 + brightGreen: 33.9 + brightYellow: 28 + brightBlue: 51 + brightMagenta: 43.7 + brightCyan: 37.1 + brightWhite: 28.2 diff --git a/themes/eyera.yaml b/themes/eyera.yaml new file mode 100644 index 00000000..aea9134d --- /dev/null +++ b/themes/eyera.yaml @@ -0,0 +1,49 @@ +name: "Eyera" +source: + marketplace_id: "Eyera.eyera" + version: "1.0.2" + installs: 1 + author: "Eyera" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Eyera.eyera" +colors: + bg: "#282C34" + fg: "#EEFFFF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#545454" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 101.4 + black: 0 + red: 43.4 + green: 81 + yellow: 75.7 + blue: 52.7 + magenta: 50.6 + cyan: 75.1 + white: 103.7 + brightBlack: 11.5 + brightRed: 43.4 + brightGreen: 81 + brightYellow: 75.7 + brightBlue: 52.7 + brightMagenta: 50.6 + brightCyan: 75.1 + brightWhite: 103.7 diff --git a/themes/eyesore.yaml b/themes/eyesore.yaml new file mode 100644 index 00000000..ddfc12d5 --- /dev/null +++ b/themes/eyesore.yaml @@ -0,0 +1,49 @@ +name: "Eyesore" +source: + marketplace_id: "joonaskivikunnas.eyesore" + version: "1.1.0" + installs: 1343 + author: "Joonas Kivikunnas" + repo: "https://github.com/joonaskoo/eyesore" + url: "https://marketplace.visualstudio.com/items?itemName=joonaskivikunnas.eyesore" +colors: + bg: "#F4F4F4" + fg: "#4F4F4F" + black: "#000000" + red: "#A80000" + green: "#00A80B" + yellow: "#A8A800" + blue: "#0013A8" + magenta: "#A200A8" + cyan: "#00A5A8" + white: "#E5E5E5" + brightBlack: "#6B6B6B" + brightRed: "#FC2323" + brightGreen: "#4BFC23" + brightYellow: "#F1FC23" + brightBlue: "#2360FC" + brightMagenta: "#F823FC" + brightCyan: "#23FCFC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 81.8 + black: 99.5 + red: 78.1 + green: 51.5 + yellow: 43 + blue: 89.9 + magenta: 74.4 + cyan: 49.8 + white: 0 + brightBlack: 70 + brightRed: 57.5 + brightGreen: 11.2 + brightYellow: 0 + brightBlue: 67.5 + brightMagenta: 50.1 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/ezcord-highcontrast.yaml b/themes/ezcord-highcontrast.yaml new file mode 100644 index 00000000..0cf3c93a --- /dev/null +++ b/themes/ezcord-highcontrast.yaml @@ -0,0 +1,49 @@ +name: "ezcord-highcontrast" +source: + marketplace_id: "zkawiy.ezcord-theme" + version: "1.1.1" + installs: 46 + author: "zkawiy" + repo: "https://github.com/Nico4devv/ezcord-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zkawiy.ezcord-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#808080" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 34.8 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 16.2 + brightMagenta: 46.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/ezcord-light.yaml b/themes/ezcord-light.yaml new file mode 100644 index 00000000..ec01e26e --- /dev/null +++ b/themes/ezcord-light.yaml @@ -0,0 +1,49 @@ +name: "ezcord-light" +source: + marketplace_id: "zkawiy.ezcord-theme" + version: "1.1.1" + installs: 46 + author: "zkawiy" + repo: "https://github.com/Nico4devv/ezcord-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zkawiy.ezcord-theme" +colors: + bg: "#FFFFFF" + fg: "#2B2D31" + black: "#2B2D31" + red: "#CC0055" + green: "#00AA66" + yellow: "#CC8800" + blue: "#00AACC" + magenta: "#CC00CC" + cyan: "#00CCCC" + white: "#E3E5E8" + brightBlack: "#6A6D72" + brightRed: "#FF0077" + brightGreen: "#00FF88" + brightYellow: "#FFAA00" + brightBlue: "#00DDFF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 100.4 + black: 100.4 + red: 75.7 + green: 56.3 + yellow: 55.8 + blue: 52.6 + magenta: 70.2 + cyan: 38 + white: 13 + brightBlack: 75.8 + brightRed: 62.7 + brightGreen: 15.9 + brightYellow: 36 + brightBlue: 27.8 + brightMagenta: 55.6 + brightCyan: 11.8 + brightWhite: 0 diff --git a/themes/ezcord-pastel.yaml b/themes/ezcord-pastel.yaml new file mode 100644 index 00000000..639ee1ca --- /dev/null +++ b/themes/ezcord-pastel.yaml @@ -0,0 +1,49 @@ +name: "ezcord-pastel" +source: + marketplace_id: "zkawiy.ezcord-theme" + version: "1.1.1" + installs: 46 + author: "zkawiy" + repo: "https://github.com/Nico4devv/ezcord-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zkawiy.ezcord-theme" +colors: + bg: "#1A1625" + fg: "#E8D5E8" + black: "#1A1625" + red: "#E89AC7" + green: "#A7D6C9" + yellow: "#F0D3A8" + blue: "#A8C7F0" + magenta: "#D6A7C9" + cyan: "#A8E8F0" + white: "#E8D5E8" + brightBlack: "#5A5068" + brightRed: "#F0AAD6" + brightGreen: "#B8E6D9" + brightYellow: "#F8DDB8" + brightBlue: "#B8D7F8" + brightMagenta: "#E6B8D9" + brightCyan: "#B8F0F8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 296 + contrast: + fg: 83.4 + black: 0 + red: 59.5 + green: 74.7 + yellow: 81.2 + blue: 70.1 + magenta: 61.2 + cyan: 85 + white: 83.4 + brightBlack: 14.7 + brightRed: 67 + brightGreen: 84.5 + brightYellow: 87.2 + brightBlue: 79.1 + brightMagenta: 70.7 + brightCyan: 90.7 + brightWhite: 106.7 diff --git a/themes/ezcord.yaml b/themes/ezcord.yaml new file mode 100644 index 00000000..1e0ba125 --- /dev/null +++ b/themes/ezcord.yaml @@ -0,0 +1,49 @@ +name: "ezcord" +source: + marketplace_id: "zkawiy.ezcord-theme" + version: "1.1.1" + installs: 46 + author: "zkawiy" + repo: "https://github.com/Nico4devv/ezcord-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zkawiy.ezcord-theme" +colors: + bg: "#0D0E10" + fg: "#E3E5E8" + black: "#0D0E10" + red: "#FF0077" + green: "#00FF88" + yellow: "#FFAA00" + blue: "#00DDFF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#E3E5E8" + brightBlack: "#3A3D42" + brightRed: "#FF3399" + brightGreen: "#33FFAA" + brightYellow: "#FFCC33" + brightBlue: "#33EEFF" + brightMagenta: "#FF33FF" + brightCyan: "#33FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 90.6 + black: 0 + red: 38.7 + green: 87.4 + yellow: 66.2 + blue: 74.8 + magenta: 45.9 + cyan: 91.9 + white: 90.6 + brightBlack: 0 + brightRed: 41.7 + brightGreen: 88.7 + brightYellow: 79.4 + brightBlue: 83.5 + brightMagenta: 47.6 + brightCyan: 92.2 + brightWhite: 107.6 diff --git a/themes/ezgiturali-halloween.yaml b/themes/ezgiturali-halloween.yaml new file mode 100644 index 00000000..21434276 --- /dev/null +++ b/themes/ezgiturali-halloween.yaml @@ -0,0 +1,49 @@ +name: "ezgiturali-halloween" +source: + marketplace_id: "ezgiturali.ezgiturali-halloween" + version: "0.6.0" + installs: 240 + author: "ezgiturali" + repo: "https://github.com/ezgiturali/vscode-halloween-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ezgiturali.ezgiturali-halloween" +colors: + bg: "#242423" + fg: "#A7B5E0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 60.1 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 27.4 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/ezra.yaml b/themes/ezra.yaml new file mode 100644 index 00000000..1be41fd2 --- /dev/null +++ b/themes/ezra.yaml @@ -0,0 +1,49 @@ +name: "Ezra" +source: + marketplace_id: "AleksandarCugurovic.ezra" + version: "1.0.0" + installs: 154 + author: "Aleksandar Cugurovic" + repo: "https://github.com/choogoor/ezra" + url: "https://marketplace.visualstudio.com/items?itemName=AleksandarCugurovic.ezra" +colors: + bg: "#161E1F" + fg: "#B6B6C1" + black: "#2D3538" + red: "#F2777A" + green: "#80ED99" + yellow: "#FFD479" + blue: "#127EE2" + magenta: "#E477D2" + cyan: "#23B5D3" + white: "#FFFFFF" + brightBlack: "#48575D" + brightRed: "#F2777A" + brightGreen: "#92D192" + brightYellow: "#FFD479" + brightBlue: "#127EE2" + brightMagenta: "#E1A6F2" + brightCyan: "#62CFCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: 206 + contrast: + fg: 61.7 + black: 0 + red: 47.9 + green: 80.5 + yellow: 82.3 + blue: 32.4 + magenta: 48.8 + cyan: 52.9 + white: 106.2 + brightBlack: 14.3 + brightRed: 47.9 + brightGreen: 68.1 + brightYellow: 82.3 + brightBlue: 32.4 + brightMagenta: 64.2 + brightCyan: 66.3 + brightWhite: 106.2 diff --git a/themes/fabi.yaml b/themes/fabi.yaml new file mode 100644 index 00000000..67d4c05c --- /dev/null +++ b/themes/fabi.yaml @@ -0,0 +1,49 @@ +name: "Fabi" +source: + marketplace_id: "Fabius.fa" + version: "0.0.3" + installs: 194 + author: "Fabius" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Fabius.fa" +colors: + bg: "#2D3436" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 217 + contrast: + fg: 102.1 + black: 0 + red: 21.9 + green: 48.2 + yellow: 80.8 + blue: 22.6 + magenta: 25 + cyan: 42.8 + white: 85.2 + brightBlack: 17.2 + brightRed: 33.8 + brightGreen: 58.7 + brightYellow: 90.8 + brightBlue: 35.2 + brightMagenta: 40.6 + brightCyan: 50.6 + brightWhite: 85.2 diff --git a/themes/fabulapps-theme.yaml b/themes/fabulapps-theme.yaml new file mode 100644 index 00000000..5b21aedb --- /dev/null +++ b/themes/fabulapps-theme.yaml @@ -0,0 +1,49 @@ +name: "FabulApps Theme" +source: + marketplace_id: "GustavoJordan.fabulapps-theme" + version: "0.0.1" + installs: 41 + author: "Gustavo Jordan" + repo: "https://github.com/gjordanra/fabulapps-visualstudio-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GustavoJordan.fabulapps-theme" +colors: + bg: "#01090D" + fg: "#47D1FF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#EBF708" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 221 + contrast: + fg: 70.3 + black: 0 + red: 44.3 + green: 85.8 + yellow: 99.5 + blue: 54.5 + magenta: 55.5 + cyan: 84.9 + white: 102.9 + brightBlack: 29 + brightRed: 49.7 + brightGreen: 89.9 + brightYellow: 95.9 + brightBlue: 67 + brightMagenta: 63.5 + brightCyan: 97.7 + brightWhite: 107.8 diff --git a/themes/fabulous-las-vegas-after-dark.yaml b/themes/fabulous-las-vegas-after-dark.yaml new file mode 100644 index 00000000..b70e9107 --- /dev/null +++ b/themes/fabulous-las-vegas-after-dark.yaml @@ -0,0 +1,49 @@ +name: "Fabulous Las Vegas — After Dark" +source: + marketplace_id: "alpharomercoma.fabulous-las-vegas" + version: "0.1.9" + installs: 16 + author: "Alpha Romer Coma" + repo: "https://github.com/alpharomercoma/fabulous-las-vegas-extension" + url: "https://marketplace.visualstudio.com/items?itemName=alpharomercoma.fabulous-las-vegas" +colors: + bg: "#1E1B24" + fg: "#E8DDD0" + black: "#1E1B24" + red: "#F0455D" + green: "#0E9783" + yellow: "#FCBA05" + blue: "#0090BE" + magenta: "#D45D85" + cyan: "#0EAFAF" + white: "#E8DDD0" + brightBlack: "#7A6E8E" + brightRed: "#F87088" + brightGreen: "#30C4A0" + brightYellow: "#FFD050" + brightBlue: "#40C0E8" + brightMagenta: "#E890B0" + brightCyan: "#30D8D8" + brightWhite: "#FFFBF5" +meta: + mode: "dark" + accent: "orange" + hue: 300 + contrast: + fg: 85.3 + black: 0 + red: 37 + green: 36.6 + yellow: 70.2 + blue: 36.5 + magenta: 36.2 + cyan: 48.4 + white: 85.3 + brightBlack: 27.3 + brightRed: 47.9 + brightGreen: 57.6 + brightYellow: 80 + brightBlue: 59.5 + brightMagenta: 54.9 + brightCyan: 69.4 + brightWhite: 103.9 diff --git a/themes/fabulous-las-vegas-high-noon.yaml b/themes/fabulous-las-vegas-high-noon.yaml new file mode 100644 index 00000000..00db05e0 --- /dev/null +++ b/themes/fabulous-las-vegas-high-noon.yaml @@ -0,0 +1,49 @@ +name: "Fabulous Las Vegas — High Noon" +source: + marketplace_id: "alpharomercoma.fabulous-las-vegas" + version: "0.1.9" + installs: 16 + author: "Alpha Romer Coma" + repo: "https://github.com/alpharomercoma/fabulous-las-vegas-extension" + url: "https://marketplace.visualstudio.com/items?itemName=alpharomercoma.fabulous-las-vegas" +colors: + bg: "#FFFBF5" + fg: "#352A1D" + black: "#352A1D" + red: "#C9122B" + green: "#0C7566" + yellow: "#A04500" + blue: "#00769B" + magenta: "#B5325E" + cyan: "#0C8C8C" + white: "#F5ECE0" + brightBlack: "#6B5A4A" + brightRed: "#E5334F" + brightGreen: "#12A68A" + brightYellow: "#D47800" + brightBlue: "#1097C4" + brightMagenta: "#D44A78" + brightCyan: "#12B5B5" + brightWhite: "#FFFBF5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.5 + black: 98.5 + red: 74.7 + green: 75.4 + yellow: 78.4 + blue: 72.9 + magenta: 76 + cyan: 65.3 + white: 0 + brightBlack: 80.5 + brightRed: 65.8 + brightGreen: 54.9 + brightYellow: 57 + brightBlue: 58.4 + brightMagenta: 65.6 + brightCyan: 46.9 + brightWhite: 0 diff --git a/themes/fady-ehab-amer-dark-theme.yaml b/themes/fady-ehab-amer-dark-theme.yaml new file mode 100644 index 00000000..b0a92fd7 --- /dev/null +++ b/themes/fady-ehab-amer-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "FADY EHAB AMER DARK THEME" +source: + marketplace_id: "FADYEHABAMER.FADYEHABAMER" + version: "1.1.2" + installs: 207 + author: "FADY EHAB AMER" + repo: "https://github.com/fadyehabamer/VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=FADYEHABAMER.FADYEHABAMER" +colors: + bg: "#141619" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2162A9" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 20.4 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/faerie-online.yaml b/themes/faerie-online.yaml new file mode 100644 index 00000000..e49af4c8 --- /dev/null +++ b/themes/faerie-online.yaml @@ -0,0 +1,49 @@ +name: "Faerie.Online" +source: + marketplace_id: "FaerieOnline.faerie-online" + version: "1.0.0" + installs: 48 + author: "Faerie.Online" + repo: "https://github.com/lunatisenpai/faerie-online" + url: "https://marketplace.visualstudio.com/items?itemName=FaerieOnline.faerie-online" +colors: + bg: "#170934" + fg: "#C7F0F6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 292 + contrast: + fg: 92.5 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.8 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/fakedonald-s.yaml b/themes/fakedonald-s.yaml new file mode 100644 index 00000000..f8b49e92 --- /dev/null +++ b/themes/fakedonald-s.yaml @@ -0,0 +1,49 @@ +name: "FakeDonald's" +source: + marketplace_id: "SamuelePignone.fakedonalds" + version: "0.0.1" + installs: 11830 + author: "Samuele Pignone" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SamuelePignone.fakedonalds" +colors: + bg: "#C31C2B" + fg: "#FDAF17" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 24 + contrast: + fg: 43.2 + black: 26.2 + red: 0 + green: 28 + yellow: 19.1 + blue: 0 + magenta: 0 + cyan: 16.4 + white: 0 + brightBlack: 0 + brightRed: 0 + brightGreen: 36.6 + brightYellow: 36.6 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 16.4 + brightWhite: 28.8 diff --git a/themes/falcon.yaml b/themes/falcon.yaml new file mode 100644 index 00000000..ceca2728 --- /dev/null +++ b/themes/falcon.yaml @@ -0,0 +1,49 @@ +name: "Falcon" +source: + marketplace_id: "robfalken.falcon" + version: "0.0.12" + installs: 537 + author: "Rob Falken" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=robfalken.falcon" +colors: + bg: "#343142" + fg: "#8B9DFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 293 + contrast: + fg: 46.9 + black: 0 + red: 21.8 + green: 48.1 + yellow: 80.7 + blue: 22.5 + magenta: 24.9 + cyan: 42.7 + white: 85.1 + brightBlack: 17.1 + brightRed: 33.7 + brightGreen: 58.6 + brightYellow: 90.7 + brightBlue: 35.1 + brightMagenta: 40.5 + brightCyan: 50.5 + brightWhite: 85.1 diff --git a/themes/falconui-theme.yaml b/themes/falconui-theme.yaml new file mode 100644 index 00000000..fdeb0230 --- /dev/null +++ b/themes/falconui-theme.yaml @@ -0,0 +1,49 @@ +name: "FalconUI Theme" +source: + marketplace_id: "ferdipret.falcon-ui-theme" + version: "0.0.2" + installs: 397 + author: "ferdipret" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ferdipret.falcon-ui-theme" +colors: + bg: "#101218" + fg: "#FFFFFF" + black: "#000000" + red: "#D90032" + green: "#1CA381" + yellow: "#FFDE00" + blue: "#03A9F4" + magenta: "#FB94FF" + cyan: "#0098A8" + white: "#F2F2F2" + brightBlack: "#000000" + brightRed: "#EC7F98" + brightGreen: "#8DD1C0" + brightYellow: "#FFEE7F" + brightBlue: "#81D4F9" + brightMagenta: "#FB94FF" + brightCyan: "#7FCBD3" + brightWhite: "#1F222D" +meta: + mode: "dark" + accent: "orange" + hue: 271 + contrast: + fg: 107.3 + black: 0 + red: 27.8 + green: 42.7 + yellow: 86.7 + blue: 50.8 + magenta: 64.7 + cyan: 39.5 + white: 98.8 + brightBlack: 0 + brightRed: 50.8 + brightGreen: 70.3 + brightYellow: 95 + brightBlue: 73.6 + brightMagenta: 64.7 + brightCyan: 67.4 + brightWhite: 0 diff --git a/themes/fallout-theme.yaml b/themes/fallout-theme.yaml new file mode 100644 index 00000000..0be360c4 --- /dev/null +++ b/themes/fallout-theme.yaml @@ -0,0 +1,49 @@ +name: "fallout-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#000000" + fg: "#39FF14" + black: "#39FF14" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 87 + black: 87 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/famous-dev-light.yaml b/themes/famous-dev-light.yaml new file mode 100644 index 00000000..4306e904 --- /dev/null +++ b/themes/famous-dev-light.yaml @@ -0,0 +1,49 @@ +name: "Famous Dev Light" +source: + marketplace_id: "SurajPrasad.jetverse-theme" + version: "0.0.9" + installs: 60 + author: "Suraj Prasad" + repo: "https://github.com/SurajPrasaad/jetverse-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SurajPrasad.jetverse-theme" +colors: + bg: "#FFFFFF" + fg: "#2D323C" + black: "#000000" + red: "#E74C3C" + green: "#2ECC71" + yellow: "#F39C12" + blue: "#3498DB" + magenta: "#8E44AD" + cyan: "#1ABC9C" + white: "#ECF0F1" + brightBlack: "#7F8C8D" + brightRed: "#C0392B" + brightGreen: "#27AE60" + brightYellow: "#F1C40F" + brightBlue: "#2980B9" + brightMagenta: "#9B59B6" + brightCyan: "#16A085" + brightWhite: "#BDC3C7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99 + black: 106 + red: 64.6 + green: 40.6 + yellow: 42.8 + blue: 58.2 + magenta: 78.8 + cyan: 46.9 + white: 0 + brightBlack: 62.4 + brightRed: 75.9 + brightGreen: 54.4 + brightYellow: 28.9 + brightBlue: 69.4 + brightMagenta: 72.1 + brightCyan: 59.6 + brightWhite: 32.8 diff --git a/themes/famous-dev-midnight.yaml b/themes/famous-dev-midnight.yaml new file mode 100644 index 00000000..634f8cef --- /dev/null +++ b/themes/famous-dev-midnight.yaml @@ -0,0 +1,49 @@ +name: "Famous Dev Midnight" +source: + marketplace_id: "SurajPrasad.jetverse-theme" + version: "0.0.9" + installs: 60 + author: "Suraj Prasad" + repo: "https://github.com/SurajPrasaad/jetverse-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SurajPrasad.jetverse-theme" +colors: + bg: "#0F0F17" + fg: "#C0C5CE" + black: "#343D46" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#8FA1B3" + magenta: "#B48EAD" + cyan: "#96B5B4" + white: "#C0C5CE" + brightBlack: "#4F5B66" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#8FA1B3" + brightMagenta: "#B48EAD" + brightCyan: "#96B5B4" + brightWhite: "#D8DEE9" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 70.9 + black: 0 + red: 33.6 + green: 62.2 + yellow: 77 + blue: 49.8 + magenta: 47.1 + cyan: 58.5 + white: 70.9 + brightBlack: 17.5 + brightRed: 33.6 + brightGreen: 62.2 + brightYellow: 77 + brightBlue: 49.8 + brightMagenta: 47.1 + brightCyan: 58.5 + brightWhite: 85.9 diff --git a/themes/fanuc-karel.yaml b/themes/fanuc-karel.yaml new file mode 100644 index 00000000..7c73ebf8 --- /dev/null +++ b/themes/fanuc-karel.yaml @@ -0,0 +1,49 @@ +name: "Fanuc Karel" +source: + marketplace_id: "HunterTruba1022.fanuc-karel" + version: "1.0.0" + installs: 1108 + author: "HunterTruba1022" + repo: "https://github.com/HunterTruba/Fanuc-Karel" + url: "https://marketplace.visualstudio.com/items?itemName=HunterTruba1022.fanuc-karel" +colors: + bg: "#1A1D1E" + fg: "#EBDBB2" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.8 + black: 0 + red: 24.6 + green: 42.3 + yellow: 51.9 + blue: 31 + magenta: 31.1 + cyan: 41.3 + white: 46.6 + brightBlack: 35.7 + brightRed: 39.5 + brightGreen: 60.5 + brightYellow: 71.2 + brightBlue: 48 + brightMagenta: 47.3 + brightCyan: 59.5 + brightWhite: 83.8 diff --git a/themes/fcc0ff.yaml b/themes/fcc0ff.yaml new file mode 100644 index 00000000..a8f40d9c --- /dev/null +++ b/themes/fcc0ff.yaml @@ -0,0 +1,49 @@ +name: "fcc0ff" +source: + marketplace_id: "vzze.fcc0ff" + version: "1.7.9" + installs: 228 + author: "vzze" + repo: "https://github.com/vzze/fcc0ff-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vzze.fcc0ff" +colors: + bg: "#1F1C21" + fg: "#B6B6B6" + black: "#000000" + red: "#CD3131" + green: "#92FF8D" + yellow: "#FFFB8D" + blue: "#1986FF" + magenta: "#FA8DFF" + cyan: "#8DCCFF" + white: "#D3D3D3" + brightBlack: "#797979" + brightRed: "#F14C4C" + brightGreen: "#C3FFC0" + brightYellow: "#FFFDC0" + brightBlue: "#4CA1FF" + brightMagenta: "#FCC0FF" + brightCyan: "#C0E3FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 312 + contrast: + fg: 61.2 + black: 0 + red: 26 + green: 90.5 + yellow: 100.3 + blue: 37.5 + magenta: 61.4 + cyan: 70.2 + white: 78.2 + brightBlack: 29.8 + brightRed: 37.9 + brightGreen: 96.2 + brightYellow: 102.7 + brightBlue: 48.5 + brightMagenta: 78.7 + brightCyan: 85.2 + brightWhite: 106.2 diff --git a/themes/fcode.yaml b/themes/fcode.yaml new file mode 100644 index 00000000..f62a0915 --- /dev/null +++ b/themes/fcode.yaml @@ -0,0 +1,49 @@ +name: "fcode" +source: + marketplace_id: "flanggut.fcode-theme" + version: "0.0.2" + installs: 80 + author: "flanggut" + repo: "https://github.com/flanggut/fcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=flanggut.fcode-theme" +colors: + bg: "#292A2F" + fg: "#D9D9D9" + black: "#2F3238" + red: "#F08776" + green: "#BBE492" + yellow: "#F4C543" + blue: "#69AEC8" + magenta: "#EF82B1" + cyan: "#89BFB3" + white: "#E5E9F0" + brightBlack: "#656F81" + brightRed: "#E78474" + brightGreen: "#BBE492" + brightYellow: "#D6CA85" + brightBlue: "#88DDFB" + brightMagenta: "#EF82B1" + brightCyan: "#BBF0E4" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 79.7 + black: 0 + red: 49.5 + green: 78.7 + yellow: 71.3 + blue: 49.6 + magenta: 49.9 + cyan: 58.2 + white: 89.5 + brightBlack: 22.8 + brightRed: 46.9 + brightGreen: 78.7 + brightYellow: 69.9 + brightBlue: 75.1 + brightMagenta: 49.9 + brightCyan: 87.3 + brightWhite: 93.4 diff --git a/themes/fearless-dark.yaml b/themes/fearless-dark.yaml new file mode 100644 index 00000000..37082544 --- /dev/null +++ b/themes/fearless-dark.yaml @@ -0,0 +1,49 @@ +name: "Fearless Dark" +source: + marketplace_id: "kevinhaube.fearless-color-theme" + version: "0.1.2" + installs: 326 + author: "kevinhaube" + repo: "https://github.com/kevinhaube/fearless-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kevinhaube.fearless-color-theme" +colors: + bg: "#242229" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 299 + contrast: + fg: 77.9 + black: 0 + red: 25.1 + green: 51.4 + yellow: 84 + blue: 25.8 + magenta: 28.2 + cyan: 46 + white: 88.4 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/feefoolec-2-0.yaml b/themes/feefoolec-2-0.yaml new file mode 100644 index 00000000..84f5dd29 --- /dev/null +++ b/themes/feefoolec-2-0.yaml @@ -0,0 +1,49 @@ +name: "Feefoolec 2.0" +source: + marketplace_id: "Feefoolec.feefoolec-2-vscode-theme" + version: "2.0.0" + installs: 54 + author: "Feefoolec" + repo: "https://github.com/FilipKajetaniak/feefoolec-theme-2.0" + url: "https://marketplace.visualstudio.com/items?itemName=Feefoolec.feefoolec-2-vscode-theme" +colors: + bg: "#2E2E2E" + fg: "#D4D4D4" + black: "#000000" + red: "#FF5E87" + green: "#83FF96" + yellow: "#FFEF6A" + blue: "#8AB5F7" + magenta: "#C687FF" + cyan: "#73F9FF" + white: "#D4D4D4" + brightBlack: "#000000" + brightRed: "#FF87A6" + brightGreen: "#B2FFB0" + brightYellow: "#F8FF89" + brightBlue: "#9ECDFF" + brightMagenta: "#E7A5FF" + brightCyan: "#B7FFE7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 75.8 + black: 0 + red: 42.5 + green: 86.8 + yellow: 91.1 + blue: 56.7 + magenta: 48 + cyan: 86.9 + white: 75.8 + brightBlack: 0 + brightRed: 53.2 + brightGreen: 91.1 + brightYellow: 98.2 + brightBlue: 69.1 + brightMagenta: 62.6 + brightCyan: 93.6 + brightWhite: 103.2 diff --git a/themes/feels-like-progress-light.yaml b/themes/feels-like-progress-light.yaml new file mode 100644 index 00000000..e93f0c88 --- /dev/null +++ b/themes/feels-like-progress-light.yaml @@ -0,0 +1,49 @@ +name: "Feels Like Progress Light" +source: + marketplace_id: "PhilippComans.feels-like-progress" + version: "1.0.0" + installs: 29 + author: "Philipp Comans" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PhilippComans.feels-like-progress" +colors: + bg: "#FFFFFF" + fg: "#133928" + black: "#2A2A2A" + red: "#EA819B" + green: "#1EC677" + yellow: "#FFEB84" + blue: "#8DCFD3" + magenta: "#F7BDFE" + cyan: "#3CCD88" + white: "#FFFFFF" + brightBlack: "#767676" + brightRed: "#EE7979" + brightGreen: "#AEE3C1" + brightYellow: "#FFF9D8" + brightBlue: "#CFF9F6" + brightMagenta: "#FDE3FF" + brightCyan: "#DDF1DC" + brightWhite: "#F6F6F6" +meta: + mode: "light" + accent: "teal" + hue: null + contrast: + fg: 98.7 + black: 101.1 + red: 50.3 + green: 43.4 + yellow: 9.8 + blue: 31.9 + magenta: 24.7 + cyan: 39.3 + white: 0 + brightBlack: 71.6 + brightRed: 52.6 + brightGreen: 21.1 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 9.4 + brightCyan: 9.1 + brightWhite: 0 diff --git a/themes/felina.yaml b/themes/felina.yaml new file mode 100644 index 00000000..6c521f29 --- /dev/null +++ b/themes/felina.yaml @@ -0,0 +1,49 @@ +name: "Felina" +source: + marketplace_id: "veoper.felina" + version: "0.0.2" + installs: 210 + author: "veoper" + repo: "https://github.com/veoper/felina-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=veoper.felina" +colors: + bg: "#1B1B1B" + fg: "#E0E0E0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 86.4 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/feline-color-theme.yaml b/themes/feline-color-theme.yaml new file mode 100644 index 00000000..488c2ed6 --- /dev/null +++ b/themes/feline-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Feline-color-theme" +source: + marketplace_id: "feline-color-theme.feline-color-theme" + version: "0.0.1" + installs: 119 + author: "Feline Color Theme" + repo: "https://github.com/thailanelopes/Meu_tema_VsCode" + url: "https://marketplace.visualstudio.com/items?itemName=feline-color-theme.feline-color-theme" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#FF0000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#2CFF00" + brightBlack: "#65F900" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 80.5 + black: 37.5 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 86.7 + brightBlack: 85.1 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/feline-theme.yaml b/themes/feline-theme.yaml new file mode 100644 index 00000000..3ced90b7 --- /dev/null +++ b/themes/feline-theme.yaml @@ -0,0 +1,49 @@ +name: "Feline-theme" +source: + marketplace_id: "feline-theme.feline-theme" + version: "0.0.1" + installs: 1 + author: "Feline Theme" + repo: "https://github.com/thailanelopes/Meu_tema_VsCode" + url: "https://marketplace.visualstudio.com/items?itemName=feline-theme.feline-theme" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#FF0000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#2CFF00" + brightBlack: "#65F900" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 78.7 + black: 35.7 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 84.9 + brightBlack: 83.3 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 106 diff --git a/themes/felixo-green-contrast.yaml b/themes/felixo-green-contrast.yaml new file mode 100644 index 00000000..c5866b80 --- /dev/null +++ b/themes/felixo-green-contrast.yaml @@ -0,0 +1,49 @@ +name: "felixo-green-contrast" +source: + marketplace_id: "waroi.felixo" + version: "1.0.0" + installs: 845 + author: "waroi" + repo: "https://github.com/waroi/felixoTheme" + url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" +colors: + bg: "#110F0E" + fg: "#F8F8F2" + black: "#1F1B19" + red: "#BA0E2E" + green: "#00A651" + yellow: "#F23A3A" + blue: "#F8BB39" + magenta: "#FC803D" + cyan: "#00A651" + white: "#FFFFFF" + brightBlack: "#49403C" + brightRed: "#F03E5F" + brightGreen: "#75DEAF" + brightYellow: "#F89A9A" + brightBlue: "#FBDD9B" + brightMagenta: "#FEC2A1" + brightCyan: "#75DEAF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 102.6 + black: 0 + red: 21.1 + green: 42.9 + yellow: 36.8 + blue: 71.3 + magenta: 52.5 + cyan: 42.9 + white: 107.5 + brightBlack: 8.7 + brightRed: 37.4 + brightGreen: 74.4 + brightYellow: 61.4 + brightBlue: 87.6 + brightMagenta: 77 + brightCyan: 74.4 + brightWhite: 107.5 diff --git a/themes/felixo-green-light.yaml b/themes/felixo-green-light.yaml new file mode 100644 index 00000000..3da9eb45 --- /dev/null +++ b/themes/felixo-green-light.yaml @@ -0,0 +1,49 @@ +name: "felixo-green-light" +source: + marketplace_id: "waroi.felixo" + version: "1.0.0" + installs: 845 + author: "waroi" + repo: "https://github.com/waroi/felixoTheme" + url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" +colors: + bg: "#FFFFFF" + fg: "#36312C" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#00A651" + yellow: "#B22727" + blue: "#AF8323" + magenta: "#BA5A27" + cyan: "#00A651" + white: "#443E37" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#2DC580" + brightYellow: "#DD6262" + brightBlue: "#DEB45A" + brightMagenta: "#DF9168" + brightCyan: "#2DC580" + brightWhite: "#6E645A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99 + black: 0 + red: 80.3 + green: 58.4 + yellow: 80.9 + blue: 61.8 + magenta: 71.3 + cyan: 58.4 + white: 94.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 43.5 + brightYellow: 62 + brightBlue: 37.3 + brightMagenta: 48.9 + brightCyan: 43.5 + brightWhite: 78.9 diff --git a/themes/felixo-green.yaml b/themes/felixo-green.yaml new file mode 100644 index 00000000..8b3c488a --- /dev/null +++ b/themes/felixo-green.yaml @@ -0,0 +1,49 @@ +name: "felixo-green" +source: + marketplace_id: "waroi.felixo" + version: "1.0.0" + installs: 845 + author: "waroi" + repo: "https://github.com/waroi/felixoTheme" + url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" +colors: + bg: "#36312C" + fg: "#F8F8F2" + black: "#443E37" + red: "#BA0E2E" + green: "#00A651" + yellow: "#F23A3A" + blue: "#F8BB39" + magenta: "#FC803D" + cyan: "#00A651" + white: "#FFFFFF" + brightBlack: "#6E645A" + brightRed: "#F03E5F" + brightGreen: "#75DEAF" + brightYellow: "#F89A9A" + brightBlue: "#FBDD9B" + brightMagenta: "#FEC2A1" + brightCyan: "#75DEAF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 67 + contrast: + fg: 97.4 + black: 0 + red: 15.9 + green: 37.8 + yellow: 31.7 + blue: 66.2 + magenta: 47.4 + cyan: 37.8 + white: 102.3 + brightBlack: 17.3 + brightRed: 32.2 + brightGreen: 69.2 + brightYellow: 56.2 + brightBlue: 82.4 + brightMagenta: 71.9 + brightCyan: 69.2 + brightWhite: 102.3 diff --git a/themes/felixo-orange-contrast.yaml b/themes/felixo-orange-contrast.yaml new file mode 100644 index 00000000..06d36075 --- /dev/null +++ b/themes/felixo-orange-contrast.yaml @@ -0,0 +1,49 @@ +name: "felixo-orange-contrast" +source: + marketplace_id: "waroi.felixo" + version: "1.0.0" + installs: 845 + author: "waroi" + repo: "https://github.com/waroi/felixoTheme" + url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" +colors: + bg: "#110F0E" + fg: "#F8F8F2" + black: "#1F1B19" + red: "#BA0E2E" + green: "#FF4A03" + yellow: "#F23A3A" + blue: "#F8BB39" + magenta: "#FC803D" + cyan: "#FF4A03" + white: "#FFFFFF" + brightBlack: "#49403C" + brightRed: "#F03E5F" + brightGreen: "#75DEAF" + brightYellow: "#F89A9A" + brightBlue: "#FBDD9B" + brightMagenta: "#FEC2A1" + brightCyan: "#75DEAF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 102.6 + black: 0 + red: 21.1 + green: 41.7 + yellow: 36.8 + blue: 71.3 + magenta: 52.5 + cyan: 41.7 + white: 107.5 + brightBlack: 8.7 + brightRed: 37.4 + brightGreen: 74.4 + brightYellow: 61.4 + brightBlue: 87.6 + brightMagenta: 77 + brightCyan: 74.4 + brightWhite: 107.5 diff --git a/themes/felixo-orange-light.yaml b/themes/felixo-orange-light.yaml new file mode 100644 index 00000000..a76240d4 --- /dev/null +++ b/themes/felixo-orange-light.yaml @@ -0,0 +1,49 @@ +name: "felixo-orange-light" +source: + marketplace_id: "waroi.felixo" + version: "1.0.0" + installs: 845 + author: "waroi" + repo: "https://github.com/waroi/felixoTheme" + url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" +colors: + bg: "#FFFFFF" + fg: "#36312C" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#FF4A03" + yellow: "#B22727" + blue: "#AF8323" + magenta: "#BA5A27" + cyan: "#FF4A03" + white: "#443E37" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#2DC580" + brightYellow: "#DD6262" + brightBlue: "#DEB45A" + brightMagenta: "#DF9168" + brightCyan: "#2DC580" + brightWhite: "#6E645A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99 + black: 0 + red: 80.3 + green: 59.6 + yellow: 80.9 + blue: 61.8 + magenta: 71.3 + cyan: 59.6 + white: 94.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 43.5 + brightYellow: 62 + brightBlue: 37.3 + brightMagenta: 48.9 + brightCyan: 43.5 + brightWhite: 78.9 diff --git a/themes/felixo-orange.yaml b/themes/felixo-orange.yaml new file mode 100644 index 00000000..94a5737b --- /dev/null +++ b/themes/felixo-orange.yaml @@ -0,0 +1,49 @@ +name: "felixo-orange" +source: + marketplace_id: "waroi.felixo" + version: "1.0.0" + installs: 845 + author: "waroi" + repo: "https://github.com/waroi/felixoTheme" + url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" +colors: + bg: "#36312C" + fg: "#F8F8F2" + black: "#443E37" + red: "#BA0E2E" + green: "#FF4A03" + yellow: "#F23A3A" + blue: "#F8BB39" + magenta: "#FC803D" + cyan: "#FF4A03" + white: "#FFFFFF" + brightBlack: "#6E645A" + brightRed: "#F03E5F" + brightGreen: "#75DEAF" + brightYellow: "#F89A9A" + brightBlue: "#FBDD9B" + brightMagenta: "#FEC2A1" + brightCyan: "#75DEAF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 67 + contrast: + fg: 97.4 + black: 0 + red: 15.9 + green: 36.5 + yellow: 31.7 + blue: 66.2 + magenta: 47.4 + cyan: 36.5 + white: 102.3 + brightBlack: 17.3 + brightRed: 32.2 + brightGreen: 69.2 + brightYellow: 56.2 + brightBlue: 82.4 + brightMagenta: 71.9 + brightCyan: 69.2 + brightWhite: 102.3 diff --git a/themes/felixoux-theme.yaml b/themes/felixoux-theme.yaml new file mode 100644 index 00000000..e8e78a0e --- /dev/null +++ b/themes/felixoux-theme.yaml @@ -0,0 +1,49 @@ +name: "Felixoux-theme" +source: + marketplace_id: "Felixouxtheme.felixoux-theme" + version: "0.2.0" + installs: 125 + author: "felixoux_theme" + repo: "https://github.com/Felixoux/Felixoux" + url: "https://marketplace.visualstudio.com/items?itemName=Felixouxtheme.felixoux-theme" +colors: + bg: "#171933" + fg: "#D4DCFF" + black: "#414141" + red: "#F04747" + green: "#43B581" + yellow: "#FFDA88" + blue: "#4191F3" + magenta: "#D68FD6" + cyan: "#2BC3E8" + white: "#D4DCFF" + brightBlack: "#8A8A8A" + brightRed: "#FF5C5C" + brightGreen: "#43B581" + brightYellow: "#FDB61A" + brightBlue: "#4191F3" + brightMagenta: "#F276F2" + brightCyan: "#0BA2C7" + brightWhite: "#F0F3FF" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 84.6 + black: 0 + red: 37 + green: 50.4 + yellow: 85.3 + blue: 41.4 + magenta: 53.4 + cyan: 60.5 + white: 84.6 + brightBlack: 38.1 + brightRed: 44.2 + brightGreen: 50.4 + brightYellow: 69 + brightBlue: 41.4 + brightMagenta: 53.2 + brightCyan: 44.2 + brightWhite: 98.6 diff --git a/themes/feliz-dark.yaml b/themes/feliz-dark.yaml new file mode 100644 index 00000000..a775a615 --- /dev/null +++ b/themes/feliz-dark.yaml @@ -0,0 +1,49 @@ +name: "Feliz-Dark" +source: + marketplace_id: "Feliz.feliz-dark" + version: "1.1.0" + installs: 144 + author: "Feliz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Feliz.feliz-dark" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#0C86F2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#00FFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 38 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 92.2 diff --git a/themes/ferra.yaml b/themes/ferra.yaml new file mode 100644 index 00000000..954d6e91 --- /dev/null +++ b/themes/ferra.yaml @@ -0,0 +1,49 @@ +name: "ferra" +source: + marketplace_id: "neptotech.redocs-ferra-theme" + version: "1.0.1" + installs: 55 + author: "redoc" + repo: "https://github.com/neptotech/redocs-ferra-theme" + url: "https://marketplace.visualstudio.com/items?itemName=neptotech.redocs-ferra-theme" +colors: + bg: "#2B292D" + fg: "#FECDB2" + black: "#6F5D63" + red: "#E06C75" + green: "#B1B695" + yellow: "#F5D76E" + blue: "#C0C0E4" + magenta: "#D5B5F5" + cyan: "#BFD7E3" + white: "#D1D1E0" + brightBlack: "#DEBAC6" + brightRed: "#FF7B85" + brightGreen: "#F8FFD1" + brightYellow: "#FFE072" + brightBlue: "#D7D7FF" + brightMagenta: "#DEBCFF" + brightCyan: "#D7F2FF" + brightWhite: "#F1EFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.6 + black: 17.4 + red: 39.3 + green: 57.3 + yellow: 79.7 + blue: 66.5 + magenta: 65.9 + cyan: 76.2 + white: 75.6 + brightBlack: 66.8 + brightRed: 49.8 + brightGreen: 101.2 + brightYellow: 85.2 + brightBlue: 80.5 + brightMagenta: 70.4 + brightCyan: 92.7 + brightWhite: 94.7 diff --git a/themes/feta.yaml b/themes/feta.yaml new file mode 100644 index 00000000..80b37b18 --- /dev/null +++ b/themes/feta.yaml @@ -0,0 +1,49 @@ +name: "feta" +source: + marketplace_id: "hasparus.feta" + version: "0.0.4" + installs: 183 + author: "hasparus" + repo: "https://github.com/hasparus/feta" + url: "https://marketplace.visualstudio.com/items?itemName=hasparus.feta" +colors: + bg: "#FFFFFF" + fg: "#111122" + black: "#111122" + red: "#FF7474" + green: "#0EB763" + yellow: "#F09335" + blue: "#5252FF" + magenta: "#C184FF" + cyan: "#0EB2B2" + white: "#F0F0F0" + brightBlack: "#212127" + brightRed: "#FF3E3E" + brightGreen: "#0C9D55" + brightYellow: "#D47C23" + brightBlue: "#1010CF" + brightMagenta: "#B061FF" + brightCyan: "#0C9999" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 105.2 + black: 105.2 + red: 50.5 + green: 50.7 + yellow: 46 + blue: 75.2 + magenta: 50.9 + cyan: 50.4 + white: 0 + brightBlack: 103 + brightRed: 60.9 + brightGreen: 62.1 + brightYellow: 58 + brightBlue: 91.8 + brightMagenta: 62 + brightCyan: 61.8 + brightWhite: 0 diff --git a/themes/fictionaltheme.yaml b/themes/fictionaltheme.yaml new file mode 100644 index 00000000..667aea63 --- /dev/null +++ b/themes/fictionaltheme.yaml @@ -0,0 +1,49 @@ +name: "FictionalTheme" +source: + marketplace_id: "alex-savin.fictional-theme" + version: "0.0.8" + installs: 76 + author: "alex-savin" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=alex-savin.fictional-theme" +colors: + bg: "#21292C" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 223 + contrast: + fg: 104.5 + black: 0 + red: 24.3 + green: 50.6 + yellow: 83.2 + blue: 25 + magenta: 27.4 + cyan: 45.2 + white: 87.6 + brightBlack: 19.6 + brightRed: 36.2 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.6 + brightMagenta: 43 + brightCyan: 53 + brightWhite: 87.6 diff --git a/themes/fiestas.yaml b/themes/fiestas.yaml new file mode 100644 index 00000000..ed8f4ec2 --- /dev/null +++ b/themes/fiestas.yaml @@ -0,0 +1,49 @@ +name: "Fiestas" +source: + marketplace_id: "AdrielZarate.fiestas-vscode" + version: "0.2.0" + installs: 26 + author: "Adriel Zarate" + repo: "https://github.com/adrielzarate/fiestas-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AdrielZarate.fiestas-vscode" +colors: + bg: "#141D15" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 148 + contrast: + fg: 106.4 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/fifties.yaml b/themes/fifties.yaml new file mode 100644 index 00000000..99a8c73a --- /dev/null +++ b/themes/fifties.yaml @@ -0,0 +1,49 @@ +name: "fifties" +source: + marketplace_id: "fifties.fifties" + version: "0.0.5" + installs: 1060 + author: "fifties" + repo: "https://github.com/unmade/fifties" + url: "https://marketplace.visualstudio.com/items?itemName=fifties.fifties" +colors: + bg: "#2B2926" + fg: "#C9C3B1" + black: "#757166" + red: "#DD5341" + green: "#90BB8F" + yellow: "#FACA78" + blue: "#73A1B0" + magenta: "#DB7C45" + cyan: "#7FB3BD" + white: "#C9C3B1" + brightBlack: "#757166" + brightRed: "#DD5341" + brightGreen: "#90BB8F" + brightYellow: "#FACA78" + brightBlue: "#73A1B0" + brightMagenta: "#DB7C45" + brightCyan: "#7FB3BD" + brightWhite: "#C9C3B1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 66.7 + black: 24.2 + red: 32.5 + green: 56 + yellow: 75.3 + blue: 44 + magenta: 41.7 + cyan: 52.9 + white: 66.7 + brightBlack: 24.2 + brightRed: 32.5 + brightGreen: 56 + brightYellow: 75.3 + brightBlue: 44 + brightMagenta: 41.7 + brightCyan: 52.9 + brightWhite: 66.7 diff --git a/themes/fifty-shades-of-grape.yaml b/themes/fifty-shades-of-grape.yaml new file mode 100644 index 00000000..d5d5310c --- /dev/null +++ b/themes/fifty-shades-of-grape.yaml @@ -0,0 +1,49 @@ +name: "Fifty Shades of Grape" +source: + marketplace_id: "ChenYefet.fifty-shades-of-grape" + version: "0.56.0" + installs: 1234 + author: "Chen Yefet" + repo: "https://github.com/ChenYefet/fifty-shades-of-grape" + url: "https://marketplace.visualstudio.com/items?itemName=ChenYefet.fifty-shades-of-grape" +colors: + bg: "#0C0020" + fg: "#DBD4FA" + black: "#FF00DD" + red: "#00CCCC" + green: "#FF00DD" + yellow: "#AA00FF" + blue: "#AA00FF" + magenta: "#006E6E" + cyan: "#FF00DD" + white: "#00FFFF" + brightBlack: "#FF00DD" + brightRed: "#00CCCC" + brightGreen: "#FF00DD" + brightYellow: "#AA00FF" + brightBlue: "#AA00FF" + brightMagenta: "#006E6E" + brightCyan: "#FF00DD" + brightWhite: "#00FFFF" +meta: + mode: "dark" + accent: "pink" + hue: 297 + contrast: + fg: 83.1 + black: 43.6 + red: 64.2 + green: 43.6 + yellow: 29.2 + blue: 29.2 + magenta: 21.8 + cyan: 43.6 + white: 92 + brightBlack: 43.6 + brightRed: 64.2 + brightGreen: 43.6 + brightYellow: 29.2 + brightBlue: 29.2 + brightMagenta: 21.8 + brightCyan: 43.6 + brightWhite: 92 diff --git a/themes/filtered.yaml b/themes/filtered.yaml new file mode 100644 index 00000000..03b76c94 --- /dev/null +++ b/themes/filtered.yaml @@ -0,0 +1,49 @@ +name: "filtered" +source: + marketplace_id: "katcodes.filtered" + version: "1.0.6" + installs: 385 + author: "Katie Walker" + repo: "https://github.com/Kat-Codes/filtered-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=katcodes.filtered" +colors: + bg: "#0D2B36" + fg: "#F8F8F2" + black: "#1A1817" + red: "#FF6391" + green: "#A6DB92" + yellow: "#8F7BB4" + blue: "#70E7FF" + magenta: "#F565E2" + cyan: "#8BA59B" + white: "#F8F8F2" + brightBlack: "#665C54" + brightRed: "#FF6391" + brightGreen: "#A6DB92" + brightYellow: "#8F7BB4" + brightBlue: "#AFDDE6" + brightMagenta: "#F565E2" + brightCyan: "#8BA59B" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "pink" + hue: 226 + contrast: + fg: 99.5 + black: 0 + red: 45 + green: 72.7 + yellow: 33.5 + blue: 79 + magenta: 47.1 + cyan: 47 + white: 99.5 + brightBlack: 16.1 + brightRed: 45 + brightGreen: 72.7 + brightYellow: 33.5 + brightBlue: 77.7 + brightMagenta: 47.1 + brightCyan: 47 + brightWhite: 99.5 diff --git a/themes/finalbossjeff.yaml b/themes/finalbossjeff.yaml new file mode 100644 index 00000000..3caba361 --- /dev/null +++ b/themes/finalbossjeff.yaml @@ -0,0 +1,49 @@ +name: "FinalBossJeff" +source: + marketplace_id: "MyintMyatThura.finalbossjeff" + version: "0.0.1" + installs: 49 + author: "Myint Myat Thura" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MyintMyatThura.finalbossjeff" +colors: + bg: "#1D1D1D" + fg: "#F0F0F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 96.4 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/finn4ik666corp.yaml b/themes/finn4ik666corp.yaml new file mode 100644 index 00000000..815ead83 --- /dev/null +++ b/themes/finn4ik666corp.yaml @@ -0,0 +1,49 @@ +name: "finn4ik666corp" +source: + marketplace_id: "finn4ik666corp.lime-introvert" + version: "0.0.2" + installs: 121 + author: "finn4ik666corp" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=finn4ik666corp.lime-introvert" +colors: + bg: "#1B1B1B" + fg: "#C1D1A3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#B4B4B4" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.5 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 106.4 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 60.3 diff --git a/themes/firefly.yaml b/themes/firefly.yaml new file mode 100644 index 00000000..1fc33980 --- /dev/null +++ b/themes/firefly.yaml @@ -0,0 +1,49 @@ +name: "Firefly" +source: + marketplace_id: "vagalumedev.firefly" + version: "0.0.1" + installs: 14081 + author: "Vagalume Dev" + repo: "https://github.com/vagalumedev/firefly-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vagalumedev.firefly" +colors: + bg: "#1D1D1B" + fg: "#D6DEEB" + black: "#001F47" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 84.5 + black: 0 + red: 38.6 + green: 66.6 + yellow: 81.4 + blue: 55.2 + magenta: 53.1 + cyan: 59 + white: 106.2 + brightBlack: 14.9 + brightRed: 38.6 + brightGreen: 66.6 + brightYellow: 93 + brightBlue: 55.2 + brightMagenta: 53.1 + brightCyan: 73.3 + brightWhite: 106.2 diff --git a/themes/firefox-dark.yaml b/themes/firefox-dark.yaml new file mode 100644 index 00000000..f1a8a8ac --- /dev/null +++ b/themes/firefox-dark.yaml @@ -0,0 +1,49 @@ +name: "Firefox Dark" +source: + marketplace_id: "shaobeichen.gradient-theme" + version: "1.19.0" + installs: 24126 + author: "shaobeichen" + repo: "https://github.com/shaobeichen/gradient-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shaobeichen.gradient-theme" +colors: + bg: "#2A2A2E" + fg: "#B1B1B3" + black: "#000000" + red: "#EE2E24" + green: "#00853E" + yellow: "#FFD204" + blue: "#009DDC" + magenta: "#98005D" + cyan: "#85CEBC" + white: "#D9D8D8" + brightBlack: "#737171" + brightRed: "#EE2E24" + brightGreen: "#00853E" + brightYellow: "#FFD204" + brightBlue: "#009DDC" + brightMagenta: "#98005D" + brightCyan: "#85CEBC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 56.3 + black: 0 + red: 31 + green: 25.5 + yellow: 78.2 + blue: 41.1 + magenta: 11.5 + cyan: 64.9 + white: 79.2 + brightBlack: 24.1 + brightRed: 31 + brightGreen: 25.5 + brightYellow: 78.2 + brightBlue: 41.1 + brightMagenta: 11.5 + brightCyan: 64.9 + brightWhite: 104 diff --git a/themes/firelight.yaml b/themes/firelight.yaml new file mode 100644 index 00000000..9d5ba52b --- /dev/null +++ b/themes/firelight.yaml @@ -0,0 +1,49 @@ +name: "Firelight" +source: + marketplace_id: "camcgreen.firelight-vscode" + version: "0.0.4" + installs: 1587 + author: "Cam Green" + repo: "https://github.com/camcgreen/firelight-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=camcgreen.firelight-vscode" +colors: + bg: "#1D2433" + fg: "#A2AABC" + black: "#2F3B54" + red: "#EF6B73" + green: "#BAE67E" + yellow: "#FF7752" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#BAE67E" + brightYellow: "#FF7752" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "orange" + hue: 265 + contrast: + fg: 53.3 + black: 0 + red: 43.1 + green: 80.2 + yellow: 48.7 + blue: 66.1 + magenta: 59.6 + cyan: 66.1 + white: 53.3 + brightBlack: 9.4 + brightRed: 43.1 + brightGreen: 80.2 + brightYellow: 48.7 + brightBlue: 66.1 + brightMagenta: 59.6 + brightCyan: 66.1 + brightWhite: 53.3 diff --git a/themes/firewatch.yaml b/themes/firewatch.yaml new file mode 100644 index 00000000..60df7fd6 --- /dev/null +++ b/themes/firewatch.yaml @@ -0,0 +1,49 @@ +name: "firewatch" +source: + marketplace_id: "gmtstephane.firewatch" + version: "0.0.1" + installs: 916 + author: "gmtstephane" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gmtstephane.firewatch" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#3B4252" + red: "#E06C75" + green: "#A3BE8C" + yellow: "#E5C07B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#6E88A6" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#E06C75" + brightGreen: "#A3BE8C" + brightYellow: "#E5C07B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 58.5 + yellow: 67.4 + blue: 45.4 + magenta: 43.3 + cyan: 33.3 + white: 89.1 + brightBlack: 12.2 + brightRed: 38.9 + brightGreen: 58.5 + brightYellow: 67.4 + brightBlue: 45.4 + brightMagenta: 43.3 + brightCyan: 57.4 + brightWhite: 93 diff --git a/themes/flamelabs-argo.yaml b/themes/flamelabs-argo.yaml new file mode 100644 index 00000000..d1c944d6 --- /dev/null +++ b/themes/flamelabs-argo.yaml @@ -0,0 +1,49 @@ +name: "FlameLabs - Argo" +source: + marketplace_id: "Congram.flamelabs" + version: "1.3.0" + installs: 353 + author: "Congram" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Congram.flamelabs" +colors: + bg: "#191919" + fg: "#D4D4D4" + black: "#808080" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.3 + black: 33.5 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/flamelabs-fire.yaml b/themes/flamelabs-fire.yaml new file mode 100644 index 00000000..25d1360a --- /dev/null +++ b/themes/flamelabs-fire.yaml @@ -0,0 +1,49 @@ +name: "FlameLabs - Fire" +source: + marketplace_id: "Congram.flamelabs" + version: "1.3.0" + installs: 353 + author: "Congram" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Congram.flamelabs" +colors: + bg: "#1F1F1F" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#F4A261" + yellow: "#FFB000" + blue: "#E74C3C" + magenta: "#FF6F3C7" + cyan: "#FFB347" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#F4A261" + brightYellow: "#FFB000" + brightBlue: "#E74C3C" + brightMagenta: "#FF6F3C7" + brightCyan: "#FFB347" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 58.9 + black: 0 + red: 48.9 + green: 60.3 + yellow: 66.7 + blue: 35.1 + magenta: 96.6 + cyan: 68.1 + white: 31.6 + brightBlack: 0 + brightRed: 48.9 + brightGreen: 60.3 + brightYellow: 66.7 + brightBlue: 35.1 + brightMagenta: 96.6 + brightCyan: 68.1 + brightWhite: 58.5 diff --git a/themes/flamelabs-plasma.yaml b/themes/flamelabs-plasma.yaml new file mode 100644 index 00000000..4e01f8a8 --- /dev/null +++ b/themes/flamelabs-plasma.yaml @@ -0,0 +1,49 @@ +name: "FlameLabs - Plasma" +source: + marketplace_id: "Congram.flamelabs" + version: "1.3.0" + installs: 353 + author: "Congram" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Congram.flamelabs" +colors: + bg: "#1F1F1F" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 58.9 + black: 0 + red: 48.9 + green: 45.4 + yellow: 61.8 + blue: 50.7 + magenta: 54.6 + cyan: 70.1 + white: 31.6 + brightBlack: 0 + brightRed: 48.9 + brightGreen: 45.4 + brightYellow: 61.8 + brightBlue: 50.7 + brightMagenta: 54.6 + brightCyan: 70.1 + brightWhite: 58.5 diff --git a/themes/flamingo-galaxy.yaml b/themes/flamingo-galaxy.yaml new file mode 100644 index 00000000..c313762a --- /dev/null +++ b/themes/flamingo-galaxy.yaml @@ -0,0 +1,49 @@ +name: "Flamingo Galaxy" +source: + marketplace_id: "oleblaesing.flamingo-galaxy" + version: "0.0.3" + installs: 2721 + author: "oleblaesing" + repo: "https://github.com/oleblaesing/flamingo-galaxy" + url: "https://marketplace.visualstudio.com/items?itemName=oleblaesing.flamingo-galaxy" +colors: + bg: "#263647" + fg: "#FFFFFF" + black: "#000000" + red: "#FD6E72" + green: "#1DBB9B" + yellow: "#FEF035" + blue: "#69AFF8" + magenta: "#A665A6" + cyan: "#1DAFEC" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#FDA0A0" + brightGreen: "#3CC5AA" + brightYellow: "#FFFC67" + brightBlue: "#69AFF8" + brightMagenta: "#EE70A9" + brightCyan: "#478DC8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 251 + contrast: + fg: 101.5 + black: 0 + red: 43.2 + green: 48.3 + yellow: 89.2 + blue: 50.4 + magenta: 26.8 + cyan: 47.1 + white: 66.4 + brightBlack: 17.6 + brightRed: 58.5 + brightGreen: 54 + brightYellow: 95.5 + brightBlue: 50.4 + brightMagenta: 42.3 + brightCyan: 32.5 + brightWhite: 101.5 diff --git a/themes/flashbang.yaml b/themes/flashbang.yaml new file mode 100644 index 00000000..973e6911 --- /dev/null +++ b/themes/flashbang.yaml @@ -0,0 +1,49 @@ +name: "Flashbang" +source: + marketplace_id: "flashbang.flashbang" + version: "0.0.2" + installs: 1171 + author: "flashbang" + repo: "https://github.com/genetv/flashbang-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=flashbang.flashbang" +colors: + bg: "#FFFFFF" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#FFFFFF" + green: "#FFFFFF" + yellow: "#FFFFFF" + blue: "#FFFFFF" + magenta: "#FFFFFF" + cyan: "#FFFFFF" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#FFFFFF" + brightGreen: "#FFFFFF" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 0 + black: 0 + red: 0 + green: 0 + yellow: 0 + blue: 0 + magenta: 0 + cyan: 0 + white: 0 + brightBlack: 0 + brightRed: 0 + brightGreen: 0 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/flat-light.yaml b/themes/flat-light.yaml new file mode 100644 index 00000000..dcffea0f --- /dev/null +++ b/themes/flat-light.yaml @@ -0,0 +1,49 @@ +name: "Flat Light" +source: + marketplace_id: "gungorn.themes-by-gungorn" + version: "1.0.7" + installs: 151 + author: "gungorn" + repo: "https://github.com/gungorn/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=gungorn.themes-by-gungorn" +colors: + bg: "#FCFCFC" + fg: "#29343D" + black: "#29343D" + red: "#F8961E" + green: "#128C7E" + yellow: "#F3722C" + blue: "#4A154B" + magenta: "#F9C74F" + cyan: "#128C7E" + white: "#555555" + brightBlack: "#394956" + brightRed: "#F8961E" + brightGreen: "#128C7E" + brightYellow: "#F3722C" + brightBlue: "#4A154B" + brightMagenta: "#F9C74F" + brightCyan: "#128C7E" + brightWhite: "#ABABAB" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 97 + black: 97 + red: 41.9 + green: 66.2 + yellow: 52.8 + blue: 98.3 + magenta: 24.3 + cyan: 66.2 + white: 84.1 + brightBlack: 89.6 + brightRed: 41.9 + brightGreen: 66.2 + brightYellow: 52.8 + brightBlue: 98.3 + brightMagenta: 24.3 + brightCyan: 66.2 + brightWhite: 43.5 diff --git a/themes/flat-theme-gray.yaml b/themes/flat-theme-gray.yaml new file mode 100644 index 00000000..b85ec53f --- /dev/null +++ b/themes/flat-theme-gray.yaml @@ -0,0 +1,49 @@ +name: "Flat-Theme Gray" +source: + marketplace_id: "Aatricks.flat-theme" + version: "0.1.2" + installs: 87 + author: "Aatricks" + repo: "https://github.com/Aatricks/flat-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Aatricks.flat-theme" +colors: + bg: "#202124" + fg: "#CFD8DC" + black: "#202124" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#CFD8DC" + brightBlack: "#546E7A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#ECEFF1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.7 + black: 0 + red: 45.3 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 79.7 + brightBlack: 22.6 + brightRed: 45.3 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 94.8 diff --git a/themes/flat-theme-light.yaml b/themes/flat-theme-light.yaml new file mode 100644 index 00000000..4c3d9efb --- /dev/null +++ b/themes/flat-theme-light.yaml @@ -0,0 +1,49 @@ +name: "Flat-Theme Light" +source: + marketplace_id: "Aatricks.flat-theme" + version: "0.1.2" + installs: 87 + author: "Aatricks" + repo: "https://github.com/Aatricks/flat-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Aatricks.flat-theme" +colors: + bg: "#F5F5F5" + fg: "#37474F" + black: "#263238" + red: "#EF5350" + green: "#7CB342" + yellow: "#F9AE58" + blue: "#42A5F5" + magenta: "#AB47BC" + cyan: "#26C6DA" + white: "#ECEFF1" + brightBlack: "#546E7A" + brightRed: "#EF5350" + brightGreen: "#7CB342" + brightYellow: "#F9AE58" + brightBlue: "#42A5F5" + brightMagenta: "#AB47BC" + brightCyan: "#26C6DA" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 86.4 + black: 93.5 + red: 55.4 + green: 43 + yellow: 29.2 + blue: 45.2 + magenta: 66.7 + cyan: 33.8 + white: 0 + brightBlack: 70.9 + brightRed: 55.4 + brightGreen: 43 + brightYellow: 29.2 + brightBlue: 45.2 + brightMagenta: 66.7 + brightCyan: 33.8 + brightWhite: 0 diff --git a/themes/flat-ui-immersed.yaml b/themes/flat-ui-immersed.yaml new file mode 100644 index 00000000..49672bcb --- /dev/null +++ b/themes/flat-ui-immersed.yaml @@ -0,0 +1,49 @@ +name: "flat-ui immersed" +source: + marketplace_id: "lkytal.FlatUI" + version: "1.4.9" + installs: 263992 + author: "Kaiyuan Liu" + repo: "https://github.com/lkytal/vscode-theme-flatui" + url: "https://marketplace.visualstudio.com/items?itemName=lkytal.FlatUI" +colors: + bg: "#FBFBFB" + fg: "#414141" + black: "#414141" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#F0F0F0" + brightBlack: "#414141" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#FDC602" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2AA298" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 91.3 + black: 91.3 + red: 66.3 + green: 64.2 + yellow: 37 + blue: 60.1 + magenta: 65.3 + cyan: 55.5 + white: 0 + brightBlack: 91.3 + brightRed: 66.3 + brightGreen: 64.2 + brightYellow: 23.8 + brightBlue: 60.1 + brightMagenta: 65.3 + brightCyan: 55.5 + brightWhite: 0 diff --git a/themes/flat-ui-one-dark.yaml b/themes/flat-ui-one-dark.yaml new file mode 100644 index 00000000..43b61ee9 --- /dev/null +++ b/themes/flat-ui-one-dark.yaml @@ -0,0 +1,49 @@ +name: "Flat UI & One Dark" +source: + marketplace_id: "BowserV2.FlatUiOneDark" + version: "1.2.0" + installs: 2009 + author: "Bowser V2" + repo: "https://github.com/Jazzmoon/FlatUiOneDark" + url: "https://marketplace.visualstudio.com/items?itemName=BowserV2.FlatUiOneDark" +colors: + bg: "#1E1E1E" + fg: "#BBBBBB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 63.9 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/flatcap.yaml b/themes/flatcap.yaml new file mode 100644 index 00000000..98645473 --- /dev/null +++ b/themes/flatcap.yaml @@ -0,0 +1,49 @@ +name: "Flatcap" +source: + marketplace_id: "cheycron.flatcap-theme" + version: "1.1.0" + installs: 116 + author: "cheycron" + repo: "https://github.com/cheycron/flatcap-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=cheycron.flatcap-theme" +colors: + bg: "#121418" + fg: "#CBCED5" + black: "#2E3440" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E4E6E9" + brightBlack: "#484F5C" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 76.1 + black: 0 + red: 33.2 + green: 61.9 + yellow: 76.7 + blue: 48.9 + magenta: 46.8 + cyan: 62.9 + white: 90.8 + brightBlack: 13 + brightRed: 33.2 + brightGreen: 61.9 + brightYellow: 76.7 + brightBlue: 48.9 + brightMagenta: 46.8 + brightCyan: 60.8 + brightWhite: 96.5 diff --git a/themes/flatland-monokai-improved-no-cursor-highlight.yaml b/themes/flatland-monokai-improved-no-cursor-highlight.yaml new file mode 100644 index 00000000..59e56044 --- /dev/null +++ b/themes/flatland-monokai-improved-no-cursor-highlight.yaml @@ -0,0 +1,49 @@ +name: "Flatland Monokai Improved - No Cursor Highlight" +source: + marketplace_id: "meirbon.flatland-monokai-improved" + version: "0.1.5" + installs: 5699 + author: "Mèir Noordermeer" + repo: "https://github.com/MeirBon/flatland-monokai-improved" + url: "https://marketplace.visualstudio.com/items?itemName=meirbon.flatland-monokai-improved" +colors: + bg: "#26292C" + fg: "#F8F8F2" + black: "#1F1F1F" + red: "#DD454D" + green: "#82DD4D" + yellow: "#F7C054" + blue: "#36A3D9" + magenta: "#E79AFF" + cyan: "#9BFFFA" + white: "#E2E2E2" + brightBlack: "#4B4B4B" + brightRed: "#EC141F" + brightGreen: "#5EFF00" + brightYellow: "#FFD82B" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#56FFF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 99.4 + black: 0 + red: 30.5 + green: 69.3 + yellow: 70.2 + blue: 44.2 + magenta: 60.1 + cyan: 93.3 + white: 85.6 + brightBlack: 8.8 + brightRed: 29.5 + brightGreen: 84.5 + brightYellow: 81.2 + brightBlue: 32.1 + brightMagenta: 54.9 + brightCyan: 89.4 + brightWhite: 104.3 diff --git a/themes/flatuiexp.yaml b/themes/flatuiexp.yaml new file mode 100644 index 00000000..24a1c42a --- /dev/null +++ b/themes/flatuiexp.yaml @@ -0,0 +1,49 @@ +name: "FlatUIexp" +source: + marketplace_id: "timmain.flatuibased-v1" + version: "0.3.0" + installs: 69 + author: "timmain" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=timmain.flatuibased-v1" +colors: + bg: "#1E1E1E" + fg: "#05AD97" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 46.3 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/flavia.yaml b/themes/flavia.yaml new file mode 100644 index 00000000..6a0ffd2b --- /dev/null +++ b/themes/flavia.yaml @@ -0,0 +1,49 @@ +name: "Flavia" +source: + marketplace_id: "ShahAbulKalam.flavia-dark" + version: "1.0.0" + installs: 106 + author: "Shah Abul Kalam" + repo: "https://github.com/DanishQ1011/Flavia-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ShahAbulKalam.flavia-dark" +colors: + bg: "#1B1B27" + fg: "#00D7FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 70.7 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.4 + brightRed: 38 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/fleetish.yaml b/themes/fleetish.yaml new file mode 100644 index 00000000..5555f5a5 --- /dev/null +++ b/themes/fleetish.yaml @@ -0,0 +1,49 @@ +name: "Fleetish" +source: + marketplace_id: "k8r.fleetish" + version: "0.1.0" + installs: 4031 + author: "k8r" + repo: "https://github.com/krfl/fleetish-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=k8r.fleetish" +colors: + bg: "#0C0C0C" + fg: "#FFFFFF" + black: "#676767" + red: "#F14C4C" + green: "#15AC91" + yellow: "#E5B95C" + blue: "#4C9DF3" + magenta: "#E567DC" + cyan: "#75D3BA" + white: "#FFFFFF" + brightBlack: "#676767" + brightRed: "#F14C4C" + brightGreen: "#15AC91" + brightYellow: "#E5B95C" + brightBlue: "#4C9DF3" + brightMagenta: "#E567DC" + brightCyan: "#75D3BA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.7 + black: 23.2 + red: 39.3 + green: 47.4 + yellow: 68 + blue: 47.6 + magenta: 47.3 + cyan: 69.7 + white: 107.7 + brightBlack: 23.2 + brightRed: 39.3 + brightGreen: 47.4 + brightYellow: 68 + brightBlue: 47.6 + brightMagenta: 47.3 + brightCyan: 69.7 + brightWhite: 107.7 diff --git a/themes/fleetonedark.yaml b/themes/fleetonedark.yaml new file mode 100644 index 00000000..1655e5ab --- /dev/null +++ b/themes/fleetonedark.yaml @@ -0,0 +1,49 @@ +name: "FleetOneDark" +source: + marketplace_id: "DominikGawlik.fleetonedark" + version: "0.0.1" + installs: 18 + author: "Dominik Gawlik" + repo: "https://github.com/dgawlik/FleetOneDark" + url: "https://marketplace.visualstudio.com/items?itemName=DominikGawlik.fleetonedark" +colors: + bg: "#282C34" + fg: "#C3BFBF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 64.3 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 38.3 + magenta: 41.9 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 38.3 + brightMagenta: 9.5 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/fleety.yaml b/themes/fleety.yaml new file mode 100644 index 00000000..c2543f22 --- /dev/null +++ b/themes/fleety.yaml @@ -0,0 +1,49 @@ +name: "Fleety" +source: + marketplace_id: "wilmarj.fleety" + version: "0.1.0" + installs: 4183 + author: "wilmarj" + repo: "https://github.com/wilmarjongkind/fleety" + url: "https://marketplace.visualstudio.com/items?itemName=wilmarj.fleety" +colors: + bg: "#181818" + fg: "#CBCBCB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 74 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.5 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/fleex-theme-dark.yaml b/themes/fleex-theme-dark.yaml new file mode 100644 index 00000000..60518328 --- /dev/null +++ b/themes/fleex-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Dark" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#111315" + fg: "#E6E8EB" + black: "#0E1012" + red: "#FF6B6B" + green: "#4CB782" + yellow: "#E6A23C" + blue: "#4C9FFF" + magenta: "#B18AFF" + cyan: "#5EC8C3" + white: "#E6E8EB" + brightBlack: "#0E1012" + brightRed: "#FF6B6B" + brightGreen: "#4CB782" + brightYellow: "#E6A23C" + brightBlue: "#4C9FFF" + brightMagenta: "#B18AFF" + brightCyan: "#5EC8C3" + brightWhite: "#E6E8EB" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 92.2 + black: 0 + red: 48.5 + green: 52.6 + yellow: 58.7 + blue: 48.8 + magenta: 50 + cyan: 63.4 + white: 92.2 + brightBlack: 0 + brightRed: 48.5 + brightGreen: 52.6 + brightYellow: 58.7 + brightBlue: 48.8 + brightMagenta: 50 + brightCyan: 63.4 + brightWhite: 92.2 diff --git a/themes/fleex-theme-forest-dark.yaml b/themes/fleex-theme-forest-dark.yaml new file mode 100644 index 00000000..d71a286b --- /dev/null +++ b/themes/fleex-theme-forest-dark.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Forest Dark" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#151A16" + fg: "#E7EFE7" + black: "#101411" + red: "#FF8A73" + green: "#91B563" + yellow: "#D8A45B" + blue: "#7BCB8F" + magenta: "#BEA4FF" + cyan: "#79D7B7" + white: "#E7EFE7" + brightBlack: "#101411" + brightRed: "#FF8A73" + brightGreen: "#91B563" + brightYellow: "#D8A45B" + brightBlue: "#7BCB8F" + brightMagenta: "#BEA4FF" + brightCyan: "#79D7B7" + brightWhite: "#E7EFE7" +meta: + mode: "dark" + accent: "orange" + hue: 151 + contrast: + fg: 94.8 + black: 0 + red: 56 + green: 54.9 + yellow: 57 + blue: 63.9 + magenta: 59.8 + cyan: 70.7 + white: 94.8 + brightBlack: 0 + brightRed: 56 + brightGreen: 54.9 + brightYellow: 57 + brightBlue: 63.9 + brightMagenta: 59.8 + brightCyan: 70.7 + brightWhite: 94.8 diff --git a/themes/fleex-theme-forest-light.yaml b/themes/fleex-theme-forest-light.yaml new file mode 100644 index 00000000..d238b125 --- /dev/null +++ b/themes/fleex-theme-forest-light.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Forest Light" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#FBFDF9" + fg: "#1F2A21" + black: "#4F5D51" + red: "#B55649" + green: "#5C8C45" + yellow: "#A97938" + blue: "#4E8B61" + magenta: "#6B5FC0" + cyan: "#2E8B72" + white: "#F7FBF5" + brightBlack: "#4F5D51" + brightRed: "#B55649" + brightGreen: "#5C8C45" + brightYellow: "#A97938" + brightBlue: "#4E8B61" + brightMagenta: "#6B5FC0" + brightCyan: "#2E8B72" + brightWhite: "#F7FBF5" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 100.1 + black: 82.5 + red: 71.1 + green: 65.3 + yellow: 64 + blue: 65.9 + magenta: 74.1 + cyan: 66.7 + white: 0 + brightBlack: 82.5 + brightRed: 71.1 + brightGreen: 65.3 + brightYellow: 64 + brightBlue: 65.9 + brightMagenta: 74.1 + brightCyan: 66.7 + brightWhite: 0 diff --git a/themes/fleex-theme-light.yaml b/themes/fleex-theme-light.yaml new file mode 100644 index 00000000..22879626 --- /dev/null +++ b/themes/fleex-theme-light.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Light" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#FFFFFF" + fg: "#1D1D1F" + black: "#444B54" + red: "#BE005A" + green: "#2A8442" + yellow: "#D47500" + blue: "#0056B3" + magenta: "#6F42C1" + cyan: "#00827F" + white: "#F5F5F7" + brightBlack: "#444B54" + brightRed: "#BE005A" + brightGreen: "#2A8442" + brightYellow: "#D47500" + brightBlue: "#0056B3" + brightMagenta: "#6F42C1" + brightCyan: "#00827F" + brightWhite: "#F5F5F7" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 103.8 + black: 90.2 + red: 78.8 + green: 72.2 + yellow: 60 + blue: 83.6 + magenta: 81.7 + cyan: 71.8 + white: 0 + brightBlack: 90.2 + brightRed: 78.8 + brightGreen: 72.2 + brightYellow: 60 + brightBlue: 83.6 + brightMagenta: 81.7 + brightCyan: 71.8 + brightWhite: 0 diff --git a/themes/fleex-theme-mist-dark.yaml b/themes/fleex-theme-mist-dark.yaml new file mode 100644 index 00000000..0fa19070 --- /dev/null +++ b/themes/fleex-theme-mist-dark.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Mist Dark" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#12171B" + fg: "#E5ECF2" + black: "#0E1215" + red: "#FF7D88" + green: "#77A786" + yellow: "#D6A557" + blue: "#7BA2D6" + magenta: "#B29BFF" + cyan: "#7AD3CF" + white: "#E5ECF2" + brightBlack: "#0E1215" + brightRed: "#FF7D88" + brightGreen: "#77A786" + brightYellow: "#D6A557" + brightBlue: "#7BA2D6" + brightMagenta: "#B29BFF" + brightCyan: "#7AD3CF" + brightWhite: "#E5ECF2" +meta: + mode: "dark" + accent: "orange" + hue: 242 + contrast: + fg: 93.9 + black: 0 + red: 53.2 + green: 47.9 + yellow: 57.2 + blue: 49.7 + magenta: 55.3 + cyan: 70.2 + white: 93.9 + brightBlack: 0 + brightRed: 53.2 + brightGreen: 47.9 + brightYellow: 57.2 + brightBlue: 49.7 + brightMagenta: 55.3 + brightCyan: 70.2 + brightWhite: 93.9 diff --git a/themes/fleex-theme-mist-light.yaml b/themes/fleex-theme-mist-light.yaml new file mode 100644 index 00000000..c8098483 --- /dev/null +++ b/themes/fleex-theme-mist-light.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Mist Light" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#F7FAFC" + fg: "#23303A" + black: "#4E5D67" + red: "#B85E6D" + green: "#5F8F75" + yellow: "#B98533" + blue: "#5D82B4" + magenta: "#7A6CCF" + cyan: "#3B8C8B" + white: "#F4F8FA" + brightBlack: "#4E5D67" + brightRed: "#B85E6D" + brightGreen: "#5F8F75" + brightYellow: "#B98533" + brightBlue: "#5D82B4" + brightMagenta: "#7A6CCF" + brightCyan: "#3B8C8B" + brightWhite: "#F4F8FA" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 96.7 + black: 80.2 + red: 66.2 + green: 61.2 + yellow: 56.3 + blue: 63.5 + magenta: 66.4 + cyan: 63.4 + white: 0 + brightBlack: 80.2 + brightRed: 66.2 + brightGreen: 61.2 + brightYellow: 56.3 + brightBlue: 63.5 + brightMagenta: 66.4 + brightCyan: 63.4 + brightWhite: 0 diff --git a/themes/fleex-theme-ocean-dark.yaml b/themes/fleex-theme-ocean-dark.yaml new file mode 100644 index 00000000..778255e7 --- /dev/null +++ b/themes/fleex-theme-ocean-dark.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Ocean Dark" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#10181B" + fg: "#E4EEF1" + black: "#0B1215" + red: "#FF8A73" + green: "#59B89D" + yellow: "#E1B166" + blue: "#77C5E5" + magenta: "#B19EFF" + cyan: "#74D6E0" + white: "#E4EEF1" + brightBlack: "#0B1215" + brightRed: "#FF8A73" + brightGreen: "#59B89D" + brightYellow: "#E1B166" + brightBlue: "#77C5E5" + brightMagenta: "#B19EFF" + brightCyan: "#74D6E0" + brightWhite: "#E4EEF1" +meta: + mode: "dark" + accent: "orange" + hue: 223 + contrast: + fg: 94.6 + black: 0 + red: 56.2 + green: 54 + yellow: 63.6 + blue: 64.7 + magenta: 56.2 + cyan: 72 + white: 94.6 + brightBlack: 0 + brightRed: 56.2 + brightGreen: 54 + brightYellow: 63.6 + brightBlue: 64.7 + brightMagenta: 56.2 + brightCyan: 72 + brightWhite: 94.6 diff --git a/themes/fleex-theme-ocean-light.yaml b/themes/fleex-theme-ocean-light.yaml new file mode 100644 index 00000000..ec7f64f8 --- /dev/null +++ b/themes/fleex-theme-ocean-light.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Ocean Light" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#F7FCFD" + fg: "#1E2930" + black: "#4C5F66" + red: "#B85E4A" + green: "#4D9D86" + yellow: "#B8802F" + blue: "#2E78A6" + magenta: "#7365C4" + cyan: "#2E8F9A" + white: "#F4FBFC" + brightBlack: "#4C5F66" + brightRed: "#B85E4A" + brightGreen: "#4D9D86" + brightYellow: "#B8802F" + brightBlue: "#2E78A6" + brightMagenta: "#7365C4" + brightCyan: "#2E8F9A" + brightWhite: "#F4FBFC" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 99.3 + black: 80.7 + red: 67.9 + green: 57.1 + yellow: 59 + blue: 70.8 + magenta: 70.7 + cyan: 62.9 + white: 0 + brightBlack: 80.7 + brightRed: 67.9 + brightGreen: 57.1 + brightYellow: 59 + brightBlue: 70.8 + brightMagenta: 70.7 + brightCyan: 62.9 + brightWhite: 0 diff --git a/themes/fleex-theme-plum-dark.yaml b/themes/fleex-theme-plum-dark.yaml new file mode 100644 index 00000000..e5964988 --- /dev/null +++ b/themes/fleex-theme-plum-dark.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Plum Dark" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#17131B" + fg: "#EEE7F6" + black: "#110E14" + red: "#FF869D" + green: "#90AF69" + yellow: "#E1B36B" + blue: "#C3A1FF" + magenta: "#D49BFF" + cyan: "#72D0C6" + white: "#EEE7F6" + brightBlack: "#110E14" + brightRed: "#FF869D" + brightGreen: "#90AF69" + brightYellow: "#E1B36B" + brightBlue: "#C3A1FF" + brightMagenta: "#D49BFF" + brightCyan: "#72D0C6" + brightWhite: "#EEE7F6" +meta: + mode: "dark" + accent: "magenta" + hue: 307 + contrast: + fg: 93.2 + black: 0 + red: 56.5 + green: 52.8 + yellow: 64.7 + blue: 59.8 + magenta: 60.2 + cyan: 68.1 + white: 93.2 + brightBlack: 0 + brightRed: 56.5 + brightGreen: 52.8 + brightYellow: 64.7 + brightBlue: 59.8 + brightMagenta: 60.2 + brightCyan: 68.1 + brightWhite: 93.2 diff --git a/themes/fleex-theme-plum-light.yaml b/themes/fleex-theme-plum-light.yaml new file mode 100644 index 00000000..784eb0c9 --- /dev/null +++ b/themes/fleex-theme-plum-light.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Plum Light" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#FCFAFF" + fg: "#241F2D" + black: "#554E63" + red: "#B85A70" + green: "#6E9B5D" + yellow: "#B38347" + blue: "#7B56C2" + magenta: "#A76AE1" + cyan: "#2F8A86" + white: "#FAF7FD" + brightBlack: "#554E63" + brightRed: "#B85A70" + brightGreen: "#6E9B5D" + brightYellow: "#B38347" + brightBlue: "#7B56C2" + brightMagenta: "#A76AE1" + brightCyan: "#2F8A86" + brightWhite: "#FAF7FD" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 100.5 + black: 84.9 + red: 67.8 + green: 56.9 + yellow: 58.4 + blue: 73.6 + magenta: 61 + cyan: 65.5 + white: 0 + brightBlack: 84.9 + brightRed: 67.8 + brightGreen: 56.9 + brightYellow: 58.4 + brightBlue: 73.6 + brightMagenta: 61 + brightCyan: 65.5 + brightWhite: 0 diff --git a/themes/fleex-theme-rose-dark.yaml b/themes/fleex-theme-rose-dark.yaml new file mode 100644 index 00000000..497192c6 --- /dev/null +++ b/themes/fleex-theme-rose-dark.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Rose Dark" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#1D161A" + fg: "#F4E9EE" + black: "#151015" + red: "#FF8692" + green: "#95B36D" + yellow: "#E1AE63" + blue: "#F09CB1" + magenta: "#C7A0F1" + cyan: "#80D0CC" + white: "#F4E9EE" + brightBlack: "#151015" + brightRed: "#FF8692" + brightGreen: "#95B36D" + brightYellow: "#E1AE63" + brightBlue: "#F09CB1" + brightMagenta: "#C7A0F1" + brightCyan: "#80D0CC" + brightWhite: "#F4E9EE" +meta: + mode: "dark" + accent: "red" + hue: 343 + contrast: + fg: 94.2 + black: 0 + red: 55.8 + green: 54.7 + yellow: 62.3 + blue: 60.7 + magenta: 58.7 + cyan: 68.9 + white: 94.2 + brightBlack: 0 + brightRed: 55.8 + brightGreen: 54.7 + brightYellow: 62.3 + brightBlue: 60.7 + brightMagenta: 58.7 + brightCyan: 68.9 + brightWhite: 94.2 diff --git a/themes/fleex-theme-rose-light.yaml b/themes/fleex-theme-rose-light.yaml new file mode 100644 index 00000000..8bd6a620 --- /dev/null +++ b/themes/fleex-theme-rose-light.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Rose Light" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#FFF8FA" + fg: "#2C2227" + black: "#5F4E55" + red: "#C45864" + green: "#7EA164" + yellow: "#B57B36" + blue: "#C05B7A" + magenta: "#8A63C8" + cyan: "#2F8F8E" + white: "#FCF5F8" + brightBlack: "#5F4E55" + brightRed: "#C45864" + brightGreen: "#7EA164" + brightYellow: "#B57B36" + brightBlue: "#C05B7A" + brightMagenta: "#8A63C8" + brightCyan: "#2F8F8E" + brightWhite: "#FCF5F8" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 99.1 + black: 83.7 + red: 65.7 + green: 52.5 + yellow: 60.1 + blue: 65.2 + magenta: 67.6 + cyan: 62.6 + white: 0 + brightBlack: 83.7 + brightRed: 65.7 + brightGreen: 52.5 + brightYellow: 60.1 + brightBlue: 65.2 + brightMagenta: 67.6 + brightCyan: 62.6 + brightWhite: 0 diff --git a/themes/fleex-theme-sand-dark.yaml b/themes/fleex-theme-sand-dark.yaml new file mode 100644 index 00000000..03476e0b --- /dev/null +++ b/themes/fleex-theme-sand-dark.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Sand Dark" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#1A1713" + fg: "#F0E7DA" + black: "#13100D" + red: "#FF9272" + green: "#9AAF64" + yellow: "#E4B472" + blue: "#E0B27A" + magenta: "#C09EF2" + cyan: "#73C2BC" + white: "#F0E7DA" + brightBlack: "#13100D" + brightRed: "#FF9272" + brightGreen: "#9AAF64" + brightYellow: "#E4B472" + brightBlue: "#E0B27A" + brightMagenta: "#C09EF2" + brightCyan: "#73C2BC" + brightWhite: "#F0E7DA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.9 + black: 0 + red: 58.5 + green: 53.4 + yellow: 65.4 + blue: 64.2 + magenta: 57.2 + cyan: 61.1 + white: 91.9 + brightBlack: 0 + brightRed: 58.5 + brightGreen: 53.4 + brightYellow: 65.4 + brightBlue: 64.2 + brightMagenta: 57.2 + brightCyan: 61.1 + brightWhite: 91.9 diff --git a/themes/fleex-theme-sand-light.yaml b/themes/fleex-theme-sand-light.yaml new file mode 100644 index 00000000..754eb33b --- /dev/null +++ b/themes/fleex-theme-sand-light.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Sand Light" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#FDF9F2" + fg: "#2B241D" + black: "#5B5045" + red: "#B85D42" + green: "#7F8E4F" + yellow: "#B98842" + blue: "#A77642" + magenta: "#7B63BA" + cyan: "#347E79" + white: "#FBF6EF" + brightBlack: "#5B5045" + brightRed: "#B85D42" + brightGreen: "#7F8E4F" + brightYellow: "#B98842" + brightBlue: "#A77642" + brightMagenta: "#7B63BA" + brightCyan: "#347E79" + brightWhite: "#FBF6EF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 98.8 + black: 83.9 + red: 67.3 + green: 59.9 + yellow: 55.1 + blue: 63.4 + magenta: 70.1 + cyan: 69.5 + white: 0 + brightBlack: 83.9 + brightRed: 67.3 + brightGreen: 59.9 + brightYellow: 55.1 + brightBlue: 63.4 + brightMagenta: 70.1 + brightCyan: 69.5 + brightWhite: 0 diff --git a/themes/fleex-theme-warm-dark.yaml b/themes/fleex-theme-warm-dark.yaml new file mode 100644 index 00000000..4496a314 --- /dev/null +++ b/themes/fleex-theme-warm-dark.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Warm Dark" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#1B1713" + fg: "#F2E9DD" + black: "#15110D" + red: "#FF8A6B" + green: "#8FA65A" + yellow: "#E6B15A" + blue: "#D0893E" + magenta: "#C792EA" + cyan: "#6FC5BE" + white: "#F2E9DD" + brightBlack: "#15110D" + brightRed: "#FF8A6B" + brightGreen: "#8FA65A" + brightYellow: "#E6B15A" + brightBlue: "#D0893E" + brightMagenta: "#C792EA" + brightCyan: "#6FC5BE" + brightWhite: "#F2E9DD" +meta: + mode: "dark" + accent: "orange" + hue: 67 + contrast: + fg: 93.2 + black: 0 + red: 55.9 + green: 48.4 + yellow: 64.2 + blue: 46.2 + magenta: 53.7 + cyan: 62.2 + white: 93.2 + brightBlack: 0 + brightRed: 55.9 + brightGreen: 48.4 + brightYellow: 64.2 + brightBlue: 46.2 + brightMagenta: 53.7 + brightCyan: 62.2 + brightWhite: 93.2 diff --git a/themes/fleex-theme-warm-light.yaml b/themes/fleex-theme-warm-light.yaml new file mode 100644 index 00000000..b6ed4fa6 --- /dev/null +++ b/themes/fleex-theme-warm-light.yaml @@ -0,0 +1,49 @@ +name: "Fleex Theme Warm Light" +source: + marketplace_id: "bluebone.fleex-theme" + version: "0.1.9" + installs: 100 + author: "bluebone" + repo: "https://github.com/fleex/fleex-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" +colors: + bg: "#FFFCF6" + fg: "#2A241F" + black: "#5A5048" + red: "#B8553E" + green: "#6D8740" + yellow: "#B6771E" + blue: "#A65C2F" + magenta: "#8B5FBF" + cyan: "#2F8A83" + white: "#F8F2E8" + brightBlack: "#5A5048" + brightRed: "#B8553E" + brightGreen: "#6D8740" + brightYellow: "#B6771E" + brightBlue: "#A65C2F" + brightMagenta: "#8B5FBF" + brightCyan: "#2F8A83" + brightWhite: "#F8F2E8" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 100.6 + black: 85.6 + red: 70.9 + green: 66 + yellow: 62.8 + blue: 72.6 + magenta: 70.6 + cyan: 66.5 + white: 0 + brightBlack: 85.6 + brightRed: 70.9 + brightGreen: 66 + brightYellow: 62.8 + brightBlue: 72.6 + brightMagenta: 70.6 + brightCyan: 66.5 + brightWhite: 0 diff --git a/themes/fleury-theme.yaml b/themes/fleury-theme.yaml new file mode 100644 index 00000000..e763ae44 --- /dev/null +++ b/themes/fleury-theme.yaml @@ -0,0 +1,49 @@ +name: "Fleury Theme" +source: + marketplace_id: "jonesnc.fleury-theme" + version: "1.0.0" + installs: 30 + author: "jonesnc" + repo: "https://github.com/jonesnc/fleury-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jonesnc.fleury-theme" +colors: + bg: "#020202" + fg: "#B99468" + black: "#000000" + red: "#FF0000" + green: "#2AB34F" + yellow: "#FFA900" + blue: "#2895C7" + magenta: "#FF44DD" + cyan: "#00DDEE" + white: "#666666" + brightBlack: "#404040" + brightRed: "#DB2828" + brightGreen: "#6EB535" + brightYellow: "#FFA900" + brightBlue: "#2895C7" + brightMagenta: "#FF44DD" + brightCyan: "#00DDEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 48 + black: 0 + red: 37.5 + green: 49.4 + yellow: 66.1 + blue: 40.8 + magenta: 47.2 + cyan: 74.2 + white: 23 + brightBlack: 8.5 + brightRed: 30 + brightGreen: 52.7 + brightYellow: 66.1 + brightBlue: 40.8 + brightMagenta: 47.2 + brightCyan: 74.2 + brightWhite: 107.9 diff --git a/themes/flex-appeal.yaml b/themes/flex-appeal.yaml new file mode 100644 index 00000000..903b67c3 --- /dev/null +++ b/themes/flex-appeal.yaml @@ -0,0 +1,49 @@ +name: "Flex Appeal" +source: + marketplace_id: "lotterleben.flex-appeal" + version: "0.0.1" + installs: 2956 + author: "lotterleben" + repo: "https://github.com/Lotterleben/flex-appeal" + url: "https://marketplace.visualstudio.com/items?itemName=lotterleben.flex-appeal" +colors: + bg: "#262335" + fg: "#FFFFFF" + black: "#1D2021" + red: "#F83117" + green: "#32CD32" + yellow: "#FAFD54" + blue: "#26FFFC" + magenta: "#8F4673" + cyan: "#00FFFF" + white: "#FFFBF6" + brightBlack: "#665C54" + brightRed: "#AC3B3B" + brightGreen: "#32CD32" + brightYellow: "#FAFD54" + brightBlue: "#8A2DC0" + brightMagenta: "#F92AAD" + brightCyan: "#26FFFC" + brightWhite: "#EEE8F8" +meta: + mode: "dark" + accent: "red" + hue: 292 + contrast: + fg: 104.9 + black: 0 + red: 34.6 + green: 58.4 + yellow: 98.4 + blue: 89.2 + magenta: 17.5 + cyan: 89.2 + white: 102.6 + brightBlack: 16.6 + brightRed: 19.3 + brightGreen: 58.4 + brightYellow: 98.4 + brightBlue: 17.6 + brightMagenta: 37.8 + brightCyan: 89.2 + brightWhite: 91.5 diff --git a/themes/flexoki.yaml b/themes/flexoki.yaml new file mode 100644 index 00000000..3c58000f --- /dev/null +++ b/themes/flexoki.yaml @@ -0,0 +1,49 @@ +name: "Flexoki" +source: + marketplace_id: "sglza.flexoki" + version: "0.0.3" + installs: 2610 + author: "sglza" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sglza.flexoki" +colors: + bg: "#100F0F" + fg: "#CECDC3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75.6 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/flora.yaml b/themes/flora.yaml new file mode 100644 index 00000000..74c32270 --- /dev/null +++ b/themes/flora.yaml @@ -0,0 +1,49 @@ +name: "Flora" +source: + marketplace_id: "merle.flora" + version: "1.1.2" + installs: 541 + author: "mmerle" + repo: "https://github.com/mmerle/flora" + url: "https://marketplace.visualstudio.com/items?itemName=merle.flora" +colors: + bg: "#1A1B1E" + fg: "#E9E8E6" + black: "#1F2023" + red: "#FC8466" + green: "#1FA2AF" + yellow: "#F6C177" + blue: "#9DD5D9" + magenta: "#D7AAFD" + cyan: "#F4B1E1" + white: "#E9E8E6" + brightBlack: "#1F2023" + brightRed: "#FC8466" + brightGreen: "#1FA2AF" + brightYellow: "#F6C177" + brightBlue: "#9DD5D9" + brightMagenta: "#D7AAFD" + brightCyan: "#F4B1E1" + brightWhite: "#E9E8E6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.5 + black: 0 + red: 53.1 + green: 43.2 + yellow: 73.2 + blue: 73.7 + magenta: 65 + cyan: 70.4 + white: 91.5 + brightBlack: 0 + brightRed: 53.1 + brightGreen: 43.2 + brightYellow: 73.2 + brightBlue: 73.7 + brightMagenta: 65 + brightCyan: 70.4 + brightWhite: 91.5 diff --git a/themes/florence.yaml b/themes/florence.yaml new file mode 100644 index 00000000..8d893190 --- /dev/null +++ b/themes/florence.yaml @@ -0,0 +1,49 @@ +name: "florence" +source: + marketplace_id: "felipeymn.florence" + version: "1.0.2" + installs: 59 + author: "felipeymn" + repo: "https://github.com/felipeymn/florence-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=felipeymn.florence" +colors: + bg: "#16171B" + fg: "#C5C5C6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 70.6 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 90 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/floriamaris.yaml b/themes/floriamaris.yaml new file mode 100644 index 00000000..e4a6b88f --- /dev/null +++ b/themes/floriamaris.yaml @@ -0,0 +1,49 @@ +name: "floriamaris" +source: + marketplace_id: "indiamaris.floriamaris" + version: "0.0.1" + installs: 33 + author: "indiamaris" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=indiamaris.floriamaris" +colors: + bg: "#000000" + fg: "#00FFDB" + black: "#FF7CFD" + red: "#CD3131" + green: "#04FF04" + yellow: "#DADE5A" + blue: "#F9BB02" + magenta: "#FFB0FF" + cyan: "#B6F1FF" + white: "#555555" + brightBlack: "#FF006C" + brightRed: "#FB0000" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#5EA9FB" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 90.5 + black: 59.5 + red: 27.7 + green: 86.5 + yellow: 82.4 + blue: 71.7 + magenta: 75.1 + cyan: 92.5 + white: 16.1 + brightBlack: 38.7 + brightRed: 36.5 + brightGreen: 61.4 + brightYellow: 61.3 + brightBlue: 53.9 + brightMagenta: 27.1 + brightCyan: 41.1 + brightWhite: 53.5 diff --git a/themes/florist-dark.yaml b/themes/florist-dark.yaml new file mode 100644 index 00000000..5ef59805 --- /dev/null +++ b/themes/florist-dark.yaml @@ -0,0 +1,49 @@ +name: "florist-dark" +source: + marketplace_id: "magnush.florist-theme" + version: "0.1.5" + installs: 1125 + author: "Magnus Hvidtfeldt" + repo: "https://github.com/mch-sg/florist-theme" + url: "https://marketplace.visualstudio.com/items?itemName=magnush.florist-theme" +colors: + bg: "#0E0A13" + fg: "#ECE2F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 305 + contrast: + fg: 91 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/florist-light.yaml b/themes/florist-light.yaml new file mode 100644 index 00000000..85bdb343 --- /dev/null +++ b/themes/florist-light.yaml @@ -0,0 +1,49 @@ +name: "Florist Light" +source: + marketplace_id: "magnush.florist-theme" + version: "0.1.5" + installs: 1125 + author: "Magnus Hvidtfeldt" + repo: "https://github.com/mch-sg/florist-theme" + url: "https://marketplace.visualstudio.com/items?itemName=magnush.florist-theme" +colors: + bg: "#EEE9F4" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 306 + contrast: + fg: 94.1 + black: 94.1 + red: 62.1 + green: 37.3 + yellow: 46 + blue: 74.1 + magenta: 62.7 + cyan: 48.7 + white: 74 + brightBlack: 66.8 + brightRed: 62.1 + brightGreen: 29 + brightYellow: 29 + brightBlue: 74.1 + brightMagenta: 62.7 + brightCyan: 48.7 + brightWhite: 36.5 diff --git a/themes/flow-better-theme.yaml b/themes/flow-better-theme.yaml new file mode 100644 index 00000000..2ab66a78 --- /dev/null +++ b/themes/flow-better-theme.yaml @@ -0,0 +1,49 @@ +name: "flow-better-theme" +source: + marketplace_id: "Cha0sGeiger.flow-better-theme" + version: "0.0.1" + installs: 129 + author: "Cha0sGeiger" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Cha0sGeiger.flow-better-theme" +colors: + bg: "#0B1219" + fg: "#35DAEA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 249 + contrast: + fg: 72.4 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.8 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/flow-light.yaml b/themes/flow-light.yaml new file mode 100644 index 00000000..65a97e90 --- /dev/null +++ b/themes/flow-light.yaml @@ -0,0 +1,49 @@ +name: "Flow Light" +source: + marketplace_id: "blackblackcat.vscode-flow" + version: "0.1.4" + installs: 1464 + author: "black_black_cat" + repo: "https://github.com/black-black-cat/vscode-firefox-flow" + url: "https://marketplace.visualstudio.com/items?itemName=blackblackcat.vscode-flow" +colors: + bg: "#EEEEEE" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 95.9 + black: 95.9 + red: 63.9 + green: 39.1 + yellow: 47.8 + blue: 76 + magenta: 64.5 + cyan: 50.5 + white: 75.8 + brightBlack: 68.7 + brightRed: 63.9 + brightGreen: 30.8 + brightYellow: 30.9 + brightBlue: 76 + brightMagenta: 64.5 + brightCyan: 50.5 + brightWhite: 38.4 diff --git a/themes/fluffy-dark-theme.yaml b/themes/fluffy-dark-theme.yaml new file mode 100644 index 00000000..e93f6d98 --- /dev/null +++ b/themes/fluffy-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Fluffy Dark Theme" +source: + marketplace_id: "ayakoSky.fluffy-dark-theme" + version: "0.0.6" + installs: 16560 + author: "ayako" + repo: "https://github.com/ayako02/fluff-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ayakoSky.fluffy-dark-theme" +colors: + bg: "#263238" + fg: "#FF9EB5" + black: "#333333" + red: "#CF426F" + green: "#318B8C" + yellow: "#F6EFA7" + blue: "#4B83CD" + magenta: "#888CCC" + cyan: "#9DDBD6" + white: "#72696F" + brightBlack: "#444343" + brightRed: "#E27B7B" + brightGreen: "#58BBBD" + brightYellow: "#F3D36B" + brightBlue: "#78B1FC" + brightMagenta: "#DB81CC" + brightCyan: "#B2E6E1" + brightWhite: "#978C94" +meta: + mode: "dark" + accent: "red" + hue: 230 + contrast: + fg: 60.2 + black: 0 + red: 26.2 + green: 29.1 + yellow: 90.5 + blue: 30.5 + magenta: 38 + cyan: 72.6 + white: 20.2 + brightBlack: 0 + brightRed: 42.3 + brightGreen: 52.4 + brightYellow: 76.2 + brightBlue: 53.6 + brightMagenta: 45.9 + brightCyan: 80.2 + brightWhite: 36.9 diff --git a/themes/fluffy-theme.yaml b/themes/fluffy-theme.yaml new file mode 100644 index 00000000..acfd2036 --- /dev/null +++ b/themes/fluffy-theme.yaml @@ -0,0 +1,49 @@ +name: "Fluffy Theme" +source: + marketplace_id: "ayakoSky.fluffy-theme" + version: "0.0.10" + installs: 14342 + author: "ayako" + repo: "https://github.com/ayako02/fluffy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ayakoSky.fluffy-theme" +colors: + bg: "#FFFFFF" + fg: "#FF9EB5" + black: "#333333" + red: "#CF426F" + green: "#318B8C" + yellow: "#FFD686" + blue: "#4B83CD" + magenta: "#888CCC" + cyan: "#9DDBD6" + white: "#72696F" + brightBlack: "#444343" + brightRed: "#E27B7B" + brightGreen: "#58BBBD" + brightYellow: "#F3D36B" + brightBlue: "#78B1FC" + brightMagenta: "#DB81CC" + brightCyan: "#B2E6E1" + brightWhite: "#978C94" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 37.1 + black: 98.7 + red: 70.3 + green: 67.3 + yellow: 18.5 + blue: 65.9 + magenta: 58.5 + cyan: 25.3 + white: 76.4 + brightBlack: 92.9 + brightRed: 54.3 + brightGreen: 44.5 + brightYellow: 21.9 + brightBlue: 43.4 + brightMagenta: 50.8 + brightCyan: 18.2 + brightWhite: 59.6 diff --git a/themes/fluid-light-theme.yaml b/themes/fluid-light-theme.yaml new file mode 100644 index 00000000..b0fe57ed --- /dev/null +++ b/themes/fluid-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Fluid Light Theme" +source: + marketplace_id: "Vaporizer.fluid-theme" + version: "0.0.7" + installs: 845 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/fluid-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.fluid-theme" +colors: + bg: "#F3F6FF" + fg: "#B8DFFF" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 13.9 + black: 100.7 + red: 68.6 + green: 43.9 + yellow: 52.6 + blue: 80.7 + magenta: 69.2 + cyan: 55.2 + white: 80.6 + brightBlack: 73.4 + brightRed: 68.6 + brightGreen: 35.6 + brightYellow: 35.6 + brightBlue: 80.7 + brightMagenta: 69.2 + brightCyan: 55.2 + brightWhite: 43.1 diff --git a/themes/flukerbr-theme.yaml b/themes/flukerbr-theme.yaml new file mode 100644 index 00000000..5eca4fcc --- /dev/null +++ b/themes/flukerbr-theme.yaml @@ -0,0 +1,49 @@ +name: "FlukerBr-theme" +source: + marketplace_id: "FlukerBr.FlukerBr-theme" + version: "0.0.0" + installs: 54 + author: "FlukerBr" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=FlukerBr.FlukerBr-theme" +colors: + bg: "#242424" + fg: "#43BCAB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 53.7 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/fluminense.yaml b/themes/fluminense.yaml new file mode 100644 index 00000000..7a10123a --- /dev/null +++ b/themes/fluminense.yaml @@ -0,0 +1,49 @@ +name: "Fluminense" +source: + marketplace_id: "ViniciusReisch.Fluminense-Theme" + version: "2.5.0" + installs: 343 + author: "ViniciusReisch" + repo: "https://github.com/Flyinng/Fluminense-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ViniciusReisch.Fluminense-Theme" +colors: + bg: "#1E1E1E" + fg: "#CEC4C2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#8C040D" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 70.3 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 10 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/fluorite-theme.yaml b/themes/fluorite-theme.yaml new file mode 100644 index 00000000..121599c1 --- /dev/null +++ b/themes/fluorite-theme.yaml @@ -0,0 +1,49 @@ +name: "💎Fluorite theme" +source: + marketplace_id: "rnbsov.fluorite-theme" + version: "1.2.6" + installs: 1602 + author: "Rnbsov" + repo: "https://github.com/Rnbsov/fluorite-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rnbsov.fluorite-theme" +colors: + bg: "#16111B" + fg: "#6E9BBC" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: 307 + contrast: + fg: 44.9 + black: 0 + red: 45.2 + green: 52.6 + yellow: 74.2 + blue: 45.3 + magenta: 47.8 + cyan: 56.7 + white: 85.4 + brightBlack: 22.4 + brightRed: 53 + brightGreen: 61.2 + brightYellow: 83.9 + brightBlue: 53.6 + brightMagenta: 56.3 + brightCyan: 65.5 + brightWhite: 101.3 diff --git a/themes/flutter-dark.yaml b/themes/flutter-dark.yaml new file mode 100644 index 00000000..485731c6 --- /dev/null +++ b/themes/flutter-dark.yaml @@ -0,0 +1,49 @@ +name: "Flutter Dark" +source: + marketplace_id: "vmcgon.flutter-theme" + version: "0.0.1" + installs: 3704 + author: "vmcgon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=vmcgon.flutter-theme" +colors: + bg: "#283142" + fg: "#ECEFF1" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#F5F5F5" + brightBlack: "#666666" + brightRed: "#F48771" + brightGreen: "#6BCF19" + brightYellow: "#D7BA7D" + brightBlue: "#4C78DD" + brightMagenta: "#C586C0" + brightCyan: "#4CD1E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 263 + contrast: + fg: 91.8 + black: 0 + red: 32.2 + green: 81.2 + yellow: 97.4 + blue: 10.9 + magenta: 40.9 + cyan: 86.9 + white: 96 + brightBlack: 17.7 + brightRed: 48.7 + brightGreen: 59 + brightYellow: 61.8 + brightBlue: 27.9 + brightMagenta: 43 + brightCyan: 63.5 + brightWhite: 102.6 diff --git a/themes/flutter-theme-dark.yaml b/themes/flutter-theme-dark.yaml new file mode 100644 index 00000000..8872535c --- /dev/null +++ b/themes/flutter-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Flutter-Theme-Dark" +source: + marketplace_id: "idmarcosc.Flutter-Theme-Dark" + version: "1.0.2" + installs: 3232 + author: "Marcos Silva" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=idmarcosc.Flutter-Theme-Dark" +colors: + bg: "#17141F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 297 + contrast: + fg: 79.6 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/flux-dark.yaml b/themes/flux-dark.yaml new file mode 100644 index 00000000..62e74e94 --- /dev/null +++ b/themes/flux-dark.yaml @@ -0,0 +1,49 @@ +name: "Flux Dark" +source: + marketplace_id: "6233c1c4-89f3-48cf-8c88-156b07876860.flux-dark-theme" + version: "1.0.0" + installs: 38 + author: "YasserElgammal" + repo: "https://github.com/YasserElgammal/flux-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6233c1c4-89f3-48cf-8c88-156b07876860.flux-dark-theme" +colors: + bg: "#232424" + fg: "#E4E4E4" + black: "#111111" + red: "#D86A6A" + green: "#7BB8A2" + yellow: "#E2B565" + blue: "#9EB3C2" + magenta: "#B7C0E8" + cyan: "#9ED4D0" + white: "#E4E4E4" + brightBlack: "#535353" + brightRed: "#E08080" + brightGreen: "#A7D6C1" + brightYellow: "#ECC780" + brightBlue: "#C4D7E3" + brightMagenta: "#C8D0F0" + brightCyan: "#B8E5E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 87.7 + black: 0 + red: 38.1 + green: 54.6 + yellow: 63.6 + blue: 56.8 + magenta: 66.8 + cyan: 71.7 + white: 87.7 + brightBlack: 12.6 + brightRed: 45.9 + brightGreen: 72.8 + brightYellow: 72.9 + brightBlue: 77.8 + brightMagenta: 75.9 + brightCyan: 82.9 + brightWhite: 105.2 diff --git a/themes/flux-dawn.yaml b/themes/flux-dawn.yaml new file mode 100644 index 00000000..eb8c61d7 --- /dev/null +++ b/themes/flux-dawn.yaml @@ -0,0 +1,49 @@ +name: "Flux Dawn" +source: + marketplace_id: "CrappyCodeMaker.crappycode-theme" + version: "2.3.5" + installs: 1206 + author: "Danil_Reznichenko_(Legacy)" + repo: "https://github.com/danilrez/flux-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CrappyCodeMaker.crappycode-theme" +colors: + bg: "#FFFFFF" + fg: "#B36F4D" + black: "#E2875A" + red: "#F50A51" + green: "#04D279" + yellow: "#FDA92B" + blue: "#2B94FD" + magenta: "#FD2BEF" + cyan: "#05E1FA" + white: "#FEEBE2" + brightBlack: "#F99B6C" + brightRed: "#F73B73" + brightGreen: "#35DE95" + brightYellow: "#FDB953" + brightBlue: "#53A8FD" + brightMagenta: "#FD53F2" + brightCyan: "#35E9FD" + brightWhite: "#FEF8F5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 66.8 + black: 51.7 + red: 66 + green: 38 + yellow: 36.6 + blue: 57.5 + magenta: 56.1 + cyan: 26.2 + white: 0 + brightBlack: 41.2 + brightRed: 62.1 + brightGreen: 31.3 + brightYellow: 30.7 + brightBlue: 48.9 + brightMagenta: 51.7 + brightCyan: 22 + brightWhite: 0 diff --git a/themes/flux-daylight.yaml b/themes/flux-daylight.yaml new file mode 100644 index 00000000..cef8046e --- /dev/null +++ b/themes/flux-daylight.yaml @@ -0,0 +1,49 @@ +name: "Flux Daylight" +source: + marketplace_id: "CrappyCodeMaker.crappycode-theme" + version: "2.3.5" + installs: 1206 + author: "Danil_Reznichenko_(Legacy)" + repo: "https://github.com/danilrez/flux-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CrappyCodeMaker.crappycode-theme" +colors: + bg: "#FFFFFF" + fg: "#252B37" + black: "#393F4C" + red: "#F50A51" + green: "#04D279" + yellow: "#FDA92B" + blue: "#2B94FD" + magenta: "#FD2BEF" + cyan: "#05E1FA" + white: "#D3D5D9" + brightBlack: "#4F5869" + brightRed: "#F73B73" + brightGreen: "#35DE95" + brightYellow: "#FDB953" + brightBlue: "#53A8FD" + brightMagenta: "#FD53F2" + brightCyan: "#35E9FD" + brightWhite: "#F4F5F5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 100.9 + black: 94.5 + red: 66 + green: 38 + yellow: 36.6 + blue: 57.5 + magenta: 56.1 + cyan: 26.2 + white: 22.3 + brightBlack: 84.9 + brightRed: 62.1 + brightGreen: 31.3 + brightYellow: 30.7 + brightBlue: 48.9 + brightMagenta: 51.7 + brightCyan: 22 + brightWhite: 0 diff --git a/themes/flux-night.yaml b/themes/flux-night.yaml new file mode 100644 index 00000000..0ed3c5f4 --- /dev/null +++ b/themes/flux-night.yaml @@ -0,0 +1,49 @@ +name: "Flux Night" +source: + marketplace_id: "CrappyCodeMaker.crappycode-theme" + version: "2.3.5" + installs: 1206 + author: "Danil_Reznichenko_(Legacy)" + repo: "https://github.com/danilrez/flux-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CrappyCodeMaker.crappycode-theme" +colors: + bg: "#1F242E" + fg: "#8D95A5" + black: "#363E4E" + red: "#F96C96" + green: "#5AF6B3" + yellow: "#F9C16C" + blue: "#6CB2F9" + magenta: "#F96CEF" + cyan: "#5AE7F6" + white: "#B0B5BF" + brightBlack: "#4D576A" + brightRed: "#F98BAC" + brightGreen: "#77F8C0" + brightYellow: "#F9CD8B" + brightBlue: "#8BC2F9" + brightMagenta: "#F98BF2" + brightCyan: "#76ECF9" + brightWhite: "#D3D5D9" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 42.2 + black: 0 + red: 46.5 + green: 82.9 + yellow: 72.2 + blue: 55.4 + magenta: 51 + cyan: 78.2 + white: 59.4 + brightBlack: 14 + brightRed: 55.3 + brightGreen: 85.7 + brightYellow: 77.7 + brightBlue: 64.3 + brightMagenta: 58.8 + brightCyan: 82.2 + brightWhite: 78.3 diff --git a/themes/flux-twilight.yaml b/themes/flux-twilight.yaml new file mode 100644 index 00000000..a1fca3dd --- /dev/null +++ b/themes/flux-twilight.yaml @@ -0,0 +1,49 @@ +name: "Flux Twilight" +source: + marketplace_id: "CrappyCodeMaker.crappycode-theme" + version: "2.3.5" + installs: 1206 + author: "Danil_Reznichenko_(Legacy)" + repo: "https://github.com/danilrez/flux-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CrappyCodeMaker.crappycode-theme" +colors: + bg: "#272B3F" + fg: "#878DAB" + black: "#30344B" + red: "#F96C96" + green: "#5AF6B3" + yellow: "#F9C16C" + blue: "#6CB2F9" + magenta: "#F96CEF" + cyan: "#5AE7F6" + white: "#ACB0C3" + brightBlack: "#484E70" + brightRed: "#F98BAC" + brightGreen: "#77F8C0" + brightYellow: "#F9CD8B" + brightBlue: "#8BC2F9" + brightMagenta: "#F98BF2" + brightCyan: "#76ECF9" + brightWhite: "#D0D2DC" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 37.4 + black: 0 + red: 45 + green: 81.4 + yellow: 70.6 + blue: 53.9 + magenta: 49.5 + cyan: 76.7 + white: 55.6 + brightBlack: 9.9 + brightRed: 53.8 + brightGreen: 84.2 + brightYellow: 76.2 + brightBlue: 62.8 + brightMagenta: 57.3 + brightCyan: 80.6 + brightWhite: 75.2 diff --git a/themes/flux.yaml b/themes/flux.yaml new file mode 100644 index 00000000..15d2248f --- /dev/null +++ b/themes/flux.yaml @@ -0,0 +1,49 @@ +name: "Flux" +source: + marketplace_id: "Priyaank.ether" + version: "2.0.1" + installs: 55 + author: "Priyaank" + repo: "https://github.com/PRIYAANK2510/Ether" + url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.ether" +colors: + bg: "#151515" + fg: "#808080" + black: "#101010" + red: "#A94B67" + green: "#499F71" + yellow: "#B4927A" + blue: "#73B3E4" + magenta: "#556FB6" + cyan: "#83918E" + white: "#CCCCCC" + brightBlack: "#707070" + brightRed: "#C15D7D" + brightGreen: "#5AB585" + brightYellow: "#CAA78E" + brightBlue: "#8BC4ED" + brightMagenta: "#6A83C7" + brightCyan: "#9AA8A5" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 33.9 + black: 0 + red: 24.5 + green: 41.4 + yellow: 46.2 + blue: 56.9 + magenta: 27.4 + cyan: 40.7 + white: 74.9 + brightBlack: 26.6 + brightRed: 33.2 + brightGreen: 52.2 + brightYellow: 57.5 + brightBlue: 66.4 + brightMagenta: 36.4 + brightCyan: 52.7 + brightWhite: 90.8 diff --git a/themes/fluxish.yaml b/themes/fluxish.yaml new file mode 100644 index 00000000..c2365688 --- /dev/null +++ b/themes/fluxish.yaml @@ -0,0 +1,49 @@ +name: "Fluxish" +source: + marketplace_id: "sjsepan.sjsepan-fluxish" + version: "0.0.1" + installs: 36 + author: "sjsepan" + repo: "https://gitlab.com/sjsepan/sjsepan-fluxish" + url: "https://marketplace.visualstudio.com/items?itemName=sjsepan.sjsepan-fluxish" +colors: + bg: "#FDC969" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#261C1C" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: 81 + contrast: + fg: 79.4 + black: 79.4 + red: 47.3 + green: 22.6 + yellow: 31.2 + blue: 59.4 + magenta: 47.9 + cyan: 33.9 + white: 76.9 + brightBlack: 52.1 + brightRed: 47.3 + brightGreen: 14.2 + brightYellow: 14.3 + brightBlue: 59.4 + brightMagenta: 47.9 + brightCyan: 33.9 + brightWhite: 27.6 diff --git a/themes/foco-1-0-0.yaml b/themes/foco-1-0-0.yaml new file mode 100644 index 00000000..99c4b230 --- /dev/null +++ b/themes/foco-1-0-0.yaml @@ -0,0 +1,49 @@ +name: "Foco 1.0.0" +source: + marketplace_id: "JosafaMarengo.foco-light" + version: "0.2.1" + installs: 925 + author: "Josafá Marengo" + repo: "https://github.com/josafamarengo/focus" + url: "https://marketplace.visualstudio.com/items?itemName=JosafaMarengo.foco-light" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#029F02" + yellow: "#A78E04" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0B809D" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#00D100" + brightYellow: "#C0B400" + brightBlue: "#007AFF" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#828282" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 62 + yellow: 59.3 + blue: 86.1 + magenta: 74.6 + cyan: 71.3 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 39.6 + brightYellow: 42 + brightBlue: 66.5 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 65.9 diff --git a/themes/focus-blue-colorblind-concentration-trust.yaml b/themes/focus-blue-colorblind-concentration-trust.yaml new file mode 100644 index 00000000..68175aa4 --- /dev/null +++ b/themes/focus-blue-colorblind-concentration-trust.yaml @@ -0,0 +1,49 @@ +name: "Focus Blue Colorblind - Concentration & Trust" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#0A0E1A" + fg: "#E0E0E0" + black: "#263238" + red: "#EF5350" + green: "#66BB6A" + yellow: "#FFEB3B" + blue: "#42A5F5" + magenta: "#AB47BC" + cyan: "#26C6DA" + white: "#ECEFF1" + brightBlack: "#546E7A" + brightRed: "#EF5350" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#E040FB" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 269 + contrast: + fg: 87.5 + black: 0 + red: 40 + green: 55.3 + yellow: 93 + blue: 50.4 + magenta: 28.6 + cyan: 62.2 + white: 96.7 + brightBlack: 24.5 + brightRed: 40 + brightGreen: 82.7 + brightYellow: 102.3 + brightBlue: 41.2 + brightMagenta: 41.9 + brightCyan: 91.9 + brightWhite: 107.5 diff --git a/themes/focus-blue-concentration-trust.yaml b/themes/focus-blue-concentration-trust.yaml new file mode 100644 index 00000000..19a39b53 --- /dev/null +++ b/themes/focus-blue-concentration-trust.yaml @@ -0,0 +1,49 @@ +name: "Focus Blue - Concentration & Trust" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#0A0E1A" + fg: "#E8F4F8" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#546E7A" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "red" + hue: 269 + contrast: + fg: 98.9 + black: 0 + red: 38.4 + green: 48.2 + yellow: 93 + blue: 43.7 + magenta: 33.3 + cyan: 57.2 + white: 96.7 + brightBlack: 24.5 + brightRed: 43.5 + brightGreen: 82.7 + brightYellow: 102.3 + brightBlue: 41.2 + brightMagenta: 42.1 + brightCyan: 91.9 + brightWhite: 96.4 diff --git a/themes/focus-blue-high-contrast-concentration-trust.yaml b/themes/focus-blue-high-contrast-concentration-trust.yaml new file mode 100644 index 00000000..81093287 --- /dev/null +++ b/themes/focus-blue-high-contrast-concentration-trust.yaml @@ -0,0 +1,49 @@ +name: "Focus Blue High Contrast - Concentration & Trust" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0080FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#808080" + brightRed: "#FF6B6B" + brightGreen: "#69FF69" + brightYellow: "#FFFF69" + brightBlue: "#69B3FF" + brightMagenta: "#FF69FF" + brightCyan: "#69FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 37.1 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 34.8 + brightRed: 49.1 + brightGreen: 89.2 + brightYellow: 103.3 + brightBlue: 58.8 + brightMagenta: 55.4 + brightCyan: 94.1 + brightWhite: 107.9 diff --git a/themes/focus-blue-light-concentration-trust.yaml b/themes/focus-blue-light-concentration-trust.yaml new file mode 100644 index 00000000..403bbe53 --- /dev/null +++ b/themes/focus-blue-light-concentration-trust.yaml @@ -0,0 +1,49 @@ +name: "Focus Blue Light - Concentration & Trust" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#E3F2FD" + fg: "#0A0E1A" + black: "#0A0E1A" + red: "#D32F2F" + green: "#388E3C" + yellow: "#FBC02D" + blue: "#1976D2" + magenta: "#C2185B" + cyan: "#0097A7" + white: "#F5F5F5" + brightBlack: "#616161" + brightRed: "#EF5350" + brightGreen: "#66BB6A" + brightYellow: "#FFEB3B" + brightBlue: "#42A5F5" + brightMagenta: "#EC407A" + brightCyan: "#26C6DA" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 96.5 + black: 96.5 + red: 63.8 + green: 58.9 + yellow: 19.7 + blue: 62.3 + magenta: 68.4 + cyan: 53 + white: 0 + brightBlack: 71.8 + brightRed: 52.3 + brightGreen: 37.3 + brightYellow: 0 + brightBlue: 42.1 + brightMagenta: 54.8 + brightCyan: 30.7 + brightWhite: 7.8 diff --git a/themes/focus-colors.yaml b/themes/focus-colors.yaml new file mode 100644 index 00000000..f18d9581 --- /dev/null +++ b/themes/focus-colors.yaml @@ -0,0 +1,49 @@ +name: "Focus-Colors" +source: + marketplace_id: "Wellington-A.omni-dracula-dark" + version: "1.0.7" + installs: 4759 + author: "Wellington-A" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" +colors: + bg: "#000B1D" + fg: "#0087FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 252 + contrast: + fg: 39.2 + black: 0 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/focus-dark-fork-fork.yaml b/themes/focus-dark-fork-fork.yaml new file mode 100644 index 00000000..2b13a68f --- /dev/null +++ b/themes/focus-dark-fork-fork.yaml @@ -0,0 +1,49 @@ +name: "Focus Dark - Fork - Fork" +source: + marketplace_id: "SagarHarsora.synace" + version: "0.0.4" + installs: 17 + author: "Sagar Harsora" + repo: "https://github.com/sagarrh/Synace" + url: "https://marketplace.visualstudio.com/items?itemName=SagarHarsora.synace" +colors: + bg: "#1E1E1E" + fg: "#A79D9D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 48.6 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/focusoncoding.yaml b/themes/focusoncoding.yaml new file mode 100644 index 00000000..7f6ebb7d --- /dev/null +++ b/themes/focusoncoding.yaml @@ -0,0 +1,49 @@ +name: "focusOnCoding" +source: + marketplace_id: "stephenaalonzo.focusoncoding" + version: "1.0.4" + installs: 134 + author: "Stephen A. Alonzo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=stephenaalonzo.focusoncoding" +colors: + bg: "#13132E" + fg: "#35B3FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 281 + contrast: + fg: 55.8 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/fodder-contrast.yaml b/themes/fodder-contrast.yaml new file mode 100644 index 00000000..14d0876f --- /dev/null +++ b/themes/fodder-contrast.yaml @@ -0,0 +1,49 @@ +name: "fodder-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#131C17" + fg: "#CCE0D6" + black: "#1D2B23" + red: "#BA0E2E" + green: "#AD9895" + yellow: "#98D046" + blue: "#FCFCFA" + magenta: "#98D046" + cyan: "#AD9895" + white: "#DCEAE3" + brightBlack: "#3C5949" + brightRed: "#F03E5F" + brightGreen: "#D9D0CE" + brightYellow: "#C5E597" + brightBlue: "#FFFFFF" + brightMagenta: "#C5E597" + brightCyan: "#D9D0CE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 160 + contrast: + fg: 83.6 + black: 0 + red: 20.2 + green: 47.7 + yellow: 67 + blue: 104.5 + magenta: 67 + cyan: 47.7 + white: 90.7 + brightBlack: 13.9 + brightRed: 36.4 + brightGreen: 77.8 + brightYellow: 82.9 + brightBlue: 106.5 + brightMagenta: 82.9 + brightCyan: 77.8 + brightWhite: 106.5 diff --git a/themes/fodder-light.yaml b/themes/fodder-light.yaml new file mode 100644 index 00000000..dddad8e3 --- /dev/null +++ b/themes/fodder-light.yaml @@ -0,0 +1,49 @@ +name: "fodder-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#CCE0D6" + fg: "#2D4137" + black: "#DCEAE3" + red: "#BA0E2E" + green: "#685B59" + yellow: "#688E2F" + blue: "#2D4137" + magenta: "#688E2F" + cyan: "#685B59" + white: "#375044" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#9C8D8B" + brightYellow: "#9CC95A" + brightBlue: "#577D6A" + brightMagenta: "#9CC95A" + brightCyan: "#9C8D8B" + brightWhite: "#577D6A" +meta: + mode: "light" + accent: "orange" + hue: 164 + contrast: + fg: 74.3 + black: 0 + red: 59.4 + green: 61.3 + yellow: 44.6 + blue: 74.3 + magenta: 44.6 + cyan: 61.3 + white: 69.1 + brightBlack: 21.2 + brightRed: 42.9 + brightGreen: 38.1 + brightYellow: 15.7 + brightBlue: 51.1 + brightMagenta: 15.7 + brightCyan: 38.1 + brightWhite: 51.1 diff --git a/themes/fodder.yaml b/themes/fodder.yaml new file mode 100644 index 00000000..ef5849fb --- /dev/null +++ b/themes/fodder.yaml @@ -0,0 +1,49 @@ +name: "fodder" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2D4137" + fg: "#CCE0D6" + black: "#375044" + red: "#BA0E2E" + green: "#AD9895" + yellow: "#98D046" + blue: "#FCFCFA" + magenta: "#98D046" + cyan: "#AD9895" + white: "#DCEAE3" + brightBlack: "#577D6A" + brightRed: "#F03E5F" + brightGreen: "#D9D0CE" + brightYellow: "#C5E597" + brightBlue: "#FFFFFF" + brightMagenta: "#C5E597" + brightCyan: "#D9D0CE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 163 + contrast: + fg: 76.2 + black: 0 + red: 12.7 + green: 40.3 + yellow: 59.6 + blue: 97 + magenta: 59.6 + cyan: 40.3 + white: 83.3 + brightBlack: 20.9 + brightRed: 29 + brightGreen: 70.4 + brightYellow: 75.5 + brightBlue: 99.1 + brightMagenta: 75.5 + brightCyan: 70.4 + brightWhite: 99.1 diff --git a/themes/fog-hazy.yaml b/themes/fog-hazy.yaml new file mode 100644 index 00000000..0a3648aa --- /dev/null +++ b/themes/fog-hazy.yaml @@ -0,0 +1,49 @@ +name: "Fog Hazy" +source: + marketplace_id: "goldenchao.fog-hazy" + version: "0.0.6" + installs: 39 + author: "goldenchao" + repo: "https://github.com/GoldSept/theme-fog-hazy" + url: "https://marketplace.visualstudio.com/items?itemName=goldenchao.fog-hazy" +colors: + bg: "#1E1E20" + fg: "#FFFFF5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 105.6 + black: 25.6 + red: 43.1 + green: 65 + yellow: 78.1 + blue: 55.1 + magenta: 52.9 + cyan: 77.4 + white: 106 + brightBlack: 25.6 + brightRed: 43.1 + brightGreen: 83.3 + brightYellow: 78.1 + brightBlue: 55.1 + brightMagenta: 52.9 + brightCyan: 77.4 + brightWhite: 106 diff --git a/themes/foggy-forest-v1.yaml b/themes/foggy-forest-v1.yaml new file mode 100644 index 00000000..e7f6c193 --- /dev/null +++ b/themes/foggy-forest-v1.yaml @@ -0,0 +1,49 @@ +name: "Foggy Forest V1" +source: + marketplace_id: "xinkechen.foggy-forest-theme" + version: "0.2.0" + installs: 532 + author: "xinkechen" + repo: "https://github.com/xinkecf35/foggy-forest-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xinkechen.foggy-forest-theme" +colors: + bg: "#0D1901" + fg: "#C7D5C9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 130 + contrast: + fg: 77.9 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/foggy-minimal.yaml b/themes/foggy-minimal.yaml new file mode 100644 index 00000000..8cf10ed0 --- /dev/null +++ b/themes/foggy-minimal.yaml @@ -0,0 +1,49 @@ +name: "Foggy Minimal" +source: + marketplace_id: "ninjaqwert-2239-indie.foggy-min" + version: "0.0.6" + installs: 147 + author: "ninjaqwert" + repo: "https://github.com/eerieA/vscode-foggy-min-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ninjaqwert-2239-indie.foggy-min" +colors: + bg: "#FBFBFA" + fg: "#4F585C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#3D6999" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D3D3D3" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#6794C7" + brightMagenta: "#D670D6" + brightCyan: "#6EB5E4" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 82.9 + black: 103.6 + red: 71.5 + green: 45.6 + yellow: 14.6 + blue: 76 + magenta: 68.5 + cyan: 50.8 + white: 20.9 + brightBlack: 76.3 + brightRed: 59.7 + brightGreen: 35.4 + brightYellow: 0 + brightBlue: 56.2 + brightMagenta: 53 + brightCyan: 41.5 + brightWhite: 10.5 diff --git a/themes/fonteeboa.yaml b/themes/fonteeboa.yaml new file mode 100644 index 00000000..e871740e --- /dev/null +++ b/themes/fonteeboa.yaml @@ -0,0 +1,49 @@ +name: "fonteeboa" +source: + marketplace_id: "Fonteeboa.fonteeboa" + version: "1.0.1" + installs: 390 + author: "Fonteeboa" + repo: "https://github.com/fonteeboa/vscode-theme-fonteeboa" + url: "https://marketplace.visualstudio.com/items?itemName=Fonteeboa.fonteeboa" +colors: + bg: "#050A0F" + fg: "#FFFFFF" + black: "#290039" + red: "#FF0000" + green: "#18DA16" + yellow: "#FFFF00" + blue: "#3838FF" + magenta: "#C316DA" + cyan: "#00FFFF" + white: "#E5E5E5" + brightBlack: "#7B2DC6" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#F5F543" + brightBlue: "#6666FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 244 + contrast: + fg: 107.7 + black: 0 + red: 37.4 + green: 67.2 + yellow: 102.6 + blue: 20.5 + magenta: 30.8 + cyan: 92 + white: 90.9 + brightBlack: 18.9 + brightRed: 47.8 + brightGreen: 88.9 + brightYellow: 96.5 + brightBlue: 32.4 + brightMagenta: 54.7 + brightCyan: 93.9 + brightWhite: 107.7 diff --git a/themes/forest-color-theme.yaml b/themes/forest-color-theme.yaml new file mode 100644 index 00000000..27568757 --- /dev/null +++ b/themes/forest-color-theme.yaml @@ -0,0 +1,49 @@ +name: "forest-color-theme" +source: + marketplace_id: "feb19.theme-forest" + version: "0.1.1" + installs: 3191 + author: "feb19" + repo: "https://github.com/feb19/theme-forest" + url: "https://marketplace.visualstudio.com/items?itemName=feb19.theme-forest" +colors: + bg: "#282E2D" + fg: "#C0C7BC" + black: "#242424" + red: "#6F3C3C" + green: "#577341" + yellow: "#9A8653" + blue: "#6B898A" + magenta: "#6A416B" + cyan: "#4E6C60" + white: "#C7C3BC" + brightBlack: "#424446" + brightRed: "#E37272" + brightGreen: "#BBED84" + brightYellow: "#EDC766" + brightBlue: "#94CBDA" + brightMagenta: "#E47CE7" + brightCyan: "#93DEC0" + brightWhite: "#E9F1E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 67 + black: 0 + red: 8 + green: 20.8 + yellow: 34.2 + blue: 32 + magenta: 9.8 + cyan: 18.5 + white: 66.2 + brightBlack: 0 + brightRed: 40.7 + brightGreen: 82.1 + brightYellow: 70.9 + brightBlue: 65.6 + brightMagenta: 48.6 + brightCyan: 73.1 + brightWhite: 92.7 diff --git a/themes/forest-green-vitality-connection.yaml b/themes/forest-green-vitality-connection.yaml new file mode 100644 index 00000000..6c552862 --- /dev/null +++ b/themes/forest-green-vitality-connection.yaml @@ -0,0 +1,49 @@ +name: "Forest Green - Vitality & Connection" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#0D1F0D" + fg: "#E8F5E9" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 144 + contrast: + fg: 97.5 + black: 0 + red: 37.2 + green: 47.1 + yellow: 91.8 + blue: 42.5 + magenta: 32.1 + cyan: 56 + white: 95.6 + brightBlack: 8.6 + brightRed: 42.3 + brightGreen: 81.5 + brightYellow: 101.2 + brightBlue: 40 + brightMagenta: 40.9 + brightCyan: 90.7 + brightWhite: 106.4 diff --git a/themes/forest-green.yaml b/themes/forest-green.yaml new file mode 100644 index 00000000..6a4e81e5 --- /dev/null +++ b/themes/forest-green.yaml @@ -0,0 +1,49 @@ +name: "Forest Green" +source: + marketplace_id: "codeM.mystic-dark-collection" + version: "0.1.0" + installs: 86 + author: "Mustafa Özdemir" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=codeM.mystic-dark-collection" +colors: + bg: "#0A0F1A" + fg: "#E8F5E8" + black: "#0A0F1A" + red: "#F44336" + green: "#8BC34A" + yellow: "#FFC107" + blue: "#4FC3F7" + magenta: "#8E24AA" + cyan: "#81D4FA" + white: "#E8F5E8" + brightBlack: "#2E3A4A" + brightRed: "#EF5350" + brightGreen: "#A5D6A7" + brightYellow: "#FFD54F" + brightBlue: "#81D4FA" + brightMagenta: "#BA68C8" + brightCyan: "#B3E5FC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 265 + contrast: + fg: 98.6 + black: 0 + red: 38.3 + green: 60.9 + yellow: 74.7 + blue: 63.5 + magenta: 18.4 + cyan: 73.9 + white: 98.6 + brightBlack: 0 + brightRed: 39.9 + brightGreen: 74 + brightYellow: 83.3 + brightBlue: 73.9 + brightMagenta: 38.5 + brightCyan: 86 + brightWhite: 107.5 diff --git a/themes/forest-light.yaml b/themes/forest-light.yaml new file mode 100644 index 00000000..e45c658f --- /dev/null +++ b/themes/forest-light.yaml @@ -0,0 +1,49 @@ +name: "forest light" +source: + marketplace_id: "charst4r.forest-light" + version: "0.0.3" + installs: 83 + author: "charst4r" + repo: "https://github.com/charst4r/forest-light-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=charst4r.forest-light" +colors: + bg: "#DDE0DC" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 87.3 + black: 87.3 + red: 55.2 + green: 30.5 + yellow: 39.2 + blue: 67.3 + magenta: 55.8 + cyan: 41.8 + white: 67.2 + brightBlack: 60 + brightRed: 55.2 + brightGreen: 22.2 + brightYellow: 22.2 + brightBlue: 67.3 + brightMagenta: 55.8 + brightCyan: 41.8 + brightWhite: 29.7 diff --git a/themes/forest-night-ethereal-magic.yaml b/themes/forest-night-ethereal-magic.yaml new file mode 100644 index 00000000..b966cef2 --- /dev/null +++ b/themes/forest-night-ethereal-magic.yaml @@ -0,0 +1,49 @@ +name: "Forest Night - Ethereal Magic" +source: + marketplace_id: "forrest-knight.forest-night-theme" + version: "1.0.3" + installs: 2762 + author: "Forrest Knight" + repo: "https://github.com/ForrestKnight/forest-night-theme" + url: "https://marketplace.visualstudio.com/items?itemName=forrest-knight.forest-night-theme" +colors: + bg: "#1A2125" + fg: "#C9D1D9" + black: "#1A2125" + red: "#E91E63" + green: "#8FBC8F" + yellow: "#F39C12" + blue: "#4ECDC4" + magenta: "#9B59B6" + cyan: "#4ECDC4" + white: "#C9D1D9" + brightBlack: "#4A5568" + brightRed: "#E91E63" + brightGreen: "#8FBC8F" + brightYellow: "#F39C12" + brightBlue: "#66D9EF" + brightMagenta: "#9B59B6" + brightCyan: "#4ECDC4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 233 + contrast: + fg: 75.9 + black: 0 + red: 31.5 + green: 57.9 + yellow: 57.3 + blue: 63.5 + magenta: 27.5 + cyan: 63.5 + white: 75.9 + brightBlack: 13.8 + brightRed: 31.5 + brightGreen: 57.9 + brightYellow: 57.3 + brightBlue: 72.3 + brightMagenta: 27.5 + brightCyan: 63.5 + brightWhite: 105.8 diff --git a/themes/forest-night-italic-serenade.yaml b/themes/forest-night-italic-serenade.yaml new file mode 100644 index 00000000..775e4001 --- /dev/null +++ b/themes/forest-night-italic-serenade.yaml @@ -0,0 +1,49 @@ +name: "Forest Night (Italic) Serenade" +source: + marketplace_id: "rul3r.forest-night-serenade" + version: "0.1.9" + installs: 2139 + author: "rul3r" + repo: "https://github.com/rul3rst4/forest-night-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=rul3r.forest-night-serenade" +colors: + bg: "#323D43" + fg: "#D8CAAC" + black: "#3C474D" + red: "#E68183" + green: "#A7C080" + yellow: "#D9BB80" + blue: "#83B6AF" + magenta: "#D39BB6" + cyan: "#87C095" + white: "#D8CAAC" + brightBlack: "#3C474D" + brightRed: "#E68183" + brightGreen: "#A7C080" + brightYellow: "#D9BB80" + brightBlue: "#83B6AF" + brightMagenta: "#D39BB6" + brightCyan: "#87C095" + brightWhite: "#D8CAAC" +meta: + mode: "dark" + accent: "orange" + hue: 232 + contrast: + fg: 66.9 + black: 0 + red: 41.8 + green: 55.3 + yellow: 59.5 + blue: 49.2 + magenta: 48.5 + cyan: 52.9 + white: 66.9 + brightBlack: 0 + brightRed: 41.8 + brightGreen: 55.3 + brightYellow: 59.5 + brightBlue: 49.2 + brightMagenta: 48.5 + brightCyan: 52.9 + brightWhite: 66.9 diff --git a/themes/forest-night-serenade.yaml b/themes/forest-night-serenade.yaml new file mode 100644 index 00000000..14eb21d4 --- /dev/null +++ b/themes/forest-night-serenade.yaml @@ -0,0 +1,49 @@ +name: "Forest Night Serenade" +source: + marketplace_id: "rul3r.forest-night-serenade" + version: "0.1.9" + installs: 2139 + author: "rul3r" + repo: "https://github.com/rul3rst4/forest-night-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=rul3r.forest-night-serenade" +colors: + bg: "#2B2F32" + fg: "#D8CAAC" + black: "#3C474D" + red: "#E68183" + green: "#A7C080" + yellow: "#D9BB80" + blue: "#83B6AF" + magenta: "#D39BB6" + cyan: "#87C095" + white: "#D8CAAC" + brightBlack: "#3C474D" + brightRed: "#E68183" + brightGreen: "#A7C080" + brightYellow: "#D9BB80" + brightBlue: "#83B6AF" + brightMagenta: "#D39BB6" + brightCyan: "#87C095" + brightWhite: "#D8CAAC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 70.4 + black: 0 + red: 45.4 + green: 58.9 + yellow: 63.1 + blue: 52.8 + magenta: 52.1 + cyan: 56.5 + white: 70.4 + brightBlack: 0 + brightRed: 45.4 + brightGreen: 58.9 + brightYellow: 63.1 + brightBlue: 52.8 + brightMagenta: 52.1 + brightCyan: 56.5 + brightWhite: 70.4 diff --git a/themes/forest-night.yaml b/themes/forest-night.yaml new file mode 100644 index 00000000..cf2eb7ab --- /dev/null +++ b/themes/forest-night.yaml @@ -0,0 +1,49 @@ +name: "Forest Night" +source: + marketplace_id: "ThemePlanet-Verdant.themeplanet-verdant" + version: "1.0.0" + installs: 47 + author: "ThemePlanet - Verdant" + repo: "https://github.com/Ukt01/themeplanet-verdant" + url: "https://marketplace.visualstudio.com/items?itemName=ThemePlanet-Verdant.themeplanet-verdant" +colors: + bg: "#1A2B1F" + fg: "#E8F5E8" + black: "#1A2B1F" + red: "#D4A574" + green: "#6B8E6B" + yellow: "#C9A96E" + blue: "#4A7C59" + magenta: "#8FA88F" + cyan: "#2D5A47" + white: "#E8F5E8" + brightBlack: "#5A7A5A" + brightRed: "#D4A574" + brightGreen: "#6B8E6B" + brightYellow: "#C9A96E" + brightBlue: "#4A7C59" + brightMagenta: "#8FA88F" + brightCyan: "#2D5A47" + brightWhite: "#F5F7F2" +meta: + mode: "dark" + accent: "yellow" + hue: 153 + contrast: + fg: 95.6 + black: 0 + red: 55 + green: 34 + yellow: 54.8 + blue: 24.7 + magenta: 48.3 + cyan: 11.6 + white: 95.6 + brightBlack: 25 + brightRed: 55 + brightGreen: 34 + brightYellow: 54.8 + brightBlue: 24.7 + brightMagenta: 48.3 + brightCyan: 11.6 + brightWhite: 98.7 diff --git a/themes/forest-rose.yaml b/themes/forest-rose.yaml new file mode 100644 index 00000000..b54b79fb --- /dev/null +++ b/themes/forest-rose.yaml @@ -0,0 +1,49 @@ +name: "Forest Rose" +source: + marketplace_id: "hongtrapt.pink-angel-themes" + version: "0.0.2" + installs: 273 + author: "hongtrapt" + repo: "https://github.com/hongtra1311/pink-angel-themes" + url: "https://marketplace.visualstudio.com/items?itemName=hongtrapt.pink-angel-themes" +colors: + bg: "#222B2E" + fg: "#F0F0F0" + black: "#222B2E" + red: "#C24D2C" + green: "#6D9F71" + yellow: "#EA9AB2" + blue: "#4A7D9A" + magenta: "#E27396" + cyan: "#337357" + white: "#F0F0F0" + brightBlack: "#9AAAB2" + brightRed: "#A43820" + brightGreen: "#337357" + brightYellow: "#E27396" + brightBlue: "#4A7D9A" + brightMagenta: "#EA9AB2" + brightCyan: "#6D9F71" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 94.3 + black: 0 + red: 25.6 + green: 40.5 + yellow: 56.4 + blue: 27 + magenta: 42.5 + cyan: 20.1 + white: 94.3 + brightBlack: 51.1 + brightRed: 16.3 + brightGreen: 20.1 + brightYellow: 42.5 + brightBlue: 27 + brightMagenta: 56.4 + brightCyan: 40.5 + brightWhite: 94.3 diff --git a/themes/forest-violet.yaml b/themes/forest-violet.yaml new file mode 100644 index 00000000..5323f5a7 --- /dev/null +++ b/themes/forest-violet.yaml @@ -0,0 +1,49 @@ +name: "Forest Violet" +source: + marketplace_id: "InnaSodri.lilac-grove-bundle" + version: "0.0.1" + installs: 230 + author: "Inna Sodri" + repo: "https://example.com/inna/lilac-grove-bundle" + url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.lilac-grove-bundle" +colors: + bg: "#0C1110" + fg: "#E6ECE8" + black: "#1B2421" + red: "#EA6B6B" + green: "#46C38A" + yellow: "#EAC76B" + blue: "#6DB8FF" + magenta: "#A98CF9" + cyan: "#6AD3CF" + white: "#E4ECE8" + brightBlack: "#1B2421" + brightRed: "#EA6B6B" + brightGreen: "#46C38A" + brightYellow: "#EAC76B" + brightBlue: "#6DB8FF" + brightMagenta: "#A98CF9" + brightCyan: "#6AD3CF" + brightWhite: "#E4ECE8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94 + black: 0 + red: 44.2 + green: 58.2 + yellow: 74.5 + blue: 60.7 + magenta: 49.4 + cyan: 69.8 + white: 93.8 + brightBlack: 0 + brightRed: 44.2 + brightGreen: 58.2 + brightYellow: 74.5 + brightBlue: 60.7 + brightMagenta: 49.4 + brightCyan: 69.8 + brightWhite: 93.8 diff --git a/themes/forestfly-dark-hard.yaml b/themes/forestfly-dark-hard.yaml new file mode 100644 index 00000000..3bee9856 --- /dev/null +++ b/themes/forestfly-dark-hard.yaml @@ -0,0 +1,49 @@ +name: "forestfly Dark Hard" +source: + marketplace_id: "AndreaCombette.FOREST-FLY" + version: "0.3.1" + installs: 802 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/ForestFly-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.FOREST-FLY" +colors: + bg: "#272427" + fg: "#FBBEA3" + black: "#3C2729" + red: "#FF2322" + green: "#B7665C" + yellow: "#FF8533" + blue: "#7C6966" + magenta: "#B7665C" + cyan: "#7C6966" + white: "#B09F9C" + brightBlack: "#7C6966" + brightRed: "#FD5033" + brightGreen: "#FFC255" + brightYellow: "#FFC255" + brightBlue: "#B09F9C" + brightMagenta: "#F19681" + brightCyan: "#B09F9C" + brightWhite: "#FBBEA3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 72.5 + black: 0 + red: 35.5 + green: 30.6 + yellow: 51.9 + blue: 23.3 + magenta: 30.6 + cyan: 23.3 + white: 49.4 + brightBlack: 23.3 + brightRed: 39.8 + brightGreen: 73.1 + brightYellow: 73.1 + brightBlue: 49.4 + brightMagenta: 55.6 + brightCyan: 49.4 + brightWhite: 72.5 diff --git a/themes/forestfly-dark.yaml b/themes/forestfly-dark.yaml new file mode 100644 index 00000000..5a36a550 --- /dev/null +++ b/themes/forestfly-dark.yaml @@ -0,0 +1,49 @@ +name: "forestfly Dark" +source: + marketplace_id: "AndreaCombette.FOREST-FLY" + version: "0.3.1" + installs: 802 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/ForestFly-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.FOREST-FLY" +colors: + bg: "#3C2729" + fg: "#FBBEA3" + black: "#3C2729" + red: "#B7665C" + green: "#F19681" + yellow: "#F19681" + blue: "#7C6966" + magenta: "#B7665C" + cyan: "#7C6966" + white: "#B09F9C" + brightBlack: "#B7665C" + brightRed: "#B7665C" + brightGreen: "#F19681" + brightYellow: "#FBBEA3" + brightBlue: "#B09F9C" + brightMagenta: "#B09F9C" + brightCyan: "#B09F9C" + brightWhite: "#FBBEA3" +meta: + mode: "dark" + accent: "orange" + hue: 13 + contrast: + fg: 71 + black: 0 + red: 29 + green: 54.1 + yellow: 54.1 + blue: 21.8 + magenta: 29 + cyan: 21.8 + white: 47.8 + brightBlack: 29 + brightRed: 29 + brightGreen: 54.1 + brightYellow: 71 + brightBlue: 47.8 + brightMagenta: 47.8 + brightCyan: 47.8 + brightWhite: 71 diff --git a/themes/forestfly-light-hard.yaml b/themes/forestfly-light-hard.yaml new file mode 100644 index 00000000..d7b3f855 --- /dev/null +++ b/themes/forestfly-light-hard.yaml @@ -0,0 +1,49 @@ +name: "forestfly Light Hard" +source: + marketplace_id: "AndreaCombette.FOREST-FLY" + version: "0.3.1" + installs: 802 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/ForestFly-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.FOREST-FLY" +colors: + bg: "#FBBEA3" + fg: "#3C2729" + black: "#FBBEA3" + red: "#FF2322" + green: "#B7665C" + yellow: "#FF8533" + blue: "#7C6966" + magenta: "#B7665C" + cyan: "#7C6966" + white: "#7C6966" + brightBlack: "#7C6966" + brightRed: "#993836" + brightGreen: "#993836" + brightYellow: "#B7665C" + brightBlue: "#4E4442" + brightMagenta: "#7C6966" + brightCyan: "#4E4442" + brightWhite: "#3C2729" +meta: + mode: "light" + accent: "orange" + hue: 45 + contrast: + fg: 70.6 + black: 0 + red: 33.5 + green: 38.4 + yellow: 17.4 + blue: 45.8 + magenta: 38.4 + cyan: 45.8 + white: 45.8 + brightBlack: 45.8 + brightRed: 53.9 + brightGreen: 53.9 + brightYellow: 38.4 + brightBlue: 62 + brightMagenta: 45.8 + brightCyan: 62 + brightWhite: 70.6 diff --git a/themes/forestlook.yaml b/themes/forestlook.yaml new file mode 100644 index 00000000..3a5c21ff --- /dev/null +++ b/themes/forestlook.yaml @@ -0,0 +1,49 @@ +name: "ForestLook" +source: + marketplace_id: "Th3SmiL3y.forestlook" + version: "1.1.5" + installs: 1044 + author: "Th3SmiL3y" + repo: "https://github.com/Th3SmiL3y/forestlook-theme-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Th3SmiL3y.forestlook" +colors: + bg: "#242221" + fg: "#FFFFFF" + black: "#000000" + red: "#FF3838" + green: "#0DBC79" + yellow: "#FFFF36" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#5A5A5A" + brightRed: "#FF3535" + brightGreen: "#23D18B" + brightYellow: "#FFFF36" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 105.4 + black: 0 + red: 37.6 + green: 51.5 + yellow: 100.4 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 88.5 + brightBlack: 15.6 + brightRed: 37.3 + brightGreen: 62.1 + brightYellow: 100.4 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/forestry.yaml b/themes/forestry.yaml new file mode 100644 index 00000000..06dec578 --- /dev/null +++ b/themes/forestry.yaml @@ -0,0 +1,49 @@ +name: "Forestry" +source: + marketplace_id: "Gandolphius.gandolphius-forestry" + version: "0.0.1" + installs: 91 + author: "Gandolphius" + repo: "https://github.com/gandolphius/forestry-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gandolphius.gandolphius-forestry" +colors: + bg: "#243021" + fg: "#D1BC7F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#DBDBDB" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 139 + contrast: + fg: 62.7 + black: 0 + red: 23.3 + green: 49.6 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 80.4 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.6 + brightMagenta: 42 + brightCyan: 52 + brightWhite: 86.6 diff --git a/themes/forge-dark.yaml b/themes/forge-dark.yaml new file mode 100644 index 00000000..1fc42834 --- /dev/null +++ b/themes/forge-dark.yaml @@ -0,0 +1,49 @@ +name: "Forge (Dark)" +source: + marketplace_id: "FollowUpBoss.forge-vscode-theme" + version: "0.0.2" + installs: 898 + author: "Follow Up Boss" + repo: "https://github.com/FollowUpBoss/fub-spa" + url: "https://marketplace.visualstudio.com/items?itemName=FollowUpBoss.forge-vscode-theme" +colors: + bg: "#080E11" + fg: "#FFFFFF" + black: "#415662" + red: "#EB484B" + green: "#4CC88C" + yellow: "#F3B942" + blue: "#2472C8" + magenta: "#C661E9" + cyan: "#3BD9E0" + white: "#E5E5E5" + brightBlack: "#7A8991" + brightRed: "#FF837D" + brightGreen: "#94E6B8" + brightYellow: "#FFCE71" + brightBlue: "#4EADDD" + brightMagenta: "#E7A4FF" + brightCyan: "#8CEFF4" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 229 + contrast: + fg: 107.6 + black: 15.1 + red: 37.3 + green: 61 + yellow: 69.9 + blue: 28.1 + magenta: 41.2 + cyan: 71.8 + white: 90.7 + brightBlack: 37.7 + brightRed: 55.2 + brightGreen: 80.8 + brightYellow: 81 + brightBlue: 52.6 + brightMagenta: 66.7 + brightCyan: 87.2 + brightWhite: 90.7 diff --git a/themes/forge-light.yaml b/themes/forge-light.yaml new file mode 100644 index 00000000..796ae1a0 --- /dev/null +++ b/themes/forge-light.yaml @@ -0,0 +1,49 @@ +name: "Forge (Light)" +source: + marketplace_id: "FollowUpBoss.forge-vscode-theme" + version: "0.0.2" + installs: 898 + author: "Follow Up Boss" + repo: "https://github.com/FollowUpBoss/fub-spa" + url: "https://marketplace.visualstudio.com/items?itemName=FollowUpBoss.forge-vscode-theme" +colors: + bg: "#FFFFFF" + fg: "#415662" + black: "#000000" + red: "#EB484B" + green: "#00A367" + yellow: "#F3B942" + blue: "#4EADDD" + magenta: "#9B00C2" + cyan: "#00BBC2" + white: "#7A8991" + brightBlack: "#666666" + brightRed: "#A5252B" + brightGreen: "#006F42" + brightYellow: "#A97B0C" + brightBlue: "#0076A4" + brightMagenta: "#6B0089" + brightCyan: "#007F83" + brightWhite: "#B2BBC0" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 86.7 + black: 106 + red: 64.1 + green: 59.3 + yellow: 32.5 + blue: 49.1 + magenta: 80.3 + cyan: 45.9 + white: 63.7 + brightBlack: 78.8 + brightRed: 83.8 + brightGreen: 80.6 + brightYellow: 65.3 + brightBlue: 74.5 + brightMagenta: 92.4 + brightCyan: 72.8 + brightWhite: 37.5 diff --git a/themes/formal.yaml b/themes/formal.yaml new file mode 100644 index 00000000..dfd53694 --- /dev/null +++ b/themes/formal.yaml @@ -0,0 +1,49 @@ +name: "Formal" +source: + marketplace_id: "Lemz42.Formal" + version: "0.0.3" + installs: 17 + author: "Lemz42" + repo: "https://github.com/AM4730/Formal-VSC-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Lemz42.Formal" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#777777" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 71.1 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/formosa-dark-ipanema-blue.yaml b/themes/formosa-dark-ipanema-blue.yaml new file mode 100644 index 00000000..df260d43 --- /dev/null +++ b/themes/formosa-dark-ipanema-blue.yaml @@ -0,0 +1,49 @@ +name: "Formosa Dark - Ipanema Blue" +source: + marketplace_id: "TakeshiYu.formosa-theme" + version: "1.0.0" + installs: 46 + author: "Takeshi Yu" + repo: "https://github.com/takeshiyu/formosa-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TakeshiYu.formosa-theme" +colors: + bg: "#1A2332" + fg: "#E8E4DF" + black: "#141C28" + red: "#E08080" + green: "#6ABA7A" + yellow: "#E0B050" + blue: "#5BBCD6" + magenta: "#B080A0" + cyan: "#7BCCE6" + white: "#E8E4DF" + brightBlack: "#5A6A80" + brightRed: "#F0909A" + brightGreen: "#8ADA9A" + brightYellow: "#F0C060" + brightBlue: "#7BCCE6" + brightMagenta: "#C090B0" + brightCyan: "#9BDCF6" + brightWhite: "#F0ECE7" +meta: + mode: "dark" + accent: "yellow" + hue: 260 + contrast: + fg: 88.2 + black: 0 + red: 46.1 + green: 53.2 + yellow: 61.2 + blue: 56.9 + magenta: 39.3 + cyan: 66.6 + white: 88.2 + brightBlack: 21.7 + brightRed: 54.6 + brightGreen: 71 + brightYellow: 70.3 + brightBlue: 66.6 + brightMagenta: 47.4 + brightCyan: 77.1 + brightWhite: 93.2 diff --git a/themes/formosa-dark-night-green.yaml b/themes/formosa-dark-night-green.yaml new file mode 100644 index 00000000..5e305f02 --- /dev/null +++ b/themes/formosa-dark-night-green.yaml @@ -0,0 +1,49 @@ +name: "Formosa Dark - Night Green" +source: + marketplace_id: "TakeshiYu.formosa-theme" + version: "1.0.0" + installs: 46 + author: "Takeshi Yu" + repo: "https://github.com/takeshiyu/formosa-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TakeshiYu.formosa-theme" +colors: + bg: "#1A2822" + fg: "#E8E4DF" + black: "#141F1A" + red: "#E07070" + green: "#6ABA7A" + yellow: "#E0B050" + blue: "#5BBCD6" + magenta: "#B080A0" + cyan: "#8ADA9A" + white: "#E8E4DF" + brightBlack: "#5A7060" + brightRed: "#F09090" + brightGreen: "#9AEAAA" + brightYellow: "#F0C060" + brightBlue: "#7BCCE6" + brightMagenta: "#C090B0" + brightCyan: "#AAEABA" + brightWhite: "#F0ECE7" +meta: + mode: "dark" + accent: "orange" + hue: 166 + contrast: + fg: 87.8 + black: 0 + red: 41 + green: 52.8 + yellow: 60.8 + blue: 56.5 + magenta: 38.9 + cyan: 70.6 + white: 87.8 + brightBlack: 22.1 + brightRed: 53.9 + brightGreen: 80.1 + brightYellow: 69.9 + brightBlue: 66.2 + brightMagenta: 47 + brightCyan: 82 + brightWhite: 92.9 diff --git a/themes/formosa-light-ipanema-blue.yaml b/themes/formosa-light-ipanema-blue.yaml new file mode 100644 index 00000000..d1217c1c --- /dev/null +++ b/themes/formosa-light-ipanema-blue.yaml @@ -0,0 +1,49 @@ +name: "Formosa Light - Ipanema Blue" +source: + marketplace_id: "TakeshiYu.formosa-theme" + version: "1.0.0" + installs: 46 + author: "Takeshi Yu" + repo: "https://github.com/takeshiyu/formosa-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TakeshiYu.formosa-theme" +colors: + bg: "#FAFAF8" + fg: "#1A1D23" + black: "#1A1D23" + red: "#B84A5A" + green: "#3D7A5A" + yellow: "#C49A3A" + blue: "#2A7A8A" + magenta: "#8A5A7A" + cyan: "#2A7080" + white: "#E8E8E6" + brightBlack: "#5A5D63" + brightRed: "#CF6679" + brightGreen: "#5A9A6A" + brightYellow: "#D4AA4A" + brightBlue: "#4A9AAA" + brightMagenta: "#AA7A9A" + brightCyan: "#3A8A9A" + brightWhite: "#F7F7F5" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 100.7 + black: 100.7 + red: 71.1 + green: 71.9 + yellow: 47.8 + blue: 70.9 + magenta: 74.2 + cyan: 74.8 + white: 8.1 + brightBlack: 79.6 + brightRed: 60.1 + brightGreen: 57.8 + brightYellow: 39.6 + brightBlue: 56.3 + brightMagenta: 59.7 + brightCyan: 63.8 + brightWhite: 0 diff --git a/themes/formosa-light-night-green.yaml b/themes/formosa-light-night-green.yaml new file mode 100644 index 00000000..83347b99 --- /dev/null +++ b/themes/formosa-light-night-green.yaml @@ -0,0 +1,49 @@ +name: "Formosa Light - Night Green" +source: + marketplace_id: "TakeshiYu.formosa-theme" + version: "1.0.0" + installs: 46 + author: "Takeshi Yu" + repo: "https://github.com/takeshiyu/formosa-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TakeshiYu.formosa-theme" +colors: + bg: "#FAFAF8" + fg: "#1A1D23" + black: "#1A1D23" + red: "#B84A5A" + green: "#3D7A5A" + yellow: "#C49A3A" + blue: "#2A7A8A" + magenta: "#8A5A7A" + cyan: "#3A6A50" + white: "#E8E8E6" + brightBlack: "#5A5D63" + brightRed: "#CF6679" + brightGreen: "#5A9A6A" + brightYellow: "#D4AA4A" + brightBlue: "#4A9AAA" + brightMagenta: "#AA7A9A" + brightCyan: "#4A7A5A" + brightWhite: "#F7F7F5" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 100.7 + black: 100.7 + red: 71.1 + green: 71.9 + yellow: 47.8 + blue: 70.9 + magenta: 74.2 + cyan: 78 + white: 8.1 + brightBlack: 79.6 + brightRed: 60.1 + brightGreen: 57.8 + brightYellow: 39.6 + brightBlue: 56.3 + brightMagenta: 59.7 + brightCyan: 71.2 + brightWhite: 0 diff --git a/themes/forventone.yaml b/themes/forventone.yaml new file mode 100644 index 00000000..1b3dbc12 --- /dev/null +++ b/themes/forventone.yaml @@ -0,0 +1,49 @@ +name: "forventone" +source: + marketplace_id: "Forventone.forventone-theme" + version: "0.0.1" + installs: 20 + author: "Forventone" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Forventone.forventone-theme" +colors: + bg: "#1F212A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 105.6 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.1 + magenta: 28.4 + cyan: 46.2 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.2 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/forxtu-light.yaml b/themes/forxtu-light.yaml new file mode 100644 index 00000000..d1443658 --- /dev/null +++ b/themes/forxtu-light.yaml @@ -0,0 +1,49 @@ +name: "FORXTU Light" +source: + marketplace_id: "forxtu.forxtu-vscode-theme" + version: "0.2.1" + installs: 1551 + author: "forxtu" + repo: "https://github.com/forxtu/forxtu-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=forxtu.forxtu-vscode-theme" +colors: + bg: "#FBFBFB" + fg: "#403F53" + black: "#403F53" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2AA298" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 91.3 + black: 91.3 + red: 66.3 + green: 64.2 + yellow: 37 + blue: 60.1 + magenta: 65.3 + cyan: 55.5 + white: 0 + brightBlack: 91.3 + brightRed: 66.3 + brightGreen: 64.2 + brightYellow: 39.7 + brightBlue: 60.1 + brightMagenta: 65.3 + brightCyan: 55.5 + brightWhite: 0 diff --git a/themes/forxtu.yaml b/themes/forxtu.yaml new file mode 100644 index 00000000..84745f62 --- /dev/null +++ b/themes/forxtu.yaml @@ -0,0 +1,49 @@ +name: "FORXTU" +source: + marketplace_id: "forxtu.forxtu-vscode-theme" + version: "0.2.1" + installs: 1551 + author: "forxtu" + repo: "https://github.com/forxtu/forxtu-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=forxtu.forxtu-vscode-theme" +colors: + bg: "#272A3E" + fg: "#CECEC7" + black: "#272A3E" + red: "#FA5653" + green: "#22DA6E" + yellow: "#9EF2FF" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#FA5653" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 277 + contrast: + fg: 72.5 + black: 0 + red: 39.3 + green: 64.2 + yellow: 86.8 + blue: 52.8 + magenta: 50.7 + cyan: 56.6 + white: 103.8 + brightBlack: 12.5 + brightRed: 39.3 + brightGreen: 64.2 + brightYellow: 90.6 + brightBlue: 52.8 + brightMagenta: 50.7 + brightCyan: 70.9 + brightWhite: 103.8 diff --git a/themes/foundyn-dev.yaml b/themes/foundyn-dev.yaml new file mode 100644 index 00000000..da4a490c --- /dev/null +++ b/themes/foundyn-dev.yaml @@ -0,0 +1,49 @@ +name: "Foundyn Dev" +source: + marketplace_id: "Foundyn.foundyn-dev" + version: "1.1.0" + installs: 799 + author: "Foundyn" + repo: "https://github.com/Foundyn/Foundyn-Dev" + url: "https://marketplace.visualstudio.com/items?itemName=Foundyn.foundyn-dev" +colors: + bg: "#1C1917" + fg: "#D9CBBE" + black: "#110F0E" + red: "#E73D13" + green: "#ADDA5E" + yellow: "#F9A931" + blue: "#FF8566" + magenta: "#C653AD" + cyan: "#4C9DF3" + white: "#D9CBBE" + brightBlack: "#9A918C" + brightRed: "#E73D13" + brightGreen: "#ADDA5E" + brightYellow: "#F9A931" + brightBlue: "#FF8566" + brightMagenta: "#C653AD" + brightCyan: "#4C9DF3" + brightWhite: "#D9CBBE" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 75.1 + black: 0 + red: 33.4 + green: 74 + yellow: 63.9 + blue: 54.2 + magenta: 33.7 + cyan: 46.6 + white: 75.1 + brightBlack: 42.6 + brightRed: 33.4 + brightGreen: 74 + brightYellow: 63.9 + brightBlue: 54.2 + brightMagenta: 33.7 + brightCyan: 46.6 + brightWhite: 75.1 diff --git a/themes/four-sages-color-theme.yaml b/themes/four-sages-color-theme.yaml new file mode 100644 index 00000000..fd1e6735 --- /dev/null +++ b/themes/four-sages-color-theme.yaml @@ -0,0 +1,49 @@ +name: "four-sages-color-theme" +source: + marketplace_id: "wavebeem.four-sages-vscode" + version: "1.0.0" + installs: 208 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/four-sages-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.four-sages-vscode" +colors: + bg: "#223130" + fg: "#C0D2D0" + black: "#23504E" + red: "#FF95A9" + green: "#81D943" + yellow: "#FF9C75" + blue: "#8FBEFF" + magenta: "#F58EFF" + cyan: "#00DDD4" + white: "#FFFFFF" + brightBlack: "#23504E" + brightRed: "#FF95A9" + brightGreen: "#81D943" + brightYellow: "#FF9C75" + brightBlue: "#8FBEFF" + brightMagenta: "#F58EFF" + brightCyan: "#00DDD4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 191 + contrast: + fg: 72.3 + black: 0 + red: 57.3 + green: 66 + yellow: 58 + blue: 61.3 + magenta: 57.8 + cyan: 68.2 + white: 103.2 + brightBlack: 0 + brightRed: 57.3 + brightGreen: 66 + brightYellow: 58 + brightBlue: 61.3 + brightMagenta: 57.8 + brightCyan: 68.2 + brightWhite: 103.2 diff --git a/themes/foxdracula-color-theme.yaml b/themes/foxdracula-color-theme.yaml new file mode 100644 index 00000000..1a823b76 --- /dev/null +++ b/themes/foxdracula-color-theme.yaml @@ -0,0 +1,49 @@ +name: "FoxDracula-color-theme" +source: + marketplace_id: "daniloBrayann.foxdracula" + version: "0.0.12" + installs: 149 + author: "daniloBrayann" + repo: "https://github.com/danilobrayann/dev-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.foxdracula" +colors: + bg: "#19191A" + fg: "#878784" + black: "#21222C" + red: "#FF5555" + green: "#46B1F2" + yellow: "#1EE6C2" + blue: "#00FF9E" + magenta: "#1FEA4F" + cyan: "#0024F2" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#1F62F1" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 36.8 + black: 0 + red: 43.2 + green: 54.3 + yellow: 75.4 + blue: 87.1 + magenta: 74.6 + cyan: 14.6 + white: 101.7 + brightBlack: 27.8 + brightRed: 48.6 + brightGreen: 88.8 + brightYellow: 103.3 + brightBlue: 25.8 + brightMagenta: 62.4 + brightCyan: 96.6 + brightWhite: 106.7 diff --git a/themes/frankenstein.yaml b/themes/frankenstein.yaml new file mode 100644 index 00000000..964e9ee3 --- /dev/null +++ b/themes/frankenstein.yaml @@ -0,0 +1,49 @@ +name: "Frankenstein" +source: + marketplace_id: "synxty.frankenstein" + version: "1.0.3" + installs: 2249 + author: "Synxty" + repo: "https://github.com/synxty/frankenstein" + url: "https://marketplace.visualstudio.com/items?itemName=synxty.frankenstein" +colors: + bg: "#121212" + fg: "#F1FBF7" + black: "#21222C" + red: "#F5333E" + green: "#2AC289" + yellow: "#FFFF59" + blue: "#3E56C2" + magenta: "#FF79C6" + cyan: "#8BF5FD" + white: "#F1FBF7" + brightBlack: "#555555" + brightRed: "#FF6970" + brightGreen: "#8EE5C4" + brightYellow: "#FFFFA5" + brightBlue: "#7F95F5" + brightMagenta: "#FFC4E6" + brightCyan: "#BDF3FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 103.1 + black: 0 + red: 36.7 + green: 56.9 + yellow: 102.6 + blue: 20.2 + magenta: 55 + cyan: 90.3 + white: 103.1 + brightBlack: 15.5 + brightRed: 48.2 + brightGreen: 80 + brightYellow: 104 + brightBlue: 47.6 + brightMagenta: 80.5 + brightCyan: 93.6 + brightWhite: 107.3 diff --git a/themes/frantic-contrast.yaml b/themes/frantic-contrast.yaml new file mode 100644 index 00000000..b195be35 --- /dev/null +++ b/themes/frantic-contrast.yaml @@ -0,0 +1,49 @@ +name: "frantic-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0E1114" + fg: "#AEB9C4" + black: "#181E23" + red: "#BA0E2E" + green: "#EF6462" + yellow: "#89A7BC" + blue: "#E6EAEF" + magenta: "#EF6462" + cyan: "#89A7BC" + white: "#BDC6CF" + brightBlack: "#384450" + brightRed: "#F03E5F" + brightGreen: "#F8BFBF" + brightYellow: "#CAD8E1" + brightBlue: "#FFFFFF" + brightMagenta: "#F8BFBF" + brightCyan: "#CAD8E1" + brightWhite: "#E9ECEF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 63.3 + black: 0 + red: 21 + green: 43.4 + yellow: 52 + blue: 93.4 + magenta: 43.4 + cyan: 52 + white: 70.9 + brightBlack: 8.9 + brightRed: 37.3 + brightGreen: 75.8 + brightYellow: 81.1 + brightBlue: 107.4 + brightMagenta: 75.8 + brightCyan: 81.1 + brightWhite: 94.7 diff --git a/themes/frantic-light.yaml b/themes/frantic-light.yaml new file mode 100644 index 00000000..f2b659d1 --- /dev/null +++ b/themes/frantic-light.yaml @@ -0,0 +1,49 @@ +name: "frantic-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#516172" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#EF6462" + yellow: "#89A7BC" + blue: "#516172" + magenta: "#EF6462" + cyan: "#89A7BC" + white: "#5C6E81" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F8BFBF" + brightYellow: "#CAD8E1" + brightBlue: "#8294A7" + brightMagenta: "#F8BFBF" + brightCyan: "#CAD8E1" + brightWhite: "#8294A7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 81.6 + black: 0 + red: 80.3 + green: 57.8 + yellow: 49.5 + blue: 81.6 + magenta: 57.8 + cyan: 49.5 + white: 76.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 26.7 + brightYellow: 21.7 + brightBlue: 58.2 + brightMagenta: 26.7 + brightCyan: 21.7 + brightWhite: 58.2 diff --git a/themes/frantic.yaml b/themes/frantic.yaml new file mode 100644 index 00000000..cefea5d8 --- /dev/null +++ b/themes/frantic.yaml @@ -0,0 +1,49 @@ +name: "frantic" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#252C33" + fg: "#AEB9C4" + black: "#303942" + red: "#BA0E2E" + green: "#EF6462" + yellow: "#89A7BC" + blue: "#E6EAEF" + magenta: "#EF6462" + cyan: "#89A7BC" + white: "#BDC6CF" + brightBlack: "#505F6E" + brightRed: "#F03E5F" + brightGreen: "#F8BFBF" + brightYellow: "#CAD8E1" + brightBlue: "#FFFFFF" + brightMagenta: "#F8BFBF" + brightCyan: "#CAD8E1" + brightWhite: "#E9ECEF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 59.7 + black: 0 + red: 17.4 + green: 39.8 + yellow: 48.4 + blue: 89.8 + magenta: 39.8 + cyan: 48.4 + white: 67.3 + brightBlack: 15.4 + brightRed: 33.7 + brightGreen: 72.2 + brightYellow: 77.5 + brightBlue: 103.8 + brightMagenta: 72.2 + brightCyan: 77.5 + brightWhite: 91.1 diff --git a/themes/french-rose.yaml b/themes/french-rose.yaml new file mode 100644 index 00000000..8403c70c --- /dev/null +++ b/themes/french-rose.yaml @@ -0,0 +1,49 @@ +name: "French Rose" +source: + marketplace_id: "french-rose-theme.french-rose-theme" + version: "1.0.0" + installs: 3807 + author: "French Rose Theme" + repo: "https://github.com/denizozturk/french-rose-theme" + url: "https://marketplace.visualstudio.com/items?itemName=french-rose-theme.french-rose-theme" +colors: + bg: "#1E293B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 76.9 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.2 + cyan: 45 + white: 87.4 + brightBlack: 19.4 + brightRed: 36 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/fresh-start.yaml b/themes/fresh-start.yaml new file mode 100644 index 00000000..9f39b555 --- /dev/null +++ b/themes/fresh-start.yaml @@ -0,0 +1,49 @@ +name: "Fresh Start" +source: + marketplace_id: "BrihiIlyesImad.fresh-start" + version: "2.0.0" + installs: 28 + author: "Brihi Ilyes Imad" + repo: "https://github.com/ilyesBrihi/fresh-start" + url: "https://marketplace.visualstudio.com/items?itemName=BrihiIlyesImad.fresh-start" +colors: + bg: "#12131A" + fg: "#E6E8E6" + black: "#3A3D4C" + red: "#F47F72" + green: "#A8E6A2" + yellow: "#FFCB8B" + blue: "#78DCE8" + magenta: "#D1B4DE" + cyan: "#78DCE8" + white: "#E6E8E6" + brightBlack: "#6C7086" + brightRed: "#FF9F95" + brightGreen: "#C8F9C2" + brightYellow: "#FFDAA0" + brightBlue: "#9CE2FC" + brightMagenta: "#E1C4EC" + brightCyan: "#B0F9F1" + brightWhite: "#E6E8E6" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 91.9 + black: 0 + red: 51.2 + green: 81.4 + yellow: 79.9 + blue: 75.7 + magenta: 66.8 + cyan: 75.7 + white: 91.9 + brightBlack: 27.1 + brightRed: 63.9 + brightGreen: 94.9 + brightYellow: 86.8 + brightBlue: 82.2 + brightMagenta: 76.1 + brightCyan: 94.4 + brightWhite: 91.9 diff --git a/themes/freshcut-contrast.yaml b/themes/freshcut-contrast.yaml new file mode 100644 index 00000000..35720721 --- /dev/null +++ b/themes/freshcut-contrast.yaml @@ -0,0 +1,49 @@ +name: "freshcut-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#000000" + fg: "#F8F8F2" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#4ECDC4" + yellow: "#00A8C6" + blue: "#AEE239" + magenta: "#C8D7E8" + cyan: "#4ECDC4" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#9EE3DF" + brightYellow: "#2DDFFF" + brightBlue: "#D2EF92" + brightMagenta: "#FFFFFF" + brightCyan: "#9EE3DF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 103 + black: 0 + red: 21.5 + green: 65.7 + yellow: 48.2 + blue: 78.8 + magenta: 81.3 + cyan: 65.7 + white: 107.9 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 82.1 + brightYellow: 76.4 + brightBlue: 90.4 + brightMagenta: 107.9 + brightCyan: 82.1 + brightWhite: 107.9 diff --git a/themes/freshcut-light.yaml b/themes/freshcut-light.yaml new file mode 100644 index 00000000..4dae7fe6 --- /dev/null +++ b/themes/freshcut-light.yaml @@ -0,0 +1,49 @@ +name: "freshcut-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#2F3030" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#3DA09A" + yellow: "#008299" + blue: "#83AA29" + magenta: "#8E99A5" + cyan: "#3BA099" + white: "#3C3D3D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#78CBC6" + brightYellow: "#00D9FF" + brightBlue: "#B4D960" + brightMagenta: "#C7CCD2" + brightCyan: "#75CCC6" + brightWhite: "#616464" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.6 + black: 0 + red: 80.3 + green: 58.2 + yellow: 70.7 + blue: 52.4 + magenta: 55.3 + cyan: 58.3 + white: 95.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 35.6 + brightYellow: 29.6 + brightBlue: 27.3 + brightMagenta: 27.6 + brightCyan: 35.3 + brightWhite: 79.9 diff --git a/themes/freshcut.yaml b/themes/freshcut.yaml new file mode 100644 index 00000000..599fec95 --- /dev/null +++ b/themes/freshcut.yaml @@ -0,0 +1,49 @@ +name: "freshcut" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2F3030" + fg: "#F8F8F2" + black: "#3C3D3D" + red: "#BA0E2E" + green: "#4ECDC4" + yellow: "#00A8C6" + blue: "#AEE239" + magenta: "#C8D7E8" + cyan: "#4ECDC4" + white: "#FFFFFF" + brightBlack: "#616464" + brightRed: "#F03E5F" + brightGreen: "#9EE3DF" + brightYellow: "#2DDFFF" + brightBlue: "#D2EF92" + brightMagenta: "#FFFFFF" + brightCyan: "#9EE3DF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 97.9 + black: 0 + red: 16.4 + green: 60.6 + yellow: 43.1 + blue: 73.8 + magenta: 76.2 + cyan: 60.6 + white: 102.8 + brightBlack: 16.9 + brightRed: 32.7 + brightGreen: 77 + brightYellow: 71.3 + brightBlue: 85.3 + brightMagenta: 102.8 + brightCyan: 77 + brightWhite: 102.8 diff --git a/themes/fretefy.yaml b/themes/fretefy.yaml new file mode 100644 index 00000000..fae98788 --- /dev/null +++ b/themes/fretefy.yaml @@ -0,0 +1,49 @@ +name: "Fretefy" +source: + marketplace_id: "Fretefy.fretefy-theme" + version: "0.0.2" + installs: 43 + author: "Fretefy" + repo: "https://github.com/fretefy/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Fretefy.fretefy-theme" +colors: + bg: "#003250" + fg: "#E7ECEF" + black: "#2D2B55" + red: "#D63300" + green: "#20D800" + yellow: "#FFCE00" + blue: "#0096ED" + magenta: "#ED7C00" + cyan: "#69EDE9" + white: "#FFFFFF" + brightBlack: "#5C5C61" + brightRed: "#D63300" + brightGreen: "#20D800" + brightYellow: "#FFCE00" + brightBlue: "#0096ED" + brightMagenta: "#ED7C00" + brightCyan: "#69EDE9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 242 + contrast: + fg: 89.7 + black: 0 + red: 24.4 + green: 61.1 + yellow: 75.1 + blue: 38.1 + magenta: 43.2 + cyan: 78.6 + white: 102.6 + brightBlack: 13.8 + brightRed: 24.4 + brightGreen: 61.1 + brightYellow: 75.1 + brightBlue: 38.1 + brightMagenta: 43.2 + brightCyan: 78.6 + brightWhite: 102.6 diff --git a/themes/friction-contrast.yaml b/themes/friction-contrast.yaml new file mode 100644 index 00000000..16dcf0b8 --- /dev/null +++ b/themes/friction-contrast.yaml @@ -0,0 +1,49 @@ +name: "friction-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0C0C0F" + fg: "#7E7B99" + black: "#17171D" + red: "#BA0E2E" + green: "#8D89A5" + yellow: "#6AA7A7" + blue: "#C2BED6" + magenta: "#8D89A5" + cyan: "#6AA7A7" + white: "#8C89A4" + brightBlack: "#393948" + brightRed: "#F03E5F" + brightGreen: "#C5C3D1" + brightYellow: "#AACDCD" + brightBlue: "#FDFDFD" + brightMagenta: "#C5C3D1" + brightCyan: "#AACDCD" + brightWhite: "#B6B5C5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 33.6 + black: 0 + red: 21.3 + green: 40.4 + yellow: 48.9 + blue: 68.8 + magenta: 40.4 + cyan: 48.9 + white: 40.3 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 71 + brightYellow: 72 + brightBlue: 106.3 + brightMagenta: 71 + brightCyan: 72 + brightWhite: 62.9 diff --git a/themes/friction-light.yaml b/themes/friction-light.yaml new file mode 100644 index 00000000..577d1868 --- /dev/null +++ b/themes/friction-light.yaml @@ -0,0 +1,49 @@ +name: "friction-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#38363F" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#8D89A5" + yellow: "#6AA7A7" + blue: "#C2BED6" + magenta: "#8D89A5" + cyan: "#6AA7A7" + white: "#44424D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C5C3D1" + brightYellow: "#AACDCD" + brightBlue: "#FDFDFD" + brightMagenta: "#C5C3D1" + brightCyan: "#AACDCD" + brightWhite: "#696576" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.3 + black: 0 + red: 80.3 + green: 61 + yellow: 52.7 + blue: 33.6 + magenta: 61 + cyan: 52.7 + white: 92.9 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 31.5 + brightYellow: 30.5 + brightBlue: 0 + brightMagenta: 31.5 + brightCyan: 30.5 + brightWhite: 78.2 diff --git a/themes/friction.yaml b/themes/friction.yaml new file mode 100644 index 00000000..f70ee766 --- /dev/null +++ b/themes/friction.yaml @@ -0,0 +1,49 @@ +name: "friction" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#26252D" + fg: "#7E7B99" + black: "#32303B" + red: "#BA0E2E" + green: "#8D89A5" + yellow: "#6AA7A7" + blue: "#C2BED6" + magenta: "#8D89A5" + cyan: "#6AA7A7" + white: "#8C89A4" + brightBlack: "#555365" + brightRed: "#F03E5F" + brightGreen: "#C5C3D1" + brightYellow: "#AACDCD" + brightBlue: "#FDFDFD" + brightMagenta: "#C5C3D1" + brightCyan: "#AACDCD" + brightWhite: "#B6B5C5" +meta: + mode: "dark" + accent: "orange" + hue: 291 + contrast: + fg: 30.8 + black: 0 + red: 18.4 + green: 37.6 + yellow: 46.1 + blue: 66 + magenta: 37.6 + cyan: 46.1 + white: 37.4 + brightBlack: 13 + brightRed: 34.7 + brightGreen: 68.2 + brightYellow: 69.2 + brightBlue: 103.5 + brightMagenta: 68.2 + brightCyan: 69.2 + brightWhite: 60.1 diff --git a/themes/fridge.yaml b/themes/fridge.yaml new file mode 100644 index 00000000..f7bab831 --- /dev/null +++ b/themes/fridge.yaml @@ -0,0 +1,49 @@ +name: "Fridge" +source: + marketplace_id: "mcMineyC.gruvboxical-vscode-theme" + version: "6.3.4" + installs: 205 + author: "mcMineyC" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mcMineyC.gruvboxical-vscode-theme" +colors: + bg: "#171817" + fg: "#CFAE88" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.4 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.7 + cyan: 47.5 + white: 89.9 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/friendly.yaml b/themes/friendly.yaml new file mode 100644 index 00000000..145e92e2 --- /dev/null +++ b/themes/friendly.yaml @@ -0,0 +1,49 @@ +name: "Friendly" +source: + marketplace_id: "Emad-W.Friendly-DarkTheme" + version: "0.0.1" + installs: 438 + author: "Emad-W" + repo: "https://github.com/Emad-W/Friendly-DarkTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Emad-W.Friendly-DarkTheme" +colors: + bg: "#1E1E1E" + fg: "#D4CECE" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#2EE22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#B94FFF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 75.8 + black: 0 + red: 23.8 + green: 52.2 + yellow: 56.8 + blue: 33.8 + magenta: 31.4 + cyan: 49.6 + white: 87.7 + brightBlack: 21.2 + brightRed: 36.5 + brightGreen: 69.8 + brightYellow: 83.1 + brightBlue: 49 + brightMagenta: 35.8 + brightCyan: 72.6 + brightWhite: 101.1 diff --git a/themes/frontend-galaxy.yaml b/themes/frontend-galaxy.yaml new file mode 100644 index 00000000..e77b0e71 --- /dev/null +++ b/themes/frontend-galaxy.yaml @@ -0,0 +1,49 @@ +name: "Frontend Galaxy" +source: + marketplace_id: "Avetis.frontend-galaxy" + version: "0.0.2" + installs: 1428 + author: "Avetis" + repo: "https://github.com/AvetisDN/frontend-galaxy" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.frontend-galaxy" +colors: + bg: "#1D2837" + fg: "#E5E8EC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 89.4 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.1 + magenta: 27.4 + cyan: 45.2 + white: 87.7 + brightBlack: 19.7 + brightRed: 36.2 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.7 + brightMagenta: 43 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/frontier-contrast.yaml b/themes/frontier-contrast.yaml new file mode 100644 index 00000000..96e2c173 --- /dev/null +++ b/themes/frontier-contrast.yaml @@ -0,0 +1,49 @@ +name: "frontier-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#110F0E" + fg: "#F8F8F2" + black: "#1F1B19" + red: "#BA0E2E" + green: "#2EBF7E" + yellow: "#F23A3A" + blue: "#F8BB39" + magenta: "#FC803D" + cyan: "#2EBF7E" + white: "#FFFFFF" + brightBlack: "#49403C" + brightRed: "#F03E5F" + brightGreen: "#75DEAF" + brightYellow: "#F89A9A" + brightBlue: "#FBDD9B" + brightMagenta: "#FEC2A1" + brightCyan: "#75DEAF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 102.6 + black: 0 + red: 21.1 + green: 55.5 + yellow: 36.8 + blue: 71.3 + magenta: 52.5 + cyan: 55.5 + white: 107.5 + brightBlack: 8.7 + brightRed: 37.4 + brightGreen: 74.4 + brightYellow: 61.4 + brightBlue: 87.6 + brightMagenta: 77 + brightCyan: 74.4 + brightWhite: 107.5 diff --git a/themes/frontier-light.yaml b/themes/frontier-light.yaml new file mode 100644 index 00000000..09f8c6b8 --- /dev/null +++ b/themes/frontier-light.yaml @@ -0,0 +1,49 @@ +name: "frontier-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#36312C" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#1A724A" + yellow: "#B22727" + blue: "#AF8323" + magenta: "#BA5A27" + cyan: "#1A724A" + white: "#443E37" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#2DC580" + brightYellow: "#DD6262" + brightBlue: "#DEB45A" + brightMagenta: "#DF9168" + brightCyan: "#2DC580" + brightWhite: "#6E645A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99 + black: 0 + red: 80.3 + green: 79.2 + yellow: 80.9 + blue: 61.8 + magenta: 71.3 + cyan: 79.2 + white: 94.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 43.5 + brightYellow: 62 + brightBlue: 37.3 + brightMagenta: 48.9 + brightCyan: 43.5 + brightWhite: 78.9 diff --git a/themes/frontier.yaml b/themes/frontier.yaml new file mode 100644 index 00000000..b8bd5400 --- /dev/null +++ b/themes/frontier.yaml @@ -0,0 +1,49 @@ +name: "frontier" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#36312C" + fg: "#F8F8F2" + black: "#443E37" + red: "#BA0E2E" + green: "#2EBF7E" + yellow: "#F23A3A" + blue: "#F8BB39" + magenta: "#FC803D" + cyan: "#2EBF7E" + white: "#FFFFFF" + brightBlack: "#6E645A" + brightRed: "#F03E5F" + brightGreen: "#75DEAF" + brightYellow: "#F89A9A" + brightBlue: "#FBDD9B" + brightMagenta: "#FEC2A1" + brightCyan: "#75DEAF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 67 + contrast: + fg: 97.4 + black: 0 + red: 15.9 + green: 50.3 + yellow: 31.7 + blue: 66.2 + magenta: 47.4 + cyan: 50.3 + white: 102.3 + brightBlack: 17.3 + brightRed: 32.2 + brightGreen: 69.2 + brightYellow: 56.2 + brightBlue: 82.4 + brightMagenta: 71.9 + brightCyan: 69.2 + brightWhite: 102.3 diff --git a/themes/fruity-loops.yaml b/themes/fruity-loops.yaml new file mode 100644 index 00000000..41500534 --- /dev/null +++ b/themes/fruity-loops.yaml @@ -0,0 +1,49 @@ +name: "Fruity Loops" +source: + marketplace_id: "virk.fruity-loops" + version: "0.0.3" + installs: 89 + author: "Harminder Virk" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=virk.fruity-loops" +colors: + bg: "#10181E" + fg: "#CDD6F4" + black: "#A6ADC8" + red: "#FF4593" + green: "#A1BD00" + yellow: "#FC8E00" + blue: "#00A3EE" + magenta: "#AD75FF" + cyan: "#47B9FF" + white: "#BAC2DE" + brightBlack: "#585B70" + brightRed: "#FF4593" + brightGreen: "#A1BD00" + brightYellow: "#FC8E00" + brightBlue: "#00A3EE" + brightMagenta: "#AD75FF" + brightCyan: "#47B9FF" + brightWhite: "#45475A" +meta: + mode: "dark" + accent: "red" + hue: 241 + contrast: + fg: 81 + black: 57.2 + red: 42.7 + green: 59.3 + yellow: 55.6 + blue: 47.5 + magenta: 43 + cyan: 58.8 + white: 69.1 + brightBlack: 17.9 + brightRed: 42.7 + brightGreen: 59.3 + brightYellow: 55.6 + brightBlue: 47.5 + brightMagenta: 43 + brightCyan: 58.8 + brightWhite: 10.3 diff --git a/themes/ftrblue.yaml b/themes/ftrblue.yaml new file mode 100644 index 00000000..ef366bec --- /dev/null +++ b/themes/ftrblue.yaml @@ -0,0 +1,49 @@ +name: "ftrblue." +source: + marketplace_id: "FSharaf.ftrblue" + version: "1.0.4" + installs: 22 + author: "Sharaf Feyzullayev" + repo: "https://github.com/FSharafff/vsctheme" + url: "https://marketplace.visualstudio.com/items?itemName=FSharaf.ftrblue" +colors: + bg: "#0C0E15" + fg: "#2D72CB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 272 + contrast: + fg: 28.5 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/fuck-all-these-vscode-custom-ugly-themes.yaml b/themes/fuck-all-these-vscode-custom-ugly-themes.yaml new file mode 100644 index 00000000..a0fe26ee --- /dev/null +++ b/themes/fuck-all-these-vscode-custom-ugly-themes.yaml @@ -0,0 +1,49 @@ +name: "fuck-all-these-vscode-custom-ugly-themes" +source: + marketplace_id: "clowzed.none" + version: "0.2.0" + installs: 702 + author: "clowzed" + repo: "https://github.com/clowzed/none" + url: "https://marketplace.visualstudio.com/items?itemName=clowzed.none" +colors: + bg: "#080515" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D3D3D3" + brightBlack: "#737373" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 291 + contrast: + fg: 107.8 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 79.8 + brightBlack: 28.6 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 107.8 diff --git a/themes/funchosa-dark-theme.yaml b/themes/funchosa-dark-theme.yaml new file mode 100644 index 00000000..b122e1bc --- /dev/null +++ b/themes/funchosa-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Funchosa Dark Theme" +source: + marketplace_id: "funchosa.funchosa-dark" + version: "1.0.4" + installs: 37 + author: "Funchosa" + repo: "https://github.com/FunChosa/funchosa-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=funchosa.funchosa-dark" +colors: + bg: "#1F1D2E" + fg: "#E0DEF4" + black: "#26233A" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6E6A86" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 289 + contrast: + fg: 86 + black: 0 + red: 42.4 + green: 83.9 + yellow: 97.6 + blue: 52.7 + magenta: 53.6 + cyan: 83 + white: 101 + brightBlack: 24.2 + brightRed: 47.8 + brightGreen: 88.1 + brightYellow: 102.6 + brightBlue: 65.1 + brightMagenta: 61.6 + brightCyan: 95.8 + brightWhite: 105.9 diff --git a/themes/functional.yaml b/themes/functional.yaml new file mode 100644 index 00000000..bbafd251 --- /dev/null +++ b/themes/functional.yaml @@ -0,0 +1,49 @@ +name: "functional" +source: + marketplace_id: "BataTesting.functional-vscode-theme" + version: "0.0.1" + installs: 11 + author: "Bata Testing" + repo: "https://github.com/1eyewonder/functional-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BataTesting.functional-vscode-theme" +colors: + bg: "#222222" + fg: "#DDDCDC" + black: "#5F5F5F" + red: "#F9A1A0" + green: "#B7DAB9" + yellow: "#FEDB8F" + blue: "#8BBADC" + magenta: "#DEBDDD" + cyan: "#8BBADC" + white: "#DDDCDC" + brightBlack: "#787878" + brightRed: "#F9A1A0" + brightGreen: "#B7DAB9" + brightYellow: "#FEDB8F" + brightBlue: "#8BBADC" + brightMagenta: "#DEBDDD" + brightCyan: "#8BBADC" + brightWhite: "#DDDCDC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.1 + black: 17.7 + red: 62.1 + green: 76.2 + yellow: 84.9 + blue: 59.6 + magenta: 70.3 + cyan: 59.6 + white: 83.1 + brightBlack: 28.6 + brightRed: 62.1 + brightGreen: 76.2 + brightYellow: 84.9 + brightBlue: 59.6 + brightMagenta: 70.3 + brightCyan: 59.6 + brightWhite: 83.1 diff --git a/themes/funx-theme.yaml b/themes/funx-theme.yaml new file mode 100644 index 00000000..ffddf0cd --- /dev/null +++ b/themes/funx-theme.yaml @@ -0,0 +1,49 @@ +name: "Funx Theme" +source: + marketplace_id: "funxdata.Funx-Theme" + version: "1.0.3" + installs: 477 + author: "梵响数据" + repo: "https://github.com/funxdata/vscode-Funx-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=funxdata.Funx-Theme" +colors: + bg: "#282C34" + fg: "#C8C8C8" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 69.1 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 38.3 + brightMagenta: 9.5 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/furnace.yaml b/themes/furnace.yaml new file mode 100644 index 00000000..0775715f --- /dev/null +++ b/themes/furnace.yaml @@ -0,0 +1,49 @@ +name: "Furnace" +source: + marketplace_id: "solomonsscott.furnace" + version: "1.0.2" + installs: 2266 + author: "solomonsscott" + repo: "https://github.com/SolomonSScott/furnace-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=solomonsscott.furnace" +colors: + bg: "#141D3C" + fg: "#FFFFFF" + black: "#000000" + red: "#E42C48" + green: "#3AD900" + yellow: "#F8D82D" + blue: "#6943FF" + magenta: "#E42C48" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#5C5C61" + brightRed: "#E42C48" + brightGreen: "#3AD900" + brightYellow: "#F8D82D" + brightBlue: "#6943FF" + brightMagenta: "#7D77B3" + brightCyan: "#80FCFF" + brightWhite: "#2C206C" +meta: + mode: "dark" + accent: "purple" + hue: 269 + contrast: + fg: 105.8 + black: 0 + red: 30.7 + green: 65.2 + yellow: 81.6 + blue: 23.5 + magenta: 30.7 + cyan: 91.7 + white: 105.8 + brightBlack: 17 + brightRed: 30.7 + brightGreen: 65.2 + brightYellow: 81.6 + brightBlue: 23.5 + brightMagenta: 31.8 + brightCyan: 91.7 + brightWhite: 0 diff --git a/themes/furukawa-pop-theme.yaml b/themes/furukawa-pop-theme.yaml new file mode 100644 index 00000000..bba00a4d --- /dev/null +++ b/themes/furukawa-pop-theme.yaml @@ -0,0 +1,49 @@ +name: "Furukawa Pop Theme" +source: + marketplace_id: "superfurukawa.furukawa-theme" + version: "1.1.3" + installs: 100 + author: "superfurukawa" + repo: "https://github.com/superfurukawa/vscode-furukawa-theme" + url: "https://marketplace.visualstudio.com/items?itemName=superfurukawa.furukawa-theme" +colors: + bg: "#C0FFF8" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#757575" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#949494" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 98.9 + black: 98.9 + red: 66.8 + green: 42.1 + yellow: 50.7 + blue: 78.9 + magenta: 67.4 + cyan: 53.4 + white: 64.9 + brightBlack: 71.6 + brightRed: 66.8 + brightGreen: 33.7 + brightYellow: 33.8 + brightBlue: 78.9 + brightMagenta: 67.4 + brightCyan: 53.4 + brightWhite: 50 diff --git a/themes/futuremotion-light.yaml b/themes/futuremotion-light.yaml new file mode 100644 index 00000000..8eb18d90 --- /dev/null +++ b/themes/futuremotion-light.yaml @@ -0,0 +1,49 @@ +name: "Futuremotion Light" +source: + marketplace_id: "futuremotion.futuremotion-light" + version: "1.1.1" + installs: 157 + author: "Futuremotion" + repo: "https://github.com/futuremotiondev/vscode-futuremotion-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=futuremotion.futuremotion-light" +colors: + bg: "#FFFFFF" + fg: "#3C3F42" + black: "#000000" + red: "#E3535F" + green: "#68CABA" + yellow: "#F3D575" + blue: "#6180E7" + magenta: "#D060A0" + cyan: "#60C4D8" + white: "#DBE2E3" + brightBlack: "#666666" + brightRed: "#E96D5C" + brightGreen: "#55D5B1" + brightYellow: "#E5BE48" + brightBlue: "#0451A5" + brightMagenta: "#F786A8" + brightCyan: "#0598BC" + brightWhite: "#BCC7C8" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 94.6 + black: 106 + red: 63.7 + green: 37.4 + yellow: 21 + blue: 63.9 + magenta: 62.9 + cyan: 39.1 + white: 15.5 + brightBlack: 78.8 + brightRed: 57.2 + brightGreen: 33.7 + brightYellow: 32.7 + brightBlue: 86.1 + brightMagenta: 46 + brightCyan: 60.6 + brightWhite: 31.3 diff --git a/themes/futuristic-green.yaml b/themes/futuristic-green.yaml new file mode 100644 index 00000000..858b7c9e --- /dev/null +++ b/themes/futuristic-green.yaml @@ -0,0 +1,49 @@ +name: "Futuristic Green" +source: + marketplace_id: "Deepak-Bhardwaj.futuristic" + version: "0.5.2" + installs: 1285 + author: "Deepak Bhardwaj" + repo: "https://github.com/deepak-bhardwaj-ps/VSCode-Theme-Futuristic" + url: "https://marketplace.visualstudio.com/items?itemName=Deepak-Bhardwaj.futuristic" +colors: + bg: "#010F18" + fg: "#05D5FF" + black: "#010F18" + red: "#FF615B" + green: "#5AF78E" + yellow: "#F49227" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#50D6E1" + brightBlack: "#010F18" + brightRed: "#FF615B" + brightGreen: "#5AF78E" + brightYellow: "#F49227" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 234 + contrast: + fg: 71 + black: 0 + red: 46.3 + green: 84.7 + yellow: 56.1 + blue: 66.1 + magenta: 51.6 + cyan: 87.7 + white: 71 + brightBlack: 0 + brightRed: 46.3 + brightGreen: 84.7 + brightYellow: 56.1 + brightBlue: 66.1 + brightMagenta: 51.6 + brightCyan: 87.7 + brightWhite: 107.5 diff --git a/themes/futuristt.yaml b/themes/futuristt.yaml new file mode 100644 index 00000000..6ef6bee4 --- /dev/null +++ b/themes/futuristt.yaml @@ -0,0 +1,49 @@ +name: "Futuristt" +source: + marketplace_id: "carlowisse.futuristt" + version: "1.6.0" + installs: 5356 + author: "carlowisse" + repo: "https://github.com/carlowisse/futuristt-theme" + url: "https://marketplace.visualstudio.com/items?itemName=carlowisse.futuristt" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#EE204D" + green: "#2FA43D" + yellow: "#FFD505" + blue: "#1F75FE" + magenta: "#CC00CC" + cyan: "#00CFCF" + white: "#EEEEEE" + brightBlack: "#000000" + brightRed: "#EE204D" + brightGreen: "#2FA43D" + brightYellow: "#FFD505" + brightBlue: "#1F75FE" + brightMagenta: "#CC00CC" + brightCyan: "#00CFCF" + brightWhite: "#2FA43D" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 34.5 + green: 42.6 + yellow: 83.4 + blue: 33.7 + magenta: 31.4 + cyan: 66 + white: 96.8 + brightBlack: 0 + brightRed: 34.5 + brightGreen: 42.6 + brightYellow: 83.4 + brightBlue: 33.7 + brightMagenta: 31.4 + brightCyan: 66 + brightWhite: 42.6 diff --git a/themes/g-dark-blue-whale.yaml b/themes/g-dark-blue-whale.yaml new file mode 100644 index 00000000..05661b93 --- /dev/null +++ b/themes/g-dark-blue-whale.yaml @@ -0,0 +1,49 @@ +name: "G Dark (Blue Whale)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#00344A" + fg: "#DCF2F7" + black: "#5D6B7D" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#5C717C" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 233 + contrast: + fg: 91.3 + black: 19.2 + red: 32.1 + green: 70.8 + yellow: 81 + blue: 27.9 + magenta: 36.2 + cyan: 53 + white: 87.3 + brightBlack: 21 + brightRed: 25.3 + brightGreen: 56.3 + brightYellow: 89.5 + brightBlue: 27.9 + brightMagenta: 21.2 + brightCyan: 61.9 + brightWhite: 102.4 diff --git a/themes/g-dark-jacksons-purple.yaml b/themes/g-dark-jacksons-purple.yaml new file mode 100644 index 00000000..f7667f9f --- /dev/null +++ b/themes/g-dark-jacksons-purple.yaml @@ -0,0 +1,49 @@ +name: "G Dark (Jacksons Purple)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#2A3A71" + fg: "#C2D1DA" + black: "#6D7D93" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#6A828E" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 269 + contrast: + fg: 68.1 + black: 23.6 + red: 28.4 + green: 67.1 + yellow: 77.3 + blue: 24.3 + magenta: 32.6 + cyan: 49.3 + white: 83.6 + brightBlack: 24.9 + brightRed: 21.6 + brightGreen: 52.6 + brightYellow: 85.8 + brightBlue: 24.2 + brightMagenta: 17.5 + brightCyan: 58.3 + brightWhite: 98.8 diff --git a/themes/g-dark-light-alice-blue.yaml b/themes/g-dark-light-alice-blue.yaml new file mode 100644 index 00000000..42424178 --- /dev/null +++ b/themes/g-dark-light-alice-blue.yaml @@ -0,0 +1,49 @@ +name: "G Dark-light (Alice Blue)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#F8FCFF" + fg: "#79848F" + black: "#A8C5E0" + red: "#C92541" + green: "#2FC722" + yellow: "#999514" + blue: "#2254C1" + magenta: "#7F25BB" + cyan: "#1482AD" + white: "#55575E" + brightBlack: "#ABC8DA" + brightRed: "#EB2244" + brightGreen: "#21D548" + brightYellow: "#948A03" + brightBlue: "#1A56D8" + brightMagenta: "#9313E8" + brightCyan: "#0E9BD3" + brightWhite: "#9CAEC8" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 63.5 + black: 30.9 + red: 73.5 + green: 41.6 + yellow: 56.3 + blue: 80.5 + magenta: 81.9 + cyan: 67.5 + white: 82.9 + brightBlack: 29.7 + brightRed: 65.8 + brightGreen: 35.1 + brightYellow: 60.9 + brightBlue: 78.1 + brightMagenta: 75.8 + brightCyan: 55.9 + brightWhite: 42.3 diff --git a/themes/g-dark-light-glitter.yaml b/themes/g-dark-light-glitter.yaml new file mode 100644 index 00000000..010f839f --- /dev/null +++ b/themes/g-dark-light-glitter.yaml @@ -0,0 +1,49 @@ +name: "G Dark-light (Glitter)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#E3ECFC" + fg: "#546A7B" + black: "#586C77" + red: "#C92541" + green: "#2CBC1F" + yellow: "#9C9816" + blue: "#2254C1" + magenta: "#7F25BB" + cyan: "#1482AD" + white: "#2B3A40" + brightBlack: "#607783" + brightRed: "#EB2244" + brightGreen: "#1EC542" + brightYellow: "#998F04" + brightBlue: "#1A56D8" + brightMagenta: "#9313E8" + brightCyan: "#0E9BD3" + brightWhite: "#2A3A40" +meta: + mode: "light" + accent: "magenta" + hue: 262 + contrast: + fg: 66.5 + black: 65.8 + red: 64 + green: 37.2 + yellow: 45.4 + blue: 71 + magenta: 72.4 + cyan: 58 + white: 85.4 + brightBlack: 61 + brightRed: 56.3 + brightGreen: 33.1 + brightYellow: 49 + brightBlue: 68.6 + brightMagenta: 66.3 + brightCyan: 46.5 + brightWhite: 85.4 diff --git a/themes/g-dark-light-hint-of-red.yaml b/themes/g-dark-light-hint-of-red.yaml new file mode 100644 index 00000000..8dd4d8e8 --- /dev/null +++ b/themes/g-dark-light-hint-of-red.yaml @@ -0,0 +1,49 @@ +name: "G Dark-light (Hint of Red)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#F9F9F9" + fg: "#5F6870" + black: "#737272" + red: "#F02B4B" + green: "#0DC406" + yellow: "#B3A402" + blue: "#336DEB" + magenta: "#940DEE" + cyan: "#189ED3" + white: "#7A7878" + brightBlack: "#7C7D7D" + brightRed: "#EB3C59" + brightGreen: "#17AB09" + brightYellow: "#ACAC02" + brightBlue: "#1554DC" + brightMagenta: "#8614D2" + brightCyan: "#18B1DF" + brightWhite: "#777575" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 74.8 + black: 69.7 + red: 62.5 + green: 42 + yellow: 46.2 + blue: 68.1 + magenta: 73.8 + cyan: 53.3 + white: 66.9 + brightBlack: 64.8 + brightRed: 61.8 + brightGreen: 53.1 + brightYellow: 44 + brightBlue: 76.9 + brightMagenta: 78.4 + brightCyan: 45 + brightWhite: 68.2 diff --git a/themes/g-dark-minimal-2-astronaut-blue.yaml b/themes/g-dark-minimal-2-astronaut-blue.yaml new file mode 100644 index 00000000..b0d2bbfc --- /dev/null +++ b/themes/g-dark-minimal-2-astronaut-blue.yaml @@ -0,0 +1,49 @@ +name: "G Dark-minimal-2 (Astronaut Blue)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#18475A" + fg: "#B8F2FF" + black: "#6C87A8" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#5791B2" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 228 + contrast: + fg: 82.5 + black: 26.4 + red: 26.9 + green: 65.6 + yellow: 75.8 + blue: 22.8 + magenta: 31 + cyan: 47.8 + white: 82.1 + brightBlack: 29.2 + brightRed: 20.1 + brightGreen: 51.1 + brightYellow: 84.3 + brightBlue: 22.7 + brightMagenta: 16 + brightCyan: 56.8 + brightWhite: 97.3 diff --git a/themes/g-dark-minimal-3-oxford-blue.yaml b/themes/g-dark-minimal-3-oxford-blue.yaml new file mode 100644 index 00000000..edd1b5c2 --- /dev/null +++ b/themes/g-dark-minimal-3-oxford-blue.yaml @@ -0,0 +1,49 @@ +name: "G Dark-minimal-3 (Oxford Blue)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#263137" + fg: "#DCF2F7" + black: "#68788D" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#557483" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 232 + contrast: + fg: 91.7 + black: 25.4 + red: 32.5 + green: 71.3 + yellow: 81.4 + blue: 28.4 + magenta: 36.7 + cyan: 53.5 + white: 87.8 + brightBlack: 22.3 + brightRed: 25.7 + brightGreen: 56.7 + brightYellow: 89.9 + brightBlue: 28.3 + brightMagenta: 21.7 + brightCyan: 62.4 + brightWhite: 102.9 diff --git a/themes/g-dark-minimal-midnight.yaml b/themes/g-dark-minimal-midnight.yaml new file mode 100644 index 00000000..d5bc48e4 --- /dev/null +++ b/themes/g-dark-minimal-midnight.yaml @@ -0,0 +1,49 @@ +name: "G Dark-minimal (Midnight)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#102740" + fg: "#99A7B1" + black: "#5F6D7F" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#49616C" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 252 + contrast: + fg: 50.3 + black: 22.3 + red: 34.3 + green: 73.1 + yellow: 83.2 + blue: 30.2 + magenta: 38.5 + cyan: 55.2 + white: 89.6 + brightBlack: 16.3 + brightRed: 27.5 + brightGreen: 58.5 + brightYellow: 91.7 + brightBlue: 30.1 + brightMagenta: 23.5 + brightCyan: 64.2 + brightWhite: 104.7 diff --git a/themes/g-dark-one-love-black-pearl.yaml b/themes/g-dark-one-love-black-pearl.yaml new file mode 100644 index 00000000..5392d816 --- /dev/null +++ b/themes/g-dark-one-love-black-pearl.yaml @@ -0,0 +1,49 @@ +name: "G Dark-one-love (Black Pearl)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#081A20" + fg: "#CEDBDB" + black: "#5D6B7D" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#425A65" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 222 + contrast: + fg: 82 + black: 23.5 + red: 36.4 + green: 75.1 + yellow: 85.3 + blue: 32.2 + magenta: 40.5 + cyan: 57.3 + white: 91.6 + brightBlack: 15.6 + brightRed: 29.6 + brightGreen: 60.6 + brightYellow: 93.8 + brightBlue: 32.2 + brightMagenta: 25.5 + brightCyan: 66.2 + brightWhite: 106.7 diff --git a/themes/g-dark-one-love.yaml b/themes/g-dark-one-love.yaml new file mode 100644 index 00000000..747e486b --- /dev/null +++ b/themes/g-dark-one-love.yaml @@ -0,0 +1,49 @@ +name: "G Dark (One Love)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#1C1D27" + fg: "#CEDBDB" + black: "#59677A" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#4A6473" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 280 + contrast: + fg: 81.3 + black: 21.2 + red: 35.7 + green: 74.5 + yellow: 84.6 + blue: 31.6 + magenta: 39.9 + cyan: 56.7 + white: 91 + brightBlack: 19 + brightRed: 28.9 + brightGreen: 59.9 + brightYellow: 93.1 + brightBlue: 31.5 + brightMagenta: 24.9 + brightCyan: 65.6 + brightWhite: 106.1 diff --git a/themes/g-dark-shader-h-ck3r-midnight-moss.yaml b/themes/g-dark-shader-h-ck3r-midnight-moss.yaml new file mode 100644 index 00000000..e27ad1db --- /dev/null +++ b/themes/g-dark-shader-h-ck3r-midnight-moss.yaml @@ -0,0 +1,49 @@ +name: "G Dark-Shader - H@ck3r (Midnight Moss)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#030C0C" + fg: "#B5DFCA" + black: "#648464" + red: "#F23857" + green: "#9FDA47" + yellow: "#F5E044" + blue: "#5B8DF8" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#EDECEC" + brightBlack: "#576E6E" + brightRed: "#E92445" + brightGreen: "#4BDD1A" + brightYellow: "#E4D828" + brightBlue: "#175DF4" + brightMagenta: "#C792EA" + brightCyan: "#3CCFE9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 195 + contrast: + fg: 81.2 + black: 32.7 + red: 37.3 + green: 73.5 + yellow: 86.7 + blue: 42.9 + magenta: 54.6 + cyan: 79.1 + white: 95.4 + brightBlack: 24.4 + brightRed: 33.2 + brightGreen: 69.6 + brightYellow: 80.5 + brightBlue: 25.8 + brightMagenta: 54.6 + brightCyan: 67.7 + brightWhite: 107.7 diff --git a/themes/g-dark-shader-haiti.yaml b/themes/g-dark-shader-haiti.yaml new file mode 100644 index 00000000..e43a6ce4 --- /dev/null +++ b/themes/g-dark-shader-haiti.yaml @@ -0,0 +1,49 @@ +name: "G Dark-Shader (Haiti)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#270B47" + fg: "#E4C8FD" + black: "#5E7486" + red: "#C92541" + green: "#36CE28" + yellow: "#DDC125" + blue: "#2459CE" + magenta: "#8628C5" + cyan: "#1482AD" + white: "#E9E5E5" + brightBlack: "#516B77" + brightRed: "#F73051" + brightGreen: "#12F744" + brightYellow: "#F5E729" + brightBlue: "#2366F5" + brightMagenta: "#A32EF1" + brightCyan: "#02ACF0" + brightWhite: "#D1CECE" +meta: + mode: "dark" + accent: "green" + hue: 299 + contrast: + fg: 77.8 + black: 26.1 + red: 24.1 + green: 60 + yellow: 67.8 + blue: 19.7 + magenta: 18.1 + cyan: 30.1 + white: 89.7 + brightBlack: 21.7 + brightRed: 35.9 + brightGreen: 80.6 + brightYellow: 88 + brightBlue: 26.7 + brightMagenta: 26.8 + brightCyan: 50.4 + brightWhite: 75.4 diff --git a/themes/g-dark-shader-mirage.yaml b/themes/g-dark-shader-mirage.yaml new file mode 100644 index 00000000..979d72f5 --- /dev/null +++ b/themes/g-dark-shader-mirage.yaml @@ -0,0 +1,49 @@ +name: "G Dark-Shader (Mirage)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#190B29" + fg: "#DFB2DD" + black: "#B165A0" + red: "#C92541" + green: "#36CE28" + yellow: "#DDC125" + blue: "#2459CE" + magenta: "#8628C5" + cyan: "#1482AD" + white: "#E9E5E5" + brightBlack: "#845C83" + brightRed: "#F73051" + brightGreen: "#12F744" + brightYellow: "#F5E729" + brightBlue: "#2366F5" + brightMagenta: "#A32EF1" + brightCyan: "#02ACF0" + brightWhite: "#D1CECE" +meta: + mode: "dark" + accent: "green" + hue: 303 + contrast: + fg: 68 + black: 33.8 + red: 25.3 + green: 61.2 + yellow: 69 + blue: 20.9 + magenta: 19.3 + cyan: 31.3 + white: 90.9 + brightBlack: 23.9 + brightRed: 37.1 + brightGreen: 81.8 + brightYellow: 89.2 + brightBlue: 27.9 + brightMagenta: 28 + brightCyan: 51.6 + brightWhite: 76.6 diff --git a/themes/g-dark-shift-midnight-moss.yaml b/themes/g-dark-shift-midnight-moss.yaml new file mode 100644 index 00000000..0be27be4 --- /dev/null +++ b/themes/g-dark-shift-midnight-moss.yaml @@ -0,0 +1,49 @@ +name: "G Dark-Shift (Midnight Moss)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#030B0B" + fg: "#E1E5E5" + black: "#78A795" + red: "#F23857" + green: "#9FDA47" + yellow: "#F5E044" + blue: "#5B8DF8" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#D6D9D8" + brightBlack: "#637A7A" + brightRed: "#E92445" + brightGreen: "#4BDD1A" + brightYellow: "#E4D828" + brightBlue: "#175DF4" + brightMagenta: "#C792EA" + brightCyan: "#3CCFE9" + brightWhite: "#BCD2D2" +meta: + mode: "dark" + accent: "green" + hue: 196 + contrast: + fg: 90.4 + black: 49.3 + red: 37.3 + green: 73.6 + yellow: 86.7 + blue: 43 + magenta: 54.6 + cyan: 79.1 + white: 83 + brightBlack: 29.8 + brightRed: 33.2 + brightGreen: 69.6 + brightYellow: 80.5 + brightBlue: 25.8 + brightMagenta: 54.6 + brightCyan: 67.8 + brightWhite: 76.5 diff --git a/themes/g-dark-shift-vulcan.yaml b/themes/g-dark-shift-vulcan.yaml new file mode 100644 index 00000000..c1b147fa --- /dev/null +++ b/themes/g-dark-shift-vulcan.yaml @@ -0,0 +1,49 @@ +name: "G Dark-shift (Vulcan)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#17181F" + fg: "#E1E5E5" + black: "#5A687A" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#435964" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 279 + contrast: + fg: 89.3 + black: 22.2 + red: 36.4 + green: 75.1 + yellow: 85.3 + blue: 32.2 + magenta: 40.5 + cyan: 57.3 + white: 91.6 + brightBlack: 15.3 + brightRed: 29.6 + brightGreen: 60.6 + brightYellow: 93.8 + brightBlue: 32.2 + brightMagenta: 25.5 + brightCyan: 66.2 + brightWhite: 106.7 diff --git a/themes/g-dark-valhalla.yaml b/themes/g-dark-valhalla.yaml new file mode 100644 index 00000000..9c5dd055 --- /dev/null +++ b/themes/g-dark-valhalla.yaml @@ -0,0 +1,49 @@ +name: "G Dark (Valhalla)" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10981 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" +colors: + bg: "#292F46" + fg: "#C4D2E0" + black: "#708095" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#59737F" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 273 + contrast: + fg: 73.1 + black: 28.9 + red: 32.4 + green: 71.1 + yellow: 81.3 + blue: 28.2 + magenta: 36.5 + cyan: 53.3 + white: 87.6 + brightBlack: 21.9 + brightRed: 25.6 + brightGreen: 56.6 + brightYellow: 89.8 + brightBlue: 28.2 + brightMagenta: 21.5 + brightCyan: 62.2 + brightWhite: 102.7 diff --git a/themes/g-i-reaper.yaml b/themes/g-i-reaper.yaml new file mode 100644 index 00000000..7974456e --- /dev/null +++ b/themes/g-i-reaper.yaml @@ -0,0 +1,49 @@ +name: "G.I. Reaper" +source: + marketplace_id: "gengence.gi-themes" + version: "0.2.0" + installs: 36 + author: "General Intelligence" + repo: "https://github.com/gengence/themes" + url: "https://marketplace.visualstudio.com/items?itemName=gengence.gi-themes" +colors: + bg: "#1A1D22" + fg: "#ADBAC7" + black: "#16191E" + red: "#C44F56" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "magenta" + hue: 261 + contrast: + fg: 62.5 + black: 0 + red: 29 + green: 45.8 + yellow: 46 + blue: 45.8 + magenta: 45.6 + cyan: 60.2 + white: 46.8 + brightBlack: 24.3 + brightRed: 58.8 + brightGreen: 58.4 + brightYellow: 58.7 + brightBlue: 58.5 + brightMagenta: 72.4 + brightCyan: 68.7 + brightWhite: 80.9 diff --git a/themes/g-i-seraph.yaml b/themes/g-i-seraph.yaml new file mode 100644 index 00000000..156936c8 --- /dev/null +++ b/themes/g-i-seraph.yaml @@ -0,0 +1,49 @@ +name: "G.I. Seraph" +source: + marketplace_id: "gengence.gi-themes" + version: "0.2.0" + installs: 36 + author: "General Intelligence" + repo: "https://github.com/gengence/themes" + url: "https://marketplace.visualstudio.com/items?itemName=gengence.gi-themes" +colors: + bg: "#FFFFF8" + fg: "#1F2328" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 102.5 + black: 101.2 + red: 74.5 + green: 84.9 + yellow: 97.7 + blue: 74.6 + magenta: 74 + cyan: 73.5 + white: 71.3 + brightBlack: 81.5 + brightRed: 84.9 + brightGreen: 74.3 + brightYellow: 91.7 + brightBlue: 60.4 + brightMagenta: 59 + brightCyan: 63 + brightWhite: 56.9 diff --git a/themes/g3-gray.yaml b/themes/g3-gray.yaml new file mode 100644 index 00000000..5683663c --- /dev/null +++ b/themes/g3-gray.yaml @@ -0,0 +1,49 @@ +name: "G3 Gray" +source: + marketplace_id: "Rafinha-g3.vexiun-theme" + version: "1.0.1" + installs: 20 + author: "Rafinha-g3" + repo: "https://github.com/ThalysonRibeiro/vexiun-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Rafinha-g3.vexiun-theme" +colors: + bg: "#282A36" + fg: "#FFFFFF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#FFB86C" + blue: "#8BE9FD" + magenta: "#BD93F9" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + contrast: + fg: 103.9 + black: 0 + red: 40.4 + green: 81.9 + yellow: 68.5 + blue: 81 + magenta: 50.7 + cyan: 81 + white: 99 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/gagarin-theme.yaml b/themes/gagarin-theme.yaml new file mode 100644 index 00000000..3c7163a0 --- /dev/null +++ b/themes/gagarin-theme.yaml @@ -0,0 +1,49 @@ +name: "Gagarin Theme" +source: + marketplace_id: "GagarinTheme.gagarin" + version: "0.0.9" + installs: 36 + author: "Gagarin Theme" + repo: "https://github.com/yuricplus/gagarintheme" + url: "https://marketplace.visualstudio.com/items?itemName=GagarinTheme.gagarin" +colors: + bg: "#111111" + fg: "#FFFFFF" + black: "#2E2E2E" + red: "#FF8282" + green: "#5AD5A6" + yellow: "#F0F07F" + blue: "#4B84C2" + magenta: "#BC60BC" + cyan: "#36B2D1" + white: "#CBC7C7" + brightBlack: "#666666" + brightRed: "#CB3737" + brightGreen: "#ABFFDD" + brightYellow: "#FFFF30" + brightBlue: "#3290F9" + brightMagenta: "#FD9EFD" + brightCyan: "#56CBE8" + brightWhite: "#FFF5F5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 54.8 + green: 68.2 + yellow: 93.9 + blue: 34.9 + magenta: 36.1 + cyan: 53 + white: 72.7 + brightBlack: 22.5 + brightRed: 27.5 + brightGreen: 96.3 + brightYellow: 102.3 + brightBlue: 42.1 + brightMagenta: 68.1 + brightCyan: 66.3 + brightWhite: 102.2 diff --git a/themes/galactic-flavored.yaml b/themes/galactic-flavored.yaml new file mode 100644 index 00000000..ac7f657d --- /dev/null +++ b/themes/galactic-flavored.yaml @@ -0,0 +1,49 @@ +name: "Galactic Flavored" +source: + marketplace_id: "voit.galactic-flavored" + version: "1.0.0" + installs: 88 + author: "voit" + repo: "https://github.com/voitaraujo/galactic-flavored" + url: "https://marketplace.visualstudio.com/items?itemName=voit.galactic-flavored" +colors: + bg: "#0C0C0C" + fg: "#F2F2F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 99.1 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 107.7 diff --git a/themes/galactus.yaml b/themes/galactus.yaml new file mode 100644 index 00000000..5a87f2ae --- /dev/null +++ b/themes/galactus.yaml @@ -0,0 +1,49 @@ +name: "galactus" +source: + marketplace_id: "ibrhalilaydn.galactus-theme" + version: "0.1.0" + installs: 305 + author: "ibrhalil" + repo: "https://github.com/ibrhalil/galactus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ibrhalilaydn.galactus-theme" +colors: + bg: "#0C0414" + fg: "#999999" + black: "#242424" + red: "#8A2F58" + green: "#7E63B2" + yellow: "#914E89" + blue: "#3E6287" + magenta: "#5E468C" + cyan: "#2B7694" + white: "#899CA1" + brightBlack: "#474747" + brightRed: "#CF4F88" + brightGreen: "#53A6A6" + brightYellow: "#BF85CC" + brightBlue: "#4779B3" + brightMagenta: "#7F62B3" + brightCyan: "#47959E" + brightWhite: "#C0C0C0" +meta: + mode: "dark" + accent: "red" + hue: 307 + contrast: + fg: 47.1 + black: 0 + red: 15 + green: 28 + yellow: 23.2 + blue: 20.2 + magenta: 15.4 + cyan: 26.7 + white: 46.9 + brightBlack: 10.8 + brightRed: 34.2 + brightGreen: 47.3 + brightYellow: 47.6 + brightBlue: 30.4 + brightMagenta: 27.9 + brightCyan: 39.6 + brightWhite: 68.5 diff --git a/themes/galaxia.yaml b/themes/galaxia.yaml new file mode 100644 index 00000000..fc132529 --- /dev/null +++ b/themes/galaxia.yaml @@ -0,0 +1,49 @@ +name: "Galaxia" +source: + marketplace_id: "LucasBandeira.galaxia" + version: "0.1.1" + installs: 293 + author: "Lucas Bandeira" + repo: "https://github.com/LucasBandeira-MJ/Galaxia-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=LucasBandeira.galaxia" +colors: + bg: "#131D36" + fg: "#ECECEC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 266 + contrast: + fg: 93.6 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/galaxytheme.yaml b/themes/galaxytheme.yaml new file mode 100644 index 00000000..cb3d63c4 --- /dev/null +++ b/themes/galaxytheme.yaml @@ -0,0 +1,49 @@ +name: "GalaxyTheme+" +source: + marketplace_id: "JoaoBatistaJr.GalaxyTheme" + version: "1.0.3" + installs: 1292 + author: "JoaoBatistaJr" + repo: "https://github.com/JoaoBatistaJr/GalaxyTheme" + url: "https://marketplace.visualstudio.com/items?itemName=JoaoBatistaJr.GalaxyTheme" +colors: + bg: "#202024" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.7 + black: 0 + red: 25.6 + green: 51.8 + yellow: 84.5 + blue: 26.3 + magenta: 28.6 + cyan: 46.4 + white: 88.9 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.8 + brightMagenta: 44.2 + brightCyan: 54.2 + brightWhite: 88.9 diff --git a/themes/galizur.yaml b/themes/galizur.yaml new file mode 100644 index 00000000..394a528a --- /dev/null +++ b/themes/galizur.yaml @@ -0,0 +1,49 @@ +name: "Galizur" +source: + marketplace_id: "razielanarki.vscode-galizur-theme" + version: "1.3.11" + installs: 233 + author: "Raziel Anarki" + repo: "https://github.com/razielanarki/vscode-galizur-theme" + url: "https://marketplace.visualstudio.com/items?itemName=razielanarki.vscode-galizur-theme" +colors: + bg: "#2A2C2E" + fg: "#AABBCC" + black: "#223344" + red: "#991122" + green: "#339911" + yellow: "#AA8822" + blue: "#2244AA" + magenta: "#6644AA" + cyan: "#2288AA" + white: "#778899" + brightBlack: "#445566" + brightRed: "#FF2233" + brightGreen: "#77CC33" + brightYellow: "#FFCC33" + brightBlue: "#3377FF" + brightMagenta: "#AA77FF" + brightCyan: "#33CCFF" + brightWhite: "#AABBCC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 60.4 + black: 0 + red: 10.4 + green: 33.6 + yellow: 36.7 + blue: 9.4 + magenta: 13.7 + cyan: 30 + white: 33.5 + brightBlack: 11.3 + brightRed: 34.3 + brightGreen: 59.6 + brightYellow: 75.5 + brightBlue: 30.6 + brightMagenta: 40 + brightCyan: 63.4 + brightWhite: 60.4 diff --git a/themes/game-mode.yaml b/themes/game-mode.yaml new file mode 100644 index 00000000..ff1c8045 --- /dev/null +++ b/themes/game-mode.yaml @@ -0,0 +1,49 @@ +name: "GAME MODE" +source: + marketplace_id: "sfkmt.game-mode-theme" + version: "1.0.4" + installs: 855 + author: "sfkmt" + repo: "https://github.com/sfkmt/gamemode" + url: "https://marketplace.visualstudio.com/items?itemName=sfkmt.game-mode-theme" +colors: + bg: "#0A0E1A" + fg: "#00FF88" + black: "#000000" + red: "#FF0088" + green: "#00FF88" + yellow: "#FFFF00" + blue: "#00DDFF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF4488" + brightGreen: "#00FFAA" + brightYellow: "#FFFF88" + brightBlue: "#88DDFF" + brightMagenta: "#FF88FF" + brightCyan: "#88FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 269 + contrast: + fg: 87.4 + black: 0 + red: 39.2 + green: 87.4 + yellow: 102.3 + blue: 74.8 + magenta: 45.9 + cyan: 91.8 + white: 107.5 + brightBlack: 22.7 + brightRed: 42.8 + brightGreen: 88.3 + brightYellow: 103.5 + brightBlue: 78.8 + brightMagenta: 62.3 + brightCyan: 95.4 + brightWhite: 107.5 diff --git a/themes/gameboy-classic-dark.yaml b/themes/gameboy-classic-dark.yaml new file mode 100644 index 00000000..cb0c8bcd --- /dev/null +++ b/themes/gameboy-classic-dark.yaml @@ -0,0 +1,49 @@ +name: "GameBoy Classic Dark" +source: + marketplace_id: "sanchodelniglo.gameboy-classic-theme" + version: "0.0.4" + installs: 832 + author: "sanchodelniglo" + repo: "https://github.com/Sanchodelniglo/gameboy-classic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sanchodelniglo.gameboy-classic-theme" +colors: + bg: "#234823" + fg: "#9BBC0F" + black: "#0F380F" + red: "#9A2257" + green: "#9BBC0F" + yellow: "#B3D80E" + blue: "#494786" + magenta: "#9A2257" + cyan: "#88C070" + white: "#C4BEBB" + brightBlack: "#526525" + brightRed: "#B84A7A" + brightGreen: "#B3D80E" + brightYellow: "#E7FCB8" + brightBlue: "#5855A0" + brightMagenta: "#B84A7A" + brightCyan: "#88C070" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 144 + contrast: + fg: 49.4 + black: 0 + red: 0 + green: 49.4 + yellow: 64.5 + blue: 0 + magenta: 0 + cyan: 50.5 + white: 58.2 + brightBlack: 10 + brightRed: 18.6 + brightGreen: 64.5 + brightYellow: 90.5 + brightBlue: 9.8 + brightMagenta: 18.6 + brightCyan: 50.5 + brightWhite: 93.1 diff --git a/themes/gameboy-classic-light.yaml b/themes/gameboy-classic-light.yaml new file mode 100644 index 00000000..51d53d3b --- /dev/null +++ b/themes/gameboy-classic-light.yaml @@ -0,0 +1,49 @@ +name: "GameBoy Classic Light" +source: + marketplace_id: "sanchodelniglo.gameboy-classic-theme" + version: "0.0.4" + installs: 832 + author: "sanchodelniglo" + repo: "https://github.com/Sanchodelniglo/gameboy-classic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sanchodelniglo.gameboy-classic-theme" +colors: + bg: "#C0D297" + fg: "#0F380F" + black: "#0F380F" + red: "#9A2257" + green: "#79970B" + yellow: "#9BBC0F" + blue: "#494786" + magenta: "#9A2257" + cyan: "#306850" + white: "#C4BEBB" + brightBlack: "#526525" + brightRed: "#B84A7A" + brightGreen: "#9BBC0F" + brightYellow: "#B3D80E" + brightBlue: "#5855A0" + brightMagenta: "#B84A7A" + brightCyan: "#88C070" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "green" + hue: 122 + contrast: + fg: 69 + black: 69 + red: 55.1 + green: 30.7 + yellow: 12.6 + blue: 58.3 + magenta: 55.1 + cyan: 51.9 + white: 0 + brightBlack: 51.8 + brightRed: 43 + brightGreen: 12.6 + brightYellow: 0 + brightBlue: 51.9 + brightMagenta: 43 + brightCyan: 11.6 + brightWhite: 26.7 diff --git a/themes/gamma-fork.yaml b/themes/gamma-fork.yaml new file mode 100644 index 00000000..0b17c309 --- /dev/null +++ b/themes/gamma-fork.yaml @@ -0,0 +1,49 @@ +name: "Gamma - Fork" +source: + marketplace_id: "xynny.gamma-theme" + version: "0.0.1" + installs: 242 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.gamma-theme" +colors: + bg: "#001D1D" + fg: "#0EC4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 195 + contrast: + fg: 58.3 + black: 0 + red: 26.4 + green: 52.6 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.7 diff --git a/themes/gamma.yaml b/themes/gamma.yaml new file mode 100644 index 00000000..edc49714 --- /dev/null +++ b/themes/gamma.yaml @@ -0,0 +1,49 @@ +name: "Gamma" +source: + marketplace_id: "VenkataramanaSuryanarayanan.gamma" + version: "1.0.0" + installs: 2347 + author: "Venkataramana Suryanarayanan" + repo: "https://github.com/HardCodeProgrammer/gamma-theme" + url: "https://marketplace.visualstudio.com/items?itemName=VenkataramanaSuryanarayanan.gamma" +colors: + bg: "#033535" + fg: "#0EC4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 195 + contrast: + fg: 54.5 + black: 0 + red: 22.6 + green: 48.9 + yellow: 81.5 + blue: 23.3 + magenta: 25.6 + cyan: 43.4 + white: 85.9 + brightBlack: 17.9 + brightRed: 34.5 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.9 + brightMagenta: 41.3 + brightCyan: 51.3 + brightWhite: 85.9 diff --git a/themes/ganbaru-blue.yaml b/themes/ganbaru-blue.yaml new file mode 100644 index 00000000..70184796 --- /dev/null +++ b/themes/ganbaru-blue.yaml @@ -0,0 +1,49 @@ +name: "Ganbaru blue" +source: + marketplace_id: "Marlodev.ganbaru" + version: "1.0.0" + installs: 1847 + author: "Marlodev" + repo: "https://github.com/marlodevhub/ganbaru" + url: "https://marketplace.visualstudio.com/items?itemName=Marlodev.ganbaru" +colors: + bg: "#151B23" + fg: "#D0DBDE" + black: "#293039" + red: "#FF6D7E" + green: "#A2E57B" + yellow: "#F3ACE2" + blue: "#FFB270" + magenta: "#BAA0F8" + cyan: "#7CD5F1" + white: "#D0DBDE" + brightBlack: "#6B7678" + brightRed: "#FF6D7E" + brightGreen: "#A2E57B" + brightYellow: "#F3ACE2" + brightBlue: "#FFB270" + brightMagenta: "#BAA0F8" + brightCyan: "#7CD5F1" + brightWhite: "#D0DBDE" +meta: + mode: "dark" + accent: "orange" + hue: 256 + contrast: + fg: 82.1 + black: 0 + red: 48.6 + green: 78.6 + yellow: 68.6 + blue: 68.9 + magenta: 57.2 + cyan: 72.5 + white: 82.1 + brightBlack: 27.8 + brightRed: 48.6 + brightGreen: 78.6 + brightYellow: 68.6 + brightBlue: 68.9 + brightMagenta: 57.2 + brightCyan: 72.5 + brightWhite: 82.1 diff --git a/themes/ganbaru-dark.yaml b/themes/ganbaru-dark.yaml new file mode 100644 index 00000000..635c7aec --- /dev/null +++ b/themes/ganbaru-dark.yaml @@ -0,0 +1,49 @@ +name: "Ganbaru Dark" +source: + marketplace_id: "Marlodev.ganbaru" + version: "1.0.0" + installs: 1847 + author: "Marlodev" + repo: "https://github.com/marlodevhub/ganbaru" + url: "https://marketplace.visualstudio.com/items?itemName=Marlodev.ganbaru" +colors: + bg: "#17181D" + fg: "#D0DBDE" + black: "#303338" + red: "#FF6D7E" + green: "#A2E57B" + yellow: "#F3ACE2" + blue: "#FFB270" + magenta: "#BAA0F8" + cyan: "#7CD5F1" + white: "#D0DBDE" + brightBlack: "#6B7678" + brightRed: "#FF6D7E" + brightGreen: "#A2E57B" + brightYellow: "#F3ACE2" + brightBlue: "#FFB270" + brightMagenta: "#BAA0F8" + brightCyan: "#7CD5F1" + brightWhite: "#D0DBDE" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 82.4 + black: 0 + red: 48.9 + green: 78.9 + yellow: 68.9 + blue: 69.2 + magenta: 57.4 + cyan: 72.8 + white: 82.4 + brightBlack: 28 + brightRed: 48.9 + brightGreen: 78.9 + brightYellow: 68.9 + brightBlue: 69.2 + brightMagenta: 57.4 + brightCyan: 72.8 + brightWhite: 82.4 diff --git a/themes/gantheory-dark.yaml b/themes/gantheory-dark.yaml new file mode 100644 index 00000000..7b1bc5dd --- /dev/null +++ b/themes/gantheory-dark.yaml @@ -0,0 +1,49 @@ +name: "Gantheory Dark" +source: + marketplace_id: "gantheory.theme-gantheory" + version: "0.0.2" + installs: 4724 + author: "gantheory" + repo: "https://github.com/gantheory/vscode-theme-gantheory" + url: "https://marketplace.visualstudio.com/items?itemName=gantheory.theme-gantheory" +colors: + bg: "#040404" + fg: "#E4E4E4" + black: "#000000" + red: "#F44336" + green: "#8BC34A" + yellow: "#FFEB3B" + blue: "#03A9F4" + magenta: "#E92663" + cyan: "#00BCD4" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#EF9A9A" + brightGreen: "#C5E1A5" + brightYellow: "#FFF59D" + brightBlue: "#81D4FA" + brightMagenta: "#F48FB1" + brightCyan: "#80DEEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 90.4 + black: 0 + red: 38.7 + green: 61.3 + yellow: 93.3 + blue: 51.3 + magenta: 34.1 + cyan: 57.5 + white: 72.7 + brightBlack: 23.9 + brightRed: 60.1 + brightGreen: 82.8 + brightYellow: 99.5 + brightBlue: 74.3 + brightMagenta: 58.4 + brightCyan: 78 + brightWhite: 107.9 diff --git a/themes/ganyu-theme.yaml b/themes/ganyu-theme.yaml new file mode 100644 index 00000000..430af46c --- /dev/null +++ b/themes/ganyu-theme.yaml @@ -0,0 +1,49 @@ +name: "Ganyu Theme" +source: + marketplace_id: "jeooo.ganyu-theme" + version: "1.0.1" + installs: 1601 + author: "jeooo`" + repo: "https://github.com/jeoooo/ganyu-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jeooo.ganyu-theme" +colors: + bg: "#D9EEFF" + fg: "#596CD5" + black: "#000000" + red: "#CD3131" + green: "#009200" + yellow: "#FFB006" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#27B827" + brightYellow: "#EAA510" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 242 + contrast: + fg: 60.1 + black: 94.2 + red: 62.2 + green: 55.6 + yellow: 22.1 + blue: 74.2 + magenta: 62.8 + cyan: 48.8 + white: 74.1 + brightBlack: 66.9 + brightRed: 62.2 + brightGreen: 38.9 + brightYellow: 29.5 + brightBlue: 74.2 + brightMagenta: 62.8 + brightCyan: 48.8 + brightWhite: 36.6 diff --git a/themes/gapstyle-vs-dark-modern.yaml b/themes/gapstyle-vs-dark-modern.yaml new file mode 100644 index 00000000..aa45f87e --- /dev/null +++ b/themes/gapstyle-vs-dark-modern.yaml @@ -0,0 +1,49 @@ +name: "GapStyle VS Dark Modern" +source: + marketplace_id: "gaplo917.gapstylevs" + version: "2.2.0" + installs: 8662 + author: "Gary Lo" + repo: "https://github.com/gaplo917/GapStyle" + url: "https://marketplace.visualstudio.com/items?itemName=gaplo917.gapstylevs" +colors: + bg: "#1F1F1F" + fg: "#CCCCCC" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.7 + black: 0 + red: 41.1 + green: 61.3 + yellow: 69.6 + blue: 53.7 + magenta: 44.2 + cyan: 53.6 + white: 82.1 + brightBlack: 34.6 + brightRed: 37.5 + brightGreen: 61.3 + brightYellow: 69.6 + brightBlue: 40.5 + brightMagenta: 11.8 + brightCyan: 53.6 + brightWhite: 82.1 diff --git a/themes/gapstyle-vs.yaml b/themes/gapstyle-vs.yaml new file mode 100644 index 00000000..056bb7bd --- /dev/null +++ b/themes/gapstyle-vs.yaml @@ -0,0 +1,49 @@ +name: "GapStyle VS" +source: + marketplace_id: "gaplo917.gapstylevs" + version: "2.2.0" + installs: 8662 + author: "Gary Lo" + repo: "https://github.com/gaplo917/GapStyle" + url: "https://marketplace.visualstudio.com/items?itemName=gaplo917.gapstylevs" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 38.3 + brightMagenta: 9.5 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/garbage-oracle-dark.yaml b/themes/garbage-oracle-dark.yaml new file mode 100644 index 00000000..e754a627 --- /dev/null +++ b/themes/garbage-oracle-dark.yaml @@ -0,0 +1,49 @@ +name: "Garbage Oracle Dark" +source: + marketplace_id: "sansbrina.garbage-oracle" + version: "0.1.0" + installs: 1599 + author: "sansbrina" + repo: "https://github.com/sansbrina/garbage-oracle-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sansbrina.garbage-oracle" +colors: + bg: "#371D32" + fg: "#F2E2F1" + black: "#371D32" + red: "#FB9495" + green: "#C1EDCC" + yellow: "#A9CDD6" + blue: "#19D3DB" + magenta: "#AAFDB0" + cyan: "#B0C0BC" + white: "#D7C6D6" + brightBlack: "#52394D" + brightRed: "#BBBCF0" + brightGreen: "#B0C0BC" + brightYellow: "#A9CDD6" + brightBlue: "#19D3DB" + brightMagenta: "#AAFDB0" + brightCyan: "#B0C0BC" + brightWhite: "#F2E2F1" +meta: + mode: "dark" + accent: "green" + hue: 334 + contrast: + fg: 88.9 + black: 0 + red: 57.1 + green: 86.2 + yellow: 69.4 + blue: 65.3 + magenta: 90.9 + cyan: 63.4 + white: 71.9 + brightBlack: 0 + brightRed: 65.6 + brightGreen: 63.4 + brightYellow: 69.4 + brightBlue: 65.3 + brightMagenta: 90.9 + brightCyan: 63.4 + brightWhite: 88.9 diff --git a/themes/garbage-oracle-light.yaml b/themes/garbage-oracle-light.yaml new file mode 100644 index 00000000..84aeec3f --- /dev/null +++ b/themes/garbage-oracle-light.yaml @@ -0,0 +1,49 @@ +name: "Garbage Oracle Light" +source: + marketplace_id: "sansbrina.garbage-oracle" + version: "0.1.0" + installs: 1599 + author: "sansbrina" + repo: "https://github.com/sansbrina/garbage-oracle-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sansbrina.garbage-oracle" +colors: + bg: "#F2E2F1" + fg: "#870058" + black: "#F2E2F1" + red: "#A4303F" + green: "#376954" + yellow: "#734D90" + blue: "#684F54" + magenta: "#7B3E19" + cyan: "#3F59B7" + white: "#96206E" + brightBlack: "#E3C2DB" + brightRed: "#2B5B75" + brightGreen: "#3F59B7" + brightYellow: "#734D90" + brightBlue: "#684F54" + brightMagenta: "#7B3E19" + brightCyan: "#3F59B7" + brightWhite: "#870058" +meta: + mode: "light" + accent: "red" + hue: 328 + contrast: + fg: 75.8 + black: 0 + red: 68.2 + green: 67 + yellow: 68 + blue: 71.3 + magenta: 73.7 + cyan: 66.7 + white: 71.1 + brightBlack: 13.2 + brightRed: 71 + brightGreen: 66.7 + brightYellow: 68 + brightBlue: 71.3 + brightMagenta: 73.7 + brightCyan: 66.7 + brightWhite: 75.8 diff --git a/themes/gatito-next-theme.yaml b/themes/gatito-next-theme.yaml new file mode 100644 index 00000000..47420405 --- /dev/null +++ b/themes/gatito-next-theme.yaml @@ -0,0 +1,49 @@ +name: "Gatito Next Theme" +source: + marketplace_id: "kevinsperrine.gatito-next-theme" + version: "1.1.2" + installs: 1301 + author: "Kevin S Perrine" + repo: "https://github.com/kevinsperrine/gatito-next-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kevinsperrine.gatito-next-theme" +colors: + bg: "#242B2E" + fg: "#D4D4D4" + black: "#808080" + red: "#E15A60" + green: "#99C794" + yellow: "#FAC863" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#808080" + brightRed: "#E15A60" + brightGreen: "#99C794" + brightYellow: "#FAC863" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 226 + contrast: + fg: 76.7 + black: 31 + red: 35.1 + green: 62.1 + yellow: 73.9 + blue: 41.4 + magenta: 49.2 + cyan: 50.2 + white: 76.7 + brightBlack: 31 + brightRed: 35.1 + brightGreen: 62.1 + brightYellow: 73.9 + brightBlue: 41.4 + brightMagenta: 49.2 + brightCyan: 50.2 + brightWhite: 76.7 diff --git a/themes/gatito-nightly-red.yaml b/themes/gatito-nightly-red.yaml new file mode 100644 index 00000000..e05f2aa3 --- /dev/null +++ b/themes/gatito-nightly-red.yaml @@ -0,0 +1,49 @@ +name: "Gatito Nightly Red" +source: + marketplace_id: "TaouMou.gatito-nightly" + version: "1.3.3" + installs: 1651 + author: "TaouMou" + repo: "https://github.com/TaouMou/gatito-nightly" + url: "https://marketplace.visualstudio.com/items?itemName=TaouMou.gatito-nightly" +colors: + bg: "#1A1F23" + fg: "#C0D2D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 242 + contrast: + fg: 75.2 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/gatito-theme.yaml b/themes/gatito-theme.yaml new file mode 100644 index 00000000..8b3cf2b8 --- /dev/null +++ b/themes/gatito-theme.yaml @@ -0,0 +1,49 @@ +name: "Gatito Theme" +source: + marketplace_id: "pawelgrzybek.gatito-theme" + version: "0.2.3" + installs: 139133 + author: "Paweł Grzybek" + repo: "https://github.com/pawelgrzybek/gatito-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pawelgrzybek.gatito-theme" +colors: + bg: "#242B2E" + fg: "#D4D4D4" + black: "#7F7F7F" + red: "#E15A60" + green: "#99C794" + yellow: "#FAC863" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#7F7F7F" + brightRed: "#E15A60" + brightGreen: "#99C794" + brightYellow: "#FAC863" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 226 + contrast: + fg: 76.7 + black: 30.5 + red: 35.1 + green: 62.1 + yellow: 73.9 + blue: 41.4 + magenta: 49.2 + cyan: 50.2 + white: 76.7 + brightBlack: 30.5 + brightRed: 35.1 + brightGreen: 62.1 + brightYellow: 73.9 + brightBlue: 41.4 + brightMagenta: 49.2 + brightCyan: 50.2 + brightWhite: 76.7 diff --git a/themes/gatomontesdark2.yaml b/themes/gatomontesdark2.yaml new file mode 100644 index 00000000..6fdd095a --- /dev/null +++ b/themes/gatomontesdark2.yaml @@ -0,0 +1,49 @@ +name: "gatomontesDark2" +source: + marketplace_id: "GatomontesRoseIII.gatomontes" + version: "1.0.0" + installs: 599 + author: "GatomontesRoseIII" + repo: "https://github.com/ramirezherreranoeelvis/gatitomontes" + url: "https://marketplace.visualstudio.com/items?itemName=GatomontesRoseIII.gatomontes" +colors: + bg: "#080613" + fg: "#BFBDB6" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 290 + contrast: + fg: 66.8 + black: 0 + red: 45 + green: 70.9 + yellow: 67.5 + blue: 61.5 + magenta: 61.5 + cyan: 78.8 + white: 72.6 + brightBlack: 23.8 + brightRed: 47.5 + brightGreen: 74.2 + brightYellow: 70.5 + brightBlue: 64.2 + brightMagenta: 64.3 + brightCyan: 81.8 + brightWhite: 107.8 diff --git a/themes/gdfunkytheme.yaml b/themes/gdfunkytheme.yaml new file mode 100644 index 00000000..30de1b34 --- /dev/null +++ b/themes/gdfunkytheme.yaml @@ -0,0 +1,49 @@ +name: "GDFunkyTheme" +source: + marketplace_id: "FunkyGodotTheme.godotfunkytheme" + version: "0.1.2" + installs: 82 + author: "FunkyGodotTheme" + repo: "https://github.com/SenestroStefano/godotfunkytheme" + url: "https://marketplace.visualstudio.com/items?itemName=FunkyGodotTheme.godotfunkytheme" +colors: + bg: "#1D2229" + fg: "#EEFFFF" + black: "#363636" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 103.2 + black: 0 + red: 25.4 + green: 51.6 + yellow: 84.3 + blue: 26.1 + magenta: 28.4 + cyan: 46.2 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.2 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.7 diff --git a/themes/gdscript35.yaml b/themes/gdscript35.yaml new file mode 100644 index 00000000..18dc91a6 --- /dev/null +++ b/themes/gdscript35.yaml @@ -0,0 +1,49 @@ +name: "gdscript35" +source: + marketplace_id: "backlight3281.gdscript35" + version: "0.0.1" + installs: 200 + author: "backlight3281" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=backlight3281.gdscript35" +colors: + bg: "#202531" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 267 + contrast: + fg: 77.6 + black: 0 + red: 24.8 + green: 51.1 + yellow: 83.7 + blue: 25.5 + magenta: 27.8 + cyan: 45.6 + white: 88.1 + brightBlack: 20.1 + brightRed: 36.6 + brightGreen: 61.6 + brightYellow: 93.7 + brightBlue: 38.1 + brightMagenta: 43.4 + brightCyan: 53.5 + brightWhite: 88.1 diff --git a/themes/geartheme.yaml b/themes/geartheme.yaml new file mode 100644 index 00000000..1d7e30c3 --- /dev/null +++ b/themes/geartheme.yaml @@ -0,0 +1,49 @@ +name: "GearTheme" +source: + marketplace_id: "gearczech.geartheme" + version: "0.0.1" + installs: 14 + author: "GearCzech" + repo: "https://github.com/GearCzech/geartheme" + url: "https://marketplace.visualstudio.com/items?itemName=gearczech.geartheme" +colors: + bg: "#0A1124" + fg: "#3759DB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 267 + contrast: + fg: 22.7 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.2 + cyan: 48 + white: 90.4 + brightBlack: 22.4 + brightRed: 39 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/gelato.yaml b/themes/gelato.yaml new file mode 100644 index 00000000..52e7f000 --- /dev/null +++ b/themes/gelato.yaml @@ -0,0 +1,49 @@ +name: "Gelato" +source: + marketplace_id: "walele993.fable-code-theme" + version: "1.2.0" + installs: 46 + author: "Gabriele Meucci" + repo: "https://github.com/walele993/fable_a_vsc_theme" + url: "https://marketplace.visualstudio.com/items?itemName=walele993.fable-code-theme" +colors: + bg: "#FDFAF5" + fg: "#554D44" + black: "#FDFAF5" + red: "#D6409F" + green: "#6C9C86" + yellow: "#B8A898" + blue: "#7A4EBF" + magenta: "#D6409F" + cyan: "#A3C9A3" + white: "#554D44" + brightBlack: "#B8A898" + brightRed: "#D6409F" + brightGreen: "#6C9C86" + brightYellow: "#B8A898" + brightBlue: "#7A4EBF" + brightMagenta: "#D6409F" + brightCyan: "#A3C9A3" + brightWhite: "#554D44" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 85.8 + black: 0 + red: 64.4 + green: 55.3 + yellow: 42.7 + blue: 75.4 + magenta: 64.4 + cyan: 31.6 + white: 85.8 + brightBlack: 42.7 + brightRed: 64.4 + brightGreen: 55.3 + brightYellow: 42.7 + brightBlue: 75.4 + brightMagenta: 64.4 + brightCyan: 31.6 + brightWhite: 85.8 diff --git a/themes/gelgel.yaml b/themes/gelgel.yaml new file mode 100644 index 00000000..e4a42b34 --- /dev/null +++ b/themes/gelgel.yaml @@ -0,0 +1,49 @@ +name: "GelGel" +source: + marketplace_id: "LanceWilhelm.gelgel" + version: "0.0.4" + installs: 165 + author: "Lance Wilhelm" + repo: "https://github.com/lancewilhelm/gelgel" + url: "https://marketplace.visualstudio.com/items?itemName=LanceWilhelm.gelgel" +colors: + bg: "#1B1B1B" + fg: "#D7D9CB" + black: "#494949" + red: "#F3ACD7" + green: "#C1F5E4" + yellow: "#F5F0B8" + blue: "#A5D2F8" + magenta: "#E3D7F0" + cyan: "#AFF7C2" + white: "#F8D0AE" + brightBlack: "#373636" + brightRed: "#F67FC9" + brightGreen: "#9CE9CF" + brightYellow: "#F5EB73" + brightBlue: "#75BFFD" + brightMagenta: "#D0B8E8" + brightCyan: "#6AF891" + brightWhite: "#FBB67F" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 81.2 + black: 10.2 + red: 68 + green: 92.8 + yellow: 95.1 + blue: 74.7 + magenta: 83.7 + cyan: 90.6 + white: 81.1 + brightBlack: 0 + brightRed: 54 + brightGreen: 82.6 + brightYellow: 91.1 + brightBlue: 63 + brightMagenta: 68 + brightCyan: 84.9 + brightWhite: 69.9 diff --git a/themes/gems-theme-default.yaml b/themes/gems-theme-default.yaml new file mode 100644 index 00000000..56aca94d --- /dev/null +++ b/themes/gems-theme-default.yaml @@ -0,0 +1,49 @@ +name: "Gems-Theme-Default" +source: + marketplace_id: "Mikaleb.gems-theme" + version: "0.4.0" + installs: 635 + author: "Mikaleb" + repo: "https://github.com/Mikaleb/Gems-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Mikaleb.gems-theme" +colors: + bg: "#2E3440" + fg: "#E9F1FF" + black: "#000000" + red: "#FF707E" + green: "#C6FF95" + yellow: "#FFCE72" + blue: "#88C9FF" + magenta: "#EC97FF" + cyan: "#73D7D9" + white: "#FFFFFF" + brightBlack: "#D8DEE9" + brightRed: "#FF707E" + brightGreen: "#C6FF95" + brightYellow: "#FFCE72" + brightBlue: "#88C9FF" + brightMagenta: "#EC97FF" + brightCyan: "#73D7D9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 92.2 + black: 0 + red: 44.6 + green: 90.9 + yellow: 75.2 + blue: 64.1 + magenta: 57.5 + cyan: 67 + white: 101.8 + brightBlack: 80.3 + brightRed: 44.6 + brightGreen: 90.9 + brightYellow: 75.2 + brightBlue: 64.1 + brightMagenta: 57.5 + brightCyan: 67 + brightWhite: 101.8 diff --git a/themes/gems-theme-light.yaml b/themes/gems-theme-light.yaml new file mode 100644 index 00000000..4878dabe --- /dev/null +++ b/themes/gems-theme-light.yaml @@ -0,0 +1,49 @@ +name: "Gems-Theme-Light" +source: + marketplace_id: "Mikaleb.gems-theme" + version: "0.4.0" + installs: 635 + author: "Mikaleb" + repo: "https://github.com/Mikaleb/Gems-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Mikaleb.gems-theme" +colors: + bg: "#E5E9F0" + fg: "#2E3440" + black: "#000000" + red: "#BF616A" + green: "#4D653C" + yellow: "#8E5F00" + blue: "#376F9C" + magenta: "#860086" + cyan: "#1F7187" + white: "#FFFFFF" + brightBlack: "#2E3440" + brightRed: "#BF616A" + brightGreen: "#4D653C" + brightYellow: "#8E5F00" + brightBlue: "#376F9C" + brightMagenta: "#860086" + brightCyan: "#1F7187" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: 262 + contrast: + fg: 85.2 + black: 92.8 + red: 54.5 + green: 68.9 + yellow: 64.2 + blue: 63.3 + magenta: 75 + cyan: 64.3 + white: 12.5 + brightBlack: 85.2 + brightRed: 54.5 + brightGreen: 68.9 + brightYellow: 64.2 + brightBlue: 63.3 + brightMagenta: 75 + brightCyan: 64.3 + brightWhite: 12.5 diff --git a/themes/gen-theme.yaml b/themes/gen-theme.yaml new file mode 100644 index 00000000..5a1e7aae --- /dev/null +++ b/themes/gen-theme.yaml @@ -0,0 +1,49 @@ +name: "gen-theme" +source: + marketplace_id: "GenukaWijenayake.gen" + version: "0.0.2" + installs: 81 + author: "Genuka Wijenayake" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GenukaWijenayake.gen" +colors: + bg: "#1B1A1A" + fg: "#07DFEA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.6 + black: 0 + red: 26.4 + green: 52.6 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.7 diff --git a/themes/generated-color-theme.yaml b/themes/generated-color-theme.yaml new file mode 100644 index 00000000..3b236fb4 --- /dev/null +++ b/themes/generated-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Generated Color Theme" +source: + marketplace_id: "prabinshrestha.classic" + version: "0.0.1" + installs: 32 + author: "prabin shrestha" + repo: "https://github.com/Prabin70/classic-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=prabinshrestha.classic" +colors: + bg: "#010309" + fg: "#CCD7C9" + black: "#000000" + red: "#937471" + green: "#747F76" + yellow: "#AB6740" + blue: "#4B79AD" + magenta: "#A151DA" + cyan: "#737F81" + white: "#F2F1ED" + brightBlack: "#434343" + brightRed: "#BD5C54" + brightGreen: "#CDE6D2" + brightYellow: "#DE9F7B" + brightBlue: "#297AD5" + brightMagenta: "#A457DC" + brightCyan: "#A5C5CB" + brightWhite: "#FCFBFB" +meta: + mode: "dark" + accent: "magenta" + hue: 259 + contrast: + fg: 80.3 + black: 0 + red: 32.5 + green: 32.9 + yellow: 31.2 + blue: 30.4 + magenta: 31.3 + cyan: 33.2 + white: 98.6 + brightBlack: 9.5 + brightRed: 32 + brightGreen: 87.6 + brightYellow: 58 + brightBlue: 32.1 + brightMagenta: 33 + brightCyan: 68.2 + brightWhite: 105.4 diff --git a/themes/genshin-impact-chiori-dark.yaml b/themes/genshin-impact-chiori-dark.yaml new file mode 100644 index 00000000..0a6dda17 --- /dev/null +++ b/themes/genshin-impact-chiori-dark.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Chiori (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#281818" + fg: "#F0E0D0" + black: "#382838" + red: "#F0A898" + green: "#A8D8B8" + yellow: "#E7A43A" + blue: "#D8C8B8" + magenta: "#E7A43A" + cyan: "#E7A43A" + white: "#F0E0D0" + brightBlack: "#A89088" + brightRed: "#F8E8D8" + brightGreen: "#D8F8D8" + brightYellow: "#F8F8D8" + brightBlue: "#D8D0E8" + brightMagenta: "#E7A43A" + brightCyan: "#E7A43A" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: 19 + contrast: + fg: 87.8 + black: 0 + red: 63.4 + green: 74.5 + yellow: 58.6 + blue: 73.1 + magenta: 58.6 + cyan: 58.6 + white: 87.8 + brightBlack: 43.5 + brightRed: 92.8 + brightGreen: 96.1 + brightYellow: 100.2 + brightBlue: 78.6 + brightMagenta: 58.6 + brightCyan: 58.6 + brightWhite: 106.2 diff --git a/themes/genshin-impact-chiori.yaml b/themes/genshin-impact-chiori.yaml new file mode 100644 index 00000000..d7b33807 --- /dev/null +++ b/themes/genshin-impact-chiori.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Chiori" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#FEFAF6" + fg: "#4A3030" + black: "#4A3030" + red: "#EE6373" + green: "#98B888" + yellow: "#E7A43A" + blue: "#C64413" + magenta: "#A88888" + cyan: "#E7A43A" + white: "#F0E0D0" + brightBlack: "#8A7060" + brightRed: "#F08090" + brightGreen: "#B8D8B0" + brightYellow: "#F0E0B8" + brightBlue: "#C8B8A8" + brightMagenta: "#D8B898" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 94.7 + black: 94.7 + red: 55.2 + green: 40.6 + yellow: 39.3 + blue: 70.6 + magenta: 56.7 + cyan: 39.3 + white: 11.7 + brightBlack: 69.3 + brightRed: 47.1 + brightGreen: 22.9 + brightYellow: 12.6 + brightBlue: 34.3 + brightMagenta: 32.7 + brightCyan: 33.1 + brightWhite: 0 diff --git a/themes/genshin-impact-citlali-dark.yaml b/themes/genshin-impact-citlali-dark.yaml new file mode 100644 index 00000000..34157d8a --- /dev/null +++ b/themes/genshin-impact-citlali-dark.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Citlali (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#1A1428" + fg: "#E8D8F0" + black: "#382850" + red: "#E898B8" + green: "#90C8B8" + yellow: "#D8C898" + blue: "#B8A0E0" + magenta: "#D99EC7" + cyan: "#D99EC7" + white: "#E8D8F0" + brightBlack: "#9080A0" + brightRed: "#F0B8D0" + brightGreen: "#A8D8C8" + brightYellow: "#E8D8A8" + brightBlue: "#C8B0E8" + brightMagenta: "#D8B0F0" + brightCyan: "#B8D0F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 297 + contrast: + fg: 85.2 + black: 0 + red: 58.3 + green: 65.7 + yellow: 72.6 + blue: 55.8 + magenta: 58.5 + cyan: 58.5 + white: 85.2 + brightBlack: 36.7 + brightRed: 71.9 + brightGreen: 75.7 + brightYellow: 82.2 + brightBlue: 64.2 + brightMagenta: 66.9 + brightCyan: 75.7 + brightWhite: 106.8 diff --git a/themes/genshin-impact-citlali.yaml b/themes/genshin-impact-citlali.yaml new file mode 100644 index 00000000..df1086f4 --- /dev/null +++ b/themes/genshin-impact-citlali.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Citlali" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#FAF8FC" + fg: "#3A2858" + black: "#3A2858" + red: "#D87088" + green: "#7AA89A" + yellow: "#D8A878" + blue: "#8D8CDA" + magenta: "#9A8CDA" + cyan: "#D99EC7" + white: "#E8D8F0" + brightBlack: "#7A6098" + brightRed: "#E88098" + brightGreen: "#8AB8AA" + brightYellow: "#E8B888" + brightBlue: "#8A9CDA" + brightMagenta: "#A898EE" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 95.2 + black: 95.2 + red: 54.9 + green: 47.9 + yellow: 38.3 + blue: 53.4 + magenta: 52.1 + cyan: 38.9 + white: 13.6 + brightBlack: 72.6 + brightRed: 47.2 + brightGreen: 39.7 + brightYellow: 29.7 + brightBlue: 48.2 + brightMagenta: 45.3 + brightCyan: 32 + brightWhite: 0 diff --git a/themes/genshin-impact-columbina-dark.yaml b/themes/genshin-impact-columbina-dark.yaml new file mode 100644 index 00000000..27e2ec32 --- /dev/null +++ b/themes/genshin-impact-columbina-dark.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Columbina (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#1A171D" + fg: "#E8F4FB" + black: "#1A171D" + red: "#E87A95" + green: "#6FBEC0" + yellow: "#F0C89F" + blue: "#90CCEA" + magenta: "#E091CA" + cyan: "#A8DCF5" + white: "#C3C8ED" + brightBlack: "#4A4552" + brightRed: "#FF91AB" + brightGreen: "#85D8DA" + brightYellow: "#FFD8B5" + brightBlue: "#A8DCF5" + brightMagenta: "#F5A7E0" + brightCyan: "#C0E8FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 308 + contrast: + fg: 98.2 + black: 0 + red: 48 + green: 59.2 + yellow: 76.3 + blue: 69.8 + magenta: 55.5 + cyan: 79.7 + white: 73.3 + brightBlack: 9.8 + brightRed: 59.8 + brightGreen: 73.6 + brightYellow: 86.1 + brightBlue: 79.7 + brightMagenta: 67.4 + brightCyan: 88.1 + brightWhite: 106.7 diff --git a/themes/genshin-impact-columbina.yaml b/themes/genshin-impact-columbina.yaml new file mode 100644 index 00000000..c33d0504 --- /dev/null +++ b/themes/genshin-impact-columbina.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Columbina" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#F6FAFF" + fg: "#272228" + black: "#272228" + red: "#CD5F7A" + green: "#5A9EA0" + yellow: "#E8B888" + blue: "#7487DB" + magenta: "#CD76B3" + cyan: "#90CCEA" + white: "#C3C8ED" + brightBlack: "#7D8AA8" + brightRed: "#E87A95" + brightGreen: "#6FBEC0" + brightYellow: "#F0C89F" + brightBlue: "#8FA0F0" + brightMagenta: "#E091CA" + brightCyan: "#A8DCF5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 99.3 + black: 99.3 + red: 61.8 + green: 54.2 + yellow: 30.2 + blue: 57.8 + magenta: 54 + cyan: 28.5 + white: 25.2 + brightBlack: 58.8 + brightRed: 49.4 + brightGreen: 38.6 + brightYellow: 22.3 + brightBlue: 45.4 + brightMagenta: 42.2 + brightCyan: 19.2 + brightWhite: 0 diff --git a/themes/genshin-impact-furina-dark.yaml b/themes/genshin-impact-furina-dark.yaml new file mode 100644 index 00000000..80a1ffcf --- /dev/null +++ b/themes/genshin-impact-furina-dark.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Furina (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#0F1823" + fg: "#D4E6F0" + black: "#25374D" + red: "#E886A8" + green: "#70C8A8" + yellow: "#D8B880" + blue: "#98B4E0" + magenta: "#7DC5F0" + cyan: "#7DC5F0" + white: "#D4E6F0" + brightBlack: "#708090" + brightRed: "#F0A8C0" + brightGreen: "#90D8B8" + brightYellow: "#E8C898" + brightBlue: "#A8C0E8" + brightMagenta: "#A8D0F0" + brightCyan: "#98D0E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 254 + contrast: + fg: 88.8 + black: 0 + red: 52.1 + green: 62.8 + yellow: 65.4 + blue: 59.8 + magenta: 65.7 + cyan: 65.7 + white: 88.8 + brightBlack: 32.8 + brightRed: 65.4 + brightGreen: 73 + brightYellow: 75 + brightBlue: 66.8 + brightMagenta: 74.1 + brightCyan: 72.2 + brightWhite: 106.8 diff --git a/themes/genshin-impact-furina.yaml b/themes/genshin-impact-furina.yaml new file mode 100644 index 00000000..f9879987 --- /dev/null +++ b/themes/genshin-impact-furina.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Furina" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#F5F9FC" + fg: "#1A2840" + black: "#1A2840" + red: "#C84860" + green: "#4A9A7A" + yellow: "#D89850" + blue: "#3A7FC4" + magenta: "#667EDE" + cyan: "#5EB3E4" + white: "#D6ECF8" + brightBlack: "#5A7090" + brightRed: "#E86078" + brightGreen: "#5AAA8A" + brightYellow: "#E8A860" + brightBlue: "#4A8FD4" + brightMagenta: "#7E8FEE" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 97.6 + black: 97.6 + red: 67.2 + green: 57.2 + yellow: 44.3 + blue: 64.6 + magenta: 60.9 + cyan: 41.6 + white: 0 + brightBlack: 70.9 + brightRed: 55.6 + brightGreen: 49.5 + brightYellow: 36 + brightBlue: 57.3 + brightMagenta: 52.3 + brightCyan: 31.8 + brightWhite: 0 diff --git a/themes/genshin-impact-ganyu-dark.yaml b/themes/genshin-impact-ganyu-dark.yaml new file mode 100644 index 00000000..2232690e --- /dev/null +++ b/themes/genshin-impact-ganyu-dark.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Ganyu (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#141A22" + fg: "#D8E0E8" + black: "#2A3440" + red: "#D87080" + green: "#78B898" + yellow: "#D0B070" + blue: "#6088B8" + magenta: "#A888B0" + cyan: "#78B0C8" + white: "#D0D8E0" + brightBlack: "#6A788A" + brightRed: "#E89098" + brightGreen: "#90D0B0" + brightYellow: "#E8D098" + brightBlue: "#88B0D8" + brightMagenta: "#C0A8C8" + brightCyan: "#98C8D8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 256 + contrast: + fg: 85.9 + black: 0 + red: 41.6 + green: 55.4 + yellow: 60.5 + blue: 36.1 + magenta: 42.7 + cyan: 54 + white: 81 + brightBlack: 29.1 + brightRed: 54.3 + brightGreen: 68.8 + brightYellow: 78.1 + brightBlue: 56.1 + brightMagenta: 58.2 + brightCyan: 67.6 + brightWhite: 106.6 diff --git a/themes/genshin-impact-ganyu-high-contrast.yaml b/themes/genshin-impact-ganyu-high-contrast.yaml new file mode 100644 index 00000000..17c9a396 --- /dev/null +++ b/themes/genshin-impact-ganyu-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Ganyu (High Contrast)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#000000" + fg: "#E0E8F0" + black: "#304050" + red: "#F0889A" + green: "#90DAB0" + yellow: "#E8C888" + blue: "#78B8E8" + magenta: "#C0A0C8" + cyan: "#88C8D8" + white: "#E0E8F0" + brightBlack: "#7090A8" + brightRed: "#F8A8B8" + brightGreen: "#A8F0C8" + brightYellow: "#F8E0A0" + brightBlue: "#A0D8F8" + brightMagenta: "#D8C0E0" + brightCyan: "#A8E0F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 92.2 + black: 8 + red: 54.8 + green: 74.7 + yellow: 75.6 + blue: 60.4 + magenta: 56.6 + cyan: 67.6 + white: 92.2 + brightBlack: 40.6 + brightRed: 67.6 + brightGreen: 88.2 + brightYellow: 89 + brightBlue: 78.4 + brightMagenta: 73.2 + brightCyan: 82.4 + brightWhite: 107.9 diff --git a/themes/genshin-impact-ganyu-light.yaml b/themes/genshin-impact-ganyu-light.yaml new file mode 100644 index 00000000..17187b48 --- /dev/null +++ b/themes/genshin-impact-ganyu-light.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Ganyu (Light)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#F5F9FC" + fg: "#2A3545" + black: "#2A3545" + red: "#C94E51" + green: "#5A9A78" + yellow: "#B89850" + blue: "#2D39AA" + magenta: "#8A5A95" + cyan: "#5A9AAA" + white: "#EDF4F9" + brightBlack: "#6A7888" + brightRed: "#D87080" + brightGreen: "#72B290" + brightYellow: "#C6A270" + brightBlue: "#4A6B9A" + brightMagenta: "#A878A8" + brightCyan: "#72B2C0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 94.3 + black: 94.3 + red: 66.3 + green: 56.5 + yellow: 49.1 + blue: 86.6 + magenta: 72.1 + cyan: 54.7 + white: 0 + brightBlack: 67.4 + brightRed: 54.9 + brightGreen: 44.6 + brightYellow: 43 + brightBlue: 73.1 + brightMagenta: 59 + brightCyan: 42.7 + brightWhite: 0 diff --git a/themes/genshin-impact-il-dottore-dark.yaml b/themes/genshin-impact-il-dottore-dark.yaml new file mode 100644 index 00000000..bf13a471 --- /dev/null +++ b/themes/genshin-impact-il-dottore-dark.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Il Dottore (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#0A0C14" + fg: "#C8D8E8" + black: "#18283C" + red: "#C08088" + green: "#80B0A0" + yellow: "#C0B080" + blue: "#6090C0" + magenta: "#A090B8" + cyan: "#60B8D0" + white: "#C8D8E8" + brightBlack: "#5A7090" + brightRed: "#D0A0A8" + brightGreen: "#A0D0C0" + brightYellow: "#E0D0A0" + brightBlue: "#80B0E0" + brightMagenta: "#C0B0D0" + brightCyan: "#80D0E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "blue" + hue: 273 + contrast: + fg: 81.5 + black: 0 + red: 43.1 + green: 53.9 + yellow: 59.7 + blue: 40.5 + magenta: 45.9 + cyan: 57.4 + white: 81.5 + brightBlack: 26.6 + brightRed: 57.3 + brightGreen: 71.9 + brightYellow: 78.2 + brightBlue: 57 + brightMagenta: 62.7 + brightCyan: 71.2 + brightWhite: 107.6 diff --git a/themes/genshin-impact-il-dottore.yaml b/themes/genshin-impact-il-dottore.yaml new file mode 100644 index 00000000..508ee632 --- /dev/null +++ b/themes/genshin-impact-il-dottore.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Il Dottore" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#F6F9FC" + fg: "#1A2848" + black: "#1A2848" + red: "#904858" + green: "#408068" + yellow: "#887048" + blue: "#305878" + magenta: "#685080" + cyan: "#287088" + white: "#8898B0" + brightBlack: "#607080" + brightRed: "#A86068" + brightGreen: "#509878" + brightYellow: "#A08858" + brightBlue: "#406890" + brightMagenta: "#786090" + brightCyan: "#3888A0" + brightWhite: "#B0C0D0" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 97.4 + black: 97.4 + red: 77.8 + green: 68.4 + yellow: 68.8 + blue: 82.2 + magenta: 79.9 + cyan: 73.8 + white: 51.9 + brightBlack: 71.3 + brightRed: 68.1 + brightGreen: 57.9 + brightYellow: 57.7 + brightBlue: 75.2 + brightMagenta: 73.1 + brightCyan: 63.6 + brightWhite: 31.2 diff --git a/themes/genshin-impact-kamisato-ayaka-dark.yaml b/themes/genshin-impact-kamisato-ayaka-dark.yaml new file mode 100644 index 00000000..1dda74c2 --- /dev/null +++ b/themes/genshin-impact-kamisato-ayaka-dark.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Kamisato Ayaka (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#141828" + fg: "#E0ECF8" + black: "#283858" + red: "#E75F96" + green: "#80D8B8" + yellow: "#E8B840" + blue: "#B8D0F0" + magenta: "#C5DBEE" + cyan: "#C5DBEE" + white: "#E0ECF8" + brightBlack: "#8898A8" + brightRed: "#F0B8D0" + brightGreen: "#A0E8C8" + brightYellow: "#E8C860" + brightBlue: "#B8D0F0" + brightMagenta: "#C5DBEE" + brightCyan: "#C5DBEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 273 + contrast: + fg: 93.3 + black: 0 + red: 41.5 + green: 71.7 + yellow: 66.7 + blue: 75.6 + magenta: 81.8 + cyan: 81.8 + white: 93.3 + brightBlack: 44.5 + brightRed: 71.8 + brightGreen: 82.4 + brightYellow: 73.6 + brightBlue: 75.6 + brightMagenta: 81.8 + brightCyan: 81.8 + brightWhite: 106.7 diff --git a/themes/genshin-impact-kamisato-ayaka.yaml b/themes/genshin-impact-kamisato-ayaka.yaml new file mode 100644 index 00000000..89f244e1 --- /dev/null +++ b/themes/genshin-impact-kamisato-ayaka.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Kamisato Ayaka" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#F8FAFC" + fg: "#20306A" + black: "#20306A" + red: "#E75F96" + green: "#6AAA8A" + yellow: "#D4A030" + blue: "#20306A" + magenta: "#5878C8" + cyan: "#E75F96" + white: "#E0ECF8" + brightBlack: "#6A7898" + brightRed: "#E75F96" + brightGreen: "#7ABAA0" + brightYellow: "#F0D080" + brightBlue: "#5888C8" + brightMagenta: "#8898D8" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 94.8 + black: 94.8 + red: 55.8 + green: 49.4 + yellow: 43.3 + blue: 94.8 + magenta: 66.1 + cyan: 55.8 + white: 0 + brightBlack: 67.5 + brightRed: 55.8 + brightGreen: 41 + brightYellow: 20 + brightBlue: 60.7 + brightMagenta: 50.5 + brightCyan: 32.6 + brightWhite: 0 diff --git a/themes/genshin-impact-layla-dark.yaml b/themes/genshin-impact-layla-dark.yaml new file mode 100644 index 00000000..46d7c660 --- /dev/null +++ b/themes/genshin-impact-layla-dark.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Layla (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#181C2A" + fg: "#D8ECF8" + black: "#2A3850" + red: "#E8A8C8" + green: "#A0D8C8" + yellow: "#DDAB6D" + blue: "#A8B8D8" + magenta: "#C0E9F7" + cyan: "#C0E9F7" + white: "#D8ECF8" + brightBlack: "#8090A8" + brightRed: "#F0C8E0" + brightGreen: "#B8E8D8" + brightYellow: "#E8E8B8" + brightBlue: "#C8C0E8" + brightMagenta: "#C8E0F8" + brightCyan: "#C8E0F8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: 272 + contrast: + fg: 91.8 + black: 0 + red: 63.8 + green: 74.4 + yellow: 60.2 + blue: 62 + magenta: 87.6 + cyan: 87.6 + white: 91.8 + brightBlack: 40.3 + brightRed: 78.3 + brightGreen: 84.9 + brightYellow: 89.4 + brightBlue: 69.9 + brightMagenta: 84.4 + brightCyan: 84.4 + brightWhite: 106.2 diff --git a/themes/genshin-impact-layla.yaml b/themes/genshin-impact-layla.yaml new file mode 100644 index 00000000..1fa098bd --- /dev/null +++ b/themes/genshin-impact-layla.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Layla" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#F8FCFE" + fg: "#2A3858" + black: "#2A3858" + red: "#D88098" + green: "#7AB8AA" + yellow: "#DDAB6D" + blue: "#5F689D" + magenta: "#8898C8" + cyan: "#C0E9F7" + white: "#D8ECF8" + brightBlack: "#6A7098" + brightRed: "#E890A8" + brightGreen: "#9AC8BA" + brightYellow: "#E8C898" + brightBlue: "#98ACD8" + brightMagenta: "#98B8E8" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 94.5 + black: 94.5 + red: 51.6 + green: 42.4 + yellow: 38.2 + blue: 74.2 + magenta: 52.4 + cyan: 12.3 + white: 8.4 + brightBlack: 71 + brightRed: 43.7 + brightGreen: 32.6 + brightYellow: 24.7 + brightBlue: 42.6 + brightMagenta: 37.2 + brightCyan: 33.5 + brightWhite: 0 diff --git a/themes/genshin-impact-sandrone-dark.yaml b/themes/genshin-impact-sandrone-dark.yaml new file mode 100644 index 00000000..1732b735 --- /dev/null +++ b/themes/genshin-impact-sandrone-dark.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Sandrone (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#12141A" + fg: "#E0DCE8" + black: "#282430" + red: "#C08090" + green: "#90B8A0" + yellow: "#C8B890" + blue: "#8090C0" + magenta: "#B08898" + cyan: "#90A8C0" + white: "#D8D0E0" + brightBlack: "#787080" + brightRed: "#D0A8B0" + brightGreen: "#A8D0B8" + brightYellow: "#E0D8B0" + brightBlue: "#A0B0D8" + brightMagenta: "#D0B0B8" + brightCyan: "#B0C0D8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 271 + contrast: + fg: 85.7 + black: 0 + red: 42.9 + green: 58.2 + yellow: 63.9 + blue: 42.4 + magenta: 43.3 + cyan: 52.9 + white: 79.1 + brightBlack: 28 + brightRed: 60 + brightGreen: 71.8 + brightYellow: 81.7 + brightBlue: 58.9 + brightMagenta: 63.3 + brightCyan: 67.1 + brightWhite: 107.1 diff --git a/themes/genshin-impact-sandrone.yaml b/themes/genshin-impact-sandrone.yaml new file mode 100644 index 00000000..76ff248f --- /dev/null +++ b/themes/genshin-impact-sandrone.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Sandrone" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#F7F0E7" + fg: "#2A2832" + black: "#2A2832" + red: "#A05060" + green: "#508858" + yellow: "#907840" + blue: "#4A5068" + magenta: "#751C26" + cyan: "#506068" + white: "#F0E8DF" + brightBlack: "#786860" + brightRed: "#B86878" + brightGreen: "#68A070" + brightYellow: "#A89050" + brightBlue: "#5A6078" + brightMagenta: "#903848" + brightCyan: "#607078" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.9 + black: 92.9 + red: 68.7 + green: 60.4 + yellow: 60.9 + blue: 79.2 + magenta: 85.5 + cyan: 74 + white: 0 + brightBlack: 68.1 + brightRed: 58.4 + brightGreen: 49 + brightYellow: 49.5 + brightBlue: 72.6 + brightMagenta: 76.6 + brightCyan: 67 + brightWhite: 0 diff --git a/themes/genshin-impact-scaramouche-dark.yaml b/themes/genshin-impact-scaramouche-dark.yaml new file mode 100644 index 00000000..2723d202 --- /dev/null +++ b/themes/genshin-impact-scaramouche-dark.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Scaramouche (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#1E1B24" + fg: "#E0D8E8" + black: "#1E1B24" + red: "#FF4D4D" + green: "#6A8A6A" + yellow: "#B8906A" + blue: "#5A7A90" + magenta: "#9A60E0" + cyan: "#5A7A90" + white: "#E0D8E8" + brightBlack: "#6A5A78" + brightRed: "#FF6B6B" + brightGreen: "#7AA97A" + brightYellow: "#C8A07A" + brightBlue: "#6A8AA0" + brightMagenta: "#B080E0" + brightCyan: "#6A8AA0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 300 + contrast: + fg: 83.1 + black: 0 + red: 41.4 + green: 34.1 + yellow: 44.9 + blue: 28.5 + magenta: 32.3 + cyan: 28.5 + white: 83.1 + brightBlack: 19 + brightRed: 47.5 + brightGreen: 47.9 + brightYellow: 53.2 + brightBlue: 36 + brightMagenta: 43.7 + brightCyan: 36 + brightWhite: 106.2 diff --git a/themes/genshin-impact-scaramouche.yaml b/themes/genshin-impact-scaramouche.yaml new file mode 100644 index 00000000..3805d53a --- /dev/null +++ b/themes/genshin-impact-scaramouche.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Scaramouche" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#FAF8FC" + fg: "#2A2535" + black: "#2A2535" + red: "#96182E" + green: "#5A7A70" + yellow: "#B8906A" + blue: "#4A5A80" + magenta: "#6A4A9E" + cyan: "#5A7A90" + white: "#E0D8E8" + brightBlack: "#6A5A78" + brightRed: "#A62840" + brightGreen: "#6A8A80" + brightYellow: "#C8A07A" + brightBlue: "#5A6A90" + brightMagenta: "#8A70B0" + brightCyan: "#6A8AA0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.9 + black: 97.9 + red: 83.9 + green: 69 + yellow: 51.5 + blue: 79.9 + magenta: 79.5 + cyan: 67.8 + white: 15 + brightBlack: 77.5 + brightRed: 79.2 + brightGreen: 61.5 + brightYellow: 43.4 + brightBlue: 73.1 + brightMagenta: 65 + brightCyan: 60.3 + brightWhite: 0 diff --git a/themes/genshin-impact-skirk-dark.yaml b/themes/genshin-impact-skirk-dark.yaml new file mode 100644 index 00000000..122100c1 --- /dev/null +++ b/themes/genshin-impact-skirk-dark.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Skirk (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#0B0B1A" + fg: "#B5FDFF" + black: "#2A2A50" + red: "#EFADCA" + green: "#80E0E0" + yellow: "#D0A0C0" + blue: "#C0A0F0" + magenta: "#B183FC" + cyan: "#B183FC" + white: "#B5FDFF" + brightBlack: "#8080B0" + brightRed: "#F0A0C0" + brightGreen: "#90E0E0" + brightYellow: "#E0C0D0" + brightBlue: "#B0A0F0" + brightMagenta: "#B5FDFF" + brightCyan: "#A0D0F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 282 + contrast: + fg: 98 + black: 0 + red: 68.3 + green: 78.2 + yellow: 58.3 + blue: 58.6 + magenta: 48 + cyan: 48 + white: 98 + brightBlack: 36.6 + brightRed: 63.5 + brightGreen: 79.3 + brightYellow: 73.4 + brightBlue: 56.5 + brightMagenta: 98 + brightCyan: 74.1 + brightWhite: 107.6 diff --git a/themes/genshin-impact-skirk.yaml b/themes/genshin-impact-skirk.yaml new file mode 100644 index 00000000..423e936f --- /dev/null +++ b/themes/genshin-impact-skirk.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Skirk" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#F8F9FE" + fg: "#2D2272" + black: "#2D2272" + red: "#EFADCA" + green: "#B5FDFF" + yellow: "#D8A878" + blue: "#5A45E4" + magenta: "#7A65F0" + cyan: "#B183FC" + white: "#E0E4FC" + brightBlack: "#6A5AC0" + brightRed: "#E88098" + brightGreen: "#8AB8AA" + brightYellow: "#E8B888" + brightBlue: "#8A9CDA" + brightMagenta: "#9880F0" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 95.7 + black: 95.7 + red: 30.6 + green: 0 + yellow: 38.5 + blue: 76.5 + magenta: 65.4 + cyan: 50 + white: 9.4 + brightBlack: 73.6 + brightRed: 47.5 + brightGreen: 39.9 + brightYellow: 29.9 + brightBlue: 48.5 + brightMagenta: 54.8 + brightCyan: 32.3 + brightWhite: 0 diff --git a/themes/genshin-impact-wanderer-dark.yaml b/themes/genshin-impact-wanderer-dark.yaml new file mode 100644 index 00000000..dffb20a0 --- /dev/null +++ b/themes/genshin-impact-wanderer-dark.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Wanderer (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#0F1820" + fg: "#DCEEF8" + black: "#253550" + red: "#3C8BA2" + green: "#70C8B0" + yellow: "#D0B868" + blue: "#B8D0F0" + magenta: "#94CBCF" + cyan: "#94CBCF" + white: "#DCEEF8" + brightBlack: "#7898B0" + brightRed: "#F0B8D0" + brightGreen: "#A0E8C8" + brightYellow: "#D8C870" + brightBlue: "#B8D0F0" + brightMagenta: "#94CBCF" + brightCyan: "#94CBCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 246 + contrast: + fg: 93.9 + black: 0 + red: 34.6 + green: 63.1 + yellow: 63.8 + blue: 75.7 + magenta: 68.4 + cyan: 68.4 + white: 93.9 + brightBlack: 43.6 + brightRed: 72 + brightGreen: 82.6 + brightYellow: 71.7 + brightBlue: 75.7 + brightMagenta: 68.4 + brightCyan: 68.4 + brightWhite: 106.8 diff --git a/themes/genshin-impact-wanderer.yaml b/themes/genshin-impact-wanderer.yaml new file mode 100644 index 00000000..0fed0cab --- /dev/null +++ b/themes/genshin-impact-wanderer.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Wanderer" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#F8FCFE" + fg: "#1A3050" + black: "#1A3050" + red: "#3C8BA2" + green: "#6AAA8A" + yellow: "#C8B870" + blue: "#1A3050" + magenta: "#4888C8" + cyan: "#3C8BA2" + white: "#DCEEF8" + brightBlack: "#5A7090" + brightRed: "#3C8BA2" + brightGreen: "#7ABAA0" + brightYellow: "#F0D080" + brightBlue: "#5888C8" + brightMagenta: "#78A8D8" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "indigo" + hue: null + contrast: + fg: 97.3 + black: 97.3 + red: 63.8 + green: 50.3 + yellow: 36.3 + blue: 97.3 + magenta: 62.4 + cyan: 63.8 + white: 0 + brightBlack: 72.7 + brightRed: 63.8 + brightGreen: 41.9 + brightYellow: 21 + brightBlue: 61.6 + brightMagenta: 46.8 + brightCyan: 33.5 + brightWhite: 0 diff --git a/themes/genshin-impact-yae-miko-dark.yaml b/themes/genshin-impact-yae-miko-dark.yaml new file mode 100644 index 00000000..98babbce --- /dev/null +++ b/themes/genshin-impact-yae-miko-dark.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Yae Miko (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#1C1418" + fg: "#E8DCE4" + black: "#2A2024" + red: "#C08090" + green: "#90A890" + yellow: "#C0B090" + blue: "#9090B0" + magenta: "#B090A8" + cyan: "#90A8B0" + white: "#E8D8E0" + brightBlack: "#786870" + brightRed: "#E0A0B0" + brightGreen: "#B0C8B0" + brightYellow: "#E0D0A0" + brightBlue: "#B0B0D0" + brightMagenta: "#D0B0C8" + brightCyan: "#B0C8D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 347 + contrast: + fg: 86.4 + black: 0 + red: 42.7 + green: 50.8 + yellow: 59.5 + blue: 43 + magenta: 46.5 + cyan: 52 + white: 84.5 + brightBlack: 24.8 + brightRed: 59.4 + brightGreen: 68.6 + brightYellow: 77.5 + brightBlue: 60 + brightMagenta: 63.8 + brightCyan: 69.9 + brightWhite: 106.9 diff --git a/themes/genshin-impact-yae-miko.yaml b/themes/genshin-impact-yae-miko.yaml new file mode 100644 index 00000000..e809a991 --- /dev/null +++ b/themes/genshin-impact-yae-miko.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Yae Miko" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#FDF8F9" + fg: "#4A3840" + black: "#4A3840" + red: "#A85060" + green: "#609070" + yellow: "#987050" + blue: "#785888" + magenta: "#C06090" + cyan: "#608890" + white: "#B89898" + brightBlack: "#886878" + brightRed: "#C06878" + brightGreen: "#78A888" + brightYellow: "#B08860" + brightBlue: "#9078A0" + brightMagenta: "#D078A0" + brightCyan: "#78A0A8" + brightWhite: "#E0C8D4" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 91.7 + black: 91.7 + red: 72.3 + green: 60.7 + yellow: 67 + blue: 76 + magenta: 63 + cyan: 62.7 + white: 47.8 + brightBlack: 70.3 + brightRed: 61.9 + brightGreen: 48.9 + brightYellow: 55.8 + brightBlue: 62.9 + brightMagenta: 53.6 + brightCyan: 50.9 + brightWhite: 22.5 diff --git a/themes/genshin-impact-yumemizuki-mizuki-dark.yaml b/themes/genshin-impact-yumemizuki-mizuki-dark.yaml new file mode 100644 index 00000000..e2fb2d48 --- /dev/null +++ b/themes/genshin-impact-yumemizuki-mizuki-dark.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Yumemizuki Mizuki (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#151520" + fg: "#E0DCE8" + black: "#1A1A2E" + red: "#E06888" + green: "#68B878" + yellow: "#D8B868" + blue: "#5A78C8" + magenta: "#C673C9" + cyan: "#68B8C8" + white: "#E0DCE8" + brightBlack: "#5A5878" + brightRed: "#F080A0" + brightGreen: "#80D090" + brightYellow: "#F0D080" + brightBlue: "#78A0E8" + brightMagenta: "#E090E0" + brightCyan: "#80D0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 85.6 + black: 0 + red: 41.8 + green: 53.8 + yellow: 65.1 + blue: 31.6 + magenta: 42.7 + cyan: 56.7 + white: 85.6 + brightBlack: 17.7 + brightRed: 51.8 + brightGreen: 66.9 + brightYellow: 79.1 + brightBlue: 49.9 + brightMagenta: 56.6 + brightCyan: 70.1 + brightWhite: 107 diff --git a/themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml b/themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml new file mode 100644 index 00000000..9461be29 --- /dev/null +++ b/themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Yumemizuki Mizuki (High Contrast)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#0A0A12" + fg: "#F0ECF8" + black: "#0C0C16" + red: "#F86898" + green: "#58D870" + yellow: "#F8D858" + blue: "#5888E8" + magenta: "#E090E8" + cyan: "#58D8E8" + white: "#F0ECF8" + brightBlack: "#7878A0" + brightRed: "#FF88B0" + brightGreen: "#78F890" + brightYellow: "#FFF088" + brightBlue: "#88B8FF" + brightMagenta: "#F0A8F0" + brightCyan: "#88F0F8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 284 + contrast: + fg: 96.4 + black: 0 + red: 48.1 + green: 68.5 + yellow: 83.8 + blue: 39.8 + magenta: 57.8 + cyan: 72.8 + white: 96.4 + brightBlack: 32.5 + brightRed: 58.4 + brightGreen: 86.9 + brightYellow: 96.6 + brightBlue: 62.8 + brightMagenta: 68.7 + brightCyan: 87.7 + brightWhite: 107.7 diff --git a/themes/genshin-impact-yumemizuki-mizuki-light.yaml b/themes/genshin-impact-yumemizuki-mizuki-light.yaml new file mode 100644 index 00000000..ceed80be --- /dev/null +++ b/themes/genshin-impact-yumemizuki-mizuki-light.yaml @@ -0,0 +1,49 @@ +name: "Genshin Impact - Yumemizuki Mizuki (Light)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#F8F5FA" + fg: "#2A2445" + black: "#2A2445" + red: "#C05878" + green: "#5A9A68" + yellow: "#A08840" + blue: "#151C6E" + magenta: "#C673C9" + cyan: "#5A9AA8" + white: "#F0EBF5" + brightBlack: "#786888" + brightRed: "#D87890" + brightGreen: "#72B280" + brightYellow: "#B8A058" + brightBlue: "#1A2380" + brightMagenta: "#D890D8" + brightCyan: "#72B2C0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 96 + black: 96 + red: 63.7 + green: 55.5 + yellow: 56.6 + blue: 95.6 + magenta: 52.8 + cyan: 53.4 + white: 0 + brightBlack: 69.7 + brightRed: 50.9 + brightGreen: 43.6 + brightYellow: 44.7 + brightBlue: 93.4 + brightMagenta: 41 + brightCyan: 41.3 + brightWhite: 0 diff --git a/themes/genshin-vibes-celestine-bardlight.yaml b/themes/genshin-vibes-celestine-bardlight.yaml new file mode 100644 index 00000000..11a1a5bb --- /dev/null +++ b/themes/genshin-vibes-celestine-bardlight.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Celestine Bardlight" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#F8FBFD" + fg: "#1A3A38" + black: "#F0F8F7" + red: "#BF5530" + green: "#26834F" + yellow: "#A66D32" + blue: "#31A586" + magenta: "#26824E" + cyan: "#2D72A6" + white: "#76A599" + brightBlack: "#76A599" + brightRed: "#BF5530" + brightGreen: "#26834F" + brightYellow: "#A66D32" + brightBlue: "#31A586" + brightMagenta: "#26824E" + brightCyan: "#2D72A6" + brightWhite: "#1A3A38" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.3 + black: 0 + red: 68.7 + green: 69.8 + yellow: 67 + blue: 54.4 + magenta: 70.2 + cyan: 72.6 + white: 50.5 + brightBlack: 50.5 + brightRed: 68.7 + brightGreen: 69.8 + brightYellow: 67 + brightBlue: 54.4 + brightMagenta: 70.2 + brightCyan: 72.6 + brightWhite: 95.3 diff --git a/themes/genshin-vibes-damselette-whisper.yaml b/themes/genshin-vibes-damselette-whisper.yaml new file mode 100644 index 00000000..86dd7a56 --- /dev/null +++ b/themes/genshin-vibes-damselette-whisper.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Damselette Whisper" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#F7F9FC" + fg: "#634D9A" + black: "#F2F4F8" + red: "#C94A5A" + green: "#4F8A5B" + yellow: "#B8892E" + blue: "#495A79" + magenta: "#906B99" + cyan: "#7A5C99" + white: "#99A0B0" + brightBlack: "#99A0B0" + brightRed: "#C94A5A" + brightGreen: "#4F8A5B" + brightYellow: "#B8892E" + brightBlue: "#495A79" + brightMagenta: "#906B99" + brightCyan: "#7A5C99" + brightWhite: "#634D9A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 79.8 + black: 0 + red: 67.1 + green: 64.3 + yellow: 54.8 + blue: 80.3 + magenta: 66.9 + cyan: 73.7 + white: 47.4 + brightBlack: 47.4 + brightRed: 67.1 + brightGreen: 64.3 + brightYellow: 54.8 + brightBlue: 80.3 + brightMagenta: 66.9 + brightCyan: 73.7 + brightWhite: 79.8 diff --git a/themes/genshin-vibes-emergency-food.yaml b/themes/genshin-vibes-emergency-food.yaml new file mode 100644 index 00000000..412e28a0 --- /dev/null +++ b/themes/genshin-vibes-emergency-food.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Emergency Food" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#0F141A" + fg: "#F0F4F8" + black: "#0B1218" + red: "#FF91A4" + green: "#A8D5E2" + yellow: "#FFD700" + blue: "#E6C719" + magenta: "#A7D5E2" + cyan: "#90C8FF" + white: "#374D5C" + brightBlack: "#374D5C" + brightRed: "#FF91A4" + brightGreen: "#A8D5E2" + brightYellow: "#FFD700" + brightBlue: "#E6C719" + brightMagenta: "#A7D5E2" + brightCyan: "#90C8FF" + brightWhite: "#F0F4F8" +meta: + mode: "dark" + accent: "green" + hue: 253 + contrast: + fg: 99.6 + black: 0 + red: 60 + green: 75.9 + yellow: 83.5 + blue: 72.8 + magenta: 75.8 + cyan: 69.7 + white: 11.4 + brightBlack: 11.4 + brightRed: 60 + brightGreen: 75.9 + brightYellow: 83.5 + brightBlue: 72.8 + brightMagenta: 75.8 + brightCyan: 69.7 + brightWhite: 99.6 diff --git a/themes/genshin-vibes-eternal-electro-throne.yaml b/themes/genshin-vibes-eternal-electro-throne.yaml new file mode 100644 index 00000000..25ec040d --- /dev/null +++ b/themes/genshin-vibes-eternal-electro-throne.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Eternal Electro Throne" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#1A1628" + fg: "#E8D5F3" + black: "#120F20" + red: "#F1A7B4" + green: "#7ED3B0" + yellow: "#E6C78A" + blue: "#AA7CEE" + magenta: "#D1A6E2" + cyan: "#7ED3B0" + white: "#443A58" + brightBlack: "#443A58" + brightRed: "#F1A7B4" + brightGreen: "#7ED3B0" + brightYellow: "#E6C78A" + brightBlue: "#AA7CEE" + brightMagenta: "#D1A6E2" + brightCyan: "#7ED3B0" + brightWhite: "#E8D5F3" +meta: + mode: "dark" + accent: "magenta" + hue: 293 + contrast: + fg: 83.9 + black: 0 + red: 64.6 + green: 68.9 + yellow: 73.7 + blue: 43.1 + magenta: 61.3 + cyan: 68.9 + white: 0 + brightBlack: 0 + brightRed: 64.6 + brightGreen: 68.9 + brightYellow: 73.7 + brightBlue: 43.1 + brightMagenta: 61.3 + brightCyan: 68.9 + brightWhite: 83.9 diff --git a/themes/genshin-vibes-fontaine-spotlight.yaml b/themes/genshin-vibes-fontaine-spotlight.yaml new file mode 100644 index 00000000..e0962322 --- /dev/null +++ b/themes/genshin-vibes-fontaine-spotlight.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Fontaine Spotlight" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#EAF3FF" + fg: "#0F172A" + black: "#F0F8FF" + red: "#BE123C" + green: "#059669" + yellow: "#EA580C" + blue: "#1F3B61" + magenta: "#1D4ED8" + cyan: "#0EA5E9" + white: "#64748B" + brightBlack: "#64748B" + brightRed: "#BE123C" + brightGreen: "#059669" + brightYellow: "#EA580C" + brightBlue: "#1F3B61" + brightMagenta: "#1D4ED8" + brightCyan: "#0EA5E9" + brightWhite: "#0F172A" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 96.8 + black: 0 + red: 71.4 + green: 56.9 + yellow: 54.4 + blue: 88.2 + magenta: 74.4 + cyan: 45.1 + white: 65.3 + brightBlack: 65.3 + brightRed: 71.4 + brightGreen: 56.9 + brightYellow: 54.4 + brightBlue: 88.2 + brightMagenta: 74.4 + brightCyan: 45.1 + brightWhite: 96.8 diff --git a/themes/genshin-vibes-frost-ritual.yaml b/themes/genshin-vibes-frost-ritual.yaml new file mode 100644 index 00000000..3a9d3a1b --- /dev/null +++ b/themes/genshin-vibes-frost-ritual.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Frost Ritual" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#0F1A26" + fg: "#E8F4FF" + black: "#0A1520" + red: "#FF6B35" + green: "#90C8FF" + yellow: "#FFD700" + blue: "#91CDF3" + magenta: "#4682B4" + cyan: "#90C8FF" + white: "#2A3D5A" + brightBlack: "#2A3D5A" + brightRed: "#FF6B35" + brightGreen: "#90C8FF" + brightYellow: "#FFD700" + brightBlue: "#91CDF3" + brightMagenta: "#4682B4" + brightCyan: "#90C8FF" + brightWhite: "#E8F4FF" +meta: + mode: "dark" + accent: "orange" + hue: 251 + contrast: + fg: 98.3 + black: 0 + red: 47 + green: 69.1 + yellow: 83 + blue: 70.7 + magenta: 32.4 + cyan: 69.1 + white: 0 + brightBlack: 0 + brightRed: 47 + brightGreen: 69.1 + brightYellow: 83 + brightBlue: 70.7 + brightMagenta: 32.4 + brightCyan: 69.1 + brightWhite: 98.3 diff --git a/themes/genshin-vibes-geo-contract-vault.yaml b/themes/genshin-vibes-geo-contract-vault.yaml new file mode 100644 index 00000000..9fff06c4 --- /dev/null +++ b/themes/genshin-vibes-geo-contract-vault.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Geo Contract Vault" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#1E1814" + fg: "#E8D9B2" + black: "#150F0B" + red: "#B85C40" + green: "#D4B085" + yellow: "#E8C660" + blue: "#E8C65E" + magenta: "#E4C060" + cyan: "#C8B8A3" + white: "#3B2F2E" + brightBlack: "#3B2F2E" + brightRed: "#B85C40" + brightGreen: "#D4B085" + brightYellow: "#E8C660" + brightBlue: "#E8C65E" + brightMagenta: "#E4C060" + brightCyan: "#C8B8A3" + brightWhite: "#E8D9B2" +meta: + mode: "dark" + accent: "green" + hue: 56 + contrast: + fg: 82.8 + black: 0 + red: 29.5 + green: 61.7 + yellow: 72.7 + blue: 72.7 + magenta: 69.7 + cyan: 64 + white: 0 + brightBlack: 0 + brightRed: 29.5 + brightGreen: 61.7 + brightYellow: 72.7 + brightBlue: 72.7 + brightMagenta: 69.7 + brightCyan: 64 + brightWhite: 82.8 diff --git a/themes/genshin-vibes-hydrocourt-midnight.yaml b/themes/genshin-vibes-hydrocourt-midnight.yaml new file mode 100644 index 00000000..8552d605 --- /dev/null +++ b/themes/genshin-vibes-hydrocourt-midnight.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Hydrocourt Midnight" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#0D1A26" + fg: "#E8F4FF" + black: "#091420" + red: "#FF69B4" + green: "#40E0D0" + yellow: "#00BFFF" + blue: "#19B3E6" + magenta: "#87CEFA" + cyan: "#ADD8E6" + white: "#2A3D5A" + brightBlack: "#2A3D5A" + brightRed: "#FF69B4" + brightGreen: "#40E0D0" + brightYellow: "#00BFFF" + brightBlue: "#19B3E6" + brightMagenta: "#87CEFA" + brightCyan: "#ADD8E6" + brightWhite: "#E8F4FF" +meta: + mode: "dark" + accent: "red" + hue: 248 + contrast: + fg: 98.3 + black: 0 + red: 49.8 + green: 73.6 + yellow: 60.1 + blue: 53.5 + magenta: 70.7 + cyan: 77.4 + white: 0 + brightBlack: 0 + brightRed: 49.8 + brightGreen: 73.6 + brightYellow: 60.1 + brightBlue: 53.5 + brightMagenta: 70.7 + brightCyan: 77.4 + brightWhite: 98.3 diff --git a/themes/genshin-vibes-ice-oracle.yaml b/themes/genshin-vibes-ice-oracle.yaml new file mode 100644 index 00000000..21e2a01e --- /dev/null +++ b/themes/genshin-vibes-ice-oracle.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Ice Oracle" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#F8FAFC" + fg: "#1E3A5F" + black: "#F1F5F9" + red: "#C2410C" + green: "#10B981" + yellow: "#F97316" + blue: "#4E74B1" + magenta: "#1E3A5F" + cyan: "#2FB7AD" + white: "#8898AF" + brightBlack: "#8898AF" + brightRed: "#C2410C" + brightGreen: "#10B981" + brightYellow: "#F97316" + brightBlue: "#4E74B1" + brightMagenta: "#1E3A5F" + brightCyan: "#2FB7AD" + brightWhite: "#1E3A5F" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 93.1 + black: 0 + red: 71.4 + green: 45.9 + yellow: 50 + blue: 69.4 + magenta: 93.1 + cyan: 45 + white: 52.6 + brightBlack: 52.6 + brightRed: 71.4 + brightGreen: 45.9 + brightYellow: 50 + brightBlue: 69.4 + brightMagenta: 93.1 + brightCyan: 45 + brightWhite: 93.1 diff --git a/themes/genshin-vibes-kusanali-dawnbloom.yaml b/themes/genshin-vibes-kusanali-dawnbloom.yaml new file mode 100644 index 00000000..43ed0f0d --- /dev/null +++ b/themes/genshin-vibes-kusanali-dawnbloom.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Kusanali Dawnbloom" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#FAFFED" + fg: "#202B20" + black: "#F0F8E8" + red: "#AE2012" + green: "#2D6A4F" + yellow: "#9B7A01" + blue: "#4C701A" + magenta: "#606C38" + cyan: "#2D4C3B" + white: "#5C6B5C" + brightBlack: "#5C6B5C" + brightRed: "#AE2012" + brightGreen: "#2D6A4F" + brightYellow: "#9B7A01" + brightBlue: "#4C701A" + brightMagenta: "#606C38" + brightCyan: "#2D4C3B" + brightWhite: "#202B20" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 100.1 + black: 0 + red: 81 + green: 80.2 + yellow: 66.2 + blue: 77.3 + magenta: 77 + cyan: 90.6 + white: 76.9 + brightBlack: 76.9 + brightRed: 81 + brightGreen: 80.2 + brightYellow: 66.2 + brightBlue: 77.3 + brightMagenta: 77 + brightCyan: 90.6 + brightWhite: 100.1 diff --git a/themes/genshin-vibes-lava-glaze-inferno.yaml b/themes/genshin-vibes-lava-glaze-inferno.yaml new file mode 100644 index 00000000..0ad9f185 --- /dev/null +++ b/themes/genshin-vibes-lava-glaze-inferno.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Lava Glaze Inferno" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#0F0A08" + fg: "#F4D4B2" + black: "#0B0806" + red: "#FF4757" + green: "#D4A574" + yellow: "#FF6B35" + blue: "#EB7347" + magenta: "#FFB347" + cyan: "#A68A6E" + white: "#46362D" + brightBlack: "#46362D" + brightRed: "#FF4757" + brightGreen: "#D4A574" + brightYellow: "#FF6B35" + brightBlue: "#EB7347" + brightMagenta: "#FFB347" + brightCyan: "#A68A6E" + brightWhite: "#F4D4B2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.5 + black: 0 + red: 42.1 + green: 58.2 + yellow: 48.1 + blue: 45.9 + magenta: 69.9 + cyan: 41.9 + white: 0 + brightBlack: 0 + brightRed: 42.1 + brightGreen: 58.2 + brightYellow: 48.1 + brightBlue: 45.9 + brightMagenta: 69.9 + brightCyan: 41.9 + brightWhite: 83.5 diff --git a/themes/genshin-vibes-morax-golden-seal.yaml b/themes/genshin-vibes-morax-golden-seal.yaml new file mode 100644 index 00000000..c6fb75d3 --- /dev/null +++ b/themes/genshin-vibes-morax-golden-seal.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Morax Golden Seal" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#FAF7F0" + fg: "#2C261F" + black: "#F0E6D0" + red: "#8B0000" + green: "#6B5A4A" + yellow: "#CD853F" + blue: "#8B4513" + magenta: "#A0522D" + cyan: "#B8860B" + white: "#8B7355" + brightBlack: "#8B7355" + brightRed: "#8B0000" + brightGreen: "#6B5A4A" + brightYellow: "#CD853F" + brightBlue: "#8B4513" + brightMagenta: "#A0522D" + brightCyan: "#B8860B" + brightWhite: "#2C261F" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.1 + black: 0 + red: 86 + green: 77.9 + yellow: 51.6 + blue: 79.4 + magenta: 73 + cyan: 54.9 + white: 66.4 + brightBlack: 66.4 + brightRed: 86 + brightGreen: 77.9 + brightYellow: 51.6 + brightBlue: 79.4 + brightMagenta: 73 + brightCyan: 54.9 + brightWhite: 97.1 diff --git a/themes/genshin-vibes-outrider-blaze.yaml b/themes/genshin-vibes-outrider-blaze.yaml new file mode 100644 index 00000000..08530d42 --- /dev/null +++ b/themes/genshin-vibes-outrider-blaze.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Outrider Blaze" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#1A120F" + fg: "#F4D4B2" + black: "#0F0A08" + red: "#FF4757" + green: "#FFB347" + yellow: "#FF6B35" + blue: "#C52007" + magenta: "#FFCE89" + cyan: "#F78E5A" + white: "#553E30" + brightBlack: "#553E30" + brightRed: "#FF4757" + brightGreen: "#FFB347" + brightYellow: "#FF6B35" + brightBlue: "#C52007" + brightMagenta: "#FFCE89" + brightCyan: "#F78E5A" + brightWhite: "#F4D4B2" +meta: + mode: "dark" + accent: "orange" + hue: 42 + contrast: + fg: 83 + black: 0 + red: 41.6 + green: 69.3 + yellow: 47.6 + blue: 23.7 + magenta: 81.1 + cyan: 55.6 + white: 8.8 + brightBlack: 8.8 + brightRed: 41.6 + brightGreen: 69.3 + brightYellow: 47.6 + brightBlue: 23.7 + brightMagenta: 81.1 + brightCyan: 55.6 + brightWhite: 83 diff --git a/themes/genshin-vibes-pyro-scout.yaml b/themes/genshin-vibes-pyro-scout.yaml new file mode 100644 index 00000000..f0331985 --- /dev/null +++ b/themes/genshin-vibes-pyro-scout.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Pyro Scout" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#FDF8F0" + fg: "#5C3A1A" + black: "#FFF5E6" + red: "#D03C3C" + green: "#C36E44" + yellow: "#D13D07" + blue: "#DD2736" + magenta: "#D13D07" + cyan: "#D66319" + white: "#AE9C7D" + brightBlack: "#AE9C7D" + brightRed: "#D03C3C" + brightGreen: "#C36E44" + brightYellow: "#D13D07" + brightBlue: "#DD2736" + brightMagenta: "#D13D07" + brightCyan: "#D66319" + brightWhite: "#5C3A1A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 89.4 + black: 0 + red: 68 + green: 60.6 + yellow: 68 + blue: 67.2 + magenta: 68 + cyan: 60.1 + white: 48.1 + brightBlack: 48.1 + brightRed: 68 + brightGreen: 60.6 + brightYellow: 68 + brightBlue: 67.2 + brightMagenta: 68 + brightCyan: 60.1 + brightWhite: 89.4 diff --git a/themes/genshin-vibes-starry-companion.yaml b/themes/genshin-vibes-starry-companion.yaml new file mode 100644 index 00000000..0e17bf80 --- /dev/null +++ b/themes/genshin-vibes-starry-companion.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Starry Companion" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#F8FAFF" + fg: "#1A2140" + black: "#F3F6FF" + red: "#D64550" + green: "#4E9F5D" + yellow: "#C89B2C" + blue: "#E7A240" + magenta: "#7084E6" + cyan: "#C77DFF" + white: "#B8C0DF" + brightBlack: "#B8C0DF" + brightRed: "#D64550" + brightGreen: "#4E9F5D" + brightYellow: "#C89B2C" + brightBlue: "#E7A240" + brightMagenta: "#7084E6" + brightCyan: "#C77DFF" + brightWhite: "#1A2140" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 99.6 + black: 0 + red: 66 + green: 56.7 + yellow: 47 + blue: 39.6 + magenta: 58.6 + cyan: 48.9 + white: 30.5 + brightBlack: 30.5 + brightRed: 66 + brightGreen: 56.7 + brightYellow: 47 + brightBlue: 39.6 + brightMagenta: 58.6 + brightCyan: 48.9 + brightWhite: 99.6 diff --git a/themes/genshin-vibes-stormrider-breeze.yaml b/themes/genshin-vibes-stormrider-breeze.yaml new file mode 100644 index 00000000..1f9fdf17 --- /dev/null +++ b/themes/genshin-vibes-stormrider-breeze.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Stormrider Breeze" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#0F1F24" + fg: "#D8F0E8" + black: "#0B191F" + red: "#F0B27A" + green: "#76C7AD" + yellow: "#48D1CC" + blue: "#47D1CD" + magenta: "#A3E4D7" + cyan: "#7AB8A9" + white: "#2A4A4E" + brightBlack: "#2A4A4E" + brightRed: "#F0B27A" + brightGreen: "#76C7AD" + brightYellow: "#48D1CC" + brightBlue: "#47D1CD" + brightMagenta: "#A3E4D7" + brightCyan: "#7AB8A9" + brightWhite: "#D8F0E8" +meta: + mode: "dark" + accent: "cyan" + hue: 220 + contrast: + fg: 92.9 + black: 0 + red: 66.2 + green: 62.3 + yellow: 66 + blue: 66 + magenta: 80.9 + cyan: 55.7 + white: 8.5 + brightBlack: 8.5 + brightRed: 66.2 + brightGreen: 62.3 + brightYellow: 66 + brightBlue: 66 + brightMagenta: 80.9 + brightCyan: 55.7 + brightWhite: 92.9 diff --git a/themes/genshin-vibes-sunforge-ember.yaml b/themes/genshin-vibes-sunforge-ember.yaml new file mode 100644 index 00000000..1c0bb117 --- /dev/null +++ b/themes/genshin-vibes-sunforge-ember.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Sunforge Ember" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#FDF8F0" + fg: "#5C3A1A" + black: "#FFF5E6" + red: "#D14D5A" + green: "#8B7355" + yellow: "#FF8C42" + blue: "#FF4757" + magenta: "#B4641D" + cyan: "#8B7355" + white: "#FFB347" + brightBlack: "#FFB347" + brightRed: "#D14D5A" + brightGreen: "#8B7355" + brightYellow: "#FF8C42" + brightBlue: "#FF4757" + brightMagenta: "#B4641D" + brightCyan: "#8B7355" + brightWhite: "#5C3A1A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 89.4 + black: 0 + red: 64.8 + green: 67.2 + yellow: 41.2 + blue: 55.5 + magenta: 66.1 + cyan: 67.2 + white: 28.7 + brightBlack: 28.7 + brightRed: 64.8 + brightGreen: 67.2 + brightYellow: 41.2 + brightBlue: 55.5 + brightMagenta: 66.1 + brightCyan: 67.2 + brightWhite: 89.4 diff --git a/themes/genshin-vibes-veiled-harbinger.yaml b/themes/genshin-vibes-veiled-harbinger.yaml new file mode 100644 index 00000000..1cc61a95 --- /dev/null +++ b/themes/genshin-vibes-veiled-harbinger.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Veiled Harbinger" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#141925" + fg: "#E6ECF5" + black: "#0E1118" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#C7D3E6" + magenta: "#D4A5D4" + cyan: "#967AB7" + white: "#3A4355" + brightBlack: "#3A4355" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#C7D3E6" + brightMagenta: "#D4A5D4" + brightCyan: "#967AB7" + brightWhite: "#E6ECF5" +meta: + mode: "dark" + accent: "orange" + hue: 267 + contrast: + fg: 93.8 + black: 0 + red: 41.8 + green: 62 + yellow: 70.3 + blue: 78 + magenta: 60.6 + cyan: 36.5 + white: 8.2 + brightBlack: 8.2 + brightRed: 41.8 + brightGreen: 62 + brightYellow: 70.3 + brightBlue: 78 + brightMagenta: 60.6 + brightCyan: 36.5 + brightWhite: 93.8 diff --git a/themes/genshin-vibes-verdant-dreamweave.yaml b/themes/genshin-vibes-verdant-dreamweave.yaml new file mode 100644 index 00000000..af1286f7 --- /dev/null +++ b/themes/genshin-vibes-verdant-dreamweave.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Verdant Dreamweave" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#1A231A" + fg: "#E8F5D8" + black: "#162116" + red: "#F0D9B5" + green: "#90EE90" + yellow: "#E7FF2F" + blue: "#A7EA43" + magenta: "#B9DAA4" + cyan: "#9AC89A" + white: "#3A4A3A" + brightBlack: "#3A4A3A" + brightRed: "#F0D9B5" + brightGreen: "#90EE90" + brightYellow: "#E7FF2F" + brightBlue: "#A7EA43" + brightMagenta: "#B9DAA4" + brightCyan: "#9AC89A" + brightWhite: "#E8F5D8" +meta: + mode: "dark" + accent: "green" + hue: 145 + contrast: + fg: 96 + black: 0 + red: 83.1 + green: 81.3 + yellow: 97.3 + blue: 79.9 + magenta: 75.9 + cyan: 64.3 + white: 8.3 + brightBlack: 8.3 + brightRed: 83.1 + brightGreen: 81.3 + brightYellow: 97.3 + brightBlue: 79.9 + brightMagenta: 75.9 + brightCyan: 64.3 + brightWhite: 96 diff --git a/themes/genshin-vibes-violet-eternity-glow.yaml b/themes/genshin-vibes-violet-eternity-glow.yaml new file mode 100644 index 00000000..2b017a28 --- /dev/null +++ b/themes/genshin-vibes-violet-eternity-glow.yaml @@ -0,0 +1,49 @@ +name: "Genshin Vibes: Violet Eternity Glow" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 175 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" +colors: + bg: "#F7F1FC" + fg: "#4A2E6B" + black: "#FBF8FF" + red: "#B85C6E" + green: "#4A9A7D" + yellow: "#9C4D78" + blue: "#601A42" + magenta: "#6333AE" + cyan: "#4A9A7D" + white: "#A88FB9" + brightBlack: "#A88FB9" + brightRed: "#B85C6E" + brightGreen: "#4A9A7D" + brightYellow: "#9C4D78" + brightBlue: "#601A42" + brightMagenta: "#6333AE" + brightCyan: "#4A9A7D" + brightWhite: "#4A2E6B" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 88.3 + black: 0 + red: 62.9 + green: 54 + yellow: 70.6 + blue: 89.9 + magenta: 80 + cyan: 54 + white: 47.9 + brightBlack: 47.9 + brightRed: 62.9 + brightGreen: 54 + brightYellow: 70.6 + brightBlue: 89.9 + brightMagenta: 80 + brightCyan: 54 + brightWhite: 88.3 diff --git a/themes/gentil-dark.yaml b/themes/gentil-dark.yaml new file mode 100644 index 00000000..6a4510a9 --- /dev/null +++ b/themes/gentil-dark.yaml @@ -0,0 +1,49 @@ +name: "Gentil Dark" +source: + marketplace_id: "lucgnl.gentil-dark-theme" + version: "1.2.0" + installs: 184 + author: "Lucgnl" + repo: "https://github.com/Lucgnl/gentil-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucgnl.gentil-dark-theme" +colors: + bg: "#191B1F" + fg: "#C0C0C0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 67.2 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/gentle-builder.yaml b/themes/gentle-builder.yaml new file mode 100644 index 00000000..d294e356 --- /dev/null +++ b/themes/gentle-builder.yaml @@ -0,0 +1,49 @@ +name: "Gentle Builder" +source: + marketplace_id: "lukeocodes.gentle-themes" + version: "0.0.6" + installs: 4472 + author: "lukeocodes" + repo: "https://github.com/lukeocodes/gentle-themes" + url: "https://marketplace.visualstudio.com/items?itemName=lukeocodes.gentle-themes" +colors: + bg: "#000C16" + fg: "#D9DDE0" + black: "#000C16" + red: "#EF5350" + green: "#22DA6E" + yellow: "#A3C76E" + blue: "#82AAFF" + magenta: "#94F7BD" + cyan: "#3EF8F8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#94F7BD" + brightCyan: "#53A5D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 237 + contrast: + fg: 85.4 + black: 0 + red: 40.1 + green: 68 + yellow: 65.7 + blue: 56.7 + magenta: 89.4 + cyan: 88.5 + white: 107.7 + brightBlack: 16.4 + brightRed: 40.1 + brightGreen: 68 + brightYellow: 94.5 + brightBlue: 56.7 + brightMagenta: 89.4 + brightCyan: 49.1 + brightWhite: 107.7 diff --git a/themes/gentle-clean-light.yaml b/themes/gentle-clean-light.yaml new file mode 100644 index 00000000..69b381d7 --- /dev/null +++ b/themes/gentle-clean-light.yaml @@ -0,0 +1,49 @@ +name: "Gentle Clean Light" +source: + marketplace_id: "kricsleo.gentle-clean" + version: "1.0.4" + installs: 1711 + author: "kricsleo" + repo: "https://github.com/kricsleo/vscode-theme-gentle-clean" + url: "https://marketplace.visualstudio.com/items?itemName=kricsleo.gentle-clean" +colors: + bg: "#FAFAFA" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 93.5 + black: 102.3 + red: 70.5 + green: 74.9 + yellow: 45.3 + blue: 75.2 + magenta: 78.1 + cyan: 60.5 + white: 18.1 + brightBlack: 42.8 + brightRed: 70.5 + brightGreen: 74.9 + brightYellow: 45.3 + brightBlue: 75.2 + brightMagenta: 78.1 + brightCyan: 60.5 + brightWhite: 14.6 diff --git a/themes/gentle-clean-monokai.yaml b/themes/gentle-clean-monokai.yaml new file mode 100644 index 00000000..cf1de372 --- /dev/null +++ b/themes/gentle-clean-monokai.yaml @@ -0,0 +1,49 @@ +name: "Gentle Clean Monokai" +source: + marketplace_id: "kricsleo.gentle-clean" + version: "1.0.4" + installs: 1711 + author: "kricsleo" + repo: "https://github.com/kricsleo/vscode-theme-gentle-clean" + url: "https://marketplace.visualstudio.com/items?itemName=kricsleo.gentle-clean" +colors: + bg: "#303841" + fg: "#CBD0D9" + black: "#E6E6E6" + red: "#EE6A6F" + green: "#A3CE9E" + yellow: "#FAB763" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#6699CC" + white: "#FFFFFF" + brightBlack: "#E6E6E6" + brightRed: "#EE6A6F" + brightGreen: "#A3CE9E" + brightYellow: "#FAB763" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#6699CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 251 + contrast: + fg: 70.8 + black: 84.6 + red: 38.3 + green: 63.2 + yellow: 64 + blue: 38.1 + magenta: 46 + cyan: 38.1 + white: 100.8 + brightBlack: 84.6 + brightRed: 38.3 + brightGreen: 63.2 + brightYellow: 64 + brightBlue: 38.1 + brightMagenta: 46 + brightCyan: 38.1 + brightWhite: 100.8 diff --git a/themes/gentle-dark-warm.yaml b/themes/gentle-dark-warm.yaml new file mode 100644 index 00000000..47c6f760 --- /dev/null +++ b/themes/gentle-dark-warm.yaml @@ -0,0 +1,49 @@ +name: "Gentle Dark Warm" +source: + marketplace_id: "carlossalguero.gentle-theme" + version: "1.0.0" + installs: 109 + author: "carlossalguero" + repo: "https://github.com/salgue441/gentle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" +colors: + bg: "#1F1D1A" + fg: "#D8D4CF" + black: "#2E2A26" + red: "#E8A090" + green: "#88B888" + yellow: "#E8C888" + blue: "#A8B8C8" + magenta: "#C8A8C8" + cyan: "#88C8B8" + white: "#D8D4CF" + brightBlack: "#5A5550" + brightRed: "#F0B8A8" + brightGreen: "#A8D8A8" + brightYellow: "#F0D8A0" + brightBlue: "#B8C8D8" + brightMagenta: "#D8B8D8" + brightCyan: "#A8D8C8" + brightWhite: "#F0ECE8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.1 + black: 0 + red: 58.9 + green: 55.7 + yellow: 73.9 + blue: 61.2 + magenta: 58.9 + cyan: 64.4 + white: 79.1 + brightBlack: 14.7 + brightRed: 69.7 + brightGreen: 73.9 + brightYellow: 82.5 + brightBlue: 70.4 + brightMagenta: 68 + brightCyan: 75.1 + brightWhite: 94.1 diff --git a/themes/gentle-dark.yaml b/themes/gentle-dark.yaml new file mode 100644 index 00000000..90f0110b --- /dev/null +++ b/themes/gentle-dark.yaml @@ -0,0 +1,49 @@ +name: "Gentle Dark" +source: + marketplace_id: "carlossalguero.gentle-theme" + version: "1.0.0" + installs: 109 + author: "carlossalguero" + repo: "https://github.com/salgue441/gentle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" +colors: + bg: "#1C1E22" + fg: "#D8DCE2" + black: "#27292E" + red: "#E8835A" + green: "#56C4C8" + yellow: "#E8A854" + blue: "#6AAFE6" + magenta: "#B794D4" + cyan: "#56C4C8" + white: "#D8DCE2" + brightBlack: "#52525B" + brightRed: "#F0A080" + brightGreen: "#70D8DC" + brightYellow: "#F0C070" + brightBlue: "#90C8F0" + brightMagenta: "#D0B0E8" + brightCyan: "#70D8DC" + brightWhite: "#F4F4F5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.3 + black: 0 + red: 48.3 + green: 60.2 + yellow: 60.3 + blue: 53.8 + magenta: 50 + cyan: 60.2 + white: 83.3 + brightBlack: 13.4 + brightRed: 59.7 + brightGreen: 71.7 + brightYellow: 71.3 + brightBlue: 67.7 + brightMagenta: 64.5 + brightCyan: 71.7 + brightWhite: 98.9 diff --git a/themes/gentle-light-warmer.yaml b/themes/gentle-light-warmer.yaml new file mode 100644 index 00000000..1e1db28a --- /dev/null +++ b/themes/gentle-light-warmer.yaml @@ -0,0 +1,49 @@ +name: "Gentle Light (Warmer)" +source: + marketplace_id: "carlossalguero.gentle-theme" + version: "1.0.0" + installs: 109 + author: "carlossalguero" + repo: "https://github.com/salgue441/gentle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" +colors: + bg: "#FAF8F5" + fg: "#433D38" + black: "#433D38" + red: "#B84A3D" + green: "#507040" + yellow: "#A87030" + blue: "#6B7B60" + magenta: "#8B6B70" + cyan: "#508080" + white: "#D4CCC2" + brightBlack: "#7A7068" + brightRed: "#C46050" + brightGreen: "#608850" + brightYellow: "#C09040" + brightBlue: "#7A8B70" + brightMagenta: "#A08088" + brightCyan: "#60A0A0" + brightWhite: "#F2F0EC" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 90.8 + black: 90.8 + red: 70.6 + green: 74 + yellow: 64.5 + blue: 67.5 + magenta: 68.8 + cyan: 66.6 + white: 22.6 + brightBlack: 69.5 + brightRed: 63.5 + brightGreen: 63.9 + brightYellow: 50.8 + brightBlue: 60 + brightMagenta: 58.9 + brightCyan: 52.3 + brightWhite: 0 diff --git a/themes/gentle-light.yaml b/themes/gentle-light.yaml new file mode 100644 index 00000000..289d90ba --- /dev/null +++ b/themes/gentle-light.yaml @@ -0,0 +1,49 @@ +name: "Gentle Light" +source: + marketplace_id: "carlossalguero.gentle-theme" + version: "1.0.0" + installs: 109 + author: "carlossalguero" + repo: "https://github.com/salgue441/gentle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" +colors: + bg: "#FDFCFA" + fg: "#3D424A" + black: "#3D424A" + red: "#C65D3D" + green: "#0D7377" + yellow: "#9E6B00" + blue: "#2A6DB0" + magenta: "#7B5EA7" + cyan: "#0D7377" + white: "#D1D5DB" + brightBlack: "#6B7280" + brightRed: "#E07050" + brightGreen: "#1A9A9E" + brightYellow: "#B87D00" + brightBlue: "#3A85D0" + brightMagenta: "#9575BD" + brightCyan: "#1A9A9E" + brightWhite: "#F5F4F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 91.7 + black: 91.7 + red: 66.4 + green: 75.9 + yellow: 70 + blue: 74.6 + magenta: 74.2 + cyan: 75.9 + white: 20.6 + brightBlack: 71.8 + brightRed: 56.7 + brightGreen: 59.4 + brightYellow: 60.7 + brightBlue: 64 + brightMagenta: 63.5 + brightCyan: 59.4 + brightWhite: 0 diff --git a/themes/gentle-midnight-warm.yaml b/themes/gentle-midnight-warm.yaml new file mode 100644 index 00000000..fa3bd653 --- /dev/null +++ b/themes/gentle-midnight-warm.yaml @@ -0,0 +1,49 @@ +name: "Gentle Midnight Warm" +source: + marketplace_id: "carlossalguero.gentle-theme" + version: "1.0.0" + installs: 109 + author: "carlossalguero" + repo: "https://github.com/salgue441/gentle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" +colors: + bg: "#100E0C" + fg: "#D0C8C0" + black: "#181410" + red: "#D89080" + green: "#80B080" + yellow: "#D8B060" + blue: "#98A8B8" + magenta: "#B898A8" + cyan: "#80B8A8" + white: "#D0C8C0" + brightBlack: "#3A3530" + brightRed: "#E8A898" + brightGreen: "#A0D0A0" + brightYellow: "#E8D088" + brightBlue: "#A8B8C8" + brightMagenta: "#C8A8B8" + brightCyan: "#A0D0C0" + brightWhite: "#E8E0D8" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 73.7 + black: 0 + red: 51.7 + green: 52.8 + yellow: 62.4 + blue: 53.8 + magenta: 50.9 + cyan: 57.5 + white: 73.7 + brightBlack: 0 + brightRed: 63.3 + brightGreen: 70.6 + brightYellow: 78.6 + brightBlue: 62.6 + brightMagenta: 59.6 + brightCyan: 71.8 + brightWhite: 88.3 diff --git a/themes/gentle-midnight.yaml b/themes/gentle-midnight.yaml new file mode 100644 index 00000000..b3062c0f --- /dev/null +++ b/themes/gentle-midnight.yaml @@ -0,0 +1,49 @@ +name: "Gentle Midnight" +source: + marketplace_id: "carlossalguero.gentle-theme" + version: "1.0.0" + installs: 109 + author: "carlossalguero" + repo: "https://github.com/salgue441/gentle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" +colors: + bg: "#0D0F12" + fg: "#C8CCD4" + black: "#15181E" + red: "#E07070" + green: "#70B080" + yellow: "#E0B050" + blue: "#5090D0" + magenta: "#B080C0" + cyan: "#60B0B0" + white: "#C8CCD4" + brightBlack: "#3A4050" + brightRed: "#F09090" + brightGreen: "#90D0A0" + brightYellow: "#F0D080" + brightBlue: "#80B0E0" + brightMagenta: "#D0A0E0" + brightCyan: "#80D0D0" + brightWhite: "#E8ECF0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 75.2 + black: 0 + red: 43.6 + green: 51.6 + yellow: 63.4 + blue: 40.4 + magenta: 43 + cyan: 52.3 + white: 75.2 + brightBlack: 8.1 + brightRed: 56.5 + brightGreen: 69.2 + brightYellow: 79.6 + brightBlue: 56.8 + brightMagenta: 59.8 + brightCyan: 69.8 + brightWhite: 94.8 diff --git a/themes/gentleblack.yaml b/themes/gentleblack.yaml new file mode 100644 index 00000000..affff626 --- /dev/null +++ b/themes/gentleblack.yaml @@ -0,0 +1,49 @@ +name: "GentleBlack" +source: + marketplace_id: "yanglixin.gentleblack" + version: "0.0.1" + installs: 162 + author: "yanglixin" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=yanglixin.gentleblack" +colors: + bg: "#3D3B24" + fg: "#FFFFFF" + black: "#1887A3" + red: "#DC322F" + green: "#859900" + yellow: "#EBDCAF" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#EEE8D5" +meta: + mode: "dark" + accent: "orange" + hue: 104 + contrast: + fg: 99.9 + black: 25.4 + red: 23.2 + green: 34.7 + yellow: 77.8 + blue: 29.8 + magenta: 23.4 + cyan: 35.5 + white: 85 + brightBlack: 17 + brightRed: 22.7 + brightGreen: 17 + brightYellow: 22.8 + brightBlue: 35 + brightMagenta: 23.5 + brightCyan: 41.9 + brightWhite: 85 diff --git a/themes/gfx.yaml b/themes/gfx.yaml new file mode 100644 index 00000000..1087bbad --- /dev/null +++ b/themes/gfx.yaml @@ -0,0 +1,49 @@ +name: "GFX" +source: + marketplace_id: "JRENG.gfx" + version: "0.0.18" + installs: 894 + author: "JRENG!" + repo: "https://github.com/jrengmusic/Code-gfx" + url: "https://marketplace.visualstudio.com/items?itemName=JRENG.gfx" +colors: + bg: "#000000" + fg: "#BEBEBE" + black: "#454545" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 67.5 + black: 10.2 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/gg-djaja-darken.yaml b/themes/gg-djaja-darken.yaml new file mode 100644 index 00000000..c213b826 --- /dev/null +++ b/themes/gg-djaja-darken.yaml @@ -0,0 +1,49 @@ +name: "gg-djaja-darken" +source: + marketplace_id: "bedeute.gg-djaja" + version: "0.3.61" + installs: 145 + author: "bedeute" + repo: "https://github.com/bedeute/gg-djaja-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bedeute.gg-djaja" +colors: + bg: "#11261F" + fg: "#56756C" + black: "#192B26" + red: "#804B57" + green: "#4A7550" + yellow: "#807954" + blue: "#556F82" + magenta: "#815D96" + cyan: "#4A7570" + white: "#89A49C" + brightBlack: "#2C3F39" + brightRed: "#9B5363" + brightGreen: "#508858" + brightYellow: "#968E5E" + brightBlue: "#5E86A3" + brightMagenta: "#9469AD" + brightCyan: "#508C84" + brightWhite: "#99B4AB" +meta: + mode: "dark" + accent: "magenta" + hue: 170 + contrast: + fg: 24.3 + black: 0 + red: 15.9 + green: 22.9 + yellow: 28.7 + blue: 23.1 + magenta: 22.8 + cyan: 23.7 + white: 47.4 + brightBlack: 0 + brightRed: 22 + brightGreen: 30.3 + brightYellow: 38.6 + brightBlue: 33 + brightMagenta: 29.5 + brightCyan: 33.1 + brightWhite: 56 diff --git a/themes/gg-djaja-default.yaml b/themes/gg-djaja-default.yaml new file mode 100644 index 00000000..02ac0893 --- /dev/null +++ b/themes/gg-djaja-default.yaml @@ -0,0 +1,49 @@ +name: "gg-djaja-default" +source: + marketplace_id: "bedeute.gg-djaja" + version: "0.3.61" + installs: 145 + author: "bedeute" + repo: "https://github.com/bedeute/gg-djaja-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bedeute.gg-djaja" +colors: + bg: "#142E25" + fg: "#7C8C87" + black: "#2A473E" + red: "#9B5363" + green: "#50885B" + yellow: "#968E5E" + blue: "#5E86A3" + magenta: "#9469AD" + cyan: "#508C86" + white: "#A1B4AF" + brightBlack: "#405C53" + brightRed: "#B0596C" + brightGreen: "#5FA56D" + brightYellow: "#B4AA6E" + brightBlue: "#6BA0C7" + brightMagenta: "#A070BC" + brightCyan: "#59A79F" + brightWhite: "#A6C2BB" +meta: + mode: "dark" + accent: "magenta" + hue: 169 + contrast: + fg: 35.1 + black: 0 + red: 20.8 + green: 29.1 + yellow: 37.4 + blue: 31.7 + magenta: 28.3 + cyan: 31.9 + white: 55.7 + brightBlack: 12.9 + brightRed: 25.8 + brightGreen: 42 + brightYellow: 51.9 + brightBlue: 44.2 + brightMagenta: 32.6 + brightCyan: 44.1 + brightWhite: 62.6 diff --git a/themes/gg-djaja-light.yaml b/themes/gg-djaja-light.yaml new file mode 100644 index 00000000..0cc43404 --- /dev/null +++ b/themes/gg-djaja-light.yaml @@ -0,0 +1,49 @@ +name: "gg-djaja-light" +source: + marketplace_id: "bedeute.gg-djaja" + version: "0.3.61" + installs: 145 + author: "bedeute" + repo: "https://github.com/bedeute/gg-djaja-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bedeute.gg-djaja" +colors: + bg: "#FBFAF3" + fg: "#454F5E" + black: "#66655D" + red: "#CD4B5D" + green: "#1E9943" + yellow: "#9B920B" + blue: "#366FB8" + magenta: "#B059CF" + cyan: "#108B99" + white: "#8791A3" + brightBlack: "#807F79" + brightRed: "#F76E81" + brightGreen: "#45BC69" + brightYellow: "#BAB01E" + brightBlue: "#498BE0" + brightMagenta: "#C973E8" + brightCyan: "#1DABBA" + brightWhite: "#9CA5B4" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 85.5 + black: 76.2 + red: 66.6 + green: 60.8 + yellow: 56.2 + blue: 71.7 + magenta: 64.1 + cyan: 64.1 + white: 55.8 + brightBlack: 64.3 + brightRed: 50.1 + brightGreen: 44.3 + brightYellow: 41.1 + brightBlue: 58.8 + brightMagenta: 52.6 + brightCyan: 49.8 + brightWhite: 45.7 diff --git a/themes/ghibli-day.yaml b/themes/ghibli-day.yaml new file mode 100644 index 00000000..52f09ea4 --- /dev/null +++ b/themes/ghibli-day.yaml @@ -0,0 +1,49 @@ +name: "Ghibli Day" +source: + marketplace_id: "ghiblistuff.ghibli-theme" + version: "1.0.0" + installs: 404 + author: "ghiblistuff" + repo: "https://github.com/champi-dev/vscode_ghibli_theme" + url: "https://marketplace.visualstudio.com/items?itemName=ghiblistuff.ghibli-theme" +colors: + bg: "#FFF8DC" + fg: "#36454F" + black: "#36454F" + red: "#FF6B6B" + green: "#4A7C59" + yellow: "#FFA07A" + blue: "#87CEEB" + magenta: "#6B5B95" + cyan: "#8FBC8F" + white: "#F5F5F5" + brightBlack: "#696969" + brightRed: "#FFB6C1" + brightGreen: "#8FBC8F" + brightYellow: "#D2691E" + brightBlue: "#B6E5F8" + brightMagenta: "#483D8B" + brightCyan: "#B0E0E6" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 88.6 + black: 88.6 + red: 48.4 + green: 69.2 + yellow: 33.8 + blue: 27.2 + magenta: 75.1 + cyan: 37.8 + white: 0 + brightBlack: 73 + brightRed: 24.3 + brightGreen: 37.8 + brightYellow: 59 + brightBlue: 12.8 + brightMagenta: 86.2 + brightCyan: 16.4 + brightWhite: 0 diff --git a/themes/ghibli-forest-dark.yaml b/themes/ghibli-forest-dark.yaml new file mode 100644 index 00000000..8db0bef3 --- /dev/null +++ b/themes/ghibli-forest-dark.yaml @@ -0,0 +1,49 @@ +name: "Ghibli Forest (Dark)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#1E2A24" + fg: "#E8DFD0" + black: "#1E2A24" + red: "#C96B6B" + green: "#8FB89F" + yellow: "#D4A84B" + blue: "#6B9AC4" + magenta: "#B88FB8" + cyan: "#6BC4B8" + white: "#E8DFD0" + brightBlack: "#5C7A68" + brightRed: "#E08A8A" + brightGreen: "#A8D4B8" + brightYellow: "#E8C46B" + brightBlue: "#8AB8E0" + brightMagenta: "#D4A8D4" + brightCyan: "#8AE0D4" + brightWhite: "#F4EBE0" +meta: + mode: "dark" + accent: "yellow" + hue: 163 + contrast: + fg: 84.5 + black: 0 + red: 34.9 + green: 55.4 + yellow: 55.4 + blue: 42.1 + magenta: 45.5 + cyan: 59 + white: 84.5 + brightBlack: 25.5 + brightRed: 48.5 + brightGreen: 71 + brightYellow: 70 + brightBlue: 57.9 + brightMagenta: 59.6 + brightCyan: 75.2 + brightWhite: 92.3 diff --git a/themes/ghibli-night.yaml b/themes/ghibli-night.yaml new file mode 100644 index 00000000..e5d21297 --- /dev/null +++ b/themes/ghibli-night.yaml @@ -0,0 +1,49 @@ +name: "Ghibli Night" +source: + marketplace_id: "ghiblistuff.ghibli-theme" + version: "1.0.0" + installs: 404 + author: "ghiblistuff" + repo: "https://github.com/champi-dev/vscode_ghibli_theme" + url: "https://marketplace.visualstudio.com/items?itemName=ghiblistuff.ghibli-theme" +colors: + bg: "#191970" + fg: "#F5F5F5" + black: "#36454F" + red: "#FF6B6B" + green: "#8FBC8F" + yellow: "#FFA07A" + blue: "#87CEEB" + magenta: "#6B5B95" + cyan: "#B0E0E6" + white: "#F5F5F5" + brightBlack: "#696969" + brightRed: "#FFB6C1" + brightGreen: "#4A7C59" + brightYellow: "#D2691E" + brightBlue: "#B6E5F8" + brightMagenta: "#483D8B" + brightCyan: "#8FBC8F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 273 + contrast: + fg: 97.4 + black: 0 + red: 45.2 + green: 56.1 + yellow: 60.3 + blue: 67.2 + magenta: 18.4 + cyan: 78.7 + white: 97.4 + brightBlack: 20.4 + brightRed: 70.2 + brightGreen: 24.2 + brightYellow: 34.4 + brightBlue: 82.5 + brightMagenta: 7.8 + brightCyan: 56.1 + brightWhite: 104 diff --git a/themes/ghibli-sky-light.yaml b/themes/ghibli-sky-light.yaml new file mode 100644 index 00000000..856feb36 --- /dev/null +++ b/themes/ghibli-sky-light.yaml @@ -0,0 +1,49 @@ +name: "Ghibli Sky (Light)" +source: + marketplace_id: "danibram.ghibli-inspired-theme" + version: "1.0.0" + installs: 267 + author: "Daniel Biedma" + repo: "https://github.com/danibram/ghibli-theme" + url: "https://marketplace.visualstudio.com/items?itemName=danibram.ghibli-inspired-theme" +colors: + bg: "#F8F4ED" + fg: "#4A4540" + black: "#4A4540" + red: "#A85858" + green: "#4A8A58" + yellow: "#B88A28" + blue: "#4878A8" + magenta: "#8A5888" + cyan: "#388888" + white: "#E8E2D8" + brightBlack: "#7A7570" + brightRed: "#C87070" + brightGreen: "#5AA868" + brightYellow: "#D4A838" + brightBlue: "#5890C0" + brightMagenta: "#A870A0" + brightCyan: "#48A0A0" + brightWhite: "#F8F4ED" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 85.6 + black: 85.6 + red: 67.9 + green: 62 + yellow: 51.8 + blue: 65.7 + magenta: 70.9 + cyan: 62.1 + white: 8 + brightBlack: 65.3 + brightRed: 55.9 + brightGreen: 48.8 + brightYellow: 37.2 + brightBlue: 55.1 + brightMagenta: 59.3 + brightCyan: 51.2 + brightWhite: 0 diff --git a/themes/ghost-louise.yaml b/themes/ghost-louise.yaml new file mode 100644 index 00000000..d3aa7f31 --- /dev/null +++ b/themes/ghost-louise.yaml @@ -0,0 +1,49 @@ +name: "ghost louise" +source: + marketplace_id: "zazcdev.ghostlouise" + version: "0.0.7" + installs: 146 + author: "zazc" + repo: "https://github.com/zazcc" + url: "https://marketplace.visualstudio.com/items?itemName=zazcdev.ghostlouise" +colors: + bg: "#705A96" + fg: "#A679AB" + black: "#000000" + red: "#FF857F" + green: "#7EAFB3" + yellow: "#ADC6BE" + blue: "#76809C" + magenta: "#9D729D" + cyan: "#77A3AE" + white: "#E5E5E5" + brightBlack: "#4A4F4D" + brightRed: "#D29696" + brightGreen: "#839990" + brightYellow: "#A8A1CD" + brightBlue: "#799DC7" + brightMagenta: "#BF99BF" + brightCyan: "#95B5BC" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "orange" + hue: 300 + contrast: + fg: 15.4 + black: 24.9 + red: 32.6 + green: 30.9 + yellow: 45.4 + blue: 11.4 + magenta: 11.4 + cyan: 25.2 + white: 67.5 + brightBlack: 7.7 + brightRed: 30.3 + brightGreen: 21.2 + brightYellow: 30.7 + brightBlue: 24.3 + brightMagenta: 30.1 + brightCyan: 35.7 + brightWhite: 67.5 diff --git a/themes/ghostgrey.yaml b/themes/ghostgrey.yaml new file mode 100644 index 00000000..53ef9da0 --- /dev/null +++ b/themes/ghostgrey.yaml @@ -0,0 +1,49 @@ +name: "GhostGrey" +source: + marketplace_id: "gtocaia.theme-ghost" + version: "1.0.0" + installs: 678 + author: "gtocaia" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gtocaia.theme-ghost" +colors: + bg: "#000000" + fg: "#CCCCCC" + black: "#333333" + red: "#880000" + green: "#008800" + yellow: "#888800" + blue: "#000088" + magenta: "#880088" + cyan: "#008888" + white: "#AAAAAA" + brightBlack: "#555555" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75.7 + black: 0 + red: 11 + green: 30.2 + yellow: 36.6 + blue: 0 + magenta: 14.4 + cyan: 32.5 + white: 56.2 + brightBlack: 16.1 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 16.2 + brightMagenta: 46.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/ghostty-default-styledark.yaml b/themes/ghostty-default-styledark.yaml new file mode 100644 index 00000000..80f61e8f --- /dev/null +++ b/themes/ghostty-default-styledark.yaml @@ -0,0 +1,49 @@ +name: "Ghostty Default StyleDark" +source: + marketplace_id: "hnagato.ghostty-dark" + version: "1.0.1" + installs: 283 + author: "hnagato" + repo: "https://github.com/hnagato/vscode-ghostty-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hnagato.ghostty-dark" +colors: + bg: "#292C33" + fg: "#FFFFFF" + black: "#1D1F21" + red: "#BF6B69" + green: "#B7BD73" + yellow: "#E9C880" + blue: "#88A1BB" + magenta: "#AD95B8" + cyan: "#95BDB7" + white: "#C5C8C6" + brightBlack: "#666666" + brightRed: "#C55757" + brightGreen: "#BCC95F" + brightYellow: "#E1C65E" + brightBlue: "#83A5D6" + brightMagenta: "#BC99D4" + brightCyan: "#83BEB1" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "orange" + hue: 267 + contrast: + fg: 103.7 + black: 0 + red: 32.2 + green: 59.6 + yellow: 71.3 + blue: 45.7 + magenta: 45.2 + cyan: 58.1 + white: 68.6 + brightBlack: 18.8 + brightRed: 28.2 + brightGreen: 65 + brightYellow: 68.7 + brightBlue: 48.3 + brightMagenta: 50 + brightCyan: 56.8 + brightWhite: 90 diff --git a/themes/ghostty-synthwave.yaml b/themes/ghostty-synthwave.yaml new file mode 100644 index 00000000..bc3b946d --- /dev/null +++ b/themes/ghostty-synthwave.yaml @@ -0,0 +1,49 @@ +name: "ghostty-synthwave" +source: + marketplace_id: "closji.ghostty-synthwave" + version: "0.0.7" + installs: 71 + author: "closji" + repo: "https://github.com/carlosejimenez/ghostty-synthwave" + url: "https://marketplace.visualstudio.com/items?itemName=closji.ghostty-synthwave" +colors: + bg: "#000000" + fg: "#DAD9C7" + black: "#000000" + red: "#F6188F" + green: "#1EBB2B" + yellow: "#F8D146" + blue: "#2186EC" + magenta: "#F85A21" + cyan: "#12C3E2" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#F841A0" + brightGreen: "#25C141" + brightYellow: "#F8D146" + brightBlue: "#2F9DED" + brightMagenta: "#F97137" + brightCyan: "#19CDE6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 82.9 + black: 0 + red: 37.9 + green: 52.5 + yellow: 80.8 + blue: 37.7 + magenta: 43.1 + cyan: 61.4 + white: 107.9 + brightBlack: 0 + brightRed: 42.1 + brightGreen: 55.6 + brightYellow: 80.8 + brightBlue: 46.5 + brightMagenta: 48.4 + brightCyan: 66.3 + brightWhite: 107.9 diff --git a/themes/gigaaa.yaml b/themes/gigaaa.yaml new file mode 100644 index 00000000..cf9f1e1a --- /dev/null +++ b/themes/gigaaa.yaml @@ -0,0 +1,49 @@ +name: "gigaaa" +source: + marketplace_id: "sneed1337.giga" + version: "0.0.2" + installs: 91 + author: "sneed" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sneed1337.giga" +colors: + bg: "#181B20" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 79.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/gineticustheme.yaml b/themes/gineticustheme.yaml new file mode 100644 index 00000000..85c78dfe --- /dev/null +++ b/themes/gineticustheme.yaml @@ -0,0 +1,49 @@ +name: "GineticusTheme" +source: + marketplace_id: "Gineticus.gineticus-theme" + version: "0.0.12" + installs: 57 + author: "Gineticus" + repo: "https://github.com/Gineticus/gineticus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gineticus.gineticus-theme" +colors: + bg: "#282C34" + fg: "#CED4DF" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#C5CAD4" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#C5CAD4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 76 + black: 0 + red: 29.8 + green: 58.5 + yellow: 73.2 + blue: 45.4 + magenta: 43.3 + cyan: 59.5 + white: 70.1 + brightBlack: 12.2 + brightRed: 29.8 + brightGreen: 58.5 + brightYellow: 73.2 + brightBlue: 45.4 + brightMagenta: 43.3 + brightCyan: 57.4 + brightWhite: 70.1 diff --git a/themes/ginseng.yaml b/themes/ginseng.yaml new file mode 100644 index 00000000..25dfcc33 --- /dev/null +++ b/themes/ginseng.yaml @@ -0,0 +1,49 @@ +name: "Ginseng" +source: + marketplace_id: "hassan-k1.vscode-theme-ginseng" + version: "2.1.1" + installs: 888 + author: "hassan-k1" + repo: "https://github.com/Ha55an-k1/vscode-theme-ginseng" + url: "https://marketplace.visualstudio.com/items?itemName=hassan-k1.vscode-theme-ginseng" +colors: + bg: "#1F0033" + fg: "#F5E6FF" + black: "#00E5D6" + red: "#C90000" + green: "#0400FF" + yellow: "#E2DF2D" + blue: "#000052" + magenta: "#FF00FF" + cyan: "#00DDD5" + white: "#E5E5E5" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#0DD997" + brightYellow: "#E0FF00" + brightBlue: "#AE00FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 308 + contrast: + fg: 94 + black: 76 + red: 23.6 + green: 15.3 + yellow: 82.6 + blue: 0 + magenta: 45.3 + cyan: 72 + white: 90.1 + brightBlack: 0 + brightRed: 36.6 + brightGreen: 67.7 + brightYellow: 97.6 + brightBlue: 29.1 + brightMagenta: 45.3 + brightCyan: 91.2 + brightWhite: 106.9 diff --git a/themes/gipsy-dark.yaml b/themes/gipsy-dark.yaml new file mode 100644 index 00000000..349a8ef8 --- /dev/null +++ b/themes/gipsy-dark.yaml @@ -0,0 +1,49 @@ +name: "Gipsy Dark" +source: + marketplace_id: "lucagaerisch.gipsy-vscode-theme" + version: "0.0.2" + installs: 128 + author: "Luca Gärisch" + repo: "https://github.com/lucagaerisch/gipsy-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucagaerisch.gipsy-vscode-theme" +colors: + bg: "#151515" + fg: "#F7F1FF" + black: "#050505" + red: "#FB1C5C" + green: "#47C963" + yellow: "#FBDB21" + blue: "#2264DE" + magenta: "#CC00CC" + cyan: "#22C6DE" + white: "#F7F1FF" + brightBlack: "#696969" + brightRed: "#FF80C0" + brightGreen: "#ABFFC7" + brightYellow: "#FFFF85" + brightBlue: "#86C8FF" + brightMagenta: "#FF64FF" + brightCyan: "#86FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 99.4 + black: 0 + red: 37 + green: 59.8 + yellow: 84.6 + blue: 25.1 + magenta: 30.6 + cyan: 61.9 + white: 99.4 + brightBlack: 23.5 + brightRed: 56.2 + brightGreen: 95.1 + brightYellow: 103 + brightBlue: 68.8 + brightMagenta: 53.6 + brightCyan: 94.8 + brightWhite: 107.1 diff --git a/themes/girls-theme.yaml b/themes/girls-theme.yaml new file mode 100644 index 00000000..10f3cdb5 --- /dev/null +++ b/themes/girls-theme.yaml @@ -0,0 +1,49 @@ +name: "girls-theme" +source: + marketplace_id: "Kuromesi.kuromesi-theme" + version: "0.0.1" + installs: 92 + author: "Kuromesi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kuromesi.kuromesi-theme" +colors: + bg: "#000000" + fg: "#E1EED2" + black: "#353551" + red: "#E34F8C" + green: "#FEADA6" + yellow: "#F8C275" + blue: "#C7ADFB" + magenta: "#FF69B4" + cyan: "#24E8D8" + white: "#FBD3E1" + brightBlack: "#919CB9" + brightRed: "#F36F89" + brightGreen: "#AFFA90" + brightYellow: "#F8C275" + brightBlue: "#FFFFFF" + brightMagenta: "#F799C7" + brightCyan: "#8DF9F9" + brightWhite: "#D7D6DF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 93.8 + black: 0 + red: 38.6 + green: 69.7 + yellow: 75.3 + blue: 65.1 + magenta: 51.1 + cyan: 78.7 + white: 86.2 + brightBlack: 48.8 + brightRed: 48.2 + brightGreen: 92.1 + brightYellow: 75.3 + brightBlue: 107.9 + brightMagenta: 63.1 + brightCyan: 92.8 + brightWhite: 82.2 diff --git a/themes/github-blue-dark.yaml b/themes/github-blue-dark.yaml new file mode 100644 index 00000000..ec554dfc --- /dev/null +++ b/themes/github-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Github Blue - Dark" +source: + marketplace_id: "nguyenhauweb.blue-dark-themb" + version: "0.0.39" + installs: 109 + author: "Nguyễn Thanh Hậu" + repo: "https://github.com/z1001st/blue-dark-themb" + url: "https://marketplace.visualstudio.com/items?itemName=nguyenhauweb.blue-dark-themb" +colors: + bg: "#1E293B" + fg: "#C9D1D9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 74.4 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.2 + cyan: 45 + white: 87.4 + brightBlack: 19.4 + brightRed: 36 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/github-blue-darkest.yaml b/themes/github-blue-darkest.yaml new file mode 100644 index 00000000..ee0bcf47 --- /dev/null +++ b/themes/github-blue-darkest.yaml @@ -0,0 +1,49 @@ +name: "Github Blue - Darkest" +source: + marketplace_id: "nguyenhauweb.blue-dark-themb" + version: "0.0.39" + installs: 109 + author: "Nguyễn Thanh Hậu" + repo: "https://github.com/z1001st/blue-dark-themb" + url: "https://marketplace.visualstudio.com/items?itemName=nguyenhauweb.blue-dark-themb" +colors: + bg: "#0D1628" + fg: "#C9D1D9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 263 + contrast: + fg: 77 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/github-catppuccin-dark-mix.yaml b/themes/github-catppuccin-dark-mix.yaml new file mode 100644 index 00000000..8c39b221 --- /dev/null +++ b/themes/github-catppuccin-dark-mix.yaml @@ -0,0 +1,49 @@ +name: "Github Catppuccin Dark Mix" +source: + marketplace_id: "DevGauravJatt.github-catppuccin-dark" + version: "1.0.0" + installs: 4012 + author: "Dev Gaurav Jatt" + repo: "https://github.com/devgauravjatt/github-catppuccin-dark" + url: "https://marketplace.visualstudio.com/items?itemName=DevGauravJatt.github-catppuccin-dark" +colors: + bg: "#1D2127" + fg: "#CAD3F5" + black: "#A5ADCB" + red: "#ED8796" + green: "#A6DA95" + yellow: "#EED49F" + blue: "#8AADF4" + magenta: "#F5BDE6" + cyan: "#91D7E3" + white: "#B8C0E0" + brightBlack: "#5B6078" + brightRed: "#ED8796" + brightGreen: "#A6DA95" + brightYellow: "#EED49F" + brightBlue: "#8AADF4" + brightMagenta: "#F5BDE6" + brightCyan: "#91D7E3" + brightWhite: "#494D64" +meta: + mode: "dark" + accent: "red" + hue: 258 + contrast: + fg: 78.2 + black: 56.1 + red: 51.5 + green: 73.6 + yellow: 80 + blue: 55.8 + magenta: 74.5 + cyan: 73.4 + white: 66.9 + brightBlack: 18.7 + brightRed: 51.5 + brightGreen: 73.6 + brightYellow: 80 + brightBlue: 55.8 + brightMagenta: 74.5 + brightCyan: 73.4 + brightWhite: 11.3 diff --git a/themes/github-catppuccin-dark.yaml b/themes/github-catppuccin-dark.yaml new file mode 100644 index 00000000..a9937b5d --- /dev/null +++ b/themes/github-catppuccin-dark.yaml @@ -0,0 +1,49 @@ +name: "Github Catppuccin Dark" +source: + marketplace_id: "DevGauravJatt.github-catppuccin-dark" + version: "1.0.0" + installs: 4012 + author: "Dev Gaurav Jatt" + repo: "https://github.com/devgauravjatt/github-catppuccin-dark" + url: "https://marketplace.visualstudio.com/items?itemName=DevGauravJatt.github-catppuccin-dark" +colors: + bg: "#22272E" + fg: "#CAD3F5" + black: "#A5ADCB" + red: "#ED8796" + green: "#A6DA95" + yellow: "#EED49F" + blue: "#8AADF4" + magenta: "#F5BDE6" + cyan: "#91D7E3" + white: "#B8C0E0" + brightBlack: "#5B6078" + brightRed: "#ED8796" + brightGreen: "#A6DA95" + brightYellow: "#EED49F" + brightBlue: "#8AADF4" + brightMagenta: "#F5BDE6" + brightCyan: "#91D7E3" + brightWhite: "#494D64" +meta: + mode: "dark" + accent: "red" + hue: 257 + contrast: + fg: 77.2 + black: 55.1 + red: 50.6 + green: 72.6 + yellow: 79 + blue: 54.8 + magenta: 73.6 + cyan: 72.4 + white: 66 + brightBlack: 17.8 + brightRed: 50.6 + brightGreen: 72.6 + brightYellow: 79 + brightBlue: 54.8 + brightMagenta: 73.6 + brightCyan: 72.4 + brightWhite: 10.3 diff --git a/themes/github-contrast-theme.yaml b/themes/github-contrast-theme.yaml new file mode 100644 index 00000000..0085d66d --- /dev/null +++ b/themes/github-contrast-theme.yaml @@ -0,0 +1,49 @@ +name: "github-contrast-theme" +source: + marketplace_id: "guillem-ps.obsidian-breeze" + version: "1.1.3" + installs: 122 + author: "guillem-ps" + repo: "https://github.com/guillem-ps/.dotfiles" + url: "https://marketplace.visualstudio.com/items?itemName=guillem-ps.obsidian-breeze" +colors: + bg: "#111111" + fg: "#FFFFFF" + black: "#111111" + red: "#E53D67" + green: "#A6E22E" + yellow: "#FB6107" + blue: "#7385BC" + magenta: "#9D37FC" + cyan: "#66C4C4" + white: "#FCFCF0" + brightBlack: "#444444" + brightRed: "#E53D67" + brightGreen: "#A7DA1E" + brightYellow: "#CECE00" + brightBlue: "#95A3CC" + brightMagenta: "#B8B8FF" + brightCyan: "#66C4C4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 34.8 + green: 77.5 + yellow: 44.6 + blue: 37.5 + magenta: 29.2 + cyan: 62.1 + white: 104.8 + brightBlack: 9.3 + brightRed: 34.8 + brightGreen: 73.7 + brightYellow: 72.6 + brightBlue: 52.3 + brightMagenta: 67.2 + brightCyan: 62.1 + brightWhite: 107.4 diff --git a/themes/github-contrast.yaml b/themes/github-contrast.yaml new file mode 100644 index 00000000..9a9c4915 --- /dev/null +++ b/themes/github-contrast.yaml @@ -0,0 +1,49 @@ +name: "github-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#111111" + fg: "#FFFFFF" + black: "#1E1E1E" + red: "#BA0E2E" + green: "#7385BC" + yellow: "#66C4C4" + blue: "#E53D67" + magenta: "#CCCCCC" + cyan: "#5A6FAD" + white: "#FFFFFF" + brightBlack: "#444444" + brightRed: "#F03E5F" + brightGreen: "#B8C1DD" + brightYellow: "#B0E0E0" + brightBlue: "#F197AD" + brightMagenta: "#FFFFFF" + brightCyan: "#9EAACF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 21 + green: 37.5 + yellow: 62.1 + blue: 34.8 + magenta: 75.2 + cyan: 27.5 + white: 107.4 + brightBlack: 9.3 + brightRed: 37.3 + brightGreen: 68.9 + brightYellow: 81.8 + brightBlue: 59.7 + brightMagenta: 107.4 + brightCyan: 56.1 + brightWhite: 107.4 diff --git a/themes/github-dank-dimmed.yaml b/themes/github-dank-dimmed.yaml new file mode 100644 index 00000000..abcff439 --- /dev/null +++ b/themes/github-dank-dimmed.yaml @@ -0,0 +1,49 @@ +name: "Github Dank Dimmed" +source: + marketplace_id: "Zytesas.github-dank-dimmed" + version: "0.0.5" + installs: 4512 + author: "Zytesas" + repo: "https://github.com/zytesas/GithubDankDimmed" + url: "https://marketplace.visualstudio.com/items?itemName=Zytesas.github-dank-dimmed" +colors: + bg: "#252526" + fg: "#ADBAC7" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 61.3 + black: 16 + red: 44.9 + green: 44.6 + yellow: 44.8 + blue: 44.6 + magenta: 44.4 + cyan: 59 + white: 45.5 + brightBlack: 23.1 + brightRed: 57.5 + brightGreen: 57.2 + brightYellow: 57.4 + brightBlue: 57.3 + brightMagenta: 71.2 + brightCyan: 67.5 + brightWhite: 79.7 diff --git a/themes/github-dark-colorblind-grayscale.yaml b/themes/github-dark-colorblind-grayscale.yaml new file mode 100644 index 00000000..41c0f5a0 --- /dev/null +++ b/themes/github-dark-colorblind-grayscale.yaml @@ -0,0 +1,49 @@ +name: "GitHub Dark Colorblind (Grayscale)" +source: + marketplace_id: "kontheocharis.github-vscode-theme-grayscale" + version: "1.0.1" + installs: 26 + author: "kontheocharis" + repo: "https://github.com/kontheocharis/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kontheocharis.github-vscode-theme-grayscale" +colors: + bg: "#0D0D0D" + fg: "#C9D1D9" + black: "#484F58" + red: "#EC8E2C" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FDAC54" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 77.8 + black: 13.3 + red: 53.4 + green: 52.4 + yellow: 52.4 + blue: 52.4 + magenta: 52.5 + cyan: 61.6 + white: 64.3 + brightBlack: 29.5 + brightRed: 67 + brightGreen: 65 + brightYellow: 64.9 + brightBlue: 65 + brightMagenta: 64.8 + brightCyan: 70.2 + brightWhite: 107.6 diff --git a/themes/github-dark-colorblind.yaml b/themes/github-dark-colorblind.yaml new file mode 100644 index 00000000..4293ce38 --- /dev/null +++ b/themes/github-dark-colorblind.yaml @@ -0,0 +1,49 @@ +name: "GitHub Dark Colorblind" +source: + marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" + version: "2.2.18" + installs: 32055 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#484F58" + red: "#EC8E2C" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FDAC54" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + contrast: + fg: 77.5 + black: 13.1 + red: 53.2 + green: 52.2 + yellow: 52.2 + blue: 52.2 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 29.3 + brightRed: 66.8 + brightGreen: 64.7 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 107.4 diff --git a/themes/github-dark-default-grayscale.yaml b/themes/github-dark-default-grayscale.yaml new file mode 100644 index 00000000..b3ace34c --- /dev/null +++ b/themes/github-dark-default-grayscale.yaml @@ -0,0 +1,49 @@ +name: "GitHub Dark Default (Grayscale)" +source: + marketplace_id: "kontheocharis.github-vscode-theme-grayscale" + version: "1.0.1" + installs: 26 + author: "kontheocharis" + repo: "https://github.com/kontheocharis/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kontheocharis.github-vscode-theme-grayscale" +colors: + bg: "#0D0D0D" + fg: "#E6EDF3" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 95.2 + black: 13.3 + red: 52.8 + green: 52.3 + yellow: 52.4 + blue: 52.4 + magenta: 52.5 + cyan: 61.6 + white: 64.3 + brightBlack: 29.5 + brightRed: 65.1 + brightGreen: 65.7 + brightYellow: 64.9 + brightBlue: 65 + brightMagenta: 64.8 + brightCyan: 70.2 + brightWhite: 107.6 diff --git a/themes/github-dark-default.yaml b/themes/github-dark-default.yaml new file mode 100644 index 00000000..a81b04b8 --- /dev/null +++ b/themes/github-dark-default.yaml @@ -0,0 +1,49 @@ +name: "GitHub Dark Default" +source: + marketplace_id: "my-custom-vscode-publisher.darkminimallinefree" + version: "0.0.4" + installs: 78 + author: "my-custom-vscode-publisher" + repo: "https://github.com/pvRod/my-custom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=my-custom-vscode-publisher.darkminimallinefree" +colors: + bg: "#0F131A" + fg: "#E6EDF3" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 262 + contrast: + fg: 94.8 + black: 12.9 + red: 52.4 + green: 52 + yellow: 52.1 + blue: 52.1 + magenta: 52.1 + cyan: 61.2 + white: 63.9 + brightBlack: 29.1 + brightRed: 64.7 + brightGreen: 65.3 + brightYellow: 64.6 + brightBlue: 64.6 + brightMagenta: 64.5 + brightCyan: 69.8 + brightWhite: 107.2 diff --git a/themes/github-dark-dimmed-grayscale.yaml b/themes/github-dark-dimmed-grayscale.yaml new file mode 100644 index 00000000..909e679e --- /dev/null +++ b/themes/github-dark-dimmed-grayscale.yaml @@ -0,0 +1,49 @@ +name: "GitHub Dark Dimmed (Grayscale)" +source: + marketplace_id: "kontheocharis.github-vscode-theme-grayscale" + version: "1.0.1" + installs: 26 + author: "kontheocharis" + repo: "https://github.com/kontheocharis/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kontheocharis.github-vscode-theme-grayscale" +colors: + bg: "#222222" + fg: "#ADBAC7" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 61.8 + black: 16.5 + red: 45.4 + green: 45.1 + yellow: 45.3 + blue: 45.1 + magenta: 44.9 + cyan: 59.5 + white: 46 + brightBlack: 23.6 + brightRed: 58 + brightGreen: 57.7 + brightYellow: 57.9 + brightBlue: 57.8 + brightMagenta: 71.7 + brightCyan: 68 + brightWhite: 80.2 diff --git a/themes/github-dark-dimmed.yaml b/themes/github-dark-dimmed.yaml new file mode 100644 index 00000000..bd8683c0 --- /dev/null +++ b/themes/github-dark-dimmed.yaml @@ -0,0 +1,49 @@ +name: "GitHub Dark Dimmed" +source: + marketplace_id: "NathanCuevas.custom-github-dark-dimmed" + version: "1.1.17" + installs: 3245 + author: "NathanCuevas" + repo: "https://github.com/NateAyye/custom-github-dark-dimmed" + url: "https://marketplace.visualstudio.com/items?itemName=NathanCuevas.custom-github-dark-dimmed" +colors: + bg: "#191B22" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 273 + contrast: + fg: 79 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.5 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/github-dark-high-contrast-grayscale.yaml b/themes/github-dark-high-contrast-grayscale.yaml new file mode 100644 index 00000000..7cf1c018 --- /dev/null +++ b/themes/github-dark-high-contrast-grayscale.yaml @@ -0,0 +1,49 @@ +name: "GitHub Dark High Contrast (Grayscale)" +source: + marketplace_id: "kontheocharis.github-vscode-theme-grayscale" + version: "1.0.1" + installs: 26 + author: "kontheocharis" + repo: "https://github.com/kontheocharis/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kontheocharis.github-vscode-theme-grayscale" +colors: + bg: "#0A0A0A" + fg: "#F0F3F6" + black: "#7A828E" + red: "#FF9492" + green: "#26CD4D" + yellow: "#F0B72F" + blue: "#71B7FF" + magenta: "#CB9EFF" + cyan: "#39C5CF" + white: "#D9DEE3" + brightBlack: "#9EA7B3" + brightRed: "#FFB1AF" + brightGreen: "#4AE168" + brightYellow: "#F7C843" + brightBlue: "#91CBFF" + brightMagenta: "#DBB7FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 99.6 + black: 35.2 + red: 60.8 + green: 61.3 + yellow: 68.6 + blue: 60.8 + magenta: 60.5 + cyan: 61.7 + white: 86.1 + brightBlack: 54 + brightRed: 71.5 + brightGreen: 72.3 + brightYellow: 76.7 + brightBlue: 71.6 + brightMagenta: 71.7 + brightCyan: 70.3 + brightWhite: 107.7 diff --git a/themes/github-dark-high-contrast.yaml b/themes/github-dark-high-contrast.yaml new file mode 100644 index 00000000..ca3c994f --- /dev/null +++ b/themes/github-dark-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "GitHub Dark High Contrast" +source: + marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" + version: "2.2.18" + installs: 32055 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" +colors: + bg: "#0A0C10" + fg: "#F0F3F6" + black: "#7A828E" + red: "#FF9492" + green: "#26CD4D" + yellow: "#F0B72F" + blue: "#71B7FF" + magenta: "#CB9EFF" + cyan: "#39C5CF" + white: "#D9DEE3" + brightBlack: "#9EA7B3" + brightRed: "#FFB1AF" + brightGreen: "#4AE168" + brightYellow: "#F7C843" + brightBlue: "#91CBFF" + brightMagenta: "#DBB7FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 99.5 + black: 35.2 + red: 60.8 + green: 61.2 + yellow: 68.5 + blue: 60.7 + magenta: 60.4 + cyan: 61.7 + white: 86 + brightBlack: 53.9 + brightRed: 71.4 + brightGreen: 72.3 + brightYellow: 76.6 + brightBlue: 71.5 + brightMagenta: 71.7 + brightCyan: 70.2 + brightWhite: 107.7 diff --git a/themes/github-dark-mode.yaml b/themes/github-dark-mode.yaml new file mode 100644 index 00000000..b6965ff4 --- /dev/null +++ b/themes/github-dark-mode.yaml @@ -0,0 +1,49 @@ +name: "GitHub Dark Mode" +source: + marketplace_id: "markusylisiurunen.githubdarkmode" + version: "0.1.6" + installs: 37572 + author: "markusylisiurunen" + repo: "https://github.com/markusylisiurunen/github-dark-mode" + url: "https://marketplace.visualstudio.com/items?itemName=markusylisiurunen.githubdarkmode" +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#6E7681" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#76E3EA" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#B3F0FF" + brightWhite: "#B1BAC4" +meta: + mode: "dark" + accent: "green" + hue: 258 + contrast: + fg: 77.5 + black: 29.3 + red: 52.6 + green: 52.1 + yellow: 52.2 + blue: 52.2 + magenta: 52.2 + cyan: 79.3 + white: 64 + brightBlack: 29.3 + brightRed: 64.8 + brightGreen: 65.5 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 91.2 + brightWhite: 64 diff --git a/themes/github-dark-palenight.yaml b/themes/github-dark-palenight.yaml new file mode 100644 index 00000000..93e8a780 --- /dev/null +++ b/themes/github-dark-palenight.yaml @@ -0,0 +1,49 @@ +name: "GitHub Dark Palenight" +source: + marketplace_id: "ConnorAbbas.github-dark-palenight" + version: "1.7.1" + installs: 3532 + author: "Connor Abbas" + repo: "https://github.com/connorabbas/github-dark-palenight" + url: "https://marketplace.visualstudio.com/items?itemName=ConnorAbbas.github-dark-palenight" +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 258 + contrast: + fg: 77.5 + black: 13.1 + red: 52.6 + green: 52.1 + yellow: 52.2 + blue: 52.2 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 29.3 + brightRed: 64.8 + brightGreen: 65.5 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 107.4 diff --git a/themes/github-dark-tritanopia.yaml b/themes/github-dark-tritanopia.yaml new file mode 100644 index 00000000..3a444791 --- /dev/null +++ b/themes/github-dark-tritanopia.yaml @@ -0,0 +1,49 @@ +name: "Github Dark Tritanopia" +source: + marketplace_id: "zanaty.github-dark-tritanopia" + version: "0.0.5" + installs: 62 + author: "zanaty" + repo: "https://github.com/moelzanaty3/github-dark-tritanopia" + url: "https://marketplace.visualstudio.com/items?itemName=zanaty.github-dark-tritanopia" +colors: + bg: "#0D1117" + fg: "#F0F6FC" + black: "#2F3742" + red: "#FF7B72" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BE8FFF" + cyan: "#39C5CF" + white: "#F0F6FC" + brightBlack: "#656C76" + brightRed: "#FFA198" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 258 + contrast: + fg: 100.9 + black: 0 + red: 52.6 + green: 52.2 + yellow: 52.2 + blue: 52.2 + magenta: 53.4 + cyan: 61.4 + white: 100.9 + brightBlack: 24.9 + brightRed: 64.8 + brightGreen: 64.7 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 107.4 diff --git a/themes/github-dark.yaml b/themes/github-dark.yaml new file mode 100644 index 00000000..81c78ce4 --- /dev/null +++ b/themes/github-dark.yaml @@ -0,0 +1,49 @@ +name: "GitHub Dark" +source: + marketplace_id: "AnasFiguigui.dark-reign-theme" + version: "1.0.4" + installs: 24 + author: "AnasFiguigui" + repo: "https://github.com/AnasFiguigui/dark-reign-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AnasFiguigui.dark-reign-theme" +colors: + bg: "#0D1117" + fg: "#E6EDF3" + black: "#484F58" + red: "#FF7B72" + green: "#522546" + yellow: "#D6AEDD" + blue: "#58A6FF" + magenta: "#8C72A4" + cyan: "#E7D5E2" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 258 + contrast: + fg: 95 + black: 13.1 + red: 52.6 + green: 0 + yellow: 65.4 + blue: 52.2 + magenta: 32.6 + cyan: 83.6 + white: 64 + brightBlack: 29.3 + brightRed: 64.8 + brightGreen: 65.5 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 107.4 diff --git a/themes/github-light-colorblind.yaml b/themes/github-light-colorblind.yaml new file mode 100644 index 00000000..5fa397a8 --- /dev/null +++ b/themes/github-light-colorblind.yaml @@ -0,0 +1,49 @@ +name: "GitHub Light Colorblind" +source: + marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" + version: "2.2.18" + installs: 32055 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" +colors: + bg: "#FFFFFF" + fg: "#24292F" + black: "#24292F" + red: "#B35900" + green: "#0550AE" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#8A4600" + brightGreen: "#0969DA" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.5 + black: 101.5 + red: 72.9 + green: 85.6 + yellow: 98 + blue: 74.9 + magenta: 74.3 + cyan: 73.8 + white: 71.6 + brightBlack: 81.8 + brightRed: 84.1 + brightGreen: 74.9 + brightYellow: 92 + brightBlue: 60.7 + brightMagenta: 59.3 + brightCyan: 63.3 + brightWhite: 57.2 diff --git a/themes/github-light-default.yaml b/themes/github-light-default.yaml new file mode 100644 index 00000000..359043aa --- /dev/null +++ b/themes/github-light-default.yaml @@ -0,0 +1,49 @@ +name: "GitHub Light Default" +source: + marketplace_id: "agavram.github-vscode-theme-minimal" + version: "4.1.3" + installs: 5970 + author: "Adrian Avram" + repo: "https://github.com/agavram/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=agavram.github-vscode-theme-minimal" +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#24292E" + red: "#D73A49" + green: "#22863A" + yellow: "#B08800" + blue: "#0366D6" + magenta: "#6F42C1" + cyan: "#1B7C83" + white: "#6A737D" + brightBlack: "#586069" + brightRed: "#CB2431" + brightGreen: "#28A745" + brightYellow: "#DBAB09" + brightBlue: "#2188FF" + brightMagenta: "#8A63D2" + brightCyan: "#3192AA" + brightWhite: "#959DA5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.5 + black: 101.5 + red: 70.4 + green: 71.7 + yellow: 60.1 + blue: 76.2 + magenta: 81.7 + cyan: 73.8 + white: 73.4 + brightBlack: 81.7 + brightRed: 75.5 + brightGreen: 57.9 + brightYellow: 41.6 + brightBlue: 61.7 + brightMagenta: 70.1 + brightCyan: 63.3 + brightWhite: 53.1 diff --git a/themes/github-light-high-contrast.yaml b/themes/github-light-high-contrast.yaml new file mode 100644 index 00000000..8c5b1469 --- /dev/null +++ b/themes/github-light-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "GitHub Light High Contrast" +source: + marketplace_id: "guilhermestella.github-light-hight-contrast-theme" + version: "0.0.5" + installs: 5800 + author: "Guilherme Stella" + repo: "https://github.com/guilhermestella/vscode-extensions" + url: "https://marketplace.visualstudio.com/items?itemName=guilhermestella.github-light-hight-contrast-theme" +colors: + bg: "#FFFFFF" + fg: "#24292F" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.5 + black: 101.5 + red: 74.8 + green: 85.2 + yellow: 98 + blue: 74.9 + magenta: 74.3 + cyan: 73.8 + white: 71.6 + brightBlack: 81.8 + brightRed: 85.2 + brightGreen: 74.6 + brightYellow: 92 + brightBlue: 60.7 + brightMagenta: 59.3 + brightCyan: 63.3 + brightWhite: 57.2 diff --git a/themes/github-light.yaml b/themes/github-light.yaml new file mode 100644 index 00000000..58e387c4 --- /dev/null +++ b/themes/github-light.yaml @@ -0,0 +1,49 @@ +name: "GitHub Light" +source: + marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" + version: "2.2.18" + installs: 32055 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#24292E" + red: "#D73A49" + green: "#28A745" + yellow: "#DBAB09" + blue: "#0366D6" + magenta: "#5A32A3" + cyan: "#1B7C83" + white: "#6A737D" + brightBlack: "#959DA5" + brightRed: "#CB2431" + brightGreen: "#22863A" + brightYellow: "#B08800" + brightBlue: "#005CC5" + brightMagenta: "#5A32A3" + brightCyan: "#3192AA" + brightWhite: "#D1D5DA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.5 + black: 101.5 + red: 70.4 + green: 57.9 + yellow: 41.6 + blue: 76.2 + magenta: 89.2 + cyan: 73.8 + white: 73.4 + brightBlack: 53.1 + brightRed: 75.5 + brightGreen: 71.7 + brightYellow: 60.1 + brightBlue: 80.5 + brightMagenta: 89.2 + brightCyan: 63.3 + brightWhite: 22.4 diff --git a/themes/github-minimal.yaml b/themes/github-minimal.yaml new file mode 100644 index 00000000..713fb68c --- /dev/null +++ b/themes/github-minimal.yaml @@ -0,0 +1,49 @@ +name: "GitHub Minimal" +source: + marketplace_id: "dominicegginton.github-minimal-vscode-theme" + version: "0.3.0" + installs: 4511 + author: "Dominic Egginton" + repo: "git+https://github.com/dominicegginton/github-minimal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dominicegginton.github-minimal-vscode-theme" +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#1B1F23" + red: "#D73A49" + green: "#28A745" + yellow: "#FFD33D" + blue: "#0366D6" + magenta: "#6F42C1" + cyan: "#0366D6" + white: "#FFFFFF" + brightBlack: "#1B1F23" + brightRed: "#D73A49" + brightGreen: "#28A745" + brightYellow: "#FFD33D" + brightBlue: "#0366D6" + brightMagenta: "#6F42C1" + brightCyan: "#0366D6" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.5 + black: 103.5 + red: 70.4 + green: 57.9 + yellow: 20.6 + blue: 76.2 + magenta: 81.7 + cyan: 76.2 + white: 0 + brightBlack: 103.5 + brightRed: 70.4 + brightGreen: 57.9 + brightYellow: 20.6 + brightBlue: 76.2 + brightMagenta: 81.7 + brightCyan: 76.2 + brightWhite: 0 diff --git a/themes/github-revamp-alt.yaml b/themes/github-revamp-alt.yaml new file mode 100644 index 00000000..d948282b --- /dev/null +++ b/themes/github-revamp-alt.yaml @@ -0,0 +1,49 @@ +name: "Github Revamp Alt" +source: + marketplace_id: "Avetis.github-revamp" + version: "0.0.4" + installs: 1168 + author: "Avetis" + repo: "https://github.com/AvetisDN/github-revamp" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.github-revamp" +colors: + bg: "#202426" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.9 + black: 0 + red: 25.1 + green: 51.4 + yellow: 84 + blue: 25.8 + magenta: 28.1 + cyan: 45.9 + white: 88.4 + brightBlack: 20.4 + brightRed: 36.9 + brightGreen: 61.9 + brightYellow: 94 + brightBlue: 38.4 + brightMagenta: 43.7 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/github-theme-by-humamafif.yaml b/themes/github-theme-by-humamafif.yaml new file mode 100644 index 00000000..df103561 --- /dev/null +++ b/themes/github-theme-by-humamafif.yaml @@ -0,0 +1,49 @@ +name: "Github-theme-by-humamafif" +source: + marketplace_id: "humamafif.github-theme-by-humamafif" + version: "0.0.3" + installs: 178 + author: "humamafif" + repo: "https://github.com/humamafif/my-github-theme" + url: "https://marketplace.visualstudio.com/items?itemName=humamafif.github-theme-by-humamafif" +colors: + bg: "#0D1117" + fg: "#EEEEEE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#B8B8B8" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 258 + contrast: + fg: 96.3 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 63.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/github.yaml b/themes/github.yaml new file mode 100644 index 00000000..2dc0e2c3 --- /dev/null +++ b/themes/github.yaml @@ -0,0 +1,49 @@ +name: "github" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#333333" + fg: "#FFFFFF" + black: "#404040" + red: "#BA0E2E" + green: "#7385BC" + yellow: "#66C4C4" + blue: "#E53D67" + magenta: "#CCCCCC" + cyan: "#5A6FAD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F03E5F" + brightGreen: "#B8C1DD" + brightYellow: "#B0E0E0" + brightBlue: "#F197AD" + brightMagenta: "#FFFFFF" + brightCyan: "#9EAACF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 102 + black: 0 + red: 15.6 + green: 32.1 + yellow: 56.8 + blue: 29.5 + magenta: 69.8 + cyan: 22.2 + white: 102 + brightBlack: 17.2 + brightRed: 31.9 + brightGreen: 63.6 + brightYellow: 76.5 + brightBlue: 54.4 + brightMagenta: 102 + brightCyan: 50.7 + brightWhite: 102 diff --git a/themes/gitlab-dark-grey.yaml b/themes/gitlab-dark-grey.yaml new file mode 100644 index 00000000..faecb4eb --- /dev/null +++ b/themes/gitlab-dark-grey.yaml @@ -0,0 +1,49 @@ +name: "GitLab Dark Grey" +source: + marketplace_id: "AlbertoRestifo.gitlab-webide-theme" + version: "1.0.1" + installs: 5706 + author: "Alberto Restifo" + repo: "https://github.com/albertorestifo/gitlab-webide-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" +colors: + bg: "#222222" + fg: "#FFFFFF" + black: "#000000" + red: "#F57F6C" + green: "#52B87A" + yellow: "#D99530" + blue: "#7FB6ED" + magenta: "#F88AAF" + cyan: "#32C5D2" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FCB5AA" + brightGreen: "#91D4A8" + brightYellow: "#E9BE74" + brightBlue: "#498DD1" + brightMagenta: "#FCACC5" + brightCyan: "#5EDEE3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 105.5 + black: 0 + red: 49.5 + green: 51.2 + yellow: 50.1 + blue: 57.9 + magenta: 55.2 + cyan: 59.5 + white: 105.5 + brightBlack: 20.6 + brightRed: 70 + brightGreen: 69.3 + brightYellow: 68.8 + brightBlue: 37 + brightMagenta: 67.8 + brightCyan: 73.4 + brightWhite: 105.5 diff --git a/themes/gitlab-dark.yaml b/themes/gitlab-dark.yaml new file mode 100644 index 00000000..27d3dd58 --- /dev/null +++ b/themes/gitlab-dark.yaml @@ -0,0 +1,49 @@ +name: "GitLab Dark" +source: + marketplace_id: "AlbertoRestifo.gitlab-webide-theme" + version: "1.0.1" + installs: 5706 + author: "Alberto Restifo" + repo: "https://github.com/albertorestifo/gitlab-webide-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" +colors: + bg: "#28262B" + fg: "#FFFFFF" + black: "#000000" + red: "#F57F6C" + green: "#52B87A" + yellow: "#D99530" + blue: "#7FB6ED" + magenta: "#F88AAF" + cyan: "#32C5D2" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FCB5AA" + brightGreen: "#91D4A8" + brightYellow: "#E9BE74" + brightBlue: "#498DD1" + brightMagenta: "#FCACC5" + brightCyan: "#5EDEE3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.6 + black: 0 + red: 48.7 + green: 50.4 + yellow: 49.3 + blue: 57.1 + magenta: 54.4 + cyan: 58.6 + white: 104.6 + brightBlack: 19.8 + brightRed: 69.2 + brightGreen: 68.5 + brightYellow: 68 + brightBlue: 36.2 + brightMagenta: 67 + brightCyan: 72.6 + brightWhite: 104.6 diff --git a/themes/gitlab-light.yaml b/themes/gitlab-light.yaml new file mode 100644 index 00000000..ccf5780d --- /dev/null +++ b/themes/gitlab-light.yaml @@ -0,0 +1,49 @@ +name: "GitLab Light" +source: + marketplace_id: "AlbertoRestifo.gitlab-webide-theme" + version: "1.0.1" + installs: 5706 + author: "Alberto Restifo" + repo: "https://github.com/albertorestifo/gitlab-webide-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" +colors: + bg: "#FAFAFF" + fg: "#303030" + black: "#303030" + red: "#A31700" + green: "#0A7F3D" + yellow: "#AF551D" + blue: "#006CD8" + magenta: "#583CAC" + cyan: "#00798A" + white: "#303030" + brightBlack: "#303030" + brightRed: "#A31700" + brightGreen: "#0A7F3D" + brightYellow: "#AF551D" + brightBlue: "#006CD8" + brightMagenta: "#583CAC" + brightCyan: "#00798A" + brightWhite: "#303030" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 96.8 + black: 96.8 + red: 82.5 + green: 71.9 + yellow: 71.7 + blue: 71.4 + magenta: 84.1 + cyan: 72 + white: 96.8 + brightBlack: 96.8 + brightRed: 82.5 + brightGreen: 71.9 + brightYellow: 71.7 + brightBlue: 71.4 + brightMagenta: 84.1 + brightCyan: 72 + brightWhite: 96.8 diff --git a/themes/gitlab.yaml b/themes/gitlab.yaml new file mode 100644 index 00000000..7cdfb523 --- /dev/null +++ b/themes/gitlab.yaml @@ -0,0 +1,49 @@ +name: "GitLab" +source: + marketplace_id: "RedstoneWizard08.gitlab" + version: "0.2.0" + installs: 37853 + author: "RedstoneWizard08" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RedstoneWizard08.gitlab" +colors: + bg: "#1F1F1F" + fg: "#DBDBDB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 82.8 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/giyu-tomioka.yaml b/themes/giyu-tomioka.yaml new file mode 100644 index 00000000..7a641f58 --- /dev/null +++ b/themes/giyu-tomioka.yaml @@ -0,0 +1,49 @@ +name: "Giyu Tomioka" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 738 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" +colors: + bg: "#131A26" + fg: "#ABB2BF" + black: "#212121" + red: "#FF5252" + green: "#8BC34A" + yellow: "#FFCA28" + blue: "#00BCD4" + magenta: "#AA00FF" + cyan: "#00E5FF" + white: "#E0E0E0" + brightBlack: "#616161" + brightRed: "#FF8A80" + brightGreen: "#C6FF00" + brightYellow: "#FFE082" + brightBlue: "#80D8FF" + brightMagenta: "#EA80FC" + brightCyan: "#84FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 261 + contrast: + fg: 59.1 + black: 0 + red: 42.5 + green: 60 + yellow: 77.5 + blue: 56.2 + magenta: 28.1 + cyan: 77.7 + white: 86.6 + brightBlack: 19.6 + brightRed: 56.2 + brightGreen: 94.2 + brightYellow: 88 + brightBlue: 75 + brightMagenta: 55.1 + brightCyan: 94.2 + brightWhite: 106.6 diff --git a/themes/giza.yaml b/themes/giza.yaml new file mode 100644 index 00000000..2adf412d --- /dev/null +++ b/themes/giza.yaml @@ -0,0 +1,49 @@ +name: "Giza" +source: + marketplace_id: "svygzhryr.inei" + version: "0.0.3" + installs: 53 + author: "Pavel Mihailov" + repo: "https://github.com/Svygzhryr/Inei" + url: "https://marketplace.visualstudio.com/items?itemName=svygzhryr.inei" +colors: + bg: "#0E0D12" + fg: "#D0CAE3" + black: "#1A1821" + red: "#F04279" + green: "#957BF5" + yellow: "#B6A5F1" + blue: "#957BF5" + magenta: "#8775C7" + cyan: "#C0B3E7" + white: "#D0CAE3" + brightBlack: "#36304B" + brightRed: "#EF004C" + brightGreen: "#8160F8" + brightYellow: "#D27D68" + brightBlue: "#D0CAE3" + brightMagenta: "#E52B91" + brightCyan: "#957BF5" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: 294 + contrast: + fg: 76.1 + black: 0 + red: 38.6 + green: 41.7 + yellow: 59.1 + blue: 41.7 + magenta: 35.1 + cyan: 65 + white: 76.1 + brightBlack: 0 + brightRed: 33.8 + brightGreen: 32.6 + brightYellow: 44.3 + brightBlue: 76.1 + brightMagenta: 34.7 + brightCyan: 41.7 + brightWhite: 104.3 diff --git a/themes/glance-contrast.yaml b/themes/glance-contrast.yaml new file mode 100644 index 00000000..8f0a3d2b --- /dev/null +++ b/themes/glance-contrast.yaml @@ -0,0 +1,49 @@ +name: "glance-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#111219" + fg: "#FFFFFF" + black: "#1B1D28" + red: "#BA0E2E" + green: "#EF8354" + yellow: "#6E81A0" + blue: "#FFFFFF" + magenta: "#EF8354" + cyan: "#6E81A0" + white: "#FFFFFF" + brightBlack: "#3A3E56" + brightRed: "#F03E5F" + brightGreen: "#F8C7B1" + brightYellow: "#ACB7C8" + brightBlue: "#FFFFFF" + brightMagenta: "#F8C7B1" + brightCyan: "#ACB7C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 107.3 + black: 0 + red: 20.9 + green: 50.8 + yellow: 34.1 + blue: 107.3 + magenta: 50.8 + cyan: 34.1 + white: 107.3 + brightBlack: 7.6 + brightRed: 37.2 + brightGreen: 78.3 + brightYellow: 62.3 + brightBlue: 107.3 + brightMagenta: 78.3 + brightCyan: 62.3 + brightWhite: 107.3 diff --git a/themes/glance-light.yaml b/themes/glance-light.yaml new file mode 100644 index 00000000..06ff4e25 --- /dev/null +++ b/themes/glance-light.yaml @@ -0,0 +1,49 @@ +name: "glance-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#2D3142" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#EF8354" + yellow: "#6E81A0" + blue: "#2D3142" + magenta: "#EF8354" + cyan: "#6E81A0" + white: "#373C51" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F8C7B1" + brightYellow: "#ACB7C8" + brightBlue: "#565E7F" + brightMagenta: "#F8C7B1" + brightCyan: "#ACB7C8" + brightWhite: "#565E7F" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.1 + black: 0 + red: 80.3 + green: 50.5 + yellow: 66.9 + blue: 99.1 + magenta: 50.5 + cyan: 66.9 + white: 95.2 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 24.2 + brightYellow: 39.4 + brightBlue: 81.6 + brightMagenta: 24.2 + brightCyan: 39.4 + brightWhite: 81.6 diff --git a/themes/glance.yaml b/themes/glance.yaml new file mode 100644 index 00000000..6a2f0c41 --- /dev/null +++ b/themes/glance.yaml @@ -0,0 +1,49 @@ +name: "glance" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2D3142" + fg: "#FFFFFF" + black: "#373C51" + red: "#BA0E2E" + green: "#EF8354" + yellow: "#6E81A0" + blue: "#FFFFFF" + magenta: "#EF8354" + cyan: "#6E81A0" + white: "#FFFFFF" + brightBlack: "#565E7F" + brightRed: "#F03E5F" + brightGreen: "#F8C7B1" + brightYellow: "#ACB7C8" + brightBlue: "#FFFFFF" + brightMagenta: "#F8C7B1" + brightCyan: "#ACB7C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 102.3 + black: 0 + red: 16 + green: 45.9 + yellow: 29.2 + blue: 102.3 + magenta: 45.9 + cyan: 29.2 + white: 102.3 + brightBlack: 14.7 + brightRed: 32.3 + brightGreen: 73.4 + brightYellow: 57.4 + brightBlue: 102.3 + brightMagenta: 73.4 + brightCyan: 57.4 + brightWhite: 102.3 diff --git a/themes/gleam-theme-minimal-dark.yaml b/themes/gleam-theme-minimal-dark.yaml new file mode 100644 index 00000000..32292572 --- /dev/null +++ b/themes/gleam-theme-minimal-dark.yaml @@ -0,0 +1,49 @@ +name: "gleam-theme-minimal-dark" +source: + marketplace_id: "nicklasxyz.gleam-themes" + version: "0.0.3" + installs: 3219 + author: "nicklasxyz" + repo: "https://github.com/NicklasXYZ/vscode-gleam-themes" + url: "https://marketplace.visualstudio.com/items?itemName=nicklasxyz.gleam-themes" +colors: + bg: "#0F0F0F" + fg: "#DCDCDC" + black: "#9F9F9F" + red: "#FFD08F" + green: "#FFAFF3" + yellow: "#FFFA9F" + blue: "#DCDCDC" + magenta: "#9F9F9F" + cyan: "#6BCCCC" + white: "#DCDCDC" + brightBlack: "#9F9F9F" + brightRed: "#FFD08F" + brightGreen: "#FFAFF3" + brightYellow: "#FFFA9F" + brightBlue: "#DCDCDC" + brightMagenta: "#9F9F9F" + brightCyan: "#6BCCCC" + brightWhite: "#DCDCDC" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 85 + black: 50 + red: 82.4 + green: 73.7 + yellow: 101.6 + blue: 85 + magenta: 50 + cyan: 66.5 + white: 85 + brightBlack: 50 + brightRed: 82.4 + brightGreen: 73.7 + brightYellow: 101.6 + brightBlue: 85 + brightMagenta: 50 + brightCyan: 66.5 + brightWhite: 85 diff --git a/themes/glitchly-green.yaml b/themes/glitchly-green.yaml new file mode 100644 index 00000000..34ff2c1a --- /dev/null +++ b/themes/glitchly-green.yaml @@ -0,0 +1,49 @@ +name: "Glitchly Green" +source: + marketplace_id: "FossFreaks.weird-theme" + version: "1.0.2" + installs: 514 + author: "FossFreaks" + repo: "https://github.com/fossfreaks/Weird-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=FossFreaks.weird-theme" +colors: + bg: "#18181B" + fg: "#90A4AE" + black: "#000000" + red: "#B83360" + green: "#21A771" + yellow: "#9E9D24" + blue: "#2472C8" + magenta: "#AA76D5" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#EC407A" + brightGreen: "#23D18B" + brightYellow: "#C7C531" + brightBlue: "#3B8EEA" + brightMagenta: "#C682FF" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 50.2 + black: 0 + red: 23.2 + green: 43.5 + yellow: 45.8 + blue: 27.3 + magenta: 39.8 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 36.7 + brightGreen: 63.4 + brightYellow: 67.3 + brightBlue: 39.9 + brightMagenta: 50.1 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/gloam.yaml b/themes/gloam.yaml new file mode 100644 index 00000000..b9095e76 --- /dev/null +++ b/themes/gloam.yaml @@ -0,0 +1,49 @@ +name: "Gloam" +source: + marketplace_id: "exthitblast.gloam" + version: "1.2.2" + installs: 285 + author: "hitblast_" + repo: "https://github.com/hitblast/Gloam" + url: "https://marketplace.visualstudio.com/items?itemName=exthitblast.gloam" +colors: + bg: "#0E0E0E" + fg: "#FFFDF2" + black: "#0E0E0E" + red: "#FFA0A0" + green: "#C0DC99" + yellow: "#FFDA97" + blue: "#B2CCD6" + magenta: "#E3D3F1" + cyan: "#B0E2FF" + white: "#FFFDF2" + brightBlack: "#0E0E0E" + brightRed: "#FFC2CC" + brightGreen: "#D7F7A9" + brightYellow: "#FFDA97" + brightBlue: "#CBE8F3" + brightMagenta: "#D8BAF4" + brightCyan: "#C5EAFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 106 + black: 0 + red: 64.9 + green: 79.2 + yellow: 86.9 + blue: 72.8 + magenta: 83.1 + cyan: 84.5 + white: 106 + brightBlack: 0 + brightRed: 78.8 + brightGreen: 95.2 + brightYellow: 86.9 + brightBlue: 89.5 + brightMagenta: 71.6 + brightCyan: 90.4 + brightWhite: 107.6 diff --git a/themes/globe.yaml b/themes/globe.yaml new file mode 100644 index 00000000..29163654 --- /dev/null +++ b/themes/globe.yaml @@ -0,0 +1,49 @@ +name: "Globe" +source: + marketplace_id: "GlobeTheme.globe-theme" + version: "0.0.2" + installs: 368 + author: "Aritro Sana" + repo: "https://github.com/AritrSana/globe-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GlobeTheme.globe-theme" +colors: + bg: "#303030" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CBCBCB" + brightBlack: "#808080" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 102.8 + black: 0 + red: 22.6 + green: 48.9 + yellow: 81.5 + blue: 23.3 + magenta: 25.6 + cyan: 43.4 + white: 70 + brightBlack: 29.6 + brightRed: 34.4 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.9 + brightMagenta: 41.3 + brightCyan: 51.3 + brightWhite: 102.8 diff --git a/themes/gloom-contrast.yaml b/themes/gloom-contrast.yaml new file mode 100644 index 00000000..9775027e --- /dev/null +++ b/themes/gloom-contrast.yaml @@ -0,0 +1,49 @@ +name: "gloom-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0F120F" + fg: "#D8EBE5" + black: "#1B201B" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#BCD42A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#E9F4F0" + brightBlack: "#3D4A3D" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D7E67E" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.6 + black: 0 + red: 21 + green: 45.5 + yellow: 44.9 + blue: 73.1 + magenta: 45.5 + cyan: 44.9 + white: 98.5 + brightBlack: 10.2 + brightRed: 37.3 + brightGreen: 72.2 + brightYellow: 70.2 + brightBlue: 85.8 + brightMagenta: 72.2 + brightCyan: 70.2 + brightWhite: 107.4 diff --git a/themes/gloom-light.yaml b/themes/gloom-light.yaml new file mode 100644 index 00000000..5641ef09 --- /dev/null +++ b/themes/gloom-light.yaml @@ -0,0 +1,49 @@ +name: "gloom-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#D8EBE5" + fg: "#2A332B" + black: "#E9F4F0" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#98AD0D" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#364137" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D6EF31" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#586B5A" +meta: + mode: "light" + accent: "orange" + hue: 175 + contrast: + fg: 85 + black: 0 + red: 66 + green: 41.4 + yellow: 42 + blue: 35 + magenta: 41.4 + cyan: 42 + white: 80.4 + brightBlack: 13.8 + brightRed: 49.5 + brightGreen: 15.7 + brightYellow: 17.6 + brightBlue: 0 + brightMagenta: 15.7 + brightCyan: 17.6 + brightWhite: 64.3 diff --git a/themes/gloom.yaml b/themes/gloom.yaml new file mode 100644 index 00000000..02c20bf9 --- /dev/null +++ b/themes/gloom.yaml @@ -0,0 +1,49 @@ +name: "gloom" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2A332B" + fg: "#D8EBE5" + black: "#364137" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#BCD42A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#E9F4F0" + brightBlack: "#586B5A" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D7E67E" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 148 + contrast: + fg: 86.8 + black: 0 + red: 16.2 + green: 40.7 + yellow: 40.2 + blue: 68.4 + magenta: 40.7 + cyan: 40.2 + white: 93.7 + brightBlack: 17.8 + brightRed: 32.5 + brightGreen: 67.4 + brightYellow: 65.4 + brightBlue: 81 + brightMagenta: 67.4 + brightCyan: 65.4 + brightWhite: 102.6 diff --git a/themes/glowfish-contrast.yaml b/themes/glowfish-contrast.yaml new file mode 100644 index 00000000..e0d3af69 --- /dev/null +++ b/themes/glowfish-contrast.yaml @@ -0,0 +1,49 @@ +name: "glowfish-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#090B07" + fg: "#6EA240" + black: "#161B11" + red: "#BA0E2E" + green: "#95CC5E" + yellow: "#DB784D" + blue: "#60A365" + magenta: "#D65940" + cyan: "#95CC5E" + white: "#7AB447" + brightBlack: "#3C492F" + brightRed: "#F03E5F" + brightGreen: "#C8E5AB" + brightYellow: "#ECB8A2" + brightBlue: "#A1C8A4" + brightMagenta: "#E8A294" + brightCyan: "#C8E5AB" + brightWhite: "#A2CB7D" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 44.5 + black: 0 + red: 21.3 + green: 66.4 + yellow: 44.2 + blue: 44.6 + magenta: 35.7 + cyan: 66.4 + white: 53.1 + brightBlack: 10 + brightRed: 37.6 + brightGreen: 85 + brightYellow: 70.4 + brightBlue: 67.4 + brightMagenta: 61.3 + brightCyan: 85 + brightWhite: 67.7 diff --git a/themes/glowfish-light.yaml b/themes/glowfish-light.yaml new file mode 100644 index 00000000..80747f3f --- /dev/null +++ b/themes/glowfish-light.yaml @@ -0,0 +1,49 @@ +name: "glowfish-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#E3EADC" + fg: "#191F13" + black: "#F0F4EC" + red: "#BA0E2E" + green: "#95CC5E" + yellow: "#DB784D" + blue: "#60A365" + magenta: "#D65940" + cyan: "#95CC5E" + white: "#262F1D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C8E5AB" + brightYellow: "#ECB8A2" + brightBlue: "#A1C8A4" + brightMagenta: "#E8A294" + brightCyan: "#C8E5AB" + brightWhite: "#4C5E3A" +meta: + mode: "light" + accent: "orange" + hue: 129 + contrast: + fg: 89.9 + black: 0 + red: 66.5 + green: 22.1 + yellow: 43.5 + blue: 43.1 + magenta: 52 + cyan: 22.1 + white: 86.7 + brightBlack: 13.2 + brightRed: 50 + brightGreen: 0 + brightYellow: 18.3 + brightBlue: 21.1 + brightMagenta: 27 + brightCyan: 0 + brightWhite: 70.6 diff --git a/themes/glowfish.yaml b/themes/glowfish.yaml new file mode 100644 index 00000000..671877f5 --- /dev/null +++ b/themes/glowfish.yaml @@ -0,0 +1,49 @@ +name: "glowfish" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#191F13" + fg: "#6EA240" + black: "#262F1D" + red: "#BA0E2E" + green: "#95CC5E" + yellow: "#DB784D" + blue: "#60A365" + magenta: "#D65940" + cyan: "#95CC5E" + white: "#7AB447" + brightBlack: "#4C5E3A" + brightRed: "#F03E5F" + brightGreen: "#C8E5AB" + brightYellow: "#ECB8A2" + brightBlue: "#A1C8A4" + brightMagenta: "#E8A294" + brightCyan: "#C8E5AB" + brightWhite: "#A2CB7D" +meta: + mode: "dark" + accent: "orange" + hue: 130 + contrast: + fg: 43 + black: 0 + red: 19.8 + green: 64.8 + yellow: 42.6 + blue: 43.1 + magenta: 34.1 + cyan: 64.8 + white: 51.6 + brightBlack: 15.8 + brightRed: 36.1 + brightGreen: 83.4 + brightYellow: 68.9 + brightBlue: 65.8 + brightMagenta: 59.7 + brightCyan: 83.4 + brightWhite: 66.2 diff --git a/themes/glowing-sun.yaml b/themes/glowing-sun.yaml new file mode 100644 index 00000000..145aad4b --- /dev/null +++ b/themes/glowing-sun.yaml @@ -0,0 +1,49 @@ +name: "Glowing Sun" +source: + marketplace_id: "ProGamer.pro-ggamer" + version: "0.0.7" + installs: 670 + author: "Pro Gamer" + repo: "https://github.com/Pro-The-Dev-Op/Pro-s-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ProGamer.pro-ggamer" +colors: + bg: "#000000" + fg: "#FF0000" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 37.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/glowing-yellow.yaml b/themes/glowing-yellow.yaml new file mode 100644 index 00000000..b4b4e85b --- /dev/null +++ b/themes/glowing-yellow.yaml @@ -0,0 +1,49 @@ +name: "Glowing Yellow" +source: + marketplace_id: "JFeser.darkercolor" + version: "2.1.0" + installs: 13 + author: "J. Feser" + repo: "https://github.com/redo7370/darkercolors" + url: "https://marketplace.visualstudio.com/items?itemName=JFeser.darkercolor" +colors: + bg: "#0A0A05" + fg: "#F2F2F2" + black: "#0D0D06" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFCC00" + blue: "#00CCCC" + magenta: "#CC00CC" + cyan: "#00CCCC" + white: "#F2F2F2" + brightBlack: "#111108" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#CCCC00" + brightBlue: "#00FFFF" + brightMagenta: "#FF33FF" + brightCyan: "#00FFFF" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "pink" + hue: 108 + contrast: + fg: 99.2 + black: 0 + red: 37.4 + green: 86.4 + yellow: 79.5 + blue: 64.3 + magenta: 31.3 + cyan: 64.3 + white: 99.2 + brightBlack: 0 + brightRed: 47.8 + brightGreen: 88.9 + brightYellow: 71.8 + brightBlue: 92 + brightMagenta: 47.8 + brightCyan: 92 + brightWhite: 99.2 diff --git a/themes/glowminerals.yaml b/themes/glowminerals.yaml new file mode 100644 index 00000000..0c89eb1d --- /dev/null +++ b/themes/glowminerals.yaml @@ -0,0 +1,49 @@ +name: "GlowMinerals" +source: + marketplace_id: "fefafe.glowminerals" + version: "0.4.5" + installs: 459 + author: "Felix Faber" + repo: "https://github.com/fefafe/glowminerals-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=fefafe.glowminerals" +colors: + bg: "#0B0F14" + fg: "#D8D6DC" + black: "#1F262F" + red: "#C22748" + green: "#87AF1F" + yellow: "#FFC131" + blue: "#27BBEC" + magenta: "#E238AC" + cyan: "#BEBEC9" + white: "#D8D6DC" + brightBlack: "#292A2E" + brightRed: "#C22748" + brightGreen: "#87AF1F" + brightYellow: "#FFC131" + brightBlue: "#27BBEC" + brightMagenta: "#E238AC" + brightCyan: "#44BB93" + brightWhite: "#D8D6DC" +meta: + mode: "dark" + accent: "pink" + hue: 254 + contrast: + fg: 81.9 + black: 0 + red: 24.4 + green: 51.5 + yellow: 74.9 + blue: 58.3 + magenta: 36.3 + cyan: 67.6 + white: 81.9 + brightBlack: 0 + brightRed: 24.4 + brightGreen: 51.5 + brightYellow: 74.9 + brightBlue: 58.3 + brightMagenta: 36.3 + brightCyan: 54.8 + brightWhite: 81.9 diff --git a/themes/glu-dark-lighter.yaml b/themes/glu-dark-lighter.yaml new file mode 100644 index 00000000..a36ea582 --- /dev/null +++ b/themes/glu-dark-lighter.yaml @@ -0,0 +1,49 @@ +name: "Glu Dark Lighter" +source: + marketplace_id: "gabilungu.glu-dark-theme" + version: "0.0.1" + installs: 104 + author: "Gabriel Lungu" + repo: "https://gabilungu@dev.azure.com/gabilungu/Glu%20dark%20theme/_git/Glu%20dark%20theme" + url: "https://marketplace.visualstudio.com/items?itemName=gabilungu.glu-dark-theme" +colors: + bg: "#2D2B34" + fg: "#D9CECC" + black: "#37343C" + red: "#FF83A2" + green: "#7FDEC5" + yellow: "#FFD863" + blue: "#F89B84" + magenta: "#A888CE" + cyan: "#5EC7D5" + white: "#D9CECC" + brightBlack: "#7A707B" + brightRed: "#FF83A2" + brightGreen: "#7FDEC5" + brightYellow: "#FFD863" + brightBlue: "#F89B84" + brightMagenta: "#A888CE" + brightCyan: "#5EC7D5" + brightWhite: "#D9CECC" +meta: + mode: "dark" + accent: "red" + hue: 296 + contrast: + fg: 74 + black: 0 + red: 52.3 + green: 71.9 + yellow: 81 + blue: 57.2 + magenta: 41.3 + cyan: 60.1 + white: 74 + brightBlack: 24.5 + brightRed: 52.3 + brightGreen: 71.9 + brightYellow: 81 + brightBlue: 57.2 + brightMagenta: 41.3 + brightCyan: 60.1 + brightWhite: 74 diff --git a/themes/glu-dark.yaml b/themes/glu-dark.yaml new file mode 100644 index 00000000..09f04e1f --- /dev/null +++ b/themes/glu-dark.yaml @@ -0,0 +1,49 @@ +name: "Glu Dark" +source: + marketplace_id: "gabilungu.glu-dark-theme" + version: "0.0.1" + installs: 104 + author: "Gabriel Lungu" + repo: "https://gabilungu@dev.azure.com/gabilungu/Glu%20dark%20theme/_git/Glu%20dark%20theme" + url: "https://marketplace.visualstudio.com/items?itemName=gabilungu.glu-dark-theme" +colors: + bg: "#26242B" + fg: "#D9CECC" + black: "#37343C" + red: "#FF83A2" + green: "#7FDEC5" + yellow: "#FFD863" + blue: "#F89B84" + magenta: "#A888CE" + cyan: "#5EC7D5" + white: "#D9CECC" + brightBlack: "#6D646E" + brightRed: "#FF83A2" + brightGreen: "#7FDEC5" + brightYellow: "#FFD863" + brightBlue: "#F89B84" + brightMagenta: "#A888CE" + brightCyan: "#5EC7D5" + brightWhite: "#D9CECC" +meta: + mode: "dark" + accent: "red" + hue: 299 + contrast: + fg: 75.3 + black: 0 + red: 53.7 + green: 73.3 + yellow: 82.4 + blue: 58.6 + magenta: 42.7 + cyan: 61.5 + white: 75.3 + brightBlack: 20.4 + brightRed: 53.7 + brightGreen: 73.3 + brightYellow: 82.4 + brightBlue: 58.6 + brightMagenta: 42.7 + brightCyan: 61.5 + brightWhite: 75.3 diff --git a/themes/glv-s-theme.yaml b/themes/glv-s-theme.yaml new file mode 100644 index 00000000..1f023f19 --- /dev/null +++ b/themes/glv-s-theme.yaml @@ -0,0 +1,49 @@ +name: "glv's theme" +source: + marketplace_id: "rodrigomessias.glv-dark" + version: "1.0.0" + installs: 202 + author: "Rodrigo Messias" + repo: "https://github.com/rodrigomessias/glv-vscode-dark" + url: "https://marketplace.visualstudio.com/items?itemName=rodrigomessias.glv-dark" +colors: + bg: "#1D1F21" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.9 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.4 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/gms2.yaml b/themes/gms2.yaml new file mode 100644 index 00000000..0ab8fdff --- /dev/null +++ b/themes/gms2.yaml @@ -0,0 +1,49 @@ +name: "GMS2" +source: + marketplace_id: "347Online.gms2-theme" + version: "0.0.1" + installs: 356 + author: "347Online" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=347Online.gms2-theme" +colors: + bg: "#1E1E1E" + fg: "#C0C0C0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 66.8 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/gnome-base16.yaml b/themes/gnome-base16.yaml new file mode 100644 index 00000000..8eea365c --- /dev/null +++ b/themes/gnome-base16.yaml @@ -0,0 +1,49 @@ +name: "Gnome Base16" +source: + marketplace_id: "kesmarag.adwaita-base16" + version: "0.0.2" + installs: 7555 + author: "Costas Smaragdakis" + repo: "https://github.com/kesmarag/adwaita-base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kesmarag.adwaita-base16" +colors: + bg: "#1D1F21" + fg: "#C5C8C6" + black: "#000000" + red: "#CC6666" + green: "#B5BD68" + yellow: "#F0C674" + blue: "#81A2BE" + magenta: "#B294BB" + cyan: "#8ABEB7" + white: "#FFFFFF" + brightBlack: "#1D1F21" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#F0C674" + brightBlue: "#81A2BE" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 70.9 + black: 0 + red: 35.5 + green: 61.5 + yellow: 73.7 + blue: 47.9 + magenta: 47.9 + cyan: 59.9 + white: 105.9 + brightBlack: 0 + brightRed: 35.5 + brightGreen: 61.5 + brightYellow: 73.7 + brightBlue: 47.9 + brightMagenta: 47.9 + brightCyan: 59.9 + brightWhite: 105.9 diff --git a/themes/go-playground.yaml b/themes/go-playground.yaml new file mode 100644 index 00000000..8914f173 --- /dev/null +++ b/themes/go-playground.yaml @@ -0,0 +1,49 @@ +name: "Go - Playground" +source: + marketplace_id: "aaqaIshtyaq.themes-go-acme" + version: "0.0.5" + installs: 2247 + author: "Aaqa Ishtyaq" + repo: "https://github.com/aaqaishtyaq/themes-go-acme" + url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.themes-go-acme" +colors: + bg: "#FFFFDD" + fg: "#000000" + black: "#000000" + red: "#000000" + green: "#000000" + yellow: "#000000" + blue: "#000000" + magenta: "#000000" + cyan: "#000000" + white: "#000000" + brightBlack: "#D4D4C6" + brightRed: "#000000" + brightGreen: "#000000" + brightYellow: "#000000" + brightBlue: "#000000" + brightMagenta: "#000000" + brightCyan: "#000000" + brightWhite: "#000000" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 104.7 + black: 104.7 + red: 104.7 + green: 104.7 + yellow: 104.7 + blue: 104.7 + magenta: 104.7 + cyan: 104.7 + white: 104.7 + brightBlack: 22 + brightRed: 104.7 + brightGreen: 104.7 + brightYellow: 104.7 + brightBlue: 104.7 + brightMagenta: 104.7 + brightCyan: 104.7 + brightWhite: 104.7 diff --git a/themes/go-source.yaml b/themes/go-source.yaml new file mode 100644 index 00000000..e7a3a2bd --- /dev/null +++ b/themes/go-source.yaml @@ -0,0 +1,49 @@ +name: "Go - Source" +source: + marketplace_id: "aaqaIshtyaq.themes-go-acme" + version: "0.0.5" + installs: 2247 + author: "Aaqa Ishtyaq" + repo: "https://github.com/aaqaishtyaq/themes-go-acme" + url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.themes-go-acme" +colors: + bg: "#EFEFEF" + fg: "#000000" + black: "#000000" + red: "#000000" + green: "#000000" + yellow: "#000000" + blue: "#000000" + magenta: "#000000" + cyan: "#000000" + white: "#000000" + brightBlack: "#D4D4C6" + brightRed: "#000000" + brightGreen: "#000000" + brightYellow: "#000000" + brightBlue: "#000000" + brightMagenta: "#000000" + brightCyan: "#000000" + brightWhite: "#000000" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 96.5 + black: 96.5 + red: 96.5 + green: 96.5 + yellow: 96.5 + blue: 96.5 + magenta: 96.5 + cyan: 96.5 + white: 96.5 + brightBlack: 13.8 + brightRed: 96.5 + brightGreen: 96.5 + brightYellow: 96.5 + brightBlue: 96.5 + brightMagenta: 96.5 + brightCyan: 96.5 + brightWhite: 96.5 diff --git a/themes/goa-beach-paradise.yaml b/themes/goa-beach-paradise.yaml new file mode 100644 index 00000000..d7dd76af --- /dev/null +++ b/themes/goa-beach-paradise.yaml @@ -0,0 +1,49 @@ +name: "Goa - Beach Paradise" +source: + marketplace_id: "ProudIndian.colors-of-india-themes" + version: "1.0.1" + installs: 37 + author: "Sachin Ghadi" + repo: "https://github.com/GhadiSachin/colors-of-india-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" +colors: + bg: "#16181A" + fg: "#E8F5F0" + black: "#000000" + red: "#E74856" + green: "#FF6347" + yellow: "#F4A460" + blue: "#3B8EEA" + magenta: "#B140AA" + cyan: "#29B8DB" + white: "#E5E5E5" + brightBlack: "#000000" + brightRed: "#E74856" + brightGreen: "#FF6347" + brightYellow: "#F4A460" + brightBlue: "#3B8EEA" + brightMagenta: "#B140AA" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 98.2 + black: 0 + red: 35.8 + green: 45.7 + yellow: 61.9 + blue: 39.9 + magenta: 26.7 + cyan: 55.3 + white: 89.9 + brightBlack: 0 + brightRed: 35.8 + brightGreen: 45.7 + brightYellow: 61.9 + brightBlue: 39.9 + brightMagenta: 26.7 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/god-theme.yaml b/themes/god-theme.yaml new file mode 100644 index 00000000..7e8cfd94 --- /dev/null +++ b/themes/god-theme.yaml @@ -0,0 +1,49 @@ +name: "GOD Theme" +source: + marketplace_id: "sarang56625.god-theme" + version: "0.0.1" + installs: 506 + author: "sarang parre" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sarang56625.god-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D7D7D7" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 82.3 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/godot-4.yaml b/themes/godot-4.yaml new file mode 100644 index 00000000..160054bf --- /dev/null +++ b/themes/godot-4.yaml @@ -0,0 +1,49 @@ +name: "Godot 4" +source: + marketplace_id: "mariodebono.godot-4-vscode-theme" + version: "1.0.2" + installs: 905 + author: "Mario Debono" + repo: "https://github.com/mariodebono/godot-4-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mariodebono.godot-4-vscode-theme" +colors: + bg: "#1D2229" + fg: "#CDCFD2" + black: "#373D49" + red: "#EE7987" + green: "#66E5FF" + yellow: "#F9ECA8" + blue: "#B7FDE2" + magenta: "#EE7987" + cyan: "#82FBC6" + white: "#E0E0E0" + brightBlack: "#76787D" + brightRed: "#EE7987" + brightGreen: "#82FBC6" + brightYellow: "#F9ECA8" + brightBlue: "#B1C8FA" + brightMagenta: "#EE7987" + brightCyan: "#66E5FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 257 + contrast: + fg: 75 + black: 0 + red: 47.3 + green: 78.6 + yellow: 92.4 + blue: 94.7 + magenta: 47.3 + cyan: 88.5 + white: 85.5 + brightBlack: 28.6 + brightRed: 47.3 + brightGreen: 88.5 + brightYellow: 92.4 + brightBlue: 70.8 + brightMagenta: 47.3 + brightCyan: 78.6 + brightWhite: 105.5 diff --git a/themes/gojo-infinity-dark.yaml b/themes/gojo-infinity-dark.yaml new file mode 100644 index 00000000..74b5b4cb --- /dev/null +++ b/themes/gojo-infinity-dark.yaml @@ -0,0 +1,49 @@ +name: "Gojo Infinity Dark" +source: + marketplace_id: "Shams.anime-theme-collection" + version: "2.0.0" + installs: 388 + author: "Shams" + repo: "https://github.com/shams909/AnimeThemeCollection" + url: "https://marketplace.visualstudio.com/items?itemName=Shams.anime-theme-collection" +colors: + bg: "#15161D" + fg: "#CBD5E1" + black: "#181922" + red: "#F87171" + green: "#059669" + yellow: "#F59E0B" + blue: "#60A5FA" + magenta: "#9333EA" + cyan: "#0891B2" + white: "#CBD5E1" + brightBlack: "#4B5563" + brightRed: "#F87171" + brightGreen: "#059669" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#06B6D4" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "magenta" + hue: 279 + contrast: + fg: 79.4 + black: 0 + red: 48.1 + green: 36.1 + yellow: 59.5 + blue: 51.4 + magenta: 25.2 + cyan: 36.9 + white: 79.4 + brightBlack: 14.8 + brightRed: 48.1 + brightGreen: 36.1 + brightYellow: 72.8 + brightBlue: 51.4 + brightMagenta: 49.7 + brightCyan: 53.9 + brightWhite: 91.5 diff --git a/themes/goku-code-dragon-ball-z-power-eye-safe.yaml b/themes/goku-code-dragon-ball-z-power-eye-safe.yaml new file mode 100644 index 00000000..c157ec17 --- /dev/null +++ b/themes/goku-code-dragon-ball-z-power-eye-safe.yaml @@ -0,0 +1,49 @@ +name: "Goku Code - Dragon Ball Z Power (Eye-Safe)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#0F0E1A" + fg: "#E8D5B7" + black: "#0F0E1A" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#4FC3F7" + magenta: "#9C27B0" + cyan: "#00BCD4" + white: "#E8D5B7" + brightBlack: "#6B5B73" + brightRed: "#FF5722" + brightGreen: "#8BC34A" + brightYellow: "#FFC107" + brightBlue: "#03A9F4" + brightMagenta: "#E91E63" + brightCyan: "#26C6DA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 287 + contrast: + fg: 82.1 + black: 0 + red: 38.3 + green: 48.2 + yellow: 93 + blue: 63.5 + magenta: 21.3 + cyan: 57.1 + white: 82.1 + brightBlack: 20.4 + brightRed: 43.8 + brightGreen: 60.9 + brightYellow: 74.7 + brightBlue: 51 + brightMagenta: 33.2 + brightCyan: 62.1 + brightWhite: 107.5 diff --git a/themes/gold.yaml b/themes/gold.yaml new file mode 100644 index 00000000..b70e4e64 --- /dev/null +++ b/themes/gold.yaml @@ -0,0 +1,49 @@ +name: "gold" +source: + marketplace_id: "natecrow.consonance-themes" + version: "1.2.0" + installs: 317 + author: "natecrow" + repo: "https://github.com/natecrow/consonance-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" +colors: + bg: "#111111" + fg: "#B1CCCF" + black: "#000000" + red: "#D1C6A1" + green: "#B19C3F" + yellow: "#DCC566" + blue: "#637C7F" + magenta: "#887616" + cyan: "#A89D7A" + white: "#CDE8EB" + brightBlack: "#637C7F" + brightRed: "#D1C6A1" + brightGreen: "#B19C3F" + brightYellow: "#DCC566" + brightBlue: "#637C7F" + brightMagenta: "#887616" + brightCyan: "#A89D7A" + brightWhite: "#E9FFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 72.2 + black: 0 + red: 71.7 + green: 48.6 + yellow: 71.4 + blue: 30.3 + magenta: 29.9 + cyan: 48.9 + white: 89.2 + brightBlack: 30.3 + brightRed: 71.7 + brightGreen: 48.6 + brightYellow: 71.4 + brightBlue: 30.3 + brightMagenta: 29.9 + brightCyan: 48.9 + brightWhite: 104.4 diff --git a/themes/golden-blue-color-theme.yaml b/themes/golden-blue-color-theme.yaml new file mode 100644 index 00000000..850ce577 --- /dev/null +++ b/themes/golden-blue-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Golden-Blue Color Theme" +source: + marketplace_id: "BrunoDaSilvaThemes.golden-blue" + version: "0.0.8" + installs: 2492 + author: "Bruno DaSilva" + repo: "https://github.com/Brunno-DaSilva/golden-blue-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BrunoDaSilvaThemes.golden-blue" +colors: + bg: "#002451" + fg: "#FFFFFF" + black: "#063164" + red: "#DA4939" + green: "#A5C261" + yellow: "#FFC66D" + blue: "#6D9CBE" + magenta: "#B6B3EB" + cyan: "#519F50" + white: "#E6E1DC" + brightBlack: "#5A647E" + brightRed: "#DA4939" + brightGreen: "#A5C261" + brightYellow: "#FFC66D" + brightBlue: "#6D9CBE" + brightMagenta: "#B6B3EB" + brightCyan: "#519F50" + brightWhite: "#F9F7F3" +meta: + mode: "dark" + accent: "orange" + hue: 256 + contrast: + fg: 104.6 + black: 0 + red: 30.4 + green: 60.4 + yellow: 74.7 + blue: 42.7 + magenta: 61 + cyan: 38.6 + white: 85.7 + brightBlack: 19 + brightRed: 30.4 + brightGreen: 60.4 + brightYellow: 74.7 + brightBlue: 42.7 + brightMagenta: 61 + brightCyan: 38.6 + brightWhite: 99.4 diff --git a/themes/golden-dracula.yaml b/themes/golden-dracula.yaml new file mode 100644 index 00000000..6a336db2 --- /dev/null +++ b/themes/golden-dracula.yaml @@ -0,0 +1,49 @@ +name: "Golden Dracula" +source: + marketplace_id: "mnxn.theme-golden-dracula" + version: "1.2.8" + installs: 13338 + author: "mnxn" + repo: "https://github.com/mnxn/Golden-Dracula" + url: "https://marketplace.visualstudio.com/items?itemName=mnxn.theme-golden-dracula" +colors: + bg: "#222628" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 100 + black: 0 + red: 41.4 + green: 82.9 + yellow: 96.6 + blue: 51.7 + magenta: 52.6 + cyan: 82 + white: 100 + brightBlack: 26.1 + brightRed: 46.9 + brightGreen: 87.1 + brightYellow: 101.6 + brightBlue: 64.1 + brightMagenta: 60.6 + brightCyan: 94.8 + brightWhite: 104.9 diff --git a/themes/golden-era.yaml b/themes/golden-era.yaml new file mode 100644 index 00000000..85a55d2f --- /dev/null +++ b/themes/golden-era.yaml @@ -0,0 +1,49 @@ +name: "Golden Era" +source: + marketplace_id: "CodrJatin.golden-era" + version: "0.6.0" + installs: 1697 + author: "Codr Jatin" + repo: "https://github.com/CodrJatin/vscode-Golden-Era" + url: "https://marketplace.visualstudio.com/items?itemName=CodrJatin.golden-era" +colors: + bg: "#052842" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "pink" + hue: 246 + contrast: + fg: 104.6 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.1 + magenta: 27.4 + cyan: 45.2 + white: 87.7 + brightBlack: 19.7 + brightRed: 36.3 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.7 + brightMagenta: 43.1 + brightCyan: 53.1 + brightWhite: 101.3 diff --git a/themes/golden-eye.yaml b/themes/golden-eye.yaml new file mode 100644 index 00000000..f0ea8428 --- /dev/null +++ b/themes/golden-eye.yaml @@ -0,0 +1,49 @@ +name: "Golden Eye" +source: + marketplace_id: "ProphezAI.golden-eye" + version: "1.0.3" + installs: 1032 + author: "ProphezAI" + repo: "https://github.com/ProphezAI/golden-eye" + url: "https://marketplace.visualstudio.com/items?itemName=ProphezAI.golden-eye" +colors: + bg: "#144000" + fg: "#FFD700" + black: "#000000" + red: "#8B0000" + green: "#006400" + yellow: "#FFFF00" + blue: "#00008B" + magenta: "#8B008B" + cyan: "#008B8B" + white: "#FBFBFB" + brightBlack: "#696969" + brightRed: "#FF0000" + brightGreen: "#008000" + brightYellow: "#FF0000" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 138 + contrast: + fg: 76.9 + black: 0 + red: 0 + green: 9.6 + yellow: 95.4 + blue: 0 + magenta: 7.8 + cyan: 26.4 + white: 97.9 + brightBlack: 17 + brightRed: 30.2 + brightGreen: 19.8 + brightYellow: 30.2 + brightBlue: 8.9 + brightMagenta: 38.9 + brightCyan: 84.9 + brightWhite: 100.6 diff --git a/themes/golden-sky.yaml b/themes/golden-sky.yaml new file mode 100644 index 00000000..910c185b --- /dev/null +++ b/themes/golden-sky.yaml @@ -0,0 +1,49 @@ +name: "Golden Sky" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FFA500" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FFA500" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 64.7 + cyan: 92.2 + white: 107.9 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 16.2 + brightMagenta: 64.7 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/golden-sunset.yaml b/themes/golden-sunset.yaml new file mode 100644 index 00000000..b5ec401e --- /dev/null +++ b/themes/golden-sunset.yaml @@ -0,0 +1,49 @@ +name: "Golden Sunset" +source: + marketplace_id: "Icycoldveins.verum-monokai-themes" + version: "1.2.1" + installs: 46 + author: "Icycoldveins" + repo: "https://github.com/icycoldveins/Ide-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" +colors: + bg: "#2D2A2E" + fg: "#D4BE98" + black: "#32302F" + red: "#E06C75" + green: "#98C379" + yellow: "#E78A4E" + blue: "#7DAEA3" + magenta: "#FF6B6B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E78A4E" + brightBlue: "#7DAEA3" + brightMagenta: "#FF6B6B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65 + black: 0 + red: 39.1 + green: 59.3 + yellow: 47.8 + blue: 49.2 + magenta: 45.1 + cyan: 51.6 + white: 65 + brightBlack: 33.3 + brightRed: 39.1 + brightGreen: 59.3 + brightYellow: 47.8 + brightBlue: 49.2 + brightMagenta: 45.1 + brightCyan: 51.6 + brightWhite: 70.2 diff --git a/themes/golden-wave.yaml b/themes/golden-wave.yaml new file mode 100644 index 00000000..1a833a6e --- /dev/null +++ b/themes/golden-wave.yaml @@ -0,0 +1,49 @@ +name: "Golden Wave" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2036 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" +colors: + bg: "#020617" + fg: "#F1F5F9" + black: "#1E293B" + red: "#DC2626" + green: "#16A34A" + yellow: "#D4AF37" + blue: "#1D4ED8" + magenta: "#7C3AED" + cyan: "#0891B2" + white: "#F1F5F9" + brightBlack: "#64748B" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#FFD700" + brightBlue: "#3B82F6" + brightMagenta: "#8B5CF6" + brightCyan: "#06B6D4" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "magenta" + hue: 265 + contrast: + fg: 100.8 + black: 0 + red: 30 + green: 41.9 + yellow: 61.1 + blue: 19.6 + magenta: 24.2 + cyan: 37.7 + white: 100.8 + brightBlack: 28.5 + brightRed: 37.7 + brightGreen: 57.7 + brightYellow: 84.1 + brightBlue: 37.7 + brightMagenta: 32.8 + brightCyan: 54.8 + brightWhite: 104.3 diff --git a/themes/goldentheme.yaml b/themes/goldentheme.yaml new file mode 100644 index 00000000..75ae7e05 --- /dev/null +++ b/themes/goldentheme.yaml @@ -0,0 +1,49 @@ +name: "GoldenTheme" +source: + marketplace_id: "EnzoCoding.zozovscode-custom" + version: "0.0.6" + installs: 430 + author: "EnzoCoding" + repo: "https://github.com/Enzo91080/GoldenZo" + url: "https://marketplace.visualstudio.com/items?itemName=EnzoCoding.zozovscode-custom" +colors: + bg: "#12131B" + fg: "#698CD6" + black: "#303030" + red: "#C24242" + green: "#9ECE6A" + yellow: "#B0B060" + blue: "#6060A0" + magenta: "#A060A0" + cyan: "#60A0A0" + white: "#D0D0D0" + brightBlack: "#808080" + brightRed: "#C08080" + brightGreen: "#80C080" + brightYellow: "#E0E080" + brightBlue: "#8080C0" + brightMagenta: "#C080C0" + brightCyan: "#80C0C0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 40.5 + black: 0 + red: 27 + green: 67.8 + yellow: 56.6 + blue: 22.6 + magenta: 30 + cyan: 44.7 + white: 77.4 + brightBlack: 34.1 + brightRed: 42.4 + brightGreen: 59.4 + brightYellow: 84 + brightBlue: 37 + brightMagenta: 45.1 + brightCyan: 61.6 + brightWhite: 107.2 diff --git a/themes/goldfish-contrast.yaml b/themes/goldfish-contrast.yaml new file mode 100644 index 00000000..5ec70cee --- /dev/null +++ b/themes/goldfish-contrast.yaml @@ -0,0 +1,49 @@ +name: "goldfish-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0C0D0E" + fg: "#F8F8F2" + black: "#181A1C" + red: "#BA0E2E" + green: "#F38630" + yellow: "#FA6900" + blue: "#69D2E7" + magenta: "#A7DBD8" + cyan: "#F38630" + white: "#FFFFFF" + brightBlack: "#3B4045" + brightRed: "#F03E5F" + brightGreen: "#F9BE90" + brightYellow: "#FFA361" + brightBlue: "#C1ECF5" + brightMagenta: "#EFF9F8" + brightCyan: "#F9BE90" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 102.7 + black: 0 + red: 21.2 + green: 52.4 + yellow: 46.3 + blue: 70.6 + magenta: 78.5 + cyan: 52.4 + white: 107.6 + brightBlack: 8 + brightRed: 37.5 + brightGreen: 74.3 + brightYellow: 64.4 + brightBlue: 90.4 + brightMagenta: 102.2 + brightCyan: 74.3 + brightWhite: 107.6 diff --git a/themes/goldfish-light.yaml b/themes/goldfish-light.yaml new file mode 100644 index 00000000..0c723bc6 --- /dev/null +++ b/themes/goldfish-light.yaml @@ -0,0 +1,49 @@ +name: "goldfish-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#2E3336" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#F38630" + yellow: "#FA6900" + blue: "#69D2E7" + magenta: "#91BFBC" + cyan: "#F38630" + white: "#3A4044" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F9BE90" + brightYellow: "#FFA361" + brightBlue: "#C1ECF5" + brightMagenta: "#D1E5E3" + brightCyan: "#F9BE90" + brightWhite: "#5D676D" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.9 + black: 0 + red: 80.3 + green: 49.3 + yellow: 55.2 + blue: 31.8 + magenta: 39.3 + cyan: 49.3 + white: 94.4 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 28.4 + brightYellow: 37.7 + brightBlue: 13.2 + brightMagenta: 15.4 + brightCyan: 28.4 + brightWhite: 79 diff --git a/themes/goldfish.yaml b/themes/goldfish.yaml new file mode 100644 index 00000000..2249c302 --- /dev/null +++ b/themes/goldfish.yaml @@ -0,0 +1,49 @@ +name: "goldfish" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2E3336" + fg: "#F8F8F2" + black: "#3A4044" + red: "#BA0E2E" + green: "#F38630" + yellow: "#FA6900" + blue: "#69D2E7" + magenta: "#A7DBD8" + cyan: "#F38630" + white: "#FFFFFF" + brightBlack: "#5D676D" + brightRed: "#F03E5F" + brightGreen: "#F9BE90" + brightYellow: "#FFA361" + brightBlue: "#C1ECF5" + brightMagenta: "#EFF9F8" + brightCyan: "#F9BE90" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 97.3 + black: 0 + red: 15.8 + green: 47 + yellow: 40.9 + blue: 65.2 + magenta: 73.1 + cyan: 47 + white: 102.2 + brightBlack: 17.1 + brightRed: 32.1 + brightGreen: 68.9 + brightYellow: 59.1 + brightBlue: 85 + brightMagenta: 96.8 + brightCyan: 68.9 + brightWhite: 102.2 diff --git a/themes/goldream.yaml b/themes/goldream.yaml new file mode 100644 index 00000000..26de600d --- /dev/null +++ b/themes/goldream.yaml @@ -0,0 +1,49 @@ +name: "Goldream" +source: + marketplace_id: "J4CK-98.goldream-theme" + version: "0.0.1" + installs: 79 + author: "J4CK-98" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=J4CK-98.goldream-theme" +colors: + bg: "#1B1E2B" + fg: "#FFCA03" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 76.8 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/good-purple.yaml b/themes/good-purple.yaml new file mode 100644 index 00000000..07930711 --- /dev/null +++ b/themes/good-purple.yaml @@ -0,0 +1,49 @@ +name: "Good Purple" +source: + marketplace_id: "YanBystrikov.good-purple" + version: "1.4.0" + installs: 210 + author: "YanBystrikov" + repo: "https://github.com/YanBystrik/good-purple" + url: "https://marketplace.visualstudio.com/items?itemName=YanBystrikov.good-purple" +colors: + bg: "#25273A" + fg: "#9ACFDC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 279 + contrast: + fg: 68.8 + black: 0 + red: 24.2 + green: 50.5 + yellow: 83.1 + blue: 24.9 + magenta: 27.2 + cyan: 45 + white: 87.5 + brightBlack: 19.5 + brightRed: 36 + brightGreen: 61 + brightYellow: 93.1 + brightBlue: 37.5 + brightMagenta: 42.9 + brightCyan: 52.9 + brightWhite: 87.5 diff --git a/themes/goodmonokai-color-theme.yaml b/themes/goodmonokai-color-theme.yaml new file mode 100644 index 00000000..17882a69 --- /dev/null +++ b/themes/goodmonokai-color-theme.yaml @@ -0,0 +1,49 @@ +name: "GoodMonokai-color-theme" +source: + marketplace_id: "Joyphy.goodmonokai" + version: "0.0.1" + installs: 236 + author: "Joyphy" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Joyphy.goodmonokai" +colors: + bg: "#272822" + fg: "#BABAB5" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#BA1C55" + brightGreen: "#7CA922" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#8260BF" + brightCyan: "#4CA2B3" + brightWhite: "#BABAB5" +meta: + mode: "dark" + accent: "red" + hue: 115 + contrast: + fg: 61.6 + black: 0 + red: 22.3 + green: 50.7 + yellow: 55.3 + blue: 32.3 + magenta: 29.9 + cyan: 48.1 + white: 86.2 + brightBlack: 19.7 + brightRed: 19.3 + brightGreen: 45.1 + brightYellow: 81.6 + brightBlue: 47.5 + brightMagenta: 25.2 + brightCyan: 42.7 + brightWhite: 61.6 diff --git a/themes/goodnight-classic.yaml b/themes/goodnight-classic.yaml new file mode 100644 index 00000000..ac2f359a --- /dev/null +++ b/themes/goodnight-classic.yaml @@ -0,0 +1,49 @@ +name: "Goodnight Classic" +source: + marketplace_id: "MatheusPiovezan.Goodnight" + version: "0.0.7" + installs: 2769 + author: "Matheus Piovezan" + repo: "https://github.com/MatheusPiovezan/vscode-theme-goodnight" + url: "https://marketplace.visualstudio.com/items?itemName=MatheusPiovezan.Goodnight" +colors: + bg: "#3D4047" + fg: "#7C7C7C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 267 + contrast: + fg: 23.1 + black: 9.8 + red: 18 + green: 44.3 + yellow: 76.9 + blue: 18.7 + magenta: 21 + cyan: 38.8 + white: 81.3 + brightBlack: 13.3 + brightRed: 29.8 + brightGreen: 54.8 + brightYellow: 86.9 + brightBlue: 31.3 + brightMagenta: 36.6 + brightCyan: 46.7 + brightWhite: 81.3 diff --git a/themes/goodnight.yaml b/themes/goodnight.yaml new file mode 100644 index 00000000..bf6dc0ce --- /dev/null +++ b/themes/goodnight.yaml @@ -0,0 +1,49 @@ +name: "Goodnight" +source: + marketplace_id: "MatheusPiovezan.Goodnight" + version: "0.0.7" + installs: 2769 + author: "Matheus Piovezan" + repo: "https://github.com/MatheusPiovezan/vscode-theme-goodnight" + url: "https://marketplace.visualstudio.com/items?itemName=MatheusPiovezan.Goodnight" +colors: + bg: "#282C34" + fg: "#7C7C7C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 28.7 + black: 0 + red: 23.5 + green: 49.8 + yellow: 82.4 + blue: 24.2 + magenta: 26.6 + cyan: 44.4 + white: 86.8 + brightBlack: 18.8 + brightRed: 35.4 + brightGreen: 60.3 + brightYellow: 92.4 + brightBlue: 36.8 + brightMagenta: 42.2 + brightCyan: 52.2 + brightWhite: 86.8 diff --git a/themes/gooey-theme.yaml b/themes/gooey-theme.yaml new file mode 100644 index 00000000..679f4cf5 --- /dev/null +++ b/themes/gooey-theme.yaml @@ -0,0 +1,49 @@ +name: "Gooey-Theme" +source: + marketplace_id: "Gooey.gooeyvsctheme" + version: "0.0.1" + installs: 139 + author: "Gooey" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Gooey.gooeyvsctheme" +colors: + bg: "#171922" + fg: "#BABABA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 63.9 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.8 diff --git a/themes/googledark.yaml b/themes/googledark.yaml new file mode 100644 index 00000000..d59792ad --- /dev/null +++ b/themes/googledark.yaml @@ -0,0 +1,49 @@ +name: "GoogleDark" +source: + marketplace_id: "Avetis.codeme-theme" + version: "0.1.1" + installs: 8079 + author: "Avetis" + repo: "https://github.com/AvetisDN/codeme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" +colors: + bg: "#1B1C1F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.9 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/googlory-color-theme.yaml b/themes/googlory-color-theme.yaml new file mode 100644 index 00000000..40407664 --- /dev/null +++ b/themes/googlory-color-theme.yaml @@ -0,0 +1,49 @@ +name: "googlory-color-theme" +source: + marketplace_id: "gtwsky.oolory" + version: "2.0.0" + installs: 2116 + author: "Michał Gutowski" + repo: "https://gitlab.com/gtwsky_/oolory" + url: "https://marketplace.visualstudio.com/items?itemName=gtwsky.oolory" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#FF0032" + green: "#008000" + yellow: "#D7AF00" + blue: "#004BFF" + magenta: "#7D46FC" + cyan: "#00AFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0032" + brightGreen: "#008000" + brightYellow: "#D7AF00" + brightBlue: "#004BFF" + brightMagenta: "#7D46FC" + brightCyan: "#00AFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 106 + black: 106 + red: 63.9 + green: 74.6 + yellow: 40.7 + blue: 78.9 + magenta: 74 + cyan: 47.4 + white: 0 + brightBlack: 106 + brightRed: 63.9 + brightGreen: 74.6 + brightYellow: 40.7 + brightBlue: 78.9 + brightMagenta: 74 + brightCyan: 47.4 + brightWhite: 0 diff --git a/themes/goolou.yaml b/themes/goolou.yaml new file mode 100644 index 00000000..1f539438 --- /dev/null +++ b/themes/goolou.yaml @@ -0,0 +1,49 @@ +name: "Goolou" +source: + marketplace_id: "sndp124.goolou" + version: "2.0.1" + installs: 282 + author: "sndp124" + repo: "https://github.com/Sandip124/goolou" + url: "https://marketplace.visualstudio.com/items?itemName=sndp124.goolou" +colors: + bg: "#2C333D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 74.8 + black: 0 + red: 22 + green: 48.3 + yellow: 80.9 + blue: 22.7 + magenta: 25 + cyan: 42.8 + white: 85.3 + brightBlack: 17.3 + brightRed: 33.8 + brightGreen: 58.8 + brightYellow: 90.9 + brightBlue: 35.3 + brightMagenta: 40.7 + brightCyan: 50.7 + brightWhite: 85.3 diff --git a/themes/goose.yaml b/themes/goose.yaml new file mode 100644 index 00000000..2e57b562 --- /dev/null +++ b/themes/goose.yaml @@ -0,0 +1,49 @@ +name: "goose" +source: + marketplace_id: "hgooseVSC.GoosePlusPlus" + version: "0.4.9" + installs: 197 + author: "hgooseVSC" + repo: "https://github.com/hgoose/GoosePlusPlus" + url: "https://marketplace.visualstudio.com/items?itemName=hgooseVSC.GoosePlusPlus" +colors: + bg: "#292D3E" + fg: "#FFFFFF" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 103.3 + black: 22.8 + red: 40.4 + green: 62.2 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 40.4 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/goosebumps.yaml b/themes/goosebumps.yaml new file mode 100644 index 00000000..44e3fdc7 --- /dev/null +++ b/themes/goosebumps.yaml @@ -0,0 +1,49 @@ +name: "goosebumps" +source: + marketplace_id: "roxcelic.goosebumps" + version: "1.0.5" + installs: 104 + author: "roxcelic" + repo: "https://github.com/roxcelic/themes.git#goosebumps" + url: "https://marketplace.visualstudio.com/items?itemName=roxcelic.goosebumps" +colors: + bg: "#001400" + fg: "#FFFFFF" + black: "#000000" + red: "#CE9178" + green: "#4E9A06" + yellow: "#D7BA7D" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#4EC9B0" + white: "#D4D4D4" + brightBlack: "#808080" + brightRed: "#E54B4B" + brightGreen: "#B5CEA8" + brightYellow: "#F2C000" + brightBlue: "#9CDCFE" + brightMagenta: "#B19CD9" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 142 + contrast: + fg: 107.4 + black: 0 + red: 50 + green: 38.6 + yellow: 66.6 + blue: 45.5 + magenta: 47.8 + cyan: 62.5 + white: 80 + brightBlack: 34.2 + brightRed: 36.2 + brightGreen: 71.9 + brightYellow: 72 + brightBlue: 79.7 + brightMagenta: 53.6 + brightCyan: 55 + brightWhite: 107.4 diff --git a/themes/gopher.yaml b/themes/gopher.yaml new file mode 100644 index 00000000..409a236c --- /dev/null +++ b/themes/gopher.yaml @@ -0,0 +1,49 @@ +name: "Gopher" +source: + marketplace_id: "mnxn.gopher-theme" + version: "0.1.2" + installs: 504 + author: "mnxn" + repo: "https://github.com/mnxn/vscode-gopher-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mnxn.gopher-theme" +colors: + bg: "#FFFFDD" + fg: "#1B1A1A" + black: "#1B1A1A" + red: "#CE3062" + green: "#22BBAA" + yellow: "#FFED88" + blue: "#01ADD8" + magenta: "#F8AADD" + cyan: "#5EC9E3" + white: "#E9F3F9" + brightBlack: "#555757" + brightRed: "#CE3062" + brightGreen: "#22BBAA" + brightYellow: "#FFED88" + brightBlue: "#01ADD8" + brightMagenta: "#F8AADD" + brightCyan: "#5EC9E3" + brightWhite: "#E9F3F9" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 102.9 + black: 102.9 + red: 71.6 + green: 45.4 + yellow: 7.5 + blue: 49.3 + magenta: 31.4 + cyan: 35.1 + white: 0 + brightBlack: 83.9 + brightRed: 71.6 + brightGreen: 45.4 + brightYellow: 7.5 + brightBlue: 49.3 + brightMagenta: 31.4 + brightCyan: 35.1 + brightWhite: 0 diff --git a/themes/gorfius-orange.yaml b/themes/gorfius-orange.yaml new file mode 100644 index 00000000..6feb3721 --- /dev/null +++ b/themes/gorfius-orange.yaml @@ -0,0 +1,49 @@ +name: "Gorfius Orange" +source: + marketplace_id: "GorIvanov.gorfius-orange-theme" + version: "0.0.4" + installs: 537 + author: "Gor Ivanov" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GorIvanov.gorfius-orange-theme" +colors: + bg: "#1B1B1B" + fg: "#9D9D9D" + black: "#666666" + red: "#A12B2B" + green: "#30A176" + yellow: "#A18032" + blue: "#2472C8" + magenta: "#962A96" + cyan: "#41B8D5" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#942D2D" + brightGreen: "#30A176" + brightYellow: "#A18032" + brightBlue: "#3B8EEA" + brightMagenta: "#923192" + brightCyan: "#41B8D5" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 47.8 + black: 21.6 + red: 16.5 + green: 41 + yellow: 35.6 + blue: 27 + magenta: 17.9 + cyan: 55.2 + white: 89.6 + brightBlack: 21.6 + brightRed: 14.3 + brightGreen: 41 + brightYellow: 35.6 + brightBlue: 39.6 + brightMagenta: 17.8 + brightCyan: 55.2 + brightWhite: 89.6 diff --git a/themes/gorfius-peace-forest.yaml b/themes/gorfius-peace-forest.yaml new file mode 100644 index 00000000..87415299 --- /dev/null +++ b/themes/gorfius-peace-forest.yaml @@ -0,0 +1,49 @@ +name: "Gorfius Peace Forest" +source: + marketplace_id: "GorIvanov.gorfius-smoke" + version: "0.1.0" + installs: 85 + author: "Gor Ivanov" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GorIvanov.gorfius-smoke" +colors: + bg: "#5C5C5C" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#B2B221" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#B2B221" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 88.1 + black: 21 + red: 7.9 + green: 34.2 + yellow: 37.9 + blue: 8.6 + magenta: 10.9 + cyan: 28.7 + white: 71.2 + brightBlack: 0 + brightRed: 19.7 + brightGreen: 44.7 + brightYellow: 37.9 + brightBlue: 21.2 + brightMagenta: 26.6 + brightCyan: 36.6 + brightWhite: 71.2 diff --git a/themes/gorg.yaml b/themes/gorg.yaml new file mode 100644 index 00000000..565bf4eb --- /dev/null +++ b/themes/gorg.yaml @@ -0,0 +1,49 @@ +name: "Gorg" +source: + marketplace_id: "adpawr.gorg" + version: "0.0.4" + installs: 52 + author: "adpawr" + repo: "https://github.com/adpawr/gorg-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=adpawr.gorg" +colors: + bg: "#12161A" + fg: "#C9CDD1" + black: "#000000" + red: "#EB7575" + green: "#6DB078" + yellow: "#DBC179" + blue: "#45A0E6" + magenta: "#D188C7" + cyan: "#18B0B5" + white: "#C9CDD1" + brightBlack: "#0D1012" + brightRed: "#F09090" + brightGreen: "#8AB890" + brightYellow: "#D9CBA3" + brightBlue: "#91CFFF" + brightMagenta: "#D9B8D4" + brightCyan: "#8ECFD1" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 75.1 + black: 0 + red: 46.6 + green: 50.7 + yellow: 69.6 + blue: 47 + magenta: 50.3 + cyan: 49.9 + white: 75.1 + brightBlack: 0 + brightRed: 55.9 + brightGreen: 57 + brightYellow: 74.6 + brightBlue: 72.6 + brightMagenta: 68.8 + brightCyan: 70 + brightWhite: 98.5 diff --git a/themes/gosthy.yaml b/themes/gosthy.yaml new file mode 100644 index 00000000..43a896b2 --- /dev/null +++ b/themes/gosthy.yaml @@ -0,0 +1,49 @@ +name: "Gosthy" +source: + marketplace_id: "miguelin04.gosthy-theme" + version: "1.3.2" + installs: 12 + author: "Miguel" + repo: "https://github.com/miguelin04/gosthy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=miguelin04.gosthy-theme" +colors: + bg: "#0F1419" + fg: "#C9D1D9" + black: "#2F4F4F" + red: "#FF6B6B" + green: "#90EE90" + yellow: "#FFFF00" + blue: "#6BB6FF" + magenta: "#DDA0DD" + cyan: "#7FFFD4" + white: "#FFFFFF" + brightBlack: "#808080" + brightRed: "#FF6B6B" + brightGreen: "#90EE90" + brightYellow: "#FFFF00" + brightBlue: "#87CEEB" + brightMagenta: "#DDA0DD" + brightCyan: "#7FFFD4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 249 + contrast: + fg: 77.3 + black: 11.2 + red: 48.4 + green: 82.8 + yellow: 102 + blue: 59.5 + magenta: 61.3 + cyan: 92.6 + white: 107.2 + brightBlack: 34.1 + brightRed: 48.4 + brightGreen: 82.8 + brightYellow: 102 + brightBlue: 70.5 + brightMagenta: 61.3 + brightCyan: 92.6 + brightWhite: 107.2 diff --git a/themes/gotham.yaml b/themes/gotham.yaml new file mode 100644 index 00000000..8cec474c --- /dev/null +++ b/themes/gotham.yaml @@ -0,0 +1,49 @@ +name: "Gotham" +source: + marketplace_id: "jach.gotham-theme" + version: "0.1.3" + installs: 3895 + author: "Michael Jach" + repo: "https://github.com/michaljach/gotham-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jach.gotham-theme" +colors: + bg: "#000000" + fg: "#D7DAE1" + black: "#000000" + red: "#808080" + green: "#4D4D4D" + yellow: "#D7DAE1" + blue: "#111333" + magenta: "#999999" + cyan: "#666666" + white: "#CCCCCC" + brightBlack: "#1A1A1A" + brightRed: "#808080" + brightGreen: "#4D4D4D" + brightYellow: "#D7DAE1" + brightBlue: "#000CB8" + brightMagenta: "#1D00C0" + brightCyan: "#666666" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 84.1 + black: 0 + red: 34.8 + green: 13.1 + yellow: 84.1 + blue: 0 + magenta: 47.2 + cyan: 23 + white: 75.7 + brightBlack: 0 + brightRed: 34.8 + brightGreen: 13.1 + brightYellow: 84.1 + brightBlue: 7.8 + brightMagenta: 8.8 + brightCyan: 23 + brightWhite: 107.9 diff --git a/themes/gothic-absinthe.yaml b/themes/gothic-absinthe.yaml new file mode 100644 index 00000000..663f658b --- /dev/null +++ b/themes/gothic-absinthe.yaml @@ -0,0 +1,49 @@ +name: "Gothic Absinthe" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1123 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" +colors: + bg: "#101812" + fg: "#E0E8E0" + black: "#101812" + red: "#E05050" + green: "#60A060" + yellow: "#D0A050" + blue: "#5070A0" + magenta: "#A060A0" + cyan: "#50A0A0" + white: "#C0D8C0" + brightBlack: "#6A7A6A" + brightRed: "#E07070" + brightGreen: "#70C070" + brightYellow: "#E0B070" + brightBlue: "#7090C0" + brightMagenta: "#C080C0" + brightCyan: "#70C0C0" + brightWhite: "#E0E8E0" +meta: + mode: "dark" + accent: "orange" + hue: 152 + contrast: + fg: 90.6 + black: 0 + red: 35.6 + green: 42.5 + yellow: 54.3 + blue: 26 + magenta: 29.8 + cyan: 43.6 + white: 78.1 + brightBlack: 29.1 + brightRed: 43 + brightGreen: 57.7 + brightYellow: 63.3 + brightBlue: 40.9 + brightMagenta: 44.8 + brightCyan: 60.3 + brightWhite: 90.6 diff --git a/themes/gothic-amber-fog.yaml b/themes/gothic-amber-fog.yaml new file mode 100644 index 00000000..74ffc9c5 --- /dev/null +++ b/themes/gothic-amber-fog.yaml @@ -0,0 +1,49 @@ +name: "Gothic Amber Fog" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1123 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" +colors: + bg: "#19171A" + fg: "#E8E1D5" + black: "#19171A" + red: "#D5736A" + green: "#A5AD6A" + yellow: "#D5A84A" + blue: "#7A90AD" + magenta: "#AD90AA" + cyan: "#90ADA5" + white: "#E8E1D5" + brightBlack: "#777070" + brightRed: "#E08A82" + brightGreen: "#B5C080" + brightYellow: "#E5C875" + brightBlue: "#90A8C7" + brightMagenta: "#C7A8C5" + brightCyan: "#A8C7BD" + brightWhite: "#F8F0E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 87.9 + black: 0 + red: 41.4 + green: 53.9 + yellow: 57.8 + blue: 40.6 + magenta: 46 + cyan: 53.4 + white: 87.9 + brightBlack: 27 + brightRed: 50.6 + brightGreen: 64.1 + brightYellow: 73.7 + brightBlue: 52.9 + brightMagenta: 59.3 + brightCyan: 67.7 + brightWhite: 97.6 diff --git a/themes/gothic-blood-moon.yaml b/themes/gothic-blood-moon.yaml new file mode 100644 index 00000000..de9ab19f --- /dev/null +++ b/themes/gothic-blood-moon.yaml @@ -0,0 +1,49 @@ +name: "Gothic Blood Moon" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1123 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" +colors: + bg: "#170C0C" + fg: "#E0D0D0" + black: "#170C0C" + red: "#FF4040" + green: "#C06060" + yellow: "#FF9060" + blue: "#905080" + magenta: "#FF6090" + cyan: "#C05080" + white: "#E0D0D0" + brightBlack: "#805050" + brightRed: "#FF6060" + brightGreen: "#E07070" + brightYellow: "#FFB080" + brightBlue: "#B070A0" + brightMagenta: "#FF80B0" + brightCyan: "#E070A0" + brightWhite: "#FFF0F0" +meta: + mode: "dark" + accent: "orange" + hue: 19 + contrast: + fg: 79.8 + black: 0 + red: 40.7 + green: 33.3 + yellow: 58.2 + blue: 22.8 + magenta: 47.5 + cyan: 30.9 + white: 79.8 + brightBlack: 19 + brightRed: 46.2 + brightGreen: 43.5 + brightYellow: 69.5 + brightBlue: 36.8 + brightMagenta: 56 + brightCyan: 45.1 + brightWhite: 99.8 diff --git a/themes/gothic-cathedral.yaml b/themes/gothic-cathedral.yaml new file mode 100644 index 00000000..aeae692f --- /dev/null +++ b/themes/gothic-cathedral.yaml @@ -0,0 +1,49 @@ +name: "Gothic Cathedral" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1123 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" +colors: + bg: "#12100F" + fg: "#FFFFFF" + black: "#12100F" + red: "#9A5A67" + green: "#9A8AA5" + yellow: "#B39362" + blue: "#7C8993" + magenta: "#9A7286" + cyan: "#849C88" + white: "#D3C4B0" + brightBlack: "#605850" + brightRed: "#B27C85" + brightGreen: "#B2A4BD" + brightYellow: "#C29275" + brightBlue: "#9CAAB3" + brightMagenta: "#B596A6" + brightCyan: "#A3B9A7" + brightWhite: "#E6DECA" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 25.6 + green: 42 + yellow: 46.2 + blue: 37.7 + magenta: 33.1 + cyan: 45.2 + white: 71.7 + brightBlack: 17.3 + brightRed: 39.5 + brightGreen: 55.3 + brightYellow: 48.5 + brightBlue: 54.6 + brightMagenta: 49.6 + brightCyan: 61 + brightWhite: 86.4 diff --git a/themes/gothic-cemetery.yaml b/themes/gothic-cemetery.yaml new file mode 100644 index 00000000..51e8375b --- /dev/null +++ b/themes/gothic-cemetery.yaml @@ -0,0 +1,49 @@ +name: "Gothic Cemetery" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1123 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" +colors: + bg: "#0F0F12" + fg: "#FFFFFF" + black: "#0F0F12" + red: "#A55560" + green: "#657860" + yellow: "#B09870" + blue: "#556880" + magenta: "#805570" + cyan: "#557580" + white: "#D8D8D8" + brightBlack: "#656575" + brightRed: "#D07585" + brightGreen: "#90B088" + brightYellow: "#D0C088" + brightBlue: "#7898C0" + brightMagenta: "#B088B0" + brightCyan: "#88C0C0" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 107.5 + black: 0 + red: 26.1 + green: 28.2 + yellow: 48 + blue: 22.9 + magenta: 21.2 + cyan: 27.1 + white: 82.5 + brightBlack: 22.8 + brightRed: 42.4 + brightGreen: 54.4 + brightYellow: 68.4 + brightBlue: 45 + brightMagenta: 44.7 + brightCyan: 62.5 + brightWhite: 97.7 diff --git a/themes/gothic-dark.yaml b/themes/gothic-dark.yaml new file mode 100644 index 00000000..7a256d5b --- /dev/null +++ b/themes/gothic-dark.yaml @@ -0,0 +1,49 @@ +name: "Gothic Dark" +source: + marketplace_id: "rama-3572.gothic" + version: "0.0.2" + installs: 503 + author: "Rama" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=rama-3572.gothic" +colors: + bg: "#1E1E1E" + fg: "#E0E0E0" + black: "#1E1E1E" + red: "#EC5F67" + green: "#99C794" + yellow: "#FAC863" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#E0E0E0" + brightBlack: "#383838" + brightRed: "#EC5F67" + brightGreen: "#99C794" + brightYellow: "#FAC863" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86 + black: 0 + red: 40.5 + green: 64 + yellow: 75.9 + blue: 43.3 + magenta: 51.2 + cyan: 52.2 + white: 86 + brightBlack: 0 + brightRed: 40.5 + brightGreen: 64 + brightYellow: 75.9 + brightBlue: 43.3 + brightMagenta: 51.2 + brightCyan: 52.2 + brightWhite: 106 diff --git a/themes/gothic-emerald-crypt.yaml b/themes/gothic-emerald-crypt.yaml new file mode 100644 index 00000000..8c7392b8 --- /dev/null +++ b/themes/gothic-emerald-crypt.yaml @@ -0,0 +1,49 @@ +name: "Gothic Emerald Crypt" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1123 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" +colors: + bg: "#0F1A15" + fg: "#D0E0D8" + black: "#0F1A15" + red: "#F05050" + green: "#20C080" + yellow: "#D0C060" + blue: "#50A0D0" + magenta: "#C050A0" + cyan: "#40C0C0" + white: "#D0E0D8" + brightBlack: "#507060" + brightRed: "#F07070" + brightGreen: "#40D090" + brightYellow: "#E0D080" + brightBlue: "#70B0E0" + brightMagenta: "#E070B0" + brightCyan: "#60E0E0" + brightWhite: "#E0F0E8" +meta: + mode: "dark" + accent: "orange" + hue: 165 + contrast: + fg: 84.4 + black: 0 + red: 38.9 + green: 55.1 + yellow: 66.9 + blue: 45.8 + magenta: 31.5 + cyan: 58 + white: 84.4 + brightBlack: 23.3 + brightRed: 46.1 + brightGreen: 63.7 + brightYellow: 76.5 + brightBlue: 55 + brightMagenta: 45.1 + brightCyan: 75.6 + brightWhite: 94.5 diff --git a/themes/gothic-jester.yaml b/themes/gothic-jester.yaml new file mode 100644 index 00000000..85bdd106 --- /dev/null +++ b/themes/gothic-jester.yaml @@ -0,0 +1,49 @@ +name: "Gothic Jester" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1123 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" +colors: + bg: "#10101A" + fg: "#FFFFFF" + black: "#10101A" + red: "#D06080" + green: "#C080C0" + yellow: "#D0A080" + blue: "#8090D0" + magenta: "#C080A0" + cyan: "#80A0D0" + white: "#F0E0D8" + brightBlack: "#706880" + brightRed: "#FF90A0" + brightGreen: "#E0A0E0" + brightYellow: "#FFC0A0" + brightBlue: "#A0B0FF" + brightMagenta: "#DE7AFF" + brightCyan: "#7AFFDE" + brightWhite: "#E0D9E6" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 107.4 + black: 0 + red: 37.1 + green: 45.3 + yellow: 55.7 + blue: 43.6 + magenta: 43.8 + cyan: 49.5 + white: 89.3 + brightBlack: 25 + brightRed: 59.7 + brightGreen: 62.1 + brightYellow: 76.3 + brightBlue: 61.5 + brightMagenta: 52.5 + brightCyan: 92.9 + brightWhite: 84.6 diff --git a/themes/gothic-midnight-rose.yaml b/themes/gothic-midnight-rose.yaml new file mode 100644 index 00000000..aa0d2904 --- /dev/null +++ b/themes/gothic-midnight-rose.yaml @@ -0,0 +1,49 @@ +name: "Gothic Midnight Rose" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1123 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" +colors: + bg: "#0F0A1A" + fg: "#E0D8F0" + black: "#0F0A1A" + red: "#FF5070" + green: "#70A0FF" + yellow: "#D0A0FF" + blue: "#7080FF" + magenta: "#FF70A0" + cyan: "#70D0FF" + white: "#E0D8F0" + brightBlack: "#6A5A7A" + brightRed: "#FF7090" + brightGreen: "#90B0FF" + brightYellow: "#E0B0FF" + brightBlue: "#90A0FF" + brightMagenta: "#FF90B0" + brightCyan: "#90E0FF" + brightWhite: "#F0E8FF" +meta: + mode: "dark" + accent: "red" + hue: 297 + contrast: + fg: 84.9 + black: 0 + red: 43.9 + green: 51.5 + yellow: 61.8 + blue: 40.5 + magenta: 51.5 + cyan: 71.4 + white: 84.9 + brightBlack: 20.4 + brightRed: 51 + brightGreen: 60.2 + brightYellow: 69.8 + brightBlue: 54.1 + brightMagenta: 60.5 + brightCyan: 80.9 + brightWhite: 94.9 diff --git a/themes/gothic-qaddy.yaml b/themes/gothic-qaddy.yaml new file mode 100644 index 00000000..3e807bde --- /dev/null +++ b/themes/gothic-qaddy.yaml @@ -0,0 +1,49 @@ +name: "Gothic Qaddy" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1123 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" +colors: + bg: "#131117" + fg: "#F5F5F0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 300 + contrast: + fg: 100.5 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.5 diff --git a/themes/gothic-raven.yaml b/themes/gothic-raven.yaml new file mode 100644 index 00000000..f35aea3c --- /dev/null +++ b/themes/gothic-raven.yaml @@ -0,0 +1,49 @@ +name: "Gothic Raven" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1123 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" +colors: + bg: "#10151A" + fg: "#F0F5F5" + black: "#080F15" + red: "#5077FF" + green: "#3060A0" + yellow: "#7090FF" + blue: "#70B0A0" + magenta: "#60A0D0" + cyan: "#4070CF" + white: "#D8E0F0" + brightBlack: "#708090" + brightRed: "#7090FF" + brightGreen: "#4070C0" + brightYellow: "#90B0FF" + brightBlue: "#90D0C0" + brightMagenta: "#80C0F0" + brightCyan: "#6090FF" + brightWhite: "#F0F5FF" +meta: + mode: "dark" + accent: "purple" + hue: 248 + contrast: + fg: 99.8 + black: 0 + red: 35.2 + green: 19.8 + yellow: 45.2 + blue: 52.2 + magenta: 47 + cyan: 28.4 + white: 86.8 + brightBlack: 33.1 + brightRed: 45.2 + brightGreen: 27.3 + brightYellow: 59.7 + brightBlue: 69.9 + brightMagenta: 64 + brightCyan: 44.2 + brightWhite: 100.3 diff --git a/themes/gothic-spider-lily.yaml b/themes/gothic-spider-lily.yaml new file mode 100644 index 00000000..eb210425 --- /dev/null +++ b/themes/gothic-spider-lily.yaml @@ -0,0 +1,49 @@ +name: "Gothic Spider Lily" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1123 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" +colors: + bg: "#0D0202" + fg: "#DC143C" + black: "#0D0202" + red: "#FF6666" + green: "#8B0000" + yellow: "#FF8888" + blue: "#8B0000" + magenta: "#FF6666" + cyan: "#A01010" + white: "#DC143C" + brightBlack: "#330A0A" + brightRed: "#FF7777" + brightGreen: "#8B0000" + brightYellow: "#FF8888" + brightBlue: "#A01010" + brightMagenta: "#FF6666" + brightCyan: "#DC143C" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 23 + contrast: + fg: 29.4 + black: 0 + red: 47.9 + green: 11.5 + yellow: 57.1 + blue: 11.5 + magenta: 47.9 + cyan: 15.8 + white: 29.4 + brightBlack: 0 + brightRed: 52.1 + brightGreen: 11.5 + brightYellow: 57.1 + brightBlue: 15.8 + brightMagenta: 47.9 + brightCyan: 29.4 + brightWhite: 107.8 diff --git a/themes/gothic-twilight-forest.yaml b/themes/gothic-twilight-forest.yaml new file mode 100644 index 00000000..ac967b79 --- /dev/null +++ b/themes/gothic-twilight-forest.yaml @@ -0,0 +1,49 @@ +name: "Gothic Twilight Forest" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1123 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" +colors: + bg: "#0F1A15" + fg: "#D5E5E0" + black: "#0F1A15" + red: "#E05050" + green: "#60D080" + yellow: "#E0C060" + blue: "#60A0E0" + magenta: "#C070C0" + cyan: "#60C0C0" + white: "#D5E5E0" + brightBlack: "#567568" + brightRed: "#F07070" + brightGreen: "#80E0A0" + brightYellow: "#F0D080" + brightBlue: "#80B0F0" + brightMagenta: "#D090D0" + brightCyan: "#80D0D0" + brightWhite: "#E8F8F0" +meta: + mode: "dark" + accent: "orange" + hue: 165 + contrast: + fg: 87.6 + black: 0 + red: 35.4 + green: 64.4 + yellow: 69.2 + blue: 47.6 + magenta: 40.3 + cyan: 59.2 + white: 87.6 + brightBlack: 25.6 + brightRed: 46.1 + brightGreen: 74.8 + brightYellow: 78.9 + brightBlue: 57.1 + brightMagenta: 52.9 + brightCyan: 69.1 + brightWhite: 99.6 diff --git a/themes/gothic-vampire.yaml b/themes/gothic-vampire.yaml new file mode 100644 index 00000000..fb69a855 --- /dev/null +++ b/themes/gothic-vampire.yaml @@ -0,0 +1,49 @@ +name: "Gothic Vampire" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1123 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" +colors: + bg: "#1A1017" + fg: "#F5F0F5" + black: "#15080F" + red: "#FF5077" + green: "#A03060" + yellow: "#FF9070" + blue: "#A070B0" + magenta: "#D060A0" + cyan: "#CF4070" + white: "#F0D8E0" + brightBlack: "#907080" + brightRed: "#FF7090" + brightGreen: "#C04070" + brightYellow: "#FFB090" + brightBlue: "#C090D0" + brightMagenta: "#F080C0" + brightCyan: "#FF6090" + brightWhite: "#FFF0F5" +meta: + mode: "dark" + accent: "red" + hue: 338 + contrast: + fg: 98.3 + black: 0 + red: 43.7 + green: 18.7 + yellow: 58.2 + blue: 35 + magenta: 38.1 + cyan: 30.5 + white: 86 + brightBlack: 30.8 + brightRed: 50.6 + brightGreen: 27.4 + brightYellow: 69.6 + brightBlue: 50.9 + brightMagenta: 53.4 + brightCyan: 47.2 + brightWhite: 99.7 diff --git a/themes/gothic-victorian-mourning.yaml b/themes/gothic-victorian-mourning.yaml new file mode 100644 index 00000000..a69668b8 --- /dev/null +++ b/themes/gothic-victorian-mourning.yaml @@ -0,0 +1,49 @@ +name: "Gothic Victorian Mourning" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1123 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" +colors: + bg: "#0F0A06" + fg: "#D4C5A9" + black: "#0F0A06" + red: "#CD853F" + green: "#8B7355" + yellow: "#DAA520" + blue: "#8B7355" + magenta: "#CD853F" + cyan: "#A68660" + white: "#D4C5A9" + brightBlack: "#3D2817" + brightRed: "#E09F56" + brightGreen: "#8B7355" + brightYellow: "#DAA520" + brightBlue: "#A68660" + brightMagenta: "#CD853F" + brightCyan: "#D4C5A9" + brightWhite: "#F5F0E8" +meta: + mode: "dark" + accent: "yellow" + hue: 64 + contrast: + fg: 72.2 + black: 0 + red: 45.3 + green: 30.4 + yellow: 58.1 + blue: 30.4 + magenta: 45.3 + cyan: 40.2 + white: 72.2 + brightBlack: 0 + brightRed: 57.4 + brightGreen: 30.4 + brightYellow: 58.1 + brightBlue: 40.2 + brightMagenta: 45.3 + brightCyan: 72.2 + brightWhite: 98.2 diff --git a/themes/gothic.yaml b/themes/gothic.yaml new file mode 100644 index 00000000..87f3368b --- /dev/null +++ b/themes/gothic.yaml @@ -0,0 +1,49 @@ +name: "Gothic" +source: + marketplace_id: "ryoh827.gothic-theme-vscode" + version: "0.0.2" + installs: 171 + author: "ryoh827" + repo: "https://github.com/Ryoh827/gothic-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ryoh827.gothic-theme-vscode" +colors: + bg: "#3B3B3B" + fg: "#F2F2F2" + black: "#1B1B1B" + red: "#FF948A" + green: "#A7FF9D" + yellow: "#FFFF00" + blue: "#B3D8FF" + magenta: "#E599FF" + cyan: "#C1FFFD" + white: "#BDBDBD" + brightBlack: "#2B2B2B" + brightRed: "#FF948A" + brightGreen: "#A7FF9D" + brightYellow: "#FFFF00" + brightBlue: "#B3D8FF" + brightMagenta: "#E599FF" + brightCyan: "#C1FFFD" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 91.1 + black: 0 + red: 52.5 + green: 86.1 + yellow: 94.5 + blue: 72.4 + magenta: 54.8 + cyan: 92.1 + white: 58.7 + brightBlack: 0 + brightRed: 52.5 + brightGreen: 86.1 + brightYellow: 94.5 + brightBlue: 72.4 + brightMagenta: 54.8 + brightCyan: 92.1 + brightWhite: 91.1 diff --git a/themes/gourd.yaml b/themes/gourd.yaml new file mode 100644 index 00000000..5709b293 --- /dev/null +++ b/themes/gourd.yaml @@ -0,0 +1,49 @@ +name: "Gourd" +source: + marketplace_id: "Zorbn.gourd-theme" + version: "1.0.7" + installs: 1704 + author: "Zorbn" + repo: "https://github.com/Zorbn/gourd" + url: "https://marketplace.visualstudio.com/items?itemName=Zorbn.gourd-theme" +colors: + bg: "#2D2A2E" + fg: "#EBDBB2" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#D3869B" + brightGreen: "#B8BB26" + brightYellow: "#83A598" + brightBlue: "#EBDBB2" + brightMagenta: "#FE8019" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81.4 + black: 0 + red: 22.2 + green: 39.9 + yellow: 49.5 + blue: 28.6 + magenta: 28.7 + cyan: 38.9 + white: 44.2 + brightBlack: 33.3 + brightRed: 45 + brightGreen: 58.2 + brightYellow: 45.6 + brightBlue: 81.4 + brightMagenta: 49.1 + brightCyan: 57.1 + brightWhite: 81.4 diff --git a/themes/gptheme-dark.yaml b/themes/gptheme-dark.yaml new file mode 100644 index 00000000..88410055 --- /dev/null +++ b/themes/gptheme-dark.yaml @@ -0,0 +1,49 @@ +name: "GPTheme Dark" +source: + marketplace_id: "pedro-b-n.gptheme" + version: "4.0.0" + installs: 1258 + author: "pedro-b-n" + repo: "https://github.com/pedro-b-n/GPTheme" + url: "https://marketplace.visualstudio.com/items?itemName=pedro-b-n.gptheme" +colors: + bg: "#F0F0F0" + fg: "#000000" + black: "#000000" + red: "#860000" + green: "#008A36" + yellow: "#8A8A00" + blue: "#0054AD" + magenta: "#8C008C" + cyan: "#00A9A1" + white: "#5E5E5E" + brightBlack: "#565656" + brightRed: "#D31616" + brightGreen: "#16D160" + brightYellow: "#DBDB0F" + brightBlue: "#2781E2" + brightMagenta: "#C413C4" + brightCyan: "#1CD5CC" + brightWhite: "#B8B8B8" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 97.1 + black: 97.1 + red: 82.8 + green: 61.5 + yellow: 55.2 + blue: 75.7 + magenta: 77.8 + cyan: 46 + white: 73.3 + brightBlack: 76.6 + brightRed: 65.6 + brightGreen: 30 + brightYellow: 13.7 + brightBlue: 57.4 + brightMagenta: 63.3 + brightCyan: 24.9 + brightWhite: 29.4 diff --git a/themes/gptheme.yaml b/themes/gptheme.yaml new file mode 100644 index 00000000..10fa9a5c --- /dev/null +++ b/themes/gptheme.yaml @@ -0,0 +1,49 @@ +name: "GPTheme" +source: + marketplace_id: "LudovicPeysson.nekogpttocolortheme" + version: "0.0.1" + installs: 27 + author: "LudovicPeysson" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LudovicPeysson.nekogpttocolortheme" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#00B414" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#00B615" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 47.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 48.1 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/gracefulbear.yaml b/themes/gracefulbear.yaml new file mode 100644 index 00000000..b53579d4 --- /dev/null +++ b/themes/gracefulbear.yaml @@ -0,0 +1,49 @@ +name: "GracefulBear" +source: + marketplace_id: "GracefulBear.gracefulbear" + version: "0.0.1" + installs: 968 + author: "GracefulBear" + repo: "https://github.com/GracefulBearTheme/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GracefulBear.gracefulbear" +colors: + bg: "#222222" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#94CA6D" + yellow: "#FF805C" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#69C49A" + brightYellow: "#FF71A2" + brightBlue: "#89E6FA" + brightMagenta: "#DE73FF" + brightCyan: "#699AFF" + brightWhite: "#FF7854" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 58 + black: 7.4 + red: 35.3 + green: 63.4 + yellow: 51.5 + blue: 48.2 + magenta: 37.6 + cyan: 51.1 + white: 89.2 + brightBlack: 14 + brightRed: 44.7 + brightGreen: 58.7 + brightYellow: 49.7 + brightBlue: 80.8 + brightMagenta: 48.8 + brightCyan: 46.7 + brightWhite: 49.3 diff --git a/themes/grandblue-pastel.yaml b/themes/grandblue-pastel.yaml new file mode 100644 index 00000000..c64d09a8 --- /dev/null +++ b/themes/grandblue-pastel.yaml @@ -0,0 +1,49 @@ +name: "GrandBlue - Pastel" +source: + marketplace_id: "jojihatzz.grandblue" + version: "0.0.4" + installs: 100 + author: "jojihatzz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jojihatzz.grandblue" +colors: + bg: "#232935" + fg: "#F3F6FA" + black: "#191919" + red: "#FFAAAA" + green: "#95DAB0" + yellow: "#FFBD80" + blue: "#7FAEFB" + magenta: "#FF9FAF" + cyan: "#86F7ED" + white: "#F3F6FA" + brightBlack: "#555555" + brightRed: "#FFAAAA" + brightGreen: "#AFFFD0" + brightYellow: "#FFE7C2" + brightBlue: "#9BBFFB" + brightMagenta: "#FFC2DF" + brightCyan: "#9EE7E0" + brightWhite: "#F7F8FA" +meta: + mode: "dark" + accent: "purple" + hue: 264 + contrast: + fg: 98.1 + black: 0 + red: 65.4 + green: 71.5 + yellow: 71.2 + blue: 54.4 + magenta: 61.8 + cyan: 87.1 + white: 98.1 + brightBlack: 12.5 + brightRed: 65.4 + brightGreen: 93 + brightYellow: 90.6 + brightBlue: 63.6 + brightMagenta: 76.4 + brightCyan: 80.4 + brightWhite: 99.6 diff --git a/themes/grandblue-soft.yaml b/themes/grandblue-soft.yaml new file mode 100644 index 00000000..0d8837fa --- /dev/null +++ b/themes/grandblue-soft.yaml @@ -0,0 +1,49 @@ +name: "GrandBlue - Soft" +source: + marketplace_id: "jojihatzz.grandblue" + version: "0.0.4" + installs: 100 + author: "jojihatzz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jojihatzz.grandblue" +colors: + bg: "#131B22" + fg: "#EBEFF5" + black: "#000000" + red: "#E94D4D" + green: "#2AD98B" + yellow: "#FAF88A" + blue: "#2C82D4" + magenta: "#D055D0" + cyan: "#47C1E0" + white: "#F0F0F0" + brightBlack: "#858585" + brightRed: "#F46565" + brightGreen: "#41E4AA" + brightYellow: "#FAF89A" + brightBlue: "#5AA2F0" + brightMagenta: "#E486E8" + brightCyan: "#4FD3F4" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "pink" + hue: 245 + contrast: + fg: 95.8 + black: 0 + red: 36.6 + green: 67.2 + yellow: 98.4 + blue: 33.4 + magenta: 37.8 + cyan: 60 + white: 96.7 + brightBlack: 35.8 + brightRed: 43.9 + brightGreen: 74 + brightYellow: 98.8 + brightBlue: 48.8 + brightMagenta: 54.4 + brightCyan: 69.6 + brightWhite: 96.7 diff --git a/themes/grandblue.yaml b/themes/grandblue.yaml new file mode 100644 index 00000000..e9b23e99 --- /dev/null +++ b/themes/grandblue.yaml @@ -0,0 +1,49 @@ +name: "GrandBlue" +source: + marketplace_id: "jojihatzz.grandblue" + version: "0.0.4" + installs: 100 + author: "jojihatzz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jojihatzz.grandblue" +colors: + bg: "#0A1015" + fg: "#E2E6EC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 244 + contrast: + fg: 91 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.2 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/grank-blackout.yaml b/themes/grank-blackout.yaml new file mode 100644 index 00000000..3f0b4260 --- /dev/null +++ b/themes/grank-blackout.yaml @@ -0,0 +1,49 @@ +name: "Grank Blackout" +source: + marketplace_id: "samuraikitts.grank" + version: "0.0.4" + installs: 48 + author: "Emmanuel Akala" + repo: "https://github.com/sambabib/grank-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=samuraikitts.grank" +colors: + bg: "#020202" + fg: "#D4D4D4" + black: "#000000" + red: "#F44747" + green: "#4EC9B0" + yellow: "#CE9178" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#9CDCFE" + white: "#D4D4D4" + brightBlack: "#0A0A0A" + brightRed: "#FF6B6B" + brightGreen: "#6FCFB0" + brightYellow: "#DCDCAA" + brightBlue: "#6FB9FF" + brightMagenta: "#D7BAFF" + brightCyan: "#B5DCFE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 39.5 + green: 63 + yellow: 50.5 + blue: 46 + magenta: 48.3 + cyan: 80.2 + white: 80.5 + brightBlack: 0 + brightRed: 49.1 + brightGreen: 67.3 + brightYellow: 83.5 + brightBlue: 61.6 + brightMagenta: 72.5 + brightCyan: 82.5 + brightWhite: 107.9 diff --git a/themes/grank-italics.yaml b/themes/grank-italics.yaml new file mode 100644 index 00000000..686eebd6 --- /dev/null +++ b/themes/grank-italics.yaml @@ -0,0 +1,49 @@ +name: "Grank Italics" +source: + marketplace_id: "samuraikitts.grank" + version: "0.0.4" + installs: 48 + author: "Emmanuel Akala" + repo: "https://github.com/sambabib/grank-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=samuraikitts.grank" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#F44747" + green: "#4EC9B0" + yellow: "#CE9178" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#9CDCFE" + white: "#D4D4D4" + brightBlack: "#2D2D2D" + brightRed: "#FF6B6B" + brightGreen: "#6FCFB0" + brightYellow: "#DCDCAA" + brightBlue: "#6FB9FF" + brightMagenta: "#D7BAFF" + brightCyan: "#B5DCFE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 37.6 + green: 61.1 + yellow: 48.7 + blue: 44.2 + magenta: 46.5 + cyan: 78.4 + white: 78.7 + brightBlack: 0 + brightRed: 47.3 + brightGreen: 65.5 + brightYellow: 81.7 + brightBlue: 59.8 + brightMagenta: 70.6 + brightCyan: 80.7 + brightWhite: 106 diff --git a/themes/grapered.yaml b/themes/grapered.yaml new file mode 100644 index 00000000..c571f54e --- /dev/null +++ b/themes/grapered.yaml @@ -0,0 +1,49 @@ +name: "GrapeRed" +source: + marketplace_id: "TheGrapeking.GrapeRed" + version: "1.0.1" + installs: 26 + author: "The_Grape_king" + repo: "https://github.com/TheGrapeking/Coolred" + url: "https://marketplace.visualstudio.com/items?itemName=TheGrapeking.GrapeRed" +colors: + bg: "#131313" + fg: "#A90000" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 16.9 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/grapevine.yaml b/themes/grapevine.yaml new file mode 100644 index 00000000..71e75bba --- /dev/null +++ b/themes/grapevine.yaml @@ -0,0 +1,49 @@ +name: "grapevine" +source: + marketplace_id: "rautenbergf.grapevine" + version: "1.0.0" + installs: 1602 + author: "rautenbergf" + repo: "https://github.com/rautenbergf/grapevine" + url: "https://marketplace.visualstudio.com/items?itemName=rautenbergf.grapevine" +colors: + bg: "#181921" + fg: "#B4BEC8" + black: "#000000" + red: "#EA2754" + green: "#0CD493" + yellow: "#FEC93B" + blue: "#6269E6" + magenta: "#CC4E91" + cyan: "#2ABBCA" + white: "#C7C7C7" + brightBlack: "#857C7E" + brightRed: "#FF7A98" + brightGreen: "#76FFC9" + brightYellow: "#F9F1A5" + brightBlue: "#78CFFF" + brightMagenta: "#EEA6FF" + brightCyan: "#96FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 65.4 + black: 0 + red: 32.8 + green: 64.8 + yellow: 77.1 + blue: 29.6 + magenta: 32.6 + cyan: 55.6 + white: 71.4 + brightBlack: 32.6 + brightRed: 52.6 + brightGreen: 91.1 + brightYellow: 95.7 + brightBlue: 70.5 + brightMagenta: 67.5 + brightCyan: 93.9 + brightWhite: 106.6 diff --git a/themes/graphlinq-dark.yaml b/themes/graphlinq-dark.yaml new file mode 100644 index 00000000..f2ec1bf9 --- /dev/null +++ b/themes/graphlinq-dark.yaml @@ -0,0 +1,49 @@ +name: "GraphLinq Dark" +source: + marketplace_id: "GraphLinq.graphlinq-vscode-theme" + version: "0.2.1" + installs: 677 + author: "GraphLinq" + repo: "https://github.com/GraphLinq/GraphLinq.VSCodeTheme" + url: "https://marketplace.visualstudio.com/items?itemName=GraphLinq.graphlinq-vscode-theme" +colors: + bg: "#131026" + fg: "#B4A5E7" + black: "#131026" + red: "#FF286F" + green: "#05F24F" + yellow: "#FDFE54" + blue: "#5029E5" + magenta: "#FF007A" + cyan: "#ECE7FD" + white: "#EDE8FD" + brightBlack: "#1C1836" + brightRed: "#2F2955" + brightGreen: "#ECE7FD" + brightYellow: "#FDFE54" + brightBlue: "#5029E5" + brightMagenta: "#FF007A" + brightCyan: "#ECE7FD" + brightWhite: "#ECE7FD" +meta: + mode: "dark" + accent: "red" + hue: 288 + contrast: + fg: 57.8 + black: 0 + red: 39.1 + green: 79.2 + yellow: 101.6 + blue: 16.6 + magenta: 38.4 + cyan: 93.3 + white: 93.9 + brightBlack: 0 + brightRed: 0 + brightGreen: 93.3 + brightYellow: 101.6 + brightBlue: 16.6 + brightMagenta: 38.4 + brightCyan: 93.3 + brightWhite: 93.3 diff --git a/themes/grassrivers-sunset.yaml b/themes/grassrivers-sunset.yaml new file mode 100644 index 00000000..9c191ac9 --- /dev/null +++ b/themes/grassrivers-sunset.yaml @@ -0,0 +1,49 @@ +name: "Grassrivers Sunset" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#2E1A00" + fg: "#FFFACD" + black: "#000000" + red: "#DC143C" + green: "#32CD32" + yellow: "#FFD700" + blue: "#4169E1" + magenta: "#DA70D6" + cyan: "#00CED1" + white: "#FFFACD" + brightBlack: "#8B4513" + brightRed: "#FF6347" + brightGreen: "#90EE90" + brightYellow: "#FFFFE0" + brightBlue: "#6495ED" + brightMagenta: "#DDA0DD" + brightCyan: "#40E0D0" + brightWhite: "#FFFFF0" +meta: + mode: "dark" + accent: "green" + hue: 71 + contrast: + fg: 101.4 + black: 0 + red: 27.5 + green: 59.4 + yellow: 82.2 + blue: 26.5 + magenta: 45.1 + cyan: 63.6 + white: 101.4 + brightBlack: 15.8 + brightRed: 44.8 + brightGreen: 81.5 + brightYellow: 104.5 + brightBlue: 43.6 + brightMagenta: 60 + brightCyan: 72.8 + brightWhite: 105.2 diff --git a/themes/gravel-pit.yaml b/themes/gravel-pit.yaml new file mode 100644 index 00000000..f4d796b6 --- /dev/null +++ b/themes/gravel-pit.yaml @@ -0,0 +1,49 @@ +name: "gravel-pit" +source: + marketplace_id: "BeatScherrer.gravel-pit" + version: "0.48.0" + installs: 325 + author: "Beat Scherrer" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=BeatScherrer.gravel-pit" +colors: + bg: "#1D1F21" + fg: "#C5C8C6" + black: "#282A2E" + red: "#A54242" + green: "#8C9440" + yellow: "#DE935F" + blue: "#5F819D" + magenta: "#85678F" + cyan: "#5E8D87" + white: "#707880" + brightBlack: "#555B65" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#FFEAC3" + brightBlue: "#81A2BE" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#C5C8C6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 70.9 + black: 0 + red: 20.2 + green: 39.8 + yellow: 51.4 + blue: 31.6 + magenta: 26.2 + cyan: 35 + white: 28.6 + brightBlack: 16.4 + brightRed: 35.5 + brightGreen: 61.5 + brightYellow: 93.7 + brightBlue: 47.9 + brightMagenta: 47.9 + brightCyan: 59.9 + brightWhite: 70.9 diff --git a/themes/graveyard.yaml b/themes/graveyard.yaml new file mode 100644 index 00000000..c386a802 --- /dev/null +++ b/themes/graveyard.yaml @@ -0,0 +1,49 @@ +name: "Graveyard" +source: + marketplace_id: "RolandoTaipe.Underdark" + version: "0.1.15" + installs: 7905 + author: "Rolando Taipe" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RolandoTaipe.Underdark" +colors: + bg: "#000000" + fg: "#AFC2FF" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 70.7 + black: 7.5 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/gravity.yaml b/themes/gravity.yaml new file mode 100644 index 00000000..d9a8d52a --- /dev/null +++ b/themes/gravity.yaml @@ -0,0 +1,49 @@ +name: "Gravity" +source: + marketplace_id: "Jesztar.gravity" + version: "0.0.1" + installs: 1322 + author: "Jesztar" + repo: "https://github.com/a-jesztar/Gravity-for-Visual-Studio-Code" + url: "https://marketplace.visualstudio.com/items?itemName=Jesztar.gravity" +colors: + bg: "#1F1F24" + fg: "#C4C8D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 71.2 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.3 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/gray-matter.yaml b/themes/gray-matter.yaml new file mode 100644 index 00000000..abae0c63 --- /dev/null +++ b/themes/gray-matter.yaml @@ -0,0 +1,49 @@ +name: "Gray matter" +source: + marketplace_id: "Priyaank.radiancexx" + version: "1.1.0" + installs: 68 + author: "Priyaank" + repo: "https://github.com/PRIYAANK2510/Radiance" + url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.radiancexx" +colors: + bg: "#1F1F1F" + fg: "#AAAAAA" + black: "#000000" + red: "#D71010" + green: "#19A736" + yellow: "#BAB126" + blue: "#1571FF" + magenta: "#A93191" + cyan: "#0B749D" + white: "#AAAAAA" + brightBlack: "#666666" + brightRed: "#D93C3C" + brightGreen: "#2BEA52" + brightYellow: "#FFEF00" + brightBlue: "#3E62F0" + brightMagenta: "#F772DC" + brightCyan: "#0ABEEA" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 54.3 + black: 0 + red: 25.9 + green: 41.5 + yellow: 56.3 + blue: 30.5 + magenta: 21.2 + cyan: 24.2 + white: 54.3 + brightBlack: 21.1 + brightRed: 29.7 + brightGreen: 74.1 + brightYellow: 93.1 + brightBlue: 25.8 + brightMagenta: 51.5 + brightCyan: 57.7 + brightWhite: 94.8 diff --git a/themes/gray-pastel.yaml b/themes/gray-pastel.yaml new file mode 100644 index 00000000..c806443d --- /dev/null +++ b/themes/gray-pastel.yaml @@ -0,0 +1,49 @@ +name: "Gray Pastel" +source: + marketplace_id: "Falyssa.gray-pastel-theme" + version: "0.0.7" + installs: 70 + author: "Falyssa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Falyssa.gray-pastel-theme" +colors: + bg: "#FFFFFF" + fg: "#808080" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 66.9 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/gray.yaml b/themes/gray.yaml new file mode 100644 index 00000000..134fbd71 --- /dev/null +++ b/themes/gray.yaml @@ -0,0 +1,49 @@ +name: "gray" +source: + marketplace_id: "Riptide.red-riptide-theme-dark" + version: "0.1.0" + installs: 1545 + author: "Riptide" + repo: "https://github.com/red-riptide/red-riptide-theme-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Riptide.red-riptide-theme-dark" +colors: + bg: "#202020" + fg: "#ABABAB" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 54.7 + black: 7.7 + red: 35.6 + green: 59.2 + yellow: 47.5 + blue: 48.5 + magenta: 37.9 + cyan: 51.4 + white: 89.5 + brightBlack: 14.3 + brightRed: 45 + brightGreen: 75.7 + brightYellow: 60.1 + brightBlue: 62.6 + brightMagenta: 49.1 + brightCyan: 66.7 + brightWhite: 105.8 diff --git a/themes/graygraygray.yaml b/themes/graygraygray.yaml new file mode 100644 index 00000000..89eabc13 --- /dev/null +++ b/themes/graygraygray.yaml @@ -0,0 +1,49 @@ +name: "graygraygray" +source: + marketplace_id: "kendama1980.graygraygray" + version: "0.0.1" + installs: 9405 + author: "kendama1980" + repo: "https://github.com/kendama1980/graygraygray" + url: "https://marketplace.visualstudio.com/items?itemName=kendama1980.graygraygray" +colors: + bg: "#C4C2C0" + fg: "#000000" + black: "#000000" + red: "#C00000" + green: "#008000" + yellow: "#808000" + blue: "#0000C0" + magenta: "#B000B0" + cyan: "#00B0B0" + white: "#FFFFE0" + brightBlack: "#505050" + brightRed: "#F04040" + brightGreen: "#80F080" + brightYellow: "#F0F060" + brightBlue: "#2080F0" + brightMagenta: "#F060F0" + brightCyan: "#80F0F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 71.1 + black: 71.1 + red: 44.4 + green: 39.7 + yellow: 33.9 + blue: 59.1 + magenta: 42.8 + cyan: 16.5 + white: 35.3 + brightBlack: 53.1 + brightRed: 29.3 + brightGreen: 11.9 + brightYellow: 22.7 + brightBlue: 30.8 + brightMagenta: 17.4 + brightCyan: 15.8 + brightWhite: 36.7 diff --git a/themes/graymium-theme.yaml b/themes/graymium-theme.yaml new file mode 100644 index 00000000..0cf6664c --- /dev/null +++ b/themes/graymium-theme.yaml @@ -0,0 +1,49 @@ +name: "Graymium Theme" +source: + marketplace_id: "olegfedak.graymium-vscode" + version: "0.2.8" + installs: 1031 + author: "olegfedak" + repo: "https://github.com/olegfedak/graymium" + url: "https://marketplace.visualstudio.com/items?itemName=olegfedak.graymium-vscode" +colors: + bg: "#252627" + fg: "#C9CED6" + black: "#666666" + red: "#E8808C" + green: "#9FCF9F" + yellow: "#E4C586" + blue: "#80B0E8" + magenta: "#CC97DB" + cyan: "#72C4CF" + white: "#FAFAFA" + brightBlack: "#777777" + brightRed: "#E8808C" + brightGreen: "#9FCF9F" + brightYellow: "#E4C586" + brightBlue: "#80B2E8" + brightMagenta: "#CC97DB" + brightCyan: "#62CFCF" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 73.5 + black: 20 + red: 47.4 + green: 67.3 + yellow: 70.7 + blue: 54.6 + magenta: 53.2 + cyan: 60.8 + white: 101.5 + brightBlack: 27.5 + brightRed: 47.4 + brightGreen: 67.3 + brightYellow: 70.7 + brightBlue: 55.4 + brightMagenta: 53.2 + brightCyan: 64.9 + brightWhite: 101.5 diff --git a/themes/grayscale301-light.yaml b/themes/grayscale301-light.yaml new file mode 100644 index 00000000..91a2f6db --- /dev/null +++ b/themes/grayscale301-light.yaml @@ -0,0 +1,49 @@ +name: "GrayScale301-Light" +source: + marketplace_id: "CameronScofield.grayscale301" + version: "0.0.1" + installs: 176 + author: "Cameron Scofield" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CameronScofield.grayscale301" +colors: + bg: "#C0C0C0" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#A5BC00" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#CFD500" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 69.9 + black: 69.9 + red: 37.8 + green: 13.1 + yellow: 0 + blue: 49.9 + magenta: 38.4 + cyan: 24.5 + white: 49.8 + brightBlack: 42.6 + brightRed: 37.8 + brightGreen: 0 + brightYellow: 0 + brightBlue: 49.9 + brightMagenta: 38.4 + brightCyan: 24.5 + brightWhite: 12.3 diff --git a/themes/great-white-bloodloss.yaml b/themes/great-white-bloodloss.yaml new file mode 100644 index 00000000..bcf12600 --- /dev/null +++ b/themes/great-white-bloodloss.yaml @@ -0,0 +1,49 @@ +name: "Great White (Bloodloss)" +source: + marketplace_id: "shark-labs.shark-labs-great-white-theme" + version: "0.6.3" + installs: 21 + author: "theSharkArtist" + repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" +colors: + bg: "#1A0505" + fg: "#E7EDF2" + black: "#1B2229" + red: "#C44F5F" + green: "#4DAAAA" + yellow: "#D9A441" + blue: "#5D8FA8" + magenta: "#C96A7A" + cyan: "#E06B7A" + white: "#D8E8EF" + brightBlack: "#2A3840" + brightRed: "#D56A7A" + brightGreen: "#5DBFBF" + brightYellow: "#E4B754" + brightBlue: "#6EA6C0" + brightMagenta: "#D07D8C" + brightCyan: "#A4DFF4" + brightWhite: "#EDF4F8" +meta: + mode: "dark" + accent: "red" + hue: 23 + contrast: + fg: 95.2 + black: 0 + red: 30.6 + green: 48.7 + yellow: 57.7 + blue: 38.6 + magenta: 38.1 + cyan: 42.7 + white: 90.9 + brightBlack: 0 + brightRed: 40.3 + brightGreen: 59.4 + brightYellow: 66.8 + brightBlue: 49.8 + brightMagenta: 45 + brightCyan: 81.4 + brightWhite: 99.6 diff --git a/themes/great-white-dark.yaml b/themes/great-white-dark.yaml new file mode 100644 index 00000000..67815016 --- /dev/null +++ b/themes/great-white-dark.yaml @@ -0,0 +1,49 @@ +name: "Great White (Dark)" +source: + marketplace_id: "shark-labs.shark-labs-great-white-theme" + version: "0.6.3" + installs: 21 + author: "theSharkArtist" + repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" +colors: + bg: "#0E1A22" + fg: "#D8E8EF" + black: "#1B2229" + red: "#C44F5F" + green: "#4DAAAA" + yellow: "#D9A441" + blue: "#5D8FA8" + magenta: "#C96A7A" + cyan: "#9FC7D8" + white: "#D8E8EF" + brightBlack: "#2A3840" + brightRed: "#D56A7A" + brightGreen: "#5DBFBF" + brightYellow: "#E4B754" + brightBlue: "#6EA6C0" + brightMagenta: "#D07D8C" + brightCyan: "#A4DFF4" + brightWhite: "#EDF4F8" +meta: + mode: "dark" + accent: "red" + hue: 239 + contrast: + fg: 90 + black: 0 + red: 29.7 + green: 47.8 + yellow: 56.8 + blue: 37.7 + magenta: 37.2 + cyan: 67.9 + white: 90 + brightBlack: 0 + brightRed: 39.4 + brightGreen: 58.5 + brightYellow: 65.9 + brightBlue: 48.9 + brightMagenta: 44.1 + brightCyan: 80.5 + brightWhite: 98.7 diff --git a/themes/great-white-frost.yaml b/themes/great-white-frost.yaml new file mode 100644 index 00000000..46cf618a --- /dev/null +++ b/themes/great-white-frost.yaml @@ -0,0 +1,49 @@ +name: "Great White (Frost)" +source: + marketplace_id: "shark-labs.shark-labs-great-white-theme" + version: "0.6.3" + installs: 21 + author: "theSharkArtist" + repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" +colors: + bg: "#F7F8F7" + fg: "#1A2630" + black: "#1B2229" + red: "#C44F5F" + green: "#4DAAAA" + yellow: "#D9A441" + blue: "#5D8FA8" + magenta: "#C96A7A" + cyan: "#9FC7D8" + white: "#D8E8EF" + brightBlack: "#2A3840" + brightRed: "#D56A7A" + brightGreen: "#5DBFBF" + brightYellow: "#E4B754" + brightBlue: "#6EA6C0" + brightMagenta: "#D07D8C" + brightCyan: "#A4DFF4" + brightWhite: "#EDF4F8" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 97.9 + black: 98.7 + red: 66.4 + green: 48.5 + yellow: 39.8 + blue: 58.4 + magenta: 58.9 + cyan: 29.2 + white: 8.4 + brightBlack: 93.3 + brightRed: 56.7 + brightGreen: 38.1 + brightYellow: 31 + brightBlue: 47.4 + brightMagenta: 52.1 + brightCyan: 17.2 + brightWhite: 0 diff --git a/themes/great-white-high-contrast-dark.yaml b/themes/great-white-high-contrast-dark.yaml new file mode 100644 index 00000000..68d123ca --- /dev/null +++ b/themes/great-white-high-contrast-dark.yaml @@ -0,0 +1,49 @@ +name: "Great White (High Contrast Dark)" +source: + marketplace_id: "shark-labs.shark-labs-great-white-theme" + version: "0.6.3" + installs: 21 + author: "theSharkArtist" + repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" +colors: + bg: "#0B0F12" + fg: "#F6FBFF" + black: "#1B2229" + red: "#C44F5F" + green: "#4DAAAA" + yellow: "#D9A441" + blue: "#5D8FA8" + magenta: "#C96A7A" + cyan: "#9FC7D8" + white: "#D8E8EF" + brightBlack: "#2A3840" + brightRed: "#D56A7A" + brightGreen: "#5DBFBF" + brightYellow: "#E4B754" + brightBlue: "#6EA6C0" + brightMagenta: "#D07D8C" + brightCyan: "#A4DFF4" + brightWhite: "#EDF4F8" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 104.4 + black: 0 + red: 30.5 + green: 48.6 + yellow: 57.6 + blue: 38.6 + magenta: 38 + cyan: 68.7 + white: 90.8 + brightBlack: 0 + brightRed: 40.3 + brightGreen: 59.4 + brightYellow: 66.8 + brightBlue: 49.8 + brightMagenta: 44.9 + brightCyan: 81.4 + brightWhite: 99.5 diff --git a/themes/great-white-high-contrast-light.yaml b/themes/great-white-high-contrast-light.yaml new file mode 100644 index 00000000..9c0b5afa --- /dev/null +++ b/themes/great-white-high-contrast-light.yaml @@ -0,0 +1,49 @@ +name: "Great White (High Contrast Light)" +source: + marketplace_id: "shark-labs.shark-labs-great-white-theme" + version: "0.6.3" + installs: 21 + author: "theSharkArtist" + repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" +colors: + bg: "#FFFFFF" + fg: "#12202A" + black: "#1B2229" + red: "#C44F5F" + green: "#4DAAAA" + yellow: "#D9A441" + blue: "#5D8FA8" + magenta: "#C96A7A" + cyan: "#9FC7D8" + white: "#D8E8EF" + brightBlack: "#2A3840" + brightRed: "#D56A7A" + brightGreen: "#5DBFBF" + brightYellow: "#E4B754" + brightBlue: "#6EA6C0" + brightMagenta: "#D07D8C" + brightCyan: "#A4DFF4" + brightWhite: "#EDF4F8" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 103.5 + black: 103 + red: 70.8 + green: 52.9 + yellow: 44.2 + blue: 62.7 + magenta: 63.3 + cyan: 33.5 + white: 12.7 + brightBlack: 97.6 + brightRed: 61.1 + brightGreen: 42.5 + brightYellow: 35.4 + brightBlue: 51.8 + brightMagenta: 56.5 + brightCyan: 21.6 + brightWhite: 0 diff --git a/themes/great-white-light.yaml b/themes/great-white-light.yaml new file mode 100644 index 00000000..89b64b52 --- /dev/null +++ b/themes/great-white-light.yaml @@ -0,0 +1,49 @@ +name: "Great White (Light)" +source: + marketplace_id: "shark-labs.shark-labs-great-white-theme" + version: "0.6.3" + installs: 21 + author: "theSharkArtist" + repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" +colors: + bg: "#F1F4F5" + fg: "#182830" + black: "#1B2229" + red: "#C44F5F" + green: "#4DAAAA" + yellow: "#D9A441" + blue: "#5D8FA8" + magenta: "#C96A7A" + cyan: "#9FC7D8" + white: "#D8E8EF" + brightBlack: "#2A3840" + brightRed: "#D56A7A" + brightGreen: "#5DBFBF" + brightYellow: "#E4B754" + brightBlue: "#6EA6C0" + brightMagenta: "#D07D8C" + brightCyan: "#A4DFF4" + brightWhite: "#EDF4F8" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 95.1 + black: 96.1 + red: 63.9 + green: 46 + yellow: 37.3 + blue: 55.8 + magenta: 56.4 + cyan: 26.6 + white: 0 + brightBlack: 90.7 + brightRed: 54.2 + brightGreen: 35.6 + brightYellow: 28.5 + brightBlue: 44.9 + brightMagenta: 49.6 + brightCyan: 14.7 + brightWhite: 0 diff --git a/themes/great-white-storm.yaml b/themes/great-white-storm.yaml new file mode 100644 index 00000000..f0eb9d58 --- /dev/null +++ b/themes/great-white-storm.yaml @@ -0,0 +1,49 @@ +name: "Great White (Storm)" +source: + marketplace_id: "shark-labs.shark-labs-great-white-theme" + version: "0.6.3" + installs: 21 + author: "theSharkArtist" + repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" +colors: + bg: "#111820" + fg: "#E7EDF2" + black: "#1B2229" + red: "#C44F5F" + green: "#4DAAAA" + yellow: "#D9A441" + blue: "#5D8FA8" + magenta: "#C96A7A" + cyan: "#9FC7D8" + white: "#D8E8EF" + brightBlack: "#2A3840" + brightRed: "#D56A7A" + brightGreen: "#5DBFBF" + brightYellow: "#E4B754" + brightBlue: "#6EA6C0" + brightMagenta: "#D07D8C" + brightCyan: "#A4DFF4" + brightWhite: "#EDF4F8" +meta: + mode: "dark" + accent: "red" + hue: 252 + contrast: + fg: 94.5 + black: 0 + red: 29.8 + green: 47.9 + yellow: 56.9 + blue: 37.9 + magenta: 37.3 + cyan: 68 + white: 90.1 + brightBlack: 0 + brightRed: 39.6 + brightGreen: 58.6 + brightYellow: 66.1 + brightBlue: 49.1 + brightMagenta: 44.2 + brightCyan: 80.7 + brightWhite: 98.8 diff --git a/themes/great-white.yaml b/themes/great-white.yaml new file mode 100644 index 00000000..d4714d42 --- /dev/null +++ b/themes/great-white.yaml @@ -0,0 +1,49 @@ +name: "Great White" +source: + marketplace_id: "thehedgefrog.greatwhite" + version: "1.0.0" + installs: 5908 + author: "thehedgefrog" + repo: "https://github.com/thehedgefrog/great-white-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thehedgefrog.greatwhite" +colors: + bg: "#464A51" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#003C7D" + magenta: "#D165D1" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#ABABAB" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#E895E8" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 94.9 + black: 13.5 + red: 14.7 + green: 41 + yellow: 73.6 + blue: 0 + magenta: 29.6 + cyan: 35.5 + white: 78 + brightBlack: 43.8 + brightRed: 26.5 + brightGreen: 51.5 + brightYellow: 83.6 + brightBlue: 28 + brightMagenta: 47.8 + brightCyan: 43.4 + brightWhite: 78 diff --git a/themes/greblue.yaml b/themes/greblue.yaml new file mode 100644 index 00000000..68975b3f --- /dev/null +++ b/themes/greblue.yaml @@ -0,0 +1,49 @@ +name: "Greblue" +source: + marketplace_id: "AXENOX.greblue" + version: "0.0.2" + installs: 57 + author: "AXENOX" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AXENOX.greblue" +colors: + bg: "#171D1D" + fg: "#8C8C8C" + black: "#000000" + red: "#CD3131" + green: "#1ABC5A" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#B4B4B4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#07E28A" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 39 + black: 0 + red: 26.2 + green: 51.9 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 60.2 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 71.2 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.5 diff --git a/themes/greeeeen.yaml b/themes/greeeeen.yaml new file mode 100644 index 00000000..317317b2 --- /dev/null +++ b/themes/greeeeen.yaml @@ -0,0 +1,49 @@ +name: "Greeeeen" +source: + marketplace_id: "Kakamotobi.greeeeen" + version: "1.0.0" + installs: 44 + author: "Kakamotobi" + repo: "https://github.com/Kakamotobi/Greeeeen" + url: "https://marketplace.visualstudio.com/items?itemName=Kakamotobi.greeeeen" +colors: + bg: "#2E412E" + fg: "#FEFDD5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 145 + contrast: + fg: 96.3 + black: 8.5 + red: 19.1 + green: 45.4 + yellow: 78 + blue: 19.8 + magenta: 22.1 + cyan: 39.9 + white: 82.4 + brightBlack: 14.4 + brightRed: 30.9 + brightGreen: 55.9 + brightYellow: 88 + brightBlue: 32.4 + brightMagenta: 37.7 + brightCyan: 47.8 + brightWhite: 82.4 diff --git a/themes/green-coffee.yaml b/themes/green-coffee.yaml new file mode 100644 index 00000000..88e7e025 --- /dev/null +++ b/themes/green-coffee.yaml @@ -0,0 +1,49 @@ +name: "Green Coffee" +source: + marketplace_id: "Rajeshwaran.developer-theme-dark" + version: "5.0.0" + installs: 162112 + author: "Rajeshwaran" + repo: "https://github.com/Rajeshwaran2001/developer-theme-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Rajeshwaran.developer-theme-dark" +colors: + bg: "#0D0202" + fg: "#C9A4A4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#ECB1B1" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFE7E7" +meta: + mode: "dark" + accent: "pink" + hue: 23 + contrast: + fg: 57.7 + black: 0 + red: 27.7 + green: 53.9 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 68.4 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 95.7 diff --git a/themes/green-geek.yaml b/themes/green-geek.yaml new file mode 100644 index 00000000..fbd64cd6 --- /dev/null +++ b/themes/green-geek.yaml @@ -0,0 +1,49 @@ +name: "Green-Geek" +source: + marketplace_id: "blackfur.green-geeko" + version: "0.0.1" + installs: 548 + author: "Blackfur" + repo: "https://github.com/DasBlackfur/green-geeko" + url: "https://marketplace.visualstudio.com/items?itemName=blackfur.green-geeko" +colors: + bg: "#1E1E1E" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#0FFFFF" + white: "#E5E5E5" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 0 + red: 35.7 + green: 84.6 + yellow: 100.9 + blue: 14.4 + magenta: 44.4 + cyan: 90.4 + white: 89.2 + brightBlack: 0 + brightRed: 35.7 + brightGreen: 84.6 + brightYellow: 100.9 + brightBlue: 14.4 + brightMagenta: 44.4 + brightCyan: 90.3 + brightWhite: 89.2 diff --git a/themes/green-kingdom.yaml b/themes/green-kingdom.yaml new file mode 100644 index 00000000..243d78c7 --- /dev/null +++ b/themes/green-kingdom.yaml @@ -0,0 +1,49 @@ +name: "Green Kingdom" +source: + marketplace_id: "YesCode.inspiration" + version: "0.0.19" + installs: 1076 + author: "YesCode" + repo: "https://github.com/yesomac/inspiration_themevsc" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" +colors: + bg: "#2D2D53" + fg: "#D1D1F1" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#0687FF" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 282 + contrast: + fg: 74.8 + black: 0 + red: 37.6 + green: 56.6 + yellow: 68.6 + blue: 43.1 + magenta: 15.1 + cyan: 45 + white: 42.8 + brightBlack: 14.2 + brightRed: 37.6 + brightGreen: 34 + brightYellow: 75.3 + brightBlue: 14.3 + brightMagenta: 15.1 + brightCyan: 45 + brightWhite: 94.4 diff --git a/themes/green-low-contrast.yaml b/themes/green-low-contrast.yaml new file mode 100644 index 00000000..cfaa2207 --- /dev/null +++ b/themes/green-low-contrast.yaml @@ -0,0 +1,49 @@ +name: "green-low-contrast" +source: + marketplace_id: "cyberSpice.green-low-contrast" + version: "0.26.0" + installs: 1726 + author: "cyberSpice" + repo: "https://github.com/alxspice/green-low-contrast-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cyberSpice.green-low-contrast" +colors: + bg: "#233034" + fg: "#83A38F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 219 + contrast: + fg: 43.9 + black: 0 + red: 23.1 + green: 49.3 + yellow: 82 + blue: 23.8 + magenta: 26.1 + cyan: 43.9 + white: 86.4 + brightBlack: 18.4 + brightRed: 34.9 + brightGreen: 59.9 + brightYellow: 92 + brightBlue: 36.3 + brightMagenta: 41.7 + brightCyan: 51.7 + brightWhite: 86.4 diff --git a/themes/green-papper.yaml b/themes/green-papper.yaml new file mode 100644 index 00000000..40d4793b --- /dev/null +++ b/themes/green-papper.yaml @@ -0,0 +1,49 @@ +name: "Green Papper" +source: + marketplace_id: "Suntechnic.green-papper" + version: "0.4.1" + installs: 1082 + author: "Александр Маджугин" + repo: "https://github.com/Suntechnic/green-papper" + url: "https://marketplace.visualstudio.com/items?itemName=Suntechnic.green-papper" +colors: + bg: "#FCFAFE" + fg: "#222222" + black: "#000000" + red: "#F51818" + green: "#43B244" + yellow: "#F2AE49" + blue: "#CDD9CF" + magenta: "#A37ACC" + cyan: "#207F4C" + white: "#6C7880" + brightBlack: "#6C7680" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#FF9940" + brightBlue: "#55B4D4" + brightMagenta: "#FE76FF" + brightCyan: "#39CBCC" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 100.3 + black: 103.5 + red: 63.7 + green: 49.9 + yellow: 34 + blue: 19.1 + magenta: 58.6 + cyan: 71.6 + white: 68.9 + brightBlack: 69.6 + brightRed: 51.8 + brightGreen: 45.9 + brightYellow: 38.7 + brightBlue: 43.9 + brightMagenta: 41.6 + brightCyan: 35.3 + brightWhite: 103.5 diff --git a/themes/green-theme.yaml b/themes/green-theme.yaml new file mode 100644 index 00000000..662f67ae --- /dev/null +++ b/themes/green-theme.yaml @@ -0,0 +1,49 @@ +name: "green-theme" +source: + marketplace_id: "flyyn2.green-theme" + version: "1.0.2" + installs: 2721 + author: "flyyn2" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=flyyn2.green-theme" +colors: + bg: "#CCE8CF" + fg: "#46433C" + black: "#333333" + red: "#8F1B46" + green: "#62841F" + yellow: "#84841F" + blue: "#5566A1" + magenta: "#644C8F" + cyan: "#438893" + white: "#868683" + brightBlack: "#666666" + brightRed: "#C11D59" + brightGreen: "#557417" + brightYellow: "#93931E" + brightBlue: "#4B5994" + brightMagenta: "#5E468B" + brightCyan: "#326C76" + brightWhite: "#878784" +meta: + mode: "light" + accent: "red" + hue: 148 + contrast: + fg: 75.1 + black: 80.9 + red: 70.6 + green: 52.1 + yellow: 49 + blue: 59.7 + magenta: 66.5 + cyan: 49.8 + white: 46.3 + brightBlack: 60.9 + brightRed: 59.7 + brightGreen: 58.9 + brightYellow: 42 + brightBlue: 65 + brightMagenta: 68.8 + brightCyan: 61.7 + brightWhite: 45.8 diff --git a/themes/green-tree.yaml b/themes/green-tree.yaml new file mode 100644 index 00000000..321a16f6 --- /dev/null +++ b/themes/green-tree.yaml @@ -0,0 +1,49 @@ +name: "Green Tree" +source: + marketplace_id: "stevennyang.green-tree" + version: "1.2.1" + installs: 5715 + author: "Steven N. Yang" + repo: "https://github.com/snyang/vscode-theme-green-tree" + url: "https://marketplace.visualstudio.com/items?itemName=stevennyang.green-tree" +colors: + bg: "#F2FFF3" + fg: "#232323" + black: "#000000" + red: "#FF0000" + green: "#3CB371" + yellow: "#BDB76B" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00BFFF" + white: "#3CB371" + brightBlack: "#708090" + brightRed: "#8B0000" + brightGreen: "#3CB371" + brightYellow: "#BDB76B" + brightBlue: "#00008B" + brightMagenta: "#8B008B" + brightCyan: "#87CEFA" + brightWhite: "#3CB371" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 100.6 + black: 103.9 + red: 62 + green: 49.3 + yellow: 38.2 + blue: 83.7 + magenta: 53.5 + cyan: 38.8 + white: 49.3 + brightBlack: 65.7 + brightRed: 88.6 + brightGreen: 49.3 + brightYellow: 38.2 + brightBlue: 97.9 + brightMagenta: 84.9 + brightCyan: 28.6 + brightWhite: 49.3 diff --git a/themes/green-valley-forest.yaml b/themes/green-valley-forest.yaml new file mode 100644 index 00000000..7369a44b --- /dev/null +++ b/themes/green-valley-forest.yaml @@ -0,0 +1,49 @@ +name: "Green Valley Forest" +source: + marketplace_id: "helciopenha.green-valley" + version: "1.0.1" + installs: 773 + author: "Helcio Penha" + repo: "https://github.com/helciopenha/green-valley-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" +colors: + bg: "#121212" + fg: "#F5F5F5" + black: "#21222C" + red: "#FF5C57" + green: "#00B46E" + yellow: "#FFD866" + blue: "#A480FF" + magenta: "#FF6B9D" + cyan: "#25D0D0" + white: "#F5F5F5" + brightBlack: "#4C9B7D" + brightRed: "#FF8078" + brightGreen: "#00E185" + brightYellow: "#FFDF85" + brightBlue: "#C4A9FF" + brightMagenta: "#FF8FB2" + brightCyan: "#70E0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 100.7 + black: 0 + red: 45.1 + green: 49.5 + yellow: 84.8 + blue: 45.4 + magenta: 50 + cyan: 66.1 + white: 100.7 + brightBlack: 40.5 + brightRed: 53.9 + brightGreen: 71.5 + brightYellow: 88.4 + brightBlue: 63 + brightMagenta: 60 + brightCyan: 76.9 + brightWhite: 107.3 diff --git a/themes/green-valley-matrix.yaml b/themes/green-valley-matrix.yaml new file mode 100644 index 00000000..6fccc359 --- /dev/null +++ b/themes/green-valley-matrix.yaml @@ -0,0 +1,49 @@ +name: "Green Valley Matrix" +source: + marketplace_id: "helciopenha.green-valley" + version: "1.0.1" + installs: 773 + author: "Helcio Penha" + repo: "https://github.com/helciopenha/green-valley-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" +colors: + bg: "#121212" + fg: "#F5F5F5" + black: "#21222C" + red: "#FF5C57" + green: "#00E185" + yellow: "#FFD866" + blue: "#A480FF" + magenta: "#00B46E" + cyan: "#25D0D0" + white: "#F5F5F5" + brightBlack: "#7A8C99" + brightRed: "#FFBFB3" + brightGreen: "#B9FFB3" + brightYellow: "#FFFFB3" + brightBlue: "#BFB3FF" + brightMagenta: "#FFB3D9" + brightCyan: "#B3FFF2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 100.7 + black: 0 + red: 45.1 + green: 71.5 + yellow: 84.8 + blue: 45.4 + magenta: 49.5 + cyan: 66.1 + white: 100.7 + brightBlack: 38.8 + brightRed: 76.4 + brightGreen: 96 + brightYellow: 104.4 + brightBlue: 66 + brightMagenta: 73.5 + brightCyan: 97.9 + brightWhite: 107.3 diff --git a/themes/green-valley-midnight.yaml b/themes/green-valley-midnight.yaml new file mode 100644 index 00000000..4fcf9683 --- /dev/null +++ b/themes/green-valley-midnight.yaml @@ -0,0 +1,49 @@ +name: "Green Valley Midnight" +source: + marketplace_id: "helciopenha.green-valley" + version: "1.0.1" + installs: 773 + author: "Helcio Penha" + repo: "https://github.com/helciopenha/green-valley-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" +colors: + bg: "#F5F5F5" + fg: "#333333" + black: "#000000" + red: "#DE3A3A" + green: "#00B46E" + yellow: "#D9BC4A" + blue: "#186CE0" + magenta: "#A345B7" + cyan: "#00965B" + white: "#CCCCCC" + brightBlack: "#666666" + brightRed: "#FF4E4E" + brightGreen: "#33C88A" + brightYellow: "#E9D16C" + brightBlue: "#3A9CFF" + brightMagenta: "#CF73E6" + brightCyan: "#00D880" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.7 + black: 100.1 + red: 63.1 + green: 45.8 + yellow: 29.2 + blue: 67.5 + magenta: 68.7 + cyan: 59 + white: 21.3 + brightBlack: 72.8 + brightRed: 52.6 + brightGreen: 35.8 + brightYellow: 18.2 + brightBlue: 48.1 + brightMagenta: 48.9 + brightCyan: 29.1 + brightWhite: 0 diff --git a/themes/green-valley-mint.yaml b/themes/green-valley-mint.yaml new file mode 100644 index 00000000..d4b98266 --- /dev/null +++ b/themes/green-valley-mint.yaml @@ -0,0 +1,49 @@ +name: "Green Valley Mint" +source: + marketplace_id: "helciopenha.green-valley" + version: "1.0.1" + installs: 773 + author: "Helcio Penha" + repo: "https://github.com/helciopenha/green-valley-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" +colors: + bg: "#F7F7F7" + fg: "#1A1A1A" + black: "#F0F0F0" + red: "#CF2929" + green: "#00A362" + yellow: "#B58A00" + blue: "#7748B7" + magenta: "#D1336C" + cyan: "#008C99" + white: "#1A1A1A" + brightBlack: "#5AAD88" + brightRed: "#E74E4E" + brightGreen: "#00B974" + brightYellow: "#D6A81F" + brightBlue: "#9B75D7" + brightMagenta: "#E55A87" + brightCyan: "#1CADB7" + brightWhite: "#333333" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.5 + black: 0 + red: 69.5 + green: 54.6 + yellow: 53.9 + blue: 75.6 + magenta: 67 + cyan: 62.2 + white: 99.5 + brightBlack: 47.5 + brightRed: 59.2 + brightGreen: 44.7 + brightYellow: 38.6 + brightBlue: 58.1 + brightMagenta: 56.1 + brightCyan: 47.5 + brightWhite: 93.9 diff --git a/themes/green-valley-neo.yaml b/themes/green-valley-neo.yaml new file mode 100644 index 00000000..31a70975 --- /dev/null +++ b/themes/green-valley-neo.yaml @@ -0,0 +1,49 @@ +name: "Green Valley Neo" +source: + marketplace_id: "helciopenha.green-valley" + version: "1.0.1" + installs: 773 + author: "Helcio Penha" + repo: "https://github.com/helciopenha/green-valley-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" +colors: + bg: "#121212" + fg: "#F5F5F5" + black: "#21222C" + red: "#FF5C57" + green: "#00B46E" + yellow: "#FFD866" + blue: "#A480FF" + magenta: "#FF6B9D" + cyan: "#25D0D0" + white: "#F5F5F5" + brightBlack: "#7A8C99" + brightRed: "#FF8078" + brightGreen: "#00E185" + brightYellow: "#FFDF85" + brightBlue: "#C4A9FF" + brightMagenta: "#FF8FB2" + brightCyan: "#70E0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 100.7 + black: 0 + red: 45.1 + green: 49.5 + yellow: 84.8 + blue: 45.4 + magenta: 50 + cyan: 66.1 + white: 100.7 + brightBlack: 38.8 + brightRed: 53.9 + brightGreen: 71.5 + brightYellow: 88.4 + brightBlue: 63 + brightMagenta: 60 + brightCyan: 76.9 + brightWhite: 107.3 diff --git a/themes/green-water.yaml b/themes/green-water.yaml new file mode 100644 index 00000000..dc01cfb1 --- /dev/null +++ b/themes/green-water.yaml @@ -0,0 +1,49 @@ +name: "Green Water" +source: + marketplace_id: "Green-Water-Theme.green-water" + version: "0.0.1" + installs: 1157 + author: "Green-Water-Theme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Green-Water-Theme.green-water" +colors: + bg: "#18181B" + fg: "#FFFFFF" + black: "#000000" + red: "#B83360" + green: "#21A771" + yellow: "#9E9D24" + blue: "#2472C8" + magenta: "#AA76D5" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#EC407A" + brightGreen: "#23D18B" + brightYellow: "#C7C531" + brightBlue: "#3B8EEA" + brightMagenta: "#C682FF" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 106.7 + black: 0 + red: 23.2 + green: 43.5 + yellow: 45.8 + blue: 27.3 + magenta: 39.8 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 36.7 + brightGreen: 63.4 + brightYellow: 67.3 + brightBlue: 39.9 + brightMagenta: 50.1 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/green-yow.yaml b/themes/green-yow.yaml new file mode 100644 index 00000000..2ef3961f --- /dev/null +++ b/themes/green-yow.yaml @@ -0,0 +1,49 @@ +name: "Green Yow" +source: + marketplace_id: "AufaRijal.green-yow" + version: "0.0.1" + installs: 251 + author: "Aufa Rijal" + repo: "https://github.com/aufarijaal/green-yow" + url: "https://marketplace.visualstudio.com/items?itemName=AufaRijal.green-yow" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#137C5D" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#4CA188" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 24.8 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 42.1 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/green.yaml b/themes/green.yaml new file mode 100644 index 00000000..2dca0c5d --- /dev/null +++ b/themes/green.yaml @@ -0,0 +1,49 @@ +name: "green" +source: + marketplace_id: "natecrow.consonance-themes" + version: "1.2.0" + installs: 317 + author: "natecrow" + repo: "https://github.com/natecrow/consonance-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" +colors: + bg: "#111111" + fg: "#BCC8D9" + black: "#000000" + red: "#B0CFAE" + green: "#5EAF61" + yellow: "#87D987" + blue: "#6D7888" + magenta: "#35873C" + cyan: "#88A586" + white: "#D8E4F5" + brightBlack: "#6D7888" + brightRed: "#B0CFAE" + brightGreen: "#5EAF61" + brightYellow: "#87D987" + brightBlue: "#6D7888" + brightMagenta: "#35873C" + brightCyan: "#88A586" + brightWhite: "#F4FFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 72.1 + black: 0 + red: 72 + green: 49.2 + yellow: 71.8 + blue: 30.1 + magenta: 30.3 + cyan: 49 + white: 89.2 + brightBlack: 30.1 + brightRed: 72 + brightGreen: 49.2 + brightYellow: 71.8 + brightBlue: 30.1 + brightMagenta: 30.3 + brightCyan: 49 + brightWhite: 105.9 diff --git a/themes/green500.yaml b/themes/green500.yaml new file mode 100644 index 00000000..48de12b4 --- /dev/null +++ b/themes/green500.yaml @@ -0,0 +1,49 @@ +name: "Green500" +source: + marketplace_id: "ArturGuedx.green500" + version: "0.0.5" + installs: 364 + author: "ArturGuedx" + repo: "https://github.com/ArturGuedes/green500" + url: "https://marketplace.visualstudio.com/items?itemName=ArturGuedx.green500" +colors: + bg: "#060606" + fg: "#F5F5F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.3 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/greenbreeze-dark.yaml b/themes/greenbreeze-dark.yaml new file mode 100644 index 00000000..8dae5416 --- /dev/null +++ b/themes/greenbreeze-dark.yaml @@ -0,0 +1,49 @@ +name: "GreenBreeze-Dark" +source: + marketplace_id: "icy9ptcl.greenbreeze-dark" + version: "0.0.1" + installs: 237 + author: "icy9ptcl" + repo: "https://github.com/Icy9ptcl/GreenBreeze-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=icy9ptcl.greenbreeze-dark" +colors: + bg: "#242C24" + fg: "#F6F6F6" + black: "#6F6F6F" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#026BDE" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#DBD9D9" + brightBlack: "#969696" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#D7D415" + brightBlue: "#5673EC" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 145 + contrast: + fg: 98.1 + black: 23.1 + red: 23.9 + green: 48.9 + yellow: 40 + blue: 23.9 + magenta: 23.3 + cyan: 37.3 + white: 80 + brightBlack: 41.8 + brightRed: 23.9 + brightGreen: 57.5 + brightYellow: 73.2 + brightBlue: 29.6 + brightMagenta: 23.3 + brightCyan: 37.3 + brightWhite: 104.1 diff --git a/themes/greenbreeze-light.yaml b/themes/greenbreeze-light.yaml new file mode 100644 index 00000000..c9780274 --- /dev/null +++ b/themes/greenbreeze-light.yaml @@ -0,0 +1,49 @@ +name: "GreenBreeze-Light" +source: + marketplace_id: "icy9ptcl.greenbreeze-light" + version: "0.0.4" + installs: 701 + author: "icy9ptcl" + repo: "https://github.com/Icy9ptcl/GreenBreeze-Light-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=icy9ptcl.greenbreeze-light" +colors: + bg: "#F3F3F3" + fg: "#282828" + black: "#000000" + red: "#9E2525" + green: "#00BC00" + yellow: "#A59504" + blue: "#3A77B8" + magenta: "#8A098A" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#D7D415" + brightBlue: "#68A6E8" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 94.4 + black: 98.9 + red: 78.1 + green: 42.1 + yellow: 49.9 + blue: 64.9 + magenta: 80 + cyan: 53.4 + white: 78.8 + brightBlack: 71.6 + brightRed: 66.8 + brightGreen: 33.8 + brightYellow: 18.9 + brightBlue: 42.8 + brightMagenta: 67.4 + brightCyan: 53.4 + brightWhite: 41.3 diff --git a/themes/greenbyte-dark.yaml b/themes/greenbyte-dark.yaml new file mode 100644 index 00000000..7ec409d0 --- /dev/null +++ b/themes/greenbyte-dark.yaml @@ -0,0 +1,49 @@ +name: "Greenbyte Dark" +source: + marketplace_id: "mmnalaka.greenbyte" + version: "0.2.0" + installs: 12 + author: "mmnalaka" + repo: "https://github.com/mmNalaka/greenbyte" + url: "https://marketplace.visualstudio.com/items?itemName=mmnalaka.greenbyte" +colors: + bg: "#191D22" + fg: "#ABB2BF" + black: "#151720" + red: "#E06C75" + green: "#0E5736" + yellow: "#F5B187" + blue: "#86AAEC" + magenta: "#9D88D0" + cyan: "#93CEE9" + white: "#CBCED3" + brightBlack: "#1C1E27" + brightRed: "#DD6777" + brightGreen: "#76ECB7" + brightYellow: "#DBD594" + brightBlue: "#86AAEC" + brightMagenta: "#9D88D0" + brightCyan: "#93CEE9" + brightWhite: "#A5B6CF" +meta: + mode: "dark" + accent: "red" + hue: 254 + contrast: + fg: 58.7 + black: 0 + red: 41.4 + green: 11.3 + yellow: 67 + blue: 54.3 + magenta: 42.7 + cyan: 70.3 + white: 75.1 + brightBlack: 0 + brightRed: 39.7 + brightGreen: 80.3 + brightYellow: 78 + brightBlue: 54.3 + brightMagenta: 42.7 + brightCyan: 70.3 + brightWhite: 60.4 diff --git a/themes/greencloud.yaml b/themes/greencloud.yaml new file mode 100644 index 00000000..4c3b0633 --- /dev/null +++ b/themes/greencloud.yaml @@ -0,0 +1,49 @@ +name: "GreenCloud" +source: + marketplace_id: "GauravSinha.greencloud" + version: "2.0.6" + installs: 713 + author: "Gaurav Sinha" + repo: "https://github.com/gauravsinhaweb/greencloud" + url: "https://marketplace.visualstudio.com/items?itemName=GauravSinha.greencloud" +colors: + bg: "#001F26" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 215 + contrast: + fg: 106.2 + black: 0 + red: 26 + green: 52.3 + yellow: 85 + blue: 26.8 + magenta: 29.1 + cyan: 46.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 37.9 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.4 diff --git a/themes/greeney-v2.yaml b/themes/greeney-v2.yaml new file mode 100644 index 00000000..d118aacd --- /dev/null +++ b/themes/greeney-v2.yaml @@ -0,0 +1,49 @@ +name: "Greeney.v2" +source: + marketplace_id: "LakshayBhushan.greeney-theme" + version: "2.0.0" + installs: 1647 + author: "Lakshay Bhushan" + repo: "https://github.com/lakshaybhushan/greeney-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LakshayBhushan.greeney-theme" +colors: + bg: "#021C23" + fg: "#00FFD9" + black: "#324A4D" + red: "#E66533" + green: "#48F4AD" + yellow: "#FFFF39" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#FBFBFB" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#59E4AA" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 218 + contrast: + fg: 89 + black: 9.2 + red: 40.2 + green: 82.5 + yellow: 101.5 + blue: 51.6 + magenta: 45.3 + cyan: 70.2 + white: 103.9 + brightBlack: 20.3 + brightRed: 45.4 + brightGreen: 74.8 + brightYellow: 53.5 + brightBlue: 56.9 + brightMagenta: 57.7 + brightCyan: 73.5 + brightWhite: 106.5 diff --git a/themes/greeney.yaml b/themes/greeney.yaml new file mode 100644 index 00000000..bc017f8b --- /dev/null +++ b/themes/greeney.yaml @@ -0,0 +1,49 @@ +name: "Greeney." +source: + marketplace_id: "LakshayBhushan.greeney-theme" + version: "2.0.0" + installs: 1647 + author: "Lakshay Bhushan" + repo: "https://github.com/lakshaybhushan/greeney-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LakshayBhushan.greeney-theme" +colors: + bg: "#021C23" + fg: "#00FFD9" + black: "#324A4D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B2CACD" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "dark" + accent: "orange" + hue: 218 + contrast: + fg: 89 + black: 9.2 + red: 40.2 + green: 76.6 + yellow: 66.6 + blue: 51.6 + magenta: 45.3 + cyan: 70.2 + white: 70.5 + brightBlack: 20.3 + brightRed: 45.4 + brightGreen: 78.8 + brightYellow: 53.5 + brightBlue: 56.9 + brightMagenta: 57.7 + brightCyan: 73.5 + brightWhite: 77 diff --git a/themes/greeni.yaml b/themes/greeni.yaml new file mode 100644 index 00000000..1c7c2868 --- /dev/null +++ b/themes/greeni.yaml @@ -0,0 +1,49 @@ +name: "greeni" +source: + marketplace_id: "jamaaldev.greeni" + version: "0.1.0" + installs: 124 + author: "jamaaldev" + repo: "https://github.com/jamaaldev/greeni" + url: "https://marketplace.visualstudio.com/items?itemName=jamaaldev.greeni" +colors: + bg: "#0A191D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 217 + contrast: + fg: 79.5 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 90 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.3 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/greenmachine.yaml b/themes/greenmachine.yaml new file mode 100644 index 00000000..5adab476 --- /dev/null +++ b/themes/greenmachine.yaml @@ -0,0 +1,49 @@ +name: "GreenMachine" +source: + marketplace_id: "ablazingeboy.greenmachine" + version: "0.0.1" + installs: 669 + author: "ABlazingEBoy" + repo: "https://github.com/GreenMachine-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=ablazingeboy.greenmachine" +colors: + bg: "#111111" + fg: "#D4D4D4" + black: "#111111" + red: "#4BC98A" + green: "#0DBC79" + yellow: "#4BC98A" + blue: "#4BC98A" + magenta: "#4BC98A" + cyan: "#4BC98A" + white: "#D5D8DA" + brightBlack: "#222222" + brightRed: "#4BC98A" + brightGreen: "#23D18B" + brightYellow: "#4BC98A" + brightBlue: "#4BC98A" + brightMagenta: "#4BC98A" + brightCyan: "#4BC98A" + brightWhite: "#D5D8DA" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 80 + black: 0 + red: 61.1 + green: 53.5 + yellow: 61.1 + blue: 61.1 + magenta: 61.1 + cyan: 61.1 + white: 82.1 + brightBlack: 0 + brightRed: 61.1 + brightGreen: 64 + brightYellow: 61.1 + brightBlue: 61.1 + brightMagenta: 61.1 + brightCyan: 61.1 + brightWhite: 82.1 diff --git a/themes/greenspace.yaml b/themes/greenspace.yaml new file mode 100644 index 00000000..36ed95a3 --- /dev/null +++ b/themes/greenspace.yaml @@ -0,0 +1,49 @@ +name: "GreenSpace" +source: + marketplace_id: "YesCode.bluespace" + version: "0.0.22" + installs: 208 + author: "YesCode" + repo: "https://github.com/yesomac/BlueSpaceVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.bluespace" +colors: + bg: "#131620" + fg: "#CDCDCD" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#A9C3FF" + brightYellow: "#DFE6E9" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: 272 + contrast: + fg: 75.3 + black: 0 + red: 42 + green: 61 + yellow: 73.1 + blue: 82.9 + magenta: 19.6 + cyan: 49.5 + white: 47.3 + brightBlack: 18.6 + brightRed: 42 + brightGreen: 69.6 + brightYellow: 89.9 + brightBlue: 18.8 + brightMagenta: 19.6 + brightCyan: 49.5 + brightWhite: 98.9 diff --git a/themes/greeny.yaml b/themes/greeny.yaml new file mode 100644 index 00000000..b72263ba --- /dev/null +++ b/themes/greeny.yaml @@ -0,0 +1,49 @@ +name: "Greeny" +source: + marketplace_id: "J3NGGG26.lucky-green" + version: "0.0.1" + installs: 41 + author: "J3NGGG26" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=J3NGGG26.lucky-green" +colors: + bg: "#050F0E" + fg: "#40FF9C" + black: "#0F0F0F" + red: "#E6274D" + green: "#91E673" + yellow: "#E62E7A" + blue: "#83E6B4" + magenta: "#E66C84" + cyan: "#27E6B0" + white: "#CED9D3" + brightBlack: "#171717" + brightRed: "#FF1342" + brightGreen: "#8FFF66" + brightYellow: "#FF1979" + brightBlue: "#78FFBB" + brightMagenta: "#FF456A" + brightCyan: "#12FFBC" + brightWhite: "#F2E6E9" +meta: + mode: "dark" + accent: "red" + hue: 188 + contrast: + fg: 88.6 + black: 0 + red: 32.7 + green: 78.7 + yellow: 34.3 + blue: 79.4 + magenta: 44.4 + cyan: 75.8 + white: 81.6 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 91 + brightYellow: 39.1 + brightBlue: 91.6 + brightMagenta: 42.1 + brightCyan: 89 + brightWhite: 93.2 diff --git a/themes/grewee-colorscheme.yaml b/themes/grewee-colorscheme.yaml new file mode 100644 index 00000000..1bc38990 --- /dev/null +++ b/themes/grewee-colorscheme.yaml @@ -0,0 +1,49 @@ +name: "Grewee-colorscheme" +source: + marketplace_id: "Salledelavage.grewee" + version: "0.0.1" + installs: 66 + author: "Salledelavage" + repo: "https://github.com/grosheth/grewee-colorsheme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Salledelavage.grewee" +colors: + bg: "#1C2023" + fg: "#EBDAB4" + black: "#1C2023" + red: "#C04E41" + green: "#8D9973" + yellow: "#F8D883" + blue: "#9EABBC" + magenta: "#DDA17D" + cyan: "#83A598" + white: "#A89984" + brightBlack: "#3D434E" + brightRed: "#D5835D" + brightGreen: "#C4C59B" + brightYellow: "#F5C878" + brightBlue: "#B7C3D2" + brightMagenta: "#FDAF87" + brightCyan: "#8D9973" + brightWhite: "#E6DFC1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83 + black: 0 + red: 27.3 + green: 42.7 + yellow: 82.7 + blue: 54 + magenta: 56.5 + cyan: 47.6 + white: 46.2 + brightBlack: 7.3 + brightRed: 44.7 + brightGreen: 67.8 + brightYellow: 75.3 + brightBlue: 67.6 + brightMagenta: 67.3 + brightCyan: 42.7 + brightWhite: 84.9 diff --git a/themes/greygull.yaml b/themes/greygull.yaml new file mode 100644 index 00000000..be82d9d3 --- /dev/null +++ b/themes/greygull.yaml @@ -0,0 +1,49 @@ +name: "greygull" +source: + marketplace_id: "bbrakenhoff.seabird" + version: "0.0.4" + installs: 754 + author: "bbrakenhoff" + repo: "https://github.com/bbrakenhoff/seabird-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=bbrakenhoff.seabird" +colors: + bg: "#FFFFFF" + fg: "#6D767D" + black: "#6D767D" + red: "#DB7681" + green: "#4AA840" + yellow: "#AD9142" + blue: "#4E9BCF" + magenta: "#CF7A9D" + cyan: "#3FA2A6" + white: "#FFFFFF" + brightBlack: "#6D767D" + brightRed: "#DB7681" + brightGreen: "#4AA840" + brightYellow: "#AD9142" + brightBlue: "#4E9BCF" + brightMagenta: "#CF7A9D" + brightCyan: "#3FA2A6" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 72.2 + black: 72.2 + red: 56.8 + green: 56.5 + yellow: 57.1 + blue: 56.9 + magenta: 56.9 + cyan: 56.8 + white: 0 + brightBlack: 72.2 + brightRed: 56.8 + brightGreen: 56.5 + brightYellow: 57.1 + brightBlue: 56.9 + brightMagenta: 56.9 + brightCyan: 56.8 + brightWhite: 0 diff --git a/themes/greyout.yaml b/themes/greyout.yaml new file mode 100644 index 00000000..b9c33c2a --- /dev/null +++ b/themes/greyout.yaml @@ -0,0 +1,49 @@ +name: "Greyout" +source: + marketplace_id: "Eses.greyout" + version: "0.0.6" + installs: 2033 + author: "Eses" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Eses.greyout" +colors: + bg: "#E8EBEC" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 93.9 + black: 93.9 + red: 61.8 + green: 37.1 + yellow: 45.7 + blue: 73.9 + magenta: 62.4 + cyan: 48.4 + white: 73.8 + brightBlack: 66.6 + brightRed: 61.8 + brightGreen: 28.7 + brightYellow: 28.8 + brightBlue: 73.9 + brightMagenta: 62.4 + brightCyan: 48.4 + brightWhite: 36.3 diff --git a/themes/greystillplays.yaml b/themes/greystillplays.yaml new file mode 100644 index 00000000..655c4455 --- /dev/null +++ b/themes/greystillplays.yaml @@ -0,0 +1,49 @@ +name: "GreyStillPlays" +source: + marketplace_id: "jaredbest.greystillplays-vscode" + version: "0.0.2" + installs: 5741 + author: "Jared Best" + repo: "https://github.com/jaredbest/greystillplays-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=jaredbest.greystillplays-vscode" +colors: + bg: "#242424" + fg: "#A3A3A3" + black: "#292929" + red: "#FB88B2" + green: "#A3D96D" + yellow: "#D6D6D6" + blue: "#85E0EA" + magenta: "#17BCDE" + cyan: "#85E0EA" + white: "#A3A3A3" + brightBlack: "#3C3C3C" + brightRed: "#FB88B2" + brightGreen: "#A3D96D" + brightYellow: "#D6D6D6" + brightBlue: "#85E0EA" + brightMagenta: "#17BCDE" + brightCyan: "#85E0EA" + brightWhite: "#A3A3A3" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 49.7 + black: 0 + red: 55.1 + green: 71.4 + yellow: 79 + blue: 76.5 + magenta: 55.4 + cyan: 76.5 + white: 49.7 + brightBlack: 0 + brightRed: 55.1 + brightGreen: 71.4 + brightYellow: 79 + brightBlue: 76.5 + brightMagenta: 55.4 + brightCyan: 76.5 + brightWhite: 49.7 diff --git a/themes/grimoire-nox.yaml b/themes/grimoire-nox.yaml new file mode 100644 index 00000000..3fe9f12c --- /dev/null +++ b/themes/grimoire-nox.yaml @@ -0,0 +1,49 @@ +name: "Grimoire Nox" +source: + marketplace_id: "NathanEdwards.grimoire" + version: "0.1.0" + installs: 1037 + author: "Nathan Edwards" + repo: "https://github.com/nathan-edwards/grimoire" + url: "https://marketplace.visualstudio.com/items?itemName=NathanEdwards.grimoire" +colors: + bg: "#24262E" + fg: "#E0DCE8" + black: "#302F3D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B6B3CC" + brightBlack: "#504E65" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C5C2D6" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 83.4 + black: 0 + red: 38.4 + green: 74.8 + yellow: 64.9 + blue: 49.9 + magenta: 43.5 + cyan: 68.4 + white: 59.5 + brightBlack: 11.2 + brightRed: 43.6 + brightGreen: 77.1 + brightYellow: 51.7 + brightBlue: 55.1 + brightMagenta: 55.9 + brightCyan: 71.7 + brightWhite: 67.9 diff --git a/themes/grimoire.yaml b/themes/grimoire.yaml new file mode 100644 index 00000000..ce5ba983 --- /dev/null +++ b/themes/grimoire.yaml @@ -0,0 +1,49 @@ +name: "Grimoire" +source: + marketplace_id: "walele993.fable-code-theme" + version: "1.2.0" + installs: 46 + author: "Gabriele Meucci" + repo: "https://github.com/walele993/fable_a_vsc_theme" + url: "https://marketplace.visualstudio.com/items?itemName=walele993.fable-code-theme" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#262626" + red: "#D16D9C" + green: "#A3C9A3" + yellow: "#C49B6C" + blue: "#9E7EBE" + magenta: "#FF7EB6" + cyan: "#A3C9A3" + white: "#D4D4D4" + brightBlack: "#757575" + brightRed: "#D16D9C" + brightGreen: "#A3C9A3" + brightYellow: "#C49B6C" + brightBlue: "#9E7EBE" + brightMagenta: "#FF7EB6" + brightCyan: "#A3C9A3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 40 + green: 66.3 + yellow: 50.3 + blue: 38.5 + magenta: 54.3 + cyan: 66.3 + white: 78.7 + brightBlack: 27.8 + brightRed: 40 + brightGreen: 66.3 + brightYellow: 50.3 + brightBlue: 38.5 + brightMagenta: 54.3 + brightCyan: 66.3 + brightWhite: 78.7 diff --git a/themes/grove-street-noir.yaml b/themes/grove-street-noir.yaml new file mode 100644 index 00000000..47ae7314 --- /dev/null +++ b/themes/grove-street-noir.yaml @@ -0,0 +1,49 @@ +name: "Grove Street Noir" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#202415" + fg: "#E1F5E5" + black: "#232816" + red: "#A0492A" + green: "#3D8B37" + yellow: "#CDBB7E" + blue: "#4A8CAE" + magenta: "#B881A7" + cyan: "#47B59B" + white: "#E1F5E5" + brightBlack: "#748B63" + brightRed: "#A0492A" + brightGreen: "#A6D97E" + brightYellow: "#CDBB7E" + brightBlue: "#4A8CAE" + brightMagenta: "#B881A7" + brightCyan: "#47B59B" + brightWhite: "#FFFBE6" +meta: + mode: "dark" + accent: "green" + hue: 121 + contrast: + fg: 95.4 + black: 0 + red: 19.7 + green: 30.1 + yellow: 63.6 + blue: 34.6 + magenta: 41.2 + cyan: 50.4 + white: 95.4 + brightBlack: 34.2 + brightRed: 19.7 + brightGreen: 72.3 + brightYellow: 63.6 + brightBlue: 34.6 + brightMagenta: 41.2 + brightCyan: 50.4 + brightWhite: 102.4 diff --git a/themes/gru-black.yaml b/themes/gru-black.yaml new file mode 100644 index 00000000..b4b653cf --- /dev/null +++ b/themes/gru-black.yaml @@ -0,0 +1,49 @@ +name: "Gru Black" +source: + marketplace_id: "Silitonix.gru" + version: "0.1.1" + installs: 922 + author: "Silitonix" + repo: "https://github.com/Silitonix/GruTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Silitonix.gru" +colors: + bg: "#000000" + fg: "#CCCCCC" + black: "#000000" + red: "#EA6962" + green: "#A9B665" + yellow: "#E78A4E" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#928374" + brightBlack: "#484848" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#E78A4E" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#D4BE98" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 75.7 + black: 0 + red: 44 + green: 59 + yellow: 51.8 + blue: 53.2 + magenta: 49 + cyan: 55.7 + white: 37.4 + brightBlack: 11.3 + brightRed: 44 + brightGreen: 59 + brightYellow: 51.8 + brightBlue: 53.2 + brightMagenta: 49 + brightCyan: 55.7 + brightWhite: 69 diff --git a/themes/gru.yaml b/themes/gru.yaml new file mode 100644 index 00000000..9dccef43 --- /dev/null +++ b/themes/gru.yaml @@ -0,0 +1,49 @@ +name: "Gru" +source: + marketplace_id: "Silitonix.gru" + version: "0.1.1" + installs: 922 + author: "Silitonix" + repo: "https://github.com/Silitonix/GruTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Silitonix.gru" +colors: + bg: "#1E1E1E" + fg: "#909090" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 40.8 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/gruber-blue.yaml b/themes/gruber-blue.yaml new file mode 100644 index 00000000..bcdd87ad --- /dev/null +++ b/themes/gruber-blue.yaml @@ -0,0 +1,49 @@ +name: "Gruber Blue" +source: + marketplace_id: "Hazem.gruber-blue" + version: "0.0.6" + installs: 38 + author: "Hazem" + repo: "https://github.com/Hazem-BenAbdelhafidh/Gruber-blue" + url: "https://marketplace.visualstudio.com/items?itemName=Hazem.gruber-blue" +colors: + bg: "#1A1A1A" + fg: "#FFFFFF" + black: "#000000" + red: "#FF3333" + green: "#4CD84C" + yellow: "#FFD700" + blue: "#00A6FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF3333" + brightGreen: "#4CD84C" + brightYellow: "#FFD700" + brightBlue: "#00A6FF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 106.5 + black: 0 + red: 38.3 + green: 66.3 + yellow: 82.9 + blue: 49.6 + magenta: 29.4 + cyan: 47.2 + white: 106.5 + brightBlack: 21.7 + brightRed: 38.3 + brightGreen: 66.3 + brightYellow: 82.9 + brightBlue: 49.6 + brightMagenta: 45 + brightCyan: 55.1 + brightWhite: 106.5 diff --git a/themes/grumbra.yaml b/themes/grumbra.yaml new file mode 100644 index 00000000..6aa235eb --- /dev/null +++ b/themes/grumbra.yaml @@ -0,0 +1,49 @@ +name: "grumbra" +source: + marketplace_id: "Cydo.re-theme" + version: "3.0.0" + installs: 695 + author: "Cydo" + repo: "https://github.com/CydoEntis/reThemes" + url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" +colors: + bg: "#1B1B1B" + fg: "#CCCCCC" + black: "#282A36" + red: "#F37F97" + green: "#5ADECD" + yellow: "#F2A272" + blue: "#8897F4" + magenta: "#C574DD" + cyan: "#79E6F3" + white: "#BEBEC1" + brightBlack: "#414458" + brightRed: "#FF4971" + brightGreen: "#18E3C8" + brightYellow: "#FF8037" + brightBlue: "#556FFF" + brightMagenta: "#B043D1" + brightCyan: "#3FDCEE" + brightWhite: "#FDFDFD" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 74.2 + black: 0 + red: 51.3 + green: 73.1 + yellow: 60.8 + blue: 48.2 + magenta: 43.5 + cyan: 80.4 + white: 66.1 + brightBlack: 8.8 + brightRed: 41.7 + brightGreen: 73.9 + brightYellow: 52 + brightBlue: 32.4 + brightMagenta: 29.2 + brightCyan: 72.9 + brightWhite: 105.1 diff --git a/themes/grunboxtheme.yaml b/themes/grunboxtheme.yaml new file mode 100644 index 00000000..21c6e6e3 --- /dev/null +++ b/themes/grunboxtheme.yaml @@ -0,0 +1,49 @@ +name: "GrunBoxTheme" +source: + marketplace_id: "Ransh.ransh" + version: "0.0.1" + installs: 50567 + author: "Ransh" + repo: "https://github.com/1466690577/gruvbox_theme_for_vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Ransh.ransh" +colors: + bg: "#282828" + fg: "#EBDAB4" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#84A598" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#F84B3C" + brightGreen: "#B8BA37" + brightYellow: "#F9BC41" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8FBF7F" + brightWhite: "#EBDAB4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81.6 + black: 0 + red: 22.8 + green: 40.5 + yellow: 50.1 + blue: 46.3 + magenta: 29.3 + cyan: 39.5 + white: 44.8 + brightBlack: 33.9 + brightRed: 37.4 + brightGreen: 58.4 + brightYellow: 68.9 + brightBlue: 46.2 + brightMagenta: 45.5 + brightCyan: 57.4 + brightWhite: 81.6 diff --git a/themes/grunge-contrast.yaml b/themes/grunge-contrast.yaml new file mode 100644 index 00000000..39d2ec31 --- /dev/null +++ b/themes/grunge-contrast.yaml @@ -0,0 +1,49 @@ +name: "grunge-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0C0C0A" + fg: "#F8F8F2" + black: "#1A1A16" + red: "#BA0E2E" + green: "#D1F2A5" + yellow: "#F56991" + blue: "#FFC48C" + magenta: "#91A374" + cyan: "#FFC48C" + white: "#FFFFFF" + brightBlack: "#444438" + brightRed: "#F03E5F" + brightGreen: "#FFFFFE" + brightYellow: "#FBC9D7" + brightBlue: "#FFF8F2" + brightMagenta: "#C2CCB1" + brightCyan: "#FFF8F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 102.8 + black: 0 + red: 21.3 + green: 92 + yellow: 47.4 + blue: 77.6 + magenta: 48.8 + cyan: 77.6 + white: 107.7 + brightBlack: 9.3 + brightRed: 37.6 + brightGreen: 107.6 + brightYellow: 81.5 + brightBlue: 103.8 + brightMagenta: 73.2 + brightCyan: 103.8 + brightWhite: 107.7 diff --git a/themes/grunge-light.yaml b/themes/grunge-light.yaml new file mode 100644 index 00000000..90ccf058 --- /dev/null +++ b/themes/grunge-light.yaml @@ -0,0 +1,49 @@ +name: "grunge-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#F8F8F2" + fg: "#31332C" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#ABC687" + yellow: "#F56991" + blue: "#FFC48C" + magenta: "#91A374" + cyan: "#FFC48C" + white: "#3E4138" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DBE7CC" + brightYellow: "#FBC9D7" + brightBlue: "#FFF8F2" + brightMagenta: "#C2CCB1" + brightCyan: "#FFF8F2" + brightWhite: "#666A5B" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 94.5 + black: 0 + red: 75.9 + green: 31.2 + yellow: 49.8 + blue: 20.8 + magenta: 48.4 + cyan: 20.8 + white: 89.7 + brightBlack: 0 + brightRed: 59.4 + brightGreen: 9.8 + brightYellow: 17.2 + brightBlue: 0 + brightMagenta: 25 + brightCyan: 0 + brightWhite: 73.4 diff --git a/themes/grunge.yaml b/themes/grunge.yaml new file mode 100644 index 00000000..32636344 --- /dev/null +++ b/themes/grunge.yaml @@ -0,0 +1,49 @@ +name: "grunge" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#31332C" + fg: "#F8F8F2" + black: "#3E4138" + red: "#BA0E2E" + green: "#D1F2A5" + yellow: "#F56991" + blue: "#FFC48C" + magenta: "#91A374" + cyan: "#FFC48C" + white: "#FFFFFF" + brightBlack: "#666A5B" + brightRed: "#F03E5F" + brightGreen: "#FFFFFE" + brightYellow: "#FBC9D7" + brightBlue: "#FFF8F2" + brightMagenta: "#C2CCB1" + brightCyan: "#FFF8F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 120 + contrast: + fg: 97.3 + black: 0 + red: 15.9 + green: 86.6 + yellow: 41.9 + blue: 72.2 + magenta: 43.4 + cyan: 72.2 + white: 102.3 + brightBlack: 18.3 + brightRed: 32.2 + brightGreen: 102.2 + brightYellow: 76.1 + brightBlue: 98.3 + brightMagenta: 67.7 + brightCyan: 98.3 + brightWhite: 102.3 diff --git a/themes/grusper.yaml b/themes/grusper.yaml new file mode 100644 index 00000000..9bf63536 --- /dev/null +++ b/themes/grusper.yaml @@ -0,0 +1,49 @@ +name: "Grusper" +source: + marketplace_id: "T450.grusper-theme" + version: "1.1.0" + installs: 33 + author: "Edward" + repo: "https://github.com/T-450/grusper-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=T450.grusper-theme" +colors: + bg: "#1A1917" + fg: "#FFFFFF" + black: "#111110" + red: "#E05C5C" + green: "#D1FF99" + yellow: "#FFFA99" + blue: "#99FFFA" + magenta: "#FA99FF" + cyan: "#99FFFA" + white: "#9BA0AA" + brightBlack: "#3D3B37" + brightRed: "#F07878" + brightGreen: "#E4FFB8" + brightYellow: "#FFFCC0" + brightBlue: "#C0FFFD" + brightMagenta: "#FDC0FF" + brightCyan: "#C0FFFD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.6 + black: 0 + red: 37.7 + green: 97.1 + yellow: 100.6 + blue: 95.5 + magenta: 65.4 + cyan: 95.5 + white: 49.5 + brightBlack: 0 + brightRed: 48.1 + brightGreen: 100.2 + brightYellow: 102.7 + brightBlue: 99 + brightMagenta: 79.3 + brightCyan: 99 + brightWhite: 106.6 diff --git a/themes/gruvalized-dark.yaml b/themes/gruvalized-dark.yaml new file mode 100644 index 00000000..f5be3a5f --- /dev/null +++ b/themes/gruvalized-dark.yaml @@ -0,0 +1,49 @@ +name: "Gruvalized Dark" +source: + marketplace_id: "odlot-marco-lutz.gruvalized" + version: "0.0.3" + installs: 89 + author: "Marco Lutz" + repo: "https://github.com/odlot/gruvalized" + url: "https://marketplace.visualstudio.com/items?itemName=odlot-marco-lutz.gruvalized" +colors: + bg: "#1D2021" + fg: "#FBF1C7" + black: "#4D5557" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#FBF1C7" + brightBlack: "#707C80" + brightRed: "#E8625D" + brightGreen: "#DCDB32" + brightYellow: "#E8BE6B" + brightBlue: "#72B4B7" + brightMagenta: "#CF9FB5" + brightCyan: "#A0C1A1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 96.3 + black: 13.5 + red: 24.2 + green: 41.9 + yellow: 51.5 + blue: 30.5 + magenta: 30.7 + cyan: 40.9 + white: 96.3 + brightBlack: 29.8 + brightRed: 39.9 + brightGreen: 78.9 + brightYellow: 68.9 + brightBlue: 53.7 + brightMagenta: 55.5 + brightCyan: 62.3 + brightWhite: 105.8 diff --git a/themes/gruvalized-light.yaml b/themes/gruvalized-light.yaml new file mode 100644 index 00000000..29052ef4 --- /dev/null +++ b/themes/gruvalized-light.yaml @@ -0,0 +1,49 @@ +name: "Gruvalized Light" +source: + marketplace_id: "odlot-marco-lutz.gruvalized" + version: "0.0.3" + installs: 89 + author: "Marco Lutz" + repo: "https://github.com/odlot/gruvalized" + url: "https://marketplace.visualstudio.com/items?itemName=odlot-marco-lutz.gruvalized" +colors: + bg: "#FAF5E7" + fg: "#1A1A1A" + black: "#6A6A6A" + red: "#CC241D" + green: "#448C27" + yellow: "#D79921" + blue: "#4B83CD" + magenta: "#7A3E9D" + cyan: "#689D6A" + white: "#1A1A1A" + brightBlack: "#AAAAAA" + brightRed: "#7C1612" + brightGreen: "#214413" + brightYellow: "#876015" + brightBlue: "#295793" + brightMagenta: "#47245B" + brightCyan: "#436744" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.4 + black: 71.1 + red: 69.5 + green: 62.6 + yellow: 42.6 + blue: 60 + magenta: 77.8 + cyan: 52.9 + white: 98.4 + brightBlack: 39.9 + brightRed: 87.2 + brightGreen: 89.5 + brightYellow: 72.2 + brightBlue: 79.1 + brightMagenta: 92.3 + brightCyan: 76 + brightWhite: 100.1 diff --git a/themes/gruvbox-dark-medium.yaml b/themes/gruvbox-dark-medium.yaml new file mode 100644 index 00000000..bf0d6906 --- /dev/null +++ b/themes/gruvbox-dark-medium.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox Dark Medium" +source: + marketplace_id: "jdinhlife.theme-gruvbox-dark-medium" + version: "1.1.0" + installs: 4080 + author: "jdinhlife" + repo: "https://github.com/jdinhlife/vscode-theme-gruvbox" + url: "https://marketplace.visualstudio.com/items?itemName=jdinhlife.theme-gruvbox-dark-medium" +colors: + bg: "#282828" + fg: "#FBF1C7" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.9 + black: 0 + red: 22.8 + green: 40.5 + yellow: 50.1 + blue: 29.1 + magenta: 29.3 + cyan: 39.5 + white: 44.8 + brightBlack: 33.9 + brightRed: 37.7 + brightGreen: 58.7 + brightYellow: 69.4 + brightBlue: 46.2 + brightMagenta: 45.5 + brightCyan: 57.7 + brightWhite: 81.9 diff --git a/themes/gruvbox-dark-soft.yaml b/themes/gruvbox-dark-soft.yaml new file mode 100644 index 00000000..0efd79da --- /dev/null +++ b/themes/gruvbox-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox Dark Soft" +source: + marketplace_id: "MrMartian.gruvbox-dark-moist" + version: "0.0.1" + installs: 896 + author: "MrMartian" + repo: "https://github.com/CraigglesO/gruvbox-dark-moist-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MrMartian.gruvbox-dark-moist" +colors: + bg: "#2C3338" + fg: "#CABFA4" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#DC7B7C" + brightGreen: "#9BB37A" + brightYellow: "#D4B77C" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#9DB579" + brightWhite: "#CABFA4" +meta: + mode: "dark" + accent: "orange" + hue: 239 + contrast: + fg: 62.8 + black: 0 + red: 20.7 + green: 38.3 + yellow: 47.9 + blue: 27 + magenta: 27.1 + cyan: 37.3 + white: 42.6 + brightBlack: 31.8 + brightRed: 40.8 + brightGreen: 51.1 + brightYellow: 59.8 + brightBlue: 44 + brightMagenta: 43.4 + brightCyan: 52.1 + brightWhite: 62.8 diff --git a/themes/gruvbox-drakenlords-dark-draken.yaml b/themes/gruvbox-drakenlords-dark-draken.yaml new file mode 100644 index 00000000..407ccd35 --- /dev/null +++ b/themes/gruvbox-drakenlords-dark-draken.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox DrakenLords Dark Draken" +source: + marketplace_id: "DrakenLords.gruvbox-draken-lords" + version: "1.5.5" + installs: 8896 + author: "DrakenLords" + repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" + url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" +colors: + bg: "#031417" + fg: "#EBDBB2" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#EBDBB2" + brightBlack: "#665C54" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#FBF1C7" +meta: + mode: "dark" + accent: "orange" + hue: 209 + contrast: + fg: 84.8 + black: 0 + red: 25.7 + green: 43.3 + yellow: 52.9 + blue: 32 + magenta: 32.1 + cyan: 42.3 + white: 84.8 + brightBlack: 19 + brightRed: 40.6 + brightGreen: 61.6 + brightYellow: 72.2 + brightBlue: 49 + brightMagenta: 48.4 + brightCyan: 60.5 + brightWhite: 97.8 diff --git a/themes/gruvbox-drakenlords-dark.yaml b/themes/gruvbox-drakenlords-dark.yaml new file mode 100644 index 00000000..4f070ae1 --- /dev/null +++ b/themes/gruvbox-drakenlords-dark.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox DrakenLords Dark" +source: + marketplace_id: "RickIsGone.rickisgone-gruvbox" + version: "1.0.4" + installs: 66 + author: "RickIsGone" + repo: "https://github.com/RickIsGone/Gruvbox" + url: "https://marketplace.visualstudio.com/items?itemName=RickIsGone.rickisgone-gruvbox" +colors: + bg: "#161819" + fg: "#EBDBB2" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 84.3 + black: 0 + red: 25.2 + green: 42.9 + yellow: 52.4 + blue: 31.5 + magenta: 31.6 + cyan: 41.9 + white: 47.2 + brightBlack: 36.3 + brightRed: 40.1 + brightGreen: 61.1 + brightYellow: 71.7 + brightBlue: 48.5 + brightMagenta: 47.9 + brightCyan: 60.1 + brightWhite: 84.3 diff --git a/themes/gruvbox-drakenlords-grey.yaml b/themes/gruvbox-drakenlords-grey.yaml new file mode 100644 index 00000000..06e79366 --- /dev/null +++ b/themes/gruvbox-drakenlords-grey.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox DrakenLords Grey" +source: + marketplace_id: "DrakenLords.gruvbox-draken-lords" + version: "1.5.5" + installs: 8896 + author: "DrakenLords" + repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" + url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" +colors: + bg: "#3C3836" + fg: "#EBDBB2" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#EBDBB2" + brightBlack: "#665C54" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#FBF1C7" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 77.9 + black: 0 + red: 18.8 + green: 36.4 + yellow: 46 + blue: 25.1 + magenta: 25.2 + cyan: 35.4 + white: 77.9 + brightBlack: 12.1 + brightRed: 33.7 + brightGreen: 54.7 + brightYellow: 65.3 + brightBlue: 42.1 + brightMagenta: 41.5 + brightCyan: 53.6 + brightWhite: 90.9 diff --git a/themes/gruvbox-drakenlords-semi-dark.yaml b/themes/gruvbox-drakenlords-semi-dark.yaml new file mode 100644 index 00000000..4ceed4d2 --- /dev/null +++ b/themes/gruvbox-drakenlords-semi-dark.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox DrakenLords Semi Dark" +source: + marketplace_id: "DrakenLords.gruvbox-draken-lords" + version: "1.5.5" + installs: 8896 + author: "DrakenLords" + repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" + url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" +colors: + bg: "#282828" + fg: "#EBDBB2" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#EBDBB2" + brightBlack: "#665C54" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#FBF1C7" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81.9 + black: 0 + red: 22.8 + green: 40.5 + yellow: 50.1 + blue: 29.1 + magenta: 29.3 + cyan: 39.5 + white: 81.9 + brightBlack: 16.1 + brightRed: 37.7 + brightGreen: 58.7 + brightYellow: 69.4 + brightBlue: 46.2 + brightMagenta: 45.5 + brightCyan: 57.7 + brightWhite: 94.9 diff --git a/themes/gruvbox-ish-dark-hard.yaml b/themes/gruvbox-ish-dark-hard.yaml new file mode 100644 index 00000000..877fc3db --- /dev/null +++ b/themes/gruvbox-ish-dark-hard.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox ish Dark Hard" +source: + marketplace_id: "GracefulPotato.gruvbox-ish" + version: "0.8.0" + installs: 14928 + author: "GracefulPotato" + repo: "https://github.com/graceful-potato/gruvbox-ish" + url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" +colors: + bg: "#1D2021" + fg: "#DFBF8E" + black: "#282828" + red: "#D75F5F" + green: "#A8A81C" + yellow: "#D69617" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#D75F5F" + brightGreen: "#8B9553" + brightYellow: "#CEA64A" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#87AF87" + brightWhite: "#DFBF8E" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 68.7 + black: 0 + red: 35.8 + green: 50.4 + yellow: 50.2 + blue: 30.5 + magenta: 30.7 + cyan: 40.9 + white: 46.2 + brightBlack: 35.3 + brightRed: 35.8 + brightGreen: 40.3 + brightYellow: 55.1 + brightBlue: 47.6 + brightMagenta: 46.9 + brightCyan: 51.5 + brightWhite: 68.7 diff --git a/themes/gruvbox-ish-dark-medium.yaml b/themes/gruvbox-ish-dark-medium.yaml new file mode 100644 index 00000000..1116ea7f --- /dev/null +++ b/themes/gruvbox-ish-dark-medium.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox ish Dark Medium" +source: + marketplace_id: "GracefulPotato.gruvbox-ish" + version: "0.8.0" + installs: 14928 + author: "GracefulPotato" + repo: "https://github.com/graceful-potato/gruvbox-ish" + url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" +colors: + bg: "#282828" + fg: "#DFBF8E" + black: "#32302F" + red: "#D75F5F" + green: "#A8A81C" + yellow: "#D69617" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#D75F5F" + brightGreen: "#8B9553" + brightYellow: "#CEA64A" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#87AF87" + brightWhite: "#DFBF8E" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 67.3 + black: 0 + red: 34.4 + green: 49 + yellow: 48.8 + blue: 29.1 + magenta: 29.3 + cyan: 39.5 + white: 44.8 + brightBlack: 33.9 + brightRed: 34.4 + brightGreen: 38.9 + brightYellow: 53.7 + brightBlue: 46.2 + brightMagenta: 45.5 + brightCyan: 50.1 + brightWhite: 67.3 diff --git a/themes/gruvbox-ish-dark-soft.yaml b/themes/gruvbox-ish-dark-soft.yaml new file mode 100644 index 00000000..64edbfb3 --- /dev/null +++ b/themes/gruvbox-ish-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox ish Dark Soft" +source: + marketplace_id: "GracefulPotato.gruvbox-ish" + version: "0.8.0" + installs: 14928 + author: "GracefulPotato" + repo: "https://github.com/graceful-potato/gruvbox-ish" + url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" +colors: + bg: "#32302F" + fg: "#DFBF8E" + black: "#3C3836" + red: "#D75F5F" + green: "#A8A81C" + yellow: "#D69617" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#D75F5F" + brightGreen: "#8B9553" + brightYellow: "#CEA64A" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#87AF87" + brightWhite: "#DFBF8E" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65.5 + black: 0 + red: 32.6 + green: 47.2 + yellow: 47.1 + blue: 27.4 + magenta: 27.5 + cyan: 37.7 + white: 43 + brightBlack: 32.2 + brightRed: 32.6 + brightGreen: 37.1 + brightYellow: 51.9 + brightBlue: 44.4 + brightMagenta: 43.8 + brightCyan: 48.3 + brightWhite: 65.5 diff --git a/themes/gruvbox-material-dark-claude-hybrid.yaml b/themes/gruvbox-material-dark-claude-hybrid.yaml new file mode 100644 index 00000000..14319b6b --- /dev/null +++ b/themes/gruvbox-material-dark-claude-hybrid.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox Material Dark - Claude Hybrid" +source: + marketplace_id: "Icycoldveins.verum-monokai-themes" + version: "1.2.1" + installs: 46 + author: "Icycoldveins" + repo: "https://github.com/icycoldveins/Ide-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" +colors: + bg: "#282828" + fg: "#D4BE98" + black: "#32302F" + red: "#E06C75" + green: "#98C379" + yellow: "#E78A4E" + blue: "#7DAEA3" + magenta: "#FF6B6B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E78A4E" + brightBlue: "#7DAEA3" + brightMagenta: "#FF6B6B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65.6 + black: 0 + red: 39.6 + green: 59.8 + yellow: 48.4 + blue: 49.8 + magenta: 45.7 + cyan: 52.2 + white: 65.6 + brightBlack: 33.9 + brightRed: 39.6 + brightGreen: 59.8 + brightYellow: 48.4 + brightBlue: 49.8 + brightMagenta: 45.7 + brightCyan: 52.2 + brightWhite: 70.8 diff --git a/themes/gruvbox-material-dark.yaml b/themes/gruvbox-material-dark.yaml new file mode 100644 index 00000000..0566659b --- /dev/null +++ b/themes/gruvbox-material-dark.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox Material Dark" +source: + marketplace_id: "sainnhe.gruvbox-material" + version: "6.5.2" + installs: 328108 + author: "sainnhe" + repo: "https://github.com/sainnhe/gruvbox-material-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.gruvbox-material" +colors: + bg: "#292828" + fg: "#D4BE98" + black: "#32302F" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65.5 + black: 0 + red: 40.5 + green: 55.5 + yellow: 55.3 + blue: 49.7 + magenta: 45.5 + cyan: 52.2 + white: 65.5 + brightBlack: 33.9 + brightRed: 40.5 + brightGreen: 55.5 + brightYellow: 55.3 + brightBlue: 49.7 + brightMagenta: 45.5 + brightCyan: 52.2 + brightWhite: 70.8 diff --git a/themes/gruvbox-material-flat-dark.yaml b/themes/gruvbox-material-flat-dark.yaml new file mode 100644 index 00000000..b2bafc5e --- /dev/null +++ b/themes/gruvbox-material-flat-dark.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox Material Flat Dark" +source: + marketplace_id: "GrzegorzKozub.gruvbox-material-flat" + version: "0.2.8" + installs: 685 + author: "greg" + repo: "https://github.com/GrzegorzKozub/gruvbox-material-flat" + url: "https://marketplace.visualstudio.com/items?itemName=GrzegorzKozub.gruvbox-material-flat" +colors: + bg: "#32302F" + fg: "#D4BE98" + black: "#3C3836" + red: "#C14A4A" + green: "#6C782E" + yellow: "#B47109" + blue: "#45707A" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#665C54" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#D4BE98" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 63.8 + black: 0 + red: 23.8 + green: 23.2 + yellow: 29.9 + blue: 19.4 + magenta: 21.9 + cyan: 22.4 + white: 32.2 + brightBlack: 14.4 + brightRed: 38.8 + brightGreen: 53.8 + brightYellow: 53.6 + brightBlue: 48 + brightMagenta: 43.8 + brightCyan: 50.4 + brightWhite: 63.8 diff --git a/themes/gruvbox-material-flat-light.yaml b/themes/gruvbox-material-flat-light.yaml new file mode 100644 index 00000000..4c7d4337 --- /dev/null +++ b/themes/gruvbox-material-flat-light.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox Material Flat Light" +source: + marketplace_id: "GrzegorzKozub.gruvbox-material-flat" + version: "0.2.8" + installs: 685 + author: "greg" + repo: "https://github.com/GrzegorzKozub/gruvbox-material-flat" + url: "https://marketplace.visualstudio.com/items?itemName=GrzegorzKozub.gruvbox-material-flat" +colors: + bg: "#F2E5BC" + fg: "#654735" + black: "#EBDBB2" + red: "#C14A4A" + green: "#6C782E" + yellow: "#B47109" + blue: "#45707A" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#BDAE93" + brightRed: "#B85651" + brightGreen: "#8F9A52" + brightYellow: "#C18F41" + brightBlue: "#68948A" + brightMagenta: "#AB6C7D" + brightCyan: "#72966C" + brightWhite: "#654735" +meta: + mode: "light" + accent: "orange" + hue: 93 + contrast: + fg: 73.6 + black: 0 + red: 57.5 + green: 58.1 + yellow: 51.4 + blue: 61.9 + magenta: 59.5 + cyan: 59 + white: 49.1 + brightBlack: 27.7 + brightRed: 56.8 + brightGreen: 42 + brightYellow: 39.8 + brightBlue: 46.2 + brightMagenta: 52.5 + brightCyan: 45.6 + brightWhite: 73.6 diff --git a/themes/gruvbox-material-light.yaml b/themes/gruvbox-material-light.yaml new file mode 100644 index 00000000..5f85f857 --- /dev/null +++ b/themes/gruvbox-material-light.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox Material Light" +source: + marketplace_id: "sainnhe.gruvbox-material" + version: "6.5.2" + installs: 328108 + author: "sainnhe" + repo: "https://github.com/sainnhe/gruvbox-material-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.gruvbox-material" +colors: + bg: "#FBF1C7" + fg: "#654735" + black: "#4F3829" + red: "#C14A4A" + green: "#6C782E" + yellow: "#B47109" + blue: "#45707A" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#654735" + brightRed: "#C14A4A" + brightGreen: "#6C782E" + brightYellow: "#B47109" + brightBlue: "#45707A" + brightMagenta: "#945E80" + brightCyan: "#4C7A5D" + brightWhite: "#F2E5BC" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 80.2 + black: 86.5 + red: 64.1 + green: 64.7 + yellow: 58 + blue: 68.5 + magenta: 66 + cyan: 65.5 + white: 55.7 + brightBlack: 80.2 + brightRed: 64.1 + brightGreen: 64.7 + brightYellow: 58 + brightBlue: 68.5 + brightMagenta: 66 + brightCyan: 65.5 + brightWhite: 0 diff --git a/themes/gruvbox-material-mix.yaml b/themes/gruvbox-material-mix.yaml new file mode 100644 index 00000000..bae13c1a --- /dev/null +++ b/themes/gruvbox-material-mix.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox Material Mix" +source: + marketplace_id: "nd2204.gruvbox-material-mix" + version: "0.4.6" + installs: 465 + author: "nd2204" + repo: "https://github.com/nd2204/vscode-gruvbox" + url: "https://marketplace.visualstudio.com/items?itemName=nd2204.gruvbox-material-mix" +colors: + bg: "#181818" + fg: "#EBDBB2" + black: "#282828" + red: "#FB4934" + green: "#B8BB26" + yellow: "#FABD2F" + blue: "#8AA98A" + magenta: "#D3869B" + cyan: "#8EC07C" + white: "#EBDBB2" + brightBlack: "#32302F" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#8AA98A" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 84.3 + black: 0 + red: 40.1 + green: 61.1 + yellow: 71.7 + blue: 50.3 + magenta: 47.9 + cyan: 60 + white: 84.3 + brightBlack: 0 + brightRed: 40.1 + brightGreen: 61.1 + brightYellow: 71.7 + brightBlue: 50.3 + brightMagenta: 47.9 + brightCyan: 60 + brightWhite: 84.3 diff --git a/themes/gruvbox-minor-dark-hard.yaml b/themes/gruvbox-minor-dark-hard.yaml new file mode 100644 index 00000000..14c90f27 --- /dev/null +++ b/themes/gruvbox-minor-dark-hard.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox Minor Dark Hard" +source: + marketplace_id: "adamsome.vscode-theme-gruvbox-minor" + version: "2.7.2" + installs: 27651 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" +colors: + bg: "#1D2021" + fg: "#928374" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 35.3 + black: 0 + red: 24.2 + green: 41.9 + yellow: 51.5 + blue: 30.5 + magenta: 30.7 + cyan: 40.9 + white: 46.2 + brightBlack: 35.3 + brightRed: 39.1 + brightGreen: 60.1 + brightYellow: 70.8 + brightBlue: 47.6 + brightMagenta: 46.9 + brightCyan: 59.1 + brightWhite: 83.3 diff --git a/themes/gruvbox-minor-dark-medium.yaml b/themes/gruvbox-minor-dark-medium.yaml new file mode 100644 index 00000000..7291a45d --- /dev/null +++ b/themes/gruvbox-minor-dark-medium.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox Minor Dark Medium" +source: + marketplace_id: "adamsome.vscode-theme-gruvbox-minor" + version: "2.7.2" + installs: 27651 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" +colors: + bg: "#282828" + fg: "#928374" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 33.9 + black: 0 + red: 22.8 + green: 40.5 + yellow: 50.1 + blue: 29.1 + magenta: 29.3 + cyan: 39.5 + white: 44.8 + brightBlack: 33.9 + brightRed: 37.7 + brightGreen: 58.7 + brightYellow: 69.4 + brightBlue: 46.2 + brightMagenta: 45.5 + brightCyan: 57.7 + brightWhite: 81.9 diff --git a/themes/gruvbox-minor-dark-soft.yaml b/themes/gruvbox-minor-dark-soft.yaml new file mode 100644 index 00000000..037f2e21 --- /dev/null +++ b/themes/gruvbox-minor-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox Minor Dark Soft" +source: + marketplace_id: "adamsome.vscode-theme-gruvbox-minor" + version: "2.7.2" + installs: 27651 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" +colors: + bg: "#32302F" + fg: "#928374" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 32.2 + black: 0 + red: 21.1 + green: 38.7 + yellow: 48.3 + blue: 27.4 + magenta: 27.5 + cyan: 37.7 + white: 43 + brightBlack: 32.2 + brightRed: 36 + brightGreen: 57 + brightYellow: 67.6 + brightBlue: 44.4 + brightMagenta: 43.8 + brightCyan: 55.9 + brightWhite: 80.2 diff --git a/themes/gruvbox-minor-light-hard.yaml b/themes/gruvbox-minor-light-hard.yaml new file mode 100644 index 00000000..20c0ac53 --- /dev/null +++ b/themes/gruvbox-minor-light-hard.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox Minor Light Hard" +source: + marketplace_id: "adamsome.vscode-theme-gruvbox-minor" + version: "2.7.2" + installs: 27651 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" +colors: + bg: "#F9F5D7" + fg: "#928374" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 57.7 + black: 11.5 + red: 68.8 + green: 51.2 + yellow: 41.8 + blue: 62.4 + magenta: 62.3 + cyan: 52.1 + white: 67.1 + brightBlack: 57.7 + brightRed: 80.4 + brightGreen: 67 + brightYellow: 58.3 + brightBlue: 75.6 + brightMagenta: 76.1 + brightCyan: 67.8 + brightWhite: 90.1 diff --git a/themes/gruvbox-minor-light-medium.yaml b/themes/gruvbox-minor-light-medium.yaml new file mode 100644 index 00000000..97bf5515 --- /dev/null +++ b/themes/gruvbox-minor-light-medium.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox Minor Light Medium" +source: + marketplace_id: "adamsome.vscode-theme-gruvbox-minor" + version: "2.7.2" + installs: 27651 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" +colors: + bg: "#FBF1C7" + fg: "#928374" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 55.7 + black: 9.5 + red: 66.8 + green: 49.2 + yellow: 39.9 + blue: 60.5 + magenta: 60.3 + cyan: 50.2 + white: 65.1 + brightBlack: 55.7 + brightRed: 78.4 + brightGreen: 65 + brightYellow: 56.3 + brightBlue: 73.6 + brightMagenta: 74.1 + brightCyan: 65.8 + brightWhite: 88.1 diff --git a/themes/gruvbox-minor-light-soft.yaml b/themes/gruvbox-minor-light-soft.yaml new file mode 100644 index 00000000..4f70267f --- /dev/null +++ b/themes/gruvbox-minor-light-soft.yaml @@ -0,0 +1,49 @@ +name: "Gruvbox Minor Light Soft" +source: + marketplace_id: "adamsome.vscode-theme-gruvbox-minor" + version: "2.7.2" + installs: 27651 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" +colors: + bg: "#F2E5BC" + fg: "#928374" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: 93 + contrast: + fg: 49.1 + black: 0 + red: 60.3 + green: 42.6 + yellow: 33.3 + blue: 53.9 + magenta: 53.8 + cyan: 43.6 + white: 58.6 + brightBlack: 49.1 + brightRed: 71.8 + brightGreen: 58.4 + brightYellow: 49.8 + brightBlue: 67 + brightMagenta: 67.5 + brightCyan: 59.2 + brightWhite: 81.5 diff --git a/themes/gruvchad.yaml b/themes/gruvchad.yaml new file mode 100644 index 00000000..b4175d09 --- /dev/null +++ b/themes/gruvchad.yaml @@ -0,0 +1,49 @@ +name: "Gruvchad" +source: + marketplace_id: "Koujir.gruvchad" + version: "0.0.1" + installs: 3463 + author: "Koujir" + repo: "https://github.com/long-nc/gruvchad-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Koujir.gruvchad" +colors: + bg: "#1E2122" + fg: "#C3B499" + black: "#2C2F30" + red: "#CE8196" + green: "#98971A" + yellow: "#D6B676" + blue: "#6D8DAD" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#EC6B64" + brightGreen: "#A9B665" + brightYellow: "#E0C080" + brightBlue: "#7DAEA3" + brightMagenta: "#CC7F94" + brightCyan: "#86B17F" + brightWhite: "#C3B499" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 60.5 + black: 0 + red: 44.3 + green: 41.7 + yellow: 63 + blue: 37.4 + magenta: 30.5 + cyan: 40.8 + white: 46.1 + brightBlack: 35.2 + brightRed: 42.7 + brightGreen: 56.8 + brightYellow: 68.7 + brightBlue: 51 + brightMagenta: 43.3 + brightCyan: 51.9 + brightWhite: 60.5 diff --git a/themes/gruvdark-gbm.yaml b/themes/gruvdark-gbm.yaml new file mode 100644 index 00000000..273753c8 --- /dev/null +++ b/themes/gruvdark-gbm.yaml @@ -0,0 +1,49 @@ +name: "GruvDark-GBM" +source: + marketplace_id: "darianmorat.darian-theme" + version: "2.1.6" + installs: 3178 + author: "Darian Toledo" + repo: "https://github.com/darianmorat/gruvdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" +colors: + bg: "#202020" + fg: "#D4BE98" + black: "#32302F" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 66.9 + black: 0 + red: 41.8 + green: 56.9 + yellow: 56.7 + blue: 51.1 + magenta: 46.9 + cyan: 53.5 + white: 66.9 + brightBlack: 35.2 + brightRed: 41.8 + brightGreen: 56.9 + brightYellow: 56.7 + brightBlue: 51.1 + brightMagenta: 46.9 + brightCyan: 53.5 + brightWhite: 72.1 diff --git a/themes/gruvdark-mono.yaml b/themes/gruvdark-mono.yaml new file mode 100644 index 00000000..18ec9987 --- /dev/null +++ b/themes/gruvdark-mono.yaml @@ -0,0 +1,49 @@ +name: "GruvDark Mono" +source: + marketplace_id: "darianmorat.darian-theme" + version: "2.1.6" + installs: 3178 + author: "Darian Toledo" + repo: "https://github.com/darianmorat/gruvdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" +colors: + bg: "#202020" + fg: "#CDC5B8" + black: "#2B2B2B" + red: "#DB6A6A" + green: "#76B568" + yellow: "#D19F66" + blue: "#5B98C9" + magenta: "#CD60B9" + cyan: "#4DB0BD" + white: "#CDC5B8" + brightBlack: "#4F4F4F" + brightRed: "#DB6A6A" + brightGreen: "#76B568" + brightYellow: "#D19F66" + brightBlue: "#5B98C9" + brightMagenta: "#CD60B9" + brightCyan: "#4DB0BD" + brightWhite: "#CDC5B8" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 69.9 + black: 0 + red: 39.2 + green: 51.8 + yellow: 53.3 + blue: 41.8 + magenta: 37.3 + cyan: 50.3 + white: 69.9 + brightBlack: 11.7 + brightRed: 39.2 + brightGreen: 51.8 + brightYellow: 53.3 + brightBlue: 41.8 + brightMagenta: 37.3 + brightCyan: 50.3 + brightWhite: 69.9 diff --git a/themes/gruvdark-tokyo.yaml b/themes/gruvdark-tokyo.yaml new file mode 100644 index 00000000..03f855e9 --- /dev/null +++ b/themes/gruvdark-tokyo.yaml @@ -0,0 +1,49 @@ +name: "GruvDark Tokyo" +source: + marketplace_id: "darianmorat.darian-theme" + version: "2.1.6" + installs: 3178 + author: "Darian Toledo" + repo: "https://github.com/darianmorat/gruvdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" +colors: + bg: "#1A1B26" + fg: "#D4D4D4" + black: "#292733" + red: "#DB6A6A" + green: "#76B568" + yellow: "#D19F66" + blue: "#5B98C9" + magenta: "#CD60B9" + cyan: "#4DB0BD" + white: "#CDC5B8" + brightBlack: "#4F4F4F" + brightRed: "#DB6A6A" + brightGreen: "#76B568" + brightYellow: "#D19F66" + brightBlue: "#5B98C9" + brightMagenta: "#CD60B9" + brightCyan: "#4DB0BD" + brightWhite: "#CDC5B8" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 78.9 + black: 0 + red: 39.8 + green: 52.4 + yellow: 53.9 + blue: 42.4 + magenta: 37.9 + cyan: 50.8 + white: 70.5 + brightBlack: 12.3 + brightRed: 39.8 + brightGreen: 52.4 + brightYellow: 53.9 + brightBlue: 42.4 + brightMagenta: 37.9 + brightCyan: 50.8 + brightWhite: 70.5 diff --git a/themes/guezwhoz.yaml b/themes/guezwhoz.yaml new file mode 100644 index 00000000..cefccd37 --- /dev/null +++ b/themes/guezwhoz.yaml @@ -0,0 +1,49 @@ +name: "Guezwhoz" +source: + marketplace_id: "guezwhoz-schema.guezwhoz-vscode-theme" + version: "1.2.0" + installs: 586 + author: "Egor Lem" + repo: "https://github.com/guesswhozzz/guezwhoz-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guezwhoz-schema.guezwhoz-vscode-theme" +colors: + bg: "#1C1C1C" + fg: "#DADADA" + black: "#080808" + red: "#FF5F5F" + green: "#87D7AF" + yellow: "#D7D787" + blue: "#5FAFD7" + magenta: "#AFAFFF" + cyan: "#5FD7D7" + white: "#DADADA" + brightBlack: "#8A8A8A" + brightRed: "#D75F5F" + brightGreen: "#AFD7AF" + brightYellow: "#D7D7AF" + brightBlue: "#87AFD7" + brightMagenta: "#AFAFD7" + brightCyan: "#87D7D7" + brightWhite: "#DADADA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 82.6 + black: 0 + red: 44.8 + green: 71 + yellow: 78.1 + blue: 52.6 + magenta: 61.6 + cyan: 70.3 + white: 82.6 + brightBlack: 38 + brightRed: 36.2 + brightGreen: 74.5 + brightYellow: 79.2 + brightBlue: 55.3 + brightMagenta: 59.3 + brightCyan: 72.7 + brightWhite: 82.6 diff --git a/themes/guisaldanha-light.yaml b/themes/guisaldanha-light.yaml new file mode 100644 index 00000000..973b6de4 --- /dev/null +++ b/themes/guisaldanha-light.yaml @@ -0,0 +1,49 @@ +name: "GuiSaldanha Light" +source: + marketplace_id: "guisaldanha.guisaldanha-light" + version: "1.0.9" + installs: 534 + author: "Guilherme Saldanha" + repo: "https://github.com/guisaldanha/vscode-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guisaldanha.guisaldanha-light" +colors: + bg: "#F8F8F8" + fg: "#383A42" + black: "#000000" + red: "#FF4646" + green: "#14CE14" + yellow: "#949800" + blue: "#2804CC" + magenta: "#992CBA" + cyan: "#A1C7FF" + white: "#787878" + brightBlack: "#000000" + brightRed: "#C92222" + brightGreen: "#147A23" + brightYellow: "#985B00" + brightBlue: "#3700FF" + brightMagenta: "#9A2CBA" + brightCyan: "#0066FF" + brightWhite: "#787878" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 92 + black: 101.9 + red: 55.6 + green: 36.7 + yellow: 53.7 + blue: 87.7 + magenta: 75.3 + cyan: 27.1 + white: 66.5 + brightBlack: 101.9 + brightRed: 72 + brightGreen: 72.6 + brightYellow: 72.8 + brightBlue: 80.6 + brightMagenta: 75.1 + brightCyan: 68.2 + brightWhite: 66.5 diff --git a/themes/gujarat-vibrant-culture.yaml b/themes/gujarat-vibrant-culture.yaml new file mode 100644 index 00000000..d3130540 --- /dev/null +++ b/themes/gujarat-vibrant-culture.yaml @@ -0,0 +1,49 @@ +name: "Gujarat - Vibrant Culture" +source: + marketplace_id: "ProudIndian.colors-of-india-themes" + version: "1.0.1" + installs: 37 + author: "Sachin Ghadi" + repo: "https://github.com/GhadiSachin/colors-of-india-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" +colors: + bg: "#1A1618" + fg: "#F0F0E8" + black: "#000000" + red: "#E74856" + green: "#FFEB3B" + yellow: "#00BCD4" + blue: "#3B8EEA" + magenta: "#B140AA" + cyan: "#29B8DB" + white: "#E5E5E5" + brightBlack: "#000000" + brightRed: "#E74856" + brightGreen: "#FFEB3B" + brightYellow: "#00BCD4" + brightBlue: "#3B8EEA" + brightMagenta: "#B140AA" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 96.7 + black: 0 + red: 35.9 + green: 92.3 + yellow: 56.5 + blue: 40 + magenta: 26.8 + cyan: 55.4 + white: 90 + brightBlack: 0 + brightRed: 35.9 + brightGreen: 92.3 + brightYellow: 56.5 + brightBlue: 40 + brightMagenta: 26.8 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/gum.yaml b/themes/gum.yaml new file mode 100644 index 00000000..6467e18c --- /dev/null +++ b/themes/gum.yaml @@ -0,0 +1,49 @@ +name: "Gum" +source: + marketplace_id: "RobinNaghshbandi.gum" + version: "0.2.0" + installs: 0 + author: "Robin Naghshbandi" + repo: "https://github.com/robbandi/Cherry-Gum" + url: "https://marketplace.visualstudio.com/items?itemName=RobinNaghshbandi.gum" +colors: + bg: "#171717" + fg: "#90D8F0" + black: "#1F1F1F" + red: "#C0D8F0" + green: "#9090F0" + yellow: "#5641F0" + blue: "#90C0F0" + magenta: "#5641F0" + cyan: "#A890F0" + white: "#4670F0" + brightBlack: "#90D8F0" + brightRed: "#C0D8F0" + brightGreen: "#9090F0" + brightYellow: "#5641F0" + brightBlue: "#90C0F0" + brightMagenta: "#5641F0" + brightCyan: "#A890F0" + brightWhite: "#4670F0" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 75.6 + black: 0 + red: 80.2 + green: 46.7 + yellow: 21 + blue: 65 + magenta: 21 + cyan: 49.3 + white: 31 + brightBlack: 75.6 + brightRed: 80.2 + brightGreen: 46.7 + brightYellow: 21 + brightBlue: 65 + brightMagenta: 21 + brightCyan: 49.3 + brightWhite: 31 diff --git a/themes/gumua.yaml b/themes/gumua.yaml new file mode 100644 index 00000000..6341a466 --- /dev/null +++ b/themes/gumua.yaml @@ -0,0 +1,49 @@ +name: "Gumua" +source: + marketplace_id: "GopherTheme.gumua-gopher-theme" + version: "0.0.9" + installs: 1136 + author: "Gopher Theme" + repo: "https://github.com/KhwanNon/golang-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GopherTheme.gumua-gopher-theme" +colors: + bg: "#1E1E1E" + fg: "#CBCBCB" + black: "#373741" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.2 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/gunivers.yaml b/themes/gunivers.yaml new file mode 100644 index 00000000..d551ce7d --- /dev/null +++ b/themes/gunivers.yaml @@ -0,0 +1,49 @@ +name: "Gunivers" +source: + marketplace_id: "Leirof.gunivers-theme" + version: "0.0.23" + installs: 568 + author: "Leirof" + repo: "https://github.com/Gunivers/VSC-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Leirof.gunivers-theme" +colors: + bg: "#111111" + fg: "#D4D4D4" + black: "#868686" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80 + black: 37.1 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/gunmetal-code-pro.yaml b/themes/gunmetal-code-pro.yaml new file mode 100644 index 00000000..1ccef06f --- /dev/null +++ b/themes/gunmetal-code-pro.yaml @@ -0,0 +1,49 @@ +name: "Gunmetal Code Pro" +source: + marketplace_id: "Naparajith.gunmetal-code-pro" + version: "4.1.0" + installs: 446 + author: "T L Naparajith" + repo: "https://github.com/DrInfinite/gunmetal-code-pro" + url: "https://marketplace.visualstudio.com/items?itemName=Naparajith.gunmetal-code-pro" +colors: + bg: "#1B1D23" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 58.7 + black: 8.1 + red: 36 + green: 59.6 + yellow: 47.9 + blue: 48.9 + magenta: 38.3 + cyan: 51.8 + white: 82.3 + brightBlack: 14.7 + brightRed: 45.4 + brightGreen: 76.1 + brightYellow: 60.5 + brightBlue: 63 + brightMagenta: 49.5 + brightCyan: 67.1 + brightWhite: 89.9 diff --git a/themes/gustavoglins.yaml b/themes/gustavoglins.yaml new file mode 100644 index 00000000..96d232a6 --- /dev/null +++ b/themes/gustavoglins.yaml @@ -0,0 +1,49 @@ +name: "GustavoGLins" +source: + marketplace_id: "GustavoLins05.gustavoglins-theme" + version: "22.1.1" + installs: 40 + author: "Gustavo Lins" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GustavoLins05.gustavoglins-theme" +colors: + bg: "#0F0F10" + fg: "#EDEDED" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 95.7 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 107.5 diff --git a/themes/gusuku-limestone.yaml b/themes/gusuku-limestone.yaml new file mode 100644 index 00000000..54296628 --- /dev/null +++ b/themes/gusuku-limestone.yaml @@ -0,0 +1,49 @@ +name: "Gusuku Limestone" +source: + marketplace_id: "ky12228121.okinawan-themes" + version: "0.0.1" + installs: 10 + author: "Keny Yahat" + repo: "https://github.com/ky12228121/okinawan" + url: "https://marketplace.visualstudio.com/items?itemName=ky12228121.okinawan-themes" +colors: + bg: "#F9F7F1" + fg: "#2C3E50" + black: "#5D4D4D" + red: "#C91F37" + green: "#2A603B" + yellow: "#E69B3A" + blue: "#005B96" + magenta: "#D81B60" + cyan: "#005B96" + white: "#F0F0F0" + brightBlack: "#93A1A1" + brightRed: "#C91F37" + brightGreen: "#2A603B" + brightYellow: "#E69B3A" + brightBlue: "#005B96" + brightMagenta: "#D81B60" + brightCyan: "#4E8A58" + brightWhite: "#F9F7F1" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 90.6 + black: 82.9 + red: 71.4 + green: 80.8 + yellow: 40.4 + blue: 79.4 + magenta: 67.4 + cyan: 79.4 + white: 0 + brightBlack: 47.2 + brightRed: 71.4 + brightGreen: 80.8 + brightYellow: 40.4 + brightBlue: 79.4 + brightMagenta: 67.4 + brightCyan: 63.4 + brightWhite: 0 diff --git a/themes/gvalley.yaml b/themes/gvalley.yaml new file mode 100644 index 00000000..63b3d58a --- /dev/null +++ b/themes/gvalley.yaml @@ -0,0 +1,49 @@ +name: "Gvalley" +source: + marketplace_id: "sam01.Gvalley" + version: "0.0.1" + installs: 98 + author: "sam" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sam01.Gvalley" +colors: + bg: "#1D1C1C" + fg: "#18FF88" + black: "#0A0A0A" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 86.2 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.2 + cyan: 47 + white: 78.9 + brightBlack: 21.4 + brightRed: 38 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 106.3 diff --git a/themes/gyomei-himejima.yaml b/themes/gyomei-himejima.yaml new file mode 100644 index 00000000..6b760ad5 --- /dev/null +++ b/themes/gyomei-himejima.yaml @@ -0,0 +1,49 @@ +name: "Gyomei Himejima" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 738 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" +colors: + bg: "#222D28" + fg: "#D6D1C4" + black: "#1F2925" + red: "#E09B93" + green: "#B0C988" + yellow: "#F5C77C" + blue: "#A3D1C8" + magenta: "#C5B3D6" + cyan: "#A3D1C8" + white: "#D6D1C4" + brightBlack: "#888888" + brightRed: "#E6A29A" + brightGreen: "#B0C988" + brightYellow: "#F5D79E" + brightBlue: "#A3D1C8" + brightMagenta: "#C5B3D6" + brightCyan: "#A3D1C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: 166 + contrast: + fg: 74.8 + black: 0 + red: 53.7 + green: 64.8 + yellow: 73 + blue: 69.2 + magenta: 61.1 + cyan: 69.2 + white: 74.8 + brightBlack: 34.7 + brightRed: 57.3 + brightGreen: 64.8 + brightYellow: 80.6 + brightBlue: 69.2 + brightMagenta: 61.1 + brightCyan: 69.2 + brightWhite: 103.9 diff --git a/themes/h1-dark-fork.yaml b/themes/h1-dark-fork.yaml new file mode 100644 index 00000000..be376fb3 --- /dev/null +++ b/themes/h1-dark-fork.yaml @@ -0,0 +1,49 @@ +name: "H1 (Dark) - Fork" +source: + marketplace_id: "Hacker0x01.HackerOne-VS-Code-Theme" + version: "1.1.2" + installs: 5436 + author: "Hacker0x01" + repo: "https://github.com/Hacker0x01/HackerOne-VS-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Hacker0x01.HackerOne-VS-Code-Theme" +colors: + bg: "#0A0A0A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.7 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/h1-light-fork.yaml b/themes/h1-light-fork.yaml new file mode 100644 index 00000000..aaeb7c46 --- /dev/null +++ b/themes/h1-light-fork.yaml @@ -0,0 +1,49 @@ +name: "H1 (Light) - Fork" +source: + marketplace_id: "Hacker0x01.HackerOne-VS-Code-Theme" + version: "1.1.2" + installs: 5436 + author: "Hacker0x01" + repo: "https://github.com/Hacker0x01/HackerOne-VS-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Hacker0x01.HackerOne-VS-Code-Theme" +colors: + bg: "#FFFFFF" + fg: "#5C5E6A" + black: "#0A0A0A" + red: "#AB000B" + green: "#006E4A" + yellow: "#734C00" + blue: "#0039C2" + magenta: "#4414A3" + cyan: "#0598BC" + white: "#5C5E6A" + brightBlack: "#5C5E6A" + brightRed: "#D92834" + brightGreen: "#008056" + brightYellow: "#946200" + brightBlue: "#2D68F4" + brightMagenta: "#6B39CC" + brightCyan: "#0598BC" + brightWhite: "#727581" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 82 + black: 105.8 + red: 84 + green: 80.8 + yellow: 86.1 + blue: 89 + magenta: 94.4 + cyan: 60.6 + white: 82 + brightBlack: 82 + brightRed: 72 + brightGreen: 73.8 + brightYellow: 75.7 + brightBlue: 72.4 + brightMagenta: 82.7 + brightCyan: 60.6 + brightWhite: 71.9 diff --git a/themes/haavyz.yaml b/themes/haavyz.yaml new file mode 100644 index 00000000..4a6bcc6d --- /dev/null +++ b/themes/haavyz.yaml @@ -0,0 +1,49 @@ +name: "Haavyz" +source: + marketplace_id: "Haavyz.Haavyz" + version: "1.0.9" + installs: 22 + author: "Haavyz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Haavyz.Haavyz" +colors: + bg: "#0A0D1A" + fg: "#B4B4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 273 + contrast: + fg: 61.5 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/habamax.yaml b/themes/habamax.yaml new file mode 100644 index 00000000..9979caf9 --- /dev/null +++ b/themes/habamax.yaml @@ -0,0 +1,49 @@ +name: "Habamax" +source: + marketplace_id: "codelogix.habamax" + version: "0.0.1" + installs: 856 + author: "Carl Weis" + repo: "https://github.com/carlweis/vscode-habamax-theme" + url: "https://marketplace.visualstudio.com/items?itemName=codelogix.habamax" +colors: + bg: "#1C1C1C" + fg: "#ABB2BF" + black: "#1C1C1C" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#E9969D" + brightGreen: "#B3D39C" + brightYellow: "#EDD4A6" + brightBlue: "#8FC6F4" + brightMagenta: "#D7A1E7" + brightCyan: "#7BC6D0" + brightWhite: "#C8CDD5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 58.8 + black: 0 + red: 41.5 + green: 61.7 + yellow: 70 + blue: 54.1 + magenta: 44.6 + cyan: 54 + white: 58.8 + brightBlack: 20 + brightRed: 56.3 + brightGreen: 72.5 + brightYellow: 80.7 + brightBlue: 67.2 + brightMagenta: 60.4 + brightCyan: 63.8 + brightWhite: 74.4 diff --git a/themes/habamix.yaml b/themes/habamix.yaml new file mode 100644 index 00000000..2111b181 --- /dev/null +++ b/themes/habamix.yaml @@ -0,0 +1,49 @@ +name: "habamix" +source: + marketplace_id: "dpdpdp.habamix" + version: "0.2.0" + installs: 671 + author: "dpdpdp" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dpdpdp.habamix" +colors: + bg: "#1C1C1C" + fg: "#BCBCBC" + black: "#2C2C2C" + red: "#D75F5F" + green: "#87AF87" + yellow: "#AFAF87" + blue: "#5F87AF" + magenta: "#AF87AF" + cyan: "#5F8787" + white: "#B4B4B4" + brightBlack: "#767676" + brightRed: "#D7875F" + brightGreen: "#AFD7AF" + brightYellow: "#D7D787" + brightBlue: "#87AFD7" + brightMagenta: "#D7AFD7" + brightCyan: "#87AFAF" + brightWhite: "#BCBCBC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 64.7 + black: 0 + red: 36.2 + green: 51.9 + yellow: 56 + blue: 34.9 + magenta: 43 + cyan: 33.1 + white: 60.2 + brightBlack: 28.5 + brightRed: 46.7 + brightGreen: 74.5 + brightYellow: 78.1 + brightBlue: 55.3 + brightMagenta: 64.5 + brightCyan: 53.4 + brightWhite: 64.7 diff --git a/themes/hachiko.yaml b/themes/hachiko.yaml new file mode 100644 index 00000000..43b29135 --- /dev/null +++ b/themes/hachiko.yaml @@ -0,0 +1,49 @@ +name: "Hachiko" +source: + marketplace_id: "charlottielove.kitty-hachiko" + version: "0.0.1" + installs: 19 + author: "charlottielove" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=charlottielove.kitty-hachiko" +colors: + bg: "#111111" + fg: "#CCCCCC" + black: "#181818" + red: "#960042" + green: "#FF0000" + yellow: "#FF5D05" + blue: "#FF2044" + magenta: "#FFEDCF" + cyan: "#6F0027" + white: "#FFDAF1" + brightBlack: "#333333" + brightRed: "#870300" + brightGreen: "#690000" + brightYellow: "#6F2700" + brightBlue: "#333333" + brightMagenta: "#FFFFB5" + brightCyan: "#F50056" + brightWhite: "#FFE6DA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 75.2 + black: 0 + red: 13.8 + green: 37 + yellow: 44.7 + blue: 38 + magenta: 96.9 + cyan: 0 + white: 90.1 + brightBlack: 0 + brightRed: 10.3 + brightGreen: 0 + brightYellow: 8.1 + brightBlue: 0 + brightMagenta: 104.5 + brightCyan: 35.2 + brightWhite: 94.2 diff --git a/themes/hack-and-lima.yaml b/themes/hack-and-lima.yaml new file mode 100644 index 00000000..2d13bb3b --- /dev/null +++ b/themes/hack-and-lima.yaml @@ -0,0 +1,49 @@ +name: "Hack-And-Lima🍋" +source: + marketplace_id: "EmeAim.aim" + version: "0.0.8" + installs: 1797 + author: "EmeAim" + repo: "https://github.com/EmePin/aim-themes" + url: "https://marketplace.visualstudio.com/items?itemName=EmeAim.aim" +colors: + bg: "#202328" + fg: "#D9ED92" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 87.8 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 28.2 + cyan: 46 + white: 88.5 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.8 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/hack-electron.yaml b/themes/hack-electron.yaml new file mode 100644 index 00000000..e94465ef --- /dev/null +++ b/themes/hack-electron.yaml @@ -0,0 +1,49 @@ +name: "Hack Electron" +source: + marketplace_id: "TheVoidsteppers.hack-electron" + version: "0.0.3" + installs: 2205 + author: "TheVoidsteppers" + repo: "https://github.com/TheVoidsteppers/hack-electron" + url: "https://marketplace.visualstudio.com/items?itemName=TheVoidsteppers.hack-electron" +colors: + bg: "#16171D" + fg: "#BBD1DD" + black: "#21222C" + red: "#FF704D" + green: "#33CC33" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#BBD1DD" + brightBlack: "#7A7A8C" + brightRed: "#FF661A" + brightGreen: "#33CC33" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#A64DFF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 278 + contrast: + fg: 75.5 + black: 0 + red: 48.7 + green: 59.9 + yellow: 103.2 + blue: 36.7 + magenta: 27.9 + cyan: 38.2 + white: 75.5 + brightBlack: 31.6 + brightRed: 46 + brightGreen: 59.9 + brightYellow: 101.7 + brightBlue: 47.9 + brightMagenta: 33.3 + brightCyan: 91.1 + brightWhite: 88.3 diff --git a/themes/hackage-theme.yaml b/themes/hackage-theme.yaml new file mode 100644 index 00000000..83bee49d --- /dev/null +++ b/themes/hackage-theme.yaml @@ -0,0 +1,49 @@ +name: "hackage-theme" +source: + marketplace_id: "dmarticus.hackage-theme" + version: "0.0.3" + installs: 1465 + author: "dmarticus" + repo: "https://github.com/dmarticus/hackage-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dmarticus.hackage-theme" +colors: + bg: "#FDF6E3" + fg: "#6688CC" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#B58900" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#B58900" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 57.5 + black: 93.7 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 53.8 + brightBlack: 71.6 + brightRed: 65.8 + brightGreen: 71.6 + brightYellow: 65.7 + brightBlue: 53.5 + brightMagenta: 65 + brightCyan: 46.7 + brightWhite: 53.8 diff --git a/themes/hacker-blue.yaml b/themes/hacker-blue.yaml new file mode 100644 index 00000000..5a4c025e --- /dev/null +++ b/themes/hacker-blue.yaml @@ -0,0 +1,49 @@ +name: "Hacker Blue" +source: + marketplace_id: "chausen.hacker-blue" + version: "1.0.0" + installs: 19468 + author: "chausen" + repo: "https://github.com/chausen/hacker-blue" + url: "https://marketplace.visualstudio.com/items?itemName=chausen.hacker-blue" +colors: + bg: "#000000" + fg: "#7DF9FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 92.1 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/hacker-pink.yaml b/themes/hacker-pink.yaml new file mode 100644 index 00000000..70507993 --- /dev/null +++ b/themes/hacker-pink.yaml @@ -0,0 +1,49 @@ +name: "Hacker Pink" +source: + marketplace_id: "xynny.hacker-pink" + version: "1.0.0" + installs: 4967 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.hacker-pink" +colors: + bg: "#000000" + fg: "#FF14F0" + black: "#FF14F0" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 45.3 + black: 45.3 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/hacker-x.yaml b/themes/hacker-x.yaml new file mode 100644 index 00000000..b1dc4b50 --- /dev/null +++ b/themes/hacker-x.yaml @@ -0,0 +1,49 @@ +name: "Hacker X" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29903 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" +colors: + bg: "#2F3640" + fg: "#E4E4E4" + black: "#000000" + red: "#FF5E57" + green: "#44BD32" + yellow: "#FFA801" + blue: "#575FCF" + magenta: "#EF5777" + cyan: "#00D8D6" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF3F34" + brightGreen: "#4CD137" + brightYellow: "#FFD32A" + brightBlue: "#0FBCF9" + brightMagenta: "#F53B57" + brightCyan: "#34E7E4" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 257 + contrast: + fg: 83.8 + black: 0 + red: 39.5 + green: 47.7 + yellow: 59.2 + blue: 19 + magenta: 35.3 + cyan: 64 + white: 84.5 + brightBlack: 16.5 + brightRed: 34.3 + brightGreen: 57.5 + brightYellow: 76.1 + brightBlue: 53.2 + brightMagenta: 31.9 + brightCyan: 72.4 + brightWhite: 84.5 diff --git a/themes/hacker.yaml b/themes/hacker.yaml new file mode 100644 index 00000000..4dd7f4f4 --- /dev/null +++ b/themes/hacker.yaml @@ -0,0 +1,49 @@ +name: "Hacker" +source: + marketplace_id: "brenix.hacker-theme" + version: "0.0.6" + installs: 69271 + author: "brenix" + repo: "https://github.com/brenix/vscode-hacker" + url: "https://marketplace.visualstudio.com/items?itemName=brenix.hacker-theme" +colors: + bg: "#0A0B0A" + fg: "#BBBBBB" + black: "#252525" + red: "#C05776" + green: "#A7ECB7" + yellow: "#87A1C5" + blue: "#81B38C" + magenta: "#507057" + cyan: "#7574A5" + white: "#858585" + brightBlack: "#454545" + brightRed: "#C05776" + brightGreen: "#A7ECB7" + brightYellow: "#87A1C5" + brightBlue: "#81B38C" + brightMagenta: "#507057" + brightCyan: "#7574A5" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 65.6 + black: 0 + red: 32.1 + green: 85.4 + yellow: 50.2 + blue: 54.7 + magenta: 24 + cyan: 31.2 + white: 37 + brightBlack: 10 + brightRed: 32.1 + brightGreen: 85.4 + brightYellow: 50.2 + brightBlue: 54.7 + brightMagenta: 24 + brightCyan: 31.2 + brightWhite: 92.8 diff --git a/themes/hackish.yaml b/themes/hackish.yaml new file mode 100644 index 00000000..fa0b4e7d --- /dev/null +++ b/themes/hackish.yaml @@ -0,0 +1,49 @@ +name: "Hackish" +source: + marketplace_id: "valbmig.hackish" + version: "1.0.0" + installs: 756 + author: "valb.mig" + repo: "https://github.com/valb-mig/valbmig.hackish-theme" + url: "https://marketplace.visualstudio.com/items?itemName=valbmig.hackish" +colors: + bg: "#08080B" + fg: "#717286" + black: "#292936" + red: "#C62368" + green: "#FA8268" + yellow: "#83F3B7" + blue: "#FAC068" + magenta: "#E85467" + cyan: "#FAA568" + white: "#747480" + brightBlack: "#4B4B5C" + brightRed: "#C62368" + brightGreen: "#FA8268" + brightYellow: "#83F3B7" + brightBlue: "#FAC068" + brightMagenta: "#E85467" + brightCyan: "#FAA568" + brightWhite: "#90909F" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 28.8 + black: 0 + red: 26 + green: 53.6 + yellow: 86.2 + blue: 74.5 + magenta: 39.3 + cyan: 64.5 + white: 29.5 + brightBlack: 12.8 + brightRed: 26 + brightGreen: 53.6 + brightYellow: 86.2 + brightBlue: 74.5 + brightMagenta: 39.3 + brightCyan: 64.5 + brightWhite: 43.1 diff --git a/themes/hackpot-batman-vs-joker-dark.yaml b/themes/hackpot-batman-vs-joker-dark.yaml new file mode 100644 index 00000000..49cf30c2 --- /dev/null +++ b/themes/hackpot-batman-vs-joker-dark.yaml @@ -0,0 +1,49 @@ +name: "Hackpot Batman vs Joker Dark" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24355 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" +colors: + bg: "#16171D" + fg: "#BBD1DD" + black: "#21222C" + red: "#FF704D" + green: "#486484" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#BBD1DD" + brightBlack: "#2C2D3A" + brightRed: "#FF661A" + brightGreen: "#33CC33" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#A64DFF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 278 + contrast: + fg: 75.5 + black: 0 + red: 48.7 + green: 20.3 + yellow: 103.2 + blue: 36.7 + magenta: 27.9 + cyan: 38.2 + white: 75.5 + brightBlack: 0 + brightRed: 46 + brightGreen: 59.9 + brightYellow: 101.7 + brightBlue: 47.9 + brightMagenta: 33.3 + brightCyan: 91.1 + brightWhite: 88.3 diff --git a/themes/hackpot-batman-vs-joker.yaml b/themes/hackpot-batman-vs-joker.yaml new file mode 100644 index 00000000..4a5db161 --- /dev/null +++ b/themes/hackpot-batman-vs-joker.yaml @@ -0,0 +1,49 @@ +name: "Hackpot Batman vs Joker" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24355 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" +colors: + bg: "#21222C" + fg: "#BBD1DD" + black: "#2B2E3B" + red: "#FF704D" + green: "#486484" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#BBD1DD" + brightBlack: "#363949" + brightRed: "#FF661A" + brightGreen: "#33CC33" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#A64DFF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 280 + contrast: + fg: 74.1 + black: 0 + red: 47.2 + green: 18.8 + yellow: 101.7 + blue: 35.2 + magenta: 26.5 + cyan: 36.7 + white: 74.1 + brightBlack: 0 + brightRed: 44.5 + brightGreen: 58.4 + brightYellow: 100.2 + brightBlue: 46.4 + brightMagenta: 31.9 + brightCyan: 89.6 + brightWhite: 86.8 diff --git a/themes/hackpot-dark-knight.yaml b/themes/hackpot-dark-knight.yaml new file mode 100644 index 00000000..cbb4dc5d --- /dev/null +++ b/themes/hackpot-dark-knight.yaml @@ -0,0 +1,49 @@ +name: "Hackpot Dark Knight" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24355 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" +colors: + bg: "#142739" + fg: "#BBD1DD" + black: "#1A344C" + red: "#FF704D" + green: "#486484" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#BBD1DD" + brightBlack: "#21415F" + brightRed: "#FF661A" + brightGreen: "#33CC33" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#A64DFF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 248 + contrast: + fg: 73.5 + black: 0 + red: 46.6 + green: 18.3 + yellow: 101.2 + blue: 34.7 + magenta: 25.9 + cyan: 36.2 + white: 73.5 + brightBlack: 0 + brightRed: 44 + brightGreen: 57.8 + brightYellow: 99.6 + brightBlue: 45.8 + brightMagenta: 31.3 + brightCyan: 89.1 + brightWhite: 86.3 diff --git a/themes/hackpot-darker-knight.yaml b/themes/hackpot-darker-knight.yaml new file mode 100644 index 00000000..921db052 --- /dev/null +++ b/themes/hackpot-darker-knight.yaml @@ -0,0 +1,49 @@ +name: "Hackpot Darker Knight" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24355 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" +colors: + bg: "#0D1A26" + fg: "#BBD1DD" + black: "#142739" + red: "#FF704D" + green: "#486484" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#BBD1DD" + brightBlack: "#1A344C" + brightRed: "#FF661A" + brightGreen: "#33CC33" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#A64DFF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 248 + contrast: + fg: 75.3 + black: 0 + red: 48.4 + green: 20.1 + yellow: 103 + blue: 36.5 + magenta: 27.7 + cyan: 38 + white: 75.3 + brightBlack: 0 + brightRed: 45.8 + brightGreen: 59.7 + brightYellow: 101.5 + brightBlue: 47.7 + brightMagenta: 33.1 + brightCyan: 90.9 + brightWhite: 88.1 diff --git a/themes/hackpot-garden-dark.yaml b/themes/hackpot-garden-dark.yaml new file mode 100644 index 00000000..24d85018 --- /dev/null +++ b/themes/hackpot-garden-dark.yaml @@ -0,0 +1,49 @@ +name: "Hackpot Garden Dark" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24355 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" +colors: + bg: "#1A1A1A" + fg: "#B1E7B1" + black: "#202020" + red: "#FF704D" + green: "#1E621E" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#B1E7B1" + brightBlack: "#252525" + brightRed: "#FF661A" + brightGreen: "#32CD32" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#B366FF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 82.5 + black: 0 + red: 48.4 + green: 15.2 + yellow: 102.9 + blue: 36.4 + magenta: 27.7 + cyan: 37.9 + white: 82.5 + brightBlack: 0 + brightRed: 45.7 + brightGreen: 60 + brightYellow: 101.4 + brightBlue: 47.6 + brightMagenta: 39.9 + brightCyan: 90.8 + brightWhite: 88 diff --git a/themes/hackpot-garden-of-atlantis.yaml b/themes/hackpot-garden-of-atlantis.yaml new file mode 100644 index 00000000..f1cd97e8 --- /dev/null +++ b/themes/hackpot-garden-of-atlantis.yaml @@ -0,0 +1,49 @@ +name: "Hackpot Garden Of Atlantis" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24355 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" +colors: + bg: "#002020" + fg: "#B1E7B1" + black: "#002828" + red: "#FF704D" + green: "#1E621E" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#B1E7B1" + brightBlack: "#003030" + brightRed: "#FF661A" + brightGreen: "#32CD32" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#B366FF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 195 + contrast: + fg: 82.2 + black: 0 + red: 48 + green: 14.8 + yellow: 102.5 + blue: 36 + magenta: 27.3 + cyan: 37.5 + white: 82.2 + brightBlack: 0 + brightRed: 45.4 + brightGreen: 59.7 + brightYellow: 101 + brightBlue: 47.2 + brightMagenta: 39.5 + brightCyan: 90.5 + brightWhite: 87.7 diff --git a/themes/hackpot-garden-purple-haze.yaml b/themes/hackpot-garden-purple-haze.yaml new file mode 100644 index 00000000..4d216aec --- /dev/null +++ b/themes/hackpot-garden-purple-haze.yaml @@ -0,0 +1,49 @@ +name: "Hackpot Garden Purple Haze" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24355 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" +colors: + bg: "#330033" + fg: "#F2E6FF" + black: "#4D004D" + red: "#FF704D" + green: "#1E621E" + yellow: "#FFFF33" + blue: "#50B4FB" + magenta: "#990099" + cyan: "#1B9891" + white: "#F2E6FF" + brightBlack: "#660066" + brightRed: "#FF661A" + brightGreen: "#5CD65C" + brightYellow: "#FFFF66" + brightBlue: "#82C9FC" + brightMagenta: "#E600E6" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 328 + contrast: + fg: 92.7 + black: 0 + red: 47.8 + green: 14.6 + yellow: 100.9 + blue: 55.9 + magenta: 16.5 + cyan: 37.4 + white: 92.7 + brightBlack: 0 + brightRed: 45.2 + brightGreen: 65.7 + brightYellow: 101.4 + brightBlue: 67.7 + brightMagenta: 36.9 + brightCyan: 90.3 + brightWhite: 106 diff --git a/themes/hackpot-garden.yaml b/themes/hackpot-garden.yaml new file mode 100644 index 00000000..68d0e8f5 --- /dev/null +++ b/themes/hackpot-garden.yaml @@ -0,0 +1,49 @@ +name: "Hackpot Garden" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24355 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" +colors: + bg: "#252525" + fg: "#B1E7B1" + black: "#2A2A2A" + red: "#FF704D" + green: "#1E621E" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#B1E7B1" + brightBlack: "#303030" + brightRed: "#FF661A" + brightGreen: "#32CD32" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#B366FF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 80.9 + black: 0 + red: 46.8 + green: 13.6 + yellow: 101.3 + blue: 34.8 + magenta: 26.1 + cyan: 36.3 + white: 80.9 + brightBlack: 0 + brightRed: 44.1 + brightGreen: 58.5 + brightYellow: 99.8 + brightBlue: 46 + brightMagenta: 38.3 + brightCyan: 89.3 + brightWhite: 86.5 diff --git a/themes/hackpot-muddy-garden.yaml b/themes/hackpot-muddy-garden.yaml new file mode 100644 index 00000000..c5f70294 --- /dev/null +++ b/themes/hackpot-muddy-garden.yaml @@ -0,0 +1,49 @@ +name: "Hackpot Muddy Garden" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24355 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" +colors: + bg: "#231A0F" + fg: "#B1E7B1" + black: "#362817" + red: "#FF704D" + green: "#1E621E" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#B1E7B1" + brightBlack: "#47351F" + brightRed: "#FF661A" + brightGreen: "#32CD32" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#B366FF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 72 + contrast: + fg: 82.3 + black: 0 + red: 48.1 + green: 15 + yellow: 102.7 + blue: 36.2 + magenta: 27.4 + cyan: 37.7 + white: 82.3 + brightBlack: 0 + brightRed: 45.5 + brightGreen: 59.8 + brightYellow: 101.2 + brightBlue: 47.4 + brightMagenta: 39.7 + brightCyan: 90.6 + brightWhite: 87.8 diff --git a/themes/hackpot-poisoned-garden.yaml b/themes/hackpot-poisoned-garden.yaml new file mode 100644 index 00000000..deee8d2e --- /dev/null +++ b/themes/hackpot-poisoned-garden.yaml @@ -0,0 +1,49 @@ +name: "Hackpot Poisoned Garden" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24355 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" +colors: + bg: "#0C270C" + fg: "#B1E7B1" + black: "#123B12" + red: "#FF704D" + green: "#1E621E" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#B1E7B1" + brightBlack: "#174F17" + brightRed: "#FF661A" + brightGreen: "#32CD32" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#B366FF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 144 + contrast: + fg: 81.4 + black: 0 + red: 47.2 + green: 14.1 + yellow: 101.8 + blue: 35.3 + magenta: 26.5 + cyan: 36.8 + white: 81.4 + brightBlack: 7.8 + brightRed: 44.6 + brightGreen: 58.9 + brightYellow: 100.3 + brightBlue: 46.5 + brightMagenta: 38.8 + brightCyan: 89.7 + brightWhite: 86.9 diff --git a/themes/hadar.yaml b/themes/hadar.yaml new file mode 100644 index 00000000..422ba8af --- /dev/null +++ b/themes/hadar.yaml @@ -0,0 +1,49 @@ +name: "Hadar" +source: + marketplace_id: "cristianvasquez.hadar-theme" + version: "1.0.0" + installs: 48 + author: "Cristian Vásquez" + repo: "https://github.com/cristianvasquezc/hadar-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=cristianvasquez.hadar-theme" +colors: + bg: "#00030F" + fg: "#A2AABC" + black: "#2F3B54" + red: "#FF101F" + green: "#70E000" + yellow: "#00B09C" + blue: "#5CCFE6" + magenta: "#AE81FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#5C6166" + brightRed: "#FF101F" + brightGreen: "#70E000" + brightYellow: "#00B09C" + brightBlue: "#5CCFE6" + brightMagenta: "#AE81FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "orange" + hue: 258 + contrast: + fg: 56.1 + black: 0 + red: 37.7 + green: 72.9 + yellow: 49.7 + blue: 68.8 + magenta: 47.5 + cyan: 68.8 + white: 56.1 + brightBlack: 20.6 + brightRed: 37.7 + brightGreen: 72.9 + brightYellow: 49.7 + brightBlue: 68.8 + brightMagenta: 47.5 + brightCyan: 68.8 + brightWhite: 56.1 diff --git a/themes/haidark-two.yaml b/themes/haidark-two.yaml new file mode 100644 index 00000000..2752bb42 --- /dev/null +++ b/themes/haidark-two.yaml @@ -0,0 +1,49 @@ +name: "haidark two" +source: + marketplace_id: "phongtranhai.haidark" + version: "0.0.3" + installs: 117 + author: "Huu Nhan Tran" + repo: "https://github.com/thnhan1/haidark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=phongtranhai.haidark" +colors: + bg: "#282A36" + fg: "#D6DEEB" + black: "#282A36" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 278 + contrast: + fg: 82.3 + black: 0 + red: 36.4 + green: 64.3 + yellow: 79.1 + blue: 53 + magenta: 50.8 + cyan: 56.7 + white: 103.9 + brightBlack: 12.6 + brightRed: 36.4 + brightGreen: 64.3 + brightYellow: 90.8 + brightBlue: 53 + brightMagenta: 50.8 + brightCyan: 71 + brightWhite: 103.9 diff --git a/themes/halcyon.yaml b/themes/halcyon.yaml new file mode 100644 index 00000000..edc2b61f --- /dev/null +++ b/themes/halcyon.yaml @@ -0,0 +1,49 @@ +name: "Halcyon" +source: + marketplace_id: "PhillipGreen.cyberdev" + version: "0.0.4" + installs: 576 + author: "Phillip Green" + repo: "https://github.com/PhilGreen-Dev/cyberdev-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=PhillipGreen.cyberdev" +colors: + bg: "#1D2433" + fg: "#E0E0FF" + black: "#2F3B54" + red: "#FF33FF" + green: "#66FF99" + yellow: "#FFCC33" + blue: "#66CCFF" + magenta: "#FF66FF" + cyan: "#00FFFF" + white: "#E0E0FF" + brightBlack: "#444A5E" + brightRed: "#FF33FF" + brightGreen: "#66FF99" + brightYellow: "#FFCC33" + brightBlue: "#66CCFF" + brightMagenta: "#FF66FF" + brightCyan: "#00FFFF" + brightWhite: "#E0E0FF" +meta: + mode: "dark" + accent: "pink" + hue: 265 + contrast: + fg: 86.6 + black: 0 + red: 45.1 + green: 87.3 + yellow: 77 + blue: 66.6 + magenta: 52.1 + cyan: 89.4 + white: 86.6 + brightBlack: 9.4 + brightRed: 45.1 + brightGreen: 87.3 + brightYellow: 77 + brightBlue: 66.6 + brightMagenta: 52.1 + brightCyan: 89.4 + brightWhite: 86.6 diff --git a/themes/half-gray.yaml b/themes/half-gray.yaml new file mode 100644 index 00000000..2e4a2631 --- /dev/null +++ b/themes/half-gray.yaml @@ -0,0 +1,49 @@ +name: "half gray" +source: + marketplace_id: "MarcosBatisaldo.half-gray-theme" + version: "1.0.1" + installs: 757 + author: "Marcos Batisaldo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MarcosBatisaldo.half-gray-theme" +colors: + bg: "#161719" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.5 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/halflife-contrast.yaml b/themes/halflife-contrast.yaml new file mode 100644 index 00000000..67747159 --- /dev/null +++ b/themes/halflife-contrast.yaml @@ -0,0 +1,49 @@ +name: "halflife-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#000000" + fg: "#CCCCCC" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#FC913A" + yellow: "#7D8991" + blue: "#F9D423" + magenta: "#7D8991" + cyan: "#F85931" + white: "#D9D9D9" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#FEC99E" + brightYellow: "#B4BBC0" + brightBlue: "#FCE786" + brightMagenta: "#B4BBC0" + brightCyan: "#FBA894" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 75.7 + black: 0 + red: 21.5 + green: 57.8 + yellow: 38.2 + blue: 82 + magenta: 38.2 + cyan: 43 + white: 83.6 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 80.1 + brightYellow: 65.1 + brightBlue: 92.1 + brightMagenta: 65.1 + brightCyan: 66.9 + brightWhite: 107.9 diff --git a/themes/halflife-light.yaml b/themes/halflife-light.yaml new file mode 100644 index 00000000..917e99a7 --- /dev/null +++ b/themes/halflife-light.yaml @@ -0,0 +1,49 @@ +name: "halflife-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#F0F0F0" + fg: "#222222" + black: "#FDFDFD" + red: "#BA0E2E" + green: "#FC913A" + yellow: "#7D8991" + blue: "#F9D423" + magenta: "#7D8991" + cyan: "#F85931" + white: "#2F2F2F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FEC99E" + brightYellow: "#B4BBC0" + brightBlue: "#FCE786" + brightMagenta: "#B4BBC0" + brightCyan: "#FBA894" + brightWhite: "#555555" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 94 + black: 0 + red: 71.4 + green: 35.4 + yellow: 54.5 + blue: 12.4 + magenta: 54.5 + cyan: 49.8 + white: 90.9 + brightBlack: 7.6 + brightRed: 55 + brightGreen: 14.2 + brightYellow: 28.4 + brightBlue: 0 + brightMagenta: 28.4 + brightCyan: 26.7 + brightWhite: 77 diff --git a/themes/halflife.yaml b/themes/halflife.yaml new file mode 100644 index 00000000..aefa29bb --- /dev/null +++ b/themes/halflife.yaml @@ -0,0 +1,49 @@ +name: "halflife" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#222222" + fg: "#CCCCCC" + black: "#2F2F2F" + red: "#BA0E2E" + green: "#FC913A" + yellow: "#7D8991" + blue: "#F9D423" + magenta: "#7D8991" + cyan: "#F85931" + white: "#D9D9D9" + brightBlack: "#555555" + brightRed: "#F03E5F" + brightGreen: "#FEC99E" + brightYellow: "#B4BBC0" + brightBlue: "#FCE786" + brightMagenta: "#B4BBC0" + brightCyan: "#FBA894" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.2 + black: 0 + red: 19.1 + green: 55.4 + yellow: 35.8 + blue: 79.6 + magenta: 35.8 + cyan: 40.6 + white: 81.1 + brightBlack: 13.7 + brightRed: 35.4 + brightGreen: 77.7 + brightYellow: 62.7 + brightBlue: 89.7 + brightMagenta: 62.7 + brightCyan: 64.4 + brightWhite: 105.5 diff --git a/themes/halloween.yaml b/themes/halloween.yaml new file mode 100644 index 00000000..8a9e8231 --- /dev/null +++ b/themes/halloween.yaml @@ -0,0 +1,49 @@ +name: "Halloween" +source: + marketplace_id: "swordensen.halloween-theme" + version: "0.0.2" + installs: 4661 + author: "swordensen" + repo: "https://github.com/Mikkal24/VSCodeHalloweenTheme" + url: "https://marketplace.visualstudio.com/items?itemName=swordensen.halloween-theme" +colors: + bg: "#212121" + fg: "#FFFFFF" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FF9900" + blue: "#FFAE00" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#A46B00" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FF9900" + brightBlue: "#FFAE00" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 105.6 + black: 0 + red: 45.9 + green: 65 + yellow: 58.4 + blue: 65.6 + magenta: 63.1 + cyan: 91.5 + white: 105.6 + brightBlack: 28.6 + brightRed: 45.9 + brightGreen: 65 + brightYellow: 58.4 + brightBlue: 65.6 + brightMagenta: 63.1 + brightCyan: 91.5 + brightWhite: 105.6 diff --git a/themes/hallucination.yaml b/themes/hallucination.yaml new file mode 100644 index 00000000..bd93ecfc --- /dev/null +++ b/themes/hallucination.yaml @@ -0,0 +1,49 @@ +name: "Hallucination" +source: + marketplace_id: "matheusdearaujo.hallucination" + version: "2.2.1" + installs: 463 + author: "matheusdearaujo" + repo: "https://github.com/matheusdearaujo/hallucination-theme" + url: "https://marketplace.visualstudio.com/items?itemName=matheusdearaujo.hallucination" +colors: + bg: "#000000" + fg: "#FEFEFE" + black: "#000000" + red: "#CD3131" + green: "#50FA7B" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#8BE9FD" + white: "#E5E5E5" + brightBlack: "#6F6F6F" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.2 + black: 0 + red: 27.7 + green: 85.9 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 85 + white: 91 + brightBlack: 27 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/hamidthedev-professional.yaml b/themes/hamidthedev-professional.yaml new file mode 100644 index 00000000..33731f66 --- /dev/null +++ b/themes/hamidthedev-professional.yaml @@ -0,0 +1,49 @@ +name: "HamidTheDev Professional" +source: + marketplace_id: "HamidTheDev.hamidthedev" + version: "6.0.0" + installs: 923 + author: "HamidTheDev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HamidTheDev.hamidthedev" +colors: + bg: "#1A2023" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 229 + contrast: + fg: 58.4 + black: 7.9 + red: 35.7 + green: 59.4 + yellow: 47.6 + blue: 48.7 + magenta: 38.1 + cyan: 51.5 + white: 82.1 + brightBlack: 14.5 + brightRed: 45.1 + brightGreen: 75.8 + brightYellow: 60.2 + brightBlue: 62.8 + brightMagenta: 49.3 + brightCyan: 66.8 + brightWhite: 89.7 diff --git a/themes/han.yaml b/themes/han.yaml new file mode 100644 index 00000000..a3496fef --- /dev/null +++ b/themes/han.yaml @@ -0,0 +1,49 @@ +name: "Han" +source: + marketplace_id: "nathanwu.han-vscode" + version: "0.3.2" + installs: 564 + author: "Nathan Wu" + repo: "https://github.com/na-wu/project-han" + url: "https://marketplace.visualstudio.com/items?itemName=nathanwu.han-vscode" +colors: + bg: "#16242F" + fg: "#A2AABC" + black: "#465880" + red: "#F0767E" + green: "#70BA00" + yellow: "#FFB92C" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#F0767E" + brightGreen: "#70BA00" + brightYellow: "#F4C3C2" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "green" + hue: 243 + contrast: + fg: 53.6 + black: 15 + red: 46.5 + green: 52.4 + yellow: 69.6 + blue: 66.3 + magenta: 59.8 + cyan: 66.3 + white: 53.6 + brightBlack: 9.6 + brightRed: 46.5 + brightGreen: 52.4 + brightYellow: 74.8 + brightBlue: 66.3 + brightMagenta: 59.8 + brightCyan: 66.3 + brightWhite: 53.6 diff --git a/themes/happy-dark.yaml b/themes/happy-dark.yaml new file mode 100644 index 00000000..00964bfd --- /dev/null +++ b/themes/happy-dark.yaml @@ -0,0 +1,49 @@ +name: "Happy Dark" +source: + marketplace_id: "lynnjinjie.vscode-happy-theme" + version: "0.2.1" + installs: 218 + author: "lynnjinjie" + repo: "https://github.com/lynnjinjie/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lynnjinjie.vscode-happy-theme" +colors: + bg: "#222222" + fg: "#DDDDDD" + black: "#1E1E1E" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B479C3" + cyan: "#6AB8C0" + white: "#EEEEEE" + brightBlack: "#1E1E1E" + brightRed: "#E47474" + brightGreen: "#66B395" + brightYellow: "#E2C97E" + brightBlue: "#7098D4" + brightMagenta: "#B479C3" + brightCyan: "#6AB8C0" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.6 + black: 0 + red: 43.4 + green: 50.8 + yellow: 72.5 + blue: 43.5 + magenta: 39.7 + cyan: 55 + white: 94.3 + brightBlack: 0 + brightRed: 43.4 + brightGreen: 50.8 + brightYellow: 72.5 + brightBlue: 43.5 + brightMagenta: 39.7 + brightCyan: 55 + brightWhite: 94.3 diff --git a/themes/happy-heart-1-dark-classic.yaml b/themes/happy-heart-1-dark-classic.yaml new file mode 100644 index 00000000..3e1acfa1 --- /dev/null +++ b/themes/happy-heart-1-dark-classic.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 1 - Dark Classic" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFAA00" + blue: "#0000FF" + magenta: "#FF3366" + cyan: "#FFAA00" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFAA00" + brightBlue: "#0000FF" + brightMagenta: "#FF3366" + brightCyan: "#FFAA00" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 66.5 + blue: 16.2 + magenta: 40.4 + cyan: 66.5 + white: 107.9 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 66.5 + brightBlue: 16.2 + brightMagenta: 40.4 + brightCyan: 66.5 + brightWhite: 107.9 diff --git a/themes/happy-heart-10-forest-green.yaml b/themes/happy-heart-10-forest-green.yaml new file mode 100644 index 00000000..7da46cce --- /dev/null +++ b/themes/happy-heart-10-forest-green.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 10 - Forest Green" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#0A1A0A" + fg: "#F0FFF4" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#84CC16" + blue: "#0000FF" + magenta: "#22C55E" + cyan: "#84CC16" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#84CC16" + brightBlue: "#0000FF" + brightMagenta: "#22C55E" + brightCyan: "#84CC16" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 144 + contrast: + fg: 104.3 + black: 0 + red: 36.5 + green: 85.5 + yellow: 63.6 + blue: 15.2 + magenta: 56.8 + cyan: 63.6 + white: 106.9 + brightBlack: 0 + brightRed: 36.5 + brightGreen: 85.5 + brightYellow: 63.6 + brightBlue: 15.2 + brightMagenta: 56.8 + brightCyan: 63.6 + brightWhite: 106.9 diff --git a/themes/happy-heart-11-emerald-green.yaml b/themes/happy-heart-11-emerald-green.yaml new file mode 100644 index 00000000..11b555e4 --- /dev/null +++ b/themes/happy-heart-11-emerald-green.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 11 - Emerald Green" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#064E3B" + fg: "#D1FAE5" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#34D399" + blue: "#0000FF" + magenta: "#059669" + cyan: "#34D399" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#34D399" + brightBlue: "#0000FF" + brightMagenta: "#059669" + brightCyan: "#34D399" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 169 + contrast: + fg: 86.9 + black: 11.8 + red: 26 + green: 75 + yellow: 54.7 + blue: 0 + magenta: 25.5 + cyan: 54.7 + white: 96.4 + brightBlack: 11.8 + brightRed: 26 + brightGreen: 75 + brightYellow: 54.7 + brightBlue: 0 + brightMagenta: 25.5 + brightCyan: 54.7 + brightWhite: 96.4 diff --git a/themes/happy-heart-12-midnight-purple.yaml b/themes/happy-heart-12-midnight-purple.yaml new file mode 100644 index 00000000..65667d48 --- /dev/null +++ b/themes/happy-heart-12-midnight-purple.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 12 - Midnight Purple" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#0F0B1A" + fg: "#E0E7FF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#06B6D4" + blue: "#0000FF" + magenta: "#EC4899" + cyan: "#06B6D4" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#06B6D4" + brightBlue: "#0000FF" + brightMagenta: "#EC4899" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 295 + contrast: + fg: 92.2 + black: 0 + red: 37.2 + green: 86.2 + yellow: 54.6 + blue: 15.9 + magenta: 39.7 + cyan: 54.6 + white: 107.6 + brightBlack: 0 + brightRed: 37.2 + brightGreen: 86.2 + brightYellow: 54.6 + brightBlue: 15.9 + brightMagenta: 39.7 + brightCyan: 54.6 + brightWhite: 107.6 diff --git a/themes/happy-heart-13-royal-purple.yaml b/themes/happy-heart-13-royal-purple.yaml new file mode 100644 index 00000000..ecd2bcc2 --- /dev/null +++ b/themes/happy-heart-13-royal-purple.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 13 - Royal Purple" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#1A0F2E" + fg: "#E0E7FF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#A855F7" + blue: "#0000FF" + magenta: "#7C3AED" + cyan: "#A855F7" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#A855F7" + brightBlue: "#0000FF" + brightMagenta: "#7C3AED" + brightCyan: "#A855F7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 297 + contrast: + fg: 91.6 + black: 0 + red: 36.6 + green: 85.5 + yellow: 34.5 + blue: 15.3 + magenta: 23.4 + cyan: 34.5 + white: 106.9 + brightBlack: 0 + brightRed: 36.6 + brightGreen: 85.5 + brightYellow: 34.5 + brightBlue: 15.3 + brightMagenta: 23.4 + brightCyan: 34.5 + brightWhite: 106.9 diff --git a/themes/happy-heart-14-rose-gold.yaml b/themes/happy-heart-14-rose-gold.yaml new file mode 100644 index 00000000..e3dcf882 --- /dev/null +++ b/themes/happy-heart-14-rose-gold.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 14 - Rose Gold" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#1F0F1A" + fg: "#FDF2F8" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#8B5CF6" + blue: "#0000FF" + magenta: "#F59E0B" + cyan: "#8B5CF6" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#8B5CF6" + brightBlue: "#0000FF" + brightMagenta: "#F59E0B" + brightCyan: "#8B5CF6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 339 + contrast: + fg: 100.4 + black: 0 + red: 36.7 + green: 85.7 + yellow: 32.1 + blue: 15.4 + magenta: 59.6 + cyan: 32.1 + white: 107.1 + brightBlack: 0 + brightRed: 36.7 + brightGreen: 85.7 + brightYellow: 32.1 + brightBlue: 15.4 + brightMagenta: 59.6 + brightCyan: 32.1 + brightWhite: 107.1 diff --git a/themes/happy-heart-15-chilli-paper.yaml b/themes/happy-heart-15-chilli-paper.yaml new file mode 100644 index 00000000..436b2f1c --- /dev/null +++ b/themes/happy-heart-15-chilli-paper.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 15 - Chilli Paper" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#1A0A0A" + fg: "#FEF2F2" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#F59E0B" + blue: "#0000FF" + magenta: "#EF4444" + cyan: "#F59E0B" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#F59E0B" + brightBlue: "#0000FF" + brightMagenta: "#EF4444" + brightCyan: "#F59E0B" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 20 + contrast: + fg: 100.6 + black: 0 + red: 37.1 + green: 86.1 + yellow: 60 + blue: 15.8 + magenta: 37.4 + cyan: 60 + white: 107.5 + brightBlack: 0 + brightRed: 37.1 + brightGreen: 86.1 + brightYellow: 60 + brightBlue: 15.8 + brightMagenta: 37.4 + brightCyan: 60 + brightWhite: 107.5 diff --git a/themes/happy-heart-16-grey.yaml b/themes/happy-heart-16-grey.yaml new file mode 100644 index 00000000..45edd0ee --- /dev/null +++ b/themes/happy-heart-16-grey.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 16 - Grey" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#374151" + fg: "#F9FAFB" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#D1D5DB" + blue: "#0000FF" + magenta: "#9CA3AF" + cyan: "#D1D5DB" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#D1D5DB" + brightBlue: "#0000FF" + brightMagenta: "#9CA3AF" + brightCyan: "#D1D5DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 260 + contrast: + fg: 94.6 + black: 10 + red: 27.6 + green: 76.6 + yellow: 70.9 + blue: 0 + magenta: 42.2 + cyan: 70.9 + white: 98 + brightBlack: 10 + brightRed: 27.6 + brightGreen: 76.6 + brightYellow: 70.9 + brightBlue: 0 + brightMagenta: 42.2 + brightCyan: 70.9 + brightWhite: 98 diff --git a/themes/happy-heart-17-yellow.yaml b/themes/happy-heart-17-yellow.yaml new file mode 100644 index 00000000..e99f6c13 --- /dev/null +++ b/themes/happy-heart-17-yellow.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 17 - Yellow" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#1A1A0A" + fg: "#FFF8DC" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FCD34D" + blue: "#0000FF" + magenta: "#F59E0B" + cyan: "#FCD34D" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FCD34D" + brightBlue: "#0000FF" + brightMagenta: "#F59E0B" + brightCyan: "#FCD34D" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 109 + contrast: + fg: 101.8 + black: 0 + red: 36.3 + green: 85.2 + yellow: 81.1 + blue: 15 + magenta: 59.2 + cyan: 81.1 + white: 106.6 + brightBlack: 0 + brightRed: 36.3 + brightGreen: 85.2 + brightYellow: 81.1 + brightBlue: 15 + brightMagenta: 59.2 + brightCyan: 81.1 + brightWhite: 106.6 diff --git a/themes/happy-heart-2-dark-orange.yaml b/themes/happy-heart-2-dark-orange.yaml new file mode 100644 index 00000000..1925b770 --- /dev/null +++ b/themes/happy-heart-2-dark-orange.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 2 - Dark Orange" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#0A0A0A" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFD700" + blue: "#0000FF" + magenta: "#00D4FF" + cyan: "#FFD700" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFD700" + brightBlue: "#0000FF" + brightMagenta: "#00D4FF" + brightCyan: "#FFD700" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 107.7 + black: 0 + red: 37.4 + green: 86.3 + yellow: 84.1 + blue: 16.1 + magenta: 70.8 + cyan: 84.1 + white: 107.7 + brightBlack: 0 + brightRed: 37.4 + brightGreen: 86.3 + brightYellow: 84.1 + brightBlue: 16.1 + brightMagenta: 70.8 + brightCyan: 84.1 + brightWhite: 107.7 diff --git a/themes/happy-heart-3-dark-purple.yaml b/themes/happy-heart-3-dark-purple.yaml new file mode 100644 index 00000000..5f38a7b9 --- /dev/null +++ b/themes/happy-heart-3-dark-purple.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 3 - Dark Purple" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#0F0F0F" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#06B6D4" + blue: "#0000FF" + magenta: "#EC4899" + cyan: "#06B6D4" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#06B6D4" + brightBlue: "#0000FF" + brightMagenta: "#EC4899" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 107.5 + black: 0 + red: 37.2 + green: 86.1 + yellow: 54.5 + blue: 15.8 + magenta: 39.6 + cyan: 54.5 + white: 107.5 + brightBlack: 0 + brightRed: 37.2 + brightGreen: 86.1 + brightYellow: 54.5 + brightBlue: 15.8 + brightMagenta: 39.6 + brightCyan: 54.5 + brightWhite: 107.5 diff --git a/themes/happy-heart-4-dark-green.yaml b/themes/happy-heart-4-dark-green.yaml new file mode 100644 index 00000000..ad0d2c3c --- /dev/null +++ b/themes/happy-heart-4-dark-green.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 4 - Dark Green" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#0A0A0A" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#84CC16" + blue: "#0000FF" + magenta: "#22C55E" + cyan: "#84CC16" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#84CC16" + brightBlue: "#0000FF" + brightMagenta: "#22C55E" + brightCyan: "#84CC16" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 107.7 + black: 0 + red: 37.4 + green: 86.3 + yellow: 64.4 + blue: 16.1 + magenta: 57.7 + cyan: 64.4 + white: 107.7 + brightBlack: 0 + brightRed: 37.4 + brightGreen: 86.3 + brightYellow: 64.4 + brightBlue: 16.1 + brightMagenta: 57.7 + brightCyan: 64.4 + brightWhite: 107.7 diff --git a/themes/happy-heart-5-deep-blue.yaml b/themes/happy-heart-5-deep-blue.yaml new file mode 100644 index 00000000..fef394ea --- /dev/null +++ b/themes/happy-heart-5-deep-blue.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 5 - Deep Blue" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#010610" + fg: "#E6F1FF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFD700" + blue: "#0000FF" + magenta: "#FF6B35" + cyan: "#FFD700" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFD700" + brightBlue: "#0000FF" + brightMagenta: "#FF6B35" + brightCyan: "#FFD700" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 252 + contrast: + fg: 97.8 + black: 0 + red: 37.5 + green: 86.4 + yellow: 84.2 + blue: 16.2 + magenta: 48.2 + cyan: 84.2 + white: 107.8 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 86.4 + brightYellow: 84.2 + brightBlue: 16.2 + brightMagenta: 48.2 + brightCyan: 84.2 + brightWhite: 107.8 diff --git a/themes/happy-heart-6-ocean-blue.yaml b/themes/happy-heart-6-ocean-blue.yaml new file mode 100644 index 00000000..3cfd47c2 --- /dev/null +++ b/themes/happy-heart-6-ocean-blue.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 6 - Ocean Blue" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#0A0E1A" + fg: "#E6F1FF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#90E0EF" + blue: "#0000FF" + magenta: "#0077B6" + cyan: "#90E0EF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#90E0EF" + brightBlue: "#0000FF" + brightMagenta: "#0077B6" + brightCyan: "#90E0EF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 269 + contrast: + fg: 97.5 + black: 0 + red: 37.2 + green: 86.1 + yellow: 79.9 + blue: 15.9 + magenta: 28.2 + cyan: 79.9 + white: 107.5 + brightBlack: 0 + brightRed: 37.2 + brightGreen: 86.1 + brightYellow: 79.9 + brightBlue: 15.9 + brightMagenta: 28.2 + brightCyan: 79.9 + brightWhite: 107.5 diff --git a/themes/happy-heart-7-navy-blue.yaml b/themes/happy-heart-7-navy-blue.yaml new file mode 100644 index 00000000..ae6abd4d --- /dev/null +++ b/themes/happy-heart-7-navy-blue.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 7 - Navy Blue" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#051537" + fg: "#E6F1FF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#3399FF" + blue: "#0000FF" + magenta: "#004499" + cyan: "#3399FF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#3399FF" + brightBlue: "#0000FF" + brightMagenta: "#004499" + brightCyan: "#3399FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 262 + contrast: + fg: 96.7 + black: 0 + red: 36.4 + green: 85.3 + yellow: 45.2 + blue: 15.1 + magenta: 10.8 + cyan: 45.2 + white: 106.7 + brightBlack: 0 + brightRed: 36.4 + brightGreen: 85.3 + brightYellow: 45.2 + brightBlue: 15.1 + brightMagenta: 10.8 + brightCyan: 45.2 + brightWhite: 106.7 diff --git a/themes/happy-heart-8-bright-light.yaml b/themes/happy-heart-8-bright-light.yaml new file mode 100644 index 00000000..3bac5c3a --- /dev/null +++ b/themes/happy-heart-8-bright-light.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 8 - Bright Light" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFAA00" + blue: "#0000FF" + magenta: "#FF3366" + cyan: "#FFAA00" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFAA00" + brightBlue: "#0000FF" + brightMagenta: "#FF3366" + brightCyan: "#FFAA00" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 98.7 + black: 106 + red: 64.1 + green: 17.1 + yellow: 36 + blue: 85.8 + magenta: 61.3 + cyan: 36 + white: 0 + brightBlack: 106 + brightRed: 64.1 + brightGreen: 17.1 + brightYellow: 36 + brightBlue: 85.8 + brightMagenta: 61.3 + brightCyan: 36 + brightWhite: 0 diff --git a/themes/happy-heart-9-smooth-light.yaml b/themes/happy-heart-9-smooth-light.yaml new file mode 100644 index 00000000..1ca4fbd1 --- /dev/null +++ b/themes/happy-heart-9-smooth-light.yaml @@ -0,0 +1,49 @@ +name: "Happy Heart 9 - Smooth Light" +source: + marketplace_id: "Khushdil380.happy-heart" + version: "1.0.1" + installs: 129 + author: "Khushdil Ansari" + repo: "https://github.com/Khushdil380/happy-heart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" +colors: + bg: "#FAFAFA" + fg: "#1F2937" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#F59E0B" + blue: "#0000FF" + magenta: "#7C3AED" + cyan: "#F59E0B" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#F59E0B" + brightBlue: "#0000FF" + brightMagenta: "#7C3AED" + brightCyan: "#F59E0B" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 98.5 + black: 103 + red: 61.1 + green: 14.1 + yellow: 38.8 + blue: 82.8 + magenta: 74.5 + cyan: 38.8 + white: 0 + brightBlack: 103 + brightRed: 61.1 + brightGreen: 14.1 + brightYellow: 38.8 + brightBlue: 82.8 + brightMagenta: 74.5 + brightCyan: 38.8 + brightWhite: 0 diff --git a/themes/hapsida.yaml b/themes/hapsida.yaml new file mode 100644 index 00000000..df584f9c --- /dev/null +++ b/themes/hapsida.yaml @@ -0,0 +1,49 @@ +name: "Hapsida" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" +colors: + bg: "#080808" + fg: "#EEFFFF" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FFC600" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FFC600" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 105.5 + black: 0 + red: 48 + green: 67.2 + yellow: 77.1 + blue: 39.7 + magenta: 65.3 + cyan: 93.7 + white: 107.8 + brightBlack: 15.6 + brightRed: 48 + brightGreen: 67.2 + brightYellow: 77.1 + brightBlue: 39.7 + brightMagenta: 65.3 + brightCyan: 93.7 + brightWhite: 0 diff --git a/themes/hard-hacker-darker.yaml b/themes/hard-hacker-darker.yaml new file mode 100644 index 00000000..7d8d8e66 --- /dev/null +++ b/themes/hard-hacker-darker.yaml @@ -0,0 +1,49 @@ +name: "Hard Hacker Darker" +source: + marketplace_id: "HardHacker.hard-hacker-theme" + version: "0.2.3" + installs: 12846 + author: "Hard Hacker" + repo: "https://github.com/hardhackerlabs/theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" +colors: + bg: "#211E2A" + fg: "#EEE9FC" + black: "#211E2A" + red: "#E965A5" + green: "#B1F2A7" + yellow: "#EBDE76" + blue: "#B1BAF4" + magenta: "#E192EF" + cyan: "#B3F4F3" + white: "#EEE9FC" + brightBlack: "#8B81A7" + brightRed: "#E965A5" + brightGreen: "#B1F2A7" + brightYellow: "#EBDE76" + brightBlue: "#B1BAF4" + brightMagenta: "#E192EF" + brightCyan: "#B3F4F3" + brightWhite: "#EEE9FC" +meta: + mode: "dark" + accent: "red" + hue: 296 + contrast: + fg: 93.1 + black: 0 + red: 42.9 + green: 86.8 + yellow: 83.1 + blue: 64.9 + magenta: 57.1 + cyan: 91 + white: 93.1 + brightBlack: 35.8 + brightRed: 42.9 + brightGreen: 86.8 + brightYellow: 83.1 + brightBlue: 64.9 + brightMagenta: 57.1 + brightCyan: 91 + brightWhite: 93.1 diff --git a/themes/hard-hacker-high-contrast.yaml b/themes/hard-hacker-high-contrast.yaml new file mode 100644 index 00000000..c398c753 --- /dev/null +++ b/themes/hard-hacker-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Hard Hacker High Contrast" +source: + marketplace_id: "HardHacker.hard-hacker-theme" + version: "0.2.3" + installs: 12846 + author: "Hard Hacker" + repo: "https://github.com/hardhackerlabs/theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" +colors: + bg: "#282433" + fg: "#EEE9FC" + black: "#282433" + red: "#E965A5" + green: "#B1F2A7" + yellow: "#EBDE76" + blue: "#B1BAF4" + magenta: "#E192EF" + cyan: "#B3F4F3" + white: "#EEE9FC" + brightBlack: "#938AAD" + brightRed: "#E965A5" + brightGreen: "#B1F2A7" + brightYellow: "#EBDE76" + brightBlue: "#B1BAF4" + brightMagenta: "#E192EF" + brightCyan: "#B3F4F3" + brightWhite: "#EEE9FC" +meta: + mode: "dark" + accent: "red" + hue: 297 + contrast: + fg: 92 + black: 0 + red: 41.9 + green: 85.8 + yellow: 82.1 + blue: 63.9 + magenta: 56 + cyan: 89.9 + white: 92 + brightBlack: 38.9 + brightRed: 41.9 + brightGreen: 85.8 + brightYellow: 82.1 + brightBlue: 63.9 + brightMagenta: 56 + brightCyan: 89.9 + brightWhite: 92 diff --git a/themes/hard-hacker-light-high-contrast.yaml b/themes/hard-hacker-light-high-contrast.yaml new file mode 100644 index 00000000..240861bd --- /dev/null +++ b/themes/hard-hacker-light-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Hard Hacker Light High Contrast" +source: + marketplace_id: "HardHacker.hard-hacker-theme" + version: "0.2.3" + installs: 12846 + author: "Hard Hacker" + repo: "https://github.com/hardhackerlabs/theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" +colors: + bg: "#FBFAFC" + fg: "#282433" + black: "#282433" + red: "#B33974" + green: "#3C8032" + yellow: "#A86200" + blue: "#5663B8" + magenta: "#832294" + cyan: "#23758C" + white: "#FBFAFC" + brightBlack: "#756F8C" + brightRed: "#B33974" + brightGreen: "#3C8032" + brightYellow: "#A86200" + brightBlue: "#5663B8" + brightMagenta: "#832294" + brightCyan: "#23758C" + brightWhite: "#FBFAFC" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 99.2 + black: 99.2 + red: 74.2 + green: 70.6 + yellow: 69.8 + blue: 74.1 + magenta: 83.8 + cyan: 73 + white: 0 + brightBlack: 70.3 + brightRed: 74.2 + brightGreen: 70.6 + brightYellow: 69.8 + brightBlue: 74.1 + brightMagenta: 83.8 + brightCyan: 73 + brightWhite: 0 diff --git a/themes/harddark.yaml b/themes/harddark.yaml new file mode 100644 index 00000000..7ec0a154 --- /dev/null +++ b/themes/harddark.yaml @@ -0,0 +1,49 @@ +name: "HardDark" +source: + marketplace_id: "hardxs.hardxs" + version: "0.0.1" + installs: 40 + author: "hardxs" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=hardxs.hardxs" +colors: + bg: "#060606" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FF1515" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 37.8 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/hardwired-arctic-blue.yaml b/themes/hardwired-arctic-blue.yaml new file mode 100644 index 00000000..232c1ce6 --- /dev/null +++ b/themes/hardwired-arctic-blue.yaml @@ -0,0 +1,49 @@ +name: "Hardwired - Arctic Blue" +source: + marketplace_id: "thwilson3.hardwired-color-theme" + version: "0.0.1" + installs: 624 + author: "thwilson3" + repo: "https://github.com/thwilson3/hardwired-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thwilson3.hardwired-color-theme" +colors: + bg: "#000000" + fg: "#7C9CA4" + black: "#43646D" + red: "#94B7C0" + green: "#B39987" + yellow: "#7D7D7D" + blue: "#72A1AD" + magenta: "#819DA5" + cyan: "#B39487" + white: "#B8CACF" + brightBlack: "#618690" + brightRed: "#939C9F" + brightGreen: "#B39987" + brightYellow: "#A9BDC2" + brightBlue: "#8DC2D1" + brightMagenta: "#9EBFC9" + brightCyan: "#B39487" + brightWhite: "#E2E2E2" +meta: + mode: "dark" + accent: "blue" + hue: null + contrast: + fg: 46 + black: 20.1 + red: 60.1 + green: 49.8 + yellow: 33.3 + blue: 47.5 + magenta: 46.8 + cyan: 48 + white: 72.6 + brightBlack: 34.8 + brightRed: 47.9 + brightGreen: 49.8 + brightYellow: 64.8 + brightBlue: 65 + brightMagenta: 64.9 + brightCyan: 48 + brightWhite: 89.1 diff --git a/themes/hardwired-electric-lime.yaml b/themes/hardwired-electric-lime.yaml new file mode 100644 index 00000000..61ed8e2a --- /dev/null +++ b/themes/hardwired-electric-lime.yaml @@ -0,0 +1,49 @@ +name: "Hardwired - Electric Lime" +source: + marketplace_id: "thwilson3.hardwired-color-theme" + version: "0.0.1" + installs: 624 + author: "thwilson3" + repo: "https://github.com/thwilson3/hardwired-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thwilson3.hardwired-color-theme" +colors: + bg: "#000000" + fg: "#DEFF67" + black: "#A4B664" + red: "#C5D198" + green: "#B39987" + yellow: "#DEE4CA" + blue: "#99B04A" + magenta: "#D9F578" + cyan: "#B39487" + white: "#EFFFB5" + brightBlack: "#C2D57F" + brightRed: "#DBE8AF" + brightGreen: "#B39987" + brightYellow: "#FAFFE6" + brightBlue: "#7A8A40" + brightMagenta: "#DAFF54" + brightCyan: "#B39487" + brightWhite: "#F3FFC7" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 98.9 + black: 58.4 + red: 75.1 + green: 49.8 + yellow: 88.5 + blue: 54.4 + magenta: 93.6 + cyan: 48 + white: 102.8 + brightBlack: 75.9 + brightRed: 89 + brightGreen: 49.8 + brightYellow: 106.1 + brightBlue: 36.3 + brightMagenta: 98.2 + brightCyan: 48 + brightWhite: 103.9 diff --git a/themes/hardwired-purple.yaml b/themes/hardwired-purple.yaml new file mode 100644 index 00000000..d1fbb313 --- /dev/null +++ b/themes/hardwired-purple.yaml @@ -0,0 +1,49 @@ +name: "Hardwired - Purple" +source: + marketplace_id: "thwilson3.hardwired-color-theme" + version: "0.0.1" + installs: 624 + author: "thwilson3" + repo: "https://github.com/thwilson3/hardwired-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thwilson3.hardwired-color-theme" +colors: + bg: "#000000" + fg: "#D3B6E6" + black: "#5E5564" + red: "#B599C9" + green: "#B39987" + yellow: "#A5A1A7" + blue: "#916AAB" + magenta: "#825E9B" + cyan: "#B39487" + white: "#C8B4D5" + brightBlack: "#897F90" + brightRed: "#D1B3E6" + brightGreen: "#B39987" + brightYellow: "#DACDE4" + brightBlue: "#AF87CB" + brightMagenta: "#BA79E6" + brightCyan: "#B39487" + brightWhite: "#F1DEFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 68.9 + black: 17.4 + red: 52.7 + green: 49.8 + yellow: 52.1 + blue: 31.8 + magenta: 25.9 + cyan: 48 + white: 65.8 + brightBlack: 36 + brightRed: 67.5 + brightGreen: 49.8 + brightYellow: 79 + brightBlue: 46 + brightMagenta: 45.2 + brightCyan: 48 + brightWhite: 90.9 diff --git a/themes/harley-quinn-theme.yaml b/themes/harley-quinn-theme.yaml new file mode 100644 index 00000000..c3494ff9 --- /dev/null +++ b/themes/harley-quinn-theme.yaml @@ -0,0 +1,49 @@ +name: "Harley Quinn Theme" +source: + marketplace_id: "NyctibiusVII.descomplica-theme" + version: "1.4.18" + installs: 387 + author: "NyctibiusVII" + repo: "https://github.com/Descomplica-ADS/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.descomplica-theme" +colors: + bg: "#000000" + fg: "#2AC7E3" + black: "#434343" + red: "#BC3131" + green: "#00C278" + yellow: "#D4E05B" + blue: "#2472C8" + magenta: "#D54799" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF5555" + brightGreen: "#00E88F" + brightYellow: "#F1FA8C" + brightBlue: "#3B8EEA" + brightMagenta: "#FF79C6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 63.5 + black: 9.5 + red: 24.1 + green: 56.7 + yellow: 82.5 + blue: 28.4 + magenta: 34.9 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 44.4 + brightGreen: 75.9 + brightYellow: 99.6 + brightBlue: 41 + brightMagenta: 55.6 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/harmonized-dark.yaml b/themes/harmonized-dark.yaml new file mode 100644 index 00000000..60443280 --- /dev/null +++ b/themes/harmonized-dark.yaml @@ -0,0 +1,49 @@ +name: "Harmonized dark" +source: + marketplace_id: "wheredoesyourmindgo.harmonized-vscode-theme" + version: "0.8.7" + installs: 823 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/harmonized-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.harmonized-vscode-theme" +colors: + bg: "#001920" + fg: "#BBBBBB" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 218 + contrast: + fg: 64.7 + black: 0 + red: 30.1 + green: 41.6 + yellow: 41.6 + blue: 36.7 + magenta: 30.4 + cyan: 42.4 + white: 91.9 + brightBlack: 0 + brightRed: 29.6 + brightGreen: 23.9 + brightYellow: 29.7 + brightBlue: 41.9 + brightMagenta: 30.4 + brightCyan: 48.8 + brightWhite: 101 diff --git a/themes/harmonized-light-hc.yaml b/themes/harmonized-light-hc.yaml new file mode 100644 index 00000000..e3f4eb1d --- /dev/null +++ b/themes/harmonized-light-hc.yaml @@ -0,0 +1,49 @@ +name: "Harmonized light (hc)" +source: + marketplace_id: "wheredoesyourmindgo.harmonized-vscode-theme" + version: "0.8.7" + installs: 823 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/harmonized-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.harmonized-vscode-theme" +colors: + bg: "#FDF9EE" + fg: "#333333" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.1 + black: 95.4 + red: 67 + green: 55.5 + yellow: 55.5 + blue: 60.4 + magenta: 66.7 + cyan: 54.8 + white: 7.6 + brightBlack: 98.1 + brightRed: 67.5 + brightGreen: 73.3 + brightYellow: 67.4 + brightBlue: 55.2 + brightMagenta: 66.7 + brightCyan: 48.5 + brightWhite: 0 diff --git a/themes/harmonized-light.yaml b/themes/harmonized-light.yaml new file mode 100644 index 00000000..080a940d --- /dev/null +++ b/themes/harmonized-light.yaml @@ -0,0 +1,49 @@ +name: "Harmonized light" +source: + marketplace_id: "wheredoesyourmindgo.harmonized-vscode-theme" + version: "0.8.7" + installs: 823 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/harmonized-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.harmonized-vscode-theme" +colors: + bg: "#FDF6E3" + fg: "#333333" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93.4 + black: 93.7 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 0 + brightBlack: 96.4 + brightRed: 65.8 + brightGreen: 71.6 + brightYellow: 65.7 + brightBlue: 53.5 + brightMagenta: 65 + brightCyan: 46.7 + brightWhite: 0 diff --git a/themes/harriet.yaml b/themes/harriet.yaml new file mode 100644 index 00000000..9ab5c458 --- /dev/null +++ b/themes/harriet.yaml @@ -0,0 +1,49 @@ +name: "Harriet" +source: + marketplace_id: "MatthewCocker.focal" + version: "1.0.0" + installs: 119 + author: "Matthew Cocker" + repo: "https://github.com/matthewcocker/focal" + url: "https://marketplace.visualstudio.com/items?itemName=MatthewCocker.focal" +colors: + bg: "#171717" + fg: "#B7C5D3" + black: "#41505E" + red: "#D95468" + green: "#8BD49C" + yellow: "#EBBF83" + blue: "#539AFC" + magenta: "#B62D65" + cyan: "#70E1E8" + white: "#FFFFFF" + brightBlack: "#41505E" + brightRed: "#D95468" + brightGreen: "#8BD49C" + brightYellow: "#EBBF83" + brightBlue: "#539AFC" + brightMagenta: "#B62D65" + brightCyan: "#70E1E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 69.5 + black: 12.6 + red: 35.2 + green: 69.9 + yellow: 71.3 + blue: 46.7 + magenta: 22.5 + cyan: 77.3 + white: 106.9 + brightBlack: 12.6 + brightRed: 35.2 + brightGreen: 69.9 + brightYellow: 71.3 + brightBlue: 46.7 + brightMagenta: 22.5 + brightCyan: 77.3 + brightWhite: 106.9 diff --git a/themes/harrys.yaml b/themes/harrys.yaml new file mode 100644 index 00000000..972bd587 --- /dev/null +++ b/themes/harrys.yaml @@ -0,0 +1,49 @@ +name: "Harrys" +source: + marketplace_id: "harryharry.harry-harry-dark" + version: "0.0.1" + installs: 214 + author: "harry harry" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=harryharry.harry-harry-dark" +colors: + bg: "#1E1E1E" + fg: "#819AFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 49 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/harshaddevpro.yaml b/themes/harshaddevpro.yaml new file mode 100644 index 00000000..60753758 --- /dev/null +++ b/themes/harshaddevpro.yaml @@ -0,0 +1,49 @@ +name: "HarshadDevPro" +source: + marketplace_id: "codewithharshad.codewithharshad" + version: "0.0.4" + installs: 19 + author: "codewithharshad" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=codewithharshad.codewithharshad" +colors: + bg: "#1E1E1E" + fg: "#F8F8F2" + black: "#252525" + red: "#FF7A85" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#F8F8F2" + brightBlack: "#252525" + brightRed: "#FF7A85" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.1 + black: 0 + red: 51.5 + green: 61.4 + yellow: 69.7 + blue: 53.8 + magenta: 44.3 + cyan: 53.7 + white: 101.1 + brightBlack: 0 + brightRed: 51.5 + brightGreen: 61.4 + brightYellow: 69.7 + brightBlue: 53.8 + brightMagenta: 44.3 + brightCyan: 53.7 + brightWhite: 101.1 diff --git a/themes/hashirama-senju-god-of-shinobi.yaml b/themes/hashirama-senju-god-of-shinobi.yaml new file mode 100644 index 00000000..4533ae50 --- /dev/null +++ b/themes/hashirama-senju-god-of-shinobi.yaml @@ -0,0 +1,49 @@ +name: "Hashirama Senju - God of Shinobi" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#1E2B1E" + fg: "#E8F5E8" + black: "#1E2B1E" + red: "#C85A54" + green: "#7FAF6E" + yellow: "#D4A574" + blue: "#6B9F7F" + magenta: "#9D7F6A" + cyan: "#5A8C6A" + white: "#D4E8D4" + brightBlack: "#8B9A8B" + brightRed: "#D87A73" + brightGreen: "#94C583" + brightYellow: "#E5BB8F" + brightBlue: "#84B598" + brightMagenta: "#B89885" + brightCyan: "#72A77F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 145 + contrast: + fg: 95.5 + black: 0 + red: 30.2 + green: 48.8 + yellow: 54.9 + blue: 41.1 + magenta: 33.7 + cyan: 31.9 + white: 86.1 + brightBlack: 42.2 + brightRed: 41.7 + brightGreen: 60.6 + brightYellow: 66.6 + brightBlue: 52.9 + brightMagenta: 46.6 + brightCyan: 44.9 + brightWhite: 104.5 diff --git a/themes/haube-blue-1.yaml b/themes/haube-blue-1.yaml new file mode 100644 index 00000000..8aaa0597 --- /dev/null +++ b/themes/haube-blue-1.yaml @@ -0,0 +1,49 @@ +name: "Haube Blue 1" +source: + marketplace_id: "kevinhaube.haube-theme-library" + version: "0.1.0" + installs: 93 + author: "kevinhaube" + repo: "https://github.com/kevinhaube/haube-theme-library" + url: "https://marketplace.visualstudio.com/items?itemName=kevinhaube.haube-theme-library" +colors: + bg: "#222D45" + fg: "#B1CAF0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 265 + contrast: + fg: 68.9 + black: 0 + red: 23.2 + green: 49.5 + yellow: 82.1 + blue: 23.9 + magenta: 26.2 + cyan: 44 + white: 86.5 + brightBlack: 18.5 + brightRed: 35 + brightGreen: 60 + brightYellow: 92.1 + brightBlue: 36.5 + brightMagenta: 41.8 + brightCyan: 51.9 + brightWhite: 86.5 diff --git a/themes/hawaii-contrast.yaml b/themes/hawaii-contrast.yaml new file mode 100644 index 00000000..672828b6 --- /dev/null +++ b/themes/hawaii-contrast.yaml @@ -0,0 +1,49 @@ +name: "hawaii-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#111110" + fg: "#E8E1DE" + black: "#1E1E1C" + red: "#BA0E2E" + green: "#EDBD44" + yellow: "#F75431" + blue: "#52B4D8" + magenta: "#E2922F" + cyan: "#92D8E8" + white: "#F2EFED" + brightBlack: "#464641" + brightRed: "#F03E5F" + brightGreen: "#F6DEA1" + brightYellow: "#FBA593" + brightBlue: "#A5D8EB" + brightMagenta: "#EEC188" + brightCyan: "#E6F6FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88.8 + black: 0 + red: 21 + green: 70.3 + yellow: 41.4 + blue: 55.2 + magenta: 52.6 + cyan: 75.9 + white: 97.2 + brightBlack: 9.9 + brightRed: 37.3 + brightGreen: 87.3 + brightYellow: 65.3 + brightBlue: 77.7 + brightMagenta: 73.2 + brightCyan: 99.5 + brightWhite: 107.4 diff --git a/themes/hawaii-light.yaml b/themes/hawaii-light.yaml new file mode 100644 index 00000000..23d71ae7 --- /dev/null +++ b/themes/hawaii-light.yaml @@ -0,0 +1,49 @@ +name: "hawaii-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#6D6764" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#EDBD44" + yellow: "#F75431" + blue: "#52B4D8" + magenta: "#E2922F" + cyan: "#92D8E8" + white: "#7A7470" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F6DEA1" + brightYellow: "#FBA593" + brightBlue: "#A5D8EB" + brightMagenta: "#EEC188" + brightCyan: "#E6F6FA" + brightWhite: "#A09A97" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 77.8 + black: 0 + red: 80.3 + green: 31.9 + yellow: 59.8 + blue: 46.4 + magenta: 48.8 + cyan: 26.6 + white: 72 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 15.9 + brightYellow: 36.7 + brightBlue: 24.9 + brightMagenta: 29.2 + brightCyan: 0 + brightWhite: 53.6 diff --git a/themes/hawaii.yaml b/themes/hawaii.yaml new file mode 100644 index 00000000..3b09ffa7 --- /dev/null +++ b/themes/hawaii.yaml @@ -0,0 +1,49 @@ +name: "hawaii" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#333130" + fg: "#E8E1DE" + black: "#403E3C" + red: "#BA0E2E" + green: "#EDBD44" + yellow: "#F75431" + blue: "#52B4D8" + magenta: "#E2922F" + cyan: "#92D8E8" + white: "#F2EFED" + brightBlack: "#686361" + brightRed: "#F03E5F" + brightGreen: "#F6DEA1" + brightYellow: "#FBA593" + brightBlue: "#A5D8EB" + brightMagenta: "#EEC188" + brightCyan: "#E6F6FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.9 + black: 0 + red: 16.1 + green: 65.3 + yellow: 36.5 + blue: 50.2 + magenta: 47.7 + cyan: 70.9 + white: 92.3 + brightBlack: 16.7 + brightRed: 32.3 + brightGreen: 82.4 + brightYellow: 60.3 + brightBlue: 72.7 + brightMagenta: 68.2 + brightCyan: 94.6 + brightWhite: 102.4 diff --git a/themes/hc-zenburn.yaml b/themes/hc-zenburn.yaml new file mode 100644 index 00000000..fcf58b32 --- /dev/null +++ b/themes/hc-zenburn.yaml @@ -0,0 +1,49 @@ +name: "hc-zenburn" +source: + marketplace_id: "drzix.hc-zenburn-vscode" + version: "0.3.0" + installs: 7767 + author: "Kyeongmin Cho" + repo: "https://github.com/drzix/hc-zenburn-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=drzix.hc-zenburn-vscode" +colors: + bg: "#313131" + fg: "#DCDCCC" + black: "#4E4E4E" + red: "#D9A0A0" + green: "#6C8C6C" + yellow: "#EDDCAC" + blue: "#BEADC9" + magenta: "#B986A9" + cyan: "#94CACC" + white: "#DCDCCC" + brightBlack: "#5E5E5E" + brightRed: "#E66666" + brightGreen: "#8CAC8C" + brightYellow: "#FDECBC" + brightBlue: "#DAC0E9" + brightMagenta: "#E090C7" + brightCyan: "#A0EDF0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.4 + black: 8.1 + red: 53.3 + green: 31.3 + yellow: 80.6 + blue: 55.8 + magenta: 40.1 + cyan: 63.5 + white: 79.4 + brightBlack: 14.3 + brightRed: 37.2 + brightGreen: 47.5 + brightYellow: 90.6 + brightBlue: 68.6 + brightMagenta: 50.8 + brightCyan: 82.5 + brightWhite: 102.5 diff --git a/themes/hecker-boy.yaml b/themes/hecker-boy.yaml new file mode 100644 index 00000000..497940c4 --- /dev/null +++ b/themes/hecker-boy.yaml @@ -0,0 +1,49 @@ +name: "Hecker Boy" +source: + marketplace_id: "Sreehari521.hecker-boy" + version: "0.0.1" + installs: 897 + author: "Sreehari521" + repo: "https://github.com/Sreehari521/Hecker-Boy" + url: "https://marketplace.visualstudio.com/items?itemName=Sreehari521.hecker-boy" +colors: + bg: "#001926" + fg: "#059600" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 233 + contrast: + fg: 34.8 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/held.yaml b/themes/held.yaml new file mode 100644 index 00000000..69ee210f --- /dev/null +++ b/themes/held.yaml @@ -0,0 +1,49 @@ +name: "Held" +source: + marketplace_id: "techwithcarlos.Held" + version: "1.1.0" + installs: 1597 + author: "techwithcarlos" + repo: "https://github.com/CarlosTaubeler/Held" + url: "https://marketplace.visualstudio.com/items?itemName=techwithcarlos.Held" +colors: + bg: "#142335" + fg: "#D7DBE0" + black: "#000000" + red: "#FF0000" + green: "#33FF00" + yellow: "#F2FF00" + blue: "#0066FF" + magenta: "#CC00FF" + cyan: "#0AB6C2" + white: "#D7DBE0" + brightBlack: "#808080" + brightRed: "#FF0000" + brightGreen: "#33FF00" + brightYellow: "#F2FF00" + brightBlue: "#0066FF" + brightMagenta: "#CC00FF" + brightCyan: "#35E2EE" + brightWhite: "#D7DBE0" +meta: + mode: "dark" + accent: "pink" + hue: 254 + contrast: + fg: 82 + black: 0 + red: 35 + green: 84.3 + yellow: 98.4 + blue: 26.8 + magenta: 33 + cyan: 51.5 + white: 82 + brightBlack: 32.3 + brightRed: 35 + brightGreen: 84.3 + brightYellow: 98.4 + brightBlue: 26.8 + brightMagenta: 33 + brightCyan: 74.5 + brightWhite: 82 diff --git a/themes/helion.yaml b/themes/helion.yaml new file mode 100644 index 00000000..c2e40cb6 --- /dev/null +++ b/themes/helion.yaml @@ -0,0 +1,49 @@ +name: "Helion" +source: + marketplace_id: "BrandonGandy.helion" + version: "1.0.1" + installs: 37 + author: "Brandon Gandy" + repo: "https://github.com/brandongandy/vscode-helion" + url: "https://marketplace.visualstudio.com/items?itemName=BrandonGandy.helion" +colors: + bg: "#263849" + fg: "#A8B6C0" + black: "#4E7A98" + red: "#F6606D" + green: "#68A82C" + yellow: "#CE8900" + blue: "#40ABE5" + magenta: "#D76AF1" + cyan: "#3FA89D" + white: "#D8DAD3" + brightBlack: "#4E7A98" + brightRed: "#F6606D" + brightGreen: "#68A82C" + brightYellow: "#CE8900" + brightBlue: "#40ABE5" + brightMagenta: "#D76AF1" + brightCyan: "#3FA89D" + brightWhite: "#D8DAD3" +meta: + mode: "dark" + accent: "pink" + hue: 248 + contrast: + fg: 54.9 + black: 22.9 + red: 38 + green: 39.8 + yellow: 39.8 + blue: 45.2 + magenta: 40.1 + cyan: 40.3 + white: 76.8 + brightBlack: 22.9 + brightRed: 38 + brightGreen: 39.8 + brightYellow: 39.8 + brightBlue: 45.2 + brightMagenta: 40.1 + brightCyan: 40.3 + brightWhite: 76.8 diff --git a/themes/helios-solarized-dark.yaml b/themes/helios-solarized-dark.yaml new file mode 100644 index 00000000..628567c5 --- /dev/null +++ b/themes/helios-solarized-dark.yaml @@ -0,0 +1,49 @@ +name: "Helios Solarized Dark" +source: + marketplace_id: "santoso-wijaya.helios-selene" + version: "0.3.18" + installs: 3053 + author: "Santoso Wijaya" + repo: "https://github.com/santoso-wijaya/vscode-helios-selene" + url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" +colors: + bg: "#002B36" + fg: "#92A1A1" + black: "#003641" + red: "#E0332E" + green: "#8D9800" + yellow: "#BB8801" + blue: "#008DD1" + magenta: "#F2579C" + cyan: "#1FA198" + white: "#829496" + brightBlack: "#002B36" + brightRed: "#CF4B15" + brightGreen: "#8D9800" + brightYellow: "#BB8801" + brightBlue: "#008DD1" + brightMagenta: "#5C73C4" + brightCyan: "#008DD1" + brightWhite: "#92A1A1" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 46.3 + black: 0 + red: 28.7 + green: 39.6 + yellow: 39.8 + blue: 34.7 + magenta: 40.3 + cyan: 39.8 + white: 39.4 + brightBlack: 0 + brightRed: 28 + brightGreen: 39.6 + brightYellow: 39.8 + brightBlue: 34.7 + brightMagenta: 27.4 + brightCyan: 34.7 + brightWhite: 46.3 diff --git a/themes/helios-solarized-light.yaml b/themes/helios-solarized-light.yaml new file mode 100644 index 00000000..8c386dfe --- /dev/null +++ b/themes/helios-solarized-light.yaml @@ -0,0 +1,49 @@ +name: "Helios Solarized Light" +source: + marketplace_id: "santoso-wijaya.helios-selene" + version: "0.3.18" + installs: 3053 + author: "Santoso Wijaya" + repo: "https://github.com/santoso-wijaya/vscode-helios-selene" + url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" +colors: + bg: "#FFF6E3" + fg: "#566E76" + black: "#F0E7D5" + red: "#E0332E" + green: "#8D9800" + yellow: "#BB8801" + blue: "#008DD1" + magenta: "#F2579C" + cyan: "#1FA198" + white: "#637B82" + brightBlack: "#FFF6E3" + brightRed: "#CF4B15" + brightGreen: "#8D9800" + brightYellow: "#BB8801" + brightBlue: "#008DD1" + brightMagenta: "#5C73C4" + brightCyan: "#008DD1" + brightWhite: "#566E76" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 71.9 + black: 0 + red: 64.5 + green: 53.7 + yellow: 53.5 + blue: 58.6 + magenta: 53 + cyan: 53.5 + white: 66.1 + brightBlack: 0 + brightRed: 65.2 + brightGreen: 53.7 + brightYellow: 53.5 + brightBlue: 58.6 + brightMagenta: 65.8 + brightCyan: 58.6 + brightWhite: 71.9 diff --git a/themes/helix.yaml b/themes/helix.yaml new file mode 100644 index 00000000..8da1f7a0 --- /dev/null +++ b/themes/helix.yaml @@ -0,0 +1,49 @@ +name: "Helix+" +source: + marketplace_id: "codewonders.helix" + version: "0.1.0" + installs: 3404 + author: "Adenekan Wonderful" + repo: "git+https://github.com/adenekan41/Helix" + url: "https://marketplace.visualstudio.com/items?itemName=codewonders.helix" +colors: + bg: "#1A1B2F" + fg: "#D6DEEB" + black: "#1A1B2F" + red: "#E64B3F" + green: "#22DA6E" + yellow: "#F0A7A0" + blue: "#82AAFF" + magenta: "#D493FE" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#E64B3F" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#D493FE" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 281 + contrast: + fg: 84.5 + black: 0 + red: 35 + green: 66.6 + yellow: 63.2 + blue: 55.2 + magenta: 56.6 + cyan: 59 + white: 106.2 + brightBlack: 14.9 + brightRed: 35 + brightGreen: 66.6 + brightYellow: 93 + brightBlue: 55.2 + brightMagenta: 56.6 + brightCyan: 73.3 + brightWhite: 106.2 diff --git a/themes/hell-pine.yaml b/themes/hell-pine.yaml new file mode 100644 index 00000000..f88d3054 --- /dev/null +++ b/themes/hell-pine.yaml @@ -0,0 +1,49 @@ +name: "Hell Pine" +source: + marketplace_id: "ABX.hell-pine" + version: "0.0.3" + installs: 722 + author: "ABX" + repo: "https://github.com/AbiXnash/hell-pine" + url: "https://marketplace.visualstudio.com/items?itemName=ABX.hell-pine" +colors: + bg: "#16181D" + fg: "#E0DEF4" + black: "#28263A" + red: "#D16D92" + green: "#5D7E80" + yellow: "#CA9F7C" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#EBBCBA" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#D16D92" + brightGreen: "#5D7E80" + brightYellow: "#CA9F7C" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#EBBCBA" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: 268 + contrast: + fg: 86.8 + black: 0 + red: 40.3 + green: 30 + yellow: 53.7 + blue: 71.2 + magenta: 60.2 + cyan: 71.7 + white: 86.8 + brightBlack: 41.1 + brightRed: 40.3 + brightGreen: 30 + brightYellow: 53.7 + brightBlue: 71.2 + brightMagenta: 60.2 + brightCyan: 71.7 + brightWhite: 86.8 diff --git a/themes/hellfire.yaml b/themes/hellfire.yaml new file mode 100644 index 00000000..d5a7dc4b --- /dev/null +++ b/themes/hellfire.yaml @@ -0,0 +1,49 @@ +name: "Hellfire" +source: + marketplace_id: "AlexCharbonneau.hellfire-theme" + version: "1.0.5" + installs: 22 + author: "Alex Charbonneau" + repo: "https://github.com/alexandrec90/hellfire_theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlexCharbonneau.hellfire-theme" +colors: + bg: "#0A0000" + fg: "#F0C090" + black: "#1A0000" + red: "#FF2200" + green: "#88CC22" + yellow: "#FF8800" + blue: "#FF4422" + magenta: "#CC2255" + cyan: "#FF6633" + white: "#F0C090" + brightBlack: "#550000" + brightRed: "#FF5533" + brightGreen: "#AAEE44" + brightYellow: "#FFAA22" + brightBlue: "#FF6644" + brightMagenta: "#EE4477" + brightCyan: "#FF8855" + brightWhite: "#FFF0E0" +meta: + mode: "dark" + accent: "orange" + hue: 29 + contrast: + fg: 73.8 + black: 0 + red: 38.2 + green: 64.9 + yellow: 55.5 + blue: 41.3 + magenta: 26.8 + cyan: 47.2 + white: 73.8 + brightBlack: 0 + brightRed: 43.9 + brightGreen: 84.4 + brightYellow: 66.5 + brightBlue: 47.3 + brightMagenta: 38.7 + brightCyan: 56 + brightWhite: 99.5 diff --git a/themes/hello-world-theme.yaml b/themes/hello-world-theme.yaml new file mode 100644 index 00000000..2f63fd17 --- /dev/null +++ b/themes/hello-world-theme.yaml @@ -0,0 +1,49 @@ +name: "{Hello World!} Theme" +source: + marketplace_id: "HelloWorld01.HelloWorld-Theme" + version: "1.0.0" + installs: 29 + author: "HelloWorld!" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HelloWorld01.HelloWorld-Theme" +colors: + bg: "#0F0F0F" + fg: "#0CB686" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFFF00" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#E8E876" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 51.3 + black: 0 + red: 27.3 + green: 53.6 + yellow: 102.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 89 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/hello.yaml b/themes/hello.yaml new file mode 100644 index 00000000..2ce1955e --- /dev/null +++ b/themes/hello.yaml @@ -0,0 +1,49 @@ +name: "hello" +source: + marketplace_id: "MemoTheme.memo-theme" + version: "1.0.1" + installs: 12 + author: "The Bear Theme" + repo: "https://github.com/mhmetglrq/memo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MemoTheme.memo-theme" +colors: + bg: "#101012" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 107.4 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/hendrikkels-dark.yaml b/themes/hendrikkels-dark.yaml new file mode 100644 index 00000000..4f0de095 --- /dev/null +++ b/themes/hendrikkels-dark.yaml @@ -0,0 +1,49 @@ +name: "Hendrikkels Dark" +source: + marketplace_id: "hendrikkels.hendrikkels" + version: "1.4.7" + installs: 460 + author: "hendrikkels" + repo: "https://github.com/hendrikkels/hendrikkels-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hendrikkels.hendrikkels" +colors: + bg: "#1A1A1A" + fg: "#8F8D88" + black: "#444444" + red: "#FF5A5A" + green: "#55ED87" + yellow: "#F49E4C" + blue: "#569FFC" + magenta: "#DE9BFE" + cyan: "#85D5CB" + white: "#A8A8A8" + brightBlack: "#888888" + brightRed: "#FF5D8F" + brightGreen: "#23D18C" + brightYellow: "#FFEE6B" + brightBlue: "#5677FC" + brightMagenta: "#A29BFE" + brightCyan: "#00CECB" + brightWhite: "#F3F3F3" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 39.8 + black: 8.5 + red: 44 + green: 78.2 + yellow: 59.3 + blue: 48.4 + magenta: 61.1 + cyan: 71.3 + white: 53.8 + brightBlack: 37.3 + brightRed: 45.9 + brightGreen: 63.2 + brightYellow: 93.9 + brightBlue: 34.7 + brightMagenta: 53 + brightCyan: 64 + brightWhite: 98.7 diff --git a/themes/hendrikkels-light.yaml b/themes/hendrikkels-light.yaml new file mode 100644 index 00000000..92bd71b0 --- /dev/null +++ b/themes/hendrikkels-light.yaml @@ -0,0 +1,49 @@ +name: "Hendrikkels Light" +source: + marketplace_id: "hendrikkels.hendrikkels" + version: "1.4.7" + installs: 460 + author: "hendrikkels" + repo: "https://github.com/hendrikkels/hendrikkels-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hendrikkels.hendrikkels" +colors: + bg: "#FFFFFF" + fg: "#424B54" + black: "#444444" + red: "#FF5A5A" + green: "#55ED87" + yellow: "#F49E4C" + blue: "#569FFC" + magenta: "#DE9BFE" + cyan: "#85D5CB" + white: "#A8A8A8" + brightBlack: "#888888" + brightRed: "#FF5D8F" + brightGreen: "#23D18C" + brightYellow: "#FFEE6B" + brightBlue: "#5677FC" + brightMagenta: "#A29BFE" + brightCyan: "#00CECB" + brightWhite: "#F3F3F3" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 90.3 + black: 92.6 + red: 56.4 + green: 23.6 + yellow: 41.6 + blue: 52.2 + magenta: 39.9 + cyan: 30.2 + white: 46.9 + brightBlack: 63.1 + brightRed: 54.5 + brightGreen: 37.8 + brightYellow: 9 + brightBlue: 65.7 + brightMagenta: 47.7 + brightCyan: 37.1 + brightWhite: 0 diff --git a/themes/heptapod.yaml b/themes/heptapod.yaml new file mode 100644 index 00000000..ece27775 --- /dev/null +++ b/themes/heptapod.yaml @@ -0,0 +1,49 @@ +name: "Heptapod" +source: + marketplace_id: "kenziebottoms.heptapod" + version: "2.0.1" + installs: 431 + author: "Kenzie Bottoms" + repo: "git+https://github.com/kenziebottoms/vscode-theme-heptapod" + url: "https://marketplace.visualstudio.com/items?itemName=kenziebottoms.heptapod" +colors: + bg: "#0D2935" + fg: "#F7F7F7" + black: "#B1B9BD" + red: "#CD8062" + green: "#74ABAB" + yellow: "#BFE6F7" + blue: "#74ABAB" + magenta: "#E3AE7B" + cyan: "#EBBCBC" + white: "#F7F7F7" + brightBlack: "#B1B9BD" + brightRed: "#CD8062" + brightGreen: "#74ABAB" + brightYellow: "#BFE6F7" + brightBlue: "#EBBCBC" + brightMagenta: "#6EBEE6" + brightCyan: "#EBBCBC" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 229 + contrast: + fg: 99.4 + black: 60.6 + red: 41.3 + green: 48.4 + yellow: 84.6 + blue: 48.4 + magenta: 61.1 + cyan: 69.7 + white: 99.4 + brightBlack: 60.6 + brightRed: 41.3 + brightGreen: 48.4 + brightYellow: 84.6 + brightBlue: 69.7 + brightMagenta: 59 + brightCyan: 69.7 + brightWhite: 99.4 diff --git a/themes/herbal.yaml b/themes/herbal.yaml new file mode 100644 index 00000000..2eecbe94 --- /dev/null +++ b/themes/herbal.yaml @@ -0,0 +1,49 @@ +name: "Herbal" +source: + marketplace_id: "Lotli.herbal-theme" + version: "0.0.2" + installs: 22 + author: "Lotli" + repo: "https://github.com/Lotli/herbal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Lotli.herbal-theme" +colors: + bg: "#28211F" + fg: "#FFECD4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 36 + contrast: + fg: 94.7 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 28.3 + cyan: 46.1 + white: 88.5 + brightBlack: 20.5 + brightRed: 37.1 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/hereafter.yaml b/themes/hereafter.yaml new file mode 100644 index 00000000..9726ed5b --- /dev/null +++ b/themes/hereafter.yaml @@ -0,0 +1,49 @@ +name: "hereafter." +source: + marketplace_id: "cyar-ika.hereafter" + version: "0.0.1" + installs: 414 + author: "cyarika" + repo: "https://github.com/cyareka/hereafter" + url: "https://marketplace.visualstudio.com/items?itemName=cyar-ika.hereafter" +colors: + bg: "#22212C" + fg: "#C4B5CD" + black: "#5F4A6D" + red: "#BE8282" + green: "#69A990" + yellow: "#CDB69D" + blue: "#7786C4" + magenta: "#BA7D9A" + cyan: "#79B1BE" + white: "#B8B8B8" + brightBlack: "#80718A" + brightRed: "#D39E9E" + brightGreen: "#A3D5C0" + brightYellow: "#B0975E" + brightBlue: "#A6B9E6" + brightMagenta: "#CDABC6" + brightCyan: "#A6D6E2" + brightWhite: "#C0C0C0" +meta: + mode: "dark" + accent: "purple" + hue: 289 + contrast: + fg: 62.8 + black: 12.6 + red: 41 + green: 46.6 + yellow: 62.5 + blue: 36.7 + magenta: 39.8 + cyan: 52.9 + white: 61.6 + brightBlack: 27.8 + brightRed: 54.5 + brightGreen: 72.2 + brightYellow: 45.2 + brightBlue: 62.2 + brightMagenta: 59.9 + brightCyan: 74.4 + brightWhite: 66.2 diff --git a/themes/hero-dark-inverse.yaml b/themes/hero-dark-inverse.yaml new file mode 100644 index 00000000..d2c1ba4a --- /dev/null +++ b/themes/hero-dark-inverse.yaml @@ -0,0 +1,49 @@ +name: "Hero Dark Inverse" +source: + marketplace_id: "jhdcruz.hero-theme" + version: "1.1.1" + installs: 14 + author: "Joshua Hero" + repo: "https://github.com/jhdcruz/hero-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jhdcruz.hero-theme" +colors: + bg: "#151515" + fg: "#D1D1D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.9 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/heroku-contrast.yaml b/themes/heroku-contrast.yaml new file mode 100644 index 00000000..2eab6c34 --- /dev/null +++ b/themes/heroku-contrast.yaml @@ -0,0 +1,49 @@ +name: "heroku-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0B0B0F" + fg: "#C8C7D5" + black: "#16161E" + red: "#BA0E2E" + green: "#585480" + yellow: "#7873AE" + blue: "#FFFFFF" + magenta: "#7873AE" + cyan: "#A6FA62" + white: "#D6D6E0" + brightBlack: "#36364A" + brightRed: "#F03E5F" + brightGreen: "#8C89B1" + brightYellow: "#B6B4D3" + brightBlue: "#FFFFFF" + brightMagenta: "#B6B4D3" + brightCyan: "#DEFDC5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.3 + black: 0 + red: 21.3 + green: 17.5 + yellow: 31.6 + blue: 107.7 + magenta: 31.6 + cyan: 90.3 + white: 82 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 40.9 + brightYellow: 63.2 + brightBlue: 107.7 + brightMagenta: 63.2 + brightCyan: 100 + brightWhite: 107.7 diff --git a/themes/heroku-light.yaml b/themes/heroku-light.yaml new file mode 100644 index 00000000..867f0956 --- /dev/null +++ b/themes/heroku-light.yaml @@ -0,0 +1,49 @@ +name: "heroku-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#F7F7FC" + fg: "#1B1B24" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#585480" + yellow: "#7873AE" + blue: "#B0ADD3" + magenta: "#7873AE" + cyan: "#6DAF36" + white: "#262633" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#8C89B1" + brightYellow: "#B6B4D3" + brightBlue: "#F0EFF7" + brightMagenta: "#B6B4D3" + brightCyan: "#A1D576" + brightWhite: "#47475E" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.4 + black: 0 + red: 75.8 + green: 79.7 + yellow: 65.3 + blue: 37.7 + magenta: 65.3 + cyan: 47.3 + white: 97.2 + brightBlack: 0 + brightRed: 59.3 + brightGreen: 56 + brightYellow: 34.4 + brightBlue: 0 + brightMagenta: 34.4 + brightCyan: 26 + brightWhite: 86.1 diff --git a/themes/heroku.yaml b/themes/heroku.yaml new file mode 100644 index 00000000..5aeeb95c --- /dev/null +++ b/themes/heroku.yaml @@ -0,0 +1,49 @@ +name: "heroku" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#1B1B24" + fg: "#C8C7D5" + black: "#262633" + red: "#BA0E2E" + green: "#585480" + yellow: "#7873AE" + blue: "#FFFFFF" + magenta: "#7873AE" + cyan: "#A6FA62" + white: "#D6D6E0" + brightBlack: "#47475E" + brightRed: "#F03E5F" + brightGreen: "#8C89B1" + brightYellow: "#B6B4D3" + brightBlue: "#FFFFFF" + brightMagenta: "#B6B4D3" + brightCyan: "#DEFDC5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 71.9 + black: 0 + red: 19.9 + green: 16.2 + yellow: 30.3 + blue: 106.3 + magenta: 30.3 + cyan: 88.9 + white: 80.6 + brightBlack: 10.1 + brightRed: 36.2 + brightGreen: 39.6 + brightYellow: 61.9 + brightBlue: 106.3 + brightMagenta: 61.9 + brightCyan: 98.6 + brightWhite: 106.3 diff --git a/themes/herzha-dark.yaml b/themes/herzha-dark.yaml new file mode 100644 index 00000000..89f5e8cb --- /dev/null +++ b/themes/herzha-dark.yaml @@ -0,0 +1,49 @@ +name: "Herzha Dark" +source: + marketplace_id: "madhanmaaz.vscode-herzha-theme" + version: "0.0.1" + installs: 17 + author: "madhanmaaz" + repo: "https://github.com/madhanmaaz/herzha-theme" + url: "https://marketplace.visualstudio.com/items?itemName=madhanmaaz.vscode-herzha-theme" +colors: + bg: "#141418" + fg: "#A9B1D6" + black: "#141418" + red: "#FB899E" + green: "#85D0B7" + yellow: "#F2C98B" + blue: "#7DCFFF" + magenta: "#A779F3" + cyan: "#03BDE5" + white: "#A9B1D6" + brightBlack: "#6C6C82" + brightRed: "#FF9FB1" + brightGreen: "#95DFC6" + brightYellow: "#F5D08A" + brightBlue: "#87A1FF" + brightMagenta: "#BB9AF7" + brightCyan: "#8BD5FF" + brightWhite: "#EEF0F7" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 60.1 + black: 0 + red: 56.6 + green: 68.7 + yellow: 76.9 + blue: 71.3 + magenta: 42.7 + cyan: 58.1 + white: 60.1 + brightBlack: 25.7 + brightRed: 64.8 + brightGreen: 77.6 + brightYellow: 80.3 + brightBlue: 53.2 + brightMagenta: 55.8 + brightCyan: 75 + brightWhite: 97.3 diff --git a/themes/herzha-flux.yaml b/themes/herzha-flux.yaml new file mode 100644 index 00000000..a911afc3 --- /dev/null +++ b/themes/herzha-flux.yaml @@ -0,0 +1,49 @@ +name: "Herzha Flux" +source: + marketplace_id: "madhanmaaz.vscode-herzha-theme" + version: "0.0.1" + installs: 17 + author: "madhanmaaz" + repo: "https://github.com/madhanmaaz/herzha-theme" + url: "https://marketplace.visualstudio.com/items?itemName=madhanmaaz.vscode-herzha-theme" +colors: + bg: "#0B0D14" + fg: "#B0B8E6" + black: "#0B0D14" + red: "#FF7A9A" + green: "#6ED1A7" + yellow: "#F3C677" + blue: "#82CFFF" + magenta: "#8F7CFF" + cyan: "#2EC4E6" + white: "#B0B8E6" + brightBlack: "#505E91" + brightRed: "#FF96B0" + brightGreen: "#86DFC0" + brightYellow: "#F6D38F" + brightBlue: "#7B96FF" + brightMagenta: "#A59BFF" + brightCyan: "#97DAFF" + brightWhite: "#FDFEFF" +meta: + mode: "dark" + accent: "magenta" + hue: 272 + contrast: + fg: 65 + black: 0 + red: 53.7 + green: 67.6 + yellow: 75.9 + blue: 72.1 + magenta: 42.1 + cyan: 62.1 + white: 65 + brightBlack: 20.4 + brightRed: 62.4 + brightGreen: 76.7 + brightYellow: 82.3 + brightBlue: 48.7 + brightMagenta: 54.5 + brightCyan: 78.7 + brightWhite: 106.8 diff --git a/themes/herzha-vanta.yaml b/themes/herzha-vanta.yaml new file mode 100644 index 00000000..d1b0992c --- /dev/null +++ b/themes/herzha-vanta.yaml @@ -0,0 +1,49 @@ +name: "Herzha Vanta" +source: + marketplace_id: "madhanmaaz.vscode-herzha-theme" + version: "0.0.1" + installs: 17 + author: "madhanmaaz" + repo: "https://github.com/madhanmaaz/herzha-theme" + url: "https://marketplace.visualstudio.com/items?itemName=madhanmaaz.vscode-herzha-theme" +colors: + bg: "#0A0A0D" + fg: "#A9B1D6" + black: "#0A0A0D" + red: "#FB899E" + green: "#85D0B7" + yellow: "#F2C98B" + blue: "#7DCFFF" + magenta: "#A779F3" + cyan: "#03BDE5" + white: "#A9B1D6" + brightBlack: "#5E5E7B" + brightRed: "#FF9FB1" + brightGreen: "#95DFC6" + brightYellow: "#F5D08A" + brightBlue: "#87A1FF" + brightMagenta: "#BB9AF7" + brightCyan: "#8BD5FF" + brightWhite: "#EEF0F7" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 60.7 + black: 0 + red: 57.2 + green: 69.3 + yellow: 77.5 + blue: 71.9 + magenta: 43.3 + cyan: 58.7 + white: 60.7 + brightBlack: 20.6 + brightRed: 65.4 + brightGreen: 78.2 + brightYellow: 80.9 + brightBlue: 53.8 + brightMagenta: 56.4 + brightCyan: 75.6 + brightWhite: 98 diff --git a/themes/hfa-theme.yaml b/themes/hfa-theme.yaml new file mode 100644 index 00000000..e040afb7 --- /dev/null +++ b/themes/hfa-theme.yaml @@ -0,0 +1,49 @@ +name: "HFA Theme" +source: + marketplace_id: "HFA-NYC.hani-dark-pro" + version: "0.0.1" + installs: 42 + author: "HFA-NYC" + repo: "https://github.com/hfa-ny/vscode-theme-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=HFA-NYC.hani-dark-pro" +colors: + bg: "#111111" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#D19A66" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5F636B" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#D19A66" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#ABB2BF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 59.9 + black: 0 + red: 42.6 + green: 62.8 + yellow: 53.2 + blue: 55.2 + magenta: 45.6 + cyan: 55.1 + white: 59.9 + brightBlack: 21.2 + brightRed: 42.6 + brightGreen: 62.8 + brightYellow: 53.2 + brightBlue: 55.2 + brightMagenta: 45.6 + brightCyan: 55.1 + brightWhite: 59.9 diff --git a/themes/hhp1614.yaml b/themes/hhp1614.yaml new file mode 100644 index 00000000..2f39ebce --- /dev/null +++ b/themes/hhp1614.yaml @@ -0,0 +1,49 @@ +name: "hhp1614" +source: + marketplace_id: "hhp1614.green-soft-theme" + version: "0.0.4" + installs: 1740 + author: "hhp1614" + repo: "https://github.com/hhp1614/vscode-green-soft-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hhp1614.green-soft-theme" +colors: + bg: "#FDF6E3" + fg: "#586E75" + black: "#FDF6E3" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#6C71C4" + cyan: "#2AA198" + white: "#586E75" + brightBlack: "#839496" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#6C71C4" + brightCyan: "#2AA198" + brightWhite: "#002B36" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 71.6 + black: 0 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 71.6 + brightBlack: 53.5 + brightRed: 65.3 + brightGreen: 53.8 + brightYellow: 53.8 + brightBlue: 58.7 + brightMagenta: 65 + brightCyan: 53.1 + brightWhite: 96.4 diff --git a/themes/hi-dark.yaml b/themes/hi-dark.yaml new file mode 100644 index 00000000..4171a6a4 --- /dev/null +++ b/themes/hi-dark.yaml @@ -0,0 +1,49 @@ +name: "Hi Dark" +source: + marketplace_id: "jiakun-zhao.vscode-theme-hi" + version: "0.0.17" + installs: 275 + author: "Jiakun Zhao" + repo: "https://github.com/jiakun-zhao/vscode-theme-hi" + url: "https://marketplace.visualstudio.com/items?itemName=jiakun-zhao.vscode-theme-hi" +colors: + bg: "#111111" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 81.8 + black: 0 + red: 41.3 + green: 37.2 + yellow: 76.1 + blue: 41.9 + magenta: 44.4 + cyan: 49.8 + white: 81.8 + brightBlack: 30.1 + brightRed: 41.3 + brightGreen: 37.2 + brightYellow: 76.1 + brightBlue: 41.9 + brightMagenta: 44.4 + brightCyan: 49.8 + brightWhite: 107.4 diff --git a/themes/hi-light.yaml b/themes/hi-light.yaml new file mode 100644 index 00000000..30e67d6e --- /dev/null +++ b/themes/hi-light.yaml @@ -0,0 +1,49 @@ +name: "Hi Light" +source: + marketplace_id: "jiakun-zhao.vscode-theme-hi" + version: "0.0.17" + installs: 275 + author: "Jiakun Zhao" + repo: "https://github.com/jiakun-zhao/vscode-theme-hi" + url: "https://marketplace.visualstudio.com/items?itemName=jiakun-zhao.vscode-theme-hi" +colors: + bg: "#FFFFFF" + fg: "#393A34" + black: "#111111" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 96.5 + black: 105.4 + red: 73.5 + green: 77.9 + yellow: 48.3 + blue: 78.2 + magenta: 81.1 + cyan: 63.5 + white: 21.1 + brightBlack: 45.8 + brightRed: 73.5 + brightGreen: 77.9 + brightYellow: 48.3 + brightBlue: 78.2 + brightMagenta: 81.1 + brightCyan: 63.5 + brightWhite: 17.6 diff --git a/themes/hibiscus.yaml b/themes/hibiscus.yaml new file mode 100644 index 00000000..3cd39788 --- /dev/null +++ b/themes/hibiscus.yaml @@ -0,0 +1,49 @@ +name: "Hibiscus" +source: + marketplace_id: "colinlienard.hibiscus-theme" + version: "0.3.1" + installs: 1246 + author: "Colin Lienard" + repo: "https://github.com/colinlienard/hibiscus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=colinlienard.hibiscus-theme" +colors: + bg: "#1F1F1F" + fg: "#9FABB1" + black: "#181818" + red: "#993D3D" + green: "#1E7C4D" + yellow: "#AC8747" + blue: "#2E6E9C" + magenta: "#7260AA" + cyan: "#2B9088" + white: "#D6DFE4" + brightBlack: "#232424" + brightRed: "#C16565" + brightGreen: "#46A475" + brightYellow: "#D4AF6F" + brightBlue: "#5696C4" + brightMagenta: "#9A88D2" + brightCyan: "#53B8B0" + brightWhite: "#D6DFE4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 53.7 + black: 0 + red: 17.1 + green: 24.4 + yellow: 39.1 + blue: 22.6 + magenta: 23.6 + cyan: 34 + white: 84.3 + brightBlack: 0 + brightRed: 33.2 + brightGreen: 42.4 + brightYellow: 60 + brightBlue: 40.7 + brightMagenta: 42.2 + brightCyan: 53.5 + brightWhite: 84.3 diff --git a/themes/high-contrast-april-light-theme.yaml b/themes/high-contrast-april-light-theme.yaml new file mode 100644 index 00000000..0e66a66e --- /dev/null +++ b/themes/high-contrast-april-light-theme.yaml @@ -0,0 +1,49 @@ +name: "High Contrast April Light Theme" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#FFF8E1" + fg: "#3E2723" + black: "#4E342E" + red: "#D84315" + green: "#8BC34A" + yellow: "#FFC107" + blue: "#1976D2" + magenta: "#7B1FA2" + cyan: "#0097A7" + white: "#E0E0E0" + brightBlack: "#616161" + brightRed: "#F4511E" + brightGreen: "#AED581" + brightYellow: "#FFD54F" + brightBlue: "#64B5F6" + brightMagenta: "#CE93D8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.1 + black: 91.8 + red: 65.3 + green: 36.7 + yellow: 23.6 + blue: 67.2 + magenta: 82.9 + cyan: 57.8 + white: 11.6 + brightBlack: 76.7 + brightRed: 56.9 + brightGreen: 24.9 + brightYellow: 15.5 + brightBlue: 39.2 + brightMagenta: 42.8 + brightCyan: 29.9 + brightWhite: 0 diff --git a/themes/high-contrast-april-theme.yaml b/themes/high-contrast-april-theme.yaml new file mode 100644 index 00000000..4ec3e0e7 --- /dev/null +++ b/themes/high-contrast-april-theme.yaml @@ -0,0 +1,49 @@ +name: "High Contrast April Theme" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#143D59" + fg: "#E6FFFA" + black: "#143D59" + red: "#FF6347" + green: "#32CD32" + yellow: "#FFD700" + blue: "#1E90FF" + magenta: "#8A2BE2" + cyan: "#00FFFF" + white: "#E6FFFA" + brightBlack: "#C3F3EE" + brightRed: "#FF4500" + brightGreen: "#7CFC00" + brightYellow: "#FFFF00" + brightBlue: "#4682B4" + brightMagenta: "#DA70D6" + brightCyan: "#AFEEEE" + brightWhite: "#E6FFFA" +meta: + mode: "dark" + accent: "green" + hue: 242 + contrast: + fg: 96.2 + black: 0 + red: 38.7 + green: 53.3 + yellow: 76.2 + blue: 34.6 + magenta: 15.3 + cyan: 84.1 + white: 96.2 + brightBlack: 85.8 + brightRed: 33.3 + brightGreen: 79.8 + brightYellow: 94.6 + brightBlue: 25.5 + brightMagenta: 39 + brightCyan: 81.4 + brightWhite: 96.2 diff --git a/themes/high-contrast-august-light-theme.yaml b/themes/high-contrast-august-light-theme.yaml new file mode 100644 index 00000000..d43f6920 --- /dev/null +++ b/themes/high-contrast-august-light-theme.yaml @@ -0,0 +1,49 @@ +name: "High Contrast August Light Theme" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#FFF8E1" + fg: "#1A237E" + black: "#1A237E" + red: "#FF3D00" + green: "#4CAF50" + yellow: "#FFC107" + blue: "#1976D2" + magenta: "#8E24AA" + cyan: "#00ACC1" + white: "#E0E0E0" + brightBlack: "#757575" + brightRed: "#FF6F00" + brightGreen: "#81C784" + brightYellow: "#FFD740" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 94.7 + black: 94.7 + red: 57.1 + green: 49.1 + yellow: 23.6 + blue: 67.2 + magenta: 78.9 + cyan: 48.1 + white: 11.6 + brightBlack: 67.8 + brightRed: 48.6 + brightGreen: 34.7 + brightYellow: 14.8 + brightBlue: 39.2 + brightMagenta: 58.6 + brightCyan: 29.9 + brightWhite: 0 diff --git a/themes/high-contrast-february-dark-theme.yaml b/themes/high-contrast-february-dark-theme.yaml new file mode 100644 index 00000000..e7ceac9e --- /dev/null +++ b/themes/high-contrast-february-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "High Contrast February Dark Theme" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#1E1E2E" + fg: "#EAEAFF" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#ECEFF4" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 284 + contrast: + fg: 93.2 + black: 0 + red: 31.9 + green: 60.6 + yellow: 75.3 + blue: 47.6 + magenta: 45.4 + cyan: 61.6 + white: 95.2 + brightBlack: 14.3 + brightRed: 31.9 + brightGreen: 60.6 + brightYellow: 75.3 + brightBlue: 47.6 + brightMagenta: 45.4 + brightCyan: 59.5 + brightWhite: 95.2 diff --git a/themes/high-contrast-february-light-theme-accessible.yaml b/themes/high-contrast-february-light-theme-accessible.yaml new file mode 100644 index 00000000..6307ce3b --- /dev/null +++ b/themes/high-contrast-february-light-theme-accessible.yaml @@ -0,0 +1,49 @@ +name: "High Contrast February Light Theme - Accessible" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#FFFFFF" + fg: "#1A1A1A" + black: "#263238" + red: "#D32F2F" + green: "#388E3C" + yellow: "#F57F17" + blue: "#1976D2" + magenta: "#7B1FA2" + cyan: "#0097A7" + white: "#ECEFF1" + brightBlack: "#546E7A" + brightRed: "#E64A19" + brightGreen: "#388E3C" + brightYellow: "#F57F17" + brightBlue: "#1976D2" + brightMagenta: "#7B1FA2" + brightCyan: "#0097A7" + brightWhite: "#ECEFF1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 104.3 + black: 99.5 + red: 72.8 + green: 68 + yellow: 50.9 + blue: 71.4 + magenta: 87.1 + cyan: 62 + white: 0 + brightBlack: 76.9 + brightRed: 65.4 + brightGreen: 68 + brightYellow: 50.9 + brightBlue: 71.4 + brightMagenta: 87.1 + brightCyan: 62 + brightWhite: 0 diff --git a/themes/high-contrast-february-theme-accessible.yaml b/themes/high-contrast-february-theme-accessible.yaml new file mode 100644 index 00000000..42745da1 --- /dev/null +++ b/themes/high-contrast-february-theme-accessible.yaml @@ -0,0 +1,49 @@ +name: "High Contrast February Theme - Accessible" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#0D1B2A" + fg: "#FFFFFF" + black: "#0D1B2A" + red: "#FF4500" + green: "#32CD32" + yellow: "#FFD700" + blue: "#1E90FF" + magenta: "#8A2BE2" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#A9A9A9" + brightRed: "#FF6347" + brightGreen: "#7CFC00" + brightYellow: "#FFFF00" + brightBlue: "#4682B4" + brightMagenta: "#DA70D6" + brightCyan: "#AFEEEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 251 + contrast: + fg: 106.5 + black: 0 + red: 40 + green: 60 + yellow: 82.9 + blue: 41.3 + magenta: 21.9 + cyan: 90.8 + white: 106.5 + brightBlack: 54.3 + brightRed: 45.4 + brightGreen: 86.5 + brightYellow: 101.3 + brightBlue: 32.2 + brightMagenta: 45.7 + brightCyan: 88.1 + brightWhite: 106.5 diff --git a/themes/high-contrast-july-light-theme.yaml b/themes/high-contrast-july-light-theme.yaml new file mode 100644 index 00000000..bdc20e99 --- /dev/null +++ b/themes/high-contrast-july-light-theme.yaml @@ -0,0 +1,49 @@ +name: "High Contrast July Light Theme" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#FFFDE7" + fg: "#3E2723" + black: "#4E342E" + red: "#D84315" + green: "#8BC34A" + yellow: "#FFC107" + blue: "#1976D2" + magenta: "#7B1FA2" + cyan: "#0097A7" + white: "#E0E0E0" + brightBlack: "#616161" + brightRed: "#E64A19" + brightGreen: "#AED581" + brightYellow: "#FFD54F" + brightBlue: "#64B5F6" + brightMagenta: "#CE93D8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.5 + black: 94.2 + red: 67.7 + green: 39.1 + yellow: 26 + blue: 69.5 + magenta: 85.3 + cyan: 60.2 + white: 14 + brightBlack: 79.1 + brightRed: 63.5 + brightGreen: 27.3 + brightYellow: 17.9 + brightBlue: 41.6 + brightMagenta: 45.1 + brightCyan: 32.3 + brightWhite: 0 diff --git a/themes/high-contrast-june-light-theme.yaml b/themes/high-contrast-june-light-theme.yaml new file mode 100644 index 00000000..8a91d3f5 --- /dev/null +++ b/themes/high-contrast-june-light-theme.yaml @@ -0,0 +1,49 @@ +name: "High Contrast June Light Theme" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#E3F2FD" + fg: "#1A237E" + black: "#263238" + red: "#D32F2F" + green: "#388E3C" + yellow: "#FFA000" + blue: "#1976D2" + magenta: "#7B1FA2" + cyan: "#0288D1" + white: "#CFD8DC" + brightBlack: "#546E7A" + brightRed: "#E64A19" + brightGreen: "#81C784" + brightYellow: "#FFB74D" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 89.8 + black: 90.4 + red: 63.8 + green: 58.9 + yellow: 30.3 + blue: 62.3 + magenta: 78.1 + cyan: 56.3 + white: 12.3 + brightBlack: 67.8 + brightRed: 56.3 + brightGreen: 29.9 + brightYellow: 22.1 + brightBlue: 34.3 + brightMagenta: 53.8 + brightCyan: 25.1 + brightWhite: 7.8 diff --git a/themes/high-contrast-march-dark-theme-accessible.yaml b/themes/high-contrast-march-dark-theme-accessible.yaml new file mode 100644 index 00000000..8f5319d1 --- /dev/null +++ b/themes/high-contrast-march-dark-theme-accessible.yaml @@ -0,0 +1,49 @@ +name: "High Contrast March Dark Theme - Accessible" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#1B1F30" + fg: "#EDEEFF" + black: "#303B5A" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#70A4DC" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#ECEFF4" + brightBlack: "#4D566C" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#70A4DC" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 95.3 + black: 0 + red: 31.9 + green: 60.6 + yellow: 75.3 + blue: 48.9 + magenta: 45.4 + cyan: 61.6 + white: 95.1 + brightBlack: 14.4 + brightRed: 31.9 + brightGreen: 60.6 + brightYellow: 75.3 + brightBlue: 48.9 + brightMagenta: 45.4 + brightCyan: 59.5 + brightWhite: 95.1 diff --git a/themes/high-contrast-march-dark-theme.yaml b/themes/high-contrast-march-dark-theme.yaml new file mode 100644 index 00000000..f74326fd --- /dev/null +++ b/themes/high-contrast-march-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "High Contrast March Dark Theme" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#1B2B34" + fg: "#A7ADBA" + black: "#343D46" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#8FA1B3" + magenta: "#B48EAD" + cyan: "#96B5B4" + white: "#C0C5CE" + brightBlack: "#65737E" + brightRed: "#EC7279" + brightGreen: "#B9D189" + brightYellow: "#FFD580" + brightBlue: "#8FA1B3" + brightMagenta: "#CC9ED1" + brightCyan: "#AAD1D1" + brightWhite: "#D8DEE9" +meta: + mode: "dark" + accent: "orange" + hue: 234 + contrast: + fg: 54.1 + black: 0 + red: 30.3 + green: 59 + yellow: 73.7 + blue: 46.6 + magenta: 43.8 + cyan: 55.3 + white: 67.6 + brightBlack: 24.2 + brightRed: 43.4 + brightGreen: 69.7 + brightYellow: 80.9 + brightBlue: 46.6 + brightMagenta: 54.4 + brightCyan: 70.6 + brightWhite: 82.7 diff --git a/themes/high-contrast-march-light-theme-accessible.yaml b/themes/high-contrast-march-light-theme-accessible.yaml new file mode 100644 index 00000000..486dfd2f --- /dev/null +++ b/themes/high-contrast-march-light-theme-accessible.yaml @@ -0,0 +1,49 @@ +name: "High Contrast March Light Theme - Accessible" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#FEFBEA" + fg: "#333333" + black: "#424242" + red: "#D9534F" + green: "#4CAF50" + yellow: "#FFC107" + blue: "#1976D2" + magenta: "#9C27B0" + cyan: "#00BCD4" + white: "#E0E0E0" + brightBlack: "#737373" + brightRed: "#F44336" + brightGreen: "#66BB6A" + brightYellow: "#FFD54F" + brightBlue: "#42A5F5" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96 + black: 90.6 + red: 63.4 + green: 50.6 + yellow: 25.1 + blue: 68.7 + magenta: 77.4 + cyan: 41.9 + white: 13.1 + brightBlack: 70.2 + brightRed: 60.2 + brightGreen: 43.7 + brightYellow: 17 + brightBlue: 48.5 + brightMagenta: 60.1 + brightCyan: 31.4 + brightWhite: 0 diff --git a/themes/high-contrast-march-theme-accessible.yaml b/themes/high-contrast-march-theme-accessible.yaml new file mode 100644 index 00000000..27742065 --- /dev/null +++ b/themes/high-contrast-march-theme-accessible.yaml @@ -0,0 +1,49 @@ +name: "High Contrast March Theme - Accessible" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#162C36" + fg: "#E5E5E5" + black: "#162C36" + red: "#FF6347" + green: "#32CD32" + yellow: "#FFD700" + blue: "#1E90FF" + magenta: "#8A2BE2" + cyan: "#00FFFF" + white: "#E5E5E5" + brightBlack: "#A9A9A9" + brightRed: "#FF4500" + brightGreen: "#7CFC00" + brightYellow: "#FFFF00" + brightBlue: "#4682B4" + brightMagenta: "#DA70D6" + brightCyan: "#AFEEEE" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 229 + contrast: + fg: 87.3 + black: 0 + red: 43 + green: 57.6 + yellow: 80.5 + blue: 39 + magenta: 19.6 + cyan: 88.4 + white: 87.3 + brightBlack: 51.9 + brightRed: 37.6 + brightGreen: 84.1 + brightYellow: 99 + brightBlue: 29.9 + brightMagenta: 43.3 + brightCyan: 85.8 + brightWhite: 87.3 diff --git a/themes/high-contrast-may-light-theme.yaml b/themes/high-contrast-may-light-theme.yaml new file mode 100644 index 00000000..26c8f372 --- /dev/null +++ b/themes/high-contrast-may-light-theme.yaml @@ -0,0 +1,49 @@ +name: "High Contrast May Light Theme" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#FFFFFF" + fg: "#2C3E50" + black: "#5D6D7E" + red: "#CB4335" + green: "#28B463" + yellow: "#F39C12" + blue: "#2874A6" + magenta: "#8E44AD" + cyan: "#1ABC9C" + white: "#FFFFFF" + brightBlack: "#85929E" + brightRed: "#E74C3C" + brightGreen: "#58D68D" + brightYellow: "#F5B041" + brightBlue: "#5499C7" + brightMagenta: "#AF7AC5" + brightCyan: "#48C9B0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.4 + black: 76.4 + red: 72.1 + green: 51.8 + yellow: 42.8 + blue: 74.7 + magenta: 78.8 + cyan: 46.9 + white: 0 + brightBlack: 59 + brightRed: 64.6 + brightGreen: 34.2 + brightYellow: 35.4 + brightBlue: 57.9 + brightMagenta: 59.9 + brightCyan: 39.5 + brightWhite: 0 diff --git a/themes/high-contrast-september-light-theme.yaml b/themes/high-contrast-september-light-theme.yaml new file mode 100644 index 00000000..2c1b8f0f --- /dev/null +++ b/themes/high-contrast-september-light-theme.yaml @@ -0,0 +1,49 @@ +name: "High Contrast September Light Theme" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#E3F2FD" + fg: "#0D47A1" + black: "#0D47A1" + red: "#E53935" + green: "#43A047" + yellow: "#FBC02D" + blue: "#1E88E5" + magenta: "#8E24AA" + cyan: "#00ACC1" + white: "#E0E0E0" + brightBlack: "#616161" + brightRed: "#FF5252" + brightGreen: "#81C784" + brightYellow: "#FFD54F" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 79.9 + black: 79.9 + red: 58.6 + green: 51 + yellow: 19.7 + blue: 54.7 + magenta: 74.1 + cyan: 43.2 + white: 0 + brightBlack: 71.8 + brightRed: 48.8 + brightGreen: 29.9 + brightYellow: 10.6 + brightBlue: 34.3 + brightMagenta: 53.8 + brightCyan: 25.1 + brightWhite: 7.8 diff --git a/themes/high-contrast-sunset.yaml b/themes/high-contrast-sunset.yaml new file mode 100644 index 00000000..1c294323 --- /dev/null +++ b/themes/high-contrast-sunset.yaml @@ -0,0 +1,49 @@ +name: "High Contrast Sunset" +source: + marketplace_id: "krishnakumarmehta.high-contrast-sunset" + version: "1.0.2" + installs: 9 + author: "Krishna Kumar Mehta" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=krishnakumarmehta.high-contrast-sunset" +colors: + bg: "#0A0608" + fg: "#FFF0DC" + black: "#0A0608" + red: "#FF2052" + green: "#FFB347" + yellow: "#FF6B35" + blue: "#C2410C" + magenta: "#FF4500" + cyan: "#D4956A" + white: "#FFF0DC" + brightBlack: "#4A2535" + brightRed: "#FF4D6D" + brightGreen: "#FFD580" + brightYellow: "#FF8C55" + brightBlue: "#C2410C" + brightMagenta: "#FF6B35" + brightCyan: "#EEC9A0" + brightWhite: "#FFF8F0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 99.3 + black: 0 + red: 38.7 + green: 70 + yellow: 48.2 + blue: 27.1 + magenta: 41.3 + cyan: 52.5 + white: 99.3 + brightBlack: 0 + brightRed: 43.6 + brightGreen: 84.5 + brightYellow: 57.1 + brightBlue: 27.1 + brightMagenta: 48.2 + brightCyan: 77.5 + brightWhite: 103.8 diff --git a/themes/high-tea.yaml b/themes/high-tea.yaml new file mode 100644 index 00000000..bfd908d4 --- /dev/null +++ b/themes/high-tea.yaml @@ -0,0 +1,49 @@ +name: "High Tea" +source: + marketplace_id: "Rachael.rachaels-themes" + version: "0.0.2" + installs: 1169 + author: "Rachael" + repo: "https://github.com/rbouissey/rachaelsthemes" + url: "https://marketplace.visualstudio.com/items?itemName=Rachael.rachaels-themes" +colors: + bg: "#EEE6E4" + fg: "#2CA8B0" + black: "#000000" + red: "#991000" + green: "#29C065" + yellow: "#FFCA00" + blue: "#991000" + magenta: "#5024B8" + cyan: "#29C3E6" + white: "#EEE6E4" + brightBlack: "#000000" + brightRed: "#991000" + brightGreen: "#29C065" + brightYellow: "#FFCA00" + brightBlue: "#991000" + brightMagenta: "#5024B8" + brightCyan: "#29C3E6" + brightWhite: "#F1BDB9" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 40.6 + black: 92.2 + red: 73.8 + green: 32.5 + yellow: 10.5 + blue: 73.8 + magenta: 76.2 + cyan: 26.6 + white: 0 + brightBlack: 92.2 + brightRed: 73.8 + brightGreen: 32.5 + brightYellow: 10.5 + brightBlue: 73.8 + brightMagenta: 76.2 + brightCyan: 26.6 + brightWhite: 14.9 diff --git a/themes/highflyer.yaml b/themes/highflyer.yaml new file mode 100644 index 00000000..154b9b53 --- /dev/null +++ b/themes/highflyer.yaml @@ -0,0 +1,49 @@ +name: "Highflyer" +source: + marketplace_id: "highflyer910.highflyer" + version: "0.0.1" + installs: 121 + author: "highflyer910" + repo: "https://github.com/highflyer910/highflyer_vscode_theme" + url: "https://marketplace.visualstudio.com/items?itemName=highflyer910.highflyer" +colors: + bg: "#0E0C1F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/highgruv.yaml b/themes/highgruv.yaml new file mode 100644 index 00000000..dca28fec --- /dev/null +++ b/themes/highgruv.yaml @@ -0,0 +1,49 @@ +name: "HighGruv" +source: + marketplace_id: "bullptr.highgruv" + version: "1.0.1" + installs: 48 + author: "bullptr" + repo: "https://github.com/bullptr/highgruv" + url: "https://marketplace.visualstudio.com/items?itemName=bullptr.highgruv" +colors: + bg: "#000000" + fg: "#D7BE92" + black: "#32302F" + red: "#F9655D" + green: "#A8B75A" + yellow: "#DFA54A" + blue: "#77B0A3" + magenta: "#DC839B" + cyan: "#84B67C" + white: "#D7BE92" + brightBlack: "#948371" + brightRed: "#F9655D" + brightGreen: "#A8B75A" + brightYellow: "#DFA54A" + brightBlue: "#77B0A3" + brightMagenta: "#DC839B" + brightCyan: "#84B67C" + brightWhite: "#E0C79B" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 69.3 + black: 0 + red: 46.2 + green: 59.1 + yellow: 59.4 + blue: 53.6 + magenta: 49.7 + cyan: 55.9 + white: 69.3 + brightBlack: 37.5 + brightRed: 46.2 + brightGreen: 59.1 + brightYellow: 59.4 + brightBlue: 53.6 + brightMagenta: 49.7 + brightCyan: 55.9 + brightWhite: 74.5 diff --git a/themes/highland-winter.yaml b/themes/highland-winter.yaml new file mode 100644 index 00000000..5d7c1c46 --- /dev/null +++ b/themes/highland-winter.yaml @@ -0,0 +1,49 @@ +name: "Highland Winter" +source: + marketplace_id: "merithayan.highland-winter" + version: "0.0.6" + installs: 1493 + author: "Tim Hull" + repo: "https://www.github.com/mtyn/highland-winter" + url: "https://marketplace.visualstudio.com/items?itemName=merithayan.highland-winter" +colors: + bg: "#FAFAFA" + fg: "#303036" + black: "#FAFAFA" + red: "#BC4E4C" + green: "#3C8E5C" + yellow: "#F5B54F" + blue: "#0099C9" + magenta: "#A4779C" + cyan: "#459B9F" + white: "#FAFAFA" + brightBlack: "#E4E4E7" + brightRed: "#BC4E4C" + brightGreen: "#3C8E5C" + brightYellow: "#F5B54F" + brightBlue: "#0099C9" + brightMagenta: "#A4779C" + brightCyan: "#3C8E5C" + brightWhite: "#303036" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.4 + black: 0 + red: 69.9 + green: 64.3 + yellow: 30.5 + blue: 56.5 + magenta: 61.4 + cyan: 56.7 + white: 0 + brightBlack: 10.4 + brightRed: 69.9 + brightGreen: 64.3 + brightYellow: 30.5 + brightBlue: 56.5 + brightMagenta: 61.4 + brightCyan: 64.3 + brightWhite: 96.4 diff --git a/themes/himalaya-dark.yaml b/themes/himalaya-dark.yaml new file mode 100644 index 00000000..1e7ae18d --- /dev/null +++ b/themes/himalaya-dark.yaml @@ -0,0 +1,49 @@ +name: "Himalaya Dark" +source: + marketplace_id: "leonardomartelli.himalaya-theme" + version: "0.0.2" + installs: 446 + author: "Leonardo Martelli Oliveira" + repo: "https://github.com/leonardomartelli/himalaya-theme" + url: "https://marketplace.visualstudio.com/items?itemName=leonardomartelli.himalaya-theme" +colors: + bg: "#011526" + fg: "#B9BFAA" + black: "#0D0D0D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#034A88" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C9CFBA" + brightBlack: "#3D3D3D" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#EEFF00" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 245 + contrast: + fg: 65.7 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 11.4 + magenta: 29.9 + cyan: 47.7 + white: 75 + brightBlack: 0 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 99.5 + brightBlue: 40.2 + brightMagenta: 45.5 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/hinode.yaml b/themes/hinode.yaml new file mode 100644 index 00000000..f5f9532a --- /dev/null +++ b/themes/hinode.yaml @@ -0,0 +1,49 @@ +name: "hinode" +source: + marketplace_id: "aimof.hinode" + version: "0.0.7" + installs: 242 + author: "aimof" + repo: "https://github.com/aimof/hinode" + url: "https://marketplace.visualstudio.com/items?itemName=aimof.hinode" +colors: + bg: "#000822" + fg: "#FBFBF6" + black: "#000822" + red: "#D13939" + green: "#5EAD1C" + yellow: "#B3B00E" + blue: "#424BBF" + magenta: "#903292" + cyan: "#0086CC" + white: "#E3E3DE" + brightBlack: "#00295A" + brightRed: "#E85B59" + brightGreen: "#ABC900" + brightYellow: "#ECE038" + brightBlue: "#7F7CE3" + brightMagenta: "#EB6EE5" + brightCyan: "#00D5EF" + brightWhite: "#FBFBF6" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 104.7 + black: 0 + red: 29.3 + green: 47.8 + yellow: 56.7 + blue: 17.9 + magenta: 18.8 + cyan: 35 + white: 89.3 + brightBlack: 0 + brightRed: 40.1 + brightGreen: 66.5 + brightYellow: 85.2 + brightBlue: 38.4 + brightMagenta: 50.5 + brightCyan: 70.2 + brightWhite: 104.7 diff --git a/themes/hipster-next.yaml b/themes/hipster-next.yaml new file mode 100644 index 00000000..a0e57faa --- /dev/null +++ b/themes/hipster-next.yaml @@ -0,0 +1,49 @@ +name: "Hipster Next" +source: + marketplace_id: "DmitriMigunov.hipster-next-theme" + version: "1.2.1" + installs: 191 + author: "Dmitri Migunov" + repo: "https://gitlab.com/migunov/vscode/hipster-next-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DmitriMigunov.hipster-next-theme" +colors: + bg: "#2E3D51" + fg: "#B0C0D0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 58.9 + black: 8.4 + red: 19.2 + green: 45.5 + yellow: 78.1 + blue: 19.9 + magenta: 22.2 + cyan: 40 + white: 82.5 + brightBlack: 14.5 + brightRed: 31 + brightGreen: 56 + brightYellow: 88.1 + brightBlue: 32.5 + brightMagenta: 37.8 + brightCyan: 47.9 + brightWhite: 82.5 diff --git a/themes/hive-contrast.yaml b/themes/hive-contrast.yaml new file mode 100644 index 00000000..626db95e --- /dev/null +++ b/themes/hive-contrast.yaml @@ -0,0 +1,49 @@ +name: "hive-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0F1016" + fg: "#FFFFFF" + black: "#191B25" + red: "#BA0E2E" + green: "#7CB8BA" + yellow: "#6E81A0" + blue: "#FFFFFF" + magenta: "#7CB8BA" + cyan: "#6E81A0" + white: "#FFFFFF" + brightBlack: "#383C53" + brightRed: "#F03E5F" + brightGreen: "#BFDCDD" + brightYellow: "#ACB7C8" + brightBlue: "#FFFFFF" + brightMagenta: "#BFDCDD" + brightCyan: "#ACB7C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 107.4 + black: 0 + red: 21 + green: 57.8 + yellow: 34.3 + blue: 107.4 + magenta: 57.8 + cyan: 34.3 + white: 107.4 + brightBlack: 0 + brightRed: 37.3 + brightGreen: 81.5 + brightYellow: 62.5 + brightBlue: 107.4 + brightMagenta: 81.5 + brightCyan: 62.5 + brightWhite: 107.4 diff --git a/themes/hive-light.yaml b/themes/hive-light.yaml new file mode 100644 index 00000000..bf3c2bc4 --- /dev/null +++ b/themes/hive-light.yaml @@ -0,0 +1,49 @@ +name: "hive-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#2D3142" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#7CB8BA" + yellow: "#6E81A0" + blue: "#2D3142" + magenta: "#7CB8BA" + cyan: "#6E81A0" + white: "#373C51" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#BFDCDD" + brightYellow: "#ACB7C8" + brightBlue: "#565E7F" + brightMagenta: "#BFDCDD" + brightCyan: "#ACB7C8" + brightWhite: "#565E7F" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.1 + black: 0 + red: 80.3 + green: 43.8 + yellow: 66.9 + blue: 99.1 + magenta: 43.8 + cyan: 66.9 + white: 95.2 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 21.4 + brightYellow: 39.4 + brightBlue: 81.6 + brightMagenta: 21.4 + brightCyan: 39.4 + brightWhite: 81.6 diff --git a/themes/hive.yaml b/themes/hive.yaml new file mode 100644 index 00000000..f3b1b2b2 --- /dev/null +++ b/themes/hive.yaml @@ -0,0 +1,49 @@ +name: "hive" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2D3142" + fg: "#FFFFFF" + black: "#373C51" + red: "#BA0E2E" + green: "#7CB8BA" + yellow: "#6E81A0" + blue: "#FFFFFF" + magenta: "#7CB8BA" + cyan: "#6E81A0" + white: "#FFFFFF" + brightBlack: "#565E7F" + brightRed: "#F03E5F" + brightGreen: "#BFDCDD" + brightYellow: "#ACB7C8" + brightBlue: "#FFFFFF" + brightMagenta: "#BFDCDD" + brightCyan: "#ACB7C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 102.3 + black: 0 + red: 16 + green: 52.8 + yellow: 29.2 + blue: 102.3 + magenta: 52.8 + cyan: 29.2 + white: 102.3 + brightBlack: 14.7 + brightRed: 32.3 + brightGreen: 76.4 + brightYellow: 57.4 + brightBlue: 102.3 + brightMagenta: 76.4 + brightCyan: 57.4 + brightWhite: 102.3 diff --git a/themes/hobbyist-goth.yaml b/themes/hobbyist-goth.yaml new file mode 100644 index 00000000..96eb904b --- /dev/null +++ b/themes/hobbyist-goth.yaml @@ -0,0 +1,49 @@ +name: "hobbyist goth" +source: + marketplace_id: "timmyha.hobbyist-goth" + version: "0.0.3" + installs: 1576 + author: "timhansher" + repo: "https://github.com/timmyha/hobbyist-goth" + url: "https://marketplace.visualstudio.com/items?itemName=timmyha.hobbyist-goth" +colors: + bg: "#2B303A" + fg: "#C1C5CD" + black: "#2B303A" + red: "#B3666B" + green: "#9EBDA6" + yellow: "#E5CC94" + blue: "#8896BA" + magenta: "#9BB4B3" + cyan: "#AE8FAB" + white: "#ACB0B8" + brightBlack: "#40454F" + brightRed: "#C1C5CD" + brightGreen: "#AE8FAB" + brightYellow: "#E5CC94" + brightBlue: "#8896BA" + brightMagenta: "#9BB4B3" + brightCyan: "#AE8FAB" + brightWhite: "#C1C5CD" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 66.3 + black: 0 + red: 28.1 + green: 57.5 + yellow: 72.1 + blue: 40.7 + magenta: 53.9 + cyan: 41.8 + white: 54.3 + brightBlack: 0 + brightRed: 66.3 + brightGreen: 41.8 + brightYellow: 72.1 + brightBlue: 40.7 + brightMagenta: 53.9 + brightCyan: 41.8 + brightWhite: 66.3 diff --git a/themes/hoccacas.yaml b/themes/hoccacas.yaml new file mode 100644 index 00000000..eb5e39a6 --- /dev/null +++ b/themes/hoccacas.yaml @@ -0,0 +1,49 @@ +name: "hoccacas" +source: + marketplace_id: "ThiagoAndreazza.hoccacas" + version: "0.3.6" + installs: 262 + author: "Thiago Andreazza" + repo: "https://github.com/olathiago/hoccacas" + url: "https://marketplace.visualstudio.com/items?itemName=ThiagoAndreazza.hoccacas" +colors: + bg: "#0F1014" + fg: "#C0C0CC" + black: "#131317" + red: "#D16996" + green: "#83C4C4" + yellow: "#D3D5DE" + blue: "#BE95FF" + magenta: "#D3D5DE" + cyan: "#5D83C1" + white: "#B2B2BE" + brightBlack: "#777885" + brightRed: "#D16996" + brightGreen: "#83C4C4" + brightYellow: "#D3D5DE" + brightBlue: "#BE95FF" + brightMagenta: "#D3D5DE" + brightCyan: "#5D83C1" + brightWhite: "#868690" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 68.7 + black: 0 + red: 40.1 + green: 64 + yellow: 80.8 + blue: 55.4 + magenta: 80.8 + cyan: 35.5 + white: 60.7 + brightBlack: 30.9 + brightRed: 40.1 + brightGreen: 64 + brightYellow: 80.8 + brightBlue: 55.4 + brightMagenta: 80.8 + brightCyan: 35.5 + brightWhite: 37.6 diff --git a/themes/hocsinhnghiemtuc.yaml b/themes/hocsinhnghiemtuc.yaml new file mode 100644 index 00000000..9246f3c6 --- /dev/null +++ b/themes/hocsinhnghiemtuc.yaml @@ -0,0 +1,49 @@ +name: "hocsinhnghiemtuc" +source: + marketplace_id: "hocsinhnghiemtuc.intellij-light-flutter" + version: "0.0.2" + installs: 2010 + author: "Hoang Trung Hieu" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=hocsinhnghiemtuc.intellij-light-flutter" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#242424" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 102.5 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/holdesher-dark.yaml b/themes/holdesher-dark.yaml new file mode 100644 index 00000000..52dc318f --- /dev/null +++ b/themes/holdesher-dark.yaml @@ -0,0 +1,49 @@ +name: "Holdesher Dark" +source: + marketplace_id: "kah3vich.holdesher" + version: "0.0.20" + installs: 10333 + author: "Nik Zolkin" + repo: "https://github.com/Holdesher/theme" + url: "https://marketplace.visualstudio.com/items?itemName=kah3vich.holdesher" +colors: + bg: "#20232A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 267 + contrast: + fg: 105.3 + black: 0 + red: 25.1 + green: 51.4 + yellow: 84 + blue: 25.9 + magenta: 28.2 + cyan: 46 + white: 88.4 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/holy-bible.yaml b/themes/holy-bible.yaml new file mode 100644 index 00000000..d406907f --- /dev/null +++ b/themes/holy-bible.yaml @@ -0,0 +1,49 @@ +name: "Holy Bible" +source: + marketplace_id: "KynardCorp.my-custom-theme" + version: "0.0.11" + installs: 57 + author: "KynardCorp" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=KynardCorp.my-custom-theme" +colors: + bg: "#240000" + fg: "#FF6666" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 29 + contrast: + fg: 47.3 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/homebrew.yaml b/themes/homebrew.yaml new file mode 100644 index 00000000..3fad20d7 --- /dev/null +++ b/themes/homebrew.yaml @@ -0,0 +1,49 @@ +name: "Homebrew" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3734 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#000000" + fg: "#00A600" + black: "#000000" + red: "#990000" + green: "#00A600" + yellow: "#999900" + blue: "#0000B2" + magenta: "#B200B2" + cyan: "#00A6B2" + white: "#BFBFBF" + brightBlack: "#666666" + brightRed: "#E50000" + brightGreen: "#00D900" + brightYellow: "#E5E500" + brightBlue: "#0000FF" + brightMagenta: "#E500E5" + brightCyan: "#00E5E5" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 42.8 + black: 0 + red: 14.3 + green: 42.8 + yellow: 44.8 + blue: 0 + magenta: 24.5 + cyan: 46.3 + white: 68 + brightBlack: 23 + brightRed: 31.1 + brightGreen: 66.7 + brightYellow: 86.6 + brightBlue: 16.2 + brightMagenta: 38.5 + brightCyan: 77.6 + brightWhite: 91 diff --git a/themes/homecooked-theme.yaml b/themes/homecooked-theme.yaml new file mode 100644 index 00000000..4072324a --- /dev/null +++ b/themes/homecooked-theme.yaml @@ -0,0 +1,49 @@ +name: "HomeCooked Theme" +source: + marketplace_id: "MohammedAmaan.homecooked" + version: "2.0.1" + installs: 224 + author: "Mohammed Amaan" + repo: "https://github.com/amaanmohd047/homecooked-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MohammedAmaan.homecooked" +colors: + bg: "#0A0B13" + fg: "#C8D3F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 279 + contrast: + fg: 80 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/homer.yaml b/themes/homer.yaml new file mode 100644 index 00000000..cd782b88 --- /dev/null +++ b/themes/homer.yaml @@ -0,0 +1,49 @@ +name: "Homer" +source: + marketplace_id: "dustinsanders.homer-theme-vscode" + version: "1.0.0" + installs: 736 + author: "Dustin Sanders" + repo: "https://github.com/dustinsanders/homer-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dustinsanders.homer-theme-vscode" +colors: + bg: "#353434" + fg: "#F8F8F8" + black: "#353434" + red: "#FF419E" + green: "#CEF296" + yellow: "#70D1FE" + blue: "#70D1FE" + magenta: "#FF419E" + cyan: "#D1B271" + white: "#F8F8F8" + brightBlack: "#353434" + brightRed: "#FF419E" + brightGreen: "#CEF296" + brightYellow: "#FED90F" + brightBlue: "#70D1FE" + brightMagenta: "#FF419E" + brightCyan: "#D1B271" + brightWhite: "#F8F8F8" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 97.1 + black: 0 + red: 37.4 + green: 85.3 + yellow: 65.9 + blue: 65.9 + magenta: 37.4 + cyan: 56.6 + white: 97.1 + brightBlack: 0 + brightRed: 37.4 + brightGreen: 85.3 + brightYellow: 78.8 + brightBlue: 65.9 + brightMagenta: 37.4 + brightCyan: 56.6 + brightWhite: 97.1 diff --git a/themes/homey.yaml b/themes/homey.yaml new file mode 100644 index 00000000..c2f66512 --- /dev/null +++ b/themes/homey.yaml @@ -0,0 +1,49 @@ +name: "Homey" +source: + marketplace_id: "kepler0.homey-theme" + version: "0.0.1" + installs: 2507 + author: "kepler0" + repo: "https://github.com/notAlaanor/homey-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kepler0.homey-theme" +colors: + bg: "#221F1D" + fg: "#F5D7C2" + black: "#221F1D" + red: "#A0B461" + green: "#E39546" + yellow: "#E9785C" + blue: "#CF7E5C" + magenta: "#B8A63D" + cyan: "#95D053" + white: "#D9BEAC" + brightBlack: "#4C423B" + brightRed: "#C0A63A" + brightGreen: "#95D053" + brightYellow: "#E9785C" + brightBlue: "#CF7E5C" + brightMagenta: "#B8A63D" + brightCyan: "#95D053" + brightWhite: "#F5D7C2" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 83.7 + black: 0 + red: 55.1 + green: 52.4 + yellow: 45.3 + blue: 42.1 + magenta: 51.8 + cyan: 66.2 + white: 68.3 + brightBlack: 7.7 + brightRed: 52.8 + brightGreen: 66.2 + brightYellow: 45.3 + brightBlue: 42.1 + brightMagenta: 51.8 + brightCyan: 66.2 + brightWhite: 83.7 diff --git a/themes/honeycode.yaml b/themes/honeycode.yaml new file mode 100644 index 00000000..5f9f6e70 --- /dev/null +++ b/themes/honeycode.yaml @@ -0,0 +1,49 @@ +name: "Honeycode" +source: + marketplace_id: "yubiDev.yoobdev" + version: "0.0.7" + installs: 195 + author: "yoobdev" + repo: "https://github.com/kimkom369/VSCode-Theme-Pack" + url: "https://marketplace.visualstudio.com/items?itemName=yubiDev.yoobdev" +colors: + bg: "#FDBE39" + fg: "#494949" + black: "#363636" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: 81 + contrast: + fg: 59.4 + black: 66.4 + red: 42.7 + green: 16.7 + yellow: 11.5 + blue: 41.9 + magenta: 39.6 + cyan: 22 + white: 15.9 + brightBlack: 47.4 + brightRed: 30.8 + brightGreen: 0 + brightYellow: 21.5 + brightBlue: 29.4 + brightMagenta: 24.1 + brightCyan: 14.4 + brightWhite: 15.9 diff --git a/themes/honkai-star-rail-aventurine-dark.yaml b/themes/honkai-star-rail-aventurine-dark.yaml new file mode 100644 index 00000000..186c1bbf --- /dev/null +++ b/themes/honkai-star-rail-aventurine-dark.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - Aventurine (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#141618" + fg: "#D8D4CC" + black: "#1C1F22" + red: "#D08080" + green: "#80B090" + yellow: "#C9B87A" + blue: "#6AB0C0" + magenta: "#B090A0" + cyan: "#70B0A0" + white: "#D8D4CC" + brightBlack: "#5A6A70" + brightRed: "#E0A0A0" + brightGreen: "#A0D0A8" + brightYellow: "#E0D0A0" + brightBlue: "#90C8D8" + brightMagenta: "#D0B0C0" + brightCyan: "#98D0C0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.8 + black: 0 + red: 44.9 + green: 52.7 + yellow: 63.4 + blue: 53.1 + magenta: 46.2 + cyan: 52.1 + white: 79.8 + brightBlack: 22.7 + brightRed: 58.9 + brightGreen: 70.3 + brightYellow: 77.6 + brightBlue: 67.3 + brightMagenta: 63.5 + brightCyan: 70.5 + brightWhite: 107 diff --git a/themes/honkai-star-rail-aventurine.yaml b/themes/honkai-star-rail-aventurine.yaml new file mode 100644 index 00000000..6881c000 --- /dev/null +++ b/themes/honkai-star-rail-aventurine.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - Aventurine" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#F8F6F2" + fg: "#2A2828" + black: "#2A2828" + red: "#904040" + green: "#408870" + yellow: "#907040" + blue: "#1A5864" + magenta: "#784868" + cyan: "#206870" + white: "#989080" + brightBlack: "#787068" + brightRed: "#B05050" + brightGreen: "#509880" + brightYellow: "#A08050" + brightBlue: "#2A6878" + brightMagenta: "#886078" + brightCyan: "#307880" + brightWhite: "#D0C8B8" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.2 + black: 96.2 + red: 78.5 + green: 63.7 + yellow: 66.5 + blue: 82.2 + magenta: 79.5 + cyan: 76.3 + white: 53.5 + brightBlack: 68.5 + brightRed: 69.4 + brightGreen: 56.2 + brightYellow: 59.1 + brightBlue: 75.7 + brightMagenta: 70.8 + brightCyan: 69.6 + brightWhite: 23.9 diff --git a/themes/honkai-star-rail-cyrene-dark.yaml b/themes/honkai-star-rail-cyrene-dark.yaml new file mode 100644 index 00000000..d8fddad7 --- /dev/null +++ b/themes/honkai-star-rail-cyrene-dark.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - Cyrene (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#1E1828" + fg: "#EAE0F0" + black: "#181220" + red: "#C08080" + green: "#8AAA8A" + yellow: "#C8B090" + blue: "#8B95DB" + magenta: "#A05DD4" + cyan: "#7090A8" + white: "#EAE0F0" + brightBlack: "#5A5060" + brightRed: "#D473A4" + brightGreen: "#9ABA9A" + brightYellow: "#D8C0A0" + brightBlue: "#9BA5E8" + brightMagenta: "#B080E0" + brightCyan: "#80A0B8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 301 + contrast: + fg: 88.5 + black: 0 + red: 41.7 + green: 50.4 + yellow: 60.1 + blue: 46.1 + magenta: 31.7 + cyan: 39.2 + white: 88.5 + brightBlack: 14.1 + brightRed: 42.7 + brightGreen: 59 + brightYellow: 69.2 + brightBlue: 54.3 + brightMagenta: 43.9 + brightCyan: 47.3 + brightWhite: 106.4 diff --git a/themes/honkai-star-rail-cyrene.yaml b/themes/honkai-star-rail-cyrene.yaml new file mode 100644 index 00000000..602d5bb1 --- /dev/null +++ b/themes/honkai-star-rail-cyrene.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - Cyrene" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#FDF8FB" + fg: "#4A3A50" + black: "#4A3A50" + red: "#C06080" + green: "#7AAA7A" + yellow: "#C8A080" + blue: "#8B95DB" + magenta: "#A05DD4" + cyan: "#7090A0" + white: "#F0E0E8" + brightBlack: "#8A7090" + brightRed: "#D473A4" + brightGreen: "#8ABA8A" + brightYellow: "#D8B090" + brightBlue: "#9BA5E8" + brightMagenta: "#B080E0" + brightCyan: "#80A0B0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 90.8 + black: 90.8 + red: 63.6 + green: 48.5 + yellow: 43.6 + blue: 50.9 + magenta: 65.1 + cyan: 58 + white: 10 + brightBlack: 66.9 + brightRed: 54.1 + brightGreen: 40.2 + brightYellow: 35.1 + brightBlue: 42.9 + brightMagenta: 53 + brightCyan: 50.1 + brightWhite: 0 diff --git a/themes/honkai-star-rail-dan-heng-dark.yaml b/themes/honkai-star-rail-dan-heng-dark.yaml new file mode 100644 index 00000000..43f7f752 --- /dev/null +++ b/themes/honkai-star-rail-dan-heng-dark.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - Dan Heng (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#0E1A1E" + fg: "#E8ECEC" + black: "#061014" + red: "#A03030" + green: "#4A8898" + yellow: "#B87000" + blue: "#2E5B63" + magenta: "#790000" + cyan: "#4A8898" + white: "#E8ECEC" + brightBlack: "#4A6670" + brightRed: "#C04040" + brightGreen: "#5A9AA8" + brightYellow: "#D09020" + brightBlue: "#3A6E78" + brightMagenta: "#A03030" + brightCyan: "#5A9AA8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 221 + contrast: + fg: 93.8 + black: 0 + red: 17.2 + green: 33.4 + yellow: 34.3 + blue: 14.9 + magenta: 0 + cyan: 33.4 + white: 93.8 + brightBlack: 20.1 + brightRed: 25.8 + brightGreen: 41.8 + brightYellow: 48.1 + brightBlue: 22.2 + brightMagenta: 17.2 + brightCyan: 41.8 + brightWhite: 106.7 diff --git a/themes/honkai-star-rail-dan-heng.yaml b/themes/honkai-star-rail-dan-heng.yaml new file mode 100644 index 00000000..1f009fc1 --- /dev/null +++ b/themes/honkai-star-rail-dan-heng.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - Dan Heng" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#F4F6F4" + fg: "#133139" + black: "#133139" + red: "#790000" + green: "#2E5B63" + yellow: "#8A5500" + blue: "#3A6E78" + magenta: "#5A0000" + cyan: "#2E5B63" + white: "#E8ECEC" + brightBlack: "#2E5B63" + brightRed: "#A00000" + brightGreen: "#4A8090" + brightYellow: "#B87000" + brightBlue: "#4A8090" + brightMagenta: "#790000" + brightCyan: "#3A6E78" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 94.5 + black: 94.5 + red: 88.6 + green: 80.3 + yellow: 74.9 + blue: 72.7 + magenta: 94.1 + cyan: 80.3 + white: 0 + brightBlack: 80.3 + brightRed: 80.7 + brightGreen: 64.6 + brightYellow: 60.5 + brightBlue: 64.6 + brightMagenta: 88.6 + brightCyan: 72.7 + brightWhite: 0 diff --git a/themes/honkai-star-rail-firefly-dark.yaml b/themes/honkai-star-rail-firefly-dark.yaml new file mode 100644 index 00000000..671d6596 --- /dev/null +++ b/themes/honkai-star-rail-firefly-dark.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - Firefly (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#1C1F22" + fg: "#E0D8D2" + black: "#2A2520" + red: "#B08080" + green: "#8AAA8A" + yellow: "#C8B090" + blue: "#6A7580" + magenta: "#9A8090" + cyan: "#6F9C97" + white: "#E0D8D2" + brightBlack: "#5A5550" + brightRed: "#C09090" + brightGreen: "#9ABA9A" + brightYellow: "#D8C0A0" + brightBlue: "#7A8590" + brightMagenta: "#AA90A0" + brightCyan: "#8ABAB2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81.8 + black: 0 + red: 38.8 + green: 49.9 + yellow: 59.6 + blue: 27.1 + magenta: 36.4 + cyan: 42.5 + white: 81.8 + brightBlack: 14.5 + brightRed: 46.8 + brightGreen: 58.6 + brightYellow: 68.7 + brightBlue: 34.6 + brightMagenta: 44.4 + brightCyan: 58 + brightWhite: 106 diff --git a/themes/honkai-star-rail-firefly.yaml b/themes/honkai-star-rail-firefly.yaml new file mode 100644 index 00000000..7724cdea --- /dev/null +++ b/themes/honkai-star-rail-firefly.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - Firefly" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#F7F5F2" + fg: "#3A4550" + black: "#3A4550" + red: "#A07070" + green: "#7A9A7A" + yellow: "#B8A080" + blue: "#70656C" + magenta: "#8A7080" + cyan: "#6F9C97" + white: "#E0D8D2" + brightBlack: "#70656C" + brightRed: "#B08080" + brightGreen: "#8AAA8A" + brightYellow: "#C8B090" + brightBlue: "#8A7A85" + brightMagenta: "#9A8090" + brightCyan: "#7AACA5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 86.8 + black: 86.8 + red: 62.7 + green: 52.4 + yellow: 43.3 + blue: 72 + magenta: 65.1 + cyan: 51.5 + white: 13.9 + brightBlack: 72 + brightRed: 55.2 + brightGreen: 44.3 + brightYellow: 34.9 + brightBlue: 61.8 + brightMagenta: 57.6 + brightCyan: 43.9 + brightWhite: 0 diff --git a/themes/honkai-star-rail-kafka-dark.yaml b/themes/honkai-star-rail-kafka-dark.yaml new file mode 100644 index 00000000..929cad35 --- /dev/null +++ b/themes/honkai-star-rail-kafka-dark.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - Kafka (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#18141A" + fg: "#E0D8DC" + black: "#28222A" + red: "#C87088" + green: "#80B898" + yellow: "#C0A070" + blue: "#7888C0" + magenta: "#C075AE" + cyan: "#70A0B0" + white: "#E0D8DC" + brightBlack: "#6A6068" + brightRed: "#D898A8" + brightGreen: "#98D0B0" + brightYellow: "#D8B888" + brightBlue: "#90A0D0" + brightMagenta: "#D898C8" + brightCyan: "#88B8C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 315 + contrast: + fg: 83.3 + black: 0 + red: 39.3 + green: 56.4 + yellow: 52.6 + blue: 38.8 + magenta: 40.9 + cyan: 46.3 + white: 83.3 + brightBlack: 20.8 + brightRed: 55.2 + brightGreen: 69.9 + brightYellow: 65.9 + brightBlue: 50.6 + brightMagenta: 56.6 + brightCyan: 59 + brightWhite: 107 diff --git a/themes/honkai-star-rail-kafka.yaml b/themes/honkai-star-rail-kafka.yaml new file mode 100644 index 00000000..7145e2e9 --- /dev/null +++ b/themes/honkai-star-rail-kafka.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - Kafka" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#FAF7F9" + fg: "#2A2530" + black: "#2A2530" + red: "#A04860" + green: "#5A8A6A" + yellow: "#9A7850" + blue: "#5868A0" + magenta: "#723458" + cyan: "#4A8090" + white: "#E8DCE4" + brightBlack: "#6A5A62" + brightRed: "#B86078" + brightGreen: "#6A9A7A" + brightYellow: "#AA8860" + brightBlue: "#6878B0" + brightMagenta: "#C075AE" + brightCyan: "#5A90A0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 97.5 + black: 97.5 + red: 74.5 + green: 62.7 + yellow: 63.4 + blue: 72.4 + magenta: 85.8 + cyan: 66 + white: 12 + brightBlack: 77.8 + brightRed: 64.4 + brightGreen: 55.1 + brightYellow: 55.8 + brightBlue: 65.3 + brightMagenta: 55.6 + brightCyan: 58.6 + brightWhite: 0 diff --git a/themes/honkai-star-rail-march-7th-dark.yaml b/themes/honkai-star-rail-march-7th-dark.yaml new file mode 100644 index 00000000..1e66aebc --- /dev/null +++ b/themes/honkai-star-rail-march-7th-dark.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - March 7th (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#281828" + fg: "#F0D8E8" + black: "#382850" + red: "#F0B8D8" + green: "#90E8D8" + yellow: "#E8B888" + blue: "#C8B8E8" + magenta: "#FAB3CA" + cyan: "#FAB3CA" + white: "#F0D8E8" + brightBlack: "#A890B8" + brightRed: "#F8D8F0" + brightGreen: "#C8F8E8" + brightYellow: "#F8F8C8" + brightBlue: "#D8D0F8" + brightMagenta: "#88ECFB" + brightCyan: "#88ECFB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "blue" + hue: 327 + contrast: + fg: 85.2 + black: 0 + red: 71.6 + green: 81.2 + yellow: 67.4 + blue: 66.5 + magenta: 70.8 + cyan: 70.8 + white: 85.2 + brightBlack: 45.3 + brightRed: 86.8 + brightGreen: 94.8 + brightYellow: 99.5 + brightBlue: 79.3 + brightMagenta: 84.3 + brightCyan: 84.3 + brightWhite: 106.1 diff --git a/themes/honkai-star-rail-march-7th.yaml b/themes/honkai-star-rail-march-7th.yaml new file mode 100644 index 00000000..b39df8a8 --- /dev/null +++ b/themes/honkai-star-rail-march-7th.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - March 7th" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#FEF8FC" + fg: "#483050" + black: "#483050" + red: "#E888A8" + green: "#88D8C8" + yellow: "#E8B888" + blue: "#DCA9CC" + magenta: "#B898C8" + cyan: "#88ECFB" + white: "#F0D8E8" + brightBlack: "#8A7098" + brightRed: "#F0A0B8" + brightGreen: "#A8D8CA" + brightYellow: "#F0D8A8" + brightBlue: "#C8ACD8" + brightMagenta: "#C8A8D8" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 93.3 + black: 93.3 + red: 45 + green: 25.5 + yellow: 30.2 + blue: 35 + magenta: 46 + cyan: 14.2 + white: 13.4 + brightBlack: 66.7 + brightRed: 35.7 + brightGreen: 22.9 + brightYellow: 15.7 + brightBlue: 36.2 + brightMagenta: 37.6 + brightCyan: 32.5 + brightWhite: 0 diff --git a/themes/honkai-star-rail-robin-dark.yaml b/themes/honkai-star-rail-robin-dark.yaml new file mode 100644 index 00000000..6209d769 --- /dev/null +++ b/themes/honkai-star-rail-robin-dark.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - Robin (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#141018" + fg: "#D8DCE8" + black: "#2A2440" + red: "#D0A0B0" + green: "#A0C8B8" + yellow: "#D8C8A0" + blue: "#A0A8D8" + magenta: "#D0BAFF" + cyan: "#A0C8E0" + white: "#D8DCE8" + brightBlack: "#6858A0" + brightRed: "#E0B8C0" + brightGreen: "#B0D8C8" + brightYellow: "#E8D8B0" + brightBlue: "#B0B8E8" + brightMagenta: "#E0C8FF" + brightCyan: "#B0D8F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 307 + contrast: + fg: 84.9 + black: 0 + red: 57.3 + green: 67.7 + yellow: 73.4 + blue: 56 + magenta: 71 + cyan: 69.5 + white: 84.9 + brightBlack: 21.3 + brightRed: 69.3 + brightGreen: 77.1 + brightYellow: 83 + brightBlue: 64.9 + brightMagenta: 78.7 + brightCyan: 78.9 + brightWhite: 107.3 diff --git a/themes/honkai-star-rail-robin-light-soft.yaml b/themes/honkai-star-rail-robin-light-soft.yaml new file mode 100644 index 00000000..486c6f08 --- /dev/null +++ b/themes/honkai-star-rail-robin-light-soft.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - Robin (Light Soft)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#F5F3F9" + fg: "#3A2D58" + black: "#3A2D58" + red: "#A85868" + green: "#589070" + yellow: "#987848" + blue: "#6B5A9E" + magenta: "#9D5896" + cyan: "#5088A0" + white: "#ECEAF2" + brightBlack: "#7A6FA8" + brightRed: "#C07880" + brightGreen: "#70B090" + brightYellow: "#B89868" + brightBlue: "#7968AD" + brightMagenta: "#B878A8" + brightCyan: "#68A8B8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 91.4 + black: 91.4 + red: 67.2 + green: 58.1 + yellow: 61.5 + blue: 72.6 + magenta: 67.2 + cyan: 59.8 + white: 0 + brightBlack: 64.6 + brightRed: 54.3 + brightGreen: 42.9 + brightYellow: 46 + brightBlue: 66.4 + brightMagenta: 54 + brightCyan: 45.1 + brightWhite: 0 diff --git a/themes/honkai-star-rail-ruan-mei-dark.yaml b/themes/honkai-star-rail-ruan-mei-dark.yaml new file mode 100644 index 00000000..cb2d9df5 --- /dev/null +++ b/themes/honkai-star-rail-ruan-mei-dark.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - Ruan Mei (Dark)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#1A252F" + fg: "#E8E4E0" + black: "#162028" + red: "#B08080" + green: "#8AAA8A" + yellow: "#D6C09E" + blue: "#6A8A90" + magenta: "#9A8A9A" + cyan: "#7AAFB8" + white: "#E8E4E0" + brightBlack: "#5A6A70" + brightRed: "#C09090" + brightGreen: "#9ABA9A" + brightYellow: "#E6D0AE" + brightBlue: "#7A9AA0" + brightMagenta: "#AA9AAA" + brightCyan: "#8BC0C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 246 + contrast: + fg: 88 + black: 0 + red: 37.9 + green: 49.1 + yellow: 67.5 + blue: 34.2 + magenta: 39.3 + cyan: 51.5 + white: 88 + brightBlack: 20.9 + brightRed: 46 + brightGreen: 57.7 + brightYellow: 77 + brightBlue: 42.1 + brightMagenta: 47.5 + brightCyan: 60.8 + brightWhite: 105.1 diff --git a/themes/honkai-star-rail-ruan-mei.yaml b/themes/honkai-star-rail-ruan-mei.yaml new file mode 100644 index 00000000..338563dc --- /dev/null +++ b/themes/honkai-star-rail-ruan-mei.yaml @@ -0,0 +1,49 @@ +name: "Honkai: Star Rail - Ruan Mei" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 518 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" +colors: + bg: "#FAF8F5" + fg: "#2C435D" + black: "#2C435D" + red: "#A07070" + green: "#7A9A7A" + yellow: "#C8A878" + blue: "#4A7A85" + magenta: "#8A7A90" + cyan: "#6695A0" + white: "#E0DCD5" + brightBlack: "#677E7C" + brightRed: "#B08080" + brightGreen: "#8AAA8A" + brightYellow: "#D6C09E" + brightBlue: "#7AA0A8" + brightMagenta: "#9A8A9A" + brightCyan: "#7AAFB8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 89.4 + black: 89.4 + red: 64.5 + green: 54.1 + yellow: 40.3 + blue: 68.9 + magenta: 63.1 + cyan: 56.2 + white: 13.9 + brightBlack: 65.9 + brightRed: 57 + brightGreen: 46.1 + brightYellow: 28.3 + brightBlue: 50.2 + brightMagenta: 55.7 + brightCyan: 43.7 + brightWhite: 0 diff --git a/themes/horizon-contrast.yaml b/themes/horizon-contrast.yaml new file mode 100644 index 00000000..7814d23f --- /dev/null +++ b/themes/horizon-contrast.yaml @@ -0,0 +1,49 @@ +name: "horizon-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#11101C" + fg: "#EDEBE6" + black: "#1B192C" + red: "#BA0E2E" + green: "#FD8A25" + yellow: "#B133DC" + blue: "#FED230" + magenta: "#E5194B" + cyan: "#E524A9" + white: "#F8F7F5" + brightBlack: "#38355D" + brightRed: "#F03E5F" + brightGreen: "#FEC08A" + brightYellow: "#D28AEB" + brightBlue: "#FEE895" + brightMagenta: "#F07492" + brightCyan: "#F07FCD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 287 + contrast: + fg: 94.3 + black: 0 + red: 21 + green: 55.2 + yellow: 29.1 + blue: 81.5 + magenta: 31.5 + cyan: 35.1 + white: 102.1 + brightBlack: 0 + brightRed: 37.3 + brightGreen: 75.5 + brightYellow: 53.5 + brightBlue: 92.7 + brightMagenta: 48.6 + brightCyan: 53.9 + brightWhite: 107.3 diff --git a/themes/horizon-extended.yaml b/themes/horizon-extended.yaml new file mode 100644 index 00000000..44a31859 --- /dev/null +++ b/themes/horizon-extended.yaml @@ -0,0 +1,49 @@ +name: "Horizon Extended" +source: + marketplace_id: "LanceWilhelm.horizon-extended" + version: "1.1.1" + installs: 25386 + author: "Lance Wilhelm" + repo: "https://github.com/lancewilhelm/horizon-extended" + url: "https://marketplace.visualstudio.com/items?itemName=LanceWilhelm.horizon-extended" +colors: + bg: "#1C1E26" + fg: "#D5D8DA" + black: "#565C75" + red: "#D68492" + green: "#9EC08A" + yellow: "#E0CAA3" + blue: "#389EA8" + magenta: "#B08EC2" + cyan: "#E9C4A9" + white: "#E39D90" + brightBlack: "#414557" + brightRed: "#F6637C" + brightGreen: "#99D279" + brightYellow: "#F8D28A" + brightBlue: "#21B1BE" + brightMagenta: "#B774DC" + brightCyan: "#F9C199" + brightWhite: "#F88E7C" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 80.8 + black: 17.4 + red: 46.7 + green: 61.1 + yellow: 74.1 + blue: 41.3 + magenta: 46.1 + cyan: 73.2 + white: 56.8 + brightBlack: 8.6 + brightRed: 44 + brightGreen: 68.3 + brightYellow: 80.5 + brightBlue: 49.9 + brightMagenta: 40.8 + brightCyan: 74.1 + brightWhite: 55.3 diff --git a/themes/horizon-laker-theme.yaml b/themes/horizon-laker-theme.yaml new file mode 100644 index 00000000..a2f0eab8 --- /dev/null +++ b/themes/horizon-laker-theme.yaml @@ -0,0 +1,49 @@ +name: "Horizon Laker Theme" +source: + marketplace_id: "julienquennehen.horizon-laker-theme" + version: "0.0.8" + installs: 512 + author: "julienquennehen" + repo: "https://github.com/JulienQNN/vscode-horizon-laker-theme" + url: "https://marketplace.visualstudio.com/items?itemName=julienquennehen.horizon-laker-theme" +colors: + bg: "#212121" + fg: "#D4BE98" + black: "#32302F" + red: "#EA6962" + green: "#FFA500" + yellow: "#DD936E" + blue: "#7DAEA3" + magenta: "#2CA9B4" + cyan: "#FFA500" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#EA6962" + brightGreen: "#FFA500" + brightYellow: "#DD936E" + brightBlue: "#7DAEA3" + brightMagenta: "#2CA9B4" + brightCyan: "#FFA500" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 66.7 + black: 0 + red: 41.7 + green: 62.5 + yellow: 51.2 + blue: 51 + magenta: 45.8 + cyan: 62.5 + white: 66.7 + brightBlack: 35.1 + brightRed: 41.7 + brightGreen: 62.5 + brightYellow: 51.2 + brightBlue: 51 + brightMagenta: 45.8 + brightCyan: 62.5 + brightWhite: 72 diff --git a/themes/horizon-light.yaml b/themes/horizon-light.yaml new file mode 100644 index 00000000..3e8098dc --- /dev/null +++ b/themes/horizon-light.yaml @@ -0,0 +1,49 @@ +name: "horizon-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#474466" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#FD8A25" + yellow: "#BA66D6" + blue: "#FED230" + magenta: "#E5194B" + cyan: "#E524A9" + white: "#524E75" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FEC08A" + brightYellow: "#DEB6EC" + brightBlue: "#FEE895" + brightMagenta: "#F07492" + brightCyan: "#F07FCD" + brightWhite: "#7470A0" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 91.1 + black: 0 + red: 80.3 + green: 46.3 + yellow: 62.4 + blue: 21.3 + magenta: 69.7 + cyan: 66 + white: 86.9 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 27 + brightYellow: 31.8 + brightBlue: 10.9 + brightMagenta: 52.7 + brightCyan: 47.5 + brightWhite: 71.9 diff --git a/themes/horizon.yaml b/themes/horizon.yaml new file mode 100644 index 00000000..e184dd50 --- /dev/null +++ b/themes/horizon.yaml @@ -0,0 +1,49 @@ +name: "horizon" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#474466" + fg: "#FFFFFF" + black: "#524E75" + red: "#BA0E2E" + green: "#FD8A25" + yellow: "#BA66D6" + blue: "#FED230" + magenta: "#E5194B" + cyan: "#E524A9" + white: "#FFFFFF" + brightBlack: "#7470A0" + brightRed: "#F03E5F" + brightGreen: "#FEC08A" + brightYellow: "#DEB6EC" + brightBlue: "#FEE895" + brightMagenta: "#F07492" + brightCyan: "#F07FCD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 288 + contrast: + fg: 95.5 + black: 0 + red: 9.1 + green: 43.4 + yellow: 26.9 + blue: 69.7 + magenta: 19.6 + cyan: 23.2 + white: 95.5 + brightBlack: 17.4 + brightRed: 25.4 + brightGreen: 63.6 + brightYellow: 58.5 + brightBlue: 80.8 + brightMagenta: 36.7 + brightCyan: 42.1 + brightWhite: 95.5 diff --git a/themes/horizondark.yaml b/themes/horizondark.yaml new file mode 100644 index 00000000..84760f95 --- /dev/null +++ b/themes/horizondark.yaml @@ -0,0 +1,49 @@ +name: "HorizonDark" +source: + marketplace_id: "Avetis.horizon-dark" + version: "0.0.2" + installs: 1684 + author: "Avetis" + repo: "https://github.com/AvetisDN/horizon-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.horizon-dark" +colors: + bg: "#1C1E26" + fg: "#FDF0ED" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FDF0ED" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 97.9 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 97.9 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 106 diff --git a/themes/horror-theme.yaml b/themes/horror-theme.yaml new file mode 100644 index 00000000..dc6f402f --- /dev/null +++ b/themes/horror-theme.yaml @@ -0,0 +1,49 @@ +name: "Horror Theme" +source: + marketplace_id: "seonwookim.horror-vscode-extension" + version: "0.0.2" + installs: 103 + author: "seonwoo kim" + repo: "https://github.com/seonwookim/horror-vscode-extension" + url: "https://marketplace.visualstudio.com/items?itemName=seonwookim.horror-vscode-extension" +colors: + bg: "#0A0A0A" + fg: "#E0E0E0" + black: "#0A0A0A" + red: "#FF4444" + green: "#44FF44" + yellow: "#FF8C00" + blue: "#4444FF" + magenta: "#FF44FF" + cyan: "#44FFFF" + white: "#E0E0E0" + brightBlack: "#0A0A0A" + brightRed: "#FF4444" + brightGreen: "#44FF44" + brightYellow: "#FF8C00" + brightBlue: "#4444FF" + brightMagenta: "#FF44FF" + brightCyan: "#44FFFF" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.7 + black: 0 + red: 41.5 + green: 87.3 + yellow: 56.5 + blue: 22.9 + magenta: 49.4 + cyan: 92.7 + white: 87.7 + brightBlack: 0 + brightRed: 41.5 + brightGreen: 87.3 + brightYellow: 56.5 + brightBlue: 22.9 + brightMagenta: 49.4 + brightCyan: 92.7 + brightWhite: 87.7 diff --git a/themes/horus.yaml b/themes/horus.yaml new file mode 100644 index 00000000..46f6007a --- /dev/null +++ b/themes/horus.yaml @@ -0,0 +1,49 @@ +name: "Horus" +source: + marketplace_id: "OnlyF0uR.horus" + version: "1.1.0" + installs: 148 + author: "OnlyF0uR" + repo: "https://github.com/OnlyF0uR/horus" + url: "https://marketplace.visualstudio.com/items?itemName=OnlyF0uR.horus" +colors: + bg: "#0A0A0A" + fg: "#BCB9B9" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 64.8 + black: 7.3 + red: 39.5 + green: 87 + yellow: 92.2 + blue: 38.3 + magenta: 46.1 + cyan: 77 + white: 52.3 + brightBlack: 22.9 + brightRed: 48 + brightGreen: 93.4 + brightYellow: 80.3 + brightBlue: 72.4 + brightMagenta: 67.7 + brightCyan: 90.5 + brightWhite: 73.7 diff --git a/themes/hot-pink-theme.yaml b/themes/hot-pink-theme.yaml new file mode 100644 index 00000000..366bc3d9 --- /dev/null +++ b/themes/hot-pink-theme.yaml @@ -0,0 +1,49 @@ +name: "hot-pink-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#171717" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.9 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/hot-stuff.yaml b/themes/hot-stuff.yaml new file mode 100644 index 00000000..5ee7aa28 --- /dev/null +++ b/themes/hot-stuff.yaml @@ -0,0 +1,49 @@ +name: "Hot Stuff" +source: + marketplace_id: "HarshRastogi.harsh" + version: "1.4.0" + installs: 301 + author: "Harsh Rastogi" + repo: "https://github.com/theharshrastogi/Hot-Stuff-VSCODE-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=HarshRastogi.harsh" +colors: + bg: "#131410" + fg: "#CCCCCC" + black: "#202020" + red: "#F81219" + green: "#2EC55F" + yellow: "#ECBA10" + blue: "#1181D6" + magenta: "#4F5BB7" + cyan: "#1181D6" + white: "#D6DBE5" + brightBlack: "#D6DBE5" + brightRed: "#DE362F" + brightGreen: "#1ED362" + brightYellow: "#F3BD0A" + brightBlue: "#1181D6" + brightMagenta: "#5451B9" + brightCyan: "#1181D6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 75 + black: 0 + red: 35.3 + green: 57.3 + yellow: 68.5 + blue: 33.5 + magenta: 21.5 + cyan: 33.5 + white: 83.9 + brightBlack: 83.9 + brightRed: 31.3 + brightGreen: 63.9 + brightYellow: 70.8 + brightBlue: 33.5 + brightMagenta: 19.5 + brightCyan: 33.5 + brightWhite: 107.2 diff --git a/themes/hotrice.yaml b/themes/hotrice.yaml new file mode 100644 index 00000000..8d8dc171 --- /dev/null +++ b/themes/hotrice.yaml @@ -0,0 +1,49 @@ +name: "HotRice" +source: + marketplace_id: "wadsaek.hotrice" + version: "0.1.0" + installs: 18 + author: "wadsaek" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=wadsaek.hotrice" +colors: + bg: "#242020" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.2 + black: 0 + red: 25.5 + green: 51.8 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/house-of-the-dragon-team-blacks.yaml b/themes/house-of-the-dragon-team-blacks.yaml new file mode 100644 index 00000000..a8650211 --- /dev/null +++ b/themes/house-of-the-dragon-team-blacks.yaml @@ -0,0 +1,49 @@ +name: "House of the Dragon: Team Blacks" +source: + marketplace_id: "RamanMohammed.house-of-the-dragons-blacks-vs-greens" + version: "0.0.3" + installs: 362 + author: "RamanMohammed" + repo: "https://github.com/RaymondSWE/vscode-theme-house-of-dragon" + url: "https://marketplace.visualstudio.com/items?itemName=RamanMohammed.house-of-the-dragons-blacks-vs-greens" +colors: + bg: "#0A0A0A" + fg: "#D1D1D1" + black: "#0A0A0A" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#D1D1D1" + brightBlack: "#4D4D4D" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92D0" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 78.5 + black: 0 + red: 44.3 + green: 85.7 + yellow: 99.4 + blue: 54.5 + magenta: 55.4 + cyan: 84.8 + white: 78.5 + brightBlack: 12.9 + brightRed: 49.7 + brightGreen: 89.9 + brightYellow: 104.4 + brightBlue: 67 + brightMagenta: 62.7 + brightCyan: 97.6 + brightWhite: 107.7 diff --git a/themes/houston.yaml b/themes/houston.yaml new file mode 100644 index 00000000..a56511be --- /dev/null +++ b/themes/houston.yaml @@ -0,0 +1,49 @@ +name: "Houston" +source: + marketplace_id: "astro-build.houston" + version: "0.1.2" + installs: 80504 + author: "Astro" + repo: "https://github.com/withastro/houston-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=astro-build.houston" +colors: + bg: "#17191E" + fg: "#EEF0F9" + black: "#17191E" + red: "#DC3657" + green: "#23D18B" + yellow: "#FFC368" + blue: "#2B7ECA" + magenta: "#AD5DCA" + cyan: "#24C0CF" + white: "#EEF0F9" + brightBlack: "#545864" + brightRed: "#F4587E" + brightGreen: "#4BF3C8" + brightYellow: "#FFD493" + brightBlue: "#54B9FF" + brightMagenta: "#CC75F4" + brightCyan: "#00DAEF" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "red" + hue: 268 + contrast: + fg: 97 + black: 0 + red: 30.9 + green: 63.3 + yellow: 75.4 + blue: 31.5 + magenta: 33.2 + cyan: 58 + white: 97 + brightBlack: 16.1 + brightRed: 42.1 + brightGreen: 83.1 + brightYellow: 83.3 + brightBlue: 59 + brightMagenta: 46.7 + brightCyan: 71.6 + brightWhite: 103.3 diff --git a/themes/htvodp.yaml b/themes/htvodp.yaml new file mode 100644 index 00000000..128d3ee4 --- /dev/null +++ b/themes/htvodp.yaml @@ -0,0 +1,49 @@ +name: "HTVODP" +source: + marketplace_id: "MaouShimazu.hackthevividonedarkpro" + version: "0.0.1" + installs: 1278 + author: "Maou Shimazu" + repo: "https://github.com/Maou-Shimazu/HTVODP" + url: "https://marketplace.visualstudio.com/items?itemName=MaouShimazu.hackthevividonedarkpro" +colors: + bg: "#141D2B" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 259 + contrast: + fg: 58.7 + black: 8.2 + red: 36 + green: 59.7 + yellow: 47.9 + blue: 49 + magenta: 38.4 + cyan: 51.8 + white: 82.4 + brightBlack: 14.8 + brightRed: 45.4 + brightGreen: 76.1 + brightYellow: 60.5 + brightBlue: 63.1 + brightMagenta: 49.6 + brightCyan: 67.1 + brightWhite: 90 diff --git a/themes/huacat-pink-dark.yaml b/themes/huacat-pink-dark.yaml new file mode 100644 index 00000000..7a4496cc --- /dev/null +++ b/themes/huacat-pink-dark.yaml @@ -0,0 +1,49 @@ +name: "Huacat Pink Dark" +source: + marketplace_id: "huacat.pink-theme" + version: "1.1.2" + installs: 71463 + author: "huacat" + repo: "https://github.com/huacat1017/huacat.pink-theme" + url: "https://marketplace.visualstudio.com/items?itemName=huacat.pink-theme" +colors: + bg: "#3D173D" + fg: "#D1B9C8" + black: "#3D173D" + red: "#D14040" + green: "#489427" + yellow: "#C4990D" + blue: "#5782DF" + magenta: "#9045D6" + cyan: "#3CA89A" + white: "#D1B9C8" + brightBlack: "#978C94" + brightRed: "#EE7A7A" + brightGreen: "#72C45B" + brightYellow: "#D7B853" + brightBlue: "#7E97F9" + brightMagenta: "#BB80F1" + brightCyan: "#7ABECC" + brightWhite: "#DEC7D5" +meta: + mode: "dark" + accent: "magenta" + hue: 327 + contrast: + fg: 65 + black: 0 + red: 27.2 + green: 33.2 + yellow: 47.1 + blue: 33.9 + magenta: 23.1 + cyan: 43.5 + white: 65 + brightBlack: 38.7 + brightRed: 46.1 + brightGreen: 56.8 + brightYellow: 62.2 + brightBlue: 45.7 + brightMagenta: 44.6 + brightCyan: 58.2 + brightWhite: 73 diff --git a/themes/hub-contrast.yaml b/themes/hub-contrast.yaml new file mode 100644 index 00000000..f5a1cd87 --- /dev/null +++ b/themes/hub-contrast.yaml @@ -0,0 +1,49 @@ +name: "hub-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#191D21" + fg: "#FFFFFF" + black: "#242A2F" + red: "#BA0E2E" + green: "#E85362" + yellow: "#5392DB" + blue: "#5392DB" + magenta: "#E85362" + cyan: "#9B78DB" + white: "#FFFFFF" + brightBlack: "#45505B" + brightRed: "#F03E5F" + brightGreen: "#F4ADB4" + brightYellow: "#A7C7ED" + brightBlue: "#A7C7ED" + brightMagenta: "#F4ADB4" + brightCyan: "#D7C9F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 106.2 + black: 0 + red: 19.9 + green: 37.5 + yellow: 40.7 + blue: 40.7 + magenta: 37.5 + cyan: 38.3 + white: 106.2 + brightBlack: 12.1 + brightRed: 36.1 + brightGreen: 66.8 + brightYellow: 69.3 + brightBlue: 69.3 + brightMagenta: 66.8 + brightCyan: 75.9 + brightWhite: 106.2 diff --git a/themes/hub-light.yaml b/themes/hub-light.yaml new file mode 100644 index 00000000..e3507cc8 --- /dev/null +++ b/themes/hub-light.yaml @@ -0,0 +1,49 @@ +name: "hub-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#D73A49" + yellow: "#005CC5" + blue: "#005CC5" + magenta: "#D73A49" + cyan: "#6F42C1" + white: "#2F363C" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#E88F97" + brightYellow: "#2C8FFF" + brightBlue: "#2C8FFF" + brightMagenta: "#E88F97" + brightCyan: "#AA8FDA" + brightWhite: "#515C67" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.5 + black: 0 + red: 80.3 + green: 70.4 + yellow: 80.5 + blue: 80.5 + magenta: 70.4 + cyan: 81.7 + white: 98 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 46.8 + brightYellow: 59.1 + brightBlue: 59.1 + brightMagenta: 46.8 + brightCyan: 53 + brightWhite: 83.6 diff --git a/themes/hub.yaml b/themes/hub.yaml new file mode 100644 index 00000000..2e0d4231 --- /dev/null +++ b/themes/hub.yaml @@ -0,0 +1,49 @@ +name: "hub" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#3B444C" + fg: "#FFFFFF" + black: "#46515A" + red: "#BA0E2E" + green: "#E85362" + yellow: "#5392DB" + blue: "#5392DB" + magenta: "#E85362" + cyan: "#9B78DB" + white: "#FFFFFF" + brightBlack: "#687785" + brightRed: "#F03E5F" + brightGreen: "#F4ADB4" + brightYellow: "#A7C7ED" + brightBlue: "#A7C7ED" + brightMagenta: "#F4ADB4" + brightCyan: "#D7C9F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 245 + contrast: + fg: 97.2 + black: 0 + red: 10.8 + green: 28.4 + yellow: 31.7 + blue: 31.7 + magenta: 28.4 + cyan: 29.2 + white: 97.2 + brightBlack: 19 + brightRed: 27.1 + brightGreen: 57.8 + brightYellow: 60.3 + brightBlue: 60.3 + brightMagenta: 57.8 + brightCyan: 66.9 + brightWhite: 97.2 diff --git a/themes/hugodvlp.yaml b/themes/hugodvlp.yaml new file mode 100644 index 00000000..dda88b3e --- /dev/null +++ b/themes/hugodvlp.yaml @@ -0,0 +1,49 @@ +name: "hugodvlp" +source: + marketplace_id: "Hugodvlpr.hugodvlpr-theme" + version: "0.3.0" + installs: 2289 + author: "Hugo" + repo: "https://github.com/hugos/hugodvlpr-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Hugodvlpr.hugodvlpr-theme" +colors: + bg: "#151B20" + fg: "#FF8B56" + black: "#10D4B0" + red: "#940303" + green: "#0059FF" + yellow: "#1A1B03" + blue: "#004CF1" + magenta: "#94058A" + cyan: "#029790" + white: "#311B92" + brightBlack: "#02ADF1" + brightRed: "#BE0000" + brightGreen: "#00FF9C" + brightYellow: "#D0F30C" + brightBlue: "#00A2FF" + brightMagenta: "#E215D6" + brightCyan: "#08E1D7" + brightWhite: "#2EB8F8" +meta: + mode: "dark" + accent: "pink" + hue: 244 + contrast: + fg: 55.6 + black: 65.7 + red: 11.9 + green: 24.6 + yellow: 0 + blue: 20.2 + magenta: 15.2 + cyan: 37.3 + white: 0 + brightBlack: 51.4 + brightRed: 20.7 + brightGreen: 86.9 + brightYellow: 89.3 + brightBlue: 48 + brightMagenta: 35.6 + brightCyan: 73.6 + brightWhite: 56.9 diff --git a/themes/hulcu.yaml b/themes/hulcu.yaml new file mode 100644 index 00000000..5c9c85e1 --- /dev/null +++ b/themes/hulcu.yaml @@ -0,0 +1,49 @@ +name: "Hulcu" +source: + marketplace_id: "slobodan-zivanovic.hulcu" + version: "1.0.0" + installs: 77 + author: "Slobodan Živanović" + repo: "https://github.com/slobodanzivanovic/hulcu.vscode" + url: "https://marketplace.visualstudio.com/items?itemName=slobodan-zivanovic.hulcu" +colors: + bg: "#212129" + fg: "#F0E0B8" + black: "#212129" + red: "#D51F1F" + green: "#73876A" + yellow: "#EA8F32" + blue: "#5D8091" + magenta: "#9074BC" + cyan: "#91A7D4" + white: "#F0E0B8" + brightBlack: "#2F2F40" + brightRed: "#FC4C52" + brightGreen: "#ABCE7F" + brightYellow: "#E192AB" + brightBlue: "#71B5D2" + brightMagenta: "#F96575" + brightCyan: "#B2E6E7" + brightWhite: "#F0E0B8" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 86.2 + black: 0 + red: 25.7 + green: 33 + yellow: 51.3 + blue: 30.1 + magenta: 33.1 + cyan: 52 + white: 86.2 + brightBlack: 0 + brightRed: 39.8 + brightGreen: 67.8 + brightYellow: 53.3 + brightBlue: 55.1 + brightMagenta: 44.4 + brightCyan: 83.3 + brightWhite: 86.2 diff --git a/themes/human-dark.yaml b/themes/human-dark.yaml new file mode 100644 index 00000000..4cd4b18d --- /dev/null +++ b/themes/human-dark.yaml @@ -0,0 +1,49 @@ +name: "Human Dark" +source: + marketplace_id: "TomHall.human-theme" + version: "1.1.1" + installs: 94 + author: "Tom Hall" + repo: "https://github.com/tom-f-hall/human-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" +colors: + bg: "#101713" + fg: "#D9D3C7" + black: "#0D120F" + red: "#E84040" + green: "#9AD1A3" + yellow: "#C9A24D" + blue: "#8FBFA3" + magenta: "#D97A7A" + cyan: "#9FB8A5" + white: "#CFC8BA" + brightBlack: "#3E4A42" + brightRed: "#E8A09A" + brightGreen: "#A3D977" + brightYellow: "#E8B86F" + brightBlue: "#B0C8B8" + brightMagenta: "#E8A09A" + brightCyan: "#B0C8B8" + brightWhite: "#D9D3C7" +meta: + mode: "dark" + accent: "orange" + hue: 160 + contrast: + fg: 79.3 + black: 0 + red: 34.8 + green: 70.1 + yellow: 54 + blue: 61.1 + magenta: 44.6 + cyan: 59.7 + white: 72.8 + brightBlack: 10.1 + brightRed: 60.1 + brightGreen: 73.4 + brightYellow: 67.8 + brightBlue: 69 + brightMagenta: 60.1 + brightCyan: 69 + brightWhite: 79.3 diff --git a/themes/human-high-contrast.yaml b/themes/human-high-contrast.yaml new file mode 100644 index 00000000..04d6f93c --- /dev/null +++ b/themes/human-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Human High Contrast" +source: + marketplace_id: "TomHall.human-theme" + version: "1.1.1" + installs: 94 + author: "Tom Hall" + repo: "https://github.com/tom-f-hall/human-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00EE00" + yellow: "#FFCC00" + blue: "#00DDFF" + magenta: "#EE0000" + cyan: "#00CCEE" + white: "#CCCCCC" + brightBlack: "#666666" + brightRed: "#FF4444" + brightGreen: "#00FF00" + brightYellow: "#FFCC00" + brightBlue: "#00BBDD" + brightMagenta: "#FF4444" + brightCyan: "#00BBDD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 77.5 + yellow: 79.6 + blue: 75.2 + magenta: 33.3 + cyan: 66.2 + white: 75.7 + brightBlack: 23 + brightRed: 41.6 + brightGreen: 86.5 + brightYellow: 79.6 + brightBlue: 57.6 + brightMagenta: 41.6 + brightCyan: 57.6 + brightWhite: 107.9 diff --git a/themes/human-light.yaml b/themes/human-light.yaml new file mode 100644 index 00000000..1c1456a3 --- /dev/null +++ b/themes/human-light.yaml @@ -0,0 +1,49 @@ +name: "Human Light" +source: + marketplace_id: "TomHall.human-theme" + version: "1.1.1" + installs: 94 + author: "Tom Hall" + repo: "https://github.com/tom-f-hall/human-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" +colors: + bg: "#EDF3EB" + fg: "#2D2520" + black: "#E0E8DD" + red: "#8A3A2A" + green: "#2E6B2F" + yellow: "#7A5B1F" + blue: "#1A5F6F" + magenta: "#8A4040" + cyan: "#256B7A" + white: "#6B5F52" + brightBlack: "#A89A90" + brightRed: "#A84545" + brightGreen: "#2E6B25" + brightYellow: "#7A5B1F" + brightBlue: "#2D6B7F" + brightMagenta: "#A84545" + brightCyan: "#2D6B7F" + brightWhite: "#2D2520" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93.7 + black: 0 + red: 78 + green: 73.5 + yellow: 72.9 + blue: 76.5 + magenta: 76.6 + cyan: 71.8 + white: 72.7 + brightBlack: 44.6 + brightRed: 70.3 + brightGreen: 73.6 + brightYellow: 72.9 + brightBlue: 71.4 + brightMagenta: 70.3 + brightCyan: 71.4 + brightWhite: 93.7 diff --git a/themes/human-low-light.yaml b/themes/human-low-light.yaml new file mode 100644 index 00000000..d2af5b8a --- /dev/null +++ b/themes/human-low-light.yaml @@ -0,0 +1,49 @@ +name: "Human Low Light" +source: + marketplace_id: "TomHall.human-theme" + version: "1.1.1" + installs: 94 + author: "Tom Hall" + repo: "https://github.com/tom-f-hall/human-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" +colors: + bg: "#141210" + fg: "#D9CFC4" + black: "#0F0D0B" + red: "#E85050" + green: "#A8C98A" + yellow: "#D9A84D" + blue: "#9FBF9A" + magenta: "#E98A8A" + cyan: "#A8B89F" + white: "#C9BFB4" + brightBlack: "#4A4A42" + brightRed: "#E8B0AA" + brightGreen: "#B8C97A" + brightYellow: "#E8C87F" + brightBlue: "#B8C8B0" + brightMagenta: "#E8B0AA" + brightCyan: "#B8C8B0" + brightWhite: "#D9CFC4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 77.7 + black: 0 + red: 37.6 + green: 67.3 + yellow: 59 + blue: 62.5 + magenta: 52.9 + cyan: 60.7 + white: 68.3 + brightBlack: 11.2 + brightRed: 66.6 + brightGreen: 68.7 + brightYellow: 74.8 + brightBlue: 69.8 + brightMagenta: 66.6 + brightCyan: 69.8 + brightWhite: 77.7 diff --git a/themes/human-soft.yaml b/themes/human-soft.yaml new file mode 100644 index 00000000..f3676260 --- /dev/null +++ b/themes/human-soft.yaml @@ -0,0 +1,49 @@ +name: "Human Soft" +source: + marketplace_id: "TomHall.human-theme" + version: "1.1.1" + installs: 94 + author: "Tom Hall" + repo: "https://github.com/tom-f-hall/human-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" +colors: + bg: "#F2F5F0" + fg: "#3A3530" + black: "#E8EDE5" + red: "#9A4A3A" + green: "#3E7A3F" + yellow: "#8A6B2F" + blue: "#2A6F7F" + magenta: "#9A5050" + cyan: "#357A8A" + white: "#7A6F62" + brightBlack: "#B8AAA0" + brightRed: "#B85555" + brightGreen: "#3E7A35" + brightYellow: "#8A6B2F" + brightBlue: "#3D7A8F" + brightMagenta: "#B85555" + brightCyan: "#3D7A8F" + brightWhite: "#3A3530" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 91.2 + black: 0 + red: 73.7 + green: 68.9 + yellow: 67.7 + blue: 71.8 + magenta: 72 + cyan: 67.1 + white: 67.5 + brightBlack: 38 + brightRed: 65.6 + brightGreen: 69 + brightYellow: 67.7 + brightBlue: 66.6 + brightMagenta: 65.6 + brightCyan: 66.6 + brightWhite: 91.2 diff --git a/themes/human-warm.yaml b/themes/human-warm.yaml new file mode 100644 index 00000000..e951bd48 --- /dev/null +++ b/themes/human-warm.yaml @@ -0,0 +1,49 @@ +name: "Human Warm" +source: + marketplace_id: "TomHall.human-theme" + version: "1.1.1" + installs: 94 + author: "Tom Hall" + repo: "https://github.com/tom-f-hall/human-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" +colors: + bg: "#F5F0E8" + fg: "#2D2520" + black: "#E8DED0" + red: "#9A4A2A" + green: "#357A2F" + yellow: "#7A5B1F" + blue: "#2A6F5F" + magenta: "#9A5040" + cyan: "#357A6A" + white: "#6B5F52" + brightBlack: "#B8AA90" + brightRed: "#B85545" + brightGreen: "#357A25" + brightYellow: "#7A5B1F" + brightBlue: "#3D7A6F" + brightMagenta: "#B85545" + brightCyan: "#3D7A6F" + brightWhite: "#2D2520" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 93.3 + black: 7.7 + red: 71.8 + green: 67.4 + yellow: 72.5 + blue: 70.8 + magenta: 70.2 + cyan: 66.2 + white: 72.3 + brightBlack: 36.4 + brightRed: 63.8 + brightGreen: 67.4 + brightYellow: 72.5 + brightBlue: 65.7 + brightMagenta: 63.8 + brightCyan: 65.7 + brightWhite: 93.3 diff --git a/themes/human.yaml b/themes/human.yaml new file mode 100644 index 00000000..73d12de8 --- /dev/null +++ b/themes/human.yaml @@ -0,0 +1,49 @@ +name: "Human++" +source: + marketplace_id: "fielding.human-plus-plus" + version: "1.5.0" + installs: 18 + author: "fielding" + repo: "https://github.com/fielding/human-plus-plus" + url: "https://marketplace.visualstudio.com/items?itemName=fielding.human-plus-plus" +colors: + bg: "#1A1C22" + fg: "#F8F6F2" + black: "#1A1C22" + red: "#E7349C" + green: "#04B372" + yellow: "#F2A633" + blue: "#458AE2" + magenta: "#9871FE" + cyan: "#1AD0D6" + white: "#F8F6F2" + brightBlack: "#5A5D62" + brightRed: "#C8518F" + brightGreen: "#61B186" + brightYellow: "#DFB683" + brightBlue: "#5E84B6" + brightMagenta: "#8F72E3" + brightCyan: "#91CBCD" + brightWhite: "#F8F6F2" +meta: + mode: "dark" + accent: "red" + hue: 271 + contrast: + fg: 100.5 + black: 0 + red: 35.1 + green: 48.1 + yellow: 61.2 + blue: 37.8 + magenta: 38.7 + cyan: 65.3 + white: 100.5 + brightBlack: 17.6 + brightRed: 32 + brightGreen: 50.1 + brightYellow: 65.3 + brightBlue: 34.2 + brightMagenta: 35.8 + brightCyan: 67.5 + brightWhite: 100.5 diff --git a/themes/hundred-oceans.yaml b/themes/hundred-oceans.yaml new file mode 100644 index 00000000..7d0adc39 --- /dev/null +++ b/themes/hundred-oceans.yaml @@ -0,0 +1,49 @@ +name: "Hundred Oceans" +source: + marketplace_id: "MikeCluck.hundred-oceans-theme" + version: "1.0.0" + installs: 1430 + author: "Mike Cluck" + repo: "https://github.com/MCluck90/vscode-hundred-oceans-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MikeCluck.hundred-oceans-theme" +colors: + bg: "#06090F" + fg: "#A5B7C0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 61.7 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/hush-dark.yaml b/themes/hush-dark.yaml new file mode 100644 index 00000000..61d83a52 --- /dev/null +++ b/themes/hush-dark.yaml @@ -0,0 +1,49 @@ +name: "Hush.dark" +source: + marketplace_id: "nobilissimum.hush-theme" + version: "1.8.0" + installs: 221 + author: "Nobilissimum" + repo: "https://github.com/nobilissimum/hush-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=nobilissimum.hush-theme" +colors: + bg: "#202733" + fg: "#FFFFFF" + black: "#000000" + red: "#F77172" + green: "#65A884" + yellow: "#CEC999" + blue: "#74ADD2" + magenta: "#F77172" + cyan: "#2D949F" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#F77172" + brightGreen: "#65A884" + brightYellow: "#CEC999" + brightBlue: "#74ADD2" + brightMagenta: "#F77172" + brightCyan: "#2D949F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 261 + contrast: + fg: 104.7 + black: 0 + red: 45.7 + green: 44.8 + yellow: 69.6 + blue: 51.1 + magenta: 45.7 + cyan: 35.3 + white: 104.7 + brightBlack: 104.7 + brightRed: 45.7 + brightGreen: 44.8 + brightYellow: 69.6 + brightBlue: 51.1 + brightMagenta: 45.7 + brightCyan: 35.3 + brightWhite: 104.7 diff --git a/themes/hush-light.yaml b/themes/hush-light.yaml new file mode 100644 index 00000000..cbfbd978 --- /dev/null +++ b/themes/hush-light.yaml @@ -0,0 +1,49 @@ +name: "Hush.light" +source: + marketplace_id: "nobilissimum.hush-theme" + version: "1.8.0" + installs: 221 + author: "Nobilissimum" + repo: "https://github.com/nobilissimum/hush-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=nobilissimum.hush-theme" +colors: + bg: "#F5FAFA" + fg: "#111111" + black: "#001326" + red: "#D54B4B" + green: "#4E8969" + yellow: "#A19A5B" + blue: "#3C88B9" + magenta: "#D54B4B" + cyan: "#267E87" + white: "#111111" + brightBlack: "#111111" + brightRed: "#D54B4B" + brightGreen: "#4E8969" + brightYellow: "#A19A5B" + brightBlue: "#3C88B9" + brightMagenta: "#D54B4B" + brightCyan: "#267E87" + brightWhite: "#111111" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.7 + black: 101.5 + red: 64.8 + green: 64.5 + yellow: 51.4 + blue: 62.4 + magenta: 64.8 + cyan: 69.1 + white: 101.7 + brightBlack: 101.7 + brightRed: 64.8 + brightGreen: 64.5 + brightYellow: 51.4 + brightBlue: 62.4 + brightMagenta: 64.8 + brightCyan: 69.1 + brightWhite: 101.7 diff --git a/themes/hutaotheme.yaml b/themes/hutaotheme.yaml new file mode 100644 index 00000000..b93ff993 --- /dev/null +++ b/themes/hutaotheme.yaml @@ -0,0 +1,49 @@ +name: "HuTaoTheme" +source: + marketplace_id: "agomizi1cm.hutao-theme" + version: "1.1.3" + installs: 962 + author: "agomizi1cm" + repo: "https://github.com/agomizi1cm/HuTaoTheme" + url: "https://marketplace.visualstudio.com/items?itemName=agomizi1cm.hutao-theme" +colors: + bg: "#541B1B" + fg: "#FFE098" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 23 + contrast: + fg: 84.7 + black: 0 + red: 22.5 + green: 48.8 + yellow: 81.4 + blue: 23.3 + magenta: 25.6 + cyan: 43.4 + white: 85.8 + brightBlack: 17.9 + brightRed: 34.4 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.8 + brightMagenta: 41.2 + brightCyan: 51.2 + brightWhite: 85.8 diff --git a/themes/hybrid-dim.yaml b/themes/hybrid-dim.yaml new file mode 100644 index 00000000..5535c254 --- /dev/null +++ b/themes/hybrid-dim.yaml @@ -0,0 +1,49 @@ +name: "Hybrid Dim" +source: + marketplace_id: "meronz.hybrid-dim" + version: "0.0.3" + installs: 1551 + author: "meronz" + repo: "https://github.com/meronz/hybrid-dim" + url: "https://marketplace.visualstudio.com/items?itemName=meronz.hybrid-dim" +colors: + bg: "#1D1F21" + fg: "#C5C8C6" + black: "#282A2E" + red: "#A54242" + green: "#8C9440" + yellow: "#DE935F" + blue: "#5F819D" + magenta: "#85678F" + cyan: "#5E8D87" + white: "#707880" + brightBlack: "#373B41" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#F1D294" + brightBlue: "#81A2BE" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#C5C8C6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 70.9 + black: 0 + red: 20.2 + green: 39.8 + yellow: 51.4 + blue: 31.6 + magenta: 26.2 + cyan: 35 + white: 28.6 + brightBlack: 0 + brightRed: 35.5 + brightGreen: 61.5 + brightYellow: 79.6 + brightBlue: 47.9 + brightMagenta: 47.9 + brightCyan: 59.9 + brightWhite: 70.9 diff --git a/themes/hybrid-next-gray-background.yaml b/themes/hybrid-next-gray-background.yaml new file mode 100644 index 00000000..6729e6dd --- /dev/null +++ b/themes/hybrid-next-gray-background.yaml @@ -0,0 +1,49 @@ +name: "Hybrid Next (Gray Background)" +source: + marketplace_id: "wyze.theme-hybrid-next" + version: "2.4.0" + installs: 6849 + author: "Neil Kistner" + repo: "https://github.com/wyze/vscode-hybrid-next" + url: "https://marketplace.visualstudio.com/items?itemName=wyze.theme-hybrid-next" +colors: + bg: "#333333" + fg: "#C5C8C6" + black: "#333333" + red: "#A54242" + green: "#8C9440" + yellow: "#DE935F" + blue: "#81A2BE" + magenta: "#85678F" + cyan: "#5E8D87" + white: "#6C7A80" + brightBlack: "#7A7A7A" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#F0C674" + brightBlue: "#99DBFF" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#C5C8C6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 67 + black: 0 + red: 16.3 + green: 35.9 + yellow: 47.5 + blue: 44 + magenta: 22.3 + cyan: 31 + white: 25 + brightBlack: 26.1 + brightRed: 31.6 + brightGreen: 57.5 + brightYellow: 69.7 + brightBlue: 73.7 + brightMagenta: 44 + brightCyan: 56 + brightWhite: 67 diff --git a/themes/hybrid-theme.yaml b/themes/hybrid-theme.yaml new file mode 100644 index 00000000..b7f43ba5 --- /dev/null +++ b/themes/hybrid-theme.yaml @@ -0,0 +1,49 @@ +name: "hybrid theme" +source: + marketplace_id: "black23eep.a-hybrid-theme" + version: "0.9.9" + installs: 151 + author: "black23eep" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=black23eep.a-hybrid-theme" +colors: + bg: "#0B0B0B" + fg: "#AEAEAE" + black: "#676767" + red: "#FF5050" + green: "#15AC91" + yellow: "#E5B95C" + blue: "#3F95F0" + magenta: "#E567DC" + cyan: "#75D3BA" + white: "#CFCFCF" + brightBlack: "#676767" + brightRed: "#FF5050" + brightGreen: "#15AC91" + brightYellow: "#E5B95C" + brightBlue: "#52A1F6" + brightMagenta: "#E567DC" + brightCyan: "#75D3BA" + brightWhite: "#CFCFCF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 58.3 + black: 23.3 + red: 43.3 + green: 47.4 + yellow: 68 + blue: 44 + magenta: 47.3 + cyan: 69.8 + white: 77.3 + brightBlack: 23.3 + brightRed: 43.3 + brightGreen: 47.4 + brightYellow: 68 + brightBlue: 49.7 + brightMagenta: 47.3 + brightCyan: 69.8 + brightWhite: 77.3 diff --git a/themes/hydr-theme.yaml b/themes/hydr-theme.yaml new file mode 100644 index 00000000..fad0c869 --- /dev/null +++ b/themes/hydr-theme.yaml @@ -0,0 +1,49 @@ +name: "hydr-theme" +source: + marketplace_id: "hydr.hydr-theme" + version: "2.0.5" + installs: 2603 + author: "hydr" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=hydr.hydr-theme" +colors: + bg: "#191A28" + fg: "#ACD8DB" + black: "#666666" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#828282" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 281 + contrast: + fg: 76.6 + black: 21.6 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.5 + brightBlack: 34.2 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/hydra-night.yaml b/themes/hydra-night.yaml new file mode 100644 index 00000000..7d083d6e --- /dev/null +++ b/themes/hydra-night.yaml @@ -0,0 +1,49 @@ +name: "Hydra night" +source: + marketplace_id: "CupizeiroBR.Hydra-Theme" + version: "1.0.0" + installs: 705 + author: "Phoenix-141" + repo: "https://github.com/Phoenix-141/Hydra-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=CupizeiroBR.Hydra-Theme" +colors: + bg: "#06081B" + fg: "#6842A1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 16.9 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/hydra-storm.yaml b/themes/hydra-storm.yaml new file mode 100644 index 00000000..6d93741d --- /dev/null +++ b/themes/hydra-storm.yaml @@ -0,0 +1,49 @@ +name: "Hydra Storm" +source: + marketplace_id: "CupizeiroBR.Hydra-Theme" + version: "1.0.0" + installs: 705 + author: "Phoenix-141" + repo: "https://github.com/Phoenix-141/Hydra-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=CupizeiroBR.Hydra-Theme" +colors: + bg: "#0E1536" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 79.3 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.6 + cyan: 47.4 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.4 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/hyezo-dark.yaml b/themes/hyezo-dark.yaml new file mode 100644 index 00000000..18a8e738 --- /dev/null +++ b/themes/hyezo-dark.yaml @@ -0,0 +1,49 @@ +name: "hyezo-dark" +source: + marketplace_id: "hyezoprk.hyezo" + version: "1.0.1" + installs: 33 + author: "hyezoprk" + repo: "https://github.com/hyezoprk/hyezoTheme" + url: "https://marketplace.visualstudio.com/items?itemName=hyezoprk.hyezo" +colors: + bg: "#1E293B" + fg: "#D6D6D6" + black: "#000000" + red: "#CD3131" + green: "#51E1A5" + yellow: "#51E1A5" + blue: "#C7ADFB" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 78.1 + black: 0 + red: 24.1 + green: 70.6 + yellow: 70.6 + blue: 61.5 + magenta: 27.2 + cyan: 45 + white: 87.4 + brightBlack: 19.4 + brightRed: 36 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/hyle-color-theme.yaml b/themes/hyle-color-theme.yaml new file mode 100644 index 00000000..cb208c42 --- /dev/null +++ b/themes/hyle-color-theme.yaml @@ -0,0 +1,49 @@ +name: "hyle-color-theme" +source: + marketplace_id: "Kaosc.hyle" + version: "0.4.2" + installs: 190 + author: "Kaosc" + repo: "https://github.com/Kaosc/Hyle" + url: "https://marketplace.visualstudio.com/items?itemName=Kaosc.hyle" +colors: + bg: "#101010" + fg: "#C7C7C7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72.3 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/hyle-night-night-color-theme.yaml b/themes/hyle-night-night-color-theme.yaml new file mode 100644 index 00000000..6e591bf7 --- /dev/null +++ b/themes/hyle-night-night-color-theme.yaml @@ -0,0 +1,49 @@ +name: "hyle-night-night-color-theme" +source: + marketplace_id: "Kaosc.hyle" + version: "0.4.2" + installs: 190 + author: "Kaosc" + repo: "https://github.com/Kaosc/Hyle" + url: "https://marketplace.visualstudio.com/items?itemName=Kaosc.hyle" +colors: + bg: "#070707" + fg: "#C7C7C7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72.6 + black: 0 + red: 27.7 + green: 53.9 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 91 diff --git a/themes/hyped-down-fork.yaml b/themes/hyped-down-fork.yaml new file mode 100644 index 00000000..3148cb1d --- /dev/null +++ b/themes/hyped-down-fork.yaml @@ -0,0 +1,49 @@ +name: "Hyped Down - Fork" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29903 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" +colors: + bg: "#1D1F27" + fg: "#C5C8C6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 70.8 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.6 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/hyped-down-theme.yaml b/themes/hyped-down-theme.yaml new file mode 100644 index 00000000..27c9f815 --- /dev/null +++ b/themes/hyped-down-theme.yaml @@ -0,0 +1,49 @@ +name: "hyped-down-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#191A1F" + fg: "#FFFFFF" + black: "#565454" + red: "#D1949E" + green: "#DFF7A9" + yellow: "#879071" + blue: "#747EA7" + magenta: "#6F6F6F" + cyan: "#8BA6A9" + white: "#8A8A8A" + brightBlack: "#3D3D3D" + brightRed: "#904E64" + brightGreen: "#D1FF69" + brightYellow: "#F5F543" + brightBlue: "#9EABDE" + brightMagenta: "#8A8A8A" + brightCyan: "#9ED8DE" + brightWhite: "#ABABAB" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 106.5 + black: 14.5 + red: 51.8 + green: 95.1 + yellow: 39.3 + blue: 33.2 + magenta: 25.6 + cyan: 50 + white: 38.2 + brightBlack: 0 + brightRed: 20.4 + brightGreen: 96 + brightYellow: 95.3 + brightBlue: 56.4 + brightMagenta: 38.2 + brightCyan: 75.5 + brightWhite: 55.4 diff --git a/themes/hyper-ctrl-theme.yaml b/themes/hyper-ctrl-theme.yaml new file mode 100644 index 00000000..ac85ae39 --- /dev/null +++ b/themes/hyper-ctrl-theme.yaml @@ -0,0 +1,49 @@ +name: "Hyper Ctrl Theme" +source: + marketplace_id: "bprabhus.hyper-ctrl-theme" + version: "0.4.0" + installs: 609 + author: "Bharath Prabhuswamy" + repo: "https://github.com/bprabhus/hyper-ctrl-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bprabhus.hyper-ctrl-theme" +colors: + bg: "#000000" + fg: "#959595" + black: "#000000" + red: "#E31A1C" + green: "#31A354" + yellow: "#DCA060" + blue: "#3182BD" + magenta: "#756BB1" + cyan: "#80B1D3" + white: "#B7B8B9" + brightBlack: "#737475" + brightRed: "#E31A1C" + brightGreen: "#31A354" + brightYellow: "#DCA060" + brightBlue: "#3182BD" + brightMagenta: "#756BB1" + brightCyan: "#80B1D3" + brightWhite: "#FCFDFE" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 45.1 + black: 0 + red: 31.1 + green: 42.6 + yellow: 57.5 + blue: 33.4 + magenta: 29.3 + cyan: 56.9 + white: 64 + brightBlack: 29.1 + brightRed: 31.1 + brightGreen: 42.6 + brightYellow: 57.5 + brightBlue: 33.4 + brightMagenta: 29.3 + brightCyan: 56.9 + brightWhite: 106.5 diff --git a/themes/hyper.yaml b/themes/hyper.yaml new file mode 100644 index 00000000..f9fe6b4e --- /dev/null +++ b/themes/hyper.yaml @@ -0,0 +1,49 @@ +name: "Hyper" +source: + marketplace_id: "jack-curtis.hyper" + version: "1.3.0" + installs: 1817 + author: "jack-curtis" + repo: "https://github.com/Jack-Curtis/hyper-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=jack-curtis.hyper" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FFC600" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FFC600" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 48.1 + green: 67.3 + yellow: 77.1 + blue: 39.8 + magenta: 65.3 + cyan: 93.8 + white: 107.9 + brightBlack: 15.7 + brightRed: 48.1 + brightGreen: 67.3 + brightYellow: 77.1 + brightBlue: 39.8 + brightMagenta: 65.3 + brightCyan: 93.8 + brightWhite: 0 diff --git a/themes/hyperdark-theme.yaml b/themes/hyperdark-theme.yaml new file mode 100644 index 00000000..8b2da8b4 --- /dev/null +++ b/themes/hyperdark-theme.yaml @@ -0,0 +1,49 @@ +name: "Hyperdark Theme" +source: + marketplace_id: "voidfaithnull.hypedown-theme" + version: "1.5.0" + installs: 3358 + author: "wxgrzr" + repo: "https://github.com/wgrzr/hypedown-theme" + url: "https://marketplace.visualstudio.com/items?itemName=voidfaithnull.hypedown-theme" +colors: + bg: "#191A1F" + fg: "#E8E6E0" + black: "#565454" + red: "#D1949E" + green: "#DFF7A9" + yellow: "#879071" + blue: "#747EA7" + magenta: "#6F6F6F" + cyan: "#8BA6A9" + white: "#8A8A8A" + brightBlack: "#3D3D3D" + brightRed: "#904E64" + brightGreen: "#D1FF69" + brightYellow: "#F5F543" + brightBlue: "#9EABDE" + brightMagenta: "#8A8A8A" + brightCyan: "#9ED8DE" + brightWhite: "#ABABAB" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 90.3 + black: 14.5 + red: 51.8 + green: 95.1 + yellow: 39.3 + blue: 33.2 + magenta: 25.6 + cyan: 50 + white: 38.2 + brightBlack: 0 + brightRed: 20.4 + brightGreen: 96 + brightYellow: 95.3 + brightBlue: 56.4 + brightMagenta: 38.2 + brightCyan: 75.5 + brightWhite: 55.4 diff --git a/themes/hyperlink.yaml b/themes/hyperlink.yaml new file mode 100644 index 00000000..62990fe2 --- /dev/null +++ b/themes/hyperlink.yaml @@ -0,0 +1,49 @@ +name: "Hyperlink" +source: + marketplace_id: "NikKale.hyperlink-theme" + version: "1.1.0" + installs: 74 + author: "Nik Kale" + repo: "https://github.com/dabbleintech/hyperlink-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NikKale.hyperlink-theme" +colors: + bg: "#1C2639" + fg: "#FFFFFF" + black: "#1C2639" + red: "#F08261" + green: "#B8E97B" + yellow: "#FDD46B" + blue: "#53E0FC" + magenta: "#C67BE9" + cyan: "#53E0FC" + white: "#FFFFFF" + brightBlack: "#28344B" + brightRed: "#F08261" + brightGreen: "#B8E97B" + brightYellow: "#FDD46B" + brightBlue: "#53E0FC" + brightMagenta: "#C67BE9" + brightCyan: "#53E0FC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 263 + contrast: + fg: 104.8 + black: 0 + red: 48.4 + green: 81 + yellow: 80.3 + blue: 74.6 + magenta: 44.6 + cyan: 74.6 + white: 104.8 + brightBlack: 0 + brightRed: 48.4 + brightGreen: 81 + brightYellow: 80.3 + brightBlue: 74.6 + brightMagenta: 44.6 + brightCyan: 74.6 + brightWhite: 104.8 diff --git a/themes/hyperrail-theme-hyper-syntax-colors.yaml b/themes/hyperrail-theme-hyper-syntax-colors.yaml new file mode 100644 index 00000000..f01c41a2 --- /dev/null +++ b/themes/hyperrail-theme-hyper-syntax-colors.yaml @@ -0,0 +1,49 @@ +name: "HyperRail Theme (Hyper Syntax Colors)" +source: + marketplace_id: "nikola-turudija.hyperrail-theme" + version: "1.0.0" + installs: 77 + author: "Nikola Turudija" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=nikola-turudija.hyperrail-theme" +colors: + bg: "#1D2026" + fg: "#FFFFFF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 105.8 + black: 0 + red: 42.3 + green: 83.8 + yellow: 97.4 + blue: 52.5 + magenta: 53.5 + cyan: 82.9 + white: 100.9 + brightBlack: 26.9 + brightRed: 47.7 + brightGreen: 87.9 + brightYellow: 102.4 + brightBlue: 65 + brightMagenta: 61.5 + brightCyan: 95.7 + brightWhite: 105.8 diff --git a/themes/hypersubatomic.yaml b/themes/hypersubatomic.yaml new file mode 100644 index 00000000..847b29a5 --- /dev/null +++ b/themes/hypersubatomic.yaml @@ -0,0 +1,49 @@ +name: "Hypersubatomic" +source: + marketplace_id: "neilpanchal.hypersubatomic" + version: "0.1.5" + installs: 6114 + author: "Neil Panchal" + repo: "https://github.com/neilpanchal/hypersubatomic-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=neilpanchal.hypersubatomic" +colors: + bg: "#0F111A" + fg: "#8F93A2" + black: "#000000" + red: "#F2283C" + green: "#00AE6B" + yellow: "#FFC200" + blue: "#277DFF" + magenta: "#875AFB" + cyan: "#00A1B4" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#F2283C" + brightGreen: "#00AE6B" + brightYellow: "#FFC200" + brightBlue: "#277DFF" + brightMagenta: "#875AFB" + brightCyan: "#00A1B4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 43.7 + black: 0 + red: 35.1 + green: 46.8 + yellow: 75 + blue: 35.9 + magenta: 32 + cyan: 43.8 + white: 107.3 + brightBlack: 12 + brightRed: 35.1 + brightGreen: 46.8 + brightYellow: 75 + brightBlue: 35.9 + brightMagenta: 32 + brightCyan: 43.8 + brightWhite: 107.3 diff --git a/themes/hypervoxel.yaml b/themes/hypervoxel.yaml new file mode 100644 index 00000000..aacd2c2b --- /dev/null +++ b/themes/hypervoxel.yaml @@ -0,0 +1,49 @@ +name: "HyperVoxel" +source: + marketplace_id: "MohamedAfraz.hypervoxel" + version: "1.6.3" + installs: 141 + author: "Mohamed Afraz" + repo: "https://github.com/MohamedAfraz/HyperVoxel" + url: "https://marketplace.visualstudio.com/items?itemName=MohamedAfraz.hypervoxel" +colors: + bg: "#181B34" + fg: "#E1E1E6" + black: "#4D4D4D" + red: "#FF615E" + green: "#37F18B" + yellow: "#F6FFBE" + blue: "#03C3FD" + magenta: "#EDAAF7" + cyan: "#80FCFF" + white: "#9BB4B1" + brightBlack: "#676E95" + brightRed: "#FF4751" + brightGreen: "#58FB1C" + brightYellow: "#F5F543" + brightBlue: "#00ABFF" + brightMagenta: "#FB91F6" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 277 + contrast: + fg: 87 + black: 11.3 + red: 45 + green: 79.1 + yellow: 102.3 + blue: 61.3 + magenta: 67.7 + cyan: 92 + white: 57.2 + brightBlack: 25.7 + brightRed: 40.5 + brightGreen: 83.9 + brightYellow: 94.9 + brightBlue: 51.2 + brightMagenta: 62.1 + brightCyan: 90.4 + brightWhite: 106.1 diff --git a/themes/hyprluna.yaml b/themes/hyprluna.yaml new file mode 100644 index 00000000..620c0a05 --- /dev/null +++ b/themes/hyprluna.yaml @@ -0,0 +1,49 @@ +name: "HyprLuna" +source: + marketplace_id: "HyprLuna.hyprluna-theme" + version: "1.0.2" + installs: 1276 + author: "HyprLuna" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HyprLuna.hyprluna-theme" +colors: + bg: "#1A1110" + fg: "#F1DEDC" + black: "#A08C8A" + red: "#FFB4AB" + green: "#E7BDB8" + yellow: "#5D3F3C" + blue: "#FFB3AC" + magenta: "#E1C38C" + cyan: "#584419" + white: "#F1DEDC" + brightBlack: "#D8C2BF" + brightRed: "#93000A" + brightGreen: "#5D3F3C" + brightYellow: "#E7BDB8" + brightBlue: "#73332F" + brightMagenta: "#584419" + brightCyan: "#E1C38C" + brightWhite: "#F1DEDC" +meta: + mode: "dark" + accent: "orange" + hue: 26 + contrast: + fg: 88.5 + black: 42.1 + red: 71.9 + green: 71.8 + yellow: 10.1 + blue: 71.6 + magenta: 71.9 + cyan: 10.3 + white: 88.5 + brightBlack: 71.9 + brightRed: 12.4 + brightGreen: 10.1 + brightYellow: 71.8 + brightBlue: 10.5 + brightMagenta: 10.3 + brightCyan: 71.9 + brightWhite: 88.5 diff --git a/themes/hyrule-contrast.yaml b/themes/hyrule-contrast.yaml new file mode 100644 index 00000000..f5ef6c97 --- /dev/null +++ b/themes/hyrule-contrast.yaml @@ -0,0 +1,49 @@ +name: "hyrule-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0C0C0C" + fg: "#C0D5C1" + black: "#191919" + red: "#BA0E2E" + green: "#F5C504" + yellow: "#569E16" + blue: "#90C93F" + magenta: "#90C93F" + cyan: "#F5C504" + white: "#CFDFD0" + brightBlack: "#3F3F3F" + brightRed: "#F03E5F" + brightGreen: "#FCDE63" + brightYellow: "#88E337" + brightBlue: "#BEDF8F" + brightMagenta: "#BEDF8F" + brightCyan: "#FCDE63" + brightWhite: "#FDFEFD" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 77.5 + black: 0 + red: 21.3 + green: 74.8 + yellow: 41 + blue: 64.1 + magenta: 64.1 + cyan: 74.8 + white: 84.4 + brightBlack: 7.9 + brightRed: 37.6 + brightGreen: 87.2 + brightYellow: 75.8 + brightBlue: 80.2 + brightMagenta: 80.2 + brightCyan: 87.2 + brightWhite: 106.8 diff --git a/themes/hyrule-light.yaml b/themes/hyrule-light.yaml new file mode 100644 index 00000000..9233c121 --- /dev/null +++ b/themes/hyrule-light.yaml @@ -0,0 +1,49 @@ +name: "hyrule-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#C0D5C1" + fg: "#2D2C2B" + black: "#CFDFD0" + red: "#BA0E2E" + green: "#B7950C" + yellow: "#407710" + blue: "#68912E" + magenta: "#68912E" + cyan: "#B7950C" + white: "#3A3937" + brightBlack: "#FDFEFD" + brightRed: "#F03E5F" + brightGreen: "#F2CD37" + brightYellow: "#70D11C" + brightBlue: "#9CCB5A" + brightMagenta: "#9CCB5A" + brightCyan: "#F2CD37" + brightWhite: "#615F5D" +meta: + mode: "light" + accent: "green" + hue: 147 + contrast: + fg: 72.9 + black: 0 + red: 52.7 + green: 27 + yellow: 49.2 + blue: 36.8 + magenta: 36.8 + cyan: 27 + white: 68.9 + brightBlack: 27.9 + brightRed: 36.2 + brightGreen: 0 + brightYellow: 9.2 + brightBlue: 8.2 + brightMagenta: 8.2 + brightCyan: 0 + brightWhite: 54 diff --git a/themes/hyrule.yaml b/themes/hyrule.yaml new file mode 100644 index 00000000..1c9d5a1b --- /dev/null +++ b/themes/hyrule.yaml @@ -0,0 +1,49 @@ +name: "hyrule" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2D2C2B" + fg: "#C0D5C1" + black: "#3A3937" + red: "#BA0E2E" + green: "#F5C504" + yellow: "#569E16" + blue: "#90C93F" + magenta: "#90C93F" + cyan: "#F5C504" + white: "#CFDFD0" + brightBlack: "#615F5D" + brightRed: "#F03E5F" + brightGreen: "#FCDE63" + brightYellow: "#88E337" + brightBlue: "#BEDF8F" + brightMagenta: "#BEDF8F" + brightCyan: "#FCDE63" + brightWhite: "#FDFEFD" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 73.4 + black: 0 + red: 17.2 + green: 70.8 + yellow: 37 + blue: 60.1 + magenta: 60.1 + cyan: 70.8 + white: 80.3 + brightBlack: 16 + brightRed: 33.5 + brightGreen: 83.2 + brightYellow: 71.8 + brightBlue: 76.2 + brightMagenta: 76.2 + brightCyan: 83.2 + brightWhite: 102.8 diff --git a/themes/i-don-t-know.yaml b/themes/i-don-t-know.yaml new file mode 100644 index 00000000..f520dc25 --- /dev/null +++ b/themes/i-don-t-know.yaml @@ -0,0 +1,49 @@ +name: "I don't know" +source: + marketplace_id: "Pixl02.i-dont-know" + version: "1.0.2" + installs: 114 + author: "Pixl02" + repo: "https://github.com/farhankhalid-dev/idk-VsCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Pixl02.i-dont-know" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C9C9C9" + brightBlack: "#4F4F4F" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 73.9 + brightBlack: 13.8 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/i-solarised-color-theme.yaml b/themes/i-solarised-color-theme.yaml new file mode 100644 index 00000000..39f137b9 --- /dev/null +++ b/themes/i-solarised-color-theme.yaml @@ -0,0 +1,49 @@ +name: "i-solarised-color-theme" +source: + marketplace_id: "ctrlplusb.i-minimal-theme" + version: "1.1.5" + installs: 10232 + author: "ctrlplusb" + repo: "https://github.com/ctrlplusb/i-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ctrlplusb.i-minimal-theme" +colors: + bg: "#FDF6E3" + fg: "#000000" + black: "#000000" + red: "#FF0032" + green: "#00FF68" + yellow: "#FFCA00" + blue: "#004BFF" + magenta: "#7D46FC" + cyan: "#00D2FF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0032" + brightGreen: "#00FF68" + brightYellow: "#FFCA00" + brightBlue: "#004BFF" + brightMagenta: "#7D46FC" + brightCyan: "#00D2FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 100.8 + black: 100.8 + red: 58.7 + green: 11.3 + yellow: 19.1 + blue: 73.6 + magenta: 68.8 + cyan: 27.4 + white: 0 + brightBlack: 100.8 + brightRed: 58.7 + brightGreen: 11.3 + brightYellow: 19.1 + brightBlue: 73.6 + brightMagenta: 68.8 + brightCyan: 27.4 + brightWhite: 0 diff --git a/themes/i3-aurora-x-custom-ii.yaml b/themes/i3-aurora-x-custom-ii.yaml new file mode 100644 index 00000000..0325d753 --- /dev/null +++ b/themes/i3-aurora-x-custom-ii.yaml @@ -0,0 +1,49 @@ +name: "i3 - Aurora X - Custom II" +source: + marketplace_id: "i3acksp4ce.tokyo-night-default-dark" + version: "0.6.62" + installs: 6247 + author: "i3acksp4ce" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" +colors: + bg: "#18191B" + fg: "#F3F3F4" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 98.8 + black: 12.3 + red: 51.9 + green: 51.4 + yellow: 51.5 + blue: 51.5 + magenta: 51.5 + cyan: 60.7 + white: 63.3 + brightBlack: 28.5 + brightRed: 64.1 + brightGreen: 64.7 + brightYellow: 64 + brightBlue: 64 + brightMagenta: 63.9 + brightCyan: 69.2 + brightWhite: 106.7 diff --git a/themes/i3-aurora-x-custom-iii.yaml b/themes/i3-aurora-x-custom-iii.yaml new file mode 100644 index 00000000..ea36eca0 --- /dev/null +++ b/themes/i3-aurora-x-custom-iii.yaml @@ -0,0 +1,49 @@ +name: "i3 - Aurora X - Custom III" +source: + marketplace_id: "i3acksp4ce.tokyo-night-default-dark" + version: "0.6.62" + installs: 6247 + author: "i3acksp4ce" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" +colors: + bg: "#011627" + fg: "#F1F2F3" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 244 + contrast: + fg: 98.3 + black: 12.6 + red: 52.2 + green: 51.7 + yellow: 51.8 + blue: 51.8 + magenta: 51.8 + cyan: 61 + white: 63.6 + brightBlack: 28.8 + brightRed: 64.4 + brightGreen: 65 + brightYellow: 64.3 + brightBlue: 64.3 + brightMagenta: 64.2 + brightCyan: 69.5 + brightWhite: 107 diff --git a/themes/i3-aurora-x-custom.yaml b/themes/i3-aurora-x-custom.yaml new file mode 100644 index 00000000..460ef997 --- /dev/null +++ b/themes/i3-aurora-x-custom.yaml @@ -0,0 +1,49 @@ +name: "i3 - Aurora X - Custom" +source: + marketplace_id: "i3acksp4ce.tokyo-night-default-dark" + version: "0.6.62" + installs: 6247 + author: "i3acksp4ce" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" +colors: + bg: "#141C24" + fg: "#F0F4F7" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 249 + contrast: + fg: 98.7 + black: 12.1 + red: 51.6 + green: 51.1 + yellow: 51.2 + blue: 51.2 + magenta: 51.2 + cyan: 60.4 + white: 63 + brightBlack: 28.3 + brightRed: 63.8 + brightGreen: 64.5 + brightYellow: 63.7 + brightBlue: 63.7 + brightMagenta: 63.6 + brightCyan: 68.9 + brightWhite: 106.4 diff --git a/themes/ian.yaml b/themes/ian.yaml new file mode 100644 index 00000000..90083ae7 --- /dev/null +++ b/themes/ian.yaml @@ -0,0 +1,49 @@ +name: "ian" +source: + marketplace_id: "iansergio.Dark-theme-ian" + version: "0.0.1" + installs: 75 + author: "Ian Sergio H." + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=iansergio.Dark-theme-ian" +colors: + bg: "#1E1E1E" + fg: "#E1E1E1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EEEEEE" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 86.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 94.9 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 106 diff --git a/themes/ibm-carbon-gray-10-alternative-code-highlighting.yaml b/themes/ibm-carbon-gray-10-alternative-code-highlighting.yaml new file mode 100644 index 00000000..36937361 --- /dev/null +++ b/themes/ibm-carbon-gray-10-alternative-code-highlighting.yaml @@ -0,0 +1,49 @@ +name: "IBM Carbon Gray 10 (alternative code highlighting)" +source: + marketplace_id: "achkasov.ibm-carbon-design-system-theme" + version: "1.1.0" + installs: 675 + author: "achkasov" + repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" +colors: + bg: "#F4F4F4" + fg: "#161616" + black: "#525252" + red: "#DA1E28" + green: "#24A148" + yellow: "#FF832B" + blue: "#4589FF" + magenta: "#A56EFF" + cyan: "#009D9A" + white: "#FFFFFF" + brightBlack: "#525252" + brightRed: "#F14C4C" + brightGreen: "#A7F0BA" + brightYellow: "#F1C21B" + brightBlue: "#D0E2FF" + brightMagenta: "#E8DAFF" + brightCyan: "#9EF0F0" + brightWhite: "#F4F4F4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.3 + black: 80.6 + red: 65.9 + green: 53.9 + yellow: 41.2 + blue: 53.9 + magenta: 54 + cyan: 53.6 + white: 0 + brightBlack: 80.6 + brightRed: 55.6 + brightGreen: 9.5 + brightYellow: 23.1 + brightBlue: 8.9 + brightMagenta: 9.3 + brightCyan: 8.1 + brightWhite: 0 diff --git a/themes/ibm-carbon-gray-100-alternative-code-highlighting.yaml b/themes/ibm-carbon-gray-100-alternative-code-highlighting.yaml new file mode 100644 index 00000000..292ad97a --- /dev/null +++ b/themes/ibm-carbon-gray-100-alternative-code-highlighting.yaml @@ -0,0 +1,49 @@ +name: "IBM Carbon Gray 100 (alternative code highlighting)" +source: + marketplace_id: "achkasov.ibm-carbon-design-system-theme" + version: "1.1.0" + installs: 675 + author: "achkasov" + repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" +colors: + bg: "#161616" + fg: "#F4F4F4" + black: "#262626" + red: "#DA1E28" + green: "#24A148" + yellow: "#FF832B" + blue: "#4589FF" + magenta: "#A56EFF" + cyan: "#009D9A" + white: "#C6C6C6" + brightBlack: "#525252" + brightRed: "#F14C4C" + brightGreen: "#A7F0BA" + brightYellow: "#F1C21B" + brightBlue: "#D0E2FF" + brightMagenta: "#E8DAFF" + brightCyan: "#9EF0F0" + brightWhite: "#F4F4F4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 99.7 + black: 0 + red: 28.3 + green: 40.3 + yellow: 53.3 + blue: 40.3 + magenta: 40.3 + cyan: 40.6 + white: 71.2 + brightBlack: 14 + brightRed: 38.7 + brightGreen: 86.7 + brightYellow: 72.3 + brightBlue: 87.4 + brightMagenta: 87 + brightCyan: 88.2 + brightWhite: 99.7 diff --git a/themes/ibm-carbon-gray-90-alternative-code-highlighting.yaml b/themes/ibm-carbon-gray-90-alternative-code-highlighting.yaml new file mode 100644 index 00000000..6b27b781 --- /dev/null +++ b/themes/ibm-carbon-gray-90-alternative-code-highlighting.yaml @@ -0,0 +1,49 @@ +name: "IBM Carbon Gray 90 (alternative code highlighting)" +source: + marketplace_id: "achkasov.ibm-carbon-design-system-theme" + version: "1.1.0" + installs: 675 + author: "achkasov" + repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" +colors: + bg: "#262626" + fg: "#F4F4F4" + black: "#262626" + red: "#DA1E28" + green: "#24A148" + yellow: "#FF832B" + blue: "#4589FF" + magenta: "#A56EFF" + cyan: "#009D9A" + white: "#C6C6C6" + brightBlack: "#525252" + brightRed: "#F14C4C" + brightGreen: "#A7F0BA" + brightYellow: "#F1C21B" + brightBlue: "#D0E2FF" + brightMagenta: "#E8DAFF" + brightCyan: "#9EF0F0" + brightWhite: "#F4F4F4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 97.6 + black: 0 + red: 26.1 + green: 38.2 + yellow: 51.1 + blue: 38.1 + magenta: 38.1 + cyan: 38.4 + white: 69 + brightBlack: 11.9 + brightRed: 36.5 + brightGreen: 84.5 + brightYellow: 70.1 + brightBlue: 85.2 + brightMagenta: 84.8 + brightCyan: 86 + brightWhite: 97.6 diff --git a/themes/ibm-carbon-white-alternative-code-highlighting.yaml b/themes/ibm-carbon-white-alternative-code-highlighting.yaml new file mode 100644 index 00000000..95d05562 --- /dev/null +++ b/themes/ibm-carbon-white-alternative-code-highlighting.yaml @@ -0,0 +1,49 @@ +name: "IBM Carbon White (alternative code highlighting)" +source: + marketplace_id: "achkasov.ibm-carbon-design-system-theme" + version: "1.1.0" + installs: 675 + author: "achkasov" + repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" +colors: + bg: "#FFFFFF" + fg: "#161616" + black: "#525252" + red: "#DA1E28" + green: "#24A148" + yellow: "#FF832B" + blue: "#4589FF" + magenta: "#A56EFF" + cyan: "#009D9A" + white: "#F4F4F4" + brightBlack: "#525252" + brightRed: "#F14C4C" + brightGreen: "#A7F0BA" + brightYellow: "#F1C21B" + brightBlue: "#D0E2FF" + brightMagenta: "#E8DAFF" + brightCyan: "#9EF0F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 104.8 + black: 87.2 + red: 72.5 + green: 60.5 + yellow: 47.8 + blue: 60.5 + magenta: 60.5 + cyan: 60.2 + white: 0 + brightBlack: 87.2 + brightRed: 62.1 + brightGreen: 16.1 + brightYellow: 29.6 + brightBlue: 15.4 + brightMagenta: 15.8 + brightCyan: 14.7 + brightWhite: 0 diff --git a/themes/icaria.yaml b/themes/icaria.yaml new file mode 100644 index 00000000..bdd98d57 --- /dev/null +++ b/themes/icaria.yaml @@ -0,0 +1,49 @@ +name: "Icaria" +source: + marketplace_id: "TheIcariaWorld.icaro" + version: "0.0.1" + installs: 211 + author: "icaro" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TheIcariaWorld.icaro" +colors: + bg: "#0F131F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + contrast: + fg: 107.2 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30.1 + cyan: 47.9 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.9 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/icattheme.yaml b/themes/icattheme.yaml new file mode 100644 index 00000000..d2b109f3 --- /dev/null +++ b/themes/icattheme.yaml @@ -0,0 +1,49 @@ +name: "icatTheme" +source: + marketplace_id: "ahmeticat.icat-dark-theme" + version: "0.0.11" + installs: 5290 + author: "ahmeticat" + repo: "https://github.com/ahmeticat/Icat-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ahmeticat.icat-dark-theme" +colors: + bg: "#222828" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 99.7 + black: 0 + red: 22.4 + green: 50.8 + yellow: 55.4 + blue: 32.4 + magenta: 30 + cyan: 48.2 + white: 86.3 + brightBlack: 19.8 + brightRed: 35.1 + brightGreen: 74.8 + brightYellow: 81.7 + brightBlue: 47.6 + brightMagenta: 44.3 + brightCyan: 71.2 + brightWhite: 99.7 diff --git a/themes/icc-light-theme.yaml b/themes/icc-light-theme.yaml new file mode 100644 index 00000000..7d7aa909 --- /dev/null +++ b/themes/icc-light-theme.yaml @@ -0,0 +1,49 @@ +name: "ICC Light Theme" +source: + marketplace_id: "icatalina.vscode-icc-theme" + version: "1.1.1" + installs: 705 + author: "icatalina" + repo: "https://github.com/icatalina/vscode-icc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=icatalina.vscode-icc-theme" +colors: + bg: "#F9F9FB" + fg: "#1A1A1A" + black: "#1A1A1A" + red: "#C91B00" + green: "#00A200" + yellow: "#F97D00" + blue: "#0361D3" + magenta: "#B21CAA" + cyan: "#00C5C7" + white: "#C7C7C7" + brightBlack: "#1A1A1A" + brightRed: "#C91B00" + brightGreen: "#00A200" + brightYellow: "#F97D00" + brightBlue: "#0361D3" + brightMagenta: "#B21CAA" + brightCyan: "#00C5C7" + brightWhite: "#C7C7C7" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 100.8 + black: 100.8 + red: 73.2 + green: 57.2 + yellow: 47.2 + blue: 74.4 + magenta: 73.7 + cyan: 37.8 + white: 26.6 + brightBlack: 100.8 + brightRed: 73.2 + brightGreen: 57.2 + brightYellow: 47.2 + brightBlue: 74.4 + brightMagenta: 73.7 + brightCyan: 37.8 + brightWhite: 26.6 diff --git a/themes/ice-cube-dark.yaml b/themes/ice-cube-dark.yaml new file mode 100644 index 00000000..c7a1c54a --- /dev/null +++ b/themes/ice-cube-dark.yaml @@ -0,0 +1,49 @@ +name: "ICE CUBE dark" +source: + marketplace_id: "ncfrak.ice-cube" + version: "1.0.3" + installs: 412 + author: "ncfrak" + repo: "https://github.com/ncfrak/ice-cube" + url: "https://marketplace.visualstudio.com/items?itemName=ncfrak.ice-cube" +colors: + bg: "#1C2A3B" + fg: "#CCCAC2" + black: "#171B24" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#02CE9E" + brightBlue: "#73D0FF" + brightMagenta: "#00FFD0" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 254 + contrast: + fg: 70.7 + black: 0 + red: 47.7 + green: 68.1 + yellow: 75.9 + blue: 65.3 + magenta: 68.9 + cyan: 75.2 + white: 69 + brightBlack: 20.2 + brightRed: 50.2 + brightGreen: 94.5 + brightYellow: 59.8 + brightBlue: 68.2 + brightMagenta: 86.3 + brightCyan: 78.2 + brightWhite: 104.2 diff --git a/themes/ice-cube-light.yaml b/themes/ice-cube-light.yaml new file mode 100644 index 00000000..b215f69d --- /dev/null +++ b/themes/ice-cube-light.yaml @@ -0,0 +1,49 @@ +name: "ICE CUBE light" +source: + marketplace_id: "ncfrak.ice-cube" + version: "1.0.3" + installs: 412 + author: "ncfrak" + repo: "https://github.com/ncfrak/ice-cube" + url: "https://marketplace.visualstudio.com/items?itemName=ncfrak.ice-cube" +colors: + bg: "#FFFEF9" + fg: "#5C6166" + black: "#000000" + red: "#FF1414" + green: "#4FBF43" + yellow: "#FFA012" + blue: "#0095FF" + magenta: "#9E75C7" + cyan: "#46BA94" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#02CE9E" + brightYellow: "#ECC846" + brightBlue: "#0B00E0" + brightMagenta: "#FF33DA" + brightCyan: "#18E8D5" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 80.5 + black: 105.4 + red: 63.2 + green: 45.6 + yellow: 38.6 + blue: 56.7 + magenta: 62.8 + cyan: 46.5 + white: 29.4 + brightBlack: 77.2 + brightRed: 53.7 + brightGreen: 38.2 + brightYellow: 27.1 + brightBlue: 89.2 + brightMagenta: 55.7 + brightCyan: 24 + brightWhite: 23.8 diff --git a/themes/ice.yaml b/themes/ice.yaml new file mode 100644 index 00000000..952427ae --- /dev/null +++ b/themes/ice.yaml @@ -0,0 +1,49 @@ +name: "Ice" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 80 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" +colors: + bg: "#E6F0F6" + fg: "#1C2C3A" + black: "#1C2C3A" + red: "#D95555" + green: "#57A773" + yellow: "#D8A657" + blue: "#5A90CC" + magenta: "#C18BD4" + cyan: "#368A9E" + white: "#E6F0F6" + brightBlack: "#8398AA" + brightRed: "#F17F7F" + brightGreen: "#72C48A" + brightYellow: "#F7C86A" + brightBlue: "#7CB2F0" + brightMagenta: "#D9A6E7" + brightCyan: "#66BCCF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: 234 + contrast: + fg: 91.1 + black: 91.1 + red: 55.8 + green: 45.6 + yellow: 33.5 + blue: 50.7 + magenta: 41.7 + cyan: 56.9 + white: 0 + brightBlack: 46.6 + brightRed: 40.5 + brightGreen: 31.2 + brightYellow: 15.8 + brightBlue: 33.6 + brightMagenta: 28.5 + brightCyan: 32.7 + brightWhite: 8.7 diff --git a/themes/iceberg-contrast.yaml b/themes/iceberg-contrast.yaml new file mode 100644 index 00000000..a199c7e0 --- /dev/null +++ b/themes/iceberg-contrast.yaml @@ -0,0 +1,49 @@ +name: "iceberg-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0B0E0E" + fg: "#BDD6DB" + black: "#161C1C" + red: "#BA0E2E" + green: "#59C0E3" + yellow: "#2D8DA1" + blue: "#FFFFFF" + magenta: "#B1E2F2" + cyan: "#FFFFFF" + white: "#CEE0E4" + brightBlack: "#384747" + brightRed: "#F03E5F" + brightGreen: "#B0E1F2" + brightYellow: "#61BFD3" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.6 + black: 0 + red: 21.2 + green: 61.5 + yellow: 35.6 + blue: 107.6 + magenta: 84 + cyan: 107.6 + white: 85.5 + brightBlack: 9.6 + brightRed: 37.5 + brightGreen: 83.4 + brightYellow: 60.6 + brightBlue: 107.6 + brightMagenta: 107.6 + brightCyan: 107.6 + brightWhite: 107.6 diff --git a/themes/iceberg-light.yaml b/themes/iceberg-light.yaml new file mode 100644 index 00000000..ae402ae8 --- /dev/null +++ b/themes/iceberg-light.yaml @@ -0,0 +1,49 @@ +name: "Iceberg Light" +source: + marketplace_id: "cocopon.iceberg-theme" + version: "2.0.6" + installs: 60257 + author: "cocopon" + repo: "https://github.com/cocopon/vscode-iceberg-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cocopon.iceberg-theme" +colors: + bg: "#E8E9EC" + fg: "#33374C" + black: "#DCDFE7" + red: "#CC517A" + green: "#668E3D" + yellow: "#C57339" + blue: "#2D539E" + magenta: "#7759B4" + cyan: "#3F83A6" + white: "#33374C" + brightBlack: "#8389A3" + brightRed: "#CC3768" + brightGreen: "#598030" + brightYellow: "#B6662D" + brightBlue: "#22478E" + brightMagenta: "#6845AD" + brightCyan: "#327698" + brightWhite: "#262A3F" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 83.9 + black: 0 + red: 55.1 + green: 52.6 + yellow: 49.9 + blue: 72.3 + magenta: 63.8 + cyan: 55.7 + white: 83.9 + brightBlack: 49.1 + brightRed: 59.5 + brightGreen: 58.9 + brightYellow: 56.1 + brightBlue: 77 + brightMagenta: 70.5 + brightCyan: 61.5 + brightWhite: 87.8 diff --git a/themes/iceberg.yaml b/themes/iceberg.yaml new file mode 100644 index 00000000..f018ecb6 --- /dev/null +++ b/themes/iceberg.yaml @@ -0,0 +1,49 @@ +name: "Iceberg" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" +colors: + bg: "#161821" + fg: "#C6C8D0" + black: "#000000" + red: "#D47D7B" + green: "#34D399" + yellow: "#FCD34D" + blue: "#818CF8" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FCD34D" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: 275 + contrast: + fg: 72.2 + black: 0 + red: 44.3 + green: 65 + yellow: 81.2 + blue: 44.3 + magenta: 64.2 + cyan: 92.6 + white: 106.7 + brightBlack: 14.5 + brightRed: 47 + brightGreen: 66.1 + brightYellow: 81.2 + brightBlue: 38.6 + brightMagenta: 64.2 + brightCyan: 92.6 + brightWhite: 0 diff --git a/themes/icefall.yaml b/themes/icefall.yaml new file mode 100644 index 00000000..05e3c1ec --- /dev/null +++ b/themes/icefall.yaml @@ -0,0 +1,49 @@ +name: "Icefall" +source: + marketplace_id: "arzg.icefall" + version: "0.2.15" + installs: 434 + author: "arzg" + repo: "https://github.com/arzg/icefall" + url: "https://marketplace.visualstudio.com/items?itemName=arzg.icefall" +colors: + bg: "#1C1E29" + fg: "#C3C5CC" + black: "#3F455D" + red: "#E69688" + green: "#9DA471" + yellow: "#DF9D6F" + blue: "#81A1CA" + magenta: "#B1A5D9" + cyan: "#7BA7B2" + white: "#C3C5CC" + brightBlack: "#737B9E" + brightRed: "#E69688" + brightGreen: "#9DA471" + brightYellow: "#DF9D6F" + brightBlue: "#81A1CA" + brightMagenta: "#B1A5D9" + brightCyan: "#7BA7B2" + brightWhite: "#F6F8FF" +meta: + mode: "dark" + accent: "yellow" + hue: 277 + contrast: + fg: 69.7 + black: 8.6 + red: 54.7 + green: 48.7 + yellow: 55.3 + blue: 48.2 + magenta: 55.5 + cyan: 48.9 + white: 69.7 + brightBlack: 31.1 + brightRed: 54.7 + brightGreen: 48.7 + brightYellow: 55.3 + brightBlue: 48.2 + brightMagenta: 55.5 + brightCyan: 48.9 + brightWhite: 101.4 diff --git a/themes/iceland.yaml b/themes/iceland.yaml new file mode 100644 index 00000000..b3dc7172 --- /dev/null +++ b/themes/iceland.yaml @@ -0,0 +1,49 @@ +name: "Iceland" +source: + marketplace_id: "bcwsea.theme-iceland" + version: "0.0.1" + installs: 9 + author: "bcwsea" + repo: "https://github.com/bcwdev/theme-iceland" + url: "https://marketplace.visualstudio.com/items?itemName=bcwsea.theme-iceland" +colors: + bg: "#001420" + fg: "#A7A7A7" + black: "#4B4B4B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 235 + contrast: + fg: 53.9 + black: 11.6 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30.1 + cyan: 47.9 + white: 90.3 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/icolordarkblue.yaml b/themes/icolordarkblue.yaml new file mode 100644 index 00000000..3a3dc9df --- /dev/null +++ b/themes/icolordarkblue.yaml @@ -0,0 +1,49 @@ +name: "iColorDarkBlue" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#141414" + fg: "#69C0FF" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 63.5 + black: 0 + red: 24.9 + green: 53.3 + yellow: 57.9 + blue: 34.9 + magenta: 32.5 + cyan: 50.7 + white: 88.8 + brightBlack: 22.3 + brightRed: 37.6 + brightGreen: 77.3 + brightYellow: 84.2 + brightBlue: 50.1 + brightMagenta: 46.8 + brightCyan: 73.7 + brightWhite: 102.2 diff --git a/themes/icolordarkcyan.yaml b/themes/icolordarkcyan.yaml new file mode 100644 index 00000000..a469e859 --- /dev/null +++ b/themes/icolordarkcyan.yaml @@ -0,0 +1,49 @@ +name: "iColorDarkCyan" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#141414" + fg: "#5CDBD3" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 72.8 + black: 0 + red: 24.9 + green: 53.3 + yellow: 57.9 + blue: 34.9 + magenta: 32.5 + cyan: 50.7 + white: 88.8 + brightBlack: 22.3 + brightRed: 37.6 + brightGreen: 77.3 + brightYellow: 84.2 + brightBlue: 50.1 + brightMagenta: 46.8 + brightCyan: 73.7 + brightWhite: 102.2 diff --git a/themes/icolordarkgeekblue.yaml b/themes/icolordarkgeekblue.yaml new file mode 100644 index 00000000..35099238 --- /dev/null +++ b/themes/icolordarkgeekblue.yaml @@ -0,0 +1,49 @@ +name: "iColorDarkGeekBlue" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#141414" + fg: "#85A5FF" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 54.5 + black: 0 + red: 24.9 + green: 53.3 + yellow: 57.9 + blue: 34.9 + magenta: 32.5 + cyan: 50.7 + white: 88.8 + brightBlack: 22.3 + brightRed: 37.6 + brightGreen: 77.3 + brightYellow: 84.2 + brightBlue: 50.1 + brightMagenta: 46.8 + brightCyan: 73.7 + brightWhite: 102.2 diff --git a/themes/icolordarkgold.yaml b/themes/icolordarkgold.yaml new file mode 100644 index 00000000..4380f8a9 --- /dev/null +++ b/themes/icolordarkgold.yaml @@ -0,0 +1,49 @@ +name: "iColorDarkGold" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#141414" + fg: "#FFD666" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 83.7 + black: 0 + red: 24.9 + green: 53.3 + yellow: 57.9 + blue: 34.9 + magenta: 32.5 + cyan: 50.7 + white: 88.8 + brightBlack: 22.3 + brightRed: 37.6 + brightGreen: 77.3 + brightYellow: 84.2 + brightBlue: 50.1 + brightMagenta: 46.8 + brightCyan: 73.7 + brightWhite: 102.2 diff --git a/themes/icolordarkgreen.yaml b/themes/icolordarkgreen.yaml new file mode 100644 index 00000000..127c61c8 --- /dev/null +++ b/themes/icolordarkgreen.yaml @@ -0,0 +1,49 @@ +name: "iColorDarkGreen" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#141414" + fg: "#95DE64" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 74.4 + black: 0 + red: 24.9 + green: 53.3 + yellow: 57.9 + blue: 34.9 + magenta: 32.5 + cyan: 50.7 + white: 88.8 + brightBlack: 22.3 + brightRed: 37.6 + brightGreen: 77.3 + brightYellow: 84.2 + brightBlue: 50.1 + brightMagenta: 46.8 + brightCyan: 73.7 + brightWhite: 102.2 diff --git a/themes/icolordarklime.yaml b/themes/icolordarklime.yaml new file mode 100644 index 00000000..9056621e --- /dev/null +++ b/themes/icolordarklime.yaml @@ -0,0 +1,49 @@ +name: "iColorDarkLime" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#141414" + fg: "#D3F261" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 90.3 + black: 0 + red: 24.9 + green: 53.3 + yellow: 57.9 + blue: 34.9 + magenta: 32.5 + cyan: 50.7 + white: 88.8 + brightBlack: 22.3 + brightRed: 37.6 + brightGreen: 77.3 + brightYellow: 84.2 + brightBlue: 50.1 + brightMagenta: 46.8 + brightCyan: 73.7 + brightWhite: 102.2 diff --git a/themes/icolordarkmagenta.yaml b/themes/icolordarkmagenta.yaml new file mode 100644 index 00000000..d1931d44 --- /dev/null +++ b/themes/icolordarkmagenta.yaml @@ -0,0 +1,49 @@ +name: "iColorDarkMagenta" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#141414" + fg: "#FF85C0" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 57.7 + black: 0 + red: 24.9 + green: 53.3 + yellow: 57.9 + blue: 34.9 + magenta: 32.5 + cyan: 50.7 + white: 88.8 + brightBlack: 22.3 + brightRed: 37.6 + brightGreen: 77.3 + brightYellow: 84.2 + brightBlue: 50.1 + brightMagenta: 46.8 + brightCyan: 73.7 + brightWhite: 102.2 diff --git a/themes/icolordarkorgane.yaml b/themes/icolordarkorgane.yaml new file mode 100644 index 00000000..8ab89f23 --- /dev/null +++ b/themes/icolordarkorgane.yaml @@ -0,0 +1,49 @@ +name: "iColorDarkOrgane" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#141414" + fg: "#FFC069" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 74.8 + black: 0 + red: 24.9 + green: 53.3 + yellow: 57.9 + blue: 34.9 + magenta: 32.5 + cyan: 50.7 + white: 88.8 + brightBlack: 22.3 + brightRed: 37.6 + brightGreen: 77.3 + brightYellow: 84.2 + brightBlue: 50.1 + brightMagenta: 46.8 + brightCyan: 73.7 + brightWhite: 102.2 diff --git a/themes/icolordarkpurple.yaml b/themes/icolordarkpurple.yaml new file mode 100644 index 00000000..ca191370 --- /dev/null +++ b/themes/icolordarkpurple.yaml @@ -0,0 +1,49 @@ +name: "iColorDarkPurple" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#141414" + fg: "#B37FEB" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 45.4 + black: 0 + red: 24.9 + green: 53.3 + yellow: 57.9 + blue: 34.9 + magenta: 32.5 + cyan: 50.7 + white: 88.8 + brightBlack: 22.3 + brightRed: 37.6 + brightGreen: 77.3 + brightYellow: 84.2 + brightBlue: 50.1 + brightMagenta: 46.8 + brightCyan: 73.7 + brightWhite: 102.2 diff --git a/themes/icolordarkred.yaml b/themes/icolordarkred.yaml new file mode 100644 index 00000000..6b253b47 --- /dev/null +++ b/themes/icolordarkred.yaml @@ -0,0 +1,49 @@ +name: "iColorDarkRed" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#141414" + fg: "#FF7875" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 51.6 + black: 0 + red: 24.9 + green: 53.3 + yellow: 57.9 + blue: 34.9 + magenta: 32.5 + cyan: 50.7 + white: 88.8 + brightBlack: 22.3 + brightRed: 37.6 + brightGreen: 77.3 + brightYellow: 84.2 + brightBlue: 50.1 + brightMagenta: 46.8 + brightCyan: 73.7 + brightWhite: 102.2 diff --git a/themes/icolordarkvolcano.yaml b/themes/icolordarkvolcano.yaml new file mode 100644 index 00000000..a872d7ae --- /dev/null +++ b/themes/icolordarkvolcano.yaml @@ -0,0 +1,49 @@ +name: "iColorDarkVolcano" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#141414" + fg: "#FF9C6E" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 61.9 + black: 0 + red: 24.9 + green: 53.3 + yellow: 57.9 + blue: 34.9 + magenta: 32.5 + cyan: 50.7 + white: 88.8 + brightBlack: 22.3 + brightRed: 37.6 + brightGreen: 77.3 + brightYellow: 84.2 + brightBlue: 50.1 + brightMagenta: 46.8 + brightCyan: 73.7 + brightWhite: 102.2 diff --git a/themes/icolordarkyellow.yaml b/themes/icolordarkyellow.yaml new file mode 100644 index 00000000..3c8f6e6e --- /dev/null +++ b/themes/icolordarkyellow.yaml @@ -0,0 +1,49 @@ +name: "iColorDarkYellow" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#141414" + fg: "#FFF566" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 97.7 + black: 0 + red: 24.9 + green: 53.3 + yellow: 57.9 + blue: 34.9 + magenta: 32.5 + cyan: 50.7 + white: 88.8 + brightBlack: 22.3 + brightRed: 37.6 + brightGreen: 77.3 + brightYellow: 84.2 + brightBlue: 50.1 + brightMagenta: 46.8 + brightCyan: 73.7 + brightWhite: 102.2 diff --git a/themes/icolorlightblue.yaml b/themes/icolorlightblue.yaml new file mode 100644 index 00000000..cdf93905 --- /dev/null +++ b/themes/icolorlightblue.yaml @@ -0,0 +1,49 @@ +name: "iColorLightBlue" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#F5F5F5" + fg: "#69C0FF" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 32.2 + black: 92.7 + red: 70.2 + green: 42 + yellow: 37.5 + blue: 60.1 + magenta: 62.5 + cyan: 44.5 + white: 8.4 + brightBlack: 72.8 + brightRed: 57.4 + brightGreen: 19.1 + brightYellow: 12.6 + brightBlue: 45.1 + brightMagenta: 48.3 + brightCyan: 22.5 + brightWhite: 0 diff --git a/themes/icolorlightcyan.yaml b/themes/icolorlightcyan.yaml new file mode 100644 index 00000000..5e619af5 --- /dev/null +++ b/themes/icolorlightcyan.yaml @@ -0,0 +1,49 @@ +name: "iColorLightCyan" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#F5F5F5" + fg: "#5CDBD3" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 23.4 + black: 92.7 + red: 70.2 + green: 42 + yellow: 37.5 + blue: 60.1 + magenta: 62.5 + cyan: 44.5 + white: 8.4 + brightBlack: 72.8 + brightRed: 57.4 + brightGreen: 19.1 + brightYellow: 12.6 + brightBlue: 45.1 + brightMagenta: 48.3 + brightCyan: 22.5 + brightWhite: 0 diff --git a/themes/icolorlightgeekblue.yaml b/themes/icolorlightgeekblue.yaml new file mode 100644 index 00000000..bba812f9 --- /dev/null +++ b/themes/icolorlightgeekblue.yaml @@ -0,0 +1,49 @@ +name: "iColorLightGeekBlue" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#F5F5F5" + fg: "#85A5FF" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 40.8 + black: 92.7 + red: 70.2 + green: 42 + yellow: 37.5 + blue: 60.1 + magenta: 62.5 + cyan: 44.5 + white: 8.4 + brightBlack: 72.8 + brightRed: 57.4 + brightGreen: 19.1 + brightYellow: 12.6 + brightBlue: 45.1 + brightMagenta: 48.3 + brightCyan: 22.5 + brightWhite: 0 diff --git a/themes/icolorlightgold.yaml b/themes/icolorlightgold.yaml new file mode 100644 index 00000000..6c9c5a59 --- /dev/null +++ b/themes/icolorlightgold.yaml @@ -0,0 +1,49 @@ +name: "iColorLightGold" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#F5F5F5" + fg: "#FFD666" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 13 + black: 92.7 + red: 70.2 + green: 42 + yellow: 37.5 + blue: 60.1 + magenta: 62.5 + cyan: 44.5 + white: 8.4 + brightBlack: 72.8 + brightRed: 57.4 + brightGreen: 19.1 + brightYellow: 12.6 + brightBlue: 45.1 + brightMagenta: 48.3 + brightCyan: 22.5 + brightWhite: 0 diff --git a/themes/icolorlightgreen.yaml b/themes/icolorlightgreen.yaml new file mode 100644 index 00000000..685d0fba --- /dev/null +++ b/themes/icolorlightgreen.yaml @@ -0,0 +1,49 @@ +name: "iColorLightGreen" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#F5F5F5" + fg: "#95DE64" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 21.8 + black: 92.7 + red: 70.2 + green: 42 + yellow: 37.5 + blue: 60.1 + magenta: 62.5 + cyan: 44.5 + white: 8.4 + brightBlack: 72.8 + brightRed: 57.4 + brightGreen: 19.1 + brightYellow: 12.6 + brightBlue: 45.1 + brightMagenta: 48.3 + brightCyan: 22.5 + brightWhite: 0 diff --git a/themes/icolorlightlime.yaml b/themes/icolorlightlime.yaml new file mode 100644 index 00000000..8eefc4fa --- /dev/null +++ b/themes/icolorlightlime.yaml @@ -0,0 +1,49 @@ +name: "iColorLightLime" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#F5F5F5" + fg: "#D3F261" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 0 + black: 92.7 + red: 70.2 + green: 42 + yellow: 37.5 + blue: 60.1 + magenta: 62.5 + cyan: 44.5 + white: 8.4 + brightBlack: 72.8 + brightRed: 57.4 + brightGreen: 19.1 + brightYellow: 12.6 + brightBlue: 45.1 + brightMagenta: 48.3 + brightCyan: 22.5 + brightWhite: 0 diff --git a/themes/icolorlightmagenta.yaml b/themes/icolorlightmagenta.yaml new file mode 100644 index 00000000..f8abb9a4 --- /dev/null +++ b/themes/icolorlightmagenta.yaml @@ -0,0 +1,49 @@ +name: "iColorLightMagenta" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#F5F5F5" + fg: "#FF85C0" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 37.8 + black: 92.7 + red: 70.2 + green: 42 + yellow: 37.5 + blue: 60.1 + magenta: 62.5 + cyan: 44.5 + white: 8.4 + brightBlack: 72.8 + brightRed: 57.4 + brightGreen: 19.1 + brightYellow: 12.6 + brightBlue: 45.1 + brightMagenta: 48.3 + brightCyan: 22.5 + brightWhite: 0 diff --git a/themes/icolorlightorgane.yaml b/themes/icolorlightorgane.yaml new file mode 100644 index 00000000..9ea51c10 --- /dev/null +++ b/themes/icolorlightorgane.yaml @@ -0,0 +1,49 @@ +name: "iColorLightOrgane" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#F5F5F5" + fg: "#FFC069" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 21.5 + black: 92.7 + red: 70.2 + green: 42 + yellow: 37.5 + blue: 60.1 + magenta: 62.5 + cyan: 44.5 + white: 8.4 + brightBlack: 72.8 + brightRed: 57.4 + brightGreen: 19.1 + brightYellow: 12.6 + brightBlue: 45.1 + brightMagenta: 48.3 + brightCyan: 22.5 + brightWhite: 0 diff --git a/themes/icolorlightpurple.yaml b/themes/icolorlightpurple.yaml new file mode 100644 index 00000000..da7ee400 --- /dev/null +++ b/themes/icolorlightpurple.yaml @@ -0,0 +1,49 @@ +name: "iColorLightPurple" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#F5F5F5" + fg: "#B37FEB" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 49.6 + black: 92.7 + red: 70.2 + green: 42 + yellow: 37.5 + blue: 60.1 + magenta: 62.5 + cyan: 44.5 + white: 8.4 + brightBlack: 72.8 + brightRed: 57.4 + brightGreen: 19.1 + brightYellow: 12.6 + brightBlue: 45.1 + brightMagenta: 48.3 + brightCyan: 22.5 + brightWhite: 0 diff --git a/themes/icolorlightred.yaml b/themes/icolorlightred.yaml new file mode 100644 index 00000000..2dfa9b1a --- /dev/null +++ b/themes/icolorlightred.yaml @@ -0,0 +1,49 @@ +name: "iColorLightRed" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#F5F5F5" + fg: "#FF7875" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 43.6 + black: 92.7 + red: 70.2 + green: 42 + yellow: 37.5 + blue: 60.1 + magenta: 62.5 + cyan: 44.5 + white: 8.4 + brightBlack: 72.8 + brightRed: 57.4 + brightGreen: 19.1 + brightYellow: 12.6 + brightBlue: 45.1 + brightMagenta: 48.3 + brightCyan: 22.5 + brightWhite: 0 diff --git a/themes/icolorlightvolcano.yaml b/themes/icolorlightvolcano.yaml new file mode 100644 index 00000000..300ff657 --- /dev/null +++ b/themes/icolorlightvolcano.yaml @@ -0,0 +1,49 @@ +name: "iColorLightVolcano" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#F5F5F5" + fg: "#FF9C6E" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 33.7 + black: 92.7 + red: 70.2 + green: 42 + yellow: 37.5 + blue: 60.1 + magenta: 62.5 + cyan: 44.5 + white: 8.4 + brightBlack: 72.8 + brightRed: 57.4 + brightGreen: 19.1 + brightYellow: 12.6 + brightBlue: 45.1 + brightMagenta: 48.3 + brightCyan: 22.5 + brightWhite: 0 diff --git a/themes/icolorlightyellow.yaml b/themes/icolorlightyellow.yaml new file mode 100644 index 00000000..e097835f --- /dev/null +++ b/themes/icolorlightyellow.yaml @@ -0,0 +1,49 @@ +name: "iColorLightYellow" +source: + marketplace_id: "magnesium-007.i-colors" + version: "0.0.16" + installs: 156 + author: "magnesium" + repo: "https://github.com/yyong008/mg-iColors" + url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" +colors: + bg: "#F5F5F5" + fg: "#FFF566" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 0 + black: 92.7 + red: 70.2 + green: 42 + yellow: 37.5 + blue: 60.1 + magenta: 62.5 + cyan: 44.5 + white: 8.4 + brightBlack: 72.8 + brightRed: 57.4 + brightGreen: 19.1 + brightYellow: 12.6 + brightBlue: 45.1 + brightMagenta: 48.3 + brightCyan: 22.5 + brightWhite: 0 diff --git a/themes/idea-islands-dark.yaml b/themes/idea-islands-dark.yaml new file mode 100644 index 00000000..dfdfeee7 --- /dev/null +++ b/themes/idea-islands-dark.yaml @@ -0,0 +1,49 @@ +name: "idea islands dark ++" +source: + marketplace_id: "idea-islands-dark-plus.idea-islands-dark-plus" + version: "0.0.1" + installs: 210 + author: "idea-islands-dark-plus by ruiming qian" + repo: "https://github.com/yourusername/idea-islands-dark-plus" + url: "https://marketplace.visualstudio.com/items?itemName=idea-islands-dark-plus.idea-islands-dark-plus" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#F44747" + green: "#6A9955" + yellow: "#DCDCAA" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#4EC9B0" + white: "#CCCCCC" + brightBlack: "#666666" + brightRed: "#F44747" + brightGreen: "#6A9955" + brightYellow: "#DCDCAA" + brightBlue: "#569CD6" + brightMagenta: "#C586C0" + brightCyan: "#4EC9B0" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 37.6 + green: 39.2 + yellow: 81.7 + blue: 44.2 + magenta: 46.5 + cyan: 61.1 + white: 73.8 + brightBlack: 21.2 + brightRed: 37.6 + brightGreen: 39.2 + brightYellow: 81.7 + brightBlue: 44.2 + brightMagenta: 46.5 + brightCyan: 61.1 + brightWhite: 73.8 diff --git a/themes/iditarod.yaml b/themes/iditarod.yaml new file mode 100644 index 00000000..5e90fbee --- /dev/null +++ b/themes/iditarod.yaml @@ -0,0 +1,49 @@ +name: "Iditarod" +source: + marketplace_id: "ludaub.iditarod" + version: "1.4.0" + installs: 135 + author: "ludaub" + repo: "https://github.com/ludaub/iditarod" + url: "https://marketplace.visualstudio.com/items?itemName=ludaub.iditarod" +colors: + bg: "#212B31" + fg: "#CFD8DC" + black: "#303E45" + red: "#EF9A9A" + green: "#C5E1A5" + yellow: "#FFE082" + blue: "#90CAF9" + magenta: "#CE93D8" + cyan: "#80DEEA" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#EF9A9A" + brightGreen: "#C5E1A5" + brightYellow: "#FFE082" + brightBlue: "#90CAF9" + brightMagenta: "#CE93D8" + brightCyan: "#80CBC4" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "green" + hue: 235 + contrast: + fg: 78.2 + black: 0 + red: 56.4 + green: 79 + yellow: 85.6 + blue: 67.1 + magenta: 51.3 + cyan: 74.2 + white: 89.6 + brightBlack: 12.6 + brightRed: 56.4 + brightGreen: 79 + brightYellow: 85.6 + brightBlue: 67.1 + brightMagenta: 51.3 + brightCyan: 63.6 + brightWhite: 93.5 diff --git a/themes/idk.yaml b/themes/idk.yaml new file mode 100644 index 00000000..6f9c79e1 --- /dev/null +++ b/themes/idk.yaml @@ -0,0 +1,49 @@ +name: "idk" +source: + marketplace_id: "Kuuhaku.idkidkidk699669969" + version: "1.0.1" + installs: 117 + author: "Kuuhaku" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kuuhaku.idkidkidk699669969" +colors: + bg: "#09020A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 324 + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/idx-theme-dark.yaml b/themes/idx-theme-dark.yaml new file mode 100644 index 00000000..2b2633cc --- /dev/null +++ b/themes/idx-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Idx Theme Dark" +source: + marketplace_id: "PabitraBanerjee.idx-dark-theme" + version: "1.0.0" + installs: 6270 + author: "Pabitra Banerjee" + repo: "https://github.com/PB2204/IDX-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=PabitraBanerjee.idx-dark-theme" +colors: + bg: "#171F2B" + fg: "#D9DFE7" + black: "#5D6A7D" + red: "#F76769" + green: "#17B877" + yellow: "#FFA23E" + blue: "#708FFF" + magenta: "#A87FFB" + cyan: "#25A6E9" + white: "#A4AFBD" + brightBlack: "#8B98A9" + brightRed: "#FC8F8E" + brightGreen: "#66CE98" + brightYellow: "#FFC26E" + brightBlue: "#A2B6FF" + brightMagenta: "#C8AAFF" + brightCyan: "#71C2EE" + brightWhite: "#FAFBFE" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + contrast: + fg: 84.9 + black: 22.4 + red: 44.5 + green: 50.2 + yellow: 62 + blue: 43.7 + magenta: 43.9 + cyan: 47.7 + white: 56.4 + brightBlack: 44.1 + brightRed: 56.8 + brightGreen: 63.6 + brightYellow: 74.4 + brightBlue: 62.6 + brightMagenta: 62.5 + brightCyan: 62.6 + brightWhite: 103.3 diff --git a/themes/idx-xcode-dark-improved.yaml b/themes/idx-xcode-dark-improved.yaml new file mode 100644 index 00000000..15b9993a --- /dev/null +++ b/themes/idx-xcode-dark-improved.yaml @@ -0,0 +1,49 @@ +name: "idx-xcode-dark-improved" +source: + marketplace_id: "CreevekCZ.idx-xcode" + version: "0.0.4" + installs: 951 + author: "Jan Kožnárek" + repo: "https://github.com/CreevekCZ/idx-xcode-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CreevekCZ.idx-xcode" +colors: + bg: "#171F2B" + fg: "#D9DFE7" + black: "#738295" + red: "#F76769" + green: "#17B877" + yellow: "#FFA23E" + blue: "#708FFF" + magenta: "#00BBFF" + cyan: "#25A6E9" + white: "#A4AFBD" + brightBlack: "#8B98A9" + brightRed: "#FC8F8E" + brightGreen: "#66CE98" + brightYellow: "#FFC26E" + brightBlue: "#A2B6FF" + brightMagenta: "#C8AAFF" + brightCyan: "#71C2EE" + brightWhite: "#FAFBFE" +meta: + mode: "dark" + accent: "orange" + hue: 258 + contrast: + fg: 84.9 + black: 33.1 + red: 44.5 + green: 50.2 + yellow: 62 + blue: 43.7 + magenta: 57.7 + cyan: 47.7 + white: 56.4 + brightBlack: 44.1 + brightRed: 56.8 + brightGreen: 63.6 + brightYellow: 74.4 + brightBlue: 62.6 + brightMagenta: 62.5 + brightCyan: 62.6 + brightWhite: 103.3 diff --git a/themes/igniter-theme-light.yaml b/themes/igniter-theme-light.yaml new file mode 100644 index 00000000..58f004ca --- /dev/null +++ b/themes/igniter-theme-light.yaml @@ -0,0 +1,49 @@ +name: "Igniter Theme (Light)" +source: + marketplace_id: "Igniter-js.igniter-theme" + version: "1.0.0" + installs: 34 + author: "Igniter.js" + repo: "https://github.com/felipebarcelospro/igniter-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Igniter-js.igniter-theme" +colors: + bg: "#F7F2EE" + fg: "#1B1515" + black: "#101010" + red: "#F5A191" + green: "#90B99F" + yellow: "#E6B99D" + blue: "#ACA1CF" + magenta: "#E29ECA" + cyan: "#EA83A5" + white: "#A0A0A0" + brightBlack: "#7E7E7E" + brightRed: "#FF8080" + brightGreen: "#99FFE4" + brightYellow: "#FFC799" + brightBlue: "#B9AEDA" + brightMagenta: "#ECAAD6" + brightCyan: "#F591B2" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.5 + black: 98.2 + red: 31.8 + green: 35.6 + yellow: 25.5 + blue: 40 + magenta: 33.8 + cyan: 42.1 + white: 43.8 + brightBlack: 60.6 + brightRed: 40 + brightGreen: 0 + brightYellow: 16.6 + brightBlue: 33.2 + brightMagenta: 27.7 + brightCyan: 35.6 + brightWhite: 0 diff --git a/themes/igniter-theme.yaml b/themes/igniter-theme.yaml new file mode 100644 index 00000000..9f3506de --- /dev/null +++ b/themes/igniter-theme.yaml @@ -0,0 +1,49 @@ +name: "Igniter Theme" +source: + marketplace_id: "Igniter-js.igniter-theme" + version: "1.0.0" + installs: 34 + author: "Igniter.js" + repo: "https://github.com/felipebarcelospro/igniter-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Igniter-js.igniter-theme" +colors: + bg: "#161111" + fg: "#EBE9E8" + black: "#101010" + red: "#F5A191" + green: "#90B99F" + yellow: "#E6B99D" + blue: "#ACA1CF" + magenta: "#E29ECA" + cyan: "#EA9483" + white: "#A0A0A0" + brightBlack: "#7E7E7E" + brightRed: "#FF8080" + brightGreen: "#99FFE4" + brightYellow: "#FFC799" + brightBlue: "#B9AEDA" + brightMagenta: "#ECAAAA" + brightCyan: "#FF9A6B" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 93.2 + black: 0 + red: 62.7 + green: 58.7 + yellow: 69.3 + blue: 54.2 + magenta: 60.6 + cyan: 56 + white: 50.3 + brightBlack: 33.2 + brightRed: 54.1 + brightGreen: 95.1 + brightYellow: 78.7 + brightBlue: 61.2 + brightMagenta: 65.1 + brightCyan: 61.3 + brightWhite: 107.3 diff --git a/themes/ikaros-white.yaml b/themes/ikaros-white.yaml new file mode 100644 index 00000000..89e747bb --- /dev/null +++ b/themes/ikaros-white.yaml @@ -0,0 +1,49 @@ +name: "IkarOS White" +source: + marketplace_id: "HantigoZore.amber-studio" + version: "1.2.0" + installs: 77 + author: "HantigoZore" + repo: "https://github.com/HantigoZore/AmberStudio" + url: "https://marketplace.visualstudio.com/items?itemName=HantigoZore.amber-studio" +colors: + bg: "#F8F5F3" + fg: "#1A1614" + black: "#E8E2DE" + red: "#C73300" + green: "#3A7A3A" + yellow: "#8A6800" + blue: "#1A4A7A" + magenta: "#7A3A58" + cyan: "#1A6A6A" + white: "#4A4440" + brightBlack: "#B0A8A3" + brightRed: "#E04500" + brightGreen: "#4E9E4E" + brightYellow: "#B08800" + brightBlue: "#2A6A9A" + brightMagenta: "#A05078" + brightCyan: "#2A8A8A" + brightWhite: "#1A1614" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99 + black: 8.4 + red: 69.6 + green: 70 + yellow: 69.7 + blue: 85 + magenta: 82.2 + cyan: 75.5 + white: 86.5 + brightBlack: 40.5 + brightRed: 61.8 + brightGreen: 54.7 + brightYellow: 54.4 + brightBlue: 73 + brightMagenta: 70.7 + brightCyan: 62.3 + brightWhite: 99 diff --git a/themes/ikaros.yaml b/themes/ikaros.yaml new file mode 100644 index 00000000..f6393ad9 --- /dev/null +++ b/themes/ikaros.yaml @@ -0,0 +1,49 @@ +name: "IkarOS" +source: + marketplace_id: "HantigoZore.amber-studio" + version: "1.2.0" + installs: 77 + author: "HantigoZore" + repo: "https://github.com/HantigoZore/AmberStudio" + url: "https://marketplace.visualstudio.com/items?itemName=HantigoZore.amber-studio" +colors: + bg: "#0D0D0B" + fg: "#E4DDD8" + black: "#3A3330" + red: "#D94F5A" + green: "#6AAA6A" + yellow: "#C8A050" + blue: "#5A8AB0" + magenta: "#A06888" + cyan: "#4A9898" + white: "#E4DDD8" + brightBlack: "#6E6662" + brightRed: "#FF4500" + brightGreen: "#8ACC8A" + brightYellow: "#E0C080" + brightBlue: "#80AAD0" + brightMagenta: "#C088A8" + brightCyan: "#6AC0C0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.5 + black: 0 + red: 34.8 + green: 48.2 + yellow: 53.8 + blue: 37.1 + magenta: 31.4 + cyan: 40.5 + white: 86.5 + brightBlack: 23.4 + brightRed: 41.1 + brightGreen: 66.3 + brightYellow: 70.7 + brightBlue: 53.6 + brightMagenta: 46.8 + brightCyan: 60.6 + brightWhite: 107.6 diff --git a/themes/ikki-vscode-dark-theme.yaml b/themes/ikki-vscode-dark-theme.yaml new file mode 100644 index 00000000..1af2ee24 --- /dev/null +++ b/themes/ikki-vscode-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "IKKI-VSCode-Dark-Theme" +source: + marketplace_id: "IKKI2000.ikki-vscode-dark-theme" + version: "1.88.1" + installs: 3764 + author: "IKKI" + repo: "https://github.com/IKKI2000/IKKI-VSCode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=IKKI2000.ikki-vscode-dark-theme" +colors: + bg: "#535353" + fg: "#D6D6D6" + black: "#E6E9ED" + red: "#DA4453" + green: "#37BC9B" + yellow: "#FF9800" + blue: "#4A89DC" + magenta: "#D770AD" + cyan: "#3BAFDA" + white: "#8CC152" + brightBlack: "#F5F7FA" + brightRed: "#ED5565" + brightGreen: "#48CFAD" + brightYellow: "#FFB74D" + brightBlue: "#5D9CEC" + brightMagenta: "#EC87C0" + brightCyan: "#4FC1E9" + brightWhite: "#A0D468" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65.3 + black: 77 + red: 17 + green: 39.2 + yellow: 44 + blue: 22.4 + magenta: 28 + cyan: 36.5 + white: 44.2 + brightBlack: 86.1 + brightRed: 24.3 + brightGreen: 49.1 + brightYellow: 55.2 + brightBlue: 31.4 + brightMagenta: 38.9 + brightCyan: 45.8 + brightWhite: 55 diff --git a/themes/ikki-vscode-light-theme.yaml b/themes/ikki-vscode-light-theme.yaml new file mode 100644 index 00000000..dc8cd26e --- /dev/null +++ b/themes/ikki-vscode-light-theme.yaml @@ -0,0 +1,49 @@ +name: "IKKI-VSCode-Light-Theme" +source: + marketplace_id: "IKKI2000.ikki-vscode-light-theme" + version: "1.88.1" + installs: 4732 + author: "IKKI" + repo: "https://github.com/IKKI2000/IKKI-VSCode-Light-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=IKKI2000.ikki-vscode-light-theme" +colors: + bg: "#FFFCF4" + fg: "#8D634A" + black: "#434A54" + red: "#DA4453" + green: "#37BC9B" + yellow: "#FF9800" + blue: "#4A89DC" + magenta: "#D770AD" + cyan: "#3BAFDA" + white: "#8CC152" + brightBlack: "#656D78" + brightRed: "#ED5565" + brightGreen: "#48CFAD" + brightYellow: "#FFB74D" + brightBlue: "#5D9CEC" + brightMagenta: "#EC87C0" + brightCyan: "#4FC1E9" + brightWhite: "#A0D468" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 74.1 + black: 88.8 + red: 66.5 + green: 44.7 + yellow: 40.1 + blue: 61.1 + magenta: 55.6 + cyan: 47.3 + white: 39.9 + brightBlack: 74.2 + brightRed: 59.3 + brightGreen: 35.2 + brightYellow: 29.4 + brightBlue: 52.3 + brightMagenta: 45 + brightCyan: 38.4 + brightWhite: 29.6 diff --git a/themes/ikshana.yaml b/themes/ikshana.yaml new file mode 100644 index 00000000..2c4c5ecb --- /dev/null +++ b/themes/ikshana.yaml @@ -0,0 +1,49 @@ +name: "Ikshana" +source: + marketplace_id: "imabhinavdev.ikshana" + version: "0.1.0" + installs: 118 + author: "imabhinav.dev" + repo: "https://github.com/imabhinavdev/ikshana-theme" + url: "https://marketplace.visualstudio.com/items?itemName=imabhinavdev.ikshana" +colors: + bg: "#1C3144" + fg: "#E8E8E8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 247 + contrast: + fg: 87.9 + black: 0 + red: 22.7 + green: 49 + yellow: 81.6 + blue: 23.4 + magenta: 25.8 + cyan: 43.6 + white: 86 + brightBlack: 18 + brightRed: 34.6 + brightGreen: 59.5 + brightYellow: 91.6 + brightBlue: 36 + brightMagenta: 41.4 + brightCyan: 51.4 + brightWhite: 86 diff --git a/themes/illumination-emerald.yaml b/themes/illumination-emerald.yaml new file mode 100644 index 00000000..c59961c3 --- /dev/null +++ b/themes/illumination-emerald.yaml @@ -0,0 +1,49 @@ +name: "Illumination-Emerald" +source: + marketplace_id: "FabiusAndriamaroson.illumination" + version: "0.2.7" + installs: 196 + author: "Fabius Andriamaroson" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=FabiusAndriamaroson.illumination" +colors: + bg: "#0A0E14" + fg: "#FFFFFF" + black: "#000000" + red: "#FF4D4D" + green: "#3AE374" + yellow: "#FFF200" + blue: "#17C0EB" + magenta: "#7D5FFF" + cyan: "#67E6DC" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF4D4D" + brightGreen: "#3AE374" + brightYellow: "#FFF200" + brightBlue: "#17C0EB" + brightMagenta: "#7D5FFF" + brightCyan: "#67E6DC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + contrast: + fg: 107.6 + black: 0 + red: 42.7 + green: 73 + yellow: 96.1 + blue: 60.3 + magenta: 32.6 + cyan: 79.4 + white: 107.6 + brightBlack: 0 + brightRed: 42.7 + brightGreen: 73 + brightYellow: 96.1 + brightBlue: 60.3 + brightMagenta: 32.6 + brightCyan: 79.4 + brightWhite: 107.6 diff --git a/themes/illusion-refined.yaml b/themes/illusion-refined.yaml new file mode 100644 index 00000000..96567444 --- /dev/null +++ b/themes/illusion-refined.yaml @@ -0,0 +1,49 @@ +name: "Illusion Refined" +source: + marketplace_id: "rodrigosuelli.illusion-refined" + version: "1.0.4" + installs: 1676 + author: "Rodrigo Suélli" + repo: "https://github.com/rodrigosuelli/illusion-refined" + url: "https://marketplace.visualstudio.com/items?itemName=rodrigosuelli.illusion-refined" +colors: + bg: "#1E1D22" + fg: "#FEFEFE" + black: "#1E1D22" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#5F5076" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 105.4 + black: 0 + red: 42.6 + green: 84.1 + yellow: 97.8 + blue: 52.9 + magenta: 53.8 + cyan: 83.2 + white: 101.2 + brightBlack: 15.1 + brightRed: 48.1 + brightGreen: 88.3 + brightYellow: 102.8 + brightBlue: 65.3 + brightMagenta: 61.8 + brightCyan: 96 + brightWhite: 106.1 diff --git a/themes/iloveagents-azure-ai-foundry-dark.yaml b/themes/iloveagents-azure-ai-foundry-dark.yaml new file mode 100644 index 00000000..f8bac52a --- /dev/null +++ b/themes/iloveagents-azure-ai-foundry-dark.yaml @@ -0,0 +1,49 @@ +name: "iLoveAgents - Azure AI Foundry (Dark)" +source: + marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" + version: "0.5.3" + installs: 160 + author: "iLoveAgents" + repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" + url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" +colors: + bg: "#101224" + fg: "#E8EDF2" + black: "#1C2028" + red: "#E84855" + green: "#0FA8A0" + yellow: "#C89C26" + blue: "#0078D4" + magenta: "#E3008C" + cyan: "#1AA4E8" + white: "#E4E7EB" + brightBlack: "#384155" + brightRed: "#FF6774" + brightGreen: "#11BEAE" + brightYellow: "#DEB33A" + brightBlue: "#1995F0" + brightMagenta: "#F03A95" + brightCyan: "#33B4F2" + brightWhite: "#F2F4F6" +meta: + mode: "dark" + accent: "red" + hue: 278 + contrast: + fg: 95 + black: 0 + red: 36.4 + green: 45.7 + yellow: 51.5 + blue: 30.3 + magenta: 32.3 + cyan: 47.9 + white: 91.4 + brightBlack: 8.1 + brightRed: 47.7 + brightGreen: 56 + brightYellow: 63.6 + brightBlue: 42.6 + brightMagenta: 38.3 + brightCyan: 55.5 + brightWhite: 99.7 diff --git a/themes/iloveagents-azure-ai-foundry-light.yaml b/themes/iloveagents-azure-ai-foundry-light.yaml new file mode 100644 index 00000000..3f163e52 --- /dev/null +++ b/themes/iloveagents-azure-ai-foundry-light.yaml @@ -0,0 +1,49 @@ +name: "iLoveAgents - Azure AI Foundry (Light)" +source: + marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" + version: "0.5.3" + installs: 160 + author: "iLoveAgents" + repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" + url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" +colors: + bg: "#FFFFFF" + fg: "#1E2530" + black: "#2F353A" + red: "#D92C3A" + green: "#079A93" + yellow: "#AE800F" + blue: "#0078D4" + magenta: "#D90082" + cyan: "#008FD8" + white: "#1E2530" + brightBlack: "#4B5563" + brightRed: "#EF4D55" + brightGreen: "#0BB2AA" + brightYellow: "#C59317" + brightBlue: "#0E8FE2" + brightMagenta: "#F03A95" + brightCyan: "#28A9E8" + brightWhite: "#374151" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 102.3 + black: 98.3 + red: 71.6 + green: 61.7 + yellow: 63 + blue: 70.7 + magenta: 71.4 + cyan: 62.4 + white: 102.3 + brightBlack: 86.3 + brightRed: 62.3 + brightGreen: 50.8 + brightYellow: 53.3 + brightBlue: 61.6 + brightMagenta: 62.7 + brightCyan: 51.1 + brightWhite: 93.9 diff --git a/themes/iloveagents-dark.yaml b/themes/iloveagents-dark.yaml new file mode 100644 index 00000000..74f67d98 --- /dev/null +++ b/themes/iloveagents-dark.yaml @@ -0,0 +1,49 @@ +name: "iLoveAgents Dark" +source: + marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" + version: "0.5.3" + installs: 160 + author: "iLoveAgents" + repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" + url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" +colors: + bg: "#14161A" + fg: "#E5E7EB" + black: "#1F2428" + red: "#F87171" + green: "#14B8A6" + yellow: "#FBBF24" + blue: "#60A5FA" + magenta: "#A78BFA" + cyan: "#22D3EE" + white: "#E5E7EB" + brightBlack: "#374151" + brightRed: "#FCA5A5" + brightGreen: "#2DD4BF" + brightYellow: "#FCD34D" + brightBlue: "#93C5FD" + brightMagenta: "#C4B5FD" + brightCyan: "#67E8F9" + brightWhite: "#F3F4F6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.3 + black: 0 + red: 48.2 + green: 52.8 + yellow: 72.8 + blue: 51.5 + magenta: 48.4 + cyan: 68.7 + white: 91.3 + brightBlack: 7.7 + brightRed: 65.6 + brightGreen: 67 + brightYellow: 81.5 + brightBlue: 68.3 + brightMagenta: 67 + brightCyan: 81.3 + brightWhite: 99.7 diff --git a/themes/iloveagents-light.yaml b/themes/iloveagents-light.yaml new file mode 100644 index 00000000..31ff1b54 --- /dev/null +++ b/themes/iloveagents-light.yaml @@ -0,0 +1,49 @@ +name: "iLoveAgents Light" +source: + marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" + version: "0.5.3" + installs: 160 + author: "iLoveAgents" + repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" + url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" +colors: + bg: "#FFFFFF" + fg: "#1F2937" + black: "#2F353A" + red: "#D92C3A" + green: "#0D766E" + yellow: "#B97300" + blue: "#2563EB" + magenta: "#8B5CF6" + cyan: "#0D6BB8" + white: "#1F2937" + brightBlack: "#4B5563" + brightRed: "#EF4D55" + brightGreen: "#109E90" + brightYellow: "#D48800" + brightBlue: "#1D4ED8" + brightMagenta: "#9E72FF" + brightCyan: "#1286D8" + brightWhite: "#374151" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.5 + black: 98.3 + red: 71.6 + green: 76.9 + yellow: 65.2 + blue: 74.9 + magenta: 68.7 + cyan: 76.9 + white: 101.5 + brightBlack: 86.3 + brightRed: 62.3 + brightGreen: 60.1 + brightYellow: 54.5 + brightBlue: 82.2 + brightMagenta: 60.4 + brightCyan: 65.6 + brightWhite: 93.9 diff --git a/themes/imba-dark.yaml b/themes/imba-dark.yaml new file mode 100644 index 00000000..4cf59619 --- /dev/null +++ b/themes/imba-dark.yaml @@ -0,0 +1,49 @@ +name: "Imba Dark" +source: + marketplace_id: "scrimba.vsimba" + version: "4.2.3" + installs: 5038 + author: "Scrimba" + repo: "https://github.com/imba/imba" + url: "https://marketplace.visualstudio.com/items?itemName=scrimba.vsimba" +colors: + bg: "#111316" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#6BBCFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#DBDFE7" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#CBF8AB" + brightYellow: "#FFE2AC" + brightBlue: "#6A9BFF" + brightMagenta: "#D88CE7" + brightCyan: "#70CCD8" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 59.8 + black: 0 + red: 42.4 + green: 62.6 + yellow: 70.9 + blue: 62 + magenta: 45.5 + cyan: 54.9 + white: 86.5 + brightBlack: 35.9 + brightRed: 38.8 + brightGreen: 94 + brightYellow: 90.7 + brightBlue: 48.9 + brightMagenta: 54.7 + brightCyan: 67.1 + brightWhite: 83.4 diff --git a/themes/imexoodeex.yaml b/themes/imexoodeex.yaml new file mode 100644 index 00000000..fbb78a0a --- /dev/null +++ b/themes/imexoodeex.yaml @@ -0,0 +1,49 @@ +name: "imexoodeex" +source: + marketplace_id: "imexoodeex.neonjet" + version: "1.1.0" + installs: 2730 + author: "imexoodeex" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=imexoodeex.neonjet" +colors: + bg: "#131315" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.8 + black: 0 + red: 27.1 + green: 53.3 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.4 diff --git a/themes/in-bed-by-7pm.yaml b/themes/in-bed-by-7pm.yaml new file mode 100644 index 00000000..f68cd367 --- /dev/null +++ b/themes/in-bed-by-7pm.yaml @@ -0,0 +1,49 @@ +name: "In Bed by 7pm" +source: + marketplace_id: "sdras.inbedby7pm" + version: "0.4.0" + installs: 47500 + author: "sarah.drasner" + repo: "https://github.com/sdras/inbedby7pm" + url: "https://marketplace.visualstudio.com/items?itemName=sdras.inbedby7pm" +colors: + bg: "#292C3D" + fg: "#EBECF1" + black: "#292C3D" + red: "#F88070" + green: "#A5FFBD" + yellow: "#F7E9B4" + blue: "#9DD2E8" + magenta: "#BE8FDA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#F88070" + brightGreen: "#A5FFBD" + brightYellow: "#FFEB95" + brightBlue: "#9DD2E8" + brightMagenta: "#BE8FDA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 277 + contrast: + fg: 91.1 + black: 0 + red: 48.5 + green: 90.6 + yellow: 89 + blue: 70.1 + magenta: 47.1 + cyan: 56.3 + white: 103.4 + brightBlack: 12.1 + brightRed: 48.5 + brightGreen: 90.6 + brightYellow: 90.3 + brightBlue: 70.1 + brightMagenta: 47.1 + brightCyan: 70.6 + brightWhite: 103.4 diff --git a/themes/in-darkest-night.yaml b/themes/in-darkest-night.yaml new file mode 100644 index 00000000..17f1f4fa --- /dev/null +++ b/themes/in-darkest-night.yaml @@ -0,0 +1,49 @@ +name: "In Darkest Night" +source: + marketplace_id: "jerky676.indarkestnight" + version: "1.1.0" + installs: 350 + author: "jerky676" + repo: "https://github.com/jerky676/InDarkestNight" + url: "https://marketplace.visualstudio.com/items?itemName=jerky676.indarkestnight" +colors: + bg: "#1E1E1E" + fg: "#074C2A" + black: "#333333" + red: "#B61D1D" + green: "#074C2A" + yellow: "#CCA300" + blue: "#0040FF" + magenta: "#CC00CC" + cyan: "#3A3C7F" + white: "#E6E6E6" + brightBlack: "#666666" + brightRed: "#FF3C3C" + brightGreen: "#0B7B44" + brightYellow: "#FFCC00" + brightBlue: "#3366FF" + brightMagenta: "#FF33FF" + brightCyan: "#4A4CA2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 7.6 + black: 0 + red: 19.2 + green: 7.6 + yellow: 53.5 + blue: 19.1 + magenta: 29.6 + cyan: 8 + white: 89.8 + brightBlack: 21.2 + brightRed: 38.7 + brightGreen: 23.8 + brightYellow: 77.8 + brightBlue: 28.1 + brightMagenta: 46.1 + brightCyan: 14.8 + brightWhite: 106 diff --git a/themes/in-his-earthy-elements.yaml b/themes/in-his-earthy-elements.yaml new file mode 100644 index 00000000..9efc184f --- /dev/null +++ b/themes/in-his-earthy-elements.yaml @@ -0,0 +1,49 @@ +name: "in his earthy elements" +source: + marketplace_id: "chiefyangga.in-his-earthy-elements" + version: "0.2.0" + installs: 429 + author: "chiefyangga" + repo: "https://github.com/chiefyangga/in-his-earthy-elements" + url: "https://marketplace.visualstudio.com/items?itemName=chiefyangga.in-his-earthy-elements" +colors: + bg: "#443C2F" + fg: "#B0A18B" + black: "#141417" + red: "#F66666" + green: "#9EF1BA" + yellow: "#F5D7A2" + blue: "#9EBDFA" + magenta: "#F79EE4" + cyan: "#97F6EE" + white: "#F8F0F0" + brightBlack: "#302F31" + brightRed: "#F83333" + brightGreen: "#37F576" + brightYellow: "#FFF942" + brightBlue: "#4A3DFF" + brightMagenta: "#FC4AC7" + brightCyan: "#20F6E4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 80 + contrast: + fg: 43.6 + black: 7.7 + red: 37.1 + green: 78.5 + yellow: 75.8 + blue: 57.8 + magenta: 57.3 + cyan: 82.6 + white: 90.3 + brightBlack: 0 + brightRed: 29.1 + brightGreen: 73.7 + brightYellow: 91.2 + brightBlue: 13.4 + brightMagenta: 37.2 + brightCyan: 77.5 + brightWhite: 99 diff --git a/themes/in-the-fog-dark.yaml b/themes/in-the-fog-dark.yaml new file mode 100644 index 00000000..9d5f8dea --- /dev/null +++ b/themes/in-the-fog-dark.yaml @@ -0,0 +1,49 @@ +name: "In The Fog Dark" +source: + marketplace_id: "ganevru.in-the-fog-theme" + version: "0.3.1" + installs: 3344 + author: "ganevru" + repo: "https://github.com/ganevru/in-the-fog-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ganevru.in-the-fog-theme" +colors: + bg: "#24292B" + fg: "#D4D4D4" + black: "#666666" + red: "#CD6564" + green: "#AEC199" + yellow: "#FFF099" + blue: "#6D9CBE" + magenta: "#B081B9" + cyan: "#80B5B3" + white: "#EFEFEF" + brightBlack: "#666666" + brightRed: "#CD6564" + brightGreen: "#AEC199" + brightYellow: "#FFF099" + brightBlue: "#6D9CBE" + brightMagenta: "#B081B9" + brightCyan: "#80B5B3" + brightWhite: "#EFEFEF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 77 + black: 19.6 + red: 33.9 + green: 62 + yellow: 93.6 + blue: 42.5 + magenta: 39.9 + cyan: 53.6 + white: 93.9 + brightBlack: 19.6 + brightRed: 33.9 + brightGreen: 62 + brightYellow: 93.6 + brightBlue: 42.5 + brightMagenta: 39.9 + brightCyan: 53.6 + brightWhite: 93.9 diff --git a/themes/index.json b/themes/index.json new file mode 100644 index 00000000..662f36e6 --- /dev/null +++ b/themes/index.json @@ -0,0 +1,6933 @@ +{ + "24": "24.yaml", + "1977": "1977.yaml", + "1989": "1989.yaml", + "2077": "2077.yaml", + "_common": "common.yaml", + "_ui": "ui.yaml", + ".Alpha": "alpha.yaml", + ".K Relaxed": "k-relaxed.yaml", + ".Theta": "theta.yaml", + "'80 Neon Vibes": "80-neon-vibes.yaml", + "'80 Neon Vibes - Fluor": "80-neon-vibes-fluor.yaml", + "'One Moon'": "one-moon.yaml", + "{Hello World!} Theme": "hello-world-theme.yaml", + "「愚純」dumDum_theme": "dumdum-theme.yaml", + "「雪」snowy&mint": "snowy-mint.yaml", + "#ROOT - Dark mode theme v0.1": "root-dark-mode-theme-v0-1.yaml", + "🏴 blackbird → dusk": "blackbird-dusk.yaml", + "🏴 blackbird → midnight": "blackbird-midnight.yaml", + "💎Fluorite theme": "fluorite-theme.yaml", + "💜Purple-theme💜": "purple-theme.yaml", + "🧊": ".yaml", + "🪽 archangel": "archangel.yaml", + "🪽 archangel → dusk": "archangel-dusk.yaml", + "07 Dark": "07-dark.yaml", + "07 Light": "07-light.yaml", + "0A515 Dark": "0a515-dark.yaml", + "0x96f Theme": "0x96f-theme.yaml", + "1️⃣": "1.yaml", + "10x Dark Theme": "10x-dark-theme.yaml", + "111-theme": "111-theme.yaml", + "19th Century": "19th-century.yaml", + "1Dark Poncho HC": "1dark-poncho-hc.yaml", + "1mm - Dracula": "1mm-dracula.yaml", + "2_colors": "2-colors.yaml", + "2am": "2am.yaml", + "365 Day october dark": "365-day-october-dark.yaml", + "365.6 coder theme": "365-6-coder-theme.yaml", + "3XAY": "3xay.yaml", + "4-Colours": "4-colours.yaml", + "404 Flat": "404-flat.yaml", + "42nd": "42nd.yaml", + "4am session (aqua)": "4am-session-aqua.yaml", + "4am session (blue)": "4am-session-blue.yaml", + "4am session (green)": "4am-session-green.yaml", + "4am session (orange)": "4am-session-orange.yaml", + "4am session (red)": "4am-session-red.yaml", + "4am session (yellow)": "4am-session-yellow.yaml", + "6szn": "6szn.yaml", + "7lou Theme": "7lou-theme.yaml", + "8-Bit Dark": "8-bit-dark.yaml", + "8-Bit Light": "8-bit-light.yaml", + "8-Bit Light High Contrast": "8-bit-light-high-contrast.yaml", + "8-bit-theme": "8-bit-theme.yaml", + "808s & Heartbreak Theme": "808s-heartbreak-theme.yaml", + "8V": "8v.yaml", + "8x8 - Darker": "8x8-darker.yaml", + "8x8_dark - Fork": "8x8-dark-fork.yaml", + "9 Way Ticket": "9-way-ticket.yaml", + "90s Digital Dawning": "90s-digital-dawning.yaml", + "A cup of coffee": "a-cup-of-coffee.yaml", + "A GitHub Dark 🧛 Vampire": "a-github-dark-vampire.yaml", + "A GitHub Dark 🩶 Muted": "a-github-dark-muted.yaml", + "A GitHub Dark Dimmed 🧛 Vampire": "a-github-dark-dimmed-vampire.yaml", + "A GitHub Dark Dimmed 🩶 Muted": "a-github-dark-dimmed-muted.yaml", + "A GitHub Dark Dimmed 🟤 Brown": "a-github-dark-dimmed-brown.yaml", + "A GitHub Dark Dimmed 1 🔴 Red": "a-github-dark-dimmed-1-red.yaml", + "A GitHub Dark Dimmed 2 🟠 Orange": "a-github-dark-dimmed-2-orange.yaml", + "A GitHub Dark Dimmed 3 🟢 Green": "a-github-dark-dimmed-3-green.yaml", + "A GitHub Dark Dimmed 4 🔵 Blue": "a-github-dark-dimmed-4-blue.yaml", + "A GitHub Dark Dimmed 5 🟣 Purple": "a-github-dark-dimmed-5-purple.yaml", + "A GitHub Dark High Contrast 1 🔴 Red": "a-github-dark-high-contrast-1-red.yaml", + "A GitHub Dark High Contrast 2 🟠 Orange": "a-github-dark-high-contrast-2-orange.yaml", + "A GitHub Dark High Contrast 3 🟢 Green": "a-github-dark-high-contrast-3-green.yaml", + "A GitHub Dark High Contrast 4 🔵 Blue": "a-github-dark-high-contrast-4-blue.yaml", + "A GitHub Dark High Contrast 5 🟣 Purple": "a-github-dark-high-contrast-5-purple.yaml", + "A GitHub Light 1 🔴 Red": "a-github-light-1-red.yaml", + "A GitHub Light 2 🟠 Orange": "a-github-light-2-orange.yaml", + "A GitHub Light 3 🟢 Green": "a-github-light-3-green.yaml", + "A GitHub Light 4 🔵 Blue": "a-github-light-4-blue.yaml", + "A GitHub Light 5 🟣 Purple": "a-github-light-5-purple.yaml", + "a_green_cat dimmed": "a-green-cat-dimmed.yaml", + "a_green_cat v2": "a-green-cat-v2.yaml", + "A.2 Theme": "a-2-theme.yaml", + "AAUU": "aauu.yaml", + "Ab-dark": "ab-dark.yaml", + "abcdef": "abcdef.yaml", + "Abe Land": "abe-land.yaml", + "Abissal": "abissal.yaml", + "ABOC": "aboc.yaml", + "ABOLKOG Dark": "abolkog-dark.yaml", + "ABOLKOG Light": "abolkog-light.yaml", + "Abraham": "abraham.yaml", + "absent": "absent.yaml", + "absent-contrast": "absent-contrast.yaml", + "absent-light": "absent-light.yaml", + "Abstract MH": "abstract-mh.yaml", + "Abyskai": "abyskai.yaml", + "Abyss": "abyss.yaml", + "Acario": "acario.yaml", + "AceKaizen Calmly Dark": "acekaizen-calmly-dark.yaml", + "AceQuartz": "acequartz.yaml", + "aclear-dark": "aclear-dark.yaml", + "Acme": "acme.yaml", + "Aconitum - Clean": "aconitum-clean.yaml", + "ACS - Cozy Dark": "acs-cozy-dark.yaml", + "Adapt Dark": "adapt-dark.yaml", + "ADark": "adark.yaml", + "Adech Theme Legacy": "adech-theme-legacy.yaml", + "Adech Theme Superior": "adech-theme-superior.yaml", + "Adeol": "adeol.yaml", + "Adey Coder": "adey-coder.yaml", + "Adey Coder - Deep dark": "adey-coder-deep-dark.yaml", + "Adonis": "adonis.yaml", + "Adrift": "adrift.yaml", + "AdvancedBat": "advancedbat.yaml", + "aelmouny11_theme": "aelmouny11-theme.yaml", + "Aeridia": "aeridia.yaml", + "Aesir Theme": "aesir-theme.yaml", + "Aesthetic": "aesthetic.yaml", + "Aesthetic Dark": "aesthetic-dark.yaml", + "aether": "aether.yaml", + "Aether Abyss": "aether-abyss.yaml", + "Aether Abyssal": "aether-abyssal.yaml", + "Aether Arctic": "aether-arctic.yaml", + "Aether Atlantis": "aether-atlantis.yaml", + "Aether Aurora": "aether-aurora.yaml", + "Aether Borealis": "aether-borealis.yaml", + "Aether Carbon": "aether-carbon.yaml", + "Aether Clarity": "aether-clarity.yaml", + "Aether Coffee": "aether-coffee.yaml", + "Aether Coffee Dark": "aether-coffee-dark.yaml", + "Aether Cosmos": "aether-cosmos.yaml", + "Aether Dark": "aether-dark.yaml", + "Aether Dark Space": "aether-dark-space.yaml", + "Aether Dawn": "aether-dawn.yaml", + "Aether Deep Ocean": "aether-deep-ocean.yaml", + "Aether Depths": "aether-depths.yaml", + "Aether Dusk": "aether-dusk.yaml", + "Aether Emerald": "aether-emerald.yaml", + "Aether Forest": "aether-forest.yaml", + "Aether Glass": "aether-glass.yaml", + "Aether Light": "aether-light.yaml", + "Aether Mariana": "aether-mariana.yaml", + "Aether Matrix": "aether-matrix.yaml", + "Aether Midnight": "aether-midnight.yaml", + "Aether Nautilus": "aether-nautilus.yaml", + "Aether Nebula": "aether-nebula.yaml", + "Aether Neon": "aether-neon.yaml", + "Aether Neptune": "aether-neptune.yaml", + "Aether Oceanic": "aether-oceanic.yaml", + "Aether Quantum": "aether-quantum.yaml", + "Aether Reef": "aether-reef.yaml", + "Aether Stellar": "aether-stellar.yaml", + "Aether Tempest": "aether-tempest.yaml", + "Aether Tidal": "aether-tidal.yaml", + "Aether Trench Contrast": "aether-trench-contrast.yaml", + "Aether Twilight": "aether-twilight.yaml", + "Aether Void": "aether-void.yaml", + "Aether Zen": "aether-zen.yaml", + "Aetherglow": "aetherglow.yaml", + "Afternoon Delight Subtle": "afternoon-delight-subtle.yaml", + "AfterPurple": "afterpurple.yaml", + "Agathist Dark": "agathist-dark.yaml", + "aGen Theme": "agen-theme.yaml", + "Ahoy theme": "ahoy-theme.yaml", + "ahroun": "ahroun.yaml", + "Aka Kuro Light": "aka-kuro-light.yaml", + "Akagami Dark": "akagami-dark.yaml", + "Akagami Light": "akagami-light.yaml", + "Akari Dawn": "akari-dawn.yaml", + "Akari Night": "akari-night.yaml", + "Akihabara": "akihabara.yaml", + "Ako Theme": "ako-theme.yaml", + "Aksin": "aksin.yaml", + "Akumanomi Theme": "akumanomi-theme.yaml", + "akurdor": "akurdor.yaml", + "Alabaster Dark": "alabaster-dark.yaml", + "Alchemist's Orchid Dark": "alchemist-s-orchid-dark.yaml", + "Alchemist's Orchid Light": "alchemist-s-orchid-light.yaml", + "Alchemist's Orchid Sepia": "alchemist-s-orchid-sepia.yaml", + "Alchemy Theme": "alchemy-theme.yaml", + "Aldrico's": "aldrico-s.yaml", + "Aldrico's Gruvbox": "aldrico-s-gruvbox.yaml", + "Alec Teal Theme": "alec-teal-theme.yaml", + "Alien Blood": "alien-blood.yaml", + "Alien Terminal Nostromo Amber": "alien-terminal-nostromo-amber.yaml", + "Alien Terminal Nostromo Green": "alien-terminal-nostromo-green.yaml", + "Alien Terminal Sevastopol Link": "alien-terminal-sevastopol-link.yaml", + "Alignment (italic)": "alignment-italic.yaml", + "Alignment darker (italic)": "alignment-darker-italic.yaml", + "alive-dark-theme": "alive-dark-theme.yaml", + "All Blue": "all-blue.yaml", + "all-black": "all-black.yaml", + "all-nighter Theme": "all-nighter-theme.yaml", + "alligator-light": "alligator-light.yaml", + "alligator-solarized-dark": "alligator-solarized-dark.yaml", + "alligator-solarized-light": "alligator-solarized-light.yaml", + "Allomancer": "allomancer.yaml", + "allure": "allure.yaml", + "allure-contrast": "allure-contrast.yaml", + "allure-light": "allure-light.yaml", + "Alma Sakura Theme": "alma-sakura-theme.yaml", + "Almond Cream": "almond-cream.yaml", + "Aloe": "aloe.yaml", + "alpine": "alpine.yaml", + "Alpine-Warm": "alpine-warm.yaml", + "Altearn": "altearn.yaml", + "Altered Matter Dopamin Owl": "altered-matter-dopamin-owl.yaml", + "alternight": "alternight.yaml", + "Altin's Love Symphony": "altin-s-love-symphony.yaml", + "Alucard Sotn": "alucard-sotn.yaml", + "ALX_THEME_CLASSIC": "alx-theme-classic.yaml", + "ALX_THEME_NORMAL": "alx-theme-normal.yaml", + "Amadeus Dark": "amadeus-dark.yaml", + "Amadeus Dark Cobalt": "amadeus-dark-cobalt.yaml", + "Amadeus Dark Pastel": "amadeus-dark-pastel.yaml", + "Amaranth Red & Eerie Black - Fork": "amaranth-red-eerie-black-fork.yaml", + "AmazonFrog": "amazonfrog.yaml", + "Ambar for VSCode": "ambar-for-vscode.yaml", + "Amber-Blue": "amber-blue.yaml", + "Amber-Blue-Light": "amber-blue-light.yaml", + "amber-color-theme": "amber-color-theme.yaml", + "Ambient": "ambient.yaml", + "Amethyst Dreams": "amethyst-dreams.yaml", + "Amethyst Kiss Dark(Amethyst Mode)": "amethyst-kiss-dark-amethyst-mode.yaml", + "Amethyst Kiss Light(Amethyst Mode)": "amethyst-kiss-light-amethyst-mode.yaml", + "Amethyst Theme": "amethyst-theme.yaml", + "Amoled Dark Theme": "amoled-dark-theme.yaml", + "amoledTest - Fork - Fork": "amoledtest-fork-fork.yaml", + "Amora": "amora.yaml", + "Amozonia": "amozonia.yaml", + "Amp Dark": "amp-dark.yaml", + "Amp Light": "amp-light.yaml", + "Anakmun": "anakmun.yaml", + "Analog Dream: Beige Terminal": "analog-dream-beige-terminal.yaml", + "Analog Dream: Magnetic Night": "analog-dream-magnetic-night.yaml", + "anasdev": "anasdev.yaml", + "Anastasia": "anastasia.yaml", + "Andromeda": "andromeda.yaml", + "Andromeda Light Italic Bordered": "andromeda-light-italic-bordered.yaml", + "Andromeda Zed": "andromeda-zed.yaml", + "Andromeda-Custom": "andromeda-custom.yaml", + "Anemones": "anemones.yaml", + "angelnature2": "angelnature2.yaml", + "Angrboda Dark": "angrboda-dark.yaml", + "Angrboda Light": "angrboda-light.yaml", + "Angular Dark Theme": "angular-dark-theme.yaml", + "Animatrix": "animatrix.yaml", + "animetheme": "animetheme.yaml", + "Anisochromatic": "anisochromatic.yaml", + "Ano Theme - Dark": "ano-theme-dark.yaml", + "AnOldHope": "anoldhope.yaml", + "anquyx - Fork": "anquyx-fork.yaml", + "Anthropic": "anthropic.yaml", + "Anthropic Dark": "anthropic-dark.yaml", + "Anthropic Light": "anthropic-light.yaml", + "anthropocene": "anthropocene.yaml", + "anti-glare-moonlit": "anti-glare-moonlit.yaml", + "anti-glare-nebula": "anti-glare-nebula.yaml", + "anti-glare-official": "anti-glare-official.yaml", + "Anti-Gravity Pink": "anti-gravity-pink.yaml", + "Antidote": "antidote.yaml", + "Antimaterial": "antimaterial.yaml", + "Anúbis": "an-bis.yaml", + "Anubis Dark": "anubis-dark.yaml", + "Anubis Dark Theme": "anubis-dark-theme.yaml", + "Anubis Light": "anubis-light.yaml", + "Anufemist Dark": "anufemist-dark.yaml", + "Anya": "anya.yaml", + "Apathy": "apathy.yaml", + "Apathy Experimental": "apathy-experimental.yaml", + "APcodespaces": "apcodespaces.yaml", + "Apex": "apex.yaml", + "Apollo Dark": "apollo-dark.yaml", + "Apollo Light": "apollo-light.yaml", + "Apparently Purple": "apparently-purple.yaml", + "apple-dancheong-minimal-light": "apple-dancheong-minimal-light.yaml", + "Apprentice": "apprentice.yaml", + "April Dark Theme": "april-dark-theme.yaml", + "AquaMain": "aquamain.yaml", + "AquaNova": "aquanova.yaml", + "Arabian Nights": "arabian-nights.yaml", + "arabian-theme": "arabian-theme.yaml", + "Arc Dark": "arc-dark.yaml", + "Arcadia Theme Dark": "arcadia-theme-dark.yaml", + "Arcadia Theme Storm": "arcadia-theme-storm.yaml", + "Arcaea": "arcaea.yaml", + "Archie-dark-color-theme": "archie-dark-color-theme.yaml", + "Architect (dark) - Fork": "architect-dark-fork.yaml", + "Arctic Depth": "arctic-depth.yaml", + "Arctic Night": "arctic-night.yaml", + "Arctis": "arctis.yaml", + "Arctis Dark": "arctis-dark.yaml", + "Arctis Dark+": "arctis-dark.yaml", + "Arctis High Contrast": "arctis-high-contrast.yaml", + "Arctis Light": "arctis-light.yaml", + "Arctis Moon": "arctis-moon.yaml", + "Arctis Night": "arctis-night.yaml", + "Ares Tron Legacy": "ares-tron-legacy.yaml", + "Arete Theme": "arete-theme.yaml", + "argonaut": "argonaut.yaml", + "argprocolor": "argprocolor.yaml", + "Ariake Sands": "ariake-sands.yaml", + "Ariake Sun": "ariake-sun.yaml", + "aries": "aries.yaml", + "Arkaios Theme": "arkaios-theme.yaml", + "ArkineticTheme": "arkinetictheme.yaml", + "Arkku": "arkku.yaml", + "armada": "armada.yaml", + "AroAce": "aroace.yaml", + "AroAce High Contrast": "aroace-high-contrast.yaml", + "AroAce Light": "aroace-light.yaml", + "Aromantic": "aromantic.yaml", + "Arrakis Day": "arrakis-day.yaml", + "Arrakis Night": "arrakis-night.yaml", + "Arrpee": "arrpee.yaml", + "arstotzka": "arstotzka.yaml", + "arstotzka-contrast": "arstotzka-contrast.yaml", + "arstotzka-light": "arstotzka-light.yaml", + "Artinpixel Turquoise Theme": "artinpixel-turquoise-theme.yaml", + "Artinpixel Turquoise Theme - Dark": "artinpixel-turquoise-theme-dark.yaml", + "Artisan Theme": "artisan-theme.yaml", + "ArtLab Dark": "artlab-dark.yaml", + "ArtLab Light": "artlab-light.yaml", + "arunika": "arunika.yaml", + "Arwinux Galaxy": "arwinux-galaxy.yaml", + "AS Theme": "as-theme.yaml", + "asdfasdfUntitled": "asdfasdfuntitled.yaml", + "Asexual": "asexual.yaml", + "ASGTheme": "asgtheme.yaml", + "Ash": "ash.yaml", + "Ash & Ember": "ash-ember.yaml", + "Ash Lumen": "ash-lumen.yaml", + "Ash Lumen Light": "ash-lumen-light.yaml", + "ashao-color-theme": "ashao-color-theme.yaml", + "Ashen": "ashen.yaml", + "Ashen Darker": "ashen-darker.yaml", + "AShineUI": "ashineui.yaml", + "AspieSoft IntelliJ Theme": "aspiesoft-intellij-theme.yaml", + "Aspire Core": "aspire-core.yaml", + "Aspire Dark": "aspire-dark.yaml", + "Aspire Light": "aspire-light.yaml", + "Assam - Tea Gardens": "assam-tea-gardens.yaml", + "Asteria": "asteria.yaml", + "Astigmatism Theme": "astigmatism-theme.yaml", + "Astra": "astra.yaml", + "Astra-ThemeDark": "astra-themedark.yaml", + "Astral Theme": "astral-theme.yaml", + "Astro Dark": "astro-dark.yaml", + "Astro Kanagawa": "astro-kanagawa.yaml", + "Astro Light": "astro-light.yaml", + "Astrofunk Dark": "astrofunk-dark.yaml", + "Astronaut": "astronaut.yaml", + "Astrus Midnight": "astrus-midnight.yaml", + "Astrus Nebula": "astrus-nebula.yaml", + "Astrus Standard": "astrus-standard.yaml", + "Asuka-Theme": "asuka-theme.yaml", + "Asuka-Theme-Light": "asuka-theme-light.yaml", + "Athabasca": "athabasca.yaml", + "Athabasca Light": "athabasca-light.yaml", + "Atilio": "atilio.yaml", + "Atlantu": "atlantu.yaml", + "Atom Homepage - Fork": "atom-homepage-fork.yaml", + "Atom Material Theme": "atom-material-theme.yaml", + "Atom One dark Coal": "atom-one-dark-coal.yaml", + "Atom One Dark Cyan": "atom-one-dark-cyan.yaml", + "Atom One Light Cyan": "atom-one-light-cyan.yaml", + "Atom One Light Modern": "atom-one-light-modern.yaml", + "AtomAx Colorblind Light": "atomax-colorblind-light.yaml", + "AtomAx Dark+": "atomax-dark.yaml", + "AtomAx Dark+ Dimmed": "atomax-dark-dimmed.yaml", + "AtomAx Dark+ Tritanopia": "atomax-dark-tritanopia.yaml", + "AtomAx High Contrast": "atomax-high-contrast.yaml", + "AtomAx Light+": "atomax-light.yaml", + "AtomAx Light+ Tritanopia": "atomax-light-tritanopia.yaml", + "Atomicc": "atomicc.yaml", + "Atomify": "atomify.yaml", + "Atomized-Theme": "atomized-theme.yaml", + "Atomizer Dark Island": "atomizer-dark-island.yaml", + "Attack on Titan (Eren's Determination)": "attack-on-titan-eren-s-determination.yaml", + "Attentio Flow": "attentio-flow.yaml", + "Attentio Pulse": "attentio-pulse.yaml", + "Attica": "attica.yaml", + "Aube": "aube.yaml", + "August - Ariake Dark": "august-ariake-dark.yaml", + "August - Arstotzka (Lighter)": "august-arstotzka-lighter.yaml", + "August - Arstotzka 2": "august-arstotzka-2.yaml", + "August - Arstotzka 2 (Darker)": "august-arstotzka-2-darker.yaml", + "August - BeardedTheme Oceanic Reversed": "august-beardedtheme-oceanic-reversed.yaml", + "August - BeardedTheme Surprising Blueberry": "august-beardedtheme-surprising-blueberry.yaml", + "August - Catppuccin": "august-catppuccin.yaml", + "August - City Lights": "august-city-lights.yaml", + "August - City Lights (Darker)": "august-city-lights-darker.yaml", + "August - Drawbridge": "august-drawbridge.yaml", + "August - Drawbridge (Darker)": "august-drawbridge-darker.yaml", + "August - Gruvbox (Darker)": "august-gruvbox-darker.yaml", + "August - Kanagawa (Darker)": "august-kanagawa-darker.yaml", + "August - Material Palenight": "august-material-palenight.yaml", + "August - Night Owl": "august-night-owl.yaml", + "August - Night Owl (Darker)": "august-night-owl-darker.yaml", + "August - Nord": "august-nord.yaml", + "August - Nord (Darker)": "august-nord-darker.yaml", + "August - Radical": "august-radical.yaml", + "August - Radical 2": "august-radical-2.yaml", + "August - Rosé Pine": "august-ros-pine.yaml", + "August - Rosé Pine Moon": "august-ros-pine-moon.yaml", + "August Dark Theme": "august-dark-theme.yaml", + "Aura Dark": "aura-dark.yaml", + "Aura Dark (Soft Text)": "aura-dark-soft-text.yaml", + "Aura Dracula Spirit": "aura-dracula-spirit.yaml", + "Aura Dracula Spirit (Soft)": "aura-dracula-spirit-soft.yaml", + "Aura Dracula Spirit (SynthWave)": "aura-dracula-spirit-synthwave.yaml", + "Aura Soft Dark": "aura-soft-dark.yaml", + "Aura Soft Dark (Soft Text)": "aura-soft-dark-soft-text.yaml", + "Aurbis Dark": "aurbis-dark.yaml", + "aurelConstellation": "aurelconstellation.yaml", + "Aurora": "aurora.yaml", + "Aurora Borealis Theme": "aurora-borealis-theme.yaml", + "Aurora Borealis Theme Dark": "aurora-borealis-theme-dark.yaml", + "AuroraBloom": "aurorabloom.yaml", + "Aurorain": "aurorain.yaml", + "AuroraSynth Dark": "aurorasynth-dark.yaml", + "AuroraSynth Light": "aurorasynth-light.yaml", + "Australian Food & Fibre Dark": "australian-food-fibre-dark.yaml", + "Australian Food & Fibre Light": "australian-food-fibre-light.yaml", + "Autumn": "autumn.yaml", + "Autumn - Fork": "autumn-fork.yaml", + "Autumn - Fork - Contrast": "autumn-fork-contrast.yaml", + "Autumn Highlighter Syntax": "autumn-highlighter-syntax.yaml", + "Awesome Dark": "awesome-dark.yaml", + "awesome-theme": "awesome-theme.yaml", + "awesome-vscode-dark": "awesome-vscode-dark.yaml", + "Awork Dark": "awork-dark.yaml", + "Axiomatic Dark": "axiomatic-dark.yaml", + "Axiomatic Light": "axiomatic-light.yaml", + "Axis Ultra Dark": "axis-ultra-dark.yaml", + "Ayame": "ayame.yaml", + "Ayanokoji": "ayanokoji.yaml", + "Aylin": "aylin.yaml", + "ayu": "ayu.yaml", + "Ayu Enhanced": "ayu-enhanced.yaml", + "ayu-owl": "ayu-owl.yaml", + "AyuDark": "ayudark.yaml", + "Ayuloco Dark": "ayuloco-dark.yaml", + "Ayuloco Dark Bordered": "ayuloco-dark-bordered.yaml", + "Ayuloco Mirage": "ayuloco-mirage.yaml", + "Ayuloco Mirage Bordered": "ayuloco-mirage-bordered.yaml", + "AyuTokyo-color-theme": "ayutokyo-color-theme.yaml", + "Ayyour": "ayyour.yaml", + "az0ox.theme-shadesOfBlue": "az0ox-theme-shadesofblue.yaml", + "Azathoth": "azathoth.yaml", + "Azeny": "azeny.yaml", + "Azeny Cutimaru": "azeny-cutimaru.yaml", + "Azeny Inveny": "azeny-inveny.yaml", + "Azeny Okano": "azeny-okano.yaml", + "Azerite Dark": "azerite-dark.yaml", + "Azerite Dark Soft": "azerite-dark-soft.yaml", + "Azul": "azul.yaml", + "azure": "azure.yaml", + "Azure Iris Dark": "azure-iris-dark.yaml", + "Azure Iris Light": "azure-iris-light.yaml", + "Azure Noir": "azure-noir.yaml", + "azure-contrast": "azure-contrast.yaml", + "Azure-Dark-Teal": "azure-dark-teal.yaml", + "azure-light": "azure-light.yaml", + "B'nT": "b-nt.yaml", + "B150 Dark": "b150-dark.yaml", + "B150 Light": "b150-light.yaml", + "B2B Edge - Light": "b2b-edge-light.yaml", + "B9F36BCF530F3D6B5C9CF39D2E260A99 (Dark)": "b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml", + "B9F36BCF530F3D6B5C9CF39D2E260A99 (Light)": "b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml", + "Backspace Dark": "backspace-dark.yaml", + "Backspace Dark Glass": "backspace-dark-glass.yaml", + "Backspace Dark Vibe Coder": "backspace-dark-vibe-coder.yaml", + "Backspace Dark Winter": "backspace-dark-winter.yaml", + "Backspace Light": "backspace-light.yaml", + "Baculum Color Lightup Comment": "baculum-color-lightup-comment.yaml", + "Baculum Color Minimal 2": "baculum-color-minimal-2.yaml", + "Baculum Color Minimal Vantablack": "baculum-color-minimal-vantablack.yaml", + "Baculum Dark Color": "baculum-dark-color.yaml", + "badbird": "badbird.yaml", + "Baig": "baig.yaml", + "Baitul Hikmah Professional": "baitul-hikmah-professional.yaml", + "Baiyuechu": "baiyuechu.yaml", + "BakaNeo": "bakaneo.yaml", + "Balance Pink - Compassion & Focus": "balance-pink-compassion-focus.yaml", + "Balance Pink Colorblind - Compassion & Focus": "balance-pink-colorblind-compassion-focus.yaml", + "Balance Pink High Contrast - Compassion & Focus": "balance-pink-high-contrast-compassion-focus.yaml", + "Balance Pink Light - Compassion & Focus": "balance-pink-light-compassion-focus.yaml", + "Ballerini Theme": "ballerini-theme.yaml", + "Bam": "bam.yaml", + "bamboo": "bamboo.yaml", + "Bamboo Green": "bamboo-green.yaml", + "Ban Light": "ban-light.yaml", + "Ban Night": "ban-night.yaml", + "Ban Typhoon": "ban-typhoon.yaml", + "bananalight": "bananalight.yaml", + "BandMeUp": "bandmeup.yaml", + "banner": "banner.yaml", + "banner-contrast": "banner-contrast.yaml", + "banner-light": "banner-light.yaml", + "Barbenheimer Bunker": "barbenheimer-bunker.yaml", + "Barbenheimer Dreamhouse": "barbenheimer-dreamhouse.yaml", + "Barbenheimer Nuclear Sunrise": "barbenheimer-nuclear-sunrise.yaml", + "Barbie": "barbie.yaml", + "Barbie Light": "barbie-light.yaml", + "Barbie Theme": "barbie-theme.yaml", + "barlume": "barlume.yaml", + "Barney PRO": "barney-pro.yaml", + "Barstrata": "barstrata.yaml", + "Base Minor": "base-minor.yaml", + "Base Minor Dark Hard": "base-minor-dark-hard.yaml", + "Base Minor Dark Soft": "base-minor-dark-soft.yaml", + "Base Minor Soft": "base-minor-soft.yaml", + "base-color-theme": "base-color-theme.yaml", + "Base16 3024 Dark": "base16-3024-dark.yaml", + "Base16 3024 Light": "base16-3024-light.yaml", + "Base16 Apathy Dark": "base16-apathy-dark.yaml", + "Base16 Apathy Light": "base16-apathy-light.yaml", + "Base16 Ashes Dark": "base16-ashes-dark.yaml", + "Base16 Ashes Light": "base16-ashes-light.yaml", + "Base16 Bespin Dark": "base16-bespin-dark.yaml", + "Base16 Bespin Light": "base16-bespin-light.yaml", + "Base16 Brewer Dark": "base16-brewer-dark.yaml", + "Base16 Brewer Light": "base16-brewer-light.yaml", + "Base16 Bright Dark": "base16-bright-dark.yaml", + "Base16 Bright Light": "base16-bright-light.yaml", + "Base16 Codeschool Dark": "base16-codeschool-dark.yaml", + "Base16 Codeschool Light": "base16-codeschool-light.yaml", + "Base16 Default Dark": "base16-default-dark.yaml", + "Base16 Default Light": "base16-default-light.yaml", + "Base16 Eighties Dark": "base16-eighties-dark.yaml", + "Base16 Eighties Light": "base16-eighties-light.yaml", + "Base16 Embers Dark": "base16-embers-dark.yaml", + "Base16 Embers Light": "base16-embers-light.yaml", + "Base16 Flat Dark": "base16-flat-dark.yaml", + "Base16 Flat Light": "base16-flat-light.yaml", + "Base16 Google Dark": "base16-google-dark.yaml", + "Base16 Google Light": "base16-google-light.yaml", + "Base16 Grayscale Dark": "base16-grayscale-dark.yaml", + "Base16 Grayscale Light": "base16-grayscale-light.yaml", + "Base16 Green Screen Dark": "base16-green-screen-dark.yaml", + "Base16 Green Screen Light": "base16-green-screen-light.yaml", + "Base16 Harmonic16 Dark": "base16-harmonic16-dark.yaml", + "Base16 Harmonic16 Light": "base16-harmonic16-light.yaml", + "Base16 Isotope Dark": "base16-isotope-dark.yaml", + "Base16 Isotope Light": "base16-isotope-light.yaml", + "Base16 Marrakesh Dark": "base16-marrakesh-dark.yaml", + "Base16 Marrakesh Light": "base16-marrakesh-light.yaml", + "Base16 Mocha Dark": "base16-mocha-dark.yaml", + "Base16 Mocha Light": "base16-mocha-light.yaml", + "Base16 Monokai Dark": "base16-monokai-dark.yaml", + "Base16 Monokai Light": "base16-monokai-light.yaml", + "Base16 Ocean Dark": "base16-ocean-dark.yaml", + "Base16 Ocean Light": "base16-ocean-light.yaml", + "Base16 OceanicNext Dark": "base16-oceanicnext-dark.yaml", + "Base16 OceanicNext Light": "base16-oceanicnext-light.yaml", + "Base16 Paraiso Dark": "base16-paraiso-dark.yaml", + "Base16 Paraiso Light": "base16-paraiso-light.yaml", + "Base16 Pop Dark": "base16-pop-dark.yaml", + "Base16 Pop Light": "base16-pop-light.yaml", + "Base16 Railscasts Dark": "base16-railscasts-dark.yaml", + "Base16 Railscasts Light": "base16-railscasts-light.yaml", + "Base16 Shapeshifter Dark": "base16-shapeshifter-dark.yaml", + "Base16 Shapeshifter Light": "base16-shapeshifter-light.yaml", + "Base16 Solarized Dark": "base16-solarized-dark.yaml", + "Base16 Solarized Light": "base16-solarized-light.yaml", + "Base16 Summerfruit Dark": "base16-summerfruit-dark.yaml", + "Base16 Summerfruit Light": "base16-summerfruit-light.yaml", + "Base16 Tomorrow Dark": "base16-tomorrow-dark.yaml", + "Base16 Tomorrow Light": "base16-tomorrow-light.yaml", + "Base16 Twilight Dark": "base16-twilight-dark.yaml", + "Base16 Twilight Light": "base16-twilight-light.yaml", + "Base16 Unikitty Dark": "base16-unikitty-dark.yaml", + "Base16 Unikitty Light": "base16-unikitty-light.yaml", + "Base16 Woodland Dark": "base16-woodland-dark.yaml", + "basic blue": "basic-blue.yaml", + "basic_black": "basic-black.yaml", + "Basterdized": "basterdized.yaml", + "bat": "bat.yaml", + "Batsignal-light-color-theme": "batsignal-light-color-theme.yaml", + "BazmaTheme": "bazmatheme.yaml", + "Bazutya": "bazutya.yaml", + "BBBAlabamaSuntan": "bbbalabamasuntan.yaml", + "BBBDark": "bbbdark.yaml", + "BBBHotDogStand": "bbbhotdogstand.yaml", + "BBogdanov Dark": "bbogdanov-dark.yaml", + "BBogdanov Light": "bbogdanov-light.yaml", + "BC-Theme": "bc-theme.yaml", + "Beach Vibes": "beach-vibes.yaml", + "Beacrisg": "beacrisg.yaml", + "becolors": "becolors.yaml", + "BedarX Obsidian": "bedarx-obsidian.yaml", + "BedarX Onyx": "bedarx-onyx.yaml", + "BedarX Pearl": "bedarx-pearl.yaml", + "BedarX Sapphire": "bedarx-sapphire.yaml", + "Bee Theme": "bee-theme.yaml", + "bee-theme-color-theme-tow": "bee-theme-color-theme-tow.yaml", + "Beerish": "beerish.yaml", + "Behavai": "behavai.yaml", + "Behavai Vitesse": "behavai-vitesse.yaml", + "Beloco Italic": "beloco-italic.yaml", + "Benimaru": "benimaru.yaml", + "BenLaTheme Azure": "benlatheme-azure.yaml", + "Benpai Theme (Dark)": "benpai-theme-dark.yaml", + "Berg": "berg.yaml", + "Berkeley": "berkeley.yaml", + "Bernadoque Theme": "bernadoque-theme.yaml", + "Berry Latte Light": "berry-latte-light.yaml", + "berry-blast-theme": "berry-blast-theme.yaml", + "Bersk": "bersk.yaml", + "Beru": "beru.yaml", + "Best Themes - Monokai Next": "best-themes-monokai-next.yaml", + "Best Themes - One Monokai": "best-themes-one-monokai.yaml", + "Better Coding Dark": "better-coding-dark.yaml", + "Better Light": "better-light.yaml", + "Better Oceanic Next": "better-oceanic-next.yaml", + "Better Selenized Dark": "better-selenized-dark.yaml", + "Better Solarized Dark": "better-solarized-dark.yaml", + "Better Solarized Dark Italic": "better-solarized-dark-italic.yaml", + "betu-dark": "betu-dark.yaml", + "betu-light": "betu-light.yaml", + "BHWM715 - Even Darker": "bhwm715-even-darker.yaml", + "BiancoNero": "bianconero.yaml", + "Bibauporto Gray": "bibauporto-gray.yaml", + "Bibauporto Simple": "bibauporto-simple.yaml", + "Biddeew": "biddeew.yaml", + "Bifröst": "bifr-st.yaml", + "BigFish": "bigfish.yaml", + "BigSur GTK Theme (Dark Blue)": "bigsur-gtk-theme-dark-blue.yaml", + "BINI Theme": "bini-theme.yaml", + "bird": "bird.yaml", + "Bit": "bit.yaml", + "Bit Intense": "bit-intense.yaml", + "Bit Soft": "bit-soft.yaml", + "bitPurp Dark": "bitpurp-dark.yaml", + "Bits Theme": "bits-theme.yaml", + "Bits Theme Green": "bits-theme-green.yaml", + "Bits Theme Green Light": "bits-theme-green-light.yaml", + "Bits Theme Light": "bits-theme-light.yaml", + "Bits Theme Purple": "bits-theme-purple.yaml", + "Bits Theme Purple Light": "bits-theme-purple-light.yaml", + "Bl!nk": "bl-nk.yaml", + "Black and Red": "black-and-red.yaml", + "Black Ocean": "black-ocean.yaml", + "Black on Gray": "black-on-gray.yaml", + "Black Pink Rose": "black-pink-rose.yaml", + "Black punk 77": "black-punk-77.yaml", + "Black Purple": "black-purple.yaml", + "Black theme": "black-theme.yaml", + "black-back-dark-e-theme": "black-back-dark-e-theme.yaml", + "black-color-theme": "black-color-theme.yaml", + "Black-Rose": "black-rose.yaml", + "black-theme": "black-theme.yaml", + "blackai-theme": "blackai-theme.yaml", + "blackamp": "blackamp.yaml", + "blackberry": "blackberry.yaml", + "Blackboard Plus": "blackboard-plus.yaml", + "BlackCoffeeDark": "blackcoffeedark.yaml", + "Blackdot": "blackdot.yaml", + "BlackHighContrast": "blackhighcontrast.yaml", + "BlackLite": "blacklite.yaml", + "Blackout": "blackout.yaml", + "BLACKPINK": "blackpink.yaml", + "BlackRoulette": "blackroulette.yaml", + "blackula-theme": "blackula-theme.yaml", + "Blacky": "blacky.yaml", + "Bladerunner": "bladerunner.yaml", + "Bladerunner-light": "bladerunner-light.yaml", + "Blah Dark": "blah-dark.yaml", + "BlahajTheme 🦈": "blahajtheme.yaml", + "Blank Ghibli": "blank-ghibli.yaml", + "Blank Monochrome": "blank-monochrome.yaml", + "Blank Moonlight": "blank-moonlight.yaml", + "Blank Uchiha": "blank-uchiha.yaml", + "Blank's Theme Reborn": "blank-s-theme-reborn.yaml", + "blankeos zen theme": "blankeos-zen-theme.yaml", + "blaze-orange": "blaze-orange.yaml", + "Blinds (Dark)": "blinds-dark.yaml", + "blink": "blink.yaml", + "blink-contrast": "blink-contrast.yaml", + "blink-light": "blink-light.yaml", + "Blip Cursor VSCode Theme": "blip-cursor-vscode-theme.yaml", + "Bloody Pie": "bloody-pie.yaml", + "Bloom 1.1.0": "bloom-1-1-0.yaml", + "BlooString": "bloostring.yaml", + "Blossoms": "blossoms.yaml", + "Blowington": "blowington.yaml", + "BluBe Dark Light": "blube-dark-light.yaml", + "blue": "blue.yaml", + "Blue Cheese": "blue-cheese.yaml", + "Blue Collection": "blue-collection.yaml", + "Blue Dark theme": "blue-dark-theme.yaml", + "Blue faded": "blue-faded.yaml", + "Blue Jeans": "blue-jeans.yaml", + "Blue Light Filter - Dark": "blue-light-filter-dark.yaml", + "Blue Light Filter - Warm Dark": "blue-light-filter-warm-dark.yaml", + "Blue Light Theme": "blue-light-theme.yaml", + "Blue Melon": "blue-melon.yaml", + "Blue Neon": "blue-neon.yaml", + "blue-color-theme": "blue-color-theme.yaml", + "Blue-Day": "blue-day.yaml", + "blue-green-theme": "blue-green-theme.yaml", + "Blue-Hacker Theme": "blue-hacker-theme.yaml", + "blue-moves-color-theme": "blue-moves-color-theme.yaml", + "blue-moves-darker-color-theme": "blue-moves-darker-color-theme.yaml", + "Blue-Night": "blue-night.yaml", + "Blueberry dark theme": "blueberry-dark-theme.yaml", + "Blueberry Futuristic theme - Fork": "blueberry-futuristic-theme-fork.yaml", + "Blueberry Theme": "blueberry-theme.yaml", + "bluebracket-theme": "bluebracket-theme.yaml", + "BlueDark": "bluedark.yaml", + "BlueGreenSpace": "bluegreenspace.yaml", + "Bluelili-color-theme": "bluelili-color-theme.yaml", + "BlueOrange": "blueorange.yaml", + "bluered-theme": "bluered-theme.yaml", + "BlueSea": "bluesea.yaml", + "BlueSpace": "bluespace.yaml", + "BlueSpace S": "bluespace-s.yaml", + "BluespEXTER": "bluespexter.yaml", + "BlueThemePulper": "bluethemepulper.yaml", + "BlueyOneDark": "blueyonedark.yaml", + "Bluish": "bluish.yaml", + "Bluloco Dark": "bluloco-dark.yaml", + "Bluloco Dark Italic": "bluloco-dark-italic.yaml", + "Bluloco Light Italic": "bluloco-light-italic.yaml", + "Blush Pink Enhanced Premium": "blush-pink-enhanced-premium.yaml", + "Blve": "blve.yaml", + "bobascheme": "bobascheme.yaml", + "Bocenago: Pradei": "bocenago-pradei.yaml", + "Bogem's Night Owl": "bogem-s-night-owl.yaml", + "Bogster": "bogster.yaml", + "Bohemian Dark": "bohemian-dark.yaml", + "Bohemian Light": "bohemian-light.yaml", + "bold": "bold.yaml", + "bold-contrast": "bold-contrast.yaml", + "bold-light": "bold-light.yaml", + "bolsonaro theme": "bolsonaro-theme.yaml", + "Bombyx": "bombyx.yaml", + "Bombyx Light": "bombyx-light.yaml", + "boo": "boo.yaml", + "boo-color-theme": "boo-color-theme.yaml", + "Boogel": "boogel.yaml", + "booklike": "booklike.yaml", + "Bootstrap Dark": "bootstrap-dark.yaml", + "Bootstrap Light": "bootstrap-light.yaml", + "Borders Blue": "borders-blue.yaml", + "Borders Dark": "borders-dark.yaml", + "Borders Darker": "borders-darker.yaml", + "Borealis": "borealis.yaml", + "BorealSharp": "borealsharp.yaml", + "BOT2B": "bot2b.yaml", + "Botany": "botany.yaml", + "botany-color-theme": "botany-color-theme.yaml", + "bougainvillea": "bougainvillea.yaml", + "Boundless": "boundless.yaml", + "bouquet": "bouquet.yaml", + "BoxLang Dark (Neon)": "boxlang-dark-neon.yaml", + "boxuk": "boxuk.yaml", + "boxuk-contrast": "boxuk-contrast.yaml", + "boxuk-light": "boxuk-light.yaml", + "BracketHive Theme": "brackethive-theme.yaml", + "brave": "brave.yaml", + "brave-contrast": "brave-contrast.yaml", + "brave-light": "brave-light.yaml", + "Breath2Ripoff": "breath2ripoff.yaml", + "Breeze": "breeze.yaml", + "Brew Theme": "brew-theme.yaml", + "Brid Purple Garden Dark": "brid-purple-garden-dark.yaml", + "Brid Purple Garden Light": "brid-purple-garden-light.yaml", + "briggitehelm": "briggitehelm.yaml", + "Bright Colors Blue": "bright-colors-blue.yaml", + "Bright Lights": "bright-lights.yaml", + "britecore": "britecore.yaml", + "British Racing Green Theme": "british-racing-green-theme.yaml", + "Brogrammer Plus": "brogrammer-plus.yaml", + "Broken Dreams Blue": "broken-dreams-blue.yaml", + "Broken Dreams Purple": "broken-dreams-purple.yaml", + "Bromium": "bromium.yaml", + "Brownhu": "brownhu.yaml", + "Brownista": "brownista.yaml", + "bruno's wet dream": "bruno-s-wet-dream.yaml", + "BrutalCode": "brutalcode.yaml", + "BTS Borahae": "bts-borahae.yaml", + "BTV Dark": "btv-dark.yaml", + "Bubba Kush v1": "bubba-kush-v1.yaml", + "Bubble Theme": "bubble-theme.yaml", + "Bubblegum": "bubblegum.yaml", + "Bubblegum Milkshake": "bubblegum-milkshake.yaml", + "bubblegum-color-theme": "bubblegum-color-theme.yaml", + "bubbleGumTheme": "bubblegumtheme.yaml", + "BUBY-color-theme": "buby-color-theme.yaml", + "buddha - a super minimal theme for vscode": "buddha-a-super-minimal-theme-for-vscode.yaml", + "Budha": "budha.yaml", + "Budokan": "budokan.yaml", + "Bugged GPU": "bugged-gpu.yaml", + "Buhtig": "buhtig.yaml", + "Bullish Theme": "bullish-theme.yaml", + "bun_gothic": "bun-gothic.yaml", + "Burnt Chestnut": "burnt-chestnut.yaml", + "Burple Dark": "burple-dark.yaml", + "BusbyVSCode": "busbyvscode.yaml", + "Bushland": "bushland.yaml", + "Butrin-Theme": "butrin-theme.yaml", + "Butter green - Fork": "butter-green-fork.yaml", + "Buttercawfee": "buttercawfee.yaml", + "Bynawers": "bynawers.yaml", + "ByteGlow": "byteglow.yaml", + "ByteNight": "bytenight.yaml", + "C/C++ Theme": "c-c-theme.yaml", + "C# Dracula": "c-dracula.yaml", + "C0V3R": "c0v3r.yaml", + "Cabalyon Theme": "cabalyon-theme.yaml", + "Cadet Dark Gray": "cadet-dark-gray.yaml", + "Cadet Medium Gray Flat": "cadet-medium-gray-flat.yaml", + "Café Warmth": "caf-warmth.yaml", + "Caffe Crema Dark": "caffe-crema-dark.yaml", + "Caffe Crema Light": "caffe-crema-light.yaml", + "Caffeinated Rust": "caffeinated-rust.yaml", + "CAL-4700": "cal-4700.yaml", + "𝐂𝐚𝐥𝐜𝐢𝐮𝐦º❍。⊹・゚✧": ".yaml", + "Calm Dark": "calm-dark.yaml", + "Calm Days, Sober Nights - Day (no bold style)": "calm-days-sober-nights-day-no-bold-style.yaml", + "Calm Days, Sober Nights - Day (Sky) (no bold style)": "calm-days-sober-nights-day-sky-no-bold-style.yaml", + "Calm Days, Sober Nights - Night (no bold style)": "calm-days-sober-nights-night-no-bold-style.yaml", + "Calm Days, Sober Nights - Night (Sky) (no bold style)": "calm-days-sober-nights-night-sky-no-bold-style.yaml", + "Calm Down Color Theme": "calm-down-color-theme.yaml", + "Calm Light": "calm-light.yaml", + "Calm Ocean": "calm-ocean.yaml", + "Calm Teal Colorblind - Balance & Clarity": "calm-teal-colorblind-balance-clarity.yaml", + "Calm Teal High Contrast - Balance & Clarity": "calm-teal-high-contrast-balance-clarity.yaml", + "Calm Teal Light - Balance & Clarity": "calm-teal-light-balance-clarity.yaml", + "Calming Theme": "calming-theme.yaml", + "calming-coding-dark-theme": "calming-coding-dark-theme.yaml", + "Calmppuccin Frappe": "calmppuccin-frappe.yaml", + "Calmppuccin Latte": "calmppuccin-latte.yaml", + "Calmppuccin Macchiato": "calmppuccin-macchiato.yaml", + "Calmppuccin Mocha": "calmppuccin-mocha.yaml", + "Calmppuccin Nitro-cold-brew": "calmppuccin-nitro-cold-brew.yaml", + "Calmppuccin Oledppuccin": "calmppuccin-oledppuccin.yaml", + "Calomnie": "calomnie.yaml", + "campbell": "campbell.yaml", + "Camula": "camula.yaml", + "Camula Moon": "camula-moon.yaml", + "Camula Sun": "camula-sun.yaml", + "Candle Theme": "candle-theme.yaml", + "Candy Blue": "candy-blue.yaml", + "Candy Pine": "candy-pine.yaml", + "Candy Purple": "candy-purple.yaml", + "Candy Red": "candy-red.yaml", + "Candy-Shop-Eclipse": "candy-shop-eclipse.yaml", + "Canonic Theme": "canonic-theme.yaml", + "Cape Town Nights": "cape-town-nights.yaml", + "Capitola": "capitola.yaml", + "Capy UI": "capy-ui.yaml", + "Caramel - Fork": "caramel-fork.yaml", + "Carbon": "carbon.yaml", + "Carbon Code Amber Dark": "carbon-code-amber-dark.yaml", + "Carbon Code Amber Light": "carbon-code-amber-light.yaml", + "Carbon Code Crimson Dark": "carbon-code-crimson-dark.yaml", + "Carbon Code Crimson Light": "carbon-code-crimson-light.yaml", + "Carbon Code Dark": "carbon-code-dark.yaml", + "Carbon Code Emerald Dark": "carbon-code-emerald-dark.yaml", + "Carbon Code Emerald Light": "carbon-code-emerald-light.yaml", + "Carbon Code Light": "carbon-code-light.yaml", + "Carbon Code Rose Dark": "carbon-code-rose-dark.yaml", + "Carbon Code Rose Light": "carbon-code-rose-light.yaml", + "Carbon Design System Theme": "carbon-design-system-theme.yaml", + "Carbon One": "carbon-one.yaml", + "Carbon React Color Theme": "carbon-react-color-theme.yaml", + "Carbon React Color Theme - Maya": "carbon-react-color-theme-maya.yaml", + "Carbon React Color Theme - Maya Black": "carbon-react-color-theme-maya-black.yaml", + "carbon-candy-anthracite": "carbon-candy-anthracite.yaml", + "carbon-candy-aurora (thin-border)": "carbon-candy-aurora-thin-border.yaml", + "carbon-candy-carbon (thin-border)": "carbon-candy-carbon-thin-border.yaml", + "carbon-candy-dark (thin-border)": "carbon-candy-dark-thin-border.yaml", + "carbon-candy-obsidian (thin-border)": "carbon-candy-obsidian-thin-border.yaml", + "carbon-candy-palenight": "carbon-candy-palenight.yaml", + "carbonfox": "carbonfox.yaml", + "Carbonfox": "carbonfox.yaml", + "carbonight": "carbonight.yaml", + "Carbonight": "carbonight.yaml", + "Carbonight Dusk": "carbonight-dusk.yaml", + "Carbonight Midnight": "carbonight-midnight.yaml", + "carbonight-contrast": "carbonight-contrast.yaml", + "carbonight-light": "carbonight-light.yaml", + "Caret (light)": "caret-light.yaml", + "Carex Dark": "carex-dark.yaml", + "Carex High Contrast Dark": "carex-high-contrast-dark.yaml", + "Carex Light": "carex-light.yaml", + "Casa": "casa.yaml", + "Casino Royal": "casino-royal.yaml", + "Cat_Pink": "cat-pink.yaml", + "Cat_Sleep-color-theme": "cat-sleep-color-theme.yaml", + "Catalyst": "catalyst.yaml", + "Catalyst Light": "catalyst-light.yaml", + "cathayTrial": "cathaytrial.yaml", + "Catppuccin Dark": "catppuccin-dark.yaml", + "Catppuccin Frappé": "catppuccin-frapp.yaml", + "Catppuccin Latte": "catppuccin-latte.yaml", + "Catppuccin Macchiato": "catppuccin-macchiato.yaml", + "Catppuccin Mocha": "catppuccin-mocha.yaml", + "Catppuccin Monokai Frappe": "catppuccin-monokai-frappe.yaml", + "Catppuccin Monokai Latte": "catppuccin-monokai-latte.yaml", + "Catppuccin Monokai Macchiato": "catppuccin-monokai-macchiato.yaml", + "Catppuccin Monokai Mocha": "catppuccin-monokai-mocha.yaml", + "Catthode": "catthode.yaml", + "cchl-color-theme": "cchl-color-theme.yaml", + "cebola-theme": "cebola-theme.yaml", + "Celadon Theme": "celadon-theme.yaml", + "celestial-charm-theme": "celestial-charm-theme.yaml", + "Ceo": "ceo.yaml", + "cerydra": "cerydra.yaml", + "cfl-one": "cfl-one.yaml", + "Chai Light": "chai-light.yaml", + "Chalk": "chalk.yaml", + "Chalkish": "chalkish.yaml", + "Charcoal": "charcoal.yaml", + "CHARLI Health Dark": "charli-health-dark.yaml", + "CHARLI Health Light": "charli-health-light.yaml", + "ChatGPT Theme": "chatgpt-theme.yaml", + "cheese n all": "cheese-n-all.yaml", + "Cheesewaffle Blue": "cheesewaffle-blue.yaml", + "Cheetha Green": "cheetha-green.yaml", + "Cherry": "cherry.yaml", + "Cherry Blossom Airy": "cherry-blossom-airy.yaml", + "Cherry Blossom Breeze": "cherry-blossom-breeze.yaml", + "Cherry Blossom Dark": "cherry-blossom-dark.yaml", + "Cherry Blossom Dark Reflection": "cherry-blossom-dark-reflection.yaml", + "Cherry Blossom Dark Vivid": "cherry-blossom-dark-vivid.yaml", + "Cherry Blossom Dimmed": "cherry-blossom-dimmed.yaml", + "Cherry Blossom Dimmed Dusk": "cherry-blossom-dimmed-dusk.yaml", + "Cherry Blossom Night": "cherry-blossom-night.yaml", + "Cherry Blossom Night Harmony": "cherry-blossom-night-harmony.yaml", + "Cherry Blossom Osaka": "cherry-blossom-osaka.yaml", + "Cherry Blossom Osaka Light": "cherry-blossom-osaka-light.yaml", + "Cherry Blossom Sky Vibrant": "cherry-blossom-sky-vibrant.yaml", + "Cherry Blossom Spring": "cherry-blossom-spring.yaml", + "Cherry Blossom Twilight": "cherry-blossom-twilight.yaml", + "Cherry Blossom Warm": "cherry-blossom-warm.yaml", + "Cherry Delite": "cherry-delite.yaml", + "Cherry Midnight": "cherry-midnight.yaml", + "Cherry Wild Theme": "cherry-wild-theme.yaml", + "cherryBlossom": "cherryblossom.yaml", + "Chiclete de uva | Theme": "chiclete-de-uva-theme.yaml", + "Chill Night Mode": "chill-night-mode.yaml", + "chillhack": "chillhack.yaml", + "Chinolor": "chinolor.yaml", + "Chinolor Light": "chinolor-light.yaml", + "chocolate": "chocolate.yaml", + "chocolate-contrast": "chocolate-contrast.yaml", + "chocolate-dessert-theme": "chocolate-dessert-theme.yaml", + "chocolate-light": "chocolate-light.yaml", + "CHPastel": "chpastel.yaml", + "ChrisCoding": "chriscoding.yaml", + "christmas": "christmas.yaml", + "CHROMAHIN AMOLED": "chromahin-amoled.yaml", + "CHROMAHIN Dark": "chromahin-dark.yaml", + "CHROMAHIN Multi-color": "chromahin-multi-color.yaml", + "CHROMAHIN Soft": "chromahin-soft.yaml", + "Chromatic Dark": "chromatic-dark.yaml", + "Chromatic Light": "chromatic-light.yaml", + "Chrome DevTools": "chrome-devtools.yaml", + "Chromodusk Classic": "chromodusk-classic.yaml", + "Chronokai": "chronokai.yaml", + "Cielo": "cielo.yaml", + "Cinnamon": "cinnamon.yaml", + "Cinnamonroll": "cinnamonroll.yaml", + "citric secret": "citric-secret.yaml", + "City Fog": "city-fog.yaml", + "Clairvoyance Theme": "clairvoyance-theme.yaml", + "Clairvoyance Theme - Alt": "clairvoyance-theme-alt.yaml", + "Clairvoyance Theme - Grape": "clairvoyance-theme-grape.yaml", + "Clairvoyance Theme - Pinkish": "clairvoyance-theme-pinkish.yaml", + "Clarity Design System - Dark": "clarity-design-system-dark.yaml", + "Clarity Design System - Light": "clarity-design-system-light.yaml", + "Claro": "claro.yaml", + "classic_terminal": "classic-terminal.yaml", + "Claude Code Dark Brand": "claude-code-dark-brand.yaml", + "Claude Code Dark High Contrast": "claude-code-dark-high-contrast.yaml", + "Claude Code Light Brand": "claude-code-light-brand.yaml", + "Claude Code Light High Contrast": "claude-code-light-high-contrast.yaml", + "Claude Dark": "claude-dark.yaml", + "Claude Dark (Anthropic)": "claude-dark-anthropic.yaml", + "Claude Dark High Contrast Italic": "claude-dark-high-contrast-italic.yaml", + "Claude Dark Italic": "claude-dark-italic.yaml", + "Claude Light": "claude-light.yaml", + "Claude Mode Dark": "claude-mode-dark.yaml", + "Claude Mode Light": "claude-mode-light.yaml", + "Claude Velvet Dark": "claude-velvet-dark.yaml", + "Claude Velvet Light": "claude-velvet-light.yaml", + "Claude Warm Light": "claude-warm-light.yaml", + "Clean Theme Halloween": "clean-theme-halloween.yaml", + "Clean White": "clean-white.yaml", + "Clear Dark": "clear-dark.yaml", + "Cleo": "cleo.yaml", + "clesy-theme-dark": "clesy-theme-dark.yaml", + "CloudMint Night": "cloudmint-night.yaml", + "clrsync": "clrsync.yaml", + "CLU Tron Legacy": "clu-tron-legacy.yaml", + "Clubcleaver Functional Matrix": "clubcleaver-functional-matrix.yaml", + "clymate-monochrome-vsdark.color-theme": "clymate-monochrome-vsdark-color-theme.yaml", + "clymate-pop-neon-vsdark.color-theme": "clymate-pop-neon-vsdark-color-theme.yaml", + "clymate-vintage-vsdark.color-theme": "clymate-vintage-vsdark-color-theme.yaml", + "clymate-vsdark.color-theme": "clymate-vsdark-color-theme.yaml", + "CMYK colourrrs": "cmyk-colourrrs.yaml", + "Coal": "coal.yaml", + "Cobalt Next": "cobalt-next.yaml", + "Cobalt Next Dark": "cobalt-next-dark.yaml", + "Cobalt2": "cobalt2.yaml", + "Cobalt3Dark": "cobalt3dark.yaml", + "Cobalt9": "cobalt9.yaml", + "Coco": "coco.yaml", + "coco-theme": "coco-theme.yaml", + "coco-theme-AU-palette": "coco-theme-au-palette.yaml", + "coco-theme-CA-palette": "coco-theme-ca-palette.yaml", + "coco-theme-Coco-palette": "coco-theme-coco-palette.yaml", + "coco-theme-Coconut-palette": "coco-theme-coconut-palette.yaml", + "coco-theme-DE-palette": "coco-theme-de-palette.yaml", + "coco-theme-ES-palette": "coco-theme-es-palette.yaml", + "coco-theme-FR-palette": "coco-theme-fr-palette.yaml", + "coco-theme-GB-palette": "coco-theme-gb-palette.yaml", + "coco-theme-IN-palette": "coco-theme-in-palette.yaml", + "coco-theme-Personnal-palette": "coco-theme-personnal-palette.yaml", + "coco-theme-SE-palette": "coco-theme-se-palette.yaml", + "coco-theme-TR-palette": "coco-theme-tr-palette.yaml", + "coco-theme-V1-palette": "coco-theme-v1-palette.yaml", + "cocoa": "cocoa.yaml", + "coconut": "coconut.yaml", + "coconut dark": "coconut-dark.yaml", + "Coda": "coda.yaml", + "Code Hunter - BluePurly": "code-hunter-bluepurly.yaml", + "Code Hunter - MagNum Purple": "code-hunter-magnum-purple.yaml", + "Code Hunter - Spruce Wind": "code-hunter-spruce-wind.yaml", + "Code Kraken ™ Theme": "code-kraken-theme.yaml", + "Code Red": "code-red.yaml", + "Code With Colors Pro - Midnight Purple": "code-with-colors-pro-midnight-purple.yaml", + "Code_Like_a_Rainbow": "code-like-a-rainbow.yaml", + "Code-Dadi Dark": "code-dadi-dark.yaml", + "Code-Dadi Lighter": "code-dadi-lighter.yaml", + "Code33": "code33.yaml", + "Codeastro Dark": "codeastro-dark.yaml", + "codebabel-theme-dark": "codebabel-theme-dark.yaml", + "codecourse": "codecourse.yaml", + "codecourse-contrast": "codecourse-contrast.yaml", + "codecourse-light": "codecourse-light.yaml", + "Codehesion Dark Theme": "codehesion-dark-theme.yaml", + "Codehesion Light Theme": "codehesion-light-theme.yaml", + "Codeify dark berry color theme": "codeify-dark-berry-color-theme.yaml", + "CodeItLive": "codeitlive.yaml", + "CodeItLive - Light": "codeitlive-light.yaml", + "Codelabs Inspired": "codelabs-inspired.yaml", + "Codellsby-NightOwl": "codellsby-nightowl.yaml", + "Codely Dark Theme": "codely-dark-theme.yaml", + "CodeMe": "codeme.yaml", + "Codeo": "codeo.yaml", + "Codeo Light": "codeo-light.yaml", + "codepdia": "codepdia.yaml", + "CodePen-Nights": "codepen-nights.yaml", + "CodePixel Modern Dark": "codepixel-modern-dark.yaml", + "Coder Coder Dark Redefined": "coder-coder-dark-redefined.yaml", + "Coder Vai Forest": "coder-vai-forest.yaml", + "Coder Vai Light": "coder-vai-light.yaml", + "Coder Vai Ocean": "coder-vai-ocean.yaml", + "Coder Vai Purple Haze": "coder-vai-purple-haze.yaml", + "Coder30": "coder30.yaml", + "CodeSandbox Theme": "codesandbox-theme.yaml", + "CodeSchool2 Minimal": "codeschool2-minimal.yaml", + "Codesso Unison (Beta)": "codesso-unison-beta.yaml", + "CodeTest": "codetest.yaml", + "codethread-black": "codethread-black.yaml", + "Codeuccino": "codeuccino.yaml", + "CodeVibe - Epic Theme": "codevibe-epic-theme.yaml", + "Codewithme - Dark CMYK": "codewithme-dark-cmyk.yaml", + "Codewithme-codex": "codewithme-codex.yaml", + "Codewithsg Dark Theme": "codewithsg-dark-theme.yaml", + "CodeXFlow Themes": "codexflow-themes.yaml", + "Codiefy optimas prime color theme": "codiefy-optimas-prime-color-theme.yaml", + "coding-light-theme": "coding-light-theme.yaml", + "cods": "cods.yaml", + "coelhiN-Smooth": "coelhin-smooth.yaml", + "coelhiN-Violet": "coelhin-violet.yaml", + "coffee": "coffee.yaml", + "coffee-contrast": "coffee-contrast.yaml", + "coffee-light": "coffee-light.yaml", + "coffeespace": "coffeespace.yaml", + "CoffeyScript Theme": "coffeyscript-theme.yaml", + "Cognac": "cognac.yaml", + "Coimbrox Minimalist Panda": "coimbrox-minimalist-panda.yaml", + "CoimbroxThmeDark": "coimbroxthmedark.yaml", + "Cold Night": "cold-night.yaml", + "Cold Python Theme": "cold-python-theme.yaml", + "Coldark - Cold": "coldark-cold.yaml", + "Coldark - Dark": "coldark-dark.yaml", + "Collapse": "collapse.yaml", + "Color Coffee Dark": "color-coffee-dark.yaml", + "Color Sea Blue": "color-sea-blue.yaml", + "Color Sea Gray": "color-sea-gray.yaml", + "Color Sea Green": "color-sea-green.yaml", + "Color Sea Orange": "color-sea-orange.yaml", + "Color Sea Purple": "color-sea-purple.yaml", + "Color Sea Red": "color-sea-red.yaml", + "Color Sea Yellow": "color-sea-yellow.yaml", + "Colora": "colora.yaml", + "Colorbars: blue": "colorbars-blue.yaml", + "Colorbars: green": "colorbars-green.yaml", + "Colorbars: orange": "colorbars-orange.yaml", + "Colorbars: purple": "colorbars-purple.yaml", + "Colorful Carbon": "colorful-carbon.yaml", + "Colorful Carbon Dark Knight": "colorful-carbon-dark-knight.yaml", + "Colorful Light": "colorful-light.yaml", + "Colorful-Dark - Fork": "colorful-dark-fork.yaml", + "colorful-dark-theme": "colorful-dark-theme.yaml", + "Colorizer": "colorizer.yaml", + "colors": "colors.yaml", + "colors.color-theme": "colors-color-theme.yaml", + "ColorShift Material Pro": "colorshift-material-pro.yaml", + "ColorShift Material Pro - Evening": "colorshift-material-pro-evening.yaml", + "ColorShift Material Pro - Morning": "colorshift-material-pro-morning.yaml", + "Colorways - Cheers (Soft)": "colorways-cheers-soft.yaml", + "Columbina - High Contrast": "columbina-high-contrast.yaml", + "comfy monokai": "comfy-monokai.yaml", + "ComfyEyes": "comfyeyes.yaml", + "commadoor": "commadoor.yaml", + "commadoor dark": "commadoor-dark.yaml", + "CommentsAreImportant": "commentsareimportant.yaml", + "Community-Material-Theme-Darker": "community-material-theme-darker.yaml", + "Community-Material-Theme-Default-High-Contrast": "community-material-theme-default-high-contrast.yaml", + "Community-Material-Theme-Lighter": "community-material-theme-lighter.yaml", + "Community-Material-Theme-Lighter-High-Contrast": "community-material-theme-lighter-high-contrast.yaml", + "Community-Material-Theme-Ocean-High-Contrast": "community-material-theme-ocean-high-contrast.yaml", + "Community-Material-Theme-Palenight-High-Contrast": "community-material-theme-palenight-high-contrast.yaml", + "Compline": "compline.yaml", + "component": "component.yaml", + "comrade": "comrade.yaml", + "comrade-contrast": "comrade-contrast.yaml", + "comrade-light": "comrade-light.yaml", + "Concoctis - Dark : Hard": "concoctis-dark-hard.yaml", + "Concoctis - Dark : Soft": "concoctis-dark-soft.yaml", + "Concoctis - Light : Hard": "concoctis-light-hard.yaml", + "Concoctis - Light : Soft": "concoctis-light-soft.yaml", + "Concrete": "concrete.yaml", + "Concrete Theme": "concrete-theme.yaml", + "Conifer Theme": "conifer-theme.yaml", + "Consolvis Dark Theme": "consolvis-dark-theme.yaml", + "Contrast kai": "contrast-kai.yaml", + "Cool Panda": "cool-panda.yaml", + "Cool with a C": "cool-with-a-c.yaml", + "Cooland": "cooland.yaml", + "coolnight-color-theme": "coolnight-color-theme.yaml", + "CoolShine": "coolshine.yaml", + "Copper Dark": "copper-dark.yaml", + "Corallike": "corallike.yaml", + "Corbatita": "corbatita.yaml", + "Corduroy": "corduroy.yaml", + "corgidarkpastel2": "corgidarkpastel2.yaml", + "corgidarkpastel3": "corgidarkpastel3.yaml", + "Corporate Dark Theme": "corporate-dark-theme.yaml", + "Cosmic": "cosmic.yaml", + "Cosmic Decay": "cosmic-decay.yaml", + "Cosmic Gleam: Darkest": "cosmic-gleam-darkest.yaml", + "Cosmic Iris": "cosmic-iris.yaml", + "Cosmic Purple": "cosmic-purple.yaml", + "Cosmic Sea": "cosmic-sea.yaml", + "Cosmical": "cosmical.yaml", + "Cosmico": "cosmico.yaml", + "cosmicsarthak Dark": "cosmicsarthak-dark.yaml", + "cosmicsarthak Night Owl": "cosmicsarthak-night-owl.yaml", + "cosmicsarthak Red": "cosmicsarthak-red.yaml", + "cosmicsarthak-neon": "cosmicsarthak-neon.yaml", + "Cosmo": "cosmo.yaml", + "cosmos": "cosmos.yaml", + "Cosmos Theme": "cosmos-theme.yaml", + "Coucou Theme": "coucou-theme.yaml", + "Couldpeak": "couldpeak.yaml", + "Cowboy Theme": "cowboy-theme.yaml", + "Cozy Evenings": "cozy-evenings.yaml", + "Cozy Mornings": "cozy-mornings.yaml", + "CPA Lions": "cpa-lions.yaml", + "cr-night-theme": "cr-night-theme.yaml", + "crackpot": "crackpot.yaml", + "crackpot-contrast": "crackpot-contrast.yaml", + "crackpot-light": "crackpot-light.yaml", + "Crafty Theme Dark Contrast": "crafty-theme-dark-contrast.yaml", + "CrazyDark": "crazydark.yaml", + "Cream Charcoal": "cream-charcoal.yaml", + "Creative Purple Colorblind - Innovation & Imagination": "creative-purple-colorblind-innovation-imagination.yaml", + "Creative Purple Light - Innovation & Imagination": "creative-purple-light-innovation-imagination.yaml", + "Crema": "crema.yaml", + "CRF Flamengo": "crf-flamengo.yaml", + "Crimson Sunset": "crimson-sunset.yaml", + "crisp": "crisp.yaml", + "crisp-contrast": "crisp-contrast.yaml", + "crisp-light": "crisp-light.yaml", + "Crow Dark": "crow-dark.yaml", + "Crowveil - Ayu": "crowveil-ayu.yaml", + "crt": "crt.yaml", + "CRT 64": "crt-64.yaml", + "CRT Amber": "crt-amber.yaml", + "CRT Apple": "crt-apple.yaml", + "CRT AppleIIc": "crt-appleiic.yaml", + "CRT Blue": "crt-blue.yaml", + "CRT Gray": "crt-gray.yaml", + "CRT Green": "crt-green.yaml", + "CRT Green1": "crt-green1.yaml", + "CRT Green2": "crt-green2.yaml", + "CRT Paper": "crt-paper.yaml", + "CRT Red": "crt-red.yaml", + "CRT-ALT": "crt-alt.yaml", + "Crypto": "crypto.yaml", + "Crystaltine's Crystalline 4.1": "crystaltine-s-crystalline-4-1.yaml", + "Crystaltine's Crystalline 5.0": "crystaltine-s-crystalline-5-0.yaml", + "cs50-light-theme": "cs50-light-theme.yaml", + "CSS Battle": "css-battle.yaml", + "Cucumber - Dark": "cucumber-dark.yaml", + "Cucumber - Light": "cucumber-light.yaml", + "Cupertino Dark": "cupertino-dark.yaml", + "Cupertino Light": "cupertino-light.yaml", + "Curry Dark": "curry-dark.yaml", + "Cursor Dark": "cursor-dark.yaml", + "Cursor Dark Anysphere v0.0.1": "cursor-dark-anysphere-v0-0-1.yaml", + "Cursor Less Dark": "cursor-less-dark.yaml", + "Cursor Light": "cursor-light.yaml", + "Cursor Night Theme": "cursor-night-theme.yaml", + "Cursor Night Theme Soft": "cursor-night-theme-soft.yaml", + "Cursor Theme": "cursor-theme.yaml", + "Custom Theme": "custom-theme.yaml", + "Custom Theme (dark)": "custom-theme-dark.yaml", + "Custom Theme (light)": "custom-theme-light.yaml", + "CustomMarkTheme": "custommarktheme.yaml", + "Cyan Dark": "cyan-dark.yaml", + "Cyber Dark": "cyber-dark.yaml", + "Cyber Light": "cyber-light.yaml", + "Cyber Light Soft": "cyber-light-soft.yaml", + "Cyber Light Warm": "cyber-light-warm.yaml", + "Cyber Pastel - Violet": "cyber-pastel-violet.yaml", + "Cyber Purple 77": "cyber-purple-77.yaml", + "Cyberblue": "cyberblue.yaml", + "CyberDude Black": "cyberdude-black.yaml", + "Cyberdyne Ghostty": "cyberdyne-ghostty.yaml", + "cybereternals-vscode-theme": "cybereternals-vscode-theme.yaml", + "Cyberlite - Fork": "cyberlite-fork.yaml", + "Cybermoon": "cybermoon.yaml", + "Cyberpink-137© Theme": "cyberpink-137-theme.yaml", + "Cyberpunk": "cyberpunk.yaml", + "CyberPunk 2077": "cyberpunk-2077.yaml", + "Cyberpunk 2077 - Night City Neon": "cyberpunk-2077-night-city-neon.yaml", + "Cyberpunk 2077 Reloaded": "cyberpunk-2077-reloaded.yaml", + "CyberpunkCygnus Clear Grid": "cyberpunkcygnus-clear-grid.yaml", + "CyberpunkCygnus Neon Pulse": "cyberpunkcygnus-neon-pulse.yaml", + "CyberpunkCygnus Solace Flare": "cyberpunkcygnus-solace-flare.yaml", + "Cybertrauma's": "cybertrauma-s.yaml", + "CyberTrauma's Dark Theme": "cybertrauma-s-dark-theme.yaml", + "CYBERTRONIX": "cybertronix.yaml", + "cyberui": "cyberui.yaml", + "cynical-color-theme": "cynical-color-theme.yaml", + "CyperpunkRebecca": "cyperpunkrebecca.yaml", + "D2T Dark": "d2t-dark.yaml", + "D2T Dark Clean": "d2t-dark-clean.yaml", + "Da3m0ns Dark (Italic)": "da3m0ns-dark-italic.yaml", + "Dafault": "dafault.yaml", + "dak-v1": "dak-v1.yaml", + "dalailahner-dark": "dalailahner-dark.yaml", + "Dalton": "dalton.yaml", + "Dan React Theme": "dan-react-theme.yaml", + "Dan-light-work": "dan-light-work.yaml", + "Dang-Jedi": "dang-jedi.yaml", + "DangerGray v2": "dangergray-v2.yaml", + "Dango theme": "dango-theme.yaml", + "danmo": "danmo.yaml", + "Dantes Theme": "dantes-theme.yaml", + "DanteTheme": "dantetheme.yaml", + "Darcula": "darcula.yaml", + "Darcula Contrast": "darcula-contrast.yaml", + "Darcula Contrast Min": "darcula-contrast-min.yaml", + "Darcula Dark Theme": "darcula-dark-theme.yaml", + "Darcula Void": "darcula-void.yaml", + "darcula-solid-color-theme": "darcula-solid-color-theme.yaml", + "DarculaCode": "darculacode.yaml", + "dare": "dare.yaml", + "dare-contrast": "dare-contrast.yaml", + "dare-light": "dare-light.yaml", + "dark": "dark.yaml", + "Dark": "dark.yaml", + "DARK": "dark.yaml", + "dark Plus moon lite": "dark-plus-moon-lite.yaml", + "Dark (molokai)": "dark-molokai.yaml", + "Dark Abyss": "dark-abyss.yaml", + "Dark Aura": "dark-aura.yaml", + "Dark Black Developer": "dark-black-developer.yaml", + "Dark Blue Theme": "dark-blue-theme.yaml", + "Dark Brown": "dark-brown.yaml", + "Dark Brown Theme": "dark-brown-theme.yaml", + "Dark Chai": "dark-chai.yaml", + "Dark Clean": "dark-clean.yaml", + "Dark Code - Fork": "dark-code-fork.yaml", + "Dark Coffee": "dark-coffee.yaml", + "Dark cool theme": "dark-cool-theme.yaml", + "Dark Decay": "dark-decay.yaml", + "Dark Discord VSCode": "dark-discord-vscode.yaml", + "Dark Dust Pro": "dark-dust-pro.yaml", + "Dark Edit+": "dark-edit.yaml", + "Dark Frost": "dark-frost.yaml", + "Dark Frost Midnight": "dark-frost-midnight.yaml", + "Dark Fury": "dark-fury.yaml", + "Dark Future Cyberpunk 2077": "dark-future-cyberpunk-2077.yaml", + "Dark Green Jungle": "dark-green-jungle.yaml", + "Dark Green Minimalist Theme": "dark-green-minimalist-theme.yaml", + "Dark Grey Theme": "dark-grey-theme.yaml", + "Dark Ink": "dark-ink.yaml", + "Dark Ink And Red Accents": "dark-ink-and-red-accents.yaml", + "Dark Ink Brighter": "dark-ink-brighter.yaml", + "Dark Ink Brightest": "dark-ink-brightest.yaml", + "Dark Ink Lighter": "dark-ink-lighter.yaml", + "Dark Jade": "dark-jade.yaml", + "Dark Lavender": "dark-lavender.yaml", + "Dark Lavender (Black)": "dark-lavender-black.yaml", + "Dark Lavender (Soft)": "dark-lavender-soft.yaml", + "Dark Lavender (Tailwind Soft)": "dark-lavender-tailwind-soft.yaml", + "Dark Lavender (Tailwind)": "dark-lavender-tailwind.yaml", + "Dark legibility": "dark-legibility.yaml", + "Dark Lime Flat": "dark-lime-flat.yaml", + "Dark Magic": "dark-magic.yaml", + "Dark Magic - Light": "dark-magic-light.yaml", + "Dark Magic Dracula": "dark-magic-dracula.yaml", + "Dark Magic Frankenstein": "dark-magic-frankenstein.yaml", + "Dark Magic Night": "dark-magic-night.yaml", + "Dark Magic Nord": "dark-magic-nord.yaml", + "Dark Magic Tokyo": "dark-magic-tokyo.yaml", + "Dark Marine": "dark-marine.yaml", + "Dark Matter Code Neptune Medium": "dark-matter-code-neptune-medium.yaml", + "Dark Minimal Lime Theme": "dark-minimal-lime-theme.yaml", + "Dark Minimal Theme(SM)": "dark-minimal-theme-sm.yaml", + "Dark Mode": "dark-mode.yaml", + "Dark Mode Lover": "dark-mode-lover.yaml", + "Dark Mode Lover - Wasp": "dark-mode-lover-wasp.yaml", + "Dark Mode VS": "dark-mode-vs.yaml", + "Dark Modern One without italics": "dark-modern-one-without-italics.yaml", + "Dark Modern+ | yuriyProgg": "dark-modern-yuriyprogg.yaml", + "Dark Mono": "dark-mono.yaml", + "Dark monokai": "dark-monokai.yaml", + "Dark Nebula": "dark-nebula.yaml", + "Dark Neon Theme(SM)": "dark-neon-theme-sm.yaml", + "Dark Night": "dark-night.yaml", + "Dark Ocean": "dark-ocean.yaml", + "Dark Ocean Sands": "dark-ocean-sands.yaml", + "Dark Orange": "dark-orange.yaml", + "Dark Owl Darker": "dark-owl-darker.yaml", + "Dark Pastel": "dark-pastel.yaml", + "Dark Pastel Pink": "dark-pastel-pink.yaml", + "Dark Petrol - Dev": "dark-petrol-dev.yaml", + "Dark Pie - Deep dark": "dark-pie-deep-dark.yaml", + "Dark Pink Theme": "dark-pink-theme.yaml", + "Dark Plus Chocolate": "dark-plus-chocolate.yaml", + "Dark Plus Oled Dim 100": "dark-plus-oled-dim-100.yaml", + "Dark Plus Oled Dim 75": "dark-plus-oled-dim-75.yaml", + "Dark Plus Oled Dim 80": "dark-plus-oled-dim-80.yaml", + "Dark Plus Oled Dim 85": "dark-plus-oled-dim-85.yaml", + "Dark Plus Oled Dim 90": "dark-plus-oled-dim-90.yaml", + "Dark Plus Oled Dim 95": "dark-plus-oled-dim-95.yaml", + "Dark Purple": "dark-purple.yaml", + "Dark Purple Flat": "dark-purple-flat.yaml", + "Dark Rainbow": "dark-rainbow.yaml", + "Dark Reader (Light)": "dark-reader-light.yaml", + "Dark Red Theme VS-Code": "dark-red-theme-vs-code.yaml", + "Dark Sand Theme": "dark-sand-theme.yaml", + "Dark Sea Green": "dark-sea-green.yaml", + "Dark Sky - Fork - Fork": "dark-sky-fork-fork.yaml", + "Dark Soft Theme(SM)": "dark-soft-theme-sm.yaml", + "Dark Springbok": "dark-springbok.yaml", + "Dark Terminal pro": "dark-terminal-pro.yaml", + "Dark Theme": "dark-theme.yaml", + "Dark Theme New": "dark-theme-new.yaml", + "Dark theme v2": "dark-theme-v2.yaml", + "Dark Vibes": "dark-vibes.yaml", + "Dark Yellow Flat": "dark-yellow-flat.yaml", + "Dark_Army": "dark-army.yaml", + "Dark_Readin_5": "dark-readin-5.yaml", + "Dark-amethyst": "dark-amethyst.yaml", + "dark-bqueiroz": "dark-bqueiroz.yaml", + "dark-color-theme": "dark-color-theme.yaml", + "dark-flow": "dark-flow.yaml", + "Dark-Green": "dark-green.yaml", + "dark-leocode-theme": "dark-leocode-theme.yaml", + "dark-mute": "dark-mute.yaml", + "dark-night-pro": "dark-night-pro.yaml", + "dark-ohnagi-2020": "dark-ohnagi-2020.yaml", + "dark-plus-syntax": "dark-plus-syntax.yaml", + "dark-purple": "dark-purple.yaml", + "dark-rblx-rian": "dark-rblx-rian.yaml", + "dark-solarin-2": "dark-solarin-2.yaml", + "dark-theme-blue": "dark-theme-blue.yaml", + "dark-theme-by-sanan": "dark-theme-by-sanan.yaml", + "dark-theme-default-by-luisfelipe": "dark-theme-default-by-luisfelipe.yaml", + "Dark-Wolf": "dark-wolf.yaml", + "dark.codely-theme": "dark-codely-theme.yaml", + "Dark/Purple": "dark-purple.yaml", + "Dark&Green energy": "dark-green-energy.yaml", + "Dark#": "dark.yaml", + "Dark+ Remix (Nord)": "dark-remix-nord.yaml", + "Dark+ Remix (One Dark)": "dark-remix-one-dark.yaml", + "Dark+ V3": "dark-v3.yaml", + "Dark+ Visual Studio": "dark-visual-studio.yaml", + "Darka": "darka.yaml", + "DarkAlchemy-Basic": "darkalchemy-basic.yaml", + "Darkalicious": "darkalicious.yaml", + "DarkASP": "darkasp.yaml", + "darkblue-theme": "darkblue-theme.yaml", + "darkbubble": "darkbubble.yaml", + "DarkButter": "darkbutter.yaml", + "darkdarkdark": "darkdarkdark.yaml", + "Darker Solarized": "darker-solarized.yaml", + "Darker Than Black": "darker-than-black.yaml", + "darkEST": "darkest.yaml", + "DarkestSide theme": "darkestside-theme.yaml", + "DarkFontenelesTheme": "darkfontenelestheme.yaml", + "DarkForest": "darkforest.yaml", + "DarkFusion": "darkfusion.yaml", + "DarkGreen": "darkgreen.yaml", + "DarkHeist": "darkheist.yaml", + "Darkish": "darkish.yaml", + "Darkit Astral": "darkit-astral.yaml", + "DarkJ": "darkj.yaml", + "DarkKnight": "darkknight.yaml", + "darklimeteal": "darklimeteal.yaml", + "darkLover": "darklover.yaml", + "Darkly": "darkly.yaml", + "Darkly Theme": "darkly-theme.yaml", + "darkness_of_my_soul": "darkness-of-my-soul.yaml", + "Darkness-color-theme": "darkness-color-theme.yaml", + "darko": "darko.yaml", + "darkoo": "darkoo.yaml", + "darkOrange": "darkorange.yaml", + "DarkPinkPro": "darkpinkpro.yaml", + "DarkPlastic": "darkplastic.yaml", + "DarkPurple": "darkpurple.yaml", + "Darkquark": "darkquark.yaml", + "Darkr - Green": "darkr-green.yaml", + "darkRed": "darkred.yaml", + "Darkroom": "darkroom.yaml", + "DarkRoy": "darkroy.yaml", + "DarkRoy Night": "darkroy-night.yaml", + "Darkrr - Green": "darkrr-green.yaml", + "Darkrrr - Green": "darkrrr-green.yaml", + "Darkrrrr - Green": "darkrrrr-green.yaml", + "Darkrrrrr - Green": "darkrrrrr-green.yaml", + "darkside": "darkside.yaml", + "darkside-contrast": "darkside-contrast.yaml", + "darkside-light": "darkside-light.yaml", + "Darksome": "darksome.yaml", + "DarkSpace": "darkspace.yaml", + "DarkStar": "darkstar.yaml", + "DarkStash": "darkstash.yaml", + "darktra": "darktra.yaml", + "Darkula": "darkula.yaml", + "Darkuto": "darkuto.yaml", + "darkvoid": "darkvoid.yaml", + "darkvoid ocean": "darkvoid-ocean.yaml", + "Darkwaves Cloud Lands": "darkwaves-cloud-lands.yaml", + "Darkwaves Gray Elegance": "darkwaves-gray-elegance.yaml", + "Darkwaves Spectrum": "darkwaves-spectrum.yaml", + "Darkwaves: Ashen Core": "darkwaves-ashen-core.yaml", + "Darkwaves: Celestial Mist": "darkwaves-celestial-mist.yaml", + "Darkwaves: Driftwood": "darkwaves-driftwood.yaml", + "Darkwaves: Forge": "darkwaves-forge.yaml", + "Darkwaves: Nebula": "darkwaves-nebula.yaml", + "Darkwaves: Obsidian": "darkwaves-obsidian.yaml", + "Darkwind Default": "darkwind-default.yaml", + "Darky Purple": "darky-purple.yaml", + "Darky Purple Storm": "darky-purple-storm.yaml", + "darkyamaris": "darkyamaris.yaml", + "Darth Insidious": "darth-insidious.yaml", + "Darth Invader": "darth-invader.yaml", + "darthbuddy": "darthbuddy.yaml", + "DartPad Candy": "dartpad-candy.yaml", + "daru": "daru.yaml", + "Darwin": "darwin.yaml", + "DarXmon": "darxmon.yaml", + "Dashxe": "dashxe.yaml", + "Davi Lacerda Dark": "davi-lacerda-dark.yaml", + "Davi Lacerda Light": "davi-lacerda-light.yaml", + "david": "david.yaml", + "DavionTheme": "daviontheme.yaml", + "DawnBlush": "dawnblush.yaml", + "day": "day.yaml", + "Day 'n' Nite": "day-n-nite.yaml", + "Dayfox": "dayfox.yaml", + "DaysOfWineAndRoses": "daysofwineandroses.yaml", + "dbt Fusion": "dbt-fusion.yaml", + "DBT Inspired Dark Theme": "dbt-inspired-dark-theme.yaml", + "DBT Inspired Light Theme": "dbt-inspired-light-theme.yaml", + "DcDevThemeRed": "dcdevthemered.yaml", + "deadbeef": "deadbeef.yaml", + "DeadPool": "deadpool.yaml", + "Deaving-Theme": "deaving-theme.yaml", + "Decayce": "decayce.yaml", + "Deco": "deco.yaml", + "Deeold": "deeold.yaml", + "Deep Dark": "deep-dark.yaml", + "Deep Indigo - Wisdom & Intuition": "deep-indigo-wisdom-intuition.yaml", + "Deep ocean": "deep-ocean.yaml", + "Deep Ocean": "deep-ocean.yaml", + "Deep Purple": "deep-purple.yaml", + "Deep Purple - Fork": "deep-purple-fork.yaml", + "Deep Purple - Fork - Fork": "deep-purple-fork-fork.yaml", + "Deep Rainforest": "deep-rainforest.yaml", + "Deep Space Dark": "deep-space-dark.yaml", + "deep-purple-theme": "deep-purple-theme.yaml", + "DeepWave": "deepwave.yaml", + "Deepwoods Autumn Needles Italic": "deepwoods-autumn-needles-italic.yaml", + "Deepwoods Frosted Pines Italic": "deepwoods-frosted-pines-italic.yaml", + "Deepwoods High Canopy Italic": "deepwoods-high-canopy-italic.yaml", + "Deepwoods Spring Thaw Italic": "deepwoods-spring-thaw-italic.yaml", + "Default dimmed": "default-dimmed.yaml", + "Default Enhanced": "default-enhanced.yaml", + "default_theme": "default-theme.yaml", + "defaults": "defaults.yaml", + "defdo base": "defdo-base.yaml", + "defdo halloween": "defdo-halloween.yaml", + "Definetely Not Github's Theme": "definetely-not-github-s-theme.yaml", + "Definition-theme2023": "definition-theme2023.yaml", + "dejaypiii": "dejaypiii.yaml", + "Dekirisu's Rust Theme": "dekirisu-s-rust-theme.yaml", + "Demon Dark Pro": "demon-dark-pro.yaml", + "Demon Light Pro": "demon-light-pro.yaml", + "Demon Slayer Light Theme": "demon-slayer-light-theme.yaml", + "Denian Theme": "denian-theme.yaml", + "Desert": "desert.yaml", + "DesignCourse Theme": "designcourse-theme.yaml", + "designONEv2": "designonev2.yaml", + "Dessert": "dessert.yaml", + "Deus Ex - MD - Dark": "deus-ex-md-dark.yaml", + "Dev Theme Pro — 🌊 Ocean ☁️ Mist": "dev-theme-pro-ocean-mist.yaml", + "Dev Theme Pro — 🌊 Ocean ✨ Void": "dev-theme-pro-ocean-void.yaml", + "Dev Theme Pro — 🔮 Nebula ☁️ Mist": "dev-theme-pro-nebula-mist.yaml", + "Dev Theme Pro — 🔮 Nebula ✨ Void": "dev-theme-pro-nebula-void.yaml", + "dev-theme": "dev-theme.yaml", + "dev.tachgurbanov": "dev-tachgurbanov.yaml", + "Dev+ Dark - Fork - Fork": "dev-dark-fork-fork.yaml", + "DevCode+": "devcode.yaml", + "DevDojo Seppuku": "devdojo-seppuku.yaml", + "Develer Dark": "develer-dark.yaml", + "Developers theme - Fork": "developers-theme-fork.yaml", + "DevMedia Dark": "devmedia-dark.yaml", + "DevMedia Dark Modern": "devmedia-dark-modern.yaml", + "DevMedia Light": "devmedia-light.yaml", + "DevR": "devr.yaml", + "DevSena (ultra dark)": "devsena-ultra-dark.yaml", + "devTheme": "devtheme.yaml", + "DevTheme": "devtheme.yaml", + "DevX Dark": "devx-dark.yaml", + "DEW-GREY": "dew-grey.yaml", + "DFP-IDLE": "dfp-idle.yaml", + "Dhamma Dark": "dhamma-dark.yaml", + "Dhamma Light": "dhamma-light.yaml", + "dharam-gfx-amethyst": "dharam-gfx-amethyst.yaml", + "dharam-gfx-anthracite": "dharam-gfx-anthracite.yaml", + "dharam-gfx-arc-blueberry": "dharam-gfx-arc-blueberry.yaml", + "dharam-gfx-arc-eggplant": "dharam-gfx-arc-eggplant.yaml", + "dharam-gfx-arc-reversed": "dharam-gfx-arc-reversed.yaml", + "dharam-gfx-hacker-theme": "dharam-gfx-hacker-theme.yaml", + "Dharam-gfx-Hight-Contrast": "dharam-gfx-hight-contrast.yaml", + "dharam-gfx-webdevcody": "dharam-gfx-webdevcody.yaml", + "Diabo Theme": "diabo-theme.yaml", + "Diamond Theme": "diamond-theme.yaml", + "digitaliss Italic": "digitaliss-italic.yaml", + "digitaliss Light Italic": "digitaliss-light-italic.yaml", + "digitaliss Pastel Italic": "digitaliss-pastel-italic.yaml", + "Dimi Theme (Dark)": "dimi-theme-dark.yaml", + "Dimi Theme (Darker)": "dimi-theme-darker.yaml", + "Dimmed": "dimmed.yaml", + "Dimmed Dark Theme": "dimmed-dark-theme.yaml", + "Dimmed Theme": "dimmed-theme.yaml", + "Dioximo Dark": "dioximo-dark.yaml", + "Dioximo Light": "dioximo-light.yaml", + "Discord Onyx": "discord-onyx.yaml", + "Discord Theme": "discord-theme.yaml", + "dislexic": "dislexic.yaml", + "Div's Theme": "div-s-theme.yaml", + "Dive Bar": "dive-bar.yaml", + "DJ's Purple": "dj-s-purple.yaml", + "Djolof": "djolof.yaml", + "DNA Helix": "dna-helix.yaml", + "DoDimmed Dark": "dodimmed-dark.yaml", + "Doli Universal": "doli-universal.yaml", + "Doli Visual Studio": "doli-visual-studio.yaml", + "Dominator Paralyzer": "dominator-paralyzer.yaml", + "DomTheme": "domtheme.yaml", + "Doom One": "doom-one.yaml", + "Doom One Dark": "doom-one-dark.yaml", + "Doom One Light": "doom-one-light.yaml", + "DooshTheme": "dooshtheme.yaml", + "dork": "dork.yaml", + "Dorkmode": "dorkmode.yaml", + "Dot Developer (Dark)": "dot-developer-dark.yaml", + "dotPortal": "dotportal.yaml", + "downpour": "downpour.yaml", + "downpour-contrast": "downpour-contrast.yaml", + "downpour-light": "downpour-light.yaml", + "Doxa Code Color Theme": "doxa-code-color-theme.yaml", + "DoYouBleed": "doyoubleed.yaml", + "Dr. Jones": "dr-jones.yaml", + "Draco-dark": "draco-dark.yaml", + "Draconica": "draconica.yaml", + "Dracula": "dracula.yaml", + "Dracula At Dusk": "dracula-at-dusk.yaml", + "Dracula At Midnight": "dracula-at-midnight.yaml", + "Dracula At Night": "dracula-at-night.yaml", + "Dracula Clean": "dracula-clean.yaml", + "Dracula Falcon": "dracula-falcon.yaml", + "Dracula High Contract": "dracula-high-contract.yaml", + "Dracula Light": "dracula-light.yaml", + "Dracula Midnight": "dracula-midnight.yaml", + "Dracula Pro Black": "dracula-pro-black.yaml", + "dracula-dimmed-color-theme": "dracula-dimmed-color-theme.yaml", + "dracula-gray": "dracula-gray.yaml", + "dracula-soft": "dracula-soft.yaml", + "Dracula.min Light Darker Theme": "dracula-min-light-darker-theme.yaml", + "Dracula.min Light Theme": "dracula-min-light-theme.yaml", + "Dracula.min White Darker Theme": "dracula-min-white-darker-theme.yaml", + "Dracula.min White Theme": "dracula-min-white-theme.yaml", + "Draculight": "draculight.yaml", + "Draculish": "draculish.yaml", + "Dragn Dark Color Theme": "dragn-dark-color-theme.yaml", + "Dragon": "dragon.yaml", + "Dragonfly": "dragonfly.yaml", + "Dragonight": "dragonight.yaml", + "DrakenCord Blue - Fork": "drakencord-blue-fork.yaml", + "Drakkar": "drakkar.yaml", + "Draquinho": "draquinho.yaml", + "Drasing Dark": "drasing-dark.yaml", + "Dreadbots - Fork": "dreadbots-fork.yaml", + "dreamer-theme": "dreamer-theme.yaml", + "Dreamy Lights": "dreamy-lights.yaml", + "Dribbble Theme - Light": "dribbble-theme-light.yaml", + "Drifter": "drifter.yaml", + "drk": "drk.yaml", + "Drukyul Dark": "drukyul-dark.yaml", + "Drukyul Light": "drukyul-light.yaml", + "Drux Theme": "drux-theme.yaml", + "DS Rose": "ds-rose.yaml", + "Duck in the Dream": "duck-in-the-dream.yaml", + "Duck in the Lake": "duck-in-the-lake.yaml", + "Duck Story": "duck-story.yaml", + "duckcash": "duckcash.yaml", + "Duckcash": "duckcash.yaml", + "DuckDevLabs": "duckdevlabs.yaml", + "Duckeys blurple": "duckeys-blurple.yaml", + "Ducks": "ducks.yaml", + "Ducky Light": "ducky-light.yaml", + "Dukana": "dukana.yaml", + "DukeMonokai-color-theme": "dukemonokai-color-theme.yaml", + "dull-sun": "dull-sun.yaml", + "dull-sun-dark": "dull-sun-dark.yaml", + "dull-sun-light": "dull-sun-light.yaml", + "Dune Arrakis Incandescent": "dune-arrakis-incandescent.yaml", + "Dune Bene Gesserit": "dune-bene-gesserit.yaml", + "Dune Caladan Storm": "dune-caladan-storm.yaml", + "Dune Fremen Sietch": "dune-fremen-sietch.yaml", + "Dune Giedi Prime": "dune-giedi-prime.yaml", + "Dune Guild Navigator": "dune-guild-navigator.yaml", + "Dune Harkonnen": "dune-harkonnen.yaml", + "Dune House Atreides": "dune-house-atreides.yaml", + "Dune Ix Technology": "dune-ix-technology.yaml", + "Dune Mentat": "dune-mentat.yaml", + "Dune Muad'Dib": "dune-muad-dib.yaml", + "Dune Salusa Secundus": "dune-salusa-secundus.yaml", + "Dune Sandworm": "dune-sandworm.yaml", + "Dune Sardaukar Imperial": "dune-sardaukar-imperial.yaml", + "Dune Spacing Guild": "dune-spacing-guild.yaml", + "Dune Spice Vision": "dune-spice-vision.yaml", + "Dune Water of Life": "dune-water-of-life.yaml", + "dune-kaitain": "dune-kaitain.yaml", + "Duomage": "duomage.yaml", + "Durgonix Dark": "durgonix-dark.yaml", + "Dusk": "dusk.yaml", + "Dusk Rider": "dusk-rider.yaml", + "Duskfox": "duskfox.yaml", + "DutchTheme": "dutchtheme.yaml", + "dynamic": "dynamic.yaml", + "Dyno": "dyno.yaml", + "Dyno cute": "dyno-cute.yaml", + "DzSolarized": "dzsolarized.yaml", + "DzSolarized Dark": "dzsolarized-dark.yaml", + "Earl Grey": "earl-grey.yaml", + "Early Riser": "early-riser.yaml", + "Earth Brown - Stability & Grounding": "earth-brown-stability-grounding.yaml", + "Earth Collection": "earth-collection.yaml", + "earthsong": "earthsong.yaml", + "earthsong-contrast": "earthsong-contrast.yaml", + "earthsong-light": "earthsong-light.yaml", + "Easy Eye": "easy-eye.yaml", + "Easy Light": "easy-light.yaml", + "easy-eyes-color-theme": "easy-eyes-color-theme.yaml", + "Ebizome": "ebizome.yaml", + "Ebullience": "ebullience.yaml", + "Eclipsa": "eclipsa.yaml", + "Eclipse Dark Darker": "eclipse-dark-darker.yaml", + "Eclipse Dark Flat": "eclipse-dark-flat.yaml", + "Eclipse Flare": "eclipse-flare.yaml", + "Eclipse Optics": "eclipse-optics.yaml", + "Eclipse Penumbra": "eclipse-penumbra.yaml", + "Eclipse Umbra": "eclipse-umbra.yaml", + "Edge Dark": "edge-dark.yaml", + "Edge Dark (Aura)": "edge-dark-aura.yaml", + "Edge Dark (Neon)": "edge-dark-neon.yaml", + "Edge Light": "edge-light.yaml", + "Edgerunner": "edgerunner.yaml", + "Editor": "editor.yaml", + "Edu4Dev - VSCode Theme Color": "edu4dev-vscode-theme-color.yaml", + "Eerie": "eerie.yaml", + "eezoterial dark": "eezoterial-dark.yaml", + "eezoterial light": "eezoterial-light.yaml", + "Ef Arbutus": "ef-arbutus.yaml", + "Ef Autumn": "ef-autumn.yaml", + "Ef Bio": "ef-bio.yaml", + "Ef Cherie": "ef-cherie.yaml", + "Ef Cyprus": "ef-cyprus.yaml", + "Ef Dark": "ef-dark.yaml", + "Ef Day": "ef-day.yaml", + "Ef Deuteranopia Dark": "ef-deuteranopia-dark.yaml", + "Ef Deuteranopia Light": "ef-deuteranopia-light.yaml", + "Ef Dream": "ef-dream.yaml", + "Ef Duo Dark": "ef-duo-dark.yaml", + "Ef Duo Light": "ef-duo-light.yaml", + "Ef Eagle": "ef-eagle.yaml", + "Ef Elea Dark": "ef-elea-dark.yaml", + "Ef Elea Light": "ef-elea-light.yaml", + "Ef Frost": "ef-frost.yaml", + "Ef Kassio": "ef-kassio.yaml", + "Ef Light": "ef-light.yaml", + "Ef Maris Dark": "ef-maris-dark.yaml", + "Ef Maris Light": "ef-maris-light.yaml", + "Ef Melissa Dark": "ef-melissa-dark.yaml", + "Ef Melissa Light": "ef-melissa-light.yaml", + "Ef Night": "ef-night.yaml", + "Ef Owl": "ef-owl.yaml", + "Ef Reverie": "ef-reverie.yaml", + "Ef Rosa": "ef-rosa.yaml", + "Ef Spring": "ef-spring.yaml", + "Ef Summer": "ef-summer.yaml", + "Ef Symbiosis": "ef-symbiosis.yaml", + "Ef Trio Dark": "ef-trio-dark.yaml", + "Ef Trio Light": "ef-trio-light.yaml", + "Ef Tritanopia Dark": "ef-tritanopia-dark.yaml", + "Ef Tritanopia Light": "ef-tritanopia-light.yaml", + "Ef Winter": "ef-winter.yaml", + "EggsPlo1t": "eggsplo1t.yaml", + "Eh's Website Theme": "eh-s-website-theme.yaml", + "Eidolon Alter": "eidolon-alter.yaml", + "Eidolon Less Dark": "eidolon-less-dark.yaml", + "eigen-color-theme": "eigen-color-theme.yaml", + "Ein": "ein.yaml", + "eink": "eink.yaml", + "Ekim": "ekim.yaml", + "Eldar1984": "eldar1984.yaml", + "Elderberry": "elderberry.yaml", + "Eldritch": "eldritch.yaml", + "Eldritch Dark": "eldritch-dark.yaml", + "Electric Blue": "electric-blue.yaml", + "Electric Dreams": "electric-dreams.yaml", + "electric labs": "electric-labs.yaml", + "Electric Night": "electric-night.yaml", + "Electric Sheep": "electric-sheep.yaml", + "Electric Violet - Fork": "electric-violet-fork.yaml", + "Electron Highlighter": "electron-highlighter.yaml", + "Electron vue": "electron-vue.yaml", + "Electronic Moonlight Theme + borders": "electronic-moonlight-theme-borders.yaml", + "ELEGANCEu": "eleganceu.yaml", + "Elegant Black": "elegant-black.yaml", + "Elegant Red": "elegant-red.yaml", + "ElegantError404": "eleganterror404.yaml", + "Elementary": "elementary.yaml", + "ElementOwl": "elementowl.yaml", + "Elements": "elements.yaml", + "Elf Dream": "elf-dream.yaml", + "Elhassan Neon Cyan": "elhassan-neon-cyan.yaml", + "Elhassan Neon Dark Professional": "elhassan-neon-dark-professional.yaml", + "Elhassan Neon Light Professional": "elhassan-neon-light-professional.yaml", + "Elhassan Neon Magenta": "elhassan-neon-magenta.yaml", + "Elhassan Neon Purple": "elhassan-neon-purple.yaml", + "elixir-theme-no-italics": "elixir-theme-no-italics.yaml", + "elixir-theme-no-italics-less-dark-2": "elixir-theme-no-italics-less-dark-2.yaml", + "elly": "elly.yaml", + "Elypink Dark": "elypink-dark.yaml", + "Elypink Dark (Faded)": "elypink-dark-faded.yaml", + "Elypink Light": "elypink-light.yaml", + "Elypink Light (Diamond)": "elypink-light-diamond.yaml", + "Elypink Light (Faded)": "elypink-light-faded.yaml", + "Elypink Light (Spring)": "elypink-light-spring.yaml", + "Elypink Light (Summer)": "elypink-light-summer.yaml", + "Ember": "ember.yaml", + "Emberstone": "emberstone.yaml", + "Emberstone-dark-theme": "emberstone-dark-theme.yaml", + "Emerald": "emerald.yaml", + "EMERALD - Fork": "emerald-fork.yaml", + "Emerald Matrix": "emerald-matrix.yaml", + "Emeralds": "emeralds.yaml", + "Emi Theme": "emi-theme.yaml", + "Enchant": "enchant.yaml", + "Enchant - High Contrast": "enchant-high-contrast.yaml", + "ENCOM": "encom.yaml", + "End-color-theme": "end-color-theme.yaml", + "EndeavourOS Breeze Dark": "endeavouros-breeze-dark.yaml", + "EndeavourOS Dark High Contrast": "endeavouros-dark-high-contrast.yaml", + "EndeavourOS Dark Night Shift": "endeavouros-dark-night-shift.yaml", + "Endless Iris": "endless-iris.yaml", + "Energy Red Colorblind - Passion & Alertness": "energy-red-colorblind-passion-alertness.yaml", + "Energy Red Light - Passion & Alertness": "energy-red-light-passion-alertness.yaml", + "Enhanced HubSpot Theme": "enhanced-hubspot-theme.yaml", + "Enhanced Material": "enhanced-material.yaml", + "Enhanced Material - Batman": "enhanced-material-batman.yaml", + "Enhanced Material - Fork": "enhanced-material-fork.yaml", + "Enki": "enki.yaml", + "Enki Night Owl": "enki-night-owl.yaml", + "Enki Rainbow Bro": "enki-rainbow-bro.yaml", + "Enki Red": "enki-red.yaml", + "Enough": "enough.yaml", + "Enova": "enova.yaml", + "Entardecer": "entardecer.yaml", + "Entropic Theme": "entropic-theme.yaml", + "Eon React": "eon-react.yaml", + "Eon Theme": "eon-theme.yaml", + "Eon Theme Second": "eon-theme-second.yaml", + "Eon Theme v4": "eon-theme-v4.yaml", + "Epsilon": "epsilon.yaml", + "Equinox Dark": "equinox-dark.yaml", + "Equinox Light": "equinox-light.yaml", + "Eralith": "eralith.yaml", + "ErikWDevTheme-color-theme": "erikwdevtheme-color-theme.yaml", + "eritbh's theme": "eritbh-s-theme.yaml", + "ErrorDark": "errordark.yaml", + "errrrrm": "errrrrm.yaml", + "escook-theme-light": "escook-theme-light.yaml", + "Espresso Dark": "espresso-dark.yaml", + "Espresso Dark Theme": "espresso-dark-theme.yaml", + "Etec PFA - Light": "etec-pfa-light.yaml", + "Eternal Autumn": "eternal-autumn.yaml", + "Eternal Summer": "eternal-summer.yaml", + "Eternals No Italic": "eternals-no-italic.yaml", + "EthanLi Turquoise Dark": "ethanli-turquoise-dark.yaml", + "ethereal": "ethereal.yaml", + "Ethereum Dark Blue Theme": "ethereum-dark-blue-theme.yaml", + "Ethereum Dark Grey Theme": "ethereum-dark-grey-theme.yaml", + "EVA Unit-02 Theme (Enhanced Red & Grey Variation)": "eva-unit-02-theme-enhanced-red-grey-variation.yaml", + "EVA-01": "eva-01.yaml", + "EVA-01 Berserk Theme": "eva-01-berserk-theme.yaml", + "EVANS": "evans.yaml", + "evans-dark-theme": "evans-dark-theme.yaml", + "Eve": "eve.yaml", + "Evening Sky": "evening-sky.yaml", + "Everforest Dark": "everforest-dark.yaml", + "Everforest Light": "everforest-light.yaml", + "Everforest Pro Dark Cozy": "everforest-pro-dark-cozy.yaml", + "Everforest Pro Dark Vibrant": "everforest-pro-dark-vibrant.yaml", + "Everforest Pro Light Cozy": "everforest-pro-light-cozy.yaml", + "Everforest Pro Light Vibrant": "everforest-pro-light-vibrant.yaml", + "Everforest Soft": "everforest-soft.yaml", + "Evergarden": "evergarden.yaml", + "Evergarden Winter": "evergarden-winter.yaml", + "Evergarden Winter Light": "evergarden-winter-light.yaml", + "EverNex": "evernex.yaml", + "Evex Dark": "evex-dark.yaml", + "Evondev Minimal Theme": "evondev-minimal-theme.yaml", + "Evondev Tailwind Theme": "evondev-tailwind-theme.yaml", + "Evro Dark": "evro-dark.yaml", + "Evro Darker Flat": "evro-darker-flat.yaml", + "ExalandDark": "exalanddark.yaml", + "ExecLabs": "execlabs.yaml", + "Exias Theme (Colorful)": "exias-theme-colorful.yaml", + "Exias Theme (Town)": "exias-theme-town.yaml", + "exile": "exile.yaml", + "exploit": "exploit.yaml", + "Extreme Dark Theme": "extreme-dark-theme.yaml", + "Eye Care Dark": "eye-care-dark.yaml", + "Eye Care Light": "eye-care-light.yaml", + "Eye Comfort Light": "eye-comfort-light.yaml", + "eye-care": "eye-care.yaml", + "EyeBreaker": "eyebreaker.yaml", + "EyeCooler": "eyecooler.yaml", + "EyeGuard": "eyeguard.yaml", + "EyeHealth Dark": "eyehealth-dark.yaml", + "EyeHealth Plus Light": "eyehealth-plus-light.yaml", + "Eyera": "eyera.yaml", + "Eyesore": "eyesore.yaml", + "ezcord": "ezcord.yaml", + "ezcord-highcontrast": "ezcord-highcontrast.yaml", + "ezcord-light": "ezcord-light.yaml", + "ezcord-pastel": "ezcord-pastel.yaml", + "ezgiturali-halloween": "ezgiturali-halloween.yaml", + "Ezra": "ezra.yaml", + "Fabi": "fabi.yaml", + "FabulApps Theme": "fabulapps-theme.yaml", + "Fabulous Las Vegas — After Dark": "fabulous-las-vegas-after-dark.yaml", + "Fabulous Las Vegas — High Noon": "fabulous-las-vegas-high-noon.yaml", + "FADY EHAB AMER DARK THEME": "fady-ehab-amer-dark-theme.yaml", + "Faerie.Online": "faerie-online.yaml", + "FakeDonald's": "fakedonald-s.yaml", + "Falcon": "falcon.yaml", + "FalconUI Theme": "falconui-theme.yaml", + "fallout-theme": "fallout-theme.yaml", + "Famous Dev Light": "famous-dev-light.yaml", + "Famous Dev Midnight": "famous-dev-midnight.yaml", + "Fanuc Karel": "fanuc-karel.yaml", + "fcc0ff": "fcc0ff.yaml", + "fcode": "fcode.yaml", + "Fearless Dark": "fearless-dark.yaml", + "Feefoolec 2.0": "feefoolec-2-0.yaml", + "Feels Like Progress Light": "feels-like-progress-light.yaml", + "Felina": "felina.yaml", + "Feline-color-theme": "feline-color-theme.yaml", + "Feline-theme": "feline-theme.yaml", + "felixo-green": "felixo-green.yaml", + "felixo-green-contrast": "felixo-green-contrast.yaml", + "felixo-green-light": "felixo-green-light.yaml", + "felixo-orange": "felixo-orange.yaml", + "felixo-orange-contrast": "felixo-orange-contrast.yaml", + "felixo-orange-light": "felixo-orange-light.yaml", + "Felixoux-theme": "felixoux-theme.yaml", + "Feliz-Dark": "feliz-dark.yaml", + "ferra": "ferra.yaml", + "feta": "feta.yaml", + "FictionalTheme": "fictionaltheme.yaml", + "Fiestas": "fiestas.yaml", + "fifties": "fifties.yaml", + "Fifty Shades of Grape": "fifty-shades-of-grape.yaml", + "filtered": "filtered.yaml", + "FinalBossJeff": "finalbossjeff.yaml", + "finn4ik666corp": "finn4ik666corp.yaml", + "Firefly": "firefly.yaml", + "FireFly": "firefly.yaml", + "Firefox Dark": "firefox-dark.yaml", + "Firelight": "firelight.yaml", + "firewatch": "firewatch.yaml", + "FlameLabs - Argo": "flamelabs-argo.yaml", + "FlameLabs - Fire": "flamelabs-fire.yaml", + "FlameLabs - Plasma": "flamelabs-plasma.yaml", + "Flamingo Galaxy": "flamingo-galaxy.yaml", + "Flashbang": "flashbang.yaml", + "Flat Light": "flat-light.yaml", + "Flat UI & One Dark": "flat-ui-one-dark.yaml", + "Flat-Theme Gray": "flat-theme-gray.yaml", + "Flat-Theme Light": "flat-theme-light.yaml", + "flat-ui immersed": "flat-ui-immersed.yaml", + "Flatcap": "flatcap.yaml", + "Flatland Monokai Improved - No Cursor Highlight": "flatland-monokai-improved-no-cursor-highlight.yaml", + "FlatUIexp": "flatuiexp.yaml", + "Flavia": "flavia.yaml", + "Fleetish": "fleetish.yaml", + "FleetOneDark": "fleetonedark.yaml", + "Fleety": "fleety.yaml", + "Fleex Theme Dark": "fleex-theme-dark.yaml", + "Fleex Theme Forest Dark": "fleex-theme-forest-dark.yaml", + "Fleex Theme Forest Light": "fleex-theme-forest-light.yaml", + "Fleex Theme Light": "fleex-theme-light.yaml", + "Fleex Theme Mist Dark": "fleex-theme-mist-dark.yaml", + "Fleex Theme Mist Light": "fleex-theme-mist-light.yaml", + "Fleex Theme Ocean Dark": "fleex-theme-ocean-dark.yaml", + "Fleex Theme Ocean Light": "fleex-theme-ocean-light.yaml", + "Fleex Theme Plum Dark": "fleex-theme-plum-dark.yaml", + "Fleex Theme Plum Light": "fleex-theme-plum-light.yaml", + "Fleex Theme Rose Dark": "fleex-theme-rose-dark.yaml", + "Fleex Theme Rose Light": "fleex-theme-rose-light.yaml", + "Fleex Theme Sand Dark": "fleex-theme-sand-dark.yaml", + "Fleex Theme Sand Light": "fleex-theme-sand-light.yaml", + "Fleex Theme Warm Dark": "fleex-theme-warm-dark.yaml", + "Fleex Theme Warm Light": "fleex-theme-warm-light.yaml", + "Fleury Theme": "fleury-theme.yaml", + "Flex Appeal": "flex-appeal.yaml", + "Flexoki": "flexoki.yaml", + "Flora": "flora.yaml", + "florence": "florence.yaml", + "floriamaris": "floriamaris.yaml", + "Florist Light": "florist-light.yaml", + "florist-dark": "florist-dark.yaml", + "Flow Light": "flow-light.yaml", + "flow-better-theme": "flow-better-theme.yaml", + "Fluffy Dark Theme": "fluffy-dark-theme.yaml", + "Fluffy Theme": "fluffy-theme.yaml", + "Fluid Light Theme": "fluid-light-theme.yaml", + "FlukerBr-theme": "flukerbr-theme.yaml", + "Fluminense": "fluminense.yaml", + "Flutter Dark": "flutter-dark.yaml", + "Flutter-Theme-Dark": "flutter-theme-dark.yaml", + "Flux": "flux.yaml", + "Flux Dark": "flux-dark.yaml", + "Flux Dawn": "flux-dawn.yaml", + "Flux Daylight": "flux-daylight.yaml", + "Flux Night": "flux-night.yaml", + "Flux Twilight": "flux-twilight.yaml", + "Fluxish": "fluxish.yaml", + "Foco 1.0.0": "foco-1-0-0.yaml", + "Focus Blue - Concentration & Trust": "focus-blue-concentration-trust.yaml", + "Focus Blue Colorblind - Concentration & Trust": "focus-blue-colorblind-concentration-trust.yaml", + "Focus Blue High Contrast - Concentration & Trust": "focus-blue-high-contrast-concentration-trust.yaml", + "Focus Blue Light - Concentration & Trust": "focus-blue-light-concentration-trust.yaml", + "Focus Dark - Fork - Fork": "focus-dark-fork-fork.yaml", + "Focus-Colors": "focus-colors.yaml", + "focusOnCoding": "focusoncoding.yaml", + "fodder": "fodder.yaml", + "fodder-contrast": "fodder-contrast.yaml", + "fodder-light": "fodder-light.yaml", + "Fog Hazy": "fog-hazy.yaml", + "Foggy Forest V1": "foggy-forest-v1.yaml", + "Foggy Minimal": "foggy-minimal.yaml", + "fonteeboa": "fonteeboa.yaml", + "Forest Green": "forest-green.yaml", + "Forest Green - Vitality & Connection": "forest-green-vitality-connection.yaml", + "forest light": "forest-light.yaml", + "Forest Night": "forest-night.yaml", + "Forest Night - Ethereal Magic": "forest-night-ethereal-magic.yaml", + "Forest Night (Italic) Serenade": "forest-night-italic-serenade.yaml", + "Forest Night Serenade": "forest-night-serenade.yaml", + "Forest Rose": "forest-rose.yaml", + "Forest Violet": "forest-violet.yaml", + "forest-color-theme": "forest-color-theme.yaml", + "forestfly Dark": "forestfly-dark.yaml", + "forestfly Dark Hard": "forestfly-dark-hard.yaml", + "forestfly Light Hard": "forestfly-light-hard.yaml", + "ForestLook": "forestlook.yaml", + "Forestry": "forestry.yaml", + "Forge (Dark)": "forge-dark.yaml", + "Forge (Light)": "forge-light.yaml", + "Formal": "formal.yaml", + "Formosa Dark - Ipanema Blue": "formosa-dark-ipanema-blue.yaml", + "Formosa Dark - Night Green": "formosa-dark-night-green.yaml", + "Formosa Light - Ipanema Blue": "formosa-light-ipanema-blue.yaml", + "Formosa Light - Night Green": "formosa-light-night-green.yaml", + "forventone": "forventone.yaml", + "FORXTU": "forxtu.yaml", + "FORXTU Light": "forxtu-light.yaml", + "Foundyn Dev": "foundyn-dev.yaml", + "four-sages-color-theme": "four-sages-color-theme.yaml", + "FoxDracula-color-theme": "foxdracula-color-theme.yaml", + "Frankenstein": "frankenstein.yaml", + "frantic": "frantic.yaml", + "frantic-contrast": "frantic-contrast.yaml", + "frantic-light": "frantic-light.yaml", + "French Rose": "french-rose.yaml", + "Fresh Start": "fresh-start.yaml", + "freshcut": "freshcut.yaml", + "freshcut-contrast": "freshcut-contrast.yaml", + "freshcut-light": "freshcut-light.yaml", + "Fretefy": "fretefy.yaml", + "friction": "friction.yaml", + "friction-contrast": "friction-contrast.yaml", + "friction-light": "friction-light.yaml", + "Fridge": "fridge.yaml", + "Friendly": "friendly.yaml", + "Frontend Galaxy": "frontend-galaxy.yaml", + "frontier": "frontier.yaml", + "frontier-contrast": "frontier-contrast.yaml", + "frontier-light": "frontier-light.yaml", + "Fruity Loops": "fruity-loops.yaml", + "ftrblue.": "ftrblue.yaml", + "fuck-all-these-vscode-custom-ugly-themes": "fuck-all-these-vscode-custom-ugly-themes.yaml", + "Funchosa Dark Theme": "funchosa-dark-theme.yaml", + "functional": "functional.yaml", + "Funx Theme": "funx-theme.yaml", + "Furnace": "furnace.yaml", + "Furukawa Pop Theme": "furukawa-pop-theme.yaml", + "Futuremotion Light": "futuremotion-light.yaml", + "Futuristic Green": "futuristic-green.yaml", + "Futuristt": "futuristt.yaml", + "G Dark (Blue Whale)": "g-dark-blue-whale.yaml", + "G Dark (Jacksons Purple)": "g-dark-jacksons-purple.yaml", + "G Dark (One Love)": "g-dark-one-love.yaml", + "G Dark (Valhalla)": "g-dark-valhalla.yaml", + "G Dark-light (Alice Blue)": "g-dark-light-alice-blue.yaml", + "G Dark-light (Glitter)": "g-dark-light-glitter.yaml", + "G Dark-light (Hint of Red)": "g-dark-light-hint-of-red.yaml", + "G Dark-minimal (Midnight)": "g-dark-minimal-midnight.yaml", + "G Dark-minimal-2 (Astronaut Blue)": "g-dark-minimal-2-astronaut-blue.yaml", + "G Dark-minimal-3 (Oxford Blue)": "g-dark-minimal-3-oxford-blue.yaml", + "G Dark-one-love (Black Pearl)": "g-dark-one-love-black-pearl.yaml", + "G Dark-Shader - H@ck3r (Midnight Moss)": "g-dark-shader-h-ck3r-midnight-moss.yaml", + "G Dark-shader (Haiti)": "g-dark-shader-haiti.yaml", + "G Dark-Shader (Haiti)": "g-dark-shader-haiti.yaml", + "G Dark-Shader (Mirage)": "g-dark-shader-mirage.yaml", + "G Dark-Shift (Midnight Moss)": "g-dark-shift-midnight-moss.yaml", + "G Dark-shift (Vulcan)": "g-dark-shift-vulcan.yaml", + "G.I. Reaper": "g-i-reaper.yaml", + "G.I. Seraph": "g-i-seraph.yaml", + "G3 Gray": "g3-gray.yaml", + "Gagarin Theme": "gagarin-theme.yaml", + "Galactic Flavored": "galactic-flavored.yaml", + "galactus": "galactus.yaml", + "Galaxia": "galaxia.yaml", + "GalaxyTheme+": "galaxytheme.yaml", + "Galizur": "galizur.yaml", + "GAME MODE": "game-mode.yaml", + "GameBoy Classic Dark": "gameboy-classic-dark.yaml", + "GameBoy Classic Light": "gameboy-classic-light.yaml", + "Gamma": "gamma.yaml", + "Gamma - Fork": "gamma-fork.yaml", + "Ganbaru blue": "ganbaru-blue.yaml", + "Ganbaru Dark": "ganbaru-dark.yaml", + "Gantheory Dark": "gantheory-dark.yaml", + "Ganyu Theme": "ganyu-theme.yaml", + "GapStyle VS": "gapstyle-vs.yaml", + "GapStyle VS Dark Modern": "gapstyle-vs-dark-modern.yaml", + "Garbage Oracle Dark": "garbage-oracle-dark.yaml", + "Garbage Oracle Light": "garbage-oracle-light.yaml", + "Gatito Next Theme": "gatito-next-theme.yaml", + "Gatito Nightly Red": "gatito-nightly-red.yaml", + "Gatito Theme": "gatito-theme.yaml", + "gatomontesDark2": "gatomontesdark2.yaml", + "GDFunkyTheme": "gdfunkytheme.yaml", + "gdscript35": "gdscript35.yaml", + "GearTheme": "geartheme.yaml", + "Gelato": "gelato.yaml", + "GelGel": "gelgel.yaml", + "Gems-Theme-Default": "gems-theme-default.yaml", + "Gems-Theme-Light": "gems-theme-light.yaml", + "gen-theme": "gen-theme.yaml", + "Generated Color Theme": "generated-color-theme.yaml", + "Genshin Impact - Chiori": "genshin-impact-chiori.yaml", + "Genshin Impact - Chiori (Dark)": "genshin-impact-chiori-dark.yaml", + "Genshin Impact - Citlali": "genshin-impact-citlali.yaml", + "Genshin Impact - Citlali (Dark)": "genshin-impact-citlali-dark.yaml", + "Genshin Impact - Columbina": "genshin-impact-columbina.yaml", + "Genshin Impact - Columbina (Dark)": "genshin-impact-columbina-dark.yaml", + "Genshin Impact - Furina": "genshin-impact-furina.yaml", + "Genshin Impact - Furina (Dark)": "genshin-impact-furina-dark.yaml", + "Genshin Impact - Ganyu (Dark)": "genshin-impact-ganyu-dark.yaml", + "Genshin Impact - Ganyu (High Contrast)": "genshin-impact-ganyu-high-contrast.yaml", + "Genshin Impact - Ganyu (Light)": "genshin-impact-ganyu-light.yaml", + "Genshin Impact - Il Dottore": "genshin-impact-il-dottore.yaml", + "Genshin Impact - Il Dottore (Dark)": "genshin-impact-il-dottore-dark.yaml", + "Genshin Impact - Kamisato Ayaka": "genshin-impact-kamisato-ayaka.yaml", + "Genshin Impact - Kamisato Ayaka (Dark)": "genshin-impact-kamisato-ayaka-dark.yaml", + "Genshin Impact - Layla": "genshin-impact-layla.yaml", + "Genshin Impact - Layla (Dark)": "genshin-impact-layla-dark.yaml", + "Genshin Impact - Sandrone": "genshin-impact-sandrone.yaml", + "Genshin Impact - Sandrone (Dark)": "genshin-impact-sandrone-dark.yaml", + "Genshin Impact - Scaramouche": "genshin-impact-scaramouche.yaml", + "Genshin Impact - Scaramouche (Dark)": "genshin-impact-scaramouche-dark.yaml", + "Genshin Impact - Skirk": "genshin-impact-skirk.yaml", + "Genshin Impact - Skirk (Dark)": "genshin-impact-skirk-dark.yaml", + "Genshin Impact - Wanderer": "genshin-impact-wanderer.yaml", + "Genshin Impact - Wanderer (Dark)": "genshin-impact-wanderer-dark.yaml", + "Genshin Impact - Yae Miko": "genshin-impact-yae-miko.yaml", + "Genshin Impact - Yae Miko (Dark)": "genshin-impact-yae-miko-dark.yaml", + "Genshin Impact - Yumemizuki Mizuki (Dark)": "genshin-impact-yumemizuki-mizuki-dark.yaml", + "Genshin Impact - Yumemizuki Mizuki (High Contrast)": "genshin-impact-yumemizuki-mizuki-high-contrast.yaml", + "Genshin Impact - Yumemizuki Mizuki (Light)": "genshin-impact-yumemizuki-mizuki-light.yaml", + "Genshin Vibes: Celestine Bardlight": "genshin-vibes-celestine-bardlight.yaml", + "Genshin Vibes: Damselette Whisper": "genshin-vibes-damselette-whisper.yaml", + "Genshin Vibes: Emergency Food": "genshin-vibes-emergency-food.yaml", + "Genshin Vibes: Eternal Electro Throne": "genshin-vibes-eternal-electro-throne.yaml", + "Genshin Vibes: Fontaine Spotlight": "genshin-vibes-fontaine-spotlight.yaml", + "Genshin Vibes: Frost Ritual": "genshin-vibes-frost-ritual.yaml", + "Genshin Vibes: Geo Contract Vault": "genshin-vibes-geo-contract-vault.yaml", + "Genshin Vibes: Hydrocourt Midnight": "genshin-vibes-hydrocourt-midnight.yaml", + "Genshin Vibes: Ice Oracle": "genshin-vibes-ice-oracle.yaml", + "Genshin Vibes: Kusanali Dawnbloom": "genshin-vibes-kusanali-dawnbloom.yaml", + "Genshin Vibes: Lava Glaze Inferno": "genshin-vibes-lava-glaze-inferno.yaml", + "Genshin Vibes: Morax Golden Seal": "genshin-vibes-morax-golden-seal.yaml", + "Genshin Vibes: Outrider Blaze": "genshin-vibes-outrider-blaze.yaml", + "Genshin Vibes: Pyro Scout": "genshin-vibes-pyro-scout.yaml", + "Genshin Vibes: Starry Companion": "genshin-vibes-starry-companion.yaml", + "Genshin Vibes: Stormrider Breeze": "genshin-vibes-stormrider-breeze.yaml", + "Genshin Vibes: Sunforge Ember": "genshin-vibes-sunforge-ember.yaml", + "Genshin Vibes: Veiled Harbinger": "genshin-vibes-veiled-harbinger.yaml", + "Genshin Vibes: Verdant Dreamweave": "genshin-vibes-verdant-dreamweave.yaml", + "Genshin Vibes: Violet Eternity Glow": "genshin-vibes-violet-eternity-glow.yaml", + "Gentil Dark": "gentil-dark.yaml", + "Gentle Builder": "gentle-builder.yaml", + "Gentle Clean Light": "gentle-clean-light.yaml", + "Gentle Clean Monokai": "gentle-clean-monokai.yaml", + "Gentle Dark": "gentle-dark.yaml", + "Gentle Dark Warm": "gentle-dark-warm.yaml", + "Gentle Light": "gentle-light.yaml", + "Gentle Light (Warmer)": "gentle-light-warmer.yaml", + "Gentle Midnight": "gentle-midnight.yaml", + "Gentle Midnight Warm": "gentle-midnight-warm.yaml", + "GentleBlack": "gentleblack.yaml", + "GFX": "gfx.yaml", + "gg-djaja-darken": "gg-djaja-darken.yaml", + "gg-djaja-default": "gg-djaja-default.yaml", + "gg-djaja-light": "gg-djaja-light.yaml", + "Ghibli Day": "ghibli-day.yaml", + "Ghibli Forest (Dark)": "ghibli-forest-dark.yaml", + "Ghibli Night": "ghibli-night.yaml", + "Ghibli Sky (Light)": "ghibli-sky-light.yaml", + "ghost louise": "ghost-louise.yaml", + "GhostGrey": "ghostgrey.yaml", + "Ghostty Default StyleDark": "ghostty-default-styledark.yaml", + "ghostty-synthwave": "ghostty-synthwave.yaml", + "gigaaa": "gigaaa.yaml", + "GineticusTheme": "gineticustheme.yaml", + "Ginseng": "ginseng.yaml", + "Gipsy Dark": "gipsy-dark.yaml", + "girls-theme": "girls-theme.yaml", + "github": "github.yaml", + "Github Blue - Dark": "github-blue-dark.yaml", + "Github Blue - Darkest": "github-blue-darkest.yaml", + "Github Catppuccin Dark": "github-catppuccin-dark.yaml", + "Github Catppuccin Dark Mix": "github-catppuccin-dark-mix.yaml", + "Github Dank Dimmed": "github-dank-dimmed.yaml", + "GitHub Dark": "github-dark.yaml", + "GitHub Dark Colorblind": "github-dark-colorblind.yaml", + "GitHub Dark Colorblind (Grayscale)": "github-dark-colorblind-grayscale.yaml", + "GitHub Dark Default": "github-dark-default.yaml", + "GitHub Dark Default (Grayscale)": "github-dark-default-grayscale.yaml", + "GitHub Dark Dimmed": "github-dark-dimmed.yaml", + "GitHub Dark Dimmed (Grayscale)": "github-dark-dimmed-grayscale.yaml", + "GitHub Dark High Contrast": "github-dark-high-contrast.yaml", + "GitHub Dark High Contrast (Grayscale)": "github-dark-high-contrast-grayscale.yaml", + "GitHub Dark Mode": "github-dark-mode.yaml", + "GitHub Dark Palenight": "github-dark-palenight.yaml", + "Github Dark Tritanopia": "github-dark-tritanopia.yaml", + "GitHub Dark+": "github-dark.yaml", + "GitHub Light": "github-light.yaml", + "GitHub Light Colorblind": "github-light-colorblind.yaml", + "GitHub Light Default": "github-light-default.yaml", + "GitHub Light High Contrast": "github-light-high-contrast.yaml", + "GitHub Minimal": "github-minimal.yaml", + "Github Revamp Alt": "github-revamp-alt.yaml", + "github-contrast": "github-contrast.yaml", + "github-contrast-theme": "github-contrast-theme.yaml", + "github-light": "github-light.yaml", + "Github-theme-by-humamafif": "github-theme-by-humamafif.yaml", + "GitLab": "gitlab.yaml", + "GitLab Dark": "gitlab-dark.yaml", + "GitLab Dark Grey": "gitlab-dark-grey.yaml", + "GitLab Light": "gitlab-light.yaml", + "Giyu Tomioka": "giyu-tomioka.yaml", + "Giza": "giza.yaml", + "glance": "glance.yaml", + "glance-contrast": "glance-contrast.yaml", + "glance-light": "glance-light.yaml", + "gleam-theme-minimal-dark": "gleam-theme-minimal-dark.yaml", + "Glitchly Green": "glitchly-green.yaml", + "Gloam": "gloam.yaml", + "Globe": "globe.yaml", + "gloom": "gloom.yaml", + "gloom-contrast": "gloom-contrast.yaml", + "gloom-light": "gloom-light.yaml", + "glowfish": "glowfish.yaml", + "glowfish-contrast": "glowfish-contrast.yaml", + "glowfish-light": "glowfish-light.yaml", + "Glowing Sun": "glowing-sun.yaml", + "Glowing Yellow": "glowing-yellow.yaml", + "GlowMinerals": "glowminerals.yaml", + "Glu Dark": "glu-dark.yaml", + "Glu Dark Lighter": "glu-dark-lighter.yaml", + "glv's theme": "glv-s-theme.yaml", + "GMS2": "gms2.yaml", + "Gnome Base16": "gnome-base16.yaml", + "Go - Playground": "go-playground.yaml", + "Go - Source": "go-source.yaml", + "Goa - Beach Paradise": "goa-beach-paradise.yaml", + "GOD Theme": "god-theme.yaml", + "Godot 4": "godot-4.yaml", + "Gojo Infinity Dark": "gojo-infinity-dark.yaml", + "Goku Code - Dragon Ball Z Power (Eye-Safe)": "goku-code-dragon-ball-z-power-eye-safe.yaml", + "gold": "gold.yaml", + "Golden Dracula": "golden-dracula.yaml", + "Golden Era": "golden-era.yaml", + "Golden Eye": "golden-eye.yaml", + "Golden Sky": "golden-sky.yaml", + "Golden Sunset": "golden-sunset.yaml", + "Golden Wave": "golden-wave.yaml", + "Golden-Blue Color Theme": "golden-blue-color-theme.yaml", + "GoldenTheme": "goldentheme.yaml", + "goldfish": "goldfish.yaml", + "goldfish-contrast": "goldfish-contrast.yaml", + "goldfish-light": "goldfish-light.yaml", + "Goldream": "goldream.yaml", + "Good Purple": "good-purple.yaml", + "GoodMonokai-color-theme": "goodmonokai-color-theme.yaml", + "Goodnight": "goodnight.yaml", + "Goodnight Classic": "goodnight-classic.yaml", + "Gooey Theme": "gooey-theme.yaml", + "Gooey-Theme": "gooey-theme.yaml", + "GoogleDark": "googledark.yaml", + "googlory-color-theme": "googlory-color-theme.yaml", + "Goolou": "goolou.yaml", + "goose": "goose.yaml", + "goosebumps": "goosebumps.yaml", + "Gopher": "gopher.yaml", + "Gorfius Orange": "gorfius-orange.yaml", + "Gorfius Peace Forest": "gorfius-peace-forest.yaml", + "Gorg": "gorg.yaml", + "Gosthy": "gosthy.yaml", + "gotham": "gotham.yaml", + "Gotham": "gotham.yaml", + "Gothic": "gothic.yaml", + "Gothic Absinthe": "gothic-absinthe.yaml", + "Gothic Amber Fog": "gothic-amber-fog.yaml", + "Gothic Blood Moon": "gothic-blood-moon.yaml", + "Gothic Cathedral": "gothic-cathedral.yaml", + "Gothic Cemetery": "gothic-cemetery.yaml", + "Gothic Dark": "gothic-dark.yaml", + "Gothic Emerald Crypt": "gothic-emerald-crypt.yaml", + "Gothic Jester": "gothic-jester.yaml", + "Gothic Midnight Rose": "gothic-midnight-rose.yaml", + "Gothic Qaddy": "gothic-qaddy.yaml", + "Gothic Raven": "gothic-raven.yaml", + "Gothic Spider Lily": "gothic-spider-lily.yaml", + "Gothic Twilight Forest": "gothic-twilight-forest.yaml", + "Gothic Vampire": "gothic-vampire.yaml", + "Gothic Victorian Mourning": "gothic-victorian-mourning.yaml", + "Gourd": "gourd.yaml", + "GPTheme": "gptheme.yaml", + "GPTheme Dark": "gptheme-dark.yaml", + "GracefulBear": "gracefulbear.yaml", + "GrandBlue": "grandblue.yaml", + "GrandBlue - Pastel": "grandblue-pastel.yaml", + "GrandBlue - Soft": "grandblue-soft.yaml", + "Grank Blackout": "grank-blackout.yaml", + "Grank Italics": "grank-italics.yaml", + "GrapeRed": "grapered.yaml", + "grapevine": "grapevine.yaml", + "GraphLinq Dark": "graphlinq-dark.yaml", + "Grassrivers Sunset": "grassrivers-sunset.yaml", + "gravel-pit": "gravel-pit.yaml", + "Graveyard": "graveyard.yaml", + "Gravity": "gravity.yaml", + "gray": "gray.yaml", + "Gray": "gray.yaml", + "Gray matter": "gray-matter.yaml", + "Gray Pastel": "gray-pastel.yaml", + "graygraygray": "graygraygray.yaml", + "Graymium Theme": "graymium-theme.yaml", + "GrayScale301-Light": "grayscale301-light.yaml", + "Great White": "great-white.yaml", + "Great White (Bloodloss)": "great-white-bloodloss.yaml", + "Great White (Dark)": "great-white-dark.yaml", + "Great White (Frost)": "great-white-frost.yaml", + "Great White (High Contrast Dark)": "great-white-high-contrast-dark.yaml", + "Great White (High Contrast Light)": "great-white-high-contrast-light.yaml", + "Great White (Light)": "great-white-light.yaml", + "Great White (Storm)": "great-white-storm.yaml", + "Greblue": "greblue.yaml", + "Greeeeen": "greeeeen.yaml", + "green": "green.yaml", + "Green Coffee": "green-coffee.yaml", + "Green Kingdom": "green-kingdom.yaml", + "Green Papper": "green-papper.yaml", + "Green Tree": "green-tree.yaml", + "Green Valley Forest": "green-valley-forest.yaml", + "Green Valley Matrix": "green-valley-matrix.yaml", + "Green Valley Midnight": "green-valley-midnight.yaml", + "Green Valley Mint": "green-valley-mint.yaml", + "Green Valley Neo": "green-valley-neo.yaml", + "Green Water": "green-water.yaml", + "Green Yow": "green-yow.yaml", + "Green-Geek": "green-geek.yaml", + "green-low-contrast": "green-low-contrast.yaml", + "green-theme": "green-theme.yaml", + "Green500": "green500.yaml", + "GreenBreeze-Dark": "greenbreeze-dark.yaml", + "GreenBreeze-Light": "greenbreeze-light.yaml", + "Greenbyte Dark": "greenbyte-dark.yaml", + "GreenCloud": "greencloud.yaml", + "Greeney.": "greeney.yaml", + "Greeney.v2": "greeney-v2.yaml", + "greeni": "greeni.yaml", + "GreenMachine": "greenmachine.yaml", + "GreenSpace": "greenspace.yaml", + "Greeny": "greeny.yaml", + "Grewee-colorscheme": "grewee-colorscheme.yaml", + "greygull": "greygull.yaml", + "Greyout": "greyout.yaml", + "GreyStillPlays": "greystillplays.yaml", + "Grimoire": "grimoire.yaml", + "Grimoire Nox": "grimoire-nox.yaml", + "Grove Street Noir": "grove-street-noir.yaml", + "Gru": "gru.yaml", + "Gru Black": "gru-black.yaml", + "Gruber Blue": "gruber-blue.yaml", + "grumbra": "grumbra.yaml", + "GrunBoxTheme": "grunboxtheme.yaml", + "grunge": "grunge.yaml", + "grunge-contrast": "grunge-contrast.yaml", + "grunge-light": "grunge-light.yaml", + "Grusper": "grusper.yaml", + "Gruvalized Dark": "gruvalized-dark.yaml", + "Gruvalized Light": "gruvalized-light.yaml", + "Gruvbox Dark Medium": "gruvbox-dark-medium.yaml", + "Gruvbox Dark Soft": "gruvbox-dark-soft.yaml", + "Gruvbox DrakenLords Dark": "gruvbox-drakenlords-dark.yaml", + "Gruvbox DrakenLords Dark Draken": "gruvbox-drakenlords-dark-draken.yaml", + "Gruvbox DrakenLords Grey": "gruvbox-drakenlords-grey.yaml", + "Gruvbox DrakenLords Semi Dark": "gruvbox-drakenlords-semi-dark.yaml", + "Gruvbox ish Dark Hard": "gruvbox-ish-dark-hard.yaml", + "Gruvbox ish Dark Medium": "gruvbox-ish-dark-medium.yaml", + "Gruvbox ish Dark Soft": "gruvbox-ish-dark-soft.yaml", + "Gruvbox Material Dark": "gruvbox-material-dark.yaml", + "Gruvbox Material Dark - Claude Hybrid": "gruvbox-material-dark-claude-hybrid.yaml", + "Gruvbox Material Flat Dark": "gruvbox-material-flat-dark.yaml", + "Gruvbox Material Flat Light": "gruvbox-material-flat-light.yaml", + "Gruvbox Material Light": "gruvbox-material-light.yaml", + "Gruvbox Material Mix": "gruvbox-material-mix.yaml", + "Gruvbox Minor Dark Hard": "gruvbox-minor-dark-hard.yaml", + "Gruvbox Minor Dark Medium": "gruvbox-minor-dark-medium.yaml", + "Gruvbox Minor Dark Soft": "gruvbox-minor-dark-soft.yaml", + "Gruvbox Minor Light Hard": "gruvbox-minor-light-hard.yaml", + "Gruvbox Minor Light Medium": "gruvbox-minor-light-medium.yaml", + "Gruvbox Minor Light Soft": "gruvbox-minor-light-soft.yaml", + "Gruvchad": "gruvchad.yaml", + "GruvDark Mono": "gruvdark-mono.yaml", + "GruvDark Tokyo": "gruvdark-tokyo.yaml", + "GruvDark-GBM": "gruvdark-gbm.yaml", + "Guezwhoz": "guezwhoz.yaml", + "GuiSaldanha Light": "guisaldanha-light.yaml", + "Gujarat - Vibrant Culture": "gujarat-vibrant-culture.yaml", + "Gum": "gum.yaml", + "Gumua": "gumua.yaml", + "Gunivers": "gunivers.yaml", + "Gunmetal Code Pro": "gunmetal-code-pro.yaml", + "GustavoGLins": "gustavoglins.yaml", + "Gusuku Limestone": "gusuku-limestone.yaml", + "Gvalley": "gvalley.yaml", + "Gyomei Himejima": "gyomei-himejima.yaml", + "H1 (Dark) - Fork": "h1-dark-fork.yaml", + "H1 (Light) - Fork": "h1-light-fork.yaml", + "Haavyz": "haavyz.yaml", + "Habamax": "habamax.yaml", + "habamix": "habamix.yaml", + "Hachiko": "hachiko.yaml", + "Hack Electron": "hack-electron.yaml", + "Hack-And-Lima🍋": "hack-and-lima.yaml", + "hackage-theme": "hackage-theme.yaml", + "Hacker": "hacker.yaml", + "Hacker Blue": "hacker-blue.yaml", + "Hacker Pink": "hacker-pink.yaml", + "Hacker X": "hacker-x.yaml", + "Hackish": "hackish.yaml", + "Hackpot Batman vs Joker": "hackpot-batman-vs-joker.yaml", + "Hackpot Batman vs Joker Dark": "hackpot-batman-vs-joker-dark.yaml", + "Hackpot Dark Knight": "hackpot-dark-knight.yaml", + "Hackpot Darker Knight": "hackpot-darker-knight.yaml", + "Hackpot Garden": "hackpot-garden.yaml", + "Hackpot Garden Dark": "hackpot-garden-dark.yaml", + "Hackpot Garden Of Atlantis": "hackpot-garden-of-atlantis.yaml", + "Hackpot Garden Purple Haze": "hackpot-garden-purple-haze.yaml", + "Hackpot Muddy Garden": "hackpot-muddy-garden.yaml", + "Hackpot Poisoned Garden": "hackpot-poisoned-garden.yaml", + "Hadar": "hadar.yaml", + "haidark two": "haidark-two.yaml", + "Halcyon": "halcyon.yaml", + "half gray": "half-gray.yaml", + "halflife": "halflife.yaml", + "halflife-contrast": "halflife-contrast.yaml", + "halflife-light": "halflife-light.yaml", + "Halloween": "halloween.yaml", + "Hallucination": "hallucination.yaml", + "HamidTheDev Professional": "hamidthedev-professional.yaml", + "Han": "han.yaml", + "Happy Dark": "happy-dark.yaml", + "Happy Heart 1 - Dark Classic": "happy-heart-1-dark-classic.yaml", + "Happy Heart 10 - Forest Green": "happy-heart-10-forest-green.yaml", + "Happy Heart 11 - Emerald Green": "happy-heart-11-emerald-green.yaml", + "Happy Heart 12 - Midnight Purple": "happy-heart-12-midnight-purple.yaml", + "Happy Heart 13 - Royal Purple": "happy-heart-13-royal-purple.yaml", + "Happy Heart 14 - Rose Gold": "happy-heart-14-rose-gold.yaml", + "Happy Heart 15 - Chilli Paper": "happy-heart-15-chilli-paper.yaml", + "Happy Heart 16 - Grey": "happy-heart-16-grey.yaml", + "Happy Heart 17 - Yellow": "happy-heart-17-yellow.yaml", + "Happy Heart 2 - Dark Orange": "happy-heart-2-dark-orange.yaml", + "Happy Heart 3 - Dark Purple": "happy-heart-3-dark-purple.yaml", + "Happy Heart 4 - Dark Green": "happy-heart-4-dark-green.yaml", + "Happy Heart 5 - Deep Blue": "happy-heart-5-deep-blue.yaml", + "Happy Heart 6 - Ocean Blue": "happy-heart-6-ocean-blue.yaml", + "Happy Heart 7 - Navy Blue": "happy-heart-7-navy-blue.yaml", + "Happy Heart 8 - Bright Light": "happy-heart-8-bright-light.yaml", + "Happy Heart 9 - Smooth Light": "happy-heart-9-smooth-light.yaml", + "Hapsida": "hapsida.yaml", + "Hard Hacker Darker": "hard-hacker-darker.yaml", + "Hard Hacker High Contrast": "hard-hacker-high-contrast.yaml", + "Hard Hacker Light High Contrast": "hard-hacker-light-high-contrast.yaml", + "HardDark": "harddark.yaml", + "Hardwired - Arctic Blue": "hardwired-arctic-blue.yaml", + "Hardwired - Electric Lime": "hardwired-electric-lime.yaml", + "Hardwired - Purple": "hardwired-purple.yaml", + "Harley Quinn Theme": "harley-quinn-theme.yaml", + "Harmonized dark": "harmonized-dark.yaml", + "Harmonized light": "harmonized-light.yaml", + "Harmonized light (hc)": "harmonized-light-hc.yaml", + "Harriet": "harriet.yaml", + "Harrys": "harrys.yaml", + "HarshadDevPro": "harshaddevpro.yaml", + "Hashirama Senju - God of Shinobi": "hashirama-senju-god-of-shinobi.yaml", + "Haube Blue 1": "haube-blue-1.yaml", + "hawaii": "hawaii.yaml", + "hawaii-contrast": "hawaii-contrast.yaml", + "hawaii-light": "hawaii-light.yaml", + "hc-zenburn": "hc-zenburn.yaml", + "Hecker Boy": "hecker-boy.yaml", + "Held": "held.yaml", + "Helion": "helion.yaml", + "Helios Solarized Dark": "helios-solarized-dark.yaml", + "Helios Solarized Light": "helios-solarized-light.yaml", + "Helix+": "helix.yaml", + "Hell Pine": "hell-pine.yaml", + "Hellfire": "hellfire.yaml", + "hello": "hello.yaml", + "Hendrikkels Dark": "hendrikkels-dark.yaml", + "Hendrikkels Light": "hendrikkels-light.yaml", + "Heptapod": "heptapod.yaml", + "Herbal": "herbal.yaml", + "hereafter.": "hereafter.yaml", + "Hero Dark Inverse": "hero-dark-inverse.yaml", + "heroku": "heroku.yaml", + "heroku-contrast": "heroku-contrast.yaml", + "heroku-light": "heroku-light.yaml", + "Herzha Dark": "herzha-dark.yaml", + "Herzha Flux": "herzha-flux.yaml", + "Herzha Vanta": "herzha-vanta.yaml", + "HFA Theme": "hfa-theme.yaml", + "hhp1614": "hhp1614.yaml", + "Hi Dark": "hi-dark.yaml", + "Hi Light": "hi-light.yaml", + "Hibiscus": "hibiscus.yaml", + "High Contrast April Light Theme": "high-contrast-april-light-theme.yaml", + "High Contrast April Theme": "high-contrast-april-theme.yaml", + "High Contrast August Light Theme": "high-contrast-august-light-theme.yaml", + "High Contrast February Dark Theme": "high-contrast-february-dark-theme.yaml", + "High Contrast February Light Theme - Accessible": "high-contrast-february-light-theme-accessible.yaml", + "High Contrast February Theme - Accessible": "high-contrast-february-theme-accessible.yaml", + "High Contrast July Light Theme": "high-contrast-july-light-theme.yaml", + "High Contrast June Light Theme": "high-contrast-june-light-theme.yaml", + "High Contrast March Dark Theme": "high-contrast-march-dark-theme.yaml", + "High Contrast March Dark Theme - Accessible": "high-contrast-march-dark-theme-accessible.yaml", + "High Contrast March Light Theme - Accessible": "high-contrast-march-light-theme-accessible.yaml", + "High Contrast March Theme - Accessible": "high-contrast-march-theme-accessible.yaml", + "High Contrast May Light Theme": "high-contrast-may-light-theme.yaml", + "High Contrast September Light Theme": "high-contrast-september-light-theme.yaml", + "High Contrast Sunset": "high-contrast-sunset.yaml", + "High Tea": "high-tea.yaml", + "Highflyer": "highflyer.yaml", + "HighGruv": "highgruv.yaml", + "Highland Winter": "highland-winter.yaml", + "Himalaya Dark": "himalaya-dark.yaml", + "hinode": "hinode.yaml", + "Hipster Next": "hipster-next.yaml", + "hive": "hive.yaml", + "hive-contrast": "hive-contrast.yaml", + "hive-light": "hive-light.yaml", + "hobbyist goth": "hobbyist-goth.yaml", + "hoccacas": "hoccacas.yaml", + "hocsinhnghiemtuc": "hocsinhnghiemtuc.yaml", + "Holdesher Dark": "holdesher-dark.yaml", + "Holy Bible": "holy-bible.yaml", + "Homebrew": "homebrew.yaml", + "HomeCooked Theme": "homecooked-theme.yaml", + "Homer": "homer.yaml", + "Homey": "homey.yaml", + "Honeycode": "honeycode.yaml", + "Honkai: Star Rail - Aventurine": "honkai-star-rail-aventurine.yaml", + "Honkai: Star Rail - Aventurine (Dark)": "honkai-star-rail-aventurine-dark.yaml", + "Honkai: Star Rail - Cyrene": "honkai-star-rail-cyrene.yaml", + "Honkai: Star Rail - Cyrene (Dark)": "honkai-star-rail-cyrene-dark.yaml", + "Honkai: Star Rail - Dan Heng": "honkai-star-rail-dan-heng.yaml", + "Honkai: Star Rail - Dan Heng (Dark)": "honkai-star-rail-dan-heng-dark.yaml", + "Honkai: Star Rail - Firefly": "honkai-star-rail-firefly.yaml", + "Honkai: Star Rail - Firefly (Dark)": "honkai-star-rail-firefly-dark.yaml", + "Honkai: Star Rail - Kafka": "honkai-star-rail-kafka.yaml", + "Honkai: Star Rail - Kafka (Dark)": "honkai-star-rail-kafka-dark.yaml", + "Honkai: Star Rail - March 7th": "honkai-star-rail-march-7th.yaml", + "Honkai: Star Rail - March 7th (Dark)": "honkai-star-rail-march-7th-dark.yaml", + "Honkai: Star Rail - Robin (Dark)": "honkai-star-rail-robin-dark.yaml", + "Honkai: Star Rail - Robin (Light Soft)": "honkai-star-rail-robin-light-soft.yaml", + "Honkai: Star Rail - Ruan Mei": "honkai-star-rail-ruan-mei.yaml", + "Honkai: Star Rail - Ruan Mei (Dark)": "honkai-star-rail-ruan-mei-dark.yaml", + "horizon": "horizon.yaml", + "Horizon Extended": "horizon-extended.yaml", + "Horizon Laker Theme": "horizon-laker-theme.yaml", + "horizon-contrast": "horizon-contrast.yaml", + "horizon-light": "horizon-light.yaml", + "HorizonDark": "horizondark.yaml", + "Horror Theme": "horror-theme.yaml", + "Horus": "horus.yaml", + "Hot Stuff": "hot-stuff.yaml", + "hot-pink-theme": "hot-pink-theme.yaml", + "HotRice": "hotrice.yaml", + "House of the Dragon: Team Blacks": "house-of-the-dragon-team-blacks.yaml", + "Houston": "houston.yaml", + "HTVODP": "htvodp.yaml", + "Huacat Pink Dark": "huacat-pink-dark.yaml", + "hub": "hub.yaml", + "hub-contrast": "hub-contrast.yaml", + "hub-light": "hub-light.yaml", + "hugodvlp": "hugodvlp.yaml", + "Hulcu": "hulcu.yaml", + "Human Dark": "human-dark.yaml", + "Human High Contrast": "human-high-contrast.yaml", + "Human Light": "human-light.yaml", + "Human Low Light": "human-low-light.yaml", + "Human Soft": "human-soft.yaml", + "Human Warm": "human-warm.yaml", + "Human++": "human.yaml", + "Hundred Oceans": "hundred-oceans.yaml", + "Hush.dark": "hush-dark.yaml", + "Hush.light": "hush-light.yaml", + "HuTaoTheme": "hutaotheme.yaml", + "Hybrid Dim": "hybrid-dim.yaml", + "Hybrid Next (Gray Background)": "hybrid-next-gray-background.yaml", + "hybrid theme": "hybrid-theme.yaml", + "hydr-theme": "hydr-theme.yaml", + "Hydra night": "hydra-night.yaml", + "Hydra Storm": "hydra-storm.yaml", + "hyezo-dark": "hyezo-dark.yaml", + "hyle-color-theme": "hyle-color-theme.yaml", + "hyle-night-night-color-theme": "hyle-night-night-color-theme.yaml", + "Hyped Down - Fork": "hyped-down-fork.yaml", + "hyped-down-theme": "hyped-down-theme.yaml", + "Hyper": "hyper.yaml", + "Hyper Ctrl Theme": "hyper-ctrl-theme.yaml", + "Hyperdark Theme": "hyperdark-theme.yaml", + "Hyperlink": "hyperlink.yaml", + "HyperRail Theme (Hyper Syntax Colors)": "hyperrail-theme-hyper-syntax-colors.yaml", + "Hypersubatomic": "hypersubatomic.yaml", + "HyperVoxel": "hypervoxel.yaml", + "HyprLuna": "hyprluna.yaml", + "hyrule": "hyrule.yaml", + "hyrule-contrast": "hyrule-contrast.yaml", + "hyrule-light": "hyrule-light.yaml", + "I don't know": "i-don-t-know.yaml", + "i-solarised-color-theme": "i-solarised-color-theme.yaml", + "i3 - Aurora X - Custom": "i3-aurora-x-custom.yaml", + "i3 - Aurora X - Custom II": "i3-aurora-x-custom-ii.yaml", + "i3 - Aurora X - Custom III": "i3-aurora-x-custom-iii.yaml", + "ian": "ian.yaml", + "IBM Carbon Gray 10 (alternative code highlighting)": "ibm-carbon-gray-10-alternative-code-highlighting.yaml", + "IBM Carbon Gray 100 (alternative code highlighting)": "ibm-carbon-gray-100-alternative-code-highlighting.yaml", + "IBM Carbon Gray 90 (alternative code highlighting)": "ibm-carbon-gray-90-alternative-code-highlighting.yaml", + "IBM Carbon White (alternative code highlighting)": "ibm-carbon-white-alternative-code-highlighting.yaml", + "Icaria": "icaria.yaml", + "icatTheme": "icattheme.yaml", + "ICC Light Theme": "icc-light-theme.yaml", + "Ice": "ice.yaml", + "ICE CUBE dark": "ice-cube-dark.yaml", + "ICE CUBE light": "ice-cube-light.yaml", + "iceberg": "iceberg.yaml", + "Iceberg": "iceberg.yaml", + "IceBerg": "iceberg.yaml", + "Iceberg Light": "iceberg-light.yaml", + "iceberg-contrast": "iceberg-contrast.yaml", + "iceberg-light": "iceberg-light.yaml", + "Icefall": "icefall.yaml", + "Iceland": "iceland.yaml", + "iColorDarkBlue": "icolordarkblue.yaml", + "iColorDarkCyan": "icolordarkcyan.yaml", + "iColorDarkGeekBlue": "icolordarkgeekblue.yaml", + "iColorDarkGold": "icolordarkgold.yaml", + "iColorDarkGreen": "icolordarkgreen.yaml", + "iColorDarkLime": "icolordarklime.yaml", + "iColorDarkMagenta": "icolordarkmagenta.yaml", + "iColorDarkOrgane": "icolordarkorgane.yaml", + "iColorDarkPurple": "icolordarkpurple.yaml", + "iColorDarkRed": "icolordarkred.yaml", + "iColorDarkVolcano": "icolordarkvolcano.yaml", + "iColorDarkYellow": "icolordarkyellow.yaml", + "iColorLightBlue": "icolorlightblue.yaml", + "iColorLightCyan": "icolorlightcyan.yaml", + "iColorLightGeekBlue": "icolorlightgeekblue.yaml", + "iColorLightGold": "icolorlightgold.yaml", + "iColorLightGreen": "icolorlightgreen.yaml", + "iColorLightLime": "icolorlightlime.yaml", + "iColorLightMagenta": "icolorlightmagenta.yaml", + "iColorLightOrgane": "icolorlightorgane.yaml", + "iColorLightPurple": "icolorlightpurple.yaml", + "iColorLightRed": "icolorlightred.yaml", + "iColorLightVolcano": "icolorlightvolcano.yaml", + "iColorLightYellow": "icolorlightyellow.yaml", + "idea islands dark ++": "idea-islands-dark.yaml", + "Iditarod": "iditarod.yaml", + "idk": "idk.yaml", + "Idx Theme Dark": "idx-theme-dark.yaml", + "idx-xcode-dark-improved": "idx-xcode-dark-improved.yaml", + "Igniter Theme": "igniter-theme.yaml", + "Igniter Theme (Light)": "igniter-theme-light.yaml", + "IkarOS": "ikaros.yaml", + "IkarOS White": "ikaros-white.yaml", + "IKKI-VSCode-Dark-Theme": "ikki-vscode-dark-theme.yaml", + "IKKI-VSCode-Light-Theme": "ikki-vscode-light-theme.yaml", + "Ikshana": "ikshana.yaml", + "Illumination-Emerald": "illumination-emerald.yaml", + "Illusion Refined": "illusion-refined.yaml", + "iLoveAgents - Azure AI Foundry (Dark)": "iloveagents-azure-ai-foundry-dark.yaml", + "iLoveAgents - Azure AI Foundry (Light)": "iloveagents-azure-ai-foundry-light.yaml", + "iLoveAgents Dark": "iloveagents-dark.yaml", + "iLoveAgents Light": "iloveagents-light.yaml", + "Imba Dark": "imba-dark.yaml", + "imexoodeex": "imexoodeex.yaml", + "In Bed by 7pm": "in-bed-by-7pm.yaml", + "In Darkest Night": "in-darkest-night.yaml", + "in his earthy elements": "in-his-earthy-elements.yaml", + "In The Fog Dark": "in-the-fog-dark.yaml", + "index": "index.yaml", + "Indielayer": "indielayer.yaml", + "Indigo and Amaranth": "indigo-and-amaranth.yaml", + "Indigo Ice": "indigo-ice.yaml", + "IndustrialComplex": "industrialcomplex.yaml", + "Industry": "industry.yaml", + "Infatuation": "infatuation.yaml", + "inferius": "inferius.yaml", + "Infinitus": "infinitus.yaml", + "Infinity": "infinity.yaml", + "Infinity 64 Blackboard by Shingo Murata": "infinity-64-blackboard-by-shingo-murata.yaml", + "Infinity 64 Whiteboard by Shingo Murata": "infinity-64-whiteboard-by-shingo-murata.yaml", + "Infinity Dark Contrast": "infinity-dark-contrast.yaml", + "Infinity Night Theme": "infinity-night-theme.yaml", + "Ingeni": "ingeni.yaml", + "Inheritance": "inheritance.yaml", + "inkpot": "inkpot.yaml", + "inksea": "inksea.yaml", + "inksea Dank": "inksea-dank.yaml", + "inksea Dark": "inksea-dark.yaml", + "inksea Dracula": "inksea-dracula.yaml", + "inksea Hacker": "inksea-hacker.yaml", + "inksea Midnight": "inksea-midnight.yaml", + "inksea Oceanic": "inksea-oceanic.yaml", + "inksea Sea Monkey": "inksea-sea-monkey.yaml", + "Inkstained": "inkstained.yaml", + "Inovando Theme": "inovando-theme.yaml", + "Insane": "insane.yaml", + "Insight": "insight.yaml", + "Inspiration": "inspiration.yaml", + "InstaMuch": "instamuch.yaml", + "IntelliJ IDEA New UI": "intellij-idea-new-ui.yaml", + "IntelliJ Light (deaft)": "intellij-light-deaft.yaml", + "intellij-dark-color-theme": "intellij-dark-color-theme.yaml", + "intellij-idea-islands-dark": "intellij-idea-islands-dark.yaml", + "intellij-idea-islands-light": "intellij-idea-islands-light.yaml", + "intellij-light-classic-color-theme": "intellij-light-classic-color-theme.yaml", + "IntelliYay-color-theme": "intelliyay-color-theme.yaml", + "Intergalactic": "intergalactic.yaml", + "Interstellar": "interstellar.yaml", + "Interstellar Blue": "interstellar-blue.yaml", + "Interstellar Blue II": "interstellar-blue-ii.yaml", + "Intility Bifrost Theme": "intility-bifrost-theme.yaml", + "Into the unknow - Fork": "into-the-unknow-fork.yaml", + "Intrepid Darkness": "intrepid-darkness.yaml", + "Intrepid Darkness Light": "intrepid-darkness-light.yaml", + "Invi": "invi.yaml", + "ionztorm Theme": "ionztorm-theme.yaml", + "Iris Pink": "iris-pink.yaml", + "IrishBruse's Color Theme": "irishbruse-s-color-theme.yaml", + "ironhellrider": "ironhellrider.yaml", + "Ironman Theme Dark": "ironman-theme-dark.yaml", + "Ironman Theme Light": "ironman-theme-light.yaml", + "IrOny": "irony.yaml", + "is-them-tears-bro": "is-them-tears-bro.yaml", + "Islands Dark": "islands-dark.yaml", + "Islands Light": "islands-light.yaml", + "isotope": "isotope.yaml", + "isotope-contrast": "isotope-contrast.yaml", + "isotope-light": "isotope-light.yaml", + "ITSNP Dark ": "itsnp-dark.yaml", + "ITSNP Dark Cyan": "itsnp-dark-cyan.yaml", + "ITSNP Dark Pink": "itsnp-dark-pink.yaml", + "ITSNP Night Blue ": "itsnp-night-blue.yaml", + "ITSNP Yellow ": "itsnp-yellow.yaml", + "iv : spade": "iv-spade.yaml", + "Ivalo-color-theme": "ivalo-color-theme.yaml", + "iwa's Code Theme": "iwa-s-code-theme.yaml", + "J Theme": "j-theme.yaml", + "Já é cinco da manhã": "j-cinco-da-manh.yaml", + "jabrms": "jabrms.yaml", + "Jacaranda Theme": "jacaranda-theme.yaml", + "Jackhammar": "jackhammar.yaml", + "Jaga Theme": "jaga-theme.yaml", + "Jammy Jellyfish": "jammy-jellyfish.yaml", + "jamunTheme": "jamuntheme.yaml", + "Jannchie Black": "jannchie-black.yaml", + "Jannchie Dark": "jannchie-dark.yaml", + "Jannchie Dark Soft": "jannchie-dark-soft.yaml", + "Jannchie Light": "jannchie-light.yaml", + "Jannchie Light Soft": "jannchie-light-soft.yaml", + "Janus Light": "janus-light.yaml", + "Japanese Breakfast": "japanese-breakfast.yaml", + "Jartur": "jartur.yaml", + "Jarvis": "jarvis.yaml", + "Jarvis 3D": "jarvis-3d.yaml", + "Jasmine": "jasmine.yaml", + "Java Dark Theme": "java-dark-theme.yaml", + "JavaScript Modern Dark": "javascript-modern-dark.yaml", + "JavaScript Neon Dark": "javascript-neon-dark.yaml", + "JavaScript Vibrant Dark": "javascript-vibrant-dark.yaml", + "jaytheme": "jaytheme.yaml", + "Jazari Dark": "jazari-dark.yaml", + "Jazari Light": "jazari-light.yaml", + "JCardenas": "jcardenas.yaml", + "jcsoftiaBlack": "jcsoftiablack.yaml", + "jcsoftiaDark": "jcsoftiadark.yaml", + "jcsoftiaDarkBlue": "jcsoftiadarkblue.yaml", + "jcsoftiaDarkRed": "jcsoftiadarkred.yaml", + "JD's Abyss": "jd-s-abyss.yaml", + "JDarkMaterial v2": "jdarkmaterial-v2.yaml", + "jdh": "jdh.yaml", + "Jehuty Dark": "jehuty-dark.yaml", + "Jehuty Light": "jehuty-light.yaml", + "jelly": "jelly.yaml", + "jelly-theme": "jelly-theme.yaml", + "Jellybeans": "jellybeans.yaml", + "jellybeans-theme": "jellybeans-theme.yaml", + "Jellybeans+": "jellybeans.yaml", + "Jellyfish": "jellyfish.yaml", + "Jeng Light": "jeng-light.yaml", + "Jetbrain-Fleet color": "jetbrain-fleet-color.yaml", + "JetBrains Dark Theme": "jetbrains-dark-theme.yaml", + "JetBrains Deep Dark Theme": "jetbrains-deep-dark-theme.yaml", + "JetBrains IDE Dark Theme": "jetbrains-ide-dark-theme.yaml", + "JetCode": "jetcode.yaml", + "JetDark": "jetdark.yaml", + "JetVerse Dev Dark": "jetverse-dev-dark.yaml", + "jewel": "jewel.yaml", + "jewel-contrast": "jewel-contrast.yaml", + "jewel-light": "jewel-light.yaml", + "JG-VSC": "jg-vsc.yaml", + "jingle": "jingle.yaml", + "jingle-contrast": "jingle-contrast.yaml", + "jingle-light": "jingle-light.yaml", + "JingleCode": "jinglecode.yaml", + "Jinshi Dark Theme": "jinshi-dark-theme.yaml", + "Jinshi Light Theme": "jinshi-light-theme.yaml", + "jinx": "jinx.yaml", + "jk": "jk.yaml", + "jker Purple Wave": "jker-purple-wave.yaml", + "jngl": "jngl.yaml", + "jojobii's Colors": "jojobii-s-colors.yaml", + "JokeJoke": "jokejoke.yaml", + "JoKenKai": "jokenkai.yaml", + "JoKenPo Obscure": "jokenpo-obscure.yaml", + "joker": "joker.yaml", + "Joker Neon": "joker-neon.yaml", + "joker-contrast": "joker-contrast.yaml", + "joker-light": "joker-light.yaml", + "JolliFake": "jollifake.yaml", + "Jolly Light": "jolly-light.yaml", + "Jone Light": "jone-light.yaml", + "Josi": "josi.yaml", + "jott4c-dark": "jott4c-dark.yaml", + "JoyBoy": "joyboy.yaml", + "Joyful - Fork": "joyful-fork.yaml", + "JS Dark Theme": "js-dark-theme.yaml", + "jtVSCode Dark": "jtvscode-dark.yaml", + "jtVSCode Light": "jtvscode-light.yaml", + "jugal13-theme": "jugal13-theme.yaml", + "juicy": "juicy.yaml", + "juicy-contrast": "juicy-contrast.yaml", + "juicy-light": "juicy-light.yaml", + "July Summer Vibes Dark Theme": "july-summer-vibes-dark-theme.yaml", + "jummidark": "jummidark.yaml", + "jummilight": "jummilight.yaml", + "jumper": "jumper.yaml", + "jumper-contrast": "jumper-contrast.yaml", + "jumper-light": "jumper-light.yaml", + "Jungle": "jungle.yaml", + "JuniorCoder": "juniorcoder.yaml", + "Just Code Already - Fork": "just-code-already-fork.yaml", + "jwrdark": "jwrdark.yaml", + "k-colorable dark": "k-colorable-dark.yaml", + "k-colorable light": "k-colorable-light.yaml", + "Kabukichō": "kabukich.yaml", + "Kactus Dream Theme": "kactus-dream-theme.yaml", + "Kactus Dream Theme Dark": "kactus-dream-theme-dark.yaml", + "kadoku": "kadoku.yaml", + "Kai": "kai.yaml", + "kai.garbage": "kai-garbage.yaml", + "Kai'sa - white - Fork": "kai-sa-white-fork.yaml", + "Kailash shaw Dark Theme": "kailash-shaw-dark-theme.yaml", + "Kaimandres": "kaimandres.yaml", + "Kaio": "kaio.yaml", + "KaiokenKolors": "kaiokenkolors.yaml", + "kaique-theme": "kaique-theme.yaml", + "Kaisa-Dark": "kaisa-dark.yaml", + "Kali linux theme": "kali-linux-theme.yaml", + "Kalia": "kalia.yaml", + "Kalidozza": "kalidozza.yaml", + "Kalisi": "kalisi.yaml", + "Kalmia": "kalmia.yaml", + "Kalmia High Contrast": "kalmia-high-contrast.yaml", + "kami theme": "kami-theme.yaml", + "Kanagawa": "kanagawa.yaml", + "Kanagawa Dragon": "kanagawa-dragon.yaml", + "Kanagawa Light": "kanagawa-light.yaml", + "Kanagawa Lotus": "kanagawa-lotus.yaml", + "Kanagawa Night": "kanagawa-night.yaml", + "Kanagawa Paper": "kanagawa-paper.yaml", + "Kanagawa Wave": "kanagawa-wave.yaml", + "Kanagawa Wave Light": "kanagawa-wave-light.yaml", + "Kanamin dark": "kanamin-dark.yaml", + "Kanao": "kanao.yaml", + "Kanso Ink": "kanso-ink.yaml", + "Kanso Mist": "kanso-mist.yaml", + "Kanso Pearl": "kanso-pearl.yaml", + "Kaolin Light Theme": "kaolin-light-theme.yaml", + "Kaolin Light Theme (alt)": "kaolin-light-theme-alt.yaml", + "Kaplan Dark Muted": "kaplan-dark-muted.yaml", + "Kara": "kara.yaml", + "Karam Theme Darker": "karam-theme-darker.yaml", + "Karma": "karma.yaml", + "Karnataka - Sandalwood State": "karnataka-sandalwood-state.yaml", + "KAROU NOIR": "karou-noir.yaml", + "KAROU Theme": "karou-theme.yaml", + "Karrot Theme Classic": "karrot-theme-classic.yaml", + "Karry Color Theme": "karry-color-theme.yaml", + "Kary Pro Colors - Dark": "kary-pro-colors-dark.yaml", + "Kary Pro Colors - Light": "kary-pro-colors-light.yaml", + "Kashi Night": "kashi-night.yaml", + "KastorCode Dark Orange Theme": "kastorcode-dark-orange-theme.yaml", + "KastorCode Dark Purple Theme": "kastorcode-dark-purple-theme.yaml", + "KatagawaTheme": "katagawatheme.yaml", + "Kato": "kato.yaml", + "kaupo": "kaupo.yaml", + "kayhan": "kayhan.yaml", + "kayto": "kayto.yaml", + "Kaze": "kaze.yaml", + "kblue-minimal": "kblue-minimal.yaml", + "keen": "keen.yaml", + "keen-contrast": "keen-contrast.yaml", + "keen-light": "keen-light.yaml", + "Kenobi Dark Theme": "kenobi-dark-theme.yaml", + "Kerala - God's Own Country": "kerala-god-s-own-country.yaml", + "Kerama Deep": "kerama-deep.yaml", + "Kermit - Fork": "kermit-fork.yaml", + "Keval's Official || Electric-Lime": "keval-s-official-electric-lime.yaml", + "Kiiro Dark": "kiiro-dark.yaml", + "Killer Dark": "killer-dark.yaml", + "Kindfeeling": "kindfeeling.yaml", + "kingfisher-fishing": "kingfisher-fishing.yaml", + "kinnitchi Neon Dark Modern": "kinnitchi-neon-dark-modern.yaml", + "Kintsugi Dark": "kintsugi-dark.yaml", + "Kintsugi Light": "kintsugi-light.yaml", + "Kiona": "kiona.yaml", + "Kira-Theme": "kira-theme.yaml", + "Kismat Default Colors": "kismat-default-colors.yaml", + "Kiss": "kiss.yaml", + "Kite Dark": "kite-dark.yaml", + "Kite Darker": "kite-darker.yaml", + "Kite Light": "kite-light.yaml", + "kitty catty": "kitty-catty.yaml", + "kitty night": "kitty-night.yaml", + "KittyPower": "kittypower.yaml", + "kiwi": "kiwi.yaml", + "Kiwi": "kiwi.yaml", + "kiwi-contrast": "kiwi-contrast.yaml", + "kiwi-light": "kiwi-light.yaml", + "Kiwisoup - Fork": "kiwisoup-fork.yaml", + "Knapsack": "knapsack.yaml", + "KnFocus Alt": "knfocus-alt.yaml", + "KnFocus Base": "knfocus-base.yaml", + "Knoctal Dark": "knoctal-dark.yaml", + "Knoctal Darker": "knoctal-darker.yaml", + "knowit-dark": "knowit-dark.yaml", + "Knowlyr Dark": "knowlyr-dark.yaml", + "Knowlyr Light": "knowlyr-light.yaml", + "Koala codes theme": "koala-codes-theme.yaml", + "Kod Purple": "kod-purple.yaml", + "Kodex": "kodex.yaml", + "Kodex Arctic": "kodex-arctic.yaml", + "Koffee Kreme": "koffee-kreme.yaml", + "Koi Noir Lan Theme": "koi-noir-lan-theme.yaml", + "Koi Noir Theme": "koi-noir-theme.yaml", + "Koi Pond Dark": "koi-pond-dark.yaml", + "Koi Pond Light": "koi-pond-light.yaml", + "KokaTheme": "kokatheme.yaml", + "Koki Dark": "koki-dark.yaml", + "kokubo": "kokubo.yaml", + "Kolada": "kolada.yaml", + "Komorebi": "komorebi.yaml", + "Kong Light Extended": "kong-light-extended.yaml", + "Konng": "konng.yaml", + "Kopo-Theme": "kopo-theme.yaml", + "korbit": "korbit.yaml", + "Korean Dancheong Dark": "korean-dancheong-dark.yaml", + "KORSR theme": "korsr-theme.yaml", + "Kozy": "kozy.yaml", + "Kozy Darker": "kozy-darker.yaml", + "kPurple": "kpurple.yaml", + "Kradeno": "kradeno.yaml", + "Krb_Violet": "krb-violet.yaml", + "Kripton": "kripton.yaml", + "Krishna - Default Dark Theme": "krishna-default-dark-theme.yaml", + "Krishna Dark Elegant": "krishna-dark-elegant.yaml", + "Kroma Cardinal Light": "kroma-cardinal-light.yaml", + "krone": "krone.yaml", + "Krow-T": "krow-t.yaml", + "kryptonite-theme": "kryptonite-theme.yaml", + "ktrz-monokai": "ktrz-monokai.yaml", + "Kubesong": "kubesong.yaml", + "Kultist v2": "kultist-v2.yaml", + "Kurdish Vibrant Theme": "kurdish-vibrant-theme.yaml", + "kurdor-light": "kurdor-light.yaml", + "Kuro": "kuro.yaml", + "kuro_theme-color-theme": "kuro-theme-color-theme.yaml", + "Kuroir Dark 01 Crimson": "kuroir-dark-01-crimson.yaml", + "Kuroir Dark 02 Vermilion": "kuroir-dark-02-vermilion.yaml", + "Kuroir Dark 04 Goldenrod": "kuroir-dark-04-goldenrod.yaml", + "Kuroir Dark 05 Citrine": "kuroir-dark-05-citrine.yaml", + "Kuroir Dark 06 Chartreuse": "kuroir-dark-06-chartreuse.yaml", + "Kuroir Dark 07 Fern": "kuroir-dark-07-fern.yaml", + "Kuroir Dark 08 Emerald": "kuroir-dark-08-emerald.yaml", + "Kuroir Dark 09 Jade": "kuroir-dark-09-jade.yaml", + "Kuroir Dark 13 Turquoise": "kuroir-dark-13-turquoise.yaml", + "Kuroir Dark 17 Sapphire": "kuroir-dark-17-sapphire.yaml", + "Kuroir Dark 18 Indigo": "kuroir-dark-18-indigo.yaml", + "Kuroir Dark 19 Violet": "kuroir-dark-19-violet.yaml", + "Kuroir Dark 20 Amethyst": "kuroir-dark-20-amethyst.yaml", + "Kuroir Dark 21 Magenta": "kuroir-dark-21-magenta.yaml", + "Kuroir Dark 22 Fuchsia": "kuroir-dark-22-fuchsia.yaml", + "Kuroir Dark 23 Rose": "kuroir-dark-23-rose.yaml", + "Kuroir Dark 24 Coral": "kuroir-dark-24-coral.yaml", + "Kuroir Light 02 Vermilion": "kuroir-light-02-vermilion.yaml", + "Kuroir Light 04 Goldenrod": "kuroir-light-04-goldenrod.yaml", + "Kuroir Light 07 Fern": "kuroir-light-07-fern.yaml", + "Kuroir Light 09 Jade": "kuroir-light-09-jade.yaml", + "Kuroir Light 13 Turquoise": "kuroir-light-13-turquoise.yaml", + "Kuroir Light 15 Sky": "kuroir-light-15-sky.yaml", + "Kuroir Light 18 Indigo": "kuroir-light-18-indigo.yaml", + "Kuroir Light 19 Violet": "kuroir-light-19-violet.yaml", + "Kuroir Light 23 Rose": "kuroir-light-23-rose.yaml", + "Kyanite": "kyanite.yaml", + "Kybern": "kybern.yaml", + "Kybik": "kybik.yaml", + "Kybik dark": "kybik-dark.yaml", + "Kyngo's Theme": "kyngo-s-theme.yaml", + "Kyojuro Rengoku": "kyojuro-rengoku.yaml", + "kyorazo_dark_theme": "kyorazo-dark-theme.yaml", + "Lackluster Dark": "lackluster-dark.yaml", + "Lackluster Night": "lackluster-night.yaml", + "LadyLuck-Color-Theme": "ladyluck-color-theme.yaml", + "lanten-color-theme-dark": "lanten-color-theme-dark.yaml", + "Lapis (stealth version)": "lapis-stealth-version.yaml", + "Lapis Ruby Dark (stealth version)": "lapis-ruby-dark-stealth-version.yaml", + "Lapis Ruby Light": "lapis-ruby-light.yaml", + "laracasts": "laracasts.yaml", + "laracasts-contrast": "laracasts-contrast.yaml", + "laracasts-light": "laracasts-light.yaml", + "LaraDocs": "laradocs.yaml", + "laravel": "laravel.yaml", + "Laravel": "laravel.yaml", + "laravel-contrast": "laravel-contrast.yaml", + "laravel-light": "laravel-light.yaml", + "LaserKai": "laserkai.yaml", + "Late Night": "late-night.yaml", + "Lauds": "lauds.yaml", + "Lavalink": "lavalink.yaml", + "Lavanda": "lavanda.yaml", + "lavender": "lavender.yaml", + "Lavender Dark Theme": "lavender-dark-theme.yaml", + "Lavender Light theme": "lavender-light-theme.yaml", + "lavender-contrast": "lavender-contrast.yaml", + "lavender-light": "lavender-light.yaml", + "Lazuli": "lazuli.yaml", + "lazy yellow lemon": "lazy-yellow-lemon.yaml", + "lazygreed-theme": "lazygreed-theme.yaml", + "Lazzaretti Plenatech 💟": "lazzaretti-plenatech.yaml", + "Lazzaretti Win11 🪟": "lazzaretti-win11.yaml", + "LBB Builder Dark": "lbb-builder-dark.yaml", + "LBB Builder Light": "lbb-builder-light.yaml", + "lc": "lc.yaml", + "LCARS": "lcars.yaml", + "Le moderne": "le-moderne.yaml", + "Leaf Dark": "leaf-dark.yaml", + "Leaf Dark Soft": "leaf-dark-soft.yaml", + "Lean-Coders Dark": "lean-coders-dark.yaml", + "Learn with Sumit - Peace of the eye - Dracula version": "learn-with-sumit-peace-of-the-eye-dracula-version.yaml", + "Learn with Sumit - Professional Theme": "learn-with-sumit-professional-theme.yaml", + "Learn with Sumit - Simple as light": "learn-with-sumit-simple-as-light.yaml", + "Learn with Sumit - Vintage": "learn-with-sumit-vintage.yaml", + "Learn with Sumit Blue Velvet Theme": "learn-with-sumit-blue-velvet-theme.yaml", + "Learn with Sumit Official Theme": "learn-with-sumit-official-theme.yaml", + "Learn with Sumit Theme": "learn-with-sumit-theme.yaml", + "Leftish": "leftish.yaml", + "legacy": "legacy.yaml", + "legacy-contrast": "legacy-contrast.yaml", + "legacy-light": "legacy-light.yaml", + "legacy-solarized-dark-color-theme": "legacy-solarized-dark-color-theme.yaml", + "legacy-solarized-light-color-theme": "legacy-solarized-light-color-theme.yaml", + "Legendary Dark": "legendary-dark.yaml", + "Legends Theme Night": "legends-theme-night.yaml", + "Legends Theme Night (FYMHR Special)": "legends-theme-night-fymhr-special.yaml", + "Leios": "leios.yaml", + "Lemon": "lemon.yaml", + "Lemonade": "lemonade.yaml", + "Leon": "leon.yaml", + "leon_arantes": "leon-arantes.yaml", + "Leonida Keys Ocean": "leonida-keys-ocean.yaml", + "Lesbian": "lesbian.yaml", + "lesser": "lesser.yaml", + "Lesser": "lesser.yaml", + "Let's Code!": "let-s-code.yaml", + "Leviosa Theme": "leviosa-theme.yaml", + "Levuaska": "levuaska.yaml", + "lht": "lht.yaml", + "LiangLiang One Monokai": "liangliang-one-monokai.yaml", + "lichen": "lichen.yaml", + "lichen-contrast": "lichen-contrast.yaml", + "lichen-light": "lichen-light.yaml", + "light": "light.yaml", + "Light": "light.yaml", + "Light code with bars": "light-code-with-bars.yaml", + "Light Decay": "light-decay.yaml", + "Light GruvDark": "light-gruvdark.yaml", + "Light GruvDark-Mono": "light-gruvdark-mono.yaml", + "Light GruvDark-Tokyo": "light-gruvdark-tokyo.yaml", + "Light Red": "light-red.yaml", + "Light Springbok": "light-springbok.yaml", + "Light Theme": "light-theme.yaml", + "Light-Brown": "light-brown.yaml", + "light-color-theme": "light-color-theme.yaml", + "light-print": "light-print.yaml", + "LightBlack": "lightblack.yaml", + "LightDelight": "lightdelight.yaml", + "Lighter-A theme for Light Coders": "lighter-a-theme-for-light-coders.yaml", + "lightestlighttheme": "lightestlighttheme.yaml", + "Lighthaus": "lighthaus.yaml", + "Lighthouse In The Dark (Boon Island Dark)": "lighthouse-in-the-dark-boon-island-dark.yaml", + "Lighthouse In The Dark (Boon Island Light)": "lighthouse-in-the-dark-boon-island-light.yaml", + "Lighthouse In The Dark (Rose Island Dark)": "lighthouse-in-the-dark-rose-island-dark.yaml", + "Lighthouse In The Dark (Rose Island Light)": "lighthouse-in-the-dark-rose-island-light.yaml", + "Lightning": "lightning.yaml", + "Lightning Cloud": "lightning-cloud.yaml", + "Lightning Dark": "lightning-dark.yaml", + "Lightning Material - Day": "lightning-material-day.yaml", + "Lightning Material - Evening": "lightning-material-evening.yaml", + "Lightning Material - Midnight": "lightning-material-midnight.yaml", + "Lightning Material - Soft": "lightning-material-soft.yaml", + "Lightning Soft": "lightning-soft.yaml", + "Lightning Soft - Dark": "lightning-soft-dark.yaml", + "Lightning Theme": "lightning-theme.yaml", + "LigiaPink": "ligiapink.yaml", + "Ligor - Fork": "ligor-fork.yaml", + "Lilac Dreams": "lilac-dreams.yaml", + "Lilac Grove": "lilac-grove.yaml", + "Lima Theme": "lima-theme.yaml", + "limpo Dark": "limpo-dark.yaml", + "limpo Darker": "limpo-darker.yaml", + "Linear Dark": "linear-dark.yaml", + "Linear Light": "linear-light.yaml", + "Linkarzu VScode theme": "linkarzu-vscode-theme.yaml", + "Lino - Dark Ruby": "lino-dark-ruby.yaml", + "Lionel": "lionel.yaml", + "Liquid Dark": "liquid-dark.yaml", + "Liquid Ochre": "liquid-ochre.yaml", + "Liquid Ray": "liquid-ray.yaml", + "Liquid Ray Light": "liquid-ray-light.yaml", + "Liquor Theme": "liquor-theme.yaml", + "Liquorice": "liquorice.yaml", + "Little League Dark": "little-league-dark.yaml", + "Little League Darker": "little-league-darker.yaml", + "Little League Light": "little-league-light.yaml", + "LiveS": "lives.yaml", + "Living Twilight": "living-twilight.yaml", + "Lncoder_theme": "lncoder-theme.yaml", + "Lofi": "lofi.yaml", + "Loki Official - Classic": "loki-official-classic.yaml", + "Loki Official - Kang Edition": "loki-official-kang-edition.yaml", + "Loki Theme": "loki-theme.yaml", + "Loki Theme Contrast": "loki-theme-contrast.yaml", + "lolo": "lolo.yaml", + "Lone wolf dark": "lone-wolf-dark.yaml", + "Lonely": "lonely.yaml", + "lonus-dark": "lonus-dark.yaml", + "LookiFy Dark mode": "lookify-dark-mode.yaml", + "LookiFy Light mode": "lookify-light-mode.yaml", + "looped": "looped.yaml", + "Loopy": "loopy.yaml", + "lore": "lore.yaml", + "LostforIndia": "lostforindia.yaml", + "Lotus Dark": "lotus-dark.yaml", + "Lotus Flat Dusk": "lotus-flat-dusk.yaml", + "Lotus Flat Midnight": "lotus-flat-midnight.yaml", + "Lotus Light": "lotus-light.yaml", + "LovePurple": "lovepurple.yaml", + "lowlvl": "lowlvl.yaml", + "loyal": "loyal.yaml", + "loyal-contrast": "loyal-contrast.yaml", + "loyal-light": "loyal-light.yaml", + "LuanSlaSlaTheme": "luanslaslatheme.yaml", + "Luau-Starlit": "luau-starlit.yaml", + "lubasiverse": "lubasiverse.yaml", + "lubasiverse-freewill": "lubasiverse-freewill.yaml", + "Lucario": "lucario.yaml", + "Lucid Labs Dark": "lucid-labs-dark.yaml", + "Lucid Labs Light": "lucid-labs-light.yaml", + "Lucifer Terminal Dark (Hacker Edition)": "lucifer-terminal-dark-hacker-edition.yaml", + "LuckyHub": "luckyhub.yaml", + "Lui": "lui.yaml", + "luiz-dark-theme": "luiz-dark-theme.yaml", + "Luke Skywriter": "luke-skywriter.yaml", + "Lull": "lull.yaml", + "LuluTheme": "lulutheme.yaml", + "Lumenrift": "lumenrift.yaml", + "Lumin": "lumin.yaml", + "lumina": "lumina.yaml", + "Lumina": "lumina.yaml", + "Luminara Void": "luminara-void.yaml", + "Luminarca (Crepúsculo)": "luminarca-crep-sculo.yaml", + "Luminarca (Luz)": "luminarca-luz.yaml", + "Luminarca (Trevas)": "luminarca-trevas.yaml", + "LuminaShade-Amethyst": "luminashade-amethyst.yaml", + "Luminescence Theme": "luminescence-theme.yaml", + "Lumon Theme": "lumon-theme.yaml", + "Lumos Black": "lumos-black.yaml", + "Lumos Dark": "lumos-dark.yaml", + "Lumos Dark Soft": "lumos-dark-soft.yaml", + "Lunar": "lunar.yaml", + "Lunar Eclipse": "lunar-eclipse.yaml", + "Lunar Eclipse Golden Hour": "lunar-eclipse-golden-hour.yaml", + "Lunar Eclipse Light": "lunar-eclipse-light.yaml", + "Lunar Pink": "lunar-pink.yaml", + "Lunar Pink Satellite": "lunar-pink-satellite.yaml", + "Lunar Theme": "lunar-theme.yaml", + "lunar vscode": "lunar-vscode.yaml", + "Lunaria": "lunaria.yaml", + "Lunna Dark": "lunna-dark.yaml", + "Lupine": "lupine.yaml", + "lupus": "lupus.yaml", + "luxeforest": "luxeforest.yaml", + "Lyra's Vega": "lyra-s-vega.yaml", + "LzTheme": "lztheme.yaml", + "M-Unity's Custom VSCode Theme": "m-unity-s-custom-vscode-theme.yaml", + "M2D - Fork": "m2d-fork.yaml", + "mac-theme": "mac-theme.yaml", + "Machine": "machine.yaml", + "Macho Man": "macho-man.yaml", + "macOS": "macos.yaml", + "macOS Classic Dark": "macos-classic-dark.yaml", + "macOS Classic Light": "macos-classic-light.yaml", + "Macrodata Refiners - Classic": "macrodata-refiners-classic.yaml", + "Macrodata Refiners - Cold Harbor": "macrodata-refiners-cold-harbor.yaml", + "Macrodata Refiners - Defiant Jazz": "macrodata-refiners-defiant-jazz.yaml", + "Macrodata Refiners - ORTBO": "macrodata-refiners-ortbo.yaml", + "Macrodata Refiners - Sweet Vitriol": "macrodata-refiners-sweet-vitriol.yaml", + "Mad Dark Volt": "mad-dark-volt.yaml", + "MadAk17z-darkmode-testing": "madak17z-darkmode-testing.yaml", + "madness": "madness.yaml", + "MadNight": "madnight.yaml", + "Madrid Night": "madrid-night.yaml", + "Magenta One Dark Pro": "magenta-one-dark-pro.yaml", + "Magic Mushroom Theme": "magic-mushroom-theme.yaml", + "Magicorp": "magicorp.yaml", + "MagicUser": "magicuser.yaml", + "MagicUser Bases": "magicuser-bases.yaml", + "MagicUser Book": "magicuser-book.yaml", + "MagicUser Camouflage": "magicuser-camouflage.yaml", + "MagicUser Camouflage Light": "magicuser-camouflage-light.yaml", + "MagicUser Day": "magicuser-day.yaml", + "MagicUser Light": "magicuser-light.yaml", + "MagicUser Light Blue": "magicuser-light-blue.yaml", + "MagicUser Light Gray": "magicuser-light-gray.yaml", + "MagicUser Light Green": "magicuser-light-green.yaml", + "MagicUser Light Orange": "magicuser-light-orange.yaml", + "MagicUser Light Purple": "magicuser-light-purple.yaml", + "MagicUser Neblina": "magicuser-neblina.yaml", + "MagicUser Night": "magicuser-night.yaml", + "MagicUser Night Neblina": "magicuser-night-neblina.yaml", + "MagicUser Paladin": "magicuser-paladin.yaml", + "MagicUser Path": "magicuser-path.yaml", + "MagicUser Power": "magicuser-power.yaml", + "MagicUser Purple": "magicuser-purple.yaml", + "MagicUser Purple Night": "magicuser-purple-night.yaml", + "MagicUser Room Lamp": "magicuser-room-lamp.yaml", + "MagicUser Sea": "magicuser-sea.yaml", + "MagicUser Space": "magicuser-space.yaml", + "MagicUser Specialist": "magicuser-specialist.yaml", + "MagicUser Staff": "magicuser-staff.yaml", + "MagicUser Sun": "magicuser-sun.yaml", + "MagicUser Talisman": "magicuser-talisman.yaml", + "MagicUser Teal": "magicuser-teal.yaml", + "MagicUser Teal Night": "magicuser-teal-night.yaml", + "MagicUser Veteran": "magicuser-veteran.yaml", + "MagicUser Veteran Blue": "magicuser-veteran-blue.yaml", + "MagicUser Veteran Purple": "magicuser-veteran-purple.yaml", + "MagicUser Wand Blue": "magicuser-wand-blue.yaml", + "Magnolia": "magnolia.yaml", + "magnus-dark-theme": "magnus-dark-theme.yaml", + "maguh": "maguh.yaml", + "Maharashtra - Land of Warriors": "maharashtra-land-of-warriors.yaml", + "Mahiro": "mahiro.yaml", + "Maisum Xcode Dark": "maisum-xcode-dark.yaml", + "Mak1na Theme": "mak1na-theme.yaml", + "Make Apps": "make-apps.yaml", + "Malachite": "malachite.yaml", + "Maldi Dark": "maldi-dark.yaml", + "Malibu Sunset": "malibu-sunset.yaml", + "Malibun Sunrise": "malibun-sunrise.yaml", + "malte": "malte.yaml", + "Man Dark Stone": "man-dark-stone.yaml", + "Manatee": "manatee.yaml", + "Mandacaru Syntax Theme": "mandacaru-syntax-theme.yaml", + "Manhld Theme": "manhld-theme.yaml", + "Manjaro Owl": "manjaro-owl.yaml", + "Manners": "manners.yaml", + "Mantissa Dark": "mantissa-dark.yaml", + "Mantissa Light": "mantissa-light.yaml", + "Maomao Dark Theme": "maomao-dark-theme.yaml", + "Maomao Light Theme": "maomao-light-theme.yaml", + "Maple Dark": "maple-dark.yaml", + "Maple Light": "maple-light.yaml", + "Marble Dark": "marble-dark.yaml", + "Marci1": "marci1.yaml", + "Marcial Theme": "marcial-theme.yaml", + "marcoSven": "marcosven.yaml", + "Mariana": "mariana.yaml", + "Mariana (Pro)": "mariana-pro.yaml", + "Mariana Refined": "mariana-refined.yaml", + "mariana-light": "mariana-light.yaml", + "Marigold Night": "marigold-night.yaml", + "Mario Theme": "mario-theme.yaml", + "Marnic1505": "marnic1505.yaml", + "Maroza Cyber Chill": "maroza-cyber-chill.yaml", + "Maroza Dark Theme": "maroza-dark-theme.yaml", + "Maroza Light Theme": "maroza-light-theme.yaml", + "Maroza Soothing Aqua": "maroza-soothing-aqua.yaml", + "Maroza Zen Pro": "maroza-zen-pro.yaml", + "mars": "mars.yaml", + "Mars": "mars.yaml", + "MarshMallow": "marshmallow.yaml", + "MarsiDark": "marsidark.yaml", + "MARStree": "marstree.yaml", + "Marwen-Labidi-Theme": "marwen-labidi-theme.yaml", + "matcha": "matcha.yaml", + "Matcha": "matcha.yaml", + "Matcha Pink": "matcha-pink.yaml", + "matchalk": "matchalk.yaml", + "Matchanaa": "matchanaa.yaml", + "Matchati": "matchati.yaml", + "Material": "material.yaml", + "Material Community Ansi 16": "material-community-ansi-16.yaml", + "Material Midnight": "material-midnight.yaml", + "Material Monokai High Contrast": "material-monokai-high-contrast.yaml", + "Material Ocean": "material-ocean.yaml", + "Material Rainbow": "material-rainbow.yaml", + "Material Solarized": "material-solarized.yaml", + "Material Theme Dark": "material-theme-dark.yaml", + "Material Theme Darker": "material-theme-darker.yaml", + "Material Theme Twilight Wave Ocean Ui ~": "material-theme-twilight-wave-ocean-ui.yaml", + "material-color-theme": "material-color-theme.yaml", + "material-dark-color-theme": "material-dark-color-theme.yaml", + "Material-Last": "material-last.yaml", + "Material-Theme-Darker": "material-theme-darker.yaml", + "Material-Theme-Darker-High-Contrast": "material-theme-darker-high-contrast.yaml", + "Material-Theme-Deepforest-High-Contrast": "material-theme-deepforest-high-contrast.yaml", + "Material-Theme-Default-High-Contrast": "material-theme-default-high-contrast.yaml", + "Material-Theme-Lighter": "material-theme-lighter.yaml", + "Material-Theme-Lighter-High-Contrast": "material-theme-lighter-high-contrast.yaml", + "Material-Theme-Palenight-High-Contrast": "material-theme-palenight-high-contrast.yaml", + "material1": "material1.yaml", + "MaterialDarker-MonokaiST3": "materialdarker-monokaist3.yaml", + "materialdarkplus": "materialdarkplus.yaml", + "Matey": "matey.yaml", + "Matitheme": "matitheme.yaml", + "Matitheme Gotham": "matitheme-gotham.yaml", + "Matrix": "matrix.yaml", + "Matrix Hacking Dark Theme": "matrix-hacking-dark-theme.yaml", + "Matrix Mint": "matrix-mint.yaml", + "Matronator's Theme": "matronator-s-theme.yaml", + "Matte Atelier — Ivory": "matte-atelier-ivory.yaml", + "Matte Atelier — Obsidian": "matte-atelier-obsidian.yaml", + "Matte Atelier — Obsidian Colorblind": "matte-atelier-obsidian-colorblind.yaml", + "Matte Atelier — Obsidian High Contrast": "matte-atelier-obsidian-high-contrast.yaml", + "Matte Atelier — Rosé": "matte-atelier-ros.yaml", + "Matte Atelier — Sapphire": "matte-atelier-sapphire.yaml", + "Matte Light Theme": "matte-light-theme.yaml", + "MatteBlack": "matteblack.yaml", + "matter": "matter.yaml", + "Matteric Dark Default": "matteric-dark-default.yaml", + "mauve": "mauve.yaml", + "mauve-contrast": "mauve-contrast.yaml", + "mauve-light": "mauve-light.yaml", + "Mavaia": "mavaia.yaml", + "Max2": "max2.yaml", + "Maxsumon": "maxsumon.yaml", + "Mayukai": "mayukai.yaml", + "Mazda-RX7-Theme": "mazda-rx7-theme.yaml", + "MBP": "mbp.yaml", + "McDark Theme": "mcdark-theme.yaml", + "McDonalds Theme": "mcdonalds-theme.yaml", + "McYoda's Light Theme": "mcyoda-s-light-theme.yaml", + "Md Abdur Rakib": "md-abdur-rakib.yaml", + "Meaow Dark": "meaow-dark.yaml", + "MECHA.01": "mecha-01.yaml", + "medium-dark": "medium-dark.yaml", + "Mega Green": "mega-green.yaml", + "Meitnerium Theme": "meitnerium-theme.yaml", + "mel": "mel.yaml", + "melancholy": "melancholy.yaml", + "Melange Redux: Light": "melange-redux-light.yaml", + "melcr": "melcr.yaml", + "Melee Island": "melee-island.yaml", + "Melinoe": "melinoe.yaml", + "mellow": "mellow.yaml", + "Mellow": "mellow.yaml", + "mellow-contrast": "mellow-contrast.yaml", + "mellow-light": "mellow-light.yaml", + "Melokai": "melokai.yaml", + "MelonCode": "meloncode.yaml", + "Melyon": "melyon.yaml", + "Melyon Blue": "melyon-blue.yaml", + "Menelik": "menelik.yaml", + "MeOceanBlackbarry": "meoceanblackbarry.yaml", + "MeOceanGray": "meoceangray.yaml", + "Merlot": "merlot.yaml", + "Mesalvo Cortex": "mesalvo-cortex.yaml", + "Meshvoid": "meshvoid.yaml", + "MeshVoid_Light": "meshvoid-light.yaml", + "Metagrama": "metagrama.yaml", + "Meteora": "meteora.yaml", + "Metropolis": "metropolis.yaml", + "Metropolis Light": "metropolis-light.yaml", + "Mgldvd Theme": "mgldvd-theme.yaml", + "MH Theme": "mh-theme.yaml", + "mhfeizi": "mhfeizi.yaml", + "mi4uokai": "mi4uokai.yaml", + "Miami Vice": "miami-vice.yaml", + "miami-nights": "miami-nights.yaml", + "miami-wind": "miami-wind.yaml", + "miasma-color-theme": "miasma-color-theme.yaml", + "MibTema": "mibtema.yaml", + "micky-dark-black": "micky-dark-black.yaml", + "micky-dark-lite": "micky-dark-lite.yaml", + "micky-dark-lite-black": "micky-dark-lite-black.yaml", + "Midas Touch": "midas-touch.yaml", + "Midas Touch Light": "midas-touch-light.yaml", + "Midcentury": "midcentury.yaml", + "Midight Sun": "midight-sun.yaml", + "Midnight Blueprint": "midnight-blueprint.yaml", + "Midnight Breeze": "midnight-breeze.yaml", + "Midnight Candy": "midnight-candy.yaml", + "Midnight City": "midnight-city.yaml", + "Midnight Darker": "midnight-darker.yaml", + "Midnight Dracula": "midnight-dracula.yaml", + "Midnight Embers": "midnight-embers.yaml", + "Midnight Gambler": "midnight-gambler.yaml", + "Midnight Grove": "midnight-grove.yaml", + "Midnight Guest": "midnight-guest.yaml", + "Midnight Lake": "midnight-lake.yaml", + "Midnight Marina": "midnight-marina.yaml", + "Midnight Mirage": "midnight-mirage.yaml", + "Midnight Monokai": "midnight-monokai.yaml", + "Midnight Moon": "midnight-moon.yaml", + "Midnight Moon Eclipse": "midnight-moon-eclipse.yaml", + "Midnight Moon Ukiyo": "midnight-moon-ukiyo.yaml", + "Midnight Pastel": "midnight-pastel.yaml", + "Midnight Pro": "midnight-pro.yaml", + "Midnight Purple": "midnight-purple.yaml", + "Midnight Purple Deep": "midnight-purple-deep.yaml", + "Midnight Rainbow": "midnight-rainbow.yaml", + "Midnight Rose Theme": "midnight-rose-theme.yaml", + "Midnight Sapphire": "midnight-sapphire.yaml", + "Midnight Theme": "midnight-theme.yaml", + "Midnight Theme Light": "midnight-theme-light.yaml", + "Midnight Theme Light Soft": "midnight-theme-light-soft.yaml", + "Midnight Ukiyo": "midnight-ukiyo.yaml", + "midnight-color-theme": "midnight-color-theme.yaml", + "midnight-fusion": "midnight-fusion.yaml", + "Midnight-Z": "midnight-z.yaml", + "MidnightBlue": "midnightblue.yaml", + "MidnightGlow": "midnightglow.yaml", + "midt": "midt.yaml", + "Mihari": "mihari.yaml", + "Mihari Bordered": "mihari-bordered.yaml", + "Mike Sources Green CRT": "mike-sources-green-crt.yaml", + "Mike Sources YellowStone": "mike-sources-yellowstone.yaml", + "Mikes-Vscode-Theme-1": "mikes-vscode-theme-1.yaml", + "Miku Code": "miku-code.yaml", + "Miku Code Fusion Light": "miku-code-fusion-light.yaml", + "Miku Code Light": "miku-code-light.yaml", + "Milianor Theme": "milianor-theme.yaml", + "military - Fork": "military-fork.yaml", + "MilkyWay": "milkyway.yaml", + "Mimesis Dark": "mimesis-dark.yaml", + "Mimesis Light": "mimesis-light.yaml", + "Min Gruvbox": "min-gruvbox.yaml", + "Min Light": "min-light.yaml", + "MinCom": "mincom.yaml", + "Minimal": "minimal.yaml", + "Minimal Dark": "minimal-dark.yaml", + "minimal dark - Fork": "minimal-dark-fork.yaml", + "Minimal Monochrome Dark": "minimal-monochrome-dark.yaml", + "Minimal Monochrome Ink Dark": "minimal-monochrome-ink-dark.yaml", + "Minimal Monochrome Ink Light": "minimal-monochrome-ink-light.yaml", + "Minimal Monochrome Pastel Dawn": "minimal-monochrome-pastel-dawn.yaml", + "Minimal Monochrome Pastel Light": "minimal-monochrome-pastel-light.yaml", + "Minimal Monochrome Slate Dark": "minimal-monochrome-slate-dark.yaml", + "Minimal Monochrome Slate Light": "minimal-monochrome-slate-light.yaml", + "Minimal Pastel Dark — Vibrant (Softer Yellow)": "minimal-pastel-dark-vibrant-softer-yellow.yaml", + "Minimal Theme": "minimal-theme.yaml", + "Minimal Wave - Floral Dark": "minimal-wave-floral-dark.yaml", + "Minimal Wave - Floral Light": "minimal-wave-floral-light.yaml", + "minimal_green": "minimal-green.yaml", + "Minimal-44": "minimal-44.yaml", + "Minimal-44-pro": "minimal-44-pro.yaml", + "minimalesque": "minimalesque.yaml", + "Minimalist": "minimalist.yaml", + "Minimalistic dark theme": "minimalistic-dark-theme.yaml", + "MinimalisticDarkTheme": "minimalisticdarktheme.yaml", + "Minimalistik": "minimalistik.yaml", + "MinimalRed": "minimalred.yaml", + "miniml-dusk": "miniml-dusk.yaml", + "miniml-light": "miniml-light.yaml", + "miniml-midnight": "miniml-midnight.yaml", + "Minimus": "minimus.yaml", + "MiniTheme": "minitheme.yaml", + "mink dark theme": "mink-dark-theme.yaml", + "Minokai Kalel": "minokai-kalel.yaml", + "Minone": "minone.yaml", + "Mint Chocolate": "mint-chocolate.yaml", + "Mint Dark": "mint-dark.yaml", + "mintchoc": "mintchoc.yaml", + "mintchoc-contrast": "mintchoc-contrast.yaml", + "mintchoc-light": "mintchoc-light.yaml", + "MintDark": "mintdark.yaml", + "Minty Dark": "minty-dark.yaml", + "mirai": "mirai.yaml", + "Miramare": "miramare.yaml", + "Mist": "mist.yaml", + "Mist Theme": "mist-theme.yaml", + "Misterioso": "misterioso.yaml", + "Misty Blue": "misty-blue.yaml", + "MistyWind": "mistywind.yaml", + "Mitaverse": "mitaverse.yaml", + "Mitsuri Kanroji": "mitsuri-kanroji.yaml", + "Mixed Solarized Light": "mixed-solarized-light.yaml", + "mk iceBlack": "mk-iceblack.yaml", + "MK Mono Dark": "mk-mono-dark.yaml", + "MK Mono Light": "mk-mono-light.yaml", + "MKANET": "mkanet.yaml", + "MKDeveloper Theme": "mkdeveloper-theme.yaml", + "mlia-dark": "mlia-dark.yaml", + "mlia-light": "mlia-light.yaml", + "mlia-soft": "mlia-soft.yaml", + "mlv60 vintage light": "mlv60-vintage-light.yaml", + "Mocaccino Light": "mocaccino-light.yaml", + "Moderate Dimm": "moderate-dimm.yaml", + "Modern Dracula": "modern-dracula.yaml", + "Modern GitHub | White & Purple": "modern-github-white-purple.yaml", + "ModernEclipse": "moderneclipse.yaml", + "ModernUI - Fork": "modernui-fork.yaml", + "Modest pink": "modest-pink.yaml", + "Modified Darker Material Theme": "modified-darker-material-theme.yaml", + "Modus Operandi": "modus-operandi.yaml", + "Modus Operandi Deuteranopia": "modus-operandi-deuteranopia.yaml", + "Modus Operandi Tinted": "modus-operandi-tinted.yaml", + "Modus Operandi Tritanopia": "modus-operandi-tritanopia.yaml", + "Modus Vivendi": "modus-vivendi.yaml", + "Modus Vivendi Deuteranopia": "modus-vivendi-deuteranopia.yaml", + "Modus Vivendi Tinted": "modus-vivendi-tinted.yaml", + "Modus Vivendi Tritanopia": "modus-vivendi-tritanopia.yaml", + "Moegi Black": "moegi-black.yaml", + "Moegi Black Zen": "moegi-black-zen.yaml", + "Moegi Dark": "moegi-dark.yaml", + "Moegi Dawn": "moegi-dawn.yaml", + "Moegi Iris": "moegi-iris.yaml", + "Moegi Light": "moegi-light.yaml", + "Moegi Space": "moegi-space.yaml", + "Moin Acme": "moin-acme.yaml", + "Moin Dark": "moin-dark.yaml", + "Moin Light": "moin-light.yaml", + "Moin Soft Dark": "moin-soft-dark.yaml", + "Mojito Pro": "mojito-pro.yaml", + "Mojito Pro Dark": "mojito-pro-dark.yaml", + "Mokka": "mokka.yaml", + "Mokka Fork: Darken Blue": "mokka-fork-darken-blue.yaml", + "Mol?lurity Theme": "mol-lurity-theme.yaml", + "Mol?lurity Theme - Soft - (Fixed)": "mol-lurity-theme-soft-fixed.yaml", + "Molarity - Washed": "molarity-washed.yaml", + "Molineux": "molineux.yaml", + "Moloch": "moloch.yaml", + "Molokai Darker": "molokai-darker.yaml", + "Molten Aurora": "molten-aurora.yaml", + "monaco-paulsevere-color-theme": "monaco-paulsevere-color-theme.yaml", + "Monfika": "monfika.yaml", + "Mono Atom": "mono-atom.yaml", + "Mono BW": "mono-bw.yaml", + "mono-cl": "mono-cl.yaml", + "Monochai Dark": "monochai-dark.yaml", + "Monochromator Dark Plain": "monochromator-dark-plain.yaml", + "Monochromator Light Plain": "monochromator-light-plain.yaml", + "monochrome": "monochrome.yaml", + "Monochrome": "monochrome.yaml", + "Monochrome (GitHub Edition)": "monochrome-github-edition.yaml", + "monochrome-dark": "monochrome-dark.yaml", + "monochrome-dark-amplified": "monochrome-dark-amplified.yaml", + "monochrome-dark-cool-gray": "monochrome-dark-cool-gray.yaml", + "monochrome-dark-gray": "monochrome-dark-gray.yaml", + "monochrome-dark-indigo": "monochrome-dark-indigo.yaml", + "monochrome-dark-neutral": "monochrome-dark-neutral.yaml", + "monochrome-dark-slate": "monochrome-dark-slate.yaml", + "monochrome-dark-stone": "monochrome-dark-stone.yaml", + "monochrome-dark-subtle": "monochrome-dark-subtle.yaml", + "monochrome-dark-zinc": "monochrome-dark-zinc.yaml", + "monochrome-light": "monochrome-light.yaml", + "monochrome-light-amplified": "monochrome-light-amplified.yaml", + "monochrome-light-cool-gray": "monochrome-light-cool-gray.yaml", + "monochrome-light-gray": "monochrome-light-gray.yaml", + "monochrome-light-indigo": "monochrome-light-indigo.yaml", + "monochrome-light-neutral": "monochrome-light-neutral.yaml", + "monochrome-light-slate": "monochrome-light-slate.yaml", + "monochrome-light-stone": "monochrome-light-stone.yaml", + "monochrome-light-subtle": "monochrome-light-subtle.yaml", + "monochrome-light-zinc": "monochrome-light-zinc.yaml", + "Monocious-color-theme": "monocious-color-theme.yaml", + "Monoclean Light": "monoclean-light.yaml", + "Monocr": "monocr.yaml", + "MonoCraft": "monocraft.yaml", + "Monoeye": "monoeye.yaml", + "Monokai +Blue": "monokai-blue.yaml", + "Monokai Dark": "monokai-dark.yaml", + "Monokai Dark Green": "monokai-dark-green.yaml", + "Monokai Deep Dark": "monokai-deep-dark.yaml", + "Monokai Deep Ocean": "monokai-deep-ocean.yaml", + "Monokai Drizzle": "monokai-drizzle.yaml", + "Monokai Flow": "monokai-flow.yaml", + "Monokai Grey": "monokai-grey.yaml", + "Monokai GRS": "monokai-grs.yaml", + "Monokai Midnight": "monokai-midnight.yaml", + "Monokai Night": "monokai-night.yaml", + "Monokai Night Z Blue": "monokai-night-z-blue.yaml", + "Monokai Octagon": "monokai-octagon.yaml", + "Monokai Pro": "monokai-pro.yaml", + "Monokai Rain": "monokai-rain.yaml", + "Monokai Sharp": "monokai-sharp.yaml", + "Monokai soda darker": "monokai-soda-darker.yaml", + "Monokai Storm": "monokai-storm.yaml", + "Monokai supersaturated": "monokai-supersaturated.yaml", + "Monokai Tornado": "monokai-tornado.yaml", + "Monokai Underdark": "monokai-underdark.yaml", + "Monokai Underdark MK": "monokai-underdark-mk.yaml", + "Monokai--": "monokai.yaml", + "monokai-color-theme": "monokai-color-theme.yaml", + "monokai-color-theme-1": "monokai-color-theme-1.yaml", + "monokai-extended": "monokai-extended.yaml", + "monokai-faded": "monokai-faded.yaml", + "monokai-hc-color-theme": "monokai-hc-color-theme.yaml", + "monokai-japan-color-theme": "monokai-japan-color-theme.yaml", + "monokai-ocean-color-theme": "monokai-ocean-color-theme.yaml", + "Monokai-Okean": "monokai-okean.yaml", + "monokai-original-sublime-theme": "monokai-original-sublime-theme.yaml", + "monokai-prime": "monokai-prime.yaml", + "monokai-seti-dark": "monokai-seti-dark.yaml", + "monokai-seti-light": "monokai-seti-light.yaml", + "Monokai++ Unified": "monokai-unified.yaml", + "Monokai22": "monokai22.yaml", + "monokaiju": "monokaiju.yaml", + "MonokaiSGQ": "monokaisgq.yaml", + "Monokaizen": "monokaizen.yaml", + "Monokard": "monokard.yaml", + "Monokong": "monokong.yaml", + "monokuro-amber": "monokuro-amber.yaml", + "Monolite": "monolite.yaml", + "Monos - Blac": "monos-blac.yaml", + "Monospace Dark": "monospace-dark.yaml", + "Monospace Light": "monospace-light.yaml", + "monotone": "monotone.yaml", + "MonRch-Darc": "monrch-darc.yaml", + "Montana": "montana.yaml", + "Monza Dark": "monza-dark.yaml", + "monzo": "monzo.yaml", + "monzo-contrast": "monzo-contrast.yaml", + "monzo-light": "monzo-light.yaml", + "Moon Light Theme": "moon-light-theme.yaml", + "Moon Night": "moon-night.yaml", + "Moon Phases": "moon-phases.yaml", + "Moon Purple": "moon-purple.yaml", + "Moon Violet Dark Plus": "moon-violet-dark-plus.yaml", + "Moonbloom Theme Official": "moonbloom-theme-official.yaml", + "Moonerized Dark": "moonerized-dark.yaml", + "Moonerized Light": "moonerized-light.yaml", + "Moonfly": "moonfly.yaml", + "Moongate Theme Dark": "moongate-theme-dark.yaml", + "Moongate Theme Light": "moongate-theme-light.yaml", + "MoonKai": "moonkai.yaml", + "Moonlight": "moonlight.yaml", + "Moonlight II": "moonlight-ii.yaml", + "Moonokai": "moonokai.yaml", + "Moonspell - Northern Lights": "moonspell-northern-lights.yaml", + "morass": "morass.yaml", + "morass-contrast": "morass-contrast.yaml", + "morass-light": "morass-light.yaml", + "more purple": "more-purple.yaml", + "morgan.codes": "morgan-codes.yaml", + "Mori": "mori.yaml", + "Mori Keycaps": "mori-keycaps.yaml", + "Morning Mist": "morning-mist.yaml", + "Morning Mocha": "morning-mocha.yaml", + "Morose Theme": "morose-theme.yaml", + "Mosaic": "mosaic.yaml", + "Mosmmy": "mosmmy.yaml", + "Moss Oracle": "moss-oracle.yaml", + "MossFrame": "mossframe.yaml", + "MossFrame — Light": "mossframe-light.yaml", + "Motion Blue (Thin Brackets)": "motion-blue-thin-brackets.yaml", + "Motiv8der's Theme": "motiv8der-s-theme.yaml", + "Mount Kalaga Noir": "mount-kalaga-noir.yaml", + "Mountain": "mountain.yaml", + "mountain-theme": "mountain-theme.yaml", + "Mountains and Rivers": "mountains-and-rivers.yaml", + "Mourning": "mourning.yaml", + "Mowgli": "mowgli.yaml", + "Mr Code Black": "mr-code-black.yaml", + "Mr Code Gunmetal": "mr-code-gunmetal.yaml", + "MS Dev Theme": "ms-dev-theme.yaml", + "mt-doom-theme": "mt-doom-theme.yaml", + "mud": "mud.yaml", + "Mud Theme": "mud-theme.yaml", + "mud-contrast": "mud-contrast.yaml", + "mud-light": "mud-light.yaml", + "Murasaki theme": "murasaki-theme.yaml", + "Muromachi": "muromachi.yaml", + "Murora Light Lite": "murora-light-lite.yaml", + "murtadapy-green": "murtadapy-green.yaml", + "MushroomSynth": "mushroomsynth.yaml", + "Muted Mirage": "muted-mirage.yaml", + "MuteNight": "mutenight.yaml", + "Mwone-dark": "mwone-dark.yaml", + "My Custom Theme": "my-custom-theme.yaml", + "my dark theme": "my-dark-theme.yaml", + "my dark theme - refined - updated": "my-dark-theme-refined-updated.yaml", + "My First Visual Studio Theme": "my-first-visual-studio-theme.yaml", + "My Hero Academia (Deku Plus Ultra)": "my-hero-academia-deku-plus-ultra.yaml", + "my light theme - mint sand updated": "my-light-theme-mint-sand-updated.yaml", + "my light theme - mint sand updated - Fork Bluesand": "my-light-theme-mint-sand-updated-fork-bluesand.yaml", + "my light theme blue": "my-light-theme-blue.yaml", + "my light theme blue (dark)": "my-light-theme-blue-dark.yaml", + "my light theme light green - Fork-updated": "my-light-theme-light-green-fork-updated.yaml", + "my light theme light green - PaperBlue - Fork": "my-light-theme-light-green-paperblue-fork.yaml", + "my light theme light green - Papermint -updated": "my-light-theme-light-green-papermint-updated.yaml", + "My Monokai": "my-monokai.yaml", + "My Oceanic": "my-oceanic.yaml", + "my-dark-theme": "my-dark-theme.yaml", + "my-theme": "my-theme.yaml", + "MyCode Dark Blue": "mycode-dark-blue.yaml", + "MyGO!!!!!": "mygo.yaml", + "Mynthra": "mynthra.yaml", + "Myoptic": "myoptic.yaml", + "Myoptic v2": "myoptic-v2.yaml", + "Myrteal": "myrteal.yaml", + "Mystic": "mystic.yaml", + "Mystic Moonshadow": "mystic-moonshadow.yaml", + "Mystic-MoonShadow": "mystic-moonshadow.yaml", + "Mystico - C64": "mystico-c64.yaml", + "Mystico - C64 Pepto NTSC Sony": "mystico-c64-pepto-ntsc-sony.yaml", + "Mystico - C64 Pepto PAL": "mystico-c64-pepto-pal.yaml", + "Mystico - Deep purple": "mystico-deep-purple.yaml", + "Mystico - Forest & Ocean": "mystico-forest-ocean.yaml", + "Mystico - Mint": "mystico-mint.yaml", + "Mystico - Plum": "mystico-plum.yaml", + "Mystico - Purples": "mystico-purples.yaml", + "myTheme": "mytheme.yaml", + "Myūzu": "my-zu.yaml", + "MyVsCode": "myvscode.yaml", + "N-DarkTheme": "n-darktheme.yaml", + "n0m4D": "n0m4d.yaml", + "N7 Lilac": "n7-lilac.yaml", + "N7 Maya": "n7-maya.yaml", + "N7 Night Vision": "n7-night-vision.yaml", + "N7 Purple Green": "n7-purple-green.yaml", + "N7 Red Flare": "n7-red-flare.yaml", + "N7 Soft Pink": "n7-soft-pink.yaml", + "Nada Theme": "nada-theme.yaml", + "Nairobi-dark": "nairobi-dark.yaml", + "Nameless": "nameless.yaml", + "Nanowise": "nanowise.yaml", + "Naps Dusk Gold": "naps-dusk-gold.yaml", + "Narasimha - Fearless Dark Theme": "narasimha-fearless-dark-theme.yaml", + "Narato": "narato.yaml", + "narunika": "narunika.yaml", + "Naruto (Hokage Orange)": "naruto-hokage-orange.yaml", + "Naruto Akatsuki": "naruto-akatsuki.yaml", + "Naruto Hinata Hyuga - Byakugan Vision": "naruto-hinata-hyuga-byakugan-vision.yaml", + "Naruto Hokage Dawn": "naruto-hokage-dawn.yaml", + "Naruto Itachi Uchiha - Tsukuyomi Dimension": "naruto-itachi-uchiha-tsukuyomi-dimension.yaml", + "Naruto Jiraiya - Gallant Toad Sage": "naruto-jiraiya-gallant-toad-sage.yaml", + "Naruto Kakashi Copy Ninja": "naruto-kakashi-copy-ninja.yaml", + "Naruto Kurama Nine-Tails": "naruto-kurama-nine-tails.yaml", + "Naruto Kushina Uzumaki - Red Hot-Blooded Habanero": "naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml", + "Naruto Might Guy - GATE OF DEATH MADARA BATTLE": "naruto-might-guy-gate-of-death-madara-battle.yaml", + "Naruto Might Guy Gates of Youth": "naruto-might-guy-gates-of-youth.yaml", + "Naruto Minato Namikaze - Yellow Flash": "naruto-minato-namikaze-yellow-flash.yaml", + "Naruto Pain/Nagato - Rinnegan God": "naruto-pain-nagato-rinnegan-god.yaml", + "Naruto Sage Mode": "naruto-sage-mode.yaml", + "Naruto Sakura Haruno - Cherry Blossom Storm": "naruto-sakura-haruno-cherry-blossom-storm.yaml", + "Naruto Sasuke Uchiha - Sharingan": "naruto-sasuke-uchiha-sharingan.yaml", + "Naruto Shikamaru Nara - Shadow Possession": "naruto-shikamaru-nara-shadow-possession.yaml", + "Naruto Shinobi Night": "naruto-shinobi-night.yaml", + "natasha-theme": "natasha-theme.yaml", + "Natives in Tech Theme": "natives-in-tech-theme.yaml", + "NaTTo Theme 2": "natto-theme-2.yaml", + "Natty": "natty.yaml", + "Natural Faded Dark": "natural-faded-dark.yaml", + "Natural Green Colorblind - Growth & Harmony": "natural-green-colorblind-growth-harmony.yaml", + "Natural Green Light - Growth & Harmony": "natural-green-light-growth-harmony.yaml", + "Nature": "nature.yaml", + "Nature Green Colorblind - Growth & Harmony": "nature-green-colorblind-growth-harmony.yaml", + "Nature Green Light - Growth & Harmony": "nature-green-light-growth-harmony.yaml", + "nature-color-theme": "nature-color-theme.yaml", + "Nautilus": "nautilus.yaml", + "Naver": "naver.yaml", + "Navy": "navy.yaml", + "Navy Flat": "navy-flat.yaml", + "Navy Theme": "navy-theme.yaml", + "navy-nights-theme": "navy-nights-theme.yaml", + "nb-monochrome-dark": "nb-monochrome-dark.yaml", + "ncl5c": "ncl5c.yaml", + "Nebula": "nebula.yaml", + "Nebula Dark Vibrant © Fabo IT and Media Group": "nebula-dark-vibrant-fabo-it-and-media-group.yaml", + "Nebula Nights": "nebula-nights.yaml", + "Nebula Pro Dark": "nebula-pro-dark.yaml", + "Nebula Surge": "nebula-surge.yaml", + "Nebula Symphony Dark": "nebula-symphony-dark.yaml", + "Nebula Symphony Dark Pro": "nebula-symphony-dark-pro.yaml", + "Nebula Symphony Light": "nebula-symphony-light.yaml", + "Nebula-color-theme": "nebula-color-theme.yaml", + "Nebular Theme": "nebular-theme.yaml", + "Nebularomantic": "nebularomantic.yaml", + "Nebulous Dark": "nebulous-dark.yaml", + "Nebulous Luna": "nebulous-luna.yaml", + "Necessity AAA Light": "necessity-aaa-light.yaml", + "Necessity-AAA": "necessity-aaa.yaml", + "Negative Theme": "negative-theme.yaml", + "Neil's Theme": "neil-s-theme.yaml", + "Neil's Theme (Dark)": "neil-s-theme-dark.yaml", + "Nekhbet": "nekhbet.yaml", + "neki": "neki.yaml", + "Neo Hacker Soft - Premium": "neo-hacker-soft-premium.yaml", + "Neo Seoul Dark": "neo-seoul-dark.yaml", + "Neo Seoul Light": "neo-seoul-light.yaml", + "neo-nuxt-matte": "neo-nuxt-matte.yaml", + "neo-vscode-theme": "neo-vscode-theme.yaml", + "Neodark+": "neodark.yaml", + "Neofusion": "neofusion.yaml", + "Neogenesis": "neogenesis.yaml", + "Neokai": "neokai.yaml", + "Neon": "neon.yaml", + "Neon Color - Dark Theme": "neon-color-dark-theme.yaml", + "Neon Cyber": "neon-cyber.yaml", + "Neon Cyberpunk": "neon-cyberpunk.yaml", + "Neon Dream Code": "neon-dream-code.yaml", + "Neon Dreams Neobrutalist": "neon-dreams-neobrutalist.yaml", + "Neon Dusk": "neon-dusk.yaml", + "Neon Forest": "neon-forest.yaml", + "Neon Glow": "neon-glow.yaml", + "Neon Green — Light": "neon-green-light.yaml", + "Neon Green — Midnight": "neon-green-midnight.yaml", + "Neon Lights": "neon-lights.yaml", + "Neon Matrix": "neon-matrix.yaml", + "Neon Noir": "neon-noir.yaml", + "Neon Ocean": "neon-ocean.yaml", + "Neon Palette Themes (Blue)": "neon-palette-themes-blue.yaml", + "NEON PURPLE OLD-SCHOOL": "neon-purple-old-school.yaml", + "Neon Shimmer": "neon-shimmer.yaml", + "Neon Shimmer (Amethyst Core)": "neon-shimmer-amethyst-core.yaml", + "Neon Shimmer (Bubblegum Punk)": "neon-shimmer-bubblegum-punk.yaml", + "Neon Shimmer (Crimson Drive)": "neon-shimmer-crimson-drive.yaml", + "Neon Side": "neon-side.yaml", + "Neon Sunset": "neon-sunset.yaml", + "Neon Synthwave": "neon-synthwave.yaml", + "Neon Trench Theme": "neon-trench-theme.yaml", + "Neon Violet": "neon-violet.yaml", + "Neon-Black": "neon-black.yaml", + "neon-theme": "neon-theme.yaml", + "NeonAska": "neonaska.yaml", + "Neonite": "neonite.yaml", + "neonmist": "neonmist.yaml", + "NeonShaded": "neonshaded.yaml", + "NeoRose VimPine": "neorose-vimpine.yaml", + "Neospace": "neospace.yaml", + "Neospectrum Midnight": "neospectrum-midnight.yaml", + "Neospectrum Mystic": "neospectrum-mystic.yaml", + "neovim-theme": "neovim-theme.yaml", + "Neovim.SP": "neovim-sp.yaml", + "Nephtis Dark": "nephtis-dark.yaml", + "Nephtis Light": "nephtis-light.yaml", + "Nerc One Dark A": "nerc-one-dark-a.yaml", + "Nerc One Dark B": "nerc-one-dark-b.yaml", + "Nerd light": "nerd-light.yaml", + "Nero": "nero.yaml", + "nestjs.codes": "nestjs-codes.yaml", + "NetBeans Harmonized": "netbeans-harmonized.yaml", + "NetBilla Blue": "netbilla-blue.yaml", + "Netlify": "netlify.yaml", + "Netlify Theme": "netlify-theme.yaml", + "netrunnaz": "netrunnaz.yaml", + "netstack": "netstack.yaml", + "NETTSI Monokai Darker": "nettsi-monokai-darker.yaml", + "Netuno": "netuno.yaml", + "neumatter night": "neumatter-night.yaml", + "NeuralTone": "neuraltone.yaml", + "Neutral": "neutral.yaml", + "Neutral Gray - Minimalism & Focus": "neutral-gray-minimalism-focus.yaml", + "NeutralVI": "neutralvi.yaml", + "Neutron": "neutron.yaml", + "Nevada": "nevada.yaml", + "Never Be Lost (Day)": "never-be-lost-day.yaml", + "Never Be Lost (Night)": "never-be-lost-night.yaml", + "Nevermore": "nevermore.yaml", + "Neverwhere": "neverwhere.yaml", + "NEVO": "nevo.yaml", + "NEVO black": "nevo-black.yaml", + "NEVO comfy": "nevo-comfy.yaml", + "New England light theme": "new-england-light-theme.yaml", + "New Moon": "new-moon.yaml", + "New Owl": "new-owl.yaml", + "New Retro": "new-retro.yaml", + "New South Wales Dark": "new-south-wales-dark.yaml", + "New South Wales Light": "new-south-wales-light.yaml", + "new theme": "new-theme.yaml", + "new-sphere": "new-sphere.yaml", + "NewDarkTheme": "newdarktheme.yaml", + "Newera Dark Theme": "newera-dark-theme.yaml", + "NewRailscasts": "newrailscasts.yaml", + "Newspaperlike": "newspaperlike.yaml", + "newsprint-c": "newsprint-c.yaml", + "newsprint-invert": "newsprint-invert.yaml", + "newsprint-so": "newsprint-so.yaml", + "newton": "newton.yaml", + "Newton Next (Official)": "newton-next-official.yaml", + "newton-contrast": "newton-contrast.yaml", + "newton-light": "newton-light.yaml", + "NewX Light": "newx-light.yaml", + "next-theme": "next-theme.yaml", + "nextcode": "nextcode.yaml", + "Nexus": "nexus.yaml", + "Nexus Dark": "nexus-dark.yaml", + "NGC Aurora Dawn": "ngc-aurora-dawn.yaml", + "NGC Aurora Night": "ngc-aurora-night.yaml", + "NGC Forest Retreat": "ngc-forest-retreat.yaml", + "NGC Midnight Base": "ngc-midnight-base.yaml", + "ngoding bro": "ngoding-bro.yaml", + "Nibelung": "nibelung.yaml", + "Nibelung Dark": "nibelung-dark.yaml", + "Nice-Dark": "nice-dark.yaml", + "niceDark": "nicedark.yaml", + "nicedark - Fork": "nicedark-fork.yaml", + "Nicely Neon": "nicely-neon.yaml", + "Nier: Automata Light Theme": "nier-automata-light-theme.yaml", + "Nier: Automata Theme": "nier-automata-theme.yaml", + "night": "night.yaml", + "Night": "night.yaml", + "Night blue (high)": "night-blue-high.yaml", + "Night City": "night-city.yaml", + "Night Cyan": "night-cyan.yaml", + "Night Dragon": "night-dragon.yaml", + "night fae theme": "night-fae-theme.yaml", + "Night Market": "night-market.yaml", + "Night Owl": "night-owl.yaml", + "Night Owl Oled Dim 100": "night-owl-oled-dim-100.yaml", + "Night Owl Oled Dim 75": "night-owl-oled-dim-75.yaml", + "Night Owl Oled Dim 80": "night-owl-oled-dim-80.yaml", + "Night Owl Oled Dim 85": "night-owl-oled-dim-85.yaml", + "Night Owl Oled Dim 90": "night-owl-oled-dim-90.yaml", + "Night Owl Oled Dim 95": "night-owl-oled-dim-95.yaml", + "Night Pink": "night-pink.yaml", + "Night Raccoon": "night-raccoon.yaml", + "Night Rainbow": "night-rainbow.yaml", + "Night Rainbow - Darker": "night-rainbow-darker.yaml", + "Night Rainbow - Purple Haze": "night-rainbow-purple-haze.yaml", + "Night Storm": "night-storm.yaml", + "Night Watchers": "night-watchers.yaml", + "Night Wind Theme": "night-wind-theme.yaml", + "Night Yellow": "night-yellow.yaml", + "Night Zen": "night-zen.yaml", + "night-aurora": "night-aurora.yaml", + "night-blossom": "night-blossom.yaml", + "Night-Stack Amber CRT": "night-stack-amber-crt.yaml", + "Night-Stack Amber Dark": "night-stack-amber-dark.yaml", + "Night-Stack Arctic Night": "night-stack-arctic-night.yaml", + "Night-Stack Aurora": "night-stack-aurora.yaml", + "Night-Stack Carbon": "night-stack-carbon.yaml", + "Night-Stack Carbon Green": "night-stack-carbon-green.yaml", + "Night-Stack Circuit": "night-stack-circuit.yaml", + "Night-Stack Copper Dark": "night-stack-copper-dark.yaml", + "Night-Stack Crimson Dark": "night-stack-crimson-dark.yaml", + "Night-Stack Deep Work": "night-stack-deep-work.yaml", + "Night-Stack Desert Dusk": "night-stack-desert-dusk.yaml", + "Night-Stack DOS Blue": "night-stack-dos-blue.yaml", + "Night-Stack Ember Dark": "night-stack-ember-dark.yaml", + "Night-Stack EyeStrain Green": "night-stack-eyestrain-green.yaml", + "Night-Stack Forest Night": "night-stack-forest-night.yaml", + "Night-Stack Frost": "night-stack-frost.yaml", + "Night-Stack Graphite": "night-stack-graphite.yaml", + "Night-Stack Green Neon": "night-stack-green-neon.yaml", + "Night-Stack Hacker Soft": "night-stack-hacker-soft.yaml", + "Night-Stack Hologram": "night-stack-hologram.yaml", + "Night-Stack Indigo Dark": "night-stack-indigo-dark.yaml", + "Night-Stack Ion": "night-stack-ion.yaml", + "Night-Stack Low Contrast Pro": "night-stack-low-contrast-pro.yaml", + "Night-Stack Midnight Blue": "night-stack-midnight-blue.yaml", + "Night-Stack Mono Focus": "night-stack-mono-focus.yaml", + "Night-Stack Neo Tokyo": "night-stack-neo-tokyo.yaml", + "Night-Stack Night City": "night-stack-night-city.yaml", + "Night-Stack Noir": "night-stack-noir.yaml", + "Night-Stack Obsidian": "night-stack-obsidian.yaml", + "Night-Stack Obsidian Glass": "night-stack-obsidian-glass.yaml", + "Night-Stack Ocean Abyss": "night-stack-ocean-abyss.yaml", + "Night-Stack Onyx": "night-stack-onyx.yaml", + "Night-Stack Phosphor Green": "night-stack-phosphor-green.yaml", + "Night-Stack Plasma": "night-stack-plasma.yaml", + "Night-Stack Pure Hacker": "night-stack-pure-hacker.yaml", + "Night-Stack Quantum": "night-stack-quantum.yaml", + "Night-Stack Retro Wave": "night-stack-retro-wave.yaml", + "Night-Stack Slate": "night-stack-slate.yaml", + "Night-Stack Street Grid": "night-stack-street-grid.yaml", + "Night-Stack Teal Dark": "night-stack-teal-dark.yaml", + "Night-Stack Titanium": "night-stack-titanium.yaml", + "Night-Stack Violet Dark": "night-stack-violet-dark.yaml", + "Night-Stack Zen Dark": "night-stack-zen-dark.yaml", + "NightBlue 1": "nightblue-1.yaml", + "NightBlue OLED (BETA)": "nightblue-oled-beta.yaml", + "Nightcall (No Italics)": "nightcall-no-italics.yaml", + "NightChill": "nightchill.yaml", + "NightCode": "nightcode.yaml", + "Nightdream": "nightdream.yaml", + "Nightdream Monokai": "nightdream-monokai.yaml", + "Nightfly": "nightfly.yaml", + "Nightfox": "nightfox.yaml", + "Nighthawk": "nighthawk.yaml", + "Nightlife": "nightlife.yaml", + "Nightly Code": "nightly-code.yaml", + "Nightly-Inspiration-Dark": "nightly-inspiration-dark.yaml", + "Nightmare": "nightmare.yaml", + "nightnode": "nightnode.yaml", + "Nightshade": "nightshade.yaml", + "NightShift Lobo Dawn": "nightshift-lobo-dawn.yaml", + "NightShiftLobo": "nightshiftlobo.yaml", + "NightShiftLobo Obsidian": "nightshiftlobo-obsidian.yaml", + "NightShiftLobo Shadow": "nightshiftlobo-shadow.yaml", + "NightSky": "nightsky.yaml", + "NightSwell": "nightswell.yaml", + "Nightwing": "nightwing.yaml", + "nighty-purple-color-theme": "nighty-purple-color-theme.yaml", + "NigthWolf-color-theme": "nigthwolf-color-theme.yaml", + "NihilLeaf-Theme": "nihilleaf-theme.yaml", + "niketa.pop.dark": "niketa-pop-dark.yaml", + "niketa.pop.light": "niketa-pop-light.yaml", + "NiketaOasis": "niketaoasis.yaml", + "NiketaPlus": "niketaplus.yaml", + "NiketaPrettier": "niketaprettier.yaml", + "Niko's TechLabs Dark": "niko-s-techlabs-dark.yaml", + "nikso-vscode-theme-dark": "nikso-vscode-theme-dark.yaml", + "Nil UI": "nil-ui.yaml", + "Nimbus Mint Light": "nimbus-mint-light.yaml", + "NinjaDark": "ninjadark.yaml", + "NiTROUS Theme (Dark)": "nitrous-theme-dark.yaml", + "nivtheme": "nivtheme.yaml", + "Nix": "nix.yaml", + "Njord": "njord.yaml", + "Nkalai Dark": "nkalai-dark.yaml", + "Nkalai Light": "nkalai-light.yaml", + "nloo-Theme": "nloo-theme.yaml", + "no not the lava it burns ahhh - Fork": "no-not-the-lava-it-burns-ahhh-fork.yaml", + "No Pixie Blue Dark": "no-pixie-blue-dark.yaml", + "No Pixie Blue Light": "no-pixie-blue-light.yaml", + "No Pixie Dark": "no-pixie-dark.yaml", + "No Pixie Dark High Contrast": "no-pixie-dark-high-contrast.yaml", + "No Pixie Light": "no-pixie-light.yaml", + "No Pixie Light High Contrast": "no-pixie-light-high-contrast.yaml", + "No Pixie Yellow Dark": "no-pixie-yellow-dark.yaml", + "No Pixie Yellow Light": "no-pixie-yellow-light.yaml", + "Noah Theme": "noah-theme.yaml", + "NoctaliaTheme": "noctaliatheme.yaml", + "Noctilux": "noctilux.yaml", + "Noctis": "noctis.yaml", + "Noctis Azureus": "noctis-azureus.yaml", + "Noctis Bordo": "noctis-bordo.yaml", + "Noctis Hibernus": "noctis-hibernus.yaml", + "Noctis High Contrast": "noctis-high-contrast.yaml", + "Noctis Lilac": "noctis-lilac.yaml", + "Noctis Lux": "noctis-lux.yaml", + "Noctis Lux (Dean's version)": "noctis-lux-dean-s-version.yaml", + "Noctis Lux Ansi 16": "noctis-lux-ansi-16.yaml", + "Noctis Minimus": "noctis-minimus.yaml", + "Noctis Obscuro": "noctis-obscuro.yaml", + "Noctis Red Flow": "noctis-red-flow.yaml", + "Noctis Sereno": "noctis-sereno.yaml", + "Noctis Uva": "noctis-uva.yaml", + "Noctis Viola": "noctis-viola.yaml", + "Noctua Black Rose": "noctua-black-rose.yaml", + "Noctua Dark Leaf": "noctua-dark-leaf.yaml", + "Noctua Grass": "noctua-grass.yaml", + "Noctua Hidden Sky": "noctua-hidden-sky.yaml", + "Nocturnal": "nocturnal.yaml", + "Nodr Cocoa": "nodr-cocoa.yaml", + "Nodr Plum": "nodr-plum.yaml", + "Noel": "noel.yaml", + "Noir (Dark)": "noir-dark.yaml", + "Noir (Light)": "noir-light.yaml", + "Noir dracula": "noir-dracula.yaml", + "Noir Essence Dark Border": "noir-essence-dark-border.yaml", + "Noir Essence Light": "noir-essence-light.yaml", + "Noir Outrun": "noir-outrun.yaml", + "Noir Owl": "noir-owl.yaml", + "Noir Poimandres": "noir-poimandres.yaml", + "Noir Poimandres Black": "noir-poimandres-black.yaml", + "Noir Poimandres Dark": "noir-poimandres-dark.yaml", + "Noir Poimandres Darker": "noir-poimandres-darker.yaml", + "Noir Rosé Pine Grey": "noir-ros-pine-grey.yaml", + "Noir Rosé Pine Moon Grey": "noir-ros-pine-moon-grey.yaml", + "Noir Tokyo Night": "noir-tokyo-night.yaml", + "Noir Tokyo Night Black": "noir-tokyo-night-black.yaml", + "Noirex": "noirex.yaml", + "Noirzen": "noirzen.yaml", + "Nokion Clean": "nokion-clean.yaml", + "Nollåtta": "noll-tta.yaml", + "Non Arbitrary Colors Theme": "non-arbitrary-colors-theme.yaml", + "NoName UI": "noname-ui.yaml", + "NoName UI Next": "noname-ui-next.yaml", + "noori": "noori.yaml", + "NoParanoia": "noparanoia.yaml", + "nora-dark": "nora-dark.yaml", + "nora-light-bordered": "nora-light-bordered.yaml", + "Nord": "nord.yaml", + "Nord Dark Contrast": "nord-dark-contrast.yaml", + "Nord Dark Pro": "nord-dark-pro.yaml", + "Nord Deep": "nord-deep.yaml", + "Nord Frost": "nord-frost.yaml", + "Nord Jujoco": "nord-jujoco.yaml", + "Nord Midnight": "nord-midnight.yaml", + "Nord Native": "nord-native.yaml", + "Nord Operator Theme": "nord-operator-theme.yaml", + "Nord Palette": "nord-palette.yaml", + "Nord Zero": "nord-zero.yaml", + "nord-bunker": "nord-bunker.yaml", + "Nord+": "nord.yaml", + "Nordfox": "nordfox.yaml", + "Nordic": "nordic.yaml", + "Nordic Dark": "nordic-dark.yaml", + "Nordic Electric AI – Nocturne": "nordic-electric-ai-nocturne.yaml", + "nordicBox": "nordicbox.yaml", + "NordicDark": "nordicdark.yaml", + "Nordico": "nordico.yaml", + "NordishCocoa": "nordishcocoa.yaml", + "Northeirn": "northeirn.yaml", + "Northern Territory Dark": "northern-territory-dark.yaml", + "Northern Territory Light": "northern-territory-light.yaml", + "Nosk Theme": "nosk-theme.yaml", + "Nostromo": "nostromo.yaml", + "Not so simple": "not-so-simple.yaml", + "Notchy Dark": "notchy-dark.yaml", + "notesocean vs code theme": "notesocean-vs-code-theme.yaml", + "NotFlask Theme Light": "notflask-theme-light.yaml", + "Nothing Dark": "nothing-dark.yaml", + "Nothing Light": "nothing-light.yaml", + "Nothing OS Dark": "nothing-os-dark.yaml", + "Nothing OS Gray": "nothing-os-gray.yaml", + "Notion Code Theme": "notion-code-theme.yaml", + "NotionLikeTheme": "notionliketheme.yaml", + "NotTheVimGuyTheme": "notthevimguytheme.yaml", + "Nova": "nova.yaml", + "NOVADUST": "novadust.yaml", + "November Theme - BLACK": "november-theme-black.yaml", + "November Theme - DARKBLUE": "november-theme-darkblue.yaml", + "nox": "nox.yaml", + "Nox": "nox.yaml", + "Noxis": "noxis.yaml", + "Noxis-Light": "noxis-light.yaml", + "Noxus": "noxus.yaml", + "npp-color Dark hard": "npp-color-dark-hard.yaml", + "npp-color light hard": "npp-color-light-hard.yaml", + "nstlgy dark (josh w. comeau inspired)": "nstlgy-dark-josh-w-comeau-inspired.yaml", + "NTT1": "ntt1.yaml", + "Nuclear'z light": "nuclear-z-light.yaml", + "nuDark": "nudark.yaml", + "Nuitpâle Theme": "nuitp-le-theme.yaml", + "Null Theme - Absolute Black": "null-theme-absolute-black.yaml", + "Null Theme - Electric Enhanced": "null-theme-electric-enhanced.yaml", + "Null Theme - Midnight Enhanced": "null-theme-midnight-enhanced.yaml", + "Null Theme - Muted": "null-theme-muted.yaml", + "Null Theme - Near Black": "null-theme-near-black.yaml", + "Null Theme - Pastel": "null-theme-pastel.yaml", + "Null Theme - Synthwave": "null-theme-synthwave.yaml", + "Null Theme - Vivid": "null-theme-vivid.yaml", + "Nultramarine": "nultramarine.yaml", + "nulzo-relax": "nulzo-relax.yaml", + "nulzo-winter-light": "nulzo-winter-light.yaml", + "Nur Dark": "nur-dark.yaml", + "Nur Light": "nur-light.yaml", + "Nushu Classic": "nushu-classic.yaml", + "Nushu Dark": "nushu-dark.yaml", + "Nushu Light": "nushu-light.yaml", + "nuTheme": "nutheme.yaml", + "Nutty Dark Theme": "nutty-dark-theme.yaml", + "Nutty Light Theme": "nutty-light-theme.yaml", + "Nuxt Blend": "nuxt-blend.yaml", + "Nuxt Blend-Bleach Color Theme": "nuxt-blend-bleach-color-theme.yaml", + "Nuxtian": "nuxtian.yaml", + "Nuxtian Deep Space": "nuxtian-deep-space.yaml", + "Nuxtian Light": "nuxtian-light.yaml", + "Nuxtian Nitro": "nuxtian-nitro.yaml", + "NuxtianSoloLevel": "nuxtiansololevel.yaml", + "NuxtVite": "nuxtvite.yaml", + "NuxtVoid": "nuxtvoid.yaml", + "NW21": "nw21.yaml", + "NY City Lights Theme": "ny-city-lights-theme.yaml", + "Nyctophilia": "nyctophilia.yaml", + "OA515": "oa515.yaml", + "Oak": "oak.yaml", + "Oak-Dark": "oak-dark.yaml", + "Obanai Iguro": "obanai-iguro.yaml", + "obito akatsuki theme": "obito-akatsuki-theme.yaml", + "Oblivion": "oblivion.yaml", + "Oboro": "oboro.yaml", + "Obsidian": "obsidian.yaml", + "Obsidian Dark": "obsidian-dark.yaml", + "Obsidian Ember": "obsidian-ember.yaml", + "Obsidian Light": "obsidian-light.yaml", + "Obsidian Nova": "obsidian-nova.yaml", + "Obsidian Pro - Dark": "obsidian-pro-dark.yaml", + "Obsidian Pro - Dark Blue Purple": "obsidian-pro-dark-blue-purple.yaml", + "Obsidian Pro - Dark Pink Purple": "obsidian-pro-dark-pink-purple.yaml", + "Obsidian Pro - Dark Purple": "obsidian-pro-dark-purple.yaml", + "Obsidian Pro - Dark Purple Neon": "obsidian-pro-dark-purple-neon.yaml", + "Obsidian Pro - Dark Purple Pastel": "obsidian-pro-dark-purple-pastel.yaml", + "Obsidian Pro - White Purple": "obsidian-pro-white-purple.yaml", + "Obsidian Pro White": "obsidian-pro-white.yaml", + "Obsidian Pulse Light Theme": "obsidian-pulse-light-theme.yaml", + "Obsidian Pulse Theme": "obsidian-pulse-theme.yaml", + "Obsidian Sea": "obsidian-sea.yaml", + "Obsidian Sunset": "obsidian-sunset.yaml", + "Obsidian Void": "obsidian-void.yaml", + "Obsidianite": "obsidianite.yaml", + "Obsidianite AMOLED": "obsidianite-amoled.yaml", + "OC-7 light": "oc-7-light.yaml", + "Ocean": "ocean.yaml", + "Ocean Blue Theme": "ocean-blue-theme.yaml", + "Ocean Breeze": "ocean-breeze.yaml", + "Ocean Deep - Depth & Stability": "ocean-deep-depth-stability.yaml", + "Ocean Eyes": "ocean-eyes.yaml", + "Ocean Eyes Medium": "ocean-eyes-medium.yaml", + "Ocean High Contrast": "ocean-high-contrast.yaml", + "Ocean Mist": "ocean-mist.yaml", + "Ocean Mist Light": "ocean-mist-light.yaml", + "Ocean Night": "ocean-night.yaml", + "ocean-color-theme": "ocean-color-theme.yaml", + "Ocean-theme": "ocean-theme.yaml", + "Oceana": "oceana.yaml", + "Oceanic Solitude": "oceanic-solitude.yaml", + "Oceanic Wind": "oceanic-wind.yaml", + "Oceanic Wind Cool": "oceanic-wind-cool.yaml", + "Oceanic Wind Warm": "oceanic-wind-warm.yaml", + "Oceans of Andromeda": "oceans-of-andromeda.yaml", + "Ochre Dark": "ochre-dark.yaml", + "Ochre Dark - Midnight": "ochre-dark-midnight.yaml", + "Ochre Light": "ochre-light.yaml", + "Ochre Light - Snow": "ochre-light-snow.yaml", + "Octalide": "octalide.yaml", + "Octo Dark One": "octo-dark-one.yaml", + "Octo Light": "octo-light.yaml", + "Octopus theme": "octopus-theme.yaml", + "Odyssey Night": "odyssey-night.yaml", + "Office Light": "office-light.yaml", + "Ogone": "ogone.yaml", + "Oh Dark Pro": "oh-dark-pro.yaml", + "OhioState - Fork": "ohiostate-fork.yaml", + "OhLED_AliceBlue": "ohled-aliceblue.yaml", + "OhLED_AntiqueWhite": "ohled-antiquewhite.yaml", + "OhLED_Aqua": "ohled-aqua.yaml", + "OhLED_AquaMarine": "ohled-aquamarine.yaml", + "OhLED_Azure": "ohled-azure.yaml", + "OhLED_Beige": "ohled-beige.yaml", + "OhLED_Bisque": "ohled-bisque.yaml", + "OhLED_BlanchedAlmond": "ohled-blanchedalmond.yaml", + "OhLED_Blue": "ohled-blue.yaml", + "OhLED_BlueViolet": "ohled-blueviolet.yaml", + "OhLED_Brown": "ohled-brown.yaml", + "OhLED_BurlyWood": "ohled-burlywood.yaml", + "OhLED_CadetBlue": "ohled-cadetblue.yaml", + "OhLED_Chartreuse": "ohled-chartreuse.yaml", + "OhLED_Chocolate": "ohled-chocolate.yaml", + "OhLED_Coral": "ohled-coral.yaml", + "OhLED_CornflowerBlue": "ohled-cornflowerblue.yaml", + "OhLED_Cornsilk": "ohled-cornsilk.yaml", + "OhLED_Crimson": "ohled-crimson.yaml", + "OhLED_DarkBlue": "ohled-darkblue.yaml", + "OhLED_DarkCyan": "ohled-darkcyan.yaml", + "OhLED_DarkGoldenRod": "ohled-darkgoldenrod.yaml", + "OhLED_DarkGray": "ohled-darkgray.yaml", + "OhLED_DarkGreen": "ohled-darkgreen.yaml", + "OhLED_DarkKhaki": "ohled-darkkhaki.yaml", + "OhLED_DarkMagenta": "ohled-darkmagenta.yaml", + "OhLED_DarkOliveGreen": "ohled-darkolivegreen.yaml", + "OhLED_DarkOrange": "ohled-darkorange.yaml", + "OhLED_DarkOrchid": "ohled-darkorchid.yaml", + "OhLED_DarkRed": "ohled-darkred.yaml", + "OhLED_DarkSalmon": "ohled-darksalmon.yaml", + "OhLED_DarkSeaGreen": "ohled-darkseagreen.yaml", + "OhLED_DarkSlateBlue": "ohled-darkslateblue.yaml", + "OhLED_DarkSlateGray": "ohled-darkslategray.yaml", + "OhLED_DarkTurquoise": "ohled-darkturquoise.yaml", + "OhLED_DarkViolet": "ohled-darkviolet.yaml", + "OhLED_DeepPink": "ohled-deeppink.yaml", + "OhLED_DeepSkyBlue": "ohled-deepskyblue.yaml", + "OhLED_DimGray": "ohled-dimgray.yaml", + "OhLED_DodgerBlue": "ohled-dodgerblue.yaml", + "OhLED_FireBrick": "ohled-firebrick.yaml", + "OhLED_ForestGreen": "ohled-forestgreen.yaml", + "OhLED_Fuchsia": "ohled-fuchsia.yaml", + "OhLED_Gainsboro": "ohled-gainsboro.yaml", + "OhLED_GhostWhite": "ohled-ghostwhite.yaml", + "OhLED_Gold": "ohled-gold.yaml", + "OhLED_GoldenRod": "ohled-goldenrod.yaml", + "OhLED_Gray": "ohled-gray.yaml", + "OhLED_Green": "ohled-green.yaml", + "OhLED_GreenYellow": "ohled-greenyellow.yaml", + "OhLED_HoneyDew": "ohled-honeydew.yaml", + "OhLED_HotPink": "ohled-hotpink.yaml", + "OhLED_IndianRed": "ohled-indianred.yaml", + "OhLED_Indigo": "ohled-indigo.yaml", + "OhLED_Ivory": "ohled-ivory.yaml", + "OhLED_Khaki": "ohled-khaki.yaml", + "OhLED_Lavender": "ohled-lavender.yaml", + "OhLED_LavenderBlush": "ohled-lavenderblush.yaml", + "OhLED_LawnGreen": "ohled-lawngreen.yaml", + "OhLED_LemonChiffon": "ohled-lemonchiffon.yaml", + "OhLED_LightBlue": "ohled-lightblue.yaml", + "OhLED_LightCoral": "ohled-lightcoral.yaml", + "OhLED_LightCyan": "ohled-lightcyan.yaml", + "OhLED_LightGoldenRodYellow": "ohled-lightgoldenrodyellow.yaml", + "OhLED_LightGray": "ohled-lightgray.yaml", + "OhLED_LightGreen": "ohled-lightgreen.yaml", + "OhLED_LightPink": "ohled-lightpink.yaml", + "OhLED_LightSalmon": "ohled-lightsalmon.yaml", + "OhLED_LightSeaGreen": "ohled-lightseagreen.yaml", + "OhLED_LightSkyBlue": "ohled-lightskyblue.yaml", + "OhLED_LightSlateGray": "ohled-lightslategray.yaml", + "OhLED_LightSteelBlue": "ohled-lightsteelblue.yaml", + "OhLED_LightYellow": "ohled-lightyellow.yaml", + "OhLED_Lime": "ohled-lime.yaml", + "OhLED_LimeGreen": "ohled-limegreen.yaml", + "OhLED_Linen": "ohled-linen.yaml", + "OhLED_Maroon": "ohled-maroon.yaml", + "OhLED_MediumAquaMarine": "ohled-mediumaquamarine.yaml", + "OhLED_MediumBlue": "ohled-mediumblue.yaml", + "OhLED_MediumOrchid": "ohled-mediumorchid.yaml", + "OhLED_MediumPurple": "ohled-mediumpurple.yaml", + "OhLED_MediumSeaGreen": "ohled-mediumseagreen.yaml", + "OhLED_MediumSlateBlue": "ohled-mediumslateblue.yaml", + "OhLED_MediumSpringGreen": "ohled-mediumspringgreen.yaml", + "OhLED_MediumTurquoise": "ohled-mediumturquoise.yaml", + "OhLED_MediumVioletRed": "ohled-mediumvioletred.yaml", + "OhLED_MidnightBlue": "ohled-midnightblue.yaml", + "OhLED_MintCream": "ohled-mintcream.yaml", + "OhLED_MistyRose": "ohled-mistyrose.yaml", + "OhLED_Moccasin": "ohled-moccasin.yaml", + "OhLED_NavajoWhite": "ohled-navajowhite.yaml", + "OhLED_Navy": "ohled-navy.yaml", + "OhLED_OldLace": "ohled-oldlace.yaml", + "OhLED_Olive": "ohled-olive.yaml", + "OhLED_OliveDrab": "ohled-olivedrab.yaml", + "OhLED_Orange": "ohled-orange.yaml", + "OhLED_OrangeRed": "ohled-orangered.yaml", + "OhLED_Orchid": "ohled-orchid.yaml", + "OhLED_PaleGoldenRod": "ohled-palegoldenrod.yaml", + "OhLED_PaleGreen": "ohled-palegreen.yaml", + "OhLED_PaleTurquoise": "ohled-paleturquoise.yaml", + "OhLED_PaleVioletRed": "ohled-palevioletred.yaml", + "OhLED_PapayaWhip": "ohled-papayawhip.yaml", + "OhLED_PeachPuff": "ohled-peachpuff.yaml", + "OhLED_Peru": "ohled-peru.yaml", + "OhLED_Pink": "ohled-pink.yaml", + "OhLED_Plum": "ohled-plum.yaml", + "OhLED_PowderBlue": "ohled-powderblue.yaml", + "OhLED_Purple": "ohled-purple.yaml", + "OhLED_RebeccaPurple": "ohled-rebeccapurple.yaml", + "OhLED_Red": "ohled-red.yaml", + "OhLED_RosyBrown": "ohled-rosybrown.yaml", + "OhLED_RoyalBlue": "ohled-royalblue.yaml", + "OhLED_SaddleBrown": "ohled-saddlebrown.yaml", + "OhLED_Salmon": "ohled-salmon.yaml", + "OhLED_SandyBrown": "ohled-sandybrown.yaml", + "OhLED_SeaGreen": "ohled-seagreen.yaml", + "OhLED_SeaShell": "ohled-seashell.yaml", + "OhLED_Sienna": "ohled-sienna.yaml", + "OhLED_Silver": "ohled-silver.yaml", + "OhLED_SkyBlue": "ohled-skyblue.yaml", + "OhLED_SlateBlue": "ohled-slateblue.yaml", + "OhLED_SlateGray": "ohled-slategray.yaml", + "OhLED_Snow": "ohled-snow.yaml", + "OhLED_SpringGreen": "ohled-springgreen.yaml", + "OhLED_SteelBlue": "ohled-steelblue.yaml", + "OhLED_Tan": "ohled-tan.yaml", + "OhLED_Teal": "ohled-teal.yaml", + "OhLED_Thistle": "ohled-thistle.yaml", + "OhLED_Tomato": "ohled-tomato.yaml", + "OhLED_Turquoise": "ohled-turquoise.yaml", + "OhLED_Violet": "ohled-violet.yaml", + "OhLED_Wheat": "ohled-wheat.yaml", + "OhLED_White": "ohled-white.yaml", + "OhLED_WhiteSmoke": "ohled-whitesmoke.yaml", + "OhLED_Yellow": "ohled-yellow.yaml", + "OhLED_YellowGreen": "ohled-yellowgreen.yaml", + "OhLED_YellowOrange": "ohled-yelloworange.yaml", + "OhLED_YellowPink": "ohled-yellowpink.yaml", + "OhLED_YellowPurple": "ohled-yellowpurple.yaml", + "Okas theme": "okas-theme.yaml", + "Oldschool Terminal (Green)": "oldschool-terminal-green.yaml", + "Oldworld": "oldworld.yaml", + "Olive Dark": "olive-dark.yaml", + "Olive Light": "olive-light.yaml", + "Omega": "omega.yaml", + "Omni": "omni.yaml", + "Omni Customized": "omni-customized.yaml", + "Omni Customized Dark": "omni-customized-dark.yaml", + "Omni Dracula Dark": "omni-dracula-dark.yaml", + "Omni Dracula Theme": "omni-dracula-theme.yaml", + "Omni Dracula Theme Tradicional Contrast": "omni-dracula-theme-tradicional-contrast.yaml", + "Omni Dracula Wine Theme Tradicional": "omni-dracula-wine-theme-tradicional.yaml", + "Omni Monokai Dark": "omni-monokai-dark.yaml", + "Omni PRO": "omni-pro.yaml", + "Omnisexual": "omnisexual.yaml", + "Omnitrix Code": "omnitrix-code.yaml", + "omo theme": "omo-theme.yaml", + "One AI theme": "one-ai-theme.yaml", + "one dark": "one-dark.yaml", + "One Dark Code": "one-dark-code.yaml", + "One Dark Darker": "one-dark-darker.yaml", + "One Dark Darker Vivid": "one-dark-darker-vivid.yaml", + "One Dark Modern Pro": "one-dark-modern-pro.yaml", + "One Dark Night - Blue Boy": "one-dark-night-blue-boy.yaml", + "One Dark Night - Eye Care": "one-dark-night-eye-care.yaml", + "One Dark Night - Minimalist": "one-dark-night-minimalist.yaml", + "One Dark Night - Professional": "one-dark-night-professional.yaml", + "One Dark NX": "one-dark-nx.yaml", + "One Dark Pro": "one-dark-pro.yaml", + "One Dark Pro Theme": "one-dark-pro-theme.yaml", + "One Dark Pro Var Night": "one-dark-pro-var-night.yaml", + "One Dark Vibrant Theme": "one-dark-vibrant-theme.yaml", + "One Dark Vivid": "one-dark-vivid.yaml", + "One Darker Pro": "one-darker-pro.yaml", + "One DarkPuccin Vivid Italic": "one-darkpuccin-vivid-italic.yaml", + "One Half Light Italic": "one-half-light-italic.yaml", + "One Hunter Theme": "one-hunter-theme.yaml", + "One Light Pro": "one-light-pro.yaml", + "One Material": "one-material.yaml", + "One Midnight": "one-midnight.yaml", + "One Monokai": "one-monokai.yaml", + "One Monokai Darker": "one-monokai-darker.yaml", + "One Monokai Forked": "one-monokai-forked.yaml", + "One Monokai Michota": "one-monokai-michota.yaml", + "One Monokai Shadow": "one-monokai-shadow.yaml", + "One Monokai1": "one-monokai1.yaml", + "One More Dark": "one-more-dark.yaml", + "One Piece (Straw Hat Red)": "one-piece-straw-hat-red.yaml", + "one-dark-cloud-theme": "one-dark-cloud-theme.yaml", + "one-piece-dark": "one-piece-dark.yaml", + "One-Piece-High-Contrast": "one-piece-high-contrast.yaml", + "one-piece-light": "one-piece-light.yaml", + "OneBitCode": "onebitcode.yaml", + "onebitcode-theme": "onebitcode-theme.yaml", + "OneCalm": "onecalm.yaml", + "OneDark Pro - Suhayb's Version v2": "onedark-pro-suhayb-s-version-v2.yaml", + "onedark.nvim": "onedark-nvim.yaml", + "Oneiroi caffeine": "oneiroi-caffeine.yaml", + "Oneiroi dream": "oneiroi-dream.yaml", + "Oneiroi melatonin": "oneiroi-melatonin.yaml", + "OneMonokai80s": "onemonokai80s.yaml", + "OneMonokai80sOG": "onemonokai80sog.yaml", + "OneNv": "onenv.yaml", + "Oni Theme": "oni-theme.yaml", + "OnlyDark": "onlydark.yaml", + "Onora": "onora.yaml", + "Onyx": "onyx.yaml", + "Onyx Core": "onyx-core.yaml", + "Onyx Ghost": "onyx-ghost.yaml", + "Onyx Theme Color": "onyx-theme-color.yaml", + "Ook": "ook.yaml", + "oolory-dark-color-theme": "oolory-dark-color-theme.yaml", + "openbase": "openbase.yaml", + "OpenSpace": "openspace.yaml", + "OpenSpace Dark": "openspace-dark.yaml", + "OpenSpace Dark Flat": "openspace-dark-flat.yaml", + "Optimus Dark": "optimus-dark.yaml", + "oQ Dark": "oq-dark.yaml", + "oQ Dark Soft": "oq-dark-soft.yaml", + "oQ Light": "oq-light.yaml", + "oQ Light Soft": "oq-light-soft.yaml", + "Oradia": "oradia.yaml", + "oragethemedark": "oragethemedark.yaml", + "Orago's Warm Theme": "orago-s-warm-theme.yaml", + "orange": "orange.yaml", + "Orange": "orange.yaml", + "orange coral": "orange-coral.yaml", + "Orange Dark": "orange-dark.yaml", + "OrangeFox Dark": "orangefox-dark.yaml", + "OrangeFox Light": "orangefox-light.yaml", + "orangelemon": "orangelemon.yaml", + "Orangey": "orangey.yaml", + "Orangey (Darker 1)": "orangey-darker-1.yaml", + "Orangey (Darker 2)": "orangey-darker-2.yaml", + "Orangey (Lighter 1)": "orangey-lighter-1.yaml", + "Orangey (Lighter 2)": "orangey-lighter-2.yaml", + "Orbi Blue": "orbi-blue.yaml", + "Orbi Green": "orbi-green.yaml", + "Orca": "orca.yaml", + "origami-theme": "origami-theme.yaml", + "Origamid": "origamid.yaml", + "Original Theme": "original-theme.yaml", + "Orion X Black": "orion-x-black.yaml", + "Orpheux": "orpheux.yaml", + "Orwellian Nightmare": "orwellian-nightmare.yaml", + "Osaka Solarized Pro Dark": "osaka-solarized-pro-dark.yaml", + "Osaka Solarized Pro Light": "osaka-solarized-pro-light.yaml", + "Osaka Solarized Pro Monokai Storm": "osaka-solarized-pro-monokai-storm.yaml", + "Oslo Dark": "oslo-dark.yaml", + "Osmoz Dark": "osmoz-dark.yaml", + "OSX9": "osx9.yaml", + "otakon": "otakon.yaml", + "otakon-contrast": "otakon-contrast.yaml", + "otakon-light": "otakon-light.yaml", + "Outrun Contrast": "outrun-contrast.yaml", + "Outrun Dark": "outrun-dark.yaml", + "overflow": "overflow.yaml", + "overflow-contrast": "overflow-contrast.yaml", + "overflow-light": "overflow-light.yaml", + "overload": "overload.yaml", + "Overnight Italic": "overnight-italic.yaml", + "Owlet (Default)": "owlet-default.yaml", + "Owlet (Material)": "owlet-material.yaml", + "Owlet (Mono)": "owlet-mono.yaml", + "Owlet (Outrun)": "owlet-outrun.yaml", + "Owlet (Solarized)": "owlet-solarized.yaml", + "Owokai": "owokai.yaml", + "Owokai Hard": "owokai-hard.yaml", + "Oxide": "oxide.yaml", + "Oxocarbon (compatibility)": "oxocarbon-compatibility.yaml", + "Oxocarbon Monochrom (compatibility)": "oxocarbon-monochrom-compatibility.yaml", + "Oxocarbon OLED (compatibility)": "oxocarbon-oled-compatibility.yaml", + "Oxocarbon OLED Monochrom": "oxocarbon-oled-monochrom.yaml", + "Oxocarbon OLED Monochrom (compatibility)": "oxocarbon-oled-monochrom-compatibility.yaml", + "oxocarbon-5": "oxocarbon-5.yaml", + "oxocarbon-port": "oxocarbon-port.yaml", + "oXocarbonix dark theme": "oxocarbonix-dark-theme.yaml", + "Ozurac": "ozurac.yaml", + "Ozzy": "ozzy.yaml", + "p!nk": "p-nk.yaml", + "P. \\ Black": "p-black.yaml", + "P. \\ Citadel": "p-citadel.yaml", + "P. \\ Crimson": "p-crimson.yaml", + "P. \\ Dark": "p-dark.yaml", + "P. \\ Eggplant": "p-eggplant.yaml", + "P. \\ Emerald": "p-emerald.yaml", + "P. \\ Eucalyptus": "p-eucalyptus.yaml", + "P. \\ Floresta": "p-floresta.yaml", + "P. \\ Frost": "p-frost.yaml", + "P. \\ Genmaicha": "p-genmaicha.yaml", + "P. \\ Grizzly": "p-grizzly.yaml", + "P. \\ Haze": "p-haze.yaml", + "P. \\ Inkstone": "p-inkstone.yaml", + "P. \\ Leipzig": "p-leipzig.yaml", + "P. \\ Light": "p-light.yaml", + "P. \\ Machine": "p-machine.yaml", + "P. \\ Mist": "p-mist.yaml", + "P. \\ Neptune": "p-neptune.yaml", + "P. \\ Ornithopter": "p-ornithopter.yaml", + "P. \\ Ox": "p-ox.yaml", + "P. \\ Terabyte": "p-terabyte.yaml", + "P. \\ Ultramarine": "p-ultramarine.yaml", + "P. \\ Wolf": "p-wolf.yaml", + "P. \\ Yesterday": "p-yesterday.yaml", + "P. \\ Zenith": "p-zenith.yaml", + "P33t": "p33t.yaml", + "Pace Dark": "pace-dark.yaml", + "Pace Light": "pace-light.yaml", + "padrepio": "padrepio.yaml", + "Paigio": "paigio.yaml", + "Pale Blue": "pale-blue.yaml", + "Pale Boreal Dark": "pale-boreal-dark.yaml", + "Palenight": "palenight.yaml", + "Palenight Italic": "palenight-italic.yaml", + "Palenight Material": "palenight-material.yaml", + "Palenight Pro": "palenight-pro.yaml", + "Palenight Theme": "palenight-theme.yaml", + "palespring": "palespring.yaml", + "Palestorm": "palestorm.yaml", + "Palestorm X": "palestorm-x.yaml", + "Palette": "palette.yaml", + "Pall Theme": "pall-theme.yaml", + "Panda Dark": "panda-dark.yaml", + "panda-blue": "panda-blue.yaml", + "Pandju - No italics": "pandju-no-italics.yaml", + "pantasio": "pantasio.yaml", + "Pantone Amber (Dark)": "pantone-amber-dark.yaml", + "Pantone Amber (Light)": "pantone-amber-light.yaml", + "Pantone Aqua (Dark)": "pantone-aqua-dark.yaml", + "Pantone Aqua (Light)": "pantone-aqua-light.yaml", + "Pantone Aqua Sky (Dark)": "pantone-aqua-sky-dark.yaml", + "Pantone Aqua Sky (Light)": "pantone-aqua-sky-light.yaml", + "Pantone Baby Blue (Dark)": "pantone-baby-blue-dark.yaml", + "Pantone Baby Blue (Light)": "pantone-baby-blue-light.yaml", + "Pantone Blue Iris (Dark)": "pantone-blue-iris-dark.yaml", + "Pantone Blue Iris (Light)": "pantone-blue-iris-light.yaml", + "Pantone Blue Turquoise (Dark)": "pantone-blue-turquoise-dark.yaml", + "Pantone Blue Turquoise (Light)": "pantone-blue-turquoise-light.yaml", + "Pantone Blush (Dark)": "pantone-blush-dark.yaml", + "Pantone Blush (Light)": "pantone-blush-light.yaml", + "Pantone Blush Pink (Dark)": "pantone-blush-pink-dark.yaml", + "Pantone Blush Pink (Light)": "pantone-blush-pink-light.yaml", + "Pantone Brick Red (Dark)": "pantone-brick-red-dark.yaml", + "Pantone Brick Red (Light)": "pantone-brick-red-light.yaml", + "Pantone Bright Green (Dark)": "pantone-bright-green-dark.yaml", + "Pantone Bright Green (Light)": "pantone-bright-green-light.yaml", + "Pantone Burgundy (Dark)": "pantone-burgundy-dark.yaml", + "Pantone Burgundy (Light)": "pantone-burgundy-light.yaml", + "Pantone Burnt Orange (Dark)": "pantone-burnt-orange-dark.yaml", + "Pantone Burnt Orange (Light)": "pantone-burnt-orange-light.yaml", + "Pantone Cerulean (Dark)": "pantone-cerulean-dark.yaml", + "Pantone Cerulean (Light)": "pantone-cerulean-light.yaml", + "Pantone Chartreuse (Dark)": "pantone-chartreuse-dark.yaml", + "Pantone Chartreuse (Light)": "pantone-chartreuse-light.yaml", + "Pantone Chili Pepper (Dark)": "pantone-chili-pepper-dark.yaml", + "Pantone Chili Pepper (Light)": "pantone-chili-pepper-light.yaml", + "Pantone Chocolate (Dark)": "pantone-chocolate-dark.yaml", + "Pantone Chocolate (Light)": "pantone-chocolate-light.yaml", + "Pantone Classic Blue (Dark)": "pantone-classic-blue-dark.yaml", + "Pantone Classic Blue (Light)": "pantone-classic-blue-light.yaml", + "Pantone Classic Red (Dark)": "pantone-classic-red-dark.yaml", + "Pantone Classic Red (Light)": "pantone-classic-red-light.yaml", + "Pantone Cobalt Blue (Dark)": "pantone-cobalt-blue-dark.yaml", + "Pantone Cobalt Blue (Light)": "pantone-cobalt-blue-light.yaml", + "Pantone Coral (Dark)": "pantone-coral-dark.yaml", + "Pantone Coral (Light)": "pantone-coral-light.yaml", + "Pantone Cornflower Blue (Dark)": "pantone-cornflower-blue-dark.yaml", + "Pantone Cornflower Blue (Light)": "pantone-cornflower-blue-light.yaml", + "Pantone Cyan (Dark)": "pantone-cyan-dark.yaml", + "Pantone Cyan (Light)": "pantone-cyan-light.yaml", + "Pantone Dark Brown (Dark)": "pantone-dark-brown-dark.yaml", + "Pantone Dark Brown (Light)": "pantone-dark-brown-light.yaml", + "Pantone Dark Maroon (Dark)": "pantone-dark-maroon-dark.yaml", + "Pantone Dark Maroon (Light)": "pantone-dark-maroon-light.yaml", + "Pantone Dark Red (Dark)": "pantone-dark-red-dark.yaml", + "Pantone Dark Red (Light)": "pantone-dark-red-light.yaml", + "Pantone Deep Pink (Dark)": "pantone-deep-pink-dark.yaml", + "Pantone Deep Pink (Light)": "pantone-deep-pink-light.yaml", + "Pantone Dusty Blue (Dark)": "pantone-dusty-blue-dark.yaml", + "Pantone Dusty Blue (Light)": "pantone-dusty-blue-light.yaml", + "Pantone Emerald (Dark)": "pantone-emerald-dark.yaml", + "Pantone Emerald (Light)": "pantone-emerald-light.yaml", + "Pantone Flame Orange (Dark)": "pantone-flame-orange-dark.yaml", + "Pantone Flame Orange (Light)": "pantone-flame-orange-light.yaml", + "Pantone Forest Green (Dark)": "pantone-forest-green-dark.yaml", + "Pantone Forest Green (Light)": "pantone-forest-green-light.yaml", + "Pantone Fuchsia Rose (Dark)": "pantone-fuchsia-rose-dark.yaml", + "Pantone Fuchsia Rose (Light)": "pantone-fuchsia-rose-light.yaml", + "Pantone Gold (Dark)": "pantone-gold-dark.yaml", + "Pantone Gold (Light)": "pantone-gold-light.yaml", + "Pantone Golden Yellow (Dark)": "pantone-golden-yellow-dark.yaml", + "Pantone Golden Yellow (Light)": "pantone-golden-yellow-light.yaml", + "Pantone Graphite (Dark)": "pantone-graphite-dark.yaml", + "Pantone Graphite (Light)": "pantone-graphite-light.yaml", + "Pantone Green (Dark)": "pantone-green-dark.yaml", + "Pantone Green (Light)": "pantone-green-light.yaml", + "Pantone Greenery (Dark)": "pantone-greenery-dark.yaml", + "Pantone Greenery (Light)": "pantone-greenery-light.yaml", + "Pantone Honeysuckle (Dark)": "pantone-honeysuckle-dark.yaml", + "Pantone Honeysuckle (Light)": "pantone-honeysuckle-light.yaml", + "Pantone Hot Pink (Dark)": "pantone-hot-pink-dark.yaml", + "Pantone Hot Pink (Light)": "pantone-hot-pink-light.yaml", + "Pantone Ice Blue (Dark)": "pantone-ice-blue-dark.yaml", + "Pantone Ice Blue (Light)": "pantone-ice-blue-light.yaml", + "Pantone Illuminating (Dark)": "pantone-illuminating-dark.yaml", + "Pantone Illuminating (Light)": "pantone-illuminating-light.yaml", + "Pantone Indigo (Dark)": "pantone-indigo-dark.yaml", + "Pantone Indigo (Light)": "pantone-indigo-light.yaml", + "Pantone Khaki (Dark)": "pantone-khaki-dark.yaml", + "Pantone Khaki (Light)": "pantone-khaki-light.yaml", + "Pantone Lavender (Dark)": "pantone-lavender-dark.yaml", + "Pantone Lavender (Light)": "pantone-lavender-light.yaml", + "Pantone Lilac (Dark)": "pantone-lilac-dark.yaml", + "Pantone Lilac (Light)": "pantone-lilac-light.yaml", + "Pantone Lime Green (Dark)": "pantone-lime-green-dark.yaml", + "Pantone Lime Green (Light)": "pantone-lime-green-light.yaml", + "Pantone Living Coral (Dark)": "pantone-living-coral-dark.yaml", + "Pantone Living Coral (Light)": "pantone-living-coral-light.yaml", + "Pantone Marsala (Dark)": "pantone-marsala-dark.yaml", + "Pantone Marsala (Light)": "pantone-marsala-light.yaml", + "Pantone Mauve (Dark)": "pantone-mauve-dark.yaml", + "Pantone Mauve (Light)": "pantone-mauve-light.yaml", + "Pantone Mimosa (Dark)": "pantone-mimosa-dark.yaml", + "Pantone Mimosa (Light)": "pantone-mimosa-light.yaml", + "Pantone Mint Green (Dark)": "pantone-mint-green-dark.yaml", + "Pantone Mint Green (Light)": "pantone-mint-green-light.yaml", + "Pantone Mocha Mousse (Dark)": "pantone-mocha-mousse-dark.yaml", + "Pantone Mocha Mousse (Light)": "pantone-mocha-mousse-light.yaml", + "Pantone Navy (Dark)": "pantone-navy-dark.yaml", + "Pantone Navy (Light)": "pantone-navy-light.yaml", + "Pantone Neon Blue (Dark)": "pantone-neon-blue-dark.yaml", + "Pantone Neon Blue (Light)": "pantone-neon-blue-light.yaml", + "Pantone Neon Green (Dark)": "pantone-neon-green-dark.yaml", + "Pantone Neon Green (Light)": "pantone-neon-green-light.yaml", + "Pantone Neon Orange (Dark)": "pantone-neon-orange-dark.yaml", + "Pantone Neon Orange (Light)": "pantone-neon-orange-light.yaml", + "Pantone Neon Pink (Dark)": "pantone-neon-pink-dark.yaml", + "Pantone Neon Pink (Light)": "pantone-neon-pink-light.yaml", + "Pantone Neon Yellow (Dark)": "pantone-neon-yellow-dark.yaml", + "Pantone Neon Yellow (Light)": "pantone-neon-yellow-light.yaml", + "Pantone Olive Green (Dark)": "pantone-olive-green-dark.yaml", + "Pantone Olive Green (Light)": "pantone-olive-green-light.yaml", + "Pantone Orange (Dark)": "pantone-orange-dark.yaml", + "Pantone Orange (Light)": "pantone-orange-light.yaml", + "Pantone Peach (Dark)": "pantone-peach-dark.yaml", + "Pantone Peach (Light)": "pantone-peach-light.yaml", + "Pantone Peach Fuzz (Dark)": "pantone-peach-fuzz-dark.yaml", + "Pantone Peach Fuzz (Light)": "pantone-peach-fuzz-light.yaml", + "Pantone Peacock Green (Dark)": "pantone-peacock-green-dark.yaml", + "Pantone Peacock Green (Light)": "pantone-peacock-green-light.yaml", + "Pantone Pewter (Dark)": "pantone-pewter-dark.yaml", + "Pantone Pewter (Light)": "pantone-pewter-light.yaml", + "Pantone Plum (Dark)": "pantone-plum-dark.yaml", + "Pantone Plum (Light)": "pantone-plum-light.yaml", + "Pantone Poppy (Dark)": "pantone-poppy-dark.yaml", + "Pantone Poppy (Light)": "pantone-poppy-light.yaml", + "Pantone Process Blue (Dark)": "pantone-process-blue-dark.yaml", + "Pantone Process Blue (Light)": "pantone-process-blue-light.yaml", + "Pantone Purple (Dark)": "pantone-purple-dark.yaml", + "Pantone Purple (Light)": "pantone-purple-light.yaml", + "Pantone Radiant Orchid (Dark)": "pantone-radiant-orchid-dark.yaml", + "Pantone Radiant Orchid (Light)": "pantone-radiant-orchid-light.yaml", + "Pantone Rose Quartz (Dark)": "pantone-rose-quartz-dark.yaml", + "Pantone Rose Quartz (Light)": "pantone-rose-quartz-light.yaml", + "Pantone Royal Blue (Dark)": "pantone-royal-blue-dark.yaml", + "Pantone Royal Blue (Light)": "pantone-royal-blue-light.yaml", + "Pantone Ruby (Dark)": "pantone-ruby-dark.yaml", + "Pantone Ruby (Light)": "pantone-ruby-light.yaml", + "Pantone Saffron (Dark)": "pantone-saffron-dark.yaml", + "Pantone Saffron (Light)": "pantone-saffron-light.yaml", + "Pantone Sage (Dark)": "pantone-sage-dark.yaml", + "Pantone Sage (Light)": "pantone-sage-light.yaml", + "Pantone Salmon (Dark)": "pantone-salmon-dark.yaml", + "Pantone Salmon (Light)": "pantone-salmon-light.yaml", + "Pantone Sand (Dark)": "pantone-sand-dark.yaml", + "Pantone Sand (Light)": "pantone-sand-light.yaml", + "Pantone Sand Dollar (Dark)": "pantone-sand-dollar-dark.yaml", + "Pantone Sand Dollar (Light)": "pantone-sand-dollar-light.yaml", + "Pantone Serenity (Dark)": "pantone-serenity-dark.yaml", + "Pantone Serenity (Light)": "pantone-serenity-light.yaml", + "Pantone Sienna (Dark)": "pantone-sienna-dark.yaml", + "Pantone Sienna (Light)": "pantone-sienna-light.yaml", + "Pantone Silver (Dark)": "pantone-silver-dark.yaml", + "Pantone Silver (Light)": "pantone-silver-light.yaml", + "Pantone Sky Blue (Dark)": "pantone-sky-blue-dark.yaml", + "Pantone Sky Blue (Light)": "pantone-sky-blue-light.yaml", + "Pantone Slate Blue (Dark)": "pantone-slate-blue-dark.yaml", + "Pantone Slate Blue (Light)": "pantone-slate-blue-light.yaml", + "Pantone Steel Blue (Dark)": "pantone-steel-blue-dark.yaml", + "Pantone Steel Blue (Light)": "pantone-steel-blue-light.yaml", + "Pantone Tan (Dark)": "pantone-tan-dark.yaml", + "Pantone Tan (Light)": "pantone-tan-light.yaml", + "Pantone Tangerine Tango (Dark)": "pantone-tangerine-tango-dark.yaml", + "Pantone Tangerine Tango (Light)": "pantone-tangerine-tango-light.yaml", + "Pantone Teal (Dark)": "pantone-teal-dark.yaml", + "Pantone Teal (Light)": "pantone-teal-light.yaml", + "Pantone Tigerlily (Dark)": "pantone-tigerlily-dark.yaml", + "Pantone Tigerlily (Light)": "pantone-tigerlily-light.yaml", + "Pantone True Red (Dark)": "pantone-true-red-dark.yaml", + "Pantone True Red (Light)": "pantone-true-red-light.yaml", + "Pantone Turquoise (Dark)": "pantone-turquoise-dark.yaml", + "Pantone Turquoise (Light)": "pantone-turquoise-light.yaml", + "Pantone Turquoise Classic (Dark)": "pantone-turquoise-classic-dark.yaml", + "Pantone Turquoise Classic (Light)": "pantone-turquoise-classic-light.yaml", + "Pantone Ultimate Gray (Dark)": "pantone-ultimate-gray-dark.yaml", + "Pantone Ultimate Gray (Light)": "pantone-ultimate-gray-light.yaml", + "Pantone Ultra Violet (Dark)": "pantone-ultra-violet-dark.yaml", + "Pantone Ultra Violet (Light)": "pantone-ultra-violet-light.yaml", + "Pantone Very Peri (Dark)": "pantone-very-peri-dark.yaml", + "Pantone Very Peri (Light)": "pantone-very-peri-light.yaml", + "Pantone Violet (Dark)": "pantone-violet-dark.yaml", + "Pantone Violet (Light)": "pantone-violet-light.yaml", + "Pantone Viva Magenta (Dark)": "pantone-viva-magenta-dark.yaml", + "Pantone Viva Magenta (Light)": "pantone-viva-magenta-light.yaml", + "Pantone Warm Gray (Dark)": "pantone-warm-gray-dark.yaml", + "Pantone Warm Gray (Light)": "pantone-warm-gray-light.yaml", + "Pantone Warm Red (Dark)": "pantone-warm-red-dark.yaml", + "Pantone Warm Red (Light)": "pantone-warm-red-light.yaml", + "Pantone Wheat (Dark)": "pantone-wheat-dark.yaml", + "Pantone Wheat (Light)": "pantone-wheat-light.yaml", + "Pantone Wine (Dark)": "pantone-wine-dark.yaml", + "Pantone Wine (Light)": "pantone-wine-light.yaml", + "Pantone Yellow (Dark)": "pantone-yellow-dark.yaml", + "Pantone Yellow (Light)": "pantone-yellow-light.yaml", + "Pantone Yellow Green (Dark)": "pantone-yellow-green-dark.yaml", + "Pantone Yellow Green (Light)": "pantone-yellow-green-light.yaml", + "Papaya": "papaya.yaml", + "PaperColorDark": "papercolordark.yaml", + "Paradise": "paradise.yaml", + "Parakeet Theme": "parakeet-theme.yaml", + "Parchment": "parchment.yaml", + "parchment-candlelight-color-theme": "parchment-candlelight-color-theme.yaml", + "parchment-codex-color-theme": "parchment-codex-color-theme.yaml", + "parchment-digitized-color-theme": "parchment-digitized-color-theme.yaml", + "parchment-starlight-color-theme": "parchment-starlight-color-theme.yaml", + "Pare Colors Theme": "pare-colors-theme.yaml", + "Parkside Light": "parkside-light.yaml", + "Paro-Paro-Solarized-Dark-Theme": "paro-paro-solarized-dark-theme.yaml", + "pastel": "pastel.yaml", + "Pastel": "pastel.yaml", + "pastel inu": "pastel-inu.yaml", + "pastel-contrast": "pastel-contrast.yaml", + "pastel-light": "pastel-light.yaml", + "Pastelefull": "pastelefull.yaml", + "pastelfairy": "pastelfairy.yaml", + "Pastellize Dark (Muted)": "pastellize-dark-muted.yaml", + "Patina Colors": "patina-colors.yaml", + "Patina Dark": "patina-dark.yaml", + "Patina Dark Soft": "patina-dark-soft.yaml", + "Patina Light": "patina-light.yaml", + "Patina Stellar": "patina-stellar.yaml", + "patr-theme": "patr-theme.yaml", + "patricklimax": "patricklimax.yaml", + "patriot": "patriot.yaml", + "patriot-contrast": "patriot-contrast.yaml", + "patriot-light": "patriot-light.yaml", + "Paulera's dark monokai": "paulera-s-dark-monokai.yaml", + "Paulera's Lyo": "paulera-s-lyo.yaml", + "Paztels": "paztels.yaml", + "Peaceful Mind": "peaceful-mind.yaml", + "Peachy": "peachy.yaml", + "Peachy dolphin": "peachy-dolphin.yaml", + "peacock": "peacock.yaml", + "Peacock": "peacock.yaml", + "peacock-contrast": "peacock-contrast.yaml", + "peacock-light": "peacock-light.yaml", + "peacocks-in-space": "peacocks-in-space.yaml", + "peacocks-in-space-contrast": "peacocks-in-space-contrast.yaml", + "peacocks-in-space-light": "peacocks-in-space-light.yaml", + "peel": "peel.yaml", + "peel-contrast": "peel-contrast.yaml", + "peel-light": "peel-light.yaml", + "penitent": "penitent.yaml", + "penitent-contrast": "penitent-contrast.yaml", + "penitent-light": "penitent-light.yaml", + "Penumbra Dark": "penumbra-dark.yaml", + "Penumbra Dark Contrast+": "penumbra-dark-contrast.yaml", + "Penumbra Dark Contrast++": "penumbra-dark-contrast.yaml", + "Penumbra Light": "penumbra-light.yaml", + "perf-pink": "perf-pink.yaml", + "Perfect Dark": "perfect-dark.yaml", + "Perfect Grey PF Dark": "perfect-grey-pf-dark.yaml", + "Perfect Grey PF Light": "perfect-grey-pf-light.yaml", + "Periwinkle Soft Dark": "periwinkle-soft-dark.yaml", + "periwinkle-color-theme": "periwinkle-color-theme.yaml", + "Perplexity": "perplexity.yaml", + "Perry-the-platypus": "perry-the-platypus.yaml", + "petrel": "petrel.yaml", + "pg-aqualung": "pg-aqualung.yaml", + "pg-blue-moon": "pg-blue-moon.yaml", + "pg-forest": "pg-forest.yaml", + "pg-may-be-concrete": "pg-may-be-concrete.yaml", + "pg-mud-puddle": "pg-mud-puddle.yaml", + "pg-plum-great": "pg-plum-great.yaml", + "pg-plum-groovy": "pg-plum-groovy.yaml", + "pg-punkin-spice": "pg-punkin-spice.yaml", + "pg-red-clay": "pg-red-clay.yaml", + "pg-ridgeline": "pg-ridgeline.yaml", + "pg-ruby-clay": "pg-ruby-clay.yaml", + "pg-ruby-soho": "pg-ruby-soho.yaml", + "pg-slax": "pg-slax.yaml", + "pg-steely-daniel": "pg-steely-daniel.yaml", + "PGLight": "pglight.yaml", + "Phantom": "phantom.yaml", + "phocus": "phocus.yaml", + "Phonebook Dark": "phonebook-dark.yaml", + "Phonebook Light": "phonebook-light.yaml", + "Phosphor Amber Night": "phosphor-amber-night.yaml", + "Phosphor Aurora": "phosphor-aurora.yaml", + "Phosphor Dark": "phosphor-dark.yaml", + "Phosphor Dreams": "phosphor-dreams.yaml", + "Phosphor Event Horizon": "phosphor-event-horizon.yaml", + "Phosphor Forest": "phosphor-forest.yaml", + "Phosphor Neon Noir": "phosphor-neon-noir.yaml", + "Phosphor Violet Dusk": "phosphor-violet-dusk.yaml", + "Phosphorus Minor": "phosphorus-minor.yaml", + "Photon": "photon.yaml", + "Photonica Dark": "photonica-dark.yaml", + "Photonica Light": "photonica-light.yaml", + "Photophore": "photophore.yaml", + "Piattro": "piattro.yaml", + "Pierre Dark": "pierre-dark.yaml", + "Pierre Light": "pierre-light.yaml", + "piggy": "piggy.yaml", + "piggy-contrast": "piggy-contrast.yaml", + "piggy-light": "piggy-light.yaml", + "Pillirioen (Italics)": "pillirioen-italics.yaml", + "Pine Cone Theme": "pine-cone-theme.yaml", + "Pine Editor Light": "pine-editor-light.yaml", + "Pine Forest": "pine-forest.yaml", + "Pine Forest Green (Dark)": "pine-forest-green-dark.yaml", + "Pine FriZz": "pine-frizz.yaml", + "Pine Theme Blue": "pine-theme-blue.yaml", + "Pine Theme Dark Low Contrast": "pine-theme-dark-low-contrast.yaml", + "Pine Theme Grey": "pine-theme-grey.yaml", + "Pine Theme Original Dark": "pine-theme-original-dark.yaml", + "Pine Theme Original Dark Extend": "pine-theme-original-dark-extend.yaml", + "PineApple": "pineapple.yaml", + "pines": "pines.yaml", + "Pingocho dark": "pingocho-dark.yaml", + "Pink": "pink.yaml", + "Pink Candy Dark": "pink-candy-dark.yaml", + "Pink Candy Dark Warm": "pink-candy-dark-warm.yaml", + "Pink Candy Light": "pink-candy-light.yaml", + "Pink Flower": "pink-flower.yaml", + "Pink Neon": "pink-neon.yaml", + "Pink Theme": "pink-theme.yaml", + "pinkAndGreen": "pinkandgreen.yaml", + "pinkandwhite": "pinkandwhite.yaml", + "PinkCloud": "pinkcloud.yaml", + "PinkCodes Pink": "pinkcodes-pink.yaml", + "PINKDARK": "pinkdark.yaml", + "PinkDopeyBug-Primordial Origin": "pinkdopeybug-primordial-origin.yaml", + "Pinkmare": "pinkmare.yaml", + "Pinkppuccin": "pinkppuccin.yaml", + "Pinky Promise Dark": "pinky-promise-dark.yaml", + "Pinky Promise Light": "pinky-promise-light.yaml", + "Pinkyboo": "pinkyboo.yaml", + "Pinot Gris": "pinot-gris.yaml", + "Pinya Theme": "pinya-theme.yaml", + "PipBoy Theme": "pipboy-theme.yaml", + "Pirulug Dark": "pirulug-dark.yaml", + "Pirulug Ligt": "pirulug-ligt.yaml", + "Pistachio Madness": "pistachio-madness.yaml", + "Pitaya smoothie": "pitaya-smoothie.yaml", + "Pittaya Theme": "pittaya-theme.yaml", + "Pittaya Theme Light": "pittaya-theme-light.yaml", + "PittCSC Theme": "pittcsc-theme.yaml", + "pixeye-theme": "pixeye-theme.yaml", + "Pizarra": "pizarra.yaml", + "Plane": "plane.yaml", + "PlantillaThemes": "plantillathemes.yaml", + "Plasma Pink": "plasma-pink.yaml", + "Plasticine": "plasticine.yaml", + "Plasticman": "plasticman.yaml", + "Platzi Theme": "platzi-theme.yaml", + "Playground": "playground.yaml", + "Playground Theme": "playground-theme.yaml", + "Playground Theme Dark": "playground-theme-dark.yaml", + "pleasure": "pleasure.yaml", + "pleasure-contrast": "pleasure-contrast.yaml", + "pleasure-light": "pleasure-light.yaml", + "Plotka Amethyst": "plotka-amethyst.yaml", + "pls my eyes sir": "pls-my-eyes-sir.yaml", + "PlurpelVSC": "plurpelvsc.yaml", + "Pluto Dark": "pluto-dark.yaml", + "po": "po.yaml", + "poimandres dark theme": "poimandres-dark-theme.yaml", + "Polar": "polar.yaml", + "Polar Black": "polar-black.yaml", + "Polar Black Cherry Blossom": "polar-black-cherry-blossom.yaml", + "Polar Black Green Cactus": "polar-black-green-cactus.yaml", + "Polar Black Ice": "polar-black-ice.yaml", + "Polar Black Less Black Smoke": "polar-black-less-black-smoke.yaml", + "Polar Black Light": "polar-black-light.yaml", + "Polar Black Red": "polar-black-red.yaml", + "Polar Black Savanna": "polar-black-savanna.yaml", + "Polar Ice Dark": "polar-ice-dark.yaml", + "Polar Ice Light": "polar-ice-light.yaml", + "Polar Light": "polar-light.yaml", + "Polar Midnight": "polar-midnight.yaml", + "Polar Night": "polar-night.yaml", + "Polish": "polish.yaml", + "Polychrome Dark": "polychrome-dark.yaml", + "Polychrome Light": "polychrome-light.yaml", + "PolyGopher Theme": "polygopher-theme.yaml", + "Polykai": "polykai.yaml", + "Polymath": "polymath.yaml", + "pookie dark": "pookie-dark.yaml", + "Poolside": "poolside.yaml", + "Pop OS Cosmic": "pop-os-cosmic.yaml", + "Popipa": "popipa.yaml", + "Popping and Locking": "popping-and-locking.yaml", + "Popping and Locking Mod": "popping-and-locking-mod.yaml", + "popsicle-color-theme": "popsicle-color-theme.yaml", + "Port Gellhorn Noir": "port-gellhorn-noir.yaml", + "Posh": "posh.yaml", + "Posterpole": "posterpole.yaml", + "potpourri": "potpourri.yaml", + "potpourri-contrast": "potpourri-contrast.yaml", + "potpourri-light": "potpourri-light.yaml", + "powder": "powder.yaml", + "power dark": "power-dark.yaml", + "power-low-purple-theme": "power-low-purple-theme.yaml", + "PoznajKubernetes": "poznajkubernetes.yaml", + "ppy-like": "ppy-like.yaml", + "PR-Theme": "pr-theme.yaml", + "PR-Theme Obsidian": "pr-theme-obsidian.yaml", + "PR-Theme Premium": "pr-theme-premium.yaml", + "Pre": "pre.yaml", + "Prescient": "prescient.yaml", + "Pretentious Name": "pretentious-name.yaml", + "Pretstyle": "pretstyle.yaml", + "pretty-dark-theme": "pretty-dark-theme.yaml", + "Pributan": "pributan.yaml", + "Primary Dark": "primary-dark.yaml", + "Primary Light": "primary-light.yaml", + "prime": "prime.yaml", + "prime-contrast": "prime-contrast.yaml", + "prime-light": "prime-light.yaml", + "Primer Light": "primer-light.yaml", + "Prism (Dark)": "prism-dark.yaml", + "Prism (Light)": "prism-light.yaml", + "Prisma": "prisma.yaml", + "PrismaPixel Studios - Dark Theme": "prismapixel-studios-dark-theme.yaml", + "Prismatic Dark": "prismatic-dark.yaml", + "Prismatic Light": "prismatic-light.yaml", + "Prismatic Void": "prismatic-void.yaml", + "PrismMagic": "prismmagic.yaml", + "Pro Coding": "pro-coding.yaml", + "Professional Dark": "professional-dark.yaml", + "Programmer": "programmer.yaml", + "Progress": "progress.yaml", + "Progress Dark": "progress-dark.yaml", + "project-dark-theme-soft": "project-dark-theme-soft.yaml", + "Prom-Wiki": "prom-wiki.yaml", + "ProNight": "pronight.yaml", + "Proper": "proper.yaml", + "Proper Dracula": "proper-dracula.yaml", + "Proper Pure": "proper-pure.yaml", + "Proper Theme - Fork": "proper-theme-fork.yaml", + "Proper Theme Alternate 2": "proper-theme-alternate-2.yaml", + "Proper Theme Alternate Fork": "proper-theme-alternate-fork.yaml", + "Proper Up for What": "proper-up-for-what.yaml", + "propurple": "propurple.yaml", + "PS Dark": "ps-dark.yaml", + "PS Light": "ps-light.yaml", + "PS Mid-Blue": "ps-mid-blue.yaml", + "PS-Syntax": "ps-syntax.yaml", + "Pudding Dark": "pudding-dark.yaml", + "Pudding Dark · Caramel (Beta)": "pudding-dark-caramel-beta.yaml", + "Pudding Dark · Christmas": "pudding-dark-christmas.yaml", + "Pudding Light": "pudding-light.yaml", + "Pudding Light · JK": "pudding-light-jk.yaml", + "Pulpy-Orange": "pulpy-orange.yaml", + "Pulsar": "pulsar.yaml", + "Pulsar Default": "pulsar-default.yaml", + "Pulse Balanced Purple": "pulse-balanced-purple.yaml", + "Pulse Comfort Light": "pulse-comfort-light.yaml", + "Pulse Soft Purple": "pulse-soft-purple.yaml", + "Pumpkin": "pumpkin.yaml", + "Punjab - Land of Five Rivers": "punjab-land-of-five-rivers.yaml", + "punk-runner": "punk-runner.yaml", + "Pur+ Theme V1": "pur-theme-v1.yaml", + "purble 0.0.2 - Fork - Fork": "purble-0-0-2-fork-fork.yaml", + "Purddy": "purddy.yaml", + "Pure Black": "pure-black.yaml", + "Pure Dark": "pure-dark.yaml", + "Pure Light": "pure-light.yaml", + "PureBlack": "pureblack.yaml", + "Puri Twilite": "puri-twilite.yaml", + "purple": "purple.yaml", + "Purple Cake": "purple-cake.yaml", + "Purple Cloud Theme": "purple-cloud-theme.yaml", + "Purple Codain": "purple-codain.yaml", + "Purple Dark": "purple-dark.yaml", + "Purple Dark Theme - Unicode": "purple-dark-theme-unicode.yaml", + "Purple Dream": "purple-dream.yaml", + "purple ish": "purple-ish.yaml", + "Purple Royal": "purple-royal.yaml", + "Purple Surface Dark": "purple-surface-dark.yaml", + "Purple theme": "purple-theme.yaml", + "Purple Theme": "purple-theme.yaml", + "Purple Twist": "purple-twist.yaml", + "Purple Void": "purple-void.yaml", + "Purple-Cloud-Minimal": "purple-cloud-minimal.yaml", + "Purple-cyan": "purple-cyan.yaml", + "Purple(Dark-Black);": "purple-dark-black.yaml", + "Purple(Deep Black);": "purple-deep-black.yaml", + "Purple(Deep Black); - Fork": "purple-deep-black-fork.yaml", + "Purple/Dark": "purple-dark.yaml", + "PurpleAndBlack": "purpleandblack.yaml", + "Purplechan": "purplechan.yaml", + "PurpleCrystal": "purplecrystal.yaml", + "Purplefy": "purplefy.yaml", + "PurplePhantom": "purplephantom.yaml", + "PurplePorschePheme": "purpleporschepheme.yaml", + "Purpler": "purpler.yaml", + "PurpleSpace": "purplespace.yaml", + "Purplexed Magic": "purplexed-magic.yaml", + "purplexed-theme": "purplexed-theme.yaml", + "Purplezera": "purplezera.yaml", + "Purplish - Fork": "purplish-fork.yaml", + "Purplue": "purplue.yaml", + "Purply (Dark)": "purply-dark.yaml", + "Purply (Light)": "purply-light.yaml", + "Purppy": "purppy.yaml", + "Purps": "purps.yaml", + "Purrfect Marshmallow - Lavender Night": "purrfect-marshmallow-lavender-night.yaml", + "Purrfect Marshmallow - Pastel pink": "purrfect-marshmallow-pastel-pink.yaml", + "Purstel": "purstel.yaml", + "Purupiu Theme": "purupiu-theme.yaml", + "Pushkin is White": "pushkin-is-white.yaml", + "pussdev-pink-theme": "pussdev-pink-theme.yaml", + "PVC (Light)": "pvc-light.yaml", + "pvdk-theme": "pvdk-theme.yaml", + "PyCharm Theme": "pycharm-theme.yaml", + "Python-Bright-Colors-Theme": "python-bright-colors-theme.yaml", + "QARA": "qara.yaml", + "Qerz Theme": "qerz-theme.yaml", + "Qii Theme Dark": "qii-theme-dark.yaml", + "Qii Theme Dark Shallow": "qii-theme-dark-shallow.yaml", + "Qii Theme Light": "qii-theme-light.yaml", + "Qoder Dark": "qoder-dark.yaml", + "qqqoid light color": "qqqoid-light-color.yaml", + "Qt Creator-Like Dark Theme": "qt-creator-like-dark-theme.yaml", + "qtz-theme": "qtz-theme.yaml", + "Quantum Blue Dark": "quantum-blue-dark.yaml", + "Quantum Bordered": "quantum-bordered.yaml", + "Quantum Dark Bordered": "quantum-dark-bordered.yaml", + "Quantum Green": "quantum-green.yaml", + "Quantum Mirage Bordered": "quantum-mirage-bordered.yaml", + "Quantum Night": "quantum-night.yaml", + "Quantum Synthwave": "quantum-synthwave.yaml", + "QuantumQubic": "quantumqubic.yaml", + "quantxz": "quantxz.yaml", + "Quarkus Dark Theme": "quarkus-dark-theme.yaml", + "Quasar": "quasar.yaml", + "Qubik Dark": "qubik-dark.yaml", + "Qubik Light": "qubik-light.yaml", + "Queensland Dark": "queensland-dark.yaml", + "Queensland Light": "queensland-light.yaml", + "Quiet Canvas": "quiet-canvas.yaml", + "Quiet Hacker": "quiet-hacker.yaml", + "quietude": "quietude.yaml", + "Quirky Contrast Theme": "quirky-contrast-theme.yaml", + "QuTheme": "qutheme.yaml", + "R Dark Pro (Filter Black White Border)": "r-dark-pro-filter-black-white-border.yaml", + "R Dark Pro (Filter Coolnight)": "r-dark-pro-filter-coolnight.yaml", + "R Dark Pro (Filter Dark Pro)": "r-dark-pro-filter-dark-pro.yaml", + "R Dark Pro (Filter Laser Border)": "r-dark-pro-filter-laser-border.yaml", + "R Dark Pro (Filter Nightfall)": "r-dark-pro-filter-nightfall.yaml", + "R Dark Pro (Filter Nightgrey)": "r-dark-pro-filter-nightgrey.yaml", + "R Dark Pro (Filter Nightlate)": "r-dark-pro-filter-nightlate.yaml", + "R_h_zero Monokai": "r-h-zero-monokai.yaml", + "r.e.m": "r-e-m.yaml", + "Rabbit": "rabbit.yaml", + "Radiant Noir": "radiant-noir.yaml", + "radium": "radium.yaml", + "RageQuit": "ragequit.yaml", + "Ragnarok": "ragnarok.yaml", + "Raijū - Dark (No italics)": "raij-dark-no-italics.yaml", + "Raijū (No italics)": "raij-no-italics.yaml", + "Rain": "rain.yaml", + "Rain City Theme": "rain-city-theme.yaml", + "rainbow": "rainbow.yaml", + "Rainbow Pastel Theme": "rainbow-pastel-theme.yaml", + "rainbow-contrast": "rainbow-contrast.yaml", + "rainbow-light": "rainbow-light.yaml", + "rainbow-material-theme": "rainbow-material-theme.yaml", + "RainbowDrops Dark": "rainbowdrops-dark.yaml", + "Rainforest Dark": "rainforest-dark.yaml", + "rainx0r": "rainx0r.yaml", + "Rainy Hydrangea": "rainy-hydrangea.yaml", + "RaiyanPlanet Dark Knight": "raiyanplanet-dark-knight.yaml", + "RaiyanPlanet Darkest": "raiyanplanet-darkest.yaml", + "RaiyanPlanet Purple World": "raiyanplanet-purple-world.yaml", + "Rajasthan - Land of Kings": "rajasthan-land-of-kings.yaml", + "Rajoyish": "rajoyish.yaml", + "Rakkii Theme": "rakkii-theme.yaml", + "Ramage": "ramage.yaml", + "ramazzotti flexobi": "ramazzotti-flexobi.yaml", + "ramazzotti gruvbox": "ramazzotti-gruvbox.yaml", + "ramazzotti-80s": "ramazzotti-80s.yaml", + "Ramuda": "ramuda.yaml", + "Rapture": "rapture.yaml", + "Rate Dark": "rate-dark.yaml", + "Rate Dark Cold": "rate-dark-cold.yaml", + "Rate Light": "rate-light.yaml", + "Rate Light Soft": "rate-light-soft.yaml", + "Ravenwood Dark": "ravenwood-dark.yaml", + "Ravenwood Light": "ravenwood-light.yaml", + "RB's Desaturated": "rb-s-desaturated.yaml", + "RBE Matrix Skin Theme": "rbe-matrix-skin-theme.yaml", + "rdcd": "rdcd.yaml", + "re:Dark Alt": "re-dark-alt.yaml", + "re:Eclipse": "re-eclipse.yaml", + "re:Eclipse Old School": "re-eclipse-old-school.yaml", + "Re:Vision": "re-vision.yaml", + "React Theme": "react-theme.yaml", + "rebellion": "rebellion.yaml", + "rebellion-contrast": "rebellion-contrast.yaml", + "rebellion-light": "rebellion-light.yaml", + "recats-classic-dark": "recats-classic-dark.yaml", + "recats-nova-dark": "recats-nova-dark.yaml", + "RecoTheme": "recotheme.yaml", + "Red Black White Dark": "red-black-white-dark.yaml", + "Red Black White Light": "red-black-white-light.yaml", + "Red Neon": "red-neon.yaml", + "Red One Dark Pro | Dark": "red-one-dark-pro-dark.yaml", + "Red One Dark Pro | Dark Bordered": "red-one-dark-pro-dark-bordered.yaml", + "Red One Dark Pro | Mirage": "red-one-dark-pro-mirage.yaml", + "Red One Dark Pro | Mirage Bordered": "red-one-dark-pro-mirage-bordered.yaml", + "Red Vintage": "red-vintage.yaml", + "red/grey": "red-grey.yaml", + "RedDark": "reddark.yaml", + "Reddish": "reddish.yaml", + "Reddit Dark Based Theme - Updated": "reddit-dark-based-theme-updated.yaml", + "rediohead theme": "rediohead-theme.yaml", + "redoRainbow": "redorainbow.yaml", + "RedPro Dark": "redpro-dark.yaml", + "RedPro Light": "redpro-light.yaml", + "RedSpecter": "redspecter.yaml", + "Refined (Charcoal)": "refined-charcoal.yaml", + "Refined (Default)": "refined-default.yaml", + "Refined (Dracula)": "refined-dracula.yaml", + "Refined (Espresso)": "refined-espresso.yaml", + "Refined (Matcha)": "refined-matcha.yaml", + "Refined (Mocha)": "refined-mocha.yaml", + "Refined (Night Owl)": "refined-night-owl.yaml", + "Refined (Oceanic Next)": "refined-oceanic-next.yaml", + "Refined (One)": "refined-one.yaml", + "Refined (Palenight)": "refined-palenight.yaml", + "Refined (Purple)": "refined-purple.yaml", + "Refined (Slate)": "refined-slate.yaml", + "Regard": "regard.yaml", + "RegisTheme": "registheme.yaml", + "Relaxed Theme": "relaxed-theme.yaml", + "Relaxed Theme - Dark Focus": "relaxed-theme-dark-focus.yaml", + "Relaxed Theme - Day Light": "relaxed-theme-day-light.yaml", + "Relaxed Theme - Night Warm": "relaxed-theme-night-warm.yaml", + "Remedy - Bright (Tilted)": "remedy-bright-tilted.yaml", + "Remedy - Dark (Tilted)": "remedy-dark-tilted.yaml", + "Replicant": "replicant.yaml", + "replt.it": "replt-it.yaml", + "repoman-color-theme": "repoman-color-theme.yaml", + "Resknow Dark": "resknow-dark.yaml", + "RessGame-Advance-Coding-Theme": "ressgame-advance-coding-theme.yaml", + "Retina": "retina.yaml", + "Retro": "retro.yaml", + "Retro Cathode-Ray Minimal Theme": "retro-cathode-ray-minimal-theme.yaml", + "retro green": "retro-green.yaml", + "Retro Hacker Amber": "retro-hacker-amber.yaml", + "Retro Hacker Blue": "retro-hacker-blue.yaml", + "Retro Hacker Green": "retro-hacker-green.yaml", + "Retro Hacker Green - Subtle": "retro-hacker-green-subtle.yaml", + "Retro Hacker Magenta": "retro-hacker-magenta.yaml", + "Retro Keyboard Dark": "retro-keyboard-dark.yaml", + "Retro Keyboard Light": "retro-keyboard-light.yaml", + "Retro Pastel Color Theme": "retro-pastel-color-theme.yaml", + "retro theme": "retro-theme.yaml", + "Retro Vibes": "retro-vibes.yaml", + "Retrocoders": "retrocoders.yaml", + "Retronica Amber Terminal": "retronica-amber-terminal.yaml", + "Retronica Neon Nights": "retronica-neon-nights.yaml", + "Retronica Pastel Arcade": "retronica-pastel-arcade.yaml", + "Retronica Phosphor Green": "retronica-phosphor-green.yaml", + "Retronica Vintage Computing": "retronica-vintage-computing.yaml", + "RetroPuNK": "retropunk.yaml", + "Retroscope": "retroscope.yaml", + "Retrox": "retrox.yaml", + "ReUI II Dark Italic": "reui-ii-dark-italic.yaml", + "ReUI II Italic": "reui-ii-italic.yaml", + "ReUI II Mirage Italic": "reui-ii-mirage-italic.yaml", + "revelation": "revelation.yaml", + "revelation-contrast": "revelation-contrast.yaml", + "revelation-light": "revelation-light.yaml", + "reVisual_Assist-color-theme": "revisual-assist-color-theme.yaml", + "ReVisualAssist": "revisualassist.yaml", + "rextax bright! - Fork": "rextax-bright-fork.yaml", + "Rhodes Dark": "rhodes-dark.yaml", + "Rhodes Light": "rhodes-light.yaml", + "rich-black-theme-no-italic": "rich-black-theme-no-italic.yaml", + "Rider": "rider.yaml", + "Rider Melon Night": "rider-melon-night.yaml", + "Rigel": "rigel.yaml", + "Rimber": "rimber.yaml", + "Riskified Dark": "riskified-dark.yaml", + "Rito": "rito.yaml", + "Rivendell": "rivendell.yaml", + "Rizz Focused": "rizz-focused.yaml", + "Rizz Neutral": "rizz-neutral.yaml", + "Rm Dark Theme": "rm-dark-theme.yaml", + "Roblox-Stylized Dark Theme": "roblox-stylized-dark-theme.yaml", + "RoboDark": "robodark.yaml", + "robolaunch": "robolaunch.yaml", + "Rocinante": "rocinante.yaml", + "Rocko's Modern Theme": "rocko-s-modern-theme.yaml", + "ROG Theme V1.1 Dark Alpha - Syntax Test": "rog-theme-v1-1-dark-alpha-syntax-test.yaml", + "Rogue Squadron": "rogue-squadron.yaml", + "Rohit-Kudalkar-Dark-Theme": "rohit-kudalkar-dark-theme.yaml", + "Ronin": "ronin.yaml", + "Ronin Darker": "ronin-darker.yaml", + "Root Bear": "root-bear.yaml", + "Rose Paradise": "rose-paradise.yaml", + "Rosé Pine": "ros-pine.yaml", + "Rosé Pine Dawn": "ros-pine-dawn.yaml", + "Rosefall Black": "rosefall-black.yaml", + "Rosefall Midnight": "rosefall-midnight.yaml", + "Roselia": "roselia.yaml", + "Roselia - Orbital Eden Pastel": "roselia-orbital-eden-pastel.yaml", + "Rouge No Italics": "rouge-no-italics.yaml", + "Roxo theme": "roxo-theme.yaml", + "Royal": "royal.yaml", + "Royal - Fork": "royal-fork.yaml", + "Royal Darker Theme": "royal-darker-theme.yaml", + "Rozen": "rozen.yaml", + "RS Dark": "rs-dark.yaml", + "Rsikified Dark Purple": "rsikified-dark-purple.yaml", + "Rubecula": "rubecula.yaml", + "Rubi Theme": "rubi-theme.yaml", + "Ruby Nights — Garnet": "ruby-nights-garnet.yaml", + "Ruby Nights — Garnet Midnight": "ruby-nights-garnet-midnight.yaml", + "Ruby Nights — Ruby": "ruby-nights-ruby.yaml", + "Ruby Nights — Ruby Midnight": "ruby-nights-ruby-midnight.yaml", + "Ruby Sea": "ruby-sea.yaml", + "RudyDev Theme [Edited Tokyo Night Storm]": "rudydev-theme-edited-tokyo-night-storm.yaml", + "Rui Cobalt": "rui-cobalt.yaml", + "Rui Sapphire": "rui-sapphire.yaml", + "Runic Minimal": "runic-minimal.yaml", + "ruru marijuana": "ruru-marijuana.yaml", + "ruru moon": "ruru-moon.yaml", + "Rust & Brown": "rust-brown.yaml", + "Rustacean": "rustacean.yaml", + "Rusty": "rusty.yaml", + "ryb": "ryb.yaml", + "rypjaws": "rypjaws.yaml", + "s-kill": "s-kill.yaml", + "S-Kill": "s-kill.yaml", + "Safari Midnight": "safari-midnight.yaml", + "safira": "safira.yaml", + "Saga - Nordic v1.2": "saga-nordic-v1-2.yaml", + "Saga - Oceania v1.2": "saga-oceania-v1-2.yaml", + "Sage Professional": "sage-professional.yaml", + "Sage Siren Theme": "sage-siren-theme.yaml", + "sage-of-light-color-theme": "sage-of-light-color-theme.yaml", + "sailor-at-sea": "sailor-at-sea.yaml", + "Sakai Theme Jupiter": "sakai-theme-jupiter.yaml", + "Sakai Theme Moon": "sakai-theme-moon.yaml", + "Sakai Theme Saturn": "sakai-theme-saturn.yaml", + "Sakai Theme Venus": "sakai-theme-venus.yaml", + "sakura": "sakura.yaml", + "Sakura": "sakura.yaml", + "Sakura Blossom Midnight": "sakura-blossom-midnight.yaml", + "Sakura Dreams": "sakura-dreams.yaml", + "Sakura Dreams Dark": "sakura-dreams-dark.yaml", + "Sakura Theme - Fork": "sakura-theme-fork.yaml", + "Sakura V2 By LeRoiAdib": "sakura-v2-by-leroiadib.yaml", + "sakura-blossom-theme": "sakura-blossom-theme.yaml", + "sakura-theme": "sakura-theme.yaml", + "Sakya Dorje": "sakya-dorje.yaml", + "Samacaca": "samacaca.yaml", + "samgido-theme-dark": "samgido-theme-dark.yaml", + "Samito Nest Theme": "samito-nest-theme.yaml", + "Samito Nest-GraphQL Theme": "samito-nest-graphql-theme.yaml", + "Samurai": "samurai.yaml", + "Samyak Bumb": "samyak-bumb.yaml", + "sanam-dark-pro": "sanam-dark-pro.yaml", + "Sandcastle": "sandcastle.yaml", + "sanded": "sanded.yaml", + "SandStorm": "sandstorm.yaml", + "Sanemi Shinazugawa": "sanemi-shinazugawa.yaml", + "Sanrio": "sanrio.yaml", + "São Paulo Night": "s-o-paulo-night.yaml", + "sapporo": "sapporo.yaml", + "Saransk Night": "saransk-night.yaml", + "Saraswati - Cool Light Theme": "saraswati-cool-light-theme.yaml", + "Sarcastic White": "sarcastic-white.yaml", + "sargam": "sargam.yaml", + "satoru-gojo-blue": "satoru-gojo-blue.yaml", + "satoru-gojo-white": "satoru-gojo-white.yaml", + "Satoshi Nakamoto Theme": "satoshi-nakamoto-theme.yaml", + "Satsoomahhh": "satsoomahhh.yaml", + "Satu": "satu.yaml", + "Saturated Dark Terminal": "saturated-dark-terminal.yaml", + "Saturn Moonlight": "saturn-moonlight.yaml", + "saturnblue-dark": "saturnblue-dark.yaml", + "Sauna Theme": "sauna-theme.yaml", + "saunf": "saunf.yaml", + "Sauve": "sauve.yaml", + "Savannah Dawn": "savannah-dawn.yaml", + "Savannah Sunset": "savannah-sunset.yaml", + "Save My Eyes": "save-my-eyes.yaml", + "savetemin": "savetemin.yaml", + "sazardev": "sazardev.yaml", + "scarlet": "scarlet.yaml", + "Sceanic": "sceanic.yaml", + "Sceanic - Dark Gray": "sceanic-dark-gray.yaml", + "Sceanic - Gray": "sceanic-gray.yaml", + "scepter": "scepter.yaml", + "schoero-dark": "schoero-dark.yaml", + "SchoolTheme": "schooltheme.yaml", + "Schwifty": "schwifty.yaml", + "Schwifty Atom One Dark": "schwifty-atom-one-dark.yaml", + "Schwifty Purple One Dark": "schwifty-purple-one-dark.yaml", + "scooby-dooby-dark": "scooby-dooby-dark.yaml", + "scorch": "scorch.yaml", + "scorch-contrast": "scorch-contrast.yaml", + "scorch-light": "scorch-light.yaml", + "Scorpion Theme": "scorpion-theme.yaml", + "Scuba": "scuba.yaml", + "Sea Glass": "sea-glass.yaml", + "Sea Urchin": "sea-urchin.yaml", + "Seabrook Dark - Italic": "seabrook-dark-italic.yaml", + "Seabrook Light - Italic": "seabrook-light-italic.yaml", + "Seaci Darkbase": "seaci-darkbase.yaml", + "Seaci Shadow": "seaci-shadow.yaml", + "Seafarer": "seafarer.yaml", + "Seafoam": "seafoam.yaml", + "seagull": "seagull.yaml", + "Secret Spring": "secret-spring.yaml", + "Secunda": "secunda.yaml", + "Secuoyas Code": "secuoyas-code.yaml", + "Sedona": "sedona.yaml", + "Seed7 Tokyo Night Dark": "seed7-tokyo-night-dark.yaml", + "seekode light": "seekode-light.yaml", + "Selene Selenized Dark": "selene-selenized-dark.yaml", + "Selene Selenized Light": "selene-selenized-light.yaml", + "selenitic-color-theme": "selenitic-color-theme.yaml", + "sema": "sema.yaml", + "Semantic Noctis Lux": "semantic-noctis-lux.yaml", + "semi dark theme in yellow": "semi-dark-theme-in-yellow.yaml", + "SenerDark Pro – Blue-Gray": "senerdark-pro-blue-gray.yaml", + "SenerDark Pro – Deep Gray": "senerdark-pro-deep-gray.yaml", + "Senkorange": "senkorange.yaml", + "Senna Dark Black Theme": "senna-dark-black-theme.yaml", + "Seoul Dancheong": "seoul-dancheong.yaml", + "Seoul Morning": "seoul-morning.yaml", + "Seoul Night": "seoul-night.yaml", + "September Dark Theme": "september-dark-theme.yaml", + "Sequoia Monochrome": "sequoia-monochrome.yaml", + "Sequoia Moonlight": "sequoia-moonlight.yaml", + "Sequoia Retro": "sequoia-retro.yaml", + "Seral Dark (GitHub × Stripe)": "seral-dark-github-stripe.yaml", + "Seral Light (GitHub × Stripe)": "seral-light-github-stripe.yaml", + "Serendipity Midnight": "serendipity-midnight.yaml", + "Serendipity Midnight Electric": "serendipity-midnight-electric.yaml", + "Serendipity Midnight V1": "serendipity-midnight-v1.yaml", + "Serendipity Morning": "serendipity-morning.yaml", + "Serendipity Morning V1": "serendipity-morning-v1.yaml", + "Serendipity Sunset": "serendipity-sunset.yaml", + "Serendipity Sunset V1": "serendipity-sunset-v1.yaml", + "Serene": "serene.yaml", + "service": "service.yaml", + "service-contrast": "service-contrast.yaml", + "service-light": "service-light.yaml", + "Seti": "seti.yaml", + "seti-classic-vscode": "seti-classic-vscode.yaml", + "Sewayaki Dark": "sewayaki-dark.yaml", + "shaan's": "shaan-s.yaml", + "Shaant Shakti": "shaant-shakti.yaml", + "Shaant Shakti: Mystic Roast": "shaant-shakti-mystic-roast.yaml", + "Shaant Shakti: Sand Storm": "shaant-shakti-sand-storm.yaml", + "Shaant Shakti: Soul Drift": "shaant-shakti-soul-drift.yaml", + "Shaant Shakti: SPFx Sanctuary": "shaant-shakti-spfx-sanctuary.yaml", + "Shadcn Blue Light": "shadcn-blue-light.yaml", + "Shadcn Green Dark": "shadcn-green-dark.yaml", + "Shadcn Green Light": "shadcn-green-light.yaml", + "Shadcn Neutral Dark": "shadcn-neutral-dark.yaml", + "Shadcn Neutral Light": "shadcn-neutral-light.yaml", + "Shadcn Orange Dark": "shadcn-orange-dark.yaml", + "Shadcn Orange Light": "shadcn-orange-light.yaml", + "Shadcn Red Dark": "shadcn-red-dark.yaml", + "Shadcn Red Light": "shadcn-red-light.yaml", + "Shadcn Rose Dark": "shadcn-rose-dark.yaml", + "Shadcn Rose Light": "shadcn-rose-light.yaml", + "Shadcn Violet Dark": "shadcn-violet-dark.yaml", + "Shadcn Violet Light": "shadcn-violet-light.yaml", + "Shadcn Vivid": "shadcn-vivid.yaml", + "Shadcn Yellow Dark": "shadcn-yellow-dark.yaml", + "Shadcn Yellow Light": "shadcn-yellow-light.yaml", + "Shaddy": "shaddy.yaml", + "Shaddy LightA": "shaddy-lighta.yaml", + "Shade Theme": "shade-theme.yaml", + "Shades": "shades.yaml", + "Shades of Cyan theme": "shades-of-cyan-theme.yaml", + "Shades Of Gravy": "shades-of-gravy.yaml", + "Shades of Life": "shades-of-life.yaml", + "Shades of Life (Light)": "shades-of-life-light.yaml", + "Shades of Midnight Blue dark theme": "shades-of-midnight-blue-dark-theme.yaml", + "Shades-Of-Blue": "shades-of-blue.yaml", + "shades-of-violet": "shades-of-violet.yaml", + "Shadowborn": "shadowborn.yaml", + "Shadowscape": "shadowscape.yaml", + "ShadowSpectrum": "shadowspectrum.yaml", + "Shamrock": "shamrock.yaml", + "Sharkdark Theme": "sharkdark-theme.yaml", + "SharpBlue": "sharpblue.yaml", + "Sheme": "sheme.yaml", + "ShibaInu Dark": "shibainu-dark.yaml", + "Shibuya": "shibuya.yaml", + "Shifting Sands": "shifting-sands.yaml", + "shiina": "shiina.yaml", + "Shinjuku Colored Brackets": "shinjuku-colored-brackets.yaml", + "Shinkai": "shinkai.yaml", + "SHIP-dark": "ship-dark.yaml", + "SHIP-light": "ship-light.yaml", + "shirotelin": "shirotelin.yaml", + "shiv-vscode-theme": "shiv-vscode-theme.yaml", + "SHIVAM": "shivam.yaml", + "shoxwave": "shoxwave.yaml", + "shrek": "shrek.yaml", + "Shrek": "shrek.yaml", + "shrek-contrast": "shrek-contrast.yaml", + "shrek-light": "shrek-light.yaml", + "Shuri Midnight": "shuri-midnight.yaml", + "Siberia": "siberia.yaml", + "Side Punk - SQL": "side-punk-sql.yaml", + "Sidev Monokai Dim Ts": "sidev-monokai-dim-ts.yaml", + "Siemor": "siemor.yaml", + "sign-theme-v3": "sign-theme-v3.yaml", + "sign-theme-v4": "sign-theme-v4.yaml", + "silent-code": "silent-code.yaml", + "Silot (Dark Classic)": "silot-dark-classic.yaml", + "Silvermist": "silvermist.yaml", + "Silverwolf": "silverwolf.yaml", + "Simple Purple": "simple-purple.yaml", + "Simple Red Dark": "simple-red-dark.yaml", + "Simple Theme": "simple-theme.yaml", + "simple-3000": "simple-3000.yaml", + "simple-calm-dark": "simple-calm-dark.yaml", + "SimpleDark": "simpledark.yaml", + "Sinequanone Acid": "sinequanone-acid.yaml", + "Sinequanone Apple": "sinequanone-apple.yaml", + "Sinequanone Brighton": "sinequanone-brighton.yaml", + "Sinequanone Carbon": "sinequanone-carbon.yaml", + "Sinequanone Cerulean": "sinequanone-cerulean.yaml", + "Sinequanone Noir": "sinequanone-noir.yaml", + "Sinequanone Sunset": "sinequanone-sunset.yaml", + "Sinequanone Swan": "sinequanone-swan.yaml", + "SinergyExt": "sinergyext.yaml", + "Sirius-Astral": "sirius-astral.yaml", + "Sirius-Glow": "sirius-glow.yaml", + "Sirius-Nebula": "sirius-nebula.yaml", + "Sirius-Pulsar": "sirius-pulsar.yaml", + "Sirius-Vesper": "sirius-vesper.yaml", + "Sirius-Vibe": "sirius-vibe.yaml", + "Sirius-Vortex": "sirius-vortex.yaml", + "Sirius-Zenith": "sirius-zenith.yaml", + "sith": "sith.yaml", + "Sizdah - Best of all": "sizdah-best-of-all.yaml", + "Sizo Purple": "sizo-purple.yaml", + "SJ Pinkish Theme": "sj-pinkish-theme.yaml", + "SJ Theme": "sj-theme.yaml", + "sk5s-vsgt": "sk5s-vsgt.yaml", + "SkeletorTheme": "skeletortheme.yaml", + "Sky At Night": "sky-at-night.yaml", + "Sky Blue - Tranquility & Focus": "sky-blue-tranquility-focus.yaml", + "sky-miami-vice": "sky-miami-vice.yaml", + "sky-neon": "sky-neon.yaml", + "Skye-wind": "skye-wind.yaml", + "Skye-wind-light": "skye-wind-light.yaml", + "Skyline": "skyline.yaml", + "Slack Theme Aubergine": "slack-theme-aubergine.yaml", + "Slack Theme Aubergine Dark": "slack-theme-aubergine-dark.yaml", + "Slack Theme Aubergine New": "slack-theme-aubergine-new.yaml", + "Slack Theme Dark": "slack-theme-dark.yaml", + "slack-theme": "slack-theme.yaml", + "slate": "slate.yaml", + "Slate Black": "slate-black.yaml", + "Slate Blackish": "slate-blackish.yaml", + "Slate Gray": "slate-gray.yaml", + "slate-contrast": "slate-contrast.yaml", + "slate-light": "slate-light.yaml", + "Sleepy Owl - Default (Beta)": "sleepy-owl-default-beta.yaml", + "Sleepy Owl - Greenwich (Beta)": "sleepy-owl-greenwich-beta.yaml", + "Sleepy Owl - Oak (Beta)": "sleepy-owl-oak-beta.yaml", + "slime": "slime.yaml", + "Slime": "slime.yaml", + "slime-color-theme": "slime-color-theme.yaml", + "slime-contrast": "slime-contrast.yaml", + "slime-light": "slime-light.yaml", + "slime-solid-color-theme": "slime-solid-color-theme.yaml", + "Slimy": "slimy.yaml", + "Slimy (high-contrast)": "slimy-high-contrast.yaml", + "Slimy (light)": "slimy-light.yaml", + "slinkwave": "slinkwave.yaml", + "sloth-highlander-theme-1": "sloth-highlander-theme-1.yaml", + "sloth-highlander-theme-2": "sloth-highlander-theme-2.yaml", + "SmallTheme Carbon OLED": "smalltheme-carbon-oled.yaml", + "smettboi-light": "smettboi-light.yaml", + "Smithy Bronze": "smithy-bronze.yaml", + "Smooth Burn Dark": "smooth-burn-dark.yaml", + "Smooth Burn Dark Hard": "smooth-burn-dark-hard.yaml", + "Smooth Burn Dark Medium": "smooth-burn-dark-medium.yaml", + "Smooth Burn Light Hard": "smooth-burn-light-hard.yaml", + "Smoothity Dark": "smoothity-dark.yaml", + "Snakedye Chocolate": "snakedye-chocolate.yaml", + "snappy": "snappy.yaml", + "snappy-contrast": "snappy-contrast.yaml", + "snappy-light": "snappy-light.yaml", + "Snazzy Light": "snazzy-light.yaml", + "Snazzy Operator Natural": "snazzy-operator-natural.yaml", + "Snazzy Solaris": "snazzy-solaris.yaml", + "Snazzy vs theme": "snazzy-vs-theme.yaml", + "snazzy-operator-color-theme-dark-italics": "snazzy-operator-color-theme-dark-italics.yaml", + "snazzy-operator-color-theme-italics": "snazzy-operator-color-theme-italics.yaml", + "snazzy-operator-plus-color-theme": "snazzy-operator-plus-color-theme.yaml", + "snow theme": "snow-theme.yaml", + "Snowflake-Dark-Theme": "snowflake-dark-theme.yaml", + "Snowflake-Darker-Theme": "snowflake-darker-theme.yaml", + "Snoword Dark": "snoword-dark.yaml", + "Snoword Dark Soft": "snoword-dark-soft.yaml", + "Snoword Light": "snoword-light.yaml", + "Snoword Light Soft": "snoword-light-soft.yaml", + "Snowpiercer": "snowpiercer.yaml", + "Sober": "sober.yaml", + "Sober Afternoon": "sober-afternoon.yaml", + "Sober Deepnight": "sober-deepnight.yaml", + "Sober Midnight": "sober-midnight.yaml", + "sobrio": "sobrio.yaml", + "sobrio-light": "sobrio-light.yaml", + "SOCT-color-theme": "soct-color-theme.yaml", + "Soda": "soda.yaml", + "Soft Colors": "soft-colors.yaml", + "Soft Dark 2": "soft-dark-2.yaml", + "soft era (ellite edit)": "soft-era-ellite-edit.yaml", + "soft kawaii theme 1-color-theme": "soft-kawaii-theme-1-color-theme.yaml", + "Soft Light 2": "soft-light-2.yaml", + "Soft Material": "soft-material.yaml", + "Soft Midnight": "soft-midnight.yaml", + "Soft Mood Theme": "soft-mood-theme.yaml", + "soft sight": "soft-sight.yaml", + "Soft Sunset Dark": "soft-sunset-dark.yaml", + "Soft Yellow Light": "soft-yellow-light.yaml", + "soho-color-theme": "soho-color-theme.yaml", + "Soil Theme": "soil-theme.yaml", + "Solar Drift Dark Theme": "solar-drift-dark-theme.yaml", + "Solar Drift Darker Theme": "solar-drift-darker-theme.yaml", + "Solar Flare": "solar-flare.yaml", + "Solar Future": "solar-future.yaml", + "solarflare": "solarflare.yaml", + "solarflare-contrast": "solarflare-contrast.yaml", + "solarflare-light": "solarflare-light.yaml", + "Solaris": "solaris.yaml", + "Solarized (Abydos)": "solarized-abydos.yaml", + "Solarized (dark)": "solarized-dark.yaml", + "Solarized (light)": "solarized-light.yaml", + "Solarized Complete (Dark)": "solarized-complete-dark.yaml", + "Solarized Complete (Light)": "solarized-complete-light.yaml", + "Solarized Custom (Dark)": "solarized-custom-dark.yaml", + "Solarized Custom (Light)": "solarized-custom-light.yaml", + "Solarized Dark Theme": "solarized-dark-theme.yaml", + "Solarized Deep": "solarized-deep.yaml", + "Solarized Light N": "solarized-light-n.yaml", + "Solarized Lilac": "solarized-lilac.yaml", + "Solarized Monokai (dark)": "solarized-monokai-dark.yaml", + "Solarized Neue": "solarized-neue.yaml", + "Solarized Neue Bright": "solarized-neue-bright.yaml", + "Solarized Pro": "solarized-pro.yaml", + "Solarized Right": "solarized-right.yaml", + "Solarized SS Light": "solarized-ss-light.yaml", + "Solarized Yuki": "solarized-yuki.yaml", + "Solarized-light-functional": "solarized-light-functional.yaml", + "Solarized+": "solarized.yaml", + "Solarus": "solarus.yaml", + "solaryss": "solaryss.yaml", + "Solavsce packagera": "solavsce-packagera.yaml", + "Solid_Dark_theme": "solid-dark-theme.yaml", + "solitude-dark": "solitude-dark.yaml", + "solitude-soft": "solitude-soft.yaml", + "Solo Leveling": "solo-leveling.yaml", + "Solstice Estival": "solstice-estival.yaml", + "Solstice Hibernal": "solstice-hibernal.yaml", + "Somber": "somber.yaml", + "Something Theme": "something-theme.yaml", + "somewhere on a beach...": "somewhere-on-a-beach.yaml", + "Sonokai": "sonokai.yaml", + "Sonokai Andromeda": "sonokai-andromeda.yaml", + "Sonokai Atlantis": "sonokai-atlantis.yaml", + "Sonokai Espresso": "sonokai-espresso.yaml", + "Sonokai Maia": "sonokai-maia.yaml", + "Sonokai Shusia": "sonokai-shusia.yaml", + "Sonora Deep Signal": "sonora-deep-signal.yaml", + "Sonora Deep Signal (faded)": "sonora-deep-signal-faded.yaml", + "Sonora Deep Signal (vibrant)": "sonora-deep-signal-vibrant.yaml", + "Sonora Tides": "sonora-tides.yaml", + "Soothing": "soothing.yaml", + "Soothing Dark": "soothing-dark.yaml", + "Soothing Light": "soothing-light.yaml", + "Sorcerer": "sorcerer.yaml", + "Soudev mega dark": "soudev-mega-dark.yaml", + "Soudev Purple Andromeda": "soudev-purple-andromeda.yaml", + "Soudev semi dark Andromeda": "soudev-semi-dark-andromeda.yaml", + "soul-theme": "soul-theme.yaml", + "Souls Theme": "souls-theme.yaml", + "soup": "soup.yaml", + "soup-contrast": "soup-contrast.yaml", + "soup-light": "soup-light.yaml", + "sourc": "sourc.yaml", + "Sourcerer": "sourcerer.yaml", + "sourlick": "sourlick.yaml", + "sourlick-contrast": "sourlick-contrast.yaml", + "sourlick-light": "sourlick-light.yaml", + "South Australia Dark": "south-australia-dark.yaml", + "South Australia Light": "south-australia-light.yaml", + "Space": "space.yaml", + "Space Dark": "space-dark.yaml", + "Space Invader": "space-invader.yaml", + "Space Invader - Black": "space-invader-black.yaml", + "Space Invader - Darker": "space-invader-darker.yaml", + "Space Invader - Light": "space-invader-light.yaml", + "Space Light": "space-light.yaml", + "Space Purple Dark": "space-purple-dark.yaml", + "Space Purple Light": "space-purple-light.yaml", + "space-theme": "space-theme.yaml", + "SpaceCamp": "spacecamp.yaml", + "Spacedust": "spacedust.yaml", + "SpaceGray": "spacegray.yaml", + "spacegrey": "spacegrey.yaml", + "Spacemacs - dark": "spacemacs-dark.yaml", + "Spacemacs - light": "spacemacs-light.yaml", + "SpaceOceanKitRefined": "spaceoceankitrefined.yaml", + "Spacial": "spacial.yaml", + "Spades": "spades.yaml", + "Sparkle Theme": "sparkle-theme.yaml", + "Speakeasy": "speakeasy.yaml", + "spearmint": "spearmint.yaml", + "spearmint-contrast": "spearmint-contrast.yaml", + "spearmint-light": "spearmint-light.yaml", + "Spider Man": "spider-man.yaml", + "SpiderVerse 2099": "spiderverse-2099.yaml", + "SpiderVerse Miles": "spiderverse-miles.yaml", + "SpiderVerse Spider-Man": "spiderverse-spider-man.yaml", + "Spin Theme": "spin-theme.yaml", + "Spiral": "spiral.yaml", + "Spirited Night": "spirited-night.yaml", + "spitfire": "spitfire.yaml", + "spitfire-contrast": "spitfire-contrast.yaml", + "spitfire-light": "spitfire-light.yaml", + "Splash Theme": "splash-theme.yaml", + "Splus": "splus.yaml", + "Spotly Dark": "spotly-dark.yaml", + "Spotly Light": "spotly-light.yaml", + "Spring": "spring.yaml", + "sprinkles-color-theme": "sprinkles-color-theme.yaml", + "spurlys theme": "spurlys-theme.yaml", + "spyder-theme-light": "spyder-theme-light.yaml", + "SQL Dark Pro - High Contrast": "sql-dark-pro-high-contrast.yaml", + "Squeak": "squeak.yaml", + "Srcery": "srcery.yaml", + "Srcery-gagbo": "srcery-gagbo.yaml", + "Stackmeister": "stackmeister.yaml", + "stained-glass-dark": "stained-glass-dark.yaml", + "stannum": "stannum.yaml", + "Star Night": "star-night.yaml", + "Star Night Luna": "star-night-luna.yaml", + "Star Wars Dark Side Theme (Global)": "star-wars-dark-side-theme-global.yaml", + "Starboy Theme": "starboy-theme.yaml", + "Starburst Dark": "starburst-dark.yaml", + "Starfield": "starfield.yaml", + "stark": "stark.yaml", + "Stark Dark": "stark-dark.yaml", + "Stark Light": "stark-light.yaml", + "stark-contrast": "stark-contrast.yaml", + "stark-light": "stark-light.yaml", + "Starlight": "starlight.yaml", + "Starlight - Daybreak": "starlight-daybreak.yaml", + "Starlight - Light": "starlight-light.yaml", + "Starlight - Midnight": "starlight-midnight.yaml", + "Starlight - Obsidian": "starlight-obsidian.yaml", + "Starlight - Soft Glow": "starlight-soft-glow.yaml", + "Starry Night": "starry-night.yaml", + "Starry Pillar": "starry-pillar.yaml", + "Startlite": "startlite.yaml", + "Startrail": "startrail.yaml", + "stasis": "stasis.yaml", + "stasis-contrast": "stasis-contrast.yaml", + "stasis-light": "stasis-light.yaml", + "stealth": "stealth.yaml", + "stealth-contrast": "stealth-contrast.yaml", + "stealth-light": "stealth-light.yaml", + "Steel Blue Dark": "steel-blue-dark.yaml", + "Steel Phantom": "steel-phantom.yaml", + "Steffula": "steffula.yaml", + "Stella": "stella.yaml", + "Stella (High Contrast)": "stella-high-contrast.yaml", + "Stella Theme": "stella-theme.yaml", + "Stellar": "stellar.yaml", + "Stellar Void": "stellar-void.yaml", + "Stereo Theme": "stereo-theme.yaml", + "Sto Classic": "sto-classic.yaml", + "Sto Green": "sto-green.yaml", + "Sto Green Dark": "sto-green-dark.yaml", + "StoneRose": "stonerose.yaml", + "storm": "storm.yaml", + "Storm Dark Pro": "storm-dark-pro.yaml", + "Storm Tracker": "storm-tracker.yaml", + "Storm Uvadark - Fork": "storm-uvadark-fork.yaml", + "storm-contrast": "storm-contrast.yaml", + "storm-light": "storm-light.yaml", + "stormpetrel": "stormpetrel.yaml", + "StrangeBrew": "strangebrew.yaml", + "studio.bio Bio Dark Theme": "studio-bio-bio-dark-theme.yaml", + "stylelight35": "stylelight35.yaml", + "Subessence": "subessence.yaml", + "Sublette": "sublette.yaml", + "Sublime Breakers": "sublime-breakers.yaml", + "Sublime Mariana ⎯ Semantic Colorful": "sublime-mariana-semantic-colorful.yaml", + "Sublime Mariana ⎯ Test": "sublime-mariana-test.yaml", + "Sublime Text 3": "sublime-text-3.yaml", + "Sublime Text 4 Theme": "sublime-text-4-theme.yaml", + "sublime-monokai-color-theme": "sublime-monokai-color-theme.yaml", + "sublime-vscode-theme": "sublime-vscode-theme.yaml", + "Subliminal-color-theme": "subliminal-color-theme.yaml", + "SubliminalR - Next": "subliminalr-next.yaml", + "subscribe-color": "subscribe-color.yaml", + "Substrata": "substrata.yaml", + "Sufocode": "sufocode.yaml", + "Sugar Dark": "sugar-dark.yaml", + "Sugar Dark Focus": "sugar-dark-focus.yaml", + "Sugar Dark Github": "sugar-dark-github.yaml", + "Sugar Dark Midnight": "sugar-dark-midnight.yaml", + "Sugar Dark One": "sugar-dark-one.yaml", + "Sugar Dark Vitesse": "sugar-dark-vitesse.yaml", + "Sugar Dark VS": "sugar-dark-vs.yaml", + "Sugar Fleet": "sugar-fleet.yaml", + "Sugar Light": "sugar-light.yaml", + "Sugar Light Vitesse": "sugar-light-vitesse.yaml", + "Sugar Light VS": "sugar-light-vs.yaml", + "sukadia.dev/dark": "sukadia-dev-dark.yaml", + "Sulfuric Dark": "sulfuric-dark.yaml", + "Sumiiro": "sumiiro.yaml", + "summer": "summer.yaml", + "Summer Night": "summer-night.yaml", + "Summer Night Gray High Contrast": "summer-night-gray-high-contrast.yaml", + "Summer Night High Contrast": "summer-night-high-contrast.yaml", + "Summer Nights": "summer-nights.yaml", + "Summer Nights Lullaby": "summer-nights-lullaby.yaml", + "Summer Palenight": "summer-palenight.yaml", + "Summercamp": "summercamp.yaml", + "SummerRelax": "summerrelax.yaml", + "sunbather": "sunbather.yaml", + "SunilCode Dark Soothing (Blue Light Reduced)": "sunilcode-dark-soothing-blue-light-reduced.yaml", + "Sunny": "sunny.yaml", + "Sunset Beach Dark": "sunset-beach-dark.yaml", + "Sunset Beach Light": "sunset-beach-light.yaml", + "Sunset Boulevard": "sunset-boulevard.yaml", + "Sunset Noir": "sunset-noir.yaml", + "Sunset serenade": "sunset-serenade.yaml", + "Sunset theme": "sunset-theme.yaml", + "sunsplash-monodark": "sunsplash-monodark.yaml", + "super": "super.yaml", + "Super Dark Cyberpunk Green": "super-dark-cyberpunk-green.yaml", + "Super Dark Cyberpunk Grey": "super-dark-cyberpunk-grey.yaml", + "Super Dark Cyberpunk Purple": "super-dark-cyberpunk-purple.yaml", + "super-contrast": "super-contrast.yaml", + "super-light": "super-light.yaml", + "SuperBright": "superbright.yaml", + "Superman Theme": "superman-theme.yaml", + "Supernova": "supernova.yaml", + "Surreal": "surreal.yaml", + "Susuwatari": "susuwatari.yaml", + "Svelte 5 theme": "svelte-5-theme.yaml", + "Sveltesse Black": "sveltesse-black.yaml", + "Sveltesse Dark": "sveltesse-dark.yaml", + "Sveltesse Dark Soft": "sveltesse-dark-soft.yaml", + "Sveltesse Light": "sveltesse-light.yaml", + "Sveltesse Light Soft": "sveltesse-light-soft.yaml", + "SW: Tatooine": "sw-tatooine.yaml", + "SW61": "sw61.yaml", + "Swablu": "swablu.yaml", + "swaminarayan": "swaminarayan.yaml", + "swamp-color-theme": "swamp-color-theme.yaml", + "Sweet Lemon": "sweet-lemon.yaml", + "Sweet Pascal": "sweet-pascal.yaml", + "sweet-vscode": "sweet-vscode.yaml", + "sweetdracula monokai": "sweetdracula-monokai.yaml", + "Swnb Palenight Theme": "swnb-palenight-theme.yaml", + "syl black": "syl-black.yaml", + "syl chocolate": "syl-chocolate.yaml", + "syl forest": "syl-forest.yaml", + "syl ice": "syl-ice.yaml", + "syl plum": "syl-plum.yaml", + "syl shadow": "syl-shadow.yaml", + "Syntax Palette": "syntax-palette.yaml", + "Synthe": "synthe.yaml", + "Synthesis": "synthesis.yaml", + "Synthor Dark - Fork": "synthor-dark-fork.yaml", + "Synthwave": "synthwave.yaml", + "Synthwave '84 - CSAV edition": "synthwave-84-csav-edition.yaml", + "Synthwave 2077": "synthwave-2077.yaml", + "Synthwave 84": "synthwave-84.yaml", + "Synthwave Alpha": "synthwave-alpha.yaml", + "SynthWave Material Ansi 16": "synthwave-material-ansi-16.yaml", + "synthy": "synthy.yaml", + "Sypher": "sypher.yaml", + "syrinx": "syrinx.yaml", + "sys1": "sys1.yaml", + "sysop": "sysop.yaml", + "T-Theme": "t-theme.yaml", + "T3chDad Darkside - Fork": "t3chdad-darkside-fork.yaml", + "t3nsor-solo-leveling": "t3nsor-solo-leveling.yaml", + "TabyCord": "tabycord.yaml", + "Taco Syntax": "taco-syntax.yaml", + "tahigh": "tahigh.yaml", + "Taiga": "taiga.yaml", + "Tail Dark Theme": "tail-dark-theme.yaml", + "Tailwind": "tailwind.yaml", + "Tailwind - Dark": "tailwind-dark.yaml", + "Tailwind - Darkest": "tailwind-darkest.yaml", + "Tailwind Amber Dark": "tailwind-amber-dark.yaml", + "Tailwind Amber Light": "tailwind-amber-light.yaml", + "Tailwind Blue Dark": "tailwind-blue-dark.yaml", + "Tailwind Blue Light": "tailwind-blue-light.yaml", + "Tailwind Breeze": "tailwind-breeze.yaml", + "Tailwind Cyan Dark": "tailwind-cyan-dark.yaml", + "Tailwind Cyan Light": "tailwind-cyan-light.yaml", + "Tailwind Emerald Dark": "tailwind-emerald-dark.yaml", + "Tailwind Emerald Light": "tailwind-emerald-light.yaml", + "Tailwind Fuchsia Dark": "tailwind-fuchsia-dark.yaml", + "Tailwind Fuchsia Light": "tailwind-fuchsia-light.yaml", + "Tailwind Gray Dark": "tailwind-gray-dark.yaml", + "Tailwind Gray Light": "tailwind-gray-light.yaml", + "Tailwind Green Dark": "tailwind-green-dark.yaml", + "Tailwind Green Light": "tailwind-green-light.yaml", + "Tailwind Indigo Dark": "tailwind-indigo-dark.yaml", + "Tailwind Indigo Light": "tailwind-indigo-light.yaml", + "Tailwind Lime Dark": "tailwind-lime-dark.yaml", + "Tailwind Lime Light": "tailwind-lime-light.yaml", + "Tailwind Moon": "tailwind-moon.yaml", + "Tailwind Moon Blue": "tailwind-moon-blue.yaml", + "Tailwind Moon Grey": "tailwind-moon-grey.yaml", + "Tailwind Neutral Dark": "tailwind-neutral-dark.yaml", + "Tailwind Neutral Light": "tailwind-neutral-light.yaml", + "Tailwind Orange Dark": "tailwind-orange-dark.yaml", + "Tailwind Orange Light": "tailwind-orange-light.yaml", + "Tailwind Pink Dark": "tailwind-pink-dark.yaml", + "Tailwind Pink Light": "tailwind-pink-light.yaml", + "Tailwind Purple Dark": "tailwind-purple-dark.yaml", + "Tailwind Purple Light": "tailwind-purple-light.yaml", + "Tailwind Red Dark": "tailwind-red-dark.yaml", + "Tailwind Red Light": "tailwind-red-light.yaml", + "Tailwind Rose Dark": "tailwind-rose-dark.yaml", + "Tailwind Rose Light": "tailwind-rose-light.yaml", + "Tailwind Sky Dark": "tailwind-sky-dark.yaml", + "Tailwind Sky Light": "tailwind-sky-light.yaml", + "Tailwind Slate Dark": "tailwind-slate-dark.yaml", + "Tailwind Slate Light": "tailwind-slate-light.yaml", + "Tailwind Stone Dark": "tailwind-stone-dark.yaml", + "Tailwind Stone Light": "tailwind-stone-light.yaml", + "Tailwind Teal Dark": "tailwind-teal-dark.yaml", + "Tailwind Teal Light": "tailwind-teal-light.yaml", + "Tailwind Violet Dark": "tailwind-violet-dark.yaml", + "Tailwind Violet Light": "tailwind-violet-light.yaml", + "Tailwind Yellow Dark": "tailwind-yellow-dark.yaml", + "Tailwind Yellow Light": "tailwind-yellow-light.yaml", + "Tailwind Zinc Dark": "tailwind-zinc-dark.yaml", + "Tailwind Zinc Light": "tailwind-zinc-light.yaml", + "Taipei Night": "taipei-night.yaml", + "Takenawa": "takenawa.yaml", + "Takenawa - modified": "takenawa-modified.yaml", + "tame": "tame.yaml", + "tame-contrast": "tame-contrast.yaml", + "tame-light": "tame-light.yaml", + "Tamil Nadu - Temple Land": "tamil-nadu-temple-land.yaml", + "Tan Jade": "tan-jade.yaml", + "Tangere Dark": "tangere-dark.yaml", + "Tangere Light": "tangere-light.yaml", + "tango-plus": "tango-plus.yaml", + "Tango+": "tango.yaml", + "Tanuki": "tanuki.yaml", + "Tao theme": "tao-theme.yaml", + "taquito-darker": "taquito-darker.yaml", + "Taquito-Lighter": "taquito-lighter.yaml", + "Tara-Theme-Carbon": "tara-theme-carbon.yaml", + "Tara-Theme-Carbon-High-Contrast": "tara-theme-carbon-high-contrast.yaml", + "Tara-Theme-Deepforest": "tara-theme-deepforest.yaml", + "Tara-Theme-Graphene": "tara-theme-graphene.yaml", + "Tara-Theme-Ocean": "tara-theme-ocean.yaml", + "Tara-Theme-Palenight": "tara-theme-palenight.yaml", + "Tara-Theme-Teal": "tara-theme-teal.yaml", + "TaraMandal Aurora": "taramandal-aurora.yaml", + "TaraMandal Dark": "taramandal-dark.yaml", + "TaraMandal True Cream": "taramandal-true-cream.yaml", + "Tasmania Dark": "tasmania-dark.yaml", + "Tasmania Light": "tasmania-light.yaml", + "Taurus": "taurus.yaml", + "TBFox Theme": "tbfox-theme.yaml", + "TBFox Theme Light": "tbfox-theme-light.yaml", + "Tbs-theme": "tbs-theme.yaml", + "Tea Leaves": "tea-leaves.yaml", + "Teags": "teags.yaml", + "teal": "teal.yaml", + "Teal Crow Light": "teal-crow-light.yaml", + "Tealicious": "tealicious.yaml", + "tealy": "tealy.yaml", + "Team Pastel Colors Theme": "team-pastel-colors-theme.yaml", + "Tearz": "tearz.yaml", + "TechRazor Pro": "techrazor-pro.yaml", + "TechStudent10": "techstudent10.yaml", + "TechSwahili Color Theme": "techswahili-color-theme.yaml", + "TechSwahili Deep": "techswahili-deep.yaml", + "TechSwahili Modern Dark": "techswahili-modern-dark.yaml", + "Tecoma Theme": "tecoma-theme.yaml", + "TelaX": "telax.yaml", + "telescope": "telescope.yaml", + "Telescope": "telescope.yaml", + "Telescope - Fork": "telescope-fork.yaml", + "Tema dos cria": "tema-dos-cria.yaml", + "tema felipao": "tema-felipao.yaml", + "tema-dark-nero": "tema-dark-nero.yaml", + "Teneblattinus": "teneblattinus.yaml", + "Tenebris": "tenebris.yaml", + "Terafox": "terafox.yaml", + "Term": "term.yaml", + "Terminal": "terminal.yaml", + "TerraceCat": "terracecat.yaml", + "Terrarium Minimal (Dark)": "terrarium-minimal-dark.yaml", + "Terrarium Minimal (Light)": "terrarium-minimal-light.yaml", + "Terrorboy-dark": "terrorboy-dark.yaml", + "tesselate": "tesselate.yaml", + "Tesseract Dark": "tesseract-dark.yaml", + "Test": "test.yaml", + "tetra": "tetra.yaml", + "tetra-contrast": "tetra-contrast.yaml", + "tetra-light": "tetra-light.yaml", + "Teutobourg": "teutobourg.yaml", + "textmate.rstheme": "textmate-rstheme.yaml", + "Thanatos": "thanatos.yaml", + "ThatDataPurple": "thatdatapurple.yaml", + "The Best Theme Ever": "the-best-theme-ever.yaml", + "The Dark Stove": "the-dark-stove.yaml", + "The Digital Life": "the-digital-life.yaml", + "The druid": "the-druid.yaml", + "The Empire": "the-empire.yaml", + "The End Of Development": "the-end-of-development.yaml", + "The Flying Dutchman": "the-flying-dutchman.yaml", + "The Flying Dutchman High Contrast": "the-flying-dutchman-high-contrast.yaml", + "The Flying Dutchman Soft": "the-flying-dutchman-soft.yaml", + "The Occult <-->": "the-occult.yaml", + "The One Theme": "the-one-theme.yaml", + "The Only Tolerable Light Theme": "the-only-tolerable-light-theme.yaml", + "The Theme": "the-theme.yaml", + "the_gentleman": "the-gentleman.yaml", + "the-fato-dark": "the-fato-dark.yaml", + "the-orchid-dark": "the-orchid-dark.yaml", + "the-orchid-light": "the-orchid-light.yaml", + "the-orchid-soft": "the-orchid-soft.yaml", + "theAIsphere-dark": "theaisphere-dark.yaml", + "theAIsphere-light": "theaisphere-light.yaml", + "TheBestThemeAlive": "thebestthemealive.yaml", + "TheDarkerOne": "thedarkerone.yaml", + "Themarro": "themarro.yaml", + "Themarro Dark Contrast": "themarro-dark-contrast.yaml", + "Themarro David Remix": "themarro-david-remix.yaml", + "theme": "theme.yaml", + "Theme": "theme.yaml", + "Thème Dark Avril - Vert Printemps": "th-me-dark-avril-vert-printemps.yaml", + "Thème Dark Janvier - Bleu Foncé": "th-me-dark-janvier-bleu-fonc.yaml", + "Thème Dark Juillet - Contraste Élevé": "th-me-dark-juillet-contraste-lev.yaml", + "Thème Dark Juin - High Contrast": "th-me-dark-juin-high-contrast.yaml", + "Thème Dark Septembre - Contraste Élevé": "th-me-dark-septembre-contraste-lev.yaml", + "Theme For Codes - Dark": "theme-for-codes-dark.yaml", + "Theme For Codes - Light": "theme-for-codes-light.yaml", + "Thème High Contrast Janvier - Révisé": "th-me-high-contrast-janvier-r-vis.yaml", + "Theme One": "theme-one.yaml", + "Thème Sombre d'Automne": "th-me-sombre-d-automne.yaml", + "Theme_stick_green_dark": "theme-stick-green-dark.yaml", + "theme-bear": "theme-bear.yaml", + "theme-joey": "theme-joey.yaml", + "theme-mk 1 green": "theme-mk-1-green.yaml", + "theme-mk rebuilt": "theme-mk-rebuilt.yaml", + "theme-nickel": "theme-nickel.yaml", + "Theme-Y-Random": "theme-y-random.yaml", + "Theme³": "theme.yaml", + "Theme³ Dark": "theme-dark.yaml", + "ThemeDarker": "themedarker.yaml", + "ThemeFramek": "themeframek.yaml", + "themegreen": "themegreen.yaml", + "themename": "themename.yaml", + "Themenis": "themenis.yaml", + "ThemeO": "themeo.yaml", + "ThemePurple": "themepurple.yaml", + "Themer Dark": "themer-dark.yaml", + "Themer Light": "themer-light.yaml", + "Themin - Mint": "themin-mint.yaml", + "Theo-Swarg-Dark": "theo-swarg-dark.yaml", + "ThinkStorm": "thinkstorm.yaml", + "Thore Blue": "thore-blue.yaml", + "Thorn": "thorn.yaml", + "Thoughtworks Style Theme": "thoughtworks-style-theme.yaml", + "Thra": "thra.yaml", + "threedark": "threedark.yaml", + "Thunder Focus": "thunder-focus.yaml", + "Thunder Remains Unseen": "thunder-remains-unseen.yaml", + "thxdude-theme": "thxdude-theme.yaml", + "Thyme21g": "thyme21g.yaml", + "Thynaptic Dark (Base)": "thynaptic-dark-base.yaml", + "Thynaptic Dim (Base)": "thynaptic-dim-base.yaml", + "Thynaptic Pro": "thynaptic-pro.yaml", + "Thynaptic Sand (Base)": "thynaptic-sand-base.yaml", + "Thynaptic Sand Dark": "thynaptic-sand-dark.yaml", + "tickle": "tickle.yaml", + "tickle-contrast": "tickle-contrast.yaml", + "tickle-light": "tickle-light.yaml", + "tickle-refresh": "tickle-refresh.yaml", + "Tidelight Contrast": "tidelight-contrast.yaml", + "Tidelight Contrast (Light)": "tidelight-contrast-light.yaml", + "Tidelight Dawn": "tidelight-dawn.yaml", + "Tidelight Daybreak": "tidelight-daybreak.yaml", + "Tidelight Deep": "tidelight-deep.yaml", + "Tidelight Dusk": "tidelight-dusk.yaml", + "Tidelight Fog": "tidelight-fog.yaml", + "Tidelight High Noon": "tidelight-high-noon.yaml", + "Tidelight Midnight": "tidelight-midnight.yaml", + "Tidelight Shore": "tidelight-shore.yaml", + "tiktok": "tiktok.yaml", + "Tim's Experiments Dark": "tim-s-experiments-dark.yaml", + "Timir": "timir.yaml", + "Timu macOS dark Theme": "timu-macos-dark-theme.yaml", + "Timu macOS light Theme": "timu-macos-light-theme.yaml", + "Timu Spacegrey Theme": "timu-spacegrey-theme.yaml", + "Tinacious Design Syntax": "tinacious-design-syntax.yaml", + "Tiniri Dark": "tiniri-dark.yaml", + "Tiniri Light": "tiniri-light.yaml", + "Tiny Light": "tiny-light.yaml", + "Titillating Midnight": "titillating-midnight.yaml", + "Titillating Sunset": "titillating-sunset.yaml", + "Tlapalli 00: Obsidian": "tlapalli-00-obsidian.yaml", + "Tlapalli 01: Gold": "tlapalli-01-gold.yaml", + "Tlapalli 02: Turquoise": "tlapalli-02-turquoise.yaml", + "Tlapalli 03: Quartz": "tlapalli-03-quartz.yaml", + "Tlapalli 04: Lapis Lazuli": "tlapalli-04-lapis-lazuli.yaml", + "Tlapalli 05: Amethyst": "tlapalli-05-amethyst.yaml", + "Tlapalli 06: Jade": "tlapalli-06-jade.yaml", + "Tlapalli 07: Fire Opal": "tlapalli-07-fire-opal.yaml", + "Tlapalli l-00: Obsidian Light": "tlapalli-l-00-obsidian-light.yaml", + "Tlapalli l-01: Gold Light": "tlapalli-l-01-gold-light.yaml", + "Tlapalli l-02: Turquoise Light": "tlapalli-l-02-turquoise-light.yaml", + "Tlapalli l-03: Quartz Light": "tlapalli-l-03-quartz-light.yaml", + "Tlapalli l-04: Lapis Lazuli Light": "tlapalli-l-04-lapis-lazuli-light.yaml", + "Tlapalli l-05: Amethyst Light": "tlapalli-l-05-amethyst-light.yaml", + "Tlapalli l-06: Jade Light": "tlapalli-l-06-jade-light.yaml", + "Tlapalli l-07: Fire Opal Light": "tlapalli-l-07-fire-opal-light.yaml", + "tm2rd3": "tm2rd3.yaml", + "tnove-dark-theme": "tnove-dark-theme.yaml", + "Tobirama Water Style": "tobirama-water-style.yaml", + "Tokito Inspired": "tokito-inspired.yaml", + "tokv7": "tokv7.yaml", + "Tokyo": "tokyo.yaml", + "Tokyo (Dark)": "tokyo-dark.yaml", + "Tokyo (Light)": "tokyo-light.yaml", + "Tokyo Dark": "tokyo-dark.yaml", + "Tokyo Ghosts Dark": "tokyo-ghosts-dark.yaml", + "Tokyo Ghosts Light": "tokyo-ghosts-light.yaml", + "Tokyo Gogh": "tokyo-gogh.yaml", + "Tokyo Gogh Alt": "tokyo-gogh-alt.yaml", + "Tokyo Lights": "tokyo-lights.yaml", + "Tokyo Midnight": "tokyo-midnight.yaml", + "Tokyo Modern": "tokyo-modern.yaml", + "Tokyo Night": "tokyo-night.yaml", + "Tokyo Night Blackout": "tokyo-night-blackout.yaml", + "Tokyo Night Bright": "tokyo-night-bright.yaml", + "Tokyo Night Dark": "tokyo-night-dark.yaml", + "Tokyo Night Equalizer": "tokyo-night-equalizer.yaml", + "Tokyo Night Light": "tokyo-night-light.yaml", + "Tokyo Night nv": "tokyo-night-nv.yaml", + "Tokyo Night Pure": "tokyo-night-pure.yaml", + "Tokyo Night Storm": "tokyo-night-storm.yaml", + "Tokyo Night Void": "tokyo-night-void.yaml", + "Tokyo Panda": "tokyo-panda.yaml", + "tokyo-dive": "tokyo-dive.yaml", + "tokyoNIGHT": "tokyonight.yaml", + "TokyoNight Moon (Lazy)": "tokyonight-moon-lazy.yaml", + "Tol": "tol.yaml", + "Tomorrow Night Bright (R Classic)": "tomorrow-night-bright-r-classic.yaml", + "Tomorrow Night IJ": "tomorrow-night-ij.yaml", + "Tomorrow Night VS": "tomorrow-night-vs.yaml", + "TomorrowMyst": "tomorrowmyst.yaml", + "tonic": "tonic.yaml", + "tonic-contrast": "tonic-contrast.yaml", + "tonic-light": "tonic-light.yaml", + "TooDark": "toodark.yaml", + "Topic: The leader": "topic-the-leader.yaml", + "Tora": "tora.yaml", + "torque": "torque.yaml", + "Torte Vim": "torte-vim.yaml", + "Total Lunar Eclipse": "total-lunar-eclipse.yaml", + "total-black-theme": "total-black-theme.yaml", + "Totow's Thème": "totow-s-th-me.yaml", + "Toxic Waste": "toxic-waste.yaml", + "toxic-color-theme": "toxic-color-theme.yaml", + "Toy Chest": "toy-chest.yaml", + "Tranquillity-theme": "tranquillity-theme.yaml", + "Trans Pride Light (Naomi)": "trans-pride-light-naomi.yaml", + "Transylvania": "transylvania.yaml", + "Triad Dragon": "triad-dragon.yaml", + "tribal": "tribal.yaml", + "tribal-contrast": "tribal-contrast.yaml", + "tribal-light": "tribal-light.yaml", + "TriOptimized": "trioptimized.yaml", + "Tristan": "tristan.yaml", + "Triumph": "triumph.yaml", + "Triumph v2": "triumph-v2.yaml", + "tron": "tron.yaml", + "Tron-Ares": "tron-ares.yaml", + "tron-contrast": "tron-contrast.yaml", + "tron-light": "tron-light.yaml", + "trsm-night-eyes": "trsm-night-eyes.yaml", + "True Dark": "true-dark.yaml", + "trueAmber": "trueamber.yaml", + "Tsuki": "tsuki.yaml", + "tsukiroku dark": "tsukiroku-dark.yaml", + "Tsukuyomi (Light)": "tsukuyomi-light.yaml", + "Tsukuyomi (No Italics)": "tsukuyomi-no-italics.yaml", + "Tsumiki Theme": "tsumiki-theme.yaml", + "tTheme": "ttheme.yaml", + "Tudoroxo": "tudoroxo.yaml", + "Tundra Dusk": "tundra-dusk.yaml", + "Turbo": "turbo.yaml", + "Turbo C 3.0 Borland Style": "turbo-c-3-0-borland-style.yaml", + "turnip": "turnip.yaml", + "turnip-contrast": "turnip-contrast.yaml", + "turnip-light": "turnip-light.yaml", + "Turquesa/bege": "turquesa-bege.yaml", + "Tutilabs Theme": "tutilabs-theme.yaml", + "TW40 - Gigi": "tw40-gigi.yaml", + "tweed": "tweed.yaml", + "tweed-contrast": "tweed-contrast.yaml", + "tweed-light": "tweed-light.yaml", + "Twentyfour": "twentyfour.yaml", + "Twilight": "twilight.yaml", + "Twilight Cosmos": "twilight-cosmos.yaml", + "Twilight Pro": "twilight-pro.yaml", + "Twilight Sage": "twilight-sage.yaml", + "TwilightSparkle": "twilightsparkle.yaml", + "Twilite": "twilite.yaml", + "Twilite (Darker)": "twilite-darker.yaml", + "Twin Black": "twin-black.yaml", + "Twin Blue": "twin-blue.yaml", + "Two Firewatch": "two-firewatch.yaml", + "TwoDark": "twodark.yaml", + "Tycho Crater": "tycho-crater.yaml", + "tyh-theme-dark": "tyh-theme-dark.yaml", + "TypeDark Magenta": "typedark-magenta.yaml", + "TypeDark Yellow": "typedark-yellow.yaml", + "Tyrell Corporation": "tyrell-corporation.yaml", + "Tyrian Night": "tyrian-night.yaml", + "Tyrone Neon - 24K Gold": "tyrone-neon-24k-gold.yaml", + "Ubuntu Dark": "ubuntu-dark.yaml", + "ui_color": "ui-color.yaml", + "ukiyo": "ukiyo.yaml", + "Ukiyo-e Aged Manuscript": "ukiyo-e-aged-manuscript.yaml", + "Ukiyo-e Manuscript": "ukiyo-e-manuscript.yaml", + "Ukiyo-Tone Asahi (Morning Sun)": "ukiyo-tone-asahi-morning-sun.yaml", + "Ukiyo-Tone Kachi-iro (Victory Color)": "ukiyo-tone-kachi-iro-victory-color.yaml", + "Ukiyo-Tone Karesansui (Dry Landscape)": "ukiyo-tone-karesansui-dry-landscape.yaml", + "Ukiyo-Tone Koke-Dera (Moss Temple)": "ukiyo-tone-koke-dera-moss-temple.yaml", + "Ukiyo-Tone Kuro-Sumi (Black Ink)": "ukiyo-tone-kuro-sumi-black-ink.yaml", + "Ukiyo-Tone Tasogare (Twilight)": "ukiyo-tone-tasogare-twilight.yaml", + "Ultima": "ultima.yaml", + "Ultima GWZ": "ultima-gwz.yaml", + "Ultra Instinct Mastered": "ultra-instinct-mastered.yaml", + "Ultra Instinct Mastered (Light)": "ultra-instinct-mastered-light.yaml", + "Ultra Instinct Sign": "ultra-instinct-sign.yaml", + "umbra": "umbra.yaml", + "Umi": "umi.yaml", + "UMP 45 / LEVA": "ump-45-leva.yaml", + "UnBlueLievable!": "unbluelievable.yaml", + "Undefined": "undefined.yaml", + "Under Theme": "under-theme.yaml", + "Underdark - Fork": "underdark-fork.yaml", + "Underdark v2": "underdark-v2.yaml", + "Understated (no-italics)": "understated-no-italics.yaml", + "Unicorn": "unicorn.yaml", + "Unicorn dark": "unicorn-dark.yaml", + "unicornio dark": "unicornio-dark.yaml", + "UniEye": "unieye.yaml", + "UniquezHD": "uniquezhd.yaml", + "UnitSmash": "unitsmash.yaml", + "Unity Theme": "unity-theme.yaml", + "Universe": "universe.yaml", + "Universe Gray Italic": "universe-gray-italic.yaml", + "Universe Italic": "universe-italic.yaml", + "Universe Purple Italic": "universe-purple-italic.yaml", + "Unlight v.2": "unlight-v-2.yaml", + "Untitled": "untitled.yaml", + "Untitled - Fork": "untitled-fork.yaml", + "Untitled - Fork - Fork": "untitled-fork-fork.yaml", + "UnyoDusk": "unyodusk.yaml", + "updog": "updog.yaml", + "updog light": "updog-light.yaml", + "Upward Dark (Focus Border On)": "upward-dark-focus-border-on.yaml", + "Upward Dark Legacy (Focus Border On)": "upward-dark-legacy-focus-border-on.yaml", + "Urara": "urara.yaml", + "Urban Couple": "urban-couple.yaml", + "Urban Forge": "urban-forge.yaml", + "Urban Glow": "urban-glow.yaml", + "user160": "user160.yaml", + "userscape": "userscape.yaml", + "userscape-contrast": "userscape-contrast.yaml", + "userscape-light": "userscape-light.yaml", + "uTheme": "utheme.yaml", + "utopia": "utopia.yaml", + "Uvadark - Rahul - Fork": "uvadark-rahul-fork.yaml", + "V01D Theme": "v01d-theme.yaml", + "V01D Theme alternative": "v01d-theme-alternative.yaml", + "v7": "v7.yaml", + "vaatu": "vaatu.yaml", + "Vagalume Dev": "vagalume-dev.yaml", + "VAGruvboxTheme-color-theme": "vagruvboxtheme-color-theme.yaml", + "Vague neovim Theme Extended": "vague-neovim-theme-extended.yaml", + "Vague neovim Theme Extended Light": "vague-neovim-theme-extended-light.yaml", + "Valary": "valary.yaml", + "valkthor-dark-theme": "valkthor-dark-theme.yaml", + "Valley Italic": "valley-italic.yaml", + "Valorant Theme - Darker": "valorant-theme-darker.yaml", + "Valorant Theme - Remasterd": "valorant-theme-remasterd.yaml", + "vampurr": "vampurr.yaml", + "Van Gogh Theme": "van-gogh-theme.yaml", + "Vanilla": "vanilla.yaml", + "vanilla-jade": "vanilla-jade.yaml", + "vapor": "vapor.yaml", + "Vapor": "vapor.yaml", + "Vaporizer Alice Dark": "vaporizer-alice-dark.yaml", + "Vaporizer Alice Light": "vaporizer-alice-light.yaml", + "Vaporizer Ava Light": "vaporizer-ava-light.yaml", + "Vaporizer Batman Dark 2022": "vaporizer-batman-dark-2022.yaml", + "Vaporizer Batman Dark Night": "vaporizer-batman-dark-night.yaml", + "Vaporizer Cloudy Light": "vaporizer-cloudy-light.yaml", + "Vaporizer Cobalt Dark": "vaporizer-cobalt-dark.yaml", + "Vaporizer Crescent Dark": "vaporizer-crescent-dark.yaml", + "Vaporizer Dark Blue Green": "vaporizer-dark-blue-green.yaml", + "Vaporizer Dark Cherry": "vaporizer-dark-cherry.yaml", + "Vaporizer Dark Coffee": "vaporizer-dark-coffee.yaml", + "Vaporizer Dark Cool 1": "vaporizer-dark-cool-1.yaml", + "Vaporizer Dark Cool 2": "vaporizer-dark-cool-2.yaml", + "Vaporizer Dark Cop": "vaporizer-dark-cop.yaml", + "Vaporizer Dark Cyber Neon 1": "vaporizer-dark-cyber-neon-1.yaml", + "Vaporizer Dark Cyber Neon 2": "vaporizer-dark-cyber-neon-2.yaml", + "Vaporizer Dark Cyber Neon 3": "vaporizer-dark-cyber-neon-3.yaml", + "Vaporizer Dark Ivy": "vaporizer-dark-ivy.yaml", + "Vaporizer Dark Joker": "vaporizer-dark-joker.yaml", + "Vaporizer Dark Matrix 1": "vaporizer-dark-matrix-1.yaml", + "Vaporizer Dark Monterey": "vaporizer-dark-monterey.yaml", + "Vaporizer Dark Painting": "vaporizer-dark-painting.yaml", + "Vaporizer Dark Pansy": "vaporizer-dark-pansy.yaml", + "Vaporizer Dark Stabilo": "vaporizer-dark-stabilo.yaml", + "Vaporizer Dark Turquoise": "vaporizer-dark-turquoise.yaml", + "Vaporizer Epic Red Dark": "vaporizer-epic-red-dark.yaml", + "Vaporizer Foncé Dark": "vaporizer-fonc-dark.yaml", + "Vaporizer Frozen Dark ": "vaporizer-frozen-dark.yaml", + "Vaporizer Golgi Dark": "vaporizer-golgi-dark.yaml", + "Vaporizer Half-Moon Dark": "vaporizer-half-moon-dark.yaml", + "Vaporizer Lemonade Light": "vaporizer-lemonade-light.yaml", + "Vaporizer Lemonade Solarized Light": "vaporizer-lemonade-solarized-light.yaml", + "Vaporizer Milk Light": "vaporizer-milk-light.yaml", + "Vaporizer Mini Blue Light": "vaporizer-mini-blue-light.yaml", + "Vaporizer Minimalism Light": "vaporizer-minimalism-light.yaml", + "Vaporizer Modern Light": "vaporizer-modern-light.yaml", + "Vaporizer Moon-Light Dark": "vaporizer-moon-light-dark.yaml", + "Vaporizer Phosphoric Blue": "vaporizer-phosphoric-blue.yaml", + "Vaporizer Purple Gray Dark": "vaporizer-purple-gray-dark.yaml", + "Vaporizer Soft Light": "vaporizer-soft-light.yaml", + "Vaporizer Splash Dark": "vaporizer-splash-dark.yaml", + "Vaporizer Turquoise Light": "vaporizer-turquoise-light.yaml", + "Vaporwave": "vaporwave.yaml", + "Vaquita": "vaquita.yaml", + "varlet-dark": "varlet-dark.yaml", + "Vase with Twelve Sunflowers": "vase-with-twelve-sunflowers.yaml", + "vasses-tricolor-theme": "vasses-tricolor-theme.yaml", + "vColdTheme": "vcoldtheme.yaml", + "Vegas Night Details Theme": "vegas-night-details-theme.yaml", + "vegetable": "vegetable.yaml", + "vegetable-contrast": "vegetable-contrast.yaml", + "vegetable-light": "vegetable-light.yaml", + "vegetation": "vegetation.yaml", + "Veil": "veil.yaml", + "Veiled": "veiled.yaml", + "Veist": "veist.yaml", + "Vela Spectrum Colorblind Light": "vela-spectrum-colorblind-light.yaml", + "Vela Spectrum Dark+": "vela-spectrum-dark.yaml", + "Vela Spectrum Dark+ Colorblind": "vela-spectrum-dark-colorblind.yaml", + "Vela Spectrum Dark+ Dimmed": "vela-spectrum-dark-dimmed.yaml", + "Vela Spectrum Dark+ Tritanopia": "vela-spectrum-dark-tritanopia.yaml", + "Vela Spectrum Dimmed Light": "vela-spectrum-dimmed-light.yaml", + "Vela Spectrum High Contrast": "vela-spectrum-high-contrast.yaml", + "Vela Spectrum High Contrast Light": "vela-spectrum-high-contrast-light.yaml", + "Vela Spectrum Light+": "vela-spectrum-light.yaml", + "Vela Spectrum Light+ Tritanopia": "vela-spectrum-light-tritanopia.yaml", + "Velourous": "velourous.yaml", + "Velvet Thunder": "velvet-thunder.yaml", + "velvet-chrome": "velvet-chrome.yaml", + "Venice Beach Sky": "venice-beach-sky.yaml", + "Venom Theme": "venom-theme.yaml", + "Vercel": "vercel.yaml", + "Vercel Light": "vercel-light.yaml", + "Verdantium": "verdantium.yaml", + "Verdure": "verdure.yaml", + "version 1.0.5": "version-1-0-5.yaml", + "Very Blue": "very-blue.yaml", + "very fast theme": "very-fast-theme.yaml", + "Vesper ++": "vesper.yaml", + "Vesper Golden": "vesper-golden.yaml", + "Vesper Purple Dark": "vesper-purple-dark.yaml", + "Vesper Purple Light": "vesper-purple-light.yaml", + "VHS80": "vhs80.yaml", + "Vi_Dark": "vi-dark.yaml", + "Vibe Dark Legacy": "vibe-dark-legacy.yaml", + "VibeColors Corporate Light": "vibecolors-corporate-light.yaml", + "VibeColors Dark": "vibecolors-dark.yaml", + "VibeColors Dynamic Dark": "vibecolors-dynamic-dark.yaml", + "VibeColors Dynamic Light": "vibecolors-dynamic-light.yaml", + "VibeColors Light": "vibecolors-light.yaml", + "VibeColors Minimal Light": "vibecolors-minimal-light.yaml", + "VibeColors Neon Dark": "vibecolors-neon-dark.yaml", + "VibeColors Ocean Dark": "vibecolors-ocean-dark.yaml", + "VibeColors Pastel Light": "vibecolors-pastel-light.yaml", + "VibeColors Retro Dark": "vibecolors-retro-dark.yaml", + "VibeColors Soft Dark": "vibecolors-soft-dark.yaml", + "VibeColors Sunset Light": "vibecolors-sunset-light.yaml", + "Vibes": "vibes.yaml", + "Vibra": "vibra.yaml", + "Vibrant Dark": "vibrant-dark.yaml", + "Vibrant Max": "vibrant-max.yaml", + "vibrant-abyss-vscode": "vibrant-abyss-vscode.yaml", + "Vice City Noir": "vice-city-noir.yaml", + "Vicious": "vicious.yaml", + "Victoria Dark": "victoria-dark.yaml", + "Victoria Light": "victoria-light.yaml", + "Video-Contrast": "video-contrast.yaml", + "VigerDark": "vigerdark.yaml", + "Vigikai": "vigikai.yaml", + "VIII-III-MMV": "viii-iii-mmv.yaml", + "Vikkie!!! Dark": "vikkie-dark.yaml", + "Vikkie!!! Light": "vikkie-light.yaml", + "villain-dark": "villain-dark.yaml", + "villain-light": "villain-light.yaml", + "Vim Dar11sdasdasd": "vim-dar11sdasdasd.yaml", + "Vim Dark Hard": "vim-dark-hard.yaml", + "Vim Dark Medium": "vim-dark-medium.yaml", + "Vim Dark Soft": "vim-dark-soft.yaml", + "Vim Light 1": "vim-light-1.yaml", + "Vim Light 2": "vim-light-2.yaml", + "Vim Light 3b": "vim-light-3b.yaml", + "Vim Light Hard": "vim-light-hard.yaml", + "Vim Light Medium": "vim-light-medium.yaml", + "Vim Light Soft": "vim-light-soft.yaml", + "Vim Night": "vim-night.yaml", + "vin theme": "vin-theme.yaml", + "vintage": "vintage.yaml", + "Vintage Rust Theme": "vintage-rust-theme.yaml", + "vintage-serene": "vintage-serene.yaml", + "Vinyl": "vinyl.yaml", + "violaceous": "violaceous.yaml", + "violaceous-contrast": "violaceous-contrast.yaml", + "violaceous-light": "violaceous-light.yaml", + "Violet Dream": "violet-dream.yaml", + "Violet Night": "violet-night.yaml", + "Violet Nova": "violet-nova.yaml", + "Viora": "viora.yaml", + "Viper Theme": "viper-theme.yaml", + "Vishwakarma Sunset Glow": "vishwakarma-sunset-glow.yaml", + "vision-colorblind": "vision-colorblind.yaml", + "vision-light-colorblind": "vision-light-colorblind.yaml", + "Visual Studio & Github Light Plus": "visual-studio-github-light-plus.yaml", + "Visual Studio Code Dark Theme": "visual-studio-code-dark-theme.yaml", + "VisualOS": "visualos.yaml", + "VitePress Theme Vite Dark": "vitepress-theme-vite-dark.yaml", + "Vitesse Black": "vitesse-black.yaml", + "Vitesse Dark": "vitesse-dark.yaml", + "Vitesse Dark Custom": "vitesse-dark-custom.yaml", + "Vitesse Dark Soft": "vitesse-dark-soft.yaml", + "Vitesse Dragon": "vitesse-dragon.yaml", + "Vitesse Dragon Dark": "vitesse-dragon-dark.yaml", + "Vitesse Green Theme": "vitesse-green-theme.yaml", + "Vitesse Light": "vitesse-light.yaml", + "Vitesse Light Soft": "vitesse-light-soft.yaml", + "Vitesse WebStorm Dark": "vitesse-webstorm-dark.yaml", + "vitrioleuse": "vitrioleuse.yaml", + "Vivid Blue": "vivid-blue.yaml", + "VividNord": "vividnord.yaml", + "Vivido Theme": "vivido-theme.yaml", + "vkt-theme": "vkt-theme.yaml", + "Void": "void.yaml", + "Void Iris": "void-iris.yaml", + "Void Script": "void-script.yaml", + "vøid-contrast": "v-id-contrast.yaml", + "vøid-soft": "v-id-soft.yaml", + "Voidbloom Quazar": "voidbloom-quazar.yaml", + "Voidbloom Singularity": "voidbloom-singularity.yaml", + "Voidwalker": "voidwalker.yaml", + "volatile": "volatile.yaml", + "volatile-contrast": "volatile-contrast.yaml", + "volatile-light": "volatile-light.yaml", + "volcanofr": "volcanofr.yaml", + "volskaya": "volskaya.yaml", + "Volt Dark": "volt-dark.yaml", + "Voodoo": "voodoo.yaml", + "Voraes": "voraes.yaml", + "vortex": "vortex.yaml", + "VOX AC30": "vox-ac30.yaml", + "voyager": "voyager.yaml", + "VS Code Deep F.lux": "vs-code-deep-f-lux.yaml", + "VS Code Deep F.lux - Fork - Fork": "vs-code-deep-f-lux-fork-fork.yaml", + "VS Code Next.Js": "vs-code-next-js.yaml", + "VS Ghoul": "vs-ghoul.yaml", + "vs-fleet": "vs-fleet.yaml", + "vsblue": "vsblue.yaml", + "VSC Military Style": "vsc-military-style.yaml", + "Vsc-Blue-theme": "vsc-blue-theme.yaml", + "vsc-minimalist-theme-oak": "vsc-minimalist-theme-oak.yaml", + "vsc-minimalist-theme-obsidian": "vsc-minimalist-theme-obsidian.yaml", + "vsc-minimalist-theme-odp": "vsc-minimalist-theme-odp.yaml", + "vsc-solarized-light": "vsc-solarized-light.yaml", + "VSCode Nofrils Dark": "vscode-nofrils-dark.yaml", + "VSCode Nofrils GitHub Light": "vscode-nofrils-github-light.yaml", + "VSCode Nofrils Gruvbox Dark": "vscode-nofrils-gruvbox-dark.yaml", + "VSCode Nofrils Gruvbox Light": "vscode-nofrils-gruvbox-light.yaml", + "VSCode Nofrils Light": "vscode-nofrils-light.yaml", + "VSCode Nofrils One Dark": "vscode-nofrils-one-dark.yaml", + "VSCode Nofrils One Light": "vscode-nofrils-one-light.yaml", + "VSCode Nofrils Sepia": "vscode-nofrils-sepia.yaml", + "VSCode Nofrils Tokyo Night": "vscode-nofrils-tokyo-night.yaml", + "VSCode Theme": "vscode-theme.yaml", + "vscode-bt-feynuus-color-theme": "vscode-bt-feynuus-color-theme.yaml", + "vscode-material-ui": "vscode-material-ui.yaml", + "vscode-pink-and-puple-theme": "vscode-pink-and-puple-theme.yaml", + "vscode-sublime-ish": "vscode-sublime-ish.yaml", + "VSCyberpunk 2077": "vscyberpunk-2077.yaml", + "VSMuted-color-theme": "vsmuted-color-theme.yaml", + "VSNordTheme-dark-contrast-color-theme": "vsnordtheme-dark-contrast-color-theme.yaml", + "VSNordTheme-light-color-theme": "vsnordtheme-light-color-theme.yaml", + "VSNordTheme-light-contrast-color-theme": "vsnordtheme-light-contrast-color-theme.yaml", + "VSTheme No Italics": "vstheme-no-italics.yaml", + "VSToolKit Theme Dark": "vstoolkit-theme-dark.yaml", + "VueJS Theme": "vuejs-theme.yaml", + "VulpoTheme": "vulpotheme.yaml", + "vxcode blush": "vxcode-blush.yaml", + "vxcode cream": "vxcode-cream.yaml", + "vxcode dark": "vxcode-dark.yaml", + "vxcode darker": "vxcode-darker.yaml", + "vxcode lavender": "vxcode-lavender.yaml", + "vxcode lime": "vxcode-lime.yaml", + "vxcode OLED": "vxcode-oled.yaml", + "W30": "w30.yaml", + "w40 Theme": "w40-theme.yaml", + "Walking in the dark - RED": "walking-in-the-dark-red.yaml", + "wallbash": "wallbash.yaml", + "Walloco Light Theme": "walloco-light-theme.yaml", + "walls-fill": "walls-fill.yaml", + "Wandering Mercenary": "wandering-mercenary.yaml", + "Wangyj Bright Black": "wangyj-bright-black.yaml", + "Wangyj Contrast Black": "wangyj-contrast-black.yaml", + "wangyj-film-black": "wangyj-film-black.yaml", + "wangyj-film-light": "wangyj-film-light.yaml", + "warlock": "warlock.yaml", + "warlock-contrast": "warlock-contrast.yaml", + "warlock-light": "warlock-light.yaml", + "Warm Black": "warm-black.yaml", + "Warm Orange - Enthusiasm & Creativity": "warm-orange-enthusiasm-creativity.yaml", + "Warm Orange Theme": "warm-orange-theme.yaml", + "warm-burnout-dark": "warm-burnout-dark.yaml", + "warm-burnout-light": "warm-burnout-light.yaml", + "Warmkai Pro": "warmkai-pro.yaml", + "waste": "waste.yaml", + "waste-contrast": "waste-contrast.yaml", + "waste-light": "waste-light.yaml", + "Water Grape": "water-grape.yaml", + "Waterbyte - Classic 2022 Light": "waterbyte-classic-2022-light.yaml", + "Watermelon": "watermelon.yaml", + "WaveFire": "wavefire.yaml", + "Waves": "waves.yaml", + "wDark Theme": "wdark-theme.yaml", + "webc-dark": "webc-dark.yaml", + "Webstorm Darcula Dark Theme": "webstorm-darcula-dark-theme.yaml", + "Webstorm IntelliJ Darcula Theme": "webstorm-intellij-darcula-theme.yaml", + "WebStorm Monokai": "webstorm-monokai.yaml", + "weiting_candycolor": "weiting-candycolor.yaml", + "West Bengal - Cultural Hub": "west-bengal-cultural-hub.yaml", + "What The Hell": "what-the-hell.yaml", + "wheel-color-theme": "wheel-color-theme.yaml", + "wheel-light-color-theme": "wheel-light-color-theme.yaml", + "Whiskey Coder Dark": "whiskey-coder-dark.yaml", + "Whiskey Coder Light": "whiskey-coder-light.yaml", + "White Shade Color": "white-shade-color.yaml", + "White Winter": "white-winter.yaml", + "white-blue-demo": "white-blue-demo.yaml", + "White-color-theme": "white-color-theme.yaml", + "White-Night-color-theme": "white-night-color-theme.yaml", + "Whiteboard": "whiteboard.yaml", + "WhiteSpace": "whitespace.yaml", + "Wick": "wick.yaml", + "Wicked": "wicked.yaml", + "Widgit Monokai": "widgit-monokai.yaml", + "Wiity Green": "wiity-green.yaml", + "Wiity Green Eye-friendly": "wiity-green-eye-friendly.yaml", + "Wild Flower": "wild-flower.yaml", + "wildcat": "wildcat.yaml", + "Wildtype": "wildtype.yaml", + "WildWest": "wildwest.yaml", + "Will-o'-Wisp Theme": "will-o-wisp-theme.yaml", + "willasm.emerald.sky": "willasm-emerald-sky.yaml", + "Willi-Style Darker": "willi-style-darker.yaml", + "Willi-Style Darkest": "willi-style-darkest.yaml", + "Willi-Style Dracula flavour": "willi-style-dracula-flavour.yaml", + "willow": "willow.yaml", + "Win XP Luna": "win-xp-luna.yaml", + "Win10": "win10.yaml", + "WinClassic": "winclassic.yaml", + "wind": "wind.yaml", + "Wind Dark Slate": "wind-dark-slate.yaml", + "Wind Dark Zinc": "wind-dark-zinc.yaml", + "Windows 95 Theme": "windows-95-theme.yaml", + "Windows NT": "windows-nt.yaml", + "Windows Xp Dark Luna": "windows-xp-dark-luna.yaml", + "Windu": "windu.yaml", + "Windwaker": "windwaker.yaml", + "Wine Garden": "wine-garden.yaml", + "Winter": "winter.yaml", + "Winter Pearl": "winter-pearl.yaml", + "WinterIsCoding": "winteriscoding.yaml", + "WinterIsCoding Gift": "winteriscoding-gift.yaml", + "wired": "wired.yaml", + "wired lighter": "wired-lighter.yaml", + "Wise Owl Material": "wise-owl-material.yaml", + "Wise Owl Material High Contrast": "wise-owl-material-high-contrast.yaml", + "Wise Owl Material Light": "wise-owl-material-light.yaml", + "Wisteria": "wisteria.yaml", + "Witch Elaina": "witch-elaina.yaml", + "witcher": "witcher.yaml", + "Witchy Dark": "witchy-dark.yaml", + "WL-Acid Wash": "wl-acid-wash.yaml", + "WL-Amber Monitor": "wl-amber-monitor.yaml", + "WL-Chrome Dreams": "wl-chrome-dreams.yaml", + "WL-Cosmic Drift": "wl-cosmic-drift.yaml", + "WL-Crystal Cave": "wl-crystal-cave.yaml", + "WL-Cyber Punk": "wl-cyber-punk.yaml", + "WL-Data Stream": "wl-data-stream.yaml", + "WL-Disco Ball": "wl-disco-ball.yaml", + "WL-Electric Dreams": "wl-electric-dreams.yaml", + "WL-Electric Sunset": "wl-electric-sunset.yaml", + "WL-Fusion Core": "wl-fusion-core.yaml", + "WL-Graffiti Wall": "wl-graffiti-wall.yaml", + "WL-Hyper Drive": "wl-hyper-drive.yaml", + "WL-Ink Splash": "wl-ink-splash.yaml", + "WL-Jade Temple": "wl-jade-temple.yaml", + "WL-Laser Grid": "wl-laser-grid.yaml", + "WL-Lava Lamp": "wl-lava-lamp.yaml", + "WL-Mainframe Blue": "wl-mainframe-blue.yaml", + "WL-Midnight Drive": "wl-midnight-drive.yaml", + "WL-Misty Mountain": "wl-misty-mountain.yaml", + "WL-Moon Phase": "wl-moon-phase.yaml", + "WL-Neon Cascade": "wl-neon-cascade.yaml", + "WL-Neon Sign": "wl-neon-sign.yaml", + "WL-Neon Tokyo": "wl-neon-tokyo.yaml", + "WL-Nova Burst": "wl-nova-burst.yaml", + "WL-Pastel Dream": "wl-pastel-dream.yaml", + "WL-Pixel Punch": "wl-pixel-punch.yaml", + "WL-Plasma Storm": "wl-plasma-storm.yaml", + "WL-Prism Break": "wl-prism-break.yaml", + "WL-Pulse Wave": "wl-pulse-wave.yaml", + "WL-Punch Tape": "wl-punch-tape.yaml", + "WL-Retro Arcade": "wl-retro-arcade.yaml", + "WL-Retro Future": "wl-retro-future.yaml", + "WL-Signal Wave": "wl-signal-wave.yaml", + "WL-Silk Road": "wl-silk-road.yaml", + "WL-Synthwave Rider": "wl-synthwave-rider.yaml", + "WL-Tape Deck": "wl-tape-deck.yaml", + "WL-Terminal Green": "wl-terminal-green.yaml", + "WL-Vacuum Glow": "wl-vacuum-glow.yaml", + "WL-Velvet Night": "wl-velvet-night.yaml", + "WL-Volt Surge": "wl-volt-surge.yaml", + "WL-Zen Twilight": "wl-zen-twilight.yaml", + "Wolves League Dark": "wolves-league-dark.yaml", + "Woodsmoke": "woodsmoke.yaml", + "Wookie": "wookie.yaml", + "word-color-theme": "word-color-theme.yaml", + "word-dark-theme": "word-dark-theme.yaml", + "Wordsmith Dark": "wordsmith-dark.yaml", + "Wordsmith Light": "wordsmith-light.yaml", + "wrkspace-theme": "wrkspace-theme.yaml", + "Wuthering Waves : Aemeath": "wuthering-waves-aemeath.yaml", + "Wuthering Waves : Aemeath (Dark)": "wuthering-waves-aemeath-dark.yaml", + "Wuthering Waves : Augusta": "wuthering-waves-augusta.yaml", + "Wuthering Waves : Augusta (Dark)": "wuthering-waves-augusta-dark.yaml", + "Wuthering Waves : Baizhi": "wuthering-waves-baizhi.yaml", + "Wuthering Waves : Baizhi (Dark)": "wuthering-waves-baizhi-dark.yaml", + "Wuthering Waves : Brant": "wuthering-waves-brant.yaml", + "Wuthering Waves : Brant (Dark)": "wuthering-waves-brant-dark.yaml", + "Wuthering Waves : Cantarella": "wuthering-waves-cantarella.yaml", + "Wuthering Waves : Cantarella (Dark)": "wuthering-waves-cantarella-dark.yaml", + "Wuthering Waves : Carlotta": "wuthering-waves-carlotta.yaml", + "Wuthering Waves : Carlotta (Dark)": "wuthering-waves-carlotta-dark.yaml", + "Wuthering Waves : Cartethyia": "wuthering-waves-cartethyia.yaml", + "Wuthering Waves : Cartethyia (Dark)": "wuthering-waves-cartethyia-dark.yaml", + "Wuthering Waves : Changli": "wuthering-waves-changli.yaml", + "Wuthering Waves : Changli (Dark)": "wuthering-waves-changli-dark.yaml", + "Wuthering Waves : Chisa": "wuthering-waves-chisa.yaml", + "Wuthering Waves : Chisa (Dark)": "wuthering-waves-chisa-dark.yaml", + "Wuthering Waves : Galbrena": "wuthering-waves-galbrena.yaml", + "Wuthering Waves : Galbrena (Dark)": "wuthering-waves-galbrena-dark.yaml", + "Wuthering Waves : Iuno": "wuthering-waves-iuno.yaml", + "Wuthering Waves : Iuno (Dark)": "wuthering-waves-iuno-dark.yaml", + "Wuthering Waves : Jinhsi": "wuthering-waves-jinhsi.yaml", + "Wuthering Waves : Lynae": "wuthering-waves-lynae.yaml", + "Wuthering Waves : Lynae (Dark)": "wuthering-waves-lynae-dark.yaml", + "Wuthering Waves : Mornye": "wuthering-waves-mornye.yaml", + "Wuthering Waves : Mornye (Dark)": "wuthering-waves-mornye-dark.yaml", + "Wuthering Waves : Roccia": "wuthering-waves-roccia.yaml", + "Wuthering Waves : Roccia (Dark)": "wuthering-waves-roccia-dark.yaml", + "Wuthering Waves : Rover": "wuthering-waves-rover.yaml", + "Wuthering Waves : Sanhua": "wuthering-waves-sanhua.yaml", + "Wuthering Waves : Sanhua (Dark)": "wuthering-waves-sanhua-dark.yaml", + "Wuthering Waves : Scar": "wuthering-waves-scar.yaml", + "Wuthering Waves : Scar (Dark)": "wuthering-waves-scar-dark.yaml", + "Wuthering Waves : Taoqi": "wuthering-waves-taoqi.yaml", + "Wuthering Waves : The Shorekeeper": "wuthering-waves-the-shorekeeper.yaml", + "Wuthering Waves : The Shorekeeper (Dark)": "wuthering-waves-the-shorekeeper-dark.yaml", + "Wuthering Waves : Verina": "wuthering-waves-verina.yaml", + "Wuthering Waves : Verina (Dark)": "wuthering-waves-verina-dark.yaml", + "Wuthering Waves : Yinlin": "wuthering-waves-yinlin.yaml", + "Wuthering Waves : Yinlin (Dark)": "wuthering-waves-yinlin-dark.yaml", + "Wuthering Waves : Zhezhi": "wuthering-waves-zhezhi.yaml", + "Wuthering Waves : Zhezhi (Dark)": "wuthering-waves-zhezhi-dark.yaml", + "Wye Black": "wye-black.yaml", + "Wye Dark": "wye-dark.yaml", + "Wye Dark Soft": "wye-dark-soft.yaml", + "Wye Light": "wye-light.yaml", + "Wye Light Soft": "wye-light-soft.yaml", + "Xaeon Dark": "xaeon-dark.yaml", + "xaidozy_Color": "xaidozy-color.yaml", + "Xanthron Light": "xanthron-light.yaml", + "xava-color-theme": "xava-color-theme.yaml", + "XCeoDark": "xceodark.yaml", + "xcode-dark": "xcode-dark.yaml", + "Xecoy Dark": "xecoy-dark.yaml", + "Xecoy Light": "xecoy-light.yaml", + "Xiali Vintage Rose Dark": "xiali-vintage-rose-dark.yaml", + "Xiali Vintage Rose Light": "xiali-vintage-rose-light.yaml", + "xis_one": "xis-one.yaml", + "XK Dark Catppuccin Mocha": "xk-dark-catppuccin-mocha.yaml", + "XK Dark Dracula": "xk-dark-dracula.yaml", + "XK Dark Gruvbox": "xk-dark-gruvbox.yaml", + "XK Dark Monokai Pro": "xk-dark-monokai-pro.yaml", + "XK Dark Tokyo Night": "xk-dark-tokyo-night.yaml", + "XK Light Catppuccin Latte": "xk-light-catppuccin-latte.yaml", + "XK Light GitHub": "xk-light-github.yaml", + "XK Light One": "xk-light-one.yaml", + "XK Light Rosé Pine": "xk-light-ros-pine.yaml", + "XK Light Solarized": "xk-light-solarized.yaml", + "xLumielVSCodeTheme": "xlumielvscodetheme.yaml", + "Xochil": "xochil.yaml", + "xotocode-dark": "xotocode-dark.yaml", + "xotopio": "xotopio.yaml", + "Xpyjs Black": "xpyjs-black.yaml", + "xresources": "xresources.yaml", + "xresources_bordered_dark": "xresources-bordered-dark.yaml", + "xresources_bordered_mixed": "xresources-bordered-mixed.yaml", + "xresources-bordered": "xresources-bordered.yaml", + "xrodev": "xrodev.yaml", + "xs": "xs.yaml", + "XSTheme": "xstheme.yaml", + "xThemis-Cyan": "xthemis-cyan.yaml", + "Xtree Gold": "xtree-gold.yaml", + "xViewDark": "xviewdark.yaml", + "XxHTML": "xxhtml.yaml", + "xxtereshko-light": "xxtereshko-light.yaml", + "xzadudu179": "xzadudu179.yaml", + "y3m": "y3m.yaml", + "yaast": "yaast.yaml", + "yagnesh": "yagnesh.yaml", + "yagomaia-theme": "yagomaia-theme.yaml", + "yalpha-dark-eris": "yalpha-dark-eris.yaml", + "Yami Blue": "yami-blue.yaml", + "Yanbaru Shadow": "yanbaru-shadow.yaml", + "Yarra Valley": "yarra-valley.yaml", + "Yaru": "yaru.yaml", + "Yaru Dark": "yaru-dark.yaml", + "Yaru Dark Grape": "yaru-dark-grape.yaml", + "Yaruna Aurora": "yaruna-aurora.yaml", + "Yaruna Forest": "yaruna-forest.yaml", + "Yaruna Midnight": "yaruna-midnight.yaml", + "Yaruna Nova": "yaruna-nova.yaml", + "Yaruna Palenight": "yaruna-palenight.yaml", + "yazbi": "yazbi.yaml", + "YD Dark": "yd-dark.yaml", + "YD Light": "yd-light.yaml", + "Ydrgzm LIGHT Theme": "ydrgzm-light-theme.yaml", + "Yelan": "yelan.yaml", + "Yellow Beryl": "yellow-beryl.yaml", + "Yellow purple theme": "yellow-purple-theme.yaml", + "Yellow-Green-Blue-Theme": "yellow-green-blue-theme.yaml", + "Yellow-ish": "yellow-ish.yaml", + "Yellowed": "yellowed.yaml", + "Yerba": "yerba.yaml", + "Yet Another Solarized Theme (Dark)": "yet-another-solarized-theme-dark.yaml", + "Yet Another Solarized Theme (Light)": "yet-another-solarized-theme-light.yaml", + "YharnizedTheme": "yharnizedtheme.yaml", + "yinloonga_python": "yinloonga-python.yaml", + "yitzchok": "yitzchok.yaml", + "yitzchok-contrast": "yitzchok-contrast.yaml", + "yitzchok-light": "yitzchok-light.yaml", + "ylw-dark-theme": "ylw-dark-theme.yaml", + "Yoda": "yoda.yaml", + "Yoda - Mystical Force": "yoda-mystical-force.yaml", + "Yodart": "yodart.yaml", + "Yohualli Eclipse": "yohualli-eclipse.yaml", + "Yohualli Lunaris": "yohualli-lunaris.yaml", + "Yohualli Nebulune": "yohualli-nebulune.yaml", + "Yohualli Penumbra": "yohualli-penumbra.yaml", + "Yoncé": "yonc.yaml", + "yondog-dark": "yondog-dark.yaml", + "Yotei": "yotei.yaml", + "yoth-theme-dark": "yoth-theme-dark.yaml", + "yoyo theme": "yoyo-theme.yaml", + "yoyo theme green": "yoyo-theme-green.yaml", + "ystheme": "ystheme.yaml", + "YTheme Dark": "ytheme-dark.yaml", + "yue-theme": "yue-theme.yaml", + "Yukinord": "yukinord.yaml", + "yule": "yule.yaml", + "yule-contrast": "yule-contrast.yaml", + "yule-light": "yule-light.yaml", + "yulon": "yulon.yaml", + "yum": "yum.yaml", + "Yurei Dark Theme": "yurei-dark-theme.yaml", + "Yuru": "yuru.yaml", + "yuru black": "yuru-black.yaml", + "yuyuko.vscode": "yuyuko-vscode.yaml", + "yuyuko.vscode ocean": "yuyuko-vscode-ocean.yaml", + "Z-DarkTheme": "z-darktheme.yaml", + "z3r0": "z3r0.yaml", + "Zach's Blue Theme": "zach-s-blue-theme.yaml", + "zacks": "zacks.yaml", + "zacks-contrast": "zacks-contrast.yaml", + "zacks-light": "zacks-light.yaml", + "zaher-color-theme": "zaher-color-theme.yaml", + "Zan": "zan.yaml", + "Zandromeda": "zandromeda.yaml", + "zap": "zap.yaml", + "Zathura": "zathura.yaml", + "ZBRA Dark": "zbra-dark.yaml", + "Zeal": "zeal.yaml", + "ZednosTheme v1": "zednostheme-v1.yaml", + "Zelda-Dark": "zelda-dark.yaml", + "zelzea": "zelzea.yaml", + "ZemarColorTheme": "zemarcolortheme.yaml", + "ZeMizer Grey": "zemizer-grey.yaml", + "Zen": "zen.yaml", + "Zen Dark": "zen-dark.yaml", + "Zen Mono": "zen-mono.yaml", + "Zen Sakura (Cherry Blossom)": "zen-sakura-cherry-blossom.yaml", + "zen-theme": "zen-theme.yaml", + "Zenbones Dark": "zenbones-dark.yaml", + "Zenbones Dark Stark": "zenbones-dark-stark.yaml", + "Zenbones Dark Warm": "zenbones-dark-warm.yaml", + "Zenbones Duckbones Dark": "zenbones-duckbones-dark.yaml", + "Zenbones Duckbones Dark Stark": "zenbones-duckbones-dark-stark.yaml", + "Zenbones Duckbones Dark Warm": "zenbones-duckbones-dark-warm.yaml", + "Zenbones Forestbones Dark": "zenbones-forestbones-dark.yaml", + "Zenbones Forestbones Dark Stark": "zenbones-forestbones-dark-stark.yaml", + "Zenbones Forestbones Dark Warm": "zenbones-forestbones-dark-warm.yaml", + "Zenbones Forestbones Light": "zenbones-forestbones-light.yaml", + "Zenbones Forestbones Light Bright": "zenbones-forestbones-light-bright.yaml", + "Zenbones Forestbones Light Dim": "zenbones-forestbones-light-dim.yaml", + "Zenbones Kanagawabones Dark": "zenbones-kanagawabones-dark.yaml", + "Zenbones Kanagawabones Dark Stark": "zenbones-kanagawabones-dark-stark.yaml", + "Zenbones Kanagawabones Dark Warm": "zenbones-kanagawabones-dark-warm.yaml", + "Zenbones Light": "zenbones-light.yaml", + "Zenbones Light Bright": "zenbones-light-bright.yaml", + "Zenbones Light Dim": "zenbones-light-dim.yaml", + "Zenbones Neobones Dark": "zenbones-neobones-dark.yaml", + "Zenbones Neobones Dark Stark": "zenbones-neobones-dark-stark.yaml", + "Zenbones Neobones Dark Warm": "zenbones-neobones-dark-warm.yaml", + "Zenbones Neobones Light": "zenbones-neobones-light.yaml", + "Zenbones Neobones Light Bright": "zenbones-neobones-light-bright.yaml", + "Zenbones Neobones Light Dim": "zenbones-neobones-light-dim.yaml", + "Zenbones Nordbones Dark": "zenbones-nordbones-dark.yaml", + "Zenbones Nordbones Dark Stark": "zenbones-nordbones-dark-stark.yaml", + "Zenbones Nordbones Dark Warm": "zenbones-nordbones-dark-warm.yaml", + "Zenbones Rosebones Dark": "zenbones-rosebones-dark.yaml", + "Zenbones Rosebones Dark Stark": "zenbones-rosebones-dark-stark.yaml", + "Zenbones Rosebones Dark Warm": "zenbones-rosebones-dark-warm.yaml", + "Zenbones Rosebones Light": "zenbones-rosebones-light.yaml", + "Zenbones Rosebones Light Bright": "zenbones-rosebones-light-bright.yaml", + "Zenbones Rosebones Light Dim": "zenbones-rosebones-light-dim.yaml", + "Zenbones Seoulbones Dark": "zenbones-seoulbones-dark.yaml", + "Zenbones Seoulbones Dark Stark": "zenbones-seoulbones-dark-stark.yaml", + "Zenbones Seoulbones Dark Warm": "zenbones-seoulbones-dark-warm.yaml", + "Zenbones Seoulbones Light": "zenbones-seoulbones-light.yaml", + "Zenbones Seoulbones Light Bright": "zenbones-seoulbones-light-bright.yaml", + "Zenbones Seoulbones Light Dim": "zenbones-seoulbones-light-dim.yaml", + "Zenbones Tokyobones Dark": "zenbones-tokyobones-dark.yaml", + "Zenbones Tokyobones Dark Stark": "zenbones-tokyobones-dark-stark.yaml", + "Zenbones Tokyobones Dark Warm": "zenbones-tokyobones-dark-warm.yaml", + "Zenbones Tokyobones Light": "zenbones-tokyobones-light.yaml", + "Zenbones Tokyobones Light Bright": "zenbones-tokyobones-light-bright.yaml", + "Zenbones Tokyobones Light Dim": "zenbones-tokyobones-light-dim.yaml", + "Zenbones Vimbones Light": "zenbones-vimbones-light.yaml", + "Zenbones Vimbones Light Bright": "zenbones-vimbones-light-bright.yaml", + "Zenbones Vimbones Light Dim": "zenbones-vimbones-light-dim.yaml", + "Zenbones Zenburned Dark": "zenbones-zenburned-dark.yaml", + "Zenbones Zenburned Dark Stark": "zenbones-zenburned-dark-stark.yaml", + "Zenbones Zenburned Dark Warm": "zenbones-zenburned-dark-warm.yaml", + "Zenbones Zenwritten Dark": "zenbones-zenwritten-dark.yaml", + "Zenbones Zenwritten Dark Stark": "zenbones-zenwritten-dark-stark.yaml", + "Zenbones Zenwritten Dark Warm": "zenbones-zenwritten-dark-warm.yaml", + "Zenbones Zenwritten Light": "zenbones-zenwritten-light.yaml", + "Zenbones Zenwritten Light Bright": "zenbones-zenwritten-light-bright.yaml", + "Zenbones Zenwritten Light Dim": "zenbones-zenwritten-light-dim.yaml", + "Zenbook UX534FTC White-Gold V1 Full Dark": "zenbook-ux534ftc-white-gold-v1-full-dark.yaml", + "Zenbook UX534FTC White-Gold V2.1.95": "zenbook-ux534ftc-white-gold-v2-1-95.yaml", + "Zenburn": "zenburn.yaml", + "Zene Dark Theme": "zene-dark-theme.yaml", + "Zeneth": "zeneth.yaml", + "ZenFlow Noir": "zenflow-noir.yaml", + "Zenith": "zenith.yaml", + "Zenith Aurora": "zenith-aurora.yaml", + "Zenith Dawn": "zenith-dawn.yaml", + "Zenith Dusk": "zenith-dusk.yaml", + "Zenith Forest": "zenith-forest.yaml", + "Zenith Midnight": "zenith-midnight.yaml", + "Zenith Neutral": "zenith-neutral.yaml", + "Zenith Ocean": "zenith-ocean.yaml", + "Zenith Rosé": "zenith-ros.yaml", + "Zenith Zen": "zenith-zen.yaml", + "Zenitria AMOLED": "zenitria-amoled.yaml", + "ZenML": "zenml.yaml", + "Zero [WIP]": "zero-wip.yaml", + "Zero's Solarized": "zero-s-solarized.yaml", + "Zeus Turquoise": "zeus-turquoise.yaml", + "Zeus Yelo": "zeus-yelo.yaml", + "zhangpengtao-black": "zhangpengtao-black.yaml", + "zhe-qi": "zhe-qi.yaml", + "Zhongli": "zhongli.yaml", + "zhxo'lt": "zhxo-lt.yaml", + "zhxo'red (experimental)": "zhxo-red-experimental.yaml", + "zhxo'st": "zhxo-st.yaml", + "zhxo'yll": "zhxo-yll.yaml", + "Zinc": "zinc.yaml", + "Zokugun Obsidium": "zokugun-obsidium.yaml", + "Zordon Colors": "zordon-colors.yaml", + "Zoren Breeze": "zoren-breeze.yaml", + "zTheme": "ztheme.yaml", + "Ztok": "ztok.yaml", + "Zunda dark": "zunda-dark.yaml", + "zux purple - minimal": "zux-purple-minimal.yaml", + "ZweL": "zwel.yaml", + "Zxxn": "zxxn.yaml", + "Zygomatic Blue": "zygomatic-blue.yaml", + "zyrotec": "zyrotec.yaml", + "ZzhTheme Dark": "zzhtheme-dark.yaml", + "ZzhTheme Light": "zzhtheme-light.yaml", + "米白色主题": ".yaml" +} diff --git a/themes/index.yaml b/themes/index.yaml new file mode 100644 index 00000000..4245725b --- /dev/null +++ b/themes/index.yaml @@ -0,0 +1,49 @@ +name: "index" +source: + marketplace_id: "sudoaugustin.vslook" + version: "0.3.2" + installs: 10350 + author: "Augustin Joseph" + repo: "https://github.com/sudoaugustin/vslook" + url: "https://marketplace.visualstudio.com/items?itemName=sudoaugustin.vslook" +colors: + bg: "#0F172A" + fg: "#FFFFFF" + black: "#334155" + red: "#E11D48" + green: "#059669" + yellow: "#D97706" + blue: "#2563EB" + magenta: "#C026D3" + cyan: "#0891B2" + white: "#94A3B8" + brightBlack: "#1E293B" + brightRed: "#FB7185" + brightGreen: "#34D399" + brightYellow: "#FBBF24" + brightBlue: "#0EA5E9" + brightMagenta: "#E879F9" + brightCyan: "#22D3EE" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "pink" + hue: 266 + contrast: + fg: 106.8 + black: 7.4 + red: 30.1 + green: 35.9 + yellow: 42.1 + blue: 25.7 + magenta: 29.5 + cyan: 36.7 + white: 50.6 + brightBlack: 0 + brightRed: 49.2 + brightGreen: 65.1 + brightYellow: 72.6 + brightBlue: 47.9 + brightMagenta: 53 + brightCyan: 68.5 + brightWhite: 91.4 diff --git a/themes/indielayer.yaml b/themes/indielayer.yaml new file mode 100644 index 00000000..89b9c100 --- /dev/null +++ b/themes/indielayer.yaml @@ -0,0 +1,49 @@ +name: "Indielayer" +source: + marketplace_id: "Indielayer.vscode-indielayer-theme" + version: "1.1.2" + installs: 230 + author: "Indielayer" + repo: "https://github.com/indielayer/vscode-indielayer-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Indielayer.vscode-indielayer-theme" +colors: + bg: "#222937" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 56.8 + black: 0 + red: 39.5 + green: 59.7 + yellow: 67.9 + blue: 38.9 + magenta: 42.5 + cyan: 51.9 + white: 80.4 + brightBlack: 32.9 + brightRed: 35.8 + brightGreen: 59.7 + brightYellow: 67.9 + brightBlue: 38.9 + brightMagenta: 10.1 + brightCyan: 51.9 + brightWhite: 80.4 diff --git a/themes/indigo-and-amaranth.yaml b/themes/indigo-and-amaranth.yaml new file mode 100644 index 00000000..914dfb2a --- /dev/null +++ b/themes/indigo-and-amaranth.yaml @@ -0,0 +1,49 @@ +name: "Indigo and Amaranth" +source: + marketplace_id: "es-purple-theme-help.better-purple-theme" + version: "0.0.2" + installs: 98 + author: "es-purple-theme-help" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=es-purple-theme-help.better-purple-theme" +colors: + bg: "#1E172C" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 298 + contrast: + fg: 79 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/indigo-ice.yaml b/themes/indigo-ice.yaml new file mode 100644 index 00000000..a2d7e585 --- /dev/null +++ b/themes/indigo-ice.yaml @@ -0,0 +1,49 @@ +name: "Indigo Ice" +source: + marketplace_id: "shariemakesart.indigo-ice-theme" + version: "0.1.1" + installs: 1032 + author: "shariemakesart" + repo: "https://github.com/SharieRhea/Indigo_Ice" + url: "https://marketplace.visualstudio.com/items?itemName=shariemakesart.indigo-ice-theme" +colors: + bg: "#08041D" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 75.5 + black: 0 + red: 27.6 + green: 53.8 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.9 diff --git a/themes/industrialcomplex.yaml b/themes/industrialcomplex.yaml new file mode 100644 index 00000000..2d048b02 --- /dev/null +++ b/themes/industrialcomplex.yaml @@ -0,0 +1,49 @@ +name: "IndustrialComplex" +source: + marketplace_id: "whyamidoingthis.mytheme" + version: "0.0.1" + installs: 61 + author: "whyamidoingthis" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=whyamidoingthis.mytheme" +colors: + bg: "#2A2A2A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 104 + black: 0 + red: 23.9 + green: 50.2 + yellow: 82.8 + blue: 24.6 + magenta: 26.9 + cyan: 44.7 + white: 87.2 + brightBlack: 19.2 + brightRed: 35.7 + brightGreen: 60.7 + brightYellow: 92.8 + brightBlue: 37.2 + brightMagenta: 42.5 + brightCyan: 52.6 + brightWhite: 87.2 diff --git a/themes/industry.yaml b/themes/industry.yaml new file mode 100644 index 00000000..323d9463 --- /dev/null +++ b/themes/industry.yaml @@ -0,0 +1,49 @@ +name: "Industry" +source: + marketplace_id: "SGS.industry-theme" + version: "1.2.4" + installs: 88 + author: "SGS" + repo: "https://github.com/sgsks/pj_industry_vscode_theme" + url: "https://marketplace.visualstudio.com/items?itemName=SGS.industry-theme" +colors: + bg: "#171716" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 74.7 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/infatuation.yaml b/themes/infatuation.yaml new file mode 100644 index 00000000..00fb91ca --- /dev/null +++ b/themes/infatuation.yaml @@ -0,0 +1,49 @@ +name: "Infatuation" +source: + marketplace_id: "PixelsInTheSky.infatuation" + version: "0.1.0" + installs: 9174 + author: "PixelsInTheSky" + repo: "https://github.com/Seytani/Infatuation-VS-Code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PixelsInTheSky.infatuation" +colors: + bg: "#2A2A2C" + fg: "#E3E3E3" + black: "#000000" + red: "#E73752" + green: "#ADFFA6" + yellow: "#FFE7AF" + blue: "#BB57FF" + magenta: "#46D2E8" + cyan: "#FF59A0" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#E41535" + brightGreen: "#70DE66" + brightYellow: "#F7D380" + brightBlue: "#CA7DFF" + brightMagenta: "#0ABAFF" + brightCyan: "#FFA3CA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 85.9 + black: 0 + red: 30.8 + green: 91.2 + yellow: 89.8 + blue: 35.5 + magenta: 65.6 + cyan: 43.3 + white: 104 + brightBlack: 19.2 + brightRed: 27.5 + brightGreen: 68.7 + brightYellow: 78.5 + brightBlue: 46.6 + brightMagenta: 55.4 + brightCyan: 64 + brightWhite: 104 diff --git a/themes/inferius.yaml b/themes/inferius.yaml new file mode 100644 index 00000000..6b69e434 --- /dev/null +++ b/themes/inferius.yaml @@ -0,0 +1,49 @@ +name: "inferius" +source: + marketplace_id: "inferigang.inferius" + version: "1.0.1" + installs: 216 + author: "inferigang" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=inferigang.inferius" +colors: + bg: "#202020" + fg: "#F5F5F5" + black: "#303030" + red: "#E6002C" + green: "#3CF084" + yellow: "#F0DE3C" + blue: "#3C84F0" + magenta: "#A13CF0" + cyan: "#22A3D6" + white: "#F5F5F5" + brightBlack: "#CBCBCB" + brightRed: "#FF5D7B" + brightGreen: "#8FED31" + brightYellow: "#FFF384" + brightBlue: "#3CBAF0" + brightMagenta: "#C06EFF" + brightCyan: "#3CF0C5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 99.2 + black: 0 + red: 29.4 + green: 78.2 + yellow: 83.1 + blue: 35.9 + magenta: 27.7 + cyan: 45.1 + white: 99.2 + brightBlack: 73 + brightRed: 44.5 + brightGreen: 79.4 + brightYellow: 95.9 + brightBlue: 56.8 + brightMagenta: 42.9 + brightCyan: 80.2 + brightWhite: 105.8 diff --git a/themes/infinitus.yaml b/themes/infinitus.yaml new file mode 100644 index 00000000..9dc37a9e --- /dev/null +++ b/themes/infinitus.yaml @@ -0,0 +1,49 @@ +name: "Infinitus" +source: + marketplace_id: "jayavelrajan.infinitus-dark" + version: "0.1.0" + installs: 239 + author: "Jaya Vel Rajan" + repo: "https://github.com/Jayavelrajan/Infinitus-vscode-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jayavelrajan.infinitus-dark" +colors: + bg: "#122133" + fg: "#B9CDDA" + black: "#344162" + red: "#FF4B91" + green: "#FFEAA7" + yellow: "#F5D491" + blue: "#FF6868" + magenta: "#86A7FC" + cyan: "#FF6868" + white: "#B9CDDA" + brightBlack: "#444A5E" + brightRed: "#FF4B91" + brightGreen: "#FFEAA7" + brightYellow: "#F5D491" + brightBlue: "#FF6868" + brightMagenta: "#86A7FC" + brightCyan: "#FF6868" + brightWhite: "#B9CDDA" +meta: + mode: "dark" + accent: "red" + hue: 254 + contrast: + fg: 72.3 + black: 0 + red: 42.2 + green: 92.5 + yellow: 80.7 + blue: 46.2 + magenta: 53.7 + cyan: 46.2 + white: 72.3 + brightBlack: 10 + brightRed: 42.2 + brightGreen: 92.5 + brightYellow: 80.7 + brightBlue: 46.2 + brightMagenta: 53.7 + brightCyan: 46.2 + brightWhite: 72.3 diff --git a/themes/infinity-64-blackboard-by-shingo-murata.yaml b/themes/infinity-64-blackboard-by-shingo-murata.yaml new file mode 100644 index 00000000..3152ec08 --- /dev/null +++ b/themes/infinity-64-blackboard-by-shingo-murata.yaml @@ -0,0 +1,49 @@ +name: "Infinity 64 Blackboard by Shingo Murata" +source: + marketplace_id: "markusrafferty.infinity-64-theme" + version: "5.0.0" + installs: 52 + author: "Markus Rafferty" + repo: "https://github.com/markusrafferty/infinity-64-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markusrafferty.infinity-64-theme" +colors: + bg: "#1A1A1A" + fg: "#DFDFDF" + black: "#333333" + red: "#FF7777" + green: "#BBFF77" + yellow: "#E5C07B" + blue: "#77BBFF" + magenta: "#FF77BB" + cyan: "#77BBBB" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#CC0000" + brightGreen: "#448800" + brightYellow: "#CC8800" + brightBlue: "#0044CC" + brightMagenta: "#CC00CC" + brightCyan: "#008888" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 85.9 + black: 0 + red: 50.8 + green: 93.9 + yellow: 70.2 + blue: 61.7 + magenta: 53.2 + cyan: 58 + white: 106.5 + brightBlack: 0 + brightRed: 23.9 + brightGreen: 30.1 + brightYellow: 44.6 + brightBlue: 14.9 + brightMagenta: 30.1 + brightCyan: 31.1 + brightWhite: 74.3 diff --git a/themes/infinity-64-whiteboard-by-shingo-murata.yaml b/themes/infinity-64-whiteboard-by-shingo-murata.yaml new file mode 100644 index 00000000..2158d1c7 --- /dev/null +++ b/themes/infinity-64-whiteboard-by-shingo-murata.yaml @@ -0,0 +1,49 @@ +name: "Infinity 64 Whiteboard by Shingo Murata" +source: + marketplace_id: "markusrafferty.infinity-64-theme" + version: "5.0.0" + installs: 52 + author: "Markus Rafferty" + repo: "https://github.com/markusrafferty/infinity-64-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markusrafferty.infinity-64-theme" +colors: + bg: "#F4F4F4" + fg: "#303030" + black: "#000000" + red: "#CC0000" + green: "#448800" + yellow: "#CC8800" + blue: "#0044CC" + magenta: "#CC00CC" + cyan: "#008888" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7777" + brightGreen: "#BBFF77" + brightYellow: "#E5C07B" + brightBlue: "#77BBFF" + brightMagenta: "#FF77BB" + brightCyan: "#77BBBB" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 93 + black: 99.5 + red: 70 + green: 63.6 + yellow: 49.3 + blue: 79.3 + magenta: 63.7 + cyan: 62.6 + white: 20.7 + brightBlack: 92.1 + brightRed: 43.2 + brightGreen: 0 + brightYellow: 24.6 + brightBlue: 32.8 + brightMagenta: 40.9 + brightCyan: 36.3 + brightWhite: 0 diff --git a/themes/infinity-dark-contrast.yaml b/themes/infinity-dark-contrast.yaml new file mode 100644 index 00000000..708cb607 --- /dev/null +++ b/themes/infinity-dark-contrast.yaml @@ -0,0 +1,49 @@ +name: "Infinity Dark Contrast" +source: + marketplace_id: "arthur404dev.thanos-theme" + version: "0.0.6" + installs: 6548 + author: "Arthur 404 dev" + repo: "https://github.com/thanos-theme/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=arthur404dev.thanos-theme" +colors: + bg: "#161926" + fg: "#B9C3D5" + black: "#1A1A1A" + red: "#FF206E" + green: "#58EBD7" + yellow: "#FABC2A" + blue: "#9D65FF" + magenta: "#00A1E4" + cyan: "#9D65FF" + white: "#C4C5B5" + brightBlack: "#625E4C" + brightRed: "#FF206E" + brightGreen: "#58EBD7" + brightYellow: "#FABC2A" + brightBlue: "#9D65FF" + brightMagenta: "#00A1E4" + brightCyan: "#9D65FF" + brightWhite: "#F6F6EF" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 68.7 + black: 0 + red: 38.1 + green: 80.1 + yellow: 71.1 + blue: 36.7 + magenta: 45.8 + cyan: 36.7 + white: 69.5 + brightBlack: 18.3 + brightRed: 38.1 + brightGreen: 80.1 + brightYellow: 71.1 + brightBlue: 36.7 + brightMagenta: 45.8 + brightCyan: 36.7 + brightWhite: 100.3 diff --git a/themes/infinity-night-theme.yaml b/themes/infinity-night-theme.yaml new file mode 100644 index 00000000..7485f7ad --- /dev/null +++ b/themes/infinity-night-theme.yaml @@ -0,0 +1,49 @@ +name: "Infinity Night Theme" +source: + marketplace_id: "AmmarDev.Infinity-night-theme" + version: "1.0.1" + installs: 107 + author: "Ammar Dev" + repo: "https://github.com/ammardevz/Infinity-Night-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AmmarDev.Infinity-night-theme" +colors: + bg: "#1D252C" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 245 + contrast: + fg: 77.7 + black: 0 + red: 25 + green: 51.2 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.2 + brightMagenta: 43.6 + brightCyan: 53.6 + brightWhite: 88.3 diff --git a/themes/infinity.yaml b/themes/infinity.yaml new file mode 100644 index 00000000..3041f808 --- /dev/null +++ b/themes/infinity.yaml @@ -0,0 +1,49 @@ +name: "Infinity" +source: + marketplace_id: "satvikvirmani.infinity-theme" + version: "0.0.1" + installs: 1035 + author: "Satvik Virmani" + repo: "https://github.com/satvikvirmani/infinity-theme" + url: "https://marketplace.visualstudio.com/items?itemName=satvikvirmani.infinity-theme" +colors: + bg: "#1D2433" + fg: "#ECECF3" + black: "#2F3B54" + red: "#EE5D64" + green: "#B4F668" + yellow: "#FFCC66" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#ECECF3" + brightBlack: "#444A5E" + brightRed: "#EE5D64" + brightGreen: "#B4F668" + brightYellow: "#FFCC66" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#ECECF3" +meta: + mode: "dark" + accent: "green" + hue: 265 + contrast: + fg: 93 + black: 0 + red: 39.5 + green: 87 + yellow: 77.5 + blue: 66.1 + magenta: 59.6 + cyan: 66.1 + white: 93 + brightBlack: 9.4 + brightRed: 39.5 + brightGreen: 87 + brightYellow: 77.5 + brightBlue: 66.1 + brightMagenta: 59.6 + brightCyan: 66.1 + brightWhite: 93 diff --git a/themes/ingeni.yaml b/themes/ingeni.yaml new file mode 100644 index 00000000..8311937f --- /dev/null +++ b/themes/ingeni.yaml @@ -0,0 +1,49 @@ +name: "Ingeni" +source: + marketplace_id: "CodeiusZ.ingeni" + version: "0.0.1" + installs: 140 + author: "CodeiusZ" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CodeiusZ.ingeni" +colors: + bg: "#0A0917" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 80.3 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/inheritance.yaml b/themes/inheritance.yaml new file mode 100644 index 00000000..ab8d45ec --- /dev/null +++ b/themes/inheritance.yaml @@ -0,0 +1,49 @@ +name: "Inheritance" +source: + marketplace_id: "icao.inheritance" + version: "0.3.0" + installs: 3310 + author: "icao" + repo: "https://github.com/icao/inheritance" + url: "https://marketplace.visualstudio.com/items?itemName=icao.inheritance" +colors: + bg: "#181919" + fg: "#BAC7E4" + black: "#181919" + red: "#FF4579" + green: "#37C756" + yellow: "#FFFA9E" + blue: "#26A5FF" + magenta: "#DE7DF7" + cyan: "#00D9FF" + white: "#F8FAFD" + brightBlack: "#7992B4" + brightRed: "#FF4579" + brightGreen: "#8DFF8D" + brightYellow: "#FFFA9E" + brightBlue: "#26A5FF" + brightMagenta: "#DE7DF7" + brightCyan: "#00D9FF" + brightWhite: "#F8FAFD" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 71.3 + black: 0 + red: 41.6 + green: 57.8 + yellow: 100.8 + blue: 49.6 + magenta: 52 + cyan: 72.1 + white: 103.2 + brightBlack: 41.5 + brightRed: 41.6 + brightGreen: 90.7 + brightYellow: 100.8 + brightBlue: 49.6 + brightMagenta: 52 + brightCyan: 72.1 + brightWhite: 103.2 diff --git a/themes/inkpot.yaml b/themes/inkpot.yaml new file mode 100644 index 00000000..cdbed7de --- /dev/null +++ b/themes/inkpot.yaml @@ -0,0 +1,49 @@ +name: "inkpot" +source: + marketplace_id: "Ast3r0id.inkpot" + version: "0.0.1" + installs: 833 + author: "Ast3r0id" + repo: "https://github.com/et3r/inkpot" + url: "https://marketplace.visualstudio.com/items?itemName=Ast3r0id.inkpot" +colors: + bg: "#1B1B33" + fg: "#9387C2" + black: "#00482A" + red: "#00C679" + green: "#00FDE9" + yellow: "#00F2F8" + blue: "#00CC63" + magenta: "#005555" + cyan: "#007BFA" + white: "#008CFC" + brightBlack: "#003DDE" + brightRed: "#00DEE4" + brightGreen: "#00F993" + brightYellow: "#00C472" + brightBlue: "#00FBD6" + brightMagenta: "#006CB8" + brightCyan: "#003C3C" + brightWhite: "#00969A" +meta: + mode: "dark" + accent: "purple" + hue: 282 + contrast: + fg: 40.3 + black: 0 + red: 56.8 + green: 88.2 + yellow: 83.3 + blue: 59.2 + magenta: 11.2 + cyan: 33.2 + white: 39.1 + brightBlack: 14.9 + brightRed: 72.4 + brightGreen: 83 + brightYellow: 55.7 + brightBlue: 86.3 + brightMagenta: 23.3 + brightCyan: 0 + brightWhite: 36.9 diff --git a/themes/inksea-dank.yaml b/themes/inksea-dank.yaml new file mode 100644 index 00000000..54f41519 --- /dev/null +++ b/themes/inksea-dank.yaml @@ -0,0 +1,49 @@ +name: "inksea Dank" +source: + marketplace_id: "inksea.inksea-theme" + version: "3.3.0" + installs: 12188 + author: "_inkSea" + repo: "https://github.com/inksea/inksea-theme" + url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" +colors: + bg: "#121216" + fg: "#B7CF9F" + black: "#212529" + red: "#FF3366" + green: "#5F7F5F" + yellow: "#FFC562" + blue: "#71559D" + magenta: "#BA5D9C" + cyan: "#2F4858" + white: "#C4CAD1" + brightBlack: "#6272A4" + brightRed: "#FF3366" + brightGreen: "#63E6BE" + brightYellow: "#FFC562" + brightBlue: "#FFCBFF" + brightMagenta: "#DC8CC3" + brightCyan: "#6983AA" + brightWhite: "#C4CAD1" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 72.2 + black: 0 + red: 39.8 + green: 30 + yellow: 76.8 + blue: 21.3 + magenta: 33.4 + cyan: 9.6 + white: 73.4 + brightBlack: 28.4 + brightRed: 39.8 + brightGreen: 77.7 + brightYellow: 76.8 + brightBlue: 84.5 + brightMagenta: 53.4 + brightCyan: 34.9 + brightWhite: 73.4 diff --git a/themes/inksea-dark.yaml b/themes/inksea-dark.yaml new file mode 100644 index 00000000..e6d0dde5 --- /dev/null +++ b/themes/inksea-dark.yaml @@ -0,0 +1,49 @@ +name: "inksea Dark" +source: + marketplace_id: "inksea.inksea-theme" + version: "3.3.0" + installs: 12188 + author: "_inkSea" + repo: "https://github.com/inksea/inksea-theme" + url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" +colors: + bg: "#1A1D21" + fg: "#C4CAD1" + black: "#212529" + red: "#EF5285" + green: "#63E6BE" + yellow: "#F6B352" + blue: "#B084EB" + magenta: "#FF9AC1" + cyan: "#45A9F9" + white: "#C4CAD1" + brightBlack: "#6272A4" + brightRed: "#EF5285" + brightGreen: "#63E6BE" + brightYellow: "#FFCC95" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#6FC1FF" + brightWhite: "#C4CAD1" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 72.4 + black: 0 + red: 39.8 + green: 76.6 + yellow: 66.9 + blue: 45.6 + magenta: 62.9 + cyan: 51 + white: 72.4 + brightBlack: 27.4 + brightRed: 39.8 + brightGreen: 76.6 + brightYellow: 79.6 + brightBlue: 65.4 + brightMagenta: 61.9 + brightCyan: 63.4 + brightWhite: 72.4 diff --git a/themes/inksea-dracula.yaml b/themes/inksea-dracula.yaml new file mode 100644 index 00000000..55fb43e6 --- /dev/null +++ b/themes/inksea-dracula.yaml @@ -0,0 +1,49 @@ +name: "inksea Dracula" +source: + marketplace_id: "inksea.inksea-theme" + version: "3.3.0" + installs: 12188 + author: "_inkSea" + repo: "https://github.com/inksea/inksea-theme" + url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" +colors: + bg: "#1E1F29" + fg: "#B8C2DE" + black: "#21222C" + red: "#FF5555" + green: "#00B5A6" + yellow: "#FFDC82" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#5C7BBF" + white: "#C4CAD1" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#00D99A" + brightYellow: "#FFDC82" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#00A9EF" + brightWhite: "#C4CAD1" +meta: + mode: "dark" + accent: "orange" + hue: 280 + contrast: + fg: 67.8 + black: 0 + red: 42.3 + green: 50.2 + yellow: 85.5 + blue: 52.6 + magenta: 53.5 + cyan: 31 + white: 72 + brightBlack: 27 + brightRed: 47.8 + brightGreen: 66.6 + brightYellow: 85.5 + brightBlue: 65 + brightMagenta: 61.5 + brightCyan: 48.9 + brightWhite: 72 diff --git a/themes/inksea-hacker.yaml b/themes/inksea-hacker.yaml new file mode 100644 index 00000000..bd28d552 --- /dev/null +++ b/themes/inksea-hacker.yaml @@ -0,0 +1,49 @@ +name: "inksea Hacker" +source: + marketplace_id: "inksea.inksea-theme" + version: "3.3.0" + installs: 12188 + author: "_inkSea" + repo: "https://github.com/inksea/inksea-theme" + url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" +colors: + bg: "#090D0C" + fg: "#BBBBBB" + black: "#090D0C" + red: "#C05776" + green: "#81B38C" + yellow: "#F6B352" + blue: "#7574A5" + magenta: "#C05776" + cyan: "#87A1C5" + white: "#C4CAD1" + brightBlack: "#6272A4" + brightRed: "#C05776" + brightGreen: "#A3BE8C" + brightYellow: "#FFCC95" + brightBlue: "#7574A5" + brightMagenta: "#C05776" + brightCyan: "#8DB9E2" + brightWhite: "#C4CAD1" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 65.5 + black: 0 + red: 32.1 + green: 54.6 + yellow: 68.4 + blue: 31.1 + magenta: 32.1 + cyan: 50.1 + white: 73.8 + brightBlack: 28.8 + brightRed: 32.1 + brightGreen: 62.4 + brightYellow: 81 + brightBlue: 31.1 + brightMagenta: 32.1 + brightCyan: 61.8 + brightWhite: 73.8 diff --git a/themes/inksea-midnight.yaml b/themes/inksea-midnight.yaml new file mode 100644 index 00000000..8a258976 --- /dev/null +++ b/themes/inksea-midnight.yaml @@ -0,0 +1,49 @@ +name: "inksea Midnight" +source: + marketplace_id: "inksea.inksea-theme" + version: "3.3.0" + installs: 12188 + author: "_inkSea" + repo: "https://github.com/inksea/inksea-theme" + url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" +colors: + bg: "#0A0B0F" + fg: "#C4CAD1" + black: "#212529" + red: "#EF5285" + green: "#63E6BE" + yellow: "#F6B352" + blue: "#B084EB" + magenta: "#FF9AC1" + cyan: "#45A9F9" + white: "#C4CAD1" + brightBlack: "#6272A4" + brightRed: "#EF5285" + brightGreen: "#63E6BE" + brightYellow: "#FFCC95" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#6FC1FF" + brightWhite: "#C4CAD1" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 73.9 + black: 0 + red: 41.3 + green: 78.1 + yellow: 68.4 + blue: 47.1 + magenta: 64.4 + cyan: 52.5 + white: 73.9 + brightBlack: 28.9 + brightRed: 41.3 + brightGreen: 78.1 + brightYellow: 81.1 + brightBlue: 66.9 + brightMagenta: 63.4 + brightCyan: 64.8 + brightWhite: 73.9 diff --git a/themes/inksea-oceanic.yaml b/themes/inksea-oceanic.yaml new file mode 100644 index 00000000..bdc0ee6a --- /dev/null +++ b/themes/inksea-oceanic.yaml @@ -0,0 +1,49 @@ +name: "inksea Oceanic" +source: + marketplace_id: "inksea.inksea-theme" + version: "3.3.0" + installs: 12188 + author: "_inkSea" + repo: "https://github.com/inksea/inksea-theme" + url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" +colors: + bg: "#15171C" + fg: "#A7AEC4" + black: "#21222C" + red: "#FF5555" + green: "#00B5A6" + yellow: "#B59964" + blue: "#BD93F9" + magenta: "#C5A6C4" + cyan: "#6699CC" + white: "#C4CAD1" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#99C794" + brightYellow: "#E3B686" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#00A9EF" + brightWhite: "#C4CAD1" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 57.6 + black: 0 + red: 43.4 + green: 51.3 + yellow: 48.1 + blue: 53.6 + magenta: 58.3 + cyan: 44.2 + white: 73 + brightBlack: 28 + brightRed: 48.8 + brightGreen: 64.9 + brightYellow: 66.5 + brightBlue: 66.1 + brightMagenta: 62.6 + brightCyan: 50 + brightWhite: 73 diff --git a/themes/inksea-sea-monkey.yaml b/themes/inksea-sea-monkey.yaml new file mode 100644 index 00000000..f864a37b --- /dev/null +++ b/themes/inksea-sea-monkey.yaml @@ -0,0 +1,49 @@ +name: "inksea Sea Monkey" +source: + marketplace_id: "inksea.inksea-theme" + version: "3.3.0" + installs: 12188 + author: "_inkSea" + repo: "https://github.com/inksea/inksea-theme" + url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" +colors: + bg: "#1A1D21" + fg: "#C4CAD1" + black: "#212529" + red: "#E68680" + green: "#A3DEA1" + yellow: "#E1AB89" + blue: "#9586CF" + magenta: "#DEA6B6" + cyan: "#4A9BF2" + white: "#C4CAD1" + brightBlack: "#6272A4" + brightRed: "#E68680" + brightGreen: "#14B5A5" + brightYellow: "#D8EBA1" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#7BE1E3" + brightWhite: "#C4CAD1" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72.4 + black: 0 + red: 49.8 + green: 76.1 + yellow: 61.5 + blue: 41.1 + magenta: 60.7 + cyan: 45.3 + white: 72.4 + brightBlack: 27.4 + brightRed: 49.8 + brightGreen: 50.6 + brightYellow: 87.9 + brightBlue: 65.4 + brightMagenta: 61.9 + brightCyan: 77.1 + brightWhite: 72.4 diff --git a/themes/inksea.yaml b/themes/inksea.yaml new file mode 100644 index 00000000..4504dafa --- /dev/null +++ b/themes/inksea.yaml @@ -0,0 +1,49 @@ +name: "inksea" +source: + marketplace_id: "inksea.inksea-theme" + version: "3.3.0" + installs: 12188 + author: "_inkSea" + repo: "https://github.com/inksea/inksea-theme" + url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" +colors: + bg: "#212529" + fg: "#C4CAD1" + black: "#212529" + red: "#EF5285" + green: "#63E6BE" + yellow: "#F6B352" + blue: "#B084EB" + magenta: "#FF9AC1" + cyan: "#45A9F9" + white: "#C4CAD1" + brightBlack: "#6272A4" + brightRed: "#EF5285" + brightGreen: "#63E6BE" + brightYellow: "#FFCC95" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#6FC1FF" + brightWhite: "#C4CAD1" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 71.2 + black: 0 + red: 38.6 + green: 75.5 + yellow: 65.8 + blue: 44.4 + magenta: 61.8 + cyan: 49.9 + white: 71.2 + brightBlack: 26.2 + brightRed: 38.6 + brightGreen: 75.5 + brightYellow: 78.4 + brightBlue: 64.3 + brightMagenta: 60.8 + brightCyan: 62.2 + brightWhite: 71.2 diff --git a/themes/inkstained.yaml b/themes/inkstained.yaml new file mode 100644 index 00000000..1c05576c --- /dev/null +++ b/themes/inkstained.yaml @@ -0,0 +1,49 @@ +name: "Inkstained" +source: + marketplace_id: "bfulop.inkstained" + version: "0.1.5" + installs: 358 + author: "Balint Fulop" + repo: "https://github.com/bfulop/inkstained" + url: "https://marketplace.visualstudio.com/items?itemName=bfulop.inkstained" +colors: + bg: "#EDEBE9" + fg: "#557498" + black: "#000000" + red: "#DC7786" + green: "#6BA480" + yellow: "#949800" + blue: "#5E99B1" + magenta: "#B0789B" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#DC7786" + brightGreen: "#6BA480" + brightYellow: "#B5BA00" + brightBlue: "#5E99B1" + brightMagenta: "#A05B89" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 61.8 + black: 94.4 + red: 44.5 + green: 43.5 + yellow: 46.2 + blue: 46.8 + magenta: 50.7 + cyan: 48.9 + white: 74.3 + brightBlack: 67.1 + brightRed: 44.5 + brightGreen: 43.5 + brightYellow: 29.3 + brightBlue: 46.8 + brightMagenta: 61.5 + brightCyan: 48.9 + brightWhite: 36.8 diff --git a/themes/inovando-theme.yaml b/themes/inovando-theme.yaml new file mode 100644 index 00000000..c7846e24 --- /dev/null +++ b/themes/inovando-theme.yaml @@ -0,0 +1,49 @@ +name: "Inovando Theme" +source: + marketplace_id: "Inovando.inovando-theme" + version: "1.0.2" + installs: 630 + author: "Inovando" + repo: "https://github.com/joaorodrs/inovando-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Inovando.inovando-theme" +colors: + bg: "#191622" + fg: "#D4D4D4" + black: "#606060" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 296 + contrast: + fg: 79.4 + black: 19.4 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.7 + cyan: 47.5 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.5 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/insane.yaml b/themes/insane.yaml new file mode 100644 index 00000000..6d69cf3c --- /dev/null +++ b/themes/insane.yaml @@ -0,0 +1,49 @@ +name: "Insane" +source: + marketplace_id: "VitorRubimPassos.insane-dark-theme" + version: "2.0.1" + installs: 822 + author: "Vitor Rubim Passos" + repo: "https://github.com/vitorrubim1/insane-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=VitorRubimPassos.insane-dark-theme" +colors: + bg: "#111111" + fg: "#F0E68C" + black: "#000000" + red: "#FC4737" + green: "#04D361" + yellow: "#E1C542" + blue: "#4863F7" + magenta: "#633BBC" + cyan: "#1EF7D0" + white: "#C4C4CC" + brightBlack: "#8D8D99" + brightRed: "#FF7373" + brightGreen: "#67FF8A" + brightYellow: "#FFFA72" + brightBlue: "#6A80FF" + brightMagenta: "#996DFF" + brightCyan: "#7BEAEA" + brightWhite: "#8D8D99" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 89.5 + black: 0 + red: 40.7 + green: 63.9 + yellow: 71.7 + blue: 28.7 + magenta: 16.8 + cyan: 85.4 + white: 70.8 + brightBlack: 41 + brightRed: 50.6 + brightGreen: 89.2 + brightYellow: 100.5 + brightBlue: 39.8 + brightMagenta: 38.9 + brightCyan: 82.9 + brightWhite: 41 diff --git a/themes/insight.yaml b/themes/insight.yaml new file mode 100644 index 00000000..18ea1125 --- /dev/null +++ b/themes/insight.yaml @@ -0,0 +1,49 @@ +name: "Insight" +source: + marketplace_id: "InsightTheme.insight" + version: "0.0.5" + installs: 1338 + author: "Insight Theme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=InsightTheme.insight" +colors: + bg: "#282C34" + fg: "#DDDDDD" + black: "#21222C" + red: "#FF5555" + green: "#90CEE8" + yellow: "#E8DD90" + blue: "#B678FF" + magenta: "#FF79C6" + cyan: "#90CEE8" + white: "#DDDDDD" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 81.8 + black: 0 + red: 40.2 + green: 67.5 + yellow: 80.7 + blue: 41.9 + magenta: 51.4 + cyan: 67.5 + white: 81.8 + brightBlack: 24.8 + brightRed: 45.6 + brightGreen: 85.8 + brightYellow: 100.3 + brightBlue: 62.9 + brightMagenta: 59.4 + brightCyan: 93.6 + brightWhite: 103.7 diff --git a/themes/inspiration.yaml b/themes/inspiration.yaml new file mode 100644 index 00000000..a2ea592e --- /dev/null +++ b/themes/inspiration.yaml @@ -0,0 +1,49 @@ +name: "Inspiration" +source: + marketplace_id: "YesCode.inspiration" + version: "0.0.19" + installs: 1076 + author: "YesCode" + repo: "https://github.com/yesomac/inspiration_themevsc" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" +colors: + bg: "#140701" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#0D6678" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#95C085" + brightYellow: "#FAC03B" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 57 + contrast: + fg: 105.4 + black: 0 + red: 42.8 + green: 61.8 + yellow: 73.9 + blue: 19.5 + magenta: 20.3 + cyan: 50.3 + white: 48 + brightBlack: 19.4 + brightRed: 42.8 + brightGreen: 61.8 + brightYellow: 73.9 + brightBlue: 19.5 + brightMagenta: 20.3 + brightCyan: 50.3 + brightWhite: 99.7 diff --git a/themes/instamuch.yaml b/themes/instamuch.yaml new file mode 100644 index 00000000..4bf22e86 --- /dev/null +++ b/themes/instamuch.yaml @@ -0,0 +1,49 @@ +name: "InstaMuch" +source: + marketplace_id: "uditiarora.instamuch-vscode" + version: "1.0.0" + installs: 744 + author: "uditiarora" + repo: "https://github.com/uditiarora/InstaMuch-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=uditiarora.instamuch-vscode" +colors: + bg: "#390039" + fg: "#F5899D" + black: "#622C87" + red: "#FFD580" + green: "#F5899D" + yellow: "#F5899D" + blue: "#FCAF45" + magenta: "#F5899D" + cyan: "#FCAF45" + white: "#F5899D" + brightBlack: "#444A5E" + brightRed: "#FFD580" + brightGreen: "#F5899D" + brightYellow: "#F5899D" + brightBlue: "#FCAF45" + brightMagenta: "#F5899D" + brightCyan: "#FCAF45" + brightWhite: "#F5899D" +meta: + mode: "dark" + accent: "magenta" + hue: 328 + contrast: + fg: 53.7 + black: 8.8 + red: 82.1 + green: 53.7 + yellow: 53.7 + blue: 65.6 + magenta: 53.7 + cyan: 65.6 + white: 53.7 + brightBlack: 9.8 + brightRed: 82.1 + brightGreen: 53.7 + brightYellow: 53.7 + brightBlue: 65.6 + brightMagenta: 53.7 + brightCyan: 65.6 + brightWhite: 53.7 diff --git a/themes/intellij-dark-color-theme.yaml b/themes/intellij-dark-color-theme.yaml new file mode 100644 index 00000000..196b959e --- /dev/null +++ b/themes/intellij-dark-color-theme.yaml @@ -0,0 +1,49 @@ +name: "intellij-dark-color-theme" +source: + marketplace_id: "zerodind.familiar-java-themes" + version: "0.1.7" + installs: 58649 + author: "0dinD" + repo: "https://gitlab.com/zerodind/familiar-java-themes" + url: "https://marketplace.visualstudio.com/items?itemName=zerodind.familiar-java-themes" +colors: + bg: "#2B2B2B" + fg: "#A9B7C6" + black: "#FFFFFF" + red: "#FF6B68" + green: "#A8C023" + yellow: "#D6BF55" + blue: "#5394EC" + magenta: "#AE8ABE" + cyan: "#299999" + white: "#999999" + brightBlack: "#555555" + brightRed: "#FF8785" + brightGreen: "#A8C023" + brightYellow: "#FFFF00" + brightBlue: "#7EAEF1" + brightMagenta: "#FF99FF" + brightCyan: "#6CDADA" + brightWhite: "#1F1F1F" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 58.5 + black: 103.8 + red: 45 + green: 58.4 + yellow: 64.2 + blue: 40.3 + magenta: 42.1 + cyan: 36.1 + white: 43.2 + brightBlack: 12.1 + brightRed: 52.7 + brightGreen: 58.4 + brightYellow: 98.7 + brightBlue: 53.2 + brightMagenta: 63.5 + brightCyan: 70.1 + brightWhite: 0 diff --git a/themes/intellij-idea-islands-dark.yaml b/themes/intellij-idea-islands-dark.yaml new file mode 100644 index 00000000..b461e942 --- /dev/null +++ b/themes/intellij-idea-islands-dark.yaml @@ -0,0 +1,49 @@ +name: "intellij-idea-islands-dark" +source: + marketplace_id: "OleksandrHavrysh.vscode-intellij-theme" + version: "1.1.1" + installs: 2829 + author: "Oleksandr Havrysh" + repo: "https://github.com/a-havrysh/vscode-intellij-theme" + url: "https://marketplace.visualstudio.com/items?itemName=OleksandrHavrysh.vscode-intellij-theme" +colors: + bg: "#191A1C" + fg: "#BCBEC4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 66.1 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/intellij-idea-islands-light.yaml b/themes/intellij-idea-islands-light.yaml new file mode 100644 index 00000000..903e3d8d --- /dev/null +++ b/themes/intellij-idea-islands-light.yaml @@ -0,0 +1,49 @@ +name: "intellij-idea-islands-light" +source: + marketplace_id: "OleksandrHavrysh.vscode-intellij-theme" + version: "1.1.1" + installs: 2829 + author: "Oleksandr Havrysh" + repo: "https://github.com/a-havrysh/vscode-intellij-theme" + url: "https://marketplace.visualstudio.com/items?itemName=OleksandrHavrysh.vscode-intellij-theme" +colors: + bg: "#FFFFFF" + fg: "#080808" + black: "#080808" + red: "#DE1B2E" + green: "#067D17" + yellow: "#9E880D" + blue: "#0033B3" + magenta: "#871094" + cyan: "#007E8A" + white: "#FFFFFF" + brightBlack: "#6C707E" + brightRed: "#F05661" + brightGreen: "#7FC784" + brightYellow: "#F2BF57" + brightBlue: "#88ADF7" + brightMagenta: "#A678F2" + brightCyan: "#00B5BC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.9 + black: 105.9 + red: 71.6 + green: 75.8 + yellow: 62.5 + blue: 91.6 + magenta: 86.9 + cyan: 72.9 + white: 0 + brightBlack: 74.2 + brightRed: 60.3 + brightGreen: 39.1 + brightYellow: 30.2 + brightBlue: 44.1 + brightMagenta: 58.8 + brightCyan: 48.8 + brightWhite: 0 diff --git a/themes/intellij-idea-new-ui.yaml b/themes/intellij-idea-new-ui.yaml new file mode 100644 index 00000000..24186963 --- /dev/null +++ b/themes/intellij-idea-new-ui.yaml @@ -0,0 +1,49 @@ +name: "IntelliJ IDEA New UI" +source: + marketplace_id: "compassak.intellij-idea-new-ui" + version: "1.4.0" + installs: 14999 + author: "compassak" + repo: "https://github.com/compassak/vscode-intellij-idea-new-ui" + url: "https://marketplace.visualstudio.com/items?itemName=compassak.intellij-idea-new-ui" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#6E6E6E" + red: "#D70000" + green: "#5F8700" + yellow: "#AF8700" + blue: "#0087FF" + magenta: "#AF005F" + cyan: "#00AFAF" + white: "#E4E4E4" + brightBlack: "#1C1C1C" + brightRed: "#D75F00" + brightGreen: "#585858" + brightYellow: "#626262" + brightBlue: "#808080" + brightMagenta: "#5F5FAF" + brightCyan: "#8A8A8A" + brightWhite: "#FFFFD7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 106 + black: 75.2 + red: 73.9 + green: 69 + yellow: 60.6 + blue: 62.3 + magenta: 81.9 + cyan: 51.9 + white: 13.5 + brightBlack: 104 + brightRed: 64.7 + brightGreen: 84.7 + brightYellow: 80.5 + brightBlue: 66.9 + brightMagenta: 77.9 + brightCyan: 62.1 + brightWhite: 0 diff --git a/themes/intellij-light-classic-color-theme.yaml b/themes/intellij-light-classic-color-theme.yaml new file mode 100644 index 00000000..ca859597 --- /dev/null +++ b/themes/intellij-light-classic-color-theme.yaml @@ -0,0 +1,49 @@ +name: "intellij-light-classic-color-theme" +source: + marketplace_id: "zerodind.familiar-java-themes" + version: "0.1.7" + installs: 58649 + author: "0dinD" + repo: "https://gitlab.com/zerodind/familiar-java-themes" + url: "https://marketplace.visualstudio.com/items?itemName=zerodind.familiar-java-themes" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD0000" + green: "#00CD00" + yellow: "#C4A000" + blue: "#0000EE" + magenta: "#CD00CD" + cyan: "#00CCCC" + white: "#AAAAAA" + brightBlack: "#555555" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#EAEA00" + brightBlue: "#5C5CFF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 76.3 + green: 41.4 + yellow: 49 + blue: 88.1 + magenta: 70 + cyan: 38 + white: 45.8 + brightBlack: 85.9 + brightRed: 64.1 + brightGreen: 17.1 + brightYellow: 14.2 + brightBlue: 72.3 + brightMagenta: 55.6 + brightCyan: 11.8 + brightWhite: 0 diff --git a/themes/intellij-light-deaft.yaml b/themes/intellij-light-deaft.yaml new file mode 100644 index 00000000..81d3704b --- /dev/null +++ b/themes/intellij-light-deaft.yaml @@ -0,0 +1,49 @@ +name: "IntelliJ Light (deaft)" +source: + marketplace_id: "nejcbw.darcula-code" + version: "1.0.9" + installs: 1115 + author: "Nejc Brelih-Wasowski" + repo: "https://github.com/nejcbw/darcula-code" + url: "https://marketplace.visualstudio.com/items?itemName=nejcbw.darcula-code" +colors: + bg: "#FFFFFF" + fg: "#080808" + black: "#000000" + red: "#CE0505" + green: "#067D17" + yellow: "#B28C00" + blue: "#063FDB" + magenta: "#B309B3" + cyan: "#028E8E" + white: "#929292" + brightBlack: "#656565" + brightRed: "#FF1616" + brightGreen: "#16B42C" + brightYellow: "#ECC32C" + brightBlue: "#2D61F0" + brightMagenta: "#E617E6" + brightCyan: "#15C1C1" + brightWhite: "#929292" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 105.9 + black: 106 + red: 76.1 + green: 75.8 + yellow: 58.5 + blue: 85.2 + magenta: 76.9 + cyan: 66.6 + white: 58.1 + brightBlack: 79.2 + brightRed: 63.8 + brightGreen: 52.6 + brightYellow: 29.9 + brightBlue: 74.7 + brightMagenta: 62.6 + brightCyan: 43.3 + brightWhite: 58.1 diff --git a/themes/intelliyay-color-theme.yaml b/themes/intelliyay-color-theme.yaml new file mode 100644 index 00000000..d052da80 --- /dev/null +++ b/themes/intelliyay-color-theme.yaml @@ -0,0 +1,49 @@ +name: "IntelliYay-color-theme" +source: + marketplace_id: "ale-ferrero.intelliyay-theme" + version: "0.0.4" + installs: 196 + author: "Alejandro Ferrero" + repo: "https://github.com/aleferrero98/IntelliYay-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ale-ferrero.intelliyay-theme" +colors: + bg: "#1E1F22" + fg: "#A9B7C6" + black: "#FFFFFF" + red: "#FF6B68" + green: "#A8C023" + yellow: "#D6BF55" + blue: "#5394EC" + magenta: "#AE8ABE" + cyan: "#299999" + white: "#999999" + brightBlack: "#555555" + brightRed: "#FF8785" + brightGreen: "#A8C023" + brightYellow: "#FFFF00" + brightBlue: "#7EAEF1" + brightMagenta: "#FF99FF" + brightCyan: "#6CDADA" + brightWhite: "#1F1F1F" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 60.5 + black: 105.9 + red: 47.1 + green: 60.5 + yellow: 66.3 + blue: 42.3 + magenta: 44.2 + cyan: 38.2 + white: 45.2 + brightBlack: 14.1 + brightRed: 54.8 + brightGreen: 60.5 + brightYellow: 100.7 + brightBlue: 55.3 + brightMagenta: 65.6 + brightCyan: 72.1 + brightWhite: 0 diff --git a/themes/intergalactic.yaml b/themes/intergalactic.yaml new file mode 100644 index 00000000..20ecf15c --- /dev/null +++ b/themes/intergalactic.yaml @@ -0,0 +1,49 @@ +name: "Intergalactic" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2036 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" +colors: + bg: "#0B0D14" + fg: "#F0F4F8" + black: "#0B0D14" + red: "#FF6B6B" + green: "#66FF99" + yellow: "#FFCC33" + blue: "#5599FF" + magenta: "#FF44DD" + cyan: "#00E6FF" + white: "#F0F4F8" + brightBlack: "#7A8394" + brightRed: "#FF8E8E" + brightGreen: "#88FFBB" + brightYellow: "#FFD966" + brightBlue: "#77AAFF" + brightMagenta: "#FF77EE" + brightCyan: "#4DFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 272 + contrast: + fg: 100 + black: 0 + red: 48.8 + green: 89.8 + yellow: 79.4 + blue: 47.3 + magenta: 46.9 + cyan: 79.2 + white: 100 + brightBlack: 35.7 + brightRed: 58.8 + brightGreen: 92.6 + brightYellow: 85.5 + brightBlue: 55.8 + brightMagenta: 57 + brightCyan: 92.8 + brightWhite: 107.6 diff --git a/themes/interstellar-blue-ii.yaml b/themes/interstellar-blue-ii.yaml new file mode 100644 index 00000000..e4b5d77e --- /dev/null +++ b/themes/interstellar-blue-ii.yaml @@ -0,0 +1,49 @@ +name: "Interstellar Blue II" +source: + marketplace_id: "JavRedstone.interstellar-blue" + version: "0.5.0" + installs: 1005 + author: "JavRedstone" + repo: "https://github.com/JavRedstone/interstellar-blue-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JavRedstone.interstellar-blue" +colors: + bg: "#1D004B" + fg: "#E381FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 290 + contrast: + fg: 54.1 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/interstellar-blue.yaml b/themes/interstellar-blue.yaml new file mode 100644 index 00000000..6b0048f0 --- /dev/null +++ b/themes/interstellar-blue.yaml @@ -0,0 +1,49 @@ +name: "Interstellar Blue" +source: + marketplace_id: "JavRedstone.interstellar-blue" + version: "0.5.0" + installs: 1005 + author: "JavRedstone" + repo: "https://github.com/JavRedstone/interstellar-blue-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JavRedstone.interstellar-blue" +colors: + bg: "#10002E" + fg: "#C2A6FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 291 + contrast: + fg: 61.7 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 107.4 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 107.4 diff --git a/themes/interstellar.yaml b/themes/interstellar.yaml new file mode 100644 index 00000000..20144d5b --- /dev/null +++ b/themes/interstellar.yaml @@ -0,0 +1,49 @@ +name: "Interstellar" +source: + marketplace_id: "NikhilKumar.interstellar-theme" + version: "0.0.3" + installs: 636 + author: "Nikhil Kumar" + repo: "https://github.com/nikumar1206/Interstellar---VS-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=NikhilKumar.interstellar-theme" +colors: + bg: "#181818" + fg: "#EAF2F1" + black: "#181818" + red: "#63B2E9" + green: "#AF9CFF" + yellow: "#E395DC" + blue: "#FF9B5E" + magenta: "#FFD76D" + cyan: "#9CD1BB" + white: "#EAF2F1" + brightBlack: "#696D77" + brightRed: "#63B2E9" + brightGreen: "#AF9CFF" + brightYellow: "#E395DC" + brightBlue: "#FF9B5E" + brightMagenta: "#FFD76D" + brightCyan: "#9CD1BB" + brightWhite: "#EAF2F1" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 97.1 + black: 0 + red: 55.5 + green: 55.2 + yellow: 58.2 + blue: 60.9 + magenta: 83.9 + cyan: 70.9 + white: 97.1 + brightBlack: 24.9 + brightRed: 55.5 + brightGreen: 55.2 + brightYellow: 58.2 + brightBlue: 60.9 + brightMagenta: 83.9 + brightCyan: 70.9 + brightWhite: 97.1 diff --git a/themes/intility-bifrost-theme.yaml b/themes/intility-bifrost-theme.yaml new file mode 100644 index 00000000..7665fff8 --- /dev/null +++ b/themes/intility-bifrost-theme.yaml @@ -0,0 +1,49 @@ +name: "Intility Bifrost Theme" +source: + marketplace_id: "augigauki.intility-bifrost-theme" + version: "0.1.7" + installs: 309 + author: "August Gaukstad" + repo: "https://github.com/Intility/bifrost-skins" + url: "https://marketplace.visualstudio.com/items?itemName=augigauki.intility-bifrost-theme" +colors: + bg: "#071627" + fg: "#DAE8F6" + black: "#003C8A" + red: "#FF4B33" + green: "#00F597" + yellow: "#FFEB94" + blue: "#477EFF" + magenta: "#C669FC" + cyan: "#0DF2D7" + white: "#F8FBFF" + brightBlack: "#4D4C4C" + brightRed: "#FF1E00" + brightGreen: "#00FF7C" + brightYellow: "#FFD452" + brightBlue: "#6CA5FF" + brightMagenta: "#FF47B6" + brightCyan: "#21FFE5" + brightWhite: "#FBFDFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + contrast: + fg: 90.9 + black: 8.1 + red: 41.5 + green: 81.9 + yellow: 93.8 + blue: 36.8 + magenta: 43.7 + cyan: 82.6 + white: 104.1 + brightBlack: 11.9 + brightRed: 37.1 + brightGreen: 86.6 + brightYellow: 82.4 + brightBlue: 52.5 + brightMagenta: 44.5 + brightCyan: 90.1 + brightWhite: 105.4 diff --git a/themes/into-the-unknow-fork.yaml b/themes/into-the-unknow-fork.yaml new file mode 100644 index 00000000..1c2da870 --- /dev/null +++ b/themes/into-the-unknow-fork.yaml @@ -0,0 +1,49 @@ +name: "Into the unknow - Fork" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29903 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" +colors: + bg: "#171717" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.9 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/intrepid-darkness-light.yaml b/themes/intrepid-darkness-light.yaml new file mode 100644 index 00000000..ec0b3602 --- /dev/null +++ b/themes/intrepid-darkness-light.yaml @@ -0,0 +1,49 @@ +name: "Intrepid Darkness Light" +source: + marketplace_id: "KeineAhnung.intepriddarkness" + version: "1.9.2" + installs: 218 + author: "KeineAhnung" + repo: "https://github.com/TheKeineAhnung/Intrepid-Darkness" + url: "https://marketplace.visualstudio.com/items?itemName=KeineAhnung.intepriddarkness" +colors: + bg: "#F1F1F1" + fg: "#0F0F0F" + black: "#E9E5DE" + red: "#69FCC3" + green: "#AE3A74" + yellow: "#414ED4" + blue: "#DE690C" + magenta: "#32F074" + cyan: "#FE4030" + white: "#4B4B4B" + brightBlack: "#5F5541" + brightRed: "#00C5B7" + brightGreen: "#9C0C54" + brightYellow: "#1325CD" + brightBlue: "#FF3C00" + brightMagenta: "#00FF55" + brightCyan: "#FF1200" + brightWhite: "#000000" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 97.2 + black: 0 + red: 0 + green: 69.5 + yellow: 73 + blue: 52.7 + magenta: 15.1 + cyan: 52.7 + white: 81.6 + brightBlack: 77.2 + brightRed: 33.7 + brightGreen: 77.8 + brightYellow: 82.3 + brightBlue: 53 + brightMagenta: 8.4 + brightCyan: 55.6 + brightWhite: 97.7 diff --git a/themes/intrepid-darkness.yaml b/themes/intrepid-darkness.yaml new file mode 100644 index 00000000..15df7e56 --- /dev/null +++ b/themes/intrepid-darkness.yaml @@ -0,0 +1,49 @@ +name: "Intrepid Darkness" +source: + marketplace_id: "KeineAhnung.intepriddarkness" + version: "1.9.2" + installs: 218 + author: "KeineAhnung" + repo: "https://github.com/TheKeineAhnung/Intrepid-Darkness" + url: "https://marketplace.visualstudio.com/items?itemName=KeineAhnung.intepriddarkness" +colors: + bg: "#0E0E0E" + fg: "#F0F0F0" + black: "#161A21" + red: "#96033C" + green: "#51C58B" + yellow: "#BEB12B" + blue: "#2196F3" + magenta: "#CD0F8B" + cyan: "#01BFCF" + white: "#B4B4B4" + brightBlack: "#A0AABE" + brightRed: "#FF3A48" + brightGreen: "#63F3AB" + brightYellow: "#ECDA32" + brightBlue: "#00C3FF" + brightMagenta: "#FF00AA" + brightCyan: "#00EDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 97.7 + black: 0 + red: 13.8 + green: 59.7 + yellow: 58.5 + blue: 43.7 + magenta: 27.8 + cyan: 58.3 + white: 61.5 + brightBlack: 55.7 + brightRed: 40.2 + brightGreen: 83.9 + brightYellow: 82.4 + brightBlue: 62.8 + brightMagenta: 40.6 + brightCyan: 82.7 + brightWhite: 107.6 diff --git a/themes/invi.yaml b/themes/invi.yaml new file mode 100644 index 00000000..58ccc531 --- /dev/null +++ b/themes/invi.yaml @@ -0,0 +1,49 @@ +name: "Invi" +source: + marketplace_id: "Siris.invi" + version: "0.2.2" + installs: 635 + author: "Siris" + repo: "https://github.com/Siris01/invi-vsc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Siris.invi" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#565869" + red: "#FF577F" + green: "#2DAE58" + yellow: "#FFCC00" + blue: "#5DD9FF" + magenta: "#FF577F" + cyan: "#04D1BC" + white: "#FAFBF9" + brightBlack: "#75798F" + brightRed: "#FFAEAC" + brightGreen: "#B3FF63" + brightYellow: "#F5B900" + brightBlue: "#14B1FF" + brightMagenta: "#FF94D2" + brightCyan: "#04D1BC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 59.3 + black: 16.1 + red: 44.1 + green: 45.8 + yellow: 78 + blue: 73.4 + magenta: 44.1 + cyan: 64.5 + white: 103.4 + brightBlack: 30.4 + brightRed: 68.9 + brightGreen: 92.6 + brightYellow: 68.7 + brightBlue: 53.9 + brightMagenta: 62 + brightCyan: 64.5 + brightWhite: 106.3 diff --git a/themes/ionztorm-theme.yaml b/themes/ionztorm-theme.yaml new file mode 100644 index 00000000..b3f56283 --- /dev/null +++ b/themes/ionztorm-theme.yaml @@ -0,0 +1,49 @@ +name: "ionztorm Theme" +source: + marketplace_id: "ionztorm.ionztorm-theme" + version: "0.3.19" + installs: 228 + author: "ionztorm" + repo: "https://github.com/ionztorm/ionztorm-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ionztorm.ionztorm-theme" +colors: + bg: "#16161E" + fg: "#C0CAF5" + black: "#414868" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#C0CAF5" + brightBlack: "#737AA2" + brightRed: "#F7768E" + brightGreen: "#9ECE6A" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 74.4 + black: 10.9 + red: 49.9 + green: 67.5 + yellow: 62.8 + blue: 51.7 + magenta: 55.6 + cyan: 71.1 + white: 74.4 + brightBlack: 31.9 + brightRed: 49.9 + brightGreen: 67.5 + brightYellow: 62.8 + brightBlue: 51.7 + brightMagenta: 55.6 + brightCyan: 71.1 + brightWhite: 74.4 diff --git a/themes/iris-pink.yaml b/themes/iris-pink.yaml new file mode 100644 index 00000000..273cf3b8 --- /dev/null +++ b/themes/iris-pink.yaml @@ -0,0 +1,49 @@ +name: "Iris Pink" +source: + marketplace_id: "hongtrapt.pink-angel-themes" + version: "0.0.2" + installs: 273 + author: "hongtrapt" + repo: "https://github.com/hongtra1311/pink-angel-themes" + url: "https://marketplace.visualstudio.com/items?itemName=hongtrapt.pink-angel-themes" +colors: + bg: "#2C1E3C" + fg: "#FFDBE5" + black: "#2C1E3C" + red: "#E27396" + green: "#6D9F71" + yellow: "#EA9AB2" + blue: "#5F4B8B" + magenta: "#FFDBE5" + cyan: "#337357" + white: "#FFDBE5" + brightBlack: "#2C1E3C" + brightRed: "#E27396" + brightGreen: "#6D9F71" + brightYellow: "#EA9AB2" + brightBlue: "#5F4B8B" + brightMagenta: "#FFDBE5" + brightCyan: "#337357" + brightWhite: "#FFDBE5" +meta: + mode: "dark" + accent: "red" + hue: 304 + contrast: + fg: 87.5 + black: 0 + red: 43.4 + green: 41.4 + yellow: 57.3 + blue: 13.8 + magenta: 87.5 + cyan: 20.9 + white: 87.5 + brightBlack: 0 + brightRed: 43.4 + brightGreen: 41.4 + brightYellow: 57.3 + brightBlue: 13.8 + brightMagenta: 87.5 + brightCyan: 20.9 + brightWhite: 87.5 diff --git a/themes/irishbruse-s-color-theme.yaml b/themes/irishbruse-s-color-theme.yaml new file mode 100644 index 00000000..716f3d0c --- /dev/null +++ b/themes/irishbruse-s-color-theme.yaml @@ -0,0 +1,49 @@ +name: "IrishBruse's Color Theme" +source: + marketplace_id: "IrishBruse.dark-theme" + version: "1.6.2" + installs: 807 + author: "Ethan Conneely" + repo: "https://github.com/IrishBruse/IrishBruse-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=IrishBruse.dark-theme" +colors: + bg: "#FFFFFF" + fg: "#191D1F" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#8A76CC" + cyan: "#39ADB5" + white: "#A0A0A0" + brightBlack: "#4E4E4E" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#B6A4EE" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103.9 + black: 106 + red: 67.7 + green: 44.9 + yellow: 31.7 + blue: 66.3 + magenta: 65.3 + cyan: 51.8 + white: 51 + brightBlack: 88.8 + brightRed: 57.1 + brightGreen: 18.3 + brightYellow: 23.3 + brightBlue: 45.2 + brightMagenta: 43.3 + brightCyan: 23.9 + brightWhite: 0 diff --git a/themes/ironhellrider.yaml b/themes/ironhellrider.yaml new file mode 100644 index 00000000..e51c2cbf --- /dev/null +++ b/themes/ironhellrider.yaml @@ -0,0 +1,49 @@ +name: "ironhellrider" +source: + marketplace_id: "ironhellrider.ironhellrider" + version: "0.0.5" + installs: 92 + author: "ironhellrider" + repo: "https://bitbucket.org/Nikolay_Balkandzhiyski/ironhellrider_material_theme" + url: "https://marketplace.visualstudio.com/items?itemName=ironhellrider.ironhellrider" +colors: + bg: "#262836" + fg: "#A1D3FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 73 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.2 + cyan: 45 + white: 87.4 + brightBlack: 19.4 + brightRed: 36 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/ironman-theme-dark.yaml b/themes/ironman-theme-dark.yaml new file mode 100644 index 00000000..819af648 --- /dev/null +++ b/themes/ironman-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Ironman Theme Dark" +source: + marketplace_id: "rohit-chouhan.ironman-theme" + version: "1.0.6" + installs: 3738 + author: "Rohit Chouhan" + repo: "https://github.com/rohit-chouhan/" + url: "https://marketplace.visualstudio.com/items?itemName=rohit-chouhan.ironman-theme" +colors: + bg: "#110E17" + fg: "#715F5F" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: 300 + contrast: + fg: 21.5 + black: 0 + red: 27.3 + green: 52.3 + yellow: 43.4 + blue: 15.6 + magenta: 26.7 + cyan: 40.7 + white: 15.7 + brightBlack: 22.6 + brightRed: 27.3 + brightGreen: 60.9 + brightYellow: 60.9 + brightBlue: 15.6 + brightMagenta: 26.7 + brightCyan: 40.7 + brightWhite: 53.1 diff --git a/themes/ironman-theme-light.yaml b/themes/ironman-theme-light.yaml new file mode 100644 index 00000000..7df19bc9 --- /dev/null +++ b/themes/ironman-theme-light.yaml @@ -0,0 +1,49 @@ +name: "Ironman Theme Light" +source: + marketplace_id: "rohit-chouhan.ironman-theme" + version: "1.0.6" + installs: 3738 + author: "Rohit Chouhan" + repo: "https://github.com/rohit-chouhan/" + url: "https://marketplace.visualstudio.com/items?itemName=rohit-chouhan.ironman-theme" +colors: + bg: "#FFFFFF" + fg: "#715F5F" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 80 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/irony.yaml b/themes/irony.yaml new file mode 100644 index 00000000..11578727 --- /dev/null +++ b/themes/irony.yaml @@ -0,0 +1,49 @@ +name: "IrOny" +source: + marketplace_id: "Priyaank.irony" + version: "0.0.2" + installs: 112 + author: "Priyaank" + repo: "https://github.com/PRIYAANK2510/IrOny-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.irony" +colors: + bg: "#11252C" + fg: "#D4D4D4" + black: "#4D4D4D" + red: "#BD2031" + green: "#0DBC79" + yellow: "#CDBC12" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CBCBCB" + brightBlack: "#7D7D7D" + brightRed: "#E32636" + brightGreen: "#23D18B" + brightYellow: "#F0E130" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "orange" + hue: 223 + contrast: + fg: 78 + black: 10.5 + red: 20.3 + green: 51.5 + yellow: 62.7 + blue: 25.9 + magenta: 28.2 + cyan: 46 + white: 72.5 + brightBlack: 30.8 + brightRed: 29.4 + brightGreen: 62 + brightYellow: 83.9 + brightBlue: 38.5 + brightMagenta: 43.8 + brightCyan: 53.9 + brightWhite: 89.1 diff --git a/themes/is-them-tears-bro.yaml b/themes/is-them-tears-bro.yaml new file mode 100644 index 00000000..b612441a --- /dev/null +++ b/themes/is-them-tears-bro.yaml @@ -0,0 +1,49 @@ +name: "is-them-tears-bro" +source: + marketplace_id: "benji011.isthemtearsbro" + version: "0.0.7" + installs: 1332 + author: "benji011" + repo: "https://github.com/benji011/is-them-tears-bro-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=benji011.isthemtearsbro" +colors: + bg: "#1E2529" + fg: "#D4D4D4" + black: "#1E2529" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 233 + contrast: + fg: 77.7 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/islands-dark.yaml b/themes/islands-dark.yaml new file mode 100644 index 00000000..7349aeec --- /dev/null +++ b/themes/islands-dark.yaml @@ -0,0 +1,49 @@ +name: "Islands Dark" +source: + marketplace_id: "PhanTriVietHoang.island" + version: "1.0.1" + installs: 84 + author: "PhanTriVietHoang" + repo: "https://github.com/phantriviethoang/wip" + url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.island" +colors: + bg: "#181A1D" + fg: "#BCBEC4" + black: "#191A1C" + red: "#F75464" + green: "#73B00A" + yellow: "#E8A33E" + blue: "#548AF7" + magenta: "#C77DBB" + cyan: "#2AACB8" + white: "#BCBEC4" + brightBlack: "#6F737A" + brightRed: "#F9667A" + brightGreen: "#8CCF15" + brightYellow: "#F0B95E" + brightBlue: "#7CACF8" + brightMagenta: "#D79FD2" + brightCyan: "#42C6D2" + brightWhite: "#D4D5D9" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 66.2 + black: 0 + red: 41.4 + green: 49.4 + yellow: 58.8 + blue: 40.3 + magenta: 44.4 + cyan: 48.1 + white: 66.2 + brightBlack: 27.3 + brightRed: 45.8 + brightGreen: 65.3 + brightYellow: 68.7 + brightBlue: 55.5 + brightMagenta: 58.8 + brightCyan: 61.4 + brightWhite: 79.8 diff --git a/themes/islands-light.yaml b/themes/islands-light.yaml new file mode 100644 index 00000000..23152760 --- /dev/null +++ b/themes/islands-light.yaml @@ -0,0 +1,49 @@ +name: "Islands Light" +source: + marketplace_id: "kangsou.islands-theme" + version: "1.0.5" + installs: 2877 + author: "kangsou" + repo: "https://github.com/guxiaohui/islands-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kangsou.islands-theme" +colors: + bg: "#FFFFFF" + fg: "#080808" + black: "#000000" + red: "#DE1B2E" + green: "#067D17" + yellow: "#9E880D" + blue: "#0033B3" + magenta: "#871094" + cyan: "#007EBD" + white: "#808080" + brightBlack: "#6C707E" + brightRed: "#F50000" + brightGreen: "#0A8A21" + brightYellow: "#B89910" + brightBlue: "#174BE6" + brightMagenta: "#A01CAC" + brightCyan: "#0095D4" + brightWhite: "#AEB3C2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.9 + black: 106 + red: 71.6 + green: 75.8 + yellow: 62.5 + blue: 91.6 + magenta: 86.9 + cyan: 70.2 + white: 66.9 + brightBlack: 74.2 + brightRed: 66.6 + brightGreen: 70.6 + brightYellow: 53.1 + brightBlue: 81.5 + brightMagenta: 80.4 + brightCyan: 60.4 + brightWhite: 41 diff --git a/themes/isotope-contrast.yaml b/themes/isotope-contrast.yaml new file mode 100644 index 00000000..931ab6f4 --- /dev/null +++ b/themes/isotope-contrast.yaml @@ -0,0 +1,49 @@ +name: "isotope-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0E0F11" + fg: "#F3EFF5" + black: "#191B1F" + red: "#BA0E2E" + green: "#72B01D" + yellow: "#B3DD49" + blue: "#FFFFFF" + magenta: "#B3DD49" + cyan: "#72B01D" + white: "#FFFFFF" + brightBlack: "#3C4049" + brightRed: "#F03E5F" + brightGreen: "#A5E251" + brightYellow: "#D7ED9F" + brightBlue: "#FFFFFF" + brightMagenta: "#D7ED9F" + brightCyan: "#A5E251" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 97.9 + black: 0 + red: 21.1 + green: 50.3 + yellow: 76.7 + blue: 107.5 + magenta: 76.7 + cyan: 50.3 + white: 107.5 + brightBlack: 8 + brightRed: 37.4 + brightGreen: 77.8 + brightYellow: 90 + brightBlue: 107.5 + brightMagenta: 90 + brightCyan: 77.8 + brightWhite: 107.5 diff --git a/themes/isotope-light.yaml b/themes/isotope-light.yaml new file mode 100644 index 00000000..57c5b39b --- /dev/null +++ b/themes/isotope-light.yaml @@ -0,0 +1,49 @@ +name: "isotope-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#454955" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#72B01D" + yellow: "#98BC3E" + blue: "#454955" + magenta: "#98BC3E" + cyan: "#72B01D" + white: "#505563" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#A5E251" + brightYellow: "#C1D888" + brightBlue: "#73798D" + brightMagenta: "#C1D888" + brightCyan: "#A5E251" + brightWhite: "#73798D" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 90.6 + black: 0 + red: 80.3 + green: 51.2 + yellow: 42.9 + blue: 90.6 + magenta: 42.9 + cyan: 51.2 + white: 85.9 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 24.9 + brightYellow: 25.7 + brightBlue: 70 + brightMagenta: 25.7 + brightCyan: 24.9 + brightWhite: 70 diff --git a/themes/isotope.yaml b/themes/isotope.yaml new file mode 100644 index 00000000..faf27658 --- /dev/null +++ b/themes/isotope.yaml @@ -0,0 +1,49 @@ +name: "isotope" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#454955" + fg: "#F3EFF5" + black: "#505563" + red: "#BA0E2E" + green: "#72B01D" + yellow: "#B3DD49" + blue: "#FFFFFF" + magenta: "#B3DD49" + cyan: "#72B01D" + white: "#FFFFFF" + brightBlack: "#73798D" + brightRed: "#F03E5F" + brightGreen: "#A5E251" + brightYellow: "#D7ED9F" + brightBlue: "#FFFFFF" + brightMagenta: "#D7ED9F" + brightCyan: "#A5E251" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 271 + contrast: + fg: 85.4 + black: 0 + red: 8.7 + green: 37.8 + yellow: 64.3 + blue: 95 + magenta: 64.3 + cyan: 37.8 + white: 95 + brightBlack: 18.8 + brightRed: 25 + brightGreen: 65.4 + brightYellow: 77.6 + brightBlue: 95 + brightMagenta: 77.6 + brightCyan: 65.4 + brightWhite: 95 diff --git a/themes/itsnp-dark-cyan.yaml b/themes/itsnp-dark-cyan.yaml new file mode 100644 index 00000000..9a0b1452 --- /dev/null +++ b/themes/itsnp-dark-cyan.yaml @@ -0,0 +1,49 @@ +name: "ITSNP Dark Cyan" +source: + marketplace_id: "Sachit.itsnp-theme" + version: "0.1.2" + installs: 358 + author: "Sachit" + repo: "https://github.com/ASACHIT/itsnp-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" +colors: + bg: "#0F111A" + fg: "#DFE3FA" + black: "#000000" + red: "#6C8BF5" + green: "#C3E88D" + yellow: "#00D1B2" + blue: "#82AAFF" + magenta: "#F72D81" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#6C8BF5" + brightGreen: "#C3E88D" + brightYellow: "#00D1B2" + brightBlue: "#82AAFF" + brightMagenta: "#F72D81" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 89.8 + black: 0 + red: 42.7 + green: 84.7 + yellow: 65.1 + blue: 56.4 + magenta: 38.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 42.7 + brightGreen: 84.7 + brightYellow: 65.1 + brightBlue: 56.4 + brightMagenta: 38.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/itsnp-dark-pink.yaml b/themes/itsnp-dark-pink.yaml new file mode 100644 index 00000000..9510d67e --- /dev/null +++ b/themes/itsnp-dark-pink.yaml @@ -0,0 +1,49 @@ +name: "ITSNP Dark Pink" +source: + marketplace_id: "Sachit.itsnp-theme" + version: "0.1.2" + installs: 358 + author: "Sachit" + repo: "https://github.com/ASACHIT/itsnp-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" +colors: + bg: "#0F111A" + fg: "#DFE3FA" + black: "#000000" + red: "#B3A6FF" + green: "#C3E88D" + yellow: "#D40658" + blue: "#82AAFF" + magenta: "#F72D81" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#B3A6FF" + brightGreen: "#C3E88D" + brightYellow: "#D40658" + brightBlue: "#82AAFF" + brightMagenta: "#F72D81" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 89.8 + black: 0 + red: 59.8 + green: 84.7 + yellow: 27.4 + blue: 56.4 + magenta: 38.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 59.8 + brightGreen: 84.7 + brightYellow: 27.4 + brightBlue: 56.4 + brightMagenta: 38.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/itsnp-dark.yaml b/themes/itsnp-dark.yaml new file mode 100644 index 00000000..f711a138 --- /dev/null +++ b/themes/itsnp-dark.yaml @@ -0,0 +1,49 @@ +name: "ITSNP Dark " +source: + marketplace_id: "Sachit.itsnp-theme" + version: "0.1.2" + installs: 358 + author: "Sachit" + repo: "https://github.com/ASACHIT/itsnp-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" +colors: + bg: "#0F111A" + fg: "#C8CDE6" + black: "#000000" + red: "#9F8EFF" + green: "#C3E88D" + yellow: "#03FF67" + blue: "#82AAFF" + magenta: "#F72D81" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#9F8EFF" + brightGreen: "#C3E88D" + brightYellow: "#03FF67" + brightBlue: "#82AAFF" + brightMagenta: "#F72D81" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 275 + contrast: + fg: 76.3 + black: 0 + red: 49.2 + green: 84.7 + yellow: 86.6 + blue: 56.4 + magenta: 38.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 49.2 + brightGreen: 84.7 + brightYellow: 86.6 + brightBlue: 56.4 + brightMagenta: 38.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/itsnp-night-blue.yaml b/themes/itsnp-night-blue.yaml new file mode 100644 index 00000000..819d6904 --- /dev/null +++ b/themes/itsnp-night-blue.yaml @@ -0,0 +1,49 @@ +name: "ITSNP Night Blue " +source: + marketplace_id: "Sachit.itsnp-theme" + version: "0.1.2" + installs: 358 + author: "Sachit" + repo: "https://github.com/ASACHIT/itsnp-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" +colors: + bg: "#0F111A" + fg: "#C8CDE6" + black: "#000000" + red: "#7A90D0" + green: "#C3E88D" + yellow: "#909EFF" + blue: "#82AAFF" + magenta: "#E0CFFC" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#7A90D0" + brightGreen: "#C3E88D" + brightYellow: "#909EFF" + brightBlue: "#82AAFF" + brightMagenta: "#E0CFFC" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 275 + contrast: + fg: 76.3 + black: 0 + red: 43 + green: 84.7 + yellow: 53.1 + blue: 56.4 + magenta: 81.4 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 43 + brightGreen: 84.7 + brightYellow: 53.1 + brightBlue: 56.4 + brightMagenta: 81.4 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/itsnp-yellow.yaml b/themes/itsnp-yellow.yaml new file mode 100644 index 00000000..330a63a5 --- /dev/null +++ b/themes/itsnp-yellow.yaml @@ -0,0 +1,49 @@ +name: "ITSNP Yellow " +source: + marketplace_id: "Sachit.itsnp-theme" + version: "0.1.2" + installs: 358 + author: "Sachit" + repo: "https://github.com/ASACHIT/itsnp-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" +colors: + bg: "#0F111A" + fg: "#C8CDE6" + black: "#000000" + red: "#9F8EFF" + green: "#C3E88D" + yellow: "#FDB538" + blue: "#82AAFF" + magenta: "#F72D81" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#9F8EFF" + brightGreen: "#C3E88D" + brightYellow: "#FDB538" + brightBlue: "#82AAFF" + brightMagenta: "#F72D81" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 76.3 + black: 0 + red: 49.2 + green: 84.7 + yellow: 69.8 + blue: 56.4 + magenta: 38.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 49.2 + brightGreen: 84.7 + brightYellow: 69.8 + brightBlue: 56.4 + brightMagenta: 38.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/iv-spade.yaml b/themes/iv-spade.yaml new file mode 100644 index 00000000..06e4e86f --- /dev/null +++ b/themes/iv-spade.yaml @@ -0,0 +1,49 @@ +name: "iv : spade" +source: + marketplace_id: "riyuzenn.iv" + version: "0.0.3" + installs: 1278 + author: "riyuzenn" + repo: "https://github.com/riyuzenn/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=riyuzenn.iv" +colors: + bg: "#0C0C0C" + fg: "#A0A0A0" + black: "#212121" + red: "#9D7B7D" + green: "#7B9D7C" + yellow: "#B7976A" + blue: "#687589" + magenta: "#937193" + cyan: "#628483" + white: "#A0A0A0" + brightBlack: "#353535" + brightRed: "#A78587" + brightGreen: "#85A786" + brightYellow: "#C1A174" + brightBlue: "#8593A7" + brightMagenta: "#C8B5E6" + brightCyan: "#85A7A6" + brightWhite: "#BEBEBE" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 50.6 + black: 0 + red: 36.2 + green: 44.6 + yellow: 48.6 + blue: 29 + magenta: 32.7 + cyan: 33.5 + white: 50.6 + brightBlack: 0 + brightRed: 41 + brightGreen: 49.8 + brightYellow: 53.9 + brightBlue: 43.3 + brightMagenta: 66.8 + brightCyan: 50.9 + brightWhite: 67.2 diff --git a/themes/ivalo-color-theme.yaml b/themes/ivalo-color-theme.yaml new file mode 100644 index 00000000..a1245ac3 --- /dev/null +++ b/themes/ivalo-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Ivalo-color-theme" +source: + marketplace_id: "naethiel.ivalo" + version: "0.1.0" + installs: 1566 + author: "Naethiel" + repo: "https://github.com/naethiel/ivalo" + url: "https://marketplace.visualstudio.com/items?itemName=naethiel.ivalo" +colors: + bg: "#1B1F26" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#6ED3CA" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 84.4 + black: 0 + red: 32 + green: 60.7 + yellow: 75.4 + blue: 47.7 + magenta: 45.5 + cyan: 68.2 + white: 91.4 + brightBlack: 14.4 + brightRed: 32 + brightGreen: 60.7 + brightYellow: 75.4 + brightBlue: 47.7 + brightMagenta: 45.5 + brightCyan: 59.6 + brightWhite: 95.3 diff --git a/themes/iwa-s-code-theme.yaml b/themes/iwa-s-code-theme.yaml new file mode 100644 index 00000000..a4c37dca --- /dev/null +++ b/themes/iwa-s-code-theme.yaml @@ -0,0 +1,49 @@ +name: "iwa's Code Theme" +source: + marketplace_id: "iwa.iwa-code-theme" + version: "0.1.3" + installs: 29 + author: "iwa" + repo: "https://github.com/iwa/iwa-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=iwa.iwa-code-theme" +colors: + bg: "#27282E" + fg: "#ABB2BF" + black: "#202126" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#56B6C2" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D0D0D0" + brightBlack: "#808080" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#56B6C2" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 56.9 + black: 0 + red: 39.6 + green: 59.8 + yellow: 68.1 + blue: 52.1 + magenta: 42.6 + cyan: 52.1 + white: 74.6 + brightBlack: 31.3 + brightRed: 39.6 + brightGreen: 59.8 + brightYellow: 68.1 + brightBlue: 52.1 + brightMagenta: 42.6 + brightCyan: 52.1 + brightWhite: 104.4 diff --git a/themes/j-cinco-da-manh.yaml b/themes/j-cinco-da-manh.yaml new file mode 100644 index 00000000..c9b5718e --- /dev/null +++ b/themes/j-cinco-da-manh.yaml @@ -0,0 +1,49 @@ +name: "Já é cinco da manhã" +source: + marketplace_id: "euclidesgc.ja-eh-5-da-manha" + version: "0.0.4" + installs: 28 + author: "euclidesgc" + repo: "https://github.com/euclidesgc/ja-eh-5-da-manha" + url: "https://marketplace.visualstudio.com/items?itemName=euclidesgc.ja-eh-5-da-manha" +colors: + bg: "#060921" + fg: "#50FFBE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 273 + contrast: + fg: 90.1 + black: 0 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/j-theme.yaml b/themes/j-theme.yaml new file mode 100644 index 00000000..a2c08f0a --- /dev/null +++ b/themes/j-theme.yaml @@ -0,0 +1,49 @@ +name: "J Theme" +source: + marketplace_id: "JamesLoyd.jtheme" + version: "0.0.1" + installs: 137 + author: "JamesLoyd" + repo: "https://github.com/JamesLoyd/JTheme" + url: "https://marketplace.visualstudio.com/items?itemName=JamesLoyd.jtheme" +colors: + bg: "#000000" + fg: "#00F031" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/jabrms.yaml b/themes/jabrms.yaml new file mode 100644 index 00000000..e9c4688a --- /dev/null +++ b/themes/jabrms.yaml @@ -0,0 +1,49 @@ +name: "jabrms" +source: + marketplace_id: "jabrms.jabrms-color-theme" + version: "0.0.1" + installs: 265 + author: "jabrms" + repo: "https://github.com/jabrms/vsc-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jabrms.jabrms-color-theme" +colors: + bg: "#FFFFFF" + fg: "#161616" + black: "#000000" + red: "#CD3131" + green: "#24A148" + yellow: "#F1C21B" + blue: "#0043CE" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#C6C6C6" + brightBlack: "#444444" + brightRed: "#CD3131" + brightGreen: "#42BE65" + brightYellow: "#F1C21B" + brightBlue: "#4589FF" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#F4F4F4" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 104.8 + black: 106 + red: 74 + green: 60.5 + yellow: 29.6 + blue: 85.8 + magenta: 74.6 + cyan: 60.6 + white: 30.7 + brightBlack: 92.6 + brightRed: 74 + brightGreen: 46.7 + brightYellow: 29.6 + brightBlue: 60.5 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 0 diff --git a/themes/jacaranda-theme.yaml b/themes/jacaranda-theme.yaml new file mode 100644 index 00000000..2be65889 --- /dev/null +++ b/themes/jacaranda-theme.yaml @@ -0,0 +1,49 @@ +name: "Jacaranda Theme" +source: + marketplace_id: "AlejandroHernandez.jacarandatheme" + version: "0.1.8" + installs: 164 + author: "Alejandro Hernandez" + repo: "https://github.com/josuebautista/JacarandaTheme" + url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.jacarandatheme" +colors: + bg: "#00020F" + fg: "#DAC7FC" + black: "#574286" + red: "#FF198F" + green: "#39B246" + yellow: "#E59C10" + blue: "#2E73E0" + magenta: "#A82EEC" + cyan: "#56B1D5" + white: "#B9B2EA" + brightBlack: "#7A6AB4" + brightRed: "#FF3535" + brightGreen: "#21D7D7" + brightYellow: "#F5D143" + brightBlue: "#724AFF" + brightMagenta: "#DD62FF" + brightCyan: "#15E2E2" + brightWhite: "#E5C1F9" +meta: + mode: "dark" + accent: "magenta" + hue: 261 + contrast: + fg: 77.8 + black: 13.7 + red: 40.1 + green: 49.1 + yellow: 56.9 + blue: 30.8 + magenta: 29 + cyan: 54.4 + white: 64.2 + brightBlack: 29.7 + brightRed: 39.8 + brightGreen: 70.2 + brightYellow: 80.3 + brightBlue: 27.5 + brightMagenta: 47.3 + brightCyan: 76 + brightWhite: 76.8 diff --git a/themes/jackhammar.yaml b/themes/jackhammar.yaml new file mode 100644 index 00000000..dd7c4c37 --- /dev/null +++ b/themes/jackhammar.yaml @@ -0,0 +1,49 @@ +name: "Jackhammar" +source: + marketplace_id: "minako.wired" + version: "2.0.5" + installs: 4867 + author: "minako" + repo: "https://github.com/kayliese/wired" + url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" +colors: + bg: "#000011" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/jaga-theme.yaml b/themes/jaga-theme.yaml new file mode 100644 index 00000000..6ec1edae --- /dev/null +++ b/themes/jaga-theme.yaml @@ -0,0 +1,49 @@ +name: "Jaga Theme" +source: + marketplace_id: "Sayam.jaga-theme" + version: "1.0.3" + installs: 63 + author: "Sayam" + repo: "https://github.com/sayampradhan/jaga-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sayam.jaga-theme" +colors: + bg: "#2E0015" + fg: "#F4F4F9" + black: "#2C2C2E" + red: "#E63946" + green: "#8BC34A" + yellow: "#FFBA08" + blue: "#3A86FF" + magenta: "#003366" + cyan: "#00BCD4" + white: "#FFFFFF" + brightBlack: "#2C2C2E" + brightRed: "#E63946" + brightGreen: "#8BC34A" + brightYellow: "#FFBA08" + brightBlue: "#3A86FF" + brightMagenta: "#003366" + brightCyan: "#00BCD4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 358 + contrast: + fg: 99.7 + black: 0 + red: 33.3 + green: 60.1 + yellow: 71.2 + blue: 38.6 + magenta: 0 + cyan: 56.3 + white: 106.7 + brightBlack: 0 + brightRed: 33.3 + brightGreen: 60.1 + brightYellow: 71.2 + brightBlue: 38.6 + brightMagenta: 0 + brightCyan: 56.3 + brightWhite: 106.7 diff --git a/themes/jammy-jellyfish.yaml b/themes/jammy-jellyfish.yaml new file mode 100644 index 00000000..e8689d5d --- /dev/null +++ b/themes/jammy-jellyfish.yaml @@ -0,0 +1,49 @@ +name: "Jammy Jellyfish" +source: + marketplace_id: "kevinnorman.jammy-jellyfish-color-theme" + version: "1.1.1" + installs: 7081 + author: "Kevin Norman" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kevinnorman.jammy-jellyfish-color-theme" +colors: + bg: "#242424" + fg: "#B6B6B6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.2 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/jamuntheme.yaml b/themes/jamuntheme.yaml new file mode 100644 index 00000000..3bb7fcf4 --- /dev/null +++ b/themes/jamuntheme.yaml @@ -0,0 +1,49 @@ +name: "jamunTheme" +source: + marketplace_id: "mohitUpadhyayRohitUpadhyayAnujUpadhyay.jamunTheme" + version: "0.3.0" + installs: 139 + author: "mohitUpadhyayRohitUpadhyayAnujUpadhyay" + repo: "https://github.com/Mohit5Upadhyay/vscode-jamunDarkTheme" + url: "https://marketplace.visualstudio.com/items?itemName=mohitUpadhyayRohitUpadhyayAnujUpadhyay.jamunTheme" +colors: + bg: "#010107" + fg: "#BECFDA" + black: "#27EDDD" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#AEC3D0" + brightBlack: "#475E6C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#BECFDA" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 75.9 + black: 81.4 + red: 41.5 + green: 78 + yellow: 68 + blue: 53 + magenta: 46.6 + cyan: 71.5 + white: 68.5 + brightBlack: 18.5 + brightRed: 46.8 + brightGreen: 80.2 + brightYellow: 54.9 + brightBlue: 58.3 + brightMagenta: 59 + brightCyan: 74.9 + brightWhite: 75.9 diff --git a/themes/jannchie-black.yaml b/themes/jannchie-black.yaml new file mode 100644 index 00000000..974bfbfd --- /dev/null +++ b/themes/jannchie-black.yaml @@ -0,0 +1,49 @@ +name: "Jannchie Black" +source: + marketplace_id: "Jannchie.theme-jannchie" + version: "1.1.0" + installs: 78 + author: "Jannchie" + repo: "https://github.com/jannchie/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" +colors: + bg: "#000000" + fg: "#DBD7CA" + black: "#393A34" + red: "#DB5A5A" + green: "#33B07E" + yellow: "#E4C150" + blue: "#4BABF2" + magenta: "#F24391" + cyan: "#57CBDD" + white: "#D4D4D4" + brightBlack: "#A3A3A3" + brightRed: "#DB5A5A" + brightGreen: "#33B07E" + brightYellow: "#E4C150" + brightBlue: "#4BABF2" + brightMagenta: "#F24391" + brightCyan: "#57CBDD" + brightWhite: "#DBD7CA" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 82.3 + black: 0 + red: 37.5 + green: 49.2 + yellow: 71.1 + blue: 53.2 + magenta: 40.3 + cyan: 66.3 + white: 80.5 + brightBlack: 52.5 + brightRed: 37.5 + brightGreen: 49.2 + brightYellow: 71.1 + brightBlue: 53.2 + brightMagenta: 40.3 + brightCyan: 66.3 + brightWhite: 82.3 diff --git a/themes/jannchie-dark-soft.yaml b/themes/jannchie-dark-soft.yaml new file mode 100644 index 00000000..4accded1 --- /dev/null +++ b/themes/jannchie-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Jannchie Dark Soft" +source: + marketplace_id: "Jannchie.theme-jannchie" + version: "1.1.0" + installs: 78 + author: "Jannchie" + repo: "https://github.com/jannchie/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" +colors: + bg: "#171717" + fg: "#D4D4D4" + black: "#393A34" + red: "#DB5A5A" + green: "#33B07E" + yellow: "#E4C150" + blue: "#4BABF2" + magenta: "#F24391" + cyan: "#57CBDD" + white: "#D4D4D4" + brightBlack: "#A3A3A3" + brightRed: "#DB5A5A" + brightGreen: "#33B07E" + brightYellow: "#E4C150" + brightBlue: "#4BABF2" + brightMagenta: "#F24391" + brightCyan: "#57CBDD" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 79.5 + black: 0 + red: 36.5 + green: 48.2 + yellow: 70.1 + blue: 52.2 + magenta: 39.3 + cyan: 65.3 + white: 79.5 + brightBlack: 51.4 + brightRed: 36.5 + brightGreen: 48.2 + brightYellow: 70.1 + brightBlue: 52.2 + brightMagenta: 39.3 + brightCyan: 65.3 + brightWhite: 79.5 diff --git a/themes/jannchie-dark.yaml b/themes/jannchie-dark.yaml new file mode 100644 index 00000000..83ca2599 --- /dev/null +++ b/themes/jannchie-dark.yaml @@ -0,0 +1,49 @@ +name: "Jannchie Dark" +source: + marketplace_id: "Jannchie.theme-jannchie" + version: "1.1.0" + installs: 78 + author: "Jannchie" + repo: "https://github.com/jannchie/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" +colors: + bg: "#0F0F0F" + fg: "#D4D4D4" + black: "#393A34" + red: "#DB5A5A" + green: "#33B07E" + yellow: "#E4C150" + blue: "#4BABF2" + magenta: "#F24391" + cyan: "#57CBDD" + white: "#D4D4D4" + brightBlack: "#A3A3A3" + brightRed: "#DB5A5A" + brightGreen: "#33B07E" + brightYellow: "#E4C150" + brightBlue: "#4BABF2" + brightMagenta: "#F24391" + brightCyan: "#57CBDD" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 80.1 + black: 0 + red: 37.1 + green: 48.8 + yellow: 70.7 + blue: 52.9 + magenta: 40 + cyan: 65.9 + white: 80.1 + brightBlack: 52.1 + brightRed: 37.1 + brightGreen: 48.8 + brightYellow: 70.7 + brightBlue: 52.9 + brightMagenta: 40 + brightCyan: 65.9 + brightWhite: 80.1 diff --git a/themes/jannchie-light-soft.yaml b/themes/jannchie-light-soft.yaml new file mode 100644 index 00000000..4022084c --- /dev/null +++ b/themes/jannchie-light-soft.yaml @@ -0,0 +1,49 @@ +name: "Jannchie Light Soft" +source: + marketplace_id: "Jannchie.theme-jannchie" + version: "1.1.0" + installs: 78 + author: "Jannchie" + repo: "https://github.com/jannchie/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" +colors: + bg: "#F1F0E9" + fg: "#393A34" + black: "#FFFFFF" + red: "#AB5959" + green: "#116E46" + yellow: "#998114" + blue: "#1D5E97" + magenta: "#A13865" + cyan: "#2993A3" + white: "#393A34" + brightBlack: "#4E4F47" + brightRed: "#AB5959" + brightGreen: "#116E46" + brightYellow: "#998114" + brightBlue: "#1D5E97" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#393A34" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 87.4 + black: 7.8 + red: 64.4 + green: 71.8 + yellow: 56.4 + blue: 73.9 + magenta: 72 + cyan: 54.4 + white: 87.4 + brightBlack: 79.6 + brightRed: 64.4 + brightGreen: 71.8 + brightYellow: 56.4 + brightBlue: 73.9 + brightMagenta: 72 + brightCyan: 54.4 + brightWhite: 87.4 diff --git a/themes/jannchie-light.yaml b/themes/jannchie-light.yaml new file mode 100644 index 00000000..0e72a6f6 --- /dev/null +++ b/themes/jannchie-light.yaml @@ -0,0 +1,49 @@ +name: "Jannchie Light" +source: + marketplace_id: "Jannchie.theme-jannchie" + version: "1.1.0" + installs: 78 + author: "Jannchie" + repo: "https://github.com/jannchie/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" +colors: + bg: "#FFFFFF" + fg: "#393A34" + black: "#FFFFFF" + red: "#AB5959" + green: "#116E46" + yellow: "#998114" + blue: "#1D5E97" + magenta: "#A13865" + cyan: "#2993A3" + white: "#393A34" + brightBlack: "#4E4F47" + brightRed: "#AB5959" + brightGreen: "#116E46" + brightYellow: "#998114" + brightBlue: "#1D5E97" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#393A34" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 96.5 + black: 0 + red: 73.5 + green: 80.9 + yellow: 65.5 + blue: 83 + magenta: 81.1 + cyan: 63.5 + white: 96.5 + brightBlack: 88.7 + brightRed: 73.5 + brightGreen: 80.9 + brightYellow: 65.5 + brightBlue: 83 + brightMagenta: 81.1 + brightCyan: 63.5 + brightWhite: 96.5 diff --git a/themes/janus-light.yaml b/themes/janus-light.yaml new file mode 100644 index 00000000..c6fdfa80 --- /dev/null +++ b/themes/janus-light.yaml @@ -0,0 +1,49 @@ +name: "Janus Light" +source: + marketplace_id: "Janus.janus-light" + version: "0.2.4" + installs: 119 + author: "Janus" + repo: "https://github.com/Janus1984/janus-light" + url: "https://marketplace.visualstudio.com/items?itemName=Janus.janus-light" +colors: + bg: "#FFFFFB" + fg: "#333333" + black: "#000000" + red: "#FF6C69" + green: "#56FA48" + yellow: "#FFD864" + blue: "#85E7FA" + magenta: "#AE90E9" + cyan: "#85E7EE" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#CBE645" + brightYellow: "#FFD864" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#85E7EE" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 98.5 + black: 105.9 + red: 52.4 + green: 18 + yellow: 18.1 + blue: 19.8 + magenta: 51.1 + cyan: 20.4 + white: 29.9 + brightBlack: 77.7 + brightRed: 54.1 + brightGreen: 19.3 + brightYellow: 18.1 + brightBlue: 65.8 + brightMagenta: 43.5 + brightCyan: 20.4 + brightWhite: 0 diff --git a/themes/japanese-breakfast.yaml b/themes/japanese-breakfast.yaml new file mode 100644 index 00000000..864b14fc --- /dev/null +++ b/themes/japanese-breakfast.yaml @@ -0,0 +1,49 @@ +name: "Japanese Breakfast" +source: + marketplace_id: "bigboi.legally-blind" + version: "0.1.7" + installs: 971 + author: "bigboi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=bigboi.legally-blind" +colors: + bg: "#000000" + fg: "#D42450" + black: "#08040B" + red: "#D42450" + green: "#A9D400" + yellow: "#D95702" + blue: "#301D78" + magenta: "#D42450" + cyan: "#00A7B5" + white: "#E9C8D3" + brightBlack: "#27214D" + brightRed: "#D42450" + brightGreen: "#A9D400" + brightYellow: "#D95702" + brightBlue: "#301D78" + brightMagenta: "#D42450" + brightCyan: "#00A7B5" + brightWhite: "#C6E4E4" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 28.7 + black: 0 + red: 28.7 + green: 71.5 + yellow: 35.7 + blue: 0 + magenta: 28.7 + cyan: 46.9 + white: 78.3 + brightBlack: 0 + brightRed: 28.7 + brightGreen: 71.5 + brightYellow: 35.7 + brightBlue: 0 + brightMagenta: 28.7 + brightCyan: 46.9 + brightWhite: 86.7 diff --git a/themes/jartur.yaml b/themes/jartur.yaml new file mode 100644 index 00000000..97c31183 --- /dev/null +++ b/themes/jartur.yaml @@ -0,0 +1,49 @@ +name: "Jartur" +source: + marketplace_id: "Jartur.j-artur-theme" + version: "0.10.7" + installs: 220 + author: "Jartur" + repo: "https://github.com/j-artur/j-artur-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Jartur.j-artur-theme" +colors: + bg: "#111316" + fg: "#A3ABB8" + black: "#3F4451" + red: "#E05561" + green: "#6CDD5F" + yellow: "#F1FA8C" + blue: "#4AA5F0" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#7CED71" + brightYellow: "#FFFFA5" + brightBlue: "#4DC4FF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 55.8 + black: 9.2 + red: 37.1 + green: 71.1 + yellow: 98.9 + blue: 50 + magenta: 54.9 + cyan: 84.3 + white: 102.3 + brightBlack: 15.8 + brightRed: 46.4 + brightGreen: 80.3 + brightYellow: 103.9 + brightBlue: 64.1 + brightMagenta: 63 + brightCyan: 97.1 + brightWhite: 107.2 diff --git a/themes/jarvis-3d.yaml b/themes/jarvis-3d.yaml new file mode 100644 index 00000000..4a18e874 --- /dev/null +++ b/themes/jarvis-3d.yaml @@ -0,0 +1,49 @@ +name: "Jarvis 3D" +source: + marketplace_id: "nextgencode.jarvis-3d-theme" + version: "1.1.0" + installs: 72 + author: "NextGenCode" + repo: "https://github.com/Mattzey/jarvis-3d-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.jarvis-3d-theme" +colors: + bg: "#0A1628" + fg: "#E0F7FF" + black: "#0A1628" + red: "#FF4757" + green: "#00FF9F" + yellow: "#FFAA00" + blue: "#4D9FFF" + magenta: "#6A5AFF" + cyan: "#00D9FF" + white: "#E0F7FF" + brightBlack: "#2D5A7A" + brightRed: "#FF6B6B" + brightGreen: "#5AFFB8" + brightYellow: "#FFD95A" + brightBlue: "#7AB8FF" + brightMagenta: "#8D7AFF" + brightCyan: "#5AFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 258 + contrast: + fg: 99 + black: 0 + red: 41.4 + green: 87.4 + yellow: 65.5 + blue: 48.6 + magenta: 29.1 + cyan: 72.3 + white: 99 + brightBlack: 15.7 + brightRed: 48.1 + brightGreen: 89.5 + brightYellow: 84.6 + brightBlue: 61 + brightMagenta: 40.6 + brightCyan: 92.6 + brightWhite: 106.9 diff --git a/themes/jarvis.yaml b/themes/jarvis.yaml new file mode 100644 index 00000000..f11a3d26 --- /dev/null +++ b/themes/jarvis.yaml @@ -0,0 +1,49 @@ +name: "Jarvis" +source: + marketplace_id: "ArmandoChaparro.jarvisdarktheme" + version: "1.6.0" + installs: 1758 + author: "Armando Chaparro" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ArmandoChaparro.jarvisdarktheme" +colors: + bg: "#1F1F1F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.9 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/jasmine.yaml b/themes/jasmine.yaml new file mode 100644 index 00000000..f1dc0b2c --- /dev/null +++ b/themes/jasmine.yaml @@ -0,0 +1,49 @@ +name: "Jasmine" +source: + marketplace_id: "maneeshaindrachapa.jasmine" + version: "0.0.2" + installs: 2898 + author: "Maneesha Indrachapa" + repo: "https://github.com/maneeshaindrachapa/jasmine-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=maneeshaindrachapa.jasmine" +colors: + bg: "#1D2433" + fg: "#A2AABC" + black: "#2F3B54" + red: "#EF6B73" + green: "#BAE67E" + yellow: "#E5CCF4" + blue: "#BAC7FB" + magenta: "#C3A6FF" + cyan: "#BAC7FB" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#BAE67E" + brightYellow: "#E5CCF4" + brightBlue: "#BAC7FB" + brightMagenta: "#C3A6FF" + brightCyan: "#BAC7FB" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "orange" + hue: 265 + contrast: + fg: 53.3 + black: 0 + red: 43.1 + green: 80.2 + yellow: 78.2 + blue: 71 + magenta: 59.6 + cyan: 71 + white: 53.3 + brightBlack: 9.4 + brightRed: 43.1 + brightGreen: 80.2 + brightYellow: 78.2 + brightBlue: 71 + brightMagenta: 59.6 + brightCyan: 71 + brightWhite: 53.3 diff --git a/themes/java-dark-theme.yaml b/themes/java-dark-theme.yaml new file mode 100644 index 00000000..97d08ede --- /dev/null +++ b/themes/java-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Java Dark Theme" +source: + marketplace_id: "Heejunnet.java-dark-theme" + version: "1.0.8" + installs: 28 + author: "Heejun.net" + repo: "https://github.com/popul9/java-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Heejunnet.java-dark-theme" +colors: + bg: "#1E1E1E" + fg: "#A9B7C6" + black: "#1E1E1E" + red: "#FF6B68" + green: "#6A8759" + yellow: "#FFC66D" + blue: "#4A9EFF" + magenta: "#CC7832" + cyan: "#6BDFFF" + white: "#A9B7C6" + brightBlack: "#1E1E1E" + brightRed: "#FF8785" + brightGreen: "#8FC78B" + brightYellow: "#FFD891" + brightBlue: "#75BFFF" + brightMagenta: "#E89450" + brightCyan: "#8FEDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 60.7 + black: 0 + red: 47.2 + green: 32.4 + yellow: 76.1 + blue: 47.2 + magenta: 39.5 + cyan: 76.5 + white: 60.7 + brightBlack: 0 + brightRed: 54.9 + brightGreen: 62.9 + brightYellow: 84.4 + brightBlue: 62.7 + brightMagenta: 53.4 + brightCyan: 85.4 + brightWhite: 106 diff --git a/themes/javascript-modern-dark.yaml b/themes/javascript-modern-dark.yaml new file mode 100644 index 00000000..c96f6ff1 --- /dev/null +++ b/themes/javascript-modern-dark.yaml @@ -0,0 +1,49 @@ +name: "JavaScript Modern Dark" +source: + marketplace_id: "tryToDEv.cyber-qoder-themes" + version: "1.2.0" + installs: 15 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" +colors: + bg: "#0F1117" + fg: "#E5E7EB" + black: "#0F1117" + red: "#FB923C" + green: "#34D399" + yellow: "#FBBF24" + blue: "#60A5FA" + magenta: "#A78BFA" + cyan: "#38BDF8" + white: "#E5E7EB" + brightBlack: "#64748B" + brightRed: "#FCA5A5" + brightGreen: "#6EE7B7" + brightYellow: "#FDE68A" + brightBlue: "#93C5FD" + brightMagenta: "#C4B5FD" + brightCyan: "#7DD3FC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: 271 + contrast: + fg: 91.7 + black: 0 + red: 57.4 + green: 65.7 + yellow: 73.2 + blue: 51.9 + magenta: 48.8 + cyan: 60.1 + white: 91.7 + brightBlack: 28.1 + brightRed: 66 + brightGreen: 78.5 + brightYellow: 91.4 + brightBlue: 68.7 + brightMagenta: 67.4 + brightCyan: 73.2 + brightWhite: 107.4 diff --git a/themes/javascript-neon-dark.yaml b/themes/javascript-neon-dark.yaml new file mode 100644 index 00000000..0746c362 --- /dev/null +++ b/themes/javascript-neon-dark.yaml @@ -0,0 +1,49 @@ +name: "JavaScript Neon Dark" +source: + marketplace_id: "tryToDEv.cyber-qoder-themes" + version: "1.2.0" + installs: 15 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" +colors: + bg: "#0A0E14" + fg: "#E5E7EB" + black: "#0A0E14" + red: "#FF6B00" + green: "#00FF9D" + yellow: "#FFFF00" + blue: "#00F0FF" + magenta: "#FF00FF" + cyan: "#3B82F6" + white: "#E5E7EB" + brightBlack: "#6B7280" + brightRed: "#FF8C42" + brightGreen: "#5CFFD1" + brightYellow: "#FFFF33" + brightBlue: "#33F0FF" + brightMagenta: "#FF33FF" + brightCyan: "#5C9CFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 258 + contrast: + fg: 91.9 + black: 0 + red: 47.8 + green: 88 + yellow: 102.4 + blue: 84.2 + magenta: 45.9 + cyan: 37.5 + white: 91.9 + brightBlack: 27.8 + brightRed: 56.7 + brightGreen: 91.2 + brightYellow: 102.5 + brightBlue: 84.5 + brightMagenta: 47.6 + brightCyan: 48.8 + brightWhite: 107.6 diff --git a/themes/javascript-vibrant-dark.yaml b/themes/javascript-vibrant-dark.yaml new file mode 100644 index 00000000..7dbf4085 --- /dev/null +++ b/themes/javascript-vibrant-dark.yaml @@ -0,0 +1,49 @@ +name: "JavaScript Vibrant Dark" +source: + marketplace_id: "tryToDEv.cyber-qoder-themes" + version: "1.2.0" + installs: 15 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" +colors: + bg: "#0D0F12" + fg: "#E8E8E8" + black: "#0D0F12" + red: "#FF6B9D" + green: "#6BCB77" + yellow: "#FFEAA7" + blue: "#FF6B6B" + magenta: "#FF9F43" + cyan: "#74B9FF" + white: "#E8E8E8" + brightBlack: "#8B949E" + brightRed: "#FF9CB8" + brightGreen: "#8FD99E" + brightYellow: "#FFF2C7" + brightBlue: "#FF9C9C" + brightMagenta: "#FFB573" + brightCyan: "#9CCBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 50.2 + green: 63.2 + yellow: 94.4 + blue: 48.7 + magenta: 62.6 + cyan: 61.6 + white: 92.6 + brightBlack: 43.7 + brightRed: 64.5 + brightGreen: 73.2 + brightYellow: 99.1 + brightBlue: 63.5 + brightMagenta: 71.1 + brightCyan: 72.3 + brightWhite: 107.5 diff --git a/themes/jaytheme.yaml b/themes/jaytheme.yaml new file mode 100644 index 00000000..ed6841d2 --- /dev/null +++ b/themes/jaytheme.yaml @@ -0,0 +1,49 @@ +name: "jaytheme" +source: + marketplace_id: "Jaywxl.jaytheme" + version: "0.0.6" + installs: 53 + author: "Jaywxl" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Jaywxl.jaytheme" +colors: + bg: "#06272E" + fg: "#FFB5B5" + black: "#CB4646" + red: "#CD3131" + green: "#0DBC79" + yellow: "#2C2C14" + blue: "#2472C8" + magenta: "#5687FB" + cyan: "#11A8CD" + white: "#CD7070" + brightBlack: "#FF5353" + brightRed: "#DB7878" + brightGreen: "#23D18B" + brightYellow: "#7D7D27" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#AB5252" +meta: + mode: "dark" + accent: "orange" + hue: 215 + contrast: + fg: 70.6 + black: 27.5 + red: 25 + green: 51.3 + yellow: 0 + blue: 25.7 + magenta: 38.3 + cyan: 45.8 + white: 37.6 + brightBlack: 41.3 + brightRed: 42.5 + brightGreen: 61.8 + brightYellow: 28.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 23.8 diff --git a/themes/jazari-dark.yaml b/themes/jazari-dark.yaml new file mode 100644 index 00000000..5d50922f --- /dev/null +++ b/themes/jazari-dark.yaml @@ -0,0 +1,49 @@ +name: "Jazari Dark" +source: + marketplace_id: "aala.jazari" + version: "1.2.1" + installs: 22 + author: "AALA IT Solutions" + repo: "https://github.com/aalasolutions/vscode-jazari" + url: "https://marketplace.visualstudio.com/items?itemName=aala.jazari" +colors: + bg: "#0F1114" + fg: "#D0D4DC" + black: "#161920" + red: "#E05C6C" + green: "#5CAE6E" + yellow: "#D4A046" + blue: "#5A9FD6" + magenta: "#B48EDA" + cyan: "#2AACB8" + white: "#D0D4DC" + brightBlack: "#555D6E" + brightRed: "#F07080" + brightGreen: "#72C484" + brightYellow: "#E8B85C" + brightBlue: "#74B5E8" + brightMagenta: "#CCA8F0" + brightCyan: "#44C6D2" + brightWhite: "#E8ECF0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.8 + black: 0 + red: 38.8 + green: 49 + yellow: 55.3 + blue: 46.9 + magenta: 49.3 + cyan: 49 + white: 79.8 + brightBlack: 18.7 + brightRed: 47.1 + brightGreen: 60.5 + brightYellow: 67.8 + brightBlue: 58.4 + brightMagenta: 62.8 + brightCyan: 62.3 + brightWhite: 94.6 diff --git a/themes/jazari-light.yaml b/themes/jazari-light.yaml new file mode 100644 index 00000000..69897614 --- /dev/null +++ b/themes/jazari-light.yaml @@ -0,0 +1,49 @@ +name: "Jazari Light" +source: + marketplace_id: "aala.jazari" + version: "1.2.1" + installs: 22 + author: "AALA IT Solutions" + repo: "https://github.com/aalasolutions/vscode-jazari" + url: "https://marketplace.visualstudio.com/items?itemName=aala.jazari" +colors: + bg: "#E7EBF5" + fg: "#24292E" + black: "#24292E" + red: "#CF2236" + green: "#2E8B3E" + yellow: "#B87514" + blue: "#2871A8" + magenta: "#7C3E9C" + cyan: "#1A8A95" + white: "#E7EBF5" + brightBlack: "#656D76" + brightRed: "#E0394E" + brightGreen: "#3DA050" + brightYellow: "#D08A20" + brightBlue: "#3888C0" + brightMagenta: "#9650B8" + brightCyan: "#20A0AC" + brightWhite: "#FAFBFC" +meta: + mode: "light" + accent: "orange" + hue: 268 + contrast: + fg: 89.6 + black: 89.6 + red: 62.8 + green: 57.5 + yellow: 52.9 + blue: 63.7 + magenta: 71.6 + cyan: 55.9 + white: 0 + brightBlack: 64.2 + brightRed: 56.5 + brightGreen: 48.3 + brightYellow: 42.6 + brightBlue: 53.8 + brightMagenta: 62.7 + brightCyan: 46.1 + brightWhite: 8.3 diff --git a/themes/jcardenas.yaml b/themes/jcardenas.yaml new file mode 100644 index 00000000..9a2e18c7 --- /dev/null +++ b/themes/jcardenas.yaml @@ -0,0 +1,49 @@ +name: "JCardenas" +source: + marketplace_id: "JCardenas.j-cardenas" + version: "0.0.1" + installs: 133 + author: "JCardenas" + repo: "https://github.com/Car-png/jcardenas-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JCardenas.j-cardenas" +colors: + bg: "#202124" + fg: "#796880" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 24.2 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/jcsoftiablack.yaml b/themes/jcsoftiablack.yaml new file mode 100644 index 00000000..f5f288c0 --- /dev/null +++ b/themes/jcsoftiablack.yaml @@ -0,0 +1,49 @@ +name: "jcsoftiaBlack" +source: + marketplace_id: "JCsoftIA.JCsoftIA" + version: "1.5.3" + installs: 8460 + author: "Dark Black Theme jcsoftia" + repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" + url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" +colors: + bg: "#010001" + fg: "#00BCD4" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#00BCD4" + brightBlack: "#808E95" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 57.5 + black: 0 + red: 44.4 + green: 85.9 + yellow: 99.6 + blue: 54.6 + magenta: 55.6 + cyan: 85 + white: 57.5 + brightBlack: 40.5 + brightRed: 49.8 + brightGreen: 90 + brightYellow: 104.5 + brightBlue: 67.1 + brightMagenta: 63.6 + brightCyan: 97.8 + brightWhite: 107.9 diff --git a/themes/jcsoftiadark.yaml b/themes/jcsoftiadark.yaml new file mode 100644 index 00000000..5fe1d662 --- /dev/null +++ b/themes/jcsoftiadark.yaml @@ -0,0 +1,49 @@ +name: "jcsoftiaDark" +source: + marketplace_id: "JCsoftIA.JCsoftIA" + version: "1.5.3" + installs: 8460 + author: "Dark Black Theme jcsoftia" + repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" + url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" +colors: + bg: "#00010B" + fg: "#00BCD4" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#00BCD4" + brightBlack: "#808E95" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 263 + contrast: + fg: 57.5 + black: 0 + red: 44.4 + green: 85.9 + yellow: 99.5 + blue: 54.6 + magenta: 55.6 + cyan: 85 + white: 57.5 + brightBlack: 40.4 + brightRed: 49.8 + brightGreen: 90 + brightYellow: 104.5 + brightBlue: 67.1 + brightMagenta: 63.6 + brightCyan: 97.8 + brightWhite: 107.9 diff --git a/themes/jcsoftiadarkblue.yaml b/themes/jcsoftiadarkblue.yaml new file mode 100644 index 00000000..09473cab --- /dev/null +++ b/themes/jcsoftiadarkblue.yaml @@ -0,0 +1,49 @@ +name: "jcsoftiaDarkBlue" +source: + marketplace_id: "JCsoftIA.JCsoftIA" + version: "1.5.3" + installs: 8460 + author: "Dark Black Theme jcsoftia" + repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" + url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" +colors: + bg: "#00050C" + fg: "#B6FFFF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#00BCD4" + brightBlack: "#808E95" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 241 + contrast: + fg: 99.3 + black: 0 + red: 44.4 + green: 85.9 + yellow: 99.5 + blue: 54.6 + magenta: 55.5 + cyan: 84.9 + white: 57.5 + brightBlack: 40.4 + brightRed: 49.8 + brightGreen: 90 + brightYellow: 104.5 + brightBlue: 67.1 + brightMagenta: 63.6 + brightCyan: 97.8 + brightWhite: 107.8 diff --git a/themes/jcsoftiadarkred.yaml b/themes/jcsoftiadarkred.yaml new file mode 100644 index 00000000..9d292cc2 --- /dev/null +++ b/themes/jcsoftiadarkred.yaml @@ -0,0 +1,49 @@ +name: "jcsoftiaDarkRed" +source: + marketplace_id: "JCsoftIA.JCsoftIA" + version: "1.5.3" + installs: 8460 + author: "Dark Black Theme jcsoftia" + repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" + url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" +colors: + bg: "#070000" + fg: "#00BCD4" + black: "#170000" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#00BCD4" + brightBlack: "#808E95" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 29 + contrast: + fg: 57.5 + black: 0 + red: 44.4 + green: 85.9 + yellow: 99.5 + blue: 54.6 + magenta: 55.6 + cyan: 85 + white: 57.5 + brightBlack: 40.4 + brightRed: 49.8 + brightGreen: 90 + brightYellow: 104.5 + brightBlue: 67.1 + brightMagenta: 63.6 + brightCyan: 97.8 + brightWhite: 107.9 diff --git a/themes/jd-s-abyss.yaml b/themes/jd-s-abyss.yaml new file mode 100644 index 00000000..f2dbaa08 --- /dev/null +++ b/themes/jd-s-abyss.yaml @@ -0,0 +1,49 @@ +name: "JD's Abyss" +source: + marketplace_id: "jdboivin.jd-abyss" + version: "2025.1.14" + installs: 103 + author: "Jean-Denis Boivin" + repo: "https://github.com/starburst997/jd-abyss" + url: "https://marketplace.visualstudio.com/items?itemName=jdboivin.jd-abyss" +colors: + bg: "#0C1018" + fg: "#D0D0D9" + black: "#0C1018" + red: "#FF757F" + green: "#98D280" + yellow: "#FFE169" + blue: "#61AFFF" + magenta: "#E18CF5" + cyan: "#17BBDD" + white: "#D0D0D9" + brightBlack: "#555555" + brightRed: "#FF7373" + brightGreen: "#98D280" + brightYellow: "#FFE169" + brightBlue: "#61AFFF" + brightMagenta: "#E18CF5" + brightCyan: "#17BBDD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 78 + black: 0 + red: 51.5 + green: 69.8 + yellow: 88.9 + blue: 56.3 + magenta: 57.3 + cyan: 57.2 + white: 78 + brightBlack: 15.7 + brightRed: 50.7 + brightGreen: 69.8 + brightYellow: 88.9 + brightBlue: 56.3 + brightMagenta: 57.3 + brightCyan: 57.2 + brightWhite: 107.4 diff --git a/themes/jdarkmaterial-v2.yaml b/themes/jdarkmaterial-v2.yaml new file mode 100644 index 00000000..cc35c98a --- /dev/null +++ b/themes/jdarkmaterial-v2.yaml @@ -0,0 +1,49 @@ +name: "JDarkMaterial v2" +source: + marketplace_id: "Jijin.jin-themes" + version: "1.0.5" + installs: 326 + author: "Jijin" + repo: "https://github.com/JijinJayakumar/jin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Jijin.jin-themes" +colors: + bg: "#0A0C0F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.3 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/jdh.yaml b/themes/jdh.yaml new file mode 100644 index 00000000..8095f846 --- /dev/null +++ b/themes/jdh.yaml @@ -0,0 +1,49 @@ +name: "jdh" +source: + marketplace_id: "starnumber.jdh-vimrc" + version: "0.0.1" + installs: 465 + author: "StarNumber" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=starnumber.jdh-vimrc" +colors: + bg: "#262626" + fg: "#6C6C6C" + black: "#0C0C0C" + red: "#C50F1F" + green: "#178713" + yellow: "#C19C00" + blue: "#0037DA" + magenta: "#B4009E" + cyan: "#3B78FF" + white: "#C1C1C1" + brightBlack: "#585858" + brightRed: "#E74856" + brightGreen: "#16C60C" + brightYellow: "#F9F1A5" + brightBlue: "#3767D1" + brightMagenta: "#FF5F87" + brightCyan: "#61D6D6" + brightWhite: "#AFAFAF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 22.5 + black: 0 + red: 20.7 + green: 26.9 + yellow: 48 + blue: 12.2 + magenta: 20.6 + cyan: 32.3 + white: 66.1 + brightBlack: 14.2 + brightRed: 33.8 + brightGreen: 54.4 + brightYellow: 93.9 + brightBlue: 23.2 + brightMagenta: 44.3 + brightCyan: 68.4 + brightWhite: 55.9 diff --git a/themes/jehuty-dark.yaml b/themes/jehuty-dark.yaml new file mode 100644 index 00000000..4b9a75d0 --- /dev/null +++ b/themes/jehuty-dark.yaml @@ -0,0 +1,49 @@ +name: "Jehuty Dark" +source: + marketplace_id: "Meastblue.orbital-frame" + version: "2.2.0" + installs: 66 + author: "Meastblue" + repo: "https://github.com/meastblue/orbital-frame-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" +colors: + bg: "#0D1117" + fg: "#EEF0F9" + black: "#0D1117" + red: "#DC3657" + green: "#23D18B" + yellow: "#FFC368" + blue: "#2B7ECA" + magenta: "#AD5DCA" + cyan: "#24C0CF" + white: "#EEF0F9" + brightBlack: "#545864" + brightRed: "#F4587E" + brightGreen: "#4BF3C8" + brightYellow: "#FFD493" + brightBlue: "#54B9FF" + brightMagenta: "#CC75F4" + brightCyan: "#00DAEF" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "red" + hue: 258 + contrast: + fg: 97.7 + black: 0 + red: 31.7 + green: 64 + yellow: 76.2 + blue: 32.2 + magenta: 33.9 + cyan: 58.7 + white: 97.7 + brightBlack: 16.8 + brightRed: 42.9 + brightGreen: 83.8 + brightYellow: 84 + brightBlue: 59.8 + brightMagenta: 47.4 + brightCyan: 72.3 + brightWhite: 104.1 diff --git a/themes/jehuty-light.yaml b/themes/jehuty-light.yaml new file mode 100644 index 00000000..95592a08 --- /dev/null +++ b/themes/jehuty-light.yaml @@ -0,0 +1,49 @@ +name: "Jehuty Light" +source: + marketplace_id: "Meastblue.orbital-frame" + version: "2.2.0" + installs: 66 + author: "Meastblue" + repo: "https://github.com/meastblue/orbital-frame-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" +colors: + bg: "#FFFFFF" + fg: "#212529" + black: "#343A40" + red: "#C82333" + green: "#1E7E34" + yellow: "#E0A800" + blue: "#0056B3" + magenta: "#5A1A5A" + cyan: "#138496" + white: "#F8F9FA" + brightBlack: "#6C757D" + brightRed: "#DC3545" + brightGreen: "#28A745" + brightYellow: "#FFC107" + brightBlue: "#0D6EFD" + brightMagenta: "#6F42C1" + brightCyan: "#17A2B8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 102.4 + black: 96.5 + red: 76.2 + green: 75 + yellow: 41.9 + blue: 83.6 + magenta: 96.9 + cyan: 70.1 + white: 0 + brightBlack: 72.6 + brightRed: 69.9 + brightGreen: 57.9 + brightYellow: 27.8 + brightBlue: 70.3 + brightMagenta: 81.7 + brightCyan: 56.8 + brightWhite: 0 diff --git a/themes/jelly-theme.yaml b/themes/jelly-theme.yaml new file mode 100644 index 00000000..d2ea8c47 --- /dev/null +++ b/themes/jelly-theme.yaml @@ -0,0 +1,49 @@ +name: "jelly-theme" +source: + marketplace_id: "NemanjaManojlovic.jelly" + version: "0.0.5" + installs: 20202 + author: "Nemanja Manojlovic" + repo: "https://github.com/Manojlovic1998/vscode-jelly-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NemanjaManojlovic.jelly" +colors: + bg: "#18181B" + fg: "#FAFAFA" + black: "#0A0A0A" + red: "#E11D48" + green: "#16A34A" + yellow: "#FBBF24" + blue: "#2563EB" + magenta: "#C026D3" + cyan: "#0891B2" + white: "#F5F5F5" + brightBlack: "#737373" + brightRed: "#FB7185" + brightGreen: "#4ADE80" + brightYellow: "#FDE68A" + brightBlue: "#60A5FA" + brightMagenta: "#E879F9" + brightCyan: "#22D3EE" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 103.4 + black: 0 + red: 30 + green: 40.8 + yellow: 72.6 + blue: 25.7 + magenta: 29.5 + cyan: 36.7 + white: 100.2 + brightBlack: 27.6 + brightRed: 49.1 + brightGreen: 70.3 + brightYellow: 90.7 + brightBlue: 51.2 + brightMagenta: 53 + brightCyan: 68.5 + brightWhite: 103.4 diff --git a/themes/jelly.yaml b/themes/jelly.yaml new file mode 100644 index 00000000..47796c4c --- /dev/null +++ b/themes/jelly.yaml @@ -0,0 +1,49 @@ +name: "jelly" +source: + marketplace_id: "kylethebaker.jelly-theme" + version: "0.0.4" + installs: 21817 + author: "kylethebaker" + repo: "https://github.com/kylethebaker/jelly-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kylethebaker.jelly-theme" +colors: + bg: "#0A0B12" + fg: "#C5C8C6" + black: "#1C1C1C" + red: "#B85335" + green: "#799D6A" + yellow: "#FFB964" + blue: "#667899" + magenta: "#8787AF" + cyan: "#668799" + white: "#546B88" + brightBlack: "#3D3A53" + brightRed: "#CF6A4C" + brightGreen: "#99AD6A" + brightYellow: "#FAD07A" + brightBlue: "#8197BF" + brightMagenta: "#C6B6EE" + brightCyan: "#8FBFDC" + brightWhite: "#E8E8D3" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 72.6 + black: 0 + red: 28.4 + green: 44 + yellow: 72.5 + blue: 30.6 + magenta: 39.6 + cyan: 35.7 + white: 24.3 + brightBlack: 0 + brightRed: 38.3 + brightGreen: 53.5 + brightYellow: 81.3 + brightBlue: 45.6 + brightMagenta: 67.4 + brightCyan: 64.2 + brightWhite: 91.8 diff --git a/themes/jellybeans-theme.yaml b/themes/jellybeans-theme.yaml new file mode 100644 index 00000000..64309700 --- /dev/null +++ b/themes/jellybeans-theme.yaml @@ -0,0 +1,49 @@ +name: "jellybeans-theme" +source: + marketplace_id: "DimitarNonov.jellybeans-theme" + version: "1.14.1" + installs: 13625 + author: "Dimitar Nonov" + repo: "https://github.com/DNonov/jellybeans-code" + url: "https://marketplace.visualstudio.com/items?itemName=DimitarNonov.jellybeans-theme" +colors: + bg: "#151515" + fg: "#E8E8D3" + black: "#E8E8D3" + red: "#CF6A4C" + green: "#99AD6A" + yellow: "#FAD07A" + blue: "#8197BF" + magenta: "#B267E6" + cyan: "#6796E6" + white: "#E8E8D3" + brightBlack: "#E8E8D3" + brightRed: "#CF6A4C" + brightGreen: "#99AD6A" + brightYellow: "#FAD07A" + brightBlue: "#8197BF" + brightMagenta: "#B267E6" + brightCyan: "#6796E6" + brightWhite: "#E8E8D3" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 91.2 + black: 91.2 + red: 37.6 + green: 52.8 + yellow: 80.6 + blue: 44.9 + magenta: 38.6 + cyan: 44.9 + white: 91.2 + brightBlack: 91.2 + brightRed: 37.6 + brightGreen: 52.8 + brightYellow: 80.6 + brightBlue: 44.9 + brightMagenta: 38.6 + brightCyan: 44.9 + brightWhite: 91.2 diff --git a/themes/jellybeans.yaml b/themes/jellybeans.yaml new file mode 100644 index 00000000..727b33e6 --- /dev/null +++ b/themes/jellybeans.yaml @@ -0,0 +1,49 @@ +name: "Jellybeans" +source: + marketplace_id: "sdwn.jellybeans-vscode-sdwn" + version: "0.0.2" + installs: 13 + author: "sdwn" + repo: "https://github.com/sdawn29/jellybeans-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sdwn.jellybeans-vscode-sdwn" +colors: + bg: "#151515" + fg: "#E8E8D3" + black: "#252525" + red: "#CF6A4C" + green: "#99AD6A" + yellow: "#FAD07A" + blue: "#8197BF" + magenta: "#C6B6EE" + cyan: "#8FBFDC" + white: "#E8E8D3" + brightBlack: "#7A7268" + brightRed: "#E5786D" + brightGreen: "#B8C993" + brightYellow: "#FFB964" + brightBlue: "#A5B5D0" + brightMagenta: "#D9CFF5" + brightCyan: "#AAD2E8" + brightWhite: "#F5F5EB" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.2 + black: 0 + red: 37.6 + green: 52.8 + yellow: 80.6 + blue: 44.9 + magenta: 66.8 + cyan: 63.6 + white: 91.2 + brightBlack: 28 + brightRed: 46.1 + brightGreen: 69.1 + brightYellow: 71.9 + brightBlue: 60.9 + brightMagenta: 79.8 + brightCyan: 75 + brightWhite: 100 diff --git a/themes/jellyfish.yaml b/themes/jellyfish.yaml new file mode 100644 index 00000000..ff187f7a --- /dev/null +++ b/themes/jellyfish.yaml @@ -0,0 +1,49 @@ +name: "Jellyfish" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2036 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" +colors: + bg: "#0F1419" + fg: "#C2A5F0" + black: "#2D3748" + red: "#FF66B3" + green: "#80FFEE" + yellow: "#FF99FF" + blue: "#C299FF" + magenta: "#FF66B3" + cyan: "#80FFEE" + white: "#FF99DD" + brightBlack: "#4A5568" + brightRed: "#FF80CC" + brightGreen: "#99FFF2" + brightYellow: "#FFB3FF" + brightBlue: "#D6B3FF" + brightMagenta: "#FF80CC" + brightCyan: "#B3FFF7" + brightWhite: "#FFCCEE" +meta: + mode: "dark" + accent: "red" + hue: 249 + contrast: + fg: 60.2 + black: 0 + red: 49.7 + green: 93.8 + yellow: 66.9 + blue: 57 + magenta: 49.7 + cyan: 93.8 + white: 64.9 + brightBlack: 15.2 + brightRed: 56.9 + brightGreen: 95.6 + brightYellow: 75.4 + brightBlue: 69 + brightMagenta: 56.9 + brightCyan: 98 + brightWhite: 84 diff --git a/themes/jeng-light.yaml b/themes/jeng-light.yaml new file mode 100644 index 00000000..d45cd214 --- /dev/null +++ b/themes/jeng-light.yaml @@ -0,0 +1,49 @@ +name: "Jeng Light" +source: + marketplace_id: "jeng.jeng-theme-light" + version: "1.0.5" + installs: 17375 + author: "jeng" + repo: "https://github.com/jengjeng/jeng-theme-light" + url: "https://marketplace.visualstudio.com/items?itemName=jeng.jeng-theme-light" +colors: + bg: "#FAFAFA" + fg: "#5C6066" + black: "#000000" + red: "#F2590C" + green: "#77CC00" + yellow: "#F29718" + blue: "#41A6D9" + magenta: "#9966CC" + cyan: "#4DBF99" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#D6656A" + brightGreen: "#A3D900" + brightYellow: "#E7C547" + brightBlue: "#6871FF" + brightMagenta: "#A37ACC" + brightCyan: "#57D9AD" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 78.5 + black: 103 + red: 57.2 + green: 35.7 + yellow: 41.5 + blue: 49.6 + magenta: 64.9 + cyan: 41.6 + white: 27.1 + brightBlack: 74.9 + brightRed: 59.5 + brightGreen: 26.5 + brightYellow: 26.7 + brightBlue: 63 + brightMagenta: 58.2 + brightCyan: 28.9 + brightWhite: 0 diff --git a/themes/jetbrain-fleet-color.yaml b/themes/jetbrain-fleet-color.yaml new file mode 100644 index 00000000..d2479d36 --- /dev/null +++ b/themes/jetbrain-fleet-color.yaml @@ -0,0 +1,49 @@ +name: "Jetbrain-Fleet color" +source: + marketplace_id: "verteres1001.anysphere-dark-greener" + version: "1.1.2" + installs: 785 + author: "verteres" + repo: "https://github.com/JohanTiniusSkjelberg/anysphere-greener" + url: "https://marketplace.visualstudio.com/items?itemName=verteres1001.anysphere-dark-greener" +colors: + bg: "#181818" + fg: "#D6D6DD" + black: "#676767" + red: "#F14C4C" + green: "#15AC91" + yellow: "#E5B95C" + blue: "#4C9DF3" + magenta: "#E567DC" + cyan: "#75D3BA" + white: "#D6D6DD" + brightBlack: "#676767" + brightRed: "#F14C4C" + brightGreen: "#69AF83" + brightYellow: "#E5B95C" + brightBlue: "#3993B1" + brightMagenta: "#E567DC" + brightCyan: "#75D3BA" + brightWhite: "#D6D6DD" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.9 + black: 22.4 + red: 38.5 + green: 46.5 + yellow: 67.1 + blue: 46.7 + magenta: 46.4 + cyan: 68.8 + white: 80.9 + brightBlack: 22.4 + brightRed: 38.5 + brightGreen: 50.1 + brightYellow: 67.1 + brightBlue: 38.2 + brightMagenta: 46.4 + brightCyan: 68.8 + brightWhite: 80.9 diff --git a/themes/jetbrains-dark-theme.yaml b/themes/jetbrains-dark-theme.yaml new file mode 100644 index 00000000..b58b3326 --- /dev/null +++ b/themes/jetbrains-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "JetBrains Dark Theme" +source: + marketplace_id: "kenethriera.jb-theme" + version: "1.0.27" + installs: 5676 + author: "Keneth Riera" + repo: "https://github.com/rierarizzo/jetbrains-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kenethriera.jb-theme" +colors: + bg: "#1E1F22" + fg: "#BCBEC4" + black: "#151515" + red: "#AC4142" + green: "#7E8E50" + yellow: "#E5B567" + blue: "#6C99BB" + magenta: "#9F4E85" + cyan: "#7DD6CF" + white: "#D0D0D0" + brightBlack: "#505050" + brightRed: "#AC4142" + brightGreen: "#7E8E50" + brightYellow: "#E5B567" + brightBlue: "#6C99BB" + brightMagenta: "#9F4E85" + brightCyan: "#7DD6CF" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65.5 + black: 0 + red: 21.3 + green: 36.4 + yellow: 64.8 + blue: 42.7 + magenta: 23.3 + cyan: 70.7 + white: 76.1 + brightBlack: 12.2 + brightRed: 21.3 + brightGreen: 36.4 + brightYellow: 64.8 + brightBlue: 42.7 + brightMagenta: 23.3 + brightCyan: 70.7 + brightWhite: 99.3 diff --git a/themes/jetbrains-deep-dark-theme.yaml b/themes/jetbrains-deep-dark-theme.yaml new file mode 100644 index 00000000..72dfab05 --- /dev/null +++ b/themes/jetbrains-deep-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "JetBrains Deep Dark Theme" +source: + marketplace_id: "kenethriera.jb-theme" + version: "1.0.27" + installs: 5676 + author: "Keneth Riera" + repo: "https://github.com/rierarizzo/jetbrains-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kenethriera.jb-theme" +colors: + bg: "#121314" + fg: "#BBBEBF" + black: "#2A2A2A" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#2A2A2A" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#ABB2BF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 66.5 + black: 0 + red: 42.4 + green: 62.6 + yellow: 70.9 + blue: 55 + magenta: 45.5 + cyan: 54.9 + white: 59.8 + brightBlack: 0 + brightRed: 42.4 + brightGreen: 62.6 + brightYellow: 70.9 + brightBlue: 55 + brightMagenta: 45.5 + brightCyan: 54.9 + brightWhite: 59.8 diff --git a/themes/jetbrains-ide-dark-theme.yaml b/themes/jetbrains-ide-dark-theme.yaml new file mode 100644 index 00000000..e8d419fa --- /dev/null +++ b/themes/jetbrains-ide-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "JetBrains IDE Dark Theme" +source: + marketplace_id: "mdmarufsarker.maruf-sarker" + version: "0.1.1" + installs: 29145 + author: "Md. Maruf Sarker" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" +colors: + bg: "#0C1924" + fg: "#2FE2FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 245 + contrast: + fg: 76.7 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/jetcode.yaml b/themes/jetcode.yaml new file mode 100644 index 00000000..acee4d07 --- /dev/null +++ b/themes/jetcode.yaml @@ -0,0 +1,49 @@ +name: "JetCode" +source: + marketplace_id: "justanotherbyte.jetcode" + version: "0.0.3" + installs: 652 + author: "justanotherbyte" + repo: "https://github.com/justanotherbyte/jetcode" + url: "https://marketplace.visualstudio.com/items?itemName=justanotherbyte.jetcode" +colors: + bg: "#1E1F22" + fg: "#CACCD2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.7 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/jetdark.yaml b/themes/jetdark.yaml new file mode 100644 index 00000000..baef9db2 --- /dev/null +++ b/themes/jetdark.yaml @@ -0,0 +1,49 @@ +name: "JetDark" +source: + marketplace_id: "AlexanderAlekseenko.jetdark" + version: "1.2.0" + installs: 2126 + author: "Alexander Alekseenko" + repo: "https://github.com/Akaike/vsc-jetdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.jetdark" +colors: + bg: "#1E1F22" + fg: "#CED0D6" + black: "#222325" + red: "#E05561" + green: "#76C67A" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#8DCF56" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 76.1 + black: 0 + red: 35.7 + green: 60 + yellow: 47.6 + blue: 48.7 + magenta: 38.1 + cyan: 51.5 + white: 89.7 + brightBlack: 14.5 + brightRed: 45.1 + brightGreen: 65.2 + brightYellow: 60.3 + brightBlue: 62.8 + brightMagenta: 49.3 + brightCyan: 66.8 + brightWhite: 82.1 diff --git a/themes/jetverse-dev-dark.yaml b/themes/jetverse-dev-dark.yaml new file mode 100644 index 00000000..168690e6 --- /dev/null +++ b/themes/jetverse-dev-dark.yaml @@ -0,0 +1,49 @@ +name: "JetVerse Dev Dark" +source: + marketplace_id: "SurajPrasad.jetverse-theme" + version: "0.0.9" + installs: 60 + author: "Suraj Prasad" + repo: "https://github.com/SurajPrasaad/jetverse-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SurajPrasad.jetverse-theme" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#BAC2DE" + brightBlack: "#585B70" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#94E2D5" + brightWhite: "#A6ADC8" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 80 + black: 9.3 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 76.7 + cyan: 78.2 + white: 68.1 + brightBlack: 16.9 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 88.4 + brightBlue: 59.1 + brightMagenta: 76.7 + brightCyan: 78.2 + brightWhite: 56.2 diff --git a/themes/jewel-contrast.yaml b/themes/jewel-contrast.yaml new file mode 100644 index 00000000..c7d25a25 --- /dev/null +++ b/themes/jewel-contrast.yaml @@ -0,0 +1,49 @@ +name: "jewel-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#141619" + fg: "#C0CCDB" + black: "#1F2227" + red: "#BA0E2E" + green: "#6299C4" + yellow: "#C262C4" + blue: "#62C47C" + magenta: "#6299C4" + cyan: "#62C47C" + white: "#D0D9E4" + brightBlack: "#414852" + brightRed: "#F03E5F" + brightGreen: "#ACC9E0" + brightYellow: "#DFACE0" + brightBlue: "#ACE0BA" + brightMagenta: "#ACC9E0" + brightCyan: "#ACE0BA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 74 + black: 0 + red: 20.6 + green: 43.6 + yellow: 37.7 + blue: 59 + magenta: 43.6 + cyan: 59 + white: 82 + brightBlack: 10.1 + brightRed: 36.9 + brightGreen: 70.7 + brightYellow: 65.8 + brightBlue: 79.5 + brightMagenta: 70.7 + brightCyan: 79.5 + brightWhite: 107 diff --git a/themes/jewel-light.yaml b/themes/jewel-light.yaml new file mode 100644 index 00000000..a4fda271 --- /dev/null +++ b/themes/jewel-light.yaml @@ -0,0 +1,49 @@ +name: "jewel-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#5C6470" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#6299C4" + yellow: "#C262C4" + blue: "#62C47C" + magenta: "#6299C4" + cyan: "#62C47C" + white: "#68717E" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#ACC9E0" + brightYellow: "#DFACE0" + brightBlue: "#ACE0BA" + brightMagenta: "#ACC9E0" + brightCyan: "#ACE0BA" + brightWhite: "#8F97A3" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 79.9 + black: 0 + red: 80.3 + green: 57.3 + yellow: 63.1 + blue: 42.3 + magenta: 57.3 + cyan: 42.3 + white: 74.2 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 31.1 + brightYellow: 35.8 + brightBlue: 22.9 + brightMagenta: 31.1 + brightCyan: 22.9 + brightWhite: 56 diff --git a/themes/jewel.yaml b/themes/jewel.yaml new file mode 100644 index 00000000..ebf57102 --- /dev/null +++ b/themes/jewel.yaml @@ -0,0 +1,49 @@ +name: "jewel" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#32373D" + fg: "#C0CCDB" + black: "#3D444B" + red: "#BA0E2E" + green: "#6299C4" + yellow: "#C262C4" + blue: "#62C47C" + magenta: "#6299C4" + cyan: "#62C47C" + white: "#D0D9E4" + brightBlack: "#606A75" + brightRed: "#F03E5F" + brightGreen: "#ACC9E0" + brightYellow: "#DFACE0" + brightBlue: "#ACE0BA" + brightMagenta: "#ACC9E0" + brightCyan: "#ACE0BA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + contrast: + fg: 68 + black: 0 + red: 14.7 + green: 37.6 + yellow: 31.7 + blue: 53.1 + magenta: 37.6 + cyan: 53.1 + white: 76.1 + brightBlack: 17.4 + brightRed: 31 + brightGreen: 64.8 + brightYellow: 59.8 + brightBlue: 73.5 + brightMagenta: 64.8 + brightCyan: 73.5 + brightWhite: 101 diff --git a/themes/jg-vsc.yaml b/themes/jg-vsc.yaml new file mode 100644 index 00000000..06f79fd6 --- /dev/null +++ b/themes/jg-vsc.yaml @@ -0,0 +1,49 @@ +name: "JG-VSC" +source: + marketplace_id: "JasonGuro.jg-vsc" + version: "0.0.2" + installs: 665 + author: "Jason Guro" + repo: "https://github.com/jay-guro/jg-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=JasonGuro.jg-vsc" +colors: + bg: "#2F274A" + fg: "#E0DEF4" + black: "#393552" + red: "#EB6F92" + green: "#3E8FB0" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#EA9A97" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#3E8FB0" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#EA9A97" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: 293 + contrast: + fg: 83.6 + black: 0 + red: 42.5 + green: 33.5 + yellow: 70.2 + blue: 68 + magenta: 57 + cyan: 54.8 + white: 83.6 + brightBlack: 37.9 + brightRed: 42.5 + brightGreen: 33.5 + brightYellow: 70.2 + brightBlue: 68 + brightMagenta: 57 + brightCyan: 54.8 + brightWhite: 83.6 diff --git a/themes/jingle-contrast.yaml b/themes/jingle-contrast.yaml new file mode 100644 index 00000000..c20bd832 --- /dev/null +++ b/themes/jingle-contrast.yaml @@ -0,0 +1,49 @@ +name: "jingle-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0D1011" + fg: "#C0CCDB" + black: "#181E1F" + red: "#BA0E2E" + green: "#E06D5C" + yellow: "#7EC579" + blue: "#98ABB7" + magenta: "#E06D5C" + cyan: "#7EC579" + white: "#D0D9E4" + brightBlack: "#39464B" + brightRed: "#F03E5F" + brightGreen: "#F0BAB2" + brightYellow: "#C3E4C0" + brightBlue: "#D4DCE1" + brightMagenta: "#F0BAB2" + brightCyan: "#C3E4C0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 74.5 + black: 0 + red: 21.1 + green: 42.3 + yellow: 61.6 + blue: 54.8 + magenta: 42.3 + cyan: 61.6 + white: 82.5 + brightBlack: 9.4 + brightRed: 37.4 + brightGreen: 72.1 + brightYellow: 84.4 + brightBlue: 84.2 + brightMagenta: 72.1 + brightCyan: 84.4 + brightWhite: 107.5 diff --git a/themes/jingle-light.yaml b/themes/jingle-light.yaml new file mode 100644 index 00000000..9908abeb --- /dev/null +++ b/themes/jingle-light.yaml @@ -0,0 +1,49 @@ +name: "jingle-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#485860" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#E06D5C" + yellow: "#7EC579" + blue: "#98ABB7" + magenta: "#E06D5C" + cyan: "#7EC579" + white: "#53656F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F0BAB2" + brightYellow: "#C3E4C0" + brightBlue: "#D4DCE1" + brightMagenta: "#F0BAB2" + brightCyan: "#C3E4C0" + brightWhite: "#768D98" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 85.7 + black: 0 + red: 80.3 + green: 59 + yellow: 40.3 + blue: 46.8 + magenta: 59 + cyan: 40.3 + white: 80.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 30.2 + brightYellow: 18.7 + brightBlue: 18.9 + brightMagenta: 30.2 + brightCyan: 18.7 + brightWhite: 62.4 diff --git a/themes/jingle.yaml b/themes/jingle.yaml new file mode 100644 index 00000000..8653c9a5 --- /dev/null +++ b/themes/jingle.yaml @@ -0,0 +1,49 @@ +name: "jingle" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#283035" + fg: "#C0CCDB" + black: "#333D44" + red: "#BA0E2E" + green: "#E06D5C" + yellow: "#7EC579" + blue: "#98ABB7" + magenta: "#E06D5C" + cyan: "#7EC579" + white: "#D0D9E4" + brightBlack: "#54656F" + brightRed: "#F03E5F" + brightGreen: "#F0BAB2" + brightYellow: "#C3E4C0" + brightBlue: "#D4DCE1" + brightMagenta: "#F0BAB2" + brightCyan: "#C3E4C0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 235 + contrast: + fg: 70 + black: 0 + red: 16.6 + green: 37.9 + yellow: 57.2 + blue: 50.4 + magenta: 37.9 + cyan: 57.2 + white: 78.1 + brightBlack: 16.7 + brightRed: 32.9 + brightGreen: 67.7 + brightYellow: 80 + brightBlue: 79.7 + brightMagenta: 67.7 + brightCyan: 80 + brightWhite: 103 diff --git a/themes/jinglecode.yaml b/themes/jinglecode.yaml new file mode 100644 index 00000000..ae1049f8 --- /dev/null +++ b/themes/jinglecode.yaml @@ -0,0 +1,49 @@ +name: "JingleCode" +source: + marketplace_id: "ayyucedemirbas.jinglecode" + version: "0.0.1" + installs: 56 + author: "ayyucedemirbas" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ayyucedemirbas.jinglecode" +colors: + bg: "#0F1A23" + fg: "#FFD700" + black: "#0F1A23" + red: "#FF6767" + green: "#0F1A23" + yellow: "#FCE8A5" + blue: "#0A7C84" + magenta: "#FCE8A5" + cyan: "#0A7C84" + white: "#FCE8A5" + brightBlack: "#6D8D9B" + brightRed: "#FF6767" + brightGreen: "#FCE8A5" + brightYellow: "#FF6767" + brightBlue: "#0A7C84" + brightMagenta: "#FCE8A5" + brightCyan: "#0A7C84" + brightWhite: "#FCE8A5" +meta: + mode: "dark" + accent: "orange" + hue: 244 + contrast: + fg: 83 + black: 0 + red: 46.9 + green: 0 + yellow: 92.1 + blue: 26.6 + magenta: 92.1 + cyan: 26.6 + white: 92.1 + brightBlack: 37.5 + brightRed: 46.9 + brightGreen: 92.1 + brightYellow: 46.9 + brightBlue: 26.6 + brightMagenta: 92.1 + brightCyan: 26.6 + brightWhite: 92.1 diff --git a/themes/jinshi-dark-theme.yaml b/themes/jinshi-dark-theme.yaml new file mode 100644 index 00000000..befe433b --- /dev/null +++ b/themes/jinshi-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Jinshi Dark Theme" +source: + marketplace_id: "apothecary-diary-theme.apothecary-diary-theme" + version: "0.1.0" + installs: 58 + author: "Matheus Montemurro" + repo: "https://github.com/montemurro19/apothecary-diary-theme" + url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" +colors: + bg: "#2A1B3D" + fg: "#F4F1F8" + black: "#1F1129" + red: "#E06B74" + green: "#98C379" + yellow: "#D4AF37" + blue: "#8B5FBF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#F4F1F8" + brightBlack: "#5A4A6B" + brightRed: "#F287A1" + brightGreen: "#A9DC76" + brightYellow: "#F4D03F" + brightBlue: "#B794D1" + brightMagenta: "#D19A66" + brightCyan: "#78DCE8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 303 + contrast: + fg: 96.9 + black: 0 + red: 40.3 + green: 60.7 + yellow: 58.7 + blue: 26.9 + magenta: 43.6 + cyan: 53 + white: 96.9 + brightBlack: 11.9 + brightRed: 52.6 + brightGreen: 73.7 + brightYellow: 77.1 + brightBlue: 49.1 + brightMagenta: 51.1 + brightCyan: 73.9 + brightWhite: 105.3 diff --git a/themes/jinshi-light-theme.yaml b/themes/jinshi-light-theme.yaml new file mode 100644 index 00000000..f148fa2a --- /dev/null +++ b/themes/jinshi-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Jinshi Light Theme" +source: + marketplace_id: "apothecary-diary-theme.apothecary-diary-theme" + version: "0.1.0" + installs: 58 + author: "Matheus Montemurro" + repo: "https://github.com/montemurro19/apothecary-diary-theme" + url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" +colors: + bg: "#FDFCFF" + fg: "#2A1B3D" + black: "#2A1B3D" + red: "#B83E5A" + green: "#5A8B3A" + yellow: "#C4971E" + blue: "#6A4C93" + magenta: "#8B5FBF" + cyan: "#4A7B7C" + white: "#FDFCFF" + brightBlack: "#8B5FBF" + brightRed: "#D4576B" + brightGreen: "#6FA048" + brightYellow: "#D4AF37" + brightBlue: "#8564A1" + brightMagenta: "#A073CC" + brightCyan: "#5A9394" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 101.2 + black: 101.2 + red: 74.6 + green: 66 + yellow: 50.5 + blue: 81.9 + magenta: 70.7 + cyan: 71.4 + white: 0 + brightBlack: 70.7 + brightRed: 64.3 + brightGreen: 56.2 + brightYellow: 39.5 + brightBlue: 72 + brightMagenta: 62 + brightCyan: 60.7 + brightWhite: 0 diff --git a/themes/jinx.yaml b/themes/jinx.yaml new file mode 100644 index 00000000..9a0a6e47 --- /dev/null +++ b/themes/jinx.yaml @@ -0,0 +1,49 @@ +name: "jinx" +source: + marketplace_id: "Volskaya.irrelevant" + version: "0.0.2" + installs: 33 + author: "Volskaya" + repo: "https://github.com/volskaya/irrelevant" + url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#1C1C1C" + red: "#5CC0E6" + green: "#F4009E" + yellow: "#5CC0E6" + blue: "#878787" + magenta: "#979797" + cyan: "#A6A6A6" + white: "#444444" + brightBlack: "#666666" + brightRed: "#5CC0E6" + brightGreen: "#F4009E" + brightYellow: "#DDDDDD" + brightBlue: "#878787" + brightMagenta: "#979797" + brightCyan: "#A6A6A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 60.5 + green: 36.2 + yellow: 60.5 + blue: 36.6 + magenta: 44.6 + cyan: 52.5 + white: 8.3 + brightBlack: 21.5 + brightRed: 60.5 + brightGreen: 36.2 + brightYellow: 84.4 + brightBlue: 36.6 + brightMagenta: 44.6 + brightCyan: 52.5 + brightWhite: 106.3 diff --git a/themes/jk.yaml b/themes/jk.yaml new file mode 100644 index 00000000..dd97f8ff --- /dev/null +++ b/themes/jk.yaml @@ -0,0 +1,49 @@ +name: "jk" +source: + marketplace_id: "JsonKody.jk" + version: "0.0.2" + installs: 85 + author: "JsonKody" + repo: "https://github.com/JsonKody/jk-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JsonKody.jk" +colors: + bg: "#14101D" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 298 + contrast: + fg: 107.3 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.2 + cyan: 48 + white: 90.4 + brightBlack: 22.4 + brightRed: 39 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/jker-purple-wave.yaml b/themes/jker-purple-wave.yaml new file mode 100644 index 00000000..dd17e451 --- /dev/null +++ b/themes/jker-purple-wave.yaml @@ -0,0 +1,49 @@ +name: "jker Purple Wave" +source: + marketplace_id: "jker.purple-wave" + version: "1.0.1" + installs: 8191 + author: "jker" + repo: "https://github.com/guidolee/jker-purple-wave" + url: "https://marketplace.visualstudio.com/items?itemName=jker.purple-wave" +colors: + bg: "#1F1929" + fg: "#D4D4D4" + black: "#7F7F7F" + red: "#E15A60" + green: "#99C794" + yellow: "#FFE2A9" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#7F7F7F" + brightRed: "#E15A60" + brightGreen: "#99C794" + brightYellow: "#FFE2A9" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 301 + contrast: + fg: 78.9 + black: 32.7 + red: 37.3 + green: 64.3 + yellow: 89.6 + blue: 43.6 + magenta: 51.5 + cyan: 52.5 + white: 78.9 + brightBlack: 32.7 + brightRed: 37.3 + brightGreen: 64.3 + brightYellow: 89.6 + brightBlue: 43.6 + brightMagenta: 51.5 + brightCyan: 52.5 + brightWhite: 78.9 diff --git a/themes/jngl.yaml b/themes/jngl.yaml new file mode 100644 index 00000000..a54edb3e --- /dev/null +++ b/themes/jngl.yaml @@ -0,0 +1,49 @@ +name: "jngl" +source: + marketplace_id: "jrnxf.jngl" + version: "0.0.10" + installs: 17 + author: "jrnxf" + repo: "https://github.com/jrnxf/jngl" + url: "https://marketplace.visualstudio.com/items?itemName=jrnxf.jngl" +colors: + bg: "#132D2F" + fg: "#E6EAEA" + black: "#2F3239" + red: "#E85C51" + green: "#7AA4A1" + yellow: "#FDA47F" + blue: "#5A93AA" + magenta: "#AD5C7C" + cyan: "#A1CDD8" + white: "#EBEBEB" + brightBlack: "#4E5157" + brightRed: "#EB746B" + brightGreen: "#8EB2AF" + brightYellow: "#FDB292" + brightBlue: "#73A3B7" + brightMagenta: "#B97490" + brightCyan: "#AFD4DE" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "orange" + hue: 202 + contrast: + fg: 89.9 + black: 0 + red: 36.7 + green: 45.1 + yellow: 61.6 + blue: 36.6 + magenta: 26.5 + cyan: 68.2 + white: 91.1 + brightBlack: 10.8 + brightRed: 43.3 + brightGreen: 53.1 + brightYellow: 67 + brightBlue: 45.1 + brightMagenta: 35.3 + brightCyan: 72.9 + brightWhite: 93 diff --git a/themes/jojobii-s-colors.yaml b/themes/jojobii-s-colors.yaml new file mode 100644 index 00000000..8f20d4bc --- /dev/null +++ b/themes/jojobii-s-colors.yaml @@ -0,0 +1,49 @@ +name: "jojobii's Colors" +source: + marketplace_id: "jojobii.jojobii-vscode-colors" + version: "0.1.0" + installs: 253 + author: "jojobii" + repo: "https://github.com/jojobii-arks/jojobii-arks" + url: "https://marketplace.visualstudio.com/items?itemName=jojobii.jojobii-vscode-colors" +colors: + bg: "#282A3A" + fg: "#EAF2F1" + black: "#3A3D4B" + red: "#FF657A" + green: "#BAD761" + yellow: "#FFD76D" + blue: "#FF9B5E" + magenta: "#C39AC9" + cyan: "#9CD1BB" + white: "#EAF2F1" + brightBlack: "#696D77" + brightRed: "#FF657A" + brightGreen: "#BAD761" + brightYellow: "#FFD76D" + brightBlue: "#FF9B5E" + brightMagenta: "#C39AC9" + brightCyan: "#9CD1BB" + brightWhite: "#EAF2F1" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 94.2 + black: 0 + red: 44.2 + green: 71.3 + yellow: 81 + blue: 58 + magenta: 50.9 + cyan: 67.9 + white: 94.2 + brightBlack: 22 + brightRed: 44.2 + brightGreen: 71.3 + brightYellow: 81 + brightBlue: 58 + brightMagenta: 50.9 + brightCyan: 67.9 + brightWhite: 94.2 diff --git a/themes/jokejoke.yaml b/themes/jokejoke.yaml new file mode 100644 index 00000000..3ff09fb6 --- /dev/null +++ b/themes/jokejoke.yaml @@ -0,0 +1,49 @@ +name: "JokeJoke" +source: + marketplace_id: "CodeBabel.codebabel-theme-jok" + version: "0.0.0" + installs: 170 + author: "CodeBabel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CodeBabel.codebabel-theme-jok" +colors: + bg: "#131111" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.8 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/jokenkai.yaml b/themes/jokenkai.yaml new file mode 100644 index 00000000..da6cc4a1 --- /dev/null +++ b/themes/jokenkai.yaml @@ -0,0 +1,49 @@ +name: "JoKenKai" +source: + marketplace_id: "EduardoAlmeida.jokenpo-theme" + version: "0.2.1" + installs: 151 + author: "Eduardo Almeida" + repo: "https://github.com/JoKenPo/jokenpo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=EduardoAlmeida.jokenpo-theme" +colors: + bg: "#222222" + fg: "#E1E1E6" + black: "#393A34" + red: "#CB7676" + green: "#4D9352" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#E1E1E6" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9352" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 86.3 + black: 0 + red: 39.4 + green: 34.4 + yellow: 74.2 + blue: 39.9 + magenta: 42.5 + cyan: 47.9 + white: 86.3 + brightBlack: 28.1 + brightRed: 39.4 + brightGreen: 34.4 + brightYellow: 74.2 + brightBlue: 39.9 + brightMagenta: 42.5 + brightCyan: 47.9 + brightWhite: 105.5 diff --git a/themes/jokenpo-obscure.yaml b/themes/jokenpo-obscure.yaml new file mode 100644 index 00000000..26d2b103 --- /dev/null +++ b/themes/jokenpo-obscure.yaml @@ -0,0 +1,49 @@ +name: "JoKenPo Obscure" +source: + marketplace_id: "EduardoAlmeida.jokenpo-theme" + version: "0.2.1" + installs: 151 + author: "Eduardo Almeida" + repo: "https://github.com/JoKenPo/jokenpo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=EduardoAlmeida.jokenpo-theme" +colors: + bg: "#191622" + fg: "#E1E1E6" + black: "#201B2D" + red: "#54C59F" + green: "#DCDCAA" + yellow: "#E7DE79" + blue: "#78D1E1" + magenta: "#988BC7" + cyan: "#A1EFE4" + white: "#E1E1E6" + brightBlack: "#626483" + brightRed: "#ED4556" + brightGreen: "#00F769" + brightYellow: "#E7DE79" + brightBlue: "#78D1E1" + brightMagenta: "#988BC7" + brightCyan: "#A4FFFF" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "green" + hue: 296 + contrast: + fg: 87.6 + black: 0 + red: 59.7 + green: 82.4 + yellow: 83.6 + blue: 69.9 + magenta: 43.2 + cyan: 87.2 + white: 87.6 + brightBlack: 22.1 + brightRed: 36.7 + brightGreen: 81.8 + brightYellow: 83.6 + brightBlue: 69.9 + brightMagenta: 43.2 + brightCyan: 96.7 + brightWhite: 101.7 diff --git a/themes/joker-contrast.yaml b/themes/joker-contrast.yaml new file mode 100644 index 00000000..0e475865 --- /dev/null +++ b/themes/joker-contrast.yaml @@ -0,0 +1,49 @@ +name: "joker-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#141619" + fg: "#C0CCDB" + black: "#1F2227" + red: "#BA0E2E" + green: "#00B27D" + yellow: "#9A6FC4" + blue: "#FFFFFF" + magenta: "#00B27D" + cyan: "#9A6FC4" + white: "#D0D9E4" + brightBlack: "#414852" + brightRed: "#F03E5F" + brightGreen: "#19FFBB" + brightYellow: "#CDB7E2" + brightBlue: "#FFFFFF" + brightMagenta: "#19FFBB" + brightCyan: "#CDB7E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 74 + black: 0 + red: 20.6 + green: 48.7 + yellow: 34.9 + blue: 107 + magenta: 48.7 + cyan: 34.9 + white: 82 + brightBlack: 10.1 + brightRed: 36.9 + brightGreen: 88.4 + brightYellow: 67.4 + brightBlue: 107 + brightMagenta: 88.4 + brightCyan: 67.4 + brightWhite: 107 diff --git a/themes/joker-light.yaml b/themes/joker-light.yaml new file mode 100644 index 00000000..aec6d8e1 --- /dev/null +++ b/themes/joker-light.yaml @@ -0,0 +1,49 @@ +name: "joker-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#4A5159" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#00B27D" + yellow: "#9A6FC4" + blue: "#4A5159" + magenta: "#00B27D" + cyan: "#9A6FC4" + white: "#565E67" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#19FFBB" + brightYellow: "#CDB7E2" + brightBlue: "#798490" + brightMagenta: "#19FFBB" + brightCyan: "#CDB7E2" + brightWhite: "#798490" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 87.9 + black: 0 + red: 80.3 + green: 52.3 + yellow: 65.9 + blue: 87.9 + magenta: 52.3 + cyan: 65.9 + white: 82.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 14.5 + brightYellow: 34.3 + brightBlue: 65.6 + brightMagenta: 14.5 + brightCyan: 34.3 + brightWhite: 65.6 diff --git a/themes/joker-neon.yaml b/themes/joker-neon.yaml new file mode 100644 index 00000000..bf01a70a --- /dev/null +++ b/themes/joker-neon.yaml @@ -0,0 +1,49 @@ +name: "Joker Neon" +source: + marketplace_id: "fidelp27.joker-neon-theme" + version: "1.0.1" + installs: 267 + author: "fidelp27" + repo: "https://github.com/fidelp27/joker-neon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=fidelp27.joker-neon-theme" +colors: + bg: "#0A0514" + fg: "#E8E4F0" + black: "#0A0514" + red: "#FF1E8C" + green: "#00FF41" + yellow: "#FFED4E" + blue: "#BF00FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#E8E4F0" + brightBlack: "#4A2961" + brightRed: "#FF3DA1" + brightGreen: "#39FF6D" + brightYellow: "#FFF176" + brightBlue: "#D633FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 299 + contrast: + fg: 91.4 + black: 0 + red: 40.1 + green: 86.6 + yellow: 94.3 + blue: 32.9 + magenta: 46.1 + cyan: 92.1 + white: 91.4 + brightBlack: 0 + brightRed: 43.2 + brightGreen: 87.6 + brightYellow: 96.7 + brightBlue: 39.2 + brightMagenta: 54.7 + brightCyan: 93.9 + brightWhite: 107.8 diff --git a/themes/joker.yaml b/themes/joker.yaml new file mode 100644 index 00000000..c5b54d83 --- /dev/null +++ b/themes/joker.yaml @@ -0,0 +1,49 @@ +name: "joker" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#32373D" + fg: "#C0CCDB" + black: "#3D444B" + red: "#BA0E2E" + green: "#00B27D" + yellow: "#9A6FC4" + blue: "#FFFFFF" + magenta: "#00B27D" + cyan: "#9A6FC4" + white: "#D0D9E4" + brightBlack: "#606A75" + brightRed: "#F03E5F" + brightGreen: "#19FFBB" + brightYellow: "#CDB7E2" + brightBlue: "#FFFFFF" + brightMagenta: "#19FFBB" + brightCyan: "#CDB7E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + contrast: + fg: 68 + black: 0 + red: 14.7 + green: 42.7 + yellow: 28.9 + blue: 101 + magenta: 42.7 + cyan: 28.9 + white: 76.1 + brightBlack: 17.4 + brightRed: 31 + brightGreen: 82.4 + brightYellow: 61.4 + brightBlue: 101 + brightMagenta: 82.4 + brightCyan: 61.4 + brightWhite: 101 diff --git a/themes/jollifake.yaml b/themes/jollifake.yaml new file mode 100644 index 00000000..1b6627bd --- /dev/null +++ b/themes/jollifake.yaml @@ -0,0 +1,49 @@ +name: "JolliFake" +source: + marketplace_id: "jeooo.jollifake" + version: "1.0.0" + installs: 1037 + author: "jeooo`" + repo: "https://github.com/jeoooo/jollifake" + url: "https://marketplace.visualstudio.com/items?itemName=jeooo.jollifake" +colors: + bg: "#FFFFFF" + fg: "#A80C13" + black: "#000000" + red: "#FBAC14" + green: "#00FF00" + yellow: "#FEDD03" + blue: "#FFFFFF" + magenta: "#FFFFFF" + cyan: "#FFFFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FBAC14" + brightGreen: "#00FF00" + brightYellow: "#FEDD03" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 84.5 + black: 106 + red: 36 + green: 17.1 + yellow: 16.9 + blue: 0 + magenta: 0 + cyan: 0 + white: 0 + brightBlack: 106 + brightRed: 36 + brightGreen: 17.1 + brightYellow: 16.9 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/jolly-light.yaml b/themes/jolly-light.yaml new file mode 100644 index 00000000..2be5f6dd --- /dev/null +++ b/themes/jolly-light.yaml @@ -0,0 +1,49 @@ +name: "Jolly Light" +source: + marketplace_id: "SeanBrynjolfsson.jolly" + version: "1.0.2" + installs: 10 + author: "Sean Brynjolfsson" + repo: "https://github.com/jolfss/jolly-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SeanBrynjolfsson.jolly" +colors: + bg: "#EEF2F7" + fg: "#002A5E" + black: "#002A5E" + red: "#CD0030" + green: "#079672" + yellow: "#9F6C0E" + blue: "#107AC1" + magenta: "#AF00DB" + cyan: "#079672" + white: "#BBC4D2" + brightBlack: "#676F93" + brightRed: "#DE7994" + brightGreen: "#7BC4B5" + brightYellow: "#BCA476" + brightBlue: "#77BAE9" + brightMagenta: "#CF79E9" + brightCyan: "#7BC4B5" + brightWhite: "#EEF2F7" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 92.2 + black: 92.2 + red: 68.1 + green: 56.4 + yellow: 63.2 + blue: 63.3 + magenta: 66.7 + cyan: 56.4 + white: 24.2 + brightBlack: 66 + brightRed: 46.8 + brightGreen: 31.1 + brightYellow: 39.4 + brightBlue: 33 + brightMagenta: 45.2 + brightCyan: 31.1 + brightWhite: 0 diff --git a/themes/jone-light.yaml b/themes/jone-light.yaml new file mode 100644 index 00000000..64e15557 --- /dev/null +++ b/themes/jone-light.yaml @@ -0,0 +1,49 @@ +name: "Jone Light" +source: + marketplace_id: "jonxie.jone-theme" + version: "0.3.2" + installs: 1041 + author: "Jone Xie" + repo: "https://github.com/Jefxie/jone-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jonxie.jone-theme" +colors: + bg: "#F2F2F2" + fg: "#2B312C" + black: "#000000" + red: "#EE3F4D" + green: "#96C24E" + yellow: "#F9D367" + blue: "#619AC3" + magenta: "#D276A3" + cyan: "#57C3C2" + white: "#E4DFD7" + brightBlack: "#2B312C" + brightRed: "#EE3F4D" + brightGreen: "#41AE3C" + brightYellow: "#B78D12" + brightBlue: "#619AC3" + brightMagenta: "#CC5595" + brightCyan: "#12AA9C" + brightWhite: "#CEC3DC" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92 + black: 98.3 + red: 56.8 + green: 32.6 + yellow: 13.4 + blue: 49.3 + magenta: 49.4 + cyan: 33.2 + white: 8.4 + brightBlack: 92 + brightRed: 56.8 + brightGreen: 46.6 + brightYellow: 49.7 + brightBlue: 49.3 + brightMagenta: 58.6 + brightCyan: 47 + brightWhite: 22.2 diff --git a/themes/josi.yaml b/themes/josi.yaml new file mode 100644 index 00000000..416c461c --- /dev/null +++ b/themes/josi.yaml @@ -0,0 +1,49 @@ +name: "Josi" +source: + marketplace_id: "fabioruicci.josi" + version: "0.3.1" + installs: 255 + author: "Fabio Ruicci" + repo: "git://github.com/fabioruicci/josi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=fabioruicci.josi" +colors: + bg: "#282C34" + fg: "#C1D0D2" + black: "#676E95" + red: "#F5625C" + green: "#45B746" + yellow: "#FF9070" + blue: "#56B7C3" + magenta: "#CF68E1" + cyan: "#6494ED" + white: "#676E95" + brightBlack: "#676E95" + brightRed: "#F5625C" + brightGreen: "#45B746" + brightYellow: "#FF9070" + brightBlue: "#56B7C3" + brightMagenta: "#CF68E1" + brightCyan: "#6494ED" + brightWhite: "#676E95" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 72.1 + black: 23.2 + red: 40.5 + green: 47.5 + yellow: 54.7 + blue: 51.8 + magenta: 39.8 + cyan: 41.1 + white: 23.2 + brightBlack: 23.2 + brightRed: 40.5 + brightGreen: 47.5 + brightYellow: 54.7 + brightBlue: 51.8 + brightMagenta: 39.8 + brightCyan: 41.1 + brightWhite: 23.2 diff --git a/themes/jott4c-dark.yaml b/themes/jott4c-dark.yaml new file mode 100644 index 00000000..47b5eb10 --- /dev/null +++ b/themes/jott4c-dark.yaml @@ -0,0 +1,49 @@ +name: "jott4c-dark" +source: + marketplace_id: "jott4c.jott4c-dark" + version: "0.0.1" + installs: 49 + author: "junior alencar da cunha" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jott4c.jott4c-dark" +colors: + bg: "#141417" + fg: "#FBFBFB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 104.5 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.3 diff --git a/themes/joyboy.yaml b/themes/joyboy.yaml new file mode 100644 index 00000000..21eae8c6 --- /dev/null +++ b/themes/joyboy.yaml @@ -0,0 +1,49 @@ +name: "JoyBoy" +source: + marketplace_id: "AdityaPrasad.joyboy-vscode-theme" + version: "1.0.0" + installs: 30 + author: "Aditya Prasad" + repo: "https://github.com/AdityaP183/joyboy" + url: "https://marketplace.visualstudio.com/items?itemName=AdityaPrasad.joyboy-vscode-theme" +colors: + bg: "#0F0F17" + fg: "#EEFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 105.2 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/joyful-fork.yaml b/themes/joyful-fork.yaml new file mode 100644 index 00000000..4ffd9718 --- /dev/null +++ b/themes/joyful-fork.yaml @@ -0,0 +1,49 @@ +name: "Joyful - Fork" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29903 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" +colors: + bg: "#373E4D" + fg: "#F9F9F9" + black: "#000000" + red: "#FA5AA4" + green: "#2BE491" + yellow: "#FA946E" + blue: "#89CCF7" + magenta: "#CF8EF4" + cyan: "#63C5EA" + white: "#F9F9F9" + brightBlack: "#666666" + brightRed: "#FA74B2" + brightGreen: "#44EB9F" + brightYellow: "#FAA687" + brightBlue: "#A1D5F7" + brightMagenta: "#D8A6F4" + brightCyan: "#7ACBEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 265 + contrast: + fg: 94.8 + black: 9 + red: 37.3 + green: 65.1 + yellow: 50 + blue: 62 + magenta: 46.3 + cyan: 55.8 + white: 94.8 + brightBlack: 13.9 + brightRed: 43.3 + brightGreen: 69.5 + brightYellow: 56.5 + brightBlue: 68 + brightMagenta: 55.5 + brightCyan: 59.7 + brightWhite: 98.8 diff --git a/themes/js-dark-theme.yaml b/themes/js-dark-theme.yaml new file mode 100644 index 00000000..d57fa0ad --- /dev/null +++ b/themes/js-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "JS Dark Theme" +source: + marketplace_id: "AbdulnasirOlcan.js-dark-theme" + version: "1.1.3" + installs: 2213 + author: "Abdulnasir Olcan" + repo: "https://github.com/jsdeveloperr/JS-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AbdulnasirOlcan.js-dark-theme" +colors: + bg: "#0E0D1A" + fg: "#75767E" + black: "#0E0D1A" + red: "#00C82B" + green: "#00C82B" + yellow: "#FFE553" + blue: "#48A8D8" + magenta: "#00C82B" + cyan: "#48A8D8" + white: "#FFFFFF" + brightBlack: "#181830" + brightRed: "#00C82B" + brightGreen: "#17F648" + brightYellow: "#FFFFFF" + brightBlue: "#48A8D8" + brightMagenta: "#00C82B" + brightCyan: "#23DEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 287 + contrast: + fg: 29.9 + black: 0 + red: 58.1 + green: 58.1 + yellow: 90.5 + blue: 49.9 + magenta: 58.1 + cyan: 49.9 + white: 107.5 + brightBlack: 0 + brightRed: 58.1 + brightGreen: 81.6 + brightYellow: 107.5 + brightBlue: 49.9 + brightMagenta: 58.1 + brightCyan: 75.4 + brightWhite: 107.5 diff --git a/themes/jtvscode-dark.yaml b/themes/jtvscode-dark.yaml new file mode 100644 index 00000000..ade34bd1 --- /dev/null +++ b/themes/jtvscode-dark.yaml @@ -0,0 +1,49 @@ +name: "jtVSCode Dark" +source: + marketplace_id: "javiertdev.jtvscode" + version: "1.0.0" + installs: 18 + author: "javiert.dev" + repo: "https://github.com/javiertdev/jtVSCode" + url: "https://marketplace.visualstudio.com/items?itemName=javiertdev.jtvscode" +colors: + bg: "#141414" + fg: "#D4D4D4" + black: "#1A1A1A" + red: "#F44747" + green: "#6FCF50" + yellow: "#E8A830" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#4EC9B0" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F47A7A" + brightGreen: "#8DDB6F" + brightYellow: "#F0C060" + brightBlue: "#7ABAEF" + brightMagenta: "#D9A0D9" + brightCyan: "#7ADBC8" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.8 + black: 0 + red: 38.7 + green: 64.2 + yellow: 61 + blue: 45.3 + magenta: 47.6 + cyan: 62.3 + white: 79.8 + brightBlack: 22.3 + brightRed: 50 + brightGreen: 72.5 + brightYellow: 72.1 + brightBlue: 61 + brightMagenta: 60.4 + brightCyan: 73.9 + brightWhite: 97.3 diff --git a/themes/jtvscode-light.yaml b/themes/jtvscode-light.yaml new file mode 100644 index 00000000..50f6c26c --- /dev/null +++ b/themes/jtvscode-light.yaml @@ -0,0 +1,49 @@ +name: "jtVSCode Light" +source: + marketplace_id: "javiertdev.jtvscode" + version: "1.0.0" + installs: 18 + author: "javiert.dev" + repo: "https://github.com/javiertdev/jtVSCode" + url: "https://marketplace.visualstudio.com/items?itemName=javiertdev.jtvscode" +colors: + bg: "#FFFFFF" + fg: "#212121" + black: "#212121" + red: "#C72E2E" + green: "#3A822C" + yellow: "#BF7B10" + blue: "#0451A5" + magenta: "#8A3ABF" + cyan: "#267F99" + white: "#F0F0F0" + brightBlack: "#666666" + brightRed: "#F44747" + brightGreen: "#6FCF50" + brightYellow: "#E8A830" + brightBlue: "#569CD6" + brightMagenta: "#C586C0" + brightCyan: "#4EC9B0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103.1 + black: 103.1 + red: 75.6 + green: 72.8 + yellow: 61.9 + blue: 86.1 + magenta: 79.7 + cyan: 71.5 + white: 0 + brightBlack: 78.8 + brightRed: 62.2 + brightGreen: 37.4 + brightYellow: 40.5 + brightBlue: 55.8 + brightMagenta: 53.5 + brightCyan: 39.3 + brightWhite: 0 diff --git a/themes/jugal13-theme.yaml b/themes/jugal13-theme.yaml new file mode 100644 index 00000000..5c56e41e --- /dev/null +++ b/themes/jugal13-theme.yaml @@ -0,0 +1,49 @@ +name: "jugal13-theme" +source: + marketplace_id: "jugal13.jugal13-theme" + version: "1.1.4" + installs: 169 + author: "Jugal" + repo: "https://github.com/jugalw13/jugal13-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jugal13.jugal13-theme" +colors: + bg: "#000015" + fg: "#FFFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#0D6678" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#95C085" + brightYellow: "#FAC03B" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 107.8 + black: 0 + red: 42.9 + green: 61.9 + yellow: 74 + blue: 19.7 + magenta: 20.5 + cyan: 50.4 + white: 48.2 + brightBlack: 19.5 + brightRed: 42.9 + brightGreen: 61.9 + brightYellow: 74 + brightBlue: 19.7 + brightMagenta: 20.5 + brightCyan: 50.4 + brightWhite: 99.8 diff --git a/themes/juicy-contrast.yaml b/themes/juicy-contrast.yaml new file mode 100644 index 00000000..740c7947 --- /dev/null +++ b/themes/juicy-contrast.yaml @@ -0,0 +1,49 @@ +name: "juicy-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#000000" + fg: "#E3E2E0" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#FF4E50" + yellow: "#3BC7B8" + blue: "#C3CB4C" + magenta: "#EDB92E" + cyan: "#F85931" + white: "#EFEFED" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#FFB4B5" + brightYellow: "#8ADED5" + brightBlue: "#DDE29B" + brightMagenta: "#F5D88C" + brightCyan: "#FBA894" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.2 + black: 0 + red: 21.5 + green: 43.2 + yellow: 61.8 + blue: 70.7 + magenta: 69 + cyan: 43 + white: 97.3 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 73 + brightYellow: 77.7 + brightBlue: 85.9 + brightMagenta: 84.5 + brightCyan: 66.9 + brightWhite: 107.9 diff --git a/themes/juicy-light.yaml b/themes/juicy-light.yaml new file mode 100644 index 00000000..22847cf8 --- /dev/null +++ b/themes/juicy-light.yaml @@ -0,0 +1,49 @@ +name: "juicy-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#F0F0F0" + fg: "#333333" + black: "#FDFDFD" + red: "#BA0E2E" + green: "#FF4E50" + yellow: "#3BC7B8" + blue: "#C3CB4C" + magenta: "#EDB92E" + cyan: "#F85931" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FFB4B5" + brightYellow: "#8ADED5" + brightBlue: "#DDE29B" + brightMagenta: "#F5D88C" + brightCyan: "#FBA894" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 89.8 + black: 0 + red: 71.4 + green: 49.6 + yellow: 31.6 + blue: 23 + magenta: 24.7 + cyan: 49.8 + white: 85.2 + brightBlack: 7.6 + brightRed: 55 + brightGreen: 20.9 + brightYellow: 16.5 + brightBlue: 8.8 + brightMagenta: 10.1 + brightCyan: 26.7 + brightWhite: 69.8 diff --git a/themes/juicy.yaml b/themes/juicy.yaml new file mode 100644 index 00000000..d75b7c97 --- /dev/null +++ b/themes/juicy.yaml @@ -0,0 +1,49 @@ +name: "juicy" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#222222" + fg: "#E3E2E0" + black: "#2F2F2F" + red: "#BA0E2E" + green: "#FF4E50" + yellow: "#3BC7B8" + blue: "#C3CB4C" + magenta: "#EDB92E" + cyan: "#F85931" + white: "#EFEFED" + brightBlack: "#555555" + brightRed: "#F03E5F" + brightGreen: "#FFB4B5" + brightYellow: "#8ADED5" + brightBlue: "#DDE29B" + brightMagenta: "#F5D88C" + brightCyan: "#FBA894" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.8 + black: 0 + red: 19.1 + green: 40.8 + yellow: 59.4 + blue: 68.3 + magenta: 66.6 + cyan: 40.6 + white: 94.9 + brightBlack: 13.7 + brightRed: 35.4 + brightGreen: 70.5 + brightYellow: 75.2 + brightBlue: 83.5 + brightMagenta: 82.1 + brightCyan: 64.4 + brightWhite: 105.5 diff --git a/themes/july-summer-vibes-dark-theme.yaml b/themes/july-summer-vibes-dark-theme.yaml new file mode 100644 index 00000000..62054cca --- /dev/null +++ b/themes/july-summer-vibes-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "July Summer Vibes Dark Theme" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#002B36" + fg: "#FFFFFF" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#6C71C4" + cyan: "#2AA198" + white: "#FFFFFF" + brightBlack: "#586E75" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#6C71C4" + brightCyan: "#2AA198" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 104.4 + black: 0 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 104.4 + brightBlack: 21.5 + brightRed: 27.7 + brightGreen: 39.2 + brightYellow: 39.2 + brightBlue: 34.3 + brightMagenta: 28 + brightCyan: 40 + brightWhite: 104.4 diff --git a/themes/jummidark.yaml b/themes/jummidark.yaml new file mode 100644 index 00000000..1c8521dd --- /dev/null +++ b/themes/jummidark.yaml @@ -0,0 +1,49 @@ +name: "jummidark" +source: + marketplace_id: "jummiterm.jummiterm-vscode" + version: "0.0.4" + installs: 163 + author: "jummiterm" + repo: "https://github.com/jcherven/jummiterm-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=jummiterm.jummiterm-vscode" +colors: + bg: "#262626" + fg: "#E4E4E4" + black: "#121212" + red: "#D7005F" + green: "#00D7D7" + yellow: "#00FFAF" + blue: "#AF5FFF" + magenta: "#AF87FF" + cyan: "#00D7D7" + white: "#8A8A8A" + brightBlack: "#4E4E4E" + brightRed: "#D75F87" + brightGreen: "#00D7D7" + brightYellow: "#00FFAF" + brightBlue: "#AF87FF" + brightMagenta: "#AF87FF" + brightCyan: "#00D7D7" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 25.7 + green: 67 + yellow: 85.7 + blue: 36 + magenta: 46.4 + cyan: 67 + white: 36.5 + brightBlack: 10.4 + brightRed: 35.9 + brightGreen: 67 + brightYellow: 85.7 + brightBlue: 46.4 + brightMagenta: 46.4 + brightCyan: 67 + brightWhite: 87.3 diff --git a/themes/jummilight.yaml b/themes/jummilight.yaml new file mode 100644 index 00000000..2788d3ed --- /dev/null +++ b/themes/jummilight.yaml @@ -0,0 +1,49 @@ +name: "jummilight" +source: + marketplace_id: "jummiterm.jummiterm-vscode" + version: "0.0.4" + installs: 163 + author: "jummiterm" + repo: "https://github.com/jcherven/jummiterm-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=jummiterm.jummiterm-vscode" +colors: + bg: "#E4E4E4" + fg: "#262626" + black: "#262626" + red: "#D75F87" + green: "#008787" + yellow: "#AF8700" + blue: "#AF5FFF" + magenta: "#BC05BC" + cyan: "#008787" + white: "#8A8A8A" + brightBlack: "#4E4E4E" + brightRed: "#D7005F" + brightGreen: "#00D7D7" + brightYellow: "#AF8700" + brightBlue: "#8700FF" + brightMagenta: "#BC05BC" + brightCyan: "#00D7D7" + brightWhite: "#B2B2B2" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 86.1 + black: 86.1 + red: 46.8 + green: 53.7 + yellow: 44.7 + blue: 46.6 + magenta: 58.6 + cyan: 53.7 + white: 46.2 + brightBlack: 72.8 + brightRed: 57 + brightGreen: 16.6 + brightYellow: 44.7 + brightBlue: 61.6 + brightMagenta: 58.6 + brightCyan: 16.6 + brightWhite: 25.7 diff --git a/themes/jumper-contrast.yaml b/themes/jumper-contrast.yaml new file mode 100644 index 00000000..e0225206 --- /dev/null +++ b/themes/jumper-contrast.yaml @@ -0,0 +1,49 @@ +name: "jumper-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0E1111" + fg: "#8DA0A0" + black: "#191F1F" + red: "#BA0E2E" + green: "#36A595" + yellow: "#F6DA40" + blue: "#DB515C" + magenta: "#E08E4C" + cyan: "#36A595" + white: "#9BACAC" + brightBlack: "#3C4949" + brightRed: "#F03E5F" + brightGreen: "#71D0C3" + brightYellow: "#FBEDA1" + brightBlue: "#ECA6AB" + brightMagenta: "#EFC5A3" + brightCyan: "#71D0C3" + brightWhite: "#C5CECE" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 48.4 + black: 0 + red: 21 + green: 44.8 + yellow: 83.9 + blue: 35.4 + magenta: 51.3 + cyan: 44.8 + white: 55 + brightBlack: 10.3 + brightRed: 37.3 + brightGreen: 68.2 + brightYellow: 94.9 + brightBlue: 63.8 + brightMagenta: 75.8 + brightCyan: 68.2 + brightWhite: 75.3 diff --git a/themes/jumper-light.yaml b/themes/jumper-light.yaml new file mode 100644 index 00000000..3b897d5a --- /dev/null +++ b/themes/jumper-light.yaml @@ -0,0 +1,49 @@ +name: "jumper-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#222A2A" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#36A595" + yellow: "#C9B230" + blue: "#DB515C" + magenta: "#E08E4C" + cyan: "#36A595" + white: "#2D3838" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#71D0C3" + brightYellow: "#E0D27F" + brightBlue: "#ECA6AB" + brightMagenta: "#EFC5A3" + brightCyan: "#71D0C3" + brightWhite: "#506262" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.5 + black: 0 + red: 80.3 + green: 56.5 + yellow: 41.5 + blue: 65.8 + magenta: 50.2 + cyan: 56.5 + white: 97.7 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 33.9 + brightYellow: 24.6 + brightBlue: 38.1 + brightMagenta: 26.8 + brightCyan: 33.9 + brightWhite: 82 diff --git a/themes/jumper.yaml b/themes/jumper.yaml new file mode 100644 index 00000000..d1eb8dd1 --- /dev/null +++ b/themes/jumper.yaml @@ -0,0 +1,49 @@ +name: "jumper" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#222A2A" + fg: "#8DA0A0" + black: "#2D3838" + red: "#BA0E2E" + green: "#36A595" + yellow: "#F6DA40" + blue: "#DB515C" + magenta: "#E08E4C" + cyan: "#36A595" + white: "#9BACAC" + brightBlack: "#506262" + brightRed: "#F03E5F" + brightGreen: "#71D0C3" + brightYellow: "#FBEDA1" + brightBlue: "#ECA6AB" + brightMagenta: "#EFC5A3" + brightCyan: "#71D0C3" + brightWhite: "#C5CECE" +meta: + mode: "dark" + accent: "orange" + hue: 197 + contrast: + fg: 45.3 + black: 0 + red: 18 + green: 41.7 + yellow: 80.8 + blue: 32.3 + magenta: 48.2 + cyan: 41.7 + white: 51.9 + brightBlack: 16.4 + brightRed: 34.3 + brightGreen: 65.1 + brightYellow: 91.8 + brightBlue: 60.7 + brightMagenta: 72.7 + brightCyan: 65.1 + brightWhite: 72.2 diff --git a/themes/jungle.yaml b/themes/jungle.yaml new file mode 100644 index 00000000..2f95b8b9 --- /dev/null +++ b/themes/jungle.yaml @@ -0,0 +1,49 @@ +name: "Jungle" +source: + marketplace_id: "nerudevs.jungle-scenario" + version: "1.0.1" + installs: 415 + author: "neru devs" + repo: "https://github.com/isneru/vsc-themes.git#main" + url: "https://marketplace.visualstudio.com/items?itemName=nerudevs.jungle-scenario" +colors: + bg: "#111713" + fg: "#B08968" + black: "#131317" + red: "#EEF0F9" + green: "#B08968" + yellow: "#57B574" + blue: "#146400" + magenta: "#C16A6A" + cyan: "#4A7547" + white: "#B08968" + brightBlack: "#DBDCDE" + brightRed: "#EEF0F9" + brightGreen: "#B08968" + brightYellow: "#57B574" + brightBlue: "#146400" + brightMagenta: "#C16A6A" + brightCyan: "#4A7547" + brightWhite: "#B08968" +meta: + mode: "dark" + accent: "green" + hue: 156 + contrast: + fg: 42.1 + black: 0 + red: 97.3 + green: 42.1 + yellow: 51.5 + blue: 16.1 + magenta: 35.6 + cyan: 24.3 + white: 42.1 + brightBlack: 84.5 + brightRed: 97.3 + brightGreen: 42.1 + brightYellow: 51.5 + brightBlue: 16.1 + brightMagenta: 35.6 + brightCyan: 24.3 + brightWhite: 42.1 diff --git a/themes/juniorcoder.yaml b/themes/juniorcoder.yaml new file mode 100644 index 00000000..235f49e2 --- /dev/null +++ b/themes/juniorcoder.yaml @@ -0,0 +1,49 @@ +name: "JuniorCoder" +source: + marketplace_id: "JuniorCoder.juniorcoders-theme" + version: "1.0.1" + installs: 106 + author: "JuniorCoder" + repo: "https://github.com/juniorcoder2008/theme" + url: "https://marketplace.visualstudio.com/items?itemName=JuniorCoder.juniorcoders-theme" +colors: + bg: "#292C35" + fg: "#F6FFFF" + black: "#252525" + red: "#FF0000" + green: "#16C851" + yellow: "#FFD001" + blue: "#568FF0" + magenta: "#CC00FF" + cyan: "#00FF9D" + white: "#FFFFFF" + brightBlack: "#464646" + brightRed: "#FB5A5A" + brightGreen: "#41FF80" + brightYellow: "#FAD73B" + brightBlue: "#568FF0" + brightMagenta: "#FF57F1" + brightCyan: "#27FFA9" + brightWhite: "#F6F5E4" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 102.4 + black: 0 + red: 33.3 + green: 54.6 + yellow: 77 + blue: 38.7 + magenta: 31.2 + cyan: 84 + white: 103.6 + brightBlack: 0 + brightRed: 40.2 + brightGreen: 84 + brightYellow: 79.4 + brightBlue: 38.7 + brightMagenta: 46.9 + brightCyan: 84.5 + brightWhite: 96.4 diff --git a/themes/just-code-already-fork.yaml b/themes/just-code-already-fork.yaml new file mode 100644 index 00000000..b0cca8a5 --- /dev/null +++ b/themes/just-code-already-fork.yaml @@ -0,0 +1,49 @@ +name: "Just Code Already - Fork" +source: + marketplace_id: "FaustVI00.FaustVI00" + version: "0.0.1" + installs: 79 + author: "FaustVI00" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=FaustVI00.FaustVI00" +colors: + bg: "#282E44" + fg: "#FFFADF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 272 + contrast: + fg: 99.2 + black: 0 + red: 22.8 + green: 49.1 + yellow: 81.7 + blue: 23.5 + magenta: 25.9 + cyan: 43.7 + white: 86.1 + brightBlack: 18.2 + brightRed: 34.7 + brightGreen: 59.7 + brightYellow: 91.8 + brightBlue: 36.1 + brightMagenta: 41.5 + brightCyan: 51.5 + brightWhite: 86.1 diff --git a/themes/jwrdark.yaml b/themes/jwrdark.yaml new file mode 100644 index 00000000..ea5c63f9 --- /dev/null +++ b/themes/jwrdark.yaml @@ -0,0 +1,49 @@ +name: "jwrdark" +source: + marketplace_id: "ibrhalilaydn.galactus-theme" + version: "0.1.0" + installs: 305 + author: "ibrhalil" + repo: "https://github.com/ibrhalil/galactus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ibrhalilaydn.galactus-theme" +colors: + bg: "#0C0C0C" + fg: "#999999" + black: "#242424" + red: "#8A2F58" + green: "#7E63B2" + yellow: "#914E89" + blue: "#3E6287" + magenta: "#5E468C" + cyan: "#2B7694" + white: "#899CA1" + brightBlack: "#474747" + brightRed: "#CF4F88" + brightGreen: "#53A6A6" + brightYellow: "#BF85CC" + brightBlue: "#4779B3" + brightMagenta: "#7F62B3" + brightCyan: "#47959E" + brightWhite: "#C0C0C0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 47 + black: 0 + red: 14.9 + green: 27.9 + yellow: 23.1 + blue: 20.1 + magenta: 15.3 + cyan: 26.6 + white: 46.8 + brightBlack: 10.7 + brightRed: 34.1 + brightGreen: 47.2 + brightYellow: 47.5 + brightBlue: 30.3 + brightMagenta: 27.8 + brightCyan: 39.5 + brightWhite: 68.4 diff --git a/themes/k-colorable-dark.yaml b/themes/k-colorable-dark.yaml new file mode 100644 index 00000000..a50da286 --- /dev/null +++ b/themes/k-colorable-dark.yaml @@ -0,0 +1,49 @@ +name: "k-colorable dark" +source: + marketplace_id: "hasparus.k-colorable-theme" + version: "0.3.2" + installs: 44 + author: "hasparus" + repo: "https://github.com/hasparus/k-colorable" + url: "https://marketplace.visualstudio.com/items?itemName=hasparus.k-colorable-theme" +colors: + bg: "#242A2C" + fg: "#CFD3C5" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D1D5DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 75.2 + black: 16.5 + red: 34.3 + green: 59.6 + yellow: 90.1 + blue: 36.3 + magenta: 48.7 + cyan: 58.2 + white: 77.2 + brightBlack: 45.1 + brightRed: 47.1 + brightGreen: 76.5 + brightYellow: 90.1 + brightBlue: 58.2 + brightMagenta: 48.7 + brightCyan: 66.8 + brightWhite: 101.5 diff --git a/themes/k-colorable-light.yaml b/themes/k-colorable-light.yaml new file mode 100644 index 00000000..f4a3ee9f --- /dev/null +++ b/themes/k-colorable-light.yaml @@ -0,0 +1,49 @@ +name: "k-colorable light" +source: + marketplace_id: "hasparus.k-colorable-theme" + version: "0.3.2" + installs: 44 + author: "hasparus" + repo: "https://github.com/hasparus/k-colorable" + url: "https://marketplace.visualstudio.com/items?itemName=hasparus.k-colorable-theme" +colors: + bg: "#FFFFFF" + fg: "#4F533F" + black: "#333333" + red: "#D32F2F" + green: "#77CC00" + yellow: "#F29718" + blue: "#E0E0E0" + magenta: "#9966CC" + cyan: "#4DBF99" + white: "#C7C7C7" + brightBlack: "#A1A1A1" + brightRed: "#D6656A" + brightGreen: "#A3D900" + brightYellow: "#E7C547" + brightBlue: "#6871FF" + brightMagenta: "#A37ACC" + brightCyan: "#57D9AD" + brightWhite: "#7E7E7E" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 87.6 + black: 98.7 + red: 72.8 + green: 38.7 + yellow: 44.5 + blue: 15.8 + magenta: 67.9 + cyan: 44.6 + white: 30.1 + brightBlack: 50.5 + brightRed: 62.5 + brightGreen: 29.5 + brightYellow: 29.7 + brightBlue: 66 + brightMagenta: 61.1 + brightCyan: 31.9 + brightWhite: 67.8 diff --git a/themes/k-relaxed.yaml b/themes/k-relaxed.yaml new file mode 100644 index 00000000..d4eeb6cc --- /dev/null +++ b/themes/k-relaxed.yaml @@ -0,0 +1,49 @@ +name: ".K Relaxed" +source: + marketplace_id: "tarikkavaz.k-relaxed" + version: "1.0.0" + installs: 15 + author: "Tarik Kavaz" + repo: "https://github.com/tarikkavaz/K-Relaxed-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=tarikkavaz.k-relaxed" +colors: + bg: "#181A28" + fg: "#D6D8E1" + black: "#2E2E2E" + red: "#FF5370" + green: "#A3BE8C" + yellow: "#E0AF68" + blue: "#7FD1FF" + magenta: "#C792EA" + cyan: "#89A4C1" + white: "#D6D8E1" + brightBlack: "#666666" + brightRed: "#FF5370" + brightGreen: "#A3BE8C" + brightYellow: "#E0AF68" + brightBlue: "#7FD1FF" + brightMagenta: "#C792EA" + brightCyan: "#89A4C1" + brightWhite: "#D6D8E1" +meta: + mode: "dark" + accent: "red" + hue: 278 + contrast: + fg: 81.6 + black: 0 + red: 43.2 + green: 61.2 + yellow: 62.3 + blue: 71.6 + magenta: 53.3 + cyan: 50.1 + white: 81.6 + brightBlack: 21.6 + brightRed: 43.2 + brightGreen: 61.2 + brightYellow: 62.3 + brightBlue: 71.6 + brightMagenta: 53.3 + brightCyan: 50.1 + brightWhite: 81.6 diff --git a/themes/kabukich.yaml b/themes/kabukich.yaml new file mode 100644 index 00000000..953bf0ff --- /dev/null +++ b/themes/kabukich.yaml @@ -0,0 +1,49 @@ +name: "Kabukichō" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3734 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#1F1529" + fg: "#D4CDDE" + black: "#34294F" + red: "#F92AAD" + green: "#54E484" + yellow: "#E0B401" + blue: "#58C7E0" + magenta: "#B141F1" + cyan: "#53C8E2" + white: "#495495" + brightBlack: "#34294F" + brightRed: "#F92AAD" + brightGreen: "#54E484" + brightYellow: "#E0B401" + brightBlue: "#53C8E2" + brightMagenta: "#B141F1" + brightCyan: "#53C8E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 306 + contrast: + fg: 76.7 + black: 0 + red: 39.5 + green: 73.6 + yellow: 63.6 + blue: 63.4 + magenta: 31.7 + cyan: 63.7 + white: 16.4 + brightBlack: 0 + brightRed: 39.5 + brightGreen: 73.6 + brightYellow: 63.6 + brightBlue: 63.7 + brightMagenta: 31.7 + brightCyan: 63.7 + brightWhite: 106.6 diff --git a/themes/kactus-dream-theme-dark.yaml b/themes/kactus-dream-theme-dark.yaml new file mode 100644 index 00000000..6528a75d --- /dev/null +++ b/themes/kactus-dream-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Kactus Dream Theme Dark" +source: + marketplace_id: "ColcaStudios.kactus-dream-theme" + version: "1.0.1" + installs: 60 + author: "Colca Studios" + repo: "https://github.com/colcastudios/Kactus-Dream-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ColcaStudios.kactus-dream-theme" +colors: + bg: "#211B26" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 309 + contrast: + fg: 78.7 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29 + cyan: 46.8 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.8 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.3 diff --git a/themes/kactus-dream-theme.yaml b/themes/kactus-dream-theme.yaml new file mode 100644 index 00000000..a9f5ace5 --- /dev/null +++ b/themes/kactus-dream-theme.yaml @@ -0,0 +1,49 @@ +name: "Kactus Dream Theme" +source: + marketplace_id: "ColcaStudios.kactus-dream-theme" + version: "1.0.1" + installs: 60 + author: "Colca Studios" + repo: "https://github.com/colcastudios/Kactus-Dream-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ColcaStudios.kactus-dream-theme" +colors: + bg: "#FBFBFB" + fg: "#353535" + black: "#B8B8B8" + red: "#CD3131" + green: "#7DAC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#69B049" + brightBlack: "#4DA141" + brightRed: "#CD3131" + brightGreen: "#52A600" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#CB7529" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 95.6 + black: 36 + red: 71.6 + green: 49.7 + yellow: 55.5 + blue: 83.7 + magenta: 72.2 + cyan: 58.2 + white: 49.1 + brightBlack: 56.9 + brightRed: 71.6 + brightGreen: 54.9 + brightYellow: 38.5 + brightBlue: 83.7 + brightMagenta: 72.2 + brightCyan: 58.2 + brightWhite: 59.1 diff --git a/themes/kadoku.yaml b/themes/kadoku.yaml new file mode 100644 index 00000000..67ffe668 --- /dev/null +++ b/themes/kadoku.yaml @@ -0,0 +1,49 @@ +name: "kadoku" +source: + marketplace_id: "ktnyt.kadoku" + version: "0.0.2" + installs: 46 + author: "ktnyt" + repo: "https://github.com/ktnyt/kadoku" + url: "https://marketplace.visualstudio.com/items?itemName=ktnyt.kadoku" +colors: + bg: "#34343B" + fg: "#E0E0E0" + black: "#34343B" + red: "#DF6B92" + green: "#91C58A" + yellow: "#F8CE76" + blue: "#79B3F0" + magenta: "#7B86C6" + cyan: "#98DCE8" + white: "#E0E0E0" + brightBlack: "#24242B" + brightRed: "#DE5656" + brightGreen: "#6BB4AC" + brightYellow: "#FEF188" + brightBlue: "#7C86C6" + brightMagenta: "#7B86C6" + brightCyan: "#98DCE8" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "orange" + hue: 286 + contrast: + fg: 81.6 + black: 0 + red: 37.3 + green: 57.7 + yellow: 73.9 + blue: 52.6 + magenta: 33.3 + cyan: 72.4 + white: 81.6 + brightBlack: 0 + brightRed: 31 + brightGreen: 48.6 + brightYellow: 90.8 + brightBlue: 33.4 + brightMagenta: 33.3 + brightCyan: 72.4 + brightWhite: 91.8 diff --git a/themes/kai-garbage.yaml b/themes/kai-garbage.yaml new file mode 100644 index 00000000..f1fd98f6 --- /dev/null +++ b/themes/kai-garbage.yaml @@ -0,0 +1,49 @@ +name: "kai.garbage" +source: + marketplace_id: "Kaikaci.dark-garbage-theme" + version: "0.0.1" + installs: 41 + author: "Kai kaci" + repo: "https://github.com/Lukalukito/kai.garbage-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Kaikaci.dark-garbage-theme" +colors: + bg: "#272D3B" + fg: "#D2E2FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 267 + contrast: + fg: 84.1 + black: 0 + red: 23.3 + green: 49.5 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.6 diff --git a/themes/kai-sa-white-fork.yaml b/themes/kai-sa-white-fork.yaml new file mode 100644 index 00000000..6ade251c --- /dev/null +++ b/themes/kai-sa-white-fork.yaml @@ -0,0 +1,49 @@ +name: "Kai'sa - white - Fork" +source: + marketplace_id: "EmeAim.aim" + version: "0.0.8" + installs: 1797 + author: "EmeAim" + repo: "https://github.com/EmePin/aim-themes" + url: "https://marketplace.visualstudio.com/items?itemName=EmeAim.aim" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 48 + yellow: 17 + blue: 73.3 + magenta: 70.9 + cyan: 53.3 + white: 12.9 + brightBlack: 78.8 + brightRed: 62.1 + brightGreen: 37.9 + brightYellow: 7.7 + brightBlue: 60.7 + brightMagenta: 55.4 + brightCyan: 45.7 + brightWhite: 12.9 diff --git a/themes/kai.yaml b/themes/kai.yaml new file mode 100644 index 00000000..3ab17e84 --- /dev/null +++ b/themes/kai.yaml @@ -0,0 +1,49 @@ +name: "Kai" +source: + marketplace_id: "igordvlpr.kai-theme" + version: "1.0.4" + installs: 1612 + author: "Igor Dimitrijević" + repo: "https://github.com/igorskyflyer/vscode-theme-kai" + url: "https://marketplace.visualstudio.com/items?itemName=igordvlpr.kai-theme" +colors: + bg: "#0C0C15" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#4D4D4D" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FDFDFD" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 80.2 + black: 0 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 12.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 106.3 diff --git a/themes/kailash-shaw-dark-theme.yaml b/themes/kailash-shaw-dark-theme.yaml new file mode 100644 index 00000000..df1c3612 --- /dev/null +++ b/themes/kailash-shaw-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Kailash shaw Dark Theme" +source: + marketplace_id: "vs-code-red-theme.vs-code-red-theme" + version: "0.3.0" + installs: 595 + author: "vs-code-red-theme" + repo: "https://github.com/karmickphp61/vs-code-red-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vs-code-red-theme.vs-code-red-theme" +colors: + bg: "#070B11" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 107.7 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/kaimandres.yaml b/themes/kaimandres.yaml new file mode 100644 index 00000000..609053ff --- /dev/null +++ b/themes/kaimandres.yaml @@ -0,0 +1,49 @@ +name: "Kaimandres" +source: + marketplace_id: "martellev.kaimandres-vscode" + version: "1.3.1" + installs: 66 + author: "MartelleV" + repo: "https://github.com/MartelleV/kaimandres-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=martellev.kaimandres-vscode" +colors: + bg: "#16161E" + fg: "#E4E4EB" + black: "#16161E" + red: "#D0679D" + green: "#91D7A3" + yellow: "#FFFAC2" + blue: "#78A9FF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#E4E4EB" + brightBlack: "#767C9D" + brightRed: "#EA9BBA" + brightGreen: "#A8E6B8" + brightYellow: "#E7D66D" + brightBlue: "#ADD7FF" + brightMagenta: "#D0C9FF" + brightCyan: "#A3E5FF" + brightWhite: "#E4E4EB" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 89.7 + black: 0 + red: 39.2 + green: 72 + yellow: 102 + blue: 54.8 + magenta: 54.9 + cyan: 78.3 + white: 89.7 + brightBlack: 32.6 + brightRed: 59.8 + brightGreen: 81.8 + brightYellow: 79.9 + brightBlue: 78.6 + brightMagenta: 76.5 + brightCyan: 84.1 + brightWhite: 89.7 diff --git a/themes/kaio.yaml b/themes/kaio.yaml new file mode 100644 index 00000000..5fb5b386 --- /dev/null +++ b/themes/kaio.yaml @@ -0,0 +1,49 @@ +name: "Kaio" +source: + marketplace_id: "ciiqr.theme-kaio" + version: "1.5.0" + installs: 139 + author: "ciiqr" + repo: "https://github.com/ciiqr/vscode-extensions" + url: "https://marketplace.visualstudio.com/items?itemName=ciiqr.theme-kaio" +colors: + bg: "#292524" + fg: "#F5F5F4" + black: "#333333" + red: "#EC4899" + green: "#86B42B" + yellow: "#FACC15" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#DB2777" + brightGreen: "#A3E635" + brightYellow: "#FDDD6C" + brightBlue: "#818CF8" + brightMagenta: "#A78BFA" + brightCyan: "#67E8F9" + brightWhite: "#F5F5F4" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 98.2 + black: 0 + red: 36.9 + green: 51 + yellow: 75.7 + blue: 32.6 + magenta: 30.2 + cyan: 48.4 + white: 86.4 + brightBlack: 20 + brightRed: 28.4 + brightGreen: 76.6 + brightYellow: 84.2 + brightBlue: 42.4 + brightMagenta: 46.3 + brightCyan: 79.1 + brightWhite: 98.2 diff --git a/themes/kaiokenkolors.yaml b/themes/kaiokenkolors.yaml new file mode 100644 index 00000000..40e56a51 --- /dev/null +++ b/themes/kaiokenkolors.yaml @@ -0,0 +1,49 @@ +name: "KaiokenKolors" +source: + marketplace_id: "gallahaad.kaiokenkolors" + version: "0.0.1" + installs: 40 + author: "Gallahaad" + repo: "https://github.com/Gallahaad/KaiokenKolors" + url: "https://marketplace.visualstudio.com/items?itemName=gallahaad.kaiokenkolors" +colors: + bg: "#00143D" + fg: "#D4D4D4" + black: "#000000" + red: "#FF1313" + green: "#00C077" + yellow: "#FFFF00" + blue: "#0079FF" + magenta: "#FF00FF" + cyan: "#13D0FF" + white: "#FFFFFF" + brightBlack: "#717070" + brightRed: "#FF4E4E" + brightGreen: "#00FF98" + brightYellow: "#FFFF47" + brightBlue: "#3394FF" + brightMagenta: "#FF82FF" + brightCyan: "#2BD5FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 79.2 + black: 0 + red: 36.5 + green: 54.5 + yellow: 101.4 + blue: 33.6 + magenta: 45 + cyan: 67.8 + white: 106.6 + brightBlack: 26.2 + brightRed: 41.9 + brightGreen: 86.9 + brightYellow: 101.7 + brightBlue: 43.3 + brightMagenta: 59.9 + brightCyan: 70.4 + brightWhite: 89.8 diff --git a/themes/kaique-theme.yaml b/themes/kaique-theme.yaml new file mode 100644 index 00000000..6a6bcc27 --- /dev/null +++ b/themes/kaique-theme.yaml @@ -0,0 +1,49 @@ +name: "kaique-theme" +source: + marketplace_id: "KaiqueOliveiraSantos.kaique-theme" + version: "2.0.2" + installs: 36 + author: "Kaique Oliveira Santos" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=KaiqueOliveiraSantos.kaique-theme" +colors: + bg: "#040404" + fg: "#676873" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 24.2 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/kaisa-dark.yaml b/themes/kaisa-dark.yaml new file mode 100644 index 00000000..2edffa0c --- /dev/null +++ b/themes/kaisa-dark.yaml @@ -0,0 +1,49 @@ +name: "Kaisa-Dark" +source: + marketplace_id: "EmeAim.aim" + version: "0.0.8" + installs: 1797 + author: "EmeAim" + repo: "https://github.com/EmePin/aim-themes" + url: "https://marketplace.visualstudio.com/items?itemName=EmeAim.aim" +colors: + bg: "#232536" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 279 + contrast: + fg: 77.4 + black: 0 + red: 24.6 + green: 50.9 + yellow: 83.5 + blue: 25.3 + magenta: 27.6 + cyan: 45.4 + white: 87.9 + brightBlack: 19.9 + brightRed: 36.4 + brightGreen: 61.4 + brightYellow: 93.5 + brightBlue: 37.9 + brightMagenta: 43.3 + brightCyan: 53.3 + brightWhite: 87.9 diff --git a/themes/kali-linux-theme.yaml b/themes/kali-linux-theme.yaml new file mode 100644 index 00000000..906b6309 --- /dev/null +++ b/themes/kali-linux-theme.yaml @@ -0,0 +1,49 @@ +name: "Kali linux theme" +source: + marketplace_id: "minako.wired" + version: "2.0.5" + installs: 4867 + author: "minako" + repo: "https://github.com/kayliese/wired" + url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" +colors: + bg: "#222735" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + contrast: + fg: 77.2 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.1 + magenta: 27.4 + cyan: 45.2 + white: 87.7 + brightBlack: 19.7 + brightRed: 36.2 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.7 + brightMagenta: 43.1 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/kalia.yaml b/themes/kalia.yaml new file mode 100644 index 00000000..738bec5a --- /dev/null +++ b/themes/kalia.yaml @@ -0,0 +1,49 @@ +name: "Kalia" +source: + marketplace_id: "krasimir.kalia" + version: "1.43.0" + installs: 4088 + author: "Krasimir Tsonev" + repo: "https://github.com/krasimir/kalia" + url: "https://marketplace.visualstudio.com/items?itemName=krasimir.kalia" +colors: + bg: "#090909" + fg: "#C7C7C7" + black: "#FFFFFF" + red: "#FF0032" + green: "#00FF68" + yellow: "#FFCA00" + blue: "#004BFF" + magenta: "#46E7FC" + cyan: "#00D2FF" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#FF0032" + brightGreen: "#00FF68" + brightYellow: "#FFCA00" + brightBlue: "#004BFF" + brightMagenta: "#46E7FC" + brightCyan: "#00D2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 72.6 + black: 107.8 + red: 37.6 + green: 87 + yellow: 78.7 + blue: 22.8 + magenta: 80.5 + cyan: 69.9 + white: 107.8 + brightBlack: 107.8 + brightRed: 37.6 + brightGreen: 87 + brightYellow: 78.7 + brightBlue: 22.8 + brightMagenta: 80.5 + brightCyan: 69.9 + brightWhite: 107.8 diff --git a/themes/kalidozza.yaml b/themes/kalidozza.yaml new file mode 100644 index 00000000..4a0c6706 --- /dev/null +++ b/themes/kalidozza.yaml @@ -0,0 +1,49 @@ +name: "Kalidozza" +source: + marketplace_id: "afrolino02.Kalidozza-theme" + version: "0.0.1" + installs: 29 + author: "afrolino02" + repo: "https://github.com/Kalidozza-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=afrolino02.Kalidozza-theme" +colors: + bg: "#0D0701" + fg: "#D4D4D4" + black: "#1D1D1D" + red: "#EA5656" + green: "#32EA36" + yellow: "#F9E05B" + blue: "#4F9BEE" + magenta: "#D74CD7" + cyan: "#00A59D" + white: "#E5E5E5" + brightBlack: "#969696" + brightRed: "#D17D7D" + brightGreen: "#60C262" + brightYellow: "#FFFF93" + brightBlue: "#88B7EA" + brightMagenta: "#F590F5" + brightCyan: "#84F9F3" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 79 + contrast: + fg: 80.4 + black: 0 + red: 39.7 + green: 75.8 + yellow: 87.6 + blue: 46.8 + magenta: 39.4 + cyan: 44.9 + white: 90.9 + brightBlack: 45.5 + brightRed: 44.9 + brightGreen: 58.2 + brightYellow: 104 + brightBlue: 61.2 + brightMagenta: 62.3 + brightCyan: 91.8 + brightWhite: 90.9 diff --git a/themes/kalisi.yaml b/themes/kalisi.yaml new file mode 100644 index 00000000..0b992c70 --- /dev/null +++ b/themes/kalisi.yaml @@ -0,0 +1,49 @@ +name: "Kalisi" +source: + marketplace_id: "freeo.vscode-kalisi" + version: "1.0.2" + installs: 706 + author: "freeo" + repo: "https://github.com/freeo/vscode-kalisi" + url: "https://marketplace.visualstudio.com/items?itemName=freeo.vscode-kalisi" +colors: + bg: "#FAFAFA" + fg: "#000000" + black: "#000000" + red: "#FF0000" + green: "#00DD00" + yellow: "#EEEE44" + blue: "#3C91E6" + magenta: "#DD00DD" + cyan: "#66D600" + white: "#888888" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00AAAA" + brightYellow: "#EE8800" + brightBlue: "#3C91E6" + brightMagenta: "#CC00CC" + brightCyan: "#00DD00" + brightWhite: "#000000" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 103 + black: 103 + red: 61.1 + green: 30.9 + yellow: 8.7 + blue: 56.9 + magenta: 62.5 + cyan: 32.1 + white: 60.1 + brightBlack: 103 + brightRed: 61.1 + brightGreen: 51.2 + brightYellow: 46.8 + brightBlue: 56.9 + brightMagenta: 67.2 + brightCyan: 30.9 + brightWhite: 103 diff --git a/themes/kalmia-high-contrast.yaml b/themes/kalmia-high-contrast.yaml new file mode 100644 index 00000000..3ac5aa7d --- /dev/null +++ b/themes/kalmia-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Kalmia High Contrast" +source: + marketplace_id: "qexat.kalmia" + version: "0.1.1" + installs: 202 + author: "Qexat" + repo: "https://github.com/qexat/kalmia" + url: "https://marketplace.visualstudio.com/items?itemName=qexat.kalmia" +colors: + bg: "#171115" + fg: "#EDBFDB" + black: "#000000" + red: "#D9737E" + green: "#B0D973" + yellow: "#D9CE73" + blue: "#737ED9" + magenta: "#CF73D9" + cyan: "#73B0D9" + white: "#F8E7F1" + brightBlack: "#5D4654" + brightRed: "#EFC7CB" + brightGreen: "#DFEFC7" + brightYellow: "#EFEBC7" + brightBlue: "#C7CBEF" + brightMagenta: "#EBC7EF" + brightCyan: "#C7DFEF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 339 + contrast: + fg: 75.1 + black: 0 + red: 43.1 + green: 74.9 + yellow: 74.9 + blue: 36.8 + magenta: 45.4 + cyan: 55.2 + white: 94.5 + brightBlack: 12.3 + brightRed: 77.9 + brightGreen: 93 + brightYellow: 93.3 + brightBlue: 75.7 + brightMagenta: 78.9 + brightCyan: 84.4 + brightWhite: 107.2 diff --git a/themes/kalmia.yaml b/themes/kalmia.yaml new file mode 100644 index 00000000..7031eaf3 --- /dev/null +++ b/themes/kalmia.yaml @@ -0,0 +1,49 @@ +name: "Kalmia" +source: + marketplace_id: "qexat.kalmia" + version: "0.1.1" + installs: 202 + author: "Qexat" + repo: "https://github.com/qexat/kalmia" + url: "https://marketplace.visualstudio.com/items?itemName=qexat.kalmia" +colors: + bg: "#2E232A" + fg: "#E9AFD2" + black: "#000000" + red: "#C93747" + green: "#8EC937" + yellow: "#C9B937" + blue: "#3747C9" + magenta: "#BA37C9" + cyan: "#378EC9" + white: "#F4D7E8" + brightBlack: "#171115" + brightRed: "#D9737E" + brightGreen: "#B5E9AF" + brightYellow: "#E9E3AF" + brightBlue: "#737ED9" + brightMagenta: "#CF73D9" + brightCyan: "#AFD2E9" + brightWhite: "#F7E3EF" +meta: + mode: "dark" + accent: "pink" + hue: 340 + contrast: + fg: 65.5 + black: 0 + red: 24.7 + green: 61 + yellow: 60.5 + blue: 14.4 + magenta: 27.1 + cyan: 35.5 + white: 84 + brightBlack: 0 + brightRed: 40.6 + brightGreen: 82 + brightYellow: 85.5 + brightBlue: 34.3 + brightMagenta: 43 + brightCyan: 73.2 + brightWhite: 90 diff --git a/themes/kami-theme.yaml b/themes/kami-theme.yaml new file mode 100644 index 00000000..581a069b --- /dev/null +++ b/themes/kami-theme.yaml @@ -0,0 +1,49 @@ +name: "kami theme" +source: + marketplace_id: "Ruhan.kami-theme" + version: "0.0.1" + installs: 109 + author: "Ruhan" + repo: "https://github.com/Ruhannn/kami-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Ruhan.kami-theme" +colors: + bg: "#1B141F" + fg: "#D4D4D4" + black: "#51576D" + red: "#71ADE9" + green: "#AB8CAE" + yellow: "#E59DB1" + blue: "#9EA0D3" + magenta: "#C4A7E7" + cyan: "#E1B4CE" + white: "#CEDAEB" + brightBlack: "#6E6A86" + brightRed: "#71ADE9" + brightGreen: "#9CCFD8" + brightYellow: "#E59DB1" + brightBlue: "#9EA0D3" + brightMagenta: "#C4A7E7" + brightCyan: "#EBBCBA" + brightWhite: "#CEDAEB" +meta: + mode: "dark" + accent: "indigo" + hue: 313 + contrast: + fg: 79.5 + black: 16.2 + red: 54.5 + green: 44.7 + yellow: 59.2 + blue: 52 + magenta: 60.4 + cyan: 68.1 + white: 82.5 + brightBlack: 25.2 + brightRed: 54.5 + brightGreen: 71.4 + brightYellow: 59.2 + brightBlue: 52 + brightMagenta: 60.4 + brightCyan: 71.8 + brightWhite: 82.5 diff --git a/themes/kanagawa-dragon.yaml b/themes/kanagawa-dragon.yaml new file mode 100644 index 00000000..5990f136 --- /dev/null +++ b/themes/kanagawa-dragon.yaml @@ -0,0 +1,49 @@ +name: "Kanagawa Dragon" +source: + marketplace_id: "metaphore.kanagawa-vscode-color-theme" + version: "0.5.0" + installs: 29565 + author: "metapho.re" + repo: "https://github.com/metapho-re/kanagawa-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=metaphore.kanagawa-vscode-color-theme" +colors: + bg: "#181616" + fg: "#C5C9C5" + black: "#0D0C0C" + red: "#C4746E" + green: "#8A9A7B" + yellow: "#C4B28A" + blue: "#8BA4B0" + magenta: "#A292A3" + cyan: "#8EA4A2" + white: "#C8C093" + brightBlack: "#A6A69C" + brightRed: "#E46876" + brightGreen: "#87A987" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#938AA9" + brightCyan: "#7AA89F" + brightWhite: "#C5C9C5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 72.3 + black: 0 + red: 38.8 + green: 44.1 + yellow: 60.6 + blue: 49.9 + magenta: 45.1 + cyan: 49.7 + white: 67.1 + brightBlack: 52.7 + brightRed: 42 + brightGreen: 50.1 + brightYellow: 72.2 + brightBlue: 56.6 + brightMagenta: 40.9 + brightCyan: 49.4 + brightWhite: 72.3 diff --git a/themes/kanagawa-light.yaml b/themes/kanagawa-light.yaml new file mode 100644 index 00000000..b856d01b --- /dev/null +++ b/themes/kanagawa-light.yaml @@ -0,0 +1,49 @@ +name: "Kanagawa Light" +source: + marketplace_id: "Icycoldveins.verum-monokai-themes" + version: "1.2.1" + installs: 46 + author: "Icycoldveins" + repo: "https://github.com/icycoldveins/Ide-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" +colors: + bg: "#2D2A2E" + fg: "#D4C4A8" + black: "#1A2832" + red: "#E06C75" + green: "#98C379" + yellow: "#E78A4E" + blue: "#CADCDD" + magenta: "#FF6B6B" + cyan: "#89B482" + white: "#2D2A2E" + brightBlack: "#3C5B6F" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E78A4E" + brightBlue: "#CADCDD" + brightMagenta: "#FF6B6B" + brightCyan: "#89B482" + brightWhite: "#2D2A2E" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 68 + black: 0 + red: 39.1 + green: 59.3 + yellow: 47.8 + blue: 79.2 + magenta: 45.1 + cyan: 51.6 + white: 0 + brightBlack: 13.1 + brightRed: 39.1 + brightGreen: 59.3 + brightYellow: 47.8 + brightBlue: 79.2 + brightMagenta: 45.1 + brightCyan: 51.6 + brightWhite: 0 diff --git a/themes/kanagawa-lotus.yaml b/themes/kanagawa-lotus.yaml new file mode 100644 index 00000000..a6911322 --- /dev/null +++ b/themes/kanagawa-lotus.yaml @@ -0,0 +1,49 @@ +name: "Kanagawa Lotus" +source: + marketplace_id: "metaphore.kanagawa-vscode-color-theme" + version: "0.5.0" + installs: 29565 + author: "metapho.re" + repo: "https://github.com/metapho-re/kanagawa-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=metaphore.kanagawa-vscode-color-theme" +colors: + bg: "#F2ECBC" + fg: "#545464" + black: "#1F1F28" + red: "#C84053" + green: "#6F894E" + yellow: "#77713F" + blue: "#4D699B" + magenta: "#B35B79" + cyan: "#597B75" + white: "#545464" + brightBlack: "#8A8980" + brightRed: "#D7474B" + brightGreen: "#6E915F" + brightYellow: "#836F4A" + brightBlue: "#6693BF" + brightMagenta: "#624C83" + brightCyan: "#5E857A" + brightWhite: "#43436C" +meta: + mode: "light" + accent: "orange" + hue: 102 + contrast: + fg: 73.6 + black: 91 + red: 60.5 + green: 54.3 + yellow: 62.2 + blue: 65.2 + magenta: 58.5 + cyan: 60 + white: 73.6 + brightBlack: 50.5 + brightRed: 56.4 + brightGreen: 51 + brightYellow: 61.3 + brightBlue: 47.3 + brightMagenta: 73 + brightCyan: 55.9 + brightWhite: 79.2 diff --git a/themes/kanagawa-night.yaml b/themes/kanagawa-night.yaml new file mode 100644 index 00000000..fee77d73 --- /dev/null +++ b/themes/kanagawa-night.yaml @@ -0,0 +1,49 @@ +name: "Kanagawa Night" +source: + marketplace_id: "Avetis.kanagawa-night" + version: "1.0.1" + installs: 1264 + author: "Avetis" + repo: "https://github.com/AvetisDN/kanagawa-night" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.kanagawa-night" +colors: + bg: "#1F1F28" + fg: "#E2DDC2" + black: "#000000" + red: "#D15765" + green: "#8BB852" + yellow: "#FFBC65" + blue: "#4F76C6" + magenta: "#957FB8" + cyan: "#7CAFC4" + white: "#DCD7BA" + brightBlack: "#7F7D71" + brightRed: "#DE6674" + brightGreen: "#98BB6C" + brightYellow: "#FFCF84" + brightBlue: "#7E9CD8" + brightMagenta: "#AE95D5" + brightCyan: "#9AD6EE" + brightWhite: "#ECE7CA" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 83.5 + black: 0 + red: 33 + green: 54.5 + yellow: 71.8 + blue: 29 + magenta: 37.1 + cyan: 52.9 + white: 79.7 + brightBlack: 31.1 + brightRed: 39.2 + brightGreen: 57.4 + brightYellow: 80 + brightBlue: 46.7 + brightMagenta: 49 + brightCyan: 74.3 + brightWhite: 89.7 diff --git a/themes/kanagawa-paper.yaml b/themes/kanagawa-paper.yaml new file mode 100644 index 00000000..bce73bbe --- /dev/null +++ b/themes/kanagawa-paper.yaml @@ -0,0 +1,49 @@ +name: "Kanagawa Paper" +source: + marketplace_id: "SimonHo.kanagawa-paper" + version: "1.0.10" + installs: 5475 + author: "sho-87" + repo: "https://github.com/sho-87/kanagawa-paper.vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SimonHo.kanagawa-paper" +colors: + bg: "#1F1F28" + fg: "#DCD7BA" + black: "#0D0C0C" + red: "#C4746E" + green: "#8A9A7B" + yellow: "#C4B28A" + blue: "#8BA4B0" + magenta: "#A292A3" + cyan: "#8EA4A2" + white: "#C8C093" + brightBlack: "#A6A69C" + brightRed: "#E46876" + brightGreen: "#87A987" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#938AA9" + brightCyan: "#7AA89F" + brightWhite: "#C5C9C5" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 79.7 + black: 0 + red: 37.7 + green: 42.9 + yellow: 59.5 + blue: 48.8 + magenta: 44 + cyan: 48.5 + white: 66 + brightBlack: 51.6 + brightRed: 40.9 + brightGreen: 48.9 + brightYellow: 71.1 + brightBlue: 55.5 + brightMagenta: 39.7 + brightCyan: 48.3 + brightWhite: 71.1 diff --git a/themes/kanagawa-wave-light.yaml b/themes/kanagawa-wave-light.yaml new file mode 100644 index 00000000..60d5f09d --- /dev/null +++ b/themes/kanagawa-wave-light.yaml @@ -0,0 +1,49 @@ +name: "Kanagawa Wave Light" +source: + marketplace_id: "Icycoldveins.verum-monokai-themes" + version: "1.2.1" + installs: 46 + author: "Icycoldveins" + repo: "https://github.com/icycoldveins/Ide-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" +colors: + bg: "#F5E6D3" + fg: "#1C2841" + black: "#F5E6D3" + red: "#E06C75" + green: "#98C379" + yellow: "#E78A4E" + blue: "#2B7AAE" + magenta: "#FF6B6B" + cyan: "#89B482" + white: "#1C2841" + brightBlack: "#E0D5C7" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E78A4E" + brightBlue: "#2B7AAE" + brightMagenta: "#FF6B6B" + brightCyan: "#89B482" + brightWhite: "#1C2841" +meta: + mode: "light" + accent: "orange" + hue: 74 + contrast: + fg: 87.9 + black: 0 + red: 45.1 + green: 25.5 + yellow: 36.5 + blue: 58.5 + magenta: 39.2 + cyan: 32.8 + white: 87.9 + brightBlack: 7.8 + brightRed: 45.1 + brightGreen: 25.5 + brightYellow: 36.5 + brightBlue: 58.5 + brightMagenta: 39.2 + brightCyan: 32.8 + brightWhite: 87.9 diff --git a/themes/kanagawa-wave.yaml b/themes/kanagawa-wave.yaml new file mode 100644 index 00000000..c40e0530 --- /dev/null +++ b/themes/kanagawa-wave.yaml @@ -0,0 +1,49 @@ +name: "Kanagawa Wave" +source: + marketplace_id: "Icycoldveins.verum-monokai-themes" + version: "1.2.1" + installs: 46 + author: "Icycoldveins" + repo: "https://github.com/icycoldveins/Ide-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" +colors: + bg: "#2D2A2E" + fg: "#C5B18D" + black: "#1C2841" + red: "#E06C75" + green: "#98C379" + yellow: "#E78A4E" + blue: "#5B6B7A" + magenta: "#FF6B6B" + cyan: "#89B482" + white: "#F5E6D3" + brightBlack: "#2B3A57" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E78A4E" + brightBlue: "#5B6B7A" + brightMagenta: "#FF6B6B" + brightCyan: "#89B482" + brightWhite: "#F5E6D3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 57.4 + black: 0 + red: 39.1 + green: 59.3 + yellow: 47.8 + blue: 20.3 + magenta: 45.1 + cyan: 51.6 + white: 88.9 + brightBlack: 0 + brightRed: 39.1 + brightGreen: 59.3 + brightYellow: 47.8 + brightBlue: 20.3 + brightMagenta: 45.1 + brightCyan: 51.6 + brightWhite: 88.9 diff --git a/themes/kanagawa.yaml b/themes/kanagawa.yaml new file mode 100644 index 00000000..a690b918 --- /dev/null +++ b/themes/kanagawa.yaml @@ -0,0 +1,49 @@ +name: "Kanagawa" +source: + marketplace_id: "qufiwefefwoyn.kanagawa" + version: "1.5.1" + installs: 249563 + author: "qufiwefefwoyn" + repo: "https://github.com/barklan/kanagawa.vscode" + url: "https://marketplace.visualstudio.com/items?itemName=qufiwefefwoyn.kanagawa" +colors: + bg: "#1F1F28" + fg: "#DCD7BA" + black: "#1F1F28" + red: "#E82424" + green: "#76946A" + yellow: "#FF9E3B" + blue: "#658594" + magenta: "#957FB8" + cyan: "#9CABCA" + white: "#DCD7BA" + brightBlack: "#2A2A37" + brightRed: "#FF5D62" + brightGreen: "#98BB6C" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#D27E99" + brightCyan: "#A3D4D5" + brightWhite: "#DCD7BA" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 79.7 + black: 0 + red: 30.7 + green: 38.4 + yellow: 60.5 + blue: 32.8 + magenta: 37.1 + cyan: 54.4 + white: 79.7 + brightBlack: 0 + brightRed: 44 + brightGreen: 57.4 + brightYellow: 71.1 + brightBlue: 55.5 + brightMagenta: 44.3 + brightCyan: 73 + brightWhite: 79.7 diff --git a/themes/kanamin-dark.yaml b/themes/kanamin-dark.yaml new file mode 100644 index 00000000..da87cb11 --- /dev/null +++ b/themes/kanamin-dark.yaml @@ -0,0 +1,49 @@ +name: "Kanamin dark" +source: + marketplace_id: "vladoo.kanamin-theme" + version: "2.0.8" + installs: 255 + author: "vladoo" + repo: "https://github.com/vlaadoo/kanamin-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vladoo.kanamin-theme" +colors: + bg: "#121417" + fg: "#B0B0BA" + black: "#1F1F28" + red: "#E82424" + green: "#76946A" + yellow: "#FF9E3B" + blue: "#658594" + magenta: "#957FB8" + cyan: "#9CABCA" + white: "#DCD7BA" + brightBlack: "#2A2A37" + brightRed: "#FF5D62" + brightGreen: "#98BB6C" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#D27E99" + brightCyan: "#A3D4D5" + brightWhite: "#DCD7BA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 59.2 + black: 0 + red: 32.1 + green: 39.7 + yellow: 61.8 + blue: 34.2 + magenta: 38.5 + cyan: 55.8 + white: 81.1 + brightBlack: 0 + brightRed: 45.3 + brightGreen: 58.8 + brightYellow: 72.4 + brightBlue: 56.9 + brightMagenta: 45.7 + brightCyan: 74.4 + brightWhite: 81.1 diff --git a/themes/kanao.yaml b/themes/kanao.yaml new file mode 100644 index 00000000..f5f8c543 --- /dev/null +++ b/themes/kanao.yaml @@ -0,0 +1,49 @@ +name: "Kanao" +source: + marketplace_id: "MuhammadHanif.narato" + version: "1.4.0" + installs: 439 + author: "Muhammad Hanif" + repo: "https://github.com/mhaniflab/narato" + url: "https://marketplace.visualstudio.com/items?itemName=MuhammadHanif.narato" +colors: + bg: "#191919" + fg: "#F5E8C7" + black: "#191919" + red: "#E82424" + green: "#323232" + yellow: "#FF9E3B" + blue: "#E6A4B4" + magenta: "#FFD369" + cyan: "#F5E8C7" + white: "#F5E8C7" + brightBlack: "#0F0F0F" + brightRed: "#FF5D62" + brightGreen: "#98BB6C" + brightYellow: "#EEEEEE" + brightBlue: "#7FB4CA" + brightMagenta: "#F5E8C7" + brightCyan: "#A3D4D5" + brightWhite: "#F5E8C7" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 92.2 + black: 0 + red: 31.6 + green: 0 + yellow: 61.3 + blue: 61.7 + magenta: 82 + cyan: 92.2 + white: 92.2 + brightBlack: 0 + brightRed: 44.8 + brightGreen: 58.3 + brightYellow: 95.5 + brightBlue: 56.4 + brightMagenta: 92.2 + brightCyan: 73.9 + brightWhite: 92.2 diff --git a/themes/kanso-ink.yaml b/themes/kanso-ink.yaml new file mode 100644 index 00000000..ce57a28c --- /dev/null +++ b/themes/kanso-ink.yaml @@ -0,0 +1,49 @@ +name: "Kanso Ink" +source: + marketplace_id: "Webhooked.kanso-theme" + version: "0.2.3" + installs: 3026 + author: "Webhooked" + repo: "https://github.com/webhooked/kanso-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" +colors: + bg: "#14171D" + fg: "#C5C9C7" + black: "#22262D" + red: "#C4746E" + green: "#8A9A7B" + yellow: "#C4B28A" + blue: "#8BA4B0" + magenta: "#A292A3" + cyan: "#8EA4A2" + white: "#C5C9C7" + brightBlack: "#9E9B93" + brightRed: "#E46876" + brightGreen: "#87A987" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#938AA9" + brightCyan: "#7AA89F" + brightWhite: "#C5C9C7" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 72.3 + black: 0 + red: 38.8 + green: 44 + yellow: 60.6 + blue: 49.9 + magenta: 45.1 + cyan: 49.6 + white: 72.3 + brightBlack: 47.3 + brightRed: 42 + brightGreen: 50 + brightYellow: 72.1 + brightBlue: 56.6 + brightMagenta: 40.8 + brightCyan: 49.4 + brightWhite: 72.3 diff --git a/themes/kanso-mist.yaml b/themes/kanso-mist.yaml new file mode 100644 index 00000000..a16f1f36 --- /dev/null +++ b/themes/kanso-mist.yaml @@ -0,0 +1,49 @@ +name: "Kanso Mist" +source: + marketplace_id: "Webhooked.kanso-theme" + version: "0.2.3" + installs: 3026 + author: "Webhooked" + repo: "https://github.com/webhooked/kanso-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" +colors: + bg: "#2F3036" + fg: "#C5C9C7" + black: "#43464E" + red: "#C4746E" + green: "#8A9A7B" + yellow: "#C4B28A" + blue: "#8BA4B0" + magenta: "#A292A3" + cyan: "#8EA4A2" + white: "#C5C9C7" + brightBlack: "#9E9B93" + brightRed: "#E46876" + brightGreen: "#87A987" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#938AA9" + brightCyan: "#7AA89F" + brightWhite: "#C5C9C7" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 68.1 + black: 0 + red: 34.6 + green: 39.8 + yellow: 56.4 + blue: 45.7 + magenta: 40.9 + cyan: 45.4 + white: 68.1 + brightBlack: 43.1 + brightRed: 37.8 + brightGreen: 45.9 + brightYellow: 68 + brightBlue: 52.4 + brightMagenta: 36.7 + brightCyan: 45.2 + brightWhite: 68.1 diff --git a/themes/kanso-pearl.yaml b/themes/kanso-pearl.yaml new file mode 100644 index 00000000..7b9ce5f3 --- /dev/null +++ b/themes/kanso-pearl.yaml @@ -0,0 +1,49 @@ +name: "Kanso Pearl" +source: + marketplace_id: "Webhooked.kanso-theme" + version: "0.2.3" + installs: 3026 + author: "Webhooked" + repo: "https://github.com/webhooked/kanso-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" +colors: + bg: "#F2F1EF" + fg: "#22262D" + black: "#1F1F28" + red: "#C84053" + green: "#6F894E" + yellow: "#77713F" + blue: "#4D699B" + magenta: "#B35B79" + cyan: "#597B75" + white: "#22262D" + brightBlack: "#6D6D69" + brightRed: "#D7474B" + brightGreen: "#6E915F" + brightYellow: "#836F4A" + brightBlue: "#6693BF" + brightMagenta: "#624C83" + brightCyan: "#5E857A" + brightWhite: "#43436C" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93.8 + black: 95 + red: 64.4 + green: 58.2 + yellow: 66.1 + blue: 69.1 + magenta: 62.4 + cyan: 64 + white: 93.8 + brightBlack: 67.5 + brightRed: 60.3 + brightGreen: 55 + brightYellow: 65.3 + brightBlue: 51.2 + brightMagenta: 76.9 + brightCyan: 59.9 + brightWhite: 83.1 diff --git a/themes/kaolin-light-theme-alt.yaml b/themes/kaolin-light-theme-alt.yaml new file mode 100644 index 00000000..18edc9ba --- /dev/null +++ b/themes/kaolin-light-theme-alt.yaml @@ -0,0 +1,49 @@ +name: "Kaolin Light Theme (alt)" +source: + marketplace_id: "zed-nait.kaolin-vscode-themes" + version: "0.1.0" + installs: 4896 + author: "zed-nait" + repo: "https://github.com/zed-nait/kaolin-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=zed-nait.kaolin-vscode-themes" +colors: + bg: "#FBFBFB" + fg: "#383E3F" + black: "#383E3F" + red: "#E84C58" + green: "#13665F" + yellow: "#E36B3F" + blue: "#3B84CC" + magenta: "#A9779C" + cyan: "#6FACB3" + white: "#D4D4D6" + brightBlack: "#545C5E" + brightRed: "#E84C58" + brightGreen: "#317A56" + brightYellow: "#C5882C" + brightBlue: "#4C7A90" + brightMagenta: "#6D46E3" + brightCyan: "#008B8B" + brightWhite: "#F5F6F5" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 92.8 + black: 92.8 + red: 61.5 + green: 80.7 + yellow: 56.9 + blue: 63.9 + magenta: 61.3 + cyan: 47.5 + white: 20.3 + brightBlack: 81.3 + brightRed: 61.5 + brightGreen: 73.1 + brightYellow: 54.4 + brightBlue: 70 + brightMagenta: 75.8 + brightCyan: 65.5 + brightWhite: 0 diff --git a/themes/kaolin-light-theme.yaml b/themes/kaolin-light-theme.yaml new file mode 100644 index 00000000..66fb404b --- /dev/null +++ b/themes/kaolin-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Kaolin Light Theme" +source: + marketplace_id: "zed-nait.kaolin-vscode-themes" + version: "0.1.0" + installs: 4896 + author: "zed-nait" + repo: "https://github.com/zed-nait/kaolin-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=zed-nait.kaolin-vscode-themes" +colors: + bg: "#EDEEEB" + fg: "#383E3F" + black: "#383E3F" + red: "#E84C58" + green: "#13665F" + yellow: "#E36B3F" + blue: "#3B84CC" + magenta: "#A9779C" + cyan: "#6FACB3" + white: "#C8CCC3" + brightBlack: "#545C5E" + brightRed: "#E84C58" + brightGreen: "#317A56" + brightYellow: "#C5882C" + brightBlue: "#4C7A90" + brightMagenta: "#6D46E3" + brightCyan: "#008B8B" + brightWhite: "#F5F6F5" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 84.9 + black: 84.9 + red: 53.6 + green: 72.7 + yellow: 48.9 + blue: 55.9 + magenta: 53.3 + cyan: 39.6 + white: 17.8 + brightBlack: 73.3 + brightRed: 53.6 + brightGreen: 65.1 + brightYellow: 46.5 + brightBlue: 62 + brightMagenta: 67.8 + brightCyan: 57.6 + brightWhite: 0 diff --git a/themes/kaplan-dark-muted.yaml b/themes/kaplan-dark-muted.yaml new file mode 100644 index 00000000..0072d4a5 --- /dev/null +++ b/themes/kaplan-dark-muted.yaml @@ -0,0 +1,49 @@ +name: "Kaplan Dark Muted" +source: + marketplace_id: "Abyadando.kaplan-dark-theme" + version: "0.1.0" + installs: 286 + author: "Abyadando" + repo: "https://github.com/abyadando/kaplan-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Abyadando.kaplan-dark-theme" +colors: + bg: "#1D1D1D" + fg: "#FFD86C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 83.7 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/kara.yaml b/themes/kara.yaml new file mode 100644 index 00000000..e48b04a6 --- /dev/null +++ b/themes/kara.yaml @@ -0,0 +1,49 @@ +name: "Kara" +source: + marketplace_id: "metecan.kara" + version: "0.1.2" + installs: 223 + author: "metecan" + repo: "https://github.com/metecan/kara" + url: "https://marketplace.visualstudio.com/items?itemName=metecan.kara" +colors: + bg: "#0A0A0A" + fg: "#ADADAD" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#E0CE7B" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#F2C94C" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 57.7 + black: 7.3 + red: 39.5 + green: 87 + yellow: 76.5 + blue: 38.3 + magenta: 46.1 + cyan: 77 + white: 52.3 + brightBlack: 22.9 + brightRed: 48 + brightGreen: 93.4 + brightYellow: 76.4 + brightBlue: 72.4 + brightMagenta: 67.7 + brightCyan: 90.5 + brightWhite: 73.7 diff --git a/themes/karam-theme-darker.yaml b/themes/karam-theme-darker.yaml new file mode 100644 index 00000000..24207cc6 --- /dev/null +++ b/themes/karam-theme-darker.yaml @@ -0,0 +1,49 @@ +name: "Karam Theme Darker" +source: + marketplace_id: "KareemReda.karam-theme-darker" + version: "0.0.1" + installs: 161 + author: "Kareem Reda" + repo: "https://github.com/DevKareemReda/Karam-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=KareemReda.karam-theme-darker" +colors: + bg: "#070707" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.8 + black: 0 + red: 27.7 + green: 53.9 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 91 diff --git a/themes/karma.yaml b/themes/karma.yaml new file mode 100644 index 00000000..6c7d09b9 --- /dev/null +++ b/themes/karma.yaml @@ -0,0 +1,49 @@ +name: "Karma" +source: + marketplace_id: "SreetamD.karma" + version: "3.1.1" + installs: 23745 + author: "Sreetam Das" + repo: "https://github.com/sreetamdas/karma" + url: "https://marketplace.visualstudio.com/items?itemName=SreetamD.karma" +colors: + bg: "#FFFFFF" + fg: "#0A0E14" + black: "#FFFFFF" + red: "#FC618D" + green: "#2D972F" + yellow: "#EEAE11" + blue: "#6F42C1" + magenta: "#FA8D3E" + cyan: "#5688C7" + white: "#0A0E14" + brightBlack: "#999999" + brightRed: "#FC618D" + brightGreen: "#2D972F" + brightYellow: "#EEAE11" + brightBlue: "#6F42C1" + brightMagenta: "#FA8D3E" + brightCyan: "#5688C7" + brightWhite: "#0A0E14" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 105.6 + black: 0 + red: 54.5 + green: 64.7 + yellow: 37.5 + blue: 81.7 + magenta: 45.9 + cyan: 64 + white: 105.6 + brightBlack: 54.6 + brightRed: 54.5 + brightGreen: 64.7 + brightYellow: 37.5 + brightBlue: 81.7 + brightMagenta: 45.9 + brightCyan: 64 + brightWhite: 105.6 diff --git a/themes/karnataka-sandalwood-state.yaml b/themes/karnataka-sandalwood-state.yaml new file mode 100644 index 00000000..829cef40 --- /dev/null +++ b/themes/karnataka-sandalwood-state.yaml @@ -0,0 +1,49 @@ +name: "Karnataka - Sandalwood State" +source: + marketplace_id: "ProudIndian.colors-of-india-themes" + version: "1.0.1" + installs: 37 + author: "Sachin Ghadi" + repo: "https://github.com/GhadiSachin/colors-of-india-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" +colors: + bg: "#1A1614" + fg: "#F5E8D8" + black: "#000000" + red: "#E74856" + green: "#8B008B" + yellow: "#FFD700" + blue: "#3B8EEA" + magenta: "#B140AA" + cyan: "#29B8DB" + white: "#E5E5E5" + brightBlack: "#000000" + brightRed: "#E74856" + brightGreen: "#8B008B" + brightYellow: "#FFD700" + brightBlue: "#3B8EEA" + brightMagenta: "#B140AA" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 93.1 + black: 0 + red: 35.9 + green: 14.1 + yellow: 83.3 + blue: 40 + magenta: 26.8 + cyan: 55.4 + white: 90 + brightBlack: 0 + brightRed: 35.9 + brightGreen: 14.1 + brightYellow: 83.3 + brightBlue: 40 + brightMagenta: 26.8 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/karou-noir.yaml b/themes/karou-noir.yaml new file mode 100644 index 00000000..4c6953de --- /dev/null +++ b/themes/karou-noir.yaml @@ -0,0 +1,49 @@ +name: "KAROU NOIR" +source: + marketplace_id: "HAAZIQ-ALI.karou-theme" + version: "3.0.1" + installs: 90 + author: "HAAZIQ-ALI" + repo: "https://github.com/HAAZIQ-ALI/KAROU-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=HAAZIQ-ALI.karou-theme" +colors: + bg: "#1A1C2E" + fg: "#E4F0FB" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#3B4252" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#E5E9F0" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 95.2 + black: 7.4 + red: 32.2 + green: 60.9 + yellow: 75.6 + blue: 47.9 + magenta: 45.7 + cyan: 61.9 + white: 91.6 + brightBlack: 7.4 + brightRed: 32.2 + brightGreen: 60.9 + brightYellow: 75.6 + brightBlue: 47.9 + brightMagenta: 45.7 + brightCyan: 61.9 + brightWhite: 91.6 diff --git a/themes/karou-theme.yaml b/themes/karou-theme.yaml new file mode 100644 index 00000000..96c7f0c1 --- /dev/null +++ b/themes/karou-theme.yaml @@ -0,0 +1,49 @@ +name: "KAROU Theme" +source: + marketplace_id: "HAAZIQ-ALI.karou-theme" + version: "3.0.1" + installs: 90 + author: "HAAZIQ-ALI" + repo: "https://github.com/HAAZIQ-ALI/KAROU-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=HAAZIQ-ALI.karou-theme" +colors: + bg: "#242933" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 82.8 + black: 0 + red: 30.4 + green: 59.1 + yellow: 73.8 + blue: 46 + magenta: 43.9 + cyan: 60.1 + white: 89.7 + brightBlack: 12.8 + brightRed: 30.4 + brightGreen: 59.1 + brightYellow: 73.8 + brightBlue: 46 + brightMagenta: 43.9 + brightCyan: 58 + brightWhite: 93.6 diff --git a/themes/karrot-theme-classic.yaml b/themes/karrot-theme-classic.yaml new file mode 100644 index 00000000..fe40e064 --- /dev/null +++ b/themes/karrot-theme-classic.yaml @@ -0,0 +1,49 @@ +name: "Karrot Theme Classic" +source: + marketplace_id: "ooAkira.Karrot" + version: "0.0.7" + installs: 2628 + author: "ooAkira" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ooAkira.Karrot" +colors: + bg: "#202020" + fg: "#9EA4B2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 50.8 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.3 + magenta: 28.6 + cyan: 46.4 + white: 88.9 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/karry-color-theme.yaml b/themes/karry-color-theme.yaml new file mode 100644 index 00000000..77e0d265 --- /dev/null +++ b/themes/karry-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Karry Color Theme" +source: + marketplace_id: "fcunhaneto.karry-color-theme" + version: "0.0.1" + installs: 3071 + author: "fcunhaneto" + repo: "git+https://github.com/fcunhaneto/vscode-karry-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=fcunhaneto.karry-color-theme" +colors: + bg: "#FCE7CD" + fg: "#435E75" + black: "#906F41" + red: "#B80012" + green: "#49A634" + yellow: "#B2891B" + blue: "#00578B" + magenta: "#774673" + cyan: "#008B8B" + white: "#2D485D" + brightBlack: "#B59262" + brightRed: "#E80018" + brightGreen: "#2F8C1C" + brightYellow: "#D5AA38" + brightBlue: "#0071B2" + brightMagenta: "#8D648A" + brightCyan: "#00A8A8" + brightWhite: "#435E75" +meta: + mode: "light" + accent: "orange" + hue: 73 + contrast: + fg: 70.9 + black: 59.6 + red: 68.7 + green: 45.1 + yellow: 47 + blue: 73.6 + magenta: 72.4 + cyan: 55.5 + white: 79.6 + brightBlack: 42.8 + brightRed: 57.4 + brightGreen: 56.8 + brightYellow: 30.3 + brightBlue: 62.9 + brightMagenta: 61.2 + brightCyan: 42.7 + brightWhite: 70.9 diff --git a/themes/kary-pro-colors-dark.yaml b/themes/kary-pro-colors-dark.yaml new file mode 100644 index 00000000..3483b72d --- /dev/null +++ b/themes/kary-pro-colors-dark.yaml @@ -0,0 +1,49 @@ +name: "Kary Pro Colors - Dark" +source: + marketplace_id: "karyfoundation.theme-karyfoundation-themes" + version: "37.0.0" + installs: 158320 + author: "Pouya Kary" + repo: "https://github.com/pouyakary/procolors" + url: "https://marketplace.visualstudio.com/items?itemName=karyfoundation.theme-karyfoundation-themes" +colors: + bg: "#1A1A1A" + fg: "#CCCCCC" + black: "#1A1A1A" + red: "#D38569" + green: "#7DA76F" + yellow: "#BC9550" + blue: "#819DC2" + magenta: "#B98EB2" + cyan: "#819DC2" + white: "#CCCCCC" + brightBlack: "#474747" + brightRed: "#D38569" + brightGreen: "#7DA76F" + brightYellow: "#BC9550" + brightBlue: "#819DC2" + brightMagenta: "#B98EB2" + brightCyan: "#819DC2" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 74.3 + black: 0 + red: 45.9 + green: 47.4 + yellow: 47 + blue: 46.8 + magenta: 47.1 + cyan: 46.8 + white: 74.3 + brightBlack: 9.6 + brightRed: 45.9 + brightGreen: 47.4 + brightYellow: 47 + brightBlue: 46.8 + brightMagenta: 47.1 + brightCyan: 46.8 + brightWhite: 101.3 diff --git a/themes/kary-pro-colors-light.yaml b/themes/kary-pro-colors-light.yaml new file mode 100644 index 00000000..46b57b6d --- /dev/null +++ b/themes/kary-pro-colors-light.yaml @@ -0,0 +1,49 @@ +name: "Kary Pro Colors - Light" +source: + marketplace_id: "karyfoundation.theme-karyfoundation-themes" + version: "37.0.0" + installs: 158320 + author: "Pouya Kary" + repo: "https://github.com/pouyakary/procolors" + url: "https://marketplace.visualstudio.com/items?itemName=karyfoundation.theme-karyfoundation-themes" +colors: + bg: "#F0F6FB" + fg: "#3778B7" + black: "#1A1A1A" + red: "#C94824" + green: "#428226" + yellow: "#A56416" + blue: "#3778B7" + magenta: "#B052A1" + cyan: "#3778B7" + white: "#F7F7F7" + brightBlack: "#9B9B9B" + brightRed: "#C94824" + brightGreen: "#428226" + brightYellow: "#A56416" + brightBlue: "#3778B7" + brightMagenta: "#B052A1" + brightCyan: "#3778B7" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 66 + black: 98.4 + red: 66 + green: 66.6 + yellow: 66.6 + blue: 66 + magenta: 65.5 + cyan: 66 + white: 0 + brightBlack: 47.7 + brightRed: 66 + brightGreen: 66.6 + brightYellow: 66.6 + brightBlue: 66 + brightMagenta: 65.5 + brightCyan: 66 + brightWhite: 0 diff --git a/themes/kashi-night.yaml b/themes/kashi-night.yaml new file mode 100644 index 00000000..5026397c --- /dev/null +++ b/themes/kashi-night.yaml @@ -0,0 +1,49 @@ +name: "Kashi Night" +source: + marketplace_id: "Nikharso.kashi" + version: "0.0.4" + installs: 42 + author: "Nikharso" + repo: "https://github.com/nikharso/kashi" + url: "https://marketplace.visualstudio.com/items?itemName=Nikharso.kashi" +colors: + bg: "#1A1C21" + fg: "#C5C9C7" + black: "#22262D" + red: "#C4746E" + green: "#8A9A7B" + yellow: "#C4B28A" + blue: "#8BA4B0" + magenta: "#A292A3" + cyan: "#8EA4A2" + white: "#C5C9C7" + brightBlack: "#9E9B93" + brightRed: "#E46876" + brightGreen: "#87A987" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#938AA9" + brightCyan: "#769C95" + brightWhite: "#C5C9C7" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 71.7 + black: 0 + red: 38.2 + green: 43.4 + yellow: 60 + blue: 49.3 + magenta: 44.5 + cyan: 49 + white: 71.7 + brightBlack: 46.7 + brightRed: 41.4 + brightGreen: 49.5 + brightYellow: 71.6 + brightBlue: 56 + brightMagenta: 40.3 + brightCyan: 43.3 + brightWhite: 71.7 diff --git a/themes/kastorcode-dark-orange-theme.yaml b/themes/kastorcode-dark-orange-theme.yaml new file mode 100644 index 00000000..fb2b6d96 --- /dev/null +++ b/themes/kastorcode-dark-orange-theme.yaml @@ -0,0 +1,49 @@ +name: "KastorCode Dark Orange Theme" +source: + marketplace_id: "kastorcode.kastorcode-dark-orange-theme" + version: "1.0.1" + installs: 6967 + author: "KastorCode" + repo: "https://github.com/kastorcode/kastorcode-dark-orange-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kastorcode.kastorcode-dark-orange-theme" +colors: + bg: "#190802" + fg: "#FFFFFF" + black: "#777777" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#A2A2A2" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 48 + contrast: + fg: 107.6 + black: 30.2 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 51.6 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/kastorcode-dark-purple-theme.yaml b/themes/kastorcode-dark-purple-theme.yaml new file mode 100644 index 00000000..265ccc13 --- /dev/null +++ b/themes/kastorcode-dark-purple-theme.yaml @@ -0,0 +1,49 @@ +name: "KastorCode Dark Purple Theme" +source: + marketplace_id: "kastorcode.kastorcode-dark-purple-theme" + version: "1.0.0" + installs: 4412 + author: "KastorCode" + repo: "https://github.com/kastorcode/kastorcode-dark-purple-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kastorcode.kastorcode-dark-purple-theme" +colors: + bg: "#0A0714" + fg: "#FFFFFF" + black: "#777777" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#A2A2A2" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 294 + contrast: + fg: 107.8 + black: 30.4 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 51.8 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/katagawatheme.yaml b/themes/katagawatheme.yaml new file mode 100644 index 00000000..0c83a18e --- /dev/null +++ b/themes/katagawatheme.yaml @@ -0,0 +1,49 @@ +name: "KatagawaTheme" +source: + marketplace_id: "hikionori.kanagawa-vscode-theme" + version: "0.1.0" + installs: 6855 + author: "hikionori" + repo: "https://github.com/hikionori/kanagawa-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=hikionori.kanagawa-vscode-theme" +colors: + bg: "#16161D" + fg: "#DCD7BA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 80.8 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90.1 diff --git a/themes/kato.yaml b/themes/kato.yaml new file mode 100644 index 00000000..b67087ee --- /dev/null +++ b/themes/kato.yaml @@ -0,0 +1,49 @@ +name: "Kato" +source: + marketplace_id: "Ghaz.Kato" + version: "2.0.0" + installs: 74 + author: "Ghaz" + repo: "https://github.com/GhazanfarShahbaz/Kato-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Ghaz.Kato" +colors: + bg: "#272727" + fg: "#9A9A9A" + black: "#1B1D1E" + red: "#E6DC44" + green: "#C8BE46" + yellow: "#E5E510" + blue: "#737174" + magenta: "#747271" + cyan: "#62605F" + white: "#C6C5BF" + brightBlack: "#505354" + brightRed: "#F4FD22" + brightGreen: "#FFF27D" + brightYellow: "#FEED6C" + brightBlue: "#919495" + brightMagenta: "#9A9A9D" + brightCyan: "#A3A3A6" + brightWhite: "#DADBD6" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 44.4 + black: 0 + red: 79.6 + green: 62.5 + yellow: 83.4 + blue: 24.9 + magenta: 25.2 + cyan: 17.4 + white: 68.1 + brightBlack: 11.9 + brightRed: 96.9 + brightGreen: 94.2 + brightYellow: 91.4 + brightBlue: 41.1 + brightMagenta: 44.6 + brightCyan: 49.3 + brightWhite: 81.2 diff --git a/themes/kaupo.yaml b/themes/kaupo.yaml new file mode 100644 index 00000000..e5fab48c --- /dev/null +++ b/themes/kaupo.yaml @@ -0,0 +1,49 @@ +name: "kaupo" +source: + marketplace_id: "sc-mitton.kaupo" + version: "0.0.3" + installs: 124 + author: "sc-mitton" + repo: "https://github.com/sc-mitton/kaupo" + url: "https://marketplace.visualstudio.com/items?itemName=sc-mitton.kaupo" +colors: + bg: "#2A2A28" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#DA655F" + brightGreen: "#BCFF8C" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#A1D6FE" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 99.2 + black: 0 + red: 21.8 + green: 50.2 + yellow: 54.9 + blue: 31.8 + magenta: 29.4 + cyan: 47.6 + white: 85.7 + brightBlack: 19.2 + brightRed: 35.9 + brightGreen: 92 + brightYellow: 81.1 + brightBlue: 47.1 + brightMagenta: 43.7 + brightCyan: 74.1 + brightWhite: 99.2 diff --git a/themes/kayhan.yaml b/themes/kayhan.yaml new file mode 100644 index 00000000..013b7914 --- /dev/null +++ b/themes/kayhan.yaml @@ -0,0 +1,49 @@ +name: "kayhan" +source: + marketplace_id: "KazimKayhan.kayhan-color-theme" + version: "1.8.0" + installs: 167 + author: "Kazim Kayhan" + repo: "https://github.com/kazim-kayhan/kayhan-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=KazimKayhan.kayhan-color-theme" +colors: + bg: "#212426" + fg: "#FFFFFF" + black: "#414141" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#9F9F9F" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.2 + black: 0 + red: 25 + green: 51.3 + yellow: 84 + blue: 25.8 + magenta: 28.1 + cyan: 45.9 + white: 47.7 + brightBlack: 20.4 + brightRed: 36.9 + brightGreen: 61.9 + brightYellow: 94 + brightBlue: 38.3 + brightMagenta: 43.7 + brightCyan: 53.7 + brightWhite: 105.2 diff --git a/themes/kayto.yaml b/themes/kayto.yaml new file mode 100644 index 00000000..ab21a28c --- /dev/null +++ b/themes/kayto.yaml @@ -0,0 +1,49 @@ +name: "kayto" +source: + marketplace_id: "nelsonafonso.kayto" + version: "0.0.2" + installs: 34 + author: "nelson" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=nelsonafonso.kayto" +colors: + bg: "#0D0F0E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.1 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/kaze.yaml b/themes/kaze.yaml new file mode 100644 index 00000000..fbcac487 --- /dev/null +++ b/themes/kaze.yaml @@ -0,0 +1,49 @@ +name: "Kaze" +source: + marketplace_id: "2interactive.kaze" + version: "1.0.0" + installs: 56 + author: "2interactive" + repo: "https://github.com/Sebystien/kaze" + url: "https://marketplace.visualstudio.com/items?itemName=2interactive.kaze" +colors: + bg: "#1B222D" + fg: "#D7D4FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 259 + contrast: + fg: 80.6 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26.1 + magenta: 28.4 + cyan: 46.2 + white: 88.6 + brightBlack: 20.7 + brightRed: 37.2 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/kblue-minimal.yaml b/themes/kblue-minimal.yaml new file mode 100644 index 00000000..a278e126 --- /dev/null +++ b/themes/kblue-minimal.yaml @@ -0,0 +1,49 @@ +name: "kblue-minimal" +source: + marketplace_id: "rodrigokzk12.kblue-minimal" + version: "0.0.1" + installs: 188 + author: "Rodrigo Franca" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=rodrigokzk12.kblue-minimal" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 107.9 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/keen-contrast.yaml b/themes/keen-contrast.yaml new file mode 100644 index 00000000..24c7a34d --- /dev/null +++ b/themes/keen-contrast.yaml @@ -0,0 +1,49 @@ +name: "keen-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#6F8B94" + yellow: "#8767B7" + blue: "#B5DB99" + magenta: "#6F8B94" + cyan: "#8767B7" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#AABABF" + brightYellow: "#BEACD8" + brightBlue: "#ECF6E4" + brightMagenta: "#AABABF" + brightCyan: "#BEACD8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 21.5 + green: 37.9 + yellow: 30.5 + blue: 77.9 + magenta: 37.9 + cyan: 30.5 + white: 107.9 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 63.5 + brightYellow: 61.6 + brightBlue: 99.8 + brightMagenta: 63.5 + brightCyan: 61.6 + brightWhite: 107.9 diff --git a/themes/keen-light.yaml b/themes/keen-light.yaml new file mode 100644 index 00000000..99fdc353 --- /dev/null +++ b/themes/keen-light.yaml @@ -0,0 +1,49 @@ +name: "keen-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#CCCCCC" + fg: "#111111" + black: "#D9D9D9" + red: "#BA0E2E" + green: "#6F8B94" + yellow: "#8767B7" + blue: "#7C9669" + magenta: "#6F8B94" + cyan: "#8767B7" + white: "#1E1E1E" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#AABABF" + brightYellow: "#BEACD8" + brightBlue: "#B0C0A5" + brightMagenta: "#AABABF" + brightCyan: "#BEACD8" + brightWhite: "#444444" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 75.8 + black: 0 + red: 50.8 + green: 34.3 + yellow: 41.7 + blue: 30.5 + magenta: 34.3 + cyan: 41.7 + white: 74.1 + brightBlack: 30.8 + brightRed: 34.3 + brightGreen: 9.3 + brightYellow: 11.2 + brightBlue: 0 + brightMagenta: 9.3 + brightCyan: 11.2 + brightWhite: 63.1 diff --git a/themes/keen.yaml b/themes/keen.yaml new file mode 100644 index 00000000..1bf2d26f --- /dev/null +++ b/themes/keen.yaml @@ -0,0 +1,49 @@ +name: "keen" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#111111" + fg: "#CCCCCC" + black: "#1E1E1E" + red: "#BA0E2E" + green: "#6F8B94" + yellow: "#8767B7" + blue: "#B5DB99" + magenta: "#6F8B94" + cyan: "#8767B7" + white: "#D9D9D9" + brightBlack: "#444444" + brightRed: "#F03E5F" + brightGreen: "#AABABF" + brightYellow: "#BEACD8" + brightBlue: "#ECF6E4" + brightMagenta: "#AABABF" + brightCyan: "#BEACD8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 75.2 + black: 0 + red: 21 + green: 37.4 + yellow: 30 + blue: 77.4 + magenta: 37.4 + cyan: 30 + white: 83 + brightBlack: 9.3 + brightRed: 37.3 + brightGreen: 63 + brightYellow: 61.1 + brightBlue: 99.3 + brightMagenta: 63 + brightCyan: 61.1 + brightWhite: 107.4 diff --git a/themes/kenobi-dark-theme.yaml b/themes/kenobi-dark-theme.yaml new file mode 100644 index 00000000..f2c43e3c --- /dev/null +++ b/themes/kenobi-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Kenobi Dark Theme" +source: + marketplace_id: "BrunoDaSilva.kenobi-dark-theme" + version: "0.5.3" + installs: 512 + author: "Bruno DaSilva" + repo: "https://github.com/Brunno-DaSilva/Kenobi-dark-vs-code-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BrunoDaSilva.kenobi-dark-theme" +colors: + bg: "#060931" + fg: "#9999E6" + black: "#0B1C2C" + red: "#BF8B56" + green: "#56BF8B" + yellow: "#8BBF56" + blue: "#8B56BF" + magenta: "#4FC1FF" + cyan: "#568BBF" + white: "#CBD6E2" + brightBlack: "#627E99" + brightRed: "#BF8B56" + brightGreen: "#56BF8B" + brightYellow: "#8BBF56" + brightBlue: "#8B56BF" + brightMagenta: "#BF568B" + brightCyan: "#568BBF" + brightWhite: "#F7F9FB" +meta: + mode: "dark" + accent: "magenta" + hue: 271 + contrast: + fg: 50.5 + black: 0 + red: 44.9 + green: 56.9 + yellow: 59.2 + blue: 26.8 + magenta: 63 + cyan: 37.7 + white: 80.3 + brightBlack: 31.9 + brightRed: 44.9 + brightGreen: 56.9 + brightYellow: 59.2 + brightBlue: 26.8 + brightMagenta: 32.1 + brightCyan: 37.7 + brightWhite: 103.2 diff --git a/themes/kerala-god-s-own-country.yaml b/themes/kerala-god-s-own-country.yaml new file mode 100644 index 00000000..5d2de943 --- /dev/null +++ b/themes/kerala-god-s-own-country.yaml @@ -0,0 +1,49 @@ +name: "Kerala - God's Own Country" +source: + marketplace_id: "ProudIndian.colors-of-india-themes" + version: "1.0.1" + installs: 37 + author: "Sachin Ghadi" + repo: "https://github.com/GhadiSachin/colors-of-india-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" +colors: + bg: "#1A1A1A" + fg: "#E0E0E0" + black: "#000000" + red: "#E74856" + green: "#8B4513" + yellow: "#FFD700" + blue: "#3B8EEA" + magenta: "#B140AA" + cyan: "#29B8DB" + white: "#E5E5E5" + brightBlack: "#000000" + brightRed: "#E74856" + brightGreen: "#8B4513" + brightYellow: "#FFD700" + brightBlue: "#3B8EEA" + brightMagenta: "#B140AA" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.5 + black: 0 + red: 35.5 + green: 16.5 + yellow: 82.9 + blue: 39.7 + magenta: 26.5 + cyan: 55.1 + white: 89.7 + brightBlack: 0 + brightRed: 35.5 + brightGreen: 16.5 + brightYellow: 82.9 + brightBlue: 39.7 + brightMagenta: 26.5 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/kerama-deep.yaml b/themes/kerama-deep.yaml new file mode 100644 index 00000000..4691ff28 --- /dev/null +++ b/themes/kerama-deep.yaml @@ -0,0 +1,49 @@ +name: "Kerama Deep" +source: + marketplace_id: "ky12228121.okinawan-themes" + version: "0.0.1" + installs: 10 + author: "Keny Yahat" + repo: "https://github.com/ky12228121/okinawan" + url: "https://marketplace.visualstudio.com/items?itemName=ky12228121.okinawan-themes" +colors: + bg: "#0F1C2E" + fg: "#DCE1E6" + black: "#0A131F" + red: "#FF6F61" + green: "#6B8C78" + yellow: "#F1C232" + blue: "#00A1E4" + magenta: "#F08F90" + cyan: "#40E0D0" + white: "#E6E6E6" + brightBlack: "#4D5B6A" + brightRed: "#FF6F61" + brightGreen: "#6B8C78" + brightYellow: "#F1C232" + brightBlue: "#00A1E4" + brightMagenta: "#F08F90" + brightCyan: "#40E0D0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "orange" + hue: 257 + contrast: + fg: 86.5 + black: 0 + red: 48.2 + green: 35.4 + yellow: 71.7 + blue: 45.5 + magenta: 54.9 + cyan: 73.3 + white: 90.1 + brightBlack: 16.3 + brightRed: 48.2 + brightGreen: 35.4 + brightYellow: 71.7 + brightBlue: 45.5 + brightMagenta: 54.9 + brightCyan: 73.3 + brightWhite: 90.1 diff --git a/themes/kermit-fork.yaml b/themes/kermit-fork.yaml new file mode 100644 index 00000000..fe768954 --- /dev/null +++ b/themes/kermit-fork.yaml @@ -0,0 +1,49 @@ +name: "Kermit - Fork" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29903 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" +colors: + bg: "#1E1E1E" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/keval-s-official-electric-lime.yaml b/themes/keval-s-official-electric-lime.yaml new file mode 100644 index 00000000..bd41961d --- /dev/null +++ b/themes/keval-s-official-electric-lime.yaml @@ -0,0 +1,49 @@ +name: "Keval's Official || Electric-Lime" +source: + marketplace_id: "KJS-Officials.kjs-officials----electriclime" + version: "3.3.7" + installs: 195 + author: "KJS - Officials" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=KJS-Officials.kjs-officials----electriclime" +colors: + bg: "#0E0F0B" + fg: "#C9CD9A" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.6 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/kiiro-dark.yaml b/themes/kiiro-dark.yaml new file mode 100644 index 00000000..219411a1 --- /dev/null +++ b/themes/kiiro-dark.yaml @@ -0,0 +1,49 @@ +name: "Kiiro Dark" +source: + marketplace_id: "kiiroOvO.kiiro-theme" + version: "0.0.3" + installs: 181 + author: "kiiroOvO" + repo: "https://github.com/kiiroOvO/kiiro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kiiroOvO.kiiro-theme" +colors: + bg: "#202020" + fg: "#DDDDDD" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#BD8B8E" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.9 + black: 0 + red: 43.7 + green: 51.2 + yellow: 72.8 + blue: 43.8 + magenta: 46.4 + cyan: 55.3 + white: 83.9 + brightBlack: 20.9 + brightRed: 44.5 + brightGreen: 59.8 + brightYellow: 82.4 + brightBlue: 52.1 + brightMagenta: 54.9 + brightCyan: 64.1 + brightWhite: 99.8 diff --git a/themes/killer-dark.yaml b/themes/killer-dark.yaml new file mode 100644 index 00000000..a64e6a1a --- /dev/null +++ b/themes/killer-dark.yaml @@ -0,0 +1,49 @@ +name: "Killer Dark" +source: + marketplace_id: "AustinBillings.killer-theme" + version: "1.0.2" + installs: 29 + author: "Austin Billings" + repo: "https://github.com/austinbillings/killer-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AustinBillings.killer-theme" +colors: + bg: "#131415" + fg: "#F6F4F4" + black: "#1B1C1D" + red: "#EB4755" + green: "#9ECC7B" + yellow: "#FFC966" + blue: "#30CDE8" + magenta: "#FF5C69" + cyan: "#47EBE8" + white: "#F6F4F4" + brightBlack: "#666B70" + brightRed: "#FF6673" + brightGreen: "#C5D6C2" + brightYellow: "#FADA9E" + brightBlue: "#8CE3F2" + brightMagenta: "#F76E79" + brightCyan: "#90DAD9" + brightWhite: "#F8F8F1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 100.2 + black: 0 + red: 36.9 + green: 67.2 + yellow: 78.3 + blue: 65.9 + magenta: 45.3 + cyan: 80.9 + white: 100.2 + brightBlack: 24.2 + brightRed: 47.5 + brightGreen: 78 + brightYellow: 85.9 + brightBlue: 80.9 + brightMagenta: 47.7 + brightCyan: 75.7 + brightWhite: 102.2 diff --git a/themes/kindfeeling.yaml b/themes/kindfeeling.yaml new file mode 100644 index 00000000..f6d33c14 --- /dev/null +++ b/themes/kindfeeling.yaml @@ -0,0 +1,49 @@ +name: "Kindfeeling" +source: + marketplace_id: "Aromatibus.kindfeeling" + version: "0.3.19" + installs: 3598 + author: "Aromatibus" + repo: "https://github.com/Aromatibus/vscode-kindfeeling-light" + url: "https://marketplace.visualstudio.com/items?itemName=Aromatibus.kindfeeling" +colors: + bg: "#FFEEF9" + fg: "#101010" + black: "#D0D0D0" + red: "#FF0086" + green: "#00C918" + yellow: "#FD8900" + blue: "#3777E6" + magenta: "#AD00A1" + cyan: "#1FAAAA" + white: "#151515" + brightBlack: "#B0B0B0" + brightRed: "#FF0086" + brightGreen: "#00C918" + brightYellow: "#ABA800" + brightBlue: "#3777E6" + brightMagenta: "#AD00A1" + brightCyan: "#1FAAAA" + brightWhite: "#202020" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 98 + black: 17.6 + red: 54.8 + green: 35.9 + yellow: 39.2 + blue: 61.5 + magenta: 71.9 + cyan: 46.6 + white: 97.5 + brightBlack: 35.2 + brightRed: 54.8 + brightGreen: 35.9 + brightYellow: 41.8 + brightBlue: 61.5 + brightMagenta: 71.9 + brightCyan: 46.6 + brightWhite: 95.8 diff --git a/themes/kingfisher-fishing.yaml b/themes/kingfisher-fishing.yaml new file mode 100644 index 00000000..32715e22 --- /dev/null +++ b/themes/kingfisher-fishing.yaml @@ -0,0 +1,49 @@ +name: "kingfisher-fishing" +source: + marketplace_id: "williamsteffens.kingfisher-fishing-after-dark" + version: "0.5.2" + installs: 852 + author: "williamsteffens" + repo: "https://github.com/williamsteffens/vscode-kingfisher-fishing-after-dark-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=williamsteffens.kingfisher-fishing-after-dark" +colors: + bg: "#22282E" + fg: "#E1E4E8" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D1D5DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: 248 + contrast: + fg: 86.9 + black: 16.8 + red: 34.6 + green: 59.9 + yellow: 90.4 + blue: 36.6 + magenta: 49.1 + cyan: 58.6 + white: 77.5 + brightBlack: 45.4 + brightRed: 47.4 + brightGreen: 76.8 + brightYellow: 90.4 + brightBlue: 58.5 + brightMagenta: 49.1 + brightCyan: 67.1 + brightWhite: 101.8 diff --git a/themes/kinnitchi-neon-dark-modern.yaml b/themes/kinnitchi-neon-dark-modern.yaml new file mode 100644 index 00000000..c3f95ae4 --- /dev/null +++ b/themes/kinnitchi-neon-dark-modern.yaml @@ -0,0 +1,49 @@ +name: "kinnitchi Neon Dark Modern" +source: + marketplace_id: "Kinnitchi.kinnitchi-theme" + version: "0.4.0" + installs: 1210 + author: "Kinnitchi" + repo: "https://github.com/Kinnitchi/kinnitchi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Kinnitchi.kinnitchi-theme" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#1E1E1E" + red: "#FF5A5A" + green: "#72F1B8" + yellow: "#FEDE5D" + blue: "#7CB7FF" + magenta: "#FF7EDB" + cyan: "#FFFFFF" + white: "#C5C8C6" + brightBlack: "#1E1E1E" + brightRed: "#FF5A5A" + brightGreen: "#72F1B8" + brightYellow: "#FEDE5D" + brightBlue: "#7CB7FF" + brightMagenta: "#FF7EDB" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 43.5 + green: 82.5 + yellow: 85.8 + blue: 59.8 + magenta: 56.1 + cyan: 106 + white: 71 + brightBlack: 0 + brightRed: 43.5 + brightGreen: 82.5 + brightYellow: 85.8 + brightBlue: 59.8 + brightMagenta: 56.1 + brightCyan: 106 + brightWhite: 106 diff --git a/themes/kintsugi-dark.yaml b/themes/kintsugi-dark.yaml new file mode 100644 index 00000000..b6e9eb1b --- /dev/null +++ b/themes/kintsugi-dark.yaml @@ -0,0 +1,49 @@ +name: "Kintsugi Dark" +source: + marketplace_id: "ahmedhatem.kintsugi" + version: "0.1.1" + installs: 543 + author: "Ahmed Hatem" + repo: "https://github.com/ahatem/vscode-kintsugi" + url: "https://marketplace.visualstudio.com/items?itemName=ahmedhatem.kintsugi" +colors: + bg: "#161618" + fg: "#DDDDDD" + black: "#131314" + red: "#B38F8F" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#6C7A8A" + magenta: "#B3A3D3" + cyan: "#6AC6F2" + white: "#DDDDDD" + brightBlack: "#444444" + brightRed: "#D9A6A6" + brightGreen: "#C3DE9C" + brightYellow: "#FBE4A8" + brightBlue: "#8FA3B3" + brightMagenta: "#D3A3D3" + brightCyan: "#8AC6F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 85.1 + black: 0 + red: 45.6 + green: 61.7 + yellow: 76.5 + blue: 30.3 + magenta: 55.6 + cyan: 65.2 + white: 85.1 + brightBlack: 8.9 + brightRed: 60.1 + brightGreen: 80 + brightYellow: 90.5 + brightBlue: 50.1 + brightMagenta: 60 + brightCyan: 67.3 + brightWhite: 107 diff --git a/themes/kintsugi-light.yaml b/themes/kintsugi-light.yaml new file mode 100644 index 00000000..663380f9 --- /dev/null +++ b/themes/kintsugi-light.yaml @@ -0,0 +1,49 @@ +name: "Kintsugi Light" +source: + marketplace_id: "ahmedhatem.kintsugi" + version: "0.1.1" + installs: 543 + author: "Ahmed Hatem" + repo: "https://github.com/ahatem/vscode-kintsugi" + url: "https://marketplace.visualstudio.com/items?itemName=ahmedhatem.kintsugi" +colors: + bg: "#FAF8F2" + fg: "#4A463D" + black: "#4A463D" + red: "#C94E4E" + green: "#6A9955" + yellow: "#D9A03B" + blue: "#4A7096" + magenta: "#A24857" + cyan: "#3A7E3D" + white: "#F5F2EA" + brightBlack: "#938E83" + brightRed: "#C94E4E" + brightGreen: "#6A9955" + brightYellow: "#D9A03B" + brightBlue: "#4A7096" + brightMagenta: "#A24857" + brightCyan: "#3A7E3D" + brightWhite: "#FAF8F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 87.6 + black: 87.6 + red: 66.2 + green: 56.5 + yellow: 41.4 + blue: 71.4 + magenta: 74.5 + cyan: 69.9 + white: 0 + brightBlack: 55.8 + brightRed: 66.2 + brightGreen: 56.5 + brightYellow: 41.4 + brightBlue: 71.4 + brightMagenta: 74.5 + brightCyan: 69.9 + brightWhite: 0 diff --git a/themes/kiona.yaml b/themes/kiona.yaml new file mode 100644 index 00000000..fbf54ad2 --- /dev/null +++ b/themes/kiona.yaml @@ -0,0 +1,49 @@ +name: "Kiona" +source: + marketplace_id: "isaacgarciavillacres.hue-mans-color-themes" + version: "0.0.3" + installs: 79 + author: "Isaac Garcia Villacres" + repo: "https://github.com/isaacgarciavillacres/Hue-mans" + url: "https://marketplace.visualstudio.com/items?itemName=isaacgarciavillacres.hue-mans-color-themes" +colors: + bg: "#181819" + fg: "#D4D4D4" + black: "#0A0909" + red: "#FF1984" + green: "#BCFFC3" + yellow: "#EDD668" + blue: "#7CB0E7" + magenta: "#F18DFF" + cyan: "#80D0CC" + white: "#BCBCBC" + brightBlack: "#000000" + brightRed: "#FF005D" + brightGreen: "#49FF5C" + brightYellow: "#FFD300" + brightBlue: "#3899FF" + brightMagenta: "#FF4CCA" + brightCyan: "#33FFF5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 79.4 + black: 0 + red: 38.6 + green: 96.2 + yellow: 80.6 + blue: 56.2 + magenta: 60.4 + cyan: 68.9 + white: 65.2 + brightBlack: 0 + brightRed: 37.2 + brightGreen: 86.7 + brightYellow: 81.4 + brightBlue: 45.4 + brightMagenta: 46 + brightCyan: 90.9 + brightWhite: 106.8 diff --git a/themes/kira-theme.yaml b/themes/kira-theme.yaml new file mode 100644 index 00000000..75050ef9 --- /dev/null +++ b/themes/kira-theme.yaml @@ -0,0 +1,49 @@ +name: "Kira-Theme" +source: + marketplace_id: "pnemonic.kira-theme" + version: "0.1.1" + installs: 133 + author: "Christian Romero Oliva" + repo: "https://github.com/cromeoli/kira-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pnemonic.kira-theme" +colors: + bg: "#0A0A0A" + fg: "#E5E5E5" + black: "#000000" + red: "#BC7CFC" + green: "#74C997" + yellow: "#6172FB" + blue: "#2E72FA" + magenta: "#ECB3F5" + cyan: "#6BDFD5" + white: "#E5E5E5" + brightBlack: "#4B4B4B" + brightRed: "#BC79FF" + brightGreen: "#6FCE96" + brightYellow: "#5D6FFF" + brightBlue: "#2970FF" + brightMagenta: "#ECB3F5" + brightCyan: "#67E3D9" + brightWhite: "#FCFCFC" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 90.9 + black: 0 + red: 47.7 + green: 63.9 + yellow: 35 + blue: 32.6 + magenta: 72.3 + cyan: 76.1 + white: 90.9 + brightBlack: 12.2 + brightRed: 47.1 + brightGreen: 65.8 + brightYellow: 34.2 + brightBlue: 32.3 + brightMagenta: 72.3 + brightCyan: 78 + brightWhite: 105.7 diff --git a/themes/kismat-default-colors.yaml b/themes/kismat-default-colors.yaml new file mode 100644 index 00000000..c3fac09d --- /dev/null +++ b/themes/kismat-default-colors.yaml @@ -0,0 +1,49 @@ +name: "Kismat Default Colors" +source: + marketplace_id: "naren.kismat" + version: "0.0.10" + installs: 261 + author: "Naren" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=naren.kismat" +colors: + bg: "#20232A" + fg: "#B2B2CE" + black: "#000000" + red: "#EF3B7D" + green: "#6BD679" + yellow: "#FAC863" + blue: "#79B6F2" + magenta: "#FF69C1" + cyan: "#55B5DB" + white: "#F1FAEE" + brightBlack: "#000000" + brightRed: "#EF3B7D" + brightGreen: "#6BD679" + brightYellow: "#FAC863" + brightBlue: "#79B6F2" + brightMagenta: "#FF69C1" + brightCyan: "#55B5DB" + brightWhite: "#F1FAEE" +meta: + mode: "dark" + accent: "red" + hue: 267 + contrast: + fg: 59.3 + black: 0 + red: 35.4 + green: 66.2 + yellow: 75.2 + blue: 57.6 + magenta: 49.1 + cyan: 53.8 + white: 100.2 + brightBlack: 0 + brightRed: 35.4 + brightGreen: 66.2 + brightYellow: 75.2 + brightBlue: 57.6 + brightMagenta: 49.1 + brightCyan: 53.8 + brightWhite: 100.2 diff --git a/themes/kiss.yaml b/themes/kiss.yaml new file mode 100644 index 00000000..ff3b1bd3 --- /dev/null +++ b/themes/kiss.yaml @@ -0,0 +1,49 @@ +name: "Kiss" +source: + marketplace_id: "rileytwo.kiss" + version: "0.8.6" + installs: 1718 + author: "rileytwo" + repo: "https://github.com/rileytwo/kiss" + url: "https://marketplace.visualstudio.com/items?itemName=rileytwo.kiss" +colors: + bg: "#181818" + fg: "#FCFCFC" + black: "#333333" + red: "#FF7E81" + green: "#00FF67" + yellow: "#FFF094" + blue: "#3FB2FF" + magenta: "#9F91FF" + cyan: "#2FFEFF" + white: "#E6E6E6" + brightBlack: "#888888" + brightRed: "#FF8F86" + brightGreen: "#73FF96" + brightYellow: "#F9F1A5" + brightBlue: "#00C6FF" + brightMagenta: "#ACA8FF" + brightCyan: "#00E5FF" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 104.8 + black: 0 + red: 53.1 + green: 86 + yellow: 95.9 + blue: 55.5 + magenta: 49.6 + cyan: 90.8 + white: 90.5 + brightBlack: 37.5 + brightRed: 58 + brightGreen: 89.5 + brightYellow: 95.9 + brightBlue: 63.4 + brightMagenta: 59.1 + brightCyan: 77.9 + brightWhite: 100.8 diff --git a/themes/kite-dark.yaml b/themes/kite-dark.yaml new file mode 100644 index 00000000..15ecbbf4 --- /dev/null +++ b/themes/kite-dark.yaml @@ -0,0 +1,49 @@ +name: "Kite Dark" +source: + marketplace_id: "yudinikita.vscode-theme-kite" + version: "1.1.2" + installs: 8249 + author: "Yudin Nikita" + repo: "https://github.com/nblackninja/vscode-theme-kite" + url: "https://marketplace.visualstudio.com/items?itemName=yudinikita.vscode-theme-kite" +colors: + bg: "#2D353E" + fg: "#C7CED6" + black: "#000913" + red: "#C8433C" + green: "#4FC83C" + yellow: "#C8BF3C" + blue: "#3C7DC8" + magenta: "#9E3CC8" + cyan: "#3CA3C8" + white: "#CBCED2" + brightBlack: "#606871" + brightRed: "#F14F46" + brightGreen: "#53EC3C" + brightYellow: "#F1E646" + brightBlue: "#5097E7" + brightMagenta: "#D165FF" + brightCyan: "#46C3F1" + brightWhite: "#E6E8EA" +meta: + mode: "dark" + accent: "green" + hue: 251 + contrast: + fg: 70.2 + black: 0 + red: 22.8 + green: 53.7 + yellow: 59.9 + blue: 26.5 + magenta: 19.9 + cyan: 40.8 + white: 70.5 + brightBlack: 17.3 + brightRed: 33.8 + brightGreen: 71.7 + brightYellow: 82.9 + brightBlue: 38.7 + brightMagenta: 39.7 + brightCyan: 57 + brightWhite: 86.6 diff --git a/themes/kite-darker.yaml b/themes/kite-darker.yaml new file mode 100644 index 00000000..00b4dbde --- /dev/null +++ b/themes/kite-darker.yaml @@ -0,0 +1,49 @@ +name: "Kite Darker" +source: + marketplace_id: "yudinikita.vscode-theme-kite" + version: "1.1.2" + installs: 8249 + author: "Yudin Nikita" + repo: "https://github.com/nblackninja/vscode-theme-kite" + url: "https://marketplace.visualstudio.com/items?itemName=yudinikita.vscode-theme-kite" +colors: + bg: "#22282F" + fg: "#C7CED6" + black: "#000913" + red: "#C8433C" + green: "#4FC83C" + yellow: "#C8BF3C" + blue: "#3C7DC8" + magenta: "#9E3CC8" + cyan: "#3CA3C8" + white: "#CBCED2" + brightBlack: "#606871" + brightRed: "#F14F46" + brightGreen: "#53EC3C" + brightYellow: "#F1E646" + brightBlue: "#5097E7" + brightMagenta: "#D165FF" + brightCyan: "#46C3F1" + brightWhite: "#E6E8EA" +meta: + mode: "dark" + accent: "green" + hue: 252 + contrast: + fg: 73 + black: 0 + red: 25.7 + green: 56.5 + yellow: 62.7 + blue: 29.4 + magenta: 22.7 + cyan: 43.6 + white: 73.3 + brightBlack: 20.2 + brightRed: 36.6 + brightGreen: 74.5 + brightYellow: 85.7 + brightBlue: 41.6 + brightMagenta: 42.5 + brightCyan: 59.9 + brightWhite: 89.4 diff --git a/themes/kite-light.yaml b/themes/kite-light.yaml new file mode 100644 index 00000000..d6cd3df0 --- /dev/null +++ b/themes/kite-light.yaml @@ -0,0 +1,49 @@ +name: "Kite Light" +source: + marketplace_id: "yudinikita.vscode-theme-kite" + version: "1.1.2" + installs: 8249 + author: "Yudin Nikita" + repo: "https://github.com/nblackninja/vscode-theme-kite" + url: "https://marketplace.visualstudio.com/items?itemName=yudinikita.vscode-theme-kite" +colors: + bg: "#FFFFFF" + fg: "#04274E" + black: "#000913" + red: "#C8433C" + green: "#4FC83C" + yellow: "#C8BF3C" + blue: "#3C7DC8" + magenta: "#9E3CC8" + cyan: "#3CA3C8" + white: "#78818C" + brightBlack: "#606871" + brightRed: "#F14F46" + brightGreen: "#53EC3C" + brightYellow: "#F1E646" + brightBlue: "#5097E7" + brightMagenta: "#D165FF" + brightCyan: "#46C3F1" + brightWhite: "#949BA4" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 101.5 + black: 105.9 + red: 72.7 + green: 42.3 + yellow: 36.4 + blue: 68.9 + magenta: 75.7 + cyan: 54.9 + white: 66.9 + brightBlack: 78.3 + brightRed: 61.7 + brightGreen: 25.3 + brightYellow: 14.7 + brightBlue: 56.9 + brightMagenta: 55.9 + brightCyan: 39.1 + brightWhite: 54 diff --git a/themes/kitty-catty.yaml b/themes/kitty-catty.yaml new file mode 100644 index 00000000..b6e36299 --- /dev/null +++ b/themes/kitty-catty.yaml @@ -0,0 +1,49 @@ +name: "kitty catty" +source: + marketplace_id: "HAAZIQ-ALI.karou-theme" + version: "3.0.1" + installs: 90 + author: "HAAZIQ-ALI" + repo: "https://github.com/HAAZIQ-ALI/KAROU-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=HAAZIQ-ALI.karou-theme" +colors: + bg: "#0D0F10" + fg: "#D8DFE5" + black: "#0D1012" + red: "#FF6666" + green: "#3FBF7F" + yellow: "#FFB454" + blue: "#4AA3FF" + magenta: "#343131" + cyan: "#2F9EA4" + white: "#D8DFE5" + brightBlack: "#2C3943" + brightRed: "#FF6666" + brightGreen: "#49D18F" + brightYellow: "#FFB454" + brightBlue: "#62B4FF" + brightMagenta: "#343131" + brightCyan: "#4FD4D6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.3 + black: 0 + red: 47.6 + green: 55.9 + yellow: 70.2 + blue: 50.6 + magenta: 0 + cyan: 42.4 + white: 86.3 + brightBlack: 0 + brightRed: 47.6 + brightGreen: 65.1 + brightYellow: 70.2 + brightBlue: 58.5 + brightMagenta: 0 + brightCyan: 69.5 + brightWhite: 107.5 diff --git a/themes/kitty-night.yaml b/themes/kitty-night.yaml new file mode 100644 index 00000000..f6ac7a41 --- /dev/null +++ b/themes/kitty-night.yaml @@ -0,0 +1,49 @@ +name: "kitty night" +source: + marketplace_id: "goldyflakes.kitty-night" + version: "3.0.5" + installs: 2645 + author: "goldyflakes" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=goldyflakes.kitty-night" +colors: + bg: "#222024" + fg: "#FFFFFF" + black: "#282A2E" + red: "#DA627D" + green: "#8FDA8F" + yellow: "#FFB492" + blue: "#6694CC" + magenta: "#F8C2E2" + cyan: "#CEFDFF" + white: "#807A79" + brightBlack: "#373B41" + brightRed: "#D87389" + brightGreen: "#A7E9B0" + brightYellow: "#FCC899" + brightBlue: "#8DC0DC" + brightMagenta: "#F2C1F9" + brightCyan: "#AED0C9" + brightWhite: "#DAD8D8" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 105.7 + black: 0 + red: 37.6 + green: 71.4 + yellow: 69.6 + blue: 41.1 + magenta: 76.7 + cyan: 98.5 + white: 30.3 + brightBlack: 0 + brightRed: 41.7 + brightGreen: 81.6 + brightYellow: 77 + brightBlue: 62.5 + brightMagenta: 76.6 + brightCyan: 71.6 + brightWhite: 81 diff --git a/themes/kittypower.yaml b/themes/kittypower.yaml new file mode 100644 index 00000000..0bc0fcc0 --- /dev/null +++ b/themes/kittypower.yaml @@ -0,0 +1,49 @@ +name: "KittyPower" +source: + marketplace_id: "Eduardo-Escoto.kittypower" + version: "0.0.9" + installs: 859 + author: "Eduardo Escoto" + repo: "https://github.com/eduardo-escoto/KittyPower" + url: "https://marketplace.visualstudio.com/items?itemName=Eduardo-Escoto.kittypower" +colors: + bg: "#0E1C26" + fg: "#FF8657" + black: "#B8B8B8" + red: "#F52727" + green: "#8EFFCA" + yellow: "#FFE300" + blue: "#63ADFF" + magenta: "#CAB7FF" + cyan: "#95EAFF" + white: "#FFFFFF" + brightBlack: "#948787" + brightRed: "#FF4949" + brightGreen: "#3FFFB2" + brightYellow: "#FFF678" + brightBlue: "#0079FF" + brightMagenta: "#9C59FF" + brightCyan: "#06CEFF" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "orange" + hue: 241 + contrast: + fg: 54.1 + black: 62.6 + red: 34.7 + green: 92.4 + yellow: 88.1 + blue: 54.6 + magenta: 68.1 + cyan: 84.8 + white: 106.4 + brightBlack: 38.1 + brightRed: 40.9 + brightGreen: 88.1 + brightYellow: 97.8 + brightBlue: 33.4 + brightMagenta: 33.8 + brightCyan: 66.7 + brightWhite: 91.5 diff --git a/themes/kiwi-contrast.yaml b/themes/kiwi-contrast.yaml new file mode 100644 index 00000000..b0ff7acb --- /dev/null +++ b/themes/kiwi-contrast.yaml @@ -0,0 +1,49 @@ +name: "kiwi-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0C0F0E" + fg: "#EDEBE6" + black: "#171D1B" + red: "#BA0E2E" + green: "#229986" + yellow: "#95C72A" + blue: "#0B6D5C" + magenta: "#229986" + cyan: "#95C72A" + white: "#F8F7F5" + brightBlack: "#394843" + brightRed: "#F03E5F" + brightGreen: "#4AD7C0" + brightYellow: "#BFE275" + brightBlue: "#14CAAA" + brightMagenta: "#4AD7C0" + brightCyan: "#BFE275" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.5 + black: 0 + red: 21.2 + green: 39 + yellow: 63.4 + blue: 20.8 + magenta: 39 + cyan: 63.4 + white: 102.3 + brightBlack: 9.8 + brightRed: 37.5 + brightGreen: 69.8 + brightYellow: 81 + brightBlue: 61.7 + brightMagenta: 69.8 + brightCyan: 81 + brightWhite: 107.5 diff --git a/themes/kiwi-light.yaml b/themes/kiwi-light.yaml new file mode 100644 index 00000000..3eaf4963 --- /dev/null +++ b/themes/kiwi-light.yaml @@ -0,0 +1,49 @@ +name: "kiwi-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#555555" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#229986" + yellow: "#95C72A" + blue: "#0B6D5C" + magenta: "#229986" + cyan: "#95C72A" + white: "#626262" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#4AD7C0" + brightYellow: "#BFE275" + brightBlue: "#14CAAA" + brightMagenta: "#4AD7C0" + brightCyan: "#BFE275" + brightWhite: "#888888" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 85.9 + black: 0 + red: 80.3 + green: 62.3 + yellow: 38.6 + blue: 80.7 + magenta: 62.3 + cyan: 38.6 + white: 80.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 32.6 + brightYellow: 21.9 + brightBlue: 40.2 + brightMagenta: 32.6 + brightCyan: 21.9 + brightWhite: 63.1 diff --git a/themes/kiwi.yaml b/themes/kiwi.yaml new file mode 100644 index 00000000..9286d0fd --- /dev/null +++ b/themes/kiwi.yaml @@ -0,0 +1,49 @@ +name: "Kiwi" +source: + marketplace_id: "Mashadeve.kiwi" + version: "0.0.1" + installs: 0 + author: "Mashadeve" + repo: "https://github.com/Mashadeve/Kiwi" + url: "https://marketplace.visualstudio.com/items?itemName=Mashadeve.kiwi" +colors: + bg: "#303030" + fg: "#0EC043" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BCBCBC" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 49.8 + black: 0 + red: 22.6 + green: 48.9 + yellow: 81.5 + blue: 23.3 + magenta: 25.6 + cyan: 43.4 + white: 61.2 + brightBlack: 17.9 + brightRed: 34.4 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.9 + brightMagenta: 41.3 + brightCyan: 51.3 + brightWhite: 85.9 diff --git a/themes/kiwisoup-fork.yaml b/themes/kiwisoup-fork.yaml new file mode 100644 index 00000000..b89a1ac8 --- /dev/null +++ b/themes/kiwisoup-fork.yaml @@ -0,0 +1,49 @@ +name: "Kiwisoup - Fork" +source: + marketplace_id: "0xJariel.chatgp-theme" + version: "0.0.5" + installs: 2495 + author: "0xJariel" + repo: "https://github.com/0xJariel/ChatGP-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=0xJariel.chatgp-theme" +colors: + bg: "#303038" + fg: "#D4D4D4" + black: "#000000" + red: "#C03738" + green: "#43B67B" + yellow: "#E2E249" + blue: "#386FA4" + magenta: "#9736BA" + cyan: "#4EB7D1" + white: "#E5E5E5" + brightBlack: "#626161" + brightRed: "#F05D5E" + brightGreen: "#5FDB9C" + brightYellow: "#F2F28B" + brightBlue: "#4B9AE6" + brightMagenta: "#BC64BC" + brightCyan: "#6BDDF9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 75.2 + black: 0 + red: 20.4 + green: 47 + yellow: 79.8 + blue: 20.4 + magenta: 17.9 + cyan: 51.2 + white: 85.8 + brightBlack: 15.8 + brightRed: 37.4 + brightGreen: 66.3 + brightYellow: 90.6 + brightBlue: 40.5 + brightMagenta: 32.3 + brightCyan: 71.8 + brightWhite: 102.6 diff --git a/themes/knapsack.yaml b/themes/knapsack.yaml new file mode 100644 index 00000000..e83e9097 --- /dev/null +++ b/themes/knapsack.yaml @@ -0,0 +1,49 @@ +name: "Knapsack" +source: + marketplace_id: "versionmaybe.knapsack-theme" + version: "0.0.4" + installs: 76 + author: "VersionMaybe." + repo: "https://github.com/VersionMaybe/vs-code-knapsack" + url: "https://marketplace.visualstudio.com/items?itemName=versionmaybe.knapsack-theme" +colors: + bg: "#212229" + fg: "#FFFFFF" + black: "#000000" + red: "#FA285A" + green: "#5AC09B" + yellow: "#F9F962" + blue: "#325AFA" + magenta: "#827AF5" + cyan: "#32B8FA" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF6363" + brightGreen: "#83E496" + brightYellow: "#FFFFB0" + brightBlue: "#6C89FF" + brightMagenta: "#C37AF5" + brightCyan: "#6CCEFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: 279 + contrast: + fg: 105.4 + black: 0 + red: 35.6 + green: 56.1 + yellow: 97 + blue: 23.9 + magenta: 37.2 + cyan: 56 + white: 88.5 + brightBlack: 20.6 + brightRed: 44.8 + brightGreen: 75.3 + brightYellow: 102.4 + brightBlue: 40.9 + brightMagenta: 45.3 + brightCyan: 68.1 + brightWhite: 88.5 diff --git a/themes/knfocus-alt.yaml b/themes/knfocus-alt.yaml new file mode 100644 index 00000000..7c307c45 --- /dev/null +++ b/themes/knfocus-alt.yaml @@ -0,0 +1,49 @@ +name: "KnFocus Alt" +source: + marketplace_id: "Knighttower.knfocus" + version: "1.4.0" + installs: 100 + author: "Knighttower" + repo: "https://github.com/knighttower/vscode-theme-knfocus" + url: "https://marketplace.visualstudio.com/items?itemName=Knighttower.knfocus" +colors: + bg: "#191919" + fg: "#62295F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 7.4 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/knfocus-base.yaml b/themes/knfocus-base.yaml new file mode 100644 index 00000000..2f62c992 --- /dev/null +++ b/themes/knfocus-base.yaml @@ -0,0 +1,49 @@ +name: "KnFocus Base" +source: + marketplace_id: "Knighttower.knfocus" + version: "1.4.0" + installs: 100 + author: "Knighttower" + repo: "https://github.com/knighttower/vscode-theme-knfocus" + url: "https://marketplace.visualstudio.com/items?itemName=Knighttower.knfocus" +colors: + bg: "#191919" + fg: "#946802" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 26.5 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/knoctal-dark.yaml b/themes/knoctal-dark.yaml new file mode 100644 index 00000000..cdb3766a --- /dev/null +++ b/themes/knoctal-dark.yaml @@ -0,0 +1,49 @@ +name: "Knoctal Dark" +source: + marketplace_id: "najmiter.knoctal-theme" + version: "0.1.13" + installs: 81 + author: "Knoctal" + repo: "https://github.com/najmiter/knoctal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=najmiter.knoctal-theme" +colors: + bg: "#1F2024" + fg: "#E0E0E0" + black: "#282C34" + red: "#D9858C" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#D9858C" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#A54E02" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 85.7 + black: 0 + red: 47.1 + green: 61.1 + yellow: 69.4 + blue: 53.5 + magenta: 44 + cyan: 53.4 + white: 58.3 + brightBlack: 19.5 + brightRed: 47.1 + brightGreen: 61.1 + brightYellow: 69.4 + brightBlue: 53.5 + brightMagenta: 44 + brightCyan: 21.8 + brightWhite: 105.7 diff --git a/themes/knoctal-darker.yaml b/themes/knoctal-darker.yaml new file mode 100644 index 00000000..6204112c --- /dev/null +++ b/themes/knoctal-darker.yaml @@ -0,0 +1,49 @@ +name: "Knoctal Darker" +source: + marketplace_id: "najmiter.knoctal-theme" + version: "0.1.13" + installs: 81 + author: "Knoctal" + repo: "https://github.com/najmiter/knoctal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=najmiter.knoctal-theme" +colors: + bg: "#181818" + fg: "#E0E0E0" + black: "#282C34" + red: "#D9858C" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#D9858C" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#A54E02" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 86.8 + black: 0 + red: 48.1 + green: 62.2 + yellow: 70.5 + blue: 54.6 + magenta: 45 + cyan: 54.5 + white: 59.3 + brightBlack: 20.5 + brightRed: 48.1 + brightGreen: 62.2 + brightYellow: 70.5 + brightBlue: 54.6 + brightMagenta: 45 + brightCyan: 22.8 + brightWhite: 106.8 diff --git a/themes/knowit-dark.yaml b/themes/knowit-dark.yaml new file mode 100644 index 00000000..99b2f5c4 --- /dev/null +++ b/themes/knowit-dark.yaml @@ -0,0 +1,49 @@ +name: "knowit-dark" +source: + marketplace_id: "knowit.knowit-color-theme" + version: "1.0.0" + installs: 586 + author: "KnowIT" + repo: "https://github.com/JoseRa-KnowIT/knowit-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=knowit.knowit-color-theme" +colors: + bg: "#090C13" + fg: "#D6D6D6" + black: "#7F7F7F" + red: "#E15A60" + green: "#99C794" + yellow: "#FAC863" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#7F7F7F" + brightRed: "#E15A60" + brightGreen: "#99C794" + brightYellow: "#FAC863" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 81.5 + black: 34.1 + red: 38.6 + green: 65.6 + yellow: 77.5 + blue: 44.9 + magenta: 52.8 + cyan: 53.8 + white: 80.3 + brightBlack: 34.1 + brightRed: 38.6 + brightGreen: 65.6 + brightYellow: 77.5 + brightBlue: 44.9 + brightMagenta: 52.8 + brightCyan: 53.8 + brightWhite: 80.3 diff --git a/themes/knowlyr-dark.yaml b/themes/knowlyr-dark.yaml new file mode 100644 index 00000000..595a9996 --- /dev/null +++ b/themes/knowlyr-dark.yaml @@ -0,0 +1,49 @@ +name: "Knowlyr Dark" +source: + marketplace_id: "Knowlyr.knowlyr-theme" + version: "3.0.0" + installs: 15 + author: "Knowlyr" + repo: "https://github.com/liuxiaotong/knowlyr-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Knowlyr.knowlyr-theme" +colors: + bg: "#151C1A" + fg: "#BCBEC4" + black: "#191A1C" + red: "#F75464" + green: "#38B756" + yellow: "#E8A33E" + blue: "#56A8F5" + magenta: "#B882C0" + cyan: "#2EAA8E" + white: "#D0D2D8" + brightBlack: "#808590" + brightRed: "#F9667A" + brightGreen: "#55D872" + brightYellow: "#F0B95E" + brightBlue: "#7CACF8" + brightMagenta: "#D0A4D6" + brightCyan: "#50D4B8" + brightWhite: "#D4D5D9" +meta: + mode: "dark" + accent: "orange" + hue: 176 + contrast: + fg: 66.1 + black: 0 + red: 41.3 + green: 50.2 + yellow: 58.7 + blue: 51.3 + magenta: 43.8 + cyan: 45.6 + white: 77.9 + brightBlack: 35.7 + brightRed: 45.7 + brightGreen: 67.2 + brightYellow: 68.6 + brightBlue: 55.4 + brightMagenta: 59.6 + brightCyan: 67.1 + brightWhite: 79.7 diff --git a/themes/knowlyr-light.yaml b/themes/knowlyr-light.yaml new file mode 100644 index 00000000..3987e0d7 --- /dev/null +++ b/themes/knowlyr-light.yaml @@ -0,0 +1,49 @@ +name: "Knowlyr Light" +source: + marketplace_id: "Knowlyr.knowlyr-theme" + version: "3.0.0" + installs: 15 + author: "Knowlyr" + repo: "https://github.com/liuxiaotong/knowlyr-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Knowlyr.knowlyr-theme" +colors: + bg: "#F0F5F3" + fg: "#2B2D30" + black: "#2B2D30" + red: "#E34050" + green: "#268840" + yellow: "#D68F2E" + blue: "#3574E0" + magenta: "#964098" + cyan: "#0D6B5E" + white: "#F8F9FB" + brightBlack: "#8C919A" + brightRed: "#F75464" + brightGreen: "#38B756" + brightYellow: "#E8A33E" + brightBlue: "#548AF7" + brightMagenta: "#B882C0" + brightCyan: "#2EAA8E" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93.7 + black: 93.7 + red: 60.2 + green: 64.1 + yellow: 45.2 + blue: 63.7 + magenta: 72.9 + cyan: 74.7 + white: 0 + brightBlack: 52.1 + brightRed: 52.4 + brightGreen: 43.7 + brightYellow: 35.5 + brightBlue: 53.4 + brightMagenta: 49.9 + brightCyan: 48.2 + brightWhite: 0 diff --git a/themes/koala-codes-theme.yaml b/themes/koala-codes-theme.yaml new file mode 100644 index 00000000..2a03c0f9 --- /dev/null +++ b/themes/koala-codes-theme.yaml @@ -0,0 +1,49 @@ +name: "Koala codes theme" +source: + marketplace_id: "VigneshwaranK.koala" + version: "0.0.2" + installs: 788 + author: "Vigneshwaran K" + repo: "https://github.com/Vigneshwaran-dev/Koala-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=VigneshwaranK.koala" +colors: + bg: "#18191D" + fg: "#D4D4D4" + black: "#282A36" + red: "#FD6969" + green: "#B4FFE2" + yellow: "#FFFFA5" + blue: "#248AC8" + magenta: "#DA86DA" + cyan: "#5DD9F8" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF5353" + brightGreen: "#47CF99" + brightYellow: "#FFFF5D" + brightBlue: "#3B8EEA" + brightMagenta: "#A46CEE" + brightCyan: "#0CD2FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.3 + black: 0 + red: 46.9 + green: 96.6 + yellow: 103.3 + blue: 35.5 + magenta: 51.9 + cyan: 73.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 42.8 + brightGreen: 63.5 + brightYellow: 101.9 + brightBlue: 39.8 + brightMagenta: 38 + brightCyan: 68.7 + brightWhite: 89.8 diff --git a/themes/kod-purple.yaml b/themes/kod-purple.yaml new file mode 100644 index 00000000..59630efc --- /dev/null +++ b/themes/kod-purple.yaml @@ -0,0 +1,49 @@ +name: "Kod Purple" +source: + marketplace_id: "AndrewKodkod.kod-purple-theme" + version: "0.0.3" + installs: 215 + author: "Andrew Kodkod" + repo: "https://github.com/akodkod/kod-purple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndrewKodkod.kod-purple-theme" +colors: + bg: "#1A1F30" + fg: "#C6C6D7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 70.8 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.3 + magenta: 28.7 + cyan: 46.5 + white: 88.9 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/kodex-arctic.yaml b/themes/kodex-arctic.yaml new file mode 100644 index 00000000..bf982196 --- /dev/null +++ b/themes/kodex-arctic.yaml @@ -0,0 +1,49 @@ +name: "Kodex Arctic" +source: + marketplace_id: "pnx.kodex" + version: "0.4.1" + installs: 232 + author: "Henrik Hautakoski" + repo: "https://github.com/pnx/kodex-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=pnx.kodex" +colors: + bg: "#282A33" + fg: "#F1F1F1" + black: "#000000" + red: "#CC817F" + green: "#7CCFAF" + yellow: "#FFCC99" + blue: "#8AC6F2" + magenta: "#9999CC" + cyan: "#8ABEB7" + white: "#F1F1F1" + brightBlack: "#000000" + brightRed: "#CC817F" + brightGreen: "#7CCFAF" + brightYellow: "#FFCC99" + brightBlue: "#8AC6F2" + brightMagenta: "#9999CC" + brightCyan: "#8ABEB7" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "teal" + hue: 275 + contrast: + fg: 94.8 + black: 0 + red: 41.5 + green: 64.2 + yellow: 77.5 + blue: 64.3 + magenta: 45.6 + cyan: 57.9 + white: 94.8 + brightBlack: 0 + brightRed: 41.5 + brightGreen: 64.2 + brightYellow: 77.5 + brightBlue: 64.3 + brightMagenta: 45.6 + brightCyan: 57.9 + brightWhite: 94.8 diff --git a/themes/kodex.yaml b/themes/kodex.yaml new file mode 100644 index 00000000..56c00e0a --- /dev/null +++ b/themes/kodex.yaml @@ -0,0 +1,49 @@ +name: "Kodex" +source: + marketplace_id: "pnx.kodex" + version: "0.4.1" + installs: 232 + author: "Henrik Hautakoski" + repo: "https://github.com/pnx/kodex-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=pnx.kodex" +colors: + bg: "#1D232C" + fg: "#F1F1F1" + black: "#000000" + red: "#CC817F" + green: "#7CCFAF" + yellow: "#FFCC99" + blue: "#8AC6F2" + magenta: "#9999CC" + cyan: "#8ABEB7" + white: "#F1F1F1" + brightBlack: "#000000" + brightRed: "#CC817F" + brightGreen: "#7CCFAF" + brightYellow: "#FFCC99" + brightBlue: "#8AC6F2" + brightMagenta: "#9999CC" + brightCyan: "#8ABEB7" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "teal" + hue: 258 + contrast: + fg: 96.2 + black: 0 + red: 42.8 + green: 65.6 + yellow: 78.8 + blue: 65.7 + magenta: 47 + cyan: 59.3 + white: 96.2 + brightBlack: 0 + brightRed: 42.8 + brightGreen: 65.6 + brightYellow: 78.8 + brightBlue: 65.7 + brightMagenta: 47 + brightCyan: 59.3 + brightWhite: 96.2 diff --git a/themes/koffee-kreme.yaml b/themes/koffee-kreme.yaml new file mode 100644 index 00000000..2a3cb9b6 --- /dev/null +++ b/themes/koffee-kreme.yaml @@ -0,0 +1,49 @@ +name: "Koffee Kreme" +source: + marketplace_id: "AchroDev.koffee-kreme" + version: "0.7.5" + installs: 520 + author: "AchroDev" + repo: "https://github.com/AchroDev/koffee-kreme" + url: "https://marketplace.visualstudio.com/items?itemName=AchroDev.koffee-kreme" +colors: + bg: "#ECE0D1" + fg: "#38220F" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#C9CF00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 74 + contrast: + fg: 84.4 + black: 88.7 + red: 56.7 + green: 31.9 + yellow: 40.6 + blue: 68.8 + magenta: 57.3 + cyan: 43.3 + white: 68.6 + brightBlack: 61.5 + brightRed: 56.7 + brightGreen: 23.6 + brightYellow: 12.6 + brightBlue: 68.8 + brightMagenta: 57.3 + brightCyan: 43.3 + brightWhite: 31.2 diff --git a/themes/koi-noir-lan-theme.yaml b/themes/koi-noir-lan-theme.yaml new file mode 100644 index 00000000..50d0ac81 --- /dev/null +++ b/themes/koi-noir-lan-theme.yaml @@ -0,0 +1,49 @@ +name: "Koi Noir Lan Theme" +source: + marketplace_id: "wangx123.koi-noir-theme" + version: "2.0.3" + installs: 59 + author: "wangx" + repo: "https://github.com/wangx7/koi-noir-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wangx123.koi-noir-theme" +colors: + bg: "#0F1119" + fg: "#BABED8" + black: "#0F1119" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 67.6 + black: 0 + red: 47.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 107.4 + brightBlack: 26.9 + brightRed: 47.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 107.4 diff --git a/themes/koi-noir-theme.yaml b/themes/koi-noir-theme.yaml new file mode 100644 index 00000000..12bf1c83 --- /dev/null +++ b/themes/koi-noir-theme.yaml @@ -0,0 +1,49 @@ +name: "Koi Noir Theme" +source: + marketplace_id: "wangx123.koi-noir-theme" + version: "2.0.3" + installs: 59 + author: "wangx" + repo: "https://github.com/wangx7/koi-noir-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wangx123.koi-noir-theme" +colors: + bg: "#000000" + fg: "#BABED8" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 68.2 + black: 0 + red: 47.6 + green: 85.2 + yellow: 79.9 + blue: 56.9 + magenta: 54.8 + cyan: 79.3 + white: 107.9 + brightBlack: 27.4 + brightRed: 47.6 + brightGreen: 85.2 + brightYellow: 79.9 + brightBlue: 56.9 + brightMagenta: 54.8 + brightCyan: 79.3 + brightWhite: 107.9 diff --git a/themes/koi-pond-dark.yaml b/themes/koi-pond-dark.yaml new file mode 100644 index 00000000..3f82068e --- /dev/null +++ b/themes/koi-pond-dark.yaml @@ -0,0 +1,49 @@ +name: "Koi Pond Dark" +source: + marketplace_id: "sserafy.naturefy-themes" + version: "2.0.2" + installs: 1655 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.naturefy-themes" +colors: + bg: "#0F1419" + fg: "#C7D2CC" + black: "#2D3B4F" + red: "#D73027" + green: "#7FB069" + yellow: "#F4A261" + blue: "#2166AC" + magenta: "#762A83" + cyan: "#5AAE61" + white: "#C7D2CC" + brightBlack: "#5C6B73" + brightRed: "#E85749" + brightGreen: "#8BC275" + brightYellow: "#F6B73C" + brightBlue: "#4393C3" + brightMagenta: "#9970AB" + brightCyan: "#7FB069" + brightWhite: "#E8F0E8" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 77 + black: 0 + red: 29.1 + green: 51.8 + yellow: 61.6 + blue: 22 + magenta: 12.6 + cyan: 48.4 + white: 77 + brightBlack: 23.5 + brightRed: 38.7 + brightGreen: 60.9 + brightYellow: 69.2 + brightBlue: 39.9 + brightMagenta: 33.8 + brightCyan: 51.8 + brightWhite: 95.9 diff --git a/themes/koi-pond-light.yaml b/themes/koi-pond-light.yaml new file mode 100644 index 00000000..195372fb --- /dev/null +++ b/themes/koi-pond-light.yaml @@ -0,0 +1,49 @@ +name: "Koi Pond Light" +source: + marketplace_id: "sserafy.naturefy-themes" + version: "2.0.2" + installs: 1655 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.naturefy-themes" +colors: + bg: "#FCFAF4" + fg: "#2C3E34" + black: "#2C3E34" + red: "#D73027" + green: "#2D5016" + yellow: "#D68910" + blue: "#2166AC" + magenta: "#762A83" + cyan: "#1A7431" + white: "#F7F3E9" + brightBlack: "#6B6B52" + brightRed: "#E85749" + brightGreen: "#3D6626" + brightYellow: "#F4A261" + brightBlue: "#4393C3" + brightMagenta: "#9970AB" + brightCyan: "#2D8F47" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93.2 + black: 93.2 + red: 68.9 + green: 88.2 + yellow: 50.8 + blue: 76.1 + magenta: 85.9 + cyan: 75.9 + white: 0 + brightBlack: 74.2 + brightRed: 59.3 + brightGreen: 80 + brightYellow: 37 + brightBlue: 58.1 + brightMagenta: 64.2 + brightCyan: 64.7 + brightWhite: 0 diff --git a/themes/kokatheme.yaml b/themes/kokatheme.yaml new file mode 100644 index 00000000..e5c89421 --- /dev/null +++ b/themes/kokatheme.yaml @@ -0,0 +1,49 @@ +name: "KokaTheme" +source: + marketplace_id: "Sabe.koka-theme" + version: "0.0.10" + installs: 14 + author: "Sabe" + repo: "https://github.com/SabeDoesThings/Koka-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sabe.koka-theme" +colors: + bg: "#1F2123" + fg: "#D5D3D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.8 + black: 0 + red: 25.5 + green: 51.8 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.8 + brightMagenta: 44.1 + brightCyan: 54.2 + brightWhite: 88.8 diff --git a/themes/koki-dark.yaml b/themes/koki-dark.yaml new file mode 100644 index 00000000..a782559d --- /dev/null +++ b/themes/koki-dark.yaml @@ -0,0 +1,49 @@ +name: "Koki Dark" +source: + marketplace_id: "hky.theme-koki" + version: "0.0.5" + installs: 188 + author: "hky" + repo: "https://github.com/hky301/vscode-theme-koki" + url: "https://marketplace.visualstudio.com/items?itemName=hky.theme-koki" +colors: + bg: "#121212" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#DB889A" + cyan: "#5EAAB5" + white: "#FFFFFF" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#DB889A" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 81.7 + black: 0 + red: 41.2 + green: 37.1 + yellow: 76 + blue: 41.8 + magenta: 50.3 + cyan: 49.7 + white: 107.3 + brightBlack: 30 + brightRed: 41.2 + brightGreen: 37.1 + brightYellow: 76 + brightBlue: 41.8 + brightMagenta: 50.3 + brightCyan: 49.7 + brightWhite: 107.3 diff --git a/themes/kokubo.yaml b/themes/kokubo.yaml new file mode 100644 index 00000000..afd2669e --- /dev/null +++ b/themes/kokubo.yaml @@ -0,0 +1,49 @@ +name: "kokubo" +source: + marketplace_id: "Kongaloosh.kongaloosh" + version: "0.0.1" + installs: 34 + author: "Kongaloosh" + repo: "git push --set-upstream origin main" + url: "https://marketplace.visualstudio.com/items?itemName=Kongaloosh.kongaloosh" +colors: + bg: "#3A3D3F" + fg: "#CEE5C2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#83ACBC" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78 + black: 8.5 + red: 19 + green: 45.3 + yellow: 77.9 + blue: 45.3 + magenta: 22.1 + cyan: 39.9 + white: 82.3 + brightBlack: 14.4 + brightRed: 30.9 + brightGreen: 55.9 + brightYellow: 88 + brightBlue: 32.3 + brightMagenta: 37.7 + brightCyan: 47.7 + brightWhite: 82.3 diff --git a/themes/kolada.yaml b/themes/kolada.yaml new file mode 100644 index 00000000..517df3ad --- /dev/null +++ b/themes/kolada.yaml @@ -0,0 +1,49 @@ +name: "Kolada" +source: + marketplace_id: "KaliaHayes.kolada" + version: "0.4.0" + installs: 7953 + author: "Kalia Hayes" + repo: "https://github.com/KaliaHayes/Kolada-VS-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=KaliaHayes.kolada" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#8BCEFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 7.5 + red: 39.6 + green: 87.1 + yellow: 92.3 + blue: 38.5 + magenta: 46.2 + cyan: 77.1 + white: 52.5 + brightBlack: 23 + brightRed: 48.2 + brightGreen: 93.6 + brightYellow: 80.4 + brightBlue: 72.6 + brightMagenta: 67.9 + brightCyan: 90.7 + brightWhite: 73.9 diff --git a/themes/komorebi.yaml b/themes/komorebi.yaml new file mode 100644 index 00000000..5cac7d43 --- /dev/null +++ b/themes/komorebi.yaml @@ -0,0 +1,49 @@ +name: "Komorebi" +source: + marketplace_id: "sergibarroso.komorebi" + version: "1.0.2" + installs: 414 + author: "Sergi Barroso" + repo: "https://github.com/sergibarroso/vscode-themes-komorebi" + url: "https://marketplace.visualstudio.com/items?itemName=sergibarroso.komorebi" +colors: + bg: "#FFFCF4" + fg: "#657B83" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 69.2 + black: 104.3 + red: 72.2 + green: 47.5 + yellow: 56.2 + blue: 84.3 + magenta: 72.8 + cyan: 58.8 + white: 84.2 + brightBlack: 77 + brightRed: 72.2 + brightGreen: 39.2 + brightYellow: 39.2 + brightBlue: 84.3 + brightMagenta: 72.8 + brightCyan: 58.8 + brightWhite: 46.7 diff --git a/themes/kong-light-extended.yaml b/themes/kong-light-extended.yaml new file mode 100644 index 00000000..7c1504e6 --- /dev/null +++ b/themes/kong-light-extended.yaml @@ -0,0 +1,49 @@ +name: "Kong Light Extended" +source: + marketplace_id: "zeaphoo.kong-vscode-theme" + version: "1.0.10" + installs: 24 + author: "zeaphoo" + repo: "https://github.com/zeaphoo/kong-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zeaphoo.kong-vscode-theme" +colors: + bg: "#F5F5F5" + fg: "#1F2328" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 96.8 + black: 95.5 + red: 68.8 + green: 79.3 + yellow: 92 + blue: 69 + magenta: 68.3 + cyan: 67.8 + white: 65.6 + brightBlack: 75.8 + brightRed: 79.3 + brightGreen: 68.6 + brightYellow: 86.1 + brightBlue: 54.7 + brightMagenta: 53.4 + brightCyan: 57.4 + brightWhite: 51.2 diff --git a/themes/konng.yaml b/themes/konng.yaml new file mode 100644 index 00000000..673a99ea --- /dev/null +++ b/themes/konng.yaml @@ -0,0 +1,49 @@ +name: "Konng" +source: + marketplace_id: "dockerissoslow.konngPublishTest" + version: "2.0.2" + installs: 351 + author: "dockerissoslow" + repo: "https://github.com/fengwei2002/vscode-theme-KONNG" + url: "https://marketplace.visualstudio.com/items?itemName=dockerissoslow.konngPublishTest" +colors: + bg: "#1C1E26" + fg: "#ABB2BF" + black: "#544F4F" + red: "#E15A60" + green: "#42B983" + yellow: "#FAC863" + blue: "#406285" + magenta: "#C594C5" + cyan: "#DD1EDD" + white: "#B4B4B4" + brightBlack: "#544F4F" + brightRed: "#E15A60" + brightGreen: "#1F593F" + brightYellow: "#FAC863" + brightBlue: "#406285" + brightMagenta: "#C594C5" + brightCyan: "#9E2494" + brightWhite: "#B4B4B4" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 58.5 + black: 12.4 + red: 37 + green: 51.9 + yellow: 75.9 + blue: 18.5 + magenta: 51.2 + cyan: 34.8 + white: 59.9 + brightBlack: 12.4 + brightRed: 37 + brightGreen: 12.1 + brightYellow: 75.9 + brightBlue: 18.5 + brightMagenta: 51.2 + brightCyan: 18.2 + brightWhite: 59.9 diff --git a/themes/kopo-theme.yaml b/themes/kopo-theme.yaml new file mode 100644 index 00000000..3dfbc6e6 --- /dev/null +++ b/themes/kopo-theme.yaml @@ -0,0 +1,49 @@ +name: "Kopo-Theme" +source: + marketplace_id: "Itayon.kopo-theme" + version: "1.0.1" + installs: 59 + author: "Itayon" + repo: "https://github.com/KopoCorp/VS-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Itayon.kopo-theme" +colors: + bg: "#191920" + fg: "#E8E8E8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 91.6 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.5 + cyan: 47.3 + white: 89.7 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/korbit.yaml b/themes/korbit.yaml new file mode 100644 index 00000000..32db7208 --- /dev/null +++ b/themes/korbit.yaml @@ -0,0 +1,49 @@ +name: "korbit" +source: + marketplace_id: "RATIU5DEV.korbit-theme" + version: "0.1.2" + installs: 981 + author: "RATIU5DEV" + repo: "https://github.com/RATIU5/korbit" + url: "https://marketplace.visualstudio.com/items?itemName=RATIU5DEV.korbit-theme" +colors: + bg: "#2A2725" + fg: "#A79C95" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E2D5CC" + brightBlack: "#655D56" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#F4E6DB" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 46.4 + black: 0 + red: 24.4 + green: 50.6 + yellow: 83.3 + blue: 25.1 + magenta: 27.4 + cyan: 45.2 + white: 79.1 + brightBlack: 16.5 + brightRed: 36.2 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.6 + brightMagenta: 43 + brightCyan: 53 + brightWhite: 89.8 diff --git a/themes/korean-dancheong-dark.yaml b/themes/korean-dancheong-dark.yaml new file mode 100644 index 00000000..42902c88 --- /dev/null +++ b/themes/korean-dancheong-dark.yaml @@ -0,0 +1,49 @@ +name: "Korean Dancheong Dark" +source: + marketplace_id: "weston0713.korean-dancheong-dark" + version: "1.1.2" + installs: 189 + author: "weston0713" + repo: "https://github.com/HC-kang/korean-dancheong-dark" + url: "https://marketplace.visualstudio.com/items?itemName=weston0713.korean-dancheong-dark" +colors: + bg: "#121A16" + fg: "#EAE2D8" + black: "#1E2A24" + red: "#C84C3A" + green: "#3FA45B" + yellow: "#E0B62C" + blue: "#3F75B6" + magenta: "#B85C8A" + cyan: "#4CBF6E" + white: "#DAD2C8" + brightBlack: "#6A655C" + brightRed: "#FF6E5A" + brightGreen: "#3AB865" + brightYellow: "#FFDE3E" + brightBlue: "#4A8FD8" + brightMagenta: "#C878A2" + brightCyan: "#6FD488" + brightWhite: "#F5F0E8" +meta: + mode: "dark" + accent: "orange" + hue: 163 + contrast: + fg: 88.6 + black: 0 + red: 29.3 + green: 42.4 + yellow: 64.6 + blue: 27.9 + magenta: 31.5 + cyan: 55.2 + white: 78.8 + brightBlack: 21.7 + brightRed: 48.3 + brightGreen: 51.2 + brightYellow: 86.4 + brightBlue: 39.5 + brightMagenta: 42.2 + brightCyan: 67.3 + brightWhite: 97.2 diff --git a/themes/korsr-theme.yaml b/themes/korsr-theme.yaml new file mode 100644 index 00000000..79bfd5ba --- /dev/null +++ b/themes/korsr-theme.yaml @@ -0,0 +1,49 @@ +name: "KORSR theme" +source: + marketplace_id: "Killuox.korsr-theme" + version: "0.7.0" + installs: 17 + author: "Killuox" + repo: "https://github.com/killuox/korsr-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Killuox.korsr-theme" +colors: + bg: "#21242C" + fg: "#DCE5F8" + black: "#222222" + red: "#E55454" + green: "#4DDC99" + yellow: "#FFF5A3" + blue: "#5FA5F5" + magenta: "#D864D8" + cyan: "#33CDE5" + white: "#FFFFFF" + brightBlack: "#999999" + brightRed: "#FF6E6E" + brightGreen: "#4CF2A8" + brightYellow: "#FFF1A3" + brightBlue: "#62A5FF" + brightMagenta: "#F293F2" + brightCyan: "#4DDFF3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 269 + contrast: + fg: 88 + black: 0 + red: 35.6 + green: 68.5 + yellow: 97 + blue: 49.2 + magenta: 41.4 + cyan: 63.8 + white: 105.1 + brightBlack: 44.4 + brightRed: 47.1 + brightGreen: 80 + brightYellow: 95.1 + brightBlue: 50.1 + brightMagenta: 59.8 + brightCyan: 73.7 + brightWhite: 105.1 diff --git a/themes/kozy-darker.yaml b/themes/kozy-darker.yaml new file mode 100644 index 00000000..2baa3ada --- /dev/null +++ b/themes/kozy-darker.yaml @@ -0,0 +1,49 @@ +name: "Kozy Darker" +source: + marketplace_id: "Artezio.kozy-theme" + version: "2.5.3" + installs: 507 + author: "Artezio" + repo: "https://github.com/Kozy-theme/vscode-cozy" + url: "https://marketplace.visualstudio.com/items?itemName=Artezio.kozy-theme" +colors: + bg: "#161C20" + fg: "#9CACB6" + black: "#263138" + red: "#EC4E20" + green: "#39A960" + yellow: "#FFB834" + blue: "#7A7FDB" + magenta: "#E6422D" + cyan: "#44A1E4" + white: "#EAEDF6" + brightBlack: "#2F3E47" + brightRed: "#F0743A" + brightGreen: "#30D46A" + brightYellow: "#FFC559" + brightBlue: "#A4A6CB" + brightMagenta: "#EE6D6D" + brightCyan: "#69B1E4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 237 + contrast: + fg: 54.5 + black: 0 + red: 36.8 + green: 44.1 + yellow: 70.3 + blue: 37.1 + magenta: 33.8 + cyan: 46.6 + white: 94.7 + brightBlack: 0 + brightRed: 45.8 + brightGreen: 64 + brightYellow: 75.7 + brightBlue: 54 + brightMagenta: 44.5 + brightCyan: 54.8 + brightWhite: 106.4 diff --git a/themes/kozy.yaml b/themes/kozy.yaml new file mode 100644 index 00000000..ad2a1368 --- /dev/null +++ b/themes/kozy.yaml @@ -0,0 +1,49 @@ +name: "Kozy" +source: + marketplace_id: "Artezio.kozy-theme" + version: "2.5.3" + installs: 507 + author: "Artezio" + repo: "https://github.com/Kozy-theme/vscode-cozy" + url: "https://marketplace.visualstudio.com/items?itemName=Artezio.kozy-theme" +colors: + bg: "#1A242A" + fg: "#9CACB6" + black: "#263138" + red: "#EC4E20" + green: "#39A960" + yellow: "#FFB834" + blue: "#7A7FDB" + magenta: "#E6422D" + cyan: "#44A1E4" + white: "#EAEDF6" + brightBlack: "#2F3E47" + brightRed: "#F0743A" + brightGreen: "#30D46A" + brightYellow: "#FFC559" + brightBlue: "#A4A6CB" + brightMagenta: "#EE6D6D" + brightCyan: "#69B1E4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 235 + contrast: + fg: 53.5 + black: 0 + red: 35.8 + green: 43 + yellow: 69.2 + blue: 36 + magenta: 32.7 + cyan: 45.5 + white: 93.6 + brightBlack: 0 + brightRed: 44.7 + brightGreen: 62.9 + brightYellow: 74.7 + brightBlue: 53 + brightMagenta: 43.4 + brightCyan: 53.7 + brightWhite: 105.3 diff --git a/themes/kpurple.yaml b/themes/kpurple.yaml new file mode 100644 index 00000000..31d49eb8 --- /dev/null +++ b/themes/kpurple.yaml @@ -0,0 +1,49 @@ +name: "kPurple" +source: + marketplace_id: "ksckaan1.kpurple" + version: "1.0.0" + installs: 193 + author: "Kaan Kuscu" + repo: "https://github.com/ksckaan1/kpurple-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ksckaan1.kpurple" +colors: + bg: "#2C165C" + fg: "#FFFFFF" + black: "#001114" + red: "#EE3A54" + green: "#0DBC79" + yellow: "#FFFF54" + blue: "#54A5FF" + magenta: "#BC3FBC" + cyan: "#59DEFF" + white: "#FFFFFF" + brightBlack: "#5529B5" + brightRed: "#FF0000" + brightGreen: "#00FF98" + brightYellow: "#FFFF00" + brightBlue: "#0079FF" + brightMagenta: "#FF00FF" + brightCyan: "#00CDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 291 + contrast: + fg: 104.5 + black: 0 + red: 33.3 + green: 50.6 + yellow: 99.7 + blue: 48.8 + magenta: 27.4 + cyan: 73.7 + white: 104.5 + brightBlack: 9.6 + brightRed: 34.2 + brightGreen: 84.8 + brightYellow: 99.4 + brightBlue: 31.5 + brightMagenta: 42.9 + brightCyan: 64.3 + brightWhite: 104.5 diff --git a/themes/kradeno.yaml b/themes/kradeno.yaml new file mode 100644 index 00000000..1981a8cf --- /dev/null +++ b/themes/kradeno.yaml @@ -0,0 +1,49 @@ +name: "Kradeno" +source: + marketplace_id: "NeoWees.onebadass-theme-neowees" + version: "0.6.0" + installs: 109 + author: "Neo Wees" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NeoWees.onebadass-theme-neowees" +colors: + bg: "#1E2227" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 254 + contrast: + fg: 58 + black: 7.5 + red: 35.4 + green: 59 + yellow: 47.2 + blue: 48.3 + magenta: 37.7 + cyan: 51.1 + white: 81.7 + brightBlack: 14.1 + brightRed: 44.7 + brightGreen: 75.4 + brightYellow: 59.9 + brightBlue: 62.4 + brightMagenta: 48.9 + brightCyan: 66.4 + brightWhite: 89.3 diff --git a/themes/krb-violet.yaml b/themes/krb-violet.yaml new file mode 100644 index 00000000..854f4f72 --- /dev/null +++ b/themes/krb-violet.yaml @@ -0,0 +1,49 @@ +name: "Krb_Violet" +source: + marketplace_id: "KUSHALSAHA.krbviolet" + version: "1.0.2" + installs: 810 + author: "KUSHAL SAHA" + repo: "https://github.com/krbfx/krbviolet" + url: "https://marketplace.visualstudio.com/items?itemName=KUSHALSAHA.krbviolet" +colors: + bg: "#312A3F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#D7D700" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFFF63" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 299 + contrast: + fg: 75.9 + black: 0 + red: 23.2 + green: 49.4 + yellow: 73.7 + blue: 23.9 + magenta: 26.2 + cyan: 44 + white: 86.5 + brightBlack: 18.5 + brightRed: 35 + brightGreen: 60 + brightYellow: 98.7 + brightBlue: 36.4 + brightMagenta: 41.8 + brightCyan: 51.8 + brightWhite: 86.5 diff --git a/themes/kripton.yaml b/themes/kripton.yaml new file mode 100644 index 00000000..168091bd --- /dev/null +++ b/themes/kripton.yaml @@ -0,0 +1,49 @@ +name: "Kripton" +source: + marketplace_id: "PhanDungTri.kripton" + version: "1.0.1" + installs: 1100 + author: "Phan Dung Tri" + repo: "https://github.com/Mysbeario/kripton-theme-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=PhanDungTri.kripton" +colors: + bg: "#131519" + fg: "#B3B1AD" + black: "#0E0E11" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F24732" + brightGreen: "#B8BB26" + brightYellow: "#F24732" + brightBlue: "#59C2FF" + brightMagenta: "#40EF4B" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 59.4 + black: 0 + red: 44.2 + green: 54.4 + yellow: 66.8 + blue: 60.8 + magenta: 92.2 + cyan: 78.1 + white: 71.9 + brightBlack: 23.1 + brightRed: 37.9 + brightGreen: 61.4 + brightYellow: 37.9 + brightBlue: 63.5 + brightMagenta: 78.1 + brightCyan: 81.1 + brightWhite: 107.1 diff --git a/themes/krishna-dark-elegant.yaml b/themes/krishna-dark-elegant.yaml new file mode 100644 index 00000000..9c06a2a4 --- /dev/null +++ b/themes/krishna-dark-elegant.yaml @@ -0,0 +1,49 @@ +name: "Krishna Dark Elegant" +source: + marketplace_id: "dcoder.krsna" + version: "1.0.4" + installs: 103 + author: "dcoder" + repo: "https://github.com/Dhruv-Arora-Git/Krsna-VS" + url: "https://marketplace.visualstudio.com/items?itemName=dcoder.krsna" +colors: + bg: "#1D2938" + fg: "#E8DCCB" + black: "#1D2938" + red: "#EF5350" + green: "#A5D6A7" + yellow: "#FBC02D" + blue: "#64B5F6" + magenta: "#BA68C8" + cyan: "#4DD0E1" + white: "#E8DCCB" + brightBlack: "#1D2938" + brightRed: "#EF5350" + brightGreen: "#A5D6A7" + brightYellow: "#FBC02D" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#E8DCCB" +meta: + mode: "dark" + accent: "orange" + hue: 254 + contrast: + fg: 82.8 + black: 0 + red: 36.8 + green: 70.9 + yellow: 70.6 + blue: 55.3 + magenta: 35.4 + cyan: 64.9 + white: 82.8 + brightBlack: 0 + brightRed: 36.8 + brightGreen: 70.9 + brightYellow: 70.6 + brightBlue: 55.3 + brightMagenta: 35.4 + brightCyan: 64.9 + brightWhite: 82.8 diff --git a/themes/krishna-default-dark-theme.yaml b/themes/krishna-default-dark-theme.yaml new file mode 100644 index 00000000..93348469 --- /dev/null +++ b/themes/krishna-default-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Krishna - Default Dark Theme" +source: + marketplace_id: "BhootStudio.bhoot-theme" + version: "1.0.4" + installs: 78 + author: "Bhoot Studio" + repo: "https://github.com/DebkantaMondal/Bhoot-VS-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=BhootStudio.bhoot-theme" +colors: + bg: "#000D1A" + fg: "#D9E0EE" + black: "#1A1B26" + red: "#FF6E6E" + green: "#B9F27C" + yellow: "#FFD700" + blue: "#89DDFF" + magenta: "#D67AD2" + cyan: "#8BE9FD" + white: "#E0E0E0" + brightBlack: "#5A5A5A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#FF9CEB" + brightCyan: "#A3F7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 243 + contrast: + fg: 87.3 + black: 0 + red: 49.5 + green: 88.3 + yellow: 84 + blue: 79 + magenta: 48.4 + cyan: 84.7 + white: 87.6 + brightBlack: 17.8 + brightRed: 44.3 + brightGreen: 84.9 + brightYellow: 94.4 + brightBlue: 56.6 + brightMagenta: 67 + brightCyan: 93.4 + brightWhite: 107.6 diff --git a/themes/kroma-cardinal-light.yaml b/themes/kroma-cardinal-light.yaml new file mode 100644 index 00000000..47550b6a --- /dev/null +++ b/themes/kroma-cardinal-light.yaml @@ -0,0 +1,49 @@ +name: "Kroma Cardinal Light" +source: + marketplace_id: "quzma.vscode-kroma" + version: "1.5.0" + installs: 82 + author: "Darko Kuzmanovic" + repo: "https://github.com/DarkoKuzmanovic/vscode-kroma" + url: "https://marketplace.visualstudio.com/items?itemName=quzma.vscode-kroma" +colors: + bg: "#FFFFFF" + fg: "#202124" + black: "#111111" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 103.1 + black: 105.4 + red: 74 + green: 48 + yellow: 17 + blue: 73.3 + magenta: 70.9 + cyan: 53.3 + white: 12.9 + brightBlack: 78.8 + brightRed: 62.1 + brightGreen: 37.9 + brightYellow: 7.7 + brightBlue: 60.7 + brightMagenta: 55.4 + brightCyan: 45.7 + brightWhite: 12.9 diff --git a/themes/krone.yaml b/themes/krone.yaml new file mode 100644 index 00000000..3699dd85 --- /dev/null +++ b/themes/krone.yaml @@ -0,0 +1,49 @@ +name: "krone" +source: + marketplace_id: "Volskaya.irrelevant" + version: "0.0.2" + installs: 33 + author: "Volskaya" + repo: "https://github.com/volskaya/irrelevant" + url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#1C1C1C" + red: "#FF1652" + green: "#946BFB" + yellow: "#FAEF6B" + blue: "#878787" + magenta: "#979797" + cyan: "#A6A6A6" + white: "#444444" + brightBlack: "#666666" + brightRed: "#FAEF6B" + brightGreen: "#946BFB" + brightYellow: "#DDDDDD" + brightBlue: "#878787" + brightMagenta: "#979797" + brightCyan: "#A6A6A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 36.8 + green: 36.4 + yellow: 93.4 + blue: 36.6 + magenta: 44.6 + cyan: 52.5 + white: 8.3 + brightBlack: 21.5 + brightRed: 93.4 + brightGreen: 36.4 + brightYellow: 84.4 + brightBlue: 36.6 + brightMagenta: 44.6 + brightCyan: 52.5 + brightWhite: 106.3 diff --git a/themes/krow-t.yaml b/themes/krow-t.yaml new file mode 100644 index 00000000..1d4d73f0 --- /dev/null +++ b/themes/krow-t.yaml @@ -0,0 +1,49 @@ +name: "Krow-T" +source: + marketplace_id: "DavidosSantosFreitas.krow-t" + version: "0.0.3" + installs: 516 + author: "Davi dos Santos Freitas" + repo: "https://github.com/Nasalis/Krow-t-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DavidosSantosFreitas.krow-t" +colors: + bg: "#151515" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.7 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/kryptonite-theme.yaml b/themes/kryptonite-theme.yaml new file mode 100644 index 00000000..cb168535 --- /dev/null +++ b/themes/kryptonite-theme.yaml @@ -0,0 +1,49 @@ +name: "kryptonite-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#002811" + fg: "#D7A201" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#C99808" + blue: "#7BF5CD" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#B2B2B2" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FBFB69" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 153 + contrast: + fg: 54.1 + black: 0 + red: 25.1 + green: 51.4 + yellow: 48.3 + blue: 85 + magenta: 28.2 + cyan: 46 + white: 88.4 + brightBlack: 58.1 + brightRed: 37 + brightGreen: 62 + brightYellow: 98.2 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/ktrz-monokai.yaml b/themes/ktrz-monokai.yaml new file mode 100644 index 00000000..4f98f767 --- /dev/null +++ b/themes/ktrz-monokai.yaml @@ -0,0 +1,49 @@ +name: "ktrz-monokai" +source: + marketplace_id: "ixkaito.ktrz-monokai" + version: "0.1.7" + installs: 11063 + author: "Kite" + repo: "https://github.com/ixkaito/ktrz-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=ixkaito.ktrz-monokai" +colors: + bg: "#26292C" + fg: "#F8F8F8" + black: "#1E2123" + red: "#D2304B" + green: "#A6E22E" + yellow: "#E6DB74" + blue: "#AE81FF" + magenta: "#F92672" + cyan: "#66D9EF" + white: "#F8F8F8" + brightBlack: "#5C6166" + brightRed: "#D2304B" + brightGreen: "#A6E22E" + brightYellow: "#E6DB74" + brightBlue: "#AE81FF" + brightMagenta: "#F92672" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F8" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 99.7 + black: 0 + red: 25.5 + green: 74.4 + yellow: 79.5 + blue: 44 + magenta: 34.7 + cyan: 70.8 + white: 99.7 + brightBlack: 17.1 + brightRed: 25.5 + brightGreen: 74.4 + brightYellow: 79.5 + brightBlue: 44 + brightMagenta: 34.7 + brightCyan: 70.8 + brightWhite: 99.7 diff --git a/themes/kubesong.yaml b/themes/kubesong.yaml new file mode 100644 index 00000000..cf08ce92 --- /dev/null +++ b/themes/kubesong.yaml @@ -0,0 +1,49 @@ +name: "Kubesong" +source: + marketplace_id: "Kubes.kubesong" + version: "1.0.13" + installs: 1082 + author: "Kubes" + repo: "https://github.com/helgelol/kubesong-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Kubes.kubesong" +colors: + bg: "#252C34" + fg: "#EBD1B7" + black: "#443E37" + red: "#BA0E2E" + green: "#95CC5E" + yellow: "#DB784D" + blue: "#60A365" + magenta: "#DB784D" + cyan: "#95CC5E" + white: "#F1DECB" + brightBlack: "#6E645A" + brightRed: "#F03E5F" + brightGreen: "#C8E5AB" + brightYellow: "#ECB8A2" + brightBlue: "#A1C8A4" + brightMagenta: "#ECB8A2" + brightCyan: "#C8E5AB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 252 + contrast: + fg: 77.1 + black: 0 + red: 17.4 + green: 62.5 + yellow: 40.3 + blue: 40.7 + magenta: 40.3 + cyan: 62.5 + white: 84.4 + brightBlack: 18.8 + brightRed: 33.7 + brightGreen: 81.1 + brightYellow: 66.5 + brightBlue: 63.5 + brightMagenta: 66.5 + brightCyan: 81.1 + brightWhite: 103.8 diff --git a/themes/kultist-v2.yaml b/themes/kultist-v2.yaml new file mode 100644 index 00000000..e522664c --- /dev/null +++ b/themes/kultist-v2.yaml @@ -0,0 +1,49 @@ +name: "Kultist v2" +source: + marketplace_id: "codekult.kultist-color-theme" + version: "1.1.0" + installs: 312 + author: "codekult" + repo: "https://github.com/codekult/kultist-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=codekult.kultist-color-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#8A3632" + green: "#939354" + yellow: "#BA9B5F" + blue: "#5E7E80" + magenta: "#936C7E" + cyan: "#7B967C" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#B45B51" + brightGreen: "#B4B56B" + brightYellow: "#DDBE77" + brightBlue: "#90A19A" + brightMagenta: "#B58F99" + brightCyan: "#9FB896" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 15.3 + green: 42.4 + yellow: 50.5 + blue: 31.2 + magenta: 30.6 + cyan: 42.1 + white: 107.9 + brightBlack: 23 + brightRed: 30.1 + brightGreen: 60 + brightYellow: 69.5 + brightBlue: 49.3 + brightMagenta: 47.1 + brightCyan: 60 + brightWhite: 107.9 diff --git a/themes/kurdish-vibrant-theme.yaml b/themes/kurdish-vibrant-theme.yaml new file mode 100644 index 00000000..bf81089b --- /dev/null +++ b/themes/kurdish-vibrant-theme.yaml @@ -0,0 +1,49 @@ +name: "Kurdish Vibrant Theme" +source: + marketplace_id: "miladkermanji8639.kurdish-theme" + version: "1.1.0" + installs: 29 + author: "miladkermanji8639" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=miladkermanji8639.kurdish-theme" +colors: + bg: "#1A1122" + fg: "#FFFFFF" + black: "#1A1122" + red: "#FF5555" + green: "#55FF55" + yellow: "#FFFF55" + blue: "#5555FF" + magenta: "#FF55FF" + cyan: "#55FFFF" + white: "#BBBBBB" + brightBlack: "#1A1122" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#BBBBBB" +meta: + mode: "dark" + accent: "pink" + hue: 308 + contrast: + fg: 107 + black: 0 + red: 43.6 + green: 87.3 + yellow: 102.3 + blue: 26.5 + magenta: 51 + cyan: 92.5 + white: 64.9 + brightBlack: 0 + brightRed: 43.6 + brightGreen: 87.3 + brightYellow: 102.3 + brightBlue: 26.5 + brightMagenta: 51 + brightCyan: 92.5 + brightWhite: 64.9 diff --git a/themes/kurdor-light.yaml b/themes/kurdor-light.yaml new file mode 100644 index 00000000..ade94b9f --- /dev/null +++ b/themes/kurdor-light.yaml @@ -0,0 +1,49 @@ +name: "kurdor-light" +source: + marketplace_id: "rashidfarhad.kurdor" + version: "1.4.1" + installs: 27 + author: "KurdorTheme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=rashidfarhad.kurdor" +colors: + bg: "#F8F9FA" + fg: "#5C6166" + black: "#000000" + red: "#F06B6C" + green: "#6CBF43" + yellow: "#E7A100" + blue: "#21A1E2" + magenta: "#A176CB" + cyan: "#4ABC96" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#EBA400" + brightBlue: "#22A4E6" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 77.5 + black: 102.4 + red: 52.2 + green: 41.2 + yellow: 39.5 + blue: 51 + magenta: 58.9 + cyan: 42.4 + white: 26.4 + brightBlack: 74.2 + brightRed: 50.7 + brightGreen: 44.8 + brightYellow: 37.8 + brightBlue: 49.6 + brightMagenta: 57.5 + brightCyan: 41 + brightWhite: 20.8 diff --git a/themes/kuro-theme-color-theme.yaml b/themes/kuro-theme-color-theme.yaml new file mode 100644 index 00000000..60a3b527 --- /dev/null +++ b/themes/kuro-theme-color-theme.yaml @@ -0,0 +1,49 @@ +name: "kuro_theme-color-theme" +source: + marketplace_id: "kuroanh.kuro-theme" + version: "1.3.2" + installs: 343 + author: "kuro_anh" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kuroanh.kuro-theme" +colors: + bg: "#181A1F" + fg: "#BBBBBB" + black: "#181A1F" + red: "#C13838" + green: "#18B576" + yellow: "#C9A022" + blue: "#2196F3" + magenta: "#CC71BC" + cyan: "#24B5A8" + white: "#BBBBBB" + brightBlack: "#2196F3" + brightRed: "#C13838" + brightGreen: "#18B576" + brightYellow: "#C9A022" + brightBlue: "#2196F3" + brightMagenta: "#CC71BC" + brightCyan: "#24B5A8" + brightWhite: "#BBBBBB" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 64.4 + black: 0 + red: 24.7 + green: 49.5 + yellow: 52.5 + blue: 42.7 + magenta: 42.1 + cyan: 51.2 + white: 64.4 + brightBlack: 42.7 + brightRed: 24.7 + brightGreen: 49.5 + brightYellow: 52.5 + brightBlue: 42.7 + brightMagenta: 42.1 + brightCyan: 51.2 + brightWhite: 64.4 diff --git a/themes/kuro.yaml b/themes/kuro.yaml new file mode 100644 index 00000000..a75fc3c6 --- /dev/null +++ b/themes/kuro.yaml @@ -0,0 +1,49 @@ +name: "Kuro" +source: + marketplace_id: "TehMatcha.morfonica-theme" + version: "1.0.3" + installs: 41 + author: "TehMatcha" + repo: "https://github.com/MatchaTi/cool-morfonica-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.morfonica-theme" +colors: + bg: "#282C34" + fg: "#F1F5F9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 96.7 + black: 0 + red: 23.5 + green: 49.8 + yellow: 82.4 + blue: 24.2 + magenta: 26.6 + cyan: 44.4 + white: 86.8 + brightBlack: 18.8 + brightRed: 35.4 + brightGreen: 60.3 + brightYellow: 92.4 + brightBlue: 36.8 + brightMagenta: 42.2 + brightCyan: 52.2 + brightWhite: 86.8 diff --git a/themes/kuroir-dark-01-crimson.yaml b/themes/kuroir-dark-01-crimson.yaml new file mode 100644 index 00000000..21bda1b5 --- /dev/null +++ b/themes/kuroir-dark-01-crimson.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 01 Crimson" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#232020" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.3 + black: 16.7 + red: 45.6 + green: 45.3 + yellow: 45.5 + blue: 45.3 + magenta: 45.1 + cyan: 59.7 + white: 46.2 + brightBlack: 23.8 + brightRed: 58.2 + brightGreen: 57.9 + brightYellow: 58.1 + brightBlue: 58 + brightMagenta: 71.9 + brightCyan: 68.2 + brightWhite: 80.4 diff --git a/themes/kuroir-dark-02-vermilion.yaml b/themes/kuroir-dark-02-vermilion.yaml new file mode 100644 index 00000000..a60abe65 --- /dev/null +++ b/themes/kuroir-dark-02-vermilion.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 02 Vermilion" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#232120" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.2 + black: 16.6 + red: 45.5 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.6 + white: 46.1 + brightBlack: 23.7 + brightRed: 58.1 + brightGreen: 57.8 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/kuroir-dark-04-goldenrod.yaml b/themes/kuroir-dark-04-goldenrod.yaml new file mode 100644 index 00000000..062e8ee3 --- /dev/null +++ b/themes/kuroir-dark-04-goldenrod.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 04 Goldenrod" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#23211F" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.2 + black: 16.6 + red: 45.5 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.6 + white: 46.2 + brightBlack: 23.7 + brightRed: 58.1 + brightGreen: 57.8 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/kuroir-dark-05-citrine.yaml b/themes/kuroir-dark-05-citrine.yaml new file mode 100644 index 00000000..5a574bb1 --- /dev/null +++ b/themes/kuroir-dark-05-citrine.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 05 Citrine" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#232220" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.1 + black: 16.5 + red: 45.4 + green: 45.1 + yellow: 45.3 + blue: 45.1 + magenta: 44.9 + cyan: 59.4 + white: 46 + brightBlack: 23.6 + brightRed: 58 + brightGreen: 57.6 + brightYellow: 57.9 + brightBlue: 57.8 + brightMagenta: 71.7 + brightCyan: 68 + brightWhite: 80.2 diff --git a/themes/kuroir-dark-06-chartreuse.yaml b/themes/kuroir-dark-06-chartreuse.yaml new file mode 100644 index 00000000..badf6d1f --- /dev/null +++ b/themes/kuroir-dark-06-chartreuse.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 06 Chartreuse" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#22221F" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.1 + black: 16.5 + red: 45.4 + green: 45.1 + yellow: 45.3 + blue: 45.1 + magenta: 44.9 + cyan: 59.5 + white: 46.1 + brightBlack: 23.6 + brightRed: 58.1 + brightGreen: 57.7 + brightYellow: 57.9 + brightBlue: 57.8 + brightMagenta: 71.7 + brightCyan: 68 + brightWhite: 80.2 diff --git a/themes/kuroir-dark-07-fern.yaml b/themes/kuroir-dark-07-fern.yaml new file mode 100644 index 00000000..aa16966c --- /dev/null +++ b/themes/kuroir-dark-07-fern.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 07 Fern" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#212220" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.1 + black: 16.5 + red: 45.4 + green: 45.1 + yellow: 45.3 + blue: 45.2 + magenta: 44.9 + cyan: 59.5 + white: 46.1 + brightBlack: 23.6 + brightRed: 58.1 + brightGreen: 57.7 + brightYellow: 58 + brightBlue: 57.8 + brightMagenta: 71.7 + brightCyan: 68.1 + brightWhite: 80.2 diff --git a/themes/kuroir-dark-08-emerald.yaml b/themes/kuroir-dark-08-emerald.yaml new file mode 100644 index 00000000..aa735d1b --- /dev/null +++ b/themes/kuroir-dark-08-emerald.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 08 Emerald" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#202220" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.2 + black: 16.6 + red: 45.4 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.5 + white: 46.1 + brightBlack: 23.7 + brightRed: 58.1 + brightGreen: 57.7 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/kuroir-dark-09-jade.yaml b/themes/kuroir-dark-09-jade.yaml new file mode 100644 index 00000000..23ebf54c --- /dev/null +++ b/themes/kuroir-dark-09-jade.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 09 Jade" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#202221" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.1 + black: 16.6 + red: 45.4 + green: 45.1 + yellow: 45.4 + blue: 45.2 + magenta: 44.9 + cyan: 59.5 + white: 46.1 + brightBlack: 23.6 + brightRed: 58.1 + brightGreen: 57.7 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.7 + brightCyan: 68.1 + brightWhite: 80.2 diff --git a/themes/kuroir-dark-13-turquoise.yaml b/themes/kuroir-dark-13-turquoise.yaml new file mode 100644 index 00000000..91cbcceb --- /dev/null +++ b/themes/kuroir-dark-13-turquoise.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 13 Turquoise" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#202222" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.1 + black: 16.6 + red: 45.4 + green: 45.1 + yellow: 45.3 + blue: 45.2 + magenta: 44.9 + cyan: 59.5 + white: 46.1 + brightBlack: 23.6 + brightRed: 58.1 + brightGreen: 57.7 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.7 + brightCyan: 68.1 + brightWhite: 80.2 diff --git a/themes/kuroir-dark-17-sapphire.yaml b/themes/kuroir-dark-17-sapphire.yaml new file mode 100644 index 00000000..205e1d77 --- /dev/null +++ b/themes/kuroir-dark-17-sapphire.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 17 Sapphire" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#202122" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.2 + black: 16.7 + red: 45.5 + green: 45.2 + yellow: 45.5 + blue: 45.3 + magenta: 45 + cyan: 59.6 + white: 46.2 + brightBlack: 23.7 + brightRed: 58.2 + brightGreen: 57.8 + brightYellow: 58.1 + brightBlue: 58 + brightMagenta: 71.8 + brightCyan: 68.2 + brightWhite: 80.3 diff --git a/themes/kuroir-dark-18-indigo.yaml b/themes/kuroir-dark-18-indigo.yaml new file mode 100644 index 00000000..616864f8 --- /dev/null +++ b/themes/kuroir-dark-18-indigo.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 18 Indigo" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#212022" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.3 + black: 16.7 + red: 45.6 + green: 45.3 + yellow: 45.5 + blue: 45.4 + magenta: 45.1 + cyan: 59.7 + white: 46.3 + brightBlack: 23.8 + brightRed: 58.3 + brightGreen: 57.9 + brightYellow: 58.2 + brightBlue: 58 + brightMagenta: 71.9 + brightCyan: 68.2 + brightWhite: 80.4 diff --git a/themes/kuroir-dark-19-violet.yaml b/themes/kuroir-dark-19-violet.yaml new file mode 100644 index 00000000..a707fdcb --- /dev/null +++ b/themes/kuroir-dark-19-violet.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 19 Violet" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#212122" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.2 + black: 16.6 + red: 45.5 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.6 + white: 46.2 + brightBlack: 23.7 + brightRed: 58.2 + brightGreen: 57.8 + brightYellow: 58.1 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/kuroir-dark-20-amethyst.yaml b/themes/kuroir-dark-20-amethyst.yaml new file mode 100644 index 00000000..d26dd3df --- /dev/null +++ b/themes/kuroir-dark-20-amethyst.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 20 Amethyst" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#222122" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.2 + black: 16.6 + red: 45.5 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.6 + white: 46.2 + brightBlack: 23.7 + brightRed: 58.1 + brightGreen: 57.8 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/kuroir-dark-21-magenta.yaml b/themes/kuroir-dark-21-magenta.yaml new file mode 100644 index 00000000..8b69cdc1 --- /dev/null +++ b/themes/kuroir-dark-21-magenta.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 21 Magenta" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#222022" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.3 + black: 16.7 + red: 45.6 + green: 45.3 + yellow: 45.5 + blue: 45.3 + magenta: 45.1 + cyan: 59.7 + white: 46.3 + brightBlack: 23.8 + brightRed: 58.2 + brightGreen: 57.9 + brightYellow: 58.1 + brightBlue: 58 + brightMagenta: 71.9 + brightCyan: 68.2 + brightWhite: 80.4 diff --git a/themes/kuroir-dark-22-fuchsia.yaml b/themes/kuroir-dark-22-fuchsia.yaml new file mode 100644 index 00000000..649f263f --- /dev/null +++ b/themes/kuroir-dark-22-fuchsia.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 22 Fuchsia" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#222121" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.2 + black: 16.6 + red: 45.5 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.6 + white: 46.2 + brightBlack: 23.7 + brightRed: 58.1 + brightGreen: 57.8 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/kuroir-dark-23-rose.yaml b/themes/kuroir-dark-23-rose.yaml new file mode 100644 index 00000000..954ef43e --- /dev/null +++ b/themes/kuroir-dark-23-rose.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 23 Rose" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#232021" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.3 + black: 16.7 + red: 45.6 + green: 45.3 + yellow: 45.5 + blue: 45.3 + magenta: 45.1 + cyan: 59.6 + white: 46.2 + brightBlack: 23.8 + brightRed: 58.2 + brightGreen: 57.8 + brightYellow: 58.1 + brightBlue: 58 + brightMagenta: 71.9 + brightCyan: 68.2 + brightWhite: 80.4 diff --git a/themes/kuroir-dark-24-coral.yaml b/themes/kuroir-dark-24-coral.yaml new file mode 100644 index 00000000..6eb5f9dd --- /dev/null +++ b/themes/kuroir-dark-24-coral.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Dark 24 Coral" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#222120" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.2 + black: 16.6 + red: 45.5 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.6 + white: 46.2 + brightBlack: 23.7 + brightRed: 58.2 + brightGreen: 57.8 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/kuroir-light-02-vermilion.yaml b/themes/kuroir-light-02-vermilion.yaml new file mode 100644 index 00000000..8238d712 --- /dev/null +++ b/themes/kuroir-light-02-vermilion.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Light 02 Vermilion" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#FFFDFC" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 105.1 + black: 100.5 + red: 73.8 + green: 84.3 + yellow: 97 + blue: 74 + magenta: 73.3 + cyan: 72.8 + white: 70.6 + brightBlack: 80.8 + brightRed: 84.2 + brightGreen: 73.6 + brightYellow: 91.1 + brightBlue: 59.7 + brightMagenta: 58.3 + brightCyan: 62.4 + brightWhite: 56.2 diff --git a/themes/kuroir-light-04-goldenrod.yaml b/themes/kuroir-light-04-goldenrod.yaml new file mode 100644 index 00000000..eae472c4 --- /dev/null +++ b/themes/kuroir-light-04-goldenrod.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Light 04 Goldenrod" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#FEFDFC" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 104.9 + black: 100.4 + red: 73.7 + green: 84.1 + yellow: 96.9 + blue: 73.8 + magenta: 73.2 + cyan: 72.7 + white: 70.5 + brightBlack: 80.7 + brightRed: 84.1 + brightGreen: 73.5 + brightYellow: 90.9 + brightBlue: 59.6 + brightMagenta: 58.2 + brightCyan: 62.2 + brightWhite: 56.1 diff --git a/themes/kuroir-light-07-fern.yaml b/themes/kuroir-light-07-fern.yaml new file mode 100644 index 00000000..3a6ae8a3 --- /dev/null +++ b/themes/kuroir-light-07-fern.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Light 07 Fern" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#FDFEFC" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 105.2 + black: 100.7 + red: 74 + green: 84.4 + yellow: 97.2 + blue: 74.1 + magenta: 73.5 + cyan: 73 + white: 70.8 + brightBlack: 81 + brightRed: 84.4 + brightGreen: 73.8 + brightYellow: 91.2 + brightBlue: 59.9 + brightMagenta: 58.5 + brightCyan: 62.5 + brightWhite: 56.4 diff --git a/themes/kuroir-light-09-jade.yaml b/themes/kuroir-light-09-jade.yaml new file mode 100644 index 00000000..af755e02 --- /dev/null +++ b/themes/kuroir-light-09-jade.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Light 09 Jade" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#FDFEFD" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 105.3 + black: 100.7 + red: 74 + green: 84.5 + yellow: 97.2 + blue: 74.2 + magenta: 73.5 + cyan: 73 + white: 70.8 + brightBlack: 81 + brightRed: 84.5 + brightGreen: 73.8 + brightYellow: 91.3 + brightBlue: 59.9 + brightMagenta: 58.5 + brightCyan: 62.6 + brightWhite: 56.4 diff --git a/themes/kuroir-light-13-turquoise.yaml b/themes/kuroir-light-13-turquoise.yaml new file mode 100644 index 00000000..b00805d7 --- /dev/null +++ b/themes/kuroir-light-13-turquoise.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Light 13 Turquoise" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#FDFEFE" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 105.3 + black: 100.8 + red: 74 + green: 84.5 + yellow: 97.2 + blue: 74.2 + magenta: 73.6 + cyan: 73.1 + white: 70.9 + brightBlack: 81.1 + brightRed: 84.5 + brightGreen: 73.9 + brightYellow: 91.3 + brightBlue: 60 + brightMagenta: 58.6 + brightCyan: 62.6 + brightWhite: 56.5 diff --git a/themes/kuroir-light-15-sky.yaml b/themes/kuroir-light-15-sky.yaml new file mode 100644 index 00000000..5177e85f --- /dev/null +++ b/themes/kuroir-light-15-sky.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Light 15 Sky" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#FDFDFF" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 104.9 + black: 100.4 + red: 73.7 + green: 84.1 + yellow: 96.9 + blue: 73.8 + magenta: 73.2 + cyan: 72.7 + white: 70.5 + brightBlack: 80.7 + brightRed: 84.1 + brightGreen: 73.5 + brightYellow: 90.9 + brightBlue: 59.6 + brightMagenta: 58.2 + brightCyan: 62.2 + brightWhite: 56.1 diff --git a/themes/kuroir-light-18-indigo.yaml b/themes/kuroir-light-18-indigo.yaml new file mode 100644 index 00000000..d6c38706 --- /dev/null +++ b/themes/kuroir-light-18-indigo.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Light 18 Indigo" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#FDFDFE" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 104.9 + black: 100.3 + red: 73.6 + green: 84.1 + yellow: 96.8 + blue: 73.8 + magenta: 73.2 + cyan: 72.6 + white: 70.4 + brightBlack: 80.6 + brightRed: 84.1 + brightGreen: 73.4 + brightYellow: 90.9 + brightBlue: 59.6 + brightMagenta: 58.2 + brightCyan: 62.2 + brightWhite: 56 diff --git a/themes/kuroir-light-19-violet.yaml b/themes/kuroir-light-19-violet.yaml new file mode 100644 index 00000000..c8f4aec1 --- /dev/null +++ b/themes/kuroir-light-19-violet.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Light 19 Violet" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#FEFDFF" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 105.1 + black: 100.5 + red: 73.8 + green: 84.3 + yellow: 97 + blue: 74 + magenta: 73.3 + cyan: 72.8 + white: 70.6 + brightBlack: 80.8 + brightRed: 84.2 + brightGreen: 73.6 + brightYellow: 91.1 + brightBlue: 59.7 + brightMagenta: 58.3 + brightCyan: 62.4 + brightWhite: 56.2 diff --git a/themes/kuroir-light-23-rose.yaml b/themes/kuroir-light-23-rose.yaml new file mode 100644 index 00000000..c38c2020 --- /dev/null +++ b/themes/kuroir-light-23-rose.yaml @@ -0,0 +1,49 @@ +name: "Kuroir Light 23 Rose" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 367 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" +colors: + bg: "#FFFDFD" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 105.1 + black: 100.5 + red: 73.8 + green: 84.3 + yellow: 97 + blue: 74 + magenta: 73.4 + cyan: 72.8 + white: 70.7 + brightBlack: 80.8 + brightRed: 84.3 + brightGreen: 73.7 + brightYellow: 91.1 + brightBlue: 59.8 + brightMagenta: 58.4 + brightCyan: 62.4 + brightWhite: 56.2 diff --git a/themes/kyanite.yaml b/themes/kyanite.yaml new file mode 100644 index 00000000..0e459991 --- /dev/null +++ b/themes/kyanite.yaml @@ -0,0 +1,49 @@ +name: "Kyanite" +source: + marketplace_id: "NyctibiusVII.descomplica-theme" + version: "1.4.18" + installs: 387 + author: "NyctibiusVII" + repo: "https://github.com/Descomplica-ADS/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.descomplica-theme" +colors: + bg: "#071321" + fg: "#737EA1" + black: "#414141" + red: "#C93838" + green: "#01AB6A" + yellow: "#D3C554" + blue: "#0C5CB4" + magenta: "#BC3FBC" + cyan: "#41CCEA" + white: "#DEDEDE" + brightBlack: "#666666" + brightRed: "#FF5555" + brightGreen: "#00E88F" + brightYellow: "#F0E484" + brightBlue: "#238BFF" + brightMagenta: "#D670D6" + brightCyan: "#8BE9FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 253 + contrast: + fg: 33.6 + black: 8.1 + red: 27 + green: 45.3 + yellow: 69.7 + blue: 19.4 + magenta: 30.1 + cyan: 66 + white: 86 + brightBlack: 22.4 + brightRed: 43.7 + brightGreen: 75.2 + brightYellow: 88.2 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 84.3 + brightWhite: 107.2 diff --git a/themes/kybern.yaml b/themes/kybern.yaml new file mode 100644 index 00000000..ffa60f81 --- /dev/null +++ b/themes/kybern.yaml @@ -0,0 +1,49 @@ +name: "Kybern" +source: + marketplace_id: "EnzoMourany.kybern" + version: "0.1.0" + installs: 89 + author: "Enzo Mourany" + repo: "https://github.com/enzo-mourany/kybern-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=EnzoMourany.kybern" +colors: + bg: "#0B0E14" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 107.6 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/kybik-dark.yaml b/themes/kybik-dark.yaml new file mode 100644 index 00000000..4281c216 --- /dev/null +++ b/themes/kybik-dark.yaml @@ -0,0 +1,49 @@ +name: "Kybik dark" +source: + marketplace_id: "Kybik.kybik" + version: "1.0.0" + installs: 49 + author: "Kybik" + repo: "https://github.com/Kybikcube/Kybik" + url: "https://marketplace.visualstudio.com/items?itemName=Kybik.kybik" +colors: + bg: "#14151B" + fg: "#A9A9A9" + black: "#000000" + red: "#8A1F1F" + green: "#0A8858" + yellow: "#B6B60B" + blue: "#195699" + magenta: "#8A2E8A" + cyan: "#0E8BA9" + white: "#FBFBFB" + brightBlack: "#4D4D4D" + brightRed: "#6F1414" + brightGreen: "#189965" + brightYellow: "#ADAD31" + brightBlue: "#3274BE" + brightMagenta: "#944F94" + brightCyan: "#2396B2" + brightWhite: "#BABABA" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 54.8 + black: 0 + red: 11.6 + green: 30.2 + yellow: 58.9 + blue: 15.8 + magenta: 16.3 + cyan: 34.2 + white: 104.4 + brightBlack: 12.2 + brightRed: 0 + brightGreen: 37.4 + brightYellow: 54.3 + brightBlue: 27.9 + brightMagenta: 23.7 + brightCyan: 39.2 + brightWhite: 64.3 diff --git a/themes/kybik.yaml b/themes/kybik.yaml new file mode 100644 index 00000000..f337f3f3 --- /dev/null +++ b/themes/kybik.yaml @@ -0,0 +1,49 @@ +name: "Kybik" +source: + marketplace_id: "Kybik.kybik" + version: "1.0.0" + installs: 49 + author: "Kybik" + repo: "https://github.com/Kybikcube/Kybik" + url: "https://marketplace.visualstudio.com/items?itemName=Kybik.kybik" +colors: + bg: "#1C1E26" + fg: "#A9A9A9" + black: "#000000" + red: "#8A1F1F" + green: "#0A8858" + yellow: "#B6B60B" + blue: "#195699" + magenta: "#8A2E8A" + cyan: "#0E8BA9" + white: "#FBFBFB" + brightBlack: "#4D4D4D" + brightRed: "#6F1414" + brightGreen: "#189965" + brightYellow: "#ADAD31" + brightBlue: "#3274BE" + brightMagenta: "#944F94" + brightCyan: "#2396B2" + brightWhite: "#BABABA" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 53.8 + black: 0 + red: 10.6 + green: 29.2 + yellow: 57.9 + blue: 14.8 + magenta: 15.3 + cyan: 33.2 + white: 103.4 + brightBlack: 11.2 + brightRed: 0 + brightGreen: 36.4 + brightYellow: 53.2 + brightBlue: 26.9 + brightMagenta: 22.6 + brightCyan: 38.1 + brightWhite: 63.3 diff --git a/themes/kyngo-s-theme.yaml b/themes/kyngo-s-theme.yaml new file mode 100644 index 00000000..7078c781 --- /dev/null +++ b/themes/kyngo-s-theme.yaml @@ -0,0 +1,49 @@ +name: "Kyngo's Theme" +source: + marketplace_id: "kyngo.functional-dark" + version: "1.0.0" + installs: 0 + author: "Kyngo" + repo: "https://github.com/Kyngo/functional-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kyngo.functional-dark" +colors: + bg: "#23272E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 77.3 + black: 0 + red: 24.5 + green: 50.8 + yellow: 83.4 + blue: 25.2 + magenta: 27.5 + cyan: 45.3 + white: 87.8 + brightBlack: 19.8 + brightRed: 36.3 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.8 + brightMagenta: 43.2 + brightCyan: 53.2 + brightWhite: 87.8 diff --git a/themes/kyojuro-rengoku.yaml b/themes/kyojuro-rengoku.yaml new file mode 100644 index 00000000..23dd1368 --- /dev/null +++ b/themes/kyojuro-rengoku.yaml @@ -0,0 +1,49 @@ +name: "Kyojuro Rengoku" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 738 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#282A36" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#8BE9FD" + magenta: "#BD93F9" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#8BE9FD" + brightMagenta: "#BD93F9" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 278 + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 81 + magenta: 50.7 + cyan: 81 + white: 99 + brightBlack: 25.1 + brightRed: 40.4 + brightGreen: 81.9 + brightYellow: 95.6 + brightBlue: 81 + brightMagenta: 50.7 + brightCyan: 81 + brightWhite: 99 diff --git a/themes/kyorazo-dark-theme.yaml b/themes/kyorazo-dark-theme.yaml new file mode 100644 index 00000000..a925fc25 --- /dev/null +++ b/themes/kyorazo-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "kyorazo_dark_theme" +source: + marketplace_id: "WilliamKyorazo.kyorazo-theme" + version: "1.0.2" + installs: 4874 + author: "William Kyorazo" + repo: "https://github.com/bywilliams/kyorazo_theme_vscode" + url: "https://marketplace.visualstudio.com/items?itemName=WilliamKyorazo.kyorazo-theme" +colors: + bg: "#1C1C1D" + fg: "#FFFFFF" + black: "#1B2430" + red: "#CD3131" + green: "#0DBC79" + yellow: "#B5B4D5" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFA500" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 26.1 + green: 52.4 + yellow: 61.8 + blue: 26.8 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 63.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/lackluster-dark.yaml b/themes/lackluster-dark.yaml new file mode 100644 index 00000000..3c5c4d41 --- /dev/null +++ b/themes/lackluster-dark.yaml @@ -0,0 +1,49 @@ +name: "Lackluster Dark" +source: + marketplace_id: "CoderSauce.lackluster-theme" + version: "1.0.0" + installs: 217 + author: "CoderSauce" + repo: "https://github.com/slugbyte/lackluster.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=CoderSauce.lackluster-theme" +colors: + bg: "#191919" + fg: "#7A7A7A" + black: "#000000" + red: "#D70000" + green: "#789978" + yellow: "#ABAB77" + blue: "#7788AA" + magenta: "#708090" + cyan: "#DEEEED" + white: "#CCCCCC" + brightBlack: "#444444" + brightRed: "#D70000" + brightGreen: "#789978" + brightYellow: "#ABAB77" + brightBlue: "#7788AA" + brightMagenta: "#708090" + brightCyan: "#DEEEED" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 30.7 + black: 0 + red: 26.5 + green: 41.7 + yellow: 53.9 + blue: 37.2 + magenta: 32.7 + cyan: 93.4 + white: 74.4 + brightBlack: 8.6 + brightRed: 26.5 + brightGreen: 41.7 + brightYellow: 53.9 + brightBlue: 37.2 + brightMagenta: 32.7 + brightCyan: 93.4 + brightWhite: 84.8 diff --git a/themes/lackluster-night.yaml b/themes/lackluster-night.yaml new file mode 100644 index 00000000..22d1adf9 --- /dev/null +++ b/themes/lackluster-night.yaml @@ -0,0 +1,49 @@ +name: "Lackluster Night" +source: + marketplace_id: "CoderSauce.lackluster-theme" + version: "1.0.0" + installs: 217 + author: "CoderSauce" + repo: "https://github.com/slugbyte/lackluster.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=CoderSauce.lackluster-theme" +colors: + bg: "#191919" + fg: "#CCCCCC" + black: "#000000" + red: "#D70000" + green: "#789978" + yellow: "#ABAB77" + blue: "#7788AA" + magenta: "#708090" + cyan: "#DEEEED" + white: "#CCCCCC" + brightBlack: "#444444" + brightRed: "#D70000" + brightGreen: "#789978" + brightYellow: "#ABAB77" + brightBlue: "#7788AA" + brightMagenta: "#708090" + brightCyan: "#DEEEED" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 74.4 + black: 0 + red: 26.5 + green: 41.7 + yellow: 53.9 + blue: 37.2 + magenta: 32.7 + cyan: 93.4 + white: 74.4 + brightBlack: 8.6 + brightRed: 26.5 + brightGreen: 41.7 + brightYellow: 53.9 + brightBlue: 37.2 + brightMagenta: 32.7 + brightCyan: 93.4 + brightWhite: 84.8 diff --git a/themes/ladyluck-color-theme.yaml b/themes/ladyluck-color-theme.yaml new file mode 100644 index 00000000..42a5f108 --- /dev/null +++ b/themes/ladyluck-color-theme.yaml @@ -0,0 +1,49 @@ +name: "LadyLuck-Color-Theme" +source: + marketplace_id: "ILadyLuckI.ladyluck-color-theme" + version: "0.1.1" + installs: 236 + author: "ILadyLuckI" + repo: "https://github.com/ILadyLuckI/ladyluck-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ILadyLuckI.ladyluck-color-theme" +colors: + bg: "#1D0A1D" + fg: "#F5F5F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 327 + contrast: + fg: 100.7 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.2 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 39 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/lanten-color-theme-dark.yaml b/themes/lanten-color-theme-dark.yaml new file mode 100644 index 00000000..731fdef6 --- /dev/null +++ b/themes/lanten-color-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "lanten-color-theme-dark" +source: + marketplace_id: "lanten.lanten-color-theme" + version: "0.8.0" + installs: 1214 + author: "lanten" + repo: "https://github.com/lanten/vscode-lanten-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lanten.lanten-color-theme" +colors: + bg: "#232933" + fg: "#D8DEE9" + black: "#313948" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#CC85F0" + magenta: "#B48EAD" + cyan: "#587C9D" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#CC85F0" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "magenta" + hue: 261 + contrast: + fg: 82.8 + black: 0 + red: 30.4 + green: 59.1 + yellow: 73.8 + blue: 48.4 + magenta: 43.9 + cyan: 27.7 + white: 89.8 + brightBlack: 12.8 + brightRed: 30.4 + brightGreen: 59.1 + brightYellow: 73.8 + brightBlue: 48.4 + brightMagenta: 43.9 + brightCyan: 58 + brightWhite: 93.7 diff --git a/themes/lapis-ruby-dark-stealth-version.yaml b/themes/lapis-ruby-dark-stealth-version.yaml new file mode 100644 index 00000000..6c53b423 --- /dev/null +++ b/themes/lapis-ruby-dark-stealth-version.yaml @@ -0,0 +1,49 @@ +name: "Lapis Ruby Dark (stealth version)" +source: + marketplace_id: "AlexBarnett.lapis-vscode" + version: "1.8.3" + installs: 5587 + author: "Alex Barnett" + repo: "https://github.com/aslbarnett/lapis-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AlexBarnett.lapis-vscode" +colors: + bg: "#15181E" + fg: "#D6E2FF" + black: "#2D3953" + red: "#FC83AB" + green: "#ABFC83" + yellow: "#FCD483" + blue: "#83ABFC" + magenta: "#D483FC" + cyan: "#83FCD4" + white: "#D6E2FF" + brightBlack: "#43547A" + brightRed: "#FC9CBC" + brightGreen: "#BCFC9C" + brightYellow: "#FCDC9C" + brightBlue: "#9CBCFC" + brightMagenta: "#DC9CFC" + brightCyan: "#9CFCDC" + brightWhite: "#D6E2FF" +meta: + mode: "dark" + accent: "magenta" + hue: 264 + contrast: + fg: 87.9 + black: 0 + red: 55.2 + green: 91.4 + yellow: 82.6 + blue: 56.1 + magenta: 52.4 + cyan: 90.8 + white: 87.9 + brightBlack: 14.8 + brightRed: 63.3 + brightGreen: 93.5 + brightYellow: 86.6 + brightBlue: 65.1 + brightMagenta: 61.2 + brightCyan: 92.9 + brightWhite: 87.9 diff --git a/themes/lapis-ruby-light.yaml b/themes/lapis-ruby-light.yaml new file mode 100644 index 00000000..cc65f2ee --- /dev/null +++ b/themes/lapis-ruby-light.yaml @@ -0,0 +1,49 @@ +name: "Lapis Ruby Light" +source: + marketplace_id: "AlexBarnett.lapis-vscode" + version: "1.8.3" + installs: 5587 + author: "Alex Barnett" + repo: "https://github.com/aslbarnett/lapis-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AlexBarnett.lapis-vscode" +colors: + bg: "#F5F8FF" + fg: "#2D3953" + black: "#7B8FB7" + red: "#CC3366" + green: "#52A329" + yellow: "#CC9933" + blue: "#3366CC" + magenta: "#9933CC" + cyan: "#29A37A" + white: "#2D3953" + brightBlack: "#9FADC6" + brightRed: "#D14775" + brightGreen: "#5CB72E" + brightYellow: "#D1A347" + brightBlue: "#4775D1" + brightMagenta: "#A347D1" + brightCyan: "#2EB789" + brightWhite: "#2D3953" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 92.2 + black: 55.6 + red: 68.7 + green: 54.2 + yellow: 45.8 + blue: 72 + magenta: 73.1 + cyan: 54.2 + white: 92.2 + brightBlack: 40.4 + brightRed: 64.7 + brightGreen: 45.2 + brightYellow: 41.4 + brightBlue: 66.2 + brightMagenta: 68.3 + brightCyan: 45.2 + brightWhite: 92.2 diff --git a/themes/lapis-stealth-version.yaml b/themes/lapis-stealth-version.yaml new file mode 100644 index 00000000..b530f204 --- /dev/null +++ b/themes/lapis-stealth-version.yaml @@ -0,0 +1,49 @@ +name: "Lapis (stealth version)" +source: + marketplace_id: "AlexBarnett.lapis-vscode" + version: "1.8.3" + installs: 5587 + author: "Alex Barnett" + repo: "https://github.com/aslbarnett/lapis-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AlexBarnett.lapis-vscode" +colors: + bg: "#1B1F27" + fg: "#D6E2FF" + black: "#2D3953" + red: "#FC83AB" + green: "#ABFC83" + yellow: "#FCD483" + blue: "#83ABFC" + magenta: "#D483FC" + cyan: "#83FCD4" + white: "#D6E2FF" + brightBlack: "#43547A" + brightRed: "#FC9CBC" + brightGreen: "#BCFC9C" + brightYellow: "#FCDC9C" + brightBlue: "#9CBCFC" + brightMagenta: "#DC9CFC" + brightCyan: "#9CFCDC" + brightWhite: "#D6E2FF" +meta: + mode: "dark" + accent: "magenta" + hue: 264 + contrast: + fg: 87.1 + black: 0 + red: 54.4 + green: 90.5 + yellow: 81.7 + blue: 55.2 + magenta: 51.5 + cyan: 90 + white: 87.1 + brightBlack: 14 + brightRed: 62.5 + brightGreen: 92.7 + brightYellow: 85.8 + brightBlue: 64.2 + brightMagenta: 60.4 + brightCyan: 92 + brightWhite: 87.1 diff --git a/themes/laracasts-contrast.yaml b/themes/laracasts-contrast.yaml new file mode 100644 index 00000000..ddf3f224 --- /dev/null +++ b/themes/laracasts-contrast.yaml @@ -0,0 +1,49 @@ +name: "laracasts-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#292D33" + fg: "#C0CCDB" + black: "#343941" + red: "#BA0E2E" + green: "#00B1B3" + yellow: "#EF6733" + blue: "#FFFFFF" + magenta: "#00B1B3" + cyan: "#EF6733" + white: "#D0D9E4" + brightBlack: "#565F6C" + brightRed: "#F03E5F" + brightGreen: "#1AFCFF" + brightYellow: "#F6AD92" + brightBlue: "#FFFFFF" + brightMagenta: "#1AFCFF" + brightCyan: "#F6AD92" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 258 + contrast: + fg: 70.5 + black: 0 + red: 17.1 + green: 46.7 + yellow: 39.5 + blue: 103.5 + magenta: 46.7 + cyan: 39.5 + white: 78.5 + brightBlack: 15.4 + brightRed: 33.4 + brightGreen: 86.3 + brightYellow: 63.3 + brightBlue: 103.5 + brightMagenta: 86.3 + brightCyan: 63.3 + brightWhite: 103.5 diff --git a/themes/laracasts-light.yaml b/themes/laracasts-light.yaml new file mode 100644 index 00000000..2df13835 --- /dev/null +++ b/themes/laracasts-light.yaml @@ -0,0 +1,49 @@ +name: "laracasts-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#4D545D" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#00B1B3" + yellow: "#EF6733" + blue: "#4D545D" + magenta: "#00B1B3" + cyan: "#EF6733" + white: "#59616B" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#1AFCFF" + brightYellow: "#F6AD92" + brightBlue: "#7D8793" + brightMagenta: "#1AFCFF" + brightCyan: "#F6AD92" + brightWhite: "#7D8793" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 86.6 + black: 0 + red: 80.3 + green: 50.8 + yellow: 57.9 + blue: 86.6 + magenta: 50.8 + cyan: 57.9 + white: 81.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 13.2 + brightYellow: 34.9 + brightBlue: 64.1 + brightMagenta: 13.2 + brightCyan: 34.9 + brightWhite: 64.1 diff --git a/themes/laracasts.yaml b/themes/laracasts.yaml new file mode 100644 index 00000000..39a6f0aa --- /dev/null +++ b/themes/laracasts.yaml @@ -0,0 +1,49 @@ +name: "laracasts" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#4D545D" + fg: "#C0CCDB" + black: "#59616B" + red: "#BA0E2E" + green: "#00B1B3" + yellow: "#EF6733" + blue: "#FFFFFF" + magenta: "#00B1B3" + cyan: "#EF6733" + white: "#D0D9E4" + brightBlack: "#7D8793" + brightRed: "#F03E5F" + brightGreen: "#1AFCFF" + brightYellow: "#F6AD92" + brightBlue: "#FFFFFF" + brightMagenta: "#1AFCFF" + brightCyan: "#F6AD92" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 255 + contrast: + fg: 58.4 + black: 0 + red: 0 + green: 34.6 + yellow: 27.4 + blue: 91.4 + magenta: 34.6 + cyan: 27.4 + white: 66.4 + brightBlack: 21.1 + brightRed: 21.3 + brightGreen: 74.2 + brightYellow: 51.2 + brightBlue: 91.4 + brightMagenta: 74.2 + brightCyan: 51.2 + brightWhite: 91.4 diff --git a/themes/laradocs.yaml b/themes/laradocs.yaml new file mode 100644 index 00000000..21cf35f8 --- /dev/null +++ b/themes/laradocs.yaml @@ -0,0 +1,49 @@ +name: "LaraDocs" +source: + marketplace_id: "ogoudmane.laradocs-vscode" + version: "0.0.1" + installs: 249 + author: "Goudmane Oualid" + repo: "https://github.com/goudmane/LaraDocs" + url: "https://marketplace.visualstudio.com/items?itemName=ogoudmane.laradocs-vscode" +colors: + bg: "#252A37" + fg: "#A2AABC" + black: "#2F3B54" + red: "#EF6B73" + green: "#BAE67E" + yellow: "#FFCC66" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#BAE67E" + brightYellow: "#FFCC66" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 52.2 + black: 0 + red: 42 + green: 79.1 + yellow: 76.4 + blue: 65 + magenta: 58.5 + cyan: 65 + white: 52.2 + brightBlack: 8.3 + brightRed: 42 + brightGreen: 79.1 + brightYellow: 76.4 + brightBlue: 65 + brightMagenta: 58.5 + brightCyan: 65 + brightWhite: 52.2 diff --git a/themes/laravel-contrast.yaml b/themes/laravel-contrast.yaml new file mode 100644 index 00000000..a5396901 --- /dev/null +++ b/themes/laravel-contrast.yaml @@ -0,0 +1,49 @@ +name: "laravel-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#FFC48C" + yellow: "#FC6B0A" + blue: "#FC580C" + magenta: "#FFA927" + cyan: "#FFC48C" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#FFF8F2" + brightYellow: "#FDA86F" + brightBlue: "#FD9D71" + brightMagenta: "#FFD28D" + brightCyan: "#FFF8F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 21.5 + green: 77.8 + yellow: 47.4 + blue: 43.6 + magenta: 66.2 + cyan: 77.8 + white: 107.9 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 104 + brightYellow: 66.3 + brightBlue: 62.6 + brightMagenta: 83.5 + brightCyan: 104 + brightWhite: 107.9 diff --git a/themes/laravel-light.yaml b/themes/laravel-light.yaml new file mode 100644 index 00000000..d92a2f1a --- /dev/null +++ b/themes/laravel-light.yaml @@ -0,0 +1,49 @@ +name: "laravel-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#FFC48C" + yellow: "#FC6B0A" + blue: "#FC580C" + magenta: "#FFA927" + cyan: "#FFC48C" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FFF8F2" + brightYellow: "#FDA86F" + brightBlue: "#FD9D71" + brightMagenta: "#FFD28D" + brightCyan: "#FFF8F2" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 25.3 + yellow: 54.4 + blue: 58.1 + magenta: 36.3 + cyan: 25.3 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 0 + brightYellow: 36.2 + brightBlue: 39.7 + brightMagenta: 19.9 + brightCyan: 0 + brightWhite: 71.1 diff --git a/themes/laravel.yaml b/themes/laravel.yaml new file mode 100644 index 00000000..9d513633 --- /dev/null +++ b/themes/laravel.yaml @@ -0,0 +1,49 @@ +name: "Laravel" +source: + marketplace_id: "nsouto.laravel" + version: "0.1.5" + installs: 21813 + author: "Nuno Souto" + repo: "https://github.com/nsouto/vsce-laravel-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nsouto.laravel" +colors: + bg: "#EEEEEE" + fg: "#000000" + black: "#333333" + red: "#DA564A" + green: "#2E7D32" + yellow: "#EEBB6E" + blue: "#0077AA" + magenta: "#E5C499" + cyan: "#4EA1DF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#DA564A" + brightGreen: "#399C3E" + brightYellow: "#FFB670" + brightBlue: "#0077AA" + brightMagenta: "#AA7900" + brightCyan: "#4EA1DF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.9 + black: 88.6 + red: 55.3 + green: 64.9 + yellow: 21.9 + blue: 63.7 + magenta: 18.8 + cyan: 43.6 + white: 8.9 + brightBlack: 88.6 + brightRed: 55.3 + brightGreen: 52.1 + brightYellow: 20.9 + brightBlue: 63.7 + brightMagenta: 55.7 + brightCyan: 43.6 + brightWhite: 8.9 diff --git a/themes/laserkai.yaml b/themes/laserkai.yaml new file mode 100644 index 00000000..042cd426 --- /dev/null +++ b/themes/laserkai.yaml @@ -0,0 +1,49 @@ +name: "LaserKai" +source: + marketplace_id: "itsmelion.laserkai" + version: "1.4.3" + installs: 1936 + author: "Christhopher Lion" + repo: "https://github.com/itsmelion/laserwave" + url: "https://marketplace.visualstudio.com/items?itemName=itsmelion.laserkai" +colors: + bg: "#222228" + fg: "#F7F1FF" + black: "#39353C" + red: "#EB64B9" + green: "#36E085" + yellow: "#FFE261" + blue: "#FD971F" + magenta: "#AE81FF" + cyan: "#66D9EF" + white: "#F7F1FF" + brightBlack: "#6E6670" + brightRed: "#EB64B9" + brightGreen: "#36E085" + brightYellow: "#FFE261" + brightBlue: "#FD971F" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 97.7 + black: 0 + red: 43.6 + green: 69.6 + yellow: 87.2 + blue: 57.2 + magenta: 45 + cyan: 71.9 + white: 97.7 + brightBlack: 21.6 + brightRed: 43.6 + brightGreen: 69.6 + brightYellow: 87.2 + brightBlue: 57.2 + brightMagenta: 45 + brightCyan: 71.9 + brightWhite: 97.7 diff --git a/themes/late-night.yaml b/themes/late-night.yaml new file mode 100644 index 00000000..282efaf0 --- /dev/null +++ b/themes/late-night.yaml @@ -0,0 +1,49 @@ +name: "Late Night" +source: + marketplace_id: "ozgurgunes.vscode-late-night-theme" + version: "0.3.0" + installs: 1878 + author: "Özgür Güneş" + repo: "https://github.com/ozgurgunes/vscode-late-night-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ozgurgunes.vscode-late-night-theme" +colors: + bg: "#1E1E1E" + fg: "#D5D5D5" + black: "#141414" + red: "#E57878" + green: "#78D578" + yellow: "#F5CB63" + blue: "#5997E5" + magenta: "#E578D5" + cyan: "#78D5E5" + white: "#EDEDED" + brightBlack: "#222222" + brightRed: "#F1B6B6" + brightGreen: "#B6E9B6" + brightYellow: "#F9E3AB" + brightBlue: "#A6C7F1" + brightMagenta: "#F1B6E9" + brightCyan: "#B6E9F1" + brightWhite: "#F8F8F8" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.3 + black: 0 + red: 45.3 + green: 67.2 + yellow: 76.3 + blue: 43.4 + magenta: 49.2 + cyan: 71.2 + white: 94.3 + brightBlack: 0 + brightRed: 69.5 + brightGreen: 83.6 + brightYellow: 88.9 + brightBlue: 69.2 + brightMagenta: 71.8 + brightCyan: 86.1 + brightWhite: 101.4 diff --git a/themes/lauds.yaml b/themes/lauds.yaml new file mode 100644 index 00000000..6916bda1 --- /dev/null +++ b/themes/lauds.yaml @@ -0,0 +1,49 @@ +name: "Lauds" +source: + marketplace_id: "rivethorn.compline" + version: "1.0.1" + installs: 547 + author: "Rivethorn" + repo: "https://github.com/jblais493/compline" + url: "https://marketplace.visualstudio.com/items?itemName=rivethorn.compline" +colors: + bg: "#F0EFEB" + fg: "#1A1D21" + black: "#5F5C58" + red: "#8B6666" + green: "#5A6B5A" + yellow: "#8B7E52" + blue: "#5A6B7A" + magenta: "#8B7E52" + cyan: "#64757D" + white: "#7D7A75" + brightBlack: "#9B9894" + brightRed: "#8B6666" + brightGreen: "#5A6B5A" + brightYellow: "#8B7E52" + brightBlue: "#5A6B7A" + brightMagenta: "#8B7E52" + brightCyan: "#64757D" + brightWhite: "#2D2A27" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 94.3 + black: 73.3 + red: 65.1 + green: 69 + yellow: 58 + blue: 67.9 + magenta: 58 + cyan: 63.7 + white: 60 + brightBlack: 45.4 + brightRed: 65.1 + brightGreen: 69 + brightYellow: 58 + brightBlue: 67.9 + brightMagenta: 58 + brightCyan: 63.7 + brightWhite: 91.5 diff --git a/themes/lavalink.yaml b/themes/lavalink.yaml new file mode 100644 index 00000000..a5a091bb --- /dev/null +++ b/themes/lavalink.yaml @@ -0,0 +1,49 @@ +name: "Lavalink" +source: + marketplace_id: "iwinsiju.lavalink-color-theme" + version: "1.1.1" + installs: 115 + author: "iwin siju" + repo: "https://github.com/XOUT1/Lavalink-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=iwinsiju.lavalink-color-theme" +colors: + bg: "#03161D" + fg: "#EAEAEA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 224 + contrast: + fg: 93.4 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 30 + cyan: 47.8 + white: 90.2 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/lavanda.yaml b/themes/lavanda.yaml new file mode 100644 index 00000000..f72f00a3 --- /dev/null +++ b/themes/lavanda.yaml @@ -0,0 +1,49 @@ +name: "Lavanda" +source: + marketplace_id: "TheodorLundin.lavanda-color-theme" + version: "1.1.0" + installs: 137 + author: "Theodor Lundin" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TheodorLundin.lavanda-color-theme" +colors: + bg: "#191C2A" + fg: "#AAAAAA" + black: "#000000" + red: "#DB5355" + green: "#7EEF8C" + yellow: "#FEF376" + blue: "#5599FF" + magenta: "#D90E80" + cyan: "#07C1D8" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FE6D6F" + brightGreen: "#B7FFC0" + brightYellow: "#FFFABF" + brightBlue: "#66A3FF" + brightMagenta: "#E64CA2" + brightCyan: "#0DE4FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 54.6 + black: 0 + red: 34.4 + green: 81 + yellow: 96 + blue: 45.9 + magenta: 28.6 + cyan: 58.3 + white: 89.3 + brightBlack: 21.4 + brightRed: 47.7 + brightGreen: 95.1 + brightYellow: 101.2 + brightBlue: 50.6 + brightMagenta: 38 + brightCyan: 76.9 + brightWhite: 89.3 diff --git a/themes/lavender-contrast.yaml b/themes/lavender-contrast.yaml new file mode 100644 index 00000000..c81a068d --- /dev/null +++ b/themes/lavender-contrast.yaml @@ -0,0 +1,49 @@ +name: "lavender-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#080709" + fg: "#E0CEED" + black: "#151217" + red: "#BA0E2E" + green: "#A29DFA" + yellow: "#B657FF" + blue: "#F5B0EF" + magenta: "#8E6DA6" + cyan: "#8E69C9" + white: "#ECE1F4" + brightBlack: "#3B3442" + brightRed: "#F03E5F" + brightGreen: "#FEFEFF" + brightYellow: "#E2BDFF" + brightBlue: "#FFFFFF" + brightMagenta: "#BFACCD" + brightCyan: "#C7B4E4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 80.7 + black: 0 + red: 21.4 + green: 54.7 + yellow: 38.5 + blue: 72.4 + magenta: 31.9 + cyan: 32.9 + white: 90.8 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 107.2 + brightYellow: 75.1 + brightBlue: 107.8 + brightMagenta: 61.1 + brightCyan: 66.4 + brightWhite: 107.8 diff --git a/themes/lavender-dark-theme.yaml b/themes/lavender-dark-theme.yaml new file mode 100644 index 00000000..9c867952 --- /dev/null +++ b/themes/lavender-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Lavender Dark Theme" +source: + marketplace_id: "LavenderTheme.lavender-code-theme" + version: "1.0.1" + installs: 1591 + author: "Ademir Silva" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LavenderTheme.lavender-code-theme" +colors: + bg: "#221B28" + fg: "#D4D4D4" + black: "#454545" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 309 + contrast: + fg: 78.7 + black: 8.4 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.8 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/lavender-light-theme.yaml b/themes/lavender-light-theme.yaml new file mode 100644 index 00000000..731fbae2 --- /dev/null +++ b/themes/lavender-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Lavender Light theme" +source: + marketplace_id: "LavenderTheme.lavender-code-theme" + version: "1.0.1" + installs: 1591 + author: "Ademir Silva" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LavenderTheme.lavender-code-theme" +colors: + bg: "#F9F7FB" + fg: "#6B6B6B" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 72.2 + black: 101.7 + red: 69.6 + green: 44.9 + yellow: 53.6 + blue: 81.7 + magenta: 70.2 + cyan: 56.2 + white: 81.6 + brightBlack: 74.4 + brightRed: 69.6 + brightGreen: 36.6 + brightYellow: 36.6 + brightBlue: 81.7 + brightMagenta: 70.2 + brightCyan: 56.2 + brightWhite: 44.1 diff --git a/themes/lavender-light.yaml b/themes/lavender-light.yaml new file mode 100644 index 00000000..543cc048 --- /dev/null +++ b/themes/lavender-light.yaml @@ -0,0 +1,49 @@ +name: "lavender-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#29222E" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#A29DFA" + yellow: "#B657FF" + blue: "#F5B0EF" + magenta: "#8E6DA6" + cyan: "#8E69C9" + white: "#362D3D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FEFEFF" + brightYellow: "#E2BDFF" + brightBlue: "#FFFFFF" + brightMagenta: "#BFACCD" + brightCyan: "#C7B4E4" + brightWhite: "#5D4D69" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 102.3 + black: 0 + red: 80.3 + green: 47.2 + yellow: 63.1 + blue: 30.3 + magenta: 69.6 + cyan: 68.7 + white: 99.4 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 0 + brightYellow: 27.7 + brightBlue: 0 + brightMagenta: 41.1 + brightCyan: 36.1 + brightWhite: 86.7 diff --git a/themes/lavender.yaml b/themes/lavender.yaml new file mode 100644 index 00000000..9e74d01d --- /dev/null +++ b/themes/lavender.yaml @@ -0,0 +1,49 @@ +name: "lavender" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#29222E" + fg: "#E0CEED" + black: "#362D3D" + red: "#BA0E2E" + green: "#A29DFA" + yellow: "#B657FF" + blue: "#F5B0EF" + magenta: "#8E6DA6" + cyan: "#8E69C9" + white: "#ECE1F4" + brightBlack: "#5D4D69" + brightRed: "#F03E5F" + brightGreen: "#FEFEFF" + brightYellow: "#E2BDFF" + brightBlue: "#FFFFFF" + brightMagenta: "#BFACCD" + brightCyan: "#C7B4E4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 311 + contrast: + fg: 77.9 + black: 0 + red: 18.6 + green: 51.9 + yellow: 35.7 + blue: 69.6 + magenta: 29.2 + cyan: 30.1 + white: 88.1 + brightBlack: 12.5 + brightRed: 34.9 + brightGreen: 104.4 + brightYellow: 72.3 + brightBlue: 105 + brightMagenta: 58.3 + brightCyan: 63.6 + brightWhite: 105 diff --git a/themes/lazuli.yaml b/themes/lazuli.yaml new file mode 100644 index 00000000..75c658f0 --- /dev/null +++ b/themes/lazuli.yaml @@ -0,0 +1,49 @@ +name: "Lazuli" +source: + marketplace_id: "IanGaunt.lazuli" + version: "1.0.1" + installs: 253 + author: "Ian Gaunt" + repo: "https://github.com/i9nn/lazuli" + url: "https://marketplace.visualstudio.com/items?itemName=IanGaunt.lazuli" +colors: + bg: "#1D252C" + fg: "#6B8598" + black: "#000000" + red: "#D95F74" + green: "#5FD99A" + yellow: "#D9C05F" + blue: "#5F83D9" + magenta: "#B35FD9" + cyan: "#5FB7D9" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#E58192" + brightGreen: "#5FD9A0" + brightYellow: "#E5DA81" + brightBlue: "#81A8E5" + brightMagenta: "#E581DF" + brightCyan: "#81CEE5" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: 245 + contrast: + fg: 32.8 + black: 0 + red: 36 + green: 67.7 + yellow: 66.5 + blue: 34.9 + magenta: 34 + cyan: 54.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 47.6 + brightGreen: 67.9 + brightYellow: 80 + brightBlue: 51.6 + brightMagenta: 51.2 + brightCyan: 67.6 + brightWhite: 88.3 diff --git a/themes/lazy-yellow-lemon.yaml b/themes/lazy-yellow-lemon.yaml new file mode 100644 index 00000000..dac11212 --- /dev/null +++ b/themes/lazy-yellow-lemon.yaml @@ -0,0 +1,49 @@ +name: "lazy yellow lemon" +source: + marketplace_id: "arnorhs.lazy-yellow-lemon" + version: "0.0.2" + installs: 1250 + author: "Arnor Heidar Sigurdsson" + repo: "https://github.com/arnorhs/lazy-yellow-lemon" + url: "https://marketplace.visualstudio.com/items?itemName=arnorhs.lazy-yellow-lemon" +colors: + bg: "#FFFCD2" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 103 + black: 103 + red: 71 + green: 46.2 + yellow: 54.9 + blue: 83 + magenta: 71.5 + cyan: 57.6 + white: 82.9 + brightBlack: 75.7 + brightRed: 71 + brightGreen: 37.9 + brightYellow: 37.9 + brightBlue: 83 + brightMagenta: 71.5 + brightCyan: 57.6 + brightWhite: 45.4 diff --git a/themes/lazygreed-theme.yaml b/themes/lazygreed-theme.yaml new file mode 100644 index 00000000..964306f5 --- /dev/null +++ b/themes/lazygreed-theme.yaml @@ -0,0 +1,49 @@ +name: "lazygreed-theme" +source: + marketplace_id: "LazyGreed.lazygreed-theme" + version: "0.0.9" + installs: 18 + author: "LazyGreed" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LazyGreed.lazygreed-theme" +colors: + bg: "#191921" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#18D88F" + yellow: "#F3F307" + blue: "#2472C8" + magenta: "#E42AE4" + cyan: "#02CCFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 106.6 + black: 0 + red: 26.4 + green: 66.7 + yellow: 93.9 + blue: 27.1 + magenta: 38.1 + cyan: 65.9 + white: 106.6 + brightBlack: 21.7 + brightRed: 38.3 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/lazzaretti-plenatech.yaml b/themes/lazzaretti-plenatech.yaml new file mode 100644 index 00000000..7f826094 --- /dev/null +++ b/themes/lazzaretti-plenatech.yaml @@ -0,0 +1,49 @@ +name: "Lazzaretti Plenatech 💟" +source: + marketplace_id: "IgorLazzaretti.lazzaretti-s-vscode-themes" + version: "0.0.2" + installs: 37 + author: "Igor Lazzaretti" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=IgorLazzaretti.lazzaretti-s-vscode-themes" +colors: + bg: "#000000" + fg: "#B390FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 52.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/lazzaretti-win11.yaml b/themes/lazzaretti-win11.yaml new file mode 100644 index 00000000..f8dc1bbe --- /dev/null +++ b/themes/lazzaretti-win11.yaml @@ -0,0 +1,49 @@ +name: "Lazzaretti Win11 🪟" +source: + marketplace_id: "IgorLazzaretti.lazzaretti-s-vscode-themes" + version: "0.0.2" + installs: 37 + author: "Igor Lazzaretti" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=IgorLazzaretti.lazzaretti-s-vscode-themes" +colors: + bg: "#13141D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 79.7 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 30 + cyan: 47.8 + white: 90.2 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/lbb-builder-dark.yaml b/themes/lbb-builder-dark.yaml new file mode 100644 index 00000000..b9ff08e9 --- /dev/null +++ b/themes/lbb-builder-dark.yaml @@ -0,0 +1,49 @@ +name: "LBB Builder Dark" +source: + marketplace_id: "LifeBusinessBuilders.lbb-vsc-theme" + version: "1.1.4" + installs: 12 + author: "LifeBusiness Builders" + repo: "https://github.com/LifeBusinessBuilders/lbb-vsc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LifeBusinessBuilders.lbb-vsc-theme" +colors: + bg: "#1E1E2E" + fg: "#D9E0EE" + black: "#1A1A28" + red: "#F38BA8" + green: "#ABE9B3" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#CBA6F7" + cyan: "#89DCEB" + white: "#D9E0EE" + brightBlack: "#6E6A86" + brightRed: "#D7263D" + brightGreen: "#ABE9B3" + brightYellow: "#FFB86C" + brightBlue: "#96CDFB" + brightMagenta: "#F5C2E7" + brightCyan: "#74C7EC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 284 + contrast: + fg: 85.6 + black: 0 + red: 54.7 + green: 82.3 + yellow: 88.4 + blue: 59.1 + magenta: 60.8 + cyan: 75.6 + white: 85.6 + brightBlack: 24.1 + brightRed: 27.1 + brightGreen: 82.3 + brightYellow: 70.4 + brightBlue: 70.7 + brightMagenta: 76.7 + brightCyan: 64.7 + brightWhite: 105.8 diff --git a/themes/lbb-builder-light.yaml b/themes/lbb-builder-light.yaml new file mode 100644 index 00000000..7bc35564 --- /dev/null +++ b/themes/lbb-builder-light.yaml @@ -0,0 +1,49 @@ +name: "LBB Builder Light" +source: + marketplace_id: "LifeBusinessBuilders.lbb-vsc-theme" + version: "1.1.4" + installs: 12 + author: "LifeBusiness Builders" + repo: "https://github.com/LifeBusinessBuilders/lbb-vsc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LifeBusinessBuilders.lbb-vsc-theme" +colors: + bg: "#F7F8FC" + fg: "#2B2D33" + black: "#111827" + red: "#B91C1C" + green: "#047857" + yellow: "#B26B00" + blue: "#2563EB" + magenta: "#7C3AED" + cyan: "#0EA5E9" + white: "#4B5563" + brightBlack: "#6B7280" + brightRed: "#D7263D" + brightGreen: "#059669" + brightYellow: "#F59E0B" + brightBlue: "#1D4ED8" + brightMagenta: "#A855F7" + brightCyan: "#0284C7" + brightWhite: "#111827" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 96.2 + black: 100.4 + red: 76.1 + green: 72.7 + yellow: 64.4 + blue: 70.7 + magenta: 73.3 + cyan: 48.7 + white: 82.1 + brightBlack: 69.4 + brightRed: 68.4 + brightGreen: 60.5 + brightYellow: 37.6 + brightBlue: 78 + brightMagenta: 62.1 + brightCyan: 63.3 + brightWhite: 100.4 diff --git a/themes/lc.yaml b/themes/lc.yaml new file mode 100644 index 00000000..78bb5622 --- /dev/null +++ b/themes/lc.yaml @@ -0,0 +1,49 @@ +name: "lc" +source: + marketplace_id: "gronk-droid.lowcontrast" + version: "0.2.4" + installs: 216 + author: "gronk-droid" + repo: "https://github.com/gronk-droid/lowcontrast" + url: "https://marketplace.visualstudio.com/items?itemName=gronk-droid.lowcontrast" +colors: + bg: "#2D2A2E" + fg: "#978C8C" + black: "#3F3A3F" + red: "#FC5C65" + green: "#C2E69F" + yellow: "#F7D794" + blue: "#7ED6DF" + magenta: "#F78FB4" + cyan: "#BAB7CB" + white: "#978C8C" + brightBlack: "#746B6F" + brightRed: "#FC5C65" + brightGreen: "#E0F3C8" + brightYellow: "#F7D794" + brightBlue: "#BEEAE8" + brightMagenta: "#F78FB4" + brightCyan: "#BAB7CB" + brightWhite: "#FDFFF1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 37.8 + black: 0 + red: 41.2 + green: 80.6 + yellow: 80.5 + blue: 69.5 + magenta: 55.1 + cyan: 60.7 + white: 37.8 + brightBlack: 22.2 + brightRed: 41.2 + brightGreen: 91.7 + brightYellow: 80.5 + brightBlue: 84.8 + brightMagenta: 55.1 + brightCyan: 60.7 + brightWhite: 102.9 diff --git a/themes/lcars.yaml b/themes/lcars.yaml new file mode 100644 index 00000000..bee061fc --- /dev/null +++ b/themes/lcars.yaml @@ -0,0 +1,49 @@ +name: "LCARS" +source: + marketplace_id: "hayzey.lcars-theme" + version: "0.1.2" + installs: 1949 + author: "hayzey" + repo: "https://github.com/hayzey/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=hayzey.lcars-theme" +colors: + bg: "#000000" + fg: "#F5F6FA" + black: "#111118" + red: "#FF5555" + green: "#33CC99" + yellow: "#FFAA90" + blue: "#7788FF" + magenta: "#CC88FF" + cyan: "#88CCFF" + white: "#F5F6FA" + brightBlack: "#333344" + brightRed: "#FF2200" + brightGreen: "#00AB72" + brightYellow: "#FFCC33" + brightBlue: "#4455FF" + brightMagenta: "#DB2698" + brightCyan: "#30A6FF" + brightWhite: "#CC88FF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 102 + black: 0 + red: 44.4 + green: 62.8 + yellow: 68.2 + blue: 43.9 + magenta: 53.9 + cyan: 71.5 + white: 102 + brightBlack: 0 + brightRed: 38.3 + brightGreen: 46.2 + brightYellow: 79.7 + brightBlue: 26.4 + brightMagenta: 32.7 + brightCyan: 51.4 + brightWhite: 53.9 diff --git a/themes/le-moderne.yaml b/themes/le-moderne.yaml new file mode 100644 index 00000000..9a48a4d3 --- /dev/null +++ b/themes/le-moderne.yaml @@ -0,0 +1,49 @@ +name: "Le moderne" +source: + marketplace_id: "edgaremy.le-moderne" + version: "1.0.2" + installs: 63 + author: "Edgar Remy" + repo: "https://github.com/edgaremy/lemoderne-theme" + url: "https://marketplace.visualstudio.com/items?itemName=edgaremy.le-moderne" +colors: + bg: "#1E1E1E" + fg: "#C4C4C4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 69.1 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/leaf-dark-soft.yaml b/themes/leaf-dark-soft.yaml new file mode 100644 index 00000000..b361973d --- /dev/null +++ b/themes/leaf-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Leaf Dark Soft" +source: + marketplace_id: "leafphp.leaf-theme" + version: "0.1.1" + installs: 2642 + author: "Leaf PHP" + repo: "https://github.com/mychidarko/vscode-theme-leaf" + url: "https://marketplace.visualstudio.com/items?itemName=leafphp.leaf-theme" +colors: + bg: "#002F3B" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 220 + contrast: + fg: 78.1 + black: 0 + red: 37.6 + green: 33.5 + yellow: 72.4 + blue: 38.2 + magenta: 40.7 + cyan: 46.1 + white: 78.1 + brightBlack: 26.4 + brightRed: 37.6 + brightGreen: 33.5 + brightYellow: 72.4 + brightBlue: 38.2 + brightMagenta: 40.7 + brightCyan: 46.1 + brightWhite: 103.7 diff --git a/themes/leaf-dark.yaml b/themes/leaf-dark.yaml new file mode 100644 index 00000000..69aeaf64 --- /dev/null +++ b/themes/leaf-dark.yaml @@ -0,0 +1,49 @@ +name: "Leaf Dark" +source: + marketplace_id: "leafphp.leaf-theme" + version: "0.1.1" + installs: 2642 + author: "Leaf PHP" + repo: "https://github.com/mychidarko/vscode-theme-leaf" + url: "https://marketplace.visualstudio.com/items?itemName=leafphp.leaf-theme" +colors: + bg: "#001318" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 215 + contrast: + fg: 81.7 + black: 0 + red: 41.2 + green: 37.1 + yellow: 76.1 + blue: 41.8 + magenta: 44.3 + cyan: 49.7 + white: 81.7 + brightBlack: 30 + brightRed: 41.2 + brightGreen: 37.1 + brightYellow: 76.1 + brightBlue: 41.8 + brightMagenta: 44.3 + brightCyan: 49.7 + brightWhite: 107.3 diff --git a/themes/lean-coders-dark.yaml b/themes/lean-coders-dark.yaml new file mode 100644 index 00000000..4ea45c23 --- /dev/null +++ b/themes/lean-coders-dark.yaml @@ -0,0 +1,49 @@ +name: "Lean-Coders Dark" +source: + marketplace_id: "JulianPufler.lean-coders-theme" + version: "0.0.2" + installs: 428 + author: "Julian Pufler" + repo: "https://github.com/puf17640/lean-coders-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JulianPufler.lean-coders-theme" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 78.7 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/learn-with-sumit-blue-velvet-theme.yaml b/themes/learn-with-sumit-blue-velvet-theme.yaml new file mode 100644 index 00000000..b2d7d9f1 --- /dev/null +++ b/themes/learn-with-sumit-blue-velvet-theme.yaml @@ -0,0 +1,49 @@ +name: "Learn with Sumit Blue Velvet Theme" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157486 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#40444C" + red: "#F81141" + green: "#23974A" + yellow: "#FD7E57" + blue: "#285BFF" + magenta: "#8C62FD" + cyan: "#3A8AB2" + white: "#CDD3E0" + brightBlack: "#8F9AAE" + brightRed: "#FC4A6D" + brightGreen: "#37BD58" + brightYellow: "#F6BE48" + brightBlue: "#199FFD" + brightMagenta: "#FC58F6" + brightCyan: "#50ACAE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 32.1 + green: 32.8 + yellow: 48.7 + blue: 22.6 + magenta: 30.8 + cyan: 31.8 + white: 75.5 + brightBlack: 43.2 + brightRed: 38.3 + brightGreen: 50.1 + brightYellow: 68.5 + brightBlue: 43.9 + brightMagenta: 46.9 + brightCyan: 45.9 + brightWhite: 103.7 diff --git a/themes/learn-with-sumit-official-theme.yaml b/themes/learn-with-sumit-official-theme.yaml new file mode 100644 index 00000000..22fa82a0 --- /dev/null +++ b/themes/learn-with-sumit-official-theme.yaml @@ -0,0 +1,49 @@ +name: "Learn with Sumit Official Theme" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157486 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" +colors: + bg: "#101E2C" + fg: "#BDD2E7" + black: "#000000" + red: "#FF7878" + green: "#AAE682" + yellow: "#FFDC96" + blue: "#00B1FF" + magenta: "#00D991" + cyan: "#00DCDC" + white: "#BDD2E7" + brightBlack: "#5F82A5" + brightRed: "#FF7878" + brightGreen: "#AAE682" + brightYellow: "#FFDC96" + brightBlue: "#00B1FF" + brightMagenta: "#00D991" + brightCyan: "#00DCDC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 249 + contrast: + fg: 76 + black: 0 + red: 50.7 + green: 79.7 + yellow: 86.3 + blue: 53.7 + magenta: 66.7 + cyan: 71 + white: 76 + brightBlack: 32.5 + brightRed: 50.7 + brightGreen: 79.7 + brightYellow: 86.3 + brightBlue: 53.7 + brightMagenta: 66.7 + brightCyan: 71 + brightWhite: 106.1 diff --git a/themes/learn-with-sumit-peace-of-the-eye-dracula-version.yaml b/themes/learn-with-sumit-peace-of-the-eye-dracula-version.yaml new file mode 100644 index 00000000..714d1f06 --- /dev/null +++ b/themes/learn-with-sumit-peace-of-the-eye-dracula-version.yaml @@ -0,0 +1,49 @@ +name: "Learn with Sumit - Peace of the eye - Dracula version" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157486 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" +colors: + bg: "#122033" + fg: "#FFFFFF" + black: "#122033" + red: "#E35535" + green: "#52AB62" + yellow: "#FFD866" + blue: "#00B3BD" + magenta: "#E991E3" + cyan: "#78E8C6" + white: "#FFFFFF" + brightBlack: "#00B3BD" + brightRed: "#E35535" + brightGreen: "#52AB62" + brightYellow: "#FFD866" + brightBlue: "#00B3BD" + brightMagenta: "#E991E3" + brightCyan: "#78E8C6" + brightWhite: "#00B3BD" +meta: + mode: "dark" + accent: "orange" + hue: 256 + contrast: + fg: 105.8 + black: 0 + red: 35.6 + green: 45.3 + yellow: 83.2 + blue: 50.3 + magenta: 57.4 + cyan: 78.6 + white: 105.8 + brightBlack: 50.3 + brightRed: 35.6 + brightGreen: 45.3 + brightYellow: 83.2 + brightBlue: 50.3 + brightMagenta: 57.4 + brightCyan: 78.6 + brightWhite: 50.3 diff --git a/themes/learn-with-sumit-professional-theme.yaml b/themes/learn-with-sumit-professional-theme.yaml new file mode 100644 index 00000000..7dc5a43b --- /dev/null +++ b/themes/learn-with-sumit-professional-theme.yaml @@ -0,0 +1,49 @@ +name: "Learn with Sumit - Professional Theme" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157486 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" +colors: + bg: "#1C1E2E" + fg: "#C8D3F5" + black: "#000000" + red: "#FF757F" + green: "#C3E88D" + yellow: "#FFC777" + blue: "#82AAFF" + magenta: "#FCA7EA" + cyan: "#86E1FC" + white: "#C8D3F5" + brightBlack: "#828BB8" + brightRed: "#FF757F" + brightGreen: "#C3E88D" + brightYellow: "#FFC777" + brightBlue: "#82AAFF" + brightMagenta: "#FCA7EA" + brightCyan: "#86E1FC" + brightWhite: "#C8D3F5" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 78.2 + black: 0 + red: 49.9 + green: 83.2 + yellow: 76.5 + blue: 54.9 + magenta: 68.3 + cyan: 78.8 + white: 78.2 + brightBlack: 39.2 + brightRed: 49.9 + brightGreen: 83.2 + brightYellow: 76.5 + brightBlue: 54.9 + brightMagenta: 68.3 + brightCyan: 78.8 + brightWhite: 78.2 diff --git a/themes/learn-with-sumit-simple-as-light.yaml b/themes/learn-with-sumit-simple-as-light.yaml new file mode 100644 index 00000000..40d43234 --- /dev/null +++ b/themes/learn-with-sumit-simple-as-light.yaml @@ -0,0 +1,49 @@ +name: "Learn with Sumit - Simple as light" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157486 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" +colors: + bg: "#FFFFFF" + fg: "#455059" + black: "#FFFFFF" + red: "#C13838" + green: "#37AE6F" + yellow: "#C9A022" + blue: "#3398DB" + magenta: "#CC71BC" + cyan: "#24B5A8" + white: "#455059" + brightBlack: "#3398DB" + brightRed: "#C13838" + brightGreen: "#37AE6F" + brightYellow: "#C9A022" + brightBlue: "#3398DB" + brightMagenta: "#CC71BC" + brightCyan: "#24B5A8" + brightWhite: "#3398DB" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 88.5 + black: 0 + red: 75.7 + green: 53.8 + yellow: 48.2 + blue: 58.3 + magenta: 58.3 + cyan: 49.4 + white: 88.5 + brightBlack: 58.3 + brightRed: 75.7 + brightGreen: 53.8 + brightYellow: 48.2 + brightBlue: 58.3 + brightMagenta: 58.3 + brightCyan: 49.4 + brightWhite: 58.3 diff --git a/themes/learn-with-sumit-theme.yaml b/themes/learn-with-sumit-theme.yaml new file mode 100644 index 00000000..5d7fb37d --- /dev/null +++ b/themes/learn-with-sumit-theme.yaml @@ -0,0 +1,49 @@ +name: "Learn with Sumit Theme" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157486 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" +colors: + bg: "#171C2A" + fg: "#FFFFFF" + black: "#171C2A" + red: "#E35535" + green: "#52AB62" + yellow: "#FFD866" + blue: "#00B3BD" + magenta: "#E991E3" + cyan: "#78E8C6" + white: "#FFFFFF" + brightBlack: "#00B3BD" + brightRed: "#E35535" + brightGreen: "#52AB62" + brightYellow: "#FFD866" + brightBlue: "#00B3BD" + brightMagenta: "#E991E3" + brightCyan: "#78E8C6" + brightWhite: "#00B3BD" +meta: + mode: "dark" + accent: "orange" + hue: 269 + contrast: + fg: 106.2 + black: 0 + red: 36 + green: 45.8 + yellow: 83.7 + blue: 50.8 + magenta: 57.9 + cyan: 79 + white: 106.2 + brightBlack: 50.8 + brightRed: 36 + brightGreen: 45.8 + brightYellow: 83.7 + brightBlue: 50.8 + brightMagenta: 57.9 + brightCyan: 79 + brightWhite: 50.8 diff --git a/themes/learn-with-sumit-vintage.yaml b/themes/learn-with-sumit-vintage.yaml new file mode 100644 index 00000000..6f748289 --- /dev/null +++ b/themes/learn-with-sumit-vintage.yaml @@ -0,0 +1,49 @@ +name: "Learn with Sumit - Vintage" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157486 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" +colors: + bg: "#23272E" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 57.2 + black: 0 + red: 34.5 + green: 58.1 + yellow: 46.4 + blue: 47.4 + magenta: 36.8 + cyan: 50.3 + white: 88.4 + brightBlack: 13.2 + brightRed: 43.9 + brightGreen: 74.6 + brightYellow: 59 + brightBlue: 61.5 + brightMagenta: 48 + brightCyan: 65.6 + brightWhite: 80.8 diff --git a/themes/leftish.yaml b/themes/leftish.yaml new file mode 100644 index 00000000..02bb2eb9 --- /dev/null +++ b/themes/leftish.yaml @@ -0,0 +1,49 @@ +name: "Leftish" +source: + marketplace_id: "unkai.leftish" + version: "0.1.2" + installs: 117 + author: "Philippa Markovics" + repo: "https://github.com/philippamarkovics/leftish" + url: "https://marketplace.visualstudio.com/items?itemName=unkai.leftish" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#000000" + red: "#C40233" + green: "#00A368" + yellow: "#E16B1A" + blue: "#0088BF" + magenta: "#9B73DE" + cyan: "#00B2B0" + white: "#CCCCCC" + brightBlack: "#949B9E" + brightRed: "#FF7777" + brightGreen: "#77CC99" + brightYellow: "#EAC100" + brightBlue: "#219DF0" + brightMagenta: "#D73CD7" + brightCyan: "#72DEC2" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 98.7 + black: 106 + red: 78.1 + green: 59.3 + yellow: 60 + blue: 66.5 + magenta: 63 + cyan: 50.6 + white: 27.3 + brightBlack: 54.2 + brightRed: 49.8 + brightGreen: 36.8 + brightYellow: 31.1 + brightBlue: 55.3 + brightMagenta: 64.3 + brightCyan: 27.6 + brightWhite: 0 diff --git a/themes/legacy-contrast.yaml b/themes/legacy-contrast.yaml new file mode 100644 index 00000000..2395da54 --- /dev/null +++ b/themes/legacy-contrast.yaml @@ -0,0 +1,49 @@ +name: "legacy-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#080A0C" + fg: "#AEC2E0" + black: "#12171B" + red: "#BA0E2E" + green: "#267FB5" + yellow: "#FFFFFF" + blue: "#FFB20D" + magenta: "#748AA6" + cyan: "#267FB5" + white: "#C0D0E7" + brightBlack: "#313D49" + brightRed: "#F03E5F" + brightGreen: "#63B0DE" + brightYellow: "#FFFFFF" + brightBlue: "#FFD273" + brightMagenta: "#B2BECE" + brightCyan: "#63B0DE" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 68.7 + black: 0 + red: 21.4 + green: 31.5 + yellow: 107.7 + blue: 69.3 + magenta: 38.5 + cyan: 31.5 + white: 77.1 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 55 + brightYellow: 107.7 + brightBlue: 82.9 + brightMagenta: 66.6 + brightCyan: 55 + brightWhite: 104.3 diff --git a/themes/legacy-light.yaml b/themes/legacy-light.yaml new file mode 100644 index 00000000..0c46c05d --- /dev/null +++ b/themes/legacy-light.yaml @@ -0,0 +1,49 @@ +name: "legacy-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#267FB5" + yellow: "#222222" + blue: "#FFB20D" + magenta: "#748AA6" + cyan: "#267FB5" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#63B0DE" + brightYellow: "#555555" + brightBlue: "#FFD273" + brightMagenta: "#B2BECE" + brightCyan: "#63B0DE" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 70 + yellow: 102.9 + blue: 33.2 + magenta: 63 + cyan: 70 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 46.9 + brightYellow: 85.9 + brightBlue: 20.4 + brightMagenta: 35.7 + brightCyan: 46.9 + brightWhite: 71.1 diff --git a/themes/legacy-solarized-dark-color-theme.yaml b/themes/legacy-solarized-dark-color-theme.yaml new file mode 100644 index 00000000..902474ce --- /dev/null +++ b/themes/legacy-solarized-dark-color-theme.yaml @@ -0,0 +1,49 @@ +name: "legacy-solarized-dark-color-theme" +source: + marketplace_id: "ryanolsonx.solarized" + version: "3.0.0" + installs: 183408 + author: "Ryan Olson" + repo: "https://github.com/ryanolsonx/vscode-solarized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ryanolsonx.solarized" +colors: + bg: "#002B36" + fg: "#839496" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#839496" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#859900" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#839496" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 39.5 + black: 0 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 39.5 + brightBlack: 21.5 + brightRed: 27.2 + brightGreen: 39.2 + brightYellow: 27.3 + brightBlue: 39.5 + brightMagenta: 28 + brightCyan: 46.4 + brightWhite: 39.5 diff --git a/themes/legacy-solarized-light-color-theme.yaml b/themes/legacy-solarized-light-color-theme.yaml new file mode 100644 index 00000000..a6b83aa8 --- /dev/null +++ b/themes/legacy-solarized-light-color-theme.yaml @@ -0,0 +1,49 @@ +name: "legacy-solarized-light-color-theme" +source: + marketplace_id: "ryanolsonx.solarized" + version: "3.0.0" + installs: 183408 + author: "Ryan Olson" + repo: "https://github.com/ryanolsonx/vscode-solarized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ryanolsonx.solarized" +colors: + bg: "#FDF6E3" + fg: "#657B83" + black: "#657B83" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#657B83" + brightRed: "#CB4B16" + brightGreen: "#859900" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#EEE8D5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 65.7 + black: 65.7 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 0 + brightBlack: 65.7 + brightRed: 65.8 + brightGreen: 53.8 + brightYellow: 65.7 + brightBlue: 53.5 + brightMagenta: 65 + brightCyan: 46.7 + brightWhite: 0 diff --git a/themes/legacy.yaml b/themes/legacy.yaml new file mode 100644 index 00000000..b3a133f8 --- /dev/null +++ b/themes/legacy.yaml @@ -0,0 +1,49 @@ +name: "legacy" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#212933" + fg: "#AEC2E0" + black: "#2B3542" + red: "#BA0E2E" + green: "#267FB5" + yellow: "#FFFFFF" + blue: "#FFB20D" + magenta: "#748AA6" + cyan: "#267FB5" + white: "#C0D0E7" + brightBlack: "#495B71" + brightRed: "#F03E5F" + brightGreen: "#63B0DE" + brightYellow: "#FFFFFF" + brightBlue: "#FFD273" + brightMagenta: "#B2BECE" + brightCyan: "#63B0DE" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "orange" + hue: 254 + contrast: + fg: 65.4 + black: 0 + red: 18 + green: 28.1 + yellow: 104.4 + blue: 65.9 + magenta: 35.2 + cyan: 28.1 + white: 73.7 + brightBlack: 14.4 + brightRed: 34.3 + brightGreen: 51.6 + brightYellow: 104.4 + brightBlue: 79.5 + brightMagenta: 63.2 + brightCyan: 51.6 + brightWhite: 100.9 diff --git a/themes/legendary-dark.yaml b/themes/legendary-dark.yaml new file mode 100644 index 00000000..37915881 --- /dev/null +++ b/themes/legendary-dark.yaml @@ -0,0 +1,49 @@ +name: "Legendary Dark" +source: + marketplace_id: "LlewellynPaintsil.legendary-light" + version: "1.0.0" + installs: 3076 + author: "Llewellyn Adonteng Paintsil" + repo: "https://github.com/Llewellyn500/legendary-light" + url: "https://marketplace.visualstudio.com/items?itemName=LlewellynPaintsil.legendary-light" +colors: + bg: "#F9F9F9" + fg: "#383B44" + black: "#D5D6DD" + red: "#D52753" + green: "#23974A" + yellow: "#DF631C" + blue: "#2196F3" + magenta: "#823FF1" + cyan: "#27618D" + white: "#2196F3" + brightBlack: "#E4E5ED" + brightRed: "#FF6480" + brightGreen: "#3CBC66" + brightYellow: "#C5A332" + brightBlue: "#2196F3" + brightMagenta: "#CE33C0" + brightCyan: "#6D93BB" + brightWhite: "#26272D" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 92.3 + black: 17.8 + red: 68.9 + green: 61 + yellow: 58.6 + blue: 54.1 + magenta: 72 + cyan: 78.8 + white: 54.1 + brightBlack: 9.1 + brightRed: 50.1 + brightGreen: 44.2 + brightYellow: 44 + brightBlue: 54.1 + brightMagenta: 65 + brightCyan: 55.7 + brightWhite: 98.2 diff --git a/themes/legends-theme-night-fymhr-special.yaml b/themes/legends-theme-night-fymhr-special.yaml new file mode 100644 index 00000000..e422aff4 --- /dev/null +++ b/themes/legends-theme-night-fymhr-special.yaml @@ -0,0 +1,49 @@ +name: "Legends Theme Night (FYMHR Special)" +source: + marketplace_id: "rameem2003.legends-theme" + version: "1.0.0" + installs: 93 + author: "Mahmood Hassan Rameem" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=rameem2003.legends-theme" +colors: + bg: "#03072F" + fg: "#12CC22" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 268 + contrast: + fg: 60 + black: 0 + red: 27.3 + green: 53.5 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.6 diff --git a/themes/legends-theme-night.yaml b/themes/legends-theme-night.yaml new file mode 100644 index 00000000..8d694f47 --- /dev/null +++ b/themes/legends-theme-night.yaml @@ -0,0 +1,49 @@ +name: "Legends Theme Night" +source: + marketplace_id: "rameem2003.legends-theme" + version: "1.0.0" + installs: 93 + author: "Mahmood Hassan Rameem" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=rameem2003.legends-theme" +colors: + bg: "#08152C" + fg: "#F7AE04" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 65.5 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/leios.yaml b/themes/leios.yaml new file mode 100644 index 00000000..ddc4f2d5 --- /dev/null +++ b/themes/leios.yaml @@ -0,0 +1,49 @@ +name: "Leios" +source: + marketplace_id: "JahtominiOgunderu.leios-theme" + version: "0.0.3" + installs: 247 + author: "jahtomini" + repo: "https://github.com/jahtomini/leios" + url: "https://marketplace.visualstudio.com/items?itemName=JahtominiOgunderu.leios-theme" +colors: + bg: "#22242A" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 271 + contrast: + fg: 57.6 + black: 0 + red: 40.3 + green: 60.5 + yellow: 68.8 + blue: 39.7 + magenta: 43.4 + cyan: 52.8 + white: 81.3 + brightBlack: 33.8 + brightRed: 36.7 + brightGreen: 60.5 + brightYellow: 68.8 + brightBlue: 39.7 + brightMagenta: 11 + brightCyan: 52.8 + brightWhite: 81.3 diff --git a/themes/lemon.yaml b/themes/lemon.yaml new file mode 100644 index 00000000..73c4befd --- /dev/null +++ b/themes/lemon.yaml @@ -0,0 +1,49 @@ +name: "Lemon" +source: + marketplace_id: "Inductor.lemon" + version: "0.0.1" + installs: 418 + author: "Aditya" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Inductor.lemon" +colors: + bg: "#1B1D2A" + fg: "#8E90A9" + black: "#666666" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#828282" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + contrast: + fg: 41.6 + black: 21.2 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 33.9 + brightRed: 37.8 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/lemonade.yaml b/themes/lemonade.yaml new file mode 100644 index 00000000..2a634b65 --- /dev/null +++ b/themes/lemonade.yaml @@ -0,0 +1,49 @@ +name: "Lemonade" +source: + marketplace_id: "Denner.lemonade-theme" + version: "0.0.1" + installs: 64 + author: "dennerrondinely" + repo: "https://github.com/dennerrondinely/lemonade" + url: "https://marketplace.visualstudio.com/items?itemName=Denner.lemonade-theme" +colors: + bg: "#2A2D34" + fg: "#E8E8E8" + black: "#1E2024" + red: "#FF6B6B" + green: "#95E1D3" + yellow: "#FFD93D" + blue: "#4ECDC4" + magenta: "#FF6B6B" + cyan: "#4ECDC4" + white: "#E8E8E8" + brightBlack: "#3A3D44" + brightRed: "#FF6B6B" + brightGreen: "#95E1D3" + brightYellow: "#FFD93D" + brightBlue: "#4ECDC4" + brightMagenta: "#FF6B6B" + brightCyan: "#4ECDC4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 267 + contrast: + fg: 88.5 + black: 0 + red: 44.7 + green: 75.4 + yellow: 80.9 + blue: 61.2 + magenta: 44.7 + cyan: 61.2 + white: 88.5 + brightBlack: 0 + brightRed: 44.7 + brightGreen: 75.4 + brightYellow: 80.9 + brightBlue: 61.2 + brightMagenta: 44.7 + brightCyan: 61.2 + brightWhite: 103.4 diff --git a/themes/leon-arantes.yaml b/themes/leon-arantes.yaml new file mode 100644 index 00000000..62f71ba7 --- /dev/null +++ b/themes/leon-arantes.yaml @@ -0,0 +1,49 @@ +name: "leon_arantes" +source: + marketplace_id: "Leon-Theme.leon-theme" + version: "0.0.1" + installs: 24 + author: "Leon's Theme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Leon-Theme.leon-theme" +colors: + bg: "#1E1E1E" + fg: "#F6F6F4" + black: "#262626" + red: "#EE6666" + green: "#62E884" + yellow: "#E7EE98" + blue: "#BF9EEE" + magenta: "#F286C4" + cyan: "#97E1F1" + white: "#F6F6F4" + brightBlack: "#7B7F8B" + brightRed: "#F07C7C" + brightGreen: "#78F09A" + brightYellow: "#F6F6AE" + brightBlue: "#D6B4F7" + brightMagenta: "#F49DDA" + brightCyan: "#ADF6F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 100 + black: 0 + red: 42.4 + green: 75.6 + yellow: 90.9 + blue: 56 + magenta: 54.5 + cyan: 79.6 + white: 100 + brightBlack: 32.5 + brightRed: 48.7 + brightGreen: 81.4 + brightYellow: 97.4 + brightBlue: 67.7 + brightMagenta: 62.9 + brightCyan: 91.8 + brightWhite: 106 diff --git a/themes/leon.yaml b/themes/leon.yaml new file mode 100644 index 00000000..42ee5016 --- /dev/null +++ b/themes/leon.yaml @@ -0,0 +1,49 @@ +name: "Leon" +source: + marketplace_id: "DavidBell.leon" + version: "0.0.4" + installs: 264 + author: "David Bell" + repo: "https://github.com/dtbell99/leon" + url: "https://marketplace.visualstudio.com/items?itemName=DavidBell.leon" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#2089C9" + magenta: "#BC05BC" + cyan: "#39CDE2" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#74BCFF" + brightMagenta: "#BC05BC" + brightCyan: "#74F2FF" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 65.3 + magenta: 74.6 + cyan: 36 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 39.1 + brightMagenta: 74.6 + brightCyan: 15.6 + brightWhite: 48.5 diff --git a/themes/leonida-keys-ocean.yaml b/themes/leonida-keys-ocean.yaml new file mode 100644 index 00000000..00c1f5e7 --- /dev/null +++ b/themes/leonida-keys-ocean.yaml @@ -0,0 +1,49 @@ +name: "Leonida Keys Ocean" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#1E2A3A" + fg: "#F0F8FF" + black: "#000000" + red: "#FF6347" + green: "#20B2AA" + yellow: "#FFD700" + blue: "#4682B4" + magenta: "#DA70D6" + cyan: "#00CED1" + white: "#F0F8FF" + brightBlack: "#2F4F4F" + brightRed: "#FF7F50" + brightGreen: "#48D1CC" + brightYellow: "#FFFFE0" + brightBlue: "#87CEEB" + brightMagenta: "#DDA0DD" + brightCyan: "#40E0D0" + brightWhite: "#F8F8FF" +meta: + mode: "dark" + accent: "orange" + hue: 256 + contrast: + fg: 98.8 + black: 0 + red: 43.1 + green: 47.6 + yellow: 80.5 + blue: 29.9 + magenta: 43.4 + cyan: 61.9 + white: 98.8 + brightBlack: 8.2 + brightRed: 49.8 + brightGreen: 64 + brightYellow: 102.8 + brightBlue: 67.4 + brightMagenta: 58.3 + brightCyan: 71.1 + brightWhite: 99.9 diff --git a/themes/lesbian.yaml b/themes/lesbian.yaml new file mode 100644 index 00000000..ab074e47 --- /dev/null +++ b/themes/lesbian.yaml @@ -0,0 +1,49 @@ +name: "Lesbian" +source: + marketplace_id: "ElizaMuss.elizas-pride-themes" + version: "1.0.2" + installs: 848 + author: "Eliza Muss" + repo: "https://github.com/The-Gamer69/elizas-pride-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#868686" + red: "#D62900" + green: "#33D057" + yellow: "#E1C542" + blue: "#469DF1" + magenta: "#A50062" + cyan: "#39CDE2" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#FF9B55" + brightGreen: "#23D18B" + brightYellow: "#FFE05B" + brightBlue: "#74BCFF" + brightMagenta: "#D462A6" + brightCyan: "#74F2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 37.6 + red: 28.8 + green: 63.2 + yellow: 72.2 + blue: 47.5 + magenta: 18.1 + cyan: 66.5 + white: 80.5 + brightBlack: 56.8 + brightRed: 61.9 + brightGreen: 64.5 + brightYellow: 88.7 + brightBlue: 63.2 + brightMagenta: 40.3 + brightCyan: 88.1 + brightWhite: 107.9 diff --git a/themes/lesser.yaml b/themes/lesser.yaml new file mode 100644 index 00000000..a38df388 --- /dev/null +++ b/themes/lesser.yaml @@ -0,0 +1,49 @@ +name: "Lesser" +source: + marketplace_id: "funcdfs.lesser" + version: "1.4.3" + installs: 61 + author: "funcdfs" + repo: "https://github.com/funcdfs/vscode-theme-lesser" + url: "https://marketplace.visualstudio.com/items?itemName=funcdfs.lesser" +colors: + bg: "#1F1F1F" + fg: "#E4E4E4" + black: "#181818" + red: "#E05050" + green: "#5CB85C" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#E4E4E4" + brightBlack: "#6B6B6B" + brightRed: "#F07178" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88.4 + black: 0 + red: 34.5 + green: 51.5 + yellow: 69.6 + blue: 53.7 + magenta: 44.2 + cyan: 53.6 + white: 88.4 + brightBlack: 23.2 + brightRed: 45.6 + brightGreen: 61.3 + brightYellow: 69.6 + brightBlue: 53.7 + brightMagenta: 44.2 + brightCyan: 53.6 + brightWhite: 105.9 diff --git a/themes/let-s-code.yaml b/themes/let-s-code.yaml new file mode 100644 index 00000000..52af2c0d --- /dev/null +++ b/themes/let-s-code.yaml @@ -0,0 +1,49 @@ +name: "Let's Code!" +source: + marketplace_id: "ChrisK.welovecoding" + version: "0.0.1" + installs: 1700 + author: "ChrisK" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ChrisK.welovecoding" +colors: + bg: "#13171B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 248 + contrast: + fg: 79.5 + black: 0 + red: 26.7 + green: 53 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90.1 diff --git a/themes/leviosa-theme.yaml b/themes/leviosa-theme.yaml new file mode 100644 index 00000000..351ae475 --- /dev/null +++ b/themes/leviosa-theme.yaml @@ -0,0 +1,49 @@ +name: "Leviosa Theme" +source: + marketplace_id: "slatchma.leviosa-theme" + version: "1.0.0" + installs: 901 + author: "slatchma" + repo: "https://github.com/slatchma/leviosa-theme" + url: "https://marketplace.visualstudio.com/items?itemName=slatchma.leviosa-theme" +colors: + bg: "#1E2126" + fg: "#F78544" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 51.1 + black: 0 + red: 25.5 + green: 51.8 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.8 + brightMagenta: 44.1 + brightCyan: 54.2 + brightWhite: 88.8 diff --git a/themes/levuaska.yaml b/themes/levuaska.yaml new file mode 100644 index 00000000..9e0d5ccb --- /dev/null +++ b/themes/levuaska.yaml @@ -0,0 +1,49 @@ +name: "Levuaska" +source: + marketplace_id: "AidenLeeIthink.levuaska" + version: "0.2.0" + installs: 117 + author: "Aiden Lee I think" + repo: "https://github.com/snaapsh0t12/Levuaska" + url: "https://marketplace.visualstudio.com/items?itemName=AidenLeeIthink.levuaska" +colors: + bg: "#0F0F17" + fg: "#D4D4D4" + black: "#1A1826" + red: "#D78787" + green: "#AFBEA2" + yellow: "#E4C9AF" + blue: "#96CDFB" + magenta: "#C98BBF" + cyan: "#A1BDCE" + white: "#B1B9C7" + brightBlack: "#988BA2" + brightRed: "#F28FAD" + brightGreen: "#ABE983" + brightYellow: "#FAE380" + brightBlue: "#B8DFFF" + brightMagenta: "#F5C2E7" + brightCyan: "#89DCEB" + brightWhite: "#D2D3C9" +meta: + mode: "dark" + accent: "green" + hue: 285 + contrast: + fg: 80.1 + black: 0 + red: 48.9 + green: 64.2 + yellow: 76.2 + blue: 72.4 + magenta: 50 + cyan: 64.1 + white: 63.8 + brightBlack: 42 + brightRed: 57.5 + brightGreen: 82.6 + brightYellow: 89.4 + brightBlue: 83.8 + brightMagenta: 78.3 + brightCyan: 77.3 + brightWhite: 78.9 diff --git a/themes/lht.yaml b/themes/lht.yaml new file mode 100644 index 00000000..05899c3e --- /dev/null +++ b/themes/lht.yaml @@ -0,0 +1,49 @@ +name: "lht" +source: + marketplace_id: "u29dc.set" + version: "2.0.7" + installs: 1570 + author: "iinfin" + repo: "https://github.com/u29dc/set-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=u29dc.set" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#0A0A0A" + red: "#7F7F7F" + green: "#7F7F7F" + yellow: "#191919" + blue: "#7F7F7F" + magenta: "#7F7F7F" + cyan: "#7F7F7F" + white: "#F5F5F5" + brightBlack: "#000000" + brightRed: "#7F7F7F" + brightGreen: "#7F7F7F" + brightYellow: "#7F7F7F" + brightBlue: "#7F7F7F" + brightMagenta: "#7F7F7F" + brightCyan: "#7F7F7F" + brightWhite: "#CCCCCC" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 106 + black: 105.8 + red: 67.4 + green: 67.4 + yellow: 104.4 + blue: 67.4 + magenta: 67.4 + cyan: 67.4 + white: 0 + brightBlack: 106 + brightRed: 67.4 + brightGreen: 67.4 + brightYellow: 67.4 + brightBlue: 67.4 + brightMagenta: 67.4 + brightCyan: 67.4 + brightWhite: 27.3 diff --git a/themes/liangliang-one-monokai.yaml b/themes/liangliang-one-monokai.yaml new file mode 100644 index 00000000..37666853 --- /dev/null +++ b/themes/liangliang-one-monokai.yaml @@ -0,0 +1,49 @@ +name: "LiangLiang One Monokai" +source: + marketplace_id: "liangliang.liangliang-one-monokai" + version: "0.1.1" + installs: 270 + author: "liangliang" + repo: "https://github.com/LiangLiang723/liangliang-one-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=liangliang.liangliang-one-monokai" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#E788FF" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 38.3 + magenta: 41.9 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 38.3 + brightMagenta: 54.1 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/lichen-contrast.yaml b/themes/lichen-contrast.yaml new file mode 100644 index 00000000..63c936ef --- /dev/null +++ b/themes/lichen-contrast.yaml @@ -0,0 +1,49 @@ +name: "lichen-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#090D11" + fg: "#9CADBC" + black: "#121A22" + red: "#BA0E2E" + green: "#249388" + yellow: "#9CE878" + blue: "#1A9D6B" + magenta: "#246C82" + cyan: "#1A9D6B" + white: "#ABBAC6" + brightBlack: "#2C4054" + brightRed: "#F03E5F" + brightGreen: "#4AD3C5" + brightYellow: "#DCF7CF" + brightBlue: "#3EDFA2" + brightMagenta: "#41AACB" + brightCyan: "#3EDFA2" + brightWhite: "#D9DFE5" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 56.4 + black: 0 + red: 21.2 + green: 36.8 + yellow: 80.7 + blue: 39.9 + magenta: 22.2 + cyan: 39.9 + white: 63.7 + brightBlack: 7.7 + brightRed: 37.5 + brightGreen: 68.1 + brightYellow: 97.1 + brightBlue: 72.3 + brightMagenta: 49.9 + brightCyan: 72.3 + brightWhite: 86.5 diff --git a/themes/lichen-light.yaml b/themes/lichen-light.yaml new file mode 100644 index 00000000..692f95f7 --- /dev/null +++ b/themes/lichen-light.yaml @@ -0,0 +1,49 @@ +name: "lichen-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#E6E9ED" + fg: "#414549" + black: "#F5F6F8" + red: "#BA0E2E" + green: "#249388" + yellow: "#64964C" + blue: "#1A9D6B" + magenta: "#246C82" + cyan: "#1A9D6B" + white: "#4D5256" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#4AD3C5" + brightYellow: "#9AC286" + brightBlue: "#3EDFA2" + brightMagenta: "#41AACB" + brightCyan: "#3EDFA2" + brightWhite: "#71787F" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 79.2 + black: 0 + red: 67.1 + green: 51.4 + yellow: 49.2 + blue: 48.4 + magenta: 66.2 + cyan: 48.4 + white: 74.2 + brightBlack: 12.5 + brightRed: 50.7 + brightGreen: 21 + brightYellow: 25.8 + brightBlue: 17 + brightMagenta: 38.5 + brightCyan: 17 + brightWhite: 57.9 diff --git a/themes/lichen.yaml b/themes/lichen.yaml new file mode 100644 index 00000000..4241a373 --- /dev/null +++ b/themes/lichen.yaml @@ -0,0 +1,49 @@ +name: "lichen" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#1A252F" + fg: "#9CADBC" + black: "#23323F" + red: "#BA0E2E" + green: "#249388" + yellow: "#9CE878" + blue: "#1A9D6B" + magenta: "#246C82" + cyan: "#1A9D6B" + white: "#ABBAC6" + brightBlack: "#3E5971" + brightRed: "#F03E5F" + brightGreen: "#4AD3C5" + brightYellow: "#DCF7CF" + brightBlue: "#3EDFA2" + brightMagenta: "#41AACB" + brightCyan: "#3EDFA2" + brightWhite: "#D9DFE5" +meta: + mode: "dark" + accent: "orange" + hue: 246 + contrast: + fg: 53.9 + black: 0 + red: 18.8 + green: 34.3 + yellow: 78.2 + blue: 37.4 + magenta: 19.7 + cyan: 37.4 + white: 61.2 + brightBlack: 13.9 + brightRed: 35.1 + brightGreen: 65.7 + brightYellow: 94.6 + brightBlue: 69.8 + brightMagenta: 47.4 + brightCyan: 69.8 + brightWhite: 84 diff --git a/themes/light-brown.yaml b/themes/light-brown.yaml new file mode 100644 index 00000000..018eff44 --- /dev/null +++ b/themes/light-brown.yaml @@ -0,0 +1,49 @@ +name: "Light-Brown" +source: + marketplace_id: "bakrimoharram.light-brown" + version: "0.0.2" + installs: 3615 + author: "bakrimoharram" + repo: "https://github.com/bakrimoharram/light-brown-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.light-brown" +colors: + bg: "#DBCAAF" + fg: "#4D4D4D" + black: "#43413D" + red: "#D15555" + green: "#439443" + yellow: "#989B38" + blue: "#3874B6" + magenta: "#C959C9" + cyan: "#439CB2" + white: "#555555" + brightBlack: "#666666" + brightRed: "#B83E3E" + brightGreen: "#347D34" + brightYellow: "#8F920D" + brightBlue: "#235388" + brightMagenta: "#A53AA5" + brightCyan: "#2B8196" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 79 + contrast: + fg: 59.6 + black: 64.2 + red: 37.8 + green: 35.6 + yellow: 26.6 + blue: 43.8 + magenta: 33.9 + cyan: 29 + white: 56.4 + brightBlack: 49.2 + brightRed: 47.2 + brightGreen: 45.3 + brightYellow: 31.2 + brightBlue: 57.5 + brightMagenta: 47.6 + brightCyan: 41.3 + brightWhite: 18.9 diff --git a/themes/light-code-with-bars.yaml b/themes/light-code-with-bars.yaml new file mode 100644 index 00000000..2ad49e29 --- /dev/null +++ b/themes/light-code-with-bars.yaml @@ -0,0 +1,49 @@ +name: "Light code with bars" +source: + marketplace_id: "nicegyuha.light-theme-with-bars" + version: "0.1.5" + installs: 253 + author: "Gyuha Shin" + repo: "https://github.com/gyuha/light-theme-with-bars" + url: "https://marketplace.visualstudio.com/items?itemName=nicegyuha.light-theme-with-bars" +colors: + bg: "#FFFFFF" + fg: "#908D8D" + black: "#000000" + red: "#FF0C00" + green: "#00BA51" + yellow: "#D0D500" + blue: "#0072F0" + magenta: "#FF00FF" + cyan: "#1D9F86" + white: "#A3A3A3" + brightBlack: "#6F6F6F" + brightRed: "#F77878" + brightGreen: "#79EEAC" + brightYellow: "#E6EA76" + brightBlue: "#3D9AFF" + brightMagenta: "#EC78EC" + brightCyan: "#58D3BC" + brightWhite: "#CBCBCB" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 60.3 + black: 106 + red: 64.1 + green: 49.7 + yellow: 26.5 + blue: 70.3 + magenta: 55.6 + cyan: 60 + white: 49.5 + brightBlack: 74.8 + brightRed: 51.1 + brightGreen: 20.6 + brightYellow: 13.9 + brightBlue: 54.8 + brightMagenta: 48.3 + brightCyan: 34.1 + brightWhite: 27.9 diff --git a/themes/light-color-theme.yaml b/themes/light-color-theme.yaml new file mode 100644 index 00000000..abaf1f84 --- /dev/null +++ b/themes/light-color-theme.yaml @@ -0,0 +1,49 @@ +name: "light-color-theme" +source: + marketplace_id: "wavebeem.theme-unoduetre" + version: "5.11.1" + installs: 4290 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/vscode-theme-unoduetre" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" +colors: + bg: "#F0F0F0" + fg: "#333333" + black: "#0F0F0F" + red: "#AA2B22" + green: "#2D7B3C" + yellow: "#955F2D" + blue: "#5237BE" + magenta: "#B7349F" + cyan: "#267877" + white: "#E6E6E6" + brightBlack: "#0F0F0F" + brightRed: "#AA2B22" + brightGreen: "#2D7B3C" + brightYellow: "#955F2D" + brightBlue: "#5237BE" + brightMagenta: "#B7349F" + brightCyan: "#267877" + brightWhite: "#E6E6E6" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 89.8 + black: 96.6 + red: 73.3 + green: 66.8 + yellow: 67.3 + blue: 77.8 + magenta: 66 + cyan: 66.6 + white: 0 + brightBlack: 96.6 + brightRed: 73.3 + brightGreen: 66.8 + brightYellow: 67.3 + brightBlue: 77.8 + brightMagenta: 66 + brightCyan: 66.6 + brightWhite: 0 diff --git a/themes/light-decay.yaml b/themes/light-decay.yaml new file mode 100644 index 00000000..f9a48591 --- /dev/null +++ b/themes/light-decay.yaml @@ -0,0 +1,49 @@ +name: "Light Decay" +source: + marketplace_id: "decaycs.decay" + version: "1.0.9" + installs: 37704 + author: "decaycs" + repo: "https://github.com/decaycs/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" +colors: + bg: "#DEE1E6" + fg: "#101419" + black: "#C5C8CD" + red: "#BD3C42" + green: "#69B373" + yellow: "#CEAC67" + blue: "#4D82C8" + magenta: "#A367CB" + cyan: "#519BC6" + white: "#DEE1E6" + brightBlack: "#989BA0" + brightRed: "#BD3C42" + brightGreen: "#69B373" + brightYellow: "#E9A180" + brightBlue: "#4D82C8" + brightMagenta: "#A367CB" + brightCyan: "#519BC6" + brightWhite: "#101419" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 87.3 + black: 11.9 + red: 58.1 + green: 31.7 + yellow: 24.6 + blue: 48.7 + magenta: 48.5 + cyan: 39.5 + white: 0 + brightBlack: 35.9 + brightRed: 58.1 + brightGreen: 31.7 + brightYellow: 23.8 + brightBlue: 48.7 + brightMagenta: 48.5 + brightCyan: 39.5 + brightWhite: 87.3 diff --git a/themes/light-gruvdark-mono.yaml b/themes/light-gruvdark-mono.yaml new file mode 100644 index 00000000..9f6ca806 --- /dev/null +++ b/themes/light-gruvdark-mono.yaml @@ -0,0 +1,49 @@ +name: "Light GruvDark-Mono" +source: + marketplace_id: "darianmorat.darian-theme" + version: "2.1.6" + installs: 3178 + author: "Darian Toledo" + repo: "https://github.com/darianmorat/gruvdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" +colors: + bg: "#F9F6E4" + fg: "#111111" + black: "#4F3829" + red: "#C14A4A" + green: "#008000" + yellow: "#BF6702" + blue: "#0C69B6" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#111111" + brightRed: "#C14A4A" + brightGreen: "#008000" + brightYellow: "#BF6702" + brightBlue: "#0C69B6" + brightMagenta: "#945E80" + brightCyan: "#4C7A5D" + brightWhite: "#D1CFC4" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 99.6 + black: 89.4 + red: 67 + green: 68.9 + yellow: 61.7 + blue: 72 + magenta: 68.9 + cyan: 68.4 + white: 58.6 + brightBlack: 99.6 + brightRed: 67 + brightGreen: 68.9 + brightYellow: 61.7 + brightBlue: 72 + brightMagenta: 68.9 + brightCyan: 68.4 + brightWhite: 20.1 diff --git a/themes/light-gruvdark-tokyo.yaml b/themes/light-gruvdark-tokyo.yaml new file mode 100644 index 00000000..22caa949 --- /dev/null +++ b/themes/light-gruvdark-tokyo.yaml @@ -0,0 +1,49 @@ +name: "Light GruvDark-Tokyo" +source: + marketplace_id: "darianmorat.darian-theme" + version: "2.1.6" + installs: 3178 + author: "Darian Toledo" + repo: "https://github.com/darianmorat/gruvdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" +colors: + bg: "#F9F6E4" + fg: "#111111" + black: "#4F3829" + red: "#C14A4A" + green: "#008000" + yellow: "#BF6702" + blue: "#23669C" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#111111" + brightRed: "#C14A4A" + brightGreen: "#008000" + brightYellow: "#BF6702" + brightBlue: "#23669C" + brightMagenta: "#945E80" + brightCyan: "#4C7A5D" + brightWhite: "#D1CFC4" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 99.6 + black: 89.4 + red: 67 + green: 68.9 + yellow: 61.7 + blue: 74.3 + magenta: 68.9 + cyan: 68.4 + white: 58.6 + brightBlack: 99.6 + brightRed: 67 + brightGreen: 68.9 + brightYellow: 61.7 + brightBlue: 74.3 + brightMagenta: 68.9 + brightCyan: 68.4 + brightWhite: 20.1 diff --git a/themes/light-gruvdark.yaml b/themes/light-gruvdark.yaml new file mode 100644 index 00000000..c1738f9e --- /dev/null +++ b/themes/light-gruvdark.yaml @@ -0,0 +1,49 @@ +name: "Light GruvDark" +source: + marketplace_id: "darianmorat.darian-theme" + version: "2.1.6" + installs: 3178 + author: "Darian Toledo" + repo: "https://github.com/darianmorat/gruvdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" +colors: + bg: "#FBF1C7" + fg: "#111111" + black: "#4F3829" + red: "#C14A4A" + green: "#008000" + yellow: "#BF6702" + blue: "#23669C" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#111111" + brightRed: "#C14A4A" + brightGreen: "#008000" + brightYellow: "#BF6702" + brightBlue: "#23669C" + brightMagenta: "#945E80" + brightCyan: "#4C7A5D" + brightWhite: "#F2E5BC" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 96.7 + black: 86.5 + red: 64.1 + green: 66 + yellow: 58.8 + blue: 71.4 + magenta: 66 + cyan: 65.5 + white: 55.7 + brightBlack: 96.7 + brightRed: 64.1 + brightGreen: 66 + brightYellow: 58.8 + brightBlue: 71.4 + brightMagenta: 66 + brightCyan: 65.5 + brightWhite: 0 diff --git a/themes/light-print.yaml b/themes/light-print.yaml new file mode 100644 index 00000000..6efb0ae0 --- /dev/null +++ b/themes/light-print.yaml @@ -0,0 +1,49 @@ +name: "light-print" +source: + marketplace_id: "AymanAli.light-print" + version: "1.0.1" + installs: 252 + author: "Ayman Ali" + repo: "https://github.com/aymanabuali/light-print" + url: "https://marketplace.visualstudio.com/items?itemName=AymanAli.light-print" +colors: + bg: "#FFFFFF" + fg: "#262626" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 102 + black: 98.7 + red: 76.1 + green: 48 + yellow: 43.5 + blue: 66 + magenta: 68.4 + cyan: 50.5 + white: 14.3 + brightBlack: 78.8 + brightRed: 63.4 + brightGreen: 25.1 + brightYellow: 18.6 + brightBlue: 51 + brightMagenta: 54.3 + brightCyan: 28.5 + brightWhite: 0 diff --git a/themes/light-red.yaml b/themes/light-red.yaml new file mode 100644 index 00000000..89966886 --- /dev/null +++ b/themes/light-red.yaml @@ -0,0 +1,49 @@ +name: "Light Red" +source: + marketplace_id: "HenriLima05.a-cup-of-coffee" + version: "0.0.2" + installs: 4677 + author: "Henri Lima" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.a-cup-of-coffee" +colors: + bg: "#FBFBFB" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 103.6 + black: 103.6 + red: 71.6 + green: 46.8 + yellow: 55.5 + blue: 83.7 + magenta: 72.2 + cyan: 58.2 + white: 83.5 + brightBlack: 76.4 + brightRed: 71.6 + brightGreen: 38.5 + brightYellow: 38.5 + brightBlue: 83.7 + brightMagenta: 72.2 + brightCyan: 58.2 + brightWhite: 46.1 diff --git a/themes/light-springbok.yaml b/themes/light-springbok.yaml new file mode 100644 index 00000000..f454a6ee --- /dev/null +++ b/themes/light-springbok.yaml @@ -0,0 +1,49 @@ +name: "Light Springbok" +source: + marketplace_id: "chrp.springbok-theme" + version: "0.12.0" + installs: 620 + author: "chrp" + repo: "https://github.com/christophehurpeau/springbok-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=chrp.springbok-theme" +colors: + bg: "#FEFEFE" + fg: "#707070" + black: "#797979" + red: "#BD3834" + green: "#34BD38" + yellow: "#BDB034" + blue: "#344BBD" + magenta: "#BD34AB" + cyan: "#34ABBD" + white: "#D7D7D7" + brightBlack: "#A0A0A0" + brightRed: "#BA0A04" + brightGreen: "#04BA0A" + brightYellow: "#BAA804" + brightBlue: "#0422BA" + brightMagenta: "#BA04A2" + brightCyan: "#04A2BA" + brightWhite: "#FEFEFE" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 73.7 + black: 69.6 + red: 76 + green: 47.5 + yellow: 43.2 + blue: 84.1 + magenta: 72.5 + cyan: 51.8 + white: 20.4 + brightBlack: 50.4 + brightRed: 80 + brightGreen: 49.5 + brightYellow: 46.8 + brightBlue: 92.6 + brightMagenta: 76 + brightCyan: 56.1 + brightWhite: 0 diff --git a/themes/light-theme.yaml b/themes/light-theme.yaml new file mode 100644 index 00000000..e7decc9c --- /dev/null +++ b/themes/light-theme.yaml @@ -0,0 +1,49 @@ +name: "Light Theme" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#EEEEEE" + fg: "#000000" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 95.9 + black: 89.4 + red: 52.9 + green: 43.2 + yellow: 0 + blue: 47.6 + magenta: 57.9 + cyan: 34.5 + white: 0 + brightBlack: 82.3 + brightRed: 47.8 + brightGreen: 10.3 + brightYellow: 0 + brightBlue: 50.1 + brightMagenta: 49.2 + brightCyan: 0 + brightWhite: 8.9 diff --git a/themes/light.yaml b/themes/light.yaml new file mode 100644 index 00000000..843aa925 --- /dev/null +++ b/themes/light.yaml @@ -0,0 +1,49 @@ +name: "light" +source: + marketplace_id: "gthbccnt.light-theme-grey" + version: "1.0.4" + installs: 348 + author: "gthbccnt" + repo: "https://github.com/gthbccnt/gthbccnt.light-theme-grey" + url: "https://marketplace.visualstudio.com/items?itemName=gthbccnt.light-theme-grey" +colors: + bg: "#F5F4F2" + fg: "#000000" + black: "#393735" + red: "#D8636B" + green: "#97BA85" + yellow: "#EBB95E" + blue: "#8BB4E3" + magenta: "#C88AC8" + cyan: "#6FBEBC" + white: "#E1DFDF" + brightBlack: "#666666" + brightRed: "#E57373" + brightGreen: "#8AB96C" + brightYellow: "#D9B74C" + brightBlue: "#9BC0E8" + brightMagenta: "#C78BC7" + brightCyan: "#6DD1D1" + brightWhite: "#C6C4C0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.5 + black: 90.7 + red: 56 + green: 36.1 + yellow: 26.9 + blue: 35.8 + magenta: 44.9 + cyan: 35.6 + white: 9.6 + brightBlack: 72.2 + brightRed: 49.5 + brightGreen: 38.2 + brightYellow: 30.6 + brightBlue: 29.4 + brightMagenta: 44.8 + brightCyan: 26.6 + brightWhite: 25.2 diff --git a/themes/lightblack.yaml b/themes/lightblack.yaml new file mode 100644 index 00000000..6bdd9d29 --- /dev/null +++ b/themes/lightblack.yaml @@ -0,0 +1,49 @@ +name: "LightBlack" +source: + marketplace_id: "theboringkid.lightblack" + version: "0.1.0" + installs: 630 + author: "theboringkid" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=theboringkid.lightblack" +colors: + bg: "#000000" + fg: "#F0F0F0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 98.1 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/lightdelight.yaml b/themes/lightdelight.yaml new file mode 100644 index 00000000..7c6af744 --- /dev/null +++ b/themes/lightdelight.yaml @@ -0,0 +1,49 @@ +name: "LightDelight" +source: + marketplace_id: "DimitarNonov.lightDelight" + version: "1.19.0" + installs: 5314 + author: "Dimitar Nonov" + repo: "https://github.com/DNonov/lightDelight" + url: "https://marketplace.visualstudio.com/items?itemName=DimitarNonov.lightDelight" +colors: + bg: "#FFFFFF" + fg: "#222222" + black: "#222222" + red: "#A50000" + green: "#006B1E" + yellow: "#CD9731" + blue: "#000080" + magenta: "#850075" + cyan: "#00437A" + white: "#525252" + brightBlack: "#525252" + brightRed: "#A50000" + brightGreen: "#006B1E" + brightYellow: "#CD9731" + brightBlue: "#000080" + brightMagenta: "#850075" + brightCyan: "#00437A" + brightWhite: "#525252" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 102.9 + black: 102.9 + red: 85.3 + green: 82.5 + yellow: 50.6 + blue: 100.9 + magenta: 89.3 + cyan: 92.8 + white: 87.2 + brightBlack: 87.2 + brightRed: 85.3 + brightGreen: 82.5 + brightYellow: 50.6 + brightBlue: 100.9 + brightMagenta: 89.3 + brightCyan: 92.8 + brightWhite: 87.2 diff --git a/themes/lighter-a-theme-for-light-coders.yaml b/themes/lighter-a-theme-for-light-coders.yaml new file mode 100644 index 00000000..f10ba91e --- /dev/null +++ b/themes/lighter-a-theme-for-light-coders.yaml @@ -0,0 +1,49 @@ +name: "Lighter-A theme for Light Coders" +source: + marketplace_id: "ProGamer.pro-ggamer" + version: "0.0.7" + installs: 670 + author: "Pro Gamer" + repo: "https://github.com/Pro-The-Dev-Op/Pro-s-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ProGamer.pro-ggamer" +colors: + bg: "#FFFFFF" + fg: "#FF0000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 64.1 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/lightestlighttheme.yaml b/themes/lightestlighttheme.yaml new file mode 100644 index 00000000..d109ebc9 --- /dev/null +++ b/themes/lightestlighttheme.yaml @@ -0,0 +1,49 @@ +name: "lightestlighttheme" +source: + marketplace_id: "Shaswot-Dhungana.lightestlighttheme" + version: "1.2.1" + installs: 226 + author: "Shaswot Dhungana" + repo: "https://github.com/Shaswot-Dhungana/Lightest-Light-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Shaswot-Dhungana.lightestlighttheme" +colors: + bg: "#FAF9F6" + fg: "#000000" + black: "#FF0000" + red: "#FF0000" + green: "#000000" + yellow: "#000000" + blue: "#000000" + magenta: "#000000" + cyan: "#000000" + white: "#000000" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#000000" + brightYellow: "#000000" + brightBlue: "#000000" + brightMagenta: "#000000" + brightCyan: "#000000" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.4 + black: 60.5 + red: 60.5 + green: 102.4 + yellow: 102.4 + blue: 102.4 + magenta: 102.4 + cyan: 102.4 + white: 102.4 + brightBlack: 102.4 + brightRed: 60.5 + brightGreen: 102.4 + brightYellow: 102.4 + brightBlue: 102.4 + brightMagenta: 102.4 + brightCyan: 102.4 + brightWhite: 102.4 diff --git a/themes/lighthaus.yaml b/themes/lighthaus.yaml new file mode 100644 index 00000000..3e25f593 --- /dev/null +++ b/themes/lighthaus.yaml @@ -0,0 +1,49 @@ +name: "Lighthaus" +source: + marketplace_id: "lighthaus-theme.lighthaus-vscode" + version: "1.0.0" + installs: 653 + author: "Lighthaus" + repo: "https://github.com/lighthaus-theme/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=lighthaus-theme.lighthaus-vscode" +colors: + bg: "#18191E" + fg: "#FFFADE" + black: "#18191E" + red: "#FC2929" + green: "#44B273" + yellow: "#E25600" + blue: "#1D918B" + magenta: "#D16BB7" + cyan: "#00BFA4" + white: "#CCCCCC" + brightBlack: "#8E8D8D" + brightRed: "#FF5050" + brightGreen: "#50C16E" + brightYellow: "#ED722E" + brightBlue: "#47A8A1" + brightMagenta: "#D68EB2" + brightCyan: "#5AD1AA" + brightWhite: "#FFFADE" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 102.8 + black: 0 + red: 36.8 + green: 49 + yellow: 36.2 + blue: 35 + magenta: 41.3 + cyan: 55.5 + white: 74.4 + brightBlack: 40 + brightRed: 42.3 + brightGreen: 56.1 + brightYellow: 44.8 + brightBlue: 46.3 + brightMagenta: 51.6 + brightCyan: 65.7 + brightWhite: 102.8 diff --git a/themes/lighthouse-in-the-dark-boon-island-dark.yaml b/themes/lighthouse-in-the-dark-boon-island-dark.yaml new file mode 100644 index 00000000..aecd72db --- /dev/null +++ b/themes/lighthouse-in-the-dark-boon-island-dark.yaml @@ -0,0 +1,49 @@ +name: "Lighthouse In The Dark (Boon Island Dark)" +source: + marketplace_id: "CodeTime.lighthouse-in-the-dark" + version: "0.1.0" + installs: 271 + author: "Code Time" + repo: "https://github.com/afj176/lighthouse-in-the-dark" + url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.lighthouse-in-the-dark" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF6B6B" + green: "#00FF7F" + yellow: "#FFFF00" + blue: "#00BFFF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF8888" + brightGreen: "#66FF99" + brightYellow: "#FFFF66" + brightBlue: "#66D9FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 49.1 + green: 87.6 + yellow: 102.7 + blue: 61.4 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 23 + brightRed: 57.2 + brightGreen: 90 + brightYellow: 103.3 + brightBlue: 75.3 + brightMagenta: 54.8 + brightCyan: 94 + brightWhite: 107.9 diff --git a/themes/lighthouse-in-the-dark-boon-island-light.yaml b/themes/lighthouse-in-the-dark-boon-island-light.yaml new file mode 100644 index 00000000..c9039e93 --- /dev/null +++ b/themes/lighthouse-in-the-dark-boon-island-light.yaml @@ -0,0 +1,49 @@ +name: "Lighthouse In The Dark (Boon Island Light)" +source: + marketplace_id: "CodeTime.lighthouse-in-the-dark" + version: "0.1.0" + installs: 271 + author: "Code Time" + repo: "https://github.com/afj176/lighthouse-in-the-dark" + url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.lighthouse-in-the-dark" +colors: + bg: "#FFFFFF" + fg: "#1A1A1A" + black: "#1A1A1A" + red: "#D73A49" + green: "#28A745" + yellow: "#8B6914" + blue: "#0366D6" + magenta: "#9B4DCA" + cyan: "#00A896" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF6B6B" + brightGreen: "#4AE168" + brightYellow: "#CCAA00" + brightBlue: "#2188FF" + brightMagenta: "#B366E0" + brightCyan: "#00D4BE" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 104.3 + black: 104.3 + red: 70.4 + green: 57.9 + yellow: 74.9 + blue: 76.2 + magenta: 73.2 + cyan: 55.8 + white: 0 + brightBlack: 78.8 + brightRed: 52.8 + brightGreen: 30.3 + brightYellow: 44.2 + brightBlue: 61.7 + brightMagenta: 62.8 + brightCyan: 35 + brightWhite: 0 diff --git a/themes/lighthouse-in-the-dark-rose-island-dark.yaml b/themes/lighthouse-in-the-dark-rose-island-dark.yaml new file mode 100644 index 00000000..99b62846 --- /dev/null +++ b/themes/lighthouse-in-the-dark-rose-island-dark.yaml @@ -0,0 +1,49 @@ +name: "Lighthouse In The Dark (Rose Island Dark)" +source: + marketplace_id: "CodeTime.lighthouse-in-the-dark" + version: "0.1.0" + installs: 271 + author: "Code Time" + repo: "https://github.com/afj176/lighthouse-in-the-dark" + url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.lighthouse-in-the-dark" +colors: + bg: "#1E1410" + fg: "#F5F0E8" + black: "#1E1410" + red: "#FF6B9D" + green: "#98C379" + yellow: "#FFB86C" + blue: "#61AFEF" + magenta: "#FF00FF" + cyan: "#56B6C2" + white: "#F5F0E8" + brightBlack: "#6B5A45" + brightRed: "#FF8BB0" + brightGreen: "#B8E89D" + brightYellow: "#FFD89C" + brightBlue: "#8BCEFF" + brightMagenta: "#FF66FF" + brightCyan: "#7DD6E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 43 + contrast: + fg: 97.4 + black: 0 + red: 49.6 + green: 62.3 + yellow: 71.5 + blue: 54.7 + magenta: 45.3 + cyan: 54.6 + white: 97.4 + brightBlack: 18.2 + brightRed: 58.4 + brightGreen: 83.5 + brightYellow: 85.5 + brightBlue: 71.6 + brightMagenta: 53.9 + brightCyan: 72.7 + brightWhite: 106.9 diff --git a/themes/lighthouse-in-the-dark-rose-island-light.yaml b/themes/lighthouse-in-the-dark-rose-island-light.yaml new file mode 100644 index 00000000..26c3d464 --- /dev/null +++ b/themes/lighthouse-in-the-dark-rose-island-light.yaml @@ -0,0 +1,49 @@ +name: "Lighthouse In The Dark (Rose Island Light)" +source: + marketplace_id: "CodeTime.lighthouse-in-the-dark" + version: "0.1.0" + installs: 271 + author: "Code Time" + repo: "https://github.com/afj176/lighthouse-in-the-dark" + url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.lighthouse-in-the-dark" +colors: + bg: "#D5CAAE" + fg: "#1A1612" + black: "#1A1612" + red: "#A83D45" + green: "#4A7C59" + yellow: "#8B6914" + blue: "#2E6B8A" + magenta: "#8B2EB8" + cyan: "#2E7A7A" + white: "#D5CAAE" + brightBlack: "#6B5A45" + brightRed: "#CC4D55" + brightGreen: "#5A9C69" + brightYellow: "#A87A18" + brightBlue: "#3E8BAA" + brightMagenta: "#AB3ED8" + brightCyan: "#3E9A9A" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: 89 + contrast: + fg: 74.4 + black: 74.4 + red: 49.5 + green: 43.3 + yellow: 44.6 + blue: 48.8 + magenta: 51.3 + cyan: 44.2 + white: 0 + brightBlack: 52.4 + brightRed: 39.5 + brightGreen: 29.7 + brightYellow: 35.4 + brightBlue: 35.3 + brightMagenta: 41.7 + brightCyan: 30.2 + brightWhite: 31.7 diff --git a/themes/lightning-cloud.yaml b/themes/lightning-cloud.yaml new file mode 100644 index 00000000..fb31b5d8 --- /dev/null +++ b/themes/lightning-cloud.yaml @@ -0,0 +1,49 @@ +name: "Lightning Cloud" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 889 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" +colors: + bg: "#F1FBFF" + fg: "#3475A2" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#38B2E7" + white: "#C4C6CB" + brightBlack: "#787878" + brightRed: "#FE2B64" + brightGreen: "#2BBA93" + brightYellow: "#FAA630" + brightBlue: "#2680FF" + brightMagenta: "#BC47B2" + brightCyan: "#1C95BE" + brightWhite: "#CEDCDE" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 70.8 + black: 102.6 + red: 67.9 + green: 20.6 + yellow: 22.5 + blue: 61 + magenta: 58.4 + cyan: 43.7 + white: 27.2 + brightBlack: 67.2 + brightRed: 58.7 + brightGreen: 44.4 + brightYellow: 34.7 + brightBlue: 60.9 + brightMagenta: 66.9 + brightCyan: 58.1 + brightWhite: 16.3 diff --git a/themes/lightning-dark.yaml b/themes/lightning-dark.yaml new file mode 100644 index 00000000..a1e65f82 --- /dev/null +++ b/themes/lightning-dark.yaml @@ -0,0 +1,49 @@ +name: "Lightning Dark" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 889 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" +colors: + bg: "#1A1745" + fg: "#76C6FF" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#3EC5FF" + white: "#C4C6CB" + brightBlack: "#333333" + brightRed: "#FF477E" + brightGreen: "#66FFDE" + brightYellow: "#F07178" + brightBlue: "#44B1FF" + brightMagenta: "#B76DFF" + brightCyan: "#21FBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 281 + contrast: + fg: 65.7 + black: 0 + red: 28.4 + green: 77.2 + yellow: 75.2 + blue: 35.2 + magenta: 37.8 + cyan: 62.8 + white: 70.1 + brightBlack: 0 + brightRed: 41.3 + brightGreen: 90.5 + brightYellow: 45.7 + brightBlue: 54.4 + brightMagenta: 41.5 + brightCyan: 88.3 + brightWhite: 105.9 diff --git a/themes/lightning-material-day.yaml b/themes/lightning-material-day.yaml new file mode 100644 index 00000000..e7889606 --- /dev/null +++ b/themes/lightning-material-day.yaml @@ -0,0 +1,49 @@ +name: "Lightning Material - Day" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 889 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" +colors: + bg: "#F3FAFF" + fg: "#3475A2" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#38B2E7" + white: "#C4C6CB" + brightBlack: "#787878" + brightRed: "#FE2B64" + brightGreen: "#2BBA93" + brightYellow: "#FAA630" + brightBlue: "#2680FF" + brightMagenta: "#BC47B2" + brightCyan: "#1C95BE" + brightWhite: "#CEDCDE" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 70.6 + black: 102.4 + red: 67.7 + green: 20.4 + yellow: 22.3 + blue: 60.9 + magenta: 58.2 + cyan: 43.5 + white: 27 + brightBlack: 67 + brightRed: 58.5 + brightGreen: 44.2 + brightYellow: 34.5 + brightBlue: 60.7 + brightMagenta: 66.7 + brightCyan: 57.9 + brightWhite: 16.1 diff --git a/themes/lightning-material-evening.yaml b/themes/lightning-material-evening.yaml new file mode 100644 index 00000000..c5cfcddd --- /dev/null +++ b/themes/lightning-material-evening.yaml @@ -0,0 +1,49 @@ +name: "Lightning Material - Evening" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 889 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" +colors: + bg: "#202657" + fg: "#76C6FF" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#3EC5FF" + white: "#C4C6CB" + brightBlack: "#333333" + brightRed: "#FF477E" + brightGreen: "#66FFDE" + brightYellow: "#F07178" + brightBlue: "#44B1FF" + brightMagenta: "#B76DFF" + brightCyan: "#21FBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 63.5 + black: 0 + red: 26.2 + green: 75 + yellow: 73 + blue: 33 + magenta: 35.7 + cyan: 60.6 + white: 68 + brightBlack: 0 + brightRed: 39.1 + brightGreen: 88.3 + brightYellow: 43.5 + brightBlue: 52.2 + brightMagenta: 39.3 + brightCyan: 86.1 + brightWhite: 103.7 diff --git a/themes/lightning-material-midnight.yaml b/themes/lightning-material-midnight.yaml new file mode 100644 index 00000000..a7cb708b --- /dev/null +++ b/themes/lightning-material-midnight.yaml @@ -0,0 +1,49 @@ +name: "Lightning Material - Midnight" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 889 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" +colors: + bg: "#2F2857" + fg: "#76C6FF" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#3EC5FF" + white: "#C4C6CB" + brightBlack: "#333333" + brightRed: "#FF477E" + brightGreen: "#66FFDE" + brightYellow: "#F07178" + brightBlue: "#44B1FF" + brightMagenta: "#B76DFF" + brightCyan: "#21FBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 287 + contrast: + fg: 62.7 + black: 0 + red: 25.4 + green: 74.2 + yellow: 72.2 + blue: 32.2 + magenta: 34.8 + cyan: 59.8 + white: 67.1 + brightBlack: 0 + brightRed: 38.3 + brightGreen: 87.5 + brightYellow: 42.6 + brightBlue: 51.4 + brightMagenta: 38.5 + brightCyan: 85.3 + brightWhite: 102.9 diff --git a/themes/lightning-material-soft.yaml b/themes/lightning-material-soft.yaml new file mode 100644 index 00000000..d3c19306 --- /dev/null +++ b/themes/lightning-material-soft.yaml @@ -0,0 +1,49 @@ +name: "Lightning Material - Soft" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 889 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" +colors: + bg: "#262B3D" + fg: "#76C6FF" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#3EC5FF" + white: "#C4C6CB" + brightBlack: "#333333" + brightRed: "#FF477E" + brightGreen: "#66FFDE" + brightYellow: "#F07178" + brightBlue: "#44B1FF" + brightMagenta: "#B76DFF" + brightCyan: "#21FBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 272 + contrast: + fg: 63.4 + black: 0 + red: 26.2 + green: 75 + yellow: 72.9 + blue: 33 + magenta: 35.6 + cyan: 60.5 + white: 67.9 + brightBlack: 0 + brightRed: 39.1 + brightGreen: 88.2 + brightYellow: 43.4 + brightBlue: 52.2 + brightMagenta: 39.3 + brightCyan: 86 + brightWhite: 103.7 diff --git a/themes/lightning-soft-dark.yaml b/themes/lightning-soft-dark.yaml new file mode 100644 index 00000000..9f5e5806 --- /dev/null +++ b/themes/lightning-soft-dark.yaml @@ -0,0 +1,49 @@ +name: "Lightning Soft - Dark" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 889 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" +colors: + bg: "#212135" + fg: "#76C6FF" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#3EC5FF" + white: "#C4C6CB" + brightBlack: "#333333" + brightRed: "#FF477E" + brightGreen: "#66FFDE" + brightYellow: "#F07178" + brightBlue: "#44B1FF" + brightMagenta: "#B76DFF" + brightCyan: "#21FBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 283 + contrast: + fg: 65 + black: 0 + red: 27.8 + green: 76.6 + yellow: 74.5 + blue: 34.6 + magenta: 37.2 + cyan: 62.1 + white: 69.5 + brightBlack: 0 + brightRed: 40.7 + brightGreen: 89.8 + brightYellow: 45 + brightBlue: 53.7 + brightMagenta: 40.9 + brightCyan: 87.6 + brightWhite: 105.3 diff --git a/themes/lightning-soft.yaml b/themes/lightning-soft.yaml new file mode 100644 index 00000000..56995f5f --- /dev/null +++ b/themes/lightning-soft.yaml @@ -0,0 +1,49 @@ +name: "Lightning Soft" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 889 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" +colors: + bg: "#171724" + fg: "#76C6FF" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#3EC5FF" + white: "#C4C6CB" + brightBlack: "#333333" + brightRed: "#FF477E" + brightGreen: "#66FFDE" + brightYellow: "#F07178" + brightBlue: "#44B1FF" + brightMagenta: "#B76DFF" + brightCyan: "#21FBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 66.5 + black: 0 + red: 29.2 + green: 78 + yellow: 76 + blue: 36 + magenta: 38.6 + cyan: 63.6 + white: 70.9 + brightBlack: 0 + brightRed: 42.1 + brightGreen: 91.3 + brightYellow: 46.5 + brightBlue: 55.2 + brightMagenta: 42.3 + brightCyan: 89.1 + brightWhite: 106.7 diff --git a/themes/lightning-theme.yaml b/themes/lightning-theme.yaml new file mode 100644 index 00000000..49453b34 --- /dev/null +++ b/themes/lightning-theme.yaml @@ -0,0 +1,49 @@ +name: "Lightning Theme" +source: + marketplace_id: "gugahnstn.lightning-theme" + version: "0.0.1" + installs: 157 + author: "Gustavo Nogueira" + repo: "https://github.com/Gugahnstn/lightning-theme" + url: "https://marketplace.visualstudio.com/items?itemName=gugahnstn.lightning-theme" +colors: + bg: "#18181A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.4 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/lightning.yaml b/themes/lightning.yaml new file mode 100644 index 00000000..5e4a1971 --- /dev/null +++ b/themes/lightning.yaml @@ -0,0 +1,49 @@ +name: "Lightning" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 889 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" +colors: + bg: "#0E0C29" + fg: "#76C6FF" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#3EC5FF" + white: "#C4C6CB" + brightBlack: "#333333" + brightRed: "#FF477E" + brightGreen: "#66FFDE" + brightYellow: "#F07178" + brightBlue: "#44B1FF" + brightMagenta: "#B76DFF" + brightCyan: "#21FBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 282 + contrast: + fg: 67.1 + black: 0 + red: 29.8 + green: 78.6 + yellow: 76.6 + blue: 36.6 + magenta: 39.3 + cyan: 64.2 + white: 71.6 + brightBlack: 0 + brightRed: 42.7 + brightGreen: 91.9 + brightYellow: 47.1 + brightBlue: 55.8 + brightMagenta: 42.9 + brightCyan: 89.7 + brightWhite: 107.4 diff --git a/themes/ligiapink.yaml b/themes/ligiapink.yaml new file mode 100644 index 00000000..629d115a --- /dev/null +++ b/themes/ligiapink.yaml @@ -0,0 +1,49 @@ +name: "LigiaPink" +source: + marketplace_id: "CodeBabel.codebabel-obscure-pink" + version: "0.0.1" + installs: 1651 + author: "CodeBabel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CodeBabel.codebabel-obscure-pink" +colors: + bg: "#0B010A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 331 + contrast: + fg: 80.4 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/ligor-fork.yaml b/themes/ligor-fork.yaml new file mode 100644 index 00000000..be3a8fc7 --- /dev/null +++ b/themes/ligor-fork.yaml @@ -0,0 +1,49 @@ +name: "Ligor - Fork" +source: + marketplace_id: "rzceoffical.rtheme" + version: "0.0.2" + installs: 40 + author: "rzceoffical" + repo: "https://github.com/rzceoffical/rtheme" + url: "https://marketplace.visualstudio.com/items?itemName=rzceoffical.rtheme" +colors: + bg: "#000F1C" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 241 + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/lilac-dreams.yaml b/themes/lilac-dreams.yaml new file mode 100644 index 00000000..6521c720 --- /dev/null +++ b/themes/lilac-dreams.yaml @@ -0,0 +1,49 @@ +name: "Lilac Dreams" +source: + marketplace_id: "Icycoldveins.verum-monokai-themes" + version: "1.2.1" + installs: 46 + author: "Icycoldveins" + repo: "https://github.com/icycoldveins/Ide-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" +colors: + bg: "#2D2A2E" + fg: "#A8A2C7" + black: "#32302F" + red: "#E06C75" + green: "#98C379" + yellow: "#E78A4E" + blue: "#7DAEA3" + magenta: "#FF6B6B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E78A4E" + brightBlue: "#7DAEA3" + brightMagenta: "#FF6B6B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 50.2 + black: 0 + red: 39.1 + green: 59.3 + yellow: 47.8 + blue: 49.2 + magenta: 45.1 + cyan: 51.6 + white: 65 + brightBlack: 33.3 + brightRed: 39.1 + brightGreen: 59.3 + brightYellow: 47.8 + brightBlue: 49.2 + brightMagenta: 45.1 + brightCyan: 51.6 + brightWhite: 70.2 diff --git a/themes/lilac-grove.yaml b/themes/lilac-grove.yaml new file mode 100644 index 00000000..cda9461a --- /dev/null +++ b/themes/lilac-grove.yaml @@ -0,0 +1,49 @@ +name: "Lilac Grove" +source: + marketplace_id: "InnaSodri.lilac-grove-bundle" + version: "0.0.1" + installs: 230 + author: "Inna Sodri" + repo: "https://example.com/inna/lilac-grove-bundle" + url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.lilac-grove-bundle" +colors: + bg: "#0E0F13" + fg: "#E8EAF0" + black: "#1A2134" + red: "#FF6B6B" + green: "#57D69D" + yellow: "#FBCB6A" + blue: "#74C7EC" + magenta: "#B28DFF" + cyan: "#63E6E2" + white: "#E1E6F2" + brightBlack: "#1A2134" + brightRed: "#FF6B6B" + brightGreen: "#57D69D" + brightYellow: "#FBCB6A" + brightBlue: "#74C7EC" + brightMagenta: "#B28DFF" + brightCyan: "#63E6E2" + brightWhite: "#E1E6F2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 93.8 + black: 0 + red: 48.7 + green: 68.4 + yellow: 78.9 + blue: 66.4 + magenta: 51.3 + cyan: 79.5 + white: 91.2 + brightBlack: 0 + brightRed: 48.7 + brightGreen: 68.4 + brightYellow: 78.9 + brightBlue: 66.4 + brightMagenta: 51.3 + brightCyan: 79.5 + brightWhite: 91.2 diff --git a/themes/lima-theme.yaml b/themes/lima-theme.yaml new file mode 100644 index 00000000..0e3c410b --- /dev/null +++ b/themes/lima-theme.yaml @@ -0,0 +1,49 @@ +name: "Lima Theme" +source: + marketplace_id: "AdrianoLima.adrianulima-theme" + version: "0.6.1" + installs: 88 + author: "Adriano Lima" + repo: "https://github.com/adrianulima/lima-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AdrianoLima.adrianulima-theme" +colors: + bg: "#222428" + fg: "#E0F0F0" + black: "#222428" + red: "#F080D0" + green: "#80F0D0" + yellow: "#F0D080" + blue: "#80D0F0" + magenta: "#F080D0" + cyan: "#80D0F0" + white: "#E0F0F0" + brightBlack: "#80D0F0" + brightRed: "#F080D0" + brightGreen: "#80F0D0" + brightYellow: "#F0D080" + brightBlue: "#80D0F0" + brightMagenta: "#F080D0" + brightCyan: "#80D0F0" + brightWhite: "#E0F0F0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 93.2 + black: 0 + red: 52.2 + green: 82.8 + yellow: 77.3 + blue: 69.1 + magenta: 52.2 + cyan: 69.1 + white: 93.2 + brightBlack: 69.1 + brightRed: 52.2 + brightGreen: 82.8 + brightYellow: 77.3 + brightBlue: 69.1 + brightMagenta: 52.2 + brightCyan: 69.1 + brightWhite: 93.2 diff --git a/themes/limpo-dark.yaml b/themes/limpo-dark.yaml new file mode 100644 index 00000000..46c4d752 --- /dev/null +++ b/themes/limpo-dark.yaml @@ -0,0 +1,49 @@ +name: "limpo Dark" +source: + marketplace_id: "zieu.limpo" + version: "1.0.0" + installs: 218 + author: "zieu" + repo: "https://github.com/zieu/limpo" + url: "https://marketplace.visualstudio.com/items?itemName=zieu.limpo" +colors: + bg: "#18202B" + fg: "#D6D7DE" + black: "#000000" + red: "#FF8080" + green: "#0DBC79" + yellow: "#C4973F" + blue: "#309EFF" + magenta: "#796679" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF6C6C" + brightGreen: "#23D18B" + brightYellow: "#FFB352" + brightBlue: "#3B8EEA" + brightMagenta: "#D574D5" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 256 + contrast: + fg: 80.4 + black: 0 + red: 52.7 + green: 51.9 + yellow: 48 + blue: 46.2 + magenta: 23.5 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 47.3 + brightGreen: 62.5 + brightYellow: 68.1 + brightBlue: 38.9 + brightMagenta: 45.1 + brightCyan: 54.3 + brightWhite: 89 diff --git a/themes/limpo-darker.yaml b/themes/limpo-darker.yaml new file mode 100644 index 00000000..de448e40 --- /dev/null +++ b/themes/limpo-darker.yaml @@ -0,0 +1,49 @@ +name: "limpo Darker" +source: + marketplace_id: "zieu.limpo" + version: "1.0.0" + installs: 218 + author: "zieu" + repo: "https://github.com/zieu/limpo" + url: "https://marketplace.visualstudio.com/items?itemName=zieu.limpo" +colors: + bg: "#1B1E21" + fg: "#D6D7DE" + black: "#000000" + red: "#D16B6B" + green: "#0DBC79" + yellow: "#C4973F" + blue: "#2472C8" + magenta: "#796679" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF6C6C" + brightGreen: "#23D18B" + brightYellow: "#FFB352" + brightBlue: "#3B8EEA" + brightMagenta: "#D574D5" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 80.7 + black: 0 + red: 37.9 + green: 52.2 + yellow: 48.2 + blue: 26.6 + magenta: 23.8 + cyan: 46.8 + white: 89.2 + brightBlack: 21.3 + brightRed: 47.6 + brightGreen: 62.7 + brightYellow: 68.4 + brightBlue: 39.2 + brightMagenta: 45.3 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/linear-dark.yaml b/themes/linear-dark.yaml new file mode 100644 index 00000000..9b56064a --- /dev/null +++ b/themes/linear-dark.yaml @@ -0,0 +1,49 @@ +name: "Linear Dark" +source: + marketplace_id: "linear-app.linear-app-theme" + version: "1.0.0" + installs: 1 + author: "Linear" + repo: "https://github.com/linear/linear-theme" + url: "https://marketplace.visualstudio.com/items?itemName=linear-app.linear-app-theme" +colors: + bg: "#101012" + fg: "#E3E4E7" + black: "#101012" + red: "#FF9898" + green: "#59F3A6" + yellow: "#F3CF58" + blue: "#5896F3" + magenta: "#58EBDD" + cyan: "#55CDFF" + white: "#E3E4E7" + brightBlack: "#595A5C" + brightRed: "#FFB8BA" + brightGreen: "#7EF5B8" + brightYellow: "#F5DA7A" + brightBlue: "#7AB0F5" + brightMagenta: "#D5A0D0" + brightCyan: "#7EE2D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 90 + black: 0 + red: 62 + green: 83.2 + yellow: 78.9 + blue: 45.3 + magenta: 81.2 + cyan: 68.6 + white: 90 + brightBlack: 17.6 + brightRed: 74.2 + brightGreen: 86.6 + brightYellow: 84.5 + brightBlue: 57.6 + brightMagenta: 59.6 + brightCyan: 78.1 + brightWhite: 107.4 diff --git a/themes/linear-light.yaml b/themes/linear-light.yaml new file mode 100644 index 00000000..b17a6895 --- /dev/null +++ b/themes/linear-light.yaml @@ -0,0 +1,49 @@ +name: "Linear Light" +source: + marketplace_id: "linear-app.linear-app-theme" + version: "1.0.0" + installs: 1 + author: "Linear" + repo: "https://github.com/linear/linear-theme" + url: "https://marketplace.visualstudio.com/items?itemName=linear-app.linear-app-theme" +colors: + bg: "#FCFCFC" + fg: "#1A1A1F" + black: "#1A1A1F" + red: "#D93026" + green: "#26A148" + yellow: "#C4841D" + blue: "#5E6AD2" + magenta: "#A855C2" + cyan: "#1A9BA5" + white: "#E8E8EC" + brightBlack: "#6B6F76" + brightRed: "#E04E44" + brightGreen: "#3CB860" + brightYellow: "#D69A2E" + brightBlue: "#7E8AE2" + brightMagenta: "#C275D8" + brightCyan: "#30B3BF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.4 + black: 102.4 + red: 69.7 + green: 58.6 + yellow: 56.5 + blue: 70.6 + magenta: 68.4 + cyan: 58.6 + white: 9.2 + brightBlack: 73.1 + brightRed: 63.9 + brightGreen: 47.8 + brightYellow: 46.4 + brightBlue: 56.9 + brightMagenta: 55.6 + brightCyan: 47.3 + brightWhite: 0 diff --git a/themes/linkarzu-vscode-theme.yaml b/themes/linkarzu-vscode-theme.yaml new file mode 100644 index 00000000..4aa4e560 --- /dev/null +++ b/themes/linkarzu-vscode-theme.yaml @@ -0,0 +1,49 @@ +name: "Linkarzu VScode theme" +source: + marketplace_id: "linkarzu.linkarzu-vscolors" + version: "0.7.0" + installs: 492 + author: "linkarzu" + repo: "https://github.com/linkarzu/linkarzu-vscolors" + url: "https://marketplace.visualstudio.com/items?itemName=linkarzu.linkarzu-vscolors" +colors: + bg: "#0D1116" + fg: "#EBFAFA" + black: "#0D1116" + red: "#04D1F9" + green: "#5FA9F4" + yellow: "#1682EF" + blue: "#37F499" + magenta: "#1682EF" + cyan: "#19DFCF" + white: "#EBFAFA" + brightBlack: "#987AFB" + brightRed: "#04D1F9" + brightGreen: "#5FA9F4" + brightYellow: "#1682EF" + brightBlue: "#37F499" + brightMagenta: "#1682EF" + brightCyan: "#19DFCF" + brightWhite: "#EBFAFA" +meta: + mode: "dark" + accent: "teal" + hue: 254 + contrast: + fg: 102.1 + black: 0 + red: 68.7 + green: 53 + yellow: 36 + blue: 82.3 + magenta: 36 + cyan: 73.2 + white: 102.1 + brightBlack: 42 + brightRed: 68.7 + brightGreen: 53 + brightYellow: 36 + brightBlue: 82.3 + brightMagenta: 36 + brightCyan: 73.2 + brightWhite: 102.1 diff --git a/themes/lino-dark-ruby.yaml b/themes/lino-dark-ruby.yaml new file mode 100644 index 00000000..e99ac3db --- /dev/null +++ b/themes/lino-dark-ruby.yaml @@ -0,0 +1,49 @@ +name: "Lino - Dark Ruby" +source: + marketplace_id: "Lino.lino-themes" + version: "0.0.1" + installs: 270 + author: "Lino" + repo: "https://github.com/AronCodes21/lino-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Lino.lino-themes" +colors: + bg: "#0D0D0D" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#9B9B9B" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.6 + black: 0 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 48 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/lionel.yaml b/themes/lionel.yaml new file mode 100644 index 00000000..367aa569 --- /dev/null +++ b/themes/lionel.yaml @@ -0,0 +1,49 @@ +name: "Lionel" +source: + marketplace_id: "Tksi.lionel-theme" + version: "0.0.5" + installs: 256 + author: "Tksi" + repo: "https://github.com/Tksi/lionel-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Tksi.lionel-theme" +colors: + bg: "#2D2E30" + fg: "#ABB2BF" + black: "#2D3139" + red: "#FF4E6B" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C37AD2" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 55.7 + black: 0 + red: 39.1 + green: 58.6 + yellow: 66.9 + blue: 51 + magenta: 40.9 + cyan: 50.9 + white: 79.4 + brightBlack: 31.9 + brightRed: 34.8 + brightGreen: 58.6 + brightYellow: 66.9 + brightBlue: 37.8 + brightMagenta: 9.1 + brightCyan: 50.9 + brightWhite: 79.4 diff --git a/themes/liquid-dark.yaml b/themes/liquid-dark.yaml new file mode 100644 index 00000000..be5e7415 --- /dev/null +++ b/themes/liquid-dark.yaml @@ -0,0 +1,49 @@ +name: "Liquid Dark" +source: + marketplace_id: "dxp611.liquid-white" + version: "1.10.0" + installs: 1335 + author: "Dragos Popa" + repo: "https://github.com/dxp611/liquid-white" + url: "https://marketplace.visualstudio.com/items?itemName=dxp611.liquid-white" +colors: + bg: "#202124" + fg: "#E8EAED" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91.8 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/liquid-ochre.yaml b/themes/liquid-ochre.yaml new file mode 100644 index 00000000..a936c392 --- /dev/null +++ b/themes/liquid-ochre.yaml @@ -0,0 +1,49 @@ +name: "Liquid Ochre" +source: + marketplace_id: "dxp611.liquid-white" + version: "1.10.0" + installs: 1335 + author: "Dragos Popa" + repo: "https://github.com/dxp611/liquid-white" + url: "https://marketplace.visualstudio.com/items?itemName=dxp611.liquid-white" +colors: + bg: "#1A160A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 92 + contrast: + fg: 106.9 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/liquid-ray-light.yaml b/themes/liquid-ray-light.yaml new file mode 100644 index 00000000..bd92d1fe --- /dev/null +++ b/themes/liquid-ray-light.yaml @@ -0,0 +1,49 @@ +name: "Liquid Ray Light" +source: + marketplace_id: "wiidede.liquid-ray" + version: "1.2.2" + installs: 1903 + author: "wiidede" + repo: "https://github.com/wiidede/Liquid-Ray" + url: "https://marketplace.visualstudio.com/items?itemName=wiidede.liquid-ray" +colors: + bg: "#FFFFFF" + fg: "#606060" + black: "#252526" + red: "#FF7477" + green: "#44D62C" + yellow: "#FFCE0E" + blue: "#00BFFF" + magenta: "#FF2BD3" + cyan: "#00B796" + white: "#ACA79F" + brightBlack: "#AAAAAA" + brightRed: "#FF7477" + brightGreen: "#44D62C" + brightYellow: "#FFCE0E" + brightBlue: "#00BFFF" + brightMagenta: "#FF2BD3" + brightCyan: "#00B796" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 81.3 + black: 102.2 + red: 50.5 + green: 36.3 + yellow: 22.8 + blue: 40.9 + magenta: 57.4 + cyan: 49.4 + white: 47.1 + brightBlack: 45.8 + brightRed: 50.5 + brightGreen: 36.3 + brightYellow: 22.8 + brightBlue: 40.9 + brightMagenta: 57.4 + brightCyan: 49.4 + brightWhite: 17.6 diff --git a/themes/liquid-ray.yaml b/themes/liquid-ray.yaml new file mode 100644 index 00000000..710f292f --- /dev/null +++ b/themes/liquid-ray.yaml @@ -0,0 +1,49 @@ +name: "Liquid Ray" +source: + marketplace_id: "wiidede.liquid-ray" + version: "1.2.2" + installs: 1903 + author: "wiidede" + repo: "https://github.com/wiidede/Liquid-Ray" + url: "https://marketplace.visualstudio.com/items?itemName=wiidede.liquid-ray" +colors: + bg: "#252526" + fg: "#ACA79F" + black: "#606060" + red: "#FF7276" + green: "#44D62C" + yellow: "#FFE900" + blue: "#009ACE" + magenta: "#EA27C2" + cyan: "#00B796" + white: "#ACA79F" + brightBlack: "#777777" + brightRed: "#FF7276" + brightGreen: "#44D62C" + brightYellow: "#FFE900" + brightBlue: "#009ACE" + brightMagenta: "#EA27C2" + brightCyan: "#00B796" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 52 + black: 17.6 + red: 48 + green: 63.2 + yellow: 89.3 + blue: 40 + magenta: 35.3 + cyan: 49.6 + white: 52 + brightBlack: 27.6 + brightRed: 48 + brightGreen: 63.2 + brightYellow: 89.3 + brightBlue: 40 + brightMagenta: 35.3 + brightCyan: 49.6 + brightWhite: 105 diff --git a/themes/liquor-theme.yaml b/themes/liquor-theme.yaml new file mode 100644 index 00000000..959e1d20 --- /dev/null +++ b/themes/liquor-theme.yaml @@ -0,0 +1,49 @@ +name: "Liquor Theme" +source: + marketplace_id: "gen9009.Liquor-Theme" + version: "0.0.7" + installs: 36 + author: "gen9009" + repo: "https://github.com/gen9009/Liquor-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=gen9009.Liquor-Theme" +colors: + bg: "#0A0A0A" + fg: "#595959" + black: "#000000" + red: "#D81E00" + green: "#7D9D56" + yellow: "#A4755D" + blue: "#6183A5" + magenta: "#89658E" + cyan: "#00A7AA" + white: "#515050" + brightBlack: "#686A66" + brightRed: "#BD736E" + brightGreen: "#88AA61" + brightYellow: "#AF513A" + brightBlue: "#739ABE" + brightMagenta: "#B772AE" + brightCyan: "#63B4B6" + brightWhite: "#BEBEBB" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 17.5 + black: 0 + red: 28.5 + green: 44 + yellow: 34.5 + blue: 34.6 + magenta: 27.9 + cyan: 46.2 + white: 14.1 + brightBlack: 24.3 + brightRed: 38.2 + brightGreen: 50.5 + brightYellow: 26.5 + brightBlue: 45.5 + brightMagenta: 39.4 + brightCyan: 54.7 + brightWhite: 67.2 diff --git a/themes/liquorice.yaml b/themes/liquorice.yaml new file mode 100644 index 00000000..6e0f4c41 --- /dev/null +++ b/themes/liquorice.yaml @@ -0,0 +1,49 @@ +name: "Liquorice" +source: + marketplace_id: "walele993.fable-code-theme" + version: "1.2.0" + installs: 46 + author: "Gabriele Meucci" + repo: "https://github.com/walele993/fable_a_vsc_theme" + url: "https://marketplace.visualstudio.com/items?itemName=walele993.fable-code-theme" +colors: + bg: "#000000" + fg: "#CCCCCC" + black: "#000000" + red: "#D16D9C" + green: "#A3C9A3" + yellow: "#C49B6C" + blue: "#9E7EBE" + magenta: "#FF7EB6" + cyan: "#A3C9A3" + white: "#CCCCCC" + brightBlack: "#4A4A4A" + brightRed: "#D16D9C" + brightGreen: "#A3C9A3" + brightYellow: "#C49B6C" + brightBlue: "#9E7EBE" + brightMagenta: "#FF7EB6" + brightCyan: "#A3C9A3" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 75.7 + black: 0 + red: 41.8 + green: 68.2 + yellow: 52.2 + blue: 40.3 + magenta: 56.1 + cyan: 68.2 + white: 75.7 + brightBlack: 12 + brightRed: 41.8 + brightGreen: 68.2 + brightYellow: 52.2 + brightBlue: 40.3 + brightMagenta: 56.1 + brightCyan: 68.2 + brightWhite: 75.7 diff --git a/themes/little-league-dark.yaml b/themes/little-league-dark.yaml new file mode 100644 index 00000000..29c52b37 --- /dev/null +++ b/themes/little-league-dark.yaml @@ -0,0 +1,49 @@ +name: "Little League Dark" +source: + marketplace_id: "MatthewStrom.little-league" + version: "1.3.1" + installs: 565 + author: "Matthew Ström" + repo: "https://github.com/ilikescience/little-league" + url: "https://marketplace.visualstudio.com/items?itemName=MatthewStrom.little-league" +colors: + bg: "#28282D" + fg: "#EDEDED" + black: "#28282D" + red: "#F78C6C" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#89B4FE" + magenta: "#CF89FE" + cyan: "#64B5F6" + white: "#EDEDED" + brightBlack: "#8D8D8E" + brightRed: "#EF6C6A" + brightGreen: "#99C88D" + brightYellow: "#F9E59B" + brightBlue: "#6494F6" + brightMagenta: "#BB64F6" + brightCyan: "#78CAFB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 52.5 + green: 81.7 + yellow: 76.4 + blue: 57.9 + magenta: 51 + cyan: 55.2 + white: 92.6 + brightBlack: 37.6 + brightRed: 42.3 + brightGreen: 62.6 + brightYellow: 87.7 + brightBlue: 42.4 + brightMagenta: 37.8 + brightCyan: 65.7 + brightWhite: 104.4 diff --git a/themes/little-league-darker.yaml b/themes/little-league-darker.yaml new file mode 100644 index 00000000..0a494164 --- /dev/null +++ b/themes/little-league-darker.yaml @@ -0,0 +1,49 @@ +name: "Little League Darker" +source: + marketplace_id: "MatthewStrom.little-league" + version: "1.3.1" + installs: 565 + author: "Matthew Ström" + repo: "https://github.com/ilikescience/little-league" + url: "https://marketplace.visualstudio.com/items?itemName=MatthewStrom.little-league" +colors: + bg: "#1B1B1E" + fg: "#EDEDED" + black: "#28282D" + red: "#F78C6C" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#89B4FE" + magenta: "#CF89FE" + cyan: "#64B5F6" + white: "#EDEDED" + brightBlack: "#8D8D8E" + brightRed: "#EF6C6A" + brightGreen: "#99C88D" + brightYellow: "#F9E59B" + brightBlue: "#6494F6" + brightMagenta: "#BB64F6" + brightCyan: "#78CAFB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 94.6 + black: 0 + red: 54.5 + green: 83.7 + yellow: 78.5 + blue: 59.9 + magenta: 53.1 + cyan: 57.3 + white: 94.6 + brightBlack: 39.6 + brightRed: 44.4 + brightGreen: 64.6 + brightYellow: 89.7 + brightBlue: 44.5 + brightMagenta: 39.8 + brightCyan: 67.8 + brightWhite: 106.4 diff --git a/themes/little-league-light.yaml b/themes/little-league-light.yaml new file mode 100644 index 00000000..868ecb4e --- /dev/null +++ b/themes/little-league-light.yaml @@ -0,0 +1,49 @@ +name: "Little League Light" +source: + marketplace_id: "MatthewStrom.little-league" + version: "1.3.1" + installs: 565 + author: "Matthew Ström" + repo: "https://github.com/ilikescience/little-league" + url: "https://marketplace.visualstudio.com/items?itemName=MatthewStrom.little-league" +colors: + bg: "#FFFFFF" + fg: "#5A5A5D" + black: "#F5F5F5" + red: "#CA7967" + green: "#4E864E" + yellow: "#A8853D" + blue: "#4771E2" + magenta: "#A447E2" + cyan: "#3472C7" + white: "#35353B" + brightBlack: "#5A5A5D" + brightRed: "#EF6C6A" + brightGreen: "#AED88D" + brightYellow: "#D5A23C" + brightBlue: "#6494F6" + brightMagenta: "#BB64F6" + brightCyan: "#4095DF" + brightWhite: "#5A5A5D" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 83.8 + black: 0 + red: 59.7 + green: 69.9 + yellow: 61.9 + blue: 70.4 + magenta: 71 + cyan: 72.9 + white: 97.8 + brightBlack: 83.8 + brightRed: 55.9 + brightGreen: 27.5 + brightYellow: 45.5 + brightBlue: 55.8 + brightMagenta: 60.4 + brightCyan: 58.8 + brightWhite: 83.8 diff --git a/themes/lives.yaml b/themes/lives.yaml new file mode 100644 index 00000000..7efd4634 --- /dev/null +++ b/themes/lives.yaml @@ -0,0 +1,49 @@ +name: "LiveS" +source: + marketplace_id: "devarci.livesignage" + version: "0.1.0" + installs: 412 + author: "Lorenzo Arcidiacono" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=devarci.livesignage" +colors: + bg: "#1B1B1B" + fg: "#E8E8E8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91.5 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/living-twilight.yaml b/themes/living-twilight.yaml new file mode 100644 index 00000000..f211f4f0 --- /dev/null +++ b/themes/living-twilight.yaml @@ -0,0 +1,49 @@ +name: "Living Twilight" +source: + marketplace_id: "illumincrotty.living-twilight" + version: "1.0.2" + installs: 648 + author: "illumincrotty" + repo: "https://github.com/illumincrotty/VSCode-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=illumincrotty.living-twilight" +colors: + bg: "#1B1B1D" + fg: "#BEBABF" + black: "#868686" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E1C542" + blue: "#469DF1" + magenta: "#BC3FBC" + cyan: "#39CDE2" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFE05B" + brightBlue: "#74BCFF" + brightMagenta: "#D670D6" + brightCyan: "#74F2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 64.4 + black: 36.2 + red: 26.2 + green: 52.5 + yellow: 70.7 + blue: 46 + magenta: 29.3 + cyan: 65.1 + white: 79 + brightBlack: 55.3 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 87.2 + brightBlue: 61.7 + brightMagenta: 44.9 + brightCyan: 86.6 + brightWhite: 106.4 diff --git a/themes/lncoder-theme.yaml b/themes/lncoder-theme.yaml new file mode 100644 index 00000000..994903c4 --- /dev/null +++ b/themes/lncoder-theme.yaml @@ -0,0 +1,49 @@ +name: "Lncoder_theme" +source: + marketplace_id: "Lncoder.lncoder" + version: "0.0.1" + installs: 58 + author: "Lncoder" + repo: "https://github.com/Lncod3r/vscode_theme.git#main" + url: "https://marketplace.visualstudio.com/items?itemName=Lncoder.lncoder" +colors: + bg: "#1F1F1F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.5 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/lofi.yaml b/themes/lofi.yaml new file mode 100644 index 00000000..2d142946 --- /dev/null +++ b/themes/lofi.yaml @@ -0,0 +1,49 @@ +name: "Lofi" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 80 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" +colors: + bg: "#FAF8F5" + fg: "#2E2C2B" + black: "#BCB8B1" + red: "#E07A5F" + green: "#B5E48C" + yellow: "#F2CC8F" + blue: "#84A59D" + magenta: "#DDBEA9" + cyan: "#8EC5FC" + white: "#2E2C2B" + brightBlack: "#BCB8B1" + brightRed: "#E29578" + brightGreen: "#C1E1C1" + brightYellow: "#FFE8A3" + brightBlue: "#A0C4FF" + brightMagenta: "#E9CFC4" + brightCyan: "#B6DFF7" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.5 + black: 34.1 + red: 51.6 + green: 17.5 + yellow: 20.1 + blue: 47.9 + magenta: 27.8 + cyan: 29.8 + white: 96.5 + brightBlack: 34.1 + brightRed: 42.8 + brightGreen: 16.1 + brightYellow: 0 + brightBlue: 28.5 + brightMagenta: 18.6 + brightCyan: 15.7 + brightWhite: 102 diff --git a/themes/loki-official-classic.yaml b/themes/loki-official-classic.yaml new file mode 100644 index 00000000..23589071 --- /dev/null +++ b/themes/loki-official-classic.yaml @@ -0,0 +1,49 @@ +name: "Loki Official - Classic" +source: + marketplace_id: "SeuFernandez.loki-official-theme" + version: "0.1.53" + installs: 1880 + author: "SeuFernandez" + repo: "https://github.com/seufernandez/loki-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SeuFernandez.loki-official-theme" +colors: + bg: "#1D1D1D" + fg: "#F8F8F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.3 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/loki-official-kang-edition.yaml b/themes/loki-official-kang-edition.yaml new file mode 100644 index 00000000..51a54cd3 --- /dev/null +++ b/themes/loki-official-kang-edition.yaml @@ -0,0 +1,49 @@ +name: "Loki Official - Kang Edition" +source: + marketplace_id: "SeuFernandez.loki-official-theme" + version: "0.1.53" + installs: 1880 + author: "SeuFernandez" + repo: "https://github.com/seufernandez/loki-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SeuFernandez.loki-official-theme" +colors: + bg: "#1D1C24" + fg: "#F8F8F2" + black: "#151320" + red: "#FF5555" + green: "#8AFF80" + yellow: "#FFFF80" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#80FFEA" + white: "#F8F8F2" + brightBlack: "#5F5594" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 291 + contrast: + fg: 101.3 + black: 0 + red: 42.7 + green: 89.7 + yellow: 102 + blue: 53 + magenta: 53.9 + cyan: 92.6 + white: 101.3 + brightBlack: 17.9 + brightRed: 48.1 + brightGreen: 88.4 + brightYellow: 102.9 + brightBlue: 65.4 + brightMagenta: 61.9 + brightCyan: 96.1 + brightWhite: 106.2 diff --git a/themes/loki-theme-contrast.yaml b/themes/loki-theme-contrast.yaml new file mode 100644 index 00000000..48ff70ee --- /dev/null +++ b/themes/loki-theme-contrast.yaml @@ -0,0 +1,49 @@ +name: "Loki Theme Contrast" +source: + marketplace_id: "Outbound.loki-theme" + version: "0.1.4" + installs: 427 + author: "Outbound" + repo: "https://github.com/melquisedecfelipe/loki-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Outbound.loki-theme" +colors: + bg: "#121212" + fg: "#E4E4E7" + black: "#18181B" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#D946EF" + cyan: "#06B6D4" + white: "#FAFAFA" + brightBlack: "#18181B" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#D946EF" + brightCyan: "#06B6D4" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 90 + black: 0 + red: 37.3 + green: 57.2 + yellow: 65.5 + blue: 37.2 + magenta: 40.2 + cyan: 54.3 + white: 104 + brightBlack: 0 + brightRed: 37.3 + brightGreen: 57.2 + brightYellow: 65.5 + brightBlue: 37.2 + brightMagenta: 40.2 + brightCyan: 54.3 + brightWhite: 104 diff --git a/themes/loki-theme.yaml b/themes/loki-theme.yaml new file mode 100644 index 00000000..582048f0 --- /dev/null +++ b/themes/loki-theme.yaml @@ -0,0 +1,49 @@ +name: "Loki Theme" +source: + marketplace_id: "Outbound.loki-theme" + version: "0.1.4" + installs: 427 + author: "Outbound" + repo: "https://github.com/melquisedecfelipe/loki-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Outbound.loki-theme" +colors: + bg: "#121212" + fg: "#E5E5E5" + black: "#18181B" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#D946EF" + cyan: "#06B6D4" + white: "#FAFAFA" + brightBlack: "#18181B" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#D946EF" + brightCyan: "#06B6D4" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 90.4 + black: 0 + red: 37.3 + green: 57.2 + yellow: 65.5 + blue: 37.2 + magenta: 40.2 + cyan: 54.3 + white: 104 + brightBlack: 0 + brightRed: 37.3 + brightGreen: 57.2 + brightYellow: 65.5 + brightBlue: 37.2 + brightMagenta: 40.2 + brightCyan: 54.3 + brightWhite: 104 diff --git a/themes/lolo.yaml b/themes/lolo.yaml new file mode 100644 index 00000000..1e5c4885 --- /dev/null +++ b/themes/lolo.yaml @@ -0,0 +1,49 @@ +name: "lolo" +source: + marketplace_id: "Alencar26.lolo" + version: "0.0.2" + installs: 12 + author: "André Alencar" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Alencar26.lolo" +colors: + bg: "#282F34" + fg: "#BBBBBB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 239 + contrast: + fg: 61.1 + black: 0 + red: 23 + green: 49.3 + yellow: 81.9 + blue: 23.8 + magenta: 26.1 + cyan: 43.9 + white: 86.3 + brightBlack: 18.4 + brightRed: 34.9 + brightGreen: 59.9 + brightYellow: 92 + brightBlue: 36.3 + brightMagenta: 41.7 + brightCyan: 51.7 + brightWhite: 86.3 diff --git a/themes/lone-wolf-dark.yaml b/themes/lone-wolf-dark.yaml new file mode 100644 index 00000000..1445cfaa --- /dev/null +++ b/themes/lone-wolf-dark.yaml @@ -0,0 +1,49 @@ +name: "Lone wolf dark" +source: + marketplace_id: "Sidwebworks.lone-wolf-dark" + version: "0.0.1" + installs: 741 + author: "Sidwebworks" + repo: "https://github.com/sidwebworks/lone-wolf-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Sidwebworks.lone-wolf-dark" +colors: + bg: "#181818" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#1DB0A4" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#1DB0A4" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 81.2 + black: 0 + red: 40.7 + green: 49 + yellow: 75.5 + blue: 41.2 + magenta: 43.8 + cyan: 49.2 + white: 81.2 + brightBlack: 29.4 + brightRed: 40.7 + brightGreen: 49 + brightYellow: 75.5 + brightBlue: 41.2 + brightMagenta: 43.8 + brightCyan: 49.2 + brightWhite: 106.8 diff --git a/themes/lonely.yaml b/themes/lonely.yaml new file mode 100644 index 00000000..4783436c --- /dev/null +++ b/themes/lonely.yaml @@ -0,0 +1,49 @@ +name: "Lonely" +source: + marketplace_id: "Rajdeep-Ray.lonely-theme" + version: "0.0.2" + installs: 1214 + author: "Rajdeep Ray" + repo: "https://github.com/Rajdeep-Ray/Lonely-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Rajdeep-Ray.lonely-theme" +colors: + bg: "#24292E" + fg: "#EEFFFF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 248 + contrast: + fg: 102 + black: 0 + red: 34.2 + green: 57.8 + yellow: 46.1 + blue: 47.1 + magenta: 36.5 + cyan: 50 + white: 88.1 + brightBlack: 12.9 + brightRed: 43.6 + brightGreen: 74.3 + brightYellow: 58.7 + brightBlue: 61.2 + brightMagenta: 47.7 + brightCyan: 65.3 + brightWhite: 80.5 diff --git a/themes/lonus-dark.yaml b/themes/lonus-dark.yaml new file mode 100644 index 00000000..e3e69488 --- /dev/null +++ b/themes/lonus-dark.yaml @@ -0,0 +1,49 @@ +name: "lonus-dark" +source: + marketplace_id: "Aerglonus.Lonus-dark" + version: "1.3.1" + installs: 10556 + author: "Aerglonus" + repo: "https://github.com/Aerglonus/lonus-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Aerglonus.Lonus-dark" +colors: + bg: "#1C1D21" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.8 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29 + cyan: 46.8 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.8 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/lookify-dark-mode.yaml b/themes/lookify-dark-mode.yaml new file mode 100644 index 00000000..11021c87 --- /dev/null +++ b/themes/lookify-dark-mode.yaml @@ -0,0 +1,49 @@ +name: "LookiFy Dark mode" +source: + marketplace_id: "prince.lookify" + version: "0.1.0" + installs: 639 + author: "prince" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=prince.lookify" +colors: + bg: "#1B1E28" + fg: "#E1E3E6" + black: "#1C1F27" + red: "#FF6F61" + green: "#61D1B2" + yellow: "#FFD580" + blue: "#3C91E6" + magenta: "#E798B3" + cyan: "#61D1B2" + white: "#A4B9C9" + brightBlack: "#4B6075" + brightRed: "#FF9282" + brightGreen: "#61D1B2" + brightYellow: "#FFD580" + brightBlue: "#3C91E6" + brightMagenta: "#E798B3" + brightCyan: "#61D1B2" + brightWhite: "#E1E3E6" +meta: + mode: "dark" + accent: "orange" + hue: 272 + contrast: + fg: 87.8 + black: 0 + red: 47.9 + green: 65.7 + yellow: 82.6 + blue: 40 + magenta: 57.1 + cyan: 65.7 + white: 61.1 + brightBlack: 17.8 + brightRed: 58 + brightGreen: 65.7 + brightYellow: 82.6 + brightBlue: 40 + brightMagenta: 57.1 + brightCyan: 65.7 + brightWhite: 87.8 diff --git a/themes/lookify-light-mode.yaml b/themes/lookify-light-mode.yaml new file mode 100644 index 00000000..75061d35 --- /dev/null +++ b/themes/lookify-light-mode.yaml @@ -0,0 +1,49 @@ +name: "LookiFy Light mode" +source: + marketplace_id: "prince.lookify" + version: "0.1.0" + installs: 639 + author: "prince" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=prince.lookify" +colors: + bg: "#F6F7FA" + fg: "#2C2C2C" + black: "#F0F8FC" + red: "#D74C3C" + green: "#61D1B2" + yellow: "#FFD64D" + blue: "#3A8DD5" + magenta: "#E2A3B8" + cyan: "#61D1B2" + white: "#2C2C2C" + brightBlack: "#A8C8E9" + brightRed: "#FF6F61" + brightGreen: "#00B300" + brightYellow: "#FFFF00" + brightBlue: "#007FFF" + brightMagenta: "#D74C3C" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 95.8 + black: 0 + red: 63.3 + green: 30.2 + yellow: 14.5 + blue: 57.8 + magenta: 35.5 + cyan: 30.2 + white: 95.8 + brightBlack: 26.7 + brightRed: 47.3 + brightGreen: 48.5 + brightYellow: 0 + brightBlue: 60.1 + brightMagenta: 63.3 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/looped.yaml b/themes/looped.yaml new file mode 100644 index 00000000..68995a12 --- /dev/null +++ b/themes/looped.yaml @@ -0,0 +1,49 @@ +name: "looped" +source: + marketplace_id: "RatulMaharaj.nightwind" + version: "0.0.6" + installs: 827 + author: "Ratul Maharaj" + repo: "https://github.com/RatulMaharaj/nightwind" + url: "https://marketplace.visualstudio.com/items?itemName=RatulMaharaj.nightwind" +colors: + bg: "#111827" + fg: "#F9FAFB" + black: "#616161" + red: "#EF4444" + green: "#84CC16" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#8B5CF6" + cyan: "#0891B2" + white: "#F9FAFB" + brightBlack: "#616161" + brightRed: "#DC2626" + brightGreen: "#A3E635" + brightYellow: "#FACC15" + brightBlue: "#2563EB" + brightMagenta: "#7C3AED" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 265 + contrast: + fg: 103.3 + black: 19.8 + red: 36.7 + green: 63.4 + yellow: 64.9 + blue: 36.6 + magenta: 31.8 + cyan: 36.7 + white: 103.3 + brightBlack: 19.8 + brightRed: 29 + brightGreen: 78.5 + brightYellow: 77.6 + brightBlue: 25.7 + brightMagenta: 23.1 + brightCyan: 53.7 + brightWhite: 106.7 diff --git a/themes/loopy.yaml b/themes/loopy.yaml new file mode 100644 index 00000000..156ac1b2 --- /dev/null +++ b/themes/loopy.yaml @@ -0,0 +1,49 @@ +name: "Loopy" +source: + marketplace_id: "kokoscript.loopytheme" + version: "1.0.1" + installs: 465 + author: "kokoscript" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kokoscript.loopytheme" +colors: + bg: "#333355" + fg: "#FFFFFF" + black: "#04002E" + red: "#F06191" + green: "#63E99A" + yellow: "#FFE666" + blue: "#61F2DC" + magenta: "#C573DD" + cyan: "#61F2DC" + white: "#FFFFFF" + brightBlack: "#07004B" + brightRed: "#F06191" + brightGreen: "#63E99A" + brightYellow: "#FFE666" + brightBlue: "#61F2DC" + brightMagenta: "#C573DD" + brightCyan: "#61F2DC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 283 + contrast: + fg: 101 + black: 0 + red: 38 + green: 71.7 + yellow: 84.7 + blue: 78.6 + magenta: 37.8 + cyan: 78.6 + white: 101 + brightBlack: 0 + brightRed: 38 + brightGreen: 71.7 + brightYellow: 84.7 + brightBlue: 78.6 + brightMagenta: 37.8 + brightCyan: 78.6 + brightWhite: 101 diff --git a/themes/lore.yaml b/themes/lore.yaml new file mode 100644 index 00000000..8b5b7e4d --- /dev/null +++ b/themes/lore.yaml @@ -0,0 +1,49 @@ +name: "lore" +source: + marketplace_id: "Volskaya.irrelevant" + version: "0.0.2" + installs: 33 + author: "Volskaya" + repo: "https://github.com/volskaya/irrelevant" + url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#1C1C1C" + red: "#A39A89" + green: "#E2CC9E" + yellow: "#A39A89" + blue: "#878787" + magenta: "#979797" + cyan: "#A6A6A6" + white: "#444444" + brightBlack: "#666666" + brightRed: "#A39A89" + brightGreen: "#E2CC9E" + brightYellow: "#DDDDDD" + brightBlue: "#878787" + brightMagenta: "#979797" + brightCyan: "#A6A6A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 46.6 + green: 75.4 + yellow: 46.6 + blue: 36.6 + magenta: 44.6 + cyan: 52.5 + white: 8.3 + brightBlack: 21.5 + brightRed: 46.6 + brightGreen: 75.4 + brightYellow: 84.4 + brightBlue: 36.6 + brightMagenta: 44.6 + brightCyan: 52.5 + brightWhite: 106.3 diff --git a/themes/lostforindia.yaml b/themes/lostforindia.yaml new file mode 100644 index 00000000..42b861e7 --- /dev/null +++ b/themes/lostforindia.yaml @@ -0,0 +1,49 @@ +name: "LostforIndia" +source: + marketplace_id: "LostforIndia.LostforIndia" + version: "2.1.0" + installs: 33 + author: "Lost for India" + repo: "https://github.com/ashut0shk/LostforIndia" + url: "https://marketplace.visualstudio.com/items?itemName=LostforIndia.LostforIndia" +colors: + bg: "#FDFDFE" + fg: "#9AA83A" + black: "#F7F6F9" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FDFDFE" + brightBlack: "#B7B3CC" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FDFDFE" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 49.7 + black: 0 + red: 53.1 + green: 17.2 + yellow: 22.1 + blue: 44 + magenta: 46.1 + cyan: 22.8 + white: 0 + brightBlack: 38.4 + brightRed: 53.1 + brightGreen: 17.2 + brightYellow: 22.1 + brightBlue: 44 + brightMagenta: 46.1 + brightCyan: 22.8 + brightWhite: 0 diff --git a/themes/lotus-dark.yaml b/themes/lotus-dark.yaml new file mode 100644 index 00000000..09b7e18e --- /dev/null +++ b/themes/lotus-dark.yaml @@ -0,0 +1,49 @@ +name: "Lotus Dark" +source: + marketplace_id: "SkyLiss.lotus-theme" + version: "1.1.5" + installs: 12508 + author: "SkyLissh" + repo: "https://github.com/SkyLissh/lotus-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SkyLiss.lotus-theme" +colors: + bg: "#222222" + fg: "#FCFCFA" + black: "#222222" + red: "#D33C62" + green: "#81B84A" + yellow: "#C09C31" + blue: "#D97645" + magenta: "#7B6CC9" + cyan: "#4EADB8" + white: "#939293" + brightBlack: "#595959" + brightRed: "#FF6188" + brightGreen: "#A9DC76" + brightYellow: "#FFF48A" + brightBlue: "#FC9867" + brightMagenta: "#AB9DF2" + brightCyan: "#78DCE8" + brightWhite: "#FCFCFA" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 103.4 + black: 0 + red: 28.7 + green: 53.2 + yellow: 48.7 + blue: 40.9 + magenta: 29.3 + cyan: 48.5 + white: 41.3 + brightBlack: 15.3 + brightRed: 45.4 + brightGreen: 73.9 + brightYellow: 96.2 + brightBlue: 58.2 + brightMagenta: 52.8 + brightCyan: 74 + brightWhite: 103.4 diff --git a/themes/lotus-flat-dusk.yaml b/themes/lotus-flat-dusk.yaml new file mode 100644 index 00000000..7d41a61a --- /dev/null +++ b/themes/lotus-flat-dusk.yaml @@ -0,0 +1,49 @@ +name: "Lotus Flat Dusk" +source: + marketplace_id: "alewtschuk.lotus-flat-dark-theme" + version: "2.0.0" + installs: 394 + author: "alewtschuk" + repo: "https://github.com/alewtschuk/lotus-flat-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=alewtschuk.lotus-flat-dark-theme" +colors: + bg: "#131419" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 276 + contrast: + fg: 59.6 + black: 9.1 + red: 37 + green: 60.6 + yellow: 48.8 + blue: 49.9 + magenta: 39.3 + cyan: 52.8 + white: 83.3 + brightBlack: 15.7 + brightRed: 46.3 + brightGreen: 77 + brightYellow: 61.5 + brightBlue: 64 + brightMagenta: 50.5 + brightCyan: 68.1 + brightWhite: 90.9 diff --git a/themes/lotus-flat-midnight.yaml b/themes/lotus-flat-midnight.yaml new file mode 100644 index 00000000..6d8f9cab --- /dev/null +++ b/themes/lotus-flat-midnight.yaml @@ -0,0 +1,49 @@ +name: "Lotus Flat Midnight" +source: + marketplace_id: "alewtschuk.lotus-flat-dark-theme" + version: "2.0.0" + installs: 394 + author: "alewtschuk" + repo: "https://github.com/alewtschuk/lotus-flat-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=alewtschuk.lotus-flat-dark-theme" +colors: + bg: "#08090A" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.3 + black: 9.7 + red: 37.6 + green: 61.3 + yellow: 49.5 + blue: 50.6 + magenta: 40 + cyan: 53.4 + white: 83.9 + brightBlack: 16.4 + brightRed: 47 + brightGreen: 77.7 + brightYellow: 62.1 + brightBlue: 64.6 + brightMagenta: 51.2 + brightCyan: 68.7 + brightWhite: 91.5 diff --git a/themes/lotus-light.yaml b/themes/lotus-light.yaml new file mode 100644 index 00000000..8ba7cd0b --- /dev/null +++ b/themes/lotus-light.yaml @@ -0,0 +1,49 @@ +name: "Lotus Light" +source: + marketplace_id: "SkyLiss.lotus-theme" + version: "1.1.5" + installs: 12508 + author: "SkyLissh" + repo: "https://github.com/SkyLissh/lotus-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SkyLiss.lotus-theme" +colors: + bg: "#FFF0F6" + fg: "#121212" + black: "#222222" + red: "#D33C62" + green: "#81B84A" + yellow: "#C09C31" + blue: "#D97645" + magenta: "#7B6CC9" + cyan: "#4EADB8" + white: "#C7C7C5" + brightBlack: "#595959" + brightRed: "#FF6188" + brightGreen: "#6FDE00" + brightYellow: "#CF9A00" + brightBlue: "#FC9867" + brightMagenta: "#836DF2" + brightCyan: "#78DCE8" + brightWhite: "#C7C7C5" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 98.5 + black: 96.2 + red: 63.8 + green: 39.7 + yellow: 44.1 + blue: 51.7 + magenta: 63.2 + cyan: 44.3 + white: 23.5 + brightBlack: 77.6 + brightRed: 47.3 + brightGreen: 24.2 + brightYellow: 42.7 + brightBlue: 34.9 + brightMagenta: 59.1 + brightCyan: 19.9 + brightWhite: 23.5 diff --git a/themes/lovepurple.yaml b/themes/lovepurple.yaml new file mode 100644 index 00000000..285b0de5 --- /dev/null +++ b/themes/lovepurple.yaml @@ -0,0 +1,49 @@ +name: "LovePurple" +source: + marketplace_id: "MahdiBehkar.lovely-purple-theme" + version: "0.0.4" + installs: 3146 + author: "MahdiBehkar" + repo: "https://codeberg.org/behkar/lovely_purple_theme" + url: "https://marketplace.visualstudio.com/items?itemName=MahdiBehkar.lovely-purple-theme" +colors: + bg: "#CD9EF7" + fg: "#F7F7F7" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 308 + contrast: + fg: 41.2 + black: 62.1 + red: 30.1 + green: 0 + yellow: 14 + blue: 42.1 + magenta: 30.7 + cyan: 16.7 + white: 42 + brightBlack: 34.8 + brightRed: 30.1 + brightGreen: 0 + brightYellow: 0 + brightBlue: 42.1 + brightMagenta: 30.7 + brightCyan: 16.7 + brightWhite: 0 diff --git a/themes/lowlvl.yaml b/themes/lowlvl.yaml new file mode 100644 index 00000000..fe39fad9 --- /dev/null +++ b/themes/lowlvl.yaml @@ -0,0 +1,49 @@ +name: "lowlvl" +source: + marketplace_id: "Ben-Whitesell.lowlvl" + version: "0.3.0" + installs: 1104 + author: "Ben-Whitesell" + repo: "https://github.com/bwhitesell/LowLVL/" + url: "https://marketplace.visualstudio.com/items?itemName=Ben-Whitesell.lowlvl" +colors: + bg: "#313233" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 100 + black: 0 + red: 39.1 + green: 79.6 + yellow: 74.4 + blue: 51.4 + magenta: 49.2 + cyan: 73.7 + white: 102.3 + brightBlack: 0 + brightRed: 39.1 + brightGreen: 79.6 + brightYellow: 74.4 + brightBlue: 51.4 + brightMagenta: 49.2 + brightCyan: 73.7 + brightWhite: 102.3 diff --git a/themes/loyal-contrast.yaml b/themes/loyal-contrast.yaml new file mode 100644 index 00000000..1b174674 --- /dev/null +++ b/themes/loyal-contrast.yaml @@ -0,0 +1,49 @@ +name: "loyal-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#1D1B23" + fg: "#BBB1C9" + black: "#292631" + red: "#BA0E2E" + green: "#3CBBB1" + yellow: "#EE4266" + blue: "#B3ADBA" + magenta: "#9484D6" + cyan: "#B3ADBA" + white: "#C8C0D3" + brightBlack: "#4D475D" + brightRed: "#F03E5F" + brightGreen: "#85D8D1" + brightYellow: "#F6A0B2" + brightBlue: "#E6E4E9" + brightMagenta: "#D7D0EF" + brightCyan: "#E6E4E9" + brightWhite: "#F0EDF3" +meta: + mode: "dark" + accent: "orange" + hue: 297 + contrast: + fg: 60.8 + black: 0 + red: 19.9 + green: 54.5 + yellow: 36.4 + blue: 57.5 + magenta: 40.8 + cyan: 57.5 + white: 68.9 + brightBlack: 10.4 + brightRed: 36.2 + brightGreen: 72.7 + brightYellow: 62.7 + brightBlue: 89.3 + brightMagenta: 78.9 + brightCyan: 89.3 + brightWhite: 95.2 diff --git a/themes/loyal-light.yaml b/themes/loyal-light.yaml new file mode 100644 index 00000000..f1274a66 --- /dev/null +++ b/themes/loyal-light.yaml @@ -0,0 +1,49 @@ +name: "loyal-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#413E4F" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#3CBBB1" + yellow: "#EE4266" + blue: "#B3ADBA" + magenta: "#9484D6" + cyan: "#B3ADBA" + white: "#4D495D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#85D8D1" + brightYellow: "#F6A0B2" + brightBlue: "#E6E4E9" + brightMagenta: "#D7D0EF" + brightCyan: "#E6E4E9" + brightWhite: "#706B88" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 94.1 + black: 0 + red: 80.3 + green: 46 + yellow: 63.7 + blue: 43 + magenta: 59.3 + cyan: 43 + white: 89.7 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 28.6 + brightYellow: 38.1 + brightBlue: 13 + brightMagenta: 22.8 + brightCyan: 13 + brightWhite: 75 diff --git a/themes/loyal.yaml b/themes/loyal.yaml new file mode 100644 index 00000000..b83a8eb3 --- /dev/null +++ b/themes/loyal.yaml @@ -0,0 +1,49 @@ +name: "loyal" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#413E4F" + fg: "#BBB1C9" + black: "#4D495D" + red: "#BA0E2E" + green: "#3CBBB1" + yellow: "#EE4266" + blue: "#B3ADBA" + magenta: "#9484D6" + cyan: "#B3ADBA" + white: "#C8C0D3" + brightBlack: "#706B88" + brightRed: "#F03E5F" + brightGreen: "#85D8D1" + brightYellow: "#F6A0B2" + brightBlue: "#E6E4E9" + brightMagenta: "#D7D0EF" + brightCyan: "#E6E4E9" + brightWhite: "#F0EDF3" +meta: + mode: "dark" + accent: "orange" + hue: 293 + contrast: + fg: 52.6 + black: 0 + red: 11.7 + green: 46.3 + yellow: 28.2 + blue: 49.3 + magenta: 32.6 + cyan: 49.3 + white: 60.7 + brightBlack: 16.9 + brightRed: 28 + brightGreen: 64.5 + brightYellow: 54.4 + brightBlue: 81.1 + brightMagenta: 70.7 + brightCyan: 81.1 + brightWhite: 87 diff --git a/themes/luanslaslatheme.yaml b/themes/luanslaslatheme.yaml new file mode 100644 index 00000000..3cda4a95 --- /dev/null +++ b/themes/luanslaslatheme.yaml @@ -0,0 +1,49 @@ +name: "LuanSlaSlaTheme" +source: + marketplace_id: "LuanThierry.luanslasla-theme" + version: "0.0.0" + installs: 766 + author: "LuanThierry" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LuanThierry.luanslasla-theme" +colors: + bg: "#0E0E15" + fg: "#FFFFFF" + black: "#000000" + red: "#FF1111" + green: "#14C905" + yellow: "#E5E510" + blue: "#0096E0" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#BABABA" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 107.5 + black: 0 + red: 37.3 + green: 58.6 + yellow: 86.3 + blue: 42.2 + magenta: 30.4 + cyan: 48.2 + white: 107.5 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 64.8 diff --git a/themes/luau-starlit.yaml b/themes/luau-starlit.yaml new file mode 100644 index 00000000..ce4c9fab --- /dev/null +++ b/themes/luau-starlit.yaml @@ -0,0 +1,49 @@ +name: "Luau-Starlit" +source: + marketplace_id: "starlit-studios.luaux-starlit" + version: "0.1.7" + installs: 90 + author: "Starlit" + repo: "https://github.com/auro67/luaux" + url: "https://marketplace.visualstudio.com/items?itemName=starlit-studios.luaux-starlit" +colors: + bg: "#030303" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/lubasiverse-freewill.yaml b/themes/lubasiverse-freewill.yaml new file mode 100644 index 00000000..0c934119 --- /dev/null +++ b/themes/lubasiverse-freewill.yaml @@ -0,0 +1,49 @@ +name: "lubasiverse-freewill" +source: + marketplace_id: "lubasiverse.lubasiverse" + version: "1.0.0" + installs: 34 + author: "lubasiverse" + repo: "https://github.com/yourusername/lubasiverse" + url: "https://marketplace.visualstudio.com/items?itemName=lubasiverse.lubasiverse" +colors: + bg: "#000000" + fg: "#D4D4DC" + black: "#000000" + red: "#FF5A7C" + green: "#5AFF9D" + yellow: "#FFDC5A" + blue: "#5A9DFF" + magenta: "#DC5AFF" + cyan: "#5AFFDC" + white: "#E0E0E8" + brightBlack: "#4A4A5A" + brightRed: "#FF7A9C" + brightGreen: "#7AFFBD" + brightYellow: "#FFEC7A" + brightBlue: "#7ABDFF" + brightMagenta: "#EC7AFF" + brightCyan: "#7AFFEC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.9 + black: 0 + red: 46.1 + green: 89.7 + yellow: 86.9 + blue: 49.4 + magenta: 45.7 + cyan: 91.9 + white: 88.3 + brightBlack: 12.5 + brightRed: 54.1 + brightGreen: 92.1 + brightYellow: 94.6 + brightBlue: 64 + brightMagenta: 55.5 + brightCyan: 94 + brightWhite: 107.9 diff --git a/themes/lubasiverse.yaml b/themes/lubasiverse.yaml new file mode 100644 index 00000000..98679fa7 --- /dev/null +++ b/themes/lubasiverse.yaml @@ -0,0 +1,49 @@ +name: "lubasiverse" +source: + marketplace_id: "lubasiverse.lubasiverse" + version: "1.0.0" + installs: 34 + author: "lubasiverse" + repo: "https://github.com/yourusername/lubasiverse" + url: "https://marketplace.visualstudio.com/items?itemName=lubasiverse.lubasiverse" +colors: + bg: "#000000" + fg: "#C8C8D0" + black: "#000000" + red: "#FF5A7C" + green: "#5AFF9D" + yellow: "#FFDC5A" + blue: "#5A9DFF" + magenta: "#FF5ADC" + cyan: "#5AFFDC" + white: "#E0E0E8" + brightBlack: "#4A4A5A" + brightRed: "#FF7A9C" + brightGreen: "#7AFFBD" + brightYellow: "#FFEC7A" + brightBlue: "#7ABDFF" + brightMagenta: "#FF7AEC" + brightCyan: "#7AFFEC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.7 + black: 0 + red: 46.1 + green: 89.7 + yellow: 86.9 + blue: 49.4 + magenta: 50.4 + cyan: 91.9 + white: 88.3 + brightBlack: 12.5 + brightRed: 54.1 + brightGreen: 92.1 + brightYellow: 94.6 + brightBlue: 64 + brightMagenta: 57.9 + brightCyan: 94 + brightWhite: 107.9 diff --git a/themes/lucario.yaml b/themes/lucario.yaml new file mode 100644 index 00000000..cf211f41 --- /dev/null +++ b/themes/lucario.yaml @@ -0,0 +1,49 @@ +name: "Lucario" +source: + marketplace_id: "Ikuyadeu.lucario" + version: "0.2.0" + installs: 7861 + author: "Yuki Ueda" + repo: "https://github.com/Ikuyadeu/Lucario-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Ikuyadeu.lucario" +colors: + bg: "#2B3E50" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#A6E22E" + yellow: "#F1FA8C" + blue: "#8BE0FD" + magenta: "#66D9EF" + cyan: "#CA94FF" + white: "#D7D4C8" + brightBlack: "#656B84" + brightRed: "#FF5555" + brightGreen: "#72CC5A" + brightYellow: "#F1FA8C" + brightBlue: "#BD93F9" + brightMagenta: "#FF79C6" + brightCyan: "#8BE0FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 94.4 + black: 0 + red: 35.8 + green: 69.4 + yellow: 90.9 + blue: 72.1 + magenta: 65.8 + cyan: 48.6 + white: 71.8 + brightBlack: 17 + brightRed: 35.8 + brightGreen: 55.3 + brightYellow: 90.9 + brightBlue: 46 + brightMagenta: 47 + brightCyan: 72.1 + brightWhite: 94.4 diff --git a/themes/lucid-labs-dark.yaml b/themes/lucid-labs-dark.yaml new file mode 100644 index 00000000..0b49349d --- /dev/null +++ b/themes/lucid-labs-dark.yaml @@ -0,0 +1,49 @@ +name: "Lucid Labs Dark" +source: + marketplace_id: "lucidlabs.lucid-labs-theme" + version: "1.6.0" + installs: 144 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.lucid-labs-theme" +colors: + bg: "#271D3B" + fg: "#E8E0F0" + black: "#101820" + red: "#E87272" + green: "#5BBF7A" + yellow: "#E8C84D" + blue: "#9B7ED9" + magenta: "#DA70D6" + cyan: "#3AADAD" + white: "#E8E0F0" + brightBlack: "#999999" + brightRed: "#D96560" + brightGreen: "#78D65B" + brightYellow: "#E8D44D" + brightBlue: "#9B7ED9" + brightMagenta: "#D98FD9" + brightCyan: "#5BC5BC" + brightWhite: "#E8E0F0" +meta: + mode: "dark" + accent: "green" + hue: 298 + contrast: + fg: 87.2 + black: 0 + red: 43.5 + green: 54.7 + yellow: 72 + blue: 39 + magenta: 44.6 + cyan: 47.2 + white: 87.2 + brightBlack: 44.6 + brightRed: 37 + brightGreen: 66.5 + brightYellow: 77.2 + brightBlue: 39 + brightMagenta: 53.1 + brightCyan: 59.6 + brightWhite: 87.2 diff --git a/themes/lucid-labs-light.yaml b/themes/lucid-labs-light.yaml new file mode 100644 index 00000000..6e249598 --- /dev/null +++ b/themes/lucid-labs-light.yaml @@ -0,0 +1,49 @@ +name: "Lucid Labs Light" +source: + marketplace_id: "lucidlabs.lucid-labs-theme" + version: "1.6.0" + installs: 144 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.lucid-labs-theme" +colors: + bg: "#FFFFFF" + fg: "#271D3B" + black: "#101820" + red: "#DC3545" + green: "#28A745" + yellow: "#B8860B" + blue: "#5A3D89" + magenta: "#9B59B6" + cyan: "#17A2B8" + white: "#FFFFFF" + brightBlack: "#6C757D" + brightRed: "#E74C3C" + brightGreen: "#2ECC71" + brightYellow: "#F39C12" + brightBlue: "#7454B3" + brightMagenta: "#8E44AD" + brightCyan: "#339999" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.7 + black: 104.6 + red: 69.9 + green: 57.9 + yellow: 59.6 + blue: 89.1 + magenta: 72.1 + cyan: 56.8 + white: 0 + brightBlack: 72.6 + brightRed: 64.6 + brightGreen: 40.6 + brightYellow: 42.8 + brightBlue: 78.4 + brightMagenta: 78.8 + brightCyan: 61.3 + brightWhite: 0 diff --git a/themes/lucifer-terminal-dark-hacker-edition.yaml b/themes/lucifer-terminal-dark-hacker-edition.yaml new file mode 100644 index 00000000..0443e8a5 --- /dev/null +++ b/themes/lucifer-terminal-dark-hacker-edition.yaml @@ -0,0 +1,49 @@ +name: "Lucifer Terminal Dark (Hacker Edition)" +source: + marketplace_id: "NishantUnavane.lucifer-dark" + version: "1.1.0" + installs: 51 + author: "Nishant Unavane" + repo: "https://github.com/IamNishant51/Lucifer-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=NishantUnavane.lucifer-dark" +colors: + bg: "#0B0E14" + fg: "#E0E8F0" + black: "#2A2F3A" + red: "#E76F7C" + green: "#73DDAA" + yellow: "#F7E16D" + blue: "#5BA9E2" + magenta: "#CC88D9" + cyan: "#66E2F5" + white: "#E0E8F0" + brightBlack: "#6A7B8E" + brightRed: "#FF8A96" + brightGreen: "#88FFC9" + brightYellow: "#FFF18A" + brightBlue: "#7EC2FA" + brightMagenta: "#E0A0F0" + brightCyan: "#88F5FF" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 91.9 + black: 0 + red: 45.1 + green: 73.7 + yellow: 87.8 + blue: 51.8 + magenta: 51.1 + cyan: 78.7 + white: 91.9 + brightBlack: 31.3 + brightRed: 57.8 + brightGreen: 93.1 + brightYellow: 96.9 + brightBlue: 65.8 + brightMagenta: 63.2 + brightCyan: 90.4 + brightWhite: 101.1 diff --git a/themes/luckyhub.yaml b/themes/luckyhub.yaml new file mode 100644 index 00000000..4cd0d4d0 --- /dev/null +++ b/themes/luckyhub.yaml @@ -0,0 +1,49 @@ +name: "LuckyHub" +source: + marketplace_id: "LuckCGA.lucky-hub" + version: "1.0.0" + installs: 1278 + author: "Lucas Caspirro Gitti Alcaraz" + repo: "https://github.com/Luck-CGA/MyTheme" + url: "https://marketplace.visualstudio.com/items?itemName=LuckCGA.lucky-hub" +colors: + bg: "#1E1E1E" + fg: "#99C49B" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 62.9 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/lui.yaml b/themes/lui.yaml new file mode 100644 index 00000000..8c3094ab --- /dev/null +++ b/themes/lui.yaml @@ -0,0 +1,49 @@ +name: "Lui" +source: + marketplace_id: "Miu.lui" + version: "0.69.0" + installs: 85 + author: "Miu" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Miu.lui" +colors: + bg: "#171A1F" + fg: "#E7EAEF" + black: "#272A2F" + red: "#EF476F" + green: "#72DDF7" + yellow: "#F7DD72" + blue: "#5599FF" + magenta: "#EF476F" + cyan: "#72DDF7" + white: "#777A7F" + brightBlack: "#777A7F" + brightRed: "#EF476F" + brightGreen: "#72DDF7" + brightYellow: "#F7DD72" + brightBlue: "#5599FF" + brightMagenta: "#EF476F" + brightCyan: "#72DDF7" + brightWhite: "#E7EAEF" +meta: + mode: "dark" + accent: "red" + hue: 261 + contrast: + fg: 92.7 + black: 0 + red: 37.8 + green: 76 + yellow: 85.1 + blue: 46.3 + magenta: 37.8 + cyan: 76 + white: 30.5 + brightBlack: 30.5 + brightRed: 37.8 + brightGreen: 76 + brightYellow: 85.1 + brightBlue: 46.3 + brightMagenta: 37.8 + brightCyan: 76 + brightWhite: 92.7 diff --git a/themes/luiz-dark-theme.yaml b/themes/luiz-dark-theme.yaml new file mode 100644 index 00000000..b03a66bd --- /dev/null +++ b/themes/luiz-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "luiz-dark-theme" +source: + marketplace_id: "LUIZDARKTHEME.luiz-dark-theme" + version: "0.0.8" + installs: 2945 + author: "LUIZ DARK THEME" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LUIZDARKTHEME.luiz-dark-theme" +colors: + bg: "#0D0D0D" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.6 + black: 0 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/luke-skywriter.yaml b/themes/luke-skywriter.yaml new file mode 100644 index 00000000..99fa973a --- /dev/null +++ b/themes/luke-skywriter.yaml @@ -0,0 +1,49 @@ +name: "Luke Skywriter" +source: + marketplace_id: "Dutchorange.space-wars" + version: "1.1.7" + installs: 1710 + author: "Dutchorange" + repo: "https://github.com/entropy-glitch/space-wars" + url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" +colors: + bg: "#1C2A3D" + fg: "#E9E9E9" + black: "#2C3B4E" + red: "#FF9B9B" + green: "#9BE0AE" + yellow: "#FFE0A0" + blue: "#87CEEB" + magenta: "#E0B0FF" + cyan: "#98E0E8" + white: "#E9E9E9" + brightBlack: "#6B8299" + brightRed: "#FFB0B0" + brightGreen: "#B0FFB0" + brightYellow: "#FFE8B0" + brightBlue: "#B0E8FF" + brightMagenta: "#FFB0E8" + brightCyan: "#B0FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 256 + contrast: + fg: 89.8 + black: 0 + red: 59.7 + green: 74.7 + yellow: 86.3 + blue: 67.4 + magenta: 66.3 + cyan: 76.8 + white: 89.8 + brightBlack: 30.8 + brightRed: 67.6 + brightGreen: 91.9 + brightYellow: 90.4 + brightBlue: 83.9 + brightMagenta: 70.1 + brightCyan: 95.1 + brightWhite: 104.1 diff --git a/themes/lull.yaml b/themes/lull.yaml new file mode 100644 index 00000000..97099568 --- /dev/null +++ b/themes/lull.yaml @@ -0,0 +1,49 @@ +name: "Lull" +source: + marketplace_id: "Lull.lull-theme" + version: "0.0.2" + installs: 40 + author: "Lull" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Lull.lull-theme" +colors: + bg: "#212121" + fg: "#E1E2DE" + black: "#5E636F" + red: "#BF616A" + green: "#7F949F" + yellow: "#EBCB8B" + blue: "#97B3C2" + magenta: "#B48EAD" + cyan: "#96B5B4" + white: "#C0C5CE" + brightBlack: "#65737E" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#B1E4FF" + brightMagenta: "#B48EAD" + brightCyan: "#96B5B4" + brightWhite: "#EFF1F5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.6 + black: 19.5 + red: 31.7 + green: 40.7 + yellow: 75.1 + blue: 56.6 + magenta: 45.2 + cyan: 56.7 + white: 69 + brightBlack: 25.6 + brightRed: 31.7 + brightGreen: 60.4 + brightYellow: 75.1 + brightBlue: 83.6 + brightMagenta: 45.2 + brightCyan: 56.7 + brightWhite: 96.3 diff --git a/themes/lulutheme.yaml b/themes/lulutheme.yaml new file mode 100644 index 00000000..a7164ffc --- /dev/null +++ b/themes/lulutheme.yaml @@ -0,0 +1,49 @@ +name: "LuluTheme" +source: + marketplace_id: "LuluAylen00.lulutheme" + version: "1.0.0" + installs: 219 + author: "Aylen Martinez" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LuluAylen00.lulutheme" +colors: + bg: "#060205" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 335 + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/lumenrift.yaml b/themes/lumenrift.yaml new file mode 100644 index 00000000..1abf32d5 --- /dev/null +++ b/themes/lumenrift.yaml @@ -0,0 +1,49 @@ +name: "Lumenrift" +source: + marketplace_id: "SatyamRana.the-prime-themes" + version: "1.0.2" + installs: 130 + author: "Satyam Rana" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SatyamRana.the-prime-themes" +colors: + bg: "#F5FEFD" + fg: "#2C3E50" + black: "#2C3E50" + red: "#E74C3C" + green: "#27AE60" + yellow: "#F39C12" + blue: "#3498DB" + magenta: "#9B59B6" + cyan: "#1ABC9C" + white: "#ECF0F1" + brightBlack: "#7F8C8D" + brightRed: "#C0392B" + brightGreen: "#229954" + brightYellow: "#D68910" + brightBlue: "#2874A6" + brightMagenta: "#7D3C98" + brightCyan: "#138D75" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93.6 + black: 93.6 + red: 62.8 + green: 52.7 + yellow: 41 + blue: 56.5 + magenta: 70.3 + cyan: 45.1 + white: 0 + brightBlack: 60.6 + brightRed: 74.2 + brightGreen: 61.9 + brightYellow: 52.1 + brightBlue: 72.9 + brightMagenta: 82.2 + brightCyan: 66.1 + brightWhite: 0 diff --git a/themes/lumin.yaml b/themes/lumin.yaml new file mode 100644 index 00000000..9f7773b1 --- /dev/null +++ b/themes/lumin.yaml @@ -0,0 +1,49 @@ +name: "Lumin" +source: + marketplace_id: "thisisroi.lumin" + version: "1.0.3" + installs: 1074 + author: "thisisroi" + repo: "https://github.com/thisisroi/lumin-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thisisroi.lumin" +colors: + bg: "#252525" + fg: "#8E8E8E" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 38.7 + black: 0 + red: 24.8 + green: 51.1 + yellow: 83.7 + blue: 25.5 + magenta: 27.9 + cyan: 45.6 + white: 88.1 + brightBlack: 20.1 + brightRed: 36.7 + brightGreen: 61.6 + brightYellow: 93.7 + brightBlue: 38.1 + brightMagenta: 43.5 + brightCyan: 53.5 + brightWhite: 88.1 diff --git a/themes/lumina.yaml b/themes/lumina.yaml new file mode 100644 index 00000000..9c9c3a1c --- /dev/null +++ b/themes/lumina.yaml @@ -0,0 +1,49 @@ +name: "lumina" +source: + marketplace_id: "JohannesFreutel.lumina" + version: "0.0.1" + installs: 36 + author: "JohannesFreutel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.lumina" +colors: + bg: "#F5F5F5" + fg: "#333333" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 92.7 + black: 100.1 + red: 68 + green: 42 + yellow: 11 + blue: 67.3 + magenta: 64.9 + cyan: 47.3 + white: 0 + brightBlack: 72.8 + brightRed: 56.2 + brightGreen: 31.9 + brightYellow: 0 + brightBlue: 54.7 + brightMagenta: 49.4 + brightCyan: 39.7 + brightWhite: 0 diff --git a/themes/luminara-void.yaml b/themes/luminara-void.yaml new file mode 100644 index 00000000..2f660789 --- /dev/null +++ b/themes/luminara-void.yaml @@ -0,0 +1,49 @@ +name: "Luminara Void" +source: + marketplace_id: "zaidkhan.novaflux" + version: "0.0.1" + installs: 40 + author: "zaid_khan" + repo: "https://github.com/zaidkhan/novaflux-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zaidkhan.novaflux" +colors: + bg: "#0B001A" + fg: "#ECECEC" + black: "#0B001A" + red: "#FF5C5C" + green: "#4AF626" + yellow: "#E6DB74" + blue: "#00AFFF" + magenta: "#FF2ECC" + cyan: "#00FFF7" + white: "#ECECEC" + brightBlack: "#6C6CA0" + brightRed: "#FF5C5C" + brightGreen: "#4AF626" + brightYellow: "#E6DB74" + brightBlue: "#6C9BCF" + brightMagenta: "#FF33A6" + brightCyan: "#00FFF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 302 + contrast: + fg: 95.3 + black: 0 + red: 45.6 + green: 82.5 + yellow: 82.9 + blue: 54.4 + magenta: 44 + cyan: 91.6 + white: 95.3 + brightBlack: 27.7 + brightRed: 45.6 + brightGreen: 82.5 + brightYellow: 82.9 + brightBlue: 46.4 + brightMagenta: 42.4 + brightCyan: 91.6 + brightWhite: 107.7 diff --git a/themes/luminarca-crep-sculo.yaml b/themes/luminarca-crep-sculo.yaml new file mode 100644 index 00000000..e18e3ac9 --- /dev/null +++ b/themes/luminarca-crep-sculo.yaml @@ -0,0 +1,49 @@ +name: "Luminarca (Crepúsculo)" +source: + marketplace_id: "ricarthlima.luminarca-theme" + version: "1.0.1" + installs: 207 + author: "Ricarth Lima" + repo: "https://github.com/ricarthlima/luminarca-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=ricarthlima.luminarca-theme" +colors: + bg: "#1D2227" + fg: "#E0F7FA" + black: "#1D2227" + red: "#FF4C3B" + green: "#2ECC71" + yellow: "#F77828" + blue: "#005593" + magenta: "#FF4C3B" + cyan: "#20BADB" + white: "#E0F7FA" + brightBlack: "#005593" + brightRed: "#FF4C3B" + brightGreen: "#2ECC71" + brightYellow: "#E0F7FA" + brightBlue: "#9CCCDC" + brightMagenta: "#9CCCDC" + brightCyan: "#9CCCDC" + brightWhite: "#E0F7FA" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 97.4 + black: 0 + red: 40.3 + green: 59.3 + yellow: 47.2 + blue: 13.6 + magenta: 40.3 + cyan: 54.8 + white: 97.4 + brightBlack: 13.6 + brightRed: 40.3 + brightGreen: 59.3 + brightYellow: 97.4 + brightBlue: 68.9 + brightMagenta: 68.9 + brightCyan: 68.9 + brightWhite: 97.4 diff --git a/themes/luminarca-luz.yaml b/themes/luminarca-luz.yaml new file mode 100644 index 00000000..8f25a67d --- /dev/null +++ b/themes/luminarca-luz.yaml @@ -0,0 +1,49 @@ +name: "Luminarca (Luz)" +source: + marketplace_id: "ricarthlima.luminarca-theme" + version: "1.0.1" + installs: 207 + author: "Ricarth Lima" + repo: "https://github.com/ricarthlima/luminarca-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=ricarthlima.luminarca-theme" +colors: + bg: "#E6F7FF" + fg: "#111821" + black: "#D4EFF7" + red: "#FF4C3B" + green: "#2ECC71" + yellow: "#F77828" + blue: "#005593" + magenta: "#FF4C3B" + cyan: "#20BADB" + white: "#111821" + brightBlack: "#005593" + brightRed: "#FF4C3B" + brightGreen: "#2ECC71" + brightYellow: "#111821" + brightBlue: "#495F77" + brightMagenta: "#495F77" + brightCyan: "#495F77" + brightWhite: "#111821" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.1 + black: 0 + red: 52.6 + green: 34.1 + yellow: 45.8 + blue: 79.7 + magenta: 52.6 + cyan: 38.5 + white: 98.1 + brightBlack: 79.7 + brightRed: 52.6 + brightGreen: 34.1 + brightYellow: 98.1 + brightBlue: 76.1 + brightMagenta: 76.1 + brightCyan: 76.1 + brightWhite: 98.1 diff --git a/themes/luminarca-trevas.yaml b/themes/luminarca-trevas.yaml new file mode 100644 index 00000000..f6dc28dc --- /dev/null +++ b/themes/luminarca-trevas.yaml @@ -0,0 +1,49 @@ +name: "Luminarca (Trevas)" +source: + marketplace_id: "ricarthlima.luminarca-theme" + version: "1.0.1" + installs: 207 + author: "Ricarth Lima" + repo: "https://github.com/ricarthlima/luminarca-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=ricarthlima.luminarca-theme" +colors: + bg: "#0A0F14" + fg: "#E0F7FA" + black: "#0A0F14" + red: "#FF4C3B" + green: "#2ECC71" + yellow: "#F77828" + blue: "#005593" + magenta: "#FF4C3B" + cyan: "#20BADB" + white: "#E0F7FA" + brightBlack: "#005593" + brightRed: "#FF4C3B" + brightGreen: "#2ECC71" + brightYellow: "#E0F7FA" + brightBlue: "#9CCCDC" + brightMagenta: "#9CCCDC" + brightCyan: "#9CCCDC" + brightWhite: "#E0F7FA" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 99.4 + black: 0 + red: 42.3 + green: 61.3 + yellow: 49.2 + blue: 15.5 + magenta: 42.3 + cyan: 56.8 + white: 99.4 + brightBlack: 15.5 + brightRed: 42.3 + brightGreen: 61.3 + brightYellow: 99.4 + brightBlue: 70.9 + brightMagenta: 70.9 + brightCyan: 70.9 + brightWhite: 99.4 diff --git a/themes/luminashade-amethyst.yaml b/themes/luminashade-amethyst.yaml new file mode 100644 index 00000000..0b04dd73 --- /dev/null +++ b/themes/luminashade-amethyst.yaml @@ -0,0 +1,49 @@ +name: "LuminaShade-Amethyst" +source: + marketplace_id: "JackPritomSoren.luminashade" + version: "1.0.5" + installs: 138 + author: "Jack Pritom Soren" + repo: "https://github.com/jps27CSE/LuminaShade-VSCode-Extension" + url: "https://marketplace.visualstudio.com/items?itemName=JackPritomSoren.luminashade" +colors: + bg: "#1E1B2C" + fg: "#E0DFE8" + black: "#1B1826" + red: "#FF9AB8" + green: "#7FE6A5" + yellow: "#FFDF80" + blue: "#8FD8FF" + magenta: "#C18FFF" + cyan: "#A0C0FF" + white: "#E0DFE8" + brightBlack: "#7E7399" + brightRed: "#FFB6C1" + brightGreen: "#A0D6A0" + brightYellow: "#FFE699" + brightBlue: "#B0E0FF" + brightMagenta: "#D4BFFF" + brightCyan: "#C0D0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 292 + contrast: + fg: 86.1 + black: 0 + red: 62.5 + green: 77.2 + yellow: 87.1 + blue: 75.6 + magenta: 52.6 + cyan: 66.6 + white: 86.1 + brightBlack: 29.6 + brightRed: 72.4 + brightGreen: 71.9 + brightYellow: 90.8 + brightBlue: 82.2 + brightMagenta: 72.2 + brightCyan: 76.8 + brightWhite: 106.1 diff --git a/themes/luminescence-theme.yaml b/themes/luminescence-theme.yaml new file mode 100644 index 00000000..1b2549cc --- /dev/null +++ b/themes/luminescence-theme.yaml @@ -0,0 +1,49 @@ +name: "Luminescence Theme" +source: + marketplace_id: "andreluis-oliveira.material-palenight-high-constrast-theme" + version: "2.1.11" + installs: 2769 + author: "andreluis-oliveira" + repo: "https://github.com/andreluis-oliveira/vscode-palenight-theme-high-contrast" + url: "https://marketplace.visualstudio.com/items?itemName=andreluis-oliveira.material-palenight-high-constrast-theme" +colors: + bg: "#151720" + fg: "#E6EDF3" + black: "#676E95" + red: "#FF718A" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF718A" + brightGreen: "#23D18C" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 94.4 + black: 26.4 + red: 50.2 + green: 65.8 + yellow: 78.9 + blue: 55.9 + magenta: 53.7 + cyan: 78.2 + white: 106.8 + brightBlack: 26.4 + brightRed: 50.2 + brightGreen: 63.5 + brightYellow: 78.9 + brightBlue: 55.9 + brightMagenta: 53.7 + brightCyan: 78.2 + brightWhite: 106.8 diff --git a/themes/lumon-theme.yaml b/themes/lumon-theme.yaml new file mode 100644 index 00000000..836029e5 --- /dev/null +++ b/themes/lumon-theme.yaml @@ -0,0 +1,49 @@ +name: "Lumon Theme" +source: + marketplace_id: "cluzier.lumon" + version: "0.0.42" + installs: 206 + author: "Conner Luzier" + repo: "https://github.com/cluzier/lumon" + url: "https://marketplace.visualstudio.com/items?itemName=cluzier.lumon" +colors: + bg: "#081E28" + fg: "#79E6FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 230 + contrast: + fg: 80.9 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.2 + cyan: 46.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 38 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/lumos-black.yaml b/themes/lumos-black.yaml new file mode 100644 index 00000000..a90770ee --- /dev/null +++ b/themes/lumos-black.yaml @@ -0,0 +1,49 @@ +name: "Lumos Black" +source: + marketplace_id: "nyxb.theme-lumos" + version: "0.0.12" + installs: 874 + author: "nyxb" + repo: "https://github.com/nyxb/vscode-theme-lumos" + url: "https://marketplace.visualstudio.com/items?itemName=nyxb.theme-lumos" +colors: + bg: "#000000" + fg: "#DBD7CA" + black: "#393A34" + red: "#ED4245" + green: "#14F195" + yellow: "#FEE75C" + blue: "#5865F2" + magenta: "#EB459E" + cyan: "#00FFFF" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#ED4245" + brightGreen: "#14F195" + brightYellow: "#FEE75C" + brightBlue: "#5865F2" + brightMagenta: "#EB459E" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 82.3 + black: 0 + red: 37.1 + green: 80.7 + yellow: 91.7 + blue: 30.2 + magenta: 39.6 + cyan: 92.2 + white: 82.3 + brightBlack: 30.6 + brightRed: 37.1 + brightGreen: 80.7 + brightYellow: 91.7 + brightBlue: 30.2 + brightMagenta: 39.6 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/lumos-dark-soft.yaml b/themes/lumos-dark-soft.yaml new file mode 100644 index 00000000..8bba74e0 --- /dev/null +++ b/themes/lumos-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Lumos Dark Soft" +source: + marketplace_id: "nyxb.theme-lumos" + version: "0.0.12" + installs: 874 + author: "nyxb" + repo: "https://github.com/nyxb/vscode-theme-lumos" + url: "https://marketplace.visualstudio.com/items?itemName=nyxb.theme-lumos" +colors: + bg: "#222222" + fg: "#DBD7CA" + black: "#393A34" + red: "#ED4245" + green: "#14F195" + yellow: "#FEE75C" + blue: "#5865F2" + magenta: "#EB459E" + cyan: "#00FFFF" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#ED4245" + brightGreen: "#14F195" + brightYellow: "#FEE75C" + brightBlue: "#5865F2" + brightMagenta: "#EB459E" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 79.9 + black: 0 + red: 34.7 + green: 78.3 + yellow: 89.3 + blue: 27.7 + magenta: 37.1 + cyan: 89.8 + white: 79.9 + brightBlack: 28.1 + brightRed: 34.7 + brightGreen: 78.3 + brightYellow: 89.3 + brightBlue: 27.7 + brightMagenta: 37.1 + brightCyan: 89.8 + brightWhite: 105.5 diff --git a/themes/lumos-dark.yaml b/themes/lumos-dark.yaml new file mode 100644 index 00000000..180476a3 --- /dev/null +++ b/themes/lumos-dark.yaml @@ -0,0 +1,49 @@ +name: "Lumos Dark" +source: + marketplace_id: "nyxb.theme-lumos" + version: "0.0.12" + installs: 874 + author: "nyxb" + repo: "https://github.com/nyxb/vscode-theme-lumos" + url: "https://marketplace.visualstudio.com/items?itemName=nyxb.theme-lumos" +colors: + bg: "#121212" + fg: "#DBD7CA" + black: "#393A34" + red: "#ED4245" + green: "#14F195" + yellow: "#FEE75C" + blue: "#5865F2" + magenta: "#EB459E" + cyan: "#00FFFF" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#ED4245" + brightGreen: "#14F195" + brightYellow: "#FEE75C" + brightBlue: "#5865F2" + brightMagenta: "#EB459E" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 81.7 + black: 0 + red: 36.6 + green: 80.2 + yellow: 91.1 + blue: 29.6 + magenta: 39 + cyan: 91.6 + white: 81.7 + brightBlack: 30 + brightRed: 36.6 + brightGreen: 80.2 + brightYellow: 91.1 + brightBlue: 29.6 + brightMagenta: 39 + brightCyan: 91.6 + brightWhite: 107.3 diff --git a/themes/lunar-eclipse-golden-hour.yaml b/themes/lunar-eclipse-golden-hour.yaml new file mode 100644 index 00000000..a293c1e8 --- /dev/null +++ b/themes/lunar-eclipse-golden-hour.yaml @@ -0,0 +1,49 @@ +name: "Lunar Eclipse Golden Hour" +source: + marketplace_id: "ginfuru.lunar-eclipse" + version: "0.1.4" + installs: 10309 + author: "Ed Heltzel" + repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" +colors: + bg: "#191C1D" + fg: "#AFA188" + black: "#F4EBC2" + red: "#C7231C" + green: "#939214" + yellow: "#D09420" + blue: "#00B6C2" + magenta: "#85598E" + cyan: "#5F8F61" + white: "#191C1D" + brightBlack: "#666666" + brightRed: "#ED4531" + brightGreen: "#AEB124" + brightYellow: "#EFB52D" + brightBlue: "#7D9D91" + brightMagenta: "#B37EC8" + brightCyan: "#8BBC79" + brightWhite: "#F4EBC2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 50.7 + black: 92.9 + red: 23.6 + green: 40 + yellow: 49.1 + blue: 52.4 + magenta: 22.9 + cyan: 35.1 + white: 0 + brightBlack: 21.5 + brightRed: 35.8 + brightGreen: 55.3 + brightYellow: 66.3 + brightBlue: 44.2 + brightMagenta: 42.2 + brightCyan: 57.5 + brightWhite: 92.9 diff --git a/themes/lunar-eclipse-light.yaml b/themes/lunar-eclipse-light.yaml new file mode 100644 index 00000000..e8ccab3b --- /dev/null +++ b/themes/lunar-eclipse-light.yaml @@ -0,0 +1,49 @@ +name: "Lunar Eclipse Light" +source: + marketplace_id: "ginfuru.lunar-eclipse" + version: "0.1.4" + installs: 10309 + author: "Ed Heltzel" + repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" +colors: + bg: "#F4F2F6" + fg: "#455059" + black: "#63828A" + red: "#FF0046" + green: "#1EA330" + yellow: "#C06736" + blue: "#0F7CD7" + magenta: "#B016EE" + cyan: "#007874" + white: "#A19CBC" + brightBlack: "#303742" + brightRed: "#FF3A70" + brightGreen: "#30B95E" + brightYellow: "#AB5200" + brightBlue: "#09A1ED" + brightMagenta: "#BF45F3" + brightCyan: "#009793" + brightWhite: "#958FB7" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 81.2 + black: 61 + red: 56.4 + green: 52.6 + yellow: 59.7 + blue: 61.8 + magenta: 65.2 + cyan: 68.7 + white: 43.9 + brightBlack: 90.2 + brightRed: 53.1 + brightGreen: 42.2 + brightYellow: 68.6 + brightBlue: 46.8 + brightMagenta: 58.2 + brightCyan: 55.6 + brightWhite: 50 diff --git a/themes/lunar-eclipse.yaml b/themes/lunar-eclipse.yaml new file mode 100644 index 00000000..8af56cc8 --- /dev/null +++ b/themes/lunar-eclipse.yaml @@ -0,0 +1,49 @@ +name: "Lunar Eclipse" +source: + marketplace_id: "ginfuru.lunar-eclipse" + version: "0.1.4" + installs: 10309 + author: "Ed Heltzel" + repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" +colors: + bg: "#171131" + fg: "#EEEEEE" + black: "#63828A" + red: "#FF0046" + green: "#2DAE58" + yellow: "#CF9C00" + blue: "#09A1ED" + magenta: "#EA00D9" + cyan: "#AF79FE" + white: "#DDE4F1" + brightBlack: "#303742" + brightRed: "#FF2E87" + brightGreen: "#25DA6A" + brightYellow: "#FFC104" + brightBlue: "#41B9FF" + brightMagenta: "#C75AF3" + brightCyan: "#16DAD6" + brightWhite: "#E3EEFE" +meta: + mode: "dark" + accent: "pink" + hue: 288 + contrast: + fg: 95.7 + black: 32.3 + red: 36.9 + green: 46.3 + yellow: 52.2 + blue: 46.7 + magenta: 37.7 + cyan: 44.3 + white: 89.1 + brightBlack: 0 + brightRed: 39.9 + brightGreen: 67.2 + brightYellow: 74.1 + brightBlue: 58.6 + brightMagenta: 40 + brightCyan: 70.6 + brightWhite: 95.1 diff --git a/themes/lunar-pink-satellite.yaml b/themes/lunar-pink-satellite.yaml new file mode 100644 index 00000000..a67643f9 --- /dev/null +++ b/themes/lunar-pink-satellite.yaml @@ -0,0 +1,49 @@ +name: "Lunar Pink Satellite" +source: + marketplace_id: "nicolasdschmidt.lunar-pink" + version: "1.4.0" + installs: 194247 + author: "Nícolas D. Schmidt" + repo: "https://github.com/tronfy/lunar-pink" + url: "https://marketplace.visualstudio.com/items?itemName=nicolasdschmidt.lunar-pink" +colors: + bg: "#262626" + fg: "#DDDDDD" + black: "#777777" + red: "#C50000" + green: "#23AD09" + yellow: "#F0B800" + blue: "#004AAA" + magenta: "#A7097A" + cyan: "#05A6A8" + white: "#DDDDDD" + brightBlack: "#AAAAAA" + brightRed: "#FF0000" + brightGreen: "#2AE609" + brightYellow: "#FFD900" + brightBlue: "#008CFF" + brightMagenta: "#E621AF" + brightCyan: "#09E4E6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 82.9 + black: 27.5 + red: 20.5 + green: 43 + yellow: 65.9 + blue: 11.5 + magenta: 16.3 + cyan: 42.8 + white: 82.9 + brightBlack: 53.2 + brightRed: 34.5 + brightGreen: 70.5 + brightYellow: 82 + brightBlue: 38.1 + brightMagenta: 32.9 + brightCyan: 74.1 + brightWhite: 104.8 diff --git a/themes/lunar-pink.yaml b/themes/lunar-pink.yaml new file mode 100644 index 00000000..7ff41645 --- /dev/null +++ b/themes/lunar-pink.yaml @@ -0,0 +1,49 @@ +name: "Lunar Pink" +source: + marketplace_id: "nicolasdschmidt.lunar-pink" + version: "1.4.0" + installs: 194247 + author: "Nícolas D. Schmidt" + repo: "https://github.com/tronfy/lunar-pink" + url: "https://marketplace.visualstudio.com/items?itemName=nicolasdschmidt.lunar-pink" +colors: + bg: "#131313" + fg: "#DDDDDD" + black: "#777777" + red: "#C50000" + green: "#23AD09" + yellow: "#F0B800" + blue: "#004AAA" + magenta: "#A7097A" + cyan: "#05A6A8" + white: "#DDDDDD" + brightBlack: "#AAAAAA" + brightRed: "#FF0000" + brightGreen: "#2AE609" + brightYellow: "#FFD900" + brightBlue: "#008CFF" + brightMagenta: "#E621AF" + brightCyan: "#09E4E6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 85.4 + black: 29.9 + red: 23 + green: 45.4 + yellow: 68.4 + blue: 14 + magenta: 18.8 + cyan: 45.2 + white: 85.4 + brightBlack: 55.6 + brightRed: 36.9 + brightGreen: 72.9 + brightYellow: 84.5 + brightBlue: 40.5 + brightMagenta: 35.3 + brightCyan: 76.6 + brightWhite: 107.2 diff --git a/themes/lunar-theme.yaml b/themes/lunar-theme.yaml new file mode 100644 index 00000000..b9c9148c --- /dev/null +++ b/themes/lunar-theme.yaml @@ -0,0 +1,49 @@ +name: "Lunar Theme" +source: + marketplace_id: "MarcMarcet.lunar-color-theme" + version: "0.2.1" + installs: 829 + author: "Marc Marcet" + repo: "https://github.com/marc-marcet/lunar-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MarcMarcet.lunar-color-theme" +colors: + bg: "#10061D" + fg: "#D4D4D4" + black: "#4F4F4F" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 302 + contrast: + fg: 80.2 + black: 13.6 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/lunar-vscode.yaml b/themes/lunar-vscode.yaml new file mode 100644 index 00000000..4e7bedbb --- /dev/null +++ b/themes/lunar-vscode.yaml @@ -0,0 +1,49 @@ +name: "lunar vscode" +source: + marketplace_id: "JuniorSchmidt.lunar-vscode-theme" + version: "1.0.8" + installs: 4284 + author: "Junior Schmidt" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JuniorSchmidt.lunar-vscode-theme" +colors: + bg: "#1A1B26" + fg: "#AFB9E0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 63.7 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/lunar.yaml b/themes/lunar.yaml new file mode 100644 index 00000000..5c0cfa02 --- /dev/null +++ b/themes/lunar.yaml @@ -0,0 +1,49 @@ +name: "Lunar" +source: + marketplace_id: "alvarosannas.nix" + version: "1.4.8" + installs: 2949 + author: "Alvaro Santana" + repo: "https://github.com/alvarosannas/nix" + url: "https://marketplace.visualstudio.com/items?itemName=alvarosannas.nix" +colors: + bg: "#1C1E26" + fg: "#F8F8F2" + black: "#1A1A1A" + red: "#F24B78" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#30BCED" + magenta: "#A978FF" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#1A1A1A" + brightRed: "#F24B78" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#30BCED" + brightMagenta: "#A978FF" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 274 + contrast: + fg: 101.1 + black: 0 + red: 38.7 + green: 84 + yellow: 97.7 + blue: 57.4 + magenta: 42.5 + cyan: 83.1 + white: 101.1 + brightBlack: 0 + brightRed: 38.7 + brightGreen: 84 + brightYellow: 97.7 + brightBlue: 57.4 + brightMagenta: 42.5 + brightCyan: 83.1 + brightWhite: 101.1 diff --git a/themes/lunaria.yaml b/themes/lunaria.yaml new file mode 100644 index 00000000..1665217e --- /dev/null +++ b/themes/lunaria.yaml @@ -0,0 +1,49 @@ +name: "Lunaria" +source: + marketplace_id: "Avetis.lunaria" + version: "0.0.3" + installs: 606 + author: "Avetis" + repo: "https://github.com/AvetisDN/lunaria-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.lunaria" +colors: + bg: "#323F46" + fg: "#DFE2ED" + black: "#020202" + red: "#BC4747" + green: "#408A47" + yellow: "#CBAE66" + blue: "#4778AD" + magenta: "#9B558E" + cyan: "#5FC3CD" + white: "#C9CDD7" + brightBlack: "#666E73" + brightRed: "#B46C6C" + brightGreen: "#7AA97E" + brightYellow: "#EAD299" + brightBlue: "#7AA7D9" + brightMagenta: "#B687AE" + brightCyan: "#A5DCEC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 232 + contrast: + fg: 80.4 + black: 8.8 + red: 18.5 + green: 23.7 + yellow: 51.3 + blue: 21 + magenta: 17.7 + cyan: 53.4 + white: 67.4 + brightBlack: 17.1 + brightRed: 26 + brightGreen: 40.8 + brightYellow: 71.7 + brightBlue: 43.9 + brightMagenta: 36.7 + brightCyan: 71.2 + brightWhite: 99 diff --git a/themes/lunna-dark.yaml b/themes/lunna-dark.yaml new file mode 100644 index 00000000..f7dee5d0 --- /dev/null +++ b/themes/lunna-dark.yaml @@ -0,0 +1,49 @@ +name: "Lunna Dark" +source: + marketplace_id: "ryangustav.lunna-dark-theme" + version: "1.0.0" + installs: 10 + author: "ryangustav" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ryangustav.lunna-dark-theme" +colors: + bg: "#0E0013" + fg: "#FF91DE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 319 + contrast: + fg: 63.1 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/lupine.yaml b/themes/lupine.yaml new file mode 100644 index 00000000..9ed099fb --- /dev/null +++ b/themes/lupine.yaml @@ -0,0 +1,49 @@ +name: "Lupine" +source: + marketplace_id: "katie7r.lupine-color-theme" + version: "0.0.1" + installs: 10 + author: "Katie Linero" + repo: "https://github.com/katie7r/lupine-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=katie7r.lupine-color-theme" +colors: + bg: "#010D00" + fg: "#E4F2F1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 140 + contrast: + fg: 97.2 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/lupus.yaml b/themes/lupus.yaml new file mode 100644 index 00000000..0523c185 --- /dev/null +++ b/themes/lupus.yaml @@ -0,0 +1,49 @@ +name: "lupus" +source: + marketplace_id: "jwoelper.lupus" + version: "0.0.12" + installs: 769 + author: "Johann Woelper" + repo: "https://github.com/woelper/lupus-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jwoelper.lupus" +colors: + bg: "#4B4A4A" + fg: "#DEDEDE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.4 + black: 13.7 + red: 14.5 + green: 40.8 + yellow: 73.4 + blue: 15.2 + magenta: 17.6 + cyan: 35.4 + white: 77.8 + brightBlack: 9.8 + brightRed: 26.4 + brightGreen: 51.3 + brightYellow: 83.4 + brightBlue: 27.8 + brightMagenta: 33.2 + brightCyan: 43.2 + brightWhite: 77.8 diff --git a/themes/luxeforest.yaml b/themes/luxeforest.yaml new file mode 100644 index 00000000..6e1a3c3c --- /dev/null +++ b/themes/luxeforest.yaml @@ -0,0 +1,49 @@ +name: "luxeforest" +source: + marketplace_id: "gaopow.luxeforest" + version: "0.0.5" + installs: 6 + author: "gaopow" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gaopow.luxeforest" +colors: + bg: "#001503" + fg: "#FFDABC" + black: "#717171" + red: "#FF6D6D" + green: "#7CFFCD" + yellow: "#FFFFAC" + blue: "#70B3FD" + magenta: "#FFA7FF" + cyan: "#55DEFF" + white: "#FFECBD" + brightBlack: "#666666" + brightRed: "#FF9292" + brightGreen: "#B7FFE2" + brightYellow: "#FFFFDB" + brightBlue: "#7CBAFF" + brightMagenta: "#E873E8" + brightCyan: "#8BE8FF" + brightWhite: "#FFF4D5" +meta: + mode: "dark" + accent: "pink" + hue: 147 + contrast: + fg: 87.7 + black: 27.2 + red: 49 + green: 92.2 + yellow: 104.1 + blue: 58.5 + magenta: 71.4 + cyan: 76.4 + white: 95.7 + brightBlack: 22.4 + brightRed: 59.8 + brightGreen: 97.5 + brightYellow: 105.7 + brightBlue: 62.3 + brightMagenta: 50.9 + brightCyan: 84 + brightWhite: 100.3 diff --git a/themes/lyra-s-vega.yaml b/themes/lyra-s-vega.yaml new file mode 100644 index 00000000..2e0c7f2f --- /dev/null +++ b/themes/lyra-s-vega.yaml @@ -0,0 +1,49 @@ +name: "Lyra's Vega" +source: + marketplace_id: "Mubariz.a-pastel-fever-dream" + version: "1.0.1" + installs: 4448 + author: "Mubariz" + repo: "https://github.com/Cyna298/a-pastel-fever-dream" + url: "https://marketplace.visualstudio.com/items?itemName=Mubariz.a-pastel-fever-dream" +colors: + bg: "#1E1E1E" + fg: "#BEBEBE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 65.6 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/lztheme.yaml b/themes/lztheme.yaml new file mode 100644 index 00000000..4123241a --- /dev/null +++ b/themes/lztheme.yaml @@ -0,0 +1,49 @@ +name: "LzTheme" +source: + marketplace_id: "LzTheme.LzTheme" + version: "0.0.1" + installs: 46 + author: "LzTheme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LzTheme.LzTheme" +colors: + bg: "#1D1D1D" + fg: "#B0B0B0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 57.8 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 106.2 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/m-unity-s-custom-vscode-theme.yaml b/themes/m-unity-s-custom-vscode-theme.yaml new file mode 100644 index 00000000..d5aea2c2 --- /dev/null +++ b/themes/m-unity-s-custom-vscode-theme.yaml @@ -0,0 +1,49 @@ +name: "M-Unity's Custom VSCode Theme" +source: + marketplace_id: "M-UnitySoftware.m-unity-s-custom-vs-code-theme" + version: "1.1.0" + installs: 92 + author: "M-Unity Software" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=M-UnitySoftware.m-unity-s-custom-vs-code-theme" +colors: + bg: "#160000" + fg: "#FF0000" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 29 + contrast: + fg: 37.3 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/m2d-fork.yaml b/themes/m2d-fork.yaml new file mode 100644 index 00000000..81fc66c2 --- /dev/null +++ b/themes/m2d-fork.yaml @@ -0,0 +1,49 @@ +name: "M2D - Fork" +source: + marketplace_id: "VeniceTechnology.venice" + version: "1.0.0" + installs: 102 + author: "Venice Technology" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=VeniceTechnology.venice" +colors: + bg: "#303841" + fg: "#D9DEE9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 251 + contrast: + fg: 79.4 + black: 0 + red: 20.7 + green: 47 + yellow: 79.6 + blue: 21.4 + magenta: 23.7 + cyan: 41.5 + white: 84 + brightBlack: 16 + brightRed: 32.5 + brightGreen: 57.5 + brightYellow: 89.6 + brightBlue: 34 + brightMagenta: 39.3 + brightCyan: 49.4 + brightWhite: 84 diff --git a/themes/mac-theme.yaml b/themes/mac-theme.yaml new file mode 100644 index 00000000..85dfe305 --- /dev/null +++ b/themes/mac-theme.yaml @@ -0,0 +1,49 @@ +name: "mac-theme" +source: + marketplace_id: "zmgawr0.rosegoldmac" + version: "0.0.7" + installs: 442 + author: "zmgawr0" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=zmgawr0.rosegoldmac" +colors: + bg: "#141322" + fg: "#94B4C4" + black: "#30317D" + red: "#FF5395" + green: "#D8FF4E" + yellow: "#FFFC7E" + blue: "#7DD9E4" + magenta: "#FA61B8" + cyan: "#A8FFEF" + white: "#CFF0E8" + brightBlack: "#391AB5" + brightRed: "#FF427B" + brightGreen: "#C8FF00" + brightYellow: "#F8D846" + brightBlue: "#84F9FE" + brightMagenta: "#D5358F" + brightCyan: "#83FEE8" + brightWhite: "#CBFFF2" +meta: + mode: "dark" + accent: "green" + hue: 286 + contrast: + fg: 58.3 + black: 0 + red: 45 + green: 97.1 + yellow: 101.4 + blue: 74.3 + magenta: 47.8 + cyan: 96.5 + white: 92.7 + brightBlack: 8.7 + brightRed: 41.7 + brightGreen: 94.9 + brightYellow: 83 + brightBlue: 91.6 + brightMagenta: 31.4 + brightCyan: 93 + brightWhite: 100 diff --git a/themes/machine.yaml b/themes/machine.yaml new file mode 100644 index 00000000..0d313502 --- /dev/null +++ b/themes/machine.yaml @@ -0,0 +1,49 @@ +name: "Machine" +source: + marketplace_id: "rafaelburghausen.rafa-theme" + version: "3.0.6" + installs: 1203 + author: "rafaelburghausen" + repo: "https://github.com/marcos-burghausen/Extensao-Rafa" + url: "https://marketplace.visualstudio.com/items?itemName=rafaelburghausen.rafa-theme" +colors: + bg: "#273136" + fg: "#F2FFFC" + black: "#3A4449" + red: "#FF6D7E" + green: "#A2E57B" + yellow: "#FFED72" + blue: "#FFB270" + magenta: "#BAA0F8" + cyan: "#7CD5F1" + white: "#F2FFFC" + brightBlack: "#6B7678" + brightRed: "#FF6D7E" + brightGreen: "#A2E57B" + brightYellow: "#FFED72" + brightBlue: "#FFB270" + brightMagenta: "#BAA0F8" + brightCyan: "#7CD5F1" + brightWhite: "#F2FFFC" +meta: + mode: "dark" + accent: "orange" + hue: 230 + contrast: + fg: 100.9 + black: 0 + red: 45 + green: 75 + yellow: 89.9 + blue: 65.3 + magenta: 53.6 + cyan: 68.9 + white: 100.9 + brightBlack: 24.2 + brightRed: 45 + brightGreen: 75 + brightYellow: 89.9 + brightBlue: 65.3 + brightMagenta: 53.6 + brightCyan: 68.9 + brightWhite: 100.9 diff --git a/themes/macho-man.yaml b/themes/macho-man.yaml new file mode 100644 index 00000000..299ef31e --- /dev/null +++ b/themes/macho-man.yaml @@ -0,0 +1,49 @@ +name: "Macho Man" +source: + marketplace_id: "switchcasebreak.macho-man" + version: "1.0.1" + installs: 664 + author: "Keith Brewster" + repo: "https://github.com/brewsterbhg/machoman-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=switchcasebreak.macho-man" +colors: + bg: "#27221F" + fg: "#E9F459" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FF7D7D" + blue: "#5DAFF3" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FF7D7D" + brightBlue: "#5DAFF3" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#67325D" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 92.1 + black: 0 + red: 45.6 + green: 64.7 + yellow: 51.3 + blue: 53.2 + magenta: 62.8 + cyan: 91.2 + white: 105.3 + brightBlack: 13.1 + brightRed: 45.6 + brightGreen: 64.7 + brightYellow: 51.3 + brightBlue: 53.2 + brightMagenta: 62.8 + brightCyan: 91.2 + brightWhite: 8 diff --git a/themes/macos-classic-dark.yaml b/themes/macos-classic-dark.yaml new file mode 100644 index 00000000..de701278 --- /dev/null +++ b/themes/macos-classic-dark.yaml @@ -0,0 +1,49 @@ +name: "macOS Classic Dark" +source: + marketplace_id: "MacOSClassicTheme.macos-classic-theme" + version: "0.1.0" + installs: 216 + author: "CHENJIE" + repo: "https://github.com/wavyhair/vscode-macos-classic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MacOSClassicTheme.macos-classic-theme" +colors: + bg: "#131313" + fg: "#DDDDDD" + black: "#E8E4CF" + red: "#A8473B" + green: "#76BA53" + yellow: "#E1D797" + blue: "#082190" + magenta: "#AE30C2" + cyan: "#3DB6B0" + white: "#131313" + brightBlack: "#57564F" + brightRed: "#DD6F61" + brightGreen: "#9DE478" + brightYellow: "#857F5C" + brightBlue: "#81A9F6" + brightMagenta: "#D86DE9" + brightCyan: "#5BDFD8" + brightWhite: "#3A3A3A" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 85.4 + black: 89.4 + red: 22.8 + green: 55.2 + yellow: 80.7 + blue: 0 + magenta: 26.2 + cyan: 53.2 + white: 0 + brightBlack: 15.7 + brightRed: 42.1 + brightGreen: 78.4 + brightYellow: 33.3 + brightBlue: 55.2 + brightMagenta: 46.6 + brightCyan: 75 + brightWhite: 0 diff --git a/themes/macos-classic-light.yaml b/themes/macos-classic-light.yaml new file mode 100644 index 00000000..30194ca3 --- /dev/null +++ b/themes/macos-classic-light.yaml @@ -0,0 +1,49 @@ +name: "macOS Classic Light" +source: + marketplace_id: "MacOSClassicTheme.macos-classic-theme" + version: "0.1.0" + installs: 216 + author: "CHENJIE" + repo: "https://github.com/wavyhair/vscode-macos-classic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MacOSClassicTheme.macos-classic-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#C5060B" + green: "#277F2B" + yellow: "#8E7823" + blue: "#282BFF" + magenta: "#AE30C2" + cyan: "#00767C" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#D9564E" + brightGreen: "#35BD33" + brightYellow: "#BDA400" + brightBlue: "#5685F4" + brightMagenta: "#D75CE7" + brightCyan: "#20B1C9" + brightWhite: "#999999" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 106 + black: 106 + red: 78.1 + green: 74.5 + yellow: 69.8 + blue: 83.4 + magenta: 74.8 + cyan: 76.4 + white: 0 + brightBlack: 90.3 + brightRed: 65.6 + brightGreen: 48.1 + brightYellow: 48.5 + brightBlue: 61.9 + brightMagenta: 58.4 + brightCyan: 49.7 + brightWhite: 54.6 diff --git a/themes/macos.yaml b/themes/macos.yaml new file mode 100644 index 00000000..c4ef3317 --- /dev/null +++ b/themes/macos.yaml @@ -0,0 +1,49 @@ +name: "macOS" +source: + marketplace_id: "sidiousvic.glitch-dark" + version: "6.6.693" + installs: 6200 + author: "sidiousvic" + repo: "https://github.com/sidiousvic/glitch-dark-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sidiousvic.glitch-dark" +colors: + bg: "#0F0F0F" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#E100FF" + blue: "#0000FF" + magenta: "#B200B2" + cyan: "#00A6B2" + white: "#FFFFFF" + brightBlack: "#D4D4D4" + brightRed: "#FF00FF" + brightGreen: "#00D900" + brightYellow: "#E5E500" + brightBlue: "#0000FF" + brightMagenta: "#E90AC0" + brightCyan: "#00E5E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.5 + black: 0 + red: 37.2 + green: 86.1 + yellow: 39.3 + blue: 15.8 + magenta: 24.2 + cyan: 45.9 + white: 107.5 + brightBlack: 80.1 + brightRed: 45.8 + brightGreen: 66.3 + brightYellow: 86.2 + brightBlue: 15.8 + brightMagenta: 36.6 + brightCyan: 77.3 + brightWhite: 107.5 diff --git a/themes/macrodata-refiners-classic.yaml b/themes/macrodata-refiners-classic.yaml new file mode 100644 index 00000000..adf3b536 --- /dev/null +++ b/themes/macrodata-refiners-classic.yaml @@ -0,0 +1,49 @@ +name: "Macrodata Refiners - Classic" +source: + marketplace_id: "guinetik.macrodata-refiners-severance-theme" + version: "1.0.3" + installs: 139 + author: "guinetik" + repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" +colors: + bg: "#04090D" + fg: "#B0B8B8" + black: "#000000" + red: "#E85050" + green: "#70B0A0" + yellow: "#D0B580" + blue: "#2EC2E0" + magenta: "#B070A0" + cyan: "#00D5D5" + white: "#E8E8E8" + brightBlack: "#3A4545" + brightRed: "#E85050" + brightGreen: "#80C0B0" + brightYellow: "#D0B580" + brightBlue: "#00D5D5" + brightMagenta: "#B070A0" + brightCyan: "#00E5E5" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "orange" + hue: 236 + contrast: + fg: 63 + black: 0 + red: 38.1 + green: 52.9 + yellow: 64.1 + blue: 61.1 + magenta: 37.1 + cyan: 69 + white: 92.8 + brightBlack: 9.3 + brightRed: 38.1 + brightGreen: 61.6 + brightYellow: 64.1 + brightBlue: 69 + brightMagenta: 37.1 + brightCyan: 77.5 + brightWhite: 92.8 diff --git a/themes/macrodata-refiners-cold-harbor.yaml b/themes/macrodata-refiners-cold-harbor.yaml new file mode 100644 index 00000000..2ab644a2 --- /dev/null +++ b/themes/macrodata-refiners-cold-harbor.yaml @@ -0,0 +1,49 @@ +name: "Macrodata Refiners - Cold Harbor" +source: + marketplace_id: "guinetik.macrodata-refiners-severance-theme" + version: "1.0.3" + installs: 139 + author: "guinetik" + repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" +colors: + bg: "#020508" + fg: "#AAB5C0" + black: "#000000" + red: "#E85050" + green: "#5DD9F0" + yellow: "#D0B580" + blue: "#2EC2E0" + magenta: "#B070A0" + cyan: "#5DD9F0" + white: "#E8E8E8" + brightBlack: "#353A3F" + brightRed: "#E85050" + brightGreen: "#8FE9F4" + brightYellow: "#D0B580" + brightBlue: "#5DD9F0" + brightMagenta: "#B070A0" + brightCyan: "#8FE9F4" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "orange" + hue: 239 + contrast: + fg: 61.5 + black: 0 + red: 38.2 + green: 74 + yellow: 64.1 + blue: 61.2 + magenta: 37.2 + cyan: 74 + white: 92.9 + brightBlack: 0 + brightRed: 38.2 + brightGreen: 84.7 + brightYellow: 64.1 + brightBlue: 74 + brightMagenta: 37.2 + brightCyan: 84.7 + brightWhite: 92.9 diff --git a/themes/macrodata-refiners-defiant-jazz.yaml b/themes/macrodata-refiners-defiant-jazz.yaml new file mode 100644 index 00000000..296a67d1 --- /dev/null +++ b/themes/macrodata-refiners-defiant-jazz.yaml @@ -0,0 +1,49 @@ +name: "Macrodata Refiners - Defiant Jazz" +source: + marketplace_id: "guinetik.macrodata-refiners-severance-theme" + version: "1.0.3" + installs: 139 + author: "guinetik" + repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" +colors: + bg: "#000000" + fg: "#CCC0D0" + black: "#000000" + red: "#FF0000" + green: "#00DDEE" + yellow: "#FFBB00" + blue: "#00BBCC" + magenta: "#FF00DD" + cyan: "#00DDFF" + white: "#FFFFFF" + brightBlack: "#2A2530" + brightRed: "#FF0000" + brightGreen: "#33EEFF" + brightYellow: "#FFBB00" + brightBlue: "#00DDFF" + brightMagenta: "#FF00DD" + brightCyan: "#33EEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 70.9 + black: 0 + red: 37.5 + green: 74.2 + yellow: 72.8 + blue: 56.7 + magenta: 43.8 + cyan: 75.2 + white: 107.9 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 83.9 + brightYellow: 72.8 + brightBlue: 75.2 + brightMagenta: 43.8 + brightCyan: 83.9 + brightWhite: 107.9 diff --git a/themes/macrodata-refiners-ortbo.yaml b/themes/macrodata-refiners-ortbo.yaml new file mode 100644 index 00000000..30ccf0f7 --- /dev/null +++ b/themes/macrodata-refiners-ortbo.yaml @@ -0,0 +1,49 @@ +name: "Macrodata Refiners - ORTBO" +source: + marketplace_id: "guinetik.macrodata-refiners-severance-theme" + version: "1.0.3" + installs: 139 + author: "guinetik" + repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" +colors: + bg: "#F8FAFB" + fg: "#2A3A48" + black: "#000000" + red: "#C05050" + green: "#508A70" + yellow: "#C0A560" + blue: "#4A9EC0" + magenta: "#9A70A0" + cyan: "#4A9EC0" + white: "#FFFFFF" + brightBlack: "#5A6A78" + brightRed: "#C05050" + brightGreen: "#508A70" + brightYellow: "#C0A560" + brightBlue: "#4A9EC0" + brightMagenta: "#9A70A0" + brightCyan: "#70B5D0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93.6 + black: 102.8 + red: 68.5 + green: 64.3 + yellow: 43.8 + blue: 53.6 + magenta: 64.4 + cyan: 53.6 + white: 0 + brightBlack: 74.7 + brightRed: 68.5 + brightGreen: 64.3 + brightYellow: 43.8 + brightBlue: 53.6 + brightMagenta: 64.4 + brightCyan: 41.6 + brightWhite: 0 diff --git a/themes/macrodata-refiners-sweet-vitriol.yaml b/themes/macrodata-refiners-sweet-vitriol.yaml new file mode 100644 index 00000000..98bc35b3 --- /dev/null +++ b/themes/macrodata-refiners-sweet-vitriol.yaml @@ -0,0 +1,49 @@ +name: "Macrodata Refiners - Sweet Vitriol" +source: + marketplace_id: "guinetik.macrodata-refiners-severance-theme" + version: "1.0.3" + installs: 139 + author: "guinetik" + repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" +colors: + bg: "#F5F2ED" + fg: "#3A4A54" + black: "#3A4A54" + red: "#A26769" + green: "#B08D57" + yellow: "#C0A060" + blue: "#2A7D78" + magenta: "#866C89" + cyan: "#2D6D62" + white: "#FFFFFF" + brightBlack: "#4A5A64" + brightRed: "#A26769" + brightGreen: "#C09D67" + brightYellow: "#C0A060" + brightBlue: "#2D6D62" + brightMagenta: "#866C89" + brightCyan: "#3A8D82" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 83.6 + black: 83.6 + red: 63.4 + green: 50.2 + yellow: 41.2 + blue: 66 + magenta: 64.7 + cyan: 72.4 + white: 0 + brightBlack: 77.2 + brightRed: 63.4 + brightGreen: 42.2 + brightYellow: 41.2 + brightBlue: 72.4 + brightMagenta: 64.7 + brightCyan: 59.1 + brightWhite: 0 diff --git a/themes/mad-dark-volt.yaml b/themes/mad-dark-volt.yaml new file mode 100644 index 00000000..e8cb41fb --- /dev/null +++ b/themes/mad-dark-volt.yaml @@ -0,0 +1,49 @@ +name: "Mad Dark Volt" +source: + marketplace_id: "rohanb1997.mad-dark-volt" + version: "0.0.1" + installs: 61 + author: "Rohan Bhattacharjee" + repo: "https://github.com/rohanb1997/mad-dark-volt" + url: "https://marketplace.visualstudio.com/items?itemName=rohanb1997.mad-dark-volt" +colors: + bg: "#0C1821" + fg: "#F5F1ED" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 242 + contrast: + fg: 98 + black: 0 + red: 42.1 + green: 62.3 + yellow: 70.6 + blue: 41.5 + magenta: 45.1 + cyan: 54.6 + white: 83 + brightBlack: 35.5 + brightRed: 38.4 + brightGreen: 62.3 + brightYellow: 70.6 + brightBlue: 41.5 + brightMagenta: 12.7 + brightCyan: 54.6 + brightWhite: 83 diff --git a/themes/madak17z-darkmode-testing.yaml b/themes/madak17z-darkmode-testing.yaml new file mode 100644 index 00000000..845bbd8e --- /dev/null +++ b/themes/madak17z-darkmode-testing.yaml @@ -0,0 +1,49 @@ +name: "MadAk17z-darkmode-testing" +source: + marketplace_id: "MadAk17z.madak17z-darkmode-testing" + version: "0.0.4" + installs: 43 + author: "MadAk17z" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MadAk17z.madak17z-darkmode-testing" +colors: + bg: "#131313" + fg: "#13C5DB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 61.3 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/madness.yaml b/themes/madness.yaml new file mode 100644 index 00000000..0bf727c8 --- /dev/null +++ b/themes/madness.yaml @@ -0,0 +1,49 @@ +name: "madness" +source: + marketplace_id: "sonia13marker.madness" + version: "1.3.0" + installs: 70 + author: "sonia13marker" + repo: "https://github.com/sonia13marker/color-theme-madness" + url: "https://marketplace.visualstudio.com/items?itemName=sonia13marker.madness" +colors: + bg: "#1E1E1E" + fg: "#7F848E" + black: "#000000" + red: "#CD2C30" + green: "#299F72" + yellow: "#CFCF17" + blue: "#416DC0" + magenta: "#BA21BA" + cyan: "#4694CB" + white: "#ECEAEA" + brightBlack: "#807F7F" + brightRed: "#FF3F3D" + brightGreen: "#3CD59B" + brightYellow: "#FFFF4F" + brightBlue: "#4C84F0" + brightMagenta: "#F935F9" + brightCyan: "#76BAEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 34.7 + black: 0 + red: 25.4 + green: 39.5 + yellow: 71.9 + blue: 25.4 + magenta: 25.6 + cyan: 39.7 + white: 92.6 + brightBlack: 32.5 + brightRed: 39.1 + brightGreen: 65.6 + brightYellow: 101.2 + brightBlue: 36.8 + brightMagenta: 44.4 + brightCyan: 59.4 + brightWhite: 106 diff --git a/themes/madnight.yaml b/themes/madnight.yaml new file mode 100644 index 00000000..012603bb --- /dev/null +++ b/themes/madnight.yaml @@ -0,0 +1,49 @@ +name: "MadNight" +source: + marketplace_id: "aakashchndr.madnight" + version: "1.0.5" + installs: 972 + author: "Aakash Chandra" + repo: "https://github.com/aakashchndr/MadNight" + url: "https://marketplace.visualstudio.com/items?itemName=aakashchndr.madnight" +colors: + bg: "#0B0B2C" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + contrast: + fg: 80 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/madrid-night.yaml b/themes/madrid-night.yaml new file mode 100644 index 00000000..eeba605c --- /dev/null +++ b/themes/madrid-night.yaml @@ -0,0 +1,49 @@ +name: "Madrid Night" +source: + marketplace_id: "jonpena.madrid-night-theme" + version: "1.0.6" + installs: 55 + author: "joncode" + repo: "https://github.com/jonpena/vscode-madrid-night-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jonpena.madrid-night-theme" +colors: + bg: "#191826" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 287 + contrast: + fg: 59.6 + black: 0 + red: 49.6 + green: 72.5 + yellow: 62.5 + blue: 51.4 + magenta: 55.3 + cyan: 70.8 + white: 32.3 + brightBlack: 0 + brightRed: 49.6 + brightGreen: 72.5 + brightYellow: 62.5 + brightBlue: 51.4 + brightMagenta: 55.3 + brightCyan: 70.8 + brightWhite: 59.2 diff --git a/themes/magenta-one-dark-pro.yaml b/themes/magenta-one-dark-pro.yaml new file mode 100644 index 00000000..6c41a12b --- /dev/null +++ b/themes/magenta-one-dark-pro.yaml @@ -0,0 +1,49 @@ +name: "Magenta One Dark Pro" +source: + marketplace_id: "pit00.magenta-one-dark-pro" + version: "1.0.0" + installs: 3493 + author: "Pitu" + repo: "https://github.com/pit00/magenta-one-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=pit00.magenta-one-dark-pro" +colors: + bg: "#0A1016" + fg: "#B3B1AD" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#44475A" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 249 + contrast: + fg: 59.8 + black: 0 + red: 44 + green: 85.5 + yellow: 99.1 + blue: 54.2 + magenta: 55.2 + cyan: 84.6 + white: 102.6 + brightBlack: 10.8 + brightRed: 49.4 + brightGreen: 89.6 + brightYellow: 104.1 + brightBlue: 66.7 + brightMagenta: 63.2 + brightCyan: 97.4 + brightWhite: 107.5 diff --git a/themes/magic-mushroom-theme.yaml b/themes/magic-mushroom-theme.yaml new file mode 100644 index 00000000..2e2261d7 --- /dev/null +++ b/themes/magic-mushroom-theme.yaml @@ -0,0 +1,49 @@ +name: "Magic Mushroom Theme" +source: + marketplace_id: "BraianVaylet.magic-mushroom" + version: "1.1.3" + installs: 1276 + author: "Braian Vaylet" + repo: "https://github.com/BraianVaylet/magic-mushroom-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BraianVaylet.magic-mushroom" +colors: + bg: "#0E0F1B" + fg: "#EDECEE" + black: "#0E0F1B" + red: "#FA7676" + green: "#8EE1D3" + yellow: "#E9A7F9" + blue: "#A683F9" + magenta: "#8EE1D3" + cyan: "#A683F9" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#E9A7F9" + brightGreen: "#A683F9" + brightYellow: "#E9A7F9" + brightBlue: "#A683F9" + brightMagenta: "#8EE1D3" + brightCyan: "#8EE1D3" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "magenta" + hue: 280 + contrast: + fg: 95.3 + black: 0 + red: 50.4 + green: 78.8 + yellow: 67.5 + blue: 46.2 + magenta: 78.8 + cyan: 46.2 + white: 75.4 + brightBlack: 0 + brightRed: 67.5 + brightGreen: 46.2 + brightYellow: 67.5 + brightBlue: 46.2 + brightMagenta: 78.8 + brightCyan: 78.8 + brightWhite: 95.3 diff --git a/themes/magicorp.yaml b/themes/magicorp.yaml new file mode 100644 index 00000000..8991c9f7 --- /dev/null +++ b/themes/magicorp.yaml @@ -0,0 +1,49 @@ +name: "Magicorp" +source: + marketplace_id: "dango.magicorp-theme" + version: "1.2.3" + installs: 194 + author: "Daniel Radosa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dango.magicorp-theme" +colors: + bg: "#151515" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.1 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/magicuser-bases.yaml b/themes/magicuser-bases.yaml new file mode 100644 index 00000000..a8ddfd22 --- /dev/null +++ b/themes/magicuser-bases.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Bases" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#181F28" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: 255 + contrast: + fg: 81 + black: 0 + red: 40.3 + green: 84.6 + yellow: 100.8 + blue: 14.3 + magenta: 44.3 + cyan: 90.3 + white: 106 + brightBlack: 0 + brightRed: 37 + brightGreen: 78.3 + brightYellow: 101 + brightBlue: 46.8 + brightMagenta: 44.1 + brightCyan: 83.2 + brightWhite: 81 diff --git a/themes/magicuser-book.yaml b/themes/magicuser-book.yaml new file mode 100644 index 00000000..41d20a29 --- /dev/null +++ b/themes/magicuser-book.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Book" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#E8E8E8" + fg: "#000000" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 92.4 + black: 91.8 + red: 45.9 + green: 0 + yellow: 7.8 + blue: 72.2 + magenta: 42 + cyan: 0 + white: 12.9 + brightBlack: 85.1 + brightRed: 49.2 + brightGreen: 9.4 + brightYellow: 8 + brightBlue: 39.5 + brightMagenta: 42.2 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/magicuser-camouflage-light.yaml b/themes/magicuser-camouflage-light.yaml new file mode 100644 index 00000000..a984d439 --- /dev/null +++ b/themes/magicuser-camouflage-light.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Camouflage Light" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#E1E8D3" + fg: "#000000" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "light" + accent: "pink" + hue: 122 + contrast: + fg: 90.8 + black: 90.1 + red: 44.2 + green: 0 + yellow: 9.7 + blue: 70.5 + magenta: 40.3 + cyan: 0 + white: 14.8 + brightBlack: 83.4 + brightRed: 47.5 + brightGreen: 7.8 + brightYellow: 9.9 + brightBlue: 37.8 + brightMagenta: 40.5 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/magicuser-camouflage.yaml b/themes/magicuser-camouflage.yaml new file mode 100644 index 00000000..0f0e0d20 --- /dev/null +++ b/themes/magicuser-camouflage.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Camouflage" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#24281C" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: 123 + contrast: + fg: 79.8 + black: 0 + red: 39 + green: 83.3 + yellow: 99.5 + blue: 13.1 + magenta: 43 + cyan: 89 + white: 104.7 + brightBlack: 0 + brightRed: 35.7 + brightGreen: 77 + brightYellow: 99.8 + brightBlue: 45.6 + brightMagenta: 42.8 + brightCyan: 81.9 + brightWhite: 79.8 diff --git a/themes/magicuser-day.yaml b/themes/magicuser-day.yaml new file mode 100644 index 00000000..fbad0a7d --- /dev/null +++ b/themes/magicuser-day.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Day" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#E1E1E1" + fg: "#000000" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 88.4 + black: 87.7 + red: 41.9 + green: 0 + yellow: 12.3 + blue: 68.2 + magenta: 37.9 + cyan: 0 + white: 17.5 + brightBlack: 81 + brightRed: 45.1 + brightGreen: 0 + brightYellow: 12.6 + brightBlue: 35.5 + brightMagenta: 38.1 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/magicuser-light-blue.yaml b/themes/magicuser-light-blue.yaml new file mode 100644 index 00000000..e833d5e7 --- /dev/null +++ b/themes/magicuser-light-blue.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Light Blue" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#E8EFFF" + fg: "#000000" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 96.4 + black: 95.7 + red: 49.9 + green: 7.5 + yellow: 0 + blue: 76.2 + magenta: 45.9 + cyan: 0 + white: 8.4 + brightBlack: 89 + brightRed: 53.1 + brightGreen: 13.4 + brightYellow: 0 + brightBlue: 43.5 + brightMagenta: 46.1 + brightCyan: 8.8 + brightWhite: 10.8 diff --git a/themes/magicuser-light-gray.yaml b/themes/magicuser-light-gray.yaml new file mode 100644 index 00000000..d2b9df97 --- /dev/null +++ b/themes/magicuser-light-gray.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Light Gray" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#F1F1F1" + fg: "#000000" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 97.7 + black: 97 + red: 51.2 + green: 8.8 + yellow: 0 + blue: 77.5 + magenta: 47.2 + cyan: 0 + white: 0 + brightBlack: 90.3 + brightRed: 54.4 + brightGreen: 14.7 + brightYellow: 0 + brightBlue: 44.8 + brightMagenta: 47.4 + brightCyan: 10.1 + brightWhite: 12.1 diff --git a/themes/magicuser-light-green.yaml b/themes/magicuser-light-green.yaml new file mode 100644 index 00000000..f28e8bcb --- /dev/null +++ b/themes/magicuser-light-green.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Light Green" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#E1FBE1" + fg: "#000000" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 99.5 + black: 98.8 + red: 52.9 + green: 10.6 + yellow: 0 + blue: 79.3 + magenta: 49 + cyan: 0 + white: 0 + brightBlack: 92.1 + brightRed: 56.2 + brightGreen: 16.5 + brightYellow: 0 + brightBlue: 46.5 + brightMagenta: 49.2 + brightCyan: 11.9 + brightWhite: 13.9 diff --git a/themes/magicuser-light-orange.yaml b/themes/magicuser-light-orange.yaml new file mode 100644 index 00000000..315a9a78 --- /dev/null +++ b/themes/magicuser-light-orange.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Light Orange" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#FFF0E1" + fg: "#000000" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 98.5 + black: 97.8 + red: 51.9 + green: 9.6 + yellow: 0 + blue: 78.2 + magenta: 48 + cyan: 0 + white: 0 + brightBlack: 91.1 + brightRed: 55.2 + brightGreen: 15.5 + brightYellow: 0 + brightBlue: 45.5 + brightMagenta: 48.2 + brightCyan: 10.9 + brightWhite: 12.9 diff --git a/themes/magicuser-light-purple.yaml b/themes/magicuser-light-purple.yaml new file mode 100644 index 00000000..c9721c0d --- /dev/null +++ b/themes/magicuser-light-purple.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Light Purple" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#DDD3FF" + fg: "#000000" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "light" + accent: "pink" + hue: 296 + contrast: + fg: 83.7 + black: 83 + red: 37.1 + green: 0 + yellow: 17.7 + blue: 63.4 + magenta: 33.2 + cyan: 0 + white: 22.8 + brightBlack: 76.3 + brightRed: 40.4 + brightGreen: 0 + brightYellow: 17.9 + brightBlue: 30.7 + brightMagenta: 33.4 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/magicuser-light.yaml b/themes/magicuser-light.yaml new file mode 100644 index 00000000..f54ccd2f --- /dev/null +++ b/themes/magicuser-light.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Light" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 105.4 + red: 59.5 + green: 17.1 + yellow: 0 + blue: 85.8 + magenta: 55.6 + cyan: 11.8 + white: 0 + brightBlack: 98.7 + brightRed: 62.8 + brightGreen: 23 + brightYellow: 0 + brightBlue: 53.1 + brightMagenta: 55.8 + brightCyan: 18.4 + brightWhite: 20.5 diff --git a/themes/magicuser-neblina.yaml b/themes/magicuser-neblina.yaml new file mode 100644 index 00000000..7678b38f --- /dev/null +++ b/themes/magicuser-neblina.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Neblina" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#D8D8D8" + fg: "#000000" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 83.2 + black: 82.6 + red: 36.7 + green: 0 + yellow: 18.1 + blue: 63 + magenta: 32.8 + cyan: 7.6 + white: 23.3 + brightBlack: 75.9 + brightRed: 40 + brightGreen: 0 + brightYellow: 18.4 + brightBlue: 30.3 + brightMagenta: 33 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/magicuser-night-neblina.yaml b/themes/magicuser-night-neblina.yaml new file mode 100644 index 00000000..6986ec5f --- /dev/null +++ b/themes/magicuser-night-neblina.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Night Neblina" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#080808" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 82.9 + black: 0 + red: 42.1 + green: 86.4 + yellow: 102.6 + blue: 16.1 + magenta: 46.1 + cyan: 92.1 + white: 107.8 + brightBlack: 0 + brightRed: 38.8 + brightGreen: 80.1 + brightYellow: 102.9 + brightBlue: 48.7 + brightMagenta: 45.9 + brightCyan: 85 + brightWhite: 82.9 diff --git a/themes/magicuser-night.yaml b/themes/magicuser-night.yaml new file mode 100644 index 00000000..a5afb3af --- /dev/null +++ b/themes/magicuser-night.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Night" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#001122" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: 246 + contrast: + fg: 82.4 + black: 0 + red: 41.7 + green: 85.9 + yellow: 102.2 + blue: 15.7 + magenta: 45.7 + cyan: 91.6 + white: 107.3 + brightBlack: 0 + brightRed: 38.4 + brightGreen: 79.6 + brightYellow: 102.4 + brightBlue: 48.2 + brightMagenta: 45.5 + brightCyan: 84.5 + brightWhite: 82.4 diff --git a/themes/magicuser-paladin.yaml b/themes/magicuser-paladin.yaml new file mode 100644 index 00000000..1d9829ec --- /dev/null +++ b/themes/magicuser-paladin.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Paladin" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#001833" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#F100F1" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "purple" + hue: 252 + contrast: + fg: 81.7 + black: 0 + red: 40.9 + green: 85.2 + yellow: 101.4 + blue: 14.9 + magenta: 40.7 + cyan: 90.9 + white: 106.6 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 78.9 + brightYellow: 101.7 + brightBlue: 47.5 + brightMagenta: 44.7 + brightCyan: 83.8 + brightWhite: 81.7 diff --git a/themes/magicuser-path.yaml b/themes/magicuser-path.yaml new file mode 100644 index 00000000..fdf9a1f6 --- /dev/null +++ b/themes/magicuser-path.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Path" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#0C1221" + fg: "#A3A3A3" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: 267 + contrast: + fg: 51.8 + black: 0 + red: 41.6 + green: 85.9 + yellow: 102.1 + blue: 15.6 + magenta: 45.6 + cyan: 91.5 + white: 107.2 + brightBlack: 0 + brightRed: 38.3 + brightGreen: 79.5 + brightYellow: 102.3 + brightBlue: 48.1 + brightMagenta: 45.4 + brightCyan: 84.5 + brightWhite: 82.3 diff --git a/themes/magicuser-power.yaml b/themes/magicuser-power.yaml new file mode 100644 index 00000000..741efe59 --- /dev/null +++ b/themes/magicuser-power.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Power" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#1B1235" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#F100F1" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "purple" + hue: 292 + contrast: + fg: 81.7 + black: 0 + red: 41 + green: 85.2 + yellow: 101.5 + blue: 15 + magenta: 40.8 + cyan: 90.9 + white: 106.6 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 78.9 + brightYellow: 101.7 + brightBlue: 47.5 + brightMagenta: 44.8 + brightCyan: 83.8 + brightWhite: 81.7 diff --git a/themes/magicuser-purple-night.yaml b/themes/magicuser-purple-night.yaml new file mode 100644 index 00000000..67852565 --- /dev/null +++ b/themes/magicuser-purple-night.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Purple Night" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#110022" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: 304 + contrast: + fg: 82.6 + black: 0 + red: 41.9 + green: 86.2 + yellow: 102.4 + blue: 15.9 + magenta: 45.9 + cyan: 91.9 + white: 107.6 + brightBlack: 0 + brightRed: 38.6 + brightGreen: 79.9 + brightYellow: 102.7 + brightBlue: 48.4 + brightMagenta: 45.7 + brightCyan: 84.8 + brightWhite: 82.6 diff --git a/themes/magicuser-purple.yaml b/themes/magicuser-purple.yaml new file mode 100644 index 00000000..75ce1951 --- /dev/null +++ b/themes/magicuser-purple.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Purple" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#330048" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: 312 + contrast: + fg: 80.5 + black: 0 + red: 39.8 + green: 84.1 + yellow: 100.3 + blue: 13.8 + magenta: 43.8 + cyan: 89.8 + white: 105.5 + brightBlack: 0 + brightRed: 36.5 + brightGreen: 77.8 + brightYellow: 100.5 + brightBlue: 46.3 + brightMagenta: 43.6 + brightCyan: 82.7 + brightWhite: 80.5 diff --git a/themes/magicuser-room-lamp.yaml b/themes/magicuser-room-lamp.yaml new file mode 100644 index 00000000..8a5d1f77 --- /dev/null +++ b/themes/magicuser-room-lamp.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Room Lamp" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#2F0F18" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: 5 + contrast: + fg: 81.4 + black: 0 + red: 40.7 + green: 85 + yellow: 101.2 + blue: 14.7 + magenta: 44.7 + cyan: 90.7 + white: 106.4 + brightBlack: 0 + brightRed: 37.4 + brightGreen: 78.7 + brightYellow: 101.5 + brightBlue: 47.2 + brightMagenta: 44.5 + brightCyan: 83.6 + brightWhite: 81.4 diff --git a/themes/magicuser-sea.yaml b/themes/magicuser-sea.yaml new file mode 100644 index 00000000..80600c18 --- /dev/null +++ b/themes/magicuser-sea.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Sea" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#D1DBF1" + fg: "#000000" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "light" + accent: "pink" + hue: 266 + contrast: + fg: 84.7 + black: 84.1 + red: 38.2 + green: 0 + yellow: 16.4 + blue: 64.5 + magenta: 34.3 + cyan: 0 + white: 21.6 + brightBlack: 77.4 + brightRed: 41.5 + brightGreen: 0 + brightYellow: 16.7 + brightBlue: 31.8 + brightMagenta: 34.5 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/magicuser-space.yaml b/themes/magicuser-space.yaml new file mode 100644 index 00000000..f5a5a023 --- /dev/null +++ b/themes/magicuser-space.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Space" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#000000" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 82.9 + black: 0 + red: 42.2 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 0 + brightRed: 38.9 + brightGreen: 80.2 + brightYellow: 103 + brightBlue: 48.7 + brightMagenta: 46 + brightCyan: 85.1 + brightWhite: 82.9 diff --git a/themes/magicuser-specialist.yaml b/themes/magicuser-specialist.yaml new file mode 100644 index 00000000..45ea5cab --- /dev/null +++ b/themes/magicuser-specialist.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Specialist" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#E1F1E8" + fg: "#000000" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "light" + accent: "pink" + hue: 161 + contrast: + fg: 95.4 + black: 94.7 + red: 48.9 + green: 0 + yellow: 0 + blue: 75.2 + magenta: 44.9 + cyan: 0 + white: 9.6 + brightBlack: 88 + brightRed: 52.1 + brightGreen: 12.4 + brightYellow: 0 + brightBlue: 42.5 + brightMagenta: 45.1 + brightCyan: 7.8 + brightWhite: 9.8 diff --git a/themes/magicuser-staff.yaml b/themes/magicuser-staff.yaml new file mode 100644 index 00000000..2114ba8b --- /dev/null +++ b/themes/magicuser-staff.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Staff" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#181A32" + fg: "#A3A3A3" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 50.8 + black: 0 + red: 40.6 + green: 84.9 + yellow: 101.1 + blue: 14.6 + magenta: 44.6 + cyan: 90.5 + white: 106.3 + brightBlack: 0 + brightRed: 37.3 + brightGreen: 78.5 + brightYellow: 101.3 + brightBlue: 47.1 + brightMagenta: 44.4 + brightCyan: 83.5 + brightWhite: 81.3 diff --git a/themes/magicuser-sun.yaml b/themes/magicuser-sun.yaml new file mode 100644 index 00000000..afb2de4b --- /dev/null +++ b/themes/magicuser-sun.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Sun" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#F8F3C5" + fg: "#000000" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 97.8 + black: 97.1 + red: 51.3 + green: 8.9 + yellow: 0 + blue: 77.6 + magenta: 47.4 + cyan: 0 + white: 0 + brightBlack: 90.4 + brightRed: 54.5 + brightGreen: 14.8 + brightYellow: 0 + brightBlue: 44.9 + brightMagenta: 47.5 + brightCyan: 10.2 + brightWhite: 12.2 diff --git a/themes/magicuser-talisman.yaml b/themes/magicuser-talisman.yaml new file mode 100644 index 00000000..0c751d68 --- /dev/null +++ b/themes/magicuser-talisman.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Talisman" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#001A14" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#F100F1" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "purple" + hue: 176 + contrast: + fg: 81.9 + black: 0 + red: 41.2 + green: 85.5 + yellow: 101.7 + blue: 15.2 + magenta: 41 + cyan: 91.2 + white: 106.9 + brightBlack: 0 + brightRed: 37.9 + brightGreen: 79.2 + brightYellow: 101.9 + brightBlue: 47.7 + brightMagenta: 45 + brightCyan: 84.1 + brightWhite: 81.9 diff --git a/themes/magicuser-teal-night.yaml b/themes/magicuser-teal-night.yaml new file mode 100644 index 00000000..3b5d1728 --- /dev/null +++ b/themes/magicuser-teal-night.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Teal Night" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#001212" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: 195 + contrast: + fg: 82.5 + black: 0 + red: 41.8 + green: 86 + yellow: 102.3 + blue: 15.8 + magenta: 45.8 + cyan: 91.7 + white: 107.4 + brightBlack: 0 + brightRed: 38.5 + brightGreen: 79.7 + brightYellow: 102.5 + brightBlue: 48.3 + brightMagenta: 45.6 + brightCyan: 84.6 + brightWhite: 82.5 diff --git a/themes/magicuser-teal.yaml b/themes/magicuser-teal.yaml new file mode 100644 index 00000000..99951eb2 --- /dev/null +++ b/themes/magicuser-teal.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Teal" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#002828" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: 195 + contrast: + fg: 80.2 + black: 0 + red: 39.4 + green: 83.7 + yellow: 99.9 + blue: 13.4 + magenta: 43.4 + cyan: 89.4 + white: 105.1 + brightBlack: 0 + brightRed: 36.1 + brightGreen: 77.4 + brightYellow: 100.2 + brightBlue: 46 + brightMagenta: 43.2 + brightCyan: 82.3 + brightWhite: 80.2 diff --git a/themes/magicuser-veteran-blue.yaml b/themes/magicuser-veteran-blue.yaml new file mode 100644 index 00000000..11d60bff --- /dev/null +++ b/themes/magicuser-veteran-blue.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Veteran Blue" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#000918" + fg: "#CFCFCF" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: 250 + contrast: + fg: 77.3 + black: 0 + red: 42 + green: 86.3 + yellow: 102.5 + blue: 16.1 + magenta: 46.1 + cyan: 92 + white: 107.7 + brightBlack: 0 + brightRed: 38.8 + brightGreen: 80 + brightYellow: 102.8 + brightBlue: 48.6 + brightMagenta: 45.9 + brightCyan: 84.9 + brightWhite: 82.8 diff --git a/themes/magicuser-veteran-purple.yaml b/themes/magicuser-veteran-purple.yaml new file mode 100644 index 00000000..4671332c --- /dev/null +++ b/themes/magicuser-veteran-purple.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Veteran Purple" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#200028" + fg: "#CFCFCF" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: 319 + contrast: + fg: 76.7 + black: 0 + red: 41.4 + green: 85.7 + yellow: 101.9 + blue: 15.5 + magenta: 45.5 + cyan: 91.4 + white: 107.1 + brightBlack: 0 + brightRed: 38.2 + brightGreen: 79.4 + brightYellow: 102.2 + brightBlue: 48 + brightMagenta: 45.3 + brightCyan: 84.3 + brightWhite: 82.2 diff --git a/themes/magicuser-veteran.yaml b/themes/magicuser-veteran.yaml new file mode 100644 index 00000000..075f28ec --- /dev/null +++ b/themes/magicuser-veteran.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Veteran" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#00180F" + fg: "#CFCFCF" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: 167 + contrast: + fg: 76.6 + black: 0 + red: 41.4 + green: 85.7 + yellow: 101.9 + blue: 15.4 + magenta: 45.4 + cyan: 91.3 + white: 107 + brightBlack: 0 + brightRed: 38.1 + brightGreen: 79.3 + brightYellow: 102.1 + brightBlue: 47.9 + brightMagenta: 45.2 + brightCyan: 84.2 + brightWhite: 82.1 diff --git a/themes/magicuser-wand-blue.yaml b/themes/magicuser-wand-blue.yaml new file mode 100644 index 00000000..3daa015a --- /dev/null +++ b/themes/magicuser-wand-blue.yaml @@ -0,0 +1,49 @@ +name: "MagicUser Wand Blue" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#1F1F1F" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 81 + black: 0 + red: 40.2 + green: 84.5 + yellow: 100.7 + blue: 14.2 + magenta: 44.2 + cyan: 90.2 + white: 105.9 + brightBlack: 0 + brightRed: 36.9 + brightGreen: 78.2 + brightYellow: 101 + brightBlue: 46.8 + brightMagenta: 44 + brightCyan: 83.1 + brightWhite: 81 diff --git a/themes/magicuser.yaml b/themes/magicuser.yaml new file mode 100644 index 00000000..49943c18 --- /dev/null +++ b/themes/magicuser.yaml @@ -0,0 +1,49 @@ +name: "MagicUser" +source: + marketplace_id: "BernardoPires.magicuser-color-themes" + version: "8.5.2" + installs: 1704 + author: "Bernardo Pires" + repo: "https://github.com/drbap/magicuser-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" +colors: + bg: "#002248" + fg: "#D8D8D8" + black: "#111111" + red: "#FF4848" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F14848" + brightGreen: "#48F148" + brightYellow: "#FFFF48" + brightBlue: "#00A3F1" + brightMagenta: "#F148F1" + brightCyan: "#48F1F1" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: 254 + contrast: + fg: 80.2 + black: 0 + red: 39.5 + green: 83.7 + yellow: 100 + blue: 13.5 + magenta: 43.5 + cyan: 89.4 + white: 105.1 + brightBlack: 0 + brightRed: 36.2 + brightGreen: 77.4 + brightYellow: 100.2 + brightBlue: 46 + brightMagenta: 43.3 + brightCyan: 82.3 + brightWhite: 80.2 diff --git a/themes/magnolia.yaml b/themes/magnolia.yaml new file mode 100644 index 00000000..0b6baf63 --- /dev/null +++ b/themes/magnolia.yaml @@ -0,0 +1,49 @@ +name: "Magnolia" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 80 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" +colors: + bg: "#FAF6EF" + fg: "#3C2C21" + black: "#C2B4A3" + red: "#A3312C" + green: "#4F764D" + yellow: "#C77C2E" + blue: "#3A6EA5" + magenta: "#B07CBF" + cyan: "#6B4A3E" + white: "#3C2C21" + brightBlack: "#BDA68F" + brightRed: "#D94C4C" + brightGreen: "#6C9C6C" + brightYellow: "#E4A64F" + brightBlue: "#739FCB" + brightMagenta: "#D2A3E0" + brightCyan: "#A1733B" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 94.5 + black: 34.3 + red: 77.7 + green: 70.6 + yellow: 55 + blue: 71.1 + magenta: 54.4 + cyan: 82 + white: 94.5 + brightBlack: 40.8 + brightRed: 62.2 + brightGreen: 53.7 + brightYellow: 36.4 + brightBlue: 48.4 + brightMagenta: 35.6 + brightCyan: 63.5 + brightWhite: 100.9 diff --git a/themes/magnus-dark-theme.yaml b/themes/magnus-dark-theme.yaml new file mode 100644 index 00000000..8c168f14 --- /dev/null +++ b/themes/magnus-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "magnus-dark-theme" +source: + marketplace_id: "Magic-Themes.magic-theme" + version: "0.0.3" + installs: 2571 + author: "Magic-Themes" + repo: "https://github.com/sonumagnus/Magnet-Theme-VS-Code" + url: "https://marketplace.visualstudio.com/items?itemName=Magic-Themes.magic-theme" +colors: + bg: "#292C3E" + fg: "#C1D3D6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + contrast: + fg: 73.4 + black: 0 + red: 23.3 + green: 49.5 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.6 diff --git a/themes/maguh.yaml b/themes/maguh.yaml new file mode 100644 index 00000000..9f174326 --- /dev/null +++ b/themes/maguh.yaml @@ -0,0 +1,49 @@ +name: "maguh" +source: + marketplace_id: "tassianoalencar.maguh-theme" + version: "0.0.13" + installs: 540 + author: "tassianoalencar" + repo: "https://github.com/tassianoalencar/maguh-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=tassianoalencar.maguh-theme" +colors: + bg: "#1C1C1C" + fg: "#D4D4D4" + black: "#1C1C1C" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.9 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/maharashtra-land-of-warriors.yaml b/themes/maharashtra-land-of-warriors.yaml new file mode 100644 index 00000000..109db10a --- /dev/null +++ b/themes/maharashtra-land-of-warriors.yaml @@ -0,0 +1,49 @@ +name: "Maharashtra - Land of Warriors" +source: + marketplace_id: "ProudIndian.colors-of-india-themes" + version: "1.0.1" + installs: 37 + author: "Sachin Ghadi" + repo: "https://github.com/GhadiSachin/colors-of-india-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" +colors: + bg: "#1A1612" + fg: "#F0E6D2" + black: "#000000" + red: "#E74856" + green: "#8B4513" + yellow: "#FFB300" + blue: "#3B8EEA" + magenta: "#B140AA" + cyan: "#29B8DB" + white: "#E5E5E5" + brightBlack: "#000000" + brightRed: "#E74856" + brightGreen: "#8B4513" + brightYellow: "#FFB300" + brightBlue: "#3B8EEA" + brightMagenta: "#B140AA" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 67 + contrast: + fg: 91.2 + black: 0 + red: 35.9 + green: 16.9 + yellow: 68.8 + blue: 40 + magenta: 26.8 + cyan: 55.4 + white: 90 + brightBlack: 0 + brightRed: 35.9 + brightGreen: 16.9 + brightYellow: 68.8 + brightBlue: 40 + brightMagenta: 26.8 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/mahiro.yaml b/themes/mahiro.yaml new file mode 100644 index 00000000..dc1bb97a --- /dev/null +++ b/themes/mahiro.yaml @@ -0,0 +1,49 @@ +name: "Mahiro" +source: + marketplace_id: "rynco.mihari" + version: "0.4.0" + installs: 866 + author: "rynco" + repo: "https://github.com/01010101lzy/mihari" + url: "https://marketplace.visualstudio.com/items?itemName=rynco.mihari" +colors: + bg: "#E9F2FA" + fg: "#454D63" + black: "#E9F2FA" + red: "#E32636" + green: "#8BA66A" + yellow: "#E1BD09" + blue: "#7B92C9" + magenta: "#DF3D8B" + cyan: "#649AA2" + white: "#454D63" + brightBlack: "#454D53" + brightRed: "#E32636" + brightGreen: "#8BA66A" + brightYellow: "#E1BD09" + brightBlue: "#7B92C9" + brightMagenta: "#DF3D8B" + brightCyan: "#649AA2" + brightWhite: "#C4CDD5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 61.3 + green: 43.9 + yellow: 25.5 + blue: 49.3 + magenta: 58 + cyan: 49.9 + white: 80.5 + brightBlack: 81.1 + brightRed: 61.3 + brightGreen: 43.9 + brightYellow: 25.5 + brightBlue: 49.3 + brightMagenta: 58 + brightCyan: 49.9 + brightWhite: 18.9 diff --git a/themes/maisum-xcode-dark.yaml b/themes/maisum-xcode-dark.yaml new file mode 100644 index 00000000..5a0a8a66 --- /dev/null +++ b/themes/maisum-xcode-dark.yaml @@ -0,0 +1,49 @@ +name: "Maisum Xcode Dark" +source: + marketplace_id: "MaisUmDev.maisum-xcode-theme-dark" + version: "0.1.1" + installs: 2606 + author: "Mais Um Dev" + repo: "https://github.com/maisumdev/timeflow-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MaisUmDev.maisum-xcode-theme-dark" +colors: + bg: "#000000" + fg: "#D0BF69" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 67.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/mak1na-theme.yaml b/themes/mak1na-theme.yaml new file mode 100644 index 00000000..a1f94f8c --- /dev/null +++ b/themes/mak1na-theme.yaml @@ -0,0 +1,49 @@ +name: "Mak1na Theme" +source: + marketplace_id: "KevinMancini.palenight-mak1na-theme" + version: "0.0.3" + installs: 84 + author: "Kevin Mancini" + repo: "https://github.com/KevinMancini/palenight-mak1na-theme" + url: "https://marketplace.visualstudio.com/items?itemName=KevinMancini.palenight-mak1na-theme" +colors: + bg: "#201A24" + fg: "#BFC7D5" + black: "#826998" + red: "#FF5572" + green: "#A9C77D" + yellow: "#F1B866" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#826998" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#F1B866" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 312 + contrast: + fg: 70.7 + black: 27.2 + red: 43.4 + green: 65.2 + yellow: 68.3 + blue: 55.3 + magenta: 53.1 + cyan: 77.6 + white: 106.3 + brightBlack: 27.2 + brightRed: 43.4 + brightGreen: 83.6 + brightYellow: 68.3 + brightBlue: 55.3 + brightMagenta: 53.1 + brightCyan: 77.6 + brightWhite: 106.3 diff --git a/themes/make-apps.yaml b/themes/make-apps.yaml new file mode 100644 index 00000000..00c3c018 --- /dev/null +++ b/themes/make-apps.yaml @@ -0,0 +1,49 @@ +name: "Make Apps" +source: + marketplace_id: "dannyconnell.make-apps-theme" + version: "1.0.4" + installs: 19987 + author: "Danny Connell" + repo: "https://github.com/dannyconnell/vscode-make-apps-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dannyconnell.make-apps-theme" +colors: + bg: "#242E33" + fg: "#C5C8C6" + black: "#242E33" + red: "#A54242" + green: "#8C9440" + yellow: "#DE935F" + blue: "#81A2BE" + magenta: "#85678F" + cyan: "#5E8D87" + white: "#6C7A80" + brightBlack: "#7A7A7A" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#F0C674" + brightBlue: "#99DBFF" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#C5C8C6" +meta: + mode: "dark" + accent: "orange" + hue: 230 + contrast: + fg: 68.5 + black: 0 + red: 17.8 + green: 37.4 + yellow: 49 + blue: 45.5 + magenta: 23.8 + cyan: 32.5 + white: 26.5 + brightBlack: 27.6 + brightRed: 33.1 + brightGreen: 59 + brightYellow: 71.2 + brightBlue: 75.2 + brightMagenta: 45.5 + brightCyan: 57.5 + brightWhite: 68.5 diff --git a/themes/malachite.yaml b/themes/malachite.yaml new file mode 100644 index 00000000..73b0e2e7 --- /dev/null +++ b/themes/malachite.yaml @@ -0,0 +1,49 @@ +name: "Malachite" +source: + marketplace_id: "Switcheroo.malachite-10" + version: "0.0.2" + installs: 14 + author: "Switch.er.oo" + repo: "https://github.com/Switch-er-oo/Malachite-1.0" + url: "https://marketplace.visualstudio.com/items?itemName=Switcheroo.malachite-10" +colors: + bg: "#111010" + fg: "#D3D1D0" + black: "#000000" + red: "#AD0707" + green: "#1BBC0D" + yellow: "#E8BA00" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#20B9C9" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FD1D1D" + brightGreen: "#A0E40A" + brightYellow: "#E2E21A" + brightBlue: "#60AFF5" + brightMagenta: "#D670D6" + brightCyan: "#07E6C7" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.4 + black: 0 + red: 18 + green: 52.4 + yellow: 68.1 + blue: 28 + magenta: 30.3 + cyan: 55.3 + white: 90.6 + brightBlack: 22.6 + brightRed: 37.1 + brightGreen: 77.9 + brightYellow: 84.4 + brightBlue: 55.6 + brightMagenta: 45.9 + brightCyan: 76.3 + brightWhite: 90.6 diff --git a/themes/maldi-dark.yaml b/themes/maldi-dark.yaml new file mode 100644 index 00000000..7d34fd3b --- /dev/null +++ b/themes/maldi-dark.yaml @@ -0,0 +1,49 @@ +name: "Maldi Dark" +source: + marketplace_id: "msmaldi.maldi-vscode-theme" + version: "0.0.1" + installs: 51 + author: "Matheus Maldi" + repo: "https://github.com/msmaldi/maldi-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=msmaldi.maldi-vscode-theme" +colors: + bg: "#000000" + fg: "#E6EDF3" + black: "#000000" + red: "#CD0000" + green: "#00CD00" + yellow: "#CDCD00" + blue: "#0000EE" + magenta: "#CD00CD" + cyan: "#00CDCD" + white: "#E5E5E5" + brightBlack: "#7F7F7F" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#5C5CFF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 95.5 + black: 0 + red: 25.4 + green: 60.8 + yellow: 72.5 + blue: 14 + magenta: 31.7 + cyan: 64.9 + white: 91 + brightBlack: 34.3 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 29.4 + brightMagenta: 46.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/malibu-sunset.yaml b/themes/malibu-sunset.yaml new file mode 100644 index 00000000..fa8af22f --- /dev/null +++ b/themes/malibu-sunset.yaml @@ -0,0 +1,49 @@ +name: "Malibu Sunset" +source: + marketplace_id: "wicked-labs.malibu" + version: "0.12.5" + installs: 4079 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/malibutheme" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.malibu" +colors: + bg: "#1F1D32" + fg: "#F2E9E1" + black: "#393552" + red: "#EFC3A1" + green: "#DB7B75" + yellow: "#83B4B5" + blue: "#E79680" + magenta: "#8B95BB" + cyan: "#A7C8BD" + white: "#F2E9E1" + brightBlack: "#908CAA" + brightRed: "#EFC3A1" + brightGreen: "#DB7B75" + brightYellow: "#83B4B5" + brightBlue: "#E79680" + brightMagenta: "#8B95BB" + brightCyan: "#A7C8BD" + brightWhite: "#F2E9E1" +meta: + mode: "dark" + accent: "orange" + hue: 287 + contrast: + fg: 92.4 + black: 0 + red: 73.3 + green: 43.9 + yellow: 54.9 + blue: 54.6 + magenta: 43.7 + cyan: 67 + white: 92.4 + brightBlack: 40.2 + brightRed: 73.3 + brightGreen: 43.9 + brightYellow: 54.9 + brightBlue: 54.6 + brightMagenta: 43.7 + brightCyan: 67 + brightWhite: 92.4 diff --git a/themes/malibun-sunrise.yaml b/themes/malibun-sunrise.yaml new file mode 100644 index 00000000..9eb1fb24 --- /dev/null +++ b/themes/malibun-sunrise.yaml @@ -0,0 +1,49 @@ +name: "Malibun Sunrise" +source: + marketplace_id: "wicked-labs.malibu" + version: "0.12.5" + installs: 4079 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/malibutheme" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.malibu" +colors: + bg: "#FAF4ED" + fg: "#526479" + black: "#F2E9E1" + red: "#E7A26E" + green: "#C8342A" + yellow: "#418B8D" + blue: "#DA5D3C" + magenta: "#3C63A6" + cyan: "#78AA9A" + white: "#526479" + brightBlack: "#758C93" + brightRed: "#E7A26E" + brightGreen: "#C8342A" + brightYellow: "#418B8D" + brightBlue: "#DA5D3C" + brightMagenta: "#3C63A6" + brightCyan: "#78AA9A" + brightWhite: "#526479" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 74.2 + black: 0 + red: 35.9 + green: 68.7 + yellow: 60.7 + blue: 58.2 + magenta: 73.5 + cyan: 45 + white: 74.2 + brightBlack: 56.9 + brightRed: 35.9 + brightGreen: 68.7 + brightYellow: 60.7 + brightBlue: 58.2 + brightMagenta: 73.5 + brightCyan: 45 + brightWhite: 74.2 diff --git a/themes/malte.yaml b/themes/malte.yaml new file mode 100644 index 00000000..237a480d --- /dev/null +++ b/themes/malte.yaml @@ -0,0 +1,49 @@ +name: "malte" +source: + marketplace_id: "samkaj.malte" + version: "0.2.0" + installs: 189 + author: "samkaj" + repo: "https://github.com/samkaj/malte" + url: "https://marketplace.visualstudio.com/items?itemName=samkaj.malte" +colors: + bg: "#101010" + fg: "#ECECEC" + black: "#393939" + red: "#FF9F95" + green: "#E2FFC7" + yellow: "#FFFFB9" + blue: "#A8CEEA" + magenta: "#E2B5CC" + cyan: "#C2EFFF" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#FF8D80" + brightGreen: "#DBFFB3" + brightYellow: "#FFBE64" + brightBlue: "#7EB6FF" + brightMagenta: "#E296FF" + brightCyan: "#9CE9FF" + brightWhite: "#B9B9B9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 95 + black: 0 + red: 64.1 + green: 101.3 + yellow: 104.7 + blue: 73.5 + magenta: 69 + cyan: 92.3 + white: 85.6 + brightBlack: 22.6 + brightRed: 57.9 + brightGreen: 99.8 + brightYellow: 74.2 + brightBlue: 61 + brightMagenta: 61.1 + brightCyan: 85.9 + brightWhite: 64.2 diff --git a/themes/man-dark-stone.yaml b/themes/man-dark-stone.yaml new file mode 100644 index 00000000..04bc8432 --- /dev/null +++ b/themes/man-dark-stone.yaml @@ -0,0 +1,49 @@ +name: "Man Dark Stone" +source: + marketplace_id: "calvinludwig.wind-theme" + version: "1.0.0" + installs: 1681 + author: "Calvin Ludwig" + repo: "https://github.com/calvinludwig/wind-theme" + url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" +colors: + bg: "#1C1917" + fg: "#D6D3D1" + black: "#292524" + red: "#F43F5E" + green: "#22C55E" + yellow: "#FACC15" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F5F5F4" + brightBlack: "#44403C" + brightRed: "#FB7185" + brightGreen: "#4ADE80" + brightYellow: "#FDE047" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FAFAF9" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 78.9 + black: 0 + red: 37.5 + green: 56.5 + yellow: 77.5 + blue: 36.5 + magenta: 34.1 + cyan: 53.6 + white: 100 + brightBlack: 7.4 + brightRed: 49 + brightGreen: 70.2 + brightYellow: 86.9 + brightBlue: 51.1 + brightMagenta: 49.4 + brightCyan: 68.3 + brightWhite: 103.2 diff --git a/themes/manatee.yaml b/themes/manatee.yaml new file mode 100644 index 00000000..f4bb2530 --- /dev/null +++ b/themes/manatee.yaml @@ -0,0 +1,49 @@ +name: "Manatee" +source: + marketplace_id: "anemones.anemone-colors" + version: "0.0.2" + installs: 378 + author: "anemones" + repo: "https://github.com/radio-alice/anemone-colors" + url: "https://marketplace.visualstudio.com/items?itemName=anemones.anemone-colors" +colors: + bg: "#D5DBFF" + fg: "#150049" + black: "#D5DBFF" + red: "#F14100" + green: "#009892" + yellow: "#0024F3" + blue: "#007699" + magenta: "#0018B1" + cyan: "#750091" + white: "#301F63" + brightBlack: "#BABCE5" + brightRed: "#00BCE1" + brightGreen: "#750091" + brightYellow: "#0024F3" + brightBlue: "#007699" + brightMagenta: "#0018B1" + brightCyan: "#750091" + brightWhite: "#150049" +meta: + mode: "light" + accent: "purple" + hue: 278 + contrast: + fg: 84.1 + black: 0 + red: 44 + green: 42.4 + yellow: 65.9 + blue: 54.9 + magenta: 75 + cyan: 70.2 + white: 80.1 + brightBlack: 14.4 + brightRed: 23.8 + brightGreen: 70.2 + brightYellow: 65.9 + brightBlue: 54.9 + brightMagenta: 75 + brightCyan: 70.2 + brightWhite: 84.1 diff --git a/themes/mandacaru-syntax-theme.yaml b/themes/mandacaru-syntax-theme.yaml new file mode 100644 index 00000000..c1259adc --- /dev/null +++ b/themes/mandacaru-syntax-theme.yaml @@ -0,0 +1,49 @@ +name: "Mandacaru Syntax Theme" +source: + marketplace_id: "oxechicao.mandacaru-syntax-theme" + version: "1.2.0" + installs: 7 + author: "Francisco Thiago" + repo: "https://github.com/oxechicao/mandacaru-vs" + url: "https://marketplace.visualstudio.com/items?itemName=oxechicao.mandacaru-syntax-theme" +colors: + bg: "#302834" + fg: "#F8F8EB" + black: "#37283E" + red: "#A7D9E6" + green: "#E0647E" + yellow: "#A7D9E6" + blue: "#FDAF05" + magenta: "#A7E39C" + cyan: "#F8CF91" + white: "#F8F8EB" + brightBlack: "#D2A0C6" + brightRed: "#A7D9E6" + brightGreen: "#E0647E" + brightYellow: "#A7D9E6" + brightBlue: "#FDAF05" + brightMagenta: "#A7E39C" + brightCyan: "#F8CF91" + brightWhite: "#F8F8EB" +meta: + mode: "dark" + accent: "yellow" + hue: 314 + contrast: + fg: 98.7 + black: 0 + red: 74.5 + green: 37.5 + yellow: 74.5 + blue: 63.9 + magenta: 76.3 + cyan: 77.2 + white: 98.7 + brightBlack: 55.1 + brightRed: 74.5 + brightGreen: 37.5 + brightYellow: 74.5 + brightBlue: 63.9 + brightMagenta: 76.3 + brightCyan: 77.2 + brightWhite: 98.7 diff --git a/themes/manhld-theme.yaml b/themes/manhld-theme.yaml new file mode 100644 index 00000000..5931ca77 --- /dev/null +++ b/themes/manhld-theme.yaml @@ -0,0 +1,49 @@ +name: "Manhld Theme" +source: + marketplace_id: "leducmanh.manhld-theme" + version: "0.1.1" + installs: 386 + author: "Le Manh" + repo: "https://github.com/leducmanh120/manhld-theme" + url: "https://marketplace.visualstudio.com/items?itemName=leducmanh.manhld-theme" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FF922B" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFC078" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 56.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 73.9 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/manjaro-owl.yaml b/themes/manjaro-owl.yaml new file mode 100644 index 00000000..d0f48dff --- /dev/null +++ b/themes/manjaro-owl.yaml @@ -0,0 +1,49 @@ +name: "Manjaro Owl" +source: + marketplace_id: "Asapdotid.manjaro-dark" + version: "0.0.13" + installs: 2467 + author: "Asapdotid" + repo: "https://github.com/asapdotid/vscode-manjaro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Asapdotid.manjaro-dark" +colors: + bg: "#1B2224" + fg: "#DDE8EA" + black: "#131C20" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#2C3D43" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 217 + contrast: + fg: 89.3 + black: 0 + red: 25.5 + green: 51.8 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 0 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.8 + brightMagenta: 44.1 + brightCyan: 54.2 + brightWhite: 88.8 diff --git a/themes/manners.yaml b/themes/manners.yaml new file mode 100644 index 00000000..ac72bd7c --- /dev/null +++ b/themes/manners.yaml @@ -0,0 +1,49 @@ +name: "Manners" +source: + marketplace_id: "SajanSrikanthan.manners" + version: "0.0.3" + installs: 65 + author: "Sajan Srikanthan" + repo: "https://github.com/sajansrikanthan/Manners-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=SajanSrikanthan.manners" +colors: + bg: "#070504" + fg: "#DDDFE9" + black: "#070504" + red: "#FA1313" + green: "#00C82B" + yellow: "#FFE553" + blue: "#C5C6C7" + magenta: "#495057" + cyan: "#C5C6C7" + white: "#FFFFFF" + brightBlack: "#070504" + brightRed: "#FA1313" + brightGreen: "#17F648" + brightYellow: "#FFFFFF" + brightBlue: "#C5C6C7" + brightMagenta: "#495057" + brightCyan: "#23DEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 87.4 + black: 0 + red: 36.4 + green: 58.5 + yellow: 90.8 + blue: 72 + magenta: 13.8 + cyan: 72 + white: 107.9 + brightBlack: 0 + brightRed: 36.4 + brightGreen: 82 + brightYellow: 107.9 + brightBlue: 72 + brightMagenta: 13.8 + brightCyan: 75.8 + brightWhite: 107.9 diff --git a/themes/mantissa-dark.yaml b/themes/mantissa-dark.yaml new file mode 100644 index 00000000..acf782db --- /dev/null +++ b/themes/mantissa-dark.yaml @@ -0,0 +1,49 @@ +name: "Mantissa Dark" +source: + marketplace_id: "jhrunnoe.mantissa" + version: "0.4.0" + installs: 111 + author: "jhrunnoe" + repo: "https://github.com/jebrunnoe/Mantissa" + url: "https://marketplace.visualstudio.com/items?itemName=jhrunnoe.mantissa" +colors: + bg: "#353E45" + fg: "#FAF7F0" + black: "#000000" + red: "#FF9F82" + green: "#C3E068" + yellow: "#FFCF69" + blue: "#7BC1ED" + magenta: "#D1ABED" + cyan: "#88D4CD" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF9F82" + brightGreen: "#C3E068" + brightYellow: "#FFCF69" + brightBlue: "#7BC1ED" + brightMagenta: "#D1ABED" + brightCyan: "#88D4CD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 241 + contrast: + fg: 93.9 + black: 8.6 + red: 55.3 + green: 71.9 + yellow: 72.8 + blue: 55.9 + magenta: 56.2 + cyan: 63.7 + white: 99.1 + brightBlack: 8.6 + brightRed: 55.3 + brightGreen: 71.9 + brightYellow: 72.8 + brightBlue: 55.9 + brightMagenta: 56.2 + brightCyan: 63.7 + brightWhite: 99.1 diff --git a/themes/mantissa-light.yaml b/themes/mantissa-light.yaml new file mode 100644 index 00000000..f7f77c5e --- /dev/null +++ b/themes/mantissa-light.yaml @@ -0,0 +1,49 @@ +name: "Mantissa Light" +source: + marketplace_id: "jhrunnoe.mantissa" + version: "0.4.0" + installs: 111 + author: "jhrunnoe" + repo: "https://github.com/jebrunnoe/Mantissa" + url: "https://marketplace.visualstudio.com/items?itemName=jhrunnoe.mantissa" +colors: + bg: "#FAF7F0" + fg: "#657B83" + black: "#657B83" + red: "#CE4E27" + green: "#639100" + yellow: "#A37F12" + blue: "#147CC7" + magenta: "#9360C2" + cyan: "#0F938A" + white: "#FAF7F0" + brightBlack: "#657B83" + brightRed: "#CE4E27" + brightGreen: "#639100" + brightYellow: "#A37F12" + brightBlue: "#147CC7" + brightMagenta: "#9360C2" + brightCyan: "#0F938A" + brightWhite: "#FAF7F0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 66.2 + black: 66.2 + red: 65.1 + green: 60.2 + yellow: 60.2 + blue: 65.5 + magenta: 66.1 + cyan: 60.1 + white: 0 + brightBlack: 66.2 + brightRed: 65.1 + brightGreen: 60.2 + brightYellow: 60.2 + brightBlue: 65.5 + brightMagenta: 66.1 + brightCyan: 60.1 + brightWhite: 0 diff --git a/themes/maomao-dark-theme.yaml b/themes/maomao-dark-theme.yaml new file mode 100644 index 00000000..cf6613ef --- /dev/null +++ b/themes/maomao-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Maomao Dark Theme" +source: + marketplace_id: "apothecary-diary-theme.apothecary-diary-theme" + version: "0.1.0" + installs: 58 + author: "Matheus Montemurro" + repo: "https://github.com/montemurro19/apothecary-diary-theme" + url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" +colors: + bg: "#22322E" + fg: "#F8F7F3" + black: "#1A2323" + red: "#C94349" + green: "#7AAE8F" + yellow: "#F4E5B0" + blue: "#6596BD" + magenta: "#5C6475" + cyan: "#AEE4CE" + white: "#F8F7F3" + brightBlack: "#454E4E" + brightRed: "#F2856B" + brightGreen: "#ACDFB2" + brightYellow: "#FFF5D5" + brightBlue: "#8CBCCF" + brightMagenta: "#8A90AB" + brightCyan: "#D2FADE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 178 + contrast: + fg: 97.7 + black: 0 + red: 24.6 + green: 47.4 + yellow: 86.2 + blue: 38.3 + magenta: 17.2 + cyan: 78.4 + white: 97.7 + brightBlack: 7.9 + brightRed: 48.1 + brightGreen: 74.7 + brightYellow: 96.5 + brightBlue: 57.4 + brightMagenta: 38.2 + brightCyan: 93.4 + brightWhite: 103 diff --git a/themes/maomao-light-theme.yaml b/themes/maomao-light-theme.yaml new file mode 100644 index 00000000..fa22ef3b --- /dev/null +++ b/themes/maomao-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Maomao Light Theme" +source: + marketplace_id: "apothecary-diary-theme.apothecary-diary-theme" + version: "0.1.0" + installs: 58 + author: "Matheus Montemurro" + repo: "https://github.com/montemurro19/apothecary-diary-theme" + url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" +colors: + bg: "#F8F7F3" + fg: "#22322E" + black: "#22322E" + red: "#C94349" + green: "#1A5D4A" + yellow: "#B8820A" + blue: "#4A7A9B" + magenta: "#5C6475" + cyan: "#1A5D4A" + white: "#F8F7F3" + brightBlack: "#7AAE8F" + brightRed: "#E65A67" + brightGreen: "#52B373" + brightYellow: "#D49C2A" + brightBlue: "#6596BD" + brightMagenta: "#8A90AB" + brightCyan: "#7AAE8F" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95 + black: 95 + red: 67.4 + green: 81.8 + yellow: 56 + blue: 67.1 + magenta: 74.9 + cyan: 81.8 + white: 0 + brightBlack: 44.8 + brightRed: 56.8 + brightGreen: 45.8 + brightYellow: 43.1 + brightBlue: 53.8 + brightMagenta: 53.8 + brightCyan: 44.8 + brightWhite: 0 diff --git a/themes/maple-dark.yaml b/themes/maple-dark.yaml new file mode 100644 index 00000000..c10e0963 --- /dev/null +++ b/themes/maple-dark.yaml @@ -0,0 +1,49 @@ +name: "Maple Dark" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#1E1E1F" + fg: "#CBD5E1" + black: "#333333" + red: "#EDABAB" + green: "#A4DFAE" + yellow: "#EECFA0" + blue: "#8FC7FF" + magenta: "#D2CCFF" + cyan: "#A1E8E5" + white: "#F3F2F2" + brightBlack: "#666666" + brightRed: "#FFC4C4" + brightGreen: "#BDF8C7" + brightYellow: "#FFE8B9" + brightBlue: "#A8E0FF" + brightMagenta: "#EBE5FF" + brightCyan: "#BAFFFE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 78.5 + black: 0 + red: 64.4 + green: 76.9 + yellow: 78.3 + blue: 68 + magenta: 77.2 + cyan: 83.1 + white: 97.6 + brightBlack: 21.2 + brightRed: 77.7 + brightGreen: 92.3 + brightYellow: 92.5 + brightBlue: 81.3 + brightMagenta: 91.3 + brightCyan: 97.8 + brightWhite: 106 diff --git a/themes/maple-light.yaml b/themes/maple-light.yaml new file mode 100644 index 00000000..ef3922e8 --- /dev/null +++ b/themes/maple-light.yaml @@ -0,0 +1,49 @@ +name: "Maple Light" +source: + marketplace_id: "acidev.ac-theme" + version: "0.0.51" + installs: 207 + author: "acidev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=acidev.ac-theme" +colors: + bg: "#FFFFFE" + fg: "#475569" + black: "#333333" + red: "#BD5151" + green: "#547000" + yellow: "#9C5E1C" + blue: "#057D9E" + magenta: "#726293" + cyan: "#127D52" + white: "#F3F2F2" + brightBlack: "#666666" + brightRed: "#BD5151" + brightGreen: "#547000" + brightYellow: "#9C5E1C" + brightBlue: "#057D9E" + brightMagenta: "#726293" + brightCyan: "#127D52" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 86.3 + black: 98.6 + red: 72 + green: 78.2 + yellow: 75.5 + blue: 72.3 + magenta: 76.9 + cyan: 75 + white: 0 + brightBlack: 78.7 + brightRed: 72 + brightGreen: 78.2 + brightYellow: 75.5 + brightBlue: 72.3 + brightMagenta: 76.9 + brightCyan: 75 + brightWhite: 0 diff --git a/themes/marble-dark.yaml b/themes/marble-dark.yaml new file mode 100644 index 00000000..f5cd98ed --- /dev/null +++ b/themes/marble-dark.yaml @@ -0,0 +1,49 @@ +name: "Marble Dark" +source: + marketplace_id: "VisaDev.marble-studio-x" + version: "2.0.36" + installs: 20 + author: "Visa_Dev" + repo: "https://github.com/vizakan10/Marble-Studio-X" + url: "https://marketplace.visualstudio.com/items?itemName=VisaDev.marble-studio-x" +colors: + bg: "#0F1624" + fg: "#D7E3F4" + black: "#0A0F17" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#F07B84" + brightGreen: "#A9D18E" + brightYellow: "#F2D28F" + brightBlue: "#7ABCF3" + brightMagenta: "#D58BE9" + brightCyan: "#71C8D2" + brightWhite: "#DDE6F2" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 88.1 + black: 0 + red: 42.1 + green: 62.3 + yellow: 70.6 + blue: 54.7 + magenta: 45.2 + cyan: 54.6 + white: 59.5 + brightBlack: 20.7 + brightRed: 49.5 + brightGreen: 70.8 + brightYellow: 80.6 + brightBlue: 61.9 + brightMagenta: 53.7 + brightCyan: 64.8 + brightWhite: 90.1 diff --git a/themes/marci1.yaml b/themes/marci1.yaml new file mode 100644 index 00000000..dbeaa869 --- /dev/null +++ b/themes/marci1.yaml @@ -0,0 +1,49 @@ +name: "Marci1" +source: + marketplace_id: "MarciRibeiro.marci-theme" + version: "0.0.5" + installs: 900 + author: "Marci Ribeiro" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MarciRibeiro.marci-theme" +colors: + bg: "#212121" + fg: "#FD9BB6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 61.8 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/marcial-theme.yaml b/themes/marcial-theme.yaml new file mode 100644 index 00000000..e804df17 --- /dev/null +++ b/themes/marcial-theme.yaml @@ -0,0 +1,49 @@ +name: "Marcial Theme" +source: + marketplace_id: "martial-theme.martial-theme" + version: "0.0.1" + installs: 664 + author: "Martial Theme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=martial-theme.martial-theme" +colors: + bg: "#252634" + fg: "#ABB2BF" + black: "#264EB2" + red: "#E05561" + green: "#8CC265" + yellow: "#F0EA4A" + blue: "#F0EA4A" + magenta: "#C162DE" + cyan: "#4C41C7" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0EA4A" + brightBlue: "#F0EA4A" + brightMagenta: "#DE73FF" + brightCyan: "#F0EA4A" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 281 + contrast: + fg: 57.1 + black: 13.4 + red: 34.4 + green: 58.1 + yellow: 87.5 + blue: 87.5 + magenta: 36.8 + cyan: 14.1 + white: 80.8 + brightBlack: 13.2 + brightRed: 43.8 + brightGreen: 74.5 + brightYellow: 87.5 + brightBlue: 87.5 + brightMagenta: 48 + brightCyan: 87.5 + brightWhite: 88.4 diff --git a/themes/marcosven.yaml b/themes/marcosven.yaml new file mode 100644 index 00000000..38091e28 --- /dev/null +++ b/themes/marcosven.yaml @@ -0,0 +1,49 @@ +name: "marcoSven" +source: + marketplace_id: "marcoSven.marcosventheme" + version: "1.0.4" + installs: 481 + author: "marcoSven" + repo: "https://github.com/marcoSven/masrcoSven_VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=marcoSven.marcosventheme" +colors: + bg: "#1F2225" + fg: "#ABB2BF" + black: "#1F2225" + red: "#EC958D" + green: "#B5BD68" + yellow: "#FFCC68" + blue: "#90B0C5" + magenta: "#C3A5C8" + cyan: "#8ABEB7" + white: "#BFBFBF" + brightBlack: "#1F2225" + brightRed: "#EC958D" + brightGreen: "#B5BD68" + brightYellow: "#FFCC68" + brightBlue: "#90B0C5" + brightMagenta: "#C3A5C8" + brightCyan: "#8ABEB7" + brightWhite: "#DEE3E5" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 58 + black: 0 + red: 55.2 + green: 61 + yellow: 77.9 + blue: 54.8 + magenta: 56.5 + cyan: 59.5 + white: 65.7 + brightBlack: 0 + brightRed: 55.2 + brightGreen: 61 + brightYellow: 77.9 + brightBlue: 54.8 + brightMagenta: 56.5 + brightCyan: 59.5 + brightWhite: 86.8 diff --git a/themes/mariana-light.yaml b/themes/mariana-light.yaml new file mode 100644 index 00000000..02348fe6 --- /dev/null +++ b/themes/mariana-light.yaml @@ -0,0 +1,49 @@ +name: "mariana-light" +source: + marketplace_id: "mani-sh-reddy.mariana-refined" + version: "0.1.4" + installs: 3259 + author: "Manish Reddy" + repo: "https://github.com/mani-sh-reddy/mariana-refined" + url: "https://marketplace.visualstudio.com/items?itemName=mani-sh-reddy.mariana-refined" +colors: + bg: "#FCFDFD" + fg: "#333333" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 97.3 + black: 104.7 + red: 72.7 + green: 47.9 + yellow: 56.6 + blue: 84.7 + magenta: 73.2 + cyan: 59.3 + white: 84.6 + brightBlack: 77.4 + brightRed: 72.7 + brightGreen: 39.6 + brightYellow: 39.6 + brightBlue: 84.7 + brightMagenta: 73.2 + brightCyan: 59.3 + brightWhite: 47.1 diff --git a/themes/mariana-pro.yaml b/themes/mariana-pro.yaml new file mode 100644 index 00000000..6461f5f3 --- /dev/null +++ b/themes/mariana-pro.yaml @@ -0,0 +1,49 @@ +name: "Mariana (Pro)" +source: + marketplace_id: "rickynormandeau.mariana-pro" + version: "3.0.12" + installs: 48805 + author: "ricky.normandeau" + repo: "https://github.com/n0rmand0/Mariana-Pro-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rickynormandeau.mariana-pro" +colors: + bg: "#3D3734" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#EE6A6F" + green: "#A3CE9E" + yellow: "#FAB763" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#6699CC" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#EE6A6F" + brightGreen: "#A3CE9E" + brightYellow: "#FAB763" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#6699CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 100.5 + black: 100.5 + red: 38 + green: 62.9 + yellow: 63.7 + blue: 37.8 + magenta: 45.7 + cyan: 37.8 + white: 100.5 + brightBlack: 100.5 + brightRed: 38 + brightGreen: 62.9 + brightYellow: 63.7 + brightBlue: 37.8 + brightMagenta: 45.7 + brightCyan: 37.8 + brightWhite: 100.5 diff --git a/themes/mariana-refined.yaml b/themes/mariana-refined.yaml new file mode 100644 index 00000000..d4debcb7 --- /dev/null +++ b/themes/mariana-refined.yaml @@ -0,0 +1,49 @@ +name: "Mariana Refined" +source: + marketplace_id: "mani-sh-reddy.mariana-refined" + version: "0.1.4" + installs: 3259 + author: "Manish Reddy" + repo: "https://github.com/mani-sh-reddy/mariana-refined" + url: "https://marketplace.visualstudio.com/items?itemName=mani-sh-reddy.mariana-refined" +colors: + bg: "#2E3842" + fg: "#C2C6D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 248 + contrast: + fg: 65.1 + black: 0 + red: 20.7 + green: 47 + yellow: 79.6 + blue: 21.5 + magenta: 23.8 + cyan: 41.6 + white: 84 + brightBlack: 16.1 + brightRed: 32.6 + brightGreen: 57.6 + brightYellow: 89.7 + brightBlue: 34 + brightMagenta: 39.4 + brightCyan: 49.4 + brightWhite: 84 diff --git a/themes/mariana.yaml b/themes/mariana.yaml new file mode 100644 index 00000000..61c422bc --- /dev/null +++ b/themes/mariana.yaml @@ -0,0 +1,49 @@ +name: "Mariana" +source: + marketplace_id: "gijocode.mariana-no-italic" + version: "1.99.99" + installs: 169 + author: "gijocode" + repo: "https://github.com/gijocode/vscode-mariana" + url: "https://marketplace.visualstudio.com/items?itemName=gijocode.mariana-no-italic" +colors: + bg: "#1E2933" + fg: "#D8DEE9" + black: "#19212A" + red: "#EC5F66" + green: "#99C794" + yellow: "#FAC761" + blue: "#6699CC" + magenta: "#C695C6" + cyan: "#5FB4B4" + white: "#A6ADB9" + brightBlack: "#24303D" + brightRed: "#EC5F66" + brightGreen: "#99C794" + brightYellow: "#FAC761" + brightBlue: "#6699CC" + brightMagenta: "#C695C6" + brightCyan: "#5FB4B4" + brightWhite: "#D8DEE9" +meta: + mode: "dark" + accent: "orange" + hue: 246 + contrast: + fg: 82.9 + black: 0 + red: 38.9 + green: 62.4 + yellow: 73.9 + blue: 41.7 + magenta: 50.1 + cyan: 51.1 + white: 54.2 + brightBlack: 0 + brightRed: 38.9 + brightGreen: 62.4 + brightYellow: 73.9 + brightBlue: 41.7 + brightMagenta: 50.1 + brightCyan: 51.1 + brightWhite: 82.9 diff --git a/themes/marigold-night.yaml b/themes/marigold-night.yaml new file mode 100644 index 00000000..c2e8566f --- /dev/null +++ b/themes/marigold-night.yaml @@ -0,0 +1,49 @@ +name: "Marigold Night" +source: + marketplace_id: "Coopert1no.marigold-theme" + version: "0.0.1" + installs: 72 + author: "Coopert1no" + repo: "https://github.com/Coopert1no/marigold-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Coopert1no.marigold-theme" +colors: + bg: "#130F0F" + fg: "#F5DEB3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.8 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/mario-theme.yaml b/themes/mario-theme.yaml new file mode 100644 index 00000000..cfd871c3 --- /dev/null +++ b/themes/mario-theme.yaml @@ -0,0 +1,49 @@ +name: "Mario Theme" +source: + marketplace_id: "alphatr.mario-theme" + version: "1.1.1" + installs: 5480 + author: "alphatr" + repo: "https://github.com/alphatr/vscode-mario-theme" + url: "https://marketplace.visualstudio.com/items?itemName=alphatr.mario-theme" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#C0C5CE" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 40.4 + green: 81 + yellow: 75.7 + blue: 52.7 + magenta: 50.6 + cyan: 75.1 + white: 103.7 + brightBlack: 67.1 + brightRed: 40.4 + brightGreen: 81 + brightYellow: 75.7 + brightBlue: 52.7 + brightMagenta: 50.6 + brightCyan: 75.1 + brightWhite: 103.7 diff --git a/themes/marnic1505.yaml b/themes/marnic1505.yaml new file mode 100644 index 00000000..86784548 --- /dev/null +++ b/themes/marnic1505.yaml @@ -0,0 +1,49 @@ +name: "Marnic1505" +source: + marketplace_id: "Marnic1505.more-colorful" + version: "0.0.1" + installs: 759 + author: "Marnic1505" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Marnic1505.more-colorful" +colors: + bg: "#000000" + fg: "#00FFF3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/maroza-cyber-chill.yaml b/themes/maroza-cyber-chill.yaml new file mode 100644 index 00000000..3ba84d54 --- /dev/null +++ b/themes/maroza-cyber-chill.yaml @@ -0,0 +1,49 @@ +name: "Maroza Cyber Chill" +source: + marketplace_id: "thirawat27.maroza-theme" + version: "1.0.4" + installs: 331 + author: "thirawat27" + repo: "https://github.com/thirawat27/maroza-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" +colors: + bg: "#1A1B26" + fg: "#D9E1FF" + black: "#1A1B26" + red: "#FF7590" + green: "#A6E26E" + yellow: "#FFC777" + blue: "#82B1FF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#B8C2F5" + brightBlack: "#606B9F" + brightRed: "#FF7590" + brightGreen: "#A6E26E" + brightYellow: "#FFC777" + brightBlue: "#89DDFF" + brightMagenta: "#C792EA" + brightCyan: "#82B1FF" + brightWhite: "#D9E1FF" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 87.4 + black: 0 + red: 50.9 + green: 77.2 + yellow: 77 + blue: 58.1 + magenta: 53.2 + cyan: 77.7 + white: 69.6 + brightBlack: 24.9 + brightRed: 50.9 + brightGreen: 77.2 + brightYellow: 77 + brightBlue: 77.7 + brightMagenta: 53.2 + brightCyan: 58.1 + brightWhite: 87.4 diff --git a/themes/maroza-dark-theme.yaml b/themes/maroza-dark-theme.yaml new file mode 100644 index 00000000..bccba197 --- /dev/null +++ b/themes/maroza-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Maroza Dark Theme" +source: + marketplace_id: "thirawat27.maroza-theme" + version: "1.0.4" + installs: 331 + author: "thirawat27" + repo: "https://github.com/thirawat27/maroza-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" +colors: + bg: "#0C1021" + fg: "#D3D3D3" + black: "#3C4048" + red: "#FF6E6E" + green: "#7BD88F" + yellow: "#E7C36F" + blue: "#58A6FF" + magenta: "#D77BE2" + cyan: "#4CA3B2" + white: "#E4E4E7" + brightBlack: "#8892B0" + brightRed: "#FF9E9E" + brightGreen: "#98E4A9" + brightYellow: "#F0D58F" + brightBlue: "#67E8F9" + brightMagenta: "#E699FF" + brightCyan: "#65D9EF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 272 + contrast: + fg: 79.3 + black: 7.9 + red: 49.3 + green: 70.7 + yellow: 72.3 + blue: 52.2 + magenta: 49.5 + cyan: 45.9 + white: 90 + brightBlack: 43.3 + brightRed: 64 + brightGreen: 79.4 + brightYellow: 82 + brightBlue: 81.6 + brightMagenta: 62.6 + brightCyan: 73.8 + brightWhite: 107.3 diff --git a/themes/maroza-light-theme.yaml b/themes/maroza-light-theme.yaml new file mode 100644 index 00000000..34e3e51f --- /dev/null +++ b/themes/maroza-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Maroza Light Theme" +source: + marketplace_id: "thirawat27.maroza-theme" + version: "1.0.4" + installs: 331 + author: "thirawat27" + repo: "https://github.com/thirawat27/maroza-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" +colors: + bg: "#FBFAFF" + fg: "#111827" + black: "#374151" + red: "#EF4444" + green: "#22C55E" + yellow: "#F97316" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#475569" + brightBlack: "#64748B" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FB923C" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#111827" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.9 + black: 91.3 + red: 61.2 + green: 41.7 + yellow: 50.5 + blue: 61.2 + magenta: 63.6 + cyan: 44.5 + white: 83.7 + brightBlack: 70.4 + brightRed: 50.1 + brightGreen: 28.6 + brightYellow: 41.6 + brightBlue: 46.9 + brightMagenta: 48.6 + brightCyan: 30.4 + brightWhite: 101.9 diff --git a/themes/maroza-soothing-aqua.yaml b/themes/maroza-soothing-aqua.yaml new file mode 100644 index 00000000..ffa55af2 --- /dev/null +++ b/themes/maroza-soothing-aqua.yaml @@ -0,0 +1,49 @@ +name: "Maroza Soothing Aqua" +source: + marketplace_id: "thirawat27.maroza-theme" + version: "1.0.4" + installs: 331 + author: "thirawat27" + repo: "https://github.com/thirawat27/maroza-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" +colors: + bg: "#1E1E2E" + fg: "#E4E8F0" + black: "#1E1E2E" + red: "#FF7A8A" + green: "#9AF580" + yellow: "#FFE085" + blue: "#7CC7FF" + magenta: "#D09EFF" + cyan: "#5EF5D1" + white: "#C5CCE4" + brightBlack: "#7A8097" + brightRed: "#FF7A8A" + brightGreen: "#9AF580" + brightYellow: "#FFE085" + brightBlue: "#7CC7FF" + brightMagenta: "#D09EFF" + brightCyan: "#5EF5D1" + brightWhite: "#E4E8F0" +meta: + mode: "dark" + accent: "green" + hue: 284 + contrast: + fg: 90.7 + black: 0 + red: 51.4 + green: 85.4 + yellow: 87.3 + blue: 66.4 + magenta: 59.3 + cyan: 84.3 + white: 73.9 + brightBlack: 33 + brightRed: 51.4 + brightGreen: 85.4 + brightYellow: 87.3 + brightBlue: 66.4 + brightMagenta: 59.3 + brightCyan: 84.3 + brightWhite: 90.7 diff --git a/themes/maroza-zen-pro.yaml b/themes/maroza-zen-pro.yaml new file mode 100644 index 00000000..3715a397 --- /dev/null +++ b/themes/maroza-zen-pro.yaml @@ -0,0 +1,49 @@ +name: "Maroza Zen Pro" +source: + marketplace_id: "thirawat27.maroza-theme" + version: "1.0.4" + installs: 331 + author: "thirawat27" + repo: "https://github.com/thirawat27/maroza-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" +colors: + bg: "#1E222A" + fg: "#D4D4D4" + black: "#2A323D" + red: "#E8987A" + green: "#98C379" + yellow: "#E8B87A" + blue: "#7EB8C4" + magenta: "#C9A8D4" + cyan: "#7EB8C4" + white: "#D4D4D4" + brightBlack: "#6B7D8A" + brightRed: "#F0A088" + brightGreen: "#A8D389" + brightYellow: "#F0C888" + brightBlue: "#8EC8D4" + brightMagenta: "#D9B8E4" + brightCyan: "#8EC8D4" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 78.1 + black: 0 + red: 54.9 + green: 60.9 + yellow: 66.4 + blue: 56.5 + magenta: 58.9 + cyan: 56.5 + white: 78.1 + brightBlack: 29.8 + brightRed: 59.4 + brightGreen: 70 + brightYellow: 74.4 + brightBlue: 65.4 + brightMagenta: 68.1 + brightCyan: 65.4 + brightWhite: 94.4 diff --git a/themes/mars.yaml b/themes/mars.yaml new file mode 100644 index 00000000..22ed316e --- /dev/null +++ b/themes/mars.yaml @@ -0,0 +1,49 @@ +name: "Mars" +source: + marketplace_id: "LukeBanicevic.mars-theme" + version: "0.0.1" + installs: 375 + author: "Luke Banicevic" + repo: "https://github.com/banaboi/Mars" + url: "https://marketplace.visualstudio.com/items?itemName=LukeBanicevic.mars-theme" +colors: + bg: "#393939" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 68.1 + black: 0 + red: 20.1 + green: 46.4 + yellow: 79 + blue: 20.8 + magenta: 23.2 + cyan: 41 + white: 83.4 + brightBlack: 15.4 + brightRed: 32 + brightGreen: 56.9 + brightYellow: 89 + brightBlue: 33.4 + brightMagenta: 38.8 + brightCyan: 48.8 + brightWhite: 83.4 diff --git a/themes/marshmallow.yaml b/themes/marshmallow.yaml new file mode 100644 index 00000000..7b5f809e --- /dev/null +++ b/themes/marshmallow.yaml @@ -0,0 +1,49 @@ +name: "MarshMallow" +source: + marketplace_id: "WhirlingPlumage-studio.marshmallow" + version: "0.0.4" + installs: 452 + author: "WhirlingPlumageStudio" + repo: "https://github.com/doctorbetaq/marshmallow-theme-visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=WhirlingPlumage-studio.marshmallow" +colors: + bg: "#252E33" + fg: "#A0ECF1" + black: "#303C42" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 232 + contrast: + fg: 83 + black: 0 + red: 29.6 + green: 58.3 + yellow: 73 + blue: 45.3 + magenta: 43.1 + cyan: 59.3 + white: 89 + brightBlack: 12 + brightRed: 29.6 + brightGreen: 58.3 + brightYellow: 73 + brightBlue: 45.3 + brightMagenta: 43.1 + brightCyan: 57.2 + brightWhite: 92.8 diff --git a/themes/marsidark.yaml b/themes/marsidark.yaml new file mode 100644 index 00000000..d602d207 --- /dev/null +++ b/themes/marsidark.yaml @@ -0,0 +1,49 @@ +name: "MarsiDark" +source: + marketplace_id: "marsi.marsidark" + version: "1.0.1" + installs: 1553 + author: "marsi" + repo: "https://github.com/marsidev/MarsiDarkTheme" + url: "https://marketplace.visualstudio.com/items?itemName=marsi.marsidark" +colors: + bg: "#353042" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 297 + contrast: + fg: 54.6 + black: 0 + red: 21.9 + green: 48.2 + yellow: 80.8 + blue: 22.7 + magenta: 25 + cyan: 42.8 + white: 85.2 + brightBlack: 17.3 + brightRed: 33.8 + brightGreen: 58.8 + brightYellow: 90.9 + brightBlue: 35.2 + brightMagenta: 40.6 + brightCyan: 50.6 + brightWhite: 85.2 diff --git a/themes/marstree.yaml b/themes/marstree.yaml new file mode 100644 index 00000000..77660a6b --- /dev/null +++ b/themes/marstree.yaml @@ -0,0 +1,49 @@ +name: "MARStree" +source: + marketplace_id: "MARStreeTheme.MARStreeTheme" + version: "0.0.3" + installs: 76 + author: "MARStree Theme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MARStreeTheme.MARStreeTheme" +colors: + bg: "#0F2443" + fg: "#B4B4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 258 + contrast: + fg: 58.9 + black: 0 + red: 24.8 + green: 51.1 + yellow: 83.7 + blue: 25.5 + magenta: 27.9 + cyan: 45.7 + white: 88.1 + brightBlack: 20.1 + brightRed: 36.7 + brightGreen: 61.6 + brightYellow: 93.7 + brightBlue: 38.1 + brightMagenta: 43.5 + brightCyan: 53.5 + brightWhite: 88.1 diff --git a/themes/marwen-labidi-theme.yaml b/themes/marwen-labidi-theme.yaml new file mode 100644 index 00000000..6068792f --- /dev/null +++ b/themes/marwen-labidi-theme.yaml @@ -0,0 +1,49 @@ +name: "Marwen-Labidi-Theme" +source: + marketplace_id: "MarwenLabidi.marwen-labidi-theme" + version: "0.0.1" + installs: 61 + author: "Marwen Labidi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MarwenLabidi.marwen-labidi-theme" +colors: + bg: "#111111" + fg: "#A7A7A7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 54.1 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 107.4 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/matcha-pink.yaml b/themes/matcha-pink.yaml new file mode 100644 index 00000000..88a1460f --- /dev/null +++ b/themes/matcha-pink.yaml @@ -0,0 +1,49 @@ +name: "Matcha Pink" +source: + marketplace_id: "hongtrapt.pink-angel-themes" + version: "0.0.2" + installs: 273 + author: "hongtrapt" + repo: "https://github.com/hongtra1311/pink-angel-themes" + url: "https://marketplace.visualstudio.com/items?itemName=hongtrapt.pink-angel-themes" +colors: + bg: "#F3FFF6" + fg: "#337357" + black: "#333333" + red: "#E27396" + green: "#6D9F71" + yellow: "#EA9AB2" + blue: "#4A6D7C" + magenta: "#E27396" + cyan: "#337357" + white: "#000000" + brightBlack: "#333333" + brightRed: "#E27396" + brightGreen: "#6D9F71" + brightYellow: "#EA9AB2" + brightBlue: "#4A6D7C" + brightMagenta: "#E27396" + brightCyan: "#337357" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 76.1 + black: 96.8 + red: 53.7 + green: 55.6 + yellow: 40.2 + blue: 75.9 + magenta: 53.7 + cyan: 76.1 + white: 104.2 + brightBlack: 96.8 + brightRed: 53.7 + brightGreen: 55.6 + brightYellow: 40.2 + brightBlue: 75.9 + brightMagenta: 53.7 + brightCyan: 76.1 + brightWhite: 104.2 diff --git a/themes/matcha.yaml b/themes/matcha.yaml new file mode 100644 index 00000000..4cfefab2 --- /dev/null +++ b/themes/matcha.yaml @@ -0,0 +1,49 @@ +name: "Matcha" +source: + marketplace_id: "Falyssa.matcha-pastel-theme" + version: "0.1.4" + installs: 239 + author: "Falyssa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Falyssa.matcha-pastel-theme" +colors: + bg: "#FFFFFF" + fg: "#8E8E8E" + black: "#000000" + red: "#E64F4F" + green: "#7FD17F" + yellow: "#E0D473" + blue: "#87B9EE" + magenta: "#EC93EC" + cyan: "#80CDE0" + white: "#555555" + brightBlack: "#666666" + brightRed: "#E64B4B" + brightGreen: "#6EBC6E" + brightYellow: "#C7B94A" + brightBlue: "#5D8EC2" + brightMagenta: "#D18AD1" + brightCyan: "#6EB5C7" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 60.1 + black: 106 + red: 64 + green: 34.8 + yellow: 24 + blue: 40 + magenta: 41.1 + cyan: 33 + white: 85.9 + brightBlack: 78.8 + brightRed: 64.7 + brightGreen: 45.4 + brightYellow: 38.8 + brightBlue: 61.8 + brightMagenta: 49.6 + brightCyan: 45.4 + brightWhite: 48.5 diff --git a/themes/matchalk.yaml b/themes/matchalk.yaml new file mode 100644 index 00000000..1d5e767f --- /dev/null +++ b/themes/matchalk.yaml @@ -0,0 +1,49 @@ +name: "matchalk" +source: + marketplace_id: "lucafalasco.matchalk" + version: "0.0.7" + installs: 4244 + author: "Luca Falasco" + repo: "https://github.com/lucafalasco/matchalk" + url: "https://marketplace.visualstudio.com/items?itemName=lucafalasco.matchalk" +colors: + bg: "#273136" + fg: "#D1DED3" + black: "#323E45" + red: "#FF819F" + green: "#7EB08A" + yellow: "#D2B48C" + blue: "#7EA4B0" + magenta: "#BA8EAF" + cyan: "#7EA4B0" + white: "#D1DED3" + brightBlack: "#323E45" + brightRed: "#FF819F" + brightGreen: "#7EB08A" + brightYellow: "#D2B48C" + brightBlue: "#7EA4B0" + brightMagenta: "#BA8EAF" + brightCyan: "#7EA4B0" + brightWhite: "#D1DED3" +meta: + mode: "dark" + accent: "red" + hue: 230 + contrast: + fg: 79.5 + black: 0 + red: 51 + green: 48.3 + yellow: 59.4 + blue: 44.8 + magenta: 43.4 + cyan: 44.8 + white: 79.5 + brightBlack: 0 + brightRed: 51 + brightGreen: 48.3 + brightYellow: 59.4 + brightBlue: 44.8 + brightMagenta: 43.4 + brightCyan: 44.8 + brightWhite: 79.5 diff --git a/themes/matchanaa.yaml b/themes/matchanaa.yaml new file mode 100644 index 00000000..48a51ace --- /dev/null +++ b/themes/matchanaa.yaml @@ -0,0 +1,49 @@ +name: "Matchanaa" +source: + marketplace_id: "TehMatcha.roselia-theme" + version: "4.4.0" + installs: 1278 + author: "TehMatcha" + repo: "https://github.com/MatchaTi/cool-roselia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" +colors: + bg: "#191919" + fg: "#D3C6AA" + black: "#000000" + red: "#E67E80" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#83C092" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F28FAD" + brightGreen: "#ABE9B3" + brightYellow: "#FAE3B0" + brightBlue: "#96CDFB" + brightMagenta: "#F5C2E7" + brightCyan: "#B5E8E0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 71.5 + black: 0 + red: 48 + green: 62.4 + yellow: 67.3 + blue: 58.3 + magenta: 55.4 + cyan: 59.6 + white: 89.8 + brightBlack: 21.8 + brightRed: 56.7 + brightGreen: 83.1 + brightYellow: 89.9 + brightBlue: 71.6 + brightMagenta: 77.5 + brightCyan: 85.4 + brightWhite: 89.8 diff --git a/themes/matchati.yaml b/themes/matchati.yaml new file mode 100644 index 00000000..b78531a1 --- /dev/null +++ b/themes/matchati.yaml @@ -0,0 +1,49 @@ +name: "Matchati" +source: + marketplace_id: "TehMatcha.roselia-theme" + version: "4.4.0" + installs: 1278 + author: "TehMatcha" + repo: "https://github.com/MatchaTi/cool-roselia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" +colors: + bg: "#141B1E" + fg: "#DADADA" + black: "#000000" + red: "#E57474" + green: "#8CCF7E" + yellow: "#E5C76B" + blue: "#67B0E8" + magenta: "#C47FD5" + cyan: "#6CBFBF" + white: "#DADADA" + brightBlack: "#232A2D" + brightRed: "#E57474" + brightGreen: "#8CCF7E" + brightYellow: "#E5C76B" + brightBlue: "#67B0E8" + brightMagenta: "#C47FD5" + brightCyan: "#6CBFBF" + brightWhite: "#DADADA" +meta: + mode: "dark" + accent: "pink" + hue: 226 + contrast: + fg: 82.8 + black: 0 + red: 44.7 + green: 66.5 + yellow: 72.8 + blue: 54.6 + magenta: 45.9 + cyan: 59.2 + white: 82.8 + brightBlack: 0 + brightRed: 44.7 + brightGreen: 66.5 + brightYellow: 72.8 + brightBlue: 54.6 + brightMagenta: 45.9 + brightCyan: 59.2 + brightWhite: 82.8 diff --git a/themes/material-color-theme.yaml b/themes/material-color-theme.yaml new file mode 100644 index 00000000..c6252cf7 --- /dev/null +++ b/themes/material-color-theme.yaml @@ -0,0 +1,49 @@ +name: "material-color-theme" +source: + marketplace_id: "JonaDuran.my-light-theme" + version: "1.1.9" + installs: 31515 + author: "Jonathan Durán" + repo: "https://github.com/JonaDuran/Material-Light-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=JonaDuran.my-light-theme" +colors: + bg: "#FAFAFA" + fg: "#212121" + black: "#212121" + red: "#C0392B" + green: "#2E7D32" + yellow: "#A8601A" + blue: "#1565C0" + magenta: "#9C00B0" + cyan: "#00838F" + white: "#E0E0E0" + brightBlack: "#212121" + brightRed: "#C0392B" + brightGreen: "#2E7D32" + brightYellow: "#A8601A" + brightBlue: "#1565C0" + brightMagenta: "#9C00B0" + brightCyan: "#00838F" + brightWhite: "#E0E0E0" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 100.1 + black: 100.1 + red: 72.9 + green: 72 + yellow: 70.1 + blue: 75.2 + magenta: 78.5 + cyan: 67.8 + white: 12.8 + brightBlack: 100.1 + brightRed: 72.9 + brightGreen: 72 + brightYellow: 70.1 + brightBlue: 75.2 + brightMagenta: 78.5 + brightCyan: 67.8 + brightWhite: 12.8 diff --git a/themes/material-community-ansi-16.yaml b/themes/material-community-ansi-16.yaml new file mode 100644 index 00000000..bfdd5e20 --- /dev/null +++ b/themes/material-community-ansi-16.yaml @@ -0,0 +1,49 @@ +name: "Material Community Ansi 16" +source: + marketplace_id: "ctenbrinke.ansi16" + version: "0.3.8" + installs: 824 + author: "chtenb" + repo: "https://github.com/chtenb/vscode-ansi16" + url: "https://marketplace.visualstudio.com/items?itemName=ctenbrinke.ansi16" +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#676E95" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#DCEAEA" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#87DE97" + brightYellow: "#F78C6C" + brightBlue: "#B2E4E6" + brightMagenta: "#C792EA" + brightCyan: "#B2E4E6" + brightWhite: "#F2F3EC" +meta: + mode: "dark" + accent: "red" + hue: 230 + contrast: + fg: 100.4 + black: 22.2 + red: 42.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 87.2 + brightBlack: 22.2 + brightRed: 39.4 + brightGreen: 70 + brightYellow: 50.8 + brightBlue: 79.5 + brightMagenta: 49.6 + brightCyan: 79.5 + brightWhite: 94.3 diff --git a/themes/material-dark-color-theme.yaml b/themes/material-dark-color-theme.yaml new file mode 100644 index 00000000..68408485 --- /dev/null +++ b/themes/material-dark-color-theme.yaml @@ -0,0 +1,49 @@ +name: "material-dark-color-theme" +source: + marketplace_id: "JonaDuran.my-light-theme" + version: "1.1.9" + installs: 31515 + author: "Jonathan Durán" + repo: "https://github.com/JonaDuran/Material-Light-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=JonaDuran.my-light-theme" +colors: + bg: "#282828" + fg: "#D0D0D0" + black: "#212121" + red: "#E57373" + green: "#8BC34A" + yellow: "#E5C07B" + blue: "#40C4FF" + magenta: "#EA80FC" + cyan: "#00BCD4" + white: "#D0D0D0" + brightBlack: "#212121" + brightRed: "#E57373" + brightGreen: "#8BC34A" + brightYellow: "#E5C07B" + brightBlue: "#40C4FF" + brightMagenta: "#EA80FC" + brightCyan: "#00BCD4" + brightWhite: "#D0D0D0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 74.6 + black: 0 + red: 42.3 + green: 57.9 + yellow: 68.1 + blue: 60.9 + magenta: 53 + cyan: 54.1 + white: 74.6 + brightBlack: 0 + brightRed: 42.3 + brightGreen: 57.9 + brightYellow: 68.1 + brightBlue: 60.9 + brightMagenta: 53 + brightCyan: 54.1 + brightWhite: 74.6 diff --git a/themes/material-last.yaml b/themes/material-last.yaml new file mode 100644 index 00000000..45a034f1 --- /dev/null +++ b/themes/material-last.yaml @@ -0,0 +1,49 @@ +name: "Material-Last" +source: + marketplace_id: "tjlastnumber.material-last" + version: "0.0.5" + installs: 7682 + author: "Lastnumber" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tjlastnumber.material-last" +colors: + bg: "#263238" + fg: "#B2CCD6" + black: "#263238" + red: "#FA6981" + green: "#C3E88D" + yellow: "#FFCC00" + blue: "#82AAFF" + magenta: "#F77669" + cyan: "#7FCAC3" + white: "#B2CCD6" + brightBlack: "#65737E" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#FFCC00" + brightBlue: "#82AAFF" + brightMagenta: "#F77669" + brightCyan: "#7FCAC3" + brightWhite: "#B2CCD6" +meta: + mode: "dark" + accent: "red" + hue: 230 + contrast: + fg: 67.9 + black: 0 + red: 42.9 + green: 80 + yellow: 74.4 + blue: 51.7 + magenta: 44.7 + cyan: 61.6 + white: 67.9 + brightBlack: 22.7 + brightRed: 28.8 + brightGreen: 57.5 + brightYellow: 74.4 + brightBlue: 51.7 + brightMagenta: 44.7 + brightCyan: 61.6 + brightWhite: 67.9 diff --git a/themes/material-midnight.yaml b/themes/material-midnight.yaml new file mode 100644 index 00000000..f921fb2b --- /dev/null +++ b/themes/material-midnight.yaml @@ -0,0 +1,49 @@ +name: "Material Midnight" +source: + marketplace_id: "SurajKumar.material-midnight" + version: "0.11.0" + installs: 215 + author: "Suraj Kumar" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SurajKumar.material-midnight" +colors: + bg: "#282C34" + fg: "#DEE2E6" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#DEE2E6" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#DEE2E6" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 84.6 + black: 0 + red: 40.4 + green: 81 + yellow: 75.7 + blue: 52.7 + magenta: 50.6 + cyan: 75.1 + white: 84.6 + brightBlack: 20.6 + brightRed: 40.4 + brightGreen: 81 + brightYellow: 75.7 + brightBlue: 52.7 + brightMagenta: 50.6 + brightCyan: 75.1 + brightWhite: 84.6 diff --git a/themes/material-monokai-high-contrast.yaml b/themes/material-monokai-high-contrast.yaml new file mode 100644 index 00000000..218e76d0 --- /dev/null +++ b/themes/material-monokai-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Material Monokai High Contrast" +source: + marketplace_id: "Cystee.vceyefriendtheme" + version: "1.1.0" + installs: 1348 + author: "Cystee" + repo: "https://github.com/Cystee/VCEyeFriendTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Cystee.vceyefriendtheme" +colors: + bg: "#263238" + fg: "#FFFFFF" + black: "#000000" + red: "#FF2C96" + green: "#9DFF00" + yellow: "#E6DB74" + blue: "#82AAFF" + magenta: "#B78AFF" + cyan: "#2EDCFF" + white: "#FFFFFF" + brightBlack: "#8BAFC0" + brightRed: "#FF2C96" + brightGreen: "#9DFF00" + brightYellow: "#E6DB74" + brightBlue: "#82AAFF" + brightMagenta: "#B78AFF" + brightCyan: "#2EDCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 230 + contrast: + fg: 102.7 + black: 0 + red: 36.2 + green: 86.5 + yellow: 77.9 + blue: 51.7 + magenta: 46.2 + cyan: 69.8 + white: 102.7 + brightBlack: 50.8 + brightRed: 36.2 + brightGreen: 86.5 + brightYellow: 77.9 + brightBlue: 51.7 + brightMagenta: 46.2 + brightCyan: 69.8 + brightWhite: 102.7 diff --git a/themes/material-ocean.yaml b/themes/material-ocean.yaml new file mode 100644 index 00000000..f403d4fd --- /dev/null +++ b/themes/material-ocean.yaml @@ -0,0 +1,49 @@ +name: "Material Ocean" +source: + marketplace_id: "AgraeonLabs.dev-themes" + version: "0.1.0" + installs: 283 + author: "Agraeon Labs" + repo: "https://github.com/adiagcodelance/VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" +colors: + bg: "#0F111A" + fg: "#8F93A2" + black: "#0F111A" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#EEFFFF" + brightBlack: "#0F111A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#EEFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 43.7 + black: 0 + red: 47.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 105 + brightBlack: 0 + brightRed: 47.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 105 diff --git a/themes/material-rainbow.yaml b/themes/material-rainbow.yaml new file mode 100644 index 00000000..4401f0e6 --- /dev/null +++ b/themes/material-rainbow.yaml @@ -0,0 +1,49 @@ +name: "Material Rainbow" +source: + marketplace_id: "VitPetrov.material-festoon" + version: "1.4.1" + installs: 196 + author: "VitPetrov" + repo: "https://github.com/VitalyPetrov/material-festoon" + url: "https://marketplace.visualstudio.com/items?itemName=VitPetrov.material-festoon" +colors: + bg: "#2E2E2E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75.8 + black: 0 + red: 23.1 + green: 49.3 + yellow: 82 + blue: 23.8 + magenta: 26.1 + cyan: 43.9 + white: 86.4 + brightBlack: 18.4 + brightRed: 34.9 + brightGreen: 59.9 + brightYellow: 92 + brightBlue: 36.3 + brightMagenta: 41.7 + brightCyan: 51.7 + brightWhite: 86.4 diff --git a/themes/material-solarized.yaml b/themes/material-solarized.yaml new file mode 100644 index 00000000..b38427ac --- /dev/null +++ b/themes/material-solarized.yaml @@ -0,0 +1,49 @@ +name: "Material Solarized" +source: + marketplace_id: "syahrizaldev.material-solarized" + version: "1.4.7" + installs: 266 + author: "Syahrizal" + repo: "https://github.com/syahrizaldev/material-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=syahrizaldev.material-solarized" +colors: + bg: "#101A1E" + fg: "#E3E8E8" + black: "#282C33" + red: "#E96379" + green: "#7BC059" + yellow: "#E0B16C" + blue: "#5E8EED" + magenta: "#E96379" + cyan: "#59B7C0" + white: "#E3E5E8" + brightBlack: "#282C33" + brightRed: "#E96379" + brightGreen: "#7BC059" + brightYellow: "#E0B16C" + brightBlue: "#5E8EED" + brightMagenta: "#E96379" + brightCyan: "#59B7C0" + brightWhite: "#E3E5E8" +meta: + mode: "dark" + accent: "red" + hue: 225 + contrast: + fg: 91.1 + black: 0 + red: 41.8 + green: 57.8 + yellow: 63.4 + blue: 41.6 + magenta: 41.8 + cyan: 54.9 + white: 89.7 + brightBlack: 0 + brightRed: 41.8 + brightGreen: 57.8 + brightYellow: 63.4 + brightBlue: 41.6 + brightMagenta: 41.8 + brightCyan: 54.9 + brightWhite: 89.7 diff --git a/themes/material-theme-dark.yaml b/themes/material-theme-dark.yaml new file mode 100644 index 00000000..19023515 --- /dev/null +++ b/themes/material-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Material Theme Dark" +source: + marketplace_id: "terrafuture-themes.terrafuture-themes" + version: "0.2.3" + installs: 1673 + author: "Terrafuture Themes" + repo: "https://github.com/jdgn94/terrafuture-themes" + url: "https://marketplace.visualstudio.com/items?itemName=terrafuture-themes.terrafuture-themes" +colors: + bg: "#1D212F" + fg: "#EEFFFF" + black: "#000000" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFC107" + blue: "#2196F3" + magenta: "#D80073" + cyan: "#00BCD4" + white: "#EEFFFF" + brightBlack: "#101010" + brightRed: "#E57373" + brightGreen: "#81C784" + brightYellow: "#FFF176" + brightBlue: "#64B5F6" + brightMagenta: "#D82283" + brightCyan: "#4DD0E1" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "red" + hue: 272 + contrast: + fg: 103.2 + black: 0 + red: 36.4 + green: 46.2 + yellow: 72.8 + blue: 41.7 + magenta: 27.2 + cyan: 55.2 + white: 103.2 + brightBlack: 0 + brightRed: 43.4 + brightGreen: 61.1 + brightYellow: 94.5 + brightBlue: 56.4 + brightMagenta: 28.6 + brightCyan: 66.1 + brightWhite: 83.7 diff --git a/themes/material-theme-darker-high-contrast.yaml b/themes/material-theme-darker-high-contrast.yaml new file mode 100644 index 00000000..558ad7fc --- /dev/null +++ b/themes/material-theme-darker-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Material-Theme-Darker-High-Contrast" +source: + marketplace_id: "Serge.vsc-material-theme-italicize" + version: "0.0.14" + installs: 22608 + author: "Serge" + repo: "https://github.com/faultless/vsc-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#4A4A4A" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 103.3 + black: 9.7 + red: 42.4 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 9.7 + brightRed: 42.4 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/material-theme-darker.yaml b/themes/material-theme-darker.yaml new file mode 100644 index 00000000..0a8857b8 --- /dev/null +++ b/themes/material-theme-darker.yaml @@ -0,0 +1,49 @@ +name: "Material-Theme-Darker" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3734 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#545454" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 103.3 + black: 0 + red: 45.3 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 13.5 + brightRed: 45.3 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/material-theme-deepforest-high-contrast.yaml b/themes/material-theme-deepforest-high-contrast.yaml new file mode 100644 index 00000000..12dc66c7 --- /dev/null +++ b/themes/material-theme-deepforest-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Material-Theme-Deepforest-High-Contrast" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3734 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#141F1D" + fg: "#C2EDD3" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#6FA0DE" + magenta: "#A68DCD" + cyan: "#74C9DE" + white: "#FFFFFF" + brightBlack: "#476352" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#6FA0DE" + brightMagenta: "#A68DCD" + brightCyan: "#74C9DE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 182 + contrast: + fg: 88 + black: 0 + red: 45.9 + green: 83.5 + yellow: 78.2 + blue: 47.8 + magenta: 45.2 + cyan: 65.2 + white: 106.2 + brightBlack: 17.5 + brightRed: 45.9 + brightGreen: 83.5 + brightYellow: 78.2 + brightBlue: 47.8 + brightMagenta: 45.2 + brightCyan: 65.2 + brightWhite: 106.2 diff --git a/themes/material-theme-default-high-contrast.yaml b/themes/material-theme-default-high-contrast.yaml new file mode 100644 index 00000000..e5a04a20 --- /dev/null +++ b/themes/material-theme-default-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Material-Theme-Default-High-Contrast" +source: + marketplace_id: "Serge.vsc-material-theme-italicize" + version: "0.0.14" + installs: 22608 + author: "Serge" + repo: "https://github.com/faultless/vsc-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#546E7A" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 230 + contrast: + fg: 100.4 + black: 19.7 + red: 39.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 102.7 + brightBlack: 19.7 + brightRed: 39.4 + brightGreen: 80 + brightYellow: 74.7 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/material-theme-lighter-high-contrast.yaml b/themes/material-theme-lighter-high-contrast.yaml new file mode 100644 index 00000000..0f2c3b64 --- /dev/null +++ b/themes/material-theme-lighter-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Material-Theme-Lighter-High-Contrast" +source: + marketplace_id: "Serge.vsc-material-theme-italicize" + version: "0.0.14" + installs: 22608 + author: "Serge" + repo: "https://github.com/faultless/vsc-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" +colors: + bg: "#FFFFFF" + fg: "#90A4AE" + black: "#90A4AE" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 50.6 + black: 50.6 + red: 67.7 + green: 44.9 + yellow: 31.7 + blue: 66.3 + magenta: 72.6 + cyan: 51.8 + white: 0 + brightBlack: 50.6 + brightRed: 67.7 + brightGreen: 44.9 + brightYellow: 31.7 + brightBlue: 66.3 + brightMagenta: 72.6 + brightCyan: 51.8 + brightWhite: 0 diff --git a/themes/material-theme-lighter.yaml b/themes/material-theme-lighter.yaml new file mode 100644 index 00000000..483fd770 --- /dev/null +++ b/themes/material-theme-lighter.yaml @@ -0,0 +1,49 @@ +name: "Material-Theme-Lighter" +source: + marketplace_id: "Serge.vsc-material-theme-italicize" + version: "0.0.14" + installs: 22608 + author: "Serge" + repo: "https://github.com/faultless/vsc-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" +colors: + bg: "#FAFAFA" + fg: "#90A4AE" + black: "#90A4AE" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 47.6 + black: 47.6 + red: 64.7 + green: 41.9 + yellow: 28.7 + blue: 63.3 + magenta: 69.6 + cyan: 48.8 + white: 0 + brightBlack: 47.6 + brightRed: 64.7 + brightGreen: 41.9 + brightYellow: 28.7 + brightBlue: 63.3 + brightMagenta: 69.6 + brightCyan: 48.8 + brightWhite: 0 diff --git a/themes/material-theme-palenight-high-contrast.yaml b/themes/material-theme-palenight-high-contrast.yaml new file mode 100644 index 00000000..f54ed612 --- /dev/null +++ b/themes/material-theme-palenight-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Material-Theme-Palenight-High-Contrast" +source: + marketplace_id: "Serge.vsc-material-theme-italicize" + version: "0.0.14" + installs: 22608 + author: "Serge" + repo: "https://github.com/faultless/vsc-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" +colors: + bg: "#292D3E" + fg: "#A6ACCD" + black: "#676E95" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 53.5 + black: 22.8 + red: 40 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 40 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/material-theme-twilight-wave-ocean-ui.yaml b/themes/material-theme-twilight-wave-ocean-ui.yaml new file mode 100644 index 00000000..afac259c --- /dev/null +++ b/themes/material-theme-twilight-wave-ocean-ui.yaml @@ -0,0 +1,49 @@ +name: "Material Theme Twilight Wave Ocean Ui ~" +source: + marketplace_id: "ZahidNazir.Material-Theme-Twilight-Wave" + version: "0.0.3" + installs: 2564 + author: "Zahid Nazir" + repo: "https://github.com/Tactition/Twilight-Wave-VsCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ZahidNazir.Material-Theme-Twilight-Wave" +colors: + bg: "#0F111A" + fg: "#BABED8" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 67.6 + black: 0 + red: 47.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 47.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/material.yaml b/themes/material.yaml new file mode 100644 index 00000000..4bead23e --- /dev/null +++ b/themes/material.yaml @@ -0,0 +1,49 @@ +name: "Material" +source: + marketplace_id: "swashata.beautiful-ui" + version: "1.7.0" + installs: 121085 + author: "swashata" + repo: "https://github.com/swashata/vscode-beautiful-ui" + url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" +colors: + bg: "#253137" + fg: "#E6FFFF" + black: "#000000" + red: "#D81E00" + green: "#5EA702" + yellow: "#CFAE00" + blue: "#427AB3" + magenta: "#89658E" + cyan: "#00A7AA" + white: "#DBDED8" + brightBlack: "#686A66" + brightRed: "#F54235" + brightGreen: "#99E343" + brightYellow: "#FDEB61" + brightBlue: "#84B0D8" + brightMagenta: "#BC94B7" + brightCyan: "#37E6E8" + brightWhite: "#F1F1F0" +meta: + mode: "dark" + accent: "orange" + hue: 230 + contrast: + fg: 99.6 + black: 0 + red: 23.6 + green: 40.5 + yellow: 55 + blue: 25.7 + magenta: 23.1 + cyan: 41.4 + white: 81 + brightBlack: 19.5 + brightRed: 33.9 + brightGreen: 72.5 + brightYellow: 88.5 + brightBlue: 52.1 + brightMagenta: 46.1 + brightCyan: 73.8 + brightWhite: 93.7 diff --git a/themes/material1.yaml b/themes/material1.yaml new file mode 100644 index 00000000..a2075b90 --- /dev/null +++ b/themes/material1.yaml @@ -0,0 +1,49 @@ +name: "material1" +source: + marketplace_id: "gungorn.themes-by-gungorn" + version: "1.0.7" + installs: 151 + author: "gungorn" + repo: "https://github.com/gungorn/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=gungorn.themes-by-gungorn" +colors: + bg: "#1B1E2B" + fg: "#B4B4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 59.8 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/materialdarker-monokaist3.yaml b/themes/materialdarker-monokaist3.yaml new file mode 100644 index 00000000..de781ff4 --- /dev/null +++ b/themes/materialdarker-monokaist3.yaml @@ -0,0 +1,49 @@ +name: "MaterialDarker-MonokaiST3" +source: + marketplace_id: "xckomorebi.everythingmonokai" + version: "0.1.1" + installs: 818 + author: "xckomorebi" + repo: "https://github.com/xckomorebi/EverythingMonokai" + url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.everythingmonokai" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#454444" + red: "#ED5E7B" + green: "#99D798" + yellow: "#E2C264" + blue: "#52AED8" + magenta: "#E27DE2" + cyan: "#76B7BC" + white: "#C1C0C0" + brightBlack: "#666565" + brightRed: "#EA99AA" + brightGreen: "#B1D3B0" + brightYellow: "#E7E698" + brightBlue: "#80C7E7" + brightMagenta: "#EB9DEB" + brightCyan: "#A5E1E1" + brightWhite: "#E5E4E4" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 103.3 + black: 7.6 + red: 40.6 + green: 71 + yellow: 69.2 + blue: 50.9 + magenta: 50.3 + cyan: 55.3 + white: 66.5 + brightBlack: 20.4 + brightRed: 57.2 + brightGreen: 72.3 + brightYellow: 86.7 + brightBlue: 65.1 + brightMagenta: 61.8 + brightCyan: 79.5 + brightWhite: 88.3 diff --git a/themes/materialdarkplus.yaml b/themes/materialdarkplus.yaml new file mode 100644 index 00000000..0c5200eb --- /dev/null +++ b/themes/materialdarkplus.yaml @@ -0,0 +1,49 @@ +name: "materialdarkplus" +source: + marketplace_id: "SteveSevetS.materialdarkplus" + version: "0.0.1" + installs: 641 + author: "SteveSevetS" + repo: "https://github.com/SteveSevetS/materialdarkplus" + url: "https://marketplace.visualstudio.com/items?itemName=SteveSevetS.materialdarkplus" +colors: + bg: "#1E1E1E" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#545454" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 103.7 + black: 0 + red: 42.8 + green: 83.4 + yellow: 78.1 + blue: 55.1 + magenta: 52.9 + cyan: 77.4 + white: 106 + brightBlack: 13.9 + brightRed: 42.8 + brightGreen: 83.4 + brightYellow: 78.1 + brightBlue: 55.1 + brightMagenta: 52.9 + brightCyan: 77.4 + brightWhite: 106 diff --git a/themes/matey.yaml b/themes/matey.yaml new file mode 100644 index 00000000..1ee478c2 --- /dev/null +++ b/themes/matey.yaml @@ -0,0 +1,49 @@ +name: "Matey" +source: + marketplace_id: "arickho.matey-vscode" + version: "1.2.5" + installs: 1978 + author: "Jordan Garcia" + repo: "https://github.com/arickho/matey-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=arickho.matey-vscode" +colors: + bg: "#1D2433" + fg: "#C9CCC7" + black: "#171C28" + red: "#E87A78" + green: "#BFD874" + yellow: "#EFD87B" + blue: "#FDAB77" + magenta: "#C39AC9" + cyan: "#6BB4CC" + white: "#C9CCC7" + brightBlack: "#797E83" + brightRed: "#E87A78" + brightGreen: "#BFD874" + brightYellow: "#EFD87B" + brightBlue: "#FDAB77" + brightMagenta: "#C39AC9" + brightCyan: "#6BB4CC" + brightWhite: "#C9CCC7" +meta: + mode: "dark" + accent: "orange" + hue: 265 + contrast: + fg: 72.3 + black: 0 + red: 45.5 + green: 73.9 + yellow: 80.4 + blue: 64.8 + magenta: 52.2 + cyan: 53.6 + white: 72.3 + brightBlack: 30.7 + brightRed: 45.5 + brightGreen: 73.9 + brightYellow: 80.4 + brightBlue: 64.8 + brightMagenta: 52.2 + brightCyan: 53.6 + brightWhite: 72.3 diff --git a/themes/matitheme-gotham.yaml b/themes/matitheme-gotham.yaml new file mode 100644 index 00000000..09f6649d --- /dev/null +++ b/themes/matitheme-gotham.yaml @@ -0,0 +1,49 @@ +name: "Matitheme Gotham" +source: + marketplace_id: "Omatita.matitheme" + version: "1.0.2" + installs: 145 + author: "Omatita" + repo: "https://github.com/Omatita/matitheme" + url: "https://marketplace.visualstudio.com/items?itemName=Omatita.matitheme" +colors: + bg: "#121212" + fg: "#D1D1D1" + black: "#1B1B1B" + red: "#E53935" + green: "#00E676" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#9C27B0" + cyan: "#00BCD4" + white: "#D1D1D1" + brightBlack: "#424242" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#40C4FF" + brightMagenta: "#E040FB" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.1 + black: 0 + red: 33.4 + green: 73.7 + yellow: 92.8 + blue: 43.5 + magenta: 21.1 + cyan: 56.9 + white: 78.1 + brightBlack: 8.6 + brightRed: 43.3 + brightGreen: 82.4 + brightYellow: 102.1 + brightBlue: 63.8 + brightMagenta: 41.7 + brightCyan: 91.7 + brightWhite: 107.3 diff --git a/themes/matitheme.yaml b/themes/matitheme.yaml new file mode 100644 index 00000000..923a9581 --- /dev/null +++ b/themes/matitheme.yaml @@ -0,0 +1,49 @@ +name: "Matitheme" +source: + marketplace_id: "Omatita.matitheme" + version: "1.0.2" + installs: 145 + author: "Omatita" + repo: "https://github.com/Omatita/matitheme" + url: "https://marketplace.visualstudio.com/items?itemName=Omatita.matitheme" +colors: + bg: "#151515" + fg: "#DBC5C5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.6 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 107.1 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/matrix-hacking-dark-theme.yaml b/themes/matrix-hacking-dark-theme.yaml new file mode 100644 index 00000000..94b2a1a7 --- /dev/null +++ b/themes/matrix-hacking-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Matrix Hacking Dark Theme" +source: + marketplace_id: "mdmarufsarker.maruf-sarker" + version: "0.1.1" + installs: 29145 + author: "Md. Maruf Sarker" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" +colors: + bg: "#001019" + fg: "#22C21D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 231 + contrast: + fg: 55.3 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.2 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/matrix-mint.yaml b/themes/matrix-mint.yaml new file mode 100644 index 00000000..9c5670c0 --- /dev/null +++ b/themes/matrix-mint.yaml @@ -0,0 +1,49 @@ +name: "Matrix Mint" +source: + marketplace_id: "Barkerbg001.matrix-mint-vscode" + version: "1.1.0" + installs: 282 + author: "Barkerbg001" + repo: "https://github.com/barkerbg001/matrix-mint-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Barkerbg001.matrix-mint-vscode" +colors: + bg: "#0F1F0F" + fg: "#A2AABC" + black: "#1A4D1A" + red: "#FF4444" + green: "#66FFAA" + yellow: "#00FF41" + blue: "#00FF88" + magenta: "#00FF41" + cyan: "#00FF88" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#FF4444" + brightGreen: "#66FFAA" + brightYellow: "#00FF41" + brightBlue: "#00FF88" + brightMagenta: "#00FF41" + brightCyan: "#00FF88" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "green" + hue: 144 + contrast: + fg: 54.6 + black: 8.2 + red: 40.1 + green: 89 + yellow: 85.2 + blue: 86.2 + magenta: 85.2 + cyan: 86.2 + white: 54.6 + brightBlack: 10.6 + brightRed: 40.1 + brightGreen: 89 + brightYellow: 85.2 + brightBlue: 86.2 + brightMagenta: 85.2 + brightCyan: 86.2 + brightWhite: 54.6 diff --git a/themes/matrix.yaml b/themes/matrix.yaml new file mode 100644 index 00000000..79d224a0 --- /dev/null +++ b/themes/matrix.yaml @@ -0,0 +1,49 @@ +name: "Matrix" +source: + marketplace_id: "PabloAndroetto.a-matrix-theme" + version: "0.0.3" + installs: 1796 + author: "Pablo Androetto" + repo: "https://github.com/androettop/matrix-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PabloAndroetto.a-matrix-theme" +colors: + bg: "#0F191C" + fg: "#426644" + black: "#373B3D" + red: "#752323" + green: "#82D967" + yellow: "#FFD700" + blue: "#3F5242" + magenta: "#409931" + cyan: "#50B45A" + white: "#507350" + brightBlack: "#7A8E74" + brightRed: "#C02F2F" + brightGreen: "#90D762" + brightYellow: "#FAFF00" + brightBlue: "#4F7E7E" + brightMagenta: "#11FF25" + brightCyan: "#C1FF8A" + brightWhite: "#678C61" +meta: + mode: "dark" + accent: "green" + hue: 218 + contrast: + fg: 18.5 + black: 0 + red: 8.2 + green: 70.2 + yellow: 83.2 + blue: 12.2 + magenta: 37.3 + cyan: 50 + white: 24 + brightBlack: 37.7 + brightRed: 23.6 + brightGreen: 70.3 + brightYellow: 100.9 + brightBlue: 29.1 + brightMagenta: 85.5 + brightCyan: 95.2 + brightWhite: 34.9 diff --git a/themes/matronator-s-theme.yaml b/themes/matronator-s-theme.yaml new file mode 100644 index 00000000..2783ce66 --- /dev/null +++ b/themes/matronator-s-theme.yaml @@ -0,0 +1,49 @@ +name: "Matronator's Theme" +source: + marketplace_id: "matronator.mtrtheme" + version: "0.0.3" + installs: 44 + author: "Matronator" + repo: "https://github.com/matronator/mtr-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=matronator.mtrtheme" +colors: + bg: "#1B1313" + fg: "#D3D3D3" + black: "#4F4F4F" + red: "#B83131" + green: "#0DBC28" + yellow: "#C0C014" + blue: "#2159B0" + magenta: "#C93AC9" + cyan: "#159ABA" + white: "#C4C4C4" + brightBlack: "#717171" + brightRed: "#FF5353" + brightGreen: "#18EE30" + brightYellow: "#FFFF1A" + brightBlue: "#3B91FF" + brightMagenta: "#FF66FF" + brightCyan: "#1AD2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 18 + contrast: + fg: 79.1 + black: 13 + red: 22.4 + green: 52 + yellow: 64.4 + blue: 18.4 + magenta: 32.6 + cyan: 41 + white: 70.1 + brightBlack: 27 + brightRed: 43.2 + brightGreen: 76.8 + brightYellow: 101.9 + brightBlue: 42.9 + brightMagenta: 54 + brightCyan: 69.2 + brightWhite: 107.1 diff --git a/themes/matte-atelier-ivory.yaml b/themes/matte-atelier-ivory.yaml new file mode 100644 index 00000000..a3b5d191 --- /dev/null +++ b/themes/matte-atelier-ivory.yaml @@ -0,0 +1,49 @@ +name: "Matte Atelier — Ivory" +source: + marketplace_id: "aadityanarayan.matte-atelier" + version: "1.0.0" + installs: 25 + author: "aadityanarayan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" +colors: + bg: "#F0ECE4" + fg: "#2C2A26" + black: "#2C2A26" + red: "#984848" + green: "#487848" + yellow: "#9A7830" + blue: "#4A7090" + magenta: "#7A5A90" + cyan: "#3A7878" + white: "#F0ECE4" + brightBlack: "#8C8880" + brightRed: "#A85858" + brightGreen: "#588858" + brightYellow: "#A88838" + brightBlue: "#5A80A0" + brightMagenta: "#8A6AA0" + brightCyan: "#4A8888" + brightWhite: "#F8F4EC" +meta: + mode: "light" + accent: "orange" + hue: 85 + contrast: + fg: 90 + black: 90 + red: 69.6 + green: 64.4 + yellow: 57.1 + blue: 64.8 + magenta: 67.3 + cyan: 63.8 + white: 0 + brightBlack: 51.8 + brightRed: 63.1 + brightGreen: 57.3 + brightYellow: 49.9 + brightBlue: 57.6 + brightMagenta: 60.2 + brightCyan: 56.6 + brightWhite: 0 diff --git a/themes/matte-atelier-obsidian-colorblind.yaml b/themes/matte-atelier-obsidian-colorblind.yaml new file mode 100644 index 00000000..c269580c --- /dev/null +++ b/themes/matte-atelier-obsidian-colorblind.yaml @@ -0,0 +1,49 @@ +name: "Matte Atelier — Obsidian Colorblind" +source: + marketplace_id: "aadityanarayan.matte-atelier" + version: "1.0.0" + installs: 25 + author: "aadityanarayan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" +colors: + bg: "#141416" + fg: "#D8D6D0" + black: "#1A1A1E" + red: "#C87858" + green: "#5898B0" + yellow: "#D4A850" + blue: "#5B98C8" + magenta: "#A888C8" + cyan: "#60C8D8" + white: "#D8D6D0" + brightBlack: "#4C4A44" + brightRed: "#D89878" + brightGreen: "#78B8C8" + brightYellow: "#E0BE68" + brightBlue: "#78B0D0" + brightMagenta: "#C0A0E0" + brightCyan: "#78D8E0" + brightWhite: "#EAE8E2" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 81 + black: 0 + red: 40.4 + green: 41.7 + yellow: 58.1 + blue: 43.2 + magenta: 44.5 + cyan: 64.3 + white: 81 + brightBlack: 11.2 + brightRed: 53.8 + brightGreen: 57.9 + brightYellow: 68.9 + brightBlue: 55 + brightMagenta: 57.1 + brightCyan: 73.4 + brightWhite: 92.2 diff --git a/themes/matte-atelier-obsidian-high-contrast.yaml b/themes/matte-atelier-obsidian-high-contrast.yaml new file mode 100644 index 00000000..da07f57b --- /dev/null +++ b/themes/matte-atelier-obsidian-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Matte Atelier — Obsidian High Contrast" +source: + marketplace_id: "aadityanarayan.matte-atelier" + version: "1.0.0" + installs: 25 + author: "aadityanarayan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" +colors: + bg: "#0A0A0C" + fg: "#EEECE6" + black: "#111114" + red: "#D08080" + green: "#80AA80" + yellow: "#E0BE78" + blue: "#90B5D0" + magenta: "#B89ED0" + cyan: "#7CC0C0" + white: "#EEECE6" + brightBlack: "#585550" + brightRed: "#E0A0A0" + brightGreen: "#A0CCA0" + brightYellow: "#EACE8A" + brightBlue: "#A8C8E0" + brightMagenta: "#D0B8E0" + brightCyan: "#98D8D8" + brightWhite: "#F8F6F0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 95.3 + black: 0 + red: 45.6 + green: 50.5 + yellow: 69.8 + blue: 59.6 + magenta: 55.1 + cyan: 61.9 + white: 95.3 + brightBlack: 16.1 + brightRed: 59.6 + brightGreen: 69 + brightYellow: 78.3 + brightBlue: 70.7 + brightMagenta: 68.8 + brightCyan: 75.9 + brightWhite: 101.8 diff --git a/themes/matte-atelier-obsidian.yaml b/themes/matte-atelier-obsidian.yaml new file mode 100644 index 00000000..20b92c04 --- /dev/null +++ b/themes/matte-atelier-obsidian.yaml @@ -0,0 +1,49 @@ +name: "Matte Atelier — Obsidian" +source: + marketplace_id: "aadityanarayan.matte-atelier" + version: "1.0.0" + installs: 25 + author: "aadityanarayan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" +colors: + bg: "#141416" + fg: "#D4D2CD" + black: "#1A1A1E" + red: "#B07070" + green: "#6B8A6B" + yellow: "#C9A86C" + blue: "#7A9BB5" + magenta: "#9B85B5" + cyan: "#6B9E9E" + white: "#D4D2CD" + brightBlack: "#4A4843" + brightRed: "#C08888" + brightGreen: "#88A888" + brightYellow: "#D4B87A" + brightBlue: "#8AB0CC" + brightMagenta: "#B098CC" + brightCyan: "#80B8B8" + brightWhite: "#E8E6E0" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 78.6 + black: 0 + red: 34.7 + green: 35.1 + yellow: 56.9 + blue: 45.4 + magenta: 40.9 + cyan: 44.5 + white: 78.6 + brightBlack: 10.5 + brightRed: 45.1 + brightGreen: 50 + brightYellow: 65 + brightBlue: 56.2 + brightMagenta: 51.1 + brightCyan: 57.8 + brightWhite: 90.9 diff --git a/themes/matte-atelier-ros.yaml b/themes/matte-atelier-ros.yaml new file mode 100644 index 00000000..19be78ad --- /dev/null +++ b/themes/matte-atelier-ros.yaml @@ -0,0 +1,49 @@ +name: "Matte Atelier — Rosé" +source: + marketplace_id: "aadityanarayan.matte-atelier" + version: "1.0.0" + installs: 25 + author: "aadityanarayan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" +colors: + bg: "#181212" + fg: "#D8D0CC" + black: "#1E1618" + red: "#C08080" + green: "#80A080" + yellow: "#C8A060" + blue: "#7890A8" + magenta: "#A07898" + cyan: "#6B9898" + white: "#D8D0CC" + brightBlack: "#4A4442" + brightRed: "#D09898" + brightGreen: "#98B898" + brightYellow: "#D4B070" + brightBlue: "#90A8C0" + brightMagenta: "#B890B0" + brightCyan: "#80B0B0" + brightWhite: "#E8E0DC" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 78.3 + black: 0 + red: 42.4 + green: 45.9 + yellow: 53.6 + blue: 40.6 + magenta: 36.2 + cyan: 41.9 + white: 78.3 + brightBlack: 9.6 + brightRed: 53.5 + brightGreen: 58.7 + brightYellow: 61.7 + brightBlue: 53 + brightMagenta: 48.2 + brightCyan: 54.1 + brightWhite: 88.1 diff --git a/themes/matte-atelier-sapphire.yaml b/themes/matte-atelier-sapphire.yaml new file mode 100644 index 00000000..641ce5ac --- /dev/null +++ b/themes/matte-atelier-sapphire.yaml @@ -0,0 +1,49 @@ +name: "Matte Atelier — Sapphire" +source: + marketplace_id: "aadityanarayan.matte-atelier" + version: "1.0.0" + installs: 25 + author: "aadityanarayan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" +colors: + bg: "#0E1420" + fg: "#C8CCD8" + black: "#141A28" + red: "#B87878" + green: "#78A078" + yellow: "#C8A868" + blue: "#7098C0" + magenta: "#9080B8" + cyan: "#60A0A0" + white: "#C8CCD8" + brightBlack: "#404858" + brightRed: "#C89090" + brightGreen: "#90B890" + brightYellow: "#D4B878" + brightBlue: "#88B0D0" + brightMagenta: "#A898D0" + brightCyan: "#78B8B8" + brightWhite: "#E0E4E8" +meta: + mode: "dark" + accent: "yellow" + hue: 264 + contrast: + fg: 75 + black: 0 + red: 38.5 + green: 44.9 + yellow: 56.7 + blue: 44.1 + magenta: 38.2 + cyan: 44.6 + white: 75 + brightBlack: 10.4 + brightRed: 49.2 + brightGreen: 57.6 + brightYellow: 65 + brightBlue: 56.2 + brightMagenta: 50.3 + brightCyan: 57.2 + brightWhite: 89.3 diff --git a/themes/matte-light-theme.yaml b/themes/matte-light-theme.yaml new file mode 100644 index 00000000..56a258f8 --- /dev/null +++ b/themes/matte-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Matte Light Theme" +source: + marketplace_id: "bgmeulem.matte-light" + version: "0.1.0" + installs: 145 + author: "bgmeulem" + repo: "https://github.com/bgmeulem/matte-light" + url: "https://marketplace.visualstudio.com/items?itemName=bgmeulem.matte-light" +colors: + bg: "#E2E2E2" + fg: "#4B4B4B" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#C9C631" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFFF21" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 72.9 + black: 89 + red: 56.9 + green: 30.9 + yellow: 16.5 + blue: 56.2 + magenta: 53.8 + cyan: 36.2 + white: 0 + brightBlack: 61.7 + brightRed: 45 + brightGreen: 20.8 + brightYellow: 11.7 + brightBlue: 43.6 + brightMagenta: 38.3 + brightCyan: 28.6 + brightWhite: 0 diff --git a/themes/matteblack.yaml b/themes/matteblack.yaml new file mode 100644 index 00000000..4097a7cb --- /dev/null +++ b/themes/matteblack.yaml @@ -0,0 +1,49 @@ +name: "MatteBlack" +source: + marketplace_id: "TahaYVR.matteblack" + version: "1.0.2" + installs: 27880 + author: "Taha YVR" + repo: "https://github.com/tahayvr/matte-black-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TahaYVR.matteblack" +colors: + bg: "#121212" + fg: "#EAEAEA" + black: "#333333" + red: "#B91C1C" + green: "#129B70" + yellow: "#F59E0B" + blue: "#325DCA" + magenta: "#8D20B2" + cyan: "#1EA7A0" + white: "#BEBEBE" + brightBlack: "#8A8A8D" + brightRed: "#E62222" + brightGreen: "#22C55E" + brightYellow: "#F1CB42" + brightBlue: "#3C71F6" + brightMagenta: "#B027DE" + brightCyan: "#24D0C7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 93.6 + black: 0 + red: 21.1 + green: 38.8 + yellow: 59.9 + blue: 22.2 + magenta: 18.3 + cyan: 45.5 + white: 66.9 + brightBlack: 39.1 + brightRed: 31.6 + brightGreen: 57.2 + brightYellow: 76.6 + brightBlue: 31.9 + brightMagenta: 28 + brightCyan: 65.7 + brightWhite: 107.3 diff --git a/themes/matter.yaml b/themes/matter.yaml new file mode 100644 index 00000000..81652375 --- /dev/null +++ b/themes/matter.yaml @@ -0,0 +1,49 @@ +name: "matter" +source: + marketplace_id: "TobiasTimm.matter" + version: "1.0.0" + installs: 2322 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/vscode-matter-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.matter" +colors: + bg: "#14191F" + fg: "#E6E6E6" + black: "#516A88" + red: "#7A9BC2" + green: "#95CC5E" + yellow: "#748AA6" + blue: "#267FB5" + magenta: "#4CBBFF" + cyan: "#6EE2FF" + white: "#EFFBFF" + brightBlack: "#516A88" + brightRed: "#7A9BC2" + brightGreen: "#95CC5E" + brightYellow: "#748AA6" + brightBlue: "#267FB5" + brightMagenta: "#4CBBFF" + brightCyan: "#6EE2FF" + brightWhite: "#EFFBFF" +meta: + mode: "dark" + accent: "green" + hue: 253 + contrast: + fg: 90.5 + black: 22.8 + red: 45.6 + green: 65.4 + yellow: 37.5 + blue: 30.4 + magenta: 59.6 + cyan: 78.8 + white: 102.6 + brightBlack: 22.8 + brightRed: 45.6 + brightGreen: 65.4 + brightYellow: 37.5 + brightBlue: 30.4 + brightMagenta: 59.6 + brightCyan: 78.8 + brightWhite: 102.6 diff --git a/themes/matteric-dark-default.yaml b/themes/matteric-dark-default.yaml new file mode 100644 index 00000000..0bfb90c9 --- /dev/null +++ b/themes/matteric-dark-default.yaml @@ -0,0 +1,49 @@ +name: "Matteric Dark Default" +source: + marketplace_id: "rodinalex.matteric" + version: "1.1.0" + installs: 494 + author: "Alexey Rodin" + repo: "https://github.com/philosatom/vscode-theme-matteric" + url: "https://marketplace.visualstudio.com/items?itemName=rodinalex.matteric" +colors: + bg: "#1B1F23" + fg: "#ACAEB0" + black: "#16191C" + red: "#E35339" + green: "#84A360" + yellow: "#D9C671" + blue: "#315173" + magenta: "#4B4063" + cyan: "#6F91AD" + white: "#ACAEB0" + brightBlack: "#4D535C" + brightRed: "#E35339" + brightGreen: "#9FC474" + brightYellow: "#D9C671" + brightBlue: "#5389C2" + brightMagenta: "#A087D4" + brightCyan: "#89B3D5" + brightWhite: "#D2D4D6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 56.4 + black: 0 + red: 35.4 + green: 45.5 + yellow: 70.2 + blue: 12 + magenta: 8.6 + cyan: 39.2 + white: 56.4 + brightBlack: 13.2 + brightRed: 35.4 + brightGreen: 62.4 + brightYellow: 70.2 + brightBlue: 35.6 + brightMagenta: 42.7 + brightCyan: 56.6 + brightWhite: 78.4 diff --git a/themes/mauve-contrast.yaml b/themes/mauve-contrast.yaml new file mode 100644 index 00000000..c21fb99b --- /dev/null +++ b/themes/mauve-contrast.yaml @@ -0,0 +1,49 @@ +name: "mauve-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#191119" + fg: "#AF92B2" + black: "#281B28" + red: "#BA0E2E" + green: "#C89933" + yellow: "#74526C" + blue: "#DBD053" + magenta: "#C89933" + cyan: "#DBD053" + white: "#BAA1BD" + brightBlack: "#563A56" + brightRed: "#F03E5F" + brightGreen: "#DFC282" + brightYellow: "#A884A0" + brightBlue: "#EDE7A7" + brightMagenta: "#DFC282" + brightCyan: "#EDE7A7" + brightWhite: "#DBCEDC" +meta: + mode: "dark" + accent: "orange" + hue: 326 + contrast: + fg: 47.7 + black: 0 + red: 20.8 + green: 50.5 + yellow: 18.5 + blue: 75.5 + magenta: 50.5 + cyan: 75.5 + white: 54.9 + brightBlack: 9 + brightRed: 37.1 + brightGreen: 70.9 + brightYellow: 41.3 + brightBlue: 90 + brightMagenta: 70.9 + brightCyan: 90 + brightWhite: 78.5 diff --git a/themes/mauve-light.yaml b/themes/mauve-light.yaml new file mode 100644 index 00000000..4e4ea1d5 --- /dev/null +++ b/themes/mauve-light.yaml @@ -0,0 +1,49 @@ +name: "mauve-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#372638" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#C89933" + yellow: "#74526C" + blue: "#DBD053" + magenta: "#C89933" + cyan: "#DBD053" + white: "#463047" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DFC282" + brightYellow: "#A884A0" + brightBlue: "#EDE7A7" + brightMagenta: "#DFC282" + brightCyan: "#EDE7A7" + brightWhite: "#734F75" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 100.6 + black: 0 + red: 80.3 + green: 50.7 + yellow: 82.7 + blue: 26.8 + magenta: 50.7 + cyan: 26.8 + white: 97.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 31.1 + brightYellow: 59.7 + brightBlue: 13.2 + brightMagenta: 31.1 + brightCyan: 13.2 + brightWhite: 83.2 diff --git a/themes/mauve.yaml b/themes/mauve.yaml new file mode 100644 index 00000000..e73e2297 --- /dev/null +++ b/themes/mauve.yaml @@ -0,0 +1,49 @@ +name: "mauve" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#372638" + fg: "#AF92B2" + black: "#463047" + red: "#BA0E2E" + green: "#C89933" + yellow: "#74526C" + blue: "#DBD053" + magenta: "#C89933" + cyan: "#DBD053" + white: "#BAA1BD" + brightBlack: "#734F75" + brightRed: "#F03E5F" + brightGreen: "#DFC282" + brightYellow: "#A884A0" + brightBlue: "#EDE7A7" + brightMagenta: "#DFC282" + brightCyan: "#EDE7A7" + brightWhite: "#DBCEDC" +meta: + mode: "dark" + accent: "orange" + hue: 325 + contrast: + fg: 44.2 + black: 0 + red: 17.3 + green: 47 + yellow: 15 + blue: 71.9 + magenta: 47 + cyan: 71.9 + white: 51.4 + brightBlack: 14.5 + brightRed: 33.6 + brightGreen: 67.4 + brightYellow: 37.8 + brightBlue: 86.5 + brightMagenta: 67.4 + brightCyan: 86.5 + brightWhite: 75 diff --git a/themes/mavaia.yaml b/themes/mavaia.yaml new file mode 100644 index 00000000..c02674ed --- /dev/null +++ b/themes/mavaia.yaml @@ -0,0 +1,49 @@ +name: "Mavaia" +source: + marketplace_id: "Thynaptic.thynaptic-color-themes" + version: "0.4.0" + installs: 26 + author: "Thynaptic" + repo: "https://github.com/cassianwolfe/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" +colors: + bg: "#0A0A0A" + fg: "#FAFAFA" + black: "#0A0A0A" + red: "#DC2626" + green: "#059669" + yellow: "#D97706" + blue: "#2563EB" + magenta: "#9333EA" + cyan: "#0891B2" + white: "#FAFAFA" + brightBlack: "#4B5563" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 104.4 + black: 0 + red: 30 + green: 36.9 + yellow: 43.1 + blue: 26.7 + magenta: 26 + cyan: 37.7 + white: 104.4 + brightBlack: 15.6 + brightRed: 37.7 + brightGreen: 52.7 + brightYellow: 60.3 + brightBlue: 37.6 + brightMagenta: 35.3 + brightCyan: 54.7 + brightWhite: 104.4 diff --git a/themes/max2.yaml b/themes/max2.yaml new file mode 100644 index 00000000..cd87c9a7 --- /dev/null +++ b/themes/max2.yaml @@ -0,0 +1,49 @@ +name: "Max2" +source: + marketplace_id: "AyushGautam.Max2" + version: "0.0.1" + installs: 55 + author: "Ayush Gautam" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AyushGautam.Max2" +colors: + bg: "#000108" + fg: "#FF008F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 39.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/maxsumon.yaml b/themes/maxsumon.yaml new file mode 100644 index 00000000..49696e35 --- /dev/null +++ b/themes/maxsumon.yaml @@ -0,0 +1,49 @@ +name: "Maxsumon" +source: + marketplace_id: "Maxsumontheme.Maxsumon" + version: "0.0.1" + installs: 91 + author: "Maxsumon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Maxsumontheme.Maxsumon" +colors: + bg: "#09121F" + fg: "#BCBCBC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 65.7 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.2 + cyan: 48 + white: 90.4 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/mayukai.yaml b/themes/mayukai.yaml new file mode 100644 index 00000000..9bb72f4c --- /dev/null +++ b/themes/mayukai.yaml @@ -0,0 +1,49 @@ +name: "Mayukai" +source: + marketplace_id: "GulajavaMinistudio.mayukaithemevsc" + version: "3.2.5" + installs: 359345 + author: "GulajavaMinistudio" + repo: "https://github.com/GulajavaMinistudio/Mayukai-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=GulajavaMinistudio.mayukaithemevsc" +colors: + bg: "#0D1016" + fg: "#DADBC0" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#95E6CB" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#95E6CB" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 83.1 + black: 0 + red: 44.6 + green: 54.8 + yellow: 67.2 + blue: 81.4 + magenta: 92.6 + cyan: 78.4 + white: 72.3 + brightBlack: 23.5 + brightRed: 47.2 + brightGreen: 76.5 + brightYellow: 70.1 + brightBlue: 81.4 + brightMagenta: 95.8 + brightCyan: 81.4 + brightWhite: 107.4 diff --git a/themes/mazda-rx7-theme.yaml b/themes/mazda-rx7-theme.yaml new file mode 100644 index 00000000..2079894d --- /dev/null +++ b/themes/mazda-rx7-theme.yaml @@ -0,0 +1,49 @@ +name: "Mazda-RX7-Theme" +source: + marketplace_id: "Mazda-RX7-Theme.mazda-rx7-theme" + version: "1.0.3" + installs: 51 + author: "Mazda-RX7-Theme" + repo: "https://github.com/jklaiven/mazda-rx7-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Mazda-RX7-Theme.mazda-rx7-theme" +colors: + bg: "#0C0C0C" + fg: "#FFA400" + black: "#0C0C0C" + red: "#FF4C4C" + green: "#8FD96F" + yellow: "#F3B23C" + blue: "#2D6C94" + magenta: "#B77CE8" + cyan: "#36CFC9" + white: "#C4B59A" + brightBlack: "#555555" + brightRed: "#FF6B6B" + brightGreen: "#A9E88A" + brightYellow: "#FFD74D" + brightBlue: "#4FA1D1" + brightMagenta: "#D3A7FF" + brightCyan: "#6CE7E1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 64.2 + black: 0 + red: 42.6 + green: 72.2 + yellow: 67.2 + blue: 23.3 + magenta: 45.5 + cyan: 65.9 + white: 63 + brightBlack: 15.9 + brightRed: 48.9 + brightGreen: 82.2 + brightYellow: 84.4 + brightBlue: 47.1 + brightMagenta: 64.7 + brightCyan: 80.5 + brightWhite: 107.7 diff --git a/themes/mbp.yaml b/themes/mbp.yaml new file mode 100644 index 00000000..12bfecf6 --- /dev/null +++ b/themes/mbp.yaml @@ -0,0 +1,49 @@ +name: "MBP" +source: + marketplace_id: "mbp.mbp" + version: "1.0.6" + installs: 1033 + author: "mbp_dsm" + repo: "https://github.com/DanielSDM/mbp" + url: "https://marketplace.visualstudio.com/items?itemName=mbp.mbp" +colors: + bg: "#100E13" + fg: "#FFFFFF" + black: "#181818" + red: "#FF0000" + green: "#00AA1C" + yellow: "#FFC400" + blue: "#3765FF" + magenta: "#C000C0" + cyan: "#2A788B" + white: "#EEEEEE" + brightBlack: "#363636" + brightRed: "#FF5B5B" + brightGreen: "#3DFF5E" + brightYellow: "#FFD650" + brightBlue: "#37C0FF" + brightMagenta: "#FF46FF" + brightCyan: "#2C9EBB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 303 + contrast: + fg: 107.5 + black: 0 + red: 37.2 + green: 44.2 + yellow: 76 + blue: 29.4 + magenta: 27.8 + cyan: 26.7 + white: 96.4 + brightBlack: 0 + brightRed: 45.2 + brightGreen: 87.2 + brightYellow: 83.8 + brightBlue: 62 + brightMagenta: 49.4 + brightCyan: 43.5 + brightWhite: 107.5 diff --git a/themes/mcdark-theme.yaml b/themes/mcdark-theme.yaml new file mode 100644 index 00000000..d3f56fbd --- /dev/null +++ b/themes/mcdark-theme.yaml @@ -0,0 +1,49 @@ +name: "McDark Theme" +source: + marketplace_id: "mcd005.mcdark-theme" + version: "1.0.2" + installs: 1184 + author: "Jamie McDonald" + repo: "https://github.com/mcd005/mcdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mcd005.mcdark-theme" +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#FFD16F" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "green" + hue: 258 + contrast: + fg: 77.5 + black: 13.1 + red: 52.6 + green: 52.1 + yellow: 82 + blue: 52.2 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 29.3 + brightRed: 64.8 + brightGreen: 65.5 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 100.9 diff --git a/themes/mcdonalds-theme.yaml b/themes/mcdonalds-theme.yaml new file mode 100644 index 00000000..9aa7d4cf --- /dev/null +++ b/themes/mcdonalds-theme.yaml @@ -0,0 +1,49 @@ +name: "McDonalds Theme" +source: + marketplace_id: "OttonielMatheus.mcdonalds-theme" + version: "0.0.1" + installs: 4586 + author: "Ottoniel Matheus" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=OttonielMatheus.mcdonalds-theme" +colors: + bg: "#4F0000" + fg: "#FFEF00" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 29 + contrast: + fg: 91.3 + black: 0 + red: 24 + green: 50.3 + yellow: 82.9 + blue: 24.7 + magenta: 27 + cyan: 44.8 + white: 87.3 + brightBlack: 19.3 + brightRed: 35.8 + brightGreen: 60.8 + brightYellow: 92.9 + brightBlue: 37.3 + brightMagenta: 42.7 + brightCyan: 52.7 + brightWhite: 87.3 diff --git a/themes/mcyoda-s-light-theme.yaml b/themes/mcyoda-s-light-theme.yaml new file mode 100644 index 00000000..6aef57b1 --- /dev/null +++ b/themes/mcyoda-s-light-theme.yaml @@ -0,0 +1,49 @@ +name: "McYoda's Light Theme" +source: + marketplace_id: "McYoda.mcyoda-s-light-theme" + version: "0.0.4" + installs: 142 + author: "McYoda" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=McYoda.mcyoda-s-light-theme" +colors: + bg: "#FAFAFA" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 103 + black: 103 + red: 71 + green: 46.2 + yellow: 54.9 + blue: 83.1 + magenta: 71.6 + cyan: 57.6 + white: 82.9 + brightBlack: 75.8 + brightRed: 71 + brightGreen: 37.9 + brightYellow: 38 + brightBlue: 83.1 + brightMagenta: 71.6 + brightCyan: 57.6 + brightWhite: 45.5 diff --git a/themes/md-abdur-rakib.yaml b/themes/md-abdur-rakib.yaml new file mode 100644 index 00000000..254bd540 --- /dev/null +++ b/themes/md-abdur-rakib.yaml @@ -0,0 +1,49 @@ +name: "Md Abdur Rakib" +source: + marketplace_id: "tscmdabdurrakib.md-abdur-rakib-theme" + version: "1.1.3" + installs: 1739 + author: "Md Abdur Rakib" + repo: "https://github.com/tscmdabdurrakib/md-abdur-rakib-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tscmdabdurrakib.md-abdur-rakib-theme" +colors: + bg: "#0E0D1A" + fg: "#DDDFE9" + black: "#0E0D1A" + red: "#FA1313" + green: "#00C82B" + yellow: "#FFE553" + blue: "#8C97EA" + magenta: "#FF00F2" + cyan: "#8C97EA" + white: "#FFFFFF" + brightBlack: "#5966CC" + brightRed: "#FA1313" + brightGreen: "#17F648" + brightYellow: "#FFFFFF" + brightBlue: "#8C97EA" + brightMagenta: "#FF00F2" + brightCyan: "#23DEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 287 + contrast: + fg: 87.1 + black: 0 + red: 36.1 + green: 58.1 + yellow: 90.5 + blue: 48.9 + magenta: 44.9 + cyan: 48.9 + white: 107.5 + brightBlack: 27 + brightRed: 36.1 + brightGreen: 81.6 + brightYellow: 107.5 + brightBlue: 48.9 + brightMagenta: 44.9 + brightCyan: 75.4 + brightWhite: 107.5 diff --git a/themes/meaow-dark.yaml b/themes/meaow-dark.yaml new file mode 100644 index 00000000..30b7317c --- /dev/null +++ b/themes/meaow-dark.yaml @@ -0,0 +1,49 @@ +name: "Meaow Dark" +source: + marketplace_id: "meaow-dev.meaow-theme" + version: "0.0.1" + installs: 7 + author: "MeaowDev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=meaow-dev.meaow-theme" +colors: + bg: "#1F1F1F" + fg: "#C0BCBC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 64.8 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/mecha-01.yaml b/themes/mecha-01.yaml new file mode 100644 index 00000000..d8869895 --- /dev/null +++ b/themes/mecha-01.yaml @@ -0,0 +1,49 @@ +name: "MECHA.01" +source: + marketplace_id: "Bytemore.mecha-01" + version: "0.12.0" + installs: 3197 + author: "Bytemore" + repo: "https://github.com/gianmazzoran/mecha-01" + url: "https://marketplace.visualstudio.com/items?itemName=Bytemore.mecha-01" +colors: + bg: "#1D1A2F" + fg: "#D4D4D4" + black: "#1D1A2F" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 289 + contrast: + fg: 78.8 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/medium-dark.yaml b/themes/medium-dark.yaml new file mode 100644 index 00000000..4b86036b --- /dev/null +++ b/themes/medium-dark.yaml @@ -0,0 +1,49 @@ +name: "medium-dark" +source: + marketplace_id: "chriszo.medium-dark" + version: "0.0.2" + installs: 173 + author: "chriszo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=chriszo.medium-dark" +colors: + bg: "#161611" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 74.8 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/mega-green.yaml b/themes/mega-green.yaml new file mode 100644 index 00000000..96a8c464 --- /dev/null +++ b/themes/mega-green.yaml @@ -0,0 +1,49 @@ +name: "Mega Green" +source: + marketplace_id: "xxhtml.xxhtml-themes" + version: "0.0.15" + installs: 1165 + author: "Isaac" + repo: "https://github.com/XxHTMLStudios/xxhtml-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xxhtml.xxhtml-themes" +colors: + bg: "#002717" + fg: "#B4B4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 161 + contrast: + fg: 59.3 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 88.6 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 88.6 diff --git a/themes/meitnerium-theme.yaml b/themes/meitnerium-theme.yaml new file mode 100644 index 00000000..f34be6b3 --- /dev/null +++ b/themes/meitnerium-theme.yaml @@ -0,0 +1,49 @@ +name: "Meitnerium Theme" +source: + marketplace_id: "c-jaenicke.meitnerium-theme" + version: "0.2.1" + installs: 90 + author: "c-jaenicke" + repo: "https://github.com/c-jaenicke/meitnerium-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=c-jaenicke.meitnerium-theme" +colors: + bg: "#21262B" + fg: "#FEFBEC" + black: "#424B55" + red: "#F32E2E" + green: "#75EE37" + yellow: "#F2CF26" + blue: "#3160F2" + magenta: "#C930F3" + cyan: "#2BEEB4" + white: "#DEDEDD" + brightBlack: "#7D7A68" + brightRed: "#FF9F9F" + brightGreen: "#ACFF82" + brightYellow: "#FFE87B" + brightBlue: "#7C9CFF" + brightMagenta: "#E279FF" + brightCyan: "#75FFD6" + brightWhite: "#FEFBEC" +meta: + mode: "dark" + accent: "pink" + hue: 248 + contrast: + fg: 102 + black: 9 + red: 33.2 + green: 77.4 + yellow: 75.8 + blue: 24 + magenta: 32.6 + cyan: 77.4 + white: 83.6 + brightBlack: 28.7 + brightRed: 61.9 + brightGreen: 91.1 + brightYellow: 89.8 + brightBlue: 48.2 + brightMagenta: 50.4 + brightCyan: 89.8 + brightWhite: 102 diff --git a/themes/mel.yaml b/themes/mel.yaml new file mode 100644 index 00000000..3b7848df --- /dev/null +++ b/themes/mel.yaml @@ -0,0 +1,49 @@ +name: "mel" +source: + marketplace_id: "jakeevans00.arcane" + version: "0.0.6" + installs: 845 + author: "Jake Evans" + repo: "https://github.com/jakeevans00/arcane-themes" + url: "https://marketplace.visualstudio.com/items?itemName=jakeevans00.arcane" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#BA6F6F" + green: "#75A975" + yellow: "#D9AF4C" + blue: "#4E79A7" + magenta: "#9B539B" + cyan: "#58A3B6" + white: "#555555" + brightBlack: "#666666" + brightRed: "#B23838" + brightGreen: "#569456" + brightYellow: "#CD9616" + brightBlue: "#38699F" + brightMagenta: "#9B419B" + brightCyan: "#3890A5" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 64.9 + green: 52.8 + yellow: 40.1 + blue: 71.5 + magenta: 75 + cyan: 54.7 + white: 85.9 + brightBlack: 78.8 + brightRed: 78.8 + brightGreen: 63.9 + brightYellow: 51.1 + brightBlue: 78.3 + brightMagenta: 78.4 + brightCyan: 64.2 + brightWhite: 48.5 diff --git a/themes/melancholy.yaml b/themes/melancholy.yaml new file mode 100644 index 00000000..75553342 --- /dev/null +++ b/themes/melancholy.yaml @@ -0,0 +1,49 @@ +name: "melancholy" +source: + marketplace_id: "JohannesFreutel.melancholy" + version: "0.0.6" + installs: 22 + author: "JohannesFreutel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.melancholy" +colors: + bg: "#040404" + fg: "#3F5A6D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 16.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/melange-redux-light.yaml b/themes/melange-redux-light.yaml new file mode 100644 index 00000000..25256612 --- /dev/null +++ b/themes/melange-redux-light.yaml @@ -0,0 +1,49 @@ +name: "Melange Redux: Light" +source: + marketplace_id: "rtud.melange-redux" + version: "0.2.1" + installs: 1805 + author: "rtud" + repo: "https://github.com/rtud/melange-redux" + url: "https://marketplace.visualstudio.com/items?itemName=rtud.melange-redux" +colors: + bg: "#F1F1F1" + fg: "#423324" + black: "#7D6658" + red: "#BF0021" + green: "#3A684A" + yellow: "#A06D00" + blue: "#465AA4" + magenta: "#BE79BB" + cyan: "#3D6568" + white: "#F1F1F1" + brightBlack: "#54433A" + brightRed: "#BF0021" + brightGreen: "#3A684A" + brightYellow: "#A06D00" + brightBlue: "#465AA4" + brightMagenta: "#BE79BB" + brightCyan: "#3D6568" + brightWhite: "#E9E1DB" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 89.4 + black: 68.4 + red: 71.1 + green: 73.5 + yellow: 62.5 + blue: 73.5 + magenta: 50.2 + cyan: 73.6 + white: 0 + brightBlack: 83.3 + brightRed: 71.1 + brightGreen: 73.5 + brightYellow: 62.5 + brightBlue: 73.5 + brightMagenta: 50.2 + brightCyan: 73.6 + brightWhite: 0 diff --git a/themes/melcr.yaml b/themes/melcr.yaml new file mode 100644 index 00000000..94772a17 --- /dev/null +++ b/themes/melcr.yaml @@ -0,0 +1,49 @@ +name: "melcr" +source: + marketplace_id: "melcr.melcr" + version: "0.0.1" + installs: 14 + author: "melcr" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=melcr.melcr" +colors: + bg: "#131B1F" + fg: "#FFE8AC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 230 + contrast: + fg: 92.6 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/melee-island.yaml b/themes/melee-island.yaml new file mode 100644 index 00000000..e0d12d12 --- /dev/null +++ b/themes/melee-island.yaml @@ -0,0 +1,49 @@ +name: "Melee Island" +source: + marketplace_id: "VictorChirino.monkey-island-theme" + version: "0.4.0" + installs: 362 + author: "Victor Chirino" + repo: "https://github.com/vicchirino/monkey-island-theme" + url: "https://marketplace.visualstudio.com/items?itemName=VictorChirino.monkey-island-theme" +colors: + bg: "#060565" + fg: "#A6A6A6" + black: "#242225" + red: "#C0413E" + green: "#4E8607" + yellow: "#E08602" + blue: "#7098AF" + magenta: "#E42AE0" + cyan: "#7098AF" + white: "#D2D2D2" + brightBlack: "#242225" + brightRed: "#C0413E" + brightGreen: "#4E8607" + brightYellow: "#E08602" + brightBlue: "#7098AF" + brightMagenta: "#E42AE0" + brightCyan: "#7098AF" + brightWhite: "#D2D2D2" +meta: + mode: "dark" + accent: "pink" + hue: 267 + contrast: + fg: 51.7 + black: 0 + red: 24.7 + green: 28.8 + yellow: 46.5 + blue: 41.6 + magenta: 36.7 + cyan: 41.6 + white: 76.9 + brightBlack: 0 + brightRed: 24.7 + brightGreen: 28.8 + brightYellow: 46.5 + brightBlue: 41.6 + brightMagenta: 36.7 + brightCyan: 41.6 + brightWhite: 76.9 diff --git a/themes/melinoe.yaml b/themes/melinoe.yaml new file mode 100644 index 00000000..e2aa1488 --- /dev/null +++ b/themes/melinoe.yaml @@ -0,0 +1,49 @@ +name: "Melinoe" +source: + marketplace_id: "ltatarev.melinoe" + version: "0.0.8" + installs: 123 + author: "ltatarev" + repo: "https://github.com/ltatarev/melinoe-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ltatarev.melinoe" +colors: + bg: "#201328" + fg: "#FFB6E0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 312 + contrast: + fg: 74.3 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.6 + cyan: 47.4 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.4 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/mellow-contrast.yaml b/themes/mellow-contrast.yaml new file mode 100644 index 00000000..690a53ba --- /dev/null +++ b/themes/mellow-contrast.yaml @@ -0,0 +1,49 @@ +name: "mellow-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0B0A09" + fg: "#F8F8F2" + black: "#191714" + red: "#BA0E2E" + green: "#F2BC79" + yellow: "#1F8181" + blue: "#F28972" + magenta: "#F2BC79" + cyan: "#F55D79" + white: "#FFFFFF" + brightBlack: "#433D37" + brightRed: "#F03E5F" + brightGreen: "#FBEAD6" + brightYellow: "#37CFCF" + brightBlue: "#FBD7CF" + brightMagenta: "#FBEAD6" + brightCyan: "#FBBDC8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 102.8 + black: 0 + red: 21.4 + green: 71.9 + yellow: 29.6 + blue: 54.1 + magenta: 71.9 + cyan: 44.2 + white: 107.7 + brightBlack: 7.6 + brightRed: 37.6 + brightGreen: 95.6 + brightYellow: 66.3 + brightBlue: 87 + brightMagenta: 95.6 + brightCyan: 76.2 + brightWhite: 107.7 diff --git a/themes/mellow-light.yaml b/themes/mellow-light.yaml new file mode 100644 index 00000000..5bc052e5 --- /dev/null +++ b/themes/mellow-light.yaml @@ -0,0 +1,49 @@ +name: "mellow-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#555555" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#F2BC79" + yellow: "#1F8181" + blue: "#F28972" + magenta: "#F2BC79" + cyan: "#F55D79" + white: "#626262" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FBEAD6" + brightYellow: "#37CFCF" + brightBlue: "#FBD7CF" + brightMagenta: "#FBEAD6" + brightCyan: "#FBBDC8" + brightWhite: "#888888" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 85.9 + black: 0 + red: 80.3 + green: 30.7 + yellow: 71.9 + blue: 47.7 + magenta: 30.7 + cyan: 57.4 + white: 80.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 8.5 + brightYellow: 36 + brightBlue: 16.5 + brightMagenta: 8.5 + brightCyan: 26.6 + brightWhite: 63.1 diff --git a/themes/mellow.yaml b/themes/mellow.yaml new file mode 100644 index 00000000..0cfa3822 --- /dev/null +++ b/themes/mellow.yaml @@ -0,0 +1,49 @@ +name: "Mellow" +source: + marketplace_id: "kvrohit.mellow-theme" + version: "0.0.1" + installs: 1491 + author: "Rohit K Viswanath" + repo: "https://github.com/kvrohit/mellow-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kvrohit.mellow-theme" +colors: + bg: "#161617" + fg: "#C9C7CD" + black: "#27272A" + red: "#F5A191" + green: "#90B99F" + yellow: "#E6B99D" + blue: "#ACA1CF" + magenta: "#E29ECA" + cyan: "#EA83A5" + white: "#C1C0D4" + brightBlack: "#353539" + brightRed: "#FFAE9F" + brightGreen: "#9DC6AC" + brightYellow: "#F0C5A9" + brightBlue: "#B9AEDA" + brightMagenta: "#ECAAD6" + brightCyan: "#F591B2" + brightWhite: "#CAC9DD" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 72.3 + black: 0 + red: 62.4 + green: 58.4 + yellow: 68.9 + blue: 53.8 + magenta: 60.2 + cyan: 51.7 + white: 68.7 + brightBlack: 0 + brightRed: 69.1 + brightGreen: 65.7 + brightYellow: 75.6 + brightBlue: 60.9 + brightMagenta: 66.6 + brightCyan: 58.4 + brightWhite: 74 diff --git a/themes/melokai.yaml b/themes/melokai.yaml new file mode 100644 index 00000000..0cbd6362 --- /dev/null +++ b/themes/melokai.yaml @@ -0,0 +1,49 @@ +name: "Melokai" +source: + marketplace_id: "miller2676.melokai" + version: "0.0.2" + installs: 1930 + author: "miller2676" + repo: "https://github.com/mel-miller/melokai-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=miller2676.melokai" +colors: + bg: "#303030" + fg: "#FCFCFC" + black: "#404040" + red: "#FF6188" + green: "#A9DC76" + yellow: "#FFD866" + blue: "#FC9867" + magenta: "#AB9DF2" + cyan: "#78DCE8" + white: "#FCFCFC" + brightBlack: "#777777" + brightRed: "#FF6188" + brightGreen: "#A9DC76" + brightYellow: "#FFD866" + brightBlue: "#FC9867" + brightMagenta: "#AB9DF2" + brightCyan: "#78DCE8" + brightWhite: "#FCFCFC" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 100.8 + black: 0 + red: 42.7 + green: 71.2 + yellow: 80.2 + blue: 55.5 + magenta: 50.1 + cyan: 71.3 + white: 100.8 + brightBlack: 25.4 + brightRed: 42.7 + brightGreen: 71.2 + brightYellow: 80.2 + brightBlue: 55.5 + brightMagenta: 50.1 + brightCyan: 71.3 + brightWhite: 100.8 diff --git a/themes/meloncode.yaml b/themes/meloncode.yaml new file mode 100644 index 00000000..8e7d2c36 --- /dev/null +++ b/themes/meloncode.yaml @@ -0,0 +1,49 @@ +name: "MelonCode" +source: + marketplace_id: "Hicoffeman.hicoffeman" + version: "0.0.3" + installs: 79 + author: "Hicoffeman" + repo: "https://github.com/Hicoffeman/HicoffemanVS" + url: "https://marketplace.visualstudio.com/items?itemName=Hicoffeman.hicoffeman" +colors: + bg: "#171010" + fg: "#E5E4CC" + black: "#5F7161" + red: "#5F7161" + green: "#5F7161" + yellow: "#5F7161" + blue: "#5F7161" + magenta: "#5F7161" + cyan: "#5F7161" + white: "#5F7161" + brightBlack: "#5F7161" + brightRed: "#5F7161" + brightGreen: "#5F7161" + brightYellow: "#5F7161" + brightBlue: "#5F7161" + brightMagenta: "#5F7161" + brightCyan: "#5F7161" + brightWhite: "#5F7161" +meta: + mode: "dark" + accent: "green" + hue: 18 + contrast: + fg: 89 + black: 25.3 + red: 25.3 + green: 25.3 + yellow: 25.3 + blue: 25.3 + magenta: 25.3 + cyan: 25.3 + white: 25.3 + brightBlack: 25.3 + brightRed: 25.3 + brightGreen: 25.3 + brightYellow: 25.3 + brightBlue: 25.3 + brightMagenta: 25.3 + brightCyan: 25.3 + brightWhite: 25.3 diff --git a/themes/melyon-blue.yaml b/themes/melyon-blue.yaml new file mode 100644 index 00000000..77e0fa45 --- /dev/null +++ b/themes/melyon-blue.yaml @@ -0,0 +1,49 @@ +name: "Melyon Blue" +source: + marketplace_id: "cair71.melyon-vscode" + version: "0.1.4" + installs: 895 + author: "cair71" + repo: "https://github.com/CA1R7/melyon" + url: "https://marketplace.visualstudio.com/items?itemName=cair71.melyon-vscode" +colors: + bg: "#0D111B" + fg: "#A2AABC" + black: "#2F3B54" + red: "#EF6B73" + green: "#BAE67E" + yellow: "#5C6BC0" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#BAE67E" + brightYellow: "#5C6BC0" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "orange" + hue: 267 + contrast: + fg: 55.6 + black: 0 + red: 45.3 + green: 82.4 + yellow: 27.6 + blue: 68.3 + magenta: 61.8 + cyan: 68.3 + white: 55.6 + brightBlack: 11.6 + brightRed: 45.3 + brightGreen: 82.4 + brightYellow: 27.6 + brightBlue: 68.3 + brightMagenta: 61.8 + brightCyan: 68.3 + brightWhite: 55.6 diff --git a/themes/melyon.yaml b/themes/melyon.yaml new file mode 100644 index 00000000..cc369eb0 --- /dev/null +++ b/themes/melyon.yaml @@ -0,0 +1,49 @@ +name: "Melyon" +source: + marketplace_id: "cair71.melyon-vscode" + version: "0.1.4" + installs: 895 + author: "cair71" + repo: "https://github.com/CA1R7/melyon" + url: "https://marketplace.visualstudio.com/items?itemName=cair71.melyon-vscode" +colors: + bg: "#0D111B" + fg: "#A2AABC" + black: "#2F3B54" + red: "#EF6B73" + green: "#BAE67E" + yellow: "#5BCC7D" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#BAE67E" + brightYellow: "#5BCC7D" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "orange" + hue: 267 + contrast: + fg: 55.6 + black: 0 + red: 45.3 + green: 82.4 + yellow: 62.8 + blue: 68.3 + magenta: 61.8 + cyan: 68.3 + white: 55.6 + brightBlack: 11.6 + brightRed: 45.3 + brightGreen: 82.4 + brightYellow: 62.8 + brightBlue: 68.3 + brightMagenta: 61.8 + brightCyan: 68.3 + brightWhite: 55.6 diff --git a/themes/menelik.yaml b/themes/menelik.yaml new file mode 100644 index 00000000..76602622 --- /dev/null +++ b/themes/menelik.yaml @@ -0,0 +1,49 @@ +name: "Menelik" +source: + marketplace_id: "mansa-muntari.menelik-theme" + version: "1.6.0" + installs: 212 + author: "Mansa Muntari" + repo: "https://github.com/Mansa-Muntari/menelik-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=mansa-muntari.menelik-theme" +colors: + bg: "#0D0D0D" + fg: "#D9D9D9" + black: "#0D0D0D" + red: "#FF6250" + green: "#258870" + yellow: "#717E56" + blue: "#00AEFF" + magenta: "#847495" + cyan: "#DD9AC2" + white: "#D9D9D9" + brightBlack: "#737373" + brightRed: "#FF7E70" + brightGreen: "#85F4AC" + brightYellow: "#F8FA9E" + brightBlue: "#64E7E7" + brightMagenta: "#B3BDFF" + brightCyan: "#DD9AC2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.3 + black: 0 + red: 46.4 + green: 31.7 + yellow: 31.2 + blue: 53.9 + magenta: 31.8 + cyan: 58.4 + white: 83.3 + brightBlack: 28.5 + brightRed: 53.5 + brightGreen: 86.3 + brightYellow: 100.7 + brightBlue: 80.4 + brightMagenta: 68.9 + brightCyan: 58.4 + brightWhite: 107.6 diff --git a/themes/meoceanblackbarry.yaml b/themes/meoceanblackbarry.yaml new file mode 100644 index 00000000..f7000a3c --- /dev/null +++ b/themes/meoceanblackbarry.yaml @@ -0,0 +1,49 @@ +name: "MeOceanBlackbarry" +source: + marketplace_id: "JaianeOliveira.meoceanthemes" + version: "0.0.5" + installs: 9230 + author: "Jaiane Oliveira" + repo: "https://github.com/JaianeOliveira/meocean-themes" + url: "https://marketplace.visualstudio.com/items?itemName=JaianeOliveira.meoceanthemes" +colors: + bg: "#1F1F1F" + fg: "#F1F1F1" + black: "#000000" + red: "#E20E4A" + green: "#3FB48D" + yellow: "#E5B010" + blue: "#7066B6" + magenta: "#A469CF" + cyan: "#5AC2D3" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF0C51" + brightGreen: "#57FFC7" + brightYellow: "#FFC71F" + brightBlue: "#8F80FF" + brightMagenta: "#CA82FF" + brightCyan: "#67EAFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 96.7 + black: 0 + red: 29 + green: 49.8 + yellow: 62.2 + blue: 25.7 + magenta: 34.3 + cyan: 59.9 + white: 89 + brightBlack: 21.1 + brightRed: 36.2 + brightGreen: 88.9 + brightYellow: 75.6 + brightBlue: 41.6 + brightMagenta: 49.8 + brightCyan: 81.5 + brightWhite: 89 diff --git a/themes/meoceangray.yaml b/themes/meoceangray.yaml new file mode 100644 index 00000000..ca7a5214 --- /dev/null +++ b/themes/meoceangray.yaml @@ -0,0 +1,49 @@ +name: "MeOceanGray" +source: + marketplace_id: "JaianeOliveira.meoceanthemes" + version: "0.0.5" + installs: 9230 + author: "Jaiane Oliveira" + repo: "https://github.com/JaianeOliveira/meocean-themes" + url: "https://marketplace.visualstudio.com/items?itemName=JaianeOliveira.meoceanthemes" +colors: + bg: "#1F1F1F" + fg: "#F1F1F1" + black: "#000000" + red: "#F14C4C" + green: "#F1F1F1" + yellow: "#E5E510" + blue: "#F1F1F1" + magenta: "#F1F1F1" + cyan: "#F1F1F1" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#F1F1F1" + brightYellow: "#F5F543" + brightBlue: "#F1F1F1" + brightMagenta: "#F1F1F1" + brightCyan: "#F1F1F1" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 96.7 + black: 0 + red: 37.6 + green: 96.7 + yellow: 84.6 + blue: 96.7 + magenta: 96.7 + cyan: 96.7 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 96.7 + brightYellow: 94.7 + brightBlue: 96.7 + brightMagenta: 96.7 + brightCyan: 96.7 + brightWhite: 89 diff --git a/themes/merlot.yaml b/themes/merlot.yaml new file mode 100644 index 00000000..eb86abb5 --- /dev/null +++ b/themes/merlot.yaml @@ -0,0 +1,49 @@ +name: "Merlot" +source: + marketplace_id: "yubiDev.yoobdev" + version: "0.0.7" + installs: 195 + author: "yoobdev" + repo: "https://github.com/kimkom369/VSCode-Theme-Pack" + url: "https://marketplace.visualstudio.com/items?itemName=yubiDev.yoobdev" +colors: + bg: "#A53860" + fg: "#F9DBBD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: 1 + contrast: + fg: 65.7 + black: 23.5 + red: 0 + green: 31.8 + yellow: 64.4 + blue: 0 + magenta: 8.6 + cyan: 26.4 + white: 68.8 + brightBlack: 0 + brightRed: 17.4 + brightGreen: 42.3 + brightYellow: 74.4 + brightBlue: 18.8 + brightMagenta: 24.2 + brightCyan: 34.2 + brightWhite: 68.8 diff --git a/themes/mesalvo-cortex.yaml b/themes/mesalvo-cortex.yaml new file mode 100644 index 00000000..a4e32307 --- /dev/null +++ b/themes/mesalvo-cortex.yaml @@ -0,0 +1,49 @@ +name: "Mesalvo Cortex" +source: + marketplace_id: "PolGubau.mesalvo" + version: "0.0.9" + installs: 64 + author: "PolGubau" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PolGubau.mesalvo" +colors: + bg: "#011011" + fg: "#EAFEFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 200 + contrast: + fg: 104.2 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/meshvoid-light.yaml b/themes/meshvoid-light.yaml new file mode 100644 index 00000000..93fe5ff9 --- /dev/null +++ b/themes/meshvoid-light.yaml @@ -0,0 +1,49 @@ +name: "MeshVoid_Light" +source: + marketplace_id: "MeshVoid.theme-meshvoid" + version: "1.3.1" + installs: 726 + author: "MeshVoid" + repo: "https://github.com/MeshVoid/VSC_MeshVoid_Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MeshVoid.theme-meshvoid" +colors: + bg: "#A7A7A7" + fg: "#000000" + black: "#000000" + red: "#B00000" + green: "#007300" + yellow: "#808400" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#FFFFFF" + brightBlack: "#5E5E5E" + brightRed: "#C24E4E" + brightGreen: "#00FF00" + brightYellow: "#F8FF00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#D7D5D5" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 56.6 + black: 56.6 + red: 33.4 + green: 30.2 + yellow: 17.9 + blue: 36.6 + magenta: 25.1 + cyan: 11.1 + white: 52.4 + brightBlack: 32.7 + brightRed: 22.3 + brightGreen: 31 + brightYellow: 46.2 + brightBlue: 36.6 + brightMagenta: 25.1 + brightCyan: 11.1 + brightWhite: 25.9 diff --git a/themes/meshvoid.yaml b/themes/meshvoid.yaml new file mode 100644 index 00000000..e3e42010 --- /dev/null +++ b/themes/meshvoid.yaml @@ -0,0 +1,49 @@ +name: "Meshvoid" +source: + marketplace_id: "MeshVoid.theme-meshvoid" + version: "1.3.1" + installs: 726 + author: "MeshVoid" + repo: "https://github.com/MeshVoid/VSC_MeshVoid_Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MeshVoid.theme-meshvoid" +colors: + bg: "#474747" + fg: "#E4E4E4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.3 + black: 12.5 + red: 15.6 + green: 41.9 + yellow: 74.5 + blue: 16.3 + magenta: 18.7 + cyan: 36.5 + white: 78.9 + brightBlack: 10.9 + brightRed: 27.5 + brightGreen: 52.4 + brightYellow: 84.5 + brightBlue: 28.9 + brightMagenta: 34.3 + brightCyan: 44.3 + brightWhite: 78.9 diff --git a/themes/metagrama.yaml b/themes/metagrama.yaml new file mode 100644 index 00000000..faca4680 --- /dev/null +++ b/themes/metagrama.yaml @@ -0,0 +1,49 @@ +name: "Metagrama" +source: + marketplace_id: "Zentropia.theme-metagrama" + version: "1.0.0" + installs: 320 + author: "Zentropia" + repo: "https://github.com/zentropia/vscode-theme-metagrama" + url: "https://marketplace.visualstudio.com/items?itemName=Zentropia.theme-metagrama" +colors: + bg: "#FFFAF4" + fg: "#282828" + black: "#282828" + red: "#9D0006" + green: "#79740E" + yellow: "#B57614" + blue: "#076678" + magenta: "#8F3F71" + cyan: "#427B58" + white: "#928374" + brightBlack: "#7C6F64" + brightRed: "#CC241D" + brightGreen: "#98971A" + brightYellow: "#D79921" + brightBlue: "#458588" + brightMagenta: "#B16286" + brightCyan: "#689D6A" + brightWhite: "#A89984" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99 + black: 99 + red: 84.4 + green: 71 + yellow: 62.4 + blue: 79.6 + magenta: 80.1 + cyan: 71.8 + white: 61.7 + brightBlack: 71.2 + brightRed: 72.8 + brightGreen: 55.2 + brightYellow: 45.9 + brightBlue: 66.5 + brightMagenta: 66.3 + brightCyan: 56.2 + brightWhite: 51 diff --git a/themes/meteora.yaml b/themes/meteora.yaml new file mode 100644 index 00000000..61bd6665 --- /dev/null +++ b/themes/meteora.yaml @@ -0,0 +1,49 @@ +name: "Meteora" +source: + marketplace_id: "pjmiravalle.meteora" + version: "0.0.1" + installs: 848 + author: "Patrick Miravalle" + repo: "https://github.com/pjmiravalle/meteora-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pjmiravalle.meteora" +colors: + bg: "#15151B" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#FFAC7C" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#B4BCDE" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#FFAC7C" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#B4BCDE" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 60 + black: 0 + red: 50 + green: 72.9 + yellow: 67.5 + blue: 51.8 + magenta: 55.7 + cyan: 71.2 + white: 66.1 + brightBlack: 0 + brightRed: 50 + brightGreen: 72.9 + brightYellow: 67.5 + brightBlue: 51.8 + brightMagenta: 55.7 + brightCyan: 71.2 + brightWhite: 66.1 diff --git a/themes/metropolis-light.yaml b/themes/metropolis-light.yaml new file mode 100644 index 00000000..b7383c85 --- /dev/null +++ b/themes/metropolis-light.yaml @@ -0,0 +1,49 @@ +name: "Metropolis Light" +source: + marketplace_id: "FabianDeckmann.metropolis" + version: "1.0.0" + installs: 235 + author: "Fabian Deckmann" + repo: "https://github.com/ffjaervik/metropolis-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=FabianDeckmann.metropolis" +colors: + bg: "#F5F7FA" + fg: "#2D3748" + black: "#2D3748" + red: "#E03428" + green: "#1E8E25" + yellow: "#C49A1A" + blue: "#5A64D8" + magenta: "#B840D8" + cyan: "#0E9882" + white: "#F5F7FA" + brightBlack: "#5A6872" + brightRed: "#E03428" + brightGreen: "#1E8E25" + brightYellow: "#C49A1A" + brightBlue: "#717EFA" + brightMagenta: "#B840D8" + brightCyan: "#0E9882" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 92.5 + black: 92.5 + red: 64.5 + green: 63.9 + yellow: 46.2 + blue: 69 + magenta: 64.7 + cyan: 58.2 + white: 0 + brightBlack: 73.8 + brightRed: 64.5 + brightGreen: 63.9 + brightYellow: 46.2 + brightBlue: 57 + brightMagenta: 64.7 + brightCyan: 58.2 + brightWhite: 0 diff --git a/themes/metropolis.yaml b/themes/metropolis.yaml new file mode 100644 index 00000000..69de16a0 --- /dev/null +++ b/themes/metropolis.yaml @@ -0,0 +1,49 @@ +name: "Metropolis" +source: + marketplace_id: "FabianDeckmann.metropolis" + version: "1.0.0" + installs: 235 + author: "Fabian Deckmann" + repo: "https://github.com/ffjaervik/metropolis-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=FabianDeckmann.metropolis" +colors: + bg: "#081F2C" + fg: "#3CDBC0" + black: "#2B363C" + red: "#FC4235" + green: "#2BCF33" + yellow: "#FC4235" + blue: "#717FFA" + magenta: "#D857FF" + cyan: "#3CDBC0" + white: "#CAD2D6" + brightBlack: "#7F848E" + brightRed: "#FA4235" + brightGreen: "#2BCF33" + brightYellow: "#F1BE48" + brightBlue: "#8F99F8" + brightMagenta: "#D857FF" + brightCyan: "#03FAD1" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 237 + contrast: + fg: 69.9 + black: 0 + red: 38.7 + green: 60.4 + yellow: 38.7 + blue: 38.3 + magenta: 42.6 + cyan: 69.9 + white: 76.7 + brightBlack: 34.8 + brightRed: 38.2 + brightGreen: 60.4 + brightYellow: 70.1 + brightBlue: 49.5 + brightMagenta: 42.6 + brightCyan: 85.6 + brightWhite: 82.3 diff --git a/themes/mgldvd-theme.yaml b/themes/mgldvd-theme.yaml new file mode 100644 index 00000000..226aaff7 --- /dev/null +++ b/themes/mgldvd-theme.yaml @@ -0,0 +1,49 @@ +name: "Mgldvd Theme" +source: + marketplace_id: "Mgldvd.mgldvd" + version: "1.4.8" + installs: 63 + author: "Mgldvd" + repo: "https://github.com/mgldvd/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Mgldvd.mgldvd" +colors: + bg: "#F0F0F0" + fg: "#6E6A86" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#ABA8C0" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 66.6 + black: 97.1 + red: 65.1 + green: 40.3 + yellow: 49 + blue: 77.1 + magenta: 65.6 + cyan: 51.7 + white: 77 + brightBlack: 69.8 + brightRed: 65.1 + brightGreen: 32 + brightYellow: 32 + brightBlue: 77.1 + brightMagenta: 65.6 + brightCyan: 51.7 + brightWhite: 36.6 diff --git a/themes/mh-theme.yaml b/themes/mh-theme.yaml new file mode 100644 index 00000000..55b2d1d5 --- /dev/null +++ b/themes/mh-theme.yaml @@ -0,0 +1,49 @@ +name: "MH Theme" +source: + marketplace_id: "PanaMiguel.mh-theme" + version: "0.1.1" + installs: 828 + author: "Pana Miguel" + repo: "https://github.com/MHP24/vsc-mh-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PanaMiguel.mh-theme" +colors: + bg: "#292D3E" + fg: "#D4DCE0" + black: "#2F333A" + red: "#E26B75" + green: "#A3CF83" + yellow: "#E7C483" + blue: "#5389F7" + magenta: "#BC72D3" + cyan: "#59BDCA" + white: "#D1D5DD" + brightBlack: "#757981" + brightRed: "#F84F4F" + brightGreen: "#A0CC81" + brightYellow: "#EBC784" + brightBlue: "#528CFF" + brightMagenta: "#84019E" + brightCyan: "#5DBBC7" + brightWhite: "#DCE0E7" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 79.9 + black: 0 + red: 38.6 + green: 65.3 + yellow: 69.1 + blue: 36.6 + magenta: 37.7 + cyan: 54.5 + white: 76.3 + brightBlack: 26.8 + brightRed: 37.1 + brightGreen: 63.6 + brightYellow: 70.9 + brightBlue: 38.2 + brightMagenta: 10.5 + brightCyan: 53.7 + brightWhite: 83.1 diff --git a/themes/mhfeizi.yaml b/themes/mhfeizi.yaml new file mode 100644 index 00000000..e324894d --- /dev/null +++ b/themes/mhfeizi.yaml @@ -0,0 +1,49 @@ +name: "mhfeizi" +source: + marketplace_id: "mhfeizi.mhfeizi-vscode-theme" + version: "0.0.7" + installs: 201 + author: "mhfeizi" + repo: "https://github.com/mhfeizi/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mhfeizi.mhfeizi-vscode-theme" +colors: + bg: "#0A0E0F" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#05F605" + yellow: "#FFFF00" + blue: "#025EE7" + magenta: "#CE03CE" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#696868" + brightRed: "#FF0000" + brightGreen: "#05F605" + brightYellow: "#FFFF00" + brightBlue: "#025EE7" + brightMagenta: "#CE03CE" + brightCyan: "#00FFFF" + brightWhite: "#A3A3A3" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.6 + black: 0 + red: 37.3 + green: 81.4 + yellow: 102.4 + blue: 24.6 + magenta: 31.7 + cyan: 91.9 + white: 107.6 + brightBlack: 23.7 + brightRed: 37.3 + brightGreen: 81.4 + brightYellow: 102.4 + brightBlue: 24.6 + brightMagenta: 31.7 + brightCyan: 91.9 + brightWhite: 52.2 diff --git a/themes/mi4uokai.yaml b/themes/mi4uokai.yaml new file mode 100644 index 00000000..f3715057 --- /dev/null +++ b/themes/mi4uokai.yaml @@ -0,0 +1,49 @@ +name: "mi4uokai" +source: + marketplace_id: "Michami4uuLipiski.mi4uokai" + version: "0.0.15" + installs: 96 + author: "Michał mi4uu Lipiński" + repo: "https://github.com/mi4uu/mi4uokai-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Michami4uuLipiski.mi4uokai" +colors: + bg: "#273136" + fg: "#F2FFFC" + black: "#3A4449" + red: "#FF6D7E" + green: "#A2E57B" + yellow: "#FFED72" + blue: "#FFB270" + magenta: "#916DE4" + cyan: "#71D2F0" + white: "#F2FFFC" + brightBlack: "#6B7678" + brightRed: "#FF6D7E" + brightGreen: "#A2E57B" + brightYellow: "#FFED72" + brightBlue: "#FFB270" + brightMagenta: "#916DE4" + brightCyan: "#71D2F0" + brightWhite: "#F2FFFC" +meta: + mode: "dark" + accent: "orange" + hue: 230 + contrast: + fg: 100.9 + black: 0 + red: 45 + green: 75 + yellow: 89.9 + blue: 65.3 + magenta: 31.3 + cyan: 66.8 + white: 100.9 + brightBlack: 24.2 + brightRed: 45 + brightGreen: 75 + brightYellow: 89.9 + brightBlue: 65.3 + brightMagenta: 31.3 + brightCyan: 66.8 + brightWhite: 100.9 diff --git a/themes/miami-nights.yaml b/themes/miami-nights.yaml new file mode 100644 index 00000000..3e823cbd --- /dev/null +++ b/themes/miami-nights.yaml @@ -0,0 +1,49 @@ +name: "miami-nights" +source: + marketplace_id: "hater.miami-nights" + version: "0.0.2" + installs: 71 + author: "hater" + repo: "https://github.com/Kondor777200/miami-nights" + url: "https://marketplace.visualstudio.com/items?itemName=hater.miami-nights" +colors: + bg: "#0F0F10" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CACACA" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.5 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 74.1 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 107.5 diff --git a/themes/miami-vice.yaml b/themes/miami-vice.yaml new file mode 100644 index 00000000..71af2eab --- /dev/null +++ b/themes/miami-vice.yaml @@ -0,0 +1,49 @@ +name: "Miami Vice" +source: + marketplace_id: "Noqs.darkstack" + version: "1.1.1" + installs: 2842 + author: "Noqs" + repo: "https://github.com/NoxQ/Darkstack" + url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" +colors: + bg: "#101719" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFFE9F" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#1BE7FF" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#F899E9" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 217 + contrast: + fg: 79.6 + black: 0 + red: 26.8 + green: 53.1 + yellow: 103 + blue: 27.5 + magenta: 29.9 + cyan: 79.2 + white: 79.6 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 64.1 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/miami-wind.yaml b/themes/miami-wind.yaml new file mode 100644 index 00000000..e3ea36b9 --- /dev/null +++ b/themes/miami-wind.yaml @@ -0,0 +1,49 @@ +name: "miami-wind" +source: + marketplace_id: "hanakin.miami-wind" + version: "0.4.0" + installs: 93 + author: "hanakin" + repo: "https://github.com/hanakin/miami-wind-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=hanakin.miami-wind" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#11111B" + red: "#F87171" + green: "#34D399" + yellow: "#FEF08A" + blue: "#818CF8" + magenta: "#F472B6" + cyan: "#22D3EE" + white: "#A6ADC8" + brightBlack: "#585B70" + brightRed: "#F43F5E" + brightGreen: "#4ADE80" + brightYellow: "#FDE047" + brightBlue: "#2563EB" + brightMagenta: "#EC4899" + brightCyan: "#38BDF8" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "orange" + hue: 284 + contrast: + fg: 80 + black: 0 + red: 47 + green: 64.1 + yellow: 94.6 + blue: 43.4 + magenta: 48.8 + cyan: 67.5 + white: 56.2 + brightBlack: 16.9 + brightRed: 36.8 + brightGreen: 69.4 + brightYellow: 86.1 + brightBlue: 24.8 + brightMagenta: 37.9 + brightCyan: 58.6 + brightWhite: 100.9 diff --git a/themes/miasma-color-theme.yaml b/themes/miasma-color-theme.yaml new file mode 100644 index 00000000..315fd7b8 --- /dev/null +++ b/themes/miasma-color-theme.yaml @@ -0,0 +1,49 @@ +name: "miasma-color-theme" +source: + marketplace_id: "wavebeem.miasma-vscode" + version: "0.2.0" + installs: 1166 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/miasma-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.miasma-vscode" +colors: + bg: "#12362A" + fg: "#A8F0D8" + black: "#295647" + red: "#F28C9D" + green: "#BEF76E" + yellow: "#F09E75" + blue: "#86ACF9" + magenta: "#E18CF2" + cyan: "#6EF7F7" + white: "#EDE3DE" + brightBlack: "#295647" + brightRed: "#F28C9D" + brightGreen: "#BEF76E" + brightYellow: "#F09E75" + brightBlue: "#86ACF9" + brightMagenta: "#E18CF2" + brightCyan: "#6EF7F7" + brightWhite: "#EDE3DE" +meta: + mode: "dark" + accent: "green" + hue: 168 + contrast: + fg: 83.6 + black: 8.3 + red: 51.2 + green: 86.2 + yellow: 55.4 + blue: 52.4 + magenta: 52.3 + cyan: 84.6 + white: 85.7 + brightBlack: 8.3 + brightRed: 51.2 + brightGreen: 86.2 + brightYellow: 55.4 + brightBlue: 52.4 + brightMagenta: 52.3 + brightCyan: 84.6 + brightWhite: 85.7 diff --git a/themes/mibtema.yaml b/themes/mibtema.yaml new file mode 100644 index 00000000..b26736f9 --- /dev/null +++ b/themes/mibtema.yaml @@ -0,0 +1,49 @@ +name: "MibTema" +source: + marketplace_id: "MibTema.mib-tema" + version: "0.0.45" + installs: 989 + author: "Mib Tema" + repo: "https://github.com/sidicastro/mib-tema" + url: "https://marketplace.visualstudio.com/items?itemName=MibTema.mib-tema" +colors: + bg: "#2A2D3B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 75.9 + black: 0 + red: 23.1 + green: 49.4 + yellow: 82 + blue: 23.8 + magenta: 26.2 + cyan: 44 + white: 86.4 + brightBlack: 18.5 + brightRed: 35 + brightGreen: 60 + brightYellow: 92.1 + brightBlue: 36.4 + brightMagenta: 41.8 + brightCyan: 51.8 + brightWhite: 86.4 diff --git a/themes/micky-dark-black.yaml b/themes/micky-dark-black.yaml new file mode 100644 index 00000000..f9fa794f --- /dev/null +++ b/themes/micky-dark-black.yaml @@ -0,0 +1,49 @@ +name: "micky-dark-black" +source: + marketplace_id: "Micky.micky-dark" + version: "0.2.0" + installs: 267 + author: "Micky" + repo: "https://github.com/meetusadadiya/micky-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Micky.micky-dark" +colors: + bg: "#000000" + fg: "#B3B1AD" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 60.2 + black: 0 + red: 45.1 + green: 55.2 + yellow: 67.6 + blue: 61.6 + magenta: 93 + cyan: 78.9 + white: 72.7 + brightBlack: 23.9 + brightRed: 47.6 + brightGreen: 76.9 + brightYellow: 70.6 + brightBlue: 64.3 + brightMagenta: 96.2 + brightCyan: 81.9 + brightWhite: 107.9 diff --git a/themes/micky-dark-lite-black.yaml b/themes/micky-dark-lite-black.yaml new file mode 100644 index 00000000..18c388c3 --- /dev/null +++ b/themes/micky-dark-lite-black.yaml @@ -0,0 +1,49 @@ +name: "micky-dark-lite-black" +source: + marketplace_id: "Micky.micky-dark" + version: "0.2.0" + installs: 267 + author: "Micky" + repo: "https://github.com/meetusadadiya/micky-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Micky.micky-dark" +colors: + bg: "#202020" + fg: "#B3B1AD" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 58.1 + black: 0 + red: 42.9 + green: 53.1 + yellow: 65.5 + blue: 59.5 + magenta: 90.9 + cyan: 76.8 + white: 70.6 + brightBlack: 21.8 + brightRed: 45.5 + brightGreen: 74.8 + brightYellow: 68.5 + brightBlue: 62.2 + brightMagenta: 94.1 + brightCyan: 79.8 + brightWhite: 105.8 diff --git a/themes/micky-dark-lite.yaml b/themes/micky-dark-lite.yaml new file mode 100644 index 00000000..ec49625a --- /dev/null +++ b/themes/micky-dark-lite.yaml @@ -0,0 +1,49 @@ +name: "micky-dark-lite" +source: + marketplace_id: "Micky.micky-dark" + version: "0.2.0" + installs: 267 + author: "Micky" + repo: "https://github.com/meetusadadiya/micky-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Micky.micky-dark" +colors: + bg: "#1A1C25" + fg: "#B3B1AD" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 275 + contrast: + fg: 58.5 + black: 0 + red: 43.4 + green: 53.6 + yellow: 66 + blue: 60 + magenta: 91.4 + cyan: 77.3 + white: 71.1 + brightBlack: 22.3 + brightRed: 46 + brightGreen: 75.3 + brightYellow: 69 + brightBlue: 62.7 + brightMagenta: 94.6 + brightCyan: 80.2 + brightWhite: 106.3 diff --git a/themes/midas-touch-light.yaml b/themes/midas-touch-light.yaml new file mode 100644 index 00000000..2a679958 --- /dev/null +++ b/themes/midas-touch-light.yaml @@ -0,0 +1,49 @@ +name: "Midas Touch Light" +source: + marketplace_id: "vshakitskiy.midas-touch" + version: "1.0.0" + installs: 70 + author: "vshakitskiy" + repo: "https://github.com/vshakitskiy/midas_touch" + url: "https://marketplace.visualstudio.com/items?itemName=vshakitskiy.midas-touch" +colors: + bg: "#FFE8ED" + fg: "#803947" + black: "#BCC0CC" + red: "#D93868" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#EA76CB" + cyan: "#179299" + white: "#4C4F69" + brightBlack: "#A6ADC8" + brightRed: "#E56A8A" + brightGreen: "#86B379" + brightYellow: "#E8A958" + brightBlue: "#6491F0" + brightMagenta: "#EFA3D5" + brightCyan: "#61B8BD" + brightWhite: "#EFF1F5" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 77.2 + black: 23.6 + red: 59.2 + green: 50.1 + yellow: 40.3 + blue: 62.8 + magenta: 40.6 + cyan: 54.2 + white: 77.3 + brightBlack: 33.5 + brightRed: 47.1 + brightGreen: 36.9 + brightYellow: 29.4 + brightBlue: 46.9 + brightMagenta: 26.5 + brightCyan: 35 + brightWhite: 0 diff --git a/themes/midas-touch.yaml b/themes/midas-touch.yaml new file mode 100644 index 00000000..3b13de10 --- /dev/null +++ b/themes/midas-touch.yaml @@ -0,0 +1,49 @@ +name: "Midas Touch" +source: + marketplace_id: "vshakitskiy.midas-touch" + version: "1.0.0" + installs: 70 + author: "vshakitskiy" + repo: "https://github.com/vshakitskiy/midas_touch" + url: "https://marketplace.visualstudio.com/items?itemName=vshakitskiy.midas-touch" +colors: + bg: "#101010" + fg: "#FFE3EB" + black: "#181818" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#CDD6F4" + brightBlack: "#6C7086" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#94E2D5" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 93.7 + black: 0 + red: 56.3 + green: 80 + yellow: 90 + blue: 60.7 + magenta: 78.3 + cyan: 79.9 + white: 81.6 + brightBlack: 27.4 + brightRed: 56.3 + brightGreen: 80 + brightYellow: 90 + brightBlue: 60.7 + brightMagenta: 78.3 + brightCyan: 79.9 + brightWhite: 69.7 diff --git a/themes/midcentury.yaml b/themes/midcentury.yaml new file mode 100644 index 00000000..ca038565 --- /dev/null +++ b/themes/midcentury.yaml @@ -0,0 +1,49 @@ +name: "Midcentury" +source: + marketplace_id: "Atompowered.midcentury" + version: "0.0.1" + installs: 49 + author: "Adam Schuster" + repo: "https://github.com/atomicguy/midcentury" + url: "https://marketplace.visualstudio.com/items?itemName=Atompowered.midcentury" +colors: + bg: "#321513" + fg: "#FBE5C6" + black: "#321513" + red: "#DB72AE" + green: "#589ACE" + yellow: "#D55D5C" + blue: "#308E95" + magenta: "#63CCE3" + cyan: "#43AC75" + white: "#FBE5C6" + brightBlack: "#A48B79" + brightRed: "#DB72AE" + brightGreen: "#589ACE" + brightYellow: "#D55D5C" + brightBlue: "#308E95" + brightMagenta: "#63CCE3" + brightCyan: "#43AC75" + brightWhite: "#FDFBEC" +meta: + mode: "dark" + accent: "orange" + hue: 25 + contrast: + fg: 91 + black: 0 + red: 43.7 + green: 42.9 + yellow: 35 + blue: 33.9 + magenta: 65.7 + cyan: 45.7 + white: 91 + brightBlack: 40.5 + brightRed: 43.7 + brightGreen: 42.9 + brightYellow: 35 + brightBlue: 33.9 + brightMagenta: 65.7 + brightCyan: 45.7 + brightWhite: 102.9 diff --git a/themes/midight-sun.yaml b/themes/midight-sun.yaml new file mode 100644 index 00000000..48e3c29e --- /dev/null +++ b/themes/midight-sun.yaml @@ -0,0 +1,49 @@ +name: "Midight Sun" +source: + marketplace_id: "PerfectNkosi.midnight-sun" + version: "0.0.1" + installs: 408 + author: "Perfect Nkosi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PerfectNkosi.midnight-sun" +colors: + bg: "#031622" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 238 + contrast: + fg: 79.6 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.5 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/midnight-blueprint.yaml b/themes/midnight-blueprint.yaml new file mode 100644 index 00000000..b3a57079 --- /dev/null +++ b/themes/midnight-blueprint.yaml @@ -0,0 +1,49 @@ +name: "Midnight Blueprint" +source: + marketplace_id: "GaganGoswami.midnight-blueprint" + version: "1.0.0" + installs: 64 + author: "Gagan Goswami" + repo: "https://github.com/GaganGoswami/midnight-blueprint-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GaganGoswami.midnight-blueprint" +colors: + bg: "#1A1F2E" + fg: "#9DB7D6" + black: "#1A1F2E" + red: "#FF5370" + green: "#C3E88D" + yellow: "#F9E79F" + blue: "#69B7FF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#9DB7D6" + brightBlack: "#4A5568" + brightRed: "#FF7A85" + brightGreen: "#D5F4A7" + brightYellow: "#FCECB8" + brightBlue: "#82C8FF" + brightMagenta: "#D4B0F0" + brightCyan: "#A3E7FF" + brightWhite: "#B8CBE6" +meta: + mode: "dark" + accent: "red" + hue: 270 + contrast: + fg: 60 + black: 0 + red: 42.6 + green: 83.1 + yellow: 90.2 + blue: 58.4 + magenta: 52.7 + cyan: 77.2 + white: 60 + brightBlack: 13.9 + brightRed: 51.3 + brightGreen: 91.7 + brightYellow: 93.7 + brightBlue: 67.2 + brightMagenta: 65.3 + brightCyan: 83.9 + brightWhite: 72 diff --git a/themes/midnight-breeze.yaml b/themes/midnight-breeze.yaml new file mode 100644 index 00000000..8d0586ed --- /dev/null +++ b/themes/midnight-breeze.yaml @@ -0,0 +1,49 @@ +name: "Midnight Breeze" +source: + marketplace_id: "leandroaps.vscode-theme-midnight-breeze" + version: "4.4.2" + installs: 99 + author: "Leandro Aparecido de Siqueira" + repo: "https://github.com/leandroaps/midnight-breeze" + url: "https://marketplace.visualstudio.com/items?itemName=leandroaps.vscode-theme-midnight-breeze" +colors: + bg: "#1A1C2C" + fg: "#D6DEEB" + black: "#1A1C2C" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCC00" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#D6DEEB" + brightBlack: "#5C6370" + brightRed: "#FF869A" + brightGreen: "#C3E88D" + brightYellow: "#FFCC00" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 278 + contrast: + fg: 84.5 + black: 0 + red: 42.9 + green: 83.5 + yellow: 77.9 + blue: 55.2 + magenta: 53 + cyan: 77.5 + white: 84.5 + brightBlack: 19.9 + brightRed: 55.4 + brightGreen: 83.5 + brightYellow: 77.9 + brightBlue: 55.2 + brightMagenta: 53 + brightCyan: 77.5 + brightWhite: 106.1 diff --git a/themes/midnight-candy.yaml b/themes/midnight-candy.yaml new file mode 100644 index 00000000..4970f433 --- /dev/null +++ b/themes/midnight-candy.yaml @@ -0,0 +1,49 @@ +name: "Midnight Candy" +source: + marketplace_id: "RavGoundar.midnight-candy" + version: "1.1.1" + installs: 148 + author: "Rav Goundar" + repo: "https://github.com/ravgoundar/midnight_candy" + url: "https://marketplace.visualstudio.com/items?itemName=RavGoundar.midnight-candy" +colors: + bg: "#0D1017" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 267 + contrast: + fg: 107.4 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/midnight-city.yaml b/themes/midnight-city.yaml new file mode 100644 index 00000000..27f0e1f4 --- /dev/null +++ b/themes/midnight-city.yaml @@ -0,0 +1,49 @@ +name: "Midnight City" +source: + marketplace_id: "dillonchanis.midnight-city" + version: "0.6.0" + installs: 44289 + author: "Dillon Chanis" + repo: "https://github.com/dillonchanis/theme-midnight-city" + url: "https://marketplace.visualstudio.com/items?itemName=dillonchanis.midnight-city" +colors: + bg: "#0D011E" + fg: "#FFFFD8" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 300 + contrast: + fg: 106 + black: 0 + red: 44.2 + green: 85.7 + yellow: 99.4 + blue: 54.4 + magenta: 55.4 + cyan: 84.8 + white: 102.8 + brightBlack: 28.8 + brightRed: 49.6 + brightGreen: 89.8 + brightYellow: 104.3 + brightBlue: 66.9 + brightMagenta: 63.4 + brightCyan: 97.6 + brightWhite: 107.7 diff --git a/themes/midnight-color-theme.yaml b/themes/midnight-color-theme.yaml new file mode 100644 index 00000000..2807b443 --- /dev/null +++ b/themes/midnight-color-theme.yaml @@ -0,0 +1,49 @@ +name: "midnight-color-theme" +source: + marketplace_id: "wavebeem.theme-unoduetre" + version: "5.11.1" + installs: 4290 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/vscode-theme-unoduetre" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" +colors: + bg: "#2C1F47" + fg: "#DFD1FA" + black: "#333333" + red: "#EB7A7E" + green: "#88DD9F" + yellow: "#EDC3A6" + blue: "#AC9DF1" + magenta: "#ED9CE3" + cyan: "#83E5EC" + white: "#EEEBF4" + brightBlack: "#333333" + brightRed: "#EB7A7E" + brightGreen: "#88DD9F" + brightYellow: "#EDC3A6" + brightBlue: "#AC9DF1" + brightMagenta: "#ED9CE3" + brightCyan: "#83E5EC" + brightWhite: "#EEEBF4" +meta: + mode: "dark" + accent: "orange" + hue: 296 + contrast: + fg: 79.3 + black: 0 + red: 45.8 + green: 71.7 + yellow: 71.9 + blue: 52.1 + magenta: 60.4 + cyan: 78.3 + white: 92.4 + brightBlack: 0 + brightRed: 45.8 + brightGreen: 71.7 + brightYellow: 71.9 + brightBlue: 52.1 + brightMagenta: 60.4 + brightCyan: 78.3 + brightWhite: 92.4 diff --git a/themes/midnight-darker.yaml b/themes/midnight-darker.yaml new file mode 100644 index 00000000..ff7a5468 --- /dev/null +++ b/themes/midnight-darker.yaml @@ -0,0 +1,49 @@ +name: "Midnight Darker" +source: + marketplace_id: "thewerthon.thewerthon-midnight" + version: "1.0.0" + installs: 78 + author: "Éwerton Ferreira" + repo: "https://github.com/thewerthon/midnight" + url: "https://marketplace.visualstudio.com/items?itemName=thewerthon.thewerthon-midnight" +colors: + bg: "#1A1F26" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 58.5 + black: 7.9 + red: 35.8 + green: 59.4 + yellow: 47.7 + blue: 48.7 + magenta: 38.1 + cyan: 51.6 + white: 82.1 + brightBlack: 14.5 + brightRed: 45.2 + brightGreen: 75.9 + brightYellow: 60.3 + brightBlue: 62.8 + brightMagenta: 49.3 + brightCyan: 66.9 + brightWhite: 89.7 diff --git a/themes/midnight-dracula.yaml b/themes/midnight-dracula.yaml new file mode 100644 index 00000000..644ea739 --- /dev/null +++ b/themes/midnight-dracula.yaml @@ -0,0 +1,49 @@ +name: "Midnight Dracula" +source: + marketplace_id: "jvbs.midnight-dracula" + version: "0.0.2" + installs: 1252 + author: "jvbs" + repo: "https://github.com/jvbs/midnight-dracula" + url: "https://marketplace.visualstudio.com/items?itemName=jvbs.midnight-dracula" +colors: + bg: "#0B0D0F" + fg: "#F8F8F2" + black: "#131A20" + red: "#FF5555" + green: "#8AFF80" + yellow: "#FFFF80" + blue: "#9580FF" + magenta: "#FF80BF" + cyan: "#80FFEA" + white: "#F8F8F2" + brightBlack: "#5D758E" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 102.7 + black: 0 + red: 44.1 + green: 91.2 + yellow: 103.5 + blue: 44 + magenta: 56.8 + cyan: 94 + white: 102.7 + brightBlack: 28.3 + brightRed: 49.6 + brightGreen: 89.8 + brightYellow: 104.3 + brightBlue: 66.9 + brightMagenta: 63.4 + brightCyan: 97.5 + brightWhite: 107.6 diff --git a/themes/midnight-embers.yaml b/themes/midnight-embers.yaml new file mode 100644 index 00000000..a475c09c --- /dev/null +++ b/themes/midnight-embers.yaml @@ -0,0 +1,49 @@ +name: "Midnight Embers" +source: + marketplace_id: "ShadowSlayer.midnightembers" + version: "1.0.0" + installs: 158 + author: "ShadowSlayer" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ShadowSlayer.midnightembers" +colors: + bg: "#1B1D20" + fg: "#943232" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C4C4C4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFAFA" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 14.8 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 69.3 + brightBlack: 21.4 + brightRed: 37.9 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 103.6 diff --git a/themes/midnight-fusion.yaml b/themes/midnight-fusion.yaml new file mode 100644 index 00000000..b8a377a6 --- /dev/null +++ b/themes/midnight-fusion.yaml @@ -0,0 +1,49 @@ +name: "midnight-fusion" +source: + marketplace_id: "Abdulrahmansde.midnight-fusion" + version: "0.0.1" + installs: 78 + author: "Abdulrahman" + repo: "https://github.com/abdulrehman-codecrafter/Vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abdulrahmansde.midnight-fusion" +colors: + bg: "#030C1B" + fg: "#E06C75" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 42.8 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/midnight-gambler.yaml b/themes/midnight-gambler.yaml new file mode 100644 index 00000000..21634e7a --- /dev/null +++ b/themes/midnight-gambler.yaml @@ -0,0 +1,49 @@ +name: "Midnight Gambler" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#0D0D0D" + fg: "#F8F8FF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 103.3 + black: 0 + red: 37.3 + green: 86.2 + yellow: 102.4 + blue: 16 + magenta: 45.9 + cyan: 91.9 + white: 107.6 + brightBlack: 0 + brightRed: 37.3 + brightGreen: 86.2 + brightYellow: 102.4 + brightBlue: 16 + brightMagenta: 45.9 + brightCyan: 91.9 + brightWhite: 107.6 diff --git a/themes/midnight-grove.yaml b/themes/midnight-grove.yaml new file mode 100644 index 00000000..e2e374a2 --- /dev/null +++ b/themes/midnight-grove.yaml @@ -0,0 +1,49 @@ +name: "Midnight Grove" +source: + marketplace_id: "lela.midnight-grove" + version: "1.0.1" + installs: 12 + author: "lela" + repo: "https://github.com/lelamanolio/midnight-grove-vstheme" + url: "https://marketplace.visualstudio.com/items?itemName=lela.midnight-grove" +colors: + bg: "#07130F" + fg: "#D6DEEB" + black: "#07130F" + red: "#EC5F67" + green: "#22DA6E" + yellow: "#FFEB95" + blue: "#82AAFF" + magenta: "#6B5BD6" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#FF6B7A" + brightGreen: "#22DA6E" + brightYellow: "#FAD430" + brightBlue: "#82AAFF" + brightMagenta: "#7A6CF0" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 171 + contrast: + fg: 85.7 + black: 0 + red: 41.8 + green: 67.8 + yellow: 94.2 + blue: 56.4 + magenta: 26.2 + cyan: 60.2 + white: 107.4 + brightBlack: 16.1 + brightRed: 49 + brightGreen: 67.8 + brightYellow: 81.7 + brightBlue: 56.4 + brightMagenta: 34 + brightCyan: 74.5 + brightWhite: 107.4 diff --git a/themes/midnight-guest.yaml b/themes/midnight-guest.yaml new file mode 100644 index 00000000..99339d5b --- /dev/null +++ b/themes/midnight-guest.yaml @@ -0,0 +1,49 @@ +name: "Midnight Guest" +source: + marketplace_id: "flover.fromis-day" + version: "0.0.5" + installs: 198 + author: "flover" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=flover.fromis-day" +colors: + bg: "#2D2B55" + fg: "#FFFFFF" + black: "#000000" + red: "#EC3A37" + green: "#3AD900" + yellow: "#FBF573" + blue: "#7857FE" + magenta: "#FF2C70" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#5C5C61" + brightRed: "#EC3A37" + brightGreen: "#3AD900" + brightYellow: "#FBF573" + brightBlue: "#6943FF" + brightMagenta: "#E297B0" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 283 + contrast: + fg: 102.7 + black: 0 + red: 30.6 + green: 62.1 + yellow: 92.9 + blue: 25.4 + magenta: 34.9 + cyan: 88.6 + white: 102.7 + brightBlack: 13.8 + brightRed: 30.6 + brightGreen: 62.1 + brightYellow: 92.9 + brightBlue: 20.3 + brightMagenta: 52.5 + brightCyan: 88.6 + brightWhite: 102.7 diff --git a/themes/midnight-lake.yaml b/themes/midnight-lake.yaml new file mode 100644 index 00000000..07eddce8 --- /dev/null +++ b/themes/midnight-lake.yaml @@ -0,0 +1,49 @@ +name: "Midnight Lake" +source: + marketplace_id: "Chiramium.midnightlake" + version: "0.1.0" + installs: 0 + author: "Chiramium" + repo: "https://github.com/Chiramium/Midnight-Lake" + url: "https://marketplace.visualstudio.com/items?itemName=Chiramium.midnightlake" +colors: + bg: "#1E1E1E" + fg: "#DBDBDB" + black: "#000000" + red: "#D92525" + green: "#5DB843" + yellow: "#E0BB2A" + blue: "#2E87E6" + magenta: "#CD4BE0" + cyan: "#2EB1BC" + white: "#DBDBDB" + brightBlack: "#666666" + brightRed: "#D55252" + brightGreen: "#79B868" + brightYellow: "#E0C351" + brightBlue: "#589EE8" + brightMagenta: "#D87AE6" + brightCyan: "#5DCAD3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 82.9 + black: 0 + red: 27.5 + green: 51.4 + yellow: 65.9 + blue: 36 + magenta: 36.2 + cyan: 50 + white: 82.9 + brightBlack: 21.2 + brightRed: 32.7 + brightGreen: 53.7 + brightYellow: 69.5 + brightBlue: 46.2 + brightMagenta: 48.4 + brightCyan: 63.8 + brightWhite: 106 diff --git a/themes/midnight-marina.yaml b/themes/midnight-marina.yaml new file mode 100644 index 00000000..ce57cd0c --- /dev/null +++ b/themes/midnight-marina.yaml @@ -0,0 +1,49 @@ +name: "Midnight Marina" +source: + marketplace_id: "Muddyblack.midnight-marina" + version: "0.1.2" + installs: 125 + author: "Muddyblack" + repo: "https://github.com/Muddyblack/midnight-marina-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Muddyblack.midnight-marina" +colors: + bg: "#03233A" + fg: "#CBE0F0" + black: "#214969" + red: "#E52E2E" + green: "#44FFB1" + yellow: "#FFE073" + blue: "#0FC5ED" + magenta: "#AA82FF" + cyan: "#24EAF7" + white: "#CBE0F0" + brightBlack: "#2A5A7A" + brightRed: "#FF4444" + brightGreen: "#55FFCC" + brightYellow: "#FFEE88" + brightBlue: "#22D4FF" + brightMagenta: "#B388FF" + brightCyan: "#33FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 244 + contrast: + fg: 83.5 + black: 8.2 + red: 30.4 + green: 87.1 + yellow: 86.6 + blue: 60.5 + magenta: 44.8 + cyan: 78.7 + white: 83.5 + brightBlack: 14.1 + brightRed: 39.1 + brightGreen: 88.5 + brightYellow: 93.3 + brightBlue: 68.6 + brightMagenta: 47.8 + brightCyan: 90 + brightWhite: 105.4 diff --git a/themes/midnight-mirage.yaml b/themes/midnight-mirage.yaml new file mode 100644 index 00000000..d22e80ce --- /dev/null +++ b/themes/midnight-mirage.yaml @@ -0,0 +1,49 @@ +name: "Midnight Mirage" +source: + marketplace_id: "puszkarek.midnight-mirage-theme" + version: "0.1.6" + installs: 565 + author: "Puszkarek" + repo: "https://github.com/Puszkarek/midnight-mirage-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.midnight-mirage-theme" +colors: + bg: "#313B43" + fg: "#DBDDE1" + black: "#111111" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#DBDDE1" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#F2F3F5" +meta: + mode: "dark" + accent: "pink" + hue: 242 + contrast: + fg: 78.1 + black: 0 + red: 19.9 + green: 46.2 + yellow: 78.8 + blue: 20.6 + magenta: 22.9 + cyan: 40.7 + white: 78.1 + brightBlack: 15.2 + brightRed: 31.8 + brightGreen: 56.7 + brightYellow: 88.8 + brightBlue: 33.2 + brightMagenta: 38.6 + brightCyan: 48.6 + brightWhite: 92.1 diff --git a/themes/midnight-monokai.yaml b/themes/midnight-monokai.yaml new file mode 100644 index 00000000..c03813c2 --- /dev/null +++ b/themes/midnight-monokai.yaml @@ -0,0 +1,49 @@ +name: "Midnight Monokai" +source: + marketplace_id: "AndrewSen.vscode-midnight-monokai" + version: "1.0.6" + installs: 93 + author: "Andrew Sen" + repo: "https://github.com/platformer/vscode-midnight-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=AndrewSen.vscode-midnight-monokai" +colors: + bg: "#0F0F0F" + fg: "#DDDDDD" + black: "#181B1F" + red: "#DF7C8E" + green: "#44B689" + yellow: "#B49E33" + blue: "#61A3E6" + magenta: "#A48FE1" + cyan: "#00B1CE" + white: "#DEDEDE" + brightBlack: "#636363" + brightRed: "#F58C81" + brightGreen: "#54C794" + brightYellow: "#C7AD40" + brightBlue: "#6EB2FD" + brightMagenta: "#CC94E6" + brightCyan: "#1AC2E1" + brightWhite: "#FFFDFB" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.6 + black: 0 + red: 47.4 + green: 52.3 + yellow: 49.8 + blue: 49.9 + magenta: 48.2 + cyan: 52 + white: 86.3 + brightBlack: 21.4 + brightRed: 55.8 + brightGreen: 60.9 + brightYellow: 58.3 + brightBlue: 58.2 + brightMagenta: 55.5 + brightCyan: 60.6 + brightWhite: 106.4 diff --git a/themes/midnight-moon-eclipse.yaml b/themes/midnight-moon-eclipse.yaml new file mode 100644 index 00000000..d0884436 --- /dev/null +++ b/themes/midnight-moon-eclipse.yaml @@ -0,0 +1,49 @@ +name: "Midnight Moon Eclipse" +source: + marketplace_id: "Noxire.midnight-themepack" + version: "1.2.0" + installs: 544 + author: "Noxire" + repo: "https://github.com/Noxire-Hash/midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" +colors: + bg: "#1A1D32" + fg: "#D8E3FA" + black: "#1A1D32" + red: "#FF6380" + green: "#98BB6C" + yellow: "#E6C384" + blue: "#72D0B3" + magenta: "#D18FD7" + cyan: "#72D0B3" + white: "#D8E3FA" + brightBlack: "#4A4F7A" + brightRed: "#FF6380" + brightGreen: "#98BB6C" + brightYellow: "#E6C384" + brightBlue: "#72D0B3" + brightMagenta: "#D18FD7" + brightCyan: "#72D0B3" + brightWhite: "#D8E3FA" +meta: + mode: "dark" + accent: "red" + hue: 277 + contrast: + fg: 87.5 + black: 0 + red: 46 + green: 57.6 + yellow: 71.2 + blue: 66.1 + magenta: 52.3 + cyan: 66.1 + white: 87.5 + brightBlack: 13.1 + brightRed: 46 + brightGreen: 57.6 + brightYellow: 71.2 + brightBlue: 66.1 + brightMagenta: 52.3 + brightCyan: 66.1 + brightWhite: 87.5 diff --git a/themes/midnight-moon-ukiyo.yaml b/themes/midnight-moon-ukiyo.yaml new file mode 100644 index 00000000..b99ecbb4 --- /dev/null +++ b/themes/midnight-moon-ukiyo.yaml @@ -0,0 +1,49 @@ +name: "Midnight Moon Ukiyo" +source: + marketplace_id: "Noxire.midnight-themepack" + version: "1.2.0" + installs: 544 + author: "Noxire" + repo: "https://github.com/Noxire-Hash/midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" +colors: + bg: "#1F1F28" + fg: "#DCD7BA" + black: "#16161D" + red: "#C34043" + green: "#98BB6C" + yellow: "#E6C384" + blue: "#7E9CD8" + magenta: "#957FB8" + cyan: "#7FB4CA" + white: "#DCD7BA" + brightBlack: "#54546D" + brightRed: "#C34043" + brightGreen: "#98BB6C" + brightYellow: "#E6C384" + brightBlue: "#7E9CD8" + brightMagenta: "#957FB8" + brightCyan: "#7FB4CA" + brightWhite: "#DCD7BA" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 79.7 + black: 0 + red: 25.6 + green: 57.4 + yellow: 71.1 + blue: 46.7 + magenta: 37.1 + cyan: 55.5 + white: 79.7 + brightBlack: 14.5 + brightRed: 25.6 + brightGreen: 57.4 + brightYellow: 71.1 + brightBlue: 46.7 + brightMagenta: 37.1 + brightCyan: 55.5 + brightWhite: 79.7 diff --git a/themes/midnight-moon.yaml b/themes/midnight-moon.yaml new file mode 100644 index 00000000..e1356104 --- /dev/null +++ b/themes/midnight-moon.yaml @@ -0,0 +1,49 @@ +name: "Midnight Moon" +source: + marketplace_id: "Noxire.midnight-themepack" + version: "1.2.0" + installs: 544 + author: "Noxire" + repo: "https://github.com/Noxire-Hash/midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" +colors: + bg: "#0B0E1A" + fg: "#C9D1D9" + black: "#484F58" + red: "#F85149" + green: "#7EE787" + yellow: "#F0D852" + blue: "#79C0FF" + magenta: "#D2A8FF" + cyan: "#39C5CF" + white: "#C9D1D9" + brightBlack: "#484F58" + brightRed: "#FF6B6B" + brightGreen: "#56D364" + brightYellow: "#FFEA7F" + brightBlue: "#58A6FF" + brightMagenta: "#B180D7" + brightCyan: "#56D4DD" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "orange" + hue: 273 + contrast: + fg: 77.7 + black: 13.2 + red: 41.6 + green: 78.2 + yellow: 82.3 + blue: 64.9 + magenta: 64.7 + cyan: 61.5 + white: 77.7 + brightBlack: 13.2 + brightRed: 48.7 + brightGreen: 65.6 + brightYellow: 93.4 + brightBlue: 52.3 + brightMagenta: 44.5 + brightCyan: 70.1 + brightWhite: 101 diff --git a/themes/midnight-pastel.yaml b/themes/midnight-pastel.yaml new file mode 100644 index 00000000..c434dbd8 --- /dev/null +++ b/themes/midnight-pastel.yaml @@ -0,0 +1,49 @@ +name: "Midnight Pastel" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3734 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#212121" + fg: "#FFFFFF" + black: "#000000" + red: "#FF4081" + green: "#64FFDA" + yellow: "#FFD740" + blue: "#00B0FF" + magenta: "#EA80FC" + cyan: "#64FFDA" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF4081" + brightGreen: "#64FFBA" + brightYellow: "#FFD740" + brightBlue: "#00B0FF" + brightMagenta: "#EA80FC" + brightCyan: "#64FFDA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 105.6 + black: 0 + red: 40.2 + green: 89.9 + yellow: 82.2 + blue: 52.7 + magenta: 54.2 + cyan: 89.9 + white: 105.6 + brightBlack: 9.7 + brightRed: 40.2 + brightGreen: 88.7 + brightYellow: 82.2 + brightBlue: 52.7 + brightMagenta: 54.2 + brightCyan: 89.9 + brightWhite: 105.6 diff --git a/themes/midnight-pro.yaml b/themes/midnight-pro.yaml new file mode 100644 index 00000000..00942fcf --- /dev/null +++ b/themes/midnight-pro.yaml @@ -0,0 +1,49 @@ +name: "Midnight Pro" +source: + marketplace_id: "Noxire.midnight-themepack" + version: "1.2.0" + installs: 544 + author: "Noxire" + repo: "https://github.com/Noxire-Hash/midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" +colors: + bg: "#131821" + fg: "#D8E3F0" + black: "#0A0E17" + red: "#FF6B88" + green: "#7FE7A5" + yellow: "#FFD47B" + blue: "#8AB8FF" + magenta: "#C77DFF" + cyan: "#7DCFFF" + white: "#E6F1FF" + brightBlack: "#0A0E17" + brightRed: "#FF8FA3" + brightGreen: "#95EFBB" + brightYellow: "#FFE095" + brightBlue: "#9FC5FF" + brightMagenta: "#D89EFF" + brightCyan: "#95DBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 262 + contrast: + fg: 87.8 + black: 0 + red: 48.8 + green: 78.3 + yellow: 82.9 + blue: 62 + magenta: 48.9 + cyan: 70.9 + white: 96.8 + brightBlack: 0 + brightRed: 58.9 + brightGreen: 84.6 + brightYellow: 88.7 + brightBlue: 69.3 + brightMagenta: 61.5 + brightCyan: 78.1 + brightWhite: 106.8 diff --git a/themes/midnight-purple-deep.yaml b/themes/midnight-purple-deep.yaml new file mode 100644 index 00000000..a3cb42a8 --- /dev/null +++ b/themes/midnight-purple-deep.yaml @@ -0,0 +1,49 @@ +name: "Midnight Purple Deep" +source: + marketplace_id: "bxstars-code.midnight-purple-dark-theme" + version: "1.1.3" + installs: 19 + author: "Barbara_Xavier" + repo: "https://github.com/bxstars/midnight-purple-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bxstars-code.midnight-purple-dark-theme" +colors: + bg: "#141523" + fg: "#E6E7F2" + black: "#141523" + red: "#E05A6F" + green: "#20BB94" + yellow: "#E6D66F" + blue: "#5F8DF0" + magenta: "#CA5DAD" + cyan: "#8EE6CF" + white: "#E6E7F2" + brightBlack: "#6B6E8F" + brightRed: "#F07178" + brightGreen: "#4CD9B0" + brightYellow: "#F0E68C" + brightBlue: "#8FA8FF" + brightMagenta: "#E6A3D0" + brightCyan: "#9FE8D5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 91.7 + black: 0 + red: 38.1 + green: 53.5 + yellow: 79.8 + blue: 41.8 + magenta: 36.7 + cyan: 80.6 + white: 91.7 + brightBlack: 26.6 + brightRed: 46.7 + brightGreen: 69.6 + brightYellow: 89 + brightBlue: 56.3 + brightMagenta: 62.9 + brightCyan: 83.1 + brightWhite: 106.9 diff --git a/themes/midnight-purple.yaml b/themes/midnight-purple.yaml new file mode 100644 index 00000000..e23fb409 --- /dev/null +++ b/themes/midnight-purple.yaml @@ -0,0 +1,49 @@ +name: "Midnight Purple" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 358 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" +colors: + bg: "#0F0A1A" + fg: "#C080FF" + black: "#000000" + red: "#FF4080" + green: "#80FF40" + yellow: "#FFFF40" + blue: "#4080FF" + magenta: "#BF00FF" + cyan: "#40FFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF4080" + brightGreen: "#80FF40" + brightYellow: "#FFFF40" + brightBlue: "#4080FF" + brightMagenta: "#BF00FF" + brightCyan: "#40FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 297 + contrast: + fg: 49.5 + black: 0 + red: 42.1 + green: 89.6 + yellow: 102.6 + blue: 37.8 + magenta: 32.8 + cyan: 92.5 + white: 107.6 + brightBlack: 0 + brightRed: 42.1 + brightGreen: 89.6 + brightYellow: 102.6 + brightBlue: 37.8 + brightMagenta: 32.8 + brightCyan: 92.5 + brightWhite: 107.6 diff --git a/themes/midnight-rainbow.yaml b/themes/midnight-rainbow.yaml new file mode 100644 index 00000000..9ab1d4c7 --- /dev/null +++ b/themes/midnight-rainbow.yaml @@ -0,0 +1,49 @@ +name: "Midnight Rainbow" +source: + marketplace_id: "parallaxshiftdj.midnightrainbow" + version: "1.0.11" + installs: 2334 + author: "Parallax Shift" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=parallaxshiftdj.midnightrainbow" +colors: + bg: "#090018" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#BF0000" + green: "#1FBF00" + yellow: "#BF7F00" + blue: "#005FBF" + magenta: "#BF007F" + cyan: "#007F7F" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#FF0000" + brightGreen: "#3FBF00" + brightYellow: "#FFBF00" + brightBlue: "#007FFF" + brightMagenta: "#FF00BF" + brightCyan: "#00BFBF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 301 + contrast: + fg: 107.8 + black: 107.8 + red: 22.2 + green: 54.2 + yellow: 40.9 + blue: 21.6 + magenta: 24.4 + cyan: 28.6 + white: 107.8 + brightBlack: 107.8 + brightRed: 37.4 + brightGreen: 54.8 + brightYellow: 74.2 + brightBlue: 36.6 + brightMagenta: 41.9 + brightCyan: 57.7 + brightWhite: 107.8 diff --git a/themes/midnight-rose-theme.yaml b/themes/midnight-rose-theme.yaml new file mode 100644 index 00000000..93b14f84 --- /dev/null +++ b/themes/midnight-rose-theme.yaml @@ -0,0 +1,49 @@ +name: "Midnight Rose Theme" +source: + marketplace_id: "nathan-dev.midnight-rose-theme" + version: "1.1.4" + installs: 115 + author: "Nathan-extension" + repo: "https://github.com/nathan/rose-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nathan-dev.midnight-rose-theme" +colors: + bg: "#161616" + fg: "#EAE0E2" + black: "#2D2426" + red: "#FF1493" + green: "#FF69B4" + yellow: "#FFB6C1" + blue: "#FF79C6" + magenta: "#FF00FF" + cyan: "#FFC0CB" + white: "#EAE0E2" + brightBlack: "#2D2426" + brightRed: "#FF1493" + brightGreen: "#FF69B4" + brightYellow: "#FFB6C1" + brightBlue: "#FF79C6" + brightMagenta: "#FF00FF" + brightCyan: "#FFC0CB" + brightWhite: "#EAE0E2" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 88.4 + black: 0 + red: 39.2 + green: 50.2 + yellow: 73.2 + blue: 54.7 + magenta: 45.3 + cyan: 77.4 + white: 88.4 + brightBlack: 0 + brightRed: 39.2 + brightGreen: 50.2 + brightYellow: 73.2 + brightBlue: 54.7 + brightMagenta: 45.3 + brightCyan: 77.4 + brightWhite: 88.4 diff --git a/themes/midnight-sapphire.yaml b/themes/midnight-sapphire.yaml new file mode 100644 index 00000000..73d965eb --- /dev/null +++ b/themes/midnight-sapphire.yaml @@ -0,0 +1,49 @@ +name: "Midnight Sapphire" +source: + marketplace_id: "hassancoder1.midnight-sapphire" + version: "1.1.0" + installs: 597 + author: "HassanCoder" + repo: "https://github.com/hassancoder1/midnight-sapphire-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hassancoder1.midnight-sapphire" +colors: + bg: "#1B1E2A" + fg: "#FFFFFF" + black: "#545454" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E7DA5F" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#28A6C4" + white: "#C9C9C9" + brightBlack: "#8C8C8C" + brightRed: "#F14C4C" + brightGreen: "#0AD785" + brightYellow: "#FFEC3B" + brightBlue: "#278DFD" + brightMagenta: "#D670D6" + brightCyan: "#08C3F0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 106 + black: 13.8 + red: 25.8 + green: 52.1 + yellow: 80.5 + blue: 26.5 + magenta: 28.9 + cyan: 45.6 + white: 72 + brightBlack: 38.7 + brightRed: 37.7 + brightGreen: 65.2 + brightYellow: 91.9 + brightBlue: 39.7 + brightMagenta: 44.5 + brightCyan: 60.3 + brightWhite: 89.1 diff --git a/themes/midnight-theme-light-soft.yaml b/themes/midnight-theme-light-soft.yaml new file mode 100644 index 00000000..1cb5dc39 --- /dev/null +++ b/themes/midnight-theme-light-soft.yaml @@ -0,0 +1,49 @@ +name: "Midnight Theme Light Soft" +source: + marketplace_id: "kaivanwong.vscode-midnight-theme" + version: "0.1.3" + installs: 842 + author: "Kaivan Wong" + repo: "https://github.com/kaivanwong/vscode-midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kaivanwong.vscode-midnight-theme" +colors: + bg: "#F1F0E9" + fg: "#393A34" + black: "#1C2630" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 87.4 + black: 93.2 + red: 64.4 + green: 68.8 + yellow: 39.2 + blue: 69.1 + magenta: 72 + cyan: 54.4 + white: 12 + brightBlack: 36.7 + brightRed: 64.4 + brightGreen: 68.8 + brightYellow: 39.2 + brightBlue: 69.1 + brightMagenta: 72 + brightCyan: 54.4 + brightWhite: 8.5 diff --git a/themes/midnight-theme-light.yaml b/themes/midnight-theme-light.yaml new file mode 100644 index 00000000..3b0261e1 --- /dev/null +++ b/themes/midnight-theme-light.yaml @@ -0,0 +1,49 @@ +name: "Midnight Theme Light" +source: + marketplace_id: "kaivanwong.vscode-midnight-theme" + version: "0.1.3" + installs: 842 + author: "Kaivan Wong" + repo: "https://github.com/kaivanwong/vscode-midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kaivanwong.vscode-midnight-theme" +colors: + bg: "#FFFFFF" + fg: "#393A34" + black: "#1C2630" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 96.5 + black: 102.2 + red: 73.5 + green: 77.9 + yellow: 48.3 + blue: 78.2 + magenta: 81.1 + cyan: 63.5 + white: 21.1 + brightBlack: 45.8 + brightRed: 73.5 + brightGreen: 77.9 + brightYellow: 48.3 + brightBlue: 78.2 + brightMagenta: 81.1 + brightCyan: 63.5 + brightWhite: 17.6 diff --git a/themes/midnight-theme.yaml b/themes/midnight-theme.yaml new file mode 100644 index 00000000..055f314d --- /dev/null +++ b/themes/midnight-theme.yaml @@ -0,0 +1,49 @@ +name: "Midnight Theme" +source: + marketplace_id: "khanghy1000.midnight-ray-theme" + version: "0.0.24" + installs: 275 + author: "khanghy1000" + repo: "https://github.com/khanghy1000/Midnight-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=khanghy1000.midnight-ray-theme" +colors: + bg: "#191C1F" + fg: "#FFFFFF" + black: "#000000" + red: "#D8473F" + green: "#3FC48A" + yellow: "#D7BA7D" + blue: "#579BD5" + magenta: "#CA5BC8" + cyan: "#00B6D6" + white: "#EAEAEA" + brightBlack: "#797979" + brightRed: "#F6645D" + brightGreen: "#1AD69C" + brightYellow: "#F6F353" + brightBlue: "#9BDBFE" + brightMagenta: "#DF89DD" + brightCyan: "#2BC4E2" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 31.5 + green: 57.4 + yellow: 65.6 + blue: 44.1 + magenta: 37.2 + cyan: 53.5 + white: 92.7 + brightBlack: 29.9 + brightRed: 43.8 + brightGreen: 65.8 + brightYellow: 94.4 + brightBlue: 78.1 + brightMagenta: 53.5 + brightCyan: 60.6 + brightWhite: 92.7 diff --git a/themes/midnight-ukiyo.yaml b/themes/midnight-ukiyo.yaml new file mode 100644 index 00000000..9c755c50 --- /dev/null +++ b/themes/midnight-ukiyo.yaml @@ -0,0 +1,49 @@ +name: "Midnight Ukiyo" +source: + marketplace_id: "Noxire.midnight-themepack" + version: "1.2.0" + installs: 544 + author: "Noxire" + repo: "https://github.com/Noxire-Hash/midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" +colors: + bg: "#1F1F28" + fg: "#DCD7BA" + black: "#16161D" + red: "#E82424" + green: "#98BB6C" + yellow: "#D4A574" + blue: "#7E9CD8" + magenta: "#957FB8" + cyan: "#6BB6C7" + white: "#DCD7BA" + brightBlack: "#54546D" + brightRed: "#F85149" + brightGreen: "#A8C685" + brightYellow: "#E6B886" + brightBlue: "#8BA4F0" + brightMagenta: "#A68DBF" + brightCyan: "#7DCAE9" + brightWhite: "#F0F0E7" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 79.7 + black: 0 + red: 30.7 + green: 57.4 + yellow: 56.3 + blue: 46.7 + magenta: 37.1 + cyan: 54.8 + white: 79.7 + brightBlack: 14.5 + brightRed: 39.8 + brightGreen: 64.4 + brightYellow: 66.7 + brightBlue: 52.3 + brightMagenta: 44.1 + brightCyan: 66.5 + brightWhite: 95.6 diff --git a/themes/midnight-z.yaml b/themes/midnight-z.yaml new file mode 100644 index 00000000..de8ddb06 --- /dev/null +++ b/themes/midnight-z.yaml @@ -0,0 +1,49 @@ +name: "Midnight-Z" +source: + marketplace_id: "ZachGreen.midnight-z" + version: "0.1.1" + installs: 290 + author: "Zach Green" + repo: "https://github.com/git@github.com:zachjamesgreen/Midnight-Z.git" + url: "https://marketplace.visualstudio.com/items?itemName=ZachGreen.midnight-z" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C4C4C4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFAFA" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 70.9 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 105.3 diff --git a/themes/midnightblue.yaml b/themes/midnightblue.yaml new file mode 100644 index 00000000..f370110d --- /dev/null +++ b/themes/midnightblue.yaml @@ -0,0 +1,49 @@ +name: "MidnightBlue" +source: + marketplace_id: "priteshlad3.katanax" + version: "0.0.1" + installs: 9 + author: "priteshlad3" + repo: "https://github.com/pritesh88/katanax-theme" + url: "https://marketplace.visualstudio.com/items?itemName=priteshlad3.katanax" +colors: + bg: "#0D1B3E" + fg: "#D4E8F8" + black: "#111F45" + red: "#FF6B9D" + green: "#6ADBA8" + yellow: "#89C8E8" + blue: "#3461C1" + magenta: "#C589E8" + cyan: "#7AB8D8" + white: "#A8C8E8" + brightBlack: "#2A3A6A" + brightRed: "#FF8BB8" + brightGreen: "#8AEBC8" + brightYellow: "#ACD8F0" + brightBlue: "#5A88D8" + brightMagenta: "#D8A8F0" + brightCyan: "#9ACCE8" + brightWhite: "#D4E8F8" +meta: + mode: "dark" + accent: "red" + hue: 265 + contrast: + fg: 89.3 + black: 0 + red: 48.7 + green: 70.6 + yellow: 66.6 + blue: 21.4 + magenta: 49.7 + cyan: 57.8 + white: 69.4 + brightBlack: 0 + brightRed: 57.9 + brightGreen: 81.5 + brightYellow: 77.3 + brightBlue: 37.2 + brightMagenta: 63.2 + brightCyan: 69.8 + brightWhite: 89.3 diff --git a/themes/midnightglow.yaml b/themes/midnightglow.yaml new file mode 100644 index 00000000..925ef53e --- /dev/null +++ b/themes/midnightglow.yaml @@ -0,0 +1,49 @@ +name: "MidnightGlow" +source: + marketplace_id: "dumildematos.midnight-glow" + version: "0.0.3" + installs: 501 + author: "Dumilde Matos" + repo: "https://github.com/dumildematos/midnight-glow" + url: "https://marketplace.visualstudio.com/items?itemName=dumildematos.midnight-glow" +colors: + bg: "#040413" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 279 + contrast: + fg: 80.4 + black: 0 + red: 27.7 + green: 53.9 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 91 diff --git a/themes/midt.yaml b/themes/midt.yaml new file mode 100644 index 00000000..969b7300 --- /dev/null +++ b/themes/midt.yaml @@ -0,0 +1,49 @@ +name: "midt" +source: + marketplace_id: "marksdk.midt" + version: "1.3.2" + installs: 135 + author: "Mark Hougaard Jensen" + repo: "https://github.com/marksdk/theme-midt" + url: "https://marketplace.visualstudio.com/items?itemName=marksdk.midt" +colors: + bg: "#1F1726" + fg: "#FFFCF5" + black: "#011627" + red: "#DE1B1B" + green: "#22DA6E" + yellow: "#ADDB67" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFCF5" + brightBlack: "#575656" + brightRed: "#DE1B1B" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFCF5" +meta: + mode: "dark" + accent: "orange" + hue: 308 + contrast: + fg: 104.6 + black: 0 + red: 28.5 + green: 66.9 + yellow: 74.5 + blue: 55.5 + magenta: 53.4 + cyan: 59.3 + white: 104.6 + brightBlack: 15.2 + brightRed: 28.5 + brightGreen: 66.9 + brightYellow: 93.3 + brightBlue: 55.5 + brightMagenta: 53.4 + brightCyan: 73.6 + brightWhite: 104.6 diff --git a/themes/mihari-bordered.yaml b/themes/mihari-bordered.yaml new file mode 100644 index 00000000..54ab72f4 --- /dev/null +++ b/themes/mihari-bordered.yaml @@ -0,0 +1,49 @@ +name: "Mihari Bordered" +source: + marketplace_id: "rynco.mihari" + version: "0.4.0" + installs: 866 + author: "rynco" + repo: "https://github.com/01010101lzy/mihari" + url: "https://marketplace.visualstudio.com/items?itemName=rynco.mihari" +colors: + bg: "#1E252A" + fg: "#C4CDD5" + black: "#0F171C" + red: "#E32636" + green: "#8BA66A" + yellow: "#E1BD09" + blue: "#7B92C9" + magenta: "#DF3D8B" + cyan: "#649AA2" + white: "#90989F" + brightBlack: "#454D53" + brightRed: "#E32636" + brightGreen: "#8BA66A" + brightYellow: "#E1BD09" + brightBlue: "#7B92C9" + brightMagenta: "#DF3D8B" + brightCyan: "#649AA2" + brightWhite: "#C4CDD5" +meta: + mode: "dark" + accent: "orange" + hue: 239 + contrast: + fg: 72.8 + black: 0 + red: 29.1 + green: 46.7 + yellow: 65.9 + blue: 41.2 + magenta: 32.4 + cyan: 40.6 + white: 43.3 + brightBlack: 9.9 + brightRed: 29.1 + brightGreen: 46.7 + brightYellow: 65.9 + brightBlue: 41.2 + brightMagenta: 32.4 + brightCyan: 40.6 + brightWhite: 72.8 diff --git a/themes/mihari.yaml b/themes/mihari.yaml new file mode 100644 index 00000000..2aeb2a16 --- /dev/null +++ b/themes/mihari.yaml @@ -0,0 +1,49 @@ +name: "Mihari" +source: + marketplace_id: "rynco.mihari" + version: "0.4.0" + installs: 866 + author: "rynco" + repo: "https://github.com/01010101lzy/mihari" + url: "https://marketplace.visualstudio.com/items?itemName=rynco.mihari" +colors: + bg: "#1E252A" + fg: "#C4CDD5" + black: "#1E252A" + red: "#E32636" + green: "#8BA66A" + yellow: "#E1BD09" + blue: "#7B92C9" + magenta: "#DF3D8B" + cyan: "#649AA2" + white: "#90989F" + brightBlack: "#454D53" + brightRed: "#E32636" + brightGreen: "#8BA66A" + brightYellow: "#E1BD09" + brightBlue: "#7B92C9" + brightMagenta: "#DF3D8B" + brightCyan: "#649AA2" + brightWhite: "#C4CDD5" +meta: + mode: "dark" + accent: "orange" + hue: 239 + contrast: + fg: 72.8 + black: 0 + red: 29.1 + green: 46.7 + yellow: 65.9 + blue: 41.2 + magenta: 32.4 + cyan: 40.6 + white: 43.3 + brightBlack: 9.9 + brightRed: 29.1 + brightGreen: 46.7 + brightYellow: 65.9 + brightBlue: 41.2 + brightMagenta: 32.4 + brightCyan: 40.6 + brightWhite: 72.8 diff --git a/themes/mike-sources-green-crt.yaml b/themes/mike-sources-green-crt.yaml new file mode 100644 index 00000000..c5b82817 --- /dev/null +++ b/themes/mike-sources-green-crt.yaml @@ -0,0 +1,49 @@ +name: "Mike Sources Green CRT" +source: + marketplace_id: "mikesources.mike-sources-pack" + version: "1.1.1" + installs: 325 + author: "Mike Sources" + repo: "https://github.com/mwfontes/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mikesources.mike-sources-pack" +colors: + bg: "#081D02" + fg: "#38C41F" + black: "#39FF14" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 138 + contrast: + fg: 55.8 + black: 85.7 + red: 26.5 + green: 52.7 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.8 diff --git a/themes/mike-sources-yellowstone.yaml b/themes/mike-sources-yellowstone.yaml new file mode 100644 index 00000000..7984020b --- /dev/null +++ b/themes/mike-sources-yellowstone.yaml @@ -0,0 +1,49 @@ +name: "Mike Sources YellowStone" +source: + marketplace_id: "mikesources.mike-sources-pack" + version: "1.1.1" + installs: 325 + author: "Mike Sources" + repo: "https://github.com/mwfontes/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mikesources.mike-sources-pack" +colors: + bg: "#FCC22D" + fg: "#000000" + black: "#000000" + red: "#000000" + green: "#000000" + yellow: "#000000" + blue: "#000000" + magenta: "#000000" + cyan: "#000000" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#FFFFFF" + brightGreen: "#FFFFFF" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "yellow" + hue: 85 + contrast: + fg: 76 + black: 76 + red: 76 + green: 76 + yellow: 76 + blue: 76 + magenta: 76 + cyan: 76 + white: 31.4 + brightBlack: 31.4 + brightRed: 31.4 + brightGreen: 31.4 + brightYellow: 31.4 + brightBlue: 31.4 + brightMagenta: 31.4 + brightCyan: 31.4 + brightWhite: 31.4 diff --git a/themes/mikes-vscode-theme-1.yaml b/themes/mikes-vscode-theme-1.yaml new file mode 100644 index 00000000..b3e590e9 --- /dev/null +++ b/themes/mikes-vscode-theme-1.yaml @@ -0,0 +1,49 @@ +name: "Mikes-Vscode-Theme-1" +source: + marketplace_id: "MikeT.Mikes-color-theme" + version: "1.0.0" + installs: 14 + author: "MikeT" + repo: "https://github.com/MichaelTitmouse/Mikes-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MikeT.Mikes-color-theme" +colors: + bg: "#23272E" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 57.2 + black: 0 + red: 24.5 + green: 50.8 + yellow: 83.4 + blue: 25.2 + magenta: 27.5 + cyan: 45.3 + white: 87.8 + brightBlack: 19.8 + brightRed: 36.3 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.8 + brightMagenta: 43.2 + brightCyan: 53.2 + brightWhite: 87.8 diff --git a/themes/miku-code-fusion-light.yaml b/themes/miku-code-fusion-light.yaml new file mode 100644 index 00000000..d1d98199 --- /dev/null +++ b/themes/miku-code-fusion-light.yaml @@ -0,0 +1,49 @@ +name: "Miku Code Fusion Light" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#FFFFFF" + fg: "#0891B2" + black: "#24292F" + red: "#DC2626" + green: "#059669" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#9333EA" + cyan: "#0891B2" + white: "#D1D5DB" + brightBlack: "#6E7781" + brightRed: "#DC2626" + brightGreen: "#10B981" + brightYellow: "#FACC15" + brightBlue: "#2563EB" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 63.8 + black: 101.5 + red: 71.6 + green: 64.6 + yellow: 36.4 + blue: 63.9 + magenta: 75.6 + cyan: 63.8 + white: 22.4 + brightBlack: 71.6 + brightRed: 71.6 + brightGreen: 49.1 + brightYellow: 24.4 + brightBlue: 74.9 + brightMagenta: 66.2 + brightCyan: 47.1 + brightWhite: 0 diff --git a/themes/miku-code-light.yaml b/themes/miku-code-light.yaml new file mode 100644 index 00000000..87439b15 --- /dev/null +++ b/themes/miku-code-light.yaml @@ -0,0 +1,49 @@ +name: "Miku Code Light" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#FFFFFF" + fg: "#29CCD0" + black: "#24292F" + red: "#DC2626" + green: "#059669" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#9333EA" + cyan: "#1C868A" + white: "#D1D5DB" + brightBlack: "#6E7781" + brightRed: "#DC2626" + brightGreen: "#10B981" + brightYellow: "#FACC15" + brightBlue: "#2563EB" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 37.6 + black: 101.5 + red: 71.6 + green: 64.6 + yellow: 36.4 + blue: 63.9 + magenta: 75.6 + cyan: 69.7 + white: 22.4 + brightBlack: 71.6 + brightRed: 71.6 + brightGreen: 49.1 + brightYellow: 24.4 + brightBlue: 74.9 + brightMagenta: 66.2 + brightCyan: 47.1 + brightWhite: 0 diff --git a/themes/miku-code.yaml b/themes/miku-code.yaml new file mode 100644 index 00000000..fa782c81 --- /dev/null +++ b/themes/miku-code.yaml @@ -0,0 +1,49 @@ +name: "Miku Code" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#1A1B26" + fg: "#7DCFFF" + black: "#A9B1D6" + red: "#F2074D" + green: "#00D4AA" + yellow: "#E5E510" + blue: "#8EAEF2" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BEBEBE" + brightBlack: "#D8DDF5" + brightRed: "#FF0F6F" + brightGreen: "#00FFCC" + brightYellow: "#F5F543" + brightBlue: "#6596FF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FBFDFF" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 70.5 + black: 59.3 + red: 33.3 + green: 65.2 + yellow: 85.1 + blue: 57.1 + magenta: 29.2 + cyan: 47 + white: 65.9 + brightBlack: 85 + brightRed: 37.3 + brightGreen: 88.3 + brightYellow: 95.1 + brightBlue: 45.8 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 104.8 diff --git a/themes/milianor-theme.yaml b/themes/milianor-theme.yaml new file mode 100644 index 00000000..ad0f16dd --- /dev/null +++ b/themes/milianor-theme.yaml @@ -0,0 +1,49 @@ +name: "Milianor Theme" +source: + marketplace_id: "MaxMilianoDelCantoQuezada.triage-theme" + version: "4.0.7" + installs: 13 + author: "Max Miliano" + repo: "https://github.com/maxmx03/vscode-triage-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MaxMilianoDelCantoQuezada.triage-theme" +colors: + bg: "#282C4D" + fg: "#F6EFEB" + black: "#000000" + red: "#E84A5F" + green: "#D2E603" + yellow: "#FFC93C" + blue: "#7C6FFF" + magenta: "#F5B5FC" + cyan: "#74F9FF" + white: "#74F9FF" + brightBlack: "#666666" + brightRed: "#FA7F7F" + brightGreen: "#94FC13" + brightYellow: "#FFF76A" + brightBlue: "#B2EBF2" + brightMagenta: "#F5B5FC" + brightCyan: "#E3F8FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 277 + contrast: + fg: 93.3 + black: 0 + red: 32.7 + green: 79.7 + yellow: 73.7 + blue: 32 + magenta: 70.1 + cyan: 86.7 + white: 86.7 + brightBlack: 18.2 + brightRed: 48.6 + brightGreen: 84.6 + brightYellow: 94.6 + brightBlue: 83.7 + brightMagenta: 70.1 + brightCyan: 96 + brightWhite: 86.2 diff --git a/themes/military-fork.yaml b/themes/military-fork.yaml new file mode 100644 index 00000000..3a6dab03 --- /dev/null +++ b/themes/military-fork.yaml @@ -0,0 +1,49 @@ +name: "military - Fork" +source: + marketplace_id: "xynny.militrygreen" + version: "0.0.1" + installs: 726 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.militrygreen" +colors: + bg: "#20261E" + fg: "#B8C9B6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 138 + contrast: + fg: 68.3 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.8 + blue: 25.6 + magenta: 28 + cyan: 45.8 + white: 88.2 + brightBlack: 20.2 + brightRed: 36.8 + brightGreen: 61.7 + brightYellow: 93.8 + brightBlue: 38.2 + brightMagenta: 43.6 + brightCyan: 53.6 + brightWhite: 88.2 diff --git a/themes/milkyway.yaml b/themes/milkyway.yaml new file mode 100644 index 00000000..e6c23ce8 --- /dev/null +++ b/themes/milkyway.yaml @@ -0,0 +1,49 @@ +name: "MilkyWay" +source: + marketplace_id: "motrdevua.milkyway" + version: "1.0.0" + installs: 845 + author: "motrdevua" + repo: "https://github.com/motrdevua/MilkyWay" + url: "https://marketplace.visualstudio.com/items?itemName=motrdevua.milkyway" +colors: + bg: "#282C34" + fg: "#CBCDD2" + black: "#333842" + red: "#EB365D" + green: "#93EF1F" + yellow: "#FFCA2A" + blue: "#42A5F5" + magenta: "#EB365D" + cyan: "#42A5F5" + white: "#CBCDD2" + brightBlack: "#333842" + brightRed: "#EB365D" + brightGreen: "#93EF1F" + brightYellow: "#FFCA2A" + brightBlue: "#42A5F5" + brightMagenta: "#93EF1F" + brightCyan: "#42A5F5" + brightWhite: "#CBCDD2" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 72 + black: 0 + red: 31.5 + green: 78.6 + yellow: 74.6 + blue: 46.5 + magenta: 31.5 + cyan: 46.5 + white: 72 + brightBlack: 0 + brightRed: 31.5 + brightGreen: 78.6 + brightYellow: 74.6 + brightBlue: 46.5 + brightMagenta: 78.6 + brightCyan: 46.5 + brightWhite: 72 diff --git a/themes/mimesis-dark.yaml b/themes/mimesis-dark.yaml new file mode 100644 index 00000000..1e195b3a --- /dev/null +++ b/themes/mimesis-dark.yaml @@ -0,0 +1,49 @@ +name: "Mimesis Dark" +source: + marketplace_id: "AlexanderDyriavin.mimesis" + version: "1.2.2" + installs: 408 + author: "Alexander Dyriavin" + repo: "https://github.com/dyriavin/mimesis-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AlexanderDyriavin.mimesis" +colors: + bg: "#202020" + fg: "#E9ECEC" + black: "#24292E" + red: "#DB5860" + green: "#12BC00" + yellow: "#FFE900" + blue: "#63B0FF" + magenta: "#E354AF" + cyan: "#51C9B7" + white: "#E9ECEC" + brightBlack: "#959DA5" + brightRed: "#FF0039" + brightGreen: "#058B00" + brightYellow: "#FFE900" + brightBlue: "#63B0FF" + brightMagenta: "#FF1AD9" + brightCyan: "#51C9B7" + brightWhite: "#D1D5DA" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 92.9 + black: 0 + red: 35.1 + green: 50.6 + yellow: 90.2 + blue: 55.1 + magenta: 38.8 + cyan: 61.3 + white: 92.9 + brightBlack: 46.6 + brightRed: 35.7 + brightGreen: 29.3 + brightYellow: 90.2 + brightBlue: 55.1 + brightMagenta: 41.8 + brightCyan: 61.3 + brightWhite: 78.7 diff --git a/themes/mimesis-light.yaml b/themes/mimesis-light.yaml new file mode 100644 index 00000000..5ca04de6 --- /dev/null +++ b/themes/mimesis-light.yaml @@ -0,0 +1,49 @@ +name: "Mimesis Light" +source: + marketplace_id: "AlexanderDyriavin.mimesis" + version: "1.2.2" + installs: 408 + author: "Alexander Dyriavin" + repo: "https://github.com/dyriavin/mimesis-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AlexanderDyriavin.mimesis" +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#24292E" + red: "#D70022" + green: "#12BC00" + yellow: "#D7B600" + blue: "#0060DF" + magenta: "#B5007F" + cyan: "#008EA4" + white: "#6A737D" + brightBlack: "#959DA5" + brightRed: "#FF0039" + brightGreen: "#058B00" + brightYellow: "#FFE900" + brightBlue: "#0060DF" + brightMagenta: "#FF1AD9" + brightCyan: "#00C8D7" + brightWhite: "#D1D5DA" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 101.5 + black: 101.5 + red: 73.9 + green: 49.2 + yellow: 38.1 + blue: 77.1 + magenta: 79.4 + cyan: 65.7 + white: 73.4 + brightBlack: 53.1 + brightRed: 63.9 + brightGreen: 70.2 + brightYellow: 11.7 + brightBlue: 77.1 + brightMagenta: 57.9 + brightCyan: 39.2 + brightWhite: 22.4 diff --git a/themes/min-gruvbox.yaml b/themes/min-gruvbox.yaml new file mode 100644 index 00000000..a8c9bfe6 --- /dev/null +++ b/themes/min-gruvbox.yaml @@ -0,0 +1,49 @@ +name: "Min Gruvbox" +source: + marketplace_id: "cnmorocho.min-gruvbox-theme" + version: "0.0.10" + installs: 3528 + author: "Carlos Nahuel Morocho" + repo: "https://github.com/cnmorocho/min-gruvbox-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cnmorocho.min-gruvbox-theme" +colors: + bg: "#1A1A1A" + fg: "#FBF1C7" + black: "#2A2A2A" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#2A2A2A" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#D4BE98" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 97 + black: 0 + red: 42.6 + green: 57.7 + yellow: 57.5 + blue: 51.9 + magenta: 47.6 + cyan: 54.3 + white: 67.7 + brightBlack: 0 + brightRed: 42.6 + brightGreen: 57.7 + brightYellow: 57.5 + brightBlue: 51.9 + brightMagenta: 47.6 + brightCyan: 54.3 + brightWhite: 67.7 diff --git a/themes/min-light.yaml b/themes/min-light.yaml new file mode 100644 index 00000000..f69eee25 --- /dev/null +++ b/themes/min-light.yaml @@ -0,0 +1,49 @@ +name: "Min Light" +source: + marketplace_id: "miguelsolorio.min-theme" + version: "1.5.0" + installs: 575213 + author: "Miguel Solorio" + repo: "https://github.com/misolori/min-theme" + url: "https://marketplace.visualstudio.com/items?itemName=miguelsolorio.min-theme" +colors: + bg: "#FFFFFF" + fg: "#212121" + black: "#333333" + red: "#D32F2F" + green: "#77CC00" + yellow: "#F29718" + blue: "#E0E0E0" + magenta: "#9966CC" + cyan: "#4DBF99" + white: "#C7C7C7" + brightBlack: "#A1A1A1" + brightRed: "#D6656A" + brightGreen: "#A3D900" + brightYellow: "#E7C547" + brightBlue: "#6871FF" + brightMagenta: "#A37ACC" + brightCyan: "#57D9AD" + brightWhite: "#7E7E7E" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 103.1 + black: 98.7 + red: 72.8 + green: 38.7 + yellow: 44.5 + blue: 15.8 + magenta: 67.9 + cyan: 44.6 + white: 30.1 + brightBlack: 50.5 + brightRed: 62.5 + brightGreen: 29.5 + brightYellow: 29.7 + brightBlue: 66 + brightMagenta: 61.1 + brightCyan: 31.9 + brightWhite: 67.8 diff --git a/themes/mincom.yaml b/themes/mincom.yaml new file mode 100644 index 00000000..7695bbe0 --- /dev/null +++ b/themes/mincom.yaml @@ -0,0 +1,49 @@ +name: "MinCom" +source: + marketplace_id: "brimell.mincom-theme" + version: "1.4.4" + installs: 186 + author: "brimell" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=brimell.mincom-theme" +colors: + bg: "#10121D" + fg: "#F2F2F2" + black: "#494949" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#626262" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 276 + contrast: + fg: 98.7 + black: 11 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 20.7 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/minimal-44-pro.yaml b/themes/minimal-44-pro.yaml new file mode 100644 index 00000000..be658185 --- /dev/null +++ b/themes/minimal-44-pro.yaml @@ -0,0 +1,49 @@ +name: "Minimal-44-pro" +source: + marketplace_id: "Yazeed.minimal-44" + version: "0.0.4" + installs: 321 + author: "Yazeed" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Yazeed.minimal-44" +colors: + bg: "#1D1D1D" + fg: "#DAD9E2" + black: "#000000" + red: "#E8627D" + green: "#8CD782" + yellow: "#CFB577" + blue: "#81BCDC" + magenta: "#EB89D2" + cyan: "#96A8E6" + white: "#DBB47E" + brightBlack: "#DBA578" + brightRed: "#DE6B74" + brightGreen: "#9CD089" + brightYellow: "#DDBB6B" + brightBlue: "#8DD0DD" + brightMagenta: "#DF8BBF" + brightCyan: "#7AC068" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 82.4 + black: 0 + red: 41 + green: 69.9 + yellow: 62.1 + blue: 60.3 + magenta: 54.9 + cyan: 54.6 + white: 63.6 + brightBlack: 57.9 + brightRed: 40.7 + brightGreen: 68.2 + brightYellow: 66.3 + brightBlue: 70.1 + brightMagenta: 52.4 + brightCyan: 57.4 + brightWhite: 98.2 diff --git a/themes/minimal-44.yaml b/themes/minimal-44.yaml new file mode 100644 index 00000000..41ce32f4 --- /dev/null +++ b/themes/minimal-44.yaml @@ -0,0 +1,49 @@ +name: "Minimal-44" +source: + marketplace_id: "Yazeed.minimal-44" + version: "0.0.4" + installs: 321 + author: "Yazeed" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Yazeed.minimal-44" +colors: + bg: "#16181F" + fg: "#B9C4D1" + black: "#1D2021" + red: "#E6646F" + green: "#8EDC88" + yellow: "#D7B970" + blue: "#8FAFDF" + magenta: "#E291C3" + cyan: "#7FA8E2" + white: "#DCB885" + brightBlack: "#E9B992" + brightRed: "#C56255" + brightGreen: "#8EC878" + brightYellow: "#C5A14D" + brightBlue: "#71B8C6" + brightMagenta: "#D88BBA" + brightCyan: "#A3DBC6" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 273 + contrast: + fg: 69.1 + black: 0 + red: 41.2 + green: 73.2 + yellow: 65.3 + blue: 56.8 + magenta: 55.5 + cyan: 52.9 + white: 66.1 + brightBlack: 68.9 + brightRed: 33.7 + brightGreen: 63.5 + brightYellow: 52.8 + brightBlue: 57 + brightMagenta: 51.5 + brightCyan: 76.5 + brightWhite: 98.7 diff --git a/themes/minimal-dark-fork.yaml b/themes/minimal-dark-fork.yaml new file mode 100644 index 00000000..95d74034 --- /dev/null +++ b/themes/minimal-dark-fork.yaml @@ -0,0 +1,49 @@ +name: "minimal dark - Fork" +source: + marketplace_id: "arunim-io.arunim-theme" + version: "0.0.2" + installs: 30 + author: "Mugdha Arunim Ahmed" + repo: "https://github.com/arunim-io/arunim-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arunim-io.arunim-theme" +colors: + bg: "#0F0F0F" + fg: "#D4D4D4" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.1 + black: 9.5 + red: 37.4 + green: 61 + yellow: 49.2 + blue: 50.3 + magenta: 39.7 + cyan: 53.1 + white: 83.7 + brightBlack: 16.1 + brightRed: 46.7 + brightGreen: 77.4 + brightYellow: 61.9 + brightBlue: 64.4 + brightMagenta: 50.9 + brightCyan: 68.4 + brightWhite: 91.3 diff --git a/themes/minimal-dark.yaml b/themes/minimal-dark.yaml new file mode 100644 index 00000000..1922147e --- /dev/null +++ b/themes/minimal-dark.yaml @@ -0,0 +1,49 @@ +name: "Minimal Dark" +source: + marketplace_id: "ArturGuedx.minimaldark" + version: "0.0.2" + installs: 797 + author: "ArturGuedx" + repo: "https://github.com/ArturGuedes/MinimalDark" + url: "https://marketplace.visualstudio.com/items?itemName=ArturGuedx.minimaldark" +colors: + bg: "#3C3F41" + fg: "#999999" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 37.9 + black: 9.3 + red: 18.4 + green: 44.7 + yellow: 77.3 + blue: 19.1 + magenta: 21.5 + cyan: 39.3 + white: 81.7 + brightBlack: 13.7 + brightRed: 30.3 + brightGreen: 55.2 + brightYellow: 87.3 + brightBlue: 31.7 + brightMagenta: 37.1 + brightCyan: 47.1 + brightWhite: 81.7 diff --git a/themes/minimal-green.yaml b/themes/minimal-green.yaml new file mode 100644 index 00000000..546c3cfe --- /dev/null +++ b/themes/minimal-green.yaml @@ -0,0 +1,49 @@ +name: "minimal_green" +source: + marketplace_id: "moldaz.minimal-green" + version: "0.0.7" + installs: 11291 + author: "moldaz" + repo: "https://github.com/mdoyleaz/vs-code-theme-minimal_green" + url: "https://marketplace.visualstudio.com/items?itemName=moldaz.minimal-green" +colors: + bg: "#28282B" + fg: "#B2B3AA" + black: "#3B3A45" + red: "#AB5855" + green: "#59776B" + yellow: "#E6C18A" + blue: "#7CA3B2" + magenta: "#9E8BBA" + cyan: "#5EA899" + white: "#B2B3AA" + brightBlack: "#5E6469" + brightRed: "#AB5855" + brightGreen: "#59776B" + brightYellow: "#E6C18A" + brightBlue: "#7CA3B2" + brightMagenta: "#9E8BBA" + brightCyan: "#5EA899" + brightWhite: "#B2B3AA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 57.3 + black: 0 + red: 24.4 + green: 24.2 + yellow: 69 + blue: 45.8 + magenta: 40.8 + cyan: 44.8 + white: 57.3 + brightBlack: 18.3 + brightRed: 24.4 + brightGreen: 24.2 + brightYellow: 69 + brightBlue: 45.8 + brightMagenta: 40.8 + brightCyan: 44.8 + brightWhite: 57.3 diff --git a/themes/minimal-monochrome-dark.yaml b/themes/minimal-monochrome-dark.yaml new file mode 100644 index 00000000..a19713c5 --- /dev/null +++ b/themes/minimal-monochrome-dark.yaml @@ -0,0 +1,49 @@ +name: "Minimal Monochrome Dark" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.0" + installs: 166 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" +colors: + bg: "#121212" + fg: "#D4D4D4" + black: "#1A1A1A" + red: "#F5A3A7" + green: "#8BCFAC" + yellow: "#F0C674" + blue: "#89B4D4" + magenta: "#C9A5E0" + cyan: "#7DD4D0" + white: "#D0D0D0" + brightBlack: "#646464" + brightRed: "#FFB8BA" + brightGreen: "#A8E6C3" + brightYellow: "#FFE082" + brightBlue: "#A8D1F0" + brightMagenta: "#D9B8F0" + brightCyan: "#9DE5E0" + brightWhite: "#FCFCFC" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 79.9 + black: 0 + red: 64.1 + green: 68.5 + yellow: 75 + blue: 58.3 + magenta: 60.3 + cyan: 71.3 + white: 77.5 + brightBlack: 21.6 + brightRed: 74.1 + brightGreen: 82.6 + brightYellow: 88.8 + brightBlue: 75 + brightMagenta: 70.5 + brightCyan: 82.4 + brightWhite: 105.3 diff --git a/themes/minimal-monochrome-ink-dark.yaml b/themes/minimal-monochrome-ink-dark.yaml new file mode 100644 index 00000000..3475be43 --- /dev/null +++ b/themes/minimal-monochrome-ink-dark.yaml @@ -0,0 +1,49 @@ +name: "Minimal Monochrome Ink Dark" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.0" + installs: 166 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" +colors: + bg: "#1C1E22" + fg: "#D4D8DE" + black: "#1C1E22" + red: "#F5A3A7" + green: "#8BCFAC" + yellow: "#F0C674" + blue: "#89B4D4" + magenta: "#C9A5E0" + cyan: "#7DD4D0" + white: "#D0D0D0" + brightBlack: "#5A5F68" + brightRed: "#FFB8BA" + brightGreen: "#A8E6C3" + brightYellow: "#FFE082" + brightBlue: "#A8D1F0" + brightMagenta: "#D9B8F0" + brightCyan: "#9DE5E0" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 80.9 + black: 0 + red: 62.8 + green: 67.3 + yellow: 73.8 + blue: 57.1 + magenta: 59.1 + cyan: 70 + white: 76.2 + brightBlack: 18.1 + brightRed: 72.8 + brightGreen: 81.3 + brightYellow: 87.5 + brightBlue: 73.7 + brightMagenta: 69.3 + brightCyan: 81.1 + brightWhite: 103.3 diff --git a/themes/minimal-monochrome-ink-light.yaml b/themes/minimal-monochrome-ink-light.yaml new file mode 100644 index 00000000..353e0f54 --- /dev/null +++ b/themes/minimal-monochrome-ink-light.yaml @@ -0,0 +1,49 @@ +name: "Minimal Monochrome Ink Light" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.0" + installs: 166 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" +colors: + bg: "#FAFBFC" + fg: "#2C3038" + black: "#1A1A1A" + red: "#C97A7D" + green: "#5A9E6F" + yellow: "#B8893A" + blue: "#5A8FB8" + magenta: "#8B6BA8" + cyan: "#4A9EA8" + white: "#D0D0D0" + brightBlack: "#7A808A" + brightRed: "#B56B6B" + brightGreen: "#4D8B5E" + brightYellow: "#A67830" + brightBlue: "#4A7FA8" + brightMagenta: "#7D5D9A" + brightCyan: "#3D8F99" + brightWhite: "#FAFBFC" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 97.1 + black: 101.8 + red: 56.5 + green: 56.6 + yellow: 55.9 + blue: 59.6 + magenta: 68 + cyan: 55.4 + white: 22.5 + brightBlack: 64.6 + brightRed: 64.4 + brightGreen: 65.2 + brightYellow: 64 + brightBlue: 67.1 + brightMagenta: 74.2 + brightCyan: 62.4 + brightWhite: 0 diff --git a/themes/minimal-monochrome-pastel-dawn.yaml b/themes/minimal-monochrome-pastel-dawn.yaml new file mode 100644 index 00000000..05209b25 --- /dev/null +++ b/themes/minimal-monochrome-pastel-dawn.yaml @@ -0,0 +1,49 @@ +name: "Minimal Monochrome Pastel Dawn" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.0" + installs: 166 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" +colors: + bg: "#FAF4ED" + fg: "#575279" + black: "#1A1A1A" + red: "#C97A7D" + green: "#5A9E6F" + yellow: "#B8893A" + blue: "#5A8FB8" + magenta: "#8B6BA8" + cyan: "#4A9EA8" + white: "#D9D3CB" + brightBlack: "#797593" + brightRed: "#B56B6B" + brightGreen: "#4D8B5E" + brightYellow: "#A67830" + brightBlue: "#4A7FA8" + brightMagenta: "#7D5D9A" + brightCyan: "#3D8F99" + brightWhite: "#FAF4ED" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 79.1 + black: 98.2 + red: 52.9 + green: 53 + yellow: 52.3 + blue: 56 + magenta: 64.4 + cyan: 51.8 + white: 16.8 + brightBlack: 64.4 + brightRed: 60.8 + brightGreen: 61.6 + brightYellow: 60.4 + brightBlue: 63.5 + brightMagenta: 70.6 + brightCyan: 58.8 + brightWhite: 0 diff --git a/themes/minimal-monochrome-pastel-light.yaml b/themes/minimal-monochrome-pastel-light.yaml new file mode 100644 index 00000000..3a74a18e --- /dev/null +++ b/themes/minimal-monochrome-pastel-light.yaml @@ -0,0 +1,49 @@ +name: "Minimal Monochrome Pastel Light" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.0" + installs: 166 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" +colors: + bg: "#F8F6F2" + fg: "#575279" + black: "#1A1A1A" + red: "#C97A7D" + green: "#5A9E6F" + yellow: "#B8893A" + blue: "#5A8FB8" + magenta: "#8B6BA8" + cyan: "#4A9EA8" + white: "#D5D2CC" + brightBlack: "#797593" + brightRed: "#B56B6B" + brightGreen: "#4D8B5E" + brightYellow: "#A67830" + brightBlue: "#4A7FA8" + brightMagenta: "#7D5D9A" + brightCyan: "#3D8F99" + brightWhite: "#F8F6F2" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 79.9 + black: 99 + red: 53.7 + green: 53.8 + yellow: 53.1 + blue: 56.8 + magenta: 65.2 + cyan: 52.6 + white: 18.5 + brightBlack: 65.2 + brightRed: 61.6 + brightGreen: 62.4 + brightYellow: 61.2 + brightBlue: 64.3 + brightMagenta: 71.4 + brightCyan: 59.6 + brightWhite: 0 diff --git a/themes/minimal-monochrome-slate-dark.yaml b/themes/minimal-monochrome-slate-dark.yaml new file mode 100644 index 00000000..1b4dafd6 --- /dev/null +++ b/themes/minimal-monochrome-slate-dark.yaml @@ -0,0 +1,49 @@ +name: "Minimal Monochrome Slate Dark" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.0" + installs: 166 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" +colors: + bg: "#121212" + fg: "#EEEEEE" + black: "#1A1A1A" + red: "#F5A3A7" + green: "#8BCFAC" + yellow: "#F0C674" + blue: "#89B4D4" + magenta: "#C9A5E0" + cyan: "#7DD4D0" + white: "#D0D0D0" + brightBlack: "#646464" + brightRed: "#FFB8BA" + brightGreen: "#A8E6C3" + brightYellow: "#FFE082" + brightBlue: "#A8D1F0" + brightMagenta: "#D9B8F0" + brightCyan: "#9DE5E0" + brightWhite: "#FCFCFC" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 96.2 + black: 0 + red: 64.1 + green: 68.5 + yellow: 75 + blue: 58.3 + magenta: 60.3 + cyan: 71.3 + white: 77.5 + brightBlack: 21.6 + brightRed: 74.1 + brightGreen: 82.6 + brightYellow: 88.8 + brightBlue: 75 + brightMagenta: 70.5 + brightCyan: 82.4 + brightWhite: 105.3 diff --git a/themes/minimal-monochrome-slate-light.yaml b/themes/minimal-monochrome-slate-light.yaml new file mode 100644 index 00000000..a047f856 --- /dev/null +++ b/themes/minimal-monochrome-slate-light.yaml @@ -0,0 +1,49 @@ +name: "Minimal Monochrome Slate Light" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.0" + installs: 166 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" +colors: + bg: "#FCFCFC" + fg: "#000000" + black: "#1A1A1A" + red: "#C97A7D" + green: "#5A9E6F" + yellow: "#B8893A" + blue: "#5A8FB8" + magenta: "#8B6BA8" + cyan: "#4A9EA8" + white: "#D0D0D0" + brightBlack: "#646464" + brightRed: "#B56B6B" + brightGreen: "#4D8B5E" + brightYellow: "#A67830" + brightBlue: "#4A7FA8" + brightMagenta: "#7D5D9A" + brightCyan: "#3D8F99" + brightWhite: "#FCFCFC" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 104.2 + black: 102.5 + red: 57.2 + green: 57.3 + yellow: 56.6 + blue: 60.3 + magenta: 68.7 + cyan: 56.1 + white: 23.2 + brightBlack: 77.8 + brightRed: 65.1 + brightGreen: 65.9 + brightYellow: 64.7 + brightBlue: 67.8 + brightMagenta: 74.9 + brightCyan: 63.1 + brightWhite: 0 diff --git a/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml b/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml new file mode 100644 index 00000000..442c2605 --- /dev/null +++ b/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml @@ -0,0 +1,49 @@ +name: "Minimal Pastel Dark — Vibrant (Softer Yellow)" +source: + marketplace_id: "amirmajdi.minimal-themes-amirmajdi" + version: "1.0.7" + installs: 330 + author: "Amir Majdi" + repo: "https://github.com/Amir-Majdi/minimal-themes" + url: "https://marketplace.visualstudio.com/items?itemName=amirmajdi.minimal-themes-amirmajdi" +colors: + bg: "#0A0A0A" + fg: "#FFFFFF" + black: "#0A0A0A" + red: "#3A3A3D" + green: "#B7E4C7" + yellow: "#FFEFAA" + blue: "#A7C7E7" + magenta: "#D6B3FF" + cyan: "#BDE0FE" + white: "#FFFFFF" + brightBlack: "#1A1A1A" + brightRed: "#3A3A3D" + brightGreen: "#B7E4C7" + brightYellow: "#FFEFAA" + brightBlue: "#A7C7E7" + brightMagenta: "#D6B3FF" + brightCyan: "#BDE0FE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 107.7 + black: 0 + red: 0 + green: 83.7 + yellow: 97 + blue: 70.5 + magenta: 69.5 + cyan: 85 + white: 107.7 + brightBlack: 0 + brightRed: 0 + brightGreen: 83.7 + brightYellow: 97 + brightBlue: 70.5 + brightMagenta: 69.5 + brightCyan: 85 + brightWhite: 107.7 diff --git a/themes/minimal-theme.yaml b/themes/minimal-theme.yaml new file mode 100644 index 00000000..4b16b15e --- /dev/null +++ b/themes/minimal-theme.yaml @@ -0,0 +1,49 @@ +name: "Minimal Theme" +source: + marketplace_id: "optimizion.vscode-minimal-theme" + version: "0.0.2" + installs: 1841 + author: "optimizion" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=optimizion.vscode-minimal-theme" +colors: + bg: "#303030" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 70.6 + black: 0 + red: 22.6 + green: 48.9 + yellow: 81.5 + blue: 23.3 + magenta: 25.6 + cyan: 43.4 + white: 85.9 + brightBlack: 17.9 + brightRed: 34.4 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.9 + brightMagenta: 41.3 + brightCyan: 51.3 + brightWhite: 85.9 diff --git a/themes/minimal-wave-floral-dark.yaml b/themes/minimal-wave-floral-dark.yaml new file mode 100644 index 00000000..188ddcc6 --- /dev/null +++ b/themes/minimal-wave-floral-dark.yaml @@ -0,0 +1,49 @@ +name: "Minimal Wave - Floral Dark" +source: + marketplace_id: "annalifatou.minimal-wave" + version: "0.0.3" + installs: 5726 + author: "annalifatou" + repo: "https://github.com/annalifatou/minimal-wave" + url: "https://marketplace.visualstudio.com/items?itemName=annalifatou.minimal-wave" +colors: + bg: "#121316" + fg: "#FFFFFF" + black: "#000000" + red: "#A197E1" + green: "#45A361" + yellow: "#E2E60A" + blue: "#8EBFFF" + magenta: "#A197E1" + cyan: "#0E9594" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#A197E1" + brightGreen: "#5BA571" + brightYellow: "#E2E60A" + brightBlue: "#8EBFFF" + brightMagenta: "#A197E1" + brightCyan: "#0E9594" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.2 + black: 0 + red: 50.3 + green: 42.8 + yellow: 86 + blue: 65.7 + magenta: 50.3 + cyan: 37.4 + white: 107.2 + brightBlack: 0 + brightRed: 50.3 + brightGreen: 45 + brightYellow: 86 + brightBlue: 65.7 + brightMagenta: 50.3 + brightCyan: 37.4 + brightWhite: 107.2 diff --git a/themes/minimal-wave-floral-light.yaml b/themes/minimal-wave-floral-light.yaml new file mode 100644 index 00000000..74803846 --- /dev/null +++ b/themes/minimal-wave-floral-light.yaml @@ -0,0 +1,49 @@ +name: "Minimal Wave - Floral Light" +source: + marketplace_id: "annalifatou.minimal-wave" + version: "0.0.3" + installs: 5726 + author: "annalifatou" + repo: "https://github.com/annalifatou/minimal-wave" + url: "https://marketplace.visualstudio.com/items?itemName=annalifatou.minimal-wave" +colors: + bg: "#FFFFFF" + fg: "#121316" + black: "#000000" + red: "#A197E1" + green: "#45A361" + yellow: "#E2E60A" + blue: "#8EBFFF" + magenta: "#A197E1" + cyan: "#0E9594" + white: "#E4E4E4" + brightBlack: "#000000" + brightRed: "#A197E1" + brightGreen: "#5BA571" + brightYellow: "#E2E60A" + brightBlue: "#8EBFFF" + brightMagenta: "#A197E1" + brightCyan: "#0E9594" + brightWhite: "#E4E4E4" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 105.2 + black: 106 + red: 51 + green: 58.3 + yellow: 17 + blue: 36.1 + magenta: 51 + cyan: 63.6 + white: 13.5 + brightBlack: 106 + brightRed: 51 + brightGreen: 56.1 + brightYellow: 17 + brightBlue: 36.1 + brightMagenta: 51 + brightCyan: 63.6 + brightWhite: 13.5 diff --git a/themes/minimal.yaml b/themes/minimal.yaml new file mode 100644 index 00000000..c0ebf62e --- /dev/null +++ b/themes/minimal.yaml @@ -0,0 +1,49 @@ +name: "Minimal" +source: + marketplace_id: "EphraimAtta-Duncan.vscode-minimal-theme-dark" + version: "0.0.1" + installs: 1458 + author: "Ephraim Atta-Duncan" + repo: "https://github.com/dephraiim/minimal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=EphraimAtta-Duncan.vscode-minimal-theme-dark" +colors: + bg: "#2A2A29" + fg: "#CED3DB" + black: "#2A2A29" + red: "#F44336" + green: "#00E676" + yellow: "#FFDE03" + blue: "#206DAC" + magenta: "#FF0266" + cyan: "#00E676" + white: "#613F83" + brightBlack: "#232635" + brightRed: "#FB4934" + brightGreen: "#CACC53" + brightYellow: "#FABD2F" + brightBlue: "#00E676" + brightMagenta: "#DF6495" + brightCyan: "#8EC07C" + brightWhite: "#F9FBFC" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 75.8 + black: 0 + red: 34.9 + green: 70.5 + yellow: 83.5 + blue: 21.1 + magenta: 34.7 + cyan: 70.5 + white: 10.1 + brightBlack: 0 + brightRed: 37.3 + brightGreen: 68.3 + brightYellow: 69 + brightBlue: 70.5 + brightMagenta: 38.3 + brightCyan: 57.3 + brightWhite: 101.2 diff --git a/themes/minimalesque.yaml b/themes/minimalesque.yaml new file mode 100644 index 00000000..4cea85a2 --- /dev/null +++ b/themes/minimalesque.yaml @@ -0,0 +1,49 @@ +name: "minimalesque" +source: + marketplace_id: "y-software.minimalesque" + version: "0.0.4" + installs: 66 + author: "Yassin Software" + repo: "https://github.com/Yassine914/MinimalesqueTheme" + url: "https://marketplace.visualstudio.com/items?itemName=y-software.minimalesque" +colors: + bg: "#1B1F26" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 78.5 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.4 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/minimalist.yaml b/themes/minimalist.yaml new file mode 100644 index 00000000..36323aee --- /dev/null +++ b/themes/minimalist.yaml @@ -0,0 +1,49 @@ +name: "Minimalist" +source: + marketplace_id: "bchadwic.minimalist-theme-bchadwic" + version: "0.0.2" + installs: 253 + author: "bchadwic" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=bchadwic.minimalist-theme-bchadwic" +colors: + bg: "#000000" + fg: "#C4C4C4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 70.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/minimalistic-dark-theme.yaml b/themes/minimalistic-dark-theme.yaml new file mode 100644 index 00000000..616e73cf --- /dev/null +++ b/themes/minimalistic-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Minimalistic dark theme" +source: + marketplace_id: "Lerskk.minimalistic-dark-theme" + version: "0.0.11" + installs: 240 + author: "Lerskk" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Lerskk.minimalistic-dark-theme" +colors: + bg: "#171717" + fg: "#D4D4D4" + black: "#000000" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#FAE3B0" + blue: "#89B4FA" + magenta: "#CBA6F7" + cyan: "#B5E8E0" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#FAE3B0" + brightBlue: "#89DCEB" + brightMagenta: "#DDB6F2" + brightCyan: "#B5E8E0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 79.5 + black: 0 + red: 55.7 + green: 79.4 + yellow: 90.1 + blue: 60.1 + magenta: 61.9 + cyan: 85.6 + white: 79.5 + brightBlack: 22 + brightRed: 55.7 + brightGreen: 79.4 + brightYellow: 90.1 + brightBlue: 76.7 + brightMagenta: 70 + brightCyan: 85.6 + brightWhite: 90 diff --git a/themes/minimalisticdarktheme.yaml b/themes/minimalisticdarktheme.yaml new file mode 100644 index 00000000..7b4e346c --- /dev/null +++ b/themes/minimalisticdarktheme.yaml @@ -0,0 +1,49 @@ +name: "MinimalisticDarkTheme" +source: + marketplace_id: "MiguelLuisHernandezBrocat.minimalisticdarktheme" + version: "0.0.1" + installs: 253 + author: "Miguel Luis HernandezBrocat" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MiguelLuisHernandezBrocat.minimalisticdarktheme" +colors: + bg: "#0D0D17" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 80.2 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/minimalistik.yaml b/themes/minimalistik.yaml new file mode 100644 index 00000000..1c4afac9 --- /dev/null +++ b/themes/minimalistik.yaml @@ -0,0 +1,49 @@ +name: "Minimalistik" +source: + marketplace_id: "LeonardoKist.minimalistik-theme" + version: "0.0.1" + installs: 8437 + author: "Leonardo Kist" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LeonardoKist.minimalistik-theme" +colors: + bg: "#0D0F12" + fg: "#AEB2B2" + black: "#111418" + red: "#E35535" + green: "#00A884" + yellow: "#C7910C" + blue: "#11B7D4" + magenta: "#D46EC0" + cyan: "#38C7BD" + white: "#AEB2B2" + brightBlack: "#11B7D4" + brightRed: "#E35535" + brightGreen: "#00A884" + brightYellow: "#C7910C" + brightBlue: "#11B7D4" + brightMagenta: "#D46EC0" + brightCyan: "#38C7BD" + brightWhite: "#11B7D4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 59.8 + black: 0 + red: 37.3 + green: 45 + yellow: 47.8 + blue: 55 + magenta: 43.9 + cyan: 61.6 + white: 59.8 + brightBlack: 55 + brightRed: 37.3 + brightGreen: 45 + brightYellow: 47.8 + brightBlue: 55 + brightMagenta: 43.9 + brightCyan: 61.6 + brightWhite: 55 diff --git a/themes/minimalred.yaml b/themes/minimalred.yaml new file mode 100644 index 00000000..ec110297 --- /dev/null +++ b/themes/minimalred.yaml @@ -0,0 +1,49 @@ +name: "MinimalRed" +source: + marketplace_id: "psykeroe.psykeroe-minimalred-theme" + version: "0.0.2" + installs: 53 + author: "psykeroe" + repo: "https://github.com/psykeroe/psykeroe-minimalred-theme" + url: "https://marketplace.visualstudio.com/items?itemName=psykeroe.psykeroe-minimalred-theme" +colors: + bg: "#03050F" + fg: "#D2D7DF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + contrast: + fg: 82 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/miniml-dusk.yaml b/themes/miniml-dusk.yaml new file mode 100644 index 00000000..611f694d --- /dev/null +++ b/themes/miniml-dusk.yaml @@ -0,0 +1,49 @@ +name: "miniml-dusk" +source: + marketplace_id: "pantherandcub.miniml" + version: "4.3.0" + installs: 395 + author: "pantherandcub" + repo: "https://github.com/Panther-Cub/miniml" + url: "https://marketplace.visualstudio.com/items?itemName=pantherandcub.miniml" +colors: + bg: "#121212" + fg: "#B4B4B4" + black: "#404040" + red: "#C15A5A" + green: "#9EB88C" + yellow: "#C3E090" + blue: "#5A93BB" + magenta: "#5DC4AA" + cyan: "#57B3BD" + white: "#B4B4B4" + brightBlack: "#545454" + brightRed: "#C15A5A" + brightGreen: "#9EB88C" + brightYellow: "#C3E090" + brightBlue: "#5A93BB" + brightMagenta: "#5DC4AA" + brightCyan: "#57B3BD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 61.2 + black: 7.9 + red: 31.8 + green: 59 + yellow: 80.9 + blue: 40.7 + magenta: 60.5 + cyan: 53.5 + white: 61.2 + brightBlack: 15.1 + brightRed: 31.8 + brightGreen: 59 + brightYellow: 80.9 + brightBlue: 40.7 + brightMagenta: 60.5 + brightCyan: 53.5 + brightWhite: 107.3 diff --git a/themes/miniml-light.yaml b/themes/miniml-light.yaml new file mode 100644 index 00000000..785f26aa --- /dev/null +++ b/themes/miniml-light.yaml @@ -0,0 +1,49 @@ +name: "miniml-light" +source: + marketplace_id: "pantherandcub.miniml" + version: "4.3.0" + installs: 395 + author: "pantherandcub" + repo: "https://github.com/Panther-Cub/miniml" + url: "https://marketplace.visualstudio.com/items?itemName=pantherandcub.miniml" +colors: + bg: "#F8F9FA" + fg: "#2D4F4F" + black: "#424242" + red: "#8E3E3E" + green: "#2D5454" + yellow: "#4D5C2D" + blue: "#2B5461" + magenta: "#2D5461" + cyan: "#2B6B6F" + white: "#141414" + brightBlack: "#424242" + brightRed: "#8E3E3E" + brightGreen: "#2D5454" + brightYellow: "#4D5C2D" + brightBlue: "#2B5461" + brightMagenta: "#2D5461" + brightCyan: "#2B6B6F" + brightWhite: "#242424" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 86.8 + black: 89.7 + red: 80.9 + green: 85.1 + yellow: 81.6 + blue: 84.7 + magenta: 84.7 + cyan: 76.6 + white: 101.4 + brightBlack: 89.7 + brightRed: 80.9 + brightGreen: 85.1 + brightYellow: 81.6 + brightBlue: 84.7 + brightMagenta: 84.7 + brightCyan: 76.6 + brightWhite: 98.8 diff --git a/themes/miniml-midnight.yaml b/themes/miniml-midnight.yaml new file mode 100644 index 00000000..3b23ba68 --- /dev/null +++ b/themes/miniml-midnight.yaml @@ -0,0 +1,49 @@ +name: "miniml-midnight" +source: + marketplace_id: "pantherandcub.miniml" + version: "4.3.0" + installs: 395 + author: "pantherandcub" + repo: "https://github.com/Panther-Cub/miniml" + url: "https://marketplace.visualstudio.com/items?itemName=pantherandcub.miniml" +colors: + bg: "#000000" + fg: "#B4B4B4" + black: "#404040" + red: "#C15A5A" + green: "#9EB88C" + yellow: "#C3E090" + blue: "#5A93B8" + magenta: "#5DC4AA" + cyan: "#57B3BD" + white: "#B4B4B4" + brightBlack: "#545454" + brightRed: "#C15A5A" + brightGreen: "#9EB88C" + brightYellow: "#C3E090" + brightBlue: "#5A93B8" + brightMagenta: "#5DC4AA" + brightCyan: "#57B3BD" + brightWhite: "#B4B4B4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 61.8 + black: 8.5 + red: 32.4 + green: 59.6 + yellow: 81.5 + blue: 41.1 + magenta: 61.1 + cyan: 54.1 + white: 61.8 + brightBlack: 15.7 + brightRed: 32.4 + brightGreen: 59.6 + brightYellow: 81.5 + brightBlue: 41.1 + brightMagenta: 61.1 + brightCyan: 54.1 + brightWhite: 61.8 diff --git a/themes/minimus.yaml b/themes/minimus.yaml new file mode 100644 index 00000000..c79d1afc --- /dev/null +++ b/themes/minimus.yaml @@ -0,0 +1,49 @@ +name: "Minimus" +source: + marketplace_id: "spaceinvadev.minimus-theme" + version: "0.0.1" + installs: 1187 + author: "Mauro Paternina" + repo: "https://github.com/spaceinvadev/minimus-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=spaceinvadev.minimus-theme" +colors: + bg: "#FFFFFF" + fg: "#343A40" + black: "#343A40" + red: "#080808" + green: "#868E96" + yellow: "#868E96" + blue: "#343A40" + magenta: "#343A40" + cyan: "#343A40" + white: "#F8F9FA" + brightBlack: "#171A1D" + brightRed: "#080808" + brightGreen: "#868E96" + brightYellow: "#868E96" + brightBlue: "#343A40" + brightMagenta: "#343A40" + brightCyan: "#323232" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "indigo" + hue: null + contrast: + fg: 96.5 + black: 96.5 + red: 105.9 + green: 60.6 + yellow: 60.6 + blue: 96.5 + magenta: 96.5 + cyan: 96.5 + white: 0 + brightBlack: 104.3 + brightRed: 105.9 + brightGreen: 60.6 + brightYellow: 60.6 + brightBlue: 96.5 + brightMagenta: 96.5 + brightCyan: 99 + brightWhite: 0 diff --git a/themes/minitheme.yaml b/themes/minitheme.yaml new file mode 100644 index 00000000..a6b7b857 --- /dev/null +++ b/themes/minitheme.yaml @@ -0,0 +1,49 @@ +name: "MiniTheme" +source: + marketplace_id: "Orobiti.orobiti" + version: "1.0.0" + installs: 282 + author: "Orobiti" + repo: "https://github.com/MtheusR/MinimalTheme-Dark-VsCode" + url: "https://marketplace.visualstudio.com/items?itemName=Orobiti.orobiti" +colors: + bg: "#1A1B26" + fg: "#E4E1C4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 86.2 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/mink-dark-theme.yaml b/themes/mink-dark-theme.yaml new file mode 100644 index 00000000..5c366213 --- /dev/null +++ b/themes/mink-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "mink dark theme" +source: + marketplace_id: "minken.dark-m-theme" + version: "0.2.16" + installs: 289 + author: "minken" + repo: "git://https://github.com/magnushagglund/theme/repository" + url: "https://marketplace.visualstudio.com/items?itemName=minken.dark-m-theme" +colors: + bg: "#2D2D2D" + fg: "#84FABF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 85.7 + black: 0 + red: 23.3 + green: 49.6 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.6 + brightMagenta: 41.9 + brightCyan: 52 + brightWhite: 86.6 diff --git a/themes/minokai-kalel.yaml b/themes/minokai-kalel.yaml new file mode 100644 index 00000000..f64fe959 --- /dev/null +++ b/themes/minokai-kalel.yaml @@ -0,0 +1,49 @@ +name: "Minokai Kalel" +source: + marketplace_id: "gabrielvictordev.minokai" + version: "0.1.0" + installs: 77 + author: "gabrielvictordev" + repo: "https://github.com/gabrielvictorjs/minokai" + url: "https://marketplace.visualstudio.com/items?itemName=gabrielvictordev.minokai" +colors: + bg: "#191C25" + fg: "#A6ACCD" + black: "#2E313D" + red: "#CF8164" + green: "#76A065" + yellow: "#AB924C" + blue: "#8296B0" + magenta: "#A18DAF" + cyan: "#659EA2" + white: "#B5B4C9" + brightBlack: "#5B5F71" + brightRed: "#FE9F7C" + brightGreen: "#92C47E" + brightYellow: "#D2B45F" + brightBlue: "#A0B9D8" + brightMagenta: "#C6AED7" + brightCyan: "#7DC2C7" + brightWhite: "#F0ECFE" +meta: + mode: "dark" + accent: "orange" + hue: 271 + contrast: + fg: 56.5 + black: 0 + red: 43.6 + green: 43.5 + yellow: 43.3 + blue: 43.1 + magenta: 43.2 + cyan: 43.4 + white: 61.2 + brightBlack: 18.8 + brightRed: 62.1 + brightGreen: 61.7 + brightYellow: 61.8 + brightBlue: 61.7 + brightMagenta: 61.7 + brightCyan: 61.7 + brightWhite: 95.3 diff --git a/themes/minone.yaml b/themes/minone.yaml new file mode 100644 index 00000000..3760016d --- /dev/null +++ b/themes/minone.yaml @@ -0,0 +1,49 @@ +name: "Minone" +source: + marketplace_id: "miguelravila.minone" + version: "0.2.2" + installs: 2386 + author: "miguelravila" + repo: "https://github.com/MiguelRAvila/Minone" + url: "https://marketplace.visualstudio.com/items?itemName=miguelravila.minone" +colors: + bg: "#24272A" + fg: "#D8D8D8" + black: "#24272A" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D8D8D8" + brightBlack: "#D8D8D8" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.7 + black: 0 + red: 39.9 + green: 60.1 + yellow: 68.4 + blue: 52.5 + magenta: 42.9 + cyan: 52.4 + white: 79.7 + brightBlack: 79.7 + brightRed: 39.9 + brightGreen: 60.1 + brightYellow: 68.4 + brightBlue: 52.5 + brightMagenta: 42.9 + brightCyan: 52.4 + brightWhite: 79.7 diff --git a/themes/mint-chocolate.yaml b/themes/mint-chocolate.yaml new file mode 100644 index 00000000..42bcd37f --- /dev/null +++ b/themes/mint-chocolate.yaml @@ -0,0 +1,49 @@ +name: "Mint Chocolate" +source: + marketplace_id: "onulu.mint-chocolate" + version: "1.0.1" + installs: 577 + author: "onulu" + repo: "https://github.com/onulu/mint-chocolate-theme" + url: "https://marketplace.visualstudio.com/items?itemName=onulu.mint-chocolate" +colors: + bg: "#302721" + fg: "#C9D5D0" + black: "#241D1A" + red: "#E67A73" + green: "#84D4BC" + yellow: "#E5B088" + blue: "#66CFB9" + magenta: "#CE8179" + cyan: "#37B390" + white: "#C9D5D0" + brightBlack: "#4D3C33" + brightRed: "#E67A73" + brightGreen: "#84D4BC" + brightYellow: "#E5B088" + brightBlue: "#66CFB9" + brightMagenta: "#CE8179" + brightCyan: "#45C4A0" + brightWhite: "#F5FAF8" +meta: + mode: "dark" + accent: "orange" + hue: 56 + contrast: + fg: 75.8 + black: 0 + red: 44.2 + green: 67.9 + yellow: 62 + blue: 63.6 + magenta: 41.9 + cyan: 47.6 + white: 75.8 + brightBlack: 0 + brightRed: 44.2 + brightGreen: 67.9 + brightYellow: 62 + brightBlue: 63.6 + brightMagenta: 41.9 + brightCyan: 56.2 + brightWhite: 100.2 diff --git a/themes/mint-dark.yaml b/themes/mint-dark.yaml new file mode 100644 index 00000000..d1d15187 --- /dev/null +++ b/themes/mint-dark.yaml @@ -0,0 +1,49 @@ +name: "Mint Dark" +source: + marketplace_id: "marcbruederlin.mint-theme" + version: "0.1.2" + installs: 9168 + author: "Marc Brüderlin" + repo: "https://github.com/marcbruederlin/vscode-mint-theme" + url: "https://marketplace.visualstudio.com/items?itemName=marcbruederlin.mint-theme" +colors: + bg: "#060606" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/mintchoc-contrast.yaml b/themes/mintchoc-contrast.yaml new file mode 100644 index 00000000..e4210412 --- /dev/null +++ b/themes/mintchoc-contrast.yaml @@ -0,0 +1,49 @@ +name: "mintchoc-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0C0A08" + fg: "#BABABA" + black: "#1B1712" + red: "#BA0E2E" + green: "#9D8262" + yellow: "#008D62" + blue: "#00E08C" + magenta: "#9D8262" + cyan: "#008D62" + white: "#C7C7C7" + brightBlack: "#493D31" + brightRed: "#F03E5F" + brightGreen: "#C4B4A1" + brightYellow: "#00F3A9" + brightBlue: "#47FFBA" + brightMagenta: "#C4B4A1" + brightCyan: "#00F3A9" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65 + black: 0 + red: 21.3 + green: 37.8 + yellow: 33.1 + blue: 71.6 + magenta: 37.8 + cyan: 33.1 + white: 72.6 + brightBlack: 8 + brightRed: 37.6 + brightGreen: 62.9 + brightYellow: 82.2 + brightBlue: 89.8 + brightMagenta: 62.9 + brightCyan: 82.2 + brightWhite: 96 diff --git a/themes/mintchoc-light.yaml b/themes/mintchoc-light.yaml new file mode 100644 index 00000000..2723cd99 --- /dev/null +++ b/themes/mintchoc-light.yaml @@ -0,0 +1,49 @@ +name: "mintchoc-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#9D8262" + yellow: "#008D62" + blue: "#00E08C" + magenta: "#9D8262" + cyan: "#008D62" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C4B4A1" + brightYellow: "#00F3A9" + brightBlue: "#47FFBA" + brightMagenta: "#C4B4A1" + brightCyan: "#00F3A9" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 63.8 + yellow: 68.4 + blue: 31 + magenta: 63.8 + cyan: 68.4 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 39.3 + brightYellow: 21 + brightBlue: 13.9 + brightMagenta: 39.3 + brightCyan: 21 + brightWhite: 71.1 diff --git a/themes/mintchoc.yaml b/themes/mintchoc.yaml new file mode 100644 index 00000000..60549d33 --- /dev/null +++ b/themes/mintchoc.yaml @@ -0,0 +1,49 @@ +name: "mintchoc" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2B221C" + fg: "#BABABA" + black: "#3A2E26" + red: "#BA0E2E" + green: "#9D8262" + yellow: "#008D62" + blue: "#00E08C" + magenta: "#9D8262" + cyan: "#008D62" + white: "#C7C7C7" + brightBlack: "#695344" + brightRed: "#F03E5F" + brightGreen: "#C4B4A1" + brightYellow: "#00F3A9" + brightBlue: "#47FFBA" + brightMagenta: "#C4B4A1" + brightCyan: "#00F3A9" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "orange" + hue: 55 + contrast: + fg: 62.5 + black: 0 + red: 18.8 + green: 35.2 + yellow: 30.5 + blue: 69.1 + magenta: 35.2 + cyan: 30.5 + white: 70 + brightBlack: 14.4 + brightRed: 35.1 + brightGreen: 60.4 + brightYellow: 79.6 + brightBlue: 87.2 + brightMagenta: 60.4 + brightCyan: 79.6 + brightWhite: 93.4 diff --git a/themes/mintdark.yaml b/themes/mintdark.yaml new file mode 100644 index 00000000..fd672415 --- /dev/null +++ b/themes/mintdark.yaml @@ -0,0 +1,49 @@ +name: "MintDark" +source: + marketplace_id: "daniel-lvovsky.mintdark-theme" + version: "0.0.1" + installs: 2895 + author: "Daniel Lvovsky" + repo: "https://github.com/DanielLvovsky/MintDark/issues" + url: "https://marketplace.visualstudio.com/items?itemName=daniel-lvovsky.mintdark-theme" +colors: + bg: "#1D1D1D" + fg: "#D8E9E2" + black: "#333A38" + red: "#D76B6B" + green: "#A3BE8C" + yellow: "#E5C965" + blue: "#81C1A1" + magenta: "#CA83E4" + cyan: "#9BDAC6" + white: "#E5E9F0" + brightBlack: "#4C6A65" + brightRed: "#D76B6B" + brightGreen: "#A3BE8C" + brightYellow: "#E5C965" + brightBlue: "#81C1A1" + brightMagenta: "#CA83E4" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 89.3 + black: 0 + red: 39.1 + green: 61 + yellow: 73.2 + blue: 59.9 + magenta: 48.6 + cyan: 74.8 + white: 91.6 + brightBlack: 20.6 + brightRed: 39.1 + brightGreen: 61 + brightYellow: 73.2 + brightBlue: 59.9 + brightMagenta: 48.6 + brightCyan: 59.9 + brightWhite: 95.5 diff --git a/themes/minty-dark.yaml b/themes/minty-dark.yaml new file mode 100644 index 00000000..20dfd947 --- /dev/null +++ b/themes/minty-dark.yaml @@ -0,0 +1,49 @@ +name: "Minty Dark" +source: + marketplace_id: "ShanukaKFernando.Minty" + version: "1.0.2" + installs: 185 + author: "Shanuka Kavinda" + repo: "https://github.com/shanukavinda/Minty" + url: "https://marketplace.visualstudio.com/items?itemName=ShanukaKFernando.Minty" +colors: + bg: "#1E1E1F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.6 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/mirai.yaml b/themes/mirai.yaml new file mode 100644 index 00000000..ad648337 --- /dev/null +++ b/themes/mirai.yaml @@ -0,0 +1,49 @@ +name: "mirai" +source: + marketplace_id: "Volskaya.irrelevant" + version: "0.0.2" + installs: 33 + author: "Volskaya" + repo: "https://github.com/volskaya/irrelevant" + url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#1C1C1C" + red: "#FCF707" + green: "#FF1652" + yellow: "#FCF707" + blue: "#878787" + magenta: "#979797" + cyan: "#A6A6A6" + white: "#444444" + brightBlack: "#666666" + brightRed: "#FCF707" + brightGreen: "#FF1652" + brightYellow: "#DDDDDD" + brightBlue: "#878787" + brightMagenta: "#979797" + brightCyan: "#A6A6A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 96.8 + green: 36.8 + yellow: 96.8 + blue: 36.6 + magenta: 44.6 + cyan: 52.5 + white: 8.3 + brightBlack: 21.5 + brightRed: 96.8 + brightGreen: 36.8 + brightYellow: 84.4 + brightBlue: 36.6 + brightMagenta: 44.6 + brightCyan: 52.5 + brightWhite: 106.3 diff --git a/themes/miramare.yaml b/themes/miramare.yaml new file mode 100644 index 00000000..01dd21ea --- /dev/null +++ b/themes/miramare.yaml @@ -0,0 +1,49 @@ +name: "Miramare" +source: + marketplace_id: "FranciscoBach.miramare" + version: "0.0.2" + installs: 619 + author: "Francisco Bach" + repo: "https://github.com/franbach/miramare-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=FranciscoBach.miramare" +colors: + bg: "#2A2426" + fg: "#E6D6AC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.3 + black: 0 + red: 24.7 + green: 51 + yellow: 83.6 + blue: 25.4 + magenta: 27.8 + cyan: 45.6 + white: 88 + brightBlack: 20 + brightRed: 36.6 + brightGreen: 61.5 + brightYellow: 93.6 + brightBlue: 38 + brightMagenta: 43.4 + brightCyan: 53.4 + brightWhite: 88 diff --git a/themes/mist-theme.yaml b/themes/mist-theme.yaml new file mode 100644 index 00000000..e14fce1a --- /dev/null +++ b/themes/mist-theme.yaml @@ -0,0 +1,49 @@ +name: "Mist Theme" +source: + marketplace_id: "imalbert.conifer-theme" + version: "2.4.3" + installs: 1380 + author: "imalbert" + repo: "https://github.com/imalbert/conifer-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=imalbert.conifer-theme" +colors: + bg: "#36424C" + fg: "#C4CFD3" + black: "#44535F" + red: "#C96E54" + green: "#57B2B0" + yellow: "#57B2B0" + blue: "#95A8B1" + magenta: "#C4CFD4" + cyan: "#57B2B0" + white: "#C4CFD3" + brightBlack: "#C4CFD3" + brightRed: "#C96E54" + brightGreen: "#57B2B0" + brightYellow: "#57B2B0" + brightBlue: "#95A8B1" + brightMagenta: "#C4CFD4" + brightCyan: "#6AC8BF" + brightWhite: "#9FDCD5" +meta: + mode: "dark" + accent: "orange" + hue: 244 + contrast: + fg: 66.3 + black: 0 + red: 28.5 + green: 43.1 + yellow: 43.1 + blue: 43.5 + magenta: 66.4 + cyan: 43.1 + white: 66.3 + brightBlack: 66.3 + brightRed: 28.5 + brightGreen: 43.1 + brightYellow: 43.1 + brightBlue: 43.5 + brightMagenta: 66.4 + brightCyan: 54.5 + brightWhite: 68.4 diff --git a/themes/mist.yaml b/themes/mist.yaml new file mode 100644 index 00000000..84401505 --- /dev/null +++ b/themes/mist.yaml @@ -0,0 +1,49 @@ +name: "Mist" +source: + marketplace_id: "florentrougier.misty" + version: "0.1.0" + installs: 346 + author: "Florent ROUGIER" + repo: "https://github.com/Flo-Rougier/misty" + url: "https://marketplace.visualstudio.com/items?itemName=florentrougier.misty" +colors: + bg: "#1A2730" + fg: "#FBE179" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 239 + contrast: + fg: 86 + black: 0 + red: 24.7 + green: 51 + yellow: 83.6 + blue: 25.4 + magenta: 27.8 + cyan: 45.6 + white: 88 + brightBlack: 20 + brightRed: 36.6 + brightGreen: 61.5 + brightYellow: 93.6 + brightBlue: 38 + brightMagenta: 43.4 + brightCyan: 53.4 + brightWhite: 88 diff --git a/themes/misterioso.yaml b/themes/misterioso.yaml new file mode 100644 index 00000000..e3d9d06d --- /dev/null +++ b/themes/misterioso.yaml @@ -0,0 +1,49 @@ +name: "Misterioso" +source: + marketplace_id: "rkcy.misterioso-theme" + version: "0.1.0" + installs: 58 + author: "Rakesh C" + repo: "https://github.com/rkcy/misterioso-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rkcy.misterioso-theme" +colors: + bg: "#415160" + fg: "#E1E1E0" + black: "#000000" + red: "#EE675A" + green: "#90B881" + yellow: "#F5BD52" + blue: "#599C97" + magenta: "#9A42E2" + cyan: "#67D9DD" + white: "#E6E6E6" + brightBlack: "#676767" + brightRed: "#EE5A59" + brightGreen: "#96D084" + brightYellow: "#F6C654" + brightBlue: "#67D9DD" + brightMagenta: "#EE69F7" + brightCyan: "#66EAE5" + brightWhite: "#FEFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 247 + contrast: + fg: 73.5 + black: 15.7 + red: 29.2 + green: 43 + yellow: 57.3 + blue: 28 + magenta: 13.4 + cyan: 58.5 + white: 76.7 + brightBlack: 8.5 + brightRed: 26.5 + brightGreen: 54.2 + brightYellow: 61.1 + brightBlue: 58.5 + brightMagenta: 36.4 + brightCyan: 67.1 + brightWhite: 92.7 diff --git a/themes/misty-blue.yaml b/themes/misty-blue.yaml new file mode 100644 index 00000000..f9e93a0a --- /dev/null +++ b/themes/misty-blue.yaml @@ -0,0 +1,49 @@ +name: "Misty Blue" +source: + marketplace_id: "d33f2gmbrsg2mlf32hg27to6utjbqm52vmxqbxml6x25odnimcoq.MistyBlue" + version: "0.0.6" + installs: 2318 + author: "Yashwanth Byalla" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=d33f2gmbrsg2mlf32hg27to6utjbqm52vmxqbxml6x25odnimcoq.MistyBlue" +colors: + bg: "#0A0A0A" + fg: "#AF8BFF" + black: "#FFFFFF" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 50.5 + black: 107.7 + red: 39.5 + green: 87 + yellow: 92.2 + blue: 38.3 + magenta: 46.1 + cyan: 77 + white: 52.3 + brightBlack: 22.9 + brightRed: 48 + brightGreen: 93.4 + brightYellow: 80.3 + brightBlue: 72.4 + brightMagenta: 67.7 + brightCyan: 90.5 + brightWhite: 73.7 diff --git a/themes/mistywind.yaml b/themes/mistywind.yaml new file mode 100644 index 00000000..a19bff7f --- /dev/null +++ b/themes/mistywind.yaml @@ -0,0 +1,49 @@ +name: "MistyWind" +source: + marketplace_id: "priteshlad3.katanax" + version: "0.0.1" + installs: 9 + author: "priteshlad3" + repo: "https://github.com/pritesh88/katanax-theme" + url: "https://marketplace.visualstudio.com/items?itemName=priteshlad3.katanax" +colors: + bg: "#0A1F30" + fg: "#BDE8F8" + black: "#0D2438" + red: "#FF8BB0" + green: "#5ADBC0" + yellow: "#5BB8D4" + blue: "#2A7FA8" + magenta: "#8ACFE8" + cyan: "#3AAAC8" + white: "#8ACFE8" + brightBlack: "#163550" + brightRed: "#FFB0C8" + brightGreen: "#7AEBD8" + brightYellow: "#8ACFE8" + brightBlue: "#3A9AC0" + brightMagenta: "#A8E0F0" + brightCyan: "#5BBCD8" + brightWhite: "#BDE8F8" +meta: + mode: "dark" + accent: "red" + hue: 246 + contrast: + fg: 86.7 + black: 0 + red: 57.5 + green: 70.7 + yellow: 55.7 + blue: 29.1 + magenta: 69.8 + cyan: 47.9 + white: 69.8 + brightBlack: 0 + brightRed: 70.4 + brightGreen: 81.2 + brightYellow: 69.8 + brightBlue: 41 + brightMagenta: 80.5 + brightCyan: 57.7 + brightWhite: 86.7 diff --git a/themes/mitaverse.yaml b/themes/mitaverse.yaml new file mode 100644 index 00000000..16781955 --- /dev/null +++ b/themes/mitaverse.yaml @@ -0,0 +1,49 @@ +name: "Mitaverse" +source: + marketplace_id: "Jipyyes.jipy-mitaverse" + version: "0.1.2" + installs: 162 + author: "Jipy" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Jipyyes.jipy-mitaverse" +colors: + bg: "#200315" + fg: "#FEFE55" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 345 + contrast: + fg: 101.9 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.8 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/mitsuri-kanroji.yaml b/themes/mitsuri-kanroji.yaml new file mode 100644 index 00000000..338d8fd4 --- /dev/null +++ b/themes/mitsuri-kanroji.yaml @@ -0,0 +1,49 @@ +name: "Mitsuri Kanroji" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 738 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" +colors: + bg: "#0F172A" + fg: "#D1D5DB" + black: "#0F172A" + red: "#EF4444" + green: "#A3E635" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#8B5CF6" + cyan: "#14B8A6" + white: "#E5E7EB" + brightBlack: "#6B7280" + brightRed: "#F472B6" + brightGreen: "#A7F3D0" + brightYellow: "#FCD34D" + brightBlue: "#60A5FA" + brightMagenta: "#D8B4FE" + brightCyan: "#6EE7B7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 266 + contrast: + fg: 79.8 + black: 0 + red: 36.7 + green: 78.6 + yellow: 59.3 + blue: 36.7 + magenta: 31.8 + cyan: 52.6 + white: 91.1 + brightBlack: 27 + brightRed: 49.8 + brightGreen: 88.8 + brightYellow: 81.3 + brightBlue: 51.3 + brightMagenta: 69.2 + brightCyan: 78 + brightWhite: 106.8 diff --git a/themes/mixed-solarized-light.yaml b/themes/mixed-solarized-light.yaml new file mode 100644 index 00000000..c39d0246 --- /dev/null +++ b/themes/mixed-solarized-light.yaml @@ -0,0 +1,49 @@ +name: "Mixed Solarized Light" +source: + marketplace_id: "imkasen.vscode-solarized-light-enhanced" + version: "0.6.3" + installs: 52 + author: "Kasen" + repo: "https://github.com/imkasen/vscode-solarized-light-enhanced" + url: "https://marketplace.visualstudio.com/items?itemName=imkasen.vscode-solarized-light-enhanced" +colors: + bg: "#FDF6E3" + fg: "#53676D" + black: "#073642" + red: "#CC1729" + green: "#428B00" + yellow: "#A78300" + blue: "#006DCE" + magenta: "#C44392" + cyan: "#00978A" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#D33682" + brightCyan: "#2AA198" + brightWhite: "#FBF3DB" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 74.5 + black: 93.7 + red: 70.8 + green: 63.8 + yellow: 57.8 + blue: 69.5 + magenta: 65.8 + cyan: 58 + white: 0 + brightBlack: 71.6 + brightRed: 65.3 + brightGreen: 53.8 + brightYellow: 53.8 + brightBlue: 58.7 + brightMagenta: 65 + brightCyan: 53.1 + brightWhite: 0 diff --git a/themes/mk-iceblack.yaml b/themes/mk-iceblack.yaml new file mode 100644 index 00000000..edbfee58 --- /dev/null +++ b/themes/mk-iceblack.yaml @@ -0,0 +1,49 @@ +name: "mk iceBlack" +source: + marketplace_id: "dev-mk02.theme-mk" + version: "0.6.0" + installs: 36 + author: "mk-02" + repo: "https://github.com/leeminki02/theme-mk" + url: "https://marketplace.visualstudio.com/items?itemName=dev-mk02.theme-mk" +colors: + bg: "#2F2F2F" + fg: "#CDCECE" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F48946" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 71.9 + black: 0 + red: 40.2 + green: 66.1 + yellow: 62.7 + blue: 56.7 + magenta: 56.7 + cyan: 74 + white: 67.8 + brightBlack: 19 + brightRed: 49 + brightGreen: 69.4 + brightYellow: 65.7 + brightBlue: 59.5 + brightMagenta: 59.5 + brightCyan: 77 + brightWhite: 103 diff --git a/themes/mk-mono-dark.yaml b/themes/mk-mono-dark.yaml new file mode 100644 index 00000000..e697f69b --- /dev/null +++ b/themes/mk-mono-dark.yaml @@ -0,0 +1,49 @@ +name: "MK Mono Dark" +source: + marketplace_id: "mvtkvm.mk-mono" + version: "1.0.0" + installs: 966 + author: "MVTKVM" + repo: "https://github.com/matkammusic/mk-mono" + url: "https://marketplace.visualstudio.com/items?itemName=mvtkvm.mk-mono" +colors: + bg: "#000000" + fg: "#AAAAAA" + black: "#000000" + red: "#808080" + green: "#4D4D4D" + yellow: "#AAAAAA" + blue: "#333333" + magenta: "#999999" + cyan: "#666666" + white: "#CCCCCC" + brightBlack: "#1A1A1A" + brightRed: "#808080" + brightGreen: "#4D4D4D" + brightYellow: "#AAAAAA" + brightBlue: "#333333" + brightMagenta: "#999999" + brightCyan: "#666666" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 56.2 + black: 0 + red: 34.8 + green: 13.1 + yellow: 56.2 + blue: 0 + magenta: 47.2 + cyan: 23 + white: 75.7 + brightBlack: 0 + brightRed: 34.8 + brightGreen: 13.1 + brightYellow: 56.2 + brightBlue: 0 + brightMagenta: 47.2 + brightCyan: 23 + brightWhite: 107.9 diff --git a/themes/mk-mono-light.yaml b/themes/mk-mono-light.yaml new file mode 100644 index 00000000..bd519f1b --- /dev/null +++ b/themes/mk-mono-light.yaml @@ -0,0 +1,49 @@ +name: "MK Mono Light" +source: + marketplace_id: "mvtkvm.mk-mono" + version: "1.0.0" + installs: 966 + author: "MVTKVM" + repo: "https://github.com/matkammusic/mk-mono" + url: "https://marketplace.visualstudio.com/items?itemName=mvtkvm.mk-mono" +colors: + bg: "#EBEBEB" + fg: "#515151" + black: "#EBEBEB" + red: "#7E7E7E" + green: "#A9A9A9" + yellow: "#525252" + blue: "#BFBFBF" + magenta: "#686868" + cyan: "#939393" + white: "#3C3C3C" + brightBlack: "#D5D5D5" + brightRed: "#7E7E7E" + brightGreen: "#A9A9A9" + brightYellow: "#525252" + brightBlue: "#BFBFBF" + brightMagenta: "#686868" + brightCyan: "#939393" + brightWhite: "#101010" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 75.7 + black: 0 + red: 56 + green: 34.5 + yellow: 75.3 + blue: 22.7 + magenta: 66 + cyan: 45.8 + white: 83.7 + brightBlack: 10.3 + brightRed: 56 + brightGreen: 34.5 + brightYellow: 75.3 + brightBlue: 22.7 + brightMagenta: 66 + brightCyan: 45.8 + brightWhite: 93.6 diff --git a/themes/mkanet.yaml b/themes/mkanet.yaml new file mode 100644 index 00000000..2ffd28d9 --- /dev/null +++ b/themes/mkanet.yaml @@ -0,0 +1,49 @@ +name: "MKANET" +source: + marketplace_id: "MKANET.mkanet-theme" + version: "0.1.9" + installs: 437 + author: "Michael K. Avanessian" + repo: "https://github.com/mkanet/MKANET-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MKANET.mkanet-theme" +colors: + bg: "#C0C0C0" + fg: "#464668" + black: "#000000" + red: "#C23621" + green: "#25BC24" + yellow: "#ADAD27" + blue: "#492EE1" + magenta: "#D338D3" + cyan: "#33BBC8" + white: "#CBCCCD" + brightBlack: "#818383" + brightRed: "#FC391F" + brightGreen: "#31E722" + brightYellow: "#EAEC23" + brightBlue: "#5833FF" + brightMagenta: "#F935F8" + brightCyan: "#14F0F0" + brightWhite: "#E9EBEB" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 54.5 + black: 69.9 + red: 39.8 + green: 12.8 + yellow: 10.8 + blue: 49 + magenta: 29.7 + cyan: 9 + white: 0 + brightBlack: 29.5 + brightRed: 26.2 + brightGreen: 0 + brightYellow: 20.8 + brightBlue: 43.8 + brightMagenta: 19.4 + brightCyan: 13.9 + brightWhite: 24.8 diff --git a/themes/mkdeveloper-theme.yaml b/themes/mkdeveloper-theme.yaml new file mode 100644 index 00000000..4942485c --- /dev/null +++ b/themes/mkdeveloper-theme.yaml @@ -0,0 +1,49 @@ +name: "MKDeveloper Theme" +source: + marketplace_id: "mukunthan.mkdeveloper-theme" + version: "0.0.1" + installs: 145 + author: "mukunthan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mukunthan.mkdeveloper-theme" +colors: + bg: "#000E26" + fg: "#FF8300" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 255 + contrast: + fg: 53.6 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/mlia-dark.yaml b/themes/mlia-dark.yaml new file mode 100644 index 00000000..2786119a --- /dev/null +++ b/themes/mlia-dark.yaml @@ -0,0 +1,49 @@ +name: "mlia-dark" +source: + marketplace_id: "grdthh.mliaa" + version: "0.2.0" + installs: 192 + author: "grdthh" + repo: "https://github.com/hashyael/mlia" + url: "https://marketplace.visualstudio.com/items?itemName=grdthh.mliaa" +colors: + bg: "#171717" + fg: "#AAAAAA" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 55.2 + black: 8.1 + red: 33 + green: 61.7 + yellow: 76.4 + blue: 48.6 + magenta: 46.5 + cyan: 62.7 + white: 92.3 + brightBlack: 15.4 + brightRed: 33 + brightGreen: 61.7 + brightYellow: 76.4 + brightBlue: 48.6 + brightMagenta: 46.5 + brightCyan: 60.6 + brightWhite: 96.2 diff --git a/themes/mlia-light.yaml b/themes/mlia-light.yaml new file mode 100644 index 00000000..e5ee884f --- /dev/null +++ b/themes/mlia-light.yaml @@ -0,0 +1,49 @@ +name: "mlia-light" +source: + marketplace_id: "grdthh.mliaa" + version: "0.2.0" + installs: 192 + author: "grdthh" + repo: "https://github.com/hashyael/mlia" + url: "https://marketplace.visualstudio.com/items?itemName=grdthh.mliaa" +colors: + bg: "#EBEBEB" + fg: "#515151" + black: "#3B4252" + red: "#BF616A" + green: "#6F9650" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#6F9650" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 75.7 + black: 81.5 + red: 55.8 + green: 49.7 + yellow: 13.8 + blue: 40.4 + magenta: 42.5 + cyan: 26.8 + white: 0 + brightBlack: 73.8 + brightRed: 55.8 + brightGreen: 49.7 + brightYellow: 13.8 + brightBlue: 40.4 + brightMagenta: 42.5 + brightCyan: 28.8 + brightWhite: 0 diff --git a/themes/mlia-soft.yaml b/themes/mlia-soft.yaml new file mode 100644 index 00000000..35438932 --- /dev/null +++ b/themes/mlia-soft.yaml @@ -0,0 +1,49 @@ +name: "mlia-soft" +source: + marketplace_id: "grdthh.mliaa" + version: "0.2.0" + installs: 192 + author: "grdthh" + repo: "https://github.com/hashyael/mlia" + url: "https://marketplace.visualstudio.com/items?itemName=grdthh.mliaa" +colors: + bg: "#222222" + fg: "#CCCCCC" + black: "#333333" + red: "#F7A597" + green: "#CFE8B7" + yellow: "#E1E0C8" + blue: "#75CAF2" + magenta: "#F1D6DD" + cyan: "#DBDCF3" + white: "#CCCCCC" + brightBlack: "#959595" + brightRed: "#F7A597" + brightGreen: "#D7E3CD" + brightYellow: "#E1E0C8" + brightBlue: "#CCE1F1" + brightMagenta: "#F1D6DD" + brightCyan: "#DBDCF3" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 73.2 + black: 0 + red: 62.8 + green: 85.4 + yellow: 84.6 + blue: 66.1 + magenta: 83.4 + cyan: 83.9 + white: 73.2 + brightBlack: 42.7 + brightRed: 62.8 + brightGreen: 84.8 + brightYellow: 84.6 + brightBlue: 84.2 + brightMagenta: 83.4 + brightCyan: 83.9 + brightWhite: 94.3 diff --git a/themes/mlv60-vintage-light.yaml b/themes/mlv60-vintage-light.yaml new file mode 100644 index 00000000..3ae86fca --- /dev/null +++ b/themes/mlv60-vintage-light.yaml @@ -0,0 +1,49 @@ +name: "mlv60 vintage light" +source: + marketplace_id: "mlv60.mlv60-vintage-light" + version: "1.0.0" + installs: 107 + author: "mlv60" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mlv60.mlv60-vintage-light" +colors: + bg: "#FFF7D6" + fg: "#1F040C" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 100.4 + black: 101 + red: 68.9 + green: 44.2 + yellow: 52.9 + blue: 81 + magenta: 69.5 + cyan: 55.6 + white: 80.9 + brightBlack: 73.7 + brightRed: 68.9 + brightGreen: 35.9 + brightYellow: 35.9 + brightBlue: 81 + brightMagenta: 69.5 + brightCyan: 55.6 + brightWhite: 43.4 diff --git a/themes/mocaccino-light.yaml b/themes/mocaccino-light.yaml new file mode 100644 index 00000000..214cf348 --- /dev/null +++ b/themes/mocaccino-light.yaml @@ -0,0 +1,49 @@ +name: "Mocaccino Light" +source: + marketplace_id: "unbotheredbill.mocaccino-light" + version: "1.0.2" + installs: 53 + author: "unbotheredbill" + repo: "https://github.com/unbotheredbill/mocaccino-light" + url: "https://marketplace.visualstudio.com/items?itemName=unbotheredbill.mocaccino-light" +colors: + bg: "#FAF4E8" + fg: "#6B5344" + black: "#6B5344" + red: "#B86B5C" + green: "#7A9A5A" + yellow: "#B89A4A" + blue: "#5A8AAA" + magenta: "#9A7ABB" + cyan: "#6A9A9A" + white: "#FAF4E8" + brightBlack: "#9A8878" + brightRed: "#CC8878" + brightGreen: "#99B87A" + brightYellow: "#CCAA5A" + brightBlue: "#7AAACC" + brightMagenta: "#BB99CC" + brightCyan: "#8ABBBB" + brightWhite: "#FFFDF8" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 78.4 + black: 78.4 + red: 60.5 + green: 52.7 + yellow: 46.1 + blue: 58.4 + magenta: 57 + cyan: 52 + white: 0 + brightBlack: 55.3 + brightRed: 48.2 + brightGreen: 37.2 + brightYellow: 37.3 + brightBlue: 42.5 + brightMagenta: 42 + brightCyan: 35.2 + brightWhite: 0 diff --git a/themes/moderate-dimm.yaml b/themes/moderate-dimm.yaml new file mode 100644 index 00000000..cb81fccd --- /dev/null +++ b/themes/moderate-dimm.yaml @@ -0,0 +1,49 @@ +name: "Moderate Dimm" +source: + marketplace_id: "Ivnjey.theme-by-ivnjey" + version: "0.0.4" + installs: 18 + author: "Ivnjey" + repo: "https://github.com/Ivnjey/theme-by-ivnjey" + url: "https://marketplace.visualstudio.com/items?itemName=Ivnjey.theme-by-ivnjey" +colors: + bg: "#1B222A" + fg: "#DBDCDC" + black: "#000000" + red: "#FF2348" + green: "#ADDB67" + yellow: "#ECC48D" + blue: "#407DFF" + magenta: "#9F60EC" + cyan: "#11A8CD" + white: "#E5E7EB" + brightBlack: "#637777" + brightRed: "#FF5874" + brightGreen: "#8FB05E" + brightYellow: "#DCDCAA" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#29B8DB" + brightWhite: "#BBBEC4" +meta: + mode: "dark" + accent: "orange" + hue: 252 + contrast: + fg: 82.9 + black: 0 + red: 36.4 + green: 73.6 + yellow: 72.4 + blue: 34.8 + magenta: 33.2 + cyan: 46.2 + white: 89.9 + brightBlack: 26.5 + brightRed: 43.2 + brightGreen: 51.4 + brightYellow: 81.2 + brightBlue: 54.6 + brightMagenta: 52.4 + brightCyan: 54.1 + brightWhite: 65 diff --git a/themes/modern-dracula.yaml b/themes/modern-dracula.yaml new file mode 100644 index 00000000..7895c34e --- /dev/null +++ b/themes/modern-dracula.yaml @@ -0,0 +1,49 @@ +name: "Modern Dracula" +source: + marketplace_id: "LucasLomiento.modern-dracula-theme" + version: "1.2.0" + installs: 760 + author: "Lucas Lomiento" + repo: "https://github.com/LucasLomiento/modern-dracula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LucasLomiento.modern-dracula-theme" +colors: + bg: "#101012" + fg: "#EC6AB3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 46.9 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/modern-github-white-purple.yaml b/themes/modern-github-white-purple.yaml new file mode 100644 index 00000000..4b8f4859 --- /dev/null +++ b/themes/modern-github-white-purple.yaml @@ -0,0 +1,49 @@ +name: "Modern GitHub | White & Purple" +source: + marketplace_id: "LucasLomiento.modern-dracula-theme" + version: "1.2.0" + installs: 760 + author: "Lucas Lomiento" + repo: "https://github.com/LucasLomiento/modern-dracula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LucasLomiento.modern-dracula-theme" +colors: + bg: "#101012" + fg: "#F4F0E0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 97.4 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/moderneclipse.yaml b/themes/moderneclipse.yaml new file mode 100644 index 00000000..75a1a659 --- /dev/null +++ b/themes/moderneclipse.yaml @@ -0,0 +1,49 @@ +name: "ModernEclipse" +source: + marketplace_id: "Cydo.moderneclipse" + version: "0.1.0" + installs: 176 + author: "Cydo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Cydo.moderneclipse" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#E0382C" + green: "#87BC1C" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#DD2867" + cyan: "#1290C3" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FD5A4E" + brightGreen: "#A7EC21" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#FF2B75" + brightCyan: "#66E1F8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 103.3 + black: 0 + red: 30.4 + green: 55.3 + yellow: 77.7 + blue: 54.7 + magenta: 29.3 + cyan: 36.2 + white: 105.6 + brightBlack: 9.7 + brightRed: 42.4 + brightGreen: 80.7 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 37.9 + brightCyan: 76.4 + brightWhite: 105.6 diff --git a/themes/modernui-fork.yaml b/themes/modernui-fork.yaml new file mode 100644 index 00000000..e1fd5638 --- /dev/null +++ b/themes/modernui-fork.yaml @@ -0,0 +1,49 @@ +name: "ModernUI - Fork" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29903 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" +colors: + bg: "#171616" + fg: "#D9D9D9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 82.6 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 29.2 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/modest-pink.yaml b/themes/modest-pink.yaml new file mode 100644 index 00000000..2e195044 --- /dev/null +++ b/themes/modest-pink.yaml @@ -0,0 +1,49 @@ +name: "Modest pink" +source: + marketplace_id: "GabbyCostlow.modest-pink-theme" + version: "0.0.1" + installs: 137 + author: "Gabby Costlow" + repo: "https://github.com/gcostlow/Modest-Pink-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=GabbyCostlow.modest-pink-theme" +colors: + bg: "#FFF5EC" + fg: "#000000" + black: "#000000" + red: "#CD5E5E" + green: "#7BC07B" + yellow: "#9DA106" + blue: "#8CA4BE" + magenta: "#A763A7" + cyan: "#57B2C9" + white: "#6D6D6D" + brightBlack: "#666666" + brightRed: "#DB6565" + brightGreen: "#4AE04A" + brightYellow: "#B5BA00" + brightBlue: "#69A7EA" + brightMagenta: "#BC64BC" + brightCyan: "#85D3E6" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 101 + black: 101 + red: 61 + green: 37.5 + yellow: 48.5 + blue: 45.2 + magenta: 63.8 + cyan: 42.7 + white: 70.6 + brightBlack: 73.7 + brightRed: 56.6 + brightGreen: 26.1 + brightYellow: 35.9 + brightBlue: 44.3 + brightMagenta: 59.1 + brightCyan: 24.8 + brightWhite: 43.4 diff --git a/themes/modified-darker-material-theme.yaml b/themes/modified-darker-material-theme.yaml new file mode 100644 index 00000000..ffcfb7e7 --- /dev/null +++ b/themes/modified-darker-material-theme.yaml @@ -0,0 +1,49 @@ +name: "Modified Darker Material Theme" +source: + marketplace_id: "k-r.modified-darker-material-theme" + version: "0.0.1" + installs: 839 + author: "k-r" + repo: "https://github.com/KevinRamsunder/material-theme-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=k-r.modified-darker-material-theme" +colors: + bg: "#1F2123" + fg: "#FFFFFF" + black: "#B0BEC5" + red: "#FF5370" + green: "#B9F6CA" + yellow: "#FFCB6B" + blue: "#80D8FF" + magenta: "#C792EA" + cyan: "#A7FDEB" + white: "#565758" + brightBlack: "#565758" + brightRed: "#FF5370" + brightGreen: "#B9F6CA" + brightYellow: "#FFCB6B" + brightBlue: "#80D8FF" + brightMagenta: "#C792EA" + brightCyan: "#A7FDEB" + brightWhite: "#565758" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 105.7 + black: 63.9 + red: 42.4 + green: 90.6 + yellow: 77.7 + blue: 74.1 + magenta: 52.5 + cyan: 93.8 + white: 14.6 + brightBlack: 14.6 + brightRed: 42.4 + brightGreen: 90.6 + brightYellow: 77.7 + brightBlue: 74.1 + brightMagenta: 52.5 + brightCyan: 93.8 + brightWhite: 14.6 diff --git a/themes/modus-operandi-deuteranopia.yaml b/themes/modus-operandi-deuteranopia.yaml new file mode 100644 index 00000000..ecdd0399 --- /dev/null +++ b/themes/modus-operandi-deuteranopia.yaml @@ -0,0 +1,49 @@ +name: "Modus Operandi Deuteranopia" +source: + marketplace_id: "tukinami-seika.modus-t" + version: "0.0.1" + installs: 87 + author: "月波 清火" + repo: "https://github.com/tukinami/vscode-modus-t" + url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#A60000" + green: "#006800" + yellow: "#695500" + blue: "#0031A9" + magenta: "#721045" + cyan: "#005E8B" + white: "#A6A6A6" + brightBlack: "#595959" + brightRed: "#972500" + brightGreen: "#00663F" + brightYellow: "#973300" + brightBlue: "#3548CF" + brightMagenta: "#531AB6" + brightCyan: "#005F5F" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 106 + black: 106 + red: 85.1 + green: 83.7 + yellow: 85 + blue: 93 + magenta: 94.5 + cyan: 83.9 + white: 47.9 + brightBlack: 84.3 + brightRed: 86.8 + brightGreen: 83.9 + brightYellow: 85.2 + brightBlue: 83.7 + brightMagenta: 90.8 + brightCyan: 85.5 + brightWhite: 0 diff --git a/themes/modus-operandi-tinted.yaml b/themes/modus-operandi-tinted.yaml new file mode 100644 index 00000000..e61c43b3 --- /dev/null +++ b/themes/modus-operandi-tinted.yaml @@ -0,0 +1,49 @@ +name: "Modus Operandi Tinted" +source: + marketplace_id: "tukinami-seika.modus-t" + version: "0.0.1" + installs: 87 + author: "月波 清火" + repo: "https://github.com/tukinami/vscode-modus-t" + url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" +colors: + bg: "#FBF7F0" + fg: "#000000" + black: "#000000" + red: "#A60000" + green: "#006300" + yellow: "#6D5000" + blue: "#0031A9" + magenta: "#721045" + cyan: "#00598B" + white: "#A6A6A6" + brightBlack: "#595959" + brightRed: "#972500" + brightGreen: "#00603F" + brightYellow: "#894000" + brightBlue: "#3546C2" + brightMagenta: "#531AB6" + brightCyan: "#005F5F" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.5 + black: 101.5 + red: 80.5 + green: 80.9 + yellow: 81.3 + blue: 88.4 + magenta: 89.9 + cyan: 80.9 + white: 43.4 + brightBlack: 79.7 + brightRed: 82.2 + brightGreen: 81.5 + brightYellow: 80.9 + brightBlue: 80.8 + brightMagenta: 86.2 + brightCyan: 81 + brightWhite: 0 diff --git a/themes/modus-operandi-tritanopia.yaml b/themes/modus-operandi-tritanopia.yaml new file mode 100644 index 00000000..6e269876 --- /dev/null +++ b/themes/modus-operandi-tritanopia.yaml @@ -0,0 +1,49 @@ +name: "Modus Operandi Tritanopia" +source: + marketplace_id: "tukinami-seika.modus-t" + version: "0.0.1" + installs: 87 + author: "月波 清火" + repo: "https://github.com/tukinami/vscode-modus-t" + url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#A60000" + green: "#006800" + yellow: "#695500" + blue: "#0031A9" + magenta: "#721045" + cyan: "#005E8B" + white: "#A6A6A6" + brightBlack: "#595959" + brightRed: "#B21100" + brightGreen: "#00663F" + brightYellow: "#973300" + brightBlue: "#3548CF" + brightMagenta: "#531AB6" + brightCyan: "#005F5F" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 106 + black: 106 + red: 85.1 + green: 83.7 + yellow: 85 + blue: 93 + magenta: 94.5 + cyan: 83.9 + white: 47.9 + brightBlack: 84.3 + brightRed: 82.3 + brightGreen: 83.9 + brightYellow: 85.2 + brightBlue: 83.7 + brightMagenta: 90.8 + brightCyan: 85.5 + brightWhite: 0 diff --git a/themes/modus-operandi.yaml b/themes/modus-operandi.yaml new file mode 100644 index 00000000..547cfde7 --- /dev/null +++ b/themes/modus-operandi.yaml @@ -0,0 +1,49 @@ +name: "Modus Operandi" +source: + marketplace_id: "tukinami-seika.modus-t" + version: "0.0.1" + installs: 87 + author: "月波 清火" + repo: "https://github.com/tukinami/vscode-modus-t" + url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#A60000" + green: "#006800" + yellow: "#6F5500" + blue: "#0031A9" + magenta: "#721045" + cyan: "#005E8B" + white: "#A6A6A6" + brightBlack: "#595959" + brightRed: "#972500" + brightGreen: "#00663F" + brightYellow: "#884900" + brightBlue: "#3548CF" + brightMagenta: "#531AB6" + brightCyan: "#005F5F" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 106 + black: 106 + red: 85.1 + green: 83.7 + yellow: 84.3 + blue: 93 + magenta: 94.5 + cyan: 83.9 + white: 47.9 + brightBlack: 84.3 + brightRed: 86.8 + brightGreen: 83.9 + brightYellow: 83.8 + brightBlue: 83.7 + brightMagenta: 90.8 + brightCyan: 85.5 + brightWhite: 0 diff --git a/themes/modus-vivendi-deuteranopia.yaml b/themes/modus-vivendi-deuteranopia.yaml new file mode 100644 index 00000000..984a14da --- /dev/null +++ b/themes/modus-vivendi-deuteranopia.yaml @@ -0,0 +1,49 @@ +name: "Modus Vivendi Deuteranopia" +source: + marketplace_id: "tukinami-seika.modus-t" + version: "0.0.1" + installs: 87 + author: "月波 清火" + repo: "https://github.com/tukinami/vscode-modus-t" + url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF5F59" + green: "#44BC44" + yellow: "#CABF00" + blue: "#2FAFFF" + magenta: "#FEACD0" + cyan: "#00D3D0" + white: "#A6A6A6" + brightBlack: "#595959" + brightRed: "#FF6B55" + brightGreen: "#00C06F" + brightYellow: "#FFA00F" + brightBlue: "#79A8FF" + brightMagenta: "#B6A0FF" + brightCyan: "#6AE4B9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 46.3 + green: 54 + yellow: 66.1 + blue: 55 + magenta: 71 + cyan: 67.9 + white: 54.1 + brightBlack: 17.7 + brightRed: 48.7 + brightGreen: 55.6 + brightYellow: 63 + brightBlue: 55.5 + brightMagenta: 58.5 + brightCyan: 77.5 + brightWhite: 107.9 diff --git a/themes/modus-vivendi-tinted.yaml b/themes/modus-vivendi-tinted.yaml new file mode 100644 index 00000000..9223f4ef --- /dev/null +++ b/themes/modus-vivendi-tinted.yaml @@ -0,0 +1,49 @@ +name: "Modus Vivendi Tinted" +source: + marketplace_id: "tukinami-seika.modus-t" + version: "0.0.1" + installs: 87 + author: "月波 清火" + repo: "https://github.com/tukinami/vscode-modus-t" + url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" +colors: + bg: "#0D0E1C" + fg: "#FFFFFF" + black: "#000000" + red: "#FF5F59" + green: "#44BC44" + yellow: "#D0BC00" + blue: "#2FAFFF" + magenta: "#FEACD0" + cyan: "#00D3D0" + white: "#A6A6A6" + brightBlack: "#595959" + brightRed: "#FF6B55" + brightGreen: "#00C06F" + brightYellow: "#FEC43F" + brightBlue: "#79A8FF" + brightMagenta: "#B6A0FF" + brightCyan: "#6AE4B9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 280 + contrast: + fg: 107.5 + black: 0 + red: 45.9 + green: 53.6 + yellow: 65.3 + blue: 54.6 + magenta: 70.6 + cyan: 67.5 + white: 53.7 + brightBlack: 17.3 + brightRed: 48.3 + brightGreen: 55.2 + brightYellow: 76 + brightBlue: 55.1 + brightMagenta: 58.1 + brightCyan: 77 + brightWhite: 107.5 diff --git a/themes/modus-vivendi-tritanopia.yaml b/themes/modus-vivendi-tritanopia.yaml new file mode 100644 index 00000000..dfacba6a --- /dev/null +++ b/themes/modus-vivendi-tritanopia.yaml @@ -0,0 +1,49 @@ +name: "Modus Vivendi Tritanopia" +source: + marketplace_id: "tukinami-seika.modus-t" + version: "0.0.1" + installs: 87 + author: "月波 清火" + repo: "https://github.com/tukinami/vscode-modus-t" + url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF5F59" + green: "#44BC44" + yellow: "#CABF00" + blue: "#2FAFFF" + magenta: "#FEACD0" + cyan: "#00D3D0" + white: "#A6A6A6" + brightBlack: "#595959" + brightRed: "#FF6740" + brightGreen: "#00C06F" + brightYellow: "#FFA00F" + brightBlue: "#79A8FF" + brightMagenta: "#B6A0FF" + brightCyan: "#6AE4B9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 46.3 + green: 54 + yellow: 66.1 + blue: 55 + magenta: 71 + cyan: 67.9 + white: 54.1 + brightBlack: 17.7 + brightRed: 47.5 + brightGreen: 55.6 + brightYellow: 63 + brightBlue: 55.5 + brightMagenta: 58.5 + brightCyan: 77.5 + brightWhite: 107.9 diff --git a/themes/modus-vivendi.yaml b/themes/modus-vivendi.yaml new file mode 100644 index 00000000..765b6b6b --- /dev/null +++ b/themes/modus-vivendi.yaml @@ -0,0 +1,49 @@ +name: "Modus Vivendi" +source: + marketplace_id: "tukinami-seika.modus-t" + version: "0.0.1" + installs: 87 + author: "月波 清火" + repo: "https://github.com/tukinami/vscode-modus-t" + url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF5F59" + green: "#44BC44" + yellow: "#D0BC00" + blue: "#2FAFFF" + magenta: "#FEACD0" + cyan: "#00D3D0" + white: "#A6A6A6" + brightBlack: "#595959" + brightRed: "#FF6B55" + brightGreen: "#00C06F" + brightYellow: "#FEC43F" + brightBlue: "#79A8FF" + brightMagenta: "#B6A0FF" + brightCyan: "#6AE4B9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 46.3 + green: 54 + yellow: 65.7 + blue: 55 + magenta: 71 + cyan: 67.9 + white: 54.1 + brightBlack: 17.7 + brightRed: 48.7 + brightGreen: 55.6 + brightYellow: 76.4 + brightBlue: 55.5 + brightMagenta: 58.5 + brightCyan: 77.5 + brightWhite: 107.9 diff --git a/themes/moegi-black-zen.yaml b/themes/moegi-black-zen.yaml new file mode 100644 index 00000000..054cdef5 --- /dev/null +++ b/themes/moegi-black-zen.yaml @@ -0,0 +1,49 @@ +name: "Moegi Black Zen" +source: + marketplace_id: "ddiu8081.moegi-theme" + version: "0.7.1" + installs: 36944 + author: "Diu" + repo: "https://github.com/moegi-design/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" +colors: + bg: "#0D0D0D" + fg: "#DDDDDD" + black: "#292929" + red: "#AD8686" + green: "#859891" + yellow: "#B3AA8F" + blue: "#7789A3" + magenta: "#8E7A93" + cyan: "#698A8E" + white: "#ADADAD" + brightBlack: "#393939" + brightRed: "#BD9696" + brightGreen: "#95A8A1" + brightYellow: "#C3BA9F" + brightBlue: "#8799B3" + brightMagenta: "#9E8AA3" + brightCyan: "#799A9E" + brightWhite: "#BDBDBD" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.8 + black: 0 + red: 42.1 + green: 44.2 + yellow: 56.1 + blue: 38.2 + magenta: 34.8 + cyan: 36.5 + white: 57.6 + brightBlack: 0 + brightRed: 50.3 + brightGreen: 52.6 + brightYellow: 65 + brightBlue: 46.2 + brightMagenta: 42.6 + brightCyan: 44.4 + brightWhite: 66.6 diff --git a/themes/moegi-black.yaml b/themes/moegi-black.yaml new file mode 100644 index 00000000..41675419 --- /dev/null +++ b/themes/moegi-black.yaml @@ -0,0 +1,49 @@ +name: "Moegi Black" +source: + marketplace_id: "ddiu8081.moegi-theme" + version: "0.7.1" + installs: 36944 + author: "Diu" + repo: "https://github.com/moegi-design/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" +colors: + bg: "#0D0D0D" + fg: "#DDDDDD" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.8 + black: 0 + red: 45.6 + green: 53 + yellow: 74.6 + blue: 45.7 + magenta: 48.2 + cyan: 57.1 + white: 85.8 + brightBlack: 22.8 + brightRed: 53.4 + brightGreen: 61.6 + brightYellow: 84.3 + brightBlue: 54 + brightMagenta: 56.7 + brightCyan: 65.9 + brightWhite: 101.7 diff --git a/themes/moegi-dark.yaml b/themes/moegi-dark.yaml new file mode 100644 index 00000000..aca69ab5 --- /dev/null +++ b/themes/moegi-dark.yaml @@ -0,0 +1,49 @@ +name: "Moegi Dark" +source: + marketplace_id: "ddiu8081.moegi-theme" + version: "0.7.1" + installs: 36944 + author: "Diu" + repo: "https://github.com/moegi-design/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" +colors: + bg: "#202020" + fg: "#DDDDDD" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.9 + black: 0 + red: 43.7 + green: 51.2 + yellow: 72.8 + blue: 43.8 + magenta: 46.4 + cyan: 55.3 + white: 83.9 + brightBlack: 20.9 + brightRed: 51.6 + brightGreen: 59.8 + brightYellow: 82.4 + brightBlue: 52.1 + brightMagenta: 54.9 + brightCyan: 64.1 + brightWhite: 99.8 diff --git a/themes/moegi-dawn.yaml b/themes/moegi-dawn.yaml new file mode 100644 index 00000000..dcdeff8b --- /dev/null +++ b/themes/moegi-dawn.yaml @@ -0,0 +1,49 @@ +name: "Moegi Dawn" +source: + marketplace_id: "ddiu8081.moegi-theme" + version: "0.7.1" + installs: 36944 + author: "Diu" + repo: "https://github.com/moegi-design/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" +colors: + bg: "#FFF9F3" + fg: "#483F37" + black: "#685F57" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#E8DFD7" + brightBlack: "#988F87" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#FAF3ED" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 90.8 + black: 78.1 + red: 52.9 + green: 45.6 + yellow: 24.9 + blue: 52.8 + magenta: 50.3 + cyan: 41.7 + white: 12.5 + brightBlack: 55.8 + brightRed: 45.2 + brightGreen: 37.3 + brightYellow: 15.9 + brightBlue: 44.7 + brightMagenta: 42 + brightCyan: 33.2 + brightWhite: 0 diff --git a/themes/moegi-iris.yaml b/themes/moegi-iris.yaml new file mode 100644 index 00000000..75ae9b24 --- /dev/null +++ b/themes/moegi-iris.yaml @@ -0,0 +1,49 @@ +name: "Moegi Iris" +source: + marketplace_id: "ddiu8081.moegi-theme" + version: "0.7.1" + installs: 36944 + author: "Diu" + repo: "https://github.com/moegi-design/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" +colors: + bg: "#F5F2F9" + fg: "#433748" + black: "#635768" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#E8DFD7" + brightBlack: "#938798" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#EFEAF5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 88.8 + black: 76.4 + red: 48.9 + green: 41.6 + yellow: 21 + blue: 48.8 + magenta: 46.3 + cyan: 37.7 + white: 8.5 + brightBlack: 54.6 + brightRed: 41.2 + brightGreen: 33.4 + brightYellow: 11.9 + brightBlue: 40.7 + brightMagenta: 38.1 + brightCyan: 29.2 + brightWhite: 0 diff --git a/themes/moegi-light.yaml b/themes/moegi-light.yaml new file mode 100644 index 00000000..151c1d10 --- /dev/null +++ b/themes/moegi-light.yaml @@ -0,0 +1,49 @@ +name: "Moegi Light" +source: + marketplace_id: "ddiu8081.moegi-theme" + version: "0.7.1" + installs: 36944 + author: "Diu" + repo: "https://github.com/moegi-design/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#555555" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#888888" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#EEEEEE" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.7 + black: 85.9 + red: 56 + green: 48.7 + yellow: 28 + blue: 55.8 + magenta: 53.4 + cyan: 44.7 + white: 17.6 + brightBlack: 63.1 + brightRed: 48.3 + brightGreen: 40.4 + brightYellow: 19 + brightBlue: 47.8 + brightMagenta: 45.1 + brightCyan: 36.3 + brightWhite: 7.6 diff --git a/themes/moegi-space.yaml b/themes/moegi-space.yaml new file mode 100644 index 00000000..53578c15 --- /dev/null +++ b/themes/moegi-space.yaml @@ -0,0 +1,49 @@ +name: "Moegi Space" +source: + marketplace_id: "ddiu8081.moegi-theme" + version: "0.7.1" + installs: 36944 + author: "Diu" + repo: "https://github.com/moegi-design/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" +colors: + bg: "#221E30" + fg: "#DDD8E4" + black: "#38324D" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#68627D" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: 294 + contrast: + fg: 81.9 + black: 0 + red: 43.6 + green: 51.1 + yellow: 72.7 + blue: 43.7 + magenta: 46.3 + cyan: 55.2 + white: 83.8 + brightBlack: 20.6 + brightRed: 51.5 + brightGreen: 59.7 + brightYellow: 82.3 + brightBlue: 52 + brightMagenta: 54.8 + brightCyan: 64 + brightWhite: 99.7 diff --git a/themes/moin-acme.yaml b/themes/moin-acme.yaml new file mode 100644 index 00000000..eb2d8bac --- /dev/null +++ b/themes/moin-acme.yaml @@ -0,0 +1,49 @@ +name: "Moin Acme" +source: + marketplace_id: "nwwdles.moin-theme" + version: "1.2.2" + installs: 1024 + author: "nwwdles" + repo: "https://gitlab.com/nwwdles/vscode-moin-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nwwdles.moin-theme" +colors: + bg: "#FFFFEF" + fg: "#000000" + black: "#EEEEEE" + red: "#CC0000" + green: "#116633" + yellow: "#CC9900" + blue: "#0044AA" + magenta: "#660077" + cyan: "#116666" + white: "#222222" + brightBlack: "#DDDDDD" + brightRed: "#FF0000" + brightGreen: "#338855" + brightYellow: "#DDAA00" + brightBlue: "#0055CC" + brightMagenta: "#8800AA" + brightCyan: "#228888" + brightWhite: "#333333" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.4 + black: 0 + red: 75.9 + green: 83.4 + yellow: 49.6 + blue: 88.3 + magenta: 93.7 + cyan: 82.2 + white: 102.2 + brightBlack: 16.9 + brightRed: 63.5 + brightGreen: 69.4 + brightYellow: 41 + brightBlue: 81.1 + brightMagenta: 84.7 + brightCyan: 68.3 + brightWhite: 98 diff --git a/themes/moin-dark.yaml b/themes/moin-dark.yaml new file mode 100644 index 00000000..1353d1f3 --- /dev/null +++ b/themes/moin-dark.yaml @@ -0,0 +1,49 @@ +name: "Moin Dark" +source: + marketplace_id: "nwwdles.moin-theme" + version: "1.2.2" + installs: 1024 + author: "nwwdles" + repo: "https://gitlab.com/nwwdles/vscode-moin-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nwwdles.moin-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#222222" + red: "#CC0000" + green: "#66BBAA" + yellow: "#EECC00" + blue: "#99CCFF" + magenta: "#DD99FF" + cyan: "#44BBBB" + white: "#DDDDDD" + brightBlack: "#333333" + brightRed: "#FF0000" + brightGreen: "#88EECC" + brightYellow: "#FFEE00" + brightBlue: "#BBDDFF" + brightMagenta: "#FFAAFF" + brightCyan: "#55EEEE" + brightWhite: "#F3F3F3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 25.2 + green: 57.5 + yellow: 76.8 + blue: 72.9 + magenta: 61.7 + cyan: 56.8 + white: 86 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 84.9 + brightYellow: 94.6 + brightBlue: 83.7 + brightMagenta: 73 + brightCyan: 83.8 + brightWhite: 100 diff --git a/themes/moin-light.yaml b/themes/moin-light.yaml new file mode 100644 index 00000000..06d36b8d --- /dev/null +++ b/themes/moin-light.yaml @@ -0,0 +1,49 @@ +name: "Moin Light" +source: + marketplace_id: "nwwdles.moin-theme" + version: "1.2.2" + installs: 1024 + author: "nwwdles" + repo: "https://gitlab.com/nwwdles/vscode-moin-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nwwdles.moin-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#EEEEEE" + red: "#CC0000" + green: "#116633" + yellow: "#CC9900" + blue: "#0044AA" + magenta: "#660077" + cyan: "#116666" + white: "#222222" + brightBlack: "#DDDDDD" + brightRed: "#FF0000" + brightGreen: "#338855" + brightYellow: "#DDAA00" + brightBlue: "#0055CC" + brightMagenta: "#8800AA" + brightCyan: "#228888" + brightWhite: "#333333" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 106 + black: 7.6 + red: 76.5 + green: 84.1 + yellow: 50.2 + blue: 89 + magenta: 94.4 + cyan: 82.8 + white: 102.9 + brightBlack: 17.6 + brightRed: 64.1 + brightGreen: 70.1 + brightYellow: 41.7 + brightBlue: 81.8 + brightMagenta: 85.4 + brightCyan: 69 + brightWhite: 98.7 diff --git a/themes/moin-soft-dark.yaml b/themes/moin-soft-dark.yaml new file mode 100644 index 00000000..6fae5405 --- /dev/null +++ b/themes/moin-soft-dark.yaml @@ -0,0 +1,49 @@ +name: "Moin Soft Dark" +source: + marketplace_id: "nwwdles.moin-theme" + version: "1.2.2" + installs: 1024 + author: "nwwdles" + repo: "https://gitlab.com/nwwdles/vscode-moin-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nwwdles.moin-theme" +colors: + bg: "#161616" + fg: "#FFFFFF" + black: "#222222" + red: "#CC0000" + green: "#66BBAA" + yellow: "#EECC00" + blue: "#99CCFF" + magenta: "#DD99FF" + cyan: "#44BBBB" + white: "#DDDDDD" + brightBlack: "#333333" + brightRed: "#FF0000" + brightGreen: "#88EECC" + brightYellow: "#FFEE00" + brightBlue: "#BBDDFF" + brightMagenta: "#FFAAFF" + brightCyan: "#55EEEE" + brightWhite: "#F3F3F3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107 + black: 0 + red: 24.3 + green: 56.6 + yellow: 75.9 + blue: 71.9 + magenta: 60.8 + cyan: 55.8 + white: 85.1 + brightBlack: 0 + brightRed: 36.6 + brightGreen: 84 + brightYellow: 93.7 + brightBlue: 82.8 + brightMagenta: 72.1 + brightCyan: 82.9 + brightWhite: 99.1 diff --git a/themes/mojito-pro-dark.yaml b/themes/mojito-pro-dark.yaml new file mode 100644 index 00000000..f42c644c --- /dev/null +++ b/themes/mojito-pro-dark.yaml @@ -0,0 +1,49 @@ +name: "Mojito Pro Dark" +source: + marketplace_id: "mishatoshi.mojito-pro-vscode-theme" + version: "3.1.0" + installs: 116 + author: "mishatoshi" + repo: "https://github.com/mishatoshi/mojito-pro-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mishatoshi.mojito-pro-vscode-theme" +colors: + bg: "#101814" + fg: "#D8F3E6" + black: "#080C0A" + red: "#F2240D" + green: "#33CC52" + yellow: "#E6D119" + blue: "#178AE8" + magenta: "#C738AD" + cyan: "#13D3EC" + white: "#D8F3E6" + brightBlack: "#527A66" + brightRed: "#F66555" + brightGreen: "#70DB86" + brightYellow: "#EDDF5E" + brightBlue: "#5DADEF" + brightMagenta: "#D874C5" + brightCyan: "#5AE0F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 163 + contrast: + fg: 95 + black: 0 + red: 34.2 + green: 60.3 + yellow: 76.8 + blue: 37.8 + magenta: 30.2 + cyan: 68.4 + white: 95 + brightBlack: 27.2 + brightRed: 44.5 + brightGreen: 70.8 + brightYellow: 84.6 + brightBlue: 53.7 + brightMagenta: 45.8 + brightCyan: 76.4 + brightWhite: 106.9 diff --git a/themes/mojito-pro.yaml b/themes/mojito-pro.yaml new file mode 100644 index 00000000..c1080036 --- /dev/null +++ b/themes/mojito-pro.yaml @@ -0,0 +1,49 @@ +name: "Mojito Pro" +source: + marketplace_id: "mishatoshi.mojito-pro-vscode-theme" + version: "3.1.0" + installs: 116 + author: "mishatoshi" + repo: "https://github.com/mishatoshi/mojito-pro-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mishatoshi.mojito-pro-vscode-theme" +colors: + bg: "#0A1E14" + fg: "#D8F3E6" + black: "#02120A" + red: "#F2240D" + green: "#33CC52" + yellow: "#E6D119" + blue: "#178AE8" + magenta: "#C738AD" + cyan: "#13D3EC" + white: "#D8F3E6" + brightBlack: "#339966" + brightRed: "#F66555" + brightGreen: "#70DB86" + brightYellow: "#EDDF5E" + brightBlue: "#5DADEF" + brightMagenta: "#D874C5" + brightCyan: "#5AE0F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 160 + contrast: + fg: 94.5 + black: 0 + red: 33.7 + green: 59.8 + yellow: 76.4 + blue: 37.3 + magenta: 29.7 + cyan: 67.9 + white: 94.5 + brightBlack: 37.3 + brightRed: 44 + brightGreen: 70.4 + brightYellow: 84.1 + brightBlue: 53.2 + brightMagenta: 45.3 + brightCyan: 75.9 + brightWhite: 106.5 diff --git a/themes/mokka-fork-darken-blue.yaml b/themes/mokka-fork-darken-blue.yaml new file mode 100644 index 00000000..9bd502db --- /dev/null +++ b/themes/mokka-fork-darken-blue.yaml @@ -0,0 +1,49 @@ +name: "Mokka Fork: Darken Blue" +source: + marketplace_id: "tsybko22.mokka-fork" + version: "1.0.0" + installs: 29 + author: "Ivan Tsybko" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tsybko22.mokka-fork" +colors: + bg: "#212529" + fg: "#97A1A8" + black: "#2E3439" + red: "#E07070" + green: "#90C070" + yellow: "#E0B070" + blue: "#59A6DE" + magenta: "#BA84BA" + cyan: "#20B090" + white: "#97A1A8" + brightBlack: "#2E3439" + brightRed: "#E07070" + brightGreen: "#90C070" + brightYellow: "#E0B070" + brightBlue: "#59A6DE" + brightMagenta: "#BA84BA" + brightCyan: "#20B090" + brightWhite: "#97A1A8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 47.7 + black: 0 + red: 41.1 + green: 58.2 + yellow: 61.4 + blue: 47.7 + magenta: 42.9 + cyan: 46.6 + white: 47.7 + brightBlack: 0 + brightRed: 41.1 + brightGreen: 58.2 + brightYellow: 61.4 + brightBlue: 47.7 + brightMagenta: 42.9 + brightCyan: 46.6 + brightWhite: 47.7 diff --git a/themes/mokka.yaml b/themes/mokka.yaml new file mode 100644 index 00000000..baf4c5a1 --- /dev/null +++ b/themes/mokka.yaml @@ -0,0 +1,49 @@ +name: "Mokka" +source: + marketplace_id: "tsybko22.mokka-fork" + version: "1.0.0" + installs: 29 + author: "Ivan Tsybko" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tsybko22.mokka-fork" +colors: + bg: "#191919" + fg: "#A0A0A0" + black: "#303030" + red: "#E07070" + green: "#90C070" + yellow: "#E0B070" + blue: "#59A6DE" + magenta: "#B77EB7" + cyan: "#20B090" + white: "#A0A0A0" + brightBlack: "#303030" + brightRed: "#E07070" + brightGreen: "#90C070" + brightYellow: "#E0B070" + brightBlue: "#59A6DE" + brightMagenta: "#B77EB7" + brightCyan: "#20B090" + brightWhite: "#A0A0A0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 49.6 + black: 0 + red: 42.7 + green: 59.8 + yellow: 63.1 + blue: 49.3 + magenta: 42.1 + cyan: 48.2 + white: 49.6 + brightBlack: 0 + brightRed: 42.7 + brightGreen: 59.8 + brightYellow: 63.1 + brightBlue: 49.3 + brightMagenta: 42.1 + brightCyan: 48.2 + brightWhite: 49.6 diff --git a/themes/mol-lurity-theme-soft-fixed.yaml b/themes/mol-lurity-theme-soft-fixed.yaml new file mode 100644 index 00000000..7cdd0004 --- /dev/null +++ b/themes/mol-lurity-theme-soft-fixed.yaml @@ -0,0 +1,49 @@ +name: "Mol?lurity Theme - Soft - (Fixed)" +source: + marketplace_id: "malvee.molarity-theme" + version: "2.0.5" + installs: 307 + author: "malvee" + repo: "https://github.com/0xMALVEE/molarity-theme" + url: "https://marketplace.visualstudio.com/items?itemName=malvee.molarity-theme" +colors: + bg: "#101124" + fg: "#D4D4D4" + black: "#101124" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#929292" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 79.8 + black: 0 + red: 27.1 + green: 53.3 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 42.9 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.4 diff --git a/themes/mol-lurity-theme.yaml b/themes/mol-lurity-theme.yaml new file mode 100644 index 00000000..86183839 --- /dev/null +++ b/themes/mol-lurity-theme.yaml @@ -0,0 +1,49 @@ +name: "Mol?lurity Theme" +source: + marketplace_id: "malvee.molarity-theme" + version: "2.0.5" + installs: 307 + author: "malvee" + repo: "https://github.com/0xMALVEE/molarity-theme" + url: "https://marketplace.visualstudio.com/items?itemName=malvee.molarity-theme" +colors: + bg: "#00010F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#929292" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 43.6 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/molarity-washed.yaml b/themes/molarity-washed.yaml new file mode 100644 index 00000000..47f794e9 --- /dev/null +++ b/themes/molarity-washed.yaml @@ -0,0 +1,49 @@ +name: "Molarity - Washed" +source: + marketplace_id: "malvee.molarity-theme" + version: "2.0.5" + installs: 307 + author: "malvee" + repo: "https://github.com/0xMALVEE/molarity-theme" + url: "https://marketplace.visualstudio.com/items?itemName=malvee.molarity-theme" +colors: + bg: "#1E1A32" + fg: "#8B9DFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 290 + contrast: + fg: 51 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 29 + cyan: 46.8 + white: 89.2 + brightBlack: 21.3 + brightRed: 37.8 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/molineux.yaml b/themes/molineux.yaml new file mode 100644 index 00000000..290478c5 --- /dev/null +++ b/themes/molineux.yaml @@ -0,0 +1,49 @@ +name: "Molineux" +source: + marketplace_id: "archiehicklin.molineux" + version: "0.0.1" + installs: 1012 + author: "Archie Hicklin" + repo: "https://github.com/ArchieHicklin/Molineux-Theme-for-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=archiehicklin.molineux" +colors: + bg: "#222222" + fg: "#BAD2D7" + black: "#222222" + red: "#222222" + green: "#34E2C1" + yellow: "#FFB400" + blue: "#4DC2FE" + magenta: "#F95B6B" + cyan: "#4DC2FE" + white: "#F6CDA2" + brightBlack: "#222222" + brightRed: "#FE4F8B" + brightGreen: "#34E2C1" + brightYellow: "#FFB400" + brightBlue: "#4DC2FE" + brightMagenta: "#FE4F8B" + brightCyan: "#4DC2FE" + brightWhite: "#F6CDA2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 74.2 + black: 0 + red: 0 + green: 72.5 + yellow: 67.7 + blue: 61.4 + magenta: 42.1 + cyan: 61.4 + white: 78.2 + brightBlack: 0 + brightRed: 42.1 + brightGreen: 72.5 + brightYellow: 67.7 + brightBlue: 61.4 + brightMagenta: 42.1 + brightCyan: 61.4 + brightWhite: 78.2 diff --git a/themes/moloch.yaml b/themes/moloch.yaml new file mode 100644 index 00000000..fc591f1b --- /dev/null +++ b/themes/moloch.yaml @@ -0,0 +1,49 @@ +name: "Moloch" +source: + marketplace_id: "CyberBoost.themesmith" + version: "0.1.1" + installs: 33 + author: "CyberBoost" + repo: "https://github.com/bernie-gengel/themesmith" + url: "https://marketplace.visualstudio.com/items?itemName=CyberBoost.themesmith" +colors: + bg: "#0A0A0A" + fg: "#D4D4D4" + black: "#151515" + red: "#D44C3E" + green: "#A3D467" + yellow: "#FFB300" + blue: "#5A9BD6" + magenta: "#C78AE0" + cyan: "#59C9C9" + white: "#D4D4D4" + brightBlack: "#3A3A3A" + brightRed: "#FF6F00" + brightGreen: "#C8E691" + brightYellow: "#FFD966" + brightBlue: "#82B1FF" + brightMagenta: "#FF9CDC" + brightCyan: "#7FFFD4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 80.3 + black: 0 + red: 32.9 + green: 71.5 + yellow: 69.6 + blue: 45.7 + magenta: 51.5 + cyan: 64.3 + white: 80.3 + brightBlack: 0 + brightRed: 48.9 + brightGreen: 84.8 + brightYellow: 85.6 + brightBlue: 59.5 + brightMagenta: 66.4 + brightCyan: 93.1 + brightWhite: 107.7 diff --git a/themes/molokai-darker.yaml b/themes/molokai-darker.yaml new file mode 100644 index 00000000..750bd4b7 --- /dev/null +++ b/themes/molokai-darker.yaml @@ -0,0 +1,49 @@ +name: "Molokai Darker" +source: + marketplace_id: "gabrielcaussi.molokai-dark" + version: "1.1.0" + installs: 2808 + author: "Gabriel Caussi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gabrielcaussi.molokai-dark" +colors: + bg: "#111111" + fg: "#F8F8F2" + black: "#000000" + red: "#FF0044" + green: "#82B414" + yellow: "#FD971F" + blue: "#266C98" + magenta: "#AC0CB1" + cyan: "#AE81FF" + white: "#CCCCCC" + brightBlack: "#808080" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E6DB74" + brightBlue: "#7070F0" + brightMagenta: "#D63AE1" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 102.5 + black: 0 + red: 37.4 + green: 53.1 + yellow: 59.2 + blue: 23 + magenta: 22.9 + cyan: 47 + white: 75.2 + brightBlack: 34.3 + brightRed: 37.8 + brightGreen: 77.5 + brightYellow: 82.6 + brightBlue: 34.3 + brightMagenta: 37.2 + brightCyan: 73.9 + brightWhite: 102.5 diff --git a/themes/molten-aurora.yaml b/themes/molten-aurora.yaml new file mode 100644 index 00000000..f18e623d --- /dev/null +++ b/themes/molten-aurora.yaml @@ -0,0 +1,49 @@ +name: "Molten Aurora" +source: + marketplace_id: "InnaSodri.molten-aurora-theme" + version: "0.0.4" + installs: 37 + author: "Inna Sodri" + repo: "https://example.com/inna/molten-aurora-theme" + url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.molten-aurora-theme" +colors: + bg: "#0C0D0F" + fg: "#E9E6E1" + black: "#1A1E2A" + red: "#E25544" + green: "#58C08D" + yellow: "#F5C15C" + blue: "#7AA9FF" + magenta: "#A77DFF" + cyan: "#3FB8C0" + white: "#DDE0E6" + brightBlack: "#1A1E2A" + brightRed: "#E25544" + brightGreen: "#58C08D" + brightYellow: "#F5C15C" + brightBlue: "#7AA9FF" + brightMagenta: "#A77DFF" + brightCyan: "#3FB8C0" + brightWhite: "#DDE0E6" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 91.6 + black: 0 + red: 37.4 + green: 57.8 + yellow: 73.7 + blue: 55.7 + magenta: 45.2 + cyan: 55.2 + white: 87.5 + brightBlack: 0 + brightRed: 37.4 + brightGreen: 57.8 + brightYellow: 73.7 + brightBlue: 55.7 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 87.5 diff --git a/themes/monaco-paulsevere-color-theme.yaml b/themes/monaco-paulsevere-color-theme.yaml new file mode 100644 index 00000000..7f064931 --- /dev/null +++ b/themes/monaco-paulsevere-color-theme.yaml @@ -0,0 +1,49 @@ +name: "monaco-paulsevere-color-theme" +source: + marketplace_id: "PaulSevere.paulsevere" + version: "0.0.1" + installs: 7 + author: "Paul Severe" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PaulSevere.paulsevere" +colors: + bg: "#2D2A2E" + fg: "#FCFCFA" + black: "#403E41" + red: "#FF6188" + green: "#A9DC76" + yellow: "#7BB77E" + blue: "#FC9867" + magenta: "#AB9DF2" + cyan: "#78DCE8" + white: "#FCFCFA" + brightBlack: "#727072" + brightRed: "#FF6188" + brightGreen: "#A9DC76" + brightYellow: "#7BB77E" + brightBlue: "#FC9867" + brightMagenta: "#AB9DF2" + brightCyan: "#78DCE8" + brightWhite: "#FCFCFA" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.8 + black: 0 + red: 43.8 + green: 72.3 + yellow: 51.7 + blue: 56.6 + magenta: 51.2 + cyan: 72.4 + white: 101.8 + brightBlack: 23.6 + brightRed: 43.8 + brightGreen: 72.3 + brightYellow: 51.7 + brightBlue: 56.6 + brightMagenta: 51.2 + brightCyan: 72.4 + brightWhite: 101.8 diff --git a/themes/monfika.yaml b/themes/monfika.yaml new file mode 100644 index 00000000..34fb49a0 --- /dev/null +++ b/themes/monfika.yaml @@ -0,0 +1,49 @@ +name: "Monfika" +source: + marketplace_id: "markosmk.monfika-pro" + version: "0.0.2" + installs: 1771 + author: "markosmk" + repo: "https://github.com/markosmk/monfika-pro" + url: "https://marketplace.visualstudio.com/items?itemName=markosmk.monfika-pro" +colors: + bg: "#2F313D" + fg: "#E9E9E9" + black: "#222430" + red: "#FF6188" + green: "#A9DC76" + yellow: "#FCD75E" + blue: "#F48E5D" + magenta: "#9F90ED" + cyan: "#79DBE6" + white: "#E9E9E9" + brightBlack: "#727072" + brightRed: "#FF6188" + brightGreen: "#A9DC76" + brightYellow: "#FCD75E" + brightBlue: "#F48E5D" + brightMagenta: "#9F90ED" + brightCyan: "#79DBE6" + brightWhite: "#E9E9E9" +meta: + mode: "dark" + accent: "red" + hue: 278 + contrast: + fg: 88.1 + black: 0 + red: 42.3 + green: 70.8 + yellow: 78.8 + blue: 50.3 + magenta: 43.6 + cyan: 70.4 + white: 88.1 + brightBlack: 22.1 + brightRed: 42.3 + brightGreen: 70.8 + brightYellow: 78.8 + brightBlue: 50.3 + brightMagenta: 43.6 + brightCyan: 70.4 + brightWhite: 88.1 diff --git a/themes/mono-atom.yaml b/themes/mono-atom.yaml new file mode 100644 index 00000000..31770e0c --- /dev/null +++ b/themes/mono-atom.yaml @@ -0,0 +1,49 @@ +name: "Mono Atom" +source: + marketplace_id: "Avetis.mono-atom" + version: "0.0.3" + installs: 14191 + author: "Avetis" + repo: "https://github.com/AvetisDN/mono-atom-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.mono-atom" +colors: + bg: "#222428" + fg: "#D4DAE1" + black: "#000000" + red: "#E62C2C" + green: "#0DBC79" + yellow: "#E6BD1E" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C6CCD1" + brightBlack: "#666666" + brightRed: "#F56464" + brightGreen: "#23D18B" + brightYellow: "#EADC6A" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81 + black: 0 + red: 30.2 + green: 51.3 + yellow: 66.7 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 72.4 + brightBlack: 20.3 + brightRed: 42.5 + brightGreen: 61.8 + brightYellow: 81.2 + brightBlue: 38.3 + brightMagenta: 43.7 + brightCyan: 53.7 + brightWhite: 105.2 diff --git a/themes/mono-bw.yaml b/themes/mono-bw.yaml new file mode 100644 index 00000000..5dd064a5 --- /dev/null +++ b/themes/mono-bw.yaml @@ -0,0 +1,49 @@ +name: "Mono BW" +source: + marketplace_id: "anfeket.mono-bw" + version: "1.0.0" + installs: 679 + author: "Anfeket" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=anfeket.mono-bw" +colors: + bg: "#000000" + fg: "#929292" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 43.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/mono-cl.yaml b/themes/mono-cl.yaml new file mode 100644 index 00000000..002b8a84 --- /dev/null +++ b/themes/mono-cl.yaml @@ -0,0 +1,49 @@ +name: "mono-cl" +source: + marketplace_id: "arx9781.mono-cl" + version: "1.0.0" + installs: 1679 + author: "arx9781" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=arx9781.mono-cl" +colors: + bg: "#191919" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.3 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/monochai-dark.yaml b/themes/monochai-dark.yaml new file mode 100644 index 00000000..c6acb2b4 --- /dev/null +++ b/themes/monochai-dark.yaml @@ -0,0 +1,49 @@ +name: "Monochai Dark" +source: + marketplace_id: "JesusChavez.chi-chavez" + version: "1.0.4" + installs: 31 + author: "Jesus Chavez" + repo: "https://github.com/chavezutajara/themes" + url: "https://marketplace.visualstudio.com/items?itemName=JesusChavez.chi-chavez" +colors: + bg: "#101010" + fg: "#AAAAAA" + black: "#101010" + red: "#7E7E7E" + green: "#525252" + yellow: "#A9A9A9" + blue: "#3C3C3C" + magenta: "#939393" + cyan: "#686868" + white: "#BFBFBF" + brightBlack: "#444444" + brightRed: "#7E7E7E" + brightGreen: "#525252" + brightYellow: "#A9A9A9" + brightBlue: "#3C3C3C" + brightMagenta: "#939393" + brightCyan: "#686868" + brightWhite: "#EBEBEB" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 55.8 + black: 0 + red: 33.4 + green: 14.5 + yellow: 55.3 + blue: 0 + magenta: 43.7 + cyan: 23.5 + white: 67.6 + brightBlack: 9.4 + brightRed: 33.4 + brightGreen: 14.5 + brightYellow: 55.3 + brightBlue: 0 + brightMagenta: 43.7 + brightCyan: 23.5 + brightWhite: 94.4 diff --git a/themes/monochromator-dark-plain.yaml b/themes/monochromator-dark-plain.yaml new file mode 100644 index 00000000..10383178 --- /dev/null +++ b/themes/monochromator-dark-plain.yaml @@ -0,0 +1,49 @@ +name: "Monochromator Dark Plain" +source: + marketplace_id: "beem.monochromator" + version: "0.31.1" + installs: 552 + author: "Josias Beem" + repo: "https://codeberg.org/beem/monochromator" + url: "https://marketplace.visualstudio.com/items?itemName=beem.monochromator" +colors: + bg: "#0F0F12" + fg: "#E7E7E7" + black: "#0F0F12" + red: "#FE303A" + green: "#30DF81" + yellow: "#FFF556" + blue: "#02A9FF" + magenta: "#D559FF" + cyan: "#00F3FF" + white: "#808086" + brightBlack: "#808086" + brightRed: "#FE303A" + brightGreen: "#30DF81" + brightYellow: "#FFF556" + brightBlue: "#02A9FF" + brightMagenta: "#D559FF" + brightCyan: "#00F3FF" + brightWhite: "#E7E7E7" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91.9 + black: 0 + red: 38.8 + green: 71 + yellow: 97.9 + blue: 51.7 + magenta: 43.8 + cyan: 85.6 + white: 34.6 + brightBlack: 34.6 + brightRed: 38.8 + brightGreen: 71 + brightYellow: 97.9 + brightBlue: 51.7 + brightMagenta: 43.8 + brightCyan: 85.6 + brightWhite: 91.9 diff --git a/themes/monochromator-light-plain.yaml b/themes/monochromator-light-plain.yaml new file mode 100644 index 00000000..1a869af0 --- /dev/null +++ b/themes/monochromator-light-plain.yaml @@ -0,0 +1,49 @@ +name: "Monochromator Light Plain" +source: + marketplace_id: "beem.monochromator" + version: "0.31.1" + installs: 552 + author: "Josias Beem" + repo: "https://codeberg.org/beem/monochromator" + url: "https://marketplace.visualstudio.com/items?itemName=beem.monochromator" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#E01B24" + green: "#017F45" + yellow: "#927E00" + blue: "#2563EB" + magenta: "#CF207E" + cyan: "#01AACF" + white: "#76767C" + brightBlack: "#76767C" + brightRed: "#E01B24" + brightGreen: "#017F45" + brightYellow: "#927E00" + brightBlue: "#2563EB" + brightMagenta: "#CF207E" + brightCyan: "#01AACF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 106 + black: 106 + red: 71.2 + green: 74.5 + yellow: 67.4 + blue: 74.9 + magenta: 73.1 + cyan: 52.4 + white: 71.4 + brightBlack: 71.4 + brightRed: 71.2 + brightGreen: 74.5 + brightYellow: 67.4 + brightBlue: 74.9 + brightMagenta: 73.1 + brightCyan: 52.4 + brightWhite: 0 diff --git a/themes/monochrome-dark-amplified.yaml b/themes/monochrome-dark-amplified.yaml new file mode 100644 index 00000000..ceb06dee --- /dev/null +++ b/themes/monochrome-dark-amplified.yaml @@ -0,0 +1,49 @@ +name: "monochrome-dark-amplified" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47933 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" +colors: + bg: "#000000" + fg: "#B3B3B3" + black: "#000000" + red: "#808080" + green: "#4D4D4D" + yellow: "#B3B3B3" + blue: "#333333" + magenta: "#999999" + cyan: "#666666" + white: "#CCCCCC" + brightBlack: "#1A1A1A" + brightRed: "#808080" + brightGreen: "#4D4D4D" + brightYellow: "#B3B3B3" + brightBlue: "#333333" + brightMagenta: "#999999" + brightCyan: "#666666" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 61.2 + black: 0 + red: 34.8 + green: 13.1 + yellow: 61.2 + blue: 0 + magenta: 47.2 + cyan: 23 + white: 75.7 + brightBlack: 0 + brightRed: 34.8 + brightGreen: 13.1 + brightYellow: 61.2 + brightBlue: 0 + brightMagenta: 47.2 + brightCyan: 23 + brightWhite: 107.9 diff --git a/themes/monochrome-dark-cool-gray.yaml b/themes/monochrome-dark-cool-gray.yaml new file mode 100644 index 00000000..1753d839 --- /dev/null +++ b/themes/monochrome-dark-cool-gray.yaml @@ -0,0 +1,49 @@ +name: "monochrome-dark-cool-gray" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47933 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" +colors: + bg: "#111827" + fg: "#B4B7BC" + black: "#111827" + red: "#858991" + green: "#575C67" + yellow: "#B3B6BB" + blue: "#3F4551" + magenta: "#9CA0A6" + cyan: "#6E727C" + white: "#CBCDD1" + brightBlack: "#282F3C" + brightRed: "#858991" + brightGreen: "#575C67" + brightYellow: "#B3B6BB" + brightBlue: "#3F4551" + brightMagenta: "#9CA0A6" + brightCyan: "#6E727C" + brightWhite: "#F9FAFB" +meta: + mode: "dark" + accent: "purple" + hue: 265 + contrast: + fg: 62.2 + black: 0 + red: 37.8 + green: 17.7 + yellow: 61.6 + blue: 8.9 + magenta: 49.5 + cyan: 27.1 + white: 75 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 17.7 + brightYellow: 61.6 + brightBlue: 8.9 + brightMagenta: 49.5 + brightCyan: 27.1 + brightWhite: 103.3 diff --git a/themes/monochrome-dark-gray.yaml b/themes/monochrome-dark-gray.yaml new file mode 100644 index 00000000..0e8f4506 --- /dev/null +++ b/themes/monochrome-dark-gray.yaml @@ -0,0 +1,49 @@ +name: "monochrome-dark-gray" +source: + marketplace_id: "ccssmnn.monochrome-tailwind-colors" + version: "1.0.0" + installs: 1193 + author: "Carl Assmann" + repo: "https://github.com/ccssmnn/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" +colors: + bg: "#111827" + fg: "#F3F4F6" + black: "#111827" + red: "#F3F4F6" + green: "#999CA3" + yellow: "#F3F4F6" + blue: "#6B707A" + magenta: "#F3F4F6" + cyan: "#C6C8CD" + white: "#F3F4F6" + brightBlack: "#3E4450" + brightRed: "#F3F4F6" + brightGreen: "#999CA3" + brightYellow: "#F3F4F6" + brightBlue: "#6B707A" + brightMagenta: "#F3F4F6" + brightCyan: "#C6C8CD" + brightWhite: "#F3F4F6" +meta: + mode: "dark" + accent: "purple" + hue: 265 + contrast: + fg: 99.4 + black: 0 + red: 99.4 + green: 47.5 + yellow: 99.4 + blue: 26.1 + magenta: 99.4 + cyan: 72.1 + white: 99.4 + brightBlack: 8.6 + brightRed: 99.4 + brightGreen: 47.5 + brightYellow: 99.4 + brightBlue: 26.1 + brightMagenta: 99.4 + brightCyan: 72.1 + brightWhite: 99.4 diff --git a/themes/monochrome-dark-indigo.yaml b/themes/monochrome-dark-indigo.yaml new file mode 100644 index 00000000..c6256c9e --- /dev/null +++ b/themes/monochrome-dark-indigo.yaml @@ -0,0 +1,49 @@ +name: "monochrome-dark-indigo" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47933 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" +colors: + bg: "#0F172A" + fg: "#B3B6BD" + black: "#0F172A" + red: "#848993" + green: "#555B69" + yellow: "#B2B6BD" + blue: "#3E4454" + magenta: "#9B9FA8" + cyan: "#6C727E" + white: "#C9CDD2" + brightBlack: "#262E3F" + brightRed: "#848993" + brightGreen: "#555B69" + brightYellow: "#B2B6BD" + brightBlue: "#3E4454" + brightMagenta: "#9B9FA8" + brightCyan: "#6C727E" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "purple" + hue: 266 + contrast: + fg: 61.7 + black: 0 + red: 37.9 + green: 17.3 + yellow: 61.6 + blue: 8.8 + magenta: 49.1 + cyan: 27 + white: 74.9 + brightBlack: 0 + brightRed: 37.9 + brightGreen: 17.3 + brightYellow: 61.6 + brightBlue: 8.8 + brightMagenta: 49.1 + brightCyan: 27 + brightWhite: 103.3 diff --git a/themes/monochrome-dark-neutral.yaml b/themes/monochrome-dark-neutral.yaml new file mode 100644 index 00000000..a58ff4b8 --- /dev/null +++ b/themes/monochrome-dark-neutral.yaml @@ -0,0 +1,49 @@ +name: "monochrome-dark-neutral" +source: + marketplace_id: "ccssmnn.monochrome-tailwind-colors" + version: "1.0.0" + installs: 1193 + author: "Carl Assmann" + repo: "https://github.com/ccssmnn/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" +colors: + bg: "#171717" + fg: "#F5F5F5" + black: "#171717" + red: "#F5F5F5" + green: "#9C9C9C" + yellow: "#F5F5F5" + blue: "#707070" + magenta: "#F5F5F5" + cyan: "#C9C9C9" + white: "#F5F5F5" + brightBlack: "#434343" + brightRed: "#F5F5F5" + brightGreen: "#9C9C9C" + brightYellow: "#F5F5F5" + brightBlue: "#707070" + brightMagenta: "#F5F5F5" + brightCyan: "#C9C9C9" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 100.3 + black: 0 + red: 100.3 + green: 47.7 + yellow: 100.3 + blue: 26.4 + magenta: 100.3 + cyan: 72.9 + white: 100.3 + brightBlack: 8.5 + brightRed: 100.3 + brightGreen: 47.7 + brightYellow: 100.3 + brightBlue: 26.4 + brightMagenta: 100.3 + brightCyan: 72.9 + brightWhite: 100.3 diff --git a/themes/monochrome-dark-slate.yaml b/themes/monochrome-dark-slate.yaml new file mode 100644 index 00000000..91fb9600 --- /dev/null +++ b/themes/monochrome-dark-slate.yaml @@ -0,0 +1,49 @@ +name: "monochrome-dark-slate" +source: + marketplace_id: "ccssmnn.monochrome-tailwind-colors" + version: "1.0.0" + installs: 1193 + author: "Carl Assmann" + repo: "https://github.com/ccssmnn/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" +colors: + bg: "#0F172A" + fg: "#F1F5F9" + black: "#0F172A" + red: "#F1F5F9" + green: "#979CA6" + yellow: "#F1F5F9" + blue: "#69707D" + magenta: "#F1F5F9" + cyan: "#C4C9D0" + white: "#F1F5F9" + brightBlack: "#3C4353" + brightRed: "#F1F5F9" + brightGreen: "#979CA6" + brightYellow: "#F1F5F9" + brightBlue: "#69707D" + brightMagenta: "#F1F5F9" + brightCyan: "#C4C9D0" + brightWhite: "#F1F5F9" +meta: + mode: "dark" + accent: "purple" + hue: 266 + contrast: + fg: 99.8 + black: 0 + red: 99.8 + green: 47.5 + yellow: 99.8 + blue: 26.1 + magenta: 99.8 + cyan: 72.5 + white: 99.8 + brightBlack: 8.4 + brightRed: 99.8 + brightGreen: 47.5 + brightYellow: 99.8 + brightBlue: 26.1 + brightMagenta: 99.8 + brightCyan: 72.5 + brightWhite: 99.8 diff --git a/themes/monochrome-dark-stone.yaml b/themes/monochrome-dark-stone.yaml new file mode 100644 index 00000000..1a31bc26 --- /dev/null +++ b/themes/monochrome-dark-stone.yaml @@ -0,0 +1,49 @@ +name: "monochrome-dark-stone" +source: + marketplace_id: "ccssmnn.monochrome-tailwind-colors" + version: "1.0.0" + installs: 1193 + author: "Carl Assmann" + repo: "https://github.com/ccssmnn/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" +colors: + bg: "#1C1917" + fg: "#F5F5F4" + black: "#1C1917" + red: "#F5F5F4" + green: "#9E9D9C" + yellow: "#F5F5F4" + blue: "#73716F" + magenta: "#F5F5F4" + cyan: "#CAC9C8" + white: "#F5F5F4" + brightBlack: "#474543" + brightRed: "#F5F5F4" + brightGreen: "#9E9D9C" + brightYellow: "#F5F5F4" + brightBlue: "#73716F" + brightMagenta: "#F5F5F4" + brightCyan: "#CAC9C8" + brightWhite: "#F5F5F4" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 100 + black: 0 + red: 100 + green: 48.1 + yellow: 100 + blue: 26.7 + magenta: 100 + cyan: 72.7 + white: 100 + brightBlack: 9 + brightRed: 100 + brightGreen: 48.1 + brightYellow: 100 + brightBlue: 26.7 + brightMagenta: 100 + brightCyan: 72.7 + brightWhite: 100 diff --git a/themes/monochrome-dark-subtle.yaml b/themes/monochrome-dark-subtle.yaml new file mode 100644 index 00000000..03266c8d --- /dev/null +++ b/themes/monochrome-dark-subtle.yaml @@ -0,0 +1,49 @@ +name: "monochrome-dark-subtle" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47933 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" +colors: + bg: "#0A1219" + fg: "#ACB1B6" + black: "#0A1219" + red: "#7E8489" + green: "#4F565C" + yellow: "#ACB1B6" + blue: "#383F46" + magenta: "#959A9F" + cyan: "#666D73" + white: "#C3C8CC" + brightBlack: "#21292F" + brightRed: "#7E8489" + brightGreen: "#4F565C" + brightYellow: "#ACB1B6" + brightBlue: "#383F46" + brightMagenta: "#959A9F" + brightCyan: "#666D73" + brightWhite: "#F1F5F9" +meta: + mode: "dark" + accent: "indigo" + hue: 246 + contrast: + fg: 59.2 + black: 0 + red: 35.7 + green: 15.6 + yellow: 59.2 + blue: 7.3 + magenta: 46.8 + cyan: 25.1 + white: 72.3 + brightBlack: 0 + brightRed: 35.7 + brightGreen: 15.6 + brightYellow: 59.2 + brightBlue: 7.3 + brightMagenta: 46.8 + brightCyan: 25.1 + brightWhite: 100.4 diff --git a/themes/monochrome-dark-zinc.yaml b/themes/monochrome-dark-zinc.yaml new file mode 100644 index 00000000..9ec6a5dd --- /dev/null +++ b/themes/monochrome-dark-zinc.yaml @@ -0,0 +1,49 @@ +name: "monochrome-dark-zinc" +source: + marketplace_id: "ccssmnn.monochrome-tailwind-colors" + version: "1.0.0" + installs: 1193 + author: "Carl Assmann" + repo: "https://github.com/ccssmnn/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" +colors: + bg: "#18181B" + fg: "#F4F4F5" + black: "#18181B" + red: "#F4F4F5" + green: "#9C9C9E" + yellow: "#F4F4F5" + blue: "#707072" + magenta: "#F4F4F5" + cyan: "#C8C8C9" + white: "#F4F4F5" + brightBlack: "#444447" + brightRed: "#F4F4F5" + brightGreen: "#9C9C9E" + brightYellow: "#F4F4F5" + brightBlue: "#707072" + brightMagenta: "#F4F4F5" + brightCyan: "#C8C8C9" + brightWhite: "#F4F4F5" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 99.5 + black: 0 + red: 99.5 + green: 47.7 + yellow: 99.5 + blue: 26.3 + magenta: 99.5 + cyan: 72.2 + white: 99.5 + brightBlack: 8.8 + brightRed: 99.5 + brightGreen: 47.7 + brightYellow: 99.5 + brightBlue: 26.3 + brightMagenta: 99.5 + brightCyan: 72.2 + brightWhite: 99.5 diff --git a/themes/monochrome-dark.yaml b/themes/monochrome-dark.yaml new file mode 100644 index 00000000..dbf3221e --- /dev/null +++ b/themes/monochrome-dark.yaml @@ -0,0 +1,49 @@ +name: "monochrome-dark" +source: + marketplace_id: "dkamyshov.monochrome" + version: "2.3.3" + installs: 2227 + author: "dkamyshov" + repo: "https://github.com/dkamyshov/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=dkamyshov.monochrome" +colors: + bg: "#101010" + fg: "#EBEBEB" + black: "#101010" + red: "#D0D0D0" + green: "#838383" + yellow: "#EBEBEB" + blue: "#5D5D5D" + magenta: "#EBEBEB" + cyan: "#A9A9A9" + white: "#EBEBEB" + brightBlack: "#363636" + brightRed: "#D0D0D0" + brightGreen: "#838383" + brightYellow: "#EBEBEB" + brightBlue: "#5D5D5D" + brightMagenta: "#EBEBEB" + brightCyan: "#A9A9A9" + brightWhite: "#EBEBEB" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 94.4 + black: 0 + red: 77.6 + green: 35.8 + yellow: 94.4 + blue: 18.9 + magenta: 94.4 + cyan: 55.3 + white: 94.4 + brightBlack: 0 + brightRed: 77.6 + brightGreen: 35.8 + brightYellow: 94.4 + brightBlue: 18.9 + brightMagenta: 94.4 + brightCyan: 55.3 + brightWhite: 94.4 diff --git a/themes/monochrome-github-edition.yaml b/themes/monochrome-github-edition.yaml new file mode 100644 index 00000000..222c89fd --- /dev/null +++ b/themes/monochrome-github-edition.yaml @@ -0,0 +1,49 @@ +name: "Monochrome (GitHub Edition)" +source: + marketplace_id: "toufiqahmedshr.monochrome-theme" + version: "1.1.0" + installs: 3262 + author: "Toufiq Ahmed" + repo: "https://github.com/toufiq-ahmed/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=toufiqahmedshr.monochrome-theme" +colors: + bg: "#0D1117" + fg: "#EEFFFF" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 258 + contrast: + fg: 105.1 + black: 8.6 + red: 33.5 + green: 62.2 + yellow: 76.9 + blue: 49.2 + magenta: 47 + cyan: 63.2 + white: 92.9 + brightBlack: 15.9 + brightRed: 33.5 + brightGreen: 62.2 + brightYellow: 76.9 + brightBlue: 49.2 + brightMagenta: 47 + brightCyan: 61.1 + brightWhite: 96.7 diff --git a/themes/monochrome-light-amplified.yaml b/themes/monochrome-light-amplified.yaml new file mode 100644 index 00000000..7ab27d32 --- /dev/null +++ b/themes/monochrome-light-amplified.yaml @@ -0,0 +1,49 @@ +name: "monochrome-light-amplified" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47933 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" +colors: + bg: "#FFFFFF" + fg: "#4C4C4C" + black: "#FFFFFF" + red: "#808080" + green: "#B3B3B3" + yellow: "#4D4D4D" + blue: "#CCCCCC" + magenta: "#666666" + cyan: "#999999" + white: "#333333" + brightBlack: "#E6E6E6" + brightRed: "#808080" + brightGreen: "#B3B3B3" + brightYellow: "#4D4D4D" + brightBlue: "#CCCCCC" + brightMagenta: "#666666" + brightCyan: "#999999" + brightWhite: "#000000" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 89.5 + black: 0 + red: 66.9 + green: 41 + yellow: 89.1 + blue: 27.3 + magenta: 78.8 + cyan: 54.6 + white: 98.7 + brightBlack: 12.3 + brightRed: 66.9 + brightGreen: 41 + brightYellow: 89.1 + brightBlue: 27.3 + brightMagenta: 78.8 + brightCyan: 54.6 + brightWhite: 106 diff --git a/themes/monochrome-light-cool-gray.yaml b/themes/monochrome-light-cool-gray.yaml new file mode 100644 index 00000000..b9077bab --- /dev/null +++ b/themes/monochrome-light-cool-gray.yaml @@ -0,0 +1,49 @@ +name: "monochrome-light-cool-gray" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47933 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" +colors: + bg: "#F9FAFB" + fg: "#565B66" + black: "#F9FAFB" + red: "#858991" + green: "#B3B6BB" + yellow: "#575C67" + blue: "#CBCDD1" + magenta: "#6E727C" + cyan: "#9CA0A6" + white: "#3F4551" + brightBlack: "#E2E3E6" + brightRed: "#858991" + brightGreen: "#B3B6BB" + brightYellow: "#575C67" + brightBlue: "#CBCDD1" + brightMagenta: "#6E727C" + brightCyan: "#9CA0A6" + brightWhite: "#111827" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 80.4 + black: 0 + red: 59.6 + green: 36.5 + yellow: 80 + blue: 23.7 + magenta: 70.4 + cyan: 48.2 + white: 89.2 + brightBlack: 11 + brightRed: 59.6 + brightGreen: 36.5 + brightYellow: 80 + brightBlue: 23.7 + brightMagenta: 70.4 + brightCyan: 48.2 + brightWhite: 101.4 diff --git a/themes/monochrome-light-gray.yaml b/themes/monochrome-light-gray.yaml new file mode 100644 index 00000000..85367928 --- /dev/null +++ b/themes/monochrome-light-gray.yaml @@ -0,0 +1,49 @@ +name: "monochrome-light-gray" +source: + marketplace_id: "ccssmnn.monochrome-tailwind-colors" + version: "1.0.0" + installs: 1193 + author: "Carl Assmann" + repo: "https://github.com/ccssmnn/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" +colors: + bg: "#F3F4F6" + fg: "#111827" + black: "#F3F4F6" + red: "#111827" + green: "#6B707A" + yellow: "#111827" + blue: "#999CA3" + magenta: "#111827" + cyan: "#3E4450" + white: "#111827" + brightBlack: "#C6C8CD" + brightRed: "#111827" + brightGreen: "#6B707A" + brightYellow: "#111827" + brightBlue: "#999CA3" + brightMagenta: "#111827" + brightCyan: "#3E4450" + brightWhite: "#111827" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 97.9 + black: 0 + red: 97.9 + green: 67.8 + yellow: 97.9 + blue: 46.6 + magenta: 97.9 + cyan: 86.1 + white: 97.9 + brightBlack: 23 + brightRed: 97.9 + brightGreen: 67.8 + brightYellow: 97.9 + brightBlue: 46.6 + brightMagenta: 97.9 + brightCyan: 86.1 + brightWhite: 97.9 diff --git a/themes/monochrome-light-indigo.yaml b/themes/monochrome-light-indigo.yaml new file mode 100644 index 00000000..1fe6a562 --- /dev/null +++ b/themes/monochrome-light-indigo.yaml @@ -0,0 +1,49 @@ +name: "monochrome-light-indigo" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47933 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" +colors: + bg: "#F8FAFC" + fg: "#545B69" + black: "#F8FAFC" + red: "#848993" + green: "#B2B6BD" + yellow: "#555B69" + blue: "#C9CDD2" + magenta: "#6C727E" + cyan: "#9B9FA8" + white: "#3E4454" + brightBlack: "#E1E3E7" + brightRed: "#848993" + brightGreen: "#B2B6BD" + brightYellow: "#555B69" + brightBlue: "#C9CDD2" + brightMagenta: "#6C727E" + brightCyan: "#9B9FA8" + brightWhite: "#0F172A" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 80.4 + black: 0 + red: 59.5 + green: 36.4 + yellow: 80.3 + blue: 23.8 + magenta: 70.4 + cyan: 48.5 + white: 89.4 + brightBlack: 11 + brightRed: 59.5 + brightGreen: 36.4 + brightYellow: 80.3 + brightBlue: 23.8 + brightMagenta: 70.4 + brightCyan: 48.5 + brightWhite: 101.4 diff --git a/themes/monochrome-light-neutral.yaml b/themes/monochrome-light-neutral.yaml new file mode 100644 index 00000000..c00ce170 --- /dev/null +++ b/themes/monochrome-light-neutral.yaml @@ -0,0 +1,49 @@ +name: "monochrome-light-neutral" +source: + marketplace_id: "ccssmnn.monochrome-tailwind-colors" + version: "1.0.0" + installs: 1193 + author: "Carl Assmann" + repo: "https://github.com/ccssmnn/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" +colors: + bg: "#F5F5F5" + fg: "#171717" + black: "#F5F5F5" + red: "#171717" + green: "#707070" + yellow: "#171717" + blue: "#9C9C9C" + magenta: "#171717" + cyan: "#434343" + white: "#171717" + brightBlack: "#C9C9C9" + brightRed: "#171717" + brightGreen: "#707070" + brightYellow: "#171717" + brightBlue: "#9C9C9C" + brightMagenta: "#171717" + brightCyan: "#434343" + brightWhite: "#171717" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 98.7 + black: 0 + red: 98.7 + green: 68.3 + yellow: 98.7 + blue: 47.1 + magenta: 98.7 + cyan: 87 + white: 98.7 + brightBlack: 23 + brightRed: 98.7 + brightGreen: 68.3 + brightYellow: 98.7 + brightBlue: 47.1 + brightMagenta: 98.7 + brightCyan: 87 + brightWhite: 98.7 diff --git a/themes/monochrome-light-slate.yaml b/themes/monochrome-light-slate.yaml new file mode 100644 index 00000000..f6354409 --- /dev/null +++ b/themes/monochrome-light-slate.yaml @@ -0,0 +1,49 @@ +name: "monochrome-light-slate" +source: + marketplace_id: "ccssmnn.monochrome-tailwind-colors" + version: "1.0.0" + installs: 1193 + author: "Carl Assmann" + repo: "https://github.com/ccssmnn/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" +colors: + bg: "#F1F5F9" + fg: "#0F172A" + black: "#F1F5F9" + red: "#0F172A" + green: "#69707D" + yellow: "#0F172A" + blue: "#979CA6" + magenta: "#0F172A" + cyan: "#3C4353" + white: "#0F172A" + brightBlack: "#C4C9D0" + brightRed: "#0F172A" + brightGreen: "#69707D" + brightYellow: "#0F172A" + brightBlue: "#979CA6" + brightMagenta: "#0F172A" + brightCyan: "#3C4353" + brightWhite: "#0F172A" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 98.3 + black: 0 + red: 98.3 + green: 68.2 + yellow: 98.3 + blue: 46.9 + magenta: 98.3 + cyan: 86.7 + white: 98.3 + brightBlack: 23 + brightRed: 98.3 + brightGreen: 68.2 + brightYellow: 98.3 + brightBlue: 46.9 + brightMagenta: 98.3 + brightCyan: 86.7 + brightWhite: 98.3 diff --git a/themes/monochrome-light-stone.yaml b/themes/monochrome-light-stone.yaml new file mode 100644 index 00000000..960d388d --- /dev/null +++ b/themes/monochrome-light-stone.yaml @@ -0,0 +1,49 @@ +name: "monochrome-light-stone" +source: + marketplace_id: "ccssmnn.monochrome-tailwind-colors" + version: "1.0.0" + installs: 1193 + author: "Carl Assmann" + repo: "https://github.com/ccssmnn/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" +colors: + bg: "#F5F5F4" + fg: "#1C1917" + black: "#F5F5F4" + red: "#1C1917" + green: "#73716F" + yellow: "#1C1917" + blue: "#9E9D9C" + magenta: "#1C1917" + cyan: "#474543" + white: "#1C1917" + brightBlack: "#CAC9C8" + brightRed: "#1C1917" + brightGreen: "#73716F" + brightYellow: "#1C1917" + brightBlue: "#9E9D9C" + brightMagenta: "#1C1917" + brightCyan: "#474543" + brightWhite: "#1C1917" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 98.3 + black: 0 + red: 98.3 + green: 67.7 + yellow: 98.3 + blue: 46.5 + magenta: 98.3 + cyan: 86.1 + white: 98.3 + brightBlack: 22.9 + brightRed: 98.3 + brightGreen: 67.7 + brightYellow: 98.3 + brightBlue: 46.5 + brightMagenta: 98.3 + brightCyan: 86.1 + brightWhite: 98.3 diff --git a/themes/monochrome-light-subtle.yaml b/themes/monochrome-light-subtle.yaml new file mode 100644 index 00000000..0d8799e2 --- /dev/null +++ b/themes/monochrome-light-subtle.yaml @@ -0,0 +1,49 @@ +name: "monochrome-light-subtle" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47933 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" +colors: + bg: "#F1F5F9" + fg: "#4F565C" + black: "#F1F5F9" + red: "#7E8489" + green: "#ACB1B6" + yellow: "#4F565C" + blue: "#C3C8CC" + magenta: "#666D73" + cyan: "#959A9F" + white: "#383F46" + brightBlack: "#DADEE3" + brightRed: "#7E8489" + brightGreen: "#ACB1B6" + brightYellow: "#4F565C" + brightBlue: "#C3C8CC" + brightMagenta: "#666D73" + brightCyan: "#959A9F" + brightWhite: "#0A1219" +meta: + mode: "light" + accent: "indigo" + hue: null + contrast: + fg: 79.6 + black: 0 + red: 59.1 + green: 36.2 + yellow: 79.6 + blue: 23.7 + magenta: 69.8 + cyan: 48.2 + white: 88.5 + brightBlack: 11 + brightRed: 59.1 + brightGreen: 36.2 + brightYellow: 79.6 + brightBlue: 23.7 + brightMagenta: 69.8 + brightCyan: 48.2 + brightWhite: 99 diff --git a/themes/monochrome-light-zinc.yaml b/themes/monochrome-light-zinc.yaml new file mode 100644 index 00000000..b265f0ed --- /dev/null +++ b/themes/monochrome-light-zinc.yaml @@ -0,0 +1,49 @@ +name: "monochrome-light-zinc" +source: + marketplace_id: "ccssmnn.monochrome-tailwind-colors" + version: "1.0.0" + installs: 1193 + author: "Carl Assmann" + repo: "https://github.com/ccssmnn/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" +colors: + bg: "#F4F4F5" + fg: "#18181B" + black: "#F4F4F5" + red: "#18181B" + green: "#707072" + yellow: "#18181B" + blue: "#9C9C9E" + magenta: "#18181B" + cyan: "#444447" + white: "#18181B" + brightBlack: "#C8C8C9" + brightRed: "#18181B" + brightGreen: "#707072" + brightYellow: "#18181B" + brightBlue: "#9C9C9E" + brightMagenta: "#18181B" + brightCyan: "#444447" + brightWhite: "#18181B" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 98 + black: 0 + red: 98 + green: 67.7 + yellow: 98 + blue: 46.5 + magenta: 98 + cyan: 86 + white: 98 + brightBlack: 23 + brightRed: 98 + brightGreen: 67.7 + brightYellow: 98 + brightBlue: 46.5 + brightMagenta: 98 + brightCyan: 86 + brightWhite: 98 diff --git a/themes/monochrome-light.yaml b/themes/monochrome-light.yaml new file mode 100644 index 00000000..e4c4fc57 --- /dev/null +++ b/themes/monochrome-light.yaml @@ -0,0 +1,49 @@ +name: "monochrome-light" +source: + marketplace_id: "dkamyshov.monochrome" + version: "2.3.3" + installs: 2227 + author: "dkamyshov" + repo: "https://github.com/dkamyshov/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=dkamyshov.monochrome" +colors: + bg: "#EBEBEB" + fg: "#101010" + black: "#EBEBEB" + red: "#2B2B2B" + green: "#787878" + yellow: "#101010" + blue: "#9E9E9E" + magenta: "#101010" + cyan: "#525252" + white: "#101010" + brightBlack: "#C5C5C5" + brightRed: "#2B2B2B" + brightGreen: "#787878" + brightYellow: "#101010" + brightBlue: "#9E9E9E" + brightMagenta: "#101010" + brightCyan: "#525252" + brightWhite: "#101010" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 93.6 + black: 0 + red: 89 + green: 58.8 + yellow: 93.6 + blue: 40.2 + magenta: 93.6 + cyan: 75.3 + white: 93.6 + brightBlack: 19.4 + brightRed: 89 + brightGreen: 58.8 + brightYellow: 93.6 + brightBlue: 40.2 + brightMagenta: 93.6 + brightCyan: 75.3 + brightWhite: 93.6 diff --git a/themes/monochrome.yaml b/themes/monochrome.yaml new file mode 100644 index 00000000..295a7bf3 --- /dev/null +++ b/themes/monochrome.yaml @@ -0,0 +1,49 @@ +name: "Monochrome" +source: + marketplace_id: "toufiqahmedshr.monochrome-theme" + version: "1.1.0" + installs: 3262 + author: "Toufiq Ahmed" + repo: "https://github.com/toufiq-ahmed/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=toufiqahmedshr.monochrome-theme" +colors: + bg: "#1A1A1A" + fg: "#EEFFFF" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.2 + black: 7.8 + red: 32.6 + green: 61.3 + yellow: 76.1 + blue: 48.3 + magenta: 46.1 + cyan: 62.3 + white: 92 + brightBlack: 15.1 + brightRed: 32.6 + brightGreen: 61.3 + brightYellow: 76.1 + brightBlue: 48.3 + brightMagenta: 46.1 + brightCyan: 60.2 + brightWhite: 95.9 diff --git a/themes/monocious-color-theme.yaml b/themes/monocious-color-theme.yaml new file mode 100644 index 00000000..3bf7328b --- /dev/null +++ b/themes/monocious-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Monocious-color-theme" +source: + marketplace_id: "vinihvc.monocious" + version: "1.0.0" + installs: 84 + author: "Vinicius Vicentini" + repo: "https://github.com/vinihvc/monocious" + url: "https://marketplace.visualstudio.com/items?itemName=vinihvc.monocious" +colors: + bg: "#1D1D25" + fg: "#FFFFFF" + black: "#333333" + red: "#FF3399" + green: "#00D364" + yellow: "#F9DA78" + blue: "#00BFFF" + magenta: "#8C6BC8" + cyan: "#00CED1" + white: "#FFFFFF" + brightBlack: "#3D3D56" + brightRed: "#FF3399" + brightGreen: "#00D364" + brightYellow: "#F9DA78" + brightBlue: "#00BFFF" + brightMagenta: "#CC66FF" + brightCyan: "#00CED1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 106.1 + black: 0 + red: 40.2 + green: 62.7 + yellow: 83.8 + blue: 59.6 + magenta: 31.4 + cyan: 63.8 + white: 106.1 + brightBlack: 0 + brightRed: 40.2 + brightGreen: 62.7 + brightYellow: 83.8 + brightBlue: 59.6 + brightMagenta: 43.4 + brightCyan: 63.8 + brightWhite: 106.1 diff --git a/themes/monoclean-light.yaml b/themes/monoclean-light.yaml new file mode 100644 index 00000000..11ffa25e --- /dev/null +++ b/themes/monoclean-light.yaml @@ -0,0 +1,49 @@ +name: "Monoclean Light" +source: + marketplace_id: "barelyreaper.monoclean" + version: "0.1.7" + installs: 555 + author: "Reaper" + repo: "https://github.com/barelyhuman/vscode-monoclean-theme" + url: "https://marketplace.visualstudio.com/items?itemName=barelyreaper.monoclean" +colors: + bg: "#EFEFEF" + fg: "#16161B" + black: "#121212" + red: "#EE0000" + green: "#29D398" + yellow: "#FAB795" + blue: "#50B4E6" + magenta: "#CA30C7" + cyan: "#95E6CB" + white: "#969696" + brightBlack: "#16161B" + brightRed: "#FF0000" + brightGreen: "#3FDAA4" + brightYellow: "#FAB795" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#A6FDE1" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.3 + black: 95.8 + red: 58.9 + green: 27 + yellow: 21.1 + blue: 36.2 + magenta: 59.7 + cyan: 11.9 + white: 46.6 + brightBlack: 95.3 + brightRed: 54.6 + brightGreen: 23 + brightYellow: 21.1 + brightBlue: 56.5 + brightMagenta: 34.2 + brightCyan: 0 + brightWhite: 15 diff --git a/themes/monocr.yaml b/themes/monocr.yaml new file mode 100644 index 00000000..b66ae30a --- /dev/null +++ b/themes/monocr.yaml @@ -0,0 +1,49 @@ +name: "Monocr" +source: + marketplace_id: "shwuy.zhxo-themes" + version: "2.0.1" + installs: 1481 + author: "shwuy" + repo: "https://github.com/sxhk0/.theme" + url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" +colors: + bg: "#1C1C20" + fg: "#B7BECB" + black: "#3B3B3B" + red: "#E03C3C" + green: "#22CD8B" + yellow: "#EEC051" + blue: "#668BE2" + magenta: "#A34BB0" + cyan: "#10CCD5" + white: "#CBCBCB" + brightBlack: "#66676F" + brightRed: "#F08359" + brightGreen: "#3FE6A3" + brightYellow: "#FBFB7B" + brightBlue: "#81A6FD" + brightMagenta: "#C970D6" + brightCyan: "#4DEAEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65.6 + black: 0 + red: 31.7 + green: 61 + yellow: 70.7 + blue: 39.8 + magenta: 26 + cyan: 63.2 + white: 73.5 + brightBlack: 22 + brightRed: 50.1 + brightGreen: 74.5 + brightYellow: 99.5 + brightBlue: 53.6 + brightMagenta: 42.5 + brightCyan: 79.8 + brightWhite: 106.3 diff --git a/themes/monocraft.yaml b/themes/monocraft.yaml new file mode 100644 index 00000000..c3e6ba9e --- /dev/null +++ b/themes/monocraft.yaml @@ -0,0 +1,49 @@ +name: "MonoCraft" +source: + marketplace_id: "cdztt.monocraft" + version: "2.1.0" + installs: 3966 + author: "cdztt" + repo: "https://github.com/cdztt/monocraft-VSCodeColorTheme" + url: "https://marketplace.visualstudio.com/items?itemName=cdztt.monocraft" +colors: + bg: "#272822" + fg: "#CCC8C8" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 115 + contrast: + fg: 70.5 + black: 0 + red: 22.3 + green: 50.7 + yellow: 55.3 + blue: 32.3 + magenta: 29.9 + cyan: 48.1 + white: 86.2 + brightBlack: 19.7 + brightRed: 35 + brightGreen: 74.7 + brightYellow: 81.6 + brightBlue: 47.5 + brightMagenta: 44.2 + brightCyan: 71.1 + brightWhite: 99.6 diff --git a/themes/monoeye.yaml b/themes/monoeye.yaml new file mode 100644 index 00000000..673c2035 --- /dev/null +++ b/themes/monoeye.yaml @@ -0,0 +1,49 @@ +name: "Monoeye" +source: + marketplace_id: "EyemonoRin.monoeye" + version: "0.1.6" + installs: 667 + author: "Eyemono Rin" + repo: "https://github.com/eyemono/monoeye-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=EyemonoRin.monoeye" +colors: + bg: "#19151F" + fg: "#F2EEF6" + black: "#0C0A0F" + red: "#FF66CC" + green: "#A2DB57" + yellow: "#EDD861" + blue: "#8F98FF" + magenta: "#C688F2" + cyan: "#75F0DB" + white: "#B2ABBA" + brightBlack: "#130F17" + brightRed: "#FF66CC" + brightGreen: "#A2DB57" + brightYellow: "#EDD861" + brightBlue: "#8F98FF" + brightMagenta: "#C688F2" + brightCyan: "#75F0DB" + brightWhite: "#F2EEF6" +meta: + mode: "dark" + accent: "pink" + hue: 303 + contrast: + fg: 96.7 + black: 0 + red: 50.7 + green: 73.6 + yellow: 81.5 + blue: 50.4 + magenta: 51 + cyan: 84.4 + white: 57.2 + brightBlack: 0 + brightRed: 50.7 + brightGreen: 73.6 + brightYellow: 81.5 + brightBlue: 50.4 + brightMagenta: 51 + brightCyan: 84.4 + brightWhite: 96.7 diff --git a/themes/monokai-blue.yaml b/themes/monokai-blue.yaml new file mode 100644 index 00000000..e03b7316 --- /dev/null +++ b/themes/monokai-blue.yaml @@ -0,0 +1,49 @@ +name: "Monokai +Blue" +source: + marketplace_id: "tw.monokai-accent" + version: "0.0.7" + installs: 13330 + author: "tw" + repo: "https://github.com/tw-studio/monokai-accent" + url: "https://marketplace.visualstudio.com/items?itemName=tw.monokai-accent" +colors: + bg: "#242424" + fg: "#F6F6F6" + black: "#222222" + red: "#FC618D" + green: "#7BD88F" + yellow: "#FCE566" + blue: "#FD9353" + magenta: "#948AE3" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#FCE566" + brightBlue: "#FD9353" + brightMagenta: "#948AE3" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 99.2 + black: 0 + red: 44.6 + green: 68.5 + yellow: 87.9 + blue: 56.2 + magenta: 42.5 + cyan: 68.3 + white: 97.5 + brightBlack: 21.1 + brightRed: 44.6 + brightGreen: 68.5 + brightYellow: 87.9 + brightBlue: 56.2 + brightMagenta: 42.5 + brightCyan: 68.3 + brightWhite: 97.5 diff --git a/themes/monokai-color-theme-1.yaml b/themes/monokai-color-theme-1.yaml new file mode 100644 index 00000000..49c49146 --- /dev/null +++ b/themes/monokai-color-theme-1.yaml @@ -0,0 +1,49 @@ +name: "monokai-color-theme-1" +source: + marketplace_id: "datvo.theme-monokai-v2" + version: "1.0.4" + installs: 1745 + author: "Dat Vo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=datvo.theme-monokai-v2" +colors: + bg: "#1D1E16" + fg: "#FFFFFF" + black: "#2D2D2D" + red: "#F81B6A" + green: "#A2E222" + yellow: "#E1E222" + blue: "#7A96FE" + magenta: "#AA7CFE" + cyan: "#5ED8ED" + white: "#FFFFFF" + brightBlack: "#757575" + brightRed: "#FF1B86" + brightGreen: "#CEFF26" + brightYellow: "#FFFF26" + brightBlue: "#9BBEFF" + brightMagenta: "#DA9BFF" + brightCyan: "#75FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 113 + contrast: + fg: 106.1 + black: 0 + red: 35.6 + green: 75.8 + yellow: 83 + blue: 47.1 + magenta: 43.8 + cyan: 71.7 + white: 106.1 + brightBlack: 27.9 + brightRed: 38.1 + brightGreen: 94.7 + brightYellow: 101 + brightBlue: 65.3 + brightMagenta: 60.1 + brightCyan: 92.9 + brightWhite: 106.1 diff --git a/themes/monokai-color-theme.yaml b/themes/monokai-color-theme.yaml new file mode 100644 index 00000000..700019c2 --- /dev/null +++ b/themes/monokai-color-theme.yaml @@ -0,0 +1,49 @@ +name: "monokai-color-theme" +source: + marketplace_id: "destcode.monokai-air" + version: "1.0.1" + installs: 214 + author: "destcode" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=destcode.monokai-air" +colors: + bg: "#232421" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 100.3 + black: 0 + red: 22.9 + green: 51.3 + yellow: 56 + blue: 33 + magenta: 30.5 + cyan: 48.8 + white: 86.8 + brightBlack: 20.4 + brightRed: 35.6 + brightGreen: 75.3 + brightYellow: 82.2 + brightBlue: 48.2 + brightMagenta: 44.9 + brightCyan: 71.7 + brightWhite: 100.3 diff --git a/themes/monokai-dark-green.yaml b/themes/monokai-dark-green.yaml new file mode 100644 index 00000000..24513ba1 --- /dev/null +++ b/themes/monokai-dark-green.yaml @@ -0,0 +1,49 @@ +name: "Monokai Dark Green" +source: + marketplace_id: "alvaro-israel-nunes-leite.theme-monokai-dark-green" + version: "0.1.4" + installs: 4830 + author: "Alvaro Israel Nunes Leite" + repo: "https://github.com/AlvaroIsrael/monokai-dark-green" + url: "https://marketplace.visualstudio.com/items?itemName=alvaro-israel-nunes-leite.theme-monokai-dark-green" +colors: + bg: "#1A1A1A" + fg: "#CFBFAD" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F32569" + brightGreen: "#B1F325" + brightYellow: "#C3E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#CFBFAD" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 68.1 + black: 0 + red: 24.3 + green: 52.7 + yellow: 57.3 + blue: 34.3 + magenta: 31.9 + cyan: 50.1 + white: 88.2 + brightBlack: 21.7 + brightRed: 35.2 + brightGreen: 86 + brightYellow: 79.7 + brightBlue: 49.5 + brightMagenta: 46.2 + brightCyan: 73.1 + brightWhite: 68.1 diff --git a/themes/monokai-dark.yaml b/themes/monokai-dark.yaml new file mode 100644 index 00000000..578aebec --- /dev/null +++ b/themes/monokai-dark.yaml @@ -0,0 +1,49 @@ +name: "Monokai Dark" +source: + marketplace_id: "Treevel.monokai-dark-theme" + version: "0.0.3" + installs: 445 + author: "Treevel" + repo: "https://github.com/treevel/vscode-theme-monokai-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Treevel.monokai-dark-theme" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 23.8 + green: 52.2 + yellow: 56.8 + blue: 33.8 + magenta: 31.4 + cyan: 49.6 + white: 87.7 + brightBlack: 21.2 + brightRed: 36.5 + brightGreen: 76.2 + brightYellow: 83.1 + brightBlue: 49 + brightMagenta: 45.7 + brightCyan: 72.6 + brightWhite: 101.1 diff --git a/themes/monokai-deep-dark.yaml b/themes/monokai-deep-dark.yaml new file mode 100644 index 00000000..981fb080 --- /dev/null +++ b/themes/monokai-deep-dark.yaml @@ -0,0 +1,49 @@ +name: "Monokai Deep Dark" +source: + marketplace_id: "initialzgq.monokai-deep-dark" + version: "0.1.4" + installs: 604 + author: "initialzgq" + repo: "https://github.com/initialqing/monokai-deep-dark" + url: "https://marketplace.visualstudio.com/items?itemName=initialzgq.monokai-deep-dark" +colors: + bg: "#000000" + fg: "#F8F8F2" + black: "#393A34" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#777777" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 103 + black: 0 + red: 25.6 + green: 54 + yellow: 58.7 + blue: 35.6 + magenta: 33.2 + cyan: 51.5 + white: 89.5 + brightBlack: 30.6 + brightRed: 38.3 + brightGreen: 78 + brightYellow: 84.9 + brightBlue: 50.9 + brightMagenta: 47.5 + brightCyan: 74.4 + brightWhite: 103 diff --git a/themes/monokai-deep-ocean.yaml b/themes/monokai-deep-ocean.yaml new file mode 100644 index 00000000..0890c272 --- /dev/null +++ b/themes/monokai-deep-ocean.yaml @@ -0,0 +1,49 @@ +name: "Monokai Deep Ocean" +source: + marketplace_id: "mimo.monokai-rain" + version: "0.4.0" + installs: 807 + author: "Michelle Mounde" + repo: "https://github.com/michellemounde/monokai-rainstorm" + url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" +colors: + bg: "#0A0A2A" + fg: "#FFFFFF" + black: "#3D4750" + red: "#FF002B" + green: "#C4FF02" + yellow: "#FFA200" + blue: "#245FCC" + magenta: "#CC00FF" + cyan: "#00D8C6" + white: "#C5C5C0" + brightBlack: "#777E84" + brightRed: "#FF5F38" + brightGreen: "#ABEAAC" + brightYellow: "#F9EC2A" + brightBlue: "#51B9FF" + brightMagenta: "#FF5BE6" + brightCyan: "#8AEAEA" + brightWhite: "#FFFFF7" +meta: + mode: "dark" + accent: "pink" + hue: 277 + contrast: + fg: 107.4 + black: 10 + red: 37.2 + green: 94.9 + yellow: 63.2 + blue: 22.6 + magenta: 35 + cyan: 69.4 + white: 70.9 + brightBlack: 32.9 + brightRed: 45.4 + brightGreen: 84.1 + brightYellow: 92.4 + brightBlue: 59.7 + brightMagenta: 50.7 + brightCyan: 83.9 + brightWhite: 107.1 diff --git a/themes/monokai-drizzle.yaml b/themes/monokai-drizzle.yaml new file mode 100644 index 00000000..a4230d8d --- /dev/null +++ b/themes/monokai-drizzle.yaml @@ -0,0 +1,49 @@ +name: "Monokai Drizzle" +source: + marketplace_id: "mimo.monokai-rain" + version: "0.4.0" + installs: 807 + author: "Michelle Mounde" + repo: "https://github.com/michellemounde/monokai-rainstorm" + url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" +colors: + bg: "#133245" + fg: "#DCE2E8" + black: "#3D4750" + red: "#FF002B" + green: "#C4FF02" + yellow: "#FFA200" + blue: "#245FCC" + magenta: "#CC00FF" + cyan: "#00D8C6" + white: "#C5C5C0" + brightBlack: "#777E84" + brightRed: "#FF5F38" + brightGreen: "#ABEAAC" + brightYellow: "#F9EC2A" + brightBlue: "#51B9FF" + brightMagenta: "#FF5BE6" + brightCyan: "#8AEAEA" + brightWhite: "#FFFFF7" +meta: + mode: "dark" + accent: "pink" + hue: 238 + contrast: + fg: 83.6 + black: 0 + red: 32.6 + green: 90.3 + yellow: 58.6 + blue: 18 + magenta: 30.4 + cyan: 64.8 + white: 66.3 + brightBlack: 28.3 + brightRed: 40.8 + brightGreen: 79.5 + brightYellow: 87.8 + brightBlue: 55.1 + brightMagenta: 46.1 + brightCyan: 79.4 + brightWhite: 102.5 diff --git a/themes/monokai-extended.yaml b/themes/monokai-extended.yaml new file mode 100644 index 00000000..6a168e3f --- /dev/null +++ b/themes/monokai-extended.yaml @@ -0,0 +1,49 @@ +name: "monokai-extended" +source: + marketplace_id: "RajPal.monokai-extended" + version: "2.0.0" + installs: 228 + author: "Raj Pal" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RajPal.monokai-extended" +colors: + bg: "#2C2525" + fg: "#FFFFFF" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 18 + contrast: + fg: 104.7 + black: 0 + red: 22.4 + green: 50.8 + yellow: 55.5 + blue: 32.4 + magenta: 30 + cyan: 48.3 + white: 86.3 + brightBlack: 19.8 + brightRed: 35.1 + brightGreen: 74.8 + brightYellow: 81.7 + brightBlue: 47.7 + brightMagenta: 44.3 + brightCyan: 71.2 + brightWhite: 99.8 diff --git a/themes/monokai-faded.yaml b/themes/monokai-faded.yaml new file mode 100644 index 00000000..e7b80a69 --- /dev/null +++ b/themes/monokai-faded.yaml @@ -0,0 +1,49 @@ +name: "monokai-faded" +source: + marketplace_id: "dionmunk.theme-monokai-faded" + version: "1.0.4" + installs: 1829 + author: "Dion Munk" + repo: "https://github.com/dionmunk/vscode-theme-monokai-faded" + url: "https://marketplace.visualstudio.com/items?itemName=dionmunk.theme-monokai-faded" +colors: + bg: "#202020" + fg: "#F8F8F8" + black: "#000000" + red: "#D13B2E" + green: "#B5D93F" + yellow: "#E0D77B" + blue: "#74C5D9" + magenta: "#7C71C8" + cyan: "#DF5077" + white: "#F8F8F8" + brightBlack: "#000000" + brightRed: "#D13B2E" + brightGreen: "#B5D93F" + brightYellow: "#E0D77B" + brightBlue: "#74C5D9" + brightMagenta: "#7C71C8" + brightCyan: "#DF5077" + brightWhite: "#F8F8F8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 101.1 + black: 0 + red: 27.6 + green: 73.2 + yellow: 78.5 + blue: 62.8 + magenta: 31 + cyan: 35.1 + white: 101.1 + brightBlack: 0 + brightRed: 27.6 + brightGreen: 73.2 + brightYellow: 78.5 + brightBlue: 62.8 + brightMagenta: 31 + brightCyan: 35.1 + brightWhite: 101.1 diff --git a/themes/monokai-flow.yaml b/themes/monokai-flow.yaml new file mode 100644 index 00000000..23bd8a57 --- /dev/null +++ b/themes/monokai-flow.yaml @@ -0,0 +1,49 @@ +name: "Monokai Flow" +source: + marketplace_id: "MaheshSinghChouhan.monokai-mahesh" + version: "0.0.1" + installs: 229 + author: "Mahesh Singh Chouhan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MaheshSinghChouhan.monokai-mahesh" +colors: + bg: "#171717" + fg: "#55B5B5" + black: "#333333" + red: "#C4265E" + green: "#14A333" + yellow: "#E6E62B" + blue: "#6A7EC8" + magenta: "#734DB9" + cyan: "#49CAE0" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#00FF00" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 53.5 + black: 0 + red: 24.6 + green: 40.7 + yellow: 86.3 + blue: 34.6 + magenta: 21.1 + cyan: 64.5 + white: 88.5 + brightBlack: 22 + brightRed: 85.5 + brightGreen: 77 + brightYellow: 83.9 + brightBlue: 49.9 + brightMagenta: 46.5 + brightCyan: 73.4 + brightWhite: 102 diff --git a/themes/monokai-grey.yaml b/themes/monokai-grey.yaml new file mode 100644 index 00000000..7498c880 --- /dev/null +++ b/themes/monokai-grey.yaml @@ -0,0 +1,49 @@ +name: "Monokai Grey" +source: + marketplace_id: "LaurentTreguier.monokai-grey" + version: "0.2.8" + installs: 5164 + author: "Laurent Tréguier" + repo: "https://github.com/LaurentTreguier/vscode-monokai-grey" + url: "https://marketplace.visualstudio.com/items?itemName=LaurentTreguier.monokai-grey" +colors: + bg: "#252729" + fg: "#DFDFDF" + black: "#000000" + red: "#BF0000" + green: "#00BF00" + yellow: "#BFBF00" + blue: "#0000BF" + magenta: "#BF00BF" + cyan: "#00BFBF" + white: "#BFBFBF" + brightBlack: "#3F3F3F" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#00FF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 84 + black: 0 + red: 19.1 + green: 50.9 + yellow: 61.5 + blue: 0 + magenta: 24.7 + cyan: 54.6 + white: 64.8 + brightBlack: 0 + brightRed: 34.3 + brightGreen: 83.3 + brightYellow: 83.3 + brightBlue: 13 + brightMagenta: 43 + brightCyan: 89 + brightWhite: 104.7 diff --git a/themes/monokai-grs.yaml b/themes/monokai-grs.yaml new file mode 100644 index 00000000..dc795a4d --- /dev/null +++ b/themes/monokai-grs.yaml @@ -0,0 +1,49 @@ +name: "Monokai GRS" +source: + marketplace_id: "ChrisFreeze.monokai-grs-elixir" + version: "0.1.0" + installs: 1 + author: "Chris Freeze" + repo: "https://github.com/cjfreeze/Monokai-GRS" + url: "https://marketplace.visualstudio.com/items?itemName=ChrisFreeze.monokai-grs-elixir" +colors: + bg: "#202020" + fg: "#F0F0F0" + black: "#505050" + red: "#D32F2F" + green: "#388E3C" + yellow: "#FBC02D" + blue: "#1976D2" + magenta: "#7B1FA2" + cyan: "#0097A7" + white: "#F0F0F0" + brightBlack: "#606060" + brightRed: "#FF1744" + brightGreen: "#00E676" + brightYellow: "#FFEA00" + brightBlue: "#2979FF" + brightMagenta: "#D500F9" + brightCyan: "#00E5FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 95.9 + black: 12.1 + red: 26.7 + green: 31.6 + yellow: 72 + blue: 28.2 + magenta: 12.9 + cyan: 37.5 + white: 95.9 + brightBlack: 18.4 + brightRed: 36.1 + brightGreen: 72.2 + brightYellow: 90.6 + brightBlue: 33 + brightMagenta: 34.6 + brightCyan: 76.9 + brightWhite: 105.8 diff --git a/themes/monokai-hc-color-theme.yaml b/themes/monokai-hc-color-theme.yaml new file mode 100644 index 00000000..0ce666fc --- /dev/null +++ b/themes/monokai-hc-color-theme.yaml @@ -0,0 +1,49 @@ +name: "monokai-hc-color-theme" +source: + marketplace_id: "iZDT.theme-monokai-hc" + version: "1.0.1" + installs: 5112 + author: "iZDT" + repo: "https://github.com/Simple-Tools/VSCode-MonokaiHC-theme" + url: "https://marketplace.visualstudio.com/items?itemName=iZDT.theme-monokai-hc" +colors: + bg: "#000000" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 103 + black: 0 + red: 25.6 + green: 54 + yellow: 58.7 + blue: 35.6 + magenta: 33.2 + cyan: 51.5 + white: 89.5 + brightBlack: 23 + brightRed: 38.3 + brightGreen: 78 + brightYellow: 84.9 + brightBlue: 50.9 + brightMagenta: 47.5 + brightCyan: 74.4 + brightWhite: 103 diff --git a/themes/monokai-japan-color-theme.yaml b/themes/monokai-japan-color-theme.yaml new file mode 100644 index 00000000..6c537fd8 --- /dev/null +++ b/themes/monokai-japan-color-theme.yaml @@ -0,0 +1,49 @@ +name: "monokai-japan-color-theme" +source: + marketplace_id: "Minorin.theme-monokai-japan" + version: "1.0.1" + installs: 2921 + author: "Minorin" + repo: "https://github.com/minorin22/Monokai-Japan" + url: "https://marketplace.visualstudio.com/items?itemName=Minorin.theme-monokai-japan" +colors: + bg: "#272727" + fg: "#FBFBF8" + black: "#434944" + red: "#DA5673" + green: "#7BB75B" + yellow: "#EEBF35" + blue: "#5CABDC" + magenta: "#7457A2" + cyan: "#87C7D4" + white: "#FBFBF8" + brightBlack: "#6B6B6B" + brightRed: "#DBA2B4" + brightGreen: "#898E38" + brightYellow: "#8A6B3D" + brightBlue: "#126B8C" + brightMagenta: "#B595CF" + brightCyan: "#44A9BA" + brightWhite: "#BFC2BC" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.8 + black: 7.8 + red: 33.8 + green: 51.7 + yellow: 68.4 + blue: 49.4 + magenta: 19.7 + cyan: 63.6 + white: 101.8 + brightBlack: 21.9 + brightRed: 57.2 + brightGreen: 35.9 + brightYellow: 24.3 + brightBlue: 19 + brightMagenta: 48.4 + brightCyan: 45.7 + brightWhite: 65.9 diff --git a/themes/monokai-midnight.yaml b/themes/monokai-midnight.yaml new file mode 100644 index 00000000..2cbcbb24 --- /dev/null +++ b/themes/monokai-midnight.yaml @@ -0,0 +1,49 @@ +name: "Monokai Midnight" +source: + marketplace_id: "syahrizaldev.monokai-midnight" + version: "1.5.2" + installs: 314 + author: "Syahrizal" + repo: "https://github.com/syahrizaldev/monokai-midnight" + url: "https://marketplace.visualstudio.com/items?itemName=syahrizaldev.monokai-midnight" +colors: + bg: "#0E0E11" + fg: "#E2E4E9" + black: "#282C33" + red: "#E96379" + green: "#7BC059" + yellow: "#E0B16C" + blue: "#5E8EED" + magenta: "#E96379" + cyan: "#59B7C0" + white: "#E3E5E8" + brightBlack: "#282C33" + brightRed: "#E96379" + brightGreen: "#7BC059" + brightYellow: "#E0B16C" + brightBlue: "#5E8EED" + brightMagenta: "#E96379" + brightCyan: "#59B7C0" + brightWhite: "#E3E5E8" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 90 + black: 0 + red: 42.7 + green: 58.6 + yellow: 64.2 + blue: 42.5 + magenta: 42.7 + cyan: 55.7 + white: 90.6 + brightBlack: 0 + brightRed: 42.7 + brightGreen: 58.6 + brightYellow: 64.2 + brightBlue: 42.5 + brightMagenta: 42.7 + brightCyan: 55.7 + brightWhite: 90.6 diff --git a/themes/monokai-night-z-blue.yaml b/themes/monokai-night-z-blue.yaml new file mode 100644 index 00000000..4f08ce1d --- /dev/null +++ b/themes/monokai-night-z-blue.yaml @@ -0,0 +1,49 @@ +name: "Monokai Night Z Blue" +source: + marketplace_id: "ZivKaplan.monokai-night-z" + version: "1.3.2" + installs: 876 + author: "Ziv Kaplan" + repo: "https://github.com/zivkaplan/monokai-night-z" + url: "https://marketplace.visualstudio.com/items?itemName=ZivKaplan.monokai-night-z" +colors: + bg: "#21252B" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 258 + contrast: + fg: 100.1 + black: 0 + red: 22.7 + green: 51.2 + yellow: 55.8 + blue: 32.8 + magenta: 30.3 + cyan: 48.6 + white: 86.6 + brightBlack: 20.2 + brightRed: 35.4 + brightGreen: 75.1 + brightYellow: 82 + brightBlue: 48 + brightMagenta: 44.7 + brightCyan: 71.6 + brightWhite: 100.1 diff --git a/themes/monokai-night.yaml b/themes/monokai-night.yaml new file mode 100644 index 00000000..7302f5d8 --- /dev/null +++ b/themes/monokai-night.yaml @@ -0,0 +1,49 @@ +name: "Monokai Night" +source: + marketplace_id: "jonbellah.monokai-after-dark" + version: "0.1.4" + installs: 1895 + author: "Jon Bellah" + repo: "https://github.com/jonbellah/monokai-after-dark" + url: "https://marketplace.visualstudio.com/items?itemName=jonbellah.monokai-after-dark" +colors: + bg: "#1D232F" + fg: "#A8B5D1" + black: "#111111" + red: "#FC2D1E" + green: "#2FCC71" + yellow: "#F1C40D" + blue: "#3398DB" + magenta: "#6171C4" + cyan: "#0095DE" + white: "#DEE2EA" + brightBlack: "#7992B4" + brightRed: "#FF5874" + brightGreen: "#6AF699" + brightYellow: "#FFFA9E" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#4FF2F8" + brightWhite: "#99A3B8" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 59.5 + black: 0 + red: 35.7 + green: 59.1 + yellow: 71.4 + blue: 40.9 + magenta: 28 + cyan: 39.4 + white: 86.4 + brightBlack: 40.1 + brightRed: 43 + brightGreen: 82.9 + brightYellow: 99.4 + brightBlue: 54.4 + brightMagenta: 52.2 + brightCyan: 83.6 + brightWhite: 49.7 diff --git a/themes/monokai-ocean-color-theme.yaml b/themes/monokai-ocean-color-theme.yaml new file mode 100644 index 00000000..60940e3c --- /dev/null +++ b/themes/monokai-ocean-color-theme.yaml @@ -0,0 +1,49 @@ +name: "monokai-ocean-color-theme" +source: + marketplace_id: "rofrol.monokai-ocean" + version: "1.0.6" + installs: 10812 + author: "rofrol" + repo: "https://github.com/rofrol/monokai-ocean" + url: "https://marketplace.visualstudio.com/items?itemName=rofrol.monokai-ocean" +colors: + bg: "#191E29" + fg: "#C0C0C0" + black: "#403E41" + red: "#FF6188" + green: "#A9DC76" + yellow: "#E6C866" + blue: "#FC9867" + magenta: "#AB9DF2" + cyan: "#78DCE8" + white: "#BEC4CB" + brightBlack: "#727072" + brightRed: "#FF6188" + brightGreen: "#A9DC76" + brightYellow: "#E6C866" + brightBlue: "#FC9867" + brightMagenta: "#AB9DF2" + brightCyan: "#78DCE8" + brightWhite: "#BEC4CB" +meta: + mode: "dark" + accent: "red" + hue: 266 + contrast: + fg: 66.8 + black: 0 + red: 46 + green: 74.4 + yellow: 72.8 + blue: 58.8 + magenta: 53.4 + cyan: 74.6 + white: 68.7 + brightBlack: 25.8 + brightRed: 46 + brightGreen: 74.4 + brightYellow: 72.8 + brightBlue: 58.8 + brightMagenta: 53.4 + brightCyan: 74.6 + brightWhite: 68.7 diff --git a/themes/monokai-octagon.yaml b/themes/monokai-octagon.yaml new file mode 100644 index 00000000..137c2d35 --- /dev/null +++ b/themes/monokai-octagon.yaml @@ -0,0 +1,49 @@ +name: "Monokai Octagon" +source: + marketplace_id: "mhmdsulimn.msdev-vscode" + version: "1.6.0" + installs: 456 + author: "Mohamed Suliman" + repo: "https://github.com/mhmdsulimn/MS-Dev-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=mhmdsulimn.msdev-vscode" +colors: + bg: "#282A39" + fg: "#E9F1F0" + black: "#000000" + red: "#D81E00" + green: "#5EA702" + yellow: "#CFAE00" + blue: "#427AB3" + magenta: "#89658E" + cyan: "#00A7AA" + white: "#DBDED8" + brightBlack: "#686A66" + brightRed: "#F54235" + brightGreen: "#99E343" + brightYellow: "#FDEB61" + brightBlue: "#84B0D8" + brightMagenta: "#BC94B7" + brightCyan: "#37E6E8" + brightWhite: "#F1F1F0" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 93.5 + black: 0 + red: 24.6 + green: 41.4 + yellow: 55.9 + blue: 26.6 + magenta: 24 + cyan: 42.4 + white: 82 + brightBlack: 20.4 + brightRed: 34.8 + brightGreen: 73.5 + brightYellow: 89.4 + brightBlue: 53 + brightMagenta: 47 + brightCyan: 74.7 + brightWhite: 94.6 diff --git a/themes/monokai-okean.yaml b/themes/monokai-okean.yaml new file mode 100644 index 00000000..d2716122 --- /dev/null +++ b/themes/monokai-okean.yaml @@ -0,0 +1,49 @@ +name: "Monokai-Okean" +source: + marketplace_id: "grantorino-publisher.theme-ocean-monokai" + version: "0.0.3" + installs: 936 + author: "grantorino" + repo: "https://github.com/grantorin/theme-ocean-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=grantorino-publisher.theme-ocean-monokai" +colors: + bg: "#253238" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 228 + contrast: + fg: 75.3 + black: 0 + red: 22.6 + green: 48.9 + yellow: 81.5 + blue: 23.3 + magenta: 25.6 + cyan: 43.4 + white: 85.9 + brightBlack: 17.9 + brightRed: 34.4 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.9 + brightMagenta: 41.2 + brightCyan: 51.3 + brightWhite: 85.9 diff --git a/themes/monokai-original-sublime-theme.yaml b/themes/monokai-original-sublime-theme.yaml new file mode 100644 index 00000000..a66cb057 --- /dev/null +++ b/themes/monokai-original-sublime-theme.yaml @@ -0,0 +1,49 @@ +name: "monokai-original-sublime-theme" +source: + marketplace_id: "badrouu-laabed.monokai-original-sublime-theme" + version: "1.0.0" + installs: 13536 + author: "badrouu-laabed" + repo: "https://github.com/Badrouu17/monokai-original-sublime-theme" + url: "https://marketplace.visualstudio.com/items?itemName=badrouu-laabed.monokai-original-sublime-theme" +colors: + bg: "#272822" + fg: "#F8F8F2" + black: "#666666" + red: "#F92672" + green: "#A6E22E" + yellow: "#E2E22E" + blue: "#819AFF" + magenta: "#AE81FF" + cyan: "#66D9EF" + white: "#F8F8F2" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 115 + contrast: + fg: 99.6 + black: 19.7 + red: 35 + green: 74.7 + yellow: 81.6 + blue: 47.5 + magenta: 44.2 + cyan: 71.1 + white: 99.6 + brightBlack: 19.7 + brightRed: 35 + brightGreen: 74.7 + brightYellow: 81.6 + brightBlue: 47.5 + brightMagenta: 44.2 + brightCyan: 71.1 + brightWhite: 99.6 diff --git a/themes/monokai-prime.yaml b/themes/monokai-prime.yaml new file mode 100644 index 00000000..7dafe975 --- /dev/null +++ b/themes/monokai-prime.yaml @@ -0,0 +1,49 @@ +name: "monokai-prime" +source: + marketplace_id: "nhoekstra.monokai-prime" + version: "0.0.2" + installs: 681 + author: "Nicholas Hoekstra" + repo: "https://github.com/nhoekstra/monokai-prime" + url: "https://marketplace.visualstudio.com/items?itemName=nhoekstra.monokai-prime" +colors: + bg: "#1E1E1E" + fg: "#F8F8F2" + black: "#1A1A1A" + red: "#F92672" + green: "#A6E22E" + yellow: "#FD971F" + blue: "#AE81FF" + magenta: "#F92672" + cyan: "#66D9EF" + white: "#CFCFC2" + brightBlack: "#75715E" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E6DB74" + brightBlue: "#AE81FF" + brightMagenta: "#F92672" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.1 + black: 0 + red: 36.5 + green: 76.2 + yellow: 57.9 + blue: 45.7 + magenta: 36.5 + cyan: 72.6 + white: 75.1 + brightBlack: 25.8 + brightRed: 36.5 + brightGreen: 76.2 + brightYellow: 81.2 + brightBlue: 45.7 + brightMagenta: 36.5 + brightCyan: 72.6 + brightWhite: 101.1 diff --git a/themes/monokai-pro.yaml b/themes/monokai-pro.yaml new file mode 100644 index 00000000..1ef1654e --- /dev/null +++ b/themes/monokai-pro.yaml @@ -0,0 +1,49 @@ +name: "Monokai Pro" +source: + marketplace_id: "AgraeonLabs.dev-themes" + version: "0.1.0" + installs: 283 + author: "Agraeon Labs" + repo: "https://github.com/adiagcodelance/VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" +colors: + bg: "#2D2A2E" + fg: "#FCFCFA" + black: "#2D2A2E" + red: "#FF6188" + green: "#A9DC76" + yellow: "#FFD866" + blue: "#FC9867" + magenta: "#AB9DF2" + cyan: "#78DCE8" + white: "#FCFCFA" + brightBlack: "#2D2A2E" + brightRed: "#FF6188" + brightGreen: "#A9DC76" + brightYellow: "#FFD866" + brightBlue: "#FC9867" + brightMagenta: "#AB9DF2" + brightCyan: "#78DCE8" + brightWhite: "#FCFCFA" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.8 + black: 0 + red: 43.8 + green: 72.3 + yellow: 81.3 + blue: 56.6 + magenta: 51.2 + cyan: 72.4 + white: 101.8 + brightBlack: 0 + brightRed: 43.8 + brightGreen: 72.3 + brightYellow: 81.3 + brightBlue: 56.6 + brightMagenta: 51.2 + brightCyan: 72.4 + brightWhite: 101.8 diff --git a/themes/monokai-rain.yaml b/themes/monokai-rain.yaml new file mode 100644 index 00000000..c822c42a --- /dev/null +++ b/themes/monokai-rain.yaml @@ -0,0 +1,49 @@ +name: "Monokai Rain" +source: + marketplace_id: "mimo.monokai-rain" + version: "0.4.0" + installs: 807 + author: "Michelle Mounde" + repo: "https://github.com/michellemounde/monokai-rainstorm" + url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" +colors: + bg: "#323A42" + fg: "#DCE2E8" + black: "#3D4750" + red: "#FF002B" + green: "#C4FF02" + yellow: "#FFA200" + blue: "#245FCC" + magenta: "#CC00FF" + cyan: "#00D8C6" + white: "#C5C5C0" + brightBlack: "#777E84" + brightRed: "#FF5F38" + brightGreen: "#ABEAAC" + brightYellow: "#F9EC2A" + brightBlue: "#51B9FF" + brightMagenta: "#FF5BE6" + brightCyan: "#8AEAEA" + brightWhite: "#FFFFF7" +meta: + mode: "dark" + accent: "pink" + hue: 248 + contrast: + fg: 81 + black: 0 + red: 30.1 + green: 87.7 + yellow: 56.1 + blue: 15.4 + magenta: 27.9 + cyan: 62.2 + white: 63.7 + brightBlack: 25.7 + brightRed: 38.2 + brightGreen: 76.9 + brightYellow: 85.2 + brightBlue: 52.5 + brightMagenta: 43.5 + brightCyan: 76.8 + brightWhite: 99.9 diff --git a/themes/monokai-seti-dark.yaml b/themes/monokai-seti-dark.yaml new file mode 100644 index 00000000..f7283c41 --- /dev/null +++ b/themes/monokai-seti-dark.yaml @@ -0,0 +1,49 @@ +name: "monokai-seti-dark" +source: + marketplace_id: "adityavm.vscode-monokai-seti" + version: "0.0.8" + installs: 19546 + author: "Aditya Mukherjee" + repo: "https://github.com/adityavm/vscode-monokai-seti" + url: "https://marketplace.visualstudio.com/items?itemName=adityavm.vscode-monokai-seti" +colors: + bg: "#15191B" + fg: "#D1D4D3" + black: "#1D242C" + red: "#FD971F" + green: "#C2D94C" + yellow: "#FD971F" + blue: "#66D9EF" + magenta: "#CA30C7" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#CBE645" + brightYellow: "#FFEE99" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#A6FDE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.9 + black: 0 + red: 58.6 + green: 75.8 + yellow: 58.6 + blue: 73.3 + magenta: 31.3 + cyan: 80.7 + white: 71.6 + brightBlack: 22.7 + brightRed: 46.4 + brightGreen: 82.8 + brightYellow: 95 + brightBlue: 34.5 + brightMagenta: 57.3 + brightCyan: 94.4 + brightWhite: 106.7 diff --git a/themes/monokai-seti-light.yaml b/themes/monokai-seti-light.yaml new file mode 100644 index 00000000..7914e7e6 --- /dev/null +++ b/themes/monokai-seti-light.yaml @@ -0,0 +1,49 @@ +name: "monokai-seti-light" +source: + marketplace_id: "adityavm.vscode-monokai-seti" + version: "0.0.8" + installs: 19546 + author: "Aditya Mukherjee" + repo: "https://github.com/adityavm/vscode-monokai-seti" + url: "https://marketplace.visualstudio.com/items?itemName=adityavm.vscode-monokai-seti" +colors: + bg: "#FFFFFF" + fg: "#272727" + black: "#000000" + red: "#EA6C6D" + green: "#99BF4D" + yellow: "#ECA944" + blue: "#3199E1" + magenta: "#9E75C7" + cyan: "#46BA94" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#E6BB00" + brightBlue: "#399EE6" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 101.8 + black: 106 + red: 56.9 + green: 41.4 + yellow: 39.3 + blue: 57.6 + magenta: 63.5 + cyan: 47.2 + white: 30.1 + brightBlack: 77.9 + brightRed: 54.4 + brightGreen: 48.5 + brightYellow: 34 + brightBlue: 55.1 + brightMagenta: 61.1 + brightCyan: 44.6 + brightWhite: 24.5 diff --git a/themes/monokai-sharp.yaml b/themes/monokai-sharp.yaml new file mode 100644 index 00000000..4160e080 --- /dev/null +++ b/themes/monokai-sharp.yaml @@ -0,0 +1,49 @@ +name: "Monokai Sharp" +source: + marketplace_id: "0b5vr.theme-monokaisharp" + version: "1.1.2" + installs: 1757 + author: "0b5vr" + repo: "https://github.com/0b5vr/vscode-monokai-sharp" + url: "https://marketplace.visualstudio.com/items?itemName=0b5vr.theme-monokaisharp" +colors: + bg: "#191A1F" + fg: "#D0EDFF" + black: "#191A1F" + red: "#FF0066" + green: "#00FF91" + yellow: "#F7F025" + blue: "#00AAFF" + magenta: "#CA4FFF" + cyan: "#00C0B0" + white: "#ACC1CE" + brightBlack: "#3A3C47" + brightRed: "#EC5FA3" + brightGreen: "#53F8BD" + brightYellow: "#E7EF7C" + brightBlue: "#53C5FF" + brightMagenta: "#CC8EFF" + brightCyan: "#53D2D0" + brightWhite: "#D0EDFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 92 + black: 0 + red: 37.2 + green: 86.6 + yellow: 93 + blue: 51.2 + magenta: 39.2 + cyan: 56.3 + white: 66 + brightBlack: 0 + brightRed: 42.9 + brightGreen: 85.4 + brightYellow: 91.2 + brightBlue: 64.1 + brightMagenta: 54.3 + brightCyan: 67.4 + brightWhite: 92 diff --git a/themes/monokai-soda-darker.yaml b/themes/monokai-soda-darker.yaml new file mode 100644 index 00000000..0b8b4540 --- /dev/null +++ b/themes/monokai-soda-darker.yaml @@ -0,0 +1,49 @@ +name: "Monokai soda darker" +source: + marketplace_id: "carlossantos74.monokai-classic-darker" + version: "0.0.6" + installs: 6557 + author: "Carlos Santos" + repo: "https://github.com/carlossantos74/Monokai-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=carlossantos74.monokai-classic-darker" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#000000" + red: "#F4005F" + green: "#98E022" + yellow: "#FA8416" + blue: "#58D1EB" + magenta: "#9D65FF" + cyan: "#58D1EB" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F4005F" + brightGreen: "#98E022" + brightYellow: "#FA8416" + brightBlue: "#58D1EB" + brightMagenta: "#9D65FF" + brightCyan: "#58D1EB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 34.1 + green: 74.1 + yellow: 51.8 + blue: 68.3 + magenta: 36.4 + cyan: 68.3 + white: 89.4 + brightBlack: 21.5 + brightRed: 34.1 + brightGreen: 74.1 + brightYellow: 51.8 + brightBlue: 68.3 + brightMagenta: 36.4 + brightCyan: 68.3 + brightWhite: 89.4 diff --git a/themes/monokai-storm.yaml b/themes/monokai-storm.yaml new file mode 100644 index 00000000..000c9da2 --- /dev/null +++ b/themes/monokai-storm.yaml @@ -0,0 +1,49 @@ +name: "Monokai Storm" +source: + marketplace_id: "mimo.monokai-rain" + version: "0.4.0" + installs: 807 + author: "Michelle Mounde" + repo: "https://github.com/michellemounde/monokai-rainstorm" + url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" +colors: + bg: "#2A353F" + fg: "#FFFFFF" + black: "#3D4750" + red: "#FF002B" + green: "#C4FF02" + yellow: "#FFA200" + blue: "#245FCC" + magenta: "#CC00FF" + cyan: "#00D8C6" + white: "#C5C5C0" + brightBlack: "#777E84" + brightRed: "#FF5F38" + brightGreen: "#ABEAAC" + brightYellow: "#F9EC2A" + brightBlue: "#51B9FF" + brightMagenta: "#FF5BE6" + brightCyan: "#8AEAEA" + brightWhite: "#FFFFF7" +meta: + mode: "dark" + accent: "pink" + hue: 246 + contrast: + fg: 101.8 + black: 0 + red: 31.6 + green: 89.2 + yellow: 57.6 + blue: 17 + magenta: 29.4 + cyan: 63.8 + white: 65.3 + brightBlack: 27.3 + brightRed: 39.8 + brightGreen: 78.5 + brightYellow: 86.8 + brightBlue: 54.1 + brightMagenta: 45.1 + brightCyan: 78.3 + brightWhite: 101.4 diff --git a/themes/monokai-supersaturated.yaml b/themes/monokai-supersaturated.yaml new file mode 100644 index 00000000..04b466d8 --- /dev/null +++ b/themes/monokai-supersaturated.yaml @@ -0,0 +1,49 @@ +name: "Monokai supersaturated" +source: + marketplace_id: "Limespy.monokai-supersat" + version: "1.0.5" + installs: 669 + author: "Limespy" + repo: "https://github.com/Limespy/monokai-supersat" + url: "https://marketplace.visualstudio.com/items?itemName=Limespy.monokai-supersat" +colors: + bg: "#000000" + fg: "#CCCCCC" + black: "#555555" + red: "#CC0000" + green: "#00CC00" + yellow: "#CCCC00" + blue: "#0000CC" + magenta: "#CC00CC" + cyan: "#00CCCC" + white: "#CCCCCC" + brightBlack: "#000000" + brightRed: "#FF2222" + brightGreen: "#22FF22" + brightYellow: "#FFFF22" + brightBlue: "#2222FF" + brightMagenta: "#FF22FF" + brightCyan: "#22FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75.7 + black: 16.1 + red: 25.2 + green: 60.3 + yellow: 72 + blue: 9.9 + magenta: 31.4 + cyan: 64.4 + white: 75.7 + brightBlack: 0 + brightRed: 38.3 + brightGreen: 86.7 + brightYellow: 102.8 + brightBlue: 17.6 + brightMagenta: 46.9 + brightCyan: 92.3 + brightWhite: 107.9 diff --git a/themes/monokai-tornado.yaml b/themes/monokai-tornado.yaml new file mode 100644 index 00000000..f34fe54d --- /dev/null +++ b/themes/monokai-tornado.yaml @@ -0,0 +1,49 @@ +name: "Monokai Tornado" +source: + marketplace_id: "mimo.monokai-rain" + version: "0.4.0" + installs: 807 + author: "Michelle Mounde" + repo: "https://github.com/michellemounde/monokai-rainstorm" + url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" +colors: + bg: "#2E2E2E" + fg: "#FFFFFF" + black: "#3D4750" + red: "#FF002B" + green: "#C4FF02" + yellow: "#FFA200" + blue: "#245FCC" + magenta: "#CC00FF" + cyan: "#00D8C6" + white: "#C5C5C0" + brightBlack: "#777E84" + brightRed: "#FF5F38" + brightGreen: "#ABEAAC" + brightYellow: "#F9EC2A" + brightBlue: "#51B9FF" + brightMagenta: "#FF5BE6" + brightCyan: "#8AEAEA" + brightWhite: "#FFFFF7" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 103.2 + black: 0 + red: 33 + green: 90.6 + yellow: 59 + blue: 18.4 + magenta: 30.8 + cyan: 65.2 + white: 66.7 + brightBlack: 28.7 + brightRed: 41.2 + brightGreen: 79.9 + brightYellow: 88.2 + brightBlue: 55.5 + brightMagenta: 46.5 + brightCyan: 79.7 + brightWhite: 102.8 diff --git a/themes/monokai-underdark-mk.yaml b/themes/monokai-underdark-mk.yaml new file mode 100644 index 00000000..b8b9f9ee --- /dev/null +++ b/themes/monokai-underdark-mk.yaml @@ -0,0 +1,49 @@ +name: "Monokai Underdark MK" +source: + marketplace_id: "saadmk11.monokai-underdark-mk" + version: "0.0.2" + installs: 55 + author: "Maksudul Haque" + repo: "https://github.com/saadmk11/vsc-monokai-underdark-mk-theme" + url: "https://marketplace.visualstudio.com/items?itemName=saadmk11.monokai-underdark-mk" +colors: + bg: "#0A0A0A" + fg: "#F9F9F9" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 103.8 + black: 7.3 + red: 39.5 + green: 87 + yellow: 92.2 + blue: 38.3 + magenta: 46.1 + cyan: 77 + white: 52.3 + brightBlack: 22.9 + brightRed: 48 + brightGreen: 93.4 + brightYellow: 80.3 + brightBlue: 72.4 + brightMagenta: 67.7 + brightCyan: 90.5 + brightWhite: 73.7 diff --git a/themes/monokai-underdark.yaml b/themes/monokai-underdark.yaml new file mode 100644 index 00000000..afa2933d --- /dev/null +++ b/themes/monokai-underdark.yaml @@ -0,0 +1,49 @@ +name: "Monokai Underdark" +source: + marketplace_id: "zrthxn.monokai-underdark" + version: "0.0.5" + installs: 149 + author: "zrthxn" + repo: "https://github.com/zrthxn/monokai-underdark" + url: "https://marketplace.visualstudio.com/items?itemName=zrthxn.monokai-underdark" +colors: + bg: "#111111" + fg: "#FFFFFF" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E1C542" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#39CDE2" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFE05B" + brightBlue: "#74BCFF" + brightMagenta: "#D670D6" + brightCyan: "#74F2FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 27.2 + green: 53.5 + yellow: 71.7 + blue: 27.9 + magenta: 30.3 + cyan: 66 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 88.2 + brightBlue: 62.7 + brightMagenta: 45.9 + brightCyan: 87.6 + brightWhite: 90.5 diff --git a/themes/monokai-unified.yaml b/themes/monokai-unified.yaml new file mode 100644 index 00000000..9a2f3049 --- /dev/null +++ b/themes/monokai-unified.yaml @@ -0,0 +1,49 @@ +name: "Monokai++ Unified" +source: + marketplace_id: "dcasella.monokai-plusplus" + version: "2.0.4" + installs: 246540 + author: "Davide Casella" + repo: "https://github.com/dcasella/monokai-plusplus" + url: "https://marketplace.visualstudio.com/items?itemName=dcasella.monokai-plusplus" +colors: + bg: "#1C1C1C" + fg: "#CCCCCC" + black: "#1C1C1C" + red: "#E62A19" + green: "#2BE98A" + yellow: "#E6DB74" + blue: "#328EFF" + magenta: "#F92672" + cyan: "#49E0FD" + white: "#CCCCCC" + brightBlack: "#696D70" + brightRed: "#E62A19" + brightGreen: "#2BE98A" + brightYellow: "#E6DB74" + brightBlue: "#328EFF" + brightMagenta: "#F92672" + brightCyan: "#49E0FD" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 74.1 + black: 0 + red: 31.1 + green: 75 + yellow: 81.5 + blue: 40.8 + magenta: 36.7 + cyan: 75.8 + white: 74.1 + brightBlack: 24.2 + brightRed: 31.1 + brightGreen: 75 + brightYellow: 81.5 + brightBlue: 40.8 + brightMagenta: 36.7 + brightCyan: 75.8 + brightWhite: 97.1 diff --git a/themes/monokai.yaml b/themes/monokai.yaml new file mode 100644 index 00000000..1406ef85 --- /dev/null +++ b/themes/monokai.yaml @@ -0,0 +1,49 @@ +name: "Monokai--" +source: + marketplace_id: "Cydo.monokai-minus-minus" + version: "0.1.0" + installs: 187 + author: "Cydo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Cydo.monokai-minus-minus" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#1C1C1C" + red: "#E62A19" + green: "#2BE98A" + yellow: "#E6DB74" + blue: "#328EFF" + magenta: "#F92672" + cyan: "#49E0FD" + white: "#CCCCCC" + brightBlack: "#696D70" + brightRed: "#E62A19" + brightGreen: "#2BE98A" + brightYellow: "#E6DB74" + brightBlue: "#328EFF" + brightMagenta: "#F92672" + brightCyan: "#49E0FD" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 103.3 + black: 0 + red: 30.4 + green: 74.3 + yellow: 80.8 + blue: 40.1 + magenta: 36 + cyan: 75.1 + white: 73.4 + brightBlack: 23.5 + brightRed: 30.4 + brightGreen: 74.3 + brightYellow: 80.8 + brightBlue: 40.1 + brightMagenta: 36 + brightCyan: 75.1 + brightWhite: 96.4 diff --git a/themes/monokai22.yaml b/themes/monokai22.yaml new file mode 100644 index 00000000..61ae4e8c --- /dev/null +++ b/themes/monokai22.yaml @@ -0,0 +1,49 @@ +name: "Monokai22" +source: + marketplace_id: "henderjon.monokai22" + version: "1.0.7" + installs: 150 + author: "henderjon" + repo: "https://github.com/henderjon/monokai22" + url: "https://marketplace.visualstudio.com/items?itemName=henderjon.monokai22" +colors: + bg: "#1E1E1E" + fg: "#F8F8F2" + black: "#000000" + red: "#F92672" + green: "#A6E22E" + yellow: "#FFE792" + blue: "#FD971F" + magenta: "#AE81FF" + cyan: "#66D9EF" + white: "#F8F8F2" + brightBlack: "#75715E" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#FFE792" + brightBlue: "#FD971F" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.1 + black: 0 + red: 36.5 + green: 76.2 + yellow: 91 + blue: 57.9 + magenta: 45.7 + cyan: 72.6 + white: 101.1 + brightBlack: 25.8 + brightRed: 36.5 + brightGreen: 76.2 + brightYellow: 91 + brightBlue: 57.9 + brightMagenta: 45.7 + brightCyan: 72.6 + brightWhite: 101.1 diff --git a/themes/monokaiju.yaml b/themes/monokaiju.yaml new file mode 100644 index 00000000..4e81f705 --- /dev/null +++ b/themes/monokaiju.yaml @@ -0,0 +1,49 @@ +name: "monokaiju" +source: + marketplace_id: "konapun.monokaiju" + version: "0.3.2" + installs: 1215 + author: "konapun" + repo: "https://github.com/konapun/monokaiju" + url: "https://marketplace.visualstudio.com/items?itemName=konapun.monokaiju" +colors: + bg: "#1A1D1E" + fg: "#F8F8F2" + black: "#272922" + red: "#F92672" + green: "#A6E22E" + yellow: "#FD971F" + blue: "#66D9EF" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.3 + black: 0 + red: 36.7 + green: 76.4 + yellow: 58.1 + blue: 72.8 + magenta: 31.6 + cyan: 49.8 + white: 87.9 + brightBlack: 21.4 + brightRed: 36.7 + brightGreen: 76.4 + brightYellow: 83.3 + brightBlue: 49.2 + brightMagenta: 45.9 + brightCyan: 72.8 + brightWhite: 101.3 diff --git a/themes/monokaisgq.yaml b/themes/monokaisgq.yaml new file mode 100644 index 00000000..8855435c --- /dev/null +++ b/themes/monokaisgq.yaml @@ -0,0 +1,49 @@ +name: "MonokaiSGQ" +source: + marketplace_id: "marketideas.monokaisgq" + version: "0.0.1" + installs: 96 + author: "marketideas" + repo: "https://github.com/marketideas/MonokaiSGQ" + url: "https://marketplace.visualstudio.com/items?itemName=marketideas.monokaisgq" +colors: + bg: "#000000" + fg: "#00FFFF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 92.2 + black: 0 + red: 44.4 + green: 85.9 + yellow: 99.6 + blue: 54.6 + magenta: 55.6 + cyan: 85 + white: 103 + brightBlack: 29.1 + brightRed: 49.8 + brightGreen: 90 + brightYellow: 104.5 + brightBlue: 67.1 + brightMagenta: 63.6 + brightCyan: 97.8 + brightWhite: 107.9 diff --git a/themes/monokaizen.yaml b/themes/monokaizen.yaml new file mode 100644 index 00000000..df5e2652 --- /dev/null +++ b/themes/monokaizen.yaml @@ -0,0 +1,49 @@ +name: "Monokaizen" +source: + marketplace_id: "AlexanderSanchez.monokaizen" + version: "0.2.4" + installs: 5 + author: "Alexander Sanchez" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AlexanderSanchez.monokaizen" +colors: + bg: "#272822" + fg: "#F8F8F1" + black: "#272822" + red: "#FF0071" + green: "#94E400" + yellow: "#EADA61" + blue: "#B47EFF" + magenta: "#F8F8F1" + cyan: "#B47EFF" + white: "#F8F8F1" + brightBlack: "#75705B" + brightRed: "#FF0071" + brightGreen: "#94E400" + brightYellow: "#EADA61" + brightBlue: "#B47EFF" + brightMagenta: "#F8F8F1" + brightCyan: "#B47EFF" + brightWhite: "#F8F8F1" +meta: + mode: "dark" + accent: "red" + hue: 115 + contrast: + fg: 99.6 + black: 0 + red: 35.5 + green: 74 + yellow: 79.6 + blue: 44.1 + magenta: 99.6 + cyan: 44.1 + white: 99.6 + brightBlack: 24 + brightRed: 35.5 + brightGreen: 74 + brightYellow: 79.6 + brightBlue: 44.1 + brightMagenta: 99.6 + brightCyan: 44.1 + brightWhite: 99.6 diff --git a/themes/monokard.yaml b/themes/monokard.yaml new file mode 100644 index 00000000..15673b6a --- /dev/null +++ b/themes/monokard.yaml @@ -0,0 +1,49 @@ +name: "Monokard" +source: + marketplace_id: "gfrcsd.monokard" + version: "2.0.0" + installs: 945 + author: "gfrcsd" + repo: "https://github.com/gfrcsd/vscode-monokard" + url: "https://marketplace.visualstudio.com/items?itemName=gfrcsd.monokard" +colors: + bg: "#1F1F1F" + fg: "#DDDDDD" + black: "#333333" + red: "#F92672" + green: "#0FD589" + yellow: "#FFEE99" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#66D8EE" + white: "#E3E3DD" + brightBlack: "#8C8C8C" + brightRed: "#D3201F" + brightGreen: "#A6E22E" + brightYellow: "#FD971E" + brightBlue: "#3BC0F0" + brightMagenta: "#6C71C4" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 84 + black: 0 + red: 36.3 + green: 64.3 + yellow: 94.2 + blue: 33.7 + magenta: 31.2 + cyan: 71.9 + white: 87.5 + brightBlack: 38.6 + brightRed: 25.6 + brightGreen: 76 + brightYellow: 57.7 + brightBlue: 59.5 + brightMagenta: 29.5 + brightCyan: 72.4 + brightWhite: 101 diff --git a/themes/monokong.yaml b/themes/monokong.yaml new file mode 100644 index 00000000..09204610 --- /dev/null +++ b/themes/monokong.yaml @@ -0,0 +1,49 @@ +name: "Monokong" +source: + marketplace_id: "iosuck.monokong" + version: "0.0.1" + installs: 837 + author: "iosuck" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=iosuck.monokong" +colors: + bg: "#1E1E1E" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.1 + black: 0 + red: 23.8 + green: 52.2 + yellow: 56.8 + blue: 33.8 + magenta: 31.4 + cyan: 49.6 + white: 87.7 + brightBlack: 21.2 + brightRed: 36.5 + brightGreen: 76.2 + brightYellow: 83.1 + brightBlue: 49 + brightMagenta: 45.7 + brightCyan: 72.6 + brightWhite: 101.1 diff --git a/themes/monokuro-amber.yaml b/themes/monokuro-amber.yaml new file mode 100644 index 00000000..eb81c7f2 --- /dev/null +++ b/themes/monokuro-amber.yaml @@ -0,0 +1,49 @@ +name: "monokuro-amber" +source: + marketplace_id: "hjqInAmood-fiber.hjqTheme" + version: "0.1.5" + installs: 118 + author: "hjqInAmood" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=hjqInAmood-fiber.hjqTheme" +colors: + bg: "#282828" + fg: "#FFCC44" + black: "#333333" + red: "#C4265E" + green: "#FAA70C" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#F0B940" + brightBlack: "#666666" + brightRed: "#00CC99" + brightGreen: "#EE629F" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#F0B940" + brightWhite: "#F0B940" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 76.4 + black: 0 + red: 22.2 + green: 61 + yellow: 55.2 + blue: 32.2 + magenta: 29.8 + cyan: 48 + white: 66.2 + brightBlack: 19.6 + brightRed: 58.9 + brightGreen: 41.7 + brightYellow: 81.5 + brightBlue: 47.4 + brightMagenta: 44.1 + brightCyan: 66.2 + brightWhite: 66.2 diff --git a/themes/monolite.yaml b/themes/monolite.yaml new file mode 100644 index 00000000..8284600c --- /dev/null +++ b/themes/monolite.yaml @@ -0,0 +1,49 @@ +name: "Monolite" +source: + marketplace_id: "baukeposthuma.monolite" + version: "1.1.0" + installs: 4415 + author: "Bauke Posthuma" + repo: "https://github.com/baukeposthuma/monolite" + url: "https://marketplace.visualstudio.com/items?itemName=baukeposthuma.monolite" +colors: + bg: "#191C28" + fg: "#FFFFFF" + black: "#000000" + red: "#D95468" + green: "#8BD49C" + yellow: "#EBBF83" + blue: "#539AFC" + magenta: "#B62D65" + cyan: "#70E1E8" + white: "#FFFFFF" + brightBlack: "#41505E" + brightRed: "#D95468" + brightGreen: "#8BD49C" + brightYellow: "#EBBF83" + brightBlue: "#539AFC" + brightMagenta: "#B62D65" + brightCyan: "#70E1E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 106.2 + black: 0 + red: 34.6 + green: 69.2 + yellow: 70.6 + blue: 46 + magenta: 21.8 + cyan: 76.7 + white: 106.2 + brightBlack: 11.9 + brightRed: 34.6 + brightGreen: 69.2 + brightYellow: 70.6 + brightBlue: 46 + brightMagenta: 21.8 + brightCyan: 76.7 + brightWhite: 106.2 diff --git a/themes/monos-blac.yaml b/themes/monos-blac.yaml new file mode 100644 index 00000000..a1db1d13 --- /dev/null +++ b/themes/monos-blac.yaml @@ -0,0 +1,49 @@ +name: "Monos - Blac" +source: + marketplace_id: "0xdhrv.blac" + version: "0.0.1" + installs: 2175 + author: "Dhruv Suthar" + repo: "https://github.com/0xdhrv/monos" + url: "https://marketplace.visualstudio.com/items?itemName=0xdhrv.blac" +colors: + bg: "#161616" + fg: "#A0A0A0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 49.9 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/monospace-dark.yaml b/themes/monospace-dark.yaml new file mode 100644 index 00000000..f7b9a128 --- /dev/null +++ b/themes/monospace-dark.yaml @@ -0,0 +1,49 @@ +name: "Monospace Dark" +source: + marketplace_id: "keksiqc.idx-monospace-theme" + version: "1.5.0" + installs: 31573 + author: "Keksi" + repo: "https://github.com/keksiqc/monospace-theme" + url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" +colors: + bg: "#171F2B" + fg: "#D9DFE7" + black: "#738295" + red: "#F76769" + green: "#17B877" + yellow: "#FFA23E" + blue: "#708FFF" + magenta: "#A87FFB" + cyan: "#25A6E9" + white: "#A4AFBD" + brightBlack: "#8B98A9" + brightRed: "#FC8F8E" + brightGreen: "#66CE98" + brightYellow: "#FFC26E" + brightBlue: "#A2B6FF" + brightMagenta: "#C8AAFF" + brightCyan: "#71C2EE" + brightWhite: "#FAFBFE" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + contrast: + fg: 84.9 + black: 33.1 + red: 44.5 + green: 50.2 + yellow: 62 + blue: 43.7 + magenta: 43.9 + cyan: 47.7 + white: 56.4 + brightBlack: 44.1 + brightRed: 56.8 + brightGreen: 63.6 + brightYellow: 74.4 + brightBlue: 62.6 + brightMagenta: 62.5 + brightCyan: 62.6 + brightWhite: 103.3 diff --git a/themes/monospace-light.yaml b/themes/monospace-light.yaml new file mode 100644 index 00000000..0f1f277b --- /dev/null +++ b/themes/monospace-light.yaml @@ -0,0 +1,49 @@ +name: "Monospace Light" +source: + marketplace_id: "keksiqc.idx-monospace-theme" + version: "1.5.0" + installs: 31573 + author: "Keksi" + repo: "https://github.com/keksiqc/monospace-theme" + url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" +colors: + bg: "#FFFFFF" + fg: "#1F2939" + black: "#333E4F" + red: "#D03941" + green: "#007B49" + yellow: "#A65921" + blue: "#3C60DD" + magenta: "#6F4CDE" + cyan: "#0075A2" + white: "#5D6A7D" + brightBlack: "#000000" + brightRed: "#A52430" + brightGreen: "#00522F" + brightYellow: "#904B1A" + brightBlue: "#002487" + brightMagenta: "#4D21BB" + brightCyan: "#00607E" + brightWhite: "#475365" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.4 + black: 95 + red: 72.2 + green: 76 + yellow: 75.1 + blue: 76.2 + magenta: 77.3 + cyan: 75 + white: 77.4 + brightBlack: 106 + brightRed: 83.8 + brightGreen: 91.1 + brightYellow: 82 + brightBlue: 98.3 + brightMagenta: 90.3 + brightCyan: 83.9 + brightWhite: 87.1 diff --git a/themes/monotone.yaml b/themes/monotone.yaml new file mode 100644 index 00000000..cb60e04b --- /dev/null +++ b/themes/monotone.yaml @@ -0,0 +1,49 @@ +name: "monotone" +source: + marketplace_id: "0x706b-extensions.monotone-vscode-theme" + version: "0.0.3" + installs: 1725 + author: "0x706b" + repo: "https://github.com/0x706b/monotone-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=0x706b-extensions.monotone-vscode-theme" +colors: + bg: "#121111" + fg: "#BEBABA" + black: "#222020" + red: "#A54434" + green: "#7FAC71" + yellow: "#D3CFCF" + blue: "#9D9695" + magenta: "#9D9695" + cyan: "#9D9695" + white: "#9D9695" + brightBlack: "#5F5959" + brightRed: "#FF2D3C" + brightGreen: "#D3CFCF" + brightYellow: "#FFAA23" + brightBlue: "#7488AD" + brightMagenta: "#D3CFCF" + brightCyan: "#D3CFCF" + brightWhite: "#D3CFCF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65.1 + black: 0 + red: 21.8 + green: 50.5 + yellow: 77.5 + blue: 45.9 + magenta: 45.9 + cyan: 45.9 + white: 45.9 + brightBlack: 17.7 + brightRed: 38.7 + brightGreen: 77.5 + brightYellow: 66 + brightBlue: 37.8 + brightMagenta: 77.5 + brightCyan: 77.5 + brightWhite: 77.5 diff --git a/themes/monrch-darc.yaml b/themes/monrch-darc.yaml new file mode 100644 index 00000000..abf391dc --- /dev/null +++ b/themes/monrch-darc.yaml @@ -0,0 +1,49 @@ +name: "MonRch-Darc" +source: + marketplace_id: "MonRch.monrch-darc" + version: "0.0.16" + installs: 78 + author: "MonRch" + repo: "https://github.com/Rahul-Encoded/MonRchDarc" + url: "https://marketplace.visualstudio.com/items?itemName=MonRch.monrch-darc" +colors: + bg: "#1E1B29" + fg: "#ADEBB3" + black: "#000000" + red: "#FF1744" + green: "#C3E88D" + yellow: "#FFD180" + blue: "#80DEEA" + magenta: "#B388FF" + cyan: "#E040FB" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF1744" + brightGreen: "#C3E88D" + brightYellow: "#FFD180" + brightBlue: "#80DEEA" + brightMagenta: "#B388FF" + brightCyan: "#E040FB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 294 + contrast: + fg: 83.8 + black: 0 + red: 36.5 + green: 83.5 + yellow: 81.1 + blue: 76.3 + magenta: 48.6 + cyan: 40.6 + white: 106.2 + brightBlack: 0 + brightRed: 36.5 + brightGreen: 83.5 + brightYellow: 81.1 + brightBlue: 76.3 + brightMagenta: 48.6 + brightCyan: 40.6 + brightWhite: 106.2 diff --git a/themes/montana.yaml b/themes/montana.yaml new file mode 100644 index 00000000..6027d91e --- /dev/null +++ b/themes/montana.yaml @@ -0,0 +1,49 @@ +name: "Montana" +source: + marketplace_id: "NicotsouThemes.montana" + version: "0.3.3" + installs: 56 + author: "Nicos Tsourektsidis" + repo: "https://github.com/nicotsou/montana-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NicotsouThemes.montana" +colors: + bg: "#0C0340" + fg: "#EDEDED" + black: "#868686" + red: "#A1381E" + green: "#B0C0AA" + yellow: "#EEE1C8" + blue: "#58729D" + magenta: "#FF1A6B" + cyan: "#11A8CD" + white: "#A0A2B0" + brightBlack: "#ABABAB" + brightRed: "#DD4D4D" + brightGreen: "#B0C0AA" + brightYellow: "#EFDFC6" + brightBlue: "#4B7FD1" + brightMagenta: "#C7255E" + brightCyan: "#29B8DB" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "red" + hue: 276 + contrast: + fg: 95.2 + black: 36.7 + red: 18.6 + green: 65 + yellow: 88.4 + blue: 27.1 + magenta: 38.1 + cyan: 47.7 + white: 51.4 + brightBlack: 55.9 + brightRed: 34.4 + brightGreen: 65 + brightYellow: 87.5 + brightBlue: 33.7 + brightMagenta: 25.3 + brightCyan: 55.5 + brightWhite: 95.2 diff --git a/themes/monza-dark.yaml b/themes/monza-dark.yaml new file mode 100644 index 00000000..dbe5de5c --- /dev/null +++ b/themes/monza-dark.yaml @@ -0,0 +1,49 @@ +name: "Monza Dark" +source: + marketplace_id: "JamesGulland.monza-dark-theme" + version: "0.0.1" + installs: 50 + author: "James Gulland" + repo: "https://github.com/james-gulland/monza-dark-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.monza-dark-theme" +colors: + bg: "#1B1C22" + fg: "#88DBFD" + black: "#1B1C22" + red: "#F07178" + green: "#FFCC99" + yellow: "#FFCC99" + blue: "#9FB2E5" + magenta: "#9FB2E5" + cyan: "#FFCC99" + white: "#E4F4F4" + brightBlack: "#88DBFD" + brightRed: "#F07178" + brightGreen: "#FFCC99" + brightYellow: "#FFCC99" + brightBlue: "#9FB2E5" + brightMagenta: "#9FB2E5" + brightCyan: "#FFCC99" + brightWhite: "#E4F4F4" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 76.5 + black: 0 + red: 46 + green: 79.8 + yellow: 79.8 + blue: 59.4 + magenta: 59.4 + cyan: 79.8 + white: 96.9 + brightBlack: 76.5 + brightRed: 46 + brightGreen: 79.8 + brightYellow: 79.8 + brightBlue: 59.4 + brightMagenta: 59.4 + brightCyan: 79.8 + brightWhite: 96.9 diff --git a/themes/monzo-contrast.yaml b/themes/monzo-contrast.yaml new file mode 100644 index 00000000..45359ffd --- /dev/null +++ b/themes/monzo-contrast.yaml @@ -0,0 +1,49 @@ +name: "monzo-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0B1421" + fg: "#B0CBF4" + black: "#112034" + red: "#BA0E2E" + green: "#98BAA6" + yellow: "#247888" + blue: "#E6CE9F" + magenta: "#E14D61" + cyan: "#247888" + white: "#C6DAF7" + brightBlack: "#24426D" + brightRed: "#F03E5F" + brightGreen: "#D5E3DB" + brightYellow: "#44B8CE" + brightBlue: "#FBF7F0" + brightMagenta: "#F0A4AE" + brightCyan: "#44B8CE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 258 + contrast: + fg: 73.2 + black: 0 + red: 20.8 + green: 60 + yellow: 26.1 + blue: 77.7 + magenta: 35.8 + cyan: 26.1 + white: 82.4 + brightBlack: 8.5 + brightRed: 37.1 + brightGreen: 86.9 + brightYellow: 55.6 + brightBlue: 102.1 + brightMagenta: 63.6 + brightCyan: 55.6 + brightWhite: 107.1 diff --git a/themes/monzo-light.yaml b/themes/monzo-light.yaml new file mode 100644 index 00000000..a7076801 --- /dev/null +++ b/themes/monzo-light.yaml @@ -0,0 +1,49 @@ +name: "monzo-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#5A79A8" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#98BAA6" + yellow: "#247888" + blue: "#BA9B5E" + magenta: "#E14D61" + cyan: "#247888" + white: "#6B87B1" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#D5E3DB" + brightYellow: "#44B8CE" + brightBlue: "#D9C7A5" + brightMagenta: "#F0A4AE" + brightCyan: "#44B8CE" + brightWhite: "#9DAFCB" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 70.7 + black: 0 + red: 80.3 + green: 41.5 + yellow: 74.9 + blue: 51.5 + magenta: 65.1 + cyan: 74.9 + white: 64.2 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 16.1 + brightYellow: 45.7 + brightBlue: 29 + brightMagenta: 38 + brightCyan: 45.7 + brightWhite: 43.9 diff --git a/themes/monzo.yaml b/themes/monzo.yaml new file mode 100644 index 00000000..b878b24e --- /dev/null +++ b/themes/monzo.yaml @@ -0,0 +1,49 @@ +name: "monzo" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#15243B" + fg: "#B0CBF4" + black: "#1C2F4E" + red: "#BA0E2E" + green: "#98BAA6" + yellow: "#247888" + blue: "#E6CE9F" + magenta: "#E14D61" + cyan: "#247888" + white: "#C6DAF7" + brightBlack: "#305286" + brightRed: "#F03E5F" + brightGreen: "#D5E3DB" + brightYellow: "#44B8CE" + brightBlue: "#FBF7F0" + brightMagenta: "#F0A4AE" + brightCyan: "#44B8CE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 259 + contrast: + fg: 71.2 + black: 0 + red: 18.7 + green: 57.9 + yellow: 24.1 + blue: 75.7 + magenta: 33.8 + cyan: 24.1 + white: 80.3 + brightBlack: 12.3 + brightRed: 35 + brightGreen: 84.8 + brightYellow: 53.6 + brightBlue: 100.1 + brightMagenta: 61.6 + brightCyan: 53.6 + brightWhite: 105.1 diff --git a/themes/moon-light-theme.yaml b/themes/moon-light-theme.yaml new file mode 100644 index 00000000..750ca355 --- /dev/null +++ b/themes/moon-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Moon Light Theme" +source: + marketplace_id: "mukunthan.moon-light-theme" + version: "0.0.1" + installs: 3495 + author: "mukunthan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mukunthan.moon-light-theme" +colors: + bg: "#001130" + fg: "#8659FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 258 + contrast: + fg: 31.8 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 30 + cyan: 47.8 + white: 90.2 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/moon-night.yaml b/themes/moon-night.yaml new file mode 100644 index 00000000..8a4c6337 --- /dev/null +++ b/themes/moon-night.yaml @@ -0,0 +1,49 @@ +name: "Moon Night" +source: + marketplace_id: "rahulmhto.rahulmhto" + version: "0.0.8" + installs: 94 + author: "rahulmhto" + repo: "https://github.com/rahullm9/rahulmhto-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rahulmhto.rahulmhto" +colors: + bg: "#020317" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 272 + contrast: + fg: 107.8 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/moon-phases.yaml b/themes/moon-phases.yaml new file mode 100644 index 00000000..6982ae56 --- /dev/null +++ b/themes/moon-phases.yaml @@ -0,0 +1,49 @@ +name: "Moon Phases" +source: + marketplace_id: "AgraeonLabs.dev-themes" + version: "0.1.0" + installs: 283 + author: "Agraeon Labs" + repo: "https://github.com/adiagcodelance/VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" +colors: + bg: "#212A31" + fg: "#D3D9D4" + black: "#212A31" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#124E66" + magenta: "#748D92" + cyan: "#56B6C2" + white: "#D3D9D4" + brightBlack: "#212A31" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#124E66" + brightMagenta: "#748D92" + brightCyan: "#56B6C2" + brightWhite: "#D3D9D4" +meta: + mode: "dark" + accent: "orange" + hue: 242 + contrast: + fg: 78.9 + black: 0 + red: 39.5 + green: 59.7 + yellow: 68 + blue: 8.1 + magenta: 35.3 + cyan: 52 + white: 78.9 + brightBlack: 0 + brightRed: 39.5 + brightGreen: 59.7 + brightYellow: 68 + brightBlue: 8.1 + brightMagenta: 35.3 + brightCyan: 52 + brightWhite: 78.9 diff --git a/themes/moon-purple.yaml b/themes/moon-purple.yaml new file mode 100644 index 00000000..3a38a530 --- /dev/null +++ b/themes/moon-purple.yaml @@ -0,0 +1,49 @@ +name: "Moon Purple" +source: + marketplace_id: "Imagineee.moon-purple" + version: "1.0.3" + installs: 12906 + author: "Imagineee" + repo: "https://github.com/imagineeeinc/Moon-Purple" + url: "https://marketplace.visualstudio.com/items?itemName=Imagineee.moon-purple" +colors: + bg: "#0C0015" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F0F0F0" + brightBlack: "#343434" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 312 + contrast: + fg: 107.8 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 97.9 + brightBlack: 0 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 107.8 diff --git a/themes/moon-violet-dark-plus.yaml b/themes/moon-violet-dark-plus.yaml new file mode 100644 index 00000000..d7db7927 --- /dev/null +++ b/themes/moon-violet-dark-plus.yaml @@ -0,0 +1,49 @@ +name: "Moon Violet Dark Plus" +source: + marketplace_id: "moondevaa.moon-violet-dark-plus" + version: "0.1.9" + installs: 8121 + author: "moondevaa" + repo: "https://github.com/AaBbdev29/moon-violet-dark-plus" + url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.moon-violet-dark-plus" +colors: + bg: "#1F1F1F" + fg: "#FFE79B" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91.1 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/moonbloom-theme-official.yaml b/themes/moonbloom-theme-official.yaml new file mode 100644 index 00000000..0e8c7181 --- /dev/null +++ b/themes/moonbloom-theme-official.yaml @@ -0,0 +1,49 @@ +name: "Moonbloom Theme Official" +source: + marketplace_id: "Moonbloom.moonbloom-theme" + version: "1.1.2" + installs: 837 + author: "Moonbloom" + repo: "https://github.com/moonbloom-theme/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=Moonbloom.moonbloom-theme" +colors: + bg: "#1D1E27" + fg: "#D1D2E8" + black: "#191A21" + red: "#E66D75" + green: "#93C591" + yellow: "#D9B469" + blue: "#5A9BCF" + magenta: "#BB83D8" + cyan: "#4FA8B8" + white: "#9B9BBA" + brightBlack: "#8282A9" + brightRed: "#F17C88" + brightGreen: "#A1D79F" + brightYellow: "#E8C87E" + brightBlue: "#6EB4E0" + brightMagenta: "#C993E9" + brightCyan: "#68C7D6" + brightWhite: "#E1E2ED" +meta: + mode: "dark" + accent: "orange" + hue: 280 + contrast: + fg: 78.3 + black: 0 + red: 42.6 + green: 62.4 + yellow: 62.7 + blue: 43.5 + magenta: 45.3 + cyan: 46.9 + white: 47.6 + brightBlack: 35.4 + brightRed: 49.1 + brightGreen: 72.3 + brightYellow: 73.5 + brightBlue: 55.7 + brightMagenta: 53.4 + brightCyan: 63 + brightWhite: 87.6 diff --git a/themes/moonerized-dark.yaml b/themes/moonerized-dark.yaml new file mode 100644 index 00000000..f1a08fc1 --- /dev/null +++ b/themes/moonerized-dark.yaml @@ -0,0 +1,49 @@ +name: "Moonerized Dark" +source: + marketplace_id: "brodyreid.moonerized-theme" + version: "0.1.6" + installs: 102 + author: "Brody Reid" + repo: "https://worktree.ca/bb/moonerized" + url: "https://marketplace.visualstudio.com/items?itemName=brodyreid.moonerized-theme" +colors: + bg: "#192330" + fg: "#DBDBDD" + black: "#131A24" + red: "#C3656F" + green: "#9FB993" + yellow: "#CFC084" + blue: "#89B0DE" + magenta: "#C99975" + cyan: "#3E546F" + white: "#C5C6C7" + brightBlack: "#71839B" + brightRed: "#C3656F" + brightGreen: "#9FB993" + brightYellow: "#CFC084" + brightBlue: "#89B0DE" + brightMagenta: "#A492D6" + brightCyan: "#3E546F" + brightWhite: "#B8B9BA" +meta: + mode: "dark" + accent: "red" + hue: 255 + contrast: + fg: 82.4 + black: 0 + red: 33.3 + green: 57.8 + yellow: 66.1 + blue: 55.3 + magenta: 49.9 + cyan: 12.7 + white: 69.5 + brightBlack: 33 + brightRed: 33.3 + brightGreen: 57.8 + brightYellow: 66.1 + brightBlue: 55.3 + brightMagenta: 46.4 + brightCyan: 12.7 + brightWhite: 62 diff --git a/themes/moonerized-light.yaml b/themes/moonerized-light.yaml new file mode 100644 index 00000000..043a006e --- /dev/null +++ b/themes/moonerized-light.yaml @@ -0,0 +1,49 @@ +name: "Moonerized Light" +source: + marketplace_id: "brodyreid.moonerized-theme" + version: "0.1.6" + installs: 102 + author: "Brody Reid" + repo: "https://worktree.ca/bb/moonerized" + url: "https://marketplace.visualstudio.com/items?itemName=brodyreid.moonerized-theme" +colors: + bg: "#FAF9FA" + fg: "#64646E" + black: "#131316" + red: "#8E629D" + green: "#617434" + yellow: "#6A588C" + blue: "#537397" + magenta: "#B66D3A" + cyan: "#5F83A7" + white: "#FAF9FA" + brightBlack: "#64646E" + brightRed: "#8E629D" + brightGreen: "#617434" + brightYellow: "#6A588C" + brightBlue: "#537397" + brightMagenta: "#B66D3A" + brightCyan: "#5F83A7" + brightWhite: "#FAF9FA" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 75.9 + black: 101.7 + red: 69.7 + green: 72.2 + yellow: 77.4 + blue: 70.6 + magenta: 63.7 + cyan: 63.6 + white: 0 + brightBlack: 75.9 + brightRed: 69.7 + brightGreen: 72.2 + brightYellow: 77.4 + brightBlue: 70.6 + brightMagenta: 63.7 + brightCyan: 63.6 + brightWhite: 0 diff --git a/themes/moonfly.yaml b/themes/moonfly.yaml new file mode 100644 index 00000000..c2f254a7 --- /dev/null +++ b/themes/moonfly.yaml @@ -0,0 +1,49 @@ +name: "Moonfly" +source: + marketplace_id: "jgenc.moonfly-vscode-theme" + version: "0.1.1" + installs: 433 + author: "jgenc" + repo: "https://github.com/jgenc/moonfly-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jgenc.moonfly-vscode-theme" +colors: + bg: "#080808" + fg: "#D3D3D3" + black: "#323437" + red: "#FF5D5D" + green: "#8CC85F" + yellow: "#E3C78A" + blue: "#80A0FF" + magenta: "#CF87E8" + cyan: "#79DAC8" + white: "#C6C6C6" + brightBlack: "#949494" + brightRed: "#FF5189" + brightGreen: "#36C692" + brightYellow: "#C6C684" + brightBlue: "#74B2FF" + brightMagenta: "#AE81FF" + brightCyan: "#85DC85" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 79.8 + black: 0 + red: 45.9 + green: 63.9 + yellow: 74.4 + blue: 52.9 + magenta: 52.4 + cyan: 74 + white: 72 + brightBlack: 44.5 + brightRed: 44.9 + brightGreen: 59.8 + brightYellow: 69.8 + brightBlue: 59 + brightMagenta: 47.4 + brightCyan: 73.5 + brightWhite: 90.3 diff --git a/themes/moongate-theme-dark.yaml b/themes/moongate-theme-dark.yaml new file mode 100644 index 00000000..7f299563 --- /dev/null +++ b/themes/moongate-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Moongate Theme Dark" +source: + marketplace_id: "yuelinghuashu.moongate-theme" + version: "2.1.0" + installs: 11 + author: "yuelinghuashu" + repo: "https://github.com/yuelinghuashu/moongate-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yuelinghuashu.moongate-theme" +colors: + bg: "#0F172A" + fg: "#E2E8F0" + black: "#1E293B" + red: "#F87171" + green: "#34D399" + yellow: "#FBBF24" + blue: "#3B82F6" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#E2E8F0" + brightBlack: "#2D3748" + brightRed: "#F87171" + brightGreen: "#34D399" + brightYellow: "#FBBF24" + brightBlue: "#3B82F6" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 266 + contrast: + fg: 91.4 + black: 0 + red: 48 + green: 65.1 + yellow: 72.6 + blue: 36.7 + magenta: 49.6 + cyan: 68.5 + white: 91.4 + brightBlack: 0 + brightRed: 48 + brightGreen: 65.1 + brightYellow: 72.6 + brightBlue: 36.7 + brightMagenta: 49.6 + brightCyan: 68.5 + brightWhite: 106.8 diff --git a/themes/moongate-theme-light.yaml b/themes/moongate-theme-light.yaml new file mode 100644 index 00000000..fc15ba09 --- /dev/null +++ b/themes/moongate-theme-light.yaml @@ -0,0 +1,49 @@ +name: "Moongate Theme Light" +source: + marketplace_id: "yuelinghuashu.moongate-theme" + version: "2.1.0" + installs: 11 + author: "yuelinghuashu" + repo: "https://github.com/yuelinghuashu/moongate-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yuelinghuashu.moongate-theme" +colors: + bg: "#F9FAFB" + fg: "#1E293B" + black: "#1E293B" + red: "#B91C1C" + green: "#059669" + yellow: "#B45309" + blue: "#0284C7" + magenta: "#7E22CE" + cyan: "#0E7490" + white: "#F9FAFB" + brightBlack: "#64748B" + brightRed: "#DC2626" + brightGreen: "#10B981" + brightYellow: "#D97706" + brightBlue: "#2563EB" + brightMagenta: "#9333EA" + brightCyan: "#0891B2" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 98.3 + black: 98.3 + red: 77.1 + green: 61.5 + yellow: 71 + blue: 64.4 + magenta: 79.7 + cyan: 73.1 + white: 0 + brightBlack: 70 + brightRed: 68.5 + brightGreen: 46 + brightYellow: 55.4 + brightBlue: 71.8 + brightMagenta: 72.5 + brightCyan: 60.8 + brightWhite: 0 diff --git a/themes/moonkai.yaml b/themes/moonkai.yaml new file mode 100644 index 00000000..8f662760 --- /dev/null +++ b/themes/moonkai.yaml @@ -0,0 +1,49 @@ +name: "MoonKai" +source: + marketplace_id: "halcolo.moonkai" + version: "1.1.0" + installs: 1669 + author: "Halcolo" + repo: "https://github.com/halcolo/MoonKai" + url: "https://marketplace.visualstudio.com/items?itemName=halcolo.moonkai" +colors: + bg: "#212634" + fg: "#E4F0FF" + black: "#2C2423" + red: "#F557A0" + green: "#A9EE55" + yellow: "#F5A255" + blue: "#5EA2EC" + magenta: "#A957EC" + cyan: "#5EEEA0" + white: "#918988" + brightBlack: "#918988" + brightRed: "#F579B2" + brightGreen: "#BBEE78" + brightYellow: "#F5B378" + brightBlue: "#81B3EC" + brightMagenta: "#BB79EC" + brightCyan: "#81EEB2" + brightWhite: "#F5EEEC" +meta: + mode: "dark" + accent: "magenta" + hue: 269 + contrast: + fg: 94 + black: 0 + red: 41.5 + green: 81.3 + yellow: 59.2 + blue: 47 + magenta: 31.9 + cyan: 77.9 + white: 36.8 + brightBlack: 36.8 + brightRed: 49.5 + brightGreen: 83.6 + brightYellow: 65.9 + brightBlue: 56.1 + brightMagenta: 42.6 + brightCyan: 80.3 + brightWhite: 94.5 diff --git a/themes/moonlight-ii.yaml b/themes/moonlight-ii.yaml new file mode 100644 index 00000000..6b36a3f6 --- /dev/null +++ b/themes/moonlight-ii.yaml @@ -0,0 +1,49 @@ +name: "Moonlight II" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3734 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#222436" + fg: "#C8D3F5" + black: "#000000" + red: "#FF757F" + green: "#C3E88D" + yellow: "#FFC777" + blue: "#82AAFF" + magenta: "#FCA7EA" + cyan: "#86E1FC" + white: "#C8D3F5" + brightBlack: "#828BB8" + brightRed: "#FF757F" + brightGreen: "#C3E88D" + brightYellow: "#FFC777" + brightBlue: "#82AAFF" + brightMagenta: "#FCA7EA" + brightCyan: "#86E1FC" + brightWhite: "#C8D3F5" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 77.2 + black: 0 + red: 48.9 + green: 82.2 + yellow: 75.6 + blue: 54 + magenta: 67.3 + cyan: 77.8 + white: 77.2 + brightBlack: 38.2 + brightRed: 48.9 + brightGreen: 82.2 + brightYellow: 75.6 + brightBlue: 54 + brightMagenta: 67.3 + brightCyan: 77.8 + brightWhite: 77.2 diff --git a/themes/moonlight.yaml b/themes/moonlight.yaml new file mode 100644 index 00000000..1e53609b --- /dev/null +++ b/themes/moonlight.yaml @@ -0,0 +1,49 @@ +name: "Moonlight" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3734 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#212337" + fg: "#AAB3E5" + black: "#000000" + red: "#FF5370" + green: "#C7F59B" + yellow: "#FFDB8E" + blue: "#70B0FF" + magenta: "#BAACFF" + cyan: "#7FDAFF" + white: "#E4F3FA" + brightBlack: "#7C85B3" + brightRed: "#FF5370" + brightGreen: "#C7F59B" + brightYellow: "#FFDB8E" + brightBlue: "#70B0FF" + brightMagenta: "#BAACFF" + brightCyan: "#7FDAFF" + brightWhite: "#E4F3FA" +meta: + mode: "dark" + accent: "red" + hue: 279 + contrast: + fg: 59.8 + black: 0 + red: 41.8 + green: 89.4 + yellow: 84.6 + blue: 55.2 + magenta: 60.5 + cyan: 74.3 + white: 95.5 + brightBlack: 35.4 + brightRed: 41.8 + brightGreen: 89.4 + brightYellow: 84.6 + brightBlue: 55.2 + brightMagenta: 60.5 + brightCyan: 74.3 + brightWhite: 95.5 diff --git a/themes/moonokai.yaml b/themes/moonokai.yaml new file mode 100644 index 00000000..eefbd72b --- /dev/null +++ b/themes/moonokai.yaml @@ -0,0 +1,49 @@ +name: "Moonokai" +source: + marketplace_id: "mtayllan.moonokai" + version: "0.0.4" + installs: 1021 + author: "mtayllan" + repo: "https://github.com/mtayllan/moonokai" + url: "https://marketplace.visualstudio.com/items?itemName=mtayllan.moonokai" +colors: + bg: "#0F111B" + fg: "#FFFFFF" + black: "#0F111B" + red: "#E33400" + green: "#5CCC96" + yellow: "#E39400" + blue: "#3465A4" + magenta: "#B3A1E6" + cyan: "#00A3CC" + white: "#FFFFFF" + brightBlack: "#ECF0C1" + brightRed: "#E33400" + brightGreen: "#5CCC96" + brightYellow: "#E39400" + brightBlue: "#3465A4" + brightMagenta: "#B3A1E6" + brightCyan: "#00A3CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 107.3 + black: 0 + red: 32.2 + green: 63.5 + yellow: 53.3 + blue: 21.9 + magenta: 56.4 + cyan: 45.9 + white: 107.3 + brightBlack: 95 + brightRed: 32.2 + brightGreen: 63.5 + brightYellow: 53.3 + brightBlue: 21.9 + brightMagenta: 56.4 + brightCyan: 45.9 + brightWhite: 107.3 diff --git a/themes/moonspell-northern-lights.yaml b/themes/moonspell-northern-lights.yaml new file mode 100644 index 00000000..be62181c --- /dev/null +++ b/themes/moonspell-northern-lights.yaml @@ -0,0 +1,49 @@ +name: "Moonspell - Northern Lights" +source: + marketplace_id: "Oodri.moonspell-themes" + version: "0.1.2" + installs: 354 + author: "Oodri" + repo: "https://github.com/ElvannAbendroth/moonspell-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Oodri.moonspell-themes" +colors: + bg: "#16191E" + fg: "#7B88A1" + black: "#B8B8B8" + red: "#DDA2F6" + green: "#A571F4" + yellow: "#B396F9" + blue: "#9AEFEA" + magenta: "#DDA2F6" + cyan: "#9AEFEA" + white: "#E1E1E1" + brightBlack: "#E1E1E1" + brightRed: "#DDA2F6" + brightGreen: "#A571F4" + brightYellow: "#B396F9" + brightBlue: "#9AEFEA" + brightMagenta: "#DDA2F6" + brightCyan: "#9AEFEA" + brightWhite: "#E1E1E1" +meta: + mode: "dark" + accent: "magenta" + hue: 261 + contrast: + fg: 37.2 + black: 62.8 + red: 62.9 + green: 39.9 + yellow: 53.1 + blue: 86.8 + magenta: 62.9 + cyan: 86.8 + white: 87.3 + brightBlack: 87.3 + brightRed: 62.9 + brightGreen: 39.9 + brightYellow: 53.1 + brightBlue: 86.8 + brightMagenta: 62.9 + brightCyan: 86.8 + brightWhite: 87.3 diff --git a/themes/morass-contrast.yaml b/themes/morass-contrast.yaml new file mode 100644 index 00000000..982af1e3 --- /dev/null +++ b/themes/morass-contrast.yaml @@ -0,0 +1,49 @@ +name: "morass-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#1A1F1D" + fg: "#E4E3E1" + black: "#262D2A" + red: "#BA0E2E" + green: "#FDEC5A" + yellow: "#68875A" + blue: "#AFB54C" + magenta: "#AFD0C4" + cyan: "#677C71" + white: "#F0F0EE" + brightBlack: "#495651" + brightRed: "#F03E5F" + brightGreen: "#FEF8BF" + brightYellow: "#9DB691" + brightBlue: "#CFD394" + brightMagenta: "#EFF6F3" + brightCyan: "#9CADA4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88 + black: 0 + red: 19.7 + green: 92 + yellow: 32.2 + blue: 57.1 + magenta: 71.9 + cyan: 28.8 + white: 96.1 + brightBlack: 13.6 + brightRed: 36 + brightGreen: 100 + brightYellow: 57 + brightBlue: 75.3 + brightMagenta: 99 + brightCyan: 53.8 + brightWhite: 106.1 diff --git a/themes/morass-light.yaml b/themes/morass-light.yaml new file mode 100644 index 00000000..453824d9 --- /dev/null +++ b/themes/morass-light.yaml @@ -0,0 +1,49 @@ +name: "morass-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#CEC040" + yellow: "#68875A" + blue: "#AFB54C" + magenta: "#80A396" + cyan: "#677C71" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#E3DB91" + brightYellow: "#9DB691" + brightBlue: "#CFD394" + brightMagenta: "#BBCEC7" + brightCyan: "#9CADA4" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 35.2 + yellow: 67.6 + blue: 43.3 + magenta: 53.3 + cyan: 71 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 20.1 + brightYellow: 43.4 + brightBlue: 25.9 + brightMagenta: 28.6 + brightCyan: 46.4 + brightWhite: 71.1 diff --git a/themes/morass.yaml b/themes/morass.yaml new file mode 100644 index 00000000..b6a9ae56 --- /dev/null +++ b/themes/morass.yaml @@ -0,0 +1,49 @@ +name: "morass" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#313A36" + fg: "#E4E3E1" + black: "#3D4843" + red: "#BA0E2E" + green: "#FDEC5A" + yellow: "#68875A" + blue: "#AFB54C" + magenta: "#AFD0C4" + cyan: "#677C71" + white: "#F0F0EE" + brightBlack: "#607169" + brightRed: "#F03E5F" + brightGreen: "#FEF8BF" + brightYellow: "#9DB691" + brightBlue: "#CFD394" + brightMagenta: "#EFF6F3" + brightCyan: "#9CADA4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 167 + contrast: + fg: 82.5 + black: 0 + red: 14.2 + green: 86.5 + yellow: 26.8 + blue: 51.6 + magenta: 66.4 + cyan: 23.4 + white: 90.7 + brightBlack: 18.8 + brightRed: 30.5 + brightGreen: 94.5 + brightYellow: 51.5 + brightBlue: 69.9 + brightMagenta: 93.6 + brightCyan: 48.4 + brightWhite: 100.6 diff --git a/themes/more-purple.yaml b/themes/more-purple.yaml new file mode 100644 index 00000000..8fd5ac38 --- /dev/null +++ b/themes/more-purple.yaml @@ -0,0 +1,49 @@ +name: "more purple" +source: + marketplace_id: "Immortal.more-purple" + version: "0.1.1" + installs: 285 + author: "Immortal" + repo: "https://github.com/ImmortalNameless/more-purple" + url: "https://marketplace.visualstudio.com/items?itemName=Immortal.more-purple" +colors: + bg: "#1F072C" + fg: "#C4016F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 311 + contrast: + fg: 24.1 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.5 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/morgan-codes.yaml b/themes/morgan-codes.yaml new file mode 100644 index 00000000..96a16595 --- /dev/null +++ b/themes/morgan-codes.yaml @@ -0,0 +1,49 @@ +name: "morgan.codes" +source: + marketplace_id: "morgan-codes.morgan-codes-vscode-theme" + version: "0.0.5" + installs: 49373 + author: "morgan-codes" + repo: "https://github.com/morganrmarie/morgancodes-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=morgan-codes.morgan-codes-vscode-theme" +colors: + bg: "#111111" + fg: "#FF8B56" + black: "#2A3134" + red: "#FC4384" + green: "#55E513" + yellow: "#A553C6" + blue: "#FC4384" + magenta: "#AE89FE" + cyan: "#708387" + white: "#D5D5D0" + brightBlack: "#4A4E4F" + brightRed: "#FC4384" + brightGreen: "#55E513" + brightYellow: "#41F0FF" + brightBlue: "#41F0FF" + brightMagenta: "#AE89FE" + brightCyan: "#41F0FF" + brightWhite: "#F9F9F4" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 56.4 + black: 0 + red: 41.7 + green: 73.6 + yellow: 30.3 + blue: 41.7 + magenta: 49.4 + cyan: 34.1 + white: 80.4 + brightBlack: 12.7 + brightRed: 41.7 + brightGreen: 73.6 + brightYellow: 84.6 + brightBlue: 84.6 + brightMagenta: 49.4 + brightCyan: 84.6 + brightWhite: 103.2 diff --git a/themes/mori-keycaps.yaml b/themes/mori-keycaps.yaml new file mode 100644 index 00000000..dcf7d5ba --- /dev/null +++ b/themes/mori-keycaps.yaml @@ -0,0 +1,49 @@ +name: "Mori Keycaps" +source: + marketplace_id: "Icycoldveins.verum-monokai-themes" + version: "1.2.1" + installs: 46 + author: "Icycoldveins" + repo: "https://github.com/icycoldveins/Ide-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" +colors: + bg: "#2D2A2E" + fg: "#A08B7A" + black: "#32302F" + red: "#E06C75" + green: "#98C379" + yellow: "#E78A4E" + blue: "#7DAEA3" + magenta: "#FF6B6B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E78A4E" + brightBlue: "#7DAEA3" + brightMagenta: "#FF6B6B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 37.9 + black: 0 + red: 39.1 + green: 59.3 + yellow: 47.8 + blue: 49.2 + magenta: 45.1 + cyan: 51.6 + white: 65 + brightBlack: 33.3 + brightRed: 39.1 + brightGreen: 59.3 + brightYellow: 47.8 + brightBlue: 49.2 + brightMagenta: 45.1 + brightCyan: 51.6 + brightWhite: 70.2 diff --git a/themes/mori.yaml b/themes/mori.yaml new file mode 100644 index 00000000..52b27ccd --- /dev/null +++ b/themes/mori.yaml @@ -0,0 +1,49 @@ +name: "Mori" +source: + marketplace_id: "rajshekhardev.mori" + version: "0.0.3" + installs: 184 + author: "Raj Shekhar Dev" + repo: "https://github.com/blankRSD/mori" + url: "https://marketplace.visualstudio.com/items?itemName=rajshekhardev.mori" +colors: + bg: "#FFF5DE" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 100.4 + black: 100.4 + red: 68.4 + green: 43.6 + yellow: 52.3 + blue: 80.5 + magenta: 69 + cyan: 55 + white: 80.3 + brightBlack: 73.2 + brightRed: 68.4 + brightGreen: 35.3 + brightYellow: 35.4 + brightBlue: 80.5 + brightMagenta: 69 + brightCyan: 55 + brightWhite: 42.9 diff --git a/themes/morning-mist.yaml b/themes/morning-mist.yaml new file mode 100644 index 00000000..9076801b --- /dev/null +++ b/themes/morning-mist.yaml @@ -0,0 +1,49 @@ +name: "Morning Mist" +source: + marketplace_id: "ThemePlanet-Verdant.themeplanet-verdant" + version: "1.0.0" + installs: 47 + author: "ThemePlanet - Verdant" + repo: "https://github.com/Ukt01/themeplanet-verdant" + url: "https://marketplace.visualstudio.com/items?itemName=ThemePlanet-Verdant.themeplanet-verdant" +colors: + bg: "#F5F7F2" + fg: "#2D3748" + black: "#2D3748" + red: "#C53030" + green: "#2D5A47" + yellow: "#D69E2E" + blue: "#4A7C59" + magenta: "#5A7A5A" + cyan: "#1A3D2D" + white: "#2D3748" + brightBlack: "#718096" + brightRed: "#C53030" + brightGreen: "#2D5A47" + brightYellow: "#D69E2E" + brightBlue: "#4A7C59" + brightMagenta: "#5A7A5A" + brightCyan: "#1A3D2D" + brightWhite: "#1A202C" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.2 + black: 92.2 + red: 70.6 + green: 82 + yellow: 41.6 + blue: 68.4 + magenta: 68.1 + cyan: 92.1 + white: 92.2 + brightBlack: 62.2 + brightRed: 70.6 + brightGreen: 82 + brightYellow: 41.6 + brightBlue: 68.4 + brightMagenta: 68.1 + brightCyan: 92.1 + brightWhite: 98 diff --git a/themes/morning-mocha.yaml b/themes/morning-mocha.yaml new file mode 100644 index 00000000..8ef42b36 --- /dev/null +++ b/themes/morning-mocha.yaml @@ -0,0 +1,49 @@ +name: "Morning Mocha" +source: + marketplace_id: "goldenwere.morning-mocha" + version: "1.1.0" + installs: 1065 + author: "Goldenwere" + repo: "https://git.goldenwere.com/lightling/lightling" + url: "https://marketplace.visualstudio.com/items?itemName=goldenwere.morning-mocha" +colors: + bg: "#EADECC" + fg: "#000000" + black: "#000000" + red: "#AD0707" + green: "#148014" + yellow: "#858803" + blue: "#164C88" + magenta: "#990699" + cyan: "#0C7B96" + white: "#A5A5A5" + brightBlack: "#757575" + brightRed: "#FF6060" + brightGreen: "#0AB60A" + brightYellow: "#FAFF55" + brightBlue: "#419CFF" + brightMagenta: "#F037F0" + brightCyan: "#02BCEA" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: 78 + contrast: + fg: 87.5 + black: 87.5 + red: 65 + green: 56 + yellow: 46.8 + blue: 70.8 + magenta: 65 + cyan: 54.9 + white: 29.9 + brightBlack: 53.5 + brightRed: 36.6 + brightGreen: 33.4 + brightYellow: 13 + brightBlue: 35.3 + brightMagenta: 39.3 + brightCyan: 24.8 + brightWhite: 18.5 diff --git a/themes/morose-theme.yaml b/themes/morose-theme.yaml new file mode 100644 index 00000000..efeac45d --- /dev/null +++ b/themes/morose-theme.yaml @@ -0,0 +1,49 @@ +name: "Morose Theme" +source: + marketplace_id: "morose.morose-theme" + version: "1.0.2" + installs: 169 + author: "morose" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=morose.morose-theme" +colors: + bg: "#202020" + fg: "#B5B5B5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.2 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.3 + magenta: 28.6 + cyan: 46.4 + white: 88.9 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/mosaic.yaml b/themes/mosaic.yaml new file mode 100644 index 00000000..ed18a95b --- /dev/null +++ b/themes/mosaic.yaml @@ -0,0 +1,49 @@ +name: "Mosaic" +source: + marketplace_id: "vitoravelino.mosaic" + version: "0.0.1" + installs: 11257 + author: "vitoravelino" + repo: "https://github.com/vitoravelino/vscode-mosaic" + url: "https://marketplace.visualstudio.com/items?itemName=vitoravelino.mosaic" +colors: + bg: "#232834" + fg: "#DADBC0" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#8BCCD6" + magenta: "#CFBAFA" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#8BCCD6" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + contrast: + fg: 80.1 + black: 0 + red: 47.9 + green: 65 + yellow: 78 + blue: 66 + magenta: 67.6 + cyan: 78.4 + white: 69.2 + brightBlack: 20.4 + brightRed: 50.4 + brightGreen: 79.5 + brightYellow: 81.1 + brightBlue: 66 + brightMagenta: 70.5 + brightCyan: 78.4 + brightWhite: 104.4 diff --git a/themes/mosmmy.yaml b/themes/mosmmy.yaml new file mode 100644 index 00000000..beb3d0e1 --- /dev/null +++ b/themes/mosmmy.yaml @@ -0,0 +1,49 @@ +name: "Mosmmy" +source: + marketplace_id: "moserjose.mosmmy-theme" + version: "1.0.7" + installs: 1011 + author: "Moser Jose" + repo: "https://github.com/moser-jose/mosmmy-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=moserjose.mosmmy-theme" +colors: + bg: "#222222" + fg: "#F7F8F3" + black: "#363537" + red: "#30B4B4" + green: "#B6970C" + yellow: "#DD8671" + blue: "#30B4B4" + magenta: "#1C9AA3" + cyan: "#30B4B4" + white: "#F7F8F3" + brightBlack: "#69676C" + brightRed: "#30B4B4" + brightGreen: "#B6970C" + brightYellow: "#DD8671" + brightBlue: "#30B4B4" + brightMagenta: "#1C9AA3" + brightCyan: "#30B4B4" + brightWhite: "#F7F8F3" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 100.5 + black: 0 + red: 50.4 + green: 45.3 + yellow: 47 + blue: 50.4 + magenta: 38.4 + cyan: 50.4 + white: 100.5 + brightBlack: 21.4 + brightRed: 50.4 + brightGreen: 45.3 + brightYellow: 47 + brightBlue: 50.4 + brightMagenta: 38.4 + brightCyan: 50.4 + brightWhite: 100.5 diff --git a/themes/moss-oracle.yaml b/themes/moss-oracle.yaml new file mode 100644 index 00000000..a732feaf --- /dev/null +++ b/themes/moss-oracle.yaml @@ -0,0 +1,49 @@ +name: "Moss Oracle" +source: + marketplace_id: "InnaSodri.moss-oracle-theme" + version: "1.0.0" + installs: 186 + author: "Inna Sodri" + repo: "https://github.com/InnaSodri/moss-oracle" + url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.moss-oracle-theme" +colors: + bg: "#0F1410" + fg: "#E3D9B0" + black: "#121915" + red: "#E27D60" + green: "#9ED8BA" + yellow: "#EAC875" + blue: "#E2B7FF" + magenta: "#C99CE6" + cyan: "#82F0E0" + white: "#E3D9B0" + brightBlack: "#6B7965" + brightRed: "#F08A5D" + brightGreen: "#B8E8C8" + brightYellow: "#FFEBAF" + brightBlue: "#E2B7FF" + brightMagenta: "#D9A7EB" + brightCyan: "#A0F0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 151 + contrast: + fg: 82.7 + black: 0 + red: 46.8 + green: 74.7 + yellow: 74.9 + blue: 72.3 + magenta: 57.5 + cyan: 85.7 + white: 82.7 + brightBlack: 29 + brightRed: 53.1 + brightGreen: 85.2 + brightYellow: 94.8 + brightBlue: 72.3 + brightMagenta: 63.9 + brightCyan: 87.9 + brightWhite: 107.2 diff --git a/themes/mossframe-light.yaml b/themes/mossframe-light.yaml new file mode 100644 index 00000000..04adbff2 --- /dev/null +++ b/themes/mossframe-light.yaml @@ -0,0 +1,49 @@ +name: "MossFrame — Light" +source: + marketplace_id: "404mat.mossframe" + version: "2.1.2" + installs: 299 + author: "404mat" + repo: "https://github.com/404mat/mossframe" + url: "https://marketplace.visualstudio.com/items?itemName=404mat.mossframe" +colors: + bg: "#F9F5ED" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 100.2 + black: 100.2 + red: 68.2 + green: 43.4 + yellow: 52.1 + blue: 80.3 + magenta: 68.8 + cyan: 54.8 + white: 80.1 + brightBlack: 73 + brightRed: 68.2 + brightGreen: 35.1 + brightYellow: 35.2 + brightBlue: 80.3 + brightMagenta: 68.8 + brightCyan: 54.8 + brightWhite: 42.7 diff --git a/themes/mossframe.yaml b/themes/mossframe.yaml new file mode 100644 index 00000000..9bd188cc --- /dev/null +++ b/themes/mossframe.yaml @@ -0,0 +1,49 @@ +name: "MossFrame" +source: + marketplace_id: "404mat.mossframe" + version: "2.1.2" + installs: 299 + author: "404mat" + repo: "https://github.com/404mat/mossframe" + url: "https://marketplace.visualstudio.com/items?itemName=404mat.mossframe" +colors: + bg: "#101010" + fg: "#6A7782" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 29.3 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/motion-blue-thin-brackets.yaml b/themes/motion-blue-thin-brackets.yaml new file mode 100644 index 00000000..7d934dee --- /dev/null +++ b/themes/motion-blue-thin-brackets.yaml @@ -0,0 +1,49 @@ +name: "Motion Blue (Thin Brackets)" +source: + marketplace_id: "5ett.motion-blue" + version: "0.0.7" + installs: 534 + author: "5ett" + repo: "https://github.com/5ett/motion-blue" + url: "https://marketplace.visualstudio.com/items?itemName=5ett.motion-blue" +colors: + bg: "#183752" + fg: "#BBD5ED" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 247 + contrast: + fg: 72.6 + black: 0 + red: 21.2 + green: 47.5 + yellow: 80.1 + blue: 21.9 + magenta: 24.2 + cyan: 42 + white: 84.5 + brightBlack: 16.5 + brightRed: 33 + brightGreen: 58 + brightYellow: 90.1 + brightBlue: 34.5 + brightMagenta: 39.8 + brightCyan: 49.9 + brightWhite: 84.5 diff --git a/themes/motiv8der-s-theme.yaml b/themes/motiv8der-s-theme.yaml new file mode 100644 index 00000000..cab49a92 --- /dev/null +++ b/themes/motiv8der-s-theme.yaml @@ -0,0 +1,49 @@ +name: "Motiv8der's Theme" +source: + marketplace_id: "IntoCode.motiv8der-dark-theme" + version: "0.0.1" + installs: 18 + author: "IntoCode" + repo: "https://github.com/Justin-Diner/IntoCode_VSCodeTheme" + url: "https://marketplace.visualstudio.com/items?itemName=IntoCode.motiv8der-dark-theme" +colors: + bg: "#131313" + fg: "#F5ECEC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 96.1 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/mount-kalaga-noir.yaml b/themes/mount-kalaga-noir.yaml new file mode 100644 index 00000000..a09ed188 --- /dev/null +++ b/themes/mount-kalaga-noir.yaml @@ -0,0 +1,49 @@ +name: "Mount Kalaga Noir" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#2F4F2F" + fg: "#FFFFFF" + black: "#2F4F2F" + red: "#CD5C5C" + green: "#228B22" + yellow: "#FFD700" + blue: "#4682B4" + magenta: "#8B008B" + cyan: "#48D1CC" + white: "#FFFFFF" + brightBlack: "#2F4F2F" + brightRed: "#CD5C5C" + brightGreen: "#228B22" + brightYellow: "#FFD700" + brightBlue: "#4682B4" + brightMagenta: "#8B008B" + brightCyan: "#48D1CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 144 + contrast: + fg: 95.5 + black: 0 + red: 22.7 + green: 19.3 + yellow: 71.9 + blue: 21.2 + magenta: 0 + cyan: 55.3 + white: 95.5 + brightBlack: 0 + brightRed: 22.7 + brightGreen: 19.3 + brightYellow: 71.9 + brightBlue: 21.2 + brightMagenta: 0 + brightCyan: 55.3 + brightWhite: 95.5 diff --git a/themes/mountain-theme.yaml b/themes/mountain-theme.yaml new file mode 100644 index 00000000..7c92f914 --- /dev/null +++ b/themes/mountain-theme.yaml @@ -0,0 +1,49 @@ +name: "mountain-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#0F0F0F" + fg: "#F0F0F0" + black: "#000000" + red: "#AC8A8C" + green: "#8AAC8B" + yellow: "#ACA98A" + blue: "#8A98AC" + magenta: "#AC8AAC" + cyan: "#8AACAB" + white: "#E7E7E7" + brightBlack: "#4C4C4C" + brightRed: "#C49EA0" + brightGreen: "#9EC49F" + brightYellow: "#C4C19E" + brightBlue: "#A5B4CB" + brightMagenta: "#C49EC4" + brightCyan: "#9EC3C4" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 97.7 + black: 0 + red: 43.4 + green: 52.3 + yellow: 54.6 + blue: 45.7 + magenta: 44.7 + cyan: 53.4 + white: 91.9 + brightBlack: 12.3 + brightRed: 54.4 + brightGreen: 65 + brightYellow: 67.9 + brightBlue: 60.7 + brightMagenta: 55.9 + brightCyan: 66 + brightWhite: 97.7 diff --git a/themes/mountain.yaml b/themes/mountain.yaml new file mode 100644 index 00000000..f4403f90 --- /dev/null +++ b/themes/mountain.yaml @@ -0,0 +1,49 @@ +name: "Mountain" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" +colors: + bg: "#0C0C0C" + fg: "#E7E7E7" + black: "#000000" + red: "#C49EA0" + green: "#9EC49F" + yellow: "#CEB188" + blue: "#9EC3C4" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#CEB188" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 92.1 + black: 0 + red: 54.5 + green: 65.1 + yellow: 62.3 + blue: 66.1 + magenta: 65.1 + cyan: 93.5 + white: 107.7 + brightBlack: 15.4 + brightRed: 47.9 + brightGreen: 67.1 + brightYellow: 62.3 + brightBlue: 39.5 + brightMagenta: 65.1 + brightCyan: 93.5 + brightWhite: 0 diff --git a/themes/mountains-and-rivers.yaml b/themes/mountains-and-rivers.yaml new file mode 100644 index 00000000..13af7272 --- /dev/null +++ b/themes/mountains-and-rivers.yaml @@ -0,0 +1,49 @@ +name: "Mountains and Rivers" +source: + marketplace_id: "yshwaker.mountains-and-rivers-theme" + version: "2.3.0" + installs: 183 + author: "yshwaker" + repo: "https://github.com/yshwaker/mountains-and-rivers-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yshwaker.mountains-and-rivers-theme" +colors: + bg: "#F8F6F5" + fg: "#1E2128" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 97.9 + black: 100.9 + red: 68.8 + green: 44.1 + yellow: 52.7 + blue: 80.9 + magenta: 69.4 + cyan: 55.4 + white: 80.8 + brightBlack: 73.6 + brightRed: 68.8 + brightGreen: 35.7 + brightYellow: 35.8 + brightBlue: 80.9 + brightMagenta: 69.4 + brightCyan: 55.4 + brightWhite: 43.3 diff --git a/themes/mourning.yaml b/themes/mourning.yaml new file mode 100644 index 00000000..7c3fe76c --- /dev/null +++ b/themes/mourning.yaml @@ -0,0 +1,49 @@ +name: "Mourning" +source: + marketplace_id: "zakj.mourning" + version: "0.0.5" + installs: 1020 + author: "zakj" + repo: "https://github.com/zakj/vscode-mourning" + url: "https://marketplace.visualstudio.com/items?itemName=zakj.mourning" +colors: + bg: "#1C1C1C" + fg: "#8A8A8A" + black: "#000000" + red: "#C88A68" + green: "#64C48A" + yellow: "#B8B78A" + blue: "#678CC7" + magenta: "#B98DB9" + cyan: "#88B8B9" + white: "#D6D6D6" + brightBlack: "#63676B" + brightRed: "#E5AA8A" + brightGreen: "#86E1A9" + brightYellow: "#D5D4A9" + brightBlue: "#89ABE4" + brightMagenta: "#D7ACD6" + brightCyan: "#A8D5D6" + brightWhite: "#E6E9ED" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 38 + black: 0 + red: 45.3 + green: 58.8 + yellow: 60.5 + blue: 38.6 + magenta: 46.8 + cyan: 57.6 + white: 80.1 + brightBlack: 21.7 + brightRed: 61.9 + brightGreen: 75.5 + brightYellow: 77.4 + brightBlue: 54.6 + brightMagenta: 63.4 + brightCyan: 74.5 + brightWhite: 91.8 diff --git a/themes/mowgli.yaml b/themes/mowgli.yaml new file mode 100644 index 00000000..87463892 --- /dev/null +++ b/themes/mowgli.yaml @@ -0,0 +1,49 @@ +name: "Mowgli" +source: + marketplace_id: "wapenshaw.mowgli" + version: "1.1.4" + installs: 820 + author: "Siddharth Abbineni" + repo: "https://github.com/wapenshaw/mowgli/" + url: "https://marketplace.visualstudio.com/items?itemName=wapenshaw.mowgli" +colors: + bg: "#0F1519" + fg: "#DCDCDC" + black: "#2E2A31" + red: "#D8137F" + green: "#17AD98" + yellow: "#DC8A0E" + blue: "#796AF5" + magenta: "#BB60EA" + cyan: "#149BDA" + white: "#BCBABE" + brightBlack: "#838085" + brightRed: "#D8137F" + brightGreen: "#17AD98" + brightYellow: "#DC8A0E" + brightBlue: "#796AF5" + brightMagenta: "#BB60EA" + brightCyan: "#149BDA" + brightWhite: "#F5F4F7" +meta: + mode: "dark" + accent: "red" + hue: 237 + contrast: + fg: 84.6 + black: 0 + red: 29.4 + green: 47.5 + yellow: 48.6 + blue: 33.6 + magenta: 38.7 + cyan: 43.3 + white: 64.8 + brightBlack: 34.5 + brightRed: 29.4 + brightGreen: 47.5 + brightYellow: 48.6 + brightBlue: 33.6 + brightMagenta: 38.7 + brightCyan: 43.3 + brightWhite: 100.2 diff --git a/themes/mr-code-black.yaml b/themes/mr-code-black.yaml new file mode 100644 index 00000000..53e19445 --- /dev/null +++ b/themes/mr-code-black.yaml @@ -0,0 +1,49 @@ +name: "Mr Code Black" +source: + marketplace_id: "AhmadJubran.mr-code" + version: "0.0.1" + installs: 1931 + author: "Ahmad Jubran" + repo: "https://github.com/ahmadjubran/mr-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AhmadJubran.mr-code" +colors: + bg: "#0F1014" + fg: "#D8DEE9" + black: "#1C1F24" + red: "#F94C66" + green: "#5FC4A4" + yellow: "#FFC54D" + blue: "#3BC1EA" + magenta: "#A785F6" + cyan: "#3BC1EA" + white: "#E5E9F0" + brightBlack: "#2B303B" + brightRed: "#F94C66" + brightGreen: "#5FC4A4" + brightYellow: "#FFC54D" + brightBlue: "#3BC1EA" + brightMagenta: "#A785F6" + brightCyan: "#3BC1EA" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.9 + black: 0 + red: 41.5 + green: 60.5 + yellow: 76.6 + blue: 61.1 + magenta: 46.7 + cyan: 61.1 + white: 92.9 + brightBlack: 0 + brightRed: 41.5 + brightGreen: 60.5 + brightYellow: 76.6 + brightBlue: 61.1 + brightMagenta: 46.7 + brightCyan: 61.1 + brightWhite: 96.8 diff --git a/themes/mr-code-gunmetal.yaml b/themes/mr-code-gunmetal.yaml new file mode 100644 index 00000000..f9d27133 --- /dev/null +++ b/themes/mr-code-gunmetal.yaml @@ -0,0 +1,49 @@ +name: "Mr Code Gunmetal" +source: + marketplace_id: "AhmadJubran.mr-code" + version: "0.0.1" + installs: 1931 + author: "Ahmad Jubran" + repo: "https://github.com/ahmadjubran/mr-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AhmadJubran.mr-code" +colors: + bg: "#292F3A" + fg: "#D8DEE9" + black: "#2E3440" + red: "#F94C66" + green: "#5FC4A4" + yellow: "#FFC54D" + blue: "#3BC1EA" + magenta: "#A785F6" + cyan: "#3BC1EA" + white: "#E5E9F0" + brightBlack: "#434C5E" + brightRed: "#F94C66" + brightGreen: "#5FC4A4" + brightYellow: "#FFC54D" + brightBlue: "#3BC1EA" + brightMagenta: "#A785F6" + brightCyan: "#3BC1EA" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 263 + contrast: + fg: 81.5 + black: 0 + red: 37.1 + green: 56.1 + yellow: 72.2 + blue: 56.7 + magenta: 42.3 + cyan: 56.7 + white: 88.5 + brightBlack: 7.8 + brightRed: 37.1 + brightGreen: 56.1 + brightYellow: 72.2 + brightBlue: 56.7 + brightMagenta: 42.3 + brightCyan: 56.7 + brightWhite: 92.4 diff --git a/themes/ms-dev-theme.yaml b/themes/ms-dev-theme.yaml new file mode 100644 index 00000000..00967b2f --- /dev/null +++ b/themes/ms-dev-theme.yaml @@ -0,0 +1,49 @@ +name: "MS Dev Theme" +source: + marketplace_id: "mhmdsulimn.msdev-vscode" + version: "1.6.0" + installs: 456 + author: "Mohamed Suliman" + repo: "https://github.com/mhmdsulimn/MS-Dev-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=mhmdsulimn.msdev-vscode" +colors: + bg: "#0D1117" + fg: "#D0D0D0" + black: "#000000" + red: "#FE4450" + green: "#37B349" + yellow: "#F8CA12" + blue: "#00A9E6" + magenta: "#FF7EDB" + cyan: "#03EDF9" + white: "#D0D0D0" + brightBlack: "#505050" + brightRed: "#FE4450" + brightGreen: "#72F1B8" + brightYellow: "#FEDE5D" + brightBlue: "#03EDF9" + brightMagenta: "#FF7EDB" + brightCyan: "#03EDF9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 258 + contrast: + fg: 77.6 + black: 0 + red: 41.1 + green: 49.1 + yellow: 77.1 + blue: 49.9 + magenta: 57.4 + cyan: 82.2 + white: 77.6 + brightBlack: 13.7 + brightRed: 41.1 + brightGreen: 83.8 + brightYellow: 87.2 + brightBlue: 82.2 + brightMagenta: 57.4 + brightCyan: 82.2 + brightWhite: 107.4 diff --git a/themes/mt-doom-theme.yaml b/themes/mt-doom-theme.yaml new file mode 100644 index 00000000..022d8d82 --- /dev/null +++ b/themes/mt-doom-theme.yaml @@ -0,0 +1,49 @@ +name: "mt-doom-theme" +source: + marketplace_id: "nathanhedemark.greyandorange" + version: "2.1.9" + installs: 488 + author: "nathanhedemark" + repo: "https://github.com/NathanH2111/Mt.-Doom-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=nathanhedemark.greyandorange" +colors: + bg: "#060707" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F8F8F8" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.4 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 103.2 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 91 diff --git a/themes/mud-contrast.yaml b/themes/mud-contrast.yaml new file mode 100644 index 00000000..74698db0 --- /dev/null +++ b/themes/mud-contrast.yaml @@ -0,0 +1,49 @@ +name: "mud-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0D0B0B" + fg: "#FFFFFF" + black: "#1B1717" + red: "#BA0E2E" + green: "#F2C12F" + yellow: "#F55239" + blue: "#8EE350" + magenta: "#F8553C" + cyan: "#EABA2C" + white: "#FFFFFF" + brightBlack: "#443A3A" + brightRed: "#F03E5F" + brightGreen: "#F8DE8F" + brightYellow: "#FAA79A" + brightBlue: "#C7F1A8" + brightMagenta: "#FCAB9E" + brightCyan: "#F3D889" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.7 + black: 0 + red: 21.3 + green: 72.8 + yellow: 41 + blue: 76.5 + magenta: 42.2 + cyan: 68.7 + white: 107.7 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 87.5 + brightYellow: 66.3 + brightBlue: 90.5 + brightMagenta: 68.2 + brightCyan: 83.9 + brightWhite: 107.7 diff --git a/themes/mud-light.yaml b/themes/mud-light.yaml new file mode 100644 index 00000000..52da9b81 --- /dev/null +++ b/themes/mud-light.yaml @@ -0,0 +1,49 @@ +name: "mud-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#EDE8E8" + fg: "#555555" + black: "#F8F6F6" + red: "#BA0E2E" + green: "#C4A446" + yellow: "#D16F60" + blue: "#88AD6E" + magenta: "#D16F60" + cyan: "#C4A446" + white: "#626262" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DDCA93" + brightYellow: "#E8B7AF" + brightBlue: "#BDD2AF" + brightMagenta: "#E8B7AF" + brightCyan: "#DDCA93" + brightWhite: "#888888" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 73 + black: 0 + red: 67.4 + green: 34.2 + yellow: 48.3 + blue: 36.8 + magenta: 48.3 + cyan: 34.2 + white: 67.5 + brightBlack: 12.2 + brightRed: 50.9 + brightGreen: 14.8 + brightYellow: 19.7 + brightBlue: 14.6 + brightMagenta: 19.7 + brightCyan: 14.8 + brightWhite: 50.1 diff --git a/themes/mud-theme.yaml b/themes/mud-theme.yaml new file mode 100644 index 00000000..e9af9d15 --- /dev/null +++ b/themes/mud-theme.yaml @@ -0,0 +1,49 @@ +name: "Mud Theme" +source: + marketplace_id: "DarkMannn.mud-theme" + version: "0.0.6" + installs: 1154 + author: "DarkMannn" + repo: "https://github.com/DarkMannn/mud-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.mud-theme" +colors: + bg: "#191919" + fg: "#DBDBDB" + black: "#000000" + red: "#CD6161" + green: "#2BB681" + yellow: "#E2E298" + blue: "#3B7AC0" + magenta: "#BC4FBC" + cyan: "#2EACCB" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF8181" + brightGreen: "#4FE4A8" + brightYellow: "#F7F780" + brightBlue: "#50A3FF" + brightMagenta: "#DE78DE" + brightCyan: "#42CCEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 83.6 + black: 0 + red: 35.1 + green: 50.6 + yellow: 85.3 + blue: 29.9 + magenta: 32 + cyan: 49.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 53.8 + brightGreen: 74.5 + brightYellow: 97.5 + brightBlue: 50 + brightMagenta: 49.1 + brightCyan: 65.7 + brightWhite: 106.7 diff --git a/themes/mud.yaml b/themes/mud.yaml new file mode 100644 index 00000000..8cb4f187 --- /dev/null +++ b/themes/mud.yaml @@ -0,0 +1,49 @@ +name: "mud" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#403635" + fg: "#FFFFFF" + black: "#4E4241" + red: "#BA0E2E" + green: "#E9C865" + yellow: "#FF9787" + blue: "#B5DB99" + magenta: "#FF9787" + cyan: "#E9C865" + white: "#FFFFFF" + brightBlack: "#786563" + brightRed: "#F03E5F" + brightGreen: "#F6E8BE" + brightYellow: "#FFEFED" + brightBlue: "#ECF6E4" + brightMagenta: "#FFEFED" + brightCyan: "#F6E8BE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 25 + contrast: + fg: 100.5 + black: 0 + red: 14.1 + green: 67.7 + yellow: 54.2 + blue: 70.5 + magenta: 54.2 + cyan: 67.7 + white: 100.5 + brightBlack: 17.1 + brightRed: 30.4 + brightGreen: 85.8 + brightYellow: 92.2 + brightBlue: 92.4 + brightMagenta: 92.2 + brightCyan: 85.8 + brightWhite: 100.5 diff --git a/themes/murasaki-theme.yaml b/themes/murasaki-theme.yaml new file mode 100644 index 00000000..dfd5c344 --- /dev/null +++ b/themes/murasaki-theme.yaml @@ -0,0 +1,49 @@ +name: "Murasaki theme" +source: + marketplace_id: "WesleyBarbosa.murasaki-theme" + version: "1.2.0" + installs: 50 + author: "WesleyBarbosa" + repo: "https://github.com/Wesley216/murasaki-theme" + url: "https://marketplace.visualstudio.com/items?itemName=WesleyBarbosa.murasaki-theme" +colors: + bg: "#15141B" + fg: "#EDECEE" + black: "#535354" + red: "#FF6767" + green: "#61FFCA" + yellow: "#FFCA85" + blue: "#A277FF" + magenta: "#61FFCA" + cyan: "#A277FF" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#FFCA85" + brightGreen: "#23D18B" + brightYellow: "#FFCA85" + brightBlue: "#A277FF" + brightMagenta: "#61FFCA" + brightCyan: "#61FFCA" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "magenta" + hue: 292 + contrast: + fg: 94.9 + black: 14.6 + red: 47.3 + green: 90.6 + yellow: 79.2 + blue: 42.4 + magenta: 90.6 + cyan: 42.4 + white: 75.1 + brightBlack: 0 + brightRed: 79.2 + brightGreen: 63.7 + brightYellow: 79.2 + brightBlue: 42.4 + brightMagenta: 90.6 + brightCyan: 90.6 + brightWhite: 94.9 diff --git a/themes/muromachi.yaml b/themes/muromachi.yaml new file mode 100644 index 00000000..d93049c9 --- /dev/null +++ b/themes/muromachi.yaml @@ -0,0 +1,49 @@ +name: "Muromachi" +source: + marketplace_id: "Hoodnight.muromachi-deluxe" + version: "1.0.8" + installs: 861 + author: "Charlie Timlock" + repo: "https://github.com/ctimlock/muromachi" + url: "https://marketplace.visualstudio.com/items?itemName=Hoodnight.muromachi-deluxe" +colors: + bg: "#1D1E1F" + fg: "#F8F8F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.2 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/murora-light-lite.yaml b/themes/murora-light-lite.yaml new file mode 100644 index 00000000..1e4b4ef0 --- /dev/null +++ b/themes/murora-light-lite.yaml @@ -0,0 +1,49 @@ +name: "Murora Light Lite" +source: + marketplace_id: "MuhammadMwinchande.murora" + version: "0.1.0" + installs: 114 + author: "Muhammad Mwinchande" + repo: "https://github.com/ammwinchande/murora" + url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMwinchande.murora" +colors: + bg: "#FFFFFF" + fg: "#222222" + black: "#333333" + red: "#E84135" + green: "#34A853" + yellow: "#FCBC05" + blue: "#4285F4" + magenta: "#EA4334" + cyan: "#4ADC6E" + white: "#222222" + brightBlack: "#555555" + brightRed: "#FF3E25" + brightGreen: "#4ADC6E" + brightYellow: "#FCDE00" + brightBlue: "#4FAFFF" + brightMagenta: "#EA4334" + brightCyan: "#4ADC6E" + brightWhite: "#222222" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.9 + black: 98.7 + red: 66 + green: 57 + yellow: 30.2 + blue: 62.8 + magenta: 65.3 + cyan: 32.6 + white: 102.9 + brightBlack: 85.9 + brightRed: 61.1 + brightGreen: 32.6 + brightYellow: 16.8 + brightBlue: 46.2 + brightMagenta: 65.3 + brightCyan: 32.6 + brightWhite: 102.9 diff --git a/themes/murtadapy-green.yaml b/themes/murtadapy-green.yaml new file mode 100644 index 00000000..ff67b05c --- /dev/null +++ b/themes/murtadapy-green.yaml @@ -0,0 +1,49 @@ +name: "murtadapy-green" +source: + marketplace_id: "Maltarouti.colored-programmer" + version: "1.0.7" + installs: 64 + author: "Maltarouti" + repo: "https://github.com/murtadapy/colored-programmer" + url: "https://marketplace.visualstudio.com/items?itemName=Maltarouti.colored-programmer" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CC1616" + green: "#15B73D" + yellow: "#DAB42B" + blue: "#1263A3" + magenta: "#C616CC" + cyan: "#4596D6" + white: "#DADADA" + brightBlack: "#666666" + brightRed: "#D64545" + brightGreen: "#45D569" + brightYellow: "#E1C355" + brightBlue: "#167CCC" + brightMagenta: "#D145D6" + brightCyan: "#73B0E0" + brightWhite: "#D1D1D1" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 23.7 + green: 48.9 + yellow: 62.2 + blue: 19.2 + magenta: 28.7 + cyan: 41.1 + white: 82.3 + brightBlack: 21.2 + brightRed: 30.6 + brightGreen: 64.6 + brightYellow: 69.7 + brightBlue: 30 + brightMagenta: 35.4 + brightCyan: 54.4 + brightWhite: 76.8 diff --git a/themes/mushroomsynth.yaml b/themes/mushroomsynth.yaml new file mode 100644 index 00000000..b7e86871 --- /dev/null +++ b/themes/mushroomsynth.yaml @@ -0,0 +1,49 @@ +name: "MushroomSynth" +source: + marketplace_id: "TjasaZil.mushroomsynth" + version: "0.1.0" + installs: 48 + author: "TjasaZil" + repo: "https://github.com/TjasaZil/mushroomsynth" + url: "https://marketplace.visualstudio.com/items?itemName=TjasaZil.mushroomsynth" +colors: + bg: "#182031" + fg: "#DDD5FF" + black: "#5C5C5C" + red: "#FF3E3E" + green: "#00FF9D" + yellow: "#FFFF00" + blue: "#52A4FF" + magenta: "#FF58FF" + cyan: "#28D5FF" + white: "#E8E8E8" + brightBlack: "#969696" + brightRed: "#FF7D7D" + brightGreen: "#5DFFBE" + brightYellow: "#FFFF86" + brightBlue: "#7EBBFF" + brightMagenta: "#FFA6FF" + brightCyan: "#62E0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 265 + contrast: + fg: 82.1 + black: 16.7 + red: 38.7 + green: 86.1 + yellow: 100.5 + blue: 49.5 + magenta: 50.2 + cyan: 69.4 + white: 90.8 + brightBlack: 43.5 + brightRed: 51.7 + brightGreen: 88.6 + brightYellow: 101.7 + brightBlue: 61.3 + brightMagenta: 69.5 + brightCyan: 76.3 + brightWhite: 105.7 diff --git a/themes/muted-mirage.yaml b/themes/muted-mirage.yaml new file mode 100644 index 00000000..7180de7f --- /dev/null +++ b/themes/muted-mirage.yaml @@ -0,0 +1,49 @@ +name: "Muted Mirage" +source: + marketplace_id: "mouhany.muted-mirage" + version: "1.0.4" + installs: 333 + author: "Mouhany" + repo: "https://github.com/mouhany/muted-mirage" + url: "https://marketplace.visualstudio.com/items?itemName=mouhany.muted-mirage" +colors: + bg: "#1B202C" + fg: "#878889" + black: "#0D1117" + red: "#B0635B" + green: "#738054" + yellow: "#E6C074" + blue: "#75ABBE" + magenta: "#B59599" + cyan: "#84BDBD" + white: "#C7C8C9" + brightBlack: "#000000" + brightRed: "#C7544A" + brightGreen: "#768947" + brightYellow: "#FEC555" + brightBlue: "#60B1CD" + brightMagenta: "#BF8F95" + brightCyan: "#84C7C7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 267 + contrast: + fg: 36.4 + black: 0 + red: 29.4 + green: 30.2 + yellow: 69.4 + blue: 50.4 + magenta: 47.1 + cyan: 59 + white: 71.1 + brightBlack: 0 + brightRed: 29.8 + brightGreen: 33.5 + brightYellow: 74.9 + brightBlue: 52.3 + brightMagenta: 46.3 + brightCyan: 63.9 + brightWhite: 105.7 diff --git a/themes/mutenight.yaml b/themes/mutenight.yaml new file mode 100644 index 00000000..145b3d76 --- /dev/null +++ b/themes/mutenight.yaml @@ -0,0 +1,49 @@ +name: "MuteNight" +source: + marketplace_id: "sqwibDev.mutenight" + version: "0.0.1" + installs: 237 + author: "sqwibDev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sqwibDev.mutenight" +colors: + bg: "#000000" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 72.4 + black: 27.4 + red: 45 + green: 66.8 + yellow: 79.9 + blue: 56.9 + magenta: 54.8 + cyan: 79.3 + white: 107.9 + brightBlack: 27.4 + brightRed: 45 + brightGreen: 85.2 + brightYellow: 79.9 + brightBlue: 56.9 + brightMagenta: 54.8 + brightCyan: 79.3 + brightWhite: 107.9 diff --git a/themes/mwone-dark.yaml b/themes/mwone-dark.yaml new file mode 100644 index 00000000..f3601a69 --- /dev/null +++ b/themes/mwone-dark.yaml @@ -0,0 +1,49 @@ +name: "Mwone-dark" +source: + marketplace_id: "Mwone.mwone-dark" + version: "0.4.0" + installs: 70 + author: "Mwone" + repo: "https://github.com/FabienLacorre/Mwone-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Mwone.mwone-dark" +colors: + bg: "#1B1F23" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.7 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/my-custom-theme.yaml b/themes/my-custom-theme.yaml new file mode 100644 index 00000000..1ad95b45 --- /dev/null +++ b/themes/my-custom-theme.yaml @@ -0,0 +1,49 @@ +name: "My Custom Theme" +source: + marketplace_id: "GautamSagarMallela.my-custom-theme-extension" + version: "1.0.2" + installs: 219 + author: "Gautam Sagar Mallela" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GautamSagarMallela.my-custom-theme-extension" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#FFFF66" + brightBlue: "#6666FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 35.7 + green: 84.6 + yellow: 100.9 + blue: 14.4 + magenta: 44.4 + cyan: 90.3 + white: 78.7 + brightBlack: 21.2 + brightRed: 46.1 + brightGreen: 87.2 + brightYellow: 101.4 + brightBlue: 30.7 + brightMagenta: 53 + brightCyan: 92.2 + brightWhite: 78.7 diff --git a/themes/my-dark-theme-refined-updated.yaml b/themes/my-dark-theme-refined-updated.yaml new file mode 100644 index 00000000..3eab0e5b --- /dev/null +++ b/themes/my-dark-theme-refined-updated.yaml @@ -0,0 +1,49 @@ +name: "my dark theme - refined - updated" +source: + marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" + version: "4.3.1" + installs: 36 + author: "XDxppyx" + repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" + url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" +colors: + bg: "#202D3A" + fg: "#4FA158" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EC7D7D" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 249 + contrast: + fg: 38.6 + black: 0 + red: 23.5 + green: 49.8 + yellow: 82.4 + blue: 24.2 + magenta: 26.5 + cyan: 44.3 + white: 45.8 + brightBlack: 18.8 + brightRed: 35.4 + brightGreen: 60.3 + brightYellow: 92.4 + brightBlue: 36.8 + brightMagenta: 42.2 + brightCyan: 52.2 + brightWhite: 86.8 diff --git a/themes/my-dark-theme.yaml b/themes/my-dark-theme.yaml new file mode 100644 index 00000000..3a2dc445 --- /dev/null +++ b/themes/my-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "my-dark-theme" +source: + marketplace_id: "kdinesh24.t3-dark-theme" + version: "0.1.1" + installs: 38 + author: "kdinesh24" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kdinesh24.t3-dark-theme" +colors: + bg: "#1A151F" + fg: "#E5E5E5" + black: "#201B25" + red: "#EF4444" + green: "#96D0BB" + yellow: "#FFBC9E" + blue: "#9EE9F7" + magenta: "#E07AA4" + cyan: "#8BC0AE" + white: "#E5E5E5" + brightBlack: "#6A6572" + brightRed: "#F87171" + brightGreen: "#A7F3D0" + brightYellow: "#FED7AA" + brightBlue: "#BFDBFE" + brightMagenta: "#CC93CA" + brightCyan: "#A7F3D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 307 + contrast: + fg: 90 + black: 0 + red: 36.8 + green: 70 + yellow: 74.2 + blue: 85.1 + magenta: 47.2 + cyan: 61.4 + white: 90 + brightBlack: 22.5 + brightRed: 48.1 + brightGreen: 88.9 + brightYellow: 85.3 + brightBlue: 82.1 + brightMagenta: 53 + brightCyan: 88.9 + brightWhite: 106.9 diff --git a/themes/my-first-visual-studio-theme.yaml b/themes/my-first-visual-studio-theme.yaml new file mode 100644 index 00000000..b207f480 --- /dev/null +++ b/themes/my-first-visual-studio-theme.yaml @@ -0,0 +1,49 @@ +name: "My First Visual Studio Theme" +source: + marketplace_id: "Bulbul.bulbul-theme" + version: "0.0.1" + installs: 40 + author: "Bulbul" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Bulbul.bulbul-theme" +colors: + bg: "#323131" + fg: "#C7C7C7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#6FFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 67.3 + black: 0 + red: 22.3 + green: 48.6 + yellow: 81.2 + blue: 23 + magenta: 25.4 + cyan: 43.2 + white: 89 + brightBlack: 17.6 + brightRed: 34.2 + brightGreen: 59.1 + brightYellow: 91.2 + brightBlue: 35.6 + brightMagenta: 41 + brightCyan: 51 + brightWhite: 85.6 diff --git a/themes/my-hero-academia-deku-plus-ultra.yaml b/themes/my-hero-academia-deku-plus-ultra.yaml new file mode 100644 index 00000000..b4a73659 --- /dev/null +++ b/themes/my-hero-academia-deku-plus-ultra.yaml @@ -0,0 +1,49 @@ +name: "My Hero Academia (Deku Plus Ultra)" +source: + marketplace_id: "LunaCode.anime-theme" + version: "0.0.3" + installs: 373 + author: "LunaCode" + repo: "https://github.com/BuildXO/anime-theme-pack" + url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" +colors: + bg: "#0A1E1A" + fg: "#E0F7E9" + black: "#1F3D36" + red: "#E53935" + green: "#4CAF50" + yellow: "#FFC107" + blue: "#42A5F5" + magenta: "#AB47BC" + cyan: "#26C6DA" + white: "#CFE8DC" + brightBlack: "#5A7A6F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFD740" + brightBlue: "#448AFF" + brightMagenta: "#E040FB" + brightCyan: "#18FFFF" + brightWhite: "#F5FFF8" +meta: + mode: "dark" + accent: "pink" + hue: 179 + contrast: + fg: 97.5 + black: 0 + red: 32.5 + green: 47.1 + yellow: 73.7 + blue: 49.3 + magenta: 27.5 + cyan: 61.1 + white: 87.8 + brightBlack: 27.5 + brightRed: 42.4 + brightGreen: 81.6 + brightYellow: 83 + brightBlue: 40.1 + brightMagenta: 40.8 + brightCyan: 90.8 + brightWhite: 104.7 diff --git a/themes/my-light-theme-blue-dark.yaml b/themes/my-light-theme-blue-dark.yaml new file mode 100644 index 00000000..10ac8d12 --- /dev/null +++ b/themes/my-light-theme-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "my light theme blue (dark)" +source: + marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" + version: "4.3.1" + installs: 36 + author: "XDxppyx" + repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" + url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" +colors: + bg: "#2A4056" + fg: "#E6FFA0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EC7D7D" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 249 + contrast: + fg: 91.8 + black: 9.2 + red: 18.5 + green: 44.8 + yellow: 77.4 + blue: 19.2 + magenta: 21.5 + cyan: 39.3 + white: 40.8 + brightBlack: 13.8 + brightRed: 30.3 + brightGreen: 55.3 + brightYellow: 87.4 + brightBlue: 31.8 + brightMagenta: 37.1 + brightCyan: 47.2 + brightWhite: 81.8 diff --git a/themes/my-light-theme-blue.yaml b/themes/my-light-theme-blue.yaml new file mode 100644 index 00000000..a0542b33 --- /dev/null +++ b/themes/my-light-theme-blue.yaml @@ -0,0 +1,49 @@ +name: "my light theme blue" +source: + marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" + version: "4.3.1" + installs: 36 + author: "XDxppyx" + repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" + url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" +colors: + bg: "#5F8590" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EC7D7D" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: 218 + contrast: + fg: 45.4 + black: 36.8 + red: 0 + green: 18.9 + yellow: 51.6 + blue: 0 + magenta: 0 + cyan: 13.5 + white: 14.9 + brightBlack: 9.5 + brightRed: 0 + brightGreen: 29.5 + brightYellow: 61.6 + brightBlue: 0 + brightMagenta: 11.3 + brightCyan: 21.3 + brightWhite: 56 diff --git a/themes/my-light-theme-light-green-fork-updated.yaml b/themes/my-light-theme-light-green-fork-updated.yaml new file mode 100644 index 00000000..bc2e7d92 --- /dev/null +++ b/themes/my-light-theme-light-green-fork-updated.yaml @@ -0,0 +1,49 @@ +name: "my light theme light green - Fork-updated" +source: + marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" + version: "4.3.1" + installs: 36 + author: "XDxppyx" + repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" + url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" +colors: + bg: "#729F94" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EC7D7D" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: 178 + contrast: + fg: 34 + black: 48 + red: 15.9 + green: 7.5 + yellow: 40.1 + blue: 15.2 + magenta: 12.9 + cyan: 0 + white: 0 + brightBlack: 20.7 + brightRed: 0 + brightGreen: 18.1 + brightYellow: 50.2 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 9.9 + brightWhite: 44.5 diff --git a/themes/my-light-theme-light-green-paperblue-fork.yaml b/themes/my-light-theme-light-green-paperblue-fork.yaml new file mode 100644 index 00000000..0d3c37b3 --- /dev/null +++ b/themes/my-light-theme-light-green-paperblue-fork.yaml @@ -0,0 +1,49 @@ +name: "my light theme light green - PaperBlue - Fork" +source: + marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" + version: "4.3.1" + installs: 36 + author: "XDxppyx" + repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" + url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" +colors: + bg: "#F2F2F2" + fg: "#5761B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EC7D7D" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#B0B0B0" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 69.9 + black: 98.3 + red: 66.2 + green: 40.3 + yellow: 9.3 + blue: 65.5 + magenta: 63.2 + cyan: 45.5 + white: 44.1 + brightBlack: 71 + brightRed: 54.4 + brightGreen: 30.1 + brightYellow: 0 + brightBlue: 53 + brightMagenta: 47.7 + brightCyan: 37.9 + brightWhite: 34.9 diff --git a/themes/my-light-theme-light-green-papermint-updated.yaml b/themes/my-light-theme-light-green-papermint-updated.yaml new file mode 100644 index 00000000..f28e553f --- /dev/null +++ b/themes/my-light-theme-light-green-papermint-updated.yaml @@ -0,0 +1,49 @@ +name: "my light theme light green - Papermint -updated" +source: + marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" + version: "4.3.1" + installs: 36 + author: "XDxppyx" + repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" + url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" +colors: + bg: "#F2F2F2" + fg: "#5761B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EC7D7D" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 69.9 + black: 98.3 + red: 66.2 + green: 40.3 + yellow: 9.3 + blue: 65.5 + magenta: 63.2 + cyan: 45.5 + white: 44.1 + brightBlack: 71 + brightRed: 54.4 + brightGreen: 30.1 + brightYellow: 0 + brightBlue: 53 + brightMagenta: 47.7 + brightCyan: 37.9 + brightWhite: 0 diff --git a/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml b/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml new file mode 100644 index 00000000..b68768ee --- /dev/null +++ b/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml @@ -0,0 +1,49 @@ +name: "my light theme - mint sand updated - Fork Bluesand" +source: + marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" + version: "4.3.1" + installs: 36 + author: "XDxppyx" + repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" + url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" +colors: + bg: "#EEE6D6" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EC7D7D" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#C2C2C2" +meta: + mode: "light" + accent: "pink" + hue: 85 + contrast: + fg: 91.7 + black: 91.7 + red: 59.6 + green: 33.6 + yellow: 0 + blue: 58.9 + magenta: 56.5 + cyan: 38.9 + white: 37.5 + brightBlack: 64.4 + brightRed: 47.7 + brightGreen: 23.5 + brightYellow: 0 + brightBlue: 46.3 + brightMagenta: 41 + brightCyan: 31.3 + brightWhite: 18.5 diff --git a/themes/my-light-theme-mint-sand-updated.yaml b/themes/my-light-theme-mint-sand-updated.yaml new file mode 100644 index 00000000..cb2c1cc6 --- /dev/null +++ b/themes/my-light-theme-mint-sand-updated.yaml @@ -0,0 +1,49 @@ +name: "my light theme - mint sand updated" +source: + marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" + version: "4.3.1" + installs: 36 + author: "XDxppyx" + repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" + url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" +colors: + bg: "#EEE6D6" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EC7D7D" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#A9A1A1" +meta: + mode: "light" + accent: "pink" + hue: 85 + contrast: + fg: 91.7 + black: 91.7 + red: 59.6 + green: 33.6 + yellow: 0 + blue: 58.9 + magenta: 56.5 + cyan: 38.9 + white: 37.5 + brightBlack: 64.4 + brightRed: 47.7 + brightGreen: 23.5 + brightYellow: 0 + brightBlue: 46.3 + brightMagenta: 41 + brightCyan: 31.3 + brightWhite: 35.2 diff --git a/themes/my-monokai.yaml b/themes/my-monokai.yaml new file mode 100644 index 00000000..ff212427 --- /dev/null +++ b/themes/my-monokai.yaml @@ -0,0 +1,49 @@ +name: "My Monokai" +source: + marketplace_id: "vicobill.my-monokai" + version: "1.0.0" + installs: 747 + author: "vicobill" + repo: "https://github.com/vicobll/my-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=vicobill.my-monokai" +colors: + bg: "#262720" + fg: "#979EAB" + black: "#000000" + red: "#D81E00" + green: "#5EA702" + yellow: "#CFAE00" + blue: "#427AB3" + magenta: "#89658E" + cyan: "#00A7AA" + white: "#DBDED8" + brightBlack: "#686A66" + brightRed: "#F54235" + brightGreen: "#99E343" + brightYellow: "#FDEB61" + brightBlue: "#84B0D8" + brightMagenta: "#BC94B7" + brightCyan: "#37E6E8" + brightWhite: "#F1F1F0" +meta: + mode: "dark" + accent: "orange" + hue: 114 + contrast: + fg: 46.4 + black: 0 + red: 25.5 + green: 42.3 + yellow: 56.8 + blue: 27.5 + magenta: 24.9 + cyan: 43.2 + white: 82.8 + brightBlack: 21.3 + brightRed: 35.7 + brightGreen: 74.3 + brightYellow: 90.3 + brightBlue: 53.9 + brightMagenta: 47.9 + brightCyan: 75.6 + brightWhite: 95.5 diff --git a/themes/my-oceanic.yaml b/themes/my-oceanic.yaml new file mode 100644 index 00000000..297a72ad --- /dev/null +++ b/themes/my-oceanic.yaml @@ -0,0 +1,49 @@ +name: "My Oceanic" +source: + marketplace_id: "ZAndy.my-oceanic-theme" + version: "1.0.0" + installs: 10 + author: "ZAndy" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ZAndy.my-oceanic-theme" +colors: + bg: "#263238" + fg: "#C3CEE3" + black: "#263238" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#C3CEE3" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFD590" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 230 + contrast: + fg: 71.3 + black: 0 + red: 42.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 71.3 + brightBlack: 19.7 + brightRed: 39.4 + brightGreen: 80 + brightYellow: 79.7 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/my-theme.yaml b/themes/my-theme.yaml new file mode 100644 index 00000000..2dc43133 --- /dev/null +++ b/themes/my-theme.yaml @@ -0,0 +1,49 @@ +name: "my-theme" +source: + marketplace_id: "yanchenliu.lyc-theme" + version: "0.0.2" + installs: 44 + author: "yanchenliu" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=yanchenliu.lyc-theme" +colors: + bg: "#223443" + fg: "#F8CA4F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A9A9A9" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 244 + contrast: + fg: 72.3 + black: 0 + red: 22 + green: 48.3 + yellow: 80.9 + blue: 22.7 + magenta: 25.1 + cyan: 42.9 + white: 50 + brightBlack: 17.4 + brightRed: 33.9 + brightGreen: 58.9 + brightYellow: 91 + brightBlue: 35.3 + brightMagenta: 40.7 + brightCyan: 50.7 + brightWhite: 102.2 diff --git a/themes/my-zu.yaml b/themes/my-zu.yaml new file mode 100644 index 00000000..ea4a0628 --- /dev/null +++ b/themes/my-zu.yaml @@ -0,0 +1,49 @@ +name: "Myūzu" +source: + marketplace_id: "myuzu-eop.myuzu" + version: "0.0.1" + installs: 52 + author: "Myuzu" + repo: "https://github.com/EduardBOP/Myuzu-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=myuzu-eop.myuzu" +colors: + bg: "#2A2626" + fg: "#E0D4C0" + black: "#000000" + red: "#EE616E" + green: "#61D9AD" + yellow: "#EEEE79" + blue: "#4E71D9" + magenta: "#DB8DFF" + cyan: "#87C2F0" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#E68E96" + brightGreen: "#C8E0A3" + brightYellow: "#FFFFBA" + brightBlue: "#6A8AD7" + brightMagenta: "#E7C9FF" + brightCyan: "#A6C7E0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 78 + black: 0 + red: 40.1 + green: 68 + yellow: 89.8 + blue: 27.6 + magenta: 54.5 + cyan: 62.9 + white: 87.8 + brightBlack: 19.8 + brightRed: 51.3 + brightGreen: 79.3 + brightYellow: 101.9 + brightBlue: 37.4 + brightMagenta: 77.4 + brightCyan: 66.9 + brightWhite: 87.8 diff --git a/themes/mycode-dark-blue.yaml b/themes/mycode-dark-blue.yaml new file mode 100644 index 00000000..55872d6e --- /dev/null +++ b/themes/mycode-dark-blue.yaml @@ -0,0 +1,49 @@ +name: "MyCode Dark Blue" +source: + marketplace_id: "KorotkovVitaliy.mycode-dark" + version: "0.4.0" + installs: 157 + author: "KorotkovVitaliy" + repo: "https://github.com/korotkovv/mycode-dark" + url: "https://marketplace.visualstudio.com/items?itemName=KorotkovVitaliy.mycode-dark" +colors: + bg: "#171717" + fg: "#D4D4D4" + black: "#565454" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.5 + black: 14.9 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/mygo.yaml b/themes/mygo.yaml new file mode 100644 index 00000000..747eb710 --- /dev/null +++ b/themes/mygo.yaml @@ -0,0 +1,49 @@ +name: "MyGO!!!!!" +source: + marketplace_id: "TehMatcha.roselia-theme" + version: "4.4.0" + installs: 1278 + author: "TehMatcha" + repo: "https://github.com/MatchaTi/cool-roselia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" +colors: + bg: "#1E293B" + fg: "#93C5FD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 65.6 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.2 + cyan: 45 + white: 87.4 + brightBlack: 19.4 + brightRed: 36 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/mynthra.yaml b/themes/mynthra.yaml new file mode 100644 index 00000000..93ee8691 --- /dev/null +++ b/themes/mynthra.yaml @@ -0,0 +1,49 @@ +name: "Mynthra" +source: + marketplace_id: "Mynthra.mynthra-theme" + version: "0.3.0" + installs: 42 + author: "Mynthra" + repo: "https://github.com/hamzakargin/Mynthra" + url: "https://marketplace.visualstudio.com/items?itemName=Mynthra.mynthra-theme" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#CBA6F7" + cyan: "#89DCEB" + white: "#CDD6F4" + brightBlack: "#585B70" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#CBA6F7" + brightCyan: "#89DCEB" + brightWhite: "#CDD6F4" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 80 + black: 9.3 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 60.8 + cyan: 75.6 + white: 80 + brightBlack: 16.9 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 88.4 + brightBlue: 59.1 + brightMagenta: 60.8 + brightCyan: 75.6 + brightWhite: 80 diff --git a/themes/myoptic-v2.yaml b/themes/myoptic-v2.yaml new file mode 100644 index 00000000..9036b831 --- /dev/null +++ b/themes/myoptic-v2.yaml @@ -0,0 +1,49 @@ +name: "Myoptic v2" +source: + marketplace_id: "doitalldev.myoptic-Theme-color-theme" + version: "2.0.2" + installs: 658 + author: "doitalldev" + repo: "https://github.com/doitalldev/myoptic-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=doitalldev.myoptic-Theme-color-theme" +colors: + bg: "#FFFFFF" + fg: "#222222" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 102.9 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/myoptic.yaml b/themes/myoptic.yaml new file mode 100644 index 00000000..902b6120 --- /dev/null +++ b/themes/myoptic.yaml @@ -0,0 +1,49 @@ +name: "Myoptic" +source: + marketplace_id: "refactorthis.myoptic" + version: "1.0.6" + installs: 213 + author: "refactor_this" + repo: "https://github.com/refactor-this/myoptic-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=refactorthis.myoptic" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#BE0000" + green: "#009B00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 79.8 + green: 63.6 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/myrteal.yaml b/themes/myrteal.yaml new file mode 100644 index 00000000..9994c201 --- /dev/null +++ b/themes/myrteal.yaml @@ -0,0 +1,49 @@ +name: "Myrteal" +source: + marketplace_id: "enesozturk.myrteal" + version: "0.9.0" + installs: 386 + author: "enes" + repo: "https://github.com/enesozturk/myrteal" + url: "https://marketplace.visualstudio.com/items?itemName=enesozturk.myrteal" +colors: + bg: "#171717" + fg: "#A1A1A1" + black: "#000000" + red: "#CD3131" + green: "#15A16C" + yellow: "#A8B723" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23B37A" + brightYellow: "#C7C72E" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 50.4 + black: 0 + red: 26.7 + green: 40.8 + yellow: 57.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 49.1 + brightYellow: 68.2 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/mystic-moonshadow.yaml b/themes/mystic-moonshadow.yaml new file mode 100644 index 00000000..2c71aa96 --- /dev/null +++ b/themes/mystic-moonshadow.yaml @@ -0,0 +1,49 @@ +name: "Mystic-MoonShadow" +source: + marketplace_id: "TechArtem.mystic-moonshadow" + version: "1.0.9" + installs: 715 + author: "TechArtem" + repo: "https://github.com/Rabbitarts/mystic-moonshadow-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TechArtem.mystic-moonshadow" +colors: + bg: "#1A2035" + fg: "#8795A3" + black: "#1E1E30" + red: "#D74E4E" + green: "#69BB7B" + yellow: "#E7BE67" + blue: "#6F9ED9" + magenta: "#C586C0" + cyan: "#56B6C2" + white: "#C7C7D8" + brightBlack: "#696980" + brightRed: "#E87474" + brightGreen: "#9EC49E" + brightYellow: "#F0C674" + brightBlue: "#81A2BE" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 271 + contrast: + fg: 42 + black: 0 + red: 31.9 + green: 53.9 + yellow: 68.4 + blue: 46.1 + magenta: 46 + cyan: 53.3 + white: 71.2 + brightBlack: 22.9 + brightRed: 44.3 + brightGreen: 63 + brightYellow: 73.3 + brightBlue: 47.6 + brightMagenta: 47.6 + brightCyan: 59.6 + brightWhite: 105.6 diff --git a/themes/mystic.yaml b/themes/mystic.yaml new file mode 100644 index 00000000..416638a6 --- /dev/null +++ b/themes/mystic.yaml @@ -0,0 +1,49 @@ +name: "Mystic" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" +colors: + bg: "#1A1A1A" + fg: "#C2C2C2" + black: "#000000" + red: "#6A595A" + green: "#9EC49F" + yellow: "#CEB188" + blue: "#9EC3C4" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#CEB188" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 68.4 + black: 0 + red: 18 + green: 64 + yellow: 61.2 + blue: 65 + magenta: 64 + cyan: 92.4 + white: 106.5 + brightBlack: 14.3 + brightRed: 46.8 + brightGreen: 65.9 + brightYellow: 61.2 + brightBlue: 38.4 + brightMagenta: 64 + brightCyan: 92.4 + brightWhite: 0 diff --git a/themes/mystico-c64-pepto-ntsc-sony.yaml b/themes/mystico-c64-pepto-ntsc-sony.yaml new file mode 100644 index 00000000..d4d95674 --- /dev/null +++ b/themes/mystico-c64-pepto-ntsc-sony.yaml @@ -0,0 +1,49 @@ +name: "Mystico - C64 Pepto NTSC Sony" +source: + marketplace_id: "Chibantichic.mystico-c64" + version: "0.16.0" + installs: 1456 + author: "Chibantichic" + repo: "https://github.com/chibanti/mystico-c64-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-c64" +colors: + bg: "#212E78" + fg: "#959FD0" + black: "#000000" + red: "#984034" + green: "#588D43" + yellow: "#B8C76F" + blue: "#5665B3" + magenta: "#794C9A" + cyan: "#7ABFC7" + white: "#E5E5E5" + brightBlack: "#6C6C6C" + brightRed: "#9A6759" + brightGreen: "#A0CB84" + brightYellow: "#DCEE83" + brightBlue: "#959FD0" + brightMagenta: "#8148A9" + brightCyan: "#A6E9F0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: 271 + contrast: + fg: 44.6 + black: 0 + red: 12.3 + green: 27.9 + yellow: 61.2 + blue: 18.1 + magenta: 13.6 + cyan: 54.8 + white: 84 + brightBlack: 18.6 + brightRed: 22.1 + brightGreen: 60.9 + brightYellow: 83.8 + brightBlue: 44.6 + brightMagenta: 14.7 + brightCyan: 79.4 + brightWhite: 84 diff --git a/themes/mystico-c64-pepto-pal.yaml b/themes/mystico-c64-pepto-pal.yaml new file mode 100644 index 00000000..4062956b --- /dev/null +++ b/themes/mystico-c64-pepto-pal.yaml @@ -0,0 +1,49 @@ +name: "Mystico - C64 Pepto PAL" +source: + marketplace_id: "Chibantichic.mystico-c64" + version: "0.16.0" + installs: 1456 + author: "Chibantichic" + repo: "https://github.com/chibanti/mystico-c64-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-c64" +colors: + bg: "#352879" + fg: "#8073BF" + black: "#000000" + red: "#68372B" + green: "#588D43" + yellow: "#B8C76F" + blue: "#6C5EB5" + magenta: "#6F3D86" + cyan: "#7ABFC7" + white: "#E5E5E5" + brightBlack: "#6C6C6C" + brightRed: "#964835" + brightGreen: "#9AD284" + brightYellow: "#DCEE83" + brightBlue: "#674FE4" + brightMagenta: "#8E4BAD" + brightCyan: "#A6E9F0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: 284 + contrast: + fg: 26.6 + black: 0 + red: 0 + green: 27.8 + yellow: 61.1 + blue: 18.1 + magenta: 8.3 + cyan: 54.7 + white: 84 + brightBlack: 18.6 + brightRed: 13.4 + brightGreen: 63.5 + brightYellow: 83.8 + brightBlue: 17.8 + brightMagenta: 17.2 + brightCyan: 79.4 + brightWhite: 84 diff --git a/themes/mystico-c64.yaml b/themes/mystico-c64.yaml new file mode 100644 index 00000000..9ca832f4 --- /dev/null +++ b/themes/mystico-c64.yaml @@ -0,0 +1,49 @@ +name: "Mystico - C64" +source: + marketplace_id: "Chibantichic.mystico-c64" + version: "0.16.0" + installs: 1456 + author: "Chibantichic" + repo: "https://github.com/chibanti/mystico-c64-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-c64" +colors: + bg: "#3E31A2" + fg: "#9085E0" + black: "#000000" + red: "#894036" + green: "#0DBC79" + yellow: "#D0DC71" + blue: "#2472C8" + magenta: "#8A46AE" + cyan: "#7ABFC7" + white: "#E5E5E5" + brightBlack: "#808080" + brightRed: "#A94D41" + brightGreen: "#23D18B" + brightYellow: "#E8F0A6" + brightBlue: "#3B8EEA" + brightMagenta: "#A655D1" + brightCyan: "#A6E9F0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: 280 + contrast: + fg: 31.2 + black: 12.1 + red: 0 + green: 42.2 + yellow: 68.7 + blue: 16.6 + magenta: 11.1 + cyan: 50 + white: 79.2 + brightBlack: 23 + brightRed: 13.1 + brightGreen: 52.8 + brightYellow: 82.4 + brightBlue: 29.2 + brightMagenta: 20.4 + brightCyan: 74.6 + brightWhite: 79.2 diff --git a/themes/mystico-deep-purple.yaml b/themes/mystico-deep-purple.yaml new file mode 100644 index 00000000..bad375ec --- /dev/null +++ b/themes/mystico-deep-purple.yaml @@ -0,0 +1,49 @@ +name: "Mystico - Deep purple" +source: + marketplace_id: "Chibantichic.mystico-deep-purple" + version: "0.28.0" + installs: 621 + author: "Chibantichic" + repo: "https://github.com/chibanti/mystico-deep-purple-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-deep-purple" +colors: + bg: "#0B0324" + fg: "#93BCF0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 288 + contrast: + fg: 64.4 + black: 0 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/mystico-forest-ocean.yaml b/themes/mystico-forest-ocean.yaml new file mode 100644 index 00000000..05276ba3 --- /dev/null +++ b/themes/mystico-forest-ocean.yaml @@ -0,0 +1,49 @@ +name: "Mystico - Forest & Ocean" +source: + marketplace_id: "Chibantichic.mystico" + version: "0.4.0" + installs: 443 + author: "Chibantichic" + repo: "https://github.com/chibanti/mystico-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico" +colors: + bg: "#011324" + fg: "#D4D4D4" + black: "#4D4444" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#8E8C8C" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 246 + contrast: + fg: 79.8 + black: 9.9 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30.1 + cyan: 47.9 + white: 90.3 + brightBlack: 40.1 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/mystico-mint.yaml b/themes/mystico-mint.yaml new file mode 100644 index 00000000..aba04656 --- /dev/null +++ b/themes/mystico-mint.yaml @@ -0,0 +1,49 @@ +name: "Mystico - Mint" +source: + marketplace_id: "Chibantichic.mystico-mint" + version: "0.8.0" + installs: 533 + author: "Chibantichic" + repo: "https://github.com/chibanti/mystico-mint-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-mint" +colors: + bg: "#060808" + fg: "#F0F2F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0099C2" + magenta: "#BC3FBC" + cyan: "#90DAE7" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#31CAF2" + brightMagenta: "#D670D6" + brightCyan: "#00DDEC" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 99.1 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 41.8 + magenta: 30.7 + cyan: 77 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 65.8 + brightMagenta: 46.3 + brightCyan: 74 + brightWhite: 91 diff --git a/themes/mystico-plum.yaml b/themes/mystico-plum.yaml new file mode 100644 index 00000000..afbf87e9 --- /dev/null +++ b/themes/mystico-plum.yaml @@ -0,0 +1,49 @@ +name: "Mystico - Plum" +source: + marketplace_id: "Chibantichic.mystico-plum" + version: "0.36.0" + installs: 225 + author: "Chibantichic" + repo: "https://github.com/chibanti/mystico-plum-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-plum" +colors: + bg: "#0A0408" + fg: "#F8EDF3" + black: "#000000" + red: "#A74A4A" + green: "#0DBC79" + yellow: "#BABA59" + blue: "#3CC7F5" + magenta: "#B94687" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#D35858" + brightGreen: "#23D18B" + brightYellow: "#E4E46D" + brightBlue: "#3B8EEA" + brightMagenta: "#D590B7" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "teal" + hue: 338 + contrast: + fg: 97.9 + black: 0 + red: 24 + green: 54 + yellow: 62.4 + blue: 64.9 + magenta: 28.5 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 35.4 + brightGreen: 64.5 + brightYellow: 86.7 + brightBlue: 41 + brightMagenta: 53.5 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/mystico-purples.yaml b/themes/mystico-purples.yaml new file mode 100644 index 00000000..a2d45969 --- /dev/null +++ b/themes/mystico-purples.yaml @@ -0,0 +1,49 @@ +name: "Mystico - Purples" +source: + marketplace_id: "Chibantichic.mystico-purples" + version: "0.9.0" + installs: 213 + author: "Chibantichic" + repo: "https://github.com/chibanti/mystico-purples-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-purples" +colors: + bg: "#0D021D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 300 + contrast: + fg: 80.3 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/mytheme.yaml b/themes/mytheme.yaml new file mode 100644 index 00000000..938886e1 --- /dev/null +++ b/themes/mytheme.yaml @@ -0,0 +1,49 @@ +name: "myTheme" +source: + marketplace_id: "everyoneTheme.myTheme" + version: "3.0.0" + installs: 65 + author: "everyoneTheme" + repo: "https://github.com/bryantTheCoder/my-own-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=everyoneTheme.myTheme" +colors: + bg: "#1C1B26" + fg: "#FFA700" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 289 + contrast: + fg: 63.8 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.4 + brightRed: 38 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/myvscode.yaml b/themes/myvscode.yaml new file mode 100644 index 00000000..a0fc0ae5 --- /dev/null +++ b/themes/myvscode.yaml @@ -0,0 +1,49 @@ +name: "MyVsCode" +source: + marketplace_id: "Parth.mycolortheme" + version: "0.0.8" + installs: 2370 + author: "Parth" + repo: "https://github.com/parthpanchal123/MyCustomVsTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Parth.mycolortheme" +colors: + bg: "#1B1E2A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 78.6 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.7 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/n-darktheme.yaml b/themes/n-darktheme.yaml new file mode 100644 index 00000000..07f66c1a --- /dev/null +++ b/themes/n-darktheme.yaml @@ -0,0 +1,49 @@ +name: "N-DarkTheme" +source: + marketplace_id: "Akako.n-darktheme" + version: "0.3.3" + installs: 2113 + author: "Akakø" + repo: "https://github.com/Akako0/N-darkTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Akako.n-darktheme" +colors: + bg: "#171722" + fg: "#EEF0FF" + black: "#000000" + red: "#DF001E" + green: "#46C079" + yellow: "#F1F88E" + blue: "#212188" + magenta: "#E65BE6" + cyan: "#00AEFF" + white: "#FFFFFF" + brightBlack: "#353535" + brightRed: "#DF001E" + brightGreen: "#1EFF00" + brightYellow: "#FFFB00" + brightBlue: "#3765FD" + brightMagenta: "#E100FF" + brightCyan: "#00CCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 97.4 + black: 0 + red: 28.6 + green: 55.7 + yellow: 97.5 + blue: 0 + magenta: 44.8 + cyan: 53.1 + white: 106.8 + brightBlack: 0 + brightRed: 28.6 + brightGreen: 85.5 + brightYellow: 99.6 + brightBlue: 28.5 + brightMagenta: 38.6 + brightCyan: 66.1 + brightWhite: 106.8 diff --git a/themes/n0m4d.yaml b/themes/n0m4d.yaml new file mode 100644 index 00000000..4a416894 --- /dev/null +++ b/themes/n0m4d.yaml @@ -0,0 +1,49 @@ +name: "n0m4D" +source: + marketplace_id: "iamnahid.n0m4D" + version: "1.1.1" + installs: 68 + author: "iamnahid" + repo: "https://github.com/iamnahid/VS-themes" + url: "https://marketplace.visualstudio.com/items?itemName=iamnahid.n0m4D" +colors: + bg: "#1C1B22" + fg: "#E6E6E6" + black: "#000000" + red: "#FF3636" + green: "#30BE50" + yellow: "#E5E510" + blue: "#1D2CFF" + magenta: "#BC3FBC" + cyan: "#16BAE2" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF3535" + brightGreen: "#40EA66" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#36C0C0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: 292 + contrast: + fg: 90.1 + black: 0 + red: 38.4 + green: 53 + yellow: 85.1 + blue: 16.9 + magenta: 29.2 + cyan: 55.9 + white: 89.5 + brightBlack: 21.5 + brightRed: 38.3 + brightGreen: 75.2 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 57.3 + brightWhite: 89.5 diff --git a/themes/n7-lilac.yaml b/themes/n7-lilac.yaml new file mode 100644 index 00000000..fc639fc3 --- /dev/null +++ b/themes/n7-lilac.yaml @@ -0,0 +1,49 @@ +name: "N7 Lilac" +source: + marketplace_id: "N7n.n7-vscode-themes" + version: "1.1.0" + installs: 1158 + author: "N7n" + repo: "https://github.com/NSHoffman/N7-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" +colors: + bg: "#101316" + fg: "#AFB7BF" + black: "#1B2025" + red: "#BA0E0E" + green: "#DFB8FF" + yellow: "#7A8289" + blue: "#E6EAEF" + magenta: "#DFB8FF" + cyan: "#7A8289" + white: "#BDC4CA" + brightBlack: "#3B4651" + brightRed: "#F03E3E" + brightGreen: "#F39F9F" + brightYellow: "#B0B5B9" + brightBlue: "#FFFFFF" + brightMagenta: "#F39F9F" + brightCyan: "#B0B5B9" + brightWhite: "#E8EAEC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 62.2 + black: 0 + red: 20.7 + green: 72.2 + yellow: 34.6 + blue: 93.3 + magenta: 72.2 + cyan: 34.6 + white: 69.7 + brightBlack: 9.5 + brightRed: 36.6 + brightGreen: 62.1 + brightYellow: 61.3 + brightBlue: 107.3 + brightMagenta: 62.1 + brightCyan: 61.3 + brightWhite: 93.4 diff --git a/themes/n7-maya.yaml b/themes/n7-maya.yaml new file mode 100644 index 00000000..4561c2b7 --- /dev/null +++ b/themes/n7-maya.yaml @@ -0,0 +1,49 @@ +name: "N7 Maya" +source: + marketplace_id: "N7n.n7-vscode-themes" + version: "1.1.0" + installs: 1158 + author: "N7n" + repo: "https://github.com/NSHoffman/N7-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" +colors: + bg: "#101316" + fg: "#AFB7BF" + black: "#1B2025" + red: "#BA0E0E" + green: "#73C2FB" + yellow: "#7A8289" + blue: "#E6EAEF" + magenta: "#73C2FB" + cyan: "#7A8289" + white: "#BDC4CA" + brightBlack: "#3B4651" + brightRed: "#F03E3E" + brightGreen: "#F39F9F" + brightYellow: "#B0B5B9" + brightBlue: "#FFFFFF" + brightMagenta: "#F39F9F" + brightCyan: "#B0B5B9" + brightWhite: "#E8EAEC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 62.2 + black: 0 + red: 20.7 + green: 64.8 + yellow: 34.6 + blue: 93.3 + magenta: 64.8 + cyan: 34.6 + white: 69.7 + brightBlack: 9.5 + brightRed: 36.6 + brightGreen: 62.1 + brightYellow: 61.3 + brightBlue: 107.3 + brightMagenta: 62.1 + brightCyan: 61.3 + brightWhite: 93.4 diff --git a/themes/n7-night-vision.yaml b/themes/n7-night-vision.yaml new file mode 100644 index 00000000..94c6f107 --- /dev/null +++ b/themes/n7-night-vision.yaml @@ -0,0 +1,49 @@ +name: "N7 Night Vision" +source: + marketplace_id: "N7n.n7-vscode-themes" + version: "1.1.0" + installs: 1158 + author: "N7n" + repo: "https://github.com/NSHoffman/N7-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" +colors: + bg: "#0D0F12" + fg: "#AFB7BF" + black: "#1B2025" + red: "#BA0E0E" + green: "#1DE9B6" + yellow: "#7A8289" + blue: "#E6EAEF" + magenta: "#1DE9B6" + cyan: "#7A8289" + white: "#BDC4CA" + brightBlack: "#3B4651" + brightRed: "#F03E3E" + brightGreen: "#F39F9F" + brightYellow: "#B0B5B9" + brightBlue: "#FFFFFF" + brightMagenta: "#F39F9F" + brightCyan: "#B0B5B9" + brightWhite: "#E8EAEC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 62.5 + black: 0 + red: 20.9 + green: 77.4 + yellow: 34.8 + blue: 93.5 + magenta: 77.4 + cyan: 34.8 + white: 70 + brightBlack: 9.7 + brightRed: 36.9 + brightGreen: 62.3 + brightYellow: 61.5 + brightBlue: 107.5 + brightMagenta: 62.3 + brightCyan: 61.5 + brightWhite: 93.7 diff --git a/themes/n7-purple-green.yaml b/themes/n7-purple-green.yaml new file mode 100644 index 00000000..27358304 --- /dev/null +++ b/themes/n7-purple-green.yaml @@ -0,0 +1,49 @@ +name: "N7 Purple Green" +source: + marketplace_id: "N7n.n7-vscode-themes" + version: "1.1.0" + installs: 1158 + author: "N7n" + repo: "https://github.com/NSHoffman/N7-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" +colors: + bg: "#101316" + fg: "#AFB7BF" + black: "#1B2025" + red: "#BA0E0E" + green: "#9EFFA6" + yellow: "#7A8289" + blue: "#E6EAEF" + magenta: "#D4A3FF" + cyan: "#7A8289" + white: "#BDC4CA" + brightBlack: "#3B4651" + brightRed: "#F03E3E" + brightGreen: "#9EFFA6" + brightYellow: "#B0B5B9" + brightBlue: "#FFFFFF" + brightMagenta: "#F39F9F" + brightCyan: "#B0B5B9" + brightWhite: "#E8EAEC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 62.2 + black: 0 + red: 20.7 + green: 93.2 + yellow: 34.6 + blue: 93.3 + magenta: 63 + cyan: 34.6 + white: 69.7 + brightBlack: 9.5 + brightRed: 36.6 + brightGreen: 93.2 + brightYellow: 61.3 + brightBlue: 107.3 + brightMagenta: 62.1 + brightCyan: 61.3 + brightWhite: 93.4 diff --git a/themes/n7-red-flare.yaml b/themes/n7-red-flare.yaml new file mode 100644 index 00000000..097ec03e --- /dev/null +++ b/themes/n7-red-flare.yaml @@ -0,0 +1,49 @@ +name: "N7 Red Flare" +source: + marketplace_id: "N7n.n7-vscode-themes" + version: "1.1.0" + installs: 1158 + author: "N7n" + repo: "https://github.com/NSHoffman/N7-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" +colors: + bg: "#101316" + fg: "#AFB7BF" + black: "#1B2025" + red: "#BA0E0E" + green: "#FF5A5F" + yellow: "#7A8289" + blue: "#E6EAEF" + magenta: "#FF5A5F" + cyan: "#7A8289" + white: "#BDC4CA" + brightBlack: "#3B4651" + brightRed: "#F03E3E" + brightGreen: "#F39F9F" + brightYellow: "#B0B5B9" + brightBlue: "#FFFFFF" + brightMagenta: "#F39F9F" + brightCyan: "#B0B5B9" + brightWhite: "#E8EAEC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 62.2 + black: 0 + red: 20.7 + green: 44.8 + yellow: 34.6 + blue: 93.3 + magenta: 44.8 + cyan: 34.6 + white: 69.7 + brightBlack: 9.5 + brightRed: 36.6 + brightGreen: 62.1 + brightYellow: 61.3 + brightBlue: 107.3 + brightMagenta: 62.1 + brightCyan: 61.3 + brightWhite: 93.4 diff --git a/themes/n7-soft-pink.yaml b/themes/n7-soft-pink.yaml new file mode 100644 index 00000000..3f265d88 --- /dev/null +++ b/themes/n7-soft-pink.yaml @@ -0,0 +1,49 @@ +name: "N7 Soft Pink" +source: + marketplace_id: "N7n.n7-vscode-themes" + version: "1.1.0" + installs: 1158 + author: "N7n" + repo: "https://github.com/NSHoffman/N7-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" +colors: + bg: "#0D0F12" + fg: "#AFB7BF" + black: "#1B2025" + red: "#BA0E0E" + green: "#FF8494" + yellow: "#7A8289" + blue: "#E6EAEF" + magenta: "#FF8494" + cyan: "#7A8289" + white: "#BDC4CA" + brightBlack: "#3B4651" + brightRed: "#F03E3E" + brightGreen: "#F39F9F" + brightYellow: "#B0B5B9" + brightBlue: "#FFFFFF" + brightMagenta: "#F39F9F" + brightCyan: "#B0B5B9" + brightWhite: "#E8EAEC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 62.5 + black: 0 + red: 20.9 + green: 56 + yellow: 34.8 + blue: 93.5 + magenta: 56 + cyan: 34.8 + white: 70 + brightBlack: 9.7 + brightRed: 36.9 + brightGreen: 62.3 + brightYellow: 61.5 + brightBlue: 107.5 + brightMagenta: 62.3 + brightCyan: 61.5 + brightWhite: 93.7 diff --git a/themes/nada-theme.yaml b/themes/nada-theme.yaml new file mode 100644 index 00000000..58ee7486 --- /dev/null +++ b/themes/nada-theme.yaml @@ -0,0 +1,49 @@ +name: "Nada Theme" +source: + marketplace_id: "nada.nada" + version: "1.16.0" + installs: 5882 + author: "Adan Perez" + repo: "https://github.com/adanperez/nada-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nada.nada" +colors: + bg: "#212733" + fg: "#D9D7CE" + black: "#1B1B1C" + red: "#AD6371" + green: "#50CB54" + yellow: "#C78630" + blue: "#77A0BC" + magenta: "#908EB9" + cyan: "#1D9383" + white: "#C5C8C5" + brightBlack: "#676767" + brightRed: "#FF6D67" + brightGreen: "#5FF967" + brightYellow: "#E8C575" + brightBlue: "#6871FF" + brightMagenta: "#FF76FF" + brightCyan: "#5FFDFF" + brightWhite: "#FEFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 78.9 + black: 0 + red: 28.3 + green: 58.4 + yellow: 41.4 + blue: 45 + magenta: 40.4 + cyan: 33.5 + white: 69.5 + brightBlack: 20.2 + brightRed: 46.2 + brightGreen: 82.3 + brightYellow: 70.7 + brightBlue: 32.4 + brightMagenta: 55 + brightCyan: 89.4 + brightWhite: 104.5 diff --git a/themes/nairobi-dark.yaml b/themes/nairobi-dark.yaml new file mode 100644 index 00000000..f91ccb03 --- /dev/null +++ b/themes/nairobi-dark.yaml @@ -0,0 +1,49 @@ +name: "Nairobi-dark" +source: + marketplace_id: "AmaniJ.nairobi-dark" + version: "0.0.1" + installs: 390 + author: "Amani. J" + repo: "https://github.com/amani-joseph/Nairobi-dark-VS-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=AmaniJ.nairobi-dark" +colors: + bg: "#030D22" + fg: "#4AC9B8" + black: "#3A1B75" + red: "#EE1682" + green: "#06AD00" + yellow: "#FFD400" + blue: "#3787D6" + magenta: "#EA00D9" + cyan: "#0AB2FA" + white: "#F2F8FF" + brightBlack: "#5C6D75" + brightRed: "#FF2E97" + brightGreen: "#3DD69C" + brightYellow: "#FFD400" + brightBlue: "#5994CE" + brightMagenta: "#EA00D9" + brightCyan: "#4BC5FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 62.8 + black: 0 + red: 35.1 + green: 45.5 + yellow: 82.6 + blue: 36.6 + magenta: 38.3 + cyan: 55.1 + white: 102.4 + brightBlack: 24.5 + brightRed: 41.2 + brightGreen: 67.5 + brightYellow: 82.6 + brightBlue: 42.2 + brightMagenta: 38.3 + brightCyan: 64.4 + brightWhite: 107.5 diff --git a/themes/nameless.yaml b/themes/nameless.yaml new file mode 100644 index 00000000..68ba4bc3 --- /dev/null +++ b/themes/nameless.yaml @@ -0,0 +1,49 @@ +name: "Nameless" +source: + marketplace_id: "tsrenato.nameless" + version: "1.0.3" + installs: 60 + author: "tsrenato" + repo: "https://github.com/tsrenato/nameless" + url: "https://marketplace.visualstudio.com/items?itemName=tsrenato.nameless" +colors: + bg: "#111111" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/nanowise.yaml b/themes/nanowise.yaml new file mode 100644 index 00000000..9915ef2f --- /dev/null +++ b/themes/nanowise.yaml @@ -0,0 +1,49 @@ +name: "Nanowise" +source: + marketplace_id: "nanowise.nanowise" + version: "1.2.1" + installs: 2163 + author: "nanowise" + repo: "https://github.com/istevkovski/nanowise-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=nanowise.nanowise" +colors: + bg: "#FAFBFC" + fg: "#565869" + black: "#565869" + red: "#FF5C57" + green: "#2DAE58" + yellow: "#EBB100" + blue: "#09A1ED" + magenta: "#FF3E78" + cyan: "#04D1BC" + white: "#FAFBF9" + brightBlack: "#75798F" + brightRed: "#FFAEAC" + brightGreen: "#35CF68" + brightYellow: "#F5B900" + brightBlue: "#14B1FF" + brightMagenta: "#FF94D2" + brightCyan: "#04D1BC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 81.8 + black: 81.8 + red: 53.6 + green: 52 + yellow: 34.5 + blue: 51.7 + magenta: 57.3 + cyan: 33.9 + white: 0 + brightBlack: 67.3 + brightRed: 29.7 + brightGreen: 36.8 + brightYellow: 29.9 + brightBlue: 44.1 + brightMagenta: 36.3 + brightCyan: 33.9 + brightWhite: 0 diff --git a/themes/naps-dusk-gold.yaml b/themes/naps-dusk-gold.yaml new file mode 100644 index 00000000..903b9016 --- /dev/null +++ b/themes/naps-dusk-gold.yaml @@ -0,0 +1,49 @@ +name: "Naps Dusk Gold" +source: + marketplace_id: "kimmojae.naps-theme" + version: "0.1.0" + installs: 30 + author: "kimmojae" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kimmojae.naps-theme" +colors: + bg: "#1E2629" + fg: "#C5C8C6" + black: "#242E33" + red: "#A54242" + green: "#8C9440" + yellow: "#DE935F" + blue: "#81A2BE" + magenta: "#85678F" + cyan: "#5E8D87" + white: "#6C7A80" + brightBlack: "#7A7A7A" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#F0C674" + brightBlue: "#99DBFF" + brightMagenta: "#B894C0" + brightCyan: "#8ABEB7" + brightWhite: "#C5C8C6" +meta: + mode: "dark" + accent: "orange" + hue: 223 + contrast: + fg: 70 + black: 0 + red: 19.3 + green: 38.9 + yellow: 50.5 + blue: 47 + magenta: 25.3 + cyan: 34 + white: 28 + brightBlack: 29.1 + brightRed: 34.6 + brightGreen: 60.5 + brightYellow: 72.7 + brightBlue: 76.7 + brightMagenta: 48.1 + brightCyan: 59 + brightWhite: 70 diff --git a/themes/narasimha-fearless-dark-theme.yaml b/themes/narasimha-fearless-dark-theme.yaml new file mode 100644 index 00000000..4a946191 --- /dev/null +++ b/themes/narasimha-fearless-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Narasimha - Fearless Dark Theme" +source: + marketplace_id: "BhootStudio.bhoot-theme" + version: "1.0.4" + installs: 78 + author: "Bhoot Studio" + repo: "https://github.com/DebkantaMondal/Bhoot-VS-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=BhootStudio.bhoot-theme" +colors: + bg: "#0A0A0A" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#8BE9FD" + magenta: "#FF79C6" + cyan: "#00FFFF" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 102.8 + black: 0 + red: 44.3 + green: 85.7 + yellow: 99.4 + blue: 84.8 + magenta: 55.4 + cyan: 92 + white: 102.8 + brightBlack: 28.9 + brightRed: 49.7 + brightGreen: 89.9 + brightYellow: 104.4 + brightBlue: 67 + brightMagenta: 63.5 + brightCyan: 97.6 + brightWhite: 107.7 diff --git a/themes/narato.yaml b/themes/narato.yaml new file mode 100644 index 00000000..5c9c38db --- /dev/null +++ b/themes/narato.yaml @@ -0,0 +1,49 @@ +name: "Narato" +source: + marketplace_id: "MuhammadHanif.narato" + version: "1.4.0" + installs: 439 + author: "Muhammad Hanif" + repo: "https://github.com/mhaniflab/narato" + url: "https://marketplace.visualstudio.com/items?itemName=MuhammadHanif.narato" +colors: + bg: "#F5EEE6" + fg: "#776B5D" + black: "#F5EEE6" + red: "#E82424" + green: "#76946A" + yellow: "#FF9E3B" + blue: "#EEC759" + magenta: "#AC7D88" + cyan: "#776B5D" + white: "#776B5D" + brightBlack: "#F4DFC8" + brightRed: "#FF5D62" + brightGreen: "#98BB6C" + brightYellow: "#65647C" + brightBlue: "#7FB4CA" + brightMagenta: "#D27E99" + brightCyan: "#A3D4D5" + brightWhite: "#776B5D" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 66.2 + black: 0 + red: 59.3 + green: 51.7 + yellow: 30.2 + blue: 18.2 + magenta: 52.7 + cyan: 66.2 + white: 66.2 + brightBlack: 0 + brightRed: 46.2 + brightGreen: 33.2 + brightYellow: 69.1 + brightBlue: 35 + brightMagenta: 45.9 + brightCyan: 18.3 + brightWhite: 66.2 diff --git a/themes/narunika.yaml b/themes/narunika.yaml new file mode 100644 index 00000000..02522dfe --- /dev/null +++ b/themes/narunika.yaml @@ -0,0 +1,49 @@ +name: "narunika" +source: + marketplace_id: "sandifa.narunika" + version: "4.2.4" + installs: 103 + author: "sandifa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sandifa.narunika" +colors: + bg: "#202231" + fg: "#DEE0EF" + black: "#363847" + red: "#D1918F" + green: "#D980FA" + yellow: "#FD73BB" + blue: "#A0B6E8" + magenta: "#FFA089" + cyan: "#D6B4B4" + white: "#DEE0EF" + brightBlack: "#6B6D7C" + brightRed: "#D1918F" + brightGreen: "#709BBD" + brightYellow: "#B3BBCA" + brightBlue: "#A0B6E8" + brightMagenta: "#AAC9D4" + brightCyan: "#D6B4B4" + brightWhite: "#DBDDEC" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 85.7 + black: 0 + red: 49.1 + green: 50.8 + yellow: 50.6 + blue: 60.3 + magenta: 62 + cyan: 63.7 + white: 85.7 + brightBlack: 23.8 + brightRed: 49.1 + brightGreen: 43.2 + brightYellow: 62.9 + brightBlue: 60.3 + brightMagenta: 68.3 + brightCyan: 63.7 + brightWhite: 83.9 diff --git a/themes/naruto-akatsuki.yaml b/themes/naruto-akatsuki.yaml new file mode 100644 index 00000000..f132ad3a --- /dev/null +++ b/themes/naruto-akatsuki.yaml @@ -0,0 +1,49 @@ +name: "Naruto Akatsuki" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#0A0A0A" + fg: "#E8E8E8" + black: "#1A1A1A" + red: "#DC143C" + green: "#888888" + yellow: "#FF6B6B" + blue: "#B22222" + magenta: "#8B0000" + cyan: "#666666" + white: "#E8E8E8" + brightBlack: "#444444" + brightRed: "#FF4444" + brightGreen: "#AAAAAA" + brightYellow: "#FF8888" + brightBlue: "#FF6666" + brightMagenta: "#DC143C" + brightCyan: "#999999" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 92.8 + black: 0 + red: 29.3 + green: 38.5 + yellow: 49 + blue: 20.4 + magenta: 11.4 + cyan: 22.9 + white: 92.8 + brightBlack: 9.7 + brightRed: 41.5 + brightGreen: 56.1 + brightYellow: 57 + brightBlue: 47.8 + brightMagenta: 29.3 + brightCyan: 47 + brightWhite: 107.7 diff --git a/themes/naruto-hinata-hyuga-byakugan-vision.yaml b/themes/naruto-hinata-hyuga-byakugan-vision.yaml new file mode 100644 index 00000000..d93e580e --- /dev/null +++ b/themes/naruto-hinata-hyuga-byakugan-vision.yaml @@ -0,0 +1,49 @@ +name: "Naruto Hinata Hyuga - Byakugan Vision" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#2A1F35" + fg: "#F5E6FA" + black: "#1C1C1C" + red: "#FFB6C1" + green: "#D8BFD8" + yellow: "#FFF5EE" + blue: "#00BFFF" + magenta: "#DDA0DD" + cyan: "#87CEEB" + white: "#F8F8FF" + brightBlack: "#191970" + brightRed: "#FFC0CB" + brightGreen: "#E6E6FA" + brightYellow: "#FFFAF0" + brightBlue: "#87CEEB" + brightMagenta: "#E6E6FA" + brightCyan: "#00BFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: 307 + contrast: + fg: 92 + black: 0 + red: 71.4 + green: 69.7 + yellow: 99.7 + blue: 58.7 + magenta: 59.3 + cyan: 68.4 + white: 100.9 + brightBlack: 0 + brightRed: 75.6 + brightGreen: 89.9 + brightYellow: 102.1 + brightBlue: 68.4 + brightMagenta: 89.9 + brightCyan: 58.7 + brightWhite: 105.2 diff --git a/themes/naruto-hokage-dawn.yaml b/themes/naruto-hokage-dawn.yaml new file mode 100644 index 00000000..ee7d3843 --- /dev/null +++ b/themes/naruto-hokage-dawn.yaml @@ -0,0 +1,49 @@ +name: "Naruto Hokage Dawn" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#1A1A1A" + fg: "#FFFAF0" + black: "#1A1A1A" + red: "#E74C3C" + green: "#27AE60" + yellow: "#F39C12" + blue: "#5DADE2" + magenta: "#8E44AD" + cyan: "#17A2B8" + white: "#E8E8E8" + brightBlack: "#808080" + brightRed: "#E67E22" + brightGreen: "#4CAF50" + brightYellow: "#FFD700" + brightBlue: "#00A8E8" + brightMagenta: "#9C27B0" + brightCyan: "#00CED1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 103.5 + black: 0 + red: 35.8 + green: 46 + yellow: 58.1 + blue: 52.5 + magenta: 21.7 + cyan: 43.7 + white: 91.6 + brightBlack: 33.4 + brightRed: 46.4 + brightGreen: 47.2 + brightYellow: 82.9 + brightBlue: 48.8 + brightMagenta: 20.4 + brightCyan: 64.2 + brightWhite: 106.5 diff --git a/themes/naruto-hokage-orange.yaml b/themes/naruto-hokage-orange.yaml new file mode 100644 index 00000000..6da258a5 --- /dev/null +++ b/themes/naruto-hokage-orange.yaml @@ -0,0 +1,49 @@ +name: "Naruto (Hokage Orange)" +source: + marketplace_id: "LunaCode.anime-theme" + version: "0.0.3" + installs: 373 + author: "LunaCode" + repo: "https://github.com/BuildXO/anime-theme-pack" + url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" +colors: + bg: "#1A1612" + fg: "#F5E6D3" + black: "#3A3428" + red: "#DC143C" + green: "#32CD32" + yellow: "#FFD700" + blue: "#4169E1" + magenta: "#9370DB" + cyan: "#00CED1" + white: "#DDD5C7" + brightBlack: "#6B5F4F" + brightRed: "#FF6B6B" + brightGreen: "#7FFF00" + brightYellow: "#FFEC8B" + brightBlue: "#6495ED" + brightMagenta: "#BA55D3" + brightCyan: "#00FFFF" + brightWhite: "#FFF8DC" +meta: + mode: "dark" + accent: "green" + hue: 67 + contrast: + fg: 92 + black: 0 + red: 28.5 + green: 60.4 + yellow: 83.3 + blue: 27.5 + magenta: 35.7 + cyan: 64.6 + white: 80.6 + brightBlack: 19.8 + brightRed: 48.1 + brightGreen: 88.7 + brightYellow: 94 + brightBlue: 44.7 + brightMagenta: 34.5 + brightCyan: 91.2 + brightWhite: 102 diff --git a/themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml b/themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml new file mode 100644 index 00000000..e981c9aa --- /dev/null +++ b/themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml @@ -0,0 +1,49 @@ +name: "Naruto Itachi Uchiha - Tsukuyomi Dimension" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#0A0505" + fg: "#E8D8D8" + black: "#0A0A0A" + red: "#DC143C" + green: "#8B0000" + yellow: "#B22222" + blue: "#4B0082" + magenta: "#8B008B" + cyan: "#6A0DAD" + white: "#D8D8D8" + brightBlack: "#3A2A2A" + brightRed: "#FF6347" + brightGreen: "#DC143C" + brightYellow: "#FF8888" + brightBlue: "#9370DB" + brightMagenta: "#DDA0DD" + brightCyan: "#D8BFD8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 19 + contrast: + fg: 85.1 + black: 0 + red: 29.4 + green: 11.5 + yellow: 20.5 + blue: 0 + magenta: 15 + cyan: 12.7 + white: 82.9 + brightBlack: 0 + brightRed: 46.7 + brightGreen: 29.4 + brightYellow: 57.1 + brightBlue: 36.6 + brightMagenta: 61.9 + brightCyan: 72.4 + brightWhite: 107.8 diff --git a/themes/naruto-jiraiya-gallant-toad-sage.yaml b/themes/naruto-jiraiya-gallant-toad-sage.yaml new file mode 100644 index 00000000..96cea26d --- /dev/null +++ b/themes/naruto-jiraiya-gallant-toad-sage.yaml @@ -0,0 +1,49 @@ +name: "Naruto Jiraiya - Gallant Toad Sage" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#1A1408" + fg: "#F5F5DC" + black: "#1A1A1A" + red: "#DC143C" + green: "#228B22" + yellow: "#FFD700" + blue: "#4169E1" + magenta: "#FFB6C1" + cyan: "#32CD32" + white: "#F5F5DC" + brightBlack: "#4A4430" + brightRed: "#FF6347" + brightGreen: "#90EE90" + brightYellow: "#FFEA00" + brightBlue: "#5DADE2" + brightMagenta: "#FFD1DC" + brightCyan: "#7FFF00" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 84 + contrast: + fg: 99.4 + black: 0 + red: 28.7 + green: 30.9 + yellow: 83.4 + blue: 27.7 + magenta: 73.3 + cyan: 60.5 + white: 99.4 + brightBlack: 9.1 + brightRed: 46 + brightGreen: 82.7 + brightYellow: 91.9 + brightBlue: 53 + brightMagenta: 85 + brightCyan: 88.8 + brightWhite: 107.1 diff --git a/themes/naruto-kakashi-copy-ninja.yaml b/themes/naruto-kakashi-copy-ninja.yaml new file mode 100644 index 00000000..d2beb08a --- /dev/null +++ b/themes/naruto-kakashi-copy-ninja.yaml @@ -0,0 +1,49 @@ +name: "Naruto Kakashi Copy Ninja" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#0F1214" + fg: "#C0C0C0" + black: "#1A1A1A" + red: "#DC143C" + green: "#A8A8A8" + yellow: "#C0C0C0" + blue: "#00BFFF" + magenta: "#4B0082" + cyan: "#1E90FF" + white: "#E0E0E0" + brightBlack: "#4A4A4A" + brightRed: "#FF6666" + brightGreen: "#C8C8C8" + brightYellow: "#E8E8E8" + brightBlue: "#40C8FF" + brightMagenta: "#6B20B2" + brightCyan: "#50B0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 68.1 + black: 0 + red: 28.9 + green: 54.6 + yellow: 68.1 + blue: 60.9 + magenta: 0 + cyan: 42.2 + white: 87.3 + brightBlack: 11.4 + brightRed: 47.4 + brightGreen: 72.8 + brightYellow: 92.4 + brightBlue: 65.6 + brightMagenta: 13.6 + brightCyan: 55.8 + brightWhite: 107.3 diff --git a/themes/naruto-kurama-nine-tails.yaml b/themes/naruto-kurama-nine-tails.yaml new file mode 100644 index 00000000..7c6ef7e3 --- /dev/null +++ b/themes/naruto-kurama-nine-tails.yaml @@ -0,0 +1,49 @@ +name: "Naruto Kurama Nine-Tails" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#1A0A00" + fg: "#FFF5E6" + black: "#1A1A1A" + red: "#DC143C" + green: "#AA8860" + yellow: "#FFD700" + blue: "#FF8C00" + magenta: "#FF6666" + cyan: "#FFA500" + white: "#FFF5E6" + brightBlack: "#4A3020" + brightRed: "#FF4466" + brightGreen: "#CCAA88" + brightYellow: "#FFEA00" + brightBlue: "#FFAA44" + brightMagenta: "#FF8888" + brightCyan: "#FFCC66" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 62 + contrast: + fg: 101.6 + black: 0 + red: 29.1 + green: 41.2 + yellow: 83.9 + blue: 56.3 + magenta: 47.5 + cyan: 64.3 + white: 101.6 + brightBlack: 0 + brightRed: 41.8 + brightGreen: 59.1 + brightYellow: 92.3 + brightBlue: 66.4 + brightMagenta: 56.7 + brightCyan: 79.9 + brightWhite: 107.5 diff --git a/themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml b/themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml new file mode 100644 index 00000000..069eac04 --- /dev/null +++ b/themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml @@ -0,0 +1,49 @@ +name: "Naruto Kushina Uzumaki - Red Hot-Blooded Habanero" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#1A0505" + fg: "#FFF0E6" + black: "#1A0A0A" + red: "#DC143C" + green: "#FFD700" + yellow: "#FFA500" + blue: "#FF8C00" + magenta: "#FF6347" + cyan: "#FF4500" + white: "#FFF0E6" + brightBlack: "#5A3A3A" + brightRed: "#FF6347" + brightGreen: "#FFEA00" + brightYellow: "#FFD700" + brightBlue: "#FFA500" + brightMagenta: "#FF8C00" + brightCyan: "#FF4500" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 23 + contrast: + fg: 99.4 + black: 0 + red: 29.2 + green: 83.9 + yellow: 64.4 + blue: 56.4 + magenta: 46.5 + cyan: 41.1 + white: 99.4 + brightBlack: 9.1 + brightRed: 46.5 + brightGreen: 92.4 + brightYellow: 83.9 + brightBlue: 64.4 + brightMagenta: 56.4 + brightCyan: 41.1 + brightWhite: 107.6 diff --git a/themes/naruto-might-guy-gate-of-death-madara-battle.yaml b/themes/naruto-might-guy-gate-of-death-madara-battle.yaml new file mode 100644 index 00000000..6d18e2e7 --- /dev/null +++ b/themes/naruto-might-guy-gate-of-death-madara-battle.yaml @@ -0,0 +1,49 @@ +name: "Naruto Might Guy - GATE OF DEATH MADARA BATTLE" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#1A0000" + fg: "#FFE4E1" + black: "#1A0000" + red: "#FF0000" + green: "#DC143C" + yellow: "#FF6347" + blue: "#000080" + magenta: "#8B0000" + cyan: "#B22222" + white: "#FFE4E1" + brightBlack: "#6A3020" + brightRed: "#FF6347" + brightGreen: "#FF4500" + brightYellow: "#FFA500" + brightBlue: "#4169E1" + brightMagenta: "#DC143C" + brightCyan: "#FF6347" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 29 + contrast: + fg: 93.8 + black: 0 + red: 37.2 + green: 29.2 + yellow: 46.5 + blue: 0 + magenta: 11.3 + cyan: 20.2 + white: 93.8 + brightBlack: 8.9 + brightRed: 46.5 + brightGreen: 41.1 + brightYellow: 64.4 + brightBlue: 28.2 + brightMagenta: 29.2 + brightCyan: 46.5 + brightWhite: 107.6 diff --git a/themes/naruto-might-guy-gates-of-youth.yaml b/themes/naruto-might-guy-gates-of-youth.yaml new file mode 100644 index 00000000..22d2b963 --- /dev/null +++ b/themes/naruto-might-guy-gates-of-youth.yaml @@ -0,0 +1,49 @@ +name: "Naruto Might Guy Gates of Youth" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#0A1A0A" + fg: "#F0FFF0" + black: "#1A1A1A" + red: "#DC143C" + green: "#00FF00" + yellow: "#FFD700" + blue: "#1E90FF" + magenta: "#FF4500" + cyan: "#32CD32" + white: "#F0FFF0" + brightBlack: "#3A5A3A" + brightRed: "#FF6666" + brightGreen: "#7FFF00" + brightYellow: "#FFEA00" + brightBlue: "#40C8FF" + brightMagenta: "#FF6347" + brightCyan: "#90EE90" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 144 + contrast: + fg: 104.1 + black: 0 + red: 28.5 + green: 85.5 + yellow: 83.2 + blue: 41.7 + magenta: 40.4 + cyan: 60.4 + white: 104.1 + brightBlack: 14.2 + brightRed: 46.9 + brightGreen: 88.6 + brightYellow: 91.7 + brightBlue: 65.1 + brightMagenta: 45.8 + brightCyan: 82.5 + brightWhite: 106.9 diff --git a/themes/naruto-minato-namikaze-yellow-flash.yaml b/themes/naruto-minato-namikaze-yellow-flash.yaml new file mode 100644 index 00000000..559bc5c9 --- /dev/null +++ b/themes/naruto-minato-namikaze-yellow-flash.yaml @@ -0,0 +1,49 @@ +name: "Naruto Minato Namikaze - Yellow Flash" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#0A0F1A" + fg: "#F5F5DC" + black: "#1A1A1A" + red: "#DC143C" + green: "#32CD32" + yellow: "#FFD700" + blue: "#00BFFF" + magenta: "#FF8C00" + cyan: "#87CEEB" + white: "#F5F5DC" + brightBlack: "#4A5A6A" + brightRed: "#FF6666" + brightGreen: "#90EE90" + brightYellow: "#FFEA00" + brightBlue: "#40C8FF" + brightMagenta: "#FFA500" + brightCyan: "#B0E0E6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 265 + contrast: + fg: 99.8 + black: 0 + red: 29.1 + green: 61 + yellow: 83.9 + blue: 61 + magenta: 56.3 + cyan: 70.8 + white: 99.8 + brightBlack: 17 + brightRed: 47.5 + brightGreen: 83.1 + brightYellow: 92.3 + brightBlue: 65.7 + brightMagenta: 64.3 + brightCyan: 82.2 + brightWhite: 107.5 diff --git a/themes/naruto-pain-nagato-rinnegan-god.yaml b/themes/naruto-pain-nagato-rinnegan-god.yaml new file mode 100644 index 00000000..f1630bc9 --- /dev/null +++ b/themes/naruto-pain-nagato-rinnegan-god.yaml @@ -0,0 +1,49 @@ +name: "Naruto Pain/Nagato - Rinnegan God" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#0F0F14" + fg: "#E8E8F0" + black: "#1C1C1C" + red: "#DC143C" + green: "#708090" + yellow: "#C0C0C0" + blue: "#6A0DAD" + magenta: "#9370DB" + cyan: "#8B008B" + white: "#F5F5DC" + brightBlack: "#36454F" + brightRed: "#FF6347" + brightGreen: "#90A0B0" + brightYellow: "#E8E8E8" + brightBlue: "#9370DB" + brightMagenta: "#BA55D3" + brightCyan: "#DA70D6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 92.9 + black: 0 + red: 29.1 + green: 33.5 + yellow: 68.2 + blue: 12.3 + magenta: 36.3 + cyan: 14.7 + white: 99.8 + brightBlack: 9.1 + brightRed: 46.4 + brightGreen: 49.4 + brightYellow: 92.5 + brightBlue: 36.3 + brightMagenta: 35.1 + brightCyan: 46.7 + brightWhite: 107.5 diff --git a/themes/naruto-sage-mode.yaml b/themes/naruto-sage-mode.yaml new file mode 100644 index 00000000..74bce5e0 --- /dev/null +++ b/themes/naruto-sage-mode.yaml @@ -0,0 +1,49 @@ +name: "Naruto Sage Mode" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#1A2410" + fg: "#F5F5DC" + black: "#1A1A1A" + red: "#8B6914" + green: "#3D6B1F" + yellow: "#F4C430" + blue: "#708090" + magenta: "#8B7355" + cyan: "#DAA520" + white: "#F5F5DC" + brightBlack: "#4A5A40" + brightRed: "#A67C2A" + brightGreen: "#5D8B2F" + brightYellow: "#FFD740" + brightBlue: "#90A8B8" + brightMagenta: "#B89365" + brightCyan: "#FFB730" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 130 + contrast: + fg: 97.9 + black: 0 + red: 24.5 + green: 18.3 + yellow: 72.3 + blue: 31.6 + magenta: 28.3 + cyan: 56 + white: 97.9 + brightBlack: 13.9 + brightRed: 34.1 + brightGreen: 31.9 + brightYellow: 82.2 + brightBlue: 51 + brightMagenta: 45.1 + brightCyan: 69.1 + brightWhite: 105.6 diff --git a/themes/naruto-sakura-haruno-cherry-blossom-storm.yaml b/themes/naruto-sakura-haruno-cherry-blossom-storm.yaml new file mode 100644 index 00000000..d08c94cd --- /dev/null +++ b/themes/naruto-sakura-haruno-cherry-blossom-storm.yaml @@ -0,0 +1,49 @@ +name: "Naruto Sakura Haruno - Cherry Blossom Storm" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#1A0F14" + fg: "#F0FFFF" + black: "#1C1C1C" + red: "#DC143C" + green: "#98FB98" + yellow: "#FFB7C5" + blue: "#90EE90" + magenta: "#9370DB" + cyan: "#00FA9A" + white: "#F0FFFF" + brightBlack: "#708090" + brightRed: "#B22222" + brightGreen: "#90EE90" + brightYellow: "#FF69B4" + brightBlue: "#00FA9A" + brightMagenta: "#8B008B" + brightCyan: "#98FB98" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 350 + contrast: + fg: 105.2 + black: 0 + red: 28.9 + green: 90.3 + yellow: 74.1 + blue: 82.9 + magenta: 36.1 + cyan: 84.9 + white: 105.2 + brightBlack: 33.3 + brightRed: 19.9 + brightGreen: 82.9 + brightYellow: 50.5 + brightBlue: 84.9 + brightMagenta: 14.5 + brightCyan: 90.3 + brightWhite: 107.3 diff --git a/themes/naruto-sasuke-uchiha-sharingan.yaml b/themes/naruto-sasuke-uchiha-sharingan.yaml new file mode 100644 index 00000000..10b716ff --- /dev/null +++ b/themes/naruto-sasuke-uchiha-sharingan.yaml @@ -0,0 +1,49 @@ +name: "Naruto Sasuke Uchiha - Sharingan" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#0A0000" + fg: "#E8E8E8" + black: "#1A1A1A" + red: "#FF0066" + green: "#7A7A9A" + yellow: "#FFD700" + blue: "#4169E1" + magenta: "#8B00FF" + cyan: "#00CED1" + white: "#E8E8F0" + brightBlack: "#3A3A5A" + brightRed: "#FF3388" + brightGreen: "#9A9ABA" + brightYellow: "#FFEA00" + brightBlue: "#5A8AFF" + brightMagenta: "#9370DB" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 29 + contrast: + fg: 92.9 + black: 0 + red: 38.5 + green: 33.2 + yellow: 84.2 + blue: 28.5 + magenta: 24.7 + cyan: 65.5 + white: 93.3 + brightBlack: 7.5 + brightRed: 41.4 + brightGreen: 49.1 + brightYellow: 92.7 + brightBlue: 42.5 + brightMagenta: 36.7 + brightCyan: 92.1 + brightWhite: 107.9 diff --git a/themes/naruto-shikamaru-nara-shadow-possession.yaml b/themes/naruto-shikamaru-nara-shadow-possession.yaml new file mode 100644 index 00000000..77a49d74 --- /dev/null +++ b/themes/naruto-shikamaru-nara-shadow-possession.yaml @@ -0,0 +1,49 @@ +name: "Naruto Shikamaru Nara - Shadow Possession" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#0D0D0D" + fg: "#D0D0D0" + black: "#1A1A1A" + red: "#696969" + green: "#6B8E23" + yellow: "#8B9A6B" + blue: "#556B2F" + magenta: "#808080" + cyan: "#2F4F2F" + white: "#C0C0C0" + brightBlack: "#4A4A4A" + brightRed: "#A9A9A9" + brightGreen: "#9ACD32" + brightYellow: "#BDB76B" + brightBlue: "#6B8E23" + brightMagenta: "#A9A9A9" + brightCyan: "#556B2F" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 77.8 + black: 0 + red: 24.1 + green: 36 + yellow: 44.4 + blue: 21.9 + magenta: 34.5 + cyan: 10.9 + white: 68.4 + brightBlack: 11.7 + brightRed: 55.4 + brightGreen: 66.7 + brightYellow: 61.7 + brightBlue: 36 + brightMagenta: 55.4 + brightCyan: 21.9 + brightWhite: 87.6 diff --git a/themes/naruto-shinobi-night.yaml b/themes/naruto-shinobi-night.yaml new file mode 100644 index 00000000..82dcc97e --- /dev/null +++ b/themes/naruto-shinobi-night.yaml @@ -0,0 +1,49 @@ +name: "Naruto Shinobi Night" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#0D0D0D" + fg: "#F5F5DC" + black: "#0D0D0D" + red: "#CC0000" + green: "#4CAF50" + yellow: "#FFD700" + blue: "#4A90E2" + magenta: "#9C27B0" + cyan: "#00CED1" + white: "#E8E8E8" + brightBlack: "#6C6C6C" + brightRed: "#FF0000" + brightGreen: "#27AE60" + brightYellow: "#FFC107" + brightBlue: "#5DADE2" + brightMagenta: "#8E44AD" + brightCyan: "#17A2B8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 99.9 + black: 0 + red: 24.9 + green: 48.3 + yellow: 84 + blue: 41.4 + magenta: 21.5 + cyan: 65.3 + white: 92.7 + brightBlack: 25.4 + brightRed: 37.3 + brightGreen: 47.1 + brightYellow: 74.9 + brightBlue: 53.6 + brightMagenta: 22.7 + brightCyan: 44.7 + brightWhite: 107.6 diff --git a/themes/natasha-theme.yaml b/themes/natasha-theme.yaml new file mode 100644 index 00000000..245301b8 --- /dev/null +++ b/themes/natasha-theme.yaml @@ -0,0 +1,49 @@ +name: "natasha-theme" +source: + marketplace_id: "LucasAlmeida.natasha-tema" + version: "1.6.0" + installs: 1804 + author: "Lucas Almeida" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LucasAlmeida.natasha-tema" +colors: + bg: "#221A34" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 297 + contrast: + fg: 105.9 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.4 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/natives-in-tech-theme.yaml b/themes/natives-in-tech-theme.yaml new file mode 100644 index 00000000..b45e1005 --- /dev/null +++ b/themes/natives-in-tech-theme.yaml @@ -0,0 +1,49 @@ +name: "Natives in Tech Theme" +source: + marketplace_id: "NativesinTech.natives-in-tech-vs-code-theme" + version: "0.0.1" + installs: 62 + author: "Natives in Tech" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NativesinTech.natives-in-tech-vs-code-theme" +colors: + bg: "#1E1E1E" + fg: "#C2C2C2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 67.9 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/natto-theme-2.yaml b/themes/natto-theme-2.yaml new file mode 100644 index 00000000..664dffd8 --- /dev/null +++ b/themes/natto-theme-2.yaml @@ -0,0 +1,49 @@ +name: "NaTTo Theme 2" +source: + marketplace_id: "nattohen.NaTTo-Theme" + version: "1.5.11" + installs: 303 + author: "nattohen" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=nattohen.NaTTo-Theme" +colors: + bg: "#1F1F1F" + fg: "#84FFE2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 92.2 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/natty.yaml b/themes/natty.yaml new file mode 100644 index 00000000..9a24f6f0 --- /dev/null +++ b/themes/natty.yaml @@ -0,0 +1,49 @@ +name: "Natty" +source: + marketplace_id: "this-fifo.natty" + version: "0.1.0" + installs: 9632 + author: "this-fifo" + repo: "https://github.com/this-fifo/natty-theme" + url: "https://marketplace.visualstudio.com/items?itemName=this-fifo.natty" +colors: + bg: "#242530" + fg: "#EEFFFF" + black: "#242530" + red: "#FF8A7A" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#94D0FF" + magenta: "#FF85B8" + cyan: "#9AEDFE" + white: "#F1F1F0" + brightBlack: "#686868" + brightRed: "#FF8A7A" + brightGreen: "#5AF78E" + brightYellow: "#F3F99D" + brightBlue: "#94D0FF" + brightMagenta: "#FF85B8" + brightCyan: "#9AEDFE" + brightWhite: "#EEFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 281 + contrast: + fg: 102.5 + black: 0 + red: 54.3 + green: 82 + yellow: 96.7 + blue: 71.2 + magenta: 55 + cyan: 85 + white: 95.6 + brightBlack: 20.9 + brightRed: 54.3 + brightGreen: 82 + brightYellow: 96.7 + brightBlue: 71.2 + brightMagenta: 55 + brightCyan: 85 + brightWhite: 102.5 diff --git a/themes/natural-faded-dark.yaml b/themes/natural-faded-dark.yaml new file mode 100644 index 00000000..62b49ade --- /dev/null +++ b/themes/natural-faded-dark.yaml @@ -0,0 +1,49 @@ +name: "Natural Faded Dark" +source: + marketplace_id: "null4bl3.natural-faded-dark" + version: "0.1.3" + installs: 251 + author: "null4bl3" + repo: "https://github.com/null4bl3/natural-faded-dark" + url: "https://marketplace.visualstudio.com/items?itemName=null4bl3.natural-faded-dark" +colors: + bg: "#171717" + fg: "#F0F0F0" + black: "#9D9D9D" + red: "#A96262" + green: "#269066" + yellow: "#949455" + blue: "#527296" + magenta: "#8C618C" + cyan: "#457C8A" + white: "#AB8C8C" + brightBlack: "#969696" + brightRed: "#BC5050" + brightGreen: "#42B889" + brightYellow: "#A5A55D" + brightBlue: "#4671A1" + brightMagenta: "#945594" + brightCyan: "#4691A3" + brightWhite: "#807F7F" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 97 + black: 48.3 + red: 29.3 + green: 33.8 + yellow: 41.9 + blue: 26.2 + magenta: 26.2 + cyan: 28.4 + white: 43.3 + brightBlack: 44.6 + brightRed: 28.2 + brightGreen: 52.5 + brightYellow: 50.5 + brightBlue: 25.8 + brightMagenta: 24.8 + brightCyan: 37.3 + brightWhite: 33.4 diff --git a/themes/natural-green-colorblind-growth-harmony.yaml b/themes/natural-green-colorblind-growth-harmony.yaml new file mode 100644 index 00000000..93dd6083 --- /dev/null +++ b/themes/natural-green-colorblind-growth-harmony.yaml @@ -0,0 +1,49 @@ +name: "Natural Green Colorblind - Growth & Harmony" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#0A1A0A" + fg: "#E8F5E9" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 144 + contrast: + fg: 98 + black: 0 + red: 37.7 + green: 47.6 + yellow: 92.3 + blue: 43 + magenta: 32.6 + cyan: 56.5 + white: 96.1 + brightBlack: 9.1 + brightRed: 42.8 + brightGreen: 82 + brightYellow: 101.7 + brightBlue: 40.5 + brightMagenta: 41.5 + brightCyan: 91.2 + brightWhite: 106.9 diff --git a/themes/natural-green-light-growth-harmony.yaml b/themes/natural-green-light-growth-harmony.yaml new file mode 100644 index 00000000..ae080dd6 --- /dev/null +++ b/themes/natural-green-light-growth-harmony.yaml @@ -0,0 +1,49 @@ +name: "Natural Green Light - Growth & Harmony" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#F5FAF5" + fg: "#0A1A0A" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 100.9 + black: 95.6 + red: 59.1 + green: 49.4 + yellow: 0 + blue: 53.9 + magenta: 64.2 + cyan: 40.8 + white: 0 + brightBlack: 88.5 + brightRed: 54.1 + brightGreen: 16.5 + brightYellow: 0 + brightBlue: 56.3 + brightMagenta: 55.4 + brightCyan: 7.9 + brightWhite: 102.2 diff --git a/themes/nature-color-theme.yaml b/themes/nature-color-theme.yaml new file mode 100644 index 00000000..933b67fb --- /dev/null +++ b/themes/nature-color-theme.yaml @@ -0,0 +1,49 @@ +name: "nature-color-theme" +source: + marketplace_id: "wavebeem.theme-unoduetre" + version: "5.11.1" + installs: 4290 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/vscode-theme-unoduetre" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" +colors: + bg: "#EAF6F2" + fg: "#006B47" + black: "#0E1B15" + red: "#AE4124" + green: "#1E803D" + yellow: "#90672C" + blue: "#5247C2" + magenta: "#B0459D" + cyan: "#117873" + white: "#E6E6E6" + brightBlack: "#0E1B15" + brightRed: "#AE4124" + brightGreen: "#1E803D" + brightYellow: "#90672C" + brightBlue: "#5247C2" + brightMagenta: "#B0459D" + brightCyan: "#117873" + brightWhite: "#E6E6E6" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 75 + black: 97.5 + red: 71.5 + green: 67.1 + yellow: 67.7 + blue: 76.4 + magenta: 67 + cyan: 68.9 + white: 0 + brightBlack: 97.5 + brightRed: 71.5 + brightGreen: 67.1 + brightYellow: 67.7 + brightBlue: 76.4 + brightMagenta: 67 + brightCyan: 68.9 + brightWhite: 0 diff --git a/themes/nature-green-colorblind-growth-harmony.yaml b/themes/nature-green-colorblind-growth-harmony.yaml new file mode 100644 index 00000000..2f3208a9 --- /dev/null +++ b/themes/nature-green-colorblind-growth-harmony.yaml @@ -0,0 +1,49 @@ +name: "Nature Green Colorblind - Growth & Harmony" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#0D1B0D" + fg: "#E8F5E8" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 144 + contrast: + fg: 97.8 + black: 0 + red: 37.6 + green: 47.4 + yellow: 92.2 + blue: 42.9 + magenta: 32.5 + cyan: 56.4 + white: 96 + brightBlack: 8.9 + brightRed: 42.7 + brightGreen: 81.9 + brightYellow: 101.6 + brightBlue: 40.4 + brightMagenta: 41.3 + brightCyan: 91.1 + brightWhite: 106.8 diff --git a/themes/nature-green-light-growth-harmony.yaml b/themes/nature-green-light-growth-harmony.yaml new file mode 100644 index 00000000..969e8957 --- /dev/null +++ b/themes/nature-green-light-growth-harmony.yaml @@ -0,0 +1,49 @@ +name: "Nature Green Light - Growth & Harmony" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#F5FAF5" + fg: "#0D1B0D" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 100.7 + black: 95.6 + red: 59.1 + green: 49.4 + yellow: 0 + blue: 53.9 + magenta: 64.2 + cyan: 40.8 + white: 0 + brightBlack: 88.5 + brightRed: 54.1 + brightGreen: 16.5 + brightYellow: 0 + brightBlue: 56.3 + brightMagenta: 55.4 + brightCyan: 7.9 + brightWhite: 102.2 diff --git a/themes/nature.yaml b/themes/nature.yaml new file mode 100644 index 00000000..eef0250a --- /dev/null +++ b/themes/nature.yaml @@ -0,0 +1,49 @@ +name: "Nature" +source: + marketplace_id: "Jonaqhan.jonaqhan" + version: "4.8.0" + installs: 753 + author: "Jonaqhan" + repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" +colors: + bg: "#182426" + fg: "#5EC3FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 209 + contrast: + fg: 62.6 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 88.6 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.6 + brightMagenta: 43.9 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/nautilus.yaml b/themes/nautilus.yaml new file mode 100644 index 00000000..257eb247 --- /dev/null +++ b/themes/nautilus.yaml @@ -0,0 +1,49 @@ +name: "Nautilus" +source: + marketplace_id: "sammarxz.nautiulus-theme" + version: "1.0.0" + installs: 2635 + author: "Sam Marxz" + repo: "https://github.com/sammarxz/nautilus-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sammarxz.nautiulus-theme" +colors: + bg: "#0A0B11" + fg: "#B3B1AD" + black: "#00010A" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 277 + contrast: + fg: 60 + black: 0 + red: 44.9 + green: 55 + yellow: 67.4 + blue: 61.4 + magenta: 92.8 + cyan: 78.7 + white: 72.5 + brightBlack: 23.7 + brightRed: 47.4 + brightGreen: 76.7 + brightYellow: 70.4 + brightBlue: 64.1 + brightMagenta: 96 + brightCyan: 81.7 + brightWhite: 107.7 diff --git a/themes/naver.yaml b/themes/naver.yaml new file mode 100644 index 00000000..136593d5 --- /dev/null +++ b/themes/naver.yaml @@ -0,0 +1,49 @@ +name: "Naver" +source: + marketplace_id: "Inticoy.naver-theme" + version: "0.0.1" + installs: 121 + author: "Inticoy" + repo: "https://github.com/inticoy/naver-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Inticoy.naver-theme" +colors: + bg: "#FFFFFF" + fg: "#666666" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 78.8 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/navy-flat.yaml b/themes/navy-flat.yaml new file mode 100644 index 00000000..7d857258 --- /dev/null +++ b/themes/navy-flat.yaml @@ -0,0 +1,49 @@ +name: "Navy Flat" +source: + marketplace_id: "Willothy.navy-flat" + version: "1.0.4" + installs: 1016 + author: "Willothy" + repo: "https://github.com/willothy/navy-flat" + url: "https://marketplace.visualstudio.com/items?itemName=Willothy.navy-flat" +colors: + bg: "#141F34" + fg: "#D9D9D9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFFF00" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C4C4C4" + brightBlack: "#6D6A6A" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 263 + contrast: + fg: 81.5 + black: 0 + red: 25.7 + green: 52 + yellow: 100.7 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 68.9 + brightBlack: 23 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.3 + brightCyan: 54.4 + brightWhite: 105.8 diff --git a/themes/navy-nights-theme.yaml b/themes/navy-nights-theme.yaml new file mode 100644 index 00000000..1f27cffd --- /dev/null +++ b/themes/navy-nights-theme.yaml @@ -0,0 +1,49 @@ +name: "navy-nights-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#030C1B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 80.2 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/navy-theme.yaml b/themes/navy-theme.yaml new file mode 100644 index 00000000..9506b888 --- /dev/null +++ b/themes/navy-theme.yaml @@ -0,0 +1,49 @@ +name: "Navy Theme" +source: + marketplace_id: "orS.navytheme" + version: "0.0.5" + installs: 1373 + author: "orS" + repo: "https://github.com/orshemtov/navy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=orS.navytheme" +colors: + bg: "#151924" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + contrast: + fg: 59.1 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.8 diff --git a/themes/navy.yaml b/themes/navy.yaml new file mode 100644 index 00000000..90120c7b --- /dev/null +++ b/themes/navy.yaml @@ -0,0 +1,49 @@ +name: "Navy" +source: + marketplace_id: "eshiraishi.navy-theme" + version: "0.0.16" + installs: 342 + author: "Enzo Shiraishi" + repo: "https://github.com/eshiraishi/navy-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=eshiraishi.navy-theme" +colors: + bg: "#151A1F" + fg: "#E6E6E6" + black: "#0A0D0F" + red: "#E6A99A" + green: "#A8E69A" + yellow: "#E6E0AC" + blue: "#9AC0E6" + magenta: "#BCACE6" + cyan: "#9AE6CB" + white: "#E6E6E6" + brightBlack: "#0A0D0F" + brightRed: "#E6A99A" + brightGreen: "#A8E69A" + brightYellow: "#E6E0AC" + brightBlue: "#9AC0E6" + brightMagenta: "#BCACE6" + brightCyan: "#9AE6CB" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "green" + hue: 248 + contrast: + fg: 90.4 + black: 0 + red: 62.5 + green: 80.5 + yellow: 85.4 + blue: 65.1 + magenta: 60.8 + cyan: 81 + white: 90.4 + brightBlack: 0 + brightRed: 62.5 + brightGreen: 80.5 + brightYellow: 85.4 + brightBlue: 65.1 + brightMagenta: 60.8 + brightCyan: 81 + brightWhite: 90.4 diff --git a/themes/nb-monochrome-dark.yaml b/themes/nb-monochrome-dark.yaml new file mode 100644 index 00000000..57b8f19c --- /dev/null +++ b/themes/nb-monochrome-dark.yaml @@ -0,0 +1,49 @@ +name: "nb-monochrome-dark" +source: + marketplace_id: "nicco.n234234" + version: "0.2.0" + installs: 416 + author: "nicco" + repo: "https://github.com/nicco-b/n" + url: "https://marketplace.visualstudio.com/items?itemName=nicco.n234234" +colors: + bg: "#1D1D1B" + fg: "#EBEBEB" + black: "#1D1D1B" + red: "#E88388" + green: "#98C379" + yellow: "#EACB8D" + blue: "#71BBEF" + magenta: "#D290E4" + cyan: "#66C2CD" + white: "#B9BFCB" + brightBlack: "#313131" + brightRed: "#E88388" + brightGreen: "#A7CB8C" + brightYellow: "#E3CA7F" + brightBlue: "#72BEF3" + brightMagenta: "#D191E4" + brightCyan: "#64C2CD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 93.1 + black: 0 + red: 49.5 + green: 61.6 + yellow: 75.6 + blue: 59.9 + magenta: 53.7 + cyan: 60.5 + white: 66.2 + brightBlack: 0 + brightRed: 49.5 + brightGreen: 67.1 + brightYellow: 73.8 + brightBlue: 61.5 + brightMagenta: 53.9 + brightCyan: 60.4 + brightWhite: 106.2 diff --git a/themes/ncl5c.yaml b/themes/ncl5c.yaml new file mode 100644 index 00000000..85c69df8 --- /dev/null +++ b/themes/ncl5c.yaml @@ -0,0 +1,49 @@ +name: "ncl5c" +source: + marketplace_id: "JohannesFreutel.ncl5c" + version: "4.1.3" + installs: 34 + author: "JohannesFreutel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.ncl5c" +colors: + bg: "#0E0D13" + fg: "#826962" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 293 + contrast: + fg: 26.4 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.3 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/nebula-color-theme.yaml b/themes/nebula-color-theme.yaml new file mode 100644 index 00000000..dbae6647 --- /dev/null +++ b/themes/nebula-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Nebula-color-theme" +source: + marketplace_id: "ChirtleLovesDolls.nebula-theme" + version: "1.3.3" + installs: 146100 + author: "ChirtleLovesDolls" + repo: "https://github.com/eating-coleslaw/vscode-nebula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ChirtleLovesDolls.nebula-theme" +colors: + bg: "#27273A" + fg: "#FCF6FF" + black: "#353551" + red: "#E34F8C" + green: "#97F36D" + yellow: "#F8C275" + blue: "#C7ADFB" + magenta: "#E752A1" + cyan: "#24E8D8" + white: "#FBD3E1" + brightBlack: "#919CB9" + brightRed: "#F36F98" + brightGreen: "#AFFA90" + brightYellow: "#FAFAA0" + brightBlue: "#74D6E9" + brightMagenta: "#F799C7" + brightCyan: "#8DF9F9" + brightWhite: "#D7D6DF" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 99.6 + black: 0 + red: 35 + green: 82.2 + yellow: 71.7 + blue: 61.5 + magenta: 37.2 + cyan: 75.1 + white: 82.6 + brightBlack: 45.2 + brightRed: 45.1 + brightGreen: 88.5 + brightYellow: 97.7 + brightBlue: 69.8 + brightMagenta: 59.4 + brightCyan: 89.2 + brightWhite: 78.6 diff --git a/themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml b/themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml new file mode 100644 index 00000000..7603a488 --- /dev/null +++ b/themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml @@ -0,0 +1,49 @@ +name: "Nebula Dark Vibrant © Fabo IT and Media Group" +source: + marketplace_id: "Fabocode.nebula-dark-theme" + version: "1.0.0" + installs: 34 + author: "Fabocode" + repo: "https://github.com/FaboCodeDev/nebula-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Fabocode.nebula-dark-theme" +colors: + bg: "#121212" + fg: "#F8F9FA" + black: "#121212" + red: "#FF6B6B" + green: "#51CF66" + yellow: "#FF922B" + blue: "#339AF0" + magenta: "#DA77F2" + cyan: "#20C997" + white: "#F8F9FA" + brightBlack: "#6C757D" + brightRed: "#FF6B6B" + brightGreen: "#51CF66" + brightYellow: "#FF922B" + brightBlue: "#339AF0" + brightMagenta: "#DA77F2" + brightCyan: "#20C997" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 103.2 + black: 0 + red: 48.5 + green: 63.3 + yellow: 58 + blue: 45.1 + magenta: 50 + cyan: 60.5 + white: 103.2 + brightBlack: 28.5 + brightRed: 48.5 + brightGreen: 63.3 + brightYellow: 58 + brightBlue: 45.1 + brightMagenta: 50 + brightCyan: 60.5 + brightWhite: 107.3 diff --git a/themes/nebula-nights.yaml b/themes/nebula-nights.yaml new file mode 100644 index 00000000..082293e5 --- /dev/null +++ b/themes/nebula-nights.yaml @@ -0,0 +1,49 @@ +name: "Nebula Nights" +source: + marketplace_id: "Tom-Fynes.nebula-nights-pastel" + version: "1.2.0" + installs: 723 + author: "Tom-Fynes" + repo: "https://github.com/tom-fynes/nebula-nights" + url: "https://marketplace.visualstudio.com/items?itemName=Tom-Fynes.nebula-nights-pastel" +colors: + bg: "#404E5C" + fg: "#B7C3F3" + black: "#363E4A" + red: "#D05786" + green: "#94FBAB" + yellow: "#DD7596" + blue: "#B8E1FF" + magenta: "#BCB6FF" + cyan: "#A9FFF7" + white: "#B7C3F3" + brightBlack: "#363E4A" + brightRed: "#D05786" + brightGreen: "#94FBAB" + brightYellow: "#DD7596" + brightBlue: "#B8E1FF" + brightMagenta: "#BCB6FF" + brightCyan: "#A9FFF7" + brightWhite: "#B7C3F3" +meta: + mode: "dark" + accent: "red" + hue: 249 + contrast: + fg: 57.3 + black: 0 + red: 21.9 + green: 77.1 + yellow: 31.8 + blue: 71.2 + magenta: 53.4 + cyan: 83.8 + white: 57.3 + brightBlack: 0 + brightRed: 21.9 + brightGreen: 77.1 + brightYellow: 31.8 + brightBlue: 71.2 + brightMagenta: 53.4 + brightCyan: 83.8 + brightWhite: 57.3 diff --git a/themes/nebula-pro-dark.yaml b/themes/nebula-pro-dark.yaml new file mode 100644 index 00000000..2f3ec849 --- /dev/null +++ b/themes/nebula-pro-dark.yaml @@ -0,0 +1,49 @@ +name: "Nebula Pro Dark" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#1E1F29" + fg: "#F8F8F2" + black: "#1E1F29" + red: "#FF6188" + green: "#A9DC76" + yellow: "#FFD866" + blue: "#78DCE8" + magenta: "#AB9DF2" + cyan: "#78DCE8" + white: "#F8F8F2" + brightBlack: "#5A5D6E" + brightRed: "#FF6188" + brightGreen: "#A9DC76" + brightYellow: "#FFD866" + brightBlue: "#78DCE8" + brightMagenta: "#AB9DF2" + brightCyan: "#A9DC76" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 100.9 + black: 0 + red: 45.7 + green: 74.2 + yellow: 83.3 + blue: 74.4 + magenta: 53.2 + cyan: 74.4 + white: 100.9 + brightBlack: 17.5 + brightRed: 45.7 + brightGreen: 74.2 + brightYellow: 83.3 + brightBlue: 74.4 + brightMagenta: 53.2 + brightCyan: 74.2 + brightWhite: 100.9 diff --git a/themes/nebula-surge.yaml b/themes/nebula-surge.yaml new file mode 100644 index 00000000..92b698b6 --- /dev/null +++ b/themes/nebula-surge.yaml @@ -0,0 +1,49 @@ +name: "Nebula Surge" +source: + marketplace_id: "DefinitionGroup.nebula-surge" + version: "1.0.0" + installs: 8 + author: "DefinitionGroup" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=DefinitionGroup.nebula-surge" +colors: + bg: "#000000" + fg: "#80C0FF" + black: "#3E7BDC" + red: "#FF8C35" + green: "#38FFC9" + yellow: "#7208F4" + blue: "#EC8129" + magenta: "#FFDB1A" + cyan: "#2BA5FF" + white: "#D2DBE8" + brightBlack: "#3E7BDC" + brightRed: "#FF7200" + brightGreen: "#00FDBB" + brightYellow: "#7300FF" + brightBlue: "#EC8129" + brightMagenta: "#FDD600" + brightCyan: "#5DB6FF" + brightWhite: "#E9F2FF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 65.7 + black: 33.5 + red: 56.9 + green: 90.2 + yellow: 20.5 + blue: 49.8 + magenta: 86 + cyan: 50.9 + white: 84.2 + brightBlack: 33.5 + brightRed: 49.7 + brightGreen: 88.2 + brightYellow: 21.8 + brightBlue: 49.8 + brightMagenta: 83.5 + brightCyan: 59.4 + brightWhite: 98.8 diff --git a/themes/nebula-symphony-dark-pro.yaml b/themes/nebula-symphony-dark-pro.yaml new file mode 100644 index 00000000..7abc05d4 --- /dev/null +++ b/themes/nebula-symphony-dark-pro.yaml @@ -0,0 +1,49 @@ +name: "Nebula Symphony Dark Pro" +source: + marketplace_id: "Keevdev.nebula-symphony" + version: "1.0.8" + installs: 226 + author: "Keevdev" + repo: "https://github.com/keeevdev/nebula-symphony" + url: "https://marketplace.visualstudio.com/items?itemName=Keevdev.nebula-symphony" +colors: + bg: "#0A0B10" + fg: "#D0D0E0" + black: "#3F4451" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#8BE9FD" + magenta: "#BD93F9" + cyan: "#94E2D5" + white: "#D0D0E0" + brightBlack: "#4F5666" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#8BE9FD" + brightMagenta: "#BD93F9" + brightCyan: "#94E2D5" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "green" + hue: 276 + contrast: + fg: 78.6 + black: 9.7 + red: 44.2 + green: 85.7 + yellow: 99.4 + blue: 84.8 + magenta: 54.5 + cyan: 80.1 + white: 78.6 + brightBlack: 16.3 + brightRed: 44.2 + brightGreen: 85.7 + brightYellow: 99.4 + brightBlue: 84.8 + brightMagenta: 54.5 + brightCyan: 80.1 + brightWhite: 91.5 diff --git a/themes/nebula-symphony-dark.yaml b/themes/nebula-symphony-dark.yaml new file mode 100644 index 00000000..c78b43a1 --- /dev/null +++ b/themes/nebula-symphony-dark.yaml @@ -0,0 +1,49 @@ +name: "Nebula Symphony Dark" +source: + marketplace_id: "Keevdev.nebula-symphony" + version: "1.0.8" + installs: 226 + author: "Keevdev" + repo: "https://github.com/keeevdev/nebula-symphony" + url: "https://marketplace.visualstudio.com/items?itemName=Keevdev.nebula-symphony" +colors: + bg: "#12121F" + fg: "#D0D0E0" + black: "#3F4451" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#8BE9FD" + magenta: "#BD93F9" + cyan: "#94E2D5" + white: "#D0D0E0" + brightBlack: "#4F5666" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#8BE9FD" + brightMagenta: "#BD93F9" + brightCyan: "#94E2D5" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "green" + hue: 284 + contrast: + fg: 78.1 + black: 9.2 + red: 43.7 + green: 85.2 + yellow: 98.9 + blue: 84.3 + magenta: 54 + cyan: 79.6 + white: 78.1 + brightBlack: 15.8 + brightRed: 43.7 + brightGreen: 85.2 + brightYellow: 98.9 + brightBlue: 84.3 + brightMagenta: 54 + brightCyan: 79.6 + brightWhite: 91 diff --git a/themes/nebula-symphony-light.yaml b/themes/nebula-symphony-light.yaml new file mode 100644 index 00000000..ea91489e --- /dev/null +++ b/themes/nebula-symphony-light.yaml @@ -0,0 +1,49 @@ +name: "Nebula Symphony Light" +source: + marketplace_id: "Keevdev.nebula-symphony" + version: "1.0.8" + installs: 226 + author: "Keevdev" + repo: "https://github.com/keeevdev/nebula-symphony" + url: "https://marketplace.visualstudio.com/items?itemName=Keevdev.nebula-symphony" +colors: + bg: "#FFFFFF" + fg: "#424242" + black: "#3F4451" + red: "#D32F2F" + green: "#388E3C" + yellow: "#F1FA8C" + blue: "#0277BD" + magenta: "#7B1FA2" + cyan: "#94E2D5" + white: "#424242" + brightBlack: "#4F5666" + brightRed: "#D32F2F" + brightGreen: "#388E3C" + brightYellow: "#F1FA8C" + brightBlue: "#0277BD" + brightMagenta: "#7B1FA2" + brightCyan: "#94E2D5" + brightWhite: "#E6E6E6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93.4 + black: 92.6 + red: 72.8 + green: 68 + yellow: 0 + blue: 72.6 + magenta: 87.1 + cyan: 22.9 + white: 93.4 + brightBlack: 85.6 + brightRed: 72.8 + brightGreen: 68 + brightYellow: 0 + brightBlue: 72.6 + brightMagenta: 87.1 + brightCyan: 22.9 + brightWhite: 12.3 diff --git a/themes/nebula.yaml b/themes/nebula.yaml new file mode 100644 index 00000000..444fd2ef --- /dev/null +++ b/themes/nebula.yaml @@ -0,0 +1,49 @@ +name: "Nebula" +source: + marketplace_id: "KrisSchultz.nova-theme" + version: "1.1.0" + installs: 85 + author: "Kris Schultz" + repo: "https://github.com/Krxtopher/vscode-theme-nova" + url: "https://marketplace.visualstudio.com/items?itemName=KrisSchultz.nova-theme" +colors: + bg: "#190E2A" + fg: "#FFFFFF" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 299 + contrast: + fg: 107.1 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 30 + cyan: 47.8 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.8 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/nebular-theme.yaml b/themes/nebular-theme.yaml new file mode 100644 index 00000000..32656ce6 --- /dev/null +++ b/themes/nebular-theme.yaml @@ -0,0 +1,49 @@ +name: "Nebular Theme" +source: + marketplace_id: "obsilab.nebular" + version: "1.0.3" + installs: 572 + author: "Obsilab" + repo: "https://github.com/LucasPlacentino/nebular-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=obsilab.nebular" +colors: + bg: "#1B1B1B" + fg: "#D3CAD7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 74.8 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/nebularomantic.yaml b/themes/nebularomantic.yaml new file mode 100644 index 00000000..144c18e8 --- /dev/null +++ b/themes/nebularomantic.yaml @@ -0,0 +1,49 @@ +name: "Nebularomantic" +source: + marketplace_id: "ElizaMuss.elizas-pride-themes" + version: "1.0.2" + installs: 848 + author: "Eliza Muss" + repo: "https://github.com/The-Gamer69/elizas-pride-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#868686" + red: "#FF5470" + green: "#33D057" + yellow: "#E1C542" + blue: "#469DF1" + magenta: "#E557F9" + cyan: "#305A7A" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#FF718A" + brightGreen: "#23D18B" + brightYellow: "#FFE05B" + brightBlue: "#74BCFF" + brightMagenta: "#EC84FF" + brightCyan: "#3E8DA6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 37.6 + red: 44.8 + green: 63.2 + yellow: 72.2 + blue: 47.5 + magenta: 46.4 + cyan: 16.7 + white: 80.5 + brightBlack: 56.8 + brightRed: 51.3 + brightGreen: 64.5 + brightYellow: 88.7 + brightBlue: 63.2 + brightMagenta: 58.1 + brightCyan: 36.6 + brightWhite: 107.9 diff --git a/themes/nebulous-dark.yaml b/themes/nebulous-dark.yaml new file mode 100644 index 00000000..acd1e623 --- /dev/null +++ b/themes/nebulous-dark.yaml @@ -0,0 +1,49 @@ +name: "Nebulous Dark" +source: + marketplace_id: "jtpeller.nebulous-color-themes" + version: "0.0.4" + installs: 41 + author: "jtpeller" + repo: "https://github.com/jtpeller/nebulous-color-themes" + url: "https://marketplace.visualstudio.com/items?itemName=jtpeller.nebulous-color-themes" +colors: + bg: "#1D1D1D" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.2 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/nebulous-luna.yaml b/themes/nebulous-luna.yaml new file mode 100644 index 00000000..2375c5dc --- /dev/null +++ b/themes/nebulous-luna.yaml @@ -0,0 +1,49 @@ +name: "Nebulous Luna" +source: + marketplace_id: "jtpeller.nebulous-color-themes" + version: "0.0.4" + installs: 41 + author: "jtpeller" + repo: "https://github.com/jtpeller/nebulous-color-themes" + url: "https://marketplace.visualstudio.com/items?itemName=jtpeller.nebulous-color-themes" +colors: + bg: "#CFCFCF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#7A7D00" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#3EFF3E" + brightYellow: "#F8FF00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 78.2 + black: 78.2 + red: 46.1 + green: 21.4 + yellow: 42.6 + blue: 58.2 + magenta: 46.7 + cyan: 32.7 + white: 58.1 + brightBlack: 50.9 + brightRed: 46.1 + brightGreen: 8.3 + brightYellow: 22.8 + brightBlue: 58.2 + brightMagenta: 46.7 + brightCyan: 32.7 + brightWhite: 29 diff --git a/themes/necessity-aaa-light.yaml b/themes/necessity-aaa-light.yaml new file mode 100644 index 00000000..09a4dffb --- /dev/null +++ b/themes/necessity-aaa-light.yaml @@ -0,0 +1,49 @@ +name: "Necessity AAA Light" +source: + marketplace_id: "vxint.necessity" + version: "1.8.0" + installs: 59 + author: "Vortex Interactive" + repo: "https://github.com/vortexint/Necessity" + url: "https://marketplace.visualstudio.com/items?itemName=vxint.necessity" +colors: + bg: "#F5F5F5" + fg: "#1E1E1E" + black: "#5A5A5A" + red: "#8B0000" + green: "#006400" + yellow: "#A06A00" + blue: "#005F9E" + magenta: "#562D80" + cyan: "#004C5C" + white: "#3A3A3A" + brightBlack: "#7A7A7A" + brightRed: "#C51A1B" + brightGreen: "#098658" + brightYellow: "#B58500" + brightBlue: "#007ACC" + brightMagenta: "#800080" + brightCyan: "#267F99" + brightWhite: "#1E1E1E" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.7 + black: 77.9 + red: 84.8 + green: 79.2 + yellow: 65.7 + blue: 76.5 + magenta: 87 + cyan: 85.8 + white: 90.3 + brightBlack: 63.8 + brightRed: 71.6 + brightGreen: 65.5 + brightYellow: 54.4 + brightBlue: 64.6 + brightMagenta: 83.6 + brightCyan: 65.6 + brightWhite: 97.7 diff --git a/themes/necessity-aaa.yaml b/themes/necessity-aaa.yaml new file mode 100644 index 00000000..d291fb8a --- /dev/null +++ b/themes/necessity-aaa.yaml @@ -0,0 +1,49 @@ +name: "Necessity-AAA" +source: + marketplace_id: "vxint.necessity" + version: "1.8.0" + installs: 59 + author: "Vortex Interactive" + repo: "https://github.com/vortexint/Necessity" + url: "https://marketplace.visualstudio.com/items?itemName=vxint.necessity" +colors: + bg: "#2F2F2F" + fg: "#DCDCDC" + black: "#3A3A3A" + red: "#D16969" + green: "#87B379" + yellow: "#CCA700" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#69D8C6" + white: "#DCDCDC" + brightBlack: "#8A8A8A" + brightRed: "#F48771" + brightGreen: "#A0CC93" + brightYellow: "#D9B51A" + brightBlue: "#70A0D6" + brightMagenta: "#D699D6" + brightCyan: "#80E0D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 34.3 + green: 49.9 + yellow: 51.9 + blue: 41.1 + magenta: 43.4 + cyan: 67.2 + white: 80.5 + brightBlack: 34.7 + brightRed: 49.2 + brightGreen: 63.8 + brightYellow: 59.3 + brightBlue: 44.2 + brightMagenta: 53.3 + brightCyan: 72.8 + brightWhite: 103 diff --git a/themes/negative-theme.yaml b/themes/negative-theme.yaml new file mode 100644 index 00000000..bbb12267 --- /dev/null +++ b/themes/negative-theme.yaml @@ -0,0 +1,49 @@ +name: "Negative Theme" +source: + marketplace_id: "Negative.negative-theme" + version: "2.1.3" + installs: 3038 + author: "Negative" + repo: "https://github.com/joaom00/negative-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Negative.negative-theme" +colors: + bg: "#0F111A" + fg: "#8F93A2" + black: "#333333" + red: "#88BBFF" + green: "#FFDD44" + yellow: "#88CC44" + blue: "#88BBFF" + magenta: "#88BBFF" + cyan: "#BBA0FF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#88BBFF" + brightGreen: "#FFDD44" + brightYellow: "#88CC44" + brightBlue: "#88BBFF" + brightMagenta: "#88BBFF" + brightCyan: "#BBA0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 275 + contrast: + fg: 43.7 + black: 0 + red: 63.7 + green: 86.6 + yellow: 64.6 + blue: 63.7 + magenta: 63.7 + cyan: 58.6 + white: 107.3 + brightBlack: 22.5 + brightRed: 63.7 + brightGreen: 86.6 + brightYellow: 64.6 + brightBlue: 63.7 + brightMagenta: 63.7 + brightCyan: 58.6 + brightWhite: 107.3 diff --git a/themes/neil-s-theme-dark.yaml b/themes/neil-s-theme-dark.yaml new file mode 100644 index 00000000..e2486795 --- /dev/null +++ b/themes/neil-s-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Neil's Theme (Dark)" +source: + marketplace_id: "njp-anderson.neils-vscode-theme" + version: "0.0.1" + installs: 14 + author: "N Anderson" + repo: "https://github.com/njpanderson/neils-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=njp-anderson.neils-vscode-theme" +colors: + bg: "#272C30" + fg: "#D3C6AA" + black: "#343F44" + red: "#E67E80" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#83C092" + white: "#D3C6AA" + brightBlack: "#859289" + brightRed: "#E67E80" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#7FBBB3" + brightMagenta: "#D699B6" + brightCyan: "#83C092" + brightWhite: "#D3C6AA" +meta: + mode: "dark" + accent: "orange" + hue: 242 + contrast: + fg: 68.6 + black: 0 + red: 45.1 + green: 59.5 + yellow: 64.4 + blue: 55.4 + magenta: 52.5 + cyan: 56.7 + white: 68.6 + brightBlack: 37.9 + brightRed: 45.1 + brightGreen: 59.5 + brightYellow: 64.4 + brightBlue: 55.4 + brightMagenta: 52.5 + brightCyan: 56.7 + brightWhite: 68.6 diff --git a/themes/neil-s-theme.yaml b/themes/neil-s-theme.yaml new file mode 100644 index 00000000..f5242841 --- /dev/null +++ b/themes/neil-s-theme.yaml @@ -0,0 +1,49 @@ +name: "Neil's Theme" +source: + marketplace_id: "njp-anderson.neils-vscode-theme" + version: "0.0.1" + installs: 14 + author: "N Anderson" + repo: "https://github.com/njpanderson/neils-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=njp-anderson.neils-vscode-theme" +colors: + bg: "#FAFAFA" + fg: "#000000" + black: "#EDEEEE" + red: "#D24545" + green: "#2AA54D" + yellow: "#B48806" + blue: "#1F89CF" + magenta: "#AE6CBE" + cyan: "#23716D" + white: "#000000" + brightBlack: "#B4B7B7" + brightRed: "#F52222" + brightGreen: "#0BC440" + brightYellow: "#BA8B00" + brightBlue: "#008FEE" + brightMagenta: "#C14CDE" + brightCyan: "#0D8781" + brightWhite: "#333333" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103 + black: 0 + red: 67.1 + green: 55.6 + yellow: 56.5 + blue: 62 + magenta: 61.3 + cyan: 75.5 + white: 103 + brightBlack: 36.2 + brightRed: 62.8 + brightGreen: 42.3 + brightYellow: 54.7 + brightBlue: 57.8 + brightMagenta: 62.8 + brightCyan: 66.8 + brightWhite: 95.7 diff --git a/themes/nekhbet.yaml b/themes/nekhbet.yaml new file mode 100644 index 00000000..6da59d22 --- /dev/null +++ b/themes/nekhbet.yaml @@ -0,0 +1,49 @@ +name: "Nekhbet" +source: + marketplace_id: "inamdarminaz.nekhbet" + version: "1.1.0" + installs: 551 + author: "inamdarminaz" + repo: "https://github.com/inamdarminaz/nekhbet" + url: "https://marketplace.visualstudio.com/items?itemName=inamdarminaz.nekhbet" +colors: + bg: "#1B1B1B" + fg: "#F5F5F5" + black: "#2A3134" + red: "#FC4384" + green: "#55E513" + yellow: "#A553C6" + blue: "#FC4384" + magenta: "#AE89FE" + cyan: "#708387" + white: "#D5D5D0" + brightBlack: "#4A4E4F" + brightRed: "#FC4384" + brightGreen: "#55E513" + brightYellow: "#41F0FF" + brightBlue: "#41F0FF" + brightMagenta: "#AE89FE" + brightCyan: "#41F0FF" + brightWhite: "#F9F9F4" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 99.8 + black: 0 + red: 40.8 + green: 72.7 + yellow: 29.4 + blue: 40.8 + magenta: 48.4 + cyan: 33.1 + white: 79.4 + brightBlack: 11.7 + brightRed: 40.8 + brightGreen: 72.7 + brightYellow: 83.7 + brightBlue: 83.7 + brightMagenta: 48.4 + brightCyan: 83.7 + brightWhite: 102.2 diff --git a/themes/neki.yaml b/themes/neki.yaml new file mode 100644 index 00000000..cd0efd2a --- /dev/null +++ b/themes/neki.yaml @@ -0,0 +1,49 @@ +name: "neki" +source: + marketplace_id: "Azelky.neki" + version: "1.1.1" + installs: 302 + author: "Azelky" + repo: "https://github.com/azelky/neki-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Azelky.neki" +colors: + bg: "#2A293E" + fg: "#D4D4D4" + black: "#282936" + red: "#FF5797" + green: "#19F9D8" + yellow: "#FFC07D" + blue: "#45A9F9" + magenta: "#FF82BC" + cyan: "#B084EB" + white: "#CDCDCD" + brightBlack: "#757575" + brightRed: "#FF2C6D" + brightGreen: "#19F9D8" + brightYellow: "#FFCC95" + brightBlue: "#6FC1FF" + brightMagenta: "#FF9AC1" + brightCyan: "#BCAAFE" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "red" + hue: 286 + contrast: + fg: 76.4 + black: 0 + red: 42.4 + green: 83.2 + yellow: 71.8 + blue: 48.6 + magenta: 53.3 + cyan: 43.2 + white: 72.2 + brightBlack: 25.6 + brightRed: 36 + brightGreen: 83.2 + brightYellow: 77.2 + brightBlue: 61 + brightMagenta: 60.5 + brightCyan: 58.7 + brightWhite: 87.6 diff --git a/themes/neo-hacker-soft-premium.yaml b/themes/neo-hacker-soft-premium.yaml new file mode 100644 index 00000000..fc01b4b8 --- /dev/null +++ b/themes/neo-hacker-soft-premium.yaml @@ -0,0 +1,49 @@ +name: "Neo Hacker Soft - Premium" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#0A0C0A" + fg: "#00D463" + black: "#0A0C0A" + red: "#FF5370" + green: "#00FF66" + yellow: "#FFEE58" + blue: "#40C4FF" + magenta: "#FF80FF" + cyan: "#1AFF8C" + white: "#00D463" + brightBlack: "#2D5A3D" + brightRed: "#FF6B8A" + brightGreen: "#00FF88" + brightYellow: "#FFF176" + brightBlue: "#64B5F6" + brightMagenta: "#FF99FF" + brightCyan: "#4DFFB3" + brightWhite: "#33FFAA" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 64.7 + black: 0 + red: 44.4 + green: 86.9 + yellow: 94.8 + blue: 64.1 + magenta: 60.4 + cyan: 87.7 + white: 64.7 + brightBlack: 14.5 + brightRed: 49.7 + brightGreen: 87.6 + brightYellow: 96.6 + brightBlue: 58.6 + brightMagenta: 67.4 + brightCyan: 89.7 + brightWhite: 88.8 diff --git a/themes/neo-nuxt-matte.yaml b/themes/neo-nuxt-matte.yaml new file mode 100644 index 00000000..50ecc33a --- /dev/null +++ b/themes/neo-nuxt-matte.yaml @@ -0,0 +1,49 @@ +name: "neo-nuxt-matte" +source: + marketplace_id: "CeoDev.neo-nuxt3-blend" + version: "3.3.4" + installs: 2699 + author: "Vantol Bennett" + repo: "https://github.com/titan-65/neo-nuxt" + url: "https://marketplace.visualstudio.com/items?itemName=CeoDev.neo-nuxt3-blend" +colors: + bg: "#0C0C0D" + fg: "#76767D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 30.1 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/neo-seoul-dark.yaml b/themes/neo-seoul-dark.yaml new file mode 100644 index 00000000..30fd5dc8 --- /dev/null +++ b/themes/neo-seoul-dark.yaml @@ -0,0 +1,49 @@ +name: "Neo Seoul Dark" +source: + marketplace_id: "taotao7.neo-seoul-theme" + version: "0.0.3" + installs: 250 + author: "taotao7" + repo: "https://github.com/taotao7/neoseoul-theme" + url: "https://marketplace.visualstudio.com/items?itemName=taotao7.neo-seoul-theme" +colors: + bg: "#3A3A3A" + fg: "#D0D0D0" + black: "#3A3A3A" + red: "#E12672" + green: "#719872" + yellow: "#FFD787" + blue: "#7299BC" + magenta: "#E19972" + cyan: "#98BCBD" + white: "#D0D0D0" + brightBlack: "#565656" + brightRed: "#BF2172" + brightGreen: "#98BC99" + brightYellow: "#FFDE99" + brightBlue: "#98BEDE" + brightMagenta: "#FFBD98" + brightCyan: "#BCDEDE" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 70.2 + black: 0 + red: 24.7 + green: 33.9 + yellow: 77.6 + blue: 37.2 + magenta: 48.3 + cyan: 54.6 + white: 70.2 + brightBlack: 8.6 + brightRed: 16.9 + brightGreen: 53.2 + brightYellow: 81.1 + brightBlue: 57 + brightMagenta: 67.5 + brightCyan: 74.7 + brightWhite: 90.8 diff --git a/themes/neo-seoul-light.yaml b/themes/neo-seoul-light.yaml new file mode 100644 index 00000000..698bbdc3 --- /dev/null +++ b/themes/neo-seoul-light.yaml @@ -0,0 +1,49 @@ +name: "Neo Seoul Light" +source: + marketplace_id: "taotao7.neo-seoul-theme" + version: "0.0.3" + installs: 250 + author: "taotao7" + repo: "https://github.com/taotao7/neoseoul-theme" + url: "https://marketplace.visualstudio.com/items?itemName=taotao7.neo-seoul-theme" +colors: + bg: "#DADADA" + fg: "#4E4E4E" + black: "#DADADA" + red: "#BF2172" + green: "#719872" + yellow: "#875F5F" + blue: "#25709A" + magenta: "#875F5F" + cyan: "#009799" + white: "#4E4E4E" + brightBlack: "#C8C8C8" + brightRed: "#E12672" + brightGreen: "#98BC99" + brightYellow: "#FFDE99" + brightBlue: "#98BEDE" + brightMagenta: "#FFBD98" + brightCyan: "#BCDEDE" + brightWhite: "#262626" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 67.1 + black: 0 + red: 55.3 + green: 38.2 + yellow: 55.6 + blue: 55.1 + magenta: 55.6 + cyan: 41 + white: 67.1 + brightBlack: 7.9 + brightRed: 47.4 + brightGreen: 19.5 + brightYellow: 0 + brightBlue: 15.9 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 80.4 diff --git a/themes/neo-vscode-theme.yaml b/themes/neo-vscode-theme.yaml new file mode 100644 index 00000000..9d92567a --- /dev/null +++ b/themes/neo-vscode-theme.yaml @@ -0,0 +1,49 @@ +name: "neo-vscode-theme" +source: + marketplace_id: "palashmon.theme-neo" + version: "1.1.1" + installs: 2099 + author: "Palash Mondal" + repo: "https://github.com/palashmon/neo-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=palashmon.theme-neo" +colors: + bg: "#0B1B2D" + fg: "#89C4F4" + black: "#000000" + red: "#F64747" + green: "#3AD900" + yellow: "#65E6B8" + blue: "#0088FF" + magenta: "#DDA0DD" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#F64747" + brightGreen: "#3AD900" + brightYellow: "#65E6B8" + brightBlue: "#0088FF" + brightMagenta: "#DDA0DD" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: 253 + contrast: + fg: 66 + black: 0 + red: 38.5 + green: 65.8 + yellow: 76.7 + blue: 38.3 + magenta: 60.6 + cyan: 92.3 + white: 106.4 + brightBlack: 14.2 + brightRed: 38.5 + brightGreen: 65.8 + brightYellow: 76.7 + brightBlue: 38.3 + brightMagenta: 60.6 + brightCyan: 92.3 + brightWhite: 0 diff --git a/themes/neodark.yaml b/themes/neodark.yaml new file mode 100644 index 00000000..639c6cb8 --- /dev/null +++ b/themes/neodark.yaml @@ -0,0 +1,49 @@ +name: "Neodark+" +source: + marketplace_id: "Henriquehnnm.Neo-plus" + version: "1.3.9" + installs: 59 + author: "Henrique" + repo: "https://github.com/Henriquehnnm/neoplus" + url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.Neo-plus" +colors: + bg: "#1E1E1E" + fg: "#F5F5F5" + black: "#000000" + red: "#FBA6AC" + green: "#BCF8FF" + yellow: "#F9E9C5" + blue: "#A2CDF0" + magenta: "#F0BFFF" + cyan: "#A2CDF0" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FBA6AC" + brightGreen: "#BCF8FF" + brightYellow: "#F9E9C5" + brightBlue: "#A2CDF0" + brightMagenta: "#F0BFFF" + brightCyan: "#A2CDF0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 99.5 + black: 0 + red: 65.1 + green: 94.6 + yellow: 92.5 + blue: 71.4 + magenta: 76.2 + cyan: 71.4 + white: 89.2 + brightBlack: 21.2 + brightRed: 65.1 + brightGreen: 94.6 + brightYellow: 92.5 + brightBlue: 71.4 + brightMagenta: 76.2 + brightCyan: 71.4 + brightWhite: 89.2 diff --git a/themes/neofusion.yaml b/themes/neofusion.yaml new file mode 100644 index 00000000..49161b58 --- /dev/null +++ b/themes/neofusion.yaml @@ -0,0 +1,49 @@ +name: "Neofusion" +source: + marketplace_id: "diegoulloao.neofusion-theme" + version: "1.0.6" + installs: 197 + author: "diegoulloao" + repo: "https://github.com/diegoulloao/neofusion.vscode" + url: "https://marketplace.visualstudio.com/items?itemName=diegoulloao.neofusion-theme" +colors: + bg: "#06101E" + fg: "#FD5E3A" + black: "#070F1C" + red: "#EA6847" + green: "#5DB2F8" + yellow: "#5DB2F8" + blue: "#2F516C" + magenta: "#D943A8" + cyan: "#86DBF5" + white: "#E0D9C7" + brightBlack: "#2F516C" + brightRed: "#D943A8" + brightGreen: "#EA6847" + brightYellow: "#86DBF5" + brightBlue: "#5DB2F8" + brightMagenta: "#D943A8" + brightCyan: "#EA6847" + brightWhite: "#E0D9C7" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 44.7 + black: 0 + red: 42.8 + green: 56.8 + yellow: 56.8 + blue: 13 + magenta: 35.4 + cyan: 77.1 + white: 83.3 + brightBlack: 13 + brightRed: 35.4 + brightGreen: 42.8 + brightYellow: 77.1 + brightBlue: 56.8 + brightMagenta: 35.4 + brightCyan: 42.8 + brightWhite: 83.3 diff --git a/themes/neogenesis.yaml b/themes/neogenesis.yaml new file mode 100644 index 00000000..f6df7574 --- /dev/null +++ b/themes/neogenesis.yaml @@ -0,0 +1,49 @@ +name: "Neogenesis" +source: + marketplace_id: "Neogenesis.neogenesis-theme" + version: "0.0.4" + installs: 597 + author: "Neogenesis" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Neogenesis.neogenesis-theme" +colors: + bg: "#0A0525" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#8EFF4D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#2CDBE7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 284 + contrast: + fg: 85.9 + black: 0 + red: 40 + green: 68 + yellow: 90.7 + blue: 56.6 + magenta: 54.5 + cyan: 60.4 + white: 107.6 + brightBlack: 16.3 + brightRed: 40 + brightGreen: 68 + brightYellow: 94.4 + brightBlue: 56.6 + brightMagenta: 54.5 + brightCyan: 72.9 + brightWhite: 107.6 diff --git a/themes/neokai.yaml b/themes/neokai.yaml new file mode 100644 index 00000000..a58c4848 --- /dev/null +++ b/themes/neokai.yaml @@ -0,0 +1,49 @@ +name: "Neokai" +source: + marketplace_id: "Henriquehnnm.Neo-plus" + version: "1.3.9" + installs: 59 + author: "Henrique" + repo: "https://github.com/Henriquehnnm/neoplus" + url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.Neo-plus" +colors: + bg: "#322F2F" + fg: "#EAEAEA" + black: "#000000" + red: "#CCB0FF" + green: "#CFF584" + yellow: "#F7D7B1" + blue: "#66D9EF" + magenta: "#FF7BAA" + cyan: "#66D9EF" + white: "#EAEAEA" + brightBlack: "#666666" + brightRed: "#CCB0FF" + brightGreen: "#CFF584" + brightYellow: "#F7D7B1" + brightBlue: "#66D9EF" + brightMagenta: "#FF7BAA" + brightCyan: "#66D9EF" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 89.2 + black: 0 + red: 62.1 + green: 87.6 + yellow: 80.4 + blue: 69.4 + magenta: 49.8 + cyan: 69.4 + white: 89.2 + brightBlack: 18 + brightRed: 62.1 + brightGreen: 87.6 + brightYellow: 80.4 + brightBlue: 69.4 + brightMagenta: 49.8 + brightCyan: 69.4 + brightWhite: 89.2 diff --git a/themes/neon-black.yaml b/themes/neon-black.yaml new file mode 100644 index 00000000..b8177252 --- /dev/null +++ b/themes/neon-black.yaml @@ -0,0 +1,49 @@ +name: "Neon-Black" +source: + marketplace_id: "Ethan04.Neon-Black" + version: "0.0.1" + installs: 873 + author: "Ethan04" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Ethan04.Neon-Black" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#949494" + red: "#FF0000" + green: "#00FF9D" + yellow: "#FFFF00" + blue: "#0079FF" + magenta: "#FF00FF" + cyan: "#00CDFF" + white: "#E5E5E5" + brightBlack: "#949494" + brightRed: "#FF0000" + brightGreen: "#00FF98" + brightYellow: "#FFFF00" + brightBlue: "#0079FF" + brightMagenta: "#FF00FF" + brightCyan: "#00CDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 44.6 + red: 37.5 + green: 88.3 + yellow: 102.7 + blue: 34.8 + magenta: 46.2 + cyan: 67.7 + white: 91 + brightBlack: 44.6 + brightRed: 37.5 + brightGreen: 88.2 + brightYellow: 102.7 + brightBlue: 34.8 + brightMagenta: 46.2 + brightCyan: 67.7 + brightWhite: 107.9 diff --git a/themes/neon-color-dark-theme.yaml b/themes/neon-color-dark-theme.yaml new file mode 100644 index 00000000..abdf97ae --- /dev/null +++ b/themes/neon-color-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Neon Color - Dark Theme" +source: + marketplace_id: "mdmarufsarker.maruf-sarker" + version: "0.1.1" + installs: 29145 + author: "Md. Maruf Sarker" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" +colors: + bg: "#0C1924" + fg: "#00DBFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 245 + contrast: + fg: 73.1 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/neon-cyber.yaml b/themes/neon-cyber.yaml new file mode 100644 index 00000000..ceb5a5ab --- /dev/null +++ b/themes/neon-cyber.yaml @@ -0,0 +1,49 @@ +name: "Neon Cyber" +source: + marketplace_id: "CodewithBismillah.axion-themes" + version: "1.1.1" + installs: 111 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Axion-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.axion-themes" +colors: + bg: "#0A0A0F" + fg: "#E0E0FF" + black: "#000000" + red: "#FF0080" + green: "#00FF80" + yellow: "#FFFF00" + blue: "#0080FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF4080" + brightGreen: "#40FF80" + brightYellow: "#FFFF40" + brightBlue: "#4080FF" + brightMagenta: "#FF40FF" + brightCyan: "#40FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 89.3 + black: 0 + red: 39.1 + green: 87.4 + yellow: 102.5 + blue: 36.9 + magenta: 46.1 + cyan: 92 + white: 107.7 + brightBlack: 22.9 + brightRed: 42.3 + brightGreen: 88 + brightYellow: 102.7 + brightBlue: 37.9 + brightMagenta: 49 + brightCyan: 92.6 + brightWhite: 107.7 diff --git a/themes/neon-cyberpunk.yaml b/themes/neon-cyberpunk.yaml new file mode 100644 index 00000000..7183113c --- /dev/null +++ b/themes/neon-cyberpunk.yaml @@ -0,0 +1,49 @@ +name: "Neon Cyberpunk" +source: + marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" + version: "1.0.0" + installs: 1547 + author: "Little Waterfall" + repo: "https://github.com/LittleWaterfall/vscode-neon-glow" + url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" +colors: + bg: "#000010" + fg: "#F0F0FF" + black: "#102030" + red: "#FF0040" + green: "#00FF40" + yellow: "#FF8000" + blue: "#0080FF" + magenta: "#FF0080" + cyan: "#00FFFF" + white: "#F0F0FF" + brightBlack: "#404060" + brightRed: "#FF4060" + brightGreen: "#40FF60" + brightYellow: "#FFA040" + brightBlue: "#40A0FF" + brightMagenta: "#FF40A0" + brightCyan: "#40FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 98.7 + black: 0 + red: 37.8 + green: 86.7 + yellow: 53.3 + blue: 37 + magenta: 39.2 + cyan: 92.1 + white: 98.7 + brightBlack: 9.5 + brightRed: 41.6 + brightGreen: 87.6 + brightYellow: 63.2 + brightBlue: 49.4 + brightMagenta: 43.6 + brightCyan: 92.7 + brightWhite: 107.9 diff --git a/themes/neon-dream-code.yaml b/themes/neon-dream-code.yaml new file mode 100644 index 00000000..fc81c73e --- /dev/null +++ b/themes/neon-dream-code.yaml @@ -0,0 +1,49 @@ +name: "Neon Dream Code" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#0A0E27" + fg: "#E4F0FB" + black: "#0A0E27" + red: "#FF2A6D" + green: "#05FFA1" + yellow: "#FFE600" + blue: "#5C9FFF" + magenta: "#BD5EFF" + cyan: "#00D4E8" + white: "#B8C5D6" + brightBlack: "#3D4A7A" + brightRed: "#FF2A6D" + brightGreen: "#05FFA1" + brightYellow: "#FFFB00" + brightBlue: "#7AB8FF" + brightMagenta: "#D896FF" + brightCyan: "#00F0FF" + brightWhite: "#E4F0FB" +meta: + mode: "dark" + accent: "red" + hue: 273 + contrast: + fg: 96.5 + black: 0 + red: 39.4 + green: 87.9 + yellow: 90.4 + blue: 49.7 + magenta: 40.5 + cyan: 69.1 + white: 70.2 + brightBlack: 12.4 + brightRed: 39.4 + brightGreen: 87.9 + brightYellow: 100.2 + brightBlue: 61.4 + brightMagenta: 59.5 + brightCyan: 84 + brightWhite: 96.5 diff --git a/themes/neon-dreams-neobrutalist.yaml b/themes/neon-dreams-neobrutalist.yaml new file mode 100644 index 00000000..c3b786cb --- /dev/null +++ b/themes/neon-dreams-neobrutalist.yaml @@ -0,0 +1,49 @@ +name: "Neon Dreams Neobrutalist" +source: + marketplace_id: "CursorThemes.neon-dreams-theme" + version: "1.5.0" + installs: 613 + author: "Cursor Themes" + repo: "https://github.com/Cursor-Themes/neon_dreams" + url: "https://marketplace.visualstudio.com/items?itemName=CursorThemes.neon-dreams-theme" +colors: + bg: "#1A0F1A" + fg: "#E8D8E8" + black: "#1A0F1A" + red: "#DD77AA" + green: "#99DDAA" + yellow: "#DDAA77" + blue: "#88CCDD" + magenta: "#DD77DD" + cyan: "#77DDCC" + white: "#E8D8E8" + brightBlack: "#5A4A5A" + brightRed: "#EE88BB" + brightGreen: "#AAEEBB" + brightYellow: "#EEBB88" + brightBlue: "#99DDEE" + brightMagenta: "#EE88EE" + brightCyan: "#88EECC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 327 + contrast: + fg: 85.2 + black: 0 + red: 46.5 + green: 76 + yellow: 61 + blue: 68.9 + magenta: 49.1 + cyan: 74.9 + white: 85.2 + brightBlack: 13.2 + brightRed: 55 + brightGreen: 86.3 + brightYellow: 70.7 + brightBlue: 78.9 + brightMagenta: 57.8 + brightCyan: 84.2 + brightWhite: 107.2 diff --git a/themes/neon-dusk.yaml b/themes/neon-dusk.yaml new file mode 100644 index 00000000..618bbf65 --- /dev/null +++ b/themes/neon-dusk.yaml @@ -0,0 +1,49 @@ +name: "Neon Dusk" +source: + marketplace_id: "manufdz19.neon-dusk-theme" + version: "0.0.1" + installs: 9 + author: "manufdz19" + repo: "https://github.com/manufdz19/neon-dusk-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=manufdz19.neon-dusk-theme" +colors: + bg: "#1D1D21" + fg: "#E0E0E0" + black: "#151518" + red: "#FF5370" + green: "#70D0B3" + yellow: "#E8D06A" + blue: "#3A9AA8" + magenta: "#D2529F" + cyan: "#70D0B3" + white: "#F5F5F5" + brightBlack: "#D2529F" + brightRed: "#FF5370" + brightGreen: "#70D0B3" + brightYellow: "#E8D06A" + brightBlue: "#3A9AA8" + brightMagenta: "#D2529F" + brightCyan: "#70D0B3" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 86.1 + black: 0 + red: 42.9 + green: 66.2 + yellow: 76.6 + blue: 39.9 + magenta: 34.6 + cyan: 66.2 + white: 99.5 + brightBlack: 34.6 + brightRed: 42.9 + brightGreen: 66.2 + brightYellow: 76.6 + brightBlue: 39.9 + brightMagenta: 34.6 + brightCyan: 66.2 + brightWhite: 99.5 diff --git a/themes/neon-forest.yaml b/themes/neon-forest.yaml new file mode 100644 index 00000000..9efc5f07 --- /dev/null +++ b/themes/neon-forest.yaml @@ -0,0 +1,49 @@ +name: "Neon Forest" +source: + marketplace_id: "maxludden.neon-forest" + version: "0.0.1" + installs: 803 + author: "maxludden" + repo: "https://github.com/maxludden/neon-forest" + url: "https://marketplace.visualstudio.com/items?itemName=maxludden.neon-forest" +colors: + bg: "#000F03" + fg: "#D4D4D4" + black: "#4D4D4D" + red: "#BA4A4A" + green: "#38D50B" + yellow: "#96962F" + blue: "#2472C8" + magenta: "#FF00FF" + cyan: "#32A9C7" + white: "#E5E5E5" + brightBlack: "#686868" + brightRed: "#E41414" + brightGreen: "#00FF00" + brightYellow: "#CDCD1D" + brightBlue: "#3B8EEA" + brightMagenta: "#FF96FF" + brightCyan: "#80E4FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 150 + contrast: + fg: 80.2 + black: 12.8 + red: 27.3 + green: 65 + yellow: 43.2 + blue: 28.2 + magenta: 45.9 + cyan: 48.8 + white: 90.8 + brightBlack: 23.6 + brightRed: 30.8 + brightGreen: 86.2 + brightYellow: 72.3 + brightBlue: 40.7 + brightMagenta: 66.4 + brightCyan: 81.6 + brightWhite: 107.6 diff --git a/themes/neon-glow.yaml b/themes/neon-glow.yaml new file mode 100644 index 00000000..e1572c48 --- /dev/null +++ b/themes/neon-glow.yaml @@ -0,0 +1,49 @@ +name: "Neon Glow" +source: + marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" + version: "1.0.0" + installs: 1547 + author: "Little Waterfall" + repo: "https://github.com/LittleWaterfall/vscode-neon-glow" + url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" +colors: + bg: "#0A0A14" + fg: "#E0E6FF" + black: "#1A1A2E" + red: "#FF3366" + green: "#00FF80" + yellow: "#FFAA00" + blue: "#3366FF" + magenta: "#FF0080" + cyan: "#00FFFF" + white: "#E0E6FF" + brightBlack: "#4A4A66" + brightRed: "#FF6699" + brightGreen: "#66FFAA" + brightYellow: "#FFCC66" + brightBlue: "#6699FF" + brightMagenta: "#FF66AA" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 91.9 + black: 0 + red: 40.2 + green: 87.4 + yellow: 66.3 + blue: 29.7 + magenta: 39.1 + cyan: 92 + white: 91.9 + brightBlack: 12.7 + brightRed: 49.2 + brightGreen: 90.3 + brightYellow: 80.1 + brightBlue: 48.4 + brightMagenta: 49.9 + brightCyan: 93.8 + brightWhite: 107.7 diff --git a/themes/neon-green-light.yaml b/themes/neon-green-light.yaml new file mode 100644 index 00000000..227cb2f9 --- /dev/null +++ b/themes/neon-green-light.yaml @@ -0,0 +1,49 @@ +name: "Neon Green — Light" +source: + marketplace_id: "luongnv89.neon-green-theme" + version: "1.2.1" + installs: 31 + author: "luongnv89" + repo: "https://github.com/luongnv89/vscode-theme-neon-green" + url: "https://marketplace.visualstudio.com/items?itemName=luongnv89.neon-green-theme" +colors: + bg: "#F0FAF0" + fg: "#2A2D3E" + black: "#1B1A2E" + red: "#C4284A" + green: "#0D9E00" + yellow: "#B37800" + blue: "#8394FF" + magenta: "#BF41FF" + cyan: "#00C8B4" + white: "#D9E0EB" + brightBlack: "#3E6E40" + brightRed: "#E8405A" + brightGreen: "#18B818" + brightYellow: "#D09000" + brightBlue: "#A1AFFF" + brightMagenta: "#D770FF" + brightCyan: "#33EAD0" + brightWhite: "#F0F3FA" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 95.5 + black: 99.2 + red: 71.8 + green: 57.7 + yellow: 60 + blue: 48.3 + magenta: 60.4 + cyan: 36.1 + white: 11.5 + brightBlack: 75.1 + brightRed: 60.9 + brightGreen: 46.3 + brightYellow: 48 + brightBlue: 35.9 + brightMagenta: 47.9 + brightCyan: 19 + brightWhite: 0 diff --git a/themes/neon-green-midnight.yaml b/themes/neon-green-midnight.yaml new file mode 100644 index 00000000..21ab3614 --- /dev/null +++ b/themes/neon-green-midnight.yaml @@ -0,0 +1,49 @@ +name: "Neon Green — Midnight" +source: + marketplace_id: "luongnv89.neon-green-theme" + version: "1.2.1" + installs: 31 + author: "luongnv89" + repo: "https://github.com/luongnv89/vscode-theme-neon-green" + url: "https://marketplace.visualstudio.com/items?itemName=luongnv89.neon-green-theme" +colors: + bg: "#0E0E1A" + fg: "#D5DCE8" + black: "#1B1A2E" + red: "#FF5555" + green: "#39FF14" + yellow: "#FFB347" + blue: "#8394FF" + magenta: "#BF41FF" + cyan: "#00FFE2" + white: "#D9E0EB" + brightBlack: "#505370" + brightRed: "#FF7777" + brightGreen: "#4DFF4D" + brightYellow: "#FFC87D" + brightBlue: "#A1AFFF" + brightMagenta: "#D770FF" + brightCyan: "#33FFEB" + brightWhite: "#F0F3FA" +meta: + mode: "dark" + accent: "green" + hue: 283 + contrast: + fg: 84.7 + black: 0 + red: 44 + green: 86.6 + yellow: 69.7 + blue: 48.5 + magenta: 36.2 + cyan: 90.4 + white: 87.1 + brightBlack: 15.7 + brightRed: 51.8 + brightGreen: 87.4 + brightYellow: 78.7 + brightBlue: 61.3 + brightMagenta: 48.9 + brightCyan: 91.1 + brightWhite: 99.5 diff --git a/themes/neon-lights.yaml b/themes/neon-lights.yaml new file mode 100644 index 00000000..a8238242 --- /dev/null +++ b/themes/neon-lights.yaml @@ -0,0 +1,49 @@ +name: "Neon Lights" +source: + marketplace_id: "annliu.neon-lights" + version: "0.0.1" + installs: 2 + author: "annliu" + repo: "git+https://github.com/ann-liu/neon-lights-theme" + url: "https://marketplace.visualstudio.com/items?itemName=annliu.neon-lights" +colors: + bg: "#2F2D31" + fg: "#E6E6E6" + black: "#292929" + red: "#FF2424" + green: "#24FF57" + yellow: "#E8FF3D" + blue: "#38A9FF" + magenta: "#FF40D6" + cyan: "#02B2FD" + white: "#B0B0B0" + brightBlack: "#4F4F4F" + brightRed: "#FF4242" + brightGreen: "#4FFF78" + brightYellow: "#EFFF75" + brightBlue: "#57B6FF" + brightMagenta: "#FF69DF" + brightCyan: "#40C6FF" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87 + black: 0 + red: 33.8 + green: 82.5 + yellow: 95.1 + blue: 48.1 + magenta: 41.7 + cyan: 51.1 + white: 54.9 + brightBlack: 9.2 + brightRed: 36.7 + brightGreen: 83.8 + brightYellow: 96.7 + brightBlue: 54.5 + brightMagenta: 48.7 + brightCyan: 60.6 + brightWhite: 71.1 diff --git a/themes/neon-matrix.yaml b/themes/neon-matrix.yaml new file mode 100644 index 00000000..6c7be6c8 --- /dev/null +++ b/themes/neon-matrix.yaml @@ -0,0 +1,49 @@ +name: "Neon Matrix" +source: + marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" + version: "1.0.0" + installs: 1547 + author: "Little Waterfall" + repo: "https://github.com/LittleWaterfall/vscode-neon-glow" + url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" +colors: + bg: "#000000" + fg: "#00FF00" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0080FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#808080" + brightRed: "#FF8080" + brightGreen: "#80FF80" + brightYellow: "#FFFF80" + brightBlue: "#8080FF" + brightMagenta: "#FF80FF" + brightCyan: "#80FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 86.5 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 37.1 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 34.8 + brightRed: 54.7 + brightGreen: 90.8 + brightYellow: 103.7 + brightBlue: 42.1 + brightMagenta: 60.6 + brightCyan: 95.3 + brightWhite: 107.9 diff --git a/themes/neon-noir.yaml b/themes/neon-noir.yaml new file mode 100644 index 00000000..f6d0d611 --- /dev/null +++ b/themes/neon-noir.yaml @@ -0,0 +1,49 @@ +name: "Neon Noir" +source: + marketplace_id: "codeM.mystic-dark-collection" + version: "0.1.0" + installs: 86 + author: "Mustafa Özdemir" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=codeM.mystic-dark-collection" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0080FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0080FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 37.1 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 23 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 37.1 + brightMagenta: 46.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/neon-ocean.yaml b/themes/neon-ocean.yaml new file mode 100644 index 00000000..e753575c --- /dev/null +++ b/themes/neon-ocean.yaml @@ -0,0 +1,49 @@ +name: "Neon Ocean" +source: + marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" + version: "1.0.0" + installs: 1547 + author: "Little Waterfall" + repo: "https://github.com/LittleWaterfall/vscode-neon-glow" + url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" +colors: + bg: "#000510" + fg: "#00FFFF" + black: "#000000" + red: "#FF6B6B" + green: "#00FF80" + yellow: "#FFA500" + blue: "#00D4FF" + magenta: "#B19CD9" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#4A90E2" + brightRed: "#FF8E8E" + brightGreen: "#80FF9A" + brightYellow: "#FFB84D" + brightBlue: "#66E0FF" + brightMagenta: "#D4B3FF" + brightCyan: "#80FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 251 + contrast: + fg: 92.1 + black: 0 + red: 49.1 + green: 87.5 + yellow: 64.7 + blue: 70.9 + magenta: 54.1 + cyan: 92.1 + white: 107.8 + brightBlack: 41.7 + brightRed: 59 + brightGreen: 91.4 + brightYellow: 71.9 + brightBlue: 78.6 + brightMagenta: 69.3 + brightCyan: 95.2 + brightWhite: 107.8 diff --git a/themes/neon-palette-themes-blue.yaml b/themes/neon-palette-themes-blue.yaml new file mode 100644 index 00000000..f93b1a9c --- /dev/null +++ b/themes/neon-palette-themes-blue.yaml @@ -0,0 +1,49 @@ +name: "Neon Palette Themes (Blue)" +source: + marketplace_id: "Jofa8.neon-palette-themes" + version: "0.0.1" + installs: 1870 + author: "Jofa8" + repo: "https://github.com/Jofa8/neon-palette-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Jofa8.neon-palette-themes" +colors: + bg: "#12130F" + fg: "#D0CCD1" + black: "#000000" + red: "#CD3131" + green: "#7FE960" + yellow: "#FFEC03" + blue: "#03B4FF" + magenta: "#FF5CE4" + cyan: "#02E1D9" + white: "#D0CCD1" + brightBlack: "#8C8C8C" + brightRed: "#FF5E5E" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75.8 + black: 0 + red: 27.1 + green: 78.3 + yellow: 93 + blue: 56.1 + magenta: 50.6 + cyan: 74.5 + white: 75.8 + brightBlack: 40 + brightRed: 45.6 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/neon-purple-old-school.yaml b/themes/neon-purple-old-school.yaml new file mode 100644 index 00000000..7fb0b843 --- /dev/null +++ b/themes/neon-purple-old-school.yaml @@ -0,0 +1,49 @@ +name: "NEON PURPLE OLD-SCHOOL" +source: + marketplace_id: "guicastro13.onebitcode-theme" + version: "0.0.5" + installs: 2293 + author: "guicastro13" + repo: "https://github.com/guicastro13/onebitcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" +colors: + bg: "#1D0038" + fg: "#D4D4D4" + black: "#9A00E0" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: 301 + contrast: + fg: 79.5 + black: 22.9 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 106.9 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/neon-shimmer-amethyst-core.yaml b/themes/neon-shimmer-amethyst-core.yaml new file mode 100644 index 00000000..b7a1c99e --- /dev/null +++ b/themes/neon-shimmer-amethyst-core.yaml @@ -0,0 +1,49 @@ +name: "Neon Shimmer (Amethyst Core)" +source: + marketplace_id: "piperunner.neon-shimmer" + version: "1.2.0" + installs: 16855 + author: "Pipe Runner" + repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" + url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" +colors: + bg: "#070012" + fg: "#E6D9FF" + black: "#070012" + red: "#8E4AF5" + green: "#73C991" + yellow: "#FFDF7E" + blue: "#B377FF" + magenta: "#B377FF" + cyan: "#04D9C4" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#8E4AF5" + brightGreen: "#04D9C4" + brightYellow: "#EE4CFC" + brightBlue: "#A78BFF" + brightMagenta: "#D1A3FF" + brightCyan: "#45FFED" + brightWhite: "#E6D9FF" +meta: + mode: "dark" + accent: "pink" + hue: 304 + contrast: + fg: 87.1 + black: 0 + red: 29.6 + green: 63.7 + yellow: 88.8 + blue: 45.4 + magenta: 45.4 + cyan: 70.2 + white: 91 + brightBlack: 23 + brightRed: 29.6 + brightGreen: 70.2 + brightYellow: 46.7 + brightBlue: 49.6 + brightMagenta: 63.2 + brightCyan: 91.9 + brightWhite: 87.1 diff --git a/themes/neon-shimmer-bubblegum-punk.yaml b/themes/neon-shimmer-bubblegum-punk.yaml new file mode 100644 index 00000000..2fa96007 --- /dev/null +++ b/themes/neon-shimmer-bubblegum-punk.yaml @@ -0,0 +1,49 @@ +name: "Neon Shimmer (Bubblegum Punk)" +source: + marketplace_id: "piperunner.neon-shimmer" + version: "1.2.0" + installs: 16855 + author: "Pipe Runner" + repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" + url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" +colors: + bg: "#080006" + fg: "#FFD9F2" + black: "#080006" + red: "#EE4CFC" + green: "#73C991" + yellow: "#FFDF7E" + blue: "#EE05F2" + magenta: "#EE4CFC" + cyan: "#FFFFFF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F22294" + brightGreen: "#8E4AF5" + brightYellow: "#FFDF7E" + brightBlue: "#A78BFF" + brightMagenta: "#EE4CFC" + brightCyan: "#45FFED" + brightWhite: "#FFD9F2" +meta: + mode: "dark" + accent: "pink" + hue: 335 + contrast: + fg: 90.2 + black: 0 + red: 46.7 + green: 63.7 + yellow: 88.8 + blue: 41.4 + magenta: 46.7 + cyan: 107.9 + white: 91 + brightBlack: 23 + brightRed: 37.5 + brightGreen: 29.7 + brightYellow: 88.8 + brightBlue: 49.7 + brightMagenta: 46.7 + brightCyan: 92 + brightWhite: 90.2 diff --git a/themes/neon-shimmer-crimson-drive.yaml b/themes/neon-shimmer-crimson-drive.yaml new file mode 100644 index 00000000..44c2ea87 --- /dev/null +++ b/themes/neon-shimmer-crimson-drive.yaml @@ -0,0 +1,49 @@ +name: "Neon Shimmer (Crimson Drive)" +source: + marketplace_id: "piperunner.neon-shimmer" + version: "1.2.0" + installs: 16855 + author: "Pipe Runner" + repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" + url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" +colors: + bg: "#0A0103" + fg: "#FFB3D9" + black: "#0A0103" + red: "#E64471" + green: "#73C991" + yellow: "#FFDF7E" + blue: "#FF845E" + magenta: "#E64471" + cyan: "#FFFFFF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#E64471" + brightGreen: "#FF845E" + brightYellow: "#FFDF7E" + brightBlue: "#A78BFF" + brightMagenta: "#FF487B" + brightCyan: "#45FFED" + brightWhite: "#FFB3D9" +meta: + mode: "dark" + accent: "red" + hue: 2 + contrast: + fg: 74.1 + black: 0 + red: 36.7 + green: 63.7 + yellow: 88.8 + blue: 55 + magenta: 36.7 + cyan: 107.9 + white: 91 + brightBlack: 23 + brightRed: 36.7 + brightGreen: 55 + brightYellow: 88.8 + brightBlue: 49.6 + brightMagenta: 43.3 + brightCyan: 92 + brightWhite: 74.1 diff --git a/themes/neon-shimmer.yaml b/themes/neon-shimmer.yaml new file mode 100644 index 00000000..e163bc83 --- /dev/null +++ b/themes/neon-shimmer.yaml @@ -0,0 +1,49 @@ +name: "Neon Shimmer" +source: + marketplace_id: "piperunner.neon-shimmer" + version: "1.2.0" + installs: 16855 + author: "Pipe Runner" + repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" + url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#E64471" + green: "#73C991" + yellow: "#FFD11B" + blue: "#8968FF" + magenta: "#EE4CFC" + cyan: "#04D9C4" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF487B" + brightGreen: "#A6E422" + brightYellow: "#FFDF7E" + brightBlue: "#A78BFF" + brightMagenta: "#F942FF" + brightCyan: "#45FFED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 36.7 + green: 63.8 + yellow: 81.7 + blue: 36.3 + magenta: 46.7 + cyan: 70.2 + white: 91 + brightBlack: 23 + brightRed: 43.3 + brightGreen: 78.9 + brightYellow: 88.8 + brightBlue: 49.7 + brightMagenta: 48 + brightCyan: 92 + brightWhite: 107.9 diff --git a/themes/neon-side.yaml b/themes/neon-side.yaml new file mode 100644 index 00000000..5c260d91 --- /dev/null +++ b/themes/neon-side.yaml @@ -0,0 +1,49 @@ +name: "Neon Side" +source: + marketplace_id: "SebastianHT.fp" + version: "0.0.16" + installs: 290 + author: "Sebastian HT" + repo: "https://github.com/sebastian-huamani/Extencion-vs" + url: "https://marketplace.visualstudio.com/items?itemName=SebastianHT.fp" +colors: + bg: "#1A1818" + fg: "#959696" + black: "#231F20" + red: "#EE2E24" + green: "#00853E" + yellow: "#FFD204" + blue: "#009DDC" + magenta: "#98005D" + cyan: "#85CEBC" + white: "#D9D8D8" + brightBlack: "#737171" + brightRed: "#EE2E24" + brightGreen: "#00853E" + brightYellow: "#FFD204" + brightBlue: "#009DDC" + brightMagenta: "#98005D" + brightCyan: "#85CEBC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 44.4 + black: 0 + red: 33.8 + green: 28.2 + yellow: 80.9 + blue: 43.8 + magenta: 14.2 + cyan: 67.6 + white: 81.9 + brightBlack: 26.9 + brightRed: 33.8 + brightGreen: 28.2 + brightYellow: 80.9 + brightBlue: 43.8 + brightMagenta: 14.2 + brightCyan: 67.6 + brightWhite: 106.7 diff --git a/themes/neon-sunset.yaml b/themes/neon-sunset.yaml new file mode 100644 index 00000000..65e6d728 --- /dev/null +++ b/themes/neon-sunset.yaml @@ -0,0 +1,49 @@ +name: "Neon Sunset" +source: + marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" + version: "1.0.0" + installs: 1547 + author: "Little Waterfall" + repo: "https://github.com/LittleWaterfall/vscode-neon-glow" + url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" +colors: + bg: "#0A0500" + fg: "#FFAA00" + black: "#000000" + red: "#FF4444" + green: "#88FF00" + yellow: "#FFDD00" + blue: "#4488FF" + magenta: "#FF8844" + cyan: "#44FFFF" + white: "#FFFFFF" + brightBlack: "#CC6600" + brightRed: "#FF6666" + brightGreen: "#AAFF44" + brightYellow: "#FFEE44" + brightBlue: "#66AAFF" + brightMagenta: "#FFAA66" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 82 + contrast: + fg: 66.4 + black: 0 + red: 41.6 + green: 90.2 + yellow: 86.8 + blue: 40.8 + magenta: 55.8 + cyan: 92.8 + white: 107.8 + brightBlack: 36.4 + brightRed: 47.9 + brightGreen: 93 + brightYellow: 94.8 + brightBlue: 55 + brightMagenta: 67.2 + brightCyan: 93.9 + brightWhite: 107.8 diff --git a/themes/neon-synthwave.yaml b/themes/neon-synthwave.yaml new file mode 100644 index 00000000..d235272c --- /dev/null +++ b/themes/neon-synthwave.yaml @@ -0,0 +1,49 @@ +name: "Neon Synthwave" +source: + marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" + version: "1.0.0" + installs: 1547 + author: "Little Waterfall" + repo: "https://github.com/LittleWaterfall/vscode-neon-glow" + url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" +colors: + bg: "#1A0033" + fg: "#FFEEFF" + black: "#330066" + red: "#FF2080" + green: "#80FF80" + yellow: "#FF9900" + blue: "#8080FF" + magenta: "#FF80FF" + cyan: "#80FFFF" + white: "#FFEEFF" + brightBlack: "#663399" + brightRed: "#FF40A0" + brightGreen: "#A0FFA0" + brightYellow: "#FFB340" + brightBlue: "#A0A0FF" + brightMagenta: "#FFA0FF" + brightCyan: "#A0FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 301 + contrast: + fg: 99.2 + black: 0 + red: 39.1 + green: 90 + yellow: 59.9 + blue: 41.3 + magenta: 59.8 + cyan: 94.5 + white: 99.2 + brightBlack: 13 + brightRed: 42.8 + brightGreen: 93 + brightYellow: 69.2 + brightBlue: 55.2 + brightMagenta: 69 + brightCyan: 96.7 + brightWhite: 107.1 diff --git a/themes/neon-theme.yaml b/themes/neon-theme.yaml new file mode 100644 index 00000000..dcadde2f --- /dev/null +++ b/themes/neon-theme.yaml @@ -0,0 +1,49 @@ +name: "neon-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#202328" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 73.1 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 28.2 + cyan: 46 + white: 88.5 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.8 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/neon-trench-theme.yaml b/themes/neon-trench-theme.yaml new file mode 100644 index 00000000..21b83369 --- /dev/null +++ b/themes/neon-trench-theme.yaml @@ -0,0 +1,49 @@ +name: "Neon Trench Theme" +source: + marketplace_id: "WebCraftID.neontrench" + version: "1.0.1" + installs: 68 + author: "WebCraftID" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=WebCraftID.neontrench" +colors: + bg: "#00071B" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 107.7 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 107.7 diff --git a/themes/neon-violet.yaml b/themes/neon-violet.yaml new file mode 100644 index 00000000..2d6d6e18 --- /dev/null +++ b/themes/neon-violet.yaml @@ -0,0 +1,49 @@ +name: "Neon Violet" +source: + marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" + version: "1.0.0" + installs: 1547 + author: "Little Waterfall" + repo: "https://github.com/LittleWaterfall/vscode-neon-glow" + url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" +colors: + bg: "#050008" + fg: "#CC66FF" + black: "#000000" + red: "#FF3366" + green: "#88FF44" + yellow: "#FF8800" + blue: "#4488FF" + magenta: "#CC66FF" + cyan: "#44FFCC" + white: "#FFFFFF" + brightBlack: "#8844CC" + brightRed: "#FF6688" + brightGreen: "#AEFF66" + brightYellow: "#FFAA44" + brightBlue: "#66AAFF" + brightMagenta: "#EE88FF" + brightCyan: "#66FFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 317 + contrast: + fg: 45.2 + black: 0 + red: 40.4 + green: 90.4 + yellow: 55.5 + blue: 40.8 + magenta: 45.2 + cyan: 90.5 + white: 107.9 + brightBlack: 24.4 + brightRed: 48.8 + brightGreen: 93.8 + brightYellow: 66.8 + brightBlue: 55 + brightMagenta: 59.5 + brightCyan: 93.1 + brightWhite: 107.9 diff --git a/themes/neon.yaml b/themes/neon.yaml new file mode 100644 index 00000000..8881cbbc --- /dev/null +++ b/themes/neon.yaml @@ -0,0 +1,49 @@ +name: "Neon" +source: + marketplace_id: "luiciff.luiciff-theme" + version: "0.0.3" + installs: 141 + author: "luiciff" + repo: "https://github.com/luic1ff/vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=luiciff.luiciff-theme" +colors: + bg: "#232136" + fg: "#E0DEF4" + black: "#393552" + red: "#EB6F92" + green: "#3E8FB0" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#CA9EE6" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#3E8FB0" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#CA9EE6" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: 288 + contrast: + fg: 85.3 + black: 0 + red: 44.2 + green: 35.2 + yellow: 71.9 + blue: 69.7 + magenta: 58.7 + cyan: 56.3 + white: 85.3 + brightBlack: 39.6 + brightRed: 44.2 + brightGreen: 35.2 + brightYellow: 71.9 + brightBlue: 69.7 + brightMagenta: 58.7 + brightCyan: 56.3 + brightWhite: 85.3 diff --git a/themes/neonaska.yaml b/themes/neonaska.yaml new file mode 100644 index 00000000..67f9d07d --- /dev/null +++ b/themes/neonaska.yaml @@ -0,0 +1,49 @@ +name: "NeonAska" +source: + marketplace_id: "Askka.neon-aska-theme" + version: "0.0.3" + installs: 92 + author: "Askka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Askka.neon-aska-theme" +colors: + bg: "#1A181B" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.7 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.6 + cyan: 47.4 + white: 89.8 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/neonite.yaml b/themes/neonite.yaml new file mode 100644 index 00000000..b342b3da --- /dev/null +++ b/themes/neonite.yaml @@ -0,0 +1,49 @@ +name: "Neonite" +source: + marketplace_id: "MohamedElsherbiny.neonite-theme" + version: "1.3.0" + installs: 627 + author: "Mohamed Elsherbiny" + repo: "https://github.com/MoElsherbiny/vscode-neonite-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MohamedElsherbiny.neonite-theme" +colors: + bg: "#0A0E14" + fg: "#F0F4FC" + black: "#1A1E24" + red: "#FF6E6E" + green: "#76FF8F" + yellow: "#FFE68A" + blue: "#9D6CFF" + magenta: "#FF92DF" + cyan: "#6CF3FF" + white: "#FFFFFF" + brightBlack: "#4A4F5B" + brightRed: "#FF9191" + brightGreen: "#9AFFA9" + brightYellow: "#FFF4A3" + brightBlue: "#B28CFF" + brightMagenta: "#FFACE5" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + contrast: + fg: 100.2 + black: 0 + red: 49.5 + green: 90.3 + yellow: 91.9 + blue: 39.3 + magenta: 63.3 + cyan: 87.9 + white: 107.6 + brightBlack: 13.5 + brightRed: 59.7 + brightGreen: 93.3 + brightYellow: 98.9 + brightBlue: 51.1 + brightMagenta: 71.9 + brightCyan: 97.5 + brightWhite: 107.6 diff --git a/themes/neonmist.yaml b/themes/neonmist.yaml new file mode 100644 index 00000000..067ee25d --- /dev/null +++ b/themes/neonmist.yaml @@ -0,0 +1,49 @@ +name: "neonmist" +source: + marketplace_id: "locafe.neonmist" + version: "0.0.1" + installs: 39 + author: "lo.cafe" + repo: "https://github.com/neonmist/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=locafe.neonmist" +colors: + bg: "#252335" + fg: "#999999" + black: "#171623" + red: "#FF9A9A" + green: "#A3E7B6" + yellow: "#FFDEA2" + blue: "#A6C8FF" + magenta: "#B9B0FF" + cyan: "#6DDAF5" + white: "#D1D1E0" + brightBlack: "#666666" + brightRed: "#FFC0C0" + brightGreen: "#C9FFD8" + brightYellow: "#FFEDCB" + brightBlue: "#C4DAFF" + brightMagenta: "#D3CEFF" + brightCyan: "#ABEEFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 289 + contrast: + fg: 44.3 + black: 0 + red: 60.2 + green: 79.8 + yellow: 86.3 + blue: 69.4 + magenta: 61.8 + cyan: 72.6 + white: 76.4 + brightBlack: 20.1 + brightRed: 74.9 + brightGreen: 96.5 + brightYellow: 94.3 + brightBlue: 80.4 + brightMagenta: 77 + brightCyan: 87.1 + brightWhite: 88.1 diff --git a/themes/neonshaded.yaml b/themes/neonshaded.yaml new file mode 100644 index 00000000..e5bfb6c7 --- /dev/null +++ b/themes/neonshaded.yaml @@ -0,0 +1,49 @@ +name: "NeonShaded" +source: + marketplace_id: "kashan.NeonShaded" + version: "0.0.1" + installs: 36 + author: "kashan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kashan.NeonShaded" +colors: + bg: "#1E1E1E" + fg: "#BABABA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FF6C00" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 63.3 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 46.5 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/neorose-vimpine.yaml b/themes/neorose-vimpine.yaml new file mode 100644 index 00000000..6c58c86c --- /dev/null +++ b/themes/neorose-vimpine.yaml @@ -0,0 +1,49 @@ +name: "NeoRose VimPine" +source: + marketplace_id: "rexcor.neorose-vimpine" + version: "0.3.1" + installs: 2723 + author: "rexcor" + repo: "https://github.com/rexcor/NeoRose-VimPine" + url: "https://marketplace.visualstudio.com/items?itemName=rexcor.neorose-vimpine" +colors: + bg: "#191724" + fg: "#E0DEF4" + black: "#26233A" + red: "#EB6F92" + green: "#9CCFD8" + yellow: "#F6C177" + blue: "#31748F" + magenta: "#C4A7E7" + cyan: "#EBBCBA" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#9CCFD8" + brightYellow: "#F6C177" + brightBlue: "#31748F" + brightMagenta: "#C4A7E7" + brightCyan: "#EBBCBA" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: 291 + contrast: + fg: 86.8 + black: 0 + red: 45.7 + green: 71.2 + yellow: 73.4 + blue: 24.9 + magenta: 60.1 + cyan: 71.6 + white: 86.8 + brightBlack: 41.1 + brightRed: 45.7 + brightGreen: 71.2 + brightYellow: 73.4 + brightBlue: 24.9 + brightMagenta: 60.1 + brightCyan: 71.6 + brightWhite: 86.8 diff --git a/themes/neospace.yaml b/themes/neospace.yaml new file mode 100644 index 00000000..d309ec4d --- /dev/null +++ b/themes/neospace.yaml @@ -0,0 +1,49 @@ +name: "Neospace" +source: + marketplace_id: "Henriquehnnm.Neo-plus" + version: "1.3.9" + installs: 59 + author: "Henrique" + repo: "https://github.com/Henriquehnnm/neoplus" + url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.Neo-plus" +colors: + bg: "#2C2A3D" + fg: "#B7BCFF" + black: "#646464" + red: "#CD3131" + green: "#31C089" + yellow: "#E5E510" + blue: "#277AD5" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A1A1A1" + brightBlack: "#777777" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3D8EE8" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 289 + contrast: + fg: 64.9 + black: 17.9 + red: 23.4 + green: 52.4 + yellow: 82.3 + blue: 27.8 + magenta: 26.5 + cyan: 44.3 + white: 47.1 + brightBlack: 26.3 + brightRed: 35.3 + brightGreen: 60.3 + brightYellow: 92.4 + brightBlue: 36.6 + brightMagenta: 42.1 + brightCyan: 52.1 + brightWhite: 86.7 diff --git a/themes/neospectrum-midnight.yaml b/themes/neospectrum-midnight.yaml new file mode 100644 index 00000000..8585e805 --- /dev/null +++ b/themes/neospectrum-midnight.yaml @@ -0,0 +1,49 @@ +name: "Neospectrum Midnight" +source: + marketplace_id: "RifkiJayaAfandi.neospectrum" + version: "1.0.0" + installs: 29 + author: "Rifki Jaya Afandi" + repo: "https://github.com/ikyyydev/neospectrum-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RifkiJayaAfandi.neospectrum" +colors: + bg: "#0E141B" + fg: "#F8F8F2" + black: "#0E141B" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#6272A4" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#44475A" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#B4B4F3" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 253 + contrast: + fg: 102.3 + black: 0 + red: 43.7 + green: 85.2 + yellow: 98.8 + blue: 28.3 + magenta: 54.9 + cyan: 84.3 + white: 102.3 + brightBlack: 10.5 + brightRed: 49.1 + brightGreen: 89.3 + brightYellow: 103.8 + brightBlue: 64.2 + brightMagenta: 62.9 + brightCyan: 97.1 + brightWhite: 107.2 diff --git a/themes/neospectrum-mystic.yaml b/themes/neospectrum-mystic.yaml new file mode 100644 index 00000000..d689a70c --- /dev/null +++ b/themes/neospectrum-mystic.yaml @@ -0,0 +1,49 @@ +name: "Neospectrum Mystic" +source: + marketplace_id: "RifkiJayaAfandi.neospectrum" + version: "1.0.0" + installs: 29 + author: "Rifki Jaya Afandi" + repo: "https://github.com/ikyyydev/neospectrum-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RifkiJayaAfandi.neospectrum" +colors: + bg: "#1E1B2E" + fg: "#D0D0E0" + black: "#1E1B2E" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#D0D0E0" + brightBlack: "#2A1E3D" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#D0D0E0" +meta: + mode: "dark" + accent: "orange" + hue: 291 + contrast: + fg: 77 + black: 0 + red: 45.8 + green: 83.4 + yellow: 78.1 + blue: 55.1 + magenta: 53 + cyan: 77.5 + white: 77 + brightBlack: 0 + brightRed: 45.8 + brightGreen: 83.4 + brightYellow: 78.1 + brightBlue: 55.1 + brightMagenta: 53 + brightCyan: 77.5 + brightWhite: 77 diff --git a/themes/neovim-sp.yaml b/themes/neovim-sp.yaml new file mode 100644 index 00000000..d58b1b26 --- /dev/null +++ b/themes/neovim-sp.yaml @@ -0,0 +1,49 @@ +name: "Neovim.SP" +source: + marketplace_id: "suman-pakira.neovim-Sp" + version: "4.5.0" + installs: 765 + author: "suman-pakira" + repo: "https://github.com/maxwithbug/myVscodeTheme" + url: "https://marketplace.visualstudio.com/items?itemName=suman-pakira.neovim-Sp" +colors: + bg: "#25334F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 263 + contrast: + fg: 101.9 + black: 0 + red: 21.8 + green: 48 + yellow: 80.7 + blue: 22.5 + magenta: 24.8 + cyan: 42.6 + white: 85.1 + brightBlack: 17.1 + brightRed: 33.6 + brightGreen: 58.6 + brightYellow: 90.7 + brightBlue: 35 + brightMagenta: 40.4 + brightCyan: 50.4 + brightWhite: 85.1 diff --git a/themes/neovim-theme.yaml b/themes/neovim-theme.yaml new file mode 100644 index 00000000..43c32a4d --- /dev/null +++ b/themes/neovim-theme.yaml @@ -0,0 +1,49 @@ +name: "neovim-theme" +source: + marketplace_id: "GustavoLins05.neovim-theme" + version: "4.0.0" + installs: 838 + author: "Gustavo Lins" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GustavoLins05.neovim-theme" +colors: + bg: "#141618" + fg: "#F8FAFC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 103.5 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/nephtis-dark.yaml b/themes/nephtis-dark.yaml new file mode 100644 index 00000000..3688510e --- /dev/null +++ b/themes/nephtis-dark.yaml @@ -0,0 +1,49 @@ +name: "Nephtis Dark" +source: + marketplace_id: "Meastblue.orbital-frame" + version: "2.2.0" + installs: 66 + author: "Meastblue" + repo: "https://github.com/meastblue/orbital-frame-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" +colors: + bg: "#1A1611" + fg: "#F4F0E6" + black: "#1A1611" + red: "#8B0000" + green: "#2F4F2F" + yellow: "#B8860B" + blue: "#483D8B" + magenta: "#663399" + cyan: "#5F4B32" + white: "#F4F0E6" + brightBlack: "#6B5B73" + brightRed: "#DC143C" + brightGreen: "#556B2F" + brightYellow: "#DAA520" + brightBlue: "#9370DB" + brightMagenta: "#B19CD9" + brightCyan: "#8B7355" + brightWhite: "#F4F0E6" +meta: + mode: "dark" + accent: "orange" + hue: 73 + contrast: + fg: 97.2 + black: 0 + red: 10.6 + green: 10.2 + yellow: 41.2 + blue: 10.7 + magenta: 12.8 + cyan: 12.7 + white: 97.2 + brightBlack: 19.8 + brightRed: 28.5 + brightGreen: 21.2 + brightYellow: 57.3 + brightBlue: 35.7 + brightMagenta: 53.1 + brightCyan: 29.6 + brightWhite: 97.2 diff --git a/themes/nephtis-light.yaml b/themes/nephtis-light.yaml new file mode 100644 index 00000000..0ff3b024 --- /dev/null +++ b/themes/nephtis-light.yaml @@ -0,0 +1,49 @@ +name: "Nephtis Light" +source: + marketplace_id: "Meastblue.orbital-frame" + version: "2.2.0" + installs: 66 + author: "Meastblue" + repo: "https://github.com/meastblue/orbital-frame-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" +colors: + bg: "#FFFFFF" + fg: "#44403C" + black: "#292524" + red: "#B91C1C" + green: "#059669" + yellow: "#A16207" + blue: "#1D4ED8" + magenta: "#7C3AED" + cyan: "#0891B2" + white: "#FAF9F2" + brightBlack: "#78716C" + brightRed: "#DC2626" + brightGreen: "#16A34A" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#8B5CF6" + brightCyan: "#0EA5E9" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 93.9 + black: 102.1 + red: 80.2 + green: 64.6 + yellow: 73.7 + blue: 82.2 + magenta: 77.5 + cyan: 63.8 + white: 0 + brightBlack: 73.3 + brightRed: 71.6 + brightGreen: 59.7 + brightYellow: 41.8 + brightBlue: 63.9 + brightMagenta: 68.7 + brightCyan: 52.8 + brightWhite: 0 diff --git a/themes/nerc-one-dark-a.yaml b/themes/nerc-one-dark-a.yaml new file mode 100644 index 00000000..61e927ad --- /dev/null +++ b/themes/nerc-one-dark-a.yaml @@ -0,0 +1,49 @@ +name: "Nerc One Dark A" +source: + marketplace_id: "Nercone.nerc-one-themes" + version: "1.6.1" + installs: 65 + author: "Nercone" + repo: "https://github.com/DiamondGotCat/nerc-one-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Nercone.nerc-one-themes" +colors: + bg: "#1A1A1A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.2 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/nerc-one-dark-b.yaml b/themes/nerc-one-dark-b.yaml new file mode 100644 index 00000000..54d5d7a4 --- /dev/null +++ b/themes/nerc-one-dark-b.yaml @@ -0,0 +1,49 @@ +name: "Nerc One Dark B" +source: + marketplace_id: "Nercone.nerc-one-themes" + version: "1.6.1" + installs: 65 + author: "Nercone" + repo: "https://github.com/DiamondGotCat/nerc-one-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Nercone.nerc-one-themes" +colors: + bg: "#1A1A1A" + fg: "#D4D4D4" + black: "#4D4D4D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#737373" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.2 + black: 11.7 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 27.4 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/nerd-light.yaml b/themes/nerd-light.yaml new file mode 100644 index 00000000..27c04d05 --- /dev/null +++ b/themes/nerd-light.yaml @@ -0,0 +1,49 @@ +name: "Nerd light" +source: + marketplace_id: "AshinBerish.nerd-theme" + version: "2.0.4" + installs: 280 + author: "Ashin Berish" + repo: "https://github.com/ashinberish/nerd-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AshinBerish.nerd-theme" +colors: + bg: "#EDF2F4" + fg: "#171C28" + black: "#2F3B54" + red: "#FF3D4A" + green: "#BAE67E" + yellow: "#FFCC66" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#FF3D4A" + brightGreen: "#BAE67E" + brightYellow: "#FFCC66" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.6 + black: 87.6 + red: 52.5 + green: 12.2 + yellow: 14.7 + blue: 25.5 + magenta: 31.7 + cyan: 25.5 + white: 37.7 + brightBlack: 81.8 + brightRed: 52.5 + brightGreen: 12.2 + brightYellow: 14.7 + brightBlue: 25.5 + brightMagenta: 31.7 + brightCyan: 25.5 + brightWhite: 37.7 diff --git a/themes/nero.yaml b/themes/nero.yaml new file mode 100644 index 00000000..d33284ac --- /dev/null +++ b/themes/nero.yaml @@ -0,0 +1,49 @@ +name: "Nero" +source: + marketplace_id: "Mhirii.nero" + version: "0.1.0" + installs: 45 + author: "Mhirii" + repo: "https://github.com/Mhirii/nero-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Mhirii.nero" +colors: + bg: "#0D1C2E" + fg: "#A9C7D6" + black: "#17304D" + red: "#F5596B" + green: "#8CB34D" + yellow: "#C8E155" + blue: "#0DA8F2" + magenta: "#9E75F0" + cyan: "#3DF5DE" + white: "#CDD8DE" + brightBlack: "#1A3759" + brightRed: "#FF7282" + brightGreen: "#92CC33" + brightYellow: "#D6E980" + brightBlue: "#3DBAF5" + brightMagenta: "#B291F3" + brightCyan: "#56FDE8" + brightWhite: "#CDD8DE" +meta: + mode: "dark" + accent: "orange" + hue: 254 + contrast: + fg: 68.4 + black: 0 + red: 41.7 + green: 52.9 + yellow: 79.9 + blue: 49.3 + magenta: 39.4 + cyan: 84.4 + white: 80.3 + brightBlack: 0 + brightRed: 49.7 + brightGreen: 64.3 + brightYellow: 86.1 + brightBlue: 57.7 + brightMagenta: 50.6 + brightCyan: 89.7 + brightWhite: 80.3 diff --git a/themes/nestjs-codes.yaml b/themes/nestjs-codes.yaml new file mode 100644 index 00000000..9fb809a8 --- /dev/null +++ b/themes/nestjs-codes.yaml @@ -0,0 +1,49 @@ +name: "nestjs.codes" +source: + marketplace_id: "EstevamSouza.nestjs-codes-vscode-theme" + version: "0.0.4" + installs: 10564 + author: "Estevam Souza" + repo: "https://github.com/estevam5s/nestjs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=EstevamSouza.nestjs-codes-vscode-theme" +colors: + bg: "#000000" + fg: "#FF8B56" + black: "#EE0F0F" + red: "#610692" + green: "#55E513" + yellow: "#A553C6" + blue: "#F00909" + magenta: "#AE89FE" + cyan: "#708387" + white: "#D5D5D0" + brightBlack: "#FF0000" + brightRed: "#A706EC" + brightGreen: "#A308EB" + brightYellow: "#F10202" + brightBlue: "#F10707" + brightMagenta: "#F60707" + brightCyan: "#FF0D0D" + brightWhite: "#FA100C" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 56.9 + black: 33.4 + red: 9.4 + green: 74.1 + yellow: 30.8 + blue: 33.8 + magenta: 49.9 + cyan: 34.6 + white: 80.9 + brightBlack: 37.5 + brightRed: 27.1 + brightGreen: 26.4 + brightYellow: 34 + brightBlue: 34 + brightMagenta: 35.3 + brightCyan: 37.6 + brightWhite: 36.4 diff --git a/themes/netbeans-harmonized.yaml b/themes/netbeans-harmonized.yaml new file mode 100644 index 00000000..e4bd2c6c --- /dev/null +++ b/themes/netbeans-harmonized.yaml @@ -0,0 +1,49 @@ +name: "NetBeans Harmonized" +source: + marketplace_id: "drkcode.clasic-harmonized-theme" + version: "0.0.5" + installs: 558 + author: "drkcode" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=drkcode.clasic-harmonized-theme" +colors: + bg: "#F9F4E7" + fg: "#333333" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#EEE8D5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.2 + black: 92.5 + red: 64.1 + green: 52.6 + yellow: 52.6 + blue: 57.5 + magenta: 63.8 + cyan: 51.8 + white: 0 + brightBlack: 70.4 + brightRed: 64.6 + brightGreen: 70.4 + brightYellow: 64.5 + brightBlue: 52.3 + brightMagenta: 63.8 + brightCyan: 45.5 + brightWhite: 0 diff --git a/themes/netbilla-blue.yaml b/themes/netbilla-blue.yaml new file mode 100644 index 00000000..e9bd364f --- /dev/null +++ b/themes/netbilla-blue.yaml @@ -0,0 +1,49 @@ +name: "NetBilla Blue" +source: + marketplace_id: "Totoshi.netbilla-vscode-theme-dark" + version: "1.2.3" + installs: 631 + author: "Totoshi" + repo: "https://github.com/aryanxxvii/fleet-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Totoshi.netbilla-vscode-theme-dark" +colors: + bg: "#101010" + fg: "#F2F2F2" + black: "#000000" + red: "#FF4242" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#EE7070" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 98.9 + black: 0 + red: 40.9 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 46.3 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/netlify-theme.yaml b/themes/netlify-theme.yaml new file mode 100644 index 00000000..9b0f7d0a --- /dev/null +++ b/themes/netlify-theme.yaml @@ -0,0 +1,49 @@ +name: "Netlify Theme" +source: + marketplace_id: "ohheyjosh.netlify-vscode-theme" + version: "1.2.4" + installs: 522 + author: "ohheyjosh" + repo: "https://github.com/ohheyjosh/netlify-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ohheyjosh.netlify-vscode-theme" +colors: + bg: "#0B1113" + fg: "#F7F8F8" + black: "#2D3B41" + red: "#FF6969" + green: "#43D860" + yellow: "#FFAD43" + blue: "#43B4D8" + magenta: "#C57AA2" + cyan: "#00AD9F" + white: "#F7F8F8" + brightBlack: "#2D3B41" + brightRed: "#F25481" + brightGreen: "#01DF2E" + brightYellow: "#FFD26E" + brightBlue: "#C4E8F3" + brightMagenta: "#FFB8B8" + brightCyan: "#38FFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 220 + contrast: + fg: 102.7 + black: 0 + red: 48.2 + green: 67.2 + yellow: 67.4 + blue: 54.7 + magenta: 43 + cyan: 48 + white: 102.7 + brightBlack: 0 + brightRed: 41.9 + brightGreen: 69.4 + brightYellow: 82.5 + brightBlue: 88.6 + brightMagenta: 74.1 + brightCyan: 91.3 + brightWhite: 107.4 diff --git a/themes/netlify.yaml b/themes/netlify.yaml new file mode 100644 index 00000000..03463659 --- /dev/null +++ b/themes/netlify.yaml @@ -0,0 +1,49 @@ +name: "Netlify" +source: + marketplace_id: "austincondiff.netlify-vscode-theme" + version: "1.0.4" + installs: 4681 + author: "Austin Condiff" + repo: "https://github.com/austincondiff/netlify-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=austincondiff.netlify-vscode-theme" +colors: + bg: "#FFFFFF" + fg: "#0E1E25" + black: "#E3E4EB" + red: "#D04747" + green: "#7BA63B" + yellow: "#E3A323" + blue: "#6749D0" + magenta: "#B74A9D" + cyan: "#00978F" + white: "#0E1E25" + brightBlack: "#616C7A" + brightRed: "#FFA5A5" + brightGreen: "#CDECA1" + brightYellow: "#FFE98D" + brightBlue: "#BAA6FF" + brightMagenta: "#F5A8E3" + brightCyan: "#78F0E6" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 103.9 + black: 13.3 + red: 70.2 + green: 54.5 + yellow: 43.1 + blue: 79.9 + magenta: 71.9 + cyan: 63 + white: 103.9 + brightBlack: 76.6 + brightRed: 35.4 + brightGreen: 15 + brightYellow: 10.5 + brightBlue: 41.1 + brightMagenta: 33.6 + brightCyan: 17.6 + brightWhite: 0 diff --git a/themes/netrunnaz.yaml b/themes/netrunnaz.yaml new file mode 100644 index 00000000..fb8d1e9a --- /dev/null +++ b/themes/netrunnaz.yaml @@ -0,0 +1,49 @@ +name: "netrunnaz" +source: + marketplace_id: "netrunnaz.netrunnaz" + version: "0.0.1" + installs: 106 + author: "netrunnaz" + repo: "https://github.com/netrunnaz/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=netrunnaz.netrunnaz" +colors: + bg: "#191A1F" + fg: "#888888" + black: "#565454" + red: "#D1949E" + green: "#DFF7A9" + yellow: "#879071" + blue: "#747EA7" + magenta: "#6F6F6F" + cyan: "#8BA6A9" + white: "#8A8A8A" + brightBlack: "#3D3D3D" + brightRed: "#904E64" + brightGreen: "#D1FF69" + brightYellow: "#F5F543" + brightBlue: "#9EABDE" + brightMagenta: "#8A8A8A" + brightCyan: "#9ED8DE" + brightWhite: "#ABABAB" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 37.3 + black: 14.5 + red: 51.8 + green: 95.1 + yellow: 39.3 + blue: 33.2 + magenta: 25.6 + cyan: 50 + white: 38.2 + brightBlack: 0 + brightRed: 20.4 + brightGreen: 96 + brightYellow: 95.3 + brightBlue: 56.4 + brightMagenta: 38.2 + brightCyan: 75.5 + brightWhite: 55.4 diff --git a/themes/netstack.yaml b/themes/netstack.yaml new file mode 100644 index 00000000..cf0c5c2f --- /dev/null +++ b/themes/netstack.yaml @@ -0,0 +1,49 @@ +name: "netstack" +source: + marketplace_id: "euheimr.netstack" + version: "0.1.2" + installs: 241 + author: "euheimr" + repo: "https://github.com/euheimr/netstack-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=euheimr.netstack" +colors: + bg: "#0F0F0F" + fg: "#CBCBCB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 74.7 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/nettsi-monokai-darker.yaml b/themes/nettsi-monokai-darker.yaml new file mode 100644 index 00000000..e2d07437 --- /dev/null +++ b/themes/nettsi-monokai-darker.yaml @@ -0,0 +1,49 @@ +name: "NETTSI Monokai Darker" +source: + marketplace_id: "overengineer.nettsi-monokai-dark" + version: "0.0.4" + installs: 104 + author: "overengineer" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=overengineer.nettsi-monokai-dark" +colors: + bg: "#07080A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.4 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/netuno.yaml b/themes/netuno.yaml new file mode 100644 index 00000000..9b327f90 --- /dev/null +++ b/themes/netuno.yaml @@ -0,0 +1,49 @@ +name: "Netuno" +source: + marketplace_id: "DougBichir.themes" + version: "0.0.10" + installs: 795 + author: "Doug Bichir" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=DougBichir.themes" +colors: + bg: "#052022" + fg: "#89DDFF" + black: "#0061B1" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 202 + contrast: + fg: 77.5 + black: 19.6 + red: 62.7 + green: 90.1 + yellow: 95 + blue: 80.6 + magenta: 74.1 + cyan: 95.2 + white: 73.9 + brightBlack: 0 + brightRed: 51 + brightGreen: 86.1 + brightYellow: 89.8 + brightBlue: 61.5 + brightMagenta: 49.5 + brightCyan: 93.1 + brightWhite: 106.2 diff --git a/themes/neumatter-night.yaml b/themes/neumatter-night.yaml new file mode 100644 index 00000000..8c81f7da --- /dev/null +++ b/themes/neumatter-night.yaml @@ -0,0 +1,49 @@ +name: "neumatter night" +source: + marketplace_id: "cal.neumatter-theme" + version: "0.0.3" + installs: 59 + author: "cal" + repo: "https://github.com/Clyng57/neumatter-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cal.neumatter-theme" +colors: + bg: "#292929" + fg: "#F2F2F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 95.7 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.1 + cyan: 44.9 + white: 87.4 + brightBlack: 19.4 + brightRed: 35.9 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.7 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/neuraltone.yaml b/themes/neuraltone.yaml new file mode 100644 index 00000000..51420d4e --- /dev/null +++ b/themes/neuraltone.yaml @@ -0,0 +1,49 @@ +name: "NeuralTone" +source: + marketplace_id: "KaioDutra.neural-tone-theme" + version: "1.0.3" + installs: 233 + author: "Kaio Dutra" + repo: "https://github.com/kaioodutra/neural-tone-theme" + url: "https://marketplace.visualstudio.com/items?itemName=KaioDutra.neural-tone-theme" +colors: + bg: "#02021C" + fg: "#DFDFF4" + black: "#656572" + red: "#CE7446" + green: "#46CE67" + yellow: "#CEAA46" + blue: "#468DCE" + magenta: "#8946CE" + cyan: "#46CEC1" + white: "#DFDFF4" + brightBlack: "#AAAABF" + brightRed: "#FC7E3F" + brightGreen: "#3FFC6C" + brightYellow: "#FCCB3F" + brightBlue: "#3FA2FC" + brightMagenta: "#9B3FFC" + brightCyan: "#3FFCE9" + brightWhite: "#F5F5FC" +meta: + mode: "dark" + accent: "magenta" + hue: 272 + contrast: + fg: 88.1 + black: 22.9 + red: 40.7 + green: 62.9 + yellow: 58.4 + blue: 39 + magenta: 24.9 + cyan: 65.6 + white: 88.1 + brightBlack: 57 + brightRed: 52.3 + brightGreen: 86.1 + brightYellow: 78.8 + brightBlue: 49.8 + brightMagenta: 30.3 + brightCyan: 90 + brightWhite: 101.5 diff --git a/themes/neutral-gray-minimalism-focus.yaml b/themes/neutral-gray-minimalism-focus.yaml new file mode 100644 index 00000000..d7cf6720 --- /dev/null +++ b/themes/neutral-gray-minimalism-focus.yaml @@ -0,0 +1,49 @@ +name: "Neutral Gray - Minimalism & Focus" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#1A1A1A" + fg: "#FAFAFA" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 103.2 + black: 0 + red: 37.4 + green: 47.2 + yellow: 92 + blue: 42.7 + magenta: 32.3 + cyan: 56.2 + white: 95.8 + brightBlack: 8.7 + brightRed: 42.5 + brightGreen: 81.7 + brightYellow: 101.4 + brightBlue: 40.2 + brightMagenta: 41.1 + brightCyan: 90.9 + brightWhite: 106.5 diff --git a/themes/neutral.yaml b/themes/neutral.yaml new file mode 100644 index 00000000..16164f64 --- /dev/null +++ b/themes/neutral.yaml @@ -0,0 +1,49 @@ +name: "Neutral" +source: + marketplace_id: "Jonaqhan.jonaqhan" + version: "4.8.0" + installs: 753 + author: "Jonaqhan" + repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" +colors: + bg: "#262335" + fg: "#05F5E7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 292 + contrast: + fg: 82.8 + black: 0 + red: 24.7 + green: 51 + yellow: 83.6 + blue: 25.5 + magenta: 27.8 + cyan: 45.6 + white: 88 + brightBlack: 20.1 + brightRed: 36.6 + brightGreen: 61.6 + brightYellow: 93.7 + brightBlue: 38 + brightMagenta: 43.4 + brightCyan: 53.4 + brightWhite: 88 diff --git a/themes/neutralvi.yaml b/themes/neutralvi.yaml new file mode 100644 index 00000000..94548644 --- /dev/null +++ b/themes/neutralvi.yaml @@ -0,0 +1,49 @@ +name: "NeutralVI" +source: + marketplace_id: "YesCode.neutral" + version: "0.0.9" + installs: 608 + author: "YesCode" + repo: "https://github.com/yesomac/NeutralThemeVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.neutral" +colors: + bg: "#0C0104" + fg: "#FEEEFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#F9F8FA" + brightYellow: "#20473A" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 358 + contrast: + fg: 99.8 + black: 0 + red: 42.9 + green: 61.9 + yellow: 74 + blue: 48.5 + magenta: 20.5 + cyan: 50.4 + white: 48.2 + brightBlack: 19.5 + brightRed: 42.9 + brightGreen: 103.4 + brightYellow: 8.5 + brightBlue: 19.7 + brightMagenta: 20.5 + brightCyan: 50.4 + brightWhite: 99.8 diff --git a/themes/neutron.yaml b/themes/neutron.yaml new file mode 100644 index 00000000..33da8714 --- /dev/null +++ b/themes/neutron.yaml @@ -0,0 +1,49 @@ +name: "Neutron" +source: + marketplace_id: "Avetis.neutron-palette" + version: "0.0.3" + installs: 1017 + author: "Avetis" + repo: "https://github.com/AvetisDN/neutron-palette" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.neutron-palette" +colors: + bg: "#24262B" + fg: "#E6E8EF" + black: "#000000" + red: "#CF4843" + green: "#32AB57" + yellow: "#C99634" + blue: "#406CA3" + magenta: "#A54B97" + cyan: "#2AA7A7" + white: "#E6E8EF" + brightBlack: "#62686F" + brightRed: "#E4645F" + brightGreen: "#23D18B" + brightYellow: "#DEB566" + brightBlue: "#6B90BE" + brightMagenta: "#A4799D" + brightCyan: "#58B8B8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.9 + black: 0 + red: 28.3 + green: 43 + yellow: 47.2 + blue: 21.9 + magenta: 23.5 + cyan: 43.5 + white: 89.9 + brightBlack: 20.5 + brightRed: 38.5 + brightGreen: 61.5 + brightYellow: 62.6 + brightBlue: 38.3 + brightMagenta: 34.9 + brightCyan: 53 + brightWhite: 104.8 diff --git a/themes/nevada.yaml b/themes/nevada.yaml new file mode 100644 index 00000000..3248e6cd --- /dev/null +++ b/themes/nevada.yaml @@ -0,0 +1,49 @@ +name: "Nevada" +source: + marketplace_id: "michaellee.nevada-color-theme" + version: "0.1.0" + installs: 212 + author: "leecommamichael" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=michaellee.nevada-color-theme" +colors: + bg: "#5AC0AD" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 179 + contrast: + fg: 61 + black: 61 + red: 29 + green: 0 + yellow: 12.9 + blue: 41 + magenta: 29.6 + cyan: 15.6 + white: 40.9 + brightBlack: 33.7 + brightRed: 29 + brightGreen: 0 + brightYellow: 0 + brightBlue: 41 + brightMagenta: 29.6 + brightCyan: 15.6 + brightWhite: 0 diff --git a/themes/never-be-lost-day.yaml b/themes/never-be-lost-day.yaml new file mode 100644 index 00000000..13a13c4e --- /dev/null +++ b/themes/never-be-lost-day.yaml @@ -0,0 +1,49 @@ +name: "Never Be Lost (Day)" +source: + marketplace_id: "Fred-Vatin.never-be-lost" + version: "0.4.0" + installs: 446 + author: "Fred Vatin" + repo: "https://github.com/Fred-Vatin/never-be-lost" + url: "https://marketplace.visualstudio.com/items?itemName=Fred-Vatin.never-be-lost" +colors: + bg: "#1E2224" + fg: "#E7E7E7" + black: "#0C0C0C" + red: "#8CA421" + green: "#438341" + yellow: "#AE9019" + blue: "#2854D7" + magenta: "#7F3E3E" + cyan: "#519BAA" + white: "#CCCCCC" + brightBlack: "#767676" + brightRed: "#FF001E" + brightGreen: "#44B13E" + brightYellow: "#CBCE36" + brightBlue: "#4C97FF" + brightMagenta: "#E157D1" + brightCyan: "#42FFFF" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 90 + black: 0 + red: 45.5 + green: 27.6 + yellow: 41.8 + blue: 18.9 + magenta: 12.8 + cyan: 40.7 + white: 73.3 + brightBlack: 27.8 + brightRed: 35.3 + brightGreen: 46.6 + brightYellow: 70.5 + brightBlue: 44.2 + brightMagenta: 40.6 + brightCyan: 90.5 + brightWhite: 90.6 diff --git a/themes/never-be-lost-night.yaml b/themes/never-be-lost-night.yaml new file mode 100644 index 00000000..b5d8918c --- /dev/null +++ b/themes/never-be-lost-night.yaml @@ -0,0 +1,49 @@ +name: "Never Be Lost (Night)" +source: + marketplace_id: "Fred-Vatin.never-be-lost" + version: "0.4.0" + installs: 446 + author: "Fred Vatin" + repo: "https://github.com/Fred-Vatin/never-be-lost" + url: "https://marketplace.visualstudio.com/items?itemName=Fred-Vatin.never-be-lost" +colors: + bg: "#131415" + fg: "#E7E7E7" + black: "#0C0C0C" + red: "#8CA421" + green: "#438341" + yellow: "#AE9019" + blue: "#2854D7" + magenta: "#7F3E3E" + cyan: "#519BAA" + white: "#CCCCCC" + brightBlack: "#767676" + brightRed: "#FF001E" + brightGreen: "#44B13E" + brightYellow: "#CBCE36" + brightBlue: "#4C97FF" + brightMagenta: "#E157D1" + brightCyan: "#42FFFF" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.6 + black: 0 + red: 47.1 + green: 29.2 + yellow: 43.4 + blue: 20.5 + magenta: 14.4 + cyan: 42.3 + white: 74.9 + brightBlack: 29.4 + brightRed: 36.9 + brightGreen: 48.2 + brightYellow: 72.1 + brightBlue: 45.8 + brightMagenta: 42.2 + brightCyan: 92.1 + brightWhite: 92.2 diff --git a/themes/nevermore.yaml b/themes/nevermore.yaml new file mode 100644 index 00000000..696cbdcf --- /dev/null +++ b/themes/nevermore.yaml @@ -0,0 +1,49 @@ +name: "Nevermore" +source: + marketplace_id: "cassiocardoso.nevermore" + version: "0.1.5" + installs: 469 + author: "Cassio Cardoso" + repo: "https://github.com/cassiocardoso/nevermore-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cassiocardoso.nevermore" +colors: + bg: "#131214" + fg: "#F4F3F3" + black: "#131214" + red: "#C44F69" + green: "#00C9A8" + yellow: "#DBDB60" + blue: "#388DAB" + magenta: "#B5A5C7" + cyan: "#A3CFC6" + white: "#F4F3F3" + brightBlack: "#575656" + brightRed: "#C44F69" + brightGreen: "#00C9A8" + brightYellow: "#F9F871" + brightBlue: "#00C0FF" + brightMagenta: "#B5A5C7" + brightCyan: "#8BECD9" + brightWhite: "#F4F3F3" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 99.5 + black: 0 + red: 30.5 + green: 60.9 + yellow: 80.6 + blue: 36.1 + magenta: 56.3 + cyan: 71.6 + white: 99.5 + brightBlack: 16 + brightRed: 30.5 + brightGreen: 60.9 + brightYellow: 98.6 + brightBlue: 61.2 + brightMagenta: 56.3 + brightCyan: 84 + brightWhite: 99.5 diff --git a/themes/neverwhere.yaml b/themes/neverwhere.yaml new file mode 100644 index 00000000..0bcce0da --- /dev/null +++ b/themes/neverwhere.yaml @@ -0,0 +1,49 @@ +name: "Neverwhere" +source: + marketplace_id: "tylandavis.neverwhere-theme" + version: "1.0.4" + installs: 83 + author: "Tylan Davis" + repo: "https://github.com/tylandavis/neverwhere-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tylandavis.neverwhere-theme" +colors: + bg: "#1D1F1F" + fg: "#B0C9C9" + black: "#586464" + red: "#C2506B" + green: "#73A573" + yellow: "#B06B39" + blue: "#3E668A" + magenta: "#9B628F" + cyan: "#55A0A0" + white: "#E3FFF7" + brightBlack: "#81A3A3" + brightRed: "#FF3577" + brightGreen: "#BAFFBB" + brightYellow: "#FF7735" + brightBlue: "#A8D6FF" + brightMagenta: "#FF83C3" + brightCyan: "#BAFFEB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 69.1 + black: 19.3 + red: 29.1 + green: 45.3 + yellow: 31.1 + blue: 19.8 + magenta: 27.8 + cyan: 42.9 + white: 101.9 + brightBlack: 47.2 + brightRed: 39.1 + brightGreen: 95 + brightYellow: 49.2 + brightBlue: 76.7 + brightMagenta: 56.1 + brightCyan: 96.8 + brightWhite: 106 diff --git a/themes/nevo-black.yaml b/themes/nevo-black.yaml new file mode 100644 index 00000000..0ef4ebe5 --- /dev/null +++ b/themes/nevo-black.yaml @@ -0,0 +1,49 @@ +name: "NEVO black" +source: + marketplace_id: "nevo.nevo-theme" + version: "19.3.1" + installs: 377 + author: "nevo" + repo: "https://github.com/iknevo/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nevo.nevo-theme" +colors: + bg: "#000000" + fg: "#B2CACD" + black: "#324A4D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B2CACD" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 71.8 + black: 10.6 + red: 41.5 + green: 78 + yellow: 68 + blue: 53 + magenta: 46.6 + cyan: 71.5 + white: 71.8 + brightBlack: 21.6 + brightRed: 46.8 + brightGreen: 80.2 + brightYellow: 54.9 + brightBlue: 58.3 + brightMagenta: 59 + brightCyan: 74.9 + brightWhite: 78.3 diff --git a/themes/nevo-comfy.yaml b/themes/nevo-comfy.yaml new file mode 100644 index 00000000..c7176e58 --- /dev/null +++ b/themes/nevo-comfy.yaml @@ -0,0 +1,49 @@ +name: "NEVO comfy" +source: + marketplace_id: "nevo.nevo-theme" + version: "19.3.1" + installs: 377 + author: "nevo" + repo: "https://github.com/iknevo/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nevo.nevo-theme" +colors: + bg: "#1D2021" + fg: "#85EFFF" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.5 + black: 0 + red: 24.2 + green: 41.9 + yellow: 51.5 + blue: 30.5 + magenta: 30.7 + cyan: 40.9 + white: 46.2 + brightBlack: 35.3 + brightRed: 39.1 + brightGreen: 60.1 + brightYellow: 70.8 + brightBlue: 47.6 + brightMagenta: 46.9 + brightCyan: 59.1 + brightWhite: 83.3 diff --git a/themes/nevo.yaml b/themes/nevo.yaml new file mode 100644 index 00000000..5164bfeb --- /dev/null +++ b/themes/nevo.yaml @@ -0,0 +1,49 @@ +name: "NEVO" +source: + marketplace_id: "nevo.nevo-theme" + version: "19.3.1" + installs: 377 + author: "nevo" + repo: "https://github.com/iknevo/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nevo.nevo-theme" +colors: + bg: "#021012" + fg: "#B2CACD" + black: "#324A4D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B2CACD" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "dark" + accent: "orange" + hue: 206 + contrast: + fg: 71.4 + black: 10.2 + red: 41.2 + green: 77.6 + yellow: 67.6 + blue: 52.6 + magenta: 46.3 + cyan: 71.2 + white: 71.4 + brightBlack: 21.2 + brightRed: 46.4 + brightGreen: 79.8 + brightYellow: 54.5 + brightBlue: 57.9 + brightMagenta: 58.6 + brightCyan: 74.5 + brightWhite: 77.9 diff --git a/themes/new-england-light-theme.yaml b/themes/new-england-light-theme.yaml new file mode 100644 index 00000000..d3741687 --- /dev/null +++ b/themes/new-england-light-theme.yaml @@ -0,0 +1,49 @@ +name: "New England light theme" +source: + marketplace_id: "dustypomerleau.new-england" + version: "0.10.0" + installs: 7008 + author: "Dusty Pomerleau" + repo: "https://github.com/dustypomerleau/new-england" + url: "https://marketplace.visualstudio.com/items?itemName=dustypomerleau.new-england" +colors: + bg: "#FDF1D4" + fg: "#3E454E" + black: "#3E454E" + red: "#660000" + green: "#859900" + yellow: "#664400" + blue: "#43596F" + magenta: "#490049" + cyan: "#2C5851" + white: "#97907F" + brightBlack: "#3A485B" + brightRed: "#800000" + brightGreen: "#859900" + brightYellow: "#9A4E32" + brightBlue: "#587182" + brightMagenta: "#490049" + brightCyan: "#407875" + brightWhite: "#585550" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 84.6 + black: 84.6 + red: 89.9 + green: 51.1 + yellow: 81.9 + blue: 77.2 + magenta: 92.9 + cyan: 79.7 + white: 51 + brightBlack: 83.5 + brightRed: 85 + brightGreen: 51.1 + brightYellow: 71.6 + brightBlue: 67.4 + brightMagenta: 92.9 + brightCyan: 66.8 + brightWhite: 77.9 diff --git a/themes/new-moon.yaml b/themes/new-moon.yaml new file mode 100644 index 00000000..05f5d52d --- /dev/null +++ b/themes/new-moon.yaml @@ -0,0 +1,49 @@ +name: "New Moon" +source: + marketplace_id: "taniarascia.new-moon-vscode" + version: "1.8.8" + installs: 117734 + author: "Tania Rascia" + repo: "https://github.com/taniarascia/new-moon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=taniarascia.new-moon-vscode" +colors: + bg: "#2D2D2D" + fg: "#B3B9C5" + black: "#666666" + red: "#F2777A" + green: "#92D192" + yellow: "#FFD479" + blue: "#6AB0F3" + magenta: "#E1A6F2" + cyan: "#62CFCF" + white: "#FFFFFF" + brightBlack: "#777777" + brightRed: "#F2777A" + brightGreen: "#92D192" + brightYellow: "#FFD479" + brightBlue: "#6AB0F3" + brightMagenta: "#E1A6F2" + brightCyan: "#62CFCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 60 + black: 18.6 + red: 45.1 + green: 65.3 + yellow: 79.5 + blue: 52.4 + magenta: 61.4 + cyan: 63.5 + white: 103.4 + brightBlack: 26.1 + brightRed: 45.1 + brightGreen: 65.3 + brightYellow: 79.5 + brightBlue: 52.4 + brightMagenta: 61.4 + brightCyan: 63.5 + brightWhite: 103.4 diff --git a/themes/new-owl.yaml b/themes/new-owl.yaml new file mode 100644 index 00000000..80b5ad8a --- /dev/null +++ b/themes/new-owl.yaml @@ -0,0 +1,49 @@ +name: "New Owl" +source: + marketplace_id: "CarlosVQ.vscode-new-owl" + version: "2.0.0" + installs: 7334 + author: "CarlosVQ" + repo: "https://github.com/carlosvq/vscode-new-owl" + url: "https://marketplace.visualstudio.com/items?itemName=CarlosVQ.vscode-new-owl" +colors: + bg: "#0A1D2B" + fg: "#CDD3DE" + black: "#0D1A24" + red: "#EC5F67" + green: "#99C794" + yellow: "#FAC863" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#FFFFFF" + brightBlack: "#65737E" + brightRed: "#EC5F67" + brightGreen: "#99C794" + brightYellow: "#FAC863" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 243 + contrast: + fg: 78 + black: 0 + red: 40.8 + green: 64.3 + yellow: 76.2 + blue: 43.6 + magenta: 51.5 + cyan: 52.5 + white: 106.3 + brightBlack: 26.3 + brightRed: 40.8 + brightGreen: 64.3 + brightYellow: 76.2 + brightBlue: 43.6 + brightMagenta: 51.5 + brightCyan: 52.5 + brightWhite: 106.3 diff --git a/themes/new-retro.yaml b/themes/new-retro.yaml new file mode 100644 index 00000000..e25167f2 --- /dev/null +++ b/themes/new-retro.yaml @@ -0,0 +1,49 @@ +name: "New Retro" +source: + marketplace_id: "new-retro.new-retro" + version: "0.0.1" + installs: 1466 + author: "New Retro" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=new-retro.new-retro" +colors: + bg: "#25272E" + fg: "#B3B9C5" + black: "#666666" + red: "#F2777A" + green: "#92D192" + yellow: "#FFD479" + blue: "#6AB0F3" + magenta: "#E1A6F2" + cyan: "#62CFCF" + white: "#FFFFFF" + brightBlack: "#777777" + brightRed: "#F2777A" + brightGreen: "#92D192" + brightYellow: "#FFD479" + brightBlue: "#6AB0F3" + brightMagenta: "#E1A6F2" + brightCyan: "#62CFCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 273 + contrast: + fg: 61.1 + black: 19.7 + red: 46.3 + green: 66.4 + yellow: 80.7 + blue: 53.6 + magenta: 62.6 + cyan: 64.6 + white: 104.6 + brightBlack: 27.3 + brightRed: 46.3 + brightGreen: 66.4 + brightYellow: 80.7 + brightBlue: 53.6 + brightMagenta: 62.6 + brightCyan: 64.6 + brightWhite: 104.6 diff --git a/themes/new-south-wales-dark.yaml b/themes/new-south-wales-dark.yaml new file mode 100644 index 00000000..d5c09f9d --- /dev/null +++ b/themes/new-south-wales-dark.yaml @@ -0,0 +1,49 @@ +name: "New South Wales Dark" +source: + marketplace_id: "lucidlabs.new-south-wales-theme" + version: "1.1.0" + installs: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.new-south-wales-theme" +colors: + bg: "#0D0E14" + fg: "#E8EDF3" + black: "#0D0E14" + red: "#D7153A" + green: "#6BBE27" + yellow: "#FFCC2C" + blue: "#002664" + magenta: "#8B1A4A" + cyan: "#5B9BD5" + white: "#E8EDF3" + brightBlack: "#78797E" + brightRed: "#FF4D5E" + brightGreen: "#78D65B" + brightYellow: "#FFE066" + brightBlue: "#3366AA" + brightMagenta: "#D7153A" + brightCyan: "#7EB8DA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 95.4 + black: 0 + red: 28 + green: 56.1 + yellow: 79.3 + blue: 0 + magenta: 12.7 + cyan: 45.5 + white: 95.4 + brightBlack: 31.2 + brightRed: 43 + brightGreen: 68.7 + brightYellow: 88.5 + brightBlue: 22.7 + brightMagenta: 28 + brightCyan: 59.7 + brightWhite: 107.5 diff --git a/themes/new-south-wales-light.yaml b/themes/new-south-wales-light.yaml new file mode 100644 index 00000000..7d577c69 --- /dev/null +++ b/themes/new-south-wales-light.yaml @@ -0,0 +1,49 @@ +name: "New South Wales Light" +source: + marketplace_id: "lucidlabs.new-south-wales-theme" + version: "1.1.0" + installs: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.new-south-wales-theme" +colors: + bg: "#FFFFFF" + fg: "#0D0E14" + black: "#0D0E14" + red: "#D7153A" + green: "#0A690D" + yellow: "#B38800" + blue: "#002664" + magenta: "#8B1A4A" + cyan: "#006A8F" + white: "#FFFFFF" + brightBlack: "#78797E" + brightRed: "#8A1220" + brightGreen: "#339D37" + brightYellow: "#FFCC2C" + brightBlue: "#001A4A" + brightMagenta: "#5A1222" + brightCyan: "#5B9BD5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.6 + black: 105.6 + red: 73.4 + green: 83.3 + yellow: 59.7 + blue: 100.5 + magenta: 89.2 + cyan: 79.8 + white: 0 + brightBlack: 70.1 + brightRed: 90.5 + brightGreen: 62 + brightYellow: 23.5 + brightBlue: 103.3 + brightMagenta: 99.2 + brightCyan: 56 + brightWhite: 0 diff --git a/themes/new-sphere.yaml b/themes/new-sphere.yaml new file mode 100644 index 00000000..3c3e16a6 --- /dev/null +++ b/themes/new-sphere.yaml @@ -0,0 +1,49 @@ +name: "new-sphere" +source: + marketplace_id: "FSharaf.new-sphere" + version: "0.1.1" + installs: 277 + author: "Sharaf Feyzullayev" + repo: "https://github.com/FSharafff/new-sphere" + url: "https://marketplace.visualstudio.com/items?itemName=FSharaf.new-sphere" +colors: + bg: "#0C0C0F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.3 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.1 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/new-theme.yaml b/themes/new-theme.yaml new file mode 100644 index 00000000..cf16b773 --- /dev/null +++ b/themes/new-theme.yaml @@ -0,0 +1,49 @@ +name: "new theme" +source: + marketplace_id: "undefined.abipravi" + version: "0.0.1" + installs: 77 + author: "undefined" + repo: "https://github.com/Abipravi1/abipravitheme" + url: "https://marketplace.visualstudio.com/items?itemName=undefined.abipravi" +colors: + bg: "#0B000F" + fg: "#00FF58" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 320 + contrast: + fg: 86.9 + black: 0 + red: 27.7 + green: 53.9 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 91 diff --git a/themes/newdarktheme.yaml b/themes/newdarktheme.yaml new file mode 100644 index 00000000..32790b25 --- /dev/null +++ b/themes/newdarktheme.yaml @@ -0,0 +1,49 @@ +name: "NewDarkTheme" +source: + marketplace_id: "FeliksLv.new-dark" + version: "0.0.5" + installs: 901 + author: "FeliksLv" + repo: "https://github.com/FeliksLv01/NewDarkTheme" + url: "https://marketplace.visualstudio.com/items?itemName=FeliksLv.new-dark" +colors: + bg: "#1E1F22" + fg: "#CECDCE" + black: "#21222C" + red: "#FF5555" + green: "#5BF78C" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 74.5 + black: 0 + red: 42.4 + green: 83.1 + yellow: 97.6 + blue: 52.7 + magenta: 53.6 + cyan: 83 + white: 101 + brightBlack: 27.1 + brightRed: 47.9 + brightGreen: 88.1 + brightYellow: 102.6 + brightBlue: 65.1 + brightMagenta: 61.6 + brightCyan: 95.8 + brightWhite: 105.9 diff --git a/themes/newera-dark-theme.yaml b/themes/newera-dark-theme.yaml new file mode 100644 index 00000000..79007a0c --- /dev/null +++ b/themes/newera-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Newera Dark Theme" +source: + marketplace_id: "sguerson.newera-theme" + version: "1.1.2" + installs: 49 + author: "sguerson" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sguerson.newera-theme" +colors: + bg: "#1A1E2C" + fg: "#E0E0E0" + black: "#CECFD3" + red: "#BCBCBC" + green: "#B2B2B2" + yellow: "#E9FF70" + blue: "#E9FF70" + magenta: "#8367C7" + cyan: "#70D6FF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#ADADAB" + brightGreen: "#E9FF70" + brightYellow: "#8367C7" + brightBlue: "#8367C7" + brightMagenta: "#70D6FF" + brightCyan: "#C2C0C1" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 272 + contrast: + fg: 86 + black: 75.6 + red: 64.4 + green: 58.7 + yellow: 98.5 + blue: 98.5 + magenta: 29.1 + cyan: 72.5 + white: 89.1 + brightBlack: 21.1 + brightRed: 55.9 + brightGreen: 98.5 + brightYellow: 29.1 + brightBlue: 29.1 + brightMagenta: 72.5 + brightCyan: 67 + brightWhite: 89.1 diff --git a/themes/newrailscasts.yaml b/themes/newrailscasts.yaml new file mode 100644 index 00000000..e313e087 --- /dev/null +++ b/themes/newrailscasts.yaml @@ -0,0 +1,49 @@ +name: "NewRailscasts" +source: + marketplace_id: "carakan.new-railscasts" + version: "1.0.68" + installs: 4016 + author: "Carlos Ramos" + repo: "https://github.com/carakan/new-railscasts-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=carakan.new-railscasts" +colors: + bg: "#202020" + fg: "#FEF9E1" + black: "#212121" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#F3F5F5" + brightBlack: "#4A4A4A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 101.4 + black: 0 + red: 45.5 + green: 83.1 + yellow: 77.8 + blue: 54.8 + magenta: 52.6 + cyan: 77.1 + white: 98.9 + brightBlack: 9.8 + brightRed: 45.5 + brightGreen: 83.1 + brightYellow: 77.8 + brightBlue: 54.8 + brightMagenta: 52.6 + brightCyan: 77.1 + brightWhite: 105.8 diff --git a/themes/newspaperlike.yaml b/themes/newspaperlike.yaml new file mode 100644 index 00000000..30cb61cf --- /dev/null +++ b/themes/newspaperlike.yaml @@ -0,0 +1,49 @@ +name: "Newspaperlike" +source: + marketplace_id: "PaperFanz.newspaperlike" + version: "0.6.0" + installs: 1909 + author: "PaperFanz" + repo: "https://github.com/PaperFanz/newspaperlike" + url: "https://marketplace.visualstudio.com/items?itemName=PaperFanz.newspaperlike" +colors: + bg: "#D8D8D8" + fg: "#272727" + black: "#000000" + red: "#E62325" + green: "#00AA5E" + yellow: "#FFB000" + blue: "#3C6DF0" + magenta: "#DC267F" + cyan: "#785EF0" + white: "#FFFFFF" + brightBlack: "#202020" + brightRed: "#FF5C49" + brightGreen: "#34BC6E" + brightYellow: "#FED500" + brightBlue: "#648FFF" + brightMagenta: "#FF509E" + brightCyan: "#9B82F3" + brightWhite: "#F9F9F9" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 79 + black: 83.2 + red: 46.6 + green: 33.7 + yellow: 11.2 + blue: 48.1 + magenta: 47 + cyan: 48 + white: 23.3 + brightBlack: 80.5 + brightRed: 33.5 + brightGreen: 25 + brightYellow: 0 + brightBlue: 34.1 + brightMagenta: 33.3 + brightCyan: 34.4 + brightWhite: 19.3 diff --git a/themes/newsprint-c.yaml b/themes/newsprint-c.yaml new file mode 100644 index 00000000..e82a9f80 --- /dev/null +++ b/themes/newsprint-c.yaml @@ -0,0 +1,49 @@ +name: "newsprint-c" +source: + marketplace_id: "lumiknit.newsprint" + version: "0.0.12" + installs: 357 + author: "lumiknit" + repo: "https://github.com/lumiknit/vscode-newsprint-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lumiknit.newsprint" +colors: + bg: "#F2F2F2" + fg: "#444444" + black: "#000000" + red: "#E41507" + green: "#57BD66" + yellow: "#FFBD5E" + blue: "#2981CA" + magenta: "#A464D1" + cyan: "#51D2FF" + white: "#DDDDDD" + brightBlack: "#505050" + brightRed: "#FF675D" + brightGreen: "#99E391" + brightYellow: "#FFDE82" + brightBlue: "#4190F7" + brightMagenta: "#D9B9F0" + brightCyan: "#A3FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 84.9 + black: 98.3 + red: 62.8 + green: 38.6 + yellow: 21 + blue: 60.2 + magenta: 58.8 + cyan: 23.8 + white: 9.8 + brightBlack: 80.2 + brightRed: 46.1 + brightGreen: 16.6 + brightYellow: 7.6 + brightBlue: 51.1 + brightMagenta: 23.5 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/newsprint-invert.yaml b/themes/newsprint-invert.yaml new file mode 100644 index 00000000..54222209 --- /dev/null +++ b/themes/newsprint-invert.yaml @@ -0,0 +1,49 @@ +name: "newsprint-invert" +source: + marketplace_id: "lumiknit.newsprint" + version: "0.0.12" + installs: 357 + author: "lumiknit" + repo: "https://github.com/lumiknit/vscode-newsprint-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lumiknit.newsprint" +colors: + bg: "#1F1F1F" + fg: "#BBBBBB" + black: "#FFFFFF" + red: "#E9483D" + green: "#57BD66" + yellow: "#FFBD5E" + blue: "#2981CA" + magenta: "#A464D1" + cyan: "#51D2FF" + white: "#DDDDDD" + brightBlack: "#505050" + brightRed: "#FF675D" + brightGreen: "#99E391" + brightYellow: "#FFDE82" + brightBlue: "#4190F7" + brightMagenta: "#D9B9F0" + brightCyan: "#A3FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 63.8 + black: 105.9 + red: 35 + green: 53.7 + yellow: 72.2 + blue: 31.7 + magenta: 33.2 + cyan: 69.2 + white: 84 + brightBlack: 12.2 + brightRed: 46 + brightGreen: 76.8 + brightYellow: 86.5 + brightBlue: 40.9 + brightMagenta: 69.5 + brightCyan: 95.7 + brightWhite: 105.9 diff --git a/themes/newsprint-so.yaml b/themes/newsprint-so.yaml new file mode 100644 index 00000000..e47c00e8 --- /dev/null +++ b/themes/newsprint-so.yaml @@ -0,0 +1,49 @@ +name: "newsprint-so" +source: + marketplace_id: "lumiknit.newsprint" + version: "0.0.12" + installs: 357 + author: "lumiknit" + repo: "https://github.com/lumiknit/vscode-newsprint-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lumiknit.newsprint" +colors: + bg: "#F2F2F2" + fg: "#0C0D0F" + black: "#3B4044" + red: "#9C2021" + green: "#567A0D" + yellow: "#B75300" + blue: "#005493" + magenta: "#803378" + cyan: "#4290A0" + white: "#D5D9DB" + brightBlack: "#626B74" + brightRed: "#C83232" + brightGreen: "#88B52C" + brightYellow: "#E67A22" + brightBlue: "#0680DB" + brightMagenta: "#B962B0" + brightCyan: "#43BFD8" + brightWhite: "#FAFAFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.9 + black: 86.6 + red: 78.4 + green: 66.8 + yellow: 65.7 + blue: 78.7 + magenta: 79 + cyan: 56.3 + white: 12.5 + brightBlack: 69.3 + brightRed: 67.2 + brightGreen: 39.7 + brightYellow: 47.4 + brightBlue: 59.7 + brightMagenta: 58 + brightCyan: 34.6 + brightWhite: 0 diff --git a/themes/newton-contrast.yaml b/themes/newton-contrast.yaml new file mode 100644 index 00000000..80aad166 --- /dev/null +++ b/themes/newton-contrast.yaml @@ -0,0 +1,49 @@ +name: "newton-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#121014" + fg: "#EAEBFF" + black: "#1F1B22" + red: "#BA0E2E" + green: "#FA824C" + yellow: "#FFBF69" + blue: "#3C91E6" + magenta: "#FA824C" + cyan: "#FFBF69" + white: "#FFFFFF" + brightBlack: "#453D4D" + brightRed: "#F03E5F" + brightGreen: "#FDC7AF" + brightYellow: "#FFEBCF" + brightBlue: "#96C4F2" + brightMagenta: "#FDC7AF" + brightCyan: "#FFEBCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 95.2 + black: 0 + red: 21 + green: 52.7 + yellow: 74.6 + blue: 41.4 + magenta: 52.7 + cyan: 74.6 + white: 107.4 + brightBlack: 8 + brightRed: 37.3 + brightGreen: 79.2 + brightYellow: 96 + brightBlue: 67.9 + brightMagenta: 79.2 + brightCyan: 96 + brightWhite: 107.4 diff --git a/themes/newton-light.yaml b/themes/newton-light.yaml new file mode 100644 index 00000000..1eb018f1 --- /dev/null +++ b/themes/newton-light.yaml @@ -0,0 +1,49 @@ +name: "newton-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#FA824C" + yellow: "#FFBF69" + blue: "#3C91E6" + magenta: "#FA824C" + cyan: "#FFBF69" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FDC7AF" + brightYellow: "#FFEBCF" + brightBlue: "#96C4F2" + brightMagenta: "#FDC7AF" + brightCyan: "#FFEBCF" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 48.8 + yellow: 27.8 + blue: 59.9 + magenta: 48.8 + cyan: 27.8 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 23.5 + brightYellow: 7.8 + brightBlue: 34.2 + brightMagenta: 23.5 + brightCyan: 7.8 + brightWhite: 71.1 diff --git a/themes/newton-next-official.yaml b/themes/newton-next-official.yaml new file mode 100644 index 00000000..0cecc98c --- /dev/null +++ b/themes/newton-next-official.yaml @@ -0,0 +1,49 @@ +name: "Newton Next (Official)" +source: + marketplace_id: "devberto.theme-newton-next" + version: "3.0.6" + installs: 2627 + author: "Marco Bertolini" + repo: "https://github.com/bertolinimarco/vscode-theme-newton-next" + url: "https://marketplace.visualstudio.com/items?itemName=devberto.theme-newton-next" +colors: + bg: "#1A1A1A" + fg: "#CBCCC6" + black: "#1A1A1A" + red: "#D04949" + green: "#EBBD5B" + yellow: "#E5A430" + blue: "#7289DA" + magenta: "#CFBAFA" + cyan: "#95E6CB" + white: "#CBCCC6" + brightBlack: "#111111" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#E5C331" + brightBlue: "#95E6CB" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#5F96D7" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 74 + black: 0 + red: 30.5 + green: 69.4 + yellow: 58.5 + blue: 39.8 + magenta: 69.7 + cyan: 80.5 + white: 74 + brightBlack: 0 + brightRed: 52.5 + brightGreen: 81.6 + brightYellow: 70.5 + brightBlue: 80.5 + brightMagenta: 72.7 + brightCyan: 80.5 + brightWhite: 42.9 diff --git a/themes/newton.yaml b/themes/newton.yaml new file mode 100644 index 00000000..724db964 --- /dev/null +++ b/themes/newton.yaml @@ -0,0 +1,49 @@ +name: "newton" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#342E37" + fg: "#EAEBFF" + black: "#413A45" + red: "#BA0E2E" + green: "#FA824C" + yellow: "#FFBF69" + blue: "#3C91E6" + magenta: "#FA824C" + cyan: "#FFBF69" + white: "#FFFFFF" + brightBlack: "#695C6F" + brightRed: "#F03E5F" + brightGreen: "#FDC7AF" + brightYellow: "#FFEBCF" + brightBlue: "#96C4F2" + brightMagenta: "#FDC7AF" + brightCyan: "#FFEBCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 315 + contrast: + fg: 90.5 + black: 0 + red: 16.4 + green: 48.1 + yellow: 70 + blue: 36.7 + magenta: 48.1 + cyan: 70 + white: 102.7 + brightBlack: 15.6 + brightRed: 32.7 + brightGreen: 74.5 + brightYellow: 91.4 + brightBlue: 63.2 + brightMagenta: 74.5 + brightCyan: 91.4 + brightWhite: 102.7 diff --git a/themes/newx-light.yaml b/themes/newx-light.yaml new file mode 100644 index 00000000..9547944a --- /dev/null +++ b/themes/newx-light.yaml @@ -0,0 +1,49 @@ +name: "NewX Light" +source: + marketplace_id: "xiongshuo1225.newx-time-manager" + version: "2.0.19" + installs: 48 + author: "xiongshuo" + repo: "http://gitlab.alibaba-inc.com/ais-cost-group/time-manager" + url: "https://marketplace.visualstudio.com/items?itemName=xiongshuo1225.newx-time-manager" +colors: + bg: "#F6F7FA" + fg: "#2B3547" + black: "#000000" + red: "#CD3131" + green: "#107C10" + yellow: "#777A00" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#037A98" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#0C860C" + brightYellow: "#757900" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#037A98" + brightWhite: "#777777" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 93.3 + black: 101.3 + red: 69.2 + green: 71.3 + yellow: 67 + blue: 81.3 + magenta: 69.8 + cyan: 68.9 + white: 81.2 + brightBlack: 74 + brightRed: 69.2 + brightGreen: 67.4 + brightYellow: 67.5 + brightBlue: 81.3 + brightMagenta: 69.8 + brightCyan: 68.9 + brightWhite: 66.3 diff --git a/themes/next-theme.yaml b/themes/next-theme.yaml new file mode 100644 index 00000000..7e58bd52 --- /dev/null +++ b/themes/next-theme.yaml @@ -0,0 +1,49 @@ +name: "next-theme" +source: + marketplace_id: "akirco.seabear-theme" + version: "0.0.3" + installs: 101 + author: "akirco" + repo: "https://github.com/akirco/seaBear-theme" + url: "https://marketplace.visualstudio.com/items?itemName=akirco.seabear-theme" +colors: + bg: "#1F2023" + fg: "#8DBCA4" + black: "#2C5A65" + red: "#00B4D8" + green: "#24936E" + yellow: "#9F86C0" + blue: "#DB1369" + magenta: "#00B4D8" + cyan: "#69B0AC" + white: "#EEE8D5" + brightBlack: "#666666" + brightRed: "#9F86C0" + brightGreen: "#5C8490" + brightYellow: "#657B83" + brightBlue: "#DB1369" + brightMagenta: "#646695" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 58.4 + black: 13.6 + red: 52.1 + green: 34.1 + yellow: 40.9 + blue: 28 + magenta: 52.1 + cyan: 50.9 + white: 90.8 + brightBlack: 20.9 + brightRed: 40.9 + brightGreen: 31.7 + brightYellow: 28.6 + brightBlue: 28 + brightMagenta: 22.6 + brightCyan: 47.8 + brightWhite: 100 diff --git a/themes/nextcode.yaml b/themes/nextcode.yaml new file mode 100644 index 00000000..609f64d6 --- /dev/null +++ b/themes/nextcode.yaml @@ -0,0 +1,49 @@ +name: "nextcode" +source: + marketplace_id: "Abraham.nextcode" + version: "0.4.0" + installs: 453 + author: "Abraham" + repo: "https://github.com/abeprincec/nextcode" + url: "https://marketplace.visualstudio.com/items?itemName=Abraham.nextcode" +colors: + bg: "#162636" + fg: "#FFFFFF" + black: "#162636" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 249 + contrast: + fg: 105 + black: 0 + red: 37.4 + green: 65.3 + yellow: 80.1 + blue: 54 + magenta: 51.8 + cyan: 57.8 + white: 105 + brightBlack: 13.7 + brightRed: 37.4 + brightGreen: 65.3 + brightYellow: 91.8 + brightBlue: 54 + brightMagenta: 51.8 + brightCyan: 72.1 + brightWhite: 105 diff --git a/themes/nexus-dark.yaml b/themes/nexus-dark.yaml new file mode 100644 index 00000000..70b0f592 --- /dev/null +++ b/themes/nexus-dark.yaml @@ -0,0 +1,49 @@ +name: "Nexus Dark" +source: + marketplace_id: "pankajghosh.nexus-dark" + version: "0.2.4" + installs: 101 + author: "Pankaj Ghosh" + repo: "https://github.com/iampankajghosh/nexus-dark" + url: "https://marketplace.visualstudio.com/items?itemName=pankajghosh.nexus-dark" +colors: + bg: "#0C0C0C" + fg: "#FAFAFA" + black: "#0D0D0D" + red: "#D66D5F" + green: "#90C85B" + yellow: "#DEDDA9" + blue: "#8EB7DB" + magenta: "#D66D5F" + cyan: "#8EB7DB" + white: "#D9D9D9" + brightBlack: "#0D0D0D" + brightRed: "#D66D5F" + brightGreen: "#90C85B" + brightYellow: "#DEDDA9" + brightBlue: "#8EB7DB" + brightMagenta: "#D66D5F" + brightCyan: "#8EB7DB" + brightWhite: "#D9D9D9" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 104.4 + black: 0 + red: 40.6 + green: 64 + yellow: 84 + blue: 60.7 + magenta: 40.6 + cyan: 60.7 + white: 83.3 + brightBlack: 0 + brightRed: 40.6 + brightGreen: 64 + brightYellow: 84 + brightBlue: 60.7 + brightMagenta: 40.6 + brightCyan: 60.7 + brightWhite: 83.3 diff --git a/themes/nexus.yaml b/themes/nexus.yaml new file mode 100644 index 00000000..8b8df818 --- /dev/null +++ b/themes/nexus.yaml @@ -0,0 +1,49 @@ +name: "Nexus" +source: + marketplace_id: "lusignan.nexus" + version: "0.4.3" + installs: 1233 + author: "Zac de Lusignan" + repo: "https://github.com/lusignan/nexus-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=lusignan.nexus" +colors: + bg: "#21222A" + fg: "#A3A9D0" + black: "#000000" + red: "#F07178" + green: "#C2FCFF" + yellow: "#FFC795" + blue: "#5EC4FF" + magenta: "#C792EA" + cyan: "#5EC4FF" + white: "#EBF1FF" + brightBlack: "#464B5D" + brightRed: "#F07178" + brightGreen: "#C2FCFF" + brightYellow: "#FFC795" + brightBlue: "#5EC4FF" + brightMagenta: "#C792EA" + brightCyan: "#5EC4FF" + brightWhite: "#EBF1FF" +meta: + mode: "dark" + accent: "orange" + hue: 280 + contrast: + fg: 54.3 + black: 0 + red: 45.1 + green: 96.5 + yellow: 76.7 + blue: 62.9 + magenta: 52.3 + cyan: 62.9 + white: 96.1 + brightBlack: 10 + brightRed: 45.1 + brightGreen: 96.5 + brightYellow: 76.7 + brightBlue: 62.9 + brightMagenta: 52.3 + brightCyan: 62.9 + brightWhite: 96.1 diff --git a/themes/ngc-aurora-dawn.yaml b/themes/ngc-aurora-dawn.yaml new file mode 100644 index 00000000..3f107784 --- /dev/null +++ b/themes/ngc-aurora-dawn.yaml @@ -0,0 +1,49 @@ +name: "NGC Aurora Dawn" +source: + marketplace_id: "nextgencode.ngen-themes" + version: "1.1.0" + installs: 73 + author: "NextGenCode" + repo: "https://github.com/Mattzey/Ngen-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" +colors: + bg: "#F8F6FF" + fg: "#1A2332" + black: "#2C3E50" + red: "#D63447" + green: "#4BC98A" + yellow: "#E68935" + blue: "#3D9AED" + magenta: "#B794F6" + cyan: "#4BC98A" + white: "#8A95A6" + brightBlack: "#556575" + brightRed: "#E54D5F" + brightGreen: "#5FD49F" + brightYellow: "#F09C4D" + brightBlue: "#57B0FF" + brightMagenta: "#CAAAF9" + brightCyan: "#5FD49F" + brightWhite: "#E8EDF2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98 + black: 90.7 + red: 66.6 + green: 35.9 + yellow: 46.1 + blue: 51.3 + magenta: 43.3 + cyan: 35.9 + white: 52.4 + brightBlack: 75.2 + brightRed: 59.6 + brightGreen: 29.6 + brightYellow: 38.2 + brightBlue: 40.7 + brightMagenta: 33.3 + brightCyan: 29.6 + brightWhite: 0 diff --git a/themes/ngc-aurora-night.yaml b/themes/ngc-aurora-night.yaml new file mode 100644 index 00000000..7558e3a0 --- /dev/null +++ b/themes/ngc-aurora-night.yaml @@ -0,0 +1,49 @@ +name: "NGC Aurora Night" +source: + marketplace_id: "nextgencode.ngen-themes" + version: "1.1.0" + installs: 73 + author: "NextGenCode" + repo: "https://github.com/Mattzey/Ngen-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" +colors: + bg: "#1B2028" + fg: "#E0E6ED" + black: "#151A1F" + red: "#FF6B80" + green: "#5DE4A4" + yellow: "#FFB560" + blue: "#57B5FF" + magenta: "#B794F6" + cyan: "#5DE4A4" + white: "#E0E6ED" + brightBlack: "#6B7B8C" + brightRed: "#FF8599" + brightGreen: "#75F0BC" + brightYellow: "#FFC47A" + brightBlue: "#73C6FF" + brightMagenta: "#CAAAF9" + brightCyan: "#75F0BC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 260 + contrast: + fg: 89.1 + black: 0 + red: 47.5 + green: 74 + yellow: 69 + blue: 56.6 + magenta: 51.9 + cyan: 74 + white: 89.1 + brightBlack: 29.5 + brightRed: 54.8 + brightGreen: 82 + brightYellow: 75.3 + brightBlue: 65.4 + brightMagenta: 62.2 + brightCyan: 82 + brightWhite: 105.8 diff --git a/themes/ngc-forest-retreat.yaml b/themes/ngc-forest-retreat.yaml new file mode 100644 index 00000000..59c8206f --- /dev/null +++ b/themes/ngc-forest-retreat.yaml @@ -0,0 +1,49 @@ +name: "NGC Forest Retreat" +source: + marketplace_id: "nextgencode.ngen-themes" + version: "1.1.0" + installs: 73 + author: "NextGenCode" + repo: "https://github.com/Mattzey/Ngen-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" +colors: + bg: "#1D2321" + fg: "#D9DCD6" + black: "#1D2321" + red: "#D97969" + green: "#86B98A" + yellow: "#D4A574" + blue: "#77A5A5" + magenta: "#C8A8B8" + cyan: "#86B98A" + white: "#D9DCD6" + brightBlack: "#6B7D70" + brightRed: "#E99484" + brightGreen: "#9FCDA3" + brightYellow: "#E4BC8F" + brightBlue: "#8FBFBF" + brightMagenta: "#DABCCB" + brightCyan: "#9FCDA3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 82.4 + black: 0 + red: 42.4 + green: 55.4 + yellow: 56 + blue: 46.8 + magenta: 57.5 + cyan: 55.4 + white: 82.4 + brightBlack: 28.9 + brightRed: 54.1 + brightGreen: 67.2 + brightYellow: 67.9 + brightBlue: 60.7 + brightMagenta: 68.6 + brightCyan: 67.2 + brightWhite: 105.5 diff --git a/themes/ngc-midnight-base.yaml b/themes/ngc-midnight-base.yaml new file mode 100644 index 00000000..4e0f78bd --- /dev/null +++ b/themes/ngc-midnight-base.yaml @@ -0,0 +1,49 @@ +name: "NGC Midnight Base" +source: + marketplace_id: "nextgencode.ngen-themes" + version: "1.1.0" + installs: 73 + author: "NextGenCode" + repo: "https://github.com/Mattzey/Ngen-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" +colors: + bg: "#1A1D23" + fg: "#D4D4D6" + black: "#151820" + red: "#FF6B6B" + green: "#7DD3A0" + yellow: "#DCC38B" + blue: "#6FA0E6" + magenta: "#E8A5C2" + cyan: "#7DD3A0" + white: "#D4D4D6" + brightBlack: "#6B7280" + brightRed: "#FF8585" + brightGreen: "#95E7B5" + brightYellow: "#E8D1A0" + brightBlue: "#8AB7F0" + brightMagenta: "#F2BFD8" + brightCyan: "#95E7B5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 78.9 + black: 0 + red: 47.4 + green: 67.8 + yellow: 70.1 + blue: 48.3 + magenta: 62.5 + cyan: 67.8 + white: 78.9 + brightBlack: 26.4 + brightRed: 54.5 + brightGreen: 79.8 + brightYellow: 78.4 + brightBlue: 60.1 + brightMagenta: 74.7 + brightCyan: 79.8 + brightWhite: 106.2 diff --git a/themes/ngoding-bro.yaml b/themes/ngoding-bro.yaml new file mode 100644 index 00000000..f6b1fa77 --- /dev/null +++ b/themes/ngoding-bro.yaml @@ -0,0 +1,49 @@ +name: "ngoding bro" +source: + marketplace_id: "MicolaArighi.ngoding-bro" + version: "0.3.0" + installs: 170 + author: "Micola Arighi" + repo: "https://github.com/micolarighi/my-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MicolaArighi.ngoding-bro" +colors: + bg: "#252934" + fg: "#D4D4D4" + black: "#585858" + red: "#B46767" + green: "#0DBC79" + yellow: "#FDFD87" + blue: "#2472C8" + magenta: "#E06AE0" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F59696" + brightGreen: "#23D18B" + brightYellow: "#FFFF8D" + brightBlue: "#3B8EEA" + brightMagenta: "#F29FF2" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + contrast: + fg: 76.8 + black: 13.6 + red: 29.8 + green: 50.3 + yellow: 98.9 + blue: 24.8 + magenta: 43.8 + cyan: 44.9 + white: 87.4 + brightBlack: 19.4 + brightRed: 56.2 + brightGreen: 60.9 + brightYellow: 100.3 + brightBlue: 37.3 + brightMagenta: 62.7 + brightCyan: 52.7 + brightWhite: 87.4 diff --git a/themes/nibelung-dark.yaml b/themes/nibelung-dark.yaml new file mode 100644 index 00000000..1ba87528 --- /dev/null +++ b/themes/nibelung-dark.yaml @@ -0,0 +1,49 @@ +name: "Nibelung Dark" +source: + marketplace_id: "veschin.nibelung-theme-vscode" + version: "0.1.0" + installs: 82 + author: "Oleg Veschin" + repo: "https://github.com/veschin/nibelung-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=veschin.nibelung-theme-vscode" +colors: + bg: "#212529" + fg: "#ADB5BD" + black: "#343A40" + red: "#FFADAD" + green: "#CAFFBF" + yellow: "#FDFFB6" + blue: "#9FA0FF" + magenta: "#FFC6FF" + cyan: "#9BF6FF" + white: "#FFD6A5" + brightBlack: "#495057" + brightRed: "#FFADAD" + brightGreen: "#CAFFBF" + brightYellow: "#FDFFB6" + brightBlue: "#9BF6FF" + brightMagenta: "#FFC6FF" + brightCyan: "#CAFFBF" + brightWhite: "#A0C4FF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 58.9 + black: 0 + red: 67.3 + green: 95.8 + yellow: 101.9 + blue: 53 + magenta: 80.4 + cyan: 89.8 + white: 83 + brightBlack: 11 + brightRed: 67.3 + brightGreen: 95.8 + brightYellow: 101.9 + brightBlue: 89.8 + brightMagenta: 80.4 + brightCyan: 95.8 + brightWhite: 67.2 diff --git a/themes/nibelung.yaml b/themes/nibelung.yaml new file mode 100644 index 00000000..426703e5 --- /dev/null +++ b/themes/nibelung.yaml @@ -0,0 +1,49 @@ +name: "Nibelung" +source: + marketplace_id: "veschin.nibelung-theme-vscode" + version: "0.1.0" + installs: 82 + author: "Oleg Veschin" + repo: "https://github.com/veschin/nibelung-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=veschin.nibelung-theme-vscode" +colors: + bg: "#F8F9FA" + fg: "#343A40" + black: "#ADB5BD" + red: "#FAD2E1" + green: "#E2ECE9" + yellow: "#FFF1E6" + blue: "#9BB1FF" + magenta: "#FDE2E4" + cyan: "#BEE1E6" + white: "#E9ECEF" + brightBlack: "#ADB5BD" + brightRed: "#FAD2E1" + brightGreen: "#E2ECE9" + brightYellow: "#FFF1E6" + brightBlue: "#9BB1FF" + brightMagenta: "#FDE2E4" + brightCyan: "#BEE1E6" + brightWhite: "#E9ECEF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 92.8 + black: 36.9 + red: 14.2 + green: 0 + yellow: 0 + blue: 36.8 + magenta: 7.3 + cyan: 15.3 + white: 0 + brightBlack: 36.9 + brightRed: 14.2 + brightGreen: 0 + brightYellow: 0 + brightBlue: 36.8 + brightMagenta: 7.3 + brightCyan: 15.3 + brightWhite: 0 diff --git a/themes/nice-dark.yaml b/themes/nice-dark.yaml new file mode 100644 index 00000000..cbf277c8 --- /dev/null +++ b/themes/nice-dark.yaml @@ -0,0 +1,49 @@ +name: "Nice-Dark" +source: + marketplace_id: "MarcosBatisaldo.nice-dark" + version: "1.1.3" + installs: 458 + author: "Marcos Batisaldo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MarcosBatisaldo.nice-dark" +colors: + bg: "#191919" + fg: "#C3C8D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 71.9 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/nicedark-fork.yaml b/themes/nicedark-fork.yaml new file mode 100644 index 00000000..4577ad2e --- /dev/null +++ b/themes/nicedark-fork.yaml @@ -0,0 +1,49 @@ +name: "nicedark - Fork" +source: + marketplace_id: "niceDark.nicedark" + version: "0.1.0" + installs: 83 + author: "FathyMuhamed" + repo: "https://github.com/FathyMuhamed/darkTheme" + url: "https://marketplace.visualstudio.com/items?itemName=niceDark.nicedark" +colors: + bg: "#193549" + fg: "#FCFCFC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 242 + contrast: + fg: 100.1 + black: 0 + red: 21.9 + green: 48.2 + yellow: 80.8 + blue: 22.6 + magenta: 24.9 + cyan: 42.7 + white: 85.2 + brightBlack: 17.2 + brightRed: 33.7 + brightGreen: 58.7 + brightYellow: 90.8 + brightBlue: 35.2 + brightMagenta: 40.6 + brightCyan: 50.6 + brightWhite: 85.2 diff --git a/themes/nicedark.yaml b/themes/nicedark.yaml new file mode 100644 index 00000000..7ffb3fde --- /dev/null +++ b/themes/nicedark.yaml @@ -0,0 +1,49 @@ +name: "niceDark" +source: + marketplace_id: "niceDark.nicedark" + version: "0.1.0" + installs: 83 + author: "FathyMuhamed" + repo: "https://github.com/FathyMuhamed/darkTheme" + url: "https://marketplace.visualstudio.com/items?itemName=niceDark.nicedark" +colors: + bg: "#193549" + fg: "#D6DEEB" + black: "#193549" + red: "#EF5350" + green: "#22DA6E" + yellow: "#FFC600" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 242 + contrast: + fg: 80.4 + black: 0 + red: 34.5 + green: 62.4 + yellow: 71.3 + blue: 51.1 + magenta: 48.9 + cyan: 54.9 + white: 102.1 + brightBlack: 10.8 + brightRed: 34.5 + brightGreen: 62.4 + brightYellow: 88.9 + brightBlue: 51.1 + brightMagenta: 48.9 + brightCyan: 69.2 + brightWhite: 102.1 diff --git a/themes/nicely-neon.yaml b/themes/nicely-neon.yaml new file mode 100644 index 00000000..28793145 --- /dev/null +++ b/themes/nicely-neon.yaml @@ -0,0 +1,49 @@ +name: "Nicely Neon" +source: + marketplace_id: "eight84.nicely-neon-theme" + version: "1.9.8" + installs: 310 + author: "eight84" + repo: "https://github.com/eight84/nicely-neon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eight84.nicely-neon-theme" +colors: + bg: "#18181C" + fg: "#E0E0E0" + black: "#18181C" + red: "#FE6262" + green: "#1AFF90" + yellow: "#FEE462" + blue: "#62A8FE" + magenta: "#FE62B5" + cyan: "#62FECA" + white: "#E0E0E0" + brightBlack: "#18181C" + brightRed: "#FE6262" + brightGreen: "#62FE9B" + brightYellow: "#FEE462" + brightBlue: "#62A8FE" + brightMagenta: "#FE62B5" + brightCyan: "#62FECA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 86.7 + black: 0 + red: 45.6 + green: 86.9 + yellow: 89.3 + blue: 52.8 + magenta: 48.4 + cyan: 89.8 + white: 86.7 + brightBlack: 0 + brightRed: 45.6 + brightGreen: 88.2 + brightYellow: 89.3 + brightBlue: 52.8 + brightMagenta: 48.4 + brightCyan: 89.8 + brightWhite: 106.7 diff --git a/themes/nier-automata-light-theme.yaml b/themes/nier-automata-light-theme.yaml new file mode 100644 index 00000000..0b6adb42 --- /dev/null +++ b/themes/nier-automata-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Nier: Automata Light Theme" +source: + marketplace_id: "b5261b62-5943-495a-a2cd-2b281ddb7a76.vscode-nier-automata-theme" + version: "1.0.0" + installs: 15576 + author: "Shelune" + repo: "https://github.com/shelune/vscode-nier-automata-light" + url: "https://marketplace.visualstudio.com/items?itemName=b5261b62-5943-495a-a2cd-2b281ddb7a76.vscode-nier-automata-theme" +colors: + bg: "#DAD3BA" + fg: "#4E4B42" + black: "#DAD3BA" + red: "#727B5B" + green: "#727B5B" + yellow: "#62473B" + blue: "#4A5246" + magenta: "#BA7F6E" + cyan: "#CC654C" + white: "#4F4E43" + brightBlack: "#8D8F7E" + brightRed: "#2E3335" + brightGreen: "#CC654C" + brightYellow: "#62473B" + brightBlue: "#4A5246" + brightMagenta: "#BA7F6E" + brightCyan: "#CC654C" + brightWhite: "#4E4B42" +meta: + mode: "light" + accent: "orange" + hue: 94 + contrast: + fg: 64.2 + black: 0 + red: 45.3 + green: 45.3 + yellow: 63.4 + blue: 62.4 + magenta: 34.6 + cyan: 39.3 + white: 63.3 + brightBlack: 34.7 + brightRed: 73.2 + brightGreen: 39.3 + brightYellow: 63.4 + brightBlue: 62.4 + brightMagenta: 34.6 + brightCyan: 39.3 + brightWhite: 64.2 diff --git a/themes/nier-automata-theme.yaml b/themes/nier-automata-theme.yaml new file mode 100644 index 00000000..50ce94a0 --- /dev/null +++ b/themes/nier-automata-theme.yaml @@ -0,0 +1,49 @@ +name: "Nier: Automata Theme" +source: + marketplace_id: "israelyagopereira.nier-automata-theme" + version: "0.0.4" + installs: 2275 + author: "Israel Yago Pereira" + repo: "https://github.com/israelyago/nier-automata-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=israelyagopereira.nier-automata-theme" +colors: + bg: "#E7DEC9" + fg: "#3E3B35" + black: "#3F3E32" + red: "#FF3200" + green: "#358138" + yellow: "#A38920" + blue: "#2A8EBE" + magenta: "#C77BB0" + cyan: "#0288A7" + white: "#8D8F7E" + brightBlack: "#515040" + brightRed: "#FF0000" + brightGreen: "#5DD462" + brightYellow: "#D7AC01" + brightBlue: "#0078B4" + brightMagenta: "#FF73D5" + brightCyan: "#4CB4CC" + brightWhite: "#EFF0E2" +meta: + mode: "light" + accent: "orange" + hue: 88 + contrast: + fg: 76.8 + black: 76 + red: 43.3 + green: 54.1 + yellow: 42.4 + blue: 44.9 + magenta: 38.1 + cyan: 48.8 + white: 41.3 + brightBlack: 69.2 + brightRed: 45.1 + brightGreen: 16.7 + brightYellow: 22.8 + brightBlue: 53.8 + brightMagenta: 28 + brightCyan: 28.2 + brightWhite: 8.5 diff --git a/themes/night-aurora.yaml b/themes/night-aurora.yaml new file mode 100644 index 00000000..f4493c30 --- /dev/null +++ b/themes/night-aurora.yaml @@ -0,0 +1,49 @@ +name: "night-aurora" +source: + marketplace_id: "NightAurora.nightaurora" + version: "0.1.9" + installs: 56 + author: "NightAurora" + repo: "https://github.com/justizha/NIghtAurora" + url: "https://marketplace.visualstudio.com/items?itemName=NightAurora.nightaurora" +colors: + bg: "#22213A" + fg: "#9C97BD" + black: "#22213A" + red: "#CA7658" + green: "#57BE69" + yellow: "#C6B766" + blue: "#1F5596" + magenta: "#5F2050" + cyan: "#75D7C4" + white: "#A8A2CA" + brightBlack: "#6E75A8" + brightRed: "#BA1F81" + brightGreen: "#2AE66C" + brightYellow: "#EFF21A" + brightBlue: "#0E4BF2" + brightMagenta: "#8D0462" + brightCyan: "#1BE6BD" + brightWhite: "#A8A2CA" +meta: + mode: "dark" + accent: "purple" + hue: 285 + contrast: + fg: 45.6 + black: 0 + red: 38.2 + green: 53.5 + yellow: 60.3 + blue: 13.6 + magenta: 0 + cyan: 69.5 + white: 51.7 + brightBlack: 28.5 + brightRed: 21.5 + brightGreen: 71.6 + brightYellow: 91.4 + brightBlue: 18.8 + brightMagenta: 10.8 + brightCyan: 73.7 + brightWhite: 51.7 diff --git a/themes/night-blossom.yaml b/themes/night-blossom.yaml new file mode 100644 index 00000000..db11126d --- /dev/null +++ b/themes/night-blossom.yaml @@ -0,0 +1,49 @@ +name: "night-blossom" +source: + marketplace_id: "RustedTurnip.night-blossom" + version: "0.1.0" + installs: 1575 + author: "RustedTurnip" + repo: "https://github.com/RustedTurnip/night-blossom" + url: "https://marketplace.visualstudio.com/items?itemName=RustedTurnip.night-blossom" +colors: + bg: "#00041F" + fg: "#FFEBF7" + black: "#00041F" + red: "#E8336C" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFEBF7" + brightBlack: "#575656" + brightRed: "#E8336C" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFEBF7" +meta: + mode: "dark" + accent: "red" + hue: 263 + contrast: + fg: 98.1 + black: 0 + red: 34.9 + green: 68.1 + yellow: 82.9 + blue: 56.8 + magenta: 54.6 + cyan: 60.5 + white: 98.1 + brightBlack: 16.4 + brightRed: 34.9 + brightGreen: 68.1 + brightYellow: 94.5 + brightBlue: 56.8 + brightMagenta: 54.6 + brightCyan: 74.8 + brightWhite: 98.1 diff --git a/themes/night-blue-high.yaml b/themes/night-blue-high.yaml new file mode 100644 index 00000000..5681262e --- /dev/null +++ b/themes/night-blue-high.yaml @@ -0,0 +1,49 @@ +name: "Night blue (high)" +source: + marketplace_id: "voidjmp-vscode-extensions.vscode-theme-night-blue" + version: "0.0.6" + installs: 66 + author: "voidjmp-vscode-extensions" + repo: "https://github.com/VoIdJMp/vscode-theme-night-blue" + url: "https://marketplace.visualstudio.com/items?itemName=voidjmp-vscode-extensions.vscode-theme-night-blue" +colors: + bg: "#000851" + fg: "#FFFFFF" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 264 + contrast: + fg: 106.4 + black: 0 + red: 62.9 + green: 90.3 + yellow: 95.2 + blue: 80.8 + magenta: 74.3 + cyan: 95.4 + white: 74.2 + brightBlack: 0 + brightRed: 51.2 + brightGreen: 86.3 + brightYellow: 90 + brightBlue: 61.7 + brightMagenta: 49.8 + brightCyan: 93.3 + brightWhite: 106.4 diff --git a/themes/night-city.yaml b/themes/night-city.yaml new file mode 100644 index 00000000..942185d9 --- /dev/null +++ b/themes/night-city.yaml @@ -0,0 +1,49 @@ +name: "Night City" +source: + marketplace_id: "GibMalFeuerzeugBitte.night-city" + version: "0.0.6" + installs: 68 + author: "GibMalFeuerzeugBitte" + repo: "https://github.com/GibMalFeuerzeugBitte/Night-City" + url: "https://marketplace.visualstudio.com/items?itemName=GibMalFeuerzeugBitte.night-city" +colors: + bg: "#0F1419" + fg: "#E0E0E8" + black: "#14141F" + red: "#F87171" + green: "#4ADE80" + yellow: "#FBBF24" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#5FCFE4" + white: "#E0E0E8" + brightBlack: "#52525B" + brightRed: "#FCA5A5" + brightGreen: "#86EFAC" + brightYellow: "#FCD34D" + brightBlue: "#93C5FD" + brightMagenta: "#D8B4FE" + brightCyan: "#A5F3FC" + brightWhite: "#F4F4F5" +meta: + mode: "dark" + accent: "teal" + hue: 249 + contrast: + fg: 87.6 + black: 0 + red: 48.4 + green: 70.8 + yellow: 73 + blue: 51.7 + magenta: 50 + cyan: 68.2 + white: 87.6 + brightBlack: 14.5 + brightRed: 65.9 + brightGreen: 83.4 + brightYellow: 81.7 + brightBlue: 68.5 + brightMagenta: 69.6 + brightCyan: 91.1 + brightWhite: 100 diff --git a/themes/night-cyan.yaml b/themes/night-cyan.yaml new file mode 100644 index 00000000..d1a8aa34 --- /dev/null +++ b/themes/night-cyan.yaml @@ -0,0 +1,49 @@ +name: "Night Cyan" +source: + marketplace_id: "er-codee.themes-er" + version: "0.0.2" + installs: 1014 + author: "er-codee" + repo: "https://github.com/Ernesto-Rosas/Themes-ER" + url: "https://marketplace.visualstudio.com/items?itemName=er-codee.themes-er" +colors: + bg: "#181818" + fg: "#C8C6BF" + black: "#181818" + red: "#F07178" + green: "#B9E02D" + yellow: "#35B4A1" + blue: "#313F54" + magenta: "#D4BFFF" + cyan: "#181818" + white: "#C8C6BF" + brightBlack: "#323946" + brightRed: "#FF6D48" + brightGreen: "#8BC17A" + brightYellow: "#35B4A1" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#A6FDE1" + brightWhite: "#C8C6BF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 71 + black: 0 + red: 46.5 + green: 77.8 + yellow: 51 + blue: 0 + magenta: 72.9 + cyan: 0 + white: 71 + brightBlack: 0 + brightRed: 47.8 + brightGreen: 60.2 + brightYellow: 51 + brightBlue: 34.6 + brightMagenta: 57.3 + brightCyan: 94.4 + brightWhite: 71 diff --git a/themes/night-dragon.yaml b/themes/night-dragon.yaml new file mode 100644 index 00000000..6952105e --- /dev/null +++ b/themes/night-dragon.yaml @@ -0,0 +1,49 @@ +name: "Night Dragon" +source: + marketplace_id: "DarkAlchemy.darkalchemy" + version: "0.0.3" + installs: 576 + author: "Dark Alchemy" + repo: "https://github.com/dark-alchemy/darkalchemy-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkAlchemy.darkalchemy" +colors: + bg: "#151824" + fg: "#FFFFFF" + black: "#000000" + red: "#DA8548" + green: "#23D18B" + yellow: "#ECBE7B" + blue: "#00BFF8" + magenta: "#BC3FBC" + cyan: "#46D9FF" + white: "#E5E5E5" + brightBlack: "#CFCFCF" + brightRed: "#DA8548" + brightGreen: "#23D18B" + brightYellow: "#ECBE7B" + brightBlue: "#00BFF8" + brightMagenta: "#D670D6" + brightCyan: "#46D9FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 273 + contrast: + fg: 106.7 + black: 0 + red: 46.7 + green: 63.4 + yellow: 70.7 + blue: 59.8 + magenta: 29.6 + cyan: 72.9 + white: 89.8 + brightBlack: 76.3 + brightRed: 46.7 + brightGreen: 63.4 + brightYellow: 70.7 + brightBlue: 59.8 + brightMagenta: 45.2 + brightCyan: 72.9 + brightWhite: 89.8 diff --git a/themes/night-fae-theme.yaml b/themes/night-fae-theme.yaml new file mode 100644 index 00000000..e7e00d7c --- /dev/null +++ b/themes/night-fae-theme.yaml @@ -0,0 +1,49 @@ +name: "night fae theme" +source: + marketplace_id: "SavannahOstrowski.shadowlands-themes" + version: "0.3.0" + installs: 630 + author: "Savannah Ostrowski" + repo: "https://github.com/savannahostrowski/shadowlands-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SavannahOstrowski.shadowlands-themes" +colors: + bg: "#242147" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#7C7CA2" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 57.3 + black: 0 + red: 34.6 + green: 58.2 + yellow: 46.5 + blue: 47.5 + magenta: 36.9 + cyan: 50.4 + white: 88.5 + brightBlack: 13.3 + brightRed: 43.9 + brightGreen: 74.6 + brightYellow: 59.1 + brightBlue: 61.6 + brightMagenta: 48.1 + brightCyan: 65.7 + brightWhite: 31.3 diff --git a/themes/night-market.yaml b/themes/night-market.yaml new file mode 100644 index 00000000..da8b0709 --- /dev/null +++ b/themes/night-market.yaml @@ -0,0 +1,49 @@ +name: "Night Market" +source: + marketplace_id: "Icycoldveins.verum-monokai-themes" + version: "1.2.1" + installs: 46 + author: "Icycoldveins" + repo: "https://github.com/icycoldveins/Ide-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" +colors: + bg: "#2D2A2E" + fg: "#9B59B6" + black: "#32302F" + red: "#E06C75" + green: "#98C379" + yellow: "#E78A4E" + blue: "#7DAEA3" + magenta: "#FF6B6B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E78A4E" + brightBlue: "#7DAEA3" + brightMagenta: "#FF6B6B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 25.6 + black: 0 + red: 39.1 + green: 59.3 + yellow: 47.8 + blue: 49.2 + magenta: 45.1 + cyan: 51.6 + white: 65 + brightBlack: 33.3 + brightRed: 39.1 + brightGreen: 59.3 + brightYellow: 47.8 + brightBlue: 49.2 + brightMagenta: 45.1 + brightCyan: 51.6 + brightWhite: 70.2 diff --git a/themes/night-owl-oled-dim-100.yaml b/themes/night-owl-oled-dim-100.yaml new file mode 100644 index 00000000..c6b89151 --- /dev/null +++ b/themes/night-owl-oled-dim-100.yaml @@ -0,0 +1,49 @@ +name: "Night Owl Oled Dim 100" +source: + marketplace_id: "WeiyuWang.night-owl-oled-dim" + version: "1.0.1" + installs: 4585 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/night-owl-oled-dim" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" +colors: + bg: "#000000" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 86.2 + black: 0 + red: 40.3 + green: 68.3 + yellow: 83.1 + blue: 56.9 + magenta: 54.8 + cyan: 60.7 + white: 107.9 + brightBlack: 16.6 + brightRed: 40.3 + brightGreen: 68.3 + brightYellow: 94.7 + brightBlue: 56.9 + brightMagenta: 54.8 + brightCyan: 75 + brightWhite: 107.9 diff --git a/themes/night-owl-oled-dim-75.yaml b/themes/night-owl-oled-dim-75.yaml new file mode 100644 index 00000000..930f6ad1 --- /dev/null +++ b/themes/night-owl-oled-dim-75.yaml @@ -0,0 +1,49 @@ +name: "Night Owl Oled Dim 75" +source: + marketplace_id: "WeiyuWang.night-owl-oled-dim" + version: "1.0.1" + installs: 4585 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/night-owl-oled-dim" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" +colors: + bg: "#000000" + fg: "#A0A6B0" + black: "#00101D" + red: "#B33E3C" + green: "#19A352" + yellow: "#93AB5A" + blue: "#617FBF" + magenta: "#956DAF" + cyan: "#18957E" + white: "#BFBFBF" + brightBlack: "#414040" + brightRed: "#B33E3C" + brightGreen: "#19A352" + brightYellow: "#BFB06F" + brightBlue: "#617FBF" + brightMagenta: "#956DAF" + brightCyan: "#5FA497" + brightWhite: "#BFBFBF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 53.8 + black: 0 + red: 24.1 + green: 42.1 + yellow: 51.9 + blue: 34.8 + magenta: 33.4 + cyan: 37.3 + white: 68 + brightBlack: 8.5 + brightRed: 24.1 + brightGreen: 42.1 + brightYellow: 59.5 + brightBlue: 34.8 + brightMagenta: 33.4 + brightCyan: 46.6 + brightWhite: 68 diff --git a/themes/night-owl-oled-dim-80.yaml b/themes/night-owl-oled-dim-80.yaml new file mode 100644 index 00000000..69409a9f --- /dev/null +++ b/themes/night-owl-oled-dim-80.yaml @@ -0,0 +1,49 @@ +name: "Night Owl Oled Dim 80" +source: + marketplace_id: "WeiyuWang.night-owl-oled-dim" + version: "1.0.1" + installs: 4585 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/night-owl-oled-dim" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" +colors: + bg: "#000000" + fg: "#ABB1BC" + black: "#00111F" + red: "#BF4240" + green: "#1BAE58" + yellow: "#9DB660" + blue: "#6888CC" + magenta: "#9F74BB" + cyan: "#1A9F86" + white: "#CCCCCC" + brightBlack: "#454444" + brightRed: "#BF4240" + brightGreen: "#1BAE58" + brightYellow: "#CCBC77" + brightBlue: "#6888CC" + brightMagenta: "#9F74BB" + brightCyan: "#65AFA1" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 59.9 + black: 0 + red: 27.1 + green: 47.1 + yellow: 57.6 + blue: 39.1 + magenta: 37.3 + cyan: 41.7 + white: 75.7 + brightBlack: 9.9 + brightRed: 27.1 + brightGreen: 47.1 + brightYellow: 66.2 + brightBlue: 39.1 + brightMagenta: 37.3 + brightCyan: 51.9 + brightWhite: 75.7 diff --git a/themes/night-owl-oled-dim-85.yaml b/themes/night-owl-oled-dim-85.yaml new file mode 100644 index 00000000..9d755fef --- /dev/null +++ b/themes/night-owl-oled-dim-85.yaml @@ -0,0 +1,49 @@ +name: "Night Owl Oled Dim 85" +source: + marketplace_id: "WeiyuWang.night-owl-oled-dim" + version: "1.0.1" + installs: 4585 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/night-owl-oled-dim" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" +colors: + bg: "#000000" + fg: "#B5BCC7" + black: "#001221" + red: "#CB4644" + green: "#1CB95D" + yellow: "#A7C166" + blue: "#6E90D8" + magenta: "#A97CC6" + cyan: "#1CA98E" + white: "#D8D8D8" + brightBlack: "#494949" + brightRed: "#CB4644" + brightGreen: "#1CB95D" + brightYellow: "#D8C77E" + brightBlue: "#6E90D8" + brightMagenta: "#A97CC6" + brightCyan: "#6BBAAB" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 66 + black: 0 + red: 30.2 + green: 52.1 + yellow: 63.5 + blue: 43.1 + magenta: 41.6 + cyan: 46.3 + white: 82.9 + brightBlack: 11.6 + brightRed: 30.2 + brightGreen: 52.1 + brightYellow: 72.6 + brightBlue: 43.1 + brightMagenta: 41.6 + brightCyan: 57.4 + brightWhite: 82.9 diff --git a/themes/night-owl-oled-dim-90.yaml b/themes/night-owl-oled-dim-90.yaml new file mode 100644 index 00000000..7af45967 --- /dev/null +++ b/themes/night-owl-oled-dim-90.yaml @@ -0,0 +1,49 @@ +name: "Night Owl Oled Dim 90" +source: + marketplace_id: "WeiyuWang.night-owl-oled-dim" + version: "1.0.1" + installs: 4585 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/night-owl-oled-dim" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" +colors: + bg: "#000000" + fg: "#C0C7D3" + black: "#001323" + red: "#D74A48" + green: "#1EC463" + yellow: "#B1CD6C" + blue: "#7599E5" + magenta: "#B383D2" + cyan: "#1DB397" + white: "#E5E5E5" + brightBlack: "#4E4D4D" + brightRed: "#D74A48" + brightGreen: "#1EC463" + brightYellow: "#E5D386" + brightBlue: "#7599E5" + brightMagenta: "#B383D2" + brightCyan: "#72C5B5" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 72.4 + black: 0 + red: 33.4 + green: 57.4 + yellow: 70 + blue: 47.7 + magenta: 45.8 + cyan: 51 + white: 91 + brightBlack: 13.2 + brightRed: 33.4 + brightGreen: 57.4 + brightYellow: 79.8 + brightBlue: 47.7 + brightMagenta: 45.8 + brightCyan: 63.1 + brightWhite: 91 diff --git a/themes/night-owl-oled-dim-95.yaml b/themes/night-owl-oled-dim-95.yaml new file mode 100644 index 00000000..b1961653 --- /dev/null +++ b/themes/night-owl-oled-dim-95.yaml @@ -0,0 +1,49 @@ +name: "Night Owl Oled Dim 95" +source: + marketplace_id: "WeiyuWang.night-owl-oled-dim" + version: "1.0.1" + installs: 4585 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/night-owl-oled-dim" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" +colors: + bg: "#000000" + fg: "#CBD2DF" + black: "#001425" + red: "#E34E4C" + green: "#20CF68" + yellow: "#BBD872" + blue: "#7BA1F2" + magenta: "#BD8ADE" + cyan: "#1FBD9F" + white: "#F2F2F2" + brightBlack: "#525151" + brightRed: "#E34E4C" + brightGreen: "#20CF68" + brightYellow: "#F2DF8D" + brightBlue: "#7BA1F2" + brightMagenta: "#BD8ADE" + brightCyan: "#78D0BF" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 79 + black: 0 + red: 36.8 + green: 62.7 + yellow: 76.2 + blue: 52.1 + magenta: 50 + cyan: 55.7 + white: 99.3 + brightBlack: 14.7 + brightRed: 36.8 + brightGreen: 62.7 + brightYellow: 87.1 + brightBlue: 52.1 + brightMagenta: 50 + brightCyan: 68.9 + brightWhite: 99.3 diff --git a/themes/night-owl.yaml b/themes/night-owl.yaml new file mode 100644 index 00000000..9b44b8b9 --- /dev/null +++ b/themes/night-owl.yaml @@ -0,0 +1,49 @@ +name: "Night Owl" +source: + marketplace_id: "pixelbeat.fx" + version: "0.0.1" + installs: 1143 + author: "David Galavotti" + repo: "https://github.com/davo/fx-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pixelbeat.fx" +colors: + bg: "#011627" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ADDB67" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 244 + contrast: + fg: 85.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 75 + blue: 56 + magenta: 53.8 + cyan: 59.8 + white: 107 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 107 diff --git a/themes/night-pink.yaml b/themes/night-pink.yaml new file mode 100644 index 00000000..2312f055 --- /dev/null +++ b/themes/night-pink.yaml @@ -0,0 +1,49 @@ +name: "Night Pink" +source: + marketplace_id: "er-codee.themes-er" + version: "0.0.2" + installs: 1014 + author: "er-codee" + repo: "https://github.com/Ernesto-Rosas/Themes-ER" + url: "https://marketplace.visualstudio.com/items?itemName=er-codee.themes-er" +colors: + bg: "#181818" + fg: "#C8C6BF" + black: "#181818" + red: "#F07178" + green: "#B9E02D" + yellow: "#FF0080" + blue: "#4E5353" + magenta: "#D4BFFF" + cyan: "#15191F" + white: "#C7C7C7" + brightBlack: "#323946" + brightRed: "#FF6D48" + brightGreen: "#8BC17A" + brightYellow: "#FF0080" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#A6FDE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 71 + black: 0 + red: 46.5 + green: 77.8 + yellow: 38.2 + blue: 13.8 + magenta: 72.9 + cyan: 0 + white: 71.6 + brightBlack: 0 + brightRed: 47.8 + brightGreen: 60.2 + brightYellow: 38.2 + brightBlue: 34.6 + brightMagenta: 57.3 + brightCyan: 94.4 + brightWhite: 106.8 diff --git a/themes/night-raccoon.yaml b/themes/night-raccoon.yaml new file mode 100644 index 00000000..84e8680c --- /dev/null +++ b/themes/night-raccoon.yaml @@ -0,0 +1,49 @@ +name: "Night Raccoon" +source: + marketplace_id: "RaccoonishDeveloper.night-raccoon" + version: "0.2.2" + installs: 316 + author: "RaccoonishDeveloper" + repo: "https://github.com/RaccoonishDeveloper/Night-Raccoon-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=RaccoonishDeveloper.night-raccoon" +colors: + bg: "#0F1419" + fg: "#D4D4D4" + black: "#868686" + red: "#FF5470" + green: "#33D057" + yellow: "#E1C542" + blue: "#469DF1" + magenta: "#E557F9" + cyan: "#39CDE2" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#FF718A" + brightGreen: "#67FF8A" + brightYellow: "#FFE05B" + brightBlue: "#74BCFF" + brightMagenta: "#EC84FF" + brightCyan: "#74F2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 249 + contrast: + fg: 79.8 + black: 36.9 + red: 44.1 + green: 62.5 + yellow: 71.5 + blue: 46.8 + magenta: 45.7 + cyan: 65.8 + white: 79.8 + brightBlack: 56.1 + brightRed: 50.6 + brightGreen: 89 + brightYellow: 88 + brightBlue: 62.5 + brightMagenta: 57.4 + brightCyan: 87.4 + brightWhite: 107.2 diff --git a/themes/night-rainbow-darker.yaml b/themes/night-rainbow-darker.yaml new file mode 100644 index 00000000..b2e69052 --- /dev/null +++ b/themes/night-rainbow-darker.yaml @@ -0,0 +1,49 @@ +name: "Night Rainbow - Darker" +source: + marketplace_id: "allan-carlos.night-rainbow" + version: "3.0.0" + installs: 10393 + author: "Allan Carlos" + repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" +colors: + bg: "#000000" + fg: "#E0E0E0" + black: "#000000" + red: "#FF0055" + green: "#00FFAA" + yellow: "#FFFF00" + blue: "#00C3FF" + magenta: "#FF00FF" + cyan: "#00FFCC" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF0055" + brightGreen: "#00FFAA" + brightYellow: "#FFFF00" + brightBlue: "#00C3FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFCC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.9 + black: 0 + red: 38.2 + green: 88.7 + yellow: 102.7 + blue: 63.2 + magenta: 46.2 + cyan: 89.8 + white: 87.9 + brightBlack: 23 + brightRed: 38.2 + brightGreen: 88.7 + brightYellow: 102.7 + brightBlue: 63.2 + brightMagenta: 46.2 + brightCyan: 89.8 + brightWhite: 107.9 diff --git a/themes/night-rainbow-purple-haze.yaml b/themes/night-rainbow-purple-haze.yaml new file mode 100644 index 00000000..68713e45 --- /dev/null +++ b/themes/night-rainbow-purple-haze.yaml @@ -0,0 +1,49 @@ +name: "Night Rainbow - Purple Haze" +source: + marketplace_id: "allan-carlos.night-rainbow" + version: "3.0.0" + installs: 10393 + author: "Allan Carlos" + repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" +colors: + bg: "#121212" + fg: "#E0E0E0" + black: "#000000" + red: "#FF0055" + green: "#BA68C8" + yellow: "#FFFF00" + blue: "#DDA0DD" + magenta: "#FF69B4" + cyan: "#B19CD9" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF0055" + brightGreen: "#BA68C8" + brightYellow: "#FFFF00" + brightBlue: "#DDA0DD" + brightMagenta: "#FF69B4" + brightCyan: "#B19CD9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 37.6 + green: 38.3 + yellow: 102.1 + blue: 61.4 + magenta: 50.5 + cyan: 53.5 + white: 87.3 + brightBlack: 22.5 + brightRed: 37.6 + brightGreen: 38.3 + brightYellow: 102.1 + brightBlue: 61.4 + brightMagenta: 50.5 + brightCyan: 53.5 + brightWhite: 107.3 diff --git a/themes/night-rainbow.yaml b/themes/night-rainbow.yaml new file mode 100644 index 00000000..b8806c98 --- /dev/null +++ b/themes/night-rainbow.yaml @@ -0,0 +1,49 @@ +name: "Night Rainbow" +source: + marketplace_id: "allan-carlos.night-rainbow" + version: "3.0.0" + installs: 10393 + author: "Allan Carlos" + repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" +colors: + bg: "#121212" + fg: "#E0E0E0" + black: "#000000" + red: "#FF0055" + green: "#00FFAA" + yellow: "#FFFF00" + blue: "#00C3FF" + magenta: "#FF00FF" + cyan: "#00FFCC" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF0055" + brightGreen: "#00FFAA" + brightYellow: "#FFFF00" + brightBlue: "#00C3FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFCC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 37.6 + green: 88.1 + yellow: 102.1 + blue: 62.6 + magenta: 45.6 + cyan: 89.3 + white: 87.3 + brightBlack: 22.5 + brightRed: 37.6 + brightGreen: 88.1 + brightYellow: 102.1 + brightBlue: 62.6 + brightMagenta: 45.6 + brightCyan: 89.3 + brightWhite: 107.3 diff --git a/themes/night-stack-amber-crt.yaml b/themes/night-stack-amber-crt.yaml new file mode 100644 index 00000000..d93cd80f --- /dev/null +++ b/themes/night-stack-amber-crt.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Amber CRT" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#120A02" + fg: "#FFB347" + black: "#2A1807" + red: "#FFB347" + green: "#FFCC66" + yellow: "#FFD580" + blue: "#B87333" + magenta: "#FF9E2C" + cyan: "#FFE0B2" + white: "#FFD8A8" + brightBlack: "#2A1807" + brightRed: "#FFB347" + brightGreen: "#FFCC66" + brightYellow: "#FFD580" + brightBlue: "#B87333" + brightMagenta: "#FF9E2C" + brightCyan: "#FFE0B2" + brightWhite: "#FFD8A8" +meta: + mode: "dark" + accent: "yellow" + hue: 74 + contrast: + fg: 69.8 + black: 0 + red: 69.8 + green: 80 + yellow: 84.3 + blue: 36.3 + magenta: 62.2 + cyan: 90.4 + white: 86.6 + brightBlack: 0 + brightRed: 69.8 + brightGreen: 80 + brightYellow: 84.3 + brightBlue: 36.3 + brightMagenta: 62.2 + brightCyan: 90.4 + brightWhite: 86.6 diff --git a/themes/night-stack-amber-dark.yaml b/themes/night-stack-amber-dark.yaml new file mode 100644 index 00000000..074deb60 --- /dev/null +++ b/themes/night-stack-amber-dark.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Amber Dark" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0A0703" + fg: "#FFEFD8" + black: "#1A1205" + red: "#F59E0B" + green: "#FBBF24" + yellow: "#FCD34D" + blue: "#D97706" + magenta: "#B45309" + cyan: "#FDE68A" + white: "#FFEFD8" + brightBlack: "#1A1205" + brightRed: "#F59E0B" + brightGreen: "#FBBF24" + brightYellow: "#FCD34D" + brightBlue: "#D97706" + brightMagenta: "#B45309" + brightCyan: "#FDE68A" + brightWhite: "#FFEFD8" +meta: + mode: "dark" + accent: "yellow" + hue: 82 + contrast: + fg: 98.6 + black: 0 + red: 60.4 + green: 73.6 + yellow: 82.3 + blue: 43.2 + magenta: 27.6 + cyan: 91.8 + white: 98.6 + brightBlack: 0 + brightRed: 60.4 + brightGreen: 73.6 + brightYellow: 82.3 + brightBlue: 43.2 + brightMagenta: 27.6 + brightCyan: 91.8 + brightWhite: 98.6 diff --git a/themes/night-stack-arctic-night.yaml b/themes/night-stack-arctic-night.yaml new file mode 100644 index 00000000..ecfdd40f --- /dev/null +++ b/themes/night-stack-arctic-night.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Arctic Night" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#060A10" + fg: "#E6F6FF" + black: "#121A24" + red: "#8ED1FF" + green: "#A4F4FF" + yellow: "#C7F0FF" + blue: "#7DEBFF" + magenta: "#9ADFFF" + cyan: "#B8F6FF" + white: "#E6F6FF" + brightBlack: "#121A24" + brightRed: "#8ED1FF" + brightGreen: "#A4F4FF" + brightYellow: "#C7F0FF" + brightBlue: "#7DEBFF" + brightMagenta: "#9ADFFF" + brightCyan: "#B8F6FF" + brightWhite: "#E6F6FF" +meta: + mode: "dark" + accent: "blue" + hue: 255 + contrast: + fg: 100.1 + black: 0 + red: 74 + green: 92.2 + yellow: 93.6 + blue: 85 + magenta: 81.3 + cyan: 95 + white: 100.1 + brightBlack: 0 + brightRed: 74 + brightGreen: 92.2 + brightYellow: 93.6 + brightBlue: 85 + brightMagenta: 81.3 + brightCyan: 95 + brightWhite: 100.1 diff --git a/themes/night-stack-aurora.yaml b/themes/night-stack-aurora.yaml new file mode 100644 index 00000000..ab496a2c --- /dev/null +++ b/themes/night-stack-aurora.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Aurora" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0A0B12" + fg: "#E6E9FF" + black: "#1A1C2E" + red: "#FF6B8A" + green: "#7CFFB2" + yellow: "#FFE66D" + blue: "#7DF9FF" + magenta: "#C586FF" + cyan: "#6AF0FF" + white: "#E6E9FF" + brightBlack: "#1A1C2E" + brightRed: "#FF6B8A" + brightGreen: "#7CFFB2" + brightYellow: "#FFE66D" + brightBlue: "#7DF9FF" + brightMagenta: "#C586FF" + brightCyan: "#6AF0FF" + brightWhite: "#E6E9FF" +meta: + mode: "dark" + accent: "red" + hue: 278 + contrast: + fg: 94 + black: 0 + red: 49.7 + green: 91.7 + yellow: 91.4 + blue: 91.9 + magenta: 52 + cyan: 86.4 + white: 94 + brightBlack: 0 + brightRed: 49.7 + brightGreen: 91.7 + brightYellow: 91.4 + brightBlue: 91.9 + brightMagenta: 52 + brightCyan: 86.4 + brightWhite: 94 diff --git a/themes/night-stack-carbon-green.yaml b/themes/night-stack-carbon-green.yaml new file mode 100644 index 00000000..42be07da --- /dev/null +++ b/themes/night-stack-carbon-green.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Carbon Green" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0F1115" + fg: "#D4E4D4" + black: "#1C1C1C" + red: "#C15F5F" + green: "#6A9955" + yellow: "#B5A642" + blue: "#6B9BD1" + magenta: "#9C7BD8" + cyan: "#5FAFAF" + white: "#E0E0E0" + brightBlack: "#1C1C1C" + brightRed: "#C15F5F" + brightGreen: "#6A9955" + brightYellow: "#B5A642" + brightBlue: "#6B9BD1" + brightMagenta: "#9C7BD8" + brightCyan: "#5FAFAF" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 87.1 + black: 0 + red: 33.1 + green: 40.6 + yellow: 53 + blue: 46 + magenta: 40.2 + cyan: 51.7 + white: 87.4 + brightBlack: 0 + brightRed: 33.1 + brightGreen: 40.6 + brightYellow: 53 + brightBlue: 46 + brightMagenta: 40.2 + brightCyan: 51.7 + brightWhite: 87.4 diff --git a/themes/night-stack-carbon.yaml b/themes/night-stack-carbon.yaml new file mode 100644 index 00000000..9b72b554 --- /dev/null +++ b/themes/night-stack-carbon.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Carbon" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0B0C0F" + fg: "#D2D4D8" + black: "#1A1D22" + red: "#8A8F98" + green: "#A1A6AF" + yellow: "#C2C6CC" + blue: "#6B7078" + magenta: "#8F949C" + cyan: "#B4B8BF" + white: "#D2D4D8" + brightBlack: "#1A1D22" + brightRed: "#8A8F98" + brightGreen: "#A1A6AF" + brightYellow: "#C2C6CC" + brightBlue: "#6B7078" + brightMagenta: "#8F949C" + brightCyan: "#B4B8BF" + brightWhite: "#D2D4D8" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 80.2 + black: 0 + red: 41.7 + green: 53.6 + yellow: 71.7 + blue: 27 + magenta: 44.2 + cyan: 63.6 + white: 80.2 + brightBlack: 0 + brightRed: 41.7 + brightGreen: 53.6 + brightYellow: 71.7 + brightBlue: 27 + brightMagenta: 44.2 + brightCyan: 63.6 + brightWhite: 80.2 diff --git a/themes/night-stack-circuit.yaml b/themes/night-stack-circuit.yaml new file mode 100644 index 00000000..b066b00c --- /dev/null +++ b/themes/night-stack-circuit.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Circuit" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#06100B" + fg: "#E6FFF2" + black: "#11241B" + red: "#00FF88" + green: "#00C853" + yellow: "#FFD700" + blue: "#009F5F" + magenta: "#00FF88" + cyan: "#66FFCC" + white: "#E6FFF2" + brightBlack: "#11241B" + brightRed: "#00FF88" + brightGreen: "#00C853" + brightYellow: "#FFD700" + brightBlue: "#009F5F" + brightMagenta: "#00FF88" + brightCyan: "#66FFCC" + brightWhite: "#E6FFF2" +meta: + mode: "dark" + accent: "teal" + hue: 163 + contrast: + fg: 103.6 + black: 0 + red: 87.4 + green: 58.5 + yellow: 83.9 + blue: 40.2 + magenta: 87.4 + cyan: 91.3 + white: 103.6 + brightBlack: 0 + brightRed: 87.4 + brightGreen: 58.5 + brightYellow: 83.9 + brightBlue: 40.2 + brightMagenta: 87.4 + brightCyan: 91.3 + brightWhite: 103.6 diff --git a/themes/night-stack-copper-dark.yaml b/themes/night-stack-copper-dark.yaml new file mode 100644 index 00000000..2c01b770 --- /dev/null +++ b/themes/night-stack-copper-dark.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Copper Dark" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0D0705" + fg: "#FFE8DC" + black: "#1A120F" + red: "#B87333" + green: "#D4A373" + yellow: "#E6B98A" + blue: "#8C5A2B" + magenta: "#C08457" + cyan: "#FFD6BF" + white: "#FFE8DC" + brightBlack: "#1A120F" + brightRed: "#B87333" + brightGreen: "#D4A373" + brightYellow: "#E6B98A" + brightBlue: "#8C5A2B" + brightMagenta: "#C08457" + brightCyan: "#FFD6BF" + brightWhite: "#FFE8DC" +meta: + mode: "dark" + accent: "yellow" + hue: 44 + contrast: + fg: 95.6 + black: 0 + red: 36.4 + green: 57.5 + yellow: 69.2 + blue: 22.8 + magenta: 43.3 + cyan: 86.6 + white: 95.6 + brightBlack: 0 + brightRed: 36.4 + brightGreen: 57.5 + brightYellow: 69.2 + brightBlue: 22.8 + brightMagenta: 43.3 + brightCyan: 86.6 + brightWhite: 95.6 diff --git a/themes/night-stack-crimson-dark.yaml b/themes/night-stack-crimson-dark.yaml new file mode 100644 index 00000000..a461b620 --- /dev/null +++ b/themes/night-stack-crimson-dark.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Crimson Dark" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0A0507" + fg: "#FFE4E6" + black: "#1A0B10" + red: "#FF4D6D" + green: "#FF758F" + yellow: "#FF8FA3" + blue: "#E11D48" + magenta: "#BE123C" + cyan: "#FF9FB3" + white: "#FFE4E6" + brightBlack: "#1A0B10" + brightRed: "#FF4D6D" + brightGreen: "#FF758F" + brightYellow: "#FF8FA3" + brightBlue: "#E11D48" + brightMagenta: "#BE123C" + brightCyan: "#FF9FB3" + brightWhite: "#FFE4E6" +meta: + mode: "dark" + accent: "orange" + hue: 350 + contrast: + fg: 94.3 + black: 0 + red: 43.6 + green: 52.3 + yellow: 60 + blue: 31.1 + magenta: 22.6 + cyan: 65.6 + white: 94.3 + brightBlack: 0 + brightRed: 43.6 + brightGreen: 52.3 + brightYellow: 60 + brightBlue: 31.1 + brightMagenta: 22.6 + brightCyan: 65.6 + brightWhite: 94.3 diff --git a/themes/night-stack-deep-work.yaml b/themes/night-stack-deep-work.yaml new file mode 100644 index 00000000..01f1c3be --- /dev/null +++ b/themes/night-stack-deep-work.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Deep Work" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0C1117" + fg: "#D4DAE3" + black: "#1A1F2B" + red: "#7AA2F7" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#5DA9FF" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#D4DAE3" + brightBlack: "#1A1F2B" + brightRed: "#7AA2F7" + brightGreen: "#9ECE6A" + brightYellow: "#E0AF68" + brightBlue: "#5DA9FF" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#D4DAE3" +meta: + mode: "dark" + accent: "indigo" + hue: 253 + contrast: + fg: 83.3 + black: 0 + red: 52.2 + green: 68 + yellow: 63.3 + blue: 53.7 + magenta: 56.1 + cyan: 71.6 + white: 83.3 + brightBlack: 0 + brightRed: 52.2 + brightGreen: 68 + brightYellow: 63.3 + brightBlue: 53.7 + brightMagenta: 56.1 + brightCyan: 71.6 + brightWhite: 83.3 diff --git a/themes/night-stack-desert-dusk.yaml b/themes/night-stack-desert-dusk.yaml new file mode 100644 index 00000000..436259fe --- /dev/null +++ b/themes/night-stack-desert-dusk.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Desert Dusk" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0D0804" + fg: "#FFECDD" + black: "#1A120A" + red: "#E76F51" + green: "#F4A261" + yellow: "#FBBF24" + blue: "#C97C5D" + magenta: "#D97706" + cyan: "#FFD166" + white: "#FFECDD" + brightBlack: "#1A120A" + brightRed: "#E76F51" + brightGreen: "#F4A261" + brightYellow: "#FBBF24" + brightBlue: "#C97C5D" + brightMagenta: "#D97706" + brightCyan: "#FFD166" + brightWhite: "#FFECDD" +meta: + mode: "dark" + accent: "yellow" + hue: 68 + contrast: + fg: 97.4 + black: 0 + red: 44.3 + green: 62.2 + yellow: 73.6 + blue: 42.4 + magenta: 43.1 + cyan: 82.2 + white: 97.4 + brightBlack: 0 + brightRed: 44.3 + brightGreen: 62.2 + brightYellow: 73.6 + brightBlue: 42.4 + brightMagenta: 43.1 + brightCyan: 82.2 + brightWhite: 97.4 diff --git a/themes/night-stack-dos-blue.yaml b/themes/night-stack-dos-blue.yaml new file mode 100644 index 00000000..9033c4e7 --- /dev/null +++ b/themes/night-stack-dos-blue.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack DOS Blue" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#000080" + fg: "#FFFFFF" + black: "#000066" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#000066" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 103.9 + black: 0 + red: 33.5 + green: 82.5 + yellow: 98.7 + blue: 12.2 + magenta: 42.2 + cyan: 88.2 + white: 103.9 + brightBlack: 0 + brightRed: 33.5 + brightGreen: 82.5 + brightYellow: 98.7 + brightBlue: 12.2 + brightMagenta: 42.2 + brightCyan: 88.2 + brightWhite: 103.9 diff --git a/themes/night-stack-ember-dark.yaml b/themes/night-stack-ember-dark.yaml new file mode 100644 index 00000000..afc52cb2 --- /dev/null +++ b/themes/night-stack-ember-dark.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Ember Dark" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0B0604" + fg: "#FFE7D6" + black: "#1A0E08" + red: "#FF6A3D" + green: "#FFB347" + yellow: "#FFC857" + blue: "#FF8C42" + magenta: "#FF7A59" + cyan: "#FFD0A8" + white: "#FFE7D6" + brightBlack: "#1A0E08" + brightRed: "#FF6A3D" + brightGreen: "#FFB347" + brightYellow: "#FFC857" + brightBlue: "#FF8C42" + brightMagenta: "#FF7A59" + brightCyan: "#FFD0A8" + brightWhite: "#FFE7D6" +meta: + mode: "dark" + accent: "orange" + hue: 50 + contrast: + fg: 94.9 + black: 0 + red: 48.1 + green: 70 + yellow: 78.3 + blue: 56.9 + magenta: 52.3 + cyan: 83.4 + white: 94.9 + brightBlack: 0 + brightRed: 48.1 + brightGreen: 70 + brightYellow: 78.3 + brightBlue: 56.9 + brightMagenta: 52.3 + brightCyan: 83.4 + brightWhite: 94.9 diff --git a/themes/night-stack-eyestrain-green.yaml b/themes/night-stack-eyestrain-green.yaml new file mode 100644 index 00000000..3e8835ce --- /dev/null +++ b/themes/night-stack-eyestrain-green.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack EyeStrain Green" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#101512" + fg: "#D6EFD6" + black: "#1C1C1C" + red: "#C96A6A" + green: "#8FCF8F" + yellow: "#CFCF8F" + blue: "#7FAFD4" + magenta: "#B39DDB" + cyan: "#7FCFCF" + white: "#E0E0E0" + brightBlack: "#1C1C1C" + brightRed: "#C96A6A" + brightGreen: "#8FCF8F" + brightYellow: "#CFCF8F" + brightBlue: "#7FAFD4" + brightMagenta: "#B39DDB" + brightCyan: "#7FCFCF" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 92.4 + black: 0 + red: 37.2 + green: 67.8 + yellow: 74.5 + blue: 55.3 + magenta: 54.1 + cyan: 68.9 + white: 87.2 + brightBlack: 0 + brightRed: 37.2 + brightGreen: 67.8 + brightYellow: 74.5 + brightBlue: 55.3 + brightMagenta: 54.1 + brightCyan: 68.9 + brightWhite: 87.2 diff --git a/themes/night-stack-forest-night.yaml b/themes/night-stack-forest-night.yaml new file mode 100644 index 00000000..35e70843 --- /dev/null +++ b/themes/night-stack-forest-night.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Forest Night" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#070B08" + fg: "#E6F3EA" + black: "#122016" + red: "#B86B3C" + green: "#7CFF6B" + yellow: "#C2B280" + blue: "#3B6B4A" + magenta: "#6BBF7C" + cyan: "#66FFB5" + white: "#E6F3EA" + brightBlack: "#122016" + brightRed: "#B86B3C" + brightGreen: "#7CFF6B" + brightYellow: "#C2B280" + brightBlue: "#3B6B4A" + brightMagenta: "#6BBF7C" + brightCyan: "#66FFB5" + brightWhite: "#E6F3EA" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 97.7 + black: 0 + red: 34.2 + green: 90 + yellow: 60.9 + blue: 20.9 + magenta: 58 + cyan: 90.7 + white: 97.7 + brightBlack: 0 + brightRed: 34.2 + brightGreen: 90 + brightYellow: 60.9 + brightBlue: 20.9 + brightMagenta: 58 + brightCyan: 90.7 + brightWhite: 97.7 diff --git a/themes/night-stack-frost.yaml b/themes/night-stack-frost.yaml new file mode 100644 index 00000000..779b9c67 --- /dev/null +++ b/themes/night-stack-frost.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Frost" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#060A0F" + fg: "#D9F2FF" + black: "#121A22" + red: "#8ED1FF" + green: "#A4F4FF" + yellow: "#C7F0FF" + blue: "#7DEBFF" + magenta: "#9ADFFF" + cyan: "#B8F6FF" + white: "#E6FAFF" + brightBlack: "#121A22" + brightRed: "#8ED1FF" + brightGreen: "#A4F4FF" + brightYellow: "#C7F0FF" + brightBlue: "#7DEBFF" + brightMagenta: "#9ADFFF" + brightCyan: "#B8F6FF" + brightWhite: "#E6FAFF" +meta: + mode: "dark" + accent: "blue" + hue: 251 + contrast: + fg: 96.6 + black: 0 + red: 74 + green: 92.2 + yellow: 93.6 + blue: 85 + magenta: 81.4 + cyan: 95 + white: 102 + brightBlack: 0 + brightRed: 74 + brightGreen: 92.2 + brightYellow: 93.6 + brightBlue: 85 + brightMagenta: 81.4 + brightCyan: 95 + brightWhite: 102 diff --git a/themes/night-stack-graphite.yaml b/themes/night-stack-graphite.yaml new file mode 100644 index 00000000..8e9bdef2 --- /dev/null +++ b/themes/night-stack-graphite.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Graphite" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0C0D10" + fg: "#D8D9DC" + black: "#1A1B21" + red: "#A1A1AA" + green: "#B4B4BB" + yellow: "#C9CAD1" + blue: "#71717A" + magenta: "#8B8B94" + cyan: "#AFAFB6" + white: "#D8D9DC" + brightBlack: "#1A1B21" + brightRed: "#A1A1AA" + brightGreen: "#B4B4BB" + brightYellow: "#C9CAD1" + brightBlue: "#71717A" + brightMagenta: "#8B8B94" + brightCyan: "#AFAFB6" + brightWhite: "#D8D9DC" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 83.3 + black: 0 + red: 51.5 + green: 61.8 + yellow: 74.4 + blue: 27.9 + magenta: 40.2 + cyan: 59 + white: 83.3 + brightBlack: 0 + brightRed: 51.5 + brightGreen: 61.8 + brightYellow: 74.4 + brightBlue: 27.9 + brightMagenta: 40.2 + brightCyan: 59 + brightWhite: 83.3 diff --git a/themes/night-stack-green-neon.yaml b/themes/night-stack-green-neon.yaml new file mode 100644 index 00000000..335750fb --- /dev/null +++ b/themes/night-stack-green-neon.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Green Neon" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0A0F0A" + fg: "#C8FFC8" + black: "#000000" + red: "#FF5555" + green: "#39FF14" + yellow: "#F1FA8C" + blue: "#00FFFF" + magenta: "#C586FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF5555" + brightGreen: "#39FF14" + brightYellow: "#F1FA8C" + brightBlue: "#00FFFF" + brightMagenta: "#C586FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 145 + contrast: + fg: 98.5 + black: 0 + red: 44.1 + green: 86.7 + yellow: 99.2 + blue: 91.9 + magenta: 51.9 + cyan: 91.9 + white: 107.6 + brightBlack: 0 + brightRed: 44.1 + brightGreen: 86.7 + brightYellow: 99.2 + brightBlue: 91.9 + brightMagenta: 51.9 + brightCyan: 91.9 + brightWhite: 107.6 diff --git a/themes/night-stack-hacker-soft.yaml b/themes/night-stack-hacker-soft.yaml new file mode 100644 index 00000000..d336afc2 --- /dev/null +++ b/themes/night-stack-hacker-soft.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Hacker Soft" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0D1110" + fg: "#CFE8CF" + black: "#1A1A1A" + red: "#D16969" + green: "#7FBF7F" + yellow: "#C5C56A" + blue: "#6CA0DC" + magenta: "#B084D6" + cyan: "#6FBFBF" + white: "#D4D4D4" + brightBlack: "#1A1A1A" + brightRed: "#D16969" + brightGreen: "#7FBF7F" + brightYellow: "#C5C56A" + brightBlue: "#6CA0DC" + brightMagenta: "#B084D6" + brightCyan: "#6FBFBF" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88.2 + black: 0 + red: 38.7 + green: 59.1 + yellow: 68.4 + blue: 48.7 + magenta: 45.4 + cyan: 60.2 + white: 80 + brightBlack: 0 + brightRed: 38.7 + brightGreen: 59.1 + brightYellow: 68.4 + brightBlue: 48.7 + brightMagenta: 45.4 + brightCyan: 60.2 + brightWhite: 80 diff --git a/themes/night-stack-hologram.yaml b/themes/night-stack-hologram.yaml new file mode 100644 index 00000000..eabfc8cc --- /dev/null +++ b/themes/night-stack-hologram.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Hologram" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#090A14" + fg: "#E6E6FF" + black: "#1A1C33" + red: "#A855F7" + green: "#7DF9FF" + yellow: "#C084FC" + blue: "#6366F1" + magenta: "#A855F7" + cyan: "#7DF9FF" + white: "#E6E6FF" + brightBlack: "#1A1C33" + brightRed: "#A855F7" + brightGreen: "#7DF9FF" + brightYellow: "#C084FC" + brightBlue: "#6366F1" + brightMagenta: "#A855F7" + brightCyan: "#7DF9FF" + brightWhite: "#E6E6FF" +meta: + mode: "dark" + accent: "magenta" + hue: 279 + contrast: + fg: 92.7 + black: 0 + red: 35.2 + green: 91.9 + yellow: 50.5 + blue: 30.9 + magenta: 35.2 + cyan: 91.9 + white: 92.7 + brightBlack: 0 + brightRed: 35.2 + brightGreen: 91.9 + brightYellow: 50.5 + brightBlue: 30.9 + brightMagenta: 35.2 + brightCyan: 91.9 + brightWhite: 92.7 diff --git a/themes/night-stack-indigo-dark.yaml b/themes/night-stack-indigo-dark.yaml new file mode 100644 index 00000000..a88117aa --- /dev/null +++ b/themes/night-stack-indigo-dark.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Indigo Dark" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#07070F" + fg: "#E0E7FF" + black: "#151530" + red: "#6366F1" + green: "#8B93FF" + yellow: "#A5B4FC" + blue: "#4F46E5" + magenta: "#7C83FD" + cyan: "#A5B4FC" + white: "#E0E7FF" + brightBlack: "#151530" + brightRed: "#6366F1" + brightGreen: "#8B93FF" + brightYellow: "#A5B4FC" + brightBlue: "#4F46E5" + brightMagenta: "#7C83FD" + brightCyan: "#A5B4FC" + brightWhite: "#E0E7FF" +meta: + mode: "dark" + accent: "purple" + hue: 284 + contrast: + fg: 92.5 + black: 0 + red: 31 + green: 49.2 + yellow: 63.8 + blue: 21.3 + magenta: 42.4 + cyan: 63.8 + white: 92.5 + brightBlack: 0 + brightRed: 31 + brightGreen: 49.2 + brightYellow: 63.8 + brightBlue: 21.3 + brightMagenta: 42.4 + brightCyan: 63.8 + brightWhite: 92.5 diff --git a/themes/night-stack-ion.yaml b/themes/night-stack-ion.yaml new file mode 100644 index 00000000..6d230e55 --- /dev/null +++ b/themes/night-stack-ion.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Ion" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#030908" + fg: "#E6FFF7" + black: "#0F201C" + red: "#00F5A0" + green: "#A3FF12" + yellow: "#39FF14" + blue: "#00C27A" + magenta: "#00F5A0" + cyan: "#00FFD5" + white: "#E6FFF7" + brightBlack: "#0F201C" + brightRed: "#00F5A0" + brightGreen: "#A3FF12" + brightYellow: "#39FF14" + brightBlue: "#00C27A" + brightMagenta: "#00F5A0" + brightCyan: "#00FFD5" + brightWhite: "#E6FFF7" +meta: + mode: "dark" + accent: "green" + hue: 185 + contrast: + fg: 104.1 + black: 0 + red: 83 + green: 92.1 + yellow: 86.9 + blue: 56.7 + magenta: 83 + cyan: 90.1 + white: 104.1 + brightBlack: 0 + brightRed: 83 + brightGreen: 92.1 + brightYellow: 86.9 + brightBlue: 56.7 + brightMagenta: 83 + brightCyan: 90.1 + brightWhite: 104.1 diff --git a/themes/night-stack-low-contrast-pro.yaml b/themes/night-stack-low-contrast-pro.yaml new file mode 100644 index 00000000..f6b2f262 --- /dev/null +++ b/themes/night-stack-low-contrast-pro.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Low Contrast Pro" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#111318" + fg: "#C8CDD5" + black: "#1F242C" + red: "#8B93A6" + green: "#9AA4B2" + yellow: "#B6BEC9" + blue: "#6B7280" + magenta: "#7C8596" + cyan: "#AAB2BF" + white: "#C8CDD5" + brightBlack: "#1F242C" + brightRed: "#8B93A6" + brightGreen: "#9AA4B2" + brightYellow: "#B6BEC9" + brightBlue: "#6B7280" + brightMagenta: "#7C8596" + brightCyan: "#AAB2BF" + brightWhite: "#C8CDD5" +meta: + mode: "dark" + accent: "purple" + hue: 268 + contrast: + fg: 75.3 + black: 0 + red: 43.4 + green: 51.8 + yellow: 66.3 + blue: 27.5 + magenta: 36.3 + cyan: 59.6 + white: 75.3 + brightBlack: 0 + brightRed: 43.4 + brightGreen: 51.8 + brightYellow: 66.3 + brightBlue: 27.5 + brightMagenta: 36.3 + brightCyan: 59.6 + brightWhite: 75.3 diff --git a/themes/night-stack-midnight-blue.yaml b/themes/night-stack-midnight-blue.yaml new file mode 100644 index 00000000..e3e8ed83 --- /dev/null +++ b/themes/night-stack-midnight-blue.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Midnight Blue" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#050A14" + fg: "#C7E6FF" + black: "#0B1420" + red: "#3B82F6" + green: "#14B8A6" + yellow: "#38BDF8" + blue: "#1D4ED8" + magenta: "#6366F1" + cyan: "#22D3EE" + white: "#C7E6FF" + brightBlack: "#0B1420" + brightRed: "#3B82F6" + brightGreen: "#14B8A6" + brightYellow: "#38BDF8" + brightBlue: "#1D4ED8" + brightMagenta: "#6366F1" + brightCyan: "#22D3EE" + brightWhite: "#C7E6FF" +meta: + mode: "dark" + accent: "purple" + hue: 260 + contrast: + fg: 88.9 + black: 0 + red: 37.6 + green: 53.5 + yellow: 60.5 + blue: 19.6 + magenta: 30.9 + cyan: 69.4 + white: 88.9 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 53.5 + brightYellow: 60.5 + brightBlue: 19.6 + brightMagenta: 30.9 + brightCyan: 69.4 + brightWhite: 88.9 diff --git a/themes/night-stack-mono-focus.yaml b/themes/night-stack-mono-focus.yaml new file mode 100644 index 00000000..0cff665a --- /dev/null +++ b/themes/night-stack-mono-focus.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Mono Focus" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0A0A0A" + fg: "#E5E5E5" + black: "#111111" + red: "#888888" + green: "#AAAAAA" + yellow: "#CCCCCC" + blue: "#777777" + magenta: "#999999" + cyan: "#DDDDDD" + white: "#FFFFFF" + brightBlack: "#111111" + brightRed: "#888888" + brightGreen: "#AAAAAA" + brightYellow: "#CCCCCC" + brightBlue: "#777777" + brightMagenta: "#999999" + brightCyan: "#DDDDDD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 90.9 + black: 0 + red: 38.5 + green: 56.1 + yellow: 75.5 + blue: 30.4 + magenta: 47 + cyan: 85.9 + white: 107.7 + brightBlack: 0 + brightRed: 38.5 + brightGreen: 56.1 + brightYellow: 75.5 + brightBlue: 30.4 + brightMagenta: 47 + brightCyan: 85.9 + brightWhite: 107.7 diff --git a/themes/night-stack-neo-tokyo.yaml b/themes/night-stack-neo-tokyo.yaml new file mode 100644 index 00000000..a8dbfdb2 --- /dev/null +++ b/themes/night-stack-neo-tokyo.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Neo Tokyo" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0A0A12" + fg: "#F5E9FF" + black: "#1A1A2E" + red: "#FF2DAF" + green: "#00F5FF" + yellow: "#FF5ACD" + blue: "#00C3FF" + magenta: "#FF2DAF" + cyan: "#00F5FF" + white: "#F5E9FF" + brightBlack: "#1A1A2E" + brightRed: "#FF2DAF" + brightGreen: "#00F5FF" + brightYellow: "#FF5ACD" + brightBlue: "#00C3FF" + brightMagenta: "#FF2DAF" + brightCyan: "#00F5FF" + brightWhite: "#F5E9FF" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 96.1 + black: 0 + red: 42.3 + green: 86.8 + yellow: 49.3 + blue: 63 + magenta: 42.3 + cyan: 86.8 + white: 96.1 + brightBlack: 0 + brightRed: 42.3 + brightGreen: 86.8 + brightYellow: 49.3 + brightBlue: 63 + brightMagenta: 42.3 + brightCyan: 86.8 + brightWhite: 96.1 diff --git a/themes/night-stack-night-city.yaml b/themes/night-stack-night-city.yaml new file mode 100644 index 00000000..7bbe9ac4 --- /dev/null +++ b/themes/night-stack-night-city.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Night City" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0B0F1A" + fg: "#E6F0FF" + black: "#1B2435" + red: "#FFB703" + green: "#00B3FF" + yellow: "#FFD166" + blue: "#0077FF" + magenta: "#FFA500" + cyan: "#00E0FF" + white: "#E6F0FF" + brightBlack: "#1B2435" + brightRed: "#FFB703" + brightGreen: "#00B3FF" + brightYellow: "#FFD166" + brightBlue: "#0077FF" + brightMagenta: "#FFA500" + brightCyan: "#00E0FF" + brightWhite: "#E6F0FF" +meta: + mode: "dark" + accent: "purple" + hue: 268 + contrast: + fg: 97 + black: 0 + red: 70.8 + green: 55.8 + yellow: 81.9 + blue: 33.8 + magenta: 64.3 + cyan: 76.2 + white: 97 + brightBlack: 0 + brightRed: 70.8 + brightGreen: 55.8 + brightYellow: 81.9 + brightBlue: 33.8 + brightMagenta: 64.3 + brightCyan: 76.2 + brightWhite: 97 diff --git a/themes/night-stack-noir.yaml b/themes/night-stack-noir.yaml new file mode 100644 index 00000000..3bce5928 --- /dev/null +++ b/themes/night-stack-noir.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Noir" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#000000" + fg: "#E5E5E5" + black: "#0D0D0D" + red: "#999999" + green: "#B3B3B3" + yellow: "#CCCCCC" + blue: "#808080" + magenta: "#A6A6A6" + cyan: "#D9D9D9" + white: "#FFFFFF" + brightBlack: "#0D0D0D" + brightRed: "#999999" + brightGreen: "#B3B3B3" + brightYellow: "#CCCCCC" + brightBlue: "#808080" + brightMagenta: "#A6A6A6" + brightCyan: "#D9D9D9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 91 + black: 0 + red: 47.2 + green: 61.2 + yellow: 75.7 + blue: 34.8 + magenta: 54.1 + cyan: 83.6 + white: 107.9 + brightBlack: 0 + brightRed: 47.2 + brightGreen: 61.2 + brightYellow: 75.7 + brightBlue: 34.8 + brightMagenta: 54.1 + brightCyan: 83.6 + brightWhite: 107.9 diff --git a/themes/night-stack-obsidian-glass.yaml b/themes/night-stack-obsidian-glass.yaml new file mode 100644 index 00000000..df20eb3e --- /dev/null +++ b/themes/night-stack-obsidian-glass.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Obsidian Glass" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0A0C12" + fg: "#E6E9EF" + black: "#1A1F2B" + red: "#8F9BB3" + green: "#A5B4FC" + yellow: "#C7D2FE" + blue: "#6366F1" + magenta: "#818CF8" + cyan: "#93C5FD" + white: "#E6E9EF" + brightBlack: "#1A1F2B" + brightRed: "#8F9BB3" + brightGreen: "#A5B4FC" + brightYellow: "#C7D2FE" + brightBlue: "#6366F1" + brightMagenta: "#818CF8" + brightCyan: "#93C5FD" + brightWhite: "#E6E9EF" +meta: + mode: "dark" + accent: "purple" + hue: 270 + contrast: + fg: 93.2 + black: 0 + red: 47.7 + green: 63.6 + yellow: 79.9 + blue: 30.9 + magenta: 45.3 + cyan: 69 + white: 93.2 + brightBlack: 0 + brightRed: 47.7 + brightGreen: 63.6 + brightYellow: 79.9 + brightBlue: 30.9 + brightMagenta: 45.3 + brightCyan: 69 + brightWhite: 93.2 diff --git a/themes/night-stack-obsidian.yaml b/themes/night-stack-obsidian.yaml new file mode 100644 index 00000000..ce72ced4 --- /dev/null +++ b/themes/night-stack-obsidian.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Obsidian" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0B0E14" + fg: "#D6DEEB" + black: "#1C1F26" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#5DA9FF" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#D6DEEB" + brightBlack: "#1C1F26" + brightRed: "#F7768E" + brightGreen: "#9ECE6A" + brightYellow: "#E0AF68" + brightBlue: "#5DA9FF" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#D6DEEB" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 85.9 + black: 0 + red: 50.6 + green: 68.2 + yellow: 63.4 + blue: 53.8 + magenta: 56.2 + cyan: 71.7 + white: 85.9 + brightBlack: 0 + brightRed: 50.6 + brightGreen: 68.2 + brightYellow: 63.4 + brightBlue: 53.8 + brightMagenta: 56.2 + brightCyan: 71.7 + brightWhite: 85.9 diff --git a/themes/night-stack-ocean-abyss.yaml b/themes/night-stack-ocean-abyss.yaml new file mode 100644 index 00000000..47d63cbf --- /dev/null +++ b/themes/night-stack-ocean-abyss.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Ocean Abyss" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#040B12" + fg: "#D8F2FF" + black: "#0F1B26" + red: "#2DD4BF" + green: "#14B8A6" + yellow: "#7DD3FC" + blue: "#1D4ED8" + magenta: "#38BDF8" + cyan: "#22D3EE" + white: "#D8F2FF" + brightBlack: "#0F1B26" + brightRed: "#2DD4BF" + brightGreen: "#14B8A6" + brightYellow: "#7DD3FC" + brightBlue: "#1D4ED8" + brightMagenta: "#38BDF8" + brightCyan: "#22D3EE" + brightWhite: "#D8F2FF" +meta: + mode: "dark" + accent: "purple" + hue: 244 + contrast: + fg: 96.5 + black: 0 + red: 67.7 + green: 53.5 + yellow: 73.5 + blue: 19.6 + magenta: 60.4 + cyan: 69.4 + white: 96.5 + brightBlack: 0 + brightRed: 67.7 + brightGreen: 53.5 + brightYellow: 73.5 + brightBlue: 19.6 + brightMagenta: 60.4 + brightCyan: 69.4 + brightWhite: 96.5 diff --git a/themes/night-stack-onyx.yaml b/themes/night-stack-onyx.yaml new file mode 100644 index 00000000..2e88feaf --- /dev/null +++ b/themes/night-stack-onyx.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Onyx" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#020202" + fg: "#E5E5E5" + black: "#111111" + red: "#999999" + green: "#C0C0C0" + yellow: "#D4D4D4" + blue: "#808080" + magenta: "#A6A6A6" + cyan: "#E5E5E5" + white: "#FFFFFF" + brightBlack: "#111111" + brightRed: "#999999" + brightGreen: "#C0C0C0" + brightYellow: "#D4D4D4" + brightBlue: "#808080" + brightMagenta: "#A6A6A6" + brightCyan: "#E5E5E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 91 + black: 0 + red: 47.2 + green: 68.6 + yellow: 80.5 + blue: 34.8 + magenta: 54.1 + cyan: 91 + white: 107.9 + brightBlack: 0 + brightRed: 47.2 + brightGreen: 68.6 + brightYellow: 80.5 + brightBlue: 34.8 + brightMagenta: 54.1 + brightCyan: 91 + brightWhite: 107.9 diff --git a/themes/night-stack-phosphor-green.yaml b/themes/night-stack-phosphor-green.yaml new file mode 100644 index 00000000..61c694e8 --- /dev/null +++ b/themes/night-stack-phosphor-green.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Phosphor Green" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#020A02" + fg: "#33FF33" + black: "#0A220A" + red: "#33FF33" + green: "#66FF66" + yellow: "#99FF99" + blue: "#1F8F1F" + magenta: "#33CC33" + cyan: "#66FF99" + white: "#99FF99" + brightBlack: "#0A220A" + brightRed: "#33FF33" + brightGreen: "#66FF66" + brightYellow: "#99FF99" + brightBlue: "#1F8F1F" + brightMagenta: "#33CC33" + brightCyan: "#66FF99" + brightWhite: "#99FF99" +meta: + mode: "dark" + accent: "green" + hue: 144 + contrast: + fg: 86.9 + black: 0 + red: 86.9 + green: 88.9 + yellow: 93 + blue: 33.2 + magenta: 60.8 + cyan: 89.9 + white: 93 + brightBlack: 0 + brightRed: 86.9 + brightGreen: 88.9 + brightYellow: 93 + brightBlue: 33.2 + brightMagenta: 60.8 + brightCyan: 89.9 + brightWhite: 93 diff --git a/themes/night-stack-plasma.yaml b/themes/night-stack-plasma.yaml new file mode 100644 index 00000000..8bb75a63 --- /dev/null +++ b/themes/night-stack-plasma.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Plasma" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#070511" + fg: "#FFE6FF" + black: "#1A132B" + red: "#FF2DAF" + green: "#00F5FF" + yellow: "#FF5ACD" + blue: "#8A2BE2" + magenta: "#FF69B4" + cyan: "#00F5FF" + white: "#FFE6FF" + brightBlack: "#1A132B" + brightRed: "#FF2DAF" + brightGreen: "#00F5FF" + brightYellow: "#FF5ACD" + brightBlue: "#8A2BE2" + brightMagenta: "#FF69B4" + brightCyan: "#00F5FF" + brightWhite: "#FFE6FF" +meta: + mode: "dark" + accent: "red" + hue: 291 + contrast: + fg: 96.4 + black: 0 + red: 42.4 + green: 87 + yellow: 49.4 + blue: 23.3 + magenta: 51 + cyan: 87 + white: 96.4 + brightBlack: 0 + brightRed: 42.4 + brightGreen: 87 + brightYellow: 49.4 + brightBlue: 23.3 + brightMagenta: 51 + brightCyan: 87 + brightWhite: 96.4 diff --git a/themes/night-stack-pure-hacker.yaml b/themes/night-stack-pure-hacker.yaml new file mode 100644 index 00000000..62e5eacd --- /dev/null +++ b/themes/night-stack-pure-hacker.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Pure Hacker" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#000000" + fg: "#00FF00" + black: "#000000" + red: "#FF4C4C" + green: "#00FF00" + yellow: "#39FF14" + blue: "#00FFFF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF4C4C" + brightGreen: "#00FF00" + brightYellow: "#39FF14" + brightBlue: "#00FFFF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 86.5 + black: 0 + red: 42.8 + green: 86.5 + yellow: 87 + blue: 92.2 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 0 + brightRed: 42.8 + brightGreen: 86.5 + brightYellow: 87 + brightBlue: 92.2 + brightMagenta: 46.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/night-stack-quantum.yaml b/themes/night-stack-quantum.yaml new file mode 100644 index 00000000..fda89add --- /dev/null +++ b/themes/night-stack-quantum.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Quantum" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#05070F" + fg: "#DCE6FF" + black: "#111428" + red: "#4CC9F0" + green: "#7B2FF7" + yellow: "#5DA9FF" + blue: "#3A86FF" + magenta: "#9D4EDD" + cyan: "#4CC9F0" + white: "#DCE6FF" + brightBlack: "#111428" + brightRed: "#4CC9F0" + brightGreen: "#7B2FF7" + brightYellow: "#5DA9FF" + brightBlue: "#3A86FF" + brightMagenta: "#9D4EDD" + brightCyan: "#4CC9F0" + brightWhite: "#DCE6FF" +meta: + mode: "dark" + accent: "magenta" + hue: 270 + contrast: + fg: 91.5 + black: 0 + red: 65.9 + green: 23.8 + yellow: 54.1 + blue: 39.8 + magenta: 30.3 + cyan: 65.9 + white: 91.5 + brightBlack: 0 + brightRed: 65.9 + brightGreen: 23.8 + brightYellow: 54.1 + brightBlue: 39.8 + brightMagenta: 30.3 + brightCyan: 65.9 + brightWhite: 91.5 diff --git a/themes/night-stack-retro-wave.yaml b/themes/night-stack-retro-wave.yaml new file mode 100644 index 00000000..563a5e18 --- /dev/null +++ b/themes/night-stack-retro-wave.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Retro Wave" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0A0412" + fg: "#F8E1FF" + black: "#1A1033" + red: "#FF00FF" + green: "#00FFFF" + yellow: "#FF66FF" + blue: "#8A2BE2" + magenta: "#FF1493" + cyan: "#00FFFF" + white: "#F8E1FF" + brightBlack: "#1A1033" + brightRed: "#FF00FF" + brightGreen: "#00FFFF" + brightYellow: "#FF66FF" + brightBlue: "#8A2BE2" + brightMagenta: "#FF1493" + brightCyan: "#00FFFF" + brightWhite: "#F8E1FF" +meta: + mode: "dark" + accent: "pink" + hue: 304 + contrast: + fg: 93.1 + black: 0 + red: 46.1 + green: 92.1 + yellow: 54.7 + blue: 23.3 + magenta: 40.1 + cyan: 92.1 + white: 93.1 + brightBlack: 0 + brightRed: 46.1 + brightGreen: 92.1 + brightYellow: 54.7 + brightBlue: 23.3 + brightMagenta: 40.1 + brightCyan: 92.1 + brightWhite: 93.1 diff --git a/themes/night-stack-slate.yaml b/themes/night-stack-slate.yaml new file mode 100644 index 00000000..67856777 --- /dev/null +++ b/themes/night-stack-slate.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Slate" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0F1115" + fg: "#D4D7DD" + black: "#1C2028" + red: "#8A94A6" + green: "#9AA4B2" + yellow: "#B6BEC9" + blue: "#6B7280" + magenta: "#7C8596" + cyan: "#AAB2BF" + white: "#D4D7DD" + brightBlack: "#1C2028" + brightRed: "#8A94A6" + brightGreen: "#9AA4B2" + brightYellow: "#B6BEC9" + brightBlue: "#6B7280" + brightMagenta: "#7C8596" + brightCyan: "#AAB2BF" + brightWhite: "#D4D7DD" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 81.7 + black: 0 + red: 43.8 + green: 52 + yellow: 66.5 + blue: 27.6 + magenta: 36.4 + cyan: 59.8 + white: 81.7 + brightBlack: 0 + brightRed: 43.8 + brightGreen: 52 + brightYellow: 66.5 + brightBlue: 27.6 + brightMagenta: 36.4 + brightCyan: 59.8 + brightWhite: 81.7 diff --git a/themes/night-stack-street-grid.yaml b/themes/night-stack-street-grid.yaml new file mode 100644 index 00000000..34e8cd56 --- /dev/null +++ b/themes/night-stack-street-grid.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Street Grid" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0C0615" + fg: "#F3E8FF" + black: "#1F1333" + red: "#FF1744" + green: "#E100FF" + yellow: "#FF4081" + blue: "#8E24AA" + magenta: "#E100FF" + cyan: "#F500FF" + white: "#F3E8FF" + brightBlack: "#1F1333" + brightRed: "#FF1744" + brightGreen: "#E100FF" + brightYellow: "#FF4081" + brightBlue: "#8E24AA" + brightMagenta: "#E100FF" + brightCyan: "#F500FF" + brightWhite: "#F3E8FF" +meta: + mode: "dark" + accent: "pink" + hue: 302 + contrast: + fg: 95.4 + black: 0 + red: 38.1 + green: 39.5 + yellow: 42.3 + blue: 18.6 + magenta: 39.5 + cyan: 43.8 + white: 95.4 + brightBlack: 0 + brightRed: 38.1 + brightGreen: 39.5 + brightYellow: 42.3 + brightBlue: 18.6 + brightMagenta: 39.5 + brightCyan: 43.8 + brightWhite: 95.4 diff --git a/themes/night-stack-teal-dark.yaml b/themes/night-stack-teal-dark.yaml new file mode 100644 index 00000000..16ad489f --- /dev/null +++ b/themes/night-stack-teal-dark.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Teal Dark" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#040A0A" + fg: "#D9FFFB" + black: "#0F1F1F" + red: "#14B8A6" + green: "#2DD4BF" + yellow: "#5EEAD4" + blue: "#0D9488" + magenta: "#2EC4B6" + cyan: "#67E8F9" + white: "#D9FFFB" + brightBlack: "#0F1F1F" + brightRed: "#14B8A6" + brightGreen: "#2DD4BF" + brightYellow: "#5EEAD4" + brightBlue: "#0D9488" + brightMagenta: "#2EC4B6" + brightCyan: "#67E8F9" + brightWhite: "#D9FFFB" +meta: + mode: "dark" + accent: "teal" + hue: 196 + contrast: + fg: 102.7 + black: 0 + red: 53.5 + green: 67.8 + yellow: 80.8 + blue: 37.1 + magenta: 59.9 + cyan: 82.1 + white: 102.7 + brightBlack: 0 + brightRed: 53.5 + brightGreen: 67.8 + brightYellow: 80.8 + brightBlue: 37.1 + brightMagenta: 59.9 + brightCyan: 82.1 + brightWhite: 102.7 diff --git a/themes/night-stack-titanium.yaml b/themes/night-stack-titanium.yaml new file mode 100644 index 00000000..1d2eddff --- /dev/null +++ b/themes/night-stack-titanium.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Titanium" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0C0F14" + fg: "#DCE3EA" + black: "#1C232C" + red: "#22D3EE" + green: "#67E8F9" + yellow: "#A5F3FC" + blue: "#0EA5E9" + magenta: "#38BDF8" + cyan: "#22D3EE" + white: "#DCE3EA" + brightBlack: "#1C232C" + brightRed: "#22D3EE" + brightGreen: "#67E8F9" + brightYellow: "#A5F3FC" + brightBlue: "#0EA5E9" + brightMagenta: "#38BDF8" + brightCyan: "#22D3EE" + brightWhite: "#DCE3EA" +meta: + mode: "dark" + accent: "indigo" + hue: 261 + contrast: + fg: 88.8 + black: 0 + red: 69.2 + green: 81.8 + yellow: 91.4 + blue: 48.7 + magenta: 60.2 + cyan: 69.2 + white: 88.8 + brightBlack: 0 + brightRed: 69.2 + brightGreen: 81.8 + brightYellow: 91.4 + brightBlue: 48.7 + brightMagenta: 60.2 + brightCyan: 69.2 + brightWhite: 88.8 diff --git a/themes/night-stack-violet-dark.yaml b/themes/night-stack-violet-dark.yaml new file mode 100644 index 00000000..d7595ecc --- /dev/null +++ b/themes/night-stack-violet-dark.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Violet Dark" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#070509" + fg: "#F3E8FF" + black: "#1A1222" + red: "#A855F7" + green: "#C084FC" + yellow: "#DDD6FE" + blue: "#7C3AED" + magenta: "#9333EA" + cyan: "#C4B5FD" + white: "#F3E8FF" + brightBlack: "#1A1222" + brightRed: "#A855F7" + brightGreen: "#C084FC" + brightYellow: "#DDD6FE" + brightBlue: "#7C3AED" + brightMagenta: "#9333EA" + brightCyan: "#C4B5FD" + brightWhite: "#F3E8FF" +meta: + mode: "dark" + accent: "magenta" + hue: 309 + contrast: + fg: 95.5 + black: 0 + red: 35.4 + green: 50.6 + yellow: 84.6 + blue: 24.3 + magenta: 26.1 + cyan: 67.8 + white: 95.5 + brightBlack: 0 + brightRed: 35.4 + brightGreen: 50.6 + brightYellow: 84.6 + brightBlue: 24.3 + brightMagenta: 26.1 + brightCyan: 67.8 + brightWhite: 95.5 diff --git a/themes/night-stack-zen-dark.yaml b/themes/night-stack-zen-dark.yaml new file mode 100644 index 00000000..5d4457dc --- /dev/null +++ b/themes/night-stack-zen-dark.yaml @@ -0,0 +1,49 @@ +name: "Night-Stack Zen Dark" +source: + marketplace_id: "codewithsg.night-stack" + version: "1.0.1" + installs: 30 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/night-stack" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" +colors: + bg: "#0E1116" + fg: "#D6D9DF" + black: "#1C2028" + red: "#8A94A6" + green: "#9AA4B2" + yellow: "#B6BEC9" + blue: "#6B7280" + magenta: "#7C8596" + cyan: "#AAB2BF" + white: "#D6D9DF" + brightBlack: "#1C2028" + brightRed: "#8A94A6" + brightGreen: "#9AA4B2" + brightYellow: "#B6BEC9" + brightBlue: "#6B7280" + brightMagenta: "#7C8596" + brightCyan: "#AAB2BF" + brightWhite: "#D6D9DF" +meta: + mode: "dark" + accent: "purple" + hue: 261 + contrast: + fg: 82.9 + black: 0 + red: 43.8 + green: 52 + yellow: 66.5 + blue: 27.6 + magenta: 36.4 + cyan: 59.8 + white: 82.9 + brightBlack: 0 + brightRed: 43.8 + brightGreen: 52 + brightYellow: 66.5 + brightBlue: 27.6 + brightMagenta: 36.4 + brightCyan: 59.8 + brightWhite: 82.9 diff --git a/themes/night-storm.yaml b/themes/night-storm.yaml new file mode 100644 index 00000000..e3565d5a --- /dev/null +++ b/themes/night-storm.yaml @@ -0,0 +1,49 @@ +name: "Night Storm" +source: + marketplace_id: "LucianoOliveira.lanno-night-storm" + version: "0.0.12" + installs: 1501 + author: "Luciano Oliveira" + repo: "https://github.com/luciano-work/night-storm-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LucianoOliveira.lanno-night-storm" +colors: + bg: "#232323" + fg: "#B6B6B6" + black: "#303030" + red: "#6D214F" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#707070" + brightBlack: "#303030" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#B6B6B6" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 60.3 + black: 0 + red: 0 + green: 71.2 + yellow: 61.2 + blue: 50.1 + magenta: 54 + cyan: 69.5 + white: 24.8 + brightBlack: 0 + brightRed: 48.3 + brightGreen: 71.2 + brightYellow: 61.2 + brightBlue: 50.1 + brightMagenta: 54 + brightCyan: 69.5 + brightWhite: 60.3 diff --git a/themes/night-watchers.yaml b/themes/night-watchers.yaml new file mode 100644 index 00000000..d0792e0c --- /dev/null +++ b/themes/night-watchers.yaml @@ -0,0 +1,49 @@ +name: "Night Watchers" +source: + marketplace_id: "Kiranism.nightwatchers" + version: "1.4.0" + installs: 296 + author: "Kiran" + repo: "https://github.com/Kiranism/night-watchers-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Kiranism.nightwatchers" +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#6DCBFA" + magenta: "#CFBAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#73D0FF" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 230 + contrast: + fg: 100.4 + black: 0 + red: 46.2 + green: 63.3 + yellow: 76.3 + blue: 63.8 + magenta: 65.9 + cyan: 73.7 + white: 67.5 + brightBlack: 18.7 + brightRed: 48.7 + brightGreen: 77.7 + brightYellow: 79.3 + brightBlue: 66.7 + brightMagenta: 68.8 + brightCyan: 76.7 + brightWhite: 102.7 diff --git a/themes/night-wind-theme.yaml b/themes/night-wind-theme.yaml new file mode 100644 index 00000000..79ddf12f --- /dev/null +++ b/themes/night-wind-theme.yaml @@ -0,0 +1,49 @@ +name: "Night Wind Theme" +source: + marketplace_id: "gawnatep.night-wind-theme" + version: "0.0.2" + installs: 128 + author: "gawnatep" + repo: "https://github.com/gabrielsalves1/Night-Wind-Theme-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=gawnatep.night-wind-theme" +colors: + bg: "#161636" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 79.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.4 + cyan: 47.2 + white: 89.6 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/night-yellow.yaml b/themes/night-yellow.yaml new file mode 100644 index 00000000..c1e36730 --- /dev/null +++ b/themes/night-yellow.yaml @@ -0,0 +1,49 @@ +name: "Night Yellow" +source: + marketplace_id: "er-codee.themes-er" + version: "0.0.2" + installs: 1014 + author: "er-codee" + repo: "https://github.com/Ernesto-Rosas/Themes-ER" + url: "https://marketplace.visualstudio.com/items?itemName=er-codee.themes-er" +colors: + bg: "#181818" + fg: "#C8C6BF" + black: "#181818" + red: "#F07178" + green: "#B9E02D" + yellow: "#CDB749" + blue: "#313F54" + magenta: "#D4BFFF" + cyan: "#181818" + white: "#C8C6BF" + brightBlack: "#323946" + brightRed: "#FF6D48" + brightGreen: "#8BC17A" + brightYellow: "#CDB749" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#A6FDE1" + brightWhite: "#C8C6BF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 71 + black: 0 + red: 46.5 + green: 77.8 + yellow: 62.5 + blue: 0 + magenta: 72.9 + cyan: 0 + white: 71 + brightBlack: 0 + brightRed: 47.8 + brightGreen: 60.2 + brightYellow: 62.5 + brightBlue: 34.6 + brightMagenta: 57.3 + brightCyan: 94.4 + brightWhite: 71 diff --git a/themes/night-zen.yaml b/themes/night-zen.yaml new file mode 100644 index 00000000..1d82c9b5 --- /dev/null +++ b/themes/night-zen.yaml @@ -0,0 +1,49 @@ +name: "Night Zen" +source: + marketplace_id: "sachin915t.night-zen-theme" + version: "0.0.1" + installs: 6 + author: "sachin" + repo: "https://github.com/sachin915t/logan-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sachin915t.night-zen-theme" +colors: + bg: "#0F1117" + fg: "#D4D4D4" + black: "#282C34" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#282C34" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#ABB2BF" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 80 + black: 0 + red: 42.6 + green: 62.8 + yellow: 71.1 + blue: 55.2 + magenta: 45.6 + cyan: 55.1 + white: 59.9 + brightBlack: 0 + brightRed: 42.6 + brightGreen: 62.8 + brightYellow: 71.1 + brightBlue: 55.2 + brightMagenta: 45.6 + brightCyan: 55.1 + brightWhite: 59.9 diff --git a/themes/night.yaml b/themes/night.yaml new file mode 100644 index 00000000..410e66d9 --- /dev/null +++ b/themes/night.yaml @@ -0,0 +1,49 @@ +name: "Night" +source: + marketplace_id: "fem12N.night" + version: "1.1.1" + installs: 8327 + author: "fem12N" + repo: "https://github.com/FEM12/Night" + url: "https://marketplace.visualstudio.com/items?itemName=fem12N.night" +colors: + bg: "#24283B" + fg: "#FFFFFF" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 104.2 + black: 0 + red: 47.3 + green: 43.7 + yellow: 60.1 + blue: 49 + magenta: 52.9 + cyan: 68.4 + white: 30 + brightBlack: 0 + brightRed: 47.3 + brightGreen: 43.7 + brightYellow: 60.1 + brightBlue: 49 + brightMagenta: 52.9 + brightCyan: 68.4 + brightWhite: 56.9 diff --git a/themes/nightblue-1.yaml b/themes/nightblue-1.yaml new file mode 100644 index 00000000..a79ca6be --- /dev/null +++ b/themes/nightblue-1.yaml @@ -0,0 +1,49 @@ +name: "NightBlue 1" +source: + marketplace_id: "yeekiiiiii.nightblue" + version: "0.3.21" + installs: 523 + author: "YeeKi" + repo: "https://github.com/kenneth2001/NightBlue" + url: "https://marketplace.visualstudio.com/items?itemName=yeekiiiiii.nightblue" +colors: + bg: "#161922" + fg: "#A6ACCD" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 270 + contrast: + fg: 56.9 + black: 0 + red: 46.4 + green: 83.9 + yellow: 78.7 + blue: 55.7 + magenta: 53.5 + cyan: 78 + white: 106.6 + brightBlack: 26.2 + brightRed: 46.4 + brightGreen: 83.9 + brightYellow: 78.7 + brightBlue: 55.7 + brightMagenta: 53.5 + brightCyan: 78 + brightWhite: 106.6 diff --git a/themes/nightblue-oled-beta.yaml b/themes/nightblue-oled-beta.yaml new file mode 100644 index 00000000..30142246 --- /dev/null +++ b/themes/nightblue-oled-beta.yaml @@ -0,0 +1,49 @@ +name: "NightBlue OLED (BETA)" +source: + marketplace_id: "yeekiiiiii.nightblue" + version: "0.3.21" + installs: 523 + author: "YeeKi" + repo: "https://github.com/kenneth2001/NightBlue" + url: "https://marketplace.visualstudio.com/items?itemName=yeekiiiiii.nightblue" +colors: + bg: "#000000" + fg: "#A6ACCD" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 58.1 + black: 0 + red: 47.6 + green: 85.2 + yellow: 79.9 + blue: 56.9 + magenta: 54.8 + cyan: 79.3 + white: 107.9 + brightBlack: 27.4 + brightRed: 47.6 + brightGreen: 85.2 + brightYellow: 79.9 + brightBlue: 56.9 + brightMagenta: 54.8 + brightCyan: 79.3 + brightWhite: 107.9 diff --git a/themes/nightcall-no-italics.yaml b/themes/nightcall-no-italics.yaml new file mode 100644 index 00000000..8ee66876 --- /dev/null +++ b/themes/nightcall-no-italics.yaml @@ -0,0 +1,49 @@ +name: "Nightcall (No Italics)" +source: + marketplace_id: "bpat86.nightcall" + version: "1.0.0" + installs: 8132 + author: "Bobby Patterson" + repo: "https://github.com/bpat86/nightcall-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bpat86.nightcall" +colors: + bg: "#141629" + fg: "#E4CCFF" + black: "#141629" + red: "#F4598E" + green: "#85D483" + yellow: "#D9F99D" + blue: "#639EE5" + magenta: "#C792EA" + cyan: "#67E8F9" + white: "#E4CCFF" + brightBlack: "#575656" + brightRed: "#F4598E" + brightGreen: "#86EFAC" + brightYellow: "#F2E3BF" + brightBlue: "#7E90FF" + brightMagenta: "#C792EA" + brightCyan: "#A5F3FC" + brightWhite: "#E4CCFF" +meta: + mode: "dark" + accent: "red" + hue: 278 + contrast: + fg: 80.3 + black: 0 + red: 43 + green: 68.6 + yellow: 95.3 + blue: 47.3 + magenta: 53.7 + cyan: 81.1 + white: 80.3 + brightBlack: 15.5 + brightRed: 43 + brightGreen: 83 + brightYellow: 89.3 + brightBlue: 46 + brightMagenta: 53.7 + brightCyan: 90.7 + brightWhite: 80.3 diff --git a/themes/nightchill.yaml b/themes/nightchill.yaml new file mode 100644 index 00000000..ed814071 --- /dev/null +++ b/themes/nightchill.yaml @@ -0,0 +1,49 @@ +name: "NightChill" +source: + marketplace_id: "MohammedSiddiq.NightChill" + version: "0.1.2" + installs: 50 + author: "Mohammed Siddiq" + repo: "https://github.com/MohdSiddiq12/NightChill" + url: "https://marketplace.visualstudio.com/items?itemName=MohammedSiddiq.NightChill" +colors: + bg: "#000E14" + fg: "#7DF9FF" + black: "#606060" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#C2C2C2" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 222 + contrast: + fg: 91.8 + black: 20.2 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 90.7 + brightBlack: 69.5 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/nightcode.yaml b/themes/nightcode.yaml new file mode 100644 index 00000000..2b0148b3 --- /dev/null +++ b/themes/nightcode.yaml @@ -0,0 +1,49 @@ +name: "NightCode" +source: + marketplace_id: "carlos-dev-pereira.nightcode" + version: "1.2.0" + installs: 4575 + author: "Carlos Pereira" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=carlos-dev-pereira.nightcode" +colors: + bg: "#1D252C" + fg: "#B7C5D3" + black: "#41505E" + red: "#D95468" + green: "#8BD49C" + yellow: "#EBBF83" + blue: "#539AFC" + magenta: "#B62D65" + cyan: "#70E1E8" + white: "#FFFFFF" + brightBlack: "#617991" + brightRed: "#D95468" + brightGreen: "#8BD49C" + brightYellow: "#FFFFFF" + brightBlue: "#539AFC" + brightMagenta: "#B62D65" + brightCyan: "#70E1E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 245 + contrast: + fg: 67.7 + black: 10.8 + red: 33.5 + green: 68.1 + yellow: 69.5 + blue: 44.9 + magenta: 20.7 + cyan: 75.6 + white: 105.1 + brightBlack: 27.6 + brightRed: 33.5 + brightGreen: 68.1 + brightYellow: 105.1 + brightBlue: 44.9 + brightMagenta: 20.7 + brightCyan: 75.6 + brightWhite: 105.1 diff --git a/themes/nightdream-monokai.yaml b/themes/nightdream-monokai.yaml new file mode 100644 index 00000000..36d5d4a9 --- /dev/null +++ b/themes/nightdream-monokai.yaml @@ -0,0 +1,49 @@ +name: "Nightdream Monokai" +source: + marketplace_id: "mrheio.nightdream" + version: "0.3.1" + installs: 52 + author: "mrheio" + repo: "https://github.com/masterodi/nightdream-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mrheio.nightdream" +colors: + bg: "#282A39" + fg: "#FFFFFF" + black: "#1B1E28" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 279 + contrast: + fg: 103.9 + black: 0 + red: 36.2 + green: 73.4 + yellow: 99 + blue: 75.2 + magenta: 51.9 + cyan: 75.2 + white: 103.9 + brightBlack: 54.1 + brightRed: 36.2 + brightGreen: 73.4 + brightYellow: 99 + brightBlue: 75.5 + brightMagenta: 51.9 + brightCyan: 75.5 + brightWhite: 103.9 diff --git a/themes/nightdream.yaml b/themes/nightdream.yaml new file mode 100644 index 00000000..b1c00c86 --- /dev/null +++ b/themes/nightdream.yaml @@ -0,0 +1,49 @@ +name: "Nightdream" +source: + marketplace_id: "mrheio.nightdream" + version: "0.3.1" + installs: 52 + author: "mrheio" + repo: "https://github.com/masterodi/nightdream-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mrheio.nightdream" +colors: + bg: "#20232F" + fg: "#DFE6FF" + black: "#1B1E28" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 89.3 + black: 0 + red: 37.6 + green: 74.7 + yellow: 100.4 + blue: 76.6 + magenta: 53.2 + cyan: 76.6 + white: 105.2 + brightBlack: 55.5 + brightRed: 37.6 + brightGreen: 74.7 + brightYellow: 100.4 + brightBlue: 76.9 + brightMagenta: 53.2 + brightCyan: 76.9 + brightWhite: 105.2 diff --git a/themes/nightfly.yaml b/themes/nightfly.yaml new file mode 100644 index 00000000..997d5025 --- /dev/null +++ b/themes/nightfly.yaml @@ -0,0 +1,49 @@ +name: "Nightfly" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" +colors: + bg: "#00080E" + fg: "#FFFFFB" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FFC600" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FFC600" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: 229 + contrast: + fg: 107.6 + black: 0 + red: 48 + green: 67.2 + yellow: 77.1 + blue: 39.7 + magenta: 65.3 + cyan: 93.7 + white: 107.8 + brightBlack: 15.6 + brightRed: 48 + brightGreen: 67.2 + brightYellow: 77.1 + brightBlue: 39.7 + brightMagenta: 65.3 + brightCyan: 93.7 + brightWhite: 0 diff --git a/themes/nightfox.yaml b/themes/nightfox.yaml new file mode 100644 index 00000000..17a17ba5 --- /dev/null +++ b/themes/nightfox.yaml @@ -0,0 +1,49 @@ +name: "Nightfox" +source: + marketplace_id: "DarkAlchemy.darkalchemy" + version: "0.0.3" + installs: 576 + author: "Dark Alchemy" + repo: "https://github.com/dark-alchemy/darkalchemy-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkAlchemy.darkalchemy" +colors: + bg: "#212E3F" + fg: "#FFFFFF" + black: "#000000" + red: "#DA8548" + green: "#23D18B" + yellow: "#ECBE7B" + blue: "#00BFF8" + magenta: "#BC3FBC" + cyan: "#46D9FF" + white: "#E5E5E5" + brightBlack: "#CFCFCF" + brightRed: "#DA8548" + brightGreen: "#23D18B" + brightYellow: "#ECBE7B" + brightBlue: "#00BFF8" + brightMagenta: "#D670D6" + brightCyan: "#46D9FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 255 + contrast: + fg: 103.4 + black: 0 + red: 43.3 + green: 60 + yellow: 67.4 + blue: 56.4 + magenta: 26.2 + cyan: 69.6 + white: 86.5 + brightBlack: 73 + brightRed: 43.3 + brightGreen: 60 + brightYellow: 67.4 + brightBlue: 56.4 + brightMagenta: 41.9 + brightCyan: 69.6 + brightWhite: 86.5 diff --git a/themes/nighthawk.yaml b/themes/nighthawk.yaml new file mode 100644 index 00000000..9105b17c --- /dev/null +++ b/themes/nighthawk.yaml @@ -0,0 +1,49 @@ +name: "Nighthawk" +source: + marketplace_id: "ezzak.nighthawk" + version: "1.1.0" + installs: 9435 + author: "Ezz" + repo: "https://github.com/ezzak/nighthawk" + url: "https://marketplace.visualstudio.com/items?itemName=ezzak.nighthawk" +colors: + bg: "#0B162D" + fg: "#FFFD" + black: "#000000" + red: "#D51B6F" + green: "#13C965" + yellow: "#B69B3A" + blue: "#306BAC" + magenta: "#610D33" + cyan: "#0F9492" + white: "#FFFFFF" + brightBlack: "#FFFA" + brightRed: "#D51B6F" + brightGreen: "#13C965" + brightYellow: "#E8C547" + brightBlue: "#306BAC" + brightMagenta: "#610D33" + brightCyan: "#0F9492" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 263 + contrast: + fg: 91 + black: 0 + red: 28.2 + green: 58.6 + yellow: 48.3 + blue: 23.6 + magenta: 0 + cyan: 36.5 + white: 106.8 + brightBlack: 90.9 + brightRed: 28.2 + brightGreen: 58.6 + brightYellow: 72.2 + brightBlue: 23.6 + brightMagenta: 0 + brightCyan: 36.5 + brightWhite: 106.8 diff --git a/themes/nightlife.yaml b/themes/nightlife.yaml new file mode 100644 index 00000000..2ee6c958 --- /dev/null +++ b/themes/nightlife.yaml @@ -0,0 +1,49 @@ +name: "Nightlife" +source: + marketplace_id: "spacesick.nightlife-vscode-theme" + version: "1.0.1" + installs: 797 + author: "Vincent Yovian" + repo: "https://github.com/spacesick/nightlife-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=spacesick.nightlife-vscode-theme" +colors: + bg: "#0F1118" + fg: "#EFF4F6" + black: "#000000" + red: "#DE6067" + green: "#7BA378" + yellow: "#E7A552" + blue: "#5B6DFF" + magenta: "#BDA5E6" + cyan: "#61BADD" + white: "#CFD3D6" + brightBlack: "#848484" + brightRed: "#F99FA8" + brightGreen: "#BEE2BC" + brightYellow: "#FFE376" + brightBlue: "#A8BCFF" + brightMagenta: "#FB98EC" + brightCyan: "#9CF6FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 272 + contrast: + fg: 99.5 + black: 0 + red: 39.1 + green: 46.6 + yellow: 60.3 + blue: 33.2 + magenta: 59.1 + cyan: 58.7 + white: 79 + brightBlack: 36.2 + brightRed: 63.6 + brightGreen: 82.7 + brightYellow: 89.9 + brightBlue: 67 + brightMagenta: 64.9 + brightCyan: 92.1 + brightWhite: 107.4 diff --git a/themes/nightly-code.yaml b/themes/nightly-code.yaml new file mode 100644 index 00000000..994c7b1d --- /dev/null +++ b/themes/nightly-code.yaml @@ -0,0 +1,49 @@ +name: "Nightly Code" +source: + marketplace_id: "SpikySpike.nightly-code" + version: "2.0.0" + installs: 178 + author: "SpikySpike" + repo: "https://github.com/SpikySpike/nightly-code" + url: "https://marketplace.visualstudio.com/items?itemName=SpikySpike.nightly-code" +colors: + bg: "#1E1626" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#888888" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 307 + contrast: + fg: 78.6 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.5 + cyan: 47.3 + white: 89.7 + brightBlack: 37.3 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/nightly-inspiration-dark.yaml b/themes/nightly-inspiration-dark.yaml new file mode 100644 index 00000000..aeca68fd --- /dev/null +++ b/themes/nightly-inspiration-dark.yaml @@ -0,0 +1,49 @@ +name: "Nightly-Inspiration-Dark" +source: + marketplace_id: "GGRusty.nightly-inspiration-dark" + version: "1.0.3" + installs: 308 + author: "GGRusty" + repo: "https://github.com/GGRusty/nightly-inspiration-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GGRusty.nightly-inspiration-dark" +colors: + bg: "#00161A" + fg: "#F2EEE7" + black: "#192440" + red: "#E27E88" + green: "#21C063" + yellow: "#EBC583" + blue: "#729AFF" + magenta: "#B62D65" + cyan: "#70E1E8" + white: "#F2EEE7" + brightBlack: "#192440" + brightRed: "#E27E88" + brightGreen: "#21C063" + brightYellow: "#EBC583" + brightBlue: "#729AFF" + brightMagenta: "#B62D65" + brightCyan: "#70E1E8" + brightWhite: "#F2EEE7" +meta: + mode: "dark" + accent: "teal" + hue: 210 + contrast: + fg: 96.2 + black: 0 + red: 47.9 + green: 54.8 + yellow: 74 + blue: 49 + magenta: 22.7 + cyan: 77.6 + white: 96.2 + brightBlack: 0 + brightRed: 47.9 + brightGreen: 54.8 + brightYellow: 74 + brightBlue: 49 + brightMagenta: 22.7 + brightCyan: 77.6 + brightWhite: 96.2 diff --git a/themes/nightmare.yaml b/themes/nightmare.yaml new file mode 100644 index 00000000..cb9fadaa --- /dev/null +++ b/themes/nightmare.yaml @@ -0,0 +1,49 @@ +name: "Nightmare" +source: + marketplace_id: "OsirisX3R0.nightmare-theme-vscode" + version: "1.0.5" + installs: 93 + author: "OsirisX3R0" + repo: "https://github.com/OsirisX3R0/nightmare" + url: "https://marketplace.visualstudio.com/items?itemName=OsirisX3R0.nightmare-theme-vscode" +colors: + bg: "#111111" + fg: "#BBBBBB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 65.2 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 107.4 diff --git a/themes/nightnode.yaml b/themes/nightnode.yaml new file mode 100644 index 00000000..8c144405 --- /dev/null +++ b/themes/nightnode.yaml @@ -0,0 +1,49 @@ +name: "nightnode" +source: + marketplace_id: "AyushKhatri.nightnode" + version: "1.1.2" + installs: 1223 + author: "Ayush Khatri" + repo: "https://github.com/ayush-khatrii/night-node" + url: "https://marketplace.visualstudio.com/items?itemName=AyushKhatri.nightnode" +colors: + bg: "#0F0F0F" + fg: "#F7F7F7" + black: "#000000" + red: "#CD3131" + green: "#00FF4B" + yellow: "#E5E510" + blue: "#2071CB" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 102.2 + black: 0 + red: 27.3 + green: 86.4 + yellow: 86.2 + blue: 27.9 + magenta: 30.4 + cyan: 48.2 + white: 107.5 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/nightshade.yaml b/themes/nightshade.yaml new file mode 100644 index 00000000..f40579d6 --- /dev/null +++ b/themes/nightshade.yaml @@ -0,0 +1,49 @@ +name: "Nightshade" +source: + marketplace_id: "rbolsius.theme-nightshade" + version: "1.0.1" + installs: 1957 + author: "rbolsius" + repo: "https://github.com/rbolsius/vscode-theme-nightshade" + url: "https://marketplace.visualstudio.com/items?itemName=rbolsius.theme-nightshade" +colors: + bg: "#222222" + fg: "#DCDCD0" + black: "#222222" + red: "#B76F6A" + green: "#7F9F7F" + yellow: "#DFAF8F" + blue: "#6092BF" + magenta: "#A87390" + cyan: "#72AEB0" + white: "#BABAB0" + brightBlack: "#878780" + brightRed: "#CC8A8A" + brightGreen: "#C5D47F" + brightYellow: "#F0DCA5" + brightBlue: "#7CB1E0" + brightMagenta: "#BF86A5" + brightCyan: "#8CD0D3" + brightWhite: "#DCDCD0" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 82.5 + black: 0 + red: 33.7 + green: 43.7 + yellow: 62.1 + blue: 39 + magenta: 33.8 + cyan: 50.5 + white: 62.3 + brightBlack: 35.5 + brightRed: 46 + brightGreen: 73.4 + brightYellow: 83.7 + brightBlue: 54.9 + brightMagenta: 43.7 + brightCyan: 68.8 + brightWhite: 82.5 diff --git a/themes/nightshift-lobo-dawn.yaml b/themes/nightshift-lobo-dawn.yaml new file mode 100644 index 00000000..c9dfcf11 --- /dev/null +++ b/themes/nightshift-lobo-dawn.yaml @@ -0,0 +1,49 @@ +name: "NightShift Lobo Dawn" +source: + marketplace_id: "NightshiftLobo.nightshiftlobo" + version: "2.0.0" + installs: 17 + author: "Nightshift Lobo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NightshiftLobo.nightshiftlobo" +colors: + bg: "#F4F1E8" + fg: "#2E3440" + black: "#4C5568" + red: "#B35D5D" + green: "#4F9C69" + yellow: "#B48C42" + blue: "#6C83D6" + magenta: "#7A63B8" + cyan: "#3F8F95" + white: "#2E3440" + brightBlack: "#6C7385" + brightRed: "#B35D5D" + brightGreen: "#4F9C69" + brightYellow: "#B48C42" + brightBlue: "#4F6EDB" + brightMagenta: "#7A63B8" + brightCyan: "#4F949A" + brightWhite: "#2E3440" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 90.1 + black: 77.7 + red: 62.7 + green: 52.3 + yellow: 49.5 + blue: 55 + magenta: 65.3 + cyan: 56.7 + white: 90.1 + brightBlack: 64.6 + brightRed: 62.7 + brightGreen: 52.3 + brightYellow: 49.5 + brightBlue: 63.2 + brightMagenta: 65.3 + brightCyan: 53.9 + brightWhite: 90.1 diff --git a/themes/nightshiftlobo-obsidian.yaml b/themes/nightshiftlobo-obsidian.yaml new file mode 100644 index 00000000..abcc04e5 --- /dev/null +++ b/themes/nightshiftlobo-obsidian.yaml @@ -0,0 +1,49 @@ +name: "NightShiftLobo Obsidian" +source: + marketplace_id: "NightshiftLobo.nightshiftlobo" + version: "2.0.0" + installs: 17 + author: "Nightshift Lobo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NightshiftLobo.nightshiftlobo" +colors: + bg: "#141821" + fg: "#D9DEEA" + black: "#141821" + red: "#DE8A90" + green: "#74C99B" + yellow: "#DCBE7C" + blue: "#748EF2" + magenta: "#B297F0" + cyan: "#5DB8CB" + white: "#D9DEEA" + brightBlack: "#8891A8" + brightRed: "#DE8A90" + brightGreen: "#74C99B" + brightYellow: "#D49776" + brightBlue: "#748EF2" + brightMagenta: "#B297F0" + brightCyan: "#62AEBE" + brightWhite: "#D9DEEA" +meta: + mode: "dark" + accent: "purple" + hue: 266 + contrast: + fg: 85.4 + black: 0 + red: 50.6 + green: 63 + yellow: 68.3 + blue: 43.5 + magenta: 52.8 + cyan: 56.1 + white: 85.4 + brightBlack: 42 + brightRed: 50.6 + brightGreen: 63 + brightYellow: 52.3 + brightBlue: 43.5 + brightMagenta: 52.8 + brightCyan: 51.5 + brightWhite: 85.4 diff --git a/themes/nightshiftlobo-shadow.yaml b/themes/nightshiftlobo-shadow.yaml new file mode 100644 index 00000000..f76976dd --- /dev/null +++ b/themes/nightshiftlobo-shadow.yaml @@ -0,0 +1,49 @@ +name: "NightShiftLobo Shadow" +source: + marketplace_id: "NightshiftLobo.nightshiftlobo" + version: "2.0.0" + installs: 17 + author: "Nightshift Lobo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NightshiftLobo.nightshiftlobo" +colors: + bg: "#10131A" + fg: "#D6DBE8" + black: "#10131A" + red: "#DA848A" + green: "#70C693" + yellow: "#D8BB78" + blue: "#6078D4" + magenta: "#AF92EE" + cyan: "#5BB5C8" + white: "#D6DBE8" + brightBlack: "#858DA6" + brightRed: "#DA848A" + brightGreen: "#70C693" + brightYellow: "#CF9272" + brightBlue: "#6078D4" + brightMagenta: "#AF92EE" + brightCyan: "#60A9B8" + brightWhite: "#D6DBE8" +meta: + mode: "dark" + accent: "purple" + hue: 267 + contrast: + fg: 84.1 + black: 0 + red: 48.4 + green: 61.6 + yellow: 66.9 + blue: 33.1 + magenta: 51.1 + cyan: 55 + white: 84.1 + brightBlack: 40.6 + brightRed: 48.4 + brightGreen: 61.6 + brightYellow: 50.2 + brightBlue: 33.1 + brightMagenta: 51.1 + brightCyan: 49.5 + brightWhite: 84.1 diff --git a/themes/nightshiftlobo.yaml b/themes/nightshiftlobo.yaml new file mode 100644 index 00000000..7e2077f7 --- /dev/null +++ b/themes/nightshiftlobo.yaml @@ -0,0 +1,49 @@ +name: "NightShiftLobo" +source: + marketplace_id: "NightshiftLobo.nightshiftlobo" + version: "2.0.0" + installs: 17 + author: "Nightshift Lobo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NightshiftLobo.nightshiftlobo" +colors: + bg: "#0D1016" + fg: "#D4D8E4" + black: "#0D1016" + red: "#D37D82" + green: "#6ABF88" + yellow: "#D2B46F" + blue: "#6F88E6" + magenta: "#A98CE8" + cyan: "#58AFC2" + white: "#D4D8E4" + brightBlack: "#7C859E" + brightRed: "#D37D82" + brightGreen: "#6ABF88" + brightYellow: "#C98C6A" + brightBlue: "#6F88E6" + brightMagenta: "#A98CE8" + brightCyan: "#5CA3B2" + brightWhite: "#D4D8E4" +meta: + mode: "dark" + accent: "purple" + hue: 264 + contrast: + fg: 82.5 + black: 0 + red: 45.1 + green: 58 + yellow: 63.2 + blue: 40.9 + magenta: 48.2 + cyan: 52.2 + white: 82.5 + brightBlack: 36.8 + brightRed: 45.1 + brightGreen: 58 + brightYellow: 47.3 + brightBlue: 40.9 + brightMagenta: 48.2 + brightCyan: 46.7 + brightWhite: 82.5 diff --git a/themes/nightsky.yaml b/themes/nightsky.yaml new file mode 100644 index 00000000..dd173ab6 --- /dev/null +++ b/themes/nightsky.yaml @@ -0,0 +1,49 @@ +name: "NightSky" +source: + marketplace_id: "abeilles.NightSky" + version: "1.0.5" + installs: 569 + author: "abeilles" + repo: "https://github.com/Abeilles8/NightSky" + url: "https://marketplace.visualstudio.com/items?itemName=abeilles.NightSky" +colors: + bg: "#00004E" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 106.5 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/nightswell.yaml b/themes/nightswell.yaml new file mode 100644 index 00000000..63e18a5e --- /dev/null +++ b/themes/nightswell.yaml @@ -0,0 +1,49 @@ +name: "NightSwell" +source: + marketplace_id: "TrueMyst.night-swell" + version: "1.0.2" + installs: 201 + author: "TrueMyst" + repo: "https://github.com/TrueMyst/NightSwell" + url: "https://marketplace.visualstudio.com/items?itemName=TrueMyst.night-swell" +colors: + bg: "#1C1D30" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 281 + contrast: + fg: 78.5 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.4 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/nightwing.yaml b/themes/nightwing.yaml new file mode 100644 index 00000000..1e43169a --- /dev/null +++ b/themes/nightwing.yaml @@ -0,0 +1,49 @@ +name: "Nightwing" +source: + marketplace_id: "bwielgosz.nightwing" + version: "1.0.3" + installs: 408 + author: "Bartek Wielgosz 💻" + repo: "https://github.com/bwielgosz/nightwing-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bwielgosz.nightwing" +colors: + bg: "#01111F" + fg: "#D6DEEB" + black: "#01111F" + red: "#EF5350" + green: "#22DA6E" + yellow: "#A6DD54" + blue: "#82AAFF" + magenta: "#00C0E2" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#00C0E2" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 243 + contrast: + fg: 85.7 + black: 0 + red: 39.8 + green: 67.7 + yellow: 75.4 + blue: 56.4 + magenta: 59.5 + cyan: 60.2 + white: 107.4 + brightBlack: 16.1 + brightRed: 39.8 + brightGreen: 67.7 + brightYellow: 94.2 + brightBlue: 56.4 + brightMagenta: 59.5 + brightCyan: 74.5 + brightWhite: 107.4 diff --git a/themes/nighty-purple-color-theme.yaml b/themes/nighty-purple-color-theme.yaml new file mode 100644 index 00000000..fea4f6bc --- /dev/null +++ b/themes/nighty-purple-color-theme.yaml @@ -0,0 +1,49 @@ +name: "nighty-purple-color-theme" +source: + marketplace_id: "ExBrain.nighty-purple" + version: "1.0.2" + installs: 346 + author: "ExBrain" + repo: "https://github.com/exbraiin/VsCodeTheme" + url: "https://marketplace.visualstudio.com/items?itemName=ExBrain.nighty-purple" +colors: + bg: "#1E1E2E" + fg: "#D0D4EE" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 79.2 + black: 0 + red: 23.6 + green: 52 + yellow: 56.6 + blue: 33.6 + magenta: 31.2 + cyan: 49.4 + white: 87.4 + brightBlack: 21 + brightRed: 36.3 + brightGreen: 75.9 + brightYellow: 82.9 + brightBlue: 48.8 + brightMagenta: 45.5 + brightCyan: 72.4 + brightWhite: 100.9 diff --git a/themes/nigthwolf-color-theme.yaml b/themes/nigthwolf-color-theme.yaml new file mode 100644 index 00000000..47004865 --- /dev/null +++ b/themes/nigthwolf-color-theme.yaml @@ -0,0 +1,49 @@ +name: "NigthWolf-color-theme" +source: + marketplace_id: "daniloBrayann.night-wolfdark" + version: "0.0.10" + installs: 320 + author: "daniloBrayann" + repo: "https://github.com/danilobrayann/dev-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.night-wolfdark" +colors: + bg: "#282A36" + fg: "#E6E6E6" + black: "#21222C" + red: "#FF5555" + green: "#F2560A" + yellow: "#02FA8D" + blue: "#00FF9E" + magenta: "#D9FF02" + cyan: "#0B33EE" + white: "#FFFFFF" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 278 + contrast: + fg: 87.7 + black: 0 + red: 40.4 + green: 37 + yellow: 81.3 + blue: 84.4 + magenta: 93.7 + cyan: 13 + white: 103.9 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/nihilleaf-theme.yaml b/themes/nihilleaf-theme.yaml new file mode 100644 index 00000000..036e4e63 --- /dev/null +++ b/themes/nihilleaf-theme.yaml @@ -0,0 +1,49 @@ +name: "NihilLeaf-Theme" +source: + marketplace_id: "NihilLeaf.nihilleaf-theme" + version: "1.0.3" + installs: 835 + author: "NihilLeaf" + repo: "https://github.com/NihilLeaf/NihilLeaf-VScode-Green-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=NihilLeaf.nihilleaf-theme" +colors: + bg: "#091820" + fg: "#EAF0D8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 233 + contrast: + fg: 95.2 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/niketa-pop-dark.yaml b/themes/niketa-pop-dark.yaml new file mode 100644 index 00000000..f1258c1a --- /dev/null +++ b/themes/niketa-pop-dark.yaml @@ -0,0 +1,49 @@ +name: "niketa.pop.dark" +source: + marketplace_id: "selfrefactor.allegory-theme" + version: "0.1.1" + installs: 768 + author: "selfrefactor" + repo: "https://github.com/selfrefactor/allegory-theme" + url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" +colors: + bg: "#3F3B39" + fg: "#DEDEDE" + black: "#111111" + red: "#F15D22" + green: "#73C48F" + yellow: "#FAA41A" + blue: "#3F51B5" + magenta: "#9C27B0" + cyan: "#48B9C7" + white: "#DEDEDE" + brightBlack: "#574F4A" + brightRed: "#CB4B16" + brightGreen: "#574E4A" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#D3D0D0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.2 + black: 7.6 + red: 33.7 + green: 53 + yellow: 55 + blue: 10.1 + magenta: 13.3 + cyan: 48.1 + white: 78.2 + brightBlack: 0 + brightRed: 22.2 + brightGreen: 0 + brightYellow: 22.3 + brightBlue: 34.5 + brightMagenta: 23 + brightCyan: 41.5 + brightWhite: 70 diff --git a/themes/niketa-pop-light.yaml b/themes/niketa-pop-light.yaml new file mode 100644 index 00000000..5479550a --- /dev/null +++ b/themes/niketa-pop-light.yaml @@ -0,0 +1,49 @@ +name: "niketa.pop.light" +source: + marketplace_id: "selfrefactor.allegory-theme" + version: "0.1.1" + installs: 768 + author: "selfrefactor" + repo: "https://github.com/selfrefactor/allegory-theme" + url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" +colors: + bg: "#FFFFFF" + fg: "#403C3A" + black: "#111111" + red: "#F15D22" + green: "#73C48F" + yellow: "#FAA41A" + blue: "#3F51B5" + magenta: "#9C27B0" + cyan: "#48B9C7" + white: "#DEDEDE" + brightBlack: "#574F4A" + brightRed: "#CB4B16" + brightGreen: "#574E4A" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#D3D0D0" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 95.3 + black: 105.4 + red: 59.6 + green: 40.9 + yellow: 38.9 + blue: 83.4 + magenta: 80.1 + cyan: 45.5 + white: 17 + brightBlack: 87.8 + brightRed: 71 + brightGreen: 88 + brightYellow: 70.9 + brightBlue: 58.8 + brightMagenta: 70.2 + brightCyan: 52 + brightWhite: 24.7 diff --git a/themes/niketaoasis.yaml b/themes/niketaoasis.yaml new file mode 100644 index 00000000..0616725e --- /dev/null +++ b/themes/niketaoasis.yaml @@ -0,0 +1,49 @@ +name: "NiketaOasis" +source: + marketplace_id: "selfrefactor.allegory-theme" + version: "0.1.1" + installs: 768 + author: "selfrefactor" + repo: "https://github.com/selfrefactor/allegory-theme" + url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" +colors: + bg: "#1F2430" + fg: "#D8DEEE" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#6DCBFA" + magenta: "#BBA6E5" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#73D0FF" + brightMagenta: "#BBA6E5" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + contrast: + fg: 83.9 + black: 0 + red: 48.6 + green: 65.7 + yellow: 78.7 + blue: 66.2 + magenta: 56.9 + cyan: 76.1 + white: 69.9 + brightBlack: 21.1 + brightRed: 51.1 + brightGreen: 80.2 + brightYellow: 81.8 + brightBlue: 69.1 + brightMagenta: 56.9 + brightCyan: 79.1 + brightWhite: 105.1 diff --git a/themes/niketaplus.yaml b/themes/niketaplus.yaml new file mode 100644 index 00000000..bff4d82c --- /dev/null +++ b/themes/niketaplus.yaml @@ -0,0 +1,49 @@ +name: "NiketaPlus" +source: + marketplace_id: "selfrefactor.allegory-theme" + version: "0.1.1" + installs: 768 + author: "selfrefactor" + repo: "https://github.com/selfrefactor/allegory-theme" + url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" +colors: + bg: "#1E1E1E" + fg: "#DCDCDC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#FE7FFC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#FE7FFC" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 83.6 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 58.1 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 58.1 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/niketaprettier.yaml b/themes/niketaprettier.yaml new file mode 100644 index 00000000..2d7ea9de --- /dev/null +++ b/themes/niketaprettier.yaml @@ -0,0 +1,49 @@ +name: "NiketaPrettier" +source: + marketplace_id: "selfrefactor.allegory-theme" + version: "0.1.1" + installs: 768 + author: "selfrefactor" + repo: "https://github.com/selfrefactor/allegory-theme" + url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" +colors: + bg: "#1A2B34" + fg: "#CEE2EE" + black: "#1A2B34" + red: "#8F001C" + green: "#005144" + yellow: "#BFAE73" + blue: "#73BDBB" + magenta: "#CBA2D0" + cyan: "#5EBDD9" + white: "#CEE2EE" + brightBlack: "#51636D" + brightRed: "#FF817D" + brightGreen: "#61C0AE" + brightYellow: "#BFAE73" + brightBlue: "#73BDBB" + brightMagenta: "#CBA2D0" + brightCyan: "#5EBDD9" + brightWhite: "#EEFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 232 + contrast: + fg: 83.5 + black: 0 + red: 8.8 + green: 7.7 + yellow: 55.1 + blue: 56.3 + magenta: 55.6 + cyan: 56.5 + white: 83.5 + brightBlack: 17 + brightRed: 51.3 + brightGreen: 56 + brightYellow: 55.1 + brightBlue: 56.3 + brightMagenta: 55.6 + brightCyan: 56.5 + brightWhite: 101.9 diff --git a/themes/niko-s-techlabs-dark.yaml b/themes/niko-s-techlabs-dark.yaml new file mode 100644 index 00000000..5e313a69 --- /dev/null +++ b/themes/niko-s-techlabs-dark.yaml @@ -0,0 +1,49 @@ +name: "Niko's TechLabs Dark" +source: + marketplace_id: "ntl.ntl-theme" + version: "0.0.1" + installs: 40 + author: "Niko's TechLabs" + repo: "https://gitlab.com/nikos-techlabs/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ntl.ntl-theme" +colors: + bg: "#171717" + fg: "#E8E8E8" + black: "#000000" + red: "#DB0000" + green: "#00A707" + yellow: "#DBB700" + blue: "#0049DB" + magenta: "#DB00DB" + cyan: "#00B7DB" + white: "#E8E8E8" + brightBlack: "#252525" + brightRed: "#FF4F4F" + brightGreen: "#8FFF94" + brightYellow: "#FFEC8F" + brightBlue: "#8FB4FF" + brightMagenta: "#FF8FFF" + brightCyan: "#8FECFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91.9 + black: 0 + red: 27.7 + green: 42.2 + yellow: 64.3 + blue: 17.7 + magenta: 34.6 + cyan: 54.7 + white: 91.9 + brightBlack: 0 + brightRed: 42.3 + brightGreen: 91.2 + brightYellow: 94 + brightBlue: 60.9 + brightMagenta: 63.6 + brightCyan: 85.8 + brightWhite: 106.9 diff --git a/themes/nikso-vscode-theme-dark.yaml b/themes/nikso-vscode-theme-dark.yaml new file mode 100644 index 00000000..69f6f88c --- /dev/null +++ b/themes/nikso-vscode-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "nikso-vscode-theme-dark" +source: + marketplace_id: "thenikso.nikso-vscode-theme" + version: "2.0.0" + installs: 96 + author: "thenikso" + repo: "https://github.com/thenikso/nikso-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thenikso.nikso-vscode-theme" +colors: + bg: "#282C33" + fg: "#D1D7E0" + black: "#414141" + red: "#D73A49" + green: "#90D259" + yellow: "#F7C400" + blue: "#005CC5" + magenta: "#FF73FD" + cyan: "#0BC7D7" + white: "#BFBFBF" + brightBlack: "#989898" + brightRed: "#FA6F71" + brightGreen: "#35D61C" + brightYellow: "#FFCA39" + brightBlue: "#1C23D6" + brightMagenta: "#FF00FF" + brightCyan: "#3CD7E7" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 77.8 + black: 0 + red: 27 + green: 64.6 + yellow: 70.8 + blue: 17.2 + magenta: 53.2 + cyan: 58.5 + white: 63.8 + brightBlack: 42.5 + brightRed: 44.9 + brightGreen: 61.5 + brightYellow: 74.7 + brightBlue: 8.5 + brightMagenta: 42 + brightCyan: 67.3 + brightWhite: 83.7 diff --git a/themes/nil-ui.yaml b/themes/nil-ui.yaml new file mode 100644 index 00000000..36d14e7a --- /dev/null +++ b/themes/nil-ui.yaml @@ -0,0 +1,49 @@ +name: "Nil UI" +source: + marketplace_id: "Nitrino.nil-ui" + version: "0.2.0" + installs: 556 + author: "Petr Stepchenko" + repo: "https://github.com/Nitrino/vscode-theme-nil-ui" + url: "https://marketplace.visualstudio.com/items?itemName=Nitrino.nil-ui" +colors: + bg: "#262A32" + fg: "#B5BDCA" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 62.7 + black: 0 + red: 39.3 + green: 59.5 + yellow: 67.8 + blue: 51.9 + magenta: 42.3 + cyan: 51.8 + white: 80.2 + brightBlack: 32.7 + brightRed: 35.7 + brightGreen: 59.5 + brightYellow: 67.8 + brightBlue: 38.7 + brightMagenta: 9.9 + brightCyan: 51.8 + brightWhite: 80.2 diff --git a/themes/nimbus-mint-light.yaml b/themes/nimbus-mint-light.yaml new file mode 100644 index 00000000..9a4df363 --- /dev/null +++ b/themes/nimbus-mint-light.yaml @@ -0,0 +1,49 @@ +name: "Nimbus Mint Light" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#F5F8FA" + fg: "#2D3748" + black: "#2D3748" + red: "#DC2626" + green: "#16A349" + yellow: "#B45309" + blue: "#0072C6" + magenta: "#A31DB1" + cyan: "#00A3A3" + white: "#E5E9F0" + brightBlack: "#718096" + brightRed: "#E03E3E" + brightGreen: "#26A769" + brightYellow: "#D97706" + brightBlue: "#1A85FF" + brightMagenta: "#C838C6" + brightCyan: "#0F9F9F" + brightWhite: "#F5F8FA" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 93 + black: 93 + red: 67.1 + green: 55.3 + yellow: 69.6 + blue: 69.2 + magenta: 75 + cyan: 52.9 + white: 0 + brightBlack: 63 + brightRed: 63.6 + brightGreen: 52.8 + brightYellow: 54 + brightBlue: 58.4 + brightMagenta: 64.4 + brightCyan: 54.7 + brightWhite: 0 diff --git a/themes/ninjadark.yaml b/themes/ninjadark.yaml new file mode 100644 index 00000000..7837aa5a --- /dev/null +++ b/themes/ninjadark.yaml @@ -0,0 +1,49 @@ +name: "NinjaDark" +source: + marketplace_id: "Manikandan.ninjadark" + version: "0.2.0" + installs: 469 + author: "Manikandan" + repo: "https://github.com/mani-cmd/ninjadark" + url: "https://marketplace.visualstudio.com/items?itemName=Manikandan.ninjadark" +colors: + bg: "#171728" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#00C978" + yellow: "#BABA00" + blue: "#066BD9" + magenta: "#BC3FBC" + cyan: "#00AFD9" + white: "#BABABA" + brightBlack: "#6B6B6B" + brightRed: "#F14C4C" + brightGreen: "#00FF98" + brightYellow: "#FFFF00" + brightBlue: "#0079FF" + brightMagenta: "#D670D6" + brightCyan: "#00CDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 283 + contrast: + fg: 106.7 + black: 0 + red: 26.5 + green: 58.8 + yellow: 60.7 + blue: 26.1 + magenta: 29.6 + cyan: 50.9 + white: 64 + brightBlack: 24 + brightRed: 38.4 + brightGreen: 86.9 + brightYellow: 101.5 + brightBlue: 33.6 + brightMagenta: 45.2 + brightCyan: 66.5 + brightWhite: 106.7 diff --git a/themes/nitrous-theme-dark.yaml b/themes/nitrous-theme-dark.yaml new file mode 100644 index 00000000..dfea49c6 --- /dev/null +++ b/themes/nitrous-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "NiTROUS Theme (Dark)" +source: + marketplace_id: "nitrous-cloud.nitrous-vscode-color-theme" + version: "1.0.5" + installs: 1742 + author: "NiTROUS Cloud" + repo: "https://github.com/scar45/nitrous-vscode-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nitrous-cloud.nitrous-vscode-color-theme" +colors: + bg: "#091833" + fg: "#B0B0F7" + black: "#131330" + red: "#E23BD1" + green: "#75FF7A" + yellow: "#3F2208" + blue: "#57A6FF" + magenta: "#6060EE" + cyan: "#33FFDD" + white: "#F0F0F0" + brightBlack: "#1D1D47" + brightRed: "#CB35BC" + brightGreen: "#32EF38" + brightYellow: "#D66400" + brightBlue: "#2D90FF" + brightMagenta: "#4D4DBE" + brightCyan: "#1DC5A9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 261 + contrast: + fg: 61.9 + black: 0 + red: 37.8 + green: 88.8 + yellow: 0 + blue: 51.4 + magenta: 27.8 + cyan: 89.6 + white: 96.7 + brightBlack: 0 + brightRed: 31.2 + brightGreen: 77.2 + brightYellow: 36.6 + brightBlue: 41.7 + brightMagenta: 17.8 + brightCyan: 58.5 + brightWhite: 106.6 diff --git a/themes/nivtheme.yaml b/themes/nivtheme.yaml new file mode 100644 index 00000000..98d9873f --- /dev/null +++ b/themes/nivtheme.yaml @@ -0,0 +1,49 @@ +name: "nivtheme" +source: + marketplace_id: "nivwer.nivthemes" + version: "0.0.1" + installs: 16 + author: "nivwer" + repo: "https://github.com/nivwer/nivthemes" + url: "https://marketplace.visualstudio.com/items?itemName=nivwer.nivthemes" +colors: + bg: "#000000" + fg: "#A3A2B3" + black: "#A3A2B3" + red: "#A3A2B3" + green: "#A3A2B3" + yellow: "#A3A2B3" + blue: "#A3A2B3" + magenta: "#A3A2B3" + cyan: "#A3A2B3" + white: "#A3A2B3" + brightBlack: "#A3A2B3" + brightRed: "#A3A2B3" + brightGreen: "#A3A2B3" + brightYellow: "#A3A2B3" + brightBlue: "#A3A2B3" + brightMagenta: "#A3A2B3" + brightCyan: "#A3A2B3" + brightWhite: "#A3A2B3" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 52.7 + black: 52.7 + red: 52.7 + green: 52.7 + yellow: 52.7 + blue: 52.7 + magenta: 52.7 + cyan: 52.7 + white: 52.7 + brightBlack: 52.7 + brightRed: 52.7 + brightGreen: 52.7 + brightYellow: 52.7 + brightBlue: 52.7 + brightMagenta: 52.7 + brightCyan: 52.7 + brightWhite: 52.7 diff --git a/themes/nix.yaml b/themes/nix.yaml new file mode 100644 index 00000000..4e0fe683 --- /dev/null +++ b/themes/nix.yaml @@ -0,0 +1,49 @@ +name: "Nix" +source: + marketplace_id: "alvarosannas.nix" + version: "1.4.8" + installs: 2949 + author: "Alvaro Santana" + repo: "https://github.com/alvarosannas/nix" + url: "https://marketplace.visualstudio.com/items?itemName=alvarosannas.nix" +colors: + bg: "#1A1A1A" + fg: "#F8F8F2" + black: "#1A1A1A" + red: "#F24B78" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#30BCED" + magenta: "#A978FF" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#1A1A1A" + brightRed: "#F24B78" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#30BCED" + brightMagenta: "#A978FF" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 101.6 + black: 0 + red: 39.3 + green: 84.5 + yellow: 98.2 + blue: 58 + magenta: 43 + cyan: 83.6 + white: 101.6 + brightBlack: 0 + brightRed: 39.3 + brightGreen: 84.5 + brightYellow: 98.2 + brightBlue: 58 + brightMagenta: 43 + brightCyan: 83.6 + brightWhite: 101.6 diff --git a/themes/njord.yaml b/themes/njord.yaml new file mode 100644 index 00000000..7c78663e --- /dev/null +++ b/themes/njord.yaml @@ -0,0 +1,49 @@ +name: "Njord" +source: + marketplace_id: "mefechoel.njord" + version: "0.0.1" + installs: 419 + author: "mefechoel" + repo: "https://github.com/mefechoel/njord" + url: "https://marketplace.visualstudio.com/items?itemName=mefechoel.njord" +colors: + bg: "#232731" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 83.1 + black: 0 + red: 30.7 + green: 59.4 + yellow: 74.1 + blue: 46.4 + magenta: 44.2 + cyan: 60.4 + white: 90.1 + brightBlack: 13.1 + brightRed: 30.7 + brightGreen: 59.4 + brightYellow: 74.1 + brightBlue: 46.4 + brightMagenta: 44.2 + brightCyan: 58.3 + brightWhite: 94 diff --git a/themes/nkalai-dark.yaml b/themes/nkalai-dark.yaml new file mode 100644 index 00000000..3bceac57 --- /dev/null +++ b/themes/nkalai-dark.yaml @@ -0,0 +1,49 @@ +name: "Nkalai Dark" +source: + marketplace_id: "nkalait.nkalai-theme" + version: "0.0.5" + installs: 33 + author: "Tsepo Nkalai" + repo: "https://github.com/nkalait/nkalai-vscode-colour-themes" + url: "https://marketplace.visualstudio.com/items?itemName=nkalait.nkalai-theme" +colors: + bg: "#1E2A30" + fg: "#E6E2D9" + black: "#2F353B" + red: "#E8A06D" + green: "#77B58D" + yellow: "#DDB06F" + blue: "#7A90AE" + magenta: "#A48EB5" + cyan: "#85B9C8" + white: "#E3DDD2" + brightBlack: "#555B63" + brightRed: "#F3B081" + brightGreen: "#A9D9C2" + brightYellow: "#E8C89C" + brightBlue: "#90A4C4" + brightMagenta: "#C4B0CF" + brightCyan: "#B3DCE9" + brightWhite: "#F3EEE2" +meta: + mode: "dark" + accent: "yellow" + hue: 230 + contrast: + fg: 85.8 + black: 0 + red: 56.2 + green: 51.5 + yellow: 60.3 + blue: 38.2 + magenta: 42.2 + cyan: 56.5 + white: 82.8 + brightBlack: 14.7 + brightRed: 64.3 + brightGreen: 73.6 + brightYellow: 72.6 + brightBlue: 48.8 + brightMagenta: 59.9 + brightCyan: 77.7 + brightWhite: 93.4 diff --git a/themes/nkalai-light.yaml b/themes/nkalai-light.yaml new file mode 100644 index 00000000..d2498d87 --- /dev/null +++ b/themes/nkalai-light.yaml @@ -0,0 +1,49 @@ +name: "Nkalai Light" +source: + marketplace_id: "nkalait.nkalai-theme" + version: "0.0.5" + installs: 33 + author: "Tsepo Nkalai" + repo: "https://github.com/nkalait/nkalai-vscode-colour-themes" + url: "https://marketplace.visualstudio.com/items?itemName=nkalait.nkalai-theme" +colors: + bg: "#E8E3D3" + fg: "#2F291F" + black: "#2A2219" + red: "#C87A55" + green: "#77B58D" + yellow: "#C39B56" + blue: "#4C4F63" + magenta: "#9D7694" + cyan: "#6EA2B5" + white: "#EFE5D4" + brightBlack: "#8B8073" + brightRed: "#DA8D68" + brightGreen: "#8BC0A7" + brightYellow: "#DAB478" + brightBlue: "#5F6580" + brightMagenta: "#B18CA9" + brightCyan: "#88B8CB" + brightWhite: "#F6F1E5" +meta: + mode: "light" + accent: "yellow" + hue: 93 + contrast: + fg: 84.7 + black: 86.1 + red: 43.6 + green: 30.5 + yellow: 33.8 + blue: 71.4 + magenta: 49.4 + cyan: 37.3 + white: 0 + brightBlack: 49.6 + brightRed: 34.5 + brightGreen: 23.6 + brightYellow: 20.9 + brightBlue: 62.2 + brightMagenta: 39 + brightCyan: 25.7 + brightWhite: 0 diff --git a/themes/nloo-theme.yaml b/themes/nloo-theme.yaml new file mode 100644 index 00000000..867f7137 --- /dev/null +++ b/themes/nloo-theme.yaml @@ -0,0 +1,49 @@ +name: "nloo-Theme" +source: + marketplace_id: "nloo.nlootheme" + version: "0.0.4" + installs: 188 + author: "nloo" + repo: "https://github.com/n-loo/nielstheme" + url: "https://marketplace.visualstudio.com/items?itemName=nloo.nlootheme" +colors: + bg: "#3B3947" + fg: "#EFEEE3" + black: "#5A4760" + red: "#FC8A8C" + green: "#A9D28C" + yellow: "#DDC375" + blue: "#96DCF7" + magenta: "#F4A4E1" + cyan: "#89D0A9" + white: "#EFEEE3" + brightBlack: "#BCA6B8" + brightRed: "#FC8A8C" + brightGreen: "#A9D28C" + brightYellow: "#DDC375" + brightBlue: "#96DCF7" + brightMagenta: "#F4A4E1" + brightCyan: "#89D0A9" + brightWhite: "#F4D2EE" +meta: + mode: "dark" + accent: "orange" + hue: 292 + contrast: + fg: 88.3 + black: 0 + red: 49.2 + green: 64.1 + yellow: 63.4 + blue: 71.3 + magenta: 59.3 + cyan: 61.2 + white: 88.3 + brightBlack: 49.4 + brightRed: 49.2 + brightGreen: 64.1 + brightYellow: 63.4 + brightBlue: 71.3 + brightMagenta: 59.3 + brightCyan: 61.2 + brightWhite: 77.3 diff --git a/themes/no-not-the-lava-it-burns-ahhh-fork.yaml b/themes/no-not-the-lava-it-burns-ahhh-fork.yaml new file mode 100644 index 00000000..2bbce12c --- /dev/null +++ b/themes/no-not-the-lava-it-burns-ahhh-fork.yaml @@ -0,0 +1,49 @@ +name: "no not the lava it burns ahhh - Fork" +source: + marketplace_id: "xynny.painfullight-theme" + version: "0.0.1" + installs: 417 + author: "xynny" + repo: "https://github.com/xynnylol/vsthemes" + url: "https://marketplace.visualstudio.com/items?itemName=xynny.painfullight-theme" +colors: + bg: "#411200" + fg: "#FFFFFF" + black: "#FF00B3" + red: "#FF0000" + green: "#046D45" + yellow: "#828200" + blue: "#1A5CA5" + magenta: "#FF00FF" + cyan: "#969B00" + white: "#055BFF" + brightBlack: "#059600" + brightRed: "#FF006C" + brightGreen: "#044F31" + brightYellow: "#929255" + brightBlue: "#174905" + brightMagenta: "#FF43FF" + brightCyan: "#002E03" + brightWhite: "#FF6C00" +meta: + mode: "dark" + accent: "pink" + hue: 41 + contrast: + fg: 105.1 + black: 38.6 + red: 34.8 + green: 17.8 + yellow: 31 + blue: 16.4 + magenta: 43.4 + cyan: 42.4 + white: 23.7 + brightBlack: 33.2 + brightRed: 35.9 + brightGreen: 7.6 + brightYellow: 39.2 + brightBlue: 0 + brightMagenta: 46.7 + brightCyan: 0 + brightWhite: 45.5 diff --git a/themes/no-pixie-blue-dark.yaml b/themes/no-pixie-blue-dark.yaml new file mode 100644 index 00000000..89b4a10f --- /dev/null +++ b/themes/no-pixie-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "No Pixie Blue Dark" +source: + marketplace_id: "no-pixie.nopixie-theme" + version: "2.1.0" + installs: 28 + author: "No Pixie" + repo: "https://github.com/nopixie/nopixie-theme" + url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" +colors: + bg: "#242B38" + fg: "#F0F5FA" + black: "#1A2028" + red: "#F65A5A" + green: "#5AC8C8" + yellow: "#50D8FF" + blue: "#5AA8E8" + magenta: "#4A7FB8" + cyan: "#4AC8C5" + white: "#D8E2EA" + brightBlack: "#6A7888" + brightRed: "#FF7B7B" + brightGreen: "#80D8D0" + brightYellow: "#4DD8FF" + brightBlue: "#78B8F8" + brightMagenta: "#7AB8E8" + brightCyan: "#5AE8E5" + brightWhite: "#A0E5F8" +meta: + mode: "dark" + accent: "orange" + hue: 263 + contrast: + fg: 96.9 + black: 0 + red: 39.3 + green: 60 + yellow: 69.9 + blue: 48 + magenta: 29 + cyan: 59.3 + white: 84.2 + brightBlack: 26.3 + brightRed: 49.3 + brightGreen: 69.9 + brightYellow: 69.8 + brightBlue: 57.4 + brightMagenta: 56.5 + brightCyan: 76.6 + brightWhite: 80.4 diff --git a/themes/no-pixie-blue-light.yaml b/themes/no-pixie-blue-light.yaml new file mode 100644 index 00000000..4be830ed --- /dev/null +++ b/themes/no-pixie-blue-light.yaml @@ -0,0 +1,49 @@ +name: "No Pixie Blue Light" +source: + marketplace_id: "no-pixie.nopixie-theme" + version: "2.1.0" + installs: 28 + author: "No Pixie" + repo: "https://github.com/nopixie/nopixie-theme" + url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" +colors: + bg: "#F8FAFE" + fg: "#2A3340" + black: "#2A3340" + red: "#B42A2A" + green: "#2A8A6A" + yellow: "#1A5F8F" + blue: "#2A5078" + magenta: "#2A5078" + cyan: "#1A7F7D" + white: "#B8CDD5" + brightBlack: "#6A7580" + brightRed: "#D44A4A" + brightGreen: "#3AAF8A" + brightYellow: "#1AA8CF" + brightBlue: "#4A7FB8" + brightMagenta: "#5AA8E8" + brightCyan: "#2AC8C5" + brightWhite: "#E0F0FF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.8 + black: 95.8 + red: 77.1 + green: 66 + yellow: 80.1 + blue: 85.5 + magenta: 85.5 + cyan: 69.8 + white: 25.7 + brightBlack: 69.6 + brightRed: 65.7 + brightGreen: 49.5 + brightYellow: 50 + brightBlue: 65.6 + brightMagenta: 46.8 + brightCyan: 36.8 + brightWhite: 0 diff --git a/themes/no-pixie-dark-high-contrast.yaml b/themes/no-pixie-dark-high-contrast.yaml new file mode 100644 index 00000000..f3f1e427 --- /dev/null +++ b/themes/no-pixie-dark-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "No Pixie Dark High Contrast" +source: + marketplace_id: "no-pixie.nopixie-theme" + version: "2.1.0" + installs: 28 + author: "No Pixie" + repo: "https://github.com/nopixie/nopixie-theme" + url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" +colors: + bg: "#101010" + fg: "#FFFFFF" + black: "#000000" + red: "#C00000" + green: "#00C000" + yellow: "#C0C000" + blue: "#4080FF" + magenta: "#C000C0" + cyan: "#00C0C0" + white: "#C0C0C0" + brightBlack: "#808080" + brightRed: "#FF4444" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#80C8FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 22.1 + green: 54.2 + yellow: 64.8 + blue: 37.6 + magenta: 27.8 + cyan: 57.9 + white: 68.2 + brightBlack: 34.3 + brightRed: 41.2 + brightGreen: 86.1 + brightYellow: 102.3 + brightBlue: 68.7 + brightMagenta: 45.8 + brightCyan: 91.7 + brightWhite: 107.4 diff --git a/themes/no-pixie-dark.yaml b/themes/no-pixie-dark.yaml new file mode 100644 index 00000000..571bfcbd --- /dev/null +++ b/themes/no-pixie-dark.yaml @@ -0,0 +1,49 @@ +name: "No Pixie Dark" +source: + marketplace_id: "no-pixie.nopixie-theme" + version: "2.1.0" + installs: 28 + author: "No Pixie" + repo: "https://github.com/nopixie/nopixie-theme" + url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" +colors: + bg: "#252A33" + fg: "#F0F3F8" + black: "#1A1F28" + red: "#F65A5A" + green: "#7BCF7B" + yellow: "#FFE050" + blue: "#7B9CC8" + magenta: "#7B5A78" + cyan: "#5AAFAD" + white: "#D8DDE5" + brightBlack: "#6A7080" + brightRed: "#FF7B7B" + brightGreen: "#A0D080" + brightYellow: "#FFD84D" + brightBlue: "#A0B8D8" + brightMagenta: "#A06BA0" + brightCyan: "#7BD1CF" + brightWhite: "#F8E5A0" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 96 + black: 0 + red: 39.5 + green: 62.7 + yellow: 84.8 + blue: 43.8 + magenta: 18.7 + cyan: 48 + white: 81.9 + brightBlack: 23.6 + brightRed: 49.5 + brightGreen: 66.3 + brightYellow: 81.2 + brightBlue: 59.1 + brightMagenta: 29.7 + brightCyan: 66.5 + brightWhite: 87.4 diff --git a/themes/no-pixie-light-high-contrast.yaml b/themes/no-pixie-light-high-contrast.yaml new file mode 100644 index 00000000..98aef6aa --- /dev/null +++ b/themes/no-pixie-light-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "No Pixie Light High Contrast" +source: + marketplace_id: "no-pixie.nopixie-theme" + version: "2.1.0" + installs: 28 + author: "No Pixie" + repo: "https://github.com/nopixie/nopixie-theme" + url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#C00000" + green: "#008000" + yellow: "#808000" + blue: "#0000C0" + magenta: "#800080" + cyan: "#008080" + white: "#C0C0C0" + brightBlack: "#808080" + brightRed: "#FF0000" + brightGreen: "#00C000" + brightYellow: "#C0C000" + brightBlue: "#0060FF" + brightMagenta: "#C000C0" + brightCyan: "#00C0C0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 79.3 + green: 74.6 + yellow: 68.8 + blue: 94 + magenta: 89.6 + cyan: 72.6 + white: 34 + brightBlack: 66.9 + brightRed: 64.1 + brightGreen: 47.4 + brightYellow: 37.2 + brightBlue: 74 + brightMagenta: 73.5 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/no-pixie-light.yaml b/themes/no-pixie-light.yaml new file mode 100644 index 00000000..b333e5ca --- /dev/null +++ b/themes/no-pixie-light.yaml @@ -0,0 +1,49 @@ +name: "No Pixie Light" +source: + marketplace_id: "no-pixie.nopixie-theme" + version: "2.1.0" + installs: 28 + author: "No Pixie" + repo: "https://github.com/nopixie/nopixie-theme" + url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" +colors: + bg: "#FFFFFF" + fg: "#2A2F38" + black: "#2A2F38" + red: "#B42A2A" + green: "#3A8A3A" + yellow: "#7B4A2C" + blue: "#3A4F6F" + magenta: "#7B4968" + cyan: "#1A6F6D" + white: "#B8BDC5" + brightBlack: "#6A6F78" + brightRed: "#D44A4A" + brightGreen: "#5AAF5A" + brightYellow: "#D4A03F" + brightBlue: "#5A7CA8" + brightMagenta: "#A066AD" + brightCyan: "#3A9F9D" + brightWhite: "#F8E5A0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.9 + black: 99.9 + red: 80.2 + green: 69.5 + yellow: 85.3 + blue: 88.6 + magenta: 84.1 + cyan: 79.3 + white: 35.9 + brightBlack: 74.9 + brightRed: 68.8 + brightGreen: 52.5 + brightYellow: 46.3 + brightBlue: 69.7 + brightMagenta: 68.8 + brightCyan: 58.5 + brightWhite: 12.7 diff --git a/themes/no-pixie-yellow-dark.yaml b/themes/no-pixie-yellow-dark.yaml new file mode 100644 index 00000000..f8445415 --- /dev/null +++ b/themes/no-pixie-yellow-dark.yaml @@ -0,0 +1,49 @@ +name: "No Pixie Yellow Dark" +source: + marketplace_id: "no-pixie.nopixie-theme" + version: "2.1.0" + installs: 28 + author: "No Pixie" + repo: "https://github.com/nopixie/nopixie-theme" + url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" +colors: + bg: "#352B23" + fg: "#F8F4E8" + black: "#2A2018" + red: "#F65A5A" + green: "#A8B878" + yellow: "#FFE680" + blue: "#8B8EC8" + magenta: "#735E7A" + cyan: "#7AB8B0" + white: "#E8DCCE" + brightBlack: "#7A6850" + brightRed: "#FF7B7B" + brightGreen: "#C8D898" + brightYellow: "#FFE8A0" + brightBlue: "#A8B0E8" + brightMagenta: "#A88EC8" + brightCyan: "#A8D8D0" + brightWhite: "#FFE680" +meta: + mode: "dark" + accent: "orange" + hue: 61 + contrast: + fg: 96.2 + black: 0 + red: 38.9 + green: 55.7 + yellow: 87.5 + blue: 39.5 + magenta: 18.3 + cyan: 53.3 + white: 82 + brightBlack: 20.7 + brightRed: 48.9 + brightGreen: 74.2 + brightYellow: 89.2 + brightBlue: 56.9 + brightMagenta: 42.8 + brightCyan: 72.7 + brightWhite: 87.5 diff --git a/themes/no-pixie-yellow-light.yaml b/themes/no-pixie-yellow-light.yaml new file mode 100644 index 00000000..dfc0a6a5 --- /dev/null +++ b/themes/no-pixie-yellow-light.yaml @@ -0,0 +1,49 @@ +name: "No Pixie Yellow Light" +source: + marketplace_id: "no-pixie.nopixie-theme" + version: "2.1.0" + installs: 28 + author: "No Pixie" + repo: "https://github.com/nopixie/nopixie-theme" + url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" +colors: + bg: "#FFFDF0" + fg: "#3A2F18" + black: "#5A4828" + red: "#D84040" + green: "#7A9850" + yellow: "#B8842A" + blue: "#6A7AB8" + magenta: "#8B74A0" + cyan: "#4A8880" + white: "#E8DCCE" + brightBlack: "#9A8860" + brightRed: "#F66060" + brightGreen: "#8AB860" + brightYellow: "#D8A030" + brightBlue: "#7A8AD8" + brightMagenta: "#9A74B8" + brightCyan: "#5AA8A0" + brightWhite: "#FFFEF8" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.9 + black: 88.5 + red: 68.1 + green: 58.4 + yellow: 58.6 + blue: 66.8 + magenta: 66.8 + cyan: 66.5 + white: 15.7 + brightBlack: 60.7 + brightRed: 55.7 + brightGreen: 43.9 + brightYellow: 44.4 + brightBlue: 58.3 + brightMagenta: 63.7 + brightCyan: 52 + brightWhite: 0 diff --git a/themes/noah-theme.yaml b/themes/noah-theme.yaml new file mode 100644 index 00000000..154f39f2 --- /dev/null +++ b/themes/noah-theme.yaml @@ -0,0 +1,49 @@ +name: "Noah Theme" +source: + marketplace_id: "johnnyghost.noah-theme" + version: "0.4.4" + installs: 2704 + author: "johnnyghost" + repo: "https://github.com/johnnyghost/vsc-noah-theme" + url: "https://marketplace.visualstudio.com/items?itemName=johnnyghost.noah-theme" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#0F0F14" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#0F0F14" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 59.3 + black: 0 + red: 49.4 + green: 45.8 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 32.1 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 45.8 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 59 diff --git a/themes/noctaliatheme.yaml b/themes/noctaliatheme.yaml new file mode 100644 index 00000000..1ac5ef17 --- /dev/null +++ b/themes/noctaliatheme.yaml @@ -0,0 +1,49 @@ +name: "NoctaliaTheme" +source: + marketplace_id: "Noctalia.noctaliatheme" + version: "0.0.5" + installs: 1304 + author: "Noctalia Team" + repo: "https://github.com/tuibird/noctalia-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Noctalia.noctaliatheme" +colors: + bg: "#070722" + fg: "#FFFFFF" + black: "#A79EAD" + red: "#FD4663" + green: "#A9AEFE" + yellow: "#000999" + blue: "#FFF59B" + magenta: "#9BFECE" + cyan: "#00994F" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#990018" + brightGreen: "#000999" + brightYellow: "#A9AEFE" + brightBlue: "#998A00" + brightMagenta: "#00994F" + brightCyan: "#9BFECE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 277 + contrast: + fg: 107.6 + black: 51.2 + red: 41.7 + green: 61.8 + yellow: 0 + blue: 99.3 + magenta: 94.1 + cyan: 37.5 + white: 107.6 + brightBlack: 107.6 + brightRed: 14.1 + brightGreen: 0 + brightYellow: 61.8 + brightBlue: 39 + brightMagenta: 37.5 + brightCyan: 94.1 + brightWhite: 107.6 diff --git a/themes/noctilux.yaml b/themes/noctilux.yaml new file mode 100644 index 00000000..e0bc1d88 --- /dev/null +++ b/themes/noctilux.yaml @@ -0,0 +1,49 @@ +name: "Noctilux" +source: + marketplace_id: "madgrid.noctilux-theme" + version: "0.0.1" + installs: 1964 + author: "madgrid" + repo: "https://github.com/madgrid/vscode-noctilux" + url: "https://marketplace.visualstudio.com/items?itemName=madgrid.noctilux-theme" +colors: + bg: "#0A0B0A" + fg: "#FFFFFF" + black: "#252525" + red: "#FF3333" + green: "#AAFFAA" + yellow: "#AAEECC" + blue: "#AACCFF" + magenta: "#CCAAFF" + cyan: "#CCAAFF" + white: "#858585" + brightBlack: "#454545" + brightRed: "#FF3333" + brightGreen: "#AAFFAA" + brightYellow: "#AAEECC" + brightBlue: "#AACCFF" + brightMagenta: "#CCAAFF" + brightCyan: "#CCAAFF" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.7 + black: 0 + red: 39.4 + green: 94.7 + yellow: 87.4 + blue: 74.3 + magenta: 64.8 + cyan: 64.8 + white: 37 + brightBlack: 10 + brightRed: 39.4 + brightGreen: 94.7 + brightYellow: 87.4 + brightBlue: 74.3 + brightMagenta: 64.8 + brightCyan: 64.8 + brightWhite: 92.8 diff --git a/themes/noctis-azureus.yaml b/themes/noctis-azureus.yaml new file mode 100644 index 00000000..df9705ce --- /dev/null +++ b/themes/noctis-azureus.yaml @@ -0,0 +1,49 @@ +name: "Noctis Azureus" +source: + marketplace_id: "liviuschera.noctis" + version: "10.43.3" + installs: 1344484 + author: "Liviu Schera" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" +colors: + bg: "#07273B" + fg: "#BECFDA" + black: "#28353E" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#AEC3D0" + brightBlack: "#475E6C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#BECFDA" +meta: + mode: "dark" + accent: "orange" + hue: 241 + contrast: + fg: 72.9 + black: 0 + red: 38.5 + green: 75 + yellow: 65 + blue: 50 + magenta: 43.6 + cyan: 68.5 + white: 65.5 + brightBlack: 15.5 + brightRed: 43.8 + brightGreen: 77.2 + brightYellow: 51.8 + brightBlue: 55.3 + brightMagenta: 56 + brightCyan: 71.9 + brightWhite: 72.9 diff --git a/themes/noctis-bordo.yaml b/themes/noctis-bordo.yaml new file mode 100644 index 00000000..99729e03 --- /dev/null +++ b/themes/noctis-bordo.yaml @@ -0,0 +1,49 @@ +name: "Noctis Bordo" +source: + marketplace_id: "liviuschera.noctis" + version: "10.43.3" + installs: 1344484 + author: "Liviu Schera" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" +colors: + bg: "#322A2D" + fg: "#CBBEC2" + black: "#47393E" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B9ACB0" + brightBlack: "#69545B" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#CBBEC2" +meta: + mode: "dark" + accent: "orange" + hue: 353 + contrast: + fg: 65 + black: 0 + red: 37.3 + green: 73.7 + yellow: 63.7 + blue: 48.7 + magenta: 42.4 + cyan: 67.3 + white: 54.8 + brightBlack: 13.6 + brightRed: 42.5 + brightGreen: 75.9 + brightYellow: 50.6 + brightBlue: 54 + brightMagenta: 54.7 + brightCyan: 70.6 + brightWhite: 65 diff --git a/themes/noctis-hibernus.yaml b/themes/noctis-hibernus.yaml new file mode 100644 index 00000000..3b04a0f3 --- /dev/null +++ b/themes/noctis-hibernus.yaml @@ -0,0 +1,49 @@ +name: "Noctis Hibernus" +source: + marketplace_id: "liviuschera.noctis" + version: "10.43.3" + installs: 1344484 + author: "Liviu Schera" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" +colors: + bg: "#F4F6F6" + fg: "#005661" + black: "#003B42" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#004D57" + brightRed: "#FF4000" + brightGreen: "#00D17A" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 82.8 + black: 92 + red: 59.7 + green: 46.7 + yellow: 38.5 + blue: 53.2 + magenta: 49.9 + cyan: 38.5 + white: 44.9 + brightBlack: 86 + brightRed: 55.3 + brightGreen: 32.8 + brightYellow: 39.8 + brightBlue: 46.5 + brightMagenta: 45.6 + brightCyan: 31.5 + brightWhite: 27.6 diff --git a/themes/noctis-high-contrast.yaml b/themes/noctis-high-contrast.yaml new file mode 100644 index 00000000..2e905ceb --- /dev/null +++ b/themes/noctis-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Noctis High Contrast" +source: + marketplace_id: "Kamen.noctis-high-contrast" + version: "10.39.1" + installs: 47794 + author: "Kamen" + repo: "https://github.com/KamenKolev/noctis-hc" + url: "https://marketplace.visualstudio.com/items?itemName=Kamen.noctis-high-contrast" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD0000" + green: "#00CD00" + yellow: "#CDCD00" + blue: "#0000FF" + magenta: "#CD00CD" + cyan: "#00CDCD" + white: "#E5E5E5" + brightBlack: "#7F7F7F" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#5C5CFF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 25.4 + green: 60.8 + yellow: 72.5 + blue: 16.2 + magenta: 31.7 + cyan: 64.9 + white: 91 + brightBlack: 34.3 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 29.4 + brightMagenta: 46.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/noctis-lilac.yaml b/themes/noctis-lilac.yaml new file mode 100644 index 00000000..8015890f --- /dev/null +++ b/themes/noctis-lilac.yaml @@ -0,0 +1,49 @@ +name: "Noctis Lilac" +source: + marketplace_id: "Ramly.my-clean-theme" + version: "0.0.1" + installs: 382 + author: "Ramly" + repo: "https://github.com/Ramly23/my-clean-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Ramly.my-clean-theme" +colors: + bg: "#F2F1F8" + fg: "#0C006B" + black: "#0C006B" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#0F0080" + brightRed: "#FF4000" + brightGreen: "#FFFFFF" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 94.6 + black: 94.6 + red: 57.5 + green: 44.5 + yellow: 36.2 + blue: 50.9 + magenta: 47.6 + cyan: 36.2 + white: 42.6 + brightBlack: 92.9 + brightRed: 53 + brightGreen: 0 + brightYellow: 37.5 + brightBlue: 44.2 + brightMagenta: 43.3 + brightCyan: 29.3 + brightWhite: 25.3 diff --git a/themes/noctis-lux-ansi-16.yaml b/themes/noctis-lux-ansi-16.yaml new file mode 100644 index 00000000..c465701e --- /dev/null +++ b/themes/noctis-lux-ansi-16.yaml @@ -0,0 +1,49 @@ +name: "Noctis Lux Ansi 16" +source: + marketplace_id: "ctenbrinke.ansi16" + version: "0.3.8" + installs: 824 + author: "chtenb" + repo: "https://github.com/chtenb/vscode-ansi16" + url: "https://marketplace.visualstudio.com/items?itemName=ctenbrinke.ansi16" +colors: + bg: "#FEF8EC" + fg: "#005661" + black: "#8CA6A6" + red: "#E64100" + green: "#00B368" + yellow: "#FA8900" + blue: "#0095A8" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#005661" + brightBlack: "#8CA6A6" + brightRed: "#E5164A" + brightGreen: "#00B368" + brightYellow: "#B3694D" + brightBlue: "#0094F0" + brightMagenta: "#FF5792" + brightCyan: "#00BDD6" + brightWhite: "#004D57" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 84.5 + black: 46.6 + red: 62.8 + green: 48.5 + yellow: 43.3 + blue: 58.9 + magenta: 51.6 + cyan: 40.2 + white: 84.5 + brightBlack: 46.6 + brightRed: 65.9 + brightGreen: 48.5 + brightYellow: 64.5 + brightBlue: 54.9 + brightMagenta: 51.6 + brightCyan: 40.2 + brightWhite: 87.7 diff --git a/themes/noctis-lux-dean-s-version.yaml b/themes/noctis-lux-dean-s-version.yaml new file mode 100644 index 00000000..d509395d --- /dev/null +++ b/themes/noctis-lux-dean-s-version.yaml @@ -0,0 +1,49 @@ +name: "Noctis Lux (Dean's version)" +source: + marketplace_id: "DeanRTaylor1.noctis-lux-medium" + version: "0.4.0" + installs: 1147 + author: "DeanRTaylor1" + repo: "https://github.com/DeanRTaylor1/noctis-lux-deans-version" + url: "https://marketplace.visualstudio.com/items?itemName=DeanRTaylor1.noctis-lux-medium" +colors: + bg: "#F6E5CB" + fg: "#005661" + black: "#003B42" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#004D57" + brightRed: "#FF4000" + brightGreen: "#00D17A" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: 79 + contrast: + fg: 74.3 + black: 83.5 + red: 51.2 + green: 38.2 + yellow: 30 + blue: 44.7 + magenta: 41.3 + cyan: 29.9 + white: 36.4 + brightBlack: 77.5 + brightRed: 46.8 + brightGreen: 24.3 + brightYellow: 31.3 + brightBlue: 38 + brightMagenta: 37.1 + brightCyan: 23 + brightWhite: 19.1 diff --git a/themes/noctis-lux.yaml b/themes/noctis-lux.yaml new file mode 100644 index 00000000..f8e0855d --- /dev/null +++ b/themes/noctis-lux.yaml @@ -0,0 +1,49 @@ +name: "Noctis Lux" +source: + marketplace_id: "liviuschera.noctis" + version: "10.43.3" + installs: 1344484 + author: "Liviu Schera" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" +colors: + bg: "#FEF8EC" + fg: "#005661" + black: "#003B42" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#004D57" + brightRed: "#FF4000" + brightGreen: "#00D17A" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 84.5 + black: 93.7 + red: 61.5 + green: 48.5 + yellow: 40.2 + blue: 54.9 + magenta: 51.6 + cyan: 40.2 + white: 46.6 + brightBlack: 87.7 + brightRed: 57 + brightGreen: 34.5 + brightYellow: 41.5 + brightBlue: 48.2 + brightMagenta: 47.3 + brightCyan: 33.3 + brightWhite: 29.3 diff --git a/themes/noctis-minimus.yaml b/themes/noctis-minimus.yaml new file mode 100644 index 00000000..26f6d83f --- /dev/null +++ b/themes/noctis-minimus.yaml @@ -0,0 +1,49 @@ +name: "Noctis Minimus" +source: + marketplace_id: "liviuschera.noctis" + version: "10.43.3" + installs: 1344484 + author: "Liviu Schera" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" +colors: + bg: "#1B2932" + fg: "#C5CDD3" + black: "#182A35" + red: "#C08872" + green: "#72C09F" + yellow: "#C8A984" + blue: "#6196B8" + magenta: "#C28097" + cyan: "#72B7C0" + white: "#C5CDD3" + brightBlack: "#425866" + brightRed: "#CA8468" + brightGreen: "#84C8AB" + brightYellow: "#D1AA7B" + brightBlue: "#68A4CA" + brightMagenta: "#C88DA2" + brightCyan: "#84C0C8" + brightWhite: "#C5D1D3" +meta: + mode: "dark" + accent: "orange" + hue: 237 + contrast: + fg: 72.2 + black: 0 + red: 41.9 + green: 56.7 + yellow: 55.1 + blue: 39.3 + magenta: 40.9 + cyan: 54.1 + white: 72.2 + brightBlack: 12.8 + brightRed: 42 + brightGreen: 62 + brightYellow: 56.6 + brightBlue: 46.1 + brightMagenta: 46.3 + brightCyan: 59.6 + brightWhite: 73.9 diff --git a/themes/noctis-obscuro.yaml b/themes/noctis-obscuro.yaml new file mode 100644 index 00000000..d5b42c46 --- /dev/null +++ b/themes/noctis-obscuro.yaml @@ -0,0 +1,49 @@ +name: "Noctis Obscuro" +source: + marketplace_id: "liviuschera.noctis" + version: "10.43.3" + installs: 1344484 + author: "Liviu Schera" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" +colors: + bg: "#031417" + fg: "#B2CACD" + black: "#324A4D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B2CACD" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "dark" + accent: "orange" + hue: 209 + contrast: + fg: 71.2 + black: 10 + red: 40.9 + green: 77.4 + yellow: 67.4 + blue: 52.4 + magenta: 46 + cyan: 70.9 + white: 71.2 + brightBlack: 21 + brightRed: 46.2 + brightGreen: 79.6 + brightYellow: 54.3 + brightBlue: 57.7 + brightMagenta: 58.4 + brightCyan: 74.3 + brightWhite: 77.7 diff --git a/themes/noctis-red-flow.yaml b/themes/noctis-red-flow.yaml new file mode 100644 index 00000000..2d02446b --- /dev/null +++ b/themes/noctis-red-flow.yaml @@ -0,0 +1,49 @@ +name: "Noctis Red Flow" +source: + marketplace_id: "doc-extentions.doctis" + version: "1.0.9" + installs: 4845 + author: "Doc" + repo: "https://github.com/doc-code-hub/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=doc-extentions.doctis" +colors: + bg: "#3D0613" + fg: "#CBBEC2" + black: "#47393E" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B9ACB0" + brightBlack: "#69545B" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#CBBEC2" +meta: + mode: "dark" + accent: "orange" + hue: 13 + contrast: + fg: 67.1 + black: 0 + red: 39.4 + green: 75.8 + yellow: 65.8 + blue: 50.8 + magenta: 44.4 + cyan: 69.3 + white: 56.9 + brightBlack: 15.7 + brightRed: 44.6 + brightGreen: 78 + brightYellow: 52.7 + brightBlue: 56.1 + brightMagenta: 56.8 + brightCyan: 72.7 + brightWhite: 67.1 diff --git a/themes/noctis-sereno.yaml b/themes/noctis-sereno.yaml new file mode 100644 index 00000000..40f19c9a --- /dev/null +++ b/themes/noctis-sereno.yaml @@ -0,0 +1,49 @@ +name: "Noctis Sereno" +source: + marketplace_id: "liviuschera.noctis" + version: "10.43.3" + installs: 1344484 + author: "Liviu Schera" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" +colors: + bg: "#062E32" + fg: "#B2CACD" + black: "#324A4D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B2CACD" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "dark" + accent: "orange" + hue: 205 + contrast: + fg: 68 + black: 0 + red: 37.7 + green: 74.1 + yellow: 64.1 + blue: 49.2 + magenta: 42.8 + cyan: 67.7 + white: 68 + brightBlack: 17.8 + brightRed: 42.9 + brightGreen: 76.3 + brightYellow: 51 + brightBlue: 54.4 + brightMagenta: 55.2 + brightCyan: 71 + brightWhite: 74.5 diff --git a/themes/noctis-uva.yaml b/themes/noctis-uva.yaml new file mode 100644 index 00000000..e2e78c27 --- /dev/null +++ b/themes/noctis-uva.yaml @@ -0,0 +1,49 @@ +name: "Noctis Uva" +source: + marketplace_id: "doc-extentions.doctis" + version: "1.0.9" + installs: 4845 + author: "Doc" + repo: "https://github.com/doc-code-hub/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=doc-extentions.doctis" +colors: + bg: "#181726" + fg: "#C5C2D6" + black: "#302F3D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B6B3CC" + brightBlack: "#504E65" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C5C2D6" +meta: + mode: "dark" + accent: "orange" + hue: 287 + contrast: + fg: 69.9 + black: 0 + red: 40.4 + green: 76.8 + yellow: 66.8 + blue: 51.8 + magenta: 45.4 + cyan: 70.3 + white: 61.5 + brightBlack: 13.2 + brightRed: 45.6 + brightGreen: 79 + brightYellow: 53.7 + brightBlue: 57.1 + brightMagenta: 57.8 + brightCyan: 73.7 + brightWhite: 69.9 diff --git a/themes/noctis-viola.yaml b/themes/noctis-viola.yaml new file mode 100644 index 00000000..d739f858 --- /dev/null +++ b/themes/noctis-viola.yaml @@ -0,0 +1,49 @@ +name: "Noctis Viola" +source: + marketplace_id: "doc-extentions.doctis" + version: "1.0.9" + installs: 4845 + author: "Doc" + repo: "https://github.com/doc-code-hub/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=doc-extentions.doctis" +colors: + bg: "#311D4A" + fg: "#CCBFD9" + black: "#362F3D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#BFAFCF" + brightBlack: "#594E65" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#CCBFD9" +meta: + mode: "dark" + accent: "orange" + hue: 302 + contrast: + fg: 67.4 + black: 0 + red: 38.1 + green: 74.6 + yellow: 64.6 + blue: 49.6 + magenta: 43.2 + cyan: 68.1 + white: 59 + brightBlack: 11.7 + brightRed: 43.3 + brightGreen: 76.8 + brightYellow: 51.4 + brightBlue: 54.9 + brightMagenta: 55.6 + brightCyan: 71.4 + brightWhite: 67.4 diff --git a/themes/noctis.yaml b/themes/noctis.yaml new file mode 100644 index 00000000..1d6afc9b --- /dev/null +++ b/themes/noctis.yaml @@ -0,0 +1,49 @@ +name: "Noctis" +source: + marketplace_id: "liviuschera.noctis" + version: "10.43.3" + installs: 1344484 + author: "Liviu Schera" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" +colors: + bg: "#052529" + fg: "#B2CACD" + black: "#324A4D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B2CACD" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "dark" + accent: "orange" + hue: 207 + contrast: + fg: 69.4 + black: 8.2 + red: 39.1 + green: 75.6 + yellow: 65.6 + blue: 50.6 + magenta: 44.2 + cyan: 69.1 + white: 69.4 + brightBlack: 19.2 + brightRed: 44.4 + brightGreen: 77.8 + brightYellow: 52.5 + brightBlue: 55.9 + brightMagenta: 56.6 + brightCyan: 72.5 + brightWhite: 75.9 diff --git a/themes/noctua-black-rose.yaml b/themes/noctua-black-rose.yaml new file mode 100644 index 00000000..01166e1e --- /dev/null +++ b/themes/noctua-black-rose.yaml @@ -0,0 +1,49 @@ +name: "Noctua Black Rose" +source: + marketplace_id: "Firstbober.noctua-theme" + version: "1.2.1" + installs: 1696 + author: "Firstbober" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Firstbober.noctua-theme" +colors: + bg: "#101010" + fg: "#AAAAAA" + black: "#191919" + red: "#B23E3E" + green: "#43B27C" + yellow: "#DDD3A2" + blue: "#357AB2" + magenta: "#9C38AF" + cyan: "#00C6CF" + white: "#E2E2E2" + brightBlack: "#3A3A3A" + brightRed: "#E82929" + brightGreen: "#47ED68" + brightYellow: "#FFD923" + brightBlue: "#62AAE5" + brightMagenta: "#D653EF" + brightCyan: "#02ECF7" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 55.8 + black: 0 + red: 23.5 + green: 50 + yellow: 79 + blue: 29.7 + magenta: 23 + cyan: 61.3 + white: 88.7 + brightBlack: 0 + brightRed: 32.7 + brightGreen: 78.1 + brightYellow: 84.7 + brightBlue: 52.6 + brightMagenta: 41.7 + brightCyan: 81.6 + brightWhite: 98.9 diff --git a/themes/noctua-dark-leaf.yaml b/themes/noctua-dark-leaf.yaml new file mode 100644 index 00000000..6a60c594 --- /dev/null +++ b/themes/noctua-dark-leaf.yaml @@ -0,0 +1,49 @@ +name: "Noctua Dark Leaf" +source: + marketplace_id: "Firstbober.noctua-theme" + version: "1.2.1" + installs: 1696 + author: "Firstbober" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Firstbober.noctua-theme" +colors: + bg: "#001010" + fg: "#AAAAAA" + black: "#191919" + red: "#B23E3E" + green: "#43B27C" + yellow: "#DDD3A2" + blue: "#357AB2" + magenta: "#9C38AF" + cyan: "#00C6CF" + white: "#E2E2E2" + brightBlack: "#3A3A3A" + brightRed: "#E82929" + brightGreen: "#47ED68" + brightYellow: "#FFD923" + brightBlue: "#62AAE5" + brightMagenta: "#D653EF" + brightCyan: "#02ECF7" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "pink" + hue: 195 + contrast: + fg: 55.9 + black: 0 + red: 23.5 + green: 50.1 + yellow: 79.1 + blue: 29.7 + magenta: 23.1 + cyan: 61.4 + white: 88.8 + brightBlack: 0 + brightRed: 32.8 + brightGreen: 78.1 + brightYellow: 84.8 + brightBlue: 52.7 + brightMagenta: 41.8 + brightCyan: 81.7 + brightWhite: 99 diff --git a/themes/noctua-grass.yaml b/themes/noctua-grass.yaml new file mode 100644 index 00000000..7284c3c0 --- /dev/null +++ b/themes/noctua-grass.yaml @@ -0,0 +1,49 @@ +name: "Noctua Grass" +source: + marketplace_id: "Firstbober.noctua-theme" + version: "1.2.1" + installs: 1696 + author: "Firstbober" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Firstbober.noctua-theme" +colors: + bg: "#101A10" + fg: "#AAAAAA" + black: "#191919" + red: "#B23E3E" + green: "#43B27C" + yellow: "#DDD3A2" + blue: "#357AB2" + magenta: "#9C38AF" + cyan: "#00C6CF" + white: "#E2E2E2" + brightBlack: "#3A3A3A" + brightRed: "#E82929" + brightGreen: "#47ED68" + brightYellow: "#FFD923" + brightBlue: "#62AAE5" + brightMagenta: "#D653EF" + brightCyan: "#02ECF7" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "pink" + hue: 145 + contrast: + fg: 55.2 + black: 0 + red: 22.8 + green: 49.4 + yellow: 78.3 + blue: 29 + magenta: 22.4 + cyan: 60.7 + white: 88 + brightBlack: 0 + brightRed: 32.1 + brightGreen: 77.4 + brightYellow: 84.1 + brightBlue: 52 + brightMagenta: 41 + brightCyan: 81 + brightWhite: 98.3 diff --git a/themes/noctua-hidden-sky.yaml b/themes/noctua-hidden-sky.yaml new file mode 100644 index 00000000..722718b4 --- /dev/null +++ b/themes/noctua-hidden-sky.yaml @@ -0,0 +1,49 @@ +name: "Noctua Hidden Sky" +source: + marketplace_id: "Firstbober.noctua-theme" + version: "1.2.1" + installs: 1696 + author: "Firstbober" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Firstbober.noctua-theme" +colors: + bg: "#10101E" + fg: "#AAAAAA" + black: "#191919" + red: "#B23E3E" + green: "#43B27C" + yellow: "#DDD3A2" + blue: "#357AB2" + magenta: "#9C38AF" + cyan: "#00C6CF" + white: "#E2E2E2" + brightBlack: "#3A3A3A" + brightRed: "#E82929" + brightGreen: "#47ED68" + brightYellow: "#FFD923" + brightBlue: "#62AAE5" + brightMagenta: "#D653EF" + brightCyan: "#02ECF7" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "pink" + hue: 283 + contrast: + fg: 55.7 + black: 0 + red: 23.3 + green: 49.9 + yellow: 78.9 + blue: 29.5 + magenta: 22.9 + cyan: 61.2 + white: 88.6 + brightBlack: 0 + brightRed: 32.6 + brightGreen: 77.9 + brightYellow: 84.6 + brightBlue: 52.5 + brightMagenta: 41.6 + brightCyan: 81.5 + brightWhite: 98.8 diff --git a/themes/nocturnal.yaml b/themes/nocturnal.yaml new file mode 100644 index 00000000..cf65756e --- /dev/null +++ b/themes/nocturnal.yaml @@ -0,0 +1,49 @@ +name: "Nocturnal" +source: + marketplace_id: "JaimeStill.nocturnal" + version: "0.0.2" + installs: 1005 + author: "JaimeStill" + repo: "https://github.com/JaimeStill/nocturnal" + url: "https://marketplace.visualstudio.com/items?itemName=JaimeStill.nocturnal" +colors: + bg: "#000000" + fg: "#F7F7F7" + black: "#424242" + red: "#E53935" + green: "#43A047" + yellow: "#FFC400" + blue: "#01579B" + magenta: "#B388FF" + cyan: "#00B8D4" + white: "#F7F7F7" + brightBlack: "#757575" + brightRed: "#EF5350" + brightGreen: "#00C853" + brightYellow: "#FFFF00" + brightBlue: "#0091EA" + brightMagenta: "#EA80FC" + brightCyan: "#00E5FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 102.6 + black: 9.1 + red: 34 + green: 41.6 + yellow: 76.3 + blue: 17 + magenta: 50.3 + cyan: 55.8 + white: 102.6 + brightBlack: 29.6 + brightRed: 40.3 + brightGreen: 58.9 + brightYellow: 102.7 + brightBlue: 41.3 + brightMagenta: 56.5 + brightCyan: 79 + brightWhite: 107.9 diff --git a/themes/nodr-cocoa.yaml b/themes/nodr-cocoa.yaml new file mode 100644 index 00000000..609f4dc7 --- /dev/null +++ b/themes/nodr-cocoa.yaml @@ -0,0 +1,49 @@ +name: "Nodr Cocoa" +source: + marketplace_id: "samuelbran.nodr" + version: "1.2.0" + installs: 2894 + author: "Samuel Bran" + repo: "https://github.com/samuelbran/Nodr" + url: "https://marketplace.visualstudio.com/items?itemName=samuelbran.nodr" +colors: + bg: "#262020" + fg: "#938686" + black: "#262020" + red: "#DF5D46" + green: "#74B686" + yellow: "#F6BF47" + blue: "#4499CD" + magenta: "#9957AA" + cyan: "#67CDCC" + white: "#938686" + brightBlack: "#5B4242" + brightRed: "#F08D49" + brightGreen: "#67CDCC" + brightYellow: "#F6BF47" + brightBlue: "#4499CD" + brightMagenta: "#9957AA" + brightCyan: "#67CDCC" + brightWhite: "#938686" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 36.7 + black: 0 + red: 36.3 + green: 52.7 + yellow: 70.8 + blue: 41.2 + magenta: 25.8 + cyan: 64.8 + white: 36.7 + brightBlack: 9 + brightRed: 52.1 + brightGreen: 64.8 + brightYellow: 70.8 + brightBlue: 41.2 + brightMagenta: 25.8 + brightCyan: 64.8 + brightWhite: 36.7 diff --git a/themes/nodr-plum.yaml b/themes/nodr-plum.yaml new file mode 100644 index 00000000..33f971ce --- /dev/null +++ b/themes/nodr-plum.yaml @@ -0,0 +1,49 @@ +name: "Nodr Plum" +source: + marketplace_id: "samuelbran.nodr" + version: "1.2.0" + installs: 2894 + author: "Samuel Bran" + repo: "https://github.com/samuelbran/Nodr" + url: "https://marketplace.visualstudio.com/items?itemName=samuelbran.nodr" +colors: + bg: "#2A2739" + fg: "#8A86A1" + black: "#2A2739" + red: "#DF5D46" + green: "#6FDF8E" + yellow: "#F6BF47" + blue: "#4499CD" + magenta: "#9957AA" + cyan: "#67CDCC" + white: "#8A86A1" + brightBlack: "#3D3A4A" + brightRed: "#F08D49" + brightGreen: "#67CDCC" + brightYellow: "#F6BF47" + brightBlue: "#4499CD" + brightMagenta: "#9957AA" + brightCyan: "#67CDCC" + brightWhite: "#8A86A1" +meta: + mode: "dark" + accent: "orange" + hue: 292 + contrast: + fg: 35.4 + black: 0 + red: 34.9 + green: 70.2 + yellow: 69.4 + blue: 39.8 + magenta: 24.4 + cyan: 63.4 + white: 35.4 + brightBlack: 0 + brightRed: 50.7 + brightGreen: 63.4 + brightYellow: 69.4 + brightBlue: 39.8 + brightMagenta: 24.4 + brightCyan: 63.4 + brightWhite: 35.4 diff --git a/themes/noel.yaml b/themes/noel.yaml new file mode 100644 index 00000000..a3932d1c --- /dev/null +++ b/themes/noel.yaml @@ -0,0 +1,49 @@ +name: "Noel" +source: + marketplace_id: "arzg.noel" + version: "2.1.0" + installs: 614 + author: "arzg" + repo: "https://github.com/arzg/noel" + url: "https://marketplace.visualstudio.com/items?itemName=arzg.noel" +colors: + bg: "#2A3235" + fg: "#DEEEF3" + black: "#2A3235" + red: "#DC9E8F" + green: "#8BB993" + yellow: "#E7BEA6" + blue: "#66B9D2" + magenta: "#EEB9C1" + cyan: "#B3DCE2" + white: "#DEEEF3" + brightBlack: "#526B6F" + brightRed: "#DC9E8F" + brightGreen: "#8BB993" + brightYellow: "#E7BEA6" + brightBlue: "#66B9D2" + brightMagenta: "#EEB9C1" + brightCyan: "#B3DCE2" + brightWhite: "#DEEEF3" +meta: + mode: "dark" + accent: "blue" + hue: 222 + contrast: + fg: 89.6 + black: 0 + red: 52.6 + green: 53.2 + yellow: 67 + blue: 53.2 + magenta: 67.1 + cyan: 75.6 + white: 89.6 + brightBlack: 18.1 + brightRed: 52.6 + brightGreen: 53.2 + brightYellow: 67 + brightBlue: 53.2 + brightMagenta: 67.1 + brightCyan: 75.6 + brightWhite: 89.6 diff --git a/themes/noir-dark.yaml b/themes/noir-dark.yaml new file mode 100644 index 00000000..d77407b0 --- /dev/null +++ b/themes/noir-dark.yaml @@ -0,0 +1,49 @@ +name: "Noir (Dark)" +source: + marketplace_id: "SectorZ.noir-vs-code-theme" + version: "1.5.0" + installs: 771 + author: "Sector Z" + repo: "https://github.com/SenpaiSumpie/Noir" + url: "https://marketplace.visualstudio.com/items?itemName=SectorZ.noir-vs-code-theme" +colors: + bg: "#191919" + fg: "#FFFFFF" + black: "#585858" + red: "#FF4444" + green: "#0FFFA3" + yellow: "#FFFF11" + blue: "#3896FF" + magenta: "#FF58FF" + cyan: "#15D1FF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF6262" + brightGreen: "#44FFB4" + brightYellow: "#FFFFAA" + brightBlue: "#58A7FF" + brightMagenta: "#FF87FF" + brightCyan: "#30D6FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.7 + black: 16.1 + red: 40.4 + green: 87.2 + yellow: 101.5 + blue: 44.2 + magenta: 51.1 + cyan: 68.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 45.8 + brightGreen: 88.5 + brightYellow: 103.5 + brightBlue: 51.9 + brightMagenta: 61.2 + brightCyan: 71 + brightWhite: 89.8 diff --git a/themes/noir-dracula.yaml b/themes/noir-dracula.yaml new file mode 100644 index 00000000..dfcbdb14 --- /dev/null +++ b/themes/noir-dracula.yaml @@ -0,0 +1,49 @@ +name: "Noir dracula" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13968 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" +colors: + bg: "#000000" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/noir-essence-dark-border.yaml b/themes/noir-essence-dark-border.yaml new file mode 100644 index 00000000..62870c97 --- /dev/null +++ b/themes/noir-essence-dark-border.yaml @@ -0,0 +1,49 @@ +name: "Noir Essence Dark Border" +source: + marketplace_id: "u1145h.u1145h-heme-ark" + version: "0.6.1" + installs: 1487 + author: "u1145h" + repo: "https://github.com/u1145h/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=u1145h.u1145h-heme-ark" +colors: + bg: "#111314" + fg: "#F7F3EA" + black: "#2B2D2D" + red: "#EA6962" + green: "#89B482" + yellow: "#E78A4E" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#A9B665" + white: "#F7F3EA" + brightBlack: "#434545" + brightRed: "#EA6962" + brightGreen: "#89B482" + brightYellow: "#E78A4E" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#A9B665" + brightWhite: "#F7F3EA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 99.5 + black: 0 + red: 43.3 + green: 55 + yellow: 51.2 + blue: 52.6 + magenta: 48.4 + cyan: 58.4 + white: 99.5 + brightBlack: 9.4 + brightRed: 43.3 + brightGreen: 55 + brightYellow: 51.2 + brightBlue: 52.6 + brightMagenta: 48.4 + brightCyan: 58.4 + brightWhite: 99.5 diff --git a/themes/noir-essence-light.yaml b/themes/noir-essence-light.yaml new file mode 100644 index 00000000..890ca5a7 --- /dev/null +++ b/themes/noir-essence-light.yaml @@ -0,0 +1,49 @@ +name: "Noir Essence Light" +source: + marketplace_id: "u1145h.u1145h-heme-ark" + version: "0.6.1" + installs: 1487 + author: "u1145h" + repo: "https://github.com/u1145h/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=u1145h.u1145h-heme-ark" +colors: + bg: "#F7F3EA" + fg: "#000000" + black: "#111314" + red: "#D15F59" + green: "#A9B665" + yellow: "#EADB62" + blue: "#699289" + magenta: "#C47D90" + cyan: "#81A97A" + white: "#C7C3BA" + brightBlack: "#666666" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#EADB62" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#B4B1AA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99 + black: 98.2 + red: 58.1 + green: 36.1 + yellow: 13 + blue: 55.1 + magenta: 51.3 + cyan: 44.7 + white: 25.2 + brightBlack: 71.7 + brightRed: 50.8 + brightGreen: 36.1 + brightYellow: 13 + brightBlue: 41.7 + brightMagenta: 45.9 + brightCyan: 39.4 + brightWhite: 35 diff --git a/themes/noir-light.yaml b/themes/noir-light.yaml new file mode 100644 index 00000000..c90cdbbe --- /dev/null +++ b/themes/noir-light.yaml @@ -0,0 +1,49 @@ +name: "Noir (Light)" +source: + marketplace_id: "SectorZ.noir-vs-code-theme" + version: "1.5.0" + installs: 771 + author: "Sector Z" + repo: "https://github.com/SenpaiSumpie/Noir" + url: "https://marketplace.visualstudio.com/items?itemName=SectorZ.noir-vs-code-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00B600" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 51.9 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/noir-outrun.yaml b/themes/noir-outrun.yaml new file mode 100644 index 00000000..fbc0bd43 --- /dev/null +++ b/themes/noir-outrun.yaml @@ -0,0 +1,49 @@ +name: "Noir Outrun" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13968 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" +colors: + bg: "#0B081F" + fg: "#F2F3F7" + black: "#283034" + red: "#FF2E97" + green: "#62A9CF" + yellow: "#FFD400" + blue: "#42C6FF" + magenta: "#FF2AFC" + cyan: "#42C6FF" + white: "#D9E0E9" + brightBlack: "#435056" + brightRed: "#FF2E97" + brightGreen: "#ADD0E5" + brightYellow: "#FFD400" + brightBlue: "#42C6FF" + brightMagenta: "#FF2AFC" + brightCyan: "#42C6FF" + brightWhite: "#F4F6F9" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 99.8 + black: 0 + red: 41.3 + green: 51.1 + yellow: 82.7 + blue: 65 + magenta: 46.8 + cyan: 65 + white: 87.1 + brightBlack: 13.2 + brightRed: 41.3 + brightGreen: 74.8 + brightYellow: 82.7 + brightBlue: 65 + brightMagenta: 46.8 + brightCyan: 65 + brightWhite: 101.6 diff --git a/themes/noir-owl.yaml b/themes/noir-owl.yaml new file mode 100644 index 00000000..54fae0cf --- /dev/null +++ b/themes/noir-owl.yaml @@ -0,0 +1,49 @@ +name: "Noir Owl" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13968 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" +colors: + bg: "#010C18" + fg: "#D6DEEB" + black: "#010C18" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 245 + contrast: + fg: 86 + black: 0 + red: 40.1 + green: 68 + yellow: 82.8 + blue: 56.7 + magenta: 54.5 + cyan: 60.5 + white: 107.6 + brightBlack: 16.3 + brightRed: 40.1 + brightGreen: 68 + brightYellow: 94.5 + brightBlue: 56.7 + brightMagenta: 54.5 + brightCyan: 74.7 + brightWhite: 107.6 diff --git a/themes/noir-poimandres-black.yaml b/themes/noir-poimandres-black.yaml new file mode 100644 index 00000000..516a957e --- /dev/null +++ b/themes/noir-poimandres-black.yaml @@ -0,0 +1,49 @@ +name: "Noir Poimandres Black" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13968 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" +colors: + bg: "#000000" + fg: "#A6ACCD" + black: "#000000" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 58.1 + black: 0 + red: 40.2 + green: 77.4 + yellow: 103 + blue: 79.3 + magenta: 55.9 + cyan: 79.3 + white: 107.9 + brightBlack: 58.1 + brightRed: 40.2 + brightGreen: 77.4 + brightYellow: 103 + brightBlue: 79.6 + brightMagenta: 55.9 + brightCyan: 79.6 + brightWhite: 107.9 diff --git a/themes/noir-poimandres-dark.yaml b/themes/noir-poimandres-dark.yaml new file mode 100644 index 00000000..603dc00f --- /dev/null +++ b/themes/noir-poimandres-dark.yaml @@ -0,0 +1,49 @@ +name: "Noir Poimandres Dark" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13968 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" +colors: + bg: "#12131B" + fg: "#A6ACCD" + black: "#12131B" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 279 + contrast: + fg: 57.4 + black: 0 + red: 39.5 + green: 76.7 + yellow: 102.3 + blue: 78.6 + magenta: 55.2 + cyan: 78.6 + white: 107.2 + brightBlack: 57.4 + brightRed: 39.5 + brightGreen: 76.7 + brightYellow: 102.3 + brightBlue: 78.9 + brightMagenta: 55.2 + brightCyan: 78.9 + brightWhite: 107.2 diff --git a/themes/noir-poimandres-darker.yaml b/themes/noir-poimandres-darker.yaml new file mode 100644 index 00000000..aea42190 --- /dev/null +++ b/themes/noir-poimandres-darker.yaml @@ -0,0 +1,49 @@ +name: "Noir Poimandres Darker" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13968 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" +colors: + bg: "#0F1017" + fg: "#A6ACCD" + black: "#0F1017" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 278 + contrast: + fg: 57.7 + black: 0 + red: 39.8 + green: 76.9 + yellow: 102.6 + blue: 78.8 + magenta: 55.4 + cyan: 78.8 + white: 107.4 + brightBlack: 57.7 + brightRed: 39.8 + brightGreen: 76.9 + brightYellow: 102.6 + brightBlue: 79.1 + brightMagenta: 55.4 + brightCyan: 79.1 + brightWhite: 107.4 diff --git a/themes/noir-poimandres.yaml b/themes/noir-poimandres.yaml new file mode 100644 index 00000000..c4e956a2 --- /dev/null +++ b/themes/noir-poimandres.yaml @@ -0,0 +1,49 @@ +name: "Noir Poimandres" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13968 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" +colors: + bg: "#1B1E28" + fg: "#A6ACCD" + black: "#1B1E28" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 272 + contrast: + fg: 56.3 + black: 0 + red: 38.3 + green: 75.5 + yellow: 101.1 + blue: 77.4 + magenta: 54 + cyan: 77.4 + white: 106 + brightBlack: 56.3 + brightRed: 38.3 + brightGreen: 75.5 + brightYellow: 101.1 + brightBlue: 77.7 + brightMagenta: 54 + brightCyan: 77.7 + brightWhite: 106 diff --git a/themes/noir-ros-pine-grey.yaml b/themes/noir-ros-pine-grey.yaml new file mode 100644 index 00000000..8f0a8488 --- /dev/null +++ b/themes/noir-ros-pine-grey.yaml @@ -0,0 +1,49 @@ +name: "Noir Rosé Pine Grey" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13968 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" +colors: + bg: "#090909" + fg: "#E0DEF4" + black: "#26233A" + red: "#EB6F92" + green: "#31748F" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#EBBCBA" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#31748F" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#EBBCBA" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 87.8 + black: 0 + red: 46.8 + green: 26 + yellow: 74.5 + blue: 72.2 + magenta: 61.2 + cyan: 72.7 + white: 87.8 + brightBlack: 42.1 + brightRed: 46.8 + brightGreen: 26 + brightYellow: 74.5 + brightBlue: 72.2 + brightMagenta: 61.2 + brightCyan: 72.7 + brightWhite: 87.8 diff --git a/themes/noir-ros-pine-moon-grey.yaml b/themes/noir-ros-pine-moon-grey.yaml new file mode 100644 index 00000000..830d1dc4 --- /dev/null +++ b/themes/noir-ros-pine-moon-grey.yaml @@ -0,0 +1,49 @@ +name: "Noir Rosé Pine Moon Grey" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13968 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" +colors: + bg: "#090909" + fg: "#E0DEF4" + black: "#393552" + red: "#EB6F92" + green: "#3E8FB0" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#EA9A97" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#3E8FB0" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#EA9A97" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 87.8 + black: 0 + red: 46.8 + green: 37.8 + yellow: 74.5 + blue: 72.2 + magenta: 61.2 + cyan: 59 + white: 87.8 + brightBlack: 42.1 + brightRed: 46.8 + brightGreen: 37.8 + brightYellow: 74.5 + brightBlue: 72.2 + brightMagenta: 61.2 + brightCyan: 59 + brightWhite: 87.8 diff --git a/themes/noir-tokyo-night-black.yaml b/themes/noir-tokyo-night-black.yaml new file mode 100644 index 00000000..b581f3c0 --- /dev/null +++ b/themes/noir-tokyo-night-black.yaml @@ -0,0 +1,49 @@ +name: "Noir Tokyo Night Black" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13968 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" +colors: + bg: "#000000" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 60.9 + black: 0 + red: 50.9 + green: 47.4 + yellow: 63.7 + blue: 52.7 + magenta: 56.6 + cyan: 72.1 + white: 33.6 + brightBlack: 0 + brightRed: 50.9 + brightGreen: 47.4 + brightYellow: 63.7 + brightBlue: 52.7 + brightMagenta: 56.6 + brightCyan: 72.1 + brightWhite: 60.5 diff --git a/themes/noir-tokyo-night.yaml b/themes/noir-tokyo-night.yaml new file mode 100644 index 00000000..35e917ee --- /dev/null +++ b/themes/noir-tokyo-night.yaml @@ -0,0 +1,49 @@ +name: "Noir Tokyo Night" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13968 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" +colors: + bg: "#08080B" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 60.8 + black: 0 + red: 50.8 + green: 47.3 + yellow: 63.7 + blue: 52.6 + magenta: 56.5 + cyan: 72 + white: 33.5 + brightBlack: 0 + brightRed: 50.8 + brightGreen: 47.3 + brightYellow: 63.7 + brightBlue: 52.6 + brightMagenta: 56.5 + brightCyan: 72 + brightWhite: 60.4 diff --git a/themes/noirex.yaml b/themes/noirex.yaml new file mode 100644 index 00000000..ad0e39d3 --- /dev/null +++ b/themes/noirex.yaml @@ -0,0 +1,49 @@ +name: "Noirex" +source: + marketplace_id: "anexlab.noirex" + version: "1.0.2" + installs: 53 + author: "anexlab" + repo: "https://github.com/anexlab/noirex" + url: "https://marketplace.visualstudio.com/items?itemName=anexlab.noirex" +colors: + bg: "#0F111A" + fg: "#8F93A2" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#C080CD" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#C080CD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 43.7 + black: 0 + red: 44.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 45.9 + white: 107.3 + brightBlack: 12 + brightRed: 44.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 45.9 + brightWhite: 107.3 diff --git a/themes/noirzen.yaml b/themes/noirzen.yaml new file mode 100644 index 00000000..0da0d689 --- /dev/null +++ b/themes/noirzen.yaml @@ -0,0 +1,49 @@ +name: "Noirzen" +source: + marketplace_id: "e108.noirzen-theme" + version: "1.6.0" + installs: 78 + author: "e108" + repo: "https://github.com/Q2x38b/noirzen" + url: "https://marketplace.visualstudio.com/items?itemName=e108.noirzen-theme" +colors: + bg: "#181818" + fg: "#D4D4D4" + black: "#181818" + red: "#E28D78" + green: "#B8D1A1" + yellow: "#E8C090" + blue: "#A1CCDD" + magenta: "#CEB0D3" + cyan: "#91B4D5" + white: "#D4D4D4" + brightBlack: "#545454" + brightRed: "#E28D78" + brightGreen: "#B8D1A1" + brightYellow: "#E8C090" + brightBlue: "#A1CCDD" + brightMagenta: "#CEB0D3" + brightCyan: "#91B4D5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.4 + black: 0 + red: 51.5 + green: 72.8 + yellow: 71.4 + blue: 70.6 + magenta: 63.9 + cyan: 58.5 + white: 79.4 + brightBlack: 14.6 + brightRed: 51.5 + brightGreen: 72.8 + brightYellow: 71.4 + brightBlue: 70.6 + brightMagenta: 63.9 + brightCyan: 58.5 + brightWhite: 106.8 diff --git a/themes/nokion-clean.yaml b/themes/nokion-clean.yaml new file mode 100644 index 00000000..491e7a4e --- /dev/null +++ b/themes/nokion-clean.yaml @@ -0,0 +1,49 @@ +name: "Nokion Clean" +source: + marketplace_id: "NokionThemes.nokion-clean" + version: "0.1.2" + installs: 293 + author: "Nokion" + repo: "https://github.com/Vbrand01/nokion-clean" + url: "https://marketplace.visualstudio.com/items?itemName=NokionThemes.nokion-clean" +colors: + bg: "#0A0A0A" + fg: "#E8E8E8" + black: "#0A0A0A" + red: "#FF6B9D" + green: "#5FB3A3" + yellow: "#FFD23F" + blue: "#00D4FF" + magenta: "#C77DFF" + cyan: "#5FB3A3" + white: "#E8E8E8" + brightBlack: "#0A0A0A" + brightRed: "#FF6B9D" + brightGreen: "#5FB3A3" + brightYellow: "#FFD23F" + brightBlue: "#00D4FF" + brightMagenta: "#C77DFF" + brightCyan: "#5FB3A3" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 92.8 + black: 0 + red: 50.4 + green: 53.2 + yellow: 82.2 + blue: 70.8 + magenta: 49.8 + cyan: 53.2 + white: 92.8 + brightBlack: 0 + brightRed: 50.4 + brightGreen: 53.2 + brightYellow: 82.2 + brightBlue: 70.8 + brightMagenta: 49.8 + brightCyan: 53.2 + brightWhite: 92.8 diff --git a/themes/noll-tta.yaml b/themes/noll-tta.yaml new file mode 100644 index 00000000..2174265d --- /dev/null +++ b/themes/noll-tta.yaml @@ -0,0 +1,49 @@ +name: "Nollåtta" +source: + marketplace_id: "shytikov.nollatta" + version: "1.3.2" + installs: 1127 + author: "Oleksii Shytikov" + repo: "https://github.com/shytikov/nollatta" + url: "https://marketplace.visualstudio.com/items?itemName=shytikov.nollatta" +colors: + bg: "#FFFFFF" + fg: "#232731" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.8 + black: 93.4 + red: 67.7 + green: 39.7 + yellow: 25.7 + blue: 52.2 + magenta: 54.3 + cyan: 38.7 + white: 10.7 + brightBlack: 85.6 + brightRed: 67.7 + brightGreen: 39.7 + brightYellow: 25.7 + brightBlue: 52.2 + brightMagenta: 54.3 + brightCyan: 40.7 + brightWhite: 0 diff --git a/themes/non-arbitrary-colors-theme.yaml b/themes/non-arbitrary-colors-theme.yaml new file mode 100644 index 00000000..44102c8f --- /dev/null +++ b/themes/non-arbitrary-colors-theme.yaml @@ -0,0 +1,49 @@ +name: "Non Arbitrary Colors Theme" +source: + marketplace_id: "michelnovus.non-arbitrary-colors-theme" + version: "1.1.1" + installs: 81 + author: "Michel Novus" + repo: "https://github.com/michelnovus/non-arbitrary-colors-theme" + url: "https://marketplace.visualstudio.com/items?itemName=michelnovus.non-arbitrary-colors-theme" +colors: + bg: "#121212" + fg: "#E0E0E0" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 25 + green: 53.4 + yellow: 58.1 + blue: 35.1 + magenta: 32.6 + cyan: 50.9 + white: 88.9 + brightBlack: 22.5 + brightRed: 37.7 + brightGreen: 77.4 + brightYellow: 84.3 + brightBlue: 50.3 + brightMagenta: 47 + brightCyan: 73.8 + brightWhite: 102.4 diff --git a/themes/noname-ui-next.yaml b/themes/noname-ui-next.yaml new file mode 100644 index 00000000..1a3669ff --- /dev/null +++ b/themes/noname-ui-next.yaml @@ -0,0 +1,49 @@ +name: "NoName UI Next" +source: + marketplace_id: "iseos.noname-ui" + version: "1.1.2" + installs: 1738 + author: "iseos" + repo: "https://github.com/iseos/noname-ui" + url: "https://marketplace.visualstudio.com/items?itemName=iseos.noname-ui" +colors: + bg: "#1F2226" + fg: "#ABB2BF" + black: "#21252B" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#FF0015" + brightGreen: "#6AFF00" + brightYellow: "#FFA600" + brightBlue: "#008CFF" + brightMagenta: "#C300FF" + brightCyan: "#00E1FF" + brightWhite: "#D2D6DB" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 58 + black: 0 + red: 40.7 + green: 60.9 + yellow: 69.2 + blue: 53.3 + magenta: 43.8 + cyan: 53.2 + white: 58 + brightBlack: 19.2 + brightRed: 35.2 + brightGreen: 86.2 + brightYellow: 62.7 + brightBlue: 38.8 + brightMagenta: 31.4 + brightCyan: 74.7 + brightWhite: 79 diff --git a/themes/noname-ui.yaml b/themes/noname-ui.yaml new file mode 100644 index 00000000..77ef2191 --- /dev/null +++ b/themes/noname-ui.yaml @@ -0,0 +1,49 @@ +name: "NoName UI" +source: + marketplace_id: "iseos.noname-ui" + version: "1.1.2" + installs: 1738 + author: "iseos" + repo: "https://github.com/iseos/noname-ui" + url: "https://marketplace.visualstudio.com/items?itemName=iseos.noname-ui" +colors: + bg: "#21252B" + fg: "#ABB2BF" + black: "#21252B" + red: "#C95F68" + green: "#5B9135" + yellow: "#A27A30" + blue: "#4F8BBB" + magenta: "#9753AC" + cyan: "#40929D" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#FF0015" + brightGreen: "#4AAB05" + brightYellow: "#AC7000" + brightBlue: "#008CFF" + brightMagenta: "#C300FF" + brightCyan: "#00AFC2" + brightWhite: "#D2D6DB" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + contrast: + fg: 57.5 + black: 0 + red: 32.4 + green: 33.6 + yellow: 32.4 + blue: 34.8 + magenta: 24.2 + cyan: 35.3 + white: 57.5 + brightBlack: 18.7 + brightRed: 34.7 + brightGreen: 43.4 + brightYellow: 30.7 + brightBlue: 38.3 + brightMagenta: 30.9 + brightCyan: 48 + brightWhite: 78.6 diff --git a/themes/noori.yaml b/themes/noori.yaml new file mode 100644 index 00000000..89593be2 --- /dev/null +++ b/themes/noori.yaml @@ -0,0 +1,49 @@ +name: "noori" +source: + marketplace_id: "indigo.noori" + version: "2.1.0" + installs: 866 + author: "indigo" + repo: "https://github.com/gabriela-tomazzi/birdTheme" + url: "https://marketplace.visualstudio.com/items?itemName=indigo.noori" +colors: + bg: "#131216" + fg: "#D7CDBA" + black: "#21232C" + red: "#F8524F" + green: "#87A4A0" + yellow: "#FFD089" + blue: "#843E42" + magenta: "#F8524F" + cyan: "#87A4A0" + white: "#E0D8C9" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#87A4A0" + brightYellow: "#FFD089" + brightBlue: "#843E42" + brightMagenta: "#F8524F" + brightCyan: "#87A4A0" + brightWhite: "#E0D8C9" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 76.2 + black: 0 + red: 41.6 + green: 49.3 + yellow: 82 + blue: 15.3 + magenta: 41.6 + cyan: 49.3 + white: 82.8 + brightBlack: 22.4 + brightRed: 39 + brightGreen: 49.3 + brightYellow: 82 + brightBlue: 15.3 + brightMagenta: 41.6 + brightCyan: 49.3 + brightWhite: 82.8 diff --git a/themes/noparanoia.yaml b/themes/noparanoia.yaml new file mode 100644 index 00000000..813228fc --- /dev/null +++ b/themes/noparanoia.yaml @@ -0,0 +1,49 @@ +name: "NoParanoia" +source: + marketplace_id: "NoParanoia.noparanoia" + version: "1.0.81" + installs: 1352 + author: "NoParanoia" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NoParanoia.noparanoia" +colors: + bg: "#282828" + fg: "#BBBBBB" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 62.3 + black: 0 + red: 41.2 + green: 81.7 + yellow: 76.5 + blue: 53.5 + magenta: 51.3 + cyan: 75.8 + white: 104.4 + brightBlack: 21.4 + brightRed: 41.2 + brightGreen: 81.7 + brightYellow: 76.5 + brightBlue: 53.5 + brightMagenta: 51.3 + brightCyan: 75.8 + brightWhite: 104.4 diff --git a/themes/nora-dark.yaml b/themes/nora-dark.yaml new file mode 100644 index 00000000..1af79d68 --- /dev/null +++ b/themes/nora-dark.yaml @@ -0,0 +1,49 @@ +name: "nora-dark" +source: + marketplace_id: "Sathmin-Januth.nora" + version: "1.0.3" + installs: 388 + author: "NoraCora" + repo: "https://github.com/Sathmin-Januth/NoraCora-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sathmin-Januth.nora" +colors: + bg: "#0B0E14" + fg: "#BFBDB6" + black: "#11151C" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 66.5 + black: 0 + red: 44.7 + green: 70.7 + yellow: 67.3 + blue: 61.3 + magenta: 61.3 + cyan: 78.6 + white: 72.4 + brightBlack: 23.6 + brightRed: 47.3 + brightGreen: 74 + brightYellow: 70.3 + brightBlue: 64 + brightMagenta: 64.1 + brightCyan: 81.6 + brightWhite: 107.6 diff --git a/themes/nora-light-bordered.yaml b/themes/nora-light-bordered.yaml new file mode 100644 index 00000000..d01d502a --- /dev/null +++ b/themes/nora-light-bordered.yaml @@ -0,0 +1,49 @@ +name: "nora-light-bordered" +source: + marketplace_id: "Sathmin-Januth.nora" + version: "1.0.3" + installs: 388 + author: "NoraCora" + repo: "https://github.com/Sathmin-Januth/NoraCora-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sathmin-Januth.nora" +colors: + bg: "#FCFCFC" + fg: "#5C6166" + black: "#000000" + red: "#EA6C6D" + green: "#6CBF43" + yellow: "#ECA944" + blue: "#3199E1" + magenta: "#9E75C7" + cyan: "#46BA94" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#F2AE49" + brightBlue: "#399EE6" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 79.4 + black: 104.2 + red: 55.1 + green: 43.1 + yellow: 37.5 + blue: 55.8 + magenta: 61.7 + cyan: 45.4 + white: 28.3 + brightBlack: 76.1 + brightRed: 52.6 + brightGreen: 46.7 + brightYellow: 34.7 + brightBlue: 53.3 + brightMagenta: 59.3 + brightCyan: 42.8 + brightWhite: 22.7 diff --git a/themes/nord-bunker.yaml b/themes/nord-bunker.yaml new file mode 100644 index 00000000..e8dbde95 --- /dev/null +++ b/themes/nord-bunker.yaml @@ -0,0 +1,49 @@ +name: "nord-bunker" +source: + marketplace_id: "sldobri.nord-5-stars" + version: "1.0.1" + installs: 10783 + author: "dobbbri" + repo: "https://github.com/sldobri/nord-5-stars" + url: "https://marketplace.visualstudio.com/items?itemName=sldobri.nord-5-stars" +colors: + bg: "#0B1015" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 86 + black: 8.7 + red: 33.6 + green: 62.3 + yellow: 77 + blue: 49.2 + magenta: 47.1 + cyan: 63.3 + white: 92.9 + brightBlack: 16 + brightRed: 33.6 + brightGreen: 62.3 + brightYellow: 77 + brightBlue: 49.2 + brightMagenta: 47.1 + brightCyan: 61.2 + brightWhite: 96.8 diff --git a/themes/nord-dark-contrast.yaml b/themes/nord-dark-contrast.yaml new file mode 100644 index 00000000..9000b0ff --- /dev/null +++ b/themes/nord-dark-contrast.yaml @@ -0,0 +1,49 @@ +name: "Nord Dark Contrast" +source: + marketplace_id: "simojanhunen.nord-dark-contrast" + version: "0.4.0" + installs: 8763 + author: "Simo Janhunen" + repo: "https://github.com/simojanhunen/nord-dark-contrast" + url: "https://marketplace.visualstudio.com/items?itemName=simojanhunen.nord-dark-contrast" +colors: + bg: "#212121" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 84.1 + black: 0 + red: 31.7 + green: 60.4 + yellow: 75.1 + blue: 47.4 + magenta: 45.2 + cyan: 61.4 + white: 91.1 + brightBlack: 14.1 + brightRed: 31.7 + brightGreen: 60.4 + brightYellow: 75.1 + brightBlue: 47.4 + brightMagenta: 45.2 + brightCyan: 59.3 + brightWhite: 95 diff --git a/themes/nord-dark-pro.yaml b/themes/nord-dark-pro.yaml new file mode 100644 index 00000000..09c40197 --- /dev/null +++ b/themes/nord-dark-pro.yaml @@ -0,0 +1,49 @@ +name: "Nord Dark Pro" +source: + marketplace_id: "Curve.nord-dark-pro" + version: "0.0.6" + installs: 13169 + author: "Curve" + repo: "https://github.com/Curve/Nord-Dark-Pro" + url: "https://marketplace.visualstudio.com/items?itemName=Curve.nord-dark-pro" +colors: + bg: "#232731" + fg: "#A4B2CA" + black: "#2E3440" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#8FBCBB" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#ECEFF4" + brightBlack: "#3B4252" + brightRed: "#C6737B" + brightGreen: "#B0C79C" + brightYellow: "#EED4A0" + brightBlue: "#9EC5C4" + brightMagenta: "#BE9DB8" + brightCyan: "#9AC9D7" + brightWhite: "#D8DEE9" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 56.9 + black: 0 + red: 30.7 + green: 59.4 + yellow: 74.1 + blue: 58.3 + magenta: 44.2 + cyan: 60.4 + white: 94 + brightBlack: 0 + brightRed: 37 + brightGreen: 65.1 + brightYellow: 79 + brightBlue: 63.9 + brightMagenta: 51.2 + brightCyan: 66.2 + brightWhite: 83.1 diff --git a/themes/nord-deep.yaml b/themes/nord-deep.yaml new file mode 100644 index 00000000..98de696e --- /dev/null +++ b/themes/nord-deep.yaml @@ -0,0 +1,49 @@ +name: "Nord Deep" +source: + marketplace_id: "marlosirapuan.nord-deep" + version: "0.1.625" + installs: 62713 + author: "Marlos Irapuan" + repo: "https://github.com/marlosirapuan/vscode-theme-nord-deep" + url: "https://marketplace.visualstudio.com/items?itemName=marlosirapuan.nord-deep" +colors: + bg: "#1D2129" + fg: "#D8DEE9" + black: "#292E39" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 84.1 + black: 0 + red: 31.7 + green: 60.4 + yellow: 75.1 + blue: 47.4 + magenta: 45.2 + cyan: 61.4 + white: 91.1 + brightBlack: 14.1 + brightRed: 31.7 + brightGreen: 60.4 + brightYellow: 75.1 + brightBlue: 47.4 + brightMagenta: 45.2 + brightCyan: 59.3 + brightWhite: 95 diff --git a/themes/nord-frost.yaml b/themes/nord-frost.yaml new file mode 100644 index 00000000..b58e5f00 --- /dev/null +++ b/themes/nord-frost.yaml @@ -0,0 +1,49 @@ +name: "Nord Frost" +source: + marketplace_id: "AgraeonLabs.dev-themes" + version: "0.1.0" + installs: 283 + author: "Agraeon Labs" + repo: "https://github.com/adiagcodelance/VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" +colors: + bg: "#2E3440" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#3B4252" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#E5E9F0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 80.3 + black: 0 + red: 27.9 + green: 56.6 + yellow: 71.3 + blue: 43.6 + magenta: 41.4 + cyan: 57.6 + white: 87.3 + brightBlack: 0 + brightRed: 27.9 + brightGreen: 56.6 + brightYellow: 71.3 + brightBlue: 43.6 + brightMagenta: 41.4 + brightCyan: 57.6 + brightWhite: 87.3 diff --git a/themes/nord-jujoco.yaml b/themes/nord-jujoco.yaml new file mode 100644 index 00000000..fa35449e --- /dev/null +++ b/themes/nord-jujoco.yaml @@ -0,0 +1,49 @@ +name: "Nord Jujoco" +source: + marketplace_id: "Jujoco.nord-jujoco" + version: "1.4.1" + installs: 310 + author: "Jujoco" + repo: "https://github.com/jujoco/nord-jujoco-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Jujoco.nord-jujoco" +colors: + bg: "#191D24" + fg: "#E8E8E9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#E8D892" + blue: "#90B3CB" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#E8D892" + brightBlue: "#90B3CB" + brightMagenta: "#B48EAD" + brightCyan: "#6ECFBE" + brightWhite: "#E8E8E9" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 91.3 + black: 7.4 + red: 32.3 + green: 61 + yellow: 81 + blue: 57 + magenta: 45.8 + cyan: 62 + white: 91.7 + brightBlack: 14.7 + brightRed: 32.3 + brightGreen: 61 + brightYellow: 81 + brightBlue: 57 + brightMagenta: 45.8 + brightCyan: 66.1 + brightWhite: 91.3 diff --git a/themes/nord-midnight.yaml b/themes/nord-midnight.yaml new file mode 100644 index 00000000..ffd5bcfd --- /dev/null +++ b/themes/nord-midnight.yaml @@ -0,0 +1,49 @@ +name: "Nord Midnight" +source: + marketplace_id: "adorabilis.nord-midnight" + version: "0.0.1" + installs: 4986 + author: "adorabilis" + repo: "https://github.com/adorabilis/nord-midnight-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=adorabilis.nord-midnight" +colors: + bg: "#1A1D23" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 84.7 + black: 7.4 + red: 32.3 + green: 61 + yellow: 75.7 + blue: 48 + magenta: 45.8 + cyan: 62 + white: 91.7 + brightBlack: 14.7 + brightRed: 32.3 + brightGreen: 61 + brightYellow: 75.7 + brightBlue: 48 + brightMagenta: 45.8 + brightCyan: 59.9 + brightWhite: 95.5 diff --git a/themes/nord-native.yaml b/themes/nord-native.yaml new file mode 100644 index 00000000..1b87e215 --- /dev/null +++ b/themes/nord-native.yaml @@ -0,0 +1,49 @@ +name: "Nord Native" +source: + marketplace_id: "divanvisagie.nord-native-theme" + version: "0.0.7" + installs: 9775 + author: "Divan Visagie" + repo: "git+https://github.com/divanvisagie/nord-native" + url: "https://marketplace.visualstudio.com/items?itemName=divanvisagie.nord-native-theme" +colors: + bg: "#1B1B1B" + fg: "#D8D8D8" + black: "#2B2B2B" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#555555" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECECEC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81.5 + black: 0 + red: 32.5 + green: 61.2 + yellow: 75.9 + blue: 48.2 + magenta: 46 + cyan: 62.2 + white: 91.9 + brightBlack: 14.7 + brightRed: 32.5 + brightGreen: 61.2 + brightYellow: 75.9 + brightBlue: 48.2 + brightMagenta: 46 + brightCyan: 60.1 + brightWhite: 94 diff --git a/themes/nord-operator-theme.yaml b/themes/nord-operator-theme.yaml new file mode 100644 index 00000000..975253fe --- /dev/null +++ b/themes/nord-operator-theme.yaml @@ -0,0 +1,49 @@ +name: "Nord Operator Theme" +source: + marketplace_id: "tomByrer.nord-city-theme" + version: "1.2.3" + installs: 5910 + author: "tom byrer" + repo: "https://github.com/tomByrer/nord-city-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tomByrer.nord-city-theme" +colors: + bg: "#0B0D10" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.1 + black: 8.9 + red: 33.7 + green: 62.4 + yellow: 77.1 + blue: 49.4 + magenta: 47.2 + cyan: 63.4 + white: 93.1 + brightBlack: 16.1 + brightRed: 33.7 + brightGreen: 62.4 + brightYellow: 77.1 + brightBlue: 49.4 + brightMagenta: 47.2 + brightCyan: 61.3 + brightWhite: 97 diff --git a/themes/nord-palette.yaml b/themes/nord-palette.yaml new file mode 100644 index 00000000..7d56f519 --- /dev/null +++ b/themes/nord-palette.yaml @@ -0,0 +1,49 @@ +name: "Nord Palette" +source: + marketplace_id: "Avetis.nord-palette" + version: "0.1.0" + installs: 27386 + author: "Avetis" + repo: "https://github.com/AvetisDN/nord-palette" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.nord-palette" +colors: + bg: "#323843" + fg: "#E5E9F0" + black: "#000000" + red: "#BF414A" + green: "#53AE4C" + yellow: "#CBAB5B" + blue: "#4E519C" + magenta: "#B45EAD" + cyan: "#49B8DB" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#BF666F" + brightGreen: "#73BE6C" + brightYellow: "#EBCB8B" + brightBlue: "#5E81AC" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 263 + contrast: + fg: 86.1 + black: 0 + red: 19.9 + green: 41.2 + yellow: 51.6 + blue: 10.5 + magenta: 26.8 + cyan: 50 + white: 83.8 + brightBlack: 15.8 + brightRed: 28.1 + brightGreen: 50.6 + brightYellow: 70.2 + brightBlue: 27 + brightMagenta: 40.3 + brightCyan: 56.5 + brightWhite: 83.8 diff --git a/themes/nord-zero.yaml b/themes/nord-zero.yaml new file mode 100644 index 00000000..b2744f56 --- /dev/null +++ b/themes/nord-zero.yaml @@ -0,0 +1,49 @@ +name: "Nord Zero" +source: + marketplace_id: "Behrami.nord-zero" + version: "0.2.6" + installs: 764 + author: "Behrami" + repo: "https://github.com/QendrimBehrami/nord-zero" + url: "https://marketplace.visualstudio.com/items?itemName=Behrami.nord-zero" +colors: + bg: "#151820" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 269 + contrast: + fg: 85.2 + black: 8 + red: 32.8 + green: 61.5 + yellow: 76.3 + blue: 48.5 + magenta: 46.4 + cyan: 62.5 + white: 92.2 + brightBlack: 15.3 + brightRed: 32.8 + brightGreen: 61.5 + brightYellow: 76.3 + brightBlue: 48.5 + brightMagenta: 46.4 + brightCyan: 60.4 + brightWhite: 96.1 diff --git a/themes/nord.yaml b/themes/nord.yaml new file mode 100644 index 00000000..db9116b6 --- /dev/null +++ b/themes/nord.yaml @@ -0,0 +1,49 @@ +name: "Nord" +source: + marketplace_id: "swashata.beautiful-ui" + version: "1.7.0" + installs: 121085 + author: "swashata" + repo: "https://github.com/swashata/vscode-beautiful-ui" + url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" +colors: + bg: "#2F3541" + fg: "#D8DEE9" + black: "#000000" + red: "#D81E00" + green: "#5EA702" + yellow: "#CFAE00" + blue: "#427AB3" + magenta: "#89658E" + cyan: "#00A7AA" + white: "#DBDED8" + brightBlack: "#686A66" + brightRed: "#F54235" + brightGreen: "#99E343" + brightYellow: "#FDEB61" + brightBlue: "#84B0D8" + brightMagenta: "#BC94B7" + brightCyan: "#37E6E8" + brightWhite: "#F1F1F0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 80 + black: 0 + red: 22.2 + green: 39.1 + yellow: 53.6 + blue: 24.3 + magenta: 21.7 + cyan: 40 + white: 79.6 + brightBlack: 18.1 + brightRed: 32.5 + brightGreen: 71.1 + brightYellow: 87.1 + brightBlue: 50.7 + brightMagenta: 44.7 + brightCyan: 72.4 + brightWhite: 92.3 diff --git a/themes/nordfox.yaml b/themes/nordfox.yaml new file mode 100644 index 00000000..39fe1477 --- /dev/null +++ b/themes/nordfox.yaml @@ -0,0 +1,49 @@ +name: "Nordfox" +source: + marketplace_id: "Fr4nk1in.nordfox-vsc" + version: "0.1.2" + installs: 586 + author: "Fr4nk1in" + repo: "https://github.com/Fr4nk1inCs/nordfox-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=Fr4nk1in.nordfox-vsc" +colors: + bg: "#2E3440" + fg: "#CDCECF" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#465780" + brightRed: "#D06F79" + brightGreen: "#B1D196" + brightYellow: "#F0D399" + brightBlue: "#8CAFD2" + brightMagenta: "#C895BF" + brightCyan: "#93CCDC" + brightWhite: "#E7ECF4" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 70.7 + black: 0 + red: 27.9 + green: 56.6 + yellow: 71.3 + blue: 43.6 + magenta: 41.4 + cyan: 57.6 + white: 87.3 + brightBlack: 11.2 + brightRed: 34.8 + brightGreen: 66.7 + brightYellow: 75.8 + brightBlue: 50.9 + brightMagenta: 47.4 + brightCyan: 64.3 + brightWhite: 89.1 diff --git a/themes/nordic-dark.yaml b/themes/nordic-dark.yaml new file mode 100644 index 00000000..ebdbe810 --- /dev/null +++ b/themes/nordic-dark.yaml @@ -0,0 +1,49 @@ +name: "Nordic Dark" +source: + marketplace_id: "AdiKurniawan.rhapsody-theme" + version: "1.2.0" + installs: 146 + author: "Adi Kurniawan" + repo: "https://github.com/adikurniawanid/rhapsody-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AdiKurniawan.rhapsody-theme" +colors: + bg: "#2E3440" + fg: "#D8DEE9" + black: "#000000" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#8FBCBB" + white: "#ECEFF4" + brightBlack: "#666666" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#88C0D0" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 80.3 + black: 0 + red: 27.9 + green: 56.6 + yellow: 71.3 + blue: 43.6 + magenta: 41.4 + cyan: 55.5 + white: 91.2 + brightBlack: 17 + brightRed: 27.9 + brightGreen: 56.6 + brightYellow: 71.3 + brightBlue: 57.6 + brightMagenta: 41.4 + brightCyan: 55.5 + brightWhite: 91.2 diff --git a/themes/nordic-electric-ai-nocturne.yaml b/themes/nordic-electric-ai-nocturne.yaml new file mode 100644 index 00000000..72913456 --- /dev/null +++ b/themes/nordic-electric-ai-nocturne.yaml @@ -0,0 +1,49 @@ +name: "Nordic Electric AI – Nocturne" +source: + marketplace_id: "freyja-one.nordic-electric-ai" + version: "1.0.2" + installs: 209 + author: "freyja-one" + repo: "https://github.com/CosmicFreyjaLab/aurora-colorschemes" + url: "https://marketplace.visualstudio.com/items?itemName=freyja-one.nordic-electric-ai" +colors: + bg: "#101628" + fg: "#CBDAF3" + black: "#2D3450" + red: "#FF5D8F" + green: "#5DF0B0" + yellow: "#F5D67F" + blue: "#3B9EFF" + magenta: "#9966FF" + cyan: "#20E6D6" + white: "#B0C0E0" + brightBlack: "#3B4261" + brightRed: "#FF5D8F" + brightGreen: "#5DF0B0" + brightYellow: "#F5D67F" + brightBlue: "#4499FF" + brightMagenta: "#9966FF" + brightCyan: "#40D9C4" + brightWhite: "#D6E5FF" +meta: + mode: "dark" + accent: "magenta" + hue: 269 + contrast: + fg: 82.5 + black: 0 + red: 46.3 + green: 81.5 + yellow: 82.3 + blue: 47.5 + magenta: 36.7 + cyan: 76.5 + white: 67.2 + brightBlack: 8.7 + brightRed: 46.3 + brightGreen: 81.5 + brightYellow: 82.3 + brightBlue: 45.9 + brightMagenta: 36.7 + brightCyan: 69.9 + brightWhite: 89.4 diff --git a/themes/nordic.yaml b/themes/nordic.yaml new file mode 100644 index 00000000..3c92587e --- /dev/null +++ b/themes/nordic.yaml @@ -0,0 +1,49 @@ +name: "Nordic" +source: + marketplace_id: "bonchol.nordic-vscode" + version: "0.2.0" + installs: 5711 + author: "bonchol" + repo: "https://github.com/bonchol/nordic-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=bonchol.nordic-vscode" +colors: + bg: "#242933" + fg: "#ECEFF4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 93.6 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.1 + cyan: 44.9 + white: 87.4 + brightBlack: 19.4 + brightRed: 36 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/nordicbox.yaml b/themes/nordicbox.yaml new file mode 100644 index 00000000..fda44278 --- /dev/null +++ b/themes/nordicbox.yaml @@ -0,0 +1,49 @@ +name: "nordicBox" +source: + marketplace_id: "fedmag.nordicbox" + version: "0.0.1" + installs: 75 + author: "fedmag" + repo: "https://github.com/fedmag/nordicbox" + url: "https://marketplace.visualstudio.com/items?itemName=fedmag.nordicbox" +colors: + bg: "#1D2021" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#DBBE7D" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#DBBE7D" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 84.3 + black: 0 + red: 31.9 + green: 60.6 + yellow: 67.3 + blue: 47.6 + magenta: 45.4 + cyan: 61.6 + white: 91.3 + brightBlack: 14.4 + brightRed: 31.9 + brightGreen: 60.6 + brightYellow: 67.3 + brightBlue: 47.6 + brightMagenta: 45.4 + brightCyan: 59.5 + brightWhite: 95.2 diff --git a/themes/nordicdark.yaml b/themes/nordicdark.yaml new file mode 100644 index 00000000..608bd5e2 --- /dev/null +++ b/themes/nordicdark.yaml @@ -0,0 +1,49 @@ +name: "NordicDark" +source: + marketplace_id: "Avetis.codeme-theme" + version: "0.1.1" + installs: 8079 + author: "Avetis" + repo: "https://github.com/AvetisDN/codeme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" +colors: + bg: "#252A34" + fg: "#E5E9F0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E9F0" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 89.5 + black: 0 + red: 23.9 + green: 50.2 + yellow: 82.8 + blue: 24.6 + magenta: 27 + cyan: 44.8 + white: 89.5 + brightBlack: 19.2 + brightRed: 35.8 + brightGreen: 60.7 + brightYellow: 92.8 + brightBlue: 37.2 + brightMagenta: 42.6 + brightCyan: 52.6 + brightWhite: 104.1 diff --git a/themes/nordico.yaml b/themes/nordico.yaml new file mode 100644 index 00000000..a9a27ce9 --- /dev/null +++ b/themes/nordico.yaml @@ -0,0 +1,49 @@ +name: "Nordico" +source: + marketplace_id: "madprops.nordico" + version: "1.2.2" + installs: 15071 + author: "madprops" + repo: "https://github.com/madprops/Nordico" + url: "https://marketplace.visualstudio.com/items?itemName=madprops.nordico" +colors: + bg: "#252933" + fg: "#D8DEE9" + black: "#2B303B" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#CCCCCC" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 82.7 + black: 0 + red: 30.3 + green: 59 + yellow: 73.7 + blue: 46 + magenta: 43.8 + cyan: 60 + white: 89.7 + brightBlack: 72 + brightRed: 30.3 + brightGreen: 59 + brightYellow: 73.7 + brightBlue: 46 + brightMagenta: 43.8 + brightCyan: 57.9 + brightWhite: 93.6 diff --git a/themes/nordishcocoa.yaml b/themes/nordishcocoa.yaml new file mode 100644 index 00000000..1aacf6a8 --- /dev/null +++ b/themes/nordishcocoa.yaml @@ -0,0 +1,49 @@ +name: "NordishCocoa" +source: + marketplace_id: "GregPasquariello.nordishcocoa" + version: "1.0.3" + installs: 439 + author: "Greg Pasquariello" + repo: "https://github.com/gpasq/VisualStudioCodeThemeNordishCocoa" + url: "https://marketplace.visualstudio.com/items?itemName=GregPasquariello.nordishcocoa" +colors: + bg: "#333333" + fg: "#D8DEE9" + black: "#606060" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#606060" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 80.5 + black: 14.7 + red: 28.1 + green: 56.8 + yellow: 71.5 + blue: 43.8 + magenta: 41.6 + cyan: 57.8 + white: 87.5 + brightBlack: 14.7 + brightRed: 28.1 + brightGreen: 56.8 + brightYellow: 71.5 + brightBlue: 43.8 + brightMagenta: 41.6 + brightCyan: 55.7 + brightWhite: 91.4 diff --git a/themes/northeirn.yaml b/themes/northeirn.yaml new file mode 100644 index 00000000..60557e89 --- /dev/null +++ b/themes/northeirn.yaml @@ -0,0 +1,49 @@ +name: "Northeirn" +source: + marketplace_id: "murilonicemento.northeirn" + version: "1.0.1" + installs: 197 + author: "Murilo Nascimento" + repo: "https://github.com/murilonicemento/northeirn-theme" + url: "https://marketplace.visualstudio.com/items?itemName=murilonicemento.northeirn" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#13FBA7" + white: "#E5E5E5" + brightBlack: "#D466FF" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#EA5D6D" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 84.6 + white: 89.2 + brightBlack: 44.7 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 39.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/northern-territory-dark.yaml b/themes/northern-territory-dark.yaml new file mode 100644 index 00000000..d2841620 --- /dev/null +++ b/themes/northern-territory-dark.yaml @@ -0,0 +1,49 @@ +name: "Northern Territory Dark" +source: + marketplace_id: "lucidlabs.northern-territory-theme" + version: "1.1.0" + installs: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.northern-territory-theme" +colors: + bg: "#120E0A" + fg: "#E8EDF3" + black: "#120E0A" + red: "#E22339" + green: "#6BBE27" + yellow: "#FFCC2C" + blue: "#5B9BD5" + magenta: "#9B7ED9" + cyan: "#5B9BD5" + white: "#E8EDF3" + brightBlack: "#78797E" + brightRed: "#FF4D5E" + brightGreen: "#78D65B" + brightYellow: "#FFE066" + brightBlue: "#7EB8DA" + brightMagenta: "#C88DF7" + brightCyan: "#7EB8DA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 67 + contrast: + fg: 95.4 + black: 0 + red: 31.1 + green: 56.1 + yellow: 79.3 + blue: 45.4 + magenta: 41.2 + cyan: 45.4 + white: 95.4 + brightBlack: 31.2 + brightRed: 42.9 + brightGreen: 68.7 + brightYellow: 88.5 + brightBlue: 59.7 + brightMagenta: 53.8 + brightCyan: 59.7 + brightWhite: 107.5 diff --git a/themes/northern-territory-light.yaml b/themes/northern-territory-light.yaml new file mode 100644 index 00000000..a0cde2e3 --- /dev/null +++ b/themes/northern-territory-light.yaml @@ -0,0 +1,49 @@ +name: "Northern Territory Light" +source: + marketplace_id: "lucidlabs.northern-territory-theme" + version: "1.1.0" + installs: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.northern-territory-theme" +colors: + bg: "#FFFFFF" + fg: "#120E0A" + black: "#120E0A" + red: "#E22339" + green: "#0A690D" + yellow: "#B38800" + blue: "#005EB8" + magenta: "#5A3D80" + cyan: "#006A8F" + white: "#FFFFFF" + brightBlack: "#78797E" + brightRed: "#8A1220" + brightGreen: "#339D37" + brightYellow: "#FFCC2C" + brightBlue: "#5B9BD5" + brightMagenta: "#7A5BA5" + brightCyan: "#5B9BD5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.6 + black: 105.6 + red: 70.2 + green: 83.3 + yellow: 59.7 + blue: 80.9 + magenta: 89.6 + cyan: 79.8 + white: 0 + brightBlack: 70.1 + brightRed: 90.5 + brightGreen: 62 + brightYellow: 23.5 + brightBlue: 56 + brightMagenta: 76.9 + brightCyan: 56 + brightWhite: 0 diff --git a/themes/nosk-theme.yaml b/themes/nosk-theme.yaml new file mode 100644 index 00000000..a7f67150 --- /dev/null +++ b/themes/nosk-theme.yaml @@ -0,0 +1,49 @@ +name: "Nosk Theme" +source: + marketplace_id: "Noskfivem.nosk" + version: "0.0.1" + installs: 656 + author: "NoskYT" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Noskfivem.nosk" +colors: + bg: "#1E1E1E" + fg: "#FF7EEB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 57 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/nostromo.yaml b/themes/nostromo.yaml new file mode 100644 index 00000000..9ca5e4cd --- /dev/null +++ b/themes/nostromo.yaml @@ -0,0 +1,49 @@ +name: "Nostromo" +source: + marketplace_id: "martintheimer.nostromo-theme" + version: "1.0.2" + installs: 9916 + author: "Martin Theimer" + repo: "https://github.com/pappkamerad/nostromo-theme-visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=martintheimer.nostromo-theme" +colors: + bg: "#282E33" + fg: "#FDFAE9" + black: "#34404A" + red: "#E75D57" + green: "#87D68A" + yellow: "#F6E78A" + blue: "#6B9DD0" + magenta: "#AA97D3" + cyan: "#81D9C3" + white: "#BEBEB4" + brightBlack: "#415F73" + brightRed: "#E75D57" + brightGreen: "#87D68A" + brightYellow: "#F6E78A" + brightBlue: "#6B9DD0" + brightMagenta: "#AA97D3" + brightCyan: "#81D9C3" + brightWhite: "#FDFAE9" +meta: + mode: "dark" + accent: "orange" + hue: 243 + contrast: + fg: 99.7 + black: 0 + red: 36 + green: 66.5 + yellow: 86.8 + blue: 42.8 + magenta: 46.7 + cyan: 69.4 + white: 62.6 + brightBlack: 14.2 + brightRed: 36 + brightGreen: 66.5 + brightYellow: 86.8 + brightBlue: 42.8 + brightMagenta: 46.7 + brightCyan: 69.4 + brightWhite: 99.7 diff --git a/themes/not-so-simple.yaml b/themes/not-so-simple.yaml new file mode 100644 index 00000000..1715581b --- /dev/null +++ b/themes/not-so-simple.yaml @@ -0,0 +1,49 @@ +name: "Not so simple" +source: + marketplace_id: "SimpleShiva.not-so-simple" + version: "0.0.2" + installs: 398 + author: "SimpleShiva" + repo: "https://github.com/thomas-lefloch/not-so-simple" + url: "https://marketplace.visualstudio.com/items?itemName=SimpleShiva.not-so-simple" +colors: + bg: "#191919" + fg: "#DBDBDB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 83.6 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/notchy-dark.yaml b/themes/notchy-dark.yaml new file mode 100644 index 00000000..f14a92ba --- /dev/null +++ b/themes/notchy-dark.yaml @@ -0,0 +1,49 @@ +name: "Notchy Dark" +source: + marketplace_id: "chnotchy.notchy-theme" + version: "0.0.4" + installs: 115 + author: "Notchy" + repo: "https://github.com/chnotchy/notchy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=chnotchy.notchy-theme" +colors: + bg: "#051521" + fg: "#AAABAE" + black: "#697077" + red: "#EBA4BB" + green: "#94C674" + yellow: "#D6B538" + blue: "#89BDED" + magenta: "#CEAAED" + cyan: "#48C8D8" + white: "#D0D2D5" + brightBlack: "#72787F" + brightRed: "#FFB0C8" + brightGreen: "#A0D57B" + brightYellow: "#E8C33A" + brightBlue: "#95CCFF" + brightMagenta: "#DFB7FF" + brightCyan: "#4ED8E8" + brightWhite: "#E2E2E5" +meta: + mode: "dark" + accent: "green" + hue: 242 + contrast: + fg: 56 + black: 26.2 + red: 63.3 + green: 63.4 + yellow: 63.1 + blue: 63.3 + magenta: 63.4 + cyan: 63.3 + white: 78.4 + brightBlack: 29.9 + brightRed: 71.5 + brightGreen: 71.5 + brightYellow: 71.6 + brightBlue: 71.7 + brightMagenta: 71.7 + brightCyan: 71.8 + brightWhite: 88.5 diff --git a/themes/notesocean-vs-code-theme.yaml b/themes/notesocean-vs-code-theme.yaml new file mode 100644 index 00000000..8c9d10b6 --- /dev/null +++ b/themes/notesocean-vs-code-theme.yaml @@ -0,0 +1,49 @@ +name: "notesocean vs code theme" +source: + marketplace_id: "Notesocean.notesocean" + version: "0.2.0" + installs: 326 + author: "Notesocean" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Notesocean.notesocean" +colors: + bg: "#28282A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 104.4 + black: 0 + red: 24.2 + green: 50.5 + yellow: 83.1 + blue: 25 + magenta: 27.3 + cyan: 45.1 + white: 104.4 + brightBlack: 19.6 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.5 + brightMagenta: 42.9 + brightCyan: 52.9 + brightWhite: 87.5 diff --git a/themes/notflask-theme-light.yaml b/themes/notflask-theme-light.yaml new file mode 100644 index 00000000..cf2ec26a --- /dev/null +++ b/themes/notflask-theme-light.yaml @@ -0,0 +1,49 @@ +name: "NotFlask Theme Light" +source: + marketplace_id: "notflask.notflask-theme" + version: "1.0.2" + installs: 1566 + author: "Daniel Flask" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=notflask.notflask-theme" +colors: + bg: "#F8F9FA" + fg: "#5C6166" + black: "#000000" + red: "#EA6C6D" + green: "#6CBF43" + yellow: "#ECA944" + blue: "#3199E1" + magenta: "#9E75C7" + cyan: "#46BA94" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#F2AE49" + brightBlue: "#399EE6" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 77.5 + black: 102.4 + red: 53.2 + green: 41.2 + yellow: 35.7 + blue: 53.9 + magenta: 59.8 + cyan: 43.5 + white: 26.4 + brightBlack: 74.2 + brightRed: 50.7 + brightGreen: 44.8 + brightYellow: 32.9 + brightBlue: 51.5 + brightMagenta: 57.5 + brightCyan: 41 + brightWhite: 20.8 diff --git a/themes/nothing-dark.yaml b/themes/nothing-dark.yaml new file mode 100644 index 00000000..d1403d45 --- /dev/null +++ b/themes/nothing-dark.yaml @@ -0,0 +1,49 @@ +name: "Nothing Dark" +source: + marketplace_id: "nothing-design.nothing-theme" + version: "1.0.0" + installs: 367 + author: "nothing-design" + repo: "https://github.com/nothing-design/nothing-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=nothing-design.nothing-theme" +colors: + bg: "#0A0A0A" + fg: "#E8E8E8" + black: "#000000" + red: "#999999" + green: "#CCCCCC" + yellow: "#DDDDDD" + blue: "#BBBBBB" + magenta: "#AAAAAA" + cyan: "#CCCCCC" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#BBBBBB" + brightGreen: "#DDDDDD" + brightYellow: "#EEEEEE" + brightBlue: "#CCCCCC" + brightMagenta: "#CCCCCC" + brightCyan: "#DDDDDD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 92.8 + black: 0 + red: 47 + green: 75.5 + yellow: 85.9 + blue: 65.6 + magenta: 56.1 + cyan: 75.5 + white: 107.7 + brightBlack: 0 + brightRed: 65.6 + brightGreen: 85.9 + brightYellow: 96.6 + brightBlue: 75.5 + brightMagenta: 75.5 + brightCyan: 85.9 + brightWhite: 107.7 diff --git a/themes/nothing-light.yaml b/themes/nothing-light.yaml new file mode 100644 index 00000000..d2fbd7f5 --- /dev/null +++ b/themes/nothing-light.yaml @@ -0,0 +1,49 @@ +name: "Nothing Light" +source: + marketplace_id: "nothing-design.nothing-theme" + version: "1.0.0" + installs: 367 + author: "nothing-design" + repo: "https://github.com/nothing-design/nothing-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=nothing-design.nothing-theme" +colors: + bg: "#FFFFFF" + fg: "#2A2A2A" + black: "#000000" + red: "#666666" + green: "#333333" + yellow: "#222222" + blue: "#444444" + magenta: "#555555" + cyan: "#333333" + white: "#000000" + brightBlack: "#666666" + brightRed: "#444444" + brightGreen: "#222222" + brightYellow: "#111111" + brightBlue: "#333333" + brightMagenta: "#333333" + brightCyan: "#222222" + brightWhite: "#000000" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 101.1 + black: 106 + red: 78.8 + green: 98.7 + yellow: 102.9 + blue: 92.6 + magenta: 85.9 + cyan: 98.7 + white: 106 + brightBlack: 78.8 + brightRed: 92.6 + brightGreen: 102.9 + brightYellow: 105.4 + brightBlue: 98.7 + brightMagenta: 98.7 + brightCyan: 102.9 + brightWhite: 106 diff --git a/themes/nothing-os-dark.yaml b/themes/nothing-os-dark.yaml new file mode 100644 index 00000000..fda8e7a3 --- /dev/null +++ b/themes/nothing-os-dark.yaml @@ -0,0 +1,49 @@ +name: "Nothing OS Dark" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#D71921" + green: "#50FA7B" + yellow: "#FFAA00" + blue: "#666666" + magenta: "#D71921" + cyan: "#AAAAAA" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF2D35" + brightGreen: "#50FA7B" + brightYellow: "#FFAA00" + brightBlue: "#888888" + brightMagenta: "#D71921" + brightCyan: "#CCCCCC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 28.2 + green: 85.9 + yellow: 66.5 + blue: 23 + magenta: 28.2 + cyan: 56.2 + white: 75.7 + brightBlack: 0 + brightRed: 39.2 + brightGreen: 85.9 + brightYellow: 66.5 + brightBlue: 38.6 + brightMagenta: 28.2 + brightCyan: 75.7 + brightWhite: 107.9 diff --git a/themes/nothing-os-gray.yaml b/themes/nothing-os-gray.yaml new file mode 100644 index 00000000..a6d96190 --- /dev/null +++ b/themes/nothing-os-gray.yaml @@ -0,0 +1,49 @@ +name: "Nothing OS Gray" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#14151F" + fg: "#FFFFFF" + black: "#14151F" + red: "#D71921" + green: "#50FA7B" + yellow: "#FFAA00" + blue: "#6B6E82" + magenta: "#D71921" + cyan: "#A0A3B5" + white: "#C5C8D9" + brightBlack: "#4D4F62" + brightRed: "#FF2D35" + brightGreen: "#50FA7B" + brightYellow: "#FFBB33" + brightBlue: "#8A8D9E" + brightMagenta: "#D71921" + brightCyan: "#C5C8D9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 280 + contrast: + fg: 107 + black: 0 + red: 27.3 + green: 85 + yellow: 65.6 + blue: 26.1 + magenta: 27.3 + cyan: 52 + white: 72.8 + brightBlack: 13.4 + brightRed: 38.3 + brightGreen: 85 + brightYellow: 72 + brightBlue: 40.5 + brightMagenta: 27.3 + brightCyan: 72.8 + brightWhite: 107 diff --git a/themes/notion-code-theme.yaml b/themes/notion-code-theme.yaml new file mode 100644 index 00000000..b799961a --- /dev/null +++ b/themes/notion-code-theme.yaml @@ -0,0 +1,49 @@ +name: "Notion Code Theme" +source: + marketplace_id: "HarshitGangwar.notion-code-theme" + version: "0.0.2" + installs: 5257 + author: "Harshit Gangwar" + repo: "https://github.com/harshjoeyit/vscode-notion-theme" + url: "https://marketplace.visualstudio.com/items?itemName=HarshitGangwar.notion-code-theme" +colors: + bg: "#F7F6F3" + fg: "#37352F" + black: "#454B4E" + red: "#E255A1" + green: "#36D1B5" + yellow: "#FFA344" + blue: "#529CCA" + magenta: "#E255A1" + cyan: "#0077DF" + white: "#F3F3F3" + brightBlack: "#2F3437" + brightRed: "#E255A1" + brightGreen: "#36D1B5" + brightYellow: "#FFA344" + brightBlue: "#529CCA" + brightMagenta: "#996DD7" + brightCyan: "#9A6DD7" + brightWhite: "#F3F3F3" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 92.6 + black: 84.9 + red: 56.1 + green: 30.9 + yellow: 32.7 + blue: 51.3 + magenta: 56.1 + cyan: 64.8 + white: 0 + brightBlack: 93.2 + brightRed: 56.1 + brightGreen: 30.9 + brightYellow: 32.7 + brightBlue: 51.3 + brightMagenta: 59.9 + brightCyan: 59.8 + brightWhite: 0 diff --git a/themes/notionliketheme.yaml b/themes/notionliketheme.yaml new file mode 100644 index 00000000..79da8979 --- /dev/null +++ b/themes/notionliketheme.yaml @@ -0,0 +1,49 @@ +name: "NotionLikeTheme" +source: + marketplace_id: "TARA6.notion-like-theme" + version: "0.2.4" + installs: 589 + author: "TARA6" + repo: "https://github.com/tarataracodfish/notion-like-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TARA6.notion-like-theme" +colors: + bg: "#FFFFFF" + fg: "#37352F" + black: "#37352F" + red: "#A7251C" + green: "#007B28" + yellow: "#D09300" + blue: "#4C6CC5" + magenta: "#C14C8A" + cyan: "#32A5E4" + white: "#F7F7F5" + brightBlack: "#37352F" + brightRed: "#A7251C" + brightGreen: "#007B28" + brightYellow: "#D09300" + brightBlue: "#4C6CC5" + brightMagenta: "#C14C8A" + brightCyan: "#32A5E4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98 + black: 98 + red: 83.5 + green: 76.4 + yellow: 51.6 + blue: 73.9 + magenta: 70.5 + cyan: 52.7 + white: 0 + brightBlack: 98 + brightRed: 83.5 + brightGreen: 76.4 + brightYellow: 51.6 + brightBlue: 73.9 + brightMagenta: 70.5 + brightCyan: 52.7 + brightWhite: 0 diff --git a/themes/notthevimguytheme.yaml b/themes/notthevimguytheme.yaml new file mode 100644 index 00000000..27f57eba --- /dev/null +++ b/themes/notthevimguytheme.yaml @@ -0,0 +1,49 @@ +name: "NotTheVimGuyTheme" +source: + marketplace_id: "rysah.notthevimguy" + version: "0.0.1" + installs: 21 + author: "Rysah" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=rysah.notthevimguy" +colors: + bg: "#0A0701" + fg: "#90868D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 93 + contrast: + fg: 38.9 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 91 diff --git a/themes/nova.yaml b/themes/nova.yaml new file mode 100644 index 00000000..64058562 --- /dev/null +++ b/themes/nova.yaml @@ -0,0 +1,49 @@ +name: "Nova" +source: + marketplace_id: "swashata.beautiful-ui" + version: "1.7.0" + installs: 121085 + author: "swashata" + repo: "https://github.com/swashata/vscode-beautiful-ui" + url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" +colors: + bg: "#3B4B54" + fg: "#C5D4DD" + black: "#000000" + red: "#D81E00" + green: "#5EA702" + yellow: "#CFAE00" + blue: "#427AB3" + magenta: "#89658E" + cyan: "#00A7AA" + white: "#DBDED8" + brightBlack: "#686A66" + brightRed: "#F54235" + brightGreen: "#99E343" + brightYellow: "#FDEB61" + brightBlue: "#84B0D8" + brightMagenta: "#BC94B7" + brightCyan: "#37E6E8" + brightWhite: "#F1F1F0" +meta: + mode: "dark" + accent: "orange" + hue: 233 + contrast: + fg: 66.4 + black: 13.2 + red: 15.9 + green: 32.8 + yellow: 47.2 + blue: 17.9 + magenta: 15.3 + cyan: 33.7 + white: 73.3 + brightBlack: 11.8 + brightRed: 26.1 + brightGreen: 64.8 + brightYellow: 80.7 + brightBlue: 44.4 + brightMagenta: 38.4 + brightCyan: 66 + brightWhite: 86 diff --git a/themes/novadust.yaml b/themes/novadust.yaml new file mode 100644 index 00000000..dad94c7c --- /dev/null +++ b/themes/novadust.yaml @@ -0,0 +1,49 @@ +name: "NOVADUST" +source: + marketplace_id: "novadust.novadust" + version: "0.0.3" + installs: 960 + author: "NOVADUST" + repo: "https://github.com/mmartamg/novadust-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=novadust.novadust" +colors: + bg: "#1D2833" + fg: "#CFD1D1" + black: "#000911" + red: "#FF695D" + green: "#B9E678" + yellow: "#FFD580" + blue: "#5FCBC3" + magenta: "#D689E3" + cyan: "#85DDA2" + white: "#F7F5E9" + brightBlack: "#596D84" + brightRed: "#FF695D" + brightGreen: "#B9E678" + brightYellow: "#FFD580" + brightBlue: "#5FCBC3" + brightMagenta: "#D689E3" + brightCyan: "#85DDA2" + brightWhite: "#F7F5E9" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 75.1 + black: 0 + red: 45.1 + green: 79.4 + yellow: 81.2 + blue: 62.1 + magenta: 50.6 + cyan: 71.6 + white: 97.8 + brightBlack: 22 + brightRed: 45.1 + brightGreen: 79.4 + brightYellow: 81.2 + brightBlue: 62.1 + brightMagenta: 50.6 + brightCyan: 71.6 + brightWhite: 97.8 diff --git a/themes/november-theme-black.yaml b/themes/november-theme-black.yaml new file mode 100644 index 00000000..e8003a61 --- /dev/null +++ b/themes/november-theme-black.yaml @@ -0,0 +1,49 @@ +name: "November Theme - BLACK" +source: + marketplace_id: "AbdullahRehmani.november-theme" + version: "1.2.0" + installs: 56 + author: "Abdullah Rehmani" + repo: "https://github.com/Abdullah-Rehmani-222" + url: "https://marketplace.visualstudio.com/items?itemName=AbdullahRehmani.november-theme" +colors: + bg: "#000000" + fg: "#EEFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/november-theme-darkblue.yaml b/themes/november-theme-darkblue.yaml new file mode 100644 index 00000000..ba7081da --- /dev/null +++ b/themes/november-theme-darkblue.yaml @@ -0,0 +1,49 @@ +name: "November Theme - DARKBLUE" +source: + marketplace_id: "AbdullahRehmani.november-theme" + version: "1.2.0" + installs: 56 + author: "Abdullah Rehmani" + repo: "https://github.com/Abdullah-Rehmani-222" + url: "https://marketplace.visualstudio.com/items?itemName=AbdullahRehmani.november-theme" +colors: + bg: "#05001D" + fg: "#EEFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 105.4 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 107.7 diff --git a/themes/nox.yaml b/themes/nox.yaml new file mode 100644 index 00000000..57a5efb3 --- /dev/null +++ b/themes/nox.yaml @@ -0,0 +1,49 @@ +name: "nox" +source: + marketplace_id: "JohannesFreutel.noxx" + version: "0.0.1" + installs: 44 + author: "JohannesFreutel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.noxx" +colors: + bg: "#0A0E1B" + fg: "#E5A6A6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + contrast: + fg: 62.5 + black: 0 + red: 27.4 + green: 53.6 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.7 diff --git a/themes/noxis-light.yaml b/themes/noxis-light.yaml new file mode 100644 index 00000000..751530dd --- /dev/null +++ b/themes/noxis-light.yaml @@ -0,0 +1,49 @@ +name: "Noxis-Light" +source: + marketplace_id: "valentinocossar.noxis" + version: "1.1.0" + installs: 67 + author: "Valentino Cossar" + repo: "https://github.com/valentinocossar/noxis" + url: "https://marketplace.visualstudio.com/items?itemName=valentinocossar.noxis" +colors: + bg: "#FFFFFF" + fg: "#434F65" + black: "#A9B4CB" + red: "#E75A5A" + green: "#3DB931" + yellow: "#E0AF00" + blue: "#4C71F6" + magenta: "#5654BC" + cyan: "#00B6C2" + white: "#252D3A" + brightBlack: "#A9B4CB" + brightRed: "#E75A5A" + brightGreen: "#3DB931" + brightYellow: "#E0AF00" + brightBlue: "#4C71F6" + brightMagenta: "#5654BC" + brightCyan: "#00B6C2" + brightWhite: "#252D3A" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 88.5 + black: 40.7 + red: 61.7 + green: 49.7 + yellow: 39.4 + blue: 68.5 + magenta: 80.6 + cyan: 48 + white: 100.5 + brightBlack: 40.7 + brightRed: 61.7 + brightGreen: 49.7 + brightYellow: 39.4 + brightBlue: 68.5 + brightMagenta: 80.6 + brightCyan: 48 + brightWhite: 100.5 diff --git a/themes/noxis.yaml b/themes/noxis.yaml new file mode 100644 index 00000000..9eae7ede --- /dev/null +++ b/themes/noxis.yaml @@ -0,0 +1,49 @@ +name: "Noxis" +source: + marketplace_id: "valentinocossar.noxis" + version: "1.1.0" + installs: 67 + author: "Valentino Cossar" + repo: "https://github.com/valentinocossar/noxis" + url: "https://marketplace.visualstudio.com/items?itemName=valentinocossar.noxis" +colors: + bg: "#090A0F" + fg: "#8E95B4" + black: "#35394B" + red: "#E75A5A" + green: "#A9EFA3" + yellow: "#FEE17C" + blue: "#4C71F6" + magenta: "#5654BC" + cyan: "#70E3EB" + white: "#FFFFFF" + brightBlack: "#35394B" + brightRed: "#E75A5A" + brightGreen: "#A9EFA3" + brightYellow: "#FEE17C" + brightBlue: "#4C71F6" + brightMagenta: "#5654BC" + brightCyan: "#70E3EB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 276 + contrast: + fg: 45.6 + black: 0 + red: 39.9 + green: 86.4 + yellow: 89.3 + blue: 33 + magenta: 21.1 + cyan: 79.3 + white: 107.7 + brightBlack: 0 + brightRed: 39.9 + brightGreen: 86.4 + brightYellow: 89.3 + brightBlue: 33 + brightMagenta: 21.1 + brightCyan: 79.3 + brightWhite: 107.7 diff --git a/themes/noxus.yaml b/themes/noxus.yaml new file mode 100644 index 00000000..0ae4ee50 --- /dev/null +++ b/themes/noxus.yaml @@ -0,0 +1,49 @@ +name: "Noxus" +source: + marketplace_id: "alicanbasak.noxus-theme" + version: "2.1.0" + installs: 1779 + author: "alicanbasak" + repo: "https://github.com/alicanbasak/noxus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=alicanbasak.noxus-theme" +colors: + bg: "#282C34" + fg: "#EEFFFF" + black: "#7F7F7F" + red: "#E15A60" + green: "#99C794" + yellow: "#FAC863" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#7F7F7F" + brightRed: "#E15A60" + brightGreen: "#99C794" + brightYellow: "#FAC863" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 101.4 + black: 30.1 + red: 34.7 + green: 61.7 + yellow: 73.5 + blue: 41 + magenta: 48.8 + cyan: 49.8 + white: 76.3 + brightBlack: 30.1 + brightRed: 34.7 + brightGreen: 61.7 + brightYellow: 73.5 + brightBlue: 41 + brightMagenta: 48.8 + brightCyan: 49.8 + brightWhite: 76.3 diff --git a/themes/npp-color-dark-hard.yaml b/themes/npp-color-dark-hard.yaml new file mode 100644 index 00000000..1b8c6374 --- /dev/null +++ b/themes/npp-color-dark-hard.yaml @@ -0,0 +1,49 @@ +name: "npp-color Dark hard" +source: + marketplace_id: "gaoyia.npp-theme" + version: "0.0.1" + installs: 364 + author: "gaoyia" + repo: "https://github.com/gaoyia/npp-theme" + url: "https://marketplace.visualstudio.com/items?itemName=gaoyia.npp-theme" +colors: + bg: "#212424" + fg: "#ABB2BF" + black: "#4A505D" + red: "#F81141" + green: "#23974A" + yellow: "#FD7E57" + blue: "#285BFF" + magenta: "#8C62FD" + cyan: "#3A8AB2" + white: "#CCD5E5" + brightBlack: "#61697A" + brightRed: "#FC4A6D" + brightGreen: "#37BD58" + brightYellow: "#F6BE48" + brightBlue: "#199FFD" + brightMagenta: "#FC58F6" + brightCyan: "#50ACAE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 57.8 + black: 11.5 + red: 33.6 + green: 34.4 + yellow: 50.3 + blue: 24.2 + magenta: 32.4 + cyan: 33.3 + white: 78.1 + brightBlack: 21.6 + brightRed: 39.8 + brightGreen: 51.7 + brightYellow: 70.1 + brightBlue: 45.5 + brightMagenta: 48.4 + brightCyan: 47.5 + brightWhite: 105.2 diff --git a/themes/npp-color-light-hard.yaml b/themes/npp-color-light-hard.yaml new file mode 100644 index 00000000..492a4fcf --- /dev/null +++ b/themes/npp-color-light-hard.yaml @@ -0,0 +1,49 @@ +name: "npp-color light hard" +source: + marketplace_id: "gaoyia.npp-theme" + version: "0.0.1" + installs: 364 + author: "gaoyia" + repo: "https://github.com/gaoyia/npp-theme" + url: "https://marketplace.visualstudio.com/items?itemName=gaoyia.npp-theme" +colors: + bg: "#F9F5D7" + fg: "#3F4249" + black: "#4A505D" + red: "#F81141" + green: "#23974A" + yellow: "#FD7E57" + blue: "#285BFF" + magenta: "#8C62FD" + cyan: "#3A8AB2" + white: "#CCD5E5" + brightBlack: "#61697A" + brightRed: "#FC4A6D" + brightGreen: "#37BD58" + brightYellow: "#F6BE48" + brightBlue: "#199FFD" + brightMagenta: "#FC58F6" + brightCyan: "#50ACAE" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 86.8 + black: 81.4 + red: 58.8 + green: 58 + yellow: 42.4 + blue: 68.3 + magenta: 60 + cyan: 59.1 + white: 15.9 + brightBlack: 70.9 + brightRed: 52.6 + brightGreen: 41 + brightYellow: 23.5 + brightBlue: 47.1 + brightMagenta: 44.2 + brightCyan: 45.1 + brightWhite: 0 diff --git a/themes/nstlgy-dark-josh-w-comeau-inspired.yaml b/themes/nstlgy-dark-josh-w-comeau-inspired.yaml new file mode 100644 index 00000000..36d53c98 --- /dev/null +++ b/themes/nstlgy-dark-josh-w-comeau-inspired.yaml @@ -0,0 +1,49 @@ +name: "nstlgy dark (josh w. comeau inspired)" +source: + marketplace_id: "grymmjack.vscode-nstlgy-dark-joshwcomeau-theme" + version: "0.0.1" + installs: 73 + author: "grymmjack" + repo: "https://github.com/grymmjack/vscode-nstlgy-dark-joshwcomeau-theme" + url: "https://marketplace.visualstudio.com/items?itemName=grymmjack.vscode-nstlgy-dark-joshwcomeau-theme" +colors: + bg: "#1C1E26" + fg: "#FFFFFF" + black: "#3F4451" + red: "#FFD500" + green: "#8CC265" + yellow: "#D18F52" + blue: "#D2A6FF" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#FF38A9" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 106 + black: 8 + red: 81.5 + green: 59.5 + yellow: 47.7 + blue: 62.5 + magenta: 38.2 + cyan: 51.6 + white: 82.2 + brightBlack: 14.6 + brightRed: 45.2 + brightGreen: 75.9 + brightYellow: 60.4 + brightBlue: 41.3 + brightMagenta: 49.4 + brightCyan: 66.9 + brightWhite: 89.8 diff --git a/themes/ntt1.yaml b/themes/ntt1.yaml new file mode 100644 index 00000000..fea85245 --- /dev/null +++ b/themes/ntt1.yaml @@ -0,0 +1,49 @@ +name: "NTT1" +source: + marketplace_id: "NatalietheNerd.ntt-1" + version: "0.0.2" + installs: 13 + author: "NatalietheNerd" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NatalietheNerd.ntt-1" +colors: + bg: "#343446" + fg: "#F6F6F4" + black: "#313140" + red: "#F68CB9" + green: "#59E0A7" + yellow: "#FFE991" + blue: "#BF9EEE" + magenta: "#F286C4" + cyan: "#83CAFF" + white: "#F6F6F4" + brightBlack: "#8A8AA8" + brightRed: "#F07C7C" + brightGreen: "#78F09A" + brightYellow: "#F6F6AE" + brightBlue: "#D6B4F7" + brightMagenta: "#F49DDA" + brightCyan: "#ADF6F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 285 + contrast: + fg: 95.3 + black: 0 + red: 51.7 + green: 67.5 + yellow: 87.1 + blue: 51.3 + magenta: 49.7 + cyan: 63.7 + white: 95.3 + brightBlack: 34.2 + brightRed: 43.9 + brightGreen: 76.6 + brightYellow: 92.6 + brightBlue: 63 + brightMagenta: 58.1 + brightCyan: 87 + brightWhite: 101.3 diff --git a/themes/nuclear-z-light.yaml b/themes/nuclear-z-light.yaml new file mode 100644 index 00000000..338db728 --- /dev/null +++ b/themes/nuclear-z-light.yaml @@ -0,0 +1,49 @@ +name: "Nuclear'z light" +source: + marketplace_id: "NuclleaR.nuclear-light" + version: "1.0.0" + installs: 468 + author: "Sergey Korenuk" + repo: "https://github.com/NuclleaR/vscode-theme-nuclear-light" + url: "https://marketplace.visualstudio.com/items?itemName=NuclleaR.nuclear-light" +colors: + bg: "#FFF7EE" + fg: "#383838" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 92.8 + black: 101.9 + red: 69.9 + green: 45.1 + yellow: 53.8 + blue: 81.9 + magenta: 70.4 + cyan: 56.5 + white: 81.8 + brightBlack: 74.6 + brightRed: 69.9 + brightGreen: 36.8 + brightYellow: 36.8 + brightBlue: 81.9 + brightMagenta: 70.4 + brightCyan: 56.5 + brightWhite: 44.3 diff --git a/themes/nudark.yaml b/themes/nudark.yaml new file mode 100644 index 00000000..134e4d87 --- /dev/null +++ b/themes/nudark.yaml @@ -0,0 +1,49 @@ +name: "nuDark" +source: + marketplace_id: "necdetuygur.nudark" + version: "1.0.0" + installs: 35 + author: "Necdet UYGUR" + repo: "https://github.com/necdetuygur/nudark" + url: "https://marketplace.visualstudio.com/items?itemName=necdetuygur.nudark" +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A7FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#7E7781" + brightRed: "#FFA198" + brightGreen: "#57D374" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#57D4DD" + brightWhite: "#F0F7FC" +meta: + mode: "dark" + accent: "green" + hue: 258 + contrast: + fg: 77.5 + black: 13.1 + red: 52.6 + green: 52.1 + yellow: 52.2 + blue: 52.6 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 31.1 + brightRed: 64.8 + brightGreen: 65.8 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 70 + brightWhite: 101.4 diff --git a/themes/nuitp-le-theme.yaml b/themes/nuitp-le-theme.yaml new file mode 100644 index 00000000..2d51cd91 --- /dev/null +++ b/themes/nuitp-le-theme.yaml @@ -0,0 +1,49 @@ +name: "Nuitpâle Theme" +source: + marketplace_id: "Anqo.nuitpale-theme" + version: "1.0.0" + installs: 1226 + author: "Anqo" + repo: "https://github.com/ohanqo/nuitpale-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Anqo.nuitpale-theme" +colors: + bg: "#232529" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 69.5 + black: 24.5 + red: 42.1 + green: 63.9 + yellow: 77 + blue: 54 + magenta: 51.9 + cyan: 76.4 + white: 105 + brightBlack: 24.5 + brightRed: 42.1 + brightGreen: 82.3 + brightYellow: 77 + brightBlue: 54 + brightMagenta: 51.9 + brightCyan: 76.4 + brightWhite: 105 diff --git a/themes/null-theme-absolute-black.yaml b/themes/null-theme-absolute-black.yaml new file mode 100644 index 00000000..bd441b97 --- /dev/null +++ b/themes/null-theme-absolute-black.yaml @@ -0,0 +1,49 @@ +name: "Null Theme - Absolute Black" +source: + marketplace_id: "kimberlycasamina.null-theme" + version: "1.0.8" + installs: 212 + author: "kimberlycasamina" + repo: "https://github.com/kimicasamina/vscode-null-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" +colors: + bg: "#000000" + fg: "#B0E0E6" + black: "#000000" + red: "#FF0066" + green: "#00FF66" + yellow: "#FFFF00" + blue: "#0066FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF3399" + brightGreen: "#33FF99" + brightYellow: "#FFFF66" + brightBlue: "#3399FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 82.6 + black: 0 + red: 38.6 + green: 87.1 + yellow: 102.7 + blue: 29.3 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 23 + brightRed: 42 + brightGreen: 88.5 + brightYellow: 103.3 + brightBlue: 46.4 + brightMagenta: 54.8 + brightCyan: 94 + brightWhite: 107.9 diff --git a/themes/null-theme-electric-enhanced.yaml b/themes/null-theme-electric-enhanced.yaml new file mode 100644 index 00000000..7e7deca3 --- /dev/null +++ b/themes/null-theme-electric-enhanced.yaml @@ -0,0 +1,49 @@ +name: "Null Theme - Electric Enhanced" +source: + marketplace_id: "kimberlycasamina.null-theme" + version: "1.0.8" + installs: 212 + author: "kimberlycasamina" + repo: "https://github.com/kimicasamina/vscode-null-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" +colors: + bg: "#050510" + fg: "#E0E0E0" + black: "#050510" + red: "#FF4400" + green: "#00FF44" + yellow: "#FFDD00" + blue: "#0044FF" + magenta: "#FF00DD" + cyan: "#00DDFF" + white: "#FFFFFF" + brightBlack: "#999999" + brightRed: "#FF6600" + brightGreen: "#66FF00" + brightYellow: "#FFFF00" + brightBlue: "#0066FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 282 + contrast: + fg: 87.8 + black: 0 + red: 41.2 + green: 86.7 + yellow: 86.8 + blue: 21.5 + magenta: 43.7 + cyan: 75.1 + white: 107.8 + brightBlack: 47.1 + brightRed: 47 + brightGreen: 88.3 + brightYellow: 102.7 + brightBlue: 29.2 + brightMagenta: 54.8 + brightCyan: 93.9 + brightWhite: 107.8 diff --git a/themes/null-theme-midnight-enhanced.yaml b/themes/null-theme-midnight-enhanced.yaml new file mode 100644 index 00000000..8e2bc320 --- /dev/null +++ b/themes/null-theme-midnight-enhanced.yaml @@ -0,0 +1,49 @@ +name: "Null Theme - Midnight Enhanced" +source: + marketplace_id: "kimberlycasamina.null-theme" + version: "1.0.8" + installs: 212 + author: "kimberlycasamina" + repo: "https://github.com/kimicasamina/vscode-null-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" +colors: + bg: "#0B0B16" + fg: "#EAEAFF" + black: "#0B0B16" + red: "#FF4488" + green: "#44FF88" + yellow: "#FFFF88" + blue: "#6688FF" + magenta: "#FF66FF" + cyan: "#99FFFF" + white: "#FFFFFF" + brightBlack: "#7777AA" + brightRed: "#FF88CC" + brightGreen: "#99FFCC" + brightYellow: "#FFFFCC" + brightBlue: "#99CCFF" + brightMagenta: "#FFCCFF" + brightCyan: "#CCFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 283 + contrast: + fg: 95 + black: 0 + red: 42.9 + green: 88.2 + yellow: 103.6 + blue: 42.4 + magenta: 54.6 + cyan: 96.7 + white: 107.6 + brightBlack: 32.5 + brightRed: 59.5 + brightGreen: 94.4 + brightYellow: 105.5 + brightBlue: 72.6 + brightMagenta: 85.3 + brightCyan: 101.3 + brightWhite: 107.6 diff --git a/themes/null-theme-muted.yaml b/themes/null-theme-muted.yaml new file mode 100644 index 00000000..a80e3ba8 --- /dev/null +++ b/themes/null-theme-muted.yaml @@ -0,0 +1,49 @@ +name: "Null Theme - Muted" +source: + marketplace_id: "kimberlycasamina.null-theme" + version: "1.0.8" + installs: 212 + author: "kimberlycasamina" + repo: "https://github.com/kimicasamina/vscode-null-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" +colors: + bg: "#0F0F0F" + fg: "#B0C4DE" + black: "#0F0F0F" + red: "#AA7F7F" + green: "#7FAA7F" + yellow: "#AAAA7F" + blue: "#7F7FAA" + magenta: "#AA7FAA" + cyan: "#7FAAAA" + white: "#CCCCCC" + brightBlack: "#666666" + brightRed: "#CC9999" + brightGreen: "#99CC99" + brightYellow: "#CCCC99" + brightBlue: "#9999CC" + brightMagenta: "#CC99CC" + brightCyan: "#99CCCC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 69.5 + black: 0 + red: 39.1 + green: 50.2 + yellow: 54.4 + blue: 35.7 + magenta: 40.8 + cyan: 51.6 + white: 75.3 + brightBlack: 22.7 + brightRed: 53.5 + brightGreen: 67.9 + brightYellow: 73.5 + brightBlue: 49.2 + brightMagenta: 55.7 + brightCyan: 69.8 + brightWhite: 107.5 diff --git a/themes/null-theme-near-black.yaml b/themes/null-theme-near-black.yaml new file mode 100644 index 00000000..a1ffc45c --- /dev/null +++ b/themes/null-theme-near-black.yaml @@ -0,0 +1,49 @@ +name: "Null Theme - Near Black" +source: + marketplace_id: "kimberlycasamina.null-theme" + version: "1.0.8" + installs: 212 + author: "kimberlycasamina" + repo: "https://github.com/kimicasamina/vscode-null-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" +colors: + bg: "#0A0A0A" + fg: "#C8C8C8" + black: "#0A0A0A" + red: "#FF0066" + green: "#00FF66" + yellow: "#FFFF00" + blue: "#0066FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#777777" + brightRed: "#FF3399" + brightGreen: "#33FF99" + brightYellow: "#FFFF66" + brightBlue: "#3399FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.2 + black: 0 + red: 38.4 + green: 87 + yellow: 102.6 + blue: 29.1 + magenta: 46.1 + cyan: 92 + white: 107.7 + brightBlack: 30.4 + brightRed: 41.9 + brightGreen: 88.4 + brightYellow: 103.1 + brightBlue: 46.3 + brightMagenta: 54.7 + brightCyan: 93.8 + brightWhite: 107.7 diff --git a/themes/null-theme-pastel.yaml b/themes/null-theme-pastel.yaml new file mode 100644 index 00000000..bc67776a --- /dev/null +++ b/themes/null-theme-pastel.yaml @@ -0,0 +1,49 @@ +name: "Null Theme - Pastel" +source: + marketplace_id: "kimberlycasamina.null-theme" + version: "1.0.8" + installs: 212 + author: "kimberlycasamina" + repo: "https://github.com/kimicasamina/vscode-null-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" +colors: + bg: "#1A1A1F" + fg: "#D4D4D9" + black: "#1A1A1F" + red: "#E5B3B3" + green: "#B3E5B3" + yellow: "#E5E5B3" + blue: "#B3B3E5" + magenta: "#E5B3E5" + cyan: "#B3E5E5" + white: "#F0F0F0" + brightBlack: "#8888AA" + brightRed: "#FFD6D6" + brightGreen: "#D6FFD6" + brightYellow: "#FFFFD6" + brightBlue: "#D6D6FF" + brightMagenta: "#FFD6FF" + brightCyan: "#D6FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.3 + black: 0 + red: 66.8 + green: 81.8 + yellow: 87.7 + blue: 62.2 + magenta: 69 + cyan: 83.8 + white: 96.7 + brightBlack: 38.6 + brightRed: 86.3 + brightGreen: 99.4 + brightYellow: 104.7 + brightBlue: 82.4 + brightMagenta: 88.2 + brightCyan: 101.3 + brightWhite: 106.5 diff --git a/themes/null-theme-synthwave.yaml b/themes/null-theme-synthwave.yaml new file mode 100644 index 00000000..8ad1e811 --- /dev/null +++ b/themes/null-theme-synthwave.yaml @@ -0,0 +1,49 @@ +name: "Null Theme - Synthwave" +source: + marketplace_id: "kimberlycasamina.null-theme" + version: "1.0.8" + installs: 212 + author: "kimberlycasamina" + repo: "https://github.com/kimicasamina/vscode-null-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" +colors: + bg: "#0F0F1F" + fg: "#E0E0E0" + black: "#0F0F1F" + red: "#FF0080" + green: "#80FF00" + yellow: "#FFFF00" + blue: "#0080FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#AA66AA" + brightRed: "#FF40A0" + brightGreen: "#A0FF40" + brightYellow: "#FFFF40" + brightBlue: "#40A0FF" + brightMagenta: "#FF40FF" + brightCyan: "#40FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 283 + contrast: + fg: 87.4 + black: 0 + red: 38.8 + green: 89.2 + yellow: 102.2 + blue: 36.6 + magenta: 45.7 + cyan: 91.7 + white: 107.4 + brightBlack: 33.7 + brightRed: 43.1 + brightGreen: 91.7 + brightYellow: 102.4 + brightBlue: 48.9 + brightMagenta: 48.6 + brightCyan: 92.3 + brightWhite: 107.4 diff --git a/themes/null-theme-vivid.yaml b/themes/null-theme-vivid.yaml new file mode 100644 index 00000000..f0216f97 --- /dev/null +++ b/themes/null-theme-vivid.yaml @@ -0,0 +1,49 @@ +name: "Null Theme - Vivid" +source: + marketplace_id: "kimberlycasamina.null-theme" + version: "1.0.8" + installs: 212 + author: "kimberlycasamina" + repo: "https://github.com/kimicasamina/vscode-null-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" +colors: + bg: "#0D0D0D" + fg: "#00F5FF" + black: "#0D0D0D" + red: "#FF0040" + green: "#00FF80" + yellow: "#FFFF00" + blue: "#0080FF" + magenta: "#FF0080" + cyan: "#00F5FF" + white: "#FFFFFF" + brightBlack: "#888888" + brightRed: "#FF4080" + brightGreen: "#40FF80" + brightYellow: "#FFFF80" + brightBlue: "#4080FF" + brightMagenta: "#FF40FF" + brightCyan: "#80F5FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 86.8 + black: 0 + red: 37.6 + green: 87.3 + yellow: 102.4 + blue: 36.8 + magenta: 39 + cyan: 86.8 + white: 107.6 + brightBlack: 38.4 + brightRed: 42.2 + brightGreen: 87.9 + brightYellow: 103.4 + brightBlue: 37.8 + brightMagenta: 48.8 + brightCyan: 90 + brightWhite: 107.6 diff --git a/themes/nultramarine.yaml b/themes/nultramarine.yaml new file mode 100644 index 00000000..363255e9 --- /dev/null +++ b/themes/nultramarine.yaml @@ -0,0 +1,49 @@ +name: "Nultramarine" +source: + marketplace_id: "catapillie.nultramarine" + version: "1.1.0" + installs: 24 + author: "catapillie" + repo: "https://github.com/catapillie/nultramarine.git#master" + url: "https://marketplace.visualstudio.com/items?itemName=catapillie.nultramarine" +colors: + bg: "#010610" + fg: "#B6B8CB" + black: "#343649" + red: "#D550C0" + green: "#8DC22A" + yellow: "#F99458" + blue: "#2093CB" + magenta: "#9C70C9" + cyan: "#1FD5FF" + white: "#D9DCFF" + brightBlack: "#545666" + brightRed: "#F974E4" + brightGreen: "#B8F24B" + brightYellow: "#FFB529" + brightBlue: "#2EB1F0" + brightMagenta: "#C28BFB" + brightCyan: "#3BECFF" + brightWhite: "#DEDFF7" +meta: + mode: "dark" + accent: "pink" + hue: 252 + contrast: + fg: 64.6 + black: 0 + red: 38.3 + green: 60.7 + yellow: 58.4 + blue: 40.1 + magenta: 36.6 + cyan: 71.4 + white: 86.7 + brightBlack: 16.8 + brightRed: 54.7 + brightGreen: 87.8 + brightYellow: 70.5 + brightBlue: 54.7 + brightMagenta: 52.9 + brightCyan: 83 + brightWhite: 88.2 diff --git a/themes/nulzo-relax.yaml b/themes/nulzo-relax.yaml new file mode 100644 index 00000000..20e5cb0a --- /dev/null +++ b/themes/nulzo-relax.yaml @@ -0,0 +1,49 @@ +name: "nulzo-relax" +source: + marketplace_id: "nulzo.nulzo-relax" + version: "0.0.1" + installs: 77 + author: "nulzo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=nulzo.nulzo-relax" +colors: + bg: "#1400FF" + fg: "#FF0000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0004FF" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 266 + contrast: + fg: 20.2 + black: 18.3 + red: 10.4 + green: 35.4 + yellow: 26.5 + blue: 0 + magenta: 9.8 + cyan: 23.8 + white: 90.6 + brightBlack: 0 + brightRed: 10.4 + brightGreen: 44 + brightYellow: 44 + brightBlue: 0 + brightMagenta: 9.8 + brightCyan: 23.8 + brightWhite: 90.6 diff --git a/themes/nulzo-winter-light.yaml b/themes/nulzo-winter-light.yaml new file mode 100644 index 00000000..2a777108 --- /dev/null +++ b/themes/nulzo-winter-light.yaml @@ -0,0 +1,49 @@ +name: "nulzo-winter-light" +source: + marketplace_id: "nulzo.nulzo-winter-light" + version: "0.0.1" + installs: 116 + author: "nulzo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=nulzo.nulzo-winter-light" +colors: + bg: "#EEEFF0" + fg: "#555555" + black: "#333333" + red: "#CD3131" + green: "#00BC00" + yellow: "#D3D725" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#BCBCBC" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#E7EC1F" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 76.3 + black: 89.1 + red: 64.4 + green: 39.6 + yellow: 15.7 + blue: 76.5 + magenta: 65 + cyan: 51 + white: 26.6 + brightBlack: 69.2 + brightRed: 64.4 + brightGreen: 31.3 + brightYellow: 0 + brightBlue: 76.5 + brightMagenta: 65 + brightCyan: 51 + brightWhite: 8.4 diff --git a/themes/nur-dark.yaml b/themes/nur-dark.yaml new file mode 100644 index 00000000..bea6e36f --- /dev/null +++ b/themes/nur-dark.yaml @@ -0,0 +1,49 @@ +name: "Nur Dark" +source: + marketplace_id: "michelefenu.nur-theme-vscode" + version: "1.1.1" + installs: 429 + author: "Michele Fenu" + repo: "https://github.com/michelefenu/nur" + url: "https://marketplace.visualstudio.com/items?itemName=michelefenu.nur-theme-vscode" +colors: + bg: "#23272B" + fg: "#E2DBC4" + black: "#23272B" + red: "#FC7261" + green: "#98BC6D" + yellow: "#E8C547" + blue: "#9D80B7" + magenta: "#E89B7E" + cyan: "#6FA3D2" + white: "#E2DBC4" + brightBlack: "#6E7F5C" + brightRed: "#FC7261" + brightGreen: "#98BC6D" + brightYellow: "#E8C547" + brightBlue: "#9D80B7" + brightMagenta: "#E89B7E" + brightCyan: "#6FA3D2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81.6 + black: 0 + red: 46.7 + green: 56.8 + yellow: 70.1 + blue: 37.2 + magenta: 55.2 + cyan: 46.8 + white: 81.6 + brightBlack: 28.5 + brightRed: 46.7 + brightGreen: 56.8 + brightYellow: 70.1 + brightBlue: 37.2 + brightMagenta: 55.2 + brightCyan: 46.8 + brightWhite: 104.7 diff --git a/themes/nur-light.yaml b/themes/nur-light.yaml new file mode 100644 index 00000000..fdd0e7be --- /dev/null +++ b/themes/nur-light.yaml @@ -0,0 +1,49 @@ +name: "Nur Light" +source: + marketplace_id: "michelefenu.nur-theme-vscode" + version: "1.1.1" + installs: 429 + author: "Michele Fenu" + repo: "https://github.com/michelefenu/nur" + url: "https://marketplace.visualstudio.com/items?itemName=michelefenu.nur-theme-vscode" +colors: + bg: "#F8F5ED" + fg: "#5A5E6B" + black: "#5A5E6B" + red: "#E54837" + green: "#6B8E3D" + yellow: "#C77F1A" + blue: "#4A7FB5" + magenta: "#C67558" + cyan: "#5A8A82" + white: "#5A5E6B" + brightBlack: "#5A6A4D" + brightRed: "#E54837" + brightGreen: "#6B8E3D" + brightYellow: "#B89415" + brightBlue: "#70568A" + brightMagenta: "#C67558" + brightCyan: "#5A8A82" + brightWhite: "#F8F5ED" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 76.2 + black: 76.2 + red: 59.8 + green: 59.3 + yellow: 53.4 + blue: 62.9 + magenta: 55.8 + cyan: 60.4 + white: 76.2 + brightBlack: 73.2 + brightRed: 59.8 + brightGreen: 59.3 + brightYellow: 49 + brightBlue: 74.9 + brightMagenta: 55.8 + brightCyan: 60.4 + brightWhite: 0 diff --git a/themes/nushu-classic.yaml b/themes/nushu-classic.yaml new file mode 100644 index 00000000..af4017a7 --- /dev/null +++ b/themes/nushu-classic.yaml @@ -0,0 +1,49 @@ +name: "Nushu Classic" +source: + marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" + version: "2.2.18" + installs: 32055 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" +colors: + bg: "#F8F6F1" + fg: "#24292E" + black: "#D1D5DA" + red: "#9E1C23" + green: "#165C26" + yellow: "#B08800" + blue: "#3A1D6E" + magenta: "#99306F" + cyan: "#032F62" + white: "#444D56" + brightBlack: "#6A737D" + brightRed: "#B31D28" + brightGreen: "#176F2C" + brightYellow: "#DBAB09" + brightBlue: "#4C2889" + brightMagenta: "#B93A86" + brightCyan: "#044289" + brightWhite: "#E1E4E8" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.2 + black: 17.1 + red: 80.6 + green: 82.3 + yellow: 54.8 + blue: 93.8 + magenta: 78 + cyan: 93.8 + white: 84.2 + brightBlack: 68.1 + brightRed: 76 + brightGreen: 75.5 + brightYellow: 36.3 + brightBlue: 88.8 + brightMagenta: 69.7 + brightCyan: 86.7 + brightWhite: 8.4 diff --git a/themes/nushu-dark.yaml b/themes/nushu-dark.yaml new file mode 100644 index 00000000..db98904e --- /dev/null +++ b/themes/nushu-dark.yaml @@ -0,0 +1,49 @@ +name: "Nushu Dark" +source: + marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" + version: "2.2.18" + installs: 32055 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" +colors: + bg: "#25211D" + fg: "#D7CFC7" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 75.8 + black: 11.2 + red: 50.7 + green: 50.2 + yellow: 50.3 + blue: 50.3 + magenta: 50.3 + cyan: 59.5 + white: 62.2 + brightBlack: 27.4 + brightRed: 63 + brightGreen: 63.6 + brightYellow: 62.8 + brightBlue: 62.9 + brightMagenta: 62.7 + brightCyan: 68.1 + brightWhite: 105.5 diff --git a/themes/nushu-light.yaml b/themes/nushu-light.yaml new file mode 100644 index 00000000..3fb2e33d --- /dev/null +++ b/themes/nushu-light.yaml @@ -0,0 +1,49 @@ +name: "Nushu Light" +source: + marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" + version: "2.2.18" + installs: 32055 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" +colors: + bg: "#F8F6F1" + fg: "#2B2822" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#6639BA" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#8250DF" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 96.2 + black: 96.1 + red: 69.4 + green: 79.9 + yellow: 92.6 + blue: 69.6 + magenta: 79.5 + cyan: 68.5 + white: 66.3 + brightBlack: 76.4 + brightRed: 79.9 + brightGreen: 69.3 + brightYellow: 86.7 + brightBlue: 55.4 + brightMagenta: 69 + brightCyan: 58 + brightWhite: 51.9 diff --git a/themes/nutheme.yaml b/themes/nutheme.yaml new file mode 100644 index 00000000..8aae6a58 --- /dev/null +++ b/themes/nutheme.yaml @@ -0,0 +1,49 @@ +name: "nuTheme" +source: + marketplace_id: "TheWebDev.nutheme" + version: "0.2.1" + installs: 397 + author: "TheWebDev" + repo: "https://github.com/stevie2codes/TatangoTheme" + url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.nutheme" +colors: + bg: "#1D1F21" + fg: "#FFFFFF" + black: "#1D1F21" + red: "#E06C75" + green: "#45C476" + yellow: "#FBA922" + blue: "#4E81EE" + magenta: "#A36AC7" + cyan: "#4E81EE" + white: "#C5C8C6" + brightBlack: "#969896" + brightRed: "#E06C75" + brightGreen: "#198844" + brightYellow: "#FBA922" + brightBlue: "#4E81EE" + brightMagenta: "#A36AC7" + brightCyan: "#4E81EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 105.9 + black: 0 + red: 41.1 + green: 56.6 + yellow: 63.5 + blue: 35.6 + magenta: 33.9 + cyan: 35.6 + white: 70.9 + brightBlack: 44.4 + brightRed: 41.1 + brightGreen: 28.8 + brightYellow: 63.5 + brightBlue: 35.6 + brightMagenta: 33.9 + brightCyan: 35.6 + brightWhite: 105.9 diff --git a/themes/nutty-dark-theme.yaml b/themes/nutty-dark-theme.yaml new file mode 100644 index 00000000..b48f8002 --- /dev/null +++ b/themes/nutty-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Nutty Dark Theme" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#1A1410" + fg: "#E8DDD0" + black: "#2A1F16" + red: "#E6543A" + green: "#7A9A2F" + yellow: "#FF8C42" + blue: "#4D8FA3" + magenta: "#B57AB8" + cyan: "#5FABC5" + white: "#D0CAB8" + brightBlack: "#5A4D3F" + brightRed: "#FF6F54" + brightGreen: "#8FB544" + brightYellow: "#FFA459" + brightBlue: "#6AADC5" + brightMagenta: "#D099D4" + brightCyan: "#7DC5DD" + brightWhite: "#FFFEF9" +meta: + mode: "dark" + accent: "orange" + hue: 56 + contrast: + fg: 86.1 + black: 0 + red: 37.4 + green: 41.4 + yellow: 56.1 + blue: 37 + magenta: 41.1 + cyan: 50.7 + white: 73.7 + brightBlack: 13 + brightRed: 48.7 + brightGreen: 54.6 + brightYellow: 64.1 + brightBlue: 52.1 + brightMagenta: 56.3 + brightCyan: 64.9 + brightWhite: 106.3 diff --git a/themes/nutty-light-theme.yaml b/themes/nutty-light-theme.yaml new file mode 100644 index 00000000..b6b9a24c --- /dev/null +++ b/themes/nutty-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Nutty Light Theme" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#FFFEF9" + fg: "#2A1F16" + black: "#2A1F16" + red: "#C4361A" + green: "#4A6414" + yellow: "#CC6600" + blue: "#2D5F75" + magenta: "#7A3F7D" + cyan: "#2D5F75" + white: "#EBE8DF" + brightBlack: "#5A4D3F" + brightRed: "#D65B3E" + brightGreen: "#5A7A1A" + brightYellow: "#E67D22" + brightBlue: "#3D7B91" + brightMagenta: "#955A99" + brightCyan: "#4D8FA3" + brightWhite: "#FFFEF9" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.3 + black: 102.3 + red: 74.9 + green: 82.3 + yellow: 64.6 + blue: 83.3 + magenta: 84.7 + cyan: 83.3 + white: 10.4 + brightBlack: 87.6 + brightRed: 64.8 + brightGreen: 73.5 + brightYellow: 53.7 + brightBlue: 72 + brightMagenta: 73.7 + brightCyan: 63.1 + brightWhite: 0 diff --git a/themes/nuxt-blend-bleach-color-theme.yaml b/themes/nuxt-blend-bleach-color-theme.yaml new file mode 100644 index 00000000..5c5d3330 --- /dev/null +++ b/themes/nuxt-blend-bleach-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Nuxt Blend-Bleach Color Theme" +source: + marketplace_id: "CeoDev.neo-nuxt3-blend" + version: "3.3.4" + installs: 2699 + author: "Vantol Bennett" + repo: "https://github.com/titan-65/neo-nuxt" + url: "https://marketplace.visualstudio.com/items?itemName=CeoDev.neo-nuxt3-blend" +colors: + bg: "#FFFFFF" + fg: "#76767D" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#000000" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 71.3 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 106 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/nuxt-blend.yaml b/themes/nuxt-blend.yaml new file mode 100644 index 00000000..af1afb9f --- /dev/null +++ b/themes/nuxt-blend.yaml @@ -0,0 +1,49 @@ +name: "Nuxt Blend" +source: + marketplace_id: "CeoDev.neo-nuxt3-blend" + version: "3.3.4" + installs: 2699 + author: "Vantol Bennett" + repo: "https://github.com/titan-65/neo-nuxt" + url: "https://marketplace.visualstudio.com/items?itemName=CeoDev.neo-nuxt3-blend" +colors: + bg: "#021C24" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 221 + contrast: + fg: 106.5 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 106.5 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45 + brightCyan: 55.1 + brightWhite: 106.5 diff --git a/themes/nuxtian-deep-space.yaml b/themes/nuxtian-deep-space.yaml new file mode 100644 index 00000000..8022d892 --- /dev/null +++ b/themes/nuxtian-deep-space.yaml @@ -0,0 +1,49 @@ +name: "Nuxtian Deep Space" +source: + marketplace_id: "MashedPotatoStudios.nuxtian" + version: "0.3.5" + installs: 417 + author: "Mashed Potato Studios" + repo: "https://github.com/mashed-potato-studios/nuxtian" + url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" +colors: + bg: "#050B1D" + fg: "#CBD5E1" + black: "#050B1D" + red: "#FF5370" + green: "#00DC82" + yellow: "#CBD5E1" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#F7ECE9" + brightBlack: "#27272A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#E2E8F0" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#F7ECE9" +meta: + mode: "dark" + accent: "red" + hue: 266 + contrast: + fg: 80.1 + black: 0 + red: 44.4 + green: 69.3 + yellow: 80.1 + blue: 56.7 + magenta: 54.5 + cyan: 79 + white: 96.6 + brightBlack: 0 + brightRed: 44.4 + brightGreen: 84.9 + brightYellow: 92.2 + brightBlue: 56.7 + brightMagenta: 54.5 + brightCyan: 79 + brightWhite: 96.6 diff --git a/themes/nuxtian-light.yaml b/themes/nuxtian-light.yaml new file mode 100644 index 00000000..16222607 --- /dev/null +++ b/themes/nuxtian-light.yaml @@ -0,0 +1,49 @@ +name: "Nuxtian Light" +source: + marketplace_id: "MashedPotatoStudios.nuxtian" + version: "0.3.5" + installs: 417 + author: "Mashed Potato Studios" + repo: "https://github.com/mashed-potato-studios/nuxtian" + url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" +colors: + bg: "#F8FAFC" + fg: "#1E293B" + black: "#0F172A" + red: "#F43F5E" + green: "#00DC82" + yellow: "#64748B" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F8FAFC" + brightBlack: "#334155" + brightRed: "#F43F5E" + brightGreen: "#4ADE80" + brightYellow: "#94A3B8" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 98.2 + black: 101.4 + red: 59.7 + green: 29.9 + yellow: 69.9 + blue: 60.7 + magenta: 63.1 + cyan: 44 + white: 0 + brightBlack: 90.9 + brightRed: 59.7 + brightGreen: 28.1 + brightYellow: 47 + brightBlue: 60.7 + brightMagenta: 63.1 + brightCyan: 44 + brightWhite: 0 diff --git a/themes/nuxtian-nitro.yaml b/themes/nuxtian-nitro.yaml new file mode 100644 index 00000000..2884412e --- /dev/null +++ b/themes/nuxtian-nitro.yaml @@ -0,0 +1,49 @@ +name: "Nuxtian Nitro" +source: + marketplace_id: "MashedPotatoStudios.nuxtian" + version: "0.3.5" + installs: 417 + author: "Mashed Potato Studios" + repo: "https://github.com/mashed-potato-studios/nuxtian" + url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" +colors: + bg: "#111111" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#FF3366" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#FF3366" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 37 + green: 86 + yellow: 102.2 + blue: 39.9 + magenta: 45.7 + cyan: 91.7 + white: 107.4 + brightBlack: 22.5 + brightRed: 37 + brightGreen: 86 + brightYellow: 102.2 + brightBlue: 39.9 + brightMagenta: 45.7 + brightCyan: 91.7 + brightWhite: 107.4 diff --git a/themes/nuxtian.yaml b/themes/nuxtian.yaml new file mode 100644 index 00000000..35b7fea4 --- /dev/null +++ b/themes/nuxtian.yaml @@ -0,0 +1,49 @@ +name: "Nuxtian" +source: + marketplace_id: "MashedPotatoStudios.nuxtian" + version: "0.3.5" + installs: 417 + author: "Mashed Potato Studios" + repo: "https://github.com/mashed-potato-studios/nuxtian" + url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" +colors: + bg: "#10162A" + fg: "#CBD5E1" + black: "#10162A" + red: "#FF5370" + green: "#00DC82" + yellow: "#CBD5E1" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#F7ECE9" + brightBlack: "#27272A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#E2E8F0" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#F7ECE9" +meta: + mode: "dark" + accent: "red" + hue: 270 + contrast: + fg: 79.3 + black: 0 + red: 43.6 + green: 68.5 + yellow: 79.3 + blue: 55.9 + magenta: 53.7 + cyan: 78.2 + white: 95.8 + brightBlack: 0 + brightRed: 43.6 + brightGreen: 84.1 + brightYellow: 91.5 + brightBlue: 55.9 + brightMagenta: 53.7 + brightCyan: 78.2 + brightWhite: 95.8 diff --git a/themes/nuxtiansololevel.yaml b/themes/nuxtiansololevel.yaml new file mode 100644 index 00000000..c101b237 --- /dev/null +++ b/themes/nuxtiansololevel.yaml @@ -0,0 +1,49 @@ +name: "NuxtianSoloLevel" +source: + marketplace_id: "MashedPotatoStudios.nuxtian" + version: "0.3.5" + installs: 417 + author: "Mashed Potato Studios" + repo: "https://github.com/mashed-potato-studios/nuxtian" + url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" +colors: + bg: "#171717" + fg: "#FFFFFF" + black: "#3B3B3B" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#888787" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 106.9 + black: 0 + red: 43.6 + green: 84.2 + yellow: 78.9 + blue: 55.9 + magenta: 53.7 + cyan: 78.2 + white: 106.9 + brightBlack: 37.2 + brightRed: 43.6 + brightGreen: 84.2 + brightYellow: 78.9 + brightBlue: 55.9 + brightMagenta: 53.7 + brightCyan: 78.2 + brightWhite: 106.9 diff --git a/themes/nuxtvite.yaml b/themes/nuxtvite.yaml new file mode 100644 index 00000000..2e202932 --- /dev/null +++ b/themes/nuxtvite.yaml @@ -0,0 +1,49 @@ +name: "NuxtVite" +source: + marketplace_id: "MashedPotatoStudios.nuxtian" + version: "0.3.5" + installs: 417 + author: "Mashed Potato Studios" + repo: "https://github.com/mashed-potato-studios/nuxtian" + url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" +colors: + bg: "#15131B" + fg: "#CBD5E1" + black: "#15131B" + red: "#FF5370" + green: "#00DC82" + yellow: "#CBD5E1" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#F7ECE9" + brightBlack: "#27272A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#E2E8F0" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#F7ECE9" +meta: + mode: "dark" + accent: "red" + hue: 296 + contrast: + fg: 79.6 + black: 0 + red: 43.9 + green: 68.8 + yellow: 79.6 + blue: 56.2 + magenta: 54 + cyan: 78.5 + white: 96.1 + brightBlack: 0 + brightRed: 43.9 + brightGreen: 84.4 + brightYellow: 91.8 + brightBlue: 56.2 + brightMagenta: 54 + brightCyan: 78.5 + brightWhite: 96.1 diff --git a/themes/nuxtvoid.yaml b/themes/nuxtvoid.yaml new file mode 100644 index 00000000..f5cc6a47 --- /dev/null +++ b/themes/nuxtvoid.yaml @@ -0,0 +1,49 @@ +name: "NuxtVoid" +source: + marketplace_id: "MashedPotatoStudios.nuxtian" + version: "0.3.5" + installs: 417 + author: "Mashed Potato Studios" + repo: "https://github.com/mashed-potato-studios/nuxtian" + url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" +colors: + bg: "#FFFFFF" + fg: "#6B7280" + black: "#1F2937" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#8B5CF6" + cyan: "#06B6D4" + white: "#F9FAFB" + brightBlack: "#6B7280" + brightRed: "#FCA5A5" + brightGreen: "#A7F3D0" + brightYellow: "#FDE68A" + brightBlue: "#93C5FD" + brightMagenta: "#C4B5FD" + brightCyan: "#A5F3FC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 73.6 + black: 101.5 + red: 63.8 + green: 49.1 + yellow: 41.8 + blue: 63.9 + magenta: 68.7 + cyan: 47.1 + white: 0 + brightBlack: 73.6 + brightRed: 35.9 + brightGreen: 13.9 + brightYellow: 12.1 + brightBlue: 33.4 + brightMagenta: 34.7 + brightCyan: 12.2 + brightWhite: 0 diff --git a/themes/nw21.yaml b/themes/nw21.yaml new file mode 100644 index 00000000..390b0e2d --- /dev/null +++ b/themes/nw21.yaml @@ -0,0 +1,49 @@ +name: "NW21" +source: + marketplace_id: "heikopanjas.berlin-postal-themes" + version: "2.0.2" + installs: 38 + author: "Heiko Panjas" + repo: "https://github.com/heikopanjas/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=heikopanjas.berlin-postal-themes" +colors: + bg: "#E8EEFE" + fg: "#1F2328" + black: "#24292F" + red: "#D1242F" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#656D76" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: 269 + contrast: + fg: 92.6 + black: 91.4 + red: 64.1 + green: 75.1 + yellow: 87.9 + blue: 64.8 + magenta: 64.2 + cyan: 63.7 + white: 61.5 + brightBlack: 66 + brightRed: 75.1 + brightGreen: 64.5 + brightYellow: 81.9 + brightBlue: 50.6 + brightMagenta: 49.2 + brightCyan: 53.2 + brightWhite: 47.1 diff --git a/themes/ny-city-lights-theme.yaml b/themes/ny-city-lights-theme.yaml new file mode 100644 index 00000000..33d7047b --- /dev/null +++ b/themes/ny-city-lights-theme.yaml @@ -0,0 +1,49 @@ +name: "NY City Lights Theme" +source: + marketplace_id: "nycdude.nyc-lights" + version: "0.7.5" + installs: 4683 + author: "iamalmiir" + repo: "https://github.com/iamalmiir/nyc_winter_vsc_theme" + url: "https://marketplace.visualstudio.com/items?itemName=nycdude.nyc-lights" +colors: + bg: "#282D44" + fg: "#EEFFFF" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#7982A9" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 100.8 + black: 0 + red: 46.2 + green: 69 + yellow: 59 + blue: 48 + magenta: 51.8 + cyan: 67.3 + white: 31.8 + brightBlack: 0 + brightRed: 46.2 + brightGreen: 69 + brightYellow: 59 + brightBlue: 48 + brightMagenta: 51.8 + brightCyan: 67.3 + brightWhite: 56.2 diff --git a/themes/nyctophilia.yaml b/themes/nyctophilia.yaml new file mode 100644 index 00000000..50d97150 --- /dev/null +++ b/themes/nyctophilia.yaml @@ -0,0 +1,49 @@ +name: "Nyctophilia" +source: + marketplace_id: "abhiraj-chaudhuri.nyctophilia-color-theme" + version: "0.0.1" + installs: 169 + author: "Abhiraj Chaudhuri" + repo: "https://github.com/abhie7/NyctophiliaTheme" + url: "https://marketplace.visualstudio.com/items?itemName=abhiraj-chaudhuri.nyctophilia-color-theme" +colors: + bg: "#05070A" + fg: "#4BE496" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#A2E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C4C4C4" + brightBlack: "#343434" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#C6F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 75 + black: 0 + red: 27.7 + green: 53.9 + yellow: 78.9 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 70.9 + brightBlack: 0 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 90.7 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 107.8 diff --git a/themes/oa515.yaml b/themes/oa515.yaml new file mode 100644 index 00000000..88022818 --- /dev/null +++ b/themes/oa515.yaml @@ -0,0 +1,49 @@ +name: "OA515" +source: + marketplace_id: "kingllama.oa515" + version: "1.2.0" + installs: 95 + author: "kingllama" + repo: "https://github.com/kingllama/vscode-OA515" + url: "https://marketplace.visualstudio.com/items?itemName=kingllama.oa515" +colors: + bg: "#F7F4EB" + fg: "#1E1C04" + black: "#1E1C04" + red: "#BE0033" + green: "#547A00" + yellow: "#AC5B00" + blue: "#2E409A" + magenta: "#AF56FF" + cyan: "#007F87" + white: "#B8B8B8" + brightBlack: "#5F5F57" + brightRed: "#C7224E" + brightGreen: "#9BC53D" + brightYellow: "#ED9B40" + brightBlue: "#4C61CA" + brightMagenta: "#D7ABFF" + brightCyan: "#75B9BE" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 97.5 + black: 97.5 + red: 72.9 + green: 68.1 + yellow: 67.1 + blue: 83.9 + magenta: 57.8 + cyan: 66.1 + white: 31.8 + brightBlack: 75.4 + brightRed: 69.6 + brightGreen: 32.3 + brightYellow: 37.4 + brightBlue: 70.2 + brightMagenta: 29.1 + brightCyan: 37.2 + brightWhite: 0 diff --git a/themes/oak-dark.yaml b/themes/oak-dark.yaml new file mode 100644 index 00000000..4a75d82d --- /dev/null +++ b/themes/oak-dark.yaml @@ -0,0 +1,49 @@ +name: "Oak-Dark" +source: + marketplace_id: "Rekihyt.oak" + version: "2.1.7" + installs: 752 + author: "Rekihyt" + repo: "https://github.com/rekihyt/oak" + url: "https://marketplace.visualstudio.com/items?itemName=Rekihyt.oak" +colors: + bg: "#202020" + fg: "#E0E0E0" + black: "#FFFFFF" + red: "#C26F9B" + green: "#52B84E" + yellow: "#CFA957" + blue: "#458FDD" + magenta: "#9779DF" + cyan: "#49B4BE" + white: "#000000" + brightBlack: "#FFFFFF" + brightRed: "#B44882" + brightGreen: "#30B040" + brightYellow: "#FFE1A2" + brightBlue: "#7CACE0" + brightMagenta: "#A493CC" + brightCyan: "#74C9D1" + brightWhite: "#303030" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 85.8 + black: 105.8 + red: 37.5 + green: 50.7 + yellow: 56.4 + blue: 38.7 + magenta: 37.9 + cyan: 51.9 + white: 0 + brightBlack: 105.8 + brightRed: 25.6 + brightGreen: 45.8 + brightYellow: 88.4 + brightBlue: 53.2 + brightMagenta: 46.5 + brightCyan: 64.2 + brightWhite: 0 diff --git a/themes/oak.yaml b/themes/oak.yaml new file mode 100644 index 00000000..91aa9052 --- /dev/null +++ b/themes/oak.yaml @@ -0,0 +1,49 @@ +name: "Oak" +source: + marketplace_id: "Rekihyt.oak" + version: "2.1.7" + installs: 752 + author: "Rekihyt" + repo: "https://github.com/rekihyt/oak" + url: "https://marketplace.visualstudio.com/items?itemName=Rekihyt.oak" +colors: + bg: "#F5F5F5" + fg: "#505050" + black: "#000000" + red: "#C26F9B" + green: "#52B84E" + yellow: "#8A671E" + blue: "#5086CE" + magenta: "#9779DF" + cyan: "#49B4BE" + white: "#FFFFFF" + brightBlack: "#303030" + brightRed: "#B44882" + brightGreen: "#30B040" + brightYellow: "#CFA957" + brightBlue: "#7CACE0" + brightMagenta: "#A493CC" + brightCyan: "#74C9D1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 82 + black: 100.1 + red: 56.1 + green: 43.2 + yellow: 69.6 + blue: 58.6 + magenta: 55.7 + cyan: 42 + white: 0 + brightBlack: 93.6 + brightRed: 68 + brightGreen: 47.9 + brightYellow: 37.6 + brightBlue: 40.8 + brightMagenta: 47.2 + brightCyan: 30.2 + brightWhite: 0 diff --git a/themes/obanai-iguro.yaml b/themes/obanai-iguro.yaml new file mode 100644 index 00000000..0b0831b7 --- /dev/null +++ b/themes/obanai-iguro.yaml @@ -0,0 +1,49 @@ +name: "Obanai Iguro" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 738 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" +colors: + bg: "#1F2430" + fg: "#DADBC0" + black: "#191E2A" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#CFBAFA" + cyan: "#98C379" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#61AFEF" + brightMagenta: "#D4BFFF" + brightCyan: "#BAE67E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 267 + contrast: + fg: 80.8 + black: 0 + red: 40.3 + green: 60.5 + yellow: 68.8 + blue: 52.9 + magenta: 68.3 + cyan: 60.5 + white: 69.9 + brightBlack: 21.1 + brightRed: 51.1 + brightGreen: 80.2 + brightYellow: 81.8 + brightBlue: 52.9 + brightMagenta: 71.2 + brightCyan: 80.2 + brightWhite: 105.1 diff --git a/themes/obito-akatsuki-theme.yaml b/themes/obito-akatsuki-theme.yaml new file mode 100644 index 00000000..4daa05f5 --- /dev/null +++ b/themes/obito-akatsuki-theme.yaml @@ -0,0 +1,49 @@ +name: "obito akatsuki theme" +source: + marketplace_id: "obito-dev.obito-akatsuki-theme" + version: "1.2.0" + installs: 694 + author: "obito-dev" + repo: "https://github.com/ton-user/obito-akatsuki-theme" + url: "https://marketplace.visualstudio.com/items?itemName=obito-dev.obito-akatsuki-theme" +colors: + bg: "#0D0C0C" + fg: "#E8D5D5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 83.5 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.1 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/oblivion.yaml b/themes/oblivion.yaml new file mode 100644 index 00000000..fc3260e9 --- /dev/null +++ b/themes/oblivion.yaml @@ -0,0 +1,49 @@ +name: "Oblivion" +source: + marketplace_id: "AustinHou.oblivion-theme" + version: "0.0.2" + installs: 367 + author: "AustinHou" + repo: "https://github.com/PhoenixFieryn/oblivion-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AustinHou.oblivion-theme" +colors: + bg: "#030C1B" + fg: "#FB79DA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 55.5 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/oboro.yaml b/themes/oboro.yaml new file mode 100644 index 00000000..e9fd2ff4 --- /dev/null +++ b/themes/oboro.yaml @@ -0,0 +1,49 @@ +name: "Oboro" +source: + marketplace_id: "Kusefiru.oboro" + version: "0.1.7" + installs: 212 + author: "Kusefiru" + repo: "https://github.com/Kusefiru/Oboro" + url: "https://marketplace.visualstudio.com/items?itemName=Kusefiru.oboro" +colors: + bg: "#222036" + fg: "#D8D2F0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 287 + contrast: + fg: 79 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 28.2 + cyan: 46 + white: 88.5 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.8 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/obsidian-dark.yaml b/themes/obsidian-dark.yaml new file mode 100644 index 00000000..b5401b3a --- /dev/null +++ b/themes/obsidian-dark.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Dark" +source: + marketplace_id: "dwrolvink.obsidian-dark-theme-rust" + version: "1.0.0" + installs: 3355 + author: "dwrolvink" + repo: "https://github.com/dwrolvink/obsidian-dark-theme-rust" + url: "https://marketplace.visualstudio.com/items?itemName=dwrolvink.obsidian-dark-theme-rust" +colors: + bg: "#10151A" + fg: "#C9D1D9" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "green" + hue: 248 + contrast: + fg: 77.3 + black: 12.8 + red: 52.3 + green: 51.8 + yellow: 51.9 + blue: 51.9 + magenta: 51.9 + cyan: 61.1 + white: 63.8 + brightBlack: 29 + brightRed: 64.6 + brightGreen: 65.2 + brightYellow: 64.4 + brightBlue: 64.5 + brightMagenta: 64.3 + brightCyan: 69.6 + brightWhite: 100.6 diff --git a/themes/obsidian-ember.yaml b/themes/obsidian-ember.yaml new file mode 100644 index 00000000..7bea798f --- /dev/null +++ b/themes/obsidian-ember.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Ember" +source: + marketplace_id: "lvzitan.obsidian-ember-theme" + version: "1.1.3" + installs: 1044 + author: "Daniel Francisco" + repo: "https://github.com/Lvzitan/obsidian-ember-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lvzitan.obsidian-ember-theme" +colors: + bg: "#1E1E1E" + fg: "#D3D3D3" + black: "#333333" + red: "#D73333" + green: "#9BE884" + yellow: "#FF8243" + blue: "#AAAAAA" + magenta: "#CCCCCC" + cyan: "#FF8243" + white: "#E5E5E5" + brightBlack: "#333333" + brightRed: "#F70808" + brightGreen: "#75DB57" + brightYellow: "#FF8243" + brightBlue: "#AAAAAA" + brightMagenta: "#CCCCCC" + brightCyan: "#FF8243" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78 + black: 0 + red: 28.3 + green: 79.3 + yellow: 52.3 + blue: 54.4 + magenta: 73.8 + cyan: 52.3 + white: 89.2 + brightBlack: 0 + brightRed: 33.7 + brightGreen: 69.4 + brightYellow: 52.3 + brightBlue: 54.4 + brightMagenta: 73.8 + brightCyan: 52.3 + brightWhite: 89.2 diff --git a/themes/obsidian-light.yaml b/themes/obsidian-light.yaml new file mode 100644 index 00000000..e2727a86 --- /dev/null +++ b/themes/obsidian-light.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Light" +source: + marketplace_id: "narcilee7.obsidian-light" + version: "1.2.0" + installs: 86 + author: "narcilee7" + repo: "https://github.com/narcilee7/obsidian-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=narcilee7.obsidian-light" +colors: + bg: "#FFFFFF" + fg: "#2E2E2E" + black: "#2E2E2E" + red: "#C53030" + green: "#0A6A3D" + yellow: "#B7791F" + blue: "#007ACC" + magenta: "#9C27B0" + cyan: "#00ACC1" + white: "#9CA3AF" + brightBlack: "#6C757D" + brightRed: "#D73A49" + brightGreen: "#28A745" + brightYellow: "#E36209" + brightBlue: "#4C9EFF" + brightMagenta: "#C2185B" + brightCyan: "#00BCD4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 100.1 + black: 100.1 + red: 75.9 + green: 82.5 + yellow: 63.7 + blue: 70.6 + magenta: 80.1 + cyan: 52.3 + white: 49.8 + brightBlack: 72.6 + brightRed: 70.4 + brightGreen: 57.9 + brightYellow: 61.6 + brightBlue: 52.8 + brightMagenta: 77.4 + brightCyan: 44.6 + brightWhite: 0 diff --git a/themes/obsidian-nova.yaml b/themes/obsidian-nova.yaml new file mode 100644 index 00000000..d8911b37 --- /dev/null +++ b/themes/obsidian-nova.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Nova" +source: + marketplace_id: "JaSperryTech.obsidian-nova" + version: "1.0.3" + installs: 56 + author: "JaSperryTech" + repo: "https://github.com/JaSperryTech-Main/nova-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JaSperryTech.obsidian-nova" +colors: + bg: "#232632" + fg: "#AFB5CF" + black: "#272A37" + red: "#ED6977" + green: "#96D694" + yellow: "#E5AD61" + blue: "#6CA5F7" + magenta: "#C184EA" + cyan: "#6DCAEA" + white: "#C4C7D2" + brightBlack: "#4E556F" + brightRed: "#F76D7C" + brightGreen: "#8DCF92" + brightYellow: "#EFB465" + brightBlue: "#6DB0FC" + brightMagenta: "#CA8AF5" + brightCyan: "#70D4F4" + brightWhite: "#DBDCE7" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 59.6 + black: 0 + red: 41.9 + green: 69.3 + yellow: 60.5 + blue: 49.7 + magenta: 46.4 + cyan: 64.4 + white: 69.7 + brightBlack: 13.3 + brightRed: 45.1 + brightGreen: 65.2 + brightYellow: 64.9 + brightBlue: 54.5 + brightMagenta: 50.3 + brightCyan: 69.7 + brightWhite: 82.6 diff --git a/themes/obsidian-pro-dark-blue-purple.yaml b/themes/obsidian-pro-dark-blue-purple.yaml new file mode 100644 index 00000000..a06553cf --- /dev/null +++ b/themes/obsidian-pro-dark-blue-purple.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Pro - Dark Blue Purple" +source: + marketplace_id: "williamkoller.obsidian-pro-theme" + version: "1.0.1" + installs: 42 + author: "williamkoller" + repo: "https://github.com/williamkoller/obsidian-pro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" +colors: + bg: "#09090B" + fg: "#ECECF1" + black: "#111113" + red: "#EF4444" + green: "#7DD3FC" + yellow: "#FACC15" + blue: "#6366F1" + magenta: "#A78BFA" + cyan: "#5EEAD4" + white: "#F3F4F6" + brightBlack: "#6B7280" + brightRed: "#F87171" + brightGreen: "#BAE6FD" + brightYellow: "#FDE047" + brightBlue: "#818CF8" + brightMagenta: "#C4B5FD" + brightCyan: "#A5F3FC" + brightWhite: "#F9FAFB" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 95.6 + black: 0 + red: 37.7 + green: 73.6 + yellow: 78.7 + blue: 31 + magenta: 49.2 + cyan: 80.8 + white: 100.5 + brightBlack: 28 + brightRed: 49 + brightGreen: 87.5 + brightYellow: 88 + brightBlue: 45.4 + brightMagenta: 67.8 + brightCyan: 91.6 + brightWhite: 104.4 diff --git a/themes/obsidian-pro-dark-pink-purple.yaml b/themes/obsidian-pro-dark-pink-purple.yaml new file mode 100644 index 00000000..013db0b7 --- /dev/null +++ b/themes/obsidian-pro-dark-pink-purple.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Pro - Dark Pink Purple" +source: + marketplace_id: "williamkoller.obsidian-pro-theme" + version: "1.0.1" + installs: 42 + author: "williamkoller" + repo: "https://github.com/williamkoller/obsidian-pro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" +colors: + bg: "#0A0A0C" + fg: "#EDEDF2" + black: "#1D1D20" + red: "#F472B6" + green: "#F0ABFC" + yellow: "#FBBF24" + blue: "#C084FC" + magenta: "#E879F9" + cyan: "#F9A8D4" + white: "#FAFAFA" + brightBlack: "#6B7280" + brightRed: "#FB7185" + brightGreen: "#F5D0FE" + brightYellow: "#FCD34D" + brightBlue: "#D8B4FE" + brightMagenta: "#F0ABFC" + brightCyan: "#FBCFE8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 96.2 + black: 0 + red: 50.7 + green: 70.5 + yellow: 73.6 + blue: 50.5 + magenta: 53.9 + cyan: 68.8 + white: 104.4 + brightBlack: 28 + brightRed: 50.1 + brightGreen: 85.4 + brightYellow: 82.2 + brightBlue: 70.1 + brightMagenta: 70.5 + brightCyan: 84.8 + brightWhite: 107.7 diff --git a/themes/obsidian-pro-dark-purple-neon.yaml b/themes/obsidian-pro-dark-purple-neon.yaml new file mode 100644 index 00000000..43b2d216 --- /dev/null +++ b/themes/obsidian-pro-dark-purple-neon.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Pro - Dark Purple Neon" +source: + marketplace_id: "williamkoller.obsidian-pro-theme" + version: "1.0.1" + installs: 42 + author: "williamkoller" + repo: "https://github.com/williamkoller/obsidian-pro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" +colors: + bg: "#0A0A0A" + fg: "#F4F4F5" + black: "#111111" + red: "#F43F5E" + green: "#C084FC" + yellow: "#FACC15" + blue: "#C084FC" + magenta: "#E879F9" + cyan: "#E9D5FF" + white: "#FAFAFA" + brightBlack: "#6B7280" + brightRed: "#FB7185" + brightGreen: "#E9D5FF" + brightYellow: "#FDE047" + brightBlue: "#D8B4FE" + brightMagenta: "#E9D5FF" + brightCyan: "#F5E8FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 100.5 + black: 0 + red: 38.7 + green: 50.5 + yellow: 78.6 + blue: 50.5 + magenta: 54 + cyan: 85.7 + white: 104.4 + brightBlack: 28 + brightRed: 50.1 + brightGreen: 85.7 + brightYellow: 88 + brightBlue: 70.1 + brightMagenta: 85.7 + brightCyan: 95.7 + brightWhite: 107.7 diff --git a/themes/obsidian-pro-dark-purple-pastel.yaml b/themes/obsidian-pro-dark-purple-pastel.yaml new file mode 100644 index 00000000..bc1a927d --- /dev/null +++ b/themes/obsidian-pro-dark-purple-pastel.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Pro - Dark Purple Pastel" +source: + marketplace_id: "williamkoller.obsidian-pro-theme" + version: "1.0.1" + installs: 42 + author: "williamkoller" + repo: "https://github.com/williamkoller/obsidian-pro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" +colors: + bg: "#0B0B0B" + fg: "#EAEAEC" + black: "#111111" + red: "#EF4444" + green: "#C4B5FD" + yellow: "#F5D487" + blue: "#A78BFA" + magenta: "#B9A1FF" + cyan: "#DDD6FE" + white: "#F2F2F2" + brightBlack: "#6B7280" + brightRed: "#F87171" + brightGreen: "#DDD6FE" + brightYellow: "#F8E29A" + brightBlue: "#C4B5FD" + brightMagenta: "#DCD2FF" + brightCyan: "#E9E3FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.1 + black: 0 + red: 37.7 + green: 67.7 + yellow: 82.5 + blue: 49.1 + magenta: 59.1 + cyan: 84.4 + white: 99.2 + brightBlack: 28 + brightRed: 48.9 + brightGreen: 84.4 + brightYellow: 89.5 + brightBlue: 67.7 + brightMagenta: 82.7 + brightCyan: 91.8 + brightWhite: 107.7 diff --git a/themes/obsidian-pro-dark-purple.yaml b/themes/obsidian-pro-dark-purple.yaml new file mode 100644 index 00000000..520f15cc --- /dev/null +++ b/themes/obsidian-pro-dark-purple.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Pro - Dark Purple" +source: + marketplace_id: "williamkoller.obsidian-pro-theme" + version: "1.0.1" + installs: 42 + author: "williamkoller" + repo: "https://github.com/williamkoller/obsidian-pro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" +colors: + bg: "#0A0A0A" + fg: "#E4E4E7" + black: "#111111" + red: "#EF4444" + green: "#A78BFA" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#8B5CF6" + cyan: "#A78BFA" + white: "#E4E4E7" + brightBlack: "#6B7280" + brightRed: "#F87171" + brightGreen: "#C4B5FD" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#A78BFA" + brightCyan: "#DDD6FE" + brightWhite: "#F9FAFB" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 90.4 + black: 0 + red: 37.7 + green: 49.2 + yellow: 60.3 + blue: 37.6 + magenta: 32.8 + cyan: 49.2 + white: 90.4 + brightBlack: 28 + brightRed: 49 + brightGreen: 67.7 + brightYellow: 73.6 + brightBlue: 52.2 + brightMagenta: 49.2 + brightCyan: 84.5 + brightWhite: 104.3 diff --git a/themes/obsidian-pro-dark.yaml b/themes/obsidian-pro-dark.yaml new file mode 100644 index 00000000..22dc5337 --- /dev/null +++ b/themes/obsidian-pro-dark.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Pro - Dark" +source: + marketplace_id: "williamkoller.obsidian-pro-theme" + version: "1.0.1" + installs: 42 + author: "williamkoller" + repo: "https://github.com/williamkoller/obsidian-pro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" +colors: + bg: "#0A0A0A" + fg: "#E4E4E7" + black: "#111111" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#8B5CF6" + cyan: "#22D3EE" + white: "#E4E4E7" + brightBlack: "#6B7280" + brightRed: "#F87171" + brightGreen: "#34D399" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#A78BFA" + brightCyan: "#67E8F9" + brightWhite: "#F9FAFB" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 90.4 + black: 0 + red: 37.7 + green: 52.7 + yellow: 60.3 + blue: 37.6 + magenta: 32.8 + cyan: 69.4 + white: 90.4 + brightBlack: 28 + brightRed: 49 + brightGreen: 66 + brightYellow: 73.6 + brightBlue: 52.2 + brightMagenta: 49.2 + brightCyan: 82 + brightWhite: 104.3 diff --git a/themes/obsidian-pro-white-purple.yaml b/themes/obsidian-pro-white-purple.yaml new file mode 100644 index 00000000..b5e2ae68 --- /dev/null +++ b/themes/obsidian-pro-white-purple.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Pro - White Purple" +source: + marketplace_id: "williamkoller.obsidian-pro-theme" + version: "1.0.1" + installs: 42 + author: "williamkoller" + repo: "https://github.com/williamkoller/obsidian-pro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" +colors: + bg: "#FAFAFA" + fg: "#222222" + black: "#888888" + red: "#EF5D9C" + green: "#B084F6" + yellow: "#D9B03D" + blue: "#8B5CF6" + magenta: "#C084FC" + cyan: "#B5A6FF" + white: "#4A4A4A" + brightBlack: "#AAAAAA" + brightRed: "#F788C8" + brightGreen: "#D6BAFF" + brightYellow: "#F3CE54" + brightBlue: "#A78BFA" + brightMagenta: "#D8B4FE" + brightCyan: "#CFC6FF" + brightWhite: "#222222" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 99.9 + black: 60.1 + red: 54.5 + green: 50.8 + yellow: 36.9 + blue: 65.7 + magenta: 48.2 + cyan: 38.7 + white: 87.3 + brightBlack: 42.8 + brightRed: 41.1 + brightGreen: 27.5 + brightYellow: 21.3 + brightBlue: 49.6 + brightMagenta: 29.4 + brightCyan: 23.9 + brightWhite: 99.9 diff --git a/themes/obsidian-pro-white.yaml b/themes/obsidian-pro-white.yaml new file mode 100644 index 00000000..a5dcc881 --- /dev/null +++ b/themes/obsidian-pro-white.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Pro White" +source: + marketplace_id: "williamkoller.obsidian-pro-theme" + version: "1.0.1" + installs: 42 + author: "williamkoller" + repo: "https://github.com/williamkoller/obsidian-pro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" +colors: + bg: "#FAFAFA" + fg: "#1F1F1F" + black: "#111111" + red: "#DC2626" + green: "#059669" + yellow: "#CA8A04" + blue: "#2563EB" + magenta: "#7C3AED" + cyan: "#0891B2" + white: "#1F1F1F" + brightBlack: "#6B7280" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#FBBF24" + brightBlue: "#3B82F6" + brightMagenta: "#8B5CF6" + brightCyan: "#22D3EE" + brightWhite: "#374151" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 100.5 + black: 102.4 + red: 68.6 + green: 61.6 + yellow: 52.5 + blue: 71.9 + magenta: 74.5 + cyan: 60.8 + white: 100.5 + brightBlack: 70.6 + brightRed: 60.8 + brightGreen: 46.1 + brightYellow: 26.2 + brightBlue: 60.9 + brightMagenta: 65.7 + brightCyan: 30.1 + brightWhite: 90.9 diff --git a/themes/obsidian-pulse-light-theme.yaml b/themes/obsidian-pulse-light-theme.yaml new file mode 100644 index 00000000..ea4b615c --- /dev/null +++ b/themes/obsidian-pulse-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Pulse Light Theme" +source: + marketplace_id: "MehdiZayani.obsidian-pulse-theme" + version: "0.0.1" + installs: 53 + author: "Mehdi Zayani" + repo: "https://github.com/mehdi-zayani/obsidian-pulse-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MehdiZayani.obsidian-pulse-theme" +colors: + bg: "#ECECEC" + fg: "#333333" + black: "#E0E0E0" + red: "#FF5555" + green: "#8BE9FD" + yellow: "#D8B4FF" + blue: "#8B5CF6" + magenta: "#C574DD" + cyan: "#96D6FF" + white: "#333333" + brightBlack: "#999999" + brightRed: "#FF6E6E" + brightGreen: "#70F0A8" + brightYellow: "#C4B5FD" + brightBlue: "#A078F0" + brightMagenta: "#DCA3FF" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 87.4 + black: 0 + red: 46.1 + green: 0 + yellow: 21.1 + blue: 57.5 + magenta: 45.6 + cyan: 14.7 + white: 87.4 + brightBlack: 43.4 + brightRed: 40.8 + brightGreen: 9 + brightYellow: 23.4 + brightBlue: 48.4 + brightMagenta: 26.3 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/obsidian-pulse-theme.yaml b/themes/obsidian-pulse-theme.yaml new file mode 100644 index 00000000..3992eb9a --- /dev/null +++ b/themes/obsidian-pulse-theme.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Pulse Theme" +source: + marketplace_id: "MehdiZayani.obsidian-pulse-theme" + version: "0.0.1" + installs: 53 + author: "Mehdi Zayani" + repo: "https://github.com/mehdi-zayani/obsidian-pulse-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MehdiZayani.obsidian-pulse-theme" +colors: + bg: "#1B1D2A" + fg: "#D8DEE9" + black: "#1B1D2A" + red: "#FF5555" + green: "#70F0A8" + yellow: "#8BE9FD" + blue: "#8BE9FD" + magenta: "#C574DD" + cyan: "#DCA3FF" + white: "#E8E8F0" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#9AF7B1" + brightYellow: "#70F0A8" + brightBlue: "#96D6FF" + brightMagenta: "#DCA3FF" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "orange" + hue: 277 + contrast: + fg: 84.6 + black: 0 + red: 42.6 + green: 81.4 + yellow: 83.1 + blue: 83.1 + magenta: 43.1 + cyan: 63 + white: 91.5 + brightBlack: 27.2 + brightRed: 48 + brightGreen: 87.9 + brightYellow: 81.4 + brightBlue: 75.2 + brightMagenta: 63 + brightCyan: 83.1 + brightWhite: 101.2 diff --git a/themes/obsidian-sea.yaml b/themes/obsidian-sea.yaml new file mode 100644 index 00000000..5e40313a --- /dev/null +++ b/themes/obsidian-sea.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Sea" +source: + marketplace_id: "eight84.obsidian-sea" + version: "1.8.0" + installs: 66 + author: "eight84" + repo: "https://github.com/eight84/obsidian-sea-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eight84.obsidian-sea" +colors: + bg: "#0F111A" + fg: "#E0E6ED" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#8BE9FD" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 275 + contrast: + fg: 90.7 + black: 0 + red: 43.9 + green: 85.3 + yellow: 99 + blue: 84.4 + magenta: 55 + cyan: 84.4 + white: 102.4 + brightBlack: 28.5 + brightRed: 49.3 + brightGreen: 89.5 + brightYellow: 104 + brightBlue: 66.6 + brightMagenta: 63.1 + brightCyan: 97.2 + brightWhite: 107.3 diff --git a/themes/obsidian-sunset.yaml b/themes/obsidian-sunset.yaml new file mode 100644 index 00000000..367596db --- /dev/null +++ b/themes/obsidian-sunset.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Sunset" +source: + marketplace_id: "lczerniawski.obsidiansunset" + version: "1.5.2" + installs: 1025 + author: "Łukasz Czerniawski" + repo: "https://github.com/lczerniawski/ObsidianSunset" + url: "https://marketplace.visualstudio.com/items?itemName=lczerniawski.obsidiansunset" +colors: + bg: "#171615" + fg: "#BFBDB6" + black: "#11151C" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 65.9 + black: 0 + red: 44.1 + green: 70.1 + yellow: 66.7 + blue: 60.7 + magenta: 60.7 + cyan: 78 + white: 71.8 + brightBlack: 23 + brightRed: 46.7 + brightGreen: 73.4 + brightYellow: 69.7 + brightBlue: 63.4 + brightMagenta: 63.5 + brightCyan: 80.9 + brightWhite: 107 diff --git a/themes/obsidian-void.yaml b/themes/obsidian-void.yaml new file mode 100644 index 00000000..d6fd906b --- /dev/null +++ b/themes/obsidian-void.yaml @@ -0,0 +1,49 @@ +name: "Obsidian Void" +source: + marketplace_id: "MohammadHasani.obsidian-void" + version: "0.0.4" + installs: 86 + author: "Mohammad Hasani" + repo: "https://github.com/mohammadhasanii/obsidian-void" + url: "https://marketplace.visualstudio.com/items?itemName=MohammadHasani.obsidian-void" +colors: + bg: "#10121C" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5F5F" + green: "#87FF87" + yellow: "#FFFF87" + blue: "#5F87FF" + magenta: "#AF87FF" + cyan: "#5FD7D7" + white: "#EEEEEE" + brightBlack: "#444444" + brightRed: "#FF8787" + brightGreen: "#AFFFAF" + brightYellow: "#FFFFAF" + brightBlue: "#87AFFF" + brightMagenta: "#D7AFFF" + brightCyan: "#87FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 105 + black: 0 + red: 45.8 + green: 90.8 + yellow: 103.2 + blue: 41.2 + magenta: 48.8 + cyan: 71.3 + white: 96.1 + brightBlack: 9.2 + brightRed: 56.2 + brightGreen: 94.9 + brightYellow: 104.2 + brightBlue: 58.7 + brightMagenta: 67.7 + brightCyan: 95.1 + brightWhite: 107.3 diff --git a/themes/obsidian.yaml b/themes/obsidian.yaml new file mode 100644 index 00000000..680840e3 --- /dev/null +++ b/themes/obsidian.yaml @@ -0,0 +1,49 @@ +name: "Obsidian" +source: + marketplace_id: "georgeburt.obsidian-vscode" + version: "0.0.1" + installs: 144 + author: "Burty" + repo: "https://github.com/georgeeburt/obsidian-theme" + url: "https://marketplace.visualstudio.com/items?itemName=georgeburt.obsidian-vscode" +colors: + bg: "#2C2C2C" + fg: "#E8E8E8" + black: "#000000" + red: "#FF2E2E" + green: "#00F597" + yellow: "#D5D500" + blue: "#195DFF" + magenta: "#E600E6" + cyan: "#26D4FF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#35FF2F" + brightYellow: "#FFFF00" + brightBlue: "#00E7FF" + brightMagenta: "#FF16FF" + brightCyan: "#00FFDB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 88.7 + black: 0 + red: 34.9 + green: 78.6 + yellow: 72.9 + blue: 22.8 + magenta: 34.5 + cyan: 66.9 + white: 86.8 + brightBlack: 18.8 + brightRed: 33.3 + brightGreen: 82.7 + brightYellow: 98.5 + brightBlue: 75.8 + brightMagenta: 42.2 + brightCyan: 86.2 + brightWhite: 86.8 diff --git a/themes/obsidianite-amoled.yaml b/themes/obsidianite-amoled.yaml new file mode 100644 index 00000000..3ea5d0ae --- /dev/null +++ b/themes/obsidianite-amoled.yaml @@ -0,0 +1,49 @@ +name: "Obsidianite AMOLED" +source: + marketplace_id: "shd0w.obsidianite-vscode" + version: "1.0.0" + installs: 0 + author: "shd0w" + repo: "https://github.com/shd0w/obsidianite-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=shd0w.obsidianite-vscode" +colors: + bg: "#000000" + fg: "#BEBEBE" + black: "#000000" + red: "#F4569D" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#0FB6D6" + white: "#BEBEBE" + brightBlack: "#5C6370" + brightRed: "#FF79C6" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#5FD7FF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 67.5 + black: 0 + red: 44.1 + green: 85.9 + yellow: 99.6 + blue: 52.7 + magenta: 56.6 + cyan: 55 + white: 67.5 + brightBlack: 21.6 + brightRed: 55.6 + brightGreen: 90 + brightYellow: 104.5 + brightBlue: 67.1 + brightMagenta: 63.6 + brightCyan: 74.1 + brightWhite: 103 diff --git a/themes/obsidianite.yaml b/themes/obsidianite.yaml new file mode 100644 index 00000000..6e4eace6 --- /dev/null +++ b/themes/obsidianite.yaml @@ -0,0 +1,49 @@ +name: "Obsidianite" +source: + marketplace_id: "shd0w.obsidianite-vscode" + version: "1.0.0" + installs: 0 + author: "shd0w" + repo: "https://github.com/shd0w/obsidianite-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=shd0w.obsidianite-vscode" +colors: + bg: "#100E17" + fg: "#BEBEBE" + black: "#0D0B12" + red: "#F4569D" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#0FB6D6" + white: "#BEBEBE" + brightBlack: "#5C6370" + brightRed: "#FF79C6" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#5FD7FF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 295 + contrast: + fg: 67.1 + black: 0 + red: 43.7 + green: 85.5 + yellow: 99.2 + blue: 52.3 + magenta: 56.2 + cyan: 54.6 + white: 67.1 + brightBlack: 21.2 + brightRed: 55.2 + brightGreen: 89.6 + brightYellow: 104.1 + brightBlue: 66.7 + brightMagenta: 63.2 + brightCyan: 73.7 + brightWhite: 102.6 diff --git a/themes/oc-7-light.yaml b/themes/oc-7-light.yaml new file mode 100644 index 00000000..03e00995 --- /dev/null +++ b/themes/oc-7-light.yaml @@ -0,0 +1,49 @@ +name: "OC-7 light" +source: + marketplace_id: "7off.oc7-light" + version: "0.0.1" + installs: 1099 + author: "Anatoliy Semenov" + repo: "https://github.com/7off/vscode-oc7light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=7off.oc7-light" +colors: + bg: "#F9F9F9" + fg: "#383A42" + black: "#D5D6DD" + red: "#D52753" + green: "#23974A" + yellow: "#DF631C" + blue: "#275FE4" + magenta: "#823FF1" + cyan: "#27618D" + white: "#000000" + brightBlack: "#A0A1A7" + brightRed: "#FF6480" + brightGreen: "#3CBC66" + brightYellow: "#F57D00" + brightBlue: "#0099E1" + brightMagenta: "#CE33C0" + brightCyan: "#6D93BB" + brightWhite: "#26272D" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 92.6 + black: 17.8 + red: 68.9 + green: 61 + yellow: 58.6 + blue: 73 + magenta: 72 + cyan: 78.8 + white: 102.5 + brightBlack: 46.8 + brightRed: 50.1 + brightGreen: 44.2 + brightYellow: 47.9 + brightBlue: 54.4 + brightMagenta: 65 + brightCyan: 55.7 + brightWhite: 98.2 diff --git a/themes/ocean-blue-theme.yaml b/themes/ocean-blue-theme.yaml new file mode 100644 index 00000000..5012336b --- /dev/null +++ b/themes/ocean-blue-theme.yaml @@ -0,0 +1,49 @@ +name: "Ocean Blue Theme" +source: + marketplace_id: "wipaaaid.oceanish-blue-theme" + version: "0.0.1" + installs: 596 + author: "wipaaa" + repo: "https://github.com/wipaaa/vscode-oceanish-blue-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wipaaaid.oceanish-blue-theme" +colors: + bg: "#000717" + fg: "#A6DEFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 254 + contrast: + fg: 81.9 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/ocean-breeze.yaml b/themes/ocean-breeze.yaml new file mode 100644 index 00000000..feee01be --- /dev/null +++ b/themes/ocean-breeze.yaml @@ -0,0 +1,49 @@ +name: "Ocean Breeze" +source: + marketplace_id: "nhcarrigan.ocean-breeze" + version: "1.1.1" + installs: 28 + author: "NHCarrigan" + repo: "https://codeberg.org/nhcarrigan/ocean-breeze" + url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.ocean-breeze" +colors: + bg: "#012A22" + fg: "#ABFCEC" + black: "#001610" + red: "#FF6B6B" + green: "#4DDBBA" + yellow: "#FFD93D" + blue: "#6BC5FF" + magenta: "#FF92DF" + cyan: "#89FFEA" + white: "#C4FCF2" + brightBlack: "#012A22" + brightRed: "#FF8585" + brightGreen: "#6BEDCC" + brightYellow: "#FFE074" + brightBlue: "#92D5FF" + brightMagenta: "#FFB2E7" + brightCyan: "#A9FFF0" + brightWhite: "#E2FCF8" +meta: + mode: "dark" + accent: "orange" + hue: 176 + contrast: + fg: 93 + black: 0 + red: 46.1 + green: 68.9 + yellow: 82.3 + blue: 63.6 + magenta: 60.6 + cyan: 91.8 + white: 95.6 + brightBlack: 0 + brightRed: 53.2 + brightGreen: 79.7 + brightYellow: 86.1 + brightBlue: 73.3 + brightMagenta: 71.5 + brightCyan: 94.5 + brightWhite: 99.3 diff --git a/themes/ocean-color-theme.yaml b/themes/ocean-color-theme.yaml new file mode 100644 index 00000000..57bba9ae --- /dev/null +++ b/themes/ocean-color-theme.yaml @@ -0,0 +1,49 @@ +name: "ocean-color-theme" +source: + marketplace_id: "wavebeem.theme-unoduetre" + version: "5.11.1" + installs: 4290 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/vscode-theme-unoduetre" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" +colors: + bg: "#1C2B4A" + fg: "#D1DFFA" + black: "#333333" + red: "#EA8080" + green: "#85E0A0" + yellow: "#EBC5A3" + blue: "#A89DF1" + magenta: "#EA9EE3" + cyan: "#7EE6EC" + white: "#ECEEF4" + brightBlack: "#333333" + brightRed: "#EA8080" + brightGreen: "#85E0A0" + brightYellow: "#EBC5A3" + brightBlue: "#A89DF1" + brightMagenta: "#EA9EE3" + brightCyan: "#7EE6EC" + brightWhite: "#ECEEF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 82.6 + black: 0 + red: 46.3 + green: 72 + yellow: 71.4 + blue: 50.6 + magenta: 59.5 + cyan: 77.5 + white: 92.5 + brightBlack: 0 + brightRed: 46.3 + brightGreen: 72 + brightYellow: 71.4 + brightBlue: 50.6 + brightMagenta: 59.5 + brightCyan: 77.5 + brightWhite: 92.5 diff --git a/themes/ocean-deep-depth-stability.yaml b/themes/ocean-deep-depth-stability.yaml new file mode 100644 index 00000000..1f5f89b2 --- /dev/null +++ b/themes/ocean-deep-depth-stability.yaml @@ -0,0 +1,49 @@ +name: "Ocean Deep - Depth & Stability" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#0A1929" + fg: "#E3F2FD" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 251 + contrast: + fg: 96.7 + black: 0 + red: 37.5 + green: 47.4 + yellow: 92.2 + blue: 42.8 + magenta: 32.5 + cyan: 56.3 + white: 95.9 + brightBlack: 8.9 + brightRed: 42.7 + brightGreen: 81.8 + brightYellow: 101.5 + brightBlue: 40.3 + brightMagenta: 41.3 + brightCyan: 91 + brightWhite: 106.7 diff --git a/themes/ocean-eyes-medium.yaml b/themes/ocean-eyes-medium.yaml new file mode 100644 index 00000000..387ccf09 --- /dev/null +++ b/themes/ocean-eyes-medium.yaml @@ -0,0 +1,49 @@ +name: "Ocean Eyes Medium" +source: + marketplace_id: "SethCox.ocean-eyes" + version: "0.0.8" + installs: 5213 + author: "Seth Cox" + repo: "https://github.com/sethaddison/ocean-eyes-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SethCox.ocean-eyes" +colors: + bg: "#1F2937" + fg: "#FFF9F1" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 100.9 + black: 0 + red: 34.2 + green: 57.8 + yellow: 46.1 + blue: 47.1 + magenta: 36.5 + cyan: 50 + white: 88.1 + brightBlack: 12.9 + brightRed: 43.5 + brightGreen: 74.2 + brightYellow: 58.7 + brightBlue: 61.2 + brightMagenta: 47.7 + brightCyan: 65.3 + brightWhite: 80.5 diff --git a/themes/ocean-eyes.yaml b/themes/ocean-eyes.yaml new file mode 100644 index 00000000..052f15ba --- /dev/null +++ b/themes/ocean-eyes.yaml @@ -0,0 +1,49 @@ +name: "Ocean Eyes" +source: + marketplace_id: "SethCox.ocean-eyes" + version: "0.0.8" + installs: 5213 + author: "Seth Cox" + repo: "https://github.com/sethaddison/ocean-eyes-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SethCox.ocean-eyes" +colors: + bg: "#14202C" + fg: "#FFF9F1" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 249 + contrast: + fg: 102.4 + black: 7.8 + red: 35.7 + green: 59.4 + yellow: 47.6 + blue: 48.7 + magenta: 38.1 + cyan: 51.5 + white: 89.7 + brightBlack: 14.5 + brightRed: 45.1 + brightGreen: 75.8 + brightYellow: 60.2 + brightBlue: 62.7 + brightMagenta: 49.3 + brightCyan: 66.8 + brightWhite: 82 diff --git a/themes/ocean-high-contrast.yaml b/themes/ocean-high-contrast.yaml new file mode 100644 index 00000000..84830c9c --- /dev/null +++ b/themes/ocean-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Ocean High Contrast" +source: + marketplace_id: "NotYasho.ocean-high-contrast" + version: "4.1.0" + installs: 9850 + author: "NotYasho" + repo: "https://github.com/NotYasho/ocean-high-contrast" + url: "https://marketplace.visualstudio.com/items?itemName=NotYasho.ocean-high-contrast" +colors: + bg: "#0B0C13" + fg: "#E6EAFC" + black: "#7A7A7A" + red: "#DE1C91" + green: "#94E400" + yellow: "#F9E800" + blue: "#0080FF" + magenta: "#674BFF" + cyan: "#00D5E0" + white: "#A89984" + brightBlack: "#7B708A" + brightRed: "#FF1E69" + brightGreen: "#88FF00" + brightYellow: "#F9D405" + brightBlue: "#00BCFF" + brightMagenta: "#7E3BFF" + brightCyan: "#00F2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 278 + contrast: + fg: 94.3 + black: 31.7 + red: 32.3 + green: 77.1 + yellow: 90.7 + blue: 36.8 + magenta: 26.5 + cyan: 69.4 + white: 48 + brightBlack: 29.2 + brightRed: 38.9 + brightGreen: 90 + brightYellow: 81.7 + brightBlue: 59.8 + brightMagenta: 26.2 + brightCyan: 85.3 + brightWhite: 107.6 diff --git a/themes/ocean-mist-light.yaml b/themes/ocean-mist-light.yaml new file mode 100644 index 00000000..cae20e82 --- /dev/null +++ b/themes/ocean-mist-light.yaml @@ -0,0 +1,49 @@ +name: "Ocean Mist Light" +source: + marketplace_id: "MalikHaziq.ocean-mist" + version: "0.2.1" + installs: 247 + author: "Malik Haziq" + repo: "https://github.com/Malik-Haziq/Ocean-Mist-Vscode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MalikHaziq.ocean-mist" +colors: + bg: "#242E30" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#D9D9D9" +meta: + mode: "dark" + accent: "pink" + hue: 211 + contrast: + fg: 76.2 + black: 0 + red: 23.4 + green: 49.7 + yellow: 82.3 + blue: 24.1 + magenta: 26.5 + cyan: 44.3 + white: 86.7 + brightBlack: 18.7 + brightRed: 35.3 + brightGreen: 60.2 + brightYellow: 92.3 + brightBlue: 36.7 + brightMagenta: 42.1 + brightCyan: 52.1 + brightWhite: 79.2 diff --git a/themes/ocean-mist.yaml b/themes/ocean-mist.yaml new file mode 100644 index 00000000..0a912f0e --- /dev/null +++ b/themes/ocean-mist.yaml @@ -0,0 +1,49 @@ +name: "Ocean Mist" +source: + marketplace_id: "MalikHaziq.ocean-mist" + version: "0.2.1" + installs: 247 + author: "Malik Haziq" + repo: "https://github.com/Malik-Haziq/Ocean-Mist-Vscode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MalikHaziq.ocean-mist" +colors: + bg: "#101E21" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#D9D9D9" +meta: + mode: "dark" + accent: "pink" + hue: 213 + contrast: + fg: 78.9 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 82 diff --git a/themes/ocean-night.yaml b/themes/ocean-night.yaml new file mode 100644 index 00000000..1b418288 --- /dev/null +++ b/themes/ocean-night.yaml @@ -0,0 +1,49 @@ +name: "Ocean Night" +source: + marketplace_id: "KaydenIreland.kiki-themes" + version: "1.0.1" + installs: 23 + author: "Kayden Ireland" + repo: "https://github.com/kaydenireland/vs-kiki" + url: "https://marketplace.visualstudio.com/items?itemName=KaydenIreland.kiki-themes" +colors: + bg: "#1E272E" + fg: "#E8F5F7" + black: "#1E272E" + red: "#FF5252" + green: "#7BED9F" + yellow: "#FFD32A" + blue: "#5AB0EF" + magenta: "#A29BFE" + cyan: "#4ECDC4" + white: "#E8F5F7" + brightBlack: "#546E7A" + brightRed: "#FF6B9D" + brightGreen: "#A0D468" + brightYellow: "#FFCE54" + brightBlue: "#78D9FF" + brightMagenta: "#B388FF" + brightCyan: "#78E0DC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 242 + contrast: + fg: 96.6 + black: 0 + red: 40.8 + green: 78.9 + yellow: 79.5 + blue: 52.7 + magenta: 51.3 + cyan: 62.6 + white: 96.6 + brightBlack: 21.8 + brightRed: 47.5 + brightGreen: 68.3 + brightYellow: 77.8 + brightBlue: 73.2 + brightMagenta: 47.2 + brightCyan: 74.7 + brightWhite: 104.8 diff --git a/themes/ocean-theme.yaml b/themes/ocean-theme.yaml new file mode 100644 index 00000000..e23fc82e --- /dev/null +++ b/themes/ocean-theme.yaml @@ -0,0 +1,49 @@ +name: "Ocean-theme" +source: + marketplace_id: "NathanHermes.dark-ocean-theme" + version: "0.0.0" + installs: 494 + author: "NathanHermes" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NathanHermes.dark-ocean-theme" +colors: + bg: "#131622" + fg: "#8F93A2" + black: "#000000" + red: "#E25822" + green: "#14B37D" + yellow: "#F2F27A" + blue: "#3A75C4" + magenta: "#703FAF" + cyan: "#87D3F8" + white: "#F3EFE0" + brightBlack: "#FFFFFF" + brightRed: "#E25822" + brightGreen: "#14B37D" + brightYellow: "#F2F27A" + brightBlue: "#3A75C4" + brightMagenta: "#703FAF" + brightCyan: "#87D3F8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 273 + contrast: + fg: 43.3 + black: 0 + red: 36.9 + green: 49.1 + yellow: 94.5 + blue: 28.7 + magenta: 17.4 + cyan: 73.2 + white: 96.3 + brightBlack: 106.9 + brightRed: 36.9 + brightGreen: 49.1 + brightYellow: 94.5 + brightBlue: 28.7 + brightMagenta: 17.4 + brightCyan: 73.2 + brightWhite: 106.9 diff --git a/themes/ocean.yaml b/themes/ocean.yaml new file mode 100644 index 00000000..46a413ef --- /dev/null +++ b/themes/ocean.yaml @@ -0,0 +1,49 @@ +name: "Ocean" +source: + marketplace_id: "Sent2Dev.ocean-theme" + version: "1.0.0" + installs: 233 + author: "Sent2Dev" + repo: "https://github.com/Sent2Dev/ocean-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sent2Dev.ocean-theme" +colors: + bg: "#005486" + fg: "#00DBFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#ADADAD" +meta: + mode: "dark" + accent: "pink" + hue: 245 + contrast: + fg: 58.3 + black: 16.7 + red: 11.8 + green: 38.1 + yellow: 70.7 + blue: 12.5 + magenta: 14.9 + cyan: 32.7 + white: 75.1 + brightBlack: 0 + brightRed: 23.7 + brightGreen: 48.6 + brightYellow: 80.7 + brightBlue: 25.1 + brightMagenta: 30.5 + brightCyan: 40.5 + brightWhite: 42 diff --git a/themes/oceana.yaml b/themes/oceana.yaml new file mode 100644 index 00000000..3906dfca --- /dev/null +++ b/themes/oceana.yaml @@ -0,0 +1,49 @@ +name: "Oceana" +source: + marketplace_id: "marzeq.oceana" + version: "1.0.0" + installs: 104 + author: "marzeq" + repo: "https://github.com/marzeq/oceana" + url: "https://marketplace.visualstudio.com/items?itemName=marzeq.oceana" +colors: + bg: "#102424" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 196 + contrast: + fg: 78.2 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.1 + magenta: 28.5 + cyan: 46.3 + white: 88.7 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/oceanic-solitude.yaml b/themes/oceanic-solitude.yaml new file mode 100644 index 00000000..d7e10e2a --- /dev/null +++ b/themes/oceanic-solitude.yaml @@ -0,0 +1,49 @@ +name: "Oceanic Solitude" +source: + marketplace_id: "DelfimCelestino.oceanic-solitude" + version: "0.0.3" + installs: 154 + author: "Delfim Celestino" + repo: "https://github.com/DelfimCelestino/oceanic-solitude" + url: "https://marketplace.visualstudio.com/items?itemName=DelfimCelestino.oceanic-solitude" +colors: + bg: "#1E293B" + fg: "#94A3B8" + black: "#0F172A" + red: "#DC2626" + green: "#16A34A" + yellow: "#FACC15" + blue: "#0284C7" + magenta: "#C026D3" + cyan: "#06B6D4" + white: "#F1F5F9" + brightBlack: "#475569" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FDE047" + brightBlue: "#38BDF8" + brightMagenta: "#E879F9" + brightCyan: "#67E8F9" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 48.1 + black: 0 + red: 26.5 + green: 38.4 + yellow: 75.2 + blue: 30.6 + magenta: 27 + cyan: 51.3 + white: 97.3 + brightBlack: 12.1 + brightRed: 45.5 + brightGreen: 67.9 + brightYellow: 84.6 + brightBlue: 57 + brightMagenta: 50.5 + brightCyan: 78.6 + brightWhite: 100.8 diff --git a/themes/oceanic-wind-cool.yaml b/themes/oceanic-wind-cool.yaml new file mode 100644 index 00000000..3e78827e --- /dev/null +++ b/themes/oceanic-wind-cool.yaml @@ -0,0 +1,49 @@ +name: "Oceanic Wind Cool" +source: + marketplace_id: "javifm.oceanic-wind" + version: "0.2.0" + installs: 1587 + author: "Javier Fernández" + repo: "https://github.com/javifm86/oceanic-wind" + url: "https://marketplace.visualstudio.com/items?itemName=javifm.oceanic-wind" +colors: + bg: "#1E293B" + fg: "#E2E8F0" + black: "#000000" + red: "#DC2626" + green: "#22C55E" + yellow: "#EAB308" + blue: "#0284C7" + magenta: "#C026D3" + cyan: "#0891B2" + white: "#FFFFFF" + brightBlack: "#64748B" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#38BDF8" + brightMagenta: "#E879F9" + brightCyan: "#22D3EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 88.9 + black: 0 + red: 26.5 + green: 54.2 + yellow: 62.5 + blue: 30.6 + magenta: 27 + cyan: 34.2 + white: 104.3 + brightBlack: 25.1 + brightRed: 45.5 + brightGreen: 67.9 + brightYellow: 75.2 + brightBlue: 57 + brightMagenta: 50.5 + brightCyan: 66 + brightWhite: 104.3 diff --git a/themes/oceanic-wind-warm.yaml b/themes/oceanic-wind-warm.yaml new file mode 100644 index 00000000..b0b37377 --- /dev/null +++ b/themes/oceanic-wind-warm.yaml @@ -0,0 +1,49 @@ +name: "Oceanic Wind Warm" +source: + marketplace_id: "javifm.oceanic-wind" + version: "0.2.0" + installs: 1587 + author: "Javier Fernández" + repo: "https://github.com/javifm86/oceanic-wind" + url: "https://marketplace.visualstudio.com/items?itemName=javifm.oceanic-wind" +colors: + bg: "#292524" + fg: "#E2E8F0" + black: "#000000" + red: "#DC2626" + green: "#22C55E" + yellow: "#EAB308" + blue: "#0284C7" + magenta: "#C026D3" + cyan: "#0891B2" + white: "#FFFFFF" + brightBlack: "#78716C" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#38BDF8" + brightMagenta: "#E879F9" + brightCyan: "#22D3EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 89.4 + black: 0 + red: 27.1 + green: 54.7 + yellow: 63 + blue: 31.1 + magenta: 27.5 + cyan: 34.8 + white: 104.8 + brightBlack: 25.3 + brightRed: 46 + brightGreen: 68.4 + brightYellow: 75.7 + brightBlue: 57.6 + brightMagenta: 51 + brightCyan: 66.5 + brightWhite: 104.8 diff --git a/themes/oceanic-wind.yaml b/themes/oceanic-wind.yaml new file mode 100644 index 00000000..0f1fce96 --- /dev/null +++ b/themes/oceanic-wind.yaml @@ -0,0 +1,49 @@ +name: "Oceanic Wind" +source: + marketplace_id: "javifm.oceanic-wind" + version: "0.2.0" + installs: 1587 + author: "Javier Fernández" + repo: "https://github.com/javifm86/oceanic-wind" + url: "https://marketplace.visualstudio.com/items?itemName=javifm.oceanic-wind" +colors: + bg: "#27272A" + fg: "#E2E8F0" + black: "#000000" + red: "#DC2626" + green: "#22C55E" + yellow: "#EAB308" + blue: "#0284C7" + magenta: "#C026D3" + cyan: "#0891B2" + white: "#FFFFFF" + brightBlack: "#71717A" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#38BDF8" + brightMagenta: "#E879F9" + brightCyan: "#22D3EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 89.2 + black: 0 + red: 26.8 + green: 54.5 + yellow: 62.8 + blue: 30.9 + magenta: 27.3 + cyan: 34.5 + white: 104.6 + brightBlack: 24.8 + brightRed: 45.8 + brightGreen: 68.2 + brightYellow: 75.5 + brightBlue: 57.3 + brightMagenta: 50.8 + brightCyan: 66.3 + brightWhite: 104.6 diff --git a/themes/oceans-of-andromeda.yaml b/themes/oceans-of-andromeda.yaml new file mode 100644 index 00000000..ae3c42bb --- /dev/null +++ b/themes/oceans-of-andromeda.yaml @@ -0,0 +1,49 @@ +name: "Oceans of Andromeda" +source: + marketplace_id: "samlovescoding.oceans-of-andromeda" + version: "1.0.2" + installs: 61 + author: "Sampan Verma" + repo: "https://github.com/samlovescoding/oceans-of-andromeda" + url: "https://marketplace.visualstudio.com/items?itemName=samlovescoding.oceans-of-andromeda" +colors: + bg: "#111D1E" + fg: "#639CAA" + black: "#111D1E" + red: "#BB6666" + green: "#66BB66" + yellow: "#BBB466" + blue: "#2A99B5" + magenta: "#BB66BB" + cyan: "#17C281" + white: "#517680" + brightBlack: "#223E43" + brightRed: "#DD7777" + brightGreen: "#66BB66" + brightYellow: "#BBB466" + brightBlue: "#4DB8D9" + brightMagenta: "#BB66BB" + brightCyan: "#19D08A" + brightWhite: "#639CAA" +meta: + mode: "dark" + accent: "teal" + hue: 203 + contrast: + fg: 42.9 + black: 0 + red: 32.9 + green: 54.1 + yellow: 58.9 + blue: 40 + magenta: 36.3 + cyan: 55.6 + white: 26.1 + brightBlack: 0 + brightRed: 43.9 + brightGreen: 54.1 + brightYellow: 58.9 + brightBlue: 55.8 + brightMagenta: 36.3 + brightCyan: 62.5 + brightWhite: 42.9 diff --git a/themes/ochre-dark-midnight.yaml b/themes/ochre-dark-midnight.yaml new file mode 100644 index 00000000..9a1d92db --- /dev/null +++ b/themes/ochre-dark-midnight.yaml @@ -0,0 +1,49 @@ +name: "Ochre Dark - Midnight" +source: + marketplace_id: "ochre-crafts.ochre" + version: "0.2.0" + installs: 22 + author: "ochre-crafts" + repo: "https://github.com/ochre-crafts/ochre-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ochre-crafts.ochre" +colors: + bg: "#0A0A0A" + fg: "#F5F5F5" + black: "#0A0A0A" + red: "#9F886A" + green: "#AD9474" + yellow: "#C2A47B" + blue: "#707B84" + magenta: "#7A858B" + cyan: "#AFA193" + white: "#F5F5F5" + brightBlack: "#404040" + brightRed: "#9F886A" + brightGreen: "#AD9474" + brightYellow: "#C2A47B" + brightBlue: "#707B84" + brightMagenta: "#7A858B" + brightCyan: "#AFA193" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 101.2 + black: 0 + red: 40.2 + green: 46.5 + yellow: 55.4 + blue: 31.6 + magenta: 36.2 + cyan: 52.4 + white: 101.2 + brightBlack: 8.3 + brightRed: 40.2 + brightGreen: 46.5 + brightYellow: 55.4 + brightBlue: 31.6 + brightMagenta: 36.2 + brightCyan: 52.4 + brightWhite: 104.4 diff --git a/themes/ochre-dark.yaml b/themes/ochre-dark.yaml new file mode 100644 index 00000000..3054c20a --- /dev/null +++ b/themes/ochre-dark.yaml @@ -0,0 +1,49 @@ +name: "Ochre Dark" +source: + marketplace_id: "ochre-crafts.ochre" + version: "0.2.0" + installs: 22 + author: "ochre-crafts" + repo: "https://github.com/ochre-crafts/ochre-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ochre-crafts.ochre" +colors: + bg: "#171717" + fg: "#F5F5F5" + black: "#171717" + red: "#9F886A" + green: "#AD9474" + yellow: "#C2A47B" + blue: "#707B84" + magenta: "#7A858B" + cyan: "#AFA193" + white: "#F5F5F5" + brightBlack: "#525252" + brightRed: "#9F886A" + brightGreen: "#AD9474" + brightYellow: "#C2A47B" + brightBlue: "#707B84" + brightMagenta: "#7A858B" + brightCyan: "#AFA193" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 100.3 + black: 0 + red: 39.4 + green: 45.6 + yellow: 54.5 + blue: 30.7 + magenta: 35.3 + cyan: 51.5 + white: 100.3 + brightBlack: 13.9 + brightRed: 39.4 + brightGreen: 45.6 + brightYellow: 54.5 + brightBlue: 30.7 + brightMagenta: 35.3 + brightCyan: 51.5 + brightWhite: 103.6 diff --git a/themes/ochre-light-snow.yaml b/themes/ochre-light-snow.yaml new file mode 100644 index 00000000..6a832183 --- /dev/null +++ b/themes/ochre-light-snow.yaml @@ -0,0 +1,49 @@ +name: "Ochre Light - Snow" +source: + marketplace_id: "ochre-crafts.ochre" + version: "0.2.0" + installs: 22 + author: "ochre-crafts" + repo: "https://github.com/ochre-crafts/ochre-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ochre-crafts.ochre" +colors: + bg: "#FAFAFA" + fg: "#171717" + black: "#FAFAFA" + red: "#5C3E1E" + green: "#6B4D2E" + yellow: "#7C5C35" + blue: "#6E7D87" + magenta: "#7A8F96" + cyan: "#6B5E52" + white: "#171717" + brightBlack: "#D4D4D4" + brightRed: "#5C3E1E" + brightGreen: "#6B4D2E" + brightYellow: "#7C5C35" + brightBlue: "#6E7D87" + brightMagenta: "#7A8F96" + brightCyan: "#6B5E52" + brightWhite: "#0A0A0A" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 101.7 + black: 0 + red: 89.4 + green: 83.7 + yellow: 77.4 + blue: 66.3 + magenta: 58.4 + cyan: 78.3 + white: 101.7 + brightBlack: 19.8 + brightRed: 89.4 + brightGreen: 83.7 + brightYellow: 77.4 + brightBlue: 66.3 + brightMagenta: 58.4 + brightCyan: 78.3 + brightWhite: 102.9 diff --git a/themes/ochre-light.yaml b/themes/ochre-light.yaml new file mode 100644 index 00000000..3d103b06 --- /dev/null +++ b/themes/ochre-light.yaml @@ -0,0 +1,49 @@ +name: "Ochre Light" +source: + marketplace_id: "ochre-crafts.ochre" + version: "0.2.0" + installs: 22 + author: "ochre-crafts" + repo: "https://github.com/ochre-crafts/ochre-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ochre-crafts.ochre" +colors: + bg: "#F5EDE0" + fg: "#2C1F10" + black: "#F5EDE0" + red: "#5C3E1E" + green: "#6B4D2E" + yellow: "#7C5C35" + blue: "#9A8A72" + magenta: "#A0907A" + cyan: "#6B5E52" + white: "#2C1F10" + brightBlack: "#E0D4BC" + brightRed: "#5C3E1E" + brightGreen: "#6B4D2E" + brightYellow: "#7C5C35" + brightBlue: "#9A8A72" + brightMagenta: "#A0907A" + brightCyan: "#6B5E52" + brightWhite: "#2C1F10" +meta: + mode: "light" + accent: "yellow" + hue: 80 + contrast: + fg: 92.7 + black: 0 + red: 82.2 + green: 76.5 + yellow: 70.2 + blue: 50.8 + magenta: 47.8 + cyan: 71.1 + white: 92.7 + brightBlack: 12 + brightRed: 82.2 + brightGreen: 76.5 + brightYellow: 70.2 + brightBlue: 50.8 + brightMagenta: 47.8 + brightCyan: 71.1 + brightWhite: 92.7 diff --git a/themes/octalide.yaml b/themes/octalide.yaml new file mode 100644 index 00000000..5b90c769 --- /dev/null +++ b/themes/octalide.yaml @@ -0,0 +1,49 @@ +name: "Octalide" +source: + marketplace_id: "octalide.octalide-color-theme" + version: "0.8.0" + installs: 59 + author: "octalide" + repo: "https://github.com/octalide/octalide-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=octalide.octalide-color-theme" +colors: + bg: "#000000" + fg: "#BBBBBB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 65.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/octo-dark-one.yaml b/themes/octo-dark-one.yaml new file mode 100644 index 00000000..dc3989e1 --- /dev/null +++ b/themes/octo-dark-one.yaml @@ -0,0 +1,49 @@ +name: "Octo Dark One" +source: + marketplace_id: "avalynndev.octo-theme" + version: "0.1.3" + installs: 247 + author: "avalynndev" + repo: "https://github.com/uzukidev/octo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=avalynndev.octo-theme" +colors: + bg: "#282C34" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 76.3 + black: 0 + red: 23.5 + green: 49.8 + yellow: 82.4 + blue: 24.2 + magenta: 26.6 + cyan: 44.4 + white: 86.8 + brightBlack: 18.8 + brightRed: 35.4 + brightGreen: 60.3 + brightYellow: 92.4 + brightBlue: 36.8 + brightMagenta: 42.2 + brightCyan: 52.2 + brightWhite: 86.8 diff --git a/themes/octo-light.yaml b/themes/octo-light.yaml new file mode 100644 index 00000000..19aae6a6 --- /dev/null +++ b/themes/octo-light.yaml @@ -0,0 +1,49 @@ +name: "Octo Light" +source: + marketplace_id: "avalynndev.octo-theme" + version: "0.1.3" + installs: 247 + author: "avalynndev" + repo: "https://github.com/uzukidev/octo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=avalynndev.octo-theme" +colors: + bg: "#F6F6F6" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 100.7 + black: 100.7 + red: 68.6 + green: 43.9 + yellow: 52.5 + blue: 80.7 + magenta: 69.2 + cyan: 55.2 + white: 80.6 + brightBlack: 73.4 + brightRed: 68.6 + brightGreen: 35.5 + brightYellow: 35.6 + brightBlue: 80.7 + brightMagenta: 69.2 + brightCyan: 55.2 + brightWhite: 43.1 diff --git a/themes/octopus-theme.yaml b/themes/octopus-theme.yaml new file mode 100644 index 00000000..0dfcfa8a --- /dev/null +++ b/themes/octopus-theme.yaml @@ -0,0 +1,49 @@ +name: "Octopus theme" +source: + marketplace_id: "DiamondRaft1575.octopus-theme" + version: "0.0.1" + installs: 55 + author: "DiamondRaft1575" + repo: "https://github.com/PythonRaft1575/Octopus-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=DiamondRaft1575.octopus-theme" +colors: + bg: "#0D1E34" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 78.6 + black: 0 + red: 25.9 + green: 52.1 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.2 diff --git a/themes/odyssey-night.yaml b/themes/odyssey-night.yaml new file mode 100644 index 00000000..d6f18107 --- /dev/null +++ b/themes/odyssey-night.yaml @@ -0,0 +1,49 @@ +name: "Odyssey Night" +source: + marketplace_id: "odese.odyssey-night" + version: "0.0.12" + installs: 695 + author: "odese" + repo: "https://github.com/odese/odyssey-night" + url: "https://marketplace.visualstudio.com/items?itemName=odese.odyssey-night" +colors: + bg: "#13141C" + fg: "#D7DAE0" + black: "#3F4451" + red: "#CD3131" + green: "#0DBC79" + yellow: "#D18F52" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E6E6E6" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#23D18B" + brightYellow: "#D4AF37" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 83.3 + black: 9.1 + red: 26.9 + green: 53.2 + yellow: 48.8 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.9 + brightBlack: 22.3 + brightRed: 36.8 + brightGreen: 63.8 + brightYellow: 60.5 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 107.1 diff --git a/themes/office-light.yaml b/themes/office-light.yaml new file mode 100644 index 00000000..cb8af8e8 --- /dev/null +++ b/themes/office-light.yaml @@ -0,0 +1,49 @@ +name: "Office Light" +source: + marketplace_id: "PowerTech.powerthemes" + version: "23.1.31" + installs: 6957 + author: "PowerTech" + repo: "https://github.com/powertech-center/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=PowerTech.powerthemes" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#F4B183" + green: "#A8D08D" + yellow: "#FFD965" + blue: "#8EAADB" + magenta: "#B2A1C7" + cyan: "#9CC3E5" + white: "#A5A5A5" + brightBlack: "#808080" + brightRed: "#ED7D31" + brightGreen: "#70AD47" + brightYellow: "#FFC000" + brightBlue: "#4472C4" + brightMagenta: "#8064A2" + brightCyan: "#5B9BD5" + brightWhite: "#C9C9C9" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 106 + black: 106 + red: 34.2 + green: 31.6 + yellow: 17.8 + blue: 46.4 + magenta: 46.9 + cyan: 34.8 + white: 48.5 + brightBlack: 66.9 + brightRed: 52.9 + brightGreen: 52.3 + brightYellow: 28.2 + brightBlue: 72.5 + brightMagenta: 74 + brightCyan: 56 + brightWhite: 29 diff --git a/themes/ogone.yaml b/themes/ogone.yaml new file mode 100644 index 00000000..08edc41f --- /dev/null +++ b/themes/ogone.yaml @@ -0,0 +1,49 @@ +name: "Ogone" +source: + marketplace_id: "SRNV.otone" + version: "0.1.202" + installs: 330 + author: "Rudy Alula" + repo: "https://github.com/SRNV/Otone" + url: "https://marketplace.visualstudio.com/items?itemName=SRNV.otone" +colors: + bg: "#1A181D" + fg: "#C4C4C4" + black: "#3D3D3D" + red: "#AC5588" + green: "#3D8F81" + yellow: "#ECC777" + blue: "#A4C8E6" + magenta: "#DB30A5" + cyan: "#000000" + white: "#929292" + brightBlack: "#3F3F3F" + brightRed: "#DB30A5" + brightGreen: "#43CAB4" + brightYellow: "#E5D691" + brightBlue: "#CFC2F3" + brightMagenta: "#DD75BC" + brightCyan: "#47FFE6" + brightWhite: "#E5E2E2" +meta: + mode: "dark" + accent: "pink" + hue: 304 + contrast: + fg: 69.7 + black: 0 + red: 27.8 + green: 34.6 + yellow: 74.2 + blue: 69.5 + magenta: 32.9 + cyan: 0 + white: 42.4 + brightBlack: 0 + brightRed: 32.9 + brightGreen: 62 + brightYellow: 80.2 + brightBlue: 72.6 + brightMagenta: 46.2 + brightCyan: 90.5 + brightWhite: 88.3 diff --git a/themes/oh-dark-pro.yaml b/themes/oh-dark-pro.yaml new file mode 100644 index 00000000..fd1e1479 --- /dev/null +++ b/themes/oh-dark-pro.yaml @@ -0,0 +1,49 @@ +name: "Oh Dark Pro" +source: + marketplace_id: "CassioMaciel.ohdark" + version: "2.1.0" + installs: 130 + author: "Cassio Maciel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CassioMaciel.ohdark" +colors: + bg: "#141416" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 59.6 + black: 9.1 + red: 37 + green: 60.6 + yellow: 48.8 + blue: 49.9 + magenta: 39.3 + cyan: 52.8 + white: 90.9 + brightBlack: 15.7 + brightRed: 46.3 + brightGreen: 77 + brightYellow: 61.5 + brightBlue: 64 + brightMagenta: 50.5 + brightCyan: 68.1 + brightWhite: 83.3 diff --git a/themes/ohiostate-fork.yaml b/themes/ohiostate-fork.yaml new file mode 100644 index 00000000..40d07a7d --- /dev/null +++ b/themes/ohiostate-fork.yaml @@ -0,0 +1,49 @@ +name: "OhioState - Fork" +source: + marketplace_id: "KynardCorp.my-custom-theme" + version: "0.0.11" + installs: 57 + author: "KynardCorp" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=KynardCorp.my-custom-theme" +colors: + bg: "#480018" + fg: "#5C5C5C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 10 + contrast: + fg: 15.8 + black: 0 + red: 24.6 + green: 50.9 + yellow: 83.5 + blue: 25.3 + magenta: 27.6 + cyan: 45.4 + white: 87.9 + brightBlack: 19.9 + brightRed: 36.5 + brightGreen: 61.4 + brightYellow: 93.5 + brightBlue: 37.9 + brightMagenta: 43.3 + brightCyan: 53.3 + brightWhite: 87.9 diff --git a/themes/ohled-aliceblue.yaml b/themes/ohled-aliceblue.yaml new file mode 100644 index 00000000..6781fb38 --- /dev/null +++ b/themes/ohled-aliceblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_AliceBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#F0F8FF" + black: "#F0F8FF" + red: "#B0B6BB" + green: "#C0C6CC" + yellow: "#909599" + blue: "#E0E7EE" + magenta: "#D0D7DD" + cyan: "#A0A5AA" + white: "#808488" + brightBlack: "#F0F8FF" + brightRed: "#B0B6BB" + brightGreen: "#C0C6CC" + brightYellow: "#909599" + brightBlue: "#E0E7EE" + brightMagenta: "#D0D7DD" + brightCyan: "#A0A5AA" + brightWhite: "#808488" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 102.5 + black: 102.5 + red: 62.4 + green: 71.6 + yellow: 44.8 + blue: 91.7 + magenta: 81.7 + cyan: 53.2 + white: 36.4 + brightBlack: 102.5 + brightRed: 62.4 + brightGreen: 71.6 + brightYellow: 44.8 + brightBlue: 91.7 + brightMagenta: 81.7 + brightCyan: 53.2 + brightWhite: 36.4 diff --git a/themes/ohled-antiquewhite.yaml b/themes/ohled-antiquewhite.yaml new file mode 100644 index 00000000..59ba7e1e --- /dev/null +++ b/themes/ohled-antiquewhite.yaml @@ -0,0 +1,49 @@ +name: "OhLED_AntiqueWhite" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FAEBD7" + black: "#FAEBD7" + red: "#B7AC9E" + green: "#C8BCAC" + yellow: "#968D81" + blue: "#E9DBC9" + magenta: "#D9CCBA" + cyan: "#A79D8F" + white: "#857D73" + brightBlack: "#FAEBD7" + brightRed: "#B7AC9E" + brightGreen: "#C8BCAC" + brightYellow: "#968D81" + brightBlue: "#E9DBC9" + brightMagenta: "#D9CCBA" + brightCyan: "#A79D8F" + brightWhite: "#857D73" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 96.1 + black: 96.1 + red: 58.2 + green: 67.2 + yellow: 41.7 + blue: 85.9 + magenta: 76.7 + cyan: 49.9 + white: 33.9 + brightBlack: 96.1 + brightRed: 58.2 + brightGreen: 67.2 + brightYellow: 41.7 + brightBlue: 85.9 + brightMagenta: 76.7 + brightCyan: 49.9 + brightWhite: 33.9 diff --git a/themes/ohled-aqua.yaml b/themes/ohled-aqua.yaml new file mode 100644 index 00000000..3749c361 --- /dev/null +++ b/themes/ohled-aqua.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Aqua" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#00FFFF" + black: "#00FFFF" + red: "#00BBBB" + green: "#00CCCC" + yellow: "#009999" + blue: "#00EEEE" + magenta: "#00DDDD" + cyan: "#00AAAA" + white: "#008888" + brightBlack: "#00FFFF" + brightRed: "#00BBBB" + brightGreen: "#00CCCC" + brightYellow: "#009999" + brightBlue: "#00EEEE" + brightMagenta: "#00DDDD" + brightCyan: "#00AAAA" + brightWhite: "#008888" +meta: + mode: "dark" + accent: "cyan" + hue: null + contrast: + fg: 92.2 + black: 92.2 + red: 55.8 + green: 64.4 + yellow: 39.8 + blue: 82.6 + magenta: 73.3 + cyan: 47.6 + white: 32.5 + brightBlack: 92.2 + brightRed: 55.8 + brightGreen: 64.4 + brightYellow: 39.8 + brightBlue: 82.6 + brightMagenta: 73.3 + brightCyan: 47.6 + brightWhite: 32.5 diff --git a/themes/ohled-aquamarine.yaml b/themes/ohled-aquamarine.yaml new file mode 100644 index 00000000..38f50fae --- /dev/null +++ b/themes/ohled-aquamarine.yaml @@ -0,0 +1,49 @@ +name: "OhLED_AquaMarine" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#7FFFD4" + black: "#7FFFD4" + red: "#5DBB9B" + green: "#66CCAA" + yellow: "#4C997F" + blue: "#77EEC6" + magenta: "#6EDDB8" + cyan: "#55AA8D" + white: "#448871" + brightBlack: "#7FFFD4" + brightRed: "#5DBB9B" + brightGreen: "#66CCAA" + brightYellow: "#4C997F" + brightBlue: "#77EEC6" + brightMagenta: "#6EDDB8" + brightCyan: "#55AA8D" + brightWhite: "#448871" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 93.3 + black: 93.3 + red: 56.5 + green: 65.2 + yellow: 40.3 + blue: 83.6 + magenta: 74.2 + cyan: 48.2 + white: 32.9 + brightBlack: 93.3 + brightRed: 56.5 + brightGreen: 65.2 + brightYellow: 40.3 + brightBlue: 83.6 + brightMagenta: 74.2 + brightCyan: 48.2 + brightWhite: 32.9 diff --git a/themes/ohled-azure.yaml b/themes/ohled-azure.yaml new file mode 100644 index 00000000..f554d733 --- /dev/null +++ b/themes/ohled-azure.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Azure" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#F0FFFF" + black: "#F0FFFF" + red: "#B0BBBB" + green: "#C0CCCC" + yellow: "#909999" + blue: "#E0EEEE" + magenta: "#D0DDDD" + cyan: "#A0AAAA" + white: "#808888" + brightBlack: "#F0FFFF" + brightRed: "#B0BBBB" + brightGreen: "#C0CCCC" + brightYellow: "#909999" + brightBlue: "#E0EEEE" + brightMagenta: "#D0DDDD" + brightCyan: "#A0AAAA" + brightWhite: "#808888" +meta: + mode: "dark" + accent: "cyan" + hue: null + contrast: + fg: 105.8 + black: 105.8 + red: 64.5 + green: 74.2 + yellow: 46.2 + blue: 94.9 + magenta: 84.4 + cyan: 55.1 + white: 37.8 + brightBlack: 105.8 + brightRed: 64.5 + brightGreen: 74.2 + brightYellow: 46.2 + brightBlue: 94.9 + brightMagenta: 84.4 + brightCyan: 55.1 + brightWhite: 37.8 diff --git a/themes/ohled-beige.yaml b/themes/ohled-beige.yaml new file mode 100644 index 00000000..e83ff4ae --- /dev/null +++ b/themes/ohled-beige.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Beige" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#F5F5DC" + black: "#F5F5DC" + red: "#B4B4A1" + green: "#C4C4B0" + yellow: "#939384" + blue: "#E5E5CD" + magenta: "#D4D4BF" + cyan: "#A3A393" + white: "#838375" + brightBlack: "#F5F5DC" + brightRed: "#B4B4A1" + brightGreen: "#C4C4B0" + brightYellow: "#939384" + brightBlue: "#E5E5CD" + brightMagenta: "#D4D4BF" + brightCyan: "#A3A393" + brightWhite: "#838375" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 100.2 + black: 100.2 + red: 61.1 + green: 70.2 + yellow: 43.6 + blue: 90 + magenta: 79.6 + cyan: 51.9 + white: 35.7 + brightBlack: 100.2 + brightRed: 61.1 + brightGreen: 70.2 + brightYellow: 43.6 + brightBlue: 90 + brightMagenta: 79.6 + brightCyan: 51.9 + brightWhite: 35.7 diff --git a/themes/ohled-bisque.yaml b/themes/ohled-bisque.yaml new file mode 100644 index 00000000..b3378bb9 --- /dev/null +++ b/themes/ohled-bisque.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Bisque" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFE4C4" + black: "#FFE4C4" + red: "#BBA790" + green: "#CCB69D" + yellow: "#998976" + blue: "#EED5B7" + magenta: "#DDC6AA" + cyan: "#AA9883" + white: "#887A69" + brightBlack: "#FFE4C4" + brightRed: "#BBA790" + brightGreen: "#CCB69D" + brightYellow: "#998976" + brightBlue: "#EED5B7" + brightMagenta: "#DDC6AA" + brightCyan: "#AA9883" + brightWhite: "#887A69" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 93 + black: 93 + red: 56.3 + green: 64.8 + yellow: 40.3 + blue: 83.4 + magenta: 74.1 + cyan: 48.1 + white: 32.9 + brightBlack: 93 + brightRed: 56.3 + brightGreen: 64.8 + brightYellow: 40.3 + brightBlue: 83.4 + brightMagenta: 74.1 + brightCyan: 48.1 + brightWhite: 32.9 diff --git a/themes/ohled-blanchedalmond.yaml b/themes/ohled-blanchedalmond.yaml new file mode 100644 index 00000000..bf94e803 --- /dev/null +++ b/themes/ohled-blanchedalmond.yaml @@ -0,0 +1,49 @@ +name: "OhLED_BlanchedAlmond" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFEBCD" + black: "#FFEBCD" + red: "#BBAC96" + green: "#CCBCA4" + yellow: "#998D7B" + blue: "#EEDBBF" + magenta: "#DDCCB2" + cyan: "#AA9D89" + white: "#887D6D" + brightBlack: "#FFEBCD" + brightRed: "#BBAC96" + brightGreen: "#CCBCA4" + brightYellow: "#998D7B" + brightBlue: "#EEDBBF" + brightMagenta: "#DDCCB2" + brightCyan: "#AA9D89" + brightWhite: "#887D6D" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 96.5 + black: 96.5 + red: 58.4 + green: 67.5 + yellow: 41.8 + blue: 86.3 + magenta: 76.9 + cyan: 50.1 + white: 34 + brightBlack: 96.5 + brightRed: 58.4 + brightGreen: 67.5 + brightYellow: 41.8 + brightBlue: 86.3 + brightMagenta: 76.9 + brightCyan: 50.1 + brightWhite: 34 diff --git a/themes/ohled-blue.yaml b/themes/ohled-blue.yaml new file mode 100644 index 00000000..44944067 --- /dev/null +++ b/themes/ohled-blue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Blue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#5E5EFF" + black: "#5E5EFF" + red: "#4545BB" + green: "#4B4BCC" + yellow: "#383899" + blue: "#5858EE" + magenta: "#5151DD" + cyan: "#3F3FAA" + white: "#323288" + brightBlack: "#5E5EFF" + brightRed: "#4545BB" + brightGreen: "#4B4BCC" + brightYellow: "#383899" + brightBlue: "#5858EE" + brightMagenta: "#5151DD" + brightCyan: "#3F3FAA" + brightWhite: "#323288" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 30 + black: 30 + red: 16.7 + green: 19.8 + yellow: 10.7 + blue: 26.6 + magenta: 23 + cyan: 13.7 + white: 8 + brightBlack: 30 + brightRed: 16.7 + brightGreen: 19.8 + brightYellow: 10.7 + brightBlue: 26.6 + brightMagenta: 23 + brightCyan: 13.7 + brightWhite: 8 diff --git a/themes/ohled-blueviolet.yaml b/themes/ohled-blueviolet.yaml new file mode 100644 index 00000000..569093b1 --- /dev/null +++ b/themes/ohled-blueviolet.yaml @@ -0,0 +1,49 @@ +name: "OhLED_BlueViolet" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#964DE8" + black: "#964DE8" + red: "#6E38AA" + green: "#783EBA" + yellow: "#5A2E8B" + blue: "#8C48D9" + magenta: "#8243C9" + cyan: "#64339B" + white: "#50297C" + brightBlack: "#964DE8" + brightRed: "#6E38AA" + brightGreen: "#783EBA" + brightYellow: "#5A2E8B" + brightBlue: "#8C48D9" + brightMagenta: "#8243C9" + brightCyan: "#64339B" + brightWhite: "#50297C" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 30.1 + black: 30.1 + red: 16.6 + green: 20 + yellow: 10.8 + blue: 26.6 + magenta: 23.2 + cyan: 13.7 + white: 8.1 + brightBlack: 30.1 + brightRed: 16.6 + brightGreen: 20 + brightYellow: 10.8 + brightBlue: 26.6 + brightMagenta: 23.2 + brightCyan: 13.7 + brightWhite: 8.1 diff --git a/themes/ohled-brown.yaml b/themes/ohled-brown.yaml new file mode 100644 index 00000000..18cb534e --- /dev/null +++ b/themes/ohled-brown.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Brown" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#B45959" + black: "#B45959" + red: "#844141" + green: "#904747" + yellow: "#6C3535" + blue: "#A85353" + magenta: "#9C4D4D" + cyan: "#783B3B" + white: "#602F2F" + brightBlack: "#B45959" + brightRed: "#844141" + brightGreen: "#904747" + brightYellow: "#6C3535" + brightBlue: "#A85353" + brightMagenta: "#9C4D4D" + brightCyan: "#783B3B" + brightWhite: "#602F2F" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 29.8 + black: 29.8 + red: 16.5 + green: 19.6 + yellow: 10.6 + blue: 26.3 + magenta: 22.9 + cyan: 13.5 + white: 7.9 + brightBlack: 29.8 + brightRed: 16.5 + brightGreen: 19.6 + brightYellow: 10.6 + brightBlue: 26.3 + brightMagenta: 22.9 + brightCyan: 13.5 + brightWhite: 7.9 diff --git a/themes/ohled-burlywood.yaml b/themes/ohled-burlywood.yaml new file mode 100644 index 00000000..ffc18b6f --- /dev/null +++ b/themes/ohled-burlywood.yaml @@ -0,0 +1,49 @@ +name: "OhLED_BurlyWood" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#DEB887" + black: "#DEB887" + red: "#A38763" + green: "#B2936C" + yellow: "#856E51" + blue: "#CFAC7E" + magenta: "#C09F75" + cyan: "#947B5A" + white: "#766248" + brightBlack: "#DEB887" + brightRed: "#A38763" + brightGreen: "#B2936C" + brightYellow: "#856E51" + brightBlue: "#CFAC7E" + brightMagenta: "#C09F75" + brightCyan: "#947B5A" + brightWhite: "#766248" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 67.6 + black: 67.6 + red: 40.4 + green: 46.8 + yellow: 28.2 + blue: 60.5 + magenta: 53.2 + cyan: 34.3 + white: 22.7 + brightBlack: 67.6 + brightRed: 40.4 + brightGreen: 46.8 + brightYellow: 28.2 + brightBlue: 60.5 + brightMagenta: 53.2 + brightCyan: 34.3 + brightWhite: 22.7 diff --git a/themes/ohled-cadetblue.yaml b/themes/ohled-cadetblue.yaml new file mode 100644 index 00000000..531d821e --- /dev/null +++ b/themes/ohled-cadetblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_CadetBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#5F9EA0" + black: "#5F9EA0" + red: "#467475" + green: "#4C7E80" + yellow: "#395F60" + blue: "#599395" + magenta: "#52898B" + cyan: "#3F696B" + white: "#335455" + brightBlack: "#5F9EA0" + brightRed: "#467475" + brightGreen: "#4C7E80" + brightYellow: "#395F60" + brightBlue: "#599395" + brightMagenta: "#52898B" + brightCyan: "#3F696B" + brightWhite: "#335455" +meta: + mode: "dark" + accent: "cyan" + hue: null + contrast: + fg: 44.5 + black: 44.5 + red: 25.9 + green: 30.1 + yellow: 17.6 + blue: 39.4 + magenta: 34.8 + cyan: 21.5 + white: 13.7 + brightBlack: 44.5 + brightRed: 25.9 + brightGreen: 30.1 + brightYellow: 17.6 + brightBlue: 39.4 + brightMagenta: 34.8 + brightCyan: 21.5 + brightWhite: 13.7 diff --git a/themes/ohled-chartreuse.yaml b/themes/ohled-chartreuse.yaml new file mode 100644 index 00000000..b94b744d --- /dev/null +++ b/themes/ohled-chartreuse.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Chartreuse" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#7FFF00" + black: "#7FFF00" + red: "#5DBB00" + green: "#66CC00" + yellow: "#4C9900" + blue: "#77EE00" + magenta: "#6EDD00" + cyan: "#55AA00" + white: "#448800" + brightBlack: "#7FFF00" + brightRed: "#5DBB00" + brightGreen: "#66CC00" + brightYellow: "#4C9900" + brightBlue: "#77EE00" + brightMagenta: "#6EDD00" + brightCyan: "#55AA00" + brightWhite: "#448800" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 89.7 + black: 89.7 + red: 54.2 + green: 62.6 + yellow: 38.7 + blue: 80.3 + magenta: 71.3 + cyan: 46.3 + white: 31.5 + brightBlack: 89.7 + brightRed: 54.2 + brightGreen: 62.6 + brightYellow: 38.7 + brightBlue: 80.3 + brightMagenta: 71.3 + brightCyan: 46.3 + brightWhite: 31.5 diff --git a/themes/ohled-chocolate.yaml b/themes/ohled-chocolate.yaml new file mode 100644 index 00000000..7add4deb --- /dev/null +++ b/themes/ohled-chocolate.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Chocolate" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#D2691E" + black: "#D2691E" + red: "#9A4D16" + green: "#A85418" + yellow: "#7E3F12" + blue: "#C4621C" + magenta: "#B65B1A" + cyan: "#8C4614" + white: "#703810" + brightBlack: "#D2691E" + brightRed: "#9A4D16" + brightGreen: "#A85418" + brightYellow: "#7E3F12" + brightBlue: "#C4621C" + brightMagenta: "#B65B1A" + brightCyan: "#8C4614" + brightWhite: "#703810" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 38.3 + black: 38.3 + red: 21.9 + green: 25.8 + yellow: 14.7 + blue: 34 + magenta: 29.8 + cyan: 18.2 + white: 11.3 + brightBlack: 38.3 + brightRed: 21.9 + brightGreen: 25.8 + brightYellow: 14.7 + brightBlue: 34 + brightMagenta: 29.8 + brightCyan: 18.2 + brightWhite: 11.3 diff --git a/themes/ohled-coral.yaml b/themes/ohled-coral.yaml new file mode 100644 index 00000000..103004b3 --- /dev/null +++ b/themes/ohled-coral.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Coral" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FF7F50" + black: "#FF7F50" + red: "#BB5D3B" + green: "#CC6640" + yellow: "#994C30" + blue: "#EE774B" + magenta: "#DD6E45" + cyan: "#AA5535" + white: "#88442B" + brightBlack: "#FF7F50" + brightRed: "#BB5D3B" + brightGreen: "#CC6640" + brightYellow: "#994C30" + brightBlue: "#EE774B" + brightMagenta: "#DD6E45" + brightCyan: "#AA5535" + brightWhite: "#88442B" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 53.5 + black: 53.5 + red: 31.4 + green: 36.7 + yellow: 21.7 + blue: 47.8 + magenta: 42 + cyan: 26.6 + white: 17.3 + brightBlack: 53.5 + brightRed: 31.4 + brightGreen: 36.7 + brightYellow: 21.7 + brightBlue: 47.8 + brightMagenta: 42 + brightCyan: 26.6 + brightWhite: 17.3 diff --git a/themes/ohled-cornflowerblue.yaml b/themes/ohled-cornflowerblue.yaml new file mode 100644 index 00000000..ef826157 --- /dev/null +++ b/themes/ohled-cornflowerblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_CornflowerBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#6495ED" + black: "#6495ED" + red: "#496DAE" + green: "#5077BE" + yellow: "#3C598E" + blue: "#5D8BDD" + magenta: "#5781CD" + cyan: "#43639E" + white: "#354F7E" + brightBlack: "#6495ED" + brightRed: "#496DAE" + brightGreen: "#5077BE" + brightYellow: "#3C598E" + brightBlue: "#5D8BDD" + brightMagenta: "#5781CD" + brightCyan: "#43639E" + brightWhite: "#354F7E" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 45.7 + black: 45.7 + red: 26.4 + green: 31 + yellow: 18 + blue: 40.6 + magenta: 35.7 + cyan: 22.1 + white: 14 + brightBlack: 45.7 + brightRed: 26.4 + brightGreen: 31 + brightYellow: 18 + brightBlue: 40.6 + brightMagenta: 35.7 + brightCyan: 22.1 + brightWhite: 14 diff --git a/themes/ohled-cornsilk.yaml b/themes/ohled-cornsilk.yaml new file mode 100644 index 00000000..656706ff --- /dev/null +++ b/themes/ohled-cornsilk.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Cornsilk" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFF8DC" + black: "#FFF8DC" + red: "#BBB6A1" + green: "#CCC6B0" + yellow: "#999584" + blue: "#EEE7CD" + magenta: "#DDD7BF" + cyan: "#AAA593" + white: "#888475" + brightBlack: "#FFF8DC" + brightRed: "#BBB6A1" + brightGreen: "#CCC6B0" + brightYellow: "#999584" + brightBlue: "#EEE7CD" + brightMagenta: "#DDD7BF" + brightCyan: "#AAA593" + brightWhite: "#888475" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 103 + black: 103 + red: 62.7 + green: 72 + yellow: 45 + blue: 92.2 + magenta: 82.1 + cyan: 53.5 + white: 36.6 + brightBlack: 103 + brightRed: 62.7 + brightGreen: 72 + brightYellow: 45 + brightBlue: 92.2 + brightMagenta: 82.1 + brightCyan: 53.5 + brightWhite: 36.6 diff --git a/themes/ohled-crimson.yaml b/themes/ohled-crimson.yaml new file mode 100644 index 00000000..766e373d --- /dev/null +++ b/themes/ohled-crimson.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Crimson" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#DE2946" + black: "#DE2946" + red: "#A31E33" + green: "#B22138" + yellow: "#85192A" + blue: "#CF2641" + magenta: "#C0243D" + cyan: "#941B2F" + white: "#761625" + brightBlack: "#DE2946" + brightRed: "#A31E33" + brightGreen: "#B22138" + brightYellow: "#85192A" + brightBlue: "#CF2641" + brightMagenta: "#C0243D" + brightCyan: "#941B2F" + brightWhite: "#761625" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 31.1 + black: 31.1 + red: 17.4 + green: 20.7 + yellow: 11.3 + blue: 27.4 + magenta: 23.9 + cyan: 14.2 + white: 8.4 + brightBlack: 31.1 + brightRed: 17.4 + brightGreen: 20.7 + brightYellow: 11.3 + brightBlue: 27.4 + brightMagenta: 23.9 + brightCyan: 14.2 + brightWhite: 8.4 diff --git a/themes/ohled-darkblue.yaml b/themes/ohled-darkblue.yaml new file mode 100644 index 00000000..a506fcf9 --- /dev/null +++ b/themes/ohled-darkblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#6E6EAD" + black: "#6E6EAD" + red: "#51517F" + green: "#58588A" + yellow: "#424268" + blue: "#6767A1" + magenta: "#5F5F96" + cyan: "#494973" + white: "#3B3B5C" + brightBlack: "#6E6EAD" + brightRed: "#51517F" + brightGreen: "#58588A" + brightYellow: "#424268" + brightBlue: "#6767A1" + brightMagenta: "#5F5F96" + brightCyan: "#494973" + brightWhite: "#3B3B5C" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 29.3 + black: 29.3 + red: 16.3 + green: 19.3 + yellow: 10.5 + blue: 26 + magenta: 22.4 + cyan: 13.1 + white: 7.9 + brightBlack: 29.3 + brightRed: 16.3 + brightGreen: 19.3 + brightYellow: 10.5 + brightBlue: 26 + brightMagenta: 22.4 + brightCyan: 13.1 + brightWhite: 7.9 diff --git a/themes/ohled-darkcyan.yaml b/themes/ohled-darkcyan.yaml new file mode 100644 index 00000000..b7b2c80f --- /dev/null +++ b/themes/ohled-darkcyan.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkCyan" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#008B8B" + black: "#008B8B" + red: "#006666" + green: "#006F6F" + yellow: "#005353" + blue: "#008282" + magenta: "#007878" + cyan: "#005D5D" + white: "#004A4A" + brightBlack: "#008B8B" + brightRed: "#006666" + brightGreen: "#006F6F" + brightYellow: "#005353" + brightBlue: "#008282" + brightMagenta: "#007878" + brightCyan: "#005D5D" + brightWhite: "#004A4A" +meta: + mode: "dark" + accent: "cyan" + hue: null + contrast: + fg: 33.7 + black: 33.7 + red: 19 + green: 22.4 + yellow: 12.4 + blue: 30 + magenta: 25.9 + cyan: 15.8 + white: 9.5 + brightBlack: 33.7 + brightRed: 19 + brightGreen: 22.4 + brightYellow: 12.4 + brightBlue: 30 + brightMagenta: 25.9 + brightCyan: 15.8 + brightWhite: 9.5 diff --git a/themes/ohled-darkgoldenrod.yaml b/themes/ohled-darkgoldenrod.yaml new file mode 100644 index 00000000..aa214a06 --- /dev/null +++ b/themes/ohled-darkgoldenrod.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkGoldenRod" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#B8860B" + black: "#B8860B" + red: "#876208" + green: "#936B09" + yellow: "#6E5007" + blue: "#AC7D0A" + magenta: "#9F740A" + cyan: "#7B5907" + white: "#624706" + brightBlack: "#B8860B" + brightRed: "#876208" + brightGreen: "#936B09" + brightYellow: "#6E5007" + brightBlue: "#AC7D0A" + brightMagenta: "#9F740A" + brightCyan: "#7B5907" + brightWhite: "#624706" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 42.1 + black: 42.1 + red: 24.2 + green: 28.4 + yellow: 16.3 + blue: 37.4 + magenta: 32.8 + cyan: 20.2 + white: 12.7 + brightBlack: 42.1 + brightRed: 24.2 + brightGreen: 28.4 + brightYellow: 16.3 + brightBlue: 37.4 + brightMagenta: 32.8 + brightCyan: 20.2 + brightWhite: 12.7 diff --git a/themes/ohled-darkgray.yaml b/themes/ohled-darkgray.yaml new file mode 100644 index 00000000..297feaab --- /dev/null +++ b/themes/ohled-darkgray.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkGray" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#A9A9A9" + black: "#A9A9A9" + red: "#7C7C7C" + green: "#878787" + yellow: "#656565" + blue: "#9E9E9E" + magenta: "#929292" + cyan: "#717171" + white: "#5A5A5A" + brightBlack: "#A9A9A9" + brightRed: "#7C7C7C" + brightGreen: "#878787" + brightYellow: "#656565" + brightBlue: "#9E9E9E" + brightMagenta: "#929292" + brightCyan: "#717171" + brightWhite: "#5A5A5A" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 55.7 + black: 55.7 + red: 32.9 + green: 38.1 + yellow: 22.6 + blue: 49.8 + magenta: 43.6 + cyan: 27.8 + white: 18.1 + brightBlack: 55.7 + brightRed: 32.9 + brightGreen: 38.1 + brightYellow: 22.6 + brightBlue: 49.8 + brightMagenta: 43.6 + brightCyan: 27.8 + brightWhite: 18.1 diff --git a/themes/ohled-darkgreen.yaml b/themes/ohled-darkgreen.yaml new file mode 100644 index 00000000..809811cb --- /dev/null +++ b/themes/ohled-darkgreen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkGreen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#527F52" + black: "#527F52" + red: "#3C5D3C" + green: "#426642" + yellow: "#314C31" + blue: "#4D774D" + magenta: "#476E47" + cyan: "#375537" + white: "#2C442C" + brightBlack: "#527F52" + brightRed: "#3C5D3C" + brightGreen: "#426642" + brightYellow: "#314C31" + brightBlue: "#4D774D" + brightMagenta: "#476E47" + brightCyan: "#375537" + brightWhite: "#2C442C" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 29.5 + black: 29.5 + red: 16.3 + green: 19.6 + yellow: 10.5 + blue: 26.2 + magenta: 22.6 + cyan: 13.5 + white: 7.9 + brightBlack: 29.5 + brightRed: 16.3 + brightGreen: 19.6 + brightYellow: 10.5 + brightBlue: 26.2 + brightMagenta: 22.6 + brightCyan: 13.5 + brightWhite: 7.9 diff --git a/themes/ohled-darkkhaki.yaml b/themes/ohled-darkkhaki.yaml new file mode 100644 index 00000000..643d921f --- /dev/null +++ b/themes/ohled-darkkhaki.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkKhaki" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#BDB76B" + black: "#BDB76B" + red: "#8B864E" + green: "#979256" + yellow: "#716E40" + blue: "#B0AB64" + magenta: "#A49F5D" + cyan: "#7E7A47" + white: "#656239" + brightBlack: "#BDB76B" + brightRed: "#8B864E" + brightGreen: "#979256" + brightYellow: "#716E40" + brightBlue: "#B0AB64" + brightMagenta: "#A49F5D" + brightCyan: "#7E7A47" + brightWhite: "#656239" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 61.9 + black: 61.9 + red: 36.7 + green: 42.5 + yellow: 25.7 + blue: 55.3 + magenta: 49.1 + cyan: 31.1 + white: 20.7 + brightBlack: 61.9 + brightRed: 36.7 + brightGreen: 42.5 + brightYellow: 25.7 + brightBlue: 55.3 + brightMagenta: 49.1 + brightCyan: 31.1 + brightWhite: 20.7 diff --git a/themes/ohled-darkmagenta.yaml b/themes/ohled-darkmagenta.yaml new file mode 100644 index 00000000..97c9472f --- /dev/null +++ b/themes/ohled-darkmagenta.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkMagenta" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#A25AA2" + black: "#A25AA2" + red: "#774277" + green: "#824882" + yellow: "#613661" + blue: "#975497" + magenta: "#8C4E8C" + cyan: "#6C3C6C" + white: "#563056" + brightBlack: "#A25AA2" + brightRed: "#774277" + brightGreen: "#824882" + brightYellow: "#613661" + brightBlue: "#975497" + brightMagenta: "#8C4E8C" + brightCyan: "#6C3C6C" + brightWhite: "#563056" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 29.7 + black: 29.7 + red: 16.5 + green: 19.7 + yellow: 10.6 + blue: 26.2 + magenta: 22.8 + cyan: 13.5 + white: 7.9 + brightBlack: 29.7 + brightRed: 16.5 + brightGreen: 19.7 + brightYellow: 10.6 + brightBlue: 26.2 + brightMagenta: 22.8 + brightCyan: 13.5 + brightWhite: 7.9 diff --git a/themes/ohled-darkolivegreen.yaml b/themes/ohled-darkolivegreen.yaml new file mode 100644 index 00000000..0bcbfcbc --- /dev/null +++ b/themes/ohled-darkolivegreen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkOliveGreen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#697B4F" + black: "#697B4F" + red: "#4D5A3A" + green: "#54623F" + yellow: "#3F4A2F" + blue: "#62734A" + magenta: "#5B6B44" + cyan: "#465235" + white: "#38422A" + brightBlack: "#697B4F" + brightRed: "#4D5A3A" + brightGreen: "#54623F" + brightYellow: "#3F4A2F" + brightBlue: "#62734A" + brightMagenta: "#5B6B44" + brightCyan: "#465235" + brightWhite: "#38422A" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 29.6 + black: 29.6 + red: 16.3 + green: 19.4 + yellow: 10.6 + blue: 26.2 + magenta: 22.9 + cyan: 13.4 + white: 8 + brightBlack: 29.6 + brightRed: 16.3 + brightGreen: 19.4 + brightYellow: 10.6 + brightBlue: 26.2 + brightMagenta: 22.9 + brightCyan: 13.4 + brightWhite: 8 diff --git a/themes/ohled-darkorange.yaml b/themes/ohled-darkorange.yaml new file mode 100644 index 00000000..deb630af --- /dev/null +++ b/themes/ohled-darkorange.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkOrange" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FF8C00" + black: "#FF8C00" + red: "#BB6700" + green: "#CC7000" + yellow: "#995400" + blue: "#EE8300" + magenta: "#DD7900" + cyan: "#AA5D00" + white: "#884B00" + brightBlack: "#FF8C00" + brightRed: "#BB6700" + brightGreen: "#CC7000" + brightYellow: "#995400" + brightBlue: "#EE8300" + brightMagenta: "#DD7900" + brightCyan: "#AA5D00" + brightWhite: "#884B00" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 56.7 + black: 56.7 + red: 33.6 + green: 38.9 + yellow: 23.3 + blue: 50.7 + magenta: 44.5 + cyan: 28.2 + white: 18.6 + brightBlack: 56.7 + brightRed: 33.6 + brightGreen: 38.9 + brightYellow: 23.3 + brightBlue: 50.7 + brightMagenta: 44.5 + brightCyan: 28.2 + brightWhite: 18.6 diff --git a/themes/ohled-darkorchid.yaml b/themes/ohled-darkorchid.yaml new file mode 100644 index 00000000..4f9d1704 --- /dev/null +++ b/themes/ohled-darkorchid.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkOrchid" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#A24DD2" + black: "#A24DD2" + red: "#77389A" + green: "#823EA8" + yellow: "#612E7E" + blue: "#9748C4" + magenta: "#8C43B6" + cyan: "#6C338C" + white: "#562970" + brightBlack: "#A24DD2" + brightRed: "#77389A" + brightGreen: "#823EA8" + brightYellow: "#612E7E" + brightBlue: "#9748C4" + brightMagenta: "#8C43B6" + brightCyan: "#6C338C" + brightWhite: "#562970" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 30.1 + black: 30.1 + red: 16.7 + green: 20 + yellow: 10.8 + blue: 26.6 + magenta: 23.1 + cyan: 13.6 + white: 8 + brightBlack: 30.1 + brightRed: 16.7 + brightGreen: 20 + brightYellow: 10.8 + brightBlue: 26.6 + brightMagenta: 23.1 + brightCyan: 13.6 + brightWhite: 8 diff --git a/themes/ohled-darkred.yaml b/themes/ohled-darkred.yaml new file mode 100644 index 00000000..e3f43573 --- /dev/null +++ b/themes/ohled-darkred.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkRed" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#A66262" + black: "#A66262" + red: "#7A4848" + green: "#854E4E" + yellow: "#643B3B" + blue: "#9B5B5B" + magenta: "#905555" + cyan: "#6F4141" + white: "#593434" + brightBlack: "#A66262" + brightRed: "#7A4848" + brightGreen: "#854E4E" + brightYellow: "#643B3B" + brightBlue: "#9B5B5B" + brightMagenta: "#905555" + brightCyan: "#6F4141" + brightWhite: "#593434" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 29.8 + black: 29.8 + red: 16.6 + green: 19.6 + yellow: 10.8 + blue: 26.2 + magenta: 23 + cyan: 13.5 + white: 8 + brightBlack: 29.8 + brightRed: 16.6 + brightGreen: 19.6 + brightYellow: 10.8 + brightBlue: 26.2 + brightMagenta: 23 + brightCyan: 13.5 + brightWhite: 8 diff --git a/themes/ohled-darksalmon.yaml b/themes/ohled-darksalmon.yaml new file mode 100644 index 00000000..84edd7ff --- /dev/null +++ b/themes/ohled-darksalmon.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkSalmon" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#E9967A" + black: "#E9967A" + red: "#AB6E59" + green: "#BA7862" + yellow: "#8C5A49" + blue: "#D98C72" + magenta: "#CA826A" + cyan: "#9B6451" + white: "#7C5041" + brightBlack: "#E9967A" + brightRed: "#AB6E59" + brightGreen: "#BA7862" + brightYellow: "#8C5A49" + brightBlue: "#D98C72" + brightMagenta: "#CA826A" + brightCyan: "#9B6451" + brightWhite: "#7C5041" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 56.8 + black: 56.8 + red: 33.6 + green: 39 + yellow: 23.3 + blue: 50.6 + magenta: 44.8 + cyan: 28.3 + white: 18.6 + brightBlack: 56.8 + brightRed: 33.6 + brightGreen: 39 + brightYellow: 23.3 + brightBlue: 50.6 + brightMagenta: 44.8 + brightCyan: 28.3 + brightWhite: 18.6 diff --git a/themes/ohled-darkseagreen.yaml b/themes/ohled-darkseagreen.yaml new file mode 100644 index 00000000..6d1da2a8 --- /dev/null +++ b/themes/ohled-darkseagreen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkSeaGreen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#8FBC8F" + black: "#8FBC8F" + red: "#698A69" + green: "#729672" + yellow: "#567156" + blue: "#85AF85" + magenta: "#7CA37C" + cyan: "#5F7D5F" + white: "#4C644C" + brightBlack: "#8FBC8F" + brightRed: "#698A69" + brightGreen: "#729672" + brightYellow: "#567156" + brightBlue: "#85AF85" + brightMagenta: "#7CA37C" + brightCyan: "#5F7D5F" + brightWhite: "#4C644C" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 60 + black: 60 + red: 35.6 + green: 41.1 + yellow: 24.9 + blue: 53.3 + magenta: 47.3 + cyan: 29.9 + white: 19.7 + brightBlack: 60 + brightRed: 35.6 + brightGreen: 41.1 + brightYellow: 24.9 + brightBlue: 53.3 + brightMagenta: 47.3 + brightCyan: 29.9 + brightWhite: 19.7 diff --git a/themes/ohled-darkslateblue.yaml b/themes/ohled-darkslateblue.yaml new file mode 100644 index 00000000..b2debfb7 --- /dev/null +++ b/themes/ohled-darkslateblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkSlateBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#746EA3" + black: "#746EA3" + red: "#555178" + green: "#5D5882" + yellow: "#464262" + blue: "#6C6798" + magenta: "#655F8D" + cyan: "#4D496D" + white: "#3E3B57" + brightBlack: "#746EA3" + brightRed: "#555178" + brightGreen: "#5D5882" + brightYellow: "#464262" + brightBlue: "#6C6798" + brightMagenta: "#655F8D" + brightCyan: "#4D496D" + brightWhite: "#3E3B57" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 29.3 + black: 29.3 + red: 16.3 + green: 19.3 + yellow: 10.5 + blue: 25.9 + magenta: 22.5 + cyan: 13.2 + white: 7.9 + brightBlack: 29.3 + brightRed: 16.3 + brightGreen: 19.3 + brightYellow: 10.5 + brightBlue: 25.9 + brightMagenta: 22.5 + brightCyan: 13.2 + brightWhite: 7.9 diff --git a/themes/ohled-darkslategray.yaml b/themes/ohled-darkslategray.yaml new file mode 100644 index 00000000..17ff88a1 --- /dev/null +++ b/themes/ohled-darkslategray.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkSlateGray" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#677878" + black: "#677878" + red: "#4C5858" + green: "#526060" + yellow: "#3E4848" + blue: "#607070" + magenta: "#596868" + cyan: "#455050" + white: "#374040" + brightBlack: "#677878" + brightRed: "#4C5858" + brightGreen: "#526060" + brightYellow: "#3E4848" + brightBlue: "#607070" + brightMagenta: "#596868" + brightCyan: "#455050" + brightWhite: "#374040" +meta: + mode: "dark" + accent: "cyan" + hue: null + contrast: + fg: 29.5 + black: 29.5 + red: 16.4 + green: 19.4 + yellow: 10.6 + blue: 26 + magenta: 22.6 + cyan: 13.4 + white: 7.9 + brightBlack: 29.5 + brightRed: 16.4 + brightGreen: 19.4 + brightYellow: 10.6 + brightBlue: 26 + brightMagenta: 22.6 + brightCyan: 13.4 + brightWhite: 7.9 diff --git a/themes/ohled-darkturquoise.yaml b/themes/ohled-darkturquoise.yaml new file mode 100644 index 00000000..5753c006 --- /dev/null +++ b/themes/ohled-darkturquoise.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkTurquoise" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#00CED1" + black: "#00CED1" + red: "#009799" + green: "#00A5A7" + yellow: "#007C7D" + blue: "#00C0C3" + magenta: "#00B3B5" + cyan: "#00898B" + white: "#006E6F" + brightBlack: "#00CED1" + brightRed: "#009799" + brightGreen: "#00A5A7" + brightYellow: "#007C7D" + brightBlue: "#00C0C3" + brightMagenta: "#00B3B5" + brightCyan: "#00898B" + brightWhite: "#006E6F" +meta: + mode: "dark" + accent: "cyan" + hue: null + contrast: + fg: 65.6 + black: 65.6 + red: 39 + green: 45.4 + yellow: 27.5 + blue: 58.5 + magenta: 52 + cyan: 33 + white: 22.1 + brightBlack: 65.6 + brightRed: 39 + brightGreen: 45.4 + brightYellow: 27.5 + brightBlue: 58.5 + brightMagenta: 52 + brightCyan: 33 + brightWhite: 22.1 diff --git a/themes/ohled-darkviolet.yaml b/themes/ohled-darkviolet.yaml new file mode 100644 index 00000000..635f19d4 --- /dev/null +++ b/themes/ohled-darkviolet.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DarkViolet" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#A249DC" + black: "#A249DC" + red: "#7736A1" + green: "#823AB0" + yellow: "#612C84" + blue: "#9744CD" + magenta: "#8C3FBF" + cyan: "#6C3193" + white: "#562775" + brightBlack: "#A249DC" + brightRed: "#7736A1" + brightGreen: "#823AB0" + brightYellow: "#612C84" + brightBlue: "#9744CD" + brightMagenta: "#8C3FBF" + brightCyan: "#6C3193" + brightWhite: "#562775" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 30.2 + black: 30.2 + red: 16.8 + green: 19.9 + yellow: 10.9 + blue: 26.5 + magenta: 23.1 + cyan: 13.8 + white: 8.1 + brightBlack: 30.2 + brightRed: 16.8 + brightGreen: 19.9 + brightYellow: 10.9 + brightBlue: 26.5 + brightMagenta: 23.1 + brightCyan: 13.8 + brightWhite: 8.1 diff --git a/themes/ohled-deeppink.yaml b/themes/ohled-deeppink.yaml new file mode 100644 index 00000000..ae190519 --- /dev/null +++ b/themes/ohled-deeppink.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DeepPink" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FF1493" + black: "#FF1493" + red: "#BB0F6C" + green: "#CC1076" + yellow: "#990C58" + blue: "#EE1389" + magenta: "#DD117F" + cyan: "#AA0D62" + white: "#880B4E" + brightBlack: "#FF1493" + brightRed: "#BB0F6C" + brightGreen: "#CC1076" + brightYellow: "#990C58" + brightBlue: "#EE1389" + brightMagenta: "#DD117F" + brightCyan: "#AA0D62" + brightWhite: "#880B4E" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 40.1 + black: 40.1 + red: 23.1 + green: 27.1 + yellow: 15.5 + blue: 35.6 + magenta: 31.3 + cyan: 19.2 + white: 12 + brightBlack: 40.1 + brightRed: 23.1 + brightGreen: 27.1 + brightYellow: 15.5 + brightBlue: 35.6 + brightMagenta: 31.3 + brightCyan: 19.2 + brightWhite: 12 diff --git a/themes/ohled-deepskyblue.yaml b/themes/ohled-deepskyblue.yaml new file mode 100644 index 00000000..d0508abe --- /dev/null +++ b/themes/ohled-deepskyblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DeepSkyBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#00BFFF" + black: "#00BFFF" + red: "#008CBB" + green: "#0099CC" + yellow: "#007399" + blue: "#00B2EE" + magenta: "#00A6DD" + cyan: "#007FAA" + white: "#006688" + brightBlack: "#00BFFF" + brightRed: "#008CBB" + brightGreen: "#0099CC" + brightYellow: "#007399" + brightBlue: "#00B2EE" + brightMagenta: "#00A6DD" + brightCyan: "#007FAA" + brightWhite: "#006688" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 61.4 + black: 61.4 + red: 36.4 + green: 42.4 + yellow: 25.6 + blue: 54.7 + magenta: 48.6 + cyan: 30.7 + white: 20.4 + brightBlack: 61.4 + brightRed: 36.4 + brightGreen: 42.4 + brightYellow: 25.6 + brightBlue: 54.7 + brightMagenta: 48.6 + brightCyan: 30.7 + brightWhite: 20.4 diff --git a/themes/ohled-dimgray.yaml b/themes/ohled-dimgray.yaml new file mode 100644 index 00000000..f184baa2 --- /dev/null +++ b/themes/ohled-dimgray.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DimGray" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#747474" + black: "#747474" + red: "#555555" + green: "#5D5D5D" + yellow: "#464646" + blue: "#6C6C6C" + magenta: "#656565" + cyan: "#4D4D4D" + white: "#3E3E3E" + brightBlack: "#747474" + brightRed: "#555555" + brightGreen: "#5D5D5D" + brightYellow: "#464646" + brightBlue: "#6C6C6C" + brightMagenta: "#656565" + brightCyan: "#4D4D4D" + brightWhite: "#3E3E3E" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 29.2 + black: 29.2 + red: 16.1 + green: 19.3 + yellow: 10.5 + blue: 25.6 + magenta: 22.6 + cyan: 13.1 + white: 7.8 + brightBlack: 29.2 + brightRed: 16.1 + brightGreen: 19.3 + brightYellow: 10.5 + brightBlue: 25.6 + brightMagenta: 22.6 + brightCyan: 13.1 + brightWhite: 7.8 diff --git a/themes/ohled-dodgerblue.yaml b/themes/ohled-dodgerblue.yaml new file mode 100644 index 00000000..59e294ee --- /dev/null +++ b/themes/ohled-dodgerblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_DodgerBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#1E90FF" + black: "#1E90FF" + red: "#166ABB" + green: "#1873CC" + yellow: "#125699" + blue: "#1C86EE" + magenta: "#1A7DDD" + cyan: "#1460AA" + white: "#104D88" + brightBlack: "#1E90FF" + brightRed: "#166ABB" + brightGreen: "#1873CC" + brightYellow: "#125699" + brightBlue: "#1C86EE" + brightMagenta: "#1A7DDD" + brightCyan: "#1460AA" + brightWhite: "#104D88" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 42.7 + black: 42.7 + red: 24.8 + green: 28.9 + yellow: 16.6 + blue: 37.8 + magenta: 33.4 + cyan: 20.6 + white: 13.1 + brightBlack: 42.7 + brightRed: 24.8 + brightGreen: 28.9 + brightYellow: 16.6 + brightBlue: 37.8 + brightMagenta: 33.4 + brightCyan: 20.6 + brightWhite: 13.1 diff --git a/themes/ohled-firebrick.yaml b/themes/ohled-firebrick.yaml new file mode 100644 index 00000000..b10854cf --- /dev/null +++ b/themes/ohled-firebrick.yaml @@ -0,0 +1,49 @@ +name: "OhLED_FireBrick" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#BE5252" + black: "#BE5252" + red: "#8B3C3C" + green: "#984242" + yellow: "#723131" + blue: "#B14D4D" + magenta: "#A54747" + cyan: "#7F3737" + white: "#652C2C" + brightBlack: "#BE5252" + brightRed: "#8B3C3C" + brightGreen: "#984242" + brightYellow: "#723131" + brightBlue: "#B14D4D" + brightMagenta: "#A54747" + brightCyan: "#7F3737" + brightWhite: "#652C2C" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 30 + black: 30 + red: 16.6 + green: 19.9 + yellow: 10.7 + blue: 26.5 + magenta: 23.1 + cyan: 13.8 + white: 8.1 + brightBlack: 30 + brightRed: 16.6 + brightGreen: 19.9 + brightYellow: 10.7 + brightBlue: 26.5 + brightMagenta: 23.1 + brightCyan: 13.8 + brightWhite: 8.1 diff --git a/themes/ohled-forestgreen.yaml b/themes/ohled-forestgreen.yaml new file mode 100644 index 00000000..5a716d53 --- /dev/null +++ b/themes/ohled-forestgreen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_ForestGreen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#228B22" + black: "#228B22" + red: "#196619" + green: "#1B6F1B" + yellow: "#145314" + blue: "#208220" + magenta: "#1D781D" + cyan: "#175D17" + white: "#124A12" + brightBlack: "#228B22" + brightRed: "#196619" + brightGreen: "#1B6F1B" + brightYellow: "#145314" + brightBlue: "#208220" + brightMagenta: "#1D781D" + brightCyan: "#175D17" + brightWhite: "#124A12" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 31.7 + black: 31.7 + red: 17.8 + green: 21 + yellow: 11.5 + blue: 28.2 + magenta: 24.3 + cyan: 14.7 + white: 8.7 + brightBlack: 31.7 + brightRed: 17.8 + brightGreen: 21 + brightYellow: 11.5 + brightBlue: 28.2 + brightMagenta: 24.3 + brightCyan: 14.7 + brightWhite: 8.7 diff --git a/themes/ohled-fuchsia.yaml b/themes/ohled-fuchsia.yaml new file mode 100644 index 00000000..443178e2 --- /dev/null +++ b/themes/ohled-fuchsia.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Fuchsia" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FF00FF" + black: "#FF00FF" + red: "#BB00BB" + green: "#CC00CC" + yellow: "#990099" + blue: "#EE00EE" + magenta: "#DD00DD" + cyan: "#AA00AA" + white: "#880088" + brightBlack: "#FF00FF" + brightRed: "#BB00BB" + brightGreen: "#CC00CC" + brightYellow: "#990099" + brightBlue: "#EE00EE" + brightMagenta: "#DD00DD" + brightCyan: "#AA00AA" + brightWhite: "#880088" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 46.2 + black: 46.2 + red: 26.9 + green: 31.4 + yellow: 18.4 + blue: 41.1 + magenta: 36.2 + cyan: 22.5 + white: 14.4 + brightBlack: 46.2 + brightRed: 26.9 + brightGreen: 31.4 + brightYellow: 18.4 + brightBlue: 41.1 + brightMagenta: 36.2 + brightCyan: 22.5 + brightWhite: 14.4 diff --git a/themes/ohled-gainsboro.yaml b/themes/ohled-gainsboro.yaml new file mode 100644 index 00000000..d1ccd0f9 --- /dev/null +++ b/themes/ohled-gainsboro.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Gainsboro" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#DCDCDC" + black: "#DCDCDC" + red: "#A1A1A1" + green: "#B0B0B0" + yellow: "#848484" + blue: "#CDCDCD" + magenta: "#BFBFBF" + cyan: "#939393" + white: "#757575" + brightBlack: "#DCDCDC" + brightRed: "#A1A1A1" + brightGreen: "#B0B0B0" + brightYellow: "#848484" + brightBlue: "#CDCDCD" + brightMagenta: "#BFBFBF" + brightCyan: "#939393" + brightWhite: "#757575" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 85.4 + black: 85.4 + red: 51.4 + green: 59.5 + yellow: 36.7 + blue: 76.3 + magenta: 68 + cyan: 44.1 + white: 29.6 + brightBlack: 85.4 + brightRed: 51.4 + brightGreen: 59.5 + brightYellow: 36.7 + brightBlue: 76.3 + brightMagenta: 68 + brightCyan: 44.1 + brightWhite: 29.6 diff --git a/themes/ohled-ghostwhite.yaml b/themes/ohled-ghostwhite.yaml new file mode 100644 index 00000000..78ea4993 --- /dev/null +++ b/themes/ohled-ghostwhite.yaml @@ -0,0 +1,49 @@ +name: "OhLED_GhostWhite" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#F8F8FF" + black: "#F8F8FF" + red: "#B6B6BB" + green: "#C6C6CC" + yellow: "#959599" + blue: "#E7E7EE" + magenta: "#D7D7DD" + cyan: "#A5A5AA" + white: "#848488" + brightBlack: "#F8F8FF" + brightRed: "#B6B6BB" + brightGreen: "#C6C6CC" + brightYellow: "#959599" + brightBlue: "#E7E7EE" + brightMagenta: "#D7D7DD" + brightCyan: "#A5A5AA" + brightWhite: "#848488" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 103.6 + black: 103.6 + red: 63.1 + green: 72.4 + yellow: 45.3 + blue: 92.6 + magenta: 82.6 + cyan: 53.7 + white: 36.8 + brightBlack: 103.6 + brightRed: 63.1 + brightGreen: 72.4 + brightYellow: 45.3 + brightBlue: 92.6 + brightMagenta: 82.6 + brightCyan: 53.7 + brightWhite: 36.8 diff --git a/themes/ohled-gold.yaml b/themes/ohled-gold.yaml new file mode 100644 index 00000000..ed065006 --- /dev/null +++ b/themes/ohled-gold.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Gold" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFD700" + black: "#FFD700" + red: "#BB9E00" + green: "#CCAC00" + yellow: "#998100" + blue: "#EEC900" + magenta: "#DDBA00" + cyan: "#AA8F00" + white: "#887300" + brightBlack: "#FFD700" + brightRed: "#BB9E00" + brightGreen: "#CCAC00" + brightYellow: "#998100" + brightBlue: "#EEC900" + brightMagenta: "#DDBA00" + brightCyan: "#AA8F00" + brightWhite: "#887300" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 84.3 + black: 84.3 + red: 51 + green: 58.7 + yellow: 36.1 + blue: 75.6 + magenta: 66.8 + cyan: 43.2 + white: 29.5 + brightBlack: 84.3 + brightRed: 51 + brightGreen: 58.7 + brightYellow: 36.1 + brightBlue: 75.6 + brightMagenta: 66.8 + brightCyan: 43.2 + brightWhite: 29.5 diff --git a/themes/ohled-goldenrod.yaml b/themes/ohled-goldenrod.yaml new file mode 100644 index 00000000..e065bdde --- /dev/null +++ b/themes/ohled-goldenrod.yaml @@ -0,0 +1,49 @@ +name: "OhLED_GoldenRod" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#DAA520" + black: "#DAA520" + red: "#A07917" + green: "#AE841A" + yellow: "#836313" + blue: "#CB9A1E" + magenta: "#BD8F1C" + cyan: "#916E15" + white: "#745811" + brightBlack: "#DAA520" + brightRed: "#A07917" + brightGreen: "#AE841A" + brightYellow: "#836313" + brightBlue: "#CB9A1E" + brightMagenta: "#BD8F1C" + brightCyan: "#916E15" + brightWhite: "#745811" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 58.3 + black: 58.3 + red: 34.5 + green: 40 + yellow: 24 + blue: 51.9 + magenta: 45.9 + cyan: 29.1 + white: 19.1 + brightBlack: 58.3 + brightRed: 34.5 + brightGreen: 40 + brightYellow: 24 + brightBlue: 51.9 + brightMagenta: 45.9 + brightCyan: 29.1 + brightWhite: 19.1 diff --git a/themes/ohled-gray.yaml b/themes/ohled-gray.yaml new file mode 100644 index 00000000..32e44420 --- /dev/null +++ b/themes/ohled-gray.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Gray" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#808080" + black: "#808080" + red: "#5E5E5E" + green: "#666666" + yellow: "#4D4D4D" + blue: "#777777" + magenta: "#6F6F6F" + cyan: "#555555" + white: "#444444" + brightBlack: "#808080" + brightRed: "#5E5E5E" + brightGreen: "#666666" + brightYellow: "#4D4D4D" + brightBlue: "#777777" + brightMagenta: "#6F6F6F" + brightCyan: "#555555" + brightWhite: "#444444" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 34.8 + black: 34.8 + red: 19.7 + green: 23 + yellow: 13.1 + blue: 30.6 + magenta: 27 + cyan: 16.1 + white: 9.8 + brightBlack: 34.8 + brightRed: 19.7 + brightGreen: 23 + brightYellow: 13.1 + brightBlue: 30.6 + brightMagenta: 27 + brightCyan: 16.1 + brightWhite: 9.8 diff --git a/themes/ohled-green.yaml b/themes/ohled-green.yaml new file mode 100644 index 00000000..b250451d --- /dev/null +++ b/themes/ohled-green.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Green" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#288628" + black: "#288628" + red: "#1D621D" + green: "#206B20" + yellow: "#185018" + blue: "#257D25" + magenta: "#237423" + cyan: "#1B591B" + white: "#154715" + brightBlack: "#288628" + brightRed: "#1D621D" + brightGreen: "#206B20" + brightYellow: "#185018" + brightBlue: "#257D25" + brightMagenta: "#237423" + brightCyan: "#1B591B" + brightWhite: "#154715" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 29.9 + black: 29.9 + red: 16.5 + green: 19.7 + yellow: 10.6 + blue: 26.4 + magenta: 23 + cyan: 13.5 + white: 7.9 + brightBlack: 29.9 + brightRed: 16.5 + brightGreen: 19.7 + brightYellow: 10.6 + brightBlue: 26.4 + brightMagenta: 23 + brightCyan: 13.5 + brightWhite: 7.9 diff --git a/themes/ohled-greenyellow.yaml b/themes/ohled-greenyellow.yaml new file mode 100644 index 00000000..83a6a7bb --- /dev/null +++ b/themes/ohled-greenyellow.yaml @@ -0,0 +1,49 @@ +name: "OhLED_GreenYellow" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#ADFF2F" + black: "#ADFF2F" + red: "#7FBB22" + green: "#8ACC26" + yellow: "#68991C" + blue: "#A1EE2C" + magenta: "#96DD29" + cyan: "#73AA1F" + white: "#5C8819" + brightBlack: "#ADFF2F" + brightRed: "#7FBB22" + brightGreen: "#8ACC26" + brightYellow: "#68991C" + brightBlue: "#A1EE2C" + brightMagenta: "#96DD29" + brightCyan: "#73AA1F" + brightWhite: "#5C8819" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 93.2 + black: 93.2 + red: 56.5 + green: 65.1 + yellow: 40.3 + blue: 83.4 + magenta: 74.1 + cyan: 48.2 + white: 32.8 + brightBlack: 93.2 + brightRed: 56.5 + brightGreen: 65.1 + brightYellow: 40.3 + brightBlue: 83.4 + brightMagenta: 74.1 + brightCyan: 48.2 + brightWhite: 32.8 diff --git a/themes/ohled-honeydew.yaml b/themes/ohled-honeydew.yaml new file mode 100644 index 00000000..3f8e3927 --- /dev/null +++ b/themes/ohled-honeydew.yaml @@ -0,0 +1,49 @@ +name: "OhLED_HoneyDew" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#F0FFF0" + black: "#F0FFF0" + red: "#B0BBB0" + green: "#C0CCC0" + yellow: "#909990" + blue: "#E0EEE0" + magenta: "#D0DDD0" + cyan: "#A0AAA0" + white: "#808880" + brightBlack: "#F0FFF0" + brightRed: "#B0BBB0" + brightGreen: "#C0CCC0" + brightYellow: "#909990" + brightBlue: "#E0EEE0" + brightMagenta: "#D0DDD0" + brightCyan: "#A0AAA0" + brightWhite: "#808880" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 105.1 + black: 105.1 + red: 64 + green: 73.7 + yellow: 45.9 + blue: 94.3 + magenta: 83.8 + cyan: 54.7 + white: 37.5 + brightBlack: 105.1 + brightRed: 64 + brightGreen: 73.7 + brightYellow: 45.9 + brightBlue: 94.3 + brightMagenta: 83.8 + brightCyan: 54.7 + brightWhite: 37.5 diff --git a/themes/ohled-hotpink.yaml b/themes/ohled-hotpink.yaml new file mode 100644 index 00000000..0bfd2df3 --- /dev/null +++ b/themes/ohled-hotpink.yaml @@ -0,0 +1,49 @@ +name: "OhLED_HotPink" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FF69B4" + black: "#FF69B4" + red: "#BB4D84" + green: "#CC5490" + yellow: "#993F6C" + blue: "#EE62A8" + magenta: "#DD5B9C" + cyan: "#AA4678" + white: "#883860" + brightBlack: "#FF69B4" + brightRed: "#BB4D84" + brightGreen: "#CC5490" + brightYellow: "#993F6C" + brightBlue: "#EE62A8" + brightMagenta: "#DD5B9C" + brightCyan: "#AA4678" + brightWhite: "#883860" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 51.1 + black: 51.1 + red: 30 + green: 34.9 + yellow: 20.6 + blue: 45.5 + magenta: 40.1 + cyan: 25.2 + white: 16.3 + brightBlack: 51.1 + brightRed: 30 + brightGreen: 34.9 + brightYellow: 20.6 + brightBlue: 45.5 + brightMagenta: 40.1 + brightCyan: 25.2 + brightWhite: 16.3 diff --git a/themes/ohled-indianred.yaml b/themes/ohled-indianred.yaml new file mode 100644 index 00000000..9f9cccd1 --- /dev/null +++ b/themes/ohled-indianred.yaml @@ -0,0 +1,49 @@ +name: "OhLED_IndianRed" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#CD5C5C" + black: "#CD5C5C" + red: "#964343" + green: "#A44A4A" + yellow: "#7B3737" + blue: "#BF5656" + magenta: "#B25050" + cyan: "#893D3D" + white: "#6D3131" + brightBlack: "#CD5C5C" + brightRed: "#964343" + brightGreen: "#A44A4A" + brightYellow: "#7B3737" + brightBlue: "#BF5656" + brightMagenta: "#B25050" + brightCyan: "#893D3D" + brightWhite: "#6D3131" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 35.1 + black: 35.1 + red: 19.7 + green: 23.6 + yellow: 13.1 + blue: 31.1 + magenta: 27.3 + cyan: 16.4 + white: 10 + brightBlack: 35.1 + brightRed: 19.7 + brightGreen: 23.6 + brightYellow: 13.1 + brightBlue: 31.1 + brightMagenta: 27.3 + brightCyan: 16.4 + brightWhite: 10 diff --git a/themes/ohled-indigo.yaml b/themes/ohled-indigo.yaml new file mode 100644 index 00000000..93790df5 --- /dev/null +++ b/themes/ohled-indigo.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Indigo" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#806AA3" + black: "#806AA3" + red: "#5E4E78" + green: "#665582" + yellow: "#4D4062" + blue: "#776398" + magenta: "#6F5C8D" + cyan: "#55476D" + white: "#443957" + brightBlack: "#806AA3" + brightRed: "#5E4E78" + brightGreen: "#665582" + brightYellow: "#4D4062" + brightBlue: "#776398" + brightMagenta: "#6F5C8D" + brightCyan: "#55476D" + brightWhite: "#443957" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 29.4 + black: 29.4 + red: 16.4 + green: 19.3 + yellow: 10.6 + blue: 25.9 + magenta: 22.6 + cyan: 13.4 + white: 7.9 + brightBlack: 29.4 + brightRed: 16.4 + brightGreen: 19.3 + brightYellow: 10.6 + brightBlue: 25.9 + brightMagenta: 22.6 + brightCyan: 13.4 + brightWhite: 7.9 diff --git a/themes/ohled-ivory.yaml b/themes/ohled-ivory.yaml new file mode 100644 index 00000000..3322adca --- /dev/null +++ b/themes/ohled-ivory.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Ivory" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFFFF0" + black: "#FFFFF0" + red: "#BBBBB0" + green: "#CCCCC0" + yellow: "#999990" + blue: "#EEEEE0" + magenta: "#DDDDD0" + cyan: "#AAAAA0" + white: "#888880" + brightBlack: "#FFFFF0" + brightRed: "#BBBBB0" + brightGreen: "#CCCCC0" + brightYellow: "#999990" + brightBlue: "#EEEEE0" + brightMagenta: "#DDDDD0" + brightCyan: "#AAAAA0" + brightWhite: "#888880" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.2 + black: 107.2 + red: 65.3 + green: 75.2 + yellow: 46.9 + blue: 96.1 + magenta: 85.5 + cyan: 55.9 + white: 38.4 + brightBlack: 107.2 + brightRed: 65.3 + brightGreen: 75.2 + brightYellow: 46.9 + brightBlue: 96.1 + brightMagenta: 85.5 + brightCyan: 55.9 + brightWhite: 38.4 diff --git a/themes/ohled-khaki.yaml b/themes/ohled-khaki.yaml new file mode 100644 index 00000000..ca9b91ac --- /dev/null +++ b/themes/ohled-khaki.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Khaki" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#F0E68C" + black: "#F0E68C" + red: "#B0A967" + green: "#C0B870" + yellow: "#908A54" + blue: "#E0D783" + magenta: "#D0C779" + cyan: "#A0995D" + white: "#807B4B" + brightBlack: "#F0E68C" + brightRed: "#B0A967" + brightGreen: "#C0B870" + brightYellow: "#908A54" + brightBlue: "#E0D783" + brightMagenta: "#D0C779" + brightCyan: "#A0995D" + brightWhite: "#807B4B" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 90 + black: 90 + red: 54.6 + green: 62.8 + yellow: 38.8 + blue: 80.8 + magenta: 71.4 + cyan: 46.3 + white: 31.7 + brightBlack: 90 + brightRed: 54.6 + brightGreen: 62.8 + brightYellow: 38.8 + brightBlue: 80.8 + brightMagenta: 71.4 + brightCyan: 46.3 + brightWhite: 31.7 diff --git a/themes/ohled-lavender.yaml b/themes/ohled-lavender.yaml new file mode 100644 index 00000000..8821daa7 --- /dev/null +++ b/themes/ohled-lavender.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Lavender" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#E6E6FA" + black: "#E6E6FA" + red: "#A9A9B7" + green: "#B8B8C8" + yellow: "#8A8A96" + blue: "#D7D7E9" + magenta: "#C7C7D9" + cyan: "#9999A7" + white: "#7B7B85" + brightBlack: "#E6E6FA" + brightRed: "#A9A9B7" + brightGreen: "#B8B8C8" + brightYellow: "#8A8A96" + brightBlue: "#D7D7E9" + brightMagenta: "#C7C7D9" + brightCyan: "#9999A7" + brightWhite: "#7B7B85" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 92.6 + black: 92.6 + red: 56.3 + green: 64.7 + yellow: 40.1 + blue: 83.2 + magenta: 73.5 + cyan: 47.7 + white: 32.8 + brightBlack: 92.6 + brightRed: 56.3 + brightGreen: 64.7 + brightYellow: 40.1 + brightBlue: 83.2 + brightMagenta: 73.5 + brightCyan: 47.7 + brightWhite: 32.8 diff --git a/themes/ohled-lavenderblush.yaml b/themes/ohled-lavenderblush.yaml new file mode 100644 index 00000000..667ec75b --- /dev/null +++ b/themes/ohled-lavenderblush.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LavenderBlush" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFF0F5" + black: "#FFF0F5" + red: "#BBB0B4" + green: "#CCC0C4" + yellow: "#999093" + blue: "#EEE0E5" + magenta: "#DDD0D4" + cyan: "#AAA0A3" + white: "#888083" + brightBlack: "#FFF0F5" + brightRed: "#BBB0B4" + brightGreen: "#CCC0C4" + brightYellow: "#999093" + brightBlue: "#EEE0E5" + brightMagenta: "#DDD0D4" + brightCyan: "#AAA0A3" + brightWhite: "#888083" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 100.4 + black: 100.4 + red: 61.1 + green: 70.3 + yellow: 43.7 + blue: 90 + magenta: 80 + cyan: 52.1 + white: 35.7 + brightBlack: 100.4 + brightRed: 61.1 + brightGreen: 70.3 + brightYellow: 43.7 + brightBlue: 90 + brightMagenta: 80 + brightCyan: 52.1 + brightWhite: 35.7 diff --git a/themes/ohled-lawngreen.yaml b/themes/ohled-lawngreen.yaml new file mode 100644 index 00000000..aa3ef7f8 --- /dev/null +++ b/themes/ohled-lawngreen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LawnGreen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#7CFC00" + black: "#7CFC00" + red: "#5BB900" + green: "#63CA00" + yellow: "#4A9700" + blue: "#74EB00" + magenta: "#6BDA00" + cyan: "#53A800" + white: "#428600" + brightBlack: "#7CFC00" + brightRed: "#5BB900" + brightGreen: "#63CA00" + brightYellow: "#4A9700" + brightBlue: "#74EB00" + brightMagenta: "#6BDA00" + brightCyan: "#53A800" + brightWhite: "#428600" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 87.9 + black: 87.9 + red: 53.2 + green: 61.5 + yellow: 37.7 + blue: 78.6 + magenta: 69.6 + cyan: 45.3 + white: 30.6 + brightBlack: 87.9 + brightRed: 53.2 + brightGreen: 61.5 + brightYellow: 37.7 + brightBlue: 78.6 + brightMagenta: 69.6 + brightCyan: 45.3 + brightWhite: 30.6 diff --git a/themes/ohled-lemonchiffon.yaml b/themes/ohled-lemonchiffon.yaml new file mode 100644 index 00000000..2f8dceec --- /dev/null +++ b/themes/ohled-lemonchiffon.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LemonChiffon" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFFACD" + black: "#FFFACD" + red: "#BBB796" + green: "#CCC8A4" + yellow: "#99967B" + blue: "#EEE9BF" + magenta: "#DDD9B2" + cyan: "#AAA789" + white: "#88856D" + brightBlack: "#FFFACD" + brightRed: "#BBB796" + brightGreen: "#CCC8A4" + brightYellow: "#99967B" + brightBlue: "#EEE9BF" + brightMagenta: "#DDD9B2" + brightCyan: "#AAA789" + brightWhite: "#88856D" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 103.4 + black: 103.4 + red: 62.8 + green: 72.5 + yellow: 45.1 + blue: 92.6 + magenta: 82.6 + cyan: 53.9 + white: 36.7 + brightBlack: 103.4 + brightRed: 62.8 + brightGreen: 72.5 + brightYellow: 45.1 + brightBlue: 92.6 + brightMagenta: 82.6 + brightCyan: 53.9 + brightWhite: 36.7 diff --git a/themes/ohled-lightblue.yaml b/themes/ohled-lightblue.yaml new file mode 100644 index 00000000..d64ce801 --- /dev/null +++ b/themes/ohled-lightblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LightBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#ADD8E6" + black: "#ADD8E6" + red: "#7F9EA9" + green: "#8AADB8" + yellow: "#68828A" + blue: "#A1CAD7" + magenta: "#96BBC7" + cyan: "#739099" + white: "#5C737B" + brightBlack: "#ADD8E6" + brightRed: "#7F9EA9" + brightGreen: "#8AADB8" + brightYellow: "#68828A" + brightBlue: "#A1CAD7" + brightMagenta: "#96BBC7" + brightCyan: "#739099" + brightWhite: "#5C737B" +meta: + mode: "dark" + accent: "blue" + hue: null + contrast: + fg: 78.7 + black: 78.7 + red: 47.2 + green: 54.8 + yellow: 33.7 + blue: 70.5 + magenta: 62.3 + cyan: 40.2 + white: 27.1 + brightBlack: 78.7 + brightRed: 47.2 + brightGreen: 54.8 + brightYellow: 33.7 + brightBlue: 70.5 + brightMagenta: 62.3 + brightCyan: 40.2 + brightWhite: 27.1 diff --git a/themes/ohled-lightcoral.yaml b/themes/ohled-lightcoral.yaml new file mode 100644 index 00000000..759bf344 --- /dev/null +++ b/themes/ohled-lightcoral.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LightCoral" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#F08080" + black: "#F08080" + red: "#B05E5E" + green: "#C06666" + yellow: "#904D4D" + blue: "#E07777" + magenta: "#D06F6F" + cyan: "#A05555" + white: "#804444" + brightBlack: "#F08080" + brightRed: "#B05E5E" + brightGreen: "#C06666" + brightYellow: "#904D4D" + brightBlue: "#E07777" + brightMagenta: "#D06F6F" + brightCyan: "#A05555" + brightWhite: "#804444" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 51.7 + black: 51.7 + red: 30.4 + green: 35.3 + yellow: 21 + blue: 45.9 + magenta: 40.6 + cyan: 25.4 + white: 16.5 + brightBlack: 51.7 + brightRed: 30.4 + brightGreen: 35.3 + brightYellow: 21 + brightBlue: 45.9 + brightMagenta: 40.6 + brightCyan: 25.4 + brightWhite: 16.5 diff --git a/themes/ohled-lightcyan.yaml b/themes/ohled-lightcyan.yaml new file mode 100644 index 00000000..5b53200e --- /dev/null +++ b/themes/ohled-lightcyan.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LightCyan" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#E0FFFF" + black: "#E0FFFF" + red: "#A4BBBB" + green: "#B3CCCC" + yellow: "#869999" + blue: "#D1EEEE" + magenta: "#C2DDDD" + cyan: "#95AAAA" + white: "#778888" + brightBlack: "#E0FFFF" + brightRed: "#A4BBBB" + brightGreen: "#B3CCCC" + brightYellow: "#869999" + brightBlue: "#D1EEEE" + brightMagenta: "#C2DDDD" + brightCyan: "#95AAAA" + brightWhite: "#778888" +meta: + mode: "dark" + accent: "cyan" + hue: null + contrast: + fg: 103.8 + black: 103.8 + red: 63.2 + green: 72.7 + yellow: 45.3 + blue: 93.1 + magenta: 82.7 + cyan: 54 + white: 37 + brightBlack: 103.8 + brightRed: 63.2 + brightGreen: 72.7 + brightYellow: 45.3 + brightBlue: 93.1 + brightMagenta: 82.7 + brightCyan: 54 + brightWhite: 37 diff --git a/themes/ohled-lightgoldenrodyellow.yaml b/themes/ohled-lightgoldenrodyellow.yaml new file mode 100644 index 00000000..dffa25c9 --- /dev/null +++ b/themes/ohled-lightgoldenrodyellow.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LightGoldenRodYellow" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FAFAD2" + black: "#FAFAD2" + red: "#B7B79A" + green: "#C8C8A8" + yellow: "#96967E" + blue: "#E9E9C4" + magenta: "#D9D9B6" + cyan: "#A7A78C" + white: "#858570" + brightBlack: "#FAFAD2" + brightRed: "#B7B79A" + brightGreen: "#C8C8A8" + brightYellow: "#96967E" + brightBlue: "#E9E9C4" + brightMagenta: "#D9D9B6" + brightCyan: "#A7A78C" + brightWhite: "#858570" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 102.9 + black: 102.9 + red: 62.4 + green: 72.1 + yellow: 44.8 + blue: 92 + magenta: 82.2 + cyan: 53.7 + white: 36.5 + brightBlack: 102.9 + brightRed: 62.4 + brightGreen: 72.1 + brightYellow: 44.8 + brightBlue: 92 + brightMagenta: 82.2 + brightCyan: 53.7 + brightWhite: 36.5 diff --git a/themes/ohled-lightgray.yaml b/themes/ohled-lightgray.yaml new file mode 100644 index 00000000..5549fdb6 --- /dev/null +++ b/themes/ohled-lightgray.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LightGray" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#D3D3D3" + black: "#D3D3D3" + red: "#9B9B9B" + green: "#A9A9A9" + yellow: "#7F7F7F" + blue: "#C5C5C5" + magenta: "#B7B7B7" + cyan: "#8D8D8D" + white: "#717171" + brightBlack: "#D3D3D3" + brightRed: "#9B9B9B" + brightGreen: "#A9A9A9" + brightYellow: "#7F7F7F" + brightBlue: "#C5C5C5" + brightMagenta: "#B7B7B7" + brightCyan: "#8D8D8D" + brightWhite: "#717171" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 79.9 + black: 79.9 + red: 48.2 + green: 55.7 + yellow: 34.3 + blue: 71.5 + magenta: 63.5 + cyan: 41.1 + white: 27.8 + brightBlack: 79.9 + brightRed: 48.2 + brightGreen: 55.7 + brightYellow: 34.3 + brightBlue: 71.5 + brightMagenta: 63.5 + brightCyan: 41.1 + brightWhite: 27.8 diff --git a/themes/ohled-lightgreen.yaml b/themes/ohled-lightgreen.yaml new file mode 100644 index 00000000..bf6a378a --- /dev/null +++ b/themes/ohled-lightgreen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LightGreen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#90EE90" + black: "#90EE90" + red: "#6AAF6A" + green: "#73BE73" + yellow: "#568F56" + blue: "#86DE86" + magenta: "#7DCE7D" + cyan: "#609F60" + white: "#4D7F4D" + brightBlack: "#90EE90" + brightRed: "#6AAF6A" + brightGreen: "#73BE73" + brightYellow: "#568F56" + brightBlue: "#86DE86" + brightMagenta: "#7DCE7D" + brightCyan: "#609F60" + brightWhite: "#4D7F4D" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 83.5 + black: 83.5 + red: 50.6 + green: 58 + yellow: 35.8 + blue: 74.7 + magenta: 66.2 + cyan: 43 + white: 29.1 + brightBlack: 83.5 + brightRed: 50.6 + brightGreen: 58 + brightYellow: 35.8 + brightBlue: 74.7 + brightMagenta: 66.2 + brightCyan: 43 + brightWhite: 29.1 diff --git a/themes/ohled-lightpink.yaml b/themes/ohled-lightpink.yaml new file mode 100644 index 00000000..37f16b2c --- /dev/null +++ b/themes/ohled-lightpink.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LightPink" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFB6C1" + black: "#FFB6C1" + red: "#BB858E" + green: "#CC929A" + yellow: "#996D74" + blue: "#EEAAB4" + magenta: "#DD9EA7" + cyan: "#AA7981" + white: "#886167" + brightBlack: "#FFB6C1" + brightRed: "#BB858E" + brightGreen: "#CC929A" + brightYellow: "#996D74" + brightBlue: "#EEAAB4" + brightMagenta: "#DD9EA7" + brightCyan: "#AA7981" + brightWhite: "#886167" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 74.2 + black: 74.2 + red: 44.4 + green: 51.6 + yellow: 31.4 + blue: 66.4 + magenta: 58.8 + cyan: 37.7 + white: 25.4 + brightBlack: 74.2 + brightRed: 44.4 + brightGreen: 51.6 + brightYellow: 31.4 + brightBlue: 66.4 + brightMagenta: 58.8 + brightCyan: 37.7 + brightWhite: 25.4 diff --git a/themes/ohled-lightsalmon.yaml b/themes/ohled-lightsalmon.yaml new file mode 100644 index 00000000..bede57a7 --- /dev/null +++ b/themes/ohled-lightsalmon.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LightSalmon" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFA07A" + black: "#FFA07A" + red: "#BB7559" + green: "#CC8062" + yellow: "#996049" + blue: "#EE9572" + magenta: "#DD8B6A" + cyan: "#AA6B51" + white: "#885541" + brightBlack: "#FFA07A" + brightRed: "#BB7559" + brightGreen: "#CC8062" + brightYellow: "#996049" + brightBlue: "#EE9572" + brightMagenta: "#DD8B6A" + brightCyan: "#AA6B51" + brightWhite: "#885541" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 64.2 + black: 64.2 + red: 38.1 + green: 44.3 + yellow: 26.8 + blue: 57.2 + magenta: 50.8 + cyan: 32.4 + white: 21.4 + brightBlack: 64.2 + brightRed: 38.1 + brightGreen: 44.3 + brightYellow: 26.8 + brightBlue: 57.2 + brightMagenta: 50.8 + brightCyan: 32.4 + brightWhite: 21.4 diff --git a/themes/ohled-lightseagreen.yaml b/themes/ohled-lightseagreen.yaml new file mode 100644 index 00000000..c1fcd615 --- /dev/null +++ b/themes/ohled-lightseagreen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LightSeaGreen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#20B2AA" + black: "#20B2AA" + red: "#17837D" + green: "#1A8E88" + yellow: "#136B66" + blue: "#1EA69F" + magenta: "#1C9A93" + cyan: "#157771" + white: "#115F5B" + brightBlack: "#20B2AA" + brightRed: "#17837D" + brightGreen: "#1A8E88" + brightYellow: "#136B66" + brightBlue: "#1EA69F" + brightMagenta: "#1C9A93" + brightCyan: "#157771" + brightWhite: "#115F5B" +meta: + mode: "dark" + accent: "cyan" + hue: null + contrast: + fg: 51.3 + black: 51.3 + red: 30.2 + green: 34.9 + yellow: 20.8 + blue: 45.6 + magenta: 40.1 + cyan: 25.4 + white: 16.4 + brightBlack: 51.3 + brightRed: 30.2 + brightGreen: 34.9 + brightYellow: 20.8 + brightBlue: 45.6 + brightMagenta: 40.1 + brightCyan: 25.4 + brightWhite: 16.4 diff --git a/themes/ohled-lightskyblue.yaml b/themes/ohled-lightskyblue.yaml new file mode 100644 index 00000000..e27a514f --- /dev/null +++ b/themes/ohled-lightskyblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LightSkyBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#87CEFA" + black: "#87CEFA" + red: "#6397B7" + green: "#6CA5C8" + yellow: "#517C96" + blue: "#7EC0E9" + magenta: "#75B3D9" + cyan: "#5A89A7" + white: "#486E85" + brightBlack: "#87CEFA" + brightRed: "#6397B7" + brightGreen: "#6CA5C8" + brightYellow: "#517C96" + brightBlue: "#7EC0E9" + brightMagenta: "#75B3D9" + brightCyan: "#5A89A7" + brightWhite: "#486E85" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 72 + black: 72 + red: 43.1 + green: 50 + yellow: 30.6 + blue: 64.2 + magenta: 57.2 + cyan: 36.5 + white: 24.6 + brightBlack: 72 + brightRed: 43.1 + brightGreen: 50 + brightYellow: 30.6 + brightBlue: 64.2 + brightMagenta: 57.2 + brightCyan: 36.5 + brightWhite: 24.6 diff --git a/themes/ohled-lightslategray.yaml b/themes/ohled-lightslategray.yaml new file mode 100644 index 00000000..f534ec22 --- /dev/null +++ b/themes/ohled-lightslategray.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LightSlateGray" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#778899" + black: "#778899" + red: "#576470" + green: "#5F6D7A" + yellow: "#47525C" + blue: "#6F7F8F" + magenta: "#677685" + cyan: "#4F5B66" + white: "#3F4952" + brightBlack: "#778899" + brightRed: "#576470" + brightGreen: "#5F6D7A" + brightYellow: "#47525C" + brightBlue: "#6F7F8F" + brightMagenta: "#677685" + brightCyan: "#4F5B66" + brightWhite: "#3F4952" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 37.7 + black: 37.7 + red: 21.5 + green: 25.3 + yellow: 14.4 + blue: 33.4 + magenta: 29.3 + cyan: 17.9 + white: 11.2 + brightBlack: 37.7 + brightRed: 21.5 + brightGreen: 25.3 + brightYellow: 14.4 + brightBlue: 33.4 + brightMagenta: 29.3 + brightCyan: 17.9 + brightWhite: 11.2 diff --git a/themes/ohled-lightsteelblue.yaml b/themes/ohled-lightsteelblue.yaml new file mode 100644 index 00000000..f47894f8 --- /dev/null +++ b/themes/ohled-lightsteelblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LightSteelBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#B0C4DE" + black: "#B0C4DE" + red: "#8190A3" + green: "#8D9DB2" + yellow: "#6A7685" + blue: "#A4B7CF" + magenta: "#99AAC0" + cyan: "#758394" + white: "#5E6976" + brightBlack: "#B0C4DE" + brightRed: "#8190A3" + brightGreen: "#8D9DB2" + brightYellow: "#6A7685" + brightBlue: "#A4B7CF" + brightMagenta: "#99AAC0" + brightCyan: "#758394" + brightWhite: "#5E6976" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 69.8 + black: 69.8 + red: 41.9 + green: 48.5 + yellow: 29.6 + blue: 62.4 + magenta: 55.3 + cyan: 35.5 + white: 23.8 + brightBlack: 69.8 + brightRed: 41.9 + brightGreen: 48.5 + brightYellow: 29.6 + brightBlue: 62.4 + brightMagenta: 55.3 + brightCyan: 35.5 + brightWhite: 23.8 diff --git a/themes/ohled-lightyellow.yaml b/themes/ohled-lightyellow.yaml new file mode 100644 index 00000000..4fb679dc --- /dev/null +++ b/themes/ohled-lightyellow.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LightYellow" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFFFE0" + black: "#FFFFE0" + red: "#BBBBA4" + green: "#CCCCB3" + yellow: "#999986" + blue: "#EEEED1" + magenta: "#DDDDC2" + cyan: "#AAAA95" + white: "#888877" + brightBlack: "#FFFFE0" + brightRed: "#BBBBA4" + brightGreen: "#CCCCB3" + brightYellow: "#999986" + brightBlue: "#EEEED1" + brightMagenta: "#DDDDC2" + brightCyan: "#AAAA95" + brightWhite: "#888877" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 106.5 + black: 106.5 + red: 64.9 + green: 74.7 + yellow: 46.5 + blue: 95.5 + magenta: 84.9 + cyan: 55.5 + white: 38.1 + brightBlack: 106.5 + brightRed: 64.9 + brightGreen: 74.7 + brightYellow: 46.5 + brightBlue: 95.5 + brightMagenta: 84.9 + brightCyan: 55.5 + brightWhite: 38.1 diff --git a/themes/ohled-lime.yaml b/themes/ohled-lime.yaml new file mode 100644 index 00000000..6a3a46cc --- /dev/null +++ b/themes/ohled-lime.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Lime" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#00FF00" + black: "#00FF00" + red: "#00BB00" + green: "#00CC00" + yellow: "#009900" + blue: "#00EE00" + magenta: "#00DD00" + cyan: "#00AA00" + white: "#008800" + brightBlack: "#00FF00" + brightRed: "#00BB00" + brightGreen: "#00CC00" + brightYellow: "#009900" + brightBlue: "#00EE00" + brightMagenta: "#00DD00" + brightCyan: "#00AA00" + brightWhite: "#008800" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 86.5 + black: 86.5 + red: 52.3 + green: 60.3 + yellow: 37.2 + blue: 77.5 + magenta: 68.7 + cyan: 44.5 + white: 30.2 + brightBlack: 86.5 + brightRed: 52.3 + brightGreen: 60.3 + brightYellow: 37.2 + brightBlue: 77.5 + brightMagenta: 68.7 + brightCyan: 44.5 + brightWhite: 30.2 diff --git a/themes/ohled-limegreen.yaml b/themes/ohled-limegreen.yaml new file mode 100644 index 00000000..c048bae1 --- /dev/null +++ b/themes/ohled-limegreen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_LimeGreen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#32CD32" + black: "#32CD32" + red: "#259625" + green: "#28A428" + yellow: "#1E7B1E" + blue: "#2FBF2F" + magenta: "#2BB22B" + cyan: "#218921" + white: "#1B6D1B" + brightBlack: "#32CD32" + brightRed: "#259625" + brightGreen: "#28A428" + brightYellow: "#1E7B1E" + brightBlue: "#2FBF2F" + brightMagenta: "#2BB22B" + brightCyan: "#218921" + brightWhite: "#1B6D1B" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 61.4 + black: 61.4 + red: 36.3 + green: 42.3 + yellow: 25.4 + blue: 54.6 + magenta: 48.6 + cyan: 30.9 + white: 20.3 + brightBlack: 61.4 + brightRed: 36.3 + brightGreen: 42.3 + brightYellow: 25.4 + brightBlue: 54.6 + brightMagenta: 48.6 + brightCyan: 30.9 + brightWhite: 20.3 diff --git a/themes/ohled-linen.yaml b/themes/ohled-linen.yaml new file mode 100644 index 00000000..39c29145 --- /dev/null +++ b/themes/ohled-linen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Linen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FAF0E6" + black: "#FAF0E6" + red: "#B7B0A9" + green: "#C8C0B8" + yellow: "#96908A" + blue: "#E9E0D7" + magenta: "#D9D0C7" + cyan: "#A7A099" + white: "#85807B" + brightBlack: "#FAF0E6" + brightRed: "#B7B0A9" + brightGreen: "#C8C0B8" + brightYellow: "#96908A" + brightBlue: "#E9E0D7" + brightMagenta: "#D9D0C7" + brightCyan: "#A7A099" + brightWhite: "#85807B" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 99 + black: 99 + red: 60.1 + green: 69.3 + yellow: 43 + blue: 88.7 + magenta: 78.9 + cyan: 51.4 + white: 35.1 + brightBlack: 99 + brightRed: 60.1 + brightGreen: 69.3 + brightYellow: 43 + brightBlue: 88.7 + brightMagenta: 78.9 + brightCyan: 51.4 + brightWhite: 35.1 diff --git a/themes/ohled-maroon.yaml b/themes/ohled-maroon.yaml new file mode 100644 index 00000000..bba750aa --- /dev/null +++ b/themes/ohled-maroon.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Maroon" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#9F6565" + black: "#9F6565" + red: "#754A4A" + green: "#7F5151" + yellow: "#5F3D3D" + blue: "#945E5E" + magenta: "#8A5858" + cyan: "#6A4343" + white: "#553636" + brightBlack: "#9F6565" + brightRed: "#754A4A" + brightGreen: "#7F5151" + brightYellow: "#5F3D3D" + brightBlue: "#945E5E" + brightMagenta: "#8A5858" + brightCyan: "#6A4343" + brightWhite: "#553636" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 29.6 + black: 29.6 + red: 16.4 + green: 19.5 + yellow: 10.6 + blue: 26 + magenta: 22.9 + cyan: 13.3 + white: 7.9 + brightBlack: 29.6 + brightRed: 16.4 + brightGreen: 19.5 + brightYellow: 10.6 + brightBlue: 26 + brightMagenta: 22.9 + brightCyan: 13.3 + brightWhite: 7.9 diff --git a/themes/ohled-mediumaquamarine.yaml b/themes/ohled-mediumaquamarine.yaml new file mode 100644 index 00000000..78bacd67 --- /dev/null +++ b/themes/ohled-mediumaquamarine.yaml @@ -0,0 +1,49 @@ +name: "OhLED_MediumAquaMarine" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#66CDAA" + black: "#66CDAA" + red: "#4B967D" + green: "#52A488" + yellow: "#3D7B66" + blue: "#5FBF9F" + magenta: "#58B293" + cyan: "#448971" + white: "#366D5B" + brightBlack: "#66CDAA" + brightRed: "#4B967D" + brightGreen: "#52A488" + brightYellow: "#3D7B66" + brightBlue: "#5FBF9F" + brightMagenta: "#58B293" + brightCyan: "#448971" + brightWhite: "#366D5B" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 65.7 + black: 65.7 + red: 39 + green: 45.4 + yellow: 27.5 + blue: 58.5 + magenta: 52 + cyan: 33.3 + white: 21.9 + brightBlack: 65.7 + brightRed: 39 + brightGreen: 45.4 + brightYellow: 27.5 + brightBlue: 58.5 + brightMagenta: 52 + brightCyan: 33.3 + brightWhite: 21.9 diff --git a/themes/ohled-mediumblue.yaml b/themes/ohled-mediumblue.yaml new file mode 100644 index 00000000..341ad089 --- /dev/null +++ b/themes/ohled-mediumblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_MediumBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#6666E0" + black: "#6666E0" + red: "#4B4BA4" + green: "#5252B3" + yellow: "#3D3D86" + blue: "#5F5FD1" + magenta: "#5858C2" + cyan: "#444495" + white: "#363677" + brightBlack: "#6666E0" + brightRed: "#4B4BA4" + brightGreen: "#5252B3" + brightYellow: "#3D3D86" + brightBlue: "#5F5FD1" + brightMagenta: "#5858C2" + brightCyan: "#444495" + brightWhite: "#363677" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 29.9 + black: 29.9 + red: 16.6 + green: 19.8 + yellow: 10.6 + blue: 26.3 + magenta: 22.8 + cyan: 13.6 + white: 7.9 + brightBlack: 29.9 + brightRed: 16.6 + brightGreen: 19.8 + brightYellow: 10.6 + brightBlue: 26.3 + brightMagenta: 22.8 + brightCyan: 13.6 + brightWhite: 7.9 diff --git a/themes/ohled-mediumorchid.yaml b/themes/ohled-mediumorchid.yaml new file mode 100644 index 00000000..1502a1f5 --- /dev/null +++ b/themes/ohled-mediumorchid.yaml @@ -0,0 +1,49 @@ +name: "OhLED_MediumOrchid" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#BA55D3" + black: "#BA55D3" + red: "#883E9B" + green: "#9544A9" + yellow: "#70337F" + blue: "#AE4FC5" + magenta: "#A14AB7" + cyan: "#7C398D" + white: "#632D71" + brightBlack: "#BA55D3" + brightRed: "#883E9B" + brightGreen: "#9544A9" + brightYellow: "#70337F" + brightBlue: "#AE4FC5" + brightMagenta: "#A14AB7" + brightCyan: "#7C398D" + brightWhite: "#632D71" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 35.5 + black: 35.5 + red: 20 + green: 23.8 + yellow: 13.4 + blue: 31.4 + magenta: 27.5 + cyan: 16.7 + white: 10.2 + brightBlack: 35.5 + brightRed: 20 + brightGreen: 23.8 + brightYellow: 13.4 + brightBlue: 31.4 + brightMagenta: 27.5 + brightCyan: 16.7 + brightWhite: 10.2 diff --git a/themes/ohled-mediumpurple.yaml b/themes/ohled-mediumpurple.yaml new file mode 100644 index 00000000..200239b1 --- /dev/null +++ b/themes/ohled-mediumpurple.yaml @@ -0,0 +1,49 @@ +name: "OhLED_MediumPurple" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#9370DB" + black: "#9370DB" + red: "#6C52A1" + green: "#765AAF" + yellow: "#584383" + blue: "#8969CC" + magenta: "#7F61BE" + cyan: "#624B92" + white: "#4E3C75" + brightBlack: "#9370DB" + brightRed: "#6C52A1" + brightGreen: "#765AAF" + brightYellow: "#584383" + brightBlue: "#8969CC" + brightMagenta: "#7F61BE" + brightCyan: "#624B92" + brightWhite: "#4E3C75" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 36.7 + black: 36.7 + red: 20.9 + green: 24.7 + yellow: 13.8 + blue: 32.6 + magenta: 28.4 + cyan: 17.4 + white: 10.7 + brightBlack: 36.7 + brightRed: 20.9 + brightGreen: 24.7 + brightYellow: 13.8 + brightBlue: 32.6 + brightMagenta: 28.4 + brightCyan: 17.4 + brightWhite: 10.7 diff --git a/themes/ohled-mediumseagreen.yaml b/themes/ohled-mediumseagreen.yaml new file mode 100644 index 00000000..18f493f0 --- /dev/null +++ b/themes/ohled-mediumseagreen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_MediumSeaGreen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#3CB371" + black: "#3CB371" + red: "#2C8353" + green: "#308F5A" + yellow: "#246B44" + blue: "#38A769" + magenta: "#349B62" + cyan: "#28774B" + white: "#205F3C" + brightBlack: "#3CB371" + brightRed: "#2C8353" + brightGreen: "#308F5A" + brightYellow: "#246B44" + brightBlue: "#38A769" + brightMagenta: "#349B62" + brightCyan: "#28774B" + brightWhite: "#205F3C" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 50.4 + black: 50.4 + red: 29.4 + green: 34.4 + yellow: 20.2 + blue: 44.9 + magenta: 39.5 + cyan: 24.7 + white: 15.9 + brightBlack: 50.4 + brightRed: 29.4 + brightGreen: 34.4 + brightYellow: 20.2 + brightBlue: 44.9 + brightMagenta: 39.5 + brightCyan: 24.7 + brightWhite: 15.9 diff --git a/themes/ohled-mediumslateblue.yaml b/themes/ohled-mediumslateblue.yaml new file mode 100644 index 00000000..77aa53a7 --- /dev/null +++ b/themes/ohled-mediumslateblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_MediumSlateBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#7B68EE" + black: "#7B68EE" + red: "#5A4CAF" + green: "#6253BE" + yellow: "#4A3E8F" + blue: "#7361DE" + magenta: "#6B5ACE" + cyan: "#52459F" + white: "#42377F" + brightBlack: "#7B68EE" + brightRed: "#5A4CAF" + brightGreen: "#6253BE" + brightYellow: "#4A3E8F" + brightBlue: "#7361DE" + brightMagenta: "#6B5ACE" + brightCyan: "#52459F" + brightWhite: "#42377F" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 33.4 + black: 33.4 + red: 18.8 + green: 22.1 + yellow: 12.3 + blue: 29.6 + magenta: 25.8 + cyan: 15.5 + white: 9.3 + brightBlack: 33.4 + brightRed: 18.8 + brightGreen: 22.1 + brightYellow: 12.3 + brightBlue: 29.6 + brightMagenta: 25.8 + brightCyan: 15.5 + brightWhite: 9.3 diff --git a/themes/ohled-mediumspringgreen.yaml b/themes/ohled-mediumspringgreen.yaml new file mode 100644 index 00000000..7a5ff79e --- /dev/null +++ b/themes/ohled-mediumspringgreen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_MediumSpringGreen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#00FA9A" + black: "#00FA9A" + red: "#00B771" + green: "#00C87B" + yellow: "#00965C" + blue: "#00E990" + magenta: "#00D985" + cyan: "#00A767" + white: "#008552" + brightBlack: "#00FA9A" + brightRed: "#00B771" + brightGreen: "#00C87B" + brightYellow: "#00965C" + brightBlue: "#00E990" + brightMagenta: "#00D985" + brightCyan: "#00A767" + brightWhite: "#008552" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 85.5 + black: 85.5 + red: 51.5 + green: 59.6 + yellow: 36.7 + blue: 76.4 + magenta: 68.1 + cyan: 44.2 + white: 29.7 + brightBlack: 85.5 + brightRed: 51.5 + brightGreen: 59.6 + brightYellow: 36.7 + brightBlue: 76.4 + brightMagenta: 68.1 + brightCyan: 44.2 + brightWhite: 29.7 diff --git a/themes/ohled-mediumturquoise.yaml b/themes/ohled-mediumturquoise.yaml new file mode 100644 index 00000000..f28518c3 --- /dev/null +++ b/themes/ohled-mediumturquoise.yaml @@ -0,0 +1,49 @@ +name: "OhLED_MediumTurquoise" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#48D1CC" + black: "#48D1CC" + red: "#359996" + green: "#3AA7A3" + yellow: "#2B7D7A" + blue: "#43C3BE" + magenta: "#3EB5B1" + cyan: "#308B88" + white: "#266F6D" + brightBlack: "#48D1CC" + brightRed: "#359996" + brightGreen: "#3AA7A3" + brightYellow: "#2B7D7A" + brightBlue: "#43C3BE" + brightMagenta: "#3EB5B1" + brightCyan: "#308B88" + brightWhite: "#266F6D" +meta: + mode: "dark" + accent: "cyan" + hue: null + contrast: + fg: 67.7 + black: 67.7 + red: 40.3 + green: 46.8 + yellow: 28.2 + blue: 60.4 + magenta: 53.5 + cyan: 34.1 + white: 22.7 + brightBlack: 67.7 + brightRed: 40.3 + brightGreen: 46.8 + brightYellow: 28.2 + brightBlue: 60.4 + brightMagenta: 53.5 + brightCyan: 34.1 + brightWhite: 22.7 diff --git a/themes/ohled-mediumvioletred.yaml b/themes/ohled-mediumvioletred.yaml new file mode 100644 index 00000000..ffbe7636 --- /dev/null +++ b/themes/ohled-mediumvioletred.yaml @@ -0,0 +1,49 @@ +name: "OhLED_MediumVioletRed" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#CC388D" + black: "#CC388D" + red: "#962967" + green: "#A32D71" + yellow: "#7A2255" + blue: "#BE3484" + magenta: "#B1317A" + cyan: "#88255E" + white: "#6D1E4B" + brightBlack: "#CC388D" + brightRed: "#962967" + brightGreen: "#A32D71" + brightYellow: "#7A2255" + brightBlue: "#BE3484" + brightMagenta: "#B1317A" + brightCyan: "#88255E" + brightWhite: "#6D1E4B" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 30.6 + black: 30.6 + red: 17.1 + green: 20.2 + yellow: 11 + blue: 26.9 + magenta: 23.6 + cyan: 13.9 + white: 8.3 + brightBlack: 30.6 + brightRed: 17.1 + brightGreen: 20.2 + brightYellow: 11 + brightBlue: 26.9 + brightMagenta: 23.6 + brightCyan: 13.9 + brightWhite: 8.3 diff --git a/themes/ohled-midnightblue.yaml b/themes/ohled-midnightblue.yaml new file mode 100644 index 00000000..c1ca14a5 --- /dev/null +++ b/themes/ohled-midnightblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_MidnightBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#717199" + black: "#717199" + red: "#535370" + green: "#5A5A7A" + yellow: "#44445C" + blue: "#69698F" + magenta: "#626285" + cyan: "#4B4B66" + white: "#3C3C52" + brightBlack: "#717199" + brightRed: "#535370" + brightGreen: "#5A5A7A" + brightYellow: "#44445C" + brightBlue: "#69698F" + brightMagenta: "#626285" + brightCyan: "#4B4B66" + brightWhite: "#3C3C52" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 29.4 + black: 29.4 + red: 16.3 + green: 19.2 + yellow: 10.6 + blue: 25.8 + magenta: 22.7 + cyan: 13.2 + white: 7.8 + brightBlack: 29.4 + brightRed: 16.3 + brightGreen: 19.2 + brightYellow: 10.6 + brightBlue: 25.8 + brightMagenta: 22.7 + brightCyan: 13.2 + brightWhite: 7.8 diff --git a/themes/ohled-mintcream.yaml b/themes/ohled-mintcream.yaml new file mode 100644 index 00000000..1e30fc08 --- /dev/null +++ b/themes/ohled-mintcream.yaml @@ -0,0 +1,49 @@ +name: "OhLED_MintCream" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#F5FFFA" + black: "#F5FFFA" + red: "#B4BBB7" + green: "#C4CCC8" + yellow: "#939996" + blue: "#E5EEE9" + magenta: "#D4DDD9" + cyan: "#A3AAA7" + white: "#838885" + brightBlack: "#F5FFFA" + brightRed: "#B4BBB7" + brightGreen: "#C4CCC8" + brightYellow: "#939996" + brightBlue: "#E5EEE9" + brightMagenta: "#D4DDD9" + brightCyan: "#A3AAA7" + brightWhite: "#838885" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 106.3 + black: 106.3 + red: 64.7 + green: 74.5 + yellow: 46.4 + blue: 95.3 + magenta: 84.7 + cyan: 55.3 + white: 38 + brightBlack: 106.3 + brightRed: 64.7 + brightGreen: 74.5 + brightYellow: 46.4 + brightBlue: 95.3 + brightMagenta: 84.7 + brightCyan: 55.3 + brightWhite: 38 diff --git a/themes/ohled-mistyrose.yaml b/themes/ohled-mistyrose.yaml new file mode 100644 index 00000000..6c351890 --- /dev/null +++ b/themes/ohled-mistyrose.yaml @@ -0,0 +1,49 @@ +name: "OhLED_MistyRose" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFE4E1" + black: "#FFE4E1" + red: "#BBA7A5" + green: "#CCB6B4" + yellow: "#998987" + blue: "#EED5D2" + magenta: "#DDC6C3" + cyan: "#AA9896" + white: "#887A78" + brightBlack: "#FFE4E1" + brightRed: "#BBA7A5" + brightGreen: "#CCB6B4" + brightYellow: "#998987" + brightBlue: "#EED5D2" + brightMagenta: "#DDC6C3" + brightCyan: "#AA9896" + brightWhite: "#887A78" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.1 + black: 94.1 + red: 57 + green: 65.7 + yellow: 40.8 + blue: 84.4 + magenta: 75.1 + cyan: 48.7 + white: 33.4 + brightBlack: 94.1 + brightRed: 57 + brightGreen: 65.7 + brightYellow: 40.8 + brightBlue: 84.4 + brightMagenta: 75.1 + brightCyan: 48.7 + brightWhite: 33.4 diff --git a/themes/ohled-moccasin.yaml b/themes/ohled-moccasin.yaml new file mode 100644 index 00000000..0759a8f7 --- /dev/null +++ b/themes/ohled-moccasin.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Moccasin" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFE4B5" + black: "#FFE4B5" + red: "#BBA785" + green: "#CCB691" + yellow: "#99896D" + blue: "#EED5A9" + magenta: "#DDC69D" + cyan: "#AA9879" + white: "#887A61" + brightBlack: "#FFE4B5" + brightRed: "#BBA785" + brightGreen: "#CCB691" + brightYellow: "#99896D" + brightBlue: "#EED5A9" + brightMagenta: "#DDC69D" + brightCyan: "#AA9879" + brightWhite: "#887A61" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 92.5 + black: 92.5 + red: 56 + green: 64.5 + yellow: 40.1 + blue: 82.9 + magenta: 73.7 + cyan: 47.8 + white: 32.7 + brightBlack: 92.5 + brightRed: 56 + brightGreen: 64.5 + brightYellow: 40.1 + brightBlue: 82.9 + brightMagenta: 73.7 + brightCyan: 47.8 + brightWhite: 32.7 diff --git a/themes/ohled-navajowhite.yaml b/themes/ohled-navajowhite.yaml new file mode 100644 index 00000000..589d7254 --- /dev/null +++ b/themes/ohled-navajowhite.yaml @@ -0,0 +1,49 @@ +name: "OhLED_NavajoWhite" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFDEAD" + black: "#FFDEAD" + red: "#BBA37F" + green: "#CCB28A" + yellow: "#998568" + blue: "#EECFA1" + magenta: "#DDC096" + cyan: "#AA9473" + white: "#88765C" + brightBlack: "#FFDEAD" + brightRed: "#BBA37F" + brightGreen: "#CCB28A" + brightYellow: "#998568" + brightBlue: "#EECFA1" + brightMagenta: "#DDC096" + brightCyan: "#AA9473" + brightWhite: "#88765C" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 89.6 + black: 89.6 + red: 54.3 + green: 62.7 + yellow: 38.6 + blue: 80.1 + magenta: 71.1 + cyan: 46.2 + white: 31.3 + brightBlack: 89.6 + brightRed: 54.3 + brightGreen: 62.7 + brightYellow: 38.6 + brightBlue: 80.1 + brightMagenta: 71.1 + brightCyan: 46.2 + brightWhite: 31.3 diff --git a/themes/ohled-navy.yaml b/themes/ohled-navy.yaml new file mode 100644 index 00000000..1d3f5abf --- /dev/null +++ b/themes/ohled-navy.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Navy" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#6F6FA5" + black: "#6F6FA5" + red: "#515179" + green: "#595984" + yellow: "#434363" + blue: "#68689A" + magenta: "#60608F" + cyan: "#4A4A6E" + white: "#3B3B58" + brightBlack: "#6F6FA5" + brightRed: "#515179" + brightGreen: "#595984" + brightYellow: "#434363" + brightBlue: "#68689A" + brightMagenta: "#60608F" + brightCyan: "#4A4A6E" + brightWhite: "#3B3B58" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 29.3 + black: 29.3 + red: 16 + green: 19.3 + yellow: 10.5 + blue: 26 + magenta: 22.4 + cyan: 13.2 + white: 7.7 + brightBlack: 29.3 + brightRed: 16 + brightGreen: 19.3 + brightYellow: 10.5 + brightBlue: 26 + brightMagenta: 22.4 + brightCyan: 13.2 + brightWhite: 7.7 diff --git a/themes/ohled-oldlace.yaml b/themes/ohled-oldlace.yaml new file mode 100644 index 00000000..7e3ace1e --- /dev/null +++ b/themes/ohled-oldlace.yaml @@ -0,0 +1,49 @@ +name: "OhLED_OldLace" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FDF5E6" + black: "#FDF5E6" + red: "#BAB4A9" + green: "#CAC4B8" + yellow: "#98938A" + blue: "#ECE5D7" + magenta: "#DBD4C7" + cyan: "#A9A399" + white: "#87837B" + brightBlack: "#FDF5E6" + brightRed: "#BAB4A9" + brightGreen: "#CAC4B8" + brightYellow: "#98938A" + brightBlue: "#ECE5D7" + brightMagenta: "#DBD4C7" + brightCyan: "#A9A399" + brightWhite: "#87837B" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 101.8 + black: 101.8 + red: 62.1 + green: 71.2 + yellow: 44.3 + blue: 91.4 + magenta: 80.9 + cyan: 52.8 + white: 36.3 + brightBlack: 101.8 + brightRed: 62.1 + brightGreen: 71.2 + brightYellow: 44.3 + brightBlue: 91.4 + brightMagenta: 80.9 + brightCyan: 52.8 + brightWhite: 36.3 diff --git a/themes/ohled-olive.yaml b/themes/ohled-olive.yaml new file mode 100644 index 00000000..d56b93f8 --- /dev/null +++ b/themes/ohled-olive.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Olive" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#808000" + black: "#808000" + red: "#5E5E00" + green: "#666600" + yellow: "#4D4D00" + blue: "#777700" + magenta: "#6F6F00" + cyan: "#555500" + white: "#444400" + brightBlack: "#808000" + brightRed: "#5E5E00" + brightGreen: "#666600" + brightYellow: "#4D4D00" + brightBlue: "#777700" + brightMagenta: "#6F6F00" + brightCyan: "#555500" + brightWhite: "#444400" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 32.9 + black: 32.9 + red: 18.5 + green: 21.7 + yellow: 12.2 + blue: 28.9 + magenta: 25.5 + cyan: 15.1 + white: 9.1 + brightBlack: 32.9 + brightRed: 18.5 + brightGreen: 21.7 + brightYellow: 12.2 + brightBlue: 28.9 + brightMagenta: 25.5 + brightCyan: 15.1 + brightWhite: 9.1 diff --git a/themes/ohled-olivedrab.yaml b/themes/ohled-olivedrab.yaml new file mode 100644 index 00000000..ca60112b --- /dev/null +++ b/themes/ohled-olivedrab.yaml @@ -0,0 +1,49 @@ +name: "OhLED_OliveDrab" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#6B8E23" + black: "#6B8E23" + red: "#4E681A" + green: "#56721C" + yellow: "#405515" + blue: "#648521" + magenta: "#5D7B1E" + cyan: "#475F17" + white: "#394C13" + brightBlack: "#6B8E23" + brightRed: "#4E681A" + brightGreen: "#56721C" + brightYellow: "#405515" + brightBlue: "#648521" + brightMagenta: "#5D7B1E" + brightCyan: "#475F17" + brightWhite: "#394C13" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 36.2 + black: 36.2 + red: 20.5 + green: 24.4 + yellow: 13.6 + blue: 32.3 + magenta: 28.1 + cyan: 17.1 + white: 10.6 + brightBlack: 36.2 + brightRed: 20.5 + brightGreen: 24.4 + brightYellow: 13.6 + brightBlue: 32.3 + brightMagenta: 28.1 + brightCyan: 17.1 + brightWhite: 10.6 diff --git a/themes/ohled-orange.yaml b/themes/ohled-orange.yaml new file mode 100644 index 00000000..8dc75d02 --- /dev/null +++ b/themes/ohled-orange.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Orange" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFA500" + black: "#FFA500" + red: "#BB7900" + green: "#CC8400" + yellow: "#996300" + blue: "#EE9A00" + magenta: "#DD8F00" + cyan: "#AA6E00" + white: "#885800" + brightBlack: "#FFA500" + brightRed: "#BB7900" + brightGreen: "#CC8400" + brightYellow: "#996300" + brightBlue: "#EE9A00" + brightMagenta: "#DD8F00" + brightCyan: "#AA6E00" + brightWhite: "#885800" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 64.7 + black: 64.7 + red: 38.5 + green: 44.7 + yellow: 27 + blue: 57.8 + magenta: 51.1 + cyan: 32.6 + white: 21.7 + brightBlack: 64.7 + brightRed: 38.5 + brightGreen: 44.7 + brightYellow: 27 + brightBlue: 57.8 + brightMagenta: 51.1 + brightCyan: 32.6 + brightWhite: 21.7 diff --git a/themes/ohled-orangered.yaml b/themes/ohled-orangered.yaml new file mode 100644 index 00000000..ae455e43 --- /dev/null +++ b/themes/ohled-orangered.yaml @@ -0,0 +1,49 @@ +name: "OhLED_OrangeRed" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FF4500" + black: "#FF4500" + red: "#BB3300" + green: "#CC3700" + yellow: "#992900" + blue: "#EE4000" + magenta: "#DD3C00" + cyan: "#AA2E00" + white: "#882500" + brightBlack: "#FF4500" + brightRed: "#BB3300" + brightGreen: "#CC3700" + brightYellow: "#992900" + brightBlue: "#EE4000" + brightMagenta: "#DD3C00" + brightCyan: "#AA2E00" + brightWhite: "#882500" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 41.4 + black: 41.4 + red: 23.9 + green: 27.9 + yellow: 16.1 + blue: 36.7 + magenta: 32.3 + cyan: 19.9 + white: 12.5 + brightBlack: 41.4 + brightRed: 23.9 + brightGreen: 27.9 + brightYellow: 16.1 + brightBlue: 36.7 + brightMagenta: 32.3 + brightCyan: 19.9 + brightWhite: 12.5 diff --git a/themes/ohled-orchid.yaml b/themes/ohled-orchid.yaml new file mode 100644 index 00000000..2a46fb0b --- /dev/null +++ b/themes/ohled-orchid.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Orchid" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#DA70D6" + black: "#DA70D6" + red: "#A0529D" + green: "#AE5AAB" + yellow: "#834380" + blue: "#CB69C8" + magenta: "#BD61B9" + cyan: "#914B8F" + white: "#743C72" + brightBlack: "#DA70D6" + brightRed: "#A0529D" + brightGreen: "#AE5AAB" + brightYellow: "#834380" + brightBlue: "#CB69C8" + brightMagenta: "#BD61B9" + brightCyan: "#914B8F" + brightWhite: "#743C72" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 47.1 + black: 47.1 + red: 27.4 + green: 32.1 + yellow: 18.7 + blue: 42 + magenta: 36.9 + cyan: 23 + white: 14.8 + brightBlack: 47.1 + brightRed: 27.4 + brightGreen: 32.1 + brightYellow: 18.7 + brightBlue: 42 + brightMagenta: 36.9 + brightCyan: 23 + brightWhite: 14.8 diff --git a/themes/ohled-palegoldenrod.yaml b/themes/ohled-palegoldenrod.yaml new file mode 100644 index 00000000..2cb98eae --- /dev/null +++ b/themes/ohled-palegoldenrod.yaml @@ -0,0 +1,49 @@ +name: "OhLED_PaleGoldenRod" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#EEE8AA" + black: "#EEE8AA" + red: "#AFAA7D" + green: "#BEBA88" + yellow: "#8F8B66" + blue: "#DED99F" + magenta: "#CEC993" + cyan: "#9F9B71" + white: "#7F7C5B" + brightBlack: "#EEE8AA" + brightRed: "#AFAA7D" + brightGreen: "#BEBA88" + brightYellow: "#8F8B66" + brightBlue: "#DED99F" + brightMagenta: "#CEC993" + brightCyan: "#9F9B71" + brightWhite: "#7F7C5B" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 91.4 + black: 91.4 + red: 55.4 + green: 64 + yellow: 39.4 + blue: 82.1 + magenta: 72.6 + cyan: 47.4 + white: 32.3 + brightBlack: 91.4 + brightRed: 55.4 + brightGreen: 64 + brightYellow: 39.4 + brightBlue: 82.1 + brightMagenta: 72.6 + brightCyan: 47.4 + brightWhite: 32.3 diff --git a/themes/ohled-palegreen.yaml b/themes/ohled-palegreen.yaml new file mode 100644 index 00000000..621f4c18 --- /dev/null +++ b/themes/ohled-palegreen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_PaleGreen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#98FB98" + black: "#98FB98" + red: "#6FB86F" + green: "#7AC97A" + yellow: "#5B975B" + blue: "#8EEA8E" + magenta: "#84DA84" + cyan: "#65A765" + white: "#518651" + brightBlack: "#98FB98" + brightRed: "#6FB86F" + brightGreen: "#7AC97A" + brightYellow: "#5B975B" + brightBlue: "#8EEA8E" + brightMagenta: "#84DA84" + brightCyan: "#65A765" + brightWhite: "#518651" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 90.9 + black: 90.9 + red: 55 + green: 63.6 + yellow: 39.4 + blue: 81.3 + magenta: 72.5 + cyan: 46.8 + white: 32 + brightBlack: 90.9 + brightRed: 55 + brightGreen: 63.6 + brightYellow: 39.4 + brightBlue: 81.3 + brightMagenta: 72.5 + brightCyan: 46.8 + brightWhite: 32 diff --git a/themes/ohled-paleturquoise.yaml b/themes/ohled-paleturquoise.yaml new file mode 100644 index 00000000..ed170a35 --- /dev/null +++ b/themes/ohled-paleturquoise.yaml @@ -0,0 +1,49 @@ +name: "OhLED_PaleTurquoise" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#AFEEEE" + black: "#AFEEEE" + red: "#80AFAF" + green: "#8CBEBE" + yellow: "#698F8F" + blue: "#A3DEDE" + magenta: "#98CECE" + cyan: "#759F9F" + white: "#5D7F7F" + brightBlack: "#AFEEEE" + brightRed: "#80AFAF" + brightGreen: "#8CBEBE" + brightYellow: "#698F8F" + brightBlue: "#A3DEDE" + brightMagenta: "#98CECE" + brightCyan: "#759F9F" + brightWhite: "#5D7F7F" +meta: + mode: "dark" + accent: "cyan" + hue: null + contrast: + fg: 89.5 + black: 89.5 + red: 54.4 + green: 62.3 + yellow: 38.7 + blue: 80.1 + magenta: 71.1 + cyan: 46.4 + white: 31.4 + brightBlack: 89.5 + brightRed: 54.4 + brightGreen: 62.3 + brightYellow: 38.7 + brightBlue: 80.1 + brightMagenta: 71.1 + brightCyan: 46.4 + brightWhite: 31.4 diff --git a/themes/ohled-palevioletred.yaml b/themes/ohled-palevioletred.yaml new file mode 100644 index 00000000..d4e1cb26 --- /dev/null +++ b/themes/ohled-palevioletred.yaml @@ -0,0 +1,49 @@ +name: "OhLED_PaleVioletRed" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#DB7093" + black: "#DB7093" + red: "#A1526C" + green: "#AF5A76" + yellow: "#834358" + blue: "#CC6989" + magenta: "#BE617F" + cyan: "#924B62" + white: "#753C4E" + brightBlack: "#DB7093" + brightRed: "#A1526C" + brightGreen: "#AF5A76" + brightYellow: "#834358" + brightBlue: "#CC6989" + brightMagenta: "#BE617F" + brightCyan: "#924B62" + brightWhite: "#753C4E" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 44.1 + black: 44.1 + red: 25.6 + green: 29.9 + yellow: 17.2 + blue: 39.2 + magenta: 34.4 + cyan: 21.4 + white: 13.6 + brightBlack: 44.1 + brightRed: 25.6 + brightGreen: 29.9 + brightYellow: 17.2 + brightBlue: 39.2 + brightMagenta: 34.4 + brightCyan: 21.4 + brightWhite: 13.6 diff --git a/themes/ohled-papayawhip.yaml b/themes/ohled-papayawhip.yaml new file mode 100644 index 00000000..90bb2908 --- /dev/null +++ b/themes/ohled-papayawhip.yaml @@ -0,0 +1,49 @@ +name: "OhLED_PapayaWhip" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFEFD5" + black: "#FFEFD5" + red: "#BBAF9C" + green: "#CCBFAA" + yellow: "#998F80" + blue: "#EEDFC7" + magenta: "#DDCFB9" + cyan: "#AA9F8E" + white: "#887F72" + brightBlack: "#FFEFD5" + brightRed: "#BBAF9C" + brightGreen: "#CCBFAA" + brightYellow: "#998F80" + brightBlue: "#EEDFC7" + brightMagenta: "#DDCFB9" + brightCyan: "#AA9F8E" + brightWhite: "#887F72" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 98.6 + black: 98.6 + red: 59.8 + green: 68.9 + yellow: 42.7 + blue: 88.3 + magenta: 78.5 + cyan: 51 + white: 34.8 + brightBlack: 98.6 + brightRed: 59.8 + brightGreen: 68.9 + brightYellow: 42.7 + brightBlue: 88.3 + brightMagenta: 78.5 + brightCyan: 51 + brightWhite: 34.8 diff --git a/themes/ohled-peachpuff.yaml b/themes/ohled-peachpuff.yaml new file mode 100644 index 00000000..9bb2ac33 --- /dev/null +++ b/themes/ohled-peachpuff.yaml @@ -0,0 +1,49 @@ +name: "OhLED_PeachPuff" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFDAB9" + black: "#FFDAB9" + red: "#BBA088" + green: "#CCAE94" + yellow: "#99836F" + blue: "#EECBAD" + magenta: "#DDBDA0" + cyan: "#AA917B" + white: "#887463" + brightBlack: "#FFDAB9" + brightRed: "#BBA088" + brightGreen: "#CCAE94" + brightYellow: "#99836F" + brightBlue: "#EECBAD" + brightMagenta: "#DDBDA0" + brightCyan: "#AA917B" + brightWhite: "#887463" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 88.2 + black: 88.2 + red: 53.4 + green: 61.4 + yellow: 38.1 + blue: 78.8 + magenta: 70.2 + cyan: 45.4 + white: 30.8 + brightBlack: 88.2 + brightRed: 53.4 + brightGreen: 61.4 + brightYellow: 38.1 + brightBlue: 78.8 + brightMagenta: 70.2 + brightCyan: 45.4 + brightWhite: 30.8 diff --git a/themes/ohled-peru.yaml b/themes/ohled-peru.yaml new file mode 100644 index 00000000..b44fdf00 --- /dev/null +++ b/themes/ohled-peru.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Peru" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#CD853F" + black: "#CD853F" + red: "#96622E" + green: "#A46A32" + yellow: "#7B5026" + blue: "#BF7C3B" + magenta: "#B27337" + cyan: "#89592A" + white: "#6D4722" + brightBlack: "#CD853F" + brightRed: "#96622E" + brightGreen: "#A46A32" + brightYellow: "#7B5026" + brightBlue: "#BF7C3B" + brightMagenta: "#B27337" + brightCyan: "#89592A" + brightWhite: "#6D4722" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 45.5 + black: 45.5 + red: 26.5 + green: 30.8 + yellow: 18.1 + blue: 40.4 + magenta: 35.6 + cyan: 22.2 + white: 14.1 + brightBlack: 45.5 + brightRed: 26.5 + brightGreen: 30.8 + brightYellow: 18.1 + brightBlue: 40.4 + brightMagenta: 35.6 + brightCyan: 22.2 + brightWhite: 14.1 diff --git a/themes/ohled-pink.yaml b/themes/ohled-pink.yaml new file mode 100644 index 00000000..b2c3e900 --- /dev/null +++ b/themes/ohled-pink.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Pink" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFC0CB" + black: "#FFC0CB" + red: "#BB8D95" + green: "#CC9AA2" + yellow: "#99737A" + blue: "#EEB3BD" + magenta: "#DDA6B0" + cyan: "#AA8087" + white: "#88666C" + brightBlack: "#FFC0CB" + brightRed: "#BB8D95" + brightGreen: "#CC9AA2" + brightYellow: "#99737A" + brightBlue: "#EEB3BD" + brightMagenta: "#DDA6B0" + brightCyan: "#AA8087" + brightWhite: "#88666C" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 78.3 + black: 78.3 + red: 47.2 + green: 54.6 + yellow: 33.3 + blue: 70 + magenta: 62 + cyan: 40.1 + white: 26.9 + brightBlack: 78.3 + brightRed: 47.2 + brightGreen: 54.6 + brightYellow: 33.3 + brightBlue: 70 + brightMagenta: 62 + brightCyan: 40.1 + brightWhite: 26.9 diff --git a/themes/ohled-plum.yaml b/themes/ohled-plum.yaml new file mode 100644 index 00000000..f90a47b4 --- /dev/null +++ b/themes/ohled-plum.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Plum" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#DDA0DD" + black: "#DDA0DD" + red: "#A275A2" + green: "#B180B1" + yellow: "#856085" + blue: "#CE95CE" + magenta: "#C08BC0" + cyan: "#936B93" + white: "#765576" + brightBlack: "#DDA0DD" + brightRed: "#A275A2" + brightGreen: "#B180B1" + brightYellow: "#856085" + brightBlue: "#CE95CE" + brightMagenta: "#C08BC0" + brightCyan: "#936B93" + brightWhite: "#765576" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 62 + black: 62 + red: 36.7 + green: 42.8 + yellow: 25.8 + blue: 55.2 + magenta: 49.1 + cyan: 31.2 + white: 20.6 + brightBlack: 62 + brightRed: 36.7 + brightGreen: 42.8 + brightYellow: 25.8 + brightBlue: 55.2 + brightMagenta: 49.1 + brightCyan: 31.2 + brightWhite: 20.6 diff --git a/themes/ohled-powderblue.yaml b/themes/ohled-powderblue.yaml new file mode 100644 index 00000000..27c02483 --- /dev/null +++ b/themes/ohled-powderblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_PowderBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#B0E0E6" + black: "#B0E0E6" + red: "#81A4A9" + green: "#8DB3B8" + yellow: "#6A868A" + blue: "#A4D1D7" + magenta: "#99C2C7" + cyan: "#759599" + white: "#5E777B" + brightBlack: "#B0E0E6" + brightRed: "#81A4A9" + brightGreen: "#8DB3B8" + brightYellow: "#6A868A" + brightBlue: "#A4D1D7" + brightMagenta: "#99C2C7" + brightCyan: "#759599" + brightWhite: "#5E777B" +meta: + mode: "dark" + accent: "blue" + hue: null + contrast: + fg: 82.6 + black: 82.6 + red: 49.7 + green: 57.5 + yellow: 35.3 + blue: 73.9 + magenta: 65.6 + cyan: 42.3 + white: 28.6 + brightBlack: 82.6 + brightRed: 49.7 + brightGreen: 57.5 + brightYellow: 35.3 + brightBlue: 73.9 + brightMagenta: 65.6 + brightCyan: 42.3 + brightWhite: 28.6 diff --git a/themes/ohled-purple.yaml b/themes/ohled-purple.yaml new file mode 100644 index 00000000..b6f43634 --- /dev/null +++ b/themes/ohled-purple.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Purple" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#9C5F9C" + black: "#9C5F9C" + red: "#724672" + green: "#7D4C7D" + yellow: "#5E395E" + blue: "#925992" + magenta: "#875287" + cyan: "#683F68" + white: "#533353" + brightBlack: "#9C5F9C" + brightRed: "#724672" + brightGreen: "#7D4C7D" + brightYellow: "#5E395E" + brightBlue: "#925992" + brightMagenta: "#875287" + brightCyan: "#683F68" + brightWhite: "#533353" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 29.7 + black: 29.7 + red: 16.5 + green: 19.6 + yellow: 10.7 + blue: 26.4 + magenta: 22.7 + cyan: 13.4 + white: 8 + brightBlack: 29.7 + brightRed: 16.5 + brightGreen: 19.6 + brightYellow: 10.7 + brightBlue: 26.4 + brightMagenta: 22.7 + brightCyan: 13.4 + brightWhite: 8 diff --git a/themes/ohled-rebeccapurple.yaml b/themes/ohled-rebeccapurple.yaml new file mode 100644 index 00000000..cae4eee5 --- /dev/null +++ b/themes/ohled-rebeccapurple.yaml @@ -0,0 +1,49 @@ +name: "OhLED_RebeccaPurple" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#8566AD" + black: "#8566AD" + red: "#624B7F" + green: "#6A528A" + yellow: "#503D68" + blue: "#7C5FA1" + magenta: "#735896" + cyan: "#594473" + white: "#47365C" + brightBlack: "#8566AD" + brightRed: "#624B7F" + brightGreen: "#6A528A" + brightYellow: "#503D68" + brightBlue: "#7C5FA1" + brightMagenta: "#735896" + brightCyan: "#594473" + brightWhite: "#47365C" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 29.4 + black: 29.4 + red: 16.4 + green: 19.4 + yellow: 10.5 + blue: 25.8 + magenta: 22.5 + cyan: 13.3 + white: 7.7 + brightBlack: 29.4 + brightRed: 16.4 + brightGreen: 19.4 + brightYellow: 10.5 + brightBlue: 25.8 + brightMagenta: 22.5 + brightCyan: 13.3 + brightWhite: 7.7 diff --git a/themes/ohled-red.yaml b/themes/ohled-red.yaml new file mode 100644 index 00000000..17700de9 --- /dev/null +++ b/themes/ohled-red.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Red" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FF0000" + black: "#FF0000" + red: "#BB0000" + green: "#CC0000" + yellow: "#990000" + blue: "#EE0000" + magenta: "#DD0000" + cyan: "#AA0000" + white: "#880000" + brightBlack: "#FF0000" + brightRed: "#BB0000" + brightGreen: "#CC0000" + brightYellow: "#990000" + brightBlue: "#EE0000" + brightMagenta: "#DD0000" + brightCyan: "#AA0000" + brightWhite: "#880000" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 37.5 + black: 37.5 + red: 21.4 + green: 25.2 + yellow: 14.3 + blue: 33.3 + magenta: 29.2 + cyan: 17.8 + white: 11 + brightBlack: 37.5 + brightRed: 21.4 + brightGreen: 25.2 + brightYellow: 14.3 + brightBlue: 33.3 + brightMagenta: 29.2 + brightCyan: 17.8 + brightWhite: 11 diff --git a/themes/ohled-rosybrown.yaml b/themes/ohled-rosybrown.yaml new file mode 100644 index 00000000..d2a983a6 --- /dev/null +++ b/themes/ohled-rosybrown.yaml @@ -0,0 +1,49 @@ +name: "OhLED_RosyBrown" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#BC8F8F" + black: "#BC8F8F" + red: "#8A6969" + green: "#967272" + yellow: "#715656" + blue: "#AF8585" + magenta: "#A37C7C" + cyan: "#7D5F5F" + white: "#644C4C" + brightBlack: "#BC8F8F" + brightRed: "#8A6969" + brightGreen: "#967272" + brightYellow: "#715656" + brightBlue: "#AF8585" + brightMagenta: "#A37C7C" + brightCyan: "#7D5F5F" + brightWhite: "#644C4C" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 47.8 + black: 47.8 + red: 27.9 + green: 32.4 + yellow: 19.2 + blue: 42.3 + magenta: 37.5 + cyan: 23.2 + white: 14.9 + brightBlack: 47.8 + brightRed: 27.9 + brightGreen: 32.4 + brightYellow: 19.2 + brightBlue: 42.3 + brightMagenta: 37.5 + brightCyan: 23.2 + brightWhite: 14.9 diff --git a/themes/ohled-royalblue.yaml b/themes/ohled-royalblue.yaml new file mode 100644 index 00000000..0de4d0c8 --- /dev/null +++ b/themes/ohled-royalblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_RoyalBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#476CE2" + black: "#476CE2" + red: "#344FA6" + green: "#3956B5" + yellow: "#2B4188" + blue: "#4265D3" + magenta: "#3E5EC4" + cyan: "#2F4897" + white: "#263A79" + brightBlack: "#476CE2" + brightRed: "#344FA6" + brightGreen: "#3956B5" + brightYellow: "#2B4188" + brightBlue: "#4265D3" + brightMagenta: "#3E5EC4" + brightCyan: "#2F4897" + brightWhite: "#263A79" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 29.8 + black: 29.8 + red: 16.5 + green: 19.5 + yellow: 10.7 + blue: 26.3 + magenta: 23 + cyan: 13.5 + white: 8.1 + brightBlack: 29.8 + brightRed: 16.5 + brightGreen: 19.5 + brightYellow: 10.7 + brightBlue: 26.3 + brightMagenta: 23 + brightCyan: 13.5 + brightWhite: 8.1 diff --git a/themes/ohled-saddlebrown.yaml b/themes/ohled-saddlebrown.yaml new file mode 100644 index 00000000..40ca8328 --- /dev/null +++ b/themes/ohled-saddlebrown.yaml @@ -0,0 +1,49 @@ +name: "OhLED_SaddleBrown" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#9D6852" + black: "#9D6852" + red: "#734C3C" + green: "#7E5342" + yellow: "#5E3E31" + blue: "#93614D" + magenta: "#885A47" + cyan: "#694537" + white: "#54372C" + brightBlack: "#9D6852" + brightRed: "#734C3C" + brightGreen: "#7E5342" + brightYellow: "#5E3E31" + brightBlue: "#93614D" + brightMagenta: "#885A47" + brightCyan: "#694537" + brightWhite: "#54372C" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 29.7 + black: 29.7 + red: 16.4 + green: 19.6 + yellow: 10.5 + blue: 26.2 + magenta: 22.8 + cyan: 13.4 + white: 7.9 + brightBlack: 29.7 + brightRed: 16.4 + brightGreen: 19.6 + brightYellow: 10.5 + brightBlue: 26.2 + brightMagenta: 22.8 + brightCyan: 13.4 + brightWhite: 7.9 diff --git a/themes/ohled-salmon.yaml b/themes/ohled-salmon.yaml new file mode 100644 index 00000000..8518fb5c --- /dev/null +++ b/themes/ohled-salmon.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Salmon" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FA8072" + black: "#FA8072" + red: "#B75E54" + green: "#C8665B" + yellow: "#964D44" + blue: "#E9776A" + magenta: "#D96F63" + cyan: "#A7554C" + white: "#85443D" + brightBlack: "#FA8072" + brightRed: "#B75E54" + brightGreen: "#C8665B" + brightYellow: "#964D44" + brightBlue: "#E9776A" + brightMagenta: "#D96F63" + brightCyan: "#A7554C" + brightWhite: "#85443D" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 53.3 + black: 53.3 + red: 31.3 + green: 36.4 + yellow: 21.7 + blue: 47.3 + magenta: 42 + cyan: 26.4 + white: 17.1 + brightBlack: 53.3 + brightRed: 31.3 + brightGreen: 36.4 + brightYellow: 21.7 + brightBlue: 47.3 + brightMagenta: 42 + brightCyan: 26.4 + brightWhite: 17.1 diff --git a/themes/ohled-sandybrown.yaml b/themes/ohled-sandybrown.yaml new file mode 100644 index 00000000..1564e8c4 --- /dev/null +++ b/themes/ohled-sandybrown.yaml @@ -0,0 +1,49 @@ +name: "OhLED_SandyBrown" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#F4A460" + black: "#F4A460" + red: "#B37846" + green: "#C3834D" + yellow: "#92623A" + blue: "#E4995A" + magenta: "#D38E53" + cyan: "#A36D40" + white: "#825733" + brightBlack: "#F4A460" + brightRed: "#B37846" + brightGreen: "#C3834D" + brightYellow: "#92623A" + brightBlue: "#E4995A" + brightMagenta: "#D38E53" + brightCyan: "#A36D40" + brightWhite: "#825733" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 63 + black: 63 + red: 37.4 + green: 43.4 + yellow: 26 + blue: 56.3 + magenta: 49.6 + cyan: 31.6 + white: 20.9 + brightBlack: 63 + brightRed: 37.4 + brightGreen: 43.4 + brightYellow: 26 + brightBlue: 56.3 + brightMagenta: 49.6 + brightCyan: 31.6 + brightWhite: 20.9 diff --git a/themes/ohled-seagreen.yaml b/themes/ohled-seagreen.yaml new file mode 100644 index 00000000..d31d7d41 --- /dev/null +++ b/themes/ohled-seagreen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_SeaGreen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#2E8B57" + black: "#2E8B57" + red: "#226640" + green: "#256F46" + yellow: "#1C5334" + blue: "#2B8251" + magenta: "#28784B" + cyan: "#1F5D3A" + white: "#194A2E" + brightBlack: "#2E8B57" + brightRed: "#226640" + brightGreen: "#256F46" + brightYellow: "#1C5334" + brightBlue: "#2B8251" + brightMagenta: "#28784B" + brightCyan: "#1F5D3A" + brightWhite: "#194A2E" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 32.7 + black: 32.7 + red: 18.4 + green: 21.6 + yellow: 11.9 + blue: 29 + magenta: 25.1 + cyan: 15.2 + white: 9.1 + brightBlack: 32.7 + brightRed: 18.4 + brightGreen: 21.6 + brightYellow: 11.9 + brightBlue: 29 + brightMagenta: 25.1 + brightCyan: 15.2 + brightWhite: 9.1 diff --git a/themes/ohled-seashell.yaml b/themes/ohled-seashell.yaml new file mode 100644 index 00000000..25dc7e84 --- /dev/null +++ b/themes/ohled-seashell.yaml @@ -0,0 +1,49 @@ +name: "OhLED_SeaShell" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFF5EE" + black: "#FFF5EE" + red: "#BBB4AF" + green: "#CCC4BE" + yellow: "#99938F" + blue: "#EEE5DE" + magenta: "#DDD4CE" + cyan: "#AAA39F" + white: "#88837F" + brightBlack: "#FFF5EE" + brightRed: "#BBB4AF" + brightGreen: "#CCC4BE" + brightYellow: "#99938F" + brightBlue: "#EEE5DE" + brightMagenta: "#DDD4CE" + brightCyan: "#AAA39F" + brightWhite: "#88837F" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 102.4 + black: 102.4 + red: 62.4 + green: 71.7 + yellow: 44.6 + blue: 92 + magenta: 81.4 + cyan: 53.1 + white: 36.6 + brightBlack: 102.4 + brightRed: 62.4 + brightGreen: 71.7 + brightYellow: 44.6 + brightBlue: 92 + brightMagenta: 81.4 + brightCyan: 53.1 + brightWhite: 36.6 diff --git a/themes/ohled-sienna.yaml b/themes/ohled-sienna.yaml new file mode 100644 index 00000000..67113149 --- /dev/null +++ b/themes/ohled-sienna.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Sienna" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#A86248" + black: "#A86248" + red: "#7B4835" + green: "#864E3A" + yellow: "#653B2B" + blue: "#9D5B43" + magenta: "#92553E" + cyan: "#704130" + white: "#5A3426" + brightBlack: "#A86248" + brightRed: "#7B4835" + brightGreen: "#864E3A" + brightYellow: "#653B2B" + brightBlue: "#9D5B43" + brightMagenta: "#92553E" + brightCyan: "#704130" + brightWhite: "#5A3426" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 29.6 + black: 29.6 + red: 16.4 + green: 19.3 + yellow: 10.6 + blue: 26 + magenta: 22.8 + cyan: 13.3 + white: 7.9 + brightBlack: 29.6 + brightRed: 16.4 + brightGreen: 19.3 + brightYellow: 10.6 + brightBlue: 26 + brightMagenta: 22.8 + brightCyan: 13.3 + brightWhite: 7.9 diff --git a/themes/ohled-silver.yaml b/themes/ohled-silver.yaml new file mode 100644 index 00000000..829e4827 --- /dev/null +++ b/themes/ohled-silver.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Silver" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#C0C0C0" + black: "#C0C0C0" + red: "#8D8D8D" + green: "#9A9A9A" + yellow: "#737373" + blue: "#B3B3B3" + magenta: "#A6A6A6" + cyan: "#808080" + white: "#666666" + brightBlack: "#C0C0C0" + brightRed: "#8D8D8D" + brightGreen: "#9A9A9A" + brightYellow: "#737373" + brightBlue: "#B3B3B3" + brightMagenta: "#A6A6A6" + brightCyan: "#808080" + brightWhite: "#666666" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 68.6 + black: 68.6 + red: 41.1 + green: 47.7 + yellow: 28.7 + blue: 61.2 + magenta: 54.1 + cyan: 34.8 + white: 23 + brightBlack: 68.6 + brightRed: 41.1 + brightGreen: 47.7 + brightYellow: 28.7 + brightBlue: 61.2 + brightMagenta: 54.1 + brightCyan: 34.8 + brightWhite: 23 diff --git a/themes/ohled-skyblue.yaml b/themes/ohled-skyblue.yaml new file mode 100644 index 00000000..12d4f261 --- /dev/null +++ b/themes/ohled-skyblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_SkyBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#87CEEB" + black: "#87CEEB" + red: "#6397AC" + green: "#6CA5BC" + yellow: "#517C8D" + blue: "#7EC0DB" + magenta: "#75B3CC" + cyan: "#5A899D" + white: "#486E7D" + brightBlack: "#87CEEB" + brightRed: "#6397AC" + brightGreen: "#6CA5BC" + brightYellow: "#517C8D" + brightBlue: "#7EC0DB" + brightMagenta: "#75B3CC" + brightCyan: "#5A899D" + brightWhite: "#486E7D" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 71.2 + black: 71.2 + red: 42.6 + green: 49.4 + yellow: 30.2 + blue: 63.5 + magenta: 56.5 + cyan: 36 + white: 24.2 + brightBlack: 71.2 + brightRed: 42.6 + brightGreen: 49.4 + brightYellow: 30.2 + brightBlue: 63.5 + brightMagenta: 56.5 + brightCyan: 36 + brightWhite: 24.2 diff --git a/themes/ohled-slateblue.yaml b/themes/ohled-slateblue.yaml new file mode 100644 index 00000000..5b5b2807 --- /dev/null +++ b/themes/ohled-slateblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_SlateBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#7365D1" + black: "#7365D1" + red: "#544A99" + green: "#5C51A7" + yellow: "#453D7D" + blue: "#6B5EC3" + magenta: "#6458B5" + cyan: "#4D438B" + white: "#3D366F" + brightBlack: "#7365D1" + brightRed: "#544A99" + brightGreen: "#5C51A7" + brightYellow: "#453D7D" + brightBlue: "#6B5EC3" + brightMagenta: "#6458B5" + brightCyan: "#4D438B" + brightWhite: "#3D366F" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 29.6 + black: 29.6 + red: 16.3 + green: 19.5 + yellow: 10.6 + blue: 26 + magenta: 22.9 + cyan: 13.3 + white: 7.9 + brightBlack: 29.6 + brightRed: 16.3 + brightGreen: 19.5 + brightYellow: 10.6 + brightBlue: 26 + brightMagenta: 22.9 + brightCyan: 13.3 + brightWhite: 7.9 diff --git a/themes/ohled-slategray.yaml b/themes/ohled-slategray.yaml new file mode 100644 index 00000000..73856c8f --- /dev/null +++ b/themes/ohled-slategray.yaml @@ -0,0 +1,49 @@ +name: "OhLED_SlateGray" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#708090" + black: "#708090" + red: "#525E6A" + green: "#5A6673" + yellow: "#434D56" + blue: "#697786" + magenta: "#616F7D" + cyan: "#4B5560" + white: "#3C444D" + brightBlack: "#708090" + brightRed: "#525E6A" + brightGreen: "#5A6673" + brightYellow: "#434D56" + brightBlue: "#697786" + brightMagenta: "#616F7D" + brightCyan: "#4B5560" + brightWhite: "#3C444D" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 33.9 + black: 33.9 + red: 19.1 + green: 22.5 + yellow: 12.6 + blue: 29.8 + magenta: 26.2 + cyan: 15.7 + white: 9.5 + brightBlack: 33.9 + brightRed: 19.1 + brightGreen: 22.5 + brightYellow: 12.6 + brightBlue: 29.8 + brightMagenta: 26.2 + brightCyan: 15.7 + brightWhite: 9.5 diff --git a/themes/ohled-snow.yaml b/themes/ohled-snow.yaml new file mode 100644 index 00000000..31c26a9b --- /dev/null +++ b/themes/ohled-snow.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Snow" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFFAFA" + black: "#FFFAFA" + red: "#BBB7B7" + green: "#CCC8C8" + yellow: "#999696" + blue: "#EEE9E9" + magenta: "#DDD9D9" + cyan: "#AAA7A7" + white: "#888585" + brightBlack: "#FFFAFA" + brightRed: "#BBB7B7" + brightGreen: "#CCC8C8" + brightYellow: "#999696" + brightBlue: "#EEE9E9" + brightMagenta: "#DDD9D9" + brightCyan: "#AAA7A7" + brightWhite: "#888585" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 105.3 + black: 105.3 + red: 64 + green: 73.8 + yellow: 46 + blue: 94.2 + magenta: 84.1 + cyan: 55 + white: 37.5 + brightBlack: 105.3 + brightRed: 64 + brightGreen: 73.8 + brightYellow: 46 + brightBlue: 94.2 + brightMagenta: 84.1 + brightCyan: 55 + brightWhite: 37.5 diff --git a/themes/ohled-springgreen.yaml b/themes/ohled-springgreen.yaml new file mode 100644 index 00000000..9677e7e9 --- /dev/null +++ b/themes/ohled-springgreen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_SpringGreen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#00FF7F" + black: "#00FF7F" + red: "#00BB5D" + green: "#00CC66" + yellow: "#00994C" + blue: "#00EE77" + magenta: "#00DD6E" + cyan: "#00AA55" + white: "#008844" + brightBlack: "#00FF7F" + brightRed: "#00BB5D" + brightGreen: "#00CC66" + brightYellow: "#00994C" + brightBlue: "#00EE77" + brightMagenta: "#00DD6E" + brightCyan: "#00AA55" + brightWhite: "#008844" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 87.6 + black: 87.6 + red: 52.9 + green: 61.1 + yellow: 37.7 + blue: 78.4 + magenta: 69.6 + cyan: 45.1 + white: 30.7 + brightBlack: 87.6 + brightRed: 52.9 + brightGreen: 61.1 + brightYellow: 37.7 + brightBlue: 78.4 + brightMagenta: 69.6 + brightCyan: 45.1 + brightWhite: 30.7 diff --git a/themes/ohled-steelblue.yaml b/themes/ohled-steelblue.yaml new file mode 100644 index 00000000..ac723a70 --- /dev/null +++ b/themes/ohled-steelblue.yaml @@ -0,0 +1,49 @@ +name: "OhLED_SteelBlue" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#4682B4" + black: "#4682B4" + red: "#335F84" + green: "#386890" + yellow: "#2A4E6C" + blue: "#4179A8" + magenta: "#3D719C" + cyan: "#2F5778" + white: "#254560" + brightBlack: "#4682B4" + brightRed: "#335F84" + brightGreen: "#386890" + brightYellow: "#2A4E6C" + brightBlue: "#4179A8" + brightMagenta: "#3D719C" + brightCyan: "#2F5778" + brightWhite: "#254560" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 33.6 + black: 33.6 + red: 18.8 + green: 22.4 + yellow: 12.5 + blue: 29.6 + magenta: 26.1 + cyan: 15.7 + white: 9.4 + brightBlack: 33.6 + brightRed: 18.8 + brightGreen: 22.4 + brightYellow: 12.5 + brightBlue: 29.6 + brightMagenta: 26.1 + brightCyan: 15.7 + brightWhite: 9.4 diff --git a/themes/ohled-tan.yaml b/themes/ohled-tan.yaml new file mode 100644 index 00000000..21723013 --- /dev/null +++ b/themes/ohled-tan.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Tan" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#D2B48C" + black: "#D2B48C" + red: "#9A8467" + green: "#A89070" + yellow: "#7E6C54" + blue: "#C4A883" + magenta: "#B69C79" + cyan: "#8C785D" + white: "#70604B" + brightBlack: "#D2B48C" + brightRed: "#9A8467" + brightGreen: "#A89070" + brightYellow: "#7E6C54" + brightBlue: "#C4A883" + brightMagenta: "#B69C79" + brightCyan: "#8C785D" + brightWhite: "#70604B" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 64.4 + black: 64.4 + red: 38.3 + green: 44.5 + yellow: 26.8 + blue: 57.5 + magenta: 50.8 + cyan: 32.4 + white: 21.6 + brightBlack: 64.4 + brightRed: 38.3 + brightGreen: 44.5 + brightYellow: 26.8 + brightBlue: 57.5 + brightMagenta: 50.8 + brightCyan: 32.4 + brightWhite: 21.6 diff --git a/themes/ohled-teal.yaml b/themes/ohled-teal.yaml new file mode 100644 index 00000000..325a43f9 --- /dev/null +++ b/themes/ohled-teal.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Teal" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#128282" + black: "#128282" + red: "#0D5F5F" + green: "#0E6868" + yellow: "#0B4E4E" + blue: "#117979" + magenta: "#107171" + cyan: "#0C5757" + white: "#0A4545" + brightBlack: "#128282" + brightRed: "#0D5F5F" + brightGreen: "#0E6868" + brightYellow: "#0B4E4E" + brightBlue: "#117979" + brightMagenta: "#107171" + brightCyan: "#0C5757" + brightWhite: "#0A4545" +meta: + mode: "dark" + accent: "cyan" + hue: null + contrast: + fg: 30 + black: 30 + red: 16.5 + green: 19.8 + yellow: 10.8 + blue: 26.4 + magenta: 23.2 + cyan: 13.8 + white: 8 + brightBlack: 30 + brightRed: 16.5 + brightGreen: 19.8 + brightYellow: 10.8 + brightBlue: 26.4 + brightMagenta: 23.2 + brightCyan: 13.8 + brightWhite: 8 diff --git a/themes/ohled-thistle.yaml b/themes/ohled-thistle.yaml new file mode 100644 index 00000000..51f6576e --- /dev/null +++ b/themes/ohled-thistle.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Thistle" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#D8BFD8" + black: "#D8BFD8" + red: "#9E8C9E" + green: "#AD99AD" + yellow: "#827382" + blue: "#CAB2CA" + magenta: "#BBA6BB" + cyan: "#907F90" + white: "#736673" + brightBlack: "#D8BFD8" + brightRed: "#9E8C9E" + brightGreen: "#AD99AD" + brightYellow: "#827382" + brightBlue: "#CAB2CA" + brightMagenta: "#BBA6BB" + brightCyan: "#907F90" + brightWhite: "#736673" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72.5 + black: 72.5 + red: 43.3 + green: 50.4 + yellow: 30.8 + blue: 64.8 + magenta: 57.5 + cyan: 36.8 + white: 24.7 + brightBlack: 72.5 + brightRed: 43.3 + brightGreen: 50.4 + brightYellow: 30.8 + brightBlue: 64.8 + brightMagenta: 57.5 + brightCyan: 36.8 + brightWhite: 24.7 diff --git a/themes/ohled-tomato.yaml b/themes/ohled-tomato.yaml new file mode 100644 index 00000000..b8922bca --- /dev/null +++ b/themes/ohled-tomato.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Tomato" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FF6347" + black: "#FF6347" + red: "#BB4934" + green: "#CC4F39" + yellow: "#993B2B" + blue: "#EE5C42" + magenta: "#DD563E" + cyan: "#AA422F" + white: "#883526" + brightBlack: "#FF6347" + brightRed: "#BB4934" + brightGreen: "#CC4F39" + brightYellow: "#993B2B" + brightBlue: "#EE5C42" + brightMagenta: "#DD563E" + brightCyan: "#AA422F" + brightWhite: "#883526" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 46.8 + black: 46.8 + red: 27.3 + green: 31.8 + yellow: 18.6 + blue: 41.5 + magenta: 36.7 + cyan: 22.8 + white: 14.7 + brightBlack: 46.8 + brightRed: 27.3 + brightGreen: 31.8 + brightYellow: 18.6 + brightBlue: 41.5 + brightMagenta: 36.7 + brightCyan: 22.8 + brightWhite: 14.7 diff --git a/themes/ohled-turquoise.yaml b/themes/ohled-turquoise.yaml new file mode 100644 index 00000000..b55b047f --- /dev/null +++ b/themes/ohled-turquoise.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Turquoise" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#40E0D0" + black: "#40E0D0" + red: "#2FA499" + green: "#33B3A6" + yellow: "#26867D" + blue: "#3CD1C2" + magenta: "#37C2B4" + cyan: "#2B958B" + white: "#22776F" + brightBlack: "#40E0D0" + brightRed: "#2FA499" + brightGreen: "#33B3A6" + brightYellow: "#26867D" + brightBlue: "#3CD1C2" + brightMagenta: "#37C2B4" + brightCyan: "#2B958B" + brightWhite: "#22776F" +meta: + mode: "dark" + accent: "cyan" + hue: null + contrast: + fg: 74.9 + black: 74.9 + red: 44.8 + green: 51.9 + yellow: 31.6 + blue: 66.9 + magenta: 59.2 + cyan: 38.1 + white: 25.5 + brightBlack: 74.9 + brightRed: 44.8 + brightGreen: 51.9 + brightYellow: 31.6 + brightBlue: 66.9 + brightMagenta: 59.2 + brightCyan: 38.1 + brightWhite: 25.5 diff --git a/themes/ohled-violet.yaml b/themes/ohled-violet.yaml new file mode 100644 index 00000000..9d47e181 --- /dev/null +++ b/themes/ohled-violet.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Violet" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#EE82EE" + black: "#EE82EE" + red: "#AF5FAF" + green: "#BE68BE" + yellow: "#8F4E8F" + blue: "#DE79DE" + magenta: "#CE71CE" + cyan: "#9F579F" + white: "#7F457F" + brightBlack: "#EE82EE" + brightRed: "#AF5FAF" + brightGreen: "#BE68BE" + brightYellow: "#8F4E8F" + brightBlue: "#DE79DE" + brightMagenta: "#CE71CE" + brightCyan: "#9F579F" + brightWhite: "#7F457F" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 56.8 + black: 56.8 + red: 33.6 + green: 38.9 + yellow: 23.3 + blue: 50.5 + magenta: 44.8 + cyan: 28.4 + white: 18.5 + brightBlack: 56.8 + brightRed: 33.6 + brightGreen: 38.9 + brightYellow: 23.3 + brightBlue: 50.5 + brightMagenta: 44.8 + brightCyan: 28.4 + brightWhite: 18.5 diff --git a/themes/ohled-wheat.yaml b/themes/ohled-wheat.yaml new file mode 100644 index 00000000..ac7494ab --- /dev/null +++ b/themes/ohled-wheat.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Wheat" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#F5DEB3" + black: "#F5DEB3" + red: "#B4A383" + green: "#C4B28F" + yellow: "#93856B" + blue: "#E5CFA7" + magenta: "#D4C09B" + cyan: "#A39477" + white: "#83765F" + brightBlack: "#F5DEB3" + brightRed: "#B4A383" + brightGreen: "#C4B28F" + brightYellow: "#93856B" + brightBlue: "#E5CFA7" + brightMagenta: "#D4C09B" + brightCyan: "#A39477" + brightWhite: "#83765F" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 88.2 + black: 88.2 + red: 53.5 + green: 61.7 + yellow: 37.9 + blue: 79 + magenta: 69.9 + cyan: 45.4 + white: 30.8 + brightBlack: 88.2 + brightRed: 53.5 + brightGreen: 61.7 + brightYellow: 37.9 + brightBlue: 79 + brightMagenta: 69.9 + brightCyan: 45.4 + brightWhite: 30.8 diff --git a/themes/ohled-white.yaml b/themes/ohled-white.yaml new file mode 100644 index 00000000..8853a81e --- /dev/null +++ b/themes/ohled-white.yaml @@ -0,0 +1,49 @@ +name: "OhLED_White" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#BBBBBB" + green: "#CCCCCC" + yellow: "#999999" + blue: "#EEEEEE" + magenta: "#DDDDDD" + cyan: "#AAAAAA" + white: "#888888" + brightBlack: "#FFFFFF" + brightRed: "#BBBBBB" + brightGreen: "#CCCCCC" + brightYellow: "#999999" + brightBlue: "#EEEEEE" + brightMagenta: "#DDDDDD" + brightCyan: "#AAAAAA" + brightWhite: "#888888" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 107.9 + black: 107.9 + red: 65.7 + green: 75.7 + yellow: 47.2 + blue: 96.8 + magenta: 86 + cyan: 56.2 + white: 38.6 + brightBlack: 107.9 + brightRed: 65.7 + brightGreen: 75.7 + brightYellow: 47.2 + brightBlue: 96.8 + brightMagenta: 86 + brightCyan: 56.2 + brightWhite: 38.6 diff --git a/themes/ohled-whitesmoke.yaml b/themes/ohled-whitesmoke.yaml new file mode 100644 index 00000000..6c4a0655 --- /dev/null +++ b/themes/ohled-whitesmoke.yaml @@ -0,0 +1,49 @@ +name: "OhLED_WhiteSmoke" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#F5F5F5" + black: "#F5F5F5" + red: "#B4B4B4" + green: "#C4C4C4" + yellow: "#939393" + blue: "#E5E5E5" + magenta: "#D4D4D4" + cyan: "#A3A3A3" + white: "#838383" + brightBlack: "#F5F5F5" + brightRed: "#B4B4B4" + brightGreen: "#C4C4C4" + brightYellow: "#939393" + brightBlue: "#E5E5E5" + brightMagenta: "#D4D4D4" + brightCyan: "#A3A3A3" + brightWhite: "#838383" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 101.3 + black: 101.3 + red: 61.8 + green: 70.9 + yellow: 44.1 + blue: 91 + magenta: 80.5 + cyan: 52.5 + white: 36.2 + brightBlack: 101.3 + brightRed: 61.8 + brightGreen: 70.9 + brightYellow: 44.1 + brightBlue: 91 + brightMagenta: 80.5 + brightCyan: 52.5 + brightWhite: 36.2 diff --git a/themes/ohled-yellow.yaml b/themes/ohled-yellow.yaml new file mode 100644 index 00000000..20c24ad4 --- /dev/null +++ b/themes/ohled-yellow.yaml @@ -0,0 +1,49 @@ +name: "OhLED_Yellow" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFFF00" + black: "#FFFF00" + red: "#BBBB00" + green: "#CCCC00" + yellow: "#999900" + blue: "#EEEE00" + magenta: "#DDDD00" + cyan: "#AAAA00" + white: "#888800" + brightBlack: "#FFFF00" + brightRed: "#BBBB00" + brightGreen: "#CCCC00" + brightYellow: "#999900" + brightBlue: "#EEEE00" + brightMagenta: "#DDDD00" + brightCyan: "#AAAA00" + brightWhite: "#888800" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 102.7 + black: 102.7 + red: 62.5 + green: 72 + yellow: 44.8 + blue: 92.1 + magenta: 81.8 + cyan: 53.4 + white: 36.6 + brightBlack: 102.7 + brightRed: 62.5 + brightGreen: 72 + brightYellow: 44.8 + brightBlue: 92.1 + brightMagenta: 81.8 + brightCyan: 53.4 + brightWhite: 36.6 diff --git a/themes/ohled-yellowgreen.yaml b/themes/ohled-yellowgreen.yaml new file mode 100644 index 00000000..a3a54381 --- /dev/null +++ b/themes/ohled-yellowgreen.yaml @@ -0,0 +1,49 @@ +name: "OhLED_YellowGreen" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#9ACD32" + black: "#9ACD32" + red: "#719625" + green: "#7BA428" + yellow: "#5C7B1E" + blue: "#90BF2F" + magenta: "#85B22B" + cyan: "#678921" + white: "#526D1B" + brightBlack: "#9ACD32" + brightRed: "#719625" + brightGreen: "#7BA428" + brightYellow: "#5C7B1E" + brightBlue: "#90BF2F" + brightMagenta: "#85B22B" + brightCyan: "#678921" + brightWhite: "#526D1B" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 67 + black: 67 + red: 39.8 + green: 46.3 + yellow: 28 + blue: 59.7 + magenta: 53.1 + cyan: 34 + white: 22.5 + brightBlack: 67 + brightRed: 39.8 + brightGreen: 46.3 + brightYellow: 28 + brightBlue: 59.7 + brightMagenta: 53.1 + brightCyan: 34 + brightWhite: 22.5 diff --git a/themes/ohled-yelloworange.yaml b/themes/ohled-yelloworange.yaml new file mode 100644 index 00000000..a7f685de --- /dev/null +++ b/themes/ohled-yelloworange.yaml @@ -0,0 +1,49 @@ +name: "OhLED_YellowOrange" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFAE42" + black: "#FFAE42" + red: "#BB8030" + green: "#CC8B35" + yellow: "#996828" + blue: "#EEA23E" + magenta: "#DD9739" + cyan: "#AA742C" + white: "#885D23" + brightBlack: "#FFAE42" + brightRed: "#BB8030" + brightGreen: "#CC8B35" + brightYellow: "#996828" + brightBlue: "#EEA23E" + brightMagenta: "#DD9739" + brightCyan: "#AA742C" + brightWhite: "#885D23" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 68.2 + black: 68.2 + red: 40.8 + green: 47.1 + yellow: 28.5 + blue: 60.8 + magenta: 54 + cyan: 34.5 + white: 23.1 + brightBlack: 68.2 + brightRed: 40.8 + brightGreen: 47.1 + brightYellow: 28.5 + brightBlue: 60.8 + brightMagenta: 54 + brightCyan: 34.5 + brightWhite: 23.1 diff --git a/themes/ohled-yellowpink.yaml b/themes/ohled-yellowpink.yaml new file mode 100644 index 00000000..561a6fd3 --- /dev/null +++ b/themes/ohled-yellowpink.yaml @@ -0,0 +1,49 @@ +name: "OhLED_YellowPink" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFB0B0" + black: "#FFB0B0" + red: "#BB8181" + green: "#CC8D8D" + yellow: "#996A6A" + blue: "#EEA4A4" + magenta: "#DD9999" + cyan: "#AA7575" + white: "#885E5E" + brightBlack: "#FFB0B0" + brightRed: "#BB8181" + brightGreen: "#CC8D8D" + brightYellow: "#996A6A" + brightBlue: "#EEA4A4" + brightMagenta: "#DD9999" + brightCyan: "#AA7575" + brightWhite: "#885E5E" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 71.3 + black: 71.3 + red: 42.7 + green: 49.5 + yellow: 30.2 + blue: 63.7 + magenta: 56.7 + cyan: 36.1 + white: 24.3 + brightBlack: 71.3 + brightRed: 42.7 + brightGreen: 49.5 + brightYellow: 30.2 + brightBlue: 63.7 + brightMagenta: 56.7 + brightCyan: 36.1 + brightWhite: 24.3 diff --git a/themes/ohled-yellowpurple.yaml b/themes/ohled-yellowpurple.yaml new file mode 100644 index 00000000..d5c29284 --- /dev/null +++ b/themes/ohled-yellowpurple.yaml @@ -0,0 +1,49 @@ +name: "OhLED_YellowPurple" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10961 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FFB0FF" + black: "#FFB0FF" + red: "#BB81BB" + green: "#CC8DCC" + yellow: "#996A99" + blue: "#EEA4EE" + magenta: "#DD99DD" + cyan: "#AA75AA" + white: "#885E88" + brightBlack: "#FFB0FF" + brightRed: "#BB81BB" + brightGreen: "#CC8DCC" + brightYellow: "#996A99" + brightBlue: "#EEA4EE" + brightMagenta: "#DD99DD" + brightCyan: "#AA75AA" + brightWhite: "#885E88" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75.1 + black: 75.1 + red: 45 + green: 52.2 + yellow: 32 + blue: 67.1 + magenta: 59.7 + cyan: 38.2 + white: 25.8 + brightBlack: 75.1 + brightRed: 45 + brightGreen: 52.2 + brightYellow: 32 + brightBlue: 67.1 + brightMagenta: 59.7 + brightCyan: 38.2 + brightWhite: 25.8 diff --git a/themes/okas-theme.yaml b/themes/okas-theme.yaml new file mode 100644 index 00000000..049f3e40 --- /dev/null +++ b/themes/okas-theme.yaml @@ -0,0 +1,49 @@ +name: "Okas theme" +source: + marketplace_id: "brenokas.okas-theme" + version: "0.0.4" + installs: 23 + author: "Breno de Freitas" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=brenokas.okas-theme" +colors: + bg: "#1D1D1D" + fg: "#B4B4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.1 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/oldschool-terminal-green.yaml b/themes/oldschool-terminal-green.yaml new file mode 100644 index 00000000..286d146c --- /dev/null +++ b/themes/oldschool-terminal-green.yaml @@ -0,0 +1,49 @@ +name: "Oldschool Terminal (Green)" +source: + marketplace_id: "ericson-willians.oldschool-theme-win95-edition" + version: "1.0.0" + installs: 6535 + author: "Ericson Willians Rocha Pires" + repo: "https://github.com/EricsonWillians/oldschool-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.oldschool-theme-win95-edition" +colors: + bg: "#000000" + fg: "#00FF00" + black: "#000000" + red: "#FF0000" + green: "#33FF00" + yellow: "#FFFF00" + blue: "#3333FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#CCCCCC" + brightBlack: "#666666" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#FFFF66" + brightBlue: "#6666FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 86.5 + black: 0 + red: 37.5 + green: 86.8 + yellow: 102.7 + blue: 19.8 + magenta: 46.2 + cyan: 92.2 + white: 75.7 + brightBlack: 23 + brightRed: 47.9 + brightGreen: 89 + brightYellow: 103.3 + brightBlue: 32.6 + brightMagenta: 54.8 + brightCyan: 94 + brightWhite: 107.9 diff --git a/themes/oldworld.yaml b/themes/oldworld.yaml new file mode 100644 index 00000000..2be4d402 --- /dev/null +++ b/themes/oldworld.yaml @@ -0,0 +1,49 @@ +name: "Oldworld" +source: + marketplace_id: "ReezPatel.oldworlddark" + version: "0.0.3" + installs: 131 + author: "Reez Patel" + repo: "https://github.com/reezpatel/oldworld-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ReezPatel.oldworlddark" +colors: + bg: "#161617" + fg: "#ACA1CF" + black: "#27272A" + red: "#EA83A5" + green: "#90B99F" + yellow: "#E6B99D" + blue: "#92A2D5" + magenta: "#E29ECA" + cyan: "#85B5BA" + white: "#B4B1BA" + brightBlack: "#666666" + brightRed: "#EA83A5" + brightGreen: "#90B99F" + brightYellow: "#E6B99D" + brightBlue: "#92A2D5" + brightMagenta: "#E29ECA" + brightCyan: "#85B5BA" + brightWhite: "#C9C7CD" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 53.8 + black: 0 + red: 51.7 + green: 58.4 + yellow: 68.9 + blue: 51.7 + magenta: 60.2 + cyan: 56.8 + white: 59.9 + brightBlack: 22.1 + brightRed: 51.7 + brightGreen: 58.4 + brightYellow: 68.9 + brightBlue: 51.7 + brightMagenta: 60.2 + brightCyan: 56.8 + brightWhite: 72.3 diff --git a/themes/olive-dark.yaml b/themes/olive-dark.yaml new file mode 100644 index 00000000..9b8a139d --- /dev/null +++ b/themes/olive-dark.yaml @@ -0,0 +1,49 @@ +name: "Olive Dark" +source: + marketplace_id: "Jeigsaw.olive-dark-theme" + version: "1.0.0" + installs: 574 + author: "Jeigsaw" + repo: "https://github.com/Jeigsaw/olive-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Jeigsaw.olive-dark-theme" +colors: + bg: "#1F1F1E" + fg: "#A7A7A7" + black: "#606060" + red: "#AD4343" + green: "#308464" + yellow: "#A7A737" + blue: "#6AA7EA" + magenta: "#A54AA5" + cyan: "#41A4BC" + white: "#E5E5E5" + brightBlack: "#929292" + brightRed: "#E86666" + brightGreen: "#5FC49E" + brightYellow: "#D9D975" + brightBlue: "#92C0F2" + brightMagenta: "#DE77DE" + brightCyan: "#6ECBE2" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 52.6 + black: 18.6 + red: 21.8 + green: 28.3 + yellow: 50.1 + blue: 50.7 + magenta: 25.1 + cyan: 44.9 + white: 89.1 + brightBlack: 41.6 + brightRed: 41 + brightGreen: 58.8 + brightYellow: 78.4 + brightBlue: 64.4 + brightMagenta: 48.1 + brightCyan: 65.7 + brightWhite: 89.1 diff --git a/themes/olive-light.yaml b/themes/olive-light.yaml new file mode 100644 index 00000000..a71f8fab --- /dev/null +++ b/themes/olive-light.yaml @@ -0,0 +1,49 @@ +name: "Olive Light" +source: + marketplace_id: "Jeigsaw.olive-light-theme" + version: "1.0.1" + installs: 588 + author: "Jeigsaw" + repo: "https://github.com/Jeigsaw/olive-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Jeigsaw.olive-light-theme" +colors: + bg: "#FBFBFB" + fg: "#4D4D4D" + black: "#000000" + red: "#B22B2B" + green: "#47B88E" + yellow: "#A5A528" + blue: "#5190D5" + magenta: "#D360B6" + cyan: "#47A0B6" + white: "#5E5E5E" + brightBlack: "#666666" + brightRed: "#F56363" + brightGreen: "#55CFA2" + brightYellow: "#B8B830" + brightBlue: "#70AEF2" + brightMagenta: "#D37ABD" + brightCyan: "#46BCD9" + brightWhite: "#A1A1A1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 86.7 + black: 103.6 + red: 78.1 + green: 45.8 + yellow: 48.6 + blue: 58.1 + magenta: 58.9 + cyan: 54.2 + white: 79.8 + brightBlack: 76.4 + brightRed: 54.3 + brightGreen: 34.5 + brightYellow: 38.9 + brightBlue: 43.3 + brightMagenta: 52.4 + brightCyan: 41 + brightWhite: 48.1 diff --git a/themes/omega.yaml b/themes/omega.yaml new file mode 100644 index 00000000..a98a8221 --- /dev/null +++ b/themes/omega.yaml @@ -0,0 +1,49 @@ +name: "Omega" +source: + marketplace_id: "royal-cat-studios.omega-dark" + version: "0.0.7" + installs: 548 + author: "Royal Cat Studios" + repo: "https://github.com/connordavis107/omega-dark" + url: "https://marketplace.visualstudio.com/items?itemName=royal-cat-studios.omega-dark" +colors: + bg: "#0C0C0C" + fg: "#D7EBE0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91.5 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/omni-customized-dark.yaml b/themes/omni-customized-dark.yaml new file mode 100644 index 00000000..c0c1b3d5 --- /dev/null +++ b/themes/omni-customized-dark.yaml @@ -0,0 +1,49 @@ +name: "Omni Customized Dark" +source: + marketplace_id: "adrian7123.theme-omni-customized-dark" + version: "1.0.2" + installs: 4030 + author: "adrian7123" + repo: "https://github.com/adrian7123/vs-code-omni-customized-dark" + url: "https://marketplace.visualstudio.com/items?itemName=adrian7123.theme-omni-customized-dark" +colors: + bg: "#000000" + fg: "#E1E1E6" + black: "#000000" + red: "#FF79C6" + green: "#67E480" + yellow: "#E7DE79" + blue: "#78D1E1" + magenta: "#988BC7" + cyan: "#A1EFE4" + white: "#E1E1E6" + brightBlack: "#626483" + brightRed: "#ED4556" + brightGreen: "#00F769" + brightYellow: "#E7DE79" + brightBlue: "#78D1E1" + brightMagenta: "#988BC7" + brightCyan: "#A4FFFF" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 88.7 + black: 0 + red: 55.6 + green: 75.6 + yellow: 84.7 + blue: 71 + magenta: 44.3 + cyan: 88.3 + white: 88.7 + brightBlack: 23.2 + brightRed: 37.8 + brightGreen: 82.9 + brightYellow: 84.7 + brightBlue: 71 + brightMagenta: 44.3 + brightCyan: 97.8 + brightWhite: 102.8 diff --git a/themes/omni-customized.yaml b/themes/omni-customized.yaml new file mode 100644 index 00000000..12185929 --- /dev/null +++ b/themes/omni-customized.yaml @@ -0,0 +1,49 @@ +name: "Omni Customized" +source: + marketplace_id: "dtsf.theme-omni-customized" + version: "1.0.10" + installs: 7087 + author: "datsfilipe" + repo: "https://github.com/datsfilipe/vs-code-omni-customized" + url: "https://marketplace.visualstudio.com/items?itemName=dtsf.theme-omni-customized" +colors: + bg: "#191919" + fg: "#E1E1E6" + black: "#161616" + red: "#FF79C6" + green: "#67E480" + yellow: "#E7DE79" + blue: "#78D1E1" + magenta: "#988BC7" + cyan: "#A1EFE4" + white: "#E1E1E6" + brightBlack: "#626483" + brightRed: "#ED4556" + brightGreen: "#00F769" + brightYellow: "#E7DE79" + brightBlue: "#78D1E1" + brightMagenta: "#988BC7" + brightCyan: "#A4FFFF" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 87.5 + black: 0 + red: 54.4 + green: 74.4 + yellow: 83.4 + blue: 69.7 + magenta: 43 + cyan: 87.1 + white: 87.5 + brightBlack: 21.9 + brightRed: 36.6 + brightGreen: 81.7 + brightYellow: 83.4 + brightBlue: 69.7 + brightMagenta: 43 + brightCyan: 96.6 + brightWhite: 101.6 diff --git a/themes/omni-dracula-dark.yaml b/themes/omni-dracula-dark.yaml new file mode 100644 index 00000000..238fa48f --- /dev/null +++ b/themes/omni-dracula-dark.yaml @@ -0,0 +1,49 @@ +name: "Omni Dracula Dark" +source: + marketplace_id: "Wellington-A.omni-dracula-dark" + version: "1.0.7" + installs: 4759 + author: "Wellington-A" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" +colors: + bg: "#0A0A0A" + fg: "#FFFFFF" + black: "#545454" + red: "#F06B6B" + green: "#4CDDA6" + yellow: "#E5E510" + blue: "#42D9FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#A3A3A3" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3BC1EA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.7 + black: 15.6 + red: 45.7 + green: 72 + yellow: 86.5 + blue: 73.8 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 52.3 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 61.4 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/omni-dracula-theme-tradicional-contrast.yaml b/themes/omni-dracula-theme-tradicional-contrast.yaml new file mode 100644 index 00000000..d78b1e03 --- /dev/null +++ b/themes/omni-dracula-theme-tradicional-contrast.yaml @@ -0,0 +1,49 @@ +name: "Omni Dracula Theme Tradicional Contrast" +source: + marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" + version: "1.0.7" + installs: 36314 + author: "Thiago Lúcio Bittencourt" + repo: "https://github.com/thiagolucio/omni-dracula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" +colors: + bg: "#1B202C" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + contrast: + fg: 100.8 + black: 0 + red: 42.3 + green: 83.7 + yellow: 97.4 + blue: 52.5 + magenta: 53.4 + cyan: 82.8 + white: 100.8 + brightBlack: 26.9 + brightRed: 47.7 + brightGreen: 87.9 + brightYellow: 102.4 + brightBlue: 65 + brightMagenta: 61.5 + brightCyan: 95.6 + brightWhite: 105.7 diff --git a/themes/omni-dracula-theme.yaml b/themes/omni-dracula-theme.yaml new file mode 100644 index 00000000..a0a9f270 --- /dev/null +++ b/themes/omni-dracula-theme.yaml @@ -0,0 +1,49 @@ +name: "Omni Dracula Theme" +source: + marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" + version: "1.0.7" + installs: 36314 + author: "Thiago Lúcio Bittencourt" + repo: "https://github.com/thiagolucio/omni-dracula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" +colors: + bg: "#282A36" + fg: "#FFFFFF" + black: "#545454" + red: "#F06B6B" + green: "#4CDDA6" + yellow: "#E5E510" + blue: "#42D9FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#A3A3A3" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3BC1EA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 103.9 + black: 11.8 + red: 41.9 + green: 68.1 + yellow: 82.7 + blue: 70 + magenta: 26.8 + cyan: 44.6 + white: 87.1 + brightBlack: 48.5 + brightRed: 35.6 + brightGreen: 60.6 + brightYellow: 92.7 + brightBlue: 57.6 + brightMagenta: 42.4 + brightCyan: 52.4 + brightWhite: 87.1 diff --git a/themes/omni-dracula-wine-theme-tradicional.yaml b/themes/omni-dracula-wine-theme-tradicional.yaml new file mode 100644 index 00000000..7659e917 --- /dev/null +++ b/themes/omni-dracula-wine-theme-tradicional.yaml @@ -0,0 +1,49 @@ +name: "Omni Dracula Wine Theme Tradicional" +source: + marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" + version: "1.0.7" + installs: 36314 + author: "Thiago Lúcio Bittencourt" + repo: "https://github.com/thiagolucio/omni-dracula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" +colors: + bg: "#2C2122" + fg: "#E6DAE0" + black: "#2C2122" + red: "#FA7F7F" + green: "#8AFD80" + yellow: "#FFFF81" + blue: "#B382D9" + magenta: "#FF82C3" + cyan: "#82FFEC" + white: "#E6DAE0" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#2CDA9D" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#F786AA" + brightCyan: "#A4FFFF" + brightWhite: "#FFF2F9" +meta: + mode: "dark" + accent: "green" + hue: 12 + contrast: + fg: 83.3 + black: 0 + red: 50.7 + green: 87.7 + yellow: 101 + blue: 43.2 + magenta: 55 + cyan: 91.8 + white: 83.3 + brightBlack: 26.3 + brightRed: 47.1 + brightGreen: 66.9 + brightYellow: 101.8 + brightBlue: 64.4 + brightMagenta: 53.4 + brightCyan: 95.1 + brightWhite: 98.8 diff --git a/themes/omni-monokai-dark.yaml b/themes/omni-monokai-dark.yaml new file mode 100644 index 00000000..262b85bf --- /dev/null +++ b/themes/omni-monokai-dark.yaml @@ -0,0 +1,49 @@ +name: "Omni Monokai Dark" +source: + marketplace_id: "Wellington-A.omni-dracula-dark" + version: "1.0.7" + installs: 4759 + author: "Wellington-A" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" +colors: + bg: "#0A0A0A" + fg: "#F7E767" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 90.6 + black: 7.3 + red: 39.5 + green: 87 + yellow: 92.2 + blue: 38.3 + magenta: 46.1 + cyan: 77 + white: 52.3 + brightBlack: 22.9 + brightRed: 48 + brightGreen: 93.4 + brightYellow: 80.3 + brightBlue: 72.4 + brightMagenta: 67.7 + brightCyan: 90.5 + brightWhite: 73.7 diff --git a/themes/omni-pro.yaml b/themes/omni-pro.yaml new file mode 100644 index 00000000..e5a0bd39 --- /dev/null +++ b/themes/omni-pro.yaml @@ -0,0 +1,49 @@ +name: "Omni PRO" +source: + marketplace_id: "viniciusamelio.theme-omni-pro" + version: "1.0.15" + installs: 2481 + author: "viniciusamelio" + repo: "https://github.com/viniciusamelio/omni-pro" + url: "https://marketplace.visualstudio.com/items?itemName=viniciusamelio.theme-omni-pro" +colors: + bg: "#191622" + fg: "#E1E1E6" + black: "#201B2D" + red: "#FF79C6" + green: "#67E480" + yellow: "#E7DE79" + blue: "#78D1E1" + magenta: "#B78AC9" + cyan: "#A1EFE4" + white: "#E1E1E6" + brightBlack: "#B78AC9" + brightRed: "#ED4556" + brightGreen: "#00F769" + brightYellow: "#E7DE79" + brightBlue: "#78D1E1" + brightMagenta: "#B78AC9" + brightCyan: "#A4FFFF" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "green" + hue: 296 + contrast: + fg: 87.6 + black: 0 + red: 54.5 + green: 74.5 + yellow: 83.6 + blue: 69.9 + magenta: 46.9 + cyan: 87.2 + white: 87.6 + brightBlack: 46.9 + brightRed: 36.7 + brightGreen: 81.8 + brightYellow: 83.6 + brightBlue: 69.9 + brightMagenta: 46.9 + brightCyan: 96.7 + brightWhite: 101.7 diff --git a/themes/omni.yaml b/themes/omni.yaml new file mode 100644 index 00000000..a4a1eb52 --- /dev/null +++ b/themes/omni.yaml @@ -0,0 +1,49 @@ +name: "Omni" +source: + marketplace_id: "Avetis.codeme-theme" + version: "0.1.1" + installs: 8079 + author: "Avetis" + repo: "https://github.com/AvetisDN/codeme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" +colors: + bg: "#1E171D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 331 + contrast: + fg: 79.2 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.1 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/omnisexual.yaml b/themes/omnisexual.yaml new file mode 100644 index 00000000..2f0b88cc --- /dev/null +++ b/themes/omnisexual.yaml @@ -0,0 +1,49 @@ +name: "Omnisexual" +source: + marketplace_id: "ElizaMuss.elizas-pride-themes" + version: "1.0.2" + installs: 848 + author: "Eliza Muss" + repo: "https://github.com/The-Gamer69/elizas-pride-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#868686" + red: "#FF5470" + green: "#33D057" + yellow: "#E1C542" + blue: "#665EFF" + magenta: "#FF53BE" + cyan: "#8CA6FF" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#FF718A" + brightGreen: "#23D18B" + brightYellow: "#FFE05B" + brightBlue: "#ABA7FF" + brightMagenta: "#FFA1DB" + brightCyan: "#C0CEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 107.9 + black: 37.6 + red: 44.8 + green: 63.2 + yellow: 72.2 + blue: 30.6 + magenta: 47.6 + cyan: 56.2 + white: 80.5 + brightBlack: 56.8 + brightRed: 51.3 + brightGreen: 64.5 + brightYellow: 88.7 + brightBlue: 59.7 + brightMagenta: 68.1 + brightCyan: 77.7 + brightWhite: 107.9 diff --git a/themes/omnitrix-code.yaml b/themes/omnitrix-code.yaml new file mode 100644 index 00000000..01e04a90 --- /dev/null +++ b/themes/omnitrix-code.yaml @@ -0,0 +1,49 @@ +name: "Omnitrix Code" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#0A1612" + fg: "#E0F2E9" + black: "#0A1612" + red: "#FF3333" + green: "#00FF41" + yellow: "#FFCC00" + blue: "#4DA6FF" + magenta: "#FF00FF" + cyan: "#00E6E6" + white: "#A8D4BB" + brightBlack: "#2D6650" + brightRed: "#FF4D4D" + brightGreen: "#00FF41" + brightYellow: "#FFFF00" + brightBlue: "#66B3FF" + brightMagenta: "#FF66FF" + brightCyan: "#00FFFF" + brightWhite: "#E0F2E9" +meta: + mode: "dark" + accent: "pink" + hue: 171 + contrast: + fg: 95.8 + black: 0 + red: 38.9 + green: 86 + yellow: 78.9 + blue: 51.5 + magenta: 45.5 + cyan: 77.5 + white: 73.7 + brightBlack: 18.3 + brightRed: 42.3 + brightGreen: 86 + brightYellow: 102 + brightBlue: 57.9 + brightMagenta: 54.1 + brightCyan: 91.4 + brightWhite: 95.8 diff --git a/themes/omo-theme.yaml b/themes/omo-theme.yaml new file mode 100644 index 00000000..b9b91ec1 --- /dev/null +++ b/themes/omo-theme.yaml @@ -0,0 +1,49 @@ +name: "omo theme" +source: + marketplace_id: "omoghadasi.omo-theme" + version: "1.0.3" + installs: 1611 + author: "Omid Moghadasi" + repo: "https://github.com/omoghadasi/omo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=omoghadasi.omo-theme" +colors: + bg: "#292D3E" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 55.8 + black: 0 + red: 23.1 + green: 49.4 + yellow: 82 + blue: 23.8 + magenta: 26.2 + cyan: 43.9 + white: 86.4 + brightBlack: 18.4 + brightRed: 35 + brightGreen: 59.9 + brightYellow: 92 + brightBlue: 36.4 + brightMagenta: 41.8 + brightCyan: 51.8 + brightWhite: 86.4 diff --git a/themes/one-ai-theme.yaml b/themes/one-ai-theme.yaml new file mode 100644 index 00000000..f6e24346 --- /dev/null +++ b/themes/one-ai-theme.yaml @@ -0,0 +1,49 @@ +name: "One AI theme" +source: + marketplace_id: "OneAI.oneai-vscode-theme" + version: "0.0.3" + installs: 1250 + author: "One AI" + repo: "https://github.com/michgur/oneai-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=OneAI.oneai-vscode-theme" +colors: + bg: "#14141C" + fg: "#A1A1AB" + black: "#4D4952" + red: "#FD3131" + green: "#75FB48" + yellow: "#FBE94E" + blue: "#4D4DFF" + magenta: "#EA37E8" + cyan: "#75FBFD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#EE7D71" + brightGreen: "#85FFA8" + brightYellow: "#FEFACC" + brightBlue: "#706EF9" + brightMagenta: "#F6C3F8" + brightCyan: "#CAFDFE" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 51 + black: 11.4 + red: 38.1 + green: 86.5 + yellow: 91.2 + blue: 24.4 + magenta: 41.2 + cyan: 91.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 49.3 + brightGreen: 91.3 + brightYellow: 102.4 + brightBlue: 34.2 + brightMagenta: 79.4 + brightCyan: 99.5 + brightWhite: 90.2 diff --git a/themes/one-dark-cloud-theme.yaml b/themes/one-dark-cloud-theme.yaml new file mode 100644 index 00000000..af93a910 --- /dev/null +++ b/themes/one-dark-cloud-theme.yaml @@ -0,0 +1,49 @@ +name: "one-dark-cloud-theme" +source: + marketplace_id: "oleg-moroz.one-dark-cloud-theme" + version: "1.1.2" + installs: 200 + author: "Oleg Moroz" + repo: "https://github.com/moroz0751/vscode-one-dark-cloud" + url: "https://marketplace.visualstudio.com/items?itemName=oleg-moroz.one-dark-cloud-theme" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#000000" + red: "#E06C75" + green: "#BBF78F" + yellow: "#FFD88F" + blue: "#8DCBFC" + magenta: "#FC95DC" + cyan: "#8BE9FD" + white: "#CDCED1" + brightBlack: "#000000" + brightRed: "#E06C75" + brightGreen: "#BBF78F" + brightYellow: "#FFD88F" + brightBlue: "#8DCBFC" + brightMagenta: "#FC95DC" + brightCyan: "#8BE9FD" + brightWhite: "#CDCED1" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 87.5 + yellow: 81.9 + blue: 67 + magenta: 59.6 + cyan: 80.8 + white: 72.7 + brightBlack: 0 + brightRed: 38.9 + brightGreen: 87.5 + brightYellow: 81.9 + brightBlue: 67 + brightMagenta: 59.6 + brightCyan: 80.8 + brightWhite: 72.7 diff --git a/themes/one-dark-code.yaml b/themes/one-dark-code.yaml new file mode 100644 index 00000000..ad28789b --- /dev/null +++ b/themes/one-dark-code.yaml @@ -0,0 +1,49 @@ +name: "One Dark Code" +source: + marketplace_id: "LucasOe.one-dark-code" + version: "1.9.0" + installs: 311 + author: "LucasOe" + repo: "https://github.com/LucasOe/one-dark-code" + url: "https://marketplace.visualstudio.com/items?itemName=LucasOe.one-dark-code" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#21252B" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 56.2 + brightBlack: 17.4 + brightRed: 38.9 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 51.5 + brightMagenta: 41.9 + brightCyan: 51.4 + brightWhite: 87.4 diff --git a/themes/one-dark-darker-vivid.yaml b/themes/one-dark-darker-vivid.yaml new file mode 100644 index 00000000..9dddf728 --- /dev/null +++ b/themes/one-dark-darker-vivid.yaml @@ -0,0 +1,49 @@ +name: "One Dark Darker Vivid" +source: + marketplace_id: "DevBlooming.one-dark-darker-theme" + version: "1.0.0" + installs: 732 + author: "DevBlooming" + repo: "https://github.com/DevBlooming/one-dark-darker-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DevBlooming.one-dark-darker-theme" +colors: + bg: "#23272E" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 57.2 + black: 0 + red: 39.9 + green: 60.1 + yellow: 68.3 + blue: 52.4 + magenta: 42.9 + cyan: 52.3 + white: 80.8 + brightBlack: 33.3 + brightRed: 36.2 + brightGreen: 60.1 + brightYellow: 68.3 + brightBlue: 39.3 + brightMagenta: 42.9 + brightCyan: 52.3 + brightWhite: 80.8 diff --git a/themes/one-dark-darker.yaml b/themes/one-dark-darker.yaml new file mode 100644 index 00000000..b75b775d --- /dev/null +++ b/themes/one-dark-darker.yaml @@ -0,0 +1,49 @@ +name: "One Dark Darker" +source: + marketplace_id: "JoelCrosby.one-dark-darker" + version: "1.0.4" + installs: 82879 + author: "Joel Crosby" + repo: "https://github.com/JoelCrosby/OneDarkDarker" + url: "https://marketplace.visualstudio.com/items?itemName=JoelCrosby.one-dark-darker" +colors: + bg: "#181A1F" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 268 + contrast: + fg: 59.1 + black: 8.5 + red: 36.4 + green: 60 + yellow: 48.3 + blue: 49.3 + magenta: 38.7 + cyan: 52.2 + white: 90.3 + brightBlack: 15.1 + brightRed: 45.8 + brightGreen: 76.4 + brightYellow: 60.9 + brightBlue: 63.4 + brightMagenta: 49.9 + brightCyan: 67.5 + brightWhite: 106.5 diff --git a/themes/one-dark-modern-pro.yaml b/themes/one-dark-modern-pro.yaml new file mode 100644 index 00000000..7d4ec567 --- /dev/null +++ b/themes/one-dark-modern-pro.yaml @@ -0,0 +1,49 @@ +name: "One Dark Modern Pro" +source: + marketplace_id: "aleksa-codes.one-dark-modern-pro" + version: "1.0.10" + installs: 2141 + author: "aleksa-codes" + repo: "https://github.com/aleksa-codes/one-dark-modern-pro" + url: "https://marketplace.visualstudio.com/items?itemName=aleksa-codes.one-dark-modern-pro" +colors: + bg: "#1F1F1F" + fg: "#CCCCCC" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.7 + black: 7.9 + red: 35.7 + green: 59.4 + yellow: 47.6 + blue: 48.7 + magenta: 38.1 + cyan: 51.5 + white: 82.1 + brightBlack: 14.5 + brightRed: 45.1 + brightGreen: 75.8 + brightYellow: 60.3 + brightBlue: 62.8 + brightMagenta: 49.3 + brightCyan: 66.8 + brightWhite: 89.7 diff --git a/themes/one-dark-night-blue-boy.yaml b/themes/one-dark-night-blue-boy.yaml new file mode 100644 index 00000000..06932b5b --- /dev/null +++ b/themes/one-dark-night-blue-boy.yaml @@ -0,0 +1,49 @@ +name: "One Dark Night - Blue Boy" +source: + marketplace_id: "sojibahmed.one-dark-night-theme" + version: "0.0.7" + installs: 1362 + author: "sojibAhmedSafi" + repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" +colors: + bg: "#001B36" + fg: "#939393" + black: "#000000" + red: "#940000" + green: "#00774A" + yellow: "#8E7400" + blue: "#004194" + magenta: "#860086" + cyan: "#06989A" + white: "#B2B2B2" + brightBlack: "#686868" + brightRed: "#BA0000" + brightGreen: "#00965A" + brightYellow: "#8A8A00" + brightBlue: "#0052A9" + brightMagenta: "#8A008A" + brightCyan: "#008E8E" + brightWhite: "#9B9B9B" +meta: + mode: "dark" + accent: "pink" + hue: 250 + contrast: + fg: 42.5 + black: 0 + red: 11.7 + green: 22.7 + yellow: 28.9 + blue: 9.3 + magenta: 12.4 + cyan: 37.9 + white: 59.1 + brightBlack: 22.3 + brightRed: 19.6 + brightGreen: 35.1 + brightYellow: 35.9 + brightBlue: 15 + brightMagenta: 13.3 + brightCyan: 33.4 + brightWhite: 46.6 diff --git a/themes/one-dark-night-eye-care.yaml b/themes/one-dark-night-eye-care.yaml new file mode 100644 index 00000000..c9ef5a93 --- /dev/null +++ b/themes/one-dark-night-eye-care.yaml @@ -0,0 +1,49 @@ +name: "One Dark Night - Eye Care" +source: + marketplace_id: "sojibahmed.one-dark-night-theme" + version: "0.0.7" + installs: 1362 + author: "sojibAhmedSafi" + repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" +colors: + bg: "#171C2A" + fg: "#ADADAD" + black: "#5A5A5A" + red: "#9D0000" + green: "#006D5D" + yellow: "#997729" + blue: "#2472C8" + magenta: "#A700A7" + cyan: "#007B99" + white: "#C0C0C0" + brightBlack: "#666666" + brightRed: "#CF0000" + brightGreen: "#00B298" + brightYellow: "#7D5700" + brightBlue: "#3B8EEA" + brightMagenta: "#CF00CF" + brightCyan: "#009AC0" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: 269 + contrast: + fg: 56.2 + black: 16.5 + red: 13.5 + green: 19.5 + yellow: 31.4 + blue: 26.8 + magenta: 20.1 + cyan: 26.7 + white: 67 + brightBlack: 21.4 + brightRed: 24.3 + brightGreen: 48.8 + brightYellow: 18.3 + brightBlue: 39.4 + brightMagenta: 30.6 + brightCyan: 40.5 + brightWhite: 72.3 diff --git a/themes/one-dark-night-minimalist.yaml b/themes/one-dark-night-minimalist.yaml new file mode 100644 index 00000000..4b63b528 --- /dev/null +++ b/themes/one-dark-night-minimalist.yaml @@ -0,0 +1,49 @@ +name: "One Dark Night - Minimalist" +source: + marketplace_id: "sojibahmed.one-dark-night-theme" + version: "0.0.7" + installs: 1362 + author: "sojibAhmedSafi" + repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" +colors: + bg: "#181A26" + fg: "#A3A3A3" + black: "#000000" + red: "#940000" + green: "#00774A" + yellow: "#8E7400" + blue: "#004194" + magenta: "#860086" + cyan: "#06989A" + white: "#B2B2B2" + brightBlack: "#686868" + brightRed: "#BA0000" + brightGreen: "#00965A" + brightYellow: "#8A8A00" + brightBlue: "#0052A9" + brightMagenta: "#8A008A" + brightCyan: "#008E8E" + brightWhite: "#9B9B9B" +meta: + mode: "dark" + accent: "pink" + hue: 277 + contrast: + fg: 51 + black: 0 + red: 11.9 + green: 22.8 + yellow: 29.1 + blue: 9.5 + magenta: 12.5 + cyan: 38.1 + white: 59.2 + brightBlack: 22.5 + brightRed: 19.8 + brightGreen: 35.3 + brightYellow: 36.1 + brightBlue: 15.1 + brightMagenta: 13.4 + brightCyan: 33.6 + brightWhite: 46.8 diff --git a/themes/one-dark-night-professional.yaml b/themes/one-dark-night-professional.yaml new file mode 100644 index 00000000..c57d0fd6 --- /dev/null +++ b/themes/one-dark-night-professional.yaml @@ -0,0 +1,49 @@ +name: "One Dark Night - Professional" +source: + marketplace_id: "sojibahmed.one-dark-night-theme" + version: "0.0.7" + installs: 1362 + author: "sojibAhmedSafi" + repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" +colors: + bg: "#030C1B" + fg: "#BFBFBF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 67.8 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/one-dark-nx.yaml b/themes/one-dark-nx.yaml new file mode 100644 index 00000000..6ffda8cc --- /dev/null +++ b/themes/one-dark-nx.yaml @@ -0,0 +1,49 @@ +name: "One Dark NX" +source: + marketplace_id: "vxna.one-dark-nx" + version: "1.0.0" + installs: 2523 + author: "vxna" + repo: "https://github.com/vxna/one-dark-nx" + url: "https://marketplace.visualstudio.com/items?itemName=vxna.one-dark-nx" +colors: + bg: "#282C34" + fg: "#C8C8C8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 69.1 + black: 0 + red: 23.5 + green: 49.8 + yellow: 82.4 + blue: 24.2 + magenta: 26.6 + cyan: 44.4 + white: 86.8 + brightBlack: 18.8 + brightRed: 35.4 + brightGreen: 60.3 + brightYellow: 92.4 + brightBlue: 36.8 + brightMagenta: 42.2 + brightCyan: 52.2 + brightWhite: 86.8 diff --git a/themes/one-dark-pro-theme.yaml b/themes/one-dark-pro-theme.yaml new file mode 100644 index 00000000..ba78324d --- /dev/null +++ b/themes/one-dark-pro-theme.yaml @@ -0,0 +1,49 @@ +name: "One Dark Pro Theme" +source: + marketplace_id: "mdmarufsarker.maruf-sarker" + version: "0.1.1" + installs: 29145 + author: "Md. Maruf Sarker" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" +colors: + bg: "#0C1924" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 245 + contrast: + fg: 59.3 + black: 8.7 + red: 36.6 + green: 60.2 + yellow: 48.5 + blue: 49.5 + magenta: 38.9 + cyan: 52.4 + white: 90.5 + brightBlack: 15.3 + brightRed: 46 + brightGreen: 76.6 + brightYellow: 61.1 + brightBlue: 63.6 + brightMagenta: 50.1 + brightCyan: 67.7 + brightWhite: 82.9 diff --git a/themes/one-dark-pro-var-night.yaml b/themes/one-dark-pro-var-night.yaml new file mode 100644 index 00000000..275cdda9 --- /dev/null +++ b/themes/one-dark-pro-var-night.yaml @@ -0,0 +1,49 @@ +name: "One Dark Pro Var Night" +source: + marketplace_id: "csstools.onedarkprovar" + version: "1.1.0" + installs: 7893 + author: "csstools" + repo: "https://github.com/csstools/onedarkprovar-theme" + url: "https://marketplace.visualstudio.com/items?itemName=csstools.onedarkprovar" +colors: + bg: "#1A1A1A" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 59.1 + black: 0 + red: 41.8 + green: 62 + yellow: 70.2 + blue: 54.3 + magenta: 44.8 + cyan: 54.2 + white: 82.7 + brightBlack: 35.2 + brightRed: 38.1 + brightGreen: 62 + brightYellow: 70.2 + brightBlue: 41.2 + brightMagenta: 12.4 + brightCyan: 54.2 + brightWhite: 82.7 diff --git a/themes/one-dark-pro.yaml b/themes/one-dark-pro.yaml new file mode 100644 index 00000000..6a497bbc --- /dev/null +++ b/themes/one-dark-pro.yaml @@ -0,0 +1,49 @@ +name: "One Dark Pro" +source: + marketplace_id: "wilfison.one-dark-ruby" + version: "0.0.4" + installs: 228 + author: "Wilfison" + repo: "https://github.com/wilfison/one-dark-ruby" + url: "https://marketplace.visualstudio.com/items?itemName=wilfison.one-dark-ruby" +colors: + bg: "#1E1E1E" + fg: "#ABB2BF" + black: "#2D3139" + red: "#F94B65" + green: "#89CA78" + yellow: "#58EB7E" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#89CA78" + brightYellow: "#58EB7E" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 58.6 + black: 0 + red: 39.9 + green: 63.3 + yellow: 76.6 + blue: 53.8 + magenta: 44.3 + cyan: 53.7 + white: 82.2 + brightBlack: 34.7 + brightRed: 37.6 + brightGreen: 63.3 + brightYellow: 76.6 + brightBlue: 40.6 + brightMagenta: 11.9 + brightCyan: 53.7 + brightWhite: 82.2 diff --git a/themes/one-dark-vibrant-theme.yaml b/themes/one-dark-vibrant-theme.yaml new file mode 100644 index 00000000..06cab1f1 --- /dev/null +++ b/themes/one-dark-vibrant-theme.yaml @@ -0,0 +1,49 @@ +name: "One Dark Vibrant Theme" +source: + marketplace_id: "josergz.one-dark-vibrant-theme" + version: "1.2.2" + installs: 353 + author: "José Rodríguez " + repo: "https://github.com/josergz/one-dark-vibrant-theme" + url: "https://marketplace.visualstudio.com/items?itemName=josergz.one-dark-vibrant-theme" +colors: + bg: "#121212" + fg: "#E0E0E0" + black: "#000000" + red: "#FF0000" + green: "#32CD32" + yellow: "#FFA500" + blue: "#1E90FF" + magenta: "#DA70D6" + cyan: "#00CED1" + white: "#F5F5F5" + brightBlack: "#555555" + brightRed: "#FF4500" + brightGreen: "#7CFC00" + brightYellow: "#FFD700" + brightBlue: "#00BFFF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 37 + green: 60.8 + yellow: 64.1 + blue: 42.2 + magenta: 46.5 + cyan: 65 + white: 100.7 + brightBlack: 15.5 + brightRed: 40.8 + brightGreen: 87.3 + brightYellow: 83.7 + brightBlue: 60.8 + brightMagenta: 45.6 + brightCyan: 91.6 + brightWhite: 107.3 diff --git a/themes/one-dark-vivid.yaml b/themes/one-dark-vivid.yaml new file mode 100644 index 00000000..48fe614f --- /dev/null +++ b/themes/one-dark-vivid.yaml @@ -0,0 +1,49 @@ +name: "One Dark Vivid" +source: + marketplace_id: "mskelton.one-dark-theme" + version: "1.14.3" + installs: 128040 + author: "Mark Skelton" + repo: "https://github.com/one-dark/vscode-one-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mskelton.one-dark-theme" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 38.3 + brightMagenta: 41.9 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/one-dark.yaml b/themes/one-dark.yaml new file mode 100644 index 00000000..f1eb41b4 --- /dev/null +++ b/themes/one-dark.yaml @@ -0,0 +1,49 @@ +name: "one dark" +source: + marketplace_id: "kavinkumar.one-dark-custom-theme" + version: "0.0.4" + installs: 222 + author: "kavinkumar" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kavinkumar.one-dark-custom-theme" +colors: + bg: "#191818" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.4 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/one-darker-pro.yaml b/themes/one-darker-pro.yaml new file mode 100644 index 00000000..2eafdc82 --- /dev/null +++ b/themes/one-darker-pro.yaml @@ -0,0 +1,49 @@ +name: "One Darker Pro" +source: + marketplace_id: "pieersx.onedarker-pro" + version: "0.0.2" + installs: 387 + author: "Pieersx" + repo: "https://github.com/pieersx/onedarker-pro" + url: "https://marketplace.visualstudio.com/items?itemName=pieersx.onedarker-pro" +colors: + bg: "#181818" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 59.3 + black: 8.7 + red: 36.6 + green: 60.3 + yellow: 48.5 + blue: 49.5 + magenta: 38.9 + cyan: 52.4 + white: 82.9 + brightBlack: 15.4 + brightRed: 46 + brightGreen: 76.7 + brightYellow: 61.1 + brightBlue: 63.6 + brightMagenta: 50.1 + brightCyan: 67.7 + brightWhite: 90.5 diff --git a/themes/one-darkpuccin-vivid-italic.yaml b/themes/one-darkpuccin-vivid-italic.yaml new file mode 100644 index 00000000..3482a79c --- /dev/null +++ b/themes/one-darkpuccin-vivid-italic.yaml @@ -0,0 +1,49 @@ +name: "One DarkPuccin Vivid Italic" +source: + marketplace_id: "ni3rav.one-darkppuccin" + version: "0.0.4" + installs: 939 + author: "ni3rav" + repo: "https://github.com/ni3rav/one-darkppuccin" + url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.one-darkppuccin" +colors: + bg: "#2D3138" + fg: "#B0B4BA" + black: "#444B58" + red: "#E45C68" + green: "#91C96A" + yellow: "#D79758" + blue: "#4FADF8" + magenta: "#C769E5" + cyan: "#47BBC9" + white: "#DCE0E5" + brightBlack: "#555C6D" + brightRed: "#FF6875" + brightGreen: "#AAE57B" + brightYellow: "#F4AA62" + brightBlue: "#52CCFF" + brightMagenta: "#E67BFF" + brightCyan: "#51D9E8" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 56.3 + black: 0 + red: 34.8 + green: 59.7 + yellow: 48.1 + blue: 49.3 + magenta: 37.8 + cyan: 52.2 + white: 82.3 + brightBlack: 13.6 + brightRed: 43.4 + brightGreen: 75.5 + brightYellow: 59.9 + brightBlue: 63.2 + brightMagenta: 49.4 + brightCyan: 67.9 + brightWhite: 88.9 diff --git a/themes/one-half-light-italic.yaml b/themes/one-half-light-italic.yaml new file mode 100644 index 00000000..ee4d33b2 --- /dev/null +++ b/themes/one-half-light-italic.yaml @@ -0,0 +1,49 @@ +name: "One Half Light Italic" +source: + marketplace_id: "ACAutonomousSystems.acas-themes" + version: "0.0.5" + installs: 267 + author: "AC Autonomous Systems" + repo: "https://github.com/AC-Autonomous-Systems/ACAS-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=ACAutonomousSystems.acas-themes" +colors: + bg: "#FAFAFA" + fg: "#24292E" + black: "#383A42" + red: "#E45649" + green: "#50A14F" + yellow: "#C18401" + blue: "#2F5AF3" + magenta: "#A626A4" + cyan: "#00B7EB" + white: "#FAFAFA" + brightBlack: "#797979" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#4B72FF" + brightMagenta: "#C678DD" + brightCyan: "#00B7EB" + brightWhite: "#FAFAFA" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 98.5 + black: 93.2 + red: 60.4 + green: 56 + yellow: 55.8 + blue: 73.2 + magenta: 76.2 + cyan: 42.4 + white: 0 + brightBlack: 67.2 + brightRed: 55.7 + brightGreen: 36.1 + brightYellow: 28.2 + brightBlue: 64.5 + brightMagenta: 52.7 + brightCyan: 42.4 + brightWhite: 0 diff --git a/themes/one-hunter-theme.yaml b/themes/one-hunter-theme.yaml new file mode 100644 index 00000000..c08e3a6a --- /dev/null +++ b/themes/one-hunter-theme.yaml @@ -0,0 +1,49 @@ +name: "One Hunter Theme" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3734 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#1D2126" + fg: "#E3E1E1" + black: "#3B4145" + red: "#EF5350" + green: "#66DFC4" + yellow: "#64B5F6" + blue: "#64B5F6" + magenta: "#F06292" + cyan: "#C972D8" + white: "#E3E1E1" + brightBlack: "#454D54" + brightRed: "#EF5350" + brightGreen: "#B2EBF2" + brightYellow: "#90CAF9" + brightBlue: "#90CAF9" + brightMagenta: "#EC407A" + brightCyan: "#E1BEE7" + brightWhite: "#E3E1E1" +meta: + mode: "dark" + accent: "red" + hue: 254 + contrast: + fg: 86.6 + black: 0 + red: 38.1 + green: 73 + yellow: 56.5 + blue: 56.5 + magenta: 42.9 + cyan: 42.5 + white: 86.6 + brightBlack: 10.5 + brightRed: 38.1 + brightGreen: 86.4 + brightYellow: 68.7 + brightBlue: 68.7 + brightMagenta: 35.6 + brightCyan: 71.9 + brightWhite: 86.6 diff --git a/themes/one-light-pro.yaml b/themes/one-light-pro.yaml new file mode 100644 index 00000000..fa4dae4e --- /dev/null +++ b/themes/one-light-pro.yaml @@ -0,0 +1,49 @@ +name: "One Light Pro" +source: + marketplace_id: "andrewm098.OneLight-Pro" + version: "1.0.1" + installs: 21008 + author: "andrewm098" + repo: "https://github.com/andrew-ma/One-Light-Pro" + url: "https://marketplace.visualstudio.com/items?itemName=andrewm098.OneLight-Pro" +colors: + bg: "#E4E0CC" + fg: "#111113" + black: "#24272D" + red: "#B3565D" + green: "#799C60" + yellow: "#B79962" + blue: "#4D8CBF" + magenta: "#9E60B0" + cyan: "#44919B" + white: "#ACAEB3" + brightBlack: "#656971" + brightRed: "#C33838" + brightGreen: "#799C60" + brightYellow: "#B79962" + brightBlue: "#416FCC" + brightMagenta: "#640078" + brightCyan: "#44919B" + brightWhite: "#ACAEB3" +meta: + mode: "light" + accent: "pink" + hue: 98 + contrast: + fg: 86.8 + black: 83.3 + red: 54.1 + green: 39.6 + yellow: 34 + blue: 45 + magenta: 51.9 + cyan: 45.3 + white: 25.2 + brightBlack: 59 + brightRed: 56.8 + brightGreen: 39.6 + brightYellow: 34 + brightBlue: 54.5 + brightMagenta: 76.1 + brightCyan: 45.3 + brightWhite: 25.2 diff --git a/themes/one-material.yaml b/themes/one-material.yaml new file mode 100644 index 00000000..8d7a19a6 --- /dev/null +++ b/themes/one-material.yaml @@ -0,0 +1,49 @@ +name: "One Material" +source: + marketplace_id: "VVekslyer.one-material-theme" + version: "0.0.3" + installs: 359 + author: "VVekslyer" + repo: "https://github.com/VVekslyer/one-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=VVekslyer.one-material-theme" +colors: + bg: "#24282C" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 57 + black: 0 + red: 34.4 + green: 58 + yellow: 46.2 + blue: 47.3 + magenta: 36.7 + cyan: 50.2 + white: 80.7 + brightBlack: 13.1 + brightRed: 43.7 + brightGreen: 74.4 + brightYellow: 58.9 + brightBlue: 61.4 + brightMagenta: 47.9 + brightCyan: 65.4 + brightWhite: 88.3 diff --git a/themes/one-midnight.yaml b/themes/one-midnight.yaml new file mode 100644 index 00000000..f035a6d9 --- /dev/null +++ b/themes/one-midnight.yaml @@ -0,0 +1,49 @@ +name: "One Midnight" +source: + marketplace_id: "violetiapalucci.one-midnight" + version: "1.0.0" + installs: 538 + author: "Violet Iapalucci" + repo: "https://github.com/one-midnight-theme/vscode-one-midnight" + url: "https://marketplace.visualstudio.com/items?itemName=violetiapalucci.one-midnight" +colors: + bg: "#060115" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 294 + contrast: + fg: 60.3 + black: 9.8 + red: 37.7 + green: 61.3 + yellow: 49.5 + blue: 50.6 + magenta: 40 + cyan: 53.4 + white: 84 + brightBlack: 16.4 + brightRed: 47 + brightGreen: 77.7 + brightYellow: 62.2 + brightBlue: 64.7 + brightMagenta: 51.2 + brightCyan: 68.7 + brightWhite: 91.6 diff --git a/themes/one-monokai-darker.yaml b/themes/one-monokai-darker.yaml new file mode 100644 index 00000000..260389d1 --- /dev/null +++ b/themes/one-monokai-darker.yaml @@ -0,0 +1,49 @@ +name: "One Monokai Darker" +source: + marketplace_id: "zzhua095.one-monokai-pro" + version: "0.1.3" + installs: 629 + author: "zzhua" + repo: "https://github.com/Huazzi/vscode-one-monokai-darker" + url: "https://marketplace.visualstudio.com/items?itemName=zzhua095.one-monokai-pro" +colors: + bg: "#1E2227" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 254 + contrast: + fg: 58 + black: 0 + red: 40.7 + green: 60.9 + yellow: 69.2 + blue: 40.1 + magenta: 43.8 + cyan: 53.2 + white: 81.7 + brightBlack: 34.2 + brightRed: 37.1 + brightGreen: 60.9 + brightYellow: 69.2 + brightBlue: 40.1 + brightMagenta: 11.4 + brightCyan: 53.2 + brightWhite: 81.7 diff --git a/themes/one-monokai-forked.yaml b/themes/one-monokai-forked.yaml new file mode 100644 index 00000000..796dc30a --- /dev/null +++ b/themes/one-monokai-forked.yaml @@ -0,0 +1,49 @@ +name: "One Monokai Forked" +source: + marketplace_id: "mub.one-monokai-forked" + version: "0.6.3" + installs: 1090 + author: "mub" + repo: "https://github.com/mubdiur/vscode-one-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=mub.one-monokai-forked" +colors: + bg: "#131417" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 59.7 + black: 0 + red: 42.4 + green: 62.5 + yellow: 70.8 + blue: 41.7 + magenta: 45.4 + cyan: 54.8 + white: 83.3 + brightBlack: 35.8 + brightRed: 38.7 + brightGreen: 62.5 + brightYellow: 70.8 + brightBlue: 41.7 + brightMagenta: 13 + brightCyan: 54.8 + brightWhite: 83.3 diff --git a/themes/one-monokai-michota.yaml b/themes/one-monokai-michota.yaml new file mode 100644 index 00000000..ba03f18a --- /dev/null +++ b/themes/one-monokai-michota.yaml @@ -0,0 +1,49 @@ +name: "One Monokai Michota" +source: + marketplace_id: "michota.one-monokai-michota" + version: "0.2.0" + installs: 16 + author: "michota" + repo: "https://github.com/Michota/one-monokai-michota" + url: "https://marketplace.visualstudio.com/items?itemName=michota.one-monokai-michota" +colors: + bg: "#202020" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#FF52A3" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#FF52A3" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 58.3 + black: 0 + red: 41 + green: 61.2 + yellow: 69.5 + blue: 44 + magenta: 44 + cyan: 53.5 + white: 81.9 + brightBlack: 34.4 + brightRed: 37.3 + brightGreen: 61.2 + brightYellow: 69.5 + brightBlue: 44 + brightMagenta: 11.6 + brightCyan: 53.5 + brightWhite: 81.9 diff --git a/themes/one-monokai-shadow.yaml b/themes/one-monokai-shadow.yaml new file mode 100644 index 00000000..81b098bf --- /dev/null +++ b/themes/one-monokai-shadow.yaml @@ -0,0 +1,49 @@ +name: "One Monokai Shadow" +source: + marketplace_id: "2A5F.one-monokai-shadow" + version: "1.0.1" + installs: 1990 + author: "2A5F" + repo: "https://github.com/2A5F/one-monokai-shadow" + url: "https://marketplace.visualstudio.com/items?itemName=2A5F.one-monokai-shadow" +colors: + bg: "#1E1E1E" + fg: "#CCCCCC" + black: "#313131" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.8 + black: 0 + red: 41.2 + green: 61.4 + yellow: 69.7 + blue: 40.6 + magenta: 44.3 + cyan: 53.7 + white: 82.2 + brightBlack: 34.7 + brightRed: 37.6 + brightGreen: 61.4 + brightYellow: 69.7 + brightBlue: 40.6 + brightMagenta: 11.9 + brightCyan: 53.7 + brightWhite: 82.2 diff --git a/themes/one-monokai.yaml b/themes/one-monokai.yaml new file mode 100644 index 00000000..6c29f6d5 --- /dev/null +++ b/themes/one-monokai.yaml @@ -0,0 +1,49 @@ +name: "One Monokai" +source: + marketplace_id: "azemoh.one-monokai" + version: "0.5.2" + installs: 2841382 + author: "Joshua Azemoh" + repo: "https://github.com/azemoh/vscode-one-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=azemoh.one-monokai" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 38.3 + magenta: 41.9 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 38.3 + brightMagenta: 9.5 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/one-monokai1.yaml b/themes/one-monokai1.yaml new file mode 100644 index 00000000..18b83756 --- /dev/null +++ b/themes/one-monokai1.yaml @@ -0,0 +1,49 @@ +name: "One Monokai1" +source: + marketplace_id: "tnnmigga.tnnmigga-dark" + version: "0.0.3" + installs: 102 + author: "tnnmigga" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tnnmigga.tnnmigga-dark" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#61AFEF" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#61AFEF" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 38.3 + magenta: 41.9 + cyan: 51.5 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 38.3 + brightMagenta: 9.5 + brightCyan: 51.5 + brightWhite: 79.8 diff --git a/themes/one-moon.yaml b/themes/one-moon.yaml new file mode 100644 index 00000000..2bbc7b2b --- /dev/null +++ b/themes/one-moon.yaml @@ -0,0 +1,49 @@ +name: "'One Moon'" +source: + marketplace_id: "ThisNameWasTaken.one-moon" + version: "1.2.0" + installs: 3356 + author: "ThisNameWasTaken" + repo: "https://github.com/ThisNameWasTaken/one-moon" + url: "https://marketplace.visualstudio.com/items?itemName=ThisNameWasTaken.one-moon" +colors: + bg: "#242B2E" + fg: "#D4D4D4" + black: "#7F7F7F" + red: "#E15A60" + green: "#98C379" + yellow: "#E5C07B" + blue: "#70BEFF" + magenta: "#C27FD6" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#7F7F7F" + brightRed: "#E15A60" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#70BEFF" + brightMagenta: "#C27FD6" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 226 + contrast: + fg: 76.7 + black: 30.5 + red: 35.1 + green: 59.5 + yellow: 67.8 + blue: 60 + magenta: 43.2 + cyan: 50.2 + white: 76.7 + brightBlack: 30.5 + brightRed: 35.1 + brightGreen: 59.5 + brightYellow: 67.8 + brightBlue: 60 + brightMagenta: 43.2 + brightCyan: 50.2 + brightWhite: 76.7 diff --git a/themes/one-more-dark.yaml b/themes/one-more-dark.yaml new file mode 100644 index 00000000..0ef21ca1 --- /dev/null +++ b/themes/one-more-dark.yaml @@ -0,0 +1,49 @@ +name: "One More Dark" +source: + marketplace_id: "Avetis.onemoredark" + version: "0.0.4" + installs: 360 + author: "Avetis" + repo: "https://github.com/AvetisDN/onemoredark" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.onemoredark" +colors: + bg: "#1B2027" + fg: "#ECF2F8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 96.7 + black: 0 + red: 25.7 + green: 51.9 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 89 diff --git a/themes/one-piece-dark.yaml b/themes/one-piece-dark.yaml new file mode 100644 index 00000000..c2ede18c --- /dev/null +++ b/themes/one-piece-dark.yaml @@ -0,0 +1,49 @@ +name: "one-piece-dark" +source: + marketplace_id: "LeonardoTozoni.one-piece-theme" + version: "2.0.0" + installs: 8040 + author: "Leonardo Tozoni" + repo: "https://github.com/Leonardo-Tozoni/one-piece-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LeonardoTozoni.one-piece-theme" +colors: + bg: "#1A1F2E" + fg: "#E8E8E8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + contrast: + fg: 90.9 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.3 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/one-piece-high-contrast.yaml b/themes/one-piece-high-contrast.yaml new file mode 100644 index 00000000..cddffe4e --- /dev/null +++ b/themes/one-piece-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "One-Piece-High-Contrast" +source: + marketplace_id: "TeteDeCactus.onepiece-dark-theme" + version: "0.0.1" + installs: 7811 + author: "TeteDeCactus" + repo: "https://github.com/tetedecactus/VScode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=TeteDeCactus.onepiece-dark-theme" +colors: + bg: "#000000" + fg: "#00FFDB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 90.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/one-piece-light.yaml b/themes/one-piece-light.yaml new file mode 100644 index 00000000..791ba445 --- /dev/null +++ b/themes/one-piece-light.yaml @@ -0,0 +1,49 @@ +name: "one-piece-light" +source: + marketplace_id: "LeonardoTozoni.one-piece-theme" + version: "2.0.0" + installs: 8040 + author: "Leonardo Tozoni" + repo: "https://github.com/Leonardo-Tozoni/one-piece-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LeonardoTozoni.one-piece-theme" +colors: + bg: "#FFFBEB" + fg: "#1A1A1A" + black: "#1A1A1A" + red: "#B91C1C" + green: "#059669" + yellow: "#D97706" + blue: "#0B5394" + magenta: "#7C3AED" + cyan: "#0891B2" + white: "#D4D4D4" + brightBlack: "#7A8B99" + brightRed: "#DC2626" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#0369A1" + brightMagenta: "#9333EA" + brightCyan: "#0D9488" + brightWhite: "#F5F5F5" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.7 + black: 101.7 + red: 77.7 + green: 62.1 + yellow: 56 + blue: 84.1 + magenta: 74.9 + cyan: 61.3 + white: 20.2 + brightBlack: 60.2 + brightRed: 69 + brightGreen: 46.6 + brightYellow: 39.2 + brightBlue: 76.5 + brightMagenta: 73.1 + brightCyan: 61.9 + brightWhite: 0 diff --git a/themes/one-piece-straw-hat-red.yaml b/themes/one-piece-straw-hat-red.yaml new file mode 100644 index 00000000..6858baa6 --- /dev/null +++ b/themes/one-piece-straw-hat-red.yaml @@ -0,0 +1,49 @@ +name: "One Piece (Straw Hat Red)" +source: + marketplace_id: "LunaCode.anime-theme" + version: "0.0.3" + installs: 373 + author: "LunaCode" + repo: "https://github.com/BuildXO/anime-theme-pack" + url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" +colors: + bg: "#1C1215" + fg: "#F0E8DC" + black: "#3C2A32" + red: "#E74C3C" + green: "#2ECC71" + yellow: "#F1C40F" + blue: "#3498DB" + magenta: "#9B59B6" + cyan: "#1ABC9C" + white: "#E0D4C8" + brightBlack: "#7A6570" + brightRed: "#FF6B6B" + brightGreen: "#4ECDC4" + brightYellow: "#FFE66D" + brightBlue: "#5DADE2" + brightMagenta: "#D2B4DE" + brightCyan: "#76D7C4" + brightWhite: "#FFF8E7" +meta: + mode: "dark" + accent: "orange" + hue: 359 + contrast: + fg: 92.7 + black: 0 + red: 36.3 + green: 60.9 + yellow: 73.2 + blue: 42.7 + magenta: 28.8 + cyan: 54.3 + white: 80.8 + brightBlack: 24.3 + brightRed: 48.3 + brightGreen: 64.9 + brightYellow: 90.8 + brightBlue: 53 + brightMagenta: 66.8 + brightCyan: 71.5 + brightWhite: 102.7 diff --git a/themes/onebitcode-theme.yaml b/themes/onebitcode-theme.yaml new file mode 100644 index 00000000..3589e301 --- /dev/null +++ b/themes/onebitcode-theme.yaml @@ -0,0 +1,49 @@ +name: "onebitcode-theme" +source: + marketplace_id: "guicastro13.onebitcode-theme" + version: "0.0.5" + installs: 2293 + author: "guicastro13" + repo: "https://github.com/guicastro13/onebitcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" +colors: + bg: "#1B1B1B" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.4 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/onebitcode.yaml b/themes/onebitcode.yaml new file mode 100644 index 00000000..57144899 --- /dev/null +++ b/themes/onebitcode.yaml @@ -0,0 +1,49 @@ +name: "OneBitCode" +source: + marketplace_id: "OneBitCode.rockstar-theme" + version: "0.0.1" + installs: 296 + author: "OneBitCode" + repo: "https://github.com/isaacpontes/onebitcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=OneBitCode.rockstar-theme" +colors: + bg: "#252525" + fg: "#E5E5E5" + black: "#5C5A5D" + red: "#D478FF" + green: "#00FF9F" + yellow: "#F3C767" + blue: "#F64348" + magenta: "#00FF9F" + cyan: "#00A2FF" + white: "#FFFFFF" + brightBlack: "#898989" + brightRed: "#D478FF" + brightGreen: "#00FF9F" + brightYellow: "#F3C767" + brightBlue: "#F64348" + brightMagenta: "#00FF9F" + brightCyan: "#F64348" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88.1 + black: 15.4 + red: 47.9 + green: 85.4 + yellow: 73.3 + blue: 36.5 + magenta: 85.4 + cyan: 46.4 + white: 105 + brightBlack: 36.2 + brightRed: 47.9 + brightGreen: 85.4 + brightYellow: 73.3 + brightBlue: 36.5 + brightMagenta: 85.4 + brightCyan: 36.5 + brightWhite: 105 diff --git a/themes/onecalm.yaml b/themes/onecalm.yaml new file mode 100644 index 00000000..50016345 --- /dev/null +++ b/themes/onecalm.yaml @@ -0,0 +1,49 @@ +name: "OneCalm" +source: + marketplace_id: "volkovpishet.one-calm-theme" + version: "0.2.5" + installs: 2122 + author: "volkovpishet" + repo: "https://github.com/volkovpishet/one-calm-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=volkovpishet.one-calm-theme" +colors: + bg: "#2D3440" + fg: "#FFFFFF" + black: "#000000" + red: "#F08585" + green: "#A7D984" + yellow: "#E2C08D" + blue: "#7FC1F7" + magenta: "#BF9FFE" + cyan: "#8DC4B2" + white: "#D7DAE0" + brightBlack: "#22262D" + brightRed: "#C24038" + brightGreen: "#A7D984" + brightYellow: "#E2C08D" + brightBlue: "#457DFF" + brightMagenta: "#BF9FFE" + brightCyan: "#8DC4B2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "purple" + hue: 261 + contrast: + fg: 101.9 + black: 0 + red: 47.2 + green: 69 + yellow: 65.5 + blue: 59.5 + magenta: 53.2 + cyan: 58.5 + white: 78 + brightBlack: 0 + brightRed: 21.3 + brightGreen: 69 + brightYellow: 65.5 + brightBlue: 31.2 + brightMagenta: 53.2 + brightCyan: 58.5 + brightWhite: 78 diff --git a/themes/onedark-nvim.yaml b/themes/onedark-nvim.yaml new file mode 100644 index 00000000..3cc59b7d --- /dev/null +++ b/themes/onedark-nvim.yaml @@ -0,0 +1,49 @@ +name: "onedark.nvim" +source: + marketplace_id: "nanndo.nanndo-onedark" + version: "1.0.0" + installs: 51 + author: "nanndo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=nanndo.nanndo-onedark" +colors: + bg: "#1A212E" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 263 + contrast: + fg: 58.1 + black: 7.6 + red: 35.5 + green: 59.1 + yellow: 47.3 + blue: 48.4 + magenta: 37.8 + cyan: 51.3 + white: 89.4 + brightBlack: 14.2 + brightRed: 44.8 + brightGreen: 75.5 + brightYellow: 60 + brightBlue: 62.5 + brightMagenta: 49 + brightCyan: 66.5 + brightWhite: 81.8 diff --git a/themes/onedark-pro-suhayb-s-version-v2.yaml b/themes/onedark-pro-suhayb-s-version-v2.yaml new file mode 100644 index 00000000..45b47f7c --- /dev/null +++ b/themes/onedark-pro-suhayb-s-version-v2.yaml @@ -0,0 +1,49 @@ +name: "OneDark Pro - Suhayb's Version v2" +source: + marketplace_id: "Suhaybu.onedarkpro-colorblind" + version: "1.0.1" + installs: 2278 + author: "Suhaybu" + repo: "https://github.com/suhaybu/onedarkpro-colorblind" + url: "https://marketplace.visualstudio.com/items?itemName=Suhaybu.onedarkpro-colorblind" +colors: + bg: "#282C34" + fg: "#E4EBFF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 90.7 + black: 0 + red: 33.5 + green: 57.2 + yellow: 45.4 + blue: 46.5 + magenta: 35.9 + cyan: 49.3 + white: 79.8 + brightBlack: 12.3 + brightRed: 42.9 + brightGreen: 73.6 + brightYellow: 58 + brightBlue: 60.5 + brightMagenta: 47.1 + brightCyan: 64.6 + brightWhite: 87.4 diff --git a/themes/oneiroi-caffeine.yaml b/themes/oneiroi-caffeine.yaml new file mode 100644 index 00000000..77479ba1 --- /dev/null +++ b/themes/oneiroi-caffeine.yaml @@ -0,0 +1,49 @@ +name: "Oneiroi caffeine" +source: + marketplace_id: "OneiroiTheme.oneiroi-theme-vscode" + version: "0.0.4" + installs: 57 + author: "OneiroiTheme" + repo: "https://github.com/OneiroiTheme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=OneiroiTheme.oneiroi-theme-vscode" +colors: + bg: "#ECEEF3" + fg: "#181C20" + black: "#ECEEF3" + red: "#8A4A64" + green: "#456732" + yellow: "#7A580C" + blue: "#3D5F90" + magenta: "#725187" + cyan: "#166B54" + white: "#514347" + brightBlack: "#D5C2C6" + brightRed: "#6E334C" + brightGreen: "#2E4F1C" + brightYellow: "#5E4200" + brightBlue: "#234777" + brightMagenta: "#59376E" + brightCyan: "#166B54" + brightWhite: "#181C20" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 93.9 + black: 0 + red: 71.7 + green: 71.9 + yellow: 71.9 + blue: 71.9 + magenta: 71.9 + cyan: 71.4 + white: 81.5 + brightBlack: 20.2 + brightRed: 81.2 + brightGreen: 81.3 + brightYellow: 81.1 + brightBlue: 81.3 + brightMagenta: 81.8 + brightCyan: 71.4 + brightWhite: 93.9 diff --git a/themes/oneiroi-dream.yaml b/themes/oneiroi-dream.yaml new file mode 100644 index 00000000..ff9cac7d --- /dev/null +++ b/themes/oneiroi-dream.yaml @@ -0,0 +1,49 @@ +name: "Oneiroi dream" +source: + marketplace_id: "OneiroiTheme.oneiroi-theme-vscode" + version: "0.0.4" + installs: 57 + author: "OneiroiTheme" + repo: "https://github.com/OneiroiTheme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=OneiroiTheme.oneiroi-theme-vscode" +colors: + bg: "#25282C" + fg: "#E0E2E8" + black: "#25282C" + red: "#FFB0CD" + green: "#AAD291" + yellow: "#EDC06C" + blue: "#A6C8FF" + magenta: "#E0B8F6" + cyan: "#89D6B9" + white: "#ECD7DB" + brightBlack: "#9D8C90" + brightRed: "#FFD9E4" + brightGreen: "#C5EFA7" + brightYellow: "#FFDEA7" + brightBlue: "#D5E3FF" + brightMagenta: "#F4DAFF" + brightCyan: "#89D6B9" + brightWhite: "#E0E2E8" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 85.8 + black: 0 + red: 69.1 + green: 69 + yellow: 69.1 + blue: 68.9 + magenta: 69.1 + cyan: 69.3 + white: 82 + brightBlack: 39.3 + brightRed: 86.1 + brightGreen: 86.1 + brightYellow: 86 + brightBlue: 86 + brightMagenta: 86.2 + brightCyan: 69.3 + brightWhite: 85.8 diff --git a/themes/oneiroi-melatonin.yaml b/themes/oneiroi-melatonin.yaml new file mode 100644 index 00000000..be6dad2c --- /dev/null +++ b/themes/oneiroi-melatonin.yaml @@ -0,0 +1,49 @@ +name: "Oneiroi melatonin" +source: + marketplace_id: "OneiroiTheme.oneiroi-theme-vscode" + version: "0.0.4" + installs: 57 + author: "OneiroiTheme" + repo: "https://github.com/OneiroiTheme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=OneiroiTheme.oneiroi-theme-vscode" +colors: + bg: "#1C2024" + fg: "#E0E2E8" + black: "#1C2024" + red: "#FFB0CD" + green: "#A9D291" + yellow: "#ECC06C" + blue: "#A7C8FF" + magenta: "#E0B8F6" + cyan: "#88D6BA" + white: "#C0C7CD" + brightBlack: "#41484D" + brightRed: "#FFD9E4" + brightGreen: "#C5EFA7" + brightYellow: "#FFDEA4" + brightBlue: "#D5E3FF" + brightMagenta: "#F4D9FF" + brightCyan: "#88D6BA" + brightWhite: "#E0E2E8" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 87.1 + black: 0 + red: 70.4 + green: 70.2 + yellow: 70.3 + blue: 70.4 + magenta: 70.4 + cyan: 70.6 + white: 70.1 + brightBlack: 8.8 + brightRed: 87.5 + brightGreen: 87.4 + brightYellow: 87.2 + brightBlue: 87.3 + brightMagenta: 87.1 + brightCyan: 70.6 + brightWhite: 87.1 diff --git a/themes/onemonokai80s.yaml b/themes/onemonokai80s.yaml new file mode 100644 index 00000000..dd9fcb3b --- /dev/null +++ b/themes/onemonokai80s.yaml @@ -0,0 +1,49 @@ +name: "OneMonokai80s" +source: + marketplace_id: "axiomaticstudios.one-monokai-80s" + version: "2.6.6" + installs: 61821 + author: "Axiomatic Studios" + repo: "https://github.com/marcelo-mason/one-monokai-80s" + url: "https://marketplace.visualstudio.com/items?itemName=axiomaticstudios.one-monokai-80s" +colors: + bg: "#1F2237" + fg: "#A6B1C9" + black: "#6F7887" + red: "#E57685" + green: "#86BB94" + yellow: "#C9B999" + blue: "#61A2EF" + magenta: "#D491CF" + cyan: "#56B6C2" + white: "#A6B1C9" + brightBlack: "#6F7887" + brightRed: "#E57685" + brightGreen: "#86BB94" + brightYellow: "#C9B999" + brightBlue: "#61A2EF" + brightMagenta: "#D491CF" + brightCyan: "#56B6C2" + brightWhite: "#A6B1C9" +meta: + mode: "dark" + accent: "red" + hue: 277 + contrast: + fg: 57.2 + black: 28.1 + red: 44.3 + green: 56.3 + yellow: 62.8 + blue: 47.8 + magenta: 52.2 + cyan: 52.9 + white: 57.2 + brightBlack: 28.1 + brightRed: 44.3 + brightGreen: 56.3 + brightYellow: 62.8 + brightBlue: 47.8 + brightMagenta: 52.2 + brightCyan: 52.9 + brightWhite: 57.2 diff --git a/themes/onemonokai80sog.yaml b/themes/onemonokai80sog.yaml new file mode 100644 index 00000000..ceca95cf --- /dev/null +++ b/themes/onemonokai80sog.yaml @@ -0,0 +1,49 @@ +name: "OneMonokai80sOG" +source: + marketplace_id: "axiomaticstudios.one-monokai-80s" + version: "2.6.6" + installs: 61821 + author: "Axiomatic Studios" + repo: "https://github.com/marcelo-mason/one-monokai-80s" + url: "https://marketplace.visualstudio.com/items?itemName=axiomaticstudios.one-monokai-80s" +colors: + bg: "#282C34" + fg: "#BEC2CA" + black: "#6F7887" + red: "#E06C75" + green: "#9AC181" + yellow: "#D6C294" + blue: "#61AFEF" + magenta: "#CA90D0" + cyan: "#56B6C2" + white: "#BEC2CA" + brightBlack: "#6F7887" + brightRed: "#E06C75" + brightGreen: "#9AC181" + brightYellow: "#D6C294" + brightBlue: "#61AFEF" + brightMagenta: "#CA90D0" + brightCyan: "#56B6C2" + brightWhite: "#E3E5E8" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 65.4 + black: 26.5 + red: 38.9 + green: 58.6 + yellow: 66.6 + blue: 51.5 + magenta: 48.8 + cyan: 51.4 + white: 65.4 + brightBlack: 26.5 + brightRed: 38.9 + brightGreen: 58.6 + brightYellow: 66.6 + brightBlue: 51.5 + brightMagenta: 48.8 + brightCyan: 51.4 + brightWhite: 86.7 diff --git a/themes/onenv.yaml b/themes/onenv.yaml new file mode 100644 index 00000000..3fefdca6 --- /dev/null +++ b/themes/onenv.yaml @@ -0,0 +1,49 @@ +name: "OneNv" +source: + marketplace_id: "udan-jayanith-jayakody.onenv" + version: "0.4.0" + installs: 80 + author: "OneNv" + repo: "https://github.com/udan-jayanith/onenv" + url: "https://marketplace.visualstudio.com/items?itemName=udan-jayanith-jayakody.onenv" +colors: + bg: "#161B22" + fg: "#ECF2F8" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#ECF2F8" + brightBlack: "#000000" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#ECF2F8" +meta: + mode: "dark" + accent: "red" + hue: 257 + contrast: + fg: 97.4 + black: 0 + red: 43.2 + green: 83.8 + yellow: 78.5 + blue: 55.5 + magenta: 53.3 + cyan: 77.8 + white: 97.4 + brightBlack: 0 + brightRed: 43.2 + brightGreen: 83.8 + brightYellow: 78.5 + brightBlue: 55.5 + brightMagenta: 53.3 + brightCyan: 77.8 + brightWhite: 97.4 diff --git a/themes/oni-theme.yaml b/themes/oni-theme.yaml new file mode 100644 index 00000000..959478c7 --- /dev/null +++ b/themes/oni-theme.yaml @@ -0,0 +1,49 @@ +name: "Oni Theme" +source: + marketplace_id: "onikijo.oni-color-theme" + version: "1.1.3" + installs: 189 + author: "onikijo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=onikijo.oni-color-theme" +colors: + bg: "#292A2F" + fg: "#FFFFFF" + black: "#010101" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 104 + black: 0 + red: 23.9 + green: 50.1 + yellow: 82.8 + blue: 24.6 + magenta: 26.9 + cyan: 44.7 + white: 82.1 + brightBlack: 19.2 + brightRed: 35.7 + brightGreen: 60.7 + brightYellow: 92.8 + brightBlue: 37.1 + brightMagenta: 42.5 + brightCyan: 52.5 + brightWhite: 82.1 diff --git a/themes/onlydark.yaml b/themes/onlydark.yaml new file mode 100644 index 00000000..68e77698 --- /dev/null +++ b/themes/onlydark.yaml @@ -0,0 +1,49 @@ +name: "OnlyDark" +source: + marketplace_id: "YesCode.inspiration" + version: "0.0.19" + installs: 1076 + author: "YesCode" + repo: "https://github.com/yesomac/inspiration_themevsc" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" +colors: + bg: "#1A1A1A" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#FFA500" + brightYellow: "#FFA500" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.2 + black: 0 + red: 41.6 + green: 60.6 + yellow: 72.7 + blue: 47.2 + magenta: 19.2 + cyan: 49.1 + white: 46.9 + brightBlack: 18.3 + brightRed: 41.6 + brightGreen: 63.4 + brightYellow: 63.4 + brightBlue: 18.4 + brightMagenta: 19.2 + brightCyan: 49.1 + brightWhite: 98.5 diff --git a/themes/onora.yaml b/themes/onora.yaml new file mode 100644 index 00000000..0e76ec62 --- /dev/null +++ b/themes/onora.yaml @@ -0,0 +1,49 @@ +name: "Onora" +source: + marketplace_id: "NolanJenko.abelian" + version: "0.14.0" + installs: 389 + author: "Robert Jenko" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NolanJenko.abelian" +colors: + bg: "#232E35" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 236 + contrast: + fg: 101.2 + black: 0 + red: 40.3 + green: 80.8 + yellow: 75.6 + blue: 52.6 + magenta: 50.4 + cyan: 74.9 + white: 103.5 + brightBlack: 20.5 + brightRed: 40.3 + brightGreen: 80.8 + brightYellow: 75.6 + brightBlue: 52.6 + brightMagenta: 50.4 + brightCyan: 74.9 + brightWhite: 103.5 diff --git a/themes/onyx-core.yaml b/themes/onyx-core.yaml new file mode 100644 index 00000000..ea112c3b --- /dev/null +++ b/themes/onyx-core.yaml @@ -0,0 +1,49 @@ +name: "Onyx Core" +source: + marketplace_id: "zemd.zemd-theme-dark" + version: "0.9.0" + installs: 293 + author: "Dmytro Zelenetskyi" + repo: "https://github.com/zemd/vscode-theme-zemd" + url: "https://marketplace.visualstudio.com/items?itemName=zemd.zemd-theme-dark" +colors: + bg: "#272727" + fg: "#B0B0B0" + black: "#000000" + red: "#D35656" + green: "#51902E" + yellow: "#F8C465" + blue: "#4965A1" + magenta: "#B792BD" + cyan: "#70AEA6" + white: "#C4C8C6" + brightBlack: "#4D4D4D" + brightRed: "#E03C3C" + brightGreen: "#5AC220" + brightYellow: "#FFDBAD" + brightBlue: "#5C86E0" + brightMagenta: "#DD8BEA" + brightCyan: "#7FE0D3" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 56.3 + black: 0 + red: 31.7 + green: 32.1 + yellow: 72.6 + blue: 19.9 + magenta: 46.7 + cyan: 49.1 + white: 69.5 + brightBlack: 9.8 + brightRed: 30 + brightGreen: 54.1 + brightYellow: 85 + brightBlue: 35.7 + brightMagenta: 52.8 + brightCyan: 74.5 + brightWhite: 87.8 diff --git a/themes/onyx-ghost.yaml b/themes/onyx-ghost.yaml new file mode 100644 index 00000000..09d929f7 --- /dev/null +++ b/themes/onyx-ghost.yaml @@ -0,0 +1,49 @@ +name: "Onyx Ghost" +source: + marketplace_id: "zemd.zemd-theme-dark" + version: "0.9.0" + installs: 293 + author: "Dmytro Zelenetskyi" + repo: "https://github.com/zemd/vscode-theme-zemd" + url: "https://marketplace.visualstudio.com/items?itemName=zemd.zemd-theme-dark" +colors: + bg: "#242424" + fg: "#B0B0B0" + black: "#000000" + red: "#D35656" + green: "#51902E" + yellow: "#F8C465" + blue: "#4965A1" + magenta: "#B792BD" + cyan: "#70AEA6" + white: "#C4C8C6" + brightBlack: "#4D4D4D" + brightRed: "#E03C3C" + brightGreen: "#5AC220" + brightYellow: "#FFDBAD" + brightBlue: "#5C86E0" + brightMagenta: "#DD8BEA" + brightCyan: "#7FE0D3" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 56.8 + black: 0 + red: 32.2 + green: 32.7 + yellow: 73.1 + blue: 20.5 + magenta: 47.2 + cyan: 49.7 + white: 70 + brightBlack: 10.3 + brightRed: 30.5 + brightGreen: 54.6 + brightYellow: 85.5 + brightBlue: 36.2 + brightMagenta: 53.3 + brightCyan: 75 + brightWhite: 88.3 diff --git a/themes/onyx-theme-color.yaml b/themes/onyx-theme-color.yaml new file mode 100644 index 00000000..31deaf7f --- /dev/null +++ b/themes/onyx-theme-color.yaml @@ -0,0 +1,49 @@ +name: "Onyx Theme Color" +source: + marketplace_id: "dev-onyx.onyx-theme" + version: "1.2.0" + installs: 72 + author: "dev-onyx" + repo: "https://github.com/dev-onyx/onyx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dev-onyx.onyx-theme" +colors: + bg: "#121212" + fg: "#E4E4E4" + black: "#242424" + red: "#FC6B83" + green: "#3FA266" + yellow: "#D2943E" + blue: "#CCCCCC" + magenta: "#B48EAD" + cyan: "#CCCCCC" + white: "#E4E4E4" + brightBlack: "#E4E4E4" + brightRed: "#FC6B83" + brightGreen: "#70B489" + brightYellow: "#F1B467" + brightBlue: "#BEBEBE" + brightMagenta: "#B48EAD" + brightCyan: "#CCCCCC" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 89.8 + black: 0 + red: 48.5 + green: 42.3 + yellow: 50.6 + blue: 75.1 + magenta: 46.9 + cyan: 75.1 + white: 89.8 + brightBlack: 89.8 + brightRed: 48.5 + brightGreen: 53.4 + brightYellow: 67.8 + brightBlue: 66.9 + brightMagenta: 46.9 + brightCyan: 75.1 + brightWhite: 89.8 diff --git a/themes/onyx.yaml b/themes/onyx.yaml new file mode 100644 index 00000000..97345d91 --- /dev/null +++ b/themes/onyx.yaml @@ -0,0 +1,49 @@ +name: "Onyx" +source: + marketplace_id: "Priyaank.ether" + version: "2.0.1" + installs: 55 + author: "Priyaank" + repo: "https://github.com/PRIYAANK2510/Ether" + url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.ether" +colors: + bg: "#1F1F1F" + fg: "#808080" + black: "#181818" + red: "#A94B67" + green: "#499F71" + yellow: "#B4927A" + blue: "#73B3E4" + magenta: "#556FB6" + cyan: "#83918E" + white: "#DFDFDF" + brightBlack: "#707070" + brightRed: "#C15D7D" + brightGreen: "#5AB585" + brightYellow: "#CAA78E" + brightBlue: "#8BC4ED" + brightMagenta: "#6A83C7" + brightCyan: "#9AA8A5" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 32.8 + black: 0 + red: 23.4 + green: 40.3 + yellow: 45.1 + blue: 55.7 + magenta: 26.3 + cyan: 39.6 + white: 85.3 + brightBlack: 25.4 + brightRed: 32 + brightGreen: 51 + brightYellow: 56.3 + brightBlue: 65.2 + brightMagenta: 35.3 + brightCyan: 51.5 + brightWhite: 96.1 diff --git a/themes/ook.yaml b/themes/ook.yaml new file mode 100644 index 00000000..5a703e70 --- /dev/null +++ b/themes/ook.yaml @@ -0,0 +1,49 @@ +name: "Ook" +source: + marketplace_id: "dustinwilson.ook" + version: "0.0.1" + installs: 232 + author: "Dustin Wilson" + repo: "https://github.com/dustinwilson/ook-syntax-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dustinwilson.ook" +colors: + bg: "#1F1F1F" + fg: "#B1B7B8" + black: "#333435" + red: "#ED8178" + green: "#94A860" + yellow: "#C39A5A" + blue: "#76A8BB" + magenta: "#C192B6" + cyan: "#70ABA3" + white: "#D3D5D5" + brightBlack: "#737677" + brightRed: "#FFA59A" + brightGreen: "#B8CD82" + brightYellow: "#E9BD7B" + brightBlue: "#99CCE0" + brightMagenta: "#E6B6DB" + brightCyan: "#93D0C7" + brightWhite: "#F5F3F2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 60.8 + black: 0 + red: 49.2 + green: 48.9 + yellow: 49.3 + blue: 49.3 + magenta: 49.1 + cyan: 49 + white: 78.9 + brightBlack: 27.9 + brightRed: 64.8 + brightGreen: 69.3 + brightYellow: 69 + brightBlue: 69.2 + brightMagenta: 69.2 + brightCyan: 69.3 + brightWhite: 98.2 diff --git a/themes/oolory-dark-color-theme.yaml b/themes/oolory-dark-color-theme.yaml new file mode 100644 index 00000000..9b8b9b10 --- /dev/null +++ b/themes/oolory-dark-color-theme.yaml @@ -0,0 +1,49 @@ +name: "oolory-dark-color-theme" +source: + marketplace_id: "gtwsky.oolory" + version: "2.0.0" + installs: 2116 + author: "Michał Gutowski" + repo: "https://gitlab.com/gtwsky_/oolory" + url: "https://marketplace.visualstudio.com/items?itemName=gtwsky.oolory" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#FF0032" + green: "#00FF68" + yellow: "#FFCA00" + blue: "#004BFF" + magenta: "#D700FF" + cyan: "#00D2FF" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#FF0032" + brightGreen: "#00FF68" + brightYellow: "#FFCA00" + brightBlue: "#004BFF" + brightMagenta: "#D700FF" + brightCyan: "#00D2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 107.9 + red: 37.7 + green: 87.2 + yellow: 78.8 + blue: 22.9 + magenta: 37.6 + cyan: 70 + white: 107.9 + brightBlack: 107.9 + brightRed: 37.7 + brightGreen: 87.2 + brightYellow: 78.8 + brightBlue: 22.9 + brightMagenta: 37.6 + brightCyan: 70 + brightWhite: 107.9 diff --git a/themes/openbase.yaml b/themes/openbase.yaml new file mode 100644 index 00000000..3a855a40 --- /dev/null +++ b/themes/openbase.yaml @@ -0,0 +1,49 @@ +name: "openbase" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" +colors: + bg: "#0A0F18" + fg: "#B8C6E0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 71.3 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/openspace-dark-flat.yaml b/themes/openspace-dark-flat.yaml new file mode 100644 index 00000000..9a6fa2fb --- /dev/null +++ b/themes/openspace-dark-flat.yaml @@ -0,0 +1,49 @@ +name: "OpenSpace Dark Flat" +source: + marketplace_id: "OpenSpace.openspace-theme" + version: "1.2.41" + installs: 256 + author: "Open Space Technology" + repo: "https://github.com/hunqng/openspace-theme" + url: "https://marketplace.visualstudio.com/items?itemName=OpenSpace.openspace-theme" +colors: + bg: "#191919" + fg: "#E1E1E1" + black: "#2A2D33" + red: "#FC6A67" + green: "#A9DC76" + yellow: "#FFD866" + blue: "#78DCE8" + magenta: "#FF79C6" + cyan: "#78E8C6" + white: "#E1E1E1" + brightBlack: "#78DCE8" + brightRed: "#FC6A67" + brightGreen: "#A9DC76" + brightYellow: "#FFD866" + brightBlue: "#78DCE8" + brightMagenta: "#FF79C6" + brightCyan: "#78E8C6" + brightWhite: "#E1E1E1" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 46.9 + green: 75.1 + yellow: 84.1 + blue: 75.2 + magenta: 54.4 + cyan: 79.5 + white: 87.3 + brightBlack: 75.2 + brightRed: 46.9 + brightGreen: 75.1 + brightYellow: 84.1 + brightBlue: 75.2 + brightMagenta: 54.4 + brightCyan: 79.5 + brightWhite: 87.3 diff --git a/themes/openspace-dark.yaml b/themes/openspace-dark.yaml new file mode 100644 index 00000000..f8704d52 --- /dev/null +++ b/themes/openspace-dark.yaml @@ -0,0 +1,49 @@ +name: "OpenSpace Dark" +source: + marketplace_id: "OpenSpace.openspace-theme" + version: "1.2.41" + installs: 256 + author: "Open Space Technology" + repo: "https://github.com/hunqng/openspace-theme" + url: "https://marketplace.visualstudio.com/items?itemName=OpenSpace.openspace-theme" +colors: + bg: "#2A2D31" + fg: "#E1E1E1" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 84.1 + black: 0 + red: 40 + green: 81.5 + yellow: 95.2 + blue: 50.3 + magenta: 51.2 + cyan: 80.6 + white: 98.6 + brightBlack: 24.7 + brightRed: 45.5 + brightGreen: 85.7 + brightYellow: 100.2 + brightBlue: 62.7 + brightMagenta: 59.2 + brightCyan: 93.4 + brightWhite: 103.5 diff --git a/themes/openspace.yaml b/themes/openspace.yaml new file mode 100644 index 00000000..3fe59307 --- /dev/null +++ b/themes/openspace.yaml @@ -0,0 +1,49 @@ +name: "OpenSpace" +source: + marketplace_id: "OpenSpace.openspace-theme" + version: "1.2.41" + installs: 256 + author: "Open Space Technology" + repo: "https://github.com/hunqng/openspace-theme" + url: "https://marketplace.visualstudio.com/items?itemName=OpenSpace.openspace-theme" +colors: + bg: "#2A2D33" + fg: "#E1E1E1" + black: "#2A2D33" + red: "#FC6A67" + green: "#A9DC76" + yellow: "#FFD866" + blue: "#78DCE8" + magenta: "#FF79C6" + cyan: "#78E8C6" + white: "#E1E1E1" + brightBlack: "#78DCE8" + brightRed: "#FC6A67" + brightGreen: "#A9DC76" + brightYellow: "#FFD866" + brightBlue: "#78DCE8" + brightMagenta: "#FF79C6" + brightCyan: "#78E8C6" + brightWhite: "#E1E1E1" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 84.1 + black: 0 + red: 43.7 + green: 71.9 + yellow: 80.9 + blue: 72 + magenta: 51.2 + cyan: 76.3 + white: 84.1 + brightBlack: 72 + brightRed: 43.7 + brightGreen: 71.9 + brightYellow: 80.9 + brightBlue: 72 + brightMagenta: 51.2 + brightCyan: 76.3 + brightWhite: 84.1 diff --git a/themes/optimus-dark.yaml b/themes/optimus-dark.yaml new file mode 100644 index 00000000..f2108dc9 --- /dev/null +++ b/themes/optimus-dark.yaml @@ -0,0 +1,49 @@ +name: "Optimus Dark" +source: + marketplace_id: "optsystems.optimus-dark-vscode-theme" + version: "0.0.4" + installs: 416 + author: "Opt Systems" + repo: "https://github.com/opt-systems/optimus-dark-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=optsystems.optimus-dark-vscode-theme" +colors: + bg: "#121212" + fg: "#FFFFFF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.3 + black: 9.3 + red: 37.2 + green: 60.8 + yellow: 49 + blue: 50.1 + magenta: 39.5 + cyan: 52.9 + white: 91.1 + brightBlack: 15.9 + brightRed: 46.5 + brightGreen: 77.2 + brightYellow: 61.7 + brightBlue: 64.2 + brightMagenta: 50.7 + brightCyan: 68.2 + brightWhite: 83.5 diff --git a/themes/oq-dark-soft.yaml b/themes/oq-dark-soft.yaml new file mode 100644 index 00000000..2cf9d789 --- /dev/null +++ b/themes/oq-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "oQ Dark Soft" +source: + marketplace_id: "froQ.theme-oq" + version: "0.0.7" + installs: 16 + author: "froQ" + repo: "https://github.com/Fro-Q/vscode-theme-oq" + url: "https://marketplace.visualstudio.com/items?itemName=froQ.theme-oq" +colors: + bg: "#272828" + fg: "#B7B3B0" + black: "#272828" + red: "#E79A9A" + green: "#69C493" + yellow: "#D7B366" + blue: "#6FA8F0" + magenta: "#B57AA7" + cyan: "#68B7B7" + white: "#FFF9F5" + brightBlack: "#272727" + brightRed: "#A45B5B" + brightGreen: "#387A55" + brightYellow: "#916F3B" + brightBlue: "#3F6496" + brightMagenta: "#774D70" + brightCyan: "#3A7878" + brightWhite: "#FFF9F5" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 58.2 + black: 0 + red: 55.3 + green: 57.5 + yellow: 60.4 + blue: 50.4 + magenta: 37.7 + cyan: 53 + white: 101.2 + brightBlack: 0 + brightRed: 24.2 + brightGreen: 23.1 + brightYellow: 26.2 + brightBlue: 18.4 + brightMagenta: 15.1 + brightCyan: 23.4 + brightWhite: 101.2 diff --git a/themes/oq-dark.yaml b/themes/oq-dark.yaml new file mode 100644 index 00000000..69741c66 --- /dev/null +++ b/themes/oq-dark.yaml @@ -0,0 +1,49 @@ +name: "oQ Dark" +source: + marketplace_id: "froQ.theme-oq" + version: "0.0.7" + installs: 16 + author: "froQ" + repo: "https://github.com/Fro-Q/vscode-theme-oq" + url: "https://marketplace.visualstudio.com/items?itemName=froQ.theme-oq" +colors: + bg: "#0F1010" + fg: "#B7B3B0" + black: "#0F1010" + red: "#E79A9A" + green: "#69C493" + yellow: "#D7B366" + blue: "#6FA8F0" + magenta: "#B57AA7" + cyan: "#68B7B7" + white: "#FFF9F5" + brightBlack: "#272727" + brightRed: "#A45B5B" + brightGreen: "#387A55" + brightYellow: "#916F3B" + brightBlue: "#3F6496" + brightMagenta: "#774D70" + brightCyan: "#3A7878" + brightWhite: "#FFF9F5" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 61.2 + black: 0 + red: 58.3 + green: 60.5 + yellow: 63.4 + blue: 53.3 + magenta: 40.7 + cyan: 56 + white: 104.2 + brightBlack: 0 + brightRed: 27.2 + brightGreen: 26 + brightYellow: 29.2 + brightBlue: 21.4 + brightMagenta: 18.1 + brightCyan: 26.4 + brightWhite: 104.2 diff --git a/themes/oq-light-soft.yaml b/themes/oq-light-soft.yaml new file mode 100644 index 00000000..dc0e96f5 --- /dev/null +++ b/themes/oq-light-soft.yaml @@ -0,0 +1,49 @@ +name: "oQ Light Soft" +source: + marketplace_id: "froQ.theme-oq" + version: "0.0.7" + installs: 16 + author: "froQ" + repo: "https://github.com/Fro-Q/vscode-theme-oq" + url: "https://marketplace.visualstudio.com/items?itemName=froQ.theme-oq" +colors: + bg: "#E6E0DD" + fg: "#575655" + black: "#E6E0DD" + red: "#E79A9A" + green: "#69C493" + yellow: "#D7B366" + blue: "#6FA8F0" + magenta: "#B57AA7" + cyan: "#68B7B7" + white: "#0F1010" + brightBlack: "#E7E2DE" + brightRed: "#F7C7C7" + brightGreen: "#A3E4B8" + brightYellow: "#F1D89B" + brightBlue: "#AACDF7" + brightMagenta: "#E1B9D5" + brightCyan: "#A2E1E1" + brightWhite: "#0F1010" +meta: + mode: "light" + accent: "indigo" + hue: null + contrast: + fg: 67.9 + black: 0 + red: 25.8 + green: 23.7 + yellow: 20.9 + blue: 30.6 + magenta: 43 + cyan: 28 + white: 87.9 + brightBlack: 0 + brightRed: 0 + brightGreen: 0 + brightYellow: 0 + brightBlue: 10.9 + brightMagenta: 13.8 + brightCyan: 0 + brightWhite: 87.9 diff --git a/themes/oq-light.yaml b/themes/oq-light.yaml new file mode 100644 index 00000000..6ce9c88b --- /dev/null +++ b/themes/oq-light.yaml @@ -0,0 +1,49 @@ +name: "oQ Light" +source: + marketplace_id: "froQ.theme-oq" + version: "0.0.7" + installs: 16 + author: "froQ" + repo: "https://github.com/Fro-Q/vscode-theme-oq" + url: "https://marketplace.visualstudio.com/items?itemName=froQ.theme-oq" +colors: + bg: "#FFF9F5" + fg: "#575655" + black: "#FFF9F5" + red: "#E79A9A" + green: "#69C493" + yellow: "#D7B366" + blue: "#6FA8F0" + magenta: "#B57AA7" + cyan: "#68B7B7" + white: "#0F1010" + brightBlack: "#E7E2DE" + brightRed: "#F7C7C7" + brightGreen: "#A3E4B8" + brightYellow: "#F1D89B" + brightBlue: "#AACDF7" + brightMagenta: "#E1B9D5" + brightCyan: "#A2E1E1" + brightWhite: "#0F1010" +meta: + mode: "light" + accent: "indigo" + hue: null + contrast: + fg: 82.5 + black: 0 + red: 40.5 + green: 38.3 + yellow: 35.5 + blue: 45.2 + magenta: 57.6 + cyan: 42.7 + white: 102.5 + brightBlack: 11.2 + brightRed: 20.6 + brightGreen: 18.9 + brightYellow: 16.2 + brightBlue: 25.5 + brightMagenta: 28.5 + brightCyan: 18.8 + brightWhite: 102.5 diff --git a/themes/oradia.yaml b/themes/oradia.yaml new file mode 100644 index 00000000..220c3cb3 --- /dev/null +++ b/themes/oradia.yaml @@ -0,0 +1,49 @@ +name: "Oradia" +source: + marketplace_id: "Hansespinosa2.oradia-theme" + version: "0.1.2" + installs: 17 + author: "Hansespinosa2" + repo: "https://github.com/Hansespinosa2/oradia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Hansespinosa2.oradia-theme" +colors: + bg: "#1B1B1B" + fg: "#BFD9CA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.3 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/oragethemedark.yaml b/themes/oragethemedark.yaml new file mode 100644 index 00000000..531864b0 --- /dev/null +++ b/themes/oragethemedark.yaml @@ -0,0 +1,49 @@ +name: "oragethemedark" +source: + marketplace_id: "daniloBrayann.blue-theme-dark" + version: "0.0.37" + installs: 454 + author: "daniloBrayann" + repo: "https://github.com/danilobrayann/dev-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.blue-theme-dark" +colors: + bg: "#19191A" + fg: "#878784" + black: "#21222C" + red: "#FF5555" + green: "#46F2D4" + yellow: "#8D1EE6" + blue: "#00FF9E" + magenta: "#1E90FF" + cyan: "#ECED18" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#00FF9E" + brightMagenta: "#DE9237" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 36.8 + black: 0 + red: 43.2 + green: 82.9 + yellow: 22 + blue: 87.1 + magenta: 41.5 + cyan: 90.1 + white: 101.7 + brightBlack: 27.8 + brightRed: 48.6 + brightGreen: 88.8 + brightYellow: 103.3 + brightBlue: 87.1 + brightMagenta: 51.3 + brightCyan: 96.6 + brightWhite: 106.7 diff --git a/themes/orago-s-warm-theme.yaml b/themes/orago-s-warm-theme.yaml new file mode 100644 index 00000000..9fb949c6 --- /dev/null +++ b/themes/orago-s-warm-theme.yaml @@ -0,0 +1,49 @@ +name: "Orago's Warm Theme" +source: + marketplace_id: "orago.orago-themes" + version: "0.0.4" + installs: 24 + author: "orago" + repo: "https://github.com/Orago/orago-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=orago.orago-themes" +colors: + bg: "#A1663D" + fg: "#1A1108" + black: "#003B42" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#004D57" + brightRed: "#FF4000" + brightGreen: "#00D17A" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: 54 + contrast: + fg: 30.9 + black: 23.4 + red: 0 + green: 19.4 + yellow: 27.9 + blue: 12.8 + magenta: 16.2 + cyan: 28 + white: 21.3 + brightBlack: 17.3 + brightRed: 10.7 + brightGreen: 33.8 + brightYellow: 26.6 + brightBlue: 19.7 + brightMagenta: 20.5 + brightCyan: 35.2 + brightWhite: 39.3 diff --git a/themes/orange-coral.yaml b/themes/orange-coral.yaml new file mode 100644 index 00000000..a58b3b0b --- /dev/null +++ b/themes/orange-coral.yaml @@ -0,0 +1,49 @@ +name: "orange coral" +source: + marketplace_id: "FinnyComet.coral" + version: "1.9.0" + installs: 1464 + author: "Lorenzo" + repo: "https://github.com/FinnyComet32985/Coral-theme-for-vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=FinnyComet.coral" +colors: + bg: "#131C26" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 252 + contrast: + fg: 79 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.3 + cyan: 47.1 + white: 89.5 + brightBlack: 21.5 + brightRed: 38.1 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/orange-dark.yaml b/themes/orange-dark.yaml new file mode 100644 index 00000000..c36bfdc5 --- /dev/null +++ b/themes/orange-dark.yaml @@ -0,0 +1,49 @@ +name: "Orange Dark" +source: + marketplace_id: "RaphtikGHG.orange-dark" + version: "0.0.1" + installs: 879 + author: "RaphtikGHG" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RaphtikGHG.orange-dark" +colors: + bg: "#1E1E1E" + fg: "#BCBCBC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 64.5 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/orange.yaml b/themes/orange.yaml new file mode 100644 index 00000000..02ca7b32 --- /dev/null +++ b/themes/orange.yaml @@ -0,0 +1,49 @@ +name: "orange" +source: + marketplace_id: "natecrow.consonance-themes" + version: "1.2.0" + installs: 317 + author: "natecrow" + repo: "https://github.com/natecrow/consonance-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" +colors: + bg: "#111111" + fg: "#C8C4D7" + black: "#000000" + red: "#E4BEA8" + green: "#DA8955" + yellow: "#FFB17B" + blue: "#797586" + magenta: "#AE6231" + cyan: "#BA9681" + white: "#E4E0F4" + brightBlack: "#797586" + brightRed: "#E4BEA8" + brightGreen: "#DA8955" + brightYellow: "#FFB17B" + brightBlue: "#797586" + brightMagenta: "#AE6231" + brightCyan: "#BA9681" + brightWhite: "#FFFDFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 71.8 + black: 0 + red: 71.4 + green: 48.8 + yellow: 69.6 + blue: 30.1 + magenta: 29.8 + cyan: 49 + white: 88.9 + brightBlack: 30.1 + brightRed: 71.4 + brightGreen: 48.8 + brightYellow: 69.6 + brightBlue: 30.1 + brightMagenta: 29.8 + brightCyan: 49 + brightWhite: 106.4 diff --git a/themes/orangefox-dark.yaml b/themes/orangefox-dark.yaml new file mode 100644 index 00000000..02e3a35b --- /dev/null +++ b/themes/orangefox-dark.yaml @@ -0,0 +1,49 @@ +name: "OrangeFox Dark" +source: + marketplace_id: "quzma.orangefox" + version: "0.7.0" + installs: 182 + author: "Darko Kuzmanovic" + repo: "https://github.com/DarkoKuzmanovic/orangefox" + url: "https://marketplace.visualstudio.com/items?itemName=quzma.orangefox" +colors: + bg: "#202124" + fg: "#CCCCCC" + black: "#111111" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.4 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/orangefox-light.yaml b/themes/orangefox-light.yaml new file mode 100644 index 00000000..933cefd5 --- /dev/null +++ b/themes/orangefox-light.yaml @@ -0,0 +1,49 @@ +name: "OrangeFox Light" +source: + marketplace_id: "quzma.orangefox" + version: "0.7.0" + installs: 182 + author: "Darko Kuzmanovic" + repo: "https://github.com/DarkoKuzmanovic/orangefox" + url: "https://marketplace.visualstudio.com/items?itemName=quzma.orangefox" +colors: + bg: "#FFFFFF" + fg: "#2C2C2C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#007ACC" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 100.6 + black: 106 + red: 74 + green: 48 + yellow: 17 + blue: 70.6 + magenta: 70.9 + cyan: 53.3 + white: 12.9 + brightBlack: 78.8 + brightRed: 62.1 + brightGreen: 37.9 + brightYellow: 7.7 + brightBlue: 60.7 + brightMagenta: 55.4 + brightCyan: 45.7 + brightWhite: 12.9 diff --git a/themes/orangelemon.yaml b/themes/orangelemon.yaml new file mode 100644 index 00000000..e5af269a --- /dev/null +++ b/themes/orangelemon.yaml @@ -0,0 +1,49 @@ +name: "orangelemon" +source: + marketplace_id: "trisdo687.orangelemon" + version: "0.0.2" + installs: 145 + author: "trisdo687" + repo: "https://github.com/tsdenouden/orangelemonTheme" + url: "https://marketplace.visualstudio.com/items?itemName=trisdo687.orangelemon" +colors: + bg: "#242322" + fg: "#A58D7B" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 40.7 + black: 0 + red: 25.1 + green: 51.4 + yellow: 84 + blue: 25.8 + magenta: 28.2 + cyan: 46 + white: 88.4 + brightBlack: 20.4 + brightRed: 37 + brightGreen: 61.9 + brightYellow: 94 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/orangey-darker-1.yaml b/themes/orangey-darker-1.yaml new file mode 100644 index 00000000..c148f196 --- /dev/null +++ b/themes/orangey-darker-1.yaml @@ -0,0 +1,49 @@ +name: "Orangey (Darker 1)" +source: + marketplace_id: "ricafolio.orangey-vscode-theme" + version: "1.1.1" + installs: 969 + author: "ricafolio" + repo: "https://github.com/ricafolio/orangey-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" +colors: + bg: "#141414" + fg: "#F2E4DB" + black: "#000000" + red: "#EF4823" + green: "#82B200" + yellow: "#EFD023" + blue: "#023E8A" + magenta: "#B200A9" + cyan: "#0096C7" + white: "#CAC8A9" + brightBlack: "#666666" + brightRed: "#F37256" + brightGreen: "#DEFF39" + brightYellow: "#F3DB56" + brightBlue: "#0077B6" + brightMagenta: "#EE00E2" + brightCyan: "#00B4D8" + brightWhite: "#B2B184" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91.2 + black: 0 + red: 37.4 + green: 52 + yellow: 78 + blue: 8.8 + magenta: 23.2 + cyan: 40.2 + white: 71.6 + brightBlack: 22.3 + brightRed: 47 + brightGreen: 97.7 + brightYellow: 83.8 + brightBlue: 27.9 + brightMagenta: 39.5 + brightCyan: 53.5 + brightWhite: 58 diff --git a/themes/orangey-darker-2.yaml b/themes/orangey-darker-2.yaml new file mode 100644 index 00000000..2b885bc6 --- /dev/null +++ b/themes/orangey-darker-2.yaml @@ -0,0 +1,49 @@ +name: "Orangey (Darker 2)" +source: + marketplace_id: "ricafolio.orangey-vscode-theme" + version: "1.1.1" + installs: 969 + author: "ricafolio" + repo: "https://github.com/ricafolio/orangey-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" +colors: + bg: "#0B0B0B" + fg: "#F2E4DB" + black: "#000000" + red: "#EF4823" + green: "#82B200" + yellow: "#EFD023" + blue: "#023E8A" + magenta: "#B200A9" + cyan: "#0096C7" + white: "#CAC8A9" + brightBlack: "#666666" + brightRed: "#F37256" + brightGreen: "#DEFF39" + brightYellow: "#F3DB56" + brightBlue: "#0077B6" + brightMagenta: "#EE00E2" + brightCyan: "#00B4D8" + brightWhite: "#B2B184" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91.8 + black: 0 + red: 37.9 + green: 52.5 + yellow: 78.6 + blue: 9.3 + magenta: 23.8 + cyan: 40.8 + white: 72.2 + brightBlack: 22.9 + brightRed: 47.6 + brightGreen: 98.2 + brightYellow: 84.4 + brightBlue: 28.4 + brightMagenta: 40.1 + brightCyan: 54.1 + brightWhite: 58.5 diff --git a/themes/orangey-lighter-1.yaml b/themes/orangey-lighter-1.yaml new file mode 100644 index 00000000..870b449f --- /dev/null +++ b/themes/orangey-lighter-1.yaml @@ -0,0 +1,49 @@ +name: "Orangey (Lighter 1)" +source: + marketplace_id: "ricafolio.orangey-vscode-theme" + version: "1.1.1" + installs: 969 + author: "ricafolio" + repo: "https://github.com/ricafolio/orangey-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" +colors: + bg: "#222222" + fg: "#F2E4DB" + black: "#000000" + red: "#EF4823" + green: "#82B200" + yellow: "#EFD023" + blue: "#023E8A" + magenta: "#B200A9" + cyan: "#0096C7" + white: "#CAC8A9" + brightBlack: "#666666" + brightRed: "#F37256" + brightGreen: "#DEFF39" + brightYellow: "#F3DB56" + brightBlue: "#0077B6" + brightMagenta: "#EE00E2" + brightCyan: "#00B4D8" + brightWhite: "#B2B184" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 89.5 + black: 0 + red: 35.7 + green: 50.3 + yellow: 76.3 + blue: 0 + magenta: 21.5 + cyan: 38.5 + white: 69.9 + brightBlack: 20.6 + brightRed: 45.3 + brightGreen: 96 + brightYellow: 82.1 + brightBlue: 26.2 + brightMagenta: 37.8 + brightCyan: 51.8 + brightWhite: 56.3 diff --git a/themes/orangey-lighter-2.yaml b/themes/orangey-lighter-2.yaml new file mode 100644 index 00000000..be8156f5 --- /dev/null +++ b/themes/orangey-lighter-2.yaml @@ -0,0 +1,49 @@ +name: "Orangey (Lighter 2)" +source: + marketplace_id: "ricafolio.orangey-vscode-theme" + version: "1.1.1" + installs: 969 + author: "ricafolio" + repo: "https://github.com/ricafolio/orangey-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" +colors: + bg: "#272727" + fg: "#F2E4DB" + black: "#000000" + red: "#EF4823" + green: "#82B200" + yellow: "#EFD023" + blue: "#023E8A" + magenta: "#B200A9" + cyan: "#0096C7" + white: "#CAC8A9" + brightBlack: "#666666" + brightRed: "#F37256" + brightGreen: "#DEFF39" + brightYellow: "#F3DB56" + brightBlue: "#0077B6" + brightMagenta: "#EE00E2" + brightCyan: "#00B4D8" + brightWhite: "#B2B184" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 88.7 + black: 0 + red: 34.8 + green: 49.4 + yellow: 75.5 + blue: 0 + magenta: 20.7 + cyan: 37.7 + white: 69.1 + brightBlack: 19.8 + brightRed: 44.5 + brightGreen: 95.2 + brightYellow: 81.3 + brightBlue: 25.3 + brightMagenta: 37 + brightCyan: 51 + brightWhite: 55.4 diff --git a/themes/orangey.yaml b/themes/orangey.yaml new file mode 100644 index 00000000..e2986e67 --- /dev/null +++ b/themes/orangey.yaml @@ -0,0 +1,49 @@ +name: "Orangey" +source: + marketplace_id: "ricafolio.orangey-vscode-theme" + version: "1.1.1" + installs: 969 + author: "ricafolio" + repo: "https://github.com/ricafolio/orangey-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" +colors: + bg: "#1C1C1C" + fg: "#F2E4DB" + black: "#000000" + red: "#EF4823" + green: "#82B200" + yellow: "#EFD023" + blue: "#023E8A" + magenta: "#B200A9" + cyan: "#0096C7" + white: "#CAC8A9" + brightBlack: "#666666" + brightRed: "#F37256" + brightGreen: "#DEFF39" + brightYellow: "#F3DB56" + brightBlue: "#0077B6" + brightMagenta: "#EE00E2" + brightCyan: "#00B4D8" + brightWhite: "#B2B184" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 90.4 + black: 0 + red: 36.5 + green: 51.1 + yellow: 77.2 + blue: 7.9 + magenta: 22.4 + cyan: 39.4 + white: 70.8 + brightBlack: 21.5 + brightRed: 46.2 + brightGreen: 96.8 + brightYellow: 83 + brightBlue: 27 + brightMagenta: 38.7 + brightCyan: 52.7 + brightWhite: 57.1 diff --git a/themes/orbi-blue.yaml b/themes/orbi-blue.yaml new file mode 100644 index 00000000..6cd53206 --- /dev/null +++ b/themes/orbi-blue.yaml @@ -0,0 +1,49 @@ +name: "Orbi Blue" +source: + marketplace_id: "anishde12020.orbi" + version: "1.4.0" + installs: 1051 + author: "AnishDe12020" + repo: "https://github.com/AnishDe12020/orbi" + url: "https://marketplace.visualstudio.com/items?itemName=anishde12020.orbi" +colors: + bg: "#000000" + fg: "#868690" + black: "#000000" + red: "#FF8888" + green: "#A4FF85" + yellow: "#FFCB86" + blue: "#86D3FF" + magenta: "#D4A8FF" + cyan: "#A0FFDF" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#FD7279" + brightGreen: "#CDFF68" + brightYellow: "#FFA939" + brightBlue: "#269EE4" + brightMagenta: "#BC78FF" + brightCyan: "#58FFC7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 38 + black: 0 + red: 57.2 + green: 93.5 + yellow: 80.5 + blue: 74.5 + magenta: 65.4 + cyan: 96 + white: 72.7 + brightBlack: 23.9 + brightRed: 50.6 + brightGreen: 96.9 + brightYellow: 66.3 + brightBlue: 46.1 + brightMagenta: 47 + brightCyan: 90.9 + brightWhite: 107.9 diff --git a/themes/orbi-green.yaml b/themes/orbi-green.yaml new file mode 100644 index 00000000..a8671f54 --- /dev/null +++ b/themes/orbi-green.yaml @@ -0,0 +1,49 @@ +name: "Orbi Green" +source: + marketplace_id: "anishde12020.orbi" + version: "1.4.0" + installs: 1051 + author: "AnishDe12020" + repo: "https://github.com/AnishDe12020/orbi" + url: "https://marketplace.visualstudio.com/items?itemName=anishde12020.orbi" +colors: + bg: "#000000" + fg: "#868690" + black: "#000000" + red: "#FF8888" + green: "#A4FF85" + yellow: "#FFCB86" + blue: "#86D3FF" + magenta: "#D4A8FF" + cyan: "#A0FFDF" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#FD7279" + brightGreen: "#CDFF68" + brightYellow: "#FFA939" + brightBlue: "#48BCFF" + brightMagenta: "#BC78FF" + brightCyan: "#58FFC7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 38 + black: 0 + red: 57.2 + green: 93.5 + yellow: 80.5 + blue: 74.5 + magenta: 65.4 + cyan: 96 + white: 72.7 + brightBlack: 23.9 + brightRed: 50.6 + brightGreen: 96.9 + brightYellow: 66.3 + brightBlue: 61.1 + brightMagenta: 47 + brightCyan: 90.9 + brightWhite: 107.9 diff --git a/themes/orca.yaml b/themes/orca.yaml new file mode 100644 index 00000000..c28b72c0 --- /dev/null +++ b/themes/orca.yaml @@ -0,0 +1,49 @@ +name: "Orca" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2036 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#444444" + green: "#666666" + yellow: "#555555" + blue: "#333333" + magenta: "#777777" + cyan: "#888888" + white: "#FFFFFF" + brightBlack: "#222222" + brightRed: "#666666" + brightGreen: "#888888" + brightYellow: "#777777" + brightBlue: "#555555" + brightMagenta: "#999999" + brightCyan: "#AAAAAA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 9.8 + green: 23 + yellow: 16.1 + blue: 0 + magenta: 30.6 + cyan: 38.6 + white: 107.9 + brightBlack: 0 + brightRed: 23 + brightGreen: 38.6 + brightYellow: 30.6 + brightBlue: 16.1 + brightMagenta: 47.2 + brightCyan: 56.2 + brightWhite: 107.9 diff --git a/themes/origami-theme.yaml b/themes/origami-theme.yaml new file mode 100644 index 00000000..bca63388 --- /dev/null +++ b/themes/origami-theme.yaml @@ -0,0 +1,49 @@ +name: "origami-theme" +source: + marketplace_id: "febriadji.origami-theme" + version: "0.0.5" + installs: 1262 + author: "febriadji" + repo: "git+https://github.com/febriadj/vscode-origami-theme" + url: "https://marketplace.visualstudio.com/items?itemName=febriadji.origami-theme" +colors: + bg: "#0F111A" + fg: "#FFFFFF" + black: "#0F111A" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#FCC5E9" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#FCC5E9" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 107.3 + black: 0 + red: 39.7 + green: 76.9 + yellow: 102.5 + blue: 78.7 + magenta: 80.6 + cyan: 78.7 + white: 107.3 + brightBlack: 57.6 + brightRed: 39.7 + brightGreen: 76.9 + brightYellow: 102.5 + brightBlue: 79 + brightMagenta: 80.6 + brightCyan: 79 + brightWhite: 107.3 diff --git a/themes/origamid.yaml b/themes/origamid.yaml new file mode 100644 index 00000000..529e708c --- /dev/null +++ b/themes/origamid.yaml @@ -0,0 +1,49 @@ +name: "Origamid" +source: + marketplace_id: "origamid.origamid-theme" + version: "1.1.7" + installs: 63053 + author: "Origamid" + repo: "https://github.com/origamid/origamid-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=origamid.origamid-theme" +colors: + bg: "#222222" + fg: "#FFFFFF" + black: "#363537" + red: "#99BBFE" + green: "#FFDD44" + yellow: "#88BB44" + blue: "#99BBFE" + magenta: "#99BBFF" + cyan: "#DDAAFF" + white: "#FFFFFF" + brightBlack: "#69676C" + brightRed: "#99BBFE" + brightGreen: "#FFDD44" + brightYellow: "#88BB44" + brightBlue: "#99BBFE" + brightMagenta: "#99BBFF" + brightCyan: "#DDAAFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 105.5 + black: 0 + red: 63.2 + green: 84.7 + yellow: 55 + blue: 63.2 + magenta: 63.2 + cyan: 65 + white: 105.5 + brightBlack: 21.4 + brightRed: 63.2 + brightGreen: 84.7 + brightYellow: 55 + brightBlue: 63.2 + brightMagenta: 63.2 + brightCyan: 65 + brightWhite: 105.5 diff --git a/themes/original-theme.yaml b/themes/original-theme.yaml new file mode 100644 index 00000000..4a770706 --- /dev/null +++ b/themes/original-theme.yaml @@ -0,0 +1,49 @@ +name: "Original Theme" +source: + marketplace_id: "RLabsInc.rlabs-theme-collection" + version: "0.1.4" + installs: 181 + author: "RLabs Inc." + repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" + url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" +colors: + bg: "#131211" + fg: "#F7F5F5" + black: "#292929" + red: "#C26B6B" + green: "#667566" + yellow: "#FFBB77" + blue: "#445270" + magenta: "#9B7AB9" + cyan: "#76A9AC" + white: "#F7F5F7" + brightBlack: "#717571" + brightRed: "#FF7575" + brightGreen: "#99B999" + brightYellow: "#FFFFBB" + brightBlue: "#9CB0C5" + brightMagenta: "#C096E7" + brightCyan: "#9CBEC5" + brightWhite: "#C9C6C9" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 101 + black: 0 + red: 36.4 + green: 27.3 + yellow: 73.2 + blue: 14.4 + magenta: 37.8 + cyan: 50.4 + white: 101.1 + brightBlack: 28.6 + brightRed: 51.1 + brightGreen: 59.3 + brightYellow: 104.6 + brightBlue: 57.7 + brightMagenta: 54.3 + brightCyan: 63.5 + brightWhite: 72 diff --git a/themes/orion-x-black.yaml b/themes/orion-x-black.yaml new file mode 100644 index 00000000..c00cc683 --- /dev/null +++ b/themes/orion-x-black.yaml @@ -0,0 +1,49 @@ +name: "Orion X Black" +source: + marketplace_id: "Orion.orion-x-black" + version: "0.0.1" + installs: 360 + author: "Orion" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Orion.orion-x-black" +colors: + bg: "#000000" + fg: "#DFDFDF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F7F7F7" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 102.6 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/orpheux.yaml b/themes/orpheux.yaml new file mode 100644 index 00000000..07bdd3b0 --- /dev/null +++ b/themes/orpheux.yaml @@ -0,0 +1,49 @@ +name: "Orpheux" +source: + marketplace_id: "orpheux666.Orpheux" + version: "0.0.2" + installs: 26 + author: "orpheux666" + repo: "https://github.com/orpheux/orpheux_vsc_theme" + url: "https://marketplace.visualstudio.com/items?itemName=orpheux666.Orpheux" +colors: + bg: "#292C3E" + fg: "#F9F9F9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + contrast: + fg: 99.5 + black: 0 + red: 23.3 + green: 49.5 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.6 diff --git a/themes/orwellian-nightmare.yaml b/themes/orwellian-nightmare.yaml new file mode 100644 index 00000000..455c8a30 --- /dev/null +++ b/themes/orwellian-nightmare.yaml @@ -0,0 +1,49 @@ +name: "Orwellian Nightmare" +source: + marketplace_id: "YovenzorSingh.orwellian-nightmare" + version: "1.0.0" + installs: 41 + author: "Yovenzor Singh" + repo: "https://github.com/Yovenzor/Orwellian-Nightmare" + url: "https://marketplace.visualstudio.com/items?itemName=YovenzorSingh.orwellian-nightmare" +colors: + bg: "#0A0A13" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 107.7 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/osaka-solarized-pro-dark.yaml b/themes/osaka-solarized-pro-dark.yaml new file mode 100644 index 00000000..914e5805 --- /dev/null +++ b/themes/osaka-solarized-pro-dark.yaml @@ -0,0 +1,49 @@ +name: "Osaka Solarized Pro Dark" +source: + marketplace_id: "AashishKumar-3002.osaka-solarized-pro" + version: "1.0.2" + installs: 551 + author: "AashishKumar-3002" + repo: "https://github.com/AashishKumar-3002/osaka-solarized-pro-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AashishKumar-3002.osaka-solarized-pro" +colors: + bg: "#002731" + fg: "#A5B4B9" + black: "#002731" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#445056" + brightRed: "#E85D67" + brightGreen: "#9BB528" + brightYellow: "#CCB525" + brightBlue: "#5DB6EB" + brightMagenta: "#E899C3" + brightCyan: "#35A8A5" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 219 + contrast: + fg: 57.5 + black: 0 + red: 28.4 + green: 39.9 + yellow: 39.9 + blue: 34.9 + magenta: 28.6 + cyan: 40.6 + white: 90.1 + brightBlack: 10.7 + brightRed: 38.3 + brightGreen: 53.6 + brightYellow: 59.6 + brightBlue: 55.3 + brightMagenta: 57.4 + brightCyan: 44.3 + brightWhite: 99.3 diff --git a/themes/osaka-solarized-pro-light.yaml b/themes/osaka-solarized-pro-light.yaml new file mode 100644 index 00000000..41dcbcc5 --- /dev/null +++ b/themes/osaka-solarized-pro-light.yaml @@ -0,0 +1,49 @@ +name: "Osaka Solarized Pro Light" +source: + marketplace_id: "AashishKumar-3002.osaka-solarized-pro" + version: "1.0.2" + installs: 551 + author: "AashishKumar-3002" + repo: "https://github.com/AashishKumar-3002/osaka-solarized-pro-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AashishKumar-3002.osaka-solarized-pro" +colors: + bg: "#FDF6E3" + fg: "#657B83" + black: "#002731" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#E85D67" + brightGreen: "#9BB528" + brightYellow: "#CCB525" + brightBlue: "#5DB6EB" + brightMagenta: "#E899C3" + brightCyan: "#35A8A5" + brightWhite: "#FDF6E3" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 65.7 + black: 97.2 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 0 + brightBlack: 71.6 + brightRed: 55.4 + brightGreen: 40.4 + brightYellow: 34.7 + brightBlue: 38.8 + brightMagenta: 36.8 + brightCyan: 49.4 + brightWhite: 0 diff --git a/themes/osaka-solarized-pro-monokai-storm.yaml b/themes/osaka-solarized-pro-monokai-storm.yaml new file mode 100644 index 00000000..10301b0c --- /dev/null +++ b/themes/osaka-solarized-pro-monokai-storm.yaml @@ -0,0 +1,49 @@ +name: "Osaka Solarized Pro Monokai Storm" +source: + marketplace_id: "AashishKumar-3002.osaka-solarized-pro" + version: "1.0.2" + installs: 551 + author: "AashishKumar-3002" + repo: "https://github.com/AashishKumar-3002/osaka-solarized-pro-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AashishKumar-3002.osaka-solarized-pro" +colors: + bg: "#181825" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A9DC76" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#CBA6F7" + cyan: "#94E2D5" + white: "#BAC2DE" + brightBlack: "#585B70" + brightRed: "#F38BA8" + brightGreen: "#A9DC76" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#94E2D5" + brightWhite: "#A6ADC8" +meta: + mode: "dark" + accent: "green" + hue: 284 + contrast: + fg: 80.8 + black: 10.1 + red: 55.5 + green: 75 + yellow: 89.2 + blue: 59.9 + magenta: 61.6 + cyan: 79.1 + white: 68.9 + brightBlack: 17.7 + brightRed: 55.5 + brightGreen: 75 + brightYellow: 89.2 + brightBlue: 59.9 + brightMagenta: 77.5 + brightCyan: 79.1 + brightWhite: 57 diff --git a/themes/oslo-dark.yaml b/themes/oslo-dark.yaml new file mode 100644 index 00000000..fa53da81 --- /dev/null +++ b/themes/oslo-dark.yaml @@ -0,0 +1,49 @@ +name: "Oslo Dark" +source: + marketplace_id: "lazerai.oslo-dark" + version: "1.4.0" + installs: 27 + author: "Lazerai" + repo: "https://github.com/LAZERAI/oslo-dark" + url: "https://marketplace.visualstudio.com/items?itemName=lazerai.oslo-dark" +colors: + bg: "#1A1A1A" + fg: "#C8F0FA" + black: "#1A1A1A" + red: "#E8A0A0" + green: "#A0E8A0" + yellow: "#E8E8A0" + blue: "#A0A0E8" + magenta: "#E8A0E8" + cyan: "#A0E8E8" + white: "#E6F5FF" + brightBlack: "#3B5B78" + brightRed: "#F0B0B0" + brightGreen: "#B0F0B0" + brightYellow: "#F0F0B0" + brightBlue: "#B0B0F0" + brightMagenta: "#F0B0F0" + brightCyan: "#B0F0F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 92.3 + black: 0 + red: 59.8 + green: 80.9 + yellow: 89 + blue: 53.1 + magenta: 63.1 + cyan: 83.7 + white: 98.4 + brightBlack: 16.1 + brightRed: 67.4 + brightGreen: 86.8 + brightYellow: 94.2 + brightBlue: 61.4 + brightMagenta: 70.3 + brightCyan: 89.3 + brightWhite: 106.5 diff --git a/themes/osmoz-dark.yaml b/themes/osmoz-dark.yaml new file mode 100644 index 00000000..e17e4c40 --- /dev/null +++ b/themes/osmoz-dark.yaml @@ -0,0 +1,49 @@ +name: "Osmoz Dark" +source: + marketplace_id: "ArthurRasera.osmoz" + version: "1.1.1" + installs: 58 + author: "Arthur Rasera" + repo: "https://github.com/Raseraa0/osmoz-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ArthurRasera.osmoz" +colors: + bg: "#1E1A3A" + fg: "#B9B5CF" + black: "#1E1E1E" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D0D0D0" + brightBlack: "#666666" + brightRed: "#FF7B82" + brightGreen: "#B4F59E" + brightYellow: "#FFD98F" + brightBlue: "#82CFFF" + brightMagenta: "#E19EF5" + brightCyan: "#6FE7F7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 287 + contrast: + fg: 62 + black: 0 + red: 41.1 + green: 61.3 + yellow: 69.6 + blue: 53.7 + magenta: 44.2 + cyan: 53.6 + white: 76.1 + brightBlack: 21.1 + brightRed: 51.5 + brightGreen: 88.5 + brightYellow: 84.6 + brightBlue: 70.4 + brightMagenta: 61.4 + brightCyan: 80 + brightWhite: 105.9 diff --git a/themes/osx9.yaml b/themes/osx9.yaml new file mode 100644 index 00000000..c08a68f8 --- /dev/null +++ b/themes/osx9.yaml @@ -0,0 +1,49 @@ +name: "OSX9" +source: + marketplace_id: "novidash.classicplatinum" + version: "0.0.1" + installs: 277 + author: "novidash" + repo: "https://github.com/skeltonmod/OSX9VSCODE" + url: "https://marketplace.visualstudio.com/items?itemName=novidash.classicplatinum" +colors: + bg: "#D1DCF8" + fg: "#725482" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 269 + contrast: + fg: 61 + black: 85.5 + red: 53.4 + green: 28.7 + yellow: 37.4 + blue: 65.5 + magenta: 54 + cyan: 40.1 + white: 65.4 + brightBlack: 58.2 + brightRed: 53.4 + brightGreen: 20.4 + brightYellow: 20.4 + brightBlue: 65.5 + brightMagenta: 54 + brightCyan: 40.1 + brightWhite: 27.9 diff --git a/themes/otakon-contrast.yaml b/themes/otakon-contrast.yaml new file mode 100644 index 00000000..5f27337a --- /dev/null +++ b/themes/otakon-contrast.yaml @@ -0,0 +1,49 @@ +name: "otakon-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#171417" + fg: "#F9F3F9" + black: "#252025" + red: "#BA0E2E" + green: "#B1A6CA" + yellow: "#F6E6EB" + blue: "#E484B2" + magenta: "#CACBDD" + cyan: "#F0B9D4" + white: "#FFFFFF" + brightBlack: "#4E434E" + brightRed: "#F03E5F" + brightGreen: "#E9E6F0" + brightYellow: "#FFFFFF" + brightBlue: "#F6D8E6" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 100.3 + black: 0 + red: 20.7 + green: 56.2 + yellow: 93.3 + blue: 51.5 + magenta: 75 + cyan: 72.8 + white: 107.1 + brightBlack: 9.9 + brightRed: 37 + brightGreen: 91.7 + brightYellow: 107.1 + brightBlue: 87 + brightMagenta: 107.1 + brightCyan: 107.1 + brightWhite: 107.1 diff --git a/themes/otakon-light.yaml b/themes/otakon-light.yaml new file mode 100644 index 00000000..f440febd --- /dev/null +++ b/themes/otakon-light.yaml @@ -0,0 +1,49 @@ +name: "otakon-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#514B60" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#B1A6CA" + yellow: "#C6B3B9" + blue: "#E484B2" + magenta: "#A8A9BF" + cyan: "#F0B9D4" + white: "#5D566E" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#E9E6F0" + brightYellow: "#F2EDEF" + brightBlue: "#F6D8E6" + brightMagenta: "#E3E3EA" + brightCyan: "#FFFFFF" + brightWhite: "#827A97" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 88.7 + black: 0 + red: 80.3 + green: 45.1 + yellow: 38.5 + blue: 49.6 + magenta: 45.6 + cyan: 29.3 + white: 84.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 11.5 + brightYellow: 7.4 + brightBlue: 15.9 + brightMagenta: 13.8 + brightCyan: 0 + brightWhite: 67.8 diff --git a/themes/otakon.yaml b/themes/otakon.yaml new file mode 100644 index 00000000..d66e168c --- /dev/null +++ b/themes/otakon.yaml @@ -0,0 +1,49 @@ +name: "otakon" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#3F373F" + fg: "#F9F3F9" + black: "#4D434D" + red: "#BA0E2E" + green: "#B1A6CA" + yellow: "#F6E6EB" + blue: "#E484B2" + magenta: "#CACBDD" + cyan: "#F0B9D4" + white: "#FFFFFF" + brightBlack: "#756775" + brightRed: "#F03E5F" + brightGreen: "#E9E6F0" + brightYellow: "#FFFFFF" + brightBlue: "#F6D8E6" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 326 + contrast: + fg: 93.4 + black: 0 + red: 13.8 + green: 49.2 + yellow: 86.4 + blue: 44.6 + magenta: 68 + cyan: 65.8 + white: 100.2 + brightBlack: 17.6 + brightRed: 30.1 + brightGreen: 84.8 + brightYellow: 100.2 + brightBlue: 80.1 + brightMagenta: 100.2 + brightCyan: 100.2 + brightWhite: 100.2 diff --git a/themes/outrun-contrast.yaml b/themes/outrun-contrast.yaml new file mode 100644 index 00000000..bd36ad50 --- /dev/null +++ b/themes/outrun-contrast.yaml @@ -0,0 +1,49 @@ +name: "Outrun Contrast" +source: + marketplace_id: "samrapdev.outrun" + version: "0.2.2" + installs: 109346 + author: "samrapdev" + repo: "https://github.com/samrap/outrun-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=samrapdev.outrun" +colors: + bg: "#0C0A20" + fg: "#F8F8F2" + black: "#283034" + red: "#FF0081" + green: "#62A9CF" + yellow: "#F4B80C" + blue: "#42C6FF" + magenta: "#FF2AFC" + cyan: "#42C6FF" + white: "#D9E0E9" + brightBlack: "#435056" + brightRed: "#FF0081" + brightGreen: "#ADD0E5" + brightYellow: "#F4B80C" + brightBlue: "#42C6FF" + brightMagenta: "#FF2AFC" + brightCyan: "#42C6FF" + brightWhite: "#F4F6F9" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 102.7 + black: 0 + red: 39 + green: 51.1 + yellow: 69.4 + blue: 65 + magenta: 46.7 + cyan: 65 + white: 87.1 + brightBlack: 13.1 + brightRed: 39 + brightGreen: 74.7 + brightYellow: 69.4 + brightBlue: 65 + brightMagenta: 46.7 + brightCyan: 65 + brightWhite: 101.5 diff --git a/themes/outrun-dark.yaml b/themes/outrun-dark.yaml new file mode 100644 index 00000000..89c47666 --- /dev/null +++ b/themes/outrun-dark.yaml @@ -0,0 +1,49 @@ +name: "Outrun Dark" +source: + marketplace_id: "hhochart29.outrun" + version: "1.1.3" + installs: 6264 + author: "hhochart29" + repo: "https://github.com/hhochart29/outrun-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=hhochart29.outrun" +colors: + bg: "#161130" + fg: "#EEEEEE" + black: "#283034" + red: "#FF2E97" + green: "#62A9CF" + yellow: "#FFD400" + blue: "#42C6FF" + magenta: "#FF2AFC" + cyan: "#42C6FF" + white: "#D9E0E9" + brightBlack: "#435056" + brightRed: "#FF2E97" + brightGreen: "#ADD0E5" + brightYellow: "#FFD400" + brightBlue: "#42C6FF" + brightMagenta: "#FF2AFC" + brightCyan: "#42C6FF" + brightWhite: "#F4F6F9" +meta: + mode: "dark" + accent: "pink" + hue: 287 + contrast: + fg: 95.8 + black: 0 + red: 40.6 + green: 50.4 + yellow: 82 + blue: 64.3 + magenta: 46.1 + cyan: 64.3 + white: 86.4 + brightBlack: 12.5 + brightRed: 40.6 + brightGreen: 74.1 + brightYellow: 82 + brightBlue: 64.3 + brightMagenta: 46.1 + brightCyan: 64.3 + brightWhite: 100.8 diff --git a/themes/overflow-contrast.yaml b/themes/overflow-contrast.yaml new file mode 100644 index 00000000..ab9a94fd --- /dev/null +++ b/themes/overflow-contrast.yaml @@ -0,0 +1,49 @@ +name: "overflow-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#14181C" + fg: "#AEB9C4" + black: "#1F252B" + red: "#BA0E2E" + green: "#FE532C" + yellow: "#B0CA48" + blue: "#1F9AA8" + magenta: "#FE532C" + cyan: "#B0CA48" + white: "#BDC6CF" + brightBlack: "#3F4B57" + brightRed: "#F03E5F" + brightGreen: "#FEA692" + brightYellow: "#D2E197" + brightBlue: "#4FD0DE" + brightMagenta: "#FEA692" + brightCyan: "#D2E197" + brightWhite: "#E9ECEF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 62.7 + black: 0 + red: 20.4 + green: 42.3 + yellow: 67 + blue: 40 + magenta: 42.3 + cyan: 67 + white: 70.4 + brightBlack: 10.8 + brightRed: 36.7 + brightGreen: 65.6 + brightYellow: 82.9 + brightBlue: 67.3 + brightMagenta: 65.6 + brightCyan: 82.9 + brightWhite: 94.1 diff --git a/themes/overflow-light.yaml b/themes/overflow-light.yaml new file mode 100644 index 00000000..48abbbf3 --- /dev/null +++ b/themes/overflow-light.yaml @@ -0,0 +1,49 @@ +name: "overflow-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#3E4956" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#FE532C" + yellow: "#B0CA48" + blue: "#1F9AA8" + magenta: "#FE532C" + cyan: "#B0CA48" + white: "#495665" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FEA692" + brightYellow: "#D2E197" + brightBlue: "#4FD0DE" + brightMagenta: "#FEA692" + brightCyan: "#D2E197" + brightWhite: "#697B91" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 91.1 + black: 0 + red: 80.3 + green: 58.4 + yellow: 34.5 + blue: 60.6 + magenta: 58.4 + cyan: 34.5 + white: 86 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 35.8 + brightYellow: 19.5 + brightBlue: 34.2 + brightMagenta: 35.8 + brightCyan: 19.5 + brightWhite: 70 diff --git a/themes/overflow.yaml b/themes/overflow.yaml new file mode 100644 index 00000000..9b7f67bf --- /dev/null +++ b/themes/overflow.yaml @@ -0,0 +1,49 @@ +name: "overflow" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#252C33" + fg: "#AEB9C4" + black: "#303942" + red: "#BA0E2E" + green: "#FE532C" + yellow: "#B0CA48" + blue: "#1F9AA8" + magenta: "#FE532C" + cyan: "#B0CA48" + white: "#BDC6CF" + brightBlack: "#505F6E" + brightRed: "#F03E5F" + brightGreen: "#FEA692" + brightYellow: "#D2E197" + brightBlue: "#4FD0DE" + brightMagenta: "#FEA692" + brightCyan: "#D2E197" + brightWhite: "#E9ECEF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 59.7 + black: 0 + red: 17.4 + green: 39.3 + yellow: 63.9 + blue: 37 + magenta: 39.3 + cyan: 63.9 + white: 67.3 + brightBlack: 15.4 + brightRed: 33.7 + brightGreen: 62.6 + brightYellow: 79.9 + brightBlue: 64.3 + brightMagenta: 62.6 + brightCyan: 79.9 + brightWhite: 91.1 diff --git a/themes/overload.yaml b/themes/overload.yaml new file mode 100644 index 00000000..44fcc12b --- /dev/null +++ b/themes/overload.yaml @@ -0,0 +1,49 @@ +name: "overload" +source: + marketplace_id: "0xp.overload" + version: "1.1.8" + installs: 311 + author: "0xp" + repo: "https://github.com/panukettu/vscode-overload" + url: "https://marketplace.visualstudio.com/items?itemName=0xp.overload" +colors: + bg: "#121212" + fg: "#BFBDB6" + black: "#11151C" + red: "#EA6C73" + green: "#00FFAA" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#47FFC2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 66.3 + black: 0 + red: 44.5 + green: 88.1 + yellow: 67 + blue: 61 + magenta: 61.1 + cyan: 78.3 + white: 72.1 + brightBlack: 23.3 + brightRed: 47 + brightGreen: 73.7 + brightYellow: 70 + brightBlue: 63.8 + brightMagenta: 63.8 + brightCyan: 89.7 + brightWhite: 107.3 diff --git a/themes/overnight-italic.yaml b/themes/overnight-italic.yaml new file mode 100644 index 00000000..d4e817b9 --- /dev/null +++ b/themes/overnight-italic.yaml @@ -0,0 +1,49 @@ +name: "Overnight Italic" +source: + marketplace_id: "cev.overnight" + version: "1.8.4" + installs: 25654 + author: "cev" + repo: "https://github.com/cevr/overnight" + url: "https://marketplace.visualstudio.com/items?itemName=cev.overnight" +colors: + bg: "#0E1729" + fg: "#D6D9E0" + black: "#2E384D" + red: "#F87086" + green: "#BBD99E" + yellow: "#ECC48D" + blue: "#8EACE3" + magenta: "#C792EA" + cyan: "#92D8E6" + white: "#D6D9E0" + brightBlack: "#3D485F" + brightRed: "#FFB3B3" + brightGreen: "#C9E2AF" + brightYellow: "#ECC48D" + brightBlue: "#ACD1F5" + brightMagenta: "#CCB3FF" + brightCyan: "#A5E0EC" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "red" + hue: 263 + contrast: + fg: 82.4 + black: 0 + red: 48.4 + green: 76.7 + yellow: 73.6 + blue: 55.9 + magenta: 53.7 + cyan: 75.2 + white: 82.4 + brightBlack: 10.2 + brightRed: 71.4 + brightGreen: 82.9 + brightYellow: 73.6 + brightBlue: 75.2 + brightMagenta: 67.2 + brightCyan: 80.8 + brightWhite: 98.3 diff --git a/themes/owlet-default.yaml b/themes/owlet-default.yaml new file mode 100644 index 00000000..708e8afa --- /dev/null +++ b/themes/owlet-default.yaml @@ -0,0 +1,49 @@ +name: "Owlet (Default)" +source: + marketplace_id: "itsjonq.owlet" + version: "0.1.22" + installs: 10595 + author: "itsjonq" + repo: "https://github.com/itsjonq/owlet" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" +colors: + bg: "#1E222A" + fg: "#D6DEEB" + black: "#1E222A" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 264 + contrast: + fg: 83.8 + black: 0 + red: 37.9 + green: 65.9 + yellow: 72.3 + blue: 54.5 + magenta: 52.4 + cyan: 58.3 + white: 105.5 + brightBlack: 14.2 + brightRed: 37.9 + brightGreen: 65.9 + brightYellow: 92.3 + brightBlue: 54.5 + brightMagenta: 52.4 + brightCyan: 72.6 + brightWhite: 105.5 diff --git a/themes/owlet-material.yaml b/themes/owlet-material.yaml new file mode 100644 index 00000000..5109227a --- /dev/null +++ b/themes/owlet-material.yaml @@ -0,0 +1,49 @@ +name: "Owlet (Material)" +source: + marketplace_id: "itsjonq.owlet" + version: "0.1.22" + installs: 10595 + author: "itsjonq" + repo: "https://github.com/itsjonq/owlet" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" +colors: + bg: "#273237" + fg: "#D6DEEB" + black: "#273237" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 227 + contrast: + fg: 81 + black: 0 + red: 35.1 + green: 63.1 + yellow: 69.5 + blue: 51.7 + magenta: 49.6 + cyan: 55.5 + white: 102.7 + brightBlack: 11.4 + brightRed: 35.1 + brightGreen: 63.1 + brightYellow: 89.5 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 69.8 + brightWhite: 102.7 diff --git a/themes/owlet-mono.yaml b/themes/owlet-mono.yaml new file mode 100644 index 00000000..af666fd5 --- /dev/null +++ b/themes/owlet-mono.yaml @@ -0,0 +1,49 @@ +name: "Owlet (Mono)" +source: + marketplace_id: "itsjonq.owlet" + version: "0.1.22" + installs: 10595 + author: "itsjonq" + repo: "https://github.com/itsjonq/owlet" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" +colors: + bg: "#101010" + fg: "#EEEEEE" + black: "#101010" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 96.3 + black: 0 + red: 39.9 + green: 67.8 + yellow: 74.3 + blue: 56.5 + magenta: 54.3 + cyan: 60.3 + white: 107.4 + brightBlack: 16.2 + brightRed: 39.9 + brightGreen: 67.8 + brightYellow: 94.3 + brightBlue: 56.5 + brightMagenta: 54.3 + brightCyan: 74.6 + brightWhite: 107.4 diff --git a/themes/owlet-outrun.yaml b/themes/owlet-outrun.yaml new file mode 100644 index 00000000..e8c2437d --- /dev/null +++ b/themes/owlet-outrun.yaml @@ -0,0 +1,49 @@ +name: "Owlet (Outrun)" +source: + marketplace_id: "itsjonq.owlet" + version: "0.1.22" + installs: 10595 + author: "itsjonq" + repo: "https://github.com/itsjonq/owlet" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" +colors: + bg: "#0D0221" + fg: "#D6DEEB" + black: "#0D0221" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 296 + contrast: + fg: 86 + black: 0 + red: 40.1 + green: 68 + yellow: 74.5 + blue: 56.7 + magenta: 54.5 + cyan: 60.5 + white: 107.6 + brightBlack: 16.3 + brightRed: 40.1 + brightGreen: 68 + brightYellow: 94.5 + brightBlue: 56.7 + brightMagenta: 54.5 + brightCyan: 74.8 + brightWhite: 107.6 diff --git a/themes/owlet-solarized.yaml b/themes/owlet-solarized.yaml new file mode 100644 index 00000000..ec97e293 --- /dev/null +++ b/themes/owlet-solarized.yaml @@ -0,0 +1,49 @@ +name: "Owlet (Solarized)" +source: + marketplace_id: "itsjonq.owlet" + version: "0.1.22" + installs: 10595 + author: "itsjonq" + repo: "https://github.com/itsjonq/owlet" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" +colors: + bg: "#0D2B35" + fg: "#D6DEEB" + black: "#0D2B35" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 223 + contrast: + fg: 82.7 + black: 0 + red: 36.8 + green: 64.8 + yellow: 71.2 + blue: 53.5 + magenta: 51.3 + cyan: 57.2 + white: 104.4 + brightBlack: 13.1 + brightRed: 36.8 + brightGreen: 64.8 + brightYellow: 91.2 + brightBlue: 53.5 + brightMagenta: 51.3 + brightCyan: 71.5 + brightWhite: 104.4 diff --git a/themes/owokai-hard.yaml b/themes/owokai-hard.yaml new file mode 100644 index 00000000..a0e46d94 --- /dev/null +++ b/themes/owokai-hard.yaml @@ -0,0 +1,49 @@ +name: "Owokai Hard" +source: + marketplace_id: "fluffyfen.owokai-theme" + version: "1.0.3" + installs: 871 + author: "fluffyfen" + repo: "https://github.com/toiletbril/Owokai" + url: "https://marketplace.visualstudio.com/items?itemName=fluffyfen.owokai-theme" +colors: + bg: "#161618" + fg: "#DDDDDD" + black: "#333333" + red: "#CC241D" + green: "#98971A" + yellow: "#D7BC21" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#474038" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FAE62F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.1 + black: 0 + red: 25.3 + green: 43 + yellow: 65.8 + blue: 31.7 + magenta: 31.8 + cyan: 42 + white: 47.3 + brightBlack: 7.9 + brightRed: 40.2 + brightGreen: 61.3 + brightYellow: 89.3 + brightBlue: 48.7 + brightMagenta: 48 + brightCyan: 60.2 + brightWhite: 84.5 diff --git a/themes/owokai.yaml b/themes/owokai.yaml new file mode 100644 index 00000000..f5d02ed2 --- /dev/null +++ b/themes/owokai.yaml @@ -0,0 +1,49 @@ +name: "Owokai" +source: + marketplace_id: "fluffyfen.owokai-theme" + version: "1.0.3" + installs: 871 + author: "fluffyfen" + repo: "https://github.com/toiletbril/Owokai" + url: "https://marketplace.visualstudio.com/items?itemName=fluffyfen.owokai-theme" +colors: + bg: "#1C1C1B" + fg: "#EBE9D7" + black: "#1B1B1B" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.5 + black: 0 + red: 24.7 + green: 42.4 + yellow: 51.9 + blue: 31 + magenta: 31.1 + cyan: 41.4 + white: 46.7 + brightBlack: 35.8 + brightRed: 39.6 + brightGreen: 60.6 + brightYellow: 71.2 + brightBlue: 48.1 + brightMagenta: 47.4 + brightCyan: 59.6 + brightWhite: 83.8 diff --git a/themes/oxide.yaml b/themes/oxide.yaml new file mode 100644 index 00000000..bdba2f62 --- /dev/null +++ b/themes/oxide.yaml @@ -0,0 +1,49 @@ +name: "Oxide" +source: + marketplace_id: "oxidescheme.oxide-theme" + version: "0.1.1" + installs: 14 + author: "oxidescheme" + repo: "https://github.com/oxidescheme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=oxidescheme.oxide-theme" +colors: + bg: "#161616" + fg: "#CECECE" + black: "#262626" + red: "#ED756E" + green: "#5BB661" + yellow: "#C39900" + blue: "#3BA6F5" + magenta: "#968FF7" + cyan: "#00BAAA" + white: "#CECECE" + brightBlack: "#8F8F8F" + brightRed: "#FF9890" + brightGreen: "#7BD77F" + brightYellow: "#E3B831" + brightBlue: "#6FC6FF" + brightMagenta: "#B5B2FF" + brightCyan: "#00DCCA" + brightWhite: "#DEDEDE" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 76 + black: 0 + red: 46.8 + green: 51.7 + yellow: 49.4 + blue: 50 + magenta: 47.5 + cyan: 53.8 + white: 76 + brightBlack: 41.2 + brightRed: 61.3 + brightGreen: 69.5 + brightYellow: 66.1 + brightBlue: 66.3 + brightMagenta: 64.1 + brightCyan: 71 + brightWhite: 85.7 diff --git a/themes/oxocarbon-5.yaml b/themes/oxocarbon-5.yaml new file mode 100644 index 00000000..2d8f7b20 --- /dev/null +++ b/themes/oxocarbon-5.yaml @@ -0,0 +1,49 @@ +name: "oxocarbon-5" +source: + marketplace_id: "yrumad.oxocarbon-5" + version: "0.1.1" + installs: 1226 + author: "yrumad" + repo: "https://github.com/DaKili/oxocarbon-5" + url: "https://marketplace.visualstudio.com/items?itemName=yrumad.oxocarbon-5" +colors: + bg: "#FFFFFF" + fg: "#161616" + black: "#262626" + red: "#EE5396" + green: "#42BE65" + yellow: "#FDDC68" + blue: "#0F62FE" + magenta: "#BE95FF" + cyan: "#08BDBA" + white: "#F2F4F8" + brightBlack: "#525252" + brightRed: "#FF7EB6" + brightGreen: "#44E070" + brightYellow: "#FDE593" + brightBlue: "#33B1FF" + brightMagenta: "#FF7EB6" + brightCyan: "#3DDBD9" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 104.8 + black: 102 + red: 59.7 + green: 46.7 + yellow: 16.9 + blue: 73.6 + magenta: 46.2 + cyan: 45.4 + white: 0 + brightBlack: 87.2 + brightRed: 46 + brightGreen: 30.8 + brightYellow: 12.3 + brightBlue: 46.2 + brightMagenta: 46 + brightCyan: 30 + brightWhite: 0 diff --git a/themes/oxocarbon-compatibility.yaml b/themes/oxocarbon-compatibility.yaml new file mode 100644 index 00000000..c348d60c --- /dev/null +++ b/themes/oxocarbon-compatibility.yaml @@ -0,0 +1,49 @@ +name: "Oxocarbon (compatibility)" +source: + marketplace_id: "NyoomEngineering.oxocarbon-vscode" + version: "1.2.0" + installs: 1556 + author: "Nyoom Engineering" + repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" +colors: + bg: "#161616" + fg: "#F2F4F8" + black: "#161616" + red: "#78A9FF" + green: "#FF7EB6" + yellow: "#42BE65" + blue: "#08BDBA" + magenta: "#82CFFF" + cyan: "#33B1FF" + white: "#DDE1E6" + brightBlack: "#525252" + brightRed: "#78A9FF" + brightGreen: "#FF7EB6" + brightYellow: "#42BE65" + brightBlue: "#08BDBA" + brightMagenta: "#82CFFF" + brightCyan: "#33B1FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 99.6 + black: 0 + red: 54.9 + green: 55.2 + yellow: 54.4 + blue: 55.8 + magenta: 71.5 + cyan: 55 + white: 87.3 + brightBlack: 14 + brightRed: 54.9 + brightGreen: 55.2 + brightYellow: 54.4 + brightBlue: 55.8 + brightMagenta: 71.5 + brightCyan: 55 + brightWhite: 107 diff --git a/themes/oxocarbon-monochrom-compatibility.yaml b/themes/oxocarbon-monochrom-compatibility.yaml new file mode 100644 index 00000000..c4e43462 --- /dev/null +++ b/themes/oxocarbon-monochrom-compatibility.yaml @@ -0,0 +1,49 @@ +name: "Oxocarbon Monochrom (compatibility)" +source: + marketplace_id: "NyoomEngineering.oxocarbon-vscode" + version: "1.2.0" + installs: 1556 + author: "Nyoom Engineering" + repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" +colors: + bg: "#161616" + fg: "#F2F4F8" + black: "#161616" + red: "#A8A8A8" + green: "#A8A8A8" + yellow: "#A8A8A8" + blue: "#A8A8A8" + magenta: "#C6C6C6" + cyan: "#A8A8A8" + white: "#DDE1E6" + brightBlack: "#525252" + brightRed: "#A8A8A8" + brightGreen: "#A8A8A8" + brightYellow: "#A8A8A8" + brightBlue: "#A8A8A8" + brightMagenta: "#C6C6C6" + brightCyan: "#A8A8A8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 99.6 + black: 0 + red: 54.2 + green: 54.2 + yellow: 54.2 + blue: 54.2 + magenta: 71.2 + cyan: 54.2 + white: 87.3 + brightBlack: 14 + brightRed: 54.2 + brightGreen: 54.2 + brightYellow: 54.2 + brightBlue: 54.2 + brightMagenta: 71.2 + brightCyan: 54.2 + brightWhite: 107 diff --git a/themes/oxocarbon-oled-compatibility.yaml b/themes/oxocarbon-oled-compatibility.yaml new file mode 100644 index 00000000..efbaea17 --- /dev/null +++ b/themes/oxocarbon-oled-compatibility.yaml @@ -0,0 +1,49 @@ +name: "Oxocarbon OLED (compatibility)" +source: + marketplace_id: "NyoomEngineering.oxocarbon-vscode" + version: "1.2.0" + installs: 1556 + author: "Nyoom Engineering" + repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" +colors: + bg: "#000000" + fg: "#F2F4F8" + black: "#000000" + red: "#78A9FF" + green: "#FF7EB6" + yellow: "#42BE65" + blue: "#08BDBA" + magenta: "#82CFFF" + cyan: "#33B1FF" + white: "#DDE1E6" + brightBlack: "#393939" + brightRed: "#78A9FF" + brightGreen: "#FF7EB6" + brightYellow: "#42BE65" + brightBlue: "#08BDBA" + brightMagenta: "#82CFFF" + brightCyan: "#33B1FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 100.6 + black: 0 + red: 55.8 + green: 56.1 + yellow: 55.3 + blue: 56.7 + magenta: 72.4 + cyan: 55.9 + white: 88.2 + brightBlack: 0 + brightRed: 55.8 + brightGreen: 56.1 + brightYellow: 55.3 + brightBlue: 56.7 + brightMagenta: 72.4 + brightCyan: 55.9 + brightWhite: 107.9 diff --git a/themes/oxocarbon-oled-monochrom-compatibility.yaml b/themes/oxocarbon-oled-monochrom-compatibility.yaml new file mode 100644 index 00000000..93b71200 --- /dev/null +++ b/themes/oxocarbon-oled-monochrom-compatibility.yaml @@ -0,0 +1,49 @@ +name: "Oxocarbon OLED Monochrom (compatibility)" +source: + marketplace_id: "NyoomEngineering.oxocarbon-vscode" + version: "1.2.0" + installs: 1556 + author: "Nyoom Engineering" + repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" +colors: + bg: "#000000" + fg: "#F2F4F8" + black: "#000000" + red: "#A8A8A8" + green: "#A8A8A8" + yellow: "#A8A8A8" + blue: "#A8A8A8" + magenta: "#C6C6C6" + cyan: "#A8A8A8" + white: "#DDE1E6" + brightBlack: "#393939" + brightRed: "#A8A8A8" + brightGreen: "#A8A8A8" + brightYellow: "#A8A8A8" + brightBlue: "#A8A8A8" + brightMagenta: "#C6C6C6" + brightCyan: "#A8A8A8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 100.6 + black: 0 + red: 55.2 + green: 55.2 + yellow: 55.2 + blue: 55.2 + magenta: 72.1 + cyan: 55.2 + white: 88.2 + brightBlack: 0 + brightRed: 55.2 + brightGreen: 55.2 + brightYellow: 55.2 + brightBlue: 55.2 + brightMagenta: 72.1 + brightCyan: 55.2 + brightWhite: 107.9 diff --git a/themes/oxocarbon-oled-monochrom.yaml b/themes/oxocarbon-oled-monochrom.yaml new file mode 100644 index 00000000..b6d15e7a --- /dev/null +++ b/themes/oxocarbon-oled-monochrom.yaml @@ -0,0 +1,49 @@ +name: "Oxocarbon OLED Monochrom" +source: + marketplace_id: "NyoomEngineering.oxocarbon-vscode" + version: "1.2.0" + installs: 1556 + author: "Nyoom Engineering" + repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" +colors: + bg: "#FFFFFF" + fg: "#0D0B07" + black: "#FFFFFF" + red: "#575757" + green: "#575757" + yellow: "#575757" + blue: "#575757" + magenta: "#393939" + cyan: "#575757" + white: "#221E19" + brightBlack: "#C6C6C6" + brightRed: "#575757" + brightGreen: "#575757" + brightYellow: "#575757" + brightBlue: "#575757" + brightMagenta: "#393939" + brightCyan: "#575757" + brightWhite: "#000000" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 105.8 + black: 0 + red: 85.1 + green: 85.1 + yellow: 85.1 + blue: 85.1 + magenta: 96.6 + cyan: 85.1 + white: 103.5 + brightBlack: 30.7 + brightRed: 85.1 + brightGreen: 85.1 + brightYellow: 85.1 + brightBlue: 85.1 + brightMagenta: 96.6 + brightCyan: 85.1 + brightWhite: 106 diff --git a/themes/oxocarbon-port.yaml b/themes/oxocarbon-port.yaml new file mode 100644 index 00000000..f8c2a503 --- /dev/null +++ b/themes/oxocarbon-port.yaml @@ -0,0 +1,49 @@ +name: "oxocarbon-port" +source: + marketplace_id: "beamlnwza.oxocarbon-port" + version: "0.0.2" + installs: 1122 + author: "beamlnwza" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=beamlnwza.oxocarbon-port" +colors: + bg: "#161616" + fg: "#474747" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E2E2E2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 10 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 88.2 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/oxocarbonix-dark-theme.yaml b/themes/oxocarbonix-dark-theme.yaml new file mode 100644 index 00000000..5180b251 --- /dev/null +++ b/themes/oxocarbonix-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "oXocarbonix dark theme" +source: + marketplace_id: "RonitGandhi.oxocarbonix" + version: "2.3.1" + installs: 452 + author: "Ronit Gandhi" + repo: "https://github.com/ronit18/oXocarbonix-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=RonitGandhi.oxocarbonix" +colors: + bg: "#161616" + fg: "#E6E9EF" + black: "#161616" + red: "#FF7EB6" + green: "#BE95FF" + yellow: "#FA973B" + blue: "#75A5F8" + magenta: "#D093FF" + cyan: "#75A5F8" + white: "#FFFFFF" + brightBlack: "#E6E9EF" + brightRed: "#FF7EB6" + brightGreen: "#BE95FF" + brightYellow: "#FA973B" + brightBlue: "#FFFFFF" + brightMagenta: "#D093FF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 92.5 + black: 0 + red: 55.2 + green: 54.9 + yellow: 58.4 + blue: 52.6 + magenta: 56.9 + cyan: 52.6 + white: 107 + brightBlack: 92.5 + brightRed: 55.2 + brightGreen: 54.9 + brightYellow: 58.4 + brightBlue: 107 + brightMagenta: 56.9 + brightCyan: 107 + brightWhite: 107 diff --git a/themes/ozurac.yaml b/themes/ozurac.yaml new file mode 100644 index 00000000..a46d0aa9 --- /dev/null +++ b/themes/ozurac.yaml @@ -0,0 +1,49 @@ +name: "Ozurac" +source: + marketplace_id: "gb-bittencourt.ozurac" + version: "1.0.3" + installs: 30 + author: "gb-bittencourt" + repo: "https://github.com/gb-bittencourt/Ozurac" + url: "https://marketplace.visualstudio.com/items?itemName=gb-bittencourt.ozurac" +colors: + bg: "#121212" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.9 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.4 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/ozzy.yaml b/themes/ozzy.yaml new file mode 100644 index 00000000..84135964 --- /dev/null +++ b/themes/ozzy.yaml @@ -0,0 +1,49 @@ +name: "Ozzy" +source: + marketplace_id: "ozzy.ozzy" + version: "1.0.4" + installs: 660 + author: "ozzy" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ozzy.ozzy" +colors: + bg: "#252C34" + fg: "#EEFFFF" + black: "#2F2F2F" + red: "#FF4646" + green: "#00FF55" + yellow: "#FBD426" + blue: "#0099FF" + magenta: "#E625FF" + cyan: "#0369AD" + white: "#FEFEFE" + brightBlack: "#4B4B4B" + brightRed: "#FF5858" + brightGreen: "#76FF7B" + brightYellow: "#FFDE68" + brightBlue: "#97FFFF" + brightMagenta: "#FFA3F6" + brightCyan: "#00A7A7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 252 + contrast: + fg: 101.5 + black: 0 + red: 37.8 + green: 82.8 + yellow: 78.3 + blue: 41.8 + magenta: 37.5 + cyan: 19.4 + white: 103.1 + brightBlack: 8.2 + brightRed: 40.9 + brightGreen: 86 + brightYellow: 83.9 + brightBlue: 92.7 + brightMagenta: 66.1 + brightCyan: 42.1 + brightWhite: 103.8 diff --git a/themes/p-black.yaml b/themes/p-black.yaml new file mode 100644 index 00000000..e873c8b9 --- /dev/null +++ b/themes/p-black.yaml @@ -0,0 +1,49 @@ +name: "P. \ Black" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#000000" + fg: "#F5DCBC" + black: "#3D3735" + red: "#EB1B00" + green: "#00A824" + yellow: "#FFBB00" + blue: "#2867B9" + magenta: "#D31353" + cyan: "#0BC2A3" + white: "#F5DCBC" + brightBlack: "#504D47" + brightRed: "#FF604B" + brightGreen: "#18D356" + brightYellow: "#FFD037" + brightBlue: "#43A4FF" + brightMagenta: "#FF24B6" + brightCyan: "#2AFDDA" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 87.7 + black: 0 + red: 33 + green: 43.7 + yellow: 72.8 + blue: 24 + magenta: 27.8 + cyan: 58.1 + white: 87.7 + brightBlack: 13.2 + brightRed: 46.2 + brightGreen: 64.3 + brightYellow: 81.4 + brightBlue: 51.1 + brightMagenta: 42.3 + brightCyan: 89.6 + brightWhite: 95.1 diff --git a/themes/p-citadel.yaml b/themes/p-citadel.yaml new file mode 100644 index 00000000..8fd1195a --- /dev/null +++ b/themes/p-citadel.yaml @@ -0,0 +1,49 @@ +name: "P. \ Citadel" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#092630" + fg: "#E3B19D" + black: "#205263" + red: "#FF4128" + green: "#14AD35" + yellow: "#EBA31C" + blue: "#173FC3" + magenta: "#DB0F8D" + cyan: "#03D6DD" + white: "#E3B19D" + brightBlack: "#215769" + brightRed: "#FF5A44" + brightGreen: "#48EC7F" + brightYellow: "#FFD54C" + brightBlue: "#509FFF" + brightMagenta: "#FF46C8" + brightCyan: "#8FEBF2" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "pink" + hue: 224 + contrast: + fg: 63.7 + black: 10.3 + red: 38.3 + green: 43.5 + yellow: 57.7 + blue: 11.9 + magenta: 28.6 + cyan: 67.3 + white: 63.7 + brightBlack: 12 + brightRed: 42.4 + brightGreen: 75.8 + brightYellow: 81.1 + brightBlue: 47 + brightMagenta: 43.6 + brightCyan: 83 + brightWhite: 92.5 diff --git a/themes/p-crimson.yaml b/themes/p-crimson.yaml new file mode 100644 index 00000000..54e488c6 --- /dev/null +++ b/themes/p-crimson.yaml @@ -0,0 +1,49 @@ +name: "P. \ Crimson" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#FFFFFF" + fg: "#2B2B2B" + black: "#000000" + red: "#B61702" + green: "#009C22" + yellow: "#D68B01" + blue: "#1E5FB4" + magenta: "#D600C4" + cyan: "#0CB4B4" + white: "#C5C5C5" + brightBlack: "#3F3F3F" + brightRed: "#E43E28" + brightGreen: "#04B941" + brightYellow: "#FFB618" + brightBlue: "#2186E4" + brightMagenta: "#FF24E2" + brightCyan: "#12D6CC" + brightWhite: "#E4E4E4" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 100.9 + black: 106 + red: 81.2 + green: 63.1 + yellow: 53.2 + blue: 80.7 + magenta: 68.7 + cyan: 49.5 + white: 31.2 + brightBlack: 94.5 + brightRed: 67.4 + brightGreen: 50.3 + brightYellow: 31.8 + brightBlue: 64.5 + brightMagenta: 56.9 + brightCyan: 33.4 + brightWhite: 13.5 diff --git a/themes/p-dark.yaml b/themes/p-dark.yaml new file mode 100644 index 00000000..59d5cdd0 --- /dev/null +++ b/themes/p-dark.yaml @@ -0,0 +1,49 @@ +name: "P. \ Dark" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#111212" + fg: "#DFC6BA" + black: "#4E4846" + red: "#CE3521" + green: "#05A829" + yellow: "#D37D0D" + blue: "#276AC2" + magenta: "#E0024C" + cyan: "#04C4A4" + white: "#DFC6BA" + brightBlack: "#6E6B64" + brightRed: "#FF553E" + brightGreen: "#69CB73" + brightYellow: "#FFAE18" + brightBlue: "#50A9FD" + brightMagenta: "#FF3478" + brightCyan: "#28F5D3" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 74.4 + black: 11.1 + red: 27.7 + green: 43.2 + yellow: 43.3 + blue: 25 + magenta: 29.9 + cyan: 58.4 + white: 74.4 + brightBlack: 24.7 + brightRed: 43.5 + brightGreen: 62.8 + brightYellow: 67.4 + brightBlue: 52.8 + brightMagenta: 40.4 + brightCyan: 84.5 + brightWhite: 94.6 diff --git a/themes/p-eggplant.yaml b/themes/p-eggplant.yaml new file mode 100644 index 00000000..f654cf59 --- /dev/null +++ b/themes/p-eggplant.yaml @@ -0,0 +1,49 @@ +name: "P. \ Eggplant" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#1C1525" + fg: "#FFD9BB" + black: "#39353D" + red: "#CE3521" + green: "#05A829" + yellow: "#D37D0D" + blue: "#276AC2" + magenta: "#E0024C" + cyan: "#04C4A4" + white: "#CFB5A9" + brightBlack: "#4B4750" + brightRed: "#FF553E" + brightGreen: "#2DDD68" + brightYellow: "#FFB618" + brightBlue: "#50A9FD" + brightMagenta: "#FF3478" + brightCyan: "#28F5D3" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 304 + contrast: + fg: 86.7 + black: 0 + red: 27.1 + green: 42.6 + yellow: 42.7 + blue: 24.4 + magenta: 29.3 + cyan: 57.9 + white: 64.1 + brightBlack: 10.3 + brightRed: 42.9 + brightGreen: 68.6 + brightYellow: 69.8 + brightBlue: 52.2 + brightMagenta: 39.8 + brightCyan: 84 + brightWhite: 94 diff --git a/themes/p-emerald.yaml b/themes/p-emerald.yaml new file mode 100644 index 00000000..a4481ed4 --- /dev/null +++ b/themes/p-emerald.yaml @@ -0,0 +1,49 @@ +name: "P. \ Emerald" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#0A1A13" + fg: "#FAD6B9" + black: "#353D36" + red: "#CE3521" + green: "#05A829" + yellow: "#D3840D" + blue: "#3A76C4" + magenta: "#E0024C" + cyan: "#34B6A0" + white: "#CFB5A9" + brightBlack: "#47504A" + brightRed: "#FF553E" + brightGreen: "#2DDD68" + brightYellow: "#FFB618" + brightBlue: "#65B4FF" + brightMagenta: "#FF3478" + brightCyan: "#69F7DF" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 164 + contrast: + fg: 84.7 + black: 0 + red: 27.2 + green: 42.7 + yellow: 44.9 + blue: 29 + magenta: 29.4 + cyan: 51.9 + white: 64.2 + brightBlack: 12.3 + brightRed: 43 + brightGreen: 68.7 + brightYellow: 69.9 + brightBlue: 57.9 + brightMagenta: 39.9 + brightCyan: 87.4 + brightWhite: 94.1 diff --git a/themes/p-eucalyptus.yaml b/themes/p-eucalyptus.yaml new file mode 100644 index 00000000..d21bdce1 --- /dev/null +++ b/themes/p-eucalyptus.yaml @@ -0,0 +1,49 @@ +name: "P. \ Eucalyptus" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#21241E" + fg: "#E7B07D" + black: "#3D3735" + red: "#AD5145" + green: "#6EA03D" + yellow: "#B88F51" + blue: "#5477A5" + magenta: "#AE5975" + cyan: "#549878" + white: "#FAE5D6" + brightBlack: "#504D47" + brightRed: "#E35E4D" + brightGreen: "#8AC255" + brightYellow: "#E8B455" + brightBlue: "#6FB2D1" + brightMagenta: "#D66C8F" + brightCyan: "#7BC09D" + brightWhite: "#FFF2EC" +meta: + mode: "dark" + accent: "orange" + hue: 129 + contrast: + fg: 63.1 + black: 0 + red: 23.9 + green: 41.3 + yellow: 43.1 + blue: 27.2 + magenta: 26.9 + cyan: 37.5 + white: 90.8 + brightBlack: 10.6 + brightRed: 37.2 + brightGreen: 58.4 + brightYellow: 64.1 + brightBlue: 53.4 + brightMagenta: 39.4 + brightCyan: 58 + brightWhite: 98.3 diff --git a/themes/p-floresta.yaml b/themes/p-floresta.yaml new file mode 100644 index 00000000..3c59e20e --- /dev/null +++ b/themes/p-floresta.yaml @@ -0,0 +1,49 @@ +name: "P. \ Floresta" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#07171A" + fg: "#FFD4C7" + black: "#26362F" + red: "#EC1C00" + green: "#068020" + yellow: "#D3940D" + blue: "#3465A5" + magenta: "#C40B71" + cyan: "#08A087" + white: "#FFD4C7" + brightBlack: "#3E4E45" + brightRed: "#FF6551" + brightGreen: "#24CA5B" + brightYellow: "#FFCA37" + brightBlue: "#3191EB" + brightMagenta: "#FF24BD" + brightCyan: "#2AE6C6" + brightWhite: "#FFFBF9" +meta: + mode: "dark" + accent: "pink" + hue: 211 + contrast: + fg: 85.4 + black: 0 + red: 32.4 + green: 26.3 + yellow: 50.2 + blue: 21.6 + magenta: 24.2 + cyan: 41.2 + white: 85.4 + brightBlack: 11.3 + brightRed: 46.5 + brightGreen: 59.3 + brightYellow: 78.1 + brightBlue: 41.1 + brightMagenta: 41.8 + brightCyan: 76.1 + brightWhite: 104.9 diff --git a/themes/p-frost.yaml b/themes/p-frost.yaml new file mode 100644 index 00000000..801a1019 --- /dev/null +++ b/themes/p-frost.yaml @@ -0,0 +1,49 @@ +name: "P. \ Frost" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#FFFFFF" + fg: "#186554" + black: "#000000" + red: "#B61702" + green: "#068020" + yellow: "#D37D0D" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#A5B4AB" + brightBlack: "#4A574D" + brightRed: "#D43E2A" + brightGreen: "#1B9E47" + brightYellow: "#FF9B18" + brightBlue: "#3A89D3" + brightMagenta: "#FF246D" + brightCyan: "#1BDFBE" + brightWhite: "#C7CECB" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 83.7 + black: 106 + red: 81.2 + green: 74.5 + yellow: 57.9 + blue: 79.3 + magenta: 77.8 + cyan: 59.6 + white: 42.5 + brightBlack: 86.4 + brightRed: 71 + brightGreen: 61.8 + brightYellow: 40.9 + brightBlue: 64.1 + brightMagenta: 62.1 + brightCyan: 29.8 + brightWhite: 27.1 diff --git a/themes/p-genmaicha.yaml b/themes/p-genmaicha.yaml new file mode 100644 index 00000000..28c12b8d --- /dev/null +++ b/themes/p-genmaicha.yaml @@ -0,0 +1,49 @@ +name: "P. \ Genmaicha" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#F8DCA8" + fg: "#232729" + black: "#232729" + red: "#B61702" + green: "#009C22" + yellow: "#D68B01" + blue: "#1E5FB4" + magenta: "#D600C4" + cyan: "#0CB4B4" + white: "#C5C5C5" + brightBlack: "#3F3F3F" + brightRed: "#E43E28" + brightGreen: "#04B941" + brightYellow: "#FFB618" + brightBlue: "#2186E4" + brightMagenta: "#FF24E2" + brightCyan: "#12D6CC" + brightWhite: "#E4E4E4" +meta: + mode: "light" + accent: "pink" + hue: 83 + contrast: + fg: 83.3 + black: 83.3 + red: 62.5 + green: 44.5 + yellow: 34.6 + blue: 62.1 + magenta: 50.1 + cyan: 30.9 + white: 12.6 + brightBlack: 75.8 + brightRed: 48.8 + brightGreen: 31.7 + brightYellow: 13.2 + brightBlue: 45.9 + brightMagenta: 38.3 + brightCyan: 14.8 + brightWhite: 0 diff --git a/themes/p-grizzly.yaml b/themes/p-grizzly.yaml new file mode 100644 index 00000000..6334cc3a --- /dev/null +++ b/themes/p-grizzly.yaml @@ -0,0 +1,49 @@ +name: "P. \ Grizzly" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#201612" + fg: "#F1BC94" + black: "#3C312D" + red: "#DA2811" + green: "#399227" + yellow: "#C98621" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#F1BC94" + brightBlack: "#4B4138" + brightRed: "#FD4931" + brightGreen: "#26BE21" + brightYellow: "#FFB618" + brightBlue: "#3A89D3" + brightMagenta: "#FF3C7D" + brightCyan: "#1BDFBE" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 43 + contrast: + fg: 71.4 + black: 0 + red: 28.5 + green: 34 + yellow: 43.7 + blue: 21.3 + magenta: 22.9 + cyan: 40.9 + white: 71.4 + brightBlack: 8.2 + brightRed: 40.5 + brightGreen: 52.8 + brightYellow: 69.7 + brightBlue: 36.4 + brightMagenta: 40.7 + brightCyan: 71.9 + brightWhite: 94 diff --git a/themes/p-haze.yaml b/themes/p-haze.yaml new file mode 100644 index 00000000..75402cad --- /dev/null +++ b/themes/p-haze.yaml @@ -0,0 +1,49 @@ +name: "P. \ Haze" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#5B405B" + fg: "#E4CBC4" + black: "#745874" + red: "#D66B5D" + green: "#3FD15E" + yellow: "#FAC534" + blue: "#4F8CDB" + magenta: "#FF58BF" + cyan: "#30E9CA" + white: "#FFFBFA" + brightBlack: "#8D748D" + brightRed: "#FF8D7E" + brightGreen: "#90FCB4" + brightYellow: "#FFD885" + brightBlue: "#6FB7FA" + brightMagenta: "#FF84EB" + brightCyan: "#55FFE3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 327 + contrast: + fg: 65.4 + black: 8.2 + red: 27.5 + green: 51.3 + yellow: 63.2 + blue: 27.2 + magenta: 35.6 + cyan: 65.9 + white: 92.9 + brightBlack: 20 + brightRed: 45.5 + brightGreen: 78.8 + brightYellow: 73.1 + brightBlue: 47.7 + brightMagenta: 47.6 + brightCyan: 79.2 + brightWhite: 95 diff --git a/themes/p-inkstone.yaml b/themes/p-inkstone.yaml new file mode 100644 index 00000000..af6efd7e --- /dev/null +++ b/themes/p-inkstone.yaml @@ -0,0 +1,49 @@ +name: "P. \ Inkstone" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#111B22" + fg: "#F5D8C3" + black: "#353D3D" + red: "#CE3521" + green: "#05A829" + yellow: "#D39E0D" + blue: "#276AC2" + magenta: "#E0024C" + cyan: "#04C4A4" + white: "#CFB5A9" + brightBlack: "#475050" + brightRed: "#FF553E" + brightGreen: "#2DDD68" + brightYellow: "#FFC918" + brightBlue: "#50A9FD" + brightMagenta: "#FF3478" + brightCyan: "#28F5D3" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 239 + contrast: + fg: 84.8 + black: 0 + red: 26.9 + green: 42.4 + yellow: 53.2 + blue: 24.2 + magenta: 29.1 + cyan: 57.7 + white: 63.9 + brightBlack: 12.2 + brightRed: 42.7 + brightGreen: 68.5 + brightYellow: 77 + brightBlue: 52.1 + brightMagenta: 39.6 + brightCyan: 83.8 + brightWhite: 93.8 diff --git a/themes/p-leipzig.yaml b/themes/p-leipzig.yaml new file mode 100644 index 00000000..c4d6cf06 --- /dev/null +++ b/themes/p-leipzig.yaml @@ -0,0 +1,49 @@ +name: "P. \ Leipzig" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#221B1D" + fg: "#E7C4A3" + black: "#3D3735" + red: "#BE4939" + green: "#2A9842" + yellow: "#D39E0D" + blue: "#4C6F9D" + magenta: "#C63263" + cyan: "#39B7A2" + white: "#CFB5A9" + brightBlack: "#504A47" + brightRed: "#EF5C48" + brightGreen: "#53C666" + brightYellow: "#FFC918" + brightBlue: "#6FACE5" + brightMagenta: "#F15488" + brightCyan: "#4DEDD2" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 359 + contrast: + fg: 72.9 + black: 0 + red: 26.3 + green: 35.8 + yellow: 52.9 + blue: 24.6 + magenta: 25.5 + cyan: 51.9 + white: 63.6 + brightBlack: 10.7 + brightRed: 40.2 + brightGreen: 58 + brightYellow: 76.7 + brightBlue: 53 + brightMagenta: 40.6 + brightCyan: 80.1 + brightWhite: 93.4 diff --git a/themes/p-light.yaml b/themes/p-light.yaml new file mode 100644 index 00000000..a20a893a --- /dev/null +++ b/themes/p-light.yaml @@ -0,0 +1,49 @@ +name: "P. \ Light" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#F3E7E2" + fg: "#423926" + black: "#000000" + red: "#B61702" + green: "#068020" + yellow: "#EE8F13" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#CFB5A9" + brightBlack: "#5C5442" + brightRed: "#D43E2A" + brightGreen: "#1B9E47" + brightYellow: "#FFC936" + brightBlue: "#3A89D3" + brightMagenta: "#FF246D" + brightCyan: "#1BDFBE" + brightWhite: "#FAE8E0" +meta: + mode: "light" + accent: "red" + hue: 44 + contrast: + fg: 83.4 + black: 93.2 + red: 68.3 + green: 61.7 + yellow: 34.9 + blue: 66.5 + magenta: 64.9 + cyan: 46.8 + white: 24.3 + brightBlack: 73.2 + brightRed: 58.1 + brightGreen: 49 + brightYellow: 11.8 + brightBlue: 51.2 + brightMagenta: 49.3 + brightCyan: 16.9 + brightWhite: 0 diff --git a/themes/p-machine.yaml b/themes/p-machine.yaml new file mode 100644 index 00000000..6adc253c --- /dev/null +++ b/themes/p-machine.yaml @@ -0,0 +1,49 @@ +name: "P. \ Machine" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#393837" + fg: "#F7DBC5" + black: "#747270" + red: "#E9523E" + green: "#25AC42" + yellow: "#EB780D" + blue: "#5595BD" + magenta: "#E02D69" + cyan: "#46B9B9" + white: "#FAE5D6" + brightBlack: "#868686" + brightRed: "#FF8170" + brightGreen: "#2FEC6E" + brightYellow: "#FFAF37" + brightBlue: "#73BCF8" + brightMagenta: "#FF6D9E" + brightCyan: "#7BE6E6" + brightWhite: "#FFF2EC" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 80.5 + black: 21.1 + red: 31.2 + green: 38.6 + yellow: 39.7 + blue: 34.5 + magenta: 25.3 + cyan: 48.5 + white: 86 + brightBlack: 30.3 + brightRed: 47.3 + brightGreen: 70.2 + brightYellow: 61.1 + brightBlue: 55.4 + brightMagenta: 43.7 + brightCyan: 74 + brightWhite: 93.6 diff --git a/themes/p-mist.yaml b/themes/p-mist.yaml new file mode 100644 index 00000000..be7ca668 --- /dev/null +++ b/themes/p-mist.yaml @@ -0,0 +1,49 @@ +name: "P. \ Mist" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#3A4444" + fg: "#FFE3CC" + black: "#606D6D" + red: "#FA5C47" + green: "#25AC42" + yellow: "#CCA63C" + blue: "#4779BB" + magenta: "#E02D69" + cyan: "#46B9B9" + white: "#FAE5D6" + brightBlack: "#899494" + brightRed: "#FD8677" + brightGreen: "#2FEC6E" + brightYellow: "#FFDD47" + brightBlue: "#68B6FF" + brightMagenta: "#FF6D9E" + brightCyan: "#7BE6E6" + brightWhite: "#FFF2EC" +meta: + mode: "dark" + accent: "green" + hue: 197 + contrast: + fg: 82.4 + black: 14.5 + red: 33.8 + green: 35.5 + yellow: 46.2 + blue: 20.6 + magenta: 22.2 + cyan: 45.4 + white: 82.9 + brightBlack: 33 + brightRed: 45.3 + brightGreen: 67.1 + brightYellow: 76.7 + brightBlue: 49.5 + brightMagenta: 40.6 + brightCyan: 70.9 + brightWhite: 90.5 diff --git a/themes/p-neptune.yaml b/themes/p-neptune.yaml new file mode 100644 index 00000000..0bd28a89 --- /dev/null +++ b/themes/p-neptune.yaml @@ -0,0 +1,49 @@ +name: "P. \ Neptune" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#070C25" + fg: "#FDC0BE" + black: "#242334" + red: "#E72006" + green: "#068020" + yellow: "#D37D0D" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#CFA9BB" + brightBlack: "#444367" + brightRed: "#F7614D" + brightGreen: "#1B9E47" + brightYellow: "#FF9B18" + brightBlue: "#3A89D3" + brightMagenta: "#FF246D" + brightCyan: "#1BDFBE" + brightWhite: "#FAE0E8" +meta: + mode: "dark" + accent: "red" + hue: 271 + contrast: + fg: 77.1 + black: 0 + red: 31.8 + green: 26.8 + yellow: 43.4 + blue: 22.1 + magenta: 23.6 + cyan: 41.7 + white: 61 + brightBlack: 10.4 + brightRed: 44.3 + brightGreen: 39.4 + brightYellow: 61 + brightBlue: 37.2 + brightMagenta: 39.1 + brightCyan: 72.6 + brightWhite: 91.5 diff --git a/themes/p-nk.yaml b/themes/p-nk.yaml new file mode 100644 index 00000000..225e9016 --- /dev/null +++ b/themes/p-nk.yaml @@ -0,0 +1,49 @@ +name: "p!nk" +source: + marketplace_id: "mochi.yumekawa-theme" + version: "0.0.1" + installs: 49 + author: "mochi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mochi.yumekawa-theme" +colors: + bg: "#141414" + fg: "#BABABA" + black: "#686868" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#969696" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 64.4 + black: 23.2 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 44.9 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/p-ornithopter.yaml b/themes/p-ornithopter.yaml new file mode 100644 index 00000000..9b5cdf17 --- /dev/null +++ b/themes/p-ornithopter.yaml @@ -0,0 +1,49 @@ +name: "P. \ Ornithopter" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#3D3028" + fg: "#F5DCBC" + black: "#55453B" + red: "#E74935" + green: "#98BD5C" + yellow: "#EF951E" + blue: "#8EB7CA" + magenta: "#CA405E" + cyan: "#78C0B4" + white: "#F5DCBC" + brightBlack: "#726054" + brightRed: "#FF7562" + brightGreen: "#C1E954" + brightYellow: "#FFC31E" + brightBlue: "#67D7DB" + brightMagenta: "#F85E91" + brightCyan: "#98FCD6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 53 + contrast: + fg: 81.9 + black: 0 + red: 30.8 + green: 54.3 + yellow: 50.6 + blue: 54.3 + magenta: 23.9 + cyan: 55.5 + white: 81.9 + brightBlack: 16.2 + brightRed: 45.5 + brightGreen: 78.7 + brightYellow: 70.2 + brightBlue: 66.7 + brightMagenta: 40.2 + brightCyan: 87.7 + brightWhite: 102.1 diff --git a/themes/p-ox.yaml b/themes/p-ox.yaml new file mode 100644 index 00000000..67333ff5 --- /dev/null +++ b/themes/p-ox.yaml @@ -0,0 +1,49 @@ +name: "P. \ Ox" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#1F0C0F" + fg: "#ECAF87" + black: "#332726" + red: "#BC1600" + green: "#39A150" + yellow: "#D39E0D" + blue: "#4075A7" + magenta: "#D0245E" + cyan: "#29AD97" + white: "#CFB5A9" + brightBlack: "#4D3232" + brightRed: "#FF2E13" + brightGreen: "#73C84C" + brightYellow: "#FFC918" + brightBlue: "#62B2E4" + brightMagenta: "#EF4980" + brightCyan: "#60DEC9" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "orange" + hue: 11 + contrast: + fg: 65.8 + black: 0 + red: 21.3 + green: 41.2 + yellow: 53.9 + blue: 27.5 + magenta: 27.5 + cyan: 47.8 + white: 64.6 + brightBlack: 0 + brightRed: 38.4 + brightGreen: 61.3 + brightYellow: 77.7 + brightBlue: 55.7 + brightMagenta: 39.3 + brightCyan: 74.1 + brightWhite: 94.5 diff --git a/themes/p-terabyte.yaml b/themes/p-terabyte.yaml new file mode 100644 index 00000000..3586d4fd --- /dev/null +++ b/themes/p-terabyte.yaml @@ -0,0 +1,49 @@ +name: "P. \ Terabyte" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#0B1A1A" + fg: "#E6D4B2" + black: "#243D36" + red: "#A94133" + green: "#3BCE16" + yellow: "#B47D36" + blue: "#4A89AD" + magenta: "#CB3E43" + cyan: "#6CFFBD" + white: "#E8BFA1" + brightBlack: "#406662" + brightRed: "#E46857" + brightGreen: "#8FE560" + brightYellow: "#FFCB2F" + brightBlue: "#68BBDB" + brightMagenta: "#F3777B" + brightCyan: "#C0FFE6" + brightWhite: "#FAECE0" +meta: + mode: "dark" + accent: "green" + hue: 196 + contrast: + fg: 80.5 + black: 0 + red: 21.4 + green: 60.8 + yellow: 37.8 + blue: 34.9 + magenta: 27.9 + cyan: 90.3 + white: 71.5 + brightBlack: 19.1 + brightRed: 41.2 + brightGreen: 76.9 + brightYellow: 78.2 + brightBlue: 58.8 + brightMagenta: 48.7 + brightCyan: 98 + brightWhite: 95.8 diff --git a/themes/p-ultramarine.yaml b/themes/p-ultramarine.yaml new file mode 100644 index 00000000..20625d53 --- /dev/null +++ b/themes/p-ultramarine.yaml @@ -0,0 +1,49 @@ +name: "P. \ Ultramarine" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#050809" + fg: "#FFFFFF" + black: "#454545" + red: "#CE3521" + green: "#24943C" + yellow: "#BB8F18" + blue: "#276AC2" + magenta: "#E0024C" + cyan: "#04BEC4" + white: "#FFFFFF" + brightBlack: "#707070" + brightRed: "#FF553E" + brightGreen: "#76DD61" + brightYellow: "#FFD518" + brightBlue: "#50A9FD" + brightMagenta: "#FF3478" + brightCyan: "#28F5EB" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 107.8 + black: 10.1 + red: 28.2 + green: 35.6 + yellow: 45.6 + blue: 25.5 + magenta: 30.4 + cyan: 57.5 + white: 107.8 + brightBlack: 27.3 + brightRed: 44 + brightGreen: 72.3 + brightYellow: 83.3 + brightBlue: 53.3 + brightMagenta: 40.9 + brightCyan: 86.1 + brightWhite: 95 diff --git a/themes/p-wolf.yaml b/themes/p-wolf.yaml new file mode 100644 index 00000000..a4bb25b1 --- /dev/null +++ b/themes/p-wolf.yaml @@ -0,0 +1,49 @@ +name: "P. \ Wolf" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#221F1E" + fg: "#DCBD9D" + black: "#473E3B" + red: "#B61702" + green: "#74AD45" + yellow: "#D37D0D" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#DCBD9D" + brightBlack: "#575249" + brightRed: "#D43E2A" + brightGreen: "#84C32B" + brightYellow: "#FF9B18" + brightBlue: "#3A89D3" + brightMagenta: "#FF246D" + brightCyan: "#1BDFBE" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 67.8 + black: 0 + red: 18.6 + green: 47.7 + yellow: 41.8 + blue: 20.4 + magenta: 22 + cyan: 40 + white: 67.8 + brightBlack: 13.1 + brightRed: 28.6 + brightGreen: 58.4 + brightYellow: 59.3 + brightBlue: 35.5 + brightMagenta: 37.5 + brightCyan: 70.9 + brightWhite: 93.1 diff --git a/themes/p-yesterday.yaml b/themes/p-yesterday.yaml new file mode 100644 index 00000000..8288adf1 --- /dev/null +++ b/themes/p-yesterday.yaml @@ -0,0 +1,49 @@ +name: "P. \ Yesterday" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3734 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#23282A" + fg: "#F1D5C0" + black: "#374344" + red: "#F04129" + green: "#25AC42" + yellow: "#CCA63C" + blue: "#4779BB" + magenta: "#E02D69" + cyan: "#46B9B9" + white: "#FAE5D6" + brightBlack: "#556661" + brightRed: "#FF634F" + brightGreen: "#2FEC6E" + brightYellow: "#FFDD47" + brightBlue: "#68B6FF" + brightMagenta: "#FF6D9E" + brightCyan: "#7BE6E6" + brightWhite: "#FFF2EC" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 80.9 + black: 0 + red: 34.1 + green: 42.7 + yellow: 53.4 + blue: 27.7 + magenta: 29.3 + cyan: 52.5 + white: 90.1 + brightBlack: 18.2 + brightRed: 43.6 + brightGreen: 74.3 + brightYellow: 83.8 + brightBlue: 56.7 + brightMagenta: 47.8 + brightCyan: 78 + brightWhite: 97.6 diff --git a/themes/p-zenith.yaml b/themes/p-zenith.yaml new file mode 100644 index 00000000..5d17f1ee --- /dev/null +++ b/themes/p-zenith.yaml @@ -0,0 +1,49 @@ +name: "P. \ Zenith" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74756 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#140D1A" + fg: "#F3B8BA" + black: "#331F38" + red: "#EC1C00" + green: "#016F33" + yellow: "#D3940D" + blue: "#3465A5" + magenta: "#C40B71" + cyan: "#0891A0" + white: "#B886FF" + brightBlack: "#483247" + brightRed: "#FF6551" + brightGreen: "#3AB4A6" + brightYellow: "#FFCA37" + brightBlue: "#3191EB" + brightMagenta: "#FF24BD" + brightCyan: "#2AE6C6" + brightWhite: "#FFFBF9" +meta: + mode: "dark" + accent: "pink" + hue: 308 + contrast: + fg: 72.1 + black: 0 + red: 32.8 + green: 20.6 + yellow: 50.6 + blue: 22 + magenta: 24.6 + cyan: 36.5 + white: 49.9 + brightBlack: 0 + brightRed: 46.9 + brightGreen: 52 + brightYellow: 78.5 + brightBlue: 41.4 + brightMagenta: 42.2 + brightCyan: 76.5 + brightWhite: 105.3 diff --git a/themes/p33t.yaml b/themes/p33t.yaml new file mode 100644 index 00000000..98cc2b74 --- /dev/null +++ b/themes/p33t.yaml @@ -0,0 +1,49 @@ +name: "P33t" +source: + marketplace_id: "P33t.p33t" + version: "0.0.2" + installs: 187 + author: "P33t" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=P33t.p33t" +colors: + bg: "#0A0A0A" + fg: "#D4D4D4" + black: "#3D3C3C" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.3 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/pace-dark.yaml b/themes/pace-dark.yaml new file mode 100644 index 00000000..13a30409 --- /dev/null +++ b/themes/pace-dark.yaml @@ -0,0 +1,49 @@ +name: "Pace Dark" +source: + marketplace_id: "fabian-hiller.pace-theme" + version: "0.3.0" + installs: 4449 + author: "Fabian Hiller" + repo: "https://github.com/fabian-hiller/vscode-pace-theme" + url: "https://marketplace.visualstudio.com/items?itemName=fabian-hiller.pace-theme" +colors: + bg: "#111827" + fg: "#94A3B8" + black: "#1E293B" + red: "#F87171" + green: "#34D399" + yellow: "#FDE68A" + blue: "#3B82F6" + magenta: "#C084FC" + cyan: "#2DD4BF" + white: "#CBD5E1" + brightBlack: "#64748B" + brightRed: "#EF4444" + brightGreen: "#34D399" + brightYellow: "#FDE68A" + brightBlue: "#3B82F6" + brightMagenta: "#86198F" + brightCyan: "#2DD4BF" + brightWhite: "#CBD5E1" +meta: + mode: "dark" + accent: "orange" + hue: 265 + contrast: + fg: 50.6 + black: 0 + red: 47.9 + green: 65 + yellow: 90.7 + blue: 36.6 + magenta: 49.5 + cyan: 66.8 + white: 79.2 + brightBlack: 27.5 + brightRed: 36.7 + brightGreen: 65 + brightYellow: 90.7 + brightBlue: 36.6 + brightMagenta: 13.9 + brightCyan: 66.8 + brightWhite: 79.2 diff --git a/themes/pace-light.yaml b/themes/pace-light.yaml new file mode 100644 index 00000000..b973033c --- /dev/null +++ b/themes/pace-light.yaml @@ -0,0 +1,49 @@ +name: "Pace Light" +source: + marketplace_id: "fabian-hiller.pace-theme" + version: "0.3.0" + installs: 4449 + author: "Fabian Hiller" + repo: "https://github.com/fabian-hiller/vscode-pace-theme" + url: "https://marketplace.visualstudio.com/items?itemName=fabian-hiller.pace-theme" +colors: + bg: "#FFFFFF" + fg: "#64748B" + black: "#E2E8F0" + red: "#B91C1C" + green: "#047857" + yellow: "#A16207" + blue: "#1D4ED8" + magenta: "#7E22CE" + cyan: "#0F766E" + white: "#334155" + brightBlack: "#94A3B8" + brightRed: "#DC2626" + brightGreen: "#047857" + brightYellow: "#A16207" + brightBlue: "#1D4ED8" + brightMagenta: "#E879F9" + brightCyan: "#0F766E" + brightWhite: "#334155" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 73 + black: 11.5 + red: 80.2 + green: 76.8 + yellow: 73.7 + blue: 82.2 + magenta: 82.8 + cyan: 76.9 + white: 94 + brightBlack: 50.2 + brightRed: 71.6 + brightGreen: 76.8 + brightYellow: 73.7 + brightBlue: 82.2 + brightMagenta: 47.9 + brightCyan: 76.9 + brightWhite: 94 diff --git a/themes/padrepio.yaml b/themes/padrepio.yaml new file mode 100644 index 00000000..4e8ec7e1 --- /dev/null +++ b/themes/padrepio.yaml @@ -0,0 +1,49 @@ +name: "padrepio" +source: + marketplace_id: "Houlz.padrepio" + version: "2.1.0" + installs: 373 + author: "Houlz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Houlz.padrepio" +colors: + bg: "#111111" + fg: "#D9D9D2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F2F2F2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 82.7 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 98.8 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/paigio.yaml b/themes/paigio.yaml new file mode 100644 index 00000000..2a6377d8 --- /dev/null +++ b/themes/paigio.yaml @@ -0,0 +1,49 @@ +name: "Paigio" +source: + marketplace_id: "plewg.toybox" + version: "0.0.1" + installs: 79 + author: "plewg" + repo: "https://github.com/plewg/toybox" + url: "https://marketplace.visualstudio.com/items?itemName=plewg.toybox" +colors: + bg: "#252525" + fg: "#F5F5F4" + black: "#333333" + red: "#FE9BE2" + green: "#86B42B" + yellow: "#FACC15" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#FE9BE2" + brightGreen: "#5BEF96" + brightYellow: "#E3D97E" + brightBlue: "#818CF8" + brightMagenta: "#AD8CFE" + brightCyan: "#5EDFFF" + brightWhite: "#F5F5F4" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 98.3 + black: 0 + red: 63.4 + green: 51.1 + yellow: 75.9 + blue: 32.7 + magenta: 30.3 + cyan: 48.5 + white: 86.6 + brightBlack: 20.1 + brightRed: 63.4 + brightGreen: 78.3 + brightYellow: 79.1 + brightBlue: 42.6 + brightMagenta: 47.7 + brightCyan: 74.9 + brightWhite: 98.3 diff --git a/themes/pale-blue.yaml b/themes/pale-blue.yaml new file mode 100644 index 00000000..11d41756 --- /dev/null +++ b/themes/pale-blue.yaml @@ -0,0 +1,49 @@ +name: "Pale Blue" +source: + marketplace_id: "TehMatcha.roselia-theme" + version: "4.4.0" + installs: 1278 + author: "TehMatcha" + repo: "https://github.com/MatchaTi/cool-roselia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" +colors: + bg: "#111827" + fg: "#F1F5F9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 265 + contrast: + fg: 99.8 + black: 0 + red: 26.6 + green: 52.8 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.9 diff --git a/themes/pale-boreal-dark.yaml b/themes/pale-boreal-dark.yaml new file mode 100644 index 00000000..a75d4d62 --- /dev/null +++ b/themes/pale-boreal-dark.yaml @@ -0,0 +1,49 @@ +name: "Pale Boreal Dark" +source: + marketplace_id: "MuriloSambuite.pale-boreal-dark-theme" + version: "1.0.8" + installs: 3180 + author: "Murilo Sambuite" + repo: "https://github.com/sambuite/pale-boreal-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MuriloSambuite.pale-boreal-dark-theme" +colors: + bg: "#0E0D17" + fg: "#EDECEE" + black: "#0E0D17" + red: "#F37896" + green: "#7EE2B3" + yellow: "#E2B37E" + blue: "#7DCDE1" + magenta: "#E693D6" + cyan: "#7DCDE1" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#F37896" + brightGreen: "#7EE2B3" + brightYellow: "#E2B37E" + brightBlue: "#7DCDE1" + brightMagenta: "#E693D6" + brightCyan: "#7DCDE1" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "red" + hue: 288 + contrast: + fg: 95.4 + black: 0 + red: 50.5 + green: 77.1 + yellow: 65.7 + blue: 69.1 + magenta: 58.5 + cyan: 69.1 + white: 75.6 + brightBlack: 0 + brightRed: 50.5 + brightGreen: 77.1 + brightYellow: 65.7 + brightBlue: 69.1 + brightMagenta: 58.5 + brightCyan: 69.1 + brightWhite: 95.4 diff --git a/themes/palenight-italic.yaml b/themes/palenight-italic.yaml new file mode 100644 index 00000000..cfc58161 --- /dev/null +++ b/themes/palenight-italic.yaml @@ -0,0 +1,49 @@ +name: "Palenight Italic" +source: + marketplace_id: "nesterman.material-nest-theme" + version: "1.0.40" + installs: 5493 + author: "Nick Nesterov" + repo: "https://github.com/nesterman/vscode-nest-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nesterman.material-nest-theme" +colors: + bg: "#FFFFFF" + fg: "#597078" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 76 + black: 106 + red: 57.1 + green: 18.3 + yellow: 23.3 + blue: 45.2 + magenta: 47.3 + cyan: 23.9 + white: 0 + brightBlack: 74.3 + brightRed: 57.1 + brightGreen: 18.3 + brightYellow: 23.3 + brightBlue: 45.2 + brightMagenta: 47.3 + brightCyan: 23.9 + brightWhite: 0 diff --git a/themes/palenight-material.yaml b/themes/palenight-material.yaml new file mode 100644 index 00000000..ba3edde3 --- /dev/null +++ b/themes/palenight-material.yaml @@ -0,0 +1,49 @@ +name: "Palenight Material" +source: + marketplace_id: "Lebster.enough-with-the-palenight" + version: "1.0.6" + installs: 7172 + author: "Lebster" + repo: "https://github.com/LebsterFace/enough-with-the-palenight" + url: "https://marketplace.visualstudio.com/items?itemName=Lebster.enough-with-the-palenight" +colors: + bg: "#292D3E" + fg: "#BFC7D5" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 67.7 + black: 0 + red: 40 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 40 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/palenight-pro.yaml b/themes/palenight-pro.yaml new file mode 100644 index 00000000..1692cd53 --- /dev/null +++ b/themes/palenight-pro.yaml @@ -0,0 +1,49 @@ +name: "Palenight Pro" +source: + marketplace_id: "indranilhalderdev.palenight-pro" + version: "1.0.0" + installs: 294 + author: "Indranil Halder" + repo: "https://github.com/indranildeveloper/palenight-pro" + url: "https://marketplace.visualstudio.com/items?itemName=indranilhalderdev.palenight-pro" +colors: + bg: "#282D3F" + fg: "#BABED8" + black: "#000000" + red: "#F07178" + green: "#98C379" + yellow: "#E5C07B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 272 + contrast: + fg: 63.6 + black: 0 + red: 43 + green: 58.7 + yellow: 67 + blue: 52.3 + magenta: 50.2 + cyan: 74.7 + white: 103.3 + brightBlack: 22.8 + brightRed: 43 + brightGreen: 58.7 + brightYellow: 67 + brightBlue: 52.3 + brightMagenta: 50.2 + brightCyan: 74.7 + brightWhite: 103.3 diff --git a/themes/palenight-theme.yaml b/themes/palenight-theme.yaml new file mode 100644 index 00000000..c73c6790 --- /dev/null +++ b/themes/palenight-theme.yaml @@ -0,0 +1,49 @@ +name: "Palenight Theme" +source: + marketplace_id: "anaksholeh.unknown" + version: "0.0.5" + installs: 321 + author: "anak sholeh" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=anaksholeh.unknown" +colors: + bg: "#373F4B" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 258 + contrast: + fg: 63.1 + black: 18.2 + red: 35.7 + green: 57.6 + yellow: 70.7 + blue: 47.7 + magenta: 45.5 + cyan: 70 + white: 98.6 + brightBlack: 18.2 + brightRed: 35.7 + brightGreen: 75.9 + brightYellow: 70.7 + brightBlue: 47.7 + brightMagenta: 45.5 + brightCyan: 70 + brightWhite: 98.6 diff --git a/themes/palenight.yaml b/themes/palenight.yaml new file mode 100644 index 00000000..e05083e8 --- /dev/null +++ b/themes/palenight.yaml @@ -0,0 +1,49 @@ +name: "Palenight" +source: + marketplace_id: "AgraeonLabs.dev-themes" + version: "0.1.0" + installs: 283 + author: "Agraeon Labs" + repo: "https://github.com/adiagcodelance/VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" +colors: + bg: "#292D3E" + fg: "#A6ACCD" + black: "#292D3E" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#EEFFFF" + brightBlack: "#292D3E" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#EEFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 53.5 + black: 0 + red: 43 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 101 + brightBlack: 0 + brightRed: 43 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 101 diff --git a/themes/palespring.yaml b/themes/palespring.yaml new file mode 100644 index 00000000..049e1503 --- /dev/null +++ b/themes/palespring.yaml @@ -0,0 +1,49 @@ +name: "palespring" +source: + marketplace_id: "palespring.palespring" + version: "0.0.1" + installs: 255 + author: "lucast" + repo: "https://github.com/luciantr24/palespring" + url: "https://marketplace.visualstudio.com/items?itemName=palespring.palespring" +colors: + bg: "#006A8B" + fg: "#FFFBF8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#489FFF" + magenta: "#BC3FBC" + cyan: "#35D4FB" + white: "#E5E5E5" + brightBlack: "#AAA4A4" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#65AEFF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 228 + contrast: + fg: 82.9 + black: 24.1 + red: 0 + green: 31.3 + yellow: 63.9 + blue: 26.6 + magenta: 8 + cyan: 48.4 + white: 68.3 + brightBlack: 31 + brightRed: 16.8 + brightGreen: 41.8 + brightYellow: 73.9 + brightBlue: 33.8 + brightMagenta: 23.6 + brightCyan: 33.7 + brightWhite: 68.3 diff --git a/themes/palestorm-x.yaml b/themes/palestorm-x.yaml new file mode 100644 index 00000000..ce064eb5 --- /dev/null +++ b/themes/palestorm-x.yaml @@ -0,0 +1,49 @@ +name: "Palestorm X" +source: + marketplace_id: "AlexanderAlekseenko.palestorm" + version: "1.3.0" + installs: 2695 + author: "Alexander Alekseenko" + repo: "https://github.com/Akaike/vsc-palestorm-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.palestorm" +colors: + bg: "#202127" + fg: "#D9D9D9" + black: "#000000" + red: "#E24E4E" + green: "#2DC78C" + yellow: "#F2F245" + blue: "#3581D2" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#6B6B6B" + brightRed: "#F77474" + brightGreen: "#5BE4AD" + brightYellow: "#FDFD73" + brightBlue: "#4A9CF7" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 81.2 + black: 0 + red: 34.3 + green: 57.6 + yellow: 92.5 + blue: 32.2 + magenta: 28.5 + cyan: 46.3 + white: 88.7 + brightBlack: 22.9 + brightRed: 47.4 + brightGreen: 74 + brightYellow: 99.9 + brightBlue: 45.3 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/palestorm.yaml b/themes/palestorm.yaml new file mode 100644 index 00000000..a49a476d --- /dev/null +++ b/themes/palestorm.yaml @@ -0,0 +1,49 @@ +name: "Palestorm" +source: + marketplace_id: "AlexanderAlekseenko.palestorm" + version: "1.3.0" + installs: 2695 + author: "Alexander Alekseenko" + repo: "https://github.com/Akaike/vsc-palestorm-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.palestorm" +colors: + bg: "#282D3F" + fg: "#BEC6D4" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#7982A9" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 272 + contrast: + fg: 67.2 + black: 0 + red: 46.3 + green: 69.2 + yellow: 59.1 + blue: 48.1 + magenta: 52 + cyan: 67.5 + white: 31.9 + brightBlack: 0 + brightRed: 46.3 + brightGreen: 69.2 + brightYellow: 59.1 + brightBlue: 48.1 + brightMagenta: 52 + brightCyan: 67.5 + brightWhite: 56.3 diff --git a/themes/palette.yaml b/themes/palette.yaml new file mode 100644 index 00000000..6a7615cc --- /dev/null +++ b/themes/palette.yaml @@ -0,0 +1,49 @@ +name: "Palette" +source: + marketplace_id: "palette-theme.Palette-Dark" + version: "0.2.0" + installs: 5840 + author: "Zakiullah" + repo: "https://github.com/zbarakzai/Palette-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=palette-theme.Palette-Dark" +colors: + bg: "#162636" + fg: "#D6DEEB" + black: "#162636" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 249 + contrast: + fg: 83.3 + black: 0 + red: 37.4 + green: 65.3 + yellow: 80.1 + blue: 54 + magenta: 51.8 + cyan: 57.8 + white: 105 + brightBlack: 13.7 + brightRed: 37.4 + brightGreen: 65.3 + brightYellow: 91.8 + brightBlue: 54 + brightMagenta: 51.8 + brightCyan: 72.1 + brightWhite: 105 diff --git a/themes/pall-theme.yaml b/themes/pall-theme.yaml new file mode 100644 index 00000000..2ae3a924 --- /dev/null +++ b/themes/pall-theme.yaml @@ -0,0 +1,49 @@ +name: "Pall Theme" +source: + marketplace_id: "Goek.pall" + version: "0.0.5" + installs: 93 + author: "Goek" + repo: "https://github.com/aligoek/Pall-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Goek.pall" +colors: + bg: "#EBEEF5" + fg: "#292B4F" + black: "#000000" + red: "#920000" + green: "#3B9200" + yellow: "#928200" + blue: "#001792" + magenta: "#920089" + cyan: "#008B92" + white: "#555555" + brightBlack: "#666666" + brightRed: "#B20000" + brightGreen: "#4BBA00" + brightYellow: "#B29E00" + brightBlue: "#0021D3" + brightMagenta: "#B200A7" + brightCyan: "#00B1BA" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 89.8 + black: 95.9 + red: 79.1 + green: 56.4 + yellow: 55.9 + blue: 88.5 + magenta: 75.7 + cyan: 57.5 + white: 75.8 + brightBlack: 68.6 + brightRed: 72.3 + brightGreen: 38.8 + brightYellow: 42 + brightBlue: 80.2 + brightMagenta: 67.8 + brightCyan: 40.4 + brightWhite: 38.3 diff --git a/themes/panda-blue.yaml b/themes/panda-blue.yaml new file mode 100644 index 00000000..85e4a98a --- /dev/null +++ b/themes/panda-blue.yaml @@ -0,0 +1,49 @@ +name: "panda-blue" +source: + marketplace_id: "VishalMaurya.panda-blue" + version: "0.0.4" + installs: 158 + author: "Vishal Maurya" + repo: "https://github.com/maurya-07/panda-blue" + url: "https://marketplace.visualstudio.com/items?itemName=VishalMaurya.panda-blue" +colors: + bg: "#0C034B" + fg: "#FFFFFF" + black: "#EE8989" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 106.6 + black: 52.8 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.7 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/panda-dark.yaml b/themes/panda-dark.yaml new file mode 100644 index 00000000..62dcc742 --- /dev/null +++ b/themes/panda-dark.yaml @@ -0,0 +1,49 @@ +name: "Panda Dark" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2036 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" +colors: + bg: "#0D0D0D" + fg: "#F5F5F5" + black: "#2D2D2D" + red: "#D2691E" + green: "#7DB46C" + yellow: "#DAA520" + blue: "#8FBC8F" + magenta: "#CD853F" + cyan: "#90EE90" + white: "#E6E6E6" + brightBlack: "#4A4A4A" + brightRed: "#FF7F50" + brightGreen: "#98FB98" + brightYellow: "#F0E68C" + brightBlue: "#AFEEEE" + brightMagenta: "#DEB887" + brightCyan: "#E0FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 101 + black: 0 + red: 38.1 + green: 53.9 + yellow: 58 + blue: 59.7 + magenta: 45.2 + cyan: 83.2 + white: 91.4 + brightBlack: 11.7 + brightRed: 53.2 + brightGreen: 90.6 + brightYellow: 89.7 + brightBlue: 89.3 + brightMagenta: 67.3 + brightCyan: 103.6 + brightWhite: 107.6 diff --git a/themes/pandju-no-italics.yaml b/themes/pandju-no-italics.yaml new file mode 100644 index 00000000..f4999271 --- /dev/null +++ b/themes/pandju-no-italics.yaml @@ -0,0 +1,49 @@ +name: "Pandju - No italics" +source: + marketplace_id: "TobiasTimm.pandju" + version: "1.0.1" + installs: 2734 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/pandju" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.pandju" +colors: + bg: "#171D2B" + fg: "#E6E6E6" + black: "#6F7899" + red: "#F4326D" + green: "#17F9D7" + yellow: "#FFEDBB" + blue: "#A188F1" + magenta: "#FF75B5" + cyan: "#F7B773" + white: "#D7E2FF" + brightBlack: "#6F7899" + brightRed: "#F4326D" + brightGreen: "#17F9D7" + brightYellow: "#FFEDBB" + brightBlue: "#A188F1" + brightMagenta: "#FF75B5" + brightCyan: "#F7B773" + brightWhite: "#D7E2FF" +meta: + mode: "dark" + accent: "red" + hue: 266 + contrast: + fg: 89.9 + black: 29.8 + red: 36.1 + green: 85.5 + yellow: 95 + blue: 45.3 + magenta: 52.1 + cyan: 69.1 + white: 87.4 + brightBlack: 29.8 + brightRed: 36.1 + brightGreen: 85.5 + brightYellow: 95 + brightBlue: 45.3 + brightMagenta: 52.1 + brightCyan: 69.1 + brightWhite: 87.4 diff --git a/themes/pantasio.yaml b/themes/pantasio.yaml new file mode 100644 index 00000000..43ec033f --- /dev/null +++ b/themes/pantasio.yaml @@ -0,0 +1,49 @@ +name: "pantasio" +source: + marketplace_id: "pantasio.pkit" + version: "0.0.3" + installs: 116 + author: "pantasio" + repo: "https://github.com/pantasio/pkit-VScode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pantasio.pkit" +colors: + bg: "#131A24" + fg: "#FFEFB8" + black: "#21222C" + red: "#FF5555" + green: "#20E3B2" + yellow: "#FDE181" + blue: "#BD93F9" + magenta: "#FF6BCB" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#8D92FF" + brightRed: "#FF6E6E" + brightGreen: "#20E3B2" + brightYellow: "#EAC394" + brightBlue: "#BD93F9" + brightMagenta: "#FF6BCB" + brightCyan: "#2CCCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 96.2 + black: 0 + red: 43.1 + green: 73.3 + yellow: 88.1 + blue: 53.3 + magenta: 51.3 + cyan: 83.7 + white: 101.7 + brightBlack: 47.8 + brightRed: 48.5 + brightGreen: 73.3 + brightYellow: 72.9 + brightBlue: 53.3 + brightMagenta: 51.3 + brightCyan: 66.2 + brightWhite: 106.6 diff --git a/themes/pantone-amber-dark.yaml b/themes/pantone-amber-dark.yaml new file mode 100644 index 00000000..1c86c07e --- /dev/null +++ b/themes/pantone-amber-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Amber (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#221A04" + fg: "#E2DBCA" + black: "#221A04" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#72764C" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E2DBCA" + brightBlack: "#9C823D" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: 90 + contrast: + fg: 83.5 + black: 0 + red: 31.7 + green: 51.3 + yellow: 70.9 + blue: 27.2 + magenta: 32.7 + cyan: 51.9 + white: 83.5 + brightBlack: 35.7 + brightRed: 38.1 + brightGreen: 58.5 + brightYellow: 75.3 + brightBlue: 28.2 + brightMagenta: 41.3 + brightCyan: 58.5 + brightWhite: 99.2 diff --git a/themes/pantone-amber-light.yaml b/themes/pantone-amber-light.yaml new file mode 100644 index 00000000..cbb97a4b --- /dev/null +++ b/themes/pantone-amber-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Amber (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F4" + fg: "#2F2305" + black: "#2F2305" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F4" + brightBlack: "#A48638" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.5 + black: 97.5 + red: 74 + green: 57.6 + yellow: 41.8 + blue: 85 + magenta: 81.2 + cyan: 74.4 + white: 0 + brightBlack: 57.4 + brightRed: 63.7 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/pantone-aqua-dark.yaml b/themes/pantone-aqua-dark.yaml new file mode 100644 index 00000000..d0db6368 --- /dev/null +++ b/themes/pantone-aqua-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Aqua (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#001D21" + fg: "#CBDEE4" + black: "#001D21" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#0881A7" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#CBDEE4" + brightBlack: "#408CA0" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F2F4F6" +meta: + mode: "dark" + accent: "orange" + hue: 207 + contrast: + fg: 83.1 + black: 0 + red: 31.7 + green: 51.4 + yellow: 71 + blue: 29.9 + magenta: 32.8 + cyan: 52 + white: 83.1 + brightBlack: 34.6 + brightRed: 38.2 + brightGreen: 58.6 + brightYellow: 75.4 + brightBlue: 28.3 + brightMagenta: 41.4 + brightCyan: 58.6 + brightWhite: 99.1 diff --git a/themes/pantone-aqua-light.yaml b/themes/pantone-aqua-light.yaml new file mode 100644 index 00000000..5f3b125e --- /dev/null +++ b/themes/pantone-aqua-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Aqua (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F5F7F9" + fg: "#00282D" + black: "#00282D" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F5F7F9" + brightBlack: "#3792A6" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F2F4F6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.4 + black: 97.4 + red: 73.9 + green: 57.4 + yellow: 41.6 + blue: 84.9 + magenta: 81.1 + cyan: 74.2 + white: 0 + brightBlack: 58.4 + brightRed: 63.6 + brightGreen: 44.2 + brightYellow: 25.4 + brightBlue: 50.9 + brightMagenta: 62.5 + brightCyan: 43.6 + brightWhite: 0 diff --git a/themes/pantone-aqua-sky-dark.yaml b/themes/pantone-aqua-sky-dark.yaml new file mode 100644 index 00000000..bf01cf33 --- /dev/null +++ b/themes/pantone-aqua-sky-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Aqua Sky (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#0F181B" + fg: "#D3DFE5" + black: "#0F181B" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#4588B2" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D3DFE5" + brightBlack: "#6591A7" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F2F4F6" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 85 + black: 0 + red: 32.2 + green: 51.8 + yellow: 71.4 + blue: 34.6 + magenta: 33.2 + cyan: 52.4 + white: 85 + brightBlack: 39.2 + brightRed: 38.6 + brightGreen: 59 + brightYellow: 75.8 + brightBlue: 28.7 + brightMagenta: 41.8 + brightCyan: 59 + brightWhite: 99.5 diff --git a/themes/pantone-aqua-sky-light.yaml b/themes/pantone-aqua-sky-light.yaml new file mode 100644 index 00000000..a7fd1519 --- /dev/null +++ b/themes/pantone-aqua-sky-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Aqua Sky (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F5F8F9" + fg: "#121D22" + black: "#121D22" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F5F8F9" + brightBlack: "#6898AF" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F2F4F6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.5 + black: 99.5 + red: 74.3 + green: 57.8 + yellow: 42.1 + blue: 85.3 + magenta: 81.5 + cyan: 74.6 + white: 0 + brightBlack: 53.8 + brightRed: 64 + brightGreen: 44.7 + brightYellow: 25.8 + brightBlue: 51.3 + brightMagenta: 62.9 + brightCyan: 44 + brightWhite: 0 diff --git a/themes/pantone-baby-blue-dark.yaml b/themes/pantone-baby-blue-dark.yaml new file mode 100644 index 00000000..4da5d965 --- /dev/null +++ b/themes/pantone-baby-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Baby Blue (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#151A1B" + fg: "#D7E0E5" + black: "#151A1B" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#6092B1" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D7E0E5" + brightBlack: "#7597A6" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F2F4F6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.7 + black: 0 + red: 31.9 + green: 51.5 + yellow: 71.2 + blue: 39.5 + magenta: 33 + cyan: 52.2 + white: 85.7 + brightBlack: 42.3 + brightRed: 38.4 + brightGreen: 58.8 + brightYellow: 75.6 + brightBlue: 28.5 + brightMagenta: 41.6 + brightCyan: 58.8 + brightWhite: 99.2 diff --git a/themes/pantone-baby-blue-light.yaml b/themes/pantone-baby-blue-light.yaml new file mode 100644 index 00000000..83700863 --- /dev/null +++ b/themes/pantone-baby-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Baby Blue (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F6F8F9" + fg: "#1A2022" + black: "#1A2022" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F6F8F9" + brightBlack: "#7DA0AF" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F2F4F6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99 + black: 99 + red: 74.4 + green: 58 + yellow: 42.2 + blue: 85.4 + magenta: 81.6 + cyan: 74.7 + white: 0 + brightBlack: 49.4 + brightRed: 64.1 + brightGreen: 44.8 + brightYellow: 26 + brightBlue: 51.5 + brightMagenta: 63.1 + brightCyan: 44.2 + brightWhite: 0 diff --git a/themes/pantone-blue-iris-dark.yaml b/themes/pantone-blue-iris-dark.yaml new file mode 100644 index 00000000..17b0d4f6 --- /dev/null +++ b/themes/pantone-blue-iris-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Blue Iris (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#0E0F19" + fg: "#CECFD5" + black: "#0E0F19" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#355490" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#CECFD5" + brightBlack: "#52556D" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F1F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 280 + contrast: + fg: 77.2 + black: 0 + red: 32.7 + green: 52.3 + yellow: 72 + blue: 16 + magenta: 33.8 + cyan: 53 + white: 77.2 + brightBlack: 16.3 + brightRed: 39.2 + brightGreen: 59.6 + brightYellow: 76.4 + brightBlue: 29.3 + brightMagenta: 42.4 + brightCyan: 59.6 + brightWhite: 98.3 diff --git a/themes/pantone-blue-iris-light.yaml b/themes/pantone-blue-iris-light.yaml new file mode 100644 index 00000000..0579d2a5 --- /dev/null +++ b/themes/pantone-blue-iris-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Blue Iris (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F4F5F5" + fg: "#141423" + black: "#141423" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F4F5F5" + brightBlack: "#535674" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F1F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.8 + black: 98.8 + red: 72.7 + green: 56.3 + yellow: 40.5 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 78.6 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.3 + brightBlue: 49.8 + brightMagenta: 61.4 + brightCyan: 42.5 + brightWhite: 0 diff --git a/themes/pantone-blue-turquoise-dark.yaml b/themes/pantone-blue-turquoise-dark.yaml new file mode 100644 index 00000000..6752ab17 --- /dev/null +++ b/themes/pantone-blue-turquoise-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Blue Turquoise (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#0D1C1C" + fg: "#DEE5E5" + black: "#0D1C1C" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#317E98" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DEE5E5" + brightBlack: "#85A3A2" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 196 + contrast: + fg: 88.8 + black: 0 + red: 31.8 + green: 51.5 + yellow: 71.1 + blue: 28.7 + magenta: 32.9 + cyan: 52.1 + white: 88.8 + brightBlack: 48.1 + brightRed: 38.3 + brightGreen: 58.7 + brightYellow: 75.5 + brightBlue: 28.4 + brightMagenta: 41.5 + brightCyan: 58.7 + brightWhite: 101.3 diff --git a/themes/pantone-blue-turquoise-light.yaml b/themes/pantone-blue-turquoise-light.yaml new file mode 100644 index 00000000..7f889393 --- /dev/null +++ b/themes/pantone-blue-turquoise-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Blue Turquoise (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F9F9F9" + fg: "#0C1A1A" + black: "#0C1A1A" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F9F9F9" + brightBlack: "#7EA5A4" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101 + black: 101 + red: 75.2 + green: 58.8 + yellow: 43 + blue: 86.2 + magenta: 82.4 + cyan: 75.5 + white: 0 + brightBlack: 48.6 + brightRed: 64.9 + brightGreen: 45.6 + brightYellow: 26.8 + brightBlue: 52.3 + brightMagenta: 63.9 + brightCyan: 45 + brightWhite: 0 diff --git a/themes/pantone-blush-dark.yaml b/themes/pantone-blush-dark.yaml new file mode 100644 index 00000000..5daf6b23 --- /dev/null +++ b/themes/pantone-blush-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Blush (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1D1515" + fg: "#E3D4D8" + black: "#1D1515" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#817D99" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E3D4D8" + brightBlack: "#A16A79" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 18 + contrast: + fg: 81.7 + black: 0 + red: 32.1 + green: 51.8 + yellow: 71.4 + blue: 33.8 + magenta: 33.2 + cyan: 52.4 + white: 81.7 + brightBlack: 30.8 + brightRed: 38.6 + brightGreen: 59 + brightYellow: 75.8 + brightBlue: 28.7 + brightMagenta: 41.8 + brightCyan: 59 + brightWhite: 98.3 diff --git a/themes/pantone-blush-light.yaml b/themes/pantone-blush-light.yaml new file mode 100644 index 00000000..eac2d173 --- /dev/null +++ b/themes/pantone-blush-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Blush (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F5F6" + fg: "#241A1A" + black: "#241A1A" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F5F6" + brightBlack: "#AD7481" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.3 + black: 98.3 + red: 73.3 + green: 56.8 + yellow: 41 + blue: 84.3 + magenta: 80.5 + cyan: 73.6 + white: 0 + brightBlack: 59.4 + brightRed: 63 + brightGreen: 43.6 + brightYellow: 24.8 + brightBlue: 50.3 + brightMagenta: 61.9 + brightCyan: 43 + brightWhite: 0 diff --git a/themes/pantone-blush-pink-dark.yaml b/themes/pantone-blush-pink-dark.yaml new file mode 100644 index 00000000..03c2f94a --- /dev/null +++ b/themes/pantone-blush-pink-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Blush Pink (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1D1618" + fg: "#E3D4DA" + black: "#1D1618" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#8281A5" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E3D4DA" + brightBlack: "#A26C80" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 359 + contrast: + fg: 81.7 + black: 0 + red: 32 + green: 51.7 + yellow: 71.3 + blue: 35.7 + magenta: 33.1 + cyan: 52.3 + white: 81.7 + brightBlack: 31.7 + brightRed: 38.5 + brightGreen: 58.9 + brightYellow: 75.7 + brightBlue: 28.6 + brightMagenta: 41.7 + brightCyan: 58.9 + brightWhite: 98.2 diff --git a/themes/pantone-blush-pink-light.yaml b/themes/pantone-blush-pink-light.yaml new file mode 100644 index 00000000..40e9228c --- /dev/null +++ b/themes/pantone-blush-pink-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Blush Pink (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F5F6" + fg: "#251B1E" + black: "#251B1E" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F5F6" + brightBlack: "#AE778A" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.1 + black: 98.1 + red: 73.3 + green: 56.8 + yellow: 41 + blue: 84.3 + magenta: 80.5 + cyan: 73.6 + white: 0 + brightBlack: 58.1 + brightRed: 63 + brightGreen: 43.6 + brightYellow: 24.8 + brightBlue: 50.3 + brightMagenta: 61.9 + brightCyan: 43 + brightWhite: 0 diff --git a/themes/pantone-brick-red-dark.yaml b/themes/pantone-brick-red-dark.yaml new file mode 100644 index 00000000..80a5a6ce --- /dev/null +++ b/themes/pantone-brick-red-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Brick Red (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1A0807" + fg: "#F2E6E2" + black: "#1A0807" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#584056" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F2E6E2" + brightBlack: "#CB9F92" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 25 + contrast: + fg: 92.8 + black: 0 + red: 32.8 + green: 52.4 + yellow: 72.1 + blue: 10.8 + magenta: 33.8 + cyan: 53 + white: 92.8 + brightBlack: 55.3 + brightRed: 39.2 + brightGreen: 59.7 + brightYellow: 76.4 + brightBlue: 29.4 + brightMagenta: 42.4 + brightCyan: 59.6 + brightWhite: 105 diff --git a/themes/pantone-brick-red-light.yaml b/themes/pantone-brick-red-light.yaml new file mode 100644 index 00000000..af442af7 --- /dev/null +++ b/themes/pantone-brick-red-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Brick Red (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFBFA" + fg: "#230B09" + black: "#230B09" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFBFA" + brightBlack: "#C59083" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.9 + black: 102.9 + red: 76.6 + green: 60.2 + yellow: 44.4 + blue: 87.6 + magenta: 83.8 + cyan: 77 + white: 0 + brightBlack: 50.6 + brightRed: 66.3 + brightGreen: 47 + brightYellow: 28.2 + brightBlue: 53.7 + brightMagenta: 65.3 + brightCyan: 46.4 + brightWhite: 0 diff --git a/themes/pantone-bright-green-dark.yaml b/themes/pantone-bright-green-dark.yaml new file mode 100644 index 00000000..66c4d3ca --- /dev/null +++ b/themes/pantone-bright-green-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Bright Green (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#001C0A" + fg: "#D8E5DD" + black: "#001C0A" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#087F61" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D8E5DD" + brightBlack: "#6CA481" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 153 + contrast: + fg: 87.8 + black: 0 + red: 32 + green: 51.6 + yellow: 71.3 + blue: 26.6 + magenta: 33 + cyan: 52.2 + white: 87.8 + brightBlack: 45.5 + brightRed: 38.4 + brightGreen: 58.9 + brightYellow: 75.6 + brightBlue: 28.6 + brightMagenta: 41.6 + brightCyan: 58.8 + brightWhite: 101.4 diff --git a/themes/pantone-bright-green-light.yaml b/themes/pantone-bright-green-light.yaml new file mode 100644 index 00000000..b160be5d --- /dev/null +++ b/themes/pantone-bright-green-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Bright Green (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F9F9" + fg: "#00270E" + black: "#00270E" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F9F9" + brightBlack: "#5CA678" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.2 + black: 99.2 + red: 75.1 + green: 58.6 + yellow: 42.9 + blue: 86.1 + magenta: 82.3 + cyan: 75.4 + white: 0 + brightBlack: 51.8 + brightRed: 64.8 + brightGreen: 45.5 + brightYellow: 26.6 + brightBlue: 52.1 + brightMagenta: 63.7 + brightCyan: 44.9 + brightWhite: 0 diff --git a/themes/pantone-burgundy-dark.yaml b/themes/pantone-burgundy-dark.yaml new file mode 100644 index 00000000..10428501 --- /dev/null +++ b/themes/pantone-burgundy-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Burgundy (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#190407" + fg: "#DDCACF" + black: "#190407" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#573458" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DDCACF" + brightBlack: "#883E52" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 12 + contrast: + fg: 76.9 + black: 0 + red: 32.9 + green: 52.5 + yellow: 72.1 + blue: 8.5 + magenta: 33.9 + cyan: 53.1 + white: 76.9 + brightBlack: 16.6 + brightRed: 39.3 + brightGreen: 59.7 + brightYellow: 76.5 + brightBlue: 29.4 + brightMagenta: 42.5 + brightCyan: 59.7 + brightWhite: 99 diff --git a/themes/pantone-burgundy-light.yaml b/themes/pantone-burgundy-light.yaml new file mode 100644 index 00000000..c69cfdd7 --- /dev/null +++ b/themes/pantone-burgundy-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Burgundy (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F7F4F5" + fg: "#23060A" + black: "#23060A" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F7F4F5" + brightBlack: "#8B394D" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99 + black: 99 + red: 72.7 + green: 56.2 + yellow: 40.4 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 79.5 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.2 + brightBlue: 49.7 + brightMagenta: 61.3 + brightCyan: 42.4 + brightWhite: 0 diff --git a/themes/pantone-burnt-orange-dark.yaml b/themes/pantone-burnt-orange-dark.yaml new file mode 100644 index 00000000..6df2325e --- /dev/null +++ b/themes/pantone-burnt-orange-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Burnt Orange (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#291100" + fg: "#F8EAE0" + black: "#291100" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#875C41" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F8EAE0" + brightBlack: "#E8B085" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 57 + contrast: + fg: 94.5 + black: 0 + red: 31.9 + green: 51.6 + yellow: 71.2 + blue: 21.8 + magenta: 33 + cyan: 52.2 + white: 94.5 + brightBlack: 64.9 + brightRed: 38.4 + brightGreen: 58.8 + brightYellow: 75.6 + brightBlue: 28.5 + brightMagenta: 41.6 + brightCyan: 58.8 + brightWhite: 104.1 diff --git a/themes/pantone-burnt-orange-light.yaml b/themes/pantone-burnt-orange-light.yaml new file mode 100644 index 00000000..6c2691e8 --- /dev/null +++ b/themes/pantone-burnt-orange-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Burnt Orange (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFBFA" + fg: "#381800" + black: "#381800" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFBFA" + brightBlack: "#EBA672" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 100.7 + black: 100.7 + red: 76.6 + green: 60.2 + yellow: 44.4 + blue: 87.6 + magenta: 83.8 + cyan: 77 + white: 0 + brightBlack: 37.7 + brightRed: 66.3 + brightGreen: 47 + brightYellow: 28.2 + brightBlue: 53.7 + brightMagenta: 65.3 + brightCyan: 46.4 + brightWhite: 0 diff --git a/themes/pantone-cerulean-dark.yaml b/themes/pantone-cerulean-dark.yaml new file mode 100644 index 00000000..f2237b04 --- /dev/null +++ b/themes/pantone-cerulean-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Cerulean (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#131619" + fg: "#D3D6D9" + black: "#131619" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#5582AB" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D3D6D9" + brightBlack: "#65717D" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F1F1F2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 80.6 + black: 0 + red: 32.3 + green: 51.9 + yellow: 71.6 + blue: 33 + magenta: 33.3 + cyan: 52.5 + white: 80.6 + brightBlack: 26.3 + brightRed: 38.7 + brightGreen: 59.1 + brightYellow: 75.9 + brightBlue: 28.8 + brightMagenta: 41.9 + brightCyan: 59.1 + brightWhite: 97.9 diff --git a/themes/pantone-cerulean-light.yaml b/themes/pantone-cerulean-light.yaml new file mode 100644 index 00000000..1e7744d9 --- /dev/null +++ b/themes/pantone-cerulean-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Cerulean (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F5F5F6" + fg: "#171B20" + black: "#171B20" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F5F5F6" + brightBlack: "#6D7B8A" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F1F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.2 + black: 98.2 + red: 72.9 + green: 56.4 + yellow: 40.7 + blue: 83.9 + magenta: 80.1 + cyan: 73.2 + white: 0 + brightBlack: 64.1 + brightRed: 62.6 + brightGreen: 43.3 + brightYellow: 24.4 + brightBlue: 49.9 + brightMagenta: 61.5 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/pantone-chartreuse-dark.yaml b/themes/pantone-chartreuse-dark.yaml new file mode 100644 index 00000000..ba766852 --- /dev/null +++ b/themes/pantone-chartreuse-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Chartreuse (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#232300" + fg: "#E3E0C8" + black: "#232300" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#769541" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E3E0C8" + brightBlack: "#9F9437" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: 110 + contrast: + fg: 84.9 + black: 0 + red: 30.7 + green: 50.4 + yellow: 70 + blue: 37.7 + magenta: 31.8 + cyan: 51 + white: 84.9 + brightBlack: 41.4 + brightRed: 37.2 + brightGreen: 57.6 + brightYellow: 74.4 + brightBlue: 27.3 + brightMagenta: 40.4 + brightCyan: 57.6 + brightWhite: 98.2 diff --git a/themes/pantone-chartreuse-light.yaml b/themes/pantone-chartreuse-light.yaml new file mode 100644 index 00000000..9212a198 --- /dev/null +++ b/themes/pantone-chartreuse-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Chartreuse (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F4" + fg: "#313100" + black: "#313100" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F4" + brightBlack: "#A89F2F" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 94.9 + black: 94.9 + red: 74 + green: 57.6 + yellow: 41.8 + blue: 85 + magenta: 81.2 + cyan: 74.4 + white: 0 + brightBlack: 48.1 + brightRed: 63.7 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/pantone-chili-pepper-dark.yaml b/themes/pantone-chili-pepper-dark.yaml new file mode 100644 index 00000000..f8d3e731 --- /dev/null +++ b/themes/pantone-chili-pepper-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Chili Pepper (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#190408" + fg: "#DDCACF" + black: "#190408" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#553459" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DDCACF" + brightBlack: "#873E52" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 9 + contrast: + fg: 76.9 + black: 0 + red: 32.9 + green: 52.5 + yellow: 72.1 + blue: 8.3 + magenta: 33.9 + cyan: 53.1 + white: 76.9 + brightBlack: 16.5 + brightRed: 39.3 + brightGreen: 59.7 + brightYellow: 76.5 + brightBlue: 29.4 + brightMagenta: 42.5 + brightCyan: 59.7 + brightWhite: 99 diff --git a/themes/pantone-chili-pepper-light.yaml b/themes/pantone-chili-pepper-light.yaml new file mode 100644 index 00000000..c9662fa0 --- /dev/null +++ b/themes/pantone-chili-pepper-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Chili Pepper (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F7F4F5" + fg: "#22060B" + black: "#22060B" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F7F4F5" + brightBlack: "#8A394D" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.1 + black: 99.1 + red: 72.7 + green: 56.2 + yellow: 40.4 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 79.6 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.2 + brightBlue: 49.7 + brightMagenta: 61.3 + brightCyan: 42.4 + brightWhite: 0 diff --git a/themes/pantone-chocolate-dark.yaml b/themes/pantone-chocolate-dark.yaml new file mode 100644 index 00000000..1c57a64f --- /dev/null +++ b/themes/pantone-chocolate-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Chocolate (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#170D06" + fg: "#EDE6E1" + black: "#170D06" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#36404C" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#EDE6E1" + brightBlack: "#B79F8C" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 58 + contrast: + fg: 92 + black: 0 + red: 32.7 + green: 52.4 + yellow: 72 + blue: 7.7 + magenta: 33.8 + cyan: 53 + white: 92 + brightBlack: 52.2 + brightRed: 39.2 + brightGreen: 59.6 + brightYellow: 76.4 + brightBlue: 29.3 + brightMagenta: 42.4 + brightCyan: 59.6 + brightWhite: 104.9 diff --git a/themes/pantone-chocolate-light.yaml b/themes/pantone-chocolate-light.yaml new file mode 100644 index 00000000..94bb1171 --- /dev/null +++ b/themes/pantone-chocolate-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Chocolate (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FCFBFA" + fg: "#140B05" + black: "#140B05" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FCFBFA" + brightBlack: "#AA8F7B" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103.3 + black: 103.3 + red: 76.5 + green: 60.1 + yellow: 44.3 + blue: 87.5 + magenta: 83.7 + cyan: 76.8 + white: 0 + brightBlack: 54.8 + brightRed: 66.2 + brightGreen: 46.9 + brightYellow: 28 + brightBlue: 53.5 + brightMagenta: 65.1 + brightCyan: 46.3 + brightWhite: 0 diff --git a/themes/pantone-classic-blue-dark.yaml b/themes/pantone-classic-blue-dark.yaml new file mode 100644 index 00000000..31a9d11e --- /dev/null +++ b/themes/pantone-classic-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Classic Blue (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#041320" + fg: "#D8DCE0" + black: "#041320" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#0F4C81" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D8DCE0" + brightBlack: "#6B7F90" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F6F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 245 + contrast: + fg: 84.4 + black: 0 + red: 32.5 + green: 52.1 + yellow: 71.8 + blue: 11.8 + magenta: 33.6 + cyan: 52.8 + white: 84.4 + brightBlack: 32.5 + brightRed: 39 + brightGreen: 59.4 + brightYellow: 76.2 + brightBlue: 29.1 + brightMagenta: 42.2 + brightCyan: 59.4 + brightWhite: 101.8 diff --git a/themes/pantone-classic-blue-light.yaml b/themes/pantone-classic-blue-light.yaml new file mode 100644 index 00000000..ea62cb48 --- /dev/null +++ b/themes/pantone-classic-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Classic Blue (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F8F9" + fg: "#03111C" + black: "#03111C" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F8F9" + brightBlack: "#5E788E" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F6F7F7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.2 + black: 101.2 + red: 74.7 + green: 58.2 + yellow: 42.4 + blue: 85.7 + magenta: 81.9 + cyan: 75 + white: 0 + brightBlack: 67.9 + brightRed: 64.4 + brightGreen: 45 + brightYellow: 26.2 + brightBlue: 51.7 + brightMagenta: 63.3 + brightCyan: 44.4 + brightWhite: 0 diff --git a/themes/pantone-classic-red-dark.yaml b/themes/pantone-classic-red-dark.yaml new file mode 100644 index 00000000..920fd98a --- /dev/null +++ b/themes/pantone-classic-red-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Classic Red (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#230704" + fg: "#F5E6E2" + black: "#230704" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#753B4F" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F5E6E2" + brightBlack: "#DD9C8D" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 31 + contrast: + fg: 92.9 + black: 0 + red: 32.5 + green: 52.1 + yellow: 71.8 + blue: 12.8 + magenta: 33.6 + cyan: 52.8 + white: 92.9 + brightBlack: 56.6 + brightRed: 38.9 + brightGreen: 59.4 + brightYellow: 76.2 + brightBlue: 29.1 + brightMagenta: 42.2 + brightCyan: 59.4 + brightWhite: 104.7 diff --git a/themes/pantone-classic-red-light.yaml b/themes/pantone-classic-red-light.yaml new file mode 100644 index 00000000..cd13d525 --- /dev/null +++ b/themes/pantone-classic-red-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Classic Red (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFBFA" + fg: "#300906" + black: "#300906" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFBFA" + brightBlack: "#DC8B7D" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.1 + black: 102.1 + red: 76.6 + green: 60.2 + yellow: 44.4 + blue: 87.6 + magenta: 83.8 + cyan: 77 + white: 0 + brightBlack: 48.6 + brightRed: 66.3 + brightGreen: 47 + brightYellow: 28.2 + brightBlue: 53.7 + brightMagenta: 65.3 + brightCyan: 46.4 + brightWhite: 0 diff --git a/themes/pantone-cobalt-blue-dark.yaml b/themes/pantone-cobalt-blue-dark.yaml new file mode 100644 index 00000000..e68c701a --- /dev/null +++ b/themes/pantone-cobalt-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Cobalt Blue (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#03101A" + fg: "#D6DCE1" + black: "#03101A" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#125891" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D6DCE1" + brightBlack: "#678194" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: 240 + contrast: + fg: 84.4 + black: 0 + red: 32.7 + green: 52.4 + yellow: 72 + blue: 16.3 + magenta: 33.8 + cyan: 53 + white: 84.4 + brightBlack: 33.3 + brightRed: 39.2 + brightGreen: 59.6 + brightYellow: 76.4 + brightBlue: 29.3 + brightMagenta: 42.4 + brightCyan: 59.6 + brightWhite: 101.5 diff --git a/themes/pantone-cobalt-blue-light.yaml b/themes/pantone-cobalt-blue-light.yaml new file mode 100644 index 00000000..5bf1a8cb --- /dev/null +++ b/themes/pantone-cobalt-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Cobalt Blue (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F7F8F8" + fg: "#041623" + black: "#041623" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F7F8F8" + brightBlack: "#5B7D96" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F6F6F6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 100.6 + black: 100.6 + red: 74.5 + green: 58.1 + yellow: 42.3 + blue: 85.5 + magenta: 81.7 + cyan: 74.8 + white: 0 + brightBlack: 65.8 + brightRed: 64.2 + brightGreen: 44.9 + brightYellow: 26 + brightBlue: 51.5 + brightMagenta: 63.1 + brightCyan: 44.3 + brightWhite: 0 diff --git a/themes/pantone-coral-dark.yaml b/themes/pantone-coral-dark.yaml new file mode 100644 index 00000000..08c84cfb --- /dev/null +++ b/themes/pantone-coral-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Coral (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1F100E" + fg: "#F8ECE7" + black: "#1F100E" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#87677A" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F8ECE7" + brightBlack: "#E8B7A7" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 28 + contrast: + fg: 96.2 + black: 0 + red: 32.4 + green: 52 + yellow: 71.7 + blue: 26.8 + magenta: 33.4 + cyan: 52.6 + white: 96.2 + brightBlack: 68.9 + brightRed: 38.8 + brightGreen: 59.2 + brightYellow: 76 + brightBlue: 29 + brightMagenta: 42 + brightCyan: 59.2 + brightWhite: 104.5 diff --git a/themes/pantone-coral-light.yaml b/themes/pantone-coral-light.yaml new file mode 100644 index 00000000..6a29a692 --- /dev/null +++ b/themes/pantone-coral-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Coral (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFCFB" + fg: "#261411" + black: "#261411" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFCFB" + brightBlack: "#EBAFA0" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.7 + black: 102.7 + red: 77.1 + green: 60.6 + yellow: 44.9 + blue: 88.1 + magenta: 84.3 + cyan: 77.4 + white: 0 + brightBlack: 33.8 + brightRed: 66.8 + brightGreen: 47.5 + brightYellow: 28.6 + brightBlue: 54.1 + brightMagenta: 65.7 + brightCyan: 46.9 + brightWhite: 0 diff --git a/themes/pantone-cornflower-blue-dark.yaml b/themes/pantone-cornflower-blue-dark.yaml new file mode 100644 index 00000000..c79dc929 --- /dev/null +++ b/themes/pantone-cornflower-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Cornflower Blue (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#0C1624" + fg: "#CDD2DA" + black: "#0C1624" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#2E6AB1" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#CDD2DA" + brightBlack: "#4E6381" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F1F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 257 + contrast: + fg: 78.1 + black: 0 + red: 32.2 + green: 51.9 + yellow: 71.5 + blue: 23.7 + magenta: 33.3 + cyan: 52.5 + white: 78.1 + brightBlack: 20.4 + brightRed: 38.7 + brightGreen: 59.1 + brightYellow: 75.9 + brightBlue: 28.8 + brightMagenta: 41.9 + brightCyan: 59.1 + brightWhite: 97.8 diff --git a/themes/pantone-cornflower-blue-light.yaml b/themes/pantone-cornflower-blue-light.yaml new file mode 100644 index 00000000..0ced7f21 --- /dev/null +++ b/themes/pantone-cornflower-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Cornflower Blue (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F4F5F6" + fg: "#0C1422" + black: "#0C1422" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F4F5F6" + brightBlack: "#4E688F" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F1F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99 + black: 99 + red: 72.8 + green: 56.3 + yellow: 40.5 + blue: 83.8 + magenta: 80 + cyan: 73.1 + white: 0 + brightBlack: 72.3 + brightRed: 62.5 + brightGreen: 43.1 + brightYellow: 24.3 + brightBlue: 49.8 + brightMagenta: 61.4 + brightCyan: 42.5 + brightWhite: 0 diff --git a/themes/pantone-cyan-dark.yaml b/themes/pantone-cyan-dark.yaml new file mode 100644 index 00000000..ab2c1ef3 --- /dev/null +++ b/themes/pantone-cyan-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Cyan (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#001C20" + fg: "#CBDEE3" + black: "#001C20" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#087FA5" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#CBDEE3" + brightBlack: "#408C9F" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F2F4F6" +meta: + mode: "dark" + accent: "orange" + hue: 208 + contrast: + fg: 83.2 + black: 0 + red: 31.8 + green: 51.5 + yellow: 71.1 + blue: 29.1 + magenta: 32.9 + cyan: 52.1 + white: 83.2 + brightBlack: 34.7 + brightRed: 38.3 + brightGreen: 58.7 + brightYellow: 75.5 + brightBlue: 28.4 + brightMagenta: 41.5 + brightCyan: 58.7 + brightWhite: 99.2 diff --git a/themes/pantone-cyan-light.yaml b/themes/pantone-cyan-light.yaml new file mode 100644 index 00000000..f1fd7319 --- /dev/null +++ b/themes/pantone-cyan-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Cyan (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F5F7F9" + fg: "#00272C" + black: "#00272C" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F5F7F9" + brightBlack: "#3791A5" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F2F4F6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.6 + black: 97.6 + red: 73.9 + green: 57.4 + yellow: 41.6 + blue: 84.9 + magenta: 81.1 + cyan: 74.2 + white: 0 + brightBlack: 58.9 + brightRed: 63.6 + brightGreen: 44.2 + brightYellow: 25.4 + brightBlue: 50.9 + brightMagenta: 62.5 + brightCyan: 43.6 + brightWhite: 0 diff --git a/themes/pantone-dark-brown-dark.yaml b/themes/pantone-dark-brown-dark.yaml new file mode 100644 index 00000000..141835dd --- /dev/null +++ b/themes/pantone-dark-brown-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Dark Brown (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#130B0B" + fg: "#D8CBCF" + black: "#130B0B" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#2E3B56" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D8CBCF" + brightBlack: "#6F4351" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 19 + contrast: + fg: 76.7 + black: 0 + red: 32.9 + green: 52.5 + yellow: 72.2 + blue: 0 + magenta: 33.9 + cyan: 53.1 + white: 76.7 + brightBlack: 14 + brightRed: 39.3 + brightGreen: 59.7 + brightYellow: 76.5 + brightBlue: 29.4 + brightMagenta: 42.5 + brightCyan: 59.7 + brightWhite: 99 diff --git a/themes/pantone-dark-brown-light.yaml b/themes/pantone-dark-brown-light.yaml new file mode 100644 index 00000000..edee8305 --- /dev/null +++ b/themes/pantone-dark-brown-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Dark Brown (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F7F4F5" + fg: "#110909" + black: "#110909" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F7F4F5" + brightBlack: "#6A3F4B" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.6 + black: 99.6 + red: 72.7 + green: 56.2 + yellow: 40.4 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 83.4 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.2 + brightBlue: 49.7 + brightMagenta: 61.3 + brightCyan: 42.4 + brightWhite: 0 diff --git a/themes/pantone-dark-maroon-dark.yaml b/themes/pantone-dark-maroon-dark.yaml new file mode 100644 index 00000000..ad227b36 --- /dev/null +++ b/themes/pantone-dark-maroon-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Dark Maroon (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#140507" + fg: "#DBCACF" + black: "#140507" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#463655" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DBCACF" + brightBlack: "#7D4050" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 11 + contrast: + fg: 76.8 + black: 0 + red: 33 + green: 52.6 + yellow: 72.3 + blue: 0 + magenta: 34 + cyan: 53.2 + white: 76.8 + brightBlack: 15.4 + brightRed: 39.4 + brightGreen: 59.8 + brightYellow: 76.6 + brightBlue: 29.5 + brightMagenta: 42.6 + brightCyan: 59.8 + brightWhite: 99.1 diff --git a/themes/pantone-dark-maroon-light.yaml b/themes/pantone-dark-maroon-light.yaml new file mode 100644 index 00000000..f04bfda2 --- /dev/null +++ b/themes/pantone-dark-maroon-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Dark Maroon (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F7F4F5" + fg: "#1B0709" + black: "#1B0709" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F7F4F5" + brightBlack: "#7D3B4B" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.4 + black: 99.4 + red: 72.7 + green: 56.2 + yellow: 40.4 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 81.5 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.2 + brightBlue: 49.7 + brightMagenta: 61.3 + brightCyan: 42.4 + brightWhite: 0 diff --git a/themes/pantone-dark-red-dark.yaml b/themes/pantone-dark-red-dark.yaml new file mode 100644 index 00000000..337338ea --- /dev/null +++ b/themes/pantone-dark-red-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Dark Red (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#190408" + fg: "#DDCACF" + black: "#190408" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#57345A" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DDCACF" + brightBlack: "#883E53" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 9 + contrast: + fg: 76.9 + black: 0 + red: 32.9 + green: 52.5 + yellow: 72.1 + blue: 8.5 + magenta: 33.9 + cyan: 53.1 + white: 76.9 + brightBlack: 16.6 + brightRed: 39.3 + brightGreen: 59.7 + brightYellow: 76.5 + brightBlue: 29.4 + brightMagenta: 42.5 + brightCyan: 59.7 + brightWhite: 99 diff --git a/themes/pantone-dark-red-light.yaml b/themes/pantone-dark-red-light.yaml new file mode 100644 index 00000000..4375638d --- /dev/null +++ b/themes/pantone-dark-red-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Dark Red (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F7F4F5" + fg: "#23060B" + black: "#23060B" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F7F4F5" + brightBlack: "#8B394E" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99 + black: 99 + red: 72.7 + green: 56.2 + yellow: 40.4 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 79.4 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.2 + brightBlue: 49.7 + brightMagenta: 61.3 + brightCyan: 42.4 + brightWhite: 0 diff --git a/themes/pantone-deep-pink-dark.yaml b/themes/pantone-deep-pink-dark.yaml new file mode 100644 index 00000000..e83052e8 --- /dev/null +++ b/themes/pantone-deep-pink-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Deep Pink (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#22030E" + fg: "#E1C9D2" + black: "#22030E" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#72306E" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E1C9D2" + brightBlack: "#983C5F" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 1 + contrast: + fg: 76.9 + black: 0 + red: 32.6 + green: 52.2 + yellow: 71.8 + blue: 11.8 + magenta: 33.6 + cyan: 52.8 + white: 76.9 + brightBlack: 19 + brightRed: 39 + brightGreen: 59.4 + brightYellow: 76.2 + brightBlue: 29.1 + brightMagenta: 42.2 + brightCyan: 59.4 + brightWhite: 98.7 diff --git a/themes/pantone-deep-pink-light.yaml b/themes/pantone-deep-pink-light.yaml new file mode 100644 index 00000000..b62e2782 --- /dev/null +++ b/themes/pantone-deep-pink-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Deep Pink (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F4F5" + fg: "#2F0414" + black: "#2F0414" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F4F5" + brightBlack: "#A0365E" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.4 + black: 98.4 + red: 72.8 + green: 56.4 + yellow: 40.6 + blue: 83.8 + magenta: 80 + cyan: 73.1 + white: 0 + brightBlack: 75.8 + brightRed: 62.5 + brightGreen: 43.2 + brightYellow: 24.3 + brightBlue: 49.9 + brightMagenta: 61.4 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/pantone-dusty-blue-dark.yaml b/themes/pantone-dusty-blue-dark.yaml new file mode 100644 index 00000000..d3d88bb3 --- /dev/null +++ b/themes/pantone-dusty-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Dusty Blue (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#141A1D" + fg: "#D3DDE2" + black: "#141A1D" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#45769B" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D3DDE2" + brightBlack: "#658699" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F2F4F6" +meta: + mode: "dark" + accent: "orange" + hue: 230 + contrast: + fg: 83.7 + black: 0 + red: 31.9 + green: 51.5 + yellow: 71.2 + blue: 26.9 + magenta: 33 + cyan: 52.2 + white: 83.7 + brightBlack: 34.3 + brightRed: 38.3 + brightGreen: 58.8 + brightYellow: 75.6 + brightBlue: 28.5 + brightMagenta: 41.6 + brightCyan: 58.8 + brightWhite: 99.2 diff --git a/themes/pantone-dusty-blue-light.yaml b/themes/pantone-dusty-blue-light.yaml new file mode 100644 index 00000000..217c0e6a --- /dev/null +++ b/themes/pantone-dusty-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Dusty Blue (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F5F7F8" + fg: "#12181B" + black: "#12181B" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F5F7F8" + brightBlack: "#688A9D" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F2F4F6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.7 + black: 99.7 + red: 73.8 + green: 57.4 + yellow: 41.6 + blue: 84.8 + magenta: 81 + cyan: 74.1 + white: 0 + brightBlack: 59.3 + brightRed: 63.5 + brightGreen: 44.2 + brightYellow: 25.4 + brightBlue: 50.9 + brightMagenta: 62.5 + brightCyan: 43.6 + brightWhite: 0 diff --git a/themes/pantone-emerald-dark.yaml b/themes/pantone-emerald-dark.yaml new file mode 100644 index 00000000..e5ccfa41 --- /dev/null +++ b/themes/pantone-emerald-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Emerald (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#00251D" + fg: "#D8E3E1" + black: "#00251D" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#08707A" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D8E3E1" + brightBlack: "#6C9B90" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 175 + contrast: + fg: 86 + black: 0 + red: 30.9 + green: 50.5 + yellow: 70.2 + blue: 20.9 + magenta: 31.9 + cyan: 51.2 + white: 86 + brightBlack: 41.3 + brightRed: 37.3 + brightGreen: 57.8 + brightYellow: 74.5 + brightBlue: 27.5 + brightMagenta: 40.6 + brightCyan: 57.7 + brightWhite: 100.3 diff --git a/themes/pantone-emerald-light.yaml b/themes/pantone-emerald-light.yaml new file mode 100644 index 00000000..90cbe7f3 --- /dev/null +++ b/themes/pantone-emerald-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Emerald (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F9F9" + fg: "#002119" + black: "#002119" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F9F9" + brightBlack: "#5C9A8C" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 100 + black: 100 + red: 75.1 + green: 58.6 + yellow: 42.9 + blue: 86.1 + magenta: 82.3 + cyan: 75.4 + white: 0 + brightBlack: 56 + brightRed: 64.8 + brightGreen: 45.5 + brightYellow: 26.6 + brightBlue: 52.1 + brightMagenta: 63.7 + brightCyan: 44.9 + brightWhite: 0 diff --git a/themes/pantone-flame-orange-dark.yaml b/themes/pantone-flame-orange-dark.yaml new file mode 100644 index 00000000..ed9c6275 --- /dev/null +++ b/themes/pantone-flame-orange-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Flame Orange (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1F0F08" + fg: "#F8EBE4" + black: "#1F0F08" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#876462" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F8EBE4" + brightBlack: "#E8B499" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 44 + contrast: + fg: 95.6 + black: 0 + red: 32.4 + green: 52.1 + yellow: 71.7 + blue: 25.2 + magenta: 33.5 + cyan: 52.7 + white: 95.6 + brightBlack: 67.4 + brightRed: 38.9 + brightGreen: 59.3 + brightYellow: 76.1 + brightBlue: 29 + brightMagenta: 42.1 + brightCyan: 59.3 + brightWhite: 104.6 diff --git a/themes/pantone-flame-orange-light.yaml b/themes/pantone-flame-orange-light.yaml new file mode 100644 index 00000000..fc1e8b94 --- /dev/null +++ b/themes/pantone-flame-orange-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Flame Orange (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFCFA" + fg: "#26120A" + black: "#26120A" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFCFA" + brightBlack: "#EBAC8D" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.8 + black: 102.8 + red: 77.1 + green: 60.6 + yellow: 44.8 + blue: 88.1 + magenta: 84.3 + cyan: 77.4 + white: 0 + brightBlack: 35.4 + brightRed: 66.8 + brightGreen: 47.4 + brightYellow: 28.6 + brightBlue: 54.1 + brightMagenta: 65.7 + brightCyan: 46.8 + brightWhite: 0 diff --git a/themes/pantone-forest-green-dark.yaml b/themes/pantone-forest-green-dark.yaml new file mode 100644 index 00000000..7b44281f --- /dev/null +++ b/themes/pantone-forest-green-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Forest Green (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#0C1908" + fg: "#D9DBCB" + black: "#0C1908" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#2F7358" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D9DBCB" + brightBlack: "#748045" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: 139 + contrast: + fg: 82.9 + black: 0 + red: 32.2 + green: 51.8 + yellow: 71.5 + blue: 22.8 + magenta: 33.3 + cyan: 52.5 + white: 82.9 + brightBlack: 31.2 + brightRed: 38.6 + brightGreen: 59.1 + brightYellow: 75.9 + brightBlue: 28.8 + brightMagenta: 41.9 + brightCyan: 59.1 + brightWhite: 99.7 diff --git a/themes/pantone-forest-green-light.yaml b/themes/pantone-forest-green-light.yaml new file mode 100644 index 00000000..abfb422e --- /dev/null +++ b/themes/pantone-forest-green-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Forest Green (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F7F7F4" + fg: "#11220A" + black: "#11220A" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F7F7F4" + brightBlack: "#6E8442" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.7 + black: 98.7 + red: 73.9 + green: 57.5 + yellow: 41.7 + blue: 84.9 + magenta: 81.1 + cyan: 74.2 + white: 0 + brightBlack: 63.7 + brightRed: 63.6 + brightGreen: 44.3 + brightYellow: 25.4 + brightBlue: 51 + brightMagenta: 62.5 + brightCyan: 43.7 + brightWhite: 0 diff --git a/themes/pantone-fuchsia-rose-dark.yaml b/themes/pantone-fuchsia-rose-dark.yaml new file mode 100644 index 00000000..976ba06e --- /dev/null +++ b/themes/pantone-fuchsia-rose-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Fuchsia Rose (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#200B13" + fg: "#E0CDD4" + black: "#200B13" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#6B487B" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E0CDD4" + brightBlack: "#944A67" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 357 + contrast: + fg: 78.5 + black: 0 + red: 32.5 + green: 52.1 + yellow: 71.8 + blue: 15.8 + magenta: 33.5 + cyan: 52.8 + white: 78.5 + brightBlack: 21 + brightRed: 38.9 + brightGreen: 59.4 + brightYellow: 76.1 + brightBlue: 29.1 + brightMagenta: 42.2 + brightCyan: 59.3 + brightWhite: 98.6 diff --git a/themes/pantone-fuchsia-rose-light.yaml b/themes/pantone-fuchsia-rose-light.yaml new file mode 100644 index 00000000..2a9df0e4 --- /dev/null +++ b/themes/pantone-fuchsia-rose-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Fuchsia Rose (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F4F6" + fg: "#1E0A12" + black: "#1E0A12" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F4F6" + brightBlack: "#9B4969" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.3 + black: 99.3 + red: 72.9 + green: 56.4 + yellow: 40.6 + blue: 83.9 + magenta: 80 + cyan: 73.2 + white: 0 + brightBlack: 73.2 + brightRed: 62.5 + brightGreen: 43.2 + brightYellow: 24.4 + brightBlue: 49.9 + brightMagenta: 61.5 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/pantone-gold-dark.yaml b/themes/pantone-gold-dark.yaml new file mode 100644 index 00000000..eaa2ed98 --- /dev/null +++ b/themes/pantone-gold-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Gold (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#15130C" + fg: "#DDD8CD" + black: "#15130C" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#4A6168" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DDD8CD" + brightBlack: "#84754E" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: 94 + contrast: + fg: 82.5 + black: 0 + red: 32.5 + green: 52.1 + yellow: 71.8 + blue: 18.8 + magenta: 33.5 + cyan: 52.8 + white: 82.5 + brightBlack: 29.6 + brightRed: 38.9 + brightGreen: 59.4 + brightYellow: 76.1 + brightBlue: 29.1 + brightMagenta: 42.2 + brightCyan: 59.3 + brightWhite: 100 diff --git a/themes/pantone-gold-light.yaml b/themes/pantone-gold-light.yaml new file mode 100644 index 00000000..e3efe746 --- /dev/null +++ b/themes/pantone-gold-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Gold (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F4" + fg: "#1D1A11" + black: "#1D1A11" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F4" + brightBlack: "#84754E" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.5 + black: 99.5 + red: 74 + green: 57.6 + yellow: 41.8 + blue: 85 + magenta: 81.2 + cyan: 74.4 + white: 0 + brightBlack: 66.7 + brightRed: 63.7 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/pantone-golden-yellow-dark.yaml b/themes/pantone-golden-yellow-dark.yaml new file mode 100644 index 00000000..b8e1d1a9 --- /dev/null +++ b/themes/pantone-golden-yellow-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Golden Yellow (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1C1509" + fg: "#EFE6D9" + black: "#1C1509" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#7C7D68" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#EFE6D9" + brightBlack: "#C7A674" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F9F8F5" +meta: + mode: "dark" + accent: "orange" + hue: 80 + contrast: + fg: 91.4 + black: 0 + red: 32.2 + green: 51.8 + yellow: 71.5 + blue: 31.7 + magenta: 33.3 + cyan: 52.5 + white: 91.4 + brightBlack: 55.9 + brightRed: 38.6 + brightGreen: 59.1 + brightYellow: 75.9 + brightBlue: 28.8 + brightMagenta: 41.9 + brightCyan: 59.1 + brightWhite: 102.3 diff --git a/themes/pantone-golden-yellow-light.yaml b/themes/pantone-golden-yellow-light.yaml new file mode 100644 index 00000000..d35b5bfe --- /dev/null +++ b/themes/pantone-golden-yellow-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Golden Yellow (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FBFAF7" + fg: "#231A0C" + black: "#231A0C" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FBFAF7" + brightBlack: "#CCA76E" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F9F8F5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101 + black: 101 + red: 75.8 + green: 59.4 + yellow: 43.6 + blue: 86.8 + magenta: 83 + cyan: 76.1 + white: 0 + brightBlack: 41.4 + brightRed: 65.5 + brightGreen: 46.2 + brightYellow: 27.4 + brightBlue: 52.9 + brightMagenta: 64.5 + brightCyan: 45.6 + brightWhite: 0 diff --git a/themes/pantone-graphite-dark.yaml b/themes/pantone-graphite-dark.yaml new file mode 100644 index 00000000..3958096c --- /dev/null +++ b/themes/pantone-graphite-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Graphite (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#0C0D0E" + fg: "#CDCFD0" + black: "#0C0D0E" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#2F506D" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#CDCFD0" + brightBlack: "#4E5358" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F1F1F2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 77 + black: 0 + red: 32.9 + green: 52.5 + yellow: 72.2 + blue: 13 + magenta: 33.9 + cyan: 53.2 + white: 77 + brightBlack: 14.8 + brightRed: 39.3 + brightGreen: 59.8 + brightYellow: 76.5 + brightBlue: 29.5 + brightMagenta: 42.6 + brightCyan: 59.7 + brightWhite: 98.5 diff --git a/themes/pantone-graphite-light.yaml b/themes/pantone-graphite-light.yaml new file mode 100644 index 00000000..dc98f2e0 --- /dev/null +++ b/themes/pantone-graphite-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Graphite (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F4F5F5" + fg: "#111213" + black: "#111213" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F4F5F5" + brightBlack: "#4E5358" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F1F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.2 + black: 99.2 + red: 72.7 + green: 56.3 + yellow: 40.5 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 80.9 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.3 + brightBlue: 49.8 + brightMagenta: 61.4 + brightCyan: 42.5 + brightWhite: 0 diff --git a/themes/pantone-green-dark.yaml b/themes/pantone-green-dark.yaml new file mode 100644 index 00000000..d1154091 --- /dev/null +++ b/themes/pantone-green-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Green (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#131E05" + fg: "#DCDDCA" + black: "#131E05" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#448551" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DCDDCA" + brightBlack: "#808B40" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: 129 + contrast: + fg: 83.6 + black: 0 + red: 31.7 + green: 51.3 + yellow: 71 + blue: 29.5 + magenta: 32.7 + cyan: 51.9 + white: 83.6 + brightBlack: 35.7 + brightRed: 38.1 + brightGreen: 58.5 + brightYellow: 75.3 + brightBlue: 28.3 + brightMagenta: 41.3 + brightCyan: 58.5 + brightWhite: 99.2 diff --git a/themes/pantone-green-light.yaml b/themes/pantone-green-light.yaml new file mode 100644 index 00000000..9a801b79 --- /dev/null +++ b/themes/pantone-green-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Green (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F4" + fg: "#1A2A07" + black: "#1A2A07" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F4" + brightBlack: "#7F923C" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.3 + black: 97.3 + red: 74 + green: 57.6 + yellow: 41.8 + blue: 85 + magenta: 81.2 + cyan: 74.4 + white: 0 + brightBlack: 57.2 + brightRed: 63.7 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/pantone-greenery-dark.yaml b/themes/pantone-greenery-dark.yaml new file mode 100644 index 00000000..91c24c3e --- /dev/null +++ b/themes/pantone-greenery-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Greenery (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#161C0C" + fg: "#DDDDCD" + black: "#161C0C" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#4C7E66" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DDDDCD" + brightBlack: "#85874D" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: 126 + contrast: + fg: 84 + black: 0 + red: 31.8 + green: 51.4 + yellow: 71.1 + blue: 27.9 + magenta: 32.9 + cyan: 52.1 + white: 84 + brightBlack: 35.1 + brightRed: 38.2 + brightGreen: 58.7 + brightYellow: 75.5 + brightBlue: 28.4 + brightMagenta: 41.5 + brightCyan: 58.7 + brightWhite: 99.3 diff --git a/themes/pantone-greenery-light.yaml b/themes/pantone-greenery-light.yaml new file mode 100644 index 00000000..a55e6797 --- /dev/null +++ b/themes/pantone-greenery-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Greenery (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F4" + fg: "#1E2710" + black: "#1E2710" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F4" + brightBlack: "#868D4D" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.6 + black: 97.6 + red: 74 + green: 57.6 + yellow: 41.8 + blue: 85 + magenta: 81.2 + cyan: 74.4 + white: 0 + brightBlack: 58.2 + brightRed: 63.7 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/pantone-honeysuckle-dark.yaml b/themes/pantone-honeysuckle-dark.yaml new file mode 100644 index 00000000..d7b5f78e --- /dev/null +++ b/themes/pantone-honeysuckle-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Honeysuckle (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#230D12" + fg: "#E1CDD4" + black: "#230D12" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#744E79" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E1CDD4" + brightBlack: "#994E66" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 7 + contrast: + fg: 78.4 + black: 0 + red: 32.3 + green: 51.9 + yellow: 71.6 + blue: 17.9 + magenta: 33.4 + cyan: 52.6 + white: 78.4 + brightBlack: 22.4 + brightRed: 38.8 + brightGreen: 59.2 + brightYellow: 76 + brightBlue: 28.9 + brightMagenta: 42 + brightCyan: 59.2 + brightWhite: 98.5 diff --git a/themes/pantone-honeysuckle-light.yaml b/themes/pantone-honeysuckle-light.yaml new file mode 100644 index 00000000..2208cc00 --- /dev/null +++ b/themes/pantone-honeysuckle-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Honeysuckle (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F4F6" + fg: "#210C11" + black: "#210C11" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F4F6" + brightBlack: "#A24E67" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.1 + black: 99.1 + red: 72.9 + green: 56.4 + yellow: 40.6 + blue: 83.9 + magenta: 80 + cyan: 73.2 + white: 0 + brightBlack: 71.1 + brightRed: 62.5 + brightGreen: 43.2 + brightYellow: 24.4 + brightBlue: 49.9 + brightMagenta: 61.5 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/pantone-hot-pink-dark.yaml b/themes/pantone-hot-pink-dark.yaml new file mode 100644 index 00000000..9d9a3011 --- /dev/null +++ b/themes/pantone-hot-pink-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Hot Pink (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#250A11" + fg: "#E2CCD4" + black: "#250A11" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#7C4577" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E2CCD4" + brightBlack: "#9E4964" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 6 + contrast: + fg: 78.2 + black: 0 + red: 32.3 + green: 52 + yellow: 71.6 + blue: 16.9 + magenta: 33.4 + cyan: 52.6 + white: 78.2 + brightBlack: 22.2 + brightRed: 38.8 + brightGreen: 59.2 + brightYellow: 76 + brightBlue: 28.9 + brightMagenta: 42 + brightCyan: 59.2 + brightWhite: 98.5 diff --git a/themes/pantone-hot-pink-light.yaml b/themes/pantone-hot-pink-light.yaml new file mode 100644 index 00000000..9d741ed3 --- /dev/null +++ b/themes/pantone-hot-pink-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Hot Pink (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F4F6" + fg: "#230910" + black: "#230910" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F4F6" + brightBlack: "#A84765" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.1 + black: 99.1 + red: 72.9 + green: 56.4 + yellow: 40.6 + blue: 83.9 + magenta: 80 + cyan: 73.2 + white: 0 + brightBlack: 71.4 + brightRed: 62.5 + brightGreen: 43.2 + brightYellow: 24.4 + brightBlue: 49.9 + brightMagenta: 61.5 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/pantone-ice-blue-dark.yaml b/themes/pantone-ice-blue-dark.yaml new file mode 100644 index 00000000..1a2d8261 --- /dev/null +++ b/themes/pantone-ice-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Ice Blue (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#121A1C" + fg: "#D6E0E6" + black: "#121A1C" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#5491B6" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D6E0E6" + brightBlack: "#6E96A9" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F2F4F6" +meta: + mode: "dark" + accent: "orange" + hue: 215 + contrast: + fg: 85.7 + black: 0 + red: 31.9 + green: 51.6 + yellow: 71.2 + blue: 38.7 + magenta: 33 + cyan: 52.2 + white: 85.7 + brightBlack: 41.6 + brightRed: 38.4 + brightGreen: 58.8 + brightYellow: 75.6 + brightBlue: 28.5 + brightMagenta: 41.6 + brightCyan: 58.8 + brightWhite: 99.3 diff --git a/themes/pantone-ice-blue-light.yaml b/themes/pantone-ice-blue-light.yaml new file mode 100644 index 00000000..4ba4c69b --- /dev/null +++ b/themes/pantone-ice-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Ice Blue (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F6F8F9" + fg: "#172023" + black: "#172023" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F6F8F9" + brightBlack: "#749FB2" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F2F4F6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.1 + black: 99.1 + red: 74.4 + green: 58 + yellow: 42.2 + blue: 85.4 + magenta: 81.6 + cyan: 74.7 + white: 0 + brightBlack: 50.3 + brightRed: 64.1 + brightGreen: 44.8 + brightYellow: 26 + brightBlue: 51.5 + brightMagenta: 63.1 + brightCyan: 44.2 + brightWhite: 0 diff --git a/themes/pantone-illuminating-dark.yaml b/themes/pantone-illuminating-dark.yaml new file mode 100644 index 00000000..e116c1c4 --- /dev/null +++ b/themes/pantone-illuminating-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Illuminating (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1D1B09" + fg: "#E4E0CD" + black: "#1D1B09" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#829667" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E4E0CD" + brightBlack: "#A6954E" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: 103 + contrast: + fg: 86.2 + black: 0 + red: 31.7 + green: 51.4 + yellow: 71 + blue: 40.8 + magenta: 32.8 + cyan: 52 + white: 86.2 + brightBlack: 43.9 + brightRed: 38.2 + brightGreen: 58.6 + brightYellow: 75.4 + brightBlue: 28.3 + brightMagenta: 41.4 + brightCyan: 58.6 + brightWhite: 99.2 diff --git a/themes/pantone-illuminating-light.yaml b/themes/pantone-illuminating-light.yaml new file mode 100644 index 00000000..5dd873dc --- /dev/null +++ b/themes/pantone-illuminating-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Illuminating (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F4" + fg: "#25210C" + black: "#25210C" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F4" + brightBlack: "#B19F4E" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.3 + black: 98.3 + red: 74 + green: 57.6 + yellow: 41.8 + blue: 85 + magenta: 81.2 + cyan: 74.4 + white: 0 + brightBlack: 46.7 + brightRed: 63.7 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/pantone-indigo-dark.yaml b/themes/pantone-indigo-dark.yaml new file mode 100644 index 00000000..572f8e83 --- /dev/null +++ b/themes/pantone-indigo-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Indigo (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#040916" + fg: "#CACDD4" + black: "#040916" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#154187" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#CACDD4" + brightBlack: "#3F4A68" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F1F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 263 + contrast: + fg: 76.1 + black: 0 + red: 33 + green: 52.6 + yellow: 72.3 + blue: 10 + magenta: 34 + cyan: 53.3 + white: 76.1 + brightBlack: 12.1 + brightRed: 39.4 + brightGreen: 59.9 + brightYellow: 76.7 + brightBlue: 29.6 + brightMagenta: 42.7 + brightCyan: 59.9 + brightWhite: 98.6 diff --git a/themes/pantone-indigo-light.yaml b/themes/pantone-indigo-light.yaml new file mode 100644 index 00000000..9dc78c54 --- /dev/null +++ b/themes/pantone-indigo-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Indigo (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F4F5F5" + fg: "#060C1F" + black: "#060C1F" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F4F5F5" + brightBlack: "#3A476D" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F1F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.5 + black: 99.5 + red: 72.7 + green: 56.3 + yellow: 40.5 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 84.8 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.3 + brightBlue: 49.8 + brightMagenta: 61.4 + brightCyan: 42.5 + brightWhite: 0 diff --git a/themes/pantone-khaki-dark.yaml b/themes/pantone-khaki-dark.yaml new file mode 100644 index 00000000..b09437ed --- /dev/null +++ b/themes/pantone-khaki-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Khaki (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#161410" + fg: "#EBE5DD" + black: "#161410" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#647883" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#EBE5DD" + brightBlack: "#B9A384" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F9F8F5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 90.7 + black: 0 + red: 32.4 + green: 52 + yellow: 71.7 + blue: 28.9 + magenta: 33.4 + cyan: 52.7 + white: 90.7 + brightBlack: 53.4 + brightRed: 38.8 + brightGreen: 59.3 + brightYellow: 76.1 + brightBlue: 29 + brightMagenta: 42.1 + brightCyan: 59.3 + brightWhite: 102.5 diff --git a/themes/pantone-khaki-light.yaml b/themes/pantone-khaki-light.yaml new file mode 100644 index 00000000..5844b9a7 --- /dev/null +++ b/themes/pantone-khaki-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Khaki (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FBF9F8" + fg: "#1C1814" + black: "#1C1814" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FBF9F8" + brightBlack: "#B9A384" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F9F8F5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.1 + black: 101.1 + red: 75.4 + green: 59 + yellow: 43.2 + blue: 86.5 + magenta: 82.6 + cyan: 75.8 + white: 0 + brightBlack: 44.5 + brightRed: 65.1 + brightGreen: 45.8 + brightYellow: 27 + brightBlue: 52.5 + brightMagenta: 64.1 + brightCyan: 45.2 + brightWhite: 0 diff --git a/themes/pantone-lavender-dark.yaml b/themes/pantone-lavender-dark.yaml new file mode 100644 index 00000000..69172fae --- /dev/null +++ b/themes/pantone-lavender-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Lavender (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#171021" + fg: "#D2D0D8" + black: "#171021" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#5058A7" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D2D0D8" + brightBlack: "#62587B" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F1F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 302 + contrast: + fg: 78 + black: 0 + red: 32.4 + green: 52.1 + yellow: 71.7 + blue: 19.7 + magenta: 33.5 + cyan: 52.7 + white: 78 + brightBlack: 18.7 + brightRed: 38.9 + brightGreen: 59.3 + brightYellow: 76.1 + brightBlue: 29 + brightMagenta: 42.1 + brightCyan: 59.3 + brightWhite: 98 diff --git a/themes/pantone-lavender-light.yaml b/themes/pantone-lavender-light.yaml new file mode 100644 index 00000000..d4420cbb --- /dev/null +++ b/themes/pantone-lavender-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Lavender (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F5F5F6" + fg: "#160F1F" + black: "#160F1F" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F5F5F6" + brightBlack: "#685987" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F1F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.3 + black: 99.3 + red: 72.9 + green: 56.4 + yellow: 40.7 + blue: 83.9 + magenta: 80.1 + cyan: 73.2 + white: 0 + brightBlack: 75.1 + brightRed: 62.6 + brightGreen: 43.3 + brightYellow: 24.4 + brightBlue: 49.9 + brightMagenta: 61.5 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/pantone-lilac-dark.yaml b/themes/pantone-lilac-dark.yaml new file mode 100644 index 00000000..448abefc --- /dev/null +++ b/themes/pantone-lilac-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Lilac (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1C191B" + fg: "#E2D7DC" + black: "#1C191B" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#7C90B2" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E2D7DC" + brightBlack: "#9E7688" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 82.7 + black: 0 + red: 31.8 + green: 51.5 + yellow: 71.1 + blue: 40.8 + magenta: 32.9 + cyan: 52.1 + white: 82.7 + brightBlack: 34.1 + brightRed: 38.3 + brightGreen: 58.7 + brightYellow: 75.5 + brightBlue: 28.4 + brightMagenta: 41.5 + brightCyan: 58.7 + brightWhite: 98 diff --git a/themes/pantone-lilac-light.yaml b/themes/pantone-lilac-light.yaml new file mode 100644 index 00000000..ffe084ed --- /dev/null +++ b/themes/pantone-lilac-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Lilac (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F5F6" + fg: "#232022" + black: "#232022" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F5F6" + brightBlack: "#A88395" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.6 + black: 97.6 + red: 73.3 + green: 56.8 + yellow: 41 + blue: 84.3 + magenta: 80.5 + cyan: 73.6 + white: 0 + brightBlack: 54.9 + brightRed: 63 + brightGreen: 43.6 + brightYellow: 24.8 + brightBlue: 50.3 + brightMagenta: 61.9 + brightCyan: 43 + brightWhite: 0 diff --git a/themes/pantone-lime-green-dark.yaml b/themes/pantone-lime-green-dark.yaml new file mode 100644 index 00000000..d5e5bcc4 --- /dev/null +++ b/themes/pantone-lime-green-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Lime Green (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#182200" + fg: "#DEDFC8" + black: "#182200" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#539241" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DEDFC8" + brightBlack: "#8A9237" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: 124 + contrast: + fg: 84.2 + black: 0 + red: 31.2 + green: 50.8 + yellow: 70.4 + blue: 34.5 + magenta: 32.2 + cyan: 51.4 + white: 84.2 + brightBlack: 38.7 + brightRed: 37.6 + brightGreen: 58 + brightYellow: 74.8 + brightBlue: 27.7 + brightMagenta: 40.8 + brightCyan: 58 + brightWhite: 98.6 diff --git a/themes/pantone-lime-green-light.yaml b/themes/pantone-lime-green-light.yaml new file mode 100644 index 00000000..a57aecf7 --- /dev/null +++ b/themes/pantone-lime-green-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Lime Green (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F4" + fg: "#212F00" + black: "#212F00" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F4" + brightBlack: "#8C9C2F" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.1 + black: 96.1 + red: 74 + green: 57.6 + yellow: 41.8 + blue: 85 + magenta: 81.2 + cyan: 74.4 + white: 0 + brightBlack: 52.3 + brightRed: 63.7 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/pantone-living-coral-dark.yaml b/themes/pantone-living-coral-dark.yaml new file mode 100644 index 00000000..d658d7f6 --- /dev/null +++ b/themes/pantone-living-coral-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Living Coral (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1F0D0C" + fg: "#F8EBE6" + black: "#1F0D0C" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#875E71" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F8EBE6" + brightBlack: "#E8B1A2" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 24 + contrast: + fg: 95.8 + black: 0 + red: 32.5 + green: 52.1 + yellow: 71.8 + blue: 24.1 + magenta: 33.5 + cyan: 52.8 + white: 95.8 + brightBlack: 66.6 + brightRed: 38.9 + brightGreen: 59.4 + brightYellow: 76.2 + brightBlue: 29.1 + brightMagenta: 42.2 + brightCyan: 59.4 + brightWhite: 104.7 diff --git a/themes/pantone-living-coral-light.yaml b/themes/pantone-living-coral-light.yaml new file mode 100644 index 00000000..21d480a8 --- /dev/null +++ b/themes/pantone-living-coral-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Living Coral (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFBFB" + fg: "#26110F" + black: "#26110F" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFBFB" + brightBlack: "#EBA799" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.4 + black: 102.4 + red: 76.7 + green: 60.2 + yellow: 44.4 + blue: 87.7 + magenta: 83.9 + cyan: 77 + white: 0 + brightBlack: 36.4 + brightRed: 66.4 + brightGreen: 47 + brightYellow: 28.2 + brightBlue: 53.7 + brightMagenta: 65.3 + brightCyan: 46.4 + brightWhite: 0 diff --git a/themes/pantone-marsala-dark.yaml b/themes/pantone-marsala-dark.yaml new file mode 100644 index 00000000..b8b47457 --- /dev/null +++ b/themes/pantone-marsala-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Marsala (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#180D0D" + fg: "#DDCDD2" + black: "#180D0D" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#524F69" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DDCDD2" + brightBlack: "#854F5C" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 19 + contrast: + fg: 78.2 + black: 0 + red: 32.7 + green: 52.3 + yellow: 72 + blue: 14.5 + magenta: 33.7 + cyan: 53 + white: 78.2 + brightBlack: 19.7 + brightRed: 39.1 + brightGreen: 59.6 + brightYellow: 76.4 + brightBlue: 29.3 + brightMagenta: 42.4 + brightCyan: 59.6 + brightWhite: 98.8 diff --git a/themes/pantone-marsala-light.yaml b/themes/pantone-marsala-light.yaml new file mode 100644 index 00000000..891b0cf4 --- /dev/null +++ b/themes/pantone-marsala-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Marsala (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F7F4F5" + fg: "#211212" + black: "#211212" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F7F4F5" + brightBlack: "#874F5B" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.6 + black: 98.6 + red: 72.7 + green: 56.2 + yellow: 40.4 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 75.3 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.2 + brightBlue: 49.7 + brightMagenta: 61.3 + brightCyan: 42.4 + brightWhite: 0 diff --git a/themes/pantone-mauve-dark.yaml b/themes/pantone-mauve-dark.yaml new file mode 100644 index 00000000..6f584a51 --- /dev/null +++ b/themes/pantone-mauve-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Mauve (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#140C10" + fg: "#DBCDD3" + black: "#140C10" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#474D71" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DBCDD3" + brightBlack: "#7E4D61" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 347 + contrast: + fg: 78 + black: 0 + red: 32.8 + green: 52.4 + yellow: 72.1 + blue: 13.6 + magenta: 33.9 + cyan: 53.1 + white: 78 + brightBlack: 18.6 + brightRed: 39.2 + brightGreen: 59.7 + brightYellow: 76.5 + brightBlue: 29.4 + brightMagenta: 42.5 + brightCyan: 59.7 + brightWhite: 98.9 diff --git a/themes/pantone-mauve-light.yaml b/themes/pantone-mauve-light.yaml new file mode 100644 index 00000000..877a72d5 --- /dev/null +++ b/themes/pantone-mauve-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Mauve (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F7F4F6" + fg: "#1C1115" + black: "#1C1115" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F7F4F6" + brightBlack: "#7E4D61" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.9 + black: 98.9 + red: 72.7 + green: 56.3 + yellow: 40.5 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 76.9 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.3 + brightBlue: 49.8 + brightMagenta: 61.4 + brightCyan: 42.5 + brightWhite: 0 diff --git a/themes/pantone-mimosa-dark.yaml b/themes/pantone-mimosa-dark.yaml new file mode 100644 index 00000000..2aafa1a1 --- /dev/null +++ b/themes/pantone-mimosa-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Mimosa (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1D170A" + fg: "#E4DECE" + black: "#1D170A" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#7F8669" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E4DECE" + brightBlack: "#A48C4F" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: 86 + contrast: + fg: 85.7 + black: 0 + red: 32 + green: 51.7 + yellow: 71.3 + blue: 35 + magenta: 33.1 + cyan: 52.3 + white: 85.7 + brightBlack: 40.8 + brightRed: 38.5 + brightGreen: 58.9 + brightYellow: 75.7 + brightBlue: 28.6 + brightMagenta: 41.7 + brightCyan: 58.9 + brightWhite: 99.5 diff --git a/themes/pantone-mimosa-light.yaml b/themes/pantone-mimosa-light.yaml new file mode 100644 index 00000000..4a520ad8 --- /dev/null +++ b/themes/pantone-mimosa-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Mimosa (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F4" + fg: "#241D0C" + black: "#241D0C" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F4" + brightBlack: "#AF934F" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.8 + black: 98.8 + red: 74 + green: 57.6 + yellow: 41.8 + blue: 85 + magenta: 81.2 + cyan: 74.4 + white: 0 + brightBlack: 51.2 + brightRed: 63.7 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/pantone-mint-green-dark.yaml b/themes/pantone-mint-green-dark.yaml new file mode 100644 index 00000000..cbeea5b3 --- /dev/null +++ b/themes/pantone-mint-green-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Mint Green (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#101917" + fg: "#E1E7E6" + black: "#101917" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#4B8EA0" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E1E7E6" + brightBlack: "#94ADA7" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 180 + contrast: + fg: 90.4 + black: 0 + red: 32.1 + green: 51.7 + yellow: 71.4 + blue: 36.2 + magenta: 33.2 + cyan: 52.4 + white: 90.4 + brightBlack: 53.9 + brightRed: 38.5 + brightGreen: 59 + brightYellow: 75.8 + brightBlue: 28.7 + brightMagenta: 41.8 + brightCyan: 59 + brightWhite: 101.6 diff --git a/themes/pantone-mint-green-light.yaml b/themes/pantone-mint-green-light.yaml new file mode 100644 index 00000000..54af9722 --- /dev/null +++ b/themes/pantone-mint-green-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Mint Green (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F9F9F9" + fg: "#141F1D" + black: "#141F1D" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F9F9F9" + brightBlack: "#92B2AB" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 100.2 + black: 100.2 + red: 75.2 + green: 58.8 + yellow: 43 + blue: 86.2 + magenta: 82.4 + cyan: 75.5 + white: 0 + brightBlack: 41.5 + brightRed: 64.9 + brightGreen: 45.6 + brightYellow: 26.8 + brightBlue: 52.3 + brightMagenta: 63.9 + brightCyan: 45 + brightWhite: 0 diff --git a/themes/pantone-mocha-mousse-dark.yaml b/themes/pantone-mocha-mousse-dark.yaml new file mode 100644 index 00000000..93834726 --- /dev/null +++ b/themes/pantone-mocha-mousse-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Mocha Mousse (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1A1310" + fg: "#F2EBE7" + black: "#1A1310" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#5A6273" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F2EBE7" + brightBlack: "#CDB4A3" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 44 + contrast: + fg: 94.8 + black: 0 + red: 32.4 + green: 52 + yellow: 71.6 + blue: 20.5 + magenta: 33.4 + cyan: 52.6 + white: 94.8 + brightBlack: 63.6 + brightRed: 38.8 + brightGreen: 59.2 + brightYellow: 76 + brightBlue: 28.9 + brightMagenta: 42 + brightCyan: 59.2 + brightWhite: 104.5 diff --git a/themes/pantone-mocha-mousse-light.yaml b/themes/pantone-mocha-mousse-light.yaml new file mode 100644 index 00000000..8208633c --- /dev/null +++ b/themes/pantone-mocha-mousse-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Mocha Mousse (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFCFB" + fg: "#19120F" + black: "#19120F" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFCFB" + brightBlack: "#C7AB9A" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103.4 + black: 103.4 + red: 77.1 + green: 60.6 + yellow: 44.9 + blue: 88.1 + magenta: 84.3 + cyan: 77.4 + white: 0 + brightBlack: 40.7 + brightRed: 66.8 + brightGreen: 47.5 + brightYellow: 28.6 + brightBlue: 54.1 + brightMagenta: 65.7 + brightCyan: 46.9 + brightWhite: 0 diff --git a/themes/pantone-navy-dark.yaml b/themes/pantone-navy-dark.yaml new file mode 100644 index 00000000..e2d4e020 --- /dev/null +++ b/themes/pantone-navy-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Navy (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#070B1B" + fg: "#CACCD2" + black: "#070B1B" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#153B76" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#CACCD2" + brightBlack: "#3F475E" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F1F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 271 + contrast: + fg: 75.4 + black: 0 + red: 32.9 + green: 52.5 + yellow: 72.2 + blue: 7.4 + magenta: 33.9 + cyan: 53.2 + white: 75.4 + brightBlack: 10.8 + brightRed: 39.3 + brightGreen: 59.8 + brightYellow: 76.6 + brightBlue: 29.5 + brightMagenta: 42.6 + brightCyan: 59.8 + brightWhite: 98.5 diff --git a/themes/pantone-navy-light.yaml b/themes/pantone-navy-light.yaml new file mode 100644 index 00000000..9854e141 --- /dev/null +++ b/themes/pantone-navy-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Navy (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F4F4F5" + fg: "#060918" + black: "#060918" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F4F4F5" + brightBlack: "#3A4360" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F1F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.3 + black: 99.3 + red: 72.3 + green: 55.8 + yellow: 40.1 + blue: 83.3 + magenta: 79.5 + cyan: 72.6 + white: 0 + brightBlack: 86.1 + brightRed: 62 + brightGreen: 42.7 + brightYellow: 23.8 + brightBlue: 49.3 + brightMagenta: 60.9 + brightCyan: 42.1 + brightWhite: 0 diff --git a/themes/pantone-neon-blue-dark.yaml b/themes/pantone-neon-blue-dark.yaml new file mode 100644 index 00000000..b88cdf28 --- /dev/null +++ b/themes/pantone-neon-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Neon Blue (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#001D24" + fg: "#CBDEE5" + black: "#001D24" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#0880B1" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#CBDEE5" + brightBlack: "#408CA6" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F2F4F6" +meta: + mode: "dark" + accent: "orange" + hue: 216 + contrast: + fg: 83.1 + black: 0 + red: 31.7 + green: 51.3 + yellow: 71 + blue: 30 + magenta: 32.8 + cyan: 52 + white: 83.1 + brightBlack: 34.9 + brightRed: 38.1 + brightGreen: 58.6 + brightYellow: 75.4 + brightBlue: 28.3 + brightMagenta: 41.4 + brightCyan: 58.6 + brightWhite: 99 diff --git a/themes/pantone-neon-blue-light.yaml b/themes/pantone-neon-blue-light.yaml new file mode 100644 index 00000000..9bdcccb8 --- /dev/null +++ b/themes/pantone-neon-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Neon Blue (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F5F7F9" + fg: "#002831" + black: "#002831" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F5F7F9" + brightBlack: "#3792AF" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F2F4F6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.3 + black: 97.3 + red: 73.9 + green: 57.4 + yellow: 41.6 + blue: 84.9 + magenta: 81.1 + cyan: 74.2 + white: 0 + brightBlack: 58 + brightRed: 63.6 + brightGreen: 44.2 + brightYellow: 25.4 + brightBlue: 50.9 + brightMagenta: 62.5 + brightCyan: 43.6 + brightWhite: 0 diff --git a/themes/pantone-neon-green-dark.yaml b/themes/pantone-neon-green-dark.yaml new file mode 100644 index 00000000..38e0062f --- /dev/null +++ b/themes/pantone-neon-green-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Neon Green (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#0E1F0F" + fg: "#E0EBE1" + black: "#0E1F0F" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#43A67E" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E0EBE1" + brightBlack: "#8FBB93" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 145 + contrast: + fg: 91.4 + black: 0 + red: 31.6 + green: 51.2 + yellow: 70.9 + blue: 43.8 + magenta: 32.7 + cyan: 51.9 + white: 91.4 + brightBlack: 58.1 + brightRed: 38.1 + brightGreen: 58.5 + brightYellow: 75.3 + brightBlue: 28.2 + brightMagenta: 41.3 + brightCyan: 58.5 + brightWhite: 101.1 diff --git a/themes/pantone-neon-green-light.yaml b/themes/pantone-neon-green-light.yaml new file mode 100644 index 00000000..24569cfa --- /dev/null +++ b/themes/pantone-neon-green-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Neon Green (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F9FAF9" + fg: "#122612" + black: "#122612" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F9FAF9" + brightBlack: "#8CC58F" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.7 + black: 99.7 + red: 75.7 + green: 59.2 + yellow: 43.4 + blue: 86.7 + magenta: 82.8 + cyan: 76 + white: 0 + brightBlack: 35.5 + brightRed: 65.4 + brightGreen: 46 + brightYellow: 27.2 + brightBlue: 52.7 + brightMagenta: 64.3 + brightCyan: 45.4 + brightWhite: 0 diff --git a/themes/pantone-neon-orange-dark.yaml b/themes/pantone-neon-orange-dark.yaml new file mode 100644 index 00000000..9dae1721 --- /dev/null +++ b/themes/pantone-neon-orange-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Neon Orange (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1F0D0A" + fg: "#F8EAE6" + black: "#1F0D0A" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#875C6B" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F8EAE6" + brightBlack: "#E8B09E" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 30 + contrast: + fg: 95.3 + black: 0 + red: 32.5 + green: 52.1 + yellow: 71.8 + blue: 23.4 + magenta: 33.6 + cyan: 52.8 + white: 95.3 + brightBlack: 66.1 + brightRed: 38.9 + brightGreen: 59.4 + brightYellow: 76.2 + brightBlue: 29.1 + brightMagenta: 42.2 + brightCyan: 59.4 + brightWhite: 104.7 diff --git a/themes/pantone-neon-orange-light.yaml b/themes/pantone-neon-orange-light.yaml new file mode 100644 index 00000000..ebbb1929 --- /dev/null +++ b/themes/pantone-neon-orange-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Neon Orange (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFBFA" + fg: "#26100D" + black: "#26100D" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFBFA" + brightBlack: "#EBA694" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.5 + black: 102.5 + red: 76.6 + green: 60.2 + yellow: 44.4 + blue: 87.6 + magenta: 83.8 + cyan: 77 + white: 0 + brightBlack: 36.8 + brightRed: 66.3 + brightGreen: 47 + brightYellow: 28.2 + brightBlue: 53.7 + brightMagenta: 65.3 + brightCyan: 46.4 + brightWhite: 0 diff --git a/themes/pantone-neon-pink-dark.yaml b/themes/pantone-neon-pink-dark.yaml new file mode 100644 index 00000000..3f7bce94 --- /dev/null +++ b/themes/pantone-neon-pink-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Neon Pink (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1F0713" + fg: "#E4CCD7" + black: "#1F0713" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#874491" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E4CCD7" + brightBlack: "#A54874" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 351 + contrast: + fg: 78.9 + black: 0 + red: 32.6 + green: 52.2 + yellow: 71.9 + blue: 19.8 + magenta: 33.7 + cyan: 52.9 + white: 78.9 + brightBlack: 24 + brightRed: 39 + brightGreen: 59.5 + brightYellow: 76.3 + brightBlue: 29.2 + brightMagenta: 42.3 + brightCyan: 59.5 + brightWhite: 98.8 diff --git a/themes/pantone-neon-pink-light.yaml b/themes/pantone-neon-pink-light.yaml new file mode 100644 index 00000000..976686b7 --- /dev/null +++ b/themes/pantone-neon-pink-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Neon Pink (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F4F6" + fg: "#260918" + black: "#260918" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F4F6" + brightBlack: "#B2467A" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.9 + black: 98.9 + red: 72.9 + green: 56.4 + yellow: 40.6 + blue: 83.9 + magenta: 80 + cyan: 73.2 + white: 0 + brightBlack: 69.1 + brightRed: 62.5 + brightGreen: 43.2 + brightYellow: 24.4 + brightBlue: 49.9 + brightMagenta: 61.5 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/pantone-neon-yellow-dark.yaml b/themes/pantone-neon-yellow-dark.yaml new file mode 100644 index 00000000..83e8e574 --- /dev/null +++ b/themes/pantone-neon-yellow-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Neon Yellow (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#252508" + fg: "#E4E0CC" + black: "#252508" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#7C9A5B" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E4E0CC" + brightBlack: "#A29847" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: 109 + contrast: + fg: 84.8 + black: 0 + red: 30.4 + green: 50 + yellow: 69.7 + blue: 40.2 + magenta: 31.5 + cyan: 50.7 + white: 84.8 + brightBlack: 43.1 + brightRed: 36.9 + brightGreen: 57.3 + brightYellow: 74.1 + brightBlue: 27 + brightMagenta: 40.1 + brightCyan: 57.3 + brightWhite: 97.9 diff --git a/themes/pantone-neon-yellow-light.yaml b/themes/pantone-neon-yellow-light.yaml new file mode 100644 index 00000000..8b38181e --- /dev/null +++ b/themes/pantone-neon-yellow-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Neon Yellow (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F4" + fg: "#232308" + black: "#232308" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F4" + brightBlack: "#ACA344" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.1 + black: 98.1 + red: 74 + green: 57.6 + yellow: 41.8 + blue: 85 + magenta: 81.2 + cyan: 74.4 + white: 0 + brightBlack: 45.9 + brightRed: 63.7 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/pantone-olive-green-dark.yaml b/themes/pantone-olive-green-dark.yaml new file mode 100644 index 00000000..a2cd7609 --- /dev/null +++ b/themes/pantone-olive-green-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Olive Green (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#161706" + fg: "#DDDACB" + black: "#161706" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#4D6D55" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DDDACB" + brightBlack: "#867C43" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: 112 + contrast: + fg: 83 + black: 0 + red: 32.2 + green: 51.8 + yellow: 71.5 + blue: 22 + magenta: 33.3 + cyan: 52.5 + white: 83 + brightBlack: 31.7 + brightRed: 38.7 + brightGreen: 59.1 + brightYellow: 75.9 + brightBlue: 28.8 + brightMagenta: 41.9 + brightCyan: 59.1 + brightWhite: 99.7 diff --git a/themes/pantone-olive-green-light.yaml b/themes/pantone-olive-green-light.yaml new file mode 100644 index 00000000..93ee83ae --- /dev/null +++ b/themes/pantone-olive-green-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Olive Green (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F4" + fg: "#1E1F09" + black: "#1E1F09" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F4" + brightBlack: "#867F3F" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.9 + black: 98.9 + red: 74 + green: 57.6 + yellow: 41.8 + blue: 85 + magenta: 81.2 + cyan: 74.4 + white: 0 + brightBlack: 63.3 + brightRed: 63.7 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/pantone-orange-dark.yaml b/themes/pantone-orange-dark.yaml new file mode 100644 index 00000000..e0f39f25 --- /dev/null +++ b/themes/pantone-orange-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Orange (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#290D00" + fg: "#F8E8E0" + black: "#290D00" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#874E41" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F8E8E0" + brightBlack: "#E8A885" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 49 + contrast: + fg: 93.8 + black: 0 + red: 32.1 + green: 51.7 + yellow: 71.4 + blue: 18.6 + magenta: 33.2 + cyan: 52.4 + white: 93.8 + brightBlack: 62.1 + brightRed: 38.5 + brightGreen: 59 + brightYellow: 75.8 + brightBlue: 28.7 + brightMagenta: 41.8 + brightCyan: 59 + brightWhite: 104.3 diff --git a/themes/pantone-orange-light.yaml b/themes/pantone-orange-light.yaml new file mode 100644 index 00000000..40d4dc30 --- /dev/null +++ b/themes/pantone-orange-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Orange (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFBFA" + fg: "#381200" + black: "#381200" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFBFA" + brightBlack: "#EB9B72" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.1 + black: 101.1 + red: 76.6 + green: 60.2 + yellow: 44.4 + blue: 87.6 + magenta: 83.8 + cyan: 77 + white: 0 + brightBlack: 41.3 + brightRed: 66.3 + brightGreen: 47 + brightYellow: 28.2 + brightBlue: 53.7 + brightMagenta: 65.3 + brightCyan: 46.4 + brightWhite: 0 diff --git a/themes/pantone-peach-dark.yaml b/themes/pantone-peach-dark.yaml new file mode 100644 index 00000000..e684ed46 --- /dev/null +++ b/themes/pantone-peach-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Peach (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1D130D" + fg: "#F7EEE7" + black: "#1D130D" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#827778" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F7EEE7" + brightBlack: "#E5C0A6" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 52 + contrast: + fg: 96.8 + black: 0 + red: 32.3 + green: 51.9 + yellow: 71.6 + blue: 30.9 + magenta: 33.3 + cyan: 52.6 + white: 96.8 + brightBlack: 71.9 + brightRed: 38.7 + brightGreen: 59.2 + brightYellow: 75.9 + brightBlue: 28.9 + brightMagenta: 42 + brightCyan: 59.1 + brightWhite: 104.5 diff --git a/themes/pantone-peach-fuzz-dark.yaml b/themes/pantone-peach-fuzz-dark.yaml new file mode 100644 index 00000000..dd5413f2 --- /dev/null +++ b/themes/pantone-peach-fuzz-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Peach Fuzz (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1F1712" + fg: "#F8F0EA" + black: "#1F1712" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#87858D" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F8F0EA" + brightBlack: "#E8C9B3" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 54 + contrast: + fg: 97.7 + black: 0 + red: 31.9 + green: 51.6 + yellow: 71.2 + blue: 36.5 + magenta: 33 + cyan: 52.2 + white: 97.7 + brightBlack: 76.1 + brightRed: 38.4 + brightGreen: 58.8 + brightYellow: 75.6 + brightBlue: 28.5 + brightMagenta: 41.6 + brightCyan: 58.8 + brightWhite: 104.1 diff --git a/themes/pantone-peach-fuzz-light.yaml b/themes/pantone-peach-fuzz-light.yaml new file mode 100644 index 00000000..dd803409 --- /dev/null +++ b/themes/pantone-peach-fuzz-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Peach Fuzz (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFCFB" + fg: "#261D17" + black: "#261D17" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFCFB" + brightBlack: "#EBC7AF" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.8 + black: 101.8 + red: 77.1 + green: 60.6 + yellow: 44.9 + blue: 88.1 + magenta: 84.3 + cyan: 77.4 + white: 0 + brightBlack: 24.5 + brightRed: 66.8 + brightGreen: 47.5 + brightYellow: 28.6 + brightBlue: 54.1 + brightMagenta: 65.7 + brightCyan: 46.9 + brightWhite: 0 diff --git a/themes/pantone-peach-light.yaml b/themes/pantone-peach-light.yaml new file mode 100644 index 00000000..b970d383 --- /dev/null +++ b/themes/pantone-peach-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Peach (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFCFB" + fg: "#251811" + black: "#251811" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFCFB" + brightBlack: "#E7BC9E" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.4 + black: 102.4 + red: 77.1 + green: 60.6 + yellow: 44.9 + blue: 88.1 + magenta: 84.3 + cyan: 77.4 + white: 0 + brightBlack: 29.8 + brightRed: 66.8 + brightGreen: 47.5 + brightYellow: 28.6 + brightBlue: 54.1 + brightMagenta: 65.7 + brightCyan: 46.9 + brightWhite: 0 diff --git a/themes/pantone-peacock-green-dark.yaml b/themes/pantone-peacock-green-dark.yaml new file mode 100644 index 00000000..84093c41 --- /dev/null +++ b/themes/pantone-peacock-green-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Peacock Green (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#071211" + fg: "#DBE0E0" + black: "#071211" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#1F5E76" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DBE0E0" + brightBlack: "#7A908E" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 189 + contrast: + fg: 86.8 + black: 0 + red: 32.7 + green: 52.3 + yellow: 72 + blue: 16.8 + magenta: 33.7 + cyan: 52.9 + white: 86.8 + brightBlack: 39.9 + brightRed: 39.1 + brightGreen: 59.6 + brightYellow: 76.3 + brightBlue: 29.3 + brightMagenta: 42.3 + brightCyan: 59.5 + brightWhite: 102.1 diff --git a/themes/pantone-peacock-green-light.yaml b/themes/pantone-peacock-green-light.yaml new file mode 100644 index 00000000..3b52129b --- /dev/null +++ b/themes/pantone-peacock-green-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Peacock Green (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F9F9" + fg: "#0A1818" + black: "#0A1818" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F9F9" + brightBlack: "#6F8B89" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.1 + black: 101.1 + red: 75.1 + green: 58.6 + yellow: 42.9 + blue: 86.1 + magenta: 82.3 + cyan: 75.4 + white: 0 + brightBlack: 60.5 + brightRed: 64.8 + brightGreen: 45.5 + brightYellow: 26.6 + brightBlue: 52.1 + brightMagenta: 63.7 + brightCyan: 44.9 + brightWhite: 0 diff --git a/themes/pantone-pewter-dark.yaml b/themes/pantone-pewter-dark.yaml new file mode 100644 index 00000000..c6b386c2 --- /dev/null +++ b/themes/pantone-pewter-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Pewter (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#121313" + fg: "#E3E4E4" + black: "#121313" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#55758F" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E3E4E4" + brightBlack: "#9A9E9D" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.6 + black: 0 + red: 32.5 + green: 52.1 + yellow: 71.8 + blue: 27.5 + magenta: 33.6 + cyan: 52.8 + white: 89.6 + brightBlack: 48.7 + brightRed: 39 + brightGreen: 59.4 + brightYellow: 76.2 + brightBlue: 29.1 + brightMagenta: 42.2 + brightCyan: 59.4 + brightWhite: 102 diff --git a/themes/pantone-pewter-light.yaml b/themes/pantone-pewter-light.yaml new file mode 100644 index 00000000..a0f6f24b --- /dev/null +++ b/themes/pantone-pewter-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Pewter (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F9F9F9" + fg: "#171818" + black: "#171818" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F9F9F9" + brightBlack: "#9A9E9D" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101 + black: 101 + red: 75.2 + green: 58.8 + yellow: 43 + blue: 86.2 + magenta: 82.4 + cyan: 75.5 + white: 0 + brightBlack: 48.9 + brightRed: 64.9 + brightGreen: 45.6 + brightYellow: 26.8 + brightBlue: 52.3 + brightMagenta: 63.9 + brightCyan: 45 + brightWhite: 0 diff --git a/themes/pantone-plum-dark.yaml b/themes/pantone-plum-dark.yaml new file mode 100644 index 00000000..90d7de15 --- /dev/null +++ b/themes/pantone-plum-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Plum (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#180B14" + fg: "#D9CBD1" + black: "#180B14" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#373C68" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D9CBD1" + brightBlack: "#74435B" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 339 + contrast: + fg: 76.8 + black: 0 + red: 32.7 + green: 52.3 + yellow: 72 + blue: 8 + magenta: 33.8 + cyan: 53 + white: 76.8 + brightBlack: 14.8 + brightRed: 39.2 + brightGreen: 59.6 + brightYellow: 76.4 + brightBlue: 29.3 + brightMagenta: 42.4 + brightCyan: 59.6 + brightWhite: 98.9 diff --git a/themes/pantone-plum-light.yaml b/themes/pantone-plum-light.yaml new file mode 100644 index 00000000..d413d161 --- /dev/null +++ b/themes/pantone-plum-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Plum (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F7F4F5" + fg: "#150911" + black: "#150911" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F7F4F5" + brightBlack: "#713F59" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.5 + black: 99.5 + red: 72.7 + green: 56.2 + yellow: 40.4 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 82 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.2 + brightBlue: 49.7 + brightMagenta: 61.3 + brightCyan: 42.4 + brightWhite: 0 diff --git a/themes/pantone-poppy-dark.yaml b/themes/pantone-poppy-dark.yaml new file mode 100644 index 00000000..6e9540db --- /dev/null +++ b/themes/pantone-poppy-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Poppy (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#210908" + fg: "#F5E7E3" + black: "#210908" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#6F425A" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F5E7E3" + brightBlack: "#D9A094" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 25 + contrast: + fg: 93.5 + black: 0 + red: 32.5 + green: 52.2 + yellow: 71.8 + blue: 13.8 + magenta: 33.6 + cyan: 52.8 + white: 93.5 + brightBlack: 57.6 + brightRed: 39 + brightGreen: 59.4 + brightYellow: 76.2 + brightBlue: 29.1 + brightMagenta: 42.2 + brightCyan: 59.4 + brightWhite: 104.7 diff --git a/themes/pantone-poppy-light.yaml b/themes/pantone-poppy-light.yaml new file mode 100644 index 00000000..20471edd --- /dev/null +++ b/themes/pantone-poppy-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Poppy (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFBFA" + fg: "#1F0808" + black: "#1F0808" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFBFA" + brightBlack: "#D89186" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103.2 + black: 103.2 + red: 76.6 + green: 60.2 + yellow: 44.4 + blue: 87.6 + magenta: 83.8 + cyan: 77 + white: 0 + brightBlack: 47.2 + brightRed: 66.3 + brightGreen: 47 + brightYellow: 28.2 + brightBlue: 53.7 + brightMagenta: 65.3 + brightCyan: 46.4 + brightWhite: 0 diff --git a/themes/pantone-process-blue-dark.yaml b/themes/pantone-process-blue-dark.yaml new file mode 100644 index 00000000..86a58398 --- /dev/null +++ b/themes/pantone-process-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Process Blue (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#001520" + fg: "#CBDBE3" + black: "#001520" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#0869A6" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#CBDBE3" + brightBlack: "#407E9F" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F2F4F6" +meta: + mode: "dark" + accent: "orange" + hue: 232 + contrast: + fg: 82.4 + black: 0 + red: 32.4 + green: 52 + yellow: 71.7 + blue: 22.3 + magenta: 33.4 + cyan: 52.7 + white: 82.4 + brightBlack: 30.1 + brightRed: 38.8 + brightGreen: 59.3 + brightYellow: 76.1 + brightBlue: 29 + brightMagenta: 42.1 + brightCyan: 59.3 + brightWhite: 99.7 diff --git a/themes/pantone-process-blue-light.yaml b/themes/pantone-process-blue-light.yaml new file mode 100644 index 00000000..c6c8476a --- /dev/null +++ b/themes/pantone-process-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Process Blue (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F5F7F9" + fg: "#001D2C" + black: "#001D2C" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F5F7F9" + brightBlack: "#377FA5" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F2F4F6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99 + black: 99 + red: 73.9 + green: 57.4 + yellow: 41.6 + blue: 84.9 + magenta: 81.1 + cyan: 74.2 + white: 0 + brightBlack: 65.5 + brightRed: 63.6 + brightGreen: 44.2 + brightYellow: 25.4 + brightBlue: 50.9 + brightMagenta: 62.5 + brightCyan: 43.6 + brightWhite: 0 diff --git a/themes/pantone-purple-dark.yaml b/themes/pantone-purple-dark.yaml new file mode 100644 index 00000000..a1828f6a --- /dev/null +++ b/themes/pantone-purple-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Purple (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#170223" + fg: "#D9C8D6" + black: "#170223" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#362987" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D9C8D6" + brightBlack: "#74386E" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 311 + contrast: + fg: 75.7 + black: 0 + red: 32.7 + green: 52.3 + yellow: 72 + blue: 0 + magenta: 33.8 + cyan: 53 + white: 75.7 + brightBlack: 13.5 + brightRed: 39.2 + brightGreen: 59.6 + brightYellow: 76.4 + brightBlue: 29.3 + brightMagenta: 42.4 + brightCyan: 59.6 + brightWhite: 98.9 diff --git a/themes/pantone-purple-light.yaml b/themes/pantone-purple-light.yaml new file mode 100644 index 00000000..48322efa --- /dev/null +++ b/themes/pantone-purple-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Purple (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F7F4F6" + fg: "#14011F" + black: "#14011F" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F7F4F6" + brightBlack: "#703172" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.5 + black: 99.5 + red: 72.7 + green: 56.3 + yellow: 40.5 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 83.7 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.3 + brightBlue: 49.8 + brightMagenta: 61.4 + brightCyan: 42.5 + brightWhite: 0 diff --git a/themes/pantone-radiant-orchid-dark.yaml b/themes/pantone-radiant-orchid-dark.yaml new file mode 100644 index 00000000..0ff7ade9 --- /dev/null +++ b/themes/pantone-radiant-orchid-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Radiant Orchid (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1C101A" + fg: "#DFCFD8" + black: "#1C101A" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#605892" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DFCFD8" + brightBlack: "#8D5475" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 333 + contrast: + fg: 79.2 + black: 0 + red: 32.4 + green: 52 + yellow: 71.7 + blue: 19.6 + magenta: 33.4 + cyan: 52.7 + white: 79.2 + brightBlack: 22.5 + brightRed: 38.8 + brightGreen: 59.3 + brightYellow: 76 + brightBlue: 29 + brightMagenta: 42.1 + brightCyan: 59.2 + brightWhite: 98.5 diff --git a/themes/pantone-radiant-orchid-light.yaml b/themes/pantone-radiant-orchid-light.yaml new file mode 100644 index 00000000..bfb5f6ea --- /dev/null +++ b/themes/pantone-radiant-orchid-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Radiant Orchid (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F4F6" + fg: "#1B0F18" + black: "#1B0F18" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F4F6" + brightBlack: "#92567B" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.2 + black: 99.2 + red: 72.9 + green: 56.4 + yellow: 40.6 + blue: 83.9 + magenta: 80 + cyan: 73.2 + white: 0 + brightBlack: 71.1 + brightRed: 62.5 + brightGreen: 43.2 + brightYellow: 24.4 + brightBlue: 49.9 + brightMagenta: 61.5 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/pantone-rose-quartz-dark.yaml b/themes/pantone-rose-quartz-dark.yaml new file mode 100644 index 00000000..f5a8c6a3 --- /dev/null +++ b/themes/pantone-rose-quartz-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Rose Quartz (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1E1818" + fg: "#E3D6DA" + black: "#1E1818" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#838BA5" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E3D6DA" + brightBlack: "#A27380" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 82.4 + black: 0 + red: 31.9 + green: 51.5 + yellow: 71.2 + blue: 39.1 + magenta: 32.9 + cyan: 52.1 + white: 82.4 + brightBlack: 33.5 + brightRed: 38.3 + brightGreen: 58.7 + brightYellow: 75.5 + brightBlue: 28.5 + brightMagenta: 41.5 + brightCyan: 58.7 + brightWhite: 98 diff --git a/themes/pantone-rose-quartz-light.yaml b/themes/pantone-rose-quartz-light.yaml new file mode 100644 index 00000000..45a081b5 --- /dev/null +++ b/themes/pantone-rose-quartz-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Rose Quartz (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F5F6" + fg: "#251E1E" + black: "#251E1E" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F5F6" + brightBlack: "#AE7F8B" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.8 + black: 97.8 + red: 73.3 + green: 56.8 + yellow: 41 + blue: 84.3 + magenta: 80.5 + cyan: 73.6 + white: 0 + brightBlack: 55.7 + brightRed: 63 + brightGreen: 43.6 + brightYellow: 24.8 + brightBlue: 50.3 + brightMagenta: 61.9 + brightCyan: 43 + brightWhite: 0 diff --git a/themes/pantone-royal-blue-dark.yaml b/themes/pantone-royal-blue-dark.yaml new file mode 100644 index 00000000..b5aa3829 --- /dev/null +++ b/themes/pantone-royal-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Royal Blue (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#000A1A" + fg: "#C8CDD6" + black: "#000A1A" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#084593" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#C8CDD6" + brightBlack: "#374C6F" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F1F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 251 + contrast: + fg: 75.8 + black: 0 + red: 32.9 + green: 52.6 + yellow: 72.2 + blue: 11.5 + magenta: 34 + cyan: 53.2 + white: 75.8 + brightBlack: 12.4 + brightRed: 39.4 + brightGreen: 59.8 + brightYellow: 76.6 + brightBlue: 29.5 + brightMagenta: 42.6 + brightCyan: 59.8 + brightWhite: 98.5 diff --git a/themes/pantone-royal-blue-light.yaml b/themes/pantone-royal-blue-light.yaml new file mode 100644 index 00000000..c7b89479 --- /dev/null +++ b/themes/pantone-royal-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Royal Blue (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F4F5F5" + fg: "#000D24" + black: "#000D24" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F4F5F5" + brightBlack: "#2F4A77" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F1F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.4 + black: 99.4 + red: 72.7 + green: 56.3 + yellow: 40.5 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 84.1 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.3 + brightBlue: 49.8 + brightMagenta: 61.4 + brightCyan: 42.5 + brightWhite: 0 diff --git a/themes/pantone-ruby-dark.yaml b/themes/pantone-ruby-dark.yaml new file mode 100644 index 00000000..9bfc3fd3 --- /dev/null +++ b/themes/pantone-ruby-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Ruby (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1F070D" + fg: "#DBCACF" + black: "#1F070D" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#46345A" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DBCACF" + brightBlack: "#7D3E53" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 7 + contrast: + fg: 76.4 + black: 0 + red: 32.6 + green: 52.3 + yellow: 71.9 + blue: 0 + magenta: 33.7 + cyan: 52.9 + white: 76.4 + brightBlack: 14.8 + brightRed: 39.1 + brightGreen: 59.5 + brightYellow: 76.3 + brightBlue: 29.2 + brightMagenta: 42.3 + brightCyan: 59.5 + brightWhite: 98.8 diff --git a/themes/pantone-ruby-light.yaml b/themes/pantone-ruby-light.yaml new file mode 100644 index 00000000..7b5edecf --- /dev/null +++ b/themes/pantone-ruby-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Ruby (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F7F4F5" + fg: "#1B060B" + black: "#1B060B" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F7F4F5" + brightBlack: "#7D394E" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.4 + black: 99.4 + red: 72.7 + green: 56.2 + yellow: 40.4 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 81.7 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.2 + brightBlue: 49.7 + brightMagenta: 61.3 + brightCyan: 42.4 + brightWhite: 0 diff --git a/themes/pantone-saffron-dark.yaml b/themes/pantone-saffron-dark.yaml new file mode 100644 index 00000000..addc702c --- /dev/null +++ b/themes/pantone-saffron-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Saffron (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1F1409" + fg: "#F8EEE5" + black: "#1F1409" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#877B67" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F8EEE5" + brightBlack: "#E8C39C" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 65 + contrast: + fg: 96.8 + black: 0 + red: 32.2 + green: 51.8 + yellow: 71.5 + blue: 32.1 + magenta: 33.2 + cyan: 52.4 + white: 96.8 + brightBlack: 73.1 + brightRed: 38.6 + brightGreen: 59 + brightYellow: 75.8 + brightBlue: 28.8 + brightMagenta: 41.8 + brightCyan: 59 + brightWhite: 104.4 diff --git a/themes/pantone-saffron-light.yaml b/themes/pantone-saffron-light.yaml new file mode 100644 index 00000000..6546bfa2 --- /dev/null +++ b/themes/pantone-saffron-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Saffron (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFCFA" + fg: "#261A0C" + black: "#261A0C" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFCFA" + brightBlack: "#EBBF91" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.1 + black: 102.1 + red: 77.1 + green: 60.6 + yellow: 44.8 + blue: 88.1 + magenta: 84.3 + cyan: 77.4 + white: 0 + brightBlack: 28.4 + brightRed: 66.8 + brightGreen: 47.4 + brightYellow: 28.6 + brightBlue: 54.1 + brightMagenta: 65.7 + brightCyan: 46.8 + brightWhite: 0 diff --git a/themes/pantone-sage-dark.yaml b/themes/pantone-sage-dark.yaml new file mode 100644 index 00000000..697b50a9 --- /dev/null +++ b/themes/pantone-sage-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Sage (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#141510" + fg: "#DFDDD1" + black: "#141510" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#597E84" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DFDDD1" + brightBlack: "#8D865F" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85 + black: 0 + red: 32.4 + green: 52 + yellow: 71.7 + blue: 30.2 + magenta: 33.4 + cyan: 52.6 + white: 85 + brightBlack: 36.5 + brightRed: 38.8 + brightGreen: 59.2 + brightYellow: 76 + brightBlue: 29 + brightMagenta: 42 + brightCyan: 59.2 + brightWhite: 99.9 diff --git a/themes/pantone-sage-light.yaml b/themes/pantone-sage-light.yaml new file mode 100644 index 00000000..1c4c1676 --- /dev/null +++ b/themes/pantone-sage-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Sage (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F5" + fg: "#181A14" + black: "#181A14" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F5" + brightBlack: "#908C64" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.6 + black: 99.6 + red: 74.1 + green: 57.6 + yellow: 41.8 + blue: 85.1 + magenta: 81.3 + cyan: 74.4 + white: 0 + brightBlack: 57.1 + brightRed: 63.8 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/pantone-salmon-dark.yaml b/themes/pantone-salmon-dark.yaml new file mode 100644 index 00000000..06eba077 --- /dev/null +++ b/themes/pantone-salmon-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Salmon (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1E1311" + fg: "#F7EEE9" + black: "#1E1311" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#837686" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F7EEE9" + brightBlack: "#E5C0AF" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 30 + contrast: + fg: 96.9 + black: 0 + red: 32.2 + green: 51.9 + yellow: 71.5 + blue: 31.1 + magenta: 33.3 + cyan: 52.5 + white: 96.9 + brightBlack: 72.2 + brightRed: 38.7 + brightGreen: 59.1 + brightYellow: 75.9 + brightBlue: 28.8 + brightMagenta: 41.9 + brightCyan: 59.1 + brightWhite: 104.4 diff --git a/themes/pantone-salmon-light.yaml b/themes/pantone-salmon-light.yaml new file mode 100644 index 00000000..911fd1b8 --- /dev/null +++ b/themes/pantone-salmon-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Salmon (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFCFB" + fg: "#251815" + black: "#251815" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFCFB" + brightBlack: "#E8BBAA" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.3 + black: 102.3 + red: 77.1 + green: 60.6 + yellow: 44.9 + blue: 88.1 + magenta: 84.3 + cyan: 77.4 + white: 0 + brightBlack: 29.6 + brightRed: 66.8 + brightGreen: 47.5 + brightYellow: 28.6 + brightBlue: 54.1 + brightMagenta: 65.7 + brightCyan: 46.9 + brightWhite: 0 diff --git a/themes/pantone-sand-dark.yaml b/themes/pantone-sand-dark.yaml new file mode 100644 index 00000000..3249e0ee --- /dev/null +++ b/themes/pantone-sand-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Sand (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#191713" + fg: "#E2DED3" + black: "#191713" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#72878F" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E2DED3" + brightBlack: "#9C8C65" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.7 + black: 0 + red: 32.1 + green: 51.7 + yellow: 71.4 + blue: 35.4 + magenta: 33.2 + cyan: 52.4 + white: 85.7 + brightBlack: 40.2 + brightRed: 38.6 + brightGreen: 59 + brightYellow: 75.8 + brightBlue: 28.7 + brightMagenta: 41.8 + brightCyan: 59 + brightWhite: 99.6 diff --git a/themes/pantone-sand-dollar-dark.yaml b/themes/pantone-sand-dollar-dark.yaml new file mode 100644 index 00000000..5b7eef7c --- /dev/null +++ b/themes/pantone-sand-dollar-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Sand Dollar (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1B1917" + fg: "#F6F1ED" + black: "#1B1917" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#778DA0" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F6F1ED" + brightBlack: "#DECDBE" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 97.9 + black: 0 + red: 31.9 + green: 51.5 + yellow: 71.2 + blue: 38.5 + magenta: 32.9 + cyan: 52.2 + white: 97.9 + brightBlack: 76.7 + brightRed: 38.3 + brightGreen: 58.8 + brightYellow: 75.5 + brightBlue: 28.5 + brightMagenta: 41.6 + brightCyan: 58.7 + brightWhite: 104.1 diff --git a/themes/pantone-sand-dollar-light.yaml b/themes/pantone-sand-dollar-light.yaml new file mode 100644 index 00000000..a597a985 --- /dev/null +++ b/themes/pantone-sand-dollar-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Sand Dollar (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFCFB" + fg: "#211F1D" + black: "#211F1D" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFCFB" + brightBlack: "#DECDBE" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.7 + black: 101.7 + red: 77.1 + green: 60.6 + yellow: 44.9 + blue: 88.1 + magenta: 84.3 + cyan: 77.4 + white: 0 + brightBlack: 23.4 + brightRed: 66.8 + brightGreen: 47.5 + brightYellow: 28.6 + brightBlue: 54.1 + brightMagenta: 65.7 + brightCyan: 46.9 + brightWhite: 0 diff --git a/themes/pantone-sand-light.yaml b/themes/pantone-sand-light.yaml new file mode 100644 index 00000000..ddce918b --- /dev/null +++ b/themes/pantone-sand-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Sand (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F5" + fg: "#201D17" + black: "#201D17" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F5" + brightBlack: "#A4936D" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99 + black: 99 + red: 74.1 + green: 57.6 + yellow: 41.8 + blue: 85.1 + magenta: 81.3 + cyan: 74.4 + white: 0 + brightBlack: 52.1 + brightRed: 63.8 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/pantone-serenity-dark.yaml b/themes/pantone-serenity-dark.yaml new file mode 100644 index 00000000..9a5e6f09 --- /dev/null +++ b/themes/pantone-serenity-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Serenity (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#121419" + fg: "#D2D5D9" + black: "#121419" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#517AA9" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D2D5D9" + brightBlack: "#626D7C" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F1F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 80.2 + black: 0 + red: 32.4 + green: 52 + yellow: 71.7 + blue: 30.1 + magenta: 33.5 + cyan: 52.7 + white: 80.2 + brightBlack: 24.9 + brightRed: 38.9 + brightGreen: 59.3 + brightYellow: 76.1 + brightBlue: 29 + brightMagenta: 42.1 + brightCyan: 59.3 + brightWhite: 98 diff --git a/themes/pantone-serenity-light.yaml b/themes/pantone-serenity-light.yaml new file mode 100644 index 00000000..e50e60da --- /dev/null +++ b/themes/pantone-serenity-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Serenity (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F5F5F6" + fg: "#16191F" + black: "#16191F" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F5F5F6" + brightBlack: "#697588" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F1F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.5 + black: 98.5 + red: 72.9 + green: 56.4 + yellow: 40.7 + blue: 83.9 + magenta: 80.1 + cyan: 73.2 + white: 0 + brightBlack: 66.5 + brightRed: 62.6 + brightGreen: 43.3 + brightYellow: 24.4 + brightBlue: 49.9 + brightMagenta: 61.5 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/pantone-sienna-dark.yaml b/themes/pantone-sienna-dark.yaml new file mode 100644 index 00000000..d5a15178 --- /dev/null +++ b/themes/pantone-sienna-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Sienna (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#140907" + fg: "#EFE7E3" + black: "#140907" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#454458" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#EFE7E3" + brightBlack: "#C0A193" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 32 + contrast: + fg: 93 + black: 0 + red: 32.9 + green: 52.5 + yellow: 72.2 + blue: 10.3 + magenta: 34 + cyan: 53.2 + white: 93 + brightBlack: 54.6 + brightRed: 39.3 + brightGreen: 59.8 + brightYellow: 76.6 + brightBlue: 29.5 + brightMagenta: 42.6 + brightCyan: 59.8 + brightWhite: 105.1 diff --git a/themes/pantone-sienna-light.yaml b/themes/pantone-sienna-light.yaml new file mode 100644 index 00000000..da6ce60e --- /dev/null +++ b/themes/pantone-sienna-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Sienna (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FCFBFA" + fg: "#1B0D0A" + black: "#1B0D0A" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FCFBFA" + brightBlack: "#B69384" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103 + black: 103 + red: 76.5 + green: 60.1 + yellow: 44.3 + blue: 87.5 + magenta: 83.7 + cyan: 76.8 + white: 0 + brightBlack: 51.6 + brightRed: 66.2 + brightGreen: 46.9 + brightYellow: 28 + brightBlue: 53.5 + brightMagenta: 65.1 + brightCyan: 46.3 + brightWhite: 0 diff --git a/themes/pantone-silver-dark.yaml b/themes/pantone-silver-dark.yaml new file mode 100644 index 00000000..52f55862 --- /dev/null +++ b/themes/pantone-silver-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Silver (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#161717" + fg: "#DEDFE0" + black: "#161717" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#4D6D88" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DEDFE0" + brightBlack: "#8A8D8F" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.2 + black: 0 + red: 32.2 + green: 51.8 + yellow: 71.4 + blue: 23.7 + magenta: 33.2 + cyan: 52.4 + white: 86.2 + brightBlack: 39.9 + brightRed: 38.6 + brightGreen: 59 + brightYellow: 75.8 + brightBlue: 28.7 + brightMagenta: 41.8 + brightCyan: 59 + brightWhite: 101 diff --git a/themes/pantone-silver-light.yaml b/themes/pantone-silver-light.yaml new file mode 100644 index 00000000..39e5fe95 --- /dev/null +++ b/themes/pantone-silver-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Silver (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F8F8" + fg: "#151515" + black: "#151515" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F8F8" + brightBlack: "#8A8D8F" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F6F6F6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 100.8 + black: 100.8 + red: 74.6 + green: 58.2 + yellow: 42.4 + blue: 85.6 + magenta: 81.8 + cyan: 75 + white: 0 + brightBlack: 56.7 + brightRed: 64.3 + brightGreen: 45 + brightYellow: 26.2 + brightBlue: 51.7 + brightMagenta: 63.3 + brightCyan: 44.4 + brightWhite: 0 diff --git a/themes/pantone-sky-blue-dark.yaml b/themes/pantone-sky-blue-dark.yaml new file mode 100644 index 00000000..73e93cf5 --- /dev/null +++ b/themes/pantone-sky-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Sky Blue (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#071923" + fg: "#CEDDE4" + black: "#071923" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#1E76AD" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#CEDDE4" + brightBlack: "#4D86A4" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F2F4F6" +meta: + mode: "dark" + accent: "orange" + hue: 235 + contrast: + fg: 83.4 + black: 0 + red: 32.1 + green: 51.7 + yellow: 71.3 + blue: 26.8 + magenta: 33.1 + cyan: 52.3 + white: 83.4 + brightBlack: 33.5 + brightRed: 38.5 + brightGreen: 58.9 + brightYellow: 75.7 + brightBlue: 28.6 + brightMagenta: 41.7 + brightCyan: 58.9 + brightWhite: 99.4 diff --git a/themes/pantone-sky-blue-light.yaml b/themes/pantone-sky-blue-light.yaml new file mode 100644 index 00000000..f7624425 --- /dev/null +++ b/themes/pantone-sky-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Sky Blue (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F5F7F9" + fg: "#071821" + black: "#071821" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F5F7F9" + brightBlack: "#4889AB" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F2F4F6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.8 + black: 99.8 + red: 73.9 + green: 57.4 + yellow: 41.6 + blue: 84.9 + magenta: 81.1 + cyan: 74.2 + white: 0 + brightBlack: 60.9 + brightRed: 63.6 + brightGreen: 44.2 + brightYellow: 25.4 + brightBlue: 50.9 + brightMagenta: 62.5 + brightCyan: 43.6 + brightWhite: 0 diff --git a/themes/pantone-slate-blue-dark.yaml b/themes/pantone-slate-blue-dark.yaml new file mode 100644 index 00000000..374d8105 --- /dev/null +++ b/themes/pantone-slate-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Slate Blue (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#0C121A" + fg: "#CDD1D6" + black: "#0C121A" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#2D5E93" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#CDD1D6" + brightBlack: "#4D5B6F" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F1F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 256 + contrast: + fg: 77.8 + black: 0 + red: 32.6 + green: 52.2 + yellow: 71.9 + blue: 18.5 + magenta: 33.6 + cyan: 52.9 + white: 77.8 + brightBlack: 17.5 + brightRed: 39 + brightGreen: 59.5 + brightYellow: 76.2 + brightBlue: 29.2 + brightMagenta: 42.3 + brightCyan: 59.4 + brightWhite: 98.2 diff --git a/themes/pantone-slate-blue-light.yaml b/themes/pantone-slate-blue-light.yaml new file mode 100644 index 00000000..e421b795 --- /dev/null +++ b/themes/pantone-slate-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Slate Blue (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F4F5F5" + fg: "#101824" + black: "#101824" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F4F5F5" + brightBlack: "#4C5E77" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F1F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.5 + black: 98.5 + red: 72.7 + green: 56.3 + yellow: 40.5 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 76.6 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.3 + brightBlue: 49.8 + brightMagenta: 61.4 + brightCyan: 42.5 + brightWhite: 0 diff --git a/themes/pantone-steel-blue-dark.yaml b/themes/pantone-steel-blue-dark.yaml new file mode 100644 index 00000000..f3501c59 --- /dev/null +++ b/themes/pantone-steel-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Steel Blue (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#0F1417" + fg: "#D1DADF" + black: "#0F1417" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#356487" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D1DADF" + brightBlack: "#5B7B8D" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F2F4F6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 82.6 + black: 0 + red: 32.5 + green: 52.1 + yellow: 71.8 + blue: 19.9 + magenta: 33.5 + cyan: 52.7 + white: 82.6 + brightBlack: 29.8 + brightRed: 38.9 + brightGreen: 59.3 + brightYellow: 76.1 + brightBlue: 29 + brightMagenta: 42.1 + brightCyan: 59.3 + brightWhite: 99.8 diff --git a/themes/pantone-steel-blue-light.yaml b/themes/pantone-steel-blue-light.yaml new file mode 100644 index 00000000..8fcb109d --- /dev/null +++ b/themes/pantone-steel-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Steel Blue (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F5F7F8" + fg: "#141B1F" + black: "#141B1F" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F5F7F8" + brightBlack: "#5B7B8D" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F2F4F6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.3 + black: 99.3 + red: 73.8 + green: 57.4 + yellow: 41.6 + blue: 84.8 + magenta: 81 + cyan: 74.1 + white: 0 + brightBlack: 66.3 + brightRed: 63.5 + brightGreen: 44.2 + brightYellow: 25.4 + brightBlue: 50.9 + brightMagenta: 62.5 + brightCyan: 43.6 + brightWhite: 0 diff --git a/themes/pantone-tan-dark.yaml b/themes/pantone-tan-dark.yaml new file mode 100644 index 00000000..9702f1e2 --- /dev/null +++ b/themes/pantone-tan-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Tan (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#181612" + fg: "#E1DDD3" + black: "#181612" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#6C838E" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E1DDD3" + brightBlack: "#998965" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.2 + black: 0 + red: 32.2 + green: 51.8 + yellow: 71.5 + blue: 33.6 + magenta: 33.3 + cyan: 52.5 + white: 85.2 + brightBlack: 38.9 + brightRed: 38.7 + brightGreen: 59.1 + brightYellow: 75.9 + brightBlue: 28.8 + brightMagenta: 41.9 + brightCyan: 59.1 + brightWhite: 99.7 diff --git a/themes/pantone-tan-light.yaml b/themes/pantone-tan-light.yaml new file mode 100644 index 00000000..f175b4be --- /dev/null +++ b/themes/pantone-tan-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Tan (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F5" + fg: "#1E1C17" + black: "#1E1C17" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F5" + brightBlack: "#A0906C" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.2 + black: 99.2 + red: 74.1 + green: 57.6 + yellow: 41.8 + blue: 85.1 + magenta: 81.3 + cyan: 74.4 + white: 0 + brightBlack: 53.6 + brightRed: 63.8 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/pantone-tangerine-tango-dark.yaml b/themes/pantone-tangerine-tango-dark.yaml new file mode 100644 index 00000000..f9cdba48 --- /dev/null +++ b/themes/pantone-tangerine-tango-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Tangerine Tango (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#230A08" + fg: "#F6E7E3" + black: "#230A08" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#76475A" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F6E7E3" + brightBlack: "#DEA394" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 27 + contrast: + fg: 93.5 + black: 0 + red: 32.4 + green: 52.1 + yellow: 71.7 + blue: 15.6 + magenta: 33.5 + cyan: 52.7 + white: 93.5 + brightBlack: 59.4 + brightRed: 38.9 + brightGreen: 59.3 + brightYellow: 76.1 + brightBlue: 29 + brightMagenta: 42.1 + brightCyan: 59.3 + brightWhite: 104.6 diff --git a/themes/pantone-tangerine-tango-light.yaml b/themes/pantone-tangerine-tango-light.yaml new file mode 100644 index 00000000..2b2f11bf --- /dev/null +++ b/themes/pantone-tangerine-tango-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Tangerine Tango (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFBFA" + fg: "#210A08" + black: "#210A08" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFBFA" + brightBlack: "#DE9586" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103 + black: 103 + red: 76.6 + green: 60.2 + yellow: 44.4 + blue: 87.6 + magenta: 83.8 + cyan: 77 + white: 0 + brightBlack: 44.9 + brightRed: 66.3 + brightGreen: 47 + brightYellow: 28.2 + brightBlue: 53.7 + brightMagenta: 65.3 + brightCyan: 46.4 + brightWhite: 0 diff --git a/themes/pantone-teal-dark.yaml b/themes/pantone-teal-dark.yaml new file mode 100644 index 00000000..62b4031b --- /dev/null +++ b/themes/pantone-teal-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Teal (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#001C20" + fg: "#CBD9DE" + black: "#001C20" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#085D80" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#CBD9DE" + brightBlack: "#407789" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F2F4F6" +meta: + mode: "dark" + accent: "orange" + hue: 208 + contrast: + fg: 80.7 + black: 0 + red: 31.8 + green: 51.5 + yellow: 71.1 + blue: 15.9 + magenta: 32.9 + cyan: 52.1 + white: 80.7 + brightBlack: 26.1 + brightRed: 38.3 + brightGreen: 58.7 + brightYellow: 75.5 + brightBlue: 28.4 + brightMagenta: 41.5 + brightCyan: 58.7 + brightWhite: 99.2 diff --git a/themes/pantone-teal-light.yaml b/themes/pantone-teal-light.yaml new file mode 100644 index 00000000..fa9d73a0 --- /dev/null +++ b/themes/pantone-teal-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Teal (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F5F7F8" + fg: "#00181C" + black: "#00181C" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F5F7F8" + brightBlack: "#377687" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F2F4F6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.8 + black: 99.8 + red: 73.8 + green: 57.4 + yellow: 41.6 + blue: 84.8 + magenta: 81 + cyan: 74.1 + white: 0 + brightBlack: 70.1 + brightRed: 63.5 + brightGreen: 44.2 + brightYellow: 25.4 + brightBlue: 50.9 + brightMagenta: 62.5 + brightCyan: 43.6 + brightWhite: 0 diff --git a/themes/pantone-tigerlily-dark.yaml b/themes/pantone-tigerlily-dark.yaml new file mode 100644 index 00000000..f0dadf49 --- /dev/null +++ b/themes/pantone-tigerlily-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Tigerlily (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#240E0A" + fg: "#F6E9E4" + black: "#240E0A" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#795260" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F6E9E4" + brightBlack: "#DFAA98" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 32 + contrast: + fg: 94.3 + black: 0 + red: 32.3 + green: 51.9 + yellow: 71.6 + blue: 18.5 + magenta: 33.3 + cyan: 52.5 + white: 94.3 + brightBlack: 62 + brightRed: 38.7 + brightGreen: 59.1 + brightYellow: 75.9 + brightBlue: 28.9 + brightMagenta: 41.9 + brightCyan: 59.1 + brightWhite: 104.5 diff --git a/themes/pantone-tigerlily-light.yaml b/themes/pantone-tigerlily-light.yaml new file mode 100644 index 00000000..5e653dbd --- /dev/null +++ b/themes/pantone-tigerlily-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Tigerlily (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFBFA" + fg: "#220D09" + black: "#220D09" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFBFA" + brightBlack: "#E09E8B" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.9 + black: 102.9 + red: 76.6 + green: 60.2 + yellow: 44.4 + blue: 87.6 + magenta: 83.8 + cyan: 77 + white: 0 + brightBlack: 41.6 + brightRed: 66.3 + brightGreen: 47 + brightYellow: 28.2 + brightBlue: 53.7 + brightMagenta: 65.3 + brightCyan: 46.4 + brightWhite: 0 diff --git a/themes/pantone-true-red-dark.yaml b/themes/pantone-true-red-dark.yaml new file mode 100644 index 00000000..785a0d1c --- /dev/null +++ b/themes/pantone-true-red-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone True Red (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1F0408" + fg: "#DFCACF" + black: "#1F0408" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#67335A" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DFCACF" + brightBlack: "#923D53" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 13 + contrast: + fg: 77 + black: 0 + red: 32.7 + green: 52.3 + yellow: 72 + blue: 10.1 + magenta: 33.7 + cyan: 52.9 + white: 77 + brightBlack: 17.9 + brightRed: 39.1 + brightGreen: 59.5 + brightYellow: 76.3 + brightBlue: 29.3 + brightMagenta: 42.3 + brightCyan: 59.5 + brightWhite: 98.8 diff --git a/themes/pantone-true-red-light.yaml b/themes/pantone-true-red-light.yaml new file mode 100644 index 00000000..9874dc0f --- /dev/null +++ b/themes/pantone-true-red-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone True Red (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F4F5" + fg: "#2A050B" + black: "#2A050B" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F4F5" + brightBlack: "#98384E" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.8 + black: 98.8 + red: 72.8 + green: 56.4 + yellow: 40.6 + blue: 83.8 + magenta: 80 + cyan: 73.1 + white: 0 + brightBlack: 77.4 + brightRed: 62.5 + brightGreen: 43.2 + brightYellow: 24.3 + brightBlue: 49.9 + brightMagenta: 61.4 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/pantone-turquoise-classic-dark.yaml b/themes/pantone-turquoise-classic-dark.yaml new file mode 100644 index 00000000..c0961a29 --- /dev/null +++ b/themes/pantone-turquoise-classic-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Turquoise Classic (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#001A18" + fg: "#D8E4E3" + black: "#001A18" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#08788D" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#D8E4E3" + brightBlack: "#6CA09C" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 188 + contrast: + fg: 87.7 + black: 0 + red: 32.1 + green: 51.7 + yellow: 71.4 + blue: 25.7 + magenta: 33.1 + cyan: 52.4 + white: 87.7 + brightBlack: 44.9 + brightRed: 38.5 + brightGreen: 59 + brightYellow: 75.8 + brightBlue: 28.7 + brightMagenta: 41.8 + brightCyan: 59 + brightWhite: 101.6 diff --git a/themes/pantone-turquoise-classic-light.yaml b/themes/pantone-turquoise-classic-light.yaml new file mode 100644 index 00000000..522a36a4 --- /dev/null +++ b/themes/pantone-turquoise-classic-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Turquoise Classic (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F9F9" + fg: "#002422" + black: "#002422" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F9F9" + brightBlack: "#5CA09B" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.5 + black: 99.5 + red: 75.1 + green: 58.6 + yellow: 42.9 + blue: 86.1 + magenta: 82.3 + cyan: 75.4 + white: 0 + brightBlack: 53.1 + brightRed: 64.8 + brightGreen: 45.5 + brightYellow: 26.6 + brightBlue: 52.1 + brightMagenta: 63.7 + brightCyan: 44.9 + brightWhite: 0 diff --git a/themes/pantone-turquoise-dark.yaml b/themes/pantone-turquoise-dark.yaml new file mode 100644 index 00000000..9771f5fe --- /dev/null +++ b/themes/pantone-turquoise-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Turquoise (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#0B1D1B" + fg: "#DDE6E4" + black: "#0B1D1B" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#2A8196" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DDE6E4" + brightBlack: "#81A5A1" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 186 + contrast: + fg: 89 + black: 0 + red: 31.8 + green: 51.4 + yellow: 71.1 + blue: 29.4 + magenta: 32.8 + cyan: 52 + white: 89 + brightBlack: 48.4 + brightRed: 38.2 + brightGreen: 58.6 + brightYellow: 75.4 + brightBlue: 28.3 + brightMagenta: 41.4 + brightCyan: 58.6 + brightWhite: 101.2 diff --git a/themes/pantone-turquoise-light.yaml b/themes/pantone-turquoise-light.yaml new file mode 100644 index 00000000..a7699775 --- /dev/null +++ b/themes/pantone-turquoise-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Turquoise (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F9F9" + fg: "#0F2825" + black: "#0F2825" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F9F9" + brightBlack: "#78A7A2" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.7 + black: 98.7 + red: 75.1 + green: 58.6 + yellow: 42.9 + blue: 86.1 + magenta: 82.3 + cyan: 75.4 + white: 0 + brightBlack: 48.2 + brightRed: 64.8 + brightGreen: 45.5 + brightYellow: 26.6 + brightBlue: 52.1 + brightMagenta: 63.7 + brightCyan: 44.9 + brightWhite: 0 diff --git a/themes/pantone-ultimate-gray-dark.yaml b/themes/pantone-ultimate-gray-dark.yaml new file mode 100644 index 00000000..8e6ea69c --- /dev/null +++ b/themes/pantone-ultimate-gray-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Ultimate Gray (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#181818" + fg: "#E1E1E2" + black: "#181818" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#51718C" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E1E1E2" + brightBlack: "#939597" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F6F7F7" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 87.4 + black: 0 + red: 32 + green: 51.7 + yellow: 71.3 + blue: 25.3 + magenta: 33.1 + cyan: 52.3 + white: 87.4 + brightBlack: 43.9 + brightRed: 38.5 + brightGreen: 58.9 + brightYellow: 75.7 + brightBlue: 28.6 + brightMagenta: 41.7 + brightCyan: 58.9 + brightWhite: 101.3 diff --git a/themes/pantone-ultimate-gray-light.yaml b/themes/pantone-ultimate-gray-light.yaml new file mode 100644 index 00000000..c09397c3 --- /dev/null +++ b/themes/pantone-ultimate-gray-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Ultimate Gray (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F9F9F9" + fg: "#161617" + black: "#161617" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F9F9F9" + brightBlack: "#939597" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F6F7F7" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.2 + black: 101.2 + red: 75.2 + green: 58.8 + yellow: 43 + blue: 86.2 + magenta: 82.4 + cyan: 75.5 + white: 0 + brightBlack: 53.2 + brightRed: 64.9 + brightGreen: 45.6 + brightYellow: 26.8 + brightBlue: 52.3 + brightMagenta: 63.9 + brightCyan: 45 + brightWhite: 0 diff --git a/themes/pantone-ultra-violet-dark.yaml b/themes/pantone-ultra-violet-dark.yaml new file mode 100644 index 00000000..6b247c2f --- /dev/null +++ b/themes/pantone-ultra-violet-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Ultra Violet (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#0F0C16" + fg: "#CFCED4" + black: "#0F0C16" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#374C86" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#CFCED4" + brightBlack: "#535167" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F1F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 298 + contrast: + fg: 77 + black: 0 + red: 32.8 + green: 52.5 + yellow: 72.1 + blue: 13.5 + magenta: 33.9 + cyan: 53.1 + white: 77 + brightBlack: 15.1 + brightRed: 39.3 + brightGreen: 59.7 + brightYellow: 76.5 + brightBlue: 29.4 + brightMagenta: 42.5 + brightCyan: 59.7 + brightWhite: 98.4 diff --git a/themes/pantone-ultra-violet-light.yaml b/themes/pantone-ultra-violet-light.yaml new file mode 100644 index 00000000..41ce6f4b --- /dev/null +++ b/themes/pantone-ultra-violet-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Ultra Violet (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F5F5F5" + fg: "#15101F" + black: "#15101F" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F5F5F5" + brightBlack: "#55506C" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F1F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.2 + black: 99.2 + red: 72.9 + green: 56.4 + yellow: 40.6 + blue: 83.9 + magenta: 80 + cyan: 73.2 + white: 0 + brightBlack: 80.6 + brightRed: 62.5 + brightGreen: 43.2 + brightYellow: 24.4 + brightBlue: 49.9 + brightMagenta: 61.5 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/pantone-very-peri-dark.yaml b/themes/pantone-very-peri-dark.yaml new file mode 100644 index 00000000..cb541e7f --- /dev/null +++ b/themes/pantone-very-peri-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Very Peri (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#10101B" + fg: "#CFD0D6" + black: "#10101B" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#3B5A96" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#CFD0D6" + brightBlack: "#555971" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F1F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 284 + contrast: + fg: 77.7 + black: 0 + red: 32.6 + green: 52.3 + yellow: 71.9 + blue: 18.1 + magenta: 33.7 + cyan: 52.9 + white: 77.7 + brightBlack: 17.7 + brightRed: 39.1 + brightGreen: 59.5 + brightYellow: 76.3 + brightBlue: 29.2 + brightMagenta: 42.3 + brightCyan: 59.5 + brightWhite: 98.2 diff --git a/themes/pantone-very-peri-light.yaml b/themes/pantone-very-peri-light.yaml new file mode 100644 index 00000000..a570778a --- /dev/null +++ b/themes/pantone-very-peri-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Very Peri (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F5F5F5" + fg: "#0F0F1A" + black: "#0F0F1A" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F5F5F5" + brightBlack: "#585B79" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F1F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.5 + black: 99.5 + red: 72.9 + green: 56.4 + yellow: 40.6 + blue: 83.9 + magenta: 80 + cyan: 73.2 + white: 0 + brightBlack: 76.6 + brightRed: 62.5 + brightGreen: 43.2 + brightYellow: 24.4 + brightBlue: 49.9 + brightMagenta: 61.5 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/pantone-violet-dark.yaml b/themes/pantone-violet-dark.yaml new file mode 100644 index 00000000..169e4ea7 --- /dev/null +++ b/themes/pantone-violet-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Violet (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#190D1A" + fg: "#DDCDD8" + black: "#190D1A" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#574E93" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DDCDD8" + brightBlack: "#884E75" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 324 + contrast: + fg: 78.3 + black: 0 + red: 32.6 + green: 52.2 + yellow: 71.9 + blue: 16.6 + magenta: 33.6 + cyan: 52.9 + white: 78.3 + brightBlack: 20.6 + brightRed: 39 + brightGreen: 59.5 + brightYellow: 76.2 + brightBlue: 29.2 + brightMagenta: 42.3 + brightCyan: 59.4 + brightWhite: 98.7 diff --git a/themes/pantone-violet-light.yaml b/themes/pantone-violet-light.yaml new file mode 100644 index 00000000..d4a205da --- /dev/null +++ b/themes/pantone-violet-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Violet (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F7F4F6" + fg: "#231124" + black: "#231124" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F7F4F6" + brightBlack: "#8B4E7C" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.4 + black: 98.4 + red: 72.7 + green: 56.3 + yellow: 40.5 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 73.8 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.3 + brightBlue: 49.8 + brightMagenta: 61.4 + brightCyan: 42.5 + brightWhite: 0 diff --git a/themes/pantone-viva-magenta-dark.yaml b/themes/pantone-viva-magenta-dark.yaml new file mode 100644 index 00000000..c3e45951 --- /dev/null +++ b/themes/pantone-viva-magenta-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Viva Magenta (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1E060C" + fg: "#DFCAD1" + black: "#1E060C" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#653965" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DFCAD1" + brightBlack: "#90415A" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 6 + contrast: + fg: 77.1 + black: 0 + red: 32.7 + green: 52.3 + yellow: 72 + blue: 11.3 + magenta: 33.7 + cyan: 52.9 + white: 77.1 + brightBlack: 18.5 + brightRed: 39.1 + brightGreen: 59.6 + brightYellow: 76.3 + brightBlue: 29.3 + brightMagenta: 42.3 + brightCyan: 59.5 + brightWhite: 98.8 diff --git a/themes/pantone-viva-magenta-light.yaml b/themes/pantone-viva-magenta-light.yaml new file mode 100644 index 00000000..fb47b435 --- /dev/null +++ b/themes/pantone-viva-magenta-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Viva Magenta (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F4F5" + fg: "#290810" + black: "#290810" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F4F5" + brightBlack: "#963D57" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.8 + black: 98.8 + red: 72.8 + green: 56.4 + yellow: 40.6 + blue: 83.8 + magenta: 80 + cyan: 73.1 + white: 0 + brightBlack: 76.8 + brightRed: 62.5 + brightGreen: 43.2 + brightYellow: 24.3 + brightBlue: 49.9 + brightMagenta: 61.4 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/pantone-warm-gray-dark.yaml b/themes/pantone-warm-gray-dark.yaml new file mode 100644 index 00000000..9bc17bf6 --- /dev/null +++ b/themes/pantone-warm-gray-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Warm Gray (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1A1918" + fg: "#F4F2F0" + black: "#1A1918" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#738FA6" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F4F2F0" + brightBlack: "#D7D2CB" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFB" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 98.3 + black: 0 + red: 31.9 + green: 51.5 + yellow: 71.2 + blue: 39.2 + magenta: 33 + cyan: 52.2 + white: 98.3 + brightBlack: 78.4 + brightRed: 38.3 + brightGreen: 58.8 + brightYellow: 75.6 + brightBlue: 28.5 + brightMagenta: 41.6 + brightCyan: 58.8 + brightWhite: 104.1 diff --git a/themes/pantone-warm-gray-light.yaml b/themes/pantone-warm-gray-light.yaml new file mode 100644 index 00000000..40bf7448 --- /dev/null +++ b/themes/pantone-warm-gray-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Warm Gray (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFCFC" + fg: "#20201E" + black: "#20201E" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFCFC" + brightBlack: "#D7D2CB" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFB" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.6 + black: 101.6 + red: 77.2 + green: 60.7 + yellow: 44.9 + blue: 88.2 + magenta: 84.3 + cyan: 77.5 + white: 0 + brightBlack: 21.9 + brightRed: 66.8 + brightGreen: 47.5 + brightYellow: 28.7 + brightBlue: 54.2 + brightMagenta: 65.8 + brightCyan: 46.9 + brightWhite: 0 diff --git a/themes/pantone-warm-red-dark.yaml b/themes/pantone-warm-red-dark.yaml new file mode 100644 index 00000000..b523e85f --- /dev/null +++ b/themes/pantone-warm-red-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Warm Red (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#1E0807" + fg: "#F8E7E4" + black: "#1E0807" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#84475E" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#F8E7E4" + brightBlack: "#E6A396" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#FCFBFA" +meta: + mode: "dark" + accent: "orange" + hue: 25 + contrast: + fg: 94.1 + black: 0 + red: 32.7 + green: 52.3 + yellow: 72 + blue: 17.9 + magenta: 33.7 + cyan: 52.9 + white: 94.1 + brightBlack: 61 + brightRed: 39.1 + brightGreen: 59.5 + brightYellow: 76.3 + brightBlue: 29.2 + brightMagenta: 42.3 + brightCyan: 59.5 + brightWhite: 104.8 diff --git a/themes/pantone-warm-red-light.yaml b/themes/pantone-warm-red-light.yaml new file mode 100644 index 00000000..add42789 --- /dev/null +++ b/themes/pantone-warm-red-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Warm Red (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FDFBFA" + fg: "#250A09" + black: "#250A09" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FDFBFA" + brightBlack: "#E99589" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#FCFBFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.8 + black: 102.8 + red: 76.6 + green: 60.2 + yellow: 44.4 + blue: 87.6 + magenta: 83.8 + cyan: 77 + white: 0 + brightBlack: 43 + brightRed: 66.3 + brightGreen: 47 + brightYellow: 28.2 + brightBlue: 53.7 + brightMagenta: 65.3 + brightCyan: 46.4 + brightWhite: 0 diff --git a/themes/pantone-wheat-dark.yaml b/themes/pantone-wheat-dark.yaml new file mode 100644 index 00000000..2554a339 --- /dev/null +++ b/themes/pantone-wheat-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Wheat (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#18150F" + fg: "#ECE6DC" + black: "#18150F" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#6A7C7F" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#ECE6DC" + brightBlack: "#BDA682" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F9F8F5" +meta: + mode: "dark" + accent: "orange" + hue: 85 + contrast: + fg: 91.2 + black: 0 + red: 32.3 + green: 51.9 + yellow: 71.6 + blue: 30.5 + magenta: 33.3 + cyan: 52.6 + white: 91.2 + brightBlack: 54.9 + brightRed: 38.7 + brightGreen: 59.2 + brightYellow: 76 + brightBlue: 28.9 + brightMagenta: 42 + brightCyan: 59.2 + brightWhite: 102.4 diff --git a/themes/pantone-wheat-light.yaml b/themes/pantone-wheat-light.yaml new file mode 100644 index 00000000..36b21449 --- /dev/null +++ b/themes/pantone-wheat-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Wheat (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#FBFAF8" + fg: "#1E1A13" + black: "#1E1A13" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#FBFAF8" + brightBlack: "#BEA781" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F9F8F5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.2 + black: 101.2 + red: 75.9 + green: 59.4 + yellow: 43.6 + blue: 86.9 + magenta: 83.1 + cyan: 76.2 + white: 0 + brightBlack: 42.9 + brightRed: 65.6 + brightGreen: 46.2 + brightYellow: 27.4 + brightBlue: 52.9 + brightMagenta: 64.5 + brightCyan: 45.6 + brightWhite: 0 diff --git a/themes/pantone-wine-dark.yaml b/themes/pantone-wine-dark.yaml new file mode 100644 index 00000000..772f037f --- /dev/null +++ b/themes/pantone-wine-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Wine (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#16080E" + fg: "#DCCBD2" + black: "#16080E" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#4E406D" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#DCCBD2" + brightBlack: "#82455F" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F1F2" +meta: + mode: "dark" + accent: "orange" + hue: 353 + contrast: + fg: 77.4 + black: 0 + red: 32.9 + green: 52.5 + yellow: 72.2 + blue: 10.9 + magenta: 33.9 + cyan: 53.1 + white: 77.4 + brightBlack: 17.4 + brightRed: 39.3 + brightGreen: 59.7 + brightYellow: 76.5 + brightBlue: 29.4 + brightMagenta: 42.5 + brightCyan: 59.7 + brightWhite: 99 diff --git a/themes/pantone-wine-light.yaml b/themes/pantone-wine-light.yaml new file mode 100644 index 00000000..27c1cb84 --- /dev/null +++ b/themes/pantone-wine-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Wine (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F7F4F5" + fg: "#1F0B14" + black: "#1F0B14" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F7F4F5" + brightBlack: "#84435E" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F1F2" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.1 + black: 99.1 + red: 72.7 + green: 56.2 + yellow: 40.4 + blue: 83.7 + magenta: 79.9 + cyan: 73 + white: 0 + brightBlack: 78.3 + brightRed: 62.4 + brightGreen: 43.1 + brightYellow: 24.2 + brightBlue: 49.7 + brightMagenta: 61.3 + brightCyan: 42.4 + brightWhite: 0 diff --git a/themes/pantone-yellow-dark.yaml b/themes/pantone-yellow-dark.yaml new file mode 100644 index 00000000..aed8e63f --- /dev/null +++ b/themes/pantone-yellow-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Yellow (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#292007" + fg: "#E5DECB" + black: "#292007" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#878A57" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E5DECB" + brightBlack: "#A98E44" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: 89 + contrast: + fg: 84.5 + black: 0 + red: 30.8 + green: 50.5 + yellow: 70.1 + blue: 35.6 + magenta: 31.9 + cyan: 51.1 + white: 84.5 + brightBlack: 40.7 + brightRed: 37.3 + brightGreen: 57.7 + brightYellow: 74.5 + brightBlue: 27.4 + brightMagenta: 40.5 + brightCyan: 57.7 + brightWhite: 98.3 diff --git a/themes/pantone-yellow-green-dark.yaml b/themes/pantone-yellow-green-dark.yaml new file mode 100644 index 00000000..ffe85c0a --- /dev/null +++ b/themes/pantone-yellow-green-dark.yaml @@ -0,0 +1,49 @@ +name: "Pantone Yellow Green (Dark)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#202300" + fg: "#E1DFC8" + black: "#202300" + red: "#DD4132" + green: "#88B04B" + yellow: "#EFC050" + blue: "#6C9241" + magenta: "#B163A3" + cyan: "#45B5AA" + white: "#E1DFC8" + brightBlack: "#989337" + brightRed: "#E25E51" + brightGreen: "#9ABC66" + brightYellow: "#F1C96A" + brightBlue: "#4B79A1" + brightMagenta: "#BD7AB1" + brightCyan: "#61C0B7" + brightWhite: "#F5F4F1" +meta: + mode: "dark" + accent: "orange" + hue: 114 + contrast: + fg: 84.3 + black: 0 + red: 30.8 + green: 50.5 + yellow: 70.1 + blue: 35.8 + magenta: 31.9 + cyan: 51.1 + white: 84.3 + brightBlack: 40.3 + brightRed: 37.3 + brightGreen: 57.7 + brightYellow: 74.5 + brightBlue: 27.4 + brightMagenta: 40.5 + brightCyan: 57.7 + brightWhite: 98.3 diff --git a/themes/pantone-yellow-green-light.yaml b/themes/pantone-yellow-green-light.yaml new file mode 100644 index 00000000..d894be87 --- /dev/null +++ b/themes/pantone-yellow-green-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Yellow Green (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F4" + fg: "#2C3000" + black: "#2C3000" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F4" + brightBlack: "#9F9D2F" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.4 + black: 95.4 + red: 74 + green: 57.6 + yellow: 41.8 + blue: 85 + magenta: 81.2 + cyan: 74.4 + white: 0 + brightBlack: 49.9 + brightRed: 63.7 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/pantone-yellow-light.yaml b/themes/pantone-yellow-light.yaml new file mode 100644 index 00000000..27ba011d --- /dev/null +++ b/themes/pantone-yellow-light.yaml @@ -0,0 +1,49 @@ +name: "Pantone Yellow (Light)" +source: + marketplace_id: "AndlzEngineering.pantone-theme" + version: "0.1.0" + installs: 11 + author: "Andlz Engineering" + repo: "https://github.com/and-lz/pantone-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" +colors: + bg: "#F8F7F4" + fg: "#261E07" + black: "#261E07" + red: "#BF1932" + green: "#4E9A2F" + yellow: "#D4A017" + blue: "#0F4C81" + magenta: "#8C3359" + cyan: "#006E7F" + white: "#F8F7F4" + brightBlack: "#B59640" + brightRed: "#DD4132" + brightGreen: "#88B04B" + brightYellow: "#EFC050" + brightBlue: "#2C9FD9" + brightMagenta: "#B163A3" + brightCyan: "#45B5AA" + brightWhite: "#F5F4F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.6 + black: 98.6 + red: 74 + green: 57.6 + yellow: 41.8 + blue: 85 + magenta: 81.2 + cyan: 74.4 + white: 0 + brightBlack: 49.5 + brightRed: 63.7 + brightGreen: 44.4 + brightYellow: 25.6 + brightBlue: 51.1 + brightMagenta: 62.7 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/papaya.yaml b/themes/papaya.yaml new file mode 100644 index 00000000..11a54cc0 --- /dev/null +++ b/themes/papaya.yaml @@ -0,0 +1,49 @@ +name: "Papaya" +source: + marketplace_id: "fethalen.papaya" + version: "0.1.2" + installs: 4323 + author: "fethalen" + repo: "git://github.com/fethalen/papaya" + url: "https://marketplace.visualstudio.com/items?itemName=fethalen.papaya" +colors: + bg: "#1F1E24" + fg: "#B6D3E3" + black: "#2A2732" + red: "#C35066" + green: "#608867" + yellow: "#CDA55E" + blue: "#366DB8" + magenta: "#8F64CB" + cyan: "#5A7491" + white: "#D8D8D8" + brightBlack: "#686868" + brightRed: "#D76979" + brightGreen: "#75BC77" + brightYellow: "#F0C06B" + brightBlue: "#3688F7" + brightMagenta: "#CA61B2" + brightCyan: "#82B9D8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 293 + contrast: + fg: 75.3 + black: 0 + red: 29.1 + green: 32.2 + yellow: 54.9 + blue: 24.3 + magenta: 30 + cyan: 26.2 + white: 81 + brightBlack: 22 + brightRed: 38.8 + brightGreen: 55.4 + brightYellow: 71.1 + brightBlue: 37.8 + brightMagenta: 36.8 + brightCyan: 58.7 + brightWhite: 105.9 diff --git a/themes/papercolordark.yaml b/themes/papercolordark.yaml new file mode 100644 index 00000000..6ac7dd52 --- /dev/null +++ b/themes/papercolordark.yaml @@ -0,0 +1,49 @@ +name: "PaperColorDark" +source: + marketplace_id: "HarisKhan-777.papercolor-dark-theme" + version: "1.0.0" + installs: 76 + author: "Haris Khan" + repo: "https://github.com/RealHaris/paper-color-dark-vscode-cursor-theme" + url: "https://marketplace.visualstudio.com/items?itemName=HarisKhan-777.papercolor-dark-theme" +colors: + bg: "#1C1C1C" + fg: "#D0D0D0" + black: "#1C1C1C" + red: "#FF5F5F" + green: "#5FFF5F" + yellow: "#FFAF5F" + blue: "#87D7FF" + magenta: "#D787FF" + cyan: "#5FDFFF" + white: "#D0D0D0" + brightBlack: "#808080" + brightRed: "#FF8787" + brightGreen: "#87FF87" + brightYellow: "#FFD787" + brightBlue: "#AFFFFF" + brightMagenta: "#FFAFFF" + brightCyan: "#87FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 76.5 + black: 0 + red: 44.8 + green: 87 + yellow: 67.3 + blue: 74.8 + magenta: 53.7 + cyan: 76.2 + white: 76.5 + brightBlack: 33.2 + brightRed: 55.3 + brightGreen: 89.8 + brightYellow: 83.9 + brightBlue: 97.1 + brightMagenta: 73.2 + brightCyan: 94.1 + brightWhite: 106.3 diff --git a/themes/paradise.yaml b/themes/paradise.yaml new file mode 100644 index 00000000..25098fbb --- /dev/null +++ b/themes/paradise.yaml @@ -0,0 +1,49 @@ +name: "Paradise" +source: + marketplace_id: "Manas.paradise-vscode" + version: "0.0.2" + installs: 1552 + author: "Manas" + repo: "https://github.com/paradise-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Manas.paradise-vscode" +colors: + bg: "#151515" + fg: "#E8E3E3" + black: "#151515" + red: "#B66467" + green: "#8C977D" + yellow: "#D9BC8C" + blue: "#8DA3B9" + magenta: "#A988B0" + cyan: "#8AA6A2" + white: "#E8E3E3" + brightBlack: "#424242" + brightRed: "#B66467" + brightGreen: "#8C977D" + brightYellow: "#D9BC8C" + brightBlue: "#8DA3B9" + brightMagenta: "#A988B0" + brightCyan: "#8AA6A2" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.6 + black: 0 + red: 32.2 + green: 43.3 + yellow: 67.8 + blue: 50.3 + magenta: 43.3 + cyan: 50.2 + white: 89.6 + brightBlack: 8.3 + brightRed: 32.2 + brightGreen: 43.3 + brightYellow: 67.8 + brightBlue: 50.3 + brightMagenta: 43.3 + brightCyan: 50.2 + brightWhite: 90.8 diff --git a/themes/parakeet-theme.yaml b/themes/parakeet-theme.yaml new file mode 100644 index 00000000..86ae353f --- /dev/null +++ b/themes/parakeet-theme.yaml @@ -0,0 +1,49 @@ +name: "Parakeet Theme" +source: + marketplace_id: "NyctibiusVII.descomplica-theme" + version: "1.4.18" + installs: 387 + author: "NyctibiusVII" + repo: "https://github.com/Descomplica-ADS/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.descomplica-theme" +colors: + bg: "#000000" + fg: "#2AC7E3" + black: "#434343" + red: "#BC3131" + green: "#00C278" + yellow: "#D4E05B" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BEBEBE" + brightBlack: "#666666" + brightRed: "#FF5555" + brightGreen: "#00E88F" + brightYellow: "#F1FA8C" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#DEDEDE" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 63.5 + black: 9.5 + red: 24.1 + green: 56.7 + yellow: 82.5 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 67.5 + brightBlack: 23 + brightRed: 44.4 + brightGreen: 75.9 + brightYellow: 99.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 86.6 diff --git a/themes/parchment-candlelight-color-theme.yaml b/themes/parchment-candlelight-color-theme.yaml new file mode 100644 index 00000000..9ca79963 --- /dev/null +++ b/themes/parchment-candlelight-color-theme.yaml @@ -0,0 +1,49 @@ +name: "parchment-candlelight-color-theme" +source: + marketplace_id: "johv.parchment-light" + version: "1.10.0" + installs: 3881 + author: "Jonas Hvid" + repo: "https://github.com/c2d7fa/vscode-parchment-light" + url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" +colors: + bg: "#1F160D" + fg: "#ECCFBB" + black: "#58422F" + red: "#DB868A" + green: "#89A768" + yellow: "#B69A69" + blue: "#7E9FD4" + magenta: "#B290D4" + cyan: "#6EA7AC" + white: "#E6BFA0" + brightBlack: "#3D2D1F" + brightRed: "#D55D63" + brightGreen: "#728C56" + brightYellow: "#988057" + brightBlue: "#6285BB" + brightMagenta: "#9E70C7" + brightCyan: "#5C8C90" + brightWhite: "#ECCFBB" +meta: + mode: "dark" + accent: "orange" + hue: 66 + contrast: + fg: 79.6 + black: 9.6 + red: 48.7 + green: 48.5 + yellow: 48.6 + blue: 48.6 + magenta: 48.8 + cyan: 48.5 + white: 71.2 + brightBlack: 0 + brightRed: 36 + brightGreen: 35.5 + brightYellow: 35.3 + brightBlue: 35.5 + brightMagenta: 35.6 + brightCyan: 35.6 + brightWhite: 79.6 diff --git a/themes/parchment-codex-color-theme.yaml b/themes/parchment-codex-color-theme.yaml new file mode 100644 index 00000000..879012ef --- /dev/null +++ b/themes/parchment-codex-color-theme.yaml @@ -0,0 +1,49 @@ +name: "parchment-codex-color-theme" +source: + marketplace_id: "johv.parchment-light" + version: "1.10.0" + installs: 3881 + author: "Jonas Hvid" + repo: "https://github.com/c2d7fa/vscode-parchment-light" + url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" +colors: + bg: "#FBF9F8" + fg: "#372F28" + black: "#CFB49F" + red: "#9F3E43" + green: "#51643C" + yellow: "#6E5C3D" + blue: "#455F87" + magenta: "#78499E" + cyan: "#406467" + white: "#443932" + brightBlack: "#E1D2C8" + brightRed: "#C74F56" + brightGreen: "#677E4D" + brightYellow: "#8A744E" + brightBlue: "#5878A9" + brightMagenta: "#9460C0" + brightCyan: "#527E82" + brightWhite: "#372F28" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.1 + black: 34.5 + red: 78.1 + green: 78.8 + yellow: 78.6 + blue: 78.7 + magenta: 78.4 + cyan: 78.7 + white: 92.5 + brightBlack: 19 + brightRed: 67 + brightGreen: 67.8 + brightYellow: 67.7 + brightBlue: 67.7 + brightMagenta: 67.4 + brightCyan: 67.8 + brightWhite: 96.1 diff --git a/themes/parchment-digitized-color-theme.yaml b/themes/parchment-digitized-color-theme.yaml new file mode 100644 index 00000000..4179615d --- /dev/null +++ b/themes/parchment-digitized-color-theme.yaml @@ -0,0 +1,49 @@ +name: "parchment-digitized-color-theme" +source: + marketplace_id: "johv.parchment-light" + version: "1.10.0" + installs: 3881 + author: "Jonas Hvid" + repo: "https://github.com/c2d7fa/vscode-parchment-light" + url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" +colors: + bg: "#F9F9F9" + fg: "#303030" + black: "#B9B9B9" + red: "#9F3E43" + green: "#51643C" + yellow: "#6E5C3D" + blue: "#455F87" + magenta: "#78499E" + cyan: "#406467" + white: "#3B3B3B" + brightBlack: "#D4D4D4" + brightRed: "#C74F56" + brightGreen: "#677E4D" + brightYellow: "#8A744E" + brightBlue: "#5878A9" + brightMagenta: "#9460C0" + brightCyan: "#527E82" + brightWhite: "#303030" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96 + black: 34.2 + red: 77.8 + green: 78.6 + yellow: 78.4 + blue: 78.5 + magenta: 78.2 + cyan: 78.5 + white: 92.3 + brightBlack: 19.2 + brightRed: 66.8 + brightGreen: 67.6 + brightYellow: 67.5 + brightBlue: 67.5 + brightMagenta: 67.2 + brightCyan: 67.6 + brightWhite: 96 diff --git a/themes/parchment-starlight-color-theme.yaml b/themes/parchment-starlight-color-theme.yaml new file mode 100644 index 00000000..11f4e47f --- /dev/null +++ b/themes/parchment-starlight-color-theme.yaml @@ -0,0 +1,49 @@ +name: "parchment-starlight-color-theme" +source: + marketplace_id: "johv.parchment-light" + version: "1.10.0" + installs: 3881 + author: "Jonas Hvid" + repo: "https://github.com/c2d7fa/vscode-parchment-light" + url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" +colors: + bg: "#181818" + fg: "#D4D4D4" + black: "#474747" + red: "#DB868A" + green: "#89A768" + yellow: "#B69A69" + blue: "#7E9FD4" + magenta: "#B290D4" + cyan: "#6EA7AC" + white: "#C6C6C6" + brightBlack: "#303030" + brightRed: "#D55D63" + brightGreen: "#728C56" + brightYellow: "#988057" + brightBlue: "#6285BB" + brightMagenta: "#9E70C7" + brightCyan: "#5C8C90" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.4 + black: 9.8 + red: 48.7 + green: 48.5 + yellow: 48.6 + blue: 48.5 + magenta: 48.7 + cyan: 48.5 + white: 71 + brightBlack: 0 + brightRed: 36 + brightGreen: 35.5 + brightYellow: 35.3 + brightBlue: 35.5 + brightMagenta: 35.6 + brightCyan: 35.6 + brightWhite: 79.4 diff --git a/themes/parchment.yaml b/themes/parchment.yaml new file mode 100644 index 00000000..a3393675 --- /dev/null +++ b/themes/parchment.yaml @@ -0,0 +1,49 @@ +name: "Parchment" +source: + marketplace_id: "lumiknit.parchment" + version: "0.0.11" + installs: 4107 + author: "lumiknit" + repo: "https://github.com/lumiknit/vscode-parchment-theme/" + url: "https://marketplace.visualstudio.com/items?itemName=lumiknit.parchment" +colors: + bg: "#F1EDE6" + fg: "#000000" + black: "#000000" + red: "#E41507" + green: "#329033" + yellow: "#9E7400" + blue: "#2981CA" + magenta: "#9805AE" + cyan: "#2E998E" + white: "#DDDDDD" + brightBlack: "#505050" + brightRed: "#FF675D" + brightGreen: "#62B135" + brightYellow: "#E6BB00" + brightBlue: "#4190F7" + brightMagenta: "#BA65DB" + brightCyan: "#20DDDD" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: 82 + contrast: + fg: 95.6 + black: 95.6 + red: 60.1 + green: 57 + yellow: 58.6 + blue: 57.5 + magenta: 71.9 + cyan: 51.4 + white: 0 + brightBlack: 77.5 + brightRed: 43.4 + brightGreen: 41.2 + brightYellow: 23.5 + brightBlue: 48.4 + brightMagenta: 51.8 + brightCyan: 18.9 + brightWhite: 9.4 diff --git a/themes/pare-colors-theme.yaml b/themes/pare-colors-theme.yaml new file mode 100644 index 00000000..b3854837 --- /dev/null +++ b/themes/pare-colors-theme.yaml @@ -0,0 +1,49 @@ +name: "Pare Colors Theme" +source: + marketplace_id: "jliima.pare-colors-theme" + version: "1.0.1" + installs: 1271 + author: "Jere Liimatainen" + repo: "https://github.com/jliima/vscode-pare-colors-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jliima.pare-colors-theme" +colors: + bg: "#131C24" + fg: "#CFDCEB" + black: "#10171E" + red: "#CD222F" + green: "#0BDE96" + yellow: "#EE8109" + blue: "#61AFEF" + magenta: "#556072" + cyan: "#0BA3A4" + white: "#CFDCEB" + brightBlack: "#556072" + brightRed: "#F3170D" + brightGreen: "#0BDE96" + brightYellow: "#EE8109" + brightBlue: "#61AFEF" + brightMagenta: "#C91B8E" + brightCyan: "#0BA3A4" + brightWhite: "#CFDCEB" +meta: + mode: "dark" + accent: "orange" + hue: 246 + contrast: + fg: 83 + black: 0 + red: 25 + green: 69.6 + yellow: 48.6 + blue: 54.2 + magenta: 18.8 + cyan: 43 + white: 83 + brightBlack: 18.8 + brightRed: 33.3 + brightGreen: 69.6 + brightYellow: 48.6 + brightBlue: 54.2 + brightMagenta: 26.3 + brightCyan: 43 + brightWhite: 83 diff --git a/themes/parkside-light.yaml b/themes/parkside-light.yaml new file mode 100644 index 00000000..b08401be --- /dev/null +++ b/themes/parkside-light.yaml @@ -0,0 +1,49 @@ +name: "Parkside Light" +source: + marketplace_id: "marcuskaz.parkside-light-theme" + version: "1.3.4" + installs: 21 + author: "Marcus Kazmierczak" + repo: "https://github.com/mkaz/parkside-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=marcuskaz.parkside-light-theme" +colors: + bg: "#FFF7F4" + fg: "#2D2828" + black: "#2D2828" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#EEE8D5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.5 + black: 97.5 + red: 66.6 + green: 55.2 + yellow: 55.2 + blue: 60.1 + magenta: 66.4 + cyan: 54.4 + white: 0 + brightBlack: 72.9 + brightRed: 67.1 + brightGreen: 72.9 + brightYellow: 67 + brightBlue: 54.9 + brightMagenta: 66.3 + brightCyan: 48.1 + brightWhite: 0 diff --git a/themes/paro-paro-solarized-dark-theme.yaml b/themes/paro-paro-solarized-dark-theme.yaml new file mode 100644 index 00000000..b7a280f0 --- /dev/null +++ b/themes/paro-paro-solarized-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Paro-Paro-Solarized-Dark-Theme" +source: + marketplace_id: "Paro-Paro.paro-paro-themes" + version: "2.0.2" + installs: 35 + author: "Paro-Paro" + repo: "https://github.com/paro-paro/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Paro-Paro.paro-paro-themes" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#FF0000" + green: "#1EC81E" + yellow: "#F0CC09" + blue: "#1460D2" + magenta: "#C792EA" + cyan: "#00BBBB" + white: "#F5F5F5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 103.3 + black: 0 + red: 35.3 + green: 56.3 + yellow: 74.9 + blue: 21.3 + magenta: 52.5 + cyan: 53.6 + white: 99 + brightBlack: 0 + brightRed: 28.4 + brightGreen: 22.7 + brightYellow: 28.5 + brightBlue: 40.7 + brightMagenta: 29.2 + brightCyan: 47.6 + brightWhite: 99.8 diff --git a/themes/pastel-contrast.yaml b/themes/pastel-contrast.yaml new file mode 100644 index 00000000..cca91e67 --- /dev/null +++ b/themes/pastel-contrast.yaml @@ -0,0 +1,49 @@ +name: "pastel-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0F0F0F" + fg: "#EEEEEE" + black: "#1C1C1C" + red: "#BA0E2E" + green: "#9474A9" + yellow: "#04C4A5" + blue: "#C56C6C" + magenta: "#C5906C" + cyan: "#E2E060" + white: "#FBFBFB" + brightBlack: "#424242" + brightRed: "#F03E5F" + brightGreen: "#C5B3D0" + brightYellow: "#33FBDB" + brightBlue: "#E2B5B5" + brightMagenta: "#E2C7B5" + brightCyan: "#F2F1B6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 96.4 + black: 0 + red: 21.1 + green: 34.6 + yellow: 58.7 + blue: 37.4 + magenta: 48.1 + cyan: 84.1 + white: 104.9 + brightBlack: 8.8 + brightRed: 37.4 + brightGreen: 64.4 + brightYellow: 88.3 + brightBlue: 68.1 + brightMagenta: 75.3 + brightCyan: 96.1 + brightWhite: 107.5 diff --git a/themes/pastel-inu.yaml b/themes/pastel-inu.yaml new file mode 100644 index 00000000..42579294 --- /dev/null +++ b/themes/pastel-inu.yaml @@ -0,0 +1,49 @@ +name: "pastel inu" +source: + marketplace_id: "d-end.pastel-inu" + version: "0.0.6" + installs: 1569 + author: "d end" + repo: "https://github.com/itsdend/pastel_inu" + url: "https://marketplace.visualstudio.com/items?itemName=d-end.pastel-inu" +colors: + bg: "#24273A" + fg: "#EB87B6" + black: "#8A3868" + red: "#FC50B4" + green: "#4FC8B7" + yellow: "#F9E2AF" + blue: "#7AC3FF" + magenta: "#D179EE" + cyan: "#F2D5CF" + white: "#699DAD" + brightBlack: "#8A3868" + brightRed: "#FC50B4" + brightGreen: "#4FC8B7" + brightYellow: "#F9E2AF" + brightBlue: "#7AC3FF" + brightMagenta: "#D179EE" + brightCyan: "#F2D5CF" + brightWhite: "#699DAD" +meta: + mode: "dark" + accent: "red" + hue: 277 + contrast: + fg: 51.1 + black: 13.4 + red: 42.4 + green: 59.3 + yellow: 87 + blue: 63.1 + magenta: 45.8 + cyan: 81.4 + white: 41.8 + brightBlack: 13.4 + brightRed: 42.4 + brightGreen: 59.3 + brightYellow: 87 + brightBlue: 63.1 + brightMagenta: 45.8 + brightCyan: 81.4 + brightWhite: 41.8 diff --git a/themes/pastel-light.yaml b/themes/pastel-light.yaml new file mode 100644 index 00000000..388e80b8 --- /dev/null +++ b/themes/pastel-light.yaml @@ -0,0 +1,49 @@ +name: "pastel-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#222222" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#9474A9" + yellow: "#04C4A5" + blue: "#C56C6C" + magenta: "#C5906C" + cyan: "#E2E060" + white: "#2F2F2F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C5B3D0" + brightYellow: "#33FBDB" + brightBlue: "#E2B5B5" + brightMagenta: "#E2C7B5" + brightCyan: "#F2F1B6" + brightWhite: "#555555" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.9 + black: 0 + red: 80.3 + green: 66.7 + yellow: 43.1 + blue: 63.9 + magenta: 53.4 + cyan: 19 + white: 99.8 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 37.7 + brightYellow: 15.1 + brightBlue: 34.1 + brightMagenta: 27.3 + brightCyan: 7.8 + brightWhite: 85.9 diff --git a/themes/pastel.yaml b/themes/pastel.yaml new file mode 100644 index 00000000..74b20e6d --- /dev/null +++ b/themes/pastel.yaml @@ -0,0 +1,49 @@ +name: "Pastel" +source: + marketplace_id: "Tsun.Pastelization" + version: "0.0.3" + installs: 407 + author: "Tsun" + repo: "https://github.com/HEKYPTO/Pastelization" + url: "https://marketplace.visualstudio.com/items?itemName=Tsun.Pastelization" +colors: + bg: "#FFFFFF" + fg: "#665D61" + black: "#868686" + red: "#FF726A" + green: "#98D198" + yellow: "#FFFB54" + blue: "#708EB4" + magenta: "#C486B0" + cyan: "#79D2E6" + white: "#F4F5F1" + brightBlack: "#ABABAB" + brightRed: "#FF0D00" + brightGreen: "#13C913" + brightYellow: "#FFFDA3" + brightBlue: "#B4C8EA" + brightMagenta: "#EC53BB" + brightCyan: "#0DDBDB" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 81.6 + black: 64 + red: 51.2 + green: 32.3 + yellow: 0 + blue: 61.2 + magenta: 54.4 + cyan: 31 + white: 0 + brightBlack: 45.3 + brightRed: 64.1 + brightGreen: 43.2 + brightYellow: 0 + brightBlue: 30.2 + brightMagenta: 58.5 + brightCyan: 30.5 + brightWhite: 0 diff --git a/themes/pastelefull.yaml b/themes/pastelefull.yaml new file mode 100644 index 00000000..b300ed75 --- /dev/null +++ b/themes/pastelefull.yaml @@ -0,0 +1,49 @@ +name: "Pastelefull" +source: + marketplace_id: "HarleyTorrisi.pastelefull" + version: "0.0.3" + installs: 795 + author: "Harley Torrisi" + repo: "https://github.com/Harley-Torrisi/Paselefull" + url: "https://marketplace.visualstudio.com/items?itemName=HarleyTorrisi.pastelefull" +colors: + bg: "#22272E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 77.3 + black: 0 + red: 24.5 + green: 50.8 + yellow: 83.4 + blue: 25.2 + magenta: 27.6 + cyan: 45.4 + white: 87.8 + brightBlack: 19.8 + brightRed: 36.4 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.8 + brightMagenta: 43.2 + brightCyan: 53.2 + brightWhite: 87.8 diff --git a/themes/pastelfairy.yaml b/themes/pastelfairy.yaml new file mode 100644 index 00000000..a106b6e3 --- /dev/null +++ b/themes/pastelfairy.yaml @@ -0,0 +1,49 @@ +name: "pastelfairy" +source: + marketplace_id: "tetracalibers.pastelfairy" + version: "1.0.0" + installs: 873 + author: "tomixy" + repo: "https://github.com/tetracalibers/PastelFairy" + url: "https://marketplace.visualstudio.com/items?itemName=tetracalibers.pastelfairy" +colors: + bg: "#FFFFFF" + fg: "#B2BEC3" + black: "#2D3436" + red: "#D63031" + green: "#00B894" + yellow: "#FDCB6E" + blue: "#0984E3" + magenta: "#E84393" + cyan: "#00CEC9" + white: "#B2BEC3" + brightBlack: "#636E72" + brightRed: "#FF7675" + brightGreen: "#55EFC4" + brightYellow: "#FFEAA7" + brightBlue: "#74B9FF" + brightMagenta: "#FD79A8" + brightCyan: "#81ECEC" + brightWhite: "#DFE6E9" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 36.2 + black: 98.7 + red: 72.1 + green: 49 + yellow: 23.5 + blue: 65.5 + magenta: 63.5 + cyan: 37.2 + white: 36.2 + brightBlack: 76.1 + brightRed: 50 + brightGreen: 20.9 + brightYellow: 9.4 + brightBlue: 40.3 + brightMagenta: 48.2 + brightCyan: 18.6 + brightWhite: 13 diff --git a/themes/pastellize-dark-muted.yaml b/themes/pastellize-dark-muted.yaml new file mode 100644 index 00000000..45dd3ade --- /dev/null +++ b/themes/pastellize-dark-muted.yaml @@ -0,0 +1,49 @@ +name: "Pastellize Dark (Muted)" +source: + marketplace_id: "vulfpeck.pastellize" + version: "0.0.3" + installs: 656 + author: "vulfpeck" + repo: "https://github.com/Vulfpeck/pastellize" + url: "https://marketplace.visualstudio.com/items?itemName=vulfpeck.pastellize" +colors: + bg: "#1F1628" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 307 + contrast: + fg: 106.5 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/patina-colors.yaml b/themes/patina-colors.yaml new file mode 100644 index 00000000..6ea607ae --- /dev/null +++ b/themes/patina-colors.yaml @@ -0,0 +1,49 @@ +name: "Patina Colors" +source: + marketplace_id: "SantiagoBobrik.patina-colors" + version: "0.2.1" + installs: 18 + author: "SantiagoBobrik" + repo: "https://github.com/SantiagoBobrik/patina-colors" + url: "https://marketplace.visualstudio.com/items?itemName=SantiagoBobrik.patina-colors" +colors: + bg: "#121211" + fg: "#D8D8C6" + black: "#1A1A19" + red: "#7A4A4A" + green: "#4A7A4A" + yellow: "#7A7A4A" + blue: "#4A5A7A" + magenta: "#7A4A7A" + cyan: "#4A7A6A" + white: "#A8A897" + brightBlack: "#666665" + brightRed: "#8A6A8A" + brightGreen: "#6AAA6A" + brightYellow: "#C8A86A" + brightBlue: "#6A8AAA" + brightMagenta: "#AA6AAA" + brightCyan: "#6AAA8A" + brightWhite: "#D8D8C6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 81.6 + black: 0 + red: 16.5 + green: 26.5 + yellow: 30.2 + blue: 17.5 + magenta: 18.1 + cyan: 27.2 + white: 54 + brightBlack: 22.4 + brightRed: 28.8 + brightGreen: 47.9 + brightYellow: 56.9 + brightBlue: 37.5 + brightMagenta: 34.6 + brightCyan: 48.8 + brightWhite: 81.6 diff --git a/themes/patina-dark-soft.yaml b/themes/patina-dark-soft.yaml new file mode 100644 index 00000000..db88c9cc --- /dev/null +++ b/themes/patina-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Patina Dark Soft" +source: + marketplace_id: "LuisCMarkmann.patina-theme" + version: "0.9.0" + installs: 43 + author: "Luis C. Markmann" + repo: "https://github.com/lmarkmann/patina-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LuisCMarkmann.patina-theme" +colors: + bg: "#1A1A1A" + fg: "#C8C4B8" + black: "#333333" + red: "#B86E6E" + green: "#4A8A6E" + yellow: "#D4BF6E" + blue: "#65A8B5" + magenta: "#C08A7D" + cyan: "#5A9E9C" + white: "#C8C4B8" + brightBlack: "#4E4E4E" + brightRed: "#B86E6E" + brightGreen: "#4A8A6E" + brightYellow: "#D4BF6E" + brightBlue: "#65A8B5" + brightMagenta: "#C08A7D" + brightCyan: "#5A9E9C" + brightWhite: "#C8C4B8" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 69.6 + black: 0 + red: 34.8 + green: 32.5 + yellow: 67 + blue: 48.5 + magenta: 44.8 + cyan: 42.7 + white: 69.6 + brightBlack: 12.1 + brightRed: 34.8 + brightGreen: 32.5 + brightYellow: 67 + brightBlue: 48.5 + brightMagenta: 44.8 + brightCyan: 42.7 + brightWhite: 69.6 diff --git a/themes/patina-dark.yaml b/themes/patina-dark.yaml new file mode 100644 index 00000000..f04b4bb0 --- /dev/null +++ b/themes/patina-dark.yaml @@ -0,0 +1,49 @@ +name: "Patina Dark" +source: + marketplace_id: "LuisCMarkmann.patina-theme" + version: "0.9.0" + installs: 43 + author: "Luis C. Markmann" + repo: "https://github.com/lmarkmann/patina-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LuisCMarkmann.patina-theme" +colors: + bg: "#121212" + fg: "#DBD7CA" + black: "#2E2E2E" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6DB3C2" + magenta: "#C98A7D" + cyan: "#5DA9A7" + white: "#DBD7CA" + brightBlack: "#585858" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6DB3C2" + brightMagenta: "#C98A7D" + brightCyan: "#5DA9A7" + brightWhite: "#DBD7CA" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 81.7 + black: 0 + red: 41.2 + green: 37.1 + yellow: 76 + blue: 55 + magenta: 47 + cyan: 48.6 + white: 81.7 + brightBlack: 16.7 + brightRed: 41.2 + brightGreen: 37.1 + brightYellow: 76 + brightBlue: 55 + brightMagenta: 47 + brightCyan: 48.6 + brightWhite: 81.7 diff --git a/themes/patina-light.yaml b/themes/patina-light.yaml new file mode 100644 index 00000000..2af425b3 --- /dev/null +++ b/themes/patina-light.yaml @@ -0,0 +1,49 @@ +name: "Patina Light" +source: + marketplace_id: "LuisCMarkmann.patina-theme" + version: "0.9.0" + installs: 43 + author: "Luis C. Markmann" + repo: "https://github.com/lmarkmann/patina-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LuisCMarkmann.patina-theme" +colors: + bg: "#DDD7C4" + fg: "#393A34" + black: "#393A34" + red: "#AB5959" + green: "#3E7A5E" + yellow: "#BDA437" + blue: "#4E8FA0" + magenta: "#A65E4F" + cyan: "#3E918F" + white: "#DDD7C4" + brightBlack: "#8A8A80" + brightRed: "#AB5959" + brightGreen: "#3E7A5E" + brightYellow: "#BDA437" + brightBlue: "#4E8FA0" + brightMagenta: "#A65E4F" + brightCyan: "#3E918F" + brightWhite: "#393A34" +meta: + mode: "light" + accent: "green" + hue: 92 + contrast: + fg: 73.1 + black: 73.1 + red: 50.1 + green: 51.4 + yellow: 24.9 + blue: 40.6 + magenta: 50 + cyan: 41.2 + white: 0 + brightBlack: 39.1 + brightRed: 50.1 + brightGreen: 51.4 + brightYellow: 24.9 + brightBlue: 40.6 + brightMagenta: 50 + brightCyan: 41.2 + brightWhite: 73.1 diff --git a/themes/patina-stellar.yaml b/themes/patina-stellar.yaml new file mode 100644 index 00000000..8818df9f --- /dev/null +++ b/themes/patina-stellar.yaml @@ -0,0 +1,49 @@ +name: "Patina Stellar" +source: + marketplace_id: "LuisCMarkmann.patina-theme" + version: "0.9.0" + installs: 43 + author: "Luis C. Markmann" + repo: "https://github.com/lmarkmann/patina-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LuisCMarkmann.patina-theme" +colors: + bg: "#F5F2ED" + fg: "#393A34" + black: "#393A34" + red: "#AB5959" + green: "#3E7A5E" + yellow: "#BDA437" + blue: "#4E8FA0" + magenta: "#A65E4F" + cyan: "#3E918F" + white: "#F5F2ED" + brightBlack: "#999999" + brightRed: "#AB5959" + brightGreen: "#3E7A5E" + brightYellow: "#BDA437" + brightBlue: "#4E8FA0" + brightMagenta: "#A65E4F" + brightCyan: "#3E918F" + brightWhite: "#393A34" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 88.9 + black: 88.9 + red: 65.9 + green: 67.2 + yellow: 40.7 + blue: 56.3 + magenta: 65.7 + cyan: 56.9 + white: 0 + brightBlack: 47 + brightRed: 65.9 + brightGreen: 67.2 + brightYellow: 40.7 + brightBlue: 56.3 + brightMagenta: 65.7 + brightCyan: 56.9 + brightWhite: 88.9 diff --git a/themes/patr-theme.yaml b/themes/patr-theme.yaml new file mode 100644 index 00000000..5352f391 --- /dev/null +++ b/themes/patr-theme.yaml @@ -0,0 +1,49 @@ +name: "patr-theme" +source: + marketplace_id: "patr-cloud.patr-theme" + version: "0.0.2" + installs: 133 + author: "Patr Cloud" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=patr-cloud.patr-theme" +colors: + bg: "#0D0526" + fg: "#FFFFFF" + black: "#493F3F" + red: "#D62B36" + green: "#47C96C" + yellow: "#FDD13A" + blue: "#007BFF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#807979" + brightRed: "#D62B36" + brightGreen: "#47C96C" + brightYellow: "#FDD13A" + brightBlue: "#007BFF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 289 + contrast: + fg: 107.6 + black: 8.6 + red: 28.9 + green: 60.4 + yellow: 81.2 + blue: 35.1 + magenta: 30.4 + cyan: 48.2 + white: 107.6 + brightBlack: 31.9 + brightRed: 28.9 + brightGreen: 60.4 + brightYellow: 81.2 + brightBlue: 35.1 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 107.6 diff --git a/themes/patricklimax.yaml b/themes/patricklimax.yaml new file mode 100644 index 00000000..66a78ffe --- /dev/null +++ b/themes/patricklimax.yaml @@ -0,0 +1,49 @@ +name: "patricklimax" +source: + marketplace_id: "patricklimax.theme-trick" + version: "0.4.0" + installs: 1056 + author: "patricklimax" + repo: "www.github.com/patricklimax/vscode-theme-trick" + url: "https://marketplace.visualstudio.com/items?itemName=patricklimax.theme-trick" +colors: + bg: "#121119" + fg: "#C276FF" + black: "#262C45" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 290 + contrast: + fg: 46.8 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.5 diff --git a/themes/patriot-contrast.yaml b/themes/patriot-contrast.yaml new file mode 100644 index 00000000..4195a18f --- /dev/null +++ b/themes/patriot-contrast.yaml @@ -0,0 +1,49 @@ +name: "patriot-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0D0E0F" + fg: "#CAD9E3" + black: "#191B1D" + red: "#BA0E2E" + green: "#DE333C" + yellow: "#2E6FD9" + blue: "#FFFFFF" + magenta: "#BBBCC4" + cyan: "#DE333C" + white: "#DBE5EC" + brightBlack: "#3C4146" + brightRed: "#F03E5F" + brightGreen: "#EC8B90" + brightYellow: "#84AAE9" + brightBlue: "#FFFFFF" + brightMagenta: "#F2F2F3" + brightCyan: "#EC8B90" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81.8 + black: 0 + red: 21.2 + green: 31.5 + yellow: 28.7 + blue: 107.6 + magenta: 66.2 + cyan: 31.5 + white: 89.7 + brightBlack: 8.3 + brightRed: 37.5 + brightGreen: 54.2 + brightYellow: 55.3 + brightBlue: 107.6 + brightMagenta: 99.1 + brightCyan: 54.2 + brightWhite: 107.6 diff --git a/themes/patriot-light.yaml b/themes/patriot-light.yaml new file mode 100644 index 00000000..fba77984 --- /dev/null +++ b/themes/patriot-light.yaml @@ -0,0 +1,49 @@ +name: "patriot-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#DE333C" + yellow: "#2E6FD9" + blue: "#333333" + magenta: "#AAAAAA" + cyan: "#DE333C" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#EC8B90" + brightYellow: "#84AAE9" + brightBlue: "#666666" + brightMagenta: "#DDDDDD" + brightCyan: "#EC8B90" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 69.8 + yellow: 72.7 + blue: 98.7 + magenta: 45.8 + cyan: 69.8 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 47.5 + brightYellow: 46.4 + brightBlue: 78.8 + brightMagenta: 17.6 + brightCyan: 47.5 + brightWhite: 78.8 diff --git a/themes/patriot.yaml b/themes/patriot.yaml new file mode 100644 index 00000000..8ae8fd54 --- /dev/null +++ b/themes/patriot.yaml @@ -0,0 +1,49 @@ +name: "patriot" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2D3133" + fg: "#CAD9E3" + black: "#393E41" + red: "#BA0E2E" + green: "#DE333C" + yellow: "#2E6FD9" + blue: "#FFFFFF" + magenta: "#BBBCC4" + cyan: "#DE333C" + white: "#DBE5EC" + brightBlack: "#5D6569" + brightRed: "#F03E5F" + brightGreen: "#EC8B90" + brightYellow: "#84AAE9" + brightBlue: "#FFFFFF" + brightMagenta: "#F2F2F3" + brightCyan: "#EC8B90" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 76.9 + black: 0 + red: 16.3 + green: 26.7 + yellow: 23.8 + blue: 102.7 + magenta: 61.3 + cyan: 26.7 + white: 84.8 + brightBlack: 16.9 + brightRed: 32.6 + brightGreen: 49.4 + brightYellow: 50.5 + brightBlue: 102.7 + brightMagenta: 94.2 + brightCyan: 49.4 + brightWhite: 102.7 diff --git a/themes/paulera-s-dark-monokai.yaml b/themes/paulera-s-dark-monokai.yaml new file mode 100644 index 00000000..ff360f53 --- /dev/null +++ b/themes/paulera-s-dark-monokai.yaml @@ -0,0 +1,49 @@ +name: "Paulera's dark monokai" +source: + marketplace_id: "Paulera.paulerathemes" + version: "1.4.3" + installs: 1867 + author: "Paulera" + repo: "https://github.com/paulo-evangelista" + url: "https://marketplace.visualstudio.com/items?itemName=Paulera.paulerathemes" +colors: + bg: "#151515" + fg: "#F7F1FF" + black: "#363537" + red: "#FC618D" + green: "#7BD88F" + yellow: "#B781DB" + blue: "#FD9353" + magenta: "#948AE3" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#B781DB" + brightBlue: "#FD9353" + brightMagenta: "#948AE3" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 99.4 + black: 0 + red: 46.5 + green: 70.4 + yellow: 45.5 + blue: 58.1 + magenta: 44.4 + cyan: 70.2 + white: 99.4 + brightBlack: 23 + brightRed: 46.5 + brightGreen: 70.4 + brightYellow: 45.5 + brightBlue: 58.1 + brightMagenta: 44.4 + brightCyan: 70.2 + brightWhite: 99.4 diff --git a/themes/paulera-s-lyo.yaml b/themes/paulera-s-lyo.yaml new file mode 100644 index 00000000..f08862b1 --- /dev/null +++ b/themes/paulera-s-lyo.yaml @@ -0,0 +1,49 @@ +name: "Paulera's Lyo" +source: + marketplace_id: "Paulera.paulerathemes" + version: "1.4.3" + installs: 1867 + author: "Paulera" + repo: "https://github.com/paulo-evangelista" + url: "https://marketplace.visualstudio.com/items?itemName=Paulera.paulerathemes" +colors: + bg: "#151515" + fg: "#F7F1FF" + black: "#363537" + red: "#FC618D" + green: "#7BD88F" + yellow: "#5AD4E6" + blue: "#FD9353" + magenta: "#5AD4E6" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#5AD4E6" + brightBlue: "#FD9353" + brightMagenta: "#5AD4E6" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 99.4 + black: 0 + red: 46.5 + green: 70.4 + yellow: 70.2 + blue: 58.1 + magenta: 70.2 + cyan: 70.2 + white: 99.4 + brightBlack: 23 + brightRed: 46.5 + brightGreen: 70.4 + brightYellow: 70.2 + brightBlue: 58.1 + brightMagenta: 70.2 + brightCyan: 70.2 + brightWhite: 99.4 diff --git a/themes/paztels.yaml b/themes/paztels.yaml new file mode 100644 index 00000000..5c36cafa --- /dev/null +++ b/themes/paztels.yaml @@ -0,0 +1,49 @@ +name: "Paztels" +source: + marketplace_id: "SonicFixation.Paztels" + version: "1.1.1" + installs: 224 + author: "SonicFixation" + repo: "https://github.com/SonicFixation/Paztels" + url: "https://marketplace.visualstudio.com/items?itemName=SonicFixation.Paztels" +colors: + bg: "#202121" + fg: "#BEBEBE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 65.2 + black: 0 + red: 25.5 + green: 51.8 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.8 + brightMagenta: 44.1 + brightCyan: 54.2 + brightWhite: 88.8 diff --git a/themes/peaceful-mind.yaml b/themes/peaceful-mind.yaml new file mode 100644 index 00000000..338b7a8d --- /dev/null +++ b/themes/peaceful-mind.yaml @@ -0,0 +1,49 @@ +name: "Peaceful Mind" +source: + marketplace_id: "glitchlover.peaceful-mind" + version: "2.1.0" + installs: 71 + author: "glitchlover" + repo: "https://github.com/glitchlover/peaceful-mind" + url: "https://marketplace.visualstudio.com/items?itemName=glitchlover.peaceful-mind" +colors: + bg: "#161924" + fg: "#89A7B0" + black: "#070613" + red: "#FF7E7E" + green: "#56C280" + yellow: "#FFBE9F" + blue: "#6668E9" + magenta: "#FF73A7" + cyan: "#56B6C2" + white: "#BAE3E8" + brightBlack: "#4D585A" + brightRed: "#FF9595" + brightGreen: "#75FFB8" + brightYellow: "#FFD7C4" + brightBlue: "#7493F1" + brightMagenta: "#FF9BC1" + brightCyan: "#65E3F2" + brightWhite: "#E5FCFF" +meta: + mode: "dark" + accent: "purple" + hue: 273 + contrast: + fg: 50.6 + black: 0 + red: 52.9 + green: 57.3 + yellow: 74.7 + blue: 29.9 + magenta: 51.5 + cyan: 54.3 + white: 83.8 + brightBlack: 15.2 + brightRed: 60.1 + brightGreen: 90.4 + brightYellow: 86.1 + brightBlue: 45 + brightMagenta: 63.6 + brightCyan: 78 + brightWhite: 101.7 diff --git a/themes/peachy-dolphin.yaml b/themes/peachy-dolphin.yaml new file mode 100644 index 00000000..aa8147d0 --- /dev/null +++ b/themes/peachy-dolphin.yaml @@ -0,0 +1,49 @@ +name: "Peachy dolphin" +source: + marketplace_id: "Durelius.peachy-dolphin" + version: "0.0.2" + installs: 64 + author: "Durelius" + repo: "https://github.com/durelius/notyet" + url: "https://marketplace.visualstudio.com/items?itemName=Durelius.peachy-dolphin" +colors: + bg: "#181818" + fg: "#F0F0F0" + black: "#002B36" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#1CD6C7" + white: "#EEE8D5" + brightBlack: "#073642" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 96.9 + black: 0 + red: 30 + green: 41.6 + yellow: 41.6 + blue: 36.6 + magenta: 30.3 + cyan: 67.9 + white: 91.8 + brightBlack: 0 + brightRed: 29.5 + brightGreen: 23.8 + brightYellow: 29.6 + brightBlue: 41.9 + brightMagenta: 30.3 + brightCyan: 48.8 + brightWhite: 101 diff --git a/themes/peachy.yaml b/themes/peachy.yaml new file mode 100644 index 00000000..67792c12 --- /dev/null +++ b/themes/peachy.yaml @@ -0,0 +1,49 @@ +name: "Peachy" +source: + marketplace_id: "Beamaia.peachy" + version: "0.0.1" + installs: 1649 + author: "Beamaia" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Beamaia.peachy" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3479C4" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 29 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/peacock-contrast.yaml b/themes/peacock-contrast.yaml new file mode 100644 index 00000000..c52e725d --- /dev/null +++ b/themes/peacock-contrast.yaml @@ -0,0 +1,49 @@ +name: "peacock-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0C0C0B" + fg: "#FFFFFF" + black: "#191917" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#BCD42A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#FFFFFF" + brightBlack: "#41413C" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D7E67E" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.7 + black: 0 + red: 21.3 + green: 45.8 + yellow: 45.2 + blue: 73.5 + magenta: 45.8 + cyan: 45.2 + white: 107.7 + brightBlack: 8.5 + brightRed: 37.6 + brightGreen: 72.5 + brightYellow: 70.5 + brightBlue: 86.1 + brightMagenta: 72.5 + brightCyan: 70.5 + brightWhite: 107.7 diff --git a/themes/peacock-light.yaml b/themes/peacock-light.yaml new file mode 100644 index 00000000..315531cf --- /dev/null +++ b/themes/peacock-light.yaml @@ -0,0 +1,49 @@ +name: "peacock-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#BCD42A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D7E67E" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 55.8 + yellow: 56.3 + blue: 29.2 + magenta: 55.8 + cyan: 56.3 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 30.1 + brightYellow: 32 + brightBlue: 17.3 + brightMagenta: 30.1 + brightCyan: 32 + brightWhite: 78.8 diff --git a/themes/peacock.yaml b/themes/peacock.yaml new file mode 100644 index 00000000..ac26b783 --- /dev/null +++ b/themes/peacock.yaml @@ -0,0 +1,49 @@ +name: "Peacock" +source: + marketplace_id: "marnix.peacock" + version: "1.1.6" + installs: 33071 + author: "Marnix Koops" + repo: "https://github.com/marnixkoops/peacock" + url: "https://marketplace.visualstudio.com/items?itemName=marnix.peacock" +colors: + bg: "#1E2336" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 272 + contrast: + fg: 57.7 + black: 0 + red: 35 + green: 58.6 + yellow: 46.9 + blue: 47.9 + magenta: 37.3 + cyan: 50.8 + white: 88.9 + brightBlack: 13.7 + brightRed: 44.4 + brightGreen: 75 + brightYellow: 59.5 + brightBlue: 62 + brightMagenta: 48.5 + brightCyan: 66.1 + brightWhite: 81.3 diff --git a/themes/peacocks-in-space-contrast.yaml b/themes/peacocks-in-space-contrast.yaml new file mode 100644 index 00000000..c98ee930 --- /dev/null +++ b/themes/peacocks-in-space-contrast.yaml @@ -0,0 +1,49 @@ +name: "peacocks-in-space-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#121419" + fg: "#DEE3EC" + black: "#1D2028" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#BCD42A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#EEF1F5" + brightBlack: "#3D4354" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D7E67E" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 88.8 + black: 0 + red: 20.8 + green: 45.3 + yellow: 44.7 + blue: 72.9 + magenta: 45.3 + cyan: 44.7 + white: 97.7 + brightBlack: 8.8 + brightRed: 37.1 + brightGreen: 72 + brightYellow: 70 + brightBlue: 85.6 + brightMagenta: 72 + brightCyan: 70 + brightWhite: 107.1 diff --git a/themes/peacocks-in-space-light.yaml b/themes/peacocks-in-space-light.yaml new file mode 100644 index 00000000..c1dbd12e --- /dev/null +++ b/themes/peacocks-in-space-light.yaml @@ -0,0 +1,49 @@ +name: "peacocks-in-space-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#DEE3EC" + fg: "#2B303B" + black: "#EEF1F5" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#A6B73A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#363C4A" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#CBD780" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#566076" +meta: + mode: "light" + accent: "orange" + hue: 262 + contrast: + fg: 82.9 + black: 0 + red: 63.6 + green: 39 + yellow: 39.6 + blue: 26.9 + magenta: 39 + cyan: 39.6 + white: 78.8 + brightBlack: 16.5 + brightRed: 47.2 + brightGreen: 13.4 + brightYellow: 15.3 + brightBlue: 8.4 + brightMagenta: 13.4 + brightCyan: 15.3 + brightWhite: 64.7 diff --git a/themes/peacocks-in-space.yaml b/themes/peacocks-in-space.yaml new file mode 100644 index 00000000..2e745f08 --- /dev/null +++ b/themes/peacocks-in-space.yaml @@ -0,0 +1,49 @@ +name: "peacocks-in-space" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2B303B" + fg: "#DEE3EC" + black: "#363C4A" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#BCD42A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#EEF1F5" + brightBlack: "#566076" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D7E67E" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 84.4 + black: 0 + red: 16.4 + green: 40.9 + yellow: 40.3 + blue: 68.6 + magenta: 40.9 + cyan: 40.3 + white: 93.4 + brightBlack: 15.4 + brightRed: 32.7 + brightGreen: 67.6 + brightYellow: 65.6 + brightBlue: 81.2 + brightMagenta: 67.6 + brightCyan: 65.6 + brightWhite: 102.8 diff --git a/themes/peel-contrast.yaml b/themes/peel-contrast.yaml new file mode 100644 index 00000000..7cf62e1f --- /dev/null +++ b/themes/peel-contrast.yaml @@ -0,0 +1,49 @@ +name: "peel-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0C0B0A" + fg: "#EDEBE6" + black: "#1A1816" + red: "#BA0E2E" + green: "#94C7B6" + yellow: "#D3643B" + blue: "#D6E1C7" + magenta: "#94C7B6" + cyan: "#D3643B" + white: "#F8F7F5" + brightBlack: "#443E38" + brightRed: "#F03E5F" + brightGreen: "#D7EAE4" + brightYellow: "#E6A68E" + brightBlue: "#FFFFFF" + brightMagenta: "#D7EAE4" + brightCyan: "#E6A68E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.7 + black: 0 + red: 21.3 + green: 66.4 + yellow: 37.4 + blue: 85.8 + magenta: 66.4 + cyan: 37.4 + white: 102.5 + brightBlack: 7.9 + brightRed: 37.6 + brightGreen: 91.3 + brightYellow: 62.1 + brightBlue: 107.7 + brightMagenta: 91.3 + brightCyan: 62.1 + brightWhite: 107.7 diff --git a/themes/peel-light.yaml b/themes/peel-light.yaml new file mode 100644 index 00000000..9d7238a0 --- /dev/null +++ b/themes/peel-light.yaml @@ -0,0 +1,49 @@ +name: "peel-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#94C7B6" + yellow: "#D3643B" + blue: "#B2BCA4" + magenta: "#94C7B6" + cyan: "#D3643B" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#D7EAE4" + brightYellow: "#E6A68E" + brightBlue: "#E4E7DF" + brightMagenta: "#D7EAE4" + brightCyan: "#E6A68E" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 35.9 + yellow: 64.1 + blue: 38.2 + magenta: 35.9 + cyan: 64.1 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 12.5 + brightYellow: 40 + brightBlue: 12.4 + brightMagenta: 12.5 + brightCyan: 40 + brightWhite: 78.8 diff --git a/themes/peel.yaml b/themes/peel.yaml new file mode 100644 index 00000000..d1ad3640 --- /dev/null +++ b/themes/peel.yaml @@ -0,0 +1,49 @@ +name: "peel" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#23201C" + fg: "#EDEBE6" + black: "#312D27" + red: "#BA0E2E" + green: "#94C7B6" + yellow: "#D3643B" + blue: "#D6E1C7" + magenta: "#94C7B6" + cyan: "#D3643B" + white: "#F8F7F5" + brightBlack: "#5C5449" + brightRed: "#F03E5F" + brightGreen: "#D7EAE4" + brightYellow: "#E6A68E" + brightBlue: "#FFFFFF" + brightMagenta: "#D7EAE4" + brightCyan: "#E6A68E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 92.7 + black: 0 + red: 19.3 + green: 64.4 + yellow: 35.4 + blue: 83.8 + magenta: 64.4 + cyan: 35.4 + white: 100.5 + brightBlack: 14 + brightRed: 35.6 + brightGreen: 89.3 + brightYellow: 60.1 + brightBlue: 105.7 + brightMagenta: 89.3 + brightCyan: 60.1 + brightWhite: 105.7 diff --git a/themes/penitent-contrast.yaml b/themes/penitent-contrast.yaml new file mode 100644 index 00000000..629f4f85 --- /dev/null +++ b/themes/penitent-contrast.yaml @@ -0,0 +1,49 @@ +name: "penitent-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#101C18" + fg: "#B9CEC7" + black: "#192C26" + red: "#BA0E2E" + green: "#E54334" + yellow: "#EA983A" + blue: "#11A361" + magenta: "#E54334" + cyan: "#EA983A" + white: "#C8D8D3" + brightBlack: "#355D50" + brightRed: "#F03E5F" + brightGreen: "#F1978E" + brightYellow: "#F4C896" + brightBlue: "#31E996" + brightMagenta: "#F1978E" + brightCyan: "#F4C896" + brightWhite: "#F5F8F7" +meta: + mode: "dark" + accent: "orange" + hue: 172 + contrast: + fg: 72.7 + black: 0 + red: 20.2 + green: 33.9 + yellow: 55.3 + blue: 41 + magenta: 33.9 + cyan: 55.3 + white: 79.4 + brightBlack: 15.1 + brightRed: 36.5 + brightGreen: 57.8 + brightYellow: 76.5 + brightBlue: 75.6 + brightMagenta: 57.8 + brightCyan: 76.5 + brightWhite: 101.5 diff --git a/themes/penitent-light.yaml b/themes/penitent-light.yaml new file mode 100644 index 00000000..d83d9ffd --- /dev/null +++ b/themes/penitent-light.yaml @@ -0,0 +1,49 @@ +name: "penitent-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#33564B" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#E54334" + yellow: "#EA983A" + blue: "#11A361" + magenta: "#E54334" + cyan: "#EA983A" + white: "#3C6659" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F1978E" + brightYellow: "#F4C896" + brightBlue: "#31E996" + brightMagenta: "#F1978E" + brightCyan: "#F4C896" + brightWhite: "#599683" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 88.2 + black: 0 + red: 80.3 + green: 66.4 + yellow: 45.5 + blue: 59.4 + magenta: 66.4 + cyan: 45.5 + white: 82.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 43 + brightYellow: 25.2 + brightBlue: 26.1 + brightMagenta: 43 + brightCyan: 25.2 + brightWhite: 61.8 diff --git a/themes/penitent.yaml b/themes/penitent.yaml new file mode 100644 index 00000000..0af4d357 --- /dev/null +++ b/themes/penitent.yaml @@ -0,0 +1,49 @@ +name: "penitent" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#1F352E" + fg: "#B9CEC7" + black: "#28453C" + red: "#BA0E2E" + green: "#E54334" + yellow: "#EA983A" + blue: "#11A361" + magenta: "#E54334" + cyan: "#EA983A" + white: "#C8D8D3" + brightBlack: "#457566" + brightRed: "#F03E5F" + brightGreen: "#F1978E" + brightYellow: "#F4C896" + brightBlue: "#31E996" + brightMagenta: "#F1978E" + brightCyan: "#F4C896" + brightWhite: "#F5F8F7" +meta: + mode: "dark" + accent: "orange" + hue: 172 + contrast: + fg: 68.7 + black: 0 + red: 16.2 + green: 29.9 + yellow: 51.3 + blue: 37 + magenta: 29.9 + cyan: 51.3 + white: 75.4 + brightBlack: 20.3 + brightRed: 32.5 + brightGreen: 53.8 + brightYellow: 72.5 + brightBlue: 71.6 + brightMagenta: 53.8 + brightCyan: 72.5 + brightWhite: 97.5 diff --git a/themes/penumbra-dark-contrast.yaml b/themes/penumbra-dark-contrast.yaml new file mode 100644 index 00000000..63c5d475 --- /dev/null +++ b/themes/penumbra-dark-contrast.yaml @@ -0,0 +1,49 @@ +name: "Penumbra Dark Contrast++" +source: + marketplace_id: "PenumbraTheme.penumbra" + version: "0.4.0" + installs: 11879 + author: "Penumbra Theme" + repo: "https://github.com/nealmckee/penumbra_vscode" + url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" +colors: + bg: "#181B1F" + fg: "#AEAEAE" + black: "#0D0F13" + red: "#F48E74" + green: "#61C68A" + yellow: "#C7AD40" + blue: "#97A6FF" + magenta: "#E18DCE" + cyan: "#1AC2E1" + white: "#FFF7ED" + brightBlack: "#636363" + brightRed: "#F48E74" + brightGreen: "#61C68A" + brightYellow: "#C7AD40" + brightBlue: "#97A6FF" + brightMagenta: "#E18DCE" + brightCyan: "#1AC2E1" + brightWhite: "#FFFDFB" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 57 + black: 0 + red: 54.8 + green: 59.7 + yellow: 57.2 + blue: 55.8 + magenta: 54.3 + cyan: 59.6 + white: 101.9 + brightBlack: 20.4 + brightRed: 54.8 + brightGreen: 59.7 + brightYellow: 57.2 + brightBlue: 55.8 + brightMagenta: 54.3 + brightCyan: 59.6 + brightWhite: 105.3 diff --git a/themes/penumbra-dark.yaml b/themes/penumbra-dark.yaml new file mode 100644 index 00000000..4f79b017 --- /dev/null +++ b/themes/penumbra-dark.yaml @@ -0,0 +1,49 @@ +name: "Penumbra Dark" +source: + marketplace_id: "PenumbraTheme.penumbra" + version: "0.4.0" + installs: 11879 + author: "Penumbra Theme" + repo: "https://github.com/nealmckee/penumbra_vscode" + url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" +colors: + bg: "#303338" + fg: "#8F8F8F" + black: "#24272B" + red: "#CB7459" + green: "#46A473" + yellow: "#A38F2D" + blue: "#7E87D6" + magenta: "#BD72A8" + cyan: "#00A0BE" + white: "#FFF7ED" + brightBlack: "#636363" + brightRed: "#CB7459" + brightGreen: "#46A473" + brightYellow: "#A38F2D" + brightBlue: "#7E87D6" + brightMagenta: "#BD72A8" + brightCyan: "#00A0BE" + brightWhite: "#FFFDFB" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 36.3 + black: 0 + red: 34.8 + green: 38.5 + yellow: 36.6 + blue: 35.4 + magenta: 34.4 + cyan: 38.6 + white: 97.5 + brightBlack: 16 + brightRed: 34.8 + brightGreen: 38.5 + brightYellow: 36.6 + brightBlue: 35.4 + brightMagenta: 34.4 + brightCyan: 38.6 + brightWhite: 100.9 diff --git a/themes/penumbra-light.yaml b/themes/penumbra-light.yaml new file mode 100644 index 00000000..dc563eb7 --- /dev/null +++ b/themes/penumbra-light.yaml @@ -0,0 +1,49 @@ +name: "Penumbra Light" +source: + marketplace_id: "PenumbraTheme.penumbra" + version: "0.4.0" + installs: 11879 + author: "Penumbra Theme" + repo: "https://github.com/nealmckee/penumbra_vscode" + url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" +colors: + bg: "#FFF7ED" + fg: "#8F8F8F" + black: "#FFFDFB" + red: "#CB7459" + green: "#46A473" + yellow: "#A38F2D" + blue: "#7E87D6" + magenta: "#BD72A8" + cyan: "#00A0BE" + white: "#3E4044" + brightBlack: "#BEBEBE" + brightRed: "#CB7459" + brightGreen: "#46A473" + brightYellow: "#A38F2D" + brightBlue: "#7E87D6" + brightMagenta: "#BD72A8" + brightCyan: "#00A0BE" + brightWhite: "#24272B" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 55.5 + black: 0 + red: 57 + green: 53.3 + yellow: 55.1 + blue: 56.4 + magenta: 57.4 + cyan: 53.2 + white: 90 + brightBlack: 30.9 + brightRed: 57 + brightGreen: 53.3 + brightYellow: 55.1 + brightBlue: 56.4 + brightMagenta: 57.4 + brightCyan: 53.2 + brightWhite: 97.7 diff --git a/themes/perf-pink.yaml b/themes/perf-pink.yaml new file mode 100644 index 00000000..691f6e12 --- /dev/null +++ b/themes/perf-pink.yaml @@ -0,0 +1,49 @@ +name: "perf-pink" +source: + marketplace_id: "tselmeg.pink-serena" + version: "0.2.0" + installs: 2490 + author: "Serena" + repo: "https://github.com/utselmeg/perf-pink-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tselmeg.pink-serena" +colors: + bg: "#111010" + fg: "#FFE9F2" + black: "#262626" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BCBCBC" + brightBlack: "#6F6666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 96.7 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 65.9 + brightBlack: 23.4 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 107.4 diff --git a/themes/perfect-dark.yaml b/themes/perfect-dark.yaml new file mode 100644 index 00000000..2b2a4aac --- /dev/null +++ b/themes/perfect-dark.yaml @@ -0,0 +1,49 @@ +name: "Perfect Dark" +source: + marketplace_id: "PerfectThings.perfect-dark" + version: "0.0.7" + installs: 760 + author: "Perfect Things" + repo: "https://github.com/perfect-things/vscode-perfect-dark" + url: "https://marketplace.visualstudio.com/items?itemName=PerfectThings.perfect-dark" +colors: + bg: "#292A2B" + fg: "#ABB2BF" + black: "#000000" + red: "#FF2C6D" + green: "#19F9D8" + yellow: "#FFB86C" + blue: "#45A9F9" + magenta: "#FF75B5" + cyan: "#B084EB" + white: "#CDCDCD" + brightBlack: "#757575" + brightRed: "#FF2C6D" + brightGreen: "#19F9D8" + brightYellow: "#FFCC95" + brightBlue: "#6FC1FF" + brightMagenta: "#FF9AC1" + brightCyan: "#BCAAFE" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 56.6 + black: 0 + red: 36.2 + green: 83.4 + yellow: 68.6 + blue: 48.9 + magenta: 50 + cyan: 43.4 + white: 72.5 + brightBlack: 25.8 + brightRed: 36.2 + brightGreen: 83.4 + brightYellow: 77.5 + brightBlue: 61.2 + brightMagenta: 60.8 + brightCyan: 59 + brightWhite: 87.8 diff --git a/themes/perfect-grey-pf-dark.yaml b/themes/perfect-grey-pf-dark.yaml new file mode 100644 index 00000000..1b410fb7 --- /dev/null +++ b/themes/perfect-grey-pf-dark.yaml @@ -0,0 +1,49 @@ +name: "Perfect Grey PF Dark" +source: + marketplace_id: "PF.perfect-grey-pf" + version: "0.0.1" + installs: 3242 + author: "PF" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PF.perfect-grey-pf" +colors: + bg: "#55575C" + fg: "#D8E2EC" + black: "#41505E" + red: "#D95468" + green: "#8BD49C" + yellow: "#EBBF83" + blue: "#539AFC" + magenta: "#B62D65" + cyan: "#70E1E8" + white: "#FFFFFF" + brightBlack: "#41505E" + brightRed: "#D95468" + brightGreen: "#8BD49C" + brightYellow: "#EBBF83" + brightBlue: "#539AFC" + brightMagenta: "#B62D65" + brightCyan: "#70E1E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 70.4 + black: 0 + red: 18.4 + green: 53 + yellow: 54.4 + blue: 29.8 + magenta: 0 + cyan: 60.5 + white: 90 + brightBlack: 0 + brightRed: 18.4 + brightGreen: 53 + brightYellow: 54.4 + brightBlue: 29.8 + brightMagenta: 0 + brightCyan: 60.5 + brightWhite: 90 diff --git a/themes/perfect-grey-pf-light.yaml b/themes/perfect-grey-pf-light.yaml new file mode 100644 index 00000000..32167e8b --- /dev/null +++ b/themes/perfect-grey-pf-light.yaml @@ -0,0 +1,49 @@ +name: "Perfect Grey PF Light" +source: + marketplace_id: "PF.perfect-grey-pf" + version: "0.0.1" + installs: 3242 + author: "PF" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PF.perfect-grey-pf" +colors: + bg: "#FBFBFD" + fg: "#343B59" + black: "#0F0F14" + red: "#8C4351" + green: "#33635C" + yellow: "#8F5E15" + blue: "#34548A" + magenta: "#5A4A78" + cyan: "#0F4B6E" + white: "#828594" + brightBlack: "#0F0F14" + brightRed: "#8C4351" + brightGreen: "#33635C" + brightYellow: "#8F5E15" + brightBlue: "#34548A" + brightMagenta: "#5A4A78" + brightCyan: "#0F4B6E" + brightWhite: "#828594" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 93 + black: 103.2 + red: 81.2 + green: 81.1 + yellow: 75.2 + blue: 83.8 + magenta: 84.8 + cyan: 88.9 + white: 61.9 + brightBlack: 103.2 + brightRed: 81.2 + brightGreen: 81.1 + brightYellow: 75.2 + brightBlue: 83.8 + brightMagenta: 84.8 + brightCyan: 88.9 + brightWhite: 61.9 diff --git a/themes/periwinkle-color-theme.yaml b/themes/periwinkle-color-theme.yaml new file mode 100644 index 00000000..c4b40803 --- /dev/null +++ b/themes/periwinkle-color-theme.yaml @@ -0,0 +1,49 @@ +name: "periwinkle-color-theme" +source: + marketplace_id: "wavebeem.theme-unoduetre" + version: "5.11.1" + installs: 4290 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/vscode-theme-unoduetre" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" +colors: + bg: "#EAEAF6" + fg: "#0D0D73" + black: "#0F041B" + red: "#AB1732" + green: "#33754B" + yellow: "#9B5636" + blue: "#452DCD" + magenta: "#B620AF" + cyan: "#237385" + white: "#E6E6E6" + brightBlack: "#0F041B" + brightRed: "#AB1732" + brightGreen: "#33754B" + brightYellow: "#9B5636" + brightBlue: "#452DCD" + brightMagenta: "#B620AF" + brightCyan: "#237385" + brightWhite: "#E6E6E6" +meta: + mode: "light" + accent: "pink" + hue: 286 + contrast: + fg: 89.8 + black: 93.9 + red: 71.4 + green: 65.6 + yellow: 65.5 + blue: 75.8 + magenta: 63.9 + cyan: 64.9 + white: 0 + brightBlack: 93.9 + brightRed: 71.4 + brightGreen: 65.6 + brightYellow: 65.5 + brightBlue: 75.8 + brightMagenta: 63.9 + brightCyan: 64.9 + brightWhite: 0 diff --git a/themes/periwinkle-soft-dark.yaml b/themes/periwinkle-soft-dark.yaml new file mode 100644 index 00000000..b767d7a5 --- /dev/null +++ b/themes/periwinkle-soft-dark.yaml @@ -0,0 +1,49 @@ +name: "Periwinkle Soft Dark" +source: + marketplace_id: "itskarelleh.periwinkle" + version: "0.0.3" + installs: 42 + author: "Karelle Hofler" + repo: "https://github.com/itskarelleh/periwinkle-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=itskarelleh.periwinkle" +colors: + bg: "#9083D1" + fg: "#282247" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#164D8A" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#3B3A3A" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#0554AB" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: 291 + contrast: + fg: 39.3 + black: 43.7 + red: 11.6 + green: 11.9 + yellow: 44.5 + blue: 26.6 + magenta: 8.6 + cyan: 0 + white: 49 + brightBlack: 33.9 + brightRed: 0 + brightGreen: 22.5 + brightYellow: 54.6 + brightBlue: 22.4 + brightMagenta: 0 + brightCyan: 14.3 + brightWhite: 49 diff --git a/themes/perplexity.yaml b/themes/perplexity.yaml new file mode 100644 index 00000000..ce9102d3 --- /dev/null +++ b/themes/perplexity.yaml @@ -0,0 +1,49 @@ +name: "Perplexity" +source: + marketplace_id: "cottonable.perplexity" + version: "1.0.2" + installs: 6579 + author: "cottonable" + repo: "https://github.com/cottonable/perplexity-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=cottonable.perplexity" +colors: + bg: "#191A1A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.6 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.5 + cyan: 47.3 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.3 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/perry-the-platypus.yaml b/themes/perry-the-platypus.yaml new file mode 100644 index 00000000..85e8d5e1 --- /dev/null +++ b/themes/perry-the-platypus.yaml @@ -0,0 +1,49 @@ +name: "Perry-the-platypus" +source: + marketplace_id: "ArkaBanerjee.compact-vs-code" + version: "1.1.1" + installs: 103 + author: "Arka Banerjee" + repo: "https://github.com/thearkabanerjee/Compact-VS-Code" + url: "https://marketplace.visualstudio.com/items?itemName=ArkaBanerjee.compact-vs-code" +colors: + bg: "#131A26" + fg: "#B3BAC8" + black: "#212121" + red: "#FF5252" + green: "#8BC34A" + yellow: "#FFCA28" + blue: "#00BCD4" + magenta: "#AA00FF" + cyan: "#00E5FF" + white: "#E0E0E0" + brightBlack: "#616161" + brightRed: "#FF8A80" + brightGreen: "#C6FF00" + brightYellow: "#FFE082" + brightBlue: "#80D8FF" + brightMagenta: "#EA80FC" + brightCyan: "#84FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 261 + contrast: + fg: 63.6 + black: 0 + red: 42.5 + green: 60 + yellow: 77.5 + blue: 56.2 + magenta: 28.1 + cyan: 77.7 + white: 86.6 + brightBlack: 19.6 + brightRed: 56.2 + brightGreen: 94.2 + brightYellow: 88 + brightBlue: 75 + brightMagenta: 55.1 + brightCyan: 94.2 + brightWhite: 106.6 diff --git a/themes/petrel.yaml b/themes/petrel.yaml new file mode 100644 index 00000000..ee61ce30 --- /dev/null +++ b/themes/petrel.yaml @@ -0,0 +1,49 @@ +name: "petrel" +source: + marketplace_id: "bbrakenhoff.seabird" + version: "0.0.4" + installs: 754 + author: "bbrakenhoff" + repo: "https://github.com/bbrakenhoff/seabird-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=bbrakenhoff.seabird" +colors: + bg: "#0B141A" + fg: "#787E82" + black: "#6D767D" + red: "#BA656D" + green: "#3F8F36" + yellow: "#947B38" + blue: "#4384B0" + magenta: "#B06886" + cyan: "#35898C" + white: "#FFFFFF" + brightBlack: "#6D767D" + brightRed: "#BA656D" + brightGreen: "#3F8F36" + brightYellow: "#947B38" + brightBlue: "#4384B0" + brightMagenta: "#B06886" + brightCyan: "#35898C" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 238 + contrast: + fg: 32.7 + black: 28.8 + red: 33.5 + green: 33.6 + yellow: 33.1 + blue: 33.3 + magenta: 33.4 + cyan: 33 + white: 107.2 + brightBlack: 28.8 + brightRed: 33.5 + brightGreen: 33.6 + brightYellow: 33.1 + brightBlue: 33.3 + brightMagenta: 33.4 + brightCyan: 33 + brightWhite: 107.2 diff --git a/themes/pg-aqualung.yaml b/themes/pg-aqualung.yaml new file mode 100644 index 00000000..bd2eaf8f --- /dev/null +++ b/themes/pg-aqualung.yaml @@ -0,0 +1,49 @@ +name: "pg-aqualung" +source: + marketplace_id: "brennacodes.plum-good-theme" + version: "0.8.0" + installs: 444 + author: "brennacodes" + repo: "https://github.com/brennacodes/plum_good_theme" + url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" +colors: + bg: "#070E15" + fg: "#EBF0F0" + black: "#323232" + red: "#730B1A" + green: "#106B1A" + yellow: "#826D00" + blue: "#113192" + magenta: "#712171" + cyan: "#007D7D" + white: "#B4B4B4" + brightBlack: "#4D4D4D" + brightRed: "#A30A20" + brightGreen: "#189426" + brightYellow: "#B69A07" + brightBlue: "#1949D9" + brightMagenta: "#992999" + brightCyan: "#06A5A5" + brightWhite: "#CFCFCF" +meta: + mode: "dark" + accent: "purple" + hue: 248 + contrast: + fg: 97.1 + black: 0 + red: 0 + green: 19.1 + yellow: 26.6 + blue: 7.3 + magenta: 10.4 + cyan: 27.6 + white: 61.5 + brightBlack: 12.8 + brightRed: 16.2 + brightGreen: 35 + brightYellow: 48.5 + brightBlue: 18.4 + brightMagenta: 19.6 + brightCyan: 45 + brightWhite: 77.2 diff --git a/themes/pg-blue-moon.yaml b/themes/pg-blue-moon.yaml new file mode 100644 index 00000000..2c655954 --- /dev/null +++ b/themes/pg-blue-moon.yaml @@ -0,0 +1,49 @@ +name: "pg-blue-moon" +source: + marketplace_id: "brennacodes.plum-good-theme" + version: "0.8.0" + installs: 444 + author: "brennacodes" + repo: "https://github.com/brennacodes/plum_good_theme" + url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" +colors: + bg: "#070815" + fg: "#E9EDF0" + black: "#323232" + red: "#730B1A" + green: "#106B1A" + yellow: "#826D00" + blue: "#113192" + magenta: "#712171" + cyan: "#007D7D" + white: "#B4B4B4" + brightBlack: "#4D4D4D" + brightRed: "#A30A20" + brightGreen: "#189426" + brightYellow: "#B69A07" + brightBlue: "#1949D9" + brightMagenta: "#992999" + brightCyan: "#06A5A5" + brightWhite: "#CFCFCF" +meta: + mode: "dark" + accent: "purple" + hue: 278 + contrast: + fg: 95.6 + black: 0 + red: 0 + green: 19.3 + yellow: 26.7 + blue: 7.5 + magenta: 10.6 + cyan: 27.8 + white: 61.6 + brightBlack: 12.9 + brightRed: 16.3 + brightGreen: 35.2 + brightYellow: 48.7 + brightBlue: 18.5 + brightMagenta: 19.8 + brightCyan: 45.2 + brightWhite: 77.3 diff --git a/themes/pg-forest.yaml b/themes/pg-forest.yaml new file mode 100644 index 00000000..2bbe8652 --- /dev/null +++ b/themes/pg-forest.yaml @@ -0,0 +1,49 @@ +name: "pg-forest" +source: + marketplace_id: "brennacodes.plum-good-theme" + version: "0.8.0" + installs: 444 + author: "brennacodes" + repo: "https://github.com/brennacodes/plum_good_theme" + url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" +colors: + bg: "#171716" + fg: "#E6EAE0" + black: "#242424" + red: "#922222" + green: "#1C944B" + yellow: "#8A8100" + blue: "#3F75C9" + magenta: "#8D3190" + cyan: "#3A9AB2" + white: "#A5A5A5" + brightBlack: "#3F3F3F" + brightRed: "#B81B1B" + brightGreen: "#25BE0F" + brightYellow: "#B6B60F" + brightBlue: "#0055D9" + brightMagenta: "#B83FBC" + brightCyan: "#2CB7D9" + brightWhite: "#BEBEBE" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 92.2 + black: 0 + red: 13.2 + green: 34.7 + yellow: 33.3 + blue: 29.3 + magenta: 17.3 + cyan: 41.1 + white: 52.5 + brightBlack: 0 + brightRed: 20.4 + brightGreen: 52.9 + brightYellow: 58.8 + brightBlue: 20.3 + brightMagenta: 29 + brightCyan: 54.9 + brightWhite: 66.5 diff --git a/themes/pg-may-be-concrete.yaml b/themes/pg-may-be-concrete.yaml new file mode 100644 index 00000000..538cdde3 --- /dev/null +++ b/themes/pg-may-be-concrete.yaml @@ -0,0 +1,49 @@ +name: "pg-may-be-concrete" +source: + marketplace_id: "brennacodes.plum-good-theme" + version: "0.8.0" + installs: 444 + author: "brennacodes" + repo: "https://github.com/brennacodes/plum_good_theme" + url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" +colors: + bg: "#29343D" + fg: "#EAECF2" + black: "#5C5B5B" + red: "#DE3C3C" + green: "#46B885" + yellow: "#F0C648" + blue: "#779EFB" + magenta: "#D98EF4" + cyan: "#63E4EA" + white: "#E0E0E0" + brightBlack: "#000000" + brightRed: "#FF1F1F" + brightGreen: "#2BE491" + brightYellow: "#FFDC1E" + brightBlue: "#437BFF" + brightMagenta: "#D45CFF" + brightCyan: "#0FFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 243 + contrast: + fg: 89.7 + black: 12.8 + red: 27.1 + green: 47.7 + yellow: 69.2 + blue: 45.5 + magenta: 51.2 + cyan: 73.5 + white: 82.1 + brightBlack: 0 + brightRed: 32.4 + brightGreen: 68.4 + brightYellow: 80.7 + brightBlue: 30.8 + brightMagenta: 38.8 + brightCyan: 86.4 + brightWhite: 102.1 diff --git a/themes/pg-mud-puddle.yaml b/themes/pg-mud-puddle.yaml new file mode 100644 index 00000000..12f34ff1 --- /dev/null +++ b/themes/pg-mud-puddle.yaml @@ -0,0 +1,49 @@ +name: "pg-mud-puddle" +source: + marketplace_id: "brennacodes.plum-good-theme" + version: "0.8.0" + installs: 444 + author: "brennacodes" + repo: "https://github.com/brennacodes/plum_good_theme" + url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" +colors: + bg: "#413D38" + fg: "#F5F3F1" + black: "#5C5B5B" + red: "#DE3C3C" + green: "#46B885" + yellow: "#FAD76E" + blue: "#77A5FB" + magenta: "#D98EF4" + cyan: "#63C5EA" + white: "#E0E0E0" + brightBlack: "#000000" + brightRed: "#FF1F1F" + brightGreen: "#2BE491" + brightYellow: "#FFBF00" + brightBlue: "#4384FF" + brightMagenta: "#D45CFF" + brightCyan: "#0FBDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 74 + contrast: + fg: 91.2 + black: 9.6 + red: 23.8 + green: 44.5 + yellow: 75.2 + blue: 44.9 + magenta: 47.9 + cyan: 55.9 + white: 78.9 + brightBlack: 8.9 + brightRed: 29.2 + brightGreen: 65.2 + brightYellow: 65.3 + brightBlue: 30.5 + brightMagenta: 35.6 + brightCyan: 51.6 + brightWhite: 98.9 diff --git a/themes/pg-plum-great.yaml b/themes/pg-plum-great.yaml new file mode 100644 index 00000000..ad06673a --- /dev/null +++ b/themes/pg-plum-great.yaml @@ -0,0 +1,49 @@ +name: "pg-plum-great" +source: + marketplace_id: "brennacodes.plum-good-theme" + version: "0.8.0" + installs: 444 + author: "brennacodes" + repo: "https://github.com/brennacodes/plum_good_theme" + url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" +colors: + bg: "#141019" + fg: "#E6DFE8" + black: "#2E2E2E" + red: "#862222" + green: "#126D29" + yellow: "#887614" + blue: "#2B69AD" + magenta: "#822B82" + cyan: "#107D7D" + white: "#9F9F9F" + brightBlack: "#545454" + brightRed: "#AD2323" + brightGreen: "#139233" + brightYellow: "#B0970F" + brightBlue: "#4795D9" + brightMagenta: "#AB38AB" + brightCyan: "#159D9D" + brightWhite: "#B8B8B8" +meta: + mode: "dark" + accent: "pink" + hue: 305 + contrast: + fg: 88.1 + black: 0 + red: 11.5 + green: 19.7 + yellow: 29.9 + blue: 23.4 + magenta: 14.6 + cyan: 27.4 + white: 49.8 + brightBlack: 15.2 + brightRed: 19 + brightGreen: 34 + brightYellow: 46.3 + brightBlue: 42.3 + brightMagenta: 25.2 + brightCyan: 41.1 + brightWhite: 63.5 diff --git a/themes/pg-plum-groovy.yaml b/themes/pg-plum-groovy.yaml new file mode 100644 index 00000000..9165903a --- /dev/null +++ b/themes/pg-plum-groovy.yaml @@ -0,0 +1,49 @@ +name: "pg-plum-groovy" +source: + marketplace_id: "brennacodes.plum-good-theme" + version: "0.8.0" + installs: 444 + author: "brennacodes" + repo: "https://github.com/brennacodes/plum_good_theme" + url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" +colors: + bg: "#141019" + fg: "#E4DCE6" + black: "#2E2E2E" + red: "#862222" + green: "#126D29" + yellow: "#887614" + blue: "#2B69AD" + magenta: "#822B82" + cyan: "#107D7D" + white: "#9F9F9F" + brightBlack: "#545454" + brightRed: "#AD2323" + brightGreen: "#139233" + brightYellow: "#B0970F" + brightBlue: "#4795D9" + brightMagenta: "#AB38AB" + brightCyan: "#159D9D" + brightWhite: "#B8B8B8" +meta: + mode: "dark" + accent: "pink" + hue: 305 + contrast: + fg: 86.4 + black: 0 + red: 11.5 + green: 19.7 + yellow: 29.9 + blue: 23.4 + magenta: 14.6 + cyan: 27.4 + white: 49.8 + brightBlack: 15.2 + brightRed: 19 + brightGreen: 34 + brightYellow: 46.3 + brightBlue: 42.3 + brightMagenta: 25.2 + brightCyan: 41.1 + brightWhite: 63.5 diff --git a/themes/pg-punkin-spice.yaml b/themes/pg-punkin-spice.yaml new file mode 100644 index 00000000..84ca9faa --- /dev/null +++ b/themes/pg-punkin-spice.yaml @@ -0,0 +1,49 @@ +name: "pg-punkin-spice" +source: + marketplace_id: "brennacodes.plum-good-theme" + version: "0.8.0" + installs: 444 + author: "brennacodes" + repo: "https://github.com/brennacodes/plum_good_theme" + url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" +colors: + bg: "#171515" + fg: "#928B8C" + black: "#2E2E2E" + red: "#7D161B" + green: "#0B6415" + yellow: "#9B6D00" + blue: "#12377D" + magenta: "#801F79" + cyan: "#127A80" + white: "#ABABAB" + brightBlack: "#494949" + brightRed: "#AB0810" + brightGreen: "#0D8E1C" + brightYellow: "#E4A101" + brightBlue: "#1B51B6" + brightMagenta: "#B62BAC" + brightCyan: "#169FA7" + brightWhite: "#C2C2C2" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 40 + black: 0 + red: 8.7 + green: 16.1 + yellow: 29.2 + blue: 0 + magenta: 12.4 + cyan: 26.1 + white: 55.9 + brightBlack: 10.7 + brightRed: 17.2 + brightGreen: 31.8 + brightYellow: 57.6 + brightBlue: 16.6 + brightMagenta: 25.6 + brightCyan: 42.1 + brightWhite: 68.9 diff --git a/themes/pg-red-clay.yaml b/themes/pg-red-clay.yaml new file mode 100644 index 00000000..69708b6e --- /dev/null +++ b/themes/pg-red-clay.yaml @@ -0,0 +1,49 @@ +name: "pg-red-clay" +source: + marketplace_id: "brennacodes.plum-good-theme" + version: "0.8.0" + installs: 444 + author: "brennacodes" + repo: "https://github.com/brennacodes/plum_good_theme" + url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" +colors: + bg: "#493936" + fg: "#F5EDEE" + black: "#5C5B5B" + red: "#DE3C3C" + green: "#46B885" + yellow: "#FAD76E" + blue: "#77A5FB" + magenta: "#D98EF4" + cyan: "#63C5EA" + white: "#E0E0E0" + brightBlack: "#000000" + brightRed: "#FF1F1F" + brightGreen: "#2BE491" + brightYellow: "#FFBF00" + brightBlue: "#4384FF" + brightMagenta: "#D45CFF" + brightCyan: "#0FBDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 31 + contrast: + fg: 88.5 + black: 9.8 + red: 24.1 + green: 44.8 + yellow: 75.5 + blue: 45.2 + magenta: 48.2 + cyan: 56.1 + white: 79.2 + brightBlack: 8.6 + brightRed: 29.4 + brightGreen: 65.5 + brightYellow: 65.6 + brightBlue: 30.7 + brightMagenta: 35.8 + brightCyan: 51.8 + brightWhite: 99.1 diff --git a/themes/pg-ridgeline.yaml b/themes/pg-ridgeline.yaml new file mode 100644 index 00000000..44d9bbf7 --- /dev/null +++ b/themes/pg-ridgeline.yaml @@ -0,0 +1,49 @@ +name: "pg-ridgeline" +source: + marketplace_id: "brennacodes.plum-good-theme" + version: "0.8.0" + installs: 444 + author: "brennacodes" + repo: "https://github.com/brennacodes/plum_good_theme" + url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" +colors: + bg: "#3D3729" + fg: "#A9C2C1" + black: "#000000" + red: "#BC2A2C" + green: "#57902B" + yellow: "#BC9F00" + blue: "#1A5094" + magenta: "#A516B2" + cyan: "#43AA97" + white: "#CFCFCF" + brightBlack: "#1B1B1B" + brightRed: "#EA3336" + brightGreen: "#6EC72A" + brightYellow: "#EAC914" + brightBlue: "#137FDB" + brightMagenta: "#CE25DE" + brightCyan: "#2BCBAD" + brightWhite: "#E2E2E2" +meta: + mode: "dark" + accent: "pink" + hue: 88 + contrast: + fg: 59.7 + black: 0 + red: 16.2 + green: 28.6 + yellow: 44.3 + blue: 7.6 + magenta: 15.3 + cyan: 40.7 + white: 70.3 + brightBlack: 0 + brightRed: 27.4 + brightGreen: 53.7 + brightYellow: 67.8 + brightBlue: 26.7 + brightMagenta: 26.9 + brightCyan: 55.7 + brightWhite: 82 diff --git a/themes/pg-ruby-clay.yaml b/themes/pg-ruby-clay.yaml new file mode 100644 index 00000000..21c01238 --- /dev/null +++ b/themes/pg-ruby-clay.yaml @@ -0,0 +1,49 @@ +name: "pg-ruby-clay" +source: + marketplace_id: "brennacodes.plum-good-theme" + version: "0.8.0" + installs: 444 + author: "brennacodes" + repo: "https://github.com/brennacodes/plum_good_theme" + url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" +colors: + bg: "#322D2C" + fg: "#C7BEB9" + black: "#000000" + red: "#C02222" + green: "#17995F" + yellow: "#ABA900" + blue: "#375CCB" + magenta: "#A336CB" + cyan: "#219D9D" + white: "#E0E0E0" + brightBlack: "#4B4B4B" + brightRed: "#FF1F1F" + brightGreen: "#31E494" + brightYellow: "#ECEA21" + brightBlue: "#428CFF" + brightMagenta: "#D04DFF" + brightCyan: "#3BE0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 63.7 + black: 0 + red: 18.8 + green: 33.4 + yellow: 48.4 + blue: 18.1 + magenta: 21.6 + cyan: 37.2 + white: 83.2 + brightBlack: 7.7 + brightRed: 33.5 + brightGreen: 69.7 + brightYellow: 85.3 + brightBlue: 37.5 + brightMagenta: 36.6 + brightCyan: 70.8 + brightWhite: 103.2 diff --git a/themes/pg-ruby-soho.yaml b/themes/pg-ruby-soho.yaml new file mode 100644 index 00000000..6a001fde --- /dev/null +++ b/themes/pg-ruby-soho.yaml @@ -0,0 +1,49 @@ +name: "pg-ruby-soho" +source: + marketplace_id: "brennacodes.plum-good-theme" + version: "0.8.0" + installs: 444 + author: "brennacodes" + repo: "https://github.com/brennacodes/plum_good_theme" + url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" +colors: + bg: "#170E0E" + fg: "#F0E8E9" + black: "#2E2E2E" + red: "#7D161B" + green: "#0B6415" + yellow: "#9B6D00" + blue: "#12377D" + magenta: "#801F79" + cyan: "#127A80" + white: "#ABABAB" + brightBlack: "#494949" + brightRed: "#AB0810" + brightGreen: "#0D8E1C" + brightYellow: "#E4A101" + brightBlue: "#1B51B6" + brightMagenta: "#B62BAC" + brightCyan: "#169FA7" + brightWhite: "#C2C2C2" +meta: + mode: "dark" + accent: "pink" + hue: 19 + contrast: + fg: 93.6 + black: 0 + red: 9.1 + green: 16.5 + yellow: 29.6 + blue: 0 + magenta: 12.8 + cyan: 26.5 + white: 56.3 + brightBlack: 11.1 + brightRed: 17.6 + brightGreen: 32.2 + brightYellow: 58 + brightBlue: 17 + brightMagenta: 26 + brightCyan: 42.5 + brightWhite: 69.3 diff --git a/themes/pg-slax.yaml b/themes/pg-slax.yaml new file mode 100644 index 00000000..d3a4a553 --- /dev/null +++ b/themes/pg-slax.yaml @@ -0,0 +1,49 @@ +name: "pg-slax" +source: + marketplace_id: "brennacodes.plum-good-theme" + version: "0.8.0" + installs: 444 + author: "brennacodes" + repo: "https://github.com/brennacodes/plum_good_theme" + url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" +colors: + bg: "#1A1D1F" + fg: "#CFC9B0" + black: "#2A2A2A" + red: "#BE1E1E" + green: "#10AB66" + yellow: "#CDB600" + blue: "#3360CB" + magenta: "#9F19CF" + cyan: "#12C0B8" + white: "#E0E0E0" + brightBlack: "#4D4D4D" + brightRed: "#FF1F1F" + brightGreen: "#19E68A" + brightYellow: "#FFE515" + brightBlue: "#478FFF" + brightMagenta: "#D150FF" + brightCyan: "#1AECE3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72 + black: 0 + red: 21.2 + green: 44.3 + yellow: 61.2 + blue: 22 + magenta: 22 + cyan: 56.4 + white: 86.2 + brightBlack: 11.4 + brightRed: 36.5 + brightGreen: 73.2 + brightYellow: 88.8 + brightBlue: 41.7 + brightMagenta: 40.3 + brightCyan: 79.5 + brightWhite: 106.2 diff --git a/themes/pg-steely-daniel.yaml b/themes/pg-steely-daniel.yaml new file mode 100644 index 00000000..520d7ece --- /dev/null +++ b/themes/pg-steely-daniel.yaml @@ -0,0 +1,49 @@ +name: "pg-steely-daniel" +source: + marketplace_id: "brennacodes.plum-good-theme" + version: "0.8.0" + installs: 444 + author: "brennacodes" + repo: "https://github.com/brennacodes/plum_good_theme" + url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" +colors: + bg: "#272A2C" + fg: "#C7C2AC" + black: "#020202" + red: "#BE1E1E" + green: "#10AB66" + yellow: "#CDB600" + blue: "#3360CB" + magenta: "#9F19CF" + cyan: "#12C0B8" + white: "#E0E0E0" + brightBlack: "#4D4D4D" + brightRed: "#FF1F1F" + brightGreen: "#19E68A" + brightYellow: "#FFE515" + brightBlue: "#478FFF" + brightMagenta: "#D150FF" + brightCyan: "#1AECE3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 65.8 + black: 0 + red: 19.1 + green: 42.2 + yellow: 59.1 + blue: 19.9 + magenta: 19.9 + cyan: 54.3 + white: 84.1 + brightBlack: 9.3 + brightRed: 34.4 + brightGreen: 71.1 + brightYellow: 86.7 + brightBlue: 39.7 + brightMagenta: 38.2 + brightCyan: 77.4 + brightWhite: 104.1 diff --git a/themes/pglight.yaml b/themes/pglight.yaml new file mode 100644 index 00000000..099ee06b --- /dev/null +++ b/themes/pglight.yaml @@ -0,0 +1,49 @@ +name: "PGLight" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" +colors: + bg: "#F5F2F0" + fg: "#041214" + black: "#000000" + red: "#730024" + green: "#007561" + yellow: "#B5800D" + blue: "#005473" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#B5800D" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 98 + black: 98.6 + red: 87.8 + green: 70.2 + yellow: 54.5 + blue: 80.8 + magenta: 29.7 + cyan: 0 + white: 0 + brightBlack: 79 + brightRed: 46.3 + brightGreen: 27.8 + brightYellow: 54.5 + brightBlue: 54.5 + brightMagenta: 29.7 + brightCyan: 0 + brightWhite: 91.3 diff --git a/themes/phantom.yaml b/themes/phantom.yaml new file mode 100644 index 00000000..f48e951c --- /dev/null +++ b/themes/phantom.yaml @@ -0,0 +1,49 @@ +name: "Phantom" +source: + marketplace_id: "MynaVu.phantom-theme" + version: "0.4.3" + installs: 91 + author: "Myna Vu" + repo: "https://github.com/mynavu/Phantom-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MynaVu.phantom-theme" +colors: + bg: "#191724" + fg: "#FFFFFF" + black: "#57527A" + red: "#FFB8D8" + green: "#BDE3FF" + yellow: "#FFFBD4" + blue: "#D0D9FF" + magenta: "#FFD7E2" + cyan: "#97CAFF" + white: "#D9D3F4" + brightBlack: "#827DA2" + brightRed: "#FDCCE2" + brightGreen: "#D0EBFF" + brightYellow: "#FFFDEF" + brightBlue: "#E6EBFF" + brightMagenta: "#FFE4EB" + brightCyan: "#B6DBFF" + brightWhite: "#EAE6FE" +meta: + mode: "dark" + accent: "indigo" + hue: 291 + contrast: + fg: 106.7 + black: 15.6 + red: 74.7 + green: 85.4 + yellow: 102.9 + blue: 83.1 + magenta: 87.4 + cyan: 70.6 + white: 81.1 + brightBlack: 34.2 + brightRed: 82.6 + brightGreen: 91.2 + brightYellow: 105 + brightBlue: 94 + brightMagenta: 93.4 + brightCyan: 81.1 + brightWhite: 92.2 diff --git a/themes/phocus.yaml b/themes/phocus.yaml new file mode 100644 index 00000000..cffa64d6 --- /dev/null +++ b/themes/phocus.yaml @@ -0,0 +1,49 @@ +name: "phocus" +source: + marketplace_id: "phisch.phocus-vscode" + version: "1.1.0" + installs: 2020 + author: "Philipp Schaffrath" + repo: "https://github.com/phocus/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=phisch.phocus-vscode" +colors: + bg: "#141414" + fg: "#D4D4D4" + black: "#000000" + red: "#DA5858" + green: "#3FC661" + yellow: "#E8CA5E" + blue: "#497EE9" + magenta: "#7154F2" + cyan: "#5CD8E6" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#E36D6D" + brightGreen: "#61D67E" + brightYellow: "#E8CA5E" + brightBlue: "#5D8DEE" + brightMagenta: "#8066F5" + brightCyan: "#7EEAF6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 79.8 + black: 0 + red: 36.1 + green: 58.2 + yellow: 74.9 + blue: 35.2 + magenta: 27.4 + cyan: 72.3 + white: 107.1 + brightBlack: 107.1 + brightRed: 43 + brightGreen: 67.7 + brightYellow: 74.9 + brightBlue: 41.7 + brightMagenta: 33.3 + brightCyan: 83.5 + brightWhite: 107.1 diff --git a/themes/phonebook-dark.yaml b/themes/phonebook-dark.yaml new file mode 100644 index 00000000..06a97dc2 --- /dev/null +++ b/themes/phonebook-dark.yaml @@ -0,0 +1,49 @@ +name: "Phonebook Dark" +source: + marketplace_id: "nick-carnival.phonebook-theme" + version: "1.1.2" + installs: 1098 + author: "Nick Carnival" + repo: "https://github.com/nickcarnival/vscode-phonebook" + url: "https://marketplace.visualstudio.com/items?itemName=nick-carnival.phonebook-theme" +colors: + bg: "#2C2621" + fg: "#E7C56F" + black: "#231E1A" + red: "#F54E42" + green: "#27A06C" + yellow: "#EBC300" + blue: "#1E88E5" + magenta: "#6547B8" + cyan: "#00ACC1" + white: "#DEDEDE" + brightBlack: "#666666" + brightRed: "#DB6057" + brightGreen: "#38D687" + brightYellow: "#F8D668" + brightBlue: "#64B5F6" + brightMagenta: "#A993E6" + brightCyan: "#00BCD4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 62 + contrast: + fg: 70.4 + black: 0 + red: 37.4 + green: 38.3 + yellow: 69.3 + blue: 34.6 + magenta: 16.1 + cyan: 46.3 + white: 83.4 + brightBlack: 19.8 + brightRed: 35.4 + brightGreen: 63.9 + brightYellow: 80.1 + brightBlue: 55.5 + brightMagenta: 47.5 + brightCyan: 54.2 + brightWhite: 104.6 diff --git a/themes/phonebook-light.yaml b/themes/phonebook-light.yaml new file mode 100644 index 00000000..fa679210 --- /dev/null +++ b/themes/phonebook-light.yaml @@ -0,0 +1,49 @@ +name: "Phonebook Light" +source: + marketplace_id: "nick-carnival.phonebook-theme" + version: "1.1.2" + installs: 1098 + author: "Nick Carnival" + repo: "https://github.com/nickcarnival/vscode-phonebook" + url: "https://marketplace.visualstudio.com/items?itemName=nick-carnival.phonebook-theme" +colors: + bg: "#E4D7C4" + fg: "#4A341C" + black: "#231E1A" + red: "#F54E42" + green: "#2F9369" + yellow: "#D69A00" + blue: "#1E88E5" + magenta: "#6547B8" + cyan: "#00ACC1" + white: "#EEE7DD" + brightBlack: "#666666" + brightRed: "#DB6057" + brightGreen: "#42B885" + brightYellow: "#D69A00" + brightBlue: "#64B5F6" + brightMagenta: "#A993E6" + brightCyan: "#00BCD4" + brightWhite: "#F7F3EE" +meta: + mode: "light" + accent: "orange" + hue: 78 + contrast: + fg: 74.3 + black: 81 + red: 38.6 + green: 42.9 + yellow: 25.9 + blue: 41.3 + magenta: 60.1 + cyan: 29.8 + white: 7.9 + brightBlack: 56.3 + brightRed: 40.5 + brightGreen: 26.2 + brightYellow: 25.9 + brightBlue: 20.9 + brightMagenta: 28.6 + brightCyan: 22.1 + brightWhite: 15.4 diff --git a/themes/phosphor-amber-night.yaml b/themes/phosphor-amber-night.yaml new file mode 100644 index 00000000..c44f78f7 --- /dev/null +++ b/themes/phosphor-amber-night.yaml @@ -0,0 +1,49 @@ +name: "Phosphor Amber Night" +source: + marketplace_id: "glidebuild.phosphor-themes" + version: "1.0.0" + installs: 40 + author: "glide.build" + repo: "https://github.com/mo-shawa/phosphor-themes" + url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" +colors: + bg: "#1E2028" + fg: "#B3B8C5" + black: "#44403C" + red: "#EF4444" + green: "#22C55E" + yellow: "#FB923C" + blue: "#2DD4BF" + magenta: "#C084FC" + cyan: "#67E8F9" + white: "#D4D4D8" + brightBlack: "#A1A1AA" + brightRed: "#FB7185" + brightGreen: "#5DD879" + brightYellow: "#FBBF24" + brightBlue: "#E5A84B" + brightMagenta: "#F0ABFC" + brightCyan: "#A5F3FC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 61.8 + black: 0 + red: 35.7 + green: 55.6 + yellow: 55.8 + blue: 65.8 + magenta: 48.5 + cyan: 80 + white: 78.5 + brightBlack: 49.6 + brightRed: 48.1 + brightGreen: 66.9 + brightYellow: 71.5 + brightBlue: 59.4 + brightMagenta: 68.5 + brightCyan: 89.6 + brightWhite: 105.7 diff --git a/themes/phosphor-aurora.yaml b/themes/phosphor-aurora.yaml new file mode 100644 index 00000000..02c6c6ee --- /dev/null +++ b/themes/phosphor-aurora.yaml @@ -0,0 +1,49 @@ +name: "Phosphor Aurora" +source: + marketplace_id: "glidebuild.phosphor-themes" + version: "1.0.0" + installs: 40 + author: "glide.build" + repo: "https://github.com/mo-shawa/phosphor-themes" + url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" +colors: + bg: "#080C18" + fg: "#C0D0E8" + black: "#101828" + red: "#FF5F8F" + green: "#00FFA3" + yellow: "#FFE066" + blue: "#00D4FF" + magenta: "#BF7FFF" + cyan: "#00E5CC" + white: "#C0D0E8" + brightBlack: "#5070A0" + brightRed: "#FF9EC4" + brightGreen: "#7FFFD4" + brightYellow: "#FFF7A0" + brightBlue: "#7FEFFF" + brightMagenta: "#D8B4FF" + brightCyan: "#7FFFF0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 269 + contrast: + fg: 77 + black: 0 + red: 47.4 + green: 88.2 + yellow: 88.6 + blue: 70.6 + magenta: 49.1 + cyan: 76.2 + white: 77 + brightBlack: 26.7 + brightRed: 65.7 + brightGreen: 93 + brightYellow: 100.3 + brightBlue: 87 + brightMagenta: 70.1 + brightCyan: 94.2 + brightWhite: 107.6 diff --git a/themes/phosphor-dark.yaml b/themes/phosphor-dark.yaml new file mode 100644 index 00000000..cc33d851 --- /dev/null +++ b/themes/phosphor-dark.yaml @@ -0,0 +1,49 @@ +name: "Phosphor Dark" +source: + marketplace_id: "phosphor-icons.phosphor-theme" + version: "0.1.2" + installs: 1669 + author: "Phosphor Icons" + repo: "https://github.com/phosphor-icons/theme" + url: "https://marketplace.visualstudio.com/items?itemName=phosphor-icons.phosphor-theme" +colors: + bg: "#2A2926" + fg: "#C9C5BF" + black: "#656461" + red: "#BC6F4F" + green: "#A4B55B" + yellow: "#D6971E" + blue: "#4E76B4" + magenta: "#9D6DEC" + cyan: "#5197A7" + white: "#EEEAE3" + brightBlack: "#656461" + brightRed: "#CF5F31" + brightGreen: "#C4E456" + brightYellow: "#F8C666" + brightBlue: "#6283E8" + brightMagenta: "#B38CFF" + brightCyan: "#6DB8D7" + brightWhite: "#F7F5F1" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 68.1 + black: 18.6 + red: 32.8 + green: 54.2 + yellow: 49 + blue: 26.3 + magenta: 34.7 + cyan: 37.7 + white: 90.8 + brightBlack: 18.6 + brightRed: 31.9 + brightGreen: 78.8 + brightYellow: 73 + brightBlue: 35.3 + brightMagenta: 47.9 + brightCyan: 55.1 + brightWhite: 97.7 diff --git a/themes/phosphor-dreams.yaml b/themes/phosphor-dreams.yaml new file mode 100644 index 00000000..f943d8d3 --- /dev/null +++ b/themes/phosphor-dreams.yaml @@ -0,0 +1,49 @@ +name: "Phosphor Dreams" +source: + marketplace_id: "glidebuild.phosphor-themes" + version: "1.0.0" + installs: 40 + author: "glide.build" + repo: "https://github.com/mo-shawa/phosphor-themes" + url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" +colors: + bg: "#040604" + fg: "#22DD22" + black: "#0A140A" + red: "#FF3366" + green: "#33FF33" + yellow: "#FFFF33" + blue: "#33FFEE" + magenta: "#FF33FF" + cyan: "#33FF99" + white: "#88CC88" + brightBlack: "#446644" + brightRed: "#FF6699" + brightGreen: "#66FF66" + brightYellow: "#FFFF66" + brightBlue: "#66FFFF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFCC" + brightWhite: "#CCFFCC" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 68.9 + black: 0 + red: 40.4 + green: 86.9 + yellow: 102.8 + blue: 91.6 + magenta: 47.9 + cyan: 88.5 + white: 66.3 + brightBlack: 19.7 + brightRed: 49.3 + brightGreen: 89 + brightYellow: 103.3 + brightBlue: 94 + brightMagenta: 54.8 + brightCyan: 91.7 + brightWhite: 99.3 diff --git a/themes/phosphor-event-horizon.yaml b/themes/phosphor-event-horizon.yaml new file mode 100644 index 00000000..e518888f --- /dev/null +++ b/themes/phosphor-event-horizon.yaml @@ -0,0 +1,49 @@ +name: "Phosphor Event Horizon" +source: + marketplace_id: "glidebuild.phosphor-themes" + version: "1.0.0" + installs: 40 + author: "glide.build" + repo: "https://github.com/mo-shawa/phosphor-themes" + url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" +colors: + bg: "#000000" + fg: "#CC9999" + black: "#110808" + red: "#FF0044" + green: "#00FF88" + yellow: "#FFCC00" + blue: "#0088FF" + magenta: "#8800FF" + cyan: "#00CCFF" + white: "#AA8888" + brightBlack: "#554444" + brightRed: "#FF4488" + brightGreen: "#44FFAA" + brightYellow: "#FFEE44" + brightBlue: "#44AAFF" + brightMagenta: "#AA44FF" + brightCyan: "#44DDFF" + brightWhite: "#FFCCCC" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 53.9 + black: 0 + red: 37.9 + green: 87.8 + yellow: 79.6 + blue: 39.8 + magenta: 24.4 + cyan: 67.2 + white: 42.7 + brightBlack: 11.3 + brightRed: 43.2 + brightGreen: 89.4 + brightYellow: 94.8 + brightBlue: 53.5 + brightMagenta: 33.6 + brightCyan: 75.9 + brightWhite: 83.1 diff --git a/themes/phosphor-forest.yaml b/themes/phosphor-forest.yaml new file mode 100644 index 00000000..04909bd4 --- /dev/null +++ b/themes/phosphor-forest.yaml @@ -0,0 +1,49 @@ +name: "Phosphor Forest" +source: + marketplace_id: "glidebuild.phosphor-themes" + version: "1.0.0" + installs: 40 + author: "glide.build" + repo: "https://github.com/mo-shawa/phosphor-themes" + url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" +colors: + bg: "#141C18" + fg: "#A7B5B0" + black: "#2D3D37" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#38BDF8" + magenta: "#A78BFA" + cyan: "#2DD4BF" + white: "#D4D4D8" + brightBlack: "#6B8F80" + brightRed: "#FCA5A5" + brightGreen: "#86EFAC" + brightYellow: "#FDE047" + brightBlue: "#7DD3FC" + brightMagenta: "#D8B4FE" + brightCyan: "#5EEAD4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 163 + contrast: + fg: 59.2 + black: 0 + red: 47.7 + green: 70.1 + yellow: 77.4 + blue: 59.2 + magenta: 47.9 + cyan: 66.5 + white: 79.3 + brightBlack: 36.9 + brightRed: 65.2 + brightGreen: 82.7 + brightYellow: 86.8 + brightBlue: 72.3 + brightMagenta: 68.9 + brightCyan: 79.6 + brightWhite: 106.5 diff --git a/themes/phosphor-neon-noir.yaml b/themes/phosphor-neon-noir.yaml new file mode 100644 index 00000000..10f1a237 --- /dev/null +++ b/themes/phosphor-neon-noir.yaml @@ -0,0 +1,49 @@ +name: "Phosphor Neon Noir" +source: + marketplace_id: "glidebuild.phosphor-themes" + version: "1.0.0" + installs: 40 + author: "glide.build" + repo: "https://github.com/mo-shawa/phosphor-themes" + url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" +colors: + bg: "#0D0D18" + fg: "#C5C5D0" + black: "#1A1A28" + red: "#FF2A6D" + green: "#39FF14" + yellow: "#FFF200" + blue: "#05D9E8" + magenta: "#D400FF" + cyan: "#00FFFF" + white: "#C5C5D0" + brightBlack: "#5A5A70" + brightRed: "#FF6B9D" + brightGreen: "#7FFF00" + brightYellow: "#FFFF7F" + brightBlue: "#7FECFF" + brightMagenta: "#FF7FFF" + brightCyan: "#7FFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 71.7 + black: 0 + red: 39.6 + green: 86.6 + yellow: 96.1 + blue: 71.6 + magenta: 36.7 + cyan: 91.8 + white: 71.7 + brightBlack: 18.5 + brightRed: 50.3 + brightGreen: 89.3 + brightYellow: 103.4 + brightBlue: 85.4 + brightMagenta: 60 + brightCyan: 94.9 + brightWhite: 107.6 diff --git a/themes/phosphor-violet-dusk.yaml b/themes/phosphor-violet-dusk.yaml new file mode 100644 index 00000000..379a6022 --- /dev/null +++ b/themes/phosphor-violet-dusk.yaml @@ -0,0 +1,49 @@ +name: "Phosphor Violet Dusk" +source: + marketplace_id: "glidebuild.phosphor-themes" + version: "1.0.0" + installs: 40 + author: "glide.build" + repo: "https://github.com/mo-shawa/phosphor-themes" + url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" +colors: + bg: "#171422" + fg: "#B8B5C8" + black: "#3D3858" + red: "#FB7185" + green: "#4ADE80" + yellow: "#FBBF24" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#D4D4D8" + brightBlack: "#8B7FAD" + brightRed: "#FDA4AF" + brightGreen: "#86EFAC" + brightYellow: "#FDE047" + brightBlue: "#93C5FD" + brightMagenta: "#D8B4FE" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 294 + contrast: + fg: 62.6 + black: 0 + red: 49.3 + green: 70.5 + yellow: 72.8 + blue: 51.4 + magenta: 49.8 + cyan: 68.7 + white: 79.7 + brightBlack: 36.6 + brightRed: 65.8 + brightGreen: 83.2 + brightYellow: 87.2 + brightBlue: 68.3 + brightMagenta: 69.3 + brightCyan: 81.3 + brightWhite: 107 diff --git a/themes/phosphorus-minor.yaml b/themes/phosphorus-minor.yaml new file mode 100644 index 00000000..7a77de2e --- /dev/null +++ b/themes/phosphorus-minor.yaml @@ -0,0 +1,49 @@ +name: "Phosphorus Minor" +source: + marketplace_id: "adamsome.vscode-theme-phosphorus-minor" + version: "1.1.3" + installs: 421 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-phosphorus-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-phosphorus-minor" +colors: + bg: "#000000" + fg: "#A8A29E" + black: "#000000" + red: "#991B1B" + green: "#57755D" + yellow: "#A09B4E" + blue: "#55757F" + magenta: "#EF4444" + cyan: "#60A2A3" + white: "#D6D3D1" + brightBlack: "#120F0E" + brightRed: "#DC2626" + brightGreen: "#95C8B1" + brightYellow: "#D9D385" + brightBlue: "#93A7AF" + brightMagenta: "#FCA5A5" + brightCyan: "#9AD7D8" + brightWhite: "#F5F5F4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 52.5 + black: 0 + red: 15 + green: 26.5 + yellow: 46.8 + blue: 27.4 + magenta: 37.8 + cyan: 46.3 + white: 80.2 + brightBlack: 0 + brightRed: 30.1 + brightGreen: 66.9 + brightYellow: 78.1 + brightBlue: 52.8 + brightMagenta: 66.6 + brightCyan: 75.8 + brightWhite: 101.2 diff --git a/themes/photon.yaml b/themes/photon.yaml new file mode 100644 index 00000000..0722ac37 --- /dev/null +++ b/themes/photon.yaml @@ -0,0 +1,49 @@ +name: "Photon" +source: + marketplace_id: "Frontverse.frontverse-photon" + version: "0.0.3" + installs: 24 + author: "Frontverse" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Frontverse.frontverse-photon" +colors: + bg: "#0F0F0F" + fg: "#717171" + black: "#D9D9D9" + red: "#EA5959" + green: "#59EABA" + yellow: "#EAD359" + blue: "#599EEA" + magenta: "#EA59BF" + cyan: "#59D6EA" + white: "#FFFFFF" + brightBlack: "#D3D3D3" + brightRed: "#FF7272" + brightGreen: "#85EECB" + brightYellow: "#F2E499" + brightBlue: "#89BAF0" + brightMagenta: "#FF9AE1" + brightCyan: "#99E4F0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 27.5 + black: 83.2 + red: 40.1 + green: 79.3 + yellow: 79.3 + blue: 47.8 + magenta: 43.7 + cyan: 71.8 + white: 107.5 + brightBlack: 79.5 + brightRed: 50.5 + brightGreen: 84.3 + brightYellow: 89.3 + brightBlue: 62.6 + brightMagenta: 65.8 + brightCyan: 82.6 + brightWhite: 90.6 diff --git a/themes/photonica-dark.yaml b/themes/photonica-dark.yaml new file mode 100644 index 00000000..daf80a25 --- /dev/null +++ b/themes/photonica-dark.yaml @@ -0,0 +1,49 @@ +name: "Photonica Dark" +source: + marketplace_id: "ConAntares.Photonica" + version: "1.0.10" + installs: 17844 + author: "Luke Niu" + repo: "https://github.com/Photonico/Photonica" + url: "https://marketplace.visualstudio.com/items?itemName=ConAntares.Photonica" +colors: + bg: "#191919" + fg: "#F0F0F0" + black: "#3C3C3C" + red: "#FF5064" + green: "#64F050" + yellow: "#FFC814" + blue: "#1496F0" + magenta: "#AF8CF0" + cyan: "#28B4B4" + white: "#F0F0F0" + brightBlack: "#646464" + brightRed: "#FF7878" + brightGreen: "#C8FF46" + brightYellow: "#FFDC64" + brightBlue: "#1EA0FF" + brightMagenta: "#D28CFA" + brightCyan: "#8CE1E1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 96.8 + black: 0 + red: 42.6 + green: 79.5 + yellow: 76.7 + blue: 42.5 + magenta: 48.7 + cyan: 51.5 + white: 96.8 + brightBlack: 21 + brightRed: 51.2 + brightGreen: 94.8 + brightYellow: 85.8 + brightBlue: 47.5 + brightMagenta: 54.4 + brightCyan: 78.6 + brightWhite: 106.7 diff --git a/themes/photonica-light.yaml b/themes/photonica-light.yaml new file mode 100644 index 00000000..73d102a3 --- /dev/null +++ b/themes/photonica-light.yaml @@ -0,0 +1,49 @@ +name: "Photonica Light" +source: + marketplace_id: "ConAntares.Photonica" + version: "1.0.10" + installs: 17844 + author: "Luke Niu" + repo: "https://github.com/Photonico/Photonica" + url: "https://marketplace.visualstudio.com/items?itemName=ConAntares.Photonica" +colors: + bg: "#FFFFFF" + fg: "#141414" + black: "#141414" + red: "#E14646" + green: "#50A028" + yellow: "#F0B414" + blue: "#1496F0" + magenta: "#7864C8" + cyan: "#3CB4A0" + white: "#C8C8C8" + brightBlack: "#646464" + brightRed: "#FF5050" + brightGreen: "#5FC33C" + brightYellow: "#FFBE46" + brightBlue: "#19A0FF" + brightMagenta: "#9178F0" + brightCyan: "#46D2B4" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.1 + black: 105.1 + red: 66.7 + green: 59.8 + yellow: 35 + blue: 58.1 + magenta: 72.5 + cyan: 49.6 + white: 29.5 + brightBlack: 79.6 + brightRed: 58.2 + brightGreen: 43.9 + brightYellow: 28.6 + brightBlue: 53.2 + brightMagenta: 61.4 + brightCyan: 35.4 + brightWhite: 0 diff --git a/themes/photophore.yaml b/themes/photophore.yaml new file mode 100644 index 00000000..827fb96d --- /dev/null +++ b/themes/photophore.yaml @@ -0,0 +1,49 @@ +name: "Photophore" +source: + marketplace_id: "kenziebottoms.photophore" + version: "0.0.3" + installs: 819 + author: "Kenzie Bottoms" + repo: "git+https://github.com/kenziebottoms/vscode-theme-photophore" + url: "https://marketplace.visualstudio.com/items?itemName=kenziebottoms.photophore" +colors: + bg: "#1C0333" + fg: "#F9FFF0" + black: "#B7B3B7" + red: "#FF82DA" + green: "#5EFFAA" + yellow: "#E3FFC0" + blue: "#5EFFAA" + magenta: "#A386FF" + cyan: "#D793FF" + white: "#F9FFF0" + brightBlack: "#B7B3B7" + brightRed: "#FF82DA" + brightGreen: "#5EFFAA" + brightYellow: "#E3FFC0" + brightBlue: "#D793FF" + brightMagenta: "#C1FF74" + brightCyan: "#D793FF" + brightWhite: "#F9FFF0" +meta: + mode: "dark" + accent: "pink" + hue: 303 + contrast: + fg: 105.5 + black: 61 + red: 58 + green: 89.3 + yellow: 100.7 + blue: 89.3 + magenta: 46.8 + cyan: 58 + white: 105.5 + brightBlack: 61 + brightRed: 58 + brightGreen: 89.3 + brightYellow: 100.7 + brightBlue: 58 + brightMagenta: 95 + brightCyan: 58 + brightWhite: 105.5 diff --git a/themes/piattro.yaml b/themes/piattro.yaml new file mode 100644 index 00000000..049934ce --- /dev/null +++ b/themes/piattro.yaml @@ -0,0 +1,49 @@ +name: "Piattro" +source: + marketplace_id: "floedelmann.piattro" + version: "0.3.0" + installs: 378 + author: "Flo Edelmann" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=floedelmann.piattro" +colors: + bg: "#FAFAFA" + fg: "#505050" + black: "#000000" + red: "#F2590C" + green: "#77CC00" + yellow: "#F29718" + blue: "#41A6D9" + magenta: "#9966CC" + cyan: "#4DBF99" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#D6656A" + brightGreen: "#A3D900" + brightYellow: "#E7C547" + brightBlue: "#6871FF" + brightMagenta: "#A37ACC" + brightCyan: "#57D9AD" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 85 + black: 103 + red: 57.2 + green: 35.7 + yellow: 41.5 + blue: 49.6 + magenta: 64.9 + cyan: 41.6 + white: 27.1 + brightBlack: 74.9 + brightRed: 59.5 + brightGreen: 26.5 + brightYellow: 26.7 + brightBlue: 63 + brightMagenta: 58.2 + brightCyan: 28.9 + brightWhite: 0 diff --git a/themes/pierre-dark.yaml b/themes/pierre-dark.yaml new file mode 100644 index 00000000..414bac74 --- /dev/null +++ b/themes/pierre-dark.yaml @@ -0,0 +1,49 @@ +name: "Pierre Dark" +source: + marketplace_id: "pierrecomputer.pierre-theme" + version: "0.0.24" + installs: 295 + author: "The Pierre Computer Co" + repo: "https://github.com/pierrecomputer/theme" + url: "https://marketplace.visualstudio.com/items?itemName=pierrecomputer.pierre-theme" +colors: + bg: "#070707" + fg: "#FBFBFB" + black: "#141415" + red: "#FF2E3F" + green: "#0DBE4E" + yellow: "#FFCA00" + blue: "#009FFF" + magenta: "#C635E4" + cyan: "#08C0EF" + white: "#C6C6C8" + brightBlack: "#141415" + brightRed: "#FF2E3F" + brightGreen: "#0DBE4E" + brightYellow: "#FFCA00" + brightBlue: "#009FFF" + brightMagenta: "#C635E4" + brightCyan: "#08C0EF" + brightWhite: "#C6C6C8" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.2 + black: 0 + red: 39.3 + green: 54.1 + yellow: 78.7 + blue: 48.1 + magenta: 34.2 + cyan: 60.8 + white: 72.1 + brightBlack: 0 + brightRed: 39.3 + brightGreen: 54.1 + brightYellow: 78.7 + brightBlue: 48.1 + brightMagenta: 34.2 + brightCyan: 60.8 + brightWhite: 72.1 diff --git a/themes/pierre-light.yaml b/themes/pierre-light.yaml new file mode 100644 index 00000000..8442ff9d --- /dev/null +++ b/themes/pierre-light.yaml @@ -0,0 +1,49 @@ +name: "Pierre Light" +source: + marketplace_id: "pierrecomputer.pierre-theme" + version: "0.0.24" + installs: 295 + author: "The Pierre Computer Co" + repo: "https://github.com/pierrecomputer/theme" + url: "https://marketplace.visualstudio.com/items?itemName=pierrecomputer.pierre-theme" +colors: + bg: "#FFFFFF" + fg: "#070707" + black: "#1F1F21" + red: "#FF2E3F" + green: "#0DBE4E" + yellow: "#FFCA00" + blue: "#009FFF" + magenta: "#C635E4" + cyan: "#08C0EF" + white: "#C6C6C8" + brightBlack: "#1F1F21" + brightRed: "#FF2E3F" + brightGreen: "#0DBE4E" + brightYellow: "#FFCA00" + brightBlue: "#009FFF" + brightMagenta: "#C635E4" + brightCyan: "#08C0EF" + brightWhite: "#C6C6C8" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 103.4 + red: 62.3 + green: 47.9 + yellow: 24.4 + blue: 53.7 + magenta: 67.4 + cyan: 41.4 + white: 30.6 + brightBlack: 103.4 + brightRed: 62.3 + brightGreen: 47.9 + brightYellow: 24.4 + brightBlue: 53.7 + brightMagenta: 67.4 + brightCyan: 41.4 + brightWhite: 30.6 diff --git a/themes/piggy-contrast.yaml b/themes/piggy-contrast.yaml new file mode 100644 index 00000000..df46216c --- /dev/null +++ b/themes/piggy-contrast.yaml @@ -0,0 +1,49 @@ +name: "piggy-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#1C1618" + fg: "#EDEBE6" + black: "#2A2124" + red: "#BA0E2E" + green: "#F52E62" + yellow: "#FD6A5D" + blue: "#FF5D80" + magenta: "#FD6A5D" + cyan: "#F52E62" + white: "#F8F7F5" + brightBlack: "#554349" + brightRed: "#F03E5F" + brightGreen: "#FA8FAB" + brightYellow: "#FEC7C2" + brightBlue: "#FFC3D0" + brightMagenta: "#FEC7C2" + brightCyan: "#FA8FAB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 356 + contrast: + fg: 93.8 + black: 0 + red: 20.4 + green: 36.4 + yellow: 47.1 + blue: 45.7 + magenta: 47.1 + cyan: 36.4 + white: 101.6 + brightBlack: 10.1 + brightRed: 36.7 + brightGreen: 58.3 + brightYellow: 79.5 + brightBlue: 78.6 + brightMagenta: 79.5 + brightCyan: 58.3 + brightWhite: 106.8 diff --git a/themes/piggy-light.yaml b/themes/piggy-light.yaml new file mode 100644 index 00000000..0556f1d6 --- /dev/null +++ b/themes/piggy-light.yaml @@ -0,0 +1,49 @@ +name: "piggy-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#F52E62" + yellow: "#FD6A5D" + blue: "#FF5D80" + magenta: "#FD6A5D" + cyan: "#F52E62" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FA8FAB" + brightYellow: "#FEC7C2" + brightBlue: "#FFC3D0" + brightMagenta: "#FEC7C2" + brightCyan: "#FA8FAB" + brightWhite: "#777777" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 64.2 + yellow: 53.7 + blue: 55 + magenta: 53.7 + cyan: 64.2 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 42.8 + brightYellow: 22.7 + brightBlue: 23.5 + brightMagenta: 22.7 + brightCyan: 42.8 + brightWhite: 71.1 diff --git a/themes/piggy.yaml b/themes/piggy.yaml new file mode 100644 index 00000000..c48414dc --- /dev/null +++ b/themes/piggy.yaml @@ -0,0 +1,49 @@ +name: "piggy" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#3D2F34" + fg: "#EDEBE6" + black: "#4B3A40" + red: "#BA0E2E" + green: "#F52E62" + yellow: "#FD6A5D" + blue: "#FF5D80" + magenta: "#FD6A5D" + cyan: "#F52E62" + white: "#F8F7F5" + brightBlack: "#775B65" + brightRed: "#F03E5F" + brightGreen: "#FA8FAB" + brightYellow: "#FEC7C2" + brightBlue: "#FFC3D0" + brightMagenta: "#FEC7C2" + brightCyan: "#FA8FAB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 355 + contrast: + fg: 89.1 + black: 0 + red: 15.7 + green: 31.7 + yellow: 42.4 + blue: 41 + magenta: 42.4 + cyan: 31.7 + white: 96.8 + brightBlack: 15.8 + brightRed: 32 + brightGreen: 53.6 + brightYellow: 74.7 + brightBlue: 73.9 + brightMagenta: 74.7 + brightCyan: 53.6 + brightWhite: 102.1 diff --git a/themes/pillirioen-italics.yaml b/themes/pillirioen-italics.yaml new file mode 100644 index 00000000..7194e0b3 --- /dev/null +++ b/themes/pillirioen-italics.yaml @@ -0,0 +1,49 @@ +name: "Pillirioen (Italics)" +source: + marketplace_id: "Be-njamin.pillirioen" + version: "0.2.0" + installs: 2434 + author: "Benjamin Vasquez" + repo: "https://github.com/Be-njamin/pillirioen" + url: "https://marketplace.visualstudio.com/items?itemName=Be-njamin.pillirioen" +colors: + bg: "#21262D" + fg: "#9199A1" + black: "#545D68" + red: "#C93C37" + green: "#347D39" + yellow: "#966600" + blue: "#316DCA" + magenta: "#AE4C82" + cyan: "#337582" + white: "#CDD9E5" + brightBlack: "#697482" + brightRed: "#FB4B44" + brightGreen: "#419C47" + brightYellow: "#BB7F00" + brightBlue: "#3D88FC" + brightMagenta: "#D95FA2" + brightCyan: "#3F92A2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 257 + contrast: + fg: 43.6 + black: 15.9 + red: 25.2 + green: 23.9 + yellow: 24.4 + blue: 24.3 + magenta: 24.3 + cyan: 22.9 + white: 79.6 + brightBlack: 25.7 + brightRed: 38.6 + brightGreen: 36.9 + brightYellow: 37.3 + brightBlue: 37.3 + brightMagenta: 37.4 + brightCyan: 35.4 + brightWhite: 104.9 diff --git a/themes/pine-cone-theme.yaml b/themes/pine-cone-theme.yaml new file mode 100644 index 00000000..d17c7c13 --- /dev/null +++ b/themes/pine-cone-theme.yaml @@ -0,0 +1,49 @@ +name: "Pine Cone Theme" +source: + marketplace_id: "imalbert.conifer-theme" + version: "2.4.3" + installs: 1380 + author: "imalbert" + repo: "https://github.com/imalbert/conifer-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=imalbert.conifer-theme" +colors: + bg: "#232922" + fg: "#D3D9D2" + black: "#2E352C" + red: "#A96E55" + green: "#BCBC62" + yellow: "#BCBC62" + blue: "#889985" + magenta: "#D3D9D3" + cyan: "#BCBC62" + white: "#D3D9D2" + brightBlack: "#D3D9D2" + brightRed: "#A96E55" + brightGreen: "#BCBC62" + brightYellow: "#BCBC62" + brightBlue: "#889985" + brightMagenta: "#D3D9D3" + brightCyan: "#C5C581" + brightWhite: "#EBDFC1" +meta: + mode: "dark" + accent: "green" + hue: 141 + contrast: + fg: 79.1 + black: 0 + red: 29.9 + green: 60.4 + yellow: 60.4 + blue: 41.4 + magenta: 79.2 + cyan: 60.4 + white: 79.1 + brightBlack: 79.1 + brightRed: 29.9 + brightGreen: 60.4 + brightYellow: 60.4 + brightBlue: 41.4 + brightMagenta: 79.2 + brightCyan: 66 + brightWhite: 84.4 diff --git a/themes/pine-editor-light.yaml b/themes/pine-editor-light.yaml new file mode 100644 index 00000000..0b0ec00e --- /dev/null +++ b/themes/pine-editor-light.yaml @@ -0,0 +1,49 @@ +name: "Pine Editor Light" +source: + marketplace_id: "frizLabz.pinescript-v5-vscode" + version: "0.1.7" + installs: 12635 + author: "FFriZz" + repo: "https://github.com/FFriZ/Pine-Script-v5-VS-Code" + url: "https://marketplace.visualstudio.com/items?itemName=frizLabz.pinescript-v5-vscode" +colors: + bg: "#FBFBFB" + fg: "#403F53" + black: "#403F53" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2962FF" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2962FF" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 91.3 + black: 91.3 + red: 66.3 + green: 64.2 + yellow: 37 + blue: 60.1 + magenta: 65.3 + cyan: 70.7 + white: 0 + brightBlack: 91.3 + brightRed: 66.3 + brightGreen: 64.2 + brightYellow: 39.7 + brightBlue: 60.1 + brightMagenta: 65.3 + brightCyan: 70.7 + brightWhite: 0 diff --git a/themes/pine-forest-green-dark.yaml b/themes/pine-forest-green-dark.yaml new file mode 100644 index 00000000..446208c2 --- /dev/null +++ b/themes/pine-forest-green-dark.yaml @@ -0,0 +1,49 @@ +name: "Pine Forest Green (Dark)" +source: + marketplace_id: "felix-tjernberg.pine-forest-green" + version: "1.0.1" + installs: 1420 + author: "Felix Tjernberg" + repo: "https://github.com/felix-tjernberg/pine-forest-green" + url: "https://marketplace.visualstudio.com/items?itemName=felix-tjernberg.pine-forest-green" +colors: + bg: "#08190A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 147 + contrast: + fg: 107 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/pine-forest.yaml b/themes/pine-forest.yaml new file mode 100644 index 00000000..c5bc585c --- /dev/null +++ b/themes/pine-forest.yaml @@ -0,0 +1,49 @@ +name: "Pine Forest" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 80 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" +colors: + bg: "#1B1717" + fg: "#CAC9C9" + black: "#2C2828" + red: "#FF5861" + green: "#1FB854" + yellow: "#FFBE00" + blue: "#1FB8AB" + magenta: "#BA9AB6" + cyan: "#84CBA5" + white: "#DCE1DF" + brightBlack: "#3C3A3A" + brightRed: "#FF7373" + brightGreen: "#2BFF88" + brightYellow: "#FFE36E" + brightBlue: "#74D9D0" + brightMagenta: "#D9A5D4" + brightCyan: "#AAEEDD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 72.9 + black: 0 + red: 44 + green: 50.4 + yellow: 72.8 + blue: 52.8 + magenta: 51.7 + cyan: 65.4 + white: 86.7 + brightBlack: 0 + brightRed: 50 + brightGreen: 86.9 + brightYellow: 89.2 + brightBlue: 72.5 + brightMagenta: 61.5 + brightCyan: 87.2 + brightWhite: 106.8 diff --git a/themes/pine-frizz.yaml b/themes/pine-frizz.yaml new file mode 100644 index 00000000..c78ab643 --- /dev/null +++ b/themes/pine-frizz.yaml @@ -0,0 +1,49 @@ +name: "Pine FriZz" +source: + marketplace_id: "frizLabz.pinescript-v5-vscode" + version: "0.1.7" + installs: 12635 + author: "FFriZz" + repo: "https://github.com/FFriZ/Pine-Script-v5-VS-Code" + url: "https://marketplace.visualstudio.com/items?itemName=frizLabz.pinescript-v5-vscode" +colors: + bg: "#22262E" + fg: "#FFFFFF" + black: "#22262E" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#ADFF2F" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#ADFF2F" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 104.8 + black: 0 + red: 37.2 + green: 65.2 + yellow: 80 + blue: 53.9 + magenta: 51.7 + cyan: 57.6 + white: 90.1 + brightBlack: 13.5 + brightRed: 37.2 + brightGreen: 65.2 + brightYellow: 91.6 + brightBlue: 53.9 + brightMagenta: 51.7 + brightCyan: 71.9 + brightWhite: 90.1 diff --git a/themes/pine-theme-blue.yaml b/themes/pine-theme-blue.yaml new file mode 100644 index 00000000..cca89927 --- /dev/null +++ b/themes/pine-theme-blue.yaml @@ -0,0 +1,49 @@ +name: "Pine Theme Blue" +source: + marketplace_id: "salbert11.pinescript-helper" + version: "3.4.3" + installs: 9795 + author: "salbert11" + repo: "https://github.com/salbert11/pinescript" + url: "https://marketplace.visualstudio.com/items?itemName=salbert11.pinescript-helper" +colors: + bg: "#01101C" + fg: "#D6DEEB" + black: "#01101C" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 240 + contrast: + fg: 85.8 + black: 0 + red: 39.9 + green: 67.8 + yellow: 82.6 + blue: 56.5 + magenta: 54.3 + cyan: 60.3 + white: 107.4 + brightBlack: 16.2 + brightRed: 39.9 + brightGreen: 67.8 + brightYellow: 94.3 + brightBlue: 56.5 + brightMagenta: 54.3 + brightCyan: 74.6 + brightWhite: 107.4 diff --git a/themes/pine-theme-dark-low-contrast.yaml b/themes/pine-theme-dark-low-contrast.yaml new file mode 100644 index 00000000..82e91eb5 --- /dev/null +++ b/themes/pine-theme-dark-low-contrast.yaml @@ -0,0 +1,49 @@ +name: "Pine Theme Dark Low Contrast" +source: + marketplace_id: "salbert11.pinescript-helper" + version: "3.4.3" + installs: 9795 + author: "salbert11" + repo: "https://github.com/salbert11/pinescript" + url: "https://marketplace.visualstudio.com/items?itemName=salbert11.pinescript-helper" +colors: + bg: "#131621" + fg: "#D6DEEB" + black: "#131621" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 272 + contrast: + fg: 85.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 82.1 + blue: 56 + magenta: 53.8 + cyan: 59.7 + white: 106.9 + brightBlack: 15.6 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74 + brightWhite: 106.9 diff --git a/themes/pine-theme-grey.yaml b/themes/pine-theme-grey.yaml new file mode 100644 index 00000000..5e2bb9b1 --- /dev/null +++ b/themes/pine-theme-grey.yaml @@ -0,0 +1,49 @@ +name: "Pine Theme Grey" +source: + marketplace_id: "salbert11.pinescript-helper" + version: "3.4.3" + installs: 9795 + author: "salbert11" + repo: "https://github.com/salbert11/pinescript" + url: "https://marketplace.visualstudio.com/items?itemName=salbert11.pinescript-helper" +colors: + bg: "#22262E" + fg: "#D6DEEB" + black: "#22262E" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 264 + contrast: + fg: 83.1 + black: 0 + red: 37.2 + green: 65.2 + yellow: 80 + blue: 53.9 + magenta: 51.7 + cyan: 57.6 + white: 104.8 + brightBlack: 13.5 + brightRed: 37.2 + brightGreen: 65.2 + brightYellow: 91.6 + brightBlue: 53.9 + brightMagenta: 51.7 + brightCyan: 71.9 + brightWhite: 104.8 diff --git a/themes/pine-theme-original-dark-extend.yaml b/themes/pine-theme-original-dark-extend.yaml new file mode 100644 index 00000000..5dbb4897 --- /dev/null +++ b/themes/pine-theme-original-dark-extend.yaml @@ -0,0 +1,49 @@ +name: "Pine Theme Original Dark Extend" +source: + marketplace_id: "salbert11.pinescript-helper" + version: "3.4.3" + installs: 9795 + author: "salbert11" + repo: "https://github.com/salbert11/pinescript" + url: "https://marketplace.visualstudio.com/items?itemName=salbert11.pinescript-helper" +colors: + bg: "#131623" + fg: "#FFFFFF" + black: "#131722" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#E17518" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#E17518" +meta: + mode: "dark" + accent: "teal" + hue: 274 + contrast: + fg: 106.9 + black: 0 + red: 39.3 + green: 67.3 + yellow: 82.1 + blue: 55.9 + magenta: 53.8 + cyan: 59.7 + white: 43.3 + brightBlack: 15.6 + brightRed: 39.3 + brightGreen: 67.3 + brightYellow: 93.7 + brightBlue: 55.9 + brightMagenta: 53.8 + brightCyan: 74 + brightWhite: 43.3 diff --git a/themes/pine-theme-original-dark.yaml b/themes/pine-theme-original-dark.yaml new file mode 100644 index 00000000..0ee65396 --- /dev/null +++ b/themes/pine-theme-original-dark.yaml @@ -0,0 +1,49 @@ +name: "Pine Theme Original Dark" +source: + marketplace_id: "salbert11.pinescript-helper" + version: "3.4.3" + installs: 9795 + author: "salbert11" + repo: "https://github.com/salbert11/pinescript" + url: "https://marketplace.visualstudio.com/items?itemName=salbert11.pinescript-helper" +colors: + bg: "#131722" + fg: "#FFFFFF" + black: "#131722" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#E17518" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#E17518" +meta: + mode: "dark" + accent: "teal" + hue: 269 + contrast: + fg: 106.8 + black: 0 + red: 39.3 + green: 67.2 + yellow: 82 + blue: 55.9 + magenta: 53.7 + cyan: 59.7 + white: 43.2 + brightBlack: 15.5 + brightRed: 39.3 + brightGreen: 67.2 + brightYellow: 93.7 + brightBlue: 55.9 + brightMagenta: 53.7 + brightCyan: 73.9 + brightWhite: 43.2 diff --git a/themes/pineapple.yaml b/themes/pineapple.yaml new file mode 100644 index 00000000..ab3b52be --- /dev/null +++ b/themes/pineapple.yaml @@ -0,0 +1,49 @@ +name: "PineApple" +source: + marketplace_id: "AshinBerish.pineapple" + version: "1.0.1" + installs: 240 + author: "Ashin Berish" + repo: "https://github.com/ashinberish/PineApple-theme-VScode" + url: "https://marketplace.visualstudio.com/items?itemName=AshinBerish.pineapple" +colors: + bg: "#F6FFE8" + fg: "#171C28" + black: "#2F3B54" + red: "#FF3D4A" + green: "#BAE67E" + yellow: "#FFCC66" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#FF3D4A" + brightGreen: "#BAE67E" + brightYellow: "#FFCC66" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.9 + black: 93.8 + red: 58.8 + green: 18.4 + yellow: 20.9 + blue: 31.7 + magenta: 37.9 + cyan: 31.7 + white: 43.9 + brightBlack: 88 + brightRed: 58.8 + brightGreen: 18.4 + brightYellow: 20.9 + brightBlue: 31.7 + brightMagenta: 37.9 + brightCyan: 31.7 + brightWhite: 43.9 diff --git a/themes/pines.yaml b/themes/pines.yaml new file mode 100644 index 00000000..cbf9711d --- /dev/null +++ b/themes/pines.yaml @@ -0,0 +1,49 @@ +name: "pines" +source: + marketplace_id: "deeppines.pines-visual-studio-code" + version: "0.3.0" + installs: 2748 + author: "Lucas Kane" + repo: "https://github.com/deeppines/pines-visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=deeppines.pines-visual-studio-code" +colors: + bg: "#253447" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 255 + contrast: + fg: 74.6 + black: 0 + red: 21.8 + green: 48.1 + yellow: 80.7 + blue: 22.5 + magenta: 24.9 + cyan: 42.7 + white: 85.1 + brightBlack: 17.1 + brightRed: 33.7 + brightGreen: 58.6 + brightYellow: 90.7 + brightBlue: 35.1 + brightMagenta: 40.5 + brightCyan: 50.5 + brightWhite: 85.1 diff --git a/themes/pingocho-dark.yaml b/themes/pingocho-dark.yaml new file mode 100644 index 00000000..d23cfbf0 --- /dev/null +++ b/themes/pingocho-dark.yaml @@ -0,0 +1,49 @@ +name: "Pingocho dark" +source: + marketplace_id: "pingocho.pingocho-dark" + version: "1.0.4" + installs: 210 + author: "Leo Marello" + repo: "https://github.com/lmarello/pingocho-dark-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pingocho.pingocho-dark" +colors: + bg: "#15181F" + fg: "#D5D5D5" + black: "#363636" + red: "#992A2A" + green: "#136647" + yellow: "#D0D082" + blue: "#749BC4" + magenta: "#5D3C5D" + cyan: "#4D828F" + white: "#ABABAB" + brightBlack: "#666666" + brightRed: "#994141" + brightGreen: "#3B8668" + brightYellow: "#84843E" + brightBlue: "#3F6EA1" + brightMagenta: "#A160A1" + brightCyan: "#31889D" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 267 + contrast: + fg: 80 + black: 0 + red: 15.2 + green: 17.1 + yellow: 74.4 + blue: 45.3 + magenta: 10 + cyan: 31 + white: 55.7 + brightBlack: 21.9 + brightRed: 18.7 + brightGreen: 30.4 + brightYellow: 33.9 + brightBlue: 24.4 + brightMagenta: 29.8 + brightCyan: 32.8 + brightWhite: 89.9 diff --git a/themes/pink-candy-dark-warm.yaml b/themes/pink-candy-dark-warm.yaml new file mode 100644 index 00000000..d4985415 --- /dev/null +++ b/themes/pink-candy-dark-warm.yaml @@ -0,0 +1,49 @@ +name: "Pink Candy Dark Warm" +source: + marketplace_id: "kuba-p.theme-pink-candy" + version: "1.6.0" + installs: 31744 + author: "kuba_p" + repo: "https://github.com/KubaP/vscode-pink-candy" + url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" +colors: + bg: "#1D2021" + fg: "#BDAE93" + black: "#FBF1C7" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#1D2021" + brightBlack: "#666666" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#FBF1C7" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 57.3 + black: 96.3 + red: 24.2 + green: 41.9 + yellow: 51.5 + blue: 30.5 + magenta: 30.7 + cyan: 40.9 + white: 0 + brightBlack: 21 + brightRed: 39.1 + brightGreen: 60.1 + brightYellow: 70.8 + brightBlue: 47.6 + brightMagenta: 46.9 + brightCyan: 59.1 + brightWhite: 96.3 diff --git a/themes/pink-candy-dark.yaml b/themes/pink-candy-dark.yaml new file mode 100644 index 00000000..98aa2090 --- /dev/null +++ b/themes/pink-candy-dark.yaml @@ -0,0 +1,49 @@ +name: "Pink Candy Dark" +source: + marketplace_id: "kuba-p.theme-pink-candy" + version: "1.6.0" + installs: 31744 + author: "kuba_p" + repo: "https://github.com/KubaP/vscode-pink-candy" + url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" +colors: + bg: "#22222A" + fg: "#ABB2BF" + black: "#FFFFFF" + red: "#FF0046" + green: "#2DAE58" + yellow: "#CF9C00" + blue: "#09A1ED" + magenta: "#C010EF" + cyan: "#13BBB7" + white: "#22222A" + brightBlack: "#666666" + brightRed: "#FF2E87" + brightGreen: "#25DA6A" + brightYellow: "#FFC104" + brightBlue: "#41B9FF" + brightMagenta: "#C75AF3" + brightCyan: "#16DAD6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 57.9 + black: 105.4 + red: 35.4 + green: 44.8 + yellow: 50.7 + blue: 45.1 + magenta: 29.4 + cyan: 53.2 + white: 0 + brightBlack: 20.5 + brightRed: 38.4 + brightGreen: 65.7 + brightYellow: 72.6 + brightBlue: 57.1 + brightMagenta: 38.5 + brightCyan: 69.1 + brightWhite: 105.4 diff --git a/themes/pink-candy-light.yaml b/themes/pink-candy-light.yaml new file mode 100644 index 00000000..93651d19 --- /dev/null +++ b/themes/pink-candy-light.yaml @@ -0,0 +1,49 @@ +name: "Pink Candy Light" +source: + marketplace_id: "kuba-p.theme-pink-candy" + version: "1.6.0" + installs: 31744 + author: "kuba_p" + repo: "https://github.com/KubaP/vscode-pink-candy" + url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" +colors: + bg: "#FAFBFC" + fg: "#565869" + black: "#FAFBFC" + red: "#FF5C57" + green: "#2DAE58" + yellow: "#C69613" + blue: "#09A1ED" + magenta: "#C75AF3" + cyan: "#27B0AC" + white: "#565869" + brightBlack: "#8B8FA0" + brightRed: "#DB3839" + brightGreen: "#1E9347" + brightYellow: "#A1790C" + brightBlue: "#1684C2" + brightMagenta: "#A853CB" + brightCyan: "#288D8A" + brightWhite: "#343545" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 81.8 + black: 0 + red: 53.6 + green: 52 + yellow: 49.7 + blue: 51.7 + magenta: 58.2 + cyan: 48.8 + white: 81.8 + brightBlack: 56.9 + brightRed: 67.5 + brightGreen: 63.9 + brightYellow: 64.6 + brightBlue: 65.2 + brightMagenta: 67.5 + brightCyan: 64.4 + brightWhite: 95.1 diff --git a/themes/pink-flower.yaml b/themes/pink-flower.yaml new file mode 100644 index 00000000..d5180811 --- /dev/null +++ b/themes/pink-flower.yaml @@ -0,0 +1,49 @@ +name: "Pink Flower" +source: + marketplace_id: "stevennyang.green-tree" + version: "1.2.1" + installs: 5715 + author: "Steven N. Yang" + repo: "https://github.com/snyang/vscode-theme-green-tree" + url: "https://marketplace.visualstudio.com/items?itemName=stevennyang.green-tree" +colors: + bg: "#FFF0F1" + fg: "#232323" + black: "#000000" + red: "#FF0000" + green: "#3CB371" + yellow: "#BDB76B" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00BFFF" + white: "#3CB371" + brightBlack: "#708090" + brightRed: "#8B0000" + brightGreen: "#3CB371" + brightYellow: "#BDB76B" + brightBlue: "#00008B" + brightMagenta: "#8B008B" + brightCyan: "#87CEFA" + brightWhite: "#3CB371" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 95.7 + black: 99.1 + red: 57.2 + green: 44.5 + yellow: 33.4 + blue: 78.9 + magenta: 48.6 + cyan: 33.9 + white: 44.5 + brightBlack: 60.8 + brightRed: 83.8 + brightGreen: 44.5 + brightYellow: 33.4 + brightBlue: 93 + brightMagenta: 80.1 + brightCyan: 23.8 + brightWhite: 44.5 diff --git a/themes/pink-neon.yaml b/themes/pink-neon.yaml new file mode 100644 index 00000000..2a99f495 --- /dev/null +++ b/themes/pink-neon.yaml @@ -0,0 +1,49 @@ +name: "Pink Neon" +source: + marketplace_id: "puszkarek.arasaka-inferno-vscode-theme" + version: "1.2.0" + installs: 268 + author: "Puszkarek" + repo: "https://github.com/Puszkarek/arasaka-inferno-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.arasaka-inferno-vscode-theme" +colors: + bg: "#160E17" + fg: "#63A6FD" + black: "#160E17" + red: "#FF2E6E" + green: "#D425A5" + yellow: "#F0B437" + blue: "#00FFCC" + magenta: "#FF00AA" + cyan: "#00FFF7" + white: "#D425A5" + brightBlack: "#050305" + brightRed: "#FF2E6E" + brightGreen: "#D425A5" + brightYellow: "#F0B437" + brightBlue: "#00FFCC" + brightMagenta: "#FF00A8" + brightCyan: "#00FFF7" + brightWhite: "#8FBFFF" +meta: + mode: "dark" + accent: "red" + hue: 323 + contrast: + fg: 52.6 + black: 0 + red: 39.7 + green: 31.2 + yellow: 67.2 + blue: 89.3 + magenta: 40.4 + cyan: 91.3 + white: 31.2 + brightBlack: 0 + brightRed: 39.7 + brightGreen: 31.2 + brightYellow: 67.2 + brightBlue: 89.3 + brightMagenta: 40.3 + brightCyan: 91.3 + brightWhite: 66 diff --git a/themes/pink-theme.yaml b/themes/pink-theme.yaml new file mode 100644 index 00000000..301e54fc --- /dev/null +++ b/themes/pink-theme.yaml @@ -0,0 +1,49 @@ +name: "Pink Theme" +source: + marketplace_id: "huacat.pink-theme" + version: "1.1.2" + installs: 71463 + author: "huacat" + repo: "https://github.com/huacat1017/huacat.pink-theme" + url: "https://marketplace.visualstudio.com/items?itemName=huacat.pink-theme" +colors: + bg: "#F5EAF5" + fg: "#72696F" + black: "#38313B" + red: "#D14040" + green: "#3D8B1C" + yellow: "#C4990D" + blue: "#5782DF" + magenta: "#9045D6" + cyan: "#3CA89A" + white: "#72696F" + brightBlack: "#6B5D72" + brightRed: "#DB6363" + brightGreen: "#62AD44" + brightYellow: "#E2B213" + brightBlue: "#88A4E2" + brightMagenta: "#A770DB" + brightCyan: "#6AC0B9" + brightWhite: "#978C94" +meta: + mode: "light" + accent: "magenta" + hue: 326 + contrast: + fg: 65.8 + black: 88 + red: 60.6 + green: 58.7 + yellow: 40.9 + blue: 53.9 + magenta: 64.7 + cyan: 44.4 + white: 65.8 + brightBlack: 70 + brightRed: 51.5 + brightGreen: 42.7 + brightYellow: 27.4 + brightBlue: 38.2 + brightMagenta: 51.9 + brightCyan: 31.1 + brightWhite: 49.1 diff --git a/themes/pink.yaml b/themes/pink.yaml new file mode 100644 index 00000000..2c109349 --- /dev/null +++ b/themes/pink.yaml @@ -0,0 +1,49 @@ +name: "Pink" +source: + marketplace_id: "BayuSetiawan.kanao" + version: "1.4.0" + installs: 1890 + author: "Bayu Setiawan" + repo: "https://github.com/Bayusetiawan45/kanao" + url: "https://marketplace.visualstudio.com/items?itemName=BayuSetiawan.kanao" +colors: + bg: "#FFECF0" + fg: "#E000A8" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 59.5 + black: 97.4 + red: 65.4 + green: 40.6 + yellow: 49.3 + blue: 77.4 + magenta: 65.9 + cyan: 52 + white: 77.3 + brightBlack: 70.1 + brightRed: 65.4 + brightGreen: 32.3 + brightYellow: 32.3 + brightBlue: 77.4 + brightMagenta: 65.9 + brightCyan: 52 + brightWhite: 39.8 diff --git a/themes/pinkandgreen.yaml b/themes/pinkandgreen.yaml new file mode 100644 index 00000000..6bdb565f --- /dev/null +++ b/themes/pinkandgreen.yaml @@ -0,0 +1,49 @@ +name: "pinkAndGreen" +source: + marketplace_id: "sebula.pinkandgreen" + version: "0.0.1" + installs: 435 + author: "Sebula" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sebula.pinkandgreen" +colors: + bg: "#1E1E1E" + fg: "#FFB6B6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 71.9 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/pinkandwhite.yaml b/themes/pinkandwhite.yaml new file mode 100644 index 00000000..822f7ff2 --- /dev/null +++ b/themes/pinkandwhite.yaml @@ -0,0 +1,49 @@ +name: "pinkandwhite" +source: + marketplace_id: "AninhaPardini.pinkandwhite" + version: "0.0.1" + installs: 2237 + author: "Aninha Pardini" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AninhaPardini.pinkandwhite" +colors: + bg: "#FFFFFF" + fg: "#C441B6" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 69.5 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/pinkcloud.yaml b/themes/pinkcloud.yaml new file mode 100644 index 00000000..055c2464 --- /dev/null +++ b/themes/pinkcloud.yaml @@ -0,0 +1,49 @@ +name: "PinkCloud" +source: + marketplace_id: "priteshlad3.katanax" + version: "0.0.1" + installs: 9 + author: "priteshlad3" + repo: "https://github.com/pritesh88/katanax-theme" + url: "https://marketplace.visualstudio.com/items?itemName=priteshlad3.katanax" +colors: + bg: "#F8EEF2" + fg: "#2A2A3A" + black: "#2A2A3A" + red: "#CC4455" + green: "#4A8A6A" + yellow: "#B87040" + blue: "#5A7AAA" + magenta: "#8A4A75" + cyan: "#4A8A8A" + white: "#7A7A8A" + brightBlack: "#5A5A6A" + brightRed: "#E8A0B4" + brightGreen: "#6AAA8A" + brightYellow: "#C89060" + brightBlue: "#7A9ABF" + brightMagenta: "#AA6A95" + brightCyan: "#6AACAC" + brightWhite: "#2A2A3A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.1 + black: 92.1 + red: 62.6 + green: 59.3 + yellow: 57.2 + blue: 61.6 + magenta: 72.6 + cyan: 58.2 + white: 60.5 + brightBlack: 74.7 + brightRed: 31.8 + brightGreen: 43.9 + brightYellow: 44.5 + brightBlue: 46.9 + brightMagenta: 58.8 + brightCyan: 41.9 + brightWhite: 92.1 diff --git a/themes/pinkcodes-pink.yaml b/themes/pinkcodes-pink.yaml new file mode 100644 index 00000000..6cce8dcc --- /dev/null +++ b/themes/pinkcodes-pink.yaml @@ -0,0 +1,49 @@ +name: "PinkCodes Pink" +source: + marketplace_id: "PinkCodes.pinkcodes" + version: "0.0.22" + installs: 4034 + author: "PinkCodes" + repo: "https://github.com/pinkc0des/pinkcodes-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=PinkCodes.pinkcodes" +colors: + bg: "#0B010B" + fg: "#D4D4D4" + black: "#0B010B" + red: "#F03880" + green: "#5DD465" + yellow: "#DAD16F" + blue: "#78D1E1" + magenta: "#988BC7" + cyan: "#A1EFE4" + white: "#E1E1E6" + brightBlack: "#626483" + brightRed: "#ED4556" + brightGreen: "#00F769" + brightYellow: "#DAD16F" + brightBlue: "#78D1E1" + brightMagenta: "#988BC7" + brightCyan: "#A4FFFF" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "green" + hue: 328 + contrast: + fg: 80.4 + black: 0 + red: 38 + green: 66.7 + yellow: 76.8 + blue: 70.9 + magenta: 44.2 + cyan: 88.2 + white: 88.7 + brightBlack: 23.1 + brightRed: 37.8 + brightGreen: 82.9 + brightYellow: 76.8 + brightBlue: 70.9 + brightMagenta: 44.2 + brightCyan: 97.7 + brightWhite: 102.7 diff --git a/themes/pinkdark.yaml b/themes/pinkdark.yaml new file mode 100644 index 00000000..9df5bb84 --- /dev/null +++ b/themes/pinkdark.yaml @@ -0,0 +1,49 @@ +name: "PINKDARK" +source: + marketplace_id: "srtakennedy.pink-dark" + version: "0.0.8" + installs: 3077 + author: "srtakennedy" + repo: "https://github.com/SrtaKennedy" + url: "https://marketplace.visualstudio.com/items?itemName=srtakennedy.pink-dark" +colors: + bg: "#242223" + fg: "#FFCCD5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 81 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 28.3 + cyan: 46.1 + white: 88.5 + brightBlack: 20.5 + brightRed: 37.1 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/pinkdopeybug-primordial-origin.yaml b/themes/pinkdopeybug-primordial-origin.yaml new file mode 100644 index 00000000..471ef5e3 --- /dev/null +++ b/themes/pinkdopeybug-primordial-origin.yaml @@ -0,0 +1,49 @@ +name: "PinkDopeyBug-Primordial Origin" +source: + marketplace_id: "PinkDopeyBug.pinkdopeybug" + version: "1.0.20" + installs: 472 + author: "PinkDopeyBug" + repo: "https://github.com/PinkDopeyBug/pinkdopeybug-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PinkDopeyBug.pinkdopeybug" +colors: + bg: "#F0F0F0" + fg: "#1E1E1E" + black: "#24292E" + red: "#D73A49" + green: "#28A745" + yellow: "#DBAB09" + blue: "#0366D6" + magenta: "#5A32A3" + cyan: "#1B7C83" + white: "#6A737D" + brightBlack: "#959DA5" + brightRed: "#CB2431" + brightGreen: "#22863A" + brightYellow: "#B08800" + brightBlue: "#005CC5" + brightMagenta: "#5A32A3" + brightCyan: "#3192AA" + brightWhite: "#D1D5DA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 94.7 + black: 92.6 + red: 61.5 + green: 49 + yellow: 32.7 + blue: 67.3 + magenta: 80.2 + cyan: 64.9 + white: 64.5 + brightBlack: 44.2 + brightRed: 66.6 + brightGreen: 62.8 + brightYellow: 51.2 + brightBlue: 71.6 + brightMagenta: 80.2 + brightCyan: 54.4 + brightWhite: 13.5 diff --git a/themes/pinkmare.yaml b/themes/pinkmare.yaml new file mode 100644 index 00000000..522e29e9 --- /dev/null +++ b/themes/pinkmare.yaml @@ -0,0 +1,49 @@ +name: "Pinkmare" +source: + marketplace_id: "Matsuuu.pinkmare" + version: "0.4.0" + installs: 1333 + author: "Matsuuu" + repo: "https://github.com/Matsuuu/pinkmare" + url: "https://marketplace.visualstudio.com/items?itemName=Matsuuu.pinkmare" +colors: + bg: "#202330" + fg: "#FAE8B6" + black: "#202330" + red: "#FF38A2" + green: "#9CD162" + yellow: "#FFC85B" + blue: "#EBA4AC" + magenta: "#D9BCEF" + cyan: "#87C095" + white: "#FFF0F5" + brightBlack: "#202330" + brightRed: "#FF38A2" + brightGreen: "#9CD162" + brightYellow: "#FFC85B" + brightBlue: "#EBA4AC" + brightMagenta: "#D9BCEF" + brightCyan: "#87C095" + brightWhite: "#FFF0F5" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 90.9 + black: 0 + red: 40.2 + green: 66.9 + yellow: 75.8 + blue: 60.8 + magenta: 69.9 + cyan: 58.6 + white: 97.7 + brightBlack: 0 + brightRed: 40.2 + brightGreen: 66.9 + brightYellow: 75.8 + brightBlue: 60.8 + brightMagenta: 69.9 + brightCyan: 58.6 + brightWhite: 97.7 diff --git a/themes/pinkppuccin.yaml b/themes/pinkppuccin.yaml new file mode 100644 index 00000000..75774d79 --- /dev/null +++ b/themes/pinkppuccin.yaml @@ -0,0 +1,49 @@ +name: "Pinkppuccin" +source: + marketplace_id: "mamir.pinkppuccin" + version: "1.1.0" + installs: 152 + author: "mamir" + repo: "https://github.com/musaamir/pinkppuccin" + url: "https://marketplace.visualstudio.com/items?itemName=mamir.pinkppuccin" +colors: + bg: "#231E2D" + fg: "#DCD1F4" + black: "#6C7086" + red: "#F38BA8" + green: "#D0A0E0" + yellow: "#F9AFC4" + blue: "#BF89FA" + magenta: "#F5C2E7" + cyan: "#CE89EB" + white: "#9399B2" + brightBlack: "#7F849C" + brightRed: "#F38BA8" + brightGreen: "#D0A0E0" + brightYellow: "#F9AFC4" + brightBlue: "#BF89FA" + brightMagenta: "#F5C2E7" + brightCyan: "#CE89EB" + brightWhite: "#DCD1F4" +meta: + mode: "dark" + accent: "magenta" + hue: 300 + contrast: + fg: 79.6 + black: 25.6 + red: 54.5 + green: 58 + yellow: 68.5 + blue: 49.7 + magenta: 76.5 + cyan: 50.9 + white: 45.4 + brightBlack: 34.9 + brightRed: 54.5 + brightGreen: 58 + brightYellow: 68.5 + brightBlue: 49.7 + brightMagenta: 76.5 + brightCyan: 50.9 + brightWhite: 79.6 diff --git a/themes/pinky-promise-dark.yaml b/themes/pinky-promise-dark.yaml new file mode 100644 index 00000000..1fa990ef --- /dev/null +++ b/themes/pinky-promise-dark.yaml @@ -0,0 +1,49 @@ +name: "Pinky Promise Dark" +source: + marketplace_id: "ZubairIbnZamir.pinky-promise-theme" + version: "1.0.6" + installs: 458 + author: "Zubair Ibn Zamir" + repo: "https://github.com/2u841r/pinky-promise-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ZubairIbnZamir.pinky-promise-theme" +colors: + bg: "#1D1921" + fg: "#D2C7E1" + black: "#7A6483" + red: "#F888B5" + green: "#96D0BB" + yellow: "#FFBC9E" + blue: "#A2DBFF" + magenta: "#BAA4ED" + cyan: "#96D0BB" + white: "#D2C7E1" + brightBlack: "#7A6483" + brightRed: "#F888B5" + brightGreen: "#96D0BB" + brightYellow: "#FFBC9E" + brightBlue: "#A2DBFF" + brightMagenta: "#E8A5E4" + brightCyan: "#96D0BB" + brightWhite: "#F2EBFA" +meta: + mode: "dark" + accent: "red" + hue: 308 + contrast: + fg: 73.9 + black: 24.1 + red: 55.9 + green: 69.6 + yellow: 73.8 + blue: 78.9 + magenta: 57.9 + cyan: 69.6 + white: 73.9 + brightBlack: 24.1 + brightRed: 55.9 + brightGreen: 69.6 + brightYellow: 73.8 + brightBlue: 78.9 + brightMagenta: 64.4 + brightCyan: 69.6 + brightWhite: 95.1 diff --git a/themes/pinky-promise-light.yaml b/themes/pinky-promise-light.yaml new file mode 100644 index 00000000..007ee8e0 --- /dev/null +++ b/themes/pinky-promise-light.yaml @@ -0,0 +1,49 @@ +name: "Pinky Promise Light" +source: + marketplace_id: "ZubairIbnZamir.pinky-promise-theme" + version: "1.0.6" + installs: 458 + author: "Zubair Ibn Zamir" + repo: "https://github.com/2u841r/pinky-promise-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ZubairIbnZamir.pinky-promise-theme" +colors: + bg: "#F5EDFA" + fg: "#673C8B" + black: "#A289A9" + red: "#C51478" + green: "#487E70" + yellow: "#D2626C" + blue: "#5579BC" + magenta: "#6C4CBC" + cyan: "#487E70" + white: "#673C8B" + brightBlack: "#A289A9" + brightRed: "#C51478" + brightGreen: "#487E70" + brightYellow: "#D2626C" + brightBlue: "#5579BC" + brightMagenta: "#B74CBB" + brightCyan: "#487E70" + brightWhite: "#563271" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 78.6 + black: 49.4 + red: 66.9 + green: 63.3 + yellow: 54.8 + blue: 60.8 + magenta: 71.4 + cyan: 63.3 + white: 78.6 + brightBlack: 49.4 + brightRed: 66.9 + brightGreen: 63.3 + brightYellow: 54.8 + brightBlue: 60.8 + brightMagenta: 60.8 + brightCyan: 63.3 + brightWhite: 83.9 diff --git a/themes/pinkyboo.yaml b/themes/pinkyboo.yaml new file mode 100644 index 00000000..d006a79d --- /dev/null +++ b/themes/pinkyboo.yaml @@ -0,0 +1,49 @@ +name: "Pinkyboo" +source: + marketplace_id: "kissa1001.pinkyboo-theme" + version: "1.0.3" + installs: 3324 + author: "kissa1001" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kissa1001.pinkyboo-theme" +colors: + bg: "#FBFBFB" + fg: "#5A5A5A" + black: "#747273" + red: "#CD3131" + green: "#00BC00" + yellow: "#F0E43B" + blue: "#7FB8F5" + magenta: "#FF13B9" + cyan: "#0598BC" + white: "#FFAFEB" + brightBlack: "#B3B3B3" + brightRed: "#E25555" + brightGreen: "#14CE14" + brightYellow: "#EBC13F" + brightBlue: "#7FB3EC" + brightMagenta: "#FF71E2" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 81.5 + black: 70.8 + red: 71.6 + green: 46.8 + yellow: 13.4 + blue: 38.2 + magenta: 57.5 + cyan: 58.2 + white: 26.8 + brightBlack: 38.7 + brightRed: 61.4 + brightGreen: 38.5 + brightYellow: 28.3 + brightBlue: 40.7 + brightMagenta: 44.4 + brightCyan: 58.2 + brightWhite: 46.1 diff --git a/themes/pinot-gris.yaml b/themes/pinot-gris.yaml new file mode 100644 index 00000000..124b8620 --- /dev/null +++ b/themes/pinot-gris.yaml @@ -0,0 +1,49 @@ +name: "Pinot Gris" +source: + marketplace_id: "DionisUliu.dionis-theme" + version: "0.1.1" + installs: 432 + author: "Dionis Uliu" + repo: "https://github.com/DionisUliu/dionis-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DionisUliu.dionis-theme" +colors: + bg: "#24202C" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 300 + contrast: + fg: 78.1 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 88.6 + brightBlack: 20.6 + brightRed: 37.2 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/pinya-theme.yaml b/themes/pinya-theme.yaml new file mode 100644 index 00000000..52f5cab7 --- /dev/null +++ b/themes/pinya-theme.yaml @@ -0,0 +1,49 @@ +name: "Pinya Theme" +source: + marketplace_id: "Pinya.pinya-theme" + version: "1.0.16" + installs: 112 + author: "Pinya" + repo: "https://github.com/CarlesRojas/pinya-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Pinya.pinya-theme" +colors: + bg: "#090909" + fg: "#E3E3E3" + black: "#090909" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 89.7 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/pipboy-theme.yaml b/themes/pipboy-theme.yaml new file mode 100644 index 00000000..6afd22a8 --- /dev/null +++ b/themes/pipboy-theme.yaml @@ -0,0 +1,49 @@ +name: "PipBoy Theme" +source: + marketplace_id: "smv7.pipboy-theme" + version: "0.1.0" + installs: 1810 + author: "smv7" + repo: "https://github.com/smv7/pipboy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=smv7.pipboy-theme" +colors: + bg: "#04210F" + fg: "#3DE289" + black: "#3DE289" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#144A2D" + brightBlack: "#144A2D" + brightRed: "#F14C4C" + brightGreen: "#3DE289" + brightYellow: "#3DE289" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 153 + contrast: + fg: 71.6 + black: 71.6 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 0 + brightBlack: 0 + brightRed: 37.9 + brightGreen: 71.6 + brightYellow: 71.6 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/pirulug-dark.yaml b/themes/pirulug-dark.yaml new file mode 100644 index 00000000..7417e74c --- /dev/null +++ b/themes/pirulug-dark.yaml @@ -0,0 +1,49 @@ +name: "Pirulug Dark" +source: + marketplace_id: "Pirulug.pirulug-theme" + version: "0.1.0" + installs: 218 + author: "Pirulug" + repo: "https://github.com/pirulug/pirulug-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Pirulug.pirulug-theme" +colors: + bg: "#0D1017" + fg: "#E0DFD0" + black: "#808080" + red: "#E15A60" + green: "#4AFF97" + yellow: "#EDE84E" + blue: "#3691FF" + magenta: "#FF22AA" + cyan: "#10B1FE" + white: "#E0DFD0" + brightBlack: "#808080" + brightRed: "#E15A60" + brightGreen: "#4AFF97" + brightYellow: "#EDE84E" + brightBlue: "#3691FF" + brightMagenta: "#FF22AA" + brightCyan: "#10B1FE" + brightWhite: "#E0DFD0" +meta: + mode: "dark" + accent: "red" + hue: 267 + contrast: + fg: 86.3 + black: 34.3 + red: 38.4 + green: 88.5 + yellow: 89 + blue: 43.1 + magenta: 41.2 + cyan: 54.9 + white: 86.3 + brightBlack: 34.3 + brightRed: 38.4 + brightGreen: 88.5 + brightYellow: 89 + brightBlue: 43.1 + brightMagenta: 41.2 + brightCyan: 54.9 + brightWhite: 86.3 diff --git a/themes/pirulug-ligt.yaml b/themes/pirulug-ligt.yaml new file mode 100644 index 00000000..38d99650 --- /dev/null +++ b/themes/pirulug-ligt.yaml @@ -0,0 +1,49 @@ +name: "Pirulug Ligt" +source: + marketplace_id: "Pirulug.pirulug-theme" + version: "0.1.0" + installs: 218 + author: "Pirulug" + repo: "https://github.com/pirulug/pirulug-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Pirulug.pirulug-theme" +colors: + bg: "#F6F7F9" + fg: "#1F2328" + black: "#4B5563" + red: "#D92D20" + green: "#166534" + yellow: "#8A6A00" + blue: "#1D4ED8" + magenta: "#FF0055" + cyan: "#0891B2" + white: "#1F2328" + brightBlack: "#4B5563" + brightRed: "#D92D20" + brightGreen: "#166534" + brightYellow: "#8A6A00" + brightBlue: "#1D4ED8" + brightMagenta: "#FF0055" + brightCyan: "#0891B2" + brightWhite: "#1F2328" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.9 + black: 81.5 + red: 66.9 + green: 79.5 + yellow: 70 + blue: 77.4 + magenta: 58.7 + cyan: 59 + white: 97.9 + brightBlack: 81.5 + brightRed: 66.9 + brightGreen: 79.5 + brightYellow: 70 + brightBlue: 77.4 + brightMagenta: 58.7 + brightCyan: 59 + brightWhite: 97.9 diff --git a/themes/pistachio-madness.yaml b/themes/pistachio-madness.yaml new file mode 100644 index 00000000..ecf9bcd3 --- /dev/null +++ b/themes/pistachio-madness.yaml @@ -0,0 +1,49 @@ +name: "Pistachio Madness" +source: + marketplace_id: "yubiDev.pistachio-madness-theme" + version: "0.0.7" + installs: 236 + author: "yoobdev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=yubiDev.pistachio-madness-theme" +colors: + bg: "#66A387" + fg: "#00EE89" + black: "#23663D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#4DD180" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: 164 + contrast: + fg: 32 + black: 25.9 + red: 16.3 + green: 0 + yellow: 39.8 + blue: 15.5 + magenta: 13.2 + cyan: 0 + white: 44.2 + brightBlack: 18.4 + brightRed: 0 + brightGreen: 17.7 + brightYellow: 49.8 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 9.6 + brightWhite: 44.2 diff --git a/themes/pitaya-smoothie.yaml b/themes/pitaya-smoothie.yaml new file mode 100644 index 00000000..df8dd7ae --- /dev/null +++ b/themes/pitaya-smoothie.yaml @@ -0,0 +1,49 @@ +name: "Pitaya smoothie" +source: + marketplace_id: "trallard.pitaya-smoothie" + version: "2.0.2" + installs: 3583 + author: "Tania Allard" + repo: "https://github.com/trallard/pitaya_smoothie" + url: "https://marketplace.visualstudio.com/items?itemName=trallard.pitaya-smoothie" +colors: + bg: "#181036" + fg: "#FEFEFF" + black: "#000000" + red: "#FD1D53" + green: "#45F5CF" + yellow: "#F5D131" + blue: "#7998F2" + magenta: "#A56CF5" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#5C5C61" + brightRed: "#F74B73" + brightGreen: "#6DF7D9" + brightYellow: "#FCE687" + brightBlue: "#95ACF1" + brightMagenta: "#B991F1" + brightCyan: "#A1F7F8" + brightWhite: "#2D2B55" +meta: + mode: "dark" + accent: "orange" + hue: 288 + contrast: + fg: 106.2 + black: 0 + red: 37 + green: 84.4 + yellow: 79.1 + blue: 47.5 + magenta: 38.8 + cyan: 92.7 + white: 106.8 + brightBlack: 17.9 + brightRed: 40.5 + brightGreen: 87.3 + brightYellow: 90.6 + brightBlue: 57.3 + brightMagenta: 51.8 + brightCyan: 92.1 + brightWhite: 0 diff --git a/themes/pittaya-theme-light.yaml b/themes/pittaya-theme-light.yaml new file mode 100644 index 00000000..6b6dfb75 --- /dev/null +++ b/themes/pittaya-theme-light.yaml @@ -0,0 +1,49 @@ +name: "Pittaya Theme Light" +source: + marketplace_id: "pittaya-org.pittaya-theme" + version: "1.0.1" + installs: 45 + author: "pittaya-org" + repo: "https://github.com/pittaya-ui/pittaya-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pittaya-org.pittaya-theme" +colors: + bg: "#FAFAFA" + fg: "#2A2A2A" + black: "#000000" + red: "#D91656" + green: "#2F9E44" + yellow: "#D97900" + blue: "#1864AB" + magenta: "#AE3EC9" + cyan: "#0C8599" + white: "#2A2A2A" + brightBlack: "#606060" + brightRed: "#FF637E" + brightGreen: "#50C878" + brightYellow: "#FFAA00" + brightBlue: "#4D9FFF" + brightMagenta: "#DA77F2" + brightCyan: "#15AABF" + brightWhite: "#1A1A1A" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 98.1 + black: 103 + red: 69.4 + green: 58.6 + yellow: 55 + blue: 76.9 + magenta: 69.7 + cyan: 66.6 + white: 98.1 + brightBlack: 78.3 + brightRed: 50.9 + brightGreen: 38.4 + brightYellow: 33 + brightBlue: 49.4 + brightMagenta: 48.3 + brightCyan: 50.2 + brightWhite: 101.3 diff --git a/themes/pittaya-theme.yaml b/themes/pittaya-theme.yaml new file mode 100644 index 00000000..d5e32ce6 --- /dev/null +++ b/themes/pittaya-theme.yaml @@ -0,0 +1,49 @@ +name: "Pittaya Theme" +source: + marketplace_id: "pittaya-org.pittaya-theme" + version: "1.0.1" + installs: 45 + author: "pittaya-org" + repo: "https://github.com/pittaya-ui/pittaya-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pittaya-org.pittaya-theme" +colors: + bg: "#1A1A1A" + fg: "#E8E8E8" + black: "#1A1A1A" + red: "#FF637E" + green: "#8FD460" + yellow: "#FFCC66" + blue: "#4D9FFF" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#E0E0E0" + brightBlack: "#606060" + brightRed: "#FF637E" + brightGreen: "#8FD460" + brightYellow: "#FFCC66" + brightBlue: "#4D9FFF" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 91.6 + black: 0 + red: 46.6 + green: 68.5 + yellow: 78.9 + blue: 48.2 + magenta: 54.2 + cyan: 83.6 + white: 86.5 + brightBlack: 19.2 + brightRed: 46.6 + brightGreen: 68.5 + brightYellow: 78.9 + brightBlue: 48.2 + brightMagenta: 54.2 + brightCyan: 83.6 + brightWhite: 106.5 diff --git a/themes/pittcsc-theme.yaml b/themes/pittcsc-theme.yaml new file mode 100644 index 00000000..80fcbda8 --- /dev/null +++ b/themes/pittcsc-theme.yaml @@ -0,0 +1,49 @@ +name: "PittCSC Theme" +source: + marketplace_id: "QuentinRomeroLauro.pittcsc-theme" + version: "0.1.2" + installs: 80 + author: "Quentin Romero Lauro" + repo: "https://github.com/QuentinRomeroLauro/PittCSC-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=QuentinRomeroLauro.pittcsc-theme" +colors: + bg: "#1E1E1E" + fg: "#F8F8F2" + black: "#252525" + red: "#F08080" + green: "#98C379" + yellow: "#E5C875" + blue: "#E5C875" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#E0E0E0" + brightBlack: "#252525" + brightRed: "#FF9090" + brightGreen: "#A8D389" + brightYellow: "#F5D885" + brightBlue: "#F5D885" + brightMagenta: "#D688ED" + brightCyan: "#66C6D2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.1 + black: 0 + red: 49.9 + green: 61.4 + yellow: 72.9 + blue: 72.9 + magenta: 44.3 + cyan: 53.7 + white: 86 + brightBlack: 0 + brightRed: 57.9 + brightGreen: 70.6 + brightYellow: 82.5 + brightBlue: 82.5 + brightMagenta: 52.4 + brightCyan: 62.3 + brightWhite: 106 diff --git a/themes/pixeye-theme.yaml b/themes/pixeye-theme.yaml new file mode 100644 index 00000000..5e398a4d --- /dev/null +++ b/themes/pixeye-theme.yaml @@ -0,0 +1,49 @@ +name: "pixeye-theme" +source: + marketplace_id: "Pixeye.pixeye-theme" + version: "0.1.2" + installs: 40 + author: "Pixeye" + repo: "https://github.com/PixeyeHQ/pixeye-theme-vs" + url: "https://marketplace.visualstudio.com/items?itemName=Pixeye.pixeye-theme" +colors: + bg: "#FAFAFA" + fg: "#766E6B" + black: "#FAFAFA" + red: "#766E6B" + green: "#766E6B" + yellow: "#766E6B" + blue: "#766E6B" + magenta: "#766E6B" + cyan: "#766E6B" + white: "#FAFAFA" + brightBlack: "#766E6B" + brightRed: "#766E6B" + brightGreen: "#766E6B" + brightYellow: "#766E6B" + brightBlue: "#766E6B" + brightMagenta: "#766E6B" + brightCyan: "#766E6B" + brightWhite: "#FAFAFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 71.5 + black: 0 + red: 71.5 + green: 71.5 + yellow: 71.5 + blue: 71.5 + magenta: 71.5 + cyan: 71.5 + white: 0 + brightBlack: 71.5 + brightRed: 71.5 + brightGreen: 71.5 + brightYellow: 71.5 + brightBlue: 71.5 + brightMagenta: 71.5 + brightCyan: 71.5 + brightWhite: 0 diff --git a/themes/pizarra.yaml b/themes/pizarra.yaml new file mode 100644 index 00000000..06b1505e --- /dev/null +++ b/themes/pizarra.yaml @@ -0,0 +1,49 @@ +name: "Pizarra" +source: + marketplace_id: "afgomez.pizarra" + version: "0.2.1" + installs: 278 + author: "Alejandro Fernández" + repo: "http://github.com/afgomez/pizarra.vscode" + url: "https://marketplace.visualstudio.com/items?itemName=afgomez.pizarra" +colors: + bg: "#171717" + fg: "#FFFFFF" + black: "#000000" + red: "#EF3E30" + green: "#9CDD2D" + yellow: "#EED130" + blue: "#407CA5" + magenta: "#E469A7" + cyan: "#90C8DA" + white: "#DCDCDC" + brightBlack: "#515151" + brightRed: "#FF7F75" + brightGreen: "#C3F470" + brightYellow: "#FFEC81" + brightBlue: "#95BFDD" + brightMagenta: "#FABADA" + brightCyan: "#C1E4F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 106.9 + black: 0 + red: 35.9 + green: 73.7 + yellow: 78.1 + blue: 29.4 + magenta: 43.9 + cyan: 67.3 + white: 84.4 + brightBlack: 13.6 + brightRed: 53.2 + brightGreen: 89.4 + brightYellow: 93.7 + brightBlue: 64 + brightMagenta: 74.9 + brightCyan: 85.7 + brightWhite: 106.9 diff --git a/themes/plane.yaml b/themes/plane.yaml new file mode 100644 index 00000000..c5bd84c3 --- /dev/null +++ b/themes/plane.yaml @@ -0,0 +1,49 @@ +name: "Plane" +source: + marketplace_id: "Planetheme.plane-theme" + version: "4.18.0" + installs: 425 + author: "Plane theme" + repo: "https://github.com/wfpaisa/plane-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Planetheme.plane-theme" +colors: + bg: "#222635" + fg: "#FFFFFF" + black: "#7A7A7A" + red: "#FF84BD" + green: "#72F9C8" + yellow: "#FFF6B5" + blue: "#8EDFFF" + magenta: "#BDA2E8" + cyan: "#8EDFFF" + white: "#FFFFFF" + brightBlack: "#9A9A9A" + brightRed: "#FF1A72" + brightGreen: "#37E888" + brightYellow: "#FFEF7C" + brightBlue: "#2990FA" + brightMagenta: "#8750DE" + brightCyan: "#2990FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 273 + contrast: + fg: 104.7 + black: 28.7 + red: 54.8 + green: 85.8 + yellow: 97.5 + blue: 77.4 + magenta: 55.5 + cyan: 77.4 + white: 104.7 + brightBlack: 44.5 + brightRed: 36 + brightGreen: 73 + brightYellow: 92.8 + brightBlue: 39.3 + brightMagenta: 24.7 + brightCyan: 39.3 + brightWhite: 104.7 diff --git a/themes/plantillathemes.yaml b/themes/plantillathemes.yaml new file mode 100644 index 00000000..6df01f8f --- /dev/null +++ b/themes/plantillathemes.yaml @@ -0,0 +1,49 @@ +name: "PlantillaThemes" +source: + marketplace_id: "YesCode.inspiration" + version: "0.0.19" + installs: 1076 + author: "YesCode" + repo: "https://github.com/yesomac/inspiration_themevsc" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" +colors: + bg: "#020F31" + fg: "#FFFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#0687FF" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 107.2 + black: 0 + red: 42.3 + green: 61.3 + yellow: 73.3 + blue: 47.8 + magenta: 19.8 + cyan: 49.7 + white: 47.5 + brightBlack: 18.9 + brightRed: 42.3 + brightGreen: 38.7 + brightYellow: 80 + brightBlue: 19 + brightMagenta: 19.8 + brightCyan: 49.7 + brightWhite: 99.1 diff --git a/themes/plasma-pink.yaml b/themes/plasma-pink.yaml new file mode 100644 index 00000000..2fd7709c --- /dev/null +++ b/themes/plasma-pink.yaml @@ -0,0 +1,49 @@ +name: "Plasma Pink" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 358 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" +colors: + bg: "#1A0A1A" + fg: "#FFE0FF" + black: "#000000" + red: "#FF1493" + green: "#FF69B4" + yellow: "#FFC0CB" + blue: "#DA70D6" + magenta: "#FF00FF" + cyan: "#DDA0DD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF69B4" + brightGreen: "#FFB6C1" + brightYellow: "#FFE4E1" + brightBlue: "#EE82EE" + brightMagenta: "#FF40FF" + brightCyan: "#F0E0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 327 + contrast: + fg: 93.3 + black: 0 + red: 39.6 + green: 50.6 + yellow: 77.8 + blue: 46.6 + magenta: 45.7 + cyan: 61.5 + white: 107.4 + brightBlack: 22.5 + brightRed: 50.6 + brightGreen: 73.7 + brightYellow: 93.6 + brightBlue: 56.3 + brightMagenta: 48.6 + brightCyan: 91.1 + brightWhite: 107.4 diff --git a/themes/plasticine.yaml b/themes/plasticine.yaml new file mode 100644 index 00000000..6dd7f7db --- /dev/null +++ b/themes/plasticine.yaml @@ -0,0 +1,49 @@ +name: "Plasticine" +source: + marketplace_id: "myxlxal.plasticine" + version: "0.7.1" + installs: 845 + author: "Myxlxal" + repo: "https://github.com/OlegKrechkovskiy/plasticine" + url: "https://marketplace.visualstudio.com/items?itemName=myxlxal.plasticine" +colors: + bg: "#21252B" + fg: "#A9B2C3" + black: "#5F6672" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#B57EDC" + cyan: "#56B6C2" + white: "#A9B2C3" + brightBlack: "#5F6672" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#B57EDC" + brightCyan: "#56B6C2" + brightWhite: "#A9B2C3" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + contrast: + fg: 57.5 + black: 20 + red: 40.2 + green: 60.4 + yellow: 68.7 + blue: 52.8 + magenta: 42.3 + cyan: 52.7 + white: 57.5 + brightBlack: 20 + brightRed: 40.2 + brightGreen: 60.4 + brightYellow: 68.7 + brightBlue: 52.8 + brightMagenta: 42.3 + brightCyan: 52.7 + brightWhite: 57.5 diff --git a/themes/plasticman.yaml b/themes/plasticman.yaml new file mode 100644 index 00000000..9565521b --- /dev/null +++ b/themes/plasticman.yaml @@ -0,0 +1,49 @@ +name: "Plasticman" +source: + marketplace_id: "silvncr.plasticman" + version: "0.1.1" + installs: 101 + author: "silvncr" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=silvncr.plasticman" +colors: + bg: "#1F1F47" + fg: "#EA5C00" + black: "#1F1F47" + red: "#FA0DEA" + green: "#676FAF" + yellow: "#FF2592" + blue: "#605A8F" + magenta: "#B3BEB6" + cyan: "#3D8EF3" + white: "#EC0076" + brightBlack: "#0B347C" + brightRed: "#FFF400" + brightGreen: "#37B45A" + brightYellow: "#F3F3F3" + brightBlue: "#7E7CB3" + brightMagenta: "#F0933D" + brightCyan: "#992293" + brightWhite: "#BD1B0F" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 37.5 + black: 0 + red: 40.8 + green: 26.3 + yellow: 38 + blue: 18 + magenta: 63 + cyan: 39 + white: 31.5 + brightBlack: 0 + brightRed: 94.6 + brightGreen: 47.5 + brightYellow: 97.2 + brightBlue: 32.7 + brightMagenta: 53.3 + brightCyan: 16.2 + brightWhite: 19.6 diff --git a/themes/platzi-theme.yaml b/themes/platzi-theme.yaml new file mode 100644 index 00000000..1144d121 --- /dev/null +++ b/themes/platzi-theme.yaml @@ -0,0 +1,49 @@ +name: "Platzi Theme" +source: + marketplace_id: "YesCode.platzi-theme" + version: "0.0.9" + installs: 1686 + author: "YesCode" + repo: "https://github.com/yesomac/platziTheme" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.platzi-theme" +colors: + bg: "#03091E" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#A5DB8B" + brightYellow: "#7FAB3E" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 265 + contrast: + fg: 105.3 + black: 0 + red: 42.8 + green: 61.8 + yellow: 73.8 + blue: 48.3 + magenta: 20.3 + cyan: 50.2 + white: 48 + brightBlack: 19.4 + brightRed: 42.8 + brightGreen: 75.7 + brightYellow: 49.5 + brightBlue: 19.5 + brightMagenta: 20.3 + brightCyan: 50.2 + brightWhite: 99.6 diff --git a/themes/playground-theme-dark.yaml b/themes/playground-theme-dark.yaml new file mode 100644 index 00000000..efe45ea2 --- /dev/null +++ b/themes/playground-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Playground Theme Dark" +source: + marketplace_id: "zer0deck.playground-theme-dark" + version: "1.0.0" + installs: 226 + author: "zer0deck" + repo: "https://github.com/zer0deck/Playground-Themes-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=zer0deck.playground-theme-dark" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#35BB9B" + yellow: "#E5E510" + blue: "#4B89DA" + magenta: "#BC3FBC" + cyan: "#4CABD7" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#62DDBD" + brightYellow: "#F5F543" + brightBlue: "#5E9CEA" + brightMagenta: "#D670D6" + brightCyan: "#5DBEE6" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 53.2 + yellow: 84.8 + blue: 36.9 + magenta: 28.9 + cyan: 49.8 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 72 + brightYellow: 94.8 + brightBlue: 45.9 + brightMagenta: 44.5 + brightCyan: 59.4 + brightWhite: 89.2 diff --git a/themes/playground-theme.yaml b/themes/playground-theme.yaml new file mode 100644 index 00000000..ce05de69 --- /dev/null +++ b/themes/playground-theme.yaml @@ -0,0 +1,49 @@ +name: "Playground Theme" +source: + marketplace_id: "zer0deck.playground-theme-light" + version: "1.0.0" + installs: 242 + author: "zer0deck" + repo: "https://github.com/zer0deck/Playground-Themes-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=zer0deck.playground-theme-light" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#D94452" + green: "#35BB9B" + yellow: "#F6BA45" + blue: "#4B89DA" + magenta: "#967ADA" + cyan: "#4CABD7" + white: "#424953" + brightBlack: "#666666" + brightRed: "#EC5564" + brightGreen: "#35BB9B" + brightYellow: "#F6BA45" + brightBlue: "#5E9CEA" + brightMagenta: "#D670AC" + brightCyan: "#5DBEE6" + brightWhite: "#646C77" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 106 + black: 106 + red: 68.5 + green: 47 + yellow: 31.6 + blue: 63 + magenta: 61.9 + cyan: 50.3 + white: 90.9 + brightBlack: 78.8 + brightRed: 61.3 + brightGreen: 47 + brightYellow: 31.6 + brightBlue: 54.1 + brightMagenta: 57.6 + brightCyan: 41 + brightWhite: 76.4 diff --git a/themes/playground.yaml b/themes/playground.yaml new file mode 100644 index 00000000..31fe8126 --- /dev/null +++ b/themes/playground.yaml @@ -0,0 +1,49 @@ +name: "Playground" +source: + marketplace_id: "KidTokio.playground-academy-theme" + version: "0.0.3" + installs: 50 + author: "KidTokio" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=KidTokio.playground-academy-theme" +colors: + bg: "#16141B" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 298 + contrast: + fg: 107.1 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/pleasure-contrast.yaml b/themes/pleasure-contrast.yaml new file mode 100644 index 00000000..ea12662c --- /dev/null +++ b/themes/pleasure-contrast.yaml @@ -0,0 +1,49 @@ +name: "pleasure-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#17191C" + fg: "#C0CCDB" + black: "#23262A" + red: "#BA0E2E" + green: "#A175BA" + yellow: "#DD5D7A" + blue: "#A1CBC6" + magenta: "#DD5D7A" + cyan: "#A1CBC6" + white: "#D0D9E4" + brightBlack: "#454B54" + brightRed: "#F03E5F" + brightGreen: "#CFB9DC" + brightYellow: "#EFB1BF" + brightBlue: "#E3EFEE" + brightMagenta: "#EFB1BF" + brightCyan: "#E3EFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.7 + black: 0 + red: 20.3 + green: 36.6 + yellow: 38.1 + blue: 69 + magenta: 38.1 + cyan: 69 + white: 81.7 + brightBlack: 10.9 + brightRed: 36.6 + brightGreen: 67.8 + brightYellow: 68.3 + brightBlue: 94.6 + brightMagenta: 68.3 + brightCyan: 94.6 + brightWhite: 106.7 diff --git a/themes/pleasure-light.yaml b/themes/pleasure-light.yaml new file mode 100644 index 00000000..844b7714 --- /dev/null +++ b/themes/pleasure-light.yaml @@ -0,0 +1,49 @@ +name: "pleasure-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#474E56" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#A175BA" + yellow: "#DD5D7A" + blue: "#A1CBC6" + magenta: "#DD5D7A" + cyan: "#A1CBC6" + white: "#535B64" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#CFB9DC" + brightYellow: "#EFB1BF" + brightBlue: "#E3EFEE" + brightMagenta: "#EFB1BF" + brightCyan: "#E3EFEE" + brightWhite: "#76818D" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 89.1 + black: 0 + red: 80.3 + green: 63.9 + yellow: 62.4 + blue: 32.5 + magenta: 62.4 + cyan: 32.5 + white: 83.8 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 33.6 + brightYellow: 33.1 + brightBlue: 8.5 + brightMagenta: 33.1 + brightCyan: 8.5 + brightWhite: 67 diff --git a/themes/pleasure.yaml b/themes/pleasure.yaml new file mode 100644 index 00000000..23944fa7 --- /dev/null +++ b/themes/pleasure.yaml @@ -0,0 +1,49 @@ +name: "pleasure" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#32373D" + fg: "#C0CCDB" + black: "#3D444B" + red: "#BA0E2E" + green: "#A175BA" + yellow: "#DD5D7A" + blue: "#A1CBC6" + magenta: "#DD5D7A" + cyan: "#A1CBC6" + white: "#D0D9E4" + brightBlack: "#606A75" + brightRed: "#F03E5F" + brightGreen: "#CFB9DC" + brightYellow: "#EFB1BF" + brightBlue: "#E3EFEE" + brightMagenta: "#EFB1BF" + brightCyan: "#E3EFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + contrast: + fg: 68 + black: 0 + red: 14.7 + green: 31 + yellow: 32.5 + blue: 63.4 + magenta: 32.5 + cyan: 63.4 + white: 76.1 + brightBlack: 17.4 + brightRed: 31 + brightGreen: 62.2 + brightYellow: 62.7 + brightBlue: 88.9 + brightMagenta: 62.7 + brightCyan: 88.9 + brightWhite: 101 diff --git a/themes/plotka-amethyst.yaml b/themes/plotka-amethyst.yaml new file mode 100644 index 00000000..02b1f7a0 --- /dev/null +++ b/themes/plotka-amethyst.yaml @@ -0,0 +1,49 @@ +name: "Plotka Amethyst" +source: + marketplace_id: "vilopesp.plotka-theme" + version: "1.6.1" + installs: 1409 + author: "Vitoria Lopes" + repo: "https://github.com/vilopesp/plotka-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vilopesp.plotka-theme" +colors: + bg: "#141414" + fg: "#F8F8F2" + black: "#222222" + red: "#F52E01" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#686868" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#4D4C4B" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#686868" + brightMagenta: "#686868" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 102.2 + black: 0 + red: 35.8 + green: 85.2 + yellow: 98.8 + blue: 53.9 + magenta: 23.2 + cyan: 84.2 + white: 102.2 + brightBlack: 12 + brightRed: 49.1 + brightGreen: 89.3 + brightYellow: 103.8 + brightBlue: 23.2 + brightMagenta: 23.2 + brightCyan: 97 + brightWhite: 107.1 diff --git a/themes/pls-my-eyes-sir.yaml b/themes/pls-my-eyes-sir.yaml new file mode 100644 index 00000000..1e1ea1e8 --- /dev/null +++ b/themes/pls-my-eyes-sir.yaml @@ -0,0 +1,49 @@ +name: "pls my eyes sir" +source: + marketplace_id: "KingMika.plsmyeyes" + version: "1.0.0" + installs: 44 + author: "King Mika" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=KingMika.plsmyeyes" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D1D1D1" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 78.7 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/plurpelvsc.yaml b/themes/plurpelvsc.yaml new file mode 100644 index 00000000..1ebcf687 --- /dev/null +++ b/themes/plurpelvsc.yaml @@ -0,0 +1,49 @@ +name: "PlurpelVSC" +source: + marketplace_id: "JhonLikesFloppa.plurpel" + version: "2.1.0" + installs: 715 + author: "SahalMoh" + repo: "https://github.com/Plurpel/Plurpel-VSC" + url: "https://marketplace.visualstudio.com/items?itemName=JhonLikesFloppa.plurpel" +colors: + bg: "#242038" + fg: "#F7ECE1" + black: "#242038" + red: "#E06C75" + green: "#98C379" + yellow: "#D19A66" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#F7ECE1" + brightBlack: "#CAC4CE" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#F7ECE1" +meta: + mode: "dark" + accent: "pink" + hue: 291 + contrast: + fg: 93.9 + black: 0 + red: 40.4 + green: 60.6 + yellow: 51 + blue: 53 + magenta: 43.5 + cyan: 52.9 + white: 93.9 + brightBlack: 69.5 + brightRed: 40.4 + brightGreen: 60.6 + brightYellow: 68.9 + brightBlue: 53 + brightMagenta: 43.5 + brightCyan: 52.9 + brightWhite: 93.9 diff --git a/themes/pluto-dark.yaml b/themes/pluto-dark.yaml new file mode 100644 index 00000000..b570bfe1 --- /dev/null +++ b/themes/pluto-dark.yaml @@ -0,0 +1,49 @@ +name: "Pluto Dark" +source: + marketplace_id: "plutotheme.plutotheme" + version: "0.0.6" + installs: 304 + author: "pluto theme" + repo: "https://github.com/devincapriola/pluto" + url: "https://marketplace.visualstudio.com/items?itemName=plutotheme.plutotheme" +colors: + bg: "#1B1D23" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 74 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29 + cyan: 46.8 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.8 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/po.yaml b/themes/po.yaml new file mode 100644 index 00000000..0c84d0aa --- /dev/null +++ b/themes/po.yaml @@ -0,0 +1,49 @@ +name: "po" +source: + marketplace_id: "Volskaya.irrelevant" + version: "0.0.2" + installs: 33 + author: "Volskaya" + repo: "https://github.com/volskaya/irrelevant" + url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#1C1C1C" + red: "#F9545E" + green: "#FFFF0A" + yellow: "#F9545E" + blue: "#878787" + magenta: "#979797" + cyan: "#A6A6A6" + white: "#444444" + brightBlack: "#666666" + brightRed: "#F9545E" + brightGreen: "#FFFF0A" + brightYellow: "#DDDDDD" + brightBlue: "#878787" + brightMagenta: "#979797" + brightCyan: "#A6A6A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 41.4 + green: 101.1 + yellow: 41.4 + blue: 36.6 + magenta: 44.6 + cyan: 52.5 + white: 8.3 + brightBlack: 21.5 + brightRed: 41.4 + brightGreen: 101.1 + brightYellow: 84.4 + brightBlue: 36.6 + brightMagenta: 44.6 + brightCyan: 52.5 + brightWhite: 106.3 diff --git a/themes/poimandres-dark-theme.yaml b/themes/poimandres-dark-theme.yaml new file mode 100644 index 00000000..ad333ee6 --- /dev/null +++ b/themes/poimandres-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "poimandres dark theme" +source: + marketplace_id: "brandonsaldan.pmndrs-vue" + version: "1.0.0" + installs: 4118 + author: "Brandon Saldan" + repo: "https://github.com/brandonsaldan/poimandres-vue" + url: "https://marketplace.visualstudio.com/items?itemName=brandonsaldan.pmndrs-vue" +colors: + bg: "#FEFEFF" + fg: "#969CBD" + black: "#FEFEFF" + red: "#FF2090" + green: "#01DAB2" + yellow: "#FFD467" + blue: "#8ABACD" + magenta: "#EB8394" + cyan: "#8ABACD" + white: "#000000" + brightBlack: "#969CBD" + brightRed: "#FF2090" + brightGreen: "#01DAB2" + brightYellow: "#FFD467" + brightBlue: "#0EBFFF" + brightMagenta: "#EB8394" + brightCyan: "#0EBFFF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 51.8 + black: 0 + red: 60.7 + green: 32.1 + yellow: 19.2 + blue: 40.6 + magenta: 49.2 + cyan: 40.6 + white: 105.5 + brightBlack: 51.8 + brightRed: 60.7 + brightGreen: 32.1 + brightYellow: 19.2 + brightBlue: 40.3 + brightMagenta: 49.2 + brightCyan: 40.3 + brightWhite: 105.5 diff --git a/themes/polar-black-cherry-blossom.yaml b/themes/polar-black-cherry-blossom.yaml new file mode 100644 index 00000000..fc0b0cff --- /dev/null +++ b/themes/polar-black-cherry-blossom.yaml @@ -0,0 +1,49 @@ +name: "Polar Black Cherry Blossom" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 184 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" +colors: + bg: "#000000" + fg: "#F0D6E0" + black: "#000000" + red: "#E8B0C8" + green: "#E8B0C8" + yellow: "#E8B0C8" + blue: "#E8B0C8" + magenta: "#E8B0C8" + cyan: "#E8B0C8" + white: "#E8B0C8" + brightBlack: "#5A3A4A" + brightRed: "#E8B0C8" + brightGreen: "#E8B0C8" + brightYellow: "#E8B0C8" + brightBlue: "#E8B0C8" + brightMagenta: "#E8B0C8" + brightCyan: "#E8B0C8" + brightWhite: "#E8B0C8" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 85.8 + black: 0 + red: 68.4 + green: 68.4 + yellow: 68.4 + blue: 68.4 + magenta: 68.4 + cyan: 68.4 + white: 68.4 + brightBlack: 9.8 + brightRed: 68.4 + brightGreen: 68.4 + brightYellow: 68.4 + brightBlue: 68.4 + brightMagenta: 68.4 + brightCyan: 68.4 + brightWhite: 68.4 diff --git a/themes/polar-black-green-cactus.yaml b/themes/polar-black-green-cactus.yaml new file mode 100644 index 00000000..6b106222 --- /dev/null +++ b/themes/polar-black-green-cactus.yaml @@ -0,0 +1,49 @@ +name: "Polar Black Green Cactus" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 184 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" +colors: + bg: "#000000" + fg: "#D0E8D0" + black: "#000000" + red: "#70C880" + green: "#70C880" + yellow: "#70C880" + blue: "#70C880" + magenta: "#70C880" + cyan: "#70C880" + white: "#70C880" + brightBlack: "#3A5A3A" + brightRed: "#70C880" + brightGreen: "#70C880" + brightYellow: "#70C880" + brightBlue: "#70C880" + brightMagenta: "#70C880" + brightCyan: "#70C880" + brightWhite: "#70C880" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 88.8 + black: 0 + red: 62.7 + green: 62.7 + yellow: 62.7 + blue: 62.7 + magenta: 62.7 + cyan: 62.7 + white: 62.7 + brightBlack: 15.2 + brightRed: 62.7 + brightGreen: 62.7 + brightYellow: 62.7 + brightBlue: 62.7 + brightMagenta: 62.7 + brightCyan: 62.7 + brightWhite: 62.7 diff --git a/themes/polar-black-ice.yaml b/themes/polar-black-ice.yaml new file mode 100644 index 00000000..edb29d7d --- /dev/null +++ b/themes/polar-black-ice.yaml @@ -0,0 +1,49 @@ +name: "Polar Black Ice" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 184 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" +colors: + bg: "#000000" + fg: "#D8EDF5" + black: "#000000" + red: "#B8DCE8" + green: "#B8DCE8" + yellow: "#B8DCE8" + blue: "#B8DCE8" + magenta: "#B8DCE8" + cyan: "#B8DCE8" + white: "#B8DCE8" + brightBlack: "#3E4550" + brightRed: "#B8DCE8" + brightGreen: "#B8DCE8" + brightYellow: "#B8DCE8" + brightBlue: "#B8DCE8" + brightMagenta: "#B8DCE8" + brightCyan: "#B8DCE8" + brightWhite: "#B8DCE8" +meta: + mode: "dark" + accent: "blue" + hue: null + contrast: + fg: 93.8 + black: 0 + red: 81.7 + green: 81.7 + yellow: 81.7 + blue: 81.7 + magenta: 81.7 + cyan: 81.7 + white: 81.7 + brightBlack: 10 + brightRed: 81.7 + brightGreen: 81.7 + brightYellow: 81.7 + brightBlue: 81.7 + brightMagenta: 81.7 + brightCyan: 81.7 + brightWhite: 81.7 diff --git a/themes/polar-black-less-black-smoke.yaml b/themes/polar-black-less-black-smoke.yaml new file mode 100644 index 00000000..58e83fff --- /dev/null +++ b/themes/polar-black-less-black-smoke.yaml @@ -0,0 +1,49 @@ +name: "Polar Black Less Black Smoke" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 184 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" +colors: + bg: "#101010" + fg: "#FFFFFF" + black: "#101010" + red: "#FFFFFF" + green: "#FFFFFF" + yellow: "#FFFFFF" + blue: "#FFFFFF" + magenta: "#FFFFFF" + cyan: "#FFFFFF" + white: "#FFFFFF" + brightBlack: "#444444" + brightRed: "#FFFFFF" + brightGreen: "#FFFFFF" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 107.4 + green: 107.4 + yellow: 107.4 + blue: 107.4 + magenta: 107.4 + cyan: 107.4 + white: 107.4 + brightBlack: 9.4 + brightRed: 107.4 + brightGreen: 107.4 + brightYellow: 107.4 + brightBlue: 107.4 + brightMagenta: 107.4 + brightCyan: 107.4 + brightWhite: 107.4 diff --git a/themes/polar-black-light.yaml b/themes/polar-black-light.yaml new file mode 100644 index 00000000..30972e9b --- /dev/null +++ b/themes/polar-black-light.yaml @@ -0,0 +1,49 @@ +name: "Polar Black Light" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 184 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" +colors: + bg: "#FAFAFA" + fg: "#2A2A2A" + black: "#2A2A2A" + red: "#C03848" + green: "#4A7A28" + yellow: "#A07808" + blue: "#2A5AAA" + magenta: "#7848A0" + cyan: "#1A6EA0" + white: "#FAFAFA" + brightBlack: "#888888" + brightRed: "#C03848" + brightGreen: "#4A7A28" + brightYellow: "#A07808" + brightBlue: "#1A6EA0" + brightMagenta: "#7848A0" + brightCyan: "#1A6EA0" + brightWhite: "#FAFAFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.1 + black: 98.1 + red: 72.7 + green: 72.1 + yellow: 64.5 + blue: 79.6 + magenta: 78.9 + cyan: 74.3 + white: 0 + brightBlack: 60.1 + brightRed: 72.7 + brightGreen: 72.1 + brightYellow: 64.5 + brightBlue: 74.3 + brightMagenta: 78.9 + brightCyan: 74.3 + brightWhite: 0 diff --git a/themes/polar-black-red.yaml b/themes/polar-black-red.yaml new file mode 100644 index 00000000..6e55073d --- /dev/null +++ b/themes/polar-black-red.yaml @@ -0,0 +1,49 @@ +name: "Polar Black Red" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 184 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" +colors: + bg: "#000000" + fg: "#E8D0D0" + black: "#000000" + red: "#D04040" + green: "#D04040" + yellow: "#D04040" + blue: "#D04040" + magenta: "#D04040" + cyan: "#D04040" + white: "#D04040" + brightBlack: "#5A3838" + brightRed: "#D04040" + brightGreen: "#D04040" + brightYellow: "#D04040" + brightBlue: "#D04040" + brightMagenta: "#D04040" + brightCyan: "#D04040" + brightWhite: "#D04040" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81.4 + black: 0 + red: 30.3 + green: 30.3 + yellow: 30.3 + blue: 30.3 + magenta: 30.3 + cyan: 30.3 + white: 30.3 + brightBlack: 8.9 + brightRed: 30.3 + brightGreen: 30.3 + brightYellow: 30.3 + brightBlue: 30.3 + brightMagenta: 30.3 + brightCyan: 30.3 + brightWhite: 30.3 diff --git a/themes/polar-black-savanna.yaml b/themes/polar-black-savanna.yaml new file mode 100644 index 00000000..804b002d --- /dev/null +++ b/themes/polar-black-savanna.yaml @@ -0,0 +1,49 @@ +name: "Polar Black Savanna" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 184 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" +colors: + bg: "#000000" + fg: "#E8DCC8" + black: "#000000" + red: "#D8A858" + green: "#D8A858" + yellow: "#D8A858" + blue: "#D8A858" + magenta: "#D8A858" + cyan: "#D8A858" + white: "#D8A858" + brightBlack: "#5A5040" + brightRed: "#D8A858" + brightGreen: "#D8A858" + brightYellow: "#D8A858" + brightBlue: "#D8A858" + brightMagenta: "#D8A858" + brightCyan: "#D8A858" + brightWhite: "#D8A858" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 86.2 + black: 0 + red: 59.6 + green: 59.6 + yellow: 59.6 + blue: 59.6 + magenta: 59.6 + cyan: 59.6 + white: 59.6 + brightBlack: 14.7 + brightRed: 59.6 + brightGreen: 59.6 + brightYellow: 59.6 + brightBlue: 59.6 + brightMagenta: 59.6 + brightCyan: 59.6 + brightWhite: 59.6 diff --git a/themes/polar-black.yaml b/themes/polar-black.yaml new file mode 100644 index 00000000..d4d11cee --- /dev/null +++ b/themes/polar-black.yaml @@ -0,0 +1,49 @@ +name: "Polar Black" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 184 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FFFFFF" + green: "#FFFFFF" + yellow: "#FFFFFF" + blue: "#FFFFFF" + magenta: "#FFFFFF" + cyan: "#FFFFFF" + white: "#FFFFFF" + brightBlack: "#444444" + brightRed: "#FFFFFF" + brightGreen: "#FFFFFF" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 107.9 + green: 107.9 + yellow: 107.9 + blue: 107.9 + magenta: 107.9 + cyan: 107.9 + white: 107.9 + brightBlack: 9.8 + brightRed: 107.9 + brightGreen: 107.9 + brightYellow: 107.9 + brightBlue: 107.9 + brightMagenta: 107.9 + brightCyan: 107.9 + brightWhite: 107.9 diff --git a/themes/polar-ice-dark.yaml b/themes/polar-ice-dark.yaml new file mode 100644 index 00000000..e366c3c7 --- /dev/null +++ b/themes/polar-ice-dark.yaml @@ -0,0 +1,49 @@ +name: "Polar Ice Dark" +source: + marketplace_id: "hbarcelos.theme-polar-ice-vscode" + version: "2.4.0" + installs: 1103 + author: "Henrique Barcelos" + repo: "https://github.com/hbarcelos/polar-ice-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=hbarcelos.theme-polar-ice-vscode" +colors: + bg: "#44484F" + fg: "#C7F3FF" + black: "#44484F" + red: "#F59597" + green: "#C8F29D" + yellow: "#F2DB94" + blue: "#94CEF2" + magenta: "#F79CE0" + cyan: "#94F2DD" + white: "#B4DBE6" + brightBlack: "#576068" + brightRed: "#F2B494" + brightGreen: "#94F2DD" + brightYellow: "#F2DB94" + brightBlue: "#94CEF2" + brightMagenta: "#F79CE0" + brightCyan: "#94F2DD" + brightWhite: "#C7F3FF" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 82.8 + black: 0 + red: 47.2 + green: 78.6 + yellow: 73.2 + blue: 60.2 + magenta: 52.9 + cyan: 76.1 + white: 68.4 + brightBlack: 7.7 + brightRed: 57.3 + brightGreen: 76.1 + brightYellow: 73.2 + brightBlue: 60.2 + brightMagenta: 52.9 + brightCyan: 76.1 + brightWhite: 82.8 diff --git a/themes/polar-ice-light.yaml b/themes/polar-ice-light.yaml new file mode 100644 index 00000000..9a77a7c1 --- /dev/null +++ b/themes/polar-ice-light.yaml @@ -0,0 +1,49 @@ +name: "Polar Ice Light" +source: + marketplace_id: "hbarcelos.theme-polar-ice-vscode" + version: "2.4.0" + installs: 1103 + author: "Henrique Barcelos" + repo: "https://github.com/hbarcelos/polar-ice-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=hbarcelos.theme-polar-ice-vscode" +colors: + bg: "#DBF7FF" + fg: "#3E444F" + black: "#DBF7FF" + red: "#E11418" + green: "#61AB16" + yellow: "#D2A623" + blue: "#34A4E7" + magenta: "#CC52AD" + cyan: "#06B38B" + white: "#545E68" + brightBlack: "#C5DDE6" + brightRed: "#E0530D" + brightGreen: "#06B38B" + brightYellow: "#D2A623" + brightBlue: "#34A4E7" + brightMagenta: "#CC52AD" + brightCyan: "#06B38B" + brightWhite: "#3E444F" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 85 + black: 0 + red: 63.6 + green: 46.7 + yellow: 37 + blue: 45.1 + magenta: 58 + cyan: 43.7 + white: 75 + brightBlack: 12.2 + brightRed: 57.5 + brightGreen: 43.7 + brightYellow: 37 + brightBlue: 45.1 + brightMagenta: 58 + brightCyan: 43.7 + brightWhite: 85 diff --git a/themes/polar-light.yaml b/themes/polar-light.yaml new file mode 100644 index 00000000..e7fc4df5 --- /dev/null +++ b/themes/polar-light.yaml @@ -0,0 +1,49 @@ +name: "Polar Light" +source: + marketplace_id: "postnumbers.polar-themes" + version: "0.0.8" + installs: 36 + author: "Postnumbers" + repo: "https://github.com/postnumbers/polar-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.polar-themes" +colors: + bg: "#FFFFFF" + fg: "#2E3440" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 98.4 + black: 106 + red: 74 + green: 48 + yellow: 17 + blue: 73.3 + magenta: 70.9 + cyan: 53.3 + white: 12.9 + brightBlack: 78.8 + brightRed: 62.1 + brightGreen: 37.9 + brightYellow: 7.7 + brightBlue: 60.7 + brightMagenta: 55.4 + brightCyan: 45.7 + brightWhite: 12.9 diff --git a/themes/polar-midnight.yaml b/themes/polar-midnight.yaml new file mode 100644 index 00000000..3aabe04b --- /dev/null +++ b/themes/polar-midnight.yaml @@ -0,0 +1,49 @@ +name: "Polar Midnight" +source: + marketplace_id: "postnumbers.polar-themes" + version: "0.0.8" + installs: 36 + author: "Postnumbers" + repo: "https://github.com/postnumbers/polar-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.polar-themes" +colors: + bg: "#000000" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.4 + black: 9.1 + red: 34 + green: 62.7 + yellow: 77.4 + blue: 49.7 + magenta: 47.5 + cyan: 63.7 + white: 93.4 + brightBlack: 16.4 + brightRed: 34 + brightGreen: 62.7 + brightYellow: 77.4 + brightBlue: 49.7 + brightMagenta: 47.5 + brightCyan: 61.6 + brightWhite: 97.2 diff --git a/themes/polar-night.yaml b/themes/polar-night.yaml new file mode 100644 index 00000000..ef25b56b --- /dev/null +++ b/themes/polar-night.yaml @@ -0,0 +1,49 @@ +name: "Polar Night" +source: + marketplace_id: "postnumbers.polar-themes" + version: "0.0.8" + installs: 36 + author: "Postnumbers" + repo: "https://github.com/postnumbers/polar-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.polar-themes" +colors: + bg: "#191D24" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 84.7 + black: 7.4 + red: 32.3 + green: 61 + yellow: 75.7 + blue: 48 + magenta: 45.8 + cyan: 62 + white: 91.7 + brightBlack: 14.7 + brightRed: 32.3 + brightGreen: 61 + brightYellow: 75.7 + brightBlue: 48 + brightMagenta: 45.8 + brightCyan: 59.9 + brightWhite: 95.5 diff --git a/themes/polar.yaml b/themes/polar.yaml new file mode 100644 index 00000000..03a53134 --- /dev/null +++ b/themes/polar.yaml @@ -0,0 +1,49 @@ +name: "Polar" +source: + marketplace_id: "merithayan.polar" + version: "0.1.1" + installs: 5887 + author: "Tim Hull" + repo: "https://www.github.com/mtyn/polar" + url: "https://marketplace.visualstudio.com/items?itemName=merithayan.polar" +colors: + bg: "#F9FAFB" + fg: "#4C566A" + black: "#ECEFF4" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#D8DEE9" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#3B4252" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 82.6 + black: 0 + red: 64.6 + green: 36.6 + yellow: 22.6 + blue: 49.1 + magenta: 51.3 + cyan: 35.6 + white: 7.7 + brightBlack: 14.2 + brightRed: 64.6 + brightGreen: 36.6 + brightYellow: 22.6 + brightBlue: 49.1 + brightMagenta: 51.3 + brightCyan: 37.6 + brightWhite: 90.3 diff --git a/themes/polish.yaml b/themes/polish.yaml new file mode 100644 index 00000000..159ab81d --- /dev/null +++ b/themes/polish.yaml @@ -0,0 +1,49 @@ +name: "Polish" +source: + marketplace_id: "zhiking.polish-theme" + version: "0.0.5" + installs: 2261 + author: "zhiking" + repo: "https://github.com/zyj1022/vscode-polish-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zhiking.polish-theme" +colors: + bg: "#F4F4F4" + fg: "#5C6066" + black: "#000000" + red: "#FF83AC" + green: "#77CC00" + yellow: "#F29718" + blue: "#53C0F6" + magenta: "#9966CC" + cyan: "#12B886" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#D6656A" + brightGreen: "#A3D900" + brightYellow: "#E7C547" + brightBlue: "#6871FF" + brightMagenta: "#A37ACC" + brightCyan: "#57D9AD" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 74.9 + black: 99.5 + red: 38.5 + green: 32.2 + yellow: 38 + blue: 33.1 + magenta: 61.3 + cyan: 42.8 + white: 23.5 + brightBlack: 71.3 + brightRed: 55.9 + brightGreen: 23 + brightYellow: 23.2 + brightBlue: 59.4 + brightMagenta: 54.6 + brightCyan: 25.3 + brightWhite: 0 diff --git a/themes/polychrome-dark.yaml b/themes/polychrome-dark.yaml new file mode 100644 index 00000000..5a8bb3fa --- /dev/null +++ b/themes/polychrome-dark.yaml @@ -0,0 +1,49 @@ +name: "Polychrome Dark" +source: + marketplace_id: "cdonohue.polychrome-vscode-themes" + version: "1.0.0" + installs: 6861 + author: "Chad Donohue" + repo: "https://github.com/cdonohue/polychrome-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=cdonohue.polychrome-vscode-themes" +colors: + bg: "#2A2833" + fg: "#BBB4D8" + black: "#484459" + red: "#FF6347" + green: "#A59CCC" + yellow: "#FFE685" + blue: "#BBB4D8" + magenta: "#FFE685" + cyan: "#767092" + white: "#F5F5F5" + brightBlack: "#B7A870" + brightRed: "#FFE685" + brightGreen: "#A59CCC" + brightYellow: "#B7A870" + brightBlue: "#D2CDE5" + brightMagenta: "#B7A870" + brightCyan: "#D2CDE5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 293 + contrast: + fg: 60.6 + black: 0 + red: 43.1 + green: 48.2 + yellow: 88.4 + blue: 60.6 + magenta: 88.4 + cyan: 25.6 + white: 97.6 + brightBlack: 51.6 + brightRed: 88.4 + brightGreen: 48.2 + brightYellow: 51.6 + brightBlue: 74.3 + brightMagenta: 51.6 + brightCyan: 74.3 + brightWhite: 104.2 diff --git a/themes/polychrome-light.yaml b/themes/polychrome-light.yaml new file mode 100644 index 00000000..2a4d706f --- /dev/null +++ b/themes/polychrome-light.yaml @@ -0,0 +1,49 @@ +name: "Polychrome Light" +source: + marketplace_id: "cdonohue.polychrome-vscode-themes" + version: "1.0.0" + installs: 6861 + author: "Chad Donohue" + repo: "https://github.com/cdonohue/polychrome-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=cdonohue.polychrome-vscode-themes" +colors: + bg: "#FBFAF9" + fg: "#502DB4" + black: "#D1C2F9" + red: "#F42A2A" + green: "#6B3DF1" + yellow: "#A97E50" + blue: "#502DB4" + magenta: "#A97E50" + cyan: "#9E7FF5" + white: "#F5F5F5" + brightBlack: "#BDA58C" + brightRed: "#A97E50" + brightGreen: "#6B3DF1" + brightYellow: "#BDA58C" + brightBlue: "#351E78" + brightMagenta: "#BDA58C" + brightCyan: "#351E78" + brightWhite: "#000000" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 86.4 + black: 25.5 + red: 62.6 + green: 75.6 + yellow: 60.9 + blue: 86.4 + magenta: 60.9 + cyan: 54.7 + white: 0 + brightBlack: 43.5 + brightRed: 60.9 + brightGreen: 75.6 + brightYellow: 43.5 + brightBlue: 95.8 + brightMagenta: 43.5 + brightCyan: 95.8 + brightWhite: 103.1 diff --git a/themes/polygopher-theme.yaml b/themes/polygopher-theme.yaml new file mode 100644 index 00000000..b8683c8c --- /dev/null +++ b/themes/polygopher-theme.yaml @@ -0,0 +1,49 @@ +name: "PolyGopher Theme" +source: + marketplace_id: "Safak.poly-gopher-dark-blue" + version: "1.0.0" + installs: 86 + author: "Safak" + repo: "https://github.com/safak7/poly-gopher-dark-blue" + url: "https://marketplace.visualstudio.com/items?itemName=Safak.poly-gopher-dark-blue" +colors: + bg: "#000000" + fg: "#00ADD8" + black: "#A3A3A3" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 51.2 + black: 52.5 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 107.9 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/polykai.yaml b/themes/polykai.yaml new file mode 100644 index 00000000..888ee8b8 --- /dev/null +++ b/themes/polykai.yaml @@ -0,0 +1,49 @@ +name: "Polykai" +source: + marketplace_id: "adamgraham.polykai-theme" + version: "1.0.1" + installs: 16964 + author: "Adam Graham" + repo: "https://github.com/adamgraham/polykai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=adamgraham.polykai-theme" +colors: + bg: "#141818" + fg: "#F8F8F8" + black: "#909090" + red: "#FF0060" + green: "#A0FF20" + yellow: "#FFE080" + blue: "#6080FF" + magenta: "#C080FF" + cyan: "#40C4FF" + white: "#F8F8F8" + brightBlack: "#909090" + brightRed: "#FF0060" + brightGreen: "#A0FF20" + brightYellow: "#FFE080" + brightBlue: "#6080FF" + brightMagenta: "#C080FF" + brightCyan: "#40C4FF" + brightWhite: "#F8F8F8" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 102.2 + black: 41.6 + red: 37.4 + green: 91 + yellow: 88.3 + blue: 38.6 + magenta: 48.7 + cyan: 63.3 + white: 102.2 + brightBlack: 41.6 + brightRed: 37.4 + brightGreen: 91 + brightYellow: 88.3 + brightBlue: 38.6 + brightMagenta: 48.7 + brightCyan: 63.3 + brightWhite: 102.2 diff --git a/themes/polymath.yaml b/themes/polymath.yaml new file mode 100644 index 00000000..d2b8e2dd --- /dev/null +++ b/themes/polymath.yaml @@ -0,0 +1,49 @@ +name: "Polymath" +source: + marketplace_id: "Polymath.polymath" + version: "1.0.0" + installs: 23 + author: "Polymath" + repo: "https://github.com/polymath-com/theme.git#main" + url: "https://marketplace.visualstudio.com/items?itemName=Polymath.polymath" +colors: + bg: "#000000" + fg: "#808080" + black: "#404040" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 34.8 + black: 8.5 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/pookie-dark.yaml b/themes/pookie-dark.yaml new file mode 100644 index 00000000..14c2a43c --- /dev/null +++ b/themes/pookie-dark.yaml @@ -0,0 +1,49 @@ +name: "pookie dark" +source: + marketplace_id: "Jyototheworld.jyototheworld" + version: "1.0.7" + installs: 163 + author: "Jyototheworld" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Jyototheworld.jyototheworld" +colors: + bg: "#000000" + fg: "#FFC1C1" + black: "#FFBDBD" + red: "#DB8989" + green: "#FF5AED" + yellow: "#EC66FF" + blue: "#F5508D" + magenta: "#BC3FBC" + cyan: "#FF0B89" + white: "#E5E5E5" + brightBlack: "#FF4545" + brightRed: "#E66B6B" + brightGreen: "#CE77D5" + brightYellow: "#A13DB0" + brightBlue: "#EA3BBE" + brightMagenta: "#D670D6" + brightCyan: "#FFA3EC" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 78.3 + black: 76.6 + red: 50.7 + green: 51.4 + yellow: 51 + blue: 42.7 + magenta: 30.8 + cyan: 39.6 + white: 91 + brightBlack: 41.8 + brightRed: 43.8 + brightGreen: 46.7 + brightYellow: 25 + brightBlue: 39.7 + brightMagenta: 46.4 + brightCyan: 69.6 + brightWhite: 91 diff --git a/themes/poolside.yaml b/themes/poolside.yaml new file mode 100644 index 00000000..81e9e812 --- /dev/null +++ b/themes/poolside.yaml @@ -0,0 +1,49 @@ +name: "Poolside" +source: + marketplace_id: "nsgrantham.poolside" + version: "1.2.0" + installs: 695 + author: "nsgrantham" + repo: "https://github.com/nsgrantham/poolside-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=nsgrantham.poolside" +colors: + bg: "#1F1B36" + fg: "#F0F0FC" + black: "#5C4FB0" + red: "#F797AF" + green: "#CBF78D" + yellow: "#F7CD92" + blue: "#979FF7" + magenta: "#EF97F7" + cyan: "#92EFF7" + white: "#F0F0FC" + brightBlack: "#5C4FB0" + brightRed: "#F797AF" + brightGreen: "#CBF78D" + brightYellow: "#F7CD92" + brightBlue: "#979FF7" + brightMagenta: "#EF97F7" + brightCyan: "#92EFF7" + brightWhite: "#F0F0FC" +meta: + mode: "dark" + accent: "pink" + hue: 289 + contrast: + fg: 96.6 + black: 17.7 + red: 59.4 + green: 91.4 + yellow: 78.3 + blue: 52.2 + magenta: 61.6 + cyan: 86.1 + white: 96.6 + brightBlack: 17.7 + brightRed: 59.4 + brightGreen: 91.4 + brightYellow: 78.3 + brightBlue: 52.2 + brightMagenta: 61.6 + brightCyan: 86.1 + brightWhite: 96.6 diff --git a/themes/pop-os-cosmic.yaml b/themes/pop-os-cosmic.yaml new file mode 100644 index 00000000..2b77ed79 --- /dev/null +++ b/themes/pop-os-cosmic.yaml @@ -0,0 +1,49 @@ +name: "Pop OS Cosmic" +source: + marketplace_id: "Feiron.cosmic-pop-dark" + version: "0.1.1" + installs: 814 + author: "Feiron" + repo: "https://github.com/pawelrogowski/cosmic-pop-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Feiron.cosmic-pop-dark" +colors: + bg: "#262626" + fg: "#A0A4A5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 49.5 + black: 0 + red: 24.6 + green: 50.9 + yellow: 83.5 + blue: 25.3 + magenta: 27.7 + cyan: 45.5 + white: 104.8 + brightBlack: 20 + brightRed: 36.5 + brightGreen: 61.5 + brightYellow: 93.6 + brightBlue: 37.9 + brightMagenta: 43.3 + brightCyan: 53.3 + brightWhite: 87.9 diff --git a/themes/popipa.yaml b/themes/popipa.yaml new file mode 100644 index 00000000..3feefa38 --- /dev/null +++ b/themes/popipa.yaml @@ -0,0 +1,49 @@ +name: "Popipa" +source: + marketplace_id: "TehMatcha.roselia-theme" + version: "4.4.0" + installs: 1278 + author: "TehMatcha" + repo: "https://github.com/MatchaTi/cool-roselia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" +colors: + bg: "#141629" + fg: "#BB9AF7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 55.5 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.7 + cyan: 47.5 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.5 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/popping-and-locking-mod.yaml b/themes/popping-and-locking-mod.yaml new file mode 100644 index 00000000..b3626579 --- /dev/null +++ b/themes/popping-and-locking-mod.yaml @@ -0,0 +1,49 @@ +name: "Popping and Locking Mod" +source: + marketplace_id: "WesHicks.popping-and-locking-mod" + version: "0.0.1" + installs: 371 + author: "Wes Hicks" + repo: "https://github.com/weshicks/popping-and-locking-mod-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=WesHicks.popping-and-locking-mod" +colors: + bg: "#242424" + fg: "#F2E5BC" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#F42C3E" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#99C6CA" + brightMagenta: "#D3869B" + brightCyan: "#7EC16E" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88.5 + black: 0 + red: 23.5 + green: 41.2 + yellow: 50.8 + blue: 29.8 + magenta: 30 + cyan: 40.2 + white: 45.5 + brightBlack: 34.6 + brightRed: 33.7 + brightGreen: 59.4 + brightYellow: 70.1 + brightBlue: 64.7 + brightMagenta: 46.2 + brightCyan: 57.2 + brightWhite: 82.6 diff --git a/themes/popping-and-locking.yaml b/themes/popping-and-locking.yaml new file mode 100644 index 00000000..74af0f34 --- /dev/null +++ b/themes/popping-and-locking.yaml @@ -0,0 +1,49 @@ +name: "Popping and Locking" +source: + marketplace_id: "philsinatra.popping-and-locking-vscode-black" + version: "1.1.7" + installs: 40558 + author: "Phil Sinatra" + repo: "https://github.com/philsinatra/popping-and-locking-vscode-black" + url: "https://marketplace.visualstudio.com/items?itemName=philsinatra.popping-and-locking-vscode-black" +colors: + bg: "#000000" + fg: "#F2E5BC" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#F42C3E" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#99C6CA" + brightMagenta: "#D3869B" + brightCyan: "#7EC16E" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.2 + black: 0 + red: 26.3 + green: 43.9 + yellow: 53.5 + blue: 32.6 + magenta: 32.7 + cyan: 43 + white: 48.2 + brightBlack: 37.4 + brightRed: 36.5 + brightGreen: 62.2 + brightYellow: 72.8 + brightBlue: 67.4 + brightMagenta: 49 + brightCyan: 60 + brightWhite: 85.4 diff --git a/themes/popsicle-color-theme.yaml b/themes/popsicle-color-theme.yaml new file mode 100644 index 00000000..d85f7512 --- /dev/null +++ b/themes/popsicle-color-theme.yaml @@ -0,0 +1,49 @@ +name: "popsicle-color-theme" +source: + marketplace_id: "wavebeem.popsicle-vscode" + version: "1.6.0" + installs: 170 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/popsicle-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.popsicle-vscode" +colors: + bg: "#FFFAF6" + fg: "#380000" + black: "#5B403B" + red: "#D2004F" + green: "#007A00" + yellow: "#905300" + blue: "#0069CC" + magenta: "#C3009B" + cyan: "#00747B" + white: "#FFF6F1" + brightBlack: "#5B403B" + brightRed: "#D2004F" + brightGreen: "#007A00" + brightYellow: "#905300" + brightBlue: "#0069CC" + brightMagenta: "#C3009B" + brightCyan: "#00747B" + brightWhite: "#FFF6F1" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 101.2 + black: 89.1 + red: 71.9 + green: 74.4 + yellow: 77.7 + blue: 73.6 + magenta: 72.6 + cyan: 74.6 + white: 0 + brightBlack: 89.1 + brightRed: 71.9 + brightGreen: 74.4 + brightYellow: 77.7 + brightBlue: 73.6 + brightMagenta: 72.6 + brightCyan: 74.6 + brightWhite: 0 diff --git a/themes/port-gellhorn-noir.yaml b/themes/port-gellhorn-noir.yaml new file mode 100644 index 00000000..2fcdb41d --- /dev/null +++ b/themes/port-gellhorn-noir.yaml @@ -0,0 +1,49 @@ +name: "Port Gellhorn Noir" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#1C1C1C" + red: "#FF4500" + green: "#32CD32" + yellow: "#FFD700" + blue: "#4169E1" + magenta: "#8B008B" + cyan: "#00CED1" + white: "#FFFFFF" + brightBlack: "#1C1C1C" + brightRed: "#FF4500" + brightGreen: "#32CD32" + brightYellow: "#FFD700" + brightBlue: "#4169E1" + brightMagenta: "#8B008B" + brightCyan: "#00CED1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 39.8 + green: 59.8 + yellow: 82.7 + blue: 27 + magenta: 13.5 + cyan: 64 + white: 106.3 + brightBlack: 0 + brightRed: 39.8 + brightGreen: 59.8 + brightYellow: 82.7 + brightBlue: 27 + brightMagenta: 13.5 + brightCyan: 64 + brightWhite: 106.3 diff --git a/themes/posh.yaml b/themes/posh.yaml new file mode 100644 index 00000000..6a64039b --- /dev/null +++ b/themes/posh.yaml @@ -0,0 +1,49 @@ +name: "Posh" +source: + marketplace_id: "lucasdecastro.posh" + version: "1.0.6" + installs: 491 + author: "Lucas de Castro" + repo: "https://github.com/lucasdecstro/posh" + url: "https://marketplace.visualstudio.com/items?itemName=lucasdecastro.posh" +colors: + bg: "#181818" + fg: "#E8E8E8" + black: "#101010" + red: "#C88E8A" + green: "#8CC8B8" + yellow: "#E8B89A" + blue: "#E8B89A" + magenta: "#A68EA8" + cyan: "#8CC8B8" + white: "#D8D8D0" + brightBlack: "#101010" + brightRed: "#C88E8A" + brightGreen: "#8CC8B8" + brightYellow: "#E8B89A" + brightBlue: "#E8B89A" + brightMagenta: "#A68EA8" + brightCyan: "#8CC8B8" + brightWhite: "#F0F0E8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.8 + black: 0 + red: 48 + green: 65.3 + yellow: 68.6 + blue: 68.6 + magenta: 44.3 + cyan: 65.3 + white: 81.5 + brightBlack: 0 + brightRed: 48 + brightGreen: 65.3 + brightYellow: 68.6 + brightBlue: 68.6 + brightMagenta: 44.3 + brightCyan: 65.3 + brightWhite: 96.6 diff --git a/themes/posterpole.yaml b/themes/posterpole.yaml new file mode 100644 index 00000000..d9b88384 --- /dev/null +++ b/themes/posterpole.yaml @@ -0,0 +1,49 @@ +name: "Posterpole" +source: + marketplace_id: "ilof2.posterpole-theme" + version: "0.1.5" + installs: 328 + author: "ilof2" + repo: "https://github.com/posterpole/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ilof2.posterpole-theme" +colors: + bg: "#24232A" + fg: "#AFA79D" + black: "#2C2C30" + red: "#A97070" + green: "#778C73" + yellow: "#CC9166" + blue: "#6C7F93" + magenta: "#B894AF" + cyan: "#8EA4A2" + white: "#AFA79D" + brightBlack: "#A5A59C" + brightRed: "#BC8F8F" + brightGreen: "#92A38F" + brightYellow: "#D9AC8C" + brightBlue: "#8A99A8" + brightMagenta: "#CCB3C6" + brightCyan: "#8FA4A2" + brightWhite: "#C6C0B9" +meta: + mode: "dark" + accent: "yellow" + hue: 292 + contrast: + fg: 52.5 + black: 0 + red: 31.7 + green: 35.1 + yellow: 47.1 + blue: 30.6 + magenta: 47.4 + cyan: 47.9 + white: 52.5 + brightBlack: 50.5 + brightRed: 45.1 + brightGreen: 47.2 + brightYellow: 59.6 + brightBlue: 43.5 + brightMagenta: 62.5 + brightCyan: 48 + brightWhite: 66.4 diff --git a/themes/potpourri-contrast.yaml b/themes/potpourri-contrast.yaml new file mode 100644 index 00000000..94f1473f --- /dev/null +++ b/themes/potpourri-contrast.yaml @@ -0,0 +1,49 @@ +name: "potpourri-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0D0C0C" + fg: "#F8F8F2" + black: "#1A1818" + red: "#BA0E2E" + green: "#C491C4" + yellow: "#ED1153" + blue: "#B866FA" + magenta: "#ED1153" + cyan: "#F76ACB" + white: "#FFFFFF" + brightBlack: "#423D3D" + brightRed: "#F03E5F" + brightGreen: "#E8D3E8" + brightYellow: "#F56F97" + brightBlue: "#E6C9FD" + brightMagenta: "#F56F97" + brightCyan: "#FCCBED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 102.7 + black: 0 + red: 21.3 + green: 51.6 + yellow: 33.6 + blue: 41.4 + magenta: 33.6 + cyan: 50.5 + white: 107.7 + brightBlack: 7.6 + brightRed: 37.6 + brightGreen: 83.5 + brightYellow: 48.9 + brightBlue: 80.2 + brightMagenta: 48.9 + brightCyan: 83.5 + brightWhite: 107.7 diff --git a/themes/potpourri-light.yaml b/themes/potpourri-light.yaml new file mode 100644 index 00000000..8712045f --- /dev/null +++ b/themes/potpourri-light.yaml @@ -0,0 +1,49 @@ +name: "potpourri-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#C491C4" + yellow: "#ED1153" + blue: "#B866FA" + magenta: "#ED1153" + cyan: "#F76ACB" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#E8D3E8" + brightYellow: "#F56F97" + brightBlue: "#E6C9FD" + brightMagenta: "#F56F97" + brightCyan: "#FCCBED" + brightWhite: "#666666" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 50.1 + yellow: 67.8 + blue: 60.1 + magenta: 67.8 + cyan: 51.1 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 19.7 + brightYellow: 52.7 + brightBlue: 22.8 + brightMagenta: 52.7 + brightCyan: 19.7 + brightWhite: 78.8 diff --git a/themes/potpourri.yaml b/themes/potpourri.yaml new file mode 100644 index 00000000..d07cacc5 --- /dev/null +++ b/themes/potpourri.yaml @@ -0,0 +1,49 @@ +name: "potpourri" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2E2B2C" + fg: "#F8F8F2" + black: "#3B3739" + red: "#BA0E2E" + green: "#C491C4" + yellow: "#ED1153" + blue: "#B866FA" + magenta: "#ED1153" + cyan: "#F76ACB" + white: "#FFFFFF" + brightBlack: "#635C5E" + brightRed: "#F03E5F" + brightGreen: "#E8D3E8" + brightYellow: "#F56F97" + brightBlue: "#E6C9FD" + brightMagenta: "#F56F97" + brightCyan: "#FCCBED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 98.8 + black: 0 + red: 17.3 + green: 47.7 + yellow: 29.7 + blue: 37.4 + magenta: 29.7 + cyan: 46.6 + white: 103.7 + brightBlack: 15.4 + brightRed: 33.6 + brightGreen: 79.5 + brightYellow: 44.9 + brightBlue: 76.2 + brightMagenta: 44.9 + brightCyan: 79.5 + brightWhite: 103.7 diff --git a/themes/powder.yaml b/themes/powder.yaml new file mode 100644 index 00000000..a0a997a3 --- /dev/null +++ b/themes/powder.yaml @@ -0,0 +1,49 @@ +name: "powder" +source: + marketplace_id: "Volskaya.irrelevant" + version: "0.0.2" + installs: 33 + author: "Volskaya" + repo: "https://github.com/volskaya/irrelevant" + url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#1C1C1C" + red: "#BFF5FF" + green: "#EDB1FF" + yellow: "#BFF5FF" + blue: "#878787" + magenta: "#979797" + cyan: "#A6A6A6" + white: "#444444" + brightBlack: "#666666" + brightRed: "#BFF5FF" + brightGreen: "#EDB1FF" + brightYellow: "#DDDDDD" + brightBlue: "#878787" + brightMagenta: "#979797" + brightCyan: "#A6A6A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 93.7 + green: 70.8 + yellow: 93.7 + blue: 36.6 + magenta: 44.6 + cyan: 52.5 + white: 8.3 + brightBlack: 21.5 + brightRed: 93.7 + brightGreen: 70.8 + brightYellow: 84.4 + brightBlue: 36.6 + brightMagenta: 44.6 + brightCyan: 52.5 + brightWhite: 106.3 diff --git a/themes/power-dark.yaml b/themes/power-dark.yaml new file mode 100644 index 00000000..52d44113 --- /dev/null +++ b/themes/power-dark.yaml @@ -0,0 +1,49 @@ +name: "power dark" +source: + marketplace_id: "axuminication.codica-theme" + version: "0.0.4" + installs: 13 + author: "Axum Softwares" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=axuminication.codica-theme" +colors: + bg: "#2B272B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77 + black: 0 + red: 24.2 + green: 50.5 + yellow: 83.1 + blue: 24.9 + magenta: 27.3 + cyan: 45.1 + white: 87.5 + brightBlack: 19.6 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.5 + brightMagenta: 42.9 + brightCyan: 52.9 + brightWhite: 87.5 diff --git a/themes/power-low-purple-theme.yaml b/themes/power-low-purple-theme.yaml new file mode 100644 index 00000000..4c3abab1 --- /dev/null +++ b/themes/power-low-purple-theme.yaml @@ -0,0 +1,49 @@ +name: "power-low-purple-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#352E40" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 302 + contrast: + fg: 102.5 + black: 0 + red: 22.3 + green: 48.6 + yellow: 81.2 + blue: 23 + magenta: 25.4 + cyan: 43.2 + white: 85.6 + brightBlack: 17.6 + brightRed: 34.2 + brightGreen: 59.1 + brightYellow: 91.2 + brightBlue: 35.6 + brightMagenta: 41 + brightCyan: 51 + brightWhite: 85.6 diff --git a/themes/poznajkubernetes.yaml b/themes/poznajkubernetes.yaml new file mode 100644 index 00000000..b07bee41 --- /dev/null +++ b/themes/poznajkubernetes.yaml @@ -0,0 +1,49 @@ +name: "PoznajKubernetes" +source: + marketplace_id: "poznajkubernetes.theme-poznajkubernetes" + version: "1.0.5" + installs: 1230 + author: "Poznaj Kubernetes" + repo: "https://github.com/poznajkubernetes/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=poznajkubernetes.theme-poznajkubernetes" +colors: + bg: "#232323" + fg: "#F8F8F2" + black: "#353535" + red: "#FF5555" + green: "#3BB879" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 100.4 + black: 0 + red: 41.8 + green: 50.3 + yellow: 97 + blue: 52.1 + magenta: 53 + cyan: 82.4 + white: 100.4 + brightBlack: 26.5 + brightRed: 47.3 + brightGreen: 87.5 + brightYellow: 102 + brightBlue: 64.5 + brightMagenta: 61 + brightCyan: 95.2 + brightWhite: 105.3 diff --git a/themes/ppy-like.yaml b/themes/ppy-like.yaml new file mode 100644 index 00000000..0feb16ca --- /dev/null +++ b/themes/ppy-like.yaml @@ -0,0 +1,49 @@ +name: "ppy-like" +source: + marketplace_id: "reiisen.hi" + version: "0.0.1" + installs: 1297 + author: "reiisen" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=reiisen.hi" +colors: + bg: "#20202A" + fg: "#D7D7FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 82.1 + black: 0 + red: 25.5 + green: 51.8 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.8 + brightMagenta: 44.1 + brightCyan: 54.2 + brightWhite: 88.8 diff --git a/themes/pr-theme-obsidian.yaml b/themes/pr-theme-obsidian.yaml new file mode 100644 index 00000000..fa258383 --- /dev/null +++ b/themes/pr-theme-obsidian.yaml @@ -0,0 +1,49 @@ +name: "PR-Theme Obsidian" +source: + marketplace_id: "PrincePatelPR26.PrincePatelPR26" + version: "0.0.2" + installs: 27 + author: "Prince Patel" + repo: "https://github.com/imprince26/PR-Theme-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=PrincePatelPR26.PrincePatelPR26" +colors: + bg: "#0B0F14" + fg: "#CFD6E4" + black: "#0B0F14" + red: "#F7768E" + green: "#98C379" + yellow: "#E5C07B" + blue: "#8AB4F8" + magenta: "#C792EA" + cyan: "#7DCFFF" + white: "#CFD6E4" + brightBlack: "#4E5666" + brightRed: "#F7768E" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#8AB4F8" + brightMagenta: "#C792EA" + brightCyan: "#7DCFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 254 + contrast: + fg: 81.1 + black: 0 + red: 50.6 + green: 62.9 + yellow: 71.2 + blue: 60.7 + magenta: 54.4 + cyan: 71.7 + white: 81.1 + brightBlack: 16 + brightRed: 50.6 + brightGreen: 62.9 + brightYellow: 71.2 + brightBlue: 60.7 + brightMagenta: 54.4 + brightCyan: 71.7 + brightWhite: 107.5 diff --git a/themes/pr-theme-premium.yaml b/themes/pr-theme-premium.yaml new file mode 100644 index 00000000..f01a5e08 --- /dev/null +++ b/themes/pr-theme-premium.yaml @@ -0,0 +1,49 @@ +name: "PR-Theme Premium" +source: + marketplace_id: "PrincePatelPR26.PrincePatelPR26" + version: "0.0.2" + installs: 27 + author: "Prince Patel" + repo: "https://github.com/imprince26/PR-Theme-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=PrincePatelPR26.PrincePatelPR26" +colors: + bg: "#0F1117" + fg: "#D6DBE6" + black: "#0B0D12" + red: "#F7768E" + green: "#3DD6A5" + yellow: "#F2C97D" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#D6DBE6" + brightBlack: "#4F5868" + brightRed: "#F7768E" + brightGreen: "#3DD6A5" + brightYellow: "#F2C97D" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 271 + contrast: + fg: 84.1 + black: 0 + red: 50.4 + green: 67.7 + yellow: 76.8 + blue: 52.2 + magenta: 56 + cyan: 71.5 + white: 84.1 + brightBlack: 16.6 + brightRed: 50.4 + brightGreen: 67.7 + brightYellow: 76.8 + brightBlue: 52.2 + brightMagenta: 56 + brightCyan: 71.5 + brightWhite: 107.4 diff --git a/themes/pr-theme.yaml b/themes/pr-theme.yaml new file mode 100644 index 00000000..9fc87fe3 --- /dev/null +++ b/themes/pr-theme.yaml @@ -0,0 +1,49 @@ +name: "PR-Theme" +source: + marketplace_id: "PrincePatelPR26.PrincePatelPR26" + version: "0.0.2" + installs: 27 + author: "Prince Patel" + repo: "https://github.com/imprince26/PR-Theme-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=PrincePatelPR26.PrincePatelPR26" +colors: + bg: "#0D0D0D" + fg: "#C5C5C5" + black: "#000000" + red: "#FF5370" + green: "#2EB67D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#545454" + brightRed: "#FF5370" + brightGreen: "#2EB67D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 71.3 + black: 0 + red: 44.4 + green: 51.5 + yellow: 79.7 + blue: 56.7 + magenta: 54.5 + cyan: 79 + white: 107.6 + brightBlack: 15.5 + brightRed: 44.4 + brightGreen: 51.5 + brightYellow: 79.7 + brightBlue: 56.7 + brightMagenta: 54.5 + brightCyan: 79 + brightWhite: 107.6 diff --git a/themes/pre.yaml b/themes/pre.yaml new file mode 100644 index 00000000..9db7dfec --- /dev/null +++ b/themes/pre.yaml @@ -0,0 +1,49 @@ +name: "Pre" +source: + marketplace_id: "leandromatos.pre" + version: "0.0.7" + installs: 13042 + author: "Leandro Matos" + repo: "https://github.com/leandromatos/pre-theme" + url: "https://marketplace.visualstudio.com/items?itemName=leandromatos.pre" +colors: + bg: "#292929" + fg: "#F8F8F8" + black: "#000000" + red: "#FF2B92" + green: "#23FF5E" + yellow: "#FFF64F" + blue: "#7B7B7B" + magenta: "#BD58FD" + cyan: "#00E5FF" + white: "#F8F8F8" + brightBlack: "#191919" + brightRed: "#FF2B92" + brightGreen: "#23FF5E" + brightYellow: "#FFF64F" + brightBlue: "#7B7B7B" + brightMagenta: "#BD58FD" + brightCyan: "#00E5FF" + brightWhite: "#F8F8F8" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 99.6 + black: 0 + red: 37.5 + green: 83.5 + yellow: 95 + blue: 28.8 + magenta: 36.1 + cyan: 75.4 + white: 99.6 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 83.5 + brightYellow: 95 + brightBlue: 28.8 + brightMagenta: 36.1 + brightCyan: 75.4 + brightWhite: 99.6 diff --git a/themes/prescient.yaml b/themes/prescient.yaml new file mode 100644 index 00000000..1f03813a --- /dev/null +++ b/themes/prescient.yaml @@ -0,0 +1,49 @@ +name: "Prescient" +source: + marketplace_id: "zevross.prescient-theme" + version: "1.1.0" + installs: 20 + author: "Zev Ross" + repo: "https://github.com/zev18/prescient-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.prescient-theme" +colors: + bg: "#1E1F2C" + fg: "#89859F" + black: "#1E1F2C" + red: "#FF4D73" + green: "#A0FFC0" + yellow: "#E7FF59" + blue: "#D1FF9D" + magenta: "#FF6C9D" + cyan: "#D1FF9D" + white: "#FFFFFF" + brightBlack: "#89859F" + brightRed: "#FF4D73" + brightGreen: "#A0FFC0" + brightYellow: "#E7FF59" + brightBlue: "#BAFF7E" + brightMagenta: "#FF6C9D" + brightCyan: "#BAFF7E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 281 + contrast: + fg: 36.5 + black: 0 + red: 41.7 + green: 92.7 + yellow: 97.7 + blue: 96.3 + magenta: 48.7 + cyan: 96.3 + white: 105.8 + brightBlack: 36.5 + brightRed: 41.7 + brightGreen: 92.7 + brightYellow: 97.7 + brightBlue: 93.2 + brightMagenta: 48.7 + brightCyan: 93.2 + brightWhite: 105.8 diff --git a/themes/pretentious-name.yaml b/themes/pretentious-name.yaml new file mode 100644 index 00000000..e83d62c9 --- /dev/null +++ b/themes/pretentious-name.yaml @@ -0,0 +1,49 @@ +name: "Pretentious Name" +source: + marketplace_id: "zhiayang.pretentious-name" + version: "2.1.1" + installs: 2683 + author: "zhiayang" + repo: "https://github.com/zhiayang/vscode-theme-pretentious-name" + url: "https://marketplace.visualstudio.com/items?itemName=zhiayang.pretentious-name" +colors: + bg: "#1A1A1A" + fg: "#ABB2BF" + black: "#21252B" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#FF0015" + brightGreen: "#6AFF00" + brightYellow: "#FFA600" + brightBlue: "#008CFF" + brightMagenta: "#C300FF" + brightCyan: "#00E1FF" + brightWhite: "#D2D6DB" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 59.1 + black: 0 + red: 41.8 + green: 62 + yellow: 70.2 + blue: 54.3 + magenta: 44.8 + cyan: 54.2 + white: 59.1 + brightBlack: 20.3 + brightRed: 36.2 + brightGreen: 87.2 + brightYellow: 63.7 + brightBlue: 39.8 + brightMagenta: 32.4 + brightCyan: 75.8 + brightWhite: 80.1 diff --git a/themes/pretstyle.yaml b/themes/pretstyle.yaml new file mode 100644 index 00000000..1238083c --- /dev/null +++ b/themes/pretstyle.yaml @@ -0,0 +1,49 @@ +name: "Pretstyle" +source: + marketplace_id: "xPretti.pretstyle" + version: "1.0.2" + installs: 24 + author: "xPretti" + repo: "https://github.com/xPretti/pretstyle" + url: "https://marketplace.visualstudio.com/items?itemName=xPretti.pretstyle" +colors: + bg: "#1C2125" + fg: "#E1E4E8" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D1D5DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: 242 + contrast: + fg: 88 + black: 18 + red: 35.8 + green: 61.1 + yellow: 91.6 + blue: 37.8 + magenta: 50.2 + cyan: 59.7 + white: 78.6 + brightBlack: 46.6 + brightRed: 48.6 + brightGreen: 77.9 + brightYellow: 91.6 + brightBlue: 59.7 + brightMagenta: 50.2 + brightCyan: 68.2 + brightWhite: 103 diff --git a/themes/pretty-dark-theme.yaml b/themes/pretty-dark-theme.yaml new file mode 100644 index 00000000..ea35203d --- /dev/null +++ b/themes/pretty-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "pretty-dark-theme" +source: + marketplace_id: "CJL.pretty-dark-theme" + version: "1.0.3" + installs: 1988 + author: "CJL" + repo: "https://github.com/beixiyo/vsc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CJL.pretty-dark-theme" +colors: + bg: "#191815" + fg: "#C2C2C2" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#C2C2C2" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 68.7 + black: 8.7 + red: 36.6 + green: 60.3 + yellow: 48.5 + blue: 49.5 + magenta: 38.9 + cyan: 52.4 + white: 68.7 + brightBlack: 15.3 + brightRed: 46 + brightGreen: 76.7 + brightYellow: 61.1 + brightBlue: 63.6 + brightMagenta: 50.1 + brightCyan: 67.7 + brightWhite: 90.5 diff --git a/themes/pributan.yaml b/themes/pributan.yaml new file mode 100644 index 00000000..c7451e50 --- /dev/null +++ b/themes/pributan.yaml @@ -0,0 +1,49 @@ +name: "Pributan" +source: + marketplace_id: "sensnerd.pributan" + version: "1.0.5" + installs: 507 + author: "Kusuma J." + repo: "https://github.com/sensnerd/Pributan" + url: "https://marketplace.visualstudio.com/items?itemName=sensnerd.pributan" +colors: + bg: "#22262D" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 57.3 + black: 0 + red: 34.7 + green: 58.3 + yellow: 46.5 + blue: 47.6 + magenta: 37 + cyan: 50.5 + white: 88.6 + brightBlack: 13.4 + brightRed: 44 + brightGreen: 74.7 + brightYellow: 59.2 + brightBlue: 61.7 + brightMagenta: 48.2 + brightCyan: 65.8 + brightWhite: 104.8 diff --git a/themes/primary-dark.yaml b/themes/primary-dark.yaml new file mode 100644 index 00000000..6e645c5d --- /dev/null +++ b/themes/primary-dark.yaml @@ -0,0 +1,49 @@ +name: "Primary Dark" +source: + marketplace_id: "negativeone.primary-theme" + version: "0.2.1" + installs: 230 + author: "negative.one" + repo: "https://github.com/OliverDudgeon/primary-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=negativeone.primary-theme" +colors: + bg: "#27241F" + fg: "#C9AF96" + black: "#27241F" + red: "#EF7976" + green: "#1EB83A" + yellow: "#D18128" + blue: "#3CA3BC" + magenta: "#F6ABA9" + cyan: "#3CA3BC" + white: "#C9AF96" + brightBlack: "#968575" + brightRed: "#EF7976" + brightGreen: "#1EB83A" + brightYellow: "#D18128" + brightBlue: "#3CA3BC" + brightMagenta: "#F6ABA9" + brightCyan: "#3CA3BC" + brightWhite: "#C9AF96" +meta: + mode: "dark" + accent: "green" + hue: 81 + contrast: + fg: 58.6 + black: 0 + red: 46.5 + green: 48.4 + yellow: 42 + blue: 43.5 + magenta: 64.9 + cyan: 43.5 + white: 58.6 + brightBlack: 35.7 + brightRed: 46.5 + brightGreen: 48.4 + brightYellow: 42 + brightBlue: 43.5 + brightMagenta: 64.9 + brightCyan: 43.5 + brightWhite: 58.6 diff --git a/themes/primary-light.yaml b/themes/primary-light.yaml new file mode 100644 index 00000000..c16d545c --- /dev/null +++ b/themes/primary-light.yaml @@ -0,0 +1,49 @@ +name: "Primary Light" +source: + marketplace_id: "negativeone.primary-theme" + version: "0.2.1" + installs: 230 + author: "negative.one" + repo: "https://github.com/OliverDudgeon/primary-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=negativeone.primary-theme" +colors: + bg: "#F6F5F2" + fg: "#3A3022" + black: "#E8E6E1" + red: "#AE3B3B" + green: "#3B8151" + yellow: "#C8652A" + blue: "#25779A" + magenta: "#C86565" + cyan: "#25779A" + white: "#3A3022" + brightBlack: "#B6AFA6" + brightRed: "#AE3B3B" + brightGreen: "#3B8151" + brightYellow: "#C8652A" + brightBlue: "#25779A" + brightMagenta: "#C86565" + brightCyan: "#25779A" + brightWhite: "#3A3022" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93.1 + black: 0 + red: 73.2 + green: 66.6 + yellow: 60.2 + blue: 68.4 + magenta: 59.3 + cyan: 68.4 + white: 93.1 + brightBlack: 36.7 + brightRed: 73.2 + brightGreen: 66.6 + brightYellow: 60.2 + brightBlue: 68.4 + brightMagenta: 59.3 + brightCyan: 68.4 + brightWhite: 93.1 diff --git a/themes/prime-contrast.yaml b/themes/prime-contrast.yaml new file mode 100644 index 00000000..e2c38b34 --- /dev/null +++ b/themes/prime-contrast.yaml @@ -0,0 +1,49 @@ +name: "prime-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0B0B11" + fg: "#9090B2" + black: "#151520" + red: "#BA0E2E" + green: "#9D50BA" + yellow: "#EE4266" + blue: "#FFD23F" + magenta: "#F3FCF0" + cyan: "#EE4266" + white: "#9F9FBC" + brightBlack: "#33334F" + brightRed: "#F03E5F" + brightGreen: "#C699D7" + brightYellow: "#F6A0B2" + brightBlue: "#FFEAA5" + brightMagenta: "#FFFFFF" + brightCyan: "#F6A0B2" + brightWhite: "#CCCCDC" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 43.8 + black: 0 + red: 21.3 + green: 28 + yellow: 37.8 + blue: 82.1 + magenta: 103.9 + cyan: 37.8 + white: 51.4 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 55.6 + brightYellow: 64 + brightBlue: 94.5 + brightMagenta: 107.7 + brightCyan: 64 + brightWhite: 76.2 diff --git a/themes/prime-light.yaml b/themes/prime-light.yaml new file mode 100644 index 00000000..6efde956 --- /dev/null +++ b/themes/prime-light.yaml @@ -0,0 +1,49 @@ +name: "prime-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#3D3D5B" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#9D50BA" + yellow: "#EE4266" + blue: "#FFD23F" + magenta: "#727C6F" + cyan: "#EE4266" + white: "#47476A" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C699D7" + brightYellow: "#F6A0B2" + brightBlue: "#FFEAA5" + brightMagenta: "#A6ADA4" + brightCyan: "#F6A0B2" + brightWhite: "#666698" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 94.1 + black: 0 + red: 80.3 + green: 73.5 + yellow: 63.7 + blue: 21 + magenta: 70.2 + cyan: 63.7 + white: 90.2 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 46.3 + brightYellow: 38.1 + brightBlue: 9.5 + brightMagenta: 45.4 + brightCyan: 38.1 + brightWhite: 76.7 diff --git a/themes/prime.yaml b/themes/prime.yaml new file mode 100644 index 00000000..f07b97bc --- /dev/null +++ b/themes/prime.yaml @@ -0,0 +1,49 @@ +name: "prime" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#202030" + fg: "#9090B2" + black: "#2A2A3F" + red: "#BA0E2E" + green: "#9D50BA" + yellow: "#EE4266" + blue: "#FFD23F" + magenta: "#F3FCF0" + cyan: "#EE4266" + white: "#9F9FBC" + brightBlack: "#49496D" + brightRed: "#F03E5F" + brightGreen: "#C699D7" + brightYellow: "#F6A0B2" + brightBlue: "#FFEAA5" + brightMagenta: "#FFFFFF" + brightCyan: "#F6A0B2" + brightWhite: "#CCCCDC" +meta: + mode: "dark" + accent: "orange" + hue: 284 + contrast: + fg: 41.7 + black: 0 + red: 19.1 + green: 25.9 + yellow: 35.6 + blue: 80 + magenta: 101.7 + cyan: 35.6 + white: 49.2 + brightBlack: 10.5 + brightRed: 35.4 + brightGreen: 53.5 + brightYellow: 61.9 + brightBlue: 92.3 + brightMagenta: 105.5 + brightCyan: 61.9 + brightWhite: 74 diff --git a/themes/primer-light.yaml b/themes/primer-light.yaml new file mode 100644 index 00000000..47d3f884 --- /dev/null +++ b/themes/primer-light.yaml @@ -0,0 +1,49 @@ +name: "Primer Light" +source: + marketplace_id: "andrewmarkle.primer-light" + version: "0.0.8" + installs: 43111 + author: "Andrew Markle" + repo: "https://github.com/andrewmarkle/primer-light" + url: "https://marketplace.visualstudio.com/items?itemName=andrewmarkle.primer-light" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#000000" + red: "#FF6C69" + green: "#56FA48" + yellow: "#FFD864" + blue: "#85E7FA" + magenta: "#AE90E9" + cyan: "#85E7EE" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#CBE645" + brightYellow: "#FFD864" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#85E7EE" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 98.7 + black: 106 + red: 52.6 + green: 18.2 + yellow: 18.2 + blue: 20 + magenta: 51.3 + cyan: 20.6 + white: 30.1 + brightBlack: 77.9 + brightRed: 54.2 + brightGreen: 19.5 + brightYellow: 18.2 + brightBlue: 66 + brightMagenta: 43.7 + brightCyan: 20.6 + brightWhite: 0 diff --git a/themes/prism-dark.yaml b/themes/prism-dark.yaml new file mode 100644 index 00000000..256904de --- /dev/null +++ b/themes/prism-dark.yaml @@ -0,0 +1,49 @@ +name: "Prism (Dark)" +source: + marketplace_id: "friggeri.prism-vscode-theme" + version: "1.0.6" + installs: 2591 + author: "Adrien Friggeri" + repo: "https://github.com/friggeri/prism" + url: "https://marketplace.visualstudio.com/items?itemName=friggeri.prism-vscode-theme" +colors: + bg: "#242728" + fg: "#FAFAFA" + black: "#FCFCFD" + red: "#FF6666" + green: "#AAFF00" + yellow: "#FFE666" + blue: "#9966FF" + magenta: "#FF1A79" + cyan: "#66CCFF" + white: "#020303" + brightBlack: "#FCFCFD" + brightRed: "#FF6666" + brightGreen: "#AAFF00" + brightYellow: "#FFE666" + brightBlue: "#9966FF" + brightMagenta: "#FF1A79" + brightCyan: "#66CCFF" + brightWhite: "#020303" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.4 + black: 102.8 + red: 44.8 + green: 89.6 + yellow: 88.4 + blue: 34.5 + magenta: 36.3 + cyan: 66.2 + white: 0 + brightBlack: 102.8 + brightRed: 44.8 + brightGreen: 89.6 + brightYellow: 88.4 + brightBlue: 34.5 + brightMagenta: 36.3 + brightCyan: 66.2 + brightWhite: 0 diff --git a/themes/prism-light.yaml b/themes/prism-light.yaml new file mode 100644 index 00000000..69b391f8 --- /dev/null +++ b/themes/prism-light.yaml @@ -0,0 +1,49 @@ +name: "Prism (Light)" +source: + marketplace_id: "friggeri.prism-vscode-theme" + version: "1.0.6" + installs: 2591 + author: "Adrien Friggeri" + repo: "https://github.com/friggeri/prism" + url: "https://marketplace.visualstudio.com/items?itemName=friggeri.prism-vscode-theme" +colors: + bg: "#FFFFFF" + fg: "#242728" + black: "#020303" + red: "#E60000" + green: "#88CC00" + yellow: "#B39500" + blue: "#7733FF" + magenta: "#FF006A" + cyan: "#0099E6" + white: "#FCFCFD" + brightBlack: "#020303" + brightRed: "#E60000" + brightGreen: "#88CC00" + brightYellow: "#B39500" + brightBlue: "#7733FF" + brightMagenta: "#FF006A" + brightCyan: "#0099E6" + brightWhite: "#FCFCFD" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.9 + black: 106 + red: 70.3 + green: 37.6 + yellow: 55.2 + blue: 77 + magenta: 63 + cyan: 57.7 + white: 0 + brightBlack: 106 + brightRed: 70.3 + brightGreen: 37.6 + brightYellow: 55.2 + brightBlue: 77 + brightMagenta: 63 + brightCyan: 57.7 + brightWhite: 0 diff --git a/themes/prisma.yaml b/themes/prisma.yaml new file mode 100644 index 00000000..0455ab9b --- /dev/null +++ b/themes/prisma.yaml @@ -0,0 +1,49 @@ +name: "Prisma" +source: + marketplace_id: "Quernest.prisma" + version: "0.0.3" + installs: 8578 + author: "Quernest" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Quernest.prisma" +colors: + bg: "#1D1D1D" + fg: "#F7F7F7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 100.9 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/prismapixel-studios-dark-theme.yaml b/themes/prismapixel-studios-dark-theme.yaml new file mode 100644 index 00000000..867b169b --- /dev/null +++ b/themes/prismapixel-studios-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "PrismaPixel Studios - Dark Theme" +source: + marketplace_id: "PrismaPixel-Studios.prismapixel-studios-theme" + version: "0.0.1" + installs: 228 + author: "PrismaPixel Studios" + repo: "https://github.com/PrismaPixelStudios/PrismaPixel_Studios-vscode_theme" + url: "https://marketplace.visualstudio.com/items?itemName=PrismaPixel-Studios.prismapixel-studios-theme" +colors: + bg: "#2D2D2D" + fg: "#989998" + black: "#000000" + red: "#E1251B" + green: "#009D4F" + yellow: "#FFE800" + blue: "#1A428A" + magenta: "#E31D93" + cyan: "#00B2E3" + white: "#FFFFFF" + brightBlack: "#353331" + brightRed: "#FF9C8F" + brightGreen: "#78CC99" + brightYellow: "#FFF98D" + brightBlue: "#92AFEC" + brightMagenta: "#F08FC8" + brightCyan: "#81D3F7" + brightWhite: "#F1F1F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 42.6 + black: 0 + red: 26.7 + green: 35 + yellow: 87.4 + blue: 0 + magenta: 29.3 + cyan: 49.6 + white: 103.4 + brightBlack: 0 + brightRed: 59 + brightGreen: 61.3 + brightYellow: 96.6 + brightBlue: 54.6 + brightMagenta: 54.3 + brightCyan: 69.2 + brightWhite: 94.3 diff --git a/themes/prismatic-dark.yaml b/themes/prismatic-dark.yaml new file mode 100644 index 00000000..0190aec7 --- /dev/null +++ b/themes/prismatic-dark.yaml @@ -0,0 +1,49 @@ +name: "Prismatic Dark" +source: + marketplace_id: "cklimas.prismatic" + version: "1.17.0" + installs: 860 + author: "Chris Klimas" + repo: "https://github.com/klembot/prismatic-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cklimas.prismatic" +colors: + bg: "#242424" + fg: "#CCCCCC" + black: "#000000" + red: "#DD4A68" + green: "#A0BE63" + yellow: "#8F7454" + blue: "#539BBA" + magenta: "#BE6396" + cyan: "#00ACAC" + white: "#708090" + brightBlack: "#444444" + brightRed: "#FF8EAC" + brightGreen: "#EEFFA7" + brightYellow: "#FFDCA7" + brightBlue: "#97DFFE" + brightMagenta: "#FFA7DA" + brightCyan: "#00F0F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 72.9 + black: 0 + red: 32.6 + green: 58.7 + yellow: 28.6 + blue: 41.1 + magenta: 33 + cyan: 45.8 + white: 31.1 + brightBlack: 0 + brightRed: 57.3 + brightGreen: 99.5 + brightYellow: 85.8 + brightBlue: 78.4 + brightMagenta: 67.2 + brightCyan: 81 + brightWhite: 105.1 diff --git a/themes/prismatic-light.yaml b/themes/prismatic-light.yaml new file mode 100644 index 00000000..34b4c399 --- /dev/null +++ b/themes/prismatic-light.yaml @@ -0,0 +1,49 @@ +name: "Prismatic Light" +source: + marketplace_id: "cklimas.prismatic" + version: "1.17.0" + installs: 860 + author: "Chris Klimas" + repo: "https://github.com/klembot/prismatic-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cklimas.prismatic" +colors: + bg: "#F5F2F0" + fg: "#000000" + black: "#000000" + red: "#990624" + green: "#669900" + yellow: "#C49863" + blue: "#0077AA" + magenta: "#990055" + cyan: "#008888" + white: "#708090" + brightBlack: "#000000" + brightRed: "#550000" + brightGreen: "#225500" + brightYellow: "#80541F" + brightBlue: "#003366" + brightMagenta: "#550011" + brightCyan: "#004444" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 98.6 + black: 98.6 + red: 80.2 + green: 54.1 + yellow: 43.6 + blue: 66.4 + magenta: 79.3 + cyan: 61.8 + white: 60.3 + brightBlack: 98.6 + brightRed: 93 + brightGreen: 82.5 + brightYellow: 74.8 + brightBlue: 90.6 + brightMagenta: 93 + brightCyan: 87.5 + brightWhite: 0 diff --git a/themes/prismatic-void.yaml b/themes/prismatic-void.yaml new file mode 100644 index 00000000..3adee353 --- /dev/null +++ b/themes/prismatic-void.yaml @@ -0,0 +1,49 @@ +name: "Prismatic Void" +source: + marketplace_id: "cklimas.prismatic" + version: "1.17.0" + installs: 860 + author: "Chris Klimas" + repo: "https://github.com/klembot/prismatic-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cklimas.prismatic" +colors: + bg: "#000000" + fg: "#AAAAAA" + black: "#000000" + red: "#BB2846" + green: "#7E9141" + yellow: "#6D5232" + blue: "#317998" + magenta: "#9C4174" + cyan: "#008A8A" + white: "#4E5E6E" + brightBlack: "#222222" + brightRed: "#DD6C8A" + brightGreen: "#CCDD85" + brightYellow: "#DDBA85" + brightBlue: "#75BDDC" + brightMagenta: "#DD85B8" + brightCyan: "#00CECE" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 56.2 + black: 0 + red: 23.3 + green: 39.3 + yellow: 17 + blue: 28.2 + magenta: 21.8 + cyan: 33.3 + white: 19 + brightBlack: 0 + brightRed: 43.1 + brightGreen: 80.9 + brightYellow: 68.2 + brightBlue: 61.6 + brightMagenta: 51.6 + brightCyan: 65.4 + brightWhite: 86 diff --git a/themes/prismmagic.yaml b/themes/prismmagic.yaml new file mode 100644 index 00000000..75a3a965 --- /dev/null +++ b/themes/prismmagic.yaml @@ -0,0 +1,49 @@ +name: "PrismMagic" +source: + marketplace_id: "PrismMagicTheme.PrismCode" + version: "1.0.2" + installs: 358 + author: "PrismMagic Theme" + repo: "https://github.com/slotherinee/PrismMagic" + url: "https://marketplace.visualstudio.com/items?itemName=PrismMagicTheme.PrismCode" +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 99 + black: 0 + red: 23.8 + green: 50 + yellow: 82.7 + blue: 24.5 + magenta: 26.8 + cyan: 44.6 + white: 87.1 + brightBlack: 19.1 + brightRed: 35.6 + brightGreen: 60.6 + brightYellow: 92.7 + brightBlue: 37 + brightMagenta: 42.4 + brightCyan: 52.4 + brightWhite: 87.1 diff --git a/themes/pro-coding.yaml b/themes/pro-coding.yaml new file mode 100644 index 00000000..7272fed2 --- /dev/null +++ b/themes/pro-coding.yaml @@ -0,0 +1,49 @@ +name: "Pro Coding" +source: + marketplace_id: "HasibX2000.pro-coding" + version: "0.0.1" + installs: 105 + author: "Hasibur Rahman" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.pro-coding" +colors: + bg: "#0F0F0F" + fg: "#D9D9D9" + black: "#686868" + red: "#FF3030" + green: "#0BE881" + yellow: "#FFFF00" + blue: "#00D8D6" + magenta: "#FF2DFF" + cyan: "#00B7E4" + white: "#C7C7C7" + brightBlack: "#A1A1A1" + brightRed: "#FF7272" + brightGreen: "#32FF7E" + brightYellow: "#FFFF3D" + brightBlue: "#18DCFF" + brightMagenta: "#FF78FF" + brightCyan: "#0EAED5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 83.2 + black: 23.5 + red: 39 + green: 75.2 + yellow: 102.3 + blue: 70.2 + magenta: 47.1 + cyan: 55.8 + white: 72.3 + brightBlack: 51 + brightRed: 50.5 + brightGreen: 87.5 + brightYellow: 102.5 + brightBlue: 74.4 + brightMagenta: 58.3 + brightCyan: 51.1 + brightWhite: 107.5 diff --git a/themes/professional-dark.yaml b/themes/professional-dark.yaml new file mode 100644 index 00000000..7d9e33c6 --- /dev/null +++ b/themes/professional-dark.yaml @@ -0,0 +1,49 @@ +name: "Professional Dark" +source: + marketplace_id: "xynny.professional-dark" + version: "1.0.0" + installs: 310 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.professional-dark" +colors: + bg: "#0F0F0F" + fg: "#FFFFFF" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E1C542" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#39CDE2" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFE05B" + brightBlue: "#74BCFF" + brightMagenta: "#D670D6" + brightCyan: "#74F2FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.5 + black: 0 + red: 27.3 + green: 53.6 + yellow: 71.8 + blue: 28.1 + magenta: 30.4 + cyan: 66.1 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 88.3 + brightBlue: 62.8 + brightMagenta: 46 + brightCyan: 87.7 + brightWhite: 90.6 diff --git a/themes/programmer.yaml b/themes/programmer.yaml new file mode 100644 index 00000000..af958b32 --- /dev/null +++ b/themes/programmer.yaml @@ -0,0 +1,49 @@ +name: "Programmer" +source: + marketplace_id: "paradoxfm.programmer" + version: "0.0.3" + installs: 480 + author: "paradoxfm" + repo: "https://github.com/paradoxfm/programmer" + url: "https://marketplace.visualstudio.com/items?itemName=paradoxfm.programmer" +colors: + bg: "#1B2427" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 220 + contrast: + fg: 78 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 28.2 + cyan: 46 + white: 88.5 + brightBlack: 20.5 + brightRed: 37.1 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/progress-dark.yaml b/themes/progress-dark.yaml new file mode 100644 index 00000000..5da345a2 --- /dev/null +++ b/themes/progress-dark.yaml @@ -0,0 +1,49 @@ +name: "Progress Dark" +source: + marketplace_id: "PhilippComans.feels-like-progress" + version: "1.0.0" + installs: 29 + author: "Philipp Comans" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PhilippComans.feels-like-progress" +colors: + bg: "#0C1C15" + fg: "#FFFFFF" + black: "#273C32" + red: "#EA819B" + green: "#1EC677" + yellow: "#FFEB84" + blue: "#8DCFD3" + magenta: "#F7BDFE" + cyan: "#3CCD88" + white: "#FFFFFF" + brightBlack: "#67756E" + brightRed: "#F7BDFE" + brightGreen: "#AEE3C1" + brightYellow: "#FFF9D8" + brightBlue: "#CFF9F6" + brightMagenta: "#FFFAFD" + brightCyan: "#DDF1DC" + brightWhite: "#F7F8F8" +meta: + mode: "dark" + accent: "teal" + hue: 164 + contrast: + fg: 106.6 + black: 0 + red: 50.4 + green: 57.5 + yellow: 93.1 + blue: 69.6 + magenta: 77.1 + cyan: 61.7 + white: 106.6 + brightBlack: 26.9 + brightRed: 77.1 + brightGreen: 81 + brightYellow: 102.1 + brightBlue: 97.2 + brightMagenta: 104.2 + brightCyan: 93.9 + brightWhite: 101.9 diff --git a/themes/progress.yaml b/themes/progress.yaml new file mode 100644 index 00000000..757fd281 --- /dev/null +++ b/themes/progress.yaml @@ -0,0 +1,49 @@ +name: "Progress" +source: + marketplace_id: "ElizaMuss.elizas-pride-themes" + version: "1.0.2" + installs: 848 + author: "Eliza Muss" + repo: "https://github.com/The-Gamer69/elizas-pride-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#868686" + red: "#BE1A21" + green: "#06BF00" + yellow: "#FDD817" + blue: "#2472C8" + magenta: "#6D2480" + cyan: "#68B4CB" + white: "#E5E5E5" + brightBlack: "#ABABAB" + brightRed: "#E2212A" + brightGreen: "#06BF00" + brightYellow: "#E3FF00" + brightBlue: "#0077E8" + brightMagenta: "#D945FF" + brightCyan: "#83E3FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 37.6 + red: 22.6 + green: 54.1 + yellow: 84.4 + blue: 28.4 + magenta: 11.2 + cyan: 56.1 + white: 91 + brightBlack: 56.8 + brightRed: 31.2 + brightGreen: 54.1 + brightYellow: 98.9 + brightBlue: 32.2 + brightMagenta: 41.9 + brightCyan: 81.7 + brightWhite: 91 diff --git a/themes/project-dark-theme-soft.yaml b/themes/project-dark-theme-soft.yaml new file mode 100644 index 00000000..7d3bba4e --- /dev/null +++ b/themes/project-dark-theme-soft.yaml @@ -0,0 +1,49 @@ +name: "project-dark-theme-soft" +source: + marketplace_id: "matheugoes.project-dark-theme" + version: "1.0.2" + installs: 97 + author: "Matheu Góes" + repo: "https://github.com/matheugoes/project-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=matheugoes.project-dark-theme" +colors: + bg: "#171717" + fg: "#D4D4D4" + black: "#171717" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.5 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/prom-wiki.yaml b/themes/prom-wiki.yaml new file mode 100644 index 00000000..fe278157 --- /dev/null +++ b/themes/prom-wiki.yaml @@ -0,0 +1,49 @@ +name: "Prom-Wiki" +source: + marketplace_id: "KeveenMenezes.Prometheus" + version: "0.2.5" + installs: 1163 + author: "keveen Menezes" + repo: "https://github.com/KeveenMenezes/Prometheus" + url: "https://marketplace.visualstudio.com/items?itemName=KeveenMenezes.Prometheus" +colors: + bg: "#1B1B1B" + fg: "#888888" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 37.2 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/pronight.yaml b/themes/pronight.yaml new file mode 100644 index 00000000..40ea3728 --- /dev/null +++ b/themes/pronight.yaml @@ -0,0 +1,49 @@ +name: "ProNight" +source: + marketplace_id: "huzaifamushtaq.pronight" + version: "0.0.1" + installs: 16 + author: "Huzaifa Mushtaq" + repo: "https://github.com/huzaifamushtaqdev/pronight" + url: "https://marketplace.visualstudio.com/items?itemName=huzaifamushtaq.pronight" +colors: + bg: "#050912" + fg: "#DFE6F5" + black: "#0C1118" + red: "#FF7B72" + green: "#5FD69F" + yellow: "#EAB05F" + blue: "#4FA3FF" + magenta: "#C4B5FF" + cyan: "#4FC7FF" + white: "#CBD7E8" + brightBlack: "#273248" + brightRed: "#FF8F85" + brightGreen: "#73E6B0" + brightYellow: "#F0C674" + brightBlue: "#9BCFFF" + brightMagenta: "#D7C2FF" + brightCyan: "#7EE2FF" + brightWhite: "#E7EEFC" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 91.3 + black: 0 + red: 52.9 + green: 69.1 + yellow: 65.5 + blue: 51 + magenta: 67.9 + cyan: 66 + white: 81.5 + brightBlack: 0 + brightRed: 59 + brightGreen: 78.5 + brightYellow: 75.5 + brightBlue: 74.2 + brightMagenta: 75.5 + brightCyan: 80.8 + brightWhite: 96.4 diff --git a/themes/proper-dracula.yaml b/themes/proper-dracula.yaml new file mode 100644 index 00000000..b36aff01 --- /dev/null +++ b/themes/proper-dracula.yaml @@ -0,0 +1,49 @@ +name: "Proper Dracula" +source: + marketplace_id: "properup.proper-theme" + version: "2.0.1" + installs: 299 + author: "properup" + repo: "https://github.com/sirpeebs/proper-theme" + url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" +colors: + bg: "#252836" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 104.3 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.9 + magenta: 27.2 + cyan: 45 + white: 87.5 + brightBlack: 19.5 + brightRed: 36 + brightGreen: 61 + brightYellow: 93.1 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.5 diff --git a/themes/proper-pure.yaml b/themes/proper-pure.yaml new file mode 100644 index 00000000..4880b9bb --- /dev/null +++ b/themes/proper-pure.yaml @@ -0,0 +1,49 @@ +name: "Proper Pure" +source: + marketplace_id: "properup.proper-theme" + version: "2.0.1" + installs: 299 + author: "properup" + repo: "https://github.com/sirpeebs/proper-theme" + url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" +colors: + bg: "#1F2846" + fg: "#866DFF" + black: "#7D7D7D" + red: "#A0B0FF" + green: "#27E49B" + yellow: "#E5E510" + blue: "#5798E0" + magenta: "#E055E0" + cyan: "#17D6E0" + white: "#FDFDFD" + brightBlack: "#A7A7A7" + brightRed: "#A3B3FF" + brightGreen: "#44FFB7" + brightYellow: "#F5F543" + brightBlue: "#5FABFF" + brightMagenta: "#FF7BFF" + brightCyan: "#2EEFF9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 270 + contrast: + fg: 33.5 + black: 29.6 + red: 58.2 + green: 70.6 + yellow: 82.8 + blue: 41.4 + magenta: 39.5 + cyan: 66.4 + white: 102.8 + brightBlack: 50.8 + brightRed: 59.7 + brightGreen: 86 + brightYellow: 92.9 + brightBlue: 51.2 + brightMagenta: 55.6 + brightCyan: 80.2 + brightWhite: 104.1 diff --git a/themes/proper-theme-alternate-2.yaml b/themes/proper-theme-alternate-2.yaml new file mode 100644 index 00000000..2105de6c --- /dev/null +++ b/themes/proper-theme-alternate-2.yaml @@ -0,0 +1,49 @@ +name: "Proper Theme Alternate 2" +source: + marketplace_id: "properup.proper-theme" + version: "2.0.1" + installs: 299 + author: "properup" + repo: "https://github.com/sirpeebs/proper-theme" + url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" +colors: + bg: "#171C2A" + fg: "#D4C9FF" + black: "#131313" + red: "#CB3030" + green: "#14D98E" + yellow: "#DBDB0B" + blue: "#218BFF" + magenta: "#BC3FBC" + cyan: "#00E7FF" + white: "#F2F2F2" + brightBlack: "#242222" + brightRed: "#F52F2F" + brightGreen: "#47FFB5" + brightYellow: "#EBFF00" + brightBlue: "#5CC2FF" + brightMagenta: "#D670D6" + brightCyan: "#6CE2FF" + brightWhite: "#F9F5F5" +meta: + mode: "dark" + accent: "orange" + hue: 269 + contrast: + fg: 76.4 + black: 0 + red: 25.5 + green: 66.8 + yellow: 79 + blue: 39.4 + magenta: 29.1 + cyan: 78.4 + white: 97.7 + brightBlack: 0 + brightRed: 35.2 + brightGreen: 88.2 + brightYellow: 98.3 + brightBlue: 62.8 + brightMagenta: 44.7 + brightCyan: 78.2 + brightWhite: 100.2 diff --git a/themes/proper-theme-alternate-fork.yaml b/themes/proper-theme-alternate-fork.yaml new file mode 100644 index 00000000..cbe1c015 --- /dev/null +++ b/themes/proper-theme-alternate-fork.yaml @@ -0,0 +1,49 @@ +name: "Proper Theme Alternate Fork" +source: + marketplace_id: "properup.proper-theme" + version: "2.0.1" + installs: 299 + author: "properup" + repo: "https://github.com/sirpeebs/proper-theme" + url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" +colors: + bg: "#191E30" + fg: "#D4C9FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#218BFF" + magenta: "#BC3FBC" + cyan: "#00CDFF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#5CC2FF" + brightMagenta: "#D670D6" + brightCyan: "#5FE0FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 272 + contrast: + fg: 76.1 + black: 0 + red: 25.8 + green: 52 + yellow: 84.7 + blue: 39 + magenta: 28.8 + cyan: 65.7 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 62.5 + brightMagenta: 44.4 + brightCyan: 76.3 + brightWhite: 89.1 diff --git a/themes/proper-theme-fork.yaml b/themes/proper-theme-fork.yaml new file mode 100644 index 00000000..5991ef6e --- /dev/null +++ b/themes/proper-theme-fork.yaml @@ -0,0 +1,49 @@ +name: "Proper Theme - Fork" +source: + marketplace_id: "properup.proper-theme" + version: "2.0.1" + installs: 299 + author: "properup" + repo: "https://github.com/sirpeebs/proper-theme" + url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" +colors: + bg: "#181F3B" + fg: "#D4C9FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#218BFF" + magenta: "#BC3FBC" + cyan: "#00CDFF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#5CC2FF" + brightMagenta: "#D670D6" + brightCyan: "#5FE0FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 75.7 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 38.7 + magenta: 28.5 + cyan: 65.4 + white: 88.7 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 62.2 + brightMagenta: 44.1 + brightCyan: 76 + brightWhite: 88.7 diff --git a/themes/proper-up-for-what.yaml b/themes/proper-up-for-what.yaml new file mode 100644 index 00000000..ecb665e1 --- /dev/null +++ b/themes/proper-up-for-what.yaml @@ -0,0 +1,49 @@ +name: "Proper Up for What" +source: + marketplace_id: "properup.proper-theme" + version: "2.0.1" + installs: 299 + author: "properup" + repo: "https://github.com/sirpeebs/proper-theme" + url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" +colors: + bg: "#151832" + fg: "#3C3556" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#218BFF" + magenta: "#BC3FBC" + cyan: "#00CDFF" + white: "#E5E5E5" + brightBlack: "#44475A" + brightRed: "#F14857" + brightGreen: "#5EFEB3" + brightYellow: "#FFFB4C" + brightBlue: "#5CB2FF" + brightMagenta: "#E248F1" + brightCyan: "#48F1E2" + brightWhite: "#F7F8FA" +meta: + mode: "dark" + accent: "pink" + hue: 276 + contrast: + fg: 0 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 39.6 + magenta: 29.3 + cyan: 66.2 + white: 89.6 + brightBlack: 9.8 + brightRed: 37.7 + brightGreen: 88.5 + brightYellow: 99.6 + brightBlue: 56.3 + brightMagenta: 41.5 + brightCyan: 82.9 + brightWhite: 101.8 diff --git a/themes/proper.yaml b/themes/proper.yaml new file mode 100644 index 00000000..3e6b655f --- /dev/null +++ b/themes/proper.yaml @@ -0,0 +1,49 @@ +name: "Proper" +source: + marketplace_id: "properup.proper-theme" + version: "2.0.1" + installs: 299 + author: "properup" + repo: "https://github.com/sirpeebs/proper-theme" + url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" +colors: + bg: "#151D3D" + fg: "#FF62C9" + black: "#7D7D7D" + red: "#A0B0FF" + green: "#27E49B" + yellow: "#E5E510" + blue: "#5798E0" + magenta: "#E055E0" + cyan: "#17D6E0" + white: "#FDFDFD" + brightBlack: "#A7A7A7" + brightRed: "#A3B3FF" + brightGreen: "#44FFB7" + brightYellow: "#F5F543" + brightBlue: "#5FABFF" + brightMagenta: "#FF7BFF" + brightCyan: "#2EEFF9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 48.6 + black: 31.3 + red: 59.9 + green: 72.3 + yellow: 84.5 + blue: 43.1 + magenta: 41.2 + cyan: 68.1 + white: 104.5 + brightBlack: 52.5 + brightRed: 61.4 + brightGreen: 87.7 + brightYellow: 94.6 + brightBlue: 52.9 + brightMagenta: 57.3 + brightCyan: 81.9 + brightWhite: 105.8 diff --git a/themes/propurple.yaml b/themes/propurple.yaml new file mode 100644 index 00000000..0eba9e2f --- /dev/null +++ b/themes/propurple.yaml @@ -0,0 +1,49 @@ +name: "propurple" +source: + marketplace_id: "properup.proper-purple-theme" + version: "0.2.5" + installs: 1091 + author: "properup" + repo: "https://github.com/sirpeebs/proper-purple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-purple-theme" +colors: + bg: "#011330" + fg: "#FFE26C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 88.9 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/ps-dark.yaml b/themes/ps-dark.yaml new file mode 100644 index 00000000..ac934e37 --- /dev/null +++ b/themes/ps-dark.yaml @@ -0,0 +1,49 @@ +name: "PS Dark" +source: + marketplace_id: "ps-designs.startbust-theme" + version: "0.1.1" + installs: 226 + author: "Pavel Sanchez" + repo: "https://github.com/PaleBluDot/starburst-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ps-designs.startbust-theme" +colors: + bg: "#171717" + fg: "#D4D4D4" + black: "#D4D4D4" + red: "#DD656D" + green: "#4EBD8F" + yellow: "#D9DF34" + blue: "#0076A9" + magenta: "#D37FAC" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#D4D4D4" + brightRed: "#DD656D" + brightGreen: "#4EBD8F" + brightYellow: "#D9DF34" + brightBlue: "#0076A9" + brightMagenta: "#D37FAC" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 79.5 + black: 79.5 + red: 39.6 + green: 55.3 + yellow: 81.3 + blue: 26.5 + magenta: 46.6 + cyan: 53 + white: 79.5 + brightBlack: 79.5 + brightRed: 39.6 + brightGreen: 55.3 + brightYellow: 81.3 + brightBlue: 26.5 + brightMagenta: 46.6 + brightCyan: 53 + brightWhite: 79.5 diff --git a/themes/ps-light.yaml b/themes/ps-light.yaml new file mode 100644 index 00000000..af5e97f9 --- /dev/null +++ b/themes/ps-light.yaml @@ -0,0 +1,49 @@ +name: "PS Light" +source: + marketplace_id: "ps-designs.startbust-theme" + version: "0.1.1" + installs: 226 + author: "Pavel Sanchez" + repo: "https://github.com/PaleBluDot/starburst-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ps-designs.startbust-theme" +colors: + bg: "#BABABA" + fg: "#1C1A1A" + black: "#1C1A1A" + red: "#DD656D" + green: "#4EBD8F" + yellow: "#D9DF34" + blue: "#0076A9" + magenta: "#D37FAC" + cyan: "#5FB3B3" + white: "#1C1A1A" + brightBlack: "#1C1A1A" + brightRed: "#DD656D" + brightGreen: "#4EBD8F" + brightYellow: "#D9DF34" + brightBlue: "#0076A9" + brightMagenta: "#D37FAC" + brightCyan: "#5FB3B3" + brightWhite: "#1C1A1A" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 64.8 + black: 64.8 + red: 21.6 + green: 0 + yellow: 16.1 + blue: 34.8 + magenta: 14.8 + cyan: 8.6 + white: 64.8 + brightBlack: 64.8 + brightRed: 21.6 + brightGreen: 0 + brightYellow: 16.1 + brightBlue: 34.8 + brightMagenta: 14.8 + brightCyan: 8.6 + brightWhite: 64.8 diff --git a/themes/ps-mid-blue.yaml b/themes/ps-mid-blue.yaml new file mode 100644 index 00000000..3dd4925d --- /dev/null +++ b/themes/ps-mid-blue.yaml @@ -0,0 +1,49 @@ +name: "PS Mid-Blue" +source: + marketplace_id: "ps-designs.startbust-theme" + version: "0.1.1" + installs: 226 + author: "Pavel Sanchez" + repo: "https://github.com/PaleBluDot/starburst-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ps-designs.startbust-theme" +colors: + bg: "#252B30" + fg: "#D4D4D4" + black: "#D4D4D4" + red: "#DD656D" + green: "#4EBD8F" + yellow: "#D9DF34" + blue: "#0076A9" + magenta: "#D37FAC" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#D4D4D4" + brightRed: "#DD656D" + brightGreen: "#4EBD8F" + brightYellow: "#D9DF34" + brightBlue: "#0076A9" + brightMagenta: "#D37FAC" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "green" + hue: 243 + contrast: + fg: 76.6 + black: 76.6 + red: 36.8 + green: 52.5 + yellow: 78.5 + blue: 23.6 + magenta: 43.7 + cyan: 50.2 + white: 76.6 + brightBlack: 76.6 + brightRed: 36.8 + brightGreen: 52.5 + brightYellow: 78.5 + brightBlue: 23.6 + brightMagenta: 43.7 + brightCyan: 50.2 + brightWhite: 76.6 diff --git a/themes/ps-syntax.yaml b/themes/ps-syntax.yaml new file mode 100644 index 00000000..e1507436 --- /dev/null +++ b/themes/ps-syntax.yaml @@ -0,0 +1,49 @@ +name: "PS-Syntax" +source: + marketplace_id: "pstaub.ps-syntax" + version: "0.0.4" + installs: 651 + author: "pstaub" + repo: "https://github.com/pstaubs/ps-syntax" + url: "https://marketplace.visualstudio.com/items?itemName=pstaub.ps-syntax" +colors: + bg: "#1D1F21" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.9 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.4 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/pudding-dark-caramel-beta.yaml b/themes/pudding-dark-caramel-beta.yaml new file mode 100644 index 00000000..37f4d61f --- /dev/null +++ b/themes/pudding-dark-caramel-beta.yaml @@ -0,0 +1,49 @@ +name: "Pudding Dark · Caramel (Beta)" +source: + marketplace_id: "Bitcookies.pudding-vscode-theme" + version: "3.1.5" + installs: 1914 + author: "Bitcookies" + repo: "https://github.com/bitcookies/pudding-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" +colors: + bg: "#1B1C2B" + fg: "#D0D2DA" + black: "#151621" + red: "#F97583" + green: "#A8D4A9" + yellow: "#F9CB7E" + blue: "#79B8FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#E1E4E8" + brightBlack: "#151621" + brightRed: "#F97583" + brightGreen: "#A8D4A9" + brightYellow: "#F9CB7E" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#39C5CF" + brightWhite: "#E1E4E8" +meta: + mode: "dark" + accent: "orange" + hue: 281 + contrast: + fg: 77.6 + black: 0 + red: 49 + green: 72.1 + yellow: 77.6 + blue: 60.1 + magenta: 50.6 + cyan: 60.1 + white: 88.4 + brightBlack: 0 + brightRed: 49 + brightGreen: 72.1 + brightYellow: 77.6 + brightBlue: 60.1 + brightMagenta: 50.6 + brightCyan: 60.1 + brightWhite: 88.4 diff --git a/themes/pudding-dark-christmas.yaml b/themes/pudding-dark-christmas.yaml new file mode 100644 index 00000000..f7ac8477 --- /dev/null +++ b/themes/pudding-dark-christmas.yaml @@ -0,0 +1,49 @@ +name: "Pudding Dark · Christmas" +source: + marketplace_id: "Bitcookies.pudding-vscode-theme" + version: "3.1.5" + installs: 1914 + author: "Bitcookies" + repo: "https://github.com/bitcookies/pudding-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" +colors: + bg: "#09100A" + fg: "#A3C1E8" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D0D2DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: 149 + contrast: + fg: 67.4 + black: 19.8 + red: 37.6 + green: 62.9 + yellow: 93.4 + blue: 39.6 + magenta: 52 + cyan: 61.5 + white: 79 + brightBlack: 48.4 + brightRed: 50.4 + brightGreen: 79.7 + brightYellow: 93.4 + brightBlue: 61.5 + brightMagenta: 52 + brightCyan: 70.1 + brightWhite: 104.8 diff --git a/themes/pudding-dark.yaml b/themes/pudding-dark.yaml new file mode 100644 index 00000000..d64c54f2 --- /dev/null +++ b/themes/pudding-dark.yaml @@ -0,0 +1,49 @@ +name: "Pudding Dark" +source: + marketplace_id: "Bitcookies.pudding-vscode-theme" + version: "3.1.5" + installs: 1914 + author: "Bitcookies" + repo: "https://github.com/bitcookies/pudding-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" +colors: + bg: "#1B1C2B" + fg: "#A3C1E8" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D0D2DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: 281 + contrast: + fg: 66 + black: 18.4 + red: 36.2 + green: 61.5 + yellow: 92 + blue: 38.2 + magenta: 50.6 + cyan: 60.1 + white: 77.6 + brightBlack: 47 + brightRed: 49 + brightGreen: 78.3 + brightYellow: 92 + brightBlue: 60.1 + brightMagenta: 50.6 + brightCyan: 68.7 + brightWhite: 103.4 diff --git a/themes/pudding-light-jk.yaml b/themes/pudding-light-jk.yaml new file mode 100644 index 00000000..94c844ca --- /dev/null +++ b/themes/pudding-light-jk.yaml @@ -0,0 +1,49 @@ +name: "Pudding Light · JK" +source: + marketplace_id: "Bitcookies.pudding-vscode-theme" + version: "3.1.5" + installs: 1914 + author: "Bitcookies" + repo: "https://github.com/bitcookies/pudding-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" +colors: + bg: "#EEF3F7" + fg: "#6C84B0" + black: "#24292E" + red: "#D73A49" + green: "#28A745" + yellow: "#DBAB09" + blue: "#0366D6" + magenta: "#5A32A3" + cyan: "#1B7C83" + white: "#6A737D" + brightBlack: "#959DA5" + brightRed: "#CB2431" + brightGreen: "#22863A" + brightYellow: "#B08800" + brightBlue: "#005CC5" + brightMagenta: "#5A32A3" + brightCyan: "#3192AA" + brightWhite: "#D1D5DA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 57.6 + black: 93.9 + red: 62.8 + green: 50.3 + yellow: 34 + blue: 68.6 + magenta: 81.6 + cyan: 66.2 + white: 65.8 + brightBlack: 45.5 + brightRed: 67.9 + brightGreen: 64.1 + brightYellow: 52.5 + brightBlue: 72.9 + brightMagenta: 81.6 + brightCyan: 55.7 + brightWhite: 14.9 diff --git a/themes/pudding-light.yaml b/themes/pudding-light.yaml new file mode 100644 index 00000000..98a3bc23 --- /dev/null +++ b/themes/pudding-light.yaml @@ -0,0 +1,49 @@ +name: "Pudding Light" +source: + marketplace_id: "Bitcookies.pudding-vscode-theme" + version: "3.1.5" + installs: 1914 + author: "Bitcookies" + repo: "https://github.com/bitcookies/pudding-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" +colors: + bg: "#F9ECDD" + fg: "#A88809" + black: "#24292E" + red: "#D73A49" + green: "#28A745" + yellow: "#DBAB09" + blue: "#0366D6" + magenta: "#5A32A3" + cyan: "#1B7C83" + white: "#6A737D" + brightBlack: "#959DA5" + brightRed: "#CB2431" + brightGreen: "#22863A" + brightYellow: "#B08800" + brightBlue: "#005CC5" + brightMagenta: "#5A32A3" + brightCyan: "#3192AA" + brightWhite: "#803618" +meta: + mode: "light" + accent: "orange" + hue: 71 + contrast: + fg: 51 + black: 91.3 + red: 60.2 + green: 47.7 + yellow: 31.4 + blue: 66 + magenta: 79 + cyan: 63.6 + white: 63.2 + brightBlack: 42.9 + brightRed: 65.3 + brightGreen: 61.5 + brightYellow: 49.9 + brightBlue: 70.3 + brightMagenta: 79 + brightCyan: 53.1 + brightWhite: 78.6 diff --git a/themes/pulpy-orange.yaml b/themes/pulpy-orange.yaml new file mode 100644 index 00000000..d366af18 --- /dev/null +++ b/themes/pulpy-orange.yaml @@ -0,0 +1,49 @@ +name: "Pulpy-Orange" +source: + marketplace_id: "Tinuthampi.Pulpy-Orange" + version: "0.0.3" + installs: 2430 + author: "Tinu thampi" + repo: "https://github.com/Tinu-thampi13/Pulpy-Orange" + url: "https://marketplace.visualstudio.com/items?itemName=Tinuthampi.Pulpy-Orange" +colors: + bg: "#1B1B1B" + fg: "#FFB3B3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 71.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/pulsar-default.yaml b/themes/pulsar-default.yaml new file mode 100644 index 00000000..c8a38292 --- /dev/null +++ b/themes/pulsar-default.yaml @@ -0,0 +1,49 @@ +name: "Pulsar Default" +source: + marketplace_id: "dmrowiec-pl.pulsar-theme" + version: "1.0.8" + installs: 714 + author: "Damian Mrowiec" + repo: "https://github.com/dmrowiec-pl/pulsar-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dmrowiec-pl.pulsar-theme" +colors: + bg: "#1E1E1E" + fg: "#C5C8C6" + black: "#1E1E1E" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 71 + black: 0 + red: 23.8 + green: 52.2 + yellow: 56.8 + blue: 33.8 + magenta: 31.4 + cyan: 49.6 + white: 87.7 + brightBlack: 21.2 + brightRed: 36.5 + brightGreen: 76.2 + brightYellow: 83.1 + brightBlue: 49 + brightMagenta: 45.7 + brightCyan: 72.6 + brightWhite: 101.1 diff --git a/themes/pulsar.yaml b/themes/pulsar.yaml new file mode 100644 index 00000000..3664d3bb --- /dev/null +++ b/themes/pulsar.yaml @@ -0,0 +1,49 @@ +name: "Pulsar" +source: + marketplace_id: "dmrowiec-pl.pulsar-theme" + version: "1.0.8" + installs: 714 + author: "Damian Mrowiec" + repo: "https://github.com/dmrowiec-pl/pulsar-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dmrowiec-pl.pulsar-theme" +colors: + bg: "#1E1E1E" + fg: "#C5C8C6" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 71 + black: 17.1 + red: 45.9 + green: 45.6 + yellow: 45.9 + blue: 45.7 + magenta: 45.4 + cyan: 60 + white: 46.6 + brightBlack: 24.2 + brightRed: 58.6 + brightGreen: 58.2 + brightYellow: 58.5 + brightBlue: 58.4 + brightMagenta: 72.3 + brightCyan: 68.6 + brightWhite: 80.7 diff --git a/themes/pulse-balanced-purple.yaml b/themes/pulse-balanced-purple.yaml new file mode 100644 index 00000000..fc0cb272 --- /dev/null +++ b/themes/pulse-balanced-purple.yaml @@ -0,0 +1,49 @@ +name: "Pulse Balanced Purple" +source: + marketplace_id: "IrvinBenitez.Pulse-theme-vscode" + version: "1.0.2" + installs: 104 + author: "Irvin Benitez" + repo: "https://github.com/PulseStudio07/VScode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" +colors: + bg: "#1E1E2E" + fg: "#D5D5E3" + black: "#1E1E2E" + red: "#D89AAA" + green: "#A8C99A" + yellow: "#DDC8A3" + blue: "#9D9DDB" + magenta: "#C49AD8" + cyan: "#9AD8D8" + white: "#D5D5E3" + brightBlack: "#5A5A6E" + brightRed: "#E8AABA" + brightGreen: "#B8D9AA" + brightYellow: "#EDD8B3" + brightBlue: "#ADADEB" + brightMagenta: "#D4AAE8" + brightCyan: "#AAE8E8" + brightWhite: "#EBEBF5" +meta: + mode: "dark" + accent: "magenta" + hue: 284 + contrast: + fg: 79.7 + black: 0 + red: 54.7 + green: 66.3 + yellow: 72.7 + blue: 50.2 + magenta: 53.9 + cyan: 74.2 + white: 79.7 + brightBlack: 16.7 + brightRed: 63.5 + brightGreen: 75.7 + brightYellow: 82.4 + brightBlue: 58.9 + brightMagenta: 62.7 + brightCyan: 83.8 + brightWhite: 93.3 diff --git a/themes/pulse-comfort-light.yaml b/themes/pulse-comfort-light.yaml new file mode 100644 index 00000000..5b9d8911 --- /dev/null +++ b/themes/pulse-comfort-light.yaml @@ -0,0 +1,49 @@ +name: "Pulse Comfort Light" +source: + marketplace_id: "IrvinBenitez.Pulse-theme-vscode" + version: "1.0.2" + installs: 104 + author: "Irvin Benitez" + repo: "https://github.com/PulseStudio07/VScode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" +colors: + bg: "#F5F2F8" + fg: "#2E2838" + black: "#3E3848" + red: "#B8576D" + green: "#5D9857" + yellow: "#C89F4D" + blue: "#5D6DBB" + magenta: "#9D57B8" + cyan: "#4D9D9D" + white: "#E5E0ED" + brightBlack: "#6A5E7E" + brightRed: "#C8677D" + brightGreen: "#6DA867" + brightYellow: "#D8AF5D" + brightBlue: "#6D7DCB" + brightMagenta: "#AD67C8" + brightCyan: "#5DADAD" + brightWhite: "#F5F0FD" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 93.8 + black: 88.9 + red: 64 + green: 54.8 + yellow: 41.2 + blue: 66.1 + magenta: 65 + cyan: 51.6 + white: 7.5 + brightBlack: 72.8 + brightRed: 57 + brightGreen: 47 + brightYellow: 32.9 + brightBlue: 58.8 + brightMagenta: 58 + brightCyan: 43.7 + brightWhite: 0 diff --git a/themes/pulse-soft-purple.yaml b/themes/pulse-soft-purple.yaml new file mode 100644 index 00000000..44092a86 --- /dev/null +++ b/themes/pulse-soft-purple.yaml @@ -0,0 +1,49 @@ +name: "Pulse Soft Purple" +source: + marketplace_id: "IrvinBenitez.Pulse-theme-vscode" + version: "1.0.2" + installs: 104 + author: "Irvin Benitez" + repo: "https://github.com/PulseStudio07/VScode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" +colors: + bg: "#2A2A35" + fg: "#D0D0DD" + black: "#2A2A35" + red: "#C9919E" + green: "#9DB899" + yellow: "#D4C49D" + blue: "#9D9DC9" + magenta: "#B899C9" + cyan: "#99C9C9" + white: "#D0D0DD" + brightBlack: "#5A5A6A" + brightRed: "#D9A1AE" + brightGreen: "#ADC8A9" + brightYellow: "#E4D4AD" + brightBlue: "#ADAED9" + brightMagenta: "#C8A9D9" + brightCyan: "#A9D9D9" + brightWhite: "#E5E5F0" +meta: + mode: "dark" + accent: "magenta" + hue: 285 + contrast: + fg: 74.6 + black: 0 + red: 46.9 + green: 55.9 + yellow: 67.6 + blue: 47.2 + magenta: 49.1 + cyan: 64.7 + white: 74.6 + brightBlack: 14.6 + brightRed: 55.5 + brightGreen: 64.9 + brightYellow: 77.2 + brightBlue: 56.3 + brightMagenta: 57.8 + brightCyan: 74.1 + brightWhite: 87.5 diff --git a/themes/pumpkin.yaml b/themes/pumpkin.yaml new file mode 100644 index 00000000..94dd7a6f --- /dev/null +++ b/themes/pumpkin.yaml @@ -0,0 +1,49 @@ +name: "Pumpkin" +source: + marketplace_id: "IvanPerez9.pumpkin-color-theme" + version: "0.3.0" + installs: 695 + author: "IvanPerez9" + repo: "https://github.com/IvanPerez9/pumpkin-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=IvanPerez9.pumpkin-color-theme" +colors: + bg: "#171616" + fg: "#A7B5E0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 61.9 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 29.2 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/punjab-land-of-five-rivers.yaml b/themes/punjab-land-of-five-rivers.yaml new file mode 100644 index 00000000..39a352ad --- /dev/null +++ b/themes/punjab-land-of-five-rivers.yaml @@ -0,0 +1,49 @@ +name: "Punjab - Land of Five Rivers" +source: + marketplace_id: "ProudIndian.colors-of-india-themes" + version: "1.0.1" + installs: 37 + author: "Sachin Ghadi" + repo: "https://github.com/GhadiSachin/colors-of-india-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" +colors: + bg: "#1A1714" + fg: "#F5F0E8" + black: "#000000" + red: "#E74856" + green: "#4CAF50" + yellow: "#E91E63" + blue: "#3B8EEA" + magenta: "#B140AA" + cyan: "#29B8DB" + white: "#E5E5E5" + brightBlack: "#000000" + brightRed: "#E74856" + brightGreen: "#4CAF50" + brightYellow: "#E91E63" + brightBlue: "#3B8EEA" + brightMagenta: "#B140AA" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 97.3 + black: 0 + red: 35.8 + green: 47.5 + yellow: 32.6 + blue: 39.9 + magenta: 26.8 + cyan: 55.3 + white: 90 + brightBlack: 0 + brightRed: 35.8 + brightGreen: 47.5 + brightYellow: 32.6 + brightBlue: 39.9 + brightMagenta: 26.8 + brightCyan: 55.3 + brightWhite: 90 diff --git a/themes/punk-runner.yaml b/themes/punk-runner.yaml new file mode 100644 index 00000000..363c67be --- /dev/null +++ b/themes/punk-runner.yaml @@ -0,0 +1,49 @@ +name: "punk-runner" +source: + marketplace_id: "TheEdgesofBen.punk-runner" + version: "0.0.5" + installs: 8802 + author: "TheEdgesofBen" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TheEdgesofBen.punk-runner" +colors: + bg: "#050F0E" + fg: "#F2E6E9" + black: "#0F0F0F" + red: "#E6274D" + green: "#91E673" + yellow: "#E62E7A" + blue: "#83E6B4" + magenta: "#E66C84" + cyan: "#27E6B0" + white: "#CED9D3" + brightBlack: "#171717" + brightRed: "#FF1342" + brightGreen: "#8FFF66" + brightYellow: "#FF1979" + brightBlue: "#78FFBB" + brightMagenta: "#FF456A" + brightCyan: "#12FFBC" + brightWhite: "#F2E6E9" +meta: + mode: "dark" + accent: "red" + hue: 188 + contrast: + fg: 93.2 + black: 0 + red: 32.7 + green: 78.7 + yellow: 34.3 + blue: 79.4 + magenta: 44.4 + cyan: 75.8 + white: 81.6 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 91 + brightYellow: 39.1 + brightBlue: 91.6 + brightMagenta: 42.1 + brightCyan: 89 + brightWhite: 93.2 diff --git a/themes/pur-theme-v1.yaml b/themes/pur-theme-v1.yaml new file mode 100644 index 00000000..f1af1a74 --- /dev/null +++ b/themes/pur-theme-v1.yaml @@ -0,0 +1,49 @@ +name: "Pur+ Theme V1" +source: + marketplace_id: "DevEduardo.purplus-theme" + version: "1.0.1" + installs: 397 + author: "DevEduardo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=DevEduardo.purplus-theme" +colors: + bg: "#181820" + fg: "#D4D4D4" + black: "#FF79C6" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#7B9BFF" + magenta: "#BD93F9" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#BC5E94" + brightRed: "#CF4D4D" + brightGreen: "#37BC59" + brightYellow: "#C6CD74" + brightBlue: "#6484E6" + brightMagenta: "#9576C2" + brightCyan: "#55BFD5" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 285 + contrast: + fg: 79.3 + black: 54.4 + red: 43.2 + green: 84.7 + yellow: 98.4 + blue: 49.6 + magenta: 53.5 + cyan: 83.8 + white: 101.8 + brightBlack: 33 + brightRed: 31.2 + brightGreen: 52.7 + brightYellow: 71.4 + brightBlue: 38 + brightMagenta: 35.8 + brightCyan: 59.2 + brightWhite: 89.8 diff --git a/themes/purble-0-0-2-fork-fork.yaml b/themes/purble-0-0-2-fork-fork.yaml new file mode 100644 index 00000000..c56c8012 --- /dev/null +++ b/themes/purble-0-0-2-fork-fork.yaml @@ -0,0 +1,49 @@ +name: "purble 0.0.2 - Fork - Fork" +source: + marketplace_id: "PSJoon.psjoon" + version: "0.0.3" + installs: 5171 + author: "PSJoon" + repo: "https://github.com/PSjoon/testes" + url: "https://marketplace.visualstudio.com/items?itemName=PSJoon.psjoon" +colors: + bg: "#0A0115" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 305 + contrast: + fg: 107.8 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/purddy.yaml b/themes/purddy.yaml new file mode 100644 index 00000000..c9a09908 --- /dev/null +++ b/themes/purddy.yaml @@ -0,0 +1,49 @@ +name: "Purddy" +source: + marketplace_id: "Cyphernetes.purddy" + version: "0.0.2" + installs: 57 + author: "Avital Tamir" + repo: "https://github.com/AvitalTamir/vscode-purddy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Cyphernetes.purddy" +colors: + bg: "#FFF1E6" + fg: "#5C3D2E" + black: "#000000" + red: "#FEA0A3" + green: "#1DBB9B" + yellow: "#FFFBCC" + blue: "#B2D6FB" + magenta: "#A665A6" + cyan: "#9CCFD8" + white: "#EDEDED" + brightBlack: "#686868" + brightRed: "#FEB9B9" + brightGreen: "#3CC5AA" + brightYellow: "#FFFBCC" + brightBlue: "#B2D6FB" + brightMagenta: "#FFD1DC" + brightCyan: "#9F7AC6" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "teal" + hue: null + contrast: + fg: 85.4 + black: 99.1 + red: 30.3 + green: 40.4 + yellow: 0 + blue: 16.8 + magenta: 61.6 + cyan: 23.5 + white: 0 + brightBlack: 70.9 + brightRed: 21.2 + brightGreen: 34.9 + brightYellow: 0 + brightBlue: 16.8 + brightMagenta: 10.8 + brightCyan: 55 + brightWhite: 0 diff --git a/themes/pure-black.yaml b/themes/pure-black.yaml new file mode 100644 index 00000000..e48c219c --- /dev/null +++ b/themes/pure-black.yaml @@ -0,0 +1,49 @@ +name: "Pure Black" +source: + marketplace_id: "SscSPs.pure-black" + version: "0.1.0" + installs: 4230 + author: "Sahil Soni" + repo: "https://github.com/SscSPs/pure-black-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SscSPs.pure-black" +colors: + bg: "#000000" + fg: "#DFDFDF" + black: "#1B2025" + red: "#BA0E2E" + green: "#00AE88" + yellow: "#C4C701" + blue: "#007AAE" + magenta: "#9100AE" + cyan: "#0490A0" + white: "#C3C3C3" + brightBlack: "#3B4651" + brightRed: "#F03E5F" + brightGreen: "#00C200" + brightYellow: "#E9DA57" + brightBlue: "#526AD4" + brightMagenta: "#C573EB" + brightCyan: "#00EEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 21.5 + green: 48.1 + yellow: 68.7 + blue: 29.2 + magenta: 18.4 + cyan: 36.6 + white: 70.4 + brightBlack: 10.1 + brightRed: 37.8 + brightGreen: 55.5 + brightYellow: 82.6 + brightBlue: 28.7 + brightMagenta: 45.6 + brightCyan: 83.5 + brightWhite: 107.9 diff --git a/themes/pure-dark.yaml b/themes/pure-dark.yaml new file mode 100644 index 00000000..5811d380 --- /dev/null +++ b/themes/pure-dark.yaml @@ -0,0 +1,49 @@ +name: "Pure Dark" +source: + marketplace_id: "IKyzo.ikyzo-theme" + version: "1.0.0" + installs: 23 + author: "IKyzo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=IKyzo.ikyzo-theme" +colors: + bg: "#101010" + fg: "#AAAAAA" + black: "#101010" + red: "#7E7E7E" + green: "#525252" + yellow: "#A9A9A9" + blue: "#3C3C3C" + magenta: "#939393" + cyan: "#686868" + white: "#BFBFBF" + brightBlack: "#262626" + brightRed: "#7E7E7E" + brightGreen: "#525252" + brightYellow: "#A9A9A9" + brightBlue: "#3C3C3C" + brightMagenta: "#939393" + brightCyan: "#686868" + brightWhite: "#EBEBEB" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 55.8 + black: 0 + red: 33.4 + green: 14.5 + yellow: 55.3 + blue: 0 + magenta: 43.7 + cyan: 23.5 + white: 67.6 + brightBlack: 0 + brightRed: 33.4 + brightGreen: 14.5 + brightYellow: 55.3 + brightBlue: 0 + brightMagenta: 43.7 + brightCyan: 23.5 + brightWhite: 94.4 diff --git a/themes/pure-light.yaml b/themes/pure-light.yaml new file mode 100644 index 00000000..f1a3f1fc --- /dev/null +++ b/themes/pure-light.yaml @@ -0,0 +1,49 @@ +name: "Pure Light" +source: + marketplace_id: "me7uiz.pure-themes" + version: "0.1.6" + installs: 641 + author: "me7uiz" + repo: "https://github.com/meluiz/pure-themes" + url: "https://marketplace.visualstudio.com/items?itemName=me7uiz.pure-themes" +colors: + bg: "#FFFFFF" + fg: "#27272A" + black: "#3F3F46" + red: "#DC2626" + green: "#77CC00" + yellow: "#F29718" + blue: "#F4F4F5" + magenta: "#9966CC" + cyan: "#4DBF99" + white: "#C7C7C7" + brightBlack: "#A1A1AA" + brightRed: "#D6656A" + brightGreen: "#A3D900" + brightYellow: "#E7C547" + brightBlue: "#6871FF" + brightMagenta: "#A37ACC" + brightCyan: "#57D9AD" + brightWhite: "#71717A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.8 + black: 94.3 + red: 71.6 + green: 38.7 + yellow: 44.5 + blue: 0 + magenta: 67.9 + cyan: 44.6 + white: 30.1 + brightBlack: 50.2 + brightRed: 62.5 + brightGreen: 29.5 + brightYellow: 29.7 + brightBlue: 66 + brightMagenta: 61.1 + brightCyan: 31.9 + brightWhite: 73.5 diff --git a/themes/pureblack.yaml b/themes/pureblack.yaml new file mode 100644 index 00000000..93b372c0 --- /dev/null +++ b/themes/pureblack.yaml @@ -0,0 +1,49 @@ +name: "PureBlack" +source: + marketplace_id: "jeandeaual.noir" + version: "0.0.2" + installs: 1501 + author: "jeandeaual" + repo: "https://github.com/jeandeaual/vscode-theme-noir" + url: "https://marketplace.visualstudio.com/items?itemName=jeandeaual.noir" +colors: + bg: "#000000" + fg: "#F2E5BC" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#13772C" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#F42C3E" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#99C6CA" + brightMagenta: "#D3869B" + brightCyan: "#7EC16E" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.2 + black: 0 + red: 26.3 + green: 43.9 + yellow: 23.9 + blue: 32.6 + magenta: 32.7 + cyan: 43 + white: 48.2 + brightBlack: 37.4 + brightRed: 36.5 + brightGreen: 62.2 + brightYellow: 72.8 + brightBlue: 67.4 + brightMagenta: 49 + brightCyan: 60 + brightWhite: 85.4 diff --git a/themes/puri-twilite.yaml b/themes/puri-twilite.yaml new file mode 100644 index 00000000..8bddf5ca --- /dev/null +++ b/themes/puri-twilite.yaml @@ -0,0 +1,49 @@ +name: "Puri Twilite" +source: + marketplace_id: "Sayam.puri-twilite" + version: "0.0.2" + installs: 36 + author: "Sayam" + repo: "https://github.com/sayampradhan/puri-twilite" + url: "https://marketplace.visualstudio.com/items?itemName=Sayam.puri-twilite" +colors: + bg: "#240702" + fg: "#FFFFFF" + black: "#5C2B1E" + red: "#FF7E67" + green: "#42D97C" + yellow: "#FFCC00" + blue: "#00AFFF" + magenta: "#FF7E67" + cyan: "#00E0E0" + white: "#FFFFFF" + brightBlack: "#5C2B1E" + brightRed: "#FF7E67" + brightGreen: "#42D97C" + brightYellow: "#FFCC00" + brightBlue: "#00AFFF" + brightMagenta: "#FF7E67" + brightCyan: "#00E0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 36 + contrast: + fg: 107.2 + black: 0 + red: 52.9 + green: 68 + yellow: 78.9 + blue: 53.9 + magenta: 52.9 + cyan: 74.2 + white: 107.2 + brightBlack: 0 + brightRed: 52.9 + brightGreen: 68 + brightYellow: 78.9 + brightBlue: 53.9 + brightMagenta: 52.9 + brightCyan: 74.2 + brightWhite: 107.2 diff --git a/themes/purple-cake.yaml b/themes/purple-cake.yaml new file mode 100644 index 00000000..6b1ea687 --- /dev/null +++ b/themes/purple-cake.yaml @@ -0,0 +1,49 @@ +name: "Purple Cake" +source: + marketplace_id: "jker.purple-cake" + version: "1.0.2" + installs: 309 + author: "jker" + repo: "https://github.com/guidolee/jker-purple-cake" + url: "https://marketplace.visualstudio.com/items?itemName=jker.purple-cake" +colors: + bg: "#221F25" + fg: "#F4F4F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 308 + contrast: + fg: 98.5 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.3 + magenta: 28.6 + cyan: 46.4 + white: 88.9 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.9 + brightMagenta: 44.2 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/purple-cloud-minimal.yaml b/themes/purple-cloud-minimal.yaml new file mode 100644 index 00000000..02a84d67 --- /dev/null +++ b/themes/purple-cloud-minimal.yaml @@ -0,0 +1,49 @@ +name: "Purple-Cloud-Minimal" +source: + marketplace_id: "Keith-sys.purple-cloud-theme" + version: "1.0.0" + installs: 635 + author: "Keith-sys" + repo: "https://github.com/Keith-sys/purple-cloud-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Keith-sys.purple-cloud-theme" +colors: + bg: "#090B10" + fg: "#FFFFFF" + black: "#2F3B54" + red: "#FF0000" + green: "#BAE67E" + yellow: "#FFCC66" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#BAE67E" + brightYellow: "#FFCC66" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 107.7 + black: 0 + red: 37.4 + green: 82.7 + yellow: 80.1 + blue: 68.6 + magenta: 62.1 + cyan: 68.6 + white: 55.9 + brightBlack: 12 + brightRed: 45.7 + brightGreen: 82.7 + brightYellow: 80.1 + brightBlue: 68.6 + brightMagenta: 62.1 + brightCyan: 68.6 + brightWhite: 107.7 diff --git a/themes/purple-cloud-theme.yaml b/themes/purple-cloud-theme.yaml new file mode 100644 index 00000000..1f21df57 --- /dev/null +++ b/themes/purple-cloud-theme.yaml @@ -0,0 +1,49 @@ +name: "Purple Cloud Theme" +source: + marketplace_id: "Keith-sys.purple-cloud-theme" + version: "1.0.0" + installs: 635 + author: "Keith-sys" + repo: "https://github.com/Keith-sys/purple-cloud-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Keith-sys.purple-cloud-theme" +colors: + bg: "#0F111A" + fg: "#FFFFFF" + black: "#2F3B54" + red: "#FF0000" + green: "#BAE67E" + yellow: "#FFCC66" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#BAE67E" + brightYellow: "#FFCC66" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 107.3 + black: 0 + red: 37 + green: 82.4 + yellow: 79.7 + blue: 68.3 + magenta: 61.8 + cyan: 68.3 + white: 55.6 + brightBlack: 11.6 + brightRed: 45.3 + brightGreen: 82.4 + brightYellow: 79.7 + brightBlue: 68.3 + brightMagenta: 61.8 + brightCyan: 68.3 + brightWhite: 107.3 diff --git a/themes/purple-codain.yaml b/themes/purple-codain.yaml new file mode 100644 index 00000000..a5996ff8 --- /dev/null +++ b/themes/purple-codain.yaml @@ -0,0 +1,49 @@ +name: "Purple Codain" +source: + marketplace_id: "ymaninho.theme-purple-codain" + version: "0.0.6" + installs: 3749 + author: "ymaninho" + repo: "https://github.com/ymaninho54/Theme-Vscode-Purple" + url: "https://marketplace.visualstudio.com/items?itemName=ymaninho.theme-purple-codain" +colors: + bg: "#151515" + fg: "#E1E1E0" + black: "#474747" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.6 + black: 10.1 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/purple-cyan.yaml b/themes/purple-cyan.yaml new file mode 100644 index 00000000..04cc3ec6 --- /dev/null +++ b/themes/purple-cyan.yaml @@ -0,0 +1,49 @@ +name: "Purple-cyan" +source: + marketplace_id: "Pizzutti.pizzutti-purple-cyan" + version: "1.0.1" + installs: 158 + author: "Pizzutti" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Pizzutti.pizzutti-purple-cyan" +colors: + bg: "#282828" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77 + black: 0 + red: 24.3 + green: 50.6 + yellow: 83.2 + blue: 25 + magenta: 27.3 + cyan: 45.1 + white: 87.6 + brightBlack: 19.6 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.6 + brightMagenta: 42.9 + brightCyan: 53 + brightWhite: 87.6 diff --git a/themes/purple-dark-black.yaml b/themes/purple-dark-black.yaml new file mode 100644 index 00000000..f8915080 --- /dev/null +++ b/themes/purple-dark-black.yaml @@ -0,0 +1,49 @@ +name: "Purple(Dark-Black);" +source: + marketplace_id: "Fishappy0.purple-deep-black" + version: "0.0.5" + installs: 4123 + author: "Fishappy0" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Fishappy0.purple-deep-black" +colors: + bg: "#060606" + fg: "#BEA0FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 59.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/purple-dark-theme-unicode.yaml b/themes/purple-dark-theme-unicode.yaml new file mode 100644 index 00000000..2a2d0bf0 --- /dev/null +++ b/themes/purple-dark-theme-unicode.yaml @@ -0,0 +1,49 @@ +name: "Purple Dark Theme - Unicode" +source: + marketplace_id: "LeehXD.unicode-purple-dark-theme" + version: "0.0.4" + installs: 959 + author: "leehxd" + repo: "https://github.com/LeehXD/unicode-purple-dark" + url: "https://marketplace.visualstudio.com/items?itemName=LeehXD.unicode-purple-dark-theme" +colors: + bg: "#000000" + fg: "#F7F7F7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 102.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/purple-dark.yaml b/themes/purple-dark.yaml new file mode 100644 index 00000000..467737d8 --- /dev/null +++ b/themes/purple-dark.yaml @@ -0,0 +1,49 @@ +name: "Purple/Dark" +source: + marketplace_id: "purple-theme-vs.purple-theme-vscode" + version: "0.0.2" + installs: 2772 + author: "purple-theme-vs" + repo: "https://github.com/dbedoya04/purple-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=purple-theme-vs.purple-theme-vscode" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#7E24C8" + magenta: "#BC3FBC" + cyan: "#6F11CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#9B3BEA" + brightMagenta: "#D670D6" + brightCyan: "#6929DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 18.8 + magenta: 30.8 + cyan: 16.3 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 28.2 + brightMagenta: 46.4 + brightCyan: 18.5 + brightWhite: 91 diff --git a/themes/purple-deep-black-fork.yaml b/themes/purple-deep-black-fork.yaml new file mode 100644 index 00000000..9357c827 --- /dev/null +++ b/themes/purple-deep-black-fork.yaml @@ -0,0 +1,49 @@ +name: "Purple(Deep Black); - Fork" +source: + marketplace_id: "Alle.darkpurpletheme" + version: "0.0.1" + installs: 13 + author: "Alle" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Alle.darkpurpletheme" +colors: + bg: "#17001F" + fg: "#89DDE6" + black: "#474747" + red: "#CD3131" + green: "#0DBC20" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#757575" + brightRed: "#FF6A6A" + brightGreen: "#68FF6A" + brightYellow: "#FFFF82" + brightBlue: "#3B8EEA" + brightMagenta: "#EE7DEE" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 317 + contrast: + fg: 77.5 + black: 10.5 + red: 27.3 + green: 52.4 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 29.3 + brightRed: 48.5 + brightGreen: 88.8 + brightYellow: 103.4 + brightBlue: 40.6 + brightMagenta: 55.1 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/purple-deep-black.yaml b/themes/purple-deep-black.yaml new file mode 100644 index 00000000..c5e4cff8 --- /dev/null +++ b/themes/purple-deep-black.yaml @@ -0,0 +1,49 @@ +name: "Purple(Deep Black);" +source: + marketplace_id: "Fishappy0.purple-deep-black" + version: "0.0.5" + installs: 4123 + author: "Fishappy0" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Fishappy0.purple-deep-black" +colors: + bg: "#000000" + fg: "#BEA0FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 59.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/purple-dream.yaml b/themes/purple-dream.yaml new file mode 100644 index 00000000..e7c5e236 --- /dev/null +++ b/themes/purple-dream.yaml @@ -0,0 +1,49 @@ +name: "Purple Dream" +source: + marketplace_id: "LR6549-extensions.purple-dream" + version: "1.8.7" + installs: 557 + author: "LR6549" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LR6549-extensions.purple-dream" +colors: + bg: "#100719" + fg: "#F7D0FF" + black: "#55005C" + red: "#FF0000" + green: "#00CB7F" + yellow: "#44FF00" + blue: "#0079FF" + magenta: "#FF00FF" + cyan: "#00CDFF" + white: "#EB00FF" + brightBlack: "#96449D" + brightRed: "#FF6767" + brightGreen: "#3BFFB0" + brightYellow: "#5EFF77" + brightBlue: "#3997FF" + brightMagenta: "#FF8DFF" + brightCyan: "#62E0FF" + brightWhite: "#F581FF" +meta: + mode: "dark" + accent: "pink" + hue: 306 + contrast: + fg: 85.7 + black: 0 + red: 37.3 + green: 60.9 + yellow: 87 + blue: 34.6 + magenta: 46 + cyan: 67.4 + white: 41.6 + brightBlack: 23 + brightRed: 47.9 + brightGreen: 89.1 + brightYellow: 88.7 + brightBlue: 45.6 + brightMagenta: 63.8 + brightCyan: 78.2 + brightWhite: 58.7 diff --git a/themes/purple-ish.yaml b/themes/purple-ish.yaml new file mode 100644 index 00000000..f0e91112 --- /dev/null +++ b/themes/purple-ish.yaml @@ -0,0 +1,49 @@ +name: "purple ish" +source: + marketplace_id: "massoladb.purple-ish" + version: "0.2.0" + installs: 971 + author: "Felipe Massola" + repo: "https://github.com/massoladb/purple-ish" + url: "https://marketplace.visualstudio.com/items?itemName=massoladb.purple-ish" +colors: + bg: "#2D2D36" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 103.3 + black: 0 + red: 23.1 + green: 49.4 + yellow: 82 + blue: 23.8 + magenta: 26.2 + cyan: 44 + white: 86.4 + brightBlack: 18.4 + brightRed: 35 + brightGreen: 59.9 + brightYellow: 92 + brightBlue: 36.4 + brightMagenta: 41.8 + brightCyan: 51.8 + brightWhite: 86.4 diff --git a/themes/purple-royal.yaml b/themes/purple-royal.yaml new file mode 100644 index 00000000..15784420 --- /dev/null +++ b/themes/purple-royal.yaml @@ -0,0 +1,49 @@ +name: "Purple Royal" +source: + marketplace_id: "DarkMannn.purple-royal-theme" + version: "0.0.5" + installs: 817 + author: "DarkMannn" + repo: "https://github.com/DarkMannn/purple-royal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.purple-royal-theme" +colors: + bg: "#191919" + fg: "#DBDBDB" + black: "#000000" + red: "#CD6161" + green: "#2BB681" + yellow: "#E2E298" + blue: "#3B7AC0" + magenta: "#7851A9" + cyan: "#2EACCB" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF8181" + brightGreen: "#4FE4A8" + brightYellow: "#F7F780" + brightBlue: "#50A3FF" + brightMagenta: "#AE87E0" + brightCyan: "#42CCEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 83.6 + black: 0 + red: 35.1 + green: 50.6 + yellow: 85.3 + blue: 29.9 + magenta: 21.2 + cyan: 49.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 53.8 + brightGreen: 74.5 + brightYellow: 97.5 + brightBlue: 50 + brightMagenta: 45.9 + brightCyan: 65.7 + brightWhite: 106.7 diff --git a/themes/purple-surface-dark.yaml b/themes/purple-surface-dark.yaml new file mode 100644 index 00000000..d92c78fd --- /dev/null +++ b/themes/purple-surface-dark.yaml @@ -0,0 +1,49 @@ +name: "Purple Surface Dark" +source: + marketplace_id: "AgraeonLabs.dev-themes" + version: "0.1.0" + installs: 283 + author: "Agraeon Labs" + repo: "https://github.com/adiagcodelance/VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" +colors: + bg: "#121212" + fg: "#E0E0E0" + black: "#121212" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#5F34C8" + magenta: "#BD93F9" + cyan: "#8BE9FD" + white: "#E0E0E0" + brightBlack: "#121212" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#5F34C8" + brightMagenta: "#BD93F9" + brightCyan: "#8BE9FD" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 43.8 + green: 85.3 + yellow: 99 + blue: 16.4 + magenta: 54.1 + cyan: 84.4 + white: 87.3 + brightBlack: 0 + brightRed: 43.8 + brightGreen: 85.3 + brightYellow: 99 + brightBlue: 16.4 + brightMagenta: 54.1 + brightCyan: 84.4 + brightWhite: 87.3 diff --git a/themes/purple-theme.yaml b/themes/purple-theme.yaml new file mode 100644 index 00000000..e295acc5 --- /dev/null +++ b/themes/purple-theme.yaml @@ -0,0 +1,49 @@ +name: "Purple Theme" +source: + marketplace_id: "ma1on3se.purple-theme" + version: "0.0.1" + installs: 2084 + author: "Otávio de Souza Cardoso" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ma1on3se.purple-theme" +colors: + bg: "#22142B" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 311 + contrast: + fg: 106.5 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.7 diff --git a/themes/purple-twist.yaml b/themes/purple-twist.yaml new file mode 100644 index 00000000..d54c8904 --- /dev/null +++ b/themes/purple-twist.yaml @@ -0,0 +1,49 @@ +name: "Purple Twist" +source: + marketplace_id: "VishalMaurya.zenith-ui" + version: "0.2.4" + installs: 189 + author: "Vishal Maurya" + repo: "https://github.com/maurya-07/zenith-ui" + url: "https://marketplace.visualstudio.com/items?itemName=VishalMaurya.zenith-ui" +colors: + bg: "#1D0038" + fg: "#19E6AC" + black: "#9A00E0" + red: "#FF00BF" + green: "#19E68C" + yellow: "#A576FF" + blue: "#0098FF" + magenta: "#F335FF" + cyan: "#00CCCC" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF00BF" + brightGreen: "#00F2A5" + brightYellow: "#AEB3FF" + brightBlue: "#35A6FF" + brightMagenta: "#DB2FF4" + brightCyan: "#5BFFD3" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 301 + contrast: + fg: 74.8 + black: 22.9 + red: 41 + green: 73.9 + yellow: 42.3 + blue: 44.5 + magenta: 44.4 + cyan: 63.4 + white: 106.9 + brightBlack: 22 + brightRed: 41 + brightGreen: 80.7 + brightYellow: 63.6 + brightBlue: 50.5 + brightMagenta: 38.1 + brightCyan: 90.5 + brightWhite: 90 diff --git a/themes/purple-void.yaml b/themes/purple-void.yaml new file mode 100644 index 00000000..2610de98 --- /dev/null +++ b/themes/purple-void.yaml @@ -0,0 +1,49 @@ +name: "Purple Void" +source: + marketplace_id: "Rej.purpleVoid" + version: "1.0.3" + installs: 5013 + author: "Rej" + repo: "https://github.com/Rejdesu/purpleVoid" + url: "https://marketplace.visualstudio.com/items?itemName=Rej.purpleVoid" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#333333" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#444444" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 107.9 + brightBlack: 9.8 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/purple.yaml b/themes/purple.yaml new file mode 100644 index 00000000..8f5ad5c7 --- /dev/null +++ b/themes/purple.yaml @@ -0,0 +1,49 @@ +name: "purple" +source: + marketplace_id: "natecrow.consonance-themes" + version: "1.2.0" + installs: 317 + author: "natecrow" + repo: "https://github.com/natecrow/consonance-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" +colors: + bg: "#111111" + fg: "#D1C4B4" + black: "#000000" + red: "#D8BEE1" + green: "#C487DE" + yellow: "#EFAFFF" + blue: "#807567" + magenta: "#9A60B4" + cyan: "#AE96B7" + white: "#EDE0D0" + brightBlack: "#807567" + brightRed: "#D8BEE1" + brightGreen: "#C487DE" + brightYellow: "#EFAFFF" + brightBlue: "#807567" + brightMagenta: "#9A60B4" + brightCyan: "#AE96B7" + brightWhite: "#FFFDEC" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 71.5 + black: 0 + red: 72 + green: 49.7 + yellow: 71.5 + blue: 29.9 + magenta: 30.4 + cyan: 49.4 + white: 88.5 + brightBlack: 29.9 + brightRed: 72 + brightGreen: 49.7 + brightYellow: 71.5 + brightBlue: 29.9 + brightMagenta: 30.4 + brightCyan: 49.4 + brightWhite: 105.6 diff --git a/themes/purpleandblack.yaml b/themes/purpleandblack.yaml new file mode 100644 index 00000000..afb901e1 --- /dev/null +++ b/themes/purpleandblack.yaml @@ -0,0 +1,49 @@ +name: "PurpleAndBlack" +source: + marketplace_id: "Pab-Theme.purpleandblack" + version: "0.0.2" + installs: 984 + author: "Pab-Theme" + repo: "https://github.com/DweOfisial/Theme-Visual-PaB" + url: "https://marketplace.visualstudio.com/items?itemName=Pab-Theme.purpleandblack" +colors: + bg: "#1D1D1D" + fg: "#9B9B9B" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 46.5 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 106.2 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/purplechan.yaml b/themes/purplechan.yaml new file mode 100644 index 00000000..05a5f9ce --- /dev/null +++ b/themes/purplechan.yaml @@ -0,0 +1,49 @@ +name: "Purplechan" +source: + marketplace_id: "morizkay.purplechan" + version: "0.0.7" + installs: 559 + author: "Morizkay" + repo: "https://github.com/blangkohq/purplechan" + url: "https://marketplace.visualstudio.com/items?itemName=morizkay.purplechan" +colors: + bg: "#000000" + fg: "#FF00AA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 40.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/purplecrystal.yaml b/themes/purplecrystal.yaml new file mode 100644 index 00000000..e37c6173 --- /dev/null +++ b/themes/purplecrystal.yaml @@ -0,0 +1,49 @@ +name: "PurpleCrystal" +source: + marketplace_id: "PyJOJO.pycodejojo" + version: "2025.11.13" + installs: 121 + author: "PyJOJO" + repo: "https://github.com/SakuraMYK/PyCodeJOJO" + url: "https://marketplace.visualstudio.com/items?itemName=PyJOJO.pycodejojo" +colors: + bg: "#2A1B3D" + fg: "#E4CCFF" + black: "#45235F" + red: "#F28FAD" + green: "#ABE9B3" + yellow: "#FAE3B0" + blue: "#96CDFB" + magenta: "#F5C2E7" + cyan: "#89DCEB" + white: "#D9E0EE" + brightBlack: "#988BA2" + brightRed: "#F28FAD" + brightGreen: "#ABE9B3" + brightYellow: "#FAE3B0" + brightBlue: "#96CDFB" + brightMagenta: "#F5C2E7" + brightCyan: "#89DCEB" + brightWhite: "#D9E0EE" +meta: + mode: "dark" + accent: "red" + hue: 303 + contrast: + fg: 78.9 + black: 0 + red: 55.4 + green: 81.8 + yellow: 88.5 + blue: 70.2 + magenta: 76.2 + cyan: 75.2 + white: 85.1 + brightBlack: 39.9 + brightRed: 55.4 + brightGreen: 81.8 + brightYellow: 88.5 + brightBlue: 70.2 + brightMagenta: 76.2 + brightCyan: 75.2 + brightWhite: 85.1 diff --git a/themes/purplefy.yaml b/themes/purplefy.yaml new file mode 100644 index 00000000..c2c9b7a3 --- /dev/null +++ b/themes/purplefy.yaml @@ -0,0 +1,49 @@ +name: "Purplefy" +source: + marketplace_id: "VictorLima.victory-theme" + version: "0.1.0" + installs: 238 + author: "Victor Lima" + repo: "https://github.com/victorlim4/victory-theme" + url: "https://marketplace.visualstudio.com/items?itemName=VictorLima.victory-theme" +colors: + bg: "#110E16" + fg: "#EDECEE" + black: "#15141B" + red: "#FF6767" + green: "#8B61FF" + yellow: "#FFCA85" + blue: "#A277FF" + magenta: "#8B61FF" + cyan: "#A277FF" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#FFCA85" + brightGreen: "#A277FF" + brightYellow: "#FFCA85" + brightBlue: "#A277FF" + brightMagenta: "#8B61FF" + brightCyan: "#8B61FF" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "magenta" + hue: 302 + contrast: + fg: 95.3 + black: 0 + red: 47.8 + green: 34.5 + yellow: 79.6 + blue: 42.8 + magenta: 34.5 + cyan: 42.8 + white: 75.5 + brightBlack: 0 + brightRed: 79.6 + brightGreen: 42.8 + brightYellow: 79.6 + brightBlue: 42.8 + brightMagenta: 34.5 + brightCyan: 34.5 + brightWhite: 95.3 diff --git a/themes/purplephantom.yaml b/themes/purplephantom.yaml new file mode 100644 index 00000000..2eef87b4 --- /dev/null +++ b/themes/purplephantom.yaml @@ -0,0 +1,49 @@ +name: "PurplePhantom" +source: + marketplace_id: "PyJOJO.pycodejojo" + version: "2025.11.13" + installs: 121 + author: "PyJOJO" + repo: "https://github.com/SakuraMYK/PyCodeJOJO" + url: "https://marketplace.visualstudio.com/items?itemName=PyJOJO.pycodejojo" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#2AC3DE" + white: "#A9B1D6" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#9ECE6A" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#2AC3DE" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 59.3 + black: 0 + red: 49.4 + green: 66.9 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 59.9 + white: 59.3 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 66.9 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 59.9 + brightWhite: 59.3 diff --git a/themes/purpleporschepheme.yaml b/themes/purpleporschepheme.yaml new file mode 100644 index 00000000..0767e642 --- /dev/null +++ b/themes/purpleporschepheme.yaml @@ -0,0 +1,49 @@ +name: "PurplePorschePheme" +source: + marketplace_id: "MeinhartThomas.purpleporschepheme" + version: "0.0.3" + installs: 26 + author: "MeinhartThomas" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MeinhartThomas.purpleporschepheme" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#4F3CBC" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 13.9 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/purpler.yaml b/themes/purpler.yaml new file mode 100644 index 00000000..d40be95c --- /dev/null +++ b/themes/purpler.yaml @@ -0,0 +1,49 @@ +name: "Purpler" +source: + marketplace_id: "jeffwdiaz.purpler" + version: "0.0.2" + installs: 12 + author: "jeffwdiaz" + repo: "https://github.com/jeffwdiaz/purpler" + url: "https://marketplace.visualstudio.com/items?itemName=jeffwdiaz.purpler" +colors: + bg: "#1D1824" + fg: "#848CFF" + black: "#646464" + red: "#CD3131" + green: "#31C089" + yellow: "#E5E510" + blue: "#277AD5" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A1A1A1" + brightBlack: "#777777" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3D8EE8" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 304 + contrast: + fg: 44.9 + black: 20.8 + red: 26.4 + green: 55.3 + yellow: 85.3 + blue: 30.7 + magenta: 29.4 + cyan: 47.2 + white: 50 + brightBlack: 29.2 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.7 diff --git a/themes/purplespace.yaml b/themes/purplespace.yaml new file mode 100644 index 00000000..02dc1500 --- /dev/null +++ b/themes/purplespace.yaml @@ -0,0 +1,49 @@ +name: "PurpleSpace" +source: + marketplace_id: "YesCode.purplespace" + version: "0.0.7" + installs: 4010 + author: "YesCode" + repo: "https://github.com/yesomac/purplespace" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.purplespace" +colors: + bg: "#FFE7FF" + fg: "#200120" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#0687FF" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.2 + black: 93.4 + red: 48.8 + green: 30.3 + yellow: 18.8 + blue: 43.3 + magenta: 71.4 + cyan: 41.5 + white: 43.6 + brightBlack: 72.3 + brightRed: 48.8 + brightGreen: 52.3 + brightYellow: 12.5 + brightBlue: 72.2 + brightMagenta: 71.4 + brightCyan: 41.5 + brightWhite: 0 diff --git a/themes/purplexed-magic.yaml b/themes/purplexed-magic.yaml new file mode 100644 index 00000000..106b9e9b --- /dev/null +++ b/themes/purplexed-magic.yaml @@ -0,0 +1,49 @@ +name: "Purplexed Magic" +source: + marketplace_id: "mylifeismarvelous.purplexed-magic" + version: "1.0.1" + installs: 135 + author: "mylifeismarvelous" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mylifeismarvelous.purplexed-magic" +colors: + bg: "#1D1B22" + fg: "#8A6EFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 298 + contrast: + fg: 36.4 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/purplexed-theme.yaml b/themes/purplexed-theme.yaml new file mode 100644 index 00000000..57dcb8f7 --- /dev/null +++ b/themes/purplexed-theme.yaml @@ -0,0 +1,49 @@ +name: "purplexed-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#1D1B22" + fg: "#8E7FCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 298 + contrast: + fg: 38 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/purplezera.yaml b/themes/purplezera.yaml new file mode 100644 index 00000000..e9e5ce91 --- /dev/null +++ b/themes/purplezera.yaml @@ -0,0 +1,49 @@ +name: "Purplezera" +source: + marketplace_id: "gabrielqueirozdev.purplezera" + version: "0.0.1" + installs: 127 + author: "Gabriel Queiroz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gabrielqueirozdev.purplezera" +colors: + bg: "#212121" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.6 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/purplish-fork.yaml b/themes/purplish-fork.yaml new file mode 100644 index 00000000..35d05973 --- /dev/null +++ b/themes/purplish-fork.yaml @@ -0,0 +1,49 @@ +name: "Purplish - Fork" +source: + marketplace_id: "xynny.purple-theme" + version: "0.0.2" + installs: 6243 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.purple-theme" +colors: + bg: "#191218" + fg: "#D4D4D4" + black: "#4F4F4F" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 331 + contrast: + fg: 79.7 + black: 13.1 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.3 diff --git a/themes/purplue.yaml b/themes/purplue.yaml new file mode 100644 index 00000000..f6bd0233 --- /dev/null +++ b/themes/purplue.yaml @@ -0,0 +1,49 @@ +name: "Purplue" +source: + marketplace_id: "ICU2D.purpule" + version: "0.0.3" + installs: 419 + author: "ICU2D" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ICU2D.purpule" +colors: + bg: "#1A1A1A" + fg: "#FFFFFF" + black: "#121212" + red: "#A52AFF" + green: "#7129FF" + yellow: "#3D2AFF" + blue: "#2B4FFF" + magenta: "#2883FF" + cyan: "#28B9FF" + white: "#F1F1F1" + brightBlack: "#666666" + brightRed: "#BA5AFF" + brightGreen: "#905AFF" + brightYellow: "#685AFF" + brightBlue: "#5C78FF" + brightMagenta: "#5EA2FF" + brightCyan: "#5AC8FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 106.5 + black: 0 + red: 28.6 + green: 21.8 + yellow: 17.9 + blue: 22.9 + magenta: 37 + cyan: 57.7 + white: 97.4 + brightBlack: 21.7 + brightRed: 38.5 + brightGreen: 32.6 + brightYellow: 28.5 + brightBlue: 35.6 + brightMagenta: 50.1 + brightCyan: 65.7 + brightWhite: 106.5 diff --git a/themes/purply-dark.yaml b/themes/purply-dark.yaml new file mode 100644 index 00000000..0f98dbae --- /dev/null +++ b/themes/purply-dark.yaml @@ -0,0 +1,49 @@ +name: "Purply (Dark)" +source: + marketplace_id: "jeremy-gower.purply-theme" + version: "2.0.5" + installs: 3048 + author: "Jeremy Gower" + repo: "https://github.com/jdgower/purply-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jeremy-gower.purply-theme" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#282C34" + red: "#FF6B8A" + green: "#22C55E" + yellow: "#FFB347" + blue: "#7DD3FC" + magenta: "#C4A7E7" + cyan: "#06B6D4" + white: "#ABB2BF" + brightBlack: "#6B5B73" + brightRed: "#FF8FA3" + brightGreen: "#4ADE80" + brightYellow: "#FCD34D" + brightBlue: "#93C5FD" + brightMagenta: "#DDD6FE" + brightCyan: "#67E8F9" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 45.7 + green: 53.6 + yellow: 65.8 + blue: 69.5 + magenta: 57.1 + cyan: 50.7 + white: 56.2 + brightBlack: 16.6 + brightRed: 55.8 + brightGreen: 67.3 + brightYellow: 78.2 + brightBlue: 65 + brightMagenta: 80.4 + brightCyan: 78 + brightWhite: 100.2 diff --git a/themes/purply-light.yaml b/themes/purply-light.yaml new file mode 100644 index 00000000..78be3841 --- /dev/null +++ b/themes/purply-light.yaml @@ -0,0 +1,49 @@ +name: "Purply (Light)" +source: + marketplace_id: "jeremy-gower.purply-theme" + version: "2.0.5" + installs: 3048 + author: "Jeremy Gower" + repo: "https://github.com/jdgower/purply-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jeremy-gower.purply-theme" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#1F2937" + red: "#DC2626" + green: "#059669" + yellow: "#D97706" + blue: "#0284C7" + magenta: "#7C3AED" + cyan: "#0891B2" + white: "#F3F4F6" + brightBlack: "#6B7280" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#8B5CF6" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 98.7 + black: 101.5 + red: 71.6 + green: 64.6 + yellow: 58.5 + blue: 67.5 + magenta: 77.5 + cyan: 63.8 + white: 0 + brightBlack: 73.6 + brightRed: 63.8 + brightGreen: 49.1 + brightYellow: 41.8 + brightBlue: 63.9 + brightMagenta: 68.7 + brightCyan: 47.1 + brightWhite: 0 diff --git a/themes/purppy.yaml b/themes/purppy.yaml new file mode 100644 index 00000000..9c47b8a7 --- /dev/null +++ b/themes/purppy.yaml @@ -0,0 +1,49 @@ +name: "Purppy" +source: + marketplace_id: "1izardo.purppy-vs-code" + version: "0.2.1" + installs: 666 + author: "Daniel Lazaro" + repo: "https://github.com/1izardo/purppy-vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=1izardo.purppy-vs-code" +colors: + bg: "#332E40" + fg: "#DDD8E8" + black: "#4C435E" + red: "#D3787B" + green: "#B5C292" + yellow: "#ECB48F" + blue: "#8FAEEC" + magenta: "#A58AC7" + cyan: "#8AB8C5" + white: "#DDD8E8" + brightBlack: "#564D6B" + brightRed: "#DD7C80" + brightGreen: "#BDCC99" + brightYellow: "#F6BB95" + brightBlue: "#95B5F6" + brightMagenta: "#AD90D1" + brightCyan: "#91C1CF" + brightWhite: "#E7E4F0" +meta: + mode: "dark" + accent: "orange" + hue: 297 + contrast: + fg: 79 + black: 0 + red: 38.6 + green: 61.2 + yellow: 63.2 + blue: 53.1 + magenta: 40.2 + cyan: 54.6 + white: 79 + brightBlack: 9.5 + brightRed: 41.7 + brightGreen: 66.7 + brightYellow: 67.7 + brightBlue: 57 + brightMagenta: 43.8 + brightCyan: 59.5 + brightWhite: 86.1 diff --git a/themes/purps.yaml b/themes/purps.yaml new file mode 100644 index 00000000..622a0485 --- /dev/null +++ b/themes/purps.yaml @@ -0,0 +1,49 @@ +name: "Purps" +source: + marketplace_id: "amessytheme.Purps" + version: "0.0.1" + installs: 36 + author: "amessytheme" + repo: "https://gihub.com/mtdowner/Purps" + url: "https://marketplace.visualstudio.com/items?itemName=amessytheme.Purps" +colors: + bg: "#FFFFFF" + fg: "#AA00FF" + black: "#FFFFFF" + red: "#9003FF" + green: "#00BEEF" + yellow: "#8A2BE2" + blue: "#8800FF" + magenta: "#9300FF" + cyan: "#00CBFF" + white: "#C15DFB" + brightBlack: "#EAC6FB" + brightRed: "#6500FF" + brightGreen: "#00B0ED" + brightYellow: "#6500DF" + brightBlue: "#5600FF" + brightMagenta: "#6A00FF" + brightCyan: "#00C0FF" + brightWhite: "#AA00FF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 72.3 + black: 0 + red: 76.3 + green: 42.3 + yellow: 78.4 + blue: 77.4 + magenta: 75.8 + cyan: 35.8 + white: 60.5 + brightBlack: 23.5 + brightRed: 81.5 + brightGreen: 48.2 + brightYellow: 85.2 + brightBlue: 82.8 + brightMagenta: 81 + brightCyan: 40.5 + brightWhite: 72.3 diff --git a/themes/purrfect-marshmallow-lavender-night.yaml b/themes/purrfect-marshmallow-lavender-night.yaml new file mode 100644 index 00000000..f2b0c929 --- /dev/null +++ b/themes/purrfect-marshmallow-lavender-night.yaml @@ -0,0 +1,49 @@ +name: "Purrfect Marshmallow - Lavender Night" +source: + marketplace_id: "diananyamai.purrfect-marshmallow-theme" + version: "0.0.3" + installs: 310 + author: "diana nyamai" + repo: "https://github.com/Diana-nyamai/purrfect-marshmallow-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diananyamai.purrfect-marshmallow-theme" +colors: + bg: "#2A2638" + fg: "#EFE8FF" + black: "#2A2638" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#EFE8FF" + brightBlack: "#6D5B8E" + brightRed: "#FF6B8A" + brightGreen: "#D5F5A8" + brightYellow: "#FFD88E" + brightBlue: "#9FC5FF" + brightMagenta: "#D8A9F5" + brightCyan: "#A8F0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 294 + contrast: + fg: 91.5 + black: 0 + red: 41.1 + green: 81.6 + yellow: 76.4 + blue: 53.4 + magenta: 51.2 + cyan: 75.7 + white: 91.5 + brightBlack: 18.6 + brightRed: 46.4 + brightGreen: 90.7 + brightYellow: 82.6 + brightBlue: 66.8 + brightMagenta: 62.2 + brightCyan: 87.2 + brightWhite: 104.3 diff --git a/themes/purrfect-marshmallow-pastel-pink.yaml b/themes/purrfect-marshmallow-pastel-pink.yaml new file mode 100644 index 00000000..0ca54558 --- /dev/null +++ b/themes/purrfect-marshmallow-pastel-pink.yaml @@ -0,0 +1,49 @@ +name: "Purrfect Marshmallow - Pastel pink" +source: + marketplace_id: "diananyamai.purrfect-marshmallow-theme" + version: "0.0.3" + installs: 310 + author: "diana nyamai" + repo: "https://github.com/Diana-nyamai/purrfect-marshmallow-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diananyamai.purrfect-marshmallow-theme" +colors: + bg: "#F7EBF2" + fg: "#5C5470" + black: "#5C5470" + red: "#FF5370" + green: "#82C99E" + yellow: "#FFB366" + blue: "#6BA5E7" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#EFE8FF" + brightBlack: "#8A7F9D" + brightRed: "#FF6B8A" + brightGreen: "#A0E6B8" + brightYellow: "#FFCC88" + brightBlue: "#8FC2FF" + brightMagenta: "#DDA9F5" + brightCyan: "#A8F0FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 74.6 + black: 74.6 + red: 47.1 + green: 27.2 + yellow: 22.2 + blue: 40.2 + magenta: 37.2 + cyan: 13.9 + white: 0 + brightBlack: 55 + brightRed: 41.9 + brightGreen: 11.3 + brightYellow: 12.3 + brightBlue: 24.8 + brightMagenta: 26 + brightCyan: 0 + brightWhite: 8.8 diff --git a/themes/purstel.yaml b/themes/purstel.yaml new file mode 100644 index 00000000..7d6bc167 --- /dev/null +++ b/themes/purstel.yaml @@ -0,0 +1,49 @@ +name: "Purstel" +source: + marketplace_id: "synanesthetics.purstel-theme" + version: "0.1.0" + installs: 235 + author: "synanesthetics" + repo: "https://github.com/synanesthetics/Purstel" + url: "https://marketplace.visualstudio.com/items?itemName=synanesthetics.purstel-theme" +colors: + bg: "#15111B" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#2472C8" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#BAC2DE" + brightBlack: "#585B70" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#3B8EEA" + brightMagenta: "#F5C2E7" + brightCyan: "#94E2D5" + brightWhite: "#A6ADC8" +meta: + mode: "dark" + accent: "indigo" + hue: 303 + contrast: + fg: 81.4 + black: 10.7 + red: 56.1 + green: 79.8 + yellow: 89.8 + blue: 27.8 + magenta: 78.1 + cyan: 79.7 + white: 69.5 + brightBlack: 18.3 + brightRed: 56.1 + brightGreen: 79.8 + brightYellow: 89.8 + brightBlue: 40.4 + brightMagenta: 78.1 + brightCyan: 79.7 + brightWhite: 57.6 diff --git a/themes/purupiu-theme.yaml b/themes/purupiu-theme.yaml new file mode 100644 index 00000000..febaa539 --- /dev/null +++ b/themes/purupiu-theme.yaml @@ -0,0 +1,49 @@ +name: "Purupiu Theme" +source: + marketplace_id: "Isadora.purupiu-theme" + version: "0.0.2" + installs: 150 + author: "Isadora" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Isadora.purupiu-theme" +colors: + bg: "#1E1E1E" + fg: "#FFE084" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C0C0C0" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.5 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 66.8 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/pushkin-is-white.yaml b/themes/pushkin-is-white.yaml new file mode 100644 index 00000000..9bb1d06a --- /dev/null +++ b/themes/pushkin-is-white.yaml @@ -0,0 +1,49 @@ +name: "Pushkin is White" +source: + marketplace_id: "ispushkin.pushkin-is-white-theme" + version: "0.0.7" + installs: 12362 + author: "IS. Pushkin" + repo: "https://github.com/llatigid/Pushkin-is-White-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ispushkin.pushkin-is-white-theme" +colors: + bg: "#F4F4F4" + fg: "#000000" + black: "#262626" + red: "#D70000" + green: "#5F8700" + yellow: "#AF8700" + blue: "#0087FF" + magenta: "#AF005F" + cyan: "#00AFAF" + white: "#808080" + brightBlack: "#1C1C1C" + brightRed: "#D75F00" + brightGreen: "#585858" + brightYellow: "#626262" + brightBlue: "#808080" + brightMagenta: "#5F5FAF" + brightCyan: "#808080" + brightWhite: "#808080" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.5 + black: 95.5 + red: 67.4 + green: 62.5 + yellow: 54 + blue: 55.7 + magenta: 75.3 + cyan: 45.3 + white: 60.3 + brightBlack: 97.4 + brightRed: 58.1 + brightGreen: 78.1 + brightYellow: 73.9 + brightBlue: 60.3 + brightMagenta: 71.3 + brightCyan: 60.3 + brightWhite: 60.3 diff --git a/themes/pussdev-pink-theme.yaml b/themes/pussdev-pink-theme.yaml new file mode 100644 index 00000000..f2193505 --- /dev/null +++ b/themes/pussdev-pink-theme.yaml @@ -0,0 +1,49 @@ +name: "pussdev-pink-theme" +source: + marketplace_id: "pussdev.pussdev-pink-theme" + version: "1.0.0" + installs: 219 + author: "pussdev" + repo: "https://github.com/pussdev/pussdev-pink-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pussdev.pussdev-pink-theme" +colors: + bg: "#333333" + fg: "#D1D1D1" + black: "#272525" + red: "#D59191" + green: "#9ABDA0" + yellow: "#D5D391" + blue: "#9A9CBD" + magenta: "#B69ABD" + cyan: "#9ABDBC" + white: "#DFDFDF" + brightBlack: "#272525" + brightRed: "#9ABDBC" + brightGreen: "#9ABDA0" + brightYellow: "#D5D391" + brightBlue: "#9A9CBD" + brightMagenta: "#B69ABD" + brightCyan: "#9ABDBC" + brightWhite: "#DFDFDF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 72.8 + black: 0 + red: 46.6 + green: 56.1 + yellow: 72 + blue: 44.1 + magenta: 46.7 + cyan: 57.2 + white: 81.4 + brightBlack: 0 + brightRed: 57.2 + brightGreen: 56.1 + brightYellow: 72 + brightBlue: 44.1 + brightMagenta: 46.7 + brightCyan: 57.2 + brightWhite: 81.4 diff --git a/themes/pvc-light.yaml b/themes/pvc-light.yaml new file mode 100644 index 00000000..58e9d819 --- /dev/null +++ b/themes/pvc-light.yaml @@ -0,0 +1,49 @@ +name: "PVC (Light)" +source: + marketplace_id: "friggeri.pvc-vscode-theme" + version: "1.0.8" + installs: 251 + author: "Adrien Friggeri" + repo: "https://github.com/friggeri/pvc" + url: "https://marketplace.visualstudio.com/items?itemName=friggeri.pvc-vscode-theme" +colors: + bg: "#FFFFFF" + fg: "#242728" + black: "#020303" + red: "#E60000" + green: "#88CC00" + yellow: "#E6BF00" + blue: "#7733FF" + magenta: "#FF006A" + cyan: "#00AAFF" + white: "#FCFCFD" + brightBlack: "#020303" + brightRed: "#E60000" + brightGreen: "#88CC00" + brightYellow: "#E6BF00" + brightBlue: "#7733FF" + brightMagenta: "#FF006A" + brightCyan: "#00AAFF" + brightWhite: "#FCFCFD" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.9 + black: 106 + red: 70.3 + green: 37.6 + yellow: 32.5 + blue: 77 + magenta: 63 + cyan: 49.4 + white: 0 + brightBlack: 106 + brightRed: 70.3 + brightGreen: 37.6 + brightYellow: 32.5 + brightBlue: 77 + brightMagenta: 63 + brightCyan: 49.4 + brightWhite: 0 diff --git a/themes/pvdk-theme.yaml b/themes/pvdk-theme.yaml new file mode 100644 index 00000000..579448fc --- /dev/null +++ b/themes/pvdk-theme.yaml @@ -0,0 +1,49 @@ +name: "pvdk-theme" +source: + marketplace_id: "gpovidaiko.pvdk-theme" + version: "0.0.1" + installs: 41 + author: "gpovidaiko" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gpovidaiko.pvdk-theme" +colors: + bg: "#161316" + fg: "#F8F1F8" + black: "#0A0A0A" + red: "#FF0A2B" + green: "#4BFF0A" + yellow: "#FFEF0A" + blue: "#0A47FF" + magenta: "#B807AC" + cyan: "#85A3FF" + white: "#E5E5E5" + brightBlack: "#7A7A7A" + brightRed: "#FF5C72" + brightGreen: "#87FF5C" + brightYellow: "#FFF45C" + brightBlue: "#5C85FF" + brightMagenta: "#B842B0" + brightCyan: "#ADC2FF" + brightWhite: "#EBEBEB" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 99.3 + black: 0 + red: 37 + green: 86.7 + yellow: 94.3 + blue: 21.4 + magenta: 24.6 + cyan: 53.8 + white: 90.3 + brightBlack: 31.2 + brightRed: 45.5 + brightGreen: 89.9 + brightYellow: 97.1 + brightBlue: 40.3 + brightMagenta: 29 + brightCyan: 69.8 + brightWhite: 94.1 diff --git a/themes/pycharm-theme.yaml b/themes/pycharm-theme.yaml new file mode 100644 index 00000000..d2eaf0b0 --- /dev/null +++ b/themes/pycharm-theme.yaml @@ -0,0 +1,49 @@ +name: "PyCharm Theme" +source: + marketplace_id: "kenethriera.jb-pycharm-theme" + version: "0.0.13" + installs: 2313 + author: "Keneth Riera" + repo: "https://github.com/rierarizzo/pycharm-kr-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kenethriera.jb-pycharm-theme" +colors: + bg: "#212121" + fg: "#D0D0D0" + black: "#151515" + red: "#AC4142" + green: "#7E8E50" + yellow: "#E5B567" + blue: "#6C99BB" + magenta: "#9F4E85" + cyan: "#7DD6CF" + white: "#D0D0D0" + brightBlack: "#505050" + brightRed: "#AC4142" + brightGreen: "#7E8E50" + brightYellow: "#E5B567" + brightBlue: "#6C99BB" + brightMagenta: "#9F4E85" + brightCyan: "#7DD6CF" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 75.8 + black: 0 + red: 21 + green: 36.1 + yellow: 64.6 + blue: 42.4 + magenta: 23.1 + cyan: 70.5 + white: 75.8 + brightBlack: 11.9 + brightRed: 21 + brightGreen: 36.1 + brightYellow: 64.6 + brightBlue: 42.4 + brightMagenta: 23.1 + brightCyan: 70.5 + brightWhite: 99 diff --git a/themes/python-bright-colors-theme.yaml b/themes/python-bright-colors-theme.yaml new file mode 100644 index 00000000..6306e852 --- /dev/null +++ b/themes/python-bright-colors-theme.yaml @@ -0,0 +1,49 @@ +name: "Python-Bright-Colors-Theme" +source: + marketplace_id: "Meda2dAsada.python-bright-colors-theme" + version: "0.0.1" + installs: 892 + author: "Meda2dAsada" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Meda2dAsada.python-bright-colors-theme" +colors: + bg: "#300F38" + fg: "#D664FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 319 + contrast: + fg: 44.5 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.3 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/qara.yaml b/themes/qara.yaml new file mode 100644 index 00000000..76107a07 --- /dev/null +++ b/themes/qara.yaml @@ -0,0 +1,49 @@ +name: "QARA" +source: + marketplace_id: "HasanHasanli.qara" + version: "2.2.0" + installs: 234 + author: "Hasan Hasanli" + repo: "https://github.com/hasan-li/qara-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=HasanHasanli.qara" +colors: + bg: "#1A2128" + fg: "#C8CED9" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 249 + contrast: + fg: 74.4 + black: 0 + red: 38.1 + green: 66.1 + yellow: 80.9 + blue: 54.8 + magenta: 52.6 + cyan: 58.5 + white: 105.7 + brightBlack: 14.4 + brightRed: 38.1 + brightGreen: 66.1 + brightYellow: 92.5 + brightBlue: 54.8 + brightMagenta: 52.6 + brightCyan: 72.8 + brightWhite: 105.7 diff --git a/themes/qerz-theme.yaml b/themes/qerz-theme.yaml new file mode 100644 index 00000000..6550d2d3 --- /dev/null +++ b/themes/qerz-theme.yaml @@ -0,0 +1,49 @@ +name: "Qerz Theme" +source: + marketplace_id: "GabrielQueir0z.qerz-v1" + version: "0.0.0" + installs: 30 + author: "GabrielQueir0z" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GabrielQueir0z.qerz-v1" +colors: + bg: "#0F0F0F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.5 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 107.5 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 107.5 diff --git a/themes/qii-theme-dark-shallow.yaml b/themes/qii-theme-dark-shallow.yaml new file mode 100644 index 00000000..b439d8df --- /dev/null +++ b/themes/qii-theme-dark-shallow.yaml @@ -0,0 +1,49 @@ +name: "Qii Theme Dark Shallow" +source: + marketplace_id: "qiqi29.qii-theme" + version: "1.6.4" + installs: 3873 + author: "qiqi29" + repo: "https://github.com/Qiqi29/qii-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" +colors: + bg: "#1E2227" + fg: "#CACBD4" + black: "#2D3139" + red: "#E68096" + green: "#A7E28B" + yellow: "#E2B77E" + blue: "#82B8FA" + magenta: "#C589E0" + cyan: "#75CAD3" + white: "#CACBD4" + brightBlack: "#7F848E" + brightRed: "#E68096" + brightGreen: "#A7E28B" + brightYellow: "#E2B77E" + brightBlue: "#82B8FA" + brightMagenta: "#C589E0" + brightCyan: "#75CAD3" + brightWhite: "#CACBD4" +meta: + mode: "dark" + accent: "magenta" + hue: 254 + contrast: + fg: 73 + black: 0 + red: 48.1 + green: 77 + yellow: 65.2 + blue: 59.8 + magenta: 48.7 + cyan: 64.5 + white: 73 + brightBlack: 34.2 + brightRed: 48.1 + brightGreen: 77 + brightYellow: 65.2 + brightBlue: 59.8 + brightMagenta: 48.7 + brightCyan: 64.5 + brightWhite: 73 diff --git a/themes/qii-theme-dark.yaml b/themes/qii-theme-dark.yaml new file mode 100644 index 00000000..92d9cba5 --- /dev/null +++ b/themes/qii-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Qii Theme Dark" +source: + marketplace_id: "qiqi29.qii-theme" + version: "1.6.4" + installs: 3873 + author: "qiqi29" + repo: "https://github.com/Qiqi29/qii-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" +colors: + bg: "#18191B" + fg: "#CACBD4" + black: "#2D3139" + red: "#E68096" + green: "#A7E28B" + yellow: "#E2B77E" + blue: "#82B8FA" + magenta: "#C589E0" + cyan: "#75CAD3" + white: "#CACBD4" + brightBlack: "#7F848E" + brightRed: "#E68096" + brightGreen: "#A7E28B" + brightYellow: "#E2B77E" + brightBlue: "#82B8FA" + brightMagenta: "#C589E0" + brightCyan: "#75CAD3" + brightWhite: "#CACBD4" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 74.1 + black: 0 + red: 49.2 + green: 78.2 + yellow: 66.4 + blue: 61 + magenta: 49.8 + cyan: 65.7 + white: 74.1 + brightBlack: 35.3 + brightRed: 49.2 + brightGreen: 78.2 + brightYellow: 66.4 + brightBlue: 61 + brightMagenta: 49.8 + brightCyan: 65.7 + brightWhite: 74.1 diff --git a/themes/qii-theme-light.yaml b/themes/qii-theme-light.yaml new file mode 100644 index 00000000..a5218140 --- /dev/null +++ b/themes/qii-theme-light.yaml @@ -0,0 +1,49 @@ +name: "Qii Theme Light" +source: + marketplace_id: "qiqi29.qii-theme" + version: "1.6.4" + installs: 3873 + author: "qiqi29" + repo: "https://github.com/Qiqi29/qii-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" +colors: + bg: "#FAFAFA" + fg: "#5D5F62" + black: "#2D3139" + red: "#E1496A" + green: "#4CA438" + yellow: "#FF9900" + blue: "#2F86F0" + magenta: "#C82FBB" + cyan: "#0DA6A6" + white: "#5D5F62" + brightBlack: "#7F848E" + brightRed: "#E1496A" + brightGreen: "#4CA438" + brightYellow: "#FF9900" + brightBlue: "#2F86F0" + brightMagenta: "#C82FBB" + brightCyan: "#0DA6A6" + brightWhite: "#5D5F62" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 78.9 + black: 96.3 + red: 62.5 + green: 55.2 + yellow: 38.5 + blue: 60.4 + magenta: 67.4 + cyan: 53 + white: 78.9 + brightBlack: 62.1 + brightRed: 62.5 + brightGreen: 55.2 + brightYellow: 38.5 + brightBlue: 60.4 + brightMagenta: 67.4 + brightCyan: 53 + brightWhite: 78.9 diff --git a/themes/qoder-dark.yaml b/themes/qoder-dark.yaml new file mode 100644 index 00000000..1575afba --- /dev/null +++ b/themes/qoder-dark.yaml @@ -0,0 +1,49 @@ +name: "Qoder Dark" +source: + marketplace_id: "tryToDEv.cyber-qoder-themes" + version: "1.2.0" + installs: 15 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" +colors: + bg: "#0F0F14" + fg: "#E6E6F0" + black: "#12121A" + red: "#FF6B6B" + green: "#6CFF9C" + yellow: "#FFD166" + blue: "#9D7CFF" + magenta: "#C77DFF" + cyan: "#78D9FF" + white: "#F0F0FF" + brightBlack: "#4A4A6A" + brightRed: "#FF8E8E" + brightGreen: "#8AFFB8" + brightYellow: "#FFE082" + brightBlue: "#B89CFF" + brightMagenta: "#D9A8FF" + brightCyan: "#93E2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 285 + contrast: + fg: 91.7 + black: 0 + red: 48.7 + green: 90 + yellow: 81.9 + blue: 43.6 + magenta: 49.6 + cyan: 75.9 + white: 98.4 + brightBlack: 12.7 + brightRed: 58.7 + brightGreen: 92.5 + brightYellow: 88.9 + brightBlue: 57 + brightMagenta: 65.7 + brightCyan: 81.9 + brightWhite: 107.5 diff --git a/themes/qqqoid-light-color.yaml b/themes/qqqoid-light-color.yaml new file mode 100644 index 00000000..26acb171 --- /dev/null +++ b/themes/qqqoid-light-color.yaml @@ -0,0 +1,49 @@ +name: "qqqoid light color" +source: + marketplace_id: "SalavatDSamigoullin.another-one-theme-pack" + version: "0.0.6" + installs: 333 + author: "Salavat D. Samigoullin" + repo: "https://github.com/SalavatSamigoullin/qqqoid-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SalavatDSamigoullin.another-one-theme-pack" +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#24292E" + red: "#D73A49" + green: "#28A745" + yellow: "#DBAB09" + blue: "#0366D6" + magenta: "#7C3AED" + cyan: "#1B7C83" + white: "#6A737D" + brightBlack: "#959DA5" + brightRed: "#CB2431" + brightGreen: "#22863A" + brightYellow: "#B08800" + brightBlue: "#2563EB" + brightMagenta: "#7C3AED" + brightCyan: "#3192AA" + brightWhite: "#D1D5DA" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.5 + black: 101.5 + red: 70.4 + green: 57.9 + yellow: 41.6 + blue: 76.2 + magenta: 77.5 + cyan: 73.8 + white: 73.4 + brightBlack: 53.1 + brightRed: 75.5 + brightGreen: 71.7 + brightYellow: 60.1 + brightBlue: 74.9 + brightMagenta: 77.5 + brightCyan: 63.3 + brightWhite: 22.4 diff --git a/themes/qt-creator-like-dark-theme.yaml b/themes/qt-creator-like-dark-theme.yaml new file mode 100644 index 00000000..d160793e --- /dev/null +++ b/themes/qt-creator-like-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Qt Creator-Like Dark Theme" +source: + marketplace_id: "MichaelH.qtlike-dark-theme" + version: "0.0.1" + installs: 3267 + author: "Michael H" + repo: "https://github.com/Michael-H7/vscode-qtlike-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MichaelH.qtlike-dark-theme" +colors: + bg: "#2E2F30" + fg: "#D6CF9A" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 71.6 + black: 0 + red: 22.9 + green: 49.1 + yellow: 81.8 + blue: 23.6 + magenta: 25.9 + cyan: 43.7 + white: 86.2 + brightBlack: 18.2 + brightRed: 34.7 + brightGreen: 59.7 + brightYellow: 91.8 + brightBlue: 36.1 + brightMagenta: 41.5 + brightCyan: 51.5 + brightWhite: 86.2 diff --git a/themes/qtz-theme.yaml b/themes/qtz-theme.yaml new file mode 100644 index 00000000..4d196fce --- /dev/null +++ b/themes/qtz-theme.yaml @@ -0,0 +1,49 @@ +name: "qtz-theme" +source: + marketplace_id: "qiupeng.qtz-theme" + version: "0.1.3" + installs: 134 + author: "qiupeng" + repo: "https://gitcode.com/qiupeng/qtz-theme" + url: "https://marketplace.visualstudio.com/items?itemName=qiupeng.qtz-theme" +colors: + bg: "#303845" + fg: "#CCCAC2" + black: "#171B24" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#FFD173" + brightBlue: "#73D0FF" + brightMagenta: "#DFBFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 260 + contrast: + fg: 67.2 + black: 0 + red: 44.2 + green: 64.6 + yellow: 72.4 + blue: 61.8 + magenta: 65.4 + cyan: 71.7 + white: 65.5 + brightBlack: 16.7 + brightRed: 46.7 + brightGreen: 91.1 + brightYellow: 75.4 + brightBlue: 64.7 + brightMagenta: 68.4 + brightCyan: 74.7 + brightWhite: 100.7 diff --git a/themes/quantum-blue-dark.yaml b/themes/quantum-blue-dark.yaml new file mode 100644 index 00000000..1d63d8f5 --- /dev/null +++ b/themes/quantum-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Quantum Blue Dark" +source: + marketplace_id: "6233c1c4-89f3-48cf-8c88-156b07876860.quantum-blue-theme" + version: "1.0.0" + installs: 93 + author: "YasserElgammal" + repo: "https://github.com/YasserElgammal/quantum-blue-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6233c1c4-89f3-48cf-8c88-156b07876860.quantum-blue-theme" +colors: + bg: "#050B1A" + fg: "#E2E6F0" + black: "#050B1A" + red: "#FF5C7A" + green: "#35C9A8" + yellow: "#FFC857" + blue: "#38A1FF" + magenta: "#8C9CFF" + cyan: "#3FD6FF" + white: "#E2E6F0" + brightBlack: "#4A5A75" + brightRed: "#FF8099" + brightGreen: "#5EDCB9" + brightYellow: "#FFD67A" + brightBlue: "#6EC8FF" + brightMagenta: "#A5B3FF" + brightCyan: "#32C0C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 91.4 + black: 0 + red: 46.2 + green: 61.7 + yellow: 78.2 + blue: 49.3 + magenta: 52.3 + cyan: 72.3 + white: 91.4 + brightBlack: 17.6 + brightRed: 55.3 + brightGreen: 72.7 + brightYellow: 84.6 + brightBlue: 67.8 + brightMagenta: 63.4 + brightCyan: 58.9 + brightWhite: 107.6 diff --git a/themes/quantum-bordered.yaml b/themes/quantum-bordered.yaml new file mode 100644 index 00000000..3b1a5820 --- /dev/null +++ b/themes/quantum-bordered.yaml @@ -0,0 +1,49 @@ +name: "Quantum Bordered" +source: + marketplace_id: "CalebEphrem.quantum" + version: "2.0.3" + installs: 413 + author: "Caleb Ephrem" + repo: "https://github.com/calebephrem/quantum-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" +colors: + bg: "#040527" + fg: "#E5E5E5" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#DDCC55" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#70EFEF" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAFF4C" + brightYellow: "#FFDD70" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#00DDEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 272 + contrast: + fg: 90.7 + black: 0 + red: 44.8 + green: 70.7 + yellow: 74.4 + blue: 61.3 + magenta: 61.3 + cyan: 85.3 + white: 72.4 + brightBlack: 23.6 + brightRed: 47.3 + brightGreen: 92.8 + brightYellow: 87.4 + brightBlue: 64.1 + brightMagenta: 64.1 + brightCyan: 73.9 + brightWhite: 107.6 diff --git a/themes/quantum-dark-bordered.yaml b/themes/quantum-dark-bordered.yaml new file mode 100644 index 00000000..bd94d1d3 --- /dev/null +++ b/themes/quantum-dark-bordered.yaml @@ -0,0 +1,49 @@ +name: "Quantum Dark Bordered" +source: + marketplace_id: "CalebEphrem.quantum" + version: "2.0.3" + installs: 413 + author: "Caleb Ephrem" + repo: "https://github.com/calebephrem/quantum-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" +colors: + bg: "#000017" + fg: "#E5E5E5" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#DDCC55" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#70EFEF" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAFF4C" + brightYellow: "#FFDD70" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#00DDEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 90.9 + black: 0 + red: 45 + green: 71 + yellow: 74.7 + blue: 61.5 + magenta: 61.6 + cyan: 85.5 + white: 72.6 + brightBlack: 23.8 + brightRed: 47.5 + brightGreen: 93 + brightYellow: 87.6 + brightBlue: 64.3 + brightMagenta: 64.3 + brightCyan: 74.1 + brightWhite: 107.8 diff --git a/themes/quantum-green.yaml b/themes/quantum-green.yaml new file mode 100644 index 00000000..864c2f0e --- /dev/null +++ b/themes/quantum-green.yaml @@ -0,0 +1,49 @@ +name: "Quantum Green" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 358 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" +colors: + bg: "#0A1A0A" + fg: "#E0FFE0" + black: "#000000" + red: "#FF4040" + green: "#00FF00" + yellow: "#FFFF40" + blue: "#4040FF" + magenta: "#FF40FF" + cyan: "#40FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF6060" + brightGreen: "#40FF40" + brightYellow: "#FFFF60" + brightBlue: "#6060FF" + brightMagenta: "#FF60FF" + brightCyan: "#60FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 144 + contrast: + fg: 101.4 + black: 0 + red: 40.1 + green: 85.5 + yellow: 101.9 + blue: 21.2 + magenta: 48.1 + cyan: 91.8 + white: 106.9 + brightBlack: 22 + brightRed: 45.6 + brightGreen: 86.3 + brightYellow: 102.2 + brightBlue: 29.6 + brightMagenta: 52.7 + brightCyan: 92.7 + brightWhite: 106.9 diff --git a/themes/quantum-mirage-bordered.yaml b/themes/quantum-mirage-bordered.yaml new file mode 100644 index 00000000..7e6fb812 --- /dev/null +++ b/themes/quantum-mirage-bordered.yaml @@ -0,0 +1,49 @@ +name: "Quantum Mirage Bordered" +source: + marketplace_id: "CalebEphrem.quantum" + version: "2.0.3" + installs: 413 + author: "Caleb Ephrem" + repo: "https://github.com/calebephrem/quantum-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" +colors: + bg: "#141530" + fg: "#E5E5E5" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#DDCC55" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#70EFEF" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAFF4C" + brightYellow: "#FFDD70" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#00DDEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 279 + contrast: + fg: 89.9 + black: 0 + red: 43.9 + green: 69.9 + yellow: 73.6 + blue: 60.4 + magenta: 60.5 + cyan: 84.4 + white: 71.6 + brightBlack: 22.7 + brightRed: 46.4 + brightGreen: 92 + brightYellow: 86.5 + brightBlue: 63.2 + brightMagenta: 63.3 + brightCyan: 73 + brightWhite: 106.7 diff --git a/themes/quantum-night.yaml b/themes/quantum-night.yaml new file mode 100644 index 00000000..a75aad64 --- /dev/null +++ b/themes/quantum-night.yaml @@ -0,0 +1,49 @@ +name: "Quantum Night" +source: + marketplace_id: "NGdust.quantum-night" + version: "1.0.0" + installs: 97 + author: "NGdust" + repo: "https://github.com/NGdust/quantum-night" + url: "https://marketplace.visualstudio.com/items?itemName=NGdust.quantum-night" +colors: + bg: "#1A1B26" + fg: "#E4F0FB" + black: "#1A1B26" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#F7CB7A" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#E4F0FB" + brightBlack: "#565F89" + brightRed: "#F7768E" + brightGreen: "#9ECE6A" + brightYellow: "#E0AF68" + brightBlue: "#F7CB7A" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#E4F0FB" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 95.4 + black: 0 + red: 49.4 + green: 66.9 + yellow: 62.2 + blue: 77.3 + magenta: 55 + cyan: 70.5 + white: 95.4 + brightBlack: 19.5 + brightRed: 49.4 + brightGreen: 66.9 + brightYellow: 62.2 + brightBlue: 77.3 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 95.4 diff --git a/themes/quantum-synthwave.yaml b/themes/quantum-synthwave.yaml new file mode 100644 index 00000000..16950403 --- /dev/null +++ b/themes/quantum-synthwave.yaml @@ -0,0 +1,49 @@ +name: "Quantum Synthwave" +source: + marketplace_id: "GatomontesRoselll.quantum-vscode" + version: "0.1.22" + installs: 639 + author: "GatomontesRoseIII" + repo: "https://github.com/ramirezherreranoeelvis/quantum-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=GatomontesRoselll.quantum-vscode" +colors: + bg: "#040014" + fg: "#F2F3F7" + black: "#283034" + red: "#FF2E97" + green: "#62A9CF" + yellow: "#FFD400" + blue: "#42C6FF" + magenta: "#FF2AFC" + cyan: "#42C6FF" + white: "#D9E0E9" + brightBlack: "#435056" + brightRed: "#FF2E97" + brightGreen: "#ADD0E5" + brightYellow: "#FFD400" + brightBlue: "#42C6FF" + brightMagenta: "#FF2AFC" + brightCyan: "#42C6FF" + brightWhite: "#F4F6F9" +meta: + mode: "dark" + accent: "pink" + hue: 290 + contrast: + fg: 100 + black: 0 + red: 41.5 + green: 51.3 + yellow: 82.9 + blue: 65.2 + magenta: 47 + cyan: 65.2 + white: 87.3 + brightBlack: 13.4 + brightRed: 41.5 + brightGreen: 75 + brightYellow: 82.9 + brightBlue: 65.2 + brightMagenta: 47 + brightCyan: 65.2 + brightWhite: 101.8 diff --git a/themes/quantumqubic.yaml b/themes/quantumqubic.yaml new file mode 100644 index 00000000..16652e16 --- /dev/null +++ b/themes/quantumqubic.yaml @@ -0,0 +1,49 @@ +name: "QuantumQubic" +source: + marketplace_id: "furkangkhsn.quantumqubic" + version: "0.0.3" + installs: 341 + author: "Furkan Gökhasan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=furkangkhsn.quantumqubic" +colors: + bg: "#263238" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 230 + contrast: + fg: 102.7 + black: 0 + red: 22.5 + green: 48.8 + yellow: 81.4 + blue: 23.2 + magenta: 25.6 + cyan: 43.4 + white: 85.8 + brightBlack: 17.9 + brightRed: 34.4 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.8 + brightMagenta: 41.2 + brightCyan: 51.2 + brightWhite: 85.8 diff --git a/themes/quantxz.yaml b/themes/quantxz.yaml new file mode 100644 index 00000000..4b01829f --- /dev/null +++ b/themes/quantxz.yaml @@ -0,0 +1,49 @@ +name: "quantxz" +source: + marketplace_id: "quantxz.quantxz" + version: "0.0.9" + installs: 1986 + author: "anderson" + repo: "https://github.com/quantxz/dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=quantxz.quantxz" +colors: + bg: "#1C1E26" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 78.6 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/quarkus-dark-theme.yaml b/themes/quarkus-dark-theme.yaml new file mode 100644 index 00000000..76ac90cf --- /dev/null +++ b/themes/quarkus-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Quarkus Dark Theme" +source: + marketplace_id: "tsurdilovic.theme-quarkus-dark" + version: "0.0.1" + installs: 8880 + author: "Tihomir Surdilovic" + repo: "https://github.com/tsurdilo/theme-quarkus-dark" + url: "https://marketplace.visualstudio.com/items?itemName=tsurdilovic.theme-quarkus-dark" +colors: + bg: "#282A36" + fg: "#4A97E8" + black: "#21222C" + red: "#FF5555" + green: "#46B29D" + yellow: "#F0CA4D" + blue: "#00FFFF" + magenta: "#E37B40" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#00FFFF" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 40.8 + black: 0 + red: 40.4 + green: 47.7 + yellow: 72.7 + blue: 88.2 + magenta: 42.6 + cyan: 88.2 + white: 103.9 + brightBlack: 88.2 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/quasar.yaml b/themes/quasar.yaml new file mode 100644 index 00000000..92d54d3c --- /dev/null +++ b/themes/quasar.yaml @@ -0,0 +1,49 @@ +name: "Quasar" +source: + marketplace_id: "AarushAgarwal.quasar" + version: "0.4.0" + installs: 1584 + author: "Aarush Agarwal" + repo: "https://github.com/AgarwalAarush/Quasar" + url: "https://marketplace.visualstudio.com/items?itemName=AarushAgarwal.quasar" +colors: + bg: "#1E2025" + fg: "#F5F5F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 99.2 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.3 + magenta: 28.6 + cyan: 46.4 + white: 88.9 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/qubik-dark.yaml b/themes/qubik-dark.yaml new file mode 100644 index 00000000..4470b451 --- /dev/null +++ b/themes/qubik-dark.yaml @@ -0,0 +1,49 @@ +name: "Qubik Dark" +source: + marketplace_id: "qnbhd.qubik-themes" + version: "0.0.1" + installs: 21 + author: "Templin Konstantin" + repo: "https://github.com/qnbhd/qubik-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=qnbhd.qubik-themes" +colors: + bg: "#0B0B0F" + fg: "#E6E6E6" + black: "#0B0B0F" + red: "#D84F68" + green: "#54C0A3" + yellow: "#E6E7A3" + blue: "#479FFA" + magenta: "#9592A4" + cyan: "#54C0A3" + white: "#E6E6E6" + brightBlack: "#46474F" + brightRed: "#FF5C5C" + brightGreen: "#54C0A3" + brightYellow: "#F9B98C" + brightBlue: "#479FFA" + brightMagenta: "#9592A4" + brightCyan: "#54C0A3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.5 + black: 0 + red: 34.9 + green: 58.4 + yellow: 89.4 + blue: 48.7 + magenta: 44.4 + cyan: 58.4 + white: 91.5 + brightBlack: 10.8 + brightRed: 45.6 + brightGreen: 58.4 + brightYellow: 72.3 + brightBlue: 48.7 + brightMagenta: 44.4 + brightCyan: 58.4 + brightWhite: 107.7 diff --git a/themes/qubik-light.yaml b/themes/qubik-light.yaml new file mode 100644 index 00000000..65016356 --- /dev/null +++ b/themes/qubik-light.yaml @@ -0,0 +1,49 @@ +name: "Qubik Light" +source: + marketplace_id: "qnbhd.qubik-themes" + version: "0.0.1" + installs: 21 + author: "Templin Konstantin" + repo: "https://github.com/qnbhd/qubik-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=qnbhd.qubik-themes" +colors: + bg: "#FFFFFF" + fg: "#202020" + black: "#000000" + red: "#C83A4A" + green: "#3C9C7A" + yellow: "#9A9530" + blue: "#1B63B4" + magenta: "#706A80" + cyan: "#3C9C7A" + white: "#E0E0E0" + brightBlack: "#808080" + brightRed: "#FF4D4D" + brightGreen: "#3C9C7A" + brightYellow: "#D47F34" + brightBlue: "#1B63B4" + brightMagenta: "#706A80" + brightCyan: "#3C9C7A" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103.3 + black: 106 + red: 73.7 + green: 60.9 + yellow: 58.2 + blue: 79.6 + magenta: 75.6 + cyan: 60.9 + white: 15.8 + brightBlack: 66.9 + brightRed: 58.7 + brightGreen: 60.9 + brightYellow: 57 + brightBlue: 79.6 + brightMagenta: 75.6 + brightCyan: 60.9 + brightWhite: 0 diff --git a/themes/queensland-dark.yaml b/themes/queensland-dark.yaml new file mode 100644 index 00000000..fd1e4209 --- /dev/null +++ b/themes/queensland-dark.yaml @@ -0,0 +1,49 @@ +name: "Queensland Dark" +source: + marketplace_id: "lucidlabs.queensland-theme" + version: "1.2.0" + installs: 1 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.queensland-theme" +colors: + bg: "#131212" + fg: "#E8EDF3" + black: "#131212" + red: "#E22339" + green: "#6BBE27" + yellow: "#FFCC2C" + blue: "#005EB8" + magenta: "#73182C" + cyan: "#0085B3" + white: "#E8EDF3" + brightBlack: "#78797E" + brightRed: "#FF4D5E" + brightGreen: "#78D65B" + brightYellow: "#FFE066" + brightBlue: "#3D8FD6" + brightMagenta: "#C88DF7" + brightCyan: "#33A8CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 95.1 + black: 0 + red: 30.9 + green: 55.9 + yellow: 79.1 + blue: 20.3 + magenta: 7.5 + cyan: 32.8 + white: 95.1 + brightBlack: 31 + brightRed: 42.7 + brightGreen: 68.4 + brightYellow: 88.2 + brightBlue: 39.5 + brightMagenta: 53.6 + brightCyan: 48.4 + brightWhite: 107.3 diff --git a/themes/queensland-light.yaml b/themes/queensland-light.yaml new file mode 100644 index 00000000..7af1dab2 --- /dev/null +++ b/themes/queensland-light.yaml @@ -0,0 +1,49 @@ +name: "Queensland Light" +source: + marketplace_id: "lucidlabs.queensland-theme" + version: "1.2.0" + installs: 1 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.queensland-theme" +colors: + bg: "#FFFFFF" + fg: "#131212" + black: "#131212" + red: "#E22339" + green: "#0A690D" + yellow: "#B38800" + blue: "#005EB8" + magenta: "#73182C" + cyan: "#006A8F" + white: "#FFFFFF" + brightBlack: "#78797E" + brightRed: "#8A1220" + brightGreen: "#339D37" + brightYellow: "#FFCC2C" + brightBlue: "#004D99" + brightMagenta: "#5A1222" + brightCyan: "#0085B3" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.2 + black: 105.2 + red: 70.2 + green: 83.3 + yellow: 59.7 + blue: 80.9 + magenta: 94.4 + cyan: 79.8 + white: 0 + brightBlack: 70.1 + brightRed: 90.5 + brightGreen: 62 + brightYellow: 23.5 + brightBlue: 88 + brightMagenta: 99.2 + brightCyan: 68.3 + brightWhite: 0 diff --git a/themes/quiet-canvas.yaml b/themes/quiet-canvas.yaml new file mode 100644 index 00000000..0715ec03 --- /dev/null +++ b/themes/quiet-canvas.yaml @@ -0,0 +1,49 @@ +name: "Quiet Canvas" +source: + marketplace_id: "kevinwolfcr.vscode-quiet-canvas" + version: "1.0.0" + installs: 1749 + author: "(deprecated) Kevin Wolf" + repo: "https://github.com/kevinwolfcr/vscode-quiet-canvas" + url: "https://marketplace.visualstudio.com/items?itemName=kevinwolfcr.vscode-quiet-canvas" +colors: + bg: "#FCFCFD" + fg: "#7E808A" + black: "#EBEBEF" + red: "#EB9091" + green: "#5BB98C" + yellow: "#C9AA45" + blue: "#5EB0EF" + magenta: "#E38EC3" + cyan: "#3DB9CF" + white: "#60646C" + brightBlack: "#DDDDE3" + brightRed: "#C62A2F" + brightGreen: "#18794E" + brightYellow: "#775F28" + brightBlue: "#0B68CB" + brightMagenta: "#C41C87" + brightCyan: "#0C7792" + brightWhite: "#1C2024" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 65 + black: 7.4 + red: 44.4 + green: 45.3 + yellow: 42.5 + blue: 44.4 + magenta: 44.4 + cyan: 43.7 + white: 78 + brightBlack: 15.6 + brightRed: 74.5 + brightGreen: 74.8 + brightYellow: 78.5 + brightBlue: 74.7 + brightMagenta: 73.5 + brightCyan: 73.3 + brightWhite: 101.6 diff --git a/themes/quiet-hacker.yaml b/themes/quiet-hacker.yaml new file mode 100644 index 00000000..8beef55d --- /dev/null +++ b/themes/quiet-hacker.yaml @@ -0,0 +1,49 @@ +name: "Quiet Hacker" +source: + marketplace_id: "ManuelArtero.quiet-hacker" + version: "1.0.1" + installs: 37 + author: "Manuel Artero" + repo: "https://github.com/manuartero/vscode-theme-quiet-hacker" + url: "https://marketplace.visualstudio.com/items?itemName=ManuelArtero.quiet-hacker" +colors: + bg: "#000000" + fg: "#A0C8A0" + black: "#000000" + red: "#666666" + green: "#00FF41" + yellow: "#00802A" + blue: "#00802A" + magenta: "#666666" + cyan: "#00802A" + white: "#C8C8C8" + brightBlack: "#333333" + brightRed: "#888888" + brightGreen: "#00FF41" + brightYellow: "#00FF41" + brightBlue: "#00FF41" + brightMagenta: "#888888" + brightCyan: "#00FF41" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 67.3 + black: 0 + red: 23 + green: 86.7 + yellow: 27.2 + blue: 27.2 + magenta: 23 + cyan: 27.2 + white: 73.3 + brightBlack: 0 + brightRed: 38.6 + brightGreen: 86.7 + brightYellow: 86.7 + brightBlue: 86.7 + brightMagenta: 38.6 + brightCyan: 86.7 + brightWhite: 107.9 diff --git a/themes/quietude.yaml b/themes/quietude.yaml new file mode 100644 index 00000000..0f0941cd --- /dev/null +++ b/themes/quietude.yaml @@ -0,0 +1,49 @@ +name: "quietude" +source: + marketplace_id: "cmrg.quietude" + version: "0.1.2" + installs: 77 + author: "rafaelrcamargo" + repo: "https://github.com/rafaelrcamargo/quietude" + url: "https://marketplace.visualstudio.com/items?itemName=cmrg.quietude" +colors: + bg: "#1A1A1F" + fg: "#BAB39C" + black: "#282C33" + red: "#B4685F" + green: "#7B856A" + yellow: "#CA9E66" + blue: "#6578A6" + magenta: "#8F73A5" + cyan: "#88A3B0" + white: "#A79879" + brightBlack: "#57554F" + brightRed: "#B4685F" + brightGreen: "#95A679" + brightYellow: "#EDB253" + brightBlue: "#6578A6" + brightMagenta: "#926FAD" + brightCyan: "#88A3B0" + brightWhite: "#A79879" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 59.8 + black: 0 + red: 32.1 + green: 34 + yellow: 52.6 + blue: 29.9 + magenta: 32.4 + cyan: 48.9 + white: 46.1 + brightBlack: 14.7 + brightRed: 32.1 + brightGreen: 49.4 + brightYellow: 65.3 + brightBlue: 29.9 + brightMagenta: 32.1 + brightCyan: 48.9 + brightWhite: 46.1 diff --git a/themes/quirky-contrast-theme.yaml b/themes/quirky-contrast-theme.yaml new file mode 100644 index 00000000..de456598 --- /dev/null +++ b/themes/quirky-contrast-theme.yaml @@ -0,0 +1,49 @@ +name: "Quirky Contrast Theme" +source: + marketplace_id: "DarkMannn.quirky-contrast-theme" + version: "0.0.10" + installs: 616 + author: "DarkMannn" + repo: "https://github.com/DarkMannn/quirky-contrast-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.quirky-contrast-theme" +colors: + bg: "#1D1D1D" + fg: "#DDDDDD" + black: "#000000" + red: "#FF8080" + green: "#EDED88" + yellow: "#EDED88" + blue: "#6D9DBD" + magenta: "#FF8080" + cyan: "#6D9DBD" + white: "#DDDDDD" + brightBlack: "#545454" + brightRed: "#E64444" + brightGreen: "#D9CE9B" + brightYellow: "#D9CE9B" + brightBlue: "#74BCFF" + brightMagenta: "#E64444" + brightCyan: "#74BCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 84.3 + black: 0 + red: 53 + green: 91 + yellow: 91 + blue: 44.7 + magenta: 53 + cyan: 44.7 + white: 84.3 + brightBlack: 14 + brightRed: 34.1 + brightGreen: 74.8 + brightYellow: 74.8 + brightBlue: 61.5 + brightMagenta: 34.1 + brightCyan: 61.5 + brightWhite: 106.2 diff --git a/themes/qutheme.yaml b/themes/qutheme.yaml new file mode 100644 index 00000000..ecc74073 --- /dev/null +++ b/themes/qutheme.yaml @@ -0,0 +1,49 @@ +name: "QuTheme" +source: + marketplace_id: "Yoyo0904.qutheme" + version: "1.0.0" + installs: 146 + author: "Yoyo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Yoyo0904.qutheme" +colors: + bg: "#2E3440" + fg: "#ABB2BF" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 54.3 + black: 0 + red: 27.9 + green: 56.6 + yellow: 71.3 + blue: 43.6 + magenta: 41.4 + cyan: 57.6 + white: 87.3 + brightBlack: 10.3 + brightRed: 27.9 + brightGreen: 56.6 + brightYellow: 71.3 + brightBlue: 43.6 + brightMagenta: 41.4 + brightCyan: 55.5 + brightWhite: 91.2 diff --git a/themes/r-dark-pro-filter-black-white-border.yaml b/themes/r-dark-pro-filter-black-white-border.yaml new file mode 100644 index 00000000..6ef134ac --- /dev/null +++ b/themes/r-dark-pro-filter-black-white-border.yaml @@ -0,0 +1,49 @@ +name: "R Dark Pro (Filter Black White Border)" +source: + marketplace_id: "Rezky.r-dark-pro" + version: "0.0.44" + installs: 3273 + author: "Rezky P. Budihartono" + repo: "https://github.com/rezkycodes/rdark.pro" + url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" +colors: + bg: "#121517" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 59.6 + black: 9.1 + red: 36.9 + green: 60.6 + yellow: 48.8 + blue: 49.9 + magenta: 39.3 + cyan: 52.7 + white: 83.3 + brightBlack: 15.7 + brightRed: 46.3 + brightGreen: 77 + brightYellow: 61.5 + brightBlue: 64 + brightMagenta: 50.5 + brightCyan: 68 + brightWhite: 90.9 diff --git a/themes/r-dark-pro-filter-coolnight.yaml b/themes/r-dark-pro-filter-coolnight.yaml new file mode 100644 index 00000000..12864af0 --- /dev/null +++ b/themes/r-dark-pro-filter-coolnight.yaml @@ -0,0 +1,49 @@ +name: "R Dark Pro (Filter Coolnight)" +source: + marketplace_id: "Rezky.r-dark-pro" + version: "0.0.44" + installs: 3273 + author: "Rezky P. Budihartono" + repo: "https://github.com/rezkycodes/rdark.pro" + url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" +colors: + bg: "#0E1112" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 59.9 + black: 9.4 + red: 37.3 + green: 60.9 + yellow: 49.1 + blue: 50.2 + magenta: 39.6 + cyan: 53 + white: 83.6 + brightBlack: 16 + brightRed: 46.6 + brightGreen: 77.3 + brightYellow: 61.8 + brightBlue: 64.3 + brightMagenta: 50.8 + brightCyan: 68.3 + brightWhite: 91.2 diff --git a/themes/r-dark-pro-filter-dark-pro.yaml b/themes/r-dark-pro-filter-dark-pro.yaml new file mode 100644 index 00000000..205ef5f3 --- /dev/null +++ b/themes/r-dark-pro-filter-dark-pro.yaml @@ -0,0 +1,49 @@ +name: "R Dark Pro (Filter Dark Pro)" +source: + marketplace_id: "Rezky.r-dark-pro" + version: "0.0.44" + installs: 3273 + author: "Rezky P. Budihartono" + repo: "https://github.com/rezkycodes/rdark.pro" + url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" +colors: + bg: "#0C0F14" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 60 + black: 9.5 + red: 37.4 + green: 61 + yellow: 49.2 + blue: 50.3 + magenta: 39.7 + cyan: 53.1 + white: 83.7 + brightBlack: 16.1 + brightRed: 46.7 + brightGreen: 77.4 + brightYellow: 61.9 + brightBlue: 64.4 + brightMagenta: 50.9 + brightCyan: 68.4 + brightWhite: 91.3 diff --git a/themes/r-dark-pro-filter-laser-border.yaml b/themes/r-dark-pro-filter-laser-border.yaml new file mode 100644 index 00000000..e2881927 --- /dev/null +++ b/themes/r-dark-pro-filter-laser-border.yaml @@ -0,0 +1,49 @@ +name: "R Dark Pro (Filter Laser Border)" +source: + marketplace_id: "Rezky.r-dark-pro" + version: "0.0.44" + installs: 3273 + author: "Rezky P. Budihartono" + repo: "https://github.com/rezkycodes/rdark.pro" + url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" +colors: + bg: "#191B22" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 273 + contrast: + fg: 58.9 + black: 8.4 + red: 36.2 + green: 59.9 + yellow: 48.1 + blue: 49.2 + magenta: 38.6 + cyan: 52 + white: 82.6 + brightBlack: 15 + brightRed: 45.6 + brightGreen: 76.3 + brightYellow: 60.8 + brightBlue: 63.3 + brightMagenta: 49.8 + brightCyan: 67.3 + brightWhite: 90.2 diff --git a/themes/r-dark-pro-filter-nightfall.yaml b/themes/r-dark-pro-filter-nightfall.yaml new file mode 100644 index 00000000..d90f224e --- /dev/null +++ b/themes/r-dark-pro-filter-nightfall.yaml @@ -0,0 +1,49 @@ +name: "R Dark Pro (Filter Nightfall)" +source: + marketplace_id: "Rezky.r-dark-pro" + version: "0.0.44" + installs: 3273 + author: "Rezky P. Budihartono" + repo: "https://github.com/rezkycodes/rdark.pro" + url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" +colors: + bg: "#181920" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 279 + contrast: + fg: 59.1 + black: 8.6 + red: 36.5 + green: 60.1 + yellow: 48.3 + blue: 49.4 + magenta: 38.8 + cyan: 52.2 + white: 82.8 + brightBlack: 15.2 + brightRed: 45.8 + brightGreen: 76.5 + brightYellow: 61 + brightBlue: 63.5 + brightMagenta: 50 + brightCyan: 67.5 + brightWhite: 90.4 diff --git a/themes/r-dark-pro-filter-nightgrey.yaml b/themes/r-dark-pro-filter-nightgrey.yaml new file mode 100644 index 00000000..1c5460fc --- /dev/null +++ b/themes/r-dark-pro-filter-nightgrey.yaml @@ -0,0 +1,49 @@ +name: "R Dark Pro (Filter Nightgrey)" +source: + marketplace_id: "Rezky.r-dark-pro" + version: "0.0.44" + installs: 3273 + author: "Rezky P. Budihartono" + repo: "https://github.com/rezkycodes/rdark.pro" + url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" +colors: + bg: "#222222" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 58 + black: 7.4 + red: 35.3 + green: 58.9 + yellow: 47.2 + blue: 48.2 + magenta: 37.6 + cyan: 51.1 + white: 81.6 + brightBlack: 14 + brightRed: 44.7 + brightGreen: 75.4 + brightYellow: 59.8 + brightBlue: 62.3 + brightMagenta: 48.8 + brightCyan: 66.4 + brightWhite: 89.2 diff --git a/themes/r-dark-pro-filter-nightlate.yaml b/themes/r-dark-pro-filter-nightlate.yaml new file mode 100644 index 00000000..f901a792 --- /dev/null +++ b/themes/r-dark-pro-filter-nightlate.yaml @@ -0,0 +1,49 @@ +name: "R Dark Pro (Filter Nightlate)" +source: + marketplace_id: "Rezky.r-dark-pro" + version: "0.0.44" + installs: 3273 + author: "Rezky P. Budihartono" + repo: "https://github.com/rezkycodes/rdark.pro" + url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" +colors: + bg: "#16161E" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 59.4 + black: 8.9 + red: 36.7 + green: 60.4 + yellow: 48.6 + blue: 49.7 + magenta: 39.1 + cyan: 52.5 + white: 83.1 + brightBlack: 15.5 + brightRed: 46.1 + brightGreen: 76.8 + brightYellow: 61.3 + brightBlue: 63.8 + brightMagenta: 50.3 + brightCyan: 67.8 + brightWhite: 90.7 diff --git a/themes/r-e-m.yaml b/themes/r-e-m.yaml new file mode 100644 index 00000000..5c84ae83 --- /dev/null +++ b/themes/r-e-m.yaml @@ -0,0 +1,49 @@ +name: "r.e.m" +source: + marketplace_id: "anyavyazemskaya.r-e-m" + version: "0.0.1" + installs: 0 + author: "anya vyazemskaya" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=anyavyazemskaya.r-e-m" +colors: + bg: "#2D3543" + fg: "#CDC6FF" + black: "#000000" + red: "#FFB0AC" + green: "#AFFFC8" + yellow: "#FFE7BB" + blue: "#A3BFFF" + magenta: "#D7B8FF" + cyan: "#B9DDD2" + white: "#C4C4C4" + brightBlack: "#5E5E5E" + brightRed: "#FFB0AC" + brightGreen: "#AFFFC8" + brightYellow: "#FFE7BB" + brightBlue: "#A3BFFF" + brightMagenta: "#D7B8FF" + brightCyan: "#B9DDD2" + brightWhite: "#E4E3E2" +meta: + mode: "dark" + accent: "teal" + hue: 262 + contrast: + fg: 69.6 + black: 0 + red: 64.9 + green: 90 + yellow: 87.7 + blue: 61.9 + magenta: 65.4 + cyan: 74.9 + white: 64.6 + brightBlack: 13.4 + brightRed: 64.9 + brightGreen: 90 + brightYellow: 87.7 + brightBlue: 61.9 + brightMagenta: 65.4 + brightCyan: 74.9 + brightWhite: 83.5 diff --git a/themes/r-h-zero-monokai.yaml b/themes/r-h-zero-monokai.yaml new file mode 100644 index 00000000..aa658d50 --- /dev/null +++ b/themes/r-h-zero-monokai.yaml @@ -0,0 +1,49 @@ +name: "R_h_zero Monokai" +source: + marketplace_id: "Rhzero.rhzero-theme" + version: "0.0.2" + installs: 345 + author: "R_h_zero" + repo: "https://github.com/chouchouxsl/vscode-theme-R_h_zero" + url: "https://marketplace.visualstudio.com/items?itemName=Rhzero.rhzero-theme" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#4D9375" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#4D9375" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 33.5 + yellow: 67.4 + blue: 38.3 + magenta: 41.9 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 33.5 + brightYellow: 67.4 + brightBlue: 38.3 + brightMagenta: 9.5 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/rabbit.yaml b/themes/rabbit.yaml new file mode 100644 index 00000000..1473b5d1 --- /dev/null +++ b/themes/rabbit.yaml @@ -0,0 +1,49 @@ +name: "Rabbit" +source: + marketplace_id: "PlayfulRabbit.rabbit-theme" + version: "0.0.1" + installs: 102 + author: "Playful Rabbit" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PlayfulRabbit.rabbit-theme" +colors: + bg: "#07010F" + fg: "#FFDF25" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 307 + contrast: + fg: 87.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/radiant-noir.yaml b/themes/radiant-noir.yaml new file mode 100644 index 00000000..eabe1dd9 --- /dev/null +++ b/themes/radiant-noir.yaml @@ -0,0 +1,49 @@ +name: "Radiant Noir" +source: + marketplace_id: "marina-barbosa.canopus-theme" + version: "0.0.1" + installs: 27 + author: "marina-barbosa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=marina-barbosa.canopus-theme" +colors: + bg: "#0E1419" + fg: "#BDD1D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BDD1D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 244 + contrast: + fg: 75.7 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30.1 + cyan: 47.9 + white: 75.7 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 107.2 diff --git a/themes/radium.yaml b/themes/radium.yaml new file mode 100644 index 00000000..4e303b84 --- /dev/null +++ b/themes/radium.yaml @@ -0,0 +1,49 @@ +name: "radium" +source: + marketplace_id: "AndrewNijmeh.radium" + version: "1.1.5" + installs: 1221 + author: "Andrew Nijmeh" + repo: "https://github.com/radium-theme/vsc" + url: "https://marketplace.visualstudio.com/items?itemName=AndrewNijmeh.radium" +colors: + bg: "#011100" + fg: "#FFFFFF" + black: "#111111" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#EFC764" + brightBlue: "#97D4D9" + brightMagenta: "#D670D6" + brightCyan: "#B3DFD3" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 141 + contrast: + fg: 107.5 + black: 0 + red: 27.4 + green: 53.6 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 75.2 + brightBlue: 73.8 + brightMagenta: 46 + brightCyan: 81.2 + brightWhite: 90.7 diff --git a/themes/ragequit.yaml b/themes/ragequit.yaml new file mode 100644 index 00000000..2629ed7e --- /dev/null +++ b/themes/ragequit.yaml @@ -0,0 +1,49 @@ +name: "RageQuit" +source: + marketplace_id: "YuriRage.ragequit" + version: "0.1.4" + installs: 297 + author: "Yuri Rage" + repo: "https://github.com/yuri-rage/vscode-theme-ragequit" + url: "https://marketplace.visualstudio.com/items?itemName=YuriRage.ragequit" +colors: + bg: "#0A0E16" + fg: "#C8C4CE" + black: "#141820" + red: "#FC618D" + green: "#5DBA71" + yellow: "#C8B252" + blue: "#1E7EAA" + magenta: "#948AE3" + cyan: "#1E7EAA" + white: "#C8C4CE" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#5DBA71" + brightYellow: "#C8B252" + brightBlue: "#1E7EAA" + brightMagenta: "#948AE3" + brightCyan: "#1E7EAA" + brightWhite: "#C8C4CE" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 71.6 + black: 0 + red: 47 + green: 54.5 + yellow: 60.6 + blue: 30.2 + magenta: 44.9 + cyan: 30.2 + white: 71.6 + brightBlack: 23.5 + brightRed: 47 + brightGreen: 54.5 + brightYellow: 60.6 + brightBlue: 30.2 + brightMagenta: 44.9 + brightCyan: 30.2 + brightWhite: 71.6 diff --git a/themes/ragnarok.yaml b/themes/ragnarok.yaml new file mode 100644 index 00000000..f76eec3e --- /dev/null +++ b/themes/ragnarok.yaml @@ -0,0 +1,49 @@ +name: "Ragnarok" +source: + marketplace_id: "RagnarokCoding.ragnarok-coder-dark" + version: "1.0.3" + installs: 496 + author: "Filip Dzankic" + repo: "https://github.com/CaptRagnarok/vscode-ragnarok-coder-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RagnarokCoding.ragnarok-coder-dark" +colors: + bg: "#131313" + fg: "#C6CFE2" + black: "#333300" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 76.6 + black: 0 + red: 39.7 + green: 67.6 + yellow: 82.4 + blue: 56.3 + magenta: 54.1 + cyan: 60.1 + white: 107.2 + brightBlack: 15.9 + brightRed: 39.7 + brightGreen: 67.6 + brightYellow: 94.1 + brightBlue: 56.3 + brightMagenta: 54.1 + brightCyan: 74.3 + brightWhite: 107.2 diff --git a/themes/raij-dark-no-italics.yaml b/themes/raij-dark-no-italics.yaml new file mode 100644 index 00000000..b0e418aa --- /dev/null +++ b/themes/raij-dark-no-italics.yaml @@ -0,0 +1,49 @@ +name: "Raijū - Dark (No italics)" +source: + marketplace_id: "TobiasTimm.raiju" + version: "2.2.2" + installs: 6927 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/raiju" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.raiju" +colors: + bg: "#171D2B" + fg: "#E6E6E6" + black: "#6F7899" + red: "#A188F1" + green: "#7EBBBB" + yellow: "#FFEDCB" + blue: "#8D9AD1" + magenta: "#CEB3F7" + cyan: "#A7A7EE" + white: "#D7E2FF" + brightBlack: "#6F7899" + brightRed: "#A188F1" + brightGreen: "#7EBBBB" + brightYellow: "#FFEDCB" + brightBlue: "#8D9AD1" + brightMagenta: "#CEB3F7" + brightCyan: "#A7A7EE" + brightWhite: "#D7E2FF" +meta: + mode: "dark" + accent: "magenta" + hue: 266 + contrast: + fg: 89.9 + black: 29.8 + red: 45.3 + green: 58 + yellow: 95.5 + blue: 47.2 + magenta: 66.3 + cyan: 56.4 + white: 87.4 + brightBlack: 29.8 + brightRed: 45.3 + brightGreen: 58 + brightYellow: 95.5 + brightBlue: 47.2 + brightMagenta: 66.3 + brightCyan: 56.4 + brightWhite: 87.4 diff --git a/themes/raij-no-italics.yaml b/themes/raij-no-italics.yaml new file mode 100644 index 00000000..5c7028bf --- /dev/null +++ b/themes/raij-no-italics.yaml @@ -0,0 +1,49 @@ +name: "Raijū (No italics)" +source: + marketplace_id: "TobiasTimm.raiju" + version: "2.2.2" + installs: 6927 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/raiju" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.raiju" +colors: + bg: "#262B3B" + fg: "#E6E6E6" + black: "#6F7899" + red: "#A188F1" + green: "#7EBBBB" + yellow: "#FFEDCB" + blue: "#8D9AD1" + magenta: "#CEB3F7" + cyan: "#A7A7EE" + white: "#D7E2FF" + brightBlack: "#6F7899" + brightRed: "#A188F1" + brightGreen: "#7EBBBB" + brightYellow: "#FFEDCB" + brightBlue: "#8D9AD1" + brightMagenta: "#CEB3F7" + brightCyan: "#A7A7EE" + brightWhite: "#D7E2FF" +meta: + mode: "dark" + accent: "magenta" + hue: 271 + contrast: + fg: 87.5 + black: 27.4 + red: 42.9 + green: 55.7 + yellow: 93.1 + blue: 44.8 + magenta: 63.9 + cyan: 54.1 + white: 85 + brightBlack: 27.4 + brightRed: 42.9 + brightGreen: 55.7 + brightYellow: 93.1 + brightBlue: 44.8 + brightMagenta: 63.9 + brightCyan: 54.1 + brightWhite: 85 diff --git a/themes/rain-city-theme.yaml b/themes/rain-city-theme.yaml new file mode 100644 index 00000000..1578bd8c --- /dev/null +++ b/themes/rain-city-theme.yaml @@ -0,0 +1,49 @@ +name: "Rain City Theme" +source: + marketplace_id: "DaniSyam.rain-city-theme" + version: "0.1.0" + installs: 218 + author: "DaniSyam" + repo: "https://github.com/danisyam/rain-city-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DaniSyam.rain-city-theme" +colors: + bg: "#F0F4F8" + fg: "#2C3E50" + black: "#34495E" + red: "#C0392B" + green: "#27AE60" + yellow: "#D35400" + blue: "#2980B9" + magenta: "#8E44AD" + cyan: "#16A085" + white: "#ECF0F1" + brightBlack: "#7F8C8D" + brightRed: "#E74C3C" + brightGreen: "#2ECC71" + brightYellow: "#F39C12" + brightBlue: "#3498DB" + brightMagenta: "#9B59B6" + brightCyan: "#1ABC9C" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 88.5 + black: 84.5 + red: 69.1 + green: 47.6 + yellow: 60.9 + blue: 62.5 + magenta: 71.9 + cyan: 52.8 + white: 0 + brightBlack: 55.5 + brightRed: 57.7 + brightGreen: 33.7 + brightYellow: 35.9 + brightBlue: 51.4 + brightMagenta: 65.2 + brightCyan: 40 + brightWhite: 0 diff --git a/themes/rain.yaml b/themes/rain.yaml new file mode 100644 index 00000000..d79b346f --- /dev/null +++ b/themes/rain.yaml @@ -0,0 +1,49 @@ +name: "Rain" +source: + marketplace_id: "Getcode.raindiaz" + version: "0.3.0" + installs: 5174 + author: "Getcode" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Getcode.raindiaz" +colors: + bg: "#0E151B" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 245 + contrast: + fg: 107.1 + black: 0 + red: 27 + green: 53.2 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.3 diff --git a/themes/rainbow-contrast.yaml b/themes/rainbow-contrast.yaml new file mode 100644 index 00000000..f8b9394b --- /dev/null +++ b/themes/rainbow-contrast.yaml @@ -0,0 +1,49 @@ +name: "rainbow-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#16181A" + fg: "#C7D0D9" + black: "#222528" + red: "#BA0E2E" + green: "#B3CC57" + yellow: "#EF746F" + blue: "#FFBE40" + magenta: "#3FB4C5" + cyan: "#F86F50" + white: "#D6DDE3" + brightBlack: "#454B51" + brightRed: "#F03E5F" + brightGreen: "#D6E4A5" + brightYellow: "#F9CDCB" + brightBlue: "#FFE1A6" + brightMagenta: "#8DD3DD" + brightCyan: "#FCC0B2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 76.3 + black: 0 + red: 20.4 + green: 68.3 + yellow: 46.8 + blue: 73.1 + magenta: 52.9 + cyan: 46.9 + white: 84.3 + brightBlack: 11 + brightRed: 36.7 + brightGreen: 85.1 + brightYellow: 81.4 + brightBlue: 89.6 + brightMagenta: 72.1 + brightCyan: 75.8 + brightWhite: 106.8 diff --git a/themes/rainbow-light.yaml b/themes/rainbow-light.yaml new file mode 100644 index 00000000..b52114e4 --- /dev/null +++ b/themes/rainbow-light.yaml @@ -0,0 +1,49 @@ +name: "rainbow-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#B3CC57" + yellow: "#EF746F" + blue: "#FFBE40" + magenta: "#3FB4C5" + cyan: "#F86F50" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#D6E4A5" + brightYellow: "#F9CDCB" + brightBlue: "#FFE1A6" + brightMagenta: "#8DD3DD" + brightCyan: "#FCC0B2" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 33.2 + yellow: 53.9 + blue: 28.7 + magenta: 48 + cyan: 53.8 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 17.4 + brightYellow: 20.9 + brightBlue: 13.2 + brightMagenta: 29.7 + brightCyan: 26.2 + brightWhite: 71.1 diff --git a/themes/rainbow-material-theme.yaml b/themes/rainbow-material-theme.yaml new file mode 100644 index 00000000..49928a84 --- /dev/null +++ b/themes/rainbow-material-theme.yaml @@ -0,0 +1,49 @@ +name: "rainbow-material-theme" +source: + marketplace_id: "yasgreen93.rainbow-material-theme" + version: "0.3.0" + installs: 3285 + author: "yasgreen93" + repo: "https://github.com/yasgreen93/rainbow-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yasgreen93.rainbow-material-theme" +colors: + bg: "#202020" + fg: "#B8B8B8" + black: "#000000" + red: "#FF5370" + green: "#AEEC51" + yellow: "#FCD247" + blue: "#5E8EF8" + magenta: "#B96EEB" + cyan: "#5ECCF8" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#AEEC51" + brightYellow: "#FCD247" + brightBlue: "#5E8EF8" + brightMagenta: "#B96EEB" + brightCyan: "#5ECCF8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 61.9 + black: 0 + red: 42.5 + green: 81.8 + yellow: 79.8 + blue: 41.5 + magenta: 40.4 + cyan: 66.4 + white: 105.8 + brightBlack: 9.8 + brightRed: 42.5 + brightGreen: 81.8 + brightYellow: 79.8 + brightBlue: 41.5 + brightMagenta: 40.4 + brightCyan: 66.4 + brightWhite: 105.8 diff --git a/themes/rainbow-pastel-theme.yaml b/themes/rainbow-pastel-theme.yaml new file mode 100644 index 00000000..db334261 --- /dev/null +++ b/themes/rainbow-pastel-theme.yaml @@ -0,0 +1,49 @@ +name: "Rainbow Pastel Theme" +source: + marketplace_id: "Tash.tashpastel" + version: "0.0.3" + installs: 1053 + author: "Tash" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Tash.tashpastel" +colors: + bg: "#061B26" + fg: "#F5F5F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 234 + contrast: + fg: 100 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.5 + cyan: 47.3 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.3 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/rainbow.yaml b/themes/rainbow.yaml new file mode 100644 index 00000000..96d6ca62 --- /dev/null +++ b/themes/rainbow.yaml @@ -0,0 +1,49 @@ +name: "rainbow" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#373C42" + fg: "#C7D0D9" + black: "#434950" + red: "#BA0E2E" + green: "#B3CC57" + yellow: "#EF746F" + blue: "#FFBE40" + magenta: "#3FB4C5" + cyan: "#F86F50" + white: "#D6DDE3" + brightBlack: "#656F7A" + brightRed: "#F03E5F" + brightGreen: "#D6E4A5" + brightYellow: "#F9CDCB" + brightBlue: "#FFE1A6" + brightMagenta: "#8DD3DD" + brightCyan: "#FCC0B2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + contrast: + fg: 69 + black: 0 + red: 13.2 + green: 61.1 + yellow: 39.6 + blue: 65.8 + magenta: 45.7 + cyan: 39.6 + white: 77 + brightBlack: 18.1 + brightRed: 29.4 + brightGreen: 77.9 + brightYellow: 74.2 + brightBlue: 82.3 + brightMagenta: 64.8 + brightCyan: 68.5 + brightWhite: 99.5 diff --git a/themes/rainbowdrops-dark.yaml b/themes/rainbowdrops-dark.yaml new file mode 100644 index 00000000..4ed4bb92 --- /dev/null +++ b/themes/rainbowdrops-dark.yaml @@ -0,0 +1,49 @@ +name: "RainbowDrops Dark" +source: + marketplace_id: "WithOutCat.theme-rainbowdrops" + version: "3.0.0" + installs: 5114 + author: "WithOutCat" + repo: "https://github.com/withoutcat/rainbowdrops" + url: "https://marketplace.visualstudio.com/items?itemName=WithOutCat.theme-rainbowdrops" +colors: + bg: "#202020" + fg: "#D9E8F7" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 89.6 + black: 0 + red: 23.5 + green: 51.9 + yellow: 56.5 + blue: 33.5 + magenta: 31.1 + cyan: 49.3 + white: 87.4 + brightBlack: 20.9 + brightRed: 36.2 + brightGreen: 75.9 + brightYellow: 82.8 + brightBlue: 48.7 + brightMagenta: 45.4 + brightCyan: 72.3 + brightWhite: 100.9 diff --git a/themes/rainforest-dark.yaml b/themes/rainforest-dark.yaml new file mode 100644 index 00000000..4db3d2e5 --- /dev/null +++ b/themes/rainforest-dark.yaml @@ -0,0 +1,49 @@ +name: "Rainforest Dark" +source: + marketplace_id: "Gyde.rainforestdark" + version: "1.0.15" + installs: 31 + author: "Gyde" + repo: "https://github.com/GlennDoesGit/rainforestdark" + url: "https://marketplace.visualstudio.com/items?itemName=Gyde.rainforestdark" +colors: + bg: "#0F141E" + fg: "#CAD2E0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 78.2 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/rainx0r.yaml b/themes/rainx0r.yaml new file mode 100644 index 00000000..cd171f02 --- /dev/null +++ b/themes/rainx0r.yaml @@ -0,0 +1,49 @@ +name: "rainx0r" +source: + marketplace_id: "rainx0r.rainx0r-theme" + version: "0.0.3" + installs: 17 + author: "rainx0r" + repo: "https://github.com/rainx0r/rainx0r-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rainx0r.rainx0r-theme" +colors: + bg: "#0E181B" + fg: "#F8FBFC" + black: "#0E181B" + red: "#FF1E00" + green: "#00FFBF" + yellow: "#B3F2FF" + blue: "#00C2FF" + magenta: "#9DB4BB" + cyan: "#66E6FF" + white: "#F8FBFC" + brightBlack: "#0E181B" + brightRed: "#FF1E00" + brightGreen: "#00FFBF" + brightYellow: "#B3F2FF" + brightBlue: "#00C2FF" + brightMagenta: "#9DB4BB" + brightCyan: "#66E6FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 218 + contrast: + fg: 103.9 + black: 0 + red: 37.1 + green: 88.4 + yellow: 91.7 + blue: 61.7 + magenta: 58.6 + cyan: 80.5 + white: 103.9 + brightBlack: 0 + brightRed: 37.1 + brightGreen: 88.4 + brightYellow: 91.7 + brightBlue: 61.7 + brightMagenta: 58.6 + brightCyan: 80.5 + brightWhite: 106.9 diff --git a/themes/rainy-hydrangea.yaml b/themes/rainy-hydrangea.yaml new file mode 100644 index 00000000..9640f34d --- /dev/null +++ b/themes/rainy-hydrangea.yaml @@ -0,0 +1,49 @@ +name: "Rainy Hydrangea" +source: + marketplace_id: "okenakt.rainy-hydrangea" + version: "0.3.0" + installs: 167 + author: "okenakt" + repo: "https://github.com/okenakt/rainy-hydrangea" + url: "https://marketplace.visualstudio.com/items?itemName=okenakt.rainy-hydrangea" +colors: + bg: "#21272E" + fg: "#C3C5C7" + black: "#171D24" + red: "#DB817B" + green: "#7EAD72" + yellow: "#E6BD77" + blue: "#8BB6E0" + magenta: "#D681C4" + cyan: "#81D6D3" + white: "#C3C5C7" + brightBlack: "#21272E" + brightRed: "#DB817B" + brightGreen: "#7EAD72" + brightYellow: "#E6BD77" + brightBlue: "#8BB6E0" + brightMagenta: "#D681C4" + brightCyan: "#81D6D3" + brightWhite: "#C3C5C7" +meta: + mode: "dark" + accent: "pink" + hue: 252 + contrast: + fg: 68.2 + black: 0 + red: 44.7 + green: 48.2 + yellow: 67.3 + blue: 57.4 + magenta: 46.7 + cyan: 70 + white: 68.2 + brightBlack: 0 + brightRed: 44.7 + brightGreen: 48.2 + brightYellow: 67.3 + brightBlue: 57.4 + brightMagenta: 46.7 + brightCyan: 70 + brightWhite: 68.2 diff --git a/themes/raiyanplanet-dark-knight.yaml b/themes/raiyanplanet-dark-knight.yaml new file mode 100644 index 00000000..a5000c59 --- /dev/null +++ b/themes/raiyanplanet-dark-knight.yaml @@ -0,0 +1,49 @@ +name: "RaiyanPlanet Dark Knight" +source: + marketplace_id: "RaiyanPlanet.raiyanplanet-dark-theme" + version: "0.0.1" + installs: 98 + author: "Raiyan Planet" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RaiyanPlanet.raiyanplanet-dark-theme" +colors: + bg: "#11121B" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 60.3 + black: 0 + red: 50.3 + green: 73.2 + yellow: 63.1 + blue: 52.1 + magenta: 55.9 + cyan: 71.4 + white: 33 + brightBlack: 0 + brightRed: 50.3 + brightGreen: 73.2 + brightYellow: 63.1 + brightBlue: 52.1 + brightMagenta: 55.9 + brightCyan: 71.4 + brightWhite: 59.9 diff --git a/themes/raiyanplanet-darkest.yaml b/themes/raiyanplanet-darkest.yaml new file mode 100644 index 00000000..9866957c --- /dev/null +++ b/themes/raiyanplanet-darkest.yaml @@ -0,0 +1,49 @@ +name: "RaiyanPlanet Darkest" +source: + marketplace_id: "RaiyanPlanet.raiyanplanet-dark-theme" + version: "0.0.1" + installs: 98 + author: "Raiyan Planet" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RaiyanPlanet.raiyanplanet-dark-theme" +colors: + bg: "#000000" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 60.9 + black: 0 + red: 50.9 + green: 73.8 + yellow: 63.7 + blue: 52.7 + magenta: 56.6 + cyan: 72.1 + white: 33.6 + brightBlack: 0 + brightRed: 50.9 + brightGreen: 73.8 + brightYellow: 63.7 + brightBlue: 52.7 + brightMagenta: 56.6 + brightCyan: 72.1 + brightWhite: 60.5 diff --git a/themes/raiyanplanet-purple-world.yaml b/themes/raiyanplanet-purple-world.yaml new file mode 100644 index 00000000..083b291d --- /dev/null +++ b/themes/raiyanplanet-purple-world.yaml @@ -0,0 +1,49 @@ +name: "RaiyanPlanet Purple World" +source: + marketplace_id: "RaiyanPlanet.raiyanplanet-dark-theme" + version: "0.0.1" + installs: 98 + author: "Raiyan Planet" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RaiyanPlanet.raiyanplanet-dark-theme" +colors: + bg: "#121420" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 277 + contrast: + fg: 71.6 + black: 26.6 + red: 44.2 + green: 66 + yellow: 79.1 + blue: 56.1 + magenta: 54 + cyan: 78.5 + white: 107.1 + brightBlack: 26.6 + brightRed: 44.2 + brightGreen: 84.4 + brightYellow: 79.1 + brightBlue: 56.1 + brightMagenta: 54 + brightCyan: 78.5 + brightWhite: 107.1 diff --git a/themes/rajasthan-land-of-kings.yaml b/themes/rajasthan-land-of-kings.yaml new file mode 100644 index 00000000..ea5ada63 --- /dev/null +++ b/themes/rajasthan-land-of-kings.yaml @@ -0,0 +1,49 @@ +name: "Rajasthan - Land of Kings" +source: + marketplace_id: "ProudIndian.colors-of-india-themes" + version: "1.0.1" + installs: 37 + author: "Sachin Ghadi" + repo: "https://github.com/GhadiSachin/colors-of-india-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" +colors: + bg: "#1E1410" + fg: "#F4E8D8" + black: "#000000" + red: "#E74856" + green: "#E63946" + yellow: "#FFD700" + blue: "#3B8EEA" + magenta: "#B140AA" + cyan: "#29B8DB" + white: "#E5E5E5" + brightBlack: "#000000" + brightRed: "#E74856" + brightGreen: "#E63946" + brightYellow: "#FFD700" + brightBlue: "#3B8EEA" + brightMagenta: "#B140AA" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 43 + contrast: + fg: 92.9 + black: 0 + red: 35.9 + green: 33.5 + yellow: 83.3 + blue: 40 + magenta: 26.9 + cyan: 55.4 + white: 90.1 + brightBlack: 0 + brightRed: 35.9 + brightGreen: 33.5 + brightYellow: 83.3 + brightBlue: 40 + brightMagenta: 26.9 + brightCyan: 55.4 + brightWhite: 90.1 diff --git a/themes/rajoyish.yaml b/themes/rajoyish.yaml new file mode 100644 index 00000000..9135802e --- /dev/null +++ b/themes/rajoyish.yaml @@ -0,0 +1,49 @@ +name: "Rajoyish" +source: + marketplace_id: "RajeshBudhathoki.rajoyish" + version: "8.3.0" + installs: 525 + author: "Rajesh Budhathoki" + repo: "https://github.com/rajoyish/rajoyish-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RajeshBudhathoki.rajoyish" +colors: + bg: "#FAFBFC" + fg: "#1B0273" + black: "#1B0273" + red: "#FF5C57" + green: "#2A8502" + yellow: "#CF9C00" + blue: "#0478C0" + magenta: "#5200E8" + cyan: "#0478C0" + white: "#FAFBF9" + brightBlack: "#75798F" + brightRed: "#FFAEAC" + brightGreen: "#35CF68" + brightYellow: "#F5B900" + brightBlue: "#14B1FF" + brightMagenta: "#FF94D2" + brightCyan: "#0478C0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 99.1 + black: 99.1 + red: 53.6 + green: 69.8 + yellow: 46.3 + blue: 69.6 + magenta: 83.5 + cyan: 69.6 + white: 0 + brightBlack: 67.3 + brightRed: 29.7 + brightGreen: 36.8 + brightYellow: 29.9 + brightBlue: 44.1 + brightMagenta: 36.3 + brightCyan: 69.6 + brightWhite: 0 diff --git a/themes/rakkii-theme.yaml b/themes/rakkii-theme.yaml new file mode 100644 index 00000000..2f5de002 --- /dev/null +++ b/themes/rakkii-theme.yaml @@ -0,0 +1,49 @@ +name: "Rakkii Theme" +source: + marketplace_id: "Rakkii-Theme.rakkii" + version: "1.0.1" + installs: 65 + author: "Rakkii-Theme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Rakkii-Theme.rakkii" +colors: + bg: "#221136" + fg: "#FFFFFF" + black: "#949494" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#1B7AF5" + magenta: "#BC3FBC" + cyan: "#62B8D5" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#005CD3" + brightMagenta: "#D670D6" + brightCyan: "#2B809D" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 302 + contrast: + fg: 106.4 + black: 43.2 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 32.9 + magenta: 29.3 + cyan: 56.5 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 21.1 + brightMagenta: 44.9 + brightCyan: 29.4 + brightWhite: 89.6 diff --git a/themes/ramage.yaml b/themes/ramage.yaml new file mode 100644 index 00000000..4eccc6b8 --- /dev/null +++ b/themes/ramage.yaml @@ -0,0 +1,49 @@ +name: "Ramage" +source: + marketplace_id: "Conobi.ramage-vscode" + version: "0.1.4" + installs: 207 + author: "Conobi" + repo: "https://github.com/Donokami/ramage-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Conobi.ramage-vscode" +colors: + bg: "#1D2434" + fg: "#B3BDD6" + black: "#363636" + red: "#FF0883" + green: "#83FF08" + yellow: "#FF8308" + blue: "#0883FF" + magenta: "#BC3FBC" + cyan: "#08FF83" + white: "#DEDDDA" + brightBlack: "#424242" + brightRed: "#FF1E8E" + brightGreen: "#8EFF1E" + brightYellow: "#FF8E1E" + brightBlue: "#1E8EFF" + brightMagenta: "#D670D6" + brightCyan: "#1EFF8E" + brightWhite: "#FAFAF9" +meta: + mode: "dark" + accent: "green" + hue: 266 + contrast: + fg: 64.1 + black: 0 + red: 36.6 + green: 87.1 + yellow: 51.3 + blue: 35.3 + magenta: 28 + cyan: 84.9 + white: 83.2 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 87.9 + brightYellow: 54.5 + brightBlue: 39.2 + brightMagenta: 43.6 + brightCyan: 85.2 + brightWhite: 101.7 diff --git a/themes/ramazzotti-80s.yaml b/themes/ramazzotti-80s.yaml new file mode 100644 index 00000000..22244f74 --- /dev/null +++ b/themes/ramazzotti-80s.yaml @@ -0,0 +1,49 @@ +name: "ramazzotti-80s" +source: + marketplace_id: "panquequelol.ramazzotti" + version: "2.2.0" + installs: 561 + author: "panquequelol" + repo: "https://github.com/panquequelol/ramazzotti" + url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.ramazzotti" +colors: + bg: "#1C1B1A" + fg: "#BEC2CA" + black: "#6F7887" + red: "#E06C75" + green: "#9AC181" + yellow: "#D6C294" + blue: "#61AFEF" + magenta: "#CA90D0" + cyan: "#56B6C2" + white: "#BEC2CA" + brightBlack: "#6F7887" + brightRed: "#E06C75" + brightGreen: "#9AC181" + brightYellow: "#D6C294" + brightBlue: "#61AFEF" + brightMagenta: "#CA90D0" + brightCyan: "#56B6C2" + brightWhite: "#E3E5E8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 68.2 + black: 29.3 + red: 41.6 + green: 61.3 + yellow: 69.3 + blue: 54.2 + magenta: 51.6 + cyan: 54.1 + white: 68.2 + brightBlack: 29.3 + brightRed: 41.6 + brightGreen: 61.3 + brightYellow: 69.3 + brightBlue: 54.2 + brightMagenta: 51.6 + brightCyan: 54.1 + brightWhite: 89.4 diff --git a/themes/ramazzotti-flexobi.yaml b/themes/ramazzotti-flexobi.yaml new file mode 100644 index 00000000..c30cdbc0 --- /dev/null +++ b/themes/ramazzotti-flexobi.yaml @@ -0,0 +1,49 @@ +name: "ramazzotti flexobi" +source: + marketplace_id: "panquequelol.ramazzotti" + version: "2.2.0" + installs: 561 + author: "panquequelol" + repo: "https://github.com/panquequelol/ramazzotti" + url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.ramazzotti" +colors: + bg: "#100F0F" + fg: "#DBD7CA" + black: "#393A34" + red: "#4385BE" + green: "#D14D41" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#878580" + cyan: "#878580" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#4385BE" + brightGreen: "#D14D41" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#878580" + brightCyan: "#878580" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81.9 + black: 0 + red: 34.8 + green: 32.2 + yellow: 76.2 + blue: 42 + magenta: 36.8 + cyan: 36.8 + white: 81.9 + brightBlack: 30.2 + brightRed: 34.8 + brightGreen: 32.2 + brightYellow: 76.2 + brightBlue: 42 + brightMagenta: 36.8 + brightCyan: 36.8 + brightWhite: 107.5 diff --git a/themes/ramazzotti-gruvbox.yaml b/themes/ramazzotti-gruvbox.yaml new file mode 100644 index 00000000..bdbe643f --- /dev/null +++ b/themes/ramazzotti-gruvbox.yaml @@ -0,0 +1,49 @@ +name: "ramazzotti gruvbox" +source: + marketplace_id: "panquequelol.ramazzotti" + version: "2.2.0" + installs: 561 + author: "panquequelol" + repo: "https://github.com/panquequelol/ramazzotti" + url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.ramazzotti" +colors: + bg: "#100F0F" + fg: "#EBDBB2" + black: "#100F0F" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85 + black: 0 + red: 25.9 + green: 43.5 + yellow: 53.1 + blue: 32.2 + magenta: 32.3 + cyan: 42.6 + white: 47.9 + brightBlack: 37 + brightRed: 40.8 + brightGreen: 61.8 + brightYellow: 72.4 + brightBlue: 49.2 + brightMagenta: 48.6 + brightCyan: 60.7 + brightWhite: 85 diff --git a/themes/ramuda.yaml b/themes/ramuda.yaml new file mode 100644 index 00000000..6dab3592 --- /dev/null +++ b/themes/ramuda.yaml @@ -0,0 +1,49 @@ +name: "Ramuda" +source: + marketplace_id: "RienZhang.theme-ramuda-pink-dark" + version: "1.0.0" + installs: 4819 + author: "RienZhang" + repo: "https://github.com/fifthfir/Play" + url: "https://marketplace.visualstudio.com/items?itemName=RienZhang.theme-ramuda-pink-dark" +colors: + bg: "#251C2C" + fg: "#FFF0F5" + black: "#000000" + red: "#FFA0BF" + green: "#55E3B1" + yellow: "#FBFF00" + blue: "#FF83BB" + magenta: "#FFADC8" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#7575F1" + brightRed: "#FF9CBD" + brightGreen: "#3AD900" + brightYellow: "#FFE100" + brightBlue: "#68FCE8" + brightMagenta: "#FB94FF" + brightCyan: "#F69FC9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 310 + contrast: + fg: 98.3 + black: 0 + red: 64.4 + green: 73.7 + yellow: 100.1 + blue: 55.6 + magenta: 69.1 + cyan: 91.7 + white: 105.8 + brightBlack: 34.6 + brightRed: 63 + brightGreen: 65.2 + brightYellow: 86.6 + brightBlue: 89.3 + brightMagenta: 63.3 + brightCyan: 62.8 + brightWhite: 105.8 diff --git a/themes/rapture.yaml b/themes/rapture.yaml new file mode 100644 index 00000000..bbb516d8 --- /dev/null +++ b/themes/rapture.yaml @@ -0,0 +1,49 @@ +name: "Rapture" +source: + marketplace_id: "Pustur.rapture-vscode" + version: "1.7.0" + installs: 4827 + author: "Pustur" + repo: "https://github.com/Pustur/rapture-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Pustur.rapture-vscode" +colors: + bg: "#111E2A" + fg: "#C0C9E5" + black: "#000000" + red: "#FC644D" + green: "#7AFDE1" + yellow: "#FFF09B" + blue: "#6C9BF5" + magenta: "#FF4FA1" + cyan: "#64E0FF" + white: "#C0C9E5" + brightBlack: "#304B66" + brightRed: "#FC644D" + brightGreen: "#7AFDE1" + brightYellow: "#FFF09B" + brightBlue: "#6C9BF5" + brightMagenta: "#FF4FA1" + brightCyan: "#64E0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 247 + contrast: + fg: 72.4 + black: 0 + red: 44.7 + green: 90.8 + yellow: 95.4 + blue: 47.2 + magenta: 43.9 + cyan: 76.8 + white: 72.4 + brightBlack: 9.9 + brightRed: 44.7 + brightGreen: 90.8 + brightYellow: 95.4 + brightBlue: 47.2 + brightMagenta: 43.9 + brightCyan: 76.8 + brightWhite: 106.2 diff --git a/themes/rate-dark-cold.yaml b/themes/rate-dark-cold.yaml new file mode 100644 index 00000000..3eb22d2d --- /dev/null +++ b/themes/rate-dark-cold.yaml @@ -0,0 +1,49 @@ +name: "Rate Dark Cold" +source: + marketplace_id: "Roll7.rate-theme" + version: "0.0.11" + installs: 157 + author: "Roll7" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Roll7.rate-theme" +colors: + bg: "#2E3440" + fg: "#C8E4F0" + black: "#3B4252" + red: "#BF616A" + green: "#C1ECD1" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#C1ECD1" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 81.4 + black: 0 + red: 27.9 + green: 83 + yellow: 71.3 + blue: 43.6 + magenta: 41.4 + cyan: 57.6 + white: 87.3 + brightBlack: 10.3 + brightRed: 27.9 + brightGreen: 83 + brightYellow: 71.3 + brightBlue: 43.6 + brightMagenta: 41.4 + brightCyan: 55.5 + brightWhite: 91.2 diff --git a/themes/rate-dark.yaml b/themes/rate-dark.yaml new file mode 100644 index 00000000..4b0588c6 --- /dev/null +++ b/themes/rate-dark.yaml @@ -0,0 +1,49 @@ +name: "Rate Dark" +source: + marketplace_id: "Roll7.rate-theme" + version: "0.0.11" + installs: 157 + author: "Roll7" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Roll7.rate-theme" +colors: + bg: "#0E1117" + fg: "#DBD7CA" + black: "#393A34" + red: "#FF7B72" + green: "#299372" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#FF7B72" + brightGreen: "#299372" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 81.8 + black: 0 + red: 52.6 + green: 35.9 + yellow: 76.1 + blue: 41.9 + magenta: 44.4 + cyan: 49.8 + white: 81.8 + brightBlack: 30.1 + brightRed: 52.6 + brightGreen: 35.9 + brightYellow: 76.1 + brightBlue: 41.9 + brightMagenta: 44.4 + brightCyan: 49.8 + brightWhite: 107.4 diff --git a/themes/rate-light-soft.yaml b/themes/rate-light-soft.yaml new file mode 100644 index 00000000..eeeb9d35 --- /dev/null +++ b/themes/rate-light-soft.yaml @@ -0,0 +1,49 @@ +name: "Rate Light Soft" +source: + marketplace_id: "Roll7.rate-theme" + version: "0.0.11" + installs: 157 + author: "Roll7" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Roll7.rate-theme" +colors: + bg: "#FFFFF0" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#D73A49" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#D73A49" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.9 + black: 104.6 + red: 72.8 + green: 69.8 + yellow: 47.7 + blue: 77.6 + magenta: 80.5 + cyan: 62.8 + white: 20.4 + brightBlack: 45.2 + brightRed: 72.8 + brightGreen: 69.8 + brightYellow: 47.7 + brightBlue: 77.6 + brightMagenta: 80.5 + brightCyan: 62.8 + brightWhite: 16.9 diff --git a/themes/rate-light.yaml b/themes/rate-light.yaml new file mode 100644 index 00000000..ef107874 --- /dev/null +++ b/themes/rate-light.yaml @@ -0,0 +1,49 @@ +name: "Rate Light" +source: + marketplace_id: "Roll7.rate-theme" + version: "0.0.11" + installs: 157 + author: "Roll7" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Roll7.rate-theme" +colors: + bg: "#F8F8FF" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#D73A49" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#D73A49" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.6 + black: 101.4 + red: 69.6 + green: 66.6 + yellow: 44.4 + blue: 74.3 + magenta: 77.2 + cyan: 59.6 + white: 17.2 + brightBlack: 42 + brightRed: 69.6 + brightGreen: 66.6 + brightYellow: 44.4 + brightBlue: 74.3 + brightMagenta: 77.2 + brightCyan: 59.6 + brightWhite: 13.7 diff --git a/themes/ravenwood-dark.yaml b/themes/ravenwood-dark.yaml new file mode 100644 index 00000000..201c9ad3 --- /dev/null +++ b/themes/ravenwood-dark.yaml @@ -0,0 +1,49 @@ +name: "Ravenwood Dark" +source: + marketplace_id: "RaymondThurman.ravenwood" + version: "0.2.2" + installs: 45 + author: "Raymond Thurman" + repo: "https://github.com/raythurman2386/ravenwood-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=RaymondThurman.ravenwood" +colors: + bg: "#222822" + fg: "#E8D5B7" + black: "#2D3830" + red: "#E67E80" + green: "#4ADE80" + yellow: "#FBBF24" + blue: "#22D3EE" + magenta: "#F472B6" + cyan: "#34D399" + white: "#E8D5B7" + brightBlack: "#859289" + brightRed: "#E67E80" + brightGreen: "#4ADE80" + brightYellow: "#FBBF24" + brightBlue: "#22D3EE" + brightMagenta: "#F472B6" + brightCyan: "#34D399" + brightWhite: "#E8D5B7" +meta: + mode: "dark" + accent: "teal" + hue: 145 + contrast: + fg: 79.4 + black: 0 + red: 46 + green: 68.3 + yellow: 70.5 + blue: 66.4 + magenta: 47.7 + cyan: 63 + white: 79.4 + brightBlack: 38.8 + brightRed: 46 + brightGreen: 68.3 + brightYellow: 70.5 + brightBlue: 66.4 + brightMagenta: 47.7 + brightCyan: 63 + brightWhite: 79.4 diff --git a/themes/ravenwood-light.yaml b/themes/ravenwood-light.yaml new file mode 100644 index 00000000..e7b2846a --- /dev/null +++ b/themes/ravenwood-light.yaml @@ -0,0 +1,49 @@ +name: "Ravenwood Light" +source: + marketplace_id: "RaymondThurman.ravenwood" + version: "0.2.2" + installs: 45 + author: "Raymond Thurman" + repo: "https://github.com/raythurman2386/ravenwood-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=RaymondThurman.ravenwood" +colors: + bg: "#FDF6E3" + fg: "#3D4C53" + black: "#3D4C53" + red: "#C03C39" + green: "#5C7A0C" + yellow: "#B08500" + blue: "#1A6D9E" + magenta: "#B84D94" + cyan: "#1E7D5A" + white: "#6B7566" + brightBlack: "#3D4C53" + brightRed: "#C03C39" + brightGreen: "#5C7A0C" + brightYellow: "#B08500" + brightBlue: "#1A6D9E" + brightMagenta: "#B84D94" + brightCyan: "#1E7D5A" + brightWhite: "#F4F0D9" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 85.2 + black: 85.2 + red: 70.1 + green: 68.8 + yellow: 55.8 + blue: 72.5 + magenta: 66.4 + cyan: 69.4 + white: 68.2 + brightBlack: 85.2 + brightRed: 70.1 + brightGreen: 68.8 + brightYellow: 55.8 + brightBlue: 72.5 + brightMagenta: 66.4 + brightCyan: 69.4 + brightWhite: 0 diff --git a/themes/rb-s-desaturated.yaml b/themes/rb-s-desaturated.yaml new file mode 100644 index 00000000..304610b4 --- /dev/null +++ b/themes/rb-s-desaturated.yaml @@ -0,0 +1,49 @@ +name: "RB's Desaturated" +source: + marketplace_id: "TrexTheRobot.rb-color-theme" + version: "1.1.0" + installs: 44 + author: "TrexTheRobot" + repo: "https://github.com/jamiej1212/vsColorTheme" + url: "https://marketplace.visualstudio.com/items?itemName=TrexTheRobot.rb-color-theme" +colors: + bg: "#1D1D1D" + fg: "#D3D3D3" + black: "#000000" + red: "#B84646" + green: "#30B884" + yellow: "#D7D736" + blue: "#52749B" + magenta: "#AD50AD" + cyan: "#4F8C9B" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#BA5B5B" + brightGreen: "#5EE6AF" + brightYellow: "#F5D143" + brightBlue: "#7C9EC4" + brightMagenta: "#A961A9" + brightCyan: "#7CBFCF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 78.2 + black: 0 + red: 24.7 + green: 51.2 + yellow: 76.7 + blue: 26.4 + magenta: 28.3 + cyan: 34.8 + white: 89.3 + brightBlack: 21.3 + brightRed: 29.6 + brightGreen: 75.8 + brightYellow: 78.6 + brightBlue: 46.5 + brightMagenta: 31.1 + brightCyan: 60.6 + brightWhite: 89.3 diff --git a/themes/rbe-matrix-skin-theme.yaml b/themes/rbe-matrix-skin-theme.yaml new file mode 100644 index 00000000..7a106f77 --- /dev/null +++ b/themes/rbe-matrix-skin-theme.yaml @@ -0,0 +1,49 @@ +name: "RBE Matrix Skin Theme" +source: + marketplace_id: "RudeBoyEnterprises.rbe-matrix-skin-theme" + version: "1.0.2" + installs: 17709 + author: "Rude Boy Enterprises" + repo: "https://github.com/skamansam/vscode-rbe-matrix-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RudeBoyEnterprises.rbe-matrix-skin-theme" +colors: + bg: "#000000" + fg: "#00FF00" + black: "#000000" + red: "#AA0000" + green: "#00CC00" + yellow: "#CCCC00" + blue: "#0000CC" + magenta: "#CC00CC" + cyan: "#00CCCC" + white: "#CCCCCC" + brightBlack: "#444444" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 86.5 + black: 0 + red: 17.8 + green: 60.3 + yellow: 72 + blue: 9.9 + magenta: 31.4 + cyan: 64.4 + white: 75.7 + brightBlack: 9.8 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 16.2 + brightMagenta: 46.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/rdcd.yaml b/themes/rdcd.yaml new file mode 100644 index 00000000..907c4e1a --- /dev/null +++ b/themes/rdcd.yaml @@ -0,0 +1,49 @@ +name: "rdcd" +source: + marketplace_id: "shoizz.rdcd" + version: "0.1.0" + installs: 1608 + author: "denis" + repo: "git+https://github.com/Shoizz/rdcd-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shoizz.rdcd" +colors: + bg: "#161820" + fg: "#CED3DB" + black: "#161820" + red: "#F44336" + green: "#00E676" + yellow: "#FFDE03" + blue: "#206DAC" + magenta: "#FF0266" + cyan: "#00E676" + white: "#613F83" + brightBlack: "#232635" + brightRed: "#FB4934" + brightGreen: "#CACC53" + brightYellow: "#FABD2F" + brightBlue: "#00E676" + brightMagenta: "#DF6495" + brightCyan: "#8EC07C" + brightWhite: "#C6C8D0" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 78.5 + black: 0 + red: 37.6 + green: 73.2 + yellow: 86.2 + blue: 23.8 + magenta: 37.4 + cyan: 73.2 + white: 12.7 + brightBlack: 0 + brightRed: 40 + brightGreen: 71 + brightYellow: 71.7 + brightBlue: 73.2 + brightMagenta: 41 + brightCyan: 60 + brightWhite: 72.3 diff --git a/themes/re-dark-alt.yaml b/themes/re-dark-alt.yaml new file mode 100644 index 00000000..91bc45a2 --- /dev/null +++ b/themes/re-dark-alt.yaml @@ -0,0 +1,49 @@ +name: "re:Dark Alt" +source: + marketplace_id: "Cydo.re-theme" + version: "3.0.0" + installs: 695 + author: "Cydo" + repo: "https://github.com/CydoEntis/reThemes" + url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#D30700" + green: "#92C202" + yellow: "#CAAC00" + blue: "#429AFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#2C2C2C" + brightRed: "#FF0800" + brightGreen: "#CAFF29" + brightYellow: "#FBFF00" + brightBlue: "#85BEFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 103.3 + black: 0 + red: 24.6 + green: 58.9 + yellow: 56.2 + blue: 44.9 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 0 + brightRed: 35.3 + brightGreen: 93.8 + brightYellow: 99.9 + brightBlue: 63 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/re-eclipse-old-school.yaml b/themes/re-eclipse-old-school.yaml new file mode 100644 index 00000000..180716dd --- /dev/null +++ b/themes/re-eclipse-old-school.yaml @@ -0,0 +1,49 @@ +name: "re:Eclipse Old School" +source: + marketplace_id: "Cydo.re-theme" + version: "3.0.0" + installs: 695 + author: "Cydo" + repo: "https://github.com/CydoEntis/reThemes" + url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#FFFFFF" + red: "#FF6B68" + green: "#A8C023" + yellow: "#D6BF55" + blue: "#5394EC" + magenta: "#AE8ABE" + cyan: "#299999" + white: "#999999" + brightBlack: "#555555" + brightRed: "#FF8785" + brightGreen: "#A8C023" + brightYellow: "#FFFF00" + brightBlue: "#7EAEF1" + brightMagenta: "#FF99FF" + brightCyan: "#6CDADA" + brightWhite: "#1F1F1F" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 103.3 + black: 105.6 + red: 46.8 + green: 60.2 + yellow: 66 + blue: 42 + magenta: 43.9 + cyan: 37.9 + white: 44.9 + brightBlack: 13.8 + brightRed: 54.5 + brightGreen: 60.2 + brightYellow: 100.4 + brightBlue: 55 + brightMagenta: 65.3 + brightCyan: 71.8 + brightWhite: 0 diff --git a/themes/re-eclipse.yaml b/themes/re-eclipse.yaml new file mode 100644 index 00000000..ec4879c7 --- /dev/null +++ b/themes/re-eclipse.yaml @@ -0,0 +1,49 @@ +name: "re:Eclipse" +source: + marketplace_id: "Cydo.re-theme" + version: "3.0.0" + installs: 695 + author: "Cydo" + repo: "https://github.com/CydoEntis/reThemes" + url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 103.3 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/re-vision.yaml b/themes/re-vision.yaml new file mode 100644 index 00000000..6149232b --- /dev/null +++ b/themes/re-vision.yaml @@ -0,0 +1,49 @@ +name: "Re:Vision" +source: + marketplace_id: "Likivik.re-vision" + version: "0.2.0" + installs: 47 + author: "Likivik" + repo: "https://github.com/Likivik/Re-Vision" + url: "https://marketplace.visualstudio.com/items?itemName=Likivik.re-vision" +colors: + bg: "#FCFCFC" + fg: "#2C2C2C" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 98.8 + black: 104.2 + red: 72.2 + green: 47.4 + yellow: 56.1 + blue: 84.3 + magenta: 72.8 + cyan: 58.8 + white: 84.1 + brightBlack: 77 + brightRed: 72.2 + brightGreen: 39.1 + brightYellow: 39.1 + brightBlue: 84.3 + brightMagenta: 72.8 + brightCyan: 58.8 + brightWhite: 46.7 diff --git a/themes/react-theme.yaml b/themes/react-theme.yaml new file mode 100644 index 00000000..a7ee5011 --- /dev/null +++ b/themes/react-theme.yaml @@ -0,0 +1,49 @@ +name: "React Theme" +source: + marketplace_id: "MamoruDS.react-theme-vscode" + version: "1.4.5" + installs: 3450 + author: "Mamoru" + repo: "https://github.com/MamoruDS/react-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MamoruDS.react-theme-vscode" +colors: + bg: "#23272E" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 262 + contrast: + fg: 99.8 + black: 0 + red: 41.2 + green: 82.7 + yellow: 96.3 + blue: 51.4 + magenta: 52.4 + cyan: 81.7 + white: 99.8 + brightBlack: 25.8 + brightRed: 46.6 + brightGreen: 86.8 + brightYellow: 101.3 + brightBlue: 63.9 + brightMagenta: 60.4 + brightCyan: 94.6 + brightWhite: 104.7 diff --git a/themes/rebellion-contrast.yaml b/themes/rebellion-contrast.yaml new file mode 100644 index 00000000..c95afe5c --- /dev/null +++ b/themes/rebellion-contrast.yaml @@ -0,0 +1,49 @@ +name: "rebellion-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0C0C09" + fg: "#D6C7AB" + black: "#1B1B14" + red: "#BA0E2E" + green: "#FE5F00" + yellow: "#988F2A" + blue: "#8E7547" + magenta: "#FE5F00" + cyan: "#988F2A" + white: "#DED2BC" + brightBlack: "#464635" + brightRed: "#F03E5F" + brightGreen: "#FF9F65" + brightYellow: "#D1C757" + brightBlue: "#BEA77D" + brightMagenta: "#FF9F65" + brightCyan: "#D1C757" + brightWhite: "#F7F5F0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.4 + black: 0 + red: 21.3 + green: 45.2 + yellow: 40.8 + blue: 31.1 + magenta: 45.2 + cyan: 40.8 + white: 79.8 + brightBlack: 10 + brightRed: 37.6 + brightGreen: 63.2 + brightYellow: 70.7 + brightBlue: 55.9 + brightMagenta: 63.2 + brightCyan: 70.7 + brightWhite: 101.1 diff --git a/themes/rebellion-light.yaml b/themes/rebellion-light.yaml new file mode 100644 index 00000000..8da12528 --- /dev/null +++ b/themes/rebellion-light.yaml @@ -0,0 +1,49 @@ +name: "rebellion-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#EDE8DE" + fg: "#443A27" + black: "#F6F3EF" + red: "#BA0E2E" + green: "#FE5F00" + yellow: "#988F2A" + blue: "#8E7547" + magenta: "#FE5F00" + cyan: "#988F2A" + white: "#544830" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FF9F65" + brightYellow: "#D1C757" + brightBlue: "#BEA77D" + brightMagenta: "#FF9F65" + brightCyan: "#D1C757" + brightWhite: "#85714C" +meta: + mode: "light" + accent: "orange" + hue: 85 + contrast: + fg: 82.4 + black: 0 + red: 67 + green: 43 + yellow: 47.3 + blue: 57 + magenta: 43 + cyan: 47.3 + white: 77.1 + brightBlack: 12.7 + brightRed: 50.5 + brightGreen: 25.5 + brightYellow: 18.4 + brightBlue: 32.5 + brightMagenta: 25.5 + brightCyan: 18.4 + brightWhite: 59.3 diff --git a/themes/rebellion.yaml b/themes/rebellion.yaml new file mode 100644 index 00000000..2b364920 --- /dev/null +++ b/themes/rebellion.yaml @@ -0,0 +1,49 @@ +name: "rebellion" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#23231A" + fg: "#D6C7AB" + black: "#323225" + red: "#BA0E2E" + green: "#FE5F00" + yellow: "#988F2A" + blue: "#8E7547" + magenta: "#FE5F00" + cyan: "#988F2A" + white: "#DED2BC" + brightBlack: "#5E5E45" + brightRed: "#F03E5F" + brightGreen: "#FF9F65" + brightYellow: "#D1C757" + brightBlue: "#BEA77D" + brightMagenta: "#FF9F65" + brightCyan: "#D1C757" + brightWhite: "#F7F5F0" +meta: + mode: "dark" + accent: "orange" + hue: 108 + contrast: + fg: 71.1 + black: 0 + red: 19 + green: 42.9 + yellow: 38.5 + blue: 28.8 + magenta: 42.9 + cyan: 38.5 + white: 77.5 + brightBlack: 16.6 + brightRed: 35.3 + brightGreen: 60.9 + brightYellow: 68.5 + brightBlue: 53.6 + brightMagenta: 60.9 + brightCyan: 68.5 + brightWhite: 98.8 diff --git a/themes/recats-classic-dark.yaml b/themes/recats-classic-dark.yaml new file mode 100644 index 00000000..aaa021c8 --- /dev/null +++ b/themes/recats-classic-dark.yaml @@ -0,0 +1,49 @@ +name: "recats-classic-dark" +source: + marketplace_id: "senelway.recats-classic-dark" + version: "0.0.11" + installs: 638 + author: "senelway" + repo: "https://github.com/recats/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=senelway.recats-classic-dark" +colors: + bg: "#20242C" + fg: "#DADCDD" + black: "#20242C" + red: "#CE606B" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#61C5E6" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#CE606B" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8588B7" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 82.5 + black: 0 + red: 33.8 + green: 59.9 + yellow: 74.7 + blue: 46.9 + magenta: 44.8 + cyan: 61.8 + white: 90.6 + brightBlack: 13.7 + brightRed: 33.8 + brightGreen: 59.9 + brightYellow: 74.7 + brightBlue: 46.9 + brightMagenta: 44.8 + brightCyan: 37.6 + brightWhite: 94.5 diff --git a/themes/recats-nova-dark.yaml b/themes/recats-nova-dark.yaml new file mode 100644 index 00000000..431bcb42 --- /dev/null +++ b/themes/recats-nova-dark.yaml @@ -0,0 +1,49 @@ +name: "recats-nova-dark" +source: + marketplace_id: "senelway.recats-classic-dark" + version: "0.0.11" + installs: 638 + author: "senelway" + repo: "https://github.com/recats/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=senelway.recats-classic-dark" +colors: + bg: "#14161E" + fg: "#F2F4F4" + black: "#14161E" + red: "#CE606B" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#77B1EB" + magenta: "#B48EAD" + cyan: "#61C5E6" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#CE606B" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#77B1EB" + brightMagenta: "#B48EAD" + brightCyan: "#A7AAE0" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 99.4 + black: 0 + red: 35.6 + green: 61.7 + yellow: 76.4 + blue: 56.6 + magenta: 46.5 + cyan: 63.6 + white: 92.4 + brightBlack: 15.5 + brightRed: 35.6 + brightGreen: 61.7 + brightYellow: 76.4 + brightBlue: 56.6 + brightMagenta: 46.5 + brightCyan: 57.5 + brightWhite: 96.3 diff --git a/themes/recotheme.yaml b/themes/recotheme.yaml new file mode 100644 index 00000000..47a5270b --- /dev/null +++ b/themes/recotheme.yaml @@ -0,0 +1,49 @@ +name: "RecoTheme" +source: + marketplace_id: "recoluan.vscode-theme-reco" + version: "0.0.6" + installs: 692 + author: "reco_luan" + repo: "https://github.com/recoluan/vscode-theme-reco" + url: "https://marketplace.visualstudio.com/items?itemName=recoluan.vscode-theme-reco" +colors: + bg: "#222225" + fg: "#D6D6DD" + black: "#676767" + red: "#F26D6D" + green: "#15AC91" + yellow: "#E5B95C" + blue: "#4C9DF3" + magenta: "#E567DC" + cyan: "#75D3BA" + white: "#D6D6DD" + brightBlack: "#676767" + brightRed: "#F26D6D" + brightGreen: "#15AC91" + brightYellow: "#E5B95C" + brightBlue: "#4C9DF3" + brightMagenta: "#E567DC" + brightCyan: "#75D3BA" + brightWhite: "#D6D6DD" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.6 + black: 21 + red: 44.3 + green: 45.1 + yellow: 65.7 + blue: 45.4 + magenta: 45 + cyan: 67.5 + white: 79.6 + brightBlack: 21 + brightRed: 44.3 + brightGreen: 45.1 + brightYellow: 65.7 + brightBlue: 45.4 + brightMagenta: 45 + brightCyan: 67.5 + brightWhite: 79.6 diff --git a/themes/red-black-white-dark.yaml b/themes/red-black-white-dark.yaml new file mode 100644 index 00000000..9e4fe15b --- /dev/null +++ b/themes/red-black-white-dark.yaml @@ -0,0 +1,49 @@ +name: "Red Black White Dark" +source: + marketplace_id: "chenzilve.gundam-rx78-theme" + version: "0.1.0" + installs: 4 + author: "chenzilve" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=chenzilve.gundam-rx78-theme" +colors: + bg: "#080C14" + fg: "#E0E0E0" + black: "#0D1520" + red: "#E53935" + green: "#4CAF50" + yellow: "#FFC107" + blue: "#42A5F5" + magenta: "#FF5252" + cyan: "#64B5F6" + white: "#E0E0E0" + brightBlack: "#2A3A50" + brightRed: "#FF5252" + brightGreen: "#66BB6A" + brightYellow: "#FFD54F" + brightBlue: "#64B5F6" + brightMagenta: "#FF8A80" + brightCyan: "#90CAF9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 263 + contrast: + fg: 87.7 + black: 0 + red: 33.8 + green: 48.3 + yellow: 74.9 + blue: 50.5 + magenta: 43.6 + cyan: 58.5 + white: 87.7 + brightBlack: 0 + brightRed: 43.6 + brightGreen: 55.4 + brightYellow: 83.5 + brightBlue: 58.5 + brightMagenta: 57.3 + brightCyan: 70.6 + brightWhite: 107.7 diff --git a/themes/red-black-white-light.yaml b/themes/red-black-white-light.yaml new file mode 100644 index 00000000..a01de673 --- /dev/null +++ b/themes/red-black-white-light.yaml @@ -0,0 +1,49 @@ +name: "Red Black White Light" +source: + marketplace_id: "chenzilve.gundam-rx78-theme" + version: "0.1.0" + installs: 4 + author: "chenzilve" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=chenzilve.gundam-rx78-theme" +colors: + bg: "#FFFFFF" + fg: "#212121" + black: "#212121" + red: "#C62828" + green: "#2E7D32" + yellow: "#F57F17" + blue: "#1565C0" + magenta: "#D32F2F" + cyan: "#1976D2" + white: "#F5F5F5" + brightBlack: "#757575" + brightRed: "#D32F2F" + brightGreen: "#388E3C" + brightYellow: "#FF8F00" + brightBlue: "#1976D2" + brightMagenta: "#E53935" + brightCyan: "#1E88E5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103.1 + black: 103.1 + red: 76.4 + green: 75 + yellow: 50.9 + blue: 78.2 + magenta: 72.8 + cyan: 71.4 + white: 0 + brightBlack: 72 + brightRed: 72.8 + brightGreen: 68 + brightYellow: 44.5 + brightBlue: 71.4 + brightMagenta: 67.7 + brightCyan: 63.8 + brightWhite: 0 diff --git a/themes/red-grey.yaml b/themes/red-grey.yaml new file mode 100644 index 00000000..7b2a0d28 --- /dev/null +++ b/themes/red-grey.yaml @@ -0,0 +1,49 @@ +name: "red/grey" +source: + marketplace_id: "kociumba.red-noir-theme" + version: "0.0.1" + installs: 62 + author: "kociumba" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kociumba.red-noir-theme" +colors: + bg: "#191919" + fg: "#C9C9C9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72.7 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/red-neon.yaml b/themes/red-neon.yaml new file mode 100644 index 00000000..18854fca --- /dev/null +++ b/themes/red-neon.yaml @@ -0,0 +1,49 @@ +name: "Red Neon" +source: + marketplace_id: "puszkarek.arasaka-inferno-vscode-theme" + version: "1.2.0" + installs: 268 + author: "Puszkarek" + repo: "https://github.com/Puszkarek/arasaka-inferno-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.arasaka-inferno-vscode-theme" +colors: + bg: "#0E0E17" + fg: "#FF6872" + black: "#0E0E17" + red: "#FF2E6E" + green: "#FF3845" + yellow: "#F0B437" + blue: "#2570D4" + magenta: "#FF00AA" + cyan: "#00FFF7" + white: "#FF3845" + brightBlack: "#030305" + brightRed: "#FF2E6E" + brightGreen: "#FF3845" + brightYellow: "#F0B437" + brightBlue: "#2570D4" + brightMagenta: "#FF00A8" + brightCyan: "#00FFF7" + brightWhite: "#FFACAC" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 48.2 + black: 0 + red: 39.8 + green: 39.9 + yellow: 67.3 + blue: 28.3 + magenta: 40.6 + cyan: 91.4 + white: 39.9 + brightBlack: 0 + brightRed: 39.8 + brightGreen: 39.9 + brightYellow: 67.3 + brightBlue: 28.3 + brightMagenta: 40.5 + brightCyan: 91.4 + brightWhite: 69.4 diff --git a/themes/red-one-dark-pro-dark-bordered.yaml b/themes/red-one-dark-pro-dark-bordered.yaml new file mode 100644 index 00000000..a5c2f54b --- /dev/null +++ b/themes/red-one-dark-pro-dark-bordered.yaml @@ -0,0 +1,49 @@ +name: "Red One Dark Pro | Dark Bordered" +source: + marketplace_id: "giladgd.red-one-dark-pro" + version: "1.5.0" + installs: 35437 + author: "Gilad S." + repo: "https://gitlab.com/giladgd/red-one-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=giladgd.red-one-dark-pro" +colors: + bg: "#0D1016" + fg: "#B3B1AD" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 59.7 + black: 0 + red: 44.6 + green: 54.8 + yellow: 67.2 + blue: 61.2 + magenta: 92.6 + cyan: 78.4 + white: 72.3 + brightBlack: 23.5 + brightRed: 47.2 + brightGreen: 76.5 + brightYellow: 70.1 + brightBlue: 63.9 + brightMagenta: 95.8 + brightCyan: 81.4 + brightWhite: 107.4 diff --git a/themes/red-one-dark-pro-dark.yaml b/themes/red-one-dark-pro-dark.yaml new file mode 100644 index 00000000..6a12fccd --- /dev/null +++ b/themes/red-one-dark-pro-dark.yaml @@ -0,0 +1,49 @@ +name: "Red One Dark Pro | Dark" +source: + marketplace_id: "giladgd.red-one-dark-pro" + version: "1.5.0" + installs: 35437 + author: "Gilad S." + repo: "https://gitlab.com/giladgd/red-one-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=giladgd.red-one-dark-pro" +colors: + bg: "#0A0E14" + fg: "#B3B1AD" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 258 + contrast: + fg: 59.9 + black: 0 + red: 44.7 + green: 54.9 + yellow: 67.3 + blue: 61.3 + magenta: 92.7 + cyan: 78.6 + white: 72.4 + brightBlack: 23.6 + brightRed: 47.3 + brightGreen: 76.6 + brightYellow: 70.3 + brightBlue: 64 + brightMagenta: 95.9 + brightCyan: 81.6 + brightWhite: 107.6 diff --git a/themes/red-one-dark-pro-mirage-bordered.yaml b/themes/red-one-dark-pro-mirage-bordered.yaml new file mode 100644 index 00000000..eaddd2ba --- /dev/null +++ b/themes/red-one-dark-pro-mirage-bordered.yaml @@ -0,0 +1,49 @@ +name: "Red One Dark Pro | Mirage Bordered" +source: + marketplace_id: "giladgd.red-one-dark-pro" + version: "1.5.0" + installs: 35437 + author: "Gilad S." + repo: "https://gitlab.com/giladgd/red-one-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=giladgd.red-one-dark-pro" +colors: + bg: "#232834" + fg: "#CBCCC6" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#6DCBFA" + magenta: "#CFBAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#73D0FF" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + contrast: + fg: 71.8 + black: 0 + red: 47.9 + green: 65 + yellow: 78 + blue: 65.5 + magenta: 67.6 + cyan: 75.4 + white: 69.2 + brightBlack: 20.4 + brightRed: 50.4 + brightGreen: 79.5 + brightYellow: 81.1 + brightBlue: 68.4 + brightMagenta: 70.5 + brightCyan: 78.4 + brightWhite: 104.4 diff --git a/themes/red-one-dark-pro-mirage.yaml b/themes/red-one-dark-pro-mirage.yaml new file mode 100644 index 00000000..a7bb33ab --- /dev/null +++ b/themes/red-one-dark-pro-mirage.yaml @@ -0,0 +1,49 @@ +name: "Red One Dark Pro | Mirage" +source: + marketplace_id: "giladgd.red-one-dark-pro" + version: "1.5.0" + installs: 35437 + author: "Gilad S." + repo: "https://gitlab.com/giladgd/red-one-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=giladgd.red-one-dark-pro" +colors: + bg: "#1F2430" + fg: "#CBCCC6" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#6DCBFA" + magenta: "#CFBAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#73D0FF" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + contrast: + fg: 72.5 + black: 0 + red: 48.6 + green: 65.7 + yellow: 78.7 + blue: 66.2 + magenta: 68.3 + cyan: 76.1 + white: 69.9 + brightBlack: 21.1 + brightRed: 51.1 + brightGreen: 80.2 + brightYellow: 81.8 + brightBlue: 69.1 + brightMagenta: 71.2 + brightCyan: 79.1 + brightWhite: 105.1 diff --git a/themes/red-vintage.yaml b/themes/red-vintage.yaml new file mode 100644 index 00000000..e268b439 --- /dev/null +++ b/themes/red-vintage.yaml @@ -0,0 +1,49 @@ +name: "Red Vintage" +source: + marketplace_id: "Crnobog.red-vintage-theme" + version: "0.0.2" + installs: 141 + author: "Crnobog" + repo: "https://github.com/crnobog69/red-vintage" + url: "https://marketplace.visualstudio.com/items?itemName=Crnobog.red-vintage-theme" +colors: + bg: "#1C1414" + fg: "#D4C7B9" + black: "#1C1414" + red: "#A13C32" + green: "#8C7C60" + yellow: "#C9A554" + blue: "#5C5088" + magenta: "#976983" + cyan: "#807C99" + white: "#D4C7B9" + brightBlack: "#8A7570" + brightRed: "#D4827C" + brightGreen: "#B0A68D" + brightYellow: "#E6CC94" + brightBlue: "#9590B3" + brightMagenta: "#C498B3" + brightCyan: "#B0ACC9" + brightWhite: "#E9D9C9" +meta: + mode: "dark" + accent: "orange" + hue: 18 + contrast: + fg: 72.9 + black: 0 + red: 19.3 + green: 32.9 + yellow: 55.2 + blue: 16.5 + magenta: 29.6 + cyan: 33.5 + white: 72.9 + brightBlack: 30.8 + brightRed: 46 + brightGreen: 53.5 + brightYellow: 76.4 + brightBlue: 43.7 + brightMagenta: 52.5 + brightCyan: 58.2 + brightWhite: 84.1 diff --git a/themes/reddark.yaml b/themes/reddark.yaml new file mode 100644 index 00000000..0855d4a5 --- /dev/null +++ b/themes/reddark.yaml @@ -0,0 +1,49 @@ +name: "RedDark" +source: + marketplace_id: "Valentrj.reddark" + version: "0.0.4" + installs: 124 + author: "Valentrj" + repo: "https://imgur.com/XD3tFix" + url: "https://marketplace.visualstudio.com/items?itemName=Valentrj.reddark" +colors: + bg: "#210000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 29 + contrast: + fg: 107.4 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/reddish.yaml b/themes/reddish.yaml new file mode 100644 index 00000000..84523892 --- /dev/null +++ b/themes/reddish.yaml @@ -0,0 +1,49 @@ +name: "Reddish" +source: + marketplace_id: "nickmarsaw.reddish-color-theme" + version: "0.0.1" + installs: 136 + author: "nickmarsaw" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=nickmarsaw.reddish-color-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD2020" + green: "#0BA506" + yellow: "#C0C007" + blue: "#0656B0" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#20FF00" + brightYellow: "#FFFF00" + brightBlue: "#0070FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFDB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 26.3 + green: 42.4 + yellow: 65.2 + blue: 18.1 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 37.5 + brightGreen: 86.6 + brightYellow: 102.7 + brightBlue: 32.1 + brightMagenta: 46.2 + brightCyan: 90.5 + brightWhite: 91 diff --git a/themes/reddit-dark-based-theme-updated.yaml b/themes/reddit-dark-based-theme-updated.yaml new file mode 100644 index 00000000..e12e11c6 --- /dev/null +++ b/themes/reddit-dark-based-theme-updated.yaml @@ -0,0 +1,49 @@ +name: "Reddit Dark Based Theme - Updated" +source: + marketplace_id: "IntoCode.reddit-dark-theme-unofficial" + version: "2.6.0" + installs: 209 + author: "IntoCode" + repo: "https://github.com/Justin-Diner/reddit_dark_based_vscode_theme" + url: "https://marketplace.visualstudio.com/items?itemName=IntoCode.reddit-dark-theme-unofficial" +colors: + bg: "#1A1A1B" + fg: "#D7DADC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E1E1E1" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E1E1E1" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 82.5 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 87.2 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45 + brightCyan: 55.1 + brightWhite: 87.2 diff --git a/themes/rediohead-theme.yaml b/themes/rediohead-theme.yaml new file mode 100644 index 00000000..0270fc56 --- /dev/null +++ b/themes/rediohead-theme.yaml @@ -0,0 +1,49 @@ +name: "rediohead theme" +source: + marketplace_id: "ChiliMelon.rediohead-theme" + version: "0.0.2" + installs: 44 + author: "ChiliMelon" + repo: "https://github.com/chilimelon/rediohead_theme" + url: "https://marketplace.visualstudio.com/items?itemName=ChiliMelon.rediohead-theme" +colors: + bg: "#1C1414" + fg: "#D9BCBC" + black: "#000000" + red: "#FF5A5A" + green: "#67FF8A" + yellow: "#E1C542" + blue: "#74BCFF" + magenta: "#E557F9" + cyan: "#39CDE2" + white: "#D4D4D4" + brightBlack: "#000000" + brightRed: "#FF6D6D" + brightGreen: "#9AFFB2" + brightYellow: "#FFE05B" + brightBlue: "#9CD0FF" + brightMagenta: "#EC84FF" + brightCyan: "#74F2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 18 + contrast: + fg: 69.3 + black: 0 + red: 44.4 + green: 88.8 + yellow: 71.2 + blue: 62.3 + magenta: 45.5 + cyan: 65.6 + white: 79.6 + brightBlack: 0 + brightRed: 48.7 + brightGreen: 92.9 + brightYellow: 87.8 + brightBlue: 74 + brightMagenta: 57.2 + brightCyan: 87.2 + brightWhite: 107 diff --git a/themes/redorainbow.yaml b/themes/redorainbow.yaml new file mode 100644 index 00000000..c003dff5 --- /dev/null +++ b/themes/redorainbow.yaml @@ -0,0 +1,49 @@ +name: "redoRainbow" +source: + marketplace_id: "re-do.redo-rainbow-theme" + version: "0.0.3" + installs: 1265 + author: "re-do" + repo: "https://github.com/re-do/redo-rainbow-theme" + url: "https://marketplace.visualstudio.com/items?itemName=re-do.redo-rainbow-theme" +colors: + bg: "#1B1B1B" + fg: "#CBCDD2" + black: "#818491" + red: "#F51423" + green: "#0BDA51" + yellow: "#FFC40C" + blue: "#1F75FE" + magenta: "#F51423" + cyan: "#1F75FE" + white: "#CBCDD2" + brightBlack: "#818491" + brightRed: "#F51423" + brightGreen: "#0BDA51" + brightYellow: "#FFC40C" + brightBlue: "#1F75FE" + brightMagenta: "#0BDA51" + brightCyan: "#1F75FE" + brightWhite: "#CBCDD2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 74.8 + black: 35.4 + red: 33.9 + green: 66.2 + yellow: 74.9 + blue: 32.2 + magenta: 33.9 + cyan: 32.2 + white: 74.8 + brightBlack: 35.4 + brightRed: 33.9 + brightGreen: 66.2 + brightYellow: 74.9 + brightBlue: 32.2 + brightMagenta: 66.2 + brightCyan: 32.2 + brightWhite: 74.8 diff --git a/themes/redpro-dark.yaml b/themes/redpro-dark.yaml new file mode 100644 index 00000000..a597e302 --- /dev/null +++ b/themes/redpro-dark.yaml @@ -0,0 +1,49 @@ +name: "RedPro Dark" +source: + marketplace_id: "DaGhostman.red-pro-theme" + version: "1.0.2" + installs: 633 + author: "Dimitar Dimitrov" + repo: "https://github.com/DaGhostman/vs-red-pro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DaGhostman.red-pro-theme" +colors: + bg: "#111112" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 59.9 + black: 0 + red: 42.6 + green: 62.8 + yellow: 71.1 + blue: 55.2 + magenta: 45.6 + cyan: 55.1 + white: 83.5 + brightBlack: 36 + brightRed: 38.9 + brightGreen: 62.8 + brightYellow: 71.1 + brightBlue: 42 + brightMagenta: 13.2 + brightCyan: 55.1 + brightWhite: 83.5 diff --git a/themes/redpro-light.yaml b/themes/redpro-light.yaml new file mode 100644 index 00000000..b3218c48 --- /dev/null +++ b/themes/redpro-light.yaml @@ -0,0 +1,49 @@ +name: "RedPro Light" +source: + marketplace_id: "DaGhostman.red-pro-theme" + version: "1.0.2" + installs: 633 + author: "Dimitar Dimitrov" + repo: "https://github.com/DaGhostman/vs-red-pro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DaGhostman.red-pro-theme" +colors: + bg: "#EEEEED" + fg: "#544D40" + black: "#2D3139" + red: "#D91E1E" + green: "#98C379" + yellow: "#CF9732" + blue: "#3779AB" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#FF1038" + brightGreen: "#98C379" + brightYellow: "#DB6804" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#218E96" + brightWhite: "#D7DAE0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 78.7 + black: 89.2 + red: 62.6 + green: 28.9 + yellow: 40.2 + blue: 62.1 + magenta: 45.5 + cyan: 36.3 + white: 9.3 + brightBlack: 55 + brightRed: 53.6 + brightGreen: 28.9 + brightYellow: 51.7 + brightBlue: 49.1 + brightMagenta: 78.3 + brightCyan: 56 + brightWhite: 9.3 diff --git a/themes/redspecter.yaml b/themes/redspecter.yaml new file mode 100644 index 00000000..dc2694c0 --- /dev/null +++ b/themes/redspecter.yaml @@ -0,0 +1,49 @@ +name: "RedSpecter" +source: + marketplace_id: "AngelicaWisnes.redspecter" + version: "0.0.1" + installs: 53 + author: "AngelicaWisnes" + repo: "https://github.com/AngelicaWisnes/redspecter" + url: "https://marketplace.visualstudio.com/items?itemName=AngelicaWisnes.redspecter" +colors: + bg: "#240011" + fg: "#FF0077" + black: "#454545" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#949494" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#BCBCBC" +meta: + mode: "dark" + accent: "pink" + hue: 355 + contrast: + fg: 38.3 + black: 9.5 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.3 + brightBlack: 43.9 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 65.6 diff --git a/themes/refined-charcoal.yaml b/themes/refined-charcoal.yaml new file mode 100644 index 00000000..5dc6e383 --- /dev/null +++ b/themes/refined-charcoal.yaml @@ -0,0 +1,49 @@ +name: "Refined (Charcoal)" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10801 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" +colors: + bg: "#101010" + fg: "#D6DEEB" + black: "#101010" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 85.8 + black: 0 + red: 39.9 + green: 67.8 + yellow: 74.3 + blue: 56.5 + magenta: 54.3 + cyan: 60.3 + white: 107.4 + brightBlack: 16.2 + brightRed: 39.9 + brightGreen: 67.8 + brightYellow: 94.3 + brightBlue: 56.5 + brightMagenta: 54.3 + brightCyan: 74.6 + brightWhite: 107.4 diff --git a/themes/refined-default.yaml b/themes/refined-default.yaml new file mode 100644 index 00000000..6f3cc552 --- /dev/null +++ b/themes/refined-default.yaml @@ -0,0 +1,49 @@ +name: "Refined (Default)" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10801 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" +colors: + bg: "#1E1E1E" + fg: "#D6DEEB" + black: "#1E1E1E" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 84.4 + black: 0 + red: 38.5 + green: 66.4 + yellow: 72.9 + blue: 55.1 + magenta: 52.9 + cyan: 58.9 + white: 106 + brightBlack: 14.7 + brightRed: 38.5 + brightGreen: 66.4 + brightYellow: 92.9 + brightBlue: 55.1 + brightMagenta: 52.9 + brightCyan: 73.2 + brightWhite: 106 diff --git a/themes/refined-dracula.yaml b/themes/refined-dracula.yaml new file mode 100644 index 00000000..96b823db --- /dev/null +++ b/themes/refined-dracula.yaml @@ -0,0 +1,49 @@ +name: "Refined (Dracula)" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10801 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" +colors: + bg: "#282A36" + fg: "#D6DEEB" + black: "#282A36" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 278 + contrast: + fg: 82.3 + black: 0 + red: 36.4 + green: 64.3 + yellow: 70.8 + blue: 53 + magenta: 50.8 + cyan: 56.7 + white: 103.9 + brightBlack: 12.6 + brightRed: 36.4 + brightGreen: 64.3 + brightYellow: 90.8 + brightBlue: 53 + brightMagenta: 50.8 + brightCyan: 71 + brightWhite: 103.9 diff --git a/themes/refined-espresso.yaml b/themes/refined-espresso.yaml new file mode 100644 index 00000000..af337a3b --- /dev/null +++ b/themes/refined-espresso.yaml @@ -0,0 +1,49 @@ +name: "Refined (Espresso)" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10801 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" +colors: + bg: "#1D1813" + fg: "#D6DEEB" + black: "#1D1813" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 67 + contrast: + fg: 85 + black: 0 + red: 39.1 + green: 67 + yellow: 73.5 + blue: 55.7 + magenta: 53.6 + cyan: 59.5 + white: 106.7 + brightBlack: 15.4 + brightRed: 39.1 + brightGreen: 67 + brightYellow: 93.5 + brightBlue: 55.7 + brightMagenta: 53.6 + brightCyan: 73.8 + brightWhite: 106.7 diff --git a/themes/refined-matcha.yaml b/themes/refined-matcha.yaml new file mode 100644 index 00000000..2656894f --- /dev/null +++ b/themes/refined-matcha.yaml @@ -0,0 +1,49 @@ +name: "Refined (Matcha)" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10801 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" +colors: + bg: "#191E1E" + fg: "#D6DEEB" + black: "#191E1E" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 84.5 + black: 0 + red: 38.6 + green: 66.5 + yellow: 73 + blue: 55.2 + magenta: 53.1 + cyan: 59 + white: 106.2 + brightBlack: 14.9 + brightRed: 38.6 + brightGreen: 66.5 + brightYellow: 93 + brightBlue: 55.2 + brightMagenta: 53.1 + brightCyan: 73.3 + brightWhite: 106.2 diff --git a/themes/refined-mocha.yaml b/themes/refined-mocha.yaml new file mode 100644 index 00000000..db1e6c69 --- /dev/null +++ b/themes/refined-mocha.yaml @@ -0,0 +1,49 @@ +name: "Refined (Mocha)" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10801 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" +colors: + bg: "#2C251E" + fg: "#D6DEEB" + black: "#2C251E" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 67 + contrast: + fg: 83.1 + black: 0 + red: 37.2 + green: 65.1 + yellow: 71.6 + blue: 53.8 + magenta: 51.6 + cyan: 57.6 + white: 104.8 + brightBlack: 13.5 + brightRed: 37.2 + brightGreen: 65.1 + brightYellow: 91.6 + brightBlue: 53.8 + brightMagenta: 51.6 + brightCyan: 71.9 + brightWhite: 104.8 diff --git a/themes/refined-night-owl.yaml b/themes/refined-night-owl.yaml new file mode 100644 index 00000000..3ddac999 --- /dev/null +++ b/themes/refined-night-owl.yaml @@ -0,0 +1,49 @@ +name: "Refined (Night Owl)" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10801 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" +colors: + bg: "#011627" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 244 + contrast: + fg: 85.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 73.8 + blue: 56 + magenta: 53.8 + cyan: 59.8 + white: 107 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 107 diff --git a/themes/refined-oceanic-next.yaml b/themes/refined-oceanic-next.yaml new file mode 100644 index 00000000..1014ccef --- /dev/null +++ b/themes/refined-oceanic-next.yaml @@ -0,0 +1,49 @@ +name: "Refined (Oceanic Next)" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10801 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" +colors: + bg: "#1B2B34" + fg: "#D6DEEB" + black: "#1B2B34" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 234 + contrast: + fg: 82.6 + black: 0 + red: 36.7 + green: 64.6 + yellow: 71 + blue: 53.3 + magenta: 51.1 + cyan: 57 + white: 104.2 + brightBlack: 12.9 + brightRed: 36.7 + brightGreen: 64.6 + brightYellow: 91.1 + brightBlue: 53.3 + brightMagenta: 51.1 + brightCyan: 71.3 + brightWhite: 104.2 diff --git a/themes/refined-one.yaml b/themes/refined-one.yaml new file mode 100644 index 00000000..c2d4dbc1 --- /dev/null +++ b/themes/refined-one.yaml @@ -0,0 +1,49 @@ +name: "Refined (One)" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10801 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" +colors: + bg: "#282C34" + fg: "#D6DEEB" + black: "#282C34" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 264 + contrast: + fg: 82 + black: 0 + red: 36.1 + green: 64.1 + yellow: 70.5 + blue: 52.7 + magenta: 50.6 + cyan: 56.5 + white: 103.7 + brightBlack: 12.4 + brightRed: 36.1 + brightGreen: 64.1 + brightYellow: 90.5 + brightBlue: 52.7 + brightMagenta: 50.6 + brightCyan: 70.8 + brightWhite: 103.7 diff --git a/themes/refined-palenight.yaml b/themes/refined-palenight.yaml new file mode 100644 index 00000000..ec1c3b69 --- /dev/null +++ b/themes/refined-palenight.yaml @@ -0,0 +1,49 @@ +name: "Refined (Palenight)" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10801 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" +colors: + bg: "#292D3E" + fg: "#D6DEEB" + black: "#292D3E" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 274 + contrast: + fg: 81.6 + black: 0 + red: 35.7 + green: 63.6 + yellow: 70.1 + blue: 52.3 + magenta: 50.1 + cyan: 56.1 + white: 103.3 + brightBlack: 12 + brightRed: 35.7 + brightGreen: 63.6 + brightYellow: 90.1 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 70.4 + brightWhite: 103.3 diff --git a/themes/refined-purple.yaml b/themes/refined-purple.yaml new file mode 100644 index 00000000..9e1a252c --- /dev/null +++ b/themes/refined-purple.yaml @@ -0,0 +1,49 @@ +name: "Refined (Purple)" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10801 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" +colors: + bg: "#221E46" + fg: "#D6DEEB" + black: "#221E46" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 285 + contrast: + fg: 83.5 + black: 0 + red: 37.6 + green: 65.5 + yellow: 72 + blue: 54.2 + magenta: 52 + cyan: 58 + white: 105.1 + brightBlack: 13.8 + brightRed: 37.6 + brightGreen: 65.5 + brightYellow: 92 + brightBlue: 54.2 + brightMagenta: 52 + brightCyan: 72.2 + brightWhite: 105.1 diff --git a/themes/refined-slate.yaml b/themes/refined-slate.yaml new file mode 100644 index 00000000..56273914 --- /dev/null +++ b/themes/refined-slate.yaml @@ -0,0 +1,49 @@ +name: "Refined (Slate)" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10801 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" +colors: + bg: "#141820" + fg: "#D6DEEB" + black: "#141820" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 264 + contrast: + fg: 85.1 + black: 0 + red: 39.2 + green: 67.1 + yellow: 73.6 + blue: 55.8 + magenta: 53.7 + cyan: 59.6 + white: 106.8 + brightBlack: 15.5 + brightRed: 39.2 + brightGreen: 67.1 + brightYellow: 93.6 + brightBlue: 55.8 + brightMagenta: 53.7 + brightCyan: 73.9 + brightWhite: 106.8 diff --git a/themes/regard.yaml b/themes/regard.yaml new file mode 100644 index 00000000..635cdb7b --- /dev/null +++ b/themes/regard.yaml @@ -0,0 +1,49 @@ +name: "Regard" +source: + marketplace_id: "nasmevka.regard" + version: "1.5.0" + installs: 746 + author: "nasmevka" + repo: "https://gitlab.com/regard_theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=nasmevka.regard" +colors: + bg: "#1D1F20" + fg: "#F4ECF0" + black: "#303336" + red: "#C9303E" + green: "#4E945F" + yellow: "#FFBF6E" + blue: "#6690B3" + magenta: "#9989A3" + cyan: "#4E945F" + white: "#F4ECF0" + brightBlack: "#43474C" + brightRed: "#C9303E" + brightGreen: "#4E945F" + brightYellow: "#FFBF6E" + brightBlue: "#6690B3" + brightMagenta: "#9989A3" + brightCyan: "#9989A3" + brightWhite: "#F4ECF0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.8 + black: 0 + red: 25 + green: 35.6 + yellow: 73.3 + blue: 38.5 + magenta: 40 + cyan: 35.6 + white: 94.8 + brightBlack: 8.8 + brightRed: 25 + brightGreen: 35.6 + brightYellow: 73.3 + brightBlue: 38.5 + brightMagenta: 40 + brightCyan: 40 + brightWhite: 94.8 diff --git a/themes/registheme.yaml b/themes/registheme.yaml new file mode 100644 index 00000000..febd13cd --- /dev/null +++ b/themes/registheme.yaml @@ -0,0 +1,49 @@ +name: "RegisTheme" +source: + marketplace_id: "raige.RegisTheme" + version: "1.4.0" + installs: 213 + author: "raige" + repo: "https://github.com/raige38/regisTheme" + url: "https://marketplace.visualstudio.com/items?itemName=raige.RegisTheme" +colors: + bg: "#1D1D1D" + fg: "#FFF0D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 97.2 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/relaxed-theme-dark-focus.yaml b/themes/relaxed-theme-dark-focus.yaml new file mode 100644 index 00000000..d5a93b2f --- /dev/null +++ b/themes/relaxed-theme-dark-focus.yaml @@ -0,0 +1,49 @@ +name: "Relaxed Theme - Dark Focus" +source: + marketplace_id: "nomad-in-code.relaxed-theme-semantic-focus" + version: "0.0.13" + installs: 140 + author: "nomad-in-code" + repo: "https://github.com/chaluvadis/relax-theme-semantic-focus" + url: "https://marketplace.visualstudio.com/items?itemName=nomad-in-code.relaxed-theme-semantic-focus" +colors: + bg: "#2B2F34" + fg: "#DDE1E6" + black: "#151515" + red: "#C4776F" + green: "#8FAE6B" + yellow: "#D7C27E" + blue: "#85A7BF" + magenta: "#A47AA7" + cyan: "#B9D3EA" + white: "#DDE1E6" + brightBlack: "#8A8F98" + brightRed: "#C4776F" + brightGreen: "#8FAE6B" + brightYellow: "#D7C27E" + brightBlue: "#85A7BF" + brightMagenta: "#A47AA7" + brightCyan: "#B9D3EA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 254 + contrast: + fg: 83.4 + black: 0 + red: 35.9 + green: 48.3 + yellow: 65.6 + blue: 47.4 + magenta: 33.9 + cyan: 73.1 + white: 83.4 + brightBlack: 37.1 + brightRed: 35.9 + brightGreen: 48.3 + brightYellow: 65.6 + brightBlue: 47.4 + brightMagenta: 33.9 + brightCyan: 73.1 + brightWhite: 103.1 diff --git a/themes/relaxed-theme-day-light.yaml b/themes/relaxed-theme-day-light.yaml new file mode 100644 index 00000000..2d79e7bf --- /dev/null +++ b/themes/relaxed-theme-day-light.yaml @@ -0,0 +1,49 @@ +name: "Relaxed Theme - Day Light" +source: + marketplace_id: "nomad-in-code.relaxed-theme-semantic-focus" + version: "0.0.13" + installs: 140 + author: "nomad-in-code" + repo: "https://github.com/chaluvadis/relax-theme-semantic-focus" + url: "https://marketplace.visualstudio.com/items?itemName=nomad-in-code.relaxed-theme-semantic-focus" +colors: + bg: "#F3F4F6" + fg: "#2A2F37" + black: "#4A4A4A" + red: "#B03E34" + green: "#4B7D53" + yellow: "#8B6F2E" + blue: "#2F6D86" + magenta: "#7A4F7F" + cyan: "#3F5F8F" + white: "#2A2F37" + brightBlack: "#9B9FA5" + brightRed: "#C36E67" + brightGreen: "#789E7E" + brightYellow: "#A89362" + brightBlue: "#6391A4" + brightMagenta: "#9B7B9F" + brightCyan: "#6F87AB" + brightWhite: "#5F6369" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93.3 + black: 83.7 + red: 71.8 + green: 66.7 + yellow: 66.3 + blue: 72 + magenta: 75.3 + cyan: 75.4 + white: 93.3 + brightBlack: 45.2 + brightRed: 57.2 + brightGreen: 50.1 + brightYellow: 50 + brightBlue: 55.2 + brightMagenta: 57.6 + brightCyan: 57.6 + brightWhite: 73.6 diff --git a/themes/relaxed-theme-night-warm.yaml b/themes/relaxed-theme-night-warm.yaml new file mode 100644 index 00000000..e4ae8170 --- /dev/null +++ b/themes/relaxed-theme-night-warm.yaml @@ -0,0 +1,49 @@ +name: "Relaxed Theme - Night Warm" +source: + marketplace_id: "nomad-in-code.relaxed-theme-semantic-focus" + version: "0.0.13" + installs: 140 + author: "nomad-in-code" + repo: "https://github.com/chaluvadis/relax-theme-semantic-focus" + url: "https://marketplace.visualstudio.com/items?itemName=nomad-in-code.relaxed-theme-semantic-focus" +colors: + bg: "#2F3336" + fg: "#E3E0DC" + black: "#151515" + red: "#CE6F65" + green: "#95AD63" + yellow: "#D6B56F" + blue: "#8FA0A0" + magenta: "#A6789F" + cyan: "#C7D4E2" + white: "#E3E0DC" + brightBlack: "#908A82" + brightRed: "#CE6F65" + brightGreen: "#95AD63" + brightYellow: "#D6B56F" + brightBlue: "#8FA0A0" + brightMagenta: "#A6789F" + brightCyan: "#C7D4E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 82.4 + black: 0 + red: 34.3 + green: 47.4 + yellow: 59 + blue: 43.4 + magenta: 32.3 + cyan: 73.8 + white: 82.4 + brightBlack: 34.3 + brightRed: 34.3 + brightGreen: 47.4 + brightYellow: 59 + brightBlue: 43.4 + brightMagenta: 32.3 + brightCyan: 73.8 + brightWhite: 102.2 diff --git a/themes/relaxed-theme.yaml b/themes/relaxed-theme.yaml new file mode 100644 index 00000000..82041e66 --- /dev/null +++ b/themes/relaxed-theme.yaml @@ -0,0 +1,49 @@ +name: "Relaxed Theme" +source: + marketplace_id: "mischah.relaxed-theme" + version: "1.0.5" + installs: 31466 + author: "Michael Kühnel" + repo: "https://github.com/Relaxed-Theme/vscode-theme-releaxed" + url: "https://marketplace.visualstudio.com/items?itemName=mischah.relaxed-theme" +colors: + bg: "#2E333B" + fg: "#D9D9D9" + black: "#151515" + red: "#BC5653" + green: "#909D63" + yellow: "#EBC17A" + blue: "#6A8799" + magenta: "#B06698" + cyan: "#C9DFFF" + white: "#D9D9D9" + brightBlack: "#636363" + brightRed: "#BC5653" + brightGreen: "#A0AC77" + brightYellow: "#EBC17A" + brightBlue: "#7EAAC7" + brightMagenta: "#B48EAD" + brightCyan: "#ACBBD0" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 260 + contrast: + fg: 77.8 + black: 0 + red: 24.7 + green: 40.4 + yellow: 67.1 + blue: 30.5 + magenta: 28.5 + cyan: 80.4 + white: 77.8 + brightBlack: 16 + brightRed: 24.7 + brightGreen: 48.5 + brightYellow: 67.1 + brightBlue: 47.5 + brightMagenta: 41.7 + brightCyan: 59.2 + brightWhite: 96.8 diff --git a/themes/remedy-bright-tilted.yaml b/themes/remedy-bright-tilted.yaml new file mode 100644 index 00000000..f163eb2c --- /dev/null +++ b/themes/remedy-bright-tilted.yaml @@ -0,0 +1,49 @@ +name: "Remedy - Bright (Tilted)" +source: + marketplace_id: "VishwakarmaIndustries0abhishek.vishwakarma-remedy" + version: "5.28.0" + installs: 24 + author: "Vishwakarma Industries" + repo: "https://github.com/vishwakarmaindustries/vscode-remedy" + url: "https://marketplace.visualstudio.com/items?itemName=VishwakarmaIndustries0abhishek.vishwakarma-remedy" +colors: + bg: "#FFFFFF" + fg: "#282828" + black: "#2C2C2C" + red: "#C1392B" + green: "#4A8F29" + yellow: "#D4A338" + blue: "#3A7CA5" + magenta: "#9C3A7A" + cyan: "#2E9C7C" + white: "#A0A0A0" + brightBlack: "#8D8D8D" + brightRed: "#EC7063" + brightGreen: "#58D68D" + brightYellow: "#F4D03F" + brightBlue: "#5DADE2" + brightMagenta: "#AF7AC5" + brightCyan: "#48C9B0" + brightWhite: "#5A5A5A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.6 + black: 100.6 + red: 75.7 + green: 67 + yellow: 45.4 + blue: 71.4 + magenta: 80.9 + cyan: 61.2 + white: 51 + brightBlack: 60.6 + brightRed: 55.7 + brightGreen: 34.2 + brightYellow: 23.5 + brightBlue: 48.2 + brightMagenta: 59.9 + brightCyan: 39.5 + brightWhite: 83.9 diff --git a/themes/remedy-dark-tilted.yaml b/themes/remedy-dark-tilted.yaml new file mode 100644 index 00000000..df8e442d --- /dev/null +++ b/themes/remedy-dark-tilted.yaml @@ -0,0 +1,49 @@ +name: "Remedy - Dark (Tilted)" +source: + marketplace_id: "VishwakarmaIndustries0abhishek.vishwakarma-remedy" + version: "5.28.0" + installs: 24 + author: "Vishwakarma Industries" + repo: "https://github.com/vishwakarmaindustries/vscode-remedy" + url: "https://marketplace.visualstudio.com/items?itemName=VishwakarmaIndustries0abhishek.vishwakarma-remedy" +colors: + bg: "#212E3D" + fg: "#BBBBBB" + black: "#263240" + red: "#E74C3C" + green: "#27AE60" + yellow: "#F39C12" + blue: "#4A90E2" + magenta: "#9B59B6" + cyan: "#2ECC71" + white: "#D0D0D0" + brightBlack: "#4E6C91" + brightRed: "#EC7063" + brightGreen: "#58D68D" + brightYellow: "#F4D03F" + brightBlue: "#5DADE2" + brightMagenta: "#AF7AC5" + brightCyan: "#48C9B0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 252 + contrast: + fg: 61.3 + black: 0 + red: 32.6 + green: 42.9 + yellow: 54.9 + blue: 37.2 + magenta: 25.1 + cyan: 57.2 + white: 73.6 + brightBlack: 20.3 + brightRed: 41.6 + brightGreen: 63.9 + brightYellow: 75.2 + brightBlue: 49.4 + brightMagenta: 37.3 + brightCyan: 58.3 + brightWhite: 103.4 diff --git a/themes/replicant.yaml b/themes/replicant.yaml new file mode 100644 index 00000000..26585269 --- /dev/null +++ b/themes/replicant.yaml @@ -0,0 +1,49 @@ +name: "Replicant" +source: + marketplace_id: "kenziebottoms.replicant" + version: "1.3.0" + installs: 3117 + author: "Kenzie Bottoms" + repo: "https://github.com/kenziebottoms/vscode-theme-replicant" + url: "https://marketplace.visualstudio.com/items?itemName=kenziebottoms.replicant" +colors: + bg: "#00234A" + fg: "#E7F7FF" + black: "#A2B7C9" + red: "#E180B8" + green: "#72FFC6" + yellow: "#2DBDE0" + blue: "#0DB39D" + magenta: "#E180B8" + cyan: "#9CD3F1" + white: "#E7F7FF" + brightBlack: "#A2B7C9" + brightRed: "#E180B8" + brightGreen: "#72FFC6" + brightYellow: "#2DBDE0" + brightBlue: "#9CD3F1" + brightMagenta: "#72FFC6" + brightCyan: "#9CD3F1" + brightWhite: "#E7F7FF" +meta: + mode: "dark" + accent: "teal" + hue: 254 + contrast: + fg: 97.9 + black: 59 + red: 48 + green: 89.1 + yellow: 56 + blue: 48.1 + magenta: 48 + cyan: 72.5 + white: 97.9 + brightBlack: 59 + brightRed: 48 + brightGreen: 89.1 + brightYellow: 56 + brightBlue: 72.5 + brightMagenta: 89.1 + brightCyan: 72.5 + brightWhite: 97.9 diff --git a/themes/replt-it.yaml b/themes/replt-it.yaml new file mode 100644 index 00000000..578c806e --- /dev/null +++ b/themes/replt-it.yaml @@ -0,0 +1,49 @@ +name: "replt.it" +source: + marketplace_id: "manigandancodes.repl-it-theme" + version: "0.4.0" + installs: 7621 + author: "Manigandan Saravanan" + repo: "https://github.com/manigandancodes/repl.it-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=manigandancodes.repl-it-theme" +colors: + bg: "#111B31" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ADDB67" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 265 + contrast: + fg: 84.6 + black: 0 + red: 38.7 + green: 66.7 + yellow: 74.4 + blue: 55.4 + magenta: 53.2 + cyan: 59.1 + white: 106.3 + brightBlack: 15 + brightRed: 38.7 + brightGreen: 66.7 + brightYellow: 93.1 + brightBlue: 55.4 + brightMagenta: 53.2 + brightCyan: 73.4 + brightWhite: 106.3 diff --git a/themes/repoman-color-theme.yaml b/themes/repoman-color-theme.yaml new file mode 100644 index 00000000..13c3467f --- /dev/null +++ b/themes/repoman-color-theme.yaml @@ -0,0 +1,49 @@ +name: "repoman-color-theme" +source: + marketplace_id: "kevinleedrum.repoman" + version: "1.0.0" + installs: 238 + author: "Kevin Lee Drum" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kevinleedrum.repoman" +colors: + bg: "#141817" + fg: "#DEE5E3" + black: "#262A29" + red: "#FF2474" + green: "#A6E12D" + yellow: "#95F1C0" + blue: "#FC961F" + magenta: "#AE81FF" + cyan: "#64CEE1" + white: "#DEE5E3" + brightBlack: "#616A67" + brightRed: "#FF2474" + brightGreen: "#A6E12D" + brightYellow: "#95F1C0" + brightBlue: "#FC961F" + brightMagenta: "#AE81FF" + brightCyan: "#64CEE1" + brightWhite: "#DEE5E3" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 89 + black: 0 + red: 38.7 + green: 76.5 + yellow: 85.8 + blue: 58.2 + magenta: 46.5 + cyan: 67.4 + white: 89 + brightBlack: 22.9 + brightRed: 38.7 + brightGreen: 76.5 + brightYellow: 85.8 + brightBlue: 58.2 + brightMagenta: 46.5 + brightCyan: 67.4 + brightWhite: 89 diff --git a/themes/resknow-dark.yaml b/themes/resknow-dark.yaml new file mode 100644 index 00000000..c683bd59 --- /dev/null +++ b/themes/resknow-dark.yaml @@ -0,0 +1,49 @@ +name: "Resknow Dark" +source: + marketplace_id: "Resknow.resknow" + version: "0.0.4" + installs: 21 + author: "Resknow" + repo: "https://github.com/resknow/resknow-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Resknow.resknow" +colors: + bg: "#020617" + fg: "#E2E8F0" + black: "#020617" + red: "#DC3657" + green: "#23D18B" + yellow: "#FFC368" + blue: "#2B7ECA" + magenta: "#AD5DCA" + cyan: "#24C0CF" + white: "#E2E8F0" + brightBlack: "#64748B" + brightRed: "#F4587E" + brightGreen: "#5DE9C1" + brightYellow: "#FEDFCA" + brightBlue: "#EA2E85" + brightMagenta: "#CC75F4" + brightCyan: "#EF5E9C" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "red" + hue: 265 + contrast: + fg: 92.4 + black: 0 + red: 32 + green: 64.4 + yellow: 76.5 + blue: 32.6 + magenta: 34.3 + cyan: 59.1 + white: 92.4 + brightBlack: 28.5 + brightRed: 43.3 + brightGreen: 79.5 + brightYellow: 90.7 + brightBlue: 35.8 + brightMagenta: 47.8 + brightCyan: 44.3 + brightWhite: 104.5 diff --git a/themes/ressgame-advance-coding-theme.yaml b/themes/ressgame-advance-coding-theme.yaml new file mode 100644 index 00000000..4698a47d --- /dev/null +++ b/themes/ressgame-advance-coding-theme.yaml @@ -0,0 +1,49 @@ +name: "RessGame-Advance-Coding-Theme" +source: + marketplace_id: "RessGame.ressgame-advance-coding-gold-theme" + version: "1.9.0" + installs: 226 + author: "RessGame" + repo: "https://github.com/RessGame/Advance-Coding-Gold-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=RessGame.ressgame-advance-coding-gold-theme" +colors: + bg: "#1D343D" + fg: "#FFFFFF" + black: "#000915" + red: "#FF003C" + green: "#74FF52" + yellow: "#FFB700" + blue: "#0066B8" + magenta: "#912853" + cyan: "#12BBA2" + white: "#C9C9C9" + brightBlack: "#272727" + brightRed: "#FF3967" + brightGreen: "#B2FF9E" + brightYellow: "#E9C46A" + brightBlue: "#0274D1" + brightMagenta: "#C72D6D" + brightCyan: "#6FFFE9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 225 + contrast: + fg: 102.5 + black: 0 + red: 32.4 + green: 84 + yellow: 65.9 + blue: 17.9 + magenta: 10 + cyan: 49.5 + white: 68.5 + brightBlack: 0 + brightRed: 35.6 + brightGreen: 89.9 + brightYellow: 68.1 + brightBlue: 24.1 + brightMagenta: 21.9 + brightCyan: 87.9 + brightWhite: 102.5 diff --git a/themes/retina.yaml b/themes/retina.yaml new file mode 100644 index 00000000..1f04a534 --- /dev/null +++ b/themes/retina.yaml @@ -0,0 +1,49 @@ +name: "Retina" +source: + marketplace_id: "RafaCMur.retina" + version: "0.0.6" + installs: 1776 + author: "RafaCMur" + repo: "https://github.com/RafaCMur/retina" + url: "https://marketplace.visualstudio.com/items?itemName=RafaCMur.retina" +colors: + bg: "#1C1C1C" + fg: "#DDDDDD" + black: "#363537" + red: "#FC618D" + green: "#7BD88F" + yellow: "#E6C64F" + blue: "#FD9353" + magenta: "#948AE3" + cyan: "#5AD4E6" + white: "#DDDDDD" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#E6C64F" + brightBlue: "#FD9353" + brightMagenta: "#948AE3" + brightCyan: "#5AD4E6" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 84.4 + black: 0 + red: 45.7 + green: 69.7 + yellow: 71.9 + blue: 57.3 + magenta: 43.6 + cyan: 69.5 + white: 84.4 + brightBlack: 22.2 + brightRed: 45.7 + brightGreen: 69.7 + brightYellow: 71.9 + brightBlue: 57.3 + brightMagenta: 43.6 + brightCyan: 69.5 + brightWhite: 84.4 diff --git a/themes/retro-cathode-ray-minimal-theme.yaml b/themes/retro-cathode-ray-minimal-theme.yaml new file mode 100644 index 00000000..8e869323 --- /dev/null +++ b/themes/retro-cathode-ray-minimal-theme.yaml @@ -0,0 +1,49 @@ +name: "Retro Cathode-Ray Minimal Theme" +source: + marketplace_id: "xXBalestraroXx.wired-reality-theme" + version: "1.0.0" + installs: 240 + author: "xXBalestraroXx" + repo: "https://github.com/xxbalestraroxx/WiredRealityTheme" + url: "https://marketplace.visualstudio.com/items?itemName=xXBalestraroXx.wired-reality-theme" +colors: + bg: "#181D20" + fg: "#D0D0D0" + black: "#1D2021" + red: "#DB5252" + green: "#718C6A" + yellow: "#CC7722" + blue: "#5F8CA8" + magenta: "#A174A1" + cyan: "#6CA9A7" + white: "#D0D0D0" + brightBlack: "#3A4045" + brightRed: "#FF6B6B" + brightGreen: "#B2F090" + brightYellow: "#FFE066" + brightBlue: "#9BBBD7" + brightMagenta: "#FF99CC" + brightCyan: "#B3E0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 76.5 + black: 0 + red: 34.2 + green: 35.4 + yellow: 39.3 + blue: 36.3 + magenta: 34.6 + cyan: 48.5 + white: 76.5 + brightBlack: 0 + brightRed: 47.5 + brightGreen: 85.8 + brightYellow: 87.2 + brightBlue: 61.9 + brightMagenta: 63.2 + brightCyan: 81 + brightWhite: 106.3 diff --git a/themes/retro-green.yaml b/themes/retro-green.yaml new file mode 100644 index 00000000..d581e608 --- /dev/null +++ b/themes/retro-green.yaml @@ -0,0 +1,49 @@ +name: "retro green" +source: + marketplace_id: "LelinPadhan.retro-green-theme-vscode" + version: "1.1.6" + installs: 5473 + author: "Lelin Padhan" + repo: "https://github.com/Lelin07/retro-green-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LelinPadhan.retro-green-theme-vscode" +colors: + bg: "#121610" + fg: "#46D999" + black: "#46D999" + red: "#9BFEDA" + green: "#46D999" + yellow: "#9BFEDA" + blue: "#46D999" + magenta: "#46D999" + cyan: "#46D999" + white: "#46D999" + brightBlack: "#46D999" + brightRed: "#9BFEDA" + brightGreen: "#23D18B" + brightYellow: "#9BFEDA" + brightBlue: "#46D999" + brightMagenta: "#46D999" + brightCyan: "#46D999" + brightWhite: "#46D999" +meta: + mode: "dark" + accent: "teal" + hue: 135 + contrast: + fg: 68.7 + black: 68.7 + red: 94.1 + green: 68.7 + yellow: 94.1 + blue: 68.7 + magenta: 68.7 + cyan: 68.7 + white: 68.7 + brightBlack: 68.7 + brightRed: 94.1 + brightGreen: 63.7 + brightYellow: 94.1 + brightBlue: 68.7 + brightMagenta: 68.7 + brightCyan: 68.7 + brightWhite: 68.7 diff --git a/themes/retro-hacker-amber.yaml b/themes/retro-hacker-amber.yaml new file mode 100644 index 00000000..893667f5 --- /dev/null +++ b/themes/retro-hacker-amber.yaml @@ -0,0 +1,49 @@ +name: "Retro Hacker Amber" +source: + marketplace_id: "devxi.retro-hacker-theme" + version: "1.3.0" + installs: 4277 + author: "devxi" + repo: "https://github.com/elmersh/retro-hacker-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" +colors: + bg: "#1A1006" + fg: "#FFB000" + black: "#000000" + red: "#FF0000" + green: "#FF9D00" + yellow: "#E99F17" + blue: "#87CEEB" + magenta: "#DDA0DD" + cyan: "#00CED1" + white: "#FFE0D0" + brightBlack: "#3A2B1A" + brightRed: "#FF4444" + brightGreen: "#FFB000" + brightYellow: "#FFFF00" + brightBlue: "#ADD8E6" + brightMagenta: "#EE82EE" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 67 + contrast: + fg: 68 + black: 0 + red: 36.9 + green: 61.4 + yellow: 58 + blue: 70.5 + magenta: 61.4 + cyan: 65 + white: 91.1 + brightBlack: 0 + brightRed: 41 + brightGreen: 68 + brightYellow: 102.1 + brightBlue: 78.1 + brightMagenta: 56.2 + brightCyan: 91.6 + brightWhite: 107.3 diff --git a/themes/retro-hacker-blue.yaml b/themes/retro-hacker-blue.yaml new file mode 100644 index 00000000..1a86c3c1 --- /dev/null +++ b/themes/retro-hacker-blue.yaml @@ -0,0 +1,49 @@ +name: "Retro Hacker Blue" +source: + marketplace_id: "devxi.retro-hacker-theme" + version: "1.3.0" + installs: 4277 + author: "devxi" + repo: "https://github.com/elmersh/retro-hacker-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" +colors: + bg: "#010111" + fg: "#5EAFFF" + black: "#000000" + red: "#FF5A5A" + green: "#4682B4" + yellow: "#FFD700" + blue: "#3B85D8" + magenta: "#8A5EC0" + cyan: "#00CED1" + white: "#E0EEFF" + brightBlack: "#1A1A1A" + brightRed: "#FF8080" + brightGreen: "#6CB8F0" + brightYellow: "#FFFF00" + brightBlue: "#5EAFFF" + brightMagenta: "#B07CFF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 272 + contrast: + fg: 56.5 + black: 0 + red: 45.3 + green: 33.6 + yellow: 84.2 + blue: 36.5 + magenta: 29.1 + cyan: 65.5 + white: 95.7 + brightBlack: 0 + brightRed: 54.7 + brightGreen: 60.1 + brightYellow: 102.7 + brightBlue: 56.5 + brightMagenta: 46.3 + brightCyan: 92.1 + brightWhite: 107.8 diff --git a/themes/retro-hacker-green-subtle.yaml b/themes/retro-hacker-green-subtle.yaml new file mode 100644 index 00000000..b3912396 --- /dev/null +++ b/themes/retro-hacker-green-subtle.yaml @@ -0,0 +1,49 @@ +name: "Retro Hacker Green - Subtle" +source: + marketplace_id: "devxi.retro-hacker-theme" + version: "1.3.0" + installs: 4277 + author: "devxi" + repo: "https://github.com/elmersh/retro-hacker-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" +colors: + bg: "#000000" + fg: "#00FF41" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFD700" + blue: "#7FFF00" + magenta: "#AAFF00" + cyan: "#7FFF00" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF3333" + brightGreen: "#00FF41" + brightYellow: "#FFFF00" + brightBlue: "#AAFF00" + brightMagenta: "#FFD700" + brightCyan: "#AAFF00" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 86.7 + black: 0 + red: 37.5 + green: 86.5 + yellow: 84.3 + blue: 89.7 + magenta: 92.8 + cyan: 89.7 + white: 75.7 + brightBlack: 0 + brightRed: 39.6 + brightGreen: 86.7 + brightYellow: 102.7 + brightBlue: 92.8 + brightMagenta: 84.3 + brightCyan: 92.8 + brightWhite: 107.9 diff --git a/themes/retro-hacker-green.yaml b/themes/retro-hacker-green.yaml new file mode 100644 index 00000000..6507e683 --- /dev/null +++ b/themes/retro-hacker-green.yaml @@ -0,0 +1,49 @@ +name: "Retro Hacker Green" +source: + marketplace_id: "devxi.retro-hacker-theme" + version: "1.3.0" + installs: 4277 + author: "devxi" + repo: "https://github.com/elmersh/retro-hacker-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" +colors: + bg: "#000100" + fg: "#FFD700" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFD700" + blue: "#66FF66" + magenta: "#AAFF00" + cyan: "#5AFF31" + white: "#E0FFE0" + brightBlack: "#1A1A1A" + brightRed: "#FF4444" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#AAFF00" + brightMagenta: "#FFD700" + brightCyan: "#AEEE00" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 142 + contrast: + fg: 84.3 + black: 0 + red: 37.5 + green: 86.5 + yellow: 84.3 + blue: 89 + magenta: 92.8 + cyan: 88 + white: 102.4 + brightBlack: 0 + brightRed: 41.6 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 92.8 + brightMagenta: 84.3 + brightCyan: 84.5 + brightWhite: 107.9 diff --git a/themes/retro-hacker-magenta.yaml b/themes/retro-hacker-magenta.yaml new file mode 100644 index 00000000..0452f3d3 --- /dev/null +++ b/themes/retro-hacker-magenta.yaml @@ -0,0 +1,49 @@ +name: "Retro Hacker Magenta" +source: + marketplace_id: "devxi.retro-hacker-theme" + version: "1.3.0" + installs: 4277 + author: "devxi" + repo: "https://github.com/elmersh/retro-hacker-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" +colors: + bg: "#000000" + fg: "#FF00FF" + black: "#000000" + red: "#FF0000" + green: "#FF00FF" + yellow: "#FF69B4" + blue: "#FF1493" + magenta: "#FF69B4" + cyan: "#FF1493" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF3333" + brightGreen: "#FF00FF" + brightYellow: "#FFAADD" + brightBlue: "#FF69B4" + brightMagenta: "#FFAADD" + brightCyan: "#FF69B4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 46.2 + black: 0 + red: 37.5 + green: 46.2 + yellow: 51.1 + blue: 40.1 + magenta: 51.1 + cyan: 40.1 + white: 75.7 + brightBlack: 0 + brightRed: 39.6 + brightGreen: 46.2 + brightYellow: 71.2 + brightBlue: 51.1 + brightMagenta: 71.2 + brightCyan: 51.1 + brightWhite: 107.9 diff --git a/themes/retro-keyboard-dark.yaml b/themes/retro-keyboard-dark.yaml new file mode 100644 index 00000000..2e49f628 --- /dev/null +++ b/themes/retro-keyboard-dark.yaml @@ -0,0 +1,49 @@ +name: "Retro Keyboard Dark" +source: + marketplace_id: "nicolasmengual.retro-keyboard-theme" + version: "1.1.2" + installs: 63 + author: "Nicolás Mengual" + repo: "https://github.com/nmengual/retro-keyboard-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nicolasmengual.retro-keyboard-theme" +colors: + bg: "#2A2520" + fg: "#EDE4D6" + black: "#2A2520" + red: "#E06060" + green: "#8BBF9C" + yellow: "#E8C060" + blue: "#8AAEC4" + magenta: "#B89ED6" + cyan: "#88CCC0" + white: "#EDE4D6" + brightBlack: "#8A7E6E" + brightRed: "#F07878" + brightGreen: "#A8D4B4" + brightYellow: "#F0D478" + brightBlue: "#A8C8DC" + brightMagenta: "#D0B8E8" + brightCyan: "#A0DCD4" + brightWhite: "#F5F0E8" +meta: + mode: "dark" + accent: "orange" + hue: 67 + contrast: + fg: 88 + black: 0 + red: 36.8 + green: 58.3 + yellow: 68.5 + blue: 52.7 + magenta: 52.5 + cyan: 65.2 + white: 88 + brightBlack: 31.5 + brightRed: 46.3 + brightGreen: 71.1 + brightYellow: 78.5 + brightBlue: 67.5 + brightMagenta: 66.4 + brightCyan: 75.4 + brightWhite: 95.3 diff --git a/themes/retro-keyboard-light.yaml b/themes/retro-keyboard-light.yaml new file mode 100644 index 00000000..490d46a6 --- /dev/null +++ b/themes/retro-keyboard-light.yaml @@ -0,0 +1,49 @@ +name: "Retro Keyboard Light" +source: + marketplace_id: "nicolasmengual.retro-keyboard-theme" + version: "1.1.2" + installs: 63 + author: "Nicolás Mengual" + repo: "https://github.com/nmengual/retro-keyboard-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nicolasmengual.retro-keyboard-theme" +colors: + bg: "#F5F0E8" + fg: "#3D3529" + black: "#3D3529" + red: "#C04040" + green: "#3E8A5E" + yellow: "#8A6A10" + blue: "#3E7A94" + magenta: "#7E5EAA" + cyan: "#3A8A80" + white: "#EDE4D6" + brightBlack: "#7A6E5E" + brightRed: "#D94B4B" + brightGreen: "#5E9E74" + brightYellow: "#A87A18" + brightBlue: "#5E8EA4" + brightMagenta: "#9B7BBE" + brightCyan: "#5A9A90" + brightWhite: "#F5F0E8" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 89 + black: 89 + red: 66.1 + green: 60.1 + yellow: 66.2 + blue: 64.2 + magenta: 66.8 + cyan: 59.3 + white: 0 + brightBlack: 65.8 + brightRed: 59 + brightGreen: 50.1 + brightYellow: 57.1 + brightBlue: 54.6 + brightMagenta: 54.1 + brightCyan: 51.1 + brightWhite: 0 diff --git a/themes/retro-pastel-color-theme.yaml b/themes/retro-pastel-color-theme.yaml new file mode 100644 index 00000000..99d4ece7 --- /dev/null +++ b/themes/retro-pastel-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Retro Pastel Color Theme" +source: + marketplace_id: "klyap.retro-pastel-color-theme" + version: "0.0.3" + installs: 7663 + author: "klyap" + repo: "https://github.com/klyap/vscode-retro-pastel-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=klyap.retro-pastel-color-theme" +colors: + bg: "#416D60" + fg: "#FFB5B5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 173 + contrast: + fg: 49.9 + black: 24.8 + red: 0 + green: 30.6 + yellow: 63.2 + blue: 0 + magenta: 7.4 + cyan: 25.2 + white: 67.6 + brightBlack: 0 + brightRed: 16.2 + brightGreen: 41.1 + brightYellow: 73.2 + brightBlue: 17.6 + brightMagenta: 23 + brightCyan: 33 + brightWhite: 67.6 diff --git a/themes/retro-theme.yaml b/themes/retro-theme.yaml new file mode 100644 index 00000000..55eae5ec --- /dev/null +++ b/themes/retro-theme.yaml @@ -0,0 +1,49 @@ +name: "retro theme" +source: + marketplace_id: "mssxmt.vintage-story-theme" + version: "0.1.2" + installs: 10 + author: "mssxmt" + repo: "https://github.com/mssxmt/vintage-story-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mssxmt.vintage-story-theme" +colors: + bg: "#0C5071" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#00CDFF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#1383FF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 236 + contrast: + fg: 66.7 + black: 14.4 + red: 13.9 + green: 40.2 + yellow: 72.8 + blue: 14.6 + magenta: 17 + cyan: 53.9 + white: 77.2 + brightBlack: 9.2 + brightRed: 25.8 + brightGreen: 50.7 + brightYellow: 82.8 + brightBlue: 24.3 + brightMagenta: 32.6 + brightCyan: 42.6 + brightWhite: 77.2 diff --git a/themes/retro-vibes.yaml b/themes/retro-vibes.yaml new file mode 100644 index 00000000..db691530 --- /dev/null +++ b/themes/retro-vibes.yaml @@ -0,0 +1,49 @@ +name: "Retro Vibes" +source: + marketplace_id: "Babadzhanov.retro-vibes" + version: "1.0.3" + installs: 10462 + author: "Simeon Babadzhanov" + repo: "https://github.com/Babadzhanov/retro-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=Babadzhanov.retro-vibes" +colors: + bg: "#1A202D" + fg: "#C4CCE4" + black: "#000000" + red: "#CD3131" + green: "#00AA00" + yellow: "#FFBB00" + blue: "#0048FF" + magenta: "#C322AD" + cyan: "#00A2CA" + white: "#AAAAAA" + brightBlack: "#555555" + brightRed: "#FF877E" + brightGreen: "#58FF77" + brightYellow: "#FFFF2B" + brightBlue: "#6E8BFF" + brightMagenta: "#FFC4D6" + brightCyan: "#88FCDD" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: 265 + contrast: + fg: 73.7 + black: 0 + red: 25.6 + green: 42.4 + yellow: 70.6 + blue: 20.2 + magenta: 26.3 + cyan: 43.8 + white: 54.1 + brightBlack: 14 + brightRed: 54.5 + brightGreen: 86.6 + brightYellow: 100.6 + brightBlue: 42 + brightMagenta: 78.2 + brightCyan: 90.5 + brightWhite: 88.9 diff --git a/themes/retro.yaml b/themes/retro.yaml new file mode 100644 index 00000000..2ccb524a --- /dev/null +++ b/themes/retro.yaml @@ -0,0 +1,49 @@ +name: "Retro" +source: + marketplace_id: "RylanReese.retro-theme" + version: "0.4.0" + installs: 1570 + author: "Rylan Reese" + repo: "https://github.com/RAC11/retro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RylanReese.retro-theme" +colors: + bg: "#1C1D46" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFFF1B" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D7D7D7" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 279 + contrast: + fg: 105.4 + black: 0 + red: 25.2 + green: 51.5 + yellow: 100.2 + blue: 25.9 + magenta: 28.3 + cyan: 46.1 + white: 79.8 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/retrocoders.yaml b/themes/retrocoders.yaml new file mode 100644 index 00000000..180a3087 --- /dev/null +++ b/themes/retrocoders.yaml @@ -0,0 +1,49 @@ +name: "Retrocoders" +source: + marketplace_id: "adanyc.retrocoders" + version: "1.0.11" + installs: 352 + author: "adanyc" + repo: "https://github.com/adanyc/vscode-retrocoders-theme" + url: "https://marketplace.visualstudio.com/items?itemName=adanyc.retrocoders" +colors: + bg: "#1D2833" + fg: "#CFD1D1" + black: "#1D2833" + red: "#FF695D" + green: "#B9E678" + yellow: "#FFD580" + blue: "#5FCBC3" + magenta: "#D689E3" + cyan: "#85DDA2" + white: "#F7F5E9" + brightBlack: "#596D84" + brightRed: "#FF695D" + brightGreen: "#B9E678" + brightYellow: "#FFD580" + brightBlue: "#5FCBC3" + brightMagenta: "#D689E3" + brightCyan: "#85DDA2" + brightWhite: "#F7F5E9" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 75.1 + black: 0 + red: 45.1 + green: 79.4 + yellow: 81.2 + blue: 62.1 + magenta: 50.6 + cyan: 71.6 + white: 97.8 + brightBlack: 22 + brightRed: 45.1 + brightGreen: 79.4 + brightYellow: 81.2 + brightBlue: 62.1 + brightMagenta: 50.6 + brightCyan: 71.6 + brightWhite: 97.8 diff --git a/themes/retronica-amber-terminal.yaml b/themes/retronica-amber-terminal.yaml new file mode 100644 index 00000000..382cfee4 --- /dev/null +++ b/themes/retronica-amber-terminal.yaml @@ -0,0 +1,49 @@ +name: "Retronica Amber Terminal" +source: + marketplace_id: "adham.retronica" + version: "1.0.0" + installs: 181 + author: "Adham" + repo: "https://github.com/adham-dev/retronica" + url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" +colors: + bg: "#0F0E0A" + fg: "#D8C8A8" + black: "#1A1810" + red: "#D88060" + green: "#A8C080" + yellow: "#D8B060" + blue: "#A8A080" + magenta: "#C8A080" + cyan: "#B8C090" + white: "#D8C8A8" + brightBlack: "#5A5040" + brightRed: "#E8A080" + brightGreen: "#C0D8A0" + brightYellow: "#E8C880" + brightBlue: "#C0B8A0" + brightMagenta: "#E0C0A0" + brightCyan: "#D0D8B0" + brightWhite: "#F0E8D0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.9 + black: 0 + red: 46.1 + green: 63.4 + yellow: 62.4 + blue: 50.4 + magenta: 54.7 + cyan: 65.6 + white: 73.9 + brightBlack: 14.4 + brightRed: 59.8 + brightGreen: 77.6 + brightYellow: 75.1 + brightBlue: 63.8 + brightMagenta: 71.5 + brightCyan: 80 + brightWhite: 92.7 diff --git a/themes/retronica-neon-nights.yaml b/themes/retronica-neon-nights.yaml new file mode 100644 index 00000000..2bb2ca87 --- /dev/null +++ b/themes/retronica-neon-nights.yaml @@ -0,0 +1,49 @@ +name: "Retronica Neon Nights" +source: + marketplace_id: "adham.retronica" + version: "1.0.0" + installs: 181 + author: "Adham" + repo: "https://github.com/adham-dev/retronica" + url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" +colors: + bg: "#1A1525" + fg: "#D4C5E8" + black: "#2A2440" + red: "#D87A7A" + green: "#8AC0A0" + yellow: "#D8B87A" + blue: "#7A9AD8" + magenta: "#C97AA0" + cyan: "#7AC0C8" + white: "#D4C5E8" + brightBlack: "#5A4A7A" + brightRed: "#E89A9A" + brightGreen: "#A0D8B8" + brightYellow: "#E8D09A" + brightBlue: "#9AB8E8" + brightMagenta: "#E09AC0" + brightCyan: "#9AD8E0" + brightWhite: "#F0E8F8" +meta: + mode: "dark" + accent: "orange" + hue: 298 + contrast: + fg: 74 + black: 0 + red: 44.2 + green: 60.8 + yellow: 65.3 + blue: 46.6 + magenta: 42.9 + cyan: 61.2 + white: 74 + brightBlack: 14 + brightRed: 57.8 + brightGreen: 74.3 + brightYellow: 78.4 + brightBlue: 62.1 + brightMagenta: 57.9 + brightCyan: 75.5 + brightWhite: 93.7 diff --git a/themes/retronica-pastel-arcade.yaml b/themes/retronica-pastel-arcade.yaml new file mode 100644 index 00000000..ad8f5150 --- /dev/null +++ b/themes/retronica-pastel-arcade.yaml @@ -0,0 +1,49 @@ +name: "Retronica Pastel Arcade" +source: + marketplace_id: "adham.retronica" + version: "1.0.0" + installs: 181 + author: "Adham" + repo: "https://github.com/adham-dev/retronica" + url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" +colors: + bg: "#F8F5F0" + fg: "#4A4555" + black: "#4A4555" + red: "#C06060" + green: "#609070" + yellow: "#B08040" + blue: "#5080A0" + magenta: "#A06080" + cyan: "#508090" + white: "#F0EBE5" + brightBlack: "#7A7080" + brightRed: "#D08080" + brightGreen: "#70A080" + brightYellow: "#C09050" + brightBlue: "#6090B0" + brightMagenta: "#B07090" + brightCyan: "#6090A0" + brightWhite: "#F8F5F0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 85.5 + black: 85.5 + red: 62.2 + green: 58.4 + yellow: 56.6 + blue: 63.5 + magenta: 66.6 + cyan: 64.2 + white: 0 + brightBlack: 66.9 + brightRed: 50.2 + brightGreen: 50.7 + brightYellow: 48.8 + brightBlue: 56 + brightMagenta: 59.3 + brightCyan: 56.7 + brightWhite: 0 diff --git a/themes/retronica-phosphor-green.yaml b/themes/retronica-phosphor-green.yaml new file mode 100644 index 00000000..933d5ef7 --- /dev/null +++ b/themes/retronica-phosphor-green.yaml @@ -0,0 +1,49 @@ +name: "Retronica Phosphor Green" +source: + marketplace_id: "adham.retronica" + version: "1.0.0" + installs: 181 + author: "Adham" + repo: "https://github.com/adham-dev/retronica" + url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" +colors: + bg: "#0A0F0A" + fg: "#A8D8A8" + black: "#101810" + red: "#D08080" + green: "#80D080" + yellow: "#C0C080" + blue: "#80A0A0" + magenta: "#A090A0" + cyan: "#80C0B0" + white: "#A8D8A8" + brightBlack: "#406040" + brightRed: "#E0A0A0" + brightGreen: "#A0F0A0" + brightYellow: "#D8D8A0" + brightBlue: "#A0C0C0" + brightMagenta: "#C0B0C0" + brightCyan: "#A0E0D0" + brightWhite: "#C8F8C8" +meta: + mode: "dark" + accent: "green" + hue: 145 + contrast: + fg: 75.3 + black: 0 + red: 45.5 + green: 67.1 + yellow: 66.2 + blue: 47.4 + magenta: 44.7 + cyan: 61.3 + white: 75.3 + brightBlack: 17.2 + brightRed: 59.5 + brightGreen: 85.9 + brightYellow: 80.6 + brightBlue: 64.8 + brightMagenta: 61.9 + brightCyan: 79.8 + brightWhite: 95 diff --git a/themes/retronica-vintage-computing.yaml b/themes/retronica-vintage-computing.yaml new file mode 100644 index 00000000..52914af0 --- /dev/null +++ b/themes/retronica-vintage-computing.yaml @@ -0,0 +1,49 @@ +name: "Retronica Vintage Computing" +source: + marketplace_id: "adham.retronica" + version: "1.0.0" + installs: 181 + author: "Adham" + repo: "https://github.com/adham-dev/retronica" + url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" +colors: + bg: "#F5F0E8" + fg: "#3A4048" + black: "#3A4048" + red: "#B06060" + green: "#508060" + yellow: "#A07840" + blue: "#507088" + magenta: "#886878" + cyan: "#507878" + white: "#EDE8E0" + brightBlack: "#686860" + brightRed: "#C07070" + brightGreen: "#609070" + brightYellow: "#B08850" + brightBlue: "#608098" + brightMagenta: "#987888" + brightCyan: "#608888" + brightWhite: "#F5F0E8" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 85.7 + black: 85.7 + red: 62.2 + green: 63 + yellow: 58.5 + blue: 67.3 + magenta: 65.2 + cyan: 65.2 + white: 0 + brightBlack: 69.5 + brightRed: 55 + brightGreen: 55.6 + brightYellow: 51 + brightBlue: 60.1 + brightMagenta: 57.8 + brightCyan: 57.8 + brightWhite: 0 diff --git a/themes/retropunk.yaml b/themes/retropunk.yaml new file mode 100644 index 00000000..6143adb6 --- /dev/null +++ b/themes/retropunk.yaml @@ -0,0 +1,49 @@ +name: "RetroPuNK" +source: + marketplace_id: "TrXVIISGiL.retropunk-trx" + version: "1.5.2" + installs: 1548 + author: "TrXVIISGiL" + repo: "https://github.com/UponCr0ws/ReTroPuNK" + url: "https://marketplace.visualstudio.com/items?itemName=TrXVIISGiL.retropunk-trx" +colors: + bg: "#0D012C" + fg: "#FF2F87" + black: "#473B56" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#ADC8D5" + brightBlack: "#887599" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#BAD8F2" +meta: + mode: "dark" + accent: "pink" + hue: 288 + contrast: + fg: 40.6 + black: 8.1 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.1 + white: 70.4 + brightBlack: 32.6 + brightRed: 39.2 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 80.2 diff --git a/themes/retroscope.yaml b/themes/retroscope.yaml new file mode 100644 index 00000000..2ae9e9c1 --- /dev/null +++ b/themes/retroscope.yaml @@ -0,0 +1,49 @@ +name: "Retroscope" +source: + marketplace_id: "dvsu.retroscope" + version: "0.2.4" + installs: 28 + author: "David Su" + repo: "https://github.com/dvsu/retroscope" + url: "https://marketplace.visualstudio.com/items?itemName=dvsu.retroscope" +colors: + bg: "#1D1B19" + fg: "#C9B19F" + black: "#1D1B19" + red: "#F75123" + green: "#ADB26B" + yellow: "#D29834" + blue: "#789BB9" + magenta: "#AD74EE" + cyan: "#89AEA3" + white: "#C9B19F" + brightBlack: "#6B5B4F" + brightRed: "#FF7979" + brightGreen: "#CFD779" + brightYellow: "#F5AF36" + brightBlue: "#8C9CAA" + brightMagenta: "#C79DD7" + brightCyan: "#A5B6B1" + brightWhite: "#FFCB93" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 61 + black: 0 + red: 39.8 + green: 56.4 + yellow: 51 + blue: 44.7 + magenta: 41 + cyan: 52.7 + white: 61 + brightBlack: 18.2 + brightRed: 51.2 + brightGreen: 76.8 + brightYellow: 65.1 + brightBlue: 46.2 + brightMagenta: 55.8 + brightCyan: 59.3 + brightWhite: 79.3 diff --git a/themes/retrox.yaml b/themes/retrox.yaml new file mode 100644 index 00000000..2815f23a --- /dev/null +++ b/themes/retrox.yaml @@ -0,0 +1,49 @@ +name: "Retrox" +source: + marketplace_id: "dalloriam.retrox" + version: "0.0.1" + installs: 514 + author: "William Dussault" + repo: "https://github.com/dalloriam/retrox" + url: "https://marketplace.visualstudio.com/items?itemName=dalloriam.retrox" +colors: + bg: "#0E1418" + fg: "#D2D1D4" + black: "#0E1418" + red: "#E86987" + green: "#5BC68B" + yellow: "#F6CF66" + blue: "#4A69F5" + magenta: "#F6CF66" + cyan: "#5BC68B" + white: "#ECEDED" + brightBlack: "#0E1418" + brightRed: "#E86987" + brightGreen: "#5BC68B" + brightYellow: "#F6CF66" + brightBlue: "#4A69F5" + brightMagenta: "#F6CF66" + brightCyan: "#5BC68B" + brightWhite: "#ECEDED" +meta: + mode: "dark" + accent: "purple" + hue: 238 + contrast: + fg: 78.3 + black: 0 + red: 43.9 + green: 60.2 + yellow: 79.4 + blue: 30 + magenta: 79.4 + cyan: 60.2 + white: 95.3 + brightBlack: 0 + brightRed: 43.9 + brightGreen: 60.2 + brightYellow: 79.4 + brightBlue: 30 + brightMagenta: 79.4 + brightCyan: 60.2 + brightWhite: 95.3 diff --git a/themes/reui-ii-dark-italic.yaml b/themes/reui-ii-dark-italic.yaml new file mode 100644 index 00000000..2905e7f3 --- /dev/null +++ b/themes/reui-ii-dark-italic.yaml @@ -0,0 +1,49 @@ +name: "ReUI II Dark Italic" +source: + marketplace_id: "barrsan.reui" + version: "1.2.5" + installs: 120797 + author: "Alex Baretsky" + repo: "https://github.com/barrsan/reui-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=barrsan.reui" +colors: + bg: "#1E232E" + fg: "#FFFFFF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 266 + contrast: + fg: 105.3 + black: 0 + red: 41.8 + green: 83.3 + yellow: 97 + blue: 52.1 + magenta: 53 + cyan: 82.4 + white: 100.4 + brightBlack: 26.5 + brightRed: 47.3 + brightGreen: 87.5 + brightYellow: 102 + brightBlue: 64.5 + brightMagenta: 61 + brightCyan: 95.2 + brightWhite: 105.3 diff --git a/themes/reui-ii-italic.yaml b/themes/reui-ii-italic.yaml new file mode 100644 index 00000000..39dc74d3 --- /dev/null +++ b/themes/reui-ii-italic.yaml @@ -0,0 +1,49 @@ +name: "ReUI II Italic" +source: + marketplace_id: "barrsan.reui" + version: "1.2.5" + installs: 120797 + author: "Alex Baretsky" + repo: "https://github.com/barrsan/reui-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=barrsan.reui" +colors: + bg: "#282C34" + fg: "#FFFFFF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 103.7 + black: 0 + red: 40.2 + green: 81.7 + yellow: 95.3 + blue: 50.4 + magenta: 51.4 + cyan: 80.8 + white: 98.8 + brightBlack: 24.8 + brightRed: 45.6 + brightGreen: 85.8 + brightYellow: 100.3 + brightBlue: 62.9 + brightMagenta: 59.4 + brightCyan: 93.6 + brightWhite: 103.7 diff --git a/themes/reui-ii-mirage-italic.yaml b/themes/reui-ii-mirage-italic.yaml new file mode 100644 index 00000000..d78faf98 --- /dev/null +++ b/themes/reui-ii-mirage-italic.yaml @@ -0,0 +1,49 @@ +name: "ReUI II Mirage Italic" +source: + marketplace_id: "barrsan.reui" + version: "1.2.5" + installs: 120797 + author: "Alex Baretsky" + repo: "https://github.com/barrsan/reui-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=barrsan.reui" +colors: + bg: "#18273A" + fg: "#FFFFFF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 255 + contrast: + fg: 104.7 + black: 0 + red: 41.2 + green: 82.7 + yellow: 96.4 + blue: 51.5 + magenta: 52.4 + cyan: 81.8 + white: 99.8 + brightBlack: 25.9 + brightRed: 46.7 + brightGreen: 86.9 + brightYellow: 101.4 + brightBlue: 63.9 + brightMagenta: 60.4 + brightCyan: 94.6 + brightWhite: 104.7 diff --git a/themes/revelation-contrast.yaml b/themes/revelation-contrast.yaml new file mode 100644 index 00000000..1b0abdd2 --- /dev/null +++ b/themes/revelation-contrast.yaml @@ -0,0 +1,49 @@ +name: "revelation-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0C0B0B" + fg: "#DEDEDE" + black: "#191717" + red: "#BA0E2E" + green: "#4E5D84" + yellow: "#617FA0" + blue: "#95C2E8" + magenta: "#C2DCF2" + cyan: "#FFBB29" + white: "#EBEBEB" + brightBlack: "#413C3C" + brightRed: "#F03E5F" + brightGreen: "#8391B5" + brightYellow: "#A1B3C6" + brightBlue: "#E9F2FA" + brightMagenta: "#FFFFFF" + brightCyan: "#FFDB8F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.5 + black: 0 + red: 21.3 + green: 19.5 + yellow: 32.9 + blue: 66.7 + magenta: 83.1 + cyan: 72.7 + white: 94.6 + brightBlack: 7.3 + brightRed: 37.6 + brightGreen: 43.1 + brightYellow: 59.9 + brightBlue: 98.3 + brightMagenta: 107.7 + brightCyan: 87.2 + brightWhite: 107.7 diff --git a/themes/revelation-light.yaml b/themes/revelation-light.yaml new file mode 100644 index 00000000..542e625e --- /dev/null +++ b/themes/revelation-light.yaml @@ -0,0 +1,49 @@ +name: "revelation-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#555555" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#4E5D84" + yellow: "#617FA0" + blue: "#95C2E8" + magenta: "#91ABC1" + cyan: "#FFBB29" + white: "#626262" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#8391B5" + brightYellow: "#A1B3C6" + brightBlue: "#E9F2FA" + brightMagenta: "#D2DDE6" + brightCyan: "#FFDB8F" + brightWhite: "#888888" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 85.9 + black: 0 + red: 80.3 + green: 82.3 + yellow: 68.6 + blue: 35.6 + magenta: 47 + cyan: 29.9 + white: 80.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 58.5 + brightYellow: 42.2 + brightBlue: 0 + brightMagenta: 18.5 + brightCyan: 16.2 + brightWhite: 63.1 diff --git a/themes/revelation.yaml b/themes/revelation.yaml new file mode 100644 index 00000000..f0579a94 --- /dev/null +++ b/themes/revelation.yaml @@ -0,0 +1,49 @@ +name: "revelation" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2E2C2B" + fg: "#DEDEDE" + black: "#3B3937" + red: "#BA0E2E" + green: "#4E5D84" + yellow: "#617FA0" + blue: "#95C2E8" + magenta: "#C2DCF2" + cyan: "#FFBB29" + white: "#EBEBEB" + brightBlack: "#635E5C" + brightRed: "#F03E5F" + brightGreen: "#8391B5" + brightYellow: "#A1B3C6" + brightBlue: "#E9F2FA" + brightMagenta: "#FFFFFF" + brightCyan: "#FFDB8F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 82.3 + black: 0 + red: 17.2 + green: 15.3 + yellow: 28.8 + blue: 62.6 + magenta: 79 + cyan: 68.6 + white: 90.5 + brightBlack: 15.8 + brightRed: 33.5 + brightGreen: 38.9 + brightYellow: 55.7 + brightBlue: 94.2 + brightMagenta: 103.6 + brightCyan: 83.1 + brightWhite: 103.6 diff --git a/themes/revisual-assist-color-theme.yaml b/themes/revisual-assist-color-theme.yaml new file mode 100644 index 00000000..e0da46a7 --- /dev/null +++ b/themes/revisual-assist-color-theme.yaml @@ -0,0 +1,49 @@ +name: "reVisual_Assist-color-theme" +source: + marketplace_id: "Cydo.re-theme" + version: "3.0.0" + installs: 695 + author: "Cydo" + repo: "https://github.com/CydoEntis/reThemes" + url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#1E1E1E" + red: "#CC241D" + green: "#87AD72" + yellow: "#CEA800" + blue: "#569CD6" + magenta: "#D8A0DF" + cyan: "#4CE2E2" + white: "#EEEEEE" + brightBlack: "#131313" + brightRed: "#FB4934" + brightGreen: "#B5CEA8" + brightYellow: "#FFD700" + brightBlue: "#7ABCF3" + brightMagenta: "#F0C2F7" + brightCyan: "#9FFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 24.4 + green: 50.3 + yellow: 55.6 + blue: 44.2 + magenta: 59.5 + cyan: 75.2 + white: 94.9 + brightBlack: 0 + brightRed: 39.3 + brightGreen: 70.6 + brightYellow: 82.4 + brightBlue: 61 + brightMagenta: 77 + brightCyan: 95.5 + brightWhite: 106 diff --git a/themes/revisualassist.yaml b/themes/revisualassist.yaml new file mode 100644 index 00000000..e9a57253 --- /dev/null +++ b/themes/revisualassist.yaml @@ -0,0 +1,49 @@ +name: "ReVisualAssist" +source: + marketplace_id: "PainE.revisualassist" + version: "0.0.5" + installs: 501 + author: "PainE" + repo: "https://github.com/lua9520/ReVisualAssist-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PainE.revisualassist" +colors: + bg: "#272727" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 77.2 + black: 0 + red: 24.5 + green: 50.7 + yellow: 83.4 + blue: 25.2 + magenta: 27.5 + cyan: 45.3 + white: 87.8 + brightBlack: 19.8 + brightRed: 36.3 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.7 + brightMagenta: 43.1 + brightCyan: 53.1 + brightWhite: 87.8 diff --git a/themes/rextax-bright-fork.yaml b/themes/rextax-bright-fork.yaml new file mode 100644 index 00000000..51fcd1fd --- /dev/null +++ b/themes/rextax-bright-fork.yaml @@ -0,0 +1,49 @@ +name: "rextax bright! - Fork" +source: + marketplace_id: "xynny.prowhite-theme" + version: "0.0.1" + installs: 1578 + author: "xynny" + repo: "https://github.com/xynnylol/vsthemes" + url: "https://marketplace.visualstudio.com/items?itemName=xynny.prowhite-theme" +colors: + bg: "#F9F9F9" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 102.5 + black: 102.5 + red: 70.4 + green: 45.6 + yellow: 54.3 + blue: 82.5 + magenta: 71 + cyan: 57 + white: 82.3 + brightBlack: 75.2 + brightRed: 70.4 + brightGreen: 37.3 + brightYellow: 37.4 + brightBlue: 82.5 + brightMagenta: 71 + brightCyan: 57 + brightWhite: 44.9 diff --git a/themes/rhodes-dark.yaml b/themes/rhodes-dark.yaml new file mode 100644 index 00000000..1da46a77 --- /dev/null +++ b/themes/rhodes-dark.yaml @@ -0,0 +1,49 @@ +name: "Rhodes Dark" +source: + marketplace_id: "gaebalgom.rhodes" + version: "1.0.0" + installs: 570 + author: "gaebalgom" + repo: "https://github.com/dodok8/rhodes-theme" + url: "https://marketplace.visualstudio.com/items?itemName=gaebalgom.rhodes" +colors: + bg: "#1A1A1A" + fg: "#FDFDFD" + black: "#FFFFFF" + red: "#E17375" + green: "#58AE79" + yellow: "#9D9F44" + blue: "#51A1D5" + magenta: "#D56EC1" + cyan: "#46ABAB" + white: "#4D4D4D" + brightBlack: "#5C5C5C" + brightRed: "#EE9998" + brightGreen: "#6DCB90" + brightYellow: "#B8BA57" + brightBlue: "#78BCEA" + brightMagenta: "#E396D2" + brightCyan: "#5AC7C7" + brightWhite: "#7E7E7E" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.2 + black: 106.5 + red: 43.7 + green: 48.2 + yellow: 46.5 + blue: 46.3 + magenta: 43.2 + cyan: 47.8 + white: 11.7 + brightBlack: 17.6 + brightRed: 58.2 + brightGreen: 63 + brightYellow: 60.9 + brightBlue: 60.8 + brightMagenta: 57.8 + brightCyan: 62.2 + brightWhite: 32.5 diff --git a/themes/rhodes-light.yaml b/themes/rhodes-light.yaml new file mode 100644 index 00000000..6ae74454 --- /dev/null +++ b/themes/rhodes-light.yaml @@ -0,0 +1,49 @@ +name: "Rhodes Light" +source: + marketplace_id: "gaebalgom.rhodes" + version: "1.0.0" + installs: 570 + author: "gaebalgom" + repo: "https://github.com/dodok8/rhodes-theme" + url: "https://marketplace.visualstudio.com/items?itemName=gaebalgom.rhodes" +colors: + bg: "#FDFDFD" + fg: "#241E1F" + black: "#241E1F" + red: "#E17375" + green: "#58AE79" + yellow: "#9D9F44" + blue: "#51A1D5" + magenta: "#D56EC1" + cyan: "#46ABAB" + white: "#4D4D4D" + brightBlack: "#584C4E" + brightRed: "#EE9998" + brightGreen: "#6DCB90" + brightYellow: "#B8BA57" + brightBlue: "#78BCEA" + brightMagenta: "#E396D2" + brightCyan: "#5AC7C7" + brightWhite: "#7E7E7E" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 102.2 + black: 102.2 + red: 55.6 + green: 51.2 + yellow: 52.7 + blue: 53 + magenta: 56 + cyan: 51.5 + white: 87.9 + brightBlack: 87.2 + brightRed: 41.4 + brightGreen: 36.9 + brightYellow: 38.9 + brightBlue: 38.9 + brightMagenta: 41.9 + brightCyan: 37.6 + brightWhite: 66.6 diff --git a/themes/rich-black-theme-no-italic.yaml b/themes/rich-black-theme-no-italic.yaml new file mode 100644 index 00000000..17ff54a7 --- /dev/null +++ b/themes/rich-black-theme-no-italic.yaml @@ -0,0 +1,49 @@ +name: "rich-black-theme-no-italic" +source: + marketplace_id: "mariusbegby.rich-black-theme" + version: "1.1.1" + installs: 2841 + author: "Marius Begby" + repo: "https://github.com/mariusbegby/rich-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mariusbegby.rich-black-theme" +colors: + bg: "#0F1217" + fg: "#CCCCCC" + black: "#62666D" + red: "#E48484" + green: "#85C27A" + yellow: "#CCC666" + blue: "#91B1E0" + magenta: "#E0A8FD" + cyan: "#71C2AA" + white: "#CCCCCC" + brightBlack: "#3C3F43" + brightRed: "#E45757" + brightGreen: "#65C253" + brightYellow: "#CCC43E" + brightBlue: "#6697E0" + brightMagenta: "#E0A8FD" + brightCyan: "#71C2AA" + brightWhite: "#E3E3E3" +meta: + mode: "dark" + accent: "orange" + hue: 261 + contrast: + fg: 75.1 + black: 22.3 + red: 50.1 + green: 60.7 + yellow: 69.5 + blue: 58.5 + magenta: 66.5 + cyan: 60.7 + white: 75.1 + brightBlack: 7.4 + brightRed: 38.2 + brightGreen: 57.8 + brightYellow: 68.2 + brightBlue: 45.1 + brightMagenta: 66.5 + brightCyan: 60.7 + brightWhite: 89.2 diff --git a/themes/rider-melon-night.yaml b/themes/rider-melon-night.yaml new file mode 100644 index 00000000..df67655e --- /dev/null +++ b/themes/rider-melon-night.yaml @@ -0,0 +1,49 @@ +name: "Rider Melon Night" +source: + marketplace_id: "AbYzzX.rider-melon-theme" + version: "0.1.2" + installs: 518 + author: "AbYzzX" + repo: "https://github.com/abYzzX/vscode.rider.melon.night" + url: "https://marketplace.visualstudio.com/items?itemName=AbYzzX.rider-melon-theme" +colors: + bg: "#262626" + fg: "#D0D0D0" + black: "#303030" + red: "#D25252" + green: "#7FE173" + yellow: "#FFC66D" + blue: "#4099FF" + magenta: "#F680FF" + cyan: "#BED6FF" + white: "#EEEEEC" + brightBlack: "#535353" + brightRed: "#F07070" + brightGreen: "#9DFF91" + brightYellow: "#FFE48B" + brightBlue: "#5EB7F7" + brightMagenta: "#FF9DFF" + brightCyan: "#DCF4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75 + black: 0 + red: 30.9 + green: 72.1 + yellow: 74.9 + blue: 43.7 + magenta: 55.8 + cyan: 77.8 + white: 93.6 + brightBlack: 12.3 + brightRed: 44.1 + brightGreen: 90.1 + brightYellow: 88.2 + brightBlue: 56.3 + brightMagenta: 65.7 + brightCyan: 95 + brightWhite: 104.8 diff --git a/themes/rider.yaml b/themes/rider.yaml new file mode 100644 index 00000000..02cddd3f --- /dev/null +++ b/themes/rider.yaml @@ -0,0 +1,49 @@ +name: "Rider" +source: + marketplace_id: "arzg.intellij-theme" + version: "1.11.0" + installs: 97297 + author: "arzg" + repo: "https://github.com/arzg/intellij-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arzg.intellij-theme" +colors: + bg: "#2B2B2B" + fg: "#B4B4B4" + black: "#313131" + red: "#F0524F" + green: "#5C962C" + yellow: "#A68A0D" + blue: "#3993D4" + magenta: "#A771BF" + cyan: "#00A3A3" + white: "#B4B4B4" + brightBlack: "#818181" + brightRed: "#FF4050" + brightGreen: "#4FC414" + brightYellow: "#E5BF00" + brightBlue: "#1FB0FF" + brightMagenta: "#ED7EED" + brightCyan: "#00E5E5" + brightWhite: "#B4B4B4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 57.7 + black: 0 + red: 36.3 + green: 34.4 + yellow: 36.9 + blue: 37.3 + magenta: 33.7 + cyan: 40.4 + white: 57.7 + brightBlack: 31.2 + brightRed: 37.3 + brightGreen: 53.8 + brightYellow: 66 + brightBlue: 51.1 + brightMagenta: 51.5 + brightCyan: 73.6 + brightWhite: 57.7 diff --git a/themes/rigel.yaml b/themes/rigel.yaml new file mode 100644 index 00000000..81688ec1 --- /dev/null +++ b/themes/rigel.yaml @@ -0,0 +1,49 @@ +name: "Rigel" +source: + marketplace_id: "mrmartineau.rigel-vscode" + version: "0.1.1" + installs: 1392 + author: "mrmartineau" + repo: "https://github.com/mrmartineau/rigel-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=mrmartineau.rigel-vscode" +colors: + bg: "#002536" + fg: "#E5E5DB" + black: "#001B29" + red: "#FF6188" + green: "#7EB2DC" + yellow: "#9BF087" + blue: "#9BF087" + magenta: "#FF5A66" + cyan: "#FF5A66" + white: "#E5E5DB" + brightBlack: "#77919E" + brightRed: "#FF6188" + brightGreen: "#7EB2DC" + brightYellow: "#9BF087" + brightBlue: "#9BF087" + brightMagenta: "#FF5A66" + brightCyan: "#FF5A66" + brightWhite: "#E5E5DB" +meta: + mode: "dark" + accent: "orange" + hue: 233 + contrast: + fg: 87.9 + black: 0 + red: 45.2 + green: 55 + yellow: 82.5 + blue: 82.5 + magenta: 43 + cyan: 43 + white: 87.9 + brightBlack: 38.5 + brightRed: 45.2 + brightGreen: 55 + brightYellow: 82.5 + brightBlue: 82.5 + brightMagenta: 43 + brightCyan: 43 + brightWhite: 87.9 diff --git a/themes/rimber.yaml b/themes/rimber.yaml new file mode 100644 index 00000000..d68ee72d --- /dev/null +++ b/themes/rimber.yaml @@ -0,0 +1,49 @@ +name: "Rimber" +source: + marketplace_id: "Utsav.Rimber" + version: "1.0.2" + installs: 384 + author: "Utsav" + repo: "https://github.com/Utsav2931/Rimber" + url: "https://marketplace.visualstudio.com/items?itemName=Utsav.Rimber" +colors: + bg: "#262728" + fg: "#9EB2BA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#8FCDDB" + white: "#C0B1B1" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 55.5 + black: 0 + red: 24.5 + green: 50.8 + yellow: 83.4 + blue: 25.2 + magenta: 27.5 + cyan: 67.2 + white: 58.7 + brightBlack: 19.8 + brightRed: 36.3 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.8 + brightMagenta: 43.1 + brightCyan: 53.2 + brightWhite: 87.8 diff --git a/themes/riskified-dark.yaml b/themes/riskified-dark.yaml new file mode 100644 index 00000000..53ca9038 --- /dev/null +++ b/themes/riskified-dark.yaml @@ -0,0 +1,49 @@ +name: "Riskified Dark" +source: + marketplace_id: "eliorc.riskified-theme" + version: "1.0.4" + installs: 38 + author: "eliorc" + repo: "https://github.com/eliorc/riskified-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eliorc.riskified-theme" +colors: + bg: "#080E3F" + fg: "#E7EAEF" + black: "#283593" + red: "#DF375F" + green: "#00BEA6" + yellow: "#F8DE81" + blue: "#97B3FF" + magenta: "#BA97FF" + cyan: "#A5EFDD" + white: "#F3F5F7" + brightBlack: "#595D69" + brightRed: "#DF375F" + brightGreen: "#00BEA6" + brightYellow: "#F8DE81" + brightBlue: "#97B3FF" + brightMagenta: "#BA97FF" + brightCyan: "#7EDFEC" + brightWhite: "#F1F5FF" +meta: + mode: "dark" + accent: "red" + hue: 270 + contrast: + fg: 93 + black: 7.9 + red: 32.1 + green: 55.3 + yellow: 86.3 + blue: 61.2 + magenta: 54.9 + cyan: 87.3 + white: 100.1 + brightBlack: 18.3 + brightRed: 32.1 + brightGreen: 55.3 + brightYellow: 86.3 + brightBlue: 61.2 + brightMagenta: 54.9 + brightCyan: 77.4 + brightWhite: 100.2 diff --git a/themes/rito.yaml b/themes/rito.yaml new file mode 100644 index 00000000..84f62834 --- /dev/null +++ b/themes/rito.yaml @@ -0,0 +1,49 @@ +name: "Rito" +source: + marketplace_id: "EminBayrak.rito-dark-italic" + version: "0.0.3" + installs: 794 + author: "Emin Bayrak" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=EminBayrak.rito-dark-italic" +colors: + bg: "#32373D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 253 + contrast: + fg: 73.7 + black: 0 + red: 20.9 + green: 47.2 + yellow: 79.8 + blue: 21.6 + magenta: 23.9 + cyan: 41.7 + white: 84.2 + brightBlack: 16.2 + brightRed: 32.7 + brightGreen: 57.7 + brightYellow: 89.8 + brightBlue: 34.2 + brightMagenta: 39.5 + brightCyan: 49.6 + brightWhite: 84.2 diff --git a/themes/rivendell.yaml b/themes/rivendell.yaml new file mode 100644 index 00000000..3a8c61e6 --- /dev/null +++ b/themes/rivendell.yaml @@ -0,0 +1,49 @@ +name: "Rivendell" +source: + marketplace_id: "sortbyfirstname.rivendell" + version: "0.0.3" + installs: 508 + author: "sortbyfirstname" + repo: "https://github.com/sortbyfirstname/rivendell-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sortbyfirstname.rivendell" +colors: + bg: "#FEFAE0" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#616161" + brightBlack: "#616161" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#BBC000" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 102.5 + black: 102.5 + red: 70.5 + green: 45.7 + yellow: 54.4 + blue: 82.5 + magenta: 71 + cyan: 57.1 + white: 77.4 + brightBlack: 77.4 + brightRed: 70.5 + brightGreen: 37.4 + brightYellow: 34.3 + brightBlue: 82.5 + brightMagenta: 71 + brightCyan: 57.1 + brightWhite: 44.9 diff --git a/themes/rizz-focused.yaml b/themes/rizz-focused.yaml new file mode 100644 index 00000000..c7ddf8ad --- /dev/null +++ b/themes/rizz-focused.yaml @@ -0,0 +1,49 @@ +name: "Rizz Focused" +source: + marketplace_id: "thememebabe.thememebabe" + version: "0.0.3" + installs: 14 + author: "ThemeMeBabe by Diksha" + repo: "https://github.com/dikshaa2909/ThemeMeBabe" + url: "https://marketplace.visualstudio.com/items?itemName=thememebabe.thememebabe" +colors: + bg: "#0D1B0D" + fg: "#E8F5E8" + black: "#0D1B0D" + red: "#EF4444" + green: "#4ADE80" + yellow: "#EAB308" + blue: "#06B6D4" + magenta: "#A855F7" + cyan: "#14B8A6" + white: "#E8F5E8" + brightBlack: "#4A5C4A" + brightRed: "#F87171" + brightGreen: "#5EEB8F" + brightYellow: "#FDE047" + brightBlue: "#22D3EE" + brightMagenta: "#C084FC" + brightCyan: "#2DD4BF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 144 + contrast: + fg: 97.8 + black: 0 + red: 36.7 + green: 70.3 + yellow: 65 + blue: 53.7 + magenta: 34.3 + cyan: 52.5 + white: 97.8 + brightBlack: 15.9 + brightRed: 48 + brightGreen: 78 + brightYellow: 87 + brightBlue: 68.5 + brightMagenta: 49.5 + brightCyan: 66.8 + brightWhite: 106.8 diff --git a/themes/rizz-neutral.yaml b/themes/rizz-neutral.yaml new file mode 100644 index 00000000..01667c5b --- /dev/null +++ b/themes/rizz-neutral.yaml @@ -0,0 +1,49 @@ +name: "Rizz Neutral" +source: + marketplace_id: "thememebabe.thememebabe" + version: "0.0.3" + installs: 14 + author: "ThemeMeBabe by Diksha" + repo: "https://github.com/dikshaa2909/ThemeMeBabe" + url: "https://marketplace.visualstudio.com/items?itemName=thememebabe.thememebabe" +colors: + bg: "#0F1419" + fg: "#E6FFFF" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FF9800" + blue: "#2196F3" + magenta: "#9C27B0" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#546E7A" + brightRed: "#E57373" + brightGreen: "#81C784" + brightYellow: "#FFB74D" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 103.9 + black: 0 + red: 38 + green: 47.9 + yellow: 59.7 + blue: 43.3 + magenta: 21 + cyan: 56.8 + white: 96.4 + brightBlack: 24.1 + brightRed: 45 + brightGreen: 62.7 + brightYellow: 70.9 + brightBlue: 58.1 + brightMagenta: 38.2 + brightCyan: 67.7 + brightWhite: 107.2 diff --git a/themes/rm-dark-theme.yaml b/themes/rm-dark-theme.yaml new file mode 100644 index 00000000..5e060f00 --- /dev/null +++ b/themes/rm-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Rm Dark Theme" +source: + marketplace_id: "raihaninfo.rm-dark-theme" + version: "1.0.5" + installs: 1543 + author: "raihaninfo" + repo: "https://github.com/raihaninfo/rm-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=raihaninfo.rm-dark-theme" +colors: + bg: "#041225" + fg: "#FFFFFF" + black: "#041225" + red: "#E35535" + green: "#52AB62" + yellow: "#E6C553" + blue: "#00B3BD" + magenta: "#E991E3" + cyan: "#78E8C6" + white: "#FFFFFF" + brightBlack: "#00B3BD" + brightRed: "#E35535" + brightGreen: "#52AB62" + brightYellow: "#E6C553" + brightBlue: "#00B3BD" + brightMagenta: "#E991E3" + brightCyan: "#78E8C6" + brightWhite: "#00B3BD" +meta: + mode: "dark" + accent: "orange" + hue: 255 + contrast: + fg: 107.2 + black: 0 + red: 37 + green: 46.8 + yellow: 72.4 + blue: 51.7 + magenta: 58.9 + cyan: 80 + white: 107.2 + brightBlack: 51.7 + brightRed: 37 + brightGreen: 46.8 + brightYellow: 72.4 + brightBlue: 51.7 + brightMagenta: 58.9 + brightCyan: 80 + brightWhite: 51.7 diff --git a/themes/roblox-stylized-dark-theme.yaml b/themes/roblox-stylized-dark-theme.yaml new file mode 100644 index 00000000..fa14efc3 --- /dev/null +++ b/themes/roblox-stylized-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Roblox-Stylized Dark Theme" +source: + marketplace_id: "Raspberry05.robloxtheme" + version: "0.0.1" + installs: 1090 + author: "Raspberry" + repo: "https://github.com/Raspberry05/robloxTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Raspberry05.robloxtheme" +colors: + bg: "#252525" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72.8 + black: 0 + red: 24.8 + green: 51.1 + yellow: 83.7 + blue: 25.5 + magenta: 27.9 + cyan: 45.6 + white: 88.1 + brightBlack: 20.1 + brightRed: 36.7 + brightGreen: 61.6 + brightYellow: 93.7 + brightBlue: 38.1 + brightMagenta: 43.5 + brightCyan: 53.5 + brightWhite: 88.1 diff --git a/themes/robodark.yaml b/themes/robodark.yaml new file mode 100644 index 00000000..c4fb46a2 --- /dev/null +++ b/themes/robodark.yaml @@ -0,0 +1,49 @@ +name: "RoboDark" +source: + marketplace_id: "LaVeglia00148.robodark" + version: "1.11.2" + installs: 2509 + author: "Chad LaVeglia" + repo: "https://github.com/cjesq24/RoboDark" + url: "https://marketplace.visualstudio.com/items?itemName=LaVeglia00148.robodark" +colors: + bg: "#010102" + fg: "#ABB2BF" + black: "#4A505D" + red: "#F81141" + green: "#23974A" + yellow: "#FD7E57" + blue: "#285BFF" + magenta: "#8C62FD" + cyan: "#3A8AB2" + white: "#CCD5E5" + brightBlack: "#61697A" + brightRed: "#FC4A6D" + brightGreen: "#37BD58" + brightYellow: "#F6BE48" + brightBlue: "#199FFD" + brightMagenta: "#FC58F6" + brightCyan: "#50ACAE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.4 + black: 14.1 + red: 36.3 + green: 37.1 + yellow: 52.9 + blue: 26.8 + magenta: 35 + cyan: 36 + white: 80.7 + brightBlack: 24.2 + brightRed: 42.5 + brightGreen: 54.3 + brightYellow: 72.7 + brightBlue: 48.1 + brightMagenta: 51.1 + brightCyan: 50.1 + brightWhite: 107.9 diff --git a/themes/robolaunch.yaml b/themes/robolaunch.yaml new file mode 100644 index 00000000..93cc05f3 --- /dev/null +++ b/themes/robolaunch.yaml @@ -0,0 +1,49 @@ +name: "robolaunch" +source: + marketplace_id: "gokhangunduz.robolaunch" + version: "1.3.6" + installs: 219 + author: "Gökhan Gündüz" + repo: "https://github.com/gokhangunduz/robolaunch-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=gokhangunduz.robolaunch" +colors: + bg: "#000000" + fg: "#D1C5C0" + black: "#000000" + red: "#FF5C5C" + green: "#5CFF9C" + yellow: "#FFED5C" + blue: "#5CFFFF" + magenta: "#FF5CFC" + cyan: "#5CFFE8" + white: "#D1C5C0" + brightBlack: "#666666" + brightRed: "#FF5C5C" + brightGreen: "#5CFF9C" + brightYellow: "#FFED5C" + brightBlue: "#5CFFFF" + brightMagenta: "#FF5CFC" + brightCyan: "#5CFFE8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72.9 + black: 0 + red: 45.8 + green: 89.7 + yellow: 94.6 + blue: 93.6 + magenta: 52.8 + cyan: 92.5 + white: 72.9 + brightBlack: 23 + brightRed: 45.8 + brightGreen: 89.7 + brightYellow: 94.6 + brightBlue: 93.6 + brightMagenta: 52.8 + brightCyan: 92.5 + brightWhite: 107.9 diff --git a/themes/rocinante.yaml b/themes/rocinante.yaml new file mode 100644 index 00000000..b3b27ecd --- /dev/null +++ b/themes/rocinante.yaml @@ -0,0 +1,49 @@ +name: "Rocinante" +source: + marketplace_id: "A-Abra.Rocinante" + version: "1.0.0" + installs: 81 + author: "A-Abra" + repo: "https://github.com/A-Abra/rocinante-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=A-Abra.Rocinante" +colors: + bg: "#1A1B26" + fg: "#FFD34E" + black: "#494C71" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 81.3 + black: 12.2 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/rocko-s-modern-theme.yaml b/themes/rocko-s-modern-theme.yaml new file mode 100644 index 00000000..90670b0d --- /dev/null +++ b/themes/rocko-s-modern-theme.yaml @@ -0,0 +1,49 @@ +name: "Rocko's Modern Theme" +source: + marketplace_id: "elethan.rocko-theme" + version: "0.0.17" + installs: 1105 + author: "elethan" + repo: "https://github.com/el-ethan/rocko-theme" + url: "https://marketplace.visualstudio.com/items?itemName=elethan.rocko-theme" +colors: + bg: "#292D3E" + fg: "#C1B8EF" + black: "#000000" + red: "#E05B52" + green: "#1ACB9D" + yellow: "#F6E54D" + blue: "#82AAFF" + magenta: "#76368D" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#E05B52" + brightGreen: "#1ACB9D" + brightYellow: "#F6E54D" + brightBlue: "#82AAFF" + brightMagenta: "#F9D4B1" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 63.2 + black: 0 + red: 34 + green: 57.5 + yellow: 84.8 + blue: 52.3 + magenta: 10.8 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 34 + brightGreen: 57.5 + brightYellow: 84.8 + brightBlue: 52.3 + brightMagenta: 79.8 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/rog-theme-v1-1-dark-alpha-syntax-test.yaml b/themes/rog-theme-v1-1-dark-alpha-syntax-test.yaml new file mode 100644 index 00000000..2c9f1cc0 --- /dev/null +++ b/themes/rog-theme-v1-1-dark-alpha-syntax-test.yaml @@ -0,0 +1,49 @@ +name: "ROG Theme V1.1 Dark Alpha - Syntax Test" +source: + marketplace_id: "ELITENOTORIOUSTHEPRESTIGIOUS.rog-theme-v1-dark" + version: "1.1.0" + installs: 236 + author: "ELITE NOTORIOUS THE PRESTIGIOUS" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ELITENOTORIOUSTHEPRESTIGIOUS.rog-theme-v1-dark" +colors: + bg: "#000000" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 0 + black: 0 + red: 27.7 + green: 52.7 + yellow: 43.8 + blue: 16 + magenta: 27.1 + cyan: 41.1 + white: 16.1 + brightBlack: 23 + brightRed: 27.7 + brightGreen: 61.4 + brightYellow: 61.3 + brightBlue: 16 + brightMagenta: 27.1 + brightCyan: 41.1 + brightWhite: 53.5 diff --git a/themes/rogue-squadron.yaml b/themes/rogue-squadron.yaml new file mode 100644 index 00000000..11ccd994 --- /dev/null +++ b/themes/rogue-squadron.yaml @@ -0,0 +1,49 @@ +name: "Rogue Squadron" +source: + marketplace_id: "DanMad.a-galaxy-far-far-away-theme" + version: "3.3.1" + installs: 4613 + author: "DanMad" + repo: "https://github.com/danmad/a-galaxy-far-far-away-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DanMad.a-galaxy-far-far-away-theme" +colors: + bg: "#010203" + fg: "#CACDCF" + black: "#04070B" + red: "#BC5F5D" + green: "#85ADBC" + yellow: "#C1B398" + blue: "#538397" + magenta: "#BC5F5D" + cyan: "#85ADBC" + white: "#C1B398" + brightBlack: "#538397" + brightRed: "#BC5F5D" + brightGreen: "#85ADBC" + brightYellow: "#C1B398" + brightBlue: "#538397" + brightMagenta: "#BC5F5D" + brightCyan: "#85ADBC" + brightWhite: "#C1B398" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 76 + black: 0 + red: 32.7 + green: 54.5 + yellow: 62 + blue: 33.2 + magenta: 32.7 + cyan: 54.5 + white: 62 + brightBlack: 33.2 + brightRed: 32.7 + brightGreen: 54.5 + brightYellow: 62 + brightBlue: 33.2 + brightMagenta: 32.7 + brightCyan: 54.5 + brightWhite: 62 diff --git a/themes/rohit-kudalkar-dark-theme.yaml b/themes/rohit-kudalkar-dark-theme.yaml new file mode 100644 index 00000000..4ddda832 --- /dev/null +++ b/themes/rohit-kudalkar-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Rohit-Kudalkar-Dark-Theme" +source: + marketplace_id: "rohitkudalkar-dark-theme.rohitkudalkar-dark-theme" + version: "0.15.0" + installs: 33 + author: "rohitkudalkar-dark-theme" + repo: "https://github.com/rohitkudalkar92/rohitkudalkar-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rohitkudalkar-dark-theme.rohitkudalkar-dark-theme" +colors: + bg: "#000000" + fg: "#F5F543" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BEBEBE" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 96.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 67.5 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 98.1 diff --git a/themes/ronin-darker.yaml b/themes/ronin-darker.yaml new file mode 100644 index 00000000..a3801bf0 --- /dev/null +++ b/themes/ronin-darker.yaml @@ -0,0 +1,49 @@ +name: "Ronin Darker" +source: + marketplace_id: "ZachBauer.ronin" + version: "1.7.0" + installs: 1118 + author: "Zach Bauer" + repo: "https://github.com/azbauer8/Ronin" + url: "https://marketplace.visualstudio.com/items?itemName=ZachBauer.ronin" +colors: + bg: "#181818" + fg: "#CCCCCC" + black: "#1D2025" + red: "#E06C75" + green: "#9AC181" + yellow: "#EDD6A3" + blue: "#4FB0FF" + magenta: "#DB7F99" + cyan: "#50CDDD" + white: "#BAC4D6" + brightBlack: "#4F6695" + brightRed: "#E06C75" + brightGreen: "#9AC181" + brightYellow: "#EDD6A3" + brightBlue: "#4FB0FF" + brightMagenta: "#DB7F99" + brightCyan: "#50CDDD" + brightWhite: "#E3E5E8" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 74.6 + black: 0 + red: 42 + green: 61.7 + yellow: 81.9 + blue: 55.2 + magenta: 47.1 + cyan: 65.8 + white: 69.4 + brightBlack: 22.1 + brightRed: 42 + brightGreen: 61.7 + brightYellow: 81.9 + brightBlue: 55.2 + brightMagenta: 47.1 + brightCyan: 65.8 + brightWhite: 89.8 diff --git a/themes/ronin.yaml b/themes/ronin.yaml new file mode 100644 index 00000000..6e3e383a --- /dev/null +++ b/themes/ronin.yaml @@ -0,0 +1,49 @@ +name: "Ronin" +source: + marketplace_id: "ZachBauer.ronin" + version: "1.7.0" + installs: 1118 + author: "Zach Bauer" + repo: "https://github.com/azbauer8/Ronin" + url: "https://marketplace.visualstudio.com/items?itemName=ZachBauer.ronin" +colors: + bg: "#18181B" + fg: "#BAC4D6" + black: "#1D2025" + red: "#E06C75" + green: "#9AC181" + yellow: "#EDD6A3" + blue: "#4FB0FF" + magenta: "#DB7F99" + cyan: "#50CDDD" + white: "#BAC4D6" + brightBlack: "#4F6695" + brightRed: "#E06C75" + brightGreen: "#9AC181" + brightYellow: "#EDD6A3" + brightBlue: "#4FB0FF" + brightMagenta: "#DB7F99" + brightCyan: "#50CDDD" + brightWhite: "#E3E5E8" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 69.4 + black: 0 + red: 41.9 + green: 61.6 + yellow: 81.9 + blue: 55.2 + magenta: 47.1 + cyan: 65.8 + white: 69.4 + brightBlack: 22.1 + brightRed: 41.9 + brightGreen: 61.6 + brightYellow: 81.9 + brightBlue: 55.2 + brightMagenta: 47.1 + brightCyan: 65.8 + brightWhite: 89.8 diff --git a/themes/root-bear.yaml b/themes/root-bear.yaml new file mode 100644 index 00000000..26eb84e5 --- /dev/null +++ b/themes/root-bear.yaml @@ -0,0 +1,49 @@ +name: "Root Bear" +source: + marketplace_id: "Reuben.root-bear" + version: "0.2.1" + installs: 7009 + author: "RobiMez" + repo: "https://github.com/RobiMez/void_blue" + url: "https://marketplace.visualstudio.com/items?itemName=Reuben.root-bear" +colors: + bg: "#0A0E14" + fg: "#F7F1FF" + black: "#0A0E14" + red: "#FC618D" + green: "#7BD88F" + yellow: "#FCE566" + blue: "#FD9353" + magenta: "#948AE3" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#FCE566" + brightBlue: "#FD9353" + brightMagenta: "#948AE3" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "red" + hue: 258 + contrast: + fg: 99.9 + black: 0 + red: 47 + green: 70.9 + yellow: 90.3 + blue: 58.6 + magenta: 44.9 + cyan: 70.7 + white: 99.9 + brightBlack: 23.5 + brightRed: 47 + brightGreen: 70.9 + brightYellow: 90.3 + brightBlue: 58.6 + brightMagenta: 44.9 + brightCyan: 70.7 + brightWhite: 99.9 diff --git a/themes/root-dark-mode-theme-v0-1.yaml b/themes/root-dark-mode-theme-v0-1.yaml new file mode 100644 index 00000000..99de0ecc --- /dev/null +++ b/themes/root-dark-mode-theme-v0-1.yaml @@ -0,0 +1,49 @@ +name: "#ROOT - Dark mode theme v0.1" +source: + marketplace_id: "fiedri.root-dark-theme" + version: "0.0.5" + installs: 26 + author: "fiedri" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=fiedri.root-dark-theme" +colors: + bg: "#0A0A0A" + fg: "#FFFFFF" + black: "#888888" + red: "#FF003C" + green: "#00FF41" + yellow: "#FCEE0A" + blue: "#00F3FF" + magenta: "#BC3FBC" + cyan: "#0AFFC9" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#FF0055" + brightGreen: "#39FF14" + brightYellow: "#FFF600" + brightBlue: "#00FFFF" + brightMagenta: "#D670D6" + brightCyan: "#4DF9FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.7 + black: 38.5 + red: 37.7 + green: 86.6 + yellow: 94 + blue: 85.9 + magenta: 30.6 + cyan: 89.6 + white: 107.7 + brightBlack: 16 + brightRed: 38.1 + brightGreen: 86.8 + brightYellow: 98.2 + brightBlue: 92 + brightMagenta: 46.2 + brightCyan: 89.9 + brightWhite: 90.9 diff --git a/themes/ros-pine-dawn.yaml b/themes/ros-pine-dawn.yaml new file mode 100644 index 00000000..33bc44b4 --- /dev/null +++ b/themes/ros-pine-dawn.yaml @@ -0,0 +1,49 @@ +name: "Rosé Pine Dawn" +source: + marketplace_id: "mvllow.rose-pine" + version: "2.15.0" + installs: 299253 + author: "Rosé Pine" + repo: "https://github.com/rose-pine/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=mvllow.rose-pine" +colors: + bg: "#FAF4ED" + fg: "#575279" + black: "#F2E9E1" + red: "#B4637A" + green: "#286983" + yellow: "#EA9D34" + blue: "#56949F" + magenta: "#907AA9" + cyan: "#D7827E" + white: "#575279" + brightBlack: "#797593" + brightRed: "#B4637A" + brightGreen: "#286983" + brightYellow: "#EA9D34" + brightBlue: "#56949F" + brightMagenta: "#907AA9" + brightCyan: "#D7827E" + brightWhite: "#575279" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 79.1 + black: 0 + red: 62.5 + green: 74.2 + yellow: 37.8 + blue: 55.6 + magenta: 59.3 + cyan: 48.2 + white: 79.1 + brightBlack: 64.4 + brightRed: 62.5 + brightGreen: 74.2 + brightYellow: 37.8 + brightBlue: 55.6 + brightMagenta: 59.3 + brightCyan: 48.2 + brightWhite: 79.1 diff --git a/themes/ros-pine.yaml b/themes/ros-pine.yaml new file mode 100644 index 00000000..71e56542 --- /dev/null +++ b/themes/ros-pine.yaml @@ -0,0 +1,49 @@ +name: "Rosé Pine" +source: + marketplace_id: "SulSami.rose-pine-burnt" + version: "1.0.3" + installs: 3258 + author: "Sami" + repo: "https://github.com/rose-pine-vscode/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SulSami.rose-pine-burnt" +colors: + bg: "#0E0A01" + fg: "#C0CAF5" + black: "#26233A" + red: "#EB6F92" + green: "#31748F" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#EBBCBA" + white: "#C0CAF5" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#31748F" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#EBBCBA" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "red" + hue: 94 + contrast: + fg: 75.2 + black: 0 + red: 46.7 + green: 25.9 + yellow: 74.4 + blue: 72.2 + magenta: 61.2 + cyan: 72.6 + white: 75.2 + brightBlack: 42.1 + brightRed: 46.7 + brightGreen: 25.9 + brightYellow: 74.4 + brightBlue: 72.2 + brightMagenta: 61.2 + brightCyan: 72.6 + brightWhite: 75.2 diff --git a/themes/rose-paradise.yaml b/themes/rose-paradise.yaml new file mode 100644 index 00000000..614dc3b1 --- /dev/null +++ b/themes/rose-paradise.yaml @@ -0,0 +1,49 @@ +name: "Rose Paradise" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#FFF5F7" + fg: "#2D1B2E" + black: "#4A2A3D" + red: "#D81B60" + green: "#4CAF50" + yellow: "#FFA726" + blue: "#4A90E2" + magenta: "#AB47BC" + cyan: "#26C6DA" + white: "#4A2A3D" + brightBlack: "#8D6678" + brightRed: "#E91E63" + brightGreen: "#66BB6A" + brightYellow: "#FFB74D" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#2D1B2E" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 98.4 + black: 93.5 + red: 67.6 + green: 48.7 + yellow: 32.4 + blue: 55.4 + magenta: 68.1 + cyan: 35.2 + white: 93.5 + brightBlack: 69.2 + brightRed: 63.4 + brightGreen: 41.8 + brightYellow: 26.5 + brightBlue: 38.8 + brightMagenta: 58.2 + brightCyan: 29.6 + brightWhite: 98.4 diff --git a/themes/rosefall-black.yaml b/themes/rosefall-black.yaml new file mode 100644 index 00000000..cc20c715 --- /dev/null +++ b/themes/rosefall-black.yaml @@ -0,0 +1,49 @@ +name: "Rosefall Black" +source: + marketplace_id: "vorhdam.rosefall" + version: "2.0.0" + installs: 18 + author: "Ádám Horváth" + repo: "https://github.com/vorhdam/rosefall" + url: "https://marketplace.visualstudio.com/items?itemName=vorhdam.rosefall" +colors: + bg: "#0C0C0E" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.2 + black: 9.6 + red: 37.5 + green: 61.1 + yellow: 49.4 + blue: 50.4 + magenta: 39.8 + cyan: 53.3 + white: 83.8 + brightBlack: 16.2 + brightRed: 46.9 + brightGreen: 77.6 + brightYellow: 62 + brightBlue: 64.5 + brightMagenta: 51 + brightCyan: 68.6 + brightWhite: 91.4 diff --git a/themes/rosefall-midnight.yaml b/themes/rosefall-midnight.yaml new file mode 100644 index 00000000..a53ee1dd --- /dev/null +++ b/themes/rosefall-midnight.yaml @@ -0,0 +1,49 @@ +name: "Rosefall Midnight" +source: + marketplace_id: "vorhdam.rosefall" + version: "2.0.0" + installs: 18 + author: "Ádám Horváth" + repo: "https://github.com/vorhdam/rosefall" + url: "https://marketplace.visualstudio.com/items?itemName=vorhdam.rosefall" +colors: + bg: "#060607" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.4 + black: 9.8 + red: 37.7 + green: 61.3 + yellow: 49.6 + blue: 50.6 + magenta: 40 + cyan: 53.5 + white: 84 + brightBlack: 16.4 + brightRed: 47 + brightGreen: 77.7 + brightYellow: 62.2 + brightBlue: 64.7 + brightMagenta: 51.2 + brightCyan: 68.8 + brightWhite: 91.6 diff --git a/themes/roselia-orbital-eden-pastel.yaml b/themes/roselia-orbital-eden-pastel.yaml new file mode 100644 index 00000000..2c7f1dea --- /dev/null +++ b/themes/roselia-orbital-eden-pastel.yaml @@ -0,0 +1,49 @@ +name: "Roselia - Orbital Eden Pastel" +source: + marketplace_id: "TehMatcha.roselia-theme" + version: "4.4.0" + installs: 1278 + author: "TehMatcha" + repo: "https://github.com/MatchaTi/cool-roselia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" +colors: + bg: "#232634" + fg: "#D9E0EE" + black: "#000000" + red: "#ED8796" + green: "#ABE9B3" + yellow: "#FAE3B0" + blue: "#96CDFB" + magenta: "#F28FAD" + cyan: "#B5E8E0" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#EE99A0" + brightGreen: "#ABE9B3" + brightYellow: "#FAE3B0" + brightBlue: "#89DCEB" + brightMagenta: "#E8A2AF" + brightCyan: "#B5E8E0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 84.4 + black: 0 + red: 50.6 + green: 81.1 + yellow: 87.9 + blue: 69.6 + magenta: 54.7 + cyan: 83.4 + white: 87.8 + brightBlack: 19.8 + brightRed: 56.6 + brightGreen: 81.1 + brightYellow: 87.9 + brightBlue: 74.5 + brightMagenta: 59.1 + brightCyan: 83.4 + brightWhite: 87.8 diff --git a/themes/roselia.yaml b/themes/roselia.yaml new file mode 100644 index 00000000..de37d873 --- /dev/null +++ b/themes/roselia.yaml @@ -0,0 +1,49 @@ +name: "Roselia" +source: + marketplace_id: "TehMatcha.morfonica-theme" + version: "1.0.3" + installs: 41 + author: "TehMatcha" + repo: "https://github.com/MatchaTi/cool-morfonica-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.morfonica-theme" +colors: + bg: "#1A1B26" + fg: "#EEEEEE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 95.2 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/rouge-no-italics.yaml b/themes/rouge-no-italics.yaml new file mode 100644 index 00000000..85395e8e --- /dev/null +++ b/themes/rouge-no-italics.yaml @@ -0,0 +1,49 @@ +name: "Rouge No Italics" +source: + marketplace_id: "josef.rouge-theme" + version: "2.1.6" + installs: 53319 + author: "josef" + repo: "https://github.com/josefaidt/rouge-theme" + url: "https://marketplace.visualstudio.com/items?itemName=josef.rouge-theme" +colors: + bg: "#172030" + fg: "#BBBBBB" + black: "#374E73" + red: "#C6797E" + green: "#ADB9A4" + yellow: "#ECE7AC" + blue: "#6E94B9" + magenta: "#B18BB1" + cyan: "#8AB6C1" + white: "#E3E4E8" + brightBlack: "#3F5A85" + brightRed: "#D19498" + brightGreen: "#BEC8B7" + brightYellow: "#F2EFC7" + brightBlue: "#98B3CD" + brightMagenta: "#CCB3CC" + brightCyan: "#ABCBD3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 63.6 + black: 11.2 + red: 39.9 + green: 60.3 + yellow: 88.6 + blue: 40.7 + magenta: 44.1 + cyan: 56.8 + white: 88.3 + brightBlack: 15.8 + brightRed: 50.9 + brightGreen: 69.3 + brightYellow: 94 + brightBlue: 57.4 + brightMagenta: 63.4 + brightCyan: 69.6 + brightWhite: 105.8 diff --git a/themes/roxo-theme.yaml b/themes/roxo-theme.yaml new file mode 100644 index 00000000..03bf8200 --- /dev/null +++ b/themes/roxo-theme.yaml @@ -0,0 +1,49 @@ +name: "Roxo theme" +source: + marketplace_id: "rellyson.roxo-theme-vscode" + version: "1.2.1" + installs: 749 + author: "Rellyson Silva" + repo: "https://github.com/roxo-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=rellyson.roxo-theme-vscode" +colors: + bg: "#120D17" + fg: "#E0DEF4" + black: "#120D17" + red: "#F38BA8" + green: "#94E2D5" + yellow: "#F7BAA2" + blue: "#B4BEEE" + magenta: "#B4BEEE" + cyan: "#94E2D5" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#F38BA8" + brightGreen: "#B4BEEE" + brightYellow: "#F7BAA2" + brightBlue: "#B4BEEE" + brightMagenta: "#B4BEEE" + brightCyan: "#94E2D5" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: 307 + contrast: + fg: 87.6 + black: 0 + red: 56.3 + green: 79.9 + yellow: 72.8 + blue: 68.2 + magenta: 68.2 + cyan: 79.9 + white: 87.6 + brightBlack: 41.9 + brightRed: 56.3 + brightGreen: 68.2 + brightYellow: 72.8 + brightBlue: 68.2 + brightMagenta: 68.2 + brightCyan: 79.9 + brightWhite: 87.6 diff --git a/themes/royal-darker-theme.yaml b/themes/royal-darker-theme.yaml new file mode 100644 index 00000000..8fc2c709 --- /dev/null +++ b/themes/royal-darker-theme.yaml @@ -0,0 +1,49 @@ +name: "Royal Darker Theme" +source: + marketplace_id: "EricHideki.Royal-Dark-Theme" + version: "0.1.1" + installs: 260 + author: "Eric Hideki" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=EricHideki.Royal-Dark-Theme" +colors: + bg: "#292736" + fg: "#E6E4FF" + black: "#000000" + red: "#FF5959" + green: "#31FBAD" + yellow: "#FFFF6C" + blue: "#9DA3FF" + magenta: "#FF87FF" + cyan: "#61E0FF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF8787" + brightGreen: "#5EFF77" + brightYellow: "#FFFFAA" + brightBlue: "#74B6FF" + brightMagenta: "#FFA3FF" + brightCyan: "#5ADFFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 291 + contrast: + fg: 88.4 + black: 0 + red: 41.6 + green: 83.4 + yellow: 99.8 + blue: 53.2 + magenta: 58.8 + cyan: 74.8 + white: 87.4 + brightBlack: 19.4 + brightRed: 53.2 + brightGreen: 85.4 + brightYellow: 101.1 + brightBlue: 57.1 + brightMagenta: 67.1 + brightCyan: 74 + brightWhite: 87.4 diff --git a/themes/royal-fork.yaml b/themes/royal-fork.yaml new file mode 100644 index 00000000..eea03e5b --- /dev/null +++ b/themes/royal-fork.yaml @@ -0,0 +1,49 @@ +name: "Royal - Fork" +source: + marketplace_id: "EricHideki.Royal-Dark-Theme" + version: "0.1.1" + installs: 260 + author: "Eric Hideki" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=EricHideki.Royal-Dark-Theme" +colors: + bg: "#322F45" + fg: "#E6E4FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#242EC8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: 290 + contrast: + fg: 86.5 + black: 0 + red: 22.2 + green: 48.5 + yellow: 81.1 + blue: 0 + magenta: 25.2 + cyan: 43 + white: 85.5 + brightBlack: 17.5 + brightRed: 34 + brightGreen: 59 + brightYellow: 91.1 + brightBlue: 35.5 + brightMagenta: 40.9 + brightCyan: 50.9 + brightWhite: 85.5 diff --git a/themes/royal.yaml b/themes/royal.yaml new file mode 100644 index 00000000..71e4fbaa --- /dev/null +++ b/themes/royal.yaml @@ -0,0 +1,49 @@ +name: "Royal" +source: + marketplace_id: "EshwarBY.royal" + version: "0.0.1" + installs: 65 + author: "Eshwar B.Y" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=EshwarBY.royal" +colors: + bg: "#000000" + fg: "#F2F2F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 99.3 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/rozen.yaml b/themes/rozen.yaml new file mode 100644 index 00000000..adb30603 --- /dev/null +++ b/themes/rozen.yaml @@ -0,0 +1,49 @@ +name: "Rozen" +source: + marketplace_id: "TehMatcha.roselia-theme" + version: "4.4.0" + installs: 1278 + author: "TehMatcha" + repo: "https://github.com/MatchaTi/cool-roselia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" +colors: + bg: "#121726" + fg: "#C2C8DB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + contrast: + fg: 72.3 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.7 + cyan: 47.5 + white: 89.9 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/rs-dark.yaml b/themes/rs-dark.yaml new file mode 100644 index 00000000..491acada --- /dev/null +++ b/themes/rs-dark.yaml @@ -0,0 +1,49 @@ +name: "RS Dark" +source: + marketplace_id: "resure.rs-theme" + version: "1.1.0" + installs: 840 + author: "resure" + repo: "https://github.com/resure/rs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=resure.rs-theme" +colors: + bg: "#292A30" + fg: "#F0F0F0" + black: "#000000" + red: "#DF4C4C" + green: "#58C258" + yellow: "#DBA94C" + blue: "#258AFF" + magenta: "#BD00BD" + cyan: "#54BFC7" + white: "#D6D6D6" + brightBlack: "#D1D1D1" + brightRed: "#E05858" + brightGreen: "#6DDD6D" + brightYellow: "#E9D166" + brightBlue: "#53B6F8" + brightMagenta: "#E500E5" + brightCyan: "#00E5E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 94.2 + black: 0 + red: 31.7 + green: 53.9 + yellow: 56.4 + blue: 36.8 + magenta: 23.5 + cyan: 55.8 + white: 77.8 + brightBlack: 74.8 + brightRed: 34.2 + brightGreen: 68.2 + brightYellow: 75 + brightBlue: 54.6 + brightMagenta: 34.6 + brightCyan: 73.8 + brightWhite: 104 diff --git a/themes/rsikified-dark-purple.yaml b/themes/rsikified-dark-purple.yaml new file mode 100644 index 00000000..6966d410 --- /dev/null +++ b/themes/rsikified-dark-purple.yaml @@ -0,0 +1,49 @@ +name: "Rsikified Dark Purple" +source: + marketplace_id: "eliorc.riskified-theme" + version: "1.0.4" + installs: 38 + author: "eliorc" + repo: "https://github.com/eliorc/riskified-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eliorc.riskified-theme" +colors: + bg: "#0F1862" + fg: "#E7EAEF" + black: "#283593" + red: "#DF375F" + green: "#00BEA6" + yellow: "#F8DE81" + blue: "#97B3FF" + magenta: "#BA97FF" + cyan: "#A5EFDD" + white: "#F3F5F7" + brightBlack: "#595D69" + brightRed: "#DF375F" + brightGreen: "#00BEA6" + brightYellow: "#F8DE81" + brightBlue: "#97B3FF" + brightMagenta: "#BA97FF" + brightCyan: "#7EDFEC" + brightWhite: "#F1F5FF" +meta: + mode: "dark" + accent: "red" + hue: 269 + contrast: + fg: 91 + black: 0 + red: 30.1 + green: 53.3 + yellow: 84.4 + blue: 59.3 + magenta: 53 + cyan: 85.3 + white: 98.1 + brightBlack: 16.4 + brightRed: 30.1 + brightGreen: 53.3 + brightYellow: 84.4 + brightBlue: 59.3 + brightMagenta: 53 + brightCyan: 75.4 + brightWhite: 98.3 diff --git a/themes/rubecula.yaml b/themes/rubecula.yaml new file mode 100644 index 00000000..ad028899 --- /dev/null +++ b/themes/rubecula.yaml @@ -0,0 +1,49 @@ +name: "Rubecula" +source: + marketplace_id: "andreasbackx.rubecula" + version: "2.0.8" + installs: 646 + author: "Andreas Backx" + repo: "https://github.com/Rubecula/VS-Code" + url: "https://marketplace.visualstudio.com/items?itemName=andreasbackx.rubecula" +colors: + bg: "#1C1C1C" + fg: "#CECECE" + black: "#6E6E6E" + red: "#E52E71" + green: "#9CCC3D" + yellow: "#CCC47A" + blue: "#6CC7D9" + magenta: "#A082D9" + cyan: "#6CC7D9" + white: "#E5E5E5" + brightBlack: "#6E6E6E" + brightRed: "#E52E71" + brightGreen: "#9CCC3D" + brightYellow: "#CCC47A" + brightBlue: "#6CC7D9" + brightMagenta: "#A082D9" + brightCyan: "#6CC7D9" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 75.3 + black: 24.9 + red: 32.5 + green: 65.2 + yellow: 68 + blue: 63.7 + magenta: 41.8 + cyan: 63.7 + white: 89.4 + brightBlack: 24.9 + brightRed: 32.5 + brightGreen: 65.2 + brightYellow: 68 + brightBlue: 63.7 + brightMagenta: 41.8 + brightCyan: 63.7 + brightWhite: 89.4 diff --git a/themes/rubi-theme.yaml b/themes/rubi-theme.yaml new file mode 100644 index 00000000..0594cbc1 --- /dev/null +++ b/themes/rubi-theme.yaml @@ -0,0 +1,49 @@ +name: "Rubi Theme" +source: + marketplace_id: "sd-tools.sd-ruby-extension-vs" + version: "2.1.3" + installs: 50 + author: "Serez Dev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sd-tools.sd-ruby-extension-vs" +colors: + bg: "#3B0000" + fg: "#DBCEA3" + black: "#3B0000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#DBCEA3" + brightBlack: "#530000" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#DBCEA3" +meta: + mode: "dark" + accent: "red" + hue: 29 + contrast: + fg: 75 + black: 0 + red: 42.7 + green: 83.2 + yellow: 78 + blue: 55 + magenta: 52.8 + cyan: 77.3 + white: 75 + brightBlack: 0 + brightRed: 42.7 + brightGreen: 83.2 + brightYellow: 78 + brightBlue: 55 + brightMagenta: 52.8 + brightCyan: 77.3 + brightWhite: 75 diff --git a/themes/ruby-nights-garnet-midnight.yaml b/themes/ruby-nights-garnet-midnight.yaml new file mode 100644 index 00000000..08b2877d --- /dev/null +++ b/themes/ruby-nights-garnet-midnight.yaml @@ -0,0 +1,49 @@ +name: "Ruby Nights — Garnet Midnight" +source: + marketplace_id: "lekaledian.ruby-nights" + version: "1.1.0" + installs: 12 + author: "Ledian Leka" + repo: "https://github.com/Ledian63S/ruby-nights" + url: "https://marketplace.visualstudio.com/items?itemName=lekaledian.ruby-nights" +colors: + bg: "#0F080E" + fg: "#BAC6DB" + black: "#050003" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#69C8FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 331 + contrast: + fg: 71.5 + black: 0 + red: 44.9 + green: 55.1 + yellow: 67.4 + blue: 61.4 + magenta: 92.9 + cyan: 78.7 + white: 72.5 + brightBlack: 23.7 + brightRed: 47.4 + brightGreen: 76.8 + brightYellow: 70.4 + brightBlue: 67.6 + brightMagenta: 96 + brightCyan: 81.7 + brightWhite: 107.7 diff --git a/themes/ruby-nights-garnet.yaml b/themes/ruby-nights-garnet.yaml new file mode 100644 index 00000000..26060596 --- /dev/null +++ b/themes/ruby-nights-garnet.yaml @@ -0,0 +1,49 @@ +name: "Ruby Nights — Garnet" +source: + marketplace_id: "lekaledian.ruby-nights" + version: "1.1.0" + installs: 12 + author: "Ledian Leka" + repo: "https://github.com/Ledian63S/ruby-nights" + url: "https://marketplace.visualstudio.com/items?itemName=lekaledian.ruby-nights" +colors: + bg: "#170E16" + fg: "#BAC6DB" + black: "#080006" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#69C8FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 330 + contrast: + fg: 71.1 + black: 0 + red: 44.5 + green: 54.7 + yellow: 67.1 + blue: 61.1 + magenta: 92.5 + cyan: 78.4 + white: 72.2 + brightBlack: 23.4 + brightRed: 47.1 + brightGreen: 76.4 + brightYellow: 70.1 + brightBlue: 67.2 + brightMagenta: 95.7 + brightCyan: 81.4 + brightWhite: 107.4 diff --git a/themes/ruby-nights-ruby-midnight.yaml b/themes/ruby-nights-ruby-midnight.yaml new file mode 100644 index 00000000..77166b7b --- /dev/null +++ b/themes/ruby-nights-ruby-midnight.yaml @@ -0,0 +1,49 @@ +name: "Ruby Nights — Ruby Midnight" +source: + marketplace_id: "lekaledian.ruby-nights" + version: "1.1.0" + installs: 12 + author: "Ledian Leka" + repo: "https://github.com/Ledian63S/ruby-nights" + url: "https://marketplace.visualstudio.com/items?itemName=lekaledian.ruby-nights" +colors: + bg: "#0F090A" + fg: "#BAC6DB" + black: "#050000" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#69C8FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 7 + contrast: + fg: 71.5 + black: 0 + red: 44.9 + green: 55.1 + yellow: 67.4 + blue: 61.4 + magenta: 92.9 + cyan: 78.7 + white: 72.5 + brightBlack: 23.7 + brightRed: 47.4 + brightGreen: 76.8 + brightYellow: 70.4 + brightBlue: 67.6 + brightMagenta: 96 + brightCyan: 81.7 + brightWhite: 107.7 diff --git a/themes/ruby-nights-ruby.yaml b/themes/ruby-nights-ruby.yaml new file mode 100644 index 00000000..1ccd215a --- /dev/null +++ b/themes/ruby-nights-ruby.yaml @@ -0,0 +1,49 @@ +name: "Ruby Nights — Ruby" +source: + marketplace_id: "lekaledian.ruby-nights" + version: "1.1.0" + installs: 12 + author: "Ledian Leka" + repo: "https://github.com/Ledian63S/ruby-nights" + url: "https://marketplace.visualstudio.com/items?itemName=lekaledian.ruby-nights" +colors: + bg: "#170F10" + fg: "#BAC6DB" + black: "#090102" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#69C8FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 10 + contrast: + fg: 71.1 + black: 0 + red: 44.5 + green: 54.7 + yellow: 67.1 + blue: 61.1 + magenta: 92.5 + cyan: 78.4 + white: 72.2 + brightBlack: 23.4 + brightRed: 47.1 + brightGreen: 76.4 + brightYellow: 70.1 + brightBlue: 67.2 + brightMagenta: 95.7 + brightCyan: 81.4 + brightWhite: 107.4 diff --git a/themes/ruby-sea.yaml b/themes/ruby-sea.yaml new file mode 100644 index 00000000..8d76d443 --- /dev/null +++ b/themes/ruby-sea.yaml @@ -0,0 +1,49 @@ +name: "Ruby Sea" +source: + marketplace_id: "Barkerbg001.rubysea-vscode" + version: "1.0.6" + installs: 545 + author: "Barkerbg001" + repo: "https://github.com/barkerbg001/Ruby-Sea" + url: "https://marketplace.visualstudio.com/items?itemName=Barkerbg001.rubysea-vscode" +colors: + bg: "#122236" + fg: "#A2AABC" + black: "#214B78" + red: "#FF2D3B" + green: "#62C6FF" + yellow: "#FF4C5A" + blue: "#3DA5F6" + magenta: "#FF4C5A" + cyan: "#3DA5F6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#FF2D3B" + brightGreen: "#62C6FF" + brightYellow: "#FF4C5A" + brightBlue: "#3DA5F6" + brightMagenta: "#FF4C5A" + brightCyan: "#3DA5F6" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "orange" + hue: 255 + contrast: + fg: 53.7 + black: 9.6 + red: 36.8 + green: 64.1 + yellow: 40.7 + blue: 48.3 + magenta: 40.7 + cyan: 48.3 + white: 53.7 + brightBlack: 9.8 + brightRed: 36.8 + brightGreen: 64.1 + brightYellow: 40.7 + brightBlue: 48.3 + brightMagenta: 40.7 + brightCyan: 48.3 + brightWhite: 53.7 diff --git a/themes/rudydev-theme-edited-tokyo-night-storm.yaml b/themes/rudydev-theme-edited-tokyo-night-storm.yaml new file mode 100644 index 00000000..d249f5fc --- /dev/null +++ b/themes/rudydev-theme-edited-tokyo-night-storm.yaml @@ -0,0 +1,49 @@ +name: "RudyDev Theme [Edited Tokyo Night Storm]" +source: + marketplace_id: "RudyDev.rudydev-theme-v1" + version: "0.5.0" + installs: 1716 + author: "RudyDev" + repo: "https://github.com/Rudy-Code/theme-vsc-v1" + url: "https://marketplace.visualstudio.com/items?itemName=RudyDev.rudydev-theme-v1" +colors: + bg: "#011C31" + fg: "#A9B1D6" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#7982A9" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 245 + contrast: + fg: 59.3 + black: 10.3 + red: 49.3 + green: 72.2 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 34.9 + brightBlack: 10.3 + brightRed: 49.3 + brightGreen: 72.2 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 59.3 diff --git a/themes/rui-cobalt.yaml b/themes/rui-cobalt.yaml new file mode 100644 index 00000000..09a6ef96 --- /dev/null +++ b/themes/rui-cobalt.yaml @@ -0,0 +1,49 @@ +name: "Rui Cobalt" +source: + marketplace_id: "ruixiao85.rui-color-themes" + version: "1.3.0" + installs: 1770 + author: "Rui Xiao" + repo: "https://github.com/ruixiao85/VSCodeTheme" + url: "https://marketplace.visualstudio.com/items?itemName=ruixiao85.rui-color-themes" +colors: + bg: "#002F61" + fg: "#E0E0E0" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FFC600" + blue: "#1699FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#E0E0E0" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FFC600" + brightBlue: "#1699FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 255 + contrast: + fg: 82.4 + black: 0 + red: 42.7 + green: 61.8 + yellow: 71.7 + blue: 40.5 + magenta: 59.9 + cyan: 88.3 + white: 82.4 + brightBlack: 10.2 + brightRed: 42.7 + brightGreen: 61.8 + brightYellow: 71.7 + brightBlue: 40.5 + brightMagenta: 59.9 + brightCyan: 88.3 + brightWhite: 102.4 diff --git a/themes/rui-sapphire.yaml b/themes/rui-sapphire.yaml new file mode 100644 index 00000000..09e5be02 --- /dev/null +++ b/themes/rui-sapphire.yaml @@ -0,0 +1,49 @@ +name: "Rui Sapphire" +source: + marketplace_id: "ruixiao85.rui-color-themes" + version: "1.3.0" + installs: 1770 + author: "Rui Xiao" + repo: "https://github.com/ruixiao85/VSCodeTheme" + url: "https://marketplace.visualstudio.com/items?itemName=ruixiao85.rui-color-themes" +colors: + bg: "#002954" + fg: "#E0E0E0" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FFC600" + blue: "#1699FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#E0E0E0" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FFC600" + brightBlue: "#1699FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 254 + contrast: + fg: 83.9 + black: 0 + red: 44.1 + green: 63.3 + yellow: 73.1 + blue: 41.9 + magenta: 61.3 + cyan: 89.7 + white: 83.9 + brightBlack: 11.6 + brightRed: 44.1 + brightGreen: 63.3 + brightYellow: 73.1 + brightBlue: 41.9 + brightMagenta: 61.3 + brightCyan: 89.7 + brightWhite: 103.9 diff --git a/themes/runic-minimal.yaml b/themes/runic-minimal.yaml new file mode 100644 index 00000000..14c95ca5 --- /dev/null +++ b/themes/runic-minimal.yaml @@ -0,0 +1,49 @@ +name: "Runic Minimal" +source: + marketplace_id: "pyxel.runic-theme" + version: "1.2.0" + installs: 2355 + author: "Pyxel" + repo: "https://github.com/xpyxel/runic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pyxel.runic-theme" +colors: + bg: "#181A1B" + fg: "#D1D1D1" + black: "#000000" + red: "#FF3B30" + green: "#4CD964" + yellow: "#FFCC00" + blue: "#0095FF" + magenta: "#FF2D55" + cyan: "#5AC8FA" + white: "#FFFFFF" + brightBlack: "#686868" + brightRed: "#FF3B30" + brightGreen: "#4CD964" + brightYellow: "#FFCC00" + brightBlue: "#0095FF" + brightMagenta: "#FF2D55" + brightCyan: "#5AC8FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 77.4 + black: 0 + red: 39.1 + green: 67.2 + yellow: 78.3 + blue: 43.1 + magenta: 38.3 + cyan: 65.4 + white: 106.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 67.2 + brightYellow: 78.3 + brightBlue: 43.1 + brightMagenta: 38.3 + brightCyan: 65.4 + brightWhite: 106.6 diff --git a/themes/ruru-marijuana.yaml b/themes/ruru-marijuana.yaml new file mode 100644 index 00000000..3968284b --- /dev/null +++ b/themes/ruru-marijuana.yaml @@ -0,0 +1,49 @@ +name: "ruru marijuana" +source: + marketplace_id: "ruru-m07.ruru-theme" + version: "1.0.1" + installs: 148 + author: "ruru" + repo: "https://github.com/ruru-m07/ruru-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=ruru-m07.ruru-theme" +colors: + bg: "#0D120E" + fg: "#D4D4D4" + black: "#000000" + red: "#F07278" + green: "#C2E88D" + yellow: "#E8D66B" + blue: "#81AAFF" + magenta: "#C892EA" + cyan: "#89DDFF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F65D65" + brightGreen: "#C1FA72" + brightYellow: "#F6C468" + brightBlue: "#6394F9" + brightMagenta: "#C785F0" + brightCyan: "#75D7FE" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 151 + contrast: + fg: 80 + black: 0 + red: 47.3 + green: 84.6 + yellow: 80.5 + blue: 56.4 + magenta: 54.4 + cyan: 78.8 + white: 90.5 + brightBlack: 22.5 + brightRed: 43.6 + brightGreen: 92.8 + brightYellow: 75 + brightBlue: 45.6 + brightMagenta: 50.7 + brightCyan: 74.6 + brightWhite: 90.5 diff --git a/themes/ruru-moon.yaml b/themes/ruru-moon.yaml new file mode 100644 index 00000000..64f453c1 --- /dev/null +++ b/themes/ruru-moon.yaml @@ -0,0 +1,49 @@ +name: "ruru moon" +source: + marketplace_id: "ruru-m07.ruru-theme" + version: "1.0.1" + installs: 148 + author: "ruru" + repo: "https://github.com/ruru-m07/ruru-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=ruru-m07.ruru-theme" +colors: + bg: "#131313" + fg: "#D4D4D4" + black: "#000000" + red: "#F07278" + green: "#C2E88D" + yellow: "#E8D66B" + blue: "#81AAFF" + magenta: "#C892EA" + cyan: "#89DDFF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F65D65" + brightGreen: "#C1FA72" + brightYellow: "#F6C468" + brightBlue: "#6394F9" + brightMagenta: "#C785F0" + brightCyan: "#75D7FE" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.8 + black: 0 + red: 47.2 + green: 84.4 + yellow: 80.3 + blue: 56.2 + magenta: 54.3 + cyan: 78.6 + white: 90.4 + brightBlack: 22.4 + brightRed: 43.4 + brightGreen: 92.6 + brightYellow: 74.9 + brightBlue: 45.5 + brightMagenta: 50.5 + brightCyan: 74.5 + brightWhite: 90.4 diff --git a/themes/rust-brown.yaml b/themes/rust-brown.yaml new file mode 100644 index 00000000..52a7bfc9 --- /dev/null +++ b/themes/rust-brown.yaml @@ -0,0 +1,49 @@ +name: "Rust & Brown" +source: + marketplace_id: "LukianovII.rust-and-brown" + version: "1.0.0" + installs: 5 + author: "LukianovII" + repo: "https://github.com/LukianovII/rust-and-brown-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=LukianovII.rust-and-brown" +colors: + bg: "#1A1612" + fg: "#FFFBF5" + black: "#0F0D0A" + red: "#FF9090" + green: "#B8E0A8" + yellow: "#FFE8B8" + blue: "#A8C8E8" + magenta: "#FFA8D0" + cyan: "#A8E0D0" + white: "#FFFBF5" + brightBlack: "#5A4D42" + brightRed: "#FFB0A0" + brightGreen: "#C8F0B8" + brightYellow: "#FFF8D8" + brightBlue: "#C8E0FF" + brightMagenta: "#FFC8E0" + brightCyan: "#C8F0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 67 + contrast: + fg: 104.5 + black: 0 + red: 58.7 + green: 80 + yellow: 93.4 + blue: 70.2 + magenta: 68.9 + cyan: 79.9 + white: 104.5 + brightBlack: 13 + brightRed: 69.8 + brightGreen: 89.8 + brightYellow: 101.9 + brightBlue: 85.5 + brightMagenta: 81.4 + brightCyan: 91.4 + brightWhite: 106.9 diff --git a/themes/rustacean.yaml b/themes/rustacean.yaml new file mode 100644 index 00000000..c82713d0 --- /dev/null +++ b/themes/rustacean.yaml @@ -0,0 +1,49 @@ +name: "Rustacean" +source: + marketplace_id: "SkylarCoelho.rustacean" + version: "0.0.3" + installs: 18 + author: "Skylar Coelho" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SkylarCoelho.rustacean" +colors: + bg: "#171203" + fg: "#5F5A4D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 93 + contrast: + fg: 17.6 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/rusty.yaml b/themes/rusty.yaml new file mode 100644 index 00000000..fb813509 --- /dev/null +++ b/themes/rusty.yaml @@ -0,0 +1,49 @@ +name: "Rusty" +source: + marketplace_id: "tyanderson91.rusty-venture" + version: "1.0.6" + installs: 494 + author: "tyanderson91" + repo: "https://github.com/tyanderson91/rusty-venture" + url: "https://marketplace.visualstudio.com/items?itemName=tyanderson91.rusty-venture" +colors: + bg: "#1B1B1B" + fg: "#E4E4E4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 88.9 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/ryb.yaml b/themes/ryb.yaml new file mode 100644 index 00000000..f7e33064 --- /dev/null +++ b/themes/ryb.yaml @@ -0,0 +1,49 @@ +name: "ryb" +source: + marketplace_id: "aland97.redyellowblue" + version: "1.0.1" + installs: 38 + author: "Alexey Andreenko" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aland97.redyellowblue" +colors: + bg: "#111111" + fg: "#EEEEFF" + black: "#EEEEFF" + red: "#EE3344" + green: "#22DD88" + yellow: "#CCCC22" + blue: "#2288AA" + magenta: "#DD11DD" + cyan: "#33AABB" + white: "#EEEEFF" + brightBlack: "#EEEEFF" + brightRed: "#EE3344" + brightGreen: "#22DD88" + brightYellow: "#CCCC22" + brightBlue: "#2288AA" + brightMagenta: "#DD11DD" + brightCyan: "#33AADD" + brightWhite: "#EEEEFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 97.1 + black: 97.1 + red: 35.2 + green: 69.8 + yellow: 71.5 + blue: 33.7 + magenta: 35.8 + cyan: 48.4 + white: 97.1 + brightBlack: 97.1 + brightRed: 35.2 + brightGreen: 69.8 + brightYellow: 71.5 + brightBlue: 33.7 + brightMagenta: 35.8 + brightCyan: 50.3 + brightWhite: 97.1 diff --git a/themes/rypjaws.yaml b/themes/rypjaws.yaml new file mode 100644 index 00000000..feb15be9 --- /dev/null +++ b/themes/rypjaws.yaml @@ -0,0 +1,49 @@ +name: "rypjaws" +source: + marketplace_id: "MihirPanchal.rypjaws" + version: "0.5.1" + installs: 385 + author: "Mihir Panchal" + repo: "https://github.com/MihirRajeshPanchal/rypjaws" + url: "https://marketplace.visualstudio.com/items?itemName=MihirPanchal.rypjaws" +colors: + bg: "#3A3F47" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 51.1 + black: 0 + red: 28.4 + green: 52 + yellow: 40.3 + blue: 41.3 + magenta: 30.7 + cyan: 44.2 + white: 74.7 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 68.4 + brightYellow: 52.9 + brightBlue: 55.4 + brightMagenta: 41.9 + brightCyan: 59.5 + brightWhite: 82.3 diff --git a/themes/s-kill.yaml b/themes/s-kill.yaml new file mode 100644 index 00000000..c008e9ce --- /dev/null +++ b/themes/s-kill.yaml @@ -0,0 +1,49 @@ +name: "s-kill" +source: + marketplace_id: "metamorphosis.skill" + version: "0.4.0" + installs: 1196 + author: "metamorphosis" + repo: "https://github.com/frontendmonster/vscode-skill-theme" + url: "https://marketplace.visualstudio.com/items?itemName=metamorphosis.skill" +colors: + bg: "#293340" + fg: "#EEEEEE" + black: "#1D212B" + red: "#FE8183" + green: "#61BA86" + yellow: "#FFEC8E" + blue: "#4CB2FF" + magenta: "#D5A1F8" + cyan: "#00EEFF" + white: "#CDD2E9" + brightBlack: "#546386" + brightRed: "#FE8183" + brightGreen: "#9FFCA7" + brightYellow: "#FFB68E" + brightBlue: "#4CB2FF" + brightMagenta: "#D5A1F8" + brightCyan: "#00EEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 255 + contrast: + fg: 91.1 + black: 0 + red: 49.2 + green: 49.9 + yellow: 89.3 + blue: 51.4 + magenta: 57 + cyan: 77.8 + white: 74.1 + brightBlack: 16.2 + brightRed: 49.2 + brightGreen: 86.7 + brightYellow: 66.8 + brightBlue: 51.4 + brightMagenta: 57 + brightCyan: 77.8 + brightWhite: 102.2 diff --git a/themes/s-o-paulo-night.yaml b/themes/s-o-paulo-night.yaml new file mode 100644 index 00000000..3d87fa77 --- /dev/null +++ b/themes/s-o-paulo-night.yaml @@ -0,0 +1,49 @@ +name: "São Paulo Night" +source: + marketplace_id: "carlosdanieldev.saopaulo-night" + version: "0.1.1" + installs: 51 + author: "CarlosDanielDev" + repo: "https://github.com/CarlosDanielDev/saopaulo-night" + url: "https://marketplace.visualstudio.com/items?itemName=carlosdanieldev.saopaulo-night" +colors: + bg: "#1A1D23" + fg: "#B4B8C4" + black: "#16181D" + red: "#C17884" + green: "#88B3A0" + yellow: "#C9B589" + blue: "#6B8DB3" + magenta: "#A188B8" + cyan: "#7EB3C7" + white: "#B4B8C4" + brightBlack: "#5C5F6D" + brightRed: "#DB909B" + brightGreen: "#A0CCB8" + brightYellow: "#E3CEA1" + brightBlue: "#83A5CC" + brightMagenta: "#B9A0D1" + brightCyan: "#96CCE0" + brightWhite: "#B4B8C4" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 62.4 + black: 0 + red: 39.4 + green: 54.4 + yellow: 61.7 + blue: 38 + magenta: 41.8 + cyan: 55.3 + white: 62.4 + brightBlack: 18.6 + brightRed: 51.7 + brightGreen: 68.3 + brightYellow: 76.4 + brightBlue: 50.3 + brightMagenta: 54.4 + brightCyan: 69.2 + brightWhite: 62.4 diff --git a/themes/safari-midnight.yaml b/themes/safari-midnight.yaml new file mode 100644 index 00000000..5c0dbeaa --- /dev/null +++ b/themes/safari-midnight.yaml @@ -0,0 +1,49 @@ +name: "Safari Midnight" +source: + marketplace_id: "TanakaChinengundu.savannah-code" + version: "1.0.0" + installs: 7 + author: "Tanaka Chinengundu" + repo: "https://github.com/taqsblaze/savannah-code" + url: "https://marketplace.visualstudio.com/items?itemName=TanakaChinengundu.savannah-code" +colors: + bg: "#0F0D0A" + fg: "#E8E0D0" + black: "#0F0D0A" + red: "#FF4500" + green: "#5A9060" + yellow: "#FFB84D" + blue: "#3070A0" + magenta: "#C87090" + cyan: "#508880" + white: "#C8C0B0" + brightBlack: "#3D3020" + brightRed: "#FF6020" + brightGreen: "#7AB880" + brightYellow: "#FFD080" + brightBlue: "#50A0D0" + brightMagenta: "#E898B0" + brightCyan: "#70B8B0" + brightWhite: "#F0E8D8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88 + black: 0 + red: 41.1 + green: 36.4 + yellow: 71.7 + blue: 25.3 + magenta: 40.2 + cyan: 33.7 + white: 68.7 + brightBlack: 0 + brightRed: 45.6 + brightGreen: 55.8 + brightYellow: 82.1 + brightBlue: 46.6 + brightMagenta: 58.8 + brightCyan: 56.8 + brightWhite: 93.1 diff --git a/themes/safira.yaml b/themes/safira.yaml new file mode 100644 index 00000000..f89b2909 --- /dev/null +++ b/themes/safira.yaml @@ -0,0 +1,49 @@ +name: "safira" +source: + marketplace_id: "yinz.safira" + version: "0.0.9" + installs: 10360 + author: "Yinz" + repo: "https://github.com/yinzdev/safira-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=yinz.safira" +colors: + bg: "#161D26" + fg: "#DCDEDF" + black: "#5E5E5E" + red: "#FF465C" + green: "#0ED78A" + yellow: "#FFCE57" + blue: "#64C7FF" + magenta: "#E560E6" + cyan: "#00C5D3" + white: "#DCDEDF" + brightBlack: "#8C8C8C" + brightRed: "#FF465C" + brightGreen: "#2ADD75" + brightYellow: "#FFCE57" + brightBlue: "#82AAFF" + brightMagenta: "#FF64FF" + brightCyan: "#A6F8E9" + brightWhite: "#EBEBEB" +meta: + mode: "dark" + accent: "pink" + hue: 255 + contrast: + fg: 84.8 + black: 18.1 + red: 40.6 + green: 65.6 + yellow: 79.2 + blue: 65.4 + magenta: 45.1 + cyan: 59.9 + white: 84.8 + brightBlack: 38.9 + brightRed: 40.6 + brightGreen: 68.3 + brightYellow: 79.2 + brightBlue: 55.3 + brightMagenta: 52.8 + brightCyan: 91.7 + brightWhite: 93.2 diff --git a/themes/saga-nordic-v1-2.yaml b/themes/saga-nordic-v1-2.yaml new file mode 100644 index 00000000..ec559cb0 --- /dev/null +++ b/themes/saga-nordic-v1-2.yaml @@ -0,0 +1,49 @@ +name: "Saga - Nordic v1.2" +source: + marketplace_id: "bcwsea.theme-saga" + version: "1.2.0" + installs: 2870 + author: "bcwsea" + repo: "https://github.com/bcwdev/theme-saga" + url: "https://marketplace.visualstudio.com/items?itemName=bcwsea.theme-saga" +colors: + bg: "#001420" + fg: "#86949D" + black: "#4B4B4B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 235 + contrast: + fg: 42.8 + black: 11.6 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30.1 + cyan: 47.9 + white: 90.3 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/saga-oceania-v1-2.yaml b/themes/saga-oceania-v1-2.yaml new file mode 100644 index 00000000..3e8b9801 --- /dev/null +++ b/themes/saga-oceania-v1-2.yaml @@ -0,0 +1,49 @@ +name: "Saga - Oceania v1.2" +source: + marketplace_id: "bcwsea.theme-saga" + version: "1.2.0" + installs: 2870 + author: "bcwsea" + repo: "https://github.com/bcwdev/theme-saga" + url: "https://marketplace.visualstudio.com/items?itemName=bcwsea.theme-saga" +colors: + bg: "#191514" + fg: "#A59A89" + black: "#4B4B4B" + red: "#CD3131" + green: "#689C6B" + yellow: "#FEF97B" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#75CB7A" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 47.5 + black: 11.4 + red: 26.8 + green: 41.7 + yellow: 99.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.3 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/sage-of-light-color-theme.yaml b/themes/sage-of-light-color-theme.yaml new file mode 100644 index 00000000..011dd208 --- /dev/null +++ b/themes/sage-of-light-color-theme.yaml @@ -0,0 +1,49 @@ +name: "sage-of-light-color-theme" +source: + marketplace_id: "wavebeem.sage-of-light-vscode" + version: "1.0.1" + installs: 276 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/sage-of-light-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.sage-of-light-vscode" +colors: + bg: "#FFFFFF" + fg: "#003836" + black: "#484848" + red: "#D2004F" + green: "#008800" + yellow: "#B74700" + blue: "#006FD6" + magenta: "#A200E9" + cyan: "#008188" + white: "#FFFFFF" + brightBlack: "#484848" + brightRed: "#D2004F" + brightGreen: "#008800" + brightYellow: "#B74700" + brightBlue: "#006FD6" + brightMagenta: "#A200E9" + brightCyan: "#008188" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 98.8 + black: 91.1 + red: 74.5 + green: 71.4 + yellow: 75.8 + blue: 73.4 + magenta: 75.7 + cyan: 71.9 + white: 0 + brightBlack: 91.1 + brightRed: 74.5 + brightGreen: 71.4 + brightYellow: 75.8 + brightBlue: 73.4 + brightMagenta: 75.7 + brightCyan: 71.9 + brightWhite: 0 diff --git a/themes/sage-professional.yaml b/themes/sage-professional.yaml new file mode 100644 index 00000000..ea3afbe5 --- /dev/null +++ b/themes/sage-professional.yaml @@ -0,0 +1,49 @@ +name: "Sage Professional" +source: + marketplace_id: "cubancodepath.jv-sage-professional" + version: "2.1.0" + installs: 8 + author: "Bárbaro Javier" + repo: "https://github.com/cubancodepath/sage-professional-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cubancodepath.jv-sage-professional" +colors: + bg: "#1E2A2E" + fg: "#D4DDD8" + black: "#1E2A2E" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#D4DDD8" + brightBlack: "#5A6B63" + brightRed: "#F78C6C" + brightGreen: "#D4EEAA" + brightYellow: "#FFE0A0" + brightBlue: "#A6C4FF" + brightMagenta: "#DDB3F0" + brightCyan: "#A8EEFF" + brightWhite: "#F0F4F2" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 81.2 + black: 0 + red: 44.1 + green: 81.7 + yellow: 76.5 + blue: 53.4 + magenta: 51.3 + cyan: 75.8 + white: 81.2 + brightBlack: 20 + brightRed: 52.5 + brightGreen: 87.3 + brightYellow: 86.6 + brightBlue: 67.2 + brightMagenta: 66.3 + brightCyan: 86.3 + brightWhite: 96.5 diff --git a/themes/sage-siren-theme.yaml b/themes/sage-siren-theme.yaml new file mode 100644 index 00000000..f3c729fa --- /dev/null +++ b/themes/sage-siren-theme.yaml @@ -0,0 +1,49 @@ +name: "Sage Siren Theme" +source: + marketplace_id: "c3ne3s.sage-siren-theme" + version: "0.0.1" + installs: 255 + author: "c3ne3s" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=c3ne3s.sage-siren-theme" +colors: + bg: "#141716" + fg: "#F8FAFC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 103.4 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/sailor-at-sea.yaml b/themes/sailor-at-sea.yaml new file mode 100644 index 00000000..b49cc875 --- /dev/null +++ b/themes/sailor-at-sea.yaml @@ -0,0 +1,49 @@ +name: "sailor-at-sea" +source: + marketplace_id: "rikkarth.ship-at-sea" + version: "0.0.3" + installs: 561 + author: "rikkarth" + repo: "https://github.com/rikkarth/ship-at-sea" + url: "https://marketplace.visualstudio.com/items?itemName=rikkarth.ship-at-sea" +colors: + bg: "#070707" + fg: "#EAEAEA" + black: "#231E1A" + red: "#E64528" + green: "#F5B56A" + yellow: "#F07E1B" + blue: "#D0A46C" + magenta: "#F28E43" + cyan: "#BFAFA4" + white: "#EAEAEA" + brightBlack: "#6E625A" + brightRed: "#E64528" + brightGreen: "#F5B56A" + brightYellow: "#F07E1B" + brightBlue: "#D0A46C" + brightMagenta: "#F28E43" + brightCyan: "#BFAFA4" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.1 + black: 0 + red: 35.6 + green: 69.5 + yellow: 49.6 + blue: 57.2 + magenta: 54.9 + cyan: 60.5 + white: 94.1 + brightBlack: 22.2 + brightRed: 35.6 + brightGreen: 69.5 + brightYellow: 49.6 + brightBlue: 57.2 + brightMagenta: 54.9 + brightCyan: 60.5 + brightWhite: 94.1 diff --git a/themes/sakai-theme-jupiter.yaml b/themes/sakai-theme-jupiter.yaml new file mode 100644 index 00000000..dea195f2 --- /dev/null +++ b/themes/sakai-theme-jupiter.yaml @@ -0,0 +1,49 @@ +name: "Sakai Theme Jupiter" +source: + marketplace_id: "Sakai.sakai" + version: "2.6.8" + installs: 1186 + author: "Sakai" + repo: "https://github.com/Sakai-UI/Sakai-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sakai.sakai" +colors: + bg: "#232136" + fg: "#E0DEF4" + black: "#232136" + red: "#EB6F92" + green: "#A093D0" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#C4A7E7" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#A093D0" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#C4A7E7" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: 288 + contrast: + fg: 85.3 + black: 0 + red: 44.2 + green: 45.7 + yellow: 71.9 + blue: 69.7 + magenta: 58.7 + cyan: 58.7 + white: 85.3 + brightBlack: 39.6 + brightRed: 44.2 + brightGreen: 45.7 + brightYellow: 71.9 + brightBlue: 69.7 + brightMagenta: 58.7 + brightCyan: 58.7 + brightWhite: 85.3 diff --git a/themes/sakai-theme-moon.yaml b/themes/sakai-theme-moon.yaml new file mode 100644 index 00000000..2d596b6b --- /dev/null +++ b/themes/sakai-theme-moon.yaml @@ -0,0 +1,49 @@ +name: "Sakai Theme Moon" +source: + marketplace_id: "Sakai.sakai" + version: "2.6.8" + installs: 1186 + author: "Sakai" + repo: "https://github.com/Sakai-UI/Sakai-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sakai.sakai" +colors: + bg: "#191724" + fg: "#E0DEF4" + black: "#26233A" + red: "#EB6F92" + green: "#31748F" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#988BC7" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#9CCFD8" + brightYellow: "#31748F" + brightBlue: "#C4A7E7" + brightMagenta: "#C4A7E7" + brightCyan: "#C4A7E7" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: 291 + contrast: + fg: 86.8 + black: 0 + red: 45.7 + green: 24.9 + yellow: 73.4 + blue: 71.2 + magenta: 60.1 + cyan: 43.1 + white: 86.8 + brightBlack: 41.1 + brightRed: 45.7 + brightGreen: 71.2 + brightYellow: 24.9 + brightBlue: 60.1 + brightMagenta: 60.1 + brightCyan: 60.1 + brightWhite: 86.8 diff --git a/themes/sakai-theme-saturn.yaml b/themes/sakai-theme-saturn.yaml new file mode 100644 index 00000000..fa9cd349 --- /dev/null +++ b/themes/sakai-theme-saturn.yaml @@ -0,0 +1,49 @@ +name: "Sakai Theme Saturn" +source: + marketplace_id: "Sakai.sakai" + version: "2.6.8" + installs: 1186 + author: "Sakai" + repo: "https://github.com/Sakai-UI/Sakai-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sakai.sakai" +colors: + bg: "#212836" + fg: "#E0DEF4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 84.5 + black: 0 + red: 24.3 + green: 50.6 + yellow: 83.2 + blue: 25 + magenta: 27.3 + cyan: 45.1 + white: 87.6 + brightBlack: 19.6 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.6 + brightMagenta: 42.9 + brightCyan: 53 + brightWhite: 87.6 diff --git a/themes/sakai-theme-venus.yaml b/themes/sakai-theme-venus.yaml new file mode 100644 index 00000000..2e84b37c --- /dev/null +++ b/themes/sakai-theme-venus.yaml @@ -0,0 +1,49 @@ +name: "Sakai Theme Venus" +source: + marketplace_id: "Sakai.sakai" + version: "2.6.8" + installs: 1186 + author: "Sakai" + repo: "https://github.com/Sakai-UI/Sakai-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sakai.sakai" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 59.3 + black: 0 + red: 49.4 + green: 72.2 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 32.1 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 45.8 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 59 diff --git a/themes/sakura-blossom-midnight.yaml b/themes/sakura-blossom-midnight.yaml new file mode 100644 index 00000000..036c793e --- /dev/null +++ b/themes/sakura-blossom-midnight.yaml @@ -0,0 +1,49 @@ +name: "Sakura Blossom Midnight" +source: + marketplace_id: "agustinhopneto.sakura-blossom" + version: "0.0.4" + installs: 1414 + author: "Agustinho Neto" + repo: "https://github.com/agustinhopneto/sakura-blossom" + url: "https://marketplace.visualstudio.com/items?itemName=agustinhopneto.sakura-blossom" +colors: + bg: "#1D161B" + fg: "#D1C7CA" + black: "#332430" + red: "#C05039" + green: "#70CD9E" + yellow: "#E3B75F" + blue: "#85C1E9" + magenta: "#B6A3E5" + cyan: "#F688A5" + white: "#D1C7CA" + brightBlack: "#9F898F" + brightRed: "#C05039" + brightGreen: "#70CD9E" + brightYellow: "#E3B75F" + brightBlue: "#85C1E9" + brightMagenta: "#B6A3E5" + brightCyan: "#F688A5" + brightWhite: "#D1C7CA" +meta: + mode: "dark" + accent: "orange" + hue: 337 + contrast: + fg: 73 + black: 0 + red: 28.5 + green: 64.7 + yellow: 66 + blue: 64.1 + magenta: 56.8 + cyan: 55.2 + white: 73 + brightBlack: 40.7 + brightRed: 28.5 + brightGreen: 64.7 + brightYellow: 66 + brightBlue: 64.1 + brightMagenta: 56.8 + brightCyan: 55.2 + brightWhite: 73 diff --git a/themes/sakura-blossom-theme.yaml b/themes/sakura-blossom-theme.yaml new file mode 100644 index 00000000..e992a138 --- /dev/null +++ b/themes/sakura-blossom-theme.yaml @@ -0,0 +1,49 @@ +name: "sakura-blossom-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#21222E" + fg: "#F2A2D6" + black: "#BC8DAB" + red: "#EC3737" + green: "#5AFFF7" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#EC34EC" + cyan: "#75BEFF" + white: "#F2A2D6" + brightBlack: "#666666" + brightRed: "#FF7B7B" + brightGreen: "#77E2B7" + brightYellow: "#F7F79A" + brightBlue: "#3B8EEA" + brightMagenta: "#EA8FEA" + brightCyan: "#29B8DB" + brightWhite: "#FFB3F7" +meta: + mode: "dark" + accent: "pink" + hue: 281 + contrast: + fg: 63.2 + black: 45.6 + red: 32.9 + green: 90.6 + yellow: 84.1 + blue: 25.9 + magenta: 39.9 + cyan: 61.6 + white: 63.2 + brightBlack: 20.5 + brightRed: 50.7 + brightGreen: 74.5 + brightYellow: 96.7 + brightBlue: 38.4 + brightMagenta: 56.9 + brightCyan: 53.8 + brightWhite: 73.1 diff --git a/themes/sakura-dreams-dark.yaml b/themes/sakura-dreams-dark.yaml new file mode 100644 index 00000000..bb1eb695 --- /dev/null +++ b/themes/sakura-dreams-dark.yaml @@ -0,0 +1,49 @@ +name: "Sakura Dreams Dark" +source: + marketplace_id: "nhcarrigan.naomis-themes" + version: "2.3.0" + installs: 68 + author: "NHCarrigan" + repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" +colors: + bg: "#2A0A18" + fg: "#FFB6C1" + black: "#4A112A" + red: "#FF69B4" + green: "#E35A8F" + yellow: "#D45A88" + blue: "#C96385" + magenta: "#E35A8F" + cyan: "#FF9AAC" + white: "#FFD1DC" + brightBlack: "#3A0D22" + brightRed: "#FF1493" + brightGreen: "#FF77A8" + brightYellow: "#FFB6C1" + brightBlue: "#D87093" + brightMagenta: "#FF85A2" + brightCyan: "#FFAFC5" + brightWhite: "#FFF5F7" +meta: + mode: "dark" + accent: "red" + hue: 356 + contrast: + fg: 73.1 + black: 0 + red: 50 + green: 39.6 + yellow: 36.3 + blue: 36 + magenta: 39.6 + cyan: 62.7 + white: 84.7 + brightBlack: 0 + brightRed: 39.1 + brightGreen: 52.7 + brightYellow: 73.1 + brightBlue: 42.4 + brightMagenta: 56.1 + brightCyan: 70.7 + brightWhite: 101.7 diff --git a/themes/sakura-dreams.yaml b/themes/sakura-dreams.yaml new file mode 100644 index 00000000..9fc000e0 --- /dev/null +++ b/themes/sakura-dreams.yaml @@ -0,0 +1,49 @@ +name: "Sakura Dreams" +source: + marketplace_id: "nhcarrigan.naomis-themes" + version: "2.3.0" + installs: 68 + author: "NHCarrigan" + repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" +colors: + bg: "#FFEFEF" + fg: "#D87093" + black: "#FFE4E8" + red: "#FF1493" + green: "#FF69B4" + yellow: "#FFB6C1" + blue: "#DB7093" + magenta: "#FF85A2" + cyan: "#FFAFC5" + white: "#FFD1DC" + brightBlack: "#FFEFEF" + brightRed: "#FF0066" + brightGreen: "#FF77A8" + brightYellow: "#FFA6C9" + brightBlue: "#F08080" + brightMagenta: "#FF9AAC" + brightCyan: "#FFC0CB" + brightWhite: "#FFF5F7" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 50.8 + black: 0 + red: 54.1 + green: 43.4 + yellow: 21.3 + blue: 50.3 + magenta: 37.5 + cyan: 23.5 + white: 10.3 + brightBlack: 0 + brightRed: 55.7 + brightGreen: 40.8 + brightYellow: 26.3 + brightBlue: 42.8 + brightMagenta: 31.2 + brightCyan: 17.4 + brightWhite: 0 diff --git a/themes/sakura-theme-fork.yaml b/themes/sakura-theme-fork.yaml new file mode 100644 index 00000000..1cdedd75 --- /dev/null +++ b/themes/sakura-theme-fork.yaml @@ -0,0 +1,49 @@ +name: "Sakura Theme - Fork" +source: + marketplace_id: "minako.sakurasun" + version: "1.0.3" + installs: 1621 + author: "minako" + repo: "https://github.com/kayliese/sakura" + url: "https://marketplace.visualstudio.com/items?itemName=minako.sakurasun" +colors: + bg: "#070B11" + fg: "#00D7FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 72.1 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/sakura-theme.yaml b/themes/sakura-theme.yaml new file mode 100644 index 00000000..1a36139b --- /dev/null +++ b/themes/sakura-theme.yaml @@ -0,0 +1,49 @@ +name: "sakura-theme" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#181C21" + fg: "#F2A2D6" + black: "#BC8DAB" + red: "#EC3737" + green: "#05925C" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#EC34EC" + cyan: "#75BEFF" + white: "#F2A2D6" + brightBlack: "#666666" + brightRed: "#FF7B7B" + brightGreen: "#77E2B7" + brightYellow: "#F7F79A" + brightBlue: "#3B8EEA" + brightMagenta: "#EA8FEA" + brightCyan: "#29B8DB" + brightWhite: "#FFB3F7" +meta: + mode: "dark" + accent: "pink" + hue: 254 + contrast: + fg: 64.3 + black: 46.7 + red: 33.9 + green: 33.6 + yellow: 85.1 + blue: 26.9 + magenta: 40.9 + cyan: 62.6 + white: 64.3 + brightBlack: 21.5 + brightRed: 51.8 + brightGreen: 75.6 + brightYellow: 97.7 + brightBlue: 39.5 + brightMagenta: 58 + brightCyan: 54.9 + brightWhite: 74.1 diff --git a/themes/sakura-v2-by-leroiadib.yaml b/themes/sakura-v2-by-leroiadib.yaml new file mode 100644 index 00000000..88495a23 --- /dev/null +++ b/themes/sakura-v2-by-leroiadib.yaml @@ -0,0 +1,49 @@ +name: "Sakura V2 By LeRoiAdib" +source: + marketplace_id: "LeRoiAdib.sakura-v2-lra" + version: "2.4.2" + installs: 267 + author: "LeRoiAdib" + repo: "https://github.com/RomainLAU/Sakura-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=LeRoiAdib.sakura-v2-lra" +colors: + bg: "#20252C" + fg: "#FBEAF5" + black: "#BC8DAB" + red: "#EC3737" + green: "#05925C" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#EC34EC" + cyan: "#75BEFF" + white: "#F2A2D6" + brightBlack: "#666666" + brightRed: "#FF7B7B" + brightGreen: "#77E2B7" + brightYellow: "#F7F79A" + brightBlue: "#3B8EEA" + brightMagenta: "#EA8FEA" + brightCyan: "#29B8DB" + brightWhite: "#FFB3F7" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 94.3 + black: 45.4 + red: 32.6 + green: 32.3 + yellow: 83.8 + blue: 25.6 + magenta: 39.6 + cyan: 61.3 + white: 63 + brightBlack: 20.2 + brightRed: 50.4 + brightGreen: 74.3 + brightYellow: 96.4 + brightBlue: 38.2 + brightMagenta: 56.6 + brightCyan: 53.6 + brightWhite: 72.8 diff --git a/themes/sakura.yaml b/themes/sakura.yaml new file mode 100644 index 00000000..df4e8229 --- /dev/null +++ b/themes/sakura.yaml @@ -0,0 +1,49 @@ +name: "sakura" +source: + marketplace_id: "Volskaya.irrelevant" + version: "0.0.2" + installs: 33 + author: "Volskaya" + repo: "https://github.com/volskaya/irrelevant" + url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#1C1C1C" + red: "#75FA9D" + green: "#FB76C1" + yellow: "#B3FA75" + blue: "#878787" + magenta: "#979797" + cyan: "#A6A6A6" + white: "#444444" + brightBlack: "#666666" + brightRed: "#B3FA75" + brightGreen: "#FB76C1" + brightYellow: "#DDDDDD" + brightBlue: "#878787" + brightMagenta: "#979797" + brightCyan: "#A6A6A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 86.7 + green: 52.2 + yellow: 90.3 + blue: 36.6 + magenta: 44.6 + cyan: 52.5 + white: 8.3 + brightBlack: 21.5 + brightRed: 90.3 + brightGreen: 52.2 + brightYellow: 84.4 + brightBlue: 36.6 + brightMagenta: 44.6 + brightCyan: 52.5 + brightWhite: 106.3 diff --git a/themes/sakya-dorje.yaml b/themes/sakya-dorje.yaml new file mode 100644 index 00000000..69e50e44 --- /dev/null +++ b/themes/sakya-dorje.yaml @@ -0,0 +1,49 @@ +name: "Sakya Dorje" +source: + marketplace_id: "mouselee.sakya-theme" + version: "0.2.0" + installs: 16 + author: "mouselee" + repo: "https://github.com/XuanLee-HEALER/sakya-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mouselee.sakya-theme" +colors: + bg: "#1B1B2A" + fg: "#E8E0D4" + black: "#0C0C14" + red: "#BB4441" + green: "#527559" + yellow: "#D2B450" + blue: "#5B8AB8" + magenta: "#C88090" + cyan: "#527559" + white: "#C4BCAE" + brightBlack: "#46465C" + brightRed: "#BB4441" + brightGreen: "#527559" + brightYellow: "#E0C888" + brightBlue: "#5B8AB8" + brightMagenta: "#C88090" + brightCyan: "#527559" + brightWhite: "#E8E0D4" +meta: + mode: "dark" + accent: "orange" + hue: 284 + contrast: + fg: 86.8 + black: 0 + red: 25 + green: 24.4 + yellow: 61.5 + blue: 36.2 + magenta: 43.3 + cyan: 24.4 + white: 65.1 + brightBlack: 9.6 + brightRed: 25 + brightGreen: 24.4 + brightYellow: 72.8 + brightBlue: 36.2 + brightMagenta: 43.3 + brightCyan: 24.4 + brightWhite: 86.8 diff --git a/themes/samacaca.yaml b/themes/samacaca.yaml new file mode 100644 index 00000000..9780baf2 --- /dev/null +++ b/themes/samacaca.yaml @@ -0,0 +1,49 @@ +name: "Samacaca" +source: + marketplace_id: "josymarss.samacaca" + version: "1.1.0" + installs: 168 + author: "josymarss" + repo: "https://github.com/josymarss/samacaca" + url: "https://marketplace.visualstudio.com/items?itemName=josymarss.samacaca" +colors: + bg: "#091624" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 251 + contrast: + fg: 107 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/samgido-theme-dark.yaml b/themes/samgido-theme-dark.yaml new file mode 100644 index 00000000..7b12936d --- /dev/null +++ b/themes/samgido-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "samgido-theme-dark" +source: + marketplace_id: "samuelgido.samgido-theme" + version: "2.0.2" + installs: 17 + author: "Samuel Gido" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=samuelgido.samgido-theme" +colors: + bg: "#1A191A" + fg: "#8C8C8C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 39.3 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.8 diff --git a/themes/samito-nest-graphql-theme.yaml b/themes/samito-nest-graphql-theme.yaml new file mode 100644 index 00000000..35e49e39 --- /dev/null +++ b/themes/samito-nest-graphql-theme.yaml @@ -0,0 +1,49 @@ +name: "Samito Nest-GraphQL Theme" +source: + marketplace_id: "samito-themes.samito-nest-graphql-theme-vscode" + version: "0.0.1" + installs: 182 + author: "samito-themes" + repo: "https://github.com/SamitoX4/samito-nest-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=samito-themes.samito-nest-graphql-theme-vscode" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 80.5 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/samito-nest-theme.yaml b/themes/samito-nest-theme.yaml new file mode 100644 index 00000000..73b3e757 --- /dev/null +++ b/themes/samito-nest-theme.yaml @@ -0,0 +1,49 @@ +name: "Samito Nest Theme" +source: + marketplace_id: "samito-themes.samito-nest-theme-vscode" + version: "0.0.1" + installs: 1790 + author: "samito-themes" + repo: "https://github.com/SamitoX4/samito-nest-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=samito-themes.samito-nest-theme-vscode" +colors: + bg: "#0A0A0A" + fg: "#F5F5F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F5F5F5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#AE0000" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.2 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 101.2 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 18.5 diff --git a/themes/samurai.yaml b/themes/samurai.yaml new file mode 100644 index 00000000..eae09965 --- /dev/null +++ b/themes/samurai.yaml @@ -0,0 +1,49 @@ +name: "Samurai" +source: + marketplace_id: "ParsaSam.samurai" + version: "0.5.3" + installs: 2179 + author: "Parsa Samadnejad" + repo: "https://github.com/TroddenSpade/Samurai-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ParsaSam.samurai" +colors: + bg: "#222222" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D9D9D9" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.1 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 81.1 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 105.5 diff --git a/themes/samyak-bumb.yaml b/themes/samyak-bumb.yaml new file mode 100644 index 00000000..3ced7dc6 --- /dev/null +++ b/themes/samyak-bumb.yaml @@ -0,0 +1,49 @@ +name: "Samyak Bumb" +source: + marketplace_id: "SamyakBumb.samyak" + version: "10.2.2" + installs: 3777 + author: "Samyak Bumb" + repo: "https://github.com/Samyak-Bumb/Samyak-Bumb-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=SamyakBumb.samyak" +colors: + bg: "#00002A" + fg: "#BACCE0" + black: "#000000" + red: "#FB4A80" + green: "#1DF89D" + yellow: "#E6E65C" + blue: "#45A9F9" + magenta: "#FF75B5" + cyan: "#80FCFF" + white: "#C8D3F5" + brightBlack: "#666666" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#E6E65C" + brightBlue: "#79CAFF" + brightMagenta: "#FF9AC1" + brightCyan: "#80FCFF" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 74.1 + black: 0 + red: 42.5 + green: 84.3 + yellow: 87.4 + blue: 52.4 + magenta: 53.5 + cyan: 93.4 + white: 79.9 + brightBlack: 22.7 + brightRed: 49.5 + brightGreen: 89.7 + brightYellow: 87.4 + brightBlue: 69.3 + brightMagenta: 64.3 + brightCyan: 93.4 + brightWhite: 96.4 diff --git a/themes/sanam-dark-pro.yaml b/themes/sanam-dark-pro.yaml new file mode 100644 index 00000000..61d54b29 --- /dev/null +++ b/themes/sanam-dark-pro.yaml @@ -0,0 +1,49 @@ +name: "sanam-dark-pro" +source: + marketplace_id: "sanam.sanam-dark-pro" + version: "0.0.4" + installs: 263 + author: "Sanam Pakuwal" + repo: "https://github.com/sanamhub/sanam-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=sanam.sanam-dark-pro" +colors: + bg: "#000000" + fg: "#DBDBDB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C4C4C4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFAFA" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 84.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 70.9 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 105.3 diff --git a/themes/sandcastle.yaml b/themes/sandcastle.yaml new file mode 100644 index 00000000..fafe4b6c --- /dev/null +++ b/themes/sandcastle.yaml @@ -0,0 +1,49 @@ +name: "Sandcastle" +source: + marketplace_id: "ryanolsonx.sandcastle-theme" + version: "0.3.1" + installs: 2543 + author: "Ryan Olson" + repo: "https://github.com/ryanolsonx/vscode-sandcastle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ryanolsonx.sandcastle-theme" +colors: + bg: "#272C35" + fg: "#FFF4BA" + black: "#000000" + red: "#C15E7A" + green: "#7AA697" + yellow: "#A67C2C" + blue: "#3D8C8C" + magenta: "#B17000" + cyan: "#7AA697" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#C15E7A" + brightGreen: "#7AA697" + brightYellow: "#A67C2C" + brightBlue: "#3D8C8C" + brightMagenta: "#B17000" + brightCyan: "#7AA697" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "yellow" + hue: 262 + contrast: + fg: 95.7 + black: 0 + red: 29.9 + green: 45.1 + yellow: 32.2 + blue: 30.9 + magenta: 30.1 + cyan: 45.1 + white: 86.8 + brightBlack: 18.9 + brightRed: 29.9 + brightGreen: 45.1 + brightYellow: 32.2 + brightBlue: 30.9 + brightMagenta: 30.1 + brightCyan: 45.1 + brightWhite: 86.8 diff --git a/themes/sanded.yaml b/themes/sanded.yaml new file mode 100644 index 00000000..a397cff4 --- /dev/null +++ b/themes/sanded.yaml @@ -0,0 +1,49 @@ +name: "sanded" +source: + marketplace_id: "PaulBoelens.sanded" + version: "0.0.1" + installs: 314 + author: "Paul Boelens" + repo: "https://dev.azure.com/zerorain/_git/sanded" + url: "https://marketplace.visualstudio.com/items?itemName=PaulBoelens.sanded" +colors: + bg: "#FFF7E3" + fg: "#C9C9C9" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 24.4 + black: 101.5 + red: 69.4 + green: 44.7 + yellow: 53.4 + blue: 81.5 + magenta: 70 + cyan: 56 + white: 81.4 + brightBlack: 74.2 + brightRed: 69.4 + brightGreen: 36.4 + brightYellow: 36.4 + brightBlue: 81.5 + brightMagenta: 70 + brightCyan: 56 + brightWhite: 43.9 diff --git a/themes/sandstorm.yaml b/themes/sandstorm.yaml new file mode 100644 index 00000000..fe169a1a --- /dev/null +++ b/themes/sandstorm.yaml @@ -0,0 +1,49 @@ +name: "SandStorm" +source: + marketplace_id: "parano.theme-sandstorm" + version: "0.3.8" + installs: 429 + author: "parano" + repo: "https://github.com/parsa-ra/SandStorm-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=parano.theme-sandstorm" +colors: + bg: "#A3987A" + fg: "#212917" + black: "#073642" + red: "#DC322F" + green: "#304022" + yellow: "#9C7600" + blue: "#073D00" + magenta: "#D33682" + cyan: "#275000" + white: "#9B8C66" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#2A1111" + brightYellow: "#212917" + brightBlue: "#405759" + brightMagenta: "#6C71C4" + brightCyan: "#382424" + brightWhite: "#9B8C66" +meta: + mode: "light" + accent: "orange" + hue: 90 + contrast: + fg: 45.1 + black: 42.1 + red: 13.7 + green: 38.9 + yellow: 11.9 + blue: 41.1 + magenta: 13.4 + cyan: 34.6 + white: 0 + brightBlack: 44.8 + brightRed: 14.2 + brightGreen: 47.5 + brightYellow: 45.1 + brightBlue: 29.9 + brightMagenta: 13.4 + brightCyan: 44.4 + brightWhite: 0 diff --git a/themes/sanemi-shinazugawa.yaml b/themes/sanemi-shinazugawa.yaml new file mode 100644 index 00000000..033ee439 --- /dev/null +++ b/themes/sanemi-shinazugawa.yaml @@ -0,0 +1,49 @@ +name: "Sanemi Shinazugawa" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 738 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD5C5C" + green: "#006400" + yellow: "#B8860B" + blue: "#4682B4" + magenta: "#8B008B" + cyan: "#008B8B" + white: "#D3D3D3" + brightBlack: "#696969" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 66.5 + green: 85.1 + yellow: 59.6 + blue: 68 + magenta: 87 + cyan: 67.9 + white: 23.3 + brightBlack: 77.4 + brightRed: 64.1 + brightGreen: 17.1 + brightYellow: 0 + brightBlue: 85.8 + brightMagenta: 55.6 + brightCyan: 11.8 + brightWhite: 0 diff --git a/themes/sanrio.yaml b/themes/sanrio.yaml new file mode 100644 index 00000000..38189fcd --- /dev/null +++ b/themes/sanrio.yaml @@ -0,0 +1,49 @@ +name: "Sanrio" +source: + marketplace_id: "dango.cinnamoroll-dark-theme" + version: "1.1.1" + installs: 652 + author: "Daniel Radosa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dango.cinnamoroll-dark-theme" +colors: + bg: "#191919" + fg: "#FF7B7B" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 52.1 + black: 0 + red: 26.5 + green: 51.5 + yellow: 42.6 + blue: 14.8 + magenta: 25.9 + cyan: 39.9 + white: 14.9 + brightBlack: 21.8 + brightRed: 26.5 + brightGreen: 60.1 + brightYellow: 60.1 + brightBlue: 14.8 + brightMagenta: 25.9 + brightCyan: 39.9 + brightWhite: 52.3 diff --git a/themes/sapporo.yaml b/themes/sapporo.yaml new file mode 100644 index 00000000..c79988c8 --- /dev/null +++ b/themes/sapporo.yaml @@ -0,0 +1,49 @@ +name: "sapporo" +source: + marketplace_id: "Feefoolec.sapporo" + version: "0.0.1" + installs: 50 + author: "Feefoolec" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Feefoolec.sapporo" +colors: + bg: "#1C1C1F" + fg: "#ADADBA" + black: "#484858" + red: "#FFA1BE" + green: "#80DEC7" + yellow: "#FFBC9C" + blue: "#98CBFD" + magenta: "#B1A1FF" + cyan: "#5D99A3" + white: "#AFAFC0" + brightBlack: "#676779" + brightRed: "#FFD0D9" + brightGreen: "#B9F2E8" + brightYellow: "#F2D5A4" + brightBlue: "#B2E6FF" + brightMagenta: "#CEBCFF" + brightCyan: "#88D3E0" + brightWhite: "#BFDAF5" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 56.8 + black: 10.1 + red: 65.1 + green: 74.8 + yellow: 73.5 + blue: 70.6 + magenta: 56.7 + cyan: 40.9 + white: 58.1 + brightBlack: 22.5 + brightRed: 83.7 + brightGreen: 90.5 + brightYellow: 81.8 + brightBlue: 85.3 + brightMagenta: 70.4 + brightCyan: 71.3 + brightWhite: 80.6 diff --git a/themes/saransk-night.yaml b/themes/saransk-night.yaml new file mode 100644 index 00000000..a0f1b6a2 --- /dev/null +++ b/themes/saransk-night.yaml @@ -0,0 +1,49 @@ +name: "Saransk Night" +source: + marketplace_id: "AleksanderSavushkin.saransk-night" + version: "0.0.4" + installs: 85 + author: "Aleksander Savushkin" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AleksanderSavushkin.saransk-night" +colors: + bg: "#20293B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 76.8 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.1 + cyan: 44.9 + white: 87.4 + brightBlack: 19.4 + brightRed: 35.9 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.3 + brightMagenta: 42.7 + brightCyan: 52.7 + brightWhite: 87.4 diff --git a/themes/saraswati-cool-light-theme.yaml b/themes/saraswati-cool-light-theme.yaml new file mode 100644 index 00000000..b2be95f7 --- /dev/null +++ b/themes/saraswati-cool-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Saraswati - Cool Light Theme" +source: + marketplace_id: "BhootStudio.bhoot-theme" + version: "1.0.4" + installs: 78 + author: "Bhoot Studio" + repo: "https://github.com/DebkantaMondal/Bhoot-VS-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=BhootStudio.bhoot-theme" +colors: + bg: "#FDFDFD" + fg: "#1F1F1F" + black: "#212121" + red: "#FF5252" + green: "#69F0AE" + yellow: "#FFD740" + blue: "#40C4FF" + magenta: "#EA80FC" + cyan: "#18FFFF" + white: "#ECEFF1" + brightBlack: "#9E9E9E" + brightRed: "#FF1744" + brightGreen: "#00E676" + brightYellow: "#FFEA00" + brightBlue: "#2979FF" + brightMagenta: "#D500F9" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 102.2 + black: 101.9 + red: 56.7 + green: 19.2 + yellow: 17.8 + blue: 36.9 + magenta: 44.4 + cyan: 10.6 + white: 0 + brightBlack: 50.9 + brightRed: 62.3 + brightGreen: 27.4 + brightYellow: 10.1 + brightBlue: 65.3 + brightMagenta: 63.7 + brightCyan: 10.6 + brightWhite: 0 diff --git a/themes/sarcastic-white.yaml b/themes/sarcastic-white.yaml new file mode 100644 index 00000000..be7ec1f5 --- /dev/null +++ b/themes/sarcastic-white.yaml @@ -0,0 +1,49 @@ +name: "Sarcastic White" +source: + marketplace_id: "TristanWhite.sarcastic-white" + version: "1.0.7" + installs: 1311 + author: "Tristan White" + repo: "https://github.com/triss90/sarcastic_white" + url: "https://marketplace.visualstudio.com/items?itemName=TristanWhite.sarcastic-white" +colors: + bg: "#171423" + fg: "#D8DDE7" + black: "#3E4658" + red: "#D9534F" + green: "#4EBA88" + yellow: "#FFAD60" + blue: "#5E82AC" + magenta: "#987CD3" + cyan: "#94B7E1" + white: "#F1F6FE" + brightBlack: "#4E586F" + brightRed: "#E47875" + brightGreen: "#96CEB4" + brightYellow: "#FFEEAD" + brightBlue: "#759AC5" + brightMagenta: "#A696C8" + brightCyan: "#94D6E1" + brightWhite: "#FEFEFE" +meta: + mode: "dark" + accent: "orange" + hue: 293 + contrast: + fg: 84.9 + black: 9.6 + red: 34.6 + green: 53.8 + yellow: 67.3 + blue: 33.6 + magenta: 39.3 + cyan: 60.9 + white: 100.7 + brightBlack: 16.4 + brightRed: 46 + brightGreen: 68.9 + brightYellow: 95.8 + brightBlue: 45.3 + brightMagenta: 48.8 + brightCyan: 74.3 + brightWhite: 106.3 diff --git a/themes/sargam.yaml b/themes/sargam.yaml new file mode 100644 index 00000000..f099dc5d --- /dev/null +++ b/themes/sargam.yaml @@ -0,0 +1,49 @@ +name: "sargam" +source: + marketplace_id: "sargam.sargam" + version: "0.1.2" + installs: 74 + author: "sargam" + repo: "https://github.com/SargamDesign/sargam-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sargam.sargam" +colors: + bg: "#100F0F" + fg: "#E7E5DF" + black: "#72726E" + red: "#F55452" + green: "#3BB55F" + yellow: "#CDAD0E" + blue: "#33AEA8" + magenta: "#9F6CB7" + cyan: "#33AEA8" + white: "#E7E5DF" + brightBlack: "#72726E" + brightRed: "#F55452" + brightGreen: "#3BB55F" + brightYellow: "#CDAD0E" + brightBlue: "#33AEA8" + brightMagenta: "#9F6CB7" + brightCyan: "#33AEA8" + brightWhite: "#E7E5DF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 90.6 + black: 27.8 + red: 41.5 + green: 50.5 + yellow: 58.9 + blue: 49.4 + magenta: 34.5 + cyan: 49.4 + white: 90.6 + brightBlack: 27.8 + brightRed: 41.5 + brightGreen: 50.5 + brightYellow: 58.9 + brightBlue: 49.4 + brightMagenta: 34.5 + brightCyan: 49.4 + brightWhite: 90.6 diff --git a/themes/satoru-gojo-blue.yaml b/themes/satoru-gojo-blue.yaml new file mode 100644 index 00000000..f9cad09c --- /dev/null +++ b/themes/satoru-gojo-blue.yaml @@ -0,0 +1,49 @@ +name: "satoru-gojo-blue" +source: + marketplace_id: "dev-alm.satoru-gojo-theme" + version: "0.1.8" + installs: 1310 + author: "Gustavo Cezar de Almeida" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dev-alm.satoru-gojo-theme" +colors: + bg: "#000000" + fg: "#FFE300" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 89.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/satoru-gojo-white.yaml b/themes/satoru-gojo-white.yaml new file mode 100644 index 00000000..e0493dd3 --- /dev/null +++ b/themes/satoru-gojo-white.yaml @@ -0,0 +1,49 @@ +name: "satoru-gojo-white" +source: + marketplace_id: "dev-alm.satoru-gojo-theme" + version: "0.1.8" + installs: 1310 + author: "Gustavo Cezar de Almeida" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dev-alm.satoru-gojo-theme" +colors: + bg: "#000000" + fg: "#44FF00" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.2 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/satoshi-nakamoto-theme.yaml b/themes/satoshi-nakamoto-theme.yaml new file mode 100644 index 00000000..f1fdb2b8 --- /dev/null +++ b/themes/satoshi-nakamoto-theme.yaml @@ -0,0 +1,49 @@ +name: "Satoshi Nakamoto Theme" +source: + marketplace_id: "Michael-Macaulay.satoshi-nakamoto-theme" + version: "1.3.0" + installs: 1557 + author: "Michael Macaulay" + repo: "https://github.com/MichaelMacaulay/Satoshi-Nakamoto_Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Michael-Macaulay.satoshi-nakamoto-theme" +colors: + bg: "#0E0D1A" + fg: "#DDDFE9" + black: "#0E0D1A" + red: "#01D648" + green: "#329239" + yellow: "#F7931A" + blue: "#8C97EA" + magenta: "#F7931A" + cyan: "#C4CBFF" + white: "#FFFFFF" + brightBlack: "#5966CC" + brightRed: "#01D648" + brightGreen: "#329239" + brightYellow: "#F7931A" + brightBlue: "#8C97EA" + brightMagenta: "#F7931A" + brightCyan: "#C4CBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 287 + contrast: + fg: 87.1 + black: 0 + red: 65.2 + green: 34.7 + yellow: 56.9 + blue: 48.9 + magenta: 56.9 + cyan: 76.5 + white: 107.5 + brightBlack: 27 + brightRed: 65.2 + brightGreen: 34.7 + brightYellow: 56.9 + brightBlue: 48.9 + brightMagenta: 56.9 + brightCyan: 76.5 + brightWhite: 107.5 diff --git a/themes/satsoomahhh.yaml b/themes/satsoomahhh.yaml new file mode 100644 index 00000000..92567637 --- /dev/null +++ b/themes/satsoomahhh.yaml @@ -0,0 +1,49 @@ +name: "Satsoomahhh" +source: + marketplace_id: "booleohhh.satsoomahhh-theme" + version: "0.0.3" + installs: 87 + author: "booleohhh" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=booleohhh.satsoomahhh-theme" +colors: + bg: "#222222" + fg: "#ABB2BF" + black: "#000000" + red: "#CF2828" + green: "#0CB071" + yellow: "#C7C70E" + blue: "#2874C7" + magenta: "#DB2CDB" + cyan: "#1499BA" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#C26D6D" + brightGreen: "#4CECAC" + brightYellow: "#ECEC61" + brightBlue: "#5DA1EC" + brightMagenta: "#EC80EC" + brightCyan: "#4BC2E0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 58 + black: 0 + red: 24.9 + green: 46 + yellow: 66.7 + blue: 26.7 + magenta: 34.6 + cyan: 39 + white: 88.6 + brightBlack: 20.6 + brightRed: 35.1 + brightGreen: 77.4 + brightYellow: 89 + brightBlue: 47.3 + brightMagenta: 53.3 + brightCyan: 59.5 + brightWhite: 88.6 diff --git a/themes/satu.yaml b/themes/satu.yaml new file mode 100644 index 00000000..59d97bc8 --- /dev/null +++ b/themes/satu.yaml @@ -0,0 +1,49 @@ +name: "Satu" +source: + marketplace_id: "Docutheme.docutheme" + version: "0.0.2" + installs: 61 + author: "Docutheme" + repo: "https://github.com/feanra/docutheme" + url: "https://marketplace.visualstudio.com/items?itemName=Docutheme.docutheme" +colors: + bg: "#373741" + fg: "#81ECF3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 78 + black: 0 + red: 20.5 + green: 46.8 + yellow: 79.4 + blue: 21.2 + magenta: 23.5 + cyan: 41.3 + white: 83.8 + brightBlack: 15.8 + brightRed: 32.3 + brightGreen: 57.3 + brightYellow: 89.4 + brightBlue: 33.8 + brightMagenta: 39.1 + brightCyan: 49.2 + brightWhite: 83.8 diff --git a/themes/saturated-dark-terminal.yaml b/themes/saturated-dark-terminal.yaml new file mode 100644 index 00000000..f5ecceeb --- /dev/null +++ b/themes/saturated-dark-terminal.yaml @@ -0,0 +1,49 @@ +name: "Saturated Dark Terminal" +source: + marketplace_id: "Pukima.sd-terminal" + version: "0.0.3" + installs: 1247 + author: "Pukima" + repo: "https://github.com/Pukimaa/SDTerminal-vsc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Pukima.sd-terminal" +colors: + bg: "#000000" + fg: "#EEFFFF" + black: "#000000" + red: "#AA0000" + green: "#00AA00" + yellow: "#AA5500" + blue: "#0000AA" + magenta: "#AA00AA" + cyan: "#00AAAA" + white: "#AAAAAA" + brightBlack: "#555555" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.6 + black: 0 + red: 17.8 + green: 44.5 + yellow: 26.3 + blue: 0 + magenta: 22.5 + cyan: 47.6 + white: 56.2 + brightBlack: 16.1 + brightRed: 44.4 + brightGreen: 88.1 + brightYellow: 103.1 + brightBlue: 27.4 + brightMagenta: 51.9 + brightCyan: 93.4 + brightWhite: 107.9 diff --git a/themes/saturn-moonlight.yaml b/themes/saturn-moonlight.yaml new file mode 100644 index 00000000..5f053217 --- /dev/null +++ b/themes/saturn-moonlight.yaml @@ -0,0 +1,49 @@ +name: "Saturn Moonlight" +source: + marketplace_id: "ArturSponchiado.saturnmoonlight" + version: "0.0.2" + installs: 3888 + author: "Artur Sponchiado" + repo: "https://github.com/arturspon/SaturnMoonlight" + url: "https://marketplace.visualstudio.com/items?itemName=ArturSponchiado.saturnmoonlight" +colors: + bg: "#2B2E4A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 75.3 + black: 0 + red: 22.5 + green: 48.8 + yellow: 81.4 + blue: 23.3 + magenta: 25.6 + cyan: 43.4 + white: 85.8 + brightBlack: 17.9 + brightRed: 34.4 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.8 + brightMagenta: 41.2 + brightCyan: 51.2 + brightWhite: 85.8 diff --git a/themes/saturnblue-dark.yaml b/themes/saturnblue-dark.yaml new file mode 100644 index 00000000..8a7a07af --- /dev/null +++ b/themes/saturnblue-dark.yaml @@ -0,0 +1,49 @@ +name: "saturnblue-dark" +source: + marketplace_id: "saturn-darkblue.saturn-darkblue" + version: "0.0.1" + installs: 236 + author: "saturn-darkblue" + repo: "https://github.com/wesvm/vscode-saturn-darkblue" + url: "https://marketplace.visualstudio.com/items?itemName=saturn-darkblue.saturn-darkblue" +colors: + bg: "#0D1117" + fg: "#DDDDDD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 258 + contrast: + fg: 85.5 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/sauna-theme.yaml b/themes/sauna-theme.yaml new file mode 100644 index 00000000..c0562489 --- /dev/null +++ b/themes/sauna-theme.yaml @@ -0,0 +1,49 @@ +name: "Sauna Theme" +source: + marketplace_id: "sauna.sauna-theme" + version: "0.0.3" + installs: 975 + author: "sauna" + repo: "https://github.com/wearesauna/theme" + url: "https://marketplace.visualstudio.com/items?itemName=sauna.sauna-theme" +colors: + bg: "#151535" + fg: "#A5B6FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 63.5 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.7 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/saunf.yaml b/themes/saunf.yaml new file mode 100644 index 00000000..30af1c92 --- /dev/null +++ b/themes/saunf.yaml @@ -0,0 +1,49 @@ +name: "saunf" +source: + marketplace_id: "hnrchrdl.saunf-theme-vscode" + version: "0.1.2" + installs: 2687 + author: "hnrchrdl" + repo: "https://github.com/hnrchrdl/saunf-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=hnrchrdl.saunf-theme-vscode" +colors: + bg: "#2C3A47" + fg: "#FFFFFF" + black: "#2C3A47" + red: "#FC427B" + green: "#58B19F" + yellow: "#25CCF7" + blue: "#9AECDB" + magenta: "#FD7272" + cyan: "#55E6C1" + white: "#FFFFFF" + brightBlack: "#3B3B98" + brightRed: "#FC427B" + brightGreen: "#58B19F" + brightYellow: "#EAB543" + brightBlue: "#9AECDB" + brightMagenta: "#FD7272" + brightCyan: "#9AECDB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 247 + contrast: + fg: 100.4 + black: 0 + red: 34.3 + green: 44.6 + yellow: 59.4 + blue: 78.4 + magenta: 43 + cyan: 70.4 + white: 100.4 + brightBlack: 0 + brightRed: 34.3 + brightGreen: 44.6 + brightYellow: 59.7 + brightBlue: 78.4 + brightMagenta: 43 + brightCyan: 78.4 + brightWhite: 100.4 diff --git a/themes/sauve.yaml b/themes/sauve.yaml new file mode 100644 index 00000000..8b43e9b0 --- /dev/null +++ b/themes/sauve.yaml @@ -0,0 +1,49 @@ +name: "Sauve" +source: + marketplace_id: "chris-pikul.suave" + version: "0.0.1" + installs: 66 + author: "Chris Pikul" + repo: "https://github.com/chris-pikul/vscode-suave" + url: "https://marketplace.visualstudio.com/items?itemName=chris-pikul.suave" +colors: + bg: "#0A0A09" + fg: "#EEEEDF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 96 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/savannah-dawn.yaml b/themes/savannah-dawn.yaml new file mode 100644 index 00000000..166047c6 --- /dev/null +++ b/themes/savannah-dawn.yaml @@ -0,0 +1,49 @@ +name: "Savannah Dawn" +source: + marketplace_id: "TanakaChinengundu.savannah-code" + version: "1.0.0" + installs: 7 + author: "Tanaka Chinengundu" + repo: "https://github.com/taqsblaze/savannah-code" + url: "https://marketplace.visualstudio.com/items?itemName=TanakaChinengundu.savannah-code" +colors: + bg: "#F5EFE0" + fg: "#2E2416" + black: "#3A2E1C" + red: "#C84010" + green: "#4A7040" + yellow: "#C8762A" + blue: "#2A5068" + magenta: "#B07080" + cyan: "#4A8880" + white: "#8C7A60" + brightBlack: "#8C7050" + brightRed: "#E05018" + brightGreen: "#588157" + brightYellow: "#E0A458" + brightBlue: "#3A7090" + brightMagenta: "#C89090" + brightCyan: "#60A8A0" + brightWhite: "#2E2416" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.7 + black: 90.2 + red: 64.1 + green: 69.1 + yellow: 52.4 + blue: 80 + magenta: 56.3 + cyan: 58.7 + white: 59.2 + brightBlack: 62.7 + brightRed: 56.4 + brightGreen: 61.6 + brightYellow: 33.4 + brightBlue: 67.3 + brightMagenta: 42.6 + brightCyan: 43.8 + brightWhite: 92.7 diff --git a/themes/savannah-sunset.yaml b/themes/savannah-sunset.yaml new file mode 100644 index 00000000..67fdf89d --- /dev/null +++ b/themes/savannah-sunset.yaml @@ -0,0 +1,49 @@ +name: "Savannah Sunset" +source: + marketplace_id: "TanakaChinengundu.savannah-code" + version: "1.0.0" + installs: 7 + author: "Tanaka Chinengundu" + repo: "https://github.com/taqsblaze/savannah-code" + url: "https://marketplace.visualstudio.com/items?itemName=TanakaChinengundu.savannah-code" +colors: + bg: "#1C1A17" + fg: "#CFCFCF" + black: "#1C1A17" + red: "#E36414" + green: "#588157" + yellow: "#E0A458" + blue: "#3A5A74" + magenta: "#E5989B" + cyan: "#7DADA4" + white: "#CFCFCF" + brightBlack: "#4A3F35" + brightRed: "#F4623A" + brightGreen: "#A3B18A" + brightYellow: "#F4C883" + brightBlue: "#5D8AA8" + brightMagenta: "#F0B8BB" + brightCyan: "#A0CEC8" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 76.1 + black: 0 + red: 39.2 + green: 29.3 + yellow: 58 + blue: 15.5 + magenta: 56.4 + cyan: 51.5 + white: 76.1 + brightBlack: 7.4 + brightRed: 42.6 + brightGreen: 55.8 + brightYellow: 76 + brightBlue: 35.7 + brightMagenta: 70.8 + brightCyan: 70.2 + brightWhite: 94.8 diff --git a/themes/save-my-eyes.yaml b/themes/save-my-eyes.yaml new file mode 100644 index 00000000..4e1167cf --- /dev/null +++ b/themes/save-my-eyes.yaml @@ -0,0 +1,49 @@ +name: "Save My Eyes" +source: + marketplace_id: "ZaphodAndo.save-my-eyes" + version: "1.0.4" + installs: 1765 + author: "ZaphodAndo" + repo: "https://github.com/ZaphodAndo/save-my-eyes" + url: "https://marketplace.visualstudio.com/items?itemName=ZaphodAndo.save-my-eyes" +colors: + bg: "#2D2D2D" + fg: "#B3B9C5" + black: "#666666" + red: "#E3757F" + green: "#79DC91" + yellow: "#FFEA7F" + blue: "#64ADFE" + magenta: "#B8A1E0" + cyan: "#62CFCF" + white: "#FFFFFF" + brightBlack: "#777777" + brightRed: "#E3757F" + brightGreen: "#79DC91" + brightYellow: "#FFEA7F" + brightBlue: "#64ADFE" + brightMagenta: "#B8A1E0" + brightCyan: "#62CFCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 60 + black: 18.6 + red: 41.7 + green: 68.7 + yellow: 89.3 + blue: 51.6 + magenta: 52.7 + cyan: 63.5 + white: 103.4 + brightBlack: 26.1 + brightRed: 41.7 + brightGreen: 68.7 + brightYellow: 89.3 + brightBlue: 51.6 + brightMagenta: 52.7 + brightCyan: 63.5 + brightWhite: 103.4 diff --git a/themes/savetemin.yaml b/themes/savetemin.yaml new file mode 100644 index 00000000..486cd2ea --- /dev/null +++ b/themes/savetemin.yaml @@ -0,0 +1,49 @@ +name: "savetemin" +source: + marketplace_id: "ulisesbasualdo.savetemin" + version: "0.1.12" + installs: 23 + author: "Ulises Basualdo" + repo: "https://github.com/ulisesbasualdo/savetemin" + url: "https://marketplace.visualstudio.com/items?itemName=ulisesbasualdo.savetemin" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#001233" + red: "#FF3366" + green: "#33FF66" + yellow: "#FFCC00" + blue: "#0077FF" + magenta: "#FF00AA" + cyan: "#00DDFF" + white: "#C0C0FF" + brightBlack: "#DE70FF" + brightRed: "#FF0055" + brightGreen: "#77FF00" + brightYellow: "#FFFB00" + brightBlue: "#33AAFF" + brightMagenta: "#FF77FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFCAA" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 40.4 + green: 87.5 + yellow: 79.6 + blue: 34.2 + magenta: 40.9 + cyan: 75.2 + white: 71.8 + brightBlack: 50.6 + brightRed: 38.2 + brightGreen: 89.2 + brightYellow: 100.8 + brightBlue: 53 + brightMagenta: 58.4 + brightCyan: 94 + brightWhite: 103.2 diff --git a/themes/sazardev.yaml b/themes/sazardev.yaml new file mode 100644 index 00000000..3119fd41 --- /dev/null +++ b/themes/sazardev.yaml @@ -0,0 +1,49 @@ +name: "sazardev" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 903 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" +colors: + bg: "#0A0C0A" + fg: "#F5F5F5" + black: "#000000" + red: "#FF0055" + green: "#00FF88" + yellow: "#FFDD00" + blue: "#0088FF" + magenta: "#FF00DD" + cyan: "#00FFDD" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#FF3377" + brightGreen: "#33FFAA" + brightYellow: "#FFEE33" + brightBlue: "#3399FF" + brightMagenta: "#FF33EE" + brightCyan: "#33FFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.1 + black: 0 + red: 38 + green: 87.6 + yellow: 86.7 + blue: 39.6 + magenta: 43.6 + cyan: 90.3 + white: 107.7 + brightBlack: 0 + brightRed: 40.7 + brightGreen: 88.8 + brightYellow: 94.5 + brightBlue: 46.2 + brightMagenta: 46.5 + brightCyan: 91.5 + brightWhite: 107.7 diff --git a/themes/scarlet.yaml b/themes/scarlet.yaml new file mode 100644 index 00000000..56e62b4d --- /dev/null +++ b/themes/scarlet.yaml @@ -0,0 +1,49 @@ +name: "scarlet" +source: + marketplace_id: "Ethylia.scarlet-theme" + version: "0.5.4" + installs: 476 + author: "Ethylia" + repo: "https://github.com/Ethylia/vscode-scarlet-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Ethylia.scarlet-theme" +colors: + bg: "#151515" + fg: "#CDCDCD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75.4 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/sceanic-dark-gray.yaml b/themes/sceanic-dark-gray.yaml new file mode 100644 index 00000000..6aca30c5 --- /dev/null +++ b/themes/sceanic-dark-gray.yaml @@ -0,0 +1,49 @@ +name: "Sceanic - Dark Gray" +source: + marketplace_id: "TobiasTimm.sceanic" + version: "1.1.1" + installs: 1335 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/sceanic" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.sceanic" +colors: + bg: "#1E232E" + fg: "#CED4DE" + black: "#7F7F7F" + red: "#EC5F66" + green: "#99C794" + yellow: "#FFE2A9" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#CED4DE" + brightBlack: "#7F7F7F" + brightRed: "#EC5F66" + brightGreen: "#99C794" + brightYellow: "#FFE2A9" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#CED4DE" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 77.6 + black: 31.7 + red: 39.7 + green: 63.3 + yellow: 88.6 + blue: 42.6 + magenta: 50.5 + cyan: 51.5 + white: 77.6 + brightBlack: 31.7 + brightRed: 39.7 + brightGreen: 63.3 + brightYellow: 88.6 + brightBlue: 42.6 + brightMagenta: 50.5 + brightCyan: 51.5 + brightWhite: 77.6 diff --git a/themes/sceanic-gray.yaml b/themes/sceanic-gray.yaml new file mode 100644 index 00000000..96c21d2f --- /dev/null +++ b/themes/sceanic-gray.yaml @@ -0,0 +1,49 @@ +name: "Sceanic - Gray" +source: + marketplace_id: "TobiasTimm.sceanic" + version: "1.1.1" + installs: 1335 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/sceanic" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.sceanic" +colors: + bg: "#2B303B" + fg: "#CED4DE" + black: "#7F7F7F" + red: "#EC5F66" + green: "#99C794" + yellow: "#FFE2A9" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#CED4DE" + brightBlack: "#7F7F7F" + brightRed: "#EC5F66" + brightGreen: "#99C794" + brightYellow: "#FFE2A9" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#CED4DE" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 75.1 + black: 29.2 + red: 37.2 + green: 60.8 + yellow: 86.1 + blue: 40.1 + magenta: 47.9 + cyan: 48.9 + white: 75.1 + brightBlack: 29.2 + brightRed: 37.2 + brightGreen: 60.8 + brightYellow: 86.1 + brightBlue: 40.1 + brightMagenta: 47.9 + brightCyan: 48.9 + brightWhite: 75.1 diff --git a/themes/sceanic.yaml b/themes/sceanic.yaml new file mode 100644 index 00000000..38119be2 --- /dev/null +++ b/themes/sceanic.yaml @@ -0,0 +1,49 @@ +name: "Sceanic" +source: + marketplace_id: "TobiasTimm.sceanic" + version: "1.1.1" + installs: 1335 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/sceanic" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.sceanic" +colors: + bg: "#1A2A32" + fg: "#CED4DE" + black: "#7F7F7F" + red: "#EC5F66" + green: "#99C794" + yellow: "#FFE2A9" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#CED4DE" + brightBlack: "#7F7F7F" + brightRed: "#EC5F66" + brightGreen: "#99C794" + brightYellow: "#FFE2A9" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#CED4DE" +meta: + mode: "dark" + accent: "orange" + hue: 231 + contrast: + fg: 76.7 + black: 30.8 + red: 38.9 + green: 62.4 + yellow: 87.7 + blue: 41.7 + magenta: 49.6 + cyan: 50.6 + white: 76.7 + brightBlack: 30.8 + brightRed: 38.9 + brightGreen: 62.4 + brightYellow: 87.7 + brightBlue: 41.7 + brightMagenta: 49.6 + brightCyan: 50.6 + brightWhite: 76.7 diff --git a/themes/scepter.yaml b/themes/scepter.yaml new file mode 100644 index 00000000..28242c56 --- /dev/null +++ b/themes/scepter.yaml @@ -0,0 +1,49 @@ +name: "scepter" +source: + marketplace_id: "IsaacWilson.scepter" + version: "1.1.6" + installs: 4977 + author: "Isaac Wilson" + repo: "https://github.com/wisac/scepter-theme" + url: "https://marketplace.visualstudio.com/items?itemName=IsaacWilson.scepter" +colors: + bg: "#171C28" + fg: "#A2AABC" + black: "#2F3B54" + red: "#EF6B73" + green: "#BAE67E" + yellow: "#FFCC66" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#BAE67E" + brightYellow: "#FFCC66" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "orange" + hue: 267 + contrast: + fg: 54.5 + black: 0 + red: 44.2 + green: 81.3 + yellow: 78.7 + blue: 67.2 + magenta: 60.7 + cyan: 67.2 + white: 54.5 + brightBlack: 10.6 + brightRed: 44.2 + brightGreen: 81.3 + brightYellow: 78.7 + brightBlue: 67.2 + brightMagenta: 60.7 + brightCyan: 67.2 + brightWhite: 54.5 diff --git a/themes/schoero-dark.yaml b/themes/schoero-dark.yaml new file mode 100644 index 00000000..3fa90751 --- /dev/null +++ b/themes/schoero-dark.yaml @@ -0,0 +1,49 @@ +name: "schoero-dark" +source: + marketplace_id: "schoero.schoero-dark" + version: "0.4.9" + installs: 268 + author: "schoero" + repo: "https://github.com/schoero/schoero-dark" + url: "https://marketplace.visualstudio.com/items?itemName=schoero.schoero-dark" +colors: + bg: "#282C34" + fg: "#B1B6C1" + black: "#1E2127" + red: "#E06C75" + green: "#98C379" + yellow: "#D19A66" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#E07C75" + brightGreen: "#98C379" + brightYellow: "#D1A066" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#A9ABAE" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 58.6 + black: 0 + red: 38.9 + green: 59.1 + yellow: 49.5 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 56.2 + brightBlack: 17.4 + brightRed: 43 + brightGreen: 59.1 + brightYellow: 51.6 + brightBlue: 51.5 + brightMagenta: 41.9 + brightCyan: 51.4 + brightWhite: 52.5 diff --git a/themes/schooltheme.yaml b/themes/schooltheme.yaml new file mode 100644 index 00000000..71ee93ef --- /dev/null +++ b/themes/schooltheme.yaml @@ -0,0 +1,49 @@ +name: "SchoolTheme" +source: + marketplace_id: "SchoolTheme.SchoolTheme" + version: "0.0.2" + installs: 39 + author: "SchoolTheme" + repo: "https://github.com/joaov-fer/basictheme" + url: "https://marketplace.visualstudio.com/items?itemName=SchoolTheme.SchoolTheme" +colors: + bg: "#2C2525" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 18 + contrast: + fg: 77.3 + black: 0 + red: 24.5 + green: 50.8 + yellow: 83.4 + blue: 25.2 + magenta: 27.6 + cyan: 45.4 + white: 87.8 + brightBlack: 19.8 + brightRed: 36.4 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.8 + brightMagenta: 43.2 + brightCyan: 53.2 + brightWhite: 87.8 diff --git a/themes/schwifty-atom-one-dark.yaml b/themes/schwifty-atom-one-dark.yaml new file mode 100644 index 00000000..c7f1c1a8 --- /dev/null +++ b/themes/schwifty-atom-one-dark.yaml @@ -0,0 +1,49 @@ +name: "Schwifty Atom One Dark" +source: + marketplace_id: "decrypteddesign.Schwifty" + version: "1.5.0" + installs: 2933 + author: "decrypteddesign" + repo: "https://github.com/mcqua007/schwifty" + url: "https://marketplace.visualstudio.com/items?itemName=decrypteddesign.Schwifty" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#79C3C3" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#F73B87" + brightGreen: "#98C379" + brightYellow: "#D19A66" + brightBlue: "#7AC0FA" + brightMagenta: "#C678DD" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 51.5 + magenta: 41.9 + cyan: 59.1 + white: 87.4 + brightBlack: 12.3 + brightRed: 36 + brightGreen: 59.1 + brightYellow: 49.5 + brightBlue: 60.8 + brightMagenta: 41.9 + brightCyan: 64.6 + brightWhite: 79.8 diff --git a/themes/schwifty-purple-one-dark.yaml b/themes/schwifty-purple-one-dark.yaml new file mode 100644 index 00000000..9fe9148e --- /dev/null +++ b/themes/schwifty-purple-one-dark.yaml @@ -0,0 +1,49 @@ +name: "Schwifty Purple One Dark" +source: + marketplace_id: "decrypteddesign.Schwifty" + version: "1.5.0" + installs: 2933 + author: "decrypteddesign" + repo: "https://github.com/mcqua007/schwifty" + url: "https://marketplace.visualstudio.com/items?itemName=decrypteddesign.Schwifty" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#3F4451" + red: "#F86AA3" + green: "#2EC4B6" + yellow: "#E5C07B" + blue: "#56CBF9" + magenta: "#9BA2FF" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#F73B87" + brightGreen: "#37E6D5" + brightYellow: "#F9A571" + brightBlue: "#79D7FC" + brightMagenta: "#B1B6FC" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 44.9 + green: 55.8 + yellow: 67.4 + blue: 63.6 + magenta: 52 + cyan: 49.3 + white: 87.4 + brightBlack: 12.3 + brightRed: 36 + brightGreen: 73.6 + brightYellow: 60.4 + brightBlue: 71 + brightMagenta: 61.7 + brightCyan: 64.6 + brightWhite: 79.8 diff --git a/themes/schwifty.yaml b/themes/schwifty.yaml new file mode 100644 index 00000000..b436a4a5 --- /dev/null +++ b/themes/schwifty.yaml @@ -0,0 +1,49 @@ +name: "Schwifty" +source: + marketplace_id: "SimchaWood.schwifty" + version: "1.4.1" + installs: 448 + author: "Simcha York" + repo: "https://github.com/SimchaYork/schwifty" + url: "https://marketplace.visualstudio.com/items?itemName=SimchaWood.schwifty" +colors: + bg: "#1F262A" + fg: "#92B6C7" + black: "#050607" + red: "#AF4648" + green: "#277C29" + yellow: "#7D7E3E" + blue: "#304380" + magenta: "#7F3576" + cyan: "#006978" + white: "#6D8895" + brightBlack: "#313D43" + brightRed: "#FB6467" + brightGreen: "#4FF953" + brightYellow: "#FAFD7C" + brightBlue: "#6187FF" + brightMagenta: "#FE6BEC" + brightCyan: "#00DAFA" + brightWhite: "#B7E4F9" +meta: + mode: "dark" + accent: "green" + hue: 233 + contrast: + fg: 56.9 + black: 0 + red: 21.9 + green: 23.1 + yellow: 29.3 + blue: 8 + magenta: 12.5 + cyan: 17.8 + white: 33.7 + brightBlack: 0 + brightRed: 43.7 + brightGreen: 81.8 + brightYellow: 99 + brightBlue: 39.1 + brightMagenta: 51.4 + brightCyan: 70.5 + brightWhite: 83.2 diff --git a/themes/scooby-dooby-dark.yaml b/themes/scooby-dooby-dark.yaml new file mode 100644 index 00000000..1f4b4143 --- /dev/null +++ b/themes/scooby-dooby-dark.yaml @@ -0,0 +1,49 @@ +name: "scooby-dooby-dark" +source: + marketplace_id: "CristinaGenduso.scooby-dooby-dark" + version: "1.0.0" + installs: 100 + author: "Cristina Genduso" + repo: "https://github.com/cristinagenduso/scooby-dooby-dark" + url: "https://marketplace.visualstudio.com/items?itemName=CristinaGenduso.scooby-dooby-dark" +colors: + bg: "#0E0E0E" + fg: "#EBDBB2" + black: "#000000" + red: "#9A031E" + green: "#00CD5A" + yellow: "#E5E510" + blue: "#00B9EA" + magenta: "#BC3FBC" + cyan: "#00B0B0" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF3232" + brightGreen: "#00FD4B" + brightYellow: "#F5F543" + brightBlue: "#00E7FF" + brightMagenta: "#D670D6" + brightCyan: "#00FFCF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 85.1 + black: 0 + red: 14.3 + green: 61.1 + yellow: 86.3 + blue: 57.1 + magenta: 30.4 + cyan: 50.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 85.4 + brightYellow: 96.3 + brightBlue: 79.7 + brightMagenta: 46.1 + brightCyan: 89.6 + brightWhite: 90.7 diff --git a/themes/scorch-contrast.yaml b/themes/scorch-contrast.yaml new file mode 100644 index 00000000..26f7e1a9 --- /dev/null +++ b/themes/scorch-contrast.yaml @@ -0,0 +1,49 @@ +name: "scorch-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#160D0E" + fg: "#BAA0A2" + black: "#261618" + red: "#BA0E2E" + green: "#D39452" + yellow: "#BD4549" + blue: "#CF9E51" + magenta: "#F6EA82" + cyan: "#E77757" + white: "#C5AFB0" + brightBlack: "#563337" + brightRed: "#F03E5F" + brightGreen: "#E8C6A3" + brightYellow: "#D89093" + brightBlue: "#E5CBA1" + brightMagenta: "#FDFAE1" + brightCyan: "#F4BFB0" + brightWhite: "#E5DBDC" +meta: + mode: "dark" + accent: "orange" + hue: 11 + contrast: + fg: 53.7 + black: 0 + red: 21.1 + green: 51.2 + yellow: 26.9 + blue: 54 + magenta: 92.1 + cyan: 46.2 + white: 61.4 + brightBlack: 0 + brightRed: 37.4 + brightGreen: 75.1 + brightYellow: 52.2 + brightBlue: 76.7 + brightMagenta: 103.5 + brightCyan: 74.7 + brightWhite: 85.8 diff --git a/themes/scorch-light.yaml b/themes/scorch-light.yaml new file mode 100644 index 00000000..82fafcc3 --- /dev/null +++ b/themes/scorch-light.yaml @@ -0,0 +1,49 @@ +name: "scorch-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#F2EDED" + fg: "#514242" + black: "#FDFCFC" + red: "#BA0E2E" + green: "#D39452" + yellow: "#BD4549" + blue: "#CF9E51" + magenta: "#C6BB57" + cyan: "#E77757" + white: "#5F4D4D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#E8C6A3" + brightYellow: "#D89093" + brightBlue: "#E5CBA1" + brightMagenta: "#E0DAA3" + brightCyan: "#F4BFB0" + brightWhite: "#897070" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 82 + black: 0 + red: 70.3 + green: 40.3 + yellow: 64.3 + blue: 37.5 + magenta: 27.9 + cyan: 45.2 + white: 77.4 + brightBlack: 8.9 + brightRed: 53.8 + brightGreen: 17.4 + brightYellow: 39.3 + brightBlue: 15.9 + brightMagenta: 10.4 + brightCyan: 17.8 + brightWhite: 61.5 diff --git a/themes/scorch.yaml b/themes/scorch.yaml new file mode 100644 index 00000000..b0e7da14 --- /dev/null +++ b/themes/scorch.yaml @@ -0,0 +1,49 @@ +name: "scorch" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#392123" + fg: "#BAA0A2" + black: "#492A2D" + red: "#BA0E2E" + green: "#D39452" + yellow: "#BD4549" + blue: "#CF9E51" + magenta: "#F6EA82" + cyan: "#E77757" + white: "#C5AFB0" + brightBlack: "#7A464B" + brightRed: "#F03E5F" + brightGreen: "#E8C6A3" + brightYellow: "#D89093" + brightBlue: "#E5CBA1" + brightMagenta: "#FDFAE1" + brightCyan: "#F4BFB0" + brightWhite: "#E5DBDC" +meta: + mode: "dark" + accent: "orange" + hue: 14 + contrast: + fg: 50.7 + black: 0 + red: 18 + green: 48.1 + yellow: 23.9 + blue: 51 + magenta: 89 + cyan: 43.1 + white: 58.4 + brightBlack: 12.8 + brightRed: 34.3 + brightGreen: 72.1 + brightYellow: 49.2 + brightBlue: 73.7 + brightMagenta: 100.4 + brightCyan: 71.6 + brightWhite: 82.7 diff --git a/themes/scorpion-theme.yaml b/themes/scorpion-theme.yaml new file mode 100644 index 00000000..50778089 --- /dev/null +++ b/themes/scorpion-theme.yaml @@ -0,0 +1,49 @@ +name: "Scorpion Theme" +source: + marketplace_id: "TudorAlexandru.scorpion" + version: "1.0.6" + installs: 2416 + author: "Tudor Alexandru" + repo: "https://github.com/tudorale/scorpion-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TudorAlexandru.scorpion" +colors: + bg: "#222B4D" + fg: "#FFFFFF" + black: "#000000" + red: "#EC3A37" + green: "#3AD900" + yellow: "#BD56E3" + blue: "#BD56E3" + magenta: "#FF2C70" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#5C5C61" + brightRed: "#EC3A37" + brightGreen: "#3AD900" + brightYellow: "#BD56E3" + brightBlue: "#BD56E3" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 271 + contrast: + fg: 103.4 + black: 0 + red: 31.3 + green: 62.8 + yellow: 32.8 + blue: 32.8 + magenta: 35.6 + cyan: 89.3 + white: 103.4 + brightBlack: 14.5 + brightRed: 31.3 + brightGreen: 62.8 + brightYellow: 32.8 + brightBlue: 32.8 + brightMagenta: 60.8 + brightCyan: 89.3 + brightWhite: 103.4 diff --git a/themes/scuba.yaml b/themes/scuba.yaml new file mode 100644 index 00000000..4fa5a7b8 --- /dev/null +++ b/themes/scuba.yaml @@ -0,0 +1,49 @@ +name: "Scuba" +source: + marketplace_id: "AsqrB.scuba" + version: "1.1.1" + installs: 172 + author: "AsqrB" + repo: "https://github.com/AsqrB/ScubaTheme" + url: "https://marketplace.visualstudio.com/items?itemName=AsqrB.scuba" +colors: + bg: "#01051F" + fg: "#8592FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 265 + contrast: + fg: 48.2 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/sea-glass.yaml b/themes/sea-glass.yaml new file mode 100644 index 00000000..ebfb1301 --- /dev/null +++ b/themes/sea-glass.yaml @@ -0,0 +1,49 @@ +name: "Sea Glass" +source: + marketplace_id: "KyleStewart.sea-glass-color-theme" + version: "0.4.0" + installs: 4859 + author: "Kyle Stewart" + repo: "https://github.com/KStew1017/sea-glass-vscode-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=KyleStewart.sea-glass-color-theme" +colors: + bg: "#1D2021" + fg: "#EBDBB2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 83.3 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.3 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/sea-urchin.yaml b/themes/sea-urchin.yaml new file mode 100644 index 00000000..e7e5ea1f --- /dev/null +++ b/themes/sea-urchin.yaml @@ -0,0 +1,49 @@ +name: "Sea Urchin" +source: + marketplace_id: "anemones.anemone-colors" + version: "0.0.2" + installs: 378 + author: "anemones" + repo: "https://github.com/radio-alice/anemone-colors" + url: "https://marketplace.visualstudio.com/items?itemName=anemones.anemone-colors" +colors: + bg: "#150049" + fg: "#E6DCFF" + black: "#150049" + red: "#FF009C" + green: "#9BDABB" + yellow: "#FFF3C5" + blue: "#FFC8F5" + magenta: "#FF4AB9" + cyan: "#A2D2FF" + white: "#FFC8F5" + brightBlack: "#8C7EB1" + brightRed: "#FFA685" + brightGreen: "#A2D2FF" + brightYellow: "#FFF3C5" + brightBlue: "#E6DCFF" + brightMagenta: "#FF4AB9" + brightCyan: "#A2D2FF" + brightWhite: "#FFC8F5" +meta: + mode: "dark" + accent: "red" + hue: 283 + contrast: + fg: 87.1 + black: 0 + red: 39 + green: 74.7 + yellow: 98.5 + blue: 82.1 + magenta: 44.7 + cyan: 75 + white: 82.1 + brightBlack: 36.2 + brightRed: 65.2 + brightGreen: 75 + brightYellow: 98.5 + brightBlue: 87.1 + brightMagenta: 44.7 + brightCyan: 75 + brightWhite: 82.1 diff --git a/themes/seabrook-dark-italic.yaml b/themes/seabrook-dark-italic.yaml new file mode 100644 index 00000000..409e89c3 --- /dev/null +++ b/themes/seabrook-dark-italic.yaml @@ -0,0 +1,49 @@ +name: "Seabrook Dark - Italic" +source: + marketplace_id: "sortbyfirstname.seabrook" + version: "0.0.5" + installs: 393 + author: "sortbyfirstname" + repo: "https://github.com/sortbyfirstname/seabrook-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sortbyfirstname.seabrook" +colors: + bg: "#212529" + fg: "#DEE2E6" + black: "#000000" + red: "#FFADAD" + green: "#CAFFBF" + yellow: "#FDFFB6" + blue: "#A0C4FF" + magenta: "#BDB2FF" + cyan: "#9BF6FF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FFADAD" + brightGreen: "#CAFFBF" + brightYellow: "#FDFFB6" + brightBlue: "#A0C4FF" + brightMagenta: "#BDB2FF" + brightCyan: "#9BF6FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 86 + black: 0 + red: 67.3 + green: 95.8 + yellow: 101.9 + blue: 67.2 + magenta: 63.1 + cyan: 89.8 + white: 88.2 + brightBlack: 20.2 + brightRed: 67.3 + brightGreen: 95.8 + brightYellow: 101.9 + brightBlue: 67.2 + brightMagenta: 63.1 + brightCyan: 89.8 + brightWhite: 88.2 diff --git a/themes/seabrook-light-italic.yaml b/themes/seabrook-light-italic.yaml new file mode 100644 index 00000000..02b6a876 --- /dev/null +++ b/themes/seabrook-light-italic.yaml @@ -0,0 +1,49 @@ +name: "Seabrook Light - Italic" +source: + marketplace_id: "sortbyfirstname.seabrook" + version: "0.0.5" + installs: 393 + author: "sortbyfirstname" + repo: "https://github.com/sortbyfirstname/seabrook-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sortbyfirstname.seabrook" +colors: + bg: "#DEE2E6" + fg: "#212529" + black: "#000000" + red: "#F51818" + green: "#86B300" + yellow: "#E49A2B" + blue: "#399EE6" + magenta: "#A37ACC" + cyan: "#4CBF99" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F51818" + brightGreen: "#86B300" + brightYellow: "#E49A2B" + brightBlue: "#399EE6" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 85 + black: 88.6 + red: 48.9 + green: 31.1 + yellow: 28.6 + blue: 37.7 + magenta: 43.8 + cyan: 27.2 + white: 0 + brightBlack: 61.4 + brightRed: 48.9 + brightGreen: 31.1 + brightYellow: 28.6 + brightBlue: 37.7 + brightMagenta: 43.8 + brightCyan: 27.2 + brightWhite: 0 diff --git a/themes/seaci-darkbase.yaml b/themes/seaci-darkbase.yaml new file mode 100644 index 00000000..5a952e16 --- /dev/null +++ b/themes/seaci-darkbase.yaml @@ -0,0 +1,49 @@ +name: "Seaci Darkbase" +source: + marketplace_id: "seaci.seaci-theme" + version: "1.0.1" + installs: 183 + author: "seaci" + repo: "https://github.com/LeonCry/seaci-theme" + url: "https://marketplace.visualstudio.com/items?itemName=seaci.seaci-theme" +colors: + bg: "#181818" + fg: "#DDDDDD" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 84.9 + black: 0 + red: 44.7 + green: 52.2 + yellow: 73.8 + blue: 44.8 + magenta: 47.4 + cyan: 56.3 + white: 84.9 + brightBlack: 21.9 + brightRed: 52.6 + brightGreen: 60.8 + brightYellow: 83.4 + brightBlue: 53.1 + brightMagenta: 55.9 + brightCyan: 65.1 + brightWhite: 100.8 diff --git a/themes/seaci-shadow.yaml b/themes/seaci-shadow.yaml new file mode 100644 index 00000000..7814a9fb --- /dev/null +++ b/themes/seaci-shadow.yaml @@ -0,0 +1,49 @@ +name: "Seaci Shadow" +source: + marketplace_id: "seaci.seaci-theme" + version: "1.0.1" + installs: 183 + author: "seaci" + repo: "https://github.com/LeonCry/seaci-theme" + url: "https://marketplace.visualstudio.com/items?itemName=seaci.seaci-theme" +colors: + bg: "#262626" + fg: "#DDDDDD" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 82.9 + black: 0 + red: 42.7 + green: 50.2 + yellow: 71.8 + blue: 42.9 + magenta: 45.4 + cyan: 54.3 + white: 82.9 + brightBlack: 20 + brightRed: 50.6 + brightGreen: 58.8 + brightYellow: 81.4 + brightBlue: 51.2 + brightMagenta: 53.9 + brightCyan: 63.1 + brightWhite: 98.9 diff --git a/themes/seafarer.yaml b/themes/seafarer.yaml new file mode 100644 index 00000000..103812ab --- /dev/null +++ b/themes/seafarer.yaml @@ -0,0 +1,49 @@ +name: "Seafarer" +source: + marketplace_id: "lostVkng.seafarer-vscode" + version: "0.0.4" + installs: 355 + author: "TomJones" + repo: "https://gitlab.com/lostVkng/seafarer-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lostVkng.seafarer-vscode" +colors: + bg: "#1F2430" + fg: "#CED4DD" + black: "#191C25" + red: "#BA2828" + green: "#3EAD58" + yellow: "#C6B547" + blue: "#90B7DB" + magenta: "#7349A3" + cyan: "#5680AD" + white: "#CED4DD" + brightBlack: "#191C25" + brightRed: "#BA2828" + brightGreen: "#3EAD58" + brightYellow: "#C6B547" + brightBlue: "#90B7DB" + brightMagenta: "#7349A3" + brightCyan: "#5680AD" + brightWhite: "#CED4DD" +meta: + mode: "dark" + accent: "orange" + hue: 267 + contrast: + fg: 77.4 + black: 0 + red: 20 + green: 44.6 + yellow: 59 + blue: 58.3 + magenta: 17 + cyan: 30.6 + white: 77.4 + brightBlack: 0 + brightRed: 20 + brightGreen: 44.6 + brightYellow: 59 + brightBlue: 58.3 + brightMagenta: 17 + brightCyan: 30.6 + brightWhite: 77.4 diff --git a/themes/seafoam.yaml b/themes/seafoam.yaml new file mode 100644 index 00000000..9592f54f --- /dev/null +++ b/themes/seafoam.yaml @@ -0,0 +1,49 @@ +name: "Seafoam" +source: + marketplace_id: "ScottishPuffin.theme-sf" + version: "1.2.5" + installs: 134 + author: "ScottishPuffin" + repo: "https://github.com/WeeScottishPuffin/Seafoam" + url: "https://marketplace.visualstudio.com/items?itemName=ScottishPuffin.theme-sf" +colors: + bg: "#152526" + fg: "#D4E7D4" + black: "#757575" + red: "#825D4D" + green: "#728C62" + yellow: "#ADA16D" + blue: "#4D7B82" + magenta: "#8E7AB5" + cyan: "#729494" + white: "#E0E0E0" + brightBlack: "#8A8A8A" + brightRed: "#A07B6B" + brightGreen: "#90AA80" + brightYellow: "#CBBF8B" + brightBlue: "#6B99A0" + brightMagenta: "#AC98D3" + brightCyan: "#90B2B2" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "magenta" + hue: 201 + contrast: + fg: 86.5 + black: 27.1 + red: 20.4 + green: 34.4 + yellow: 48.7 + blue: 26.6 + magenta: 34.2 + cyan: 38.9 + white: 85.4 + brightBlack: 37.1 + brightRed: 33.8 + brightGreen: 49.6 + brightYellow: 65.3 + brightBlue: 40.8 + brightMagenta: 49.3 + brightCyan: 54.6 + brightWhite: 85.4 diff --git a/themes/seagull.yaml b/themes/seagull.yaml new file mode 100644 index 00000000..f25c241a --- /dev/null +++ b/themes/seagull.yaml @@ -0,0 +1,49 @@ +name: "seagull" +source: + marketplace_id: "bbrakenhoff.seabird" + version: "0.0.4" + installs: 754 + author: "bbrakenhoff" + repo: "https://github.com/bbrakenhoff/seabird-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=bbrakenhoff.seabird" +colors: + bg: "#FFFFFF" + fg: "#6D767D" + black: "#6D767D" + red: "#FF4053" + green: "#11AB00" + yellow: "#BF8C00" + blue: "#0099FF" + magenta: "#FF549B" + cyan: "#00A5AB" + white: "#FFFFFF" + brightBlack: "#6D767D" + brightRed: "#FF4053" + brightGreen: "#11AB00" + brightYellow: "#BF8C00" + brightBlue: "#0099FF" + brightMagenta: "#FF549B" + brightCyan: "#00A5AB" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 72.2 + black: 72.2 + red: 60.3 + green: 56.8 + yellow: 56.6 + blue: 55.9 + magenta: 55.6 + cyan: 56.2 + white: 0 + brightBlack: 72.2 + brightRed: 60.3 + brightGreen: 56.8 + brightYellow: 56.6 + brightBlue: 55.9 + brightMagenta: 55.6 + brightCyan: 56.2 + brightWhite: 0 diff --git a/themes/secret-spring.yaml b/themes/secret-spring.yaml new file mode 100644 index 00000000..e8992936 --- /dev/null +++ b/themes/secret-spring.yaml @@ -0,0 +1,49 @@ +name: "Secret Spring" +source: + marketplace_id: "wildtype.secretspring" + version: "0.0.5" + installs: 65 + author: "wildtype" + repo: "https://github.com/wtype/secretspring" + url: "https://marketplace.visualstudio.com/items?itemName=wildtype.secretspring" +colors: + bg: "#11161F" + fg: "#D5E6F6" + black: "#11161F" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#70A7F5" + magenta: "#9FD7FF" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#70A7F5" + brightMagenta: "#9FD7FF" + brightCyan: "#DCE2B5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 262 + contrast: + fg: 89.3 + black: 0 + red: 39.4 + green: 67.4 + yellow: 82.2 + blue: 52.9 + magenta: 77.3 + cyan: 59.8 + white: 107 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.4 + brightYellow: 93.8 + brightBlue: 52.9 + brightMagenta: 77.3 + brightCyan: 85.7 + brightWhite: 107 diff --git a/themes/secunda.yaml b/themes/secunda.yaml new file mode 100644 index 00000000..f7c8e9d1 --- /dev/null +++ b/themes/secunda.yaml @@ -0,0 +1,49 @@ +name: "Secunda" +source: + marketplace_id: "ruj.secunda" + version: "1.4.0" + installs: 437 + author: "Rodger Jordas" + repo: "https://github.com/rmjordas/secunda" + url: "https://marketplace.visualstudio.com/items?itemName=ruj.secunda" +colors: + bg: "#26292C" + fg: "#DDDDDD" + black: "#3F3F3F" + red: "#705050" + green: "#60B48A" + yellow: "#DFAF8F" + blue: "#163063" + magenta: "#DC8CC3" + cyan: "#8CD0D3" + white: "#DCDCDC" + brightBlack: "#709080" + brightRed: "#DCA3A3" + brightGreen: "#72D5A3" + brightYellow: "#F0DFAF" + brightBlue: "#94BFF3" + brightMagenta: "#EC93D3" + brightCyan: "#93E0E3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 82.5 + black: 0 + red: 13.8 + green: 49.5 + yellow: 60.9 + blue: 0 + magenta: 50.5 + cyan: 67.7 + white: 81.8 + brightBlack: 35.5 + brightRed: 56.7 + brightGreen: 66.3 + brightYellow: 84.2 + brightBlue: 62.6 + brightMagenta: 56.2 + brightCyan: 76.4 + brightWhite: 104.3 diff --git a/themes/secuoyas-code.yaml b/themes/secuoyas-code.yaml new file mode 100644 index 00000000..122810a6 --- /dev/null +++ b/themes/secuoyas-code.yaml @@ -0,0 +1,49 @@ +name: "Secuoyas Code" +source: + marketplace_id: "Secuoyas.secuoyas-code" + version: "0.3.1" + installs: 1781 + author: "Secuoyas" + repo: "https://github.com/Secuoyas-Experience/secuoyas-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Secuoyas.secuoyas-code" +colors: + bg: "#101010" + fg: "#ACB5C3" + black: "#2C2E32" + red: "#FA0067" + green: "#13C887" + yellow: "#F9D310" + blue: "#3CC3DD" + magenta: "#A950CF" + cyan: "#AE926F" + white: "#E9EAEC" + brightBlack: "#393C41" + brightRed: "#FF4893" + brightGreen: "#19E99E" + brightYellow: "#FBE15C" + brightBlue: "#545C63" + brightMagenta: "#7D8BA1" + brightCyan: "#BEA382" + brightWhite: "#DEE0E2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 61.5 + black: 0 + red: 36.9 + green: 59.6 + yellow: 81.1 + blue: 61.3 + magenta: 31.1 + cyan: 45.5 + white: 93.7 + brightBlack: 0 + brightRed: 43.6 + brightGreen: 76.5 + brightYellow: 88.1 + brightBlue: 18 + brightMagenta: 39.2 + brightCyan: 54.3 + brightWhite: 87.3 diff --git a/themes/sedona.yaml b/themes/sedona.yaml new file mode 100644 index 00000000..b717f17f --- /dev/null +++ b/themes/sedona.yaml @@ -0,0 +1,49 @@ +name: "Sedona" +source: + marketplace_id: "interactiveRob.sedona" + version: "0.2.5" + installs: 3143 + author: "interactiveRob" + repo: "https://github.com/interactiveRob/sedona-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=interactiveRob.sedona" +colors: + bg: "#1F1C39" + fg: "#D4D4D4" + black: "#131124" + red: "#CB43C6" + green: "#62E884" + yellow: "#E7EE98" + blue: "#BF9EEE" + magenta: "#F286C4" + cyan: "#97E1F1" + white: "#F6F6F4" + brightBlack: "#7B7F8B" + brightRed: "#F07C7C" + brightGreen: "#78F09A" + brightYellow: "#F6F6AE" + brightBlue: "#D6B4F7" + brightMagenta: "#F49DDA" + brightCyan: "#ADF6F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 78.4 + black: 0 + red: 32.6 + green: 75.3 + yellow: 90.6 + blue: 55.8 + magenta: 54.2 + cyan: 79.3 + white: 99.7 + brightBlack: 32.2 + brightRed: 48.4 + brightGreen: 81.1 + brightYellow: 97.1 + brightBlue: 67.4 + brightMagenta: 62.6 + brightCyan: 91.5 + brightWhite: 105.8 diff --git a/themes/seed7-tokyo-night-dark.yaml b/themes/seed7-tokyo-night-dark.yaml new file mode 100644 index 00000000..d6ea9e3b --- /dev/null +++ b/themes/seed7-tokyo-night-dark.yaml @@ -0,0 +1,49 @@ +name: "Seed7 Tokyo Night Dark" +source: + marketplace_id: "YehudaGurovich.seed7-language-support" + version: "0.1.3" + installs: 48 + author: "Yehuda Gurovich" + repo: "https://github.com/YehudaGurovich/seed7-language-support" + url: "https://marketplace.visualstudio.com/items?itemName=YehudaGurovich.seed7-language-support" +colors: + bg: "#1A1A1A" + fg: "#C5C5C5" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 70.2 + black: 0 + red: 49.6 + green: 46 + yellow: 62.4 + blue: 51.4 + magenta: 55.2 + cyan: 70.7 + white: 32.3 + brightBlack: 0 + brightRed: 49.6 + brightGreen: 46 + brightYellow: 62.4 + brightBlue: 51.4 + brightMagenta: 55.2 + brightCyan: 70.7 + brightWhite: 59.2 diff --git a/themes/seekode-light.yaml b/themes/seekode-light.yaml new file mode 100644 index 00000000..834da465 --- /dev/null +++ b/themes/seekode-light.yaml @@ -0,0 +1,49 @@ +name: "seekode light" +source: + marketplace_id: "seekode-official.seekode-new-theme" + version: "1.0.0" + installs: 186 + author: "seekode-official" + repo: "https://github.com/seekode/seekode-vsc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=seekode-official.seekode-new-theme" +colors: + bg: "#ECEFF4" + fg: "#212121" + black: "#333333" + red: "#D32F2F" + green: "#77CC00" + yellow: "#F29718" + blue: "#E0E0E0" + magenta: "#9966CC" + cyan: "#4DBF99" + white: "#C7C7C7" + brightBlack: "#A1A1A1" + brightRed: "#D6656A" + brightGreen: "#A3D900" + brightYellow: "#E7C547" + brightBlue: "#6871FF" + brightMagenta: "#A37ACC" + brightCyan: "#57D9AD" + brightWhite: "#7E7E7E" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 93.4 + black: 89 + red: 63.2 + green: 29.1 + yellow: 34.9 + blue: 0 + magenta: 58.2 + cyan: 34.9 + white: 20.4 + brightBlack: 40.9 + brightRed: 52.8 + brightGreen: 19.9 + brightYellow: 20 + brightBlue: 56.3 + brightMagenta: 51.5 + brightCyan: 22.2 + brightWhite: 58.2 diff --git a/themes/selene-selenized-dark.yaml b/themes/selene-selenized-dark.yaml new file mode 100644 index 00000000..06556c9c --- /dev/null +++ b/themes/selene-selenized-dark.yaml @@ -0,0 +1,49 @@ +name: "Selene Selenized Dark" +source: + marketplace_id: "santoso-wijaya.helios-selene" + version: "0.3.18" + installs: 3053 + author: "Santoso Wijaya" + repo: "https://github.com/santoso-wijaya/vscode-helios-selene" + url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" +colors: + bg: "#053D48" + fg: "#C8D7D8" + black: "#0E4956" + red: "#FD564E" + green: "#80B83C" + yellow: "#E3B230" + blue: "#0096F5" + magenta: "#F176BD" + cyan: "#39C7B9" + white: "#ADBCBC" + brightBlack: "#053D48" + brightRed: "#F38649" + brightGreen: "#80B83C" + brightYellow: "#E3B230" + brightBlue: "#0096F5" + brightMagenta: "#A58CEC" + brightCyan: "#0096F5" + brightWhite: "#C8D7D8" +meta: + mode: "dark" + accent: "orange" + hue: 215 + contrast: + fg: 73.1 + black: 0 + red: 36.6 + green: 48 + yellow: 57.3 + blue: 36.6 + magenta: 44.2 + cyan: 54.4 + white: 57.2 + brightBlack: 0 + brightRed: 45.5 + brightGreen: 48 + brightYellow: 57.3 + brightBlue: 36.6 + brightMagenta: 41 + brightCyan: 36.6 + brightWhite: 73.1 diff --git a/themes/selene-selenized-light.yaml b/themes/selene-selenized-light.yaml new file mode 100644 index 00000000..d09afd76 --- /dev/null +++ b/themes/selene-selenized-light.yaml @@ -0,0 +1,49 @@ +name: "Selene Selenized Light" +source: + marketplace_id: "santoso-wijaya.helios-selene" + version: "0.3.18" + installs: 3053 + author: "Santoso Wijaya" + repo: "https://github.com/santoso-wijaya/vscode-helios-selene" + url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" +colors: + bg: "#FEF3DA" + fg: "#384C52" + black: "#F0E4CC" + red: "#D4212B" + green: "#539100" + yellow: "#B38800" + blue: "#0073D2" + magenta: "#CB4C99" + cyan: "#009C8F" + white: "#52666D" + brightBlack: "#FEF3DA" + brightRed: "#C75D20" + brightGreen: "#539100" + brightYellow: "#B38800" + brightBlue: "#0073D2" + brightMagenta: "#7D64C5" + brightCyan: "#0073D2" + brightWhite: "#384C52" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 84 + black: 0 + red: 67 + green: 59.2 + yellow: 53 + blue: 65.8 + magenta: 61.2 + cyan: 54.3 + white: 73.4 + brightBlack: 0 + brightRed: 61.5 + brightGreen: 59.2 + brightYellow: 53 + brightBlue: 65.8 + brightMagenta: 65.5 + brightCyan: 65.8 + brightWhite: 84 diff --git a/themes/selenitic-color-theme.yaml b/themes/selenitic-color-theme.yaml new file mode 100644 index 00000000..2a71b6e3 --- /dev/null +++ b/themes/selenitic-color-theme.yaml @@ -0,0 +1,49 @@ +name: "selenitic-color-theme" +source: + marketplace_id: "fopitz.theme-selenitic" + version: "0.1.0" + installs: 951 + author: "Forrest Pitz" + repo: "https://forrestpitz.visualstudio.com/_git/Seleitic%20Theme" + url: "https://marketplace.visualstudio.com/items?itemName=fopitz.theme-selenitic" +colors: + bg: "#333333" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#EFC986" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 97.1 + black: 0 + red: 19.8 + green: 48.2 + yellow: 52.8 + blue: 29.8 + magenta: 27.4 + cyan: 45.6 + white: 83.6 + brightBlack: 17.2 + brightRed: 71.2 + brightGreen: 72.1 + brightYellow: 79.1 + brightBlue: 45 + brightMagenta: 41.7 + brightCyan: 68.6 + brightWhite: 97.1 diff --git a/themes/sema.yaml b/themes/sema.yaml new file mode 100644 index 00000000..9241df3b --- /dev/null +++ b/themes/sema.yaml @@ -0,0 +1,49 @@ +name: "sema" +source: + marketplace_id: "arzg.sema" + version: "1.12.1" + installs: 4718 + author: "arzg" + repo: "https://github.com/arzg/sema" + url: "https://marketplace.visualstudio.com/items?itemName=arzg.sema" +colors: + bg: "#0F0F0F" + fg: "#D6D6D6" + black: "#222222" + red: "#F7A597" + green: "#CFE8B7" + yellow: "#E1E0C8" + blue: "#75CAF2" + magenta: "#F1D6DD" + cyan: "#DBDCF3" + white: "#D6D6D6" + brightBlack: "#949494" + brightRed: "#F7A597" + brightGreen: "#D7E3CD" + brightYellow: "#E1E0C8" + brightBlue: "#CCE1F1" + brightMagenta: "#F1D6DD" + brightCyan: "#DBDCF3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 81.3 + black: 0 + red: 64.8 + green: 87.4 + yellow: 86.6 + blue: 68.2 + magenta: 85.4 + cyan: 86 + white: 81.3 + brightBlack: 44.2 + brightRed: 64.8 + brightGreen: 86.9 + brightYellow: 86.6 + brightBlue: 86.3 + brightMagenta: 85.4 + brightCyan: 86 + brightWhite: 107.5 diff --git a/themes/semantic-noctis-lux.yaml b/themes/semantic-noctis-lux.yaml new file mode 100644 index 00000000..80eb6370 --- /dev/null +++ b/themes/semantic-noctis-lux.yaml @@ -0,0 +1,49 @@ +name: "Semantic Noctis Lux" +source: + marketplace_id: "jnooree.semantic-noctis" + version: "1.3.3" + installs: 2741 + author: "Nuri Jung" + repo: "https://github.com/jnooree/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=jnooree.semantic-noctis" +colors: + bg: "#FEF9F0" + fg: "#004D57" + black: "#003B42" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#518A90" + brightRed: "#FF4000" + brightGreen: "#00D17A" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 88.3 + black: 94.3 + red: 62.1 + green: 49 + yellow: 40.8 + blue: 55.5 + magenta: 52.2 + cyan: 40.8 + white: 47.2 + brightBlack: 63 + brightRed: 57.6 + brightGreen: 35.1 + brightYellow: 42.1 + brightBlue: 48.8 + brightMagenta: 47.9 + brightCyan: 33.8 + brightWhite: 29.9 diff --git a/themes/semi-dark-theme-in-yellow.yaml b/themes/semi-dark-theme-in-yellow.yaml new file mode 100644 index 00000000..c9975bfe --- /dev/null +++ b/themes/semi-dark-theme-in-yellow.yaml @@ -0,0 +1,49 @@ +name: "semi dark theme in yellow" +source: + marketplace_id: "moondevaa.Semi-dark-theme-in-yellow" + version: "0.2.4" + installs: 2844 + author: "moondevaa" + repo: "https://github.com/AaBbdev29/semi-dark-theme-in-yellow" + url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.Semi-dark-theme-in-yellow" +colors: + bg: "#414143" + fg: "#98DBE8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 68.1 + black: 10.3 + red: 17.6 + green: 43.9 + yellow: 76.5 + blue: 18.3 + magenta: 20.6 + cyan: 38.4 + white: 80.9 + brightBlack: 12.9 + brightRed: 29.4 + brightGreen: 54.4 + brightYellow: 86.5 + brightBlue: 30.9 + brightMagenta: 36.2 + brightCyan: 46.3 + brightWhite: 80.9 diff --git a/themes/senerdark-pro-blue-gray.yaml b/themes/senerdark-pro-blue-gray.yaml new file mode 100644 index 00000000..3b339c57 --- /dev/null +++ b/themes/senerdark-pro-blue-gray.yaml @@ -0,0 +1,49 @@ +name: "SenerDark Pro – Blue-Gray" +source: + marketplace_id: "seneryty.senerdark" + version: "0.0.2" + installs: 25 + author: "seneryty" + repo: "https://github.com/SENERYTY-DEV/seneryty" + url: "https://marketplace.visualstudio.com/items?itemName=seneryty.senerdark" +colors: + bg: "#11171D" + fg: "#C9D1D9" + black: "#484F58" + red: "#FFA198" + green: "#7EE787" + yellow: "#FFA657" + blue: "#79C0FF" + magenta: "#FF7B72" + cyan: "#A5D6FF" + white: "#C9D1D9" + brightBlack: "#484F58" + brightRed: "#FFA198" + brightGreen: "#7EE787" + brightYellow: "#FFA657" + brightBlue: "#79C0FF" + brightMagenta: "#FF7B72" + brightCyan: "#A5D6FF" + brightWhite: "#C9D1D9" +meta: + mode: "dark" + accent: "green" + hue: 249 + contrast: + fg: 77.1 + black: 12.6 + red: 64.4 + green: 77.6 + yellow: 64.6 + blue: 64.3 + magenta: 52.1 + cyan: 77.4 + white: 77.1 + brightBlack: 12.6 + brightRed: 64.4 + brightGreen: 77.6 + brightYellow: 64.6 + brightBlue: 64.3 + brightMagenta: 52.1 + brightCyan: 77.4 + brightWhite: 77.1 diff --git a/themes/senerdark-pro-deep-gray.yaml b/themes/senerdark-pro-deep-gray.yaml new file mode 100644 index 00000000..1b5b4301 --- /dev/null +++ b/themes/senerdark-pro-deep-gray.yaml @@ -0,0 +1,49 @@ +name: "SenerDark Pro – Deep Gray" +source: + marketplace_id: "seneryty.senerdark" + version: "0.0.2" + installs: 25 + author: "seneryty" + repo: "https://github.com/SENERYTY-DEV/seneryty" + url: "https://marketplace.visualstudio.com/items?itemName=seneryty.senerdark" +colors: + bg: "#1E1E1E" + fg: "#E8E8E8" + black: "#333333" + red: "#FFA198" + green: "#7EE787" + yellow: "#FFA657" + blue: "#79C0FF" + magenta: "#FF7B72" + cyan: "#A5D6FF" + white: "#E8E8E8" + brightBlack: "#333333" + brightRed: "#FFA198" + brightGreen: "#7EE787" + brightYellow: "#FFA657" + brightBlue: "#79C0FF" + brightMagenta: "#FF7B72" + brightCyan: "#A5D6FF" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 91.1 + black: 0 + red: 63.5 + green: 76.7 + yellow: 63.7 + blue: 63.4 + magenta: 51.2 + cyan: 76.5 + white: 91.1 + brightBlack: 0 + brightRed: 63.5 + brightGreen: 76.7 + brightYellow: 63.7 + brightBlue: 63.4 + brightMagenta: 51.2 + brightCyan: 76.5 + brightWhite: 91.1 diff --git a/themes/senkorange.yaml b/themes/senkorange.yaml new file mode 100644 index 00000000..e87a6fb8 --- /dev/null +++ b/themes/senkorange.yaml @@ -0,0 +1,49 @@ +name: "Senkorange" +source: + marketplace_id: "Michii.senkorange" + version: "1.0.0" + installs: 71 + author: "Michii" + repo: "https://github.com/hi-doki/Senkorange" + url: "https://marketplace.visualstudio.com/items?itemName=Michii.senkorange" +colors: + bg: "#2B251E" + fg: "#FEFAE6" + black: "#2B251E" + red: "#FF6B6B" + green: "#98D982" + yellow: "#F8C860" + blue: "#74C0FC" + magenta: "#F06292" + cyan: "#4DD0E1" + white: "#FEFAE6" + brightBlack: "#6B5D47" + brightRed: "#FF8A80" + brightGreen: "#C8E6C9" + brightYellow: "#FAE57B" + brightBlue: "#90CAF9" + brightMagenta: "#F8BBD9" + brightCyan: "#84FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 71 + contrast: + fg: 101.2 + black: 0 + red: 46 + green: 70.5 + yellow: 74.3 + blue: 61.6 + magenta: 42 + cyan: 65.3 + white: 101.2 + brightBlack: 17 + brightRed: 54.4 + brightGreen: 83.6 + brightYellow: 87.6 + brightBlue: 67.8 + brightMagenta: 72.8 + brightCyan: 92.4 + brightWhite: 104.8 diff --git a/themes/senna-dark-black-theme.yaml b/themes/senna-dark-black-theme.yaml new file mode 100644 index 00000000..5dc37fc8 --- /dev/null +++ b/themes/senna-dark-black-theme.yaml @@ -0,0 +1,49 @@ +name: "Senna Dark Black Theme" +source: + marketplace_id: "vitorvxj.senna-theme" + version: "1.0.3" + installs: 116 + author: "XJ" + repo: "https://github.com/vitorvxj/Senna-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=vitorvxj.senna-theme" +colors: + bg: "#131313" + fg: "#24FFEA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 90.6 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/seoul-dancheong.yaml b/themes/seoul-dancheong.yaml new file mode 100644 index 00000000..9dbbfde0 --- /dev/null +++ b/themes/seoul-dancheong.yaml @@ -0,0 +1,49 @@ +name: "Seoul Dancheong" +source: + marketplace_id: "lovema-kr.theme-seoul" + version: "0.1.6" + installs: 35 + author: "Hue" + repo: "https://github.com/hue-lovemakr/lovema-kr" + url: "https://marketplace.visualstudio.com/items?itemName=lovema-kr.theme-seoul" +colors: + bg: "#262F2B" + fg: "#D8C8B2" + black: "#1D1E23" + red: "#C4003B" + green: "#237A4E" + yellow: "#FFC454" + blue: "#0B6DB7" + magenta: "#BA4160" + cyan: "#5EB3FF" + white: "#EDF2F5" + brightBlack: "#1D1E23" + brightRed: "#C4003B" + brightGreen: "#237A4E" + brightYellow: "#FFC454" + brightBlue: "#0B6DB7" + brightMagenta: "#BA4160" + brightCyan: "#5EB3FF" + brightWhite: "#EDF2F5" +meta: + mode: "dark" + accent: "orange" + hue: 167 + contrast: + fg: 70.1 + black: 0 + red: 19.3 + green: 21.3 + yellow: 72.3 + blue: 20.9 + magenta: 22.2 + cyan: 53.8 + white: 94.4 + brightBlack: 0 + brightRed: 19.3 + brightGreen: 21.3 + brightYellow: 72.3 + brightBlue: 20.9 + brightMagenta: 22.2 + brightCyan: 53.8 + brightWhite: 94.4 diff --git a/themes/seoul-morning.yaml b/themes/seoul-morning.yaml new file mode 100644 index 00000000..6d03a868 --- /dev/null +++ b/themes/seoul-morning.yaml @@ -0,0 +1,49 @@ +name: "Seoul Morning" +source: + marketplace_id: "lovema-kr.theme-seoul" + version: "0.1.6" + installs: 35 + author: "Hue" + repo: "https://github.com/hue-lovemakr/lovema-kr" + url: "https://marketplace.visualstudio.com/items?itemName=lovema-kr.theme-seoul" +colors: + bg: "#FCFCFC" + fg: "#2F3E37" + black: "#1D1E23" + red: "#C23352" + green: "#237A4E" + yellow: "#D6B038" + blue: "#0B6DB7" + magenta: "#BA4160" + cyan: "#5EB3FF" + white: "#A4AAA7" + brightBlack: "#1D1E23" + brightRed: "#C23352" + brightGreen: "#237A4E" + brightYellow: "#D6B038" + brightBlue: "#0B6DB7" + brightMagenta: "#BA4160" + brightCyan: "#5EB3FF" + brightWhite: "#A4AAA7" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 94.2 + black: 101.8 + red: 73.9 + green: 74.2 + yellow: 38.5 + blue: 74.5 + magenta: 73.3 + cyan: 42.1 + white: 44.8 + brightBlack: 101.8 + brightRed: 73.9 + brightGreen: 74.2 + brightYellow: 38.5 + brightBlue: 74.5 + brightMagenta: 73.3 + brightCyan: 42.1 + brightWhite: 44.8 diff --git a/themes/seoul-night.yaml b/themes/seoul-night.yaml new file mode 100644 index 00000000..29d5ecec --- /dev/null +++ b/themes/seoul-night.yaml @@ -0,0 +1,49 @@ +name: "Seoul Night" +source: + marketplace_id: "lovema-kr.theme-seoul" + version: "0.1.6" + installs: 35 + author: "Hue" + repo: "https://github.com/hue-lovemakr/lovema-kr" + url: "https://marketplace.visualstudio.com/items?itemName=lovema-kr.theme-seoul" +colors: + bg: "#1D1E23" + fg: "#D8C8B2" + black: "#1D1E23" + red: "#E16350" + green: "#72C6A5" + yellow: "#F7B938" + blue: "#448CCB" + magenta: "#8E6F80" + cyan: "#5AC6D0" + white: "#FFFFFF" + brightBlack: "#1D1E23" + brightRed: "#E16350" + brightGreen: "#72C6A5" + brightYellow: "#F7B938" + brightBlue: "#448CCB" + brightMagenta: "#8E6F80" + brightCyan: "#5AC6D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 72.7 + black: 0 + red: 38.6 + green: 61.1 + yellow: 68.9 + blue: 36.6 + magenta: 29.1 + cyan: 61.6 + white: 106 + brightBlack: 0 + brightRed: 38.6 + brightGreen: 61.1 + brightYellow: 68.9 + brightBlue: 36.6 + brightMagenta: 29.1 + brightCyan: 61.6 + brightWhite: 106 diff --git a/themes/september-dark-theme.yaml b/themes/september-dark-theme.yaml new file mode 100644 index 00000000..54aa5ca4 --- /dev/null +++ b/themes/september-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "September Dark Theme" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#1A202C" + fg: "#F8F9FA" + black: "#1A202C" + red: "#E53E3E" + green: "#38A169" + yellow: "#D69E2E" + blue: "#3182CE" + magenta: "#805AD5" + cyan: "#319795" + white: "#F8F9FA" + brightBlack: "#2D3748" + brightRed: "#FC8181" + brightGreen: "#48BB78" + brightYellow: "#ECC94B" + brightBlue: "#4299E1" + brightMagenta: "#9F7AEA" + brightCyan: "#81E6D9" + brightWhite: "#EDF2F7" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 101.7 + black: 0 + red: 32.6 + green: 40.2 + yellow: 53.1 + blue: 32.4 + magenta: 26.4 + cyan: 37.3 + white: 101.7 + brightBlack: 0 + brightRed: 52.3 + brightGreen: 52.5 + brightYellow: 73.5 + brightBlue: 42.6 + brightMagenta: 39.9 + brightCyan: 78.9 + brightWhite: 96.8 diff --git a/themes/sequoia-monochrome.yaml b/themes/sequoia-monochrome.yaml new file mode 100644 index 00000000..28ee4f02 --- /dev/null +++ b/themes/sequoia-monochrome.yaml @@ -0,0 +1,49 @@ +name: "Sequoia Monochrome" +source: + marketplace_id: "wicked-labs.sequoia" + version: "1.31.3" + installs: 23648 + author: "Michael Andreuzza " + repo: "https://github.com/Sequoia-Theme/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" +colors: + bg: "#0F1014" + fg: "#868690" + black: "#131317" + red: "#999EB2" + green: "#626983" + yellow: "#D3D5DE" + blue: "#7C829D" + magenta: "#E2E4ED" + cyan: "#B6BAC8" + white: "#868690" + brightBlack: "#575861" + brightRed: "#999EB2" + brightGreen: "#626983" + brightYellow: "#D3D5DE" + brightBlue: "#7C829D" + brightMagenta: "#E2E4ED" + brightCyan: "#B6BAC8" + brightWhite: "#868690" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 37.6 + black: 0 + red: 49.6 + green: 24.2 + yellow: 80.8 + blue: 35.7 + magenta: 90.1 + cyan: 64.9 + white: 37.6 + brightBlack: 17 + brightRed: 49.6 + brightGreen: 24.2 + brightYellow: 80.8 + brightBlue: 35.7 + brightMagenta: 90.1 + brightCyan: 64.9 + brightWhite: 37.6 diff --git a/themes/sequoia-moonlight.yaml b/themes/sequoia-moonlight.yaml new file mode 100644 index 00000000..f9d5ecf9 --- /dev/null +++ b/themes/sequoia-moonlight.yaml @@ -0,0 +1,49 @@ +name: "Sequoia Moonlight" +source: + marketplace_id: "wicked-labs.sequoia" + version: "1.31.3" + installs: 23648 + author: "Michael Andreuzza " + repo: "https://github.com/Sequoia-Theme/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" +colors: + bg: "#0F1014" + fg: "#868690" + black: "#131317" + red: "#F58EE0" + green: "#8EB6F5" + yellow: "#9898A6" + blue: "#C58FFF" + magenta: "#FDFDFE" + cyan: "#FFBB88" + white: "#868690" + brightBlack: "#575861" + brightRed: "#F58EE0" + brightGreen: "#8EB6F5" + brightYellow: "#9898A6" + brightBlue: "#C58FFF" + brightMagenta: "#FDFDFE" + brightCyan: "#FFBB88" + brightWhite: "#868690" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 37.6 + black: 0 + red: 60.2 + green: 61.6 + yellow: 46.8 + blue: 54.5 + magenta: 106.2 + cyan: 73.7 + white: 37.6 + brightBlack: 17 + brightRed: 60.2 + brightGreen: 61.6 + brightYellow: 46.8 + brightBlue: 54.5 + brightMagenta: 106.2 + brightCyan: 73.7 + brightWhite: 37.6 diff --git a/themes/sequoia-retro.yaml b/themes/sequoia-retro.yaml new file mode 100644 index 00000000..8ef0ca48 --- /dev/null +++ b/themes/sequoia-retro.yaml @@ -0,0 +1,49 @@ +name: "Sequoia Retro" +source: + marketplace_id: "wicked-labs.sequoia" + version: "1.31.3" + installs: 23648 + author: "Michael Andreuzza " + repo: "https://github.com/Sequoia-Theme/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" +colors: + bg: "#0F1014" + fg: "#868690" + black: "#131317" + red: "#829FA7" + green: "#648F68" + yellow: "#DA674B" + blue: "#5C87A4" + magenta: "#E8B246" + cyan: "#A27E57" + white: "#868690" + brightBlack: "#575861" + brightRed: "#E8B246" + brightGreen: "#648F68" + brightYellow: "#DA674B" + brightBlue: "#5C87A4" + brightMagenta: "#829FA7" + brightCyan: "#A27E57" + brightWhite: "#868690" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 37.6 + black: 0 + red: 47.3 + green: 36.7 + yellow: 39.4 + blue: 35.3 + magenta: 65.2 + cyan: 36.6 + white: 37.6 + brightBlack: 17 + brightRed: 65.2 + brightGreen: 36.7 + brightYellow: 39.4 + brightBlue: 35.3 + brightMagenta: 47.3 + brightCyan: 36.6 + brightWhite: 37.6 diff --git a/themes/seral-dark-github-stripe.yaml b/themes/seral-dark-github-stripe.yaml new file mode 100644 index 00000000..6540af47 --- /dev/null +++ b/themes/seral-dark-github-stripe.yaml @@ -0,0 +1,49 @@ +name: "Seral Dark (GitHub × Stripe)" +source: + marketplace_id: "aliyilmazco.seral-theme" + version: "0.1.2" + installs: 49 + author: "Ali Yilmaz" + repo: "https://github.com/aliyilmazco/seral-theme" + url: "https://marketplace.visualstudio.com/items?itemName=aliyilmazco.seral-theme" +colors: + bg: "#021024" + fg: "#F0F6FC" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#FFD60A" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "green" + hue: 254 + contrast: + fg: 100.9 + black: 13 + red: 52.5 + green: 52.1 + yellow: 83.3 + blue: 52.2 + magenta: 52.2 + cyan: 61.3 + white: 64 + brightBlack: 29.2 + brightRed: 64.8 + brightGreen: 65.4 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 100.9 diff --git a/themes/seral-light-github-stripe.yaml b/themes/seral-light-github-stripe.yaml new file mode 100644 index 00000000..5c810f9f --- /dev/null +++ b/themes/seral-light-github-stripe.yaml @@ -0,0 +1,49 @@ +name: "Seral Light (GitHub × Stripe)" +source: + marketplace_id: "aliyilmazco.seral-theme" + version: "0.1.2" + installs: 49 + author: "Ali Yilmaz" + repo: "https://github.com/aliyilmazco/seral-theme" + url: "https://marketplace.visualstudio.com/items?itemName=aliyilmazco.seral-theme" +colors: + bg: "#FFFFFF" + fg: "#24292F" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#656D76" + brightBlack: "#656D76" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.5 + black: 101.5 + red: 74.8 + green: 85.2 + yellow: 98 + blue: 74.9 + magenta: 74.3 + cyan: 73.8 + white: 76.1 + brightBlack: 76.1 + brightRed: 85.2 + brightGreen: 74.6 + brightYellow: 92 + brightBlue: 60.7 + brightMagenta: 59.3 + brightCyan: 63.3 + brightWhite: 57.2 diff --git a/themes/serendipity-midnight-electric.yaml b/themes/serendipity-midnight-electric.yaml new file mode 100644 index 00000000..b26cb22d --- /dev/null +++ b/themes/serendipity-midnight-electric.yaml @@ -0,0 +1,49 @@ +name: "Serendipity Midnight Electric" +source: + marketplace_id: "wicked-labs.wvsc-serendipity" + version: "1.66.2" + installs: 70565 + author: "Michael Andreuzza " + repo: "https://github.com/Serendipity-Theme/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" +colors: + bg: "#0A0E15" + fg: "#ACB9D9" + black: "#1C1C1C" + red: "#9E81C9" + green: "#748E4E" + yellow: "#C8A662" + blue: "#78A9FF" + magenta: "#E879F9" + cyan: "#73D0FF" + white: "#9CA3AF" + brightBlack: "#6B7280" + brightRed: "#D4BFFF" + brightGreen: "#A6CC70" + brightYellow: "#FAD07B" + brightBlue: "#78A9FF" + brightMagenta: "#F0ABFC" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 64.3 + black: 0 + red: 41.5 + green: 37.1 + yellow: 56.3 + blue: 55.5 + magenta: 53.8 + cyan: 71.6 + white: 51.9 + brightBlack: 27.8 + brightRed: 73.7 + brightGreen: 68.2 + brightYellow: 81.2 + brightBlue: 55.5 + brightMagenta: 70.3 + brightCyan: 81.9 + brightWhite: 107.6 diff --git a/themes/serendipity-midnight-v1.yaml b/themes/serendipity-midnight-v1.yaml new file mode 100644 index 00000000..a898f10a --- /dev/null +++ b/themes/serendipity-midnight-v1.yaml @@ -0,0 +1,49 @@ +name: "Serendipity Midnight V1" +source: + marketplace_id: "wicked-labs.old-serendipity" + version: "0.6.0" + installs: 4491 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/old-serendipity" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.old-serendipity" +colors: + bg: "#0A0E15" + fg: "#F6F6F6" + black: "#1C1C1C" + red: "#BE95FF" + green: "#748E4E" + yellow: "#C8A662" + blue: "#78A9FF" + magenta: "#E879F9" + cyan: "#22D3EE" + white: "#9CA3AF" + brightBlack: "#6B7280" + brightRed: "#D4BFFF" + brightGreen: "#A6CC70" + brightYellow: "#FAD07B" + brightBlue: "#8BB6FF" + brightMagenta: "#F0ABFC" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 101.6 + black: 0 + red: 55.5 + green: 37.1 + yellow: 56.3 + blue: 55.5 + magenta: 53.8 + cyan: 69.3 + white: 51.9 + brightBlack: 27.8 + brightRed: 73.7 + brightGreen: 68.2 + brightYellow: 81.2 + brightBlue: 62.1 + brightMagenta: 70.3 + brightCyan: 81.9 + brightWhite: 107.6 diff --git a/themes/serendipity-midnight.yaml b/themes/serendipity-midnight.yaml new file mode 100644 index 00000000..0cacfa5a --- /dev/null +++ b/themes/serendipity-midnight.yaml @@ -0,0 +1,49 @@ +name: "Serendipity Midnight" +source: + marketplace_id: "wicked-labs.wvsc-serendipity" + version: "1.66.2" + installs: 70565 + author: "Michael Andreuzza " + repo: "https://github.com/Serendipity-Theme/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" +colors: + bg: "#151726" + fg: "#DEE0EF" + black: "#232534" + red: "#EE8679" + green: "#5BA2D0" + yellow: "#A78BFA" + blue: "#94B8FF" + magenta: "#9CCFD8" + cyan: "#F8D2C9" + white: "#DEE0EF" + brightBlack: "#8D8F9E" + brightRed: "#EE8679" + brightGreen: "#5BA2D0" + brightYellow: "#A78BFA" + brightBlue: "#94B8FF" + brightMagenta: "#9CCFD8" + brightCyan: "#F8D2C9" + brightWhite: "#DEE0EF" +meta: + mode: "dark" + accent: "magenta" + hue: 278 + contrast: + fg: 87.2 + black: 0 + red: 51.7 + green: 47.1 + yellow: 48.2 + blue: 62.9 + magenta: 71.2 + cyan: 83.2 + white: 87.2 + brightBlack: 41.3 + brightRed: 51.7 + brightGreen: 47.1 + brightYellow: 48.2 + brightBlue: 62.9 + brightMagenta: 71.2 + brightCyan: 83.2 + brightWhite: 87.2 diff --git a/themes/serendipity-morning-v1.yaml b/themes/serendipity-morning-v1.yaml new file mode 100644 index 00000000..15532273 --- /dev/null +++ b/themes/serendipity-morning-v1.yaml @@ -0,0 +1,49 @@ +name: "Serendipity Morning V1" +source: + marketplace_id: "wicked-labs.old-serendipity" + version: "0.6.0" + installs: 4491 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/old-serendipity" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.old-serendipity" +colors: + bg: "#FFFFFF" + fg: "#575F66" + black: "#1C1C1C" + red: "#8568B2" + green: "#748E4E" + yellow: "#C8A662" + blue: "#6087CC" + magenta: "#E879F9" + cyan: "#1BA8BE" + white: "#9CA3AF" + brightBlack: "#6B7280" + brightRed: "#9177B9" + brightGreen: "#A6CC70" + brightYellow: "#FAD07B" + brightBlue: "#78A9FF" + brightMagenta: "#F0ABFC" + brightCyan: "#5FC2D1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 82.2 + black: 104 + red: 71.5 + green: 64.2 + yellow: 45.5 + blue: 63.4 + magenta: 47.9 + cyan: 54 + white: 49.8 + brightBlack: 73.6 + brightRed: 65.3 + brightGreen: 34.1 + brightYellow: 21.8 + brightBlue: 46.3 + brightMagenta: 32.1 + brightCyan: 40.3 + brightWhite: 0 diff --git a/themes/serendipity-morning.yaml b/themes/serendipity-morning.yaml new file mode 100644 index 00000000..cbe349c8 --- /dev/null +++ b/themes/serendipity-morning.yaml @@ -0,0 +1,49 @@ +name: "Serendipity Morning" +source: + marketplace_id: "wicked-labs.wvsc-serendipity" + version: "1.66.2" + installs: 70565 + author: "Michael Andreuzza " + repo: "https://github.com/Serendipity-Theme/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" +colors: + bg: "#FDFDFE" + fg: "#4E5377" + black: "#D8DAE4" + red: "#D26A5D" + green: "#3788BE" + yellow: "#886CDB" + blue: "#7397DE" + magenta: "#77AAB3" + cyan: "#F19A8E" + white: "#4E5377" + brightBlack: "#5F6488" + brightRed: "#D26A5D" + brightGreen: "#3788BE" + brightYellow: "#886CDB" + brightBlue: "#7397DE" + brightMagenta: "#77AAB3" + brightCyan: "#F19A8E" + brightWhite: "#4E5377" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 84.6 + black: 18 + red: 61.2 + green: 64.7 + yellow: 66.2 + blue: 54.2 + magenta: 49 + cyan: 40.9 + white: 84.6 + brightBlack: 77.5 + brightRed: 61.2 + brightGreen: 64.7 + brightYellow: 66.2 + brightBlue: 54.2 + brightMagenta: 49 + brightCyan: 40.9 + brightWhite: 84.6 diff --git a/themes/serendipity-sunset-v1.yaml b/themes/serendipity-sunset-v1.yaml new file mode 100644 index 00000000..47537fff --- /dev/null +++ b/themes/serendipity-sunset-v1.yaml @@ -0,0 +1,49 @@ +name: "Serendipity Sunset V1" +source: + marketplace_id: "wicked-labs.old-serendipity" + version: "0.6.0" + installs: 4491 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/old-serendipity" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.old-serendipity" +colors: + bg: "#1E2431" + fg: "#F6F6F6" + black: "#1C1C1C" + red: "#BE95FF" + green: "#748E4E" + yellow: "#C8A662" + blue: "#78A9FF" + magenta: "#E879F9" + cyan: "#22D3EE" + white: "#9CA3AF" + brightBlack: "#6B7280" + brightRed: "#D4BFFF" + brightGreen: "#A6CC70" + brightYellow: "#FAD07B" + brightBlue: "#8BB6FF" + brightMagenta: "#F0ABFC" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 265 + contrast: + fg: 99.2 + black: 0 + red: 53.1 + green: 34.7 + yellow: 53.8 + blue: 53 + magenta: 51.3 + cyan: 66.8 + white: 49.4 + brightBlack: 25.4 + brightRed: 71.2 + brightGreen: 65.7 + brightYellow: 78.7 + brightBlue: 59.7 + brightMagenta: 67.9 + brightCyan: 79.4 + brightWhite: 105.1 diff --git a/themes/serendipity-sunset.yaml b/themes/serendipity-sunset.yaml new file mode 100644 index 00000000..6b410c1c --- /dev/null +++ b/themes/serendipity-sunset.yaml @@ -0,0 +1,49 @@ +name: "Serendipity Sunset" +source: + marketplace_id: "wicked-labs.wvsc-serendipity" + version: "1.66.2" + installs: 70565 + author: "Michael Andreuzza " + repo: "https://github.com/Serendipity-Theme/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" +colors: + bg: "#202231" + fg: "#DEE0EF" + black: "#363847" + red: "#D1918F" + green: "#709BBD" + yellow: "#A392DC" + blue: "#A0B6E8" + magenta: "#AAC9D4" + cyan: "#D6B4B4" + white: "#DEE0EF" + brightBlack: "#6B6D7C" + brightRed: "#D1918F" + brightGreen: "#709BBD" + brightYellow: "#A392DC" + brightBlue: "#A0B6E8" + brightMagenta: "#AAC9D4" + brightCyan: "#D6B4B4" + brightWhite: "#DEE0EF" +meta: + mode: "dark" + accent: "magenta" + hue: 278 + contrast: + fg: 85.7 + black: 0 + red: 49.1 + green: 43.2 + yellow: 46.5 + blue: 60.3 + magenta: 68.3 + cyan: 63.7 + white: 85.7 + brightBlack: 23.8 + brightRed: 49.1 + brightGreen: 43.2 + brightYellow: 46.5 + brightBlue: 60.3 + brightMagenta: 68.3 + brightCyan: 63.7 + brightWhite: 85.7 diff --git a/themes/serene.yaml b/themes/serene.yaml new file mode 100644 index 00000000..a702bfca --- /dev/null +++ b/themes/serene.yaml @@ -0,0 +1,49 @@ +name: "Serene" +source: + marketplace_id: "thisisroi.serene" + version: "1.0.2" + installs: 1436 + author: "thisisroi" + repo: "https://github.com/thisisroi/serene-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thisisroi.serene" +colors: + bg: "#201928" + fg: "#9A88B0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#F0E056" + blue: "#63AEFF" + magenta: "#BC3FBC" + cyan: "#63E0FF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFEE93" + brightBlue: "#7CBBFF" + brightMagenta: "#D670D6" + brightCyan: "#84E7FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 305 + contrast: + fg: 40.7 + black: 0 + red: 26.1 + green: 52.4 + yellow: 84.7 + blue: 54.9 + magenta: 29.2 + cyan: 76.9 + white: 106.3 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 62.9 + brightYellow: 94.5 + brightBlue: 61.7 + brightMagenta: 44.8 + brightCyan: 82.1 + brightWhite: 89.4 diff --git a/themes/service-contrast.yaml b/themes/service-contrast.yaml new file mode 100644 index 00000000..4e96b64d --- /dev/null +++ b/themes/service-contrast.yaml @@ -0,0 +1,49 @@ +name: "service-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0C0C0C" + fg: "#E8E1DE" + black: "#191919" + red: "#BA0E2E" + green: "#6C8375" + yellow: "#A0AFA1" + blue: "#F0F5F5" + magenta: "#A0AFA1" + cyan: "#6C8375" + white: "#F2EFED" + brightBlack: "#3F3F3F" + brightRed: "#F03E5F" + brightGreen: "#A2B3A9" + brightYellow: "#D7DED8" + brightBlue: "#FFFFFF" + brightMagenta: "#D7DED8" + brightCyan: "#A2B3A9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.1 + black: 0 + red: 21.3 + green: 33.4 + yellow: 56.6 + blue: 100.4 + magenta: 56.6 + cyan: 33.4 + white: 97.5 + brightBlack: 7.9 + brightRed: 37.6 + brightGreen: 58.7 + brightYellow: 85.2 + brightBlue: 107.7 + brightMagenta: 85.2 + brightCyan: 58.7 + brightWhite: 107.7 diff --git a/themes/service-light.yaml b/themes/service-light.yaml new file mode 100644 index 00000000..ece16533 --- /dev/null +++ b/themes/service-light.yaml @@ -0,0 +1,49 @@ +name: "service-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#4D5151" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#6C8375" + yellow: "#A0AFA1" + blue: "#8C9191" + magenta: "#A0AFA1" + cyan: "#6C8375" + white: "#595E5E" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#A2B3A9" + brightYellow: "#D7DED8" + brightBlue: "#C0C3C3" + brightMagenta: "#D7DED8" + brightCyan: "#A2B3A9" + brightWhite: "#7F8585" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 87.9 + black: 0 + red: 80.3 + green: 68 + yellow: 45.3 + blue: 59.2 + magenta: 45.3 + cyan: 68 + white: 82.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 43.3 + brightYellow: 18.1 + brightBlue: 32.7 + brightMagenta: 18.1 + brightCyan: 43.3 + brightWhite: 65.1 diff --git a/themes/service.yaml b/themes/service.yaml new file mode 100644 index 00000000..50f93148 --- /dev/null +++ b/themes/service.yaml @@ -0,0 +1,49 @@ +name: "service" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#252727" + fg: "#E8E1DE" + black: "#313434" + red: "#BA0E2E" + green: "#6C8375" + yellow: "#A0AFA1" + blue: "#F0F5F5" + magenta: "#A0AFA1" + cyan: "#6C8375" + white: "#F2EFED" + brightBlack: "#575B5B" + brightRed: "#F03E5F" + brightGreen: "#A2B3A9" + brightYellow: "#D7DED8" + brightBlue: "#FFFFFF" + brightMagenta: "#D7DED8" + brightCyan: "#A2B3A9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.1 + black: 0 + red: 18.3 + green: 30.4 + yellow: 53.6 + blue: 97.4 + magenta: 53.6 + cyan: 30.4 + white: 94.5 + brightBlack: 15 + brightRed: 34.6 + brightGreen: 55.7 + brightYellow: 82.3 + brightBlue: 104.7 + brightMagenta: 82.3 + brightCyan: 55.7 + brightWhite: 104.7 diff --git a/themes/seti-classic-vscode.yaml b/themes/seti-classic-vscode.yaml new file mode 100644 index 00000000..6a530402 --- /dev/null +++ b/themes/seti-classic-vscode.yaml @@ -0,0 +1,49 @@ +name: "seti-classic-vscode" +source: + marketplace_id: "ecool.seti-classic-vscode" + version: "1.0.7" + installs: 1193 + author: "ecool" + repo: "https://github.com/ecool/seti-classic-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ecool.seti-classic-vscode" +colors: + bg: "#191B1C" + fg: "#D4D7D6" + black: "#151718" + red: "#CD3F45" + green: "#9FCA56" + yellow: "#E6CD69" + blue: "#55B5DB" + magenta: "#A074C4" + cyan: "#55DBBE" + white: "#D6D6D6" + brightBlack: "#41535B" + brightRed: "#FF7278" + brightGreen: "#D2FD89" + brightYellow: "#FFFF9C" + brightBlue: "#88E8FF" + brightMagenta: "#D3A7F7" + brightCyan: "#88FFF1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 28.2 + green: 65 + yellow: 75.4 + blue: 55 + magenta: 36.5 + cyan: 70.9 + white: 80.3 + brightBlack: 12.9 + brightRed: 49.6 + brightGreen: 95.7 + brightYellow: 102.9 + brightBlue: 83 + brightMagenta: 63 + brightCyan: 93.7 + brightWhite: 106.5 diff --git a/themes/seti.yaml b/themes/seti.yaml new file mode 100644 index 00000000..c31d6f4c --- /dev/null +++ b/themes/seti.yaml @@ -0,0 +1,49 @@ +name: "Seti" +source: + marketplace_id: "seti.seti" + version: "0.0.6" + installs: 21997 + author: "sriosv" + repo: "https://github.com/Sarchis/seti-syntax" + url: "https://marketplace.visualstudio.com/items?itemName=seti.seti" +colors: + bg: "#0E1112" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 59.9 + black: 0 + red: 42.6 + green: 62.8 + yellow: 71.1 + blue: 55.2 + magenta: 45.7 + cyan: 55.1 + white: 83.6 + brightBlack: 36.1 + brightRed: 39 + brightGreen: 62.8 + brightYellow: 71.1 + brightBlue: 42 + brightMagenta: 13.3 + brightCyan: 55.1 + brightWhite: 83.6 diff --git a/themes/sewayaki-dark.yaml b/themes/sewayaki-dark.yaml new file mode 100644 index 00000000..ec571735 --- /dev/null +++ b/themes/sewayaki-dark.yaml @@ -0,0 +1,49 @@ +name: "Sewayaki Dark" +source: + marketplace_id: "Kitsune-Labs.sewayaki-dark" + version: "1.2.0" + installs: 132 + author: "Kitsune Labs" + repo: "https://github.com/Kitsune-Labs/Sewayaki-Dark" + url: "https://marketplace.visualstudio.com/items?itemName=Kitsune-Labs.sewayaki-dark" +colors: + bg: "#22272E" + fg: "#ABB2BF" + black: "#000000" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 57.2 + black: 0 + red: 34.5 + green: 58.2 + yellow: 46.4 + blue: 47.5 + magenta: 36.9 + cyan: 50.3 + white: 88.5 + brightBlack: 13.3 + brightRed: 43.9 + brightGreen: 74.6 + brightYellow: 59 + brightBlue: 61.6 + brightMagenta: 48.1 + brightCyan: 65.6 + brightWhite: 80.9 diff --git a/themes/shaan-s.yaml b/themes/shaan-s.yaml new file mode 100644 index 00000000..97bdec7a --- /dev/null +++ b/themes/shaan-s.yaml @@ -0,0 +1,49 @@ +name: "shaan's" +source: + marketplace_id: "ShaanMephobic.shaans" + version: "1.0.2" + installs: 56 + author: "Shaan Mephobic" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ShaanMephobic.shaans" +colors: + bg: "#292C36" + fg: "#E1E4E8" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D1D5DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#97BFF5" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: 272 + contrast: + fg: 85.9 + black: 15.9 + red: 33.6 + green: 59 + yellow: 89.5 + blue: 35.7 + magenta: 48.1 + cyan: 57.6 + white: 76.5 + brightBlack: 44.4 + brightRed: 46.5 + brightGreen: 75.8 + brightYellow: 62.2 + brightBlue: 57.6 + brightMagenta: 48.1 + brightCyan: 66.1 + brightWhite: 100.9 diff --git a/themes/shaant-shakti-mystic-roast.yaml b/themes/shaant-shakti-mystic-roast.yaml new file mode 100644 index 00000000..40fed13a --- /dev/null +++ b/themes/shaant-shakti-mystic-roast.yaml @@ -0,0 +1,49 @@ +name: "Shaant Shakti: Mystic Roast" +source: + marketplace_id: "shaant-shakti.shaant-shakti-color-theme" + version: "2.0.0" + installs: 50 + author: "Aadityaa" + repo: "https://github.com/Aditya-Ace/Shaant-Shakti" + url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" +colors: + bg: "#1B1614" + fg: "#EBDCC8" + black: "#1E1815" + red: "#D07C5B" + green: "#A6B07A" + yellow: "#E2BB77" + blue: "#9AB0B8" + magenta: "#C78C99" + cyan: "#92B8B0" + white: "#EBDCC8" + brightBlack: "#7A665B" + brightRed: "#E08C6B" + brightGreen: "#B6C08A" + brightYellow: "#F2CB87" + brightBlue: "#AAC0C8" + brightMagenta: "#D79CA9" + brightCyan: "#A2C8C0" + brightWhite: "#F7EEDD" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.6 + black: 0 + red: 42.7 + green: 55.6 + yellow: 68 + blue: 56.5 + magenta: 47.8 + cyan: 58.7 + white: 85.6 + brightBlack: 23.7 + brightRed: 50.7 + brightGreen: 64.5 + brightYellow: 77.4 + brightBlue: 65.4 + brightMagenta: 56.2 + brightCyan: 67.7 + brightWhite: 96.3 diff --git a/themes/shaant-shakti-sand-storm.yaml b/themes/shaant-shakti-sand-storm.yaml new file mode 100644 index 00000000..3187b469 --- /dev/null +++ b/themes/shaant-shakti-sand-storm.yaml @@ -0,0 +1,49 @@ +name: "Shaant Shakti: Sand Storm" +source: + marketplace_id: "shaant-shakti.shaant-shakti-color-theme" + version: "2.0.0" + installs: 50 + author: "Aadityaa" + repo: "https://github.com/Aditya-Ace/Shaant-Shakti" + url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" +colors: + bg: "#181614" + fg: "#F0E6D2" + black: "#1E1815" + red: "#FF6B6B" + green: "#A6B07A" + yellow: "#E2BB77" + blue: "#9AB0B8" + magenta: "#C78C99" + cyan: "#92B8B0" + white: "#F0E6D2" + brightBlack: "#7A665B" + brightRed: "#FF8A80" + brightGreen: "#C8E6C9" + brightYellow: "#FFF59D" + brightBlue: "#B3E5FC" + brightMagenta: "#F8BBD9" + brightCyan: "#B2DFDB" + brightWhite: "#F7EEDD" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91.2 + black: 0 + red: 48.2 + green: 55.7 + yellow: 68.1 + blue: 56.5 + magenta: 47.9 + cyan: 58.7 + white: 91.2 + brightBlack: 23.8 + brightRed: 56.6 + brightGreen: 85.8 + brightYellow: 98.6 + brightBlue: 85.4 + brightMagenta: 74.9 + brightCyan: 80.9 + brightWhite: 96.3 diff --git a/themes/shaant-shakti-soul-drift.yaml b/themes/shaant-shakti-soul-drift.yaml new file mode 100644 index 00000000..4bb4ea06 --- /dev/null +++ b/themes/shaant-shakti-soul-drift.yaml @@ -0,0 +1,49 @@ +name: "Shaant Shakti: Soul Drift" +source: + marketplace_id: "shaant-shakti.shaant-shakti-color-theme" + version: "2.0.0" + installs: 50 + author: "Aadityaa" + repo: "https://github.com/Aditya-Ace/Shaant-Shakti" + url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" +colors: + bg: "#141314" + fg: "#F8F8F2" + black: "#1C1C1C" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#F1F1F0" + brightBlack: "#686868" + brightRed: "#FF7B77" + brightGreen: "#7AFF9E" + brightYellow: "#FFF9BD" + brightBlue: "#77D7FF" + brightMagenta: "#FF8AD1" + brightCyan: "#BAFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 102.3 + black: 0 + red: 45 + green: 84.4 + yellow: 99.1 + blue: 65.8 + magenta: 51.2 + cyan: 87.4 + white: 98 + brightBlack: 23.2 + brightRed: 52.5 + brightGreen: 90.5 + brightYellow: 101.7 + brightBlue: 74.6 + brightMagenta: 59.9 + brightCyan: 99 + brightWhite: 107.2 diff --git a/themes/shaant-shakti-spfx-sanctuary.yaml b/themes/shaant-shakti-spfx-sanctuary.yaml new file mode 100644 index 00000000..5ceb3d2b --- /dev/null +++ b/themes/shaant-shakti-spfx-sanctuary.yaml @@ -0,0 +1,49 @@ +name: "Shaant Shakti: SPFx Sanctuary" +source: + marketplace_id: "shaant-shakti.shaant-shakti-color-theme" + version: "2.0.0" + installs: 50 + author: "Aadityaa" + repo: "https://github.com/Aditya-Ace/Shaant-Shakti" + url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" +colors: + bg: "#0F1419" + fg: "#E8F4FD" + black: "#161B22" + red: "#E74856" + green: "#32CD32" + yellow: "#FFB900" + blue: "#0078D4" + magenta: "#B146C2" + cyan: "#40E0D0" + white: "#E8F4FD" + brightBlack: "#6B7C93" + brightRed: "#FF6B7D" + brightGreen: "#52ED52" + brightYellow: "#FFD700" + brightBlue: "#4A9EFF" + brightMagenta: "#D166E2" + brightCyan: "#60F0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 249 + contrast: + fg: 98.8 + black: 0 + red: 36.2 + green: 60.7 + yellow: 71.3 + blue: 30.3 + magenta: 29.5 + cyan: 74.2 + white: 98.8 + brightBlack: 31.5 + brightRed: 48.9 + brightGreen: 77.8 + brightYellow: 83.6 + brightBlue: 48.3 + brightMagenta: 43.3 + brightCyan: 83.9 + brightWhite: 107.2 diff --git a/themes/shaant-shakti.yaml b/themes/shaant-shakti.yaml new file mode 100644 index 00000000..e2232c64 --- /dev/null +++ b/themes/shaant-shakti.yaml @@ -0,0 +1,49 @@ +name: "Shaant Shakti" +source: + marketplace_id: "shaant-shakti.shaant-shakti-color-theme" + version: "2.0.0" + installs: 50 + author: "Aadityaa" + repo: "https://github.com/Aditya-Ace/Shaant-Shakti" + url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" +colors: + bg: "#0B0C10" + fg: "#F8F8F2" + black: "#282C34" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#FF7B86" + brightGreen: "#A9D48A" + brightYellow: "#F6D18C" + brightBlue: "#72C0FF" + brightMagenta: "#D789EE" + brightCyan: "#67C7D3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 102.7 + black: 0 + red: 42.9 + green: 63.1 + yellow: 71.3 + blue: 55.4 + magenta: 45.9 + cyan: 55.3 + white: 60.2 + brightBlack: 21.4 + brightRed: 53.4 + brightGreen: 72.8 + brightYellow: 81.4 + brightBlue: 64.6 + brightMagenta: 54.5 + brightCyan: 64.5 + brightWhite: 107.7 diff --git a/themes/shadcn-blue-light.yaml b/themes/shadcn-blue-light.yaml new file mode 100644 index 00000000..c6af97c8 --- /dev/null +++ b/themes/shadcn-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Blue Light" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#FFFFFF" + fg: "#09090B" + black: "#FFFFFF" + red: "#E7000B" + green: "#2B7FFF" + yellow: "#8EC5FF" + blue: "#A1A1A1" + magenta: "#1447E6" + cyan: "#193CB8" + white: "#09090B" + brightBlack: "#F4F4F5" + brightRed: "#E7000B" + brightGreen: "#8EC5FF" + brightYellow: "#EFF6FF" + brightBlue: "#1447E6" + brightMagenta: "#155DFC" + brightCyan: "#1447E6" + brightWhite: "#09090B" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 105.9 + black: 0 + red: 70.1 + green: 64.5 + yellow: 33.7 + blue: 50.5 + magenta: 82.4 + cyan: 89.3 + white: 105.9 + brightBlack: 0 + brightRed: 70.1 + brightGreen: 33.7 + brightYellow: 0 + brightBlue: 82.4 + brightMagenta: 75 + brightCyan: 82.4 + brightWhite: 105.9 diff --git a/themes/shadcn-green-dark.yaml b/themes/shadcn-green-dark.yaml new file mode 100644 index 00000000..4e4dd475 --- /dev/null +++ b/themes/shadcn-green-dark.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Green Dark" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#09090B" + fg: "#FAFAFA" + black: "#09090B" + red: "#FF6467" + green: "#00C950" + yellow: "#7BF1A8" + blue: "#35530E" + magenta: "#00A63E" + cyan: "#016630" + white: "#FAFAFA" + brightBlack: "#27272A" + brightRed: "#FF6467" + brightGreen: "#7BF1A8" + brightYellow: "#F7FEE7" + brightBlue: "#5EA500" + brightMagenta: "#DFF5E2" + brightCyan: "#00A63E" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 104.5 + black: 0 + red: 47.4 + green: 59.2 + yellow: 84.2 + blue: 12.3 + magenta: 42.9 + cyan: 17.7 + white: 104.5 + brightBlack: 0 + brightRed: 47.4 + brightGreen: 84.2 + brightYellow: 105.1 + brightBlue: 44.5 + brightMagenta: 97.4 + brightCyan: 42.9 + brightWhite: 104.5 diff --git a/themes/shadcn-green-light.yaml b/themes/shadcn-green-light.yaml new file mode 100644 index 00000000..11a5abcc --- /dev/null +++ b/themes/shadcn-green-light.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Green Light" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#FFFFFF" + fg: "#09090B" + black: "#FFFFFF" + red: "#E7000B" + green: "#00C950" + yellow: "#7BF1A8" + blue: "#9AE600" + magenta: "#00A63E" + cyan: "#016630" + white: "#09090B" + brightBlack: "#F4F4F5" + brightRed: "#E7000B" + brightGreen: "#7BF1A8" + brightYellow: "#F7FEE7" + brightBlue: "#5EA500" + brightMagenta: "#DFF5E2" + brightCyan: "#00A63E" + brightWhite: "#09090B" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.9 + black: 0 + red: 70.1 + green: 42.9 + yellow: 19.2 + blue: 24.4 + magenta: 58.7 + cyan: 84.2 + white: 105.9 + brightBlack: 0 + brightRed: 70.1 + brightGreen: 19.2 + brightYellow: 0 + brightBlue: 57.1 + brightMagenta: 0 + brightCyan: 58.7 + brightWhite: 105.9 diff --git a/themes/shadcn-neutral-dark.yaml b/themes/shadcn-neutral-dark.yaml new file mode 100644 index 00000000..173007bc --- /dev/null +++ b/themes/shadcn-neutral-dark.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Neutral Dark" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#0A0A0A" + fg: "#FAFAFA" + black: "#0A0A0A" + red: "#FF6467" + green: "#00BC7D" + yellow: "#1447E6" + blue: "#737373" + magenta: "#104E64" + cyan: "#FF2056" + white: "#FAFAFA" + brightBlack: "#262626" + brightRed: "#FF6467" + brightGreen: "#1447E6" + brightYellow: "#171717" + brightBlue: "#E5E5E5" + brightMagenta: "#FE9A00" + brightCyan: "#AD46FF" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 104.4 + black: 0 + red: 47.4 + green: 53.9 + yellow: 19.4 + blue: 28.6 + magenta: 11.4 + cyan: 38.7 + white: 104.4 + brightBlack: 0 + brightRed: 47.4 + brightGreen: 19.4 + brightYellow: 0 + brightBlue: 90.9 + brightMagenta: 60.7 + brightCyan: 34.2 + brightWhite: 104.4 diff --git a/themes/shadcn-neutral-light.yaml b/themes/shadcn-neutral-light.yaml new file mode 100644 index 00000000..62cb7a68 --- /dev/null +++ b/themes/shadcn-neutral-light.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Neutral Light" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#FFFFFF" + fg: "#0A0A0A" + black: "#FFFFFF" + red: "#E7000B" + green: "#009689" + yellow: "#F54900" + blue: "#A1A1A1" + magenta: "#104E64" + cyan: "#016630" + white: "#0A0A0A" + brightBlack: "#F5F5F5" + brightRed: "#E7000B" + brightGreen: "#F54900" + brightYellow: "#FAFAFA" + brightBlue: "#171717" + brightMagenta: "#D3E2E7" + brightCyan: "#104E64" + brightWhite: "#0A0A0A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.8 + black: 0 + red: 70.1 + green: 63.7 + yellow: 62.1 + blue: 50.5 + magenta: 90.7 + cyan: 84.2 + white: 105.8 + brightBlack: 0 + brightRed: 70.1 + brightGreen: 62.1 + brightYellow: 0 + brightBlue: 104.7 + brightMagenta: 16.2 + brightCyan: 90.7 + brightWhite: 105.8 diff --git a/themes/shadcn-orange-dark.yaml b/themes/shadcn-orange-dark.yaml new file mode 100644 index 00000000..685e7a4c --- /dev/null +++ b/themes/shadcn-orange-dark.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Orange Dark" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#09090B" + fg: "#FAFAFA" + black: "#09090B" + red: "#FF6467" + green: "#FF6900" + yellow: "#FFB86A" + blue: "#7E2A0C" + magenta: "#F54900" + cyan: "#9F2D00" + white: "#FAFAFA" + brightBlack: "#27272A" + brightRed: "#FF6467" + brightGreen: "#FFB86A" + brightYellow: "#FFF7ED" + brightBlue: "#FF6900" + brightMagenta: "#FFE9DA" + brightCyan: "#F54900" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.5 + black: 0 + red: 47.4 + green: 47.6 + yellow: 72.3 + blue: 11.3 + magenta: 39.4 + cyan: 17.5 + white: 104.5 + brightBlack: 0 + brightRed: 47.4 + brightGreen: 72.3 + brightYellow: 103.2 + brightBlue: 47.6 + brightMagenta: 95.9 + brightCyan: 39.4 + brightWhite: 104.5 diff --git a/themes/shadcn-orange-light.yaml b/themes/shadcn-orange-light.yaml new file mode 100644 index 00000000..238cb802 --- /dev/null +++ b/themes/shadcn-orange-light.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Orange Light" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#FFFFFF" + fg: "#09090B" + black: "#FFFFFF" + red: "#E7000B" + green: "#FF6900" + yellow: "#FFB86A" + blue: "#FF8904" + magenta: "#F54900" + cyan: "#9F2D00" + white: "#09090B" + brightBlack: "#F4F4F5" + brightRed: "#E7000B" + brightGreen: "#FFB86A" + brightYellow: "#FFF7ED" + brightBlue: "#F54900" + brightMagenta: "#FFE9DA" + brightCyan: "#F54900" + brightWhite: "#09090B" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.9 + black: 0 + red: 70.1 + green: 54.2 + yellow: 30.4 + blue: 46.3 + magenta: 62.1 + cyan: 84.4 + white: 105.9 + brightBlack: 0 + brightRed: 70.1 + brightGreen: 30.4 + brightYellow: 0 + brightBlue: 62.1 + brightMagenta: 8.2 + brightCyan: 62.1 + brightWhite: 105.9 diff --git a/themes/shadcn-red-dark.yaml b/themes/shadcn-red-dark.yaml new file mode 100644 index 00000000..e6097557 --- /dev/null +++ b/themes/shadcn-red-dark.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Red Dark" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#09090B" + fg: "#FAFAFA" + black: "#09090B" + red: "#FF6467" + green: "#FB2C36" + yellow: "#FFA2A2" + blue: "#82181A" + magenta: "#E7000B" + cyan: "#9F0712" + white: "#FAFAFA" + brightBlack: "#27272A" + brightRed: "#FF6467" + brightGreen: "#FFA2A2" + brightYellow: "#FEF2F2" + brightBlue: "#FB2C36" + brightMagenta: "#FFE2D9" + brightCyan: "#E7000B" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.5 + black: 0 + red: 47.4 + green: 38 + yellow: 65.9 + blue: 10.4 + magenta: 31.5 + cyan: 15.4 + white: 104.5 + brightBlack: 0 + brightRed: 47.4 + brightGreen: 65.9 + brightYellow: 100.9 + brightBlue: 38 + brightMagenta: 92.8 + brightCyan: 31.5 + brightWhite: 104.5 diff --git a/themes/shadcn-red-light.yaml b/themes/shadcn-red-light.yaml new file mode 100644 index 00000000..7c66df89 --- /dev/null +++ b/themes/shadcn-red-light.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Red Light" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#FFFFFF" + fg: "#09090B" + black: "#FFFFFF" + red: "#E7000B" + green: "#FB2C36" + yellow: "#FFA2A2" + blue: "#FF6467" + magenta: "#E7000B" + cyan: "#9F0712" + white: "#09090B" + brightBlack: "#F4F4F5" + brightRed: "#E7000B" + brightGreen: "#FFA2A2" + brightYellow: "#FEF2F2" + brightBlue: "#E7000B" + brightMagenta: "#FFE2D9" + brightCyan: "#E7000B" + brightWhite: "#09090B" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.9 + black: 0 + red: 70.1 + green: 63.6 + yellow: 36.5 + blue: 54.3 + magenta: 70.1 + cyan: 86.5 + white: 105.9 + brightBlack: 0 + brightRed: 70.1 + brightGreen: 36.5 + brightYellow: 0 + brightBlue: 70.1 + brightMagenta: 11.1 + brightCyan: 70.1 + brightWhite: 105.9 diff --git a/themes/shadcn-rose-dark.yaml b/themes/shadcn-rose-dark.yaml new file mode 100644 index 00000000..b5a81c88 --- /dev/null +++ b/themes/shadcn-rose-dark.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Rose Dark" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#09090B" + fg: "#FAFAFA" + black: "#09090B" + red: "#FF6467" + green: "#FF2056" + yellow: "#FFA1AD" + blue: "#8B0836" + magenta: "#EC003F" + cyan: "#A50036" + white: "#FAFAFA" + brightBlack: "#27272A" + brightRed: "#FF6467" + brightGreen: "#FFA1AD" + brightYellow: "#FFF1F2" + brightBlue: "#FF2056" + brightMagenta: "#FFE1DF" + brightCyan: "#EC003F" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.5 + black: 0 + red: 47.4 + green: 38.7 + yellow: 65.9 + blue: 11.9 + magenta: 33 + cyan: 16.9 + white: 104.5 + brightBlack: 0 + brightRed: 47.4 + brightGreen: 65.9 + brightYellow: 100.6 + brightBlue: 38.7 + brightMagenta: 92.6 + brightCyan: 33 + brightWhite: 104.5 diff --git a/themes/shadcn-rose-light.yaml b/themes/shadcn-rose-light.yaml new file mode 100644 index 00000000..8dc241e1 --- /dev/null +++ b/themes/shadcn-rose-light.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Rose Light" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#FFFFFF" + fg: "#09090B" + black: "#FFFFFF" + red: "#E7000B" + green: "#FF2056" + yellow: "#FFA1AD" + blue: "#FF637E" + magenta: "#EC003F" + cyan: "#A50036" + white: "#09090B" + brightBlack: "#F4F4F5" + brightRed: "#E7000B" + brightGreen: "#FFA1AD" + brightYellow: "#FFF1F2" + brightBlue: "#EC003F" + brightMagenta: "#FFE1DF" + brightCyan: "#EC003F" + brightWhite: "#09090B" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.9 + black: 0 + red: 70.1 + green: 62.8 + yellow: 36.4 + blue: 53.9 + magenta: 68.5 + cyan: 85 + white: 105.9 + brightBlack: 0 + brightRed: 70.1 + brightGreen: 36.4 + brightYellow: 0 + brightBlue: 68.5 + brightMagenta: 11.3 + brightCyan: 68.5 + brightWhite: 105.9 diff --git a/themes/shadcn-violet-dark.yaml b/themes/shadcn-violet-dark.yaml new file mode 100644 index 00000000..424d8919 --- /dev/null +++ b/themes/shadcn-violet-dark.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Violet Dark" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#09090B" + fg: "#FAFAFA" + black: "#09090B" + red: "#FF6467" + green: "#8E51FF" + yellow: "#C4B4FF" + blue: "#4D179A" + magenta: "#7008E7" + cyan: "#5D0EC0" + white: "#FAFAFA" + brightBlack: "#27272A" + brightRed: "#FF6467" + brightGreen: "#C4B4FF" + brightYellow: "#F5F3FF" + brightBlue: "#8E51FF" + brightMagenta: "#7F22FE" + brightCyan: "#7008E7" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 104.5 + black: 0 + red: 47.4 + green: 31.8 + yellow: 67.5 + blue: 8.2 + magenta: 18.8 + cyan: 12.9 + white: 104.5 + brightBlack: 0 + brightRed: 47.4 + brightGreen: 67.5 + brightYellow: 100.7 + brightBlue: 31.8 + brightMagenta: 23.9 + brightCyan: 18.8 + brightWhite: 104.5 diff --git a/themes/shadcn-violet-light.yaml b/themes/shadcn-violet-light.yaml new file mode 100644 index 00000000..c05b478b --- /dev/null +++ b/themes/shadcn-violet-light.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Violet Light" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#FFFFFF" + fg: "#09090B" + black: "#FFFFFF" + red: "#E7000B" + green: "#8E51FF" + yellow: "#C4B4FF" + blue: "#A684FF" + magenta: "#7008E7" + cyan: "#5D0EC0" + white: "#09090B" + brightBlack: "#F4F4F5" + brightRed: "#E7000B" + brightGreen: "#C4B4FF" + brightYellow: "#F5F3FF" + brightBlue: "#7F22FE" + brightMagenta: "#7F22FE" + brightCyan: "#7008E7" + brightWhite: "#09090B" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 105.9 + black: 0 + red: 70.1 + green: 69.8 + yellow: 34.9 + blue: 54.4 + magenta: 83 + cyan: 89.2 + white: 105.9 + brightBlack: 0 + brightRed: 70.1 + brightGreen: 34.9 + brightYellow: 0 + brightBlue: 77.7 + brightMagenta: 77.7 + brightCyan: 83 + brightWhite: 105.9 diff --git a/themes/shadcn-vivid.yaml b/themes/shadcn-vivid.yaml new file mode 100644 index 00000000..e2403455 --- /dev/null +++ b/themes/shadcn-vivid.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Vivid" +source: + marketplace_id: "chiziaruhoma.shadcn-vivid-theme" + version: "0.1.1" + installs: 598 + author: "Chiziaruhoma Ogbonda" + repo: "https://github.com/zfinix/shadcn-vivid-theme" + url: "https://marketplace.visualstudio.com/items?itemName=chiziaruhoma.shadcn-vivid-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#EF4444" + green: "#22C55E" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#00D9FF" + white: "#E2E8F0" + brightBlack: "#5A6677" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FBBF24" + brightBlue: "#B4ADFF" + brightMagenta: "#D946EF" + brightCyan: "#22D3EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.8 + green: 57.8 + yellow: 60.5 + blue: 37.8 + magenta: 35.4 + cyan: 73.3 + white: 92.5 + brightBlack: 22.6 + brightRed: 49.1 + brightGreen: 71.5 + brightYellow: 73.7 + brightBlue: 63 + brightMagenta: 40.7 + brightCyan: 69.6 + brightWhite: 107.9 diff --git a/themes/shadcn-yellow-dark.yaml b/themes/shadcn-yellow-dark.yaml new file mode 100644 index 00000000..d1154b6c --- /dev/null +++ b/themes/shadcn-yellow-dark.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Yellow Dark" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#09090B" + fg: "#FAFAFA" + black: "#09090B" + red: "#FF6467" + green: "#F0B100" + yellow: "#FFDF20" + blue: "#733E0A" + magenta: "#D08700" + cyan: "#894B00" + white: "#FAFAFA" + brightBlack: "#27272A" + brightRed: "#FF6467" + brightGreen: "#FFDF20" + brightYellow: "#733E0A" + brightBlue: "#F0B100" + brightMagenta: "#FBF0DC" + brightCyan: "#D08700" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.5 + black: 0 + red: 47.4 + green: 66.2 + yellow: 87.7 + blue: 12.7 + magenta: 46.2 + cyan: 18.6 + white: 104.5 + brightBlack: 0 + brightRed: 47.4 + brightGreen: 87.7 + brightYellow: 12.7 + brightBlue: 66.2 + brightMagenta: 98.6 + brightCyan: 46.2 + brightWhite: 104.5 diff --git a/themes/shadcn-yellow-light.yaml b/themes/shadcn-yellow-light.yaml new file mode 100644 index 00000000..673baf41 --- /dev/null +++ b/themes/shadcn-yellow-light.yaml @@ -0,0 +1,49 @@ +name: "Shadcn Yellow Light" +source: + marketplace_id: "Muhammad-Sulman.prism-vscode-themes" + version: "0.0.1" + installs: 51 + author: "Muhammad-Sulman" + repo: "https://github.com/yourrepo/prism-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" +colors: + bg: "#FFFFFF" + fg: "#09090B" + black: "#FFFFFF" + red: "#E7000B" + green: "#F0B100" + yellow: "#FFDF20" + blue: "#FDC700" + magenta: "#D08700" + cyan: "#894B00" + white: "#09090B" + brightBlack: "#F4F4F5" + brightRed: "#E7000B" + brightGreen: "#FFDF20" + brightYellow: "#733E0A" + brightBlue: "#FDC700" + brightMagenta: "#FBF0DC" + brightCyan: "#D08700" + brightWhite: "#09090B" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.9 + black: 0 + red: 70.1 + green: 36.1 + yellow: 15.9 + blue: 25.8 + magenta: 55.5 + cyan: 83.2 + white: 105.9 + brightBlack: 0 + brightRed: 70.1 + brightGreen: 15.9 + brightYellow: 89.4 + brightBlue: 25.8 + brightMagenta: 0 + brightCyan: 55.5 + brightWhite: 105.9 diff --git a/themes/shaddy-lighta.yaml b/themes/shaddy-lighta.yaml new file mode 100644 index 00000000..29bf4203 --- /dev/null +++ b/themes/shaddy-lighta.yaml @@ -0,0 +1,49 @@ +name: "Shaddy LightA" +source: + marketplace_id: "Francisco.shaddy" + version: "0.1.0" + installs: 17 + author: "Francisco" + repo: "https://github.com/franciscoamado/shaddy-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Francisco.shaddy" +colors: + bg: "#FAFAFA" + fg: "#0A0A0A" + black: "#F5F5F5" + red: "#DC2626" + green: "#16A34A" + yellow: "#FACC15" + blue: "#2563EB" + magenta: "#E11D48" + cyan: "#0891B2" + white: "#0A0A0A" + brightBlack: "#FAFAFA" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#FDE047" + brightBlue: "#3B82F6" + brightMagenta: "#F43F5E" + brightCyan: "#06B6D4" + brightWhite: "#0A0A0A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.9 + black: 0 + red: 68.6 + green: 56.7 + yellow: 21.4 + blue: 71.9 + magenta: 67.5 + cyan: 60.8 + white: 102.9 + brightBlack: 0 + brightRed: 60.8 + brightGreen: 41.3 + brightYellow: 12.6 + brightBlue: 60.9 + brightMagenta: 59.9 + brightCyan: 44.2 + brightWhite: 102.9 diff --git a/themes/shaddy.yaml b/themes/shaddy.yaml new file mode 100644 index 00000000..572f0dd2 --- /dev/null +++ b/themes/shaddy.yaml @@ -0,0 +1,49 @@ +name: "Shaddy" +source: + marketplace_id: "Francisco.shaddy" + version: "0.1.0" + installs: 17 + author: "Francisco" + repo: "https://github.com/franciscoamado/shaddy-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Francisco.shaddy" +colors: + bg: "#0A0A0A" + fg: "#FAFAFA" + black: "#0A0A0A" + red: "#DC2626" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#F87171" + cyan: "#06B6D4" + white: "#FAFAFA" + brightBlack: "#030712" + brightRed: "#EF4444" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#FB7185" + brightCyan: "#22D3EE" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.4 + black: 0 + red: 30 + green: 57.7 + yellow: 66 + blue: 37.6 + magenta: 49 + cyan: 54.7 + white: 104.4 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 71.3 + brightYellow: 78.6 + brightBlue: 52.2 + brightMagenta: 50.1 + brightCyan: 69.4 + brightWhite: 104.4 diff --git a/themes/shade-theme.yaml b/themes/shade-theme.yaml new file mode 100644 index 00000000..35515eea --- /dev/null +++ b/themes/shade-theme.yaml @@ -0,0 +1,49 @@ +name: "Shade Theme" +source: + marketplace_id: "RLabsInc.rlabs-theme-collection" + version: "0.1.4" + installs: 181 + author: "RLabs Inc." + repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" + url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" +colors: + bg: "#171717" + fg: "#FFFFFF" + black: "#292929" + red: "#FF8686" + green: "#7BD1AA" + yellow: "#FFC59E" + blue: "#78A4BD" + magenta: "#85669F" + cyan: "#76A9AC" + white: "#FFFFFF" + brightBlack: "#AAAAAA" + brightRed: "#FF7575" + brightGreen: "#96FED0" + brightYellow: "#FFEFB7" + brightBlue: "#A6D9F7" + brightMagenta: "#B595D1" + brightCyan: "#9CC5C4" + brightWhite: "#C9C6C9" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 106.9 + black: 0 + red: 55.5 + green: 67.8 + yellow: 77.7 + blue: 48.9 + magenta: 27.6 + cyan: 50 + white: 106.9 + brightBlack: 55.2 + brightRed: 50.6 + brightGreen: 93.1 + brightYellow: 96.5 + brightBlue: 78.3 + brightMagenta: 50.8 + brightCyan: 66 + brightWhite: 71.6 diff --git a/themes/shades-of-blue.yaml b/themes/shades-of-blue.yaml new file mode 100644 index 00000000..6a6551c4 --- /dev/null +++ b/themes/shades-of-blue.yaml @@ -0,0 +1,49 @@ +name: "Shades-Of-Blue" +source: + marketplace_id: "bakrimoharram.shades-of-blue" + version: "0.0.6" + installs: 1964 + author: "bakrimoharram" + repo: "https://github.com/bakrimoharram/shades-of-blue" + url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.shades-of-blue" +colors: + bg: "#172243" + fg: "#4782C0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#AFBAD9" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 268 + contrast: + fg: 31.6 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.8 + blue: 25.6 + magenta: 28 + cyan: 45.8 + white: 62.5 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.2 + brightMagenta: 43.6 + brightCyan: 53.6 + brightWhite: 88.2 diff --git a/themes/shades-of-cyan-theme.yaml b/themes/shades-of-cyan-theme.yaml new file mode 100644 index 00000000..3524be8a --- /dev/null +++ b/themes/shades-of-cyan-theme.yaml @@ -0,0 +1,49 @@ +name: "Shades of Cyan theme" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#00101A" + fg: "#C4D8E2" + black: "#606060" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#C2C2C2" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 233 + contrast: + fg: 80.5 + black: 20.1 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.1 + white: 90.6 + brightBlack: 69.4 + brightRed: 39.2 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/shades-of-gravy.yaml b/themes/shades-of-gravy.yaml new file mode 100644 index 00000000..af41e111 --- /dev/null +++ b/themes/shades-of-gravy.yaml @@ -0,0 +1,49 @@ +name: "Shades Of Gravy" +source: + marketplace_id: "Mr-Icecream.shades-of-gravy" + version: "1.1.0" + installs: 865 + author: "Mr. Icecream" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Mr-Icecream.shades-of-gravy" +colors: + bg: "#444649" + fg: "#C5C7C1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.5 + black: 12 + red: 16 + green: 42.3 + yellow: 74.9 + blue: 16.7 + magenta: 19.1 + cyan: 36.9 + white: 79.3 + brightBlack: 11.4 + brightRed: 27.9 + brightGreen: 52.9 + brightYellow: 85 + brightBlue: 29.3 + brightMagenta: 34.7 + brightCyan: 44.7 + brightWhite: 79.3 diff --git a/themes/shades-of-life-light.yaml b/themes/shades-of-life-light.yaml new file mode 100644 index 00000000..926f9987 --- /dev/null +++ b/themes/shades-of-life-light.yaml @@ -0,0 +1,49 @@ +name: "Shades of Life (Light)" +source: + marketplace_id: "rafael-bertelli-borges.shades-of-life" + version: "0.0.2" + installs: 92 + author: "Rafael Bertelli Borges" + repo: "https://github.com/rafaelbertelli/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=rafael-bertelli-borges.shades-of-life" +colors: + bg: "#EEECEC" + fg: "#271718" + black: "#000000" + red: "#5E2B22" + green: "#00A74E" + yellow: "#41481E" + blue: "#41287D" + magenta: "#3A1E48" + cyan: "#276B6B" + white: "#C48100" + brightBlack: "#464646" + brightRed: "#FF5C3E" + brightGreen: "#00AD52" + brightYellow: "#728A00" + brightBlue: "#8F60FF" + brightMagenta: "#9E2AD7" + brightCyan: "#009D9D" + brightWhite: "#898900" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 93 + black: 95 + red: 84.9 + green: 47 + yellow: 81.4 + blue: 85 + magenta: 89.9 + cyan: 69.5 + white: 48.3 + brightBlack: 80.8 + brightRed: 45.4 + brightGreen: 44.4 + brightYellow: 55.4 + brightBlue: 55.5 + brightMagenta: 65.5 + brightCyan: 49 + brightWhite: 53.6 diff --git a/themes/shades-of-life.yaml b/themes/shades-of-life.yaml new file mode 100644 index 00000000..7e706842 --- /dev/null +++ b/themes/shades-of-life.yaml @@ -0,0 +1,49 @@ +name: "Shades of Life" +source: + marketplace_id: "rafael-bertelli-borges.shades-of-life" + version: "0.0.2" + installs: 92 + author: "Rafael Bertelli Borges" + repo: "https://github.com/rafaelbertelli/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=rafael-bertelli-borges.shades-of-life" +colors: + bg: "#1D0A2F" + fg: "#E0E0E0" + black: "#000000" + red: "#FF3A00" + green: "#00FF50" + yellow: "#FFCC00" + blue: "#00CCFF" + magenta: "#880088" + cyan: "#00BCD4" + white: "#FFFFFF" + brightBlack: "#757575" + brightRed: "#FF3A00" + brightGreen: "#00FF50" + brightYellow: "#FFCC00" + brightBlue: "#00CCFF" + brightMagenta: "#880088" + brightCyan: "#00BCD4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 304 + contrast: + fg: 87 + black: 0 + red: 39.2 + green: 86 + yellow: 78.7 + blue: 66.3 + magenta: 13.5 + cyan: 56.6 + white: 107 + brightBlack: 28.8 + brightRed: 39.2 + brightGreen: 86 + brightYellow: 78.7 + brightBlue: 66.3 + brightMagenta: 13.5 + brightCyan: 56.6 + brightWhite: 107 diff --git a/themes/shades-of-midnight-blue-dark-theme.yaml b/themes/shades-of-midnight-blue-dark-theme.yaml new file mode 100644 index 00000000..5c014870 --- /dev/null +++ b/themes/shades-of-midnight-blue-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Shades of Midnight Blue dark theme" +source: + marketplace_id: "moondevaa.shadesofmidnightbluedarktheme" + version: "0.5.8" + installs: 17308 + author: "moondevaa" + repo: "https://github.com/AaBbdev29/shades-of-midnight-blue-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.shadesofmidnightbluedarktheme" +colors: + bg: "#00001C" + fg: "#DDE7A0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 88.2 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/shades-of-violet.yaml b/themes/shades-of-violet.yaml new file mode 100644 index 00000000..a611c236 --- /dev/null +++ b/themes/shades-of-violet.yaml @@ -0,0 +1,49 @@ +name: "shades-of-violet" +source: + marketplace_id: "bakrimoharram.shades-of-violet" + version: "0.0.1" + installs: 2951 + author: "bakrimoharram" + repo: "https://github.com/bakrimoharram/purple-blue-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.shades-of-violet" +colors: + bg: "#1C1728" + fg: "#D1C7D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 297 + contrast: + fg: 73.2 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/shades.yaml b/themes/shades.yaml new file mode 100644 index 00000000..ea4119db --- /dev/null +++ b/themes/shades.yaml @@ -0,0 +1,49 @@ +name: "Shades" +source: + marketplace_id: "YesCode.shadesTheme" + version: "0.0.13" + installs: 3082 + author: "YesCode" + repo: "https://github.com/yesomac/ShadesThemeVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.shadesTheme" +colors: + bg: "#0B0C0B" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#CFBDFA" + brightYellow: "#E7F0FF" + brightBlue: "#1E8094" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 105.4 + black: 0 + red: 42.8 + green: 61.8 + yellow: 73.9 + blue: 48.3 + magenta: 20.3 + cyan: 50.2 + white: 48 + brightBlack: 19.4 + brightRed: 42.8 + brightGreen: 72 + brightYellow: 97.4 + brightBlue: 29.9 + brightMagenta: 20.3 + brightCyan: 50.2 + brightWhite: 99.7 diff --git a/themes/shadowborn.yaml b/themes/shadowborn.yaml new file mode 100644 index 00000000..8cb15e36 --- /dev/null +++ b/themes/shadowborn.yaml @@ -0,0 +1,49 @@ +name: "Shadowborn" +source: + marketplace_id: "RyzenFromFire.vscode-shadowborn-theme" + version: "1.0.2" + installs: 438 + author: "RyzenFromFire" + repo: "https://github.com/RyzenFromFire/vscode-shadowborn" + url: "https://marketplace.visualstudio.com/items?itemName=RyzenFromFire.vscode-shadowborn-theme" +colors: + bg: "#202023" + fg: "#CCCCCC" + black: "#0D0F0F" + red: "#BC0104" + green: "#4AAA27" + yellow: "#FE9109" + blue: "#0E386E" + magenta: "#942661" + cyan: "#10A2BF" + white: "#E5E5E5" + brightBlack: "#72504B" + brightRed: "#FB4934" + brightGreen: "#80E847" + brightYellow: "#FABD2F" + brightBlue: "#0287FF" + brightMagenta: "#D600BC" + brightCyan: "#28D9FF" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.5 + black: 0 + red: 19.5 + green: 43.7 + yellow: 55.8 + blue: 0 + magenta: 14.1 + cyan: 43.2 + white: 88.9 + brightBlack: 15.3 + brightRed: 39 + brightGreen: 76 + brightYellow: 70.6 + brightBlue: 37.3 + brightMagenta: 30.3 + brightCyan: 71.3 + brightWhite: 97.2 diff --git a/themes/shadowscape.yaml b/themes/shadowscape.yaml new file mode 100644 index 00000000..406b1bc9 --- /dev/null +++ b/themes/shadowscape.yaml @@ -0,0 +1,49 @@ +name: "Shadowscape" +source: + marketplace_id: "KJS-Officials.shadowscape" + version: "0.0.1" + installs: 104 + author: "KJS - Officials" + repo: "https://github.com/ShKev03/Shadowscape" + url: "https://marketplace.visualstudio.com/items?itemName=KJS-Officials.shadowscape" +colors: + bg: "#1C1F1E" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0079FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EAEAEA" + brightBlack: "#0F0F0F" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 106 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 32.9 + magenta: 28.9 + cyan: 46.7 + white: 92.3 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 106 diff --git a/themes/shadowspectrum.yaml b/themes/shadowspectrum.yaml new file mode 100644 index 00000000..31d79d41 --- /dev/null +++ b/themes/shadowspectrum.yaml @@ -0,0 +1,49 @@ +name: "ShadowSpectrum" +source: + marketplace_id: "ShadowSpectrum.shadow-dev" + version: "0.20.0" + installs: 69 + author: "ShadowSpectrum" + repo: "https://github.com/alvin-dennis/shadow-dev" + url: "https://marketplace.visualstudio.com/items?itemName=ShadowSpectrum.shadow-dev" +colors: + bg: "#0B0A0A" + fg: "#FFFFFF" + black: "#131212" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BEBABA" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.7 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 65.5 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/shamrock.yaml b/themes/shamrock.yaml new file mode 100644 index 00000000..2ed8d293 --- /dev/null +++ b/themes/shamrock.yaml @@ -0,0 +1,49 @@ +name: "Shamrock" +source: + marketplace_id: "DymNomZ.dymnomz-shamrock" + version: "2.0.2" + installs: 202 + author: "DymNomZ" + repo: "https://github.com/DymNomZ/Shamrock" + url: "https://marketplace.visualstudio.com/items?itemName=DymNomZ.dymnomz-shamrock" +colors: + bg: "#001A0C" + fg: "#00913D" + black: "#001A0C" + red: "#F36C43" + green: "#007A33" + yellow: "#C4AD54" + blue: "#00913D" + magenta: "#FFE372" + cyan: "#D4FFD7" + white: "#E8F5E9" + brightBlack: "#02381B" + brightRed: "#FF8F70" + brightGreen: "#4D9E68" + brightYellow: "#FFE372" + brightBlue: "#6BCF8E" + brightMagenta: "#FFF0B3" + brightCyan: "#E8F5E9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 158 + contrast: + fg: 33.2 + black: 0 + red: 45.1 + green: 24 + yellow: 57.5 + blue: 33.2 + magenta: 89.4 + cyan: 99.7 + white: 98 + brightBlack: 0 + brightRed: 57.6 + brightGreen: 40.8 + brightYellow: 89.4 + brightBlue: 65 + brightMagenta: 96.9 + brightCyan: 98 + brightWhite: 106.9 diff --git a/themes/sharkdark-theme.yaml b/themes/sharkdark-theme.yaml new file mode 100644 index 00000000..ef74cc67 --- /dev/null +++ b/themes/sharkdark-theme.yaml @@ -0,0 +1,49 @@ +name: "Sharkdark Theme" +source: + marketplace_id: "Sharkdark.sharkdark" + version: "0.0.1" + installs: 351 + author: "Sharkdark" + repo: "https://github.com/dann-dann/sharkdark" + url: "https://marketplace.visualstudio.com/items?itemName=Sharkdark.sharkdark" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF595E" + green: "#CEF144" + yellow: "#FDA331" + blue: "#AD9CFF" + magenta: "#D381C3" + cyan: "#76C7B7" + white: "#FAFAFA" + brightBlack: "#B0B0B0" + brightRed: "#FB0120" + brightGreen: "#A1C659" + brightYellow: "#FDA331" + brightBlue: "#729FCF" + brightMagenta: "#D381C3" + brightCyan: "#76C7B7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 45.3 + green: 89.7 + yellow: 63.8 + blue: 56 + magenta: 49.3 + cyan: 64.4 + white: 104.6 + brightBlack: 59.5 + brightRed: 36.6 + brightGreen: 64.9 + brightYellow: 63.8 + brightBlue: 48.5 + brightMagenta: 49.3 + brightCyan: 64.4 + brightWhite: 107.9 diff --git a/themes/sharpblue.yaml b/themes/sharpblue.yaml new file mode 100644 index 00000000..a7abcf09 --- /dev/null +++ b/themes/sharpblue.yaml @@ -0,0 +1,49 @@ +name: "SharpBlue" +source: + marketplace_id: "Katy248.sharpblue-theme" + version: "0.0.2" + installs: 20 + author: "Katy248" + repo: "https://github.com/Katy248/SharpBlue-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=Katy248.sharpblue-theme" +colors: + bg: "#081921" + fg: "#FDF9F7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 230 + contrast: + fg: 103.3 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.6 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 90 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 90 diff --git a/themes/sheme.yaml b/themes/sheme.yaml new file mode 100644 index 00000000..4594c202 --- /dev/null +++ b/themes/sheme.yaml @@ -0,0 +1,49 @@ +name: "Sheme" +source: + marketplace_id: "shoedler.sheme" + version: "1.0.2" + installs: 89 + author: "shoedler" + repo: "https://github.com/shoedler/vscode-sheme" + url: "https://marketplace.visualstudio.com/items?itemName=shoedler.sheme" +colors: + bg: "#0F111A" + fg: "#7F849C" + black: "#000000" + red: "#F33A59" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#F33A59" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 36.6 + black: 0 + red: 37.4 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 37.4 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/shibainu-dark.yaml b/themes/shibainu-dark.yaml new file mode 100644 index 00000000..528854a8 --- /dev/null +++ b/themes/shibainu-dark.yaml @@ -0,0 +1,49 @@ +name: "ShibaInu Dark" +source: + marketplace_id: "hky.theme-ShibaInu" + version: "0.1.0" + installs: 311 + author: "hky" + repo: "https://github.com/hky301/vscode-theme-koki" + url: "https://marketplace.visualstudio.com/items?itemName=hky.theme-ShibaInu" +colors: + bg: "#0E0F11" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#DB889A" + cyan: "#5EAAB5" + white: "#FFFFFF" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#DB889A" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 81.9 + black: 0 + red: 41.4 + green: 37.3 + yellow: 76.2 + blue: 42 + magenta: 50.5 + cyan: 49.9 + white: 107.5 + brightBlack: 30.2 + brightRed: 41.4 + brightGreen: 37.3 + brightYellow: 76.2 + brightBlue: 42 + brightMagenta: 50.5 + brightCyan: 49.9 + brightWhite: 107.5 diff --git a/themes/shibuya.yaml b/themes/shibuya.yaml new file mode 100644 index 00000000..de146ddd --- /dev/null +++ b/themes/shibuya.yaml @@ -0,0 +1,49 @@ +name: "Shibuya" +source: + marketplace_id: "jeroen-meijer.shibuya" + version: "1.0.2" + installs: 9101 + author: "Jeroen Meijer" + repo: "https://github.com/jeroen-meijer/shibuya" + url: "https://marketplace.visualstudio.com/items?itemName=jeroen-meijer.shibuya" +colors: + bg: "#0C0D12" + fg: "#C7CCD4" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 276 + contrast: + fg: 75.1 + black: 0 + red: 50.6 + green: 47.1 + yellow: 63.5 + blue: 52.4 + magenta: 56.3 + cyan: 71.8 + white: 33.3 + brightBlack: 0 + brightRed: 50.6 + brightGreen: 47.1 + brightYellow: 63.5 + brightBlue: 52.4 + brightMagenta: 56.3 + brightCyan: 71.8 + brightWhite: 60.2 diff --git a/themes/shifting-sands.yaml b/themes/shifting-sands.yaml new file mode 100644 index 00000000..a9ab81a0 --- /dev/null +++ b/themes/shifting-sands.yaml @@ -0,0 +1,49 @@ +name: "Shifting Sands" +source: + marketplace_id: "MrLizardAndCompany.shifting-sands" + version: "0.2.6" + installs: 394 + author: "Mr Lizard & Company" + repo: "https://github.com/webstek/shifting_sands" + url: "https://marketplace.visualstudio.com/items?itemName=MrLizardAndCompany.shifting-sands" +colors: + bg: "#D1B799" + fg: "#534F4F" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: 71 + contrast: + fg: 49.2 + black: 66.6 + red: 0 + green: 25 + yellow: 29.8 + blue: 15.4 + magenta: 8.9 + cyan: 30 + white: 8.8 + brightBlack: 59.9 + brightRed: 10.4 + brightGreen: 20.9 + brightYellow: 24.6 + brightBlue: 0 + brightMagenta: 11.8 + brightCyan: 27.9 + brightWhite: 41 diff --git a/themes/shiina.yaml b/themes/shiina.yaml new file mode 100644 index 00000000..be098da0 --- /dev/null +++ b/themes/shiina.yaml @@ -0,0 +1,49 @@ +name: "shiina" +source: + marketplace_id: "yarnaimo.shiina-theme" + version: "0.1.3" + installs: 108 + author: "yamaimo" + repo: "https://github.com/yarnaimo/shiina" + url: "https://marketplace.visualstudio.com/items?itemName=yarnaimo.shiina-theme" +colors: + bg: "#F5F5F5" + fg: "#434E55" + black: "#434E55" + red: "#E53935" + green: "#39C2A0" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#EE5F9B" + cyan: "#38AEC0" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#39C2A0" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#EE5F9B" + brightCyan: "#38AEC0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 83.4 + black: 83.4 + red: 61.7 + green: 37.7 + yellow: 25.8 + blue: 60.3 + magenta: 51.4 + cyan: 45 + white: 0 + brightBlack: 44.7 + brightRed: 61.7 + brightGreen: 37.7 + brightYellow: 25.8 + brightBlue: 60.3 + brightMagenta: 51.4 + brightCyan: 45 + brightWhite: 0 diff --git a/themes/shinjuku-colored-brackets.yaml b/themes/shinjuku-colored-brackets.yaml new file mode 100644 index 00000000..52bcb376 --- /dev/null +++ b/themes/shinjuku-colored-brackets.yaml @@ -0,0 +1,49 @@ +name: "Shinjuku Colored Brackets" +source: + marketplace_id: "SamirRoy.shinjuku-vscode-theme" + version: "0.1.5" + installs: 398 + author: "Samir Roy" + repo: "https://github.com/samir-roy/shinjuku-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SamirRoy.shinjuku-vscode-theme" +colors: + bg: "#191922" + fg: "#D8DEE9" + black: "#090300" + red: "#E6483C" + green: "#00BC5E" + yellow: "#FFF56A" + blue: "#01A0E4" + magenta: "#BB5DA5" + cyan: "#8EE3FF" + white: "#A5A2A2" + brightBlack: "#5C5855" + brightRed: "#F94A3D" + brightGreen: "#00C964" + brightYellow: "#FFF454" + brightBlue: "#01A0E4" + brightMagenta: "#D85CB7" + brightCyan: "#B5E4F4" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 85.1 + black: 0 + red: 34.9 + green: 52.1 + yellow: 97.2 + blue: 45.4 + magenta: 33.3 + cyan: 81.1 + white: 51 + brightBlack: 16.2 + brightRed: 39.6 + brightGreen: 58.3 + brightYellow: 96.5 + brightBlue: 45.4 + brightMagenta: 39.3 + brightCyan: 84.4 + brightWhite: 101.3 diff --git a/themes/shinkai.yaml b/themes/shinkai.yaml new file mode 100644 index 00000000..5af54175 --- /dev/null +++ b/themes/shinkai.yaml @@ -0,0 +1,49 @@ +name: "Shinkai" +source: + marketplace_id: "TobiasTimm.umi" + version: "1.1.2" + installs: 2886 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/umi" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.umi" +colors: + bg: "#02112B" + fg: "#D4D4D4" + black: "#6F7899" + red: "#F1888E" + green: "#12D8C3" + yellow: "#FFEDCB" + blue: "#15BDDB" + magenta: "#9DA5E8" + cyan: "#D6E9FF" + white: "#FFFFFF" + brightBlack: "#6F7899" + brightRed: "#F1888E" + brightGreen: "#12D8C3" + brightYellow: "#FFEDCB" + brightBlue: "#15BDDB" + brightMagenta: "#9DA5E8" + brightCyan: "#D6E9FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 258 + contrast: + fg: 79.8 + black: 30.8 + red: 53.9 + green: 69.1 + yellow: 96.6 + blue: 57.7 + magenta: 55.3 + cyan: 91.5 + white: 107.2 + brightBlack: 30.8 + brightRed: 53.9 + brightGreen: 69.1 + brightYellow: 96.6 + brightBlue: 57.7 + brightMagenta: 55.3 + brightCyan: 91.5 + brightWhite: 107.2 diff --git a/themes/ship-dark.yaml b/themes/ship-dark.yaml new file mode 100644 index 00000000..0dc74e9a --- /dev/null +++ b/themes/ship-dark.yaml @@ -0,0 +1,49 @@ +name: "SHIP-dark" +source: + marketplace_id: "SHIPAI.shipai" + version: "0.0.1" + installs: 95 + author: "SHIP.AI" + repo: "https://github.com/vkyprmr/ship-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SHIPAI.shipai" +colors: + bg: "#171C26" + fg: "#E2E8F0" + black: "#000000" + red: "#B40000" + green: "#019746" + yellow: "#DAB22E" + blue: "#064A9A" + magenta: "#A4005D" + cyan: "#006EC8" + white: "#DEDEDE" + brightBlack: "#3D4454" + brightRed: "#FF0400" + brightGreen: "#00FF6E" + brightYellow: "#FFEC00" + brightBlue: "#0077FF" + brightMagenta: "#FA8685" + brightCyan: "#009DFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 90.9 + black: 0 + red: 18.3 + green: 35.2 + yellow: 61.7 + blue: 11.9 + magenta: 16.1 + cyan: 25.3 + white: 85.1 + brightBlack: 8.2 + brightRed: 36 + brightGreen: 85.7 + brightYellow: 92.1 + brightBlue: 32.6 + brightMagenta: 53.9 + brightCyan: 45.8 + brightWhite: 106.3 diff --git a/themes/ship-light.yaml b/themes/ship-light.yaml new file mode 100644 index 00000000..798fed9d --- /dev/null +++ b/themes/ship-light.yaml @@ -0,0 +1,49 @@ +name: "SHIP-light" +source: + marketplace_id: "SHIPAI.shipai" + version: "0.0.1" + installs: 95 + author: "SHIP.AI" + repo: "https://github.com/vkyprmr/ship-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SHIPAI.shipai" +colors: + bg: "#E2E8F0" + fg: "#171C26" + black: "#000000" + red: "#B40000" + green: "#019746" + yellow: "#DAB22E" + blue: "#064A9A" + magenta: "#A4005D" + cyan: "#006EC8" + white: "#DEDEDE" + brightBlack: "#3D4454" + brightRed: "#FF0400" + brightGreen: "#00FF6E" + brightYellow: "#FFEC00" + brightBlue: "#0077FF" + brightMagenta: "#FA8685" + brightCyan: "#009DFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: 256 + contrast: + fg: 90 + black: 92.1 + red: 68 + green: 50.9 + yellow: 25.1 + blue: 74.8 + magenta: 70.3 + cyan: 60.9 + white: 0 + brightBlack: 78.6 + brightRed: 50.1 + brightGreen: 0 + brightYellow: 0 + brightBlue: 53.5 + brightMagenta: 32.6 + brightCyan: 40.4 + brightWhite: 13.4 diff --git a/themes/shirotelin.yaml b/themes/shirotelin.yaml new file mode 100644 index 00000000..f7745127 --- /dev/null +++ b/themes/shirotelin.yaml @@ -0,0 +1,49 @@ +name: "shirotelin" +source: + marketplace_id: "yasukotelin.shirotelin" + version: "2.12.0" + installs: 1134 + author: "yasukotelin" + repo: "https://github.com/yasukotelin/shirotelin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=yasukotelin.shirotelin" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#FF0000" + green: "#005F00" + yellow: "#7A7946" + blue: "#0000AF" + magenta: "#AF00AF" + cyan: "#005F5F" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#005F00" + brightYellow: "#7A7946" + brightBlue: "#0000AF" + brightMagenta: "#AF00AF" + brightCyan: "#005F5F" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 106 + black: 106 + red: 64.1 + green: 86.9 + yellow: 71.3 + blue: 96.1 + magenta: 78 + cyan: 85.5 + white: 0 + brightBlack: 106 + brightRed: 64.1 + brightGreen: 86.9 + brightYellow: 71.3 + brightBlue: 96.1 + brightMagenta: 78 + brightCyan: 85.5 + brightWhite: 0 diff --git a/themes/shiv-vscode-theme.yaml b/themes/shiv-vscode-theme.yaml new file mode 100644 index 00000000..0b9ffa3c --- /dev/null +++ b/themes/shiv-vscode-theme.yaml @@ -0,0 +1,49 @@ +name: "shiv-vscode-theme" +source: + marketplace_id: "shivanandasai.shiv-vscode-theme" + version: "0.0.1" + installs: 64 + author: "shivananda sai" + repo: "https://github.com/ssk090/shiv-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shivanandasai.shiv-vscode-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BCBCBC" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 66.3 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/shivam.yaml b/themes/shivam.yaml new file mode 100644 index 00000000..1e16fa5a --- /dev/null +++ b/themes/shivam.yaml @@ -0,0 +1,49 @@ +name: "SHIVAM" +source: + marketplace_id: "youcancallmeEvans.shivamvscodetheme" + version: "0.0.1" + installs: 82 + author: "Shiva" + repo: "https://github.com/youcancallmeEvans/shivamvscodetheme" + url: "https://marketplace.visualstudio.com/items?itemName=youcancallmeEvans.shivamvscodetheme" +colors: + bg: "#1F1D1D" + fg: "#AF8BFF" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 48.9 + black: 0 + red: 37.9 + green: 85.3 + yellow: 90.5 + blue: 36.7 + magenta: 44.4 + cyan: 75.3 + white: 50.7 + brightBlack: 21.3 + brightRed: 46.4 + brightGreen: 91.8 + brightYellow: 78.7 + brightBlue: 70.8 + brightMagenta: 66.1 + brightCyan: 88.9 + brightWhite: 72.1 diff --git a/themes/shoxwave.yaml b/themes/shoxwave.yaml new file mode 100644 index 00000000..ee2c51c8 --- /dev/null +++ b/themes/shoxwave.yaml @@ -0,0 +1,49 @@ +name: "shoxwave" +source: + marketplace_id: "Shoxwave.shoxwave-vscode-theme" + version: "0.0.2" + installs: 25 + author: "Colt Shivers" + repo: "https://github.com/shoxwave/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Shoxwave.shoxwave-vscode-theme" +colors: + bg: "#646464" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 57.4 + black: 24.4 + red: 0 + green: 31 + yellow: 63.6 + blue: 0 + magenta: 7.7 + cyan: 25.5 + white: 68 + brightBlack: 0 + brightRed: 16.5 + brightGreen: 41.5 + brightYellow: 73.6 + brightBlue: 18 + brightMagenta: 23.3 + brightCyan: 33.4 + brightWhite: 68 diff --git a/themes/shrek-contrast.yaml b/themes/shrek-contrast.yaml new file mode 100644 index 00000000..53403daf --- /dev/null +++ b/themes/shrek-contrast.yaml @@ -0,0 +1,49 @@ +name: "shrek-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#B2DE62" + yellow: "#857A5E" + blue: "#F0F2EB" + magenta: "#BFB59B" + cyan: "#B2DE62" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#DBF0B6" + brightYellow: "#B4AB95" + brightBlue: "#FFFFFF" + brightMagenta: "#E7E3D9" + brightCyan: "#DBF0B6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 21.5 + green: 77.8 + yellow: 32.3 + blue: 98.7 + magenta: 62.6 + cyan: 77.8 + white: 107.9 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 93 + brightYellow: 57.1 + brightBlue: 107.9 + brightMagenta: 89.9 + brightCyan: 93 + brightWhite: 107.9 diff --git a/themes/shrek-light.yaml b/themes/shrek-light.yaml new file mode 100644 index 00000000..43765f6a --- /dev/null +++ b/themes/shrek-light.yaml @@ -0,0 +1,49 @@ +name: "shrek-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#222222" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#B2DE62" + yellow: "#857A5E" + blue: "#AFB2A7" + magenta: "#BFB59B" + cyan: "#B2DE62" + white: "#2F2F2F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DBF0B6" + brightYellow: "#B4AB95" + brightBlue: "#E0E2DD" + brightMagenta: "#E7E3D9" + brightCyan: "#DBF0B6" + brightWhite: "#555555" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.9 + black: 0 + red: 80.3 + green: 25.3 + yellow: 69.4 + blue: 42.3 + magenta: 39.7 + cyan: 25.3 + white: 99.8 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 11.1 + brightYellow: 45 + brightBlue: 15.1 + brightMagenta: 14 + brightCyan: 11.1 + brightWhite: 85.9 diff --git a/themes/shrek.yaml b/themes/shrek.yaml new file mode 100644 index 00000000..bf67f0d0 --- /dev/null +++ b/themes/shrek.yaml @@ -0,0 +1,49 @@ +name: "Shrek" +source: + marketplace_id: "jeooo.shrekk" + version: "0.0.2" + installs: 295 + author: "jeooo`" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jeooo.shrekk" +colors: + bg: "#B0C400" + fg: "#523213" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 117 + contrast: + fg: 56.8 + black: 66.5 + red: 34.5 + green: 9.7 + yellow: 18.4 + blue: 46.5 + magenta: 35.1 + cyan: 21.1 + white: 46.4 + brightBlack: 39.2 + brightRed: 34.5 + brightGreen: 0 + brightYellow: 0 + brightBlue: 46.5 + brightMagenta: 35.1 + brightCyan: 21.1 + brightWhite: 8.9 diff --git a/themes/shuri-midnight.yaml b/themes/shuri-midnight.yaml new file mode 100644 index 00000000..bf602781 --- /dev/null +++ b/themes/shuri-midnight.yaml @@ -0,0 +1,49 @@ +name: "Shuri Midnight" +source: + marketplace_id: "ky12228121.okinawan-themes" + version: "0.0.1" + installs: 10 + author: "Keny Yahat" + repo: "https://github.com/ky12228121/okinawan" + url: "https://marketplace.visualstudio.com/items?itemName=ky12228121.okinawan-themes" +colors: + bg: "#150A0A" + fg: "#DCE1E6" + black: "#1A0F0F" + red: "#8E4439" + green: "#6B8171" + yellow: "#D1A658" + blue: "#3D2525" + magenta: "#8E4439" + cyan: "#C59358" + white: "#DCE1E6" + brightBlack: "#5D4D4D" + brightRed: "#B36D61" + brightGreen: "#6B8171" + brightYellow: "#D1A658" + brightBlue: "#8E4439" + brightMagenta: "#A65A4E" + brightCyan: "#C59358" + brightWhite: "#DCE1E6" +meta: + mode: "dark" + accent: "yellow" + hue: 19 + contrast: + fg: 87.8 + black: 0 + red: 18.2 + green: 32.4 + yellow: 57.5 + blue: 0 + magenta: 18.2 + cyan: 48.8 + white: 87.8 + brightBlack: 14.2 + brightRed: 34.4 + brightGreen: 32.4 + brightYellow: 57.5 + brightBlue: 18.2 + brightMagenta: 27.1 + brightCyan: 48.8 + brightWhite: 87.8 diff --git a/themes/siberia.yaml b/themes/siberia.yaml new file mode 100644 index 00000000..72f97319 --- /dev/null +++ b/themes/siberia.yaml @@ -0,0 +1,49 @@ +name: "Siberia" +source: + marketplace_id: "pavel-shatalov.siberia-theme" + version: "0.22.0" + installs: 278 + author: "Pavel" + repo: "https://github.com/siberia-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=pavel-shatalov.siberia-theme" +colors: + bg: "#292D39" + fg: "#97A6D7" + black: "#6F7893" + red: "#E98989" + green: "#6DAB9F" + yellow: "#ECBFA1" + blue: "#8BACD8" + magenta: "#ADA0D3" + cyan: "#70B6D0" + white: "#97A6D7" + brightBlack: "#C4CDEA" + brightRed: "#DD8F8F" + brightGreen: "#61AD9F" + brightYellow: "#EFBE9C" + brightBlue: "#86ACDD" + brightMagenta: "#AE9FD9" + brightCyan: "#64B7D4" + brightWhite: "#C9D2F4" +meta: + mode: "dark" + accent: "orange" + hue: 271 + contrast: + fg: 50.3 + black: 26.7 + red: 48.7 + green: 46.2 + yellow: 68.8 + blue: 51.5 + magenta: 50.2 + cyan: 53.2 + white: 50.3 + brightBlack: 72 + brightRed: 48.6 + brightGreen: 46.3 + brightYellow: 68.7 + brightBlue: 51.4 + brightMagenta: 50.3 + brightCyan: 53.1 + brightWhite: 75.3 diff --git a/themes/side-punk-sql.yaml b/themes/side-punk-sql.yaml new file mode 100644 index 00000000..a6bf813d --- /dev/null +++ b/themes/side-punk-sql.yaml @@ -0,0 +1,49 @@ +name: "Side Punk - SQL" +source: + marketplace_id: "HuachiWu.side-punk-theme" + version: "1.0.0" + installs: 190 + author: "HuachiWu" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HuachiWu.side-punk-theme" +colors: + bg: "#23262F" + fg: "#F8F8F2" + black: "#414868" + red: "#CC6666" + green: "#99CC99" + yellow: "#FFCC66" + blue: "#3387CC" + magenta: "#CC99CC" + cyan: "#66CCCC" + white: "#F8F8F2" + brightBlack: "#666666" + brightRed: "#CC6666" + brightGreen: "#99CC99" + brightYellow: "#FFCC66" + brightBlue: "#6699CC" + brightMagenta: "#CC99CC" + brightCyan: "#66CCCC" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "yellow" + hue: 271 + contrast: + fg: 99.9 + black: 8.7 + red: 34.3 + green: 65.1 + yellow: 77.2 + blue: 33.1 + magenta: 53 + cyan: 63.5 + white: 99.9 + brightBlack: 19.9 + brightRed: 34.3 + brightGreen: 65.1 + brightYellow: 77.2 + brightBlue: 42.1 + brightMagenta: 53 + brightCyan: 63.5 + brightWhite: 99.9 diff --git a/themes/sidev-monokai-dim-ts.yaml b/themes/sidev-monokai-dim-ts.yaml new file mode 100644 index 00000000..fae6b88f --- /dev/null +++ b/themes/sidev-monokai-dim-ts.yaml @@ -0,0 +1,49 @@ +name: "Sidev Monokai Dim Ts" +source: + marketplace_id: "sidev.monokai-dim-ts" + version: "0.0.1" + installs: 90 + author: "slavko.ivanovic" + repo: "https://github.com/slavkoivanovic/sidev-monokai-dim-ts" + url: "https://marketplace.visualstudio.com/items?itemName=sidev.monokai-dim-ts" +colors: + bg: "#242424" + fg: "#C5C8C6" + black: "#1E1E1E" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 70.1 + black: 0 + red: 22.9 + green: 51.3 + yellow: 55.9 + blue: 32.9 + magenta: 30.5 + cyan: 48.7 + white: 86.8 + brightBlack: 20.3 + brightRed: 35.6 + brightGreen: 75.2 + brightYellow: 82.2 + brightBlue: 48.1 + brightMagenta: 44.8 + brightCyan: 71.7 + brightWhite: 100.2 diff --git a/themes/siemor.yaml b/themes/siemor.yaml new file mode 100644 index 00000000..d3d656fc --- /dev/null +++ b/themes/siemor.yaml @@ -0,0 +1,49 @@ +name: "Siemor" +source: + marketplace_id: "dnlytras.siemor" + version: "2.1.0" + installs: 2230 + author: "Dimitrios Lytras" + repo: "https://github.com/DimitrisNL/siemor" + url: "https://marketplace.visualstudio.com/items?itemName=dnlytras.siemor" +colors: + bg: "#21252B" + fg: "#B0BCD3" + black: "#3B4252" + red: "#BF616A" + green: "#8DC6BF" + yellow: "#F2DB9A" + blue: "#81A1C1" + magenta: "#BB6EA7" + cyan: "#76A3C3" + white: "#E5E9F0" + brightBlack: "#252833" + brightRed: "#BF616A" + brightGreen: "#8DC6BF" + brightYellow: "#F2DB9A" + brightBlue: "#81A1C1" + brightMagenta: "#BB6EA7" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "pink" + hue: 258 + contrast: + fg: 63.1 + black: 0 + red: 31.1 + green: 63.1 + yellow: 82.8 + blue: 46.8 + magenta: 35.9 + cyan: 46.8 + white: 90.5 + brightBlack: 0 + brightRed: 31.1 + brightGreen: 63.1 + brightYellow: 82.8 + brightBlue: 46.8 + brightMagenta: 35.9 + brightCyan: 58.7 + brightWhite: 94.4 diff --git a/themes/sign-theme-v3.yaml b/themes/sign-theme-v3.yaml new file mode 100644 index 00000000..66aa0bad --- /dev/null +++ b/themes/sign-theme-v3.yaml @@ -0,0 +1,49 @@ +name: "sign-theme-v3" +source: + marketplace_id: "weuoimi.sign-theme-vs-code" + version: "0.1.2" + installs: 83 + author: "weuoimi" + repo: "https://github.com/stakhovyak/vs-sign-theme" + url: "https://marketplace.visualstudio.com/items?itemName=weuoimi.sign-theme-vs-code" +colors: + bg: "#29282A" + fg: "#EEEFE6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 93.3 + black: 0 + red: 24.2 + green: 50.5 + yellow: 83.1 + blue: 24.9 + magenta: 27.2 + cyan: 45 + white: 87.5 + brightBlack: 19.5 + brightRed: 36.1 + brightGreen: 61 + brightYellow: 93.1 + brightBlue: 37.5 + brightMagenta: 42.9 + brightCyan: 52.9 + brightWhite: 87.5 diff --git a/themes/sign-theme-v4.yaml b/themes/sign-theme-v4.yaml new file mode 100644 index 00000000..dd6f12b9 --- /dev/null +++ b/themes/sign-theme-v4.yaml @@ -0,0 +1,49 @@ +name: "sign-theme-v4" +source: + marketplace_id: "weuoimi.sign-theme-vs-code" + version: "0.1.2" + installs: 83 + author: "weuoimi" + repo: "https://github.com/stakhovyak/vs-sign-theme" + url: "https://marketplace.visualstudio.com/items?itemName=weuoimi.sign-theme-vs-code" +colors: + bg: "#2B2826" + fg: "#CBCBCD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 71.6 + black: 0 + red: 24.2 + green: 50.5 + yellow: 83.1 + blue: 24.9 + magenta: 27.2 + cyan: 45 + white: 87.5 + brightBlack: 19.5 + brightRed: 36 + brightGreen: 61 + brightYellow: 93.1 + brightBlue: 37.5 + brightMagenta: 42.8 + brightCyan: 52.9 + brightWhite: 87.5 diff --git a/themes/silent-code.yaml b/themes/silent-code.yaml new file mode 100644 index 00000000..67ff8e35 --- /dev/null +++ b/themes/silent-code.yaml @@ -0,0 +1,49 @@ +name: "silent-code" +source: + marketplace_id: "tirthdabgar.silent-code-theme-tirth" + version: "1.1.0" + installs: 36 + author: "Tirth Dabgar" + repo: "https://github.com/tirthdabgar/silent-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tirthdabgar.silent-code-theme-tirth" +colors: + bg: "#0F111A" + fg: "#CFD8DC" + black: "#0C0E14" + red: "#FF5370" + green: "#98C379" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#CFD8DC" + brightBlack: "#3B4252" + brightRed: "#FF6B81" + brightGreen: "#B6F2A0" + brightYellow: "#FFD580" + brightBlue: "#9BBCFF" + brightMagenta: "#D7AEFB" + brightCyan: "#9FEFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 81.4 + black: 0 + red: 44.1 + green: 62.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 81.4 + brightBlack: 8.6 + brightRed: 49.1 + brightGreen: 88.6 + brightYellow: 84 + brightBlue: 65.7 + brightMagenta: 67.2 + brightCyan: 88.9 + brightWhite: 107.3 diff --git a/themes/silot-dark-classic.yaml b/themes/silot-dark-classic.yaml new file mode 100644 index 00000000..1f23f1a7 --- /dev/null +++ b/themes/silot-dark-classic.yaml @@ -0,0 +1,49 @@ +name: "Silot (Dark Classic)" +source: + marketplace_id: "Joshimcse.silot-ui-theme" + version: "0.1.2" + installs: 696 + author: "Joshim Uddin" + repo: "https://github.com/joshimcse/vscode-syloti-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Joshimcse.silot-ui-theme" +colors: + bg: "#242424" + fg: "#D9D9D9" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 80.8 + black: 0 + red: 41.6 + green: 83.1 + yellow: 96.8 + blue: 51.9 + magenta: 52.8 + cyan: 82.2 + white: 100.2 + brightBlack: 26.3 + brightRed: 47.1 + brightGreen: 87.3 + brightYellow: 101.8 + brightBlue: 64.4 + brightMagenta: 60.9 + brightCyan: 95 + brightWhite: 105.1 diff --git a/themes/silvermist.yaml b/themes/silvermist.yaml new file mode 100644 index 00000000..7c9b8836 --- /dev/null +++ b/themes/silvermist.yaml @@ -0,0 +1,49 @@ +name: "Silvermist" +source: + marketplace_id: "salmanjt.silvermist" + version: "0.0.1" + installs: 1 + author: "Salman Tahir" + repo: "https://github.com/salmanjt/silvermist" + url: "https://marketplace.visualstudio.com/items?itemName=salmanjt.silvermist" +colors: + bg: "#1D2834" + fg: "#D5DEE1" + black: "#000000" + red: "#E87A78" + green: "#85DB8A" + yellow: "#EFD671" + blue: "#87BED9" + magenta: "#BEA8E1" + cyan: "#99C7C7" + white: "#D5DEE1" + brightBlack: "#8090A3" + brightRed: "#E87A78" + brightGreen: "#85DB8A" + brightYellow: "#EFD671" + brightBlue: "#87BED9" + brightMagenta: "#BEA8E1" + brightCyan: "#99C7C7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 251 + contrast: + fg: 82.3 + black: 0 + red: 45 + green: 69.9 + yellow: 78.9 + blue: 59.9 + magenta: 57.3 + cyan: 64.5 + white: 82.3 + brightBlack: 38.5 + brightRed: 45 + brightGreen: 69.9 + brightYellow: 78.9 + brightBlue: 59.9 + brightMagenta: 57.3 + brightCyan: 64.5 + brightWhite: 104.6 diff --git a/themes/silverwolf.yaml b/themes/silverwolf.yaml new file mode 100644 index 00000000..be3a9bc2 --- /dev/null +++ b/themes/silverwolf.yaml @@ -0,0 +1,49 @@ +name: "Silverwolf" +source: + marketplace_id: "PlutonicVoid.silverwolf" + version: "1.0.0" + installs: 266 + author: "PlutonicVoid" + repo: "https://github.com/ThanatosSystemOmegaVI/silverwolf-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PlutonicVoid.silverwolf" +colors: + bg: "#1B1B1F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.4 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.3 + cyan: 47.1 + white: 89.5 + brightBlack: 21.5 + brightRed: 38.1 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/simple-3000.yaml b/themes/simple-3000.yaml new file mode 100644 index 00000000..8a851df4 --- /dev/null +++ b/themes/simple-3000.yaml @@ -0,0 +1,49 @@ +name: "simple-3000" +source: + marketplace_id: "simpleshadow.simple-3000" + version: "0.0.17" + installs: 837 + author: "simpleshadow" + repo: "https://github.com/simpleshadow/simple-3000" + url: "https://marketplace.visualstudio.com/items?itemName=simpleshadow.simple-3000" +colors: + bg: "#0D111A" + fg: "#FFFFFF" + black: "#000000" + red: "#990040" + green: "#05DB61" + yellow: "#FFC107" + blue: "#0063C5" + magenta: "#993BAA" + cyan: "#7DF9FF" + white: "#E6E6E6" + brightBlack: "#232323" + brightRed: "#FF2F55" + brightGreen: "#A5E075" + brightYellow: "#FFD700" + brightBlue: "#0096FF" + brightMagenta: "#FF0086" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 266 + contrast: + fg: 107.4 + black: 0 + red: 14.3 + green: 67.9 + yellow: 74.6 + blue: 22.8 + magenta: 22.5 + cyan: 91.6 + white: 91.1 + brightBlack: 0 + brightRed: 39.2 + brightGreen: 77.3 + brightYellow: 83.7 + brightBlue: 44.3 + brightMagenta: 39 + brightCyan: 91.7 + brightWhite: 107.4 diff --git a/themes/simple-calm-dark.yaml b/themes/simple-calm-dark.yaml new file mode 100644 index 00000000..5b2e1939 --- /dev/null +++ b/themes/simple-calm-dark.yaml @@ -0,0 +1,49 @@ +name: "simple-calm-dark" +source: + marketplace_id: "syukronarie.simple-calm-dark" + version: "0.0.2" + installs: 240 + author: "Arie Syukron" + repo: "https://github.com/syukronarie/simple-calm-dark" + url: "https://marketplace.visualstudio.com/items?itemName=syukronarie.simple-calm-dark" +colors: + bg: "#0C0C0C" + fg: "#AAAAAA" + black: "#0C0C0C" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 56 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/simple-purple.yaml b/themes/simple-purple.yaml new file mode 100644 index 00000000..213c9d72 --- /dev/null +++ b/themes/simple-purple.yaml @@ -0,0 +1,49 @@ +name: "Simple Purple" +source: + marketplace_id: "HenriLima05.a-cup-of-coffee" + version: "0.0.2" + installs: 4677 + author: "Henri Lima" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.a-cup-of-coffee" +colors: + bg: "#1B1B1B" + fg: "#BEBEBE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 66 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/simple-red-dark.yaml b/themes/simple-red-dark.yaml new file mode 100644 index 00000000..10275b23 --- /dev/null +++ b/themes/simple-red-dark.yaml @@ -0,0 +1,49 @@ +name: "Simple Red Dark" +source: + marketplace_id: "Dionannd.simpledark-vscode-theme" + version: "0.0.3" + installs: 467 + author: "Dionannd" + repo: "https://github.com/dionannd/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Dionannd.simpledark-vscode-theme" +colors: + bg: "#11101D" + fg: "#EDECEE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 287 + contrast: + fg: 95.2 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.8 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/simple-theme.yaml b/themes/simple-theme.yaml new file mode 100644 index 00000000..3c52212e --- /dev/null +++ b/themes/simple-theme.yaml @@ -0,0 +1,49 @@ +name: "Simple Theme" +source: + marketplace_id: "Fleuquer.simple-theme" + version: "1.0.0" + installs: 1154 + author: "Fleuquer" + repo: "https://github.com/fleuquer/simple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Fleuquer.simple-theme" +colors: + bg: "#1B1B1B" + fg: "#C7FF00" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 94.2 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/simpledark.yaml b/themes/simpledark.yaml new file mode 100644 index 00000000..7870bafa --- /dev/null +++ b/themes/simpledark.yaml @@ -0,0 +1,49 @@ +name: "SimpleDark" +source: + marketplace_id: "jovejonovski.softdark" + version: "1.0.3" + installs: 1024 + author: "Jove Jonovski" + repo: "https://github.com/datyin/softdark" + url: "https://marketplace.visualstudio.com/items?itemName=jovejonovski.softdark" +colors: + bg: "#161E20" + fg: "#8D9FA3" + black: "#000000" + red: "#D15F5F" + green: "#5EA55E" + yellow: "#BBA466" + blue: "#6DA6E7" + magenta: "#B972B9" + cyan: "#20E2E2" + white: "#EFEFEF" + brightBlack: "#666666" + brightRed: "#DB9696" + brightGreen: "#86CC86" + brightYellow: "#BEAC7A" + brightBlue: "#89BAF1" + brightMagenta: "#E49FE4" + brightCyan: "#7DE0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 215 + contrast: + fg: 46.9 + black: 0 + red: 35 + green: 43.7 + yellow: 52.4 + blue: 50.6 + magenta: 38.7 + cyan: 74.5 + white: 95.7 + brightBlack: 21.4 + brightRed: 53.5 + brightGreen: 64.5 + brightYellow: 56.3 + brightBlue: 61.3 + brightMagenta: 61.5 + brightCyan: 76.6 + brightWhite: 106.2 diff --git a/themes/sinequanone-acid.yaml b/themes/sinequanone-acid.yaml new file mode 100644 index 00000000..2fd224eb --- /dev/null +++ b/themes/sinequanone-acid.yaml @@ -0,0 +1,49 @@ +name: "Sinequanone Acid" +source: + marketplace_id: "EmmettHintz.sinequanone" + version: "0.12.0" + installs: 48 + author: "Emmett Hintz" + repo: "https://github.com/Sinequanone-Themes/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" +colors: + bg: "#232136" + fg: "#E7D2C5" + black: "#393552" + red: "#8ABE32" + green: "#F745B3" + yellow: "#9D74FF" + blue: "#F59DD3" + magenta: "#B79DF5" + cyan: "#C5ED2D" + white: "#E7D2C5" + brightBlack: "#908CAA" + brightRed: "#8ABE32" + brightGreen: "#F745B3" + brightYellow: "#9D74FF" + brightBlue: "#F59DD3" + brightMagenta: "#B79DF5" + brightCyan: "#C5ED2D" + brightWhite: "#E7D2C5" +meta: + mode: "dark" + accent: "red" + hue: 288 + contrast: + fg: 78.9 + black: 0 + red: 56.1 + green: 40.5 + yellow: 39.1 + blue: 61.9 + magenta: 54.3 + cyan: 83.8 + white: 78.9 + brightBlack: 39.6 + brightRed: 56.1 + brightGreen: 40.5 + brightYellow: 39.1 + brightBlue: 61.9 + brightMagenta: 54.3 + brightCyan: 83.8 + brightWhite: 78.9 diff --git a/themes/sinequanone-apple.yaml b/themes/sinequanone-apple.yaml new file mode 100644 index 00000000..ebd0b8c2 --- /dev/null +++ b/themes/sinequanone-apple.yaml @@ -0,0 +1,49 @@ +name: "Sinequanone Apple" +source: + marketplace_id: "EmmettHintz.sinequanone" + version: "0.12.0" + installs: 48 + author: "Emmett Hintz" + repo: "https://github.com/Sinequanone-Themes/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" +colors: + bg: "#FAF4ED" + fg: "#575279" + black: "#F2E9E1" + red: "#E13B3E" + green: "#049DDC" + yellow: "#E3961E" + blue: "#973C96" + magenta: "#5DBD46" + cyan: "#F6821E" + white: "#575279" + brightBlack: "#797593" + brightRed: "#E13B3E" + brightGreen: "#049DDC" + brightYellow: "#E3961E" + brightBlue: "#973C96" + brightMagenta: "#5DBD46" + brightCyan: "#F6821E" + brightWhite: "#575279" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 79.1 + black: 0 + red: 62.2 + green: 50.7 + yellow: 41.4 + blue: 74 + magenta: 40.5 + cyan: 43.8 + white: 79.1 + brightBlack: 64.4 + brightRed: 62.2 + brightGreen: 50.7 + brightYellow: 41.4 + brightBlue: 74 + brightMagenta: 40.5 + brightCyan: 43.8 + brightWhite: 79.1 diff --git a/themes/sinequanone-brighton.yaml b/themes/sinequanone-brighton.yaml new file mode 100644 index 00000000..ccfe8068 --- /dev/null +++ b/themes/sinequanone-brighton.yaml @@ -0,0 +1,49 @@ +name: "Sinequanone Brighton" +source: + marketplace_id: "EmmettHintz.sinequanone" + version: "0.12.0" + installs: 48 + author: "Emmett Hintz" + repo: "https://github.com/Sinequanone-Themes/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" +colors: + bg: "#FAF4ED" + fg: "#575279" + black: "#F2E9E1" + red: "#E7A26E" + green: "#C8342A" + yellow: "#418B8D" + blue: "#DA5D3C" + magenta: "#2C6883" + cyan: "#78AA9A" + white: "#575279" + brightBlack: "#797593" + brightRed: "#E7A26E" + brightGreen: "#C8342A" + brightYellow: "#418B8D" + brightBlue: "#DA5D3C" + brightMagenta: "#2C6883" + brightCyan: "#78AA9A" + brightWhite: "#575279" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 79.1 + black: 0 + red: 35.9 + green: 68.7 + yellow: 60.7 + blue: 58.2 + magenta: 74.4 + cyan: 45 + white: 79.1 + brightBlack: 64.4 + brightRed: 35.9 + brightGreen: 68.7 + brightYellow: 60.7 + brightBlue: 58.2 + brightMagenta: 74.4 + brightCyan: 45 + brightWhite: 79.1 diff --git a/themes/sinequanone-carbon.yaml b/themes/sinequanone-carbon.yaml new file mode 100644 index 00000000..c85d1054 --- /dev/null +++ b/themes/sinequanone-carbon.yaml @@ -0,0 +1,49 @@ +name: "Sinequanone Carbon" +source: + marketplace_id: "EmmettHintz.sinequanone" + version: "0.12.0" + installs: 48 + author: "Emmett Hintz" + repo: "https://github.com/Sinequanone-Themes/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" +colors: + bg: "#0F1014" + fg: "#868690" + black: "#131317" + red: "#D16996" + green: "#83C4C4" + yellow: "#D3D5DE" + blue: "#BE95FF" + magenta: "#D3D5DE" + cyan: "#5D83C1" + white: "#868690" + brightBlack: "#575861" + brightRed: "#D16996" + brightGreen: "#83C4C4" + brightYellow: "#D3D5DE" + brightBlue: "#BE95FF" + brightMagenta: "#D3D5DE" + brightCyan: "#5D83C1" + brightWhite: "#868690" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 37.6 + black: 0 + red: 40.1 + green: 64 + yellow: 80.8 + blue: 55.4 + magenta: 80.8 + cyan: 35.5 + white: 37.6 + brightBlack: 17 + brightRed: 40.1 + brightGreen: 64 + brightYellow: 80.8 + brightBlue: 55.4 + brightMagenta: 80.8 + brightCyan: 35.5 + brightWhite: 37.6 diff --git a/themes/sinequanone-cerulean.yaml b/themes/sinequanone-cerulean.yaml new file mode 100644 index 00000000..ae540ec5 --- /dev/null +++ b/themes/sinequanone-cerulean.yaml @@ -0,0 +1,49 @@ +name: "Sinequanone Cerulean" +source: + marketplace_id: "EmmettHintz.sinequanone" + version: "0.12.0" + installs: 48 + author: "Emmett Hintz" + repo: "https://github.com/Sinequanone-Themes/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" +colors: + bg: "#FAF4ED" + fg: "#575279" + black: "#F2E9E1" + red: "#3E4491" + green: "#C48200" + yellow: "#1A1B4B" + blue: "#3A9EFD" + magenta: "#F600B9" + cyan: "#292A73" + white: "#575279" + brightBlack: "#797593" + brightRed: "#3E4491" + brightGreen: "#C48200" + brightYellow: "#1A1B4B" + brightBlue: "#3A9EFD" + brightMagenta: "#F600B9" + brightCyan: "#292A73" + brightWhite: "#575279" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 79.1 + black: 0 + red: 83.2 + green: 52.9 + yellow: 96.8 + blue: 47.4 + magenta: 56.1 + cyan: 92 + white: 79.1 + brightBlack: 64.4 + brightRed: 83.2 + brightGreen: 52.9 + brightYellow: 96.8 + brightBlue: 47.4 + brightMagenta: 56.1 + brightCyan: 92 + brightWhite: 79.1 diff --git a/themes/sinequanone-noir.yaml b/themes/sinequanone-noir.yaml new file mode 100644 index 00000000..53cf3398 --- /dev/null +++ b/themes/sinequanone-noir.yaml @@ -0,0 +1,49 @@ +name: "Sinequanone Noir" +source: + marketplace_id: "EmmettHintz.sinequanone" + version: "0.12.0" + installs: 48 + author: "Emmett Hintz" + repo: "https://github.com/Sinequanone-Themes/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" +colors: + bg: "#0F1014" + fg: "#868690" + black: "#131317" + red: "#85A2E8" + green: "#E89EAE" + yellow: "#BFBBBB" + blue: "#E582D7" + magenta: "#697078" + cyan: "#3DBCEC" + white: "#868690" + brightBlack: "#575861" + brightRed: "#85A2E8" + brightGreen: "#E89EAE" + brightYellow: "#BFBBBB" + brightBlue: "#E582D7" + brightMagenta: "#697078" + brightCyan: "#3DBCEC" + brightWhite: "#868690" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 37.6 + black: 0 + red: 52.1 + green: 60.5 + yellow: 65.8 + blue: 53.3 + magenta: 26.6 + cyan: 59.1 + white: 37.6 + brightBlack: 17 + brightRed: 52.1 + brightGreen: 60.5 + brightYellow: 65.8 + brightBlue: 53.3 + brightMagenta: 26.6 + brightCyan: 59.1 + brightWhite: 37.6 diff --git a/themes/sinequanone-sunset.yaml b/themes/sinequanone-sunset.yaml new file mode 100644 index 00000000..b6bd489b --- /dev/null +++ b/themes/sinequanone-sunset.yaml @@ -0,0 +1,49 @@ +name: "Sinequanone Sunset" +source: + marketplace_id: "EmmettHintz.sinequanone" + version: "0.12.0" + installs: 48 + author: "Emmett Hintz" + repo: "https://github.com/Sinequanone-Themes/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" +colors: + bg: "#232136" + fg: "#E7D2C5" + black: "#393552" + red: "#7DEDFF" + green: "#7C83FD" + yellow: "#E1897A" + blue: "#96BAFF" + magenta: "#F9C46B" + cyan: "#8DCDDA" + white: "#E7D2C5" + brightBlack: "#908CAA" + brightRed: "#7DEDFF" + brightGreen: "#7C83FD" + brightYellow: "#E1897A" + brightBlue: "#96BAFF" + brightMagenta: "#F9C46B" + brightCyan: "#8DCDDA" + brightWhite: "#E7D2C5" +meta: + mode: "dark" + accent: "purple" + hue: 288 + contrast: + fg: 78.9 + black: 0 + red: 83.4 + green: 39.8 + yellow: 48.6 + blue: 62.3 + magenta: 73.4 + cyan: 67.6 + white: 78.9 + brightBlack: 39.6 + brightRed: 83.4 + brightGreen: 39.8 + brightYellow: 48.6 + brightBlue: 62.3 + brightMagenta: 73.4 + brightCyan: 67.6 + brightWhite: 78.9 diff --git a/themes/sinequanone-swan.yaml b/themes/sinequanone-swan.yaml new file mode 100644 index 00000000..4cf34331 --- /dev/null +++ b/themes/sinequanone-swan.yaml @@ -0,0 +1,49 @@ +name: "Sinequanone Swan" +source: + marketplace_id: "EmmettHintz.sinequanone" + version: "0.12.0" + installs: 48 + author: "Emmett Hintz" + repo: "https://github.com/Sinequanone-Themes/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" +colors: + bg: "#232136" + fg: "#E7D2C5" + black: "#393552" + red: "#574F7D" + green: "#E0F0EA" + yellow: "#A678D2" + blue: "#95ADBE" + magenta: "#F6E1F4" + cyan: "#B090CE" + white: "#E7D2C5" + brightBlack: "#908CAA" + brightRed: "#574F7D" + brightGreen: "#E0F0EA" + brightYellow: "#A678D2" + brightBlue: "#95ADBE" + brightMagenta: "#F6E1F4" + brightCyan: "#B090CE" + brightWhite: "#E7D2C5" +meta: + mode: "dark" + accent: "magenta" + hue: 288 + contrast: + fg: 78.9 + black: 0 + red: 13.5 + green: 93 + yellow: 38.1 + blue: 53.4 + magenta: 89.7 + cyan: 46.6 + white: 78.9 + brightBlack: 39.6 + brightRed: 13.5 + brightGreen: 93 + brightYellow: 38.1 + brightBlue: 53.4 + brightMagenta: 89.7 + brightCyan: 46.6 + brightWhite: 78.9 diff --git a/themes/sinergyext.yaml b/themes/sinergyext.yaml new file mode 100644 index 00000000..3bf63dba --- /dev/null +++ b/themes/sinergyext.yaml @@ -0,0 +1,49 @@ +name: "SinergyExt" +source: + marketplace_id: "jefersonquiguantar.sinergy" + version: "0.0.1" + installs: 57 + author: "jefersonquiguantar" + repo: "https://github.com/jefersonqui/Sinergy" + url: "https://marketplace.visualstudio.com/items?itemName=jefersonquiguantar.sinergy" +colors: + bg: "#04293A" + fg: "#FBFF00" + black: "#064663" + red: "#ECB365" + green: "#BAE67E" + yellow: "#715AFF" + blue: "#FBFF00" + magenta: "#C3A6FF" + cyan: "#FBFF00" + white: "#FBFF00" + brightBlack: "#5E444C" + brightRed: "#ECB365" + brightGreen: "#BAE67E" + brightYellow: "#715AFF" + brightBlue: "#FBFF00" + brightMagenta: "#C3A6FF" + brightCyan: "#FBFF00" + brightWhite: "#FBFF00" +meta: + mode: "dark" + accent: "purple" + hue: 233 + contrast: + fg: 98.9 + black: 0 + red: 63.9 + green: 79.7 + yellow: 27.4 + blue: 98.9 + magenta: 59.1 + cyan: 98.9 + white: 98.9 + brightBlack: 9.1 + brightRed: 63.9 + brightGreen: 79.7 + brightYellow: 27.4 + brightBlue: 98.9 + brightMagenta: 59.1 + brightCyan: 98.9 + brightWhite: 98.9 diff --git a/themes/sirius-astral.yaml b/themes/sirius-astral.yaml new file mode 100644 index 00000000..8225a5b9 --- /dev/null +++ b/themes/sirius-astral.yaml @@ -0,0 +1,49 @@ +name: "Sirius-Astral" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 509 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" +colors: + bg: "#0C0C0C" + fg: "#E8E8E8" + black: "#353535" + red: "#E06C75" + green: "#A4D29A" + yellow: "#F0C270" + blue: "#BB6CC1" + magenta: "#D685D6" + cyan: "#7BD2D2" + white: "#E8E8E8" + brightBlack: "#7A7A7A" + brightRed: "#F07C85" + brightGreen: "#B4E2A4" + brightYellow: "#FFE280" + brightBlue: "#B88BC2" + brightMagenta: "#E292D2" + brightCyan: "#8CE2E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 92.7 + black: 0 + red: 42.9 + green: 71.8 + yellow: 73.7 + blue: 39.4 + magenta: 51.7 + cyan: 70.7 + white: 92.7 + brightBlack: 31.7 + brightRed: 50.5 + brightGreen: 81.1 + brightYellow: 90 + brightBlue: 47.9 + brightMagenta: 57.5 + brightCyan: 80.1 + brightWhite: 107.7 diff --git a/themes/sirius-glow.yaml b/themes/sirius-glow.yaml new file mode 100644 index 00000000..e9973bf3 --- /dev/null +++ b/themes/sirius-glow.yaml @@ -0,0 +1,49 @@ +name: "Sirius-Glow" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 509 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" +colors: + bg: "#0D1117" + fg: "#E6EDF3" + black: "#484F58" + red: "#F85149" + green: "#7EE787" + yellow: "#F7CC6B" + blue: "#00D4AA" + magenta: "#D2A8FF" + cyan: "#00D4AA" + white: "#E6EDF3" + brightBlack: "#6E7681" + brightRed: "#F85149" + brightGreen: "#7EE787" + brightYellow: "#F7CC6B" + brightBlue: "#00D4AA" + brightMagenta: "#D2A8FF" + brightCyan: "#00D4AA" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "orange" + hue: 258 + contrast: + fg: 95 + black: 13.1 + red: 41.4 + green: 78.1 + yellow: 78.5 + blue: 66.3 + magenta: 64.6 + cyan: 66.3 + white: 95 + brightBlack: 29.3 + brightRed: 41.4 + brightGreen: 78.1 + brightYellow: 78.5 + brightBlue: 66.3 + brightMagenta: 64.6 + brightCyan: 66.3 + brightWhite: 100.9 diff --git a/themes/sirius-nebula.yaml b/themes/sirius-nebula.yaml new file mode 100644 index 00000000..373187e9 --- /dev/null +++ b/themes/sirius-nebula.yaml @@ -0,0 +1,49 @@ +name: "Sirius-Nebula" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 509 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" +colors: + bg: "#000000" + fg: "#F8F8F8" + black: "#3A3A3A" + red: "#E85A5A" + green: "#85D685" + yellow: "#FFD485" + blue: "#90D690" + magenta: "#D685D6" + cyan: "#85D6D6" + white: "#F8F8F8" + brightBlack: "#7A7A7A" + brightRed: "#E85A5A" + brightGreen: "#85D685" + brightYellow: "#FFD485" + brightBlue: "#90D690" + brightMagenta: "#D685D6" + brightCyan: "#85D6D6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 103.3 + black: 0 + red: 40.2 + green: 70.7 + yellow: 84.2 + blue: 71.9 + magenta: 52 + cyan: 73.6 + white: 103.3 + brightBlack: 31.9 + brightRed: 40.2 + brightGreen: 70.7 + brightYellow: 84.2 + brightBlue: 71.9 + brightMagenta: 52 + brightCyan: 73.6 + brightWhite: 107.9 diff --git a/themes/sirius-pulsar.yaml b/themes/sirius-pulsar.yaml new file mode 100644 index 00000000..537fe975 --- /dev/null +++ b/themes/sirius-pulsar.yaml @@ -0,0 +1,49 @@ +name: "Sirius-Pulsar" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 509 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" +colors: + bg: "#272822" + fg: "#F8F8F2" + black: "#3B3A32" + red: "#F92672" + green: "#A6E22E" + yellow: "#E6DB74" + blue: "#A87AB2" + magenta: "#FD5FF1" + cyan: "#A6E22E" + white: "#F8F8F2" + brightBlack: "#75715E" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E6DB74" + brightBlue: "#A87AB2" + brightMagenta: "#FD5FF1" + brightCyan: "#A6E22E" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "pink" + hue: 115 + contrast: + fg: 99.6 + black: 0 + red: 35 + green: 74.7 + yellow: 79.7 + blue: 36.4 + magenta: 48.8 + cyan: 74.7 + white: 99.6 + brightBlack: 24.3 + brightRed: 35 + brightGreen: 74.7 + brightYellow: 79.7 + brightBlue: 36.4 + brightMagenta: 48.8 + brightCyan: 74.7 + brightWhite: 99.6 diff --git a/themes/sirius-vesper.yaml b/themes/sirius-vesper.yaml new file mode 100644 index 00000000..f6aab875 --- /dev/null +++ b/themes/sirius-vesper.yaml @@ -0,0 +1,49 @@ +name: "Sirius-Vesper" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 509 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" +colors: + bg: "#1F2428" + fg: "#E6E1CF" + black: "#363B46" + red: "#F26D5B" + green: "#C2D94C" + yellow: "#F29668" + blue: "#D4BFFF" + magenta: "#FF8F40" + cyan: "#A6CC70" + white: "#E6E1CF" + brightBlack: "#5C6773" + brightRed: "#F26D5B" + brightGreen: "#C2D94C" + brightYellow: "#F29668" + brightBlue: "#D4BFFF" + brightMagenta: "#FF8F40" + brightCyan: "#A6CC70" + brightWhite: "#E6E1CF" +meta: + mode: "dark" + accent: "orange" + hue: 242 + contrast: + fg: 85.8 + black: 0 + red: 43.8 + green: 74.3 + yellow: 55.4 + blue: 71.4 + magenta: 55.2 + cyan: 65.8 + white: 85.8 + brightBlack: 20.3 + brightRed: 43.8 + brightGreen: 74.3 + brightYellow: 55.4 + brightBlue: 71.4 + brightMagenta: 55.2 + brightCyan: 65.8 + brightWhite: 85.8 diff --git a/themes/sirius-vibe.yaml b/themes/sirius-vibe.yaml new file mode 100644 index 00000000..2534895c --- /dev/null +++ b/themes/sirius-vibe.yaml @@ -0,0 +1,49 @@ +name: "Sirius-Vibe" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 509 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" +colors: + bg: "#1E1E1E" + fg: "#E8E8E8" + black: "#1E1E1E" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#81C784" + magenta: "#E91E63" + cyan: "#4DB6AC" + white: "#E8E8E8" + brightBlack: "#757575" + brightRed: "#FFCDD2" + brightGreen: "#C8E6C9" + brightYellow: "#FFF9C4" + brightBlue: "#A5D6A7" + brightMagenta: "#F8BBD9" + brightCyan: "#B2DFDB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 91.1 + black: 0 + red: 36.9 + green: 46.7 + yellow: 91.5 + blue: 61.6 + magenta: 31.8 + cyan: 52.4 + white: 91.1 + brightBlack: 27.8 + brightRed: 81.9 + brightGreen: 84.9 + brightYellow: 100.8 + brightBlue: 72.5 + brightMagenta: 74 + brightCyan: 80 + brightWhite: 106 diff --git a/themes/sirius-vortex.yaml b/themes/sirius-vortex.yaml new file mode 100644 index 00000000..7aaed4c7 --- /dev/null +++ b/themes/sirius-vortex.yaml @@ -0,0 +1,49 @@ +name: "Sirius-Vortex" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 509 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" +colors: + bg: "#1A1611" + fg: "#F4F4F4" + black: "#5A4D3E" + red: "#FF6B6B" + green: "#98D982" + yellow: "#FFD700" + blue: "#FF9500" + magenta: "#FF6B6B" + cyan: "#FF9500" + white: "#F4F4F4" + brightBlack: "#8B7355" + brightRed: "#FF6B6B" + brightGreen: "#98D982" + brightYellow: "#FFD700" + brightBlue: "#FF9500" + brightMagenta: "#FF6B6B" + brightCyan: "#FF9500" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 73 + contrast: + fg: 99.7 + black: 12.9 + red: 48.1 + green: 72.6 + yellow: 83.3 + blue: 58.5 + magenta: 48.1 + cyan: 58.5 + white: 99.7 + brightBlack: 29.6 + brightRed: 48.1 + brightGreen: 72.6 + brightYellow: 83.3 + brightBlue: 58.5 + brightMagenta: 48.1 + brightCyan: 58.5 + brightWhite: 106.9 diff --git a/themes/sirius-zenith.yaml b/themes/sirius-zenith.yaml new file mode 100644 index 00000000..8254a062 --- /dev/null +++ b/themes/sirius-zenith.yaml @@ -0,0 +1,49 @@ +name: "Sirius-Zenith" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 509 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" +colors: + bg: "#1A1A1A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFD93D" + blue: "#D2691E" + magenta: "#BC3FBC" + cyan: "#B8860B" + white: "#F2F2F2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#CD853F" + brightMagenta: "#D670D6" + brightCyan: "#DAA520" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.2 + black: 0 + red: 26.4 + green: 52.7 + yellow: 84 + blue: 37 + magenta: 29.4 + cyan: 40.8 + white: 98 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 44.1 + brightMagenta: 45 + brightCyan: 56.9 + brightWhite: 106.5 diff --git a/themes/sith.yaml b/themes/sith.yaml new file mode 100644 index 00000000..810e4915 --- /dev/null +++ b/themes/sith.yaml @@ -0,0 +1,49 @@ +name: "sith" +source: + marketplace_id: "JohannesFreutel.sith" + version: "0.0.1" + installs: 27 + author: "JohannesFreutel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.sith" +colors: + bg: "#16151B" + fg: "#F0F0F0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 293 + contrast: + fg: 97.2 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/sizdah-best-of-all.yaml b/themes/sizdah-best-of-all.yaml new file mode 100644 index 00000000..7164ed31 --- /dev/null +++ b/themes/sizdah-best-of-all.yaml @@ -0,0 +1,49 @@ +name: "Sizdah - Best of all" +source: + marketplace_id: "AkonMHasib.sizdah" + version: "0.0.5" + installs: 933 + author: "Akon M Hasib" + repo: "https://github.com/HasibX2000/Sizdah-Theme-Collection" + url: "https://marketplace.visualstudio.com/items?itemName=AkonMHasib.sizdah" +colors: + bg: "#1D1D26" + fg: "#B3B3D4" + black: "#2C2C3E" + red: "#FF3399" + green: "#00D364" + yellow: "#FFCC66" + blue: "#00BFFF" + magenta: "#CC66FF" + cyan: "#00CED1" + white: "#FFFFFF" + brightBlack: "#3D3D56" + brightRed: "#FF3399" + brightGreen: "#00D364" + brightYellow: "#FFCC66" + brightBlue: "#00BFFF" + brightMagenta: "#CC66FF" + brightCyan: "#00CED1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 60.9 + black: 0 + red: 40.2 + green: 62.7 + yellow: 78.5 + blue: 59.6 + magenta: 43.4 + cyan: 63.8 + white: 106.1 + brightBlack: 0 + brightRed: 40.2 + brightGreen: 62.7 + brightYellow: 78.5 + brightBlue: 59.6 + brightMagenta: 43.4 + brightCyan: 63.8 + brightWhite: 106.1 diff --git a/themes/sizo-purple.yaml b/themes/sizo-purple.yaml new file mode 100644 index 00000000..516bd0ac --- /dev/null +++ b/themes/sizo-purple.yaml @@ -0,0 +1,49 @@ +name: "Sizo Purple" +source: + marketplace_id: "Sizo.sizo-purple" + version: "1.0.3" + installs: 47 + author: "Sizo" + repo: "https://github.com/sizoroot/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Sizo.sizo-purple" +colors: + bg: "#151517" + fg: "#CBCBCB" + black: "#000000" + red: "#E23737" + green: "#47C4A7" + yellow: "#FFD738" + blue: "#2D91FF" + magenta: "#CB6FFF" + cyan: "#2BD5FF" + white: "#E8E8E8" + brightBlack: "#585858" + brightRed: "#FF5C5C" + brightGreen: "#77FFC8" + brightYellow: "#FFDE79" + brightBlue: "#6EB3FF" + brightMagenta: "#DDA2FF" + brightCyan: "#66E1FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 74.2 + black: 0 + red: 32.3 + green: 59.3 + yellow: 83.6 + blue: 42.5 + magenta: 46.2 + cyan: 70.8 + white: 92.1 + brightBlack: 16.5 + brightRed: 44.9 + brightGreen: 91.5 + brightYellow: 87.4 + brightBlue: 58.3 + brightMagenta: 63.8 + brightCyan: 78.3 + brightWhite: 107 diff --git a/themes/sj-pinkish-theme.yaml b/themes/sj-pinkish-theme.yaml new file mode 100644 index 00000000..394716dd --- /dev/null +++ b/themes/sj-pinkish-theme.yaml @@ -0,0 +1,49 @@ +name: "SJ Pinkish Theme" +source: + marketplace_id: "SAKSHAMJOSHI.sj-azure-theme" + version: "0.1.0" + installs: 10 + author: "SAKSHAM JOSHI" + repo: "https://github.com/saksham-joshi/SJ-Theme-VsCode" + url: "https://marketplace.visualstudio.com/items?itemName=SAKSHAMJOSHI.sj-azure-theme" +colors: + bg: "#0D0A1E" + fg: "#FDFEFF" + black: "#3A1B75" + red: "#EE1682" + green: "#06AD00" + yellow: "#FFD400" + blue: "#3787D6" + magenta: "#EA00D9" + cyan: "#0AB2FA" + white: "#F2F8FF" + brightBlack: "#5C6D75" + brightRed: "#FF2E97" + brightGreen: "#3DD69C" + brightYellow: "#FFD400" + brightBlue: "#5994CE" + brightMagenta: "#EA00D9" + brightCyan: "#4BC5FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 288 + contrast: + fg: 106.8 + black: 0 + red: 35.2 + green: 45.6 + yellow: 82.7 + blue: 36.7 + magenta: 38.4 + cyan: 55.2 + white: 102.5 + brightBlack: 24.6 + brightRed: 41.2 + brightGreen: 67.6 + brightYellow: 82.7 + brightBlue: 42.3 + brightMagenta: 38.4 + brightCyan: 64.5 + brightWhite: 107.6 diff --git a/themes/sj-theme.yaml b/themes/sj-theme.yaml new file mode 100644 index 00000000..b447e4c9 --- /dev/null +++ b/themes/sj-theme.yaml @@ -0,0 +1,49 @@ +name: "SJ Theme" +source: + marketplace_id: "SAKSHAMJOSHI.sj-azure-theme" + version: "0.1.0" + installs: 10 + author: "SAKSHAM JOSHI" + repo: "https://github.com/saksham-joshi/SJ-Theme-VsCode" + url: "https://marketplace.visualstudio.com/items?itemName=SAKSHAMJOSHI.sj-azure-theme" +colors: + bg: "#0D1F2D" + fg: "#C8E6F4" + black: "#0D1F2D" + red: "#F07178" + green: "#4EC994" + yellow: "#FFC410" + blue: "#24AEDD" + magenta: "#BB9AF7" + cyan: "#24AEDD" + white: "#C8E6F4" + brightBlack: "#3A6482" + brightRed: "#F07178" + brightGreen: "#4EC994" + brightYellow: "#FFC410" + brightBlue: "#50D9FF" + brightMagenta: "#C792EA" + brightCyan: "#4DCFFF" + brightWhite: "#E8F4FD" +meta: + mode: "dark" + accent: "yellow" + hue: 244 + contrast: + fg: 86.8 + black: 0 + red: 45.8 + green: 60.2 + yellow: 74.5 + blue: 50.3 + magenta: 54.7 + cyan: 50.3 + white: 86.8 + brightBlack: 18.7 + brightRed: 45.8 + brightGreen: 60.2 + brightYellow: 74.5 + brightBlue: 72.6 + brightMagenta: 52.9 + brightCyan: 67.9 + brightWhite: 97.6 diff --git a/themes/sk5s-vsgt.yaml b/themes/sk5s-vsgt.yaml new file mode 100644 index 00000000..67be94e5 --- /dev/null +++ b/themes/sk5s-vsgt.yaml @@ -0,0 +1,49 @@ +name: "sk5s-vsgt" +source: + marketplace_id: "sk5s.sk5s-vs-green-theme" + version: "1.5.0" + installs: 1590 + author: "sk5s" + repo: "https://github.com/sk5s/sk5s-vsgt" + url: "https://marketplace.visualstudio.com/items?itemName=sk5s.sk5s-vs-green-theme" +colors: + bg: "#1E1E1E" + fg: "#EFFAF5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/skeletortheme.yaml b/themes/skeletortheme.yaml new file mode 100644 index 00000000..411aebce --- /dev/null +++ b/themes/skeletortheme.yaml @@ -0,0 +1,49 @@ +name: "SkeletorTheme" +source: + marketplace_id: "mhommet.skeletortheme" + version: "1.0.3" + installs: 34 + author: "mhommet" + repo: "https://github.com/mhommet/skeletortheme" + url: "https://marketplace.visualstudio.com/items?itemName=mhommet.skeletortheme" +colors: + bg: "#21222C" + fg: "#FFFFFF" + black: "#21222C" + red: "#568EFC" + green: "#FAED45" + yellow: "#FAED45" + blue: "#568EFC" + magenta: "#493A90" + cyan: "#90B4EA" + white: "#FFFFFF" + brightBlack: "#C0D0F0" + brightRed: "#568EFC" + brightGreen: "#FAED45" + brightYellow: "#FAED45" + brightBlue: "#568EFC" + brightMagenta: "#493A90" + brightCyan: "#90B4EA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 280 + contrast: + fg: 105.4 + black: 0 + red: 41 + green: 91.1 + yellow: 91.1 + blue: 41 + magenta: 9 + cyan: 58.2 + white: 105.4 + brightBlack: 75.1 + brightRed: 41 + brightGreen: 91.1 + brightYellow: 91.1 + brightBlue: 41 + brightMagenta: 9 + brightCyan: 58.2 + brightWhite: 105.4 diff --git a/themes/sky-at-night.yaml b/themes/sky-at-night.yaml new file mode 100644 index 00000000..7244fa8f --- /dev/null +++ b/themes/sky-at-night.yaml @@ -0,0 +1,49 @@ +name: "Sky At Night" +source: + marketplace_id: "AyushChugh.sky-at-night" + version: "4.2.1" + installs: 2193 + author: "Ayush Chugh" + repo: "https://github.com/Ayush-Chugh-2006/Sky-At-Night-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AyushChugh.sky-at-night" +colors: + bg: "#0C121A" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 75.1 + black: 0 + red: 27.2 + green: 53.4 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.5 diff --git a/themes/sky-blue-tranquility-focus.yaml b/themes/sky-blue-tranquility-focus.yaml new file mode 100644 index 00000000..57f3d760 --- /dev/null +++ b/themes/sky-blue-tranquility-focus.yaml @@ -0,0 +1,49 @@ +name: "Sky Blue - Tranquility & Focus" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#0A1628" + fg: "#E0F7FA" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 258 + contrast: + fg: 98.8 + black: 0 + red: 37.8 + green: 47.6 + yellow: 92.4 + blue: 43.1 + magenta: 32.7 + cyan: 56.6 + white: 96.1 + brightBlack: 9.1 + brightRed: 42.9 + brightGreen: 82.1 + brightYellow: 101.8 + brightBlue: 40.6 + brightMagenta: 41.5 + brightCyan: 91.3 + brightWhite: 106.9 diff --git a/themes/sky-miami-vice.yaml b/themes/sky-miami-vice.yaml new file mode 100644 index 00000000..03899441 --- /dev/null +++ b/themes/sky-miami-vice.yaml @@ -0,0 +1,49 @@ +name: "sky-miami-vice" +source: + marketplace_id: "sky-designs.sky-themes" + version: "0.0.3" + installs: 498 + author: "sky-designs" + repo: "https://gitlab.com/mskyberg/sky-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sky-designs.sky-themes" +colors: + bg: "#000E31" + fg: "#F70A5A" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#CE0A4C" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 260 + contrast: + fg: 35.7 + black: 0 + red: 63.7 + green: 91.2 + yellow: 96.1 + blue: 81.7 + magenta: 75.1 + cyan: 96.3 + white: 75 + brightBlack: 0 + brightRed: 52 + brightGreen: 25.6 + brightYellow: 90.8 + brightBlue: 62.5 + brightMagenta: 50.6 + brightCyan: 94.2 + brightWhite: 107.2 diff --git a/themes/sky-neon.yaml b/themes/sky-neon.yaml new file mode 100644 index 00000000..691a9119 --- /dev/null +++ b/themes/sky-neon.yaml @@ -0,0 +1,49 @@ +name: "sky-neon" +source: + marketplace_id: "sky-designs.sky-themes" + version: "0.0.3" + installs: 498 + author: "sky-designs" + repo: "https://gitlab.com/mskyberg/sky-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sky-designs.sky-themes" +colors: + bg: "#180049" + fg: "#F70A5A" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#CE0A4C" + brightYellow: "#FFE580" + brightBlue: "#00AAAA" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 286 + contrast: + fg: 35 + black: 0 + red: 63 + green: 90.5 + yellow: 95.4 + blue: 81 + magenta: 74.4 + cyan: 95.6 + white: 74.3 + brightBlack: 0 + brightRed: 51.3 + brightGreen: 24.9 + brightYellow: 90.1 + brightBlue: 46.3 + brightMagenta: 49.9 + brightCyan: 93.5 + brightWhite: 106.5 diff --git a/themes/skye-wind-light.yaml b/themes/skye-wind-light.yaml new file mode 100644 index 00000000..b058a262 --- /dev/null +++ b/themes/skye-wind-light.yaml @@ -0,0 +1,49 @@ +name: "Skye-wind-light" +source: + marketplace_id: "wilmarj.skye-wind" + version: "1.6.4" + installs: 233 + author: "wilmarj" + repo: "https://github.com/wilmarjongkind/skye-wind" + url: "https://marketplace.visualstudio.com/items?itemName=wilmarj.skye-wind" +colors: + bg: "#1B293B" + fg: "#B8C1CC" + black: "#525252" + red: "#DC2626" + green: "#16A34A" + yellow: "#CA8A04" + blue: "#2563EB" + magenta: "#C026D3" + cyan: "#0891B2" + white: "#E5E5E5" + brightBlack: "#A3A3A3" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#0284C7" + brightMagenta: "#E879F9" + brightCyan: "#0CB5DE" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "pink" + hue: 255 + contrast: + fg: 65.1 + black: 11.4 + red: 26.6 + green: 38.5 + yellow: 42.8 + blue: 23.3 + magenta: 27.1 + cyan: 34.3 + white: 87.5 + brightBlack: 48.9 + brightRed: 45.6 + brightGreen: 67.9 + brightYellow: 75.2 + brightBlue: 30.7 + brightMagenta: 50.6 + brightCyan: 51.5 + brightWhite: 101 diff --git a/themes/skye-wind.yaml b/themes/skye-wind.yaml new file mode 100644 index 00000000..954b0e7d --- /dev/null +++ b/themes/skye-wind.yaml @@ -0,0 +1,49 @@ +name: "Skye-wind" +source: + marketplace_id: "wilmarj.skye-wind" + version: "1.6.4" + installs: 233 + author: "wilmarj" + repo: "https://github.com/wilmarjongkind/skye-wind" + url: "https://marketplace.visualstudio.com/items?itemName=wilmarj.skye-wind" +colors: + bg: "#0F1723" + fg: "#B8C1CC" + black: "#525252" + red: "#DC2626" + green: "#16A34A" + yellow: "#CA8A04" + blue: "#2563EB" + magenta: "#C026D3" + cyan: "#0891B2" + white: "#E5E5E5" + brightBlack: "#A3A3A3" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#0284C7" + brightMagenta: "#E879F9" + brightCyan: "#0CB5DE" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "pink" + hue: 258 + contrast: + fg: 67.6 + black: 14 + red: 29.1 + green: 41 + yellow: 45.3 + blue: 25.9 + magenta: 29.6 + cyan: 36.8 + white: 90 + brightBlack: 51.5 + brightRed: 48.1 + brightGreen: 70.5 + brightYellow: 77.8 + brightBlue: 33.2 + brightMagenta: 53.1 + brightCyan: 54 + brightWhite: 103.6 diff --git a/themes/skyline.yaml b/themes/skyline.yaml new file mode 100644 index 00000000..63df2b79 --- /dev/null +++ b/themes/skyline.yaml @@ -0,0 +1,49 @@ +name: "Skyline" +source: + marketplace_id: "hydralite.hydralite-skyline" + version: "0.0.3" + installs: 3715 + author: "Hydralite" + repo: "https://github.com/hydralite/skyline" + url: "https://marketplace.visualstudio.com/items?itemName=hydralite.hydralite-skyline" +colors: + bg: "#1C1E26" + fg: "#FFFFFF" + black: "#000000" + red: "#E64444" + green: "#2CECA2" + yellow: "#FFEA43" + blue: "#439CFF" + magenta: "#FF39FF" + cyan: "#20C4EC" + white: "#E5E5E5" + brightBlack: "#6B6B6B" + brightRed: "#FF6363" + brightGreen: "#68FFC2" + brightYellow: "#FFFF5F" + brightBlue: "#68B0FF" + brightMagenta: "#D670D6" + brightCyan: "#59DEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 106 + black: 0 + red: 33.9 + green: 76.9 + yellow: 91.1 + blue: 46.1 + magenta: 46.5 + cyan: 60.7 + white: 89.1 + brightBlack: 23.3 + brightRed: 45.4 + brightGreen: 89.5 + brightYellow: 101.3 + brightBlue: 55.7 + brightMagenta: 44.5 + brightCyan: 75.2 + brightWhite: 106 diff --git a/themes/slack-theme-aubergine-dark.yaml b/themes/slack-theme-aubergine-dark.yaml new file mode 100644 index 00000000..aa472b32 --- /dev/null +++ b/themes/slack-theme-aubergine-dark.yaml @@ -0,0 +1,49 @@ +name: "Slack Theme Aubergine Dark" +source: + marketplace_id: "felipe-mendes.slack-theme" + version: "1.9.17" + installs: 514450 + author: "Felipe Mendes" + repo: "https://github.com/felipemendes/slack-theme" + url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" +colors: + bg: "#3E313C" + fg: "#F6F6F4" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 331 + contrast: + fg: 95.4 + black: 0 + red: 27.6 + green: 50.8 + yellow: 64.6 + blue: 29 + magenta: 22.7 + cyan: 43.7 + white: 101.5 + brightBlack: 44.9 + brightRed: 27.6 + brightGreen: 50.8 + brightYellow: 64.6 + brightBlue: 29 + brightMagenta: 22.7 + brightCyan: 43.7 + brightWhite: 101.5 diff --git a/themes/slack-theme-aubergine-new.yaml b/themes/slack-theme-aubergine-new.yaml new file mode 100644 index 00000000..fd27fba1 --- /dev/null +++ b/themes/slack-theme-aubergine-new.yaml @@ -0,0 +1,49 @@ +name: "Slack Theme Aubergine New" +source: + marketplace_id: "felipe-mendes.slack-theme" + version: "1.9.17" + installs: 514450 + author: "Felipe Mendes" + repo: "https://github.com/felipemendes/slack-theme" + url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" +colors: + bg: "#FFFFFF" + fg: "#383A42" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#ECB22E" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#ECB22E" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 96.2 + black: 106 + red: 67.7 + green: 44.9 + yellow: 36.3 + blue: 66.3 + magenta: 72.6 + cyan: 51.8 + white: 0 + brightBlack: 50.6 + brightRed: 67.7 + brightGreen: 44.9 + brightYellow: 36.3 + brightBlue: 66.3 + brightMagenta: 72.6 + brightCyan: 51.8 + brightWhite: 0 diff --git a/themes/slack-theme-aubergine.yaml b/themes/slack-theme-aubergine.yaml new file mode 100644 index 00000000..a1aecd98 --- /dev/null +++ b/themes/slack-theme-aubergine.yaml @@ -0,0 +1,49 @@ +name: "Slack Theme Aubergine" +source: + marketplace_id: "felipe-mendes.slack-theme" + version: "1.9.17" + installs: 514450 + author: "Felipe Mendes" + repo: "https://github.com/felipemendes/slack-theme" + url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 106 + black: 106 + red: 67.7 + green: 44.9 + yellow: 31.7 + blue: 66.3 + magenta: 72.6 + cyan: 51.8 + white: 0 + brightBlack: 50.6 + brightRed: 67.7 + brightGreen: 44.9 + brightYellow: 31.7 + brightBlue: 66.3 + brightMagenta: 72.6 + brightCyan: 51.8 + brightWhite: 0 diff --git a/themes/slack-theme-dark.yaml b/themes/slack-theme-dark.yaml new file mode 100644 index 00000000..1f2e8bb3 --- /dev/null +++ b/themes/slack-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Slack Theme Dark" +source: + marketplace_id: "tanmay.slack-theme" + version: "1.0.0" + installs: 5528 + author: "tanmay" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tanmay.slack-theme" +colors: + bg: "#14101A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#EDB625" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#FDBFFF" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#6B266D" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: 303 + contrast: + fg: 107.3 + black: 0 + red: 27.2 + green: 52.2 + yellow: 67.3 + blue: 15.4 + magenta: 26.6 + cyan: 79.6 + white: 15.5 + brightBlack: 22.5 + brightRed: 27.2 + brightGreen: 60.8 + brightYellow: 60.8 + brightBlue: 15.4 + brightMagenta: 26.6 + brightCyan: 9.6 + brightWhite: 53 diff --git a/themes/slack-theme.yaml b/themes/slack-theme.yaml new file mode 100644 index 00000000..e75a886b --- /dev/null +++ b/themes/slack-theme.yaml @@ -0,0 +1,49 @@ +name: "slack-theme" +source: + marketplace_id: "tanmay.slack-theme" + version: "1.0.0" + installs: 5528 + author: "tanmay" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tanmay.slack-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#EDB625" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#6B266D" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#6B266D" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 49.2 + yellow: 34.7 + blue: 86.1 + magenta: 74.6 + cyan: 92.3 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 92.3 + brightWhite: 48.5 diff --git a/themes/slate-black.yaml b/themes/slate-black.yaml new file mode 100644 index 00000000..bcbf97a4 --- /dev/null +++ b/themes/slate-black.yaml @@ -0,0 +1,49 @@ +name: "Slate Black" +source: + marketplace_id: "postnumbers.slate-themes" + version: "0.0.4" + installs: 37 + author: "Postnumbers" + repo: "https://github.com/postnumbers/slate-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.slate-themes" +colors: + bg: "#000000" + fg: "#CDD0D8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/slate-blackish.yaml b/themes/slate-blackish.yaml new file mode 100644 index 00000000..05ed60b2 --- /dev/null +++ b/themes/slate-blackish.yaml @@ -0,0 +1,49 @@ +name: "Slate Blackish" +source: + marketplace_id: "postnumbers.slate-themes" + version: "0.0.4" + installs: 37 + author: "Postnumbers" + repo: "https://github.com/postnumbers/slate-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.slate-themes" +colors: + bg: "#16191D" + fg: "#CDD0D8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 76.9 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.6 + cyan: 47.4 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.4 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/slate-contrast.yaml b/themes/slate-contrast.yaml new file mode 100644 index 00000000..555ce3c6 --- /dev/null +++ b/themes/slate-contrast.yaml @@ -0,0 +1,49 @@ +name: "slate-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#19191F" + fg: "#EBEBF4" + black: "#24242D" + red: "#BA0E2E" + green: "#566981" + yellow: "#89A7B1" + blue: "#CBDAD5" + magenta: "#566981" + cyan: "#89A7B1" + white: "#FBFBFD" + brightBlack: "#474757" + brightRed: "#F03E5F" + brightGreen: "#8B9CB2" + brightYellow: "#C6D5DA" + brightBlue: "#FFFFFF" + brightMagenta: "#8B9CB2" + brightCyan: "#C6D5DA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 94 + black: 0 + red: 20.2 + green: 22.4 + yellow: 50.7 + blue: 80.8 + magenta: 22.4 + cyan: 50.7 + white: 104 + brightBlack: 10.1 + brightRed: 36.5 + brightGreen: 46.6 + brightYellow: 78.2 + brightBlue: 106.6 + brightMagenta: 46.6 + brightCyan: 78.2 + brightWhite: 106.6 diff --git a/themes/slate-gray.yaml b/themes/slate-gray.yaml new file mode 100644 index 00000000..4feee058 --- /dev/null +++ b/themes/slate-gray.yaml @@ -0,0 +1,49 @@ +name: "Slate Gray" +source: + marketplace_id: "postnumbers.slate-themes" + version: "0.0.4" + installs: 37 + author: "Postnumbers" + repo: "https://github.com/postnumbers/slate-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.slate-themes" +colors: + bg: "#2B313B" + fg: "#D4D7DD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 76.9 + black: 0 + red: 22.4 + green: 48.7 + yellow: 81.3 + blue: 23.2 + magenta: 25.5 + cyan: 43.3 + white: 85.7 + brightBlack: 17.8 + brightRed: 34.3 + brightGreen: 59.3 + brightYellow: 91.4 + brightBlue: 35.7 + brightMagenta: 41.1 + brightCyan: 51.1 + brightWhite: 85.7 diff --git a/themes/slate-light.yaml b/themes/slate-light.yaml new file mode 100644 index 00000000..4c9f3e90 --- /dev/null +++ b/themes/slate-light.yaml @@ -0,0 +1,49 @@ +name: "slate-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#19191F" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#566981" + yellow: "#89A7B1" + blue: "#9AADA7" + magenta: "#566981" + cyan: "#89A7B1" + white: "#24242D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#8B9CB2" + brightYellow: "#C6D5DA" + brightBlue: "#D2DBD8" + brightMagenta: "#8B9CB2" + brightCyan: "#C6D5DA" + brightWhite: "#474757" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 104.3 + black: 0 + red: 80.3 + green: 78.1 + yellow: 50 + blue: 46.5 + magenta: 78.1 + cyan: 50 + white: 102.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 53.9 + brightYellow: 23.7 + brightBlue: 19.9 + brightMagenta: 53.9 + brightCyan: 23.7 + brightWhite: 91 diff --git a/themes/slate.yaml b/themes/slate.yaml new file mode 100644 index 00000000..2db11d8c --- /dev/null +++ b/themes/slate.yaml @@ -0,0 +1,49 @@ +name: "slate" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#3D3D4C" + fg: "#EBEBF4" + black: "#48485A" + red: "#BA0E2E" + green: "#566981" + yellow: "#89A7B1" + blue: "#CBDAD5" + magenta: "#566981" + cyan: "#89A7B1" + white: "#FBFBFD" + brightBlack: "#6A6A85" + brightRed: "#F03E5F" + brightGreen: "#8B9CB2" + brightYellow: "#C6D5DA" + brightBlue: "#FFFFFF" + brightMagenta: "#8B9CB2" + brightCyan: "#C6D5DA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 86 + black: 0 + red: 12.3 + green: 14.4 + yellow: 42.7 + blue: 72.8 + magenta: 14.4 + cyan: 42.7 + white: 96.1 + brightBlack: 16.5 + brightRed: 28.6 + brightGreen: 38.7 + brightYellow: 70.2 + brightBlue: 98.7 + brightMagenta: 38.7 + brightCyan: 70.2 + brightWhite: 98.7 diff --git a/themes/sleepy-owl-default-beta.yaml b/themes/sleepy-owl-default-beta.yaml new file mode 100644 index 00000000..f414eac0 --- /dev/null +++ b/themes/sleepy-owl-default-beta.yaml @@ -0,0 +1,49 @@ +name: "Sleepy Owl - Default (Beta)" +source: + marketplace_id: "santosned.theme-sleepy-owl" + version: "0.90.1" + installs: 93 + author: "Sleepy Owl Theme" + repo: "https://github.com/santosned/vsc-sleepy-owl-theme" + url: "https://marketplace.visualstudio.com/items?itemName=santosned.theme-sleepy-owl" +colors: + bg: "#24242F" + fg: "#C7C7CF" + black: "#0C0A12" + red: "#E86074" + green: "#A4D860" + yellow: "#E8BE56" + blue: "#5A84E8" + magenta: "#A484E8" + cyan: "#20C4E8" + white: "#E0E0E8" + brightBlack: "#747488" + brightRed: "#E88484" + brightGreen: "#AEE0A4" + brightYellow: "#E8E090" + brightBlue: "#96B4FF" + brightMagenta: "#E090E0" + brightCyan: "#64DAD2" + brightWhite: "#F5F5FF" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 70.2 + black: 0 + red: 39.1 + green: 70.6 + yellow: 67.7 + blue: 35.8 + magenta: 42.6 + cyan: 59.4 + white: 85.3 + brightBlack: 27 + brightRed: 48.5 + brightGreen: 76.9 + brightYellow: 83.3 + brightBlue: 59.7 + brightMagenta: 54.6 + brightCyan: 70.4 + brightWhite: 98.9 diff --git a/themes/sleepy-owl-greenwich-beta.yaml b/themes/sleepy-owl-greenwich-beta.yaml new file mode 100644 index 00000000..01db4c5e --- /dev/null +++ b/themes/sleepy-owl-greenwich-beta.yaml @@ -0,0 +1,49 @@ +name: "Sleepy Owl - Greenwich (Beta)" +source: + marketplace_id: "santosned.theme-sleepy-owl" + version: "0.90.1" + installs: 93 + author: "Sleepy Owl Theme" + repo: "https://github.com/santosned/vsc-sleepy-owl-theme" + url: "https://marketplace.visualstudio.com/items?itemName=santosned.theme-sleepy-owl" +colors: + bg: "#24272D" + fg: "#C7C7CF" + black: "#0C0A12" + red: "#E86074" + green: "#A4D860" + yellow: "#E8BE56" + blue: "#5A84E8" + magenta: "#A484E8" + cyan: "#20C4E8" + white: "#E0E0E8" + brightBlack: "#747B88" + brightRed: "#E88484" + brightGreen: "#AEE0A4" + brightYellow: "#E8E090" + brightBlue: "#96B4FF" + brightMagenta: "#E090E0" + brightCyan: "#64DAD2" + brightWhite: "#F5F5FF" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 69.8 + black: 0 + red: 38.8 + green: 70.3 + yellow: 67.3 + blue: 35.5 + magenta: 42.2 + cyan: 59.1 + white: 85 + brightBlack: 29 + brightRed: 48.1 + brightGreen: 76.6 + brightYellow: 83 + brightBlue: 59.3 + brightMagenta: 54.2 + brightCyan: 70.1 + brightWhite: 98.5 diff --git a/themes/sleepy-owl-oak-beta.yaml b/themes/sleepy-owl-oak-beta.yaml new file mode 100644 index 00000000..a2a85cc1 --- /dev/null +++ b/themes/sleepy-owl-oak-beta.yaml @@ -0,0 +1,49 @@ +name: "Sleepy Owl - Oak (Beta)" +source: + marketplace_id: "santosned.theme-sleepy-owl" + version: "0.90.1" + installs: 93 + author: "Sleepy Owl Theme" + repo: "https://github.com/santosned/vsc-sleepy-owl-theme" + url: "https://marketplace.visualstudio.com/items?itemName=santosned.theme-sleepy-owl" +colors: + bg: "#29292F" + fg: "#C8C8CD" + black: "#0C0A12" + red: "#E86074" + green: "#A4D860" + yellow: "#E8BE56" + blue: "#5A84E8" + magenta: "#A484E8" + cyan: "#20C4E8" + white: "#E1E1E6" + brightBlack: "#787880" + brightRed: "#E88484" + brightGreen: "#AEE0A4" + brightYellow: "#E8E090" + brightBlue: "#96B4FF" + brightMagenta: "#E090E0" + brightCyan: "#64DAD2" + brightWhite: "#F5F5FF" +meta: + mode: "dark" + accent: "red" + hue: 286 + contrast: + fg: 69.8 + black: 0 + red: 38.3 + green: 69.8 + yellow: 66.9 + blue: 35 + magenta: 41.8 + cyan: 58.6 + white: 85 + brightBlack: 27.6 + brightRed: 47.7 + brightGreen: 76.1 + brightYellow: 82.5 + brightBlue: 58.8 + brightMagenta: 53.8 + brightCyan: 69.6 + brightWhite: 98 diff --git a/themes/slime-color-theme.yaml b/themes/slime-color-theme.yaml new file mode 100644 index 00000000..aa1fff05 --- /dev/null +++ b/themes/slime-color-theme.yaml @@ -0,0 +1,49 @@ +name: "slime-color-theme" +source: + marketplace_id: "smlombardi.slime" + version: "3.2.1" + installs: 129886 + author: "smlombardi" + repo: "https://github.com/smlombardi/theme-slime" + url: "https://marketplace.visualstudio.com/items?itemName=smlombardi.slime" +colors: + bg: "#1E2324" + fg: "#E0E0E0" + black: "#666666" + red: "#CD6564" + green: "#AEC199" + yellow: "#FFF099" + blue: "#6D9CBE" + magenta: "#B081B9" + cyan: "#80B5B3" + white: "#EFEFEF" + brightBlack: "#666666" + brightRed: "#CD6564" + brightGreen: "#AEC199" + brightYellow: "#FFF099" + brightBlue: "#6D9CBE" + brightMagenta: "#B081B9" + brightCyan: "#80B5B3" + brightWhite: "#EFEFEF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.4 + black: 20.6 + red: 34.9 + green: 63.1 + yellow: 94.7 + blue: 43.6 + magenta: 40.9 + cyan: 54.6 + white: 95 + brightBlack: 20.6 + brightRed: 34.9 + brightGreen: 63.1 + brightYellow: 94.7 + brightBlue: 43.6 + brightMagenta: 40.9 + brightCyan: 54.6 + brightWhite: 95 diff --git a/themes/slime-contrast.yaml b/themes/slime-contrast.yaml new file mode 100644 index 00000000..17a2e0a6 --- /dev/null +++ b/themes/slime-contrast.yaml @@ -0,0 +1,49 @@ +name: "slime-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0B0C0D" + fg: "#FFFFFF" + black: "#17191B" + red: "#BA0E2E" + green: "#D8E778" + yellow: "#6A9EC5" + blue: "#D0B123" + magenta: "#689DC5" + cyan: "#DFBF29" + white: "#FFFFFF" + brightBlack: "#3A3F44" + brightRed: "#F03E5F" + brightGreen: "#F1F6CF" + brightYellow: "#B3CEE2" + brightBlue: "#E7D272" + brightMagenta: "#B2CDE1" + brightCyan: "#ECDA82" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.7 + black: 0 + red: 21.3 + green: 86.6 + yellow: 46.7 + blue: 61.1 + magenta: 46.2 + cyan: 69 + white: 107.7 + brightBlack: 7.7 + brightRed: 37.6 + brightGreen: 99.4 + brightYellow: 74.4 + brightBlue: 79 + brightMagenta: 73.8 + brightCyan: 83.6 + brightWhite: 107.7 diff --git a/themes/slime-light.yaml b/themes/slime-light.yaml new file mode 100644 index 00000000..00296ec4 --- /dev/null +++ b/themes/slime-light.yaml @@ -0,0 +1,49 @@ +name: "slime-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#8B9355" + yellow: "#9FB3C2" + blue: "#C7AF3F" + magenta: "#9FB3C2" + cyan: "#C7AF3F" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#B8BF8F" + brightYellow: "#DDE4EA" + brightBlue: "#DED08E" + brightMagenta: "#DDE4EA" + brightCyan: "#DED08E" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 60.1 + yellow: 42.6 + blue: 42.8 + magenta: 42.6 + cyan: 42.8 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 36.9 + brightYellow: 14.1 + brightBlue: 25.4 + brightMagenta: 14.1 + brightCyan: 25.4 + brightWhite: 78.8 diff --git a/themes/slime-solid-color-theme.yaml b/themes/slime-solid-color-theme.yaml new file mode 100644 index 00000000..20a6be57 --- /dev/null +++ b/themes/slime-solid-color-theme.yaml @@ -0,0 +1,49 @@ +name: "slime-solid-color-theme" +source: + marketplace_id: "ganevru.slime-solid" + version: "1.0.0" + installs: 1729 + author: "ganevru" + repo: "https://github.com/ganevru/theme-slime-solid" + url: "https://marketplace.visualstudio.com/items?itemName=ganevru.slime-solid" +colors: + bg: "#24292B" + fg: "#E0E0E0" + black: "#666666" + red: "#CD6564" + green: "#AEC199" + yellow: "#FFF099" + blue: "#6D9CBE" + magenta: "#B081B9" + cyan: "#80B5B3" + white: "#EFEFEF" + brightBlack: "#666666" + brightRed: "#CD6564" + brightGreen: "#AEC199" + brightYellow: "#FFF099" + brightBlue: "#6D9CBE" + brightMagenta: "#B081B9" + brightCyan: "#80B5B3" + brightWhite: "#EFEFEF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 84.4 + black: 19.6 + red: 33.9 + green: 62 + yellow: 93.6 + blue: 42.5 + magenta: 39.9 + cyan: 53.6 + white: 93.9 + brightBlack: 19.6 + brightRed: 33.9 + brightGreen: 62 + brightYellow: 93.6 + brightBlue: 42.5 + brightMagenta: 39.9 + brightCyan: 53.6 + brightWhite: 93.9 diff --git a/themes/slime.yaml b/themes/slime.yaml new file mode 100644 index 00000000..6e4b5a16 --- /dev/null +++ b/themes/slime.yaml @@ -0,0 +1,49 @@ +name: "Slime" +source: + marketplace_id: "luanpiegas.slime-color-theme" + version: "1.0.0" + installs: 131 + author: "Luan Piegas" + repo: "https://github.com/LuanPiegas/Slime-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=luanpiegas.slime-color-theme" +colors: + bg: "#0A0A0A" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#FFFFFF" + yellow: "#E5E510" + blue: "#FFFFFF" + magenta: "#ADFF00" + cyan: "#ADFF00" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#ADFF00" + brightGreen: "#ADFF00" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#ADFF00" + brightCyan: "#ADFF00" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.7 + black: 0 + red: 37.4 + green: 107.7 + yellow: 86.5 + blue: 107.7 + magenta: 92.9 + cyan: 92.9 + white: 107.7 + brightBlack: 22.9 + brightRed: 92.9 + brightGreen: 92.9 + brightYellow: 107.7 + brightBlue: 107.7 + brightMagenta: 92.9 + brightCyan: 92.9 + brightWhite: 90.9 diff --git a/themes/slimy-high-contrast.yaml b/themes/slimy-high-contrast.yaml new file mode 100644 index 00000000..a16d09ac --- /dev/null +++ b/themes/slimy-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Slimy (high-contrast)" +source: + marketplace_id: "chancestrickland.slimy-theme" + version: "0.4.8" + installs: 865 + author: "Chance Strickland" + repo: "https://github.com/chancestrickland/slimy" + url: "https://marketplace.visualstudio.com/items?itemName=chancestrickland.slimy-theme" +colors: + bg: "#121515" + fg: "#E0E0E0" + black: "#1D2020" + red: "#D86161" + green: "#BBE887" + yellow: "#EFD154" + blue: "#9DD2EA" + magenta: "#E8B5BB" + cyan: "#88E0FF" + white: "#FFFFFF" + brightBlack: "#242727" + brightRed: "#E86F6E" + brightGreen: "#CAF895" + brightYellow: "#FFE063" + brightBlue: "#ACE1FA" + brightMagenta: "#F8C4CA" + brightCyan: "#98EFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 87.1 + black: 0 + red: 37.7 + green: 83.4 + yellow: 78.8 + blue: 73.9 + magenta: 68.9 + cyan: 79.8 + white: 107.1 + brightBlack: 0 + brightRed: 44.5 + brightGreen: 93.2 + brightYellow: 88 + brightBlue: 83 + brightMagenta: 77.9 + brightCyan: 88.2 + brightWhite: 107.1 diff --git a/themes/slimy-light.yaml b/themes/slimy-light.yaml new file mode 100644 index 00000000..ee860ad9 --- /dev/null +++ b/themes/slimy-light.yaml @@ -0,0 +1,49 @@ +name: "Slimy (light)" +source: + marketplace_id: "chancestrickland.slimy-theme" + version: "0.4.8" + installs: 865 + author: "Chance Strickland" + repo: "https://github.com/chancestrickland/slimy" + url: "https://marketplace.visualstudio.com/items?itemName=chancestrickland.slimy-theme" +colors: + bg: "#F4F4F4" + fg: "#121515" + black: "#121515" + red: "#9B4040" + green: "#749948" + yellow: "#60572F" + blue: "#427C8E" + magenta: "#967176" + cyan: "#4BADC4" + white: "#EAEAEA" + brightBlack: "#070C0C" + brightRed: "#AB4E4C" + brightGreen: "#82A755" + brightYellow: "#6E643B" + brightBlue: "#508A9C" + brightMagenta: "#A47F84" + brightCyan: "#5CBCD3" + brightWhite: "#DFDFDF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.5 + black: 98.5 + red: 75.3 + green: 53.5 + yellow: 78.5 + blue: 65.7 + magenta: 62.9 + cyan: 44 + white: 0 + brightBlack: 99.2 + brightRed: 69.6 + brightGreen: 46.7 + brightYellow: 73 + brightBlue: 59.3 + brightMagenta: 56.3 + brightCyan: 36.3 + brightWhite: 9.8 diff --git a/themes/slimy.yaml b/themes/slimy.yaml new file mode 100644 index 00000000..d068cba6 --- /dev/null +++ b/themes/slimy.yaml @@ -0,0 +1,49 @@ +name: "Slimy" +source: + marketplace_id: "chancestrickland.slimy-theme" + version: "0.4.8" + installs: 865 + author: "Chance Strickland" + repo: "https://github.com/chancestrickland/slimy" + url: "https://marketplace.visualstudio.com/items?itemName=chancestrickland.slimy-theme" +colors: + bg: "#242B2B" + fg: "#E0E0E0" + black: "#2F3737" + red: "#B64E4E" + green: "#A0C080" + yellow: "#E7D072" + blue: "#8CAEC1" + magenta: "#BE9296" + cyan: "#90C7E0" + white: "#E0E0E0" + brightBlack: "#373F3F" + brightRed: "#C65C5B" + brightGreen: "#AFCF8E" + brightYellow: "#F7DF80" + brightBlue: "#9ABDD0" + brightMagenta: "#CDA0A4" + brightCyan: "#9FD6EF" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 84.1 + black: 0 + red: 23.9 + green: 59.1 + yellow: 74.6 + blue: 52 + magenta: 45.6 + cyan: 64.4 + white: 84.1 + brightBlack: 0 + brightRed: 30 + brightGreen: 67.7 + brightYellow: 83.8 + brightBlue: 60.2 + brightMagenta: 53.2 + brightCyan: 73.2 + brightWhite: 90.4 diff --git a/themes/slinkwave.yaml b/themes/slinkwave.yaml new file mode 100644 index 00000000..e6833e4b --- /dev/null +++ b/themes/slinkwave.yaml @@ -0,0 +1,49 @@ +name: "slinkwave" +source: + marketplace_id: "bholmesdev.slinkwave" + version: "0.0.2" + installs: 1163 + author: "Ben Holmes" + repo: "https://github.com/slinkity/slinkwave-themes" + url: "https://marketplace.visualstudio.com/items?itemName=bholmesdev.slinkwave" +colors: + bg: "#19102D" + fg: "#FFF1F6" + black: "#271A47" + red: "#FF3E51" + green: "#52DA88" + yellow: "#E1D71B" + blue: "#FC955A" + magenta: "#A8A9EB" + cyan: "#85DACC" + white: "#FFF1F6" + brightBlack: "#AEA1CC" + brightRed: "#FF3E51" + brightGreen: "#52DA88" + brightYellow: "#E1D71B" + brightBlue: "#FC955A" + brightMagenta: "#A8A9EB" + brightCyan: "#85DACC" + brightWhite: "#FFF1F6" +meta: + mode: "dark" + accent: "orange" + hue: 295 + contrast: + fg: 100 + black: 0 + red: 40.2 + green: 69 + yellow: 78.8 + blue: 58.5 + magenta: 57.9 + cyan: 74.1 + white: 100 + brightBlack: 53.9 + brightRed: 40.2 + brightGreen: 69 + brightYellow: 78.8 + brightBlue: 58.5 + brightMagenta: 57.9 + brightCyan: 74.1 + brightWhite: 100 diff --git a/themes/sloth-highlander-theme-1.yaml b/themes/sloth-highlander-theme-1.yaml new file mode 100644 index 00000000..1510ebdb --- /dev/null +++ b/themes/sloth-highlander-theme-1.yaml @@ -0,0 +1,49 @@ +name: "sloth-highlander-theme-1" +source: + marketplace_id: "fernandoncidade1.sloth-highlander-theme-1" + version: "0.0.3" + installs: 79 + author: "fernandoncidade1" + repo: "https://github.com/fernandoncidade/sloth-highlander-theme-1" + url: "https://marketplace.visualstudio.com/items?itemName=fernandoncidade1.sloth-highlander-theme-1" +colors: + bg: "#05050B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/sloth-highlander-theme-2.yaml b/themes/sloth-highlander-theme-2.yaml new file mode 100644 index 00000000..46a5610f --- /dev/null +++ b/themes/sloth-highlander-theme-2.yaml @@ -0,0 +1,49 @@ +name: "sloth-highlander-theme-2" +source: + marketplace_id: "fernandoncidade1.sloth-highlander-theme-1" + version: "0.0.3" + installs: 79 + author: "fernandoncidade1" + repo: "https://github.com/fernandoncidade/sloth-highlander-theme-1" + url: "https://marketplace.visualstudio.com/items?itemName=fernandoncidade1.sloth-highlander-theme-1" +colors: + bg: "#0D0E14" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + contrast: + fg: 102.6 + black: 0 + red: 44.1 + green: 85.5 + yellow: 99.2 + blue: 54.3 + magenta: 55.2 + cyan: 84.6 + white: 102.6 + brightBlack: 28.7 + brightRed: 49.5 + brightGreen: 89.7 + brightYellow: 104.2 + brightBlue: 66.8 + brightMagenta: 63.3 + brightCyan: 97.4 + brightWhite: 107.5 diff --git a/themes/smalltheme-carbon-oled.yaml b/themes/smalltheme-carbon-oled.yaml new file mode 100644 index 00000000..3f6bc034 --- /dev/null +++ b/themes/smalltheme-carbon-oled.yaml @@ -0,0 +1,49 @@ +name: "SmallTheme Carbon OLED" +source: + marketplace_id: "howmanysmall.small-theme" + version: "0.2.1" + installs: 130 + author: "HowManySmall" + repo: "https://github.com/HowManySmall/small-theme" + url: "https://marketplace.visualstudio.com/items?itemName=howmanysmall.small-theme" +colors: + bg: "#000000" + fg: "#F4F4F4" + black: "#161616" + red: "#FA4D56" + green: "#42BE65" + yellow: "#FF7EB6" + blue: "#4589FF" + magenta: "#EE5396" + cyan: "#08BDBA" + white: "#F4F4F4" + brightBlack: "#393939" + brightRed: "#FA4D56" + brightGreen: "#42BE65" + brightYellow: "#FF7EB6" + brightBlue: "#78A9FF" + brightMagenta: "#EE5396" + brightCyan: "#08BDBA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 100.6 + black: 0 + red: 42 + green: 55.3 + yellow: 56.1 + blue: 41.2 + magenta: 42 + cyan: 56.7 + white: 100.6 + brightBlack: 0 + brightRed: 42 + brightGreen: 55.3 + brightYellow: 56.1 + brightBlue: 55.8 + brightMagenta: 42 + brightCyan: 56.7 + brightWhite: 107.9 diff --git a/themes/smettboi-light.yaml b/themes/smettboi-light.yaml new file mode 100644 index 00000000..dcad41f3 --- /dev/null +++ b/themes/smettboi-light.yaml @@ -0,0 +1,49 @@ +name: "smettboi-light" +source: + marketplace_id: "smettboi.smettboi-themes" + version: "1.1.0" + installs: 45 + author: "smettboi" + repo: "https://github.com/zaneadix/smettboi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=smettboi.smettboi-themes" +colors: + bg: "#EBECF0" + fg: "#292938" + black: "#000000" + red: "#FF8080" + green: "#67A882" + yellow: "#D4B22B" + blue: "#949FFF" + magenta: "#C5A0A0" + cyan: "#51C0C8" + white: "#D3D4DE" + brightBlack: "#000000" + brightRed: "#FF8080" + brightGreen: "#67A882" + brightYellow: "#D4B22B" + brightBlue: "#949FFF" + brightMagenta: "#C5A0A0" + brightCyan: "#51C0C8" + brightWhite: "#D3D4DE" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 89.8 + black: 94.8 + red: 36.1 + green: 42.6 + yellow: 28.7 + blue: 36.4 + magenta: 35.2 + cyan: 31 + white: 11.2 + brightBlack: 94.8 + brightRed: 36.1 + brightGreen: 42.6 + brightYellow: 28.7 + brightBlue: 36.4 + brightMagenta: 35.2 + brightCyan: 31 + brightWhite: 11.2 diff --git a/themes/smithy-bronze.yaml b/themes/smithy-bronze.yaml new file mode 100644 index 00000000..f7afef95 --- /dev/null +++ b/themes/smithy-bronze.yaml @@ -0,0 +1,49 @@ +name: "Smithy Bronze" +source: + marketplace_id: "michaelassaf.dark-smithy" + version: "0.1.87" + installs: 208 + author: "Michael Assaf" + repo: "https://github.com/smithy-theme/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=michaelassaf.dark-smithy" +colors: + bg: "#151716" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.9 + black: 0 + red: 26.8 + green: 53 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90.1 diff --git a/themes/smooth-burn-dark-hard.yaml b/themes/smooth-burn-dark-hard.yaml new file mode 100644 index 00000000..c669f143 --- /dev/null +++ b/themes/smooth-burn-dark-hard.yaml @@ -0,0 +1,49 @@ +name: "Smooth Burn Dark Hard" +source: + marketplace_id: "AndreaCombette.smoothburn" + version: "0.5.4" + installs: 937 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/smoothburn-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" +colors: + bg: "#121827" + fg: "#F9D4A8" + black: "#23334E" + red: "#DA223A" + green: "#A77166" + yellow: "#D9735B" + blue: "#417283" + magenta: "#A77166" + cyan: "#818785" + white: "#9B968C" + brightBlack: "#818785" + brightRed: "#F44159" + brightGreen: "#F09162" + brightYellow: "#F09162" + brightBlue: "#9B968C" + brightMagenta: "#C5937C" + brightCyan: "#9B968C" + brightWhite: "#F9D4A8" +meta: + mode: "dark" + accent: "orange" + hue: 267 + contrast: + fg: 83 + black: 0 + red: 28.4 + green: 32.9 + yellow: 41.7 + blue: 24.3 + magenta: 32.9 + cyan: 36.3 + white: 44.7 + brightBlack: 36.3 + brightRed: 37.8 + brightGreen: 54.8 + brightYellow: 54.8 + brightBlue: 44.7 + brightMagenta: 48.7 + brightCyan: 44.7 + brightWhite: 83 diff --git a/themes/smooth-burn-dark-medium.yaml b/themes/smooth-burn-dark-medium.yaml new file mode 100644 index 00000000..3ee09efe --- /dev/null +++ b/themes/smooth-burn-dark-medium.yaml @@ -0,0 +1,49 @@ +name: "Smooth Burn Dark Medium" +source: + marketplace_id: "AndreaCombette.smoothburn" + version: "0.5.4" + installs: 937 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/smoothburn-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" +colors: + bg: "#1E2539" + fg: "#F9D4A8" + black: "#23334E" + red: "#DA223A" + green: "#A77166" + yellow: "#D9735B" + blue: "#417283" + magenta: "#A77166" + cyan: "#818785" + white: "#9B968C" + brightBlack: "#818785" + brightRed: "#F44159" + brightGreen: "#F09162" + brightYellow: "#F09162" + brightBlue: "#9B968C" + brightMagenta: "#C5937C" + brightCyan: "#9B968C" + brightWhite: "#F9D4A8" +meta: + mode: "dark" + accent: "orange" + hue: 269 + contrast: + fg: 81.1 + black: 0 + red: 26.5 + green: 31.1 + yellow: 39.9 + blue: 22.4 + magenta: 31.1 + cyan: 34.4 + white: 42.8 + brightBlack: 34.4 + brightRed: 35.9 + brightGreen: 53 + brightYellow: 53 + brightBlue: 42.8 + brightMagenta: 46.9 + brightCyan: 42.8 + brightWhite: 81.1 diff --git a/themes/smooth-burn-dark.yaml b/themes/smooth-burn-dark.yaml new file mode 100644 index 00000000..67d9d20b --- /dev/null +++ b/themes/smooth-burn-dark.yaml @@ -0,0 +1,49 @@ +name: "Smooth Burn Dark" +source: + marketplace_id: "AndreaCombette.smoothburn" + version: "0.5.4" + installs: 937 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/smoothburn-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" +colors: + bg: "#23334E" + fg: "#F8BD94" + black: "#23334E" + red: "#A77166" + green: "#C5937C" + yellow: "#C5937C" + blue: "#61767D" + magenta: "#A77166" + cyan: "#61767D" + white: "#CBB39B" + brightBlack: "#A77166" + brightRed: "#A77166" + brightGreen: "#C5937C" + brightYellow: "#F8BD94" + brightBlue: "#9B968C" + brightMagenta: "#9B968C" + brightCyan: "#CBB39B" + brightWhite: "#F8BD94" +meta: + mode: "dark" + accent: "yellow" + hue: 260 + contrast: + fg: 68.2 + black: 0 + red: 28.3 + green: 44 + yellow: 44 + blue: 22.7 + magenta: 28.3 + cyan: 22.7 + white: 57.6 + brightBlack: 28.3 + brightRed: 28.3 + brightGreen: 44 + brightYellow: 68.2 + brightBlue: 40 + brightMagenta: 40 + brightCyan: 57.6 + brightWhite: 68.2 diff --git a/themes/smooth-burn-light-hard.yaml b/themes/smooth-burn-light-hard.yaml new file mode 100644 index 00000000..3ec2a1b9 --- /dev/null +++ b/themes/smooth-burn-light-hard.yaml @@ -0,0 +1,49 @@ +name: "Smooth Burn Light Hard" +source: + marketplace_id: "AndreaCombette.smoothburn" + version: "0.5.4" + installs: 937 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/smoothburn-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" +colors: + bg: "#F9EAC1" + fg: "#23334E" + black: "#F9D4A8" + red: "#DA223A" + green: "#A77166" + yellow: "#D9735B" + blue: "#417283" + magenta: "#A77166" + cyan: "#818785" + white: "#845457" + brightBlack: "#818785" + brightRed: "#75131E" + brightGreen: "#845457" + brightYellow: "#C44D4D" + brightBlue: "#305975" + brightMagenta: "#845457" + brightCyan: "#417283" + brightWhite: "#23334E" +meta: + mode: "light" + accent: "orange" + hue: 90 + contrast: + fg: 86.7 + black: 0 + red: 60.1 + green: 55.5 + yellow: 46.8 + blue: 64.3 + magenta: 55.5 + cyan: 52.2 + white: 68.8 + brightBlack: 52.2 + brightRed: 82.5 + brightGreen: 68.8 + brightYellow: 59.5 + brightBlue: 73.8 + brightMagenta: 68.8 + brightCyan: 64.3 + brightWhite: 86.7 diff --git a/themes/smoothity-dark.yaml b/themes/smoothity-dark.yaml new file mode 100644 index 00000000..cc8d2b6b --- /dev/null +++ b/themes/smoothity-dark.yaml @@ -0,0 +1,49 @@ +name: "Smoothity Dark" +source: + marketplace_id: "neinja007.smoothity-dark" + version: "6.3.0" + installs: 262 + author: "neinja007" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=neinja007.smoothity-dark" +colors: + bg: "#FF0000" + fg: "#FF0000" + black: "#FF0000" + red: "#FF0000" + green: "#FF0000" + yellow: "#FF0000" + blue: "#FF0000" + magenta: "#FF0000" + cyan: "#FF0000" + white: "#FF0000" + brightBlack: "#FF0000" + brightRed: "#FF0000" + brightGreen: "#FF0000" + brightYellow: "#FF0000" + brightBlue: "#FF0000" + brightMagenta: "#FF0000" + brightCyan: "#FF0000" + brightWhite: "#FF0000" +meta: + mode: "light" + accent: "orange" + hue: 29 + contrast: + fg: 0 + black: 0 + red: 0 + green: 0 + yellow: 0 + blue: 0 + magenta: 0 + cyan: 0 + white: 0 + brightBlack: 0 + brightRed: 0 + brightGreen: 0 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/snakedye-chocolate.yaml b/themes/snakedye-chocolate.yaml new file mode 100644 index 00000000..bd413073 --- /dev/null +++ b/themes/snakedye-chocolate.yaml @@ -0,0 +1,49 @@ +name: "Snakedye Chocolate" +source: + marketplace_id: "btarg.cosy-orange-theme" + version: "1.3.0" + installs: 709 + author: "btarg" + repo: "https://github.com/btarg/vscode-cosy-orange-theme" + url: "https://marketplace.visualstudio.com/items?itemName=btarg.cosy-orange-theme" +colors: + bg: "#252221" + fg: "#A89C8A" + black: "#252221" + red: "#C65F5F" + green: "#859E82" + yellow: "#D9B27C" + blue: "#728797" + magenta: "#998396" + cyan: "#829E9B" + white: "#C8BAA4" + brightBlack: "#3D3837" + brightRed: "#D87575" + brightGreen: "#9AB598" + brightYellow: "#E5C592" + brightBlue: "#88A0B0" + brightMagenta: "#B099AC" + brightCyan: "#98B5B1" + brightWhite: "#D1C6B4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 47 + black: 0 + red: 32 + green: 43.8 + yellow: 61.7 + blue: 34.3 + magenta: 36.9 + cyan: 44.4 + white: 63.6 + brightBlack: 0 + brightRed: 41.3 + brightGreen: 55.8 + brightYellow: 71.7 + brightBlue: 46.6 + brightMagenta: 48.2 + brightCyan: 56.5 + brightWhite: 70.3 diff --git a/themes/snappy-contrast.yaml b/themes/snappy-contrast.yaml new file mode 100644 index 00000000..759c1abf --- /dev/null +++ b/themes/snappy-contrast.yaml @@ -0,0 +1,49 @@ +name: "snappy-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0C0C0C" + fg: "#E3E2E0" + black: "#191919" + red: "#BA0E2E" + green: "#4EA1DF" + yellow: "#F66153" + blue: "#808DD3" + magenta: "#F66153" + cyan: "#808DD3" + white: "#EFEFED" + brightBlack: "#3F3F3F" + brightRed: "#F03E5F" + brightGreen: "#A4CFEF" + brightYellow: "#FBBAB4" + brightBlue: "#CCD1ED" + brightMagenta: "#FBBAB4" + brightCyan: "#CCD1ED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89 + black: 0 + red: 21.3 + green: 47.9 + yellow: 44.3 + blue: 43 + magenta: 44.3 + cyan: 43 + white: 97.1 + brightBlack: 7.9 + brightRed: 37.6 + brightGreen: 74 + brightYellow: 74.2 + brightBlue: 79.2 + brightMagenta: 74.2 + brightCyan: 79.2 + brightWhite: 107.7 diff --git a/themes/snappy-light.yaml b/themes/snappy-light.yaml new file mode 100644 index 00000000..e76695f6 --- /dev/null +++ b/themes/snappy-light.yaml @@ -0,0 +1,49 @@ +name: "snappy-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#555555" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#4EA1DF" + yellow: "#F66153" + blue: "#808DD3" + magenta: "#DA564A" + cyan: "#606AA1" + white: "#626262" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#A4CFEF" + brightYellow: "#FBBAB4" + brightBlue: "#CCD1ED" + brightMagenta: "#EBA59F" + brightCyan: "#A0A6C7" + brightWhite: "#888888" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 85.9 + black: 0 + red: 80.3 + green: 53.7 + yellow: 57.2 + blue: 58.5 + magenta: 65.4 + cyan: 75.5 + white: 80.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 28.6 + brightYellow: 28.4 + brightBlue: 23.8 + brightMagenta: 39 + brightCyan: 47.2 + brightWhite: 63.1 diff --git a/themes/snappy.yaml b/themes/snappy.yaml new file mode 100644 index 00000000..34e9cef3 --- /dev/null +++ b/themes/snappy.yaml @@ -0,0 +1,49 @@ +name: "snappy" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#393939" + fg: "#E3E2E0" + black: "#464646" + red: "#BA0E2E" + green: "#4EA1DF" + yellow: "#F66153" + blue: "#808DD3" + magenta: "#F66153" + cyan: "#808DD3" + white: "#EFEFED" + brightBlack: "#6C6C6C" + brightRed: "#F03E5F" + brightGreen: "#A4CFEF" + brightYellow: "#FBBAB4" + brightBlue: "#CCD1ED" + brightMagenta: "#FBBAB4" + brightCyan: "#CCD1ED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81.6 + black: 0 + red: 13.9 + green: 40.5 + yellow: 36.9 + blue: 35.6 + magenta: 36.9 + cyan: 35.6 + white: 89.7 + brightBlack: 18 + brightRed: 30.2 + brightGreen: 66.7 + brightYellow: 66.9 + brightBlue: 71.8 + brightMagenta: 66.9 + brightCyan: 71.8 + brightWhite: 100.3 diff --git a/themes/snazzy-light.yaml b/themes/snazzy-light.yaml new file mode 100644 index 00000000..d2353215 --- /dev/null +++ b/themes/snazzy-light.yaml @@ -0,0 +1,49 @@ +name: "Snazzy Light" +source: + marketplace_id: "loilo.snazzy-light" + version: "1.4.1" + installs: 161513 + author: "Florian Reuschel" + repo: "https://github.com/loilo/vscode-snazzy-light" + url: "https://marketplace.visualstudio.com/items?itemName=loilo.snazzy-light" +colors: + bg: "#FAFBFC" + fg: "#565869" + black: "#565869" + red: "#FF5C57" + green: "#2DAE58" + yellow: "#CF9C00" + blue: "#09A1ED" + magenta: "#F767BB" + cyan: "#13BBB7" + white: "#FAFBF9" + brightBlack: "#75798F" + brightRed: "#FFAEAC" + brightGreen: "#35CF68" + brightYellow: "#F5B900" + brightBlue: "#14B1FF" + brightMagenta: "#FF94D2" + brightCyan: "#13BBB7" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 81.8 + black: 81.8 + red: 53.6 + green: 52 + yellow: 46.3 + blue: 51.7 + magenta: 50.1 + cyan: 43.9 + white: 0 + brightBlack: 67.3 + brightRed: 29.7 + brightGreen: 36.8 + brightYellow: 29.9 + brightBlue: 44.1 + brightMagenta: 36.3 + brightCyan: 43.9 + brightWhite: 0 diff --git a/themes/snazzy-operator-color-theme-dark-italics.yaml b/themes/snazzy-operator-color-theme-dark-italics.yaml new file mode 100644 index 00000000..97b86f7f --- /dev/null +++ b/themes/snazzy-operator-color-theme-dark-italics.yaml @@ -0,0 +1,49 @@ +name: "snazzy-operator-color-theme-dark-italics" +source: + marketplace_id: "akarlsten.vscode-snazzy-akarlsten" + version: "1.3.1" + installs: 21430 + author: "akarlsten" + repo: "https://github.com/akarlsten/snazzy-plus" + url: "https://marketplace.visualstudio.com/items?itemName=akarlsten.vscode-snazzy-akarlsten" +colors: + bg: "#141622" + fg: "#EFF0EB" + black: "#141622" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#FFBC58" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#EFF0EB" + brightBlack: "#585A61" + brightRed: "#FF5C57" + brightGreen: "#5AF78E" + brightYellow: "#FFBC58" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: 277 + contrast: + fg: 96.7 + black: 0 + red: 44.7 + green: 84.1 + yellow: 72.7 + blue: 65.5 + magenta: 50.9 + cyan: 87.1 + white: 96.7 + brightBlack: 17.1 + brightRed: 44.7 + brightGreen: 84.1 + brightYellow: 72.7 + brightBlue: 65.5 + brightMagenta: 50.9 + brightCyan: 87.1 + brightWhite: 96.7 diff --git a/themes/snazzy-operator-color-theme-italics.yaml b/themes/snazzy-operator-color-theme-italics.yaml new file mode 100644 index 00000000..778519f9 --- /dev/null +++ b/themes/snazzy-operator-color-theme-italics.yaml @@ -0,0 +1,49 @@ +name: "snazzy-operator-color-theme-italics" +source: + marketplace_id: "akarlsten.vscode-snazzy-akarlsten" + version: "1.3.1" + installs: 21430 + author: "akarlsten" + repo: "https://github.com/akarlsten/snazzy-plus" + url: "https://marketplace.visualstudio.com/items?itemName=akarlsten.vscode-snazzy-akarlsten" +colors: + bg: "#282A36" + fg: "#EFF0EB" + black: "#282A36" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#FFBC58" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#EFF0EB" + brightBlack: "#6C6E75" + brightRed: "#FF5C57" + brightGreen: "#5AF78E" + brightYellow: "#FFBC58" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: 278 + contrast: + fg: 93.7 + black: 0 + red: 41.7 + green: 81.1 + yellow: 69.7 + blue: 62.5 + magenta: 48 + cyan: 84.1 + white: 93.7 + brightBlack: 22.6 + brightRed: 41.7 + brightGreen: 81.1 + brightYellow: 69.7 + brightBlue: 62.5 + brightMagenta: 48 + brightCyan: 84.1 + brightWhite: 93.7 diff --git a/themes/snazzy-operator-natural.yaml b/themes/snazzy-operator-natural.yaml new file mode 100644 index 00000000..6ad4722f --- /dev/null +++ b/themes/snazzy-operator-natural.yaml @@ -0,0 +1,49 @@ +name: "Snazzy Operator Natural" +source: + marketplace_id: "BenCai.snazzy-operator-natural" + version: "0.0.10" + installs: 2982 + author: "Ben Cai" + repo: "https://github.com/code0312/VSCode-Theme-Snazzy" + url: "https://marketplace.visualstudio.com/items?itemName=BenCai.snazzy-operator-natural" +colors: + bg: "#282A36" + fg: "#EFF0EB" + black: "#282A36" + red: "#FF716C" + green: "#5AF78E" + yellow: "#F758FF" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#EFF0EB" + brightBlack: "#6C6E75" + brightRed: "#FF716C" + brightGreen: "#5AF78E" + brightYellow: "#F758FF" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 93.7 + black: 0 + red: 46.5 + green: 81.1 + yellow: 46.7 + blue: 62.5 + magenta: 48 + cyan: 84.1 + white: 93.7 + brightBlack: 22.6 + brightRed: 46.5 + brightGreen: 81.1 + brightYellow: 46.7 + brightBlue: 62.5 + brightMagenta: 48 + brightCyan: 84.1 + brightWhite: 93.7 diff --git a/themes/snazzy-operator-plus-color-theme.yaml b/themes/snazzy-operator-plus-color-theme.yaml new file mode 100644 index 00000000..529836e7 --- /dev/null +++ b/themes/snazzy-operator-plus-color-theme.yaml @@ -0,0 +1,49 @@ +name: "snazzy-operator-plus-color-theme" +source: + marketplace_id: "bsides.snazzy-operator-plus" + version: "1.2.1" + installs: 10002 + author: "bsides" + repo: "https://github.com/bsides/snazzy-operator-plus" + url: "https://marketplace.visualstudio.com/items?itemName=bsides.snazzy-operator-plus" +colors: + bg: "#282A36" + fg: "#EFF0EB" + black: "#282A36" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#EFF0EB" + brightBlack: "#282A36" + brightRed: "#FF5C57" + brightGreen: "#5AF78E" + brightYellow: "#F3F99D" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: 278 + contrast: + fg: 93.7 + black: 0 + red: 41.7 + green: 81.1 + yellow: 95.8 + blue: 62.5 + magenta: 48 + cyan: 84.1 + white: 93.7 + brightBlack: 0 + brightRed: 41.7 + brightGreen: 81.1 + brightYellow: 95.8 + brightBlue: 62.5 + brightMagenta: 48 + brightCyan: 84.1 + brightWhite: 93.7 diff --git a/themes/snazzy-solaris.yaml b/themes/snazzy-solaris.yaml new file mode 100644 index 00000000..a972762c --- /dev/null +++ b/themes/snazzy-solaris.yaml @@ -0,0 +1,49 @@ +name: "Snazzy Solaris" +source: + marketplace_id: "SlayVict.snazzy-light-operator" + version: "1.1.1" + installs: 548 + author: "SlayVict" + repo: "https://github.com/SlayVic/snazzy-solaris" + url: "https://marketplace.visualstudio.com/items?itemName=SlayVict.snazzy-light-operator" +colors: + bg: "#FFF8EC" + fg: "#565869" + black: "#565869" + red: "#FF5C57" + green: "#2DAE58" + yellow: "#CF9C00" + blue: "#09A1ED" + magenta: "#F767BB" + cyan: "#13BBB7" + white: "#FAFBF9" + brightBlack: "#75798F" + brightRed: "#FFAEAC" + brightGreen: "#35CF68" + brightYellow: "#F5B900" + brightBlue: "#14B1FF" + brightMagenta: "#FF94D2" + brightCyan: "#13BBB7" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 80.5 + black: 80.5 + red: 52.3 + green: 50.7 + yellow: 45 + blue: 50.4 + magenta: 48.8 + cyan: 42.6 + white: 0 + brightBlack: 66 + brightRed: 28.4 + brightGreen: 35.5 + brightYellow: 28.6 + brightBlue: 42.8 + brightMagenta: 35 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/snazzy-vs-theme.yaml b/themes/snazzy-vs-theme.yaml new file mode 100644 index 00000000..7ef27abe --- /dev/null +++ b/themes/snazzy-vs-theme.yaml @@ -0,0 +1,49 @@ +name: "Snazzy vs theme" +source: + marketplace_id: "xdae.vscode-snazzy-theme" + version: "0.1.0" + installs: 3069 + author: "jose miguel bejarano" + repo: "https://github.com/xDae/vscode-snazzy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xdae.vscode-snazzy-theme" +colors: + bg: "#282A36" + fg: "#EFF0EB" + black: "#282A36" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#F1F1F0" + brightBlack: "#686868" + brightRed: "#FF5C57" + brightGreen: "#5AF78E" + brightYellow: "#F3F99D" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: 278 + contrast: + fg: 93.7 + black: 0 + red: 41.7 + green: 81.1 + yellow: 95.8 + blue: 62.5 + magenta: 48 + cyan: 84.1 + white: 94.7 + brightBlack: 19.9 + brightRed: 41.7 + brightGreen: 81.1 + brightYellow: 95.8 + brightBlue: 62.5 + brightMagenta: 48 + brightCyan: 84.1 + brightWhite: 93.7 diff --git a/themes/snow-theme.yaml b/themes/snow-theme.yaml new file mode 100644 index 00000000..8fb1e56b --- /dev/null +++ b/themes/snow-theme.yaml @@ -0,0 +1,49 @@ +name: "snow theme" +source: + marketplace_id: "guicastro13.onebitcode-theme" + version: "0.0.5" + installs: 2293 + author: "guicastro13" + repo: "https://github.com/guicastro13/onebitcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" +colors: + bg: "#FDF6E3" + fg: "#909090" + black: "#767676" + red: "#E74856" + green: "#574657" + yellow: "#9B9665" + blue: "#474F88" + magenta: "#B46E90" + cyan: "#81D6BC" + white: "#928F8F" + brightBlack: "#767676" + brightRed: "#E74856" + brightGreen: "#574657" + brightYellow: "#9B9665" + brightBlue: "#474F88" + brightMagenta: "#B46E90" + brightCyan: "#81D6BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 53.9 + black: 66.3 + red: 59.5 + green: 84.5 + yellow: 51.7 + blue: 81.3 + magenta: 59.8 + cyan: 25.3 + white: 54.1 + brightBlack: 66.3 + brightRed: 59.5 + brightGreen: 84.5 + brightYellow: 51.7 + brightBlue: 81.3 + brightMagenta: 59.8 + brightCyan: 25.3 + brightWhite: 43.2 diff --git a/themes/snowflake-dark-theme.yaml b/themes/snowflake-dark-theme.yaml new file mode 100644 index 00000000..cf7f458f --- /dev/null +++ b/themes/snowflake-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Snowflake-Dark-Theme" +source: + marketplace_id: "snowflake107.snowflake-dark" + version: "1.0.2" + installs: 4869 + author: "Snowflake Studio ❄" + repo: "https://github.com/DevSnowflake/VSCode-Snowflake" + url: "https://marketplace.visualstudio.com/items?itemName=snowflake107.snowflake-dark" +colors: + bg: "#0F111A" + fg: "#A6ACCD" + black: "#000000" + red: "#FF787A" + green: "#37C463" + yellow: "#E3CE4B" + blue: "#82AAFF" + magenta: "#EB459E" + cyan: "#717BF0" + white: "#FFFFFF" + brightBlack: "#585C6E" + brightRed: "#FF787A" + brightGreen: "#37C463" + brightYellow: "#E3CE4B" + brightBlue: "#82AAFF" + brightMagenta: "#EB459E" + brightCyan: "#717BF0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 57.6 + black: 0 + red: 52 + green: 57.2 + yellow: 75.8 + blue: 56.4 + magenta: 39 + cyan: 37.5 + white: 107.3 + brightBlack: 18.6 + brightRed: 52 + brightGreen: 57.2 + brightYellow: 75.8 + brightBlue: 56.4 + brightMagenta: 39 + brightCyan: 37.5 + brightWhite: 107.3 diff --git a/themes/snowflake-darker-theme.yaml b/themes/snowflake-darker-theme.yaml new file mode 100644 index 00000000..d7c3f5c3 --- /dev/null +++ b/themes/snowflake-darker-theme.yaml @@ -0,0 +1,49 @@ +name: "Snowflake-Darker-Theme" +source: + marketplace_id: "snowflake107.snowflake-dark" + version: "1.0.2" + installs: 4869 + author: "Snowflake Studio ❄" + repo: "https://github.com/DevSnowflake/VSCode-Snowflake" + url: "https://marketplace.visualstudio.com/items?itemName=snowflake107.snowflake-dark" +colors: + bg: "#090B10" + fg: "#A6ACCD" + black: "#000000" + red: "#FF787A" + green: "#37C463" + yellow: "#E3CE4B" + blue: "#82AAFF" + magenta: "#EB459E" + cyan: "#717BF0" + white: "#FFFFFF" + brightBlack: "#585C6E" + brightRed: "#FF787A" + brightGreen: "#37C463" + brightYellow: "#E3CE4B" + brightBlue: "#82AAFF" + brightMagenta: "#EB459E" + brightCyan: "#717BF0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 268 + contrast: + fg: 58 + black: 0 + red: 52.3 + green: 57.6 + yellow: 76.2 + blue: 56.7 + magenta: 39.4 + cyan: 37.9 + white: 107.7 + brightBlack: 19 + brightRed: 52.3 + brightGreen: 57.6 + brightYellow: 76.2 + brightBlue: 56.7 + brightMagenta: 39.4 + brightCyan: 37.9 + brightWhite: 107.7 diff --git a/themes/snoword-dark-soft.yaml b/themes/snoword-dark-soft.yaml new file mode 100644 index 00000000..ac5a0b18 --- /dev/null +++ b/themes/snoword-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Snoword Dark Soft" +source: + marketplace_id: "Snoword.theme-snoword" + version: "0.4.6" + installs: 819 + author: "Snoword Theme" + repo: "https://github.com/snowords/vscode-theme-vitesse" + url: "https://marketplace.visualstudio.com/items?itemName=Snoword.theme-snoword" +colors: + bg: "#222222" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#DB889A" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#DB889A" + brightCyan: "#5EAAB5" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 79.9 + black: 0 + red: 39.4 + green: 35.3 + yellow: 74.2 + blue: 39.9 + magenta: 48.5 + cyan: 47.9 + white: 79.9 + brightBlack: 28.1 + brightRed: 39.4 + brightGreen: 35.3 + brightYellow: 74.2 + brightBlue: 39.9 + brightMagenta: 48.5 + brightCyan: 47.9 + brightWhite: 83.6 diff --git a/themes/snoword-dark.yaml b/themes/snoword-dark.yaml new file mode 100644 index 00000000..e7f6b833 --- /dev/null +++ b/themes/snoword-dark.yaml @@ -0,0 +1,49 @@ +name: "Snoword Dark" +source: + marketplace_id: "Snoword.theme-snoword" + version: "0.4.6" + installs: 819 + author: "Snoword Theme" + repo: "https://github.com/snowords/vscode-theme-vitesse" + url: "https://marketplace.visualstudio.com/items?itemName=Snoword.theme-snoword" +colors: + bg: "#121212" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#DB889A" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#DB889A" + brightCyan: "#5EAAB5" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 81.7 + black: 0 + red: 41.2 + green: 37.1 + yellow: 76 + blue: 41.8 + magenta: 50.3 + cyan: 49.7 + white: 81.7 + brightBlack: 30 + brightRed: 41.2 + brightGreen: 37.1 + brightYellow: 76 + brightBlue: 41.8 + brightMagenta: 50.3 + brightCyan: 49.7 + brightWhite: 85.4 diff --git a/themes/snoword-light-soft.yaml b/themes/snoword-light-soft.yaml new file mode 100644 index 00000000..20ea7f9e --- /dev/null +++ b/themes/snoword-light-soft.yaml @@ -0,0 +1,49 @@ +name: "Snoword Light Soft" +source: + marketplace_id: "Snoword.theme-snoword" + version: "0.4.6" + installs: 819 + author: "Snoword Theme" + repo: "https://github.com/snowords/vscode-theme-vitesse" + url: "https://marketplace.visualstudio.com/items?itemName=Snoword.theme-snoword" +colors: + bg: "#F1F0E9" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#B05A78" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#B05A78" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 87.4 + black: 96.2 + red: 64.4 + green: 68.8 + yellow: 39.2 + blue: 69.1 + magenta: 62.4 + cyan: 54.4 + white: 12 + brightBlack: 36.7 + brightRed: 64.4 + brightGreen: 68.8 + brightYellow: 39.2 + brightBlue: 69.1 + brightMagenta: 62.4 + brightCyan: 54.4 + brightWhite: 8.5 diff --git a/themes/snoword-light.yaml b/themes/snoword-light.yaml new file mode 100644 index 00000000..684d305f --- /dev/null +++ b/themes/snoword-light.yaml @@ -0,0 +1,49 @@ +name: "Snoword Light" +source: + marketplace_id: "Snoword.theme-snoword" + version: "0.4.6" + installs: 819 + author: "Snoword Theme" + repo: "https://github.com/snowords/vscode-theme-vitesse" + url: "https://marketplace.visualstudio.com/items?itemName=Snoword.theme-snoword" +colors: + bg: "#FFFFFF" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#B05A78" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#B05A78" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 96.5 + black: 105.3 + red: 73.5 + green: 77.9 + yellow: 48.3 + blue: 78.2 + magenta: 71.5 + cyan: 63.5 + white: 21.1 + brightBlack: 45.8 + brightRed: 73.5 + brightGreen: 77.9 + brightYellow: 48.3 + brightBlue: 78.2 + brightMagenta: 71.5 + brightCyan: 63.5 + brightWhite: 17.6 diff --git a/themes/snowpiercer.yaml b/themes/snowpiercer.yaml new file mode 100644 index 00000000..f2d44a72 --- /dev/null +++ b/themes/snowpiercer.yaml @@ -0,0 +1,49 @@ +name: "Snowpiercer" +source: + marketplace_id: "SajanSrikanthan.snowpiercer" + version: "0.0.1" + installs: 145 + author: "Sajan Srikanthan" + repo: "https://github.com/sajansrikanthan/Snowpiercer-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=SajanSrikanthan.snowpiercer" +colors: + bg: "#000B12" + fg: "#D4D4D4" + black: "#000B12" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 229 + contrast: + fg: 80.3 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.9 diff --git a/themes/snowy-mint.yaml b/themes/snowy-mint.yaml new file mode 100644 index 00000000..1f483673 --- /dev/null +++ b/themes/snowy-mint.yaml @@ -0,0 +1,49 @@ +name: "「雪」snowy&mint" +source: + marketplace_id: "jstmax.snowymint" + version: "1.0.0" + installs: 17 + author: "jstmax! - ceez2exst" + repo: "https://github.com/jstmaxlol/snowymint" + url: "https://marketplace.visualstudio.com/items?itemName=jstmax.snowymint" +colors: + bg: "#2C2C2C" + fg: "#E4E4E4" + black: "#0F0F0F" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#545454" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 86.2 + black: 0 + red: 23.5 + green: 49.8 + yellow: 82.4 + blue: 24.2 + magenta: 26.5 + cyan: 44.3 + white: 86.8 + brightBlack: 11.5 + brightRed: 35.3 + brightGreen: 60.3 + brightYellow: 92.4 + brightBlue: 36.8 + brightMagenta: 42.1 + brightCyan: 52.2 + brightWhite: 86.8 diff --git a/themes/sober-afternoon.yaml b/themes/sober-afternoon.yaml new file mode 100644 index 00000000..6fcca75e --- /dev/null +++ b/themes/sober-afternoon.yaml @@ -0,0 +1,49 @@ +name: "Sober Afternoon" +source: + marketplace_id: "YesCode.soberTheme" + version: "0.0.7" + installs: 271 + author: "YesCode" + repo: "https://github.com/yesomac/sober" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.soberTheme" +colors: + bg: "#14243A" + fg: "#D8EAFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#0687FF" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 257 + contrast: + fg: 90.2 + black: 0 + red: 40.3 + green: 59.3 + yellow: 71.3 + blue: 45.8 + magenta: 17.8 + cyan: 47.7 + white: 45.5 + brightBlack: 16.9 + brightRed: 40.3 + brightGreen: 36.7 + brightYellow: 78 + brightBlue: 17 + brightMagenta: 17.8 + brightCyan: 47.7 + brightWhite: 97.1 diff --git a/themes/sober-deepnight.yaml b/themes/sober-deepnight.yaml new file mode 100644 index 00000000..f3a69ab0 --- /dev/null +++ b/themes/sober-deepnight.yaml @@ -0,0 +1,49 @@ +name: "Sober Deepnight" +source: + marketplace_id: "YesCode.soberTheme" + version: "0.0.7" + installs: 271 + author: "YesCode" + repo: "https://github.com/yesomac/sober" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.soberTheme" +colors: + bg: "#010E22" + fg: "#DAE3FC" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#0687FF" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 254 + contrast: + fg: 89.4 + black: 0 + red: 42.6 + green: 61.6 + yellow: 73.6 + blue: 48.1 + magenta: 20.1 + cyan: 50 + white: 47.8 + brightBlack: 19.2 + brightRed: 42.6 + brightGreen: 39 + brightYellow: 80.3 + brightBlue: 19.3 + brightMagenta: 20.1 + brightCyan: 50 + brightWhite: 99.4 diff --git a/themes/sober-midnight.yaml b/themes/sober-midnight.yaml new file mode 100644 index 00000000..3714ce2f --- /dev/null +++ b/themes/sober-midnight.yaml @@ -0,0 +1,49 @@ +name: "Sober Midnight" +source: + marketplace_id: "YesCode.soberTheme" + version: "0.0.7" + installs: 271 + author: "YesCode" + repo: "https://github.com/yesomac/sober" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.soberTheme" +colors: + bg: "#091E3B" + fg: "#D8EAFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#0B2447" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 257 + contrast: + fg: 90.9 + black: 0 + red: 41 + green: 60 + yellow: 72.1 + blue: 46.5 + magenta: 18.5 + cyan: 48.5 + white: 46.2 + brightBlack: 17.6 + brightRed: 41 + brightGreen: 0 + brightYellow: 78.8 + brightBlue: 17.7 + brightMagenta: 18.5 + brightCyan: 48.5 + brightWhite: 97.9 diff --git a/themes/sober.yaml b/themes/sober.yaml new file mode 100644 index 00000000..cf7abe9a --- /dev/null +++ b/themes/sober.yaml @@ -0,0 +1,49 @@ +name: "Sober" +source: + marketplace_id: "YesCode.sober-code" + version: "0.0.7" + installs: 128 + author: "YesCode" + repo: "https://git@github.com/yesomac/vs-sober" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.sober-code" +colors: + bg: "#0E1020" + fg: "#CDCDCD" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#788AEC" + brightYellow: "#DFE6E9" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: 277 + contrast: + fg: 75.7 + black: 0 + red: 42.4 + green: 61.4 + yellow: 73.5 + blue: 83.3 + magenta: 20 + cyan: 49.9 + white: 47.7 + brightBlack: 19 + brightRed: 42.4 + brightGreen: 42.6 + brightYellow: 90.3 + brightBlue: 19.2 + brightMagenta: 20 + brightCyan: 49.9 + brightWhite: 99.3 diff --git a/themes/sobrio-light.yaml b/themes/sobrio-light.yaml new file mode 100644 index 00000000..85fb1105 --- /dev/null +++ b/themes/sobrio-light.yaml @@ -0,0 +1,49 @@ +name: "sobrio-light" +source: + marketplace_id: "elvessousa.sobrio" + version: "0.2.0" + installs: 2229 + author: "Elves Sousa" + repo: "https://github.com/elvessousa/sobrio-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=elvessousa.sobrio" +colors: + bg: "#FFFFFF" + fg: "#202020" + black: "#AFAFAF" + red: "#CC5500" + green: "#00DDAA" + yellow: "#AF875F" + blue: "#6787AF" + magenta: "#DD4C4F" + cyan: "#5FAFAF" + white: "#FFFFFF" + brightBlack: "#8F8F8F" + brightRed: "#DD4C4F" + brightGreen: "#5FAFAF" + brightYellow: "#FFDD55" + brightBlue: "#9787AF" + brightMagenta: "#DD4C4F" + brightCyan: "#5FAFAF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103.3 + black: 43.2 + red: 69 + green: 31.5 + yellow: 59.8 + blue: 64.6 + magenta: 66.5 + cyan: 49.8 + white: 0 + brightBlack: 59.6 + brightRed: 66.5 + brightGreen: 49.8 + brightYellow: 16.4 + brightBlue: 60.1 + brightMagenta: 66.5 + brightCyan: 49.8 + brightWhite: 0 diff --git a/themes/sobrio.yaml b/themes/sobrio.yaml new file mode 100644 index 00000000..530737ab --- /dev/null +++ b/themes/sobrio.yaml @@ -0,0 +1,49 @@ +name: "sobrio" +source: + marketplace_id: "elvessousa.sobrio" + version: "0.2.0" + installs: 2229 + author: "Elves Sousa" + repo: "https://github.com/elvessousa/sobrio-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=elvessousa.sobrio" +colors: + bg: "#202020" + fg: "#FFFFFF" + black: "#3A3B3F" + red: "#CC5500" + green: "#00DDAA" + yellow: "#D7AF87" + blue: "#87AFD7" + magenta: "#FD6389" + cyan: "#7CDCE7" + white: "#FFFFFF" + brightBlack: "#5F5F5F" + brightRed: "#FD6389" + brightGreen: "#7CFFE7" + brightYellow: "#FFDD55" + brightBlue: "#D7D7FF" + brightMagenta: "#FD6389" + brightCyan: "#7CDCE7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 105.8 + black: 0 + red: 30.5 + green: 69.1 + yellow: 60.9 + blue: 54.7 + magenta: 45.7 + cyan: 74.5 + white: 105.8 + brightBlack: 18 + brightRed: 45.7 + brightGreen: 91.8 + brightYellow: 85.2 + brightBlue: 82.2 + brightMagenta: 45.7 + brightCyan: 74.5 + brightWhite: 105.8 diff --git a/themes/soct-color-theme.yaml b/themes/soct-color-theme.yaml new file mode 100644 index 00000000..f89ed915 --- /dev/null +++ b/themes/soct-color-theme.yaml @@ -0,0 +1,49 @@ +name: "SOCT-color-theme" +source: + marketplace_id: "MsSus.soct" + version: "0.0.2" + installs: 27 + author: "Ms.Sus" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MsSus.soct" +colors: + bg: "#131313" + fg: "#FFFFFF" + black: "#000000" + red: "#FF3362" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D9D9D9" + brightBlack: "#666666" + brightRed: "#FF0060" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 107.2 + black: 0 + red: 39.7 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 82.9 + brightBlack: 22.4 + brightRed: 37.8 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 73.2 diff --git a/themes/soda.yaml b/themes/soda.yaml new file mode 100644 index 00000000..ace82f76 --- /dev/null +++ b/themes/soda.yaml @@ -0,0 +1,49 @@ +name: "Soda" +source: + marketplace_id: "fnando.soda" + version: "0.0.3" + installs: 1195 + author: "Nando Vieira" + repo: "https://github.com/fnando/vscode-soda" + url: "https://marketplace.visualstudio.com/items?itemName=fnando.soda" +colors: + bg: "#FFFFFF" + fg: "#272727" + black: "#222222" + red: "#E45024" + green: "#5B9D4E" + yellow: "#F9AE02" + blue: "#0099D0" + magenta: "#66008D" + cyan: "#00A6B2" + white: "#777777" + brightBlack: "#222222" + brightRed: "#E45024" + brightGreen: "#5B9D4E" + brightYellow: "#F9AE02" + brightBlue: "#0099D0" + brightMagenta: "#66008D" + brightCyan: "#00A6B2" + brightWhite: "#777777" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.8 + black: 102.9 + red: 64.8 + green: 60.1 + yellow: 35.7 + blue: 59.1 + magenta: 92.8 + cyan: 55.5 + white: 71.1 + brightBlack: 102.9 + brightRed: 64.8 + brightGreen: 60.1 + brightYellow: 35.7 + brightBlue: 59.1 + brightMagenta: 92.8 + brightCyan: 55.5 + brightWhite: 71.1 diff --git a/themes/soft-colors.yaml b/themes/soft-colors.yaml new file mode 100644 index 00000000..e9ff8d6f --- /dev/null +++ b/themes/soft-colors.yaml @@ -0,0 +1,49 @@ +name: "Soft Colors" +source: + marketplace_id: "NyctibiusVII.descomplica-theme" + version: "1.4.18" + installs: 387 + author: "NyctibiusVII" + repo: "https://github.com/Descomplica-ADS/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.descomplica-theme" +colors: + bg: "#231F2E" + fg: "#B4B4B4" + black: "#0A0A0A" + red: "#E18E8E" + green: "#0DBC79" + yellow: "#DAE18E" + blue: "#585F8D" + magenta: "#D38EE1" + cyan: "#8EE1C1" + white: "#E5E5E5" + brightBlack: "#878484" + brightRed: "#E8A2AF" + brightGreen: "#8BFF9A" + brightYellow: "#E0EA75" + brightBlue: "#8E98E1" + brightMagenta: "#DE7ADE" + brightCyan: "#8EE1DE" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 297 + contrast: + fg: 59.5 + black: 0 + red: 51.1 + green: 51.7 + yellow: 82.4 + blue: 19.1 + magenta: 52.5 + cyan: 76.2 + white: 88.7 + brightBlack: 34.7 + brightRed: 60 + brightGreen: 89.8 + brightYellow: 86.9 + brightBlue: 47 + brightMagenta: 48.5 + brightCyan: 77.5 + brightWhite: 88.7 diff --git a/themes/soft-dark-2.yaml b/themes/soft-dark-2.yaml new file mode 100644 index 00000000..515228aa --- /dev/null +++ b/themes/soft-dark-2.yaml @@ -0,0 +1,49 @@ +name: "Soft Dark 2" +source: + marketplace_id: "Gerrnperl.soft-color-theme" + version: "0.0.2" + installs: 1894 + author: "Gerrnperl" + repo: "https://github.com/Gerrnperl/vscode-soft-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gerrnperl.soft-color-theme" +colors: + bg: "#252525" + fg: "#E6FFF3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.1 + black: 0 + red: 24.8 + green: 51.1 + yellow: 83.7 + blue: 25.5 + magenta: 27.9 + cyan: 45.6 + white: 88.1 + brightBlack: 20.1 + brightRed: 36.7 + brightGreen: 61.6 + brightYellow: 93.7 + brightBlue: 38.1 + brightMagenta: 43.5 + brightCyan: 53.5 + brightWhite: 88.1 diff --git a/themes/soft-era-ellite-edit.yaml b/themes/soft-era-ellite-edit.yaml new file mode 100644 index 00000000..06a01b8d --- /dev/null +++ b/themes/soft-era-ellite-edit.yaml @@ -0,0 +1,49 @@ +name: "soft era (ellite edit)" +source: + marketplace_id: "ellitedev.soft-era-edit" + version: "1.0.1" + installs: 1594 + author: "ellitedev" + repo: "https://github.com/ellitedev/soft-era-vs-code-edit" + url: "https://marketplace.visualstudio.com/items?itemName=ellitedev.soft-era-edit" +colors: + bg: "#F9F5F5" + fg: "#C29BA3" + black: "#4A4543" + red: "#DB90A7" + green: "#87B6B6" + yellow: "#FFB4B8" + blue: "#32ABDE" + magenta: "#BE88D9" + cyan: "#958AC5" + white: "#F1ECEE" + brightBlack: "#6F5573" + brightRed: "#EEAABE" + brightGreen: "#98C4BA" + brightYellow: "#E7D59A" + brightBlue: "#82B3E2" + brightMagenta: "#CE9AE8" + brightCyan: "#B4ADDF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 43 + black: 86.4 + red: 42.6 + green: 38.5 + yellow: 24.3 + blue: 45.2 + magenta: 47.1 + cyan: 52.8 + white: 0 + brightBlack: 76.8 + brightRed: 30.3 + brightGreen: 31.2 + brightYellow: 16.4 + brightBlue: 38 + brightMagenta: 38.4 + brightCyan: 35.7 + brightWhite: 0 diff --git a/themes/soft-kawaii-theme-1-color-theme.yaml b/themes/soft-kawaii-theme-1-color-theme.yaml new file mode 100644 index 00000000..63fa4be3 --- /dev/null +++ b/themes/soft-kawaii-theme-1-color-theme.yaml @@ -0,0 +1,49 @@ +name: "soft kawaii theme 1-color-theme" +source: + marketplace_id: "AiminHm.soft-kawaii-theme" + version: "1.0.2" + installs: 286 + author: "AiminHm" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AiminHm.soft-kawaii-theme" +colors: + bg: "#210D19" + fg: "#FF93E2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 344 + contrast: + fg: 63.3 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 30 + cyan: 47.8 + white: 79.7 + brightBlack: 22.2 + brightRed: 38.8 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/soft-light-2.yaml b/themes/soft-light-2.yaml new file mode 100644 index 00000000..74010960 --- /dev/null +++ b/themes/soft-light-2.yaml @@ -0,0 +1,49 @@ +name: "Soft Light 2" +source: + marketplace_id: "Gerrnperl.soft-color-theme" + version: "0.0.2" + installs: 1894 + author: "Gerrnperl" + repo: "https://github.com/Gerrnperl/vscode-soft-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gerrnperl.soft-color-theme" +colors: + bg: "#F8FFF3" + fg: "#5A5A5A" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 82.5 + black: 104.7 + red: 72.6 + green: 47.9 + yellow: 56.5 + blue: 84.7 + magenta: 73.2 + cyan: 59.2 + white: 84.5 + brightBlack: 77.4 + brightRed: 72.6 + brightGreen: 39.5 + brightYellow: 39.6 + brightBlue: 84.7 + brightMagenta: 73.2 + brightCyan: 59.2 + brightWhite: 47.1 diff --git a/themes/soft-material.yaml b/themes/soft-material.yaml new file mode 100644 index 00000000..4c22f6c5 --- /dev/null +++ b/themes/soft-material.yaml @@ -0,0 +1,49 @@ +name: "Soft Material" +source: + marketplace_id: "sainnhe.soft-material" + version: "0.1.1" + installs: 981 + author: "sainnhe" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.soft-material" +colors: + bg: "#F9F5F5" + fg: "#BE9898" + black: "#BE9898" + red: "#F165BD" + green: "#96AD01" + yellow: "#EC9157" + blue: "#75A9D9" + magenta: "#AEA6E1" + cyan: "#25B7B8" + white: "#DFC5C5" + brightBlack: "#BE9898" + brightRed: "#F165BD" + brightGreen: "#96AD01" + brightYellow: "#EC9157" + brightBlue: "#75A9D9" + brightMagenta: "#AEA6E1" + brightCyan: "#25B7B8" + brightWhite: "#F4F0F0" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 45 + black: 45 + red: 48.6 + green: 44.1 + yellow: 41.5 + blue: 43.4 + magenta: 38.8 + cyan: 42.4 + white: 22.4 + brightBlack: 45 + brightRed: 48.6 + brightGreen: 44.1 + brightYellow: 41.5 + brightBlue: 43.4 + brightMagenta: 38.8 + brightCyan: 42.4 + brightWhite: 0 diff --git a/themes/soft-midnight.yaml b/themes/soft-midnight.yaml new file mode 100644 index 00000000..2f8208cb --- /dev/null +++ b/themes/soft-midnight.yaml @@ -0,0 +1,49 @@ +name: "Soft Midnight" +source: + marketplace_id: "JeanCastle.soft-midnight" + version: "0.0.2" + installs: 199 + author: "Jean Castle" + repo: "https://github.com/jeangoo/soft-midnight" + url: "https://marketplace.visualstudio.com/items?itemName=JeanCastle.soft-midnight" +colors: + bg: "#1A1B26" + fg: "#E6D9A2" + black: "#1A1B26" + red: "#CB80AB" + green: "#9ECE6A" + yellow: "#FFD700" + blue: "#4EC9B0" + magenta: "#8967B3" + cyan: "#9ECE6A" + white: "#E6D9A2" + brightBlack: "#232530" + brightRed: "#CB80AB" + brightGreen: "#9ECE6A" + brightYellow: "#FFD700" + brightBlue: "#4EC9B0" + brightMagenta: "#8967B3" + brightCyan: "#9ECE6A" + brightWhite: "#E6D9A2" +meta: + mode: "dark" + accent: "green" + hue: 280 + contrast: + fg: 81.7 + black: 0 + red: 45 + green: 66.9 + yellow: 82.7 + blue: 61.4 + magenta: 28.9 + cyan: 66.9 + white: 81.7 + brightBlack: 0 + brightRed: 45 + brightGreen: 66.9 + brightYellow: 82.7 + brightBlue: 61.4 + brightMagenta: 28.9 + brightCyan: 66.9 + brightWhite: 81.7 diff --git a/themes/soft-mood-theme.yaml b/themes/soft-mood-theme.yaml new file mode 100644 index 00000000..18e6d447 --- /dev/null +++ b/themes/soft-mood-theme.yaml @@ -0,0 +1,49 @@ +name: "Soft Mood Theme" +source: + marketplace_id: "cdub.soft-mood-theme-dark" + version: "0.0.3" + installs: 511 + author: "cdub" + repo: "https://github.com/cwon07/softmoodvscode" + url: "https://marketplace.visualstudio.com/items?itemName=cdub.soft-mood-theme-dark" +colors: + bg: "#22292A" + fg: "#CDC9C9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F7E1D7" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 207 + contrast: + fg: 71 + black: 0 + red: 24.3 + green: 50.6 + yellow: 83.2 + blue: 25 + magenta: 27.4 + cyan: 45.2 + white: 87.8 + brightBlack: 19.6 + brightRed: 36.2 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.6 + brightMagenta: 43 + brightCyan: 53 + brightWhite: 87.6 diff --git a/themes/soft-sight.yaml b/themes/soft-sight.yaml new file mode 100644 index 00000000..730648c9 --- /dev/null +++ b/themes/soft-sight.yaml @@ -0,0 +1,49 @@ +name: "soft sight" +source: + marketplace_id: "sajibsrs.soft-sight" + version: "0.3.1" + installs: 11777 + author: "Sajidur Rahman" + repo: "https://github.com/sajibsrs/soft-sight" + url: "https://marketplace.visualstudio.com/items?itemName=sajibsrs.soft-sight" +colors: + bg: "#232533" + fg: "#C3C6E2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 70 + black: 0 + red: 24.7 + green: 50.9 + yellow: 83.6 + blue: 25.4 + magenta: 27.7 + cyan: 45.5 + white: 88 + brightBlack: 20 + brightRed: 36.5 + brightGreen: 61.5 + brightYellow: 93.6 + brightBlue: 37.9 + brightMagenta: 43.3 + brightCyan: 53.3 + brightWhite: 88 diff --git a/themes/soft-sunset-dark.yaml b/themes/soft-sunset-dark.yaml new file mode 100644 index 00000000..63d087a9 --- /dev/null +++ b/themes/soft-sunset-dark.yaml @@ -0,0 +1,49 @@ +name: "Soft Sunset Dark" +source: + marketplace_id: "brainkit.soft-sunset-dark" + version: "0.0.27" + installs: 28 + author: "brainkit" + repo: "https://github.com/brainkit/vs-code-soft-sunset-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=brainkit.soft-sunset-dark" +colors: + bg: "#24201A" + fg: "#C8C0A8" + black: "#3F4338" + red: "#C4786E" + green: "#7AA87A" + yellow: "#C0A070" + blue: "#78A89A" + magenta: "#9A7A96" + cyan: "#78A89A" + white: "#C8C0A8" + brightBlack: "#5A584D" + brightRed: "#C47C74" + brightGreen: "#98A878" + brightYellow: "#C89858" + brightBlue: "#C47C74" + brightMagenta: "#C47C74" + brightCyan: "#78A89A" + brightWhite: "#C8C0A8" +meta: + mode: "dark" + accent: "yellow" + hue: 78 + contrast: + fg: 66.5 + black: 0 + red: 38.7 + green: 47 + yellow: 51.3 + blue: 47.8 + magenta: 34.4 + cyan: 47.8 + white: 66.5 + brightBlack: 15 + brightRed: 40 + brightGreen: 49.6 + brightYellow: 49.1 + brightBlue: 40 + brightMagenta: 40 + brightCyan: 47.8 + brightWhite: 66.5 diff --git a/themes/soft-yellow-light.yaml b/themes/soft-yellow-light.yaml new file mode 100644 index 00000000..64aab81d --- /dev/null +++ b/themes/soft-yellow-light.yaml @@ -0,0 +1,49 @@ +name: "Soft Yellow Light" +source: + marketplace_id: "SwaggyPinguin.soft-yellow-light" + version: "0.0.6" + installs: 2281 + author: "SwaggyPinguin" + repo: "https://github.com/SwaggyPinguin/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SwaggyPinguin.soft-yellow-light" +colors: + bg: "#F9F3DF" + fg: "#BC0000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 73 + black: 98.9 + red: 66.8 + green: 42.1 + yellow: 50.7 + blue: 78.9 + magenta: 67.4 + cyan: 53.4 + white: 78.7 + brightBlack: 71.6 + brightRed: 66.8 + brightGreen: 33.7 + brightYellow: 33.8 + brightBlue: 78.9 + brightMagenta: 67.4 + brightCyan: 53.4 + brightWhite: 41.3 diff --git a/themes/soho-color-theme.yaml b/themes/soho-color-theme.yaml new file mode 100644 index 00000000..221ff50e --- /dev/null +++ b/themes/soho-color-theme.yaml @@ -0,0 +1,49 @@ +name: "soho-color-theme" +source: + marketplace_id: "smlombardi.soho" + version: "2.1.3" + installs: 3066 + author: "smlombardi" + repo: "https://github.com/smlombardi/theme-soho" + url: "https://marketplace.visualstudio.com/items?itemName=smlombardi.soho" +colors: + bg: "#F0F0F0" + fg: "#363636" + black: "#666666" + red: "#CD6564" + green: "#AEC199" + yellow: "#DAC340" + blue: "#6D9CBE" + magenta: "#B081B9" + cyan: "#80B5B3" + white: "#EFEFEF" + brightBlack: "#666666" + brightRed: "#CD6564" + brightGreen: "#AEC199" + brightYellow: "#DAC340" + brightBlue: "#6D9CBE" + brightMagenta: "#B081B9" + brightCyan: "#80B5B3" + brightWhite: "#EFEFEF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 88.7 + black: 69.8 + red: 55.4 + green: 28 + yellow: 23.5 + blue: 46.8 + magenta: 49.5 + cyan: 36.1 + white: 0 + brightBlack: 69.8 + brightRed: 55.4 + brightGreen: 28 + brightYellow: 23.5 + brightBlue: 46.8 + brightMagenta: 49.5 + brightCyan: 36.1 + brightWhite: 0 diff --git a/themes/soil-theme.yaml b/themes/soil-theme.yaml new file mode 100644 index 00000000..848fd7e8 --- /dev/null +++ b/themes/soil-theme.yaml @@ -0,0 +1,49 @@ +name: "Soil Theme" +source: + marketplace_id: "codesbiome.soil-theme-vscode" + version: "1.1.3" + installs: 1434 + author: "Codesbiome" + repo: "https://github.com/codesbiome/soil-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=codesbiome.soil-theme-vscode" +colors: + bg: "#222222" + fg: "#ACA490" + black: "#3A3A3A" + red: "#CF7C7C" + green: "#53AB62" + yellow: "#C1A860" + blue: "#4975AF" + magenta: "#BD688B" + cyan: "#3A9C93" + white: "#BEBEBE" + brightBlack: "#838383" + brightRed: "#E26A6A" + brightGreen: "#6EC07B" + brightYellow: "#D39A69" + brightBlue: "#699BDB" + brightMagenta: "#DF6A9A" + brightCyan: "#7AB8B2" + brightWhite: "#C0B699" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 50.8 + black: 0 + red: 41.9 + green: 45 + yellow: 53.9 + blue: 26.6 + magenta: 33.9 + cyan: 39.1 + white: 65 + brightBlack: 33.8 + brightRed: 40.3 + brightGreen: 56.3 + brightYellow: 51.6 + brightBlue: 44.6 + brightMagenta: 41.2 + brightCyan: 55.4 + brightWhite: 60.7 diff --git a/themes/solar-drift-dark-theme.yaml b/themes/solar-drift-dark-theme.yaml new file mode 100644 index 00000000..f14ce6fe --- /dev/null +++ b/themes/solar-drift-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Solar Drift Dark Theme" +source: + marketplace_id: "JamesGulland.solar-drift-dark-theme" + version: "2.6.0" + installs: 85 + author: "James Gulland" + repo: "https://github.com/james-gulland/solar-drift-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.solar-drift-dark-theme" +colors: + bg: "#252B37" + fg: "#7F8BAD" + black: "#252B37" + red: "#FF7546" + green: "#5DE4C7" + yellow: "#FFCB6B" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#E1DEE3" + brightBlack: "#7F8BAD" + brightRed: "#FF7546" + brightGreen: "#5DE4C7" + brightYellow: "#FFCB6B" + brightBlue: "#98D1EF" + brightMagenta: "#F087BD" + brightCyan: "#98D1EF" + brightWhite: "#E1DEE3" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 36.3 + black: 0 + red: 46.8 + green: 73.4 + yellow: 75.9 + blue: 75.3 + magenta: 51.9 + cyan: 75.3 + white: 83.3 + brightBlack: 36.3 + brightRed: 46.8 + brightGreen: 73.4 + brightYellow: 75.9 + brightBlue: 70.1 + brightMagenta: 51.9 + brightCyan: 70.1 + brightWhite: 83.3 diff --git a/themes/solar-drift-darker-theme.yaml b/themes/solar-drift-darker-theme.yaml new file mode 100644 index 00000000..f69042eb --- /dev/null +++ b/themes/solar-drift-darker-theme.yaml @@ -0,0 +1,49 @@ +name: "Solar Drift Darker Theme" +source: + marketplace_id: "JamesGulland.solar-drift-dark-theme" + version: "2.6.0" + installs: 85 + author: "James Gulland" + repo: "https://github.com/james-gulland/solar-drift-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.solar-drift-dark-theme" +colors: + bg: "#23272E" + fg: "#7F8BAD" + black: "#23272E" + red: "#DA2A07" + green: "#5DE4C7" + yellow: "#FFCB6B" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#E1DEE3" + brightBlack: "#7F8BAD" + brightRed: "#DA2A07" + brightGreen: "#5DE4C7" + brightYellow: "#FFCB6B" + brightBlue: "#98D1EF" + brightMagenta: "#F087BD" + brightCyan: "#98D1EF" + brightWhite: "#E1DEE3" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 37.1 + black: 0 + red: 26.6 + green: 74.2 + yellow: 76.7 + blue: 76 + magenta: 52.7 + cyan: 76 + white: 84 + brightBlack: 37.1 + brightRed: 26.6 + brightGreen: 74.2 + brightYellow: 76.7 + brightBlue: 70.8 + brightMagenta: 52.7 + brightCyan: 70.8 + brightWhite: 84 diff --git a/themes/solar-flare.yaml b/themes/solar-flare.yaml new file mode 100644 index 00000000..62adbb55 --- /dev/null +++ b/themes/solar-flare.yaml @@ -0,0 +1,49 @@ +name: "Solar Flare" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 358 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" +colors: + bg: "#1A0A00" + fg: "#FFAA40" + black: "#000000" + red: "#FF4040" + green: "#40FF40" + yellow: "#FFFF40" + blue: "#4040FF" + magenta: "#FF40FF" + cyan: "#40FFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF4040" + brightGreen: "#40FF40" + brightYellow: "#FFFF40" + brightBlue: "#4040FF" + brightMagenta: "#FF40FF" + brightCyan: "#40FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 62 + contrast: + fg: 66.3 + black: 0 + red: 40.7 + green: 86.9 + yellow: 102.5 + blue: 21.8 + magenta: 48.7 + cyan: 92.4 + white: 107.5 + brightBlack: 0 + brightRed: 40.7 + brightGreen: 86.9 + brightYellow: 102.5 + brightBlue: 21.8 + brightMagenta: 48.7 + brightCyan: 92.4 + brightWhite: 107.5 diff --git a/themes/solar-future.yaml b/themes/solar-future.yaml new file mode 100644 index 00000000..5cabdc3b --- /dev/null +++ b/themes/solar-future.yaml @@ -0,0 +1,49 @@ +name: "Solar Future" +source: + marketplace_id: "AgraeonLabs.dev-themes" + version: "0.1.0" + installs: 283 + author: "Agraeon Labs" + repo: "https://github.com/adiagcodelance/VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" +colors: + bg: "#2C3531" + fg: "#D1E8E2" + black: "#2C3531" + red: "#E06C75" + green: "#98C379" + yellow: "#FFCB9A" + blue: "#116466" + magenta: "#D9B08C" + cyan: "#56B6C2" + white: "#D1E8E2" + brightBlack: "#2C3531" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#FFCB9A" + brightBlue: "#116466" + brightMagenta: "#D9B08C" + brightCyan: "#56B6C2" + brightWhite: "#D1E8E2" +meta: + mode: "dark" + accent: "orange" + hue: 167 + contrast: + fg: 83.9 + black: 0 + red: 37.2 + green: 57.4 + yellow: 75.1 + blue: 12.6 + magenta: 58 + cyan: 49.7 + white: 83.9 + brightBlack: 0 + brightRed: 37.2 + brightGreen: 57.4 + brightYellow: 75.1 + brightBlue: 12.6 + brightMagenta: 58 + brightCyan: 49.7 + brightWhite: 83.9 diff --git a/themes/solarflare-contrast.yaml b/themes/solarflare-contrast.yaml new file mode 100644 index 00000000..ede8b2b7 --- /dev/null +++ b/themes/solarflare-contrast.yaml @@ -0,0 +1,49 @@ +name: "solarflare-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#000000" + fg: "#E3E2E0" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#FC913A" + yellow: "#FF4E50" + blue: "#EDE574" + magenta: "#FF4E50" + cyan: "#FC913A" + white: "#EFEFED" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#FEC99E" + brightYellow: "#FFB4B5" + brightBlue: "#F9F6CE" + brightMagenta: "#FFB4B5" + brightCyan: "#FEC99E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.2 + black: 0 + red: 21.5 + green: 57.8 + yellow: 43.2 + blue: 88.6 + magenta: 43.2 + cyan: 57.8 + white: 97.3 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 80.1 + brightYellow: 73 + brightBlue: 100.7 + brightMagenta: 73 + brightCyan: 80.1 + brightWhite: 107.9 diff --git a/themes/solarflare-light.yaml b/themes/solarflare-light.yaml new file mode 100644 index 00000000..202bf79e --- /dev/null +++ b/themes/solarflare-light.yaml @@ -0,0 +1,49 @@ +name: "solarflare-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#222222" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#D87627" + yellow: "#FF4E50" + blue: "#C6BB15" + magenta: "#FF4E50" + cyan: "#D87627" + white: "#2F2F2F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#E8AD7D" + brightYellow: "#FFB4B5" + brightBlue: "#EDE354" + brightMagenta: "#FFB4B5" + brightCyan: "#E8AD7D" + brightWhite: "#555555" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.9 + black: 0 + red: 80.3 + green: 58.9 + yellow: 58.5 + blue: 38.5 + magenta: 58.5 + cyan: 58.9 + white: 99.8 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 37.7 + brightYellow: 29.9 + brightBlue: 16.4 + brightMagenta: 29.9 + brightCyan: 37.7 + brightWhite: 85.9 diff --git a/themes/solarflare.yaml b/themes/solarflare.yaml new file mode 100644 index 00000000..ce5e71f9 --- /dev/null +++ b/themes/solarflare.yaml @@ -0,0 +1,49 @@ +name: "solarflare" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#222222" + fg: "#E3E2E0" + black: "#2F2F2F" + red: "#BA0E2E" + green: "#FC913A" + yellow: "#FF4E50" + blue: "#EDE574" + magenta: "#FF4E50" + cyan: "#FC913A" + white: "#EFEFED" + brightBlack: "#555555" + brightRed: "#F03E5F" + brightGreen: "#FEC99E" + brightYellow: "#FFB4B5" + brightBlue: "#F9F6CE" + brightMagenta: "#FFB4B5" + brightCyan: "#FEC99E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.8 + black: 0 + red: 19.1 + green: 55.4 + yellow: 40.8 + blue: 86.2 + magenta: 40.8 + cyan: 55.4 + white: 94.9 + brightBlack: 13.7 + brightRed: 35.4 + brightGreen: 77.7 + brightYellow: 70.5 + brightBlue: 98.3 + brightMagenta: 70.5 + brightCyan: 77.7 + brightWhite: 105.5 diff --git a/themes/solaris.yaml b/themes/solaris.yaml new file mode 100644 index 00000000..8e5d4141 --- /dev/null +++ b/themes/solaris.yaml @@ -0,0 +1,49 @@ +name: "Solaris" +source: + marketplace_id: "SkiffOn.solaris-theme-ultra" + version: "0.0.2" + installs: 71 + author: "SkiffOn" + repo: "https://github.com/KonstantinChuper/Solaris" + url: "https://marketplace.visualstudio.com/items?itemName=SkiffOn.solaris-theme-ultra" +colors: + bg: "#1B1B1B" + fg: "#837184" + black: "#000000" + red: "#D13E3E" + green: "#13E292" + yellow: "#F0D917" + blue: "#703DFF" + magenta: "#B423C0" + cyan: "#1152CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F26161" + brightGreen: "#72FFC6" + brightYellow: "#F5F543" + brightBlue: "#7729C4" + brightMagenta: "#B46AB4" + brightCyan: "#7E8BF7" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 28.9 + black: 0 + red: 28.8 + green: 71.5 + yellow: 81.3 + blue: 23.8 + magenta: 25.3 + cyan: 18.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 42.5 + brightGreen: 90.6 + brightYellow: 95.2 + brightBlue: 16.5 + brightMagenta: 35.8 + brightCyan: 43.4 + brightWhite: 89.6 diff --git a/themes/solarized-abydos.yaml b/themes/solarized-abydos.yaml new file mode 100644 index 00000000..50162c83 --- /dev/null +++ b/themes/solarized-abydos.yaml @@ -0,0 +1,49 @@ +name: "Solarized (Abydos)" +source: + marketplace_id: "fallenwood.theme-solarized-abydos" + version: "0.0.1" + installs: 178 + author: "fallenwood" + repo: "https://github.com/fallenwood/solarized-light-abydos" + url: "https://marketplace.visualstudio.com/items?itemName=fallenwood.theme-solarized-abydos" +colors: + bg: "#FDF6E3" + fg: "#657B83" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 65.7 + black: 93.7 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 0 + brightBlack: 96.4 + brightRed: 65.8 + brightGreen: 71.6 + brightYellow: 65.7 + brightBlue: 53.5 + brightMagenta: 65 + brightCyan: 46.7 + brightWhite: 0 diff --git a/themes/solarized-complete-dark.yaml b/themes/solarized-complete-dark.yaml new file mode 100644 index 00000000..b5b52f85 --- /dev/null +++ b/themes/solarized-complete-dark.yaml @@ -0,0 +1,49 @@ +name: "Solarized Complete (Dark)" +source: + marketplace_id: "AH-oss.solarized-complete" + version: "1.2.0" + installs: 93 + author: "AH-oss" + repo: "https://github.com/jmatilai/solarized-complete" + url: "https://marketplace.visualstudio.com/items?itemName=AH-oss.solarized-complete" +colors: + bg: "#002B36" + fg: "#839496" + black: "#002B36" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#6C71C4" + cyan: "#2AA198" + white: "#93A1A1" + brightBlack: "#657B83" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#6C71C4" + brightCyan: "#2AA198" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 39.5 + black: 0 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 46.4 + brightBlack: 27.3 + brightRed: 27.7 + brightGreen: 39.2 + brightYellow: 39.2 + brightBlue: 34.3 + brightMagenta: 28 + brightCyan: 40 + brightWhite: 98.6 diff --git a/themes/solarized-complete-light.yaml b/themes/solarized-complete-light.yaml new file mode 100644 index 00000000..f7f2515f --- /dev/null +++ b/themes/solarized-complete-light.yaml @@ -0,0 +1,49 @@ +name: "Solarized Complete (Light)" +source: + marketplace_id: "AH-oss.solarized-complete" + version: "1.2.0" + installs: 93 + author: "AH-oss" + repo: "https://github.com/jmatilai/solarized-complete" + url: "https://marketplace.visualstudio.com/items?itemName=AH-oss.solarized-complete" +colors: + bg: "#FDF6E3" + fg: "#657B83" + black: "#FDF6E3" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#6C71C4" + cyan: "#2AA198" + white: "#586E75" + brightBlack: "#839496" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#6C71C4" + brightCyan: "#2AA198" + brightWhite: "#002B36" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 65.7 + black: 0 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 71.6 + brightBlack: 53.5 + brightRed: 65.3 + brightGreen: 53.8 + brightYellow: 53.8 + brightBlue: 58.7 + brightMagenta: 65 + brightCyan: 53.1 + brightWhite: 96.4 diff --git a/themes/solarized-custom-dark.yaml b/themes/solarized-custom-dark.yaml new file mode 100644 index 00000000..e1d6d219 --- /dev/null +++ b/themes/solarized-custom-dark.yaml @@ -0,0 +1,49 @@ +name: "Solarized Custom (Dark)" +source: + marketplace_id: "AH-oss.soft2000" + version: "0.0.1" + installs: 18 + author: "AH-oss" + repo: "https://github.com/jmatilai/soft2000" + url: "https://marketplace.visualstudio.com/items?itemName=AH-oss.soft2000" +colors: + bg: "#2F2F56" + fg: "#8E8EA9" + black: "#2F2F56" + red: "#F35E5E" + green: "#899E00" + yellow: "#B58900" + blue: "#276CD3" + magenta: "#5B78D7" + cyan: "#2D9F96" + white: "#ADADC1" + brightBlack: "#7E7EA0" + brightRed: "#F35E5E" + brightGreen: "#899E00" + brightYellow: "#B58900" + brightBlue: "#276CD3" + brightMagenta: "#5B78D7" + brightCyan: "#2D9F96" + brightWhite: "#F0E3CB" +meta: + mode: "dark" + accent: "orange" + hue: 282 + contrast: + fg: 36.7 + black: 0 + red: 37.5 + green: 39.1 + yellow: 36.7 + blue: 21.5 + magenta: 27.7 + cyan: 36.6 + white: 52.8 + brightBlack: 29.2 + brightRed: 37.5 + brightGreen: 39.1 + brightYellow: 36.7 + brightBlue: 21.5 + brightMagenta: 27.7 + brightCyan: 36.6 + brightWhite: 84.6 diff --git a/themes/solarized-custom-light.yaml b/themes/solarized-custom-light.yaml new file mode 100644 index 00000000..c66b100a --- /dev/null +++ b/themes/solarized-custom-light.yaml @@ -0,0 +1,49 @@ +name: "Solarized Custom (Light)" +source: + marketplace_id: "AH-oss.soft2000" + version: "0.0.1" + installs: 18 + author: "AH-oss" + repo: "https://github.com/jmatilai/soft2000" + url: "https://marketplace.visualstudio.com/items?itemName=AH-oss.soft2000" +colors: + bg: "#F0E3CB" + fg: "#7E7EA0" + black: "#F0E3CB" + red: "#F35E5E" + green: "#899E00" + yellow: "#B58900" + blue: "#276CD3" + magenta: "#5B78D7" + cyan: "#2D9F96" + white: "#646487" + brightBlack: "#8E8EA9" + brightRed: "#F35E5E" + brightGreen: "#899E00" + brightYellow: "#B58900" + brightBlue: "#276CD3" + brightMagenta: "#5B78D7" + brightCyan: "#2D9F96" + brightWhite: "#2F2F56" +meta: + mode: "light" + accent: "orange" + hue: 83 + contrast: + fg: 50.7 + black: 0 + red: 42.5 + green: 41 + yellow: 43.3 + blue: 58.5 + magenta: 52.2 + cyan: 43.4 + white: 62.5 + brightBlack: 43.3 + brightRed: 42.5 + brightGreen: 41 + brightYellow: 43.3 + brightBlue: 58.5 + brightMagenta: 52.2 + brightCyan: 43.4 + brightWhite: 82.8 diff --git a/themes/solarized-dark-theme.yaml b/themes/solarized-dark-theme.yaml new file mode 100644 index 00000000..8c313245 --- /dev/null +++ b/themes/solarized-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Solarized Dark Theme" +source: + marketplace_id: "mjlaufer.vscode-themes" + version: "0.1.0" + installs: 1787 + author: "mjlaufer" + repo: "https://github.com/mjlaufer/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=mjlaufer.vscode-themes" +colors: + bg: "#FDF6E3" + fg: "#657B83" + black: "#FDF6E3" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#657B83" + brightBlack: "#FDF6E3" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#D33682" + brightCyan: "#2AA198" + brightWhite: "#657B83" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 65.7 + black: 0 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 65.7 + brightBlack: 0 + brightRed: 65.3 + brightGreen: 53.8 + brightYellow: 53.8 + brightBlue: 58.7 + brightMagenta: 65 + brightCyan: 53.1 + brightWhite: 65.7 diff --git a/themes/solarized-dark.yaml b/themes/solarized-dark.yaml new file mode 100644 index 00000000..6cc4eae8 --- /dev/null +++ b/themes/solarized-dark.yaml @@ -0,0 +1,49 @@ +name: "Solarized (dark)" +source: + marketplace_id: "dalen.vscode-oksolar" + version: "0.0.2" + installs: 645 + author: "dalen" + repo: "https://github.com/dalen/vscode-oksolar" + url: "https://marketplace.visualstudio.com/items?itemName=dalen.vscode-oksolar" +colors: + bg: "#002D38" + fg: "#98A8A8" + black: "#093946" + red: "#F23749" + green: "#819500" + yellow: "#AC8300" + blue: "#2B90D8" + magenta: "#DD459D" + cyan: "#259D94" + white: "#F1E9D2" + brightBlack: "#002D38" + brightRed: "#D56500" + brightGreen: "#5B7279" + brightYellow: "#657377" + brightBlue: "#98A8A8" + brightMagenta: "#7D80D1" + brightCyan: "#8FAAAB" + brightWhite: "#F8F5EC" +meta: + mode: "dark" + accent: "orange" + hue: 219 + contrast: + fg: 49.6 + black: 0 + red: 33.3 + green: 37 + yellow: 35.6 + blue: 36.3 + magenta: 32.7 + cyan: 37.7 + white: 89.9 + brightBlack: 0 + brightRed: 34.1 + brightGreen: 22.8 + brightYellow: 23.8 + brightBlue: 49.6 + brightMagenta: 34.7 + brightCyan: 49.7 + brightWhite: 97.5 diff --git a/themes/solarized-deep.yaml b/themes/solarized-deep.yaml new file mode 100644 index 00000000..35f9b452 --- /dev/null +++ b/themes/solarized-deep.yaml @@ -0,0 +1,49 @@ +name: "Solarized Deep" +source: + marketplace_id: "j4rviscmd.solarized-deep" + version: "0.1.4" + installs: 47 + author: "j4rviscmd" + repo: "https://github.com/j4rviscmd/vscode-theme-solarized-deep" + url: "https://marketplace.visualstudio.com/items?itemName=j4rviscmd.solarized-deep" +colors: + bg: "#000A0F" + fg: "#93A1A1" + black: "#021B26" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#D33682" + brightCyan: "#2AA198" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 222 + contrast: + fg: 49.8 + black: 0 + red: 31 + green: 42.6 + yellow: 42.5 + blue: 37.6 + magenta: 31.3 + cyan: 43.3 + white: 92.8 + brightBlack: 24.8 + brightRed: 31 + brightGreen: 42.6 + brightYellow: 42.5 + brightBlue: 37.6 + brightMagenta: 31.3 + brightCyan: 43.3 + brightWhite: 102 diff --git a/themes/solarized-light-functional.yaml b/themes/solarized-light-functional.yaml new file mode 100644 index 00000000..31368705 --- /dev/null +++ b/themes/solarized-light-functional.yaml @@ -0,0 +1,49 @@ +name: "Solarized-light-functional" +source: + marketplace_id: "veggiemonk.solarized-light-functional" + version: "2.0.0" + installs: 3698 + author: "veggiemonk" + repo: "https://github.com/veggiemonk/theme-solarized-light-functional" + url: "https://marketplace.visualstudio.com/items?itemName=veggiemonk.solarized-light-functional" +colors: + bg: "#FDF6E3" + fg: "#586E75" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#EEE8D5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 71.6 + black: 93.7 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 0 + brightBlack: 71.6 + brightRed: 65.8 + brightGreen: 71.6 + brightYellow: 65.7 + brightBlue: 53.5 + brightMagenta: 65 + brightCyan: 46.7 + brightWhite: 0 diff --git a/themes/solarized-light-n.yaml b/themes/solarized-light-n.yaml new file mode 100644 index 00000000..c2f34a50 --- /dev/null +++ b/themes/solarized-light-n.yaml @@ -0,0 +1,49 @@ +name: "Solarized Light N" +source: + marketplace_id: "naren.solarized-n" + version: "0.0.2" + installs: 537 + author: "Naren" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=naren.solarized-n" +colors: + bg: "#FDF6E3" + fg: "#839496" + black: "#586E75" + red: "#859900" + green: "#DC322F" + yellow: "#586E75" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#586E75" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#EEE8D5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 53.5 + black: 71.6 + red: 53.8 + green: 65.3 + yellow: 71.6 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 0 + brightBlack: 71.6 + brightRed: 71.6 + brightGreen: 71.6 + brightYellow: 65.7 + brightBlue: 53.5 + brightMagenta: 65 + brightCyan: 46.7 + brightWhite: 0 diff --git a/themes/solarized-light.yaml b/themes/solarized-light.yaml new file mode 100644 index 00000000..9d9b8edf --- /dev/null +++ b/themes/solarized-light.yaml @@ -0,0 +1,49 @@ +name: "Solarized (light)" +source: + marketplace_id: "zicong-zhang1996.theme-diy" + version: "2.0.0" + installs: 99 + author: "zicong-zhang1996" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=zicong-zhang1996.theme-diy" +colors: + bg: "#FAF8E8" + fg: "#000000" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#EEE8D5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.5 + black: 94.4 + red: 65.9 + green: 54.5 + yellow: 54.5 + blue: 59.3 + magenta: 65.7 + cyan: 53.7 + white: 0 + brightBlack: 72.2 + brightRed: 66.4 + brightGreen: 72.2 + brightYellow: 66.3 + brightBlue: 54.2 + brightMagenta: 65.6 + brightCyan: 47.4 + brightWhite: 0 diff --git a/themes/solarized-lilac.yaml b/themes/solarized-lilac.yaml new file mode 100644 index 00000000..16bb2f43 --- /dev/null +++ b/themes/solarized-lilac.yaml @@ -0,0 +1,49 @@ +name: "Solarized Lilac" +source: + marketplace_id: "diamondmind.solarized-neue" + version: "0.26.0" + installs: 4083 + author: "Phillip Sauerbeck" + repo: "https://github.com/pmsaue0/solarized-neue" + url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" +colors: + bg: "#E5E5EB" + fg: "#403F53" + black: "#403F53" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#8382E6" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#8382E6" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 78.7 + black: 78.7 + red: 53.6 + green: 51.5 + yellow: 24.3 + blue: 47.4 + magenta: 52.6 + cyan: 45.5 + white: 0 + brightBlack: 78.7 + brightRed: 53.6 + brightGreen: 51.5 + brightYellow: 27 + brightBlue: 47.4 + brightMagenta: 52.6 + brightCyan: 45.5 + brightWhite: 0 diff --git a/themes/solarized-monokai-dark.yaml b/themes/solarized-monokai-dark.yaml new file mode 100644 index 00000000..fc197973 --- /dev/null +++ b/themes/solarized-monokai-dark.yaml @@ -0,0 +1,49 @@ +name: "Solarized Monokai (dark)" +source: + marketplace_id: "linjing.solarized-dark-monokai" + version: "1.0.0" + installs: 5 + author: "linjing" + repo: "https://github.com/quickmove/solarized-dark-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=linjing.solarized-dark-monokai" +colors: + bg: "#002732" + fg: "#839496" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 221 + contrast: + fg: 40.2 + black: 0 + red: 28.3 + green: 39.9 + yellow: 39.9 + blue: 34.9 + magenta: 28.6 + cyan: 40.6 + white: 90.1 + brightBlack: 0 + brightRed: 27.8 + brightGreen: 22.1 + brightYellow: 27.9 + brightBlue: 40.2 + brightMagenta: 28.6 + brightCyan: 47.1 + brightWhite: 99.3 diff --git a/themes/solarized-neue-bright.yaml b/themes/solarized-neue-bright.yaml new file mode 100644 index 00000000..3c972f2f --- /dev/null +++ b/themes/solarized-neue-bright.yaml @@ -0,0 +1,49 @@ +name: "Solarized Neue Bright" +source: + marketplace_id: "diamondmind.solarized-neue" + version: "0.26.0" + installs: 4083 + author: "Phillip Sauerbeck" + repo: "https://github.com/pmsaue0/solarized-neue" + url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" +colors: + bg: "#0B293E" + fg: "#A2B7B9" + black: "#93A1A1" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#212121" + brightBlack: "#93A1A1" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2AA298" + brightWhite: "#212121" +meta: + mode: "dark" + accent: "orange" + hue: 243 + contrast: + fg: 57.8 + black: 46.5 + red: 29.6 + green: 31.7 + yellow: 59.6 + blue: 35.8 + magenta: 30.6 + cyan: 40.5 + white: 0 + brightBlack: 46.5 + brightRed: 29.6 + brightGreen: 31.7 + brightYellow: 56.7 + brightBlue: 35.8 + brightMagenta: 30.6 + brightCyan: 40.5 + brightWhite: 0 diff --git a/themes/solarized-neue.yaml b/themes/solarized-neue.yaml new file mode 100644 index 00000000..21a98934 --- /dev/null +++ b/themes/solarized-neue.yaml @@ -0,0 +1,49 @@ +name: "Solarized Neue" +source: + marketplace_id: "diamondmind.solarized-neue" + version: "0.26.0" + installs: 4083 + author: "Phillip Sauerbeck" + repo: "https://github.com/pmsaue0/solarized-neue" + url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" +colors: + bg: "#041E27" + fg: "#839496" + black: "#93A1A1" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#212121" + brightBlack: "#93A1A1" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2AA298" + brightWhite: "#212121" +meta: + mode: "dark" + accent: "orange" + hue: 224 + contrast: + fg: 41.4 + black: 48.3 + red: 31.4 + green: 33.4 + yellow: 61.4 + blue: 37.6 + magenta: 32.4 + cyan: 42.3 + white: 0 + brightBlack: 48.3 + brightRed: 31.4 + brightGreen: 33.4 + brightYellow: 58.5 + brightBlue: 37.6 + brightMagenta: 32.4 + brightCyan: 42.3 + brightWhite: 0 diff --git a/themes/solarized-pro.yaml b/themes/solarized-pro.yaml new file mode 100644 index 00000000..1d8116e8 --- /dev/null +++ b/themes/solarized-pro.yaml @@ -0,0 +1,49 @@ +name: "Solarized Pro" +source: + marketplace_id: "IIInsomnia.solarized-pro" + version: "1.0.13" + installs: 1347 + author: "noble-gase" + repo: "https://github.com/noble-gase/ng" + url: "https://marketplace.visualstudio.com/items?itemName=IIInsomnia.solarized-pro" +colors: + bg: "#002B36" + fg: "#839496" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#073642" + brightRed: "#CB4B16" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#6C71C4" + brightCyan: "#268BD2" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 39.5 + black: 0 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 89.5 + brightBlack: 0 + brightRed: 27.2 + brightGreen: 39.2 + brightYellow: 39.2 + brightBlue: 34.3 + brightMagenta: 28 + brightCyan: 34.3 + brightWhite: 98.6 diff --git a/themes/solarized-right.yaml b/themes/solarized-right.yaml new file mode 100644 index 00000000..bcd62f67 --- /dev/null +++ b/themes/solarized-right.yaml @@ -0,0 +1,49 @@ +name: "Solarized Right" +source: + marketplace_id: "Mukoopa.SolarRight" + version: "0.0.6" + installs: 111 + author: "Mukoopa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Mukoopa.SolarRight" +colors: + bg: "#FFF6EA" + fg: "#000000" + black: "#717070" + red: "#FFA1A1" + green: "#76F976" + yellow: "#FBFF6C" + blue: "#84BFFF" + magenta: "#FF92FF" + cyan: "#61DEFD" + white: "#D5D5D5" + brightBlack: "#A9A9A9" + brightRed: "#FFC4C4" + brightGreen: "#ADFFAD" + brightYellow: "#FDFFB2" + brightBlue: "#AFD5FF" + brightMagenta: "#FFBDFF" + brightCyan: "#8CE8FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 101.3 + black: 69.5 + red: 32.1 + green: 12 + yellow: 0 + blue: 32.2 + magenta: 32.2 + cyan: 21 + white: 17.5 + brightBlack: 41.7 + brightRed: 18.9 + brightGreen: 0 + brightYellow: 0 + brightBlue: 19.6 + brightMagenta: 18.7 + brightCyan: 14.1 + brightWhite: 0 diff --git a/themes/solarized-ss-light.yaml b/themes/solarized-ss-light.yaml new file mode 100644 index 00000000..e075b68c --- /dev/null +++ b/themes/solarized-ss-light.yaml @@ -0,0 +1,49 @@ +name: "Solarized SS Light" +source: + marketplace_id: "sergeysinoptik.solarized-ss-light-theme" + version: "1.1.1" + installs: 1238 + author: "sergeysinoptik" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sergeysinoptik.solarized-ss-light-theme" +colors: + bg: "#FFF2CE" + fg: "#000000" + black: "#767676" + red: "#E74856" + green: "#574657" + yellow: "#9B9665" + blue: "#474F88" + magenta: "#B46E90" + cyan: "#37A382" + white: "#4D4444" + brightBlack: "#767676" + brightRed: "#E74856" + brightGreen: "#574657" + brightYellow: "#9B9665" + brightBlue: "#474F88" + brightMagenta: "#B46E90" + brightCyan: "#539D86" + brightWhite: "#8E8585" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.6 + black: 64.1 + red: 57.4 + green: 82.3 + yellow: 49.6 + blue: 79.1 + magenta: 57.6 + cyan: 50.5 + white: 84.4 + brightBlack: 64.1 + brightRed: 57.4 + brightGreen: 82.3 + brightYellow: 49.6 + brightBlue: 79.1 + brightMagenta: 57.6 + brightCyan: 51.8 + brightWhite: 56.1 diff --git a/themes/solarized-yuki.yaml b/themes/solarized-yuki.yaml new file mode 100644 index 00000000..e6fa7e1a --- /dev/null +++ b/themes/solarized-yuki.yaml @@ -0,0 +1,49 @@ +name: "Solarized Yuki" +source: + marketplace_id: "diamondmind.solarized-neue" + version: "0.26.0" + installs: 4083 + author: "Phillip Sauerbeck" + repo: "https://github.com/pmsaue0/solarized-neue" + url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" +colors: + bg: "#FEFEFE" + fg: "#403F53" + black: "#403F53" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2AA298" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93.1 + black: 93.1 + red: 68.1 + green: 66 + yellow: 38.8 + blue: 61.9 + magenta: 67.1 + cyan: 57.3 + white: 0 + brightBlack: 93.1 + brightRed: 68.1 + brightGreen: 66 + brightYellow: 41.5 + brightBlue: 61.9 + brightMagenta: 67.1 + brightCyan: 57.3 + brightWhite: 0 diff --git a/themes/solarized.yaml b/themes/solarized.yaml new file mode 100644 index 00000000..c6b57885 --- /dev/null +++ b/themes/solarized.yaml @@ -0,0 +1,49 @@ +name: "Solarized+" +source: + marketplace_id: "SzilardLeventeFarkas.solarizedplus" + version: "1.0.2" + installs: 4826 + author: "Szilard Levente Farkas" + repo: "https://github.com/CrHasher/SolarizedPlus" + url: "https://marketplace.visualstudio.com/items?itemName=SzilardLeventeFarkas.solarizedplus" +colors: + bg: "#002B36" + fg: "#839496" + black: "#324A4D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#839496" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 39.5 + black: 0 + red: 38.1 + green: 74.5 + yellow: 64.5 + blue: 49.5 + magenta: 43.2 + cyan: 68.1 + white: 39.5 + brightBlack: 18.1 + brightRed: 43.3 + brightGreen: 76.7 + brightYellow: 51.4 + brightBlue: 54.8 + brightMagenta: 55.5 + brightCyan: 71.4 + brightWhite: 74.9 diff --git a/themes/solarus.yaml b/themes/solarus.yaml new file mode 100644 index 00000000..e5137939 --- /dev/null +++ b/themes/solarus.yaml @@ -0,0 +1,49 @@ +name: "Solarus" +source: + marketplace_id: "aless.solarus-editor-theme" + version: "0.2.1" + installs: 31 + author: "Aless" + repo: "https://gitlab.com/Aless-OP/solarus-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=aless.solarus-editor-theme" +colors: + bg: "#1C1D27" + fg: "#F1F4FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 99 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 29 + cyan: 46.8 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.8 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/solaryss.yaml b/themes/solaryss.yaml new file mode 100644 index 00000000..ac7f8d3a --- /dev/null +++ b/themes/solaryss.yaml @@ -0,0 +1,49 @@ +name: "solaryss" +source: + marketplace_id: "harry-public.vadiya-themes" + version: "0.0.3" + installs: 1974 + author: "harry-public" + repo: "https://github.com/harry-public/vadiya-themes" + url: "https://marketplace.visualstudio.com/items?itemName=harry-public.vadiya-themes" +colors: + bg: "#000C18" + fg: "#117BD2" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 242 + contrast: + fg: 31.6 + black: 0 + red: 64.2 + green: 91.6 + yellow: 96.5 + blue: 82.1 + magenta: 75.5 + cyan: 96.7 + white: 75.4 + brightBlack: 0 + brightRed: 52.5 + brightGreen: 87.6 + brightYellow: 91.3 + brightBlue: 63 + brightMagenta: 51 + brightCyan: 94.6 + brightWhite: 107.6 diff --git a/themes/solavsce-packagera.yaml b/themes/solavsce-packagera.yaml new file mode 100644 index 00000000..36878a9b --- /dev/null +++ b/themes/solavsce-packagera.yaml @@ -0,0 +1,49 @@ +name: "Solavsce packagera" +source: + marketplace_id: "JaydenDancer.solara" + version: "0.0.4" + installs: 139 + author: "Jayden Dancer" + repo: "https://github.com/Official-Phantom/Solara-VSTheme" + url: "https://marketplace.visualstudio.com/items?itemName=JaydenDancer.solara" +colors: + bg: "#24171E" + fg: "#7B7D85" + black: "#332026" + red: "#C4374A" + green: "#E8D2D2" + yellow: "#7B7D85" + blue: "#E8D2D2" + magenta: "#C6637D" + cyan: "#E8D2D2" + white: "#B88993" + brightBlack: "#444A5E" + brightRed: "#C4374A" + brightGreen: "#E8D2D2" + brightYellow: "#7B7D85" + brightBlue: "#E8D2D2" + brightMagenta: "#C6637D" + brightCyan: "#E8D2D2" + brightWhite: "#B88993" +meta: + mode: "dark" + accent: "orange" + hue: 346 + contrast: + fg: 32 + black: 0 + red: 25.3 + green: 80.8 + yellow: 32 + blue: 80.8 + magenta: 34.8 + cyan: 80.8 + white: 43.9 + brightBlack: 10.7 + brightRed: 25.3 + brightGreen: 80.8 + brightYellow: 32 + brightBlue: 80.8 + brightMagenta: 34.8 + brightCyan: 80.8 + brightWhite: 43.9 diff --git a/themes/solid-dark-theme.yaml b/themes/solid-dark-theme.yaml new file mode 100644 index 00000000..1544e85b --- /dev/null +++ b/themes/solid-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Solid_Dark_theme" +source: + marketplace_id: "tayyabk993.tayyabk993-theme" + version: "0.0.1" + installs: 36 + author: "tayyabk993" + repo: "https://github.com/Tayyabkhalid993/PIAIC56.git#main" + url: "https://marketplace.visualstudio.com/items?itemName=tayyabk993.tayyabk993-theme" +colors: + bg: "#111111" + fg: "#F2F2F2" + black: "#717171" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E2E2E2" + brightBlack: "#797979" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 98.8 + black: 27.3 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 88.6 + brightBlack: 31 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 92.4 diff --git a/themes/solitude-dark.yaml b/themes/solitude-dark.yaml new file mode 100644 index 00000000..16f2a22c --- /dev/null +++ b/themes/solitude-dark.yaml @@ -0,0 +1,49 @@ +name: "solitude-dark" +source: + marketplace_id: "403forbidden.solitude-color-theme" + version: "1.0.0" + installs: 68 + author: "403 Forbidden" + repo: "https://github.com/mario-garcia-dev/solitude-theme" + url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.solitude-color-theme" +colors: + bg: "#0A0726" + fg: "#F3F3F3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 281 + contrast: + fg: 99.7 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/solitude-soft.yaml b/themes/solitude-soft.yaml new file mode 100644 index 00000000..ca63a960 --- /dev/null +++ b/themes/solitude-soft.yaml @@ -0,0 +1,49 @@ +name: "solitude-soft" +source: + marketplace_id: "403forbidden.solitude-color-theme" + version: "1.0.0" + installs: 68 + author: "403 Forbidden" + repo: "https://github.com/mario-garcia-dev/solitude-theme" + url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.solitude-color-theme" +colors: + bg: "#100B3B" + fg: "#F3F3F3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 279 + contrast: + fg: 99.1 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/solo-leveling.yaml b/themes/solo-leveling.yaml new file mode 100644 index 00000000..3e306e8f --- /dev/null +++ b/themes/solo-leveling.yaml @@ -0,0 +1,49 @@ +name: "Solo Leveling" +source: + marketplace_id: "Amanpandey.solo-leveling-theme" + version: "0.1.0" + installs: 4005 + author: "Amanpandey" + repo: "https://github.com/losercodes/solo-leveling-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Amanpandey.solo-leveling-theme" +colors: + bg: "#0A0C12" + fg: "#E0E0E0" + black: "#000000" + red: "#FF3131" + green: "#00AEEF" + yellow: "#FFA424" + blue: "#00AEEF" + magenta: "#A020F0" + cyan: "#00D5FF" + white: "#E0E0E0" + brightBlack: "#000000" + brightRed: "#FF6060" + brightGreen: "#50D0FF" + brightYellow: "#FFC864" + brightBlue: "#50C8FF" + brightMagenta: "#C050FF" + brightCyan: "#50E3FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 270 + contrast: + fg: 87.7 + black: 0 + red: 39.2 + green: 52.9 + yellow: 64.2 + blue: 52.9 + magenta: 26.9 + cyan: 71.1 + white: 87.7 + brightBlack: 0 + brightRed: 46.4 + brightGreen: 70 + brightYellow: 78.4 + brightBlue: 66.4 + brightMagenta: 38.7 + brightCyan: 78.9 + brightWhite: 107.7 diff --git a/themes/solstice-estival.yaml b/themes/solstice-estival.yaml new file mode 100644 index 00000000..5e075a8a --- /dev/null +++ b/themes/solstice-estival.yaml @@ -0,0 +1,49 @@ +name: "Solstice Estival" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#F0EEE7" + fg: "#1B3C3C" + black: "#213535" + red: "#9E5A5A" + green: "#6B7D5E" + yellow: "#8B7355" + blue: "#4A6670" + magenta: "#7A6B7A" + cyan: "#4A7A75" + white: "#E8E6DF" + brightBlack: "#6B6B65" + brightRed: "#B86B6B" + brightGreen: "#7A8E6D" + brightYellow: "#A08560" + brightBlue: "#5A7A85" + brightMagenta: "#8E7D8E" + brightCyan: "#5A8E88" + brightWhite: "#F5F3EC" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 87.1 + black: 88.9 + red: 65.2 + green: 60.7 + yellow: 61 + blue: 70.4 + magenta: 64.4 + cyan: 63.4 + white: 0 + brightBlack: 66.6 + brightRed: 56.3 + brightGreen: 52.9 + brightYellow: 52.3 + brightBlue: 61.8 + brightMagenta: 55.7 + brightCyan: 54.5 + brightWhite: 0 diff --git a/themes/solstice-hibernal.yaml b/themes/solstice-hibernal.yaml new file mode 100644 index 00000000..7cd7f16a --- /dev/null +++ b/themes/solstice-hibernal.yaml @@ -0,0 +1,49 @@ +name: "Solstice Hibernal" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1834 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#191D1B" + fg: "#C4AAA0" + black: "#191D1B" + red: "#C97E7B" + green: "#8FA876" + yellow: "#D4A877" + blue: "#7B9EBF" + magenta: "#A890B0" + cyan: "#7DBBB5" + white: "#C4AAA0" + brightBlack: "#483E3C" + brightRed: "#D99490" + brightGreen: "#A3BC8C" + brightYellow: "#E4BC90" + brightBlue: "#95B4CF" + brightMagenta: "#BCA4C4" + brightCyan: "#95CFC9" + brightWhite: "#D9C4BA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 57.6 + black: 0 + red: 42.3 + green: 49.3 + yellow: 58 + blue: 46.3 + magenta: 45.1 + cyan: 57.9 + white: 57.6 + brightBlack: 0 + brightRed: 52.4 + brightGreen: 60.2 + brightYellow: 68.7 + brightBlue: 58.1 + brightMagenta: 55.7 + brightCyan: 69.5 + brightWhite: 71.7 diff --git a/themes/somber.yaml b/themes/somber.yaml new file mode 100644 index 00000000..b32e7bf6 --- /dev/null +++ b/themes/somber.yaml @@ -0,0 +1,49 @@ +name: "Somber" +source: + marketplace_id: "JaydenDancer.somber" + version: "0.0.1" + installs: 57 + author: "Jayden Dancer" + repo: "https://github.com/Official-Phantom/Somber-VSTheme" + url: "https://marketplace.visualstudio.com/items?itemName=JaydenDancer.somber" +colors: + bg: "#181818" + fg: "#B4B4B4" + black: "#222222" + red: "#E03F3F" + green: "#B4B4B4" + yellow: "#E78E8E" + blue: "#FF7A7A" + magenta: "#F75D5D" + cyan: "#FF7A7A" + white: "#B2B2B2" + brightBlack: "#444A5E" + brightRed: "#E03F3F" + brightGreen: "#B4B4B4" + brightYellow: "#E78E8E" + brightBlue: "#FF7A7A" + brightMagenta: "#F75D5D" + brightCyan: "#B4B4B4" + brightWhite: "#B2B2B2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 60.7 + black: 0 + red: 32.6 + green: 60.7 + yellow: 53.4 + blue: 51.9 + magenta: 43 + cyan: 51.9 + white: 59.5 + brightBlack: 11 + brightRed: 32.6 + brightGreen: 60.7 + brightYellow: 53.4 + brightBlue: 51.9 + brightMagenta: 43 + brightCyan: 60.7 + brightWhite: 59.5 diff --git a/themes/something-theme.yaml b/themes/something-theme.yaml new file mode 100644 index 00000000..286a96fd --- /dev/null +++ b/themes/something-theme.yaml @@ -0,0 +1,49 @@ +name: "Something Theme" +source: + marketplace_id: "monadica.something-theme" + version: "0.0.3" + installs: 51 + author: "Monadica" + repo: "https://github.com/monadicarts/something-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=monadica.something-theme" +colors: + bg: "#151514" + fg: "#FFFFFF" + black: "#232322" + red: "#C99492" + green: "#52D98F" + yellow: "#FFD700" + blue: "#82AAFF" + magenta: "#B07CC3" + cyan: "#00D0E6" + white: "#FFFFFF" + brightBlack: "#8B94B8" + brightRed: "#C99492" + brightGreen: "#52D98F" + brightYellow: "#FFD700" + brightBlue: "#82AAFF" + brightMagenta: "#B07CC3" + brightCyan: "#00D0E6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.1 + black: 0 + red: 50.7 + green: 68.8 + yellow: 83.4 + blue: 56.1 + magenta: 41.6 + cyan: 66.8 + white: 107.1 + brightBlack: 44.4 + brightRed: 50.7 + brightGreen: 68.8 + brightYellow: 83.4 + brightBlue: 56.1 + brightMagenta: 41.6 + brightCyan: 66.8 + brightWhite: 107.1 diff --git a/themes/somewhere-on-a-beach.yaml b/themes/somewhere-on-a-beach.yaml new file mode 100644 index 00000000..f16e61c9 --- /dev/null +++ b/themes/somewhere-on-a-beach.yaml @@ -0,0 +1,49 @@ +name: "somewhere on a beach..." +source: + marketplace_id: "BlakeNoll.somewhere-on-a-beach" + version: "1.3.0" + installs: 574 + author: "Blake Noll" + repo: "https://github.com/blakenoll/some-where-on-a-beach" + url: "https://marketplace.visualstudio.com/items?itemName=BlakeNoll.somewhere-on-a-beach" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#EC6666" + green: "#0DBC79" + yellow: "#EEF5B2" + blue: "#3FC5F0" + magenta: "#E29EE2" + cyan: "#1EDDE0" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFFF6D" + brightBlue: "#3B8EEA" + brightMagenta: "#DE70DE" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 42 + green: 52.2 + yellow: 95.9 + blue: 62 + magenta: 60.6 + cyan: 71.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 101.5 + brightBlue: 39.2 + brightMagenta: 46.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/sonokai-andromeda.yaml b/themes/sonokai-andromeda.yaml new file mode 100644 index 00000000..a147079b --- /dev/null +++ b/themes/sonokai-andromeda.yaml @@ -0,0 +1,49 @@ +name: "Sonokai Andromeda" +source: + marketplace_id: "sainnhe.sonokai" + version: "0.2.9" + installs: 24096 + author: "sainnhe" + repo: "https://github.com/sainnhe/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" +colors: + bg: "#2B2D3A" + fg: "#E1E3E4" + black: "#3F445B" + red: "#FB617E" + green: "#9ED06C" + yellow: "#EDC763" + blue: "#6DCAE8" + magenta: "#BB97EE" + cyan: "#F89860" + white: "#E1E3E4" + brightBlack: "#3F445B" + brightRed: "#FB617E" + brightGreen: "#9ED06C" + brightYellow: "#EDC763" + brightBlue: "#6DCAE8" + brightMagenta: "#BB97EE" + brightCyan: "#F89860" + brightWhite: "#E1E3E4" +meta: + mode: "dark" + accent: "red" + hue: 278 + contrast: + fg: 84.9 + black: 0 + red: 42 + green: 64.8 + yellow: 70.6 + blue: 62.9 + magenta: 50.4 + cyan: 55.1 + white: 84.9 + brightBlack: 0 + brightRed: 42 + brightGreen: 64.8 + brightYellow: 70.6 + brightBlue: 62.9 + brightMagenta: 50.4 + brightCyan: 55.1 + brightWhite: 84.9 diff --git a/themes/sonokai-atlantis.yaml b/themes/sonokai-atlantis.yaml new file mode 100644 index 00000000..4cd28ae9 --- /dev/null +++ b/themes/sonokai-atlantis.yaml @@ -0,0 +1,49 @@ +name: "Sonokai Atlantis" +source: + marketplace_id: "sainnhe.sonokai" + version: "0.2.9" + installs: 24096 + author: "sainnhe" + repo: "https://github.com/sainnhe/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" +colors: + bg: "#2A2F38" + fg: "#E1E3E4" + black: "#424B5B" + red: "#FF6578" + green: "#9DD274" + yellow: "#EACB64" + blue: "#72CCE8" + magenta: "#BA9CF3" + cyan: "#F69C5E" + white: "#E1E3E4" + brightBlack: "#424B5B" + brightRed: "#FF6578" + brightGreen: "#9DD274" + brightYellow: "#EACB64" + brightBlue: "#72CCE8" + brightMagenta: "#BA9CF3" + brightCyan: "#F69C5E" + brightWhite: "#E1E3E4" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 84.7 + black: 7.3 + red: 43.3 + green: 65.6 + yellow: 71.6 + blue: 63.9 + magenta: 52 + cyan: 55.8 + white: 84.7 + brightBlack: 7.3 + brightRed: 43.3 + brightGreen: 65.6 + brightYellow: 71.6 + brightBlue: 63.9 + brightMagenta: 52 + brightCyan: 55.8 + brightWhite: 84.7 diff --git a/themes/sonokai-espresso.yaml b/themes/sonokai-espresso.yaml new file mode 100644 index 00000000..7ab975d2 --- /dev/null +++ b/themes/sonokai-espresso.yaml @@ -0,0 +1,49 @@ +name: "Sonokai Espresso" +source: + marketplace_id: "sainnhe.sonokai" + version: "0.2.9" + installs: 24096 + author: "sainnhe" + repo: "https://github.com/sainnhe/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" +colors: + bg: "#312C2B" + fg: "#E4E3E1" + black: "#4E433F" + red: "#F86882" + green: "#A6CD77" + yellow: "#F0C66F" + blue: "#81D0C9" + magenta: "#9FA0E1" + cyan: "#F08D71" + white: "#E4E3E1" + brightBlack: "#4E433F" + brightRed: "#F86882" + brightGreen: "#A6CD77" + brightYellow: "#F0C66F" + brightBlue: "#81D0C9" + brightMagenta: "#9FA0E1" + brightCyan: "#F08D71" + brightWhite: "#E4E3E1" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 85.3 + black: 0 + red: 43.1 + green: 64.6 + yellow: 71 + blue: 65.5 + magenta: 49.5 + cyan: 50.6 + white: 85.3 + brightBlack: 0 + brightRed: 43.1 + brightGreen: 64.6 + brightYellow: 71 + brightBlue: 65.5 + brightMagenta: 49.5 + brightCyan: 50.6 + brightWhite: 85.3 diff --git a/themes/sonokai-maia.yaml b/themes/sonokai-maia.yaml new file mode 100644 index 00000000..75dc187c --- /dev/null +++ b/themes/sonokai-maia.yaml @@ -0,0 +1,49 @@ +name: "Sonokai Maia" +source: + marketplace_id: "sainnhe.sonokai" + version: "0.2.9" + installs: 24096 + author: "sainnhe" + repo: "https://github.com/sainnhe/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" +colors: + bg: "#273136" + fg: "#E1E2E3" + black: "#414B53" + red: "#F76C7C" + green: "#9CD57B" + yellow: "#E3D367" + blue: "#78CEE9" + magenta: "#BAA0F8" + cyan: "#F3A96A" + white: "#E1E2E3" + brightBlack: "#414B53" + brightRed: "#F76C7C" + brightGreen: "#9CD57B" + brightYellow: "#E3D367" + brightBlue: "#78CEE9" + brightMagenta: "#BAA0F8" + brightCyan: "#F3A96A" + brightWhite: "#E1E2E3" +meta: + mode: "dark" + accent: "orange" + hue: 230 + contrast: + fg: 84 + black: 0 + red: 43 + green: 66.9 + yellow: 73.9 + blue: 65 + magenta: 53.6 + cyan: 59.8 + white: 84 + brightBlack: 0 + brightRed: 43 + brightGreen: 66.9 + brightYellow: 73.9 + brightBlue: 65 + brightMagenta: 53.6 + brightCyan: 59.8 + brightWhite: 84 diff --git a/themes/sonokai-shusia.yaml b/themes/sonokai-shusia.yaml new file mode 100644 index 00000000..1d76f9d9 --- /dev/null +++ b/themes/sonokai-shusia.yaml @@ -0,0 +1,49 @@ +name: "Sonokai Shusia" +source: + marketplace_id: "sainnhe.sonokai" + version: "0.2.9" + installs: 24096 + author: "sainnhe" + repo: "https://github.com/sainnhe/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" +colors: + bg: "#2D2A2E" + fg: "#E3E1E4" + black: "#49464E" + red: "#F85E84" + green: "#9ECD6F" + yellow: "#E5C463" + blue: "#7ACCD7" + magenta: "#AB9DF2" + cyan: "#EF9062" + white: "#E3E1E4" + brightBlack: "#49464E" + brightRed: "#F85E84" + brightGreen: "#9ECD6F" + brightYellow: "#E5C463" + brightBlue: "#7ACCD7" + brightMagenta: "#AB9DF2" + brightCyan: "#EF9062" + brightWhite: "#E3E1E4" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 84.9 + black: 0 + red: 41.5 + green: 64.1 + yellow: 68.7 + blue: 64.3 + magenta: 51.2 + cyan: 51.5 + white: 84.9 + brightBlack: 0 + brightRed: 41.5 + brightGreen: 64.1 + brightYellow: 68.7 + brightBlue: 64.3 + brightMagenta: 51.2 + brightCyan: 51.5 + brightWhite: 84.9 diff --git a/themes/sonokai.yaml b/themes/sonokai.yaml new file mode 100644 index 00000000..7c546a74 --- /dev/null +++ b/themes/sonokai.yaml @@ -0,0 +1,49 @@ +name: "Sonokai" +source: + marketplace_id: "sainnhe.sonokai" + version: "0.2.9" + installs: 24096 + author: "sainnhe" + repo: "https://github.com/sainnhe/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" +colors: + bg: "#2C2E34" + fg: "#E2E2E3" + black: "#414550" + red: "#FC5D7C" + green: "#9ED072" + yellow: "#E7C664" + blue: "#76CCE0" + magenta: "#B39DF3" + cyan: "#F39660" + white: "#E2E2E3" + brightBlack: "#414550" + brightRed: "#FC5D7C" + brightGreen: "#9ED072" + brightYellow: "#E7C664" + brightBlue: "#76CCE0" + brightMagenta: "#B39DF3" + brightCyan: "#F39660" + brightWhite: "#E2E2E3" +meta: + mode: "dark" + accent: "red" + hue: 271 + contrast: + fg: 84.5 + black: 0 + red: 41.3 + green: 64.9 + yellow: 69.2 + blue: 63.8 + magenta: 51.6 + cyan: 53.4 + white: 84.5 + brightBlack: 0 + brightRed: 41.3 + brightGreen: 64.9 + brightYellow: 69.2 + brightBlue: 63.8 + brightMagenta: 51.6 + brightCyan: 53.4 + brightWhite: 84.5 diff --git a/themes/sonora-deep-signal-faded.yaml b/themes/sonora-deep-signal-faded.yaml new file mode 100644 index 00000000..3e96054d --- /dev/null +++ b/themes/sonora-deep-signal-faded.yaml @@ -0,0 +1,49 @@ +name: "Sonora Deep Signal (faded)" +source: + marketplace_id: "martinlatrille.sonora" + version: "0.0.8" + installs: 32 + author: "martinlatrille" + repo: "https://github.com/martinlatrille/Sonora" + url: "https://marketplace.visualstudio.com/items?itemName=martinlatrille.sonora" +colors: + bg: "#21252B" + fg: "#D7DAE6" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#A6ADC8" + brightBlack: "#585B70" + brightRed: "#F37799" + brightGreen: "#89D88B" + brightYellow: "#EBD391" + brightBlue: "#74A8FC" + brightMagenta: "#F2AEDE" + brightCyan: "#6BD7CA" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: 258 + contrast: + fg: 81.5 + black: 8.5 + red: 53.9 + green: 77.5 + yellow: 87.6 + blue: 58.3 + magenta: 75.9 + cyan: 77.4 + white: 55.4 + brightBlack: 16.1 + brightRed: 47.9 + brightGreen: 69.3 + brightYellow: 78.1 + brightBlue: 52 + brightMagenta: 67.5 + brightCyan: 69.1 + brightWhite: 67.3 diff --git a/themes/sonora-deep-signal-vibrant.yaml b/themes/sonora-deep-signal-vibrant.yaml new file mode 100644 index 00000000..637ccfce --- /dev/null +++ b/themes/sonora-deep-signal-vibrant.yaml @@ -0,0 +1,49 @@ +name: "Sonora Deep Signal (vibrant)" +source: + marketplace_id: "martinlatrille.sonora" + version: "0.0.8" + installs: 32 + author: "martinlatrille" + repo: "https://github.com/martinlatrille/Sonora" + url: "https://marketplace.visualstudio.com/items?itemName=martinlatrille.sonora" +colors: + bg: "#21252B" + fg: "#D7DAE6" + black: "#282C34" + red: "#F17497" + green: "#93DD8D" + yellow: "#F7D997" + blue: "#71A5F9" + magenta: "#F1ACDE" + cyan: "#7FDCCD" + white: "#B4B5BA" + brightBlack: "#435472" + brightRed: "#F37799" + brightGreen: "#89D88B" + brightYellow: "#EBD391" + brightBlue: "#74A8FC" + brightMagenta: "#F2AEDE" + brightCyan: "#6BD7CA" + brightWhite: "#C4C8D4" +meta: + mode: "dark" + accent: "red" + hue: 258 + contrast: + fg: 81.5 + black: 0 + red: 46.6 + green: 72.5 + yellow: 82.7 + blue: 50.5 + magenta: 66.6 + cyan: 72.7 + white: 59.6 + brightBlack: 12.7 + brightRed: 47.9 + brightGreen: 69.3 + brightYellow: 78.1 + brightBlue: 52 + brightMagenta: 67.5 + brightCyan: 69.1 + brightWhite: 70.5 diff --git a/themes/sonora-deep-signal.yaml b/themes/sonora-deep-signal.yaml new file mode 100644 index 00000000..7348cac4 --- /dev/null +++ b/themes/sonora-deep-signal.yaml @@ -0,0 +1,49 @@ +name: "Sonora Deep Signal" +source: + marketplace_id: "martinlatrille.sonora" + version: "0.0.8" + installs: 32 + author: "martinlatrille" + repo: "https://github.com/martinlatrille/Sonora" + url: "https://marketplace.visualstudio.com/items?itemName=martinlatrille.sonora" +colors: + bg: "#21252B" + fg: "#D7DAE6" + black: "#45475A" + red: "#F282A1" + green: "#9EE199" + yellow: "#F8DEA5" + blue: "#80AEFA" + magenta: "#F4B9E3" + cyan: "#8BDFD1" + white: "#A6ADC8" + brightBlack: "#585B70" + brightRed: "#F37799" + brightGreen: "#89D88B" + brightYellow: "#EBD391" + brightBlue: "#74A8FC" + brightMagenta: "#F2AEDE" + brightCyan: "#6BD7CA" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: 258 + contrast: + fg: 81.5 + black: 8.5 + red: 50.8 + green: 75.6 + yellow: 85.4 + blue: 55.1 + magenta: 72.1 + cyan: 75.2 + white: 55.4 + brightBlack: 16.1 + brightRed: 47.9 + brightGreen: 69.3 + brightYellow: 78.1 + brightBlue: 52 + brightMagenta: 67.5 + brightCyan: 69.1 + brightWhite: 67.3 diff --git a/themes/sonora-tides.yaml b/themes/sonora-tides.yaml new file mode 100644 index 00000000..871bd7e9 --- /dev/null +++ b/themes/sonora-tides.yaml @@ -0,0 +1,49 @@ +name: "Sonora Tides" +source: + marketplace_id: "martinlatrille.sonora" + version: "0.0.8" + installs: 32 + author: "martinlatrille" + repo: "https://github.com/martinlatrille/Sonora" + url: "https://marketplace.visualstudio.com/items?itemName=martinlatrille.sonora" +colors: + bg: "#282C34" + fg: "#D7DAE6" + black: "#494D64" + red: "#ED8796" + green: "#A6DA95" + yellow: "#EED49F" + blue: "#8AADF4" + magenta: "#F5BDE6" + cyan: "#8BD5CA" + white: "#A5ADCB" + brightBlack: "#5B6078" + brightRed: "#EC7486" + brightGreen: "#8CCF7F" + brightYellow: "#E1C682" + brightBlue: "#78A1F6" + brightMagenta: "#F2A9DD" + brightCyan: "#63CBC0" + brightWhite: "#B8C0E0" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 80.1 + black: 9.3 + red: 49.6 + green: 71.6 + yellow: 78 + blue: 53.8 + magenta: 72.6 + cyan: 68.8 + white: 54.1 + brightBlack: 16.7 + brightRed: 43.7 + brightGreen: 63.6 + brightYellow: 69.4 + brightBlue: 47.9 + brightMagenta: 64.3 + brightCyan: 61.3 + brightWhite: 64.9 diff --git a/themes/soothing-dark.yaml b/themes/soothing-dark.yaml new file mode 100644 index 00000000..29f86f68 --- /dev/null +++ b/themes/soothing-dark.yaml @@ -0,0 +1,49 @@ +name: "Soothing Dark" +source: + marketplace_id: "fastestsunil.sunilcode-themes" + version: "1.0.2" + installs: 57 + author: "fastestsunil" + repo: "https://github.com/fastestsunil/sunilcode-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=fastestsunil.sunilcode-themes" +colors: + bg: "#1A2332" + fg: "#D4C5B9" + black: "#1A2332" + red: "#D4A574" + green: "#7FB069" + yellow: "#E9C46A" + blue: "#89C4F4" + magenta: "#C9ADA7" + cyan: "#7FB0D3" + white: "#D4C5B9" + brightBlack: "#1A2332" + brightRed: "#D4A574" + brightGreen: "#7FB069" + brightYellow: "#E9C46A" + brightBlue: "#89C4F4" + brightMagenta: "#C9ADA7" + brightCyan: "#7FB0D3" + brightWhite: "#D4C5B9" +meta: + mode: "dark" + accent: "yellow" + hue: 260 + contrast: + fg: 70.5 + black: 0 + red: 55.8 + green: 50 + yellow: 70.9 + blue: 64.9 + magenta: 58.7 + cyan: 53.8 + white: 70.5 + brightBlack: 0 + brightRed: 55.8 + brightGreen: 50 + brightYellow: 70.9 + brightBlue: 64.9 + brightMagenta: 58.7 + brightCyan: 53.8 + brightWhite: 70.5 diff --git a/themes/soothing-light.yaml b/themes/soothing-light.yaml new file mode 100644 index 00000000..50dcd3a7 --- /dev/null +++ b/themes/soothing-light.yaml @@ -0,0 +1,49 @@ +name: "Soothing Light" +source: + marketplace_id: "fastestsunil.sunilcode-themes" + version: "1.0.2" + installs: 57 + author: "fastestsunil" + repo: "https://github.com/fastestsunil/sunilcode-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=fastestsunil.sunilcode-themes" +colors: + bg: "#FAF8F5" + fg: "#3C3836" + black: "#3C3836" + red: "#D32F2F" + green: "#2E7D32" + yellow: "#F57C00" + blue: "#1565C0" + magenta: "#7B1FA2" + cyan: "#0097A7" + white: "#FAF8F5" + brightBlack: "#3C3836" + brightRed: "#D32F2F" + brightGreen: "#2E7D32" + brightYellow: "#F57C00" + brightBlue: "#1565C0" + brightMagenta: "#7B1FA2" + brightCyan: "#0097A7" + brightWhite: "#FAF8F5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.6 + black: 92.6 + red: 68.8 + green: 71 + yellow: 47.7 + blue: 74.1 + magenta: 83.1 + cyan: 58 + white: 0 + brightBlack: 92.6 + brightRed: 68.8 + brightGreen: 71 + brightYellow: 47.7 + brightBlue: 74.1 + brightMagenta: 83.1 + brightCyan: 58 + brightWhite: 0 diff --git a/themes/soothing.yaml b/themes/soothing.yaml new file mode 100644 index 00000000..a10648aa --- /dev/null +++ b/themes/soothing.yaml @@ -0,0 +1,49 @@ +name: "Soothing" +source: + marketplace_id: "alirezanet.soothing-theme" + version: "0.1.2" + installs: 1160 + author: "alireza" + repo: "https://github.com/Alirezanet/Soothing-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=alirezanet.soothing-theme" +colors: + bg: "#1F2022" + fg: "#CBC1D5" + black: "#222528" + red: "#BA0E2E" + green: "#B3CC57" + yellow: "#EF746F" + blue: "#FFBE40" + magenta: "#3FB4C5" + cyan: "#F86F50" + white: "#D6DDE3" + brightBlack: "#454B51" + brightRed: "#F03E5F" + brightGreen: "#D6E4A5" + brightYellow: "#F9CDCB" + brightBlue: "#FFE1A6" + brightMagenta: "#8DD3DD" + brightCyan: "#FCC0B2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 69.2 + black: 0 + red: 19.4 + green: 67.3 + yellow: 45.8 + blue: 72.1 + magenta: 51.9 + cyan: 45.9 + white: 83.3 + brightBlack: 9.9 + brightRed: 35.7 + brightGreen: 84.1 + brightYellow: 80.4 + brightBlue: 88.6 + brightMagenta: 71 + brightCyan: 74.7 + brightWhite: 105.8 diff --git a/themes/sorcerer.yaml b/themes/sorcerer.yaml new file mode 100644 index 00000000..f0c1b953 --- /dev/null +++ b/themes/sorcerer.yaml @@ -0,0 +1,49 @@ +name: "Sorcerer" +source: + marketplace_id: "arzg.apprentice" + version: "1.3.0" + installs: 660 + author: "arzg" + repo: "https://github.com/arzg/apprentice-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=arzg.apprentice" +colors: + bg: "#202020" + fg: "#C2C2B0" + black: "#171717" + red: "#996666" + green: "#719611" + yellow: "#808070" + blue: "#6689AD" + magenta: "#5D6A85" + cyan: "#528B8B" + white: "#C2C2B0" + brightBlack: "#444444" + brightRed: "#CC8800" + brightGreen: "#779B70" + brightYellow: "#FAF4C6" + brightBlue: "#90B0D1" + brightMagenta: "#7E8AA2" + brightCyan: "#58B8B8" + brightWhite: "#FFFFE8" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 66.9 + black: 0 + red: 26.9 + green: 37.6 + yellow: 32.1 + blue: 35.5 + magenta: 22.5 + cyan: 33.5 + white: 66.9 + brightBlack: 7.7 + brightRed: 43.8 + brightGreen: 41.3 + brightYellow: 97.5 + brightBlue: 55.6 + brightMagenta: 37.3 + brightCyan: 54 + brightWhite: 104.7 diff --git a/themes/soudev-mega-dark.yaml b/themes/soudev-mega-dark.yaml new file mode 100644 index 00000000..f2e43ae4 --- /dev/null +++ b/themes/soudev-mega-dark.yaml @@ -0,0 +1,49 @@ +name: "Soudev mega dark" +source: + marketplace_id: "soudev.soudev-theme" + version: "1.0.3" + installs: 11535 + author: "soudev" + repo: "https://github.com/jefersonpassos/soudev-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" +colors: + bg: "#070E13" + fg: "#FFFFFF" + black: "#250E48" + red: "#F7005B" + green: "#46D028" + yellow: "#DDCB0A" + blue: "#EF8354" + magenta: "#A100DF" + cyan: "#40B4BB" + white: "#FFFFFF" + brightBlack: "#4A4F53" + brightRed: "#F7005B" + brightGreen: "#46D028" + brightYellow: "#DDCB0A" + brightBlue: "#EF8354" + brightMagenta: "#A100DF" + brightCyan: "#40B4BB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 239 + contrast: + fg: 107.6 + black: 0 + red: 36 + green: 63 + yellow: 73.6 + blue: 51.1 + magenta: 24.7 + cyan: 53.3 + white: 107.6 + brightBlack: 13.3 + brightRed: 36 + brightGreen: 63 + brightYellow: 73.6 + brightBlue: 51.1 + brightMagenta: 24.7 + brightCyan: 53.3 + brightWhite: 107.6 diff --git a/themes/soudev-purple-andromeda.yaml b/themes/soudev-purple-andromeda.yaml new file mode 100644 index 00000000..8ee067d6 --- /dev/null +++ b/themes/soudev-purple-andromeda.yaml @@ -0,0 +1,49 @@ +name: "Soudev Purple Andromeda" +source: + marketplace_id: "soudev.soudev-theme" + version: "1.0.3" + installs: 11535 + author: "soudev" + repo: "https://github.com/jefersonpassos/soudev-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" +colors: + bg: "#3D1653" + fg: "#FFFFFF" + black: "#3D1653" + red: "#F7005B" + green: "#46D028" + yellow: "#DDCB0A" + blue: "#EF8354" + magenta: "#A100DF" + cyan: "#40B4BB" + white: "#FFFFFF" + brightBlack: "#4A4F53" + brightRed: "#F7005B" + brightGreen: "#46D028" + brightYellow: "#DDCB0A" + brightBlue: "#EF8354" + brightMagenta: "#A100DF" + brightCyan: "#40B4BB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 311 + contrast: + fg: 103.9 + black: 0 + red: 32.3 + green: 59.3 + yellow: 69.9 + blue: 47.4 + magenta: 21 + cyan: 49.6 + white: 103.9 + brightBlack: 9.6 + brightRed: 32.3 + brightGreen: 59.3 + brightYellow: 69.9 + brightBlue: 47.4 + brightMagenta: 21 + brightCyan: 49.6 + brightWhite: 103.9 diff --git a/themes/soudev-semi-dark-andromeda.yaml b/themes/soudev-semi-dark-andromeda.yaml new file mode 100644 index 00000000..22d3fe47 --- /dev/null +++ b/themes/soudev-semi-dark-andromeda.yaml @@ -0,0 +1,49 @@ +name: "Soudev semi dark Andromeda" +source: + marketplace_id: "soudev.soudev-theme" + version: "1.0.3" + installs: 11535 + author: "soudev" + repo: "https://github.com/jefersonpassos/soudev-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" +colors: + bg: "#2B2331" + fg: "#FFFFFF" + black: "#2B2331" + red: "#F7005B" + green: "#46D028" + yellow: "#DDCB0A" + blue: "#EF8354" + magenta: "#A100DF" + cyan: "#40B4BB" + white: "#FFFFFF" + brightBlack: "#4A4F53" + brightRed: "#F7005B" + brightGreen: "#46D028" + brightYellow: "#DDCB0A" + brightBlue: "#EF8354" + brightMagenta: "#A100DF" + brightCyan: "#40B4BB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 310 + contrast: + fg: 104.8 + black: 0 + red: 33.2 + green: 60.2 + yellow: 70.8 + blue: 48.3 + magenta: 21.8 + cyan: 50.4 + white: 104.8 + brightBlack: 10.4 + brightRed: 33.2 + brightGreen: 60.2 + brightYellow: 70.8 + brightBlue: 48.3 + brightMagenta: 21.8 + brightCyan: 50.4 + brightWhite: 104.8 diff --git a/themes/soul-theme.yaml b/themes/soul-theme.yaml new file mode 100644 index 00000000..d7ee9849 --- /dev/null +++ b/themes/soul-theme.yaml @@ -0,0 +1,49 @@ +name: "soul-theme" +source: + marketplace_id: "souli.soul-theme" + version: "0.0.1" + installs: 77 + author: "souli" + repo: "https://github.com/S0ULI/Soul-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=souli.soul-theme" +colors: + bg: "#002B36" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 220 + contrast: + fg: 77 + black: 0 + red: 24.3 + green: 50.6 + yellow: 83.2 + blue: 25 + magenta: 27.3 + cyan: 45.1 + white: 87.6 + brightBlack: 19.6 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.6 + brightMagenta: 42.9 + brightCyan: 53 + brightWhite: 87.6 diff --git a/themes/souls-theme.yaml b/themes/souls-theme.yaml new file mode 100644 index 00000000..e799de56 --- /dev/null +++ b/themes/souls-theme.yaml @@ -0,0 +1,49 @@ +name: "Souls Theme" +source: + marketplace_id: "Gussv4z.souls-theme" + version: "0.1.3" + installs: 16 + author: "Gussv4z" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Gussv4z.souls-theme" +colors: + bg: "#0E0F09" + fg: "#00FF9C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 115 + contrast: + fg: 87.9 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/soup-contrast.yaml b/themes/soup-contrast.yaml new file mode 100644 index 00000000..ef8cd0d1 --- /dev/null +++ b/themes/soup-contrast.yaml @@ -0,0 +1,49 @@ +name: "soup-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#17181C" + fg: "#9090B2" + black: "#23242A" + red: "#BA0E2E" + green: "#68B0AB" + yellow: "#8FC0A9" + blue: "#C8D5B9" + magenta: "#FAF3DD" + cyan: "#8FC0A9" + white: "#9F9FBC" + brightBlack: "#454854" + brightRed: "#F03E5F" + brightGreen: "#ABD3D0" + brightYellow: "#D0E5DB" + brightBlue: "#FAFBF9" + brightMagenta: "#FFFFFF" + brightCyan: "#D0E5DB" + brightWhite: "#CCCCDC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 42.9 + black: 0 + red: 20.4 + green: 51.8 + yellow: 61.5 + blue: 77.2 + magenta: 98.9 + cyan: 61.5 + white: 50.4 + brightBlack: 10.2 + brightRed: 36.7 + brightGreen: 74.1 + brightYellow: 86.8 + brightBlue: 103.9 + brightMagenta: 106.8 + brightCyan: 86.8 + brightWhite: 75.3 diff --git a/themes/soup-light.yaml b/themes/soup-light.yaml new file mode 100644 index 00000000..8a8b9c8b --- /dev/null +++ b/themes/soup-light.yaml @@ -0,0 +1,49 @@ +name: "soup-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#666A7A" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#68B0AB" + yellow: "#8FC0A9" + blue: "#C8D5B9" + magenta: "#A5A08E" + cyan: "#8FC0A9" + white: "#727688" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#ABD3D0" + brightYellow: "#D0E5DB" + brightBlue: "#FAFBF9" + brightMagenta: "#D2D0C7" + brightCyan: "#D0E5DB" + brightWhite: "#9B9EAB" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 76.8 + black: 0 + red: 80.3 + green: 49 + yellow: 39.7 + blue: 24.8 + magenta: 51.1 + cyan: 39.7 + white: 71.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 27.8 + brightYellow: 15.8 + brightBlue: 0 + brightMagenta: 25.1 + brightCyan: 15.8 + brightWhite: 51.9 diff --git a/themes/soup.yaml b/themes/soup.yaml new file mode 100644 index 00000000..d348c099 --- /dev/null +++ b/themes/soup.yaml @@ -0,0 +1,49 @@ +name: "soup" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#40424C" + fg: "#9090B2" + black: "#4C4E5A" + red: "#BA0E2E" + green: "#68B0AB" + yellow: "#8FC0A9" + blue: "#C8D5B9" + magenta: "#FAF3DD" + cyan: "#8FC0A9" + white: "#9F9FBC" + brightBlack: "#6F7283" + brightRed: "#F03E5F" + brightGreen: "#ABD3D0" + brightYellow: "#D0E5DB" + brightBlue: "#FAFBF9" + brightMagenta: "#FFFFFF" + brightCyan: "#D0E5DB" + brightWhite: "#CCCCDC" +meta: + mode: "dark" + accent: "orange" + hue: 277 + contrast: + fg: 33.5 + black: 0 + red: 10.9 + green: 42.4 + yellow: 52 + blue: 67.8 + magenta: 89.5 + cyan: 52 + white: 41 + brightBlack: 18.1 + brightRed: 27.2 + brightGreen: 64.6 + brightYellow: 77.4 + brightBlue: 94.4 + brightMagenta: 97.3 + brightCyan: 77.4 + brightWhite: 65.8 diff --git a/themes/sourc.yaml b/themes/sourc.yaml new file mode 100644 index 00000000..954db71c --- /dev/null +++ b/themes/sourc.yaml @@ -0,0 +1,49 @@ +name: "sourc" +source: + marketplace_id: "vitormalencar.sourc" + version: "0.4.0" + installs: 1269 + author: "Vitor Alencar" + repo: "git+https://github.com/vitormalencar/sourc" + url: "https://marketplace.visualstudio.com/items?itemName=vitormalencar.sourc" +colors: + bg: "#00141D" + fg: "#00CAFF" + black: "#00141D" + red: "#FF5B6F" + green: "#46FE7A" + yellow: "#FF963B" + blue: "#FF5D94" + magenta: "#C082FF" + cyan: "#BA90FF" + white: "#00B0DF" + brightBlack: "#002E3D" + brightRed: "#FAF605" + brightGreen: "#BA90FF" + brightYellow: "#FF963B" + brightBlue: "#FF5D94" + brightMagenta: "#C082FF" + brightCyan: "#BA90FF" + brightWhite: "#00CAFF" +meta: + mode: "dark" + accent: "green" + hue: 227 + contrast: + fg: 65.6 + black: 0 + red: 45.3 + green: 87 + yellow: 59.3 + blue: 46.8 + magenta: 49.7 + cyan: 53 + white: 52.3 + brightBlack: 0 + brightRed: 97 + brightGreen: 53 + brightYellow: 59.3 + brightBlue: 46.8 + brightMagenta: 49.7 + brightCyan: 53 + brightWhite: 65.6 diff --git a/themes/sourcerer.yaml b/themes/sourcerer.yaml new file mode 100644 index 00000000..06da7e36 --- /dev/null +++ b/themes/sourcerer.yaml @@ -0,0 +1,49 @@ +name: "Sourcerer" +source: + marketplace_id: "bpruitt-goddard.sourcerer" + version: "1.0.5" + installs: 1524 + author: "Brian Pruitt-Goddard" + repo: "https://github.com/bpruitt-goddard/vscode-sourcerer" + url: "https://marketplace.visualstudio.com/items?itemName=bpruitt-goddard.sourcerer" +colors: + bg: "#222222" + fg: "#C2C2B0" + black: "#111111" + red: "#AA4450" + green: "#719611" + yellow: "#CC8800" + blue: "#6688AA" + magenta: "#8F6F8F" + cyan: "#528B8B" + white: "#D3D3D3" + brightBlack: "#181818" + brightRed: "#FF6A6A" + brightGreen: "#B1D631" + brightYellow: "#FF9800" + brightBlue: "#90B0D1" + brightMagenta: "#8181A6" + brightCyan: "#87CEEB" + brightWhite: "#C1CDC1" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 66.6 + black: 0 + red: 21.3 + green: 37.3 + yellow: 43.5 + blue: 34.7 + magenta: 29.2 + cyan: 33.2 + white: 77.5 + brightBlack: 0 + brightRed: 46.4 + brightGreen: 71 + brightYellow: 58 + brightBlue: 55.3 + brightMagenta: 34.3 + brightCyan: 68.7 + brightWhite: 71.9 diff --git a/themes/sourlick-contrast.yaml b/themes/sourlick-contrast.yaml new file mode 100644 index 00000000..3af70e27 --- /dev/null +++ b/themes/sourlick-contrast.yaml @@ -0,0 +1,49 @@ +name: "sourlick-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#060606" + fg: "#DEDEDE" + black: "#131313" + red: "#BA0E2E" + green: "#EDF252" + yellow: "#8AC27A" + blue: "#BDF522" + magenta: "#D2EB31" + cyan: "#FFBB29" + white: "#EBEBEB" + brightBlack: "#393939" + brightRed: "#F03E5F" + brightGreen: "#F7F9B1" + brightYellow: "#C8E2C0" + brightBlue: "#DAF984" + brightMagenta: "#E6F48E" + brightCyan: "#FFDB8F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 86.6 + black: 0 + red: 21.5 + green: 94.2 + yellow: 61.6 + blue: 89.5 + magenta: 87 + cyan: 72.8 + white: 94.8 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 100.8 + brightYellow: 84.5 + brightBlue: 95.9 + brightMagenta: 95.2 + brightCyan: 87.4 + brightWhite: 107.8 diff --git a/themes/sourlick-light.yaml b/themes/sourlick-light.yaml new file mode 100644 index 00000000..45abd83a --- /dev/null +++ b/themes/sourlick-light.yaml @@ -0,0 +1,49 @@ +name: "sourlick-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#BFC431" + yellow: "#6BA05D" + blue: "#94C117" + magenta: "#AFC425" + cyan: "#D89E20" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DBDE7D" + brightYellow: "#A6C69D" + brightBlue: "#C3EB53" + brightMagenta: "#D3E36C" + brightCyan: "#EAC574" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 35.6 + yellow: 57.6 + blue: 41.4 + magenta: 37.4 + cyan: 46.6 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 20.3 + brightYellow: 35.6 + brightBlue: 17.9 + brightMagenta: 19.4 + brightCyan: 28.6 + brightWhite: 78.8 diff --git a/themes/sourlick.yaml b/themes/sourlick.yaml new file mode 100644 index 00000000..ddf51b9c --- /dev/null +++ b/themes/sourlick.yaml @@ -0,0 +1,49 @@ +name: "sourlick" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2E2C2B" + fg: "#DEDEDE" + black: "#3B3937" + red: "#BA0E2E" + green: "#EDF252" + yellow: "#8AC27A" + blue: "#BDF522" + magenta: "#D2EB31" + cyan: "#FFBB29" + white: "#EBEBEB" + brightBlack: "#635E5C" + brightRed: "#F03E5F" + brightGreen: "#F7F9B1" + brightYellow: "#C8E2C0" + brightBlue: "#DAF984" + brightMagenta: "#E6F48E" + brightCyan: "#FFDB8F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 82.3 + black: 0 + red: 17.2 + green: 89.9 + yellow: 57.3 + blue: 85.3 + magenta: 82.8 + cyan: 68.6 + white: 90.5 + brightBlack: 15.8 + brightRed: 33.5 + brightGreen: 96.5 + brightYellow: 80.2 + brightBlue: 91.6 + brightMagenta: 90.9 + brightCyan: 83.1 + brightWhite: 103.6 diff --git a/themes/south-australia-dark.yaml b/themes/south-australia-dark.yaml new file mode 100644 index 00000000..dad3aac4 --- /dev/null +++ b/themes/south-australia-dark.yaml @@ -0,0 +1,49 @@ +name: "South Australia Dark" +source: + marketplace_id: "lucidlabs.south-australia-theme" + version: "1.1.0" + installs: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.south-australia-theme" +colors: + bg: "#0A0C18" + fg: "#E8EDF3" + black: "#0A0C18" + red: "#E4002B" + green: "#6BBE27" + yellow: "#FFCC2C" + blue: "#012169" + magenta: "#8B1A4A" + cyan: "#5B9BD5" + white: "#E8EDF3" + brightBlack: "#78797E" + brightRed: "#FF4D5E" + brightGreen: "#78D65B" + brightYellow: "#FFE066" + brightBlue: "#3366AA" + brightMagenta: "#E4002B" + brightCyan: "#7EB8DA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 276 + contrast: + fg: 95.5 + black: 0 + red: 30.7 + green: 56.2 + yellow: 79.4 + blue: 0 + magenta: 12.8 + cyan: 45.5 + white: 95.5 + brightBlack: 31.3 + brightRed: 43 + brightGreen: 68.7 + brightYellow: 88.6 + brightBlue: 22.8 + brightMagenta: 30.7 + brightCyan: 59.7 + brightWhite: 107.6 diff --git a/themes/south-australia-light.yaml b/themes/south-australia-light.yaml new file mode 100644 index 00000000..d4e5a3b5 --- /dev/null +++ b/themes/south-australia-light.yaml @@ -0,0 +1,49 @@ +name: "South Australia Light" +source: + marketplace_id: "lucidlabs.south-australia-theme" + version: "1.1.0" + installs: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.south-australia-theme" +colors: + bg: "#FFFFFF" + fg: "#0A0C18" + black: "#0A0C18" + red: "#E4002B" + green: "#0A690D" + yellow: "#B38800" + blue: "#012169" + magenta: "#8B1A4A" + cyan: "#006A8F" + white: "#FFFFFF" + brightBlack: "#78797E" + brightRed: "#8A1220" + brightGreen: "#339D37" + brightYellow: "#FFCC2C" + brightBlue: "#001550" + brightMagenta: "#5A1222" + brightCyan: "#5B9BD5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.7 + black: 105.7 + red: 70.7 + green: 83.3 + yellow: 59.7 + blue: 100.9 + magenta: 89.2 + cyan: 79.8 + white: 0 + brightBlack: 70.1 + brightRed: 90.5 + brightGreen: 62 + brightYellow: 23.5 + brightBlue: 103.5 + brightMagenta: 99.2 + brightCyan: 56 + brightWhite: 0 diff --git a/themes/space-dark.yaml b/themes/space-dark.yaml new file mode 100644 index 00000000..3f7c3b00 --- /dev/null +++ b/themes/space-dark.yaml @@ -0,0 +1,49 @@ +name: "Space Dark" +source: + marketplace_id: "keksiqc.idx-monospace-theme" + version: "1.5.0" + installs: 31573 + author: "Keksi" + repo: "https://github.com/keksiqc/monospace-theme" + url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" +colors: + bg: "#1F1F1F" + fg: "#E1DFDF" + black: "#828282" + red: "#F76769" + green: "#17B877" + yellow: "#FFA23E" + blue: "#7895FF" + magenta: "#A87FFB" + cyan: "#25A6E9" + white: "#B0AFAF" + brightBlack: "#999999" + brightRed: "#FC8F8E" + brightGreen: "#66CE98" + brightYellow: "#FFC26E" + brightBlue: "#98B1FF" + brightMagenta: "#C8AAFF" + brightCyan: "#71C2EE" + brightWhite: "#FDFCFC" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 85.5 + black: 33.7 + red: 44.5 + green: 50.2 + yellow: 61.9 + blue: 46.4 + magenta: 43.9 + cyan: 47.7 + white: 57.1 + brightBlack: 45.2 + brightRed: 56.8 + brightGreen: 63.6 + brightYellow: 74.4 + brightBlue: 59.6 + brightMagenta: 62.5 + brightCyan: 62.6 + brightWhite: 104.1 diff --git a/themes/space-invader-black.yaml b/themes/space-invader-black.yaml new file mode 100644 index 00000000..97ae6f7b --- /dev/null +++ b/themes/space-invader-black.yaml @@ -0,0 +1,49 @@ +name: "Space Invader - Black" +source: + marketplace_id: "rossipedia.space-invader-black" + version: "0.0.4" + installs: 764 + author: "rossipedia" + repo: "https://github.com/rossipedia/space-invader-black-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=rossipedia.space-invader-black" +colors: + bg: "#000000" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F05757" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.4 + black: 0 + red: 43.1 + green: 63.3 + yellow: 71.6 + blue: 55.7 + magenta: 46.1 + cyan: 55.6 + white: 84 + brightBlack: 36.5 + brightRed: 41.4 + brightGreen: 63.3 + brightYellow: 71.6 + brightBlue: 42.5 + brightMagenta: 13.7 + brightCyan: 55.6 + brightWhite: 84 diff --git a/themes/space-invader-darker.yaml b/themes/space-invader-darker.yaml new file mode 100644 index 00000000..13c3c822 --- /dev/null +++ b/themes/space-invader-darker.yaml @@ -0,0 +1,49 @@ +name: "Space Invader - Darker" +source: + marketplace_id: "samogorman1993.space-invader" + version: "1.3.0" + installs: 1935 + author: "Sam Ogorman" + repo: "https://github.com/samogorm/space-invader-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=samogorman1993.space-invader" +colors: + bg: "#12141B" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F05757" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 272 + contrast: + fg: 59.6 + black: 0 + red: 42.3 + green: 62.5 + yellow: 70.8 + blue: 54.9 + magenta: 45.4 + cyan: 54.8 + white: 83.3 + brightBlack: 35.8 + brightRed: 40.6 + brightGreen: 62.5 + brightYellow: 70.8 + brightBlue: 41.7 + brightMagenta: 13 + brightCyan: 54.8 + brightWhite: 83.3 diff --git a/themes/space-invader-light.yaml b/themes/space-invader-light.yaml new file mode 100644 index 00000000..7e0c919f --- /dev/null +++ b/themes/space-invader-light.yaml @@ -0,0 +1,49 @@ +name: "Space Invader - Light" +source: + marketplace_id: "samogorman1993.space-invader" + version: "1.3.0" + installs: 1935 + author: "Sam Ogorman" + repo: "https://github.com/samogorm/space-invader-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=samogorman1993.space-invader" +colors: + bg: "#FFFFFF" + fg: "#454857" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#457DFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#454857" + brightRed: "#DB3434" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 90.8 + black: 99.3 + red: 58.6 + green: 39.1 + yellow: 31.2 + blue: 64.4 + magenta: 55.6 + cyan: 46.5 + white: 19.4 + brightBlack: 90.8 + brightRed: 70.5 + brightGreen: 39.1 + brightYellow: 31.2 + brightBlue: 59.2 + brightMagenta: 88.4 + brightCyan: 46.5 + brightWhite: 19.4 diff --git a/themes/space-invader.yaml b/themes/space-invader.yaml new file mode 100644 index 00000000..cc16316e --- /dev/null +++ b/themes/space-invader.yaml @@ -0,0 +1,49 @@ +name: "Space Invader" +source: + marketplace_id: "samogorman1993.space-invader" + version: "1.3.0" + installs: 1935 + author: "Sam Ogorman" + repo: "https://github.com/samogorm/space-invader-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=samogorman1993.space-invader" +colors: + bg: "#232635" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F05757" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 276 + contrast: + fg: 57.2 + black: 0 + red: 39.9 + green: 60.1 + yellow: 68.3 + blue: 52.4 + magenta: 42.9 + cyan: 52.3 + white: 80.8 + brightBlack: 33.3 + brightRed: 38.1 + brightGreen: 60.1 + brightYellow: 68.3 + brightBlue: 39.3 + brightMagenta: 10.5 + brightCyan: 52.3 + brightWhite: 80.8 diff --git a/themes/space-light.yaml b/themes/space-light.yaml new file mode 100644 index 00000000..4db66168 --- /dev/null +++ b/themes/space-light.yaml @@ -0,0 +1,49 @@ +name: "Space Light" +source: + marketplace_id: "keksiqc.idx-monospace-theme" + version: "1.5.0" + installs: 31573 + author: "Keksi" + repo: "https://github.com/keksiqc/monospace-theme" + url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" +colors: + bg: "#FFFFFF" + fg: "#292929" + black: "#3E3E3E" + red: "#D03941" + green: "#007B49" + yellow: "#A65921" + blue: "#4563CA" + magenta: "#6F4CDE" + cyan: "#0075A2" + white: "#6A6A6A" + brightBlack: "#000000" + brightRed: "#A52430" + brightGreen: "#00522F" + brightYellow: "#904B1A" + brightBlue: "#002583" + brightMagenta: "#4D21BB" + brightCyan: "#00607E" + brightWhite: "#535353" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.4 + black: 94.8 + red: 72.2 + green: 76 + yellow: 75.1 + blue: 76.6 + magenta: 77.3 + cyan: 75 + white: 77 + brightBlack: 106 + brightRed: 83.8 + brightGreen: 91.1 + brightYellow: 82 + brightBlue: 98.5 + brightMagenta: 90.3 + brightCyan: 83.9 + brightWhite: 86.7 diff --git a/themes/space-purple-dark.yaml b/themes/space-purple-dark.yaml new file mode 100644 index 00000000..7c7331e9 --- /dev/null +++ b/themes/space-purple-dark.yaml @@ -0,0 +1,49 @@ +name: "Space Purple Dark" +source: + marketplace_id: "zzAIMoo.space-purple" + version: "0.11.0" + installs: 11289 + author: "zzAIMoo" + repo: "https://github.com/zzAIMoo/space-purple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zzAIMoo.space-purple" +colors: + bg: "#3B205A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 302 + contrast: + fg: 103 + black: 0 + red: 22.9 + green: 49.1 + yellow: 81.8 + blue: 23.6 + magenta: 25.9 + cyan: 43.7 + white: 86.2 + brightBlack: 18.2 + brightRed: 34.7 + brightGreen: 59.7 + brightYellow: 91.8 + brightBlue: 36.1 + brightMagenta: 41.5 + brightCyan: 51.5 + brightWhite: 86.2 diff --git a/themes/space-purple-light.yaml b/themes/space-purple-light.yaml new file mode 100644 index 00000000..e4f10135 --- /dev/null +++ b/themes/space-purple-light.yaml @@ -0,0 +1,49 @@ +name: "Space Purple Light" +source: + marketplace_id: "zzAIMoo.space-purple" + version: "0.11.0" + installs: 11289 + author: "zzAIMoo" + repo: "https://github.com/zzAIMoo/space-purple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zzAIMoo.space-purple" +colors: + bg: "#EDC4FF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 315 + contrast: + fg: 80.1 + black: 80.1 + red: 48.1 + green: 23.3 + yellow: 32 + blue: 60.1 + magenta: 48.6 + cyan: 34.7 + white: 60 + brightBlack: 52.8 + brightRed: 48.1 + brightGreen: 15 + brightYellow: 15 + brightBlue: 60.1 + brightMagenta: 48.6 + brightCyan: 34.7 + brightWhite: 22.5 diff --git a/themes/space-theme.yaml b/themes/space-theme.yaml new file mode 100644 index 00000000..51f5d9f2 --- /dev/null +++ b/themes/space-theme.yaml @@ -0,0 +1,49 @@ +name: "space-theme" +source: + marketplace_id: "hosana.space-github-theme" + version: "1.8.0" + installs: 559 + author: "hosana" + repo: "https://github.com/hosanabarcelos/vscode-extension" + url: "https://marketplace.visualstudio.com/items?itemName=hosana.space-github-theme" +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#0D1117" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#388BFD" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#C9D1D9" + brightBlack: "#8B949E" + brightRed: "#FF7B72" + brightGreen: "#3FB950" + brightYellow: "#D29922" + brightBlue: "#388BFD" + brightMagenta: "#BC8CFF" + brightCyan: "#56D4DD" + brightWhite: "#C9D1D9" +meta: + mode: "dark" + accent: "purple" + hue: 258 + contrast: + fg: 77.5 + black: 0 + red: 52.6 + green: 52.1 + yellow: 52.2 + blue: 40.8 + magenta: 52.2 + cyan: 61.4 + white: 77.5 + brightBlack: 43.6 + brightRed: 52.6 + brightGreen: 52.1 + brightYellow: 52.2 + brightBlue: 40.8 + brightMagenta: 52.2 + brightCyan: 69.9 + brightWhite: 77.5 diff --git a/themes/space.yaml b/themes/space.yaml new file mode 100644 index 00000000..aab094ea --- /dev/null +++ b/themes/space.yaml @@ -0,0 +1,49 @@ +name: "Space" +source: + marketplace_id: "YesCode.grayspace" + version: "0.0.23" + installs: 768 + author: "YesCode" + repo: "https://github.com/yesomac/platzi_theme" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.grayspace" +colors: + bg: "#342D31" + fg: "#F0C27C" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#0687FF" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 343 + contrast: + fg: 69.3 + black: 0 + red: 38.1 + green: 57.1 + yellow: 69.2 + blue: 43.7 + magenta: 15.7 + cyan: 45.6 + white: 43.4 + brightBlack: 14.7 + brightRed: 38.1 + brightGreen: 34.6 + brightYellow: 75.9 + brightBlue: 14.9 + brightMagenta: 15.7 + brightCyan: 45.6 + brightWhite: 95 diff --git a/themes/spacecamp.yaml b/themes/spacecamp.yaml new file mode 100644 index 00000000..b5b8e83d --- /dev/null +++ b/themes/spacecamp.yaml @@ -0,0 +1,49 @@ +name: "SpaceCamp" +source: + marketplace_id: "PaulGomez.spacecamp" + version: "0.0.8" + installs: 393 + author: "Dino Gomez" + repo: "https://github.com/dinogomez/SpaceCamp" + url: "https://marketplace.visualstudio.com/items?itemName=PaulGomez.spacecamp" +colors: + bg: "#262626" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 104.8 + black: 0 + red: 24.6 + green: 50.9 + yellow: 83.5 + blue: 25.3 + magenta: 27.7 + cyan: 45.5 + white: 87.9 + brightBlack: 20 + brightRed: 36.5 + brightGreen: 61.5 + brightYellow: 93.6 + brightBlue: 37.9 + brightMagenta: 43.3 + brightCyan: 53.3 + brightWhite: 87.9 diff --git a/themes/spacedust.yaml b/themes/spacedust.yaml new file mode 100644 index 00000000..7eba4de7 --- /dev/null +++ b/themes/spacedust.yaml @@ -0,0 +1,49 @@ +name: "Spacedust" +source: + marketplace_id: "Wallsified.spacedust" + version: "0.0.1" + installs: 555 + author: "Wallsified" + repo: "https://github.com/Wallsified/Spacedust-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=Wallsified.spacedust" +colors: + bg: "#0A1E24" + fg: "#ECF0C1" + black: "#6E5346" + red: "#E35B00" + green: "#5CAB96" + yellow: "#E3CD7B" + blue: "#0F548B" + magenta: "#E35B00" + cyan: "#06AFC7" + white: "#F0F1CE" + brightBlack: "#684C31" + brightRed: "#FF8A3A" + brightGreen: "#AECAB8" + brightYellow: "#FFC878" + brightBlue: "#67A0CE" + brightMagenta: "#FF8A3A" + brightCyan: "#83A7B4" + brightWhite: "#FEFFF1" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 94 + black: 16.1 + red: 37 + green: 47.8 + yellow: 75.1 + blue: 13.6 + magenta: 37 + cyan: 49.6 + white: 95.5 + brightBlack: 13.3 + brightRed: 54.7 + brightGreen: 68.9 + brightYellow: 77.4 + brightBlue: 46.5 + brightMagenta: 54.7 + brightCyan: 50 + brightWhite: 105.5 diff --git a/themes/spacegray.yaml b/themes/spacegray.yaml new file mode 100644 index 00000000..e03b49ca --- /dev/null +++ b/themes/spacegray.yaml @@ -0,0 +1,49 @@ +name: "SpaceGray" +source: + marketplace_id: "YesCode.grayspace" + version: "0.0.23" + installs: 768 + author: "YesCode" + repo: "https://github.com/yesomac/platzi_theme" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.grayspace" +colors: + bg: "#1D1D1D" + fg: "#DDDDDD" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#807AB3" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 84.3 + black: 0 + red: 41.3 + green: 60.3 + yellow: 72.4 + blue: 82.1 + magenta: 18.8 + cyan: 48.7 + white: 46.5 + brightBlack: 17.9 + brightRed: 41.3 + brightGreen: 33.3 + brightYellow: 79 + brightBlue: 18 + brightMagenta: 18.8 + brightCyan: 48.7 + brightWhite: 98.2 diff --git a/themes/spacegrey.yaml b/themes/spacegrey.yaml new file mode 100644 index 00000000..c7a52364 --- /dev/null +++ b/themes/spacegrey.yaml @@ -0,0 +1,49 @@ +name: "spacegrey" +source: + marketplace_id: "huodon.spacegrey" + version: "0.1.4" + installs: 647 + author: "huodon" + repo: "https://github.com/FlatMapIO/vscode-spacegrey-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=huodon.spacegrey" +colors: + bg: "#F1F3F8" + fg: "#383F51" + black: "#000000" + red: "#CD3131" + green: "#00AC00" + yellow: "#D89E00" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0089AC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#F5C800" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#B0BDC7" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 87.2 + black: 98.9 + red: 66.8 + green: 49.2 + yellow: 39.5 + blue: 78.9 + magenta: 67.4 + cyan: 60 + white: 78.8 + brightBlack: 71.6 + brightRed: 66.8 + brightGreen: 33.7 + brightYellow: 19.5 + brightBlue: 78.9 + brightMagenta: 67.4 + brightCyan: 53.4 + brightWhite: 29.5 diff --git a/themes/spacemacs-dark.yaml b/themes/spacemacs-dark.yaml new file mode 100644 index 00000000..9428babd --- /dev/null +++ b/themes/spacemacs-dark.yaml @@ -0,0 +1,49 @@ +name: "Spacemacs - dark" +source: + marketplace_id: "cometeer.spacemacs" + version: "1.1.1" + installs: 69534 + author: "cometeer" + repo: "git+https://github.com/cometeer/spacemacs-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=cometeer.spacemacs" +colors: + bg: "#292B2E" + fg: "#CBC1D5" + black: "#B2B2B2" + red: "#BA2F59" + green: "#67B11D" + yellow: "#B1951D" + blue: "#3A81C3" + magenta: "#800080" + cyan: "#21B8C7" + white: "#B2B2B2" + brightBlack: "#B2B2B2" + brightRed: "#F2241F" + brightGreen: "#86DC2F" + brightYellow: "#B1951D" + brightBlue: "#D7DFFF" + brightMagenta: "#A31DB1" + brightCyan: "#28DEF0" + brightWhite: "#B2B2B2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 67.4 + black: 56.7 + red: 20.2 + green: 46.4 + yellow: 42.3 + blue: 29.7 + magenta: 8.7 + cyan: 51.2 + white: 56.7 + brightBlack: 56.7 + brightRed: 31.2 + brightGreen: 68.4 + brightYellow: 42.3 + brightBlue: 83.8 + brightMagenta: 18.3 + brightCyan: 71 + brightWhite: 56.7 diff --git a/themes/spacemacs-light.yaml b/themes/spacemacs-light.yaml new file mode 100644 index 00000000..c59b3b35 --- /dev/null +++ b/themes/spacemacs-light.yaml @@ -0,0 +1,49 @@ +name: "Spacemacs - light" +source: + marketplace_id: "cometeer.spacemacs" + version: "1.1.1" + installs: 69534 + author: "cometeer" + repo: "git+https://github.com/cometeer/spacemacs-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=cometeer.spacemacs" +colors: + bg: "#FBF8EF" + fg: "#655370" + black: "#100A14" + red: "#BA2F59" + green: "#67B11D" + yellow: "#B1951D" + blue: "#3A81C3" + magenta: "#800080" + cyan: "#21B8C7" + white: "#100A14" + brightBlack: "#262626" + brightRed: "#F2241F" + brightGreen: "#86DC2F" + brightYellow: "#B1951D" + brightBlue: "#D7DFFF" + brightMagenta: "#A31DB1" + brightCyan: "#28DEF0" + brightWhite: "#100A14" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 79.8 + black: 101.5 + red: 73.4 + green: 47.3 + yellow: 51.3 + blue: 63.8 + magenta: 85.4 + cyan: 42.6 + white: 101.5 + brightBlack: 97.9 + brightRed: 62.3 + brightGreen: 26.2 + brightYellow: 51.3 + brightBlue: 11.7 + brightMagenta: 75.3 + brightCyan: 23.7 + brightWhite: 101.5 diff --git a/themes/spaceoceankitrefined.yaml b/themes/spaceoceankitrefined.yaml new file mode 100644 index 00000000..eebe504e --- /dev/null +++ b/themes/spaceoceankitrefined.yaml @@ -0,0 +1,49 @@ +name: "SpaceOceanKitRefined" +source: + marketplace_id: "space-ocean-kit-refined.space-ocean-kit-refined" + version: "0.3.1" + installs: 81263 + author: "space-ocean-kit-refined" + repo: "https://github.com/aichbauer/space-ocean-kit-refined/" + url: "https://marketplace.visualstudio.com/items?itemName=space-ocean-kit-refined.space-ocean-kit-refined" +colors: + bg: "#2B303B" + fg: "#D4D4D4" + black: "#1C1F26" + red: "#BF5F69" + green: "#A3BE89" + yellow: "#EBCB8B" + blue: "#96B5B4" + magenta: "#B48EAD" + cyan: "#96B5B4" + white: "#C0C5CE" + brightBlack: "#22262F" + brightRed: "#D39298" + brightGreen: "#CCDBBD" + brightYellow: "#F8EEDA" + brightBlue: "#C6D7D6" + brightMagenta: "#D4BED0" + brightCyan: "#C6D7D6" + brightWhite: "#F7F8F9" +meta: + mode: "dark" + accent: "red" + hue: 266 + contrast: + fg: 75.4 + black: 0 + red: 28.4 + green: 57.5 + yellow: 72.3 + blue: 53.9 + magenta: 42.4 + cyan: 53.9 + white: 66.2 + brightBlack: 0 + brightRed: 47.5 + brightGreen: 76.6 + brightYellow: 92.2 + brightBlue: 75.1 + brightMagenta: 66 + brightCyan: 75.1 + brightWhite: 98.1 diff --git a/themes/spacial.yaml b/themes/spacial.yaml new file mode 100644 index 00000000..1d088db4 --- /dev/null +++ b/themes/spacial.yaml @@ -0,0 +1,49 @@ +name: "Spacial" +source: + marketplace_id: "YesCode.spacial" + version: "0.0.8" + installs: 137 + author: "YesCode" + repo: "https://github.com/y3mm/spacial" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.spacial" +colors: + bg: "#131118" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#CFBDFA" + brightYellow: "#E7F0FF" + brightBlue: "#839EBE" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 298 + contrast: + fg: 105 + black: 0 + red: 42.4 + green: 61.4 + yellow: 73.5 + blue: 47.9 + magenta: 19.9 + cyan: 49.9 + white: 47.7 + brightBlack: 19 + brightRed: 42.4 + brightGreen: 71.7 + brightYellow: 97 + brightBlue: 47.9 + brightMagenta: 19.9 + brightCyan: 49.9 + brightWhite: 99.3 diff --git a/themes/spades.yaml b/themes/spades.yaml new file mode 100644 index 00000000..a58b15a5 --- /dev/null +++ b/themes/spades.yaml @@ -0,0 +1,49 @@ +name: "Spades" +source: + marketplace_id: "redwilliams.spades" + version: "2.0.2" + installs: 1146 + author: "redwilliams" + repo: "https://github.com/Red-CS/Spades" + url: "https://marketplace.visualstudio.com/items?itemName=redwilliams.spades" +colors: + bg: "#23252F" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#AA92EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#AA92EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 276 + contrast: + fg: 69.4 + black: 24.4 + red: 42 + green: 63.8 + yellow: 76.9 + blue: 53.9 + magenta: 47.9 + cyan: 76.3 + white: 104.9 + brightBlack: 24.4 + brightRed: 42 + brightGreen: 82.2 + brightYellow: 76.9 + brightBlue: 53.9 + brightMagenta: 47.9 + brightCyan: 76.3 + brightWhite: 104.9 diff --git a/themes/sparkle-theme.yaml b/themes/sparkle-theme.yaml new file mode 100644 index 00000000..efbdd8b2 --- /dev/null +++ b/themes/sparkle-theme.yaml @@ -0,0 +1,49 @@ +name: "Sparkle Theme" +source: + marketplace_id: "ManishPatil.sparkle" + version: "0.0.1" + installs: 193 + author: "Manish Patil" + repo: "https://github.com/PATILMANISH/sparkle" + url: "https://marketplace.visualstudio.com/items?itemName=ManishPatil.sparkle" +colors: + bg: "#141622" + fg: "#E8DAEF" + black: "#141622" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#FFBC58" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#EFF0EB" + brightBlack: "#585A61" + brightRed: "#FF5C57" + brightGreen: "#5AF78E" + brightYellow: "#FFBC58" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: 277 + contrast: + fg: 86.1 + black: 0 + red: 44.7 + green: 84.1 + yellow: 72.7 + blue: 65.5 + magenta: 50.9 + cyan: 87.1 + white: 96.7 + brightBlack: 17.1 + brightRed: 44.7 + brightGreen: 84.1 + brightYellow: 72.7 + brightBlue: 65.5 + brightMagenta: 50.9 + brightCyan: 87.1 + brightWhite: 96.7 diff --git a/themes/speakeasy.yaml b/themes/speakeasy.yaml new file mode 100644 index 00000000..5c25124b --- /dev/null +++ b/themes/speakeasy.yaml @@ -0,0 +1,49 @@ +name: "Speakeasy" +source: + marketplace_id: "winniethemu.speakeasy" + version: "0.1.0" + installs: 50 + author: "Mu" + repo: "https://github.com/winniethemu/speakeasy" + url: "https://marketplace.visualstudio.com/items?itemName=winniethemu.speakeasy" +colors: + bg: "#FFFFDD" + fg: "#657B83" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 69.6 + black: 97.6 + red: 69.2 + green: 57.7 + yellow: 57.7 + blue: 62.6 + magenta: 68.9 + cyan: 57 + white: 9.8 + brightBlack: 100.3 + brightRed: 69.7 + brightGreen: 75.5 + brightYellow: 69.6 + brightBlue: 57.4 + brightMagenta: 68.9 + brightCyan: 50.6 + brightWhite: 0 diff --git a/themes/spearmint-contrast.yaml b/themes/spearmint-contrast.yaml new file mode 100644 index 00000000..789679a3 --- /dev/null +++ b/themes/spearmint-contrast.yaml @@ -0,0 +1,49 @@ +name: "spearmint-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#1A2322" + fg: "#C9DBD9" + black: "#253230" + red: "#BA0E2E" + green: "#69ADB5" + yellow: "#25808A" + blue: "#4CD7E0" + magenta: "#69ADB5" + cyan: "#199FA8" + white: "#D8E5E4" + brightBlack: "#455E5B" + brightRed: "#F03E5F" + brightGreen: "#ADD2D7" + brightYellow: "#47C0CE" + brightBlue: "#A3EAEF" + brightMagenta: "#ADD2D7" + brightCyan: "#44D9E3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 188 + contrast: + fg: 80.1 + black: 0 + red: 19.2 + green: 49.8 + yellow: 27.5 + blue: 69.3 + magenta: 49.8 + cyan: 40.7 + white: 87 + brightBlack: 15.5 + brightRed: 35.5 + brightGreen: 72.9 + brightYellow: 57.7 + brightBlue: 84.3 + brightMagenta: 72.9 + brightCyan: 70.2 + brightWhite: 105.6 diff --git a/themes/spearmint-light.yaml b/themes/spearmint-light.yaml new file mode 100644 index 00000000..fb27d670 --- /dev/null +++ b/themes/spearmint-light.yaml @@ -0,0 +1,49 @@ +name: "spearmint-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#E1F0EE" + fg: "#719692" + black: "#F2F8F8" + red: "#BA0E2E" + green: "#69ADB5" + yellow: "#25808A" + blue: "#4CD7E0" + magenta: "#69ADB5" + cyan: "#199FA8" + white: "#80A19D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#ADD2D7" + brightYellow: "#47C0CE" + brightBlue: "#A3EAEF" + brightMagenta: "#ADD2D7" + brightCyan: "#44D9E3" + brightWhite: "#ACC1BF" +meta: + mode: "light" + accent: "orange" + hue: 187 + contrast: + fg: 48.8 + black: 0 + red: 69.5 + green: 39 + yellow: 61 + blue: 20.3 + magenta: 39 + cyan: 47.9 + white: 43 + brightBlack: 9.8 + brightRed: 53.1 + brightGreen: 16.9 + brightYellow: 31.4 + brightBlue: 0 + brightMagenta: 16.9 + brightCyan: 19.5 + brightWhite: 25 diff --git a/themes/spearmint.yaml b/themes/spearmint.yaml new file mode 100644 index 00000000..5f31c36b --- /dev/null +++ b/themes/spearmint.yaml @@ -0,0 +1,49 @@ +name: "spearmint" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#415654" + fg: "#C9DBD9" + black: "#4C6462" + red: "#BA0E2E" + green: "#69ADB5" + yellow: "#25808A" + blue: "#4CD7E0" + magenta: "#69ADB5" + cyan: "#199FA8" + white: "#D8E5E4" + brightBlack: "#6D908D" + brightRed: "#F03E5F" + brightGreen: "#ADD2D7" + brightYellow: "#47C0CE" + brightBlue: "#A3EAEF" + brightMagenta: "#ADD2D7" + brightCyan: "#44D9E3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 189 + contrast: + fg: 66.4 + black: 0 + red: 0 + green: 36.2 + yellow: 13.8 + blue: 55.6 + magenta: 36.2 + cyan: 27 + white: 73.3 + brightBlack: 23.3 + brightRed: 21.8 + brightGreen: 59.3 + brightYellow: 44 + brightBlue: 70.6 + brightMagenta: 59.3 + brightCyan: 56.5 + brightWhite: 91.9 diff --git a/themes/spider-man.yaml b/themes/spider-man.yaml new file mode 100644 index 00000000..c11d6066 --- /dev/null +++ b/themes/spider-man.yaml @@ -0,0 +1,49 @@ +name: "Spider Man" +source: + marketplace_id: "jundat95.spiderman" + version: "0.0.8" + installs: 21649 + author: "jundat95" + repo: "https://github.com/jundat95/vscode-theme-spider-man" + url: "https://marketplace.visualstudio.com/items?itemName=jundat95.spiderman" +colors: + bg: "#282A36" + fg: "#403F53" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + contrast: + fg: 0 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 50.7 + magenta: 51.6 + cyan: 81 + white: 99 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/spiderverse-2099.yaml b/themes/spiderverse-2099.yaml new file mode 100644 index 00000000..5584f74b --- /dev/null +++ b/themes/spiderverse-2099.yaml @@ -0,0 +1,49 @@ +name: "SpiderVerse 2099" +source: + marketplace_id: "GabrielBrown.spider-verse-theme" + version: "1.0.1" + installs: 2460 + author: "Gabriel Brown" + repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" +colors: + bg: "#151D30" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 266 + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 29 + cyan: 46.8 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.8 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/spiderverse-miles.yaml b/themes/spiderverse-miles.yaml new file mode 100644 index 00000000..d10c53f4 --- /dev/null +++ b/themes/spiderverse-miles.yaml @@ -0,0 +1,49 @@ +name: "SpiderVerse Miles" +source: + marketplace_id: "GabrielBrown.spider-verse-theme" + version: "1.0.1" + installs: 2460 + author: "Gabriel Brown" + repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" +colors: + bg: "#1A1A19" + fg: "#C7C7C7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 71.4 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/spiderverse-spider-man.yaml b/themes/spiderverse-spider-man.yaml new file mode 100644 index 00000000..49114ea4 --- /dev/null +++ b/themes/spiderverse-spider-man.yaml @@ -0,0 +1,49 @@ +name: "SpiderVerse Spider-Man" +source: + marketplace_id: "GabrielBrown.spider-verse-theme" + version: "1.0.1" + installs: 2460 + author: "Gabriel Brown" + repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" +colors: + bg: "#372323" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 19 + contrast: + fg: 77 + black: 0 + red: 24.2 + green: 50.5 + yellow: 83.1 + blue: 24.9 + magenta: 27.2 + cyan: 45 + white: 87.5 + brightBlack: 19.5 + brightRed: 36 + brightGreen: 61 + brightYellow: 93.1 + brightBlue: 37.5 + brightMagenta: 42.8 + brightCyan: 52.9 + brightWhite: 87.5 diff --git a/themes/spin-theme.yaml b/themes/spin-theme.yaml new file mode 100644 index 00000000..298873d2 --- /dev/null +++ b/themes/spin-theme.yaml @@ -0,0 +1,49 @@ +name: "Spin Theme" +source: + marketplace_id: "balah7.spin-theme" + version: "0.0.1" + installs: 484 + author: "balah7" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=balah7.spin-theme" +colors: + bg: "#251728" + fg: "#DBDBDB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BEBEBE" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 320 + contrast: + fg: 83.2 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.1 + cyan: 46.9 + white: 65.8 + brightBlack: 21.4 + brightRed: 37.9 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 106.3 diff --git a/themes/spiral.yaml b/themes/spiral.yaml new file mode 100644 index 00000000..fa527037 --- /dev/null +++ b/themes/spiral.yaml @@ -0,0 +1,49 @@ +name: "Spiral" +source: + marketplace_id: "nd2204.gruvbox-material-mix" + version: "0.4.6" + installs: 465 + author: "nd2204" + repo: "https://github.com/nd2204/vscode-gruvbox" + url: "https://marketplace.visualstudio.com/items?itemName=nd2204.gruvbox-material-mix" +colors: + bg: "#0D111A" + fg: "#C8CCCD" + black: "#2D2F37" + red: "#EB6689" + green: "#EBBCBA" + yellow: "#F6C177" + blue: "#31748F" + magenta: "#C4A7E7" + cyan: "#31748F" + white: "#C8CCCD" + brightBlack: "#393C44" + brightRed: "#EB6689" + brightGreen: "#EBBCBA" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#9CCFD8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 266 + contrast: + fg: 74.7 + black: 0 + red: 44 + green: 72.3 + yellow: 74.1 + blue: 25.6 + magenta: 60.8 + cyan: 25.6 + white: 74.7 + brightBlack: 0 + brightRed: 44 + brightGreen: 72.3 + brightYellow: 74.1 + brightBlue: 71.8 + brightMagenta: 60.8 + brightCyan: 71.8 + brightWhite: 107.4 diff --git a/themes/spirited-night.yaml b/themes/spirited-night.yaml new file mode 100644 index 00000000..3e963cdc --- /dev/null +++ b/themes/spirited-night.yaml @@ -0,0 +1,49 @@ +name: "Spirited Night" +source: + marketplace_id: "danibram.ghibli-inspired-theme" + version: "1.0.0" + installs: 267 + author: "Daniel Biedma" + repo: "https://github.com/danibram/ghibli-theme" + url: "https://marketplace.visualstudio.com/items?itemName=danibram.ghibli-inspired-theme" +colors: + bg: "#1A1420" + fg: "#E8E0F0" + black: "#1A1420" + red: "#FF7766" + green: "#88C898" + yellow: "#FFD080" + blue: "#88A8D8" + magenta: "#D898D8" + cyan: "#88D8D0" + white: "#E8E0F0" + brightBlack: "#6A5A78" + brightRed: "#FFA090" + brightGreen: "#A8E8B8" + brightYellow: "#FFE0A0" + brightBlue: "#A8C8F0" + brightMagenta: "#F0B8F0" + brightCyan: "#A8F0E8" + brightWhite: "#F8F0FF" +meta: + mode: "dark" + accent: "orange" + hue: 307 + contrast: + fg: 88.8 + black: 0 + red: 50.8 + green: 64 + yellow: 81.4 + blue: 53.2 + magenta: 57.3 + cyan: 73.5 + white: 88.8 + brightBlack: 19.6 + brightRed: 63.8 + brightGreen: 82.8 + brightYellow: 89.1 + brightBlue: 70.7 + brightMagenta: 73.6 + brightCyan: 88.6 + brightWhite: 98.9 diff --git a/themes/spitfire-contrast.yaml b/themes/spitfire-contrast.yaml new file mode 100644 index 00000000..6e450985 --- /dev/null +++ b/themes/spitfire-contrast.yaml @@ -0,0 +1,49 @@ +name: "spitfire-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#091C19" + fg: "#BAD3D0" + black: "#0F2F2A" + red: "#BA0E2E" + green: "#F75431" + yellow: "#FACC54" + blue: "#8EC065" + magenta: "#30985B" + cyan: "#F75431" + white: "#CADDDB" + brightBlack: "#22695E" + brightRed: "#F03E5F" + brightGreen: "#FBA593" + brightYellow: "#FDEAB7" + brightBlue: "#C3DEAD" + brightMagenta: "#61CD8E" + brightCyan: "#FBA593" + brightWhite: "#F8FBFA" +meta: + mode: "dark" + accent: "orange" + hue: 182 + contrast: + fg: 75.5 + black: 0 + red: 20.2 + green: 40.7 + yellow: 77.9 + blue: 59.4 + magenta: 36.8 + cyan: 40.7 + white: 82.3 + brightBlack: 18.8 + brightRed: 36.5 + brightGreen: 64.5 + brightYellow: 93.7 + brightBlue: 80.2 + brightMagenta: 63.3 + brightCyan: 64.5 + brightWhite: 103.5 diff --git a/themes/spitfire-light.yaml b/themes/spitfire-light.yaml new file mode 100644 index 00000000..33f40fe6 --- /dev/null +++ b/themes/spitfire-light.yaml @@ -0,0 +1,49 @@ +name: "spitfire-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#24665E" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#F75431" + yellow: "#D6A62F" + blue: "#8EC065" + magenta: "#30985B" + cyan: "#F75431" + white: "#2B796F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FBA593" + brightYellow: "#E7CA84" + brightBlue: "#C3DEAD" + brightMagenta: "#61CD8E" + brightCyan: "#FBA593" + brightWhite: "#3FB1A3" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 82.8 + black: 0 + red: 80.3 + green: 59.8 + yellow: 44.1 + blue: 41.6 + magenta: 63.6 + cyan: 59.8 + white: 75.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 36.7 + brightYellow: 26.8 + brightBlue: 21.9 + brightMagenta: 37.9 + brightCyan: 36.7 + brightWhite: 50.7 diff --git a/themes/spitfire.yaml b/themes/spitfire.yaml new file mode 100644 index 00000000..9877f609 --- /dev/null +++ b/themes/spitfire.yaml @@ -0,0 +1,49 @@ +name: "spitfire" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#184540" + fg: "#BAD3D0" + black: "#1F5852" + red: "#BA0E2E" + green: "#F75431" + yellow: "#FACC54" + blue: "#8EC065" + magenta: "#30985B" + cyan: "#F75431" + white: "#CADDDB" + brightBlack: "#329186" + brightRed: "#F03E5F" + brightGreen: "#FBA593" + brightYellow: "#FDEAB7" + brightBlue: "#C3DEAD" + brightMagenta: "#61CD8E" + brightCyan: "#FBA593" + brightWhite: "#F8FBFA" +meta: + mode: "dark" + accent: "orange" + hue: 185 + contrast: + fg: 67.4 + black: 0 + red: 12.2 + green: 32.6 + yellow: 69.9 + blue: 51.3 + magenta: 28.7 + cyan: 32.6 + white: 74.2 + brightBlack: 27.1 + brightRed: 28.5 + brightGreen: 56.5 + brightYellow: 85.6 + brightBlue: 72.1 + brightMagenta: 55.2 + brightCyan: 56.5 + brightWhite: 95.4 diff --git a/themes/splash-theme.yaml b/themes/splash-theme.yaml new file mode 100644 index 00000000..f87ab7c5 --- /dev/null +++ b/themes/splash-theme.yaml @@ -0,0 +1,49 @@ +name: "Splash Theme" +source: + marketplace_id: "RLabsInc.rlabs-theme-collection" + version: "0.1.4" + installs: 181 + author: "RLabs Inc." + repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" + url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" +colors: + bg: "#161116" + fg: "#F7F5F7" + black: "#292929" + red: "#FF8686" + green: "#63D5A9" + yellow: "#FFC59E" + blue: "#78A4BD" + magenta: "#D39CC6" + cyan: "#76A9AC" + white: "#F7F5F7" + brightBlack: "#D6D2DA" + brightRed: "#FF7575" + brightGreen: "#8AFFD2" + brightYellow: "#FFEFB7" + brightBlue: "#A6D9F7" + brightMagenta: "#FFBCEF" + brightCyan: "#9CBEC5" + brightWhite: "#C9C6C9" +meta: + mode: "dark" + accent: "orange" + hue: 326 + contrast: + fg: 101 + black: 0 + red: 55.9 + green: 68.6 + yellow: 78.1 + blue: 49.3 + magenta: 57.3 + cyan: 50.4 + white: 101 + brightBlack: 79.5 + brightRed: 51 + brightGreen: 93.2 + brightYellow: 96.9 + brightBlue: 78.7 + brightMagenta: 77.9 + brightCyan: 63.4 + brightWhite: 72 diff --git a/themes/splus.yaml b/themes/splus.yaml new file mode 100644 index 00000000..72a5e754 --- /dev/null +++ b/themes/splus.yaml @@ -0,0 +1,49 @@ +name: "Splus" +source: + marketplace_id: "zrachod.splus-theme" + version: "0.2.1" + installs: 6501 + author: "Rachod Petchpho" + repo: "https://github.com/Zrachod/Splus" + url: "https://marketplace.visualstudio.com/items?itemName=zrachod.splus-theme" +colors: + bg: "#1A1C20" + fg: "#EEEEEE" + black: "#888888" + red: "#F74570" + green: "#65CA73" + yellow: "#FFED87" + blue: "#5E9CFF" + magenta: "#AD80FE" + cyan: "#27BC91" + white: "#EEEEEE" + brightBlack: "#888888" + brightRed: "#F95980" + brightGreen: "#7CDD8A" + brightYellow: "#FFED87" + brightBlue: "#65BFFF" + brightMagenta: "#C391FF" + brightCyan: "#49C9A4" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 95.2 + black: 37.1 + red: 39.1 + green: 61.1 + yellow: 93.7 + blue: 47.6 + magenta: 45.5 + cyan: 53.3 + white: 95.2 + brightBlack: 37.1 + brightRed: 43.2 + brightGreen: 72 + brightYellow: 93.7 + brightBlue: 62.1 + brightMagenta: 53.7 + brightCyan: 60.8 + brightWhite: 95.2 diff --git a/themes/spotly-dark.yaml b/themes/spotly-dark.yaml new file mode 100644 index 00000000..4cbdc5b7 --- /dev/null +++ b/themes/spotly-dark.yaml @@ -0,0 +1,49 @@ +name: "Spotly Dark" +source: + marketplace_id: "MaksymBukator.spotly" + version: "1.1.1" + installs: 174 + author: "Maksym Bukator" + repo: "https://github.com/Spotly-Tech/spotly-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MaksymBukator.spotly" +colors: + bg: "#161316" + fg: "#D8DBE7" + black: "#000000" + red: "#A3142A" + green: "#0DBC79" + yellow: "#EDFF00" + blue: "#21499F" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFCF5" + brightBlack: "#666666" + brightRed: "#C8727F" + brightGreen: "#23D18B" + brightYellow: "#F1FF33" + brightBlue: "#3F68C2" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 84.2 + black: 0 + red: 16.1 + green: 53.3 + yellow: 99.5 + blue: 13.1 + magenta: 30 + cyan: 47.8 + white: 105.3 + brightBlack: 22.3 + brightRed: 39.7 + brightGreen: 63.8 + brightYellow: 100.1 + brightBlue: 25 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 107.2 diff --git a/themes/spotly-light.yaml b/themes/spotly-light.yaml new file mode 100644 index 00000000..80298bfb --- /dev/null +++ b/themes/spotly-light.yaml @@ -0,0 +1,49 @@ +name: "Spotly Light" +source: + marketplace_id: "MaksymBukator.spotly" + version: "1.1.1" + installs: 174 + author: "Maksym Bukator" + repo: "https://github.com/Spotly-Tech/spotly-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MaksymBukator.spotly" +colors: + bg: "#FFFCF5" + fg: "#161316" + black: "#000000" + red: "#AC2C3F" + green: "#0DBC79" + yellow: "#DBAD2C" + blue: "#21499F" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFCF5" + brightBlack: "#666666" + brightRed: "#C8727F" + brightGreen: "#23D18B" + brightYellow: "#CCA844" + brightBlue: "#3F68C2" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 103.4 + black: 104.3 + red: 79.7 + green: 46.3 + yellow: 39.1 + blue: 86.6 + magenta: 69.2 + cyan: 51.6 + white: 0 + brightBlack: 77 + brightRed: 59.6 + brightGreen: 36.2 + brightYellow: 42.9 + brightBlue: 74.3 + brightMagenta: 53.7 + brightCyan: 44 + brightWhite: 0 diff --git a/themes/spring.yaml b/themes/spring.yaml new file mode 100644 index 00000000..3350322e --- /dev/null +++ b/themes/spring.yaml @@ -0,0 +1,49 @@ +name: "Spring" +source: + marketplace_id: "malinatrash.spring" + version: "0.0.2" + installs: 132 + author: "malinatrash" + repo: "https://github.com/malinatrash/spring" + url: "https://marketplace.visualstudio.com/items?itemName=malinatrash.spring" +colors: + bg: "#1E1E1E" + fg: "#D6E2DC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 85.5 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/sprinkles-color-theme.yaml b/themes/sprinkles-color-theme.yaml new file mode 100644 index 00000000..45ba3916 --- /dev/null +++ b/themes/sprinkles-color-theme.yaml @@ -0,0 +1,49 @@ +name: "sprinkles-color-theme" +source: + marketplace_id: "wavebeem.theme-unoduetre" + version: "5.11.1" + installs: 4290 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/vscode-theme-unoduetre" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" +colors: + bg: "#3A1F47" + fg: "#ECD1FA" + black: "#333333" + red: "#ED7D81" + green: "#8CDE9F" + yellow: "#F0C2A3" + blue: "#AF9DF1" + magenta: "#EF9FE5" + cyan: "#89E5EC" + white: "#F1EBF4" + brightBlack: "#333333" + brightRed: "#ED7D81" + brightGreen: "#8CDE9F" + brightYellow: "#F0C2A3" + brightBlue: "#AF9DF1" + brightMagenta: "#EF9FE5" + brightCyan: "#89E5EC" + brightWhite: "#F1EBF4" +meta: + mode: "dark" + accent: "orange" + hue: 314 + contrast: + fg: 80.3 + black: 0 + red: 46.3 + green: 71.7 + yellow: 71.1 + blue: 51.6 + magenta: 61 + cyan: 78 + white: 92 + brightBlack: 0 + brightRed: 46.3 + brightGreen: 71.7 + brightYellow: 71.1 + brightBlue: 51.6 + brightMagenta: 61 + brightCyan: 78 + brightWhite: 92 diff --git a/themes/spurlys-theme.yaml b/themes/spurlys-theme.yaml new file mode 100644 index 00000000..7384a86f --- /dev/null +++ b/themes/spurlys-theme.yaml @@ -0,0 +1,49 @@ +name: "spurlys theme" +source: + marketplace_id: "therealbhuvi.spurlys-theme" + version: "0.0.2" + installs: 193 + author: "Bhuvanesh Prasad" + repo: "https://github.com/bhuvaneshprasad/spurlys-theme" + url: "https://marketplace.visualstudio.com/items?itemName=therealbhuvi.spurlys-theme" +colors: + bg: "#010D18" + fg: "#FFFFFF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 242 + contrast: + fg: 107.6 + black: 0 + red: 44.1 + green: 85.6 + yellow: 99.3 + blue: 54.4 + magenta: 55.3 + cyan: 84.7 + white: 102.7 + brightBlack: 28.8 + brightRed: 49.6 + brightGreen: 89.8 + brightYellow: 104.3 + brightBlue: 66.8 + brightMagenta: 63.3 + brightCyan: 97.5 + brightWhite: 107.6 diff --git a/themes/spyder-theme-light.yaml b/themes/spyder-theme-light.yaml new file mode 100644 index 00000000..6ffee087 --- /dev/null +++ b/themes/spyder-theme-light.yaml @@ -0,0 +1,49 @@ +name: "spyder-theme-light" +source: + marketplace_id: "HilsianCapital.spyder-theme" + version: "0.0.3" + installs: 6895 + author: "HilsianCapital" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HilsianCapital.spyder-theme" +colors: + bg: "#FDFDDF" + fg: "#3C3836" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 94.3 + black: 15.8 + red: 73.1 + green: 55.4 + yellow: 46.1 + blue: 66.7 + magenta: 66.6 + cyan: 56.4 + white: 71.4 + brightBlack: 61.9 + brightRed: 84.6 + brightGreen: 71.2 + brightYellow: 62.6 + brightBlue: 79.8 + brightMagenta: 80.3 + brightCyan: 72 + brightWhite: 94.3 diff --git a/themes/sql-dark-pro-high-contrast.yaml b/themes/sql-dark-pro-high-contrast.yaml new file mode 100644 index 00000000..4000ee95 --- /dev/null +++ b/themes/sql-dark-pro-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "SQL Dark Pro - High Contrast" +source: + marketplace_id: "ameerQ.selectstar-theme" + version: "1.2.2" + installs: 40 + author: "ameerQ" + repo: "https://github.com/Ameer08/selectstar-sql-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ameerQ.selectstar-theme" +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#414868" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#C0CAF5" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#9ECE6A" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 73.8 + black: 10.3 + red: 49.4 + green: 66.9 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 73.8 + brightBlack: 10.3 + brightRed: 49.4 + brightGreen: 66.9 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 73.8 diff --git a/themes/squeak.yaml b/themes/squeak.yaml new file mode 100644 index 00000000..baedfbac --- /dev/null +++ b/themes/squeak.yaml @@ -0,0 +1,49 @@ +name: "Squeak" +source: + marketplace_id: "LinqLover.squeak-theme" + version: "0.0.1" + installs: 372 + author: "LinqLover" + repo: "https://github.com/LinqLover/vscode-squeak-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LinqLover.squeak-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF8888" + brightGreen: "#88FF88" + brightYellow: "#FFFF88" + brightBlue: "#8888FF" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 106 + black: 106 + red: 64.1 + green: 17.1 + yellow: 0 + blue: 85.8 + magenta: 74.6 + cyan: 60.6 + white: 0 + brightBlack: 78.8 + brightRed: 45 + brightGreen: 12.5 + brightYellow: 0 + brightBlue: 56.4 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/srcery-gagbo.yaml b/themes/srcery-gagbo.yaml new file mode 100644 index 00000000..83d24de7 --- /dev/null +++ b/themes/srcery-gagbo.yaml @@ -0,0 +1,49 @@ +name: "Srcery-gagbo" +source: + marketplace_id: "gagbo.srcery" + version: "0.2.0" + installs: 1726 + author: "gagbo" + repo: "https://github.com/gagbo/vscode-srcery" + url: "https://marketplace.visualstudio.com/items?itemName=gagbo.srcery" +colors: + bg: "#1C1B19" + fg: "#FCE8C3" + black: "#1C1B19" + red: "#EF2F27" + green: "#519F50" + yellow: "#FBB829" + blue: "#2C78BF" + magenta: "#E02C6D" + cyan: "#0AAEB3" + white: "#918175" + brightBlack: "#2D2C29" + brightRed: "#F75341" + brightGreen: "#98BC37" + brightYellow: "#FED06E" + brightBlue: "#68A8E4" + brightMagenta: "#FF5C8F" + brightCyan: "#53FDE9" + brightWhite: "#FCE8C3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 92.8 + black: 0 + red: 33.8 + green: 40.5 + yellow: 69.5 + blue: 28.5 + magenta: 31.2 + cyan: 48.3 + white: 35.1 + brightBlack: 0 + brightRed: 40.5 + brightGreen: 57.7 + brightYellow: 80.4 + brightBlue: 51.1 + brightMagenta: 45.6 + brightCyan: 89.7 + brightWhite: 92.8 diff --git a/themes/srcery.yaml b/themes/srcery.yaml new file mode 100644 index 00000000..6848682b --- /dev/null +++ b/themes/srcery.yaml @@ -0,0 +1,49 @@ +name: "Srcery" +source: + marketplace_id: "srcery-colors.srcery-colors" + version: "0.3.8" + installs: 7369 + author: "srcery-colors" + repo: "https://github.com/srcery-colors/srcery-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=srcery-colors.srcery-colors" +colors: + bg: "#1C1B19" + fg: "#FCE8C3" + black: "#1C1B19" + red: "#EF2F27" + green: "#519F50" + yellow: "#FBB829" + blue: "#2C78BF" + magenta: "#E02C6D" + cyan: "#0AAEB3" + white: "#D0BFA1" + brightBlack: "#918175" + brightRed: "#F75341" + brightGreen: "#98BC37" + brightYellow: "#FED06E" + brightBlue: "#68A8E4" + brightMagenta: "#FF5C8F" + brightCyan: "#53FDE9" + brightWhite: "#FCE8C3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 92.8 + black: 0 + red: 33.8 + green: 40.5 + yellow: 69.5 + blue: 28.5 + magenta: 31.2 + cyan: 48.3 + white: 67.7 + brightBlack: 35.1 + brightRed: 40.5 + brightGreen: 57.7 + brightYellow: 80.4 + brightBlue: 51.1 + brightMagenta: 45.6 + brightCyan: 89.7 + brightWhite: 92.8 diff --git a/themes/stackmeister.yaml b/themes/stackmeister.yaml new file mode 100644 index 00000000..1e2b2aa4 --- /dev/null +++ b/themes/stackmeister.yaml @@ -0,0 +1,49 @@ +name: "Stackmeister" +source: + marketplace_id: "stackmeister.stackmeister-theme" + version: "0.0.4" + installs: 78 + author: "Stackmeister GmbH" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=stackmeister.stackmeister-theme" +colors: + bg: "#131038" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 281 + contrast: + fg: 79.4 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 90 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 90 diff --git a/themes/stained-glass-dark.yaml b/themes/stained-glass-dark.yaml new file mode 100644 index 00000000..fd07d3ed --- /dev/null +++ b/themes/stained-glass-dark.yaml @@ -0,0 +1,49 @@ +name: "stained-glass-dark" +source: + marketplace_id: "natecrow.stained-glass-theme" + version: "1.0.1" + installs: 1429 + author: "natecrow" + repo: "https://github.com/natecrow/stained-glass-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=natecrow.stained-glass-theme" +colors: + bg: "#111111" + fg: "#C0B7B1" + black: "#303030" + red: "#E9655F" + green: "#39A462" + yellow: "#A48F25" + blue: "#5793E9" + magenta: "#D469C7" + cyan: "#20A0AE" + white: "#C6C6C6" + brightBlack: "#919191" + brightRed: "#FC9BBB" + brightGreen: "#ACD372" + brightYellow: "#F9B887" + brightBlue: "#7ED2FE" + brightMagenta: "#D2BDFE" + brightCyan: "#24DFC4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 63.8 + black: 0 + red: 42.3 + green: 43 + yellow: 42 + blue: 43.4 + magenta: 43 + cyan: 43.3 + white: 71.6 + brightBlack: 42.6 + brightRed: 63.6 + brightGreen: 71.8 + brightYellow: 71.5 + brightBlue: 72.9 + brightMagenta: 72.4 + brightCyan: 72.8 + brightWhite: 107.4 diff --git a/themes/stannum.yaml b/themes/stannum.yaml new file mode 100644 index 00000000..966c75b1 --- /dev/null +++ b/themes/stannum.yaml @@ -0,0 +1,49 @@ +name: "stannum" +source: + marketplace_id: "stannum.stannum" + version: "1.0.0" + installs: 541 + author: "Tin Lam" + repo: "https://github.com/stannum-l/vscode-stannum-theme" + url: "https://marketplace.visualstudio.com/items?itemName=stannum.stannum" +colors: + bg: "#0C0C0C" + fg: "#D6D6DD" + black: "#676767" + red: "#F14C4C" + green: "#15AC91" + yellow: "#E5B95C" + blue: "#4C9DF3" + magenta: "#E567DC" + cyan: "#75D3BA" + white: "#D6D6DD" + brightBlack: "#676767" + brightRed: "#F14C4C" + brightGreen: "#15AC91" + brightYellow: "#E5B95C" + brightBlue: "#4C9DF3" + brightMagenta: "#E567DC" + brightCyan: "#75D3BA" + brightWhite: "#D6D6DD" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 81.8 + black: 23.2 + red: 39.3 + green: 47.4 + yellow: 68 + blue: 47.6 + magenta: 47.3 + cyan: 69.7 + white: 81.8 + brightBlack: 23.2 + brightRed: 39.3 + brightGreen: 47.4 + brightYellow: 68 + brightBlue: 47.6 + brightMagenta: 47.3 + brightCyan: 69.7 + brightWhite: 81.8 diff --git a/themes/star-night-luna.yaml b/themes/star-night-luna.yaml new file mode 100644 index 00000000..4e921c1f --- /dev/null +++ b/themes/star-night-luna.yaml @@ -0,0 +1,49 @@ +name: "Star Night Luna" +source: + marketplace_id: "victoreduardobarreto.star-night" + version: "0.4.5" + installs: 4914 + author: "Victor Barreto" + repo: "https://github.com/barretov/star-night" + url: "https://marketplace.visualstudio.com/items?itemName=victoreduardobarreto.star-night" +colors: + bg: "#FFFFFF" + fg: "#777777" + black: "#DDDDDD" + red: "#BD0D0D" + green: "#44E66C" + yellow: "#C06A2D" + blue: "#3890CA" + magenta: "#A041E4" + cyan: "#219993" + white: "#E0E0E0" + brightBlack: "#000000" + brightRed: "#C21717" + brightGreen: "#21AF3F" + brightYellow: "#C5D115" + brightBlue: "#257EC7" + brightMagenta: "#C515A8" + brightCyan: "#1AC2B4" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 71.1 + black: 17.6 + red: 79.9 + green: 28 + yellow: 66.3 + blue: 62.2 + magenta: 72.4 + cyan: 61.9 + white: 15.8 + brightBlack: 106 + brightRed: 78.4 + brightGreen: 54.6 + brightYellow: 29.5 + brightBlue: 69.3 + brightMagenta: 73.7 + brightCyan: 43.4 + brightWhite: 17.6 diff --git a/themes/star-night.yaml b/themes/star-night.yaml new file mode 100644 index 00000000..aeef25ec --- /dev/null +++ b/themes/star-night.yaml @@ -0,0 +1,49 @@ +name: "Star Night" +source: + marketplace_id: "victoreduardobarreto.star-night" + version: "0.4.5" + installs: 4914 + author: "Victor Barreto" + repo: "https://github.com/barretov/star-night" + url: "https://marketplace.visualstudio.com/items?itemName=victoreduardobarreto.star-night" +colors: + bg: "#2F2F35" + fg: "#A2A2A3" + black: "#2F2F35" + red: "#BD0D0D" + green: "#117029" + yellow: "#DD8444" + blue: "#35A5F0" + magenta: "#A041E4" + cyan: "#29BBB4" + white: "#FFFFFF" + brightBlack: "#242424" + brightRed: "#C21717" + brightGreen: "#12CA3A" + brightYellow: "#C5D115" + brightBlue: "#257EC7" + brightMagenta: "#C515A8" + brightCyan: "#1AC2B4" + brightWhite: "#ECE3E3" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 47 + black: 0 + red: 16.9 + green: 16.3 + yellow: 43.1 + blue: 45 + magenta: 24.3 + cyan: 50.8 + white: 102.9 + brightBlack: 0 + brightRed: 18.4 + brightGreen: 54.6 + brightYellow: 68.3 + brightBlue: 27.4 + brightMagenta: 23 + brightCyan: 53.8 + brightWhite: 86 diff --git a/themes/star-wars-dark-side-theme-global.yaml b/themes/star-wars-dark-side-theme-global.yaml new file mode 100644 index 00000000..760477db --- /dev/null +++ b/themes/star-wars-dark-side-theme-global.yaml @@ -0,0 +1,49 @@ +name: "Star Wars Dark Side Theme (Global)" +source: + marketplace_id: "MuratAlpaslan.spacewars-theme" + version: "1.0.1" + installs: 116 + author: "Murat Alpaslan" + repo: "https://github.com/muratalpaslan/spacewars" + url: "https://marketplace.visualstudio.com/items?itemName=MuratAlpaslan.spacewars-theme" +colors: + bg: "#1A1A2E" + fg: "#F8F8FF" + black: "#2C3E50" + red: "#C0392B" + green: "#27AE60" + yellow: "#D35400" + blue: "#2980B9" + magenta: "#8E44AD" + cyan: "#16A085" + white: "#F8F8FF" + brightBlack: "#7F8C8D" + brightRed: "#E74C3C" + brightGreen: "#2ECC71" + brightYellow: "#E67E22" + brightBlue: "#3498DB" + brightMagenta: "#9B59B6" + brightCyan: "#1ABC9C" + brightWhite: "#F8F8FF" +meta: + mode: "dark" + accent: "orange" + hue: 283 + contrast: + fg: 102 + black: 0 + red: 24.2 + green: 45.8 + yellow: 32.3 + blue: 30.7 + magenta: 21.4 + cyan: 40.5 + white: 102 + brightBlack: 37.7 + brightRed: 35.5 + brightGreen: 60.1 + brightYellow: 46.1 + brightBlue: 41.9 + brightMagenta: 28 + brightCyan: 53.5 + brightWhite: 102 diff --git a/themes/starboy-theme.yaml b/themes/starboy-theme.yaml new file mode 100644 index 00000000..2fe96576 --- /dev/null +++ b/themes/starboy-theme.yaml @@ -0,0 +1,49 @@ +name: "Starboy Theme" +source: + marketplace_id: "badrouu-laabed.starboy-theme" + version: "1.5.0" + installs: 3210 + author: "badrouu-laabed" + repo: "https://github.com/Badrouu17/starboy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=badrouu-laabed.starboy-theme" +colors: + bg: "#26283B" + fg: "#C8D3F5" + black: "#000000" + red: "#FF757F" + green: "#C3E88D" + yellow: "#FFC777" + blue: "#82AAFF" + magenta: "#FCA7EA" + cyan: "#86E1FC" + white: "#C8D3F5" + brightBlack: "#828BB8" + brightRed: "#FF757F" + brightGreen: "#C3E88D" + brightYellow: "#FFC777" + brightBlue: "#82AAFF" + brightMagenta: "#FCA7EA" + brightCyan: "#86E1FC" + brightWhite: "#C8D3F5" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 76.5 + black: 0 + red: 48.2 + green: 81.5 + yellow: 74.8 + blue: 53.2 + magenta: 66.6 + cyan: 77 + white: 76.5 + brightBlack: 37.5 + brightRed: 48.2 + brightGreen: 81.5 + brightYellow: 74.8 + brightBlue: 53.2 + brightMagenta: 66.6 + brightCyan: 77 + brightWhite: 76.5 diff --git a/themes/starburst-dark.yaml b/themes/starburst-dark.yaml new file mode 100644 index 00000000..11f7c755 --- /dev/null +++ b/themes/starburst-dark.yaml @@ -0,0 +1,49 @@ +name: "Starburst Dark" +source: + marketplace_id: "psanchez.starburst-theme" + version: "0.2.1" + installs: 333 + author: "Pavel Sanchez" + repo: "https://github.com/PaleBluDot/starburst-theme" + url: "https://marketplace.visualstudio.com/items?itemName=psanchez.starburst-theme" +colors: + bg: "#0D0D0D" + fg: "#E6E6E6" + black: "#E6E6E6" + red: "#DD656D" + green: "#4EBD8F" + yellow: "#D9DF34" + blue: "#0076A9" + magenta: "#D37FAC" + cyan: "#5FB3B3" + white: "#E6E6E6" + brightBlack: "#E6E6E6" + brightRed: "#DD656D" + brightGreen: "#4EBD8F" + brightYellow: "#D9DF34" + brightBlue: "#0076A9" + brightMagenta: "#D37FAC" + brightCyan: "#5FB3B3" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 91.4 + black: 91.4 + red: 40.4 + green: 56.1 + yellow: 82.1 + blue: 27.2 + magenta: 47.3 + cyan: 53.8 + white: 91.4 + brightBlack: 91.4 + brightRed: 40.4 + brightGreen: 56.1 + brightYellow: 82.1 + brightBlue: 27.2 + brightMagenta: 47.3 + brightCyan: 53.8 + brightWhite: 91.4 diff --git a/themes/starfield.yaml b/themes/starfield.yaml new file mode 100644 index 00000000..e7017847 --- /dev/null +++ b/themes/starfield.yaml @@ -0,0 +1,49 @@ +name: "Starfield" +source: + marketplace_id: "steffenboe.starfield-color-theme" + version: "1.0.0" + installs: 152 + author: "steffenboe" + repo: "https://github.com/steffenb91/starfield-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=steffenboe.starfield-color-theme" +colors: + bg: "#253646" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 247 + contrast: + fg: 74.2 + black: 0 + red: 21.4 + green: 47.7 + yellow: 80.3 + blue: 22.2 + magenta: 24.5 + cyan: 42.3 + white: 84.8 + brightBlack: 16.8 + brightRed: 33.3 + brightGreen: 58.3 + brightYellow: 90.4 + brightBlue: 34.7 + brightMagenta: 40.1 + brightCyan: 50.1 + brightWhite: 84.8 diff --git a/themes/stark-contrast.yaml b/themes/stark-contrast.yaml new file mode 100644 index 00000000..abd71e83 --- /dev/null +++ b/themes/stark-contrast.yaml @@ -0,0 +1,49 @@ +name: "stark-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0B0A0A" + fg: "#DEDEDE" + black: "#181616" + red: "#BA0E2E" + green: "#FFBB29" + yellow: "#F03113" + blue: "#F03113" + magenta: "#AAAAAA" + cyan: "#FFBB29" + white: "#EBEBEB" + brightBlack: "#403B3B" + brightRed: "#F03E5F" + brightGreen: "#FFDB8F" + brightYellow: "#F68573" + brightBlue: "#F68573" + brightMagenta: "#DDDDDD" + brightCyan: "#FFDB8F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.5 + black: 0 + red: 21.3 + green: 72.7 + yellow: 35.5 + blue: 35.5 + magenta: 56.1 + cyan: 72.7 + white: 94.7 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 87.3 + brightYellow: 53.8 + brightBlue: 53.8 + brightMagenta: 85.9 + brightCyan: 87.3 + brightWhite: 107.7 diff --git a/themes/stark-dark.yaml b/themes/stark-dark.yaml new file mode 100644 index 00000000..b88d50d0 --- /dev/null +++ b/themes/stark-dark.yaml @@ -0,0 +1,49 @@ +name: "Stark Dark" +source: + marketplace_id: "MTCC.stark-theme" + version: "1.0.2" + installs: 64 + author: "MTCC" + repo: "https://github.com/minhtrungcc/stark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MTCC.stark-theme" +colors: + bg: "#22201C" + fg: "#E8E4DF" + black: "#22201C" + red: "#E07A6D" + green: "#7CC070" + yellow: "#D8B85A" + blue: "#7A9CE0" + magenta: "#B890D8" + cyan: "#68C0C0" + white: "#E8E4DF" + brightBlack: "#706A62" + brightRed: "#F0A090" + brightGreen: "#A8DCA0" + brightYellow: "#F0D888" + brightBlue: "#A8C4F0" + brightMagenta: "#D8B8F0" + brightCyan: "#98E0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 88.6 + black: 0 + red: 44.3 + green: 57.3 + yellow: 63.6 + blue: 46.8 + magenta: 48.8 + cyan: 58.6 + white: 88.6 + brightBlack: 22.9 + brightRed: 59.9 + brightGreen: 75.1 + brightYellow: 81.5 + brightBlue: 67.8 + brightMagenta: 68.8 + brightCyan: 78 + brightWhite: 105.7 diff --git a/themes/stark-light.yaml b/themes/stark-light.yaml new file mode 100644 index 00000000..c87242e8 --- /dev/null +++ b/themes/stark-light.yaml @@ -0,0 +1,49 @@ +name: "Stark Light" +source: + marketplace_id: "MTCC.stark-theme" + version: "1.0.2" + installs: 64 + author: "MTCC" + repo: "https://github.com/minhtrungcc/stark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MTCC.stark-theme" +colors: + bg: "#FDFCFA" + fg: "#3D3A36" + black: "#3D3A36" + red: "#C75A4D" + green: "#5A9A52" + yellow: "#B8943A" + blue: "#5A7CC7" + magenta: "#9B6BB8" + cyan: "#4A9A9A" + white: "#FDFCFA" + brightBlack: "#6B6660" + brightRed: "#E8A59C" + brightGreen: "#A8D4A2" + brightYellow: "#E5CF8A" + brightBlue: "#A5BBE8" + brightMagenta: "#D4B8E8" + brightCyan: "#98D4D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 94.4 + black: 94.4 + red: 66.6 + green: 59.6 + yellow: 52.9 + blue: 66.1 + magenta: 65.8 + cyan: 58.3 + white: 0 + brightBlack: 76.7 + brightRed: 37.8 + brightGreen: 27.5 + brightYellow: 23.2 + brightBlue: 35.2 + brightMagenta: 30.9 + brightCyan: 27.1 + brightWhite: 0 diff --git a/themes/stark.yaml b/themes/stark.yaml new file mode 100644 index 00000000..89d32e1b --- /dev/null +++ b/themes/stark.yaml @@ -0,0 +1,49 @@ +name: "stark" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2E2C2B" + fg: "#DEDEDE" + black: "#3B3937" + red: "#BA0E2E" + green: "#FFBB29" + yellow: "#F03113" + blue: "#F03113" + magenta: "#AAAAAA" + cyan: "#FFBB29" + white: "#EBEBEB" + brightBlack: "#635E5C" + brightRed: "#F03E5F" + brightGreen: "#FFDB8F" + brightYellow: "#F68573" + brightBlue: "#F68573" + brightMagenta: "#DDDDDD" + brightCyan: "#FFDB8F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 82.3 + black: 0 + red: 17.2 + green: 68.6 + yellow: 31.3 + blue: 31.3 + magenta: 51.9 + cyan: 68.6 + white: 90.5 + brightBlack: 15.8 + brightRed: 33.5 + brightGreen: 83.1 + brightYellow: 49.6 + brightBlue: 49.6 + brightMagenta: 81.7 + brightCyan: 83.1 + brightWhite: 103.6 diff --git a/themes/starlight-daybreak.yaml b/themes/starlight-daybreak.yaml new file mode 100644 index 00000000..152e7839 --- /dev/null +++ b/themes/starlight-daybreak.yaml @@ -0,0 +1,49 @@ +name: "Starlight - Daybreak" +source: + marketplace_id: "RussellOje.ruxy1212-starlight-theme" + version: "2.1.5" + installs: 72 + author: "Russell Oje" + repo: "https://github.com/ruxy1212/starlight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" +colors: + bg: "#FFF5E6" + fg: "#4A3B2F" + black: "#FFF0D4" + red: "#C0392B" + green: "#27AE60" + yellow: "#2ECC71" + blue: "#E67E22" + magenta: "#8E44AD" + cyan: "#3498DB" + white: "#4A3B2F" + brightBlack: "#8D7A6B" + brightRed: "#C0392B" + brightGreen: "#27AE60" + brightYellow: "#2ECC71" + brightBlue: "#E67E22" + brightMagenta: "#8E44AD" + brightCyan: "#3498DB" + brightWhite: "#000000" +meta: + mode: "light" + accent: "teal" + hue: null + contrast: + fg: 89.6 + black: 0 + red: 70.7 + green: 49.2 + yellow: 35.3 + blue: 48.8 + magenta: 73.5 + cyan: 53 + white: 89.6 + brightBlack: 62.8 + brightRed: 70.7 + brightGreen: 49.2 + brightYellow: 35.3 + brightBlue: 48.8 + brightMagenta: 73.5 + brightCyan: 53 + brightWhite: 100.8 diff --git a/themes/starlight-light.yaml b/themes/starlight-light.yaml new file mode 100644 index 00000000..7a8839fd --- /dev/null +++ b/themes/starlight-light.yaml @@ -0,0 +1,49 @@ +name: "Starlight - Light" +source: + marketplace_id: "RussellOje.ruxy1212-starlight-theme" + version: "2.1.5" + installs: 72 + author: "Russell Oje" + repo: "https://github.com/ruxy1212/starlight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" +colors: + bg: "#F5F7FA" + fg: "#333333" + black: "#E0E7F0" + red: "#D73A49" + green: "#22863A" + yellow: "#F4A261" + blue: "#007ACC" + magenta: "#D81B60" + cyan: "#17A2B8" + white: "#333333" + brightBlack: "#6A737D" + brightRed: "#D73A49" + brightGreen: "#22863A" + brightYellow: "#F4A261" + brightBlue: "#007ACC" + brightMagenta: "#D81B60" + brightCyan: "#17A2B8" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 93.8 + black: 0 + red: 65.5 + green: 66.8 + yellow: 35.1 + blue: 65.7 + magenta: 67.3 + cyan: 51.9 + white: 93.8 + brightBlack: 68.5 + brightRed: 65.5 + brightGreen: 66.8 + brightYellow: 35.1 + brightBlue: 65.7 + brightMagenta: 67.3 + brightCyan: 51.9 + brightWhite: 101.1 diff --git a/themes/starlight-midnight.yaml b/themes/starlight-midnight.yaml new file mode 100644 index 00000000..35984705 --- /dev/null +++ b/themes/starlight-midnight.yaml @@ -0,0 +1,49 @@ +name: "Starlight - Midnight" +source: + marketplace_id: "RussellOje.ruxy1212-starlight-theme" + version: "2.1.5" + installs: 72 + author: "Russell Oje" + repo: "https://github.com/ruxy1212/starlight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" +colors: + bg: "#1E272C" + fg: "#D8DEE9" + black: "#2E3B43" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#D8DEE9" + brightBlack: "#616E88" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 232 + contrast: + fg: 83.3 + black: 0 + red: 30.9 + green: 59.6 + yellow: 74.4 + blue: 46.6 + magenta: 44.4 + cyan: 60.6 + white: 83.3 + brightBlack: 23.3 + brightRed: 30.9 + brightGreen: 59.6 + brightYellow: 74.4 + brightBlue: 46.6 + brightMagenta: 44.4 + brightCyan: 60.6 + brightWhite: 94.2 diff --git a/themes/starlight-obsidian.yaml b/themes/starlight-obsidian.yaml new file mode 100644 index 00000000..05b073c7 --- /dev/null +++ b/themes/starlight-obsidian.yaml @@ -0,0 +1,49 @@ +name: "Starlight - Obsidian" +source: + marketplace_id: "RussellOje.ruxy1212-starlight-theme" + version: "2.1.5" + installs: 72 + author: "Russell Oje" + repo: "https://github.com/ruxy1212/starlight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" +colors: + bg: "#282C34" + fg: "#E0E0E0" + black: "#353B45" + red: "#E06C75" + green: "#98C379" + yellow: "#D19A66" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#E0E0E0" + brightBlack: "#5C6370" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#D19A66" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 83.7 + black: 0 + red: 38.9 + green: 59.1 + yellow: 49.5 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 83.7 + brightBlack: 17.4 + brightRed: 38.9 + brightGreen: 59.1 + brightYellow: 49.5 + brightBlue: 51.5 + brightMagenta: 41.9 + brightCyan: 51.4 + brightWhite: 103.7 diff --git a/themes/starlight-soft-glow.yaml b/themes/starlight-soft-glow.yaml new file mode 100644 index 00000000..df2aa701 --- /dev/null +++ b/themes/starlight-soft-glow.yaml @@ -0,0 +1,49 @@ +name: "Starlight - Soft Glow" +source: + marketplace_id: "RussellOje.ruxy1212-starlight-theme" + version: "2.1.5" + installs: 72 + author: "Russell Oje" + repo: "https://github.com/ruxy1212/starlight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" +colors: + bg: "#F0F4F8" + fg: "#2F3640" + black: "#E0F0EA" + red: "#EE5253" + green: "#10AC84" + yellow: "#FECA57" + blue: "#00B894" + magenta: "#FF6B6B" + cyan: "#54A0FF" + white: "#2F3640" + brightBlack: "#7F8C8D" + brightRed: "#EE5253" + brightGreen: "#10AC84" + brightYellow: "#FECA57" + brightBlue: "#00B894" + brightMagenta: "#FF6B6B" + brightCyan: "#54A0FF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 91 + black: 0 + red: 54.8 + green: 47.8 + yellow: 17.2 + blue: 42.1 + magenta: 45.9 + cyan: 44.8 + white: 91 + brightBlack: 55.5 + brightRed: 54.8 + brightGreen: 47.8 + brightYellow: 17.2 + brightBlue: 42.1 + brightMagenta: 45.9 + brightCyan: 44.8 + brightWhite: 99.2 diff --git a/themes/starlight.yaml b/themes/starlight.yaml new file mode 100644 index 00000000..fa3edbb8 --- /dev/null +++ b/themes/starlight.yaml @@ -0,0 +1,49 @@ +name: "Starlight" +source: + marketplace_id: "D3W10.starlight" + version: "0.1.4" + installs: 515 + author: "D3W10" + repo: "https://github.com/D3W10/StarLight" + url: "https://marketplace.visualstudio.com/items?itemName=D3W10.starlight" +colors: + bg: "#170A1F" + fg: "#E5E5EA" + black: "#8E8E93" + red: "#FF3B30" + green: "#34C759" + yellow: "#FFCC00" + blue: "#007AFF" + magenta: "#AF52DE" + cyan: "#5AC8FA" + white: "#C7C7CC" + brightBlack: "#8E8E93" + brightRed: "#FF3B30" + brightGreen: "#34C759" + brightYellow: "#FFCC00" + brightBlue: "#007AFF" + brightMagenta: "#AF52DE" + brightCyan: "#5AC8FA" + brightWhite: "#E5E5EA" +meta: + mode: "dark" + accent: "orange" + hue: 311 + contrast: + fg: 90.8 + black: 41.3 + red: 39.9 + green: 58.5 + yellow: 79.1 + blue: 34.7 + magenta: 33.4 + cyan: 66.2 + white: 72.4 + brightBlack: 41.3 + brightRed: 39.9 + brightGreen: 58.5 + brightYellow: 79.1 + brightBlue: 34.7 + brightMagenta: 33.4 + brightCyan: 66.2 + brightWhite: 90.8 diff --git a/themes/starry-night.yaml b/themes/starry-night.yaml new file mode 100644 index 00000000..663c52af --- /dev/null +++ b/themes/starry-night.yaml @@ -0,0 +1,49 @@ +name: "Starry Night" +source: + marketplace_id: "xynny.starry-night" + version: "1.0.0" + installs: 123 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.starry-night" +colors: + bg: "#191A28" + fg: "#BB82FF" + black: "#666666" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#828282" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 281 + contrast: + fg: 48.1 + black: 21.6 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.5 + brightBlack: 34.2 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/starry-pillar.yaml b/themes/starry-pillar.yaml new file mode 100644 index 00000000..f8cea47c --- /dev/null +++ b/themes/starry-pillar.yaml @@ -0,0 +1,49 @@ +name: "Starry Pillar" +source: + marketplace_id: "ekinyuksel12.stary-pillar-theme" + version: "1.3.1" + installs: 2 + author: "Toprak Ekin Yüksel" + repo: "https://github.com/ekinyuksel12/stary-pillar-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ekinyuksel12.stary-pillar-theme" +colors: + bg: "#101419" + fg: "#D4D4D4" + black: "#000000" + red: "#A31414" + green: "#5A8F00" + yellow: "#CDB019" + blue: "#2472C8" + magenta: "#B41EB4" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF1010" + brightGreen: "#81CC00" + brightYellow: "#FFFF1A" + brightBlue: "#3B8EEA" + brightMagenta: "#F77CF7" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 254 + contrast: + fg: 79.8 + black: 0 + red: 15.9 + green: 34.7 + yellow: 59.7 + blue: 27.7 + magenta: 25 + cyan: 47.9 + white: 90.3 + brightBlack: 22.3 + brightRed: 37 + brightGreen: 63.6 + brightYellow: 102 + brightBlue: 40.3 + brightMagenta: 56.8 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/startlite.yaml b/themes/startlite.yaml new file mode 100644 index 00000000..4e30eb53 --- /dev/null +++ b/themes/startlite.yaml @@ -0,0 +1,49 @@ +name: "Startlite" +source: + marketplace_id: "Yummygum.starlite" + version: "1.0.3" + installs: 0 + author: "Yummygum" + repo: "https://github.com/Yummygum/Starlite" + url: "https://marketplace.visualstudio.com/items?itemName=Yummygum.starlite" +colors: + bg: "#0F1819" + fg: "#92A7C4" + black: "#000000" + red: "#B62D65" + green: "#48C498" + yellow: "#E5E510" + blue: "#008CF0" + magenta: "#7163D7" + cyan: "#42DEEA" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#B62D65" + brightGreen: "#48C498" + brightYellow: "#F5F543" + brightBlue: "#008CF0" + brightMagenta: "#FE60A1" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: 205 + contrast: + fg: 52.7 + black: 0 + red: 22.5 + green: 58.6 + yellow: 85.7 + blue: 39 + magenta: 28.4 + cyan: 74.2 + white: 90.1 + brightBlack: 22.1 + brightRed: 22.5 + brightGreen: 58.6 + brightYellow: 95.7 + brightBlue: 39 + brightMagenta: 47.3 + brightCyan: 55.4 + brightWhite: 90.1 diff --git a/themes/startrail.yaml b/themes/startrail.yaml new file mode 100644 index 00000000..32fdbcfc --- /dev/null +++ b/themes/startrail.yaml @@ -0,0 +1,49 @@ +name: "Startrail" +source: + marketplace_id: "gantoreno.startrail" + version: "0.1.1" + installs: 1022 + author: "Gabriel Moreno" + repo: "https://github.com/gantoreno/vscode-startrail" + url: "https://marketplace.visualstudio.com/items?itemName=gantoreno.startrail" +colors: + bg: "#121419" + fg: "#B5B4C9" + black: "#21242C" + red: "#CF8164" + green: "#76A065" + yellow: "#AB924C" + blue: "#8296B0" + magenta: "#A18DAF" + cyan: "#659EA2" + white: "#B5B4C9" + brightBlack: "#32343E" + brightRed: "#FE9F7C" + brightGreen: "#92C47E" + brightYellow: "#D2B45F" + brightBlue: "#A0B9D8" + brightMagenta: "#C6AED7" + brightCyan: "#7DC2C7" + brightWhite: "#F0ECFE" +meta: + mode: "dark" + accent: "orange" + hue: 268 + contrast: + fg: 62.1 + black: 0 + red: 44.5 + green: 44.3 + yellow: 44.1 + blue: 44 + magenta: 44 + cyan: 44.2 + white: 62.1 + brightBlack: 0 + brightRed: 63 + brightGreen: 62.6 + brightYellow: 62.7 + brightBlue: 62.5 + brightMagenta: 62.6 + brightCyan: 62.6 + brightWhite: 96.2 diff --git a/themes/stasis-contrast.yaml b/themes/stasis-contrast.yaml new file mode 100644 index 00000000..033c79ee --- /dev/null +++ b/themes/stasis-contrast.yaml @@ -0,0 +1,49 @@ +name: "stasis-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0E0D0F" + fg: "#BBB1C9" + black: "#1B191D" + red: "#BA0E2E" + green: "#FC814A" + yellow: "#7C617C" + blue: "#BFBFBF" + magenta: "#FC814A" + cyan: "#BFBFBF" + white: "#C8C0D3" + brightBlack: "#413C46" + brightRed: "#F03E5F" + brightGreen: "#FEC7AE" + brightYellow: "#AD96AD" + brightBlue: "#F2F2F2" + brightMagenta: "#FEC7AE" + brightCyan: "#F2F2F2" + brightWhite: "#F0EDF3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 62.1 + black: 0 + red: 21.2 + green: 53 + yellow: 24.3 + blue: 67.8 + magenta: 53 + cyan: 67.8 + white: 70.2 + brightBlack: 7.5 + brightRed: 37.5 + brightGreen: 79.5 + brightYellow: 49 + brightBlue: 99.1 + brightMagenta: 79.5 + brightCyan: 99.1 + brightWhite: 96.5 diff --git a/themes/stasis-light.yaml b/themes/stasis-light.yaml new file mode 100644 index 00000000..3bf960ef --- /dev/null +++ b/themes/stasis-light.yaml @@ -0,0 +1,49 @@ +name: "stasis-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#605A68" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#FC814A" + yellow: "#7C617C" + blue: "#777777" + magenta: "#FC814A" + cyan: "#777777" + white: "#6D6676" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FEC7AE" + brightYellow: "#AD96AD" + brightBlue: "#AAAAAA" + brightMagenta: "#FEC7AE" + brightCyan: "#AAAAAA" + brightWhite: "#938C9C" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 82.9 + black: 0 + red: 80.3 + green: 48.7 + yellow: 77.1 + blue: 71.1 + magenta: 48.7 + cyan: 71.1 + white: 77.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 23.4 + brightYellow: 52.6 + brightBlue: 45.8 + brightMagenta: 23.4 + brightCyan: 45.8 + brightWhite: 59.8 diff --git a/themes/stasis.yaml b/themes/stasis.yaml new file mode 100644 index 00000000..8e254126 --- /dev/null +++ b/themes/stasis.yaml @@ -0,0 +1,49 @@ +name: "stasis" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2F2C33" + fg: "#BBB1C9" + black: "#3C3841" + red: "#BA0E2E" + green: "#FC814A" + yellow: "#7C617C" + blue: "#BFBFBF" + magenta: "#FC814A" + cyan: "#BFBFBF" + white: "#C8C0D3" + brightBlack: "#615B6A" + brightRed: "#F03E5F" + brightGreen: "#FEC7AE" + brightYellow: "#AD96AD" + brightBlue: "#F2F2F2" + brightMagenta: "#FEC7AE" + brightCyan: "#F2F2F2" + brightWhite: "#F0EDF3" +meta: + mode: "dark" + accent: "orange" + hue: 305 + contrast: + fg: 57.9 + black: 0 + red: 17 + green: 48.8 + yellow: 20.1 + blue: 63.5 + magenta: 48.8 + cyan: 63.5 + white: 66 + brightBlack: 15 + brightRed: 33.3 + brightGreen: 75.3 + brightYellow: 44.8 + brightBlue: 94.8 + brightMagenta: 75.3 + brightCyan: 94.8 + brightWhite: 92.3 diff --git a/themes/stealth-contrast.yaml b/themes/stealth-contrast.yaml new file mode 100644 index 00000000..a58928bf --- /dev/null +++ b/themes/stealth-contrast.yaml @@ -0,0 +1,49 @@ +name: "stealth-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0D0E0F" + fg: "#5F656D" + black: "#191B1D" + red: "#BA0E2E" + green: "#3C4044" + yellow: "#474C51" + blue: "#545A60" + magenta: "#474C51" + cyan: "#3C4044" + white: "#6B727B" + brightBlack: "#3C4146" + brightRed: "#F03E5F" + brightGreen: "#6C737A" + brightYellow: "#777F87" + brightBlue: "#858D95" + brightMagenta: "#777F87" + brightCyan: "#6C737A" + brightWhite: "#9298A0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 22 + black: 0 + red: 21.2 + green: 8 + yellow: 12.2 + blue: 17.5 + magenta: 12.2 + cyan: 8 + white: 27.6 + brightBlack: 8.3 + brightRed: 37.5 + brightGreen: 28 + brightYellow: 33.5 + brightBlue: 40.3 + brightMagenta: 33.5 + brightCyan: 28 + brightWhite: 46 diff --git a/themes/stealth-light.yaml b/themes/stealth-light.yaml new file mode 100644 index 00000000..1868e89c --- /dev/null +++ b/themes/stealth-light.yaml @@ -0,0 +1,49 @@ +name: "stealth-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#CCCCCC" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#BBBBBB" + yellow: "#DDDDDD" + blue: "#AAAAAA" + magenta: "#EEEEEE" + cyan: "#BBBBBB" + white: "#D9D9D9" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#EEEEEE" + brightYellow: "#FFFFFF" + brightBlue: "#DDDDDD" + brightMagenta: "#FFFFFF" + brightCyan: "#EEEEEE" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 27.3 + black: 0 + red: 80.3 + green: 36.7 + yellow: 17.6 + blue: 45.8 + magenta: 7.6 + cyan: 36.7 + white: 19.9 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 7.6 + brightYellow: 0 + brightBlue: 17.6 + brightMagenta: 0 + brightCyan: 7.6 + brightWhite: 0 diff --git a/themes/stealth.yaml b/themes/stealth.yaml new file mode 100644 index 00000000..b8797780 --- /dev/null +++ b/themes/stealth.yaml @@ -0,0 +1,49 @@ +name: "stealth" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#27292B" + fg: "#5F656D" + black: "#333638" + red: "#BA0E2E" + green: "#3C4044" + yellow: "#474C51" + blue: "#545A60" + magenta: "#474C51" + cyan: "#3C4044" + white: "#6B727B" + brightBlack: "#575C60" + brightRed: "#F03E5F" + brightGreen: "#6C737A" + brightYellow: "#777F87" + brightBlue: "#858D95" + brightMagenta: "#777F87" + brightCyan: "#6C737A" + brightWhite: "#9298A0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 18.8 + black: 0 + red: 17.9 + green: 0 + yellow: 8.9 + blue: 14.2 + magenta: 8.9 + cyan: 0 + white: 24.4 + brightBlack: 15 + brightRed: 34.2 + brightGreen: 24.7 + brightYellow: 30.2 + brightBlue: 37 + brightMagenta: 30.2 + brightCyan: 24.7 + brightWhite: 42.8 diff --git a/themes/steel-blue-dark.yaml b/themes/steel-blue-dark.yaml new file mode 100644 index 00000000..e0fb9fdd --- /dev/null +++ b/themes/steel-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Steel Blue Dark" +source: + marketplace_id: "rmsyntax.blue-code" + version: "0.0.3" + installs: 34 + author: "rmsyntax" + repo: "https://github.com/ROMANSYNTAX32/low-blue-code" + url: "https://marketplace.visualstudio.com/items?itemName=rmsyntax.blue-code" +colors: + bg: "#24242A" + fg: "#727282" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 26 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.8 + blue: 25.6 + magenta: 27.9 + cyan: 45.7 + white: 88.2 + brightBlack: 20.2 + brightRed: 36.7 + brightGreen: 61.7 + brightYellow: 93.8 + brightBlue: 38.2 + brightMagenta: 43.6 + brightCyan: 53.6 + brightWhite: 88.2 diff --git a/themes/steel-phantom.yaml b/themes/steel-phantom.yaml new file mode 100644 index 00000000..e8724ab8 --- /dev/null +++ b/themes/steel-phantom.yaml @@ -0,0 +1,49 @@ +name: "Steel Phantom" +source: + marketplace_id: "DavidMass.steel-phantom" + version: "0.0.3" + installs: 253 + author: "David Mass" + repo: "https://github.com/davidcmass/steel-phantom-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMass.steel-phantom" +colors: + bg: "#333338" + fg: "#FFFFFF" + black: "#000000" + red: "#FF5E5E" + green: "#32E29F" + yellow: "#FFFF50" + blue: "#5AABFF" + magenta: "#FF6AFF" + cyan: "#28B6D9" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF9F9F" + brightGreen: "#8DFFD1" + brightYellow: "#FFFF81" + brightBlue: "#B1D7FF" + brightMagenta: "#FF9AFF" + brightCyan: "#8DE9FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.9 + black: 0 + red: 40.2 + green: 67.7 + yellow: 97.1 + blue: 48.8 + magenta: 49.7 + cyan: 49.5 + white: 85.1 + brightBlack: 17.1 + brightRed: 58.9 + brightGreen: 88.1 + brightYellow: 97.8 + brightBlue: 74 + brightMagenta: 61.9 + brightCyan: 79.3 + brightWhite: 85.1 diff --git a/themes/steffula.yaml b/themes/steffula.yaml new file mode 100644 index 00000000..2bffcf88 --- /dev/null +++ b/themes/steffula.yaml @@ -0,0 +1,49 @@ +name: "Steffula" +source: + marketplace_id: "steffo.steffula-code" + version: "0.15.2" + installs: 330 + author: "Stefano Pigozzi" + repo: "https://forge.steffo.eu/steffo/steffula-code" + url: "https://marketplace.visualstudio.com/items?itemName=steffo.steffula-code" +colors: + bg: "#2B2B2B" + fg: "#A9B7C6" + black: "#000000" + red: "#F0524F" + green: "#5C962C" + yellow: "#A68A0D" + blue: "#3993D4" + magenta: "#A771BF" + cyan: "#00A3A3" + white: "#808080" + brightBlack: "#595959" + brightRed: "#FF4050" + brightGreen: "#4FC414" + brightYellow: "#E5BF00" + brightBlue: "#10B0FF" + brightMagenta: "#ED7EED" + brightCyan: "#00E5E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 58.5 + black: 0 + red: 36.3 + green: 34.4 + yellow: 36.9 + blue: 37.3 + magenta: 33.7 + cyan: 40.4 + white: 30.7 + brightBlack: 13.7 + brightRed: 37.3 + brightGreen: 53.8 + brightYellow: 66 + brightBlue: 51 + brightMagenta: 51.5 + brightCyan: 73.6 + brightWhite: 103.8 diff --git a/themes/stella-high-contrast.yaml b/themes/stella-high-contrast.yaml new file mode 100644 index 00000000..eddccd72 --- /dev/null +++ b/themes/stella-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Stella (High Contrast)" +source: + marketplace_id: "4S1ght.stella" + version: "1.3.6" + installs: 600 + author: "4S1ght" + repo: "https://github.com/4S1ght/Stella" + url: "https://marketplace.visualstudio.com/items?itemName=4S1ght.stella" +colors: + bg: "#18171A" + fg: "#A09891" + black: "#3F3C37" + red: "#D13327" + green: "#66AF32" + yellow: "#D89A2F" + blue: "#298FFC" + magenta: "#CC1FAC" + cyan: "#18CA98" + white: "#C4BCAF" + brightBlack: "#6A665E" + brightRed: "#FF6B6B" + brightGreen: "#97FF4D" + brightYellow: "#FFC45E" + brightBlue: "#78B9FF" + brightMagenta: "#F571DD" + brightCyan: "#62FFD3" + brightWhite: "#F1EADD" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 46.3 + black: 0 + red: 27.7 + green: 48.5 + yellow: 53 + blue: 41.2 + magenta: 29 + cyan: 60.4 + white: 65.7 + brightBlack: 22.1 + brightRed: 48 + brightGreen: 90.5 + brightYellow: 75.8 + brightBlue: 61.2 + brightMagenta: 51.8 + brightCyan: 90.7 + brightWhite: 93.5 diff --git a/themes/stella-theme.yaml b/themes/stella-theme.yaml new file mode 100644 index 00000000..312cd3a6 --- /dev/null +++ b/themes/stella-theme.yaml @@ -0,0 +1,49 @@ +name: "Stella Theme" +source: + marketplace_id: "ShapeMess.stella-theme" + version: "0.0.6" + installs: 450 + author: "ShapeMess" + repo: "https://github.com/ShapeMess/Stella-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ShapeMess.stella-theme" +colors: + bg: "#252527" + fg: "#BEBEBE" + black: "#000000" + red: "#C54040" + green: "#4DA54A" + yellow: "#D4B038" + blue: "#4261B8" + magenta: "#A13E80" + cyan: "#389994" + white: "#D1D1D1" + brightBlack: "#5E5E5E" + brightRed: "#E06868" + brightGreen: "#72B96F" + brightYellow: "#DBC169" + brightBlue: "#7D90C7" + brightMagenta: "#BB73A3" + brightCyan: "#54C2BC" + brightWhite: "#E9E9E9" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 64.5 + black: 0 + red: 25.1 + green: 41.3 + yellow: 58.7 + blue: 20.2 + magenta: 19.7 + cyan: 37.4 + white: 75.7 + brightBlack: 16.8 + brightRed: 38.9 + brightGreen: 52.7 + brightYellow: 67.2 + brightBlue: 40.4 + brightMagenta: 37 + brightCyan: 57.6 + brightWhite: 90.6 diff --git a/themes/stella.yaml b/themes/stella.yaml new file mode 100644 index 00000000..2dae4fb3 --- /dev/null +++ b/themes/stella.yaml @@ -0,0 +1,49 @@ +name: "Stella" +source: + marketplace_id: "4S1ght.stella" + version: "1.3.6" + installs: 600 + author: "4S1ght" + repo: "https://github.com/4S1ght/Stella" + url: "https://marketplace.visualstudio.com/items?itemName=4S1ght.stella" +colors: + bg: "#222124" + fg: "#A09891" + black: "#3F3C37" + red: "#D53A2F" + green: "#73B941" + yellow: "#DDA94F" + blue: "#449AF6" + magenta: "#C428A8" + cyan: "#23B68C" + white: "#C4BCAF" + brightBlack: "#6A665E" + brightRed: "#FF7F7F" + brightGreen: "#A6F170" + brightYellow: "#FFCB71" + brightBlue: "#90C6FF" + brightMagenta: "#DF6CCA" + brightCyan: "#60E7C1" + brightWhite: "#F1EADD" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 45 + black: 0 + red: 28.1 + green: 52.6 + yellow: 58.3 + blue: 44.3 + magenta: 26.4 + cyan: 49.7 + white: 64.5 + brightBlack: 20.8 + brightRed: 52.1 + brightGreen: 83.8 + brightYellow: 77.7 + brightBlue: 67.2 + brightMagenta: 44.1 + brightCyan: 76.4 + brightWhite: 92.3 diff --git a/themes/stellar-void.yaml b/themes/stellar-void.yaml new file mode 100644 index 00000000..499ceaaa --- /dev/null +++ b/themes/stellar-void.yaml @@ -0,0 +1,49 @@ +name: "Stellar Void" +source: + marketplace_id: "ryno9341.stellar-void" + version: "0.1.0" + installs: 40 + author: "Ryno9341" + repo: "https://github.com/ryno9341/stellar-void" + url: "https://marketplace.visualstudio.com/items?itemName=ryno9341.stellar-void" +colors: + bg: "#10101A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 107.4 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/stellar.yaml b/themes/stellar.yaml new file mode 100644 index 00000000..7b895650 --- /dev/null +++ b/themes/stellar.yaml @@ -0,0 +1,49 @@ +name: "Stellar" +source: + marketplace_id: "StarsTracker.stellar" + version: "1.0.0" + installs: 243 + author: "Stars Tracker" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=StarsTracker.stellar" +colors: + bg: "#1D1D1D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.8 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/stereo-theme.yaml b/themes/stereo-theme.yaml new file mode 100644 index 00000000..d4cd1c09 --- /dev/null +++ b/themes/stereo-theme.yaml @@ -0,0 +1,49 @@ +name: "Stereo Theme" +source: + marketplace_id: "FasterMars.fastermars-stereo-theme" + version: "1.0.0" + installs: 151 + author: "FasterMars" + repo: "https://github.com/FasterMars/Stereo-Theme-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=FasterMars.fastermars-stereo-theme" +colors: + bg: "#271D43" + fg: "#ECDEDE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 293 + contrast: + fg: 85.8 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 105.1 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.2 + brightMagenta: 43.6 + brightCyan: 53.6 + brightWhite: 105.1 diff --git a/themes/sto-classic.yaml b/themes/sto-classic.yaml new file mode 100644 index 00000000..8b14f166 --- /dev/null +++ b/themes/sto-classic.yaml @@ -0,0 +1,49 @@ +name: "Sto Classic" +source: + marketplace_id: "NSMNIA.sto-theme" + version: "2.0.1" + installs: 368 + author: "NSMNIA" + repo: "https://github.com/NSMNIA/sto-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NSMNIA.sto-theme" +colors: + bg: "#000000" + fg: "#ECF9FF" + black: "#000000" + red: "#CB2D25" + green: "#4AD962" + yellow: "#14A3FF" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#CB2D25" + brightGreen: "#4AD962" + brightYellow: "#14A3FF" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 102.4 + black: 0 + red: 26.8 + green: 68.4 + yellow: 49.8 + blue: 39.8 + magenta: 65.3 + cyan: 93.8 + white: 107.9 + brightBlack: 15.7 + brightRed: 26.8 + brightGreen: 68.4 + brightYellow: 49.8 + brightBlue: 39.8 + brightMagenta: 65.3 + brightCyan: 93.8 + brightWhite: 107.9 diff --git a/themes/sto-green-dark.yaml b/themes/sto-green-dark.yaml new file mode 100644 index 00000000..4e7ed092 --- /dev/null +++ b/themes/sto-green-dark.yaml @@ -0,0 +1,49 @@ +name: "Sto Green Dark" +source: + marketplace_id: "NSMNIA.sto-theme" + version: "2.0.1" + installs: 368 + author: "NSMNIA" + repo: "https://github.com/NSMNIA/sto-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NSMNIA.sto-theme" +colors: + bg: "#000000" + fg: "#DDEFF0" + black: "#000000" + red: "#EC1E2B" + green: "#4AD962" + yellow: "#5FAAB1" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#EC1E2B" + brightGreen: "#4AD962" + brightYellow: "#5FAAB1" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 95.1 + black: 0 + red: 33.5 + green: 68.4 + yellow: 50.2 + blue: 39.8 + magenta: 65.3 + cyan: 93.8 + white: 107.9 + brightBlack: 15.7 + brightRed: 33.5 + brightGreen: 68.4 + brightYellow: 50.2 + brightBlue: 39.8 + brightMagenta: 65.3 + brightCyan: 93.8 + brightWhite: 107.9 diff --git a/themes/sto-green.yaml b/themes/sto-green.yaml new file mode 100644 index 00000000..34388d08 --- /dev/null +++ b/themes/sto-green.yaml @@ -0,0 +1,49 @@ +name: "Sto Green" +source: + marketplace_id: "NSMNIA.sto-theme" + version: "2.0.1" + installs: 368 + author: "NSMNIA" + repo: "https://github.com/NSMNIA/sto-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NSMNIA.sto-theme" +colors: + bg: "#0E1718" + fg: "#DDEFF0" + black: "#0E1718" + red: "#EC1E2B" + green: "#4AD962" + yellow: "#5FAAB1" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#EC1E2B" + brightGreen: "#4AD962" + brightYellow: "#5FAAB1" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 205 + contrast: + fg: 94.2 + black: 0 + red: 32.6 + green: 67.5 + yellow: 49.3 + blue: 38.9 + magenta: 64.5 + cyan: 92.9 + white: 107 + brightBlack: 14.8 + brightRed: 32.6 + brightGreen: 67.5 + brightYellow: 49.3 + brightBlue: 38.9 + brightMagenta: 64.5 + brightCyan: 92.9 + brightWhite: 107 diff --git a/themes/stonerose.yaml b/themes/stonerose.yaml new file mode 100644 index 00000000..b14376fc --- /dev/null +++ b/themes/stonerose.yaml @@ -0,0 +1,49 @@ +name: "StoneRose" +source: + marketplace_id: "ajguerrer.stonerose-vscode" + version: "1.4.0" + installs: 77 + author: "ajguerrer" + repo: "https://github.com/ajguerrer/stonerose-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ajguerrer.stonerose-vscode" +colors: + bg: "#303033" + fg: "#B4B4BF" + black: "#303033" + red: "#BF9D9D" + green: "#AEBF9D" + yellow: "#BFAE9D" + blue: "#9DAEBF" + magenta: "#AE9DBF" + cyan: "#9DBFAE" + white: "#B4B4BF" + brightBlack: "#909099" + brightRed: "#BF9D9D" + brightGreen: "#AEBF9D" + brightYellow: "#BFAE9D" + brightBlue: "#9DAEBF" + brightMagenta: "#AE9DBF" + brightCyan: "#9DBFAE" + brightWhite: "#E4E4F2" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 57.1 + black: 0 + red: 48.4 + green: 59.6 + yellow: 54.8 + blue: 52.1 + magenta: 47.6 + cyan: 58.5 + white: 57.1 + brightBlack: 37.8 + brightRed: 48.4 + brightGreen: 59.6 + brightYellow: 54.8 + brightBlue: 52.1 + brightMagenta: 47.6 + brightCyan: 58.5 + brightWhite: 85.9 diff --git a/themes/storm-contrast.yaml b/themes/storm-contrast.yaml new file mode 100644 index 00000000..eb925158 --- /dev/null +++ b/themes/storm-contrast.yaml @@ -0,0 +1,49 @@ +name: "storm-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#020B0C" + fg: "#BACEDD" + black: "#061F22" + red: "#BA0E2E" + green: "#126D6B" + yellow: "#00A9A5" + blue: "#4E8098" + magenta: "#126D6B" + cyan: "#00A9A5" + white: "#CBDAE5" + brightBlack: "#115B63" + brightRed: "#F03E5F" + brightGreen: "#20C5C1" + brightYellow: "#10FFF9" + brightBlue: "#89B0C3" + brightMagenta: "#20C5C1" + brightCyan: "#10FFF9" + brightWhite: "#FEFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 202 + contrast: + fg: 75 + black: 0 + red: 21.4 + green: 21.5 + yellow: 46.9 + blue: 31.7 + magenta: 21.5 + cyan: 46.9 + white: 82.6 + brightBlack: 15.3 + brightRed: 37.6 + brightGreen: 60.6 + brightYellow: 91.7 + brightBlue: 56.3 + brightMagenta: 60.6 + brightCyan: 91.7 + brightWhite: 107.6 diff --git a/themes/storm-dark-pro.yaml b/themes/storm-dark-pro.yaml new file mode 100644 index 00000000..0e3d077a --- /dev/null +++ b/themes/storm-dark-pro.yaml @@ -0,0 +1,49 @@ +name: "Storm Dark Pro" +source: + marketplace_id: "storm066.storm066" + version: "0.0.4" + installs: 2575 + author: "storm066" + repo: "https://github.com/lfontesc/vscode-theme-storm" + url: "https://marketplace.visualstudio.com/items?itemName=storm066.storm066" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 33.5 + green: 57.2 + yellow: 45.4 + blue: 46.5 + magenta: 35.9 + cyan: 49.3 + white: 87.4 + brightBlack: 12.3 + brightRed: 42.9 + brightGreen: 73.6 + brightYellow: 58 + brightBlue: 60.5 + brightMagenta: 47.1 + brightCyan: 64.6 + brightWhite: 79.8 diff --git a/themes/storm-light.yaml b/themes/storm-light.yaml new file mode 100644 index 00000000..4607950c --- /dev/null +++ b/themes/storm-light.yaml @@ -0,0 +1,49 @@ +name: "storm-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#DEE4E5" + fg: "#092327" + black: "#ECF0F0" + red: "#BA0E2E" + green: "#126D6B" + yellow: "#00A9A5" + blue: "#4E8098" + magenta: "#126D6B" + cyan: "#00A9A5" + white: "#0E363C" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#20C5C1" + brightYellow: "#10FFF9" + brightBlue: "#89B0C3" + brightMagenta: "#20C5C1" + brightCyan: "#10FFF9" + brightWhite: "#1C6D7A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 86.6 + black: 0 + red: 63.7 + green: 63.6 + yellow: 38.2 + blue: 53.2 + magenta: 63.6 + cyan: 38.2 + white: 82.5 + brightBlack: 16.3 + brightRed: 47.3 + brightGreen: 24.8 + brightYellow: 0 + brightBlue: 29.1 + brightMagenta: 24.8 + brightCyan: 0 + brightWhite: 62.9 diff --git a/themes/storm-tracker.yaml b/themes/storm-tracker.yaml new file mode 100644 index 00000000..f2cdf2c4 --- /dev/null +++ b/themes/storm-tracker.yaml @@ -0,0 +1,49 @@ +name: "Storm Tracker" +source: + marketplace_id: "Dutchorange.space-wars" + version: "1.1.7" + installs: 1710 + author: "Dutchorange" + repo: "https://github.com/entropy-glitch/space-wars" + url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" +colors: + bg: "#1B1B1B" + fg: "#E1E1E1" + black: "#1B1B1B" + red: "#FFFFFF" + green: "#5A5A5A" + yellow: "#A0A0A0" + blue: "#5A5A5A" + magenta: "#FFFFFF" + cyan: "#FF9966" + white: "#E1E1E1" + brightBlack: "#1B1B1B" + brightRed: "#FFFFFF" + brightGreen: "#5A5A5A" + brightYellow: "#A0A0A0" + brightBlue: "#FFAA44" + brightMagenta: "#FFFFFF" + brightCyan: "#FF9966" + brightWhite: "#E1E1E1" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 87.1 + black: 0 + red: 106.4 + green: 16.6 + yellow: 49.4 + blue: 16.6 + magenta: 106.4 + cyan: 60 + white: 87.1 + brightBlack: 0 + brightRed: 106.4 + brightGreen: 16.6 + brightYellow: 49.4 + brightBlue: 65.3 + brightMagenta: 106.4 + brightCyan: 60 + brightWhite: 87.1 diff --git a/themes/storm-uvadark-fork.yaml b/themes/storm-uvadark-fork.yaml new file mode 100644 index 00000000..abc11690 --- /dev/null +++ b/themes/storm-uvadark-fork.yaml @@ -0,0 +1,49 @@ +name: "Storm Uvadark - Fork" +source: + marketplace_id: "storm066.storm066" + version: "0.0.4" + installs: 2575 + author: "storm066" + repo: "https://github.com/lfontesc/vscode-theme-storm" + url: "https://marketplace.visualstudio.com/items?itemName=storm066.storm066" +colors: + bg: "#000000" + fg: "#EEEEEE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 96.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/storm.yaml b/themes/storm.yaml new file mode 100644 index 00000000..3241cb5d --- /dev/null +++ b/themes/storm.yaml @@ -0,0 +1,49 @@ +name: "storm" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#092327" + fg: "#BACEDD" + black: "#0E363C" + red: "#BA0E2E" + green: "#126D6B" + yellow: "#00A9A5" + blue: "#4E8098" + magenta: "#126D6B" + cyan: "#00A9A5" + white: "#CBDAE5" + brightBlack: "#1C6D7A" + brightRed: "#F03E5F" + brightGreen: "#20C5C1" + brightYellow: "#10FFF9" + brightBlue: "#89B0C3" + brightMagenta: "#20C5C1" + brightCyan: "#10FFF9" + brightWhite: "#FEFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 209 + contrast: + fg: 73 + black: 0 + red: 19.4 + green: 19.5 + yellow: 44.9 + blue: 29.7 + magenta: 19.5 + cyan: 44.9 + white: 80.6 + brightBlack: 20.1 + brightRed: 35.6 + brightGreen: 58.6 + brightYellow: 89.7 + brightBlue: 54.3 + brightMagenta: 58.6 + brightCyan: 89.7 + brightWhite: 105.6 diff --git a/themes/stormpetrel.yaml b/themes/stormpetrel.yaml new file mode 100644 index 00000000..4c375ae6 --- /dev/null +++ b/themes/stormpetrel.yaml @@ -0,0 +1,49 @@ +name: "stormpetrel" +source: + marketplace_id: "bbrakenhoff.seabird" + version: "0.0.4" + installs: 754 + author: "bbrakenhoff" + repo: "https://github.com/bbrakenhoff/seabird-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=bbrakenhoff.seabird" +colors: + bg: "#0B141A" + fg: "#787E82" + black: "#6D767D" + red: "#BA656D" + green: "#5B8A55" + yellow: "#8A7C55" + blue: "#5F8299" + magenta: "#997383" + cyan: "#548587" + white: "#FFFFFF" + brightBlack: "#6D767D" + brightRed: "#BA656D" + brightGreen: "#5B8A55" + brightYellow: "#8A7C55" + brightBlue: "#5F8299" + brightMagenta: "#997383" + brightCyan: "#548587" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 238 + contrast: + fg: 32.7 + black: 28.8 + red: 33.5 + green: 33.5 + yellow: 32.7 + blue: 33 + magenta: 33 + cyan: 32.6 + white: 107.2 + brightBlack: 28.8 + brightRed: 33.5 + brightGreen: 33.5 + brightYellow: 32.7 + brightBlue: 33 + brightMagenta: 33 + brightCyan: 32.6 + brightWhite: 107.2 diff --git a/themes/strangebrew.yaml b/themes/strangebrew.yaml new file mode 100644 index 00000000..26832dcd --- /dev/null +++ b/themes/strangebrew.yaml @@ -0,0 +1,49 @@ +name: "StrangeBrew" +source: + marketplace_id: "selfrefactor.StrangeBrew" + version: "0.20.0" + installs: 291 + author: "selfrefactor" + repo: "https://github.com/selfrefactor/niketa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.StrangeBrew" +colors: + bg: "#F5F5F5" + fg: "#192112" + black: "#0F0F14" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#0F0F14" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 97.5 + black: 99.5 + red: 45 + green: 48.5 + yellow: 32.7 + blue: 43.3 + magenta: 39.6 + cyan: 24.7 + white: 62.1 + brightBlack: 99.5 + brightRed: 45 + brightGreen: 48.5 + brightYellow: 32.7 + brightBlue: 43.3 + brightMagenta: 39.6 + brightCyan: 24.7 + brightWhite: 35.7 diff --git a/themes/studio-bio-bio-dark-theme.yaml b/themes/studio-bio-bio-dark-theme.yaml new file mode 100644 index 00000000..f4e8fd1c --- /dev/null +++ b/themes/studio-bio-bio-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "studio.bio Bio Dark Theme" +source: + marketplace_id: "studiobio.bio-dark-midnight-theme" + version: "0.1.1" + installs: 2667 + author: "studiobio" + repo: "https://github.com/joshuaiz/bio-dark-midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=studiobio.bio-dark-midnight-theme" +colors: + bg: "#1C1F2F" + fg: "#CECECE" + black: "#111929" + red: "#F26D58" + green: "#35BE81" + yellow: "#FAC863" + blue: "#486388" + magenta: "#BB80B3" + cyan: "#4885DB" + white: "#F6F8FA" + brightBlack: "#575656" + brightRed: "#F12A26" + brightGreen: "#DEF59A" + brightYellow: "#FFDD43" + brightBlue: "#B0C3E7" + brightMagenta: "#C792EA" + brightCyan: "#A0C4EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 276 + contrast: + fg: 74.7 + black: 0 + red: 44.2 + green: 53.5 + yellow: 75.6 + blue: 19.1 + magenta: 42.2 + cyan: 35.1 + white: 101 + brightBlack: 14.5 + brightRed: 33.3 + brightGreen: 92.8 + brightYellow: 85 + brightBlue: 67.8 + brightMagenta: 52.6 + brightCyan: 66.9 + brightWhite: 105.8 diff --git a/themes/stylelight35.yaml b/themes/stylelight35.yaml new file mode 100644 index 00000000..8aaaf751 --- /dev/null +++ b/themes/stylelight35.yaml @@ -0,0 +1,49 @@ +name: "stylelight35" +source: + marketplace_id: "tscmdabdurrakib.md-abdur-rakib-theme" + version: "1.1.3" + installs: 1739 + author: "Md Abdur Rakib" + repo: "https://github.com/tscmdabdurrakib/md-abdur-rakib-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tscmdabdurrakib.md-abdur-rakib-theme" +colors: + bg: "#F9F9F9" + fg: "#383A42" + black: "#373A41" + red: "#D52753" + green: "#23974A" + yellow: "#DF631C" + blue: "#275FE4" + magenta: "#823FF1" + cyan: "#27618D" + white: "#B9BAC1" + brightBlack: "#676A77" + brightRed: "#FF6480" + brightGreen: "#3CBC66" + brightYellow: "#C5A332" + brightBlue: "#0099E1" + brightMagenta: "#CE33C0" + brightCyan: "#6D93BB" + brightWhite: "#D3D3D3" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 92.6 + black: 92.7 + red: 68.9 + green: 61 + yellow: 58.6 + blue: 73 + magenta: 72 + cyan: 78.8 + white: 33.5 + brightBlack: 73.2 + brightRed: 50.1 + brightGreen: 44.2 + brightYellow: 44 + brightBlue: 54.4 + brightMagenta: 65 + brightCyan: 55.7 + brightWhite: 19.7 diff --git a/themes/subessence.yaml b/themes/subessence.yaml new file mode 100644 index 00000000..d70acc92 --- /dev/null +++ b/themes/subessence.yaml @@ -0,0 +1,49 @@ +name: "Subessence" +source: + marketplace_id: "vinhphm.subessence" + version: "0.1.6" + installs: 309 + author: "Vinh Pham" + repo: "https://github.com/vinhphm/subessence" + url: "https://marketplace.visualstudio.com/items?itemName=vinhphm.subessence" +colors: + bg: "#232830" + fg: "#D4D4D4" + black: "#252A33" + red: "#FFA5C3" + green: "#95E5A6" + yellow: "#FFDFA5" + blue: "#8CD8D8" + magenta: "#FFA5C3" + cyan: "#8CD8D8" + white: "#D4D4D4" + brightBlack: "#7F7F7F" + brightRed: "#FFA5C3" + brightGreen: "#95E5A6" + brightYellow: "#FFDFA5" + brightBlue: "#8CD8D8" + brightMagenta: "#FFA5C3" + brightCyan: "#8CD8D8" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "teal" + hue: 260 + contrast: + fg: 77.1 + black: 0 + red: 64.9 + green: 76.7 + yellow: 86.4 + blue: 71.7 + magenta: 64.9 + cyan: 71.7 + white: 77.1 + brightBlack: 30.9 + brightRed: 64.9 + brightGreen: 76.7 + brightYellow: 86.4 + brightBlue: 71.7 + brightMagenta: 64.9 + brightCyan: 71.7 + brightWhite: 77.1 diff --git a/themes/sublette.yaml b/themes/sublette.yaml new file mode 100644 index 00000000..c85823ea --- /dev/null +++ b/themes/sublette.yaml @@ -0,0 +1,49 @@ +name: "Sublette" +source: + marketplace_id: "minmul117.sublette" + version: "0.2.4" + installs: 421 + author: "minmul117" + repo: "https://github.com/minmul117/vscode-sublette" + url: "https://marketplace.visualstudio.com/items?itemName=minmul117.sublette" +colors: + bg: "#202535" + fg: "#CCCED0" + black: "#253045" + red: "#EE5577" + green: "#55EE77" + yellow: "#FFDD88" + blue: "#5588FF" + magenta: "#FF77CC" + cyan: "#44EEEE" + white: "#F5F5DA" + brightBlack: "#405570" + brightRed: "#EE6655" + brightGreen: "#99EE77" + brightYellow: "#FFFF77" + brightBlue: "#77BBFF" + brightMagenta: "#AA88FF" + brightCyan: "#55FFBB" + brightWhite: "#FFFFEE" +meta: + mode: "dark" + accent: "green" + hue: 271 + contrast: + fg: 73.7 + black: 0 + red: 38.3 + green: 76.7 + yellow: 85.1 + blue: 38.6 + magenta: 52.4 + cyan: 80.3 + white: 97.1 + brightBlack: 12.6 + brightRed: 40.9 + brightGreen: 80.6 + brightYellow: 100.5 + brightBlue: 60 + brightMagenta: 46.1 + brightCyan: 87.4 + brightWhite: 104.1 diff --git a/themes/sublime-breakers.yaml b/themes/sublime-breakers.yaml new file mode 100644 index 00000000..9434f957 --- /dev/null +++ b/themes/sublime-breakers.yaml @@ -0,0 +1,49 @@ +name: "Sublime Breakers" +source: + marketplace_id: "release-candidate.theme-sublime-breakers" + version: "0.2.1" + installs: 299 + author: "Release-Candidate" + repo: "https://codeberg.org/Release-Candidate/SublimeBreakersTheme" + url: "https://marketplace.visualstudio.com/items?itemName=release-candidate.theme-sublime-breakers" +colors: + bg: "#FCFDFD" + fg: "#333333" + black: "#373A41" + red: "#D52753" + green: "#23974A" + yellow: "#DF631C" + blue: "#275FE4" + magenta: "#823FF1" + cyan: "#27618D" + white: "#B9BAC1" + brightBlack: "#676A77" + brightRed: "#FF6480" + brightGreen: "#3CBC66" + brightYellow: "#C5A332" + brightBlue: "#0099E1" + brightMagenta: "#CE33C0" + brightCyan: "#6D93BB" + brightWhite: "#D3D3D3" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 97.3 + black: 95 + red: 71.2 + green: 63.3 + yellow: 60.8 + blue: 75.2 + magenta: 74.3 + cyan: 81.1 + white: 35.8 + brightBlack: 75.5 + brightRed: 52.3 + brightGreen: 46.4 + brightYellow: 46.3 + brightBlue: 56.7 + brightMagenta: 67.2 + brightCyan: 57.9 + brightWhite: 22 diff --git a/themes/sublime-mariana-semantic-colorful.yaml b/themes/sublime-mariana-semantic-colorful.yaml new file mode 100644 index 00000000..0a03c76e --- /dev/null +++ b/themes/sublime-mariana-semantic-colorful.yaml @@ -0,0 +1,49 @@ +name: "Sublime Mariana ⎯ Semantic Colorful" +source: + marketplace_id: "duttdutt.sublime-theme" + version: "1.0.9" + installs: 3900 + author: "duttdutt" + repo: "https://github.com/duttdutt/sublime-theme" + url: "https://marketplace.visualstudio.com/items?itemName=duttdutt.sublime-theme" +colors: + bg: "#2E3842" + fg: "#FFFFFF" + black: "#E6E6E6" + red: "#EE6A6F" + green: "#A3CE9E" + yellow: "#FAB763" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#6699CC" + white: "#FFFFFF" + brightBlack: "#E6E6E6" + brightRed: "#EE6A6F" + brightGreen: "#A3CE9E" + brightYellow: "#FAB763" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#6699CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 100.9 + black: 84.7 + red: 38.3 + green: 63.3 + yellow: 64.1 + blue: 38.2 + magenta: 46.1 + cyan: 38.2 + white: 100.9 + brightBlack: 84.7 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 64.1 + brightBlue: 38.2 + brightMagenta: 46.1 + brightCyan: 38.2 + brightWhite: 100.9 diff --git a/themes/sublime-mariana-test.yaml b/themes/sublime-mariana-test.yaml new file mode 100644 index 00000000..28eef7ea --- /dev/null +++ b/themes/sublime-mariana-test.yaml @@ -0,0 +1,49 @@ +name: "Sublime Mariana ⎯ Test" +source: + marketplace_id: "duttdutt.sublime-theme" + version: "1.0.9" + installs: 3900 + author: "duttdutt" + repo: "https://github.com/duttdutt/sublime-theme" + url: "https://marketplace.visualstudio.com/items?itemName=duttdutt.sublime-theme" +colors: + bg: "#303841" + fg: "#FFFFFF" + black: "#E6E6E6" + red: "#EE6A6F" + green: "#A3CE9E" + yellow: "#FAB763" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#6699CC" + white: "#FFFFFF" + brightBlack: "#E6E6E6" + brightRed: "#EE6A6F" + brightGreen: "#A3CE9E" + brightYellow: "#FAB763" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#6699CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 251 + contrast: + fg: 100.8 + black: 84.6 + red: 38.3 + green: 63.2 + yellow: 64 + blue: 38.1 + magenta: 46 + cyan: 38.1 + white: 100.8 + brightBlack: 84.6 + brightRed: 38.3 + brightGreen: 63.2 + brightYellow: 64 + brightBlue: 38.1 + brightMagenta: 46 + brightCyan: 38.1 + brightWhite: 100.8 diff --git a/themes/sublime-monokai-color-theme.yaml b/themes/sublime-monokai-color-theme.yaml new file mode 100644 index 00000000..1857e02e --- /dev/null +++ b/themes/sublime-monokai-color-theme.yaml @@ -0,0 +1,49 @@ +name: "sublime-monokai-color-theme" +source: + marketplace_id: "maximetinu.identical-sublime-monokai-csharp-theme-colorizer" + version: "1.2.3" + installs: 286321 + author: "Maximetinu" + repo: "https://github.com/Maximetinu/Sublime-Text-Monokai-theme-for-Visual-Studio-Code" + url: "https://marketplace.visualstudio.com/items?itemName=maximetinu.identical-sublime-monokai-csharp-theme-colorizer" +colors: + bg: "#272822" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 115 + contrast: + fg: 99.6 + black: 0 + red: 22.3 + green: 50.7 + yellow: 55.3 + blue: 32.3 + magenta: 29.9 + cyan: 48.1 + white: 86.2 + brightBlack: 19.7 + brightRed: 35 + brightGreen: 74.7 + brightYellow: 81.6 + brightBlue: 47.5 + brightMagenta: 44.2 + brightCyan: 71.1 + brightWhite: 99.6 diff --git a/themes/sublime-text-3.yaml b/themes/sublime-text-3.yaml new file mode 100644 index 00000000..2775627e --- /dev/null +++ b/themes/sublime-text-3.yaml @@ -0,0 +1,49 @@ +name: "Sublime Text 3" +source: + marketplace_id: "Shine.sublime-text-3" + version: "1.0.4" + installs: 6129 + author: "Shine" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Shine.sublime-text-3" +colors: + bg: "#282923" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92472" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AC80FF" + brightCyan: "#67D8EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 115 + contrast: + fg: 99.5 + black: 0 + red: 22.1 + green: 50.5 + yellow: 55.1 + blue: 32.1 + magenta: 29.7 + cyan: 47.9 + white: 86 + brightBlack: 19.5 + brightRed: 34.7 + brightGreen: 74.5 + brightYellow: 81.4 + brightBlue: 47.3 + brightMagenta: 43.5 + brightCyan: 70.5 + brightWhite: 99.5 diff --git a/themes/sublime-text-4-theme.yaml b/themes/sublime-text-4-theme.yaml new file mode 100644 index 00000000..cb5a1d05 --- /dev/null +++ b/themes/sublime-text-4-theme.yaml @@ -0,0 +1,49 @@ +name: "Sublime Text 4 Theme" +source: + marketplace_id: "IliaReshetov.vscode-theme-mariana-dark" + version: "1.0.6" + installs: 978 + author: "Ilia Reshetov" + repo: "https://github.com/iliareshetov/vscode-theme-mariana-dark" + url: "https://marketplace.visualstudio.com/items?itemName=IliaReshetov.vscode-theme-mariana-dark" +colors: + bg: "#303841" + fg: "#D8DEE9" + black: "#E6E6E6" + red: "#EE6A6F" + green: "#A3CE9E" + yellow: "#FAB763" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#6699CC" + white: "#D8DEE9" + brightBlack: "#E6E6E6" + brightRed: "#EE6A6F" + brightGreen: "#A3CE9E" + brightYellow: "#FAB763" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#6699CC" + brightWhite: "#D8DEE9" +meta: + mode: "dark" + accent: "orange" + hue: 251 + contrast: + fg: 79.3 + black: 84.6 + red: 38.3 + green: 63.2 + yellow: 64 + blue: 38.1 + magenta: 46 + cyan: 38.1 + white: 79.3 + brightBlack: 84.6 + brightRed: 38.3 + brightGreen: 63.2 + brightYellow: 64 + brightBlue: 38.1 + brightMagenta: 46 + brightCyan: 38.1 + brightWhite: 79.3 diff --git a/themes/sublime-vscode-theme.yaml b/themes/sublime-vscode-theme.yaml new file mode 100644 index 00000000..354fab8e --- /dev/null +++ b/themes/sublime-vscode-theme.yaml @@ -0,0 +1,49 @@ +name: "sublime-vscode-theme" +source: + marketplace_id: "yurihs.sublime-vscode-theme" + version: "1.5.0" + installs: 86323 + author: "yurihs" + repo: "https://github.com/yurihs/sublime-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yurihs.sublime-vscode-theme" +colors: + bg: "#282923" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 115 + contrast: + fg: 99.5 + black: 0 + red: 22.1 + green: 50.5 + yellow: 55.1 + blue: 32.1 + magenta: 29.7 + cyan: 47.9 + white: 86 + brightBlack: 19.5 + brightRed: 34.8 + brightGreen: 74.5 + brightYellow: 81.4 + brightBlue: 47.3 + brightMagenta: 44 + brightCyan: 70.9 + brightWhite: 99.5 diff --git a/themes/subliminal-color-theme.yaml b/themes/subliminal-color-theme.yaml new file mode 100644 index 00000000..ca158fba --- /dev/null +++ b/themes/subliminal-color-theme.yaml @@ -0,0 +1,49 @@ +name: "Subliminal-color-theme" +source: + marketplace_id: "josefssonrasmus.subliminal-remix" + version: "1.0.0" + installs: 397 + author: "Rasmus Josefsson" + repo: "https://github.com/gaearon/subliminal" + url: "https://marketplace.visualstudio.com/items?itemName=josefssonrasmus.subliminal-remix" +colors: + bg: "#282C35" + fg: "#D4D4D4" + black: "#555555" + red: "#E15A60" + green: "#99C794" + yellow: "#FFE2A9" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#7F7F7F" + brightRed: "#E15A60" + brightGreen: "#99C794" + brightYellow: "#FFE2A9" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 76.3 + black: 11.9 + red: 34.6 + green: 61.6 + yellow: 87 + blue: 40.9 + magenta: 48.8 + cyan: 49.8 + white: 76.3 + brightBlack: 30.1 + brightRed: 34.6 + brightGreen: 61.6 + brightYellow: 87 + brightBlue: 40.9 + brightMagenta: 48.8 + brightCyan: 49.8 + brightWhite: 76.3 diff --git a/themes/subliminalr-next.yaml b/themes/subliminalr-next.yaml new file mode 100644 index 00000000..506099d7 --- /dev/null +++ b/themes/subliminalr-next.yaml @@ -0,0 +1,49 @@ +name: "SubliminalR - Next" +source: + marketplace_id: "TobiasTimm.subliminalr" + version: "0.3.2" + installs: 2782 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/subliminalr" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.subliminalr" +colors: + bg: "#2A2D37" + fg: "#D4D4D4" + black: "#7F7F7F" + red: "#E15A60" + green: "#99C794" + yellow: "#FFE2A9" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#7F7F7F" + brightRed: "#E15A60" + brightGreen: "#99C794" + brightYellow: "#FFE2A9" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 272 + contrast: + fg: 76 + black: 29.8 + red: 34.4 + green: 61.4 + yellow: 86.7 + blue: 40.7 + magenta: 48.5 + cyan: 49.5 + white: 76 + brightBlack: 29.8 + brightRed: 34.4 + brightGreen: 61.4 + brightYellow: 86.7 + brightBlue: 40.7 + brightMagenta: 48.5 + brightCyan: 49.5 + brightWhite: 76 diff --git a/themes/subscribe-color.yaml b/themes/subscribe-color.yaml new file mode 100644 index 00000000..d7063685 --- /dev/null +++ b/themes/subscribe-color.yaml @@ -0,0 +1,49 @@ +name: "subscribe-color" +source: + marketplace_id: "Eric000.pinkpinktheme" + version: "0.0.3" + installs: 596 + author: "Eric000" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Eric000.pinkpinktheme" +colors: + bg: "#FFFFFF" + fg: "#A890FD" + black: "#FF7373" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#FF8181" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 50.7 + black: 50.8 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 47 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/substrata.yaml b/themes/substrata.yaml new file mode 100644 index 00000000..d6cc4bbf --- /dev/null +++ b/themes/substrata.yaml @@ -0,0 +1,49 @@ +name: "Substrata" +source: + marketplace_id: "austinhyde.vscode-theme-substrata" + version: "1.0.0" + installs: 652 + author: "austinhyde" + repo: "https://github.com/austinhyde/vscode-substrata" + url: "https://marketplace.visualstudio.com/items?itemName=austinhyde.vscode-theme-substrata" +colors: + bg: "#191C25" + fg: "#B5B4C9" + black: "#2E313D" + red: "#CF8164" + green: "#76A065" + yellow: "#AB924C" + blue: "#8296B0" + magenta: "#A18DAF" + cyan: "#659EA2" + white: "#B5B4C9" + brightBlack: "#5B5F71" + brightRed: "#FE9F7C" + brightGreen: "#92C47E" + brightYellow: "#D2B45F" + brightBlue: "#A0B9D8" + brightMagenta: "#C6AED7" + brightCyan: "#7DC2C7" + brightWhite: "#F0ECFE" +meta: + mode: "dark" + accent: "orange" + hue: 271 + contrast: + fg: 61.2 + black: 0 + red: 43.6 + green: 43.5 + yellow: 43.3 + blue: 43.1 + magenta: 43.2 + cyan: 43.4 + white: 61.2 + brightBlack: 18.8 + brightRed: 62.1 + brightGreen: 61.7 + brightYellow: 61.8 + brightBlue: 61.7 + brightMagenta: 61.7 + brightCyan: 61.7 + brightWhite: 95.3 diff --git a/themes/sufocode.yaml b/themes/sufocode.yaml new file mode 100644 index 00000000..da085c47 --- /dev/null +++ b/themes/sufocode.yaml @@ -0,0 +1,49 @@ +name: "Sufocode" +source: + marketplace_id: "C4ptainPl0uf.sufocode" + version: "0.0.1" + installs: 17 + author: "C4ptain_Pl0uf" + repo: "https://github.com/Vpekdas/VSCode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=C4ptainPl0uf.sufocode" +colors: + bg: "#022B3A" + fg: "#F0F3BD" + black: "#022B3A" + red: "#F0F3BD" + green: "#D97C0B" + yellow: "#FFA62B" + blue: "#A7F6E3" + magenta: "#FFA62B" + cyan: "#A7F6E3" + white: "#FFFFFF" + brightBlack: "#66D9E8" + brightRed: "#F0F3BD" + brightGreen: "#D97C0B" + brightYellow: "#FFA62B" + brightBlue: "#A7F6E3" + brightMagenta: "#FFA62B" + brightCyan: "#A7F6E3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: 228 + contrast: + fg: 93.9 + black: 0 + red: 93.9 + green: 41.1 + yellow: 61.6 + blue: 88.7 + magenta: 61.6 + cyan: 88.7 + white: 104.3 + brightBlack: 70.5 + brightRed: 93.9 + brightGreen: 41.1 + brightYellow: 61.6 + brightBlue: 88.7 + brightMagenta: 61.6 + brightCyan: 88.7 + brightWhite: 104.3 diff --git a/themes/sugar-dark-focus.yaml b/themes/sugar-dark-focus.yaml new file mode 100644 index 00000000..e5ea3cd3 --- /dev/null +++ b/themes/sugar-dark-focus.yaml @@ -0,0 +1,49 @@ +name: "Sugar Dark Focus" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 326 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" +colors: + bg: "#0B0B09" + fg: "#D8D8D8" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 82.8 + black: 0 + red: 30.4 + green: 58.2 + yellow: 71.4 + blue: 23.3 + magenta: 31.7 + cyan: 33.5 + white: 75.5 + brightBlack: 30.4 + brightRed: 36.1 + brightGreen: 44.8 + brightYellow: 71.4 + brightBlue: 30.8 + brightMagenta: 36.9 + brightCyan: 53.5 + brightWhite: 75.5 diff --git a/themes/sugar-dark-github.yaml b/themes/sugar-dark-github.yaml new file mode 100644 index 00000000..5a1826d3 --- /dev/null +++ b/themes/sugar-dark-github.yaml @@ -0,0 +1,49 @@ +name: "Sugar Dark Github" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 326 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" +colors: + bg: "#181818" + fg: "#D4D4D4" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 79.4 + black: 0 + red: 29.5 + green: 57.3 + yellow: 70.5 + blue: 22.3 + magenta: 30.8 + cyan: 32.5 + white: 74.6 + brightBlack: 29.4 + brightRed: 35.2 + brightGreen: 43.9 + brightYellow: 70.5 + brightBlue: 29.9 + brightMagenta: 35.9 + brightCyan: 52.5 + brightWhite: 74.6 diff --git a/themes/sugar-dark-midnight.yaml b/themes/sugar-dark-midnight.yaml new file mode 100644 index 00000000..573abaf7 --- /dev/null +++ b/themes/sugar-dark-midnight.yaml @@ -0,0 +1,49 @@ +name: "Sugar Dark Midnight" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 326 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" +colors: + bg: "#1B1D23" + fg: "#DFDFDF" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: 271 + contrast: + fg: 85.5 + black: 0 + red: 28.9 + green: 56.7 + yellow: 69.9 + blue: 21.7 + magenta: 30.2 + cyan: 31.9 + white: 74 + brightBlack: 28.8 + brightRed: 34.5 + brightGreen: 43.3 + brightYellow: 69.9 + brightBlue: 29.3 + brightMagenta: 35.3 + brightCyan: 51.9 + brightWhite: 74 diff --git a/themes/sugar-dark-one.yaml b/themes/sugar-dark-one.yaml new file mode 100644 index 00000000..6d646340 --- /dev/null +++ b/themes/sugar-dark-one.yaml @@ -0,0 +1,49 @@ +name: "Sugar Dark One" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 326 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" +colors: + bg: "#22262A" + fg: "#ACB2BE" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 57.5 + black: 0 + red: 27.6 + green: 55.4 + yellow: 68.6 + blue: 20.4 + magenta: 28.9 + cyan: 30.6 + white: 72.7 + brightBlack: 27.6 + brightRed: 33.3 + brightGreen: 42 + brightYellow: 68.6 + brightBlue: 28 + brightMagenta: 34 + brightCyan: 50.7 + brightWhite: 72.7 diff --git a/themes/sugar-dark-vitesse.yaml b/themes/sugar-dark-vitesse.yaml new file mode 100644 index 00000000..da0cdcb7 --- /dev/null +++ b/themes/sugar-dark-vitesse.yaml @@ -0,0 +1,49 @@ +name: "Sugar Dark Vitesse" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 326 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" +colors: + bg: "#181818" + fg: "#C8C8C8" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 72.2 + black: 0 + red: 29.5 + green: 57.3 + yellow: 70.5 + blue: 22.3 + magenta: 30.8 + cyan: 32.5 + white: 74.6 + brightBlack: 29.4 + brightRed: 35.2 + brightGreen: 43.9 + brightYellow: 70.5 + brightBlue: 29.9 + brightMagenta: 35.9 + brightCyan: 52.5 + brightWhite: 74.6 diff --git a/themes/sugar-dark-vs.yaml b/themes/sugar-dark-vs.yaml new file mode 100644 index 00000000..962f3968 --- /dev/null +++ b/themes/sugar-dark-vs.yaml @@ -0,0 +1,49 @@ +name: "Sugar Dark VS" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 326 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" +colors: + bg: "#1F1F1F" + fg: "#D8D8D8" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 81 + black: 0 + red: 28.6 + green: 56.4 + yellow: 69.6 + blue: 21.5 + magenta: 29.9 + cyan: 31.7 + white: 73.7 + brightBlack: 28.6 + brightRed: 34.3 + brightGreen: 43 + brightYellow: 69.6 + brightBlue: 29 + brightMagenta: 35.1 + brightCyan: 51.7 + brightWhite: 73.7 diff --git a/themes/sugar-dark.yaml b/themes/sugar-dark.yaml new file mode 100644 index 00000000..597d4b07 --- /dev/null +++ b/themes/sugar-dark.yaml @@ -0,0 +1,49 @@ +name: "Sugar Dark" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 326 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" +colors: + bg: "#1B1F22" + fg: "#CFCFCF" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 75.6 + black: 0 + red: 28.7 + green: 56.5 + yellow: 69.7 + blue: 21.5 + magenta: 30 + cyan: 31.7 + white: 73.8 + brightBlack: 28.7 + brightRed: 34.4 + brightGreen: 43.1 + brightYellow: 69.7 + brightBlue: 29.1 + brightMagenta: 35.1 + brightCyan: 51.8 + brightWhite: 73.8 diff --git a/themes/sugar-fleet.yaml b/themes/sugar-fleet.yaml new file mode 100644 index 00000000..a0a102e2 --- /dev/null +++ b/themes/sugar-fleet.yaml @@ -0,0 +1,49 @@ +name: "Sugar Fleet" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 326 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" +colors: + bg: "#1F1F1F" + fg: "#BCBEC4" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 65.5 + black: 0 + red: 28.6 + green: 56.4 + yellow: 69.6 + blue: 21.5 + magenta: 29.9 + cyan: 31.7 + white: 73.7 + brightBlack: 28.6 + brightRed: 34.3 + brightGreen: 43 + brightYellow: 69.6 + brightBlue: 29 + brightMagenta: 35.1 + brightCyan: 51.7 + brightWhite: 73.7 diff --git a/themes/sugar-light-vitesse.yaml b/themes/sugar-light-vitesse.yaml new file mode 100644 index 00000000..868c1dec --- /dev/null +++ b/themes/sugar-light-vitesse.yaml @@ -0,0 +1,49 @@ +name: "Sugar Light Vitesse" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 326 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#777777" + red: "#E5484D" + green: "#46A758" + yellow: "#E5C07B" + blue: "#0070F3" + magenta: "#E93D82" + cyan: "#14B8A6" + white: "#CCCCCC" + brightBlack: "#393A34" + brightRed: "#DA3036" + brightGreen: "#63C174" + brightYellow: "#E5C07B" + brightBlue: "#0060D1" + brightMagenta: "#DE2670" + brightCyan: "#0D8C7D" + brightWhite: "#CCCCCC" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 101.5 + black: 71.1 + red: 65.4 + green: 56.8 + yellow: 31.2 + blue: 70.7 + magenta: 64.6 + cyan: 48.3 + white: 27.3 + brightBlack: 96.5 + brightRed: 71.1 + brightGreen: 43.7 + brightYellow: 31.2 + brightBlue: 78.3 + brightMagenta: 69.8 + brightCyan: 68 + brightWhite: 27.3 diff --git a/themes/sugar-light-vs.yaml b/themes/sugar-light-vs.yaml new file mode 100644 index 00000000..942aca34 --- /dev/null +++ b/themes/sugar-light-vs.yaml @@ -0,0 +1,49 @@ +name: "Sugar Light VS" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 326 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#777777" + red: "#E5484D" + green: "#46A758" + yellow: "#E5C07B" + blue: "#0070F3" + magenta: "#E93D82" + cyan: "#14B8A6" + white: "#CCCCCC" + brightBlack: "#393A34" + brightRed: "#DA3036" + brightGreen: "#63C174" + brightYellow: "#E5C07B" + brightBlue: "#0060D1" + brightMagenta: "#DE2670" + brightCyan: "#0D8C7D" + brightWhite: "#CCCCCC" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 98.7 + black: 71.1 + red: 65.4 + green: 56.8 + yellow: 31.2 + blue: 70.7 + magenta: 64.6 + cyan: 48.3 + white: 27.3 + brightBlack: 96.5 + brightRed: 71.1 + brightGreen: 43.7 + brightYellow: 31.2 + brightBlue: 78.3 + brightMagenta: 69.8 + brightCyan: 68 + brightWhite: 27.3 diff --git a/themes/sugar-light.yaml b/themes/sugar-light.yaml new file mode 100644 index 00000000..313885e8 --- /dev/null +++ b/themes/sugar-light.yaml @@ -0,0 +1,49 @@ +name: "Sugar Light" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 326 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" +colors: + bg: "#FCFCFC" + fg: "#424242" + black: "#777777" + red: "#E5484D" + green: "#46A758" + yellow: "#E5C07B" + blue: "#0070F3" + magenta: "#E93D82" + cyan: "#14B8A6" + white: "#CCCCCC" + brightBlack: "#393A34" + brightRed: "#DA3036" + brightGreen: "#63C174" + brightYellow: "#E5C07B" + brightBlue: "#0060D1" + brightMagenta: "#DE2670" + brightCyan: "#0D8C7D" + brightWhite: "#CCCCCC" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 91.6 + black: 69.3 + red: 63.6 + green: 55 + yellow: 29.4 + blue: 68.9 + magenta: 62.8 + cyan: 46.5 + white: 25.5 + brightBlack: 94.7 + brightRed: 69.3 + brightGreen: 41.9 + brightYellow: 29.4 + brightBlue: 76.5 + brightMagenta: 68 + brightCyan: 66.2 + brightWhite: 25.5 diff --git a/themes/sukadia-dev-dark.yaml b/themes/sukadia-dev-dark.yaml new file mode 100644 index 00000000..66a2ecea --- /dev/null +++ b/themes/sukadia-dev-dark.yaml @@ -0,0 +1,49 @@ +name: "sukadia.dev/dark" +source: + marketplace_id: "Sukadia.sukadia-dev-dark" + version: "1.0.6" + installs: 1606 + author: "Sukadia" + repo: "https://github.com/Sukadia/sukadia.dev-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Sukadia.sukadia-dev-dark" +colors: + bg: "#1D1F21" + fg: "#DDDDDD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 84.1 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.4 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/sulfuric-dark.yaml b/themes/sulfuric-dark.yaml new file mode 100644 index 00000000..1ef98724 --- /dev/null +++ b/themes/sulfuric-dark.yaml @@ -0,0 +1,49 @@ +name: "Sulfuric Dark" +source: + marketplace_id: "ptanhuet.sulfuric-theme" + version: "0.0.1" + installs: 30 + author: "ptanh.uet" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ptanhuet.sulfuric-theme" +colors: + bg: "#1E212E" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 70 + black: 25.1 + red: 42.6 + green: 64.5 + yellow: 77.6 + blue: 54.6 + magenta: 52.4 + cyan: 76.9 + white: 105.5 + brightBlack: 25.1 + brightRed: 42.6 + brightGreen: 82.8 + brightYellow: 77.6 + brightBlue: 54.6 + brightMagenta: 52.4 + brightCyan: 76.9 + brightWhite: 105.5 diff --git a/themes/sumiiro.yaml b/themes/sumiiro.yaml new file mode 100644 index 00000000..ef7378dc --- /dev/null +++ b/themes/sumiiro.yaml @@ -0,0 +1,49 @@ +name: "Sumiiro" +source: + marketplace_id: "kyoh86.sumiiro" + version: "0.0.1" + installs: 2286 + author: "kyoh86" + repo: "https://github.com/kyoh86/sumiiro-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=kyoh86.sumiiro" +colors: + bg: "#1C1C1C" + fg: "#FCFAF2" + black: "#1C1C1C" + red: "#DA5774" + green: "#4B8C5E" + yellow: "#E7A430" + blue: "#5992DC" + magenta: "#A784A7" + cyan: "#1E90A8" + white: "#91989F" + brightBlack: "#434343" + brightRed: "#ED784A" + brightGreen: "#86BE66" + brightYellow: "#FAD689" + brightBlue: "#96C8F6" + brightMagenta: "#EE99CE" + brightCyan: "#69B2AC" + brightWhite: "#FCFAF2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 102.9 + black: 0 + red: 35.8 + green: 32.7 + yellow: 58.6 + blue: 41.2 + magenta: 40.6 + cyan: 35.5 + white: 44.6 + brightBlack: 7.9 + brightRed: 46.3 + brightGreen: 57.5 + brightYellow: 82.8 + brightBlue: 68.8 + brightMagenta: 60.2 + brightCyan: 52.3 + brightWhite: 102.9 diff --git a/themes/summer-night-gray-high-contrast.yaml b/themes/summer-night-gray-high-contrast.yaml new file mode 100644 index 00000000..0fb2476c --- /dev/null +++ b/themes/summer-night-gray-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Summer Night Gray High Contrast" +source: + marketplace_id: "jackw01.summer-night-theme" + version: "1.2.1" + installs: 3459 + author: "jackw01" + repo: "https://github.com/jackw01/summer-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jackw01.summer-night-theme" +colors: + bg: "#1A1C1E" + fg: "#A6ABB8" + black: "#171C25" + red: "#F06C6F" + green: "#00AB9A" + yellow: "#D08447" + blue: "#00A3D2" + magenta: "#FA5F8B" + cyan: "#00A9B9" + white: "#A6ABB8" + brightBlack: "#171C25" + brightRed: "#F06C6F" + brightGreen: "#00AB9A" + brightYellow: "#D08447" + brightBlue: "#00A3D2" + brightMagenta: "#FA5F8B" + brightCyan: "#00A9B9" + brightWhite: "#A6ABB8" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 55.2 + black: 0 + red: 44.6 + green: 45.9 + yellow: 44.2 + blue: 45.2 + magenta: 44.9 + cyan: 46.4 + white: 55.2 + brightBlack: 0 + brightRed: 44.6 + brightGreen: 45.9 + brightYellow: 44.2 + brightBlue: 45.2 + brightMagenta: 44.9 + brightCyan: 46.4 + brightWhite: 55.2 diff --git a/themes/summer-night-high-contrast.yaml b/themes/summer-night-high-contrast.yaml new file mode 100644 index 00000000..c850ee0a --- /dev/null +++ b/themes/summer-night-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Summer Night High Contrast" +source: + marketplace_id: "jackw01.summer-night-theme" + version: "1.2.1" + installs: 3459 + author: "jackw01" + repo: "https://github.com/jackw01/summer-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jackw01.summer-night-theme" +colors: + bg: "#171C25" + fg: "#A6ABB8" + black: "#171C25" + red: "#F06C6F" + green: "#00AB9A" + yellow: "#D08447" + blue: "#00A3D2" + magenta: "#FA5F8B" + cyan: "#00A9B9" + white: "#A6ABB8" + brightBlack: "#171C25" + brightRed: "#F06C6F" + brightGreen: "#00AB9A" + brightYellow: "#D08447" + brightBlue: "#00A3D2" + brightMagenta: "#FA5F8B" + brightCyan: "#00A9B9" + brightWhite: "#A6ABB8" +meta: + mode: "dark" + accent: "red" + hue: 262 + contrast: + fg: 55.2 + black: 0 + red: 44.6 + green: 45.9 + yellow: 44.2 + blue: 45.2 + magenta: 44.8 + cyan: 46.3 + white: 55.2 + brightBlack: 0 + brightRed: 44.6 + brightGreen: 45.9 + brightYellow: 44.2 + brightBlue: 45.2 + brightMagenta: 44.8 + brightCyan: 46.3 + brightWhite: 55.2 diff --git a/themes/summer-night.yaml b/themes/summer-night.yaml new file mode 100644 index 00000000..0a3140a0 --- /dev/null +++ b/themes/summer-night.yaml @@ -0,0 +1,49 @@ +name: "Summer Night" +source: + marketplace_id: "jackw01.summer-night-theme" + version: "1.2.1" + installs: 3459 + author: "jackw01" + repo: "https://github.com/jackw01/summer-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jackw01.summer-night-theme" +colors: + bg: "#21262F" + fg: "#A6ABB8" + black: "#21262F" + red: "#F06C6F" + green: "#00AB9A" + yellow: "#D08447" + blue: "#00A3D2" + magenta: "#FA5F8B" + cyan: "#00A9B9" + white: "#A6ABB8" + brightBlack: "#21262F" + brightRed: "#F06C6F" + brightGreen: "#00AB9A" + brightYellow: "#D08447" + brightBlue: "#00A3D2" + brightMagenta: "#FA5F8B" + brightCyan: "#00A9B9" + brightWhite: "#A6ABB8" +meta: + mode: "dark" + accent: "red" + hue: 262 + contrast: + fg: 53.7 + black: 0 + red: 43.1 + green: 44.4 + yellow: 42.7 + blue: 43.7 + magenta: 43.4 + cyan: 44.9 + white: 53.7 + brightBlack: 0 + brightRed: 43.1 + brightGreen: 44.4 + brightYellow: 42.7 + brightBlue: 43.7 + brightMagenta: 43.4 + brightCyan: 44.9 + brightWhite: 53.7 diff --git a/themes/summer-nights-lullaby.yaml b/themes/summer-nights-lullaby.yaml new file mode 100644 index 00000000..765325c5 --- /dev/null +++ b/themes/summer-nights-lullaby.yaml @@ -0,0 +1,49 @@ +name: "Summer Nights Lullaby" +source: + marketplace_id: "keatsdothu.summer-nights-lullaby" + version: "1.0.3" + installs: 932 + author: "Andy Pataki" + repo: "https://github.com/iamgrid/summer_nights_lullaby_vscode_theme" + url: "https://marketplace.visualstudio.com/items?itemName=keatsdothu.summer-nights-lullaby" +colors: + bg: "#201300" + fg: "#F09C00" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 78 + contrast: + fg: 57.9 + black: 0 + red: 24.7 + green: 53.1 + yellow: 57.7 + blue: 34.7 + magenta: 32.3 + cyan: 50.5 + white: 88.6 + brightBlack: 22.1 + brightRed: 37.4 + brightGreen: 77.1 + brightYellow: 84 + brightBlue: 49.9 + brightMagenta: 46.6 + brightCyan: 73.5 + brightWhite: 102 diff --git a/themes/summer-nights.yaml b/themes/summer-nights.yaml new file mode 100644 index 00000000..bb27560a --- /dev/null +++ b/themes/summer-nights.yaml @@ -0,0 +1,49 @@ +name: "Summer Nights" +source: + marketplace_id: "keatsdothu.summer-nights" + version: "1.0.3" + installs: 1770 + author: "Andy Pataki" + repo: "https://github.com/iamgrid/summer_nights_vscode_theme" + url: "https://marketplace.visualstudio.com/items?itemName=keatsdothu.summer-nights" +colors: + bg: "#222222" + fg: "#F0F0F0" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 95.6 + black: 0 + red: 23.2 + green: 51.6 + yellow: 56.2 + blue: 33.2 + magenta: 30.8 + cyan: 49 + white: 87.1 + brightBlack: 20.6 + brightRed: 35.9 + brightGreen: 75.6 + brightYellow: 82.5 + brightBlue: 48.4 + brightMagenta: 45.1 + brightCyan: 72 + brightWhite: 100.6 diff --git a/themes/summer-palenight.yaml b/themes/summer-palenight.yaml new file mode 100644 index 00000000..592aecd9 --- /dev/null +++ b/themes/summer-palenight.yaml @@ -0,0 +1,49 @@ +name: "Summer Palenight" +source: + marketplace_id: "SummerThemes.summer-dark-theme" + version: "3.11.0" + installs: 118 + author: "SummerThemes" + repo: "https://github.com/SummerThemes/summer-dark-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SummerThemes.summer-dark-theme" +colors: + bg: "#292D3E" + fg: "#FFDB64" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 82 + black: 0 + red: 23.1 + green: 49.4 + yellow: 82 + blue: 23.8 + magenta: 26.2 + cyan: 43.9 + white: 86.4 + brightBlack: 18.4 + brightRed: 35 + brightGreen: 59.9 + brightYellow: 92 + brightBlue: 36.4 + brightMagenta: 41.8 + brightCyan: 51.8 + brightWhite: 86.4 diff --git a/themes/summer.yaml b/themes/summer.yaml new file mode 100644 index 00000000..62e329af --- /dev/null +++ b/themes/summer.yaml @@ -0,0 +1,49 @@ +name: "summer" +source: + marketplace_id: "roxcelic.summer-nights-roxcelic" + version: "1.0.6" + installs: 160 + author: "roxcelic" + repo: "https://github.com/roxcelic/themes.git#summer" + url: "https://marketplace.visualstudio.com/items?itemName=roxcelic.summer-nights-roxcelic" +colors: + bg: "#240909" + fg: "#FFDDE1" + black: "#4B1D1D" + red: "#CE9178" + green: "#4E9A06" + yellow: "#D7BA7D" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#4EC9B0" + white: "#FFDDE1" + brightBlack: "#7B3030" + brightRed: "#E54B4B" + brightGreen: "#B5CEA8" + brightYellow: "#F2C000" + brightBlue: "#9CDCFE" + brightMagenta: "#B19CD9" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 23 + contrast: + fg: 90.4 + black: 0 + red: 49.8 + green: 38.4 + yellow: 66.4 + blue: 45.3 + magenta: 47.6 + cyan: 62.3 + white: 90.4 + brightBlack: 11.2 + brightRed: 36 + brightGreen: 71.7 + brightYellow: 71.8 + brightBlue: 79.5 + brightMagenta: 53.4 + brightCyan: 54.8 + brightWhite: 107.2 diff --git a/themes/summercamp.yaml b/themes/summercamp.yaml new file mode 100644 index 00000000..0cad8274 --- /dev/null +++ b/themes/summercamp.yaml @@ -0,0 +1,49 @@ +name: "Summercamp" +source: + marketplace_id: "csalmeida.summercamp" + version: "0.0.0" + installs: 876 + author: "Cristiano Almeida" + repo: "https://github.com/csalmeida/summercamp-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=csalmeida.summercamp" +colors: + bg: "#1D1710" + fg: "#F8F5DE" + black: "#5A5A5A" + red: "#E63B3B" + green: "#43B23F" + yellow: "#E5E510" + blue: "#348FEC" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F8F5DE" + brightBlack: "#666666" + brightRed: "#DE5041" + brightGreen: "#5BDE56" + brightYellow: "#F1FE28" + brightBlue: "#499BEF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 71 + contrast: + fg: 99.6 + black: 17 + red: 33.4 + green: 48.2 + yellow: 85.5 + blue: 40.2 + magenta: 29.6 + cyan: 47.4 + white: 99.6 + brightBlack: 21.9 + brightRed: 34.7 + brightGreen: 70.2 + brightYellow: 99.2 + brightBlue: 45.5 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 106.8 diff --git a/themes/summerrelax.yaml b/themes/summerrelax.yaml new file mode 100644 index 00000000..9d33947e --- /dev/null +++ b/themes/summerrelax.yaml @@ -0,0 +1,49 @@ +name: "SummerRelax" +source: + marketplace_id: "rhighs.SummerRelax" + version: "0.0.1" + installs: 138 + author: "rhighs" + repo: "https://github.com/rhighs/summer-relax" + url: "https://marketplace.visualstudio.com/items?itemName=rhighs.SummerRelax" +colors: + bg: "#252B39" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 267 + contrast: + fg: 76.4 + black: 0 + red: 23.7 + green: 50 + yellow: 82.6 + blue: 24.4 + magenta: 26.7 + cyan: 44.5 + white: 103.8 + brightBlack: 19 + brightRed: 35.5 + brightGreen: 60.5 + brightYellow: 92.6 + brightBlue: 37 + brightMagenta: 42.3 + brightCyan: 52.4 + brightWhite: 103.8 diff --git a/themes/sunbather.yaml b/themes/sunbather.yaml new file mode 100644 index 00000000..29ed6e52 --- /dev/null +++ b/themes/sunbather.yaml @@ -0,0 +1,49 @@ +name: "sunbather" +source: + marketplace_id: "jpokan.vscode-sunbather" + version: "0.0.4" + installs: 569 + author: "jpokan" + repo: "https://github.com/jpokan/vscode-sunbather" + url: "https://marketplace.visualstudio.com/items?itemName=jpokan.vscode-sunbather" +colors: + bg: "#080808" + fg: "#C6C6C6" + black: "#929292" + red: "#E27373" + green: "#94B979" + yellow: "#FFBA7B" + blue: "#97BEDC" + magenta: "#E1C0FA" + cyan: "#00988E" + white: "#DEDEDE" + brightBlack: "#BDBDBD" + brightRed: "#FFA1A1" + brightGreen: "#BDDEAB" + brightYellow: "#FFDCA0" + brightBlue: "#B1D8F6" + brightMagenta: "#FBDAFF" + brightCyan: "#1AB2A8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 72 + black: 43.5 + red: 45.1 + green: 58.5 + yellow: 73.4 + blue: 64.6 + magenta: 75.8 + cyan: 38.9 + white: 86.6 + brightBlack: 66.8 + brightRed: 65.5 + brightGreen: 80.6 + brightYellow: 88.2 + brightBlue: 79.8 + brightMagenta: 90.6 + brightCyan: 51 + brightWhite: 107.8 diff --git a/themes/sunilcode-dark-soothing-blue-light-reduced.yaml b/themes/sunilcode-dark-soothing-blue-light-reduced.yaml new file mode 100644 index 00000000..b461b6c9 --- /dev/null +++ b/themes/sunilcode-dark-soothing-blue-light-reduced.yaml @@ -0,0 +1,49 @@ +name: "SunilCode Dark Soothing (Blue Light Reduced)" +source: + marketplace_id: "fastestsunil.sunilcode-themes" + version: "1.0.2" + installs: 57 + author: "fastestsunil" + repo: "https://github.com/fastestsunil/sunilcode-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=fastestsunil.sunilcode-themes" +colors: + bg: "#1A1F2E" + fg: "#D4C5B9" + black: "#232837" + red: "#E06C75" + green: "#98C379" + yellow: "#E8B04A" + blue: "#D4A574" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D4C5B9" + brightBlack: "#232837" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E8B04A" + brightBlue: "#D4A574" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#D4C5B9" +meta: + mode: "dark" + accent: "pink" + hue: 270 + contrast: + fg: 71 + black: 0 + red: 41 + green: 61.2 + yellow: 62.9 + blue: 56.3 + magenta: 44.1 + cyan: 53.5 + white: 71 + brightBlack: 0 + brightRed: 41 + brightGreen: 61.2 + brightYellow: 62.9 + brightBlue: 56.3 + brightMagenta: 44.1 + brightCyan: 53.5 + brightWhite: 71 diff --git a/themes/sunny.yaml b/themes/sunny.yaml new file mode 100644 index 00000000..72e020da --- /dev/null +++ b/themes/sunny.yaml @@ -0,0 +1,49 @@ +name: "Sunny" +source: + marketplace_id: "FelCastilho.Sombrero-Sunny" + version: "0.0.0" + installs: 70 + author: "Felipe Castilho" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=FelCastilho.Sombrero-Sunny" +colors: + bg: "#1B1B1B" + fg: "#D9D9D9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 82.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/sunset-beach-dark.yaml b/themes/sunset-beach-dark.yaml new file mode 100644 index 00000000..cdd48228 --- /dev/null +++ b/themes/sunset-beach-dark.yaml @@ -0,0 +1,49 @@ +name: "Sunset Beach Dark" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2036 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" +colors: + bg: "#1A1F2E" + fg: "#E8F4FD" + black: "#252B3D" + red: "#E55039" + green: "#26D0CE" + yellow: "#FFD93D" + blue: "#74C0FC" + magenta: "#B53471" + cyan: "#17A2B8" + white: "#E8F4FD" + brightBlack: "#6C7B95" + brightRed: "#FF6B47" + brightGreen: "#4DABF7" + brightYellow: "#F6C23E" + brightBlue: "#87CEEB" + brightMagenta: "#D63384" + brightCyan: "#20B2AA" + brightWhite: "#F8F4F0" +meta: + mode: "dark" + accent: "red" + hue: 270 + contrast: + fg: 97.4 + black: 0 + red: 35.2 + green: 64.5 + yellow: 83.3 + blue: 62.7 + magenta: 22.4 + cyan: 43 + white: 97.4 + brightBlack: 30 + brightRed: 46.4 + brightGreen: 51.6 + brightYellow: 72.2 + brightBlue: 69.1 + brightMagenta: 29.8 + brightCyan: 49.2 + brightWhite: 99 diff --git a/themes/sunset-beach-light.yaml b/themes/sunset-beach-light.yaml new file mode 100644 index 00000000..c0291602 --- /dev/null +++ b/themes/sunset-beach-light.yaml @@ -0,0 +1,49 @@ +name: "Sunset Beach Light" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2036 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" +colors: + bg: "#FEFCF7" + fg: "#2C3E50" + black: "#2C3E50" + red: "#D73027" + green: "#17A2B8" + yellow: "#F6C23E" + blue: "#2E86AB" + magenta: "#B53471" + cyan: "#138496" + white: "#F8F4EB" + brightBlack: "#6B7280" + brightRed: "#E55039" + brightGreen: "#20B2AA" + brightYellow: "#D68910" + brightBlue: "#4DABF7" + brightMagenta: "#D63384" + brightCyan: "#26D0CE" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 93.6 + black: 93.6 + red: 70.2 + green: 55 + yellow: 26.9 + blue: 66.1 + magenta: 75.6 + cyan: 68.3 + white: 0 + brightBlack: 71.8 + brightRed: 62.6 + brightGreen: 48.9 + brightYellow: 52.1 + brightBlue: 46.6 + brightMagenta: 68.1 + brightCyan: 34.2 + brightWhite: 0 diff --git a/themes/sunset-boulevard.yaml b/themes/sunset-boulevard.yaml new file mode 100644 index 00000000..4b3a7520 --- /dev/null +++ b/themes/sunset-boulevard.yaml @@ -0,0 +1,49 @@ +name: "Sunset Boulevard" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#FDF1C2" + fg: "#3A2F1A" + black: "#4A4A4A" + red: "#B73838" + green: "#E19E4B" + yellow: "#FFE8B7" + blue: "#E19E4B" + magenta: "#B881A7" + cyan: "#F7E5C7" + white: "#FDF1C2" + brightBlack: "#A19D80" + brightRed: "#B73838" + brightGreen: "#E19E4B" + brightYellow: "#FFE8B7" + brightBlue: "#E19E4B" + brightMagenta: "#B881A7" + brightCyan: "#F7E5C7" + brightWhite: "#FFF7E6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 90.9 + black: 81.8 + red: 69.3 + green: 36.3 + yellow: 0 + blue: 36.3 + magenta: 49.6 + cyan: 0 + white: 0 + brightBlack: 44.6 + brightRed: 69.3 + brightGreen: 36.3 + brightYellow: 0 + brightBlue: 36.3 + brightMagenta: 49.6 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/sunset-noir.yaml b/themes/sunset-noir.yaml new file mode 100644 index 00000000..957246ae --- /dev/null +++ b/themes/sunset-noir.yaml @@ -0,0 +1,49 @@ +name: "Sunset Noir" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#1A0E0A" + fg: "#FFF8E1" + black: "#1A0E0A" + red: "#FF5722" + green: "#4CAF50" + yellow: "#FFAB00" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#FFF8E1" + brightBlack: "#8D6E63" + brightRed: "#FF8A65" + brightGreen: "#81C784" + brightYellow: "#FFD54F" + brightBlue: "#64B5F6" + brightMagenta: "#F06292" + brightCyan: "#4DD0E1" + brightWhite: "#FFF8E1" +meta: + mode: "dark" + accent: "red" + hue: 39 + contrast: + fg: 102.7 + black: 0 + red: 43.7 + green: 48 + yellow: 66.3 + blue: 43.5 + magenta: 33.1 + cyan: 57 + white: 102.7 + brightBlack: 29.1 + brightRed: 56.4 + brightGreen: 62.9 + brightYellow: 83.2 + brightBlue: 58.2 + brightMagenta: 44.5 + brightCyan: 67.9 + brightWhite: 102.7 diff --git a/themes/sunset-serenade.yaml b/themes/sunset-serenade.yaml new file mode 100644 index 00000000..1eef2960 --- /dev/null +++ b/themes/sunset-serenade.yaml @@ -0,0 +1,49 @@ +name: "Sunset serenade" +source: + marketplace_id: "kartoffelente.sunset-serenade" + version: "1.3.2" + installs: 130 + author: "Kartoffelente" + repo: "https://github.com/helheim0/sunset-serenade" + url: "https://marketplace.visualstudio.com/items?itemName=kartoffelente.sunset-serenade" +colors: + bg: "#FFFDF3" + fg: "#1C1B19" + black: "#000000" + red: "#CD3131" + green: "#78E08F" + yellow: "#FF9F43" + blue: "#0A3D62" + magenta: "#F368E0" + cyan: "#60A3BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#B8E994" + brightYellow: "#FECA57" + brightBlue: "#3C6382" + brightMagenta: "#FF9FF3" + brightCyan: "#82CCDD" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 102.7 + black: 104.7 + red: 72.6 + green: 26.6 + yellow: 38 + blue: 94.4 + magenta: 49.8 + cyan: 52.6 + white: 84.6 + brightBlack: 77.4 + brightRed: 72.6 + brightGreen: 17.5 + brightYellow: 22.7 + brightBlue: 80.2 + brightMagenta: 32.5 + brightCyan: 32.1 + brightWhite: 47.1 diff --git a/themes/sunset-theme.yaml b/themes/sunset-theme.yaml new file mode 100644 index 00000000..b6586e7e --- /dev/null +++ b/themes/sunset-theme.yaml @@ -0,0 +1,49 @@ +name: "Sunset theme" +source: + marketplace_id: "EdCanCe.retrowave-sunset-theme" + version: "0.0.3" + installs: 82 + author: "EdCanCe" + repo: "https://github.com/EdCanCe/sunset" + url: "https://marketplace.visualstudio.com/items?itemName=EdCanCe.retrowave-sunset-theme" +colors: + bg: "#000814" + fg: "#94B2E0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 247 + contrast: + fg: 59.6 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/sunsplash-monodark.yaml b/themes/sunsplash-monodark.yaml new file mode 100644 index 00000000..0fd75f49 --- /dev/null +++ b/themes/sunsplash-monodark.yaml @@ -0,0 +1,49 @@ +name: "sunsplash-monodark" +source: + marketplace_id: "Rsanttos.sunsplash-monodark" + version: "1.0.0" + installs: 66 + author: "Rsanttos" + repo: "https://github.com/vricardo5/monodark" + url: "https://marketplace.visualstudio.com/items?itemName=Rsanttos.sunsplash-monodark" +colors: + bg: "#1B1C22" + fg: "#BABE34" + black: "#4F4A1C" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 62.2 + black: 10 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.1 + cyan: 46.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 38 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/super-contrast.yaml b/themes/super-contrast.yaml new file mode 100644 index 00000000..07a7a225 --- /dev/null +++ b/themes/super-contrast.yaml @@ -0,0 +1,49 @@ +name: "super-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#15191D" + fg: "#FFFFFF" + black: "#20262C" + red: "#BA0E2E" + green: "#5D67AD" + yellow: "#D60257" + blue: "#E45635" + magenta: "#5D67AD" + cyan: "#E45635" + white: "#FFFFFF" + brightBlack: "#404C58" + brightRed: "#F03E5F" + brightGreen: "#A1A7CF" + brightYellow: "#FD418C" + brightBlue: "#F0A18F" + brightMagenta: "#A1A7CF" + brightCyan: "#F0A18F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 248 + contrast: + fg: 106.7 + black: 0 + red: 20.3 + green: 24.7 + yellow: 27.2 + blue: 36.9 + magenta: 24.7 + cyan: 36.9 + white: 106.7 + brightBlack: 11 + brightRed: 36.6 + brightGreen: 54.6 + brightYellow: 41.3 + brightBlue: 61.1 + brightMagenta: 54.6 + brightCyan: 61.1 + brightWhite: 106.7 diff --git a/themes/super-dark-cyberpunk-green.yaml b/themes/super-dark-cyberpunk-green.yaml new file mode 100644 index 00000000..44f4afa1 --- /dev/null +++ b/themes/super-dark-cyberpunk-green.yaml @@ -0,0 +1,49 @@ +name: "Super Dark Cyberpunk Green" +source: + marketplace_id: "JFeser.darkercolor" + version: "2.1.0" + installs: 13 + author: "J. Feser" + repo: "https://github.com/redo7370/darkercolors" + url: "https://marketplace.visualstudio.com/items?itemName=JFeser.darkercolor" +colors: + bg: "#050A05" + fg: "#F2F2F2" + black: "#060D06" + red: "#FF0000" + green: "#00FF00" + yellow: "#FF6600" + blue: "#00CCCC" + magenta: "#00CC00" + cyan: "#00CCCC" + white: "#F2F2F2" + brightBlack: "#081108" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#FF8533" + brightBlue: "#00FFFF" + brightMagenta: "#33FF33" + brightCyan: "#00FFFF" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "green" + hue: 145 + contrast: + fg: 99.2 + black: 0 + red: 37.4 + green: 86.4 + yellow: 46.9 + blue: 64.3 + magenta: 60.2 + cyan: 64.3 + white: 99.2 + brightBlack: 0 + brightRed: 47.8 + brightGreen: 88.9 + brightYellow: 54.7 + brightBlue: 92.1 + brightMagenta: 86.9 + brightCyan: 92.1 + brightWhite: 99.2 diff --git a/themes/super-dark-cyberpunk-grey.yaml b/themes/super-dark-cyberpunk-grey.yaml new file mode 100644 index 00000000..248d9ff6 --- /dev/null +++ b/themes/super-dark-cyberpunk-grey.yaml @@ -0,0 +1,49 @@ +name: "Super Dark Cyberpunk Grey" +source: + marketplace_id: "JFeser.darkercolor" + version: "2.1.0" + installs: 13 + author: "J. Feser" + repo: "https://github.com/redo7370/darkercolors" + url: "https://marketplace.visualstudio.com/items?itemName=JFeser.darkercolor" +colors: + bg: "#0A0A0A" + fg: "#F2F2F2" + black: "#0D0D0D" + red: "#FF0000" + green: "#00FF00" + yellow: "#FF6600" + blue: "#00CCCC" + magenta: "#CC00CC" + cyan: "#00CCCC" + white: "#F2F2F2" + brightBlack: "#111111" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#FF8533" + brightBlue: "#00FFFF" + brightMagenta: "#FF33FF" + brightCyan: "#00FFFF" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 99.2 + black: 0 + red: 37.4 + green: 86.3 + yellow: 46.9 + blue: 64.3 + magenta: 31.3 + cyan: 64.3 + white: 99.2 + brightBlack: 0 + brightRed: 47.8 + brightGreen: 88.9 + brightYellow: 54.7 + brightBlue: 92 + brightMagenta: 47.8 + brightCyan: 92 + brightWhite: 99.2 diff --git a/themes/super-dark-cyberpunk-purple.yaml b/themes/super-dark-cyberpunk-purple.yaml new file mode 100644 index 00000000..47d8fb38 --- /dev/null +++ b/themes/super-dark-cyberpunk-purple.yaml @@ -0,0 +1,49 @@ +name: "Super Dark Cyberpunk Purple" +source: + marketplace_id: "JFeser.darkercolor" + version: "2.1.0" + installs: 13 + author: "J. Feser" + repo: "https://github.com/redo7370/darkercolors" + url: "https://marketplace.visualstudio.com/items?itemName=JFeser.darkercolor" +colors: + bg: "#0A0510" + fg: "#F2F2F2" + black: "#0D0614" + red: "#FF0000" + green: "#00FF00" + yellow: "#FF6600" + blue: "#00CCCC" + magenta: "#CC00CC" + cyan: "#00CCCC" + white: "#F2F2F2" + brightBlack: "#110817" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#FF8533" + brightBlue: "#00FFFF" + brightMagenta: "#FF33FF" + brightCyan: "#00FFFF" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "pink" + hue: 306 + contrast: + fg: 99.3 + black: 0 + red: 37.5 + green: 86.4 + yellow: 46.9 + blue: 64.3 + magenta: 31.3 + cyan: 64.3 + white: 99.3 + brightBlack: 0 + brightRed: 47.8 + brightGreen: 88.9 + brightYellow: 54.7 + brightBlue: 92.1 + brightMagenta: 47.8 + brightCyan: 92.1 + brightWhite: 99.3 diff --git a/themes/super-light.yaml b/themes/super-light.yaml new file mode 100644 index 00000000..ebdf0108 --- /dev/null +++ b/themes/super-light.yaml @@ -0,0 +1,49 @@ +name: "super-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#5D67AD" + yellow: "#D60257" + blue: "#E45635" + magenta: "#5D67AD" + cyan: "#E45635" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#A1A7CF" + brightYellow: "#FD418C" + brightBlue: "#F0A18F" + brightMagenta: "#A1A7CF" + brightCyan: "#F0A18F" + brightWhite: "#666666" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 75.9 + yellow: 73.4 + blue: 63.6 + magenta: 75.9 + cyan: 63.6 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 46.3 + brightYellow: 59.3 + brightBlue: 40 + brightMagenta: 46.3 + brightCyan: 40 + brightWhite: 78.8 diff --git a/themes/super.yaml b/themes/super.yaml new file mode 100644 index 00000000..04c3bfbf --- /dev/null +++ b/themes/super.yaml @@ -0,0 +1,49 @@ +name: "super" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2C343D" + fg: "#FFFFFF" + black: "#37414C" + red: "#BA0E2E" + green: "#5D67AD" + yellow: "#D60257" + blue: "#E45635" + magenta: "#5D67AD" + cyan: "#E45635" + white: "#FFFFFF" + brightBlack: "#576678" + brightRed: "#F03E5F" + brightGreen: "#A1A7CF" + brightYellow: "#FD418C" + brightBlue: "#F0A18F" + brightMagenta: "#A1A7CF" + brightCyan: "#F0A18F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 251 + contrast: + fg: 102 + black: 0 + red: 15.6 + green: 19.9 + yellow: 22.4 + blue: 32.2 + magenta: 19.9 + cyan: 32.2 + white: 102 + brightBlack: 16.5 + brightRed: 31.9 + brightGreen: 49.9 + brightYellow: 36.6 + brightBlue: 56.4 + brightMagenta: 49.9 + brightCyan: 56.4 + brightWhite: 102 diff --git a/themes/superbright.yaml b/themes/superbright.yaml new file mode 100644 index 00000000..41ffc416 --- /dev/null +++ b/themes/superbright.yaml @@ -0,0 +1,49 @@ +name: "SuperBright" +source: + marketplace_id: "DIYST.super-bright" + version: "1.0.1" + installs: 1021 + author: "DIYST" + repo: "https://github.com/diyst/SuperBrightTheme" + url: "https://marketplace.visualstudio.com/items?itemName=DIYST.super-bright" +colors: + bg: "#120E16" + fg: "#FFFFFF" + black: "#44475A" + red: "#DE312B" + green: "#2FD651" + yellow: "#D0D662" + blue: "#9C6FCF" + magenta: "#DE559C" + cyan: "#6AC5D3" + white: "#656B84" + brightBlack: "#656B84" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#BD93F9" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 307 + contrast: + fg: 107.5 + black: 10.8 + red: 31.1 + green: 65.6 + yellow: 77.1 + blue: 36.3 + magenta: 38.8 + cyan: 63.6 + white: 25.2 + brightBlack: 25.2 + brightRed: 44 + brightGreen: 85.5 + brightYellow: 99.1 + brightBlue: 54.2 + brightMagenta: 55.2 + brightCyan: 84.5 + brightWhite: 102.6 diff --git a/themes/superman-theme.yaml b/themes/superman-theme.yaml new file mode 100644 index 00000000..4ee2498f --- /dev/null +++ b/themes/superman-theme.yaml @@ -0,0 +1,49 @@ +name: "Superman Theme" +source: + marketplace_id: "AndresCespedesMorales.superman-vscode" + version: "0.1.0" + installs: 1606 + author: "Andres Cespedes Morales" + repo: "https://github.com/pedes/superman-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndresCespedesMorales.superman-vscode" +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 230 + contrast: + fg: 100.4 + black: 0 + red: 37.9 + green: 58.1 + yellow: 66.4 + blue: 37.3 + magenta: 41 + cyan: 50.4 + white: 78.9 + brightBlack: 31.4 + brightRed: 34.3 + brightGreen: 58.1 + brightYellow: 66.4 + brightBlue: 37.3 + brightMagenta: 8.6 + brightCyan: 50.4 + brightWhite: 78.9 diff --git a/themes/supernova.yaml b/themes/supernova.yaml new file mode 100644 index 00000000..7d6f8afa --- /dev/null +++ b/themes/supernova.yaml @@ -0,0 +1,49 @@ +name: "Supernova" +source: + marketplace_id: "MikeBell.supernova-color-theme" + version: "0.1.6" + installs: 6737 + author: "Mike Bell" + repo: "https://github.com/mikeybell/supernova-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MikeBell.supernova-color-theme" +colors: + bg: "#202633" + fg: "#D6DEEB" + black: "#202633" + red: "#E97178" + green: "#C3E88D" + yellow: "#F1DC3D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#D6DEEB" + brightBlack: "#575656" + brightRed: "#E97178" + brightGreen: "#C3E88D" + brightYellow: "#F1DC3D" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 265 + contrast: + fg: 83.1 + black: 0 + red: 43.1 + green: 82.1 + yellow: 81.3 + blue: 53.8 + magenta: 51.7 + cyan: 76.2 + white: 83.1 + brightBlack: 13.5 + brightRed: 43.1 + brightGreen: 82.1 + brightYellow: 81.3 + brightBlue: 53.8 + brightMagenta: 51.7 + brightCyan: 76.2 + brightWhite: 104.8 diff --git a/themes/surreal.yaml b/themes/surreal.yaml new file mode 100644 index 00000000..6ddae646 --- /dev/null +++ b/themes/surreal.yaml @@ -0,0 +1,49 @@ +name: "Surreal" +source: + marketplace_id: "ShayanChakraborty.surreal-theme" + version: "1.0.0" + installs: 114 + author: "Shayan Chakraborty" + repo: "https://github.com/Shayan-R7/vscode-theme-surreal" + url: "https://marketplace.visualstudio.com/items?itemName=ShayanChakraborty.surreal-theme" +colors: + bg: "#151515" + fg: "#E0E0E0" + black: "#515151" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D5D5D5" + brightBlack: "#797979" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#CFCDCD" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.1 + black: 13.8 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 80.3 + brightBlack: 30.7 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 75.7 diff --git a/themes/susuwatari.yaml b/themes/susuwatari.yaml new file mode 100644 index 00000000..a0f951f1 --- /dev/null +++ b/themes/susuwatari.yaml @@ -0,0 +1,49 @@ +name: "Susuwatari" +source: + marketplace_id: "0xk175un3.susuwatari" + version: "0.0.1" + installs: 678 + author: "0xk175un3" + repo: "https://github.com/0xk175un3/susuwatari" + url: "https://marketplace.visualstudio.com/items?itemName=0xk175un3.susuwatari" +colors: + bg: "#FFFFFF" + fg: "#343A40" + black: "#000000" + red: "#C92A2A" + green: "#2B8A3E" + yellow: "#E67700" + blue: "#364FC7" + magenta: "#5F3DC4" + cyan: "#0B7285" + white: "#F8F9FA" + brightBlack: "#495057" + brightRed: "#FF6B6B" + brightGreen: "#51CF66" + brightYellow: "#FCC419" + brightBlue: "#5C7CFA" + brightMagenta: "#845EF7" + brightCyan: "#22B8CF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 96.5 + black: 106 + red: 75.6 + green: 69.9 + yellow: 56 + blue: 82.8 + magenta: 84 + cyan: 77.4 + white: 0 + brightBlack: 88.3 + brightRed: 52.8 + brightGreen: 38.5 + brightYellow: 27.1 + brightBlue: 64 + brightMagenta: 69 + brightCyan: 46.4 + brightWhite: 0 diff --git a/themes/svelte-5-theme.yaml b/themes/svelte-5-theme.yaml new file mode 100644 index 00000000..6381a368 --- /dev/null +++ b/themes/svelte-5-theme.yaml @@ -0,0 +1,49 @@ +name: "Svelte 5 theme" +source: + marketplace_id: "ZubairIbnZamir.svelte-theme-v5" + version: "5.0.2" + installs: 213 + author: "Zubair Ibn Zamir" + repo: "https://github.com/2u841r/svelte-theme-v5" + url: "https://marketplace.visualstudio.com/items?itemName=ZubairIbnZamir.svelte-theme-v5" +colors: + bg: "#0D1117" + fg: "#E6EDF3" + black: "#484F58" + red: "#F38BA3" + green: "#0BA95B" + yellow: "#F99157" + blue: "#12B5E5" + magenta: "#9D7DCE" + cyan: "#39C5CF" + white: "#C0C5CE" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#FCBA28" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 258 + contrast: + fg: 95 + black: 13.1 + red: 56 + green: 44.3 + yellow: 57.1 + blue: 55 + magenta: 40.3 + cyan: 61.4 + white: 70.8 + brightBlack: 29.3 + brightRed: 64.8 + brightGreen: 65.5 + brightYellow: 71.5 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 107.4 diff --git a/themes/sveltesse-black.yaml b/themes/sveltesse-black.yaml new file mode 100644 index 00000000..17879998 --- /dev/null +++ b/themes/sveltesse-black.yaml @@ -0,0 +1,49 @@ +name: "Sveltesse Black" +source: + marketplace_id: "AntonioSarcevic.theme-sveltesse" + version: "0.0.1" + installs: 770 + author: "Antonio Sarcevic" + repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" + url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" +colors: + bg: "#000000" + fg: "#DBD7CA" + black: "#212121" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#E6E6E6" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 82.3 + black: 0 + red: 41.8 + green: 37.7 + yellow: 76.6 + blue: 42.4 + magenta: 44.9 + cyan: 50.3 + white: 91.7 + brightBlack: 30.6 + brightRed: 41.8 + brightGreen: 37.7 + brightYellow: 76.6 + brightBlue: 42.4 + brightMagenta: 44.9 + brightCyan: 50.3 + brightWhite: 107.9 diff --git a/themes/sveltesse-dark-soft.yaml b/themes/sveltesse-dark-soft.yaml new file mode 100644 index 00000000..56026c2e --- /dev/null +++ b/themes/sveltesse-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Sveltesse Dark Soft" +source: + marketplace_id: "AntonioSarcevic.theme-sveltesse" + version: "0.0.1" + installs: 770 + author: "Antonio Sarcevic" + repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" + url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" +colors: + bg: "#292929" + fg: "#E6E6E6" + black: "#212121" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#E6E6E6" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 88 + black: 0 + red: 38.1 + green: 34 + yellow: 73 + blue: 38.7 + magenta: 41.3 + cyan: 46.6 + white: 88 + brightBlack: 26.9 + brightRed: 38.1 + brightGreen: 34 + brightYellow: 73 + brightBlue: 38.7 + brightMagenta: 41.3 + brightCyan: 46.6 + brightWhite: 104.2 diff --git a/themes/sveltesse-dark.yaml b/themes/sveltesse-dark.yaml new file mode 100644 index 00000000..b0d65ced --- /dev/null +++ b/themes/sveltesse-dark.yaml @@ -0,0 +1,49 @@ +name: "Sveltesse Dark" +source: + marketplace_id: "AntonioSarcevic.theme-sveltesse" + version: "0.0.1" + installs: 770 + author: "Antonio Sarcevic" + repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" + url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" +colors: + bg: "#1A1A1A" + fg: "#E6E6E6" + black: "#212121" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#E6E6E6" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 90.3 + black: 0 + red: 40.4 + green: 36.3 + yellow: 75.3 + blue: 41 + magenta: 43.6 + cyan: 48.9 + white: 90.3 + brightBlack: 29.2 + brightRed: 40.4 + brightGreen: 36.3 + brightYellow: 75.3 + brightBlue: 41 + brightMagenta: 43.6 + brightCyan: 48.9 + brightWhite: 106.5 diff --git a/themes/sveltesse-light-soft.yaml b/themes/sveltesse-light-soft.yaml new file mode 100644 index 00000000..02cfdce9 --- /dev/null +++ b/themes/sveltesse-light-soft.yaml @@ -0,0 +1,49 @@ +name: "Sveltesse Light Soft" +source: + marketplace_id: "AntonioSarcevic.theme-sveltesse" + version: "0.0.1" + installs: 770 + author: "Antonio Sarcevic" + repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" + url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" +colors: + bg: "#F7FAFD" + fg: "#212121" + black: "#1A1A1A" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#E6E6E6" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 99.8 + black: 101 + red: 70.2 + green: 74.7 + yellow: 45 + blue: 74.9 + magenta: 77.9 + cyan: 60.2 + white: 9.1 + brightBlack: 42.6 + brightRed: 70.2 + brightGreen: 74.7 + brightYellow: 45 + brightBlue: 74.9 + brightMagenta: 77.9 + brightCyan: 60.2 + brightWhite: 14.3 diff --git a/themes/sveltesse-light.yaml b/themes/sveltesse-light.yaml new file mode 100644 index 00000000..ffe3df9c --- /dev/null +++ b/themes/sveltesse-light.yaml @@ -0,0 +1,49 @@ +name: "Sveltesse Light" +source: + marketplace_id: "AntonioSarcevic.theme-sveltesse" + version: "0.0.1" + installs: 770 + author: "Antonio Sarcevic" + repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" + url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" +colors: + bg: "#FFFFFF" + fg: "#212121" + black: "#1A1A1A" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#E6E6E6" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 103.1 + black: 104.3 + red: 73.5 + green: 77.9 + yellow: 48.3 + blue: 78.2 + magenta: 81.1 + cyan: 63.5 + white: 12.3 + brightBlack: 45.8 + brightRed: 73.5 + brightGreen: 77.9 + brightYellow: 48.3 + brightBlue: 78.2 + brightMagenta: 81.1 + brightCyan: 63.5 + brightWhite: 17.6 diff --git a/themes/sw-tatooine.yaml b/themes/sw-tatooine.yaml new file mode 100644 index 00000000..f7291194 --- /dev/null +++ b/themes/sw-tatooine.yaml @@ -0,0 +1,49 @@ +name: "SW: Tatooine" +source: + marketplace_id: "RobertSchnable.star-wars-planets-theme" + version: "1.0.1" + installs: 14 + author: "Robert Schnable" + repo: "https://github.com/your-username/star-wars-planets-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RobertSchnable.star-wars-planets-theme" +colors: + bg: "#1A1408" + fg: "#E0C88A" + black: "#1A1408" + red: "#CC4400" + green: "#8A9040" + yellow: "#C47A15" + blue: "#7A8AAA" + magenta: "#9A6A8A" + cyan: "#7AAA9A" + white: "#E0C88A" + brightBlack: "#1A1408" + brightRed: "#CC4400" + brightGreen: "#8A9040" + brightYellow: "#C47A15" + brightBlue: "#7A8AAA" + brightMagenta: "#9A6A8A" + brightCyan: "#7AAA9A" + brightWhite: "#E0C88A" +meta: + mode: "dark" + accent: "orange" + hue: 84 + contrast: + fg: 73.6 + black: 0 + red: 28.9 + green: 39.2 + yellow: 39.5 + blue: 38.6 + magenta: 30.6 + cyan: 50.2 + white: 73.6 + brightBlack: 0 + brightRed: 28.9 + brightGreen: 39.2 + brightYellow: 39.5 + brightBlue: 38.6 + brightMagenta: 30.6 + brightCyan: 50.2 + brightWhite: 73.6 diff --git a/themes/sw61.yaml b/themes/sw61.yaml new file mode 100644 index 00000000..09dc042a --- /dev/null +++ b/themes/sw61.yaml @@ -0,0 +1,49 @@ +name: "SW61" +source: + marketplace_id: "heikopanjas.berlin-postal-themes" + version: "2.0.2" + installs: 38 + author: "Heiko Panjas" + repo: "https://github.com/heikopanjas/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=heikopanjas.berlin-postal-themes" +colors: + bg: "#00205A" + fg: "#C9D1D9" + black: "#484F58" + red: "#EC8E2C" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FDAC54" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 260 + contrast: + fg: 74.8 + black: 10.3 + red: 50.5 + green: 49.5 + yellow: 49.5 + blue: 49.5 + magenta: 49.5 + cyan: 58.7 + white: 61.3 + brightBlack: 26.5 + brightRed: 64.1 + brightGreen: 62 + brightYellow: 62 + brightBlue: 62 + brightMagenta: 61.9 + brightCyan: 67.2 + brightWhite: 104.7 diff --git a/themes/swablu.yaml b/themes/swablu.yaml new file mode 100644 index 00000000..b882c511 --- /dev/null +++ b/themes/swablu.yaml @@ -0,0 +1,49 @@ +name: "Swablu" +source: + marketplace_id: "zaneadix.Swablu" + version: "0.0.5" + installs: 943 + author: "Zane Adickes" + repo: "https://github.com/zaneadix/swablu-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zaneadix.Swablu" +colors: + bg: "#EBECF0" + fg: "#172B4D" + black: "#242728" + red: "#EBE055" + green: "#D3C858" + yellow: "#F6FA2A" + blue: "#878487" + magenta: "#878584" + cyan: "#757372" + white: "#D0D0CA" + brightBlack: "#636667" + brightRed: "#FFF69F" + brightGreen: "#FFF28F" + brightYellow: "#FEEE7F" + brightBlue: "#A2A5A6" + brightMagenta: "#AAAAAD" + brightCyan: "#B2B2B5" + brightWhite: "#E1E2DE" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 89.4 + black: 90.7 + red: 0 + green: 19.9 + yellow: 0 + blue: 53.4 + magenta: 53.1 + cyan: 61.6 + white: 14 + brightBlack: 67.8 + brightRed: 0 + brightGreen: 0 + brightYellow: 0 + brightBlue: 37.5 + brightMagenta: 34.5 + brightCyan: 30.2 + brightWhite: 0 diff --git a/themes/swaminarayan.yaml b/themes/swaminarayan.yaml new file mode 100644 index 00000000..ef1f3e0d --- /dev/null +++ b/themes/swaminarayan.yaml @@ -0,0 +1,49 @@ +name: "swaminarayan" +source: + marketplace_id: "Yagnesh.yagnesh" + version: "2.0.9" + installs: 49 + author: "Yagnesh" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Yagnesh.yagnesh" +colors: + bg: "#232636" + fg: "#00FFF3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 276 + contrast: + fg: 88.3 + black: 0 + red: 24.5 + green: 50.8 + yellow: 83.4 + blue: 25.2 + magenta: 27.5 + cyan: 45.3 + white: 87.8 + brightBlack: 19.8 + brightRed: 36.3 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.8 + brightMagenta: 43.1 + brightCyan: 53.2 + brightWhite: 87.8 diff --git a/themes/swamp-color-theme.yaml b/themes/swamp-color-theme.yaml new file mode 100644 index 00000000..e5d96319 --- /dev/null +++ b/themes/swamp-color-theme.yaml @@ -0,0 +1,49 @@ +name: "swamp-color-theme" +source: + marketplace_id: "wavebeem.theme-unoduetre" + version: "5.11.1" + installs: 4290 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/vscode-theme-unoduetre" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" +colors: + bg: "#1B322A" + fg: "#75F0C7" + black: "#333333" + red: "#DE8778" + green: "#6DE395" + yellow: "#DFCA9B" + blue: "#9CA3E8" + magenta: "#DFA5DB" + cyan: "#66EAE1" + white: "#DDF3EA" + brightBlack: "#333333" + brightRed: "#DE8778" + brightGreen: "#6DE395" + brightYellow: "#DFCA9B" + brightBlue: "#9CA3E8" + brightMagenta: "#DFA5DB" + brightCyan: "#66EAE1" + brightWhite: "#DDF3EA" +meta: + mode: "dark" + accent: "teal" + hue: 170 + contrast: + fg: 79.9 + black: 0 + red: 45.5 + green: 71.3 + yellow: 71 + blue: 50.5 + magenta: 59.3 + cyan: 77.3 + white: 92.1 + brightBlack: 0 + brightRed: 45.5 + brightGreen: 71.3 + brightYellow: 71 + brightBlue: 50.5 + brightMagenta: 59.3 + brightCyan: 77.3 + brightWhite: 92.1 diff --git a/themes/sweet-lemon.yaml b/themes/sweet-lemon.yaml new file mode 100644 index 00000000..18663abf --- /dev/null +++ b/themes/sweet-lemon.yaml @@ -0,0 +1,49 @@ +name: "Sweet Lemon" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 80 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" +colors: + bg: "#FAF9F7" + fg: "#1F1F1F" + black: "#CCCCCC" + red: "#FF6B6B" + green: "#9CD645" + yellow: "#FFD700" + blue: "#5CB7FF" + magenta: "#E086D3" + cyan: "#5DD3D3" + white: "#1F1F1F" + brightBlack: "#E0E0E0" + brightRed: "#FF5F5F" + brightGreen: "#B8F58C" + brightYellow: "#FFF899" + brightBlue: "#8CCFFF" + brightMagenta: "#EDAAFF" + brightCyan: "#8EF0F0" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.9 + black: 23.7 + red: 49.2 + green: 27.7 + yellow: 15.7 + blue: 38.9 + magenta: 44.6 + cyan: 29.3 + white: 99.9 + brightBlack: 12.3 + brightRed: 51.9 + brightGreen: 10 + brightYellow: 0 + brightBlue: 26.2 + brightMagenta: 29.2 + brightCyan: 12.3 + brightWhite: 102.5 diff --git a/themes/sweet-pascal.yaml b/themes/sweet-pascal.yaml new file mode 100644 index 00000000..56f9ea6a --- /dev/null +++ b/themes/sweet-pascal.yaml @@ -0,0 +1,49 @@ +name: "Sweet Pascal" +source: + marketplace_id: "PascalWelsch.sweet-pascal" + version: "0.0.5" + installs: 184 + author: "Pascal Welsch" + repo: "https://github.com/passsy/sweet-pascal" + url: "https://marketplace.visualstudio.com/items?itemName=PascalWelsch.sweet-pascal" +colors: + bg: "#222424" + fg: "#EEEEEE" + black: "#1C1A1A" + red: "#EA5E5E" + green: "#5C962C" + yellow: "#A68A0D" + blue: "#3993D4" + magenta: "#983498" + cyan: "#06969" + white: "#FFFFFF" + brightBlack: "#898989" + brightRed: "#FF6B68" + brightGreen: "#7BEA96" + brightYellow: "#E4E24A" + brightBlue: "#A4C2FF" + brightMagenta: "#FF92F1" + brightCyan: "#8DD2C5" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.1 + black: 0 + red: 38.8 + green: 35.7 + yellow: 38.2 + blue: 38.6 + magenta: 18.2 + cyan: 17.5 + white: 105.2 + brightBlack: 36.4 + brightRed: 46.4 + brightGreen: 77.6 + brightYellow: 82.7 + brightBlue: 66.9 + brightMagenta: 62 + brightCyan: 68.9 + brightWhite: 88.3 diff --git a/themes/sweet-vscode.yaml b/themes/sweet-vscode.yaml new file mode 100644 index 00000000..b92baeb8 --- /dev/null +++ b/themes/sweet-vscode.yaml @@ -0,0 +1,49 @@ +name: "sweet-vscode" +source: + marketplace_id: "EliverLara.sweet-vscode" + version: "1.1.1" + installs: 46712 + author: "Eliver Lara" + repo: "https://github.com/EliverLara/sweet-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=EliverLara.sweet-vscode" +colors: + bg: "#1E1E2E" + fg: "#FFFFFF" + black: "#222235" + red: "#F60055" + green: "#06C993" + yellow: "#9700BE" + blue: "#F69154" + magenta: "#EC89CB" + cyan: "#00DDED" + white: "#FFFFFF" + brightBlack: "#3F3F54" + brightRed: "#F60055" + brightGreen: "#06C993" + brightYellow: "#9700BE" + brightBlue: "#F69154" + brightMagenta: "#EC89CB" + brightCyan: "#00DDED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 105.8 + black: 0 + red: 33.9 + green: 58.7 + yellow: 18.5 + blue: 54.9 + magenta: 54.3 + cyan: 72.1 + white: 105.8 + brightBlack: 0 + brightRed: 33.9 + brightGreen: 58.7 + brightYellow: 18.5 + brightBlue: 54.9 + brightMagenta: 54.3 + brightCyan: 72.1 + brightWhite: 105.8 diff --git a/themes/sweetdracula-monokai.yaml b/themes/sweetdracula-monokai.yaml new file mode 100644 index 00000000..e25ca3b6 --- /dev/null +++ b/themes/sweetdracula-monokai.yaml @@ -0,0 +1,49 @@ +name: "sweetdracula monokai" +source: + marketplace_id: "lefd.sweetdracula-monokai" + version: "1.1.14" + installs: 8143 + author: "lefd" + repo: "https://github.com/LEFD/sweetdracula-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=lefd.sweetdracula-monokai" +colors: + bg: "#161925" + fg: "#F8F8F2" + black: "#666666" + red: "#FD971F" + green: "#A6E22E" + yellow: "#E6DB74" + blue: "#AE81FF" + magenta: "#F92672" + cyan: "#66D9EF" + white: "#E3E3DD" + brightBlack: "#6272A4" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#BD93F9" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 273 + contrast: + fg: 101.7 + black: 21.8 + red: 58.4 + green: 76.7 + yellow: 81.8 + blue: 46.2 + magenta: 37 + cyan: 73.1 + white: 88.2 + brightBlack: 27.8 + brightRed: 43.1 + brightGreen: 84.6 + brightYellow: 98.3 + brightBlue: 53.4 + brightMagenta: 54.3 + brightCyan: 83.7 + brightWhite: 101.7 diff --git a/themes/swnb-palenight-theme.yaml b/themes/swnb-palenight-theme.yaml new file mode 100644 index 00000000..cd61ba1c --- /dev/null +++ b/themes/swnb-palenight-theme.yaml @@ -0,0 +1,49 @@ +name: "Swnb Palenight Theme" +source: + marketplace_id: "Swnb.swnb-material-palenight-theme" + version: "0.8.3" + installs: 3132 + author: "Swnb" + repo: "https://github.com/swnb/vscode-palenight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Swnb.swnb-material-palenight-theme" +colors: + bg: "#292D3E" + fg: "#9CB3F5" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#8FE4E4" + magenta: "#6ED4FF" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#8FE4E4" + brightMagenta: "#6ED4FF" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 57.5 + black: 0 + red: 40 + green: 80.6 + yellow: 75.3 + blue: 77 + magenta: 68.8 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 40 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 77 + brightMagenta: 68.8 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/syl-black.yaml b/themes/syl-black.yaml new file mode 100644 index 00000000..8f06d7ad --- /dev/null +++ b/themes/syl-black.yaml @@ -0,0 +1,49 @@ +name: "syl black" +source: + marketplace_id: "Sylex.syl-themes" + version: "1.2.0" + installs: 32 + author: "Sylex" + repo: "https://github.com/ItzSylex/syl-themes-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" +colors: + bg: "#0C0E0F" + fg: "#D3C6AA" + black: "#333333" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EEEEEE" + brightBlack: "#555555" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72.4 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 96.5 + brightBlack: 15.8 + brightRed: 39.3 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 107.6 diff --git a/themes/syl-chocolate.yaml b/themes/syl-chocolate.yaml new file mode 100644 index 00000000..e38c9890 --- /dev/null +++ b/themes/syl-chocolate.yaml @@ -0,0 +1,49 @@ +name: "syl chocolate" +source: + marketplace_id: "Sylex.syl-themes" + version: "1.2.0" + installs: 32 + author: "Sylex" + repo: "https://github.com/ItzSylex/syl-themes-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" +colors: + bg: "#211C1C" + fg: "#D3C6AA" + black: "#333333" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EEEEEE" + brightBlack: "#555555" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 71 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29 + cyan: 46.8 + white: 95 + brightBlack: 14.4 + brightRed: 37.8 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 106.2 diff --git a/themes/syl-forest.yaml b/themes/syl-forest.yaml new file mode 100644 index 00000000..e98bf12a --- /dev/null +++ b/themes/syl-forest.yaml @@ -0,0 +1,49 @@ +name: "syl forest" +source: + marketplace_id: "Sylex.syl-themes" + version: "1.2.0" + installs: 32 + author: "Sylex" + repo: "https://github.com/ItzSylex/syl-themes-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" +colors: + bg: "#1A211C" + fg: "#D3C6AA" + black: "#333333" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EEEEEE" + brightBlack: "#555555" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 154 + contrast: + fg: 70.7 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 94.7 + brightBlack: 14.1 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 105.9 diff --git a/themes/syl-ice.yaml b/themes/syl-ice.yaml new file mode 100644 index 00000000..1271307f --- /dev/null +++ b/themes/syl-ice.yaml @@ -0,0 +1,49 @@ +name: "syl ice" +source: + marketplace_id: "Sylex.syl-themes" + version: "1.2.0" + installs: 32 + author: "Sylex" + repo: "https://github.com/ItzSylex/syl-themes-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" +colors: + bg: "#182233" + fg: "#D3C6AA" + black: "#333333" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EEEEEE" + brightBlack: "#555555" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 70.3 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 94.3 + brightBlack: 13.7 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 105.5 diff --git a/themes/syl-plum.yaml b/themes/syl-plum.yaml new file mode 100644 index 00000000..305a136e --- /dev/null +++ b/themes/syl-plum.yaml @@ -0,0 +1,49 @@ +name: "syl plum" +source: + marketplace_id: "Sylex.syl-themes" + version: "1.2.0" + installs: 32 + author: "Sylex" + repo: "https://github.com/ItzSylex/syl-themes-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" +colors: + bg: "#1A1626" + fg: "#D3C6AA" + black: "#333333" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EEEEEE" + brightBlack: "#555555" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 295 + contrast: + fg: 71.6 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 95.6 + brightBlack: 14.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 106.7 diff --git a/themes/syl-shadow.yaml b/themes/syl-shadow.yaml new file mode 100644 index 00000000..7a9f4c10 --- /dev/null +++ b/themes/syl-shadow.yaml @@ -0,0 +1,49 @@ +name: "syl shadow" +source: + marketplace_id: "Sylex.syl-themes" + version: "1.2.0" + installs: 32 + author: "Sylex" + repo: "https://github.com/ItzSylex/syl-themes-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" +colors: + bg: "#2C2C3B" + fg: "#D3C6AA" + black: "#333333" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EEEEEE" + brightBlack: "#555555" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 68.2 + black: 0 + red: 23.2 + green: 49.5 + yellow: 82.1 + blue: 23.9 + magenta: 26.2 + cyan: 44 + white: 92.2 + brightBlack: 11.6 + brightRed: 35 + brightGreen: 60 + brightYellow: 92.1 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 103.4 diff --git a/themes/syntax-palette.yaml b/themes/syntax-palette.yaml new file mode 100644 index 00000000..a54df426 --- /dev/null +++ b/themes/syntax-palette.yaml @@ -0,0 +1,49 @@ +name: "Syntax Palette" +source: + marketplace_id: "aqsa.syntax-palette" + version: "0.0.5" + installs: 216 + author: "aqsa" + repo: "https://github.com/Bacteria007/syntax-palette" + url: "https://marketplace.visualstudio.com/items?itemName=aqsa.syntax-palette" +colors: + bg: "#1A1D24" + fg: "#F1F5F9" + black: "#1F2937" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#8B5CF6" + cyan: "#06B6D4" + white: "#F8FAFC" + brightBlack: "#1F2937" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#8B5CF6" + brightCyan: "#06B6D4" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "magenta" + hue: 267 + contrast: + fg: 99.2 + black: 0 + red: 36.1 + green: 51.2 + yellow: 58.7 + blue: 36.1 + magenta: 31.2 + cyan: 53.2 + white: 102.7 + brightBlack: 0 + brightRed: 36.1 + brightGreen: 51.2 + brightYellow: 58.7 + brightBlue: 36.1 + brightMagenta: 31.2 + brightCyan: 53.2 + brightWhite: 102.7 diff --git a/themes/synthe.yaml b/themes/synthe.yaml new file mode 100644 index 00000000..9ef56356 --- /dev/null +++ b/themes/synthe.yaml @@ -0,0 +1,49 @@ +name: "Synthe" +source: + marketplace_id: "sesav.synthe-theme" + version: "1.0.3" + installs: 68 + author: "sesav" + repo: "https://github.com/sesav/synthe-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sesav.synthe-theme" +colors: + bg: "#26222A" + fg: "#C7C7C7" + black: "#26222A" + red: "#AB83BA" + green: "#88B88E" + yellow: "#D9C362" + blue: "#88B88E" + magenta: "#AB83BA" + cyan: "#88B88E" + white: "#C7C7C7" + brightBlack: "#4A4A4A" + brightRed: "#AB83BA" + brightGreen: "#88B88E" + brightYellow: "#D9C362" + brightBlue: "#88B88E" + brightMagenta: "#AB83BA" + brightCyan: "#88B88E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 308 + contrast: + fg: 70 + black: 0 + red: 40.7 + green: 55 + yellow: 67.9 + blue: 55 + magenta: 40.7 + cyan: 55 + white: 70 + brightBlack: 9.3 + brightRed: 40.7 + brightGreen: 55 + brightYellow: 67.9 + brightBlue: 55 + brightMagenta: 40.7 + brightCyan: 55 + brightWhite: 105.2 diff --git a/themes/synthesis.yaml b/themes/synthesis.yaml new file mode 100644 index 00000000..85ffc5ee --- /dev/null +++ b/themes/synthesis.yaml @@ -0,0 +1,49 @@ +name: "Synthesis" +source: + marketplace_id: "dazon.synthesis" + version: "0.0.1" + installs: 409 + author: "dazon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dazon.synthesis" +colors: + bg: "#111111" + fg: "#FFFFFF" + black: "#373A3F" + red: "#FF1D43" + green: "#92FF25" + yellow: "#FFF838" + blue: "#00CCFF" + magenta: "#9F2BFF" + cyan: "#00FFC8" + white: "#FFFFFF" + brightBlack: "#464A50" + brightRed: "#FF5272" + brightGreen: "#7CFF09" + brightYellow: "#FBFF0C" + brightBlue: "#00EEFF" + brightMagenta: "#993AFF" + brightCyan: "#20FFD2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 107.4 + black: 0 + red: 37.9 + green: 90.5 + yellow: 99 + blue: 66.7 + magenta: 28.6 + cyan: 89.2 + white: 107.4 + brightBlack: 11.3 + brightRed: 44 + brightGreen: 89 + brightYellow: 101.6 + brightBlue: 83 + brightMagenta: 29.3 + brightCyan: 89.7 + brightWhite: 107.4 diff --git a/themes/synthor-dark-fork.yaml b/themes/synthor-dark-fork.yaml new file mode 100644 index 00000000..cb135c95 --- /dev/null +++ b/themes/synthor-dark-fork.yaml @@ -0,0 +1,49 @@ +name: "Synthor Dark - Fork" +source: + marketplace_id: "adinahawaldar.synthor-dark" + version: "0.0.10" + installs: 42 + author: "adinahawaldar" + repo: "https://github.com/adinahawaldar/synthor-dark" + url: "https://marketplace.visualstudio.com/items?itemName=adinahawaldar.synthor-dark" +colors: + bg: "#14161E" + fg: "#FDFDFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#6298D3" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 105.7 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 44 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/synthwave-2077.yaml b/themes/synthwave-2077.yaml new file mode 100644 index 00000000..36e72fc2 --- /dev/null +++ b/themes/synthwave-2077.yaml @@ -0,0 +1,49 @@ +name: "Synthwave 2077" +source: + marketplace_id: "DangoWeb.synthwave-2077" + version: "1.0.1" + installs: 8900 + author: "Dango Web Solutions" + repo: "https://github.com/faisalnjs/Synthwave-2077" + url: "https://marketplace.visualstudio.com/items?itemName=DangoWeb.synthwave-2077" +colors: + bg: "#101116" + fg: "#00D4B1" + black: "#10D4B0" + red: "#940303" + green: "#0059FF" + yellow: "#1A1B03" + blue: "#004CF1" + magenta: "#94058A" + cyan: "#029790" + white: "#311B92" + brightBlack: "#02ADF1" + brightRed: "#BE0000" + brightGreen: "#00FF9C" + brightYellow: "#D0F30C" + brightBlue: "#00A2FF" + brightMagenta: "#E215D4" + brightCyan: "#08E1D7" + brightWhite: "#2EB8F8" +meta: + mode: "dark" + accent: "pink" + hue: 276 + contrast: + fg: 66.5 + black: 66.5 + red: 12.8 + green: 25.4 + yellow: 0 + blue: 21.1 + magenta: 16.1 + cyan: 38.2 + white: 0 + brightBlack: 52.3 + brightRed: 21.5 + brightGreen: 87.7 + brightYellow: 90.1 + brightBlue: 48.8 + brightMagenta: 36.3 + brightCyan: 74.5 + brightWhite: 57.7 diff --git a/themes/synthwave-84-csav-edition.yaml b/themes/synthwave-84-csav-edition.yaml new file mode 100644 index 00000000..2436daec --- /dev/null +++ b/themes/synthwave-84-csav-edition.yaml @@ -0,0 +1,49 @@ +name: "Synthwave '84 - CSAV edition" +source: + marketplace_id: "csdotav.synthwave84-csav-edition" + version: "1.0.1" + installs: 3923 + author: "csdotav" + repo: "https://github.com/ArielCalisaya/synthwave84-csdotav" + url: "https://marketplace.visualstudio.com/items?itemName=csdotav.synthwave84-csav-edition" +colors: + bg: "#262335" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 292 + contrast: + fg: 77.5 + black: 0 + red: 24.7 + green: 51 + yellow: 83.6 + blue: 25.5 + magenta: 27.8 + cyan: 45.6 + white: 88 + brightBlack: 20.1 + brightRed: 36.6 + brightGreen: 61.6 + brightYellow: 93.7 + brightBlue: 38 + brightMagenta: 43.4 + brightCyan: 53.4 + brightWhite: 88 diff --git a/themes/synthwave-84.yaml b/themes/synthwave-84.yaml new file mode 100644 index 00000000..67866bd7 --- /dev/null +++ b/themes/synthwave-84.yaml @@ -0,0 +1,49 @@ +name: "Synthwave 84" +source: + marketplace_id: "AgraeonLabs.dev-themes" + version: "0.1.0" + installs: 283 + author: "Agraeon Labs" + repo: "https://github.com/adiagcodelance/VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" +colors: + bg: "#241B2F" + fg: "#F7F3FF" + black: "#241B2F" + red: "#FE4450" + green: "#72F1B8" + yellow: "#FEDE5D" + blue: "#03EDF9" + magenta: "#FF7EDB" + cyan: "#36F9F6" + white: "#F7F3FF" + brightBlack: "#241B2F" + brightRed: "#FE4450" + brightGreen: "#72F1B8" + brightYellow: "#FEDE5D" + brightBlue: "#03EDF9" + brightMagenta: "#FF7EDB" + brightCyan: "#36F9F6" + brightWhite: "#F7F3FF" +meta: + mode: "dark" + accent: "orange" + hue: 304 + contrast: + fg: 99.1 + black: 0 + red: 39.6 + green: 82.3 + yellow: 85.7 + blue: 80.7 + magenta: 55.9 + cyan: 87 + white: 99.1 + brightBlack: 0 + brightRed: 39.6 + brightGreen: 82.3 + brightYellow: 85.7 + brightBlue: 80.7 + brightMagenta: 55.9 + brightCyan: 87 + brightWhite: 99.1 diff --git a/themes/synthwave-alpha.yaml b/themes/synthwave-alpha.yaml new file mode 100644 index 00000000..67bf6481 --- /dev/null +++ b/themes/synthwave-alpha.yaml @@ -0,0 +1,49 @@ +name: "Synthwave Alpha" +source: + marketplace_id: "vikpe.synthwave-alpha" + version: "0.2.1" + installs: 790 + author: "Viktor Persson" + repo: "https://github.com/vikpe/synthwave-alpha-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=vikpe.synthwave-alpha" +colors: + bg: "#241B30" + fg: "#F2F2E3" + black: "#241B30" + red: "#9A0048" + green: "#00986C" + yellow: "#ADAD3E" + blue: "#5B169C" + magenta: "#B300AD" + cyan: "#00B0B1" + white: "#B9B1BC" + brightBlack: "#7F7094" + brightRed: "#E60A70" + brightGreen: "#0AE4A4" + brightYellow: "#F9F972" + brightBlue: "#AA54F9" + brightMagenta: "#FF00F6" + brightCyan: "#00FBFD" + brightWhite: "#F2F2E3" +meta: + mode: "dark" + accent: "pink" + hue: 303 + contrast: + fg: 96.6 + black: 0 + red: 13.2 + green: 35.9 + yellow: 53.2 + blue: 7.9 + magenta: 22.4 + cyan: 48.5 + white: 59.5 + brightBlack: 28.3 + brightRed: 30.7 + brightGreen: 72.5 + brightYellow: 97.7 + brightBlue: 33.7 + brightMagenta: 43.5 + brightCyan: 88 + brightWhite: 96.6 diff --git a/themes/synthwave-material-ansi-16.yaml b/themes/synthwave-material-ansi-16.yaml new file mode 100644 index 00000000..8e86a5f0 --- /dev/null +++ b/themes/synthwave-material-ansi-16.yaml @@ -0,0 +1,49 @@ +name: "SynthWave Material Ansi 16" +source: + marketplace_id: "ctenbrinke.ansi16" + version: "0.3.8" + installs: 824 + author: "chtenb" + repo: "https://github.com/chtenb/vscode-ansi16" + url: "https://marketplace.visualstudio.com/items?itemName=ctenbrinke.ansi16" +colors: + bg: "#262335" + fg: "#CCCCCC" + black: "#676E95" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#94AFEB" + magenta: "#C792EA" + cyan: "#B9DEDF" + white: "#B4B8D0" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#87DE97" + brightYellow: "#F78C6C" + brightBlue: "#B9DEDF" + brightMagenta: "#C792EA" + brightCyan: "#8EE2E5" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "red" + hue: 292 + contrast: + fg: 72.7 + black: 24.5 + red: 44.6 + green: 82.2 + yellow: 77 + blue: 56.2 + magenta: 51.8 + cyan: 79.3 + white: 61.7 + brightBlack: 24.5 + brightRed: 41.7 + brightGreen: 72.2 + brightYellow: 53 + brightBlue: 79.3 + brightMagenta: 51.8 + brightCyan: 77.6 + brightWhite: 83 diff --git a/themes/synthwave.yaml b/themes/synthwave.yaml new file mode 100644 index 00000000..82df5294 --- /dev/null +++ b/themes/synthwave.yaml @@ -0,0 +1,49 @@ +name: "Synthwave" +source: + marketplace_id: "Jonaqhan.jonaqhan" + version: "4.8.0" + installs: 753 + author: "Jonaqhan" + repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" +colors: + bg: "#261623" + fg: "#71D5D5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EAA4DC" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFDBF8" +meta: + mode: "dark" + accent: "pink" + hue: 334 + contrast: + fg: 70.3 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 63.9 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.8 diff --git a/themes/synthy.yaml b/themes/synthy.yaml new file mode 100644 index 00000000..3b9af150 --- /dev/null +++ b/themes/synthy.yaml @@ -0,0 +1,49 @@ +name: "synthy" +source: + marketplace_id: "yondav.synthy" + version: "1.0.2" + installs: 300 + author: "yondav" + repo: "https://github.com/yondav/synthy" + url: "https://marketplace.visualstudio.com/items?itemName=yondav.synthy" +colors: + bg: "#161618" + fg: "#F1EBF3" + black: "#222222" + red: "#FF8D8D" + green: "#89DF95" + yellow: "#FCE789" + blue: "#729FCF" + magenta: "#94699B" + cyan: "#55DBE0" + white: "#FAFAFA" + brightBlack: "#333333" + brightRed: "#FF4646" + brightGreen: "#55ED6A" + brightYellow: "#FFE055" + brightBlue: "#49B8FD" + brightMagenta: "#D87DE4" + brightCyan: "#1CF3FB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 95.1 + black: 0 + red: 57.8 + green: 74.8 + yellow: 91.2 + blue: 47.5 + magenta: 30.2 + cyan: 72.9 + white: 103.6 + brightBlack: 0 + brightRed: 41 + brightGreen: 78 + brightYellow: 87.7 + brightBlue: 58.4 + brightMagenta: 50 + brightCyan: 84.9 + brightWhite: 107 diff --git a/themes/sypher.yaml b/themes/sypher.yaml new file mode 100644 index 00000000..494f9ff8 --- /dev/null +++ b/themes/sypher.yaml @@ -0,0 +1,49 @@ +name: "Sypher" +source: + marketplace_id: "CodingInSylens.sypher-visual-studio-code" + version: "0.0.1" + installs: 125 + author: "CodingInSylens" + repo: "https://github.com/Sylenss/Sypher" + url: "https://marketplace.visualstudio.com/items?itemName=CodingInSylens.sypher-visual-studio-code" +colors: + bg: "#1B2229" + fg: "#B8934E" + black: "#0E0F11" + red: "#AE6C61" + green: "#3C6B64" + yellow: "#999166" + blue: "#365991" + magenta: "#3D4873" + cyan: "#4B8088" + white: "#9C9D9D" + brightBlack: "#58595F" + brightRed: "#D2836E" + brightGreen: "#499A80" + brightYellow: "#A77822" + brightBlue: "#619BD1" + brightMagenta: "#515CAD" + brightCyan: "#B0E3DC" + brightWhite: "#DDDCD3" +meta: + mode: "dark" + accent: "purple" + hue: 249 + contrast: + fg: 44.7 + black: 0 + red: 31.4 + green: 19.5 + yellow: 40.4 + blue: 15.6 + magenta: 9.8 + cyan: 28.7 + white: 46.9 + brightBlack: 15.5 + brightRed: 44.2 + brightGreen: 38.3 + brightYellow: 32.9 + brightBlue: 43.6 + brightMagenta: 19.6 + brightCyan: 81.2 + brightWhite: 82.8 diff --git a/themes/syrinx.yaml b/themes/syrinx.yaml new file mode 100644 index 00000000..c723f64c --- /dev/null +++ b/themes/syrinx.yaml @@ -0,0 +1,49 @@ +name: "syrinx" +source: + marketplace_id: "JohannesFreutel.syrinx" + version: "0.1.6" + installs: 28 + author: "JohannesFreutel" + repo: "https://github.com/JohannesFreutel/syrinx-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.syrinx" +colors: + bg: "#141C27" + fg: "#F0F0F0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 96.5 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/sys1.yaml b/themes/sys1.yaml new file mode 100644 index 00000000..af5c6553 --- /dev/null +++ b/themes/sys1.yaml @@ -0,0 +1,49 @@ +name: "sys1" +source: + marketplace_id: "adrianlimws.sys1-theme" + version: "0.0.2" + installs: 113 + author: "adrianlimws" + repo: "https://github.com/adrianlimws/sys1-theme" + url: "https://marketplace.visualstudio.com/items?itemName=adrianlimws.sys1-theme" +colors: + bg: "#131313" + fg: "#FFF668" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 98.3 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/sysop.yaml b/themes/sysop.yaml new file mode 100644 index 00000000..a5d4139a --- /dev/null +++ b/themes/sysop.yaml @@ -0,0 +1,49 @@ +name: "sysop" +source: + marketplace_id: "Urtokk.sysoptheme" + version: "0.3.2" + installs: 141 + author: "Urtokk" + repo: "https://github.com/urtokk/vscode-theme-sysop" + url: "https://marketplace.visualstudio.com/items?itemName=Urtokk.sysoptheme" +colors: + bg: "#101010" + fg: "#00A6A6" + black: "#0D0D0D" + red: "#AE0000" + green: "#29E104" + yellow: "#B3B900" + blue: "#2724CC" + magenta: "#AE0065" + cyan: "#02FFDD" + white: "#CCCECE" + brightBlack: "#464646" + brightRed: "#FF2424" + brightGreen: "#30E104" + brightYellow: "#F6FF02" + brightBlue: "#4E96F5" + brightMagenta: "#FF02FF" + brightCyan: "#02F7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 45.3 + black: 0 + red: 18.2 + green: 70.6 + yellow: 60.2 + blue: 11.5 + magenta: 19.6 + cyan: 90.1 + white: 76.2 + brightBlack: 10.1 + brightRed: 38 + brightGreen: 70.7 + brightYellow: 101 + brightBlue: 45 + brightMagenta: 45.8 + brightCyan: 87.6 + brightWhite: 107.4 diff --git a/themes/t-theme.yaml b/themes/t-theme.yaml new file mode 100644 index 00000000..1a2f4741 --- /dev/null +++ b/themes/t-theme.yaml @@ -0,0 +1,49 @@ +name: "T-Theme" +source: + marketplace_id: "tathagata1805.t-theme" + version: "0.0.1" + installs: 221 + author: "Tathagata Chakraborty" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tathagata1805.t-theme" +colors: + bg: "#2F3243" + fg: "#B4B4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + contrast: + fg: 55.9 + black: 0 + red: 21.9 + green: 48.2 + yellow: 80.8 + blue: 22.6 + magenta: 24.9 + cyan: 42.7 + white: 85.2 + brightBlack: 17.2 + brightRed: 33.7 + brightGreen: 58.7 + brightYellow: 90.8 + brightBlue: 35.2 + brightMagenta: 40.5 + brightCyan: 50.6 + brightWhite: 85.2 diff --git a/themes/t3chdad-darkside-fork.yaml b/themes/t3chdad-darkside-fork.yaml new file mode 100644 index 00000000..f8ac60e4 --- /dev/null +++ b/themes/t3chdad-darkside-fork.yaml @@ -0,0 +1,49 @@ +name: "T3chDad Darkside - Fork" +source: + marketplace_id: "T3chDad.t3chdad-darkside" + version: "0.2.3" + installs: 69 + author: "T3chDad" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=T3chDad.t3chdad-darkside" +colors: + bg: "#1E1E1E" + fg: "#EAEAEA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 92.4 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/t3nsor-solo-leveling.yaml b/themes/t3nsor-solo-leveling.yaml new file mode 100644 index 00000000..7611b3dd --- /dev/null +++ b/themes/t3nsor-solo-leveling.yaml @@ -0,0 +1,49 @@ +name: "t3nsor-solo-leveling" +source: + marketplace_id: "t3nsor.t3nsor-solo-leveling-purple" + version: "0.0.1" + installs: 353 + author: "t3nsor" + repo: "https://github.com/t3nsor98/t3nsor-solo-leveling" + url: "https://marketplace.visualstudio.com/items?itemName=t3nsor.t3nsor-solo-leveling-purple" +colors: + bg: "#070215" + fg: "#E1E1E0" + black: "#474747" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 295 + contrast: + fg: 88.4 + black: 10.8 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/tabycord.yaml b/themes/tabycord.yaml new file mode 100644 index 00000000..b26f947b --- /dev/null +++ b/themes/tabycord.yaml @@ -0,0 +1,49 @@ +name: "TabyCord" +source: + marketplace_id: "Tabytac.tabycord" + version: "0.1.3" + installs: 142 + author: "Tabytac" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Tabytac.tabycord" +colors: + bg: "#181818" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.4 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.5 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/taco-syntax.yaml b/themes/taco-syntax.yaml new file mode 100644 index 00000000..87e7c580 --- /dev/null +++ b/themes/taco-syntax.yaml @@ -0,0 +1,49 @@ +name: "Taco Syntax" +source: + marketplace_id: "barelyreaper.taco-syntax" + version: "0.0.6" + installs: 334 + author: "Reaper" + repo: "https://github.com/barelyhuman/taco-syntax" + url: "https://marketplace.visualstudio.com/items?itemName=barelyreaper.taco-syntax" +colors: + bg: "#212529" + fg: "#E9ECEF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E9ECEF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 92.4 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.8 + blue: 25.6 + magenta: 27.9 + cyan: 45.7 + white: 92.4 + brightBlack: 20.2 + brightRed: 36.7 + brightGreen: 61.7 + brightYellow: 93.8 + brightBlue: 38.2 + brightMagenta: 43.5 + brightCyan: 53.6 + brightWhite: 105 diff --git a/themes/tahigh.yaml b/themes/tahigh.yaml new file mode 100644 index 00000000..87583a3e --- /dev/null +++ b/themes/tahigh.yaml @@ -0,0 +1,49 @@ +name: "tahigh" +source: + marketplace_id: "tahakocabuga.blackcurate" + version: "0.0.1" + installs: 482 + author: "tahakocabuga" + repo: "https://github.com/tahakocabuga/vscode-blackcurate" + url: "https://marketplace.visualstudio.com/items?itemName=tahakocabuga.blackcurate" +colors: + bg: "#000000" + fg: "#8F93A2" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#BB77FF" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#BB77FF" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 44.3 + black: 0 + red: 44.6 + green: 85.2 + yellow: 79.9 + blue: 56.9 + magenta: 46.6 + cyan: 79.3 + white: 107.9 + brightBlack: 12.5 + brightRed: 44.6 + brightGreen: 85.2 + brightYellow: 79.9 + brightBlue: 56.9 + brightMagenta: 46.6 + brightCyan: 79.3 + brightWhite: 107.9 diff --git a/themes/taiga.yaml b/themes/taiga.yaml new file mode 100644 index 00000000..45a6b598 --- /dev/null +++ b/themes/taiga.yaml @@ -0,0 +1,49 @@ +name: "Taiga" +source: + marketplace_id: "daniilshat.taiga" + version: "1.1.0" + installs: 316 + author: "daniilshat" + repo: "https://github.com/daniilshat/taiga" + url: "https://marketplace.visualstudio.com/items?itemName=daniilshat.taiga" +colors: + bg: "#031B1B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 195 + contrast: + fg: 79.3 + black: 0 + red: 26.6 + green: 52.8 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.9 diff --git a/themes/tail-dark-theme.yaml b/themes/tail-dark-theme.yaml new file mode 100644 index 00000000..5143aa5a --- /dev/null +++ b/themes/tail-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Tail Dark Theme" +source: + marketplace_id: "webldavi.tail-theme" + version: "0.0.5" + installs: 2419 + author: "webldavi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=webldavi.tail-theme" +colors: + bg: "#18181B" + fg: "#C1C1CB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 68.5 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/tailwind-amber-dark.yaml b/themes/tailwind-amber-dark.yaml new file mode 100644 index 00000000..da398f6b --- /dev/null +++ b/themes/tailwind-amber-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Amber Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#78350F" + fg: "#FEF3C7" + black: "#92400E" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#FDE68A" + brightBlack: "#92400E" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FDE68A" +meta: + mode: "dark" + accent: "teal" + hue: 46 + contrast: + fg: 86.6 + black: 0 + red: 36 + green: 58.3 + yellow: 65.6 + blue: 39.2 + magenta: 37.5 + cyan: 56.5 + white: 78.7 + brightBlack: 0 + brightRed: 36 + brightGreen: 58.3 + brightYellow: 65.6 + brightBlue: 39.2 + brightMagenta: 37.5 + brightCyan: 56.5 + brightWhite: 78.7 diff --git a/themes/tailwind-amber-light.yaml b/themes/tailwind-amber-light.yaml new file mode 100644 index 00000000..06429a45 --- /dev/null +++ b/themes/tailwind-amber-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Amber Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#FFFBEB" + fg: "#92400E" + black: "#78350F" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#FEF3C7" + brightBlack: "#78350F" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FEF3C7" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 81.4 + black: 87.8 + red: 61.3 + green: 41.8 + yellow: 33.8 + blue: 61.4 + magenta: 63.7 + cyan: 44.6 + white: 0 + brightBlack: 87.8 + brightRed: 61.3 + brightGreen: 41.8 + brightYellow: 33.8 + brightBlue: 61.4 + brightMagenta: 63.7 + brightCyan: 44.6 + brightWhite: 0 diff --git a/themes/tailwind-blue-dark.yaml b/themes/tailwind-blue-dark.yaml new file mode 100644 index 00000000..031446af --- /dev/null +++ b/themes/tailwind-blue-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Blue Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#1E3A8A" + fg: "#DBEAFE" + black: "#1E40AF" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#BFDBFE" + brightBlack: "#1E40AF" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#BFDBFE" +meta: + mode: "dark" + accent: "teal" + hue: 266 + contrast: + fg: 83 + black: 0 + red: 38.8 + green: 61.2 + yellow: 68.5 + blue: 42.1 + magenta: 40.4 + cyan: 59.3 + white: 72.9 + brightBlack: 0 + brightRed: 38.8 + brightGreen: 61.2 + brightYellow: 68.5 + brightBlue: 42.1 + brightMagenta: 40.4 + brightCyan: 59.3 + brightWhite: 72.9 diff --git a/themes/tailwind-blue-light.yaml b/themes/tailwind-blue-light.yaml new file mode 100644 index 00000000..46529e86 --- /dev/null +++ b/themes/tailwind-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Blue Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#EFF6FF" + fg: "#1E40AF" + black: "#1E3A8A" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#DBEAFE" + brightBlack: "#1E3A8A" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#DBEAFE" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 83.3 + black: 87.7 + red: 58 + green: 38.5 + yellow: 30.5 + blue: 58 + magenta: 60.4 + cyan: 41.3 + white: 0 + brightBlack: 87.7 + brightRed: 58 + brightGreen: 38.5 + brightYellow: 30.5 + brightBlue: 58 + brightMagenta: 60.4 + brightCyan: 41.3 + brightWhite: 0 diff --git a/themes/tailwind-breeze.yaml b/themes/tailwind-breeze.yaml new file mode 100644 index 00000000..27fa8919 --- /dev/null +++ b/themes/tailwind-breeze.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Breeze" +source: + marketplace_id: "praveenpuglia.tailwind-breeze" + version: "2.2.6" + installs: 16540 + author: "Praveen Puglia" + repo: "https://github.com/praveenpuglia/tailwind-breeze" + url: "https://marketplace.visualstudio.com/items?itemName=praveenpuglia.tailwind-breeze" +colors: + bg: "#FFFFFF" + fg: "#1A202C" + black: "#000000" + red: "#C53030" + green: "#38A169" + yellow: "#D69E2E" + blue: "#3182CE" + magenta: "#3182CE" + cyan: "#319795" + white: "#FFFFFF" + brightBlack: "#4A5568" + brightRed: "#E53E3E" + brightGreen: "#48BB78" + brightYellow: "#ECC94B" + brightBlue: "#4299E1" + brightMagenta: "#ED64A6" + brightCyan: "#38B2AC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103.3 + black: 106 + red: 75.9 + green: 59.4 + yellow: 46.9 + blue: 67.2 + magenta: 67.2 + cyan: 62.3 + white: 0 + brightBlack: 86.2 + brightRed: 67 + brightGreen: 47.4 + brightYellow: 27.4 + brightBlue: 57.1 + brightMagenta: 56.1 + brightCyan: 50.1 + brightWhite: 0 diff --git a/themes/tailwind-cyan-dark.yaml b/themes/tailwind-cyan-dark.yaml new file mode 100644 index 00000000..0e83209b --- /dev/null +++ b/themes/tailwind-cyan-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Cyan Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#164E63" + fg: "#CFFAFE" + black: "#155E75" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#A5F3FC" + brightBlack: "#155E75" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#A5F3FC" +meta: + mode: "dark" + accent: "teal" + hue: 227 + contrast: + fg: 86.6 + black: 0 + red: 36.3 + green: 58.7 + yellow: 66 + blue: 39.6 + magenta: 37.9 + cyan: 56.8 + white: 79 + brightBlack: 0 + brightRed: 36.3 + brightGreen: 58.7 + brightYellow: 66 + brightBlue: 39.6 + brightMagenta: 37.9 + brightCyan: 56.8 + brightWhite: 79 diff --git a/themes/tailwind-cyan-light.yaml b/themes/tailwind-cyan-light.yaml new file mode 100644 index 00000000..f4e4afac --- /dev/null +++ b/themes/tailwind-cyan-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Cyan Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#ECFEFF" + fg: "#155E75" + black: "#164E63" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#CFFAFE" + brightBlack: "#164E63" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#CFFAFE" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 82.1 + black: 87.9 + red: 61.1 + green: 41.6 + yellow: 33.6 + blue: 61.1 + magenta: 63.5 + cyan: 44.4 + white: 0 + brightBlack: 87.9 + brightRed: 61.1 + brightGreen: 41.6 + brightYellow: 33.6 + brightBlue: 61.1 + brightMagenta: 63.5 + brightCyan: 44.4 + brightWhite: 0 diff --git a/themes/tailwind-dark.yaml b/themes/tailwind-dark.yaml new file mode 100644 index 00000000..3f7609d6 --- /dev/null +++ b/themes/tailwind-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind - Dark" +source: + marketplace_id: "WollaceBuarque.tailwind-theme" + version: "0.5.7" + installs: 38182 + author: "Wollace Buarque" + repo: "https://github.com/wollace-buarque/tailwind-theme" + url: "https://marketplace.visualstudio.com/items?itemName=WollaceBuarque.tailwind-theme" +colors: + bg: "#1E293B" + fg: "#64748B" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 25.1 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.2 + cyan: 45 + white: 87.4 + brightBlack: 19.4 + brightRed: 36 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/tailwind-darkest.yaml b/themes/tailwind-darkest.yaml new file mode 100644 index 00000000..56905c3d --- /dev/null +++ b/themes/tailwind-darkest.yaml @@ -0,0 +1,49 @@ +name: "Tailwind - Darkest" +source: + marketplace_id: "WollaceBuarque.tailwind-theme" + version: "0.5.7" + installs: 38182 + author: "Wollace Buarque" + repo: "https://github.com/wollace-buarque/tailwind-theme" + url: "https://marketplace.visualstudio.com/items?itemName=WollaceBuarque.tailwind-theme" +colors: + bg: "#0D1628" + fg: "#64748B" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 263 + contrast: + fg: 27.7 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/tailwind-emerald-dark.yaml b/themes/tailwind-emerald-dark.yaml new file mode 100644 index 00000000..7b442787 --- /dev/null +++ b/themes/tailwind-emerald-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Emerald Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#064E3B" + fg: "#D1FAE5" + black: "#065F46" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#A7F3D0" + brightBlack: "#065F46" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#A7F3D0" +meta: + mode: "dark" + accent: "teal" + hue: 169 + contrast: + fg: 86.9 + black: 0 + red: 37.6 + green: 59.9 + yellow: 67.3 + blue: 40.9 + magenta: 39.2 + cyan: 58.1 + white: 78.4 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 59.9 + brightYellow: 67.3 + brightBlue: 40.9 + brightMagenta: 39.2 + brightCyan: 58.1 + brightWhite: 78.4 diff --git a/themes/tailwind-emerald-light.yaml b/themes/tailwind-emerald-light.yaml new file mode 100644 index 00000000..6f011e79 --- /dev/null +++ b/themes/tailwind-emerald-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Emerald Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#ECFDF5" + fg: "#065F46" + black: "#064E3B" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#D1FAE5" + brightBlack: "#064E3B" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#D1FAE5" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 82.6 + black: 88.5 + red: 60.2 + green: 40.7 + yellow: 32.7 + blue: 60.3 + magenta: 62.6 + cyan: 43.5 + white: 0 + brightBlack: 88.5 + brightRed: 60.2 + brightGreen: 40.7 + brightYellow: 32.7 + brightBlue: 60.3 + brightMagenta: 62.6 + brightCyan: 43.5 + brightWhite: 0 diff --git a/themes/tailwind-fuchsia-dark.yaml b/themes/tailwind-fuchsia-dark.yaml new file mode 100644 index 00000000..0e01806e --- /dev/null +++ b/themes/tailwind-fuchsia-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Fuchsia Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#701A75" + fg: "#FAE8FF" + black: "#86198F" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#F5D0FE" + brightBlack: "#86198F" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#F5D0FE" +meta: + mode: "dark" + accent: "pink" + hue: 326 + contrast: + fg: 85.1 + black: 0 + red: 37.6 + green: 60 + yellow: 67.3 + blue: 40.9 + magenta: 39.2 + cyan: 58.1 + white: 74.1 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 60 + brightYellow: 67.3 + brightBlue: 40.9 + brightMagenta: 39.2 + brightCyan: 58.1 + brightWhite: 74.1 diff --git a/themes/tailwind-fuchsia-light.yaml b/themes/tailwind-fuchsia-light.yaml new file mode 100644 index 00000000..2b2b51da --- /dev/null +++ b/themes/tailwind-fuchsia-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Fuchsia Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#FDF4FF" + fg: "#86198F" + black: "#701A75" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#FAE8FF" + brightBlack: "#701A75" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FAE8FF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 82.1 + black: 87.3 + red: 58.9 + green: 39.4 + yellow: 31.4 + blue: 59 + magenta: 61.3 + cyan: 42.2 + white: 0 + brightBlack: 87.3 + brightRed: 58.9 + brightGreen: 39.4 + brightYellow: 31.4 + brightBlue: 59 + brightMagenta: 61.3 + brightCyan: 42.2 + brightWhite: 0 diff --git a/themes/tailwind-gray-dark.yaml b/themes/tailwind-gray-dark.yaml new file mode 100644 index 00000000..2e6f508c --- /dev/null +++ b/themes/tailwind-gray-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Gray Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#111827" + fg: "#F3F4F6" + black: "#1F2937" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#E5E7EB" + brightBlack: "#1F2937" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#E5E7EB" +meta: + mode: "dark" + accent: "teal" + hue: 265 + contrast: + fg: 99.4 + black: 0 + red: 47.9 + green: 70.3 + yellow: 77.6 + blue: 51.2 + magenta: 49.5 + cyan: 68.4 + white: 91 + brightBlack: 0 + brightRed: 47.9 + brightGreen: 70.3 + brightYellow: 77.6 + brightBlue: 51.2 + brightMagenta: 49.5 + brightCyan: 68.4 + brightWhite: 91 diff --git a/themes/tailwind-gray-light.yaml b/themes/tailwind-gray-light.yaml new file mode 100644 index 00000000..6b2b02e1 --- /dev/null +++ b/themes/tailwind-gray-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Gray Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#F9FAFB" + fg: "#1F2937" + black: "#111827" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F3F4F6" + brightBlack: "#111827" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#F3F4F6" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 98.4 + black: 101.4 + red: 60.8 + green: 41.3 + yellow: 33.3 + blue: 60.8 + magenta: 63.2 + cyan: 44.1 + white: 0 + brightBlack: 101.4 + brightRed: 60.8 + brightGreen: 41.3 + brightYellow: 33.3 + brightBlue: 60.8 + brightMagenta: 63.2 + brightCyan: 44.1 + brightWhite: 0 diff --git a/themes/tailwind-green-dark.yaml b/themes/tailwind-green-dark.yaml new file mode 100644 index 00000000..8f87388b --- /dev/null +++ b/themes/tailwind-green-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Green Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#14532D" + fg: "#DCFCE7" + black: "#166534" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#BBF7D0" + brightBlack: "#166534" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#BBF7D0" +meta: + mode: "dark" + accent: "teal" + hue: 153 + contrast: + fg: 87.9 + black: 0 + red: 36.3 + green: 58.6 + yellow: 65.9 + blue: 39.5 + magenta: 37.8 + cyan: 56.8 + white: 80.9 + brightBlack: 0 + brightRed: 36.3 + brightGreen: 58.6 + brightYellow: 65.9 + brightBlue: 39.5 + brightMagenta: 37.8 + brightCyan: 56.8 + brightWhite: 80.9 diff --git a/themes/tailwind-green-light.yaml b/themes/tailwind-green-light.yaml new file mode 100644 index 00000000..31365d48 --- /dev/null +++ b/themes/tailwind-green-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Green Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#F0FDF4" + fg: "#166534" + black: "#14532D" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#DCFCE7" + brightBlack: "#14532D" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#DCFCE7" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 81.2 + black: 87.5 + red: 60.6 + green: 41.1 + yellow: 33.2 + blue: 60.7 + magenta: 63.1 + cyan: 44 + white: 0 + brightBlack: 87.5 + brightRed: 60.6 + brightGreen: 41.1 + brightYellow: 33.2 + brightBlue: 60.7 + brightMagenta: 63.1 + brightCyan: 44 + brightWhite: 0 diff --git a/themes/tailwind-indigo-dark.yaml b/themes/tailwind-indigo-dark.yaml new file mode 100644 index 00000000..0c1c3522 --- /dev/null +++ b/themes/tailwind-indigo-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Indigo Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#312E81" + fg: "#E0E7FF" + black: "#3730A3" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#C7D2FE" + brightBlack: "#3730A3" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#C7D2FE" +meta: + mode: "dark" + accent: "teal" + hue: 279 + contrast: + fg: 84.3 + black: 0 + red: 40.9 + green: 63.2 + yellow: 70.6 + blue: 44.2 + magenta: 42.5 + cyan: 61.4 + white: 71.9 + brightBlack: 0 + brightRed: 40.9 + brightGreen: 63.2 + brightYellow: 70.6 + brightBlue: 44.2 + brightMagenta: 42.5 + brightCyan: 61.4 + brightWhite: 71.9 diff --git a/themes/tailwind-indigo-light.yaml b/themes/tailwind-indigo-light.yaml new file mode 100644 index 00000000..1b43c3d2 --- /dev/null +++ b/themes/tailwind-indigo-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Indigo Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#EEF2FF" + fg: "#3730A3" + black: "#312E81" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#E0E7FF" + brightBlack: "#312E81" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#E0E7FF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 84.7 + black: 88.2 + red: 56.2 + green: 36.7 + yellow: 28.7 + blue: 56.2 + magenta: 58.6 + cyan: 39.5 + white: 0 + brightBlack: 88.2 + brightRed: 56.2 + brightGreen: 36.7 + brightYellow: 28.7 + brightBlue: 56.2 + brightMagenta: 58.6 + brightCyan: 39.5 + brightWhite: 0 diff --git a/themes/tailwind-lime-dark.yaml b/themes/tailwind-lime-dark.yaml new file mode 100644 index 00000000..7791b719 --- /dev/null +++ b/themes/tailwind-lime-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Lime Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#365314" + fg: "#ECFCCB" + black: "#3F6212" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#D9F99D" + brightBlack: "#3F6212" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#D9F99D" +meta: + mode: "dark" + accent: "teal" + hue: 131 + contrast: + fg: 88.1 + black: 0 + red: 35.5 + green: 57.9 + yellow: 65.2 + blue: 38.8 + magenta: 37.1 + cyan: 56 + white: 82.8 + brightBlack: 0 + brightRed: 35.5 + brightGreen: 57.9 + brightYellow: 65.2 + brightBlue: 38.8 + brightMagenta: 37.1 + brightCyan: 56 + brightWhite: 82.8 diff --git a/themes/tailwind-lime-light.yaml b/themes/tailwind-lime-light.yaml new file mode 100644 index 00000000..500a9571 --- /dev/null +++ b/themes/tailwind-lime-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Lime Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#F7FEE7" + fg: "#3F6212" + black: "#365314" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#ECFCCB" + brightBlack: "#365314" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#ECFCCB" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 81.9 + black: 87.4 + red: 61.4 + green: 41.9 + yellow: 33.9 + blue: 61.5 + magenta: 63.8 + cyan: 44.7 + white: 0 + brightBlack: 87.4 + brightRed: 61.4 + brightGreen: 41.9 + brightYellow: 33.9 + brightBlue: 61.5 + brightMagenta: 63.8 + brightCyan: 44.7 + brightWhite: 0 diff --git a/themes/tailwind-moon-blue.yaml b/themes/tailwind-moon-blue.yaml new file mode 100644 index 00000000..e2859bbb --- /dev/null +++ b/themes/tailwind-moon-blue.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Moon Blue" +source: + marketplace_id: "shadowblood.tailwind-moon" + version: "3.0.2" + installs: 43876 + author: "Lucia Lovelace" + repo: "https://github.com/luciascarlet/tailwind-moon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=shadowblood.tailwind-moon" +colors: + bg: "#1E293B" + fg: "#E2E8F0" + black: "#000000" + red: "#C53030" + green: "#34D399" + yellow: "#D69E2E" + blue: "#60A5FA" + magenta: "#60A5FA" + cyan: "#319795" + white: "#334155" + brightBlack: "#4A5568" + brightRed: "#E53E3E" + brightGreen: "#48BB78" + brightYellow: "#ECC94B" + brightBlue: "#4299E1" + brightMagenta: "#ED64A6" + brightCyan: "#38B2AC" + brightWhite: "#334155" +meta: + mode: "dark" + accent: "orange" + hue: 260 + contrast: + fg: 88.9 + black: 0 + red: 22.3 + green: 62.6 + yellow: 51.6 + blue: 48.8 + magenta: 48.8 + cyan: 35.8 + white: 0 + brightBlack: 12.3 + brightRed: 31.1 + brightGreen: 51 + brightYellow: 72 + brightBlue: 41.1 + brightMagenta: 42 + brightCyan: 48.2 + brightWhite: 0 diff --git a/themes/tailwind-moon-grey.yaml b/themes/tailwind-moon-grey.yaml new file mode 100644 index 00000000..973a952c --- /dev/null +++ b/themes/tailwind-moon-grey.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Moon Grey" +source: + marketplace_id: "laurentlahmy.tailwind-theme-zinc" + version: "0.0.1" + installs: 403 + author: "laurent lahmy" + repo: "https://github.com/alphablend-dev/theme" + url: "https://marketplace.visualstudio.com/items?itemName=laurentlahmy.tailwind-theme-zinc" +colors: + bg: "#1F1F22" + fg: "#F4F4F5" + black: "#000000" + red: "#EF4444" + green: "#34D399" + yellow: "#EA580C" + blue: "#60A5FA" + magenta: "#60A5FA" + cyan: "#115E59" + white: "#3F3F46" + brightBlack: "#71717A" + brightRed: "#DC2626" + brightGreen: "#84CC16" + brightYellow: "#FDE047" + brightBlue: "#3B82F6" + brightMagenta: "#FB7185" + brightCyan: "#22C55E" + brightWhite: "#3F3F46" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 98.7 + black: 0 + red: 35.8 + green: 64.2 + yellow: 37.5 + blue: 50.4 + magenta: 50.4 + cyan: 14 + white: 0 + brightBlack: 26.1 + brightRed: 28.1 + brightGreen: 62.6 + brightYellow: 86.1 + brightBlue: 35.8 + brightMagenta: 48.3 + brightCyan: 55.8 + brightWhite: 0 diff --git a/themes/tailwind-moon.yaml b/themes/tailwind-moon.yaml new file mode 100644 index 00000000..719daa24 --- /dev/null +++ b/themes/tailwind-moon.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Moon" +source: + marketplace_id: "shadowblood.tailwind-moon" + version: "3.0.2" + installs: 43876 + author: "Lucia Lovelace" + repo: "https://github.com/luciascarlet/tailwind-moon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=shadowblood.tailwind-moon" +colors: + bg: "#1F2937" + fg: "#E5E7EB" + black: "#000000" + red: "#C53030" + green: "#34D399" + yellow: "#D69E2E" + blue: "#60A5FA" + magenta: "#60A5FA" + cyan: "#319795" + white: "#374151" + brightBlack: "#4A5568" + brightRed: "#E53E3E" + brightGreen: "#48BB78" + brightYellow: "#ECC94B" + brightBlue: "#4299E1" + brightMagenta: "#ED64A6" + brightCyan: "#38B2AC" + brightWhite: "#374151" +meta: + mode: "dark" + accent: "orange" + hue: 257 + contrast: + fg: 88.7 + black: 0 + red: 22.3 + green: 62.6 + yellow: 51.6 + blue: 48.8 + magenta: 48.8 + cyan: 35.8 + white: 0 + brightBlack: 12.4 + brightRed: 31.2 + brightGreen: 51 + brightYellow: 72.1 + brightBlue: 41.2 + brightMagenta: 42.1 + brightCyan: 48.3 + brightWhite: 0 diff --git a/themes/tailwind-neutral-dark.yaml b/themes/tailwind-neutral-dark.yaml new file mode 100644 index 00000000..f120f38e --- /dev/null +++ b/themes/tailwind-neutral-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Neutral Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#171717" + fg: "#F5F5F5" + black: "#262626" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#E5E5E5" + brightBlack: "#262626" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 100.3 + black: 0 + red: 48.1 + green: 70.5 + yellow: 77.8 + blue: 51.4 + magenta: 49.7 + cyan: 68.6 + white: 90 + brightBlack: 0 + brightRed: 48.1 + brightGreen: 70.5 + brightYellow: 77.8 + brightBlue: 51.4 + brightMagenta: 49.7 + brightCyan: 68.6 + brightWhite: 90 diff --git a/themes/tailwind-neutral-light.yaml b/themes/tailwind-neutral-light.yaml new file mode 100644 index 00000000..5da59559 --- /dev/null +++ b/themes/tailwind-neutral-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Neutral Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#FAFAFA" + fg: "#262626" + black: "#171717" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F5F5F5" + brightBlack: "#171717" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#F5F5F5" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 99.1 + black: 101.7 + red: 60.8 + green: 41.3 + yellow: 33.4 + blue: 60.9 + magenta: 63.3 + cyan: 44.2 + white: 0 + brightBlack: 101.7 + brightRed: 60.8 + brightGreen: 41.3 + brightYellow: 33.4 + brightBlue: 60.9 + brightMagenta: 63.3 + brightCyan: 44.2 + brightWhite: 0 diff --git a/themes/tailwind-orange-dark.yaml b/themes/tailwind-orange-dark.yaml new file mode 100644 index 00000000..9688c26e --- /dev/null +++ b/themes/tailwind-orange-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Orange Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#7C2D12" + fg: "#FFEDD5" + black: "#9A3412" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#FED7AA" + brightBlack: "#9A3412" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FED7AA" +meta: + mode: "dark" + accent: "teal" + hue: 38 + contrast: + fg: 85 + black: 0 + red: 36.5 + green: 58.8 + yellow: 66.2 + blue: 39.7 + magenta: 38.1 + cyan: 57 + white: 73.7 + brightBlack: 0 + brightRed: 36.5 + brightGreen: 58.8 + brightYellow: 66.2 + brightBlue: 39.7 + brightMagenta: 38.1 + brightCyan: 57 + brightWhite: 73.7 diff --git a/themes/tailwind-orange-light.yaml b/themes/tailwind-orange-light.yaml new file mode 100644 index 00000000..6ba2d07c --- /dev/null +++ b/themes/tailwind-orange-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Orange Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#FFF7ED" + fg: "#9A3412" + black: "#7C2D12" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#FFEDD5" + brightBlack: "#7C2D12" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FFEDD5" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 80.3 + black: 86.7 + red: 59.7 + green: 40.2 + yellow: 32.2 + blue: 59.7 + magenta: 62.1 + cyan: 43 + white: 0 + brightBlack: 86.7 + brightRed: 59.7 + brightGreen: 40.2 + brightYellow: 32.2 + brightBlue: 59.7 + brightMagenta: 62.1 + brightCyan: 43 + brightWhite: 0 diff --git a/themes/tailwind-pink-dark.yaml b/themes/tailwind-pink-dark.yaml new file mode 100644 index 00000000..44ac11bf --- /dev/null +++ b/themes/tailwind-pink-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Pink Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#831843" + fg: "#FCE7F3" + black: "#9D174D" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#FBCFE8" + brightBlack: "#9D174D" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FBCFE8" +meta: + mode: "dark" + accent: "teal" + hue: 2 + contrast: + fg: 83.3 + black: 0 + red: 36.6 + green: 59 + yellow: 66.3 + blue: 39.9 + magenta: 38.2 + cyan: 57.1 + white: 72.4 + brightBlack: 0 + brightRed: 36.6 + brightGreen: 59 + brightYellow: 66.3 + brightBlue: 39.9 + brightMagenta: 38.2 + brightCyan: 57.1 + brightWhite: 72.4 diff --git a/themes/tailwind-pink-light.yaml b/themes/tailwind-pink-light.yaml new file mode 100644 index 00000000..65fc7ee0 --- /dev/null +++ b/themes/tailwind-pink-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Pink Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#FDF2F8" + fg: "#9D174D" + black: "#831843" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#FCE7F3" + brightBlack: "#831843" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FCE7F3" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 79.6 + black: 84.9 + red: 57.8 + green: 38.3 + yellow: 30.3 + blue: 57.8 + magenta: 60.2 + cyan: 41.1 + white: 0 + brightBlack: 84.9 + brightRed: 57.8 + brightGreen: 38.3 + brightYellow: 30.3 + brightBlue: 57.8 + brightMagenta: 60.2 + brightCyan: 41.1 + brightWhite: 0 diff --git a/themes/tailwind-purple-dark.yaml b/themes/tailwind-purple-dark.yaml new file mode 100644 index 00000000..d08a2a8f --- /dev/null +++ b/themes/tailwind-purple-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Purple Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#581C87" + fg: "#F3E8FF" + black: "#6B21A8" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#E9D5FF" + brightBlack: "#6B21A8" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#E9D5FF" +meta: + mode: "dark" + accent: "magenta" + hue: 305 + contrast: + fg: 85.9 + black: 0 + red: 39.4 + green: 61.8 + yellow: 69.1 + blue: 42.7 + magenta: 41 + cyan: 59.9 + white: 76.2 + brightBlack: 0 + brightRed: 39.4 + brightGreen: 61.8 + brightYellow: 69.1 + brightBlue: 42.7 + brightMagenta: 41 + brightCyan: 59.9 + brightWhite: 76.2 diff --git a/themes/tailwind-purple-light.yaml b/themes/tailwind-purple-light.yaml new file mode 100644 index 00000000..54ccc1d5 --- /dev/null +++ b/themes/tailwind-purple-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Purple Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#FAF5FF" + fg: "#6B21A8" + black: "#581C87" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F3E8FF" + brightBlack: "#581C87" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#F3E8FF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 83.9 + black: 89.3 + red: 58.9 + green: 39.4 + yellow: 31.5 + blue: 59 + magenta: 61.4 + cyan: 42.3 + white: 0 + brightBlack: 89.3 + brightRed: 58.9 + brightGreen: 39.4 + brightYellow: 31.5 + brightBlue: 59 + brightMagenta: 61.4 + brightCyan: 42.3 + brightWhite: 0 diff --git a/themes/tailwind-red-dark.yaml b/themes/tailwind-red-dark.yaml new file mode 100644 index 00000000..d3781c58 --- /dev/null +++ b/themes/tailwind-red-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Red Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#7F1D1D" + fg: "#FEE2E2" + black: "#991B1B" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#FECACA" + brightBlack: "#991B1B" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FECACA" +meta: + mode: "dark" + accent: "teal" + hue: 26 + contrast: + fg: 81.6 + black: 0 + red: 37.5 + green: 59.9 + yellow: 67.2 + blue: 40.8 + magenta: 39.1 + cyan: 58 + white: 70.5 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 59.9 + brightYellow: 67.2 + brightBlue: 40.8 + brightMagenta: 39.1 + brightCyan: 58 + brightWhite: 70.5 diff --git a/themes/tailwind-red-light.yaml b/themes/tailwind-red-light.yaml new file mode 100644 index 00000000..2bdf5c25 --- /dev/null +++ b/themes/tailwind-red-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Red Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#FEF2F2" + fg: "#991B1B" + black: "#7F1D1D" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#FEE2E2" + brightBlack: "#7F1D1D" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FEE2E2" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 80.9 + black: 85.8 + red: 57.6 + green: 38.1 + yellow: 30.2 + blue: 57.7 + magenta: 60.1 + cyan: 41 + white: 0 + brightBlack: 85.8 + brightRed: 57.6 + brightGreen: 38.1 + brightYellow: 30.2 + brightBlue: 57.7 + brightMagenta: 60.1 + brightCyan: 41 + brightWhite: 0 diff --git a/themes/tailwind-rose-dark.yaml b/themes/tailwind-rose-dark.yaml new file mode 100644 index 00000000..624845be --- /dev/null +++ b/themes/tailwind-rose-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Rose Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#881337" + fg: "#FFE4E6" + black: "#9F1239" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#FECDD3" + brightBlack: "#9F1239" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FECDD3" +meta: + mode: "dark" + accent: "teal" + hue: 10 + contrast: + fg: 81.5 + black: 0 + red: 36.2 + green: 58.6 + yellow: 65.9 + blue: 39.5 + magenta: 37.8 + cyan: 56.7 + white: 70.7 + brightBlack: 0 + brightRed: 36.2 + brightGreen: 58.6 + brightYellow: 65.9 + brightBlue: 39.5 + brightMagenta: 37.8 + brightCyan: 56.7 + brightWhite: 70.7 diff --git a/themes/tailwind-rose-light.yaml b/themes/tailwind-rose-light.yaml new file mode 100644 index 00000000..b2887f41 --- /dev/null +++ b/themes/tailwind-rose-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Rose Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#FFF1F2" + fg: "#9F1239" + black: "#881337" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#FFE4E6" + brightBlack: "#881337" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FFE4E6" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 79.4 + black: 84.1 + red: 57.4 + green: 37.9 + yellow: 29.9 + blue: 57.4 + magenta: 59.8 + cyan: 40.7 + white: 0 + brightBlack: 84.1 + brightRed: 57.4 + brightGreen: 37.9 + brightYellow: 29.9 + brightBlue: 57.4 + brightMagenta: 59.8 + brightCyan: 40.7 + brightWhite: 0 diff --git a/themes/tailwind-sky-dark.yaml b/themes/tailwind-sky-dark.yaml new file mode 100644 index 00000000..8a37db12 --- /dev/null +++ b/themes/tailwind-sky-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Sky Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#0C4A6E" + fg: "#E0F2FE" + black: "#075985" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#BAE6FD" + brightBlack: "#075985" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#BAE6FD" +meta: + mode: "dark" + accent: "teal" + hue: 241 + contrast: + fg: 85.5 + black: 0 + red: 37 + green: 59.4 + yellow: 66.7 + blue: 40.3 + magenta: 38.6 + cyan: 57.5 + white: 75.5 + brightBlack: 0 + brightRed: 37 + brightGreen: 59.4 + brightYellow: 66.7 + brightBlue: 40.3 + brightMagenta: 38.6 + brightCyan: 57.5 + brightWhite: 75.5 diff --git a/themes/tailwind-sky-light.yaml b/themes/tailwind-sky-light.yaml new file mode 100644 index 00000000..8d942619 --- /dev/null +++ b/themes/tailwind-sky-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Sky Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#F0F9FF" + fg: "#075985" + black: "#0C4A6E" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#E0F2FE" + brightBlack: "#0C4A6E" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#E0F2FE" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 81.3 + black: 87 + red: 59.4 + green: 39.9 + yellow: 31.9 + blue: 59.5 + magenta: 61.8 + cyan: 42.7 + white: 0 + brightBlack: 87 + brightRed: 59.4 + brightGreen: 39.9 + brightYellow: 31.9 + brightBlue: 59.5 + brightMagenta: 61.8 + brightCyan: 42.7 + brightWhite: 0 diff --git a/themes/tailwind-slate-dark.yaml b/themes/tailwind-slate-dark.yaml new file mode 100644 index 00000000..a8b33a04 --- /dev/null +++ b/themes/tailwind-slate-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Slate Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#0F172A" + fg: "#F1F5F9" + black: "#1E293B" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#E2E8F0" + brightBlack: "#1E293B" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "teal" + hue: 266 + contrast: + fg: 99.8 + black: 0 + red: 48 + green: 70.4 + yellow: 77.7 + blue: 51.3 + magenta: 49.6 + cyan: 68.5 + white: 91.4 + brightBlack: 0 + brightRed: 48 + brightGreen: 70.4 + brightYellow: 77.7 + brightBlue: 51.3 + brightMagenta: 49.6 + brightCyan: 68.5 + brightWhite: 91.4 diff --git a/themes/tailwind-slate-light.yaml b/themes/tailwind-slate-light.yaml new file mode 100644 index 00000000..d0f8af7f --- /dev/null +++ b/themes/tailwind-slate-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Slate Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#F8FAFC" + fg: "#1E293B" + black: "#0F172A" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F1F5F9" + brightBlack: "#0F172A" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#F1F5F9" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 98.2 + black: 101.4 + red: 60.7 + green: 41.2 + yellow: 33.2 + blue: 60.7 + magenta: 63.1 + cyan: 44 + white: 0 + brightBlack: 101.4 + brightRed: 60.7 + brightGreen: 41.2 + brightYellow: 33.2 + brightBlue: 60.7 + brightMagenta: 63.1 + brightCyan: 44 + brightWhite: 0 diff --git a/themes/tailwind-stone-dark.yaml b/themes/tailwind-stone-dark.yaml new file mode 100644 index 00000000..5e366fea --- /dev/null +++ b/themes/tailwind-stone-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Stone Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#1C1917" + fg: "#F5F5F4" + black: "#292524" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#E7E5E4" + brightBlack: "#292524" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#E7E5E4" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 100 + black: 0 + red: 47.8 + green: 70.2 + yellow: 77.5 + blue: 51.1 + magenta: 49.4 + cyan: 68.3 + white: 90 + brightBlack: 0 + brightRed: 47.8 + brightGreen: 70.2 + brightYellow: 77.5 + brightBlue: 51.1 + brightMagenta: 49.4 + brightCyan: 68.3 + brightWhite: 90 diff --git a/themes/tailwind-stone-light.yaml b/themes/tailwind-stone-light.yaml new file mode 100644 index 00000000..b68d940e --- /dev/null +++ b/themes/tailwind-stone-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Stone Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#FAFAF9" + fg: "#292524" + black: "#1C1917" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F5F5F4" + brightBlack: "#1C1917" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#F5F5F4" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 99 + black: 101.3 + red: 60.8 + green: 41.3 + yellow: 33.3 + blue: 60.9 + magenta: 63.2 + cyan: 44.1 + white: 0 + brightBlack: 101.3 + brightRed: 60.8 + brightGreen: 41.3 + brightYellow: 33.3 + brightBlue: 60.9 + brightMagenta: 63.2 + brightCyan: 44.1 + brightWhite: 0 diff --git a/themes/tailwind-teal-dark.yaml b/themes/tailwind-teal-dark.yaml new file mode 100644 index 00000000..e27c6ef6 --- /dev/null +++ b/themes/tailwind-teal-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Teal Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#134E4A" + fg: "#CCFBF1" + black: "#115E59" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#99F6E4" + brightBlack: "#115E59" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#99F6E4" +meta: + mode: "dark" + accent: "teal" + hue: 188 + contrast: + fg: 87 + black: 0 + red: 37.2 + green: 59.5 + yellow: 66.8 + blue: 40.4 + magenta: 38.7 + cyan: 57.7 + white: 79.2 + brightBlack: 0 + brightRed: 37.2 + brightGreen: 59.5 + brightYellow: 66.8 + brightBlue: 40.4 + brightMagenta: 38.7 + brightCyan: 57.7 + brightWhite: 79.2 diff --git a/themes/tailwind-teal-light.yaml b/themes/tailwind-teal-light.yaml new file mode 100644 index 00000000..0944270a --- /dev/null +++ b/themes/tailwind-teal-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Teal Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#F0FDFA" + fg: "#115E59" + black: "#134E4A" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#CCFBF1" + brightBlack: "#134E4A" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#CCFBF1" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 83.1 + black: 88.7 + red: 60.9 + green: 41.4 + yellow: 33.4 + blue: 61 + magenta: 63.3 + cyan: 44.2 + white: 0 + brightBlack: 88.7 + brightRed: 60.9 + brightGreen: 41.4 + brightYellow: 33.4 + brightBlue: 61 + brightMagenta: 63.3 + brightCyan: 44.2 + brightWhite: 0 diff --git a/themes/tailwind-violet-dark.yaml b/themes/tailwind-violet-dark.yaml new file mode 100644 index 00000000..0e7ae529 --- /dev/null +++ b/themes/tailwind-violet-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Violet Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#4C1D95" + fg: "#EDE9FE" + black: "#5B21B6" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#DDD6FE" + brightBlack: "#5B21B6" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#DDD6FE" +meta: + mode: "dark" + accent: "magenta" + hue: 294 + contrast: + fg: 85.6 + black: 0 + red: 39.5 + green: 61.9 + yellow: 69.2 + blue: 42.8 + magenta: 41.1 + cyan: 60 + white: 75 + brightBlack: 0 + brightRed: 39.5 + brightGreen: 61.9 + brightYellow: 69.2 + brightBlue: 42.8 + brightMagenta: 41.1 + brightCyan: 60 + brightWhite: 75 diff --git a/themes/tailwind-violet-light.yaml b/themes/tailwind-violet-light.yaml new file mode 100644 index 00000000..8b17619f --- /dev/null +++ b/themes/tailwind-violet-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Violet Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#F5F3FF" + fg: "#5B21B6" + black: "#4C1D95" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#EDE9FE" + brightBlack: "#4C1D95" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#EDE9FE" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 83 + black: 88 + red: 57.5 + green: 38 + yellow: 30 + blue: 57.5 + magenta: 59.9 + cyan: 40.8 + white: 0 + brightBlack: 88 + brightRed: 57.5 + brightGreen: 38 + brightYellow: 30 + brightBlue: 57.5 + brightMagenta: 59.9 + brightCyan: 40.8 + brightWhite: 0 diff --git a/themes/tailwind-yellow-dark.yaml b/themes/tailwind-yellow-dark.yaml new file mode 100644 index 00000000..6ea4dc55 --- /dev/null +++ b/themes/tailwind-yellow-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Yellow Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#713F12" + fg: "#FEF9C3" + black: "#854D0E" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#FEF08A" + brightBlack: "#854D0E" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FEF08A" +meta: + mode: "dark" + accent: "teal" + hue: 58 + contrast: + fg: 88.5 + black: 0 + red: 35.2 + green: 57.5 + yellow: 64.8 + blue: 38.4 + magenta: 36.7 + cyan: 55.7 + white: 82.7 + brightBlack: 0 + brightRed: 35.2 + brightGreen: 57.5 + brightYellow: 64.8 + brightBlue: 38.4 + brightMagenta: 36.7 + brightCyan: 55.7 + brightWhite: 82.7 diff --git a/themes/tailwind-yellow-light.yaml b/themes/tailwind-yellow-light.yaml new file mode 100644 index 00000000..41f3f223 --- /dev/null +++ b/themes/tailwind-yellow-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Yellow Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#FEFCE8" + fg: "#854D0E" + black: "#713F12" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#FEF9C3" + brightBlack: "#713F12" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FEF9C3" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 81 + black: 87.1 + red: 61.5 + green: 42 + yellow: 34 + blue: 61.5 + magenta: 63.9 + cyan: 44.8 + white: 0 + brightBlack: 87.1 + brightRed: 61.5 + brightGreen: 42 + brightYellow: 34 + brightBlue: 61.5 + brightMagenta: 63.9 + brightCyan: 44.8 + brightWhite: 0 diff --git a/themes/tailwind-zinc-dark.yaml b/themes/tailwind-zinc-dark.yaml new file mode 100644 index 00000000..ec8a0219 --- /dev/null +++ b/themes/tailwind-zinc-dark.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Zinc Dark" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#18181B" + fg: "#F4F4F5" + black: "#27272A" + red: "#F87171" + green: "#4ADE80" + yellow: "#FACC15" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#E4E4E7" + brightBlack: "#27272A" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#E4E4E7" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 99.5 + black: 0 + red: 48 + green: 70.3 + yellow: 77.6 + blue: 51.2 + magenta: 49.5 + cyan: 68.5 + white: 89.4 + brightBlack: 0 + brightRed: 48 + brightGreen: 70.3 + brightYellow: 77.6 + brightBlue: 51.2 + brightMagenta: 49.5 + brightCyan: 68.5 + brightWhite: 89.4 diff --git a/themes/tailwind-zinc-light.yaml b/themes/tailwind-zinc-light.yaml new file mode 100644 index 00000000..07c94199 --- /dev/null +++ b/themes/tailwind-zinc-light.yaml @@ -0,0 +1,49 @@ +name: "Tailwind Zinc Light" +source: + marketplace_id: "dlandman27.tailwind-themes" + version: "1.0.2" + installs: 85 + author: "Dylan Landman" + repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" +colors: + bg: "#FAFAFA" + fg: "#27272A" + black: "#18181B" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F4F4F5" + brightBlack: "#18181B" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#F4F4F5" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 98.8 + black: 101.5 + red: 60.8 + green: 41.3 + yellow: 33.4 + blue: 60.9 + magenta: 63.3 + cyan: 44.2 + white: 0 + brightBlack: 101.5 + brightRed: 60.8 + brightGreen: 41.3 + brightYellow: 33.4 + brightBlue: 60.9 + brightMagenta: 63.3 + brightCyan: 44.2 + brightWhite: 0 diff --git a/themes/tailwind.yaml b/themes/tailwind.yaml new file mode 100644 index 00000000..75932ce3 --- /dev/null +++ b/themes/tailwind.yaml @@ -0,0 +1,49 @@ +name: "Tailwind" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" +colors: + bg: "#181E29" + fg: "#EDF2F7" + black: "#000000" + red: "#FEB2B2" + green: "#9AE6B4" + yellow: "#FBD38D" + blue: "#A3BFFA" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FBD38D" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: 262 + contrast: + fg: 97.1 + black: 0 + red: 70.1 + green: 79.6 + yellow: 81.5 + blue: 66.1 + magenta: 63.5 + cyan: 91.9 + white: 106.1 + brightBlack: 13.8 + brightRed: 46.3 + brightGreen: 65.5 + brightYellow: 81.5 + brightBlue: 37.9 + brightMagenta: 63.5 + brightCyan: 91.9 + brightWhite: 0 diff --git a/themes/taipei-night.yaml b/themes/taipei-night.yaml new file mode 100644 index 00000000..1ff9a19b --- /dev/null +++ b/themes/taipei-night.yaml @@ -0,0 +1,49 @@ +name: "Taipei Night" +source: + marketplace_id: "berniwankenobi.taipei-night" + version: "1.0.3" + installs: 47 + author: "berniwankenobi" + repo: "https://github.com/berniechiu/taipei-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=berniwankenobi.taipei-night" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#FFB86C" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#A9B1D6" + brightBlack: "#565F89" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#FFB86C" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 59.3 + black: 10.3 + red: 49.4 + green: 72.2 + yellow: 70.9 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 59.3 + brightBlack: 19.5 + brightRed: 49.4 + brightGreen: 72.2 + brightYellow: 70.9 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 73.8 diff --git a/themes/takenawa-modified.yaml b/themes/takenawa-modified.yaml new file mode 100644 index 00000000..84107dd1 --- /dev/null +++ b/themes/takenawa-modified.yaml @@ -0,0 +1,49 @@ +name: "Takenawa - modified" +source: + marketplace_id: "heavenosk.takenawa-theme-modified" + version: "0.1.4" + installs: 64 + author: "HeavenOSK" + repo: "https://github.com/HeavenOSK/takenawa-theme" + url: "https://marketplace.visualstudio.com/items?itemName=heavenosk.takenawa-theme-modified" +colors: + bg: "#0A0D13" + fg: "#FFE4E4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FF7777" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#CFAFAF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 94 + black: 0 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 51.9 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 62.9 diff --git a/themes/takenawa.yaml b/themes/takenawa.yaml new file mode 100644 index 00000000..d3134f7c --- /dev/null +++ b/themes/takenawa.yaml @@ -0,0 +1,49 @@ +name: "Takenawa" +source: + marketplace_id: "EmanuelleTakenawa.takenawa-theme" + version: "0.1.8" + installs: 1042 + author: "Emanuelle Takenawa" + repo: "https://github.com/emanuelletakenawa/takenawa-theme" + url: "https://marketplace.visualstudio.com/items?itemName=EmanuelleTakenawa.takenawa-theme" +colors: + bg: "#0F131A" + fg: "#FFE4E4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FF7777" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#CFAFAF" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 93.6 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 51.5 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 62.5 diff --git a/themes/tame-contrast.yaml b/themes/tame-contrast.yaml new file mode 100644 index 00000000..9502d644 --- /dev/null +++ b/themes/tame-contrast.yaml @@ -0,0 +1,49 @@ +name: "tame-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#15191C" + fg: "#C0CCDB" + black: "#20262B" + red: "#BA0E2E" + green: "#4571A8" + yellow: "#707BA0" + blue: "#98ABB7" + magenta: "#4571A8" + cyan: "#707BA0" + white: "#D0D9E4" + brightBlack: "#414D56" + brightRed: "#F03E5F" + brightGreen: "#86A6CD" + brightYellow: "#ADB4C9" + brightBlue: "#D4DCE1" + brightMagenta: "#86A6CD" + brightCyan: "#ADB4C9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.7 + black: 0 + red: 20.3 + green: 26 + yellow: 31.7 + blue: 54.1 + magenta: 26 + cyan: 31.7 + white: 81.7 + brightBlack: 11.3 + brightRed: 36.6 + brightGreen: 51.5 + brightYellow: 60.7 + brightBlue: 83.4 + brightMagenta: 51.5 + brightCyan: 60.7 + brightWhite: 106.7 diff --git a/themes/tame-light.yaml b/themes/tame-light.yaml new file mode 100644 index 00000000..fe16302b --- /dev/null +++ b/themes/tame-light.yaml @@ -0,0 +1,49 @@ +name: "tame-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#495760" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#4571A8" + yellow: "#707BA0" + blue: "#495760" + magenta: "#4571A8" + cyan: "#707BA0" + white: "#54646E" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#86A6CD" + brightYellow: "#ADB4C9" + brightBlue: "#778B98" + brightMagenta: "#86A6CD" + brightCyan: "#ADB4C9" + brightWhite: "#778B98" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 85.9 + black: 0 + red: 80.3 + green: 74.6 + yellow: 68.8 + blue: 85.9 + magenta: 74.6 + cyan: 68.8 + white: 80.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 49.3 + brightYellow: 40.4 + brightBlue: 63 + brightMagenta: 49.3 + brightCyan: 40.4 + brightWhite: 63 diff --git a/themes/tame.yaml b/themes/tame.yaml new file mode 100644 index 00000000..f3304bd1 --- /dev/null +++ b/themes/tame.yaml @@ -0,0 +1,49 @@ +name: "tame" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#283035" + fg: "#C0CCDB" + black: "#333D44" + red: "#BA0E2E" + green: "#4571A8" + yellow: "#707BA0" + blue: "#98ABB7" + magenta: "#4571A8" + cyan: "#707BA0" + white: "#D0D9E4" + brightBlack: "#54656F" + brightRed: "#F03E5F" + brightGreen: "#86A6CD" + brightYellow: "#ADB4C9" + brightBlue: "#D4DCE1" + brightMagenta: "#86A6CD" + brightCyan: "#ADB4C9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 235 + contrast: + fg: 70 + black: 0 + red: 16.6 + green: 22.3 + yellow: 28 + blue: 50.4 + magenta: 22.3 + cyan: 28 + white: 78.1 + brightBlack: 16.7 + brightRed: 32.9 + brightGreen: 47.8 + brightYellow: 57 + brightBlue: 79.7 + brightMagenta: 47.8 + brightCyan: 57 + brightWhite: 103 diff --git a/themes/tamil-nadu-temple-land.yaml b/themes/tamil-nadu-temple-land.yaml new file mode 100644 index 00000000..57d6f292 --- /dev/null +++ b/themes/tamil-nadu-temple-land.yaml @@ -0,0 +1,49 @@ +name: "Tamil Nadu - Temple Land" +source: + marketplace_id: "ProudIndian.colors-of-india-themes" + version: "1.0.1" + installs: 37 + author: "Sachin Ghadi" + repo: "https://github.com/GhadiSachin/colors-of-india-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" +colors: + bg: "#1A1410" + fg: "#F5E6D3" + black: "#000000" + red: "#E74856" + green: "#4A90E2" + yellow: "#FFD700" + blue: "#3B8EEA" + magenta: "#B140AA" + cyan: "#29B8DB" + white: "#E5E5E5" + brightBlack: "#000000" + brightRed: "#E74856" + brightGreen: "#4A90E2" + brightYellow: "#FFD700" + brightBlue: "#3B8EEA" + brightMagenta: "#B140AA" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 56 + contrast: + fg: 92.1 + black: 0 + red: 36 + green: 40.9 + yellow: 83.4 + blue: 40.2 + magenta: 27 + cyan: 55.6 + white: 90.2 + brightBlack: 0 + brightRed: 36 + brightGreen: 40.9 + brightYellow: 83.4 + brightBlue: 40.2 + brightMagenta: 27 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/tan-jade.yaml b/themes/tan-jade.yaml new file mode 100644 index 00000000..16e4f53f --- /dev/null +++ b/themes/tan-jade.yaml @@ -0,0 +1,49 @@ +name: "Tan Jade" +source: + marketplace_id: "howmanysmall.vscode-tan-jade-theme" + version: "1.0.0" + installs: 28 + author: "HowManySmall" + repo: "https://github.com/ukendio/tan-jade" + url: "https://marketplace.visualstudio.com/items?itemName=howmanysmall.vscode-tan-jade-theme" +colors: + bg: "#062626" + fg: "#D1B897" + black: "#062626" + red: "#F92672" + green: "#A6E22E" + yellow: "#E6DB74" + blue: "#66D9EF" + magenta: "#FD5FF0" + cyan: "#A1EFE4" + white: "#FFFFFF" + brightBlack: "#126367" + brightRed: "#FF0000" + brightGreen: "#8CDE94" + brightYellow: "#FFAA00" + brightBlue: "#66D9EF" + brightMagenta: "#AE81FF" + brightCyan: "#7AD0C6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 195 + contrast: + fg: 63.6 + black: 0 + red: 35.8 + green: 75.5 + yellow: 80.6 + blue: 71.9 + magenta: 49.6 + cyan: 85.8 + white: 105.4 + brightBlack: 15.6 + brightRed: 35 + brightGreen: 73 + brightYellow: 64 + brightBlue: 71.9 + brightMagenta: 45 + brightCyan: 66.9 + brightWhite: 105.4 diff --git a/themes/tangere-dark.yaml b/themes/tangere-dark.yaml new file mode 100644 index 00000000..94b92f8c --- /dev/null +++ b/themes/tangere-dark.yaml @@ -0,0 +1,49 @@ +name: "Tangere Dark" +source: + marketplace_id: "MihailDolghintev.tangere" + version: "0.0.4" + installs: 47 + author: "Mihail Dolghintev" + repo: "https://github.com/mihaildolghintev/tangere" + url: "https://marketplace.visualstudio.com/items?itemName=MihailDolghintev.tangere" +colors: + bg: "#1A2938" + fg: "#FDFDD9" + black: "#000000" + red: "#F2826D" + green: "#6DAFB5" + yellow: "#E0BA70" + blue: "#8FB4CD" + magenta: "#BB98D9" + cyan: "#B2BABF" + white: "#E6E4D3" + brightBlack: "#B3B3B3" + brightRed: "#F2826D" + brightGreen: "#6DAFB5" + brightYellow: "#FFDD99" + brightBlue: "#8FB4CD" + brightMagenta: "#BB98D9" + brightCyan: "#A9C9CC" + brightWhite: "#2F4656" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 101.6 + black: 0 + red: 48.7 + green: 49.8 + yellow: 64.7 + blue: 55.6 + magenta: 50.6 + cyan: 61 + white: 86.5 + brightBlack: 57.8 + brightRed: 48.7 + brightGreen: 49.8 + brightYellow: 85.1 + brightBlue: 55.6 + brightMagenta: 50.6 + brightCyan: 66.9 + brightWhite: 0 diff --git a/themes/tangere-light.yaml b/themes/tangere-light.yaml new file mode 100644 index 00000000..716d237d --- /dev/null +++ b/themes/tangere-light.yaml @@ -0,0 +1,49 @@ +name: "Tangere Light" +source: + marketplace_id: "MihailDolghintev.tangere" + version: "0.0.4" + installs: 47 + author: "Mihail Dolghintev" + repo: "https://github.com/mihaildolghintev/tangere" + url: "https://marketplace.visualstudio.com/items?itemName=MihailDolghintev.tangere" +colors: + bg: "#FDFDFA" + fg: "#000000" + black: "#FFFFFF" + red: "#9C341F" + green: "#004C73" + yellow: "#805619" + blue: "#223355" + magenta: "#663D52" + cyan: "#4B5363" + white: "#898E99" + brightBlack: "#686868" + brightRed: "#9C341F" + brightGreen: "#004C73" + brightYellow: "#40290A" + brightBlue: "#223355" + brightMagenta: "#663D52" + brightCyan: "#002A40" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 104.7 + black: 0 + red: 82.6 + green: 89.3 + yellow: 80.4 + blue: 97.1 + magenta: 89 + cyan: 85.5 + white: 58.9 + brightBlack: 76.5 + brightRed: 82.6 + brightGreen: 89.3 + brightYellow: 98.7 + brightBlue: 97.1 + brightMagenta: 89 + brightCyan: 100.2 + brightWhite: 23.1 diff --git a/themes/tango-plus.yaml b/themes/tango-plus.yaml new file mode 100644 index 00000000..0231bb25 --- /dev/null +++ b/themes/tango-plus.yaml @@ -0,0 +1,49 @@ +name: "tango-plus" +source: + marketplace_id: "ludwigkr.emacs-tango-plus" + version: "0.2.0" + installs: 725 + author: "ludwigkr" + repo: "https://github.com/ludwigkr/vscode-tango-plus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ludwigkr.emacs-tango-plus" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#A40000" + green: "#4E9A06" + yellow: "#C4A000" + blue: "#204A87" + magenta: "#5C3566" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#A40000" + brightGreen: "#4E9A06" + brightYellow: "#C4A000" + brightBlue: "#729FCF" + brightMagenta: "#5C3566" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 106 + black: 106 + red: 85.5 + green: 62.5 + yellow: 49 + blue: 89.7 + magenta: 92.4 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 85.5 + brightGreen: 62.5 + brightYellow: 49 + brightBlue: 53.4 + brightMagenta: 92.4 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/tango.yaml b/themes/tango.yaml new file mode 100644 index 00000000..d45407cb --- /dev/null +++ b/themes/tango.yaml @@ -0,0 +1,49 @@ +name: "Tango+" +source: + marketplace_id: "ad1tyawagh.tango-plus" + version: "0.0.1" + installs: 2661 + author: "Aditya Wagh" + repo: "https://github.com/ad1tyawagh/tango-plus" + url: "https://marketplace.visualstudio.com/items?itemName=ad1tyawagh.tango-plus" +colors: + bg: "#202020" + fg: "#D3D7CF" + black: "#000000" + red: "#CC0000" + green: "#4E9A06" + yellow: "#C4A000" + blue: "#3667A8" + magenta: "#75507B" + cyan: "#06989A" + white: "#D3D7CF" + brightBlack: "#555753" + brightRed: "#EF2929" + brightGreen: "#8AE234" + brightYellow: "#FCE94F" + brightBlue: "#729FCF" + brightMagenta: "#AD7FA8" + brightCyan: "#34E2E2" + brightWhite: "#EEEEEC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.3 + black: 0 + red: 23.1 + green: 37 + yellow: 50.9 + blue: 21.2 + magenta: 17.3 + cyan: 37.4 + white: 79.3 + brightBlack: 14.5 + brightRed: 32.7 + brightGreen: 73.6 + brightYellow: 90 + brightBlue: 46.3 + brightMagenta: 39.4 + brightCyan: 74.3 + brightWhite: 94.5 diff --git a/themes/tanuki.yaml b/themes/tanuki.yaml new file mode 100644 index 00000000..4dc89aac --- /dev/null +++ b/themes/tanuki.yaml @@ -0,0 +1,49 @@ +name: "Tanuki" +source: + marketplace_id: "YUNSUBAE.tanuki" + version: "1.1.4" + installs: 970 + author: "Yunsu Bae" + repo: "https://github.com/mniYUNSU/Tanuki" + url: "https://marketplace.visualstudio.com/items?itemName=YUNSUBAE.tanuki" +colors: + bg: "#0C0D12" + fg: "#DEDDD7" + black: "#0C0D12" + red: "#E82424" + green: "#87D034" + yellow: "#FF9E3B" + blue: "#658594" + magenta: "#957FB8" + cyan: "#B1CAFD" + white: "#DEDDD7" + brightBlack: "#16161E" + brightRed: "#FF5D62" + brightGreen: "#9ECE6A" + brightYellow: "#E6C384" + brightBlue: "#67CBF6" + brightMagenta: "#D27E99" + brightCyan: "#5ED4D6" + brightWhite: "#DEDDD7" +meta: + mode: "dark" + accent: "orange" + hue: 276 + contrast: + fg: 85.6 + black: 0 + red: 32.5 + green: 66.5 + yellow: 62.3 + blue: 34.7 + magenta: 38.9 + cyan: 73.9 + white: 85.6 + brightBlack: 0 + brightRed: 45.8 + brightGreen: 68.2 + brightYellow: 72.9 + brightBlue: 68.2 + brightMagenta: 46.1 + brightCyan: 70.1 + brightWhite: 85.6 diff --git a/themes/tao-theme.yaml b/themes/tao-theme.yaml new file mode 100644 index 00000000..d5144a92 --- /dev/null +++ b/themes/tao-theme.yaml @@ -0,0 +1,49 @@ +name: "Tao theme" +source: + marketplace_id: "LukalaKuka.tao-theme" + version: "0.0.2" + installs: 512 + author: "LukalaKuka" + repo: "https://github.com/LukaLaKuka/Tao-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=LukalaKuka.tao-theme" +colors: + bg: "#131316" + fg: "#FFFFFF" + black: "#434343" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.2 + black: 8.8 + red: 27 + green: 53.3 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 79.8 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.4 diff --git a/themes/taquito-darker.yaml b/themes/taquito-darker.yaml new file mode 100644 index 00000000..2eaa3a99 --- /dev/null +++ b/themes/taquito-darker.yaml @@ -0,0 +1,49 @@ +name: "taquito-darker" +source: + marketplace_id: "darvy.darvypro" + version: "0.4.0" + installs: 158 + author: "darvy" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=darvy.darvypro" +colors: + bg: "#0F111A" + fg: "#8F93A2" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 43.7 + black: 9.3 + red: 37.2 + green: 60.8 + yellow: 49.1 + blue: 50.1 + magenta: 39.5 + cyan: 53 + white: 83.5 + brightBlack: 15.9 + brightRed: 46.5 + brightGreen: 77.2 + brightYellow: 61.7 + brightBlue: 64.2 + brightMagenta: 50.7 + brightCyan: 68.3 + brightWhite: 91.1 diff --git a/themes/taquito-lighter.yaml b/themes/taquito-lighter.yaml new file mode 100644 index 00000000..0d32e503 --- /dev/null +++ b/themes/taquito-lighter.yaml @@ -0,0 +1,49 @@ +name: "Taquito-Lighter" +source: + marketplace_id: "darvy.darvypro" + version: "0.4.0" + installs: 158 + author: "darvy" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=darvy.darvypro" +colors: + bg: "#D5D6DB" + fg: "#343B59" + black: "#0F0F14" + red: "#8C4351" + green: "#41857A" + yellow: "#8F5E15" + blue: "#385D9C" + magenta: "#5A4A78" + cyan: "#0F4B6E" + white: "#828594" + brightBlack: "#0F0F14" + brightRed: "#8C4351" + brightGreen: "#41857A" + brightYellow: "#8F5E15" + brightBlue: "#385D9C" + brightMagenta: "#5A4A78" + brightCyan: "#0F4B6E" + brightWhite: "#828594" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 71.5 + black: 81.7 + red: 59.7 + green: 45.9 + yellow: 53.7 + blue: 58.3 + magenta: 63.2 + cyan: 67.3 + white: 40.4 + brightBlack: 81.7 + brightRed: 59.7 + brightGreen: 45.9 + brightYellow: 53.7 + brightBlue: 58.3 + brightMagenta: 63.2 + brightCyan: 67.3 + brightWhite: 40.4 diff --git a/themes/tara-theme-carbon-high-contrast.yaml b/themes/tara-theme-carbon-high-contrast.yaml new file mode 100644 index 00000000..f3c1c38a --- /dev/null +++ b/themes/tara-theme-carbon-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Tara-Theme-Carbon-High-Contrast" +source: + marketplace_id: "Taraldinn.nishuuu-themes" + version: "4.2.0" + installs: 547 + author: "Taraldinn" + repo: "https://github.com/nishuuu/nishuuu-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" +colors: + bg: "#101213" + fg: "#D9D9D9" + black: "#000000" + red: "#C85E60" + green: "#A3C679" + yellow: "#D5B05F" + blue: "#6A90D0" + magenta: "#A178C4" + cyan: "#6EBAD7" + white: "#FFFFFF" + brightBlack: "#45454A" + brightRed: "#C85E60" + brightGreen: "#A3C679" + brightYellow: "#D5B05F" + brightBlue: "#6A90D0" + brightMagenta: "#A178C4" + brightCyan: "#6EBAD7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83 + black: 0 + red: 34.2 + green: 65.1 + yellow: 61.7 + blue: 41.8 + magenta: 38.7 + cyan: 59.1 + white: 107.3 + brightBlack: 9.8 + brightRed: 34.2 + brightGreen: 65.1 + brightYellow: 61.7 + brightBlue: 41.8 + brightMagenta: 38.7 + brightCyan: 59.1 + brightWhite: 107.3 diff --git a/themes/tara-theme-carbon.yaml b/themes/tara-theme-carbon.yaml new file mode 100644 index 00000000..2a22be8c --- /dev/null +++ b/themes/tara-theme-carbon.yaml @@ -0,0 +1,49 @@ +name: "Tara-Theme-Carbon" +source: + marketplace_id: "Taraldinn.nishuuu-themes" + version: "4.2.0" + installs: 547 + author: "Taraldinn" + repo: "https://github.com/nishuuu/nishuuu-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" +colors: + bg: "#0A0A0A" + fg: "#D9D9D9" + black: "#000000" + red: "#C85E60" + green: "#A3C679" + yellow: "#D5B05F" + blue: "#6A90D0" + magenta: "#A178C4" + cyan: "#6EBAD7" + white: "#FFFFFF" + brightBlack: "#45454A" + brightRed: "#C85E60" + brightGreen: "#A3C679" + brightYellow: "#D5B05F" + brightBlue: "#6A90D0" + brightMagenta: "#A178C4" + brightCyan: "#6EBAD7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.4 + black: 0 + red: 34.6 + green: 65.5 + yellow: 62.1 + blue: 42.2 + magenta: 39.1 + cyan: 59.5 + white: 107.7 + brightBlack: 10.2 + brightRed: 34.6 + brightGreen: 65.5 + brightYellow: 62.1 + brightBlue: 42.2 + brightMagenta: 39.1 + brightCyan: 59.5 + brightWhite: 107.7 diff --git a/themes/tara-theme-deepforest.yaml b/themes/tara-theme-deepforest.yaml new file mode 100644 index 00000000..b6364d48 --- /dev/null +++ b/themes/tara-theme-deepforest.yaml @@ -0,0 +1,49 @@ +name: "Tara-Theme-Deepforest" +source: + marketplace_id: "Taraldinn.nishuuu-themes" + version: "4.2.0" + installs: 547 + author: "Taraldinn" + repo: "https://github.com/nishuuu/nishuuu-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" +colors: + bg: "#111816" + fg: "#CAE5D5" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#6FA0DE" + magenta: "#A68DCD" + cyan: "#74C9DE" + white: "#FFFFFF" + brightBlack: "#3B544D" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#6FA0DE" + brightMagenta: "#A68DCD" + brightCyan: "#74C9DE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 176 + contrast: + fg: 86 + black: 0 + red: 46.6 + green: 84.2 + yellow: 79 + blue: 48.5 + magenta: 46 + cyan: 66 + white: 106.9 + brightBlack: 12.9 + brightRed: 46.6 + brightGreen: 84.2 + brightYellow: 79 + brightBlue: 48.5 + brightMagenta: 46 + brightCyan: 66 + brightWhite: 106.9 diff --git a/themes/tara-theme-graphene.yaml b/themes/tara-theme-graphene.yaml new file mode 100644 index 00000000..27fd6c6a --- /dev/null +++ b/themes/tara-theme-graphene.yaml @@ -0,0 +1,49 @@ +name: "Tara-Theme-Graphene" +source: + marketplace_id: "Taraldinn.nishuuu-themes" + version: "4.2.0" + installs: 547 + author: "Taraldinn" + repo: "https://github.com/nishuuu/nishuuu-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" +colors: + bg: "#212121" + fg: "#D9D9D9" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#545454" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81.3 + black: 0 + red: 45.3 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 13.5 + brightRed: 45.3 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/tara-theme-ocean.yaml b/themes/tara-theme-ocean.yaml new file mode 100644 index 00000000..8f962309 --- /dev/null +++ b/themes/tara-theme-ocean.yaml @@ -0,0 +1,49 @@ +name: "Tara-Theme-Ocean" +source: + marketplace_id: "Taraldinn.nishuuu-themes" + version: "4.2.0" + installs: 547 + author: "Taraldinn" + repo: "https://github.com/nishuuu/nishuuu-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" +colors: + bg: "#0F111A" + fg: "#CED1E3" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 78.6 + black: 0 + red: 47.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 47.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/tara-theme-palenight.yaml b/themes/tara-theme-palenight.yaml new file mode 100644 index 00000000..29507edc --- /dev/null +++ b/themes/tara-theme-palenight.yaml @@ -0,0 +1,49 @@ +name: "Tara-Theme-Palenight" +source: + marketplace_id: "Taraldinn.nishuuu-themes" + version: "4.2.0" + installs: 547 + author: "Taraldinn" + repo: "https://github.com/nishuuu/nishuuu-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" +colors: + bg: "#292D3E" + fg: "#CED1E3" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 74.5 + black: 0 + red: 43 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 43 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/tara-theme-teal.yaml b/themes/tara-theme-teal.yaml new file mode 100644 index 00000000..ccc2f201 --- /dev/null +++ b/themes/tara-theme-teal.yaml @@ -0,0 +1,49 @@ +name: "Tara-Theme-Teal" +source: + marketplace_id: "Taraldinn.nishuuu-themes" + version: "4.2.0" + installs: 547 + author: "Taraldinn" + repo: "https://github.com/nishuuu/nishuuu-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" +colors: + bg: "#263238" + fg: "#D8DFDF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 230 + contrast: + fg: 81.2 + black: 0 + red: 42.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 102.7 + brightBlack: 19.7 + brightRed: 42.4 + brightGreen: 80 + brightYellow: 74.7 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/taramandal-aurora.yaml b/themes/taramandal-aurora.yaml new file mode 100644 index 00000000..577b56d6 --- /dev/null +++ b/themes/taramandal-aurora.yaml @@ -0,0 +1,49 @@ +name: "TaraMandal Aurora" +source: + marketplace_id: "ramoniswack.taramandal" + version: "0.0.5" + installs: 45 + author: "Ramohan Tiwari" + repo: "https://github.com/Ramoniswack/TaraMandal-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ramoniswack.taramandal" +colors: + bg: "#030C10" + fg: "#E2F3EA" + black: "#0C1F1A" + red: "#F78A78" + green: "#67F0AE" + yellow: "#FFDA9E" + blue: "#9EBCFF" + magenta: "#BDA9FF" + cyan: "#32F0B3" + white: "#E2F3EA" + brightBlack: "#7B8C84" + brightRed: "#F9A499" + brightGreen: "#95FFD5" + brightYellow: "#FFE6BE" + brightBlue: "#BFD5FF" + brightMagenta: "#D5C9FF" + brightCyan: "#5DFFD0" + brightWhite: "#F5FDF9" +meta: + mode: "dark" + accent: "teal" + hue: 223 + contrast: + fg: 97.1 + black: 0 + red: 55.5 + green: 82.7 + yellow: 87.2 + blue: 66.4 + magenta: 62.4 + cyan: 81.3 + white: 97.1 + brightBlack: 38.5 + brightRed: 65.1 + brightGreen: 94.5 + brightYellow: 93.5 + brightBlue: 80.4 + brightMagenta: 78 + brightCyan: 91.3 + brightWhite: 105.1 diff --git a/themes/taramandal-dark.yaml b/themes/taramandal-dark.yaml new file mode 100644 index 00000000..abfc8e34 --- /dev/null +++ b/themes/taramandal-dark.yaml @@ -0,0 +1,49 @@ +name: "TaraMandal Dark" +source: + marketplace_id: "ramoniswack.taramandal" + version: "0.0.5" + installs: 45 + author: "Ramohan Tiwari" + repo: "https://github.com/Ramoniswack/TaraMandal-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ramoniswack.taramandal" +colors: + bg: "#0A0F14" + fg: "#E5F4FF" + black: "#0A0F14" + red: "#FF88A4" + green: "#A7FFAF" + yellow: "#FFC480" + blue: "#9FD3FF" + magenta: "#B892FF" + cyan: "#88FFF7" + white: "#E5F4FF" + brightBlack: "#465A6C" + brightRed: "#FF9FB7" + brightGreen: "#BAFFBF" + brightYellow: "#FFCE94" + brightBlue: "#B1DBFF" + brightMagenta: "#C6A9FF" + brightCyan: "#A3FFF9" + brightWhite: "#F0FAFF" +meta: + mode: "dark" + accent: "magenta" + hue: 249 + contrast: + fg: 98.8 + black: 0 + red: 57.7 + green: 94.4 + yellow: 77.2 + blue: 76.1 + magenta: 53.7 + cyan: 95 + white: 98.8 + brightBlack: 16.9 + brightRed: 65.4 + brightGreen: 96.7 + brightYellow: 81.7 + brightBlue: 81.4 + brightMagenta: 63.4 + brightCyan: 97.1 + brightWhite: 103.1 diff --git a/themes/taramandal-true-cream.yaml b/themes/taramandal-true-cream.yaml new file mode 100644 index 00000000..bbd6ffe4 --- /dev/null +++ b/themes/taramandal-true-cream.yaml @@ -0,0 +1,49 @@ +name: "TaraMandal True Cream" +source: + marketplace_id: "ramoniswack.taramandal" + version: "0.0.5" + installs: 45 + author: "Ramohan Tiwari" + repo: "https://github.com/Ramoniswack/TaraMandal-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ramoniswack.taramandal" +colors: + bg: "#F0E6D4" + fg: "#2D2D5F" + black: "#2C2C54" + red: "#DC2626" + green: "#16A34A" + yellow: "#CA8A04" + blue: "#2563EB" + magenta: "#9333EA" + cyan: "#0891B2" + white: "#E5E5E5" + brightBlack: "#64748B" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#F8FAFC" +meta: + mode: "light" + accent: "magenta" + hue: 82 + contrast: + fg: 84.4 + black: 85.2 + red: 57.4 + green: 45.5 + yellow: 41.3 + blue: 60.7 + magenta: 61.4 + cyan: 49.6 + white: 0 + brightBlack: 58.8 + brightRed: 49.6 + brightGreen: 30.1 + brightYellow: 22.2 + brightBlue: 49.7 + brightMagenta: 52 + brightCyan: 32.9 + brightWhite: 10.1 diff --git a/themes/tasmania-dark.yaml b/themes/tasmania-dark.yaml new file mode 100644 index 00000000..06f5dafd --- /dev/null +++ b/themes/tasmania-dark.yaml @@ -0,0 +1,49 @@ +name: "Tasmania Dark" +source: + marketplace_id: "lucidlabs.tasmania-theme" + version: "1.1.0" + installs: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.tasmania-theme" +colors: + bg: "#0B1218" + fg: "#E8EDF3" + black: "#0B1218" + red: "#E22339" + green: "#7DD694" + yellow: "#FFCC2C" + blue: "#005A96" + magenta: "#7A5BA5" + cyan: "#5B9BD5" + white: "#E8EDF3" + brightBlack: "#78797E" + brightRed: "#FF4D5E" + brightGreen: "#A3E8B5" + brightYellow: "#FFE066" + brightBlue: "#3D8FD6" + brightMagenta: "#9B7ED9" + brightCyan: "#7EB8DA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 245 + contrast: + fg: 95.2 + black: 0 + red: 31 + green: 70 + yellow: 79.2 + blue: 17 + magenta: 24.3 + cyan: 45.3 + white: 95.2 + brightBlack: 31 + brightRed: 42.8 + brightGreen: 82.6 + brightYellow: 88.3 + brightBlue: 39.5 + brightMagenta: 41 + brightCyan: 59.5 + brightWhite: 107.3 diff --git a/themes/tasmania-light.yaml b/themes/tasmania-light.yaml new file mode 100644 index 00000000..3caba3c1 --- /dev/null +++ b/themes/tasmania-light.yaml @@ -0,0 +1,49 @@ +name: "Tasmania Light" +source: + marketplace_id: "lucidlabs.tasmania-theme" + version: "1.1.0" + installs: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.tasmania-theme" +colors: + bg: "#FFFFFF" + fg: "#0B1218" + black: "#0B1218" + red: "#E22339" + green: "#0A690D" + yellow: "#B38800" + blue: "#005A96" + magenta: "#5A3D80" + cyan: "#006A8F" + white: "#FFFFFF" + brightBlack: "#78797E" + brightRed: "#8A1220" + brightGreen: "#2E7A58" + brightYellow: "#FFCC2C" + brightBlue: "#004678" + brightMagenta: "#3D2860" + brightCyan: "#5B9BD5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.3 + black: 105.3 + red: 70.2 + green: 83.3 + yellow: 59.7 + blue: 84.5 + magenta: 89.6 + cyan: 79.8 + white: 0 + brightBlack: 70.1 + brightRed: 90.5 + brightGreen: 75.5 + brightYellow: 23.5 + brightBlue: 92.1 + brightMagenta: 98.3 + brightCyan: 56 + brightWhite: 0 diff --git a/themes/taurus.yaml b/themes/taurus.yaml new file mode 100644 index 00000000..39d922e3 --- /dev/null +++ b/themes/taurus.yaml @@ -0,0 +1,49 @@ +name: "Taurus" +source: + marketplace_id: "xyr0z1ne.taurus" + version: "0.0.5" + installs: 2808 + author: "xyr0z1ne" + repo: "https://github.com/Xyr0s1gn/Taurus-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xyr0z1ne.taurus" +colors: + bg: "#0D0D0D" + fg: "#ADB6C2" + black: "#000000" + red: "#CF4F71" + green: "#2DA800" + yellow: "#E38711" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#6CD4D6" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#CF4F71" + brightGreen: "#2DA800" + brightYellow: "#E38711" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#6CD4D6" + brightWhite: "#151516" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 62.1 + black: 0 + red: 33.3 + green: 43.8 + yellow: 49.5 + blue: 39.5 + magenta: 65.1 + cyan: 70.8 + white: 107.6 + brightBlack: 15.4 + brightRed: 33.3 + brightGreen: 43.8 + brightYellow: 49.5 + brightBlue: 39.5 + brightMagenta: 65.1 + brightCyan: 70.8 + brightWhite: 0 diff --git a/themes/tbfox-theme-light.yaml b/themes/tbfox-theme-light.yaml new file mode 100644 index 00000000..058ba3ec --- /dev/null +++ b/themes/tbfox-theme-light.yaml @@ -0,0 +1,49 @@ +name: "TBFox Theme Light" +source: + marketplace_id: "TristanMarkBarrow.tbfox-theme" + version: "0.0.1" + installs: 44 + author: "TristanMarkBarrow" + repo: "https://github.com/tristanbarrow/vscode-tbfox-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TristanMarkBarrow.tbfox-theme" +colors: + bg: "#FBF9F4" + fg: "#2D3748" + black: "#2D3748" + red: "#E53E3E" + green: "#38A169" + yellow: "#DD6B20" + blue: "#3182CE" + magenta: "#D69E2E" + cyan: "#2A9D8F" + white: "#FBF9F4" + brightBlack: "#718096" + brightRed: "#FC8181" + brightGreen: "#68D391" + brightYellow: "#F6AD55" + brightBlue: "#63B3ED" + brightMagenta: "#F6E05E" + brightCyan: "#4FD1C7" + brightWhite: "#FBF9F4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93.9 + black: 93.9 + red: 63.4 + green: 55.9 + yellow: 57.2 + blue: 63.6 + magenta: 43.3 + cyan: 56.7 + white: 0 + brightBlack: 63.9 + brightRed: 44.1 + brightGreen: 31.2 + brightYellow: 32.5 + brightBlue: 41.3 + brightMagenta: 12.8 + brightCyan: 31.3 + brightWhite: 0 diff --git a/themes/tbfox-theme.yaml b/themes/tbfox-theme.yaml new file mode 100644 index 00000000..edb77962 --- /dev/null +++ b/themes/tbfox-theme.yaml @@ -0,0 +1,49 @@ +name: "TBFox Theme" +source: + marketplace_id: "TristanMarkBarrow.tbfox-theme" + version: "0.0.1" + installs: 44 + author: "TristanMarkBarrow" + repo: "https://github.com/tristanbarrow/vscode-tbfox-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TristanMarkBarrow.tbfox-theme" +colors: + bg: "#131615" + fg: "#E5E5E0" + black: "#0F1211" + red: "#EA7A7A" + green: "#7CC896" + yellow: "#E4C574" + blue: "#6FA8D4" + magenta: "#E59A74" + cyan: "#4DD4BF" + white: "#E5E5E0" + brightBlack: "#6B7280" + brightRed: "#F199A1" + brightGreen: "#9DD6B3" + brightYellow: "#F2D999" + brightBlue: "#95C2E7" + brightMagenta: "#F2C199" + brightCyan: "#7DE4D1" + brightWhite: "#F8F8F3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.9 + black: 0 + red: 47.9 + green: 63.2 + yellow: 72.5 + blue: 51.2 + magenta: 56.5 + cyan: 67.9 + white: 89.9 + brightBlack: 27.3 + brightRed: 59.6 + brightGreen: 73.2 + brightYellow: 83.9 + brightBlue: 66 + brightMagenta: 73.9 + brightCyan: 78.6 + brightWhite: 102.2 diff --git a/themes/tbs-theme.yaml b/themes/tbs-theme.yaml new file mode 100644 index 00000000..de4021ce --- /dev/null +++ b/themes/tbs-theme.yaml @@ -0,0 +1,49 @@ +name: "Tbs-theme" +source: + marketplace_id: "Tbs-theme.Tbs-theme" + version: "0.0.9" + installs: 239 + author: "Tbs-theme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Tbs-theme.Tbs-theme" +colors: + bg: "#1E1E1E" + fg: "#F78C6C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 54.2 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/tea-leaves.yaml b/themes/tea-leaves.yaml new file mode 100644 index 00000000..2fcac243 --- /dev/null +++ b/themes/tea-leaves.yaml @@ -0,0 +1,49 @@ +name: "Tea Leaves" +source: + marketplace_id: "DasLanky.tea-leaves" + version: "0.1.0" + installs: 613 + author: "DasLanky" + repo: "https://github.com/DasLanky/tea-leaves" + url: "https://marketplace.visualstudio.com/items?itemName=DasLanky.tea-leaves" +colors: + bg: "#1B1F20" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.6 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/teags.yaml b/themes/teags.yaml new file mode 100644 index 00000000..3fca035b --- /dev/null +++ b/themes/teags.yaml @@ -0,0 +1,49 @@ +name: "Teags" +source: + marketplace_id: "sokratic.sokratic-theme" + version: "0.0.2" + installs: 85 + author: "sokratic" + repo: "https://github.com/taylorsegell/Sokratic-VSCODE-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=sokratic.sokratic-theme" +colors: + bg: "#3D4B56" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 242 + contrast: + fg: 95 + black: 13.4 + red: 14.9 + green: 41.1 + yellow: 73.8 + blue: 15.6 + magenta: 17.9 + cyan: 35.7 + white: 78.2 + brightBlack: 10.2 + brightRed: 26.7 + brightGreen: 51.7 + brightYellow: 83.8 + brightBlue: 28.1 + brightMagenta: 33.5 + brightCyan: 43.5 + brightWhite: 78.2 diff --git a/themes/teal-crow-light.yaml b/themes/teal-crow-light.yaml new file mode 100644 index 00000000..a7b7f5ea --- /dev/null +++ b/themes/teal-crow-light.yaml @@ -0,0 +1,49 @@ +name: "Teal Crow Light" +source: + marketplace_id: "mdfaisal.mdfaisal-tealcrow" + version: "3.0.0" + installs: 312 + author: "mdfaisal" + repo: "https://github.com/acej0k3r/mdfaisal-tealcrow" + url: "https://marketplace.visualstudio.com/items?itemName=mdfaisal.mdfaisal-tealcrow" +colors: + bg: "#E5D4B1" + fg: "#3C3836" + black: "#A89984" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#665C54" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: 85 + contrast: + fg: 72.5 + black: 29.4 + red: 51.3 + green: 33.6 + yellow: 24.3 + blue: 44.9 + magenta: 44.8 + cyan: 34.6 + white: 49.6 + brightBlack: 58.1 + brightRed: 36.4 + brightGreen: 16 + brightYellow: 0 + brightBlue: 28.1 + brightMagenta: 28.7 + brightCyan: 17 + brightWhite: 72.5 diff --git a/themes/teal.yaml b/themes/teal.yaml new file mode 100644 index 00000000..9be344b1 --- /dev/null +++ b/themes/teal.yaml @@ -0,0 +1,49 @@ +name: "teal" +source: + marketplace_id: "natecrow.consonance-themes" + version: "1.2.0" + installs: 317 + author: "natecrow" + repo: "https://github.com/natecrow/consonance-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" +colors: + bg: "#111111" + fg: "#CEC5B4" + black: "#000000" + red: "#98D1D5" + green: "#00B4C2" + yellow: "#00DEEC" + blue: "#7E7666" + magenta: "#008B9A" + cyan: "#70A8AC" + white: "#EAE1CF" + brightBlack: "#7E7666" + brightRed: "#98D1D5" + brightGreen: "#00B4C2" + brightYellow: "#00DEEC" + brightBlue: "#7E7666" + brightMagenta: "#008B9A" + brightCyan: "#70A8AC" + brightWhite: "#FFFEEC" +meta: + mode: "dark" + accent: "blue" + hue: null + contrast: + fg: 71.5 + black: 0 + red: 72.2 + green: 52.6 + yellow: 74.1 + blue: 29.9 + magenta: 33.9 + cyan: 49.7 + white: 88.5 + brightBlack: 29.9 + brightRed: 72.2 + brightGreen: 52.6 + brightYellow: 74.1 + brightBlue: 29.9 + brightMagenta: 33.9 + brightCyan: 49.7 + brightWhite: 106 diff --git a/themes/tealicious.yaml b/themes/tealicious.yaml new file mode 100644 index 00000000..4230c027 --- /dev/null +++ b/themes/tealicious.yaml @@ -0,0 +1,49 @@ +name: "Tealicious" +source: + marketplace_id: "Haroon.Tealicious" + version: "0.0.3" + installs: 376 + author: "Haroon" + repo: "https://github.com/cocomo29/Tealicious" + url: "https://marketplace.visualstudio.com/items?itemName=Haroon.Tealicious" +colors: + bg: "#262A33" + fg: "#E1E4E8" + black: "#3F4451" + red: "#E05561" + green: "#98C379" + yellow: "#F69D50" + blue: "#4AA5F0" + magenta: "#C792EA" + cyan: "#82AAFF" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 266 + contrast: + fg: 86.4 + black: 0 + red: 33.9 + green: 59.5 + yellow: 56.9 + blue: 46.8 + magenta: 50.9 + cyan: 53.1 + white: 87.8 + brightBlack: 12.6 + brightRed: 43.3 + brightGreen: 74 + brightYellow: 58.4 + brightBlue: 60.9 + brightMagenta: 47.4 + brightCyan: 65 + brightWhite: 80.2 diff --git a/themes/tealy.yaml b/themes/tealy.yaml new file mode 100644 index 00000000..37459fa4 --- /dev/null +++ b/themes/tealy.yaml @@ -0,0 +1,49 @@ +name: "tealy" +source: + marketplace_id: "3060ti.tealy" + version: "0.0.2" + installs: 262 + author: "3060ti" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=3060ti.tealy" +colors: + bg: "#24483A" + fg: "#FFFFFF" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 167 + contrast: + fg: 97.6 + black: 9.7 + red: 54.1 + green: 81.6 + yellow: 86.5 + blue: 72.1 + magenta: 65.5 + cyan: 86.7 + white: 65.4 + brightBlack: 0 + brightRed: 42.4 + brightGreen: 77.5 + brightYellow: 81.2 + brightBlue: 52.9 + brightMagenta: 41 + brightCyan: 84.6 + brightWhite: 97.6 diff --git a/themes/team-pastel-colors-theme.yaml b/themes/team-pastel-colors-theme.yaml new file mode 100644 index 00000000..04897ece --- /dev/null +++ b/themes/team-pastel-colors-theme.yaml @@ -0,0 +1,49 @@ +name: "Team Pastel Colors Theme" +source: + marketplace_id: "zumba29.team-pastel-colors" + version: "0.0.1" + installs: 346 + author: "zumba29" + repo: "https://github.com/sahilmtayade/pastel-colors-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zumba29.team-pastel-colors" +colors: + bg: "#222222" + fg: "#F3EBFF" + black: "#403F41" + red: "#FC618D" + green: "#77D78C" + yellow: "#FCE874" + blue: "#FD9B60" + magenta: "#958CE3" + cyan: "#B3F3FF" + white: "#F3EBFF" + brightBlack: "#6A676C" + brightRed: "#FC618D" + brightGreen: "#77D78C" + brightYellow: "#FCE874" + brightBlue: "#FD9B60" + brightMagenta: "#958CE3" + brightCyan: "#B3F3FF" + brightWhite: "#F3EBFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 94.5 + black: 0 + red: 44.9 + green: 68 + yellow: 89.8 + blue: 59.2 + magenta: 43.6 + cyan: 90.7 + white: 94.5 + brightBlack: 21.5 + brightRed: 44.9 + brightGreen: 68 + brightYellow: 89.8 + brightBlue: 59.2 + brightMagenta: 43.6 + brightCyan: 90.7 + brightWhite: 94.5 diff --git a/themes/tearz.yaml b/themes/tearz.yaml new file mode 100644 index 00000000..1377506f --- /dev/null +++ b/themes/tearz.yaml @@ -0,0 +1,49 @@ +name: "Tearz" +source: + marketplace_id: "Tearz.tearz" + version: "0.0.3" + installs: 473 + author: "Tearz" + repo: "https://github.com/chrislaupama/tearz" + url: "https://marketplace.visualstudio.com/items?itemName=Tearz.tearz" +colors: + bg: "#24272E" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 267 + contrast: + fg: 57.1 + black: 0 + red: 34.5 + green: 58.1 + yellow: 46.3 + blue: 47.4 + magenta: 36.8 + cyan: 50.3 + white: 88.4 + brightBlack: 13.2 + brightRed: 43.8 + brightGreen: 74.5 + brightYellow: 59 + brightBlue: 61.5 + brightMagenta: 48 + brightCyan: 65.5 + brightWhite: 80.8 diff --git a/themes/techrazor-pro.yaml b/themes/techrazor-pro.yaml new file mode 100644 index 00000000..877f3fcb --- /dev/null +++ b/themes/techrazor-pro.yaml @@ -0,0 +1,49 @@ +name: "TechRazor Pro" +source: + marketplace_id: "tech-razor.techrazor-pro-theme" + version: "1.0.3" + installs: 172 + author: "Tech Razor" + repo: "https://github.com/tech-razor/techrazor-pro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tech-razor.techrazor-pro-theme" +colors: + bg: "#392A48" + fg: "#FAF9F6" + black: "#6A6A6A" + red: "#FF6D67" + green: "#00C200" + yellow: "#FEFB67" + blue: "#1F75FE" + magenta: "#FFC7EA" + cyan: "#5FFDFF" + white: "#FAF9F6" + brightBlack: "#9A9A9A" + brightRed: "#FF6D67" + brightGreen: "#5FF967" + brightYellow: "#FFFF00" + brightBlue: "#1F75FE" + brightMagenta: "#FFC7EA" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 306 + contrast: + fg: 98.6 + black: 19.5 + red: 44.2 + green: 50.3 + yellow: 96 + blue: 28.4 + magenta: 77.2 + cyan: 87.4 + white: 98.6 + brightBlack: 42.4 + brightRed: 44.2 + brightGreen: 80.3 + brightYellow: 97.4 + brightBlue: 28.4 + brightMagenta: 77.2 + brightCyan: 86.9 + brightWhite: 102.6 diff --git a/themes/techstudent10.yaml b/themes/techstudent10.yaml new file mode 100644 index 00000000..d4054e4d --- /dev/null +++ b/themes/techstudent10.yaml @@ -0,0 +1,49 @@ +name: "TechStudent10" +source: + marketplace_id: "TechStudent10.techstudent10-color-theme" + version: "0.0.4" + installs: 96 + author: "TechStudent10" + repo: "https://github.com/TechStudent11/TechStudent10-Color-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=TechStudent10.techstudent10-color-theme" +colors: + bg: "#3B1E00" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E8E7E7" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 62 + contrast: + fg: 104.7 + black: 0 + red: 24.6 + green: 50.9 + yellow: 83.5 + blue: 25.3 + magenta: 27.6 + cyan: 45.4 + white: 89.3 + brightBlack: 19.9 + brightRed: 36.4 + brightGreen: 61.4 + brightYellow: 93.5 + brightBlue: 37.9 + brightMagenta: 43.2 + brightCyan: 53.3 + brightWhite: 104.7 diff --git a/themes/techswahili-color-theme.yaml b/themes/techswahili-color-theme.yaml new file mode 100644 index 00000000..9e345a17 --- /dev/null +++ b/themes/techswahili-color-theme.yaml @@ -0,0 +1,49 @@ +name: "TechSwahili Color Theme" +source: + marketplace_id: "Ramadhanmkoma.techswahili" + version: "1.1.0" + installs: 112 + author: "TechSWahili" + repo: "https://github.com/Ramadhanmkoma/VSCode-Color-Theme-Extension" + url: "https://marketplace.visualstudio.com/items?itemName=Ramadhanmkoma.techswahili" +colors: + bg: "#1A1C36" + fg: "#F1F1FF" + black: "#3A3D4B" + red: "#FF657A" + green: "#BAD761" + yellow: "#FFD76D" + blue: "#62B0FF" + magenta: "#C39AC9" + cyan: "#9CD1BB" + white: "#EAF2F1" + brightBlack: "#696D77" + brightRed: "#FF657A" + brightGreen: "#BAD761" + brightYellow: "#FFD76D" + brightBlue: "#FF9B5E" + brightMagenta: "#C39AC9" + brightCyan: "#9CD1BB" + brightWhite: "#EAF2F1" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 97.4 + black: 0 + red: 46.3 + green: 73.4 + yellow: 83.1 + blue: 55.3 + magenta: 53 + cyan: 70.1 + white: 96.3 + brightBlack: 24.1 + brightRed: 46.3 + brightGreen: 73.4 + brightYellow: 83.1 + brightBlue: 60.1 + brightMagenta: 53 + brightCyan: 70.1 + brightWhite: 96.3 diff --git a/themes/techswahili-deep.yaml b/themes/techswahili-deep.yaml new file mode 100644 index 00000000..7de154d8 --- /dev/null +++ b/themes/techswahili-deep.yaml @@ -0,0 +1,49 @@ +name: "TechSwahili Deep" +source: + marketplace_id: "Ramadhanmkoma.techswahili" + version: "1.1.0" + installs: 112 + author: "TechSWahili" + repo: "https://github.com/Ramadhanmkoma/VSCode-Color-Theme-Extension" + url: "https://marketplace.visualstudio.com/items?itemName=Ramadhanmkoma.techswahili" +colors: + bg: "#0D0E1C" + fg: "#F1F1FF" + black: "#3A3D4B" + red: "#FF657A" + green: "#BAD761" + yellow: "#FFD76D" + blue: "#62B0FF" + magenta: "#C39AC9" + cyan: "#9CD1BB" + white: "#EAF2F1" + brightBlack: "#696D77" + brightRed: "#FF657A" + brightGreen: "#BAD761" + brightYellow: "#FFD76D" + brightBlue: "#FF9B5E" + brightMagenta: "#C39AC9" + brightCyan: "#9CD1BB" + brightWhite: "#EAF2F1" +meta: + mode: "dark" + accent: "orange" + hue: 280 + contrast: + fg: 99 + black: 0 + red: 47.8 + green: 74.9 + yellow: 84.6 + blue: 56.8 + magenta: 54.6 + cyan: 71.6 + white: 97.8 + brightBlack: 25.6 + brightRed: 47.8 + brightGreen: 74.9 + brightYellow: 84.6 + brightBlue: 61.6 + brightMagenta: 54.6 + brightCyan: 71.6 + brightWhite: 97.8 diff --git a/themes/techswahili-modern-dark.yaml b/themes/techswahili-modern-dark.yaml new file mode 100644 index 00000000..45dbe182 --- /dev/null +++ b/themes/techswahili-modern-dark.yaml @@ -0,0 +1,49 @@ +name: "TechSwahili Modern Dark" +source: + marketplace_id: "Ramadhanmkoma.techswahili" + version: "1.1.0" + installs: 112 + author: "TechSWahili" + repo: "https://github.com/Ramadhanmkoma/VSCode-Color-Theme-Extension" + url: "https://marketplace.visualstudio.com/items?itemName=Ramadhanmkoma.techswahili" +colors: + bg: "#0F172A" + fg: "#E2E8F0" + black: "#1E293B" + red: "#EF4444" + green: "#22C55E" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#047857" + cyan: "#06B6D4" + white: "#E2E8F0" + brightBlack: "#475569" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#34D399" + brightCyan: "#22D3EE" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "orange" + hue: 266 + contrast: + fg: 91.4 + black: 0 + red: 36.7 + green: 56.7 + yellow: 59.3 + blue: 36.7 + magenta: 23.8 + cyan: 53.8 + white: 91.4 + brightBlack: 14.6 + brightRed: 48 + brightGreen: 70.4 + brightYellow: 72.6 + brightBlue: 51.3 + brightMagenta: 65.1 + brightCyan: 68.5 + brightWhite: 103.3 diff --git a/themes/tecoma-theme.yaml b/themes/tecoma-theme.yaml new file mode 100644 index 00000000..1235c470 --- /dev/null +++ b/themes/tecoma-theme.yaml @@ -0,0 +1,49 @@ +name: "Tecoma Theme" +source: + marketplace_id: "monket.karl-okeeffes-theme" + version: "5.1.0" + installs: 794 + author: "Karl O'Keeffe" + repo: "https://github.com/karl/vscode-karl-okeeffes-theme" + url: "https://marketplace.visualstudio.com/items?itemName=monket.karl-okeeffes-theme" +colors: + bg: "#1F1F1F" + fg: "#BDBDBD" + black: "#000000" + red: "#BD414D" + green: "#759C58" + yellow: "#C6975C" + blue: "#397CB3" + magenta: "#9C57B0" + cyan: "#3A7277" + white: "#D6D6D6" + brightBlack: "#808080" + brightRed: "#E06C75" + brightGreen: "#94C470" + brightYellow: "#EFBC81" + brightBlue: "#4CA1E7" + brightMagenta: "#C678DD" + brightCyan: "#4F989E" + brightWhite: "#ECECEC" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 64.9 + black: 0 + red: 24.8 + green: 41.2 + yellow: 48.7 + blue: 29 + magenta: 26.9 + cyan: 22.7 + white: 79.7 + brightBlack: 32.8 + brightRed: 41.1 + brightGreen: 61.2 + brightYellow: 69.7 + brightBlue: 46.6 + brightMagenta: 44.2 + brightCyan: 39.2 + brightWhite: 93.5 diff --git a/themes/telax.yaml b/themes/telax.yaml new file mode 100644 index 00000000..cc3912cc --- /dev/null +++ b/themes/telax.yaml @@ -0,0 +1,49 @@ +name: "TelaX" +source: + marketplace_id: "DariusBau.telax" + version: "1.0.1" + installs: 63 + author: "Darius Bau" + repo: "https://github.com/baudarius/telax" + url: "https://marketplace.visualstudio.com/items?itemName=DariusBau.telax" +colors: + bg: "#202328" + fg: "#DADADA" + black: "#666666" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 81.6 + black: 20.5 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 28.2 + cyan: 46 + white: 88.5 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.8 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/telescope-fork.yaml b/themes/telescope-fork.yaml new file mode 100644 index 00000000..9be245c0 --- /dev/null +++ b/themes/telescope-fork.yaml @@ -0,0 +1,49 @@ +name: "Telescope - Fork" +source: + marketplace_id: "Alucardness.telescope-theme" + version: "0.0.6" + installs: 1548 + author: "Alucardness" + repo: "https://github.com/alucardness/telescope-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Alucardness.telescope-theme" +colors: + bg: "#232534" + fg: "#BFC3E2" + black: "#121319" + red: "#BF616A" + green: "#72C2A2" + yellow: "#78B7E2" + blue: "#84A0C6" + magenta: "#A093C7" + cyan: "#89B8C2" + white: "#BCC5D8" + brightBlack: "#3E4960" + brightRed: "#E29199" + brightGreen: "#A0DBC2" + brightYellow: "#A8D2EE" + brightBlue: "#A3BEE3" + brightMagenta: "#C8B5E6" + brightCyan: "#B6D8DE" + brightWhite: "#E1EBFF" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 68.2 + black: 0 + red: 30.9 + green: 58 + yellow: 56.5 + blue: 46.7 + magenta: 44.8 + cyan: 56.6 + white: 68.2 + brightBlack: 8.5 + brightRed: 51.8 + brightGreen: 74.1 + brightYellow: 72.8 + brightBlue: 63.1 + brightMagenta: 64 + brightCyan: 76.1 + brightWhite: 91.4 diff --git a/themes/telescope.yaml b/themes/telescope.yaml new file mode 100644 index 00000000..b944627a --- /dev/null +++ b/themes/telescope.yaml @@ -0,0 +1,49 @@ +name: "telescope" +source: + marketplace_id: "anyavyazemskaya.telesc0pe" + version: "0.0.1" + installs: 3 + author: "anya vyazemskaya" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=anyavyazemskaya.telesc0pe" +colors: + bg: "#262734" + fg: "#CDC6FF" + black: "#000000" + red: "#FFB0AC" + green: "#AFFFC8" + yellow: "#FFE7BB" + blue: "#A3B6FF" + magenta: "#D7ABFF" + cyan: "#B9DDD2" + white: "#C4C4C4" + brightBlack: "#5E5E5E" + brightRed: "#FFB0AC" + brightGreen: "#AFFFC8" + brightYellow: "#FFE7BB" + brightBlue: "#A3B6FF" + brightMagenta: "#D7ABFF" + brightCyan: "#B9DDD2" + brightWhite: "#E4E3E2" +meta: + mode: "dark" + accent: "magenta" + hue: 281 + contrast: + fg: 72.4 + black: 0 + red: 67.7 + green: 92.9 + yellow: 90.6 + blue: 61.2 + magenta: 63.5 + cyan: 77.8 + white: 67.5 + brightBlack: 16.3 + brightRed: 67.7 + brightGreen: 92.9 + brightYellow: 90.6 + brightBlue: 61.2 + brightMagenta: 63.5 + brightCyan: 77.8 + brightWhite: 86.4 diff --git a/themes/tema-dark-nero.yaml b/themes/tema-dark-nero.yaml new file mode 100644 index 00000000..4f1b04b4 --- /dev/null +++ b/themes/tema-dark-nero.yaml @@ -0,0 +1,49 @@ +name: "tema-dark-nero" +source: + marketplace_id: "amarcos1337.dark-nero-theme" + version: "0.0.1" + installs: 19 + author: "amarcos1337" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=amarcos1337.dark-nero-theme" +colors: + bg: "#1B1B1B" + fg: "#FBFBFB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 103.8 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/tema-dos-cria.yaml b/themes/tema-dos-cria.yaml new file mode 100644 index 00000000..9b6b5c02 --- /dev/null +++ b/themes/tema-dos-cria.yaml @@ -0,0 +1,49 @@ +name: "Tema dos cria" +source: + marketplace_id: "nul0.tema-dos-cria" + version: "0.0.1" + installs: 924 + author: "nul0" + repo: "https://github.com/Nulo0/tema-dos-cria" + url: "https://marketplace.visualstudio.com/items?itemName=nul0.tema-dos-cria" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#957AF7" + magenta: "#BB9AF7" + cyan: "#B294FF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#957AF7" + brightMagenta: "#BB9AF7" + brightCyan: "#B294FF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "magenta" + hue: 280 + contrast: + fg: 59.3 + black: 0 + red: 49.4 + green: 72.2 + yellow: 62.2 + blue: 40.3 + magenta: 55 + cyan: 52.4 + white: 32.1 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 45.8 + brightYellow: 62.2 + brightBlue: 40.3 + brightMagenta: 55 + brightCyan: 52.4 + brightWhite: 59 diff --git a/themes/tema-felipao.yaml b/themes/tema-felipao.yaml new file mode 100644 index 00000000..5fbfcc7c --- /dev/null +++ b/themes/tema-felipao.yaml @@ -0,0 +1,49 @@ +name: "tema felipao" +source: + marketplace_id: "FelipeGalati.felipaptest" + version: "0.0.1" + installs: 64 + author: "Felipe Galati" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=FelipeGalati.felipaptest" +colors: + bg: "#0E0619" + fg: "#B2ACBC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 302 + contrast: + fg: 58.5 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/teneblattinus.yaml b/themes/teneblattinus.yaml new file mode 100644 index 00000000..927a909c --- /dev/null +++ b/themes/teneblattinus.yaml @@ -0,0 +1,49 @@ +name: "Teneblattinus" +source: + marketplace_id: "Eluce.teneblattinus" + version: "1.1.2" + installs: 34 + author: "Eluce" + repo: "https://github.com/elucestel4ris/teneblattinus" + url: "https://marketplace.visualstudio.com/items?itemName=Eluce.teneblattinus" +colors: + bg: "#06000A" + fg: "#C7C3DF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 316 + contrast: + fg: 72.1 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/tenebris.yaml b/themes/tenebris.yaml new file mode 100644 index 00000000..c030f0c9 --- /dev/null +++ b/themes/tenebris.yaml @@ -0,0 +1,49 @@ +name: "Tenebris" +source: + marketplace_id: "devShed.tenebris" + version: "0.2.0" + installs: 116 + author: "devShed" + repo: "https://github.com/5h3d/Tenebris" + url: "https://marketplace.visualstudio.com/items?itemName=devShed.tenebris" +colors: + bg: "#222222" + fg: "#A2AABC" + black: "#3D3E42" + red: "#EF6B73" + green: "#78D1E9" + yellow: "#BABBBB" + blue: "#B9C6C9" + magenta: "#C3A6FF" + cyan: "#B9C6C9" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#78D1E9" + brightYellow: "#BABBBB" + brightBlue: "#B9C6C9" + brightMagenta: "#C3A6FF" + brightCyan: "#B9C6C9" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 53.7 + black: 0 + red: 43.4 + green: 69 + yellow: 63.2 + blue: 68.3 + magenta: 59.9 + cyan: 68.3 + white: 53.7 + brightBlack: 9.7 + brightRed: 43.4 + brightGreen: 69 + brightYellow: 63.2 + brightBlue: 68.3 + brightMagenta: 59.9 + brightCyan: 68.3 + brightWhite: 53.7 diff --git a/themes/terafox.yaml b/themes/terafox.yaml new file mode 100644 index 00000000..d696abb4 --- /dev/null +++ b/themes/terafox.yaml @@ -0,0 +1,49 @@ +name: "Terafox" +source: + marketplace_id: "keifererikson.nightfox" + version: "0.0.14" + installs: 17378 + author: "Keifer Erikson" + repo: "https://github.com/keifererikson/vscode-nightfox" + url: "https://marketplace.visualstudio.com/items?itemName=keifererikson.nightfox" +colors: + bg: "#152528" + fg: "#CDCECF" + black: "#2F3239" + red: "#E85C51" + green: "#7AA4A1" + yellow: "#FDA47F" + blue: "#5A93AA" + magenta: "#AD5C7C" + cyan: "#A1CDD8" + white: "#EBEBEB" + brightBlack: "#484A55" + brightRed: "#D16982" + brightGreen: "#90C7AC" + brightYellow: "#FDB292" + brightBlue: "#73A3B7" + brightMagenta: "#B97490" + brightCyan: "#AFD4DE" + brightWhite: "#E3E3E4" +meta: + mode: "dark" + accent: "orange" + hue: 211 + contrast: + fg: 74.3 + black: 0 + red: 37.9 + green: 46.3 + yellow: 62.7 + blue: 37.8 + magenta: 27.7 + cyan: 69.4 + white: 92.3 + brightBlack: 9.6 + brightRed: 37.3 + brightGreen: 63.3 + brightYellow: 68.2 + brightBlue: 46.3 + brightMagenta: 36.5 + brightCyan: 74.1 + brightWhite: 87.3 diff --git a/themes/term.yaml b/themes/term.yaml new file mode 100644 index 00000000..e5b0f10e --- /dev/null +++ b/themes/term.yaml @@ -0,0 +1,49 @@ +name: "Term" +source: + marketplace_id: "distek.vscode-term-theme" + version: "0.0.2" + installs: 76 + author: "distek" + repo: "https://github.com/distek/vscode-theme-term" + url: "https://marketplace.visualstudio.com/items?itemName=distek.vscode-term-theme" +colors: + bg: "#181B20" + fg: "#B5B4D9" + black: "#485261" + red: "#AF6A6A" + green: "#AAC15C" + yellow: "#CEB855" + blue: "#689DC0" + magenta: "#9773B0" + cyan: "#6AAF9A" + white: "#CDD3DA" + brightBlack: "#576375" + brightRed: "#B87A7A" + brightGreen: "#B3C86F" + brightYellow: "#D3C069" + brightBlue: "#76A6C6" + brightMagenta: "#A483B9" + brightCyan: "#7AB8A5" + brightWhite: "#D3D8DE" +meta: + mode: "dark" + accent: "green" + hue: 261 + contrast: + fg: 62.2 + black: 13.2 + red: 32.1 + green: 62.2 + yellow: 62.8 + blue: 44.7 + magenta: 33.9 + cyan: 50.5 + white: 78 + brightBlack: 20 + brightRed: 38.5 + brightGreen: 66.6 + brightYellow: 67.1 + brightBlue: 49.6 + brightMagenta: 40.9 + brightCyan: 55.9 + brightWhite: 81.1 diff --git a/themes/terminal.yaml b/themes/terminal.yaml new file mode 100644 index 00000000..5701aed7 --- /dev/null +++ b/themes/terminal.yaml @@ -0,0 +1,49 @@ +name: "Terminal" +source: + marketplace_id: "VillageOfGamers.classic-terminal-revisited" + version: "1.0.0" + installs: 347 + author: "Village of Gamers" + repo: "https://github.com/VillageOfGamers/classic-terminal-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=VillageOfGamers.classic-terminal-revisited" +colors: + bg: "#000000" + fg: "#00FF00" + black: "#555555" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 86.5 + black: 16.1 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 16.1 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 16.2 + brightMagenta: 46.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/terracecat.yaml b/themes/terracecat.yaml new file mode 100644 index 00000000..f5be8661 --- /dev/null +++ b/themes/terracecat.yaml @@ -0,0 +1,49 @@ +name: "TerraceCat" +source: + marketplace_id: "Daiki.terracecat" + version: "0.2.1" + installs: 66 + author: "Daiki" + repo: "https://github.com/Daiki48/TerraceCat" + url: "https://marketplace.visualstudio.com/items?itemName=Daiki.terracecat" +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 230 + contrast: + fg: 100.4 + black: 0 + red: 22.5 + green: 48.8 + yellow: 81.4 + blue: 23.2 + magenta: 25.6 + cyan: 43.4 + white: 85.8 + brightBlack: 17.9 + brightRed: 34.4 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.8 + brightMagenta: 41.2 + brightCyan: 51.2 + brightWhite: 85.8 diff --git a/themes/terrarium-minimal-dark.yaml b/themes/terrarium-minimal-dark.yaml new file mode 100644 index 00000000..a487fc1f --- /dev/null +++ b/themes/terrarium-minimal-dark.yaml @@ -0,0 +1,49 @@ +name: "Terrarium Minimal (Dark)" +source: + marketplace_id: "appliedscience.terrarium-theme" + version: "0.4.7" + installs: 73 + author: "Applied Science" + repo: "https://github.com/appliedsciencegroup/terrarium-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=appliedscience.terrarium-theme" +colors: + bg: "#242424" + fg: "#E8E8E8" + black: "#242424" + red: "#D83933" + green: "#5C7B57" + yellow: "#E0A030" + blue: "#E0CF8E" + magenta: "#E0CF8E" + cyan: "#5C7B57" + white: "#E8E8E8" + brightBlack: "#4F5252" + brightRed: "#D83933" + brightGreen: "#5C7B57" + brightYellow: "#E0A030" + brightBlue: "#E0CF8E" + brightMagenta: "#E0CF8E" + brightCyan: "#5C7B57" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 90.2 + black: 0 + red: 28.3 + green: 26 + yellow: 54.8 + blue: 74.8 + magenta: 74.8 + cyan: 26 + white: 90.2 + brightBlack: 12 + brightRed: 28.3 + brightGreen: 26 + brightYellow: 54.8 + brightBlue: 74.8 + brightMagenta: 74.8 + brightCyan: 26 + brightWhite: 105.1 diff --git a/themes/terrarium-minimal-light.yaml b/themes/terrarium-minimal-light.yaml new file mode 100644 index 00000000..8140d9a7 --- /dev/null +++ b/themes/terrarium-minimal-light.yaml @@ -0,0 +1,49 @@ +name: "Terrarium Minimal (Light)" +source: + marketplace_id: "appliedscience.terrarium-theme" + version: "0.4.7" + installs: 73 + author: "Applied Science" + repo: "https://github.com/appliedsciencegroup/terrarium-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=appliedscience.terrarium-theme" +colors: + bg: "#FFFFFF" + fg: "#4F5252" + black: "#4F5252" + red: "#D83933" + green: "#5C7B57" + yellow: "#E0A030" + blue: "#E0CF8E" + magenta: "#E0CF8E" + cyan: "#5C7B57" + white: "#FFFFFF" + brightBlack: "#4F5252" + brightRed: "#D83933" + brightGreen: "#5C7B57" + brightYellow: "#E0A030" + brightBlue: "#E0CF8E" + brightMagenta: "#E0CF8E" + brightCyan: "#5C7B57" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 87.4 + black: 87.4 + red: 70.6 + green: 72.9 + yellow: 44.6 + blue: 25.5 + magenta: 25.5 + cyan: 72.9 + white: 0 + brightBlack: 87.4 + brightRed: 70.6 + brightGreen: 72.9 + brightYellow: 44.6 + brightBlue: 25.5 + brightMagenta: 25.5 + brightCyan: 72.9 + brightWhite: 0 diff --git a/themes/terrorboy-dark.yaml b/themes/terrorboy-dark.yaml new file mode 100644 index 00000000..0d0bb9cf --- /dev/null +++ b/themes/terrorboy-dark.yaml @@ -0,0 +1,49 @@ +name: "Terrorboy-dark" +source: + marketplace_id: "Terrorboy.terrorboy-dark" + version: "0.3.0" + installs: 3 + author: "Terrorboy" + repo: "https://github.com/Terrorboy/terrorboy-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Terrorboy.terrorboy-dark" +colors: + bg: "#212123" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.2 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.1 + magenta: 28.5 + cyan: 46.3 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.3 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/tesselate.yaml b/themes/tesselate.yaml new file mode 100644 index 00000000..311be888 --- /dev/null +++ b/themes/tesselate.yaml @@ -0,0 +1,49 @@ +name: "tesselate" +source: + marketplace_id: "MrMartian.tesselate" + version: "0.0.6" + installs: 198 + author: "MrMartian" + repo: "https://github.com/CraigglesO/tesselate-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MrMartian.tesselate" +colors: + bg: "#383B43" + fg: "#E0DED5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + contrast: + fg: 78.3 + black: 8 + red: 19.5 + green: 45.8 + yellow: 78.4 + blue: 20.2 + magenta: 22.6 + cyan: 40.4 + white: 82.8 + brightBlack: 14.8 + brightRed: 31.4 + brightGreen: 56.3 + brightYellow: 88.4 + brightBlue: 32.8 + brightMagenta: 38.2 + brightCyan: 48.2 + brightWhite: 82.8 diff --git a/themes/tesseract-dark.yaml b/themes/tesseract-dark.yaml new file mode 100644 index 00000000..701d257e --- /dev/null +++ b/themes/tesseract-dark.yaml @@ -0,0 +1,49 @@ +name: "Tesseract Dark" +source: + marketplace_id: "martian.tesseract" + version: "1.5.0" + installs: 6300 + author: "Endurance the Martian 👽" + repo: "https://github.com/hendurhance/tesseract" + url: "https://marketplace.visualstudio.com/items?itemName=martian.tesseract" +colors: + bg: "#141B28" + fg: "#EEFFFF" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 262 + contrast: + fg: 104.1 + black: 0 + red: 49.5 + green: 45.9 + yellow: 62.3 + blue: 51.2 + magenta: 55.1 + cyan: 70.6 + white: 32.2 + brightBlack: 0 + brightRed: 49.5 + brightGreen: 45.9 + brightYellow: 62.3 + brightBlue: 51.2 + brightMagenta: 55.1 + brightCyan: 70.6 + brightWhite: 59.1 diff --git a/themes/test.yaml b/themes/test.yaml new file mode 100644 index 00000000..bd140f12 --- /dev/null +++ b/themes/test.yaml @@ -0,0 +1,49 @@ +name: "Test" +source: + marketplace_id: "KuldeepRawat.deepsea" + version: "1.4.0" + installs: 842 + author: "Kuldeep Rawat" + repo: "https://github.com/thekuldeeprawat/deepsea" + url: "https://marketplace.visualstudio.com/items?itemName=KuldeepRawat.deepsea" +colors: + bg: "#040B1F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 107.6 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 90.7 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/tetra-contrast.yaml b/themes/tetra-contrast.yaml new file mode 100644 index 00000000..42ae8331 --- /dev/null +++ b/themes/tetra-contrast.yaml @@ -0,0 +1,49 @@ +name: "tetra-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#050F11" + fg: "#C9D7DB" + black: "#0B2025" + red: "#BA0E2E" + green: "#148B97" + yellow: "#FDCE7F" + blue: "#E8744A" + magenta: "#E2585D" + cyan: "#148B97" + white: "#D8E2E5" + brightBlack: "#1C5560" + brightRed: "#F03E5F" + brightGreen: "#2ED3E3" + brightYellow: "#FFF4E3" + brightBlue: "#F3BAA5" + brightMagenta: "#F1AFB1" + brightCyan: "#2ED3E3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 210 + contrast: + fg: 80.4 + black: 0 + red: 21.2 + green: 34 + yellow: 80.9 + blue: 45.5 + magenta: 38.3 + cyan: 34 + white: 87.7 + brightBlack: 13.3 + brightRed: 37.5 + brightGreen: 68.8 + brightYellow: 101.1 + brightBlue: 72.3 + brightMagenta: 68.3 + brightCyan: 68.8 + brightWhite: 107.6 diff --git a/themes/tetra-light.yaml b/themes/tetra-light.yaml new file mode 100644 index 00000000..17171a28 --- /dev/null +++ b/themes/tetra-light.yaml @@ -0,0 +1,49 @@ +name: "tetra-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#205A68" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#148B97" + yellow: "#C49A52" + blue: "#E8744A" + magenta: "#E2585D" + cyan: "#148B97" + white: "#266B7B" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#2ED3E3" + brightYellow: "#DEC69E" + brightBlue: "#F3BAA5" + brightMagenta: "#F1AFB1" + brightCyan: "#2ED3E3" + brightWhite: "#389DB6" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 86.6 + black: 0 + red: 80.3 + green: 67.4 + yellow: 50.6 + blue: 56 + magenta: 63.1 + cyan: 67.4 + white: 80 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 33.5 + brightYellow: 29 + brightBlue: 30.2 + brightMagenta: 34 + brightCyan: 33.5 + brightWhite: 58.3 diff --git a/themes/tetra.yaml b/themes/tetra.yaml new file mode 100644 index 00000000..f347cbb5 --- /dev/null +++ b/themes/tetra.yaml @@ -0,0 +1,49 @@ +name: "tetra" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#13363F" + fg: "#C9D7DB" + black: "#194753" + red: "#BA0E2E" + green: "#148B97" + yellow: "#FDCE7F" + blue: "#E8744A" + magenta: "#E2585D" + cyan: "#148B97" + white: "#D8E2E5" + brightBlack: "#2B798D" + brightRed: "#F03E5F" + brightGreen: "#2ED3E3" + brightYellow: "#FFF4E3" + brightBlue: "#F3BAA5" + brightMagenta: "#F1AFB1" + brightCyan: "#2ED3E3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 217 + contrast: + fg: 75.1 + black: 0 + red: 15.9 + green: 28.7 + yellow: 75.6 + blue: 40.2 + magenta: 33 + cyan: 28.7 + white: 82.3 + brightBlack: 21.9 + brightRed: 32.2 + brightGreen: 63.5 + brightYellow: 95.8 + brightBlue: 67 + brightMagenta: 62.9 + brightCyan: 63.5 + brightWhite: 102.2 diff --git a/themes/teutobourg.yaml b/themes/teutobourg.yaml new file mode 100644 index 00000000..0850ff8a --- /dev/null +++ b/themes/teutobourg.yaml @@ -0,0 +1,49 @@ +name: "Teutobourg" +source: + marketplace_id: "bukefalus.teutobourg" + version: "1.0.1" + installs: 107 + author: "bukefalus" + repo: "https://github.com/DominikDolejsi/teutobourg-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bukefalus.teutobourg" +colors: + bg: "#0E0906" + fg: "#99582A" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 57 + contrast: + fg: 24.2 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/textmate-rstheme.yaml b/themes/textmate-rstheme.yaml new file mode 100644 index 00000000..35fea880 --- /dev/null +++ b/themes/textmate-rstheme.yaml @@ -0,0 +1,49 @@ +name: "textmate.rstheme" +source: + marketplace_id: "nanxstats.textmate-rstheme" + version: "2026.1.0" + installs: 2611 + author: "Nan Xiao" + repo: "https://github.com/nanxstats/vscode-textmate-rstheme" + url: "https://marketplace.visualstudio.com/items?itemName=nanxstats.textmate-rstheme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#949800" + blue: "#5B90BF" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#B5BA00" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 106 + black: 101.5 + red: 74.8 + green: 85.2 + yellow: 57.9 + blue: 61.3 + magenta: 74.3 + cyan: 73.8 + white: 71.6 + brightBlack: 81.8 + brightRed: 85.2 + brightGreen: 74.6 + brightYellow: 40.9 + brightBlue: 60.7 + brightMagenta: 59.3 + brightCyan: 63.3 + brightWhite: 57.2 diff --git a/themes/th-me-dark-avril-vert-printemps.yaml b/themes/th-me-dark-avril-vert-printemps.yaml new file mode 100644 index 00000000..609b1f93 --- /dev/null +++ b/themes/th-me-dark-avril-vert-printemps.yaml @@ -0,0 +1,49 @@ +name: "Thème Dark Avril - Vert Printemps" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#152238" + fg: "#F0F0F0" + black: "#152238" + red: "#FF6666" + green: "#2AD881" + yellow: "#FFD248" + blue: "#33A6F0" + magenta: "#BB59CC" + cyan: "#00C5C9" + white: "#F0F0F0" + brightBlack: "#667A88" + brightRed: "#FF6666" + brightGreen: "#2AD881" + brightYellow: "#FFD248" + brightBlue: "#33A6F0" + brightMagenta: "#BB59CC" + brightCyan: "#00C5C9" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 95.6 + black: 0 + red: 45.5 + green: 65.3 + yellow: 79.9 + blue: 47.9 + magenta: 33.5 + cyan: 58.6 + white: 95.6 + brightBlack: 28.2 + brightRed: 45.5 + brightGreen: 65.3 + brightYellow: 79.9 + brightBlue: 47.9 + brightMagenta: 33.5 + brightCyan: 58.6 + brightWhite: 95.6 diff --git a/themes/th-me-dark-janvier-bleu-fonc.yaml b/themes/th-me-dark-janvier-bleu-fonc.yaml new file mode 100644 index 00000000..1dc7e6f2 --- /dev/null +++ b/themes/th-me-dark-janvier-bleu-fonc.yaml @@ -0,0 +1,49 @@ +name: "Thème Dark Janvier - Bleu Foncé" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#0D1B2A" + fg: "#E0E0E0" + black: "#0D1B2A" + red: "#FF4B5C" + green: "#00A676" + yellow: "#F5CB5C" + blue: "#1B98E0" + magenta: "#BB29BB" + cyan: "#00ADB5" + white: "#E0E0E0" + brightBlack: "#546E7A" + brightRed: "#FF4B5C" + brightGreen: "#00A676" + brightYellow: "#F5CB5C" + brightBlue: "#1B98E0" + brightMagenta: "#BB29BB" + brightCyan: "#00ADB5" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "pink" + hue: 251 + contrast: + fg: 86.5 + black: 0 + red: 41.6 + green: 42.7 + yellow: 76.7 + blue: 42 + magenta: 26.8 + cyan: 48 + white: 86.5 + brightBlack: 23.4 + brightRed: 41.6 + brightGreen: 42.7 + brightYellow: 76.7 + brightBlue: 42 + brightMagenta: 26.8 + brightCyan: 48 + brightWhite: 86.5 diff --git a/themes/th-me-dark-juillet-contraste-lev.yaml b/themes/th-me-dark-juillet-contraste-lev.yaml new file mode 100644 index 00000000..4ace9ce3 --- /dev/null +++ b/themes/th-me-dark-juillet-contraste-lev.yaml @@ -0,0 +1,49 @@ +name: "Thème Dark Juillet - Contraste Élevé" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#001B2E" + fg: "#E6F3FF" + black: "#000000" + red: "#FF8C00" + green: "#4DB6AC" + yellow: "#FFD700" + blue: "#4FB3FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 242 + contrast: + fg: 97.4 + black: 0 + red: 55.3 + green: 52.8 + yellow: 82.8 + blue: 56.1 + magenta: 44.8 + cyan: 90.8 + white: 106.5 + brightBlack: 14.7 + brightRed: 43 + brightGreen: 86.7 + brightYellow: 101.7 + brightBlue: 25.9 + brightMagenta: 50.4 + brightCyan: 91.9 + brightWhite: 106.5 diff --git a/themes/th-me-dark-juin-high-contrast.yaml b/themes/th-me-dark-juin-high-contrast.yaml new file mode 100644 index 00000000..0cdadc0d --- /dev/null +++ b/themes/th-me-dark-juin-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Thème Dark Juin - High Contrast" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF3333" + green: "#33FF33" + yellow: "#FFFF33" + blue: "#00AFFF" + magenta: "#FF00FF" + cyan: "#00FAFA" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#FF3333" + brightGreen: "#33FF33" + brightYellow: "#FFFF33" + brightBlue: "#00AFFF" + brightMagenta: "#FF00FF" + brightCyan: "#00FAFA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 39.6 + green: 87 + yellow: 102.8 + blue: 54.6 + magenta: 46.2 + cyan: 89.3 + white: 107.9 + brightBlack: 16.1 + brightRed: 39.6 + brightGreen: 87 + brightYellow: 102.8 + brightBlue: 54.6 + brightMagenta: 46.2 + brightCyan: 89.3 + brightWhite: 107.9 diff --git a/themes/th-me-dark-septembre-contraste-lev.yaml b/themes/th-me-dark-septembre-contraste-lev.yaml new file mode 100644 index 00000000..97378391 --- /dev/null +++ b/themes/th-me-dark-septembre-contraste-lev.yaml @@ -0,0 +1,49 @@ +name: "Thème Dark Septembre - Contraste Élevé" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 16.1 + brightRed: 44.4 + brightGreen: 88.1 + brightYellow: 103.1 + brightBlue: 27.4 + brightMagenta: 51.9 + brightCyan: 93.4 + brightWhite: 107.9 diff --git a/themes/th-me-high-contrast-janvier-r-vis.yaml b/themes/th-me-high-contrast-janvier-r-vis.yaml new file mode 100644 index 00000000..06c4a2de --- /dev/null +++ b/themes/th-me-high-contrast-janvier-r-vis.yaml @@ -0,0 +1,49 @@ +name: "Thème High Contrast Janvier - Révisé" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#1E90FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#808080" + brightRed: "#FF4500" + brightGreen: "#32CD32" + brightYellow: "#FFD700" + brightBlue: "#1E90FF" + brightMagenta: "#EE82EE" + brightCyan: "#00CED1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 42.7 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 34.8 + brightRed: 41.4 + brightGreen: 61.4 + brightYellow: 84.3 + brightBlue: 42.7 + brightMagenta: 56.8 + brightCyan: 65.6 + brightWhite: 107.9 diff --git a/themes/th-me-sombre-d-automne.yaml b/themes/th-me-sombre-d-automne.yaml new file mode 100644 index 00000000..96bed23d --- /dev/null +++ b/themes/th-me-sombre-d-automne.yaml @@ -0,0 +1,49 @@ +name: "Thème Sombre d'Automne" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 821 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#2B1B0F" + fg: "#E0D7C6" + black: "#2B1B0F" + red: "#FF7F50" + green: "#14A460" + yellow: "#D4A15D" + blue: "#5B9BD5" + magenta: "#C678DD" + cyan: "#3A8B91" + white: "#E0D7C6" + brightBlack: "#3A2A1E" + brightRed: "#FF7F50" + brightGreen: "#14A460" + brightYellow: "#FFD700" + brightBlue: "#5B9BD5" + brightMagenta: "#D670D6" + brightCyan: "#8BE9FD" + brightWhite: "#E0D7C6" +meta: + mode: "dark" + accent: "green" + hue: 57 + contrast: + fg: 80.9 + black: 0 + red: 51.5 + green: 40.8 + yellow: 54.5 + blue: 43.8 + magenta: 44.2 + cyan: 32.8 + white: 80.9 + brightBlack: 0 + brightRed: 51.5 + brightGreen: 40.8 + brightYellow: 82.3 + brightBlue: 43.8 + brightMagenta: 44.4 + brightCyan: 83 + brightWhite: 80.9 diff --git a/themes/thanatos.yaml b/themes/thanatos.yaml new file mode 100644 index 00000000..3c64e113 --- /dev/null +++ b/themes/thanatos.yaml @@ -0,0 +1,49 @@ +name: "Thanatos" +source: + marketplace_id: "fede-crc.thanatos" + version: "2.2.1" + installs: 3589 + author: "Federico Figueroa C." + repo: "https://github.com/fedfigca/thanatos" + url: "https://marketplace.visualstudio.com/items?itemName=fede-crc.thanatos" +colors: + bg: "#F6F6F0" + fg: "#3F5060" + black: "#36475B" + red: "#E19887" + green: "#008A8E" + yellow: "#EAA221" + blue: "#0E9BD1" + magenta: "#AB43AA" + cyan: "#3ABEC0" + white: "#7899BA" + brightBlack: "#65737E" + brightRed: "#D47186" + brightGreen: "#0DE1B1" + brightYellow: "#EAA221" + brightBlue: "#7899BA" + brightMagenta: "#AB43AA" + brightCyan: "#29CED1" + brightWhite: "#1A2B3C" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 83 + black: 86.3 + red: 40 + green: 62.6 + yellow: 36.7 + blue: 52.6 + magenta: 68.8 + cyan: 38.5 + white: 50.7 + brightBlack: 68.2 + brightRed: 53.6 + brightGreen: 23.8 + brightYellow: 36.7 + brightBlue: 50.7 + brightMagenta: 68.8 + brightCyan: 31 + brightWhite: 95.5 diff --git a/themes/thatdatapurple.yaml b/themes/thatdatapurple.yaml new file mode 100644 index 00000000..1201408f --- /dev/null +++ b/themes/thatdatapurple.yaml @@ -0,0 +1,49 @@ +name: "ThatDataPurple" +source: + marketplace_id: "ThatDataPerson.thatdatapurple" + version: "2022.2.3" + installs: 75 + author: "That Data Person Limited" + repo: "https://github.com/thatdataperson/ThatDataPurple.VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=ThatDataPerson.thatdatapurple" +colors: + bg: "#4320CC" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 279 + contrast: + fg: 66.4 + black: 14.7 + red: 13.7 + green: 40 + yellow: 72.6 + blue: 14.4 + magenta: 16.7 + cyan: 34.5 + white: 77 + brightBlack: 9 + brightRed: 25.5 + brightGreen: 50.5 + brightYellow: 82.6 + brightBlue: 27 + brightMagenta: 32.3 + brightCyan: 42.4 + brightWhite: 77 diff --git a/themes/the-best-theme-ever.yaml b/themes/the-best-theme-ever.yaml new file mode 100644 index 00000000..63d9d599 --- /dev/null +++ b/themes/the-best-theme-ever.yaml @@ -0,0 +1,49 @@ +name: "The Best Theme Ever" +source: + marketplace_id: "EduDevHe.thebesttheme" + version: "0.0.0" + installs: 467 + author: "EduDevHe" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=EduDevHe.thebesttheme" +colors: + bg: "#474748" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 68.4 + black: 12.5 + red: 15.6 + green: 41.9 + yellow: 74.5 + blue: 16.3 + magenta: 18.6 + cyan: 36.4 + white: 78.9 + brightBlack: 10.9 + brightRed: 27.4 + brightGreen: 52.4 + brightYellow: 84.5 + brightBlue: 28.9 + brightMagenta: 34.3 + brightCyan: 44.3 + brightWhite: 78.9 diff --git a/themes/the-dark-stove.yaml b/themes/the-dark-stove.yaml new file mode 100644 index 00000000..2b0ec77d --- /dev/null +++ b/themes/the-dark-stove.yaml @@ -0,0 +1,49 @@ +name: "The Dark Stove" +source: + marketplace_id: "andrewbrey.the-dark-stove" + version: "0.0.1" + installs: 239 + author: "Andrew Brey" + repo: "https://github.com/andrewbrey/vscode-stove-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewbrey.the-dark-stove" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#444444" + red: "#F2ABA8" + green: "#A8F2B4" + yellow: "#F0F2A8" + blue: "#A8C1F2" + magenta: "#F2A8E3" + cyan: "#A8F2E4" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#F2534D" + brightGreen: "#51EE6A" + brightYellow: "#ECF04A" + brightBlue: "#5188F5" + brightMagenta: "#F06BD5" + brightCyan: "#4AF2D3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.9 + black: 9.8 + red: 67 + green: 88.5 + yellow: 96.3 + blue: 68.8 + magenta: 68.5 + cyan: 90.4 + white: 86 + brightBlack: 23 + brightRed: 40.9 + brightGreen: 79.4 + brightYellow: 93 + brightBlue: 40.6 + brightMagenta: 50.1 + brightCyan: 84.3 + brightWhite: 107.9 diff --git a/themes/the-digital-life.yaml b/themes/the-digital-life.yaml new file mode 100644 index 00000000..baf0d764 --- /dev/null +++ b/themes/the-digital-life.yaml @@ -0,0 +1,49 @@ +name: "The Digital Life" +source: + marketplace_id: "xcad2k.vscode-thedigitallife" + version: "1.1.0" + installs: 11897 + author: "Christian Lempa" + repo: "git+https://github.com/xcad2k/vscode-thedigitallife" + url: "https://marketplace.visualstudio.com/items?itemName=xcad2k.vscode-thedigitallife" +colors: + bg: "#1D1D1D" + fg: "#D1D1D1" + black: "#000000" + red: "#A52AFF" + green: "#7129FF" + yellow: "#3D2AFF" + blue: "#2B4FFF" + magenta: "#2883FF" + cyan: "#28B9FF" + white: "#CFCFCF" + brightBlack: "#2F2F2F" + brightRed: "#BA5AFF" + brightGreen: "#905AFF" + brightYellow: "#685AFF" + brightBlue: "#5C78FF" + brightMagenta: "#5EA2FF" + brightCyan: "#5AC8FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 77 + black: 0 + red: 28.3 + green: 21.4 + yellow: 17.5 + blue: 22.5 + magenta: 36.7 + cyan: 57.3 + white: 75.8 + brightBlack: 0 + brightRed: 38.1 + brightGreen: 32.2 + brightYellow: 28.1 + brightBlue: 35.2 + brightMagenta: 49.8 + brightCyan: 65.3 + brightWhite: 106.2 diff --git a/themes/the-druid.yaml b/themes/the-druid.yaml new file mode 100644 index 00000000..010ac45a --- /dev/null +++ b/themes/the-druid.yaml @@ -0,0 +1,49 @@ +name: "The druid" +source: + marketplace_id: "Yuritoledo.the-druid" + version: "1.0.6" + installs: 54 + author: "Yuri toledo" + repo: "https://github.com/yuritoledo/the-druid-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Yuritoledo.the-druid" +colors: + bg: "#081500" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#C26100" + cyan: "#349000" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#C26100" + brightCyan: "#349000" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 132 + contrast: + fg: 107.3 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 32.7 + cyan: 33.5 + white: 90.4 + brightBlack: 22.4 + brightRed: 39 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 32.7 + brightCyan: 33.5 + brightWhite: 90.4 diff --git a/themes/the-empire.yaml b/themes/the-empire.yaml new file mode 100644 index 00000000..d0a25f3a --- /dev/null +++ b/themes/the-empire.yaml @@ -0,0 +1,49 @@ +name: "The Empire" +source: + marketplace_id: "DanMad.a-galaxy-far-far-away-theme" + version: "3.3.1" + installs: 4613 + author: "DanMad" + repo: "https://github.com/danmad/a-galaxy-far-far-away-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DanMad.a-galaxy-far-far-away-theme" +colors: + bg: "#010203" + fg: "#BECBD8" + black: "#04070B" + red: "#F50A0A" + green: "#BEC4B7" + yellow: "#FBFCFD" + blue: "#777D72" + magenta: "#F50A0A" + cyan: "#BEC4B7" + white: "#FBFCFD" + brightBlack: "#777D72" + brightRed: "#F50A0A" + brightGreen: "#BEC4B7" + brightYellow: "#FBFCFD" + brightBlue: "#777D72" + brightMagenta: "#F50A0A" + brightCyan: "#BEC4B7" + brightWhite: "#FBFCFD" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 74.1 + black: 0 + red: 35.1 + green: 69.7 + yellow: 105.8 + blue: 32.4 + magenta: 35.1 + cyan: 69.7 + white: 105.8 + brightBlack: 32.4 + brightRed: 35.1 + brightGreen: 69.7 + brightYellow: 105.8 + brightBlue: 32.4 + brightMagenta: 35.1 + brightCyan: 69.7 + brightWhite: 105.8 diff --git a/themes/the-end-of-development.yaml b/themes/the-end-of-development.yaml new file mode 100644 index 00000000..f86dadf8 --- /dev/null +++ b/themes/the-end-of-development.yaml @@ -0,0 +1,49 @@ +name: "The End Of Development" +source: + marketplace_id: "tecnomazov.evas-code" + version: "1.0.0" + installs: 1059 + author: "TecnoMazov" + repo: "https://github.com/JuditKaramazov/TCA-EVASCode" + url: "https://marketplace.visualstudio.com/items?itemName=tecnomazov.evas-code" +colors: + bg: "#FAF4ED" + fg: "#802B5B" + black: "#F2E9E1" + red: "#B4637A" + green: "#A877B1" + yellow: "#932224" + blue: "#C9221E" + magenta: "#907AA9" + cyan: "#372021" + white: "#802B5B" + brightBlack: "#797593" + brightRed: "#B4637A" + brightGreen: "#A877B1" + brightYellow: "#932224" + brightBlue: "#C9221E" + brightMagenta: "#907AA9" + brightCyan: "#372021" + brightWhite: "#802B5B" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 83 + black: 0 + red: 62.5 + green: 56.7 + yellow: 81.6 + blue: 70.2 + magenta: 59.3 + cyan: 95.8 + white: 83 + brightBlack: 64.4 + brightRed: 62.5 + brightGreen: 56.7 + brightYellow: 81.6 + brightBlue: 70.2 + brightMagenta: 59.3 + brightCyan: 95.8 + brightWhite: 83 diff --git a/themes/the-fato-dark.yaml b/themes/the-fato-dark.yaml new file mode 100644 index 00000000..0f1fe1c3 --- /dev/null +++ b/themes/the-fato-dark.yaml @@ -0,0 +1,49 @@ +name: "the-fato-dark" +source: + marketplace_id: "RenanTheFato.the-fato-dark" + version: "0.0.5" + installs: 36 + author: "Renan The Fato" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RenanTheFato.the-fato-dark" +colors: + bg: "#0D0D0D" + fg: "#D4D4D4" + black: "#4B4B4B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.2 + black: 12.1 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/the-flying-dutchman-high-contrast.yaml b/themes/the-flying-dutchman-high-contrast.yaml new file mode 100644 index 00000000..1b4fdc0f --- /dev/null +++ b/themes/the-flying-dutchman-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "The Flying Dutchman High Contrast" +source: + marketplace_id: "DavyJones.the-flying-dutchman-theme" + version: "1.4.0" + installs: 110 + author: "Davy Jones" + repo: "https://github.com/ADWilkinson/the-flying-dutchman-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DavyJones.the-flying-dutchman-theme" +colors: + bg: "#0A1520" + fg: "#FFFFFF" + black: "#2C3E50" + red: "#FF6B6B" + green: "#7DCEA0" + yellow: "#F4D03F" + blue: "#85C1E9" + magenta: "#BB8FCE" + cyan: "#5DDDD9" + white: "#FFFFFF" + brightBlack: "#85929E" + brightRed: "#FF8A80" + brightGreen: "#A5D6A7" + brightYellow: "#FFF176" + brightBlue: "#90CAF9" + brightMagenta: "#CE93D8" + brightCyan: "#80DEEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 107.1 + black: 0 + red: 48.3 + green: 66.4 + yellow: 78.9 + blue: 64.4 + magenta: 49.6 + cyan: 74 + white: 107.1 + brightBlack: 42 + brightRed: 56.7 + brightGreen: 73.6 + brightYellow: 96.1 + brightBlue: 70.1 + brightMagenta: 54.3 + brightCyan: 77.2 + brightWhite: 107.1 diff --git a/themes/the-flying-dutchman-soft.yaml b/themes/the-flying-dutchman-soft.yaml new file mode 100644 index 00000000..999acca6 --- /dev/null +++ b/themes/the-flying-dutchman-soft.yaml @@ -0,0 +1,49 @@ +name: "The Flying Dutchman Soft" +source: + marketplace_id: "DavyJones.the-flying-dutchman-theme" + version: "1.4.0" + installs: 110 + author: "Davy Jones" + repo: "https://github.com/ADWilkinson/the-flying-dutchman-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DavyJones.the-flying-dutchman-theme" +colors: + bg: "#0B1117" + fg: "#C1D1E1" + black: "#2D4E6F" + red: "#D67878" + green: "#6AAF7F" + yellow: "#C8A96C" + blue: "#6BA3D0" + magenta: "#A085D1" + cyan: "#5DA6A3" + white: "#C1D1E1" + brightBlack: "#6B7580" + brightRed: "#E88B8B" + brightGreen: "#7DB992" + brightYellow: "#D4B574" + brightBlue: "#7BB0DB" + brightMagenta: "#B398DB" + brightCyan: "#70B7B4" + brightWhite: "#E1F1F1" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 77 + black: 12.2 + red: 43.9 + green: 50.6 + yellow: 57.4 + blue: 49.1 + magenta: 43.4 + cyan: 47.3 + white: 77 + brightBlack: 28.6 + brightRed: 53.2 + brightGreen: 56.8 + brightYellow: 64 + brightBlue: 56.1 + brightMagenta: 52.6 + brightCyan: 56.3 + brightWhite: 96.1 diff --git a/themes/the-flying-dutchman.yaml b/themes/the-flying-dutchman.yaml new file mode 100644 index 00000000..60f98f67 --- /dev/null +++ b/themes/the-flying-dutchman.yaml @@ -0,0 +1,49 @@ +name: "The Flying Dutchman" +source: + marketplace_id: "DavyJones.the-flying-dutchman-theme" + version: "1.4.0" + installs: 110 + author: "Davy Jones" + repo: "https://github.com/ADWilkinson/the-flying-dutchman-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DavyJones.the-flying-dutchman-theme" +colors: + bg: "#0B1119" + fg: "#B0C4DE" + black: "#0D1117" + red: "#E85D5D" + green: "#45B097" + yellow: "#E4B968" + blue: "#5DADE2" + magenta: "#5C7C8A" + cyan: "#4DC1B5" + white: "#A8C3D8" + brightBlack: "#4A5568" + brightRed: "#FC8181" + brightGreen: "#68D391" + brightYellow: "#F6E05E" + brightBlue: "#90CDF4" + brightMagenta: "#6B8A96" + brightCyan: "#81E6D9" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "orange" + hue: 256 + contrast: + fg: 69.3 + black: 0 + red: 40.4 + green: 50 + yellow: 67.8 + blue: 53.4 + magenta: 30.2 + cyan: 59 + white: 67.8 + brightBlack: 15.4 + brightRed: 53.9 + brightGreen: 67.3 + brightYellow: 86.8 + brightBlue: 71.4 + brightMagenta: 36.8 + brightCyan: 80.6 + brightWhite: 92 diff --git a/themes/the-gentleman.yaml b/themes/the-gentleman.yaml new file mode 100644 index 00000000..76374a75 --- /dev/null +++ b/themes/the-gentleman.yaml @@ -0,0 +1,49 @@ +name: "the_gentleman" +source: + marketplace_id: "subhankard.thegentleman" + version: "1.0.1" + installs: 500 + author: "subhankard" + repo: "https://github.com/subhankar-das/thegentleman" + url: "https://marketplace.visualstudio.com/items?itemName=subhankard.thegentleman" +colors: + bg: "#1B1A1D" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.5 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.4 + cyan: 47.2 + white: 89.6 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/the-occult.yaml b/themes/the-occult.yaml new file mode 100644 index 00000000..db28046f --- /dev/null +++ b/themes/the-occult.yaml @@ -0,0 +1,49 @@ +name: "The Occult <-->" +source: + marketplace_id: "yubiDev.yoobdev" + version: "0.0.7" + installs: 195 + author: "yoobdev" + repo: "https://github.com/kimkom369/VSCode-Theme-Pack" + url: "https://marketplace.visualstudio.com/items?itemName=yubiDev.yoobdev" +colors: + bg: "#5A189A" + fg: "#9D4EDD" + black: "#FF6D00" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#FF6D00" + magenta: "#BC3FBC" + cyan: "#FF6D00" + white: "#E5E5E5" + brightBlack: "#FF6D00" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#FF6D00" + brightMagenta: "#D670D6" + brightCyan: "#FF6D00" + brightWhite: "#FF6D00" +meta: + mode: "dark" + accent: "pink" + hue: 300 + contrast: + fg: 19.4 + black: 37.6 + red: 16.7 + green: 43 + yellow: 75.6 + blue: 37.6 + magenta: 19.8 + cyan: 37.6 + white: 80 + brightBlack: 37.6 + brightRed: 28.6 + brightGreen: 53.6 + brightYellow: 85.7 + brightBlue: 37.6 + brightMagenta: 35.4 + brightCyan: 37.6 + brightWhite: 37.6 diff --git a/themes/the-one-theme.yaml b/themes/the-one-theme.yaml new file mode 100644 index 00000000..c2103fbe --- /dev/null +++ b/themes/the-one-theme.yaml @@ -0,0 +1,49 @@ +name: "The One Theme" +source: + marketplace_id: "Ancairon.the-one-theme" + version: "0.0.6" + installs: 829 + author: "Ancairon" + repo: "https://github.com/Ancairon/the-one-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Ancairon.the-one-theme" +colors: + bg: "#1F1000" + fg: "#FAF5E5" + black: "#1F1000" + red: "#D73D3D" + green: "#8FB244" + yellow: "#D7BC3D" + blue: "#416AB6" + magenta: "#855EB0" + cyan: "#258080" + white: "#FAF5E5" + brightBlack: "#666666" + brightRed: "#D73D3D" + brightGreen: "#8FB244" + brightYellow: "#F9DFB1" + brightBlue: "#59CECF" + brightMagenta: "#855EB0" + brightCyan: "#258080" + brightWhite: "#FAF5E5" +meta: + mode: "dark" + accent: "orange" + hue: 71 + contrast: + fg: 100.5 + black: 0 + red: 30.7 + green: 53.4 + yellow: 66.2 + blue: 24.9 + magenta: 26.7 + cyan: 28.7 + white: 100.5 + brightBlack: 22.3 + brightRed: 30.7 + brightGreen: 53.4 + brightYellow: 88.4 + brightBlue: 66.3 + brightMagenta: 26.7 + brightCyan: 28.7 + brightWhite: 100.5 diff --git a/themes/the-only-tolerable-light-theme.yaml b/themes/the-only-tolerable-light-theme.yaml new file mode 100644 index 00000000..32ebe616 --- /dev/null +++ b/themes/the-only-tolerable-light-theme.yaml @@ -0,0 +1,49 @@ +name: "The Only Tolerable Light Theme" +source: + marketplace_id: "GabeRose.only-tolerable-light-theme" + version: "1.0.0" + installs: 294 + author: "GabeRose" + repo: "https://github.com/NotoriousGOR/only-tolerable-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GabeRose.only-tolerable-light-theme" +colors: + bg: "#F1EEF2" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 96.5 + black: 96.5 + red: 64.4 + green: 39.7 + yellow: 48.4 + blue: 76.5 + magenta: 65 + cyan: 51.1 + white: 8.3 + brightBlack: 69.2 + brightRed: 64.4 + brightGreen: 31.4 + brightYellow: 31.4 + brightBlue: 76.5 + brightMagenta: 65 + brightCyan: 51.1 + brightWhite: 38.9 diff --git a/themes/the-orchid-dark.yaml b/themes/the-orchid-dark.yaml new file mode 100644 index 00000000..1482e3dd --- /dev/null +++ b/themes/the-orchid-dark.yaml @@ -0,0 +1,49 @@ +name: "the-orchid-dark" +source: + marketplace_id: "403forbidden.the-orchid-theme" + version: "1.1.8" + installs: 183 + author: "403 Forbidden" + repo: "https://github.com/mario-garcia-dev/the-orchid-theme" + url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.the-orchid-theme" +colors: + bg: "#08040A" + fg: "#F1F1F1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 316 + contrast: + fg: 98.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/the-orchid-light.yaml b/themes/the-orchid-light.yaml new file mode 100644 index 00000000..7a194ef6 --- /dev/null +++ b/themes/the-orchid-light.yaml @@ -0,0 +1,49 @@ +name: "the-orchid-light" +source: + marketplace_id: "403forbidden.the-orchid-theme" + version: "1.1.8" + installs: 183 + author: "403 Forbidden" + repo: "https://github.com/mario-garcia-dev/the-orchid-theme" + url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.the-orchid-theme" +colors: + bg: "#F3F3F3" + fg: "#222222" + black: "#222222" + red: "#B62D2D" + green: "#0DA56B" + yellow: "#C4C40E" + blue: "#226AB8" + magenta: "#A538A5" + cyan: "#0F96B8" + white: "#C5C5C5" + brightBlack: "#666666" + brightRed: "#DA4646" + brightGreen: "#20B87B" + brightYellow: "#C4C437" + brightBlue: "#3582DA" + brightMagenta: "#C266C2" + brightCyan: "#249DBB" + brightWhite: "#E9E9E9" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 95.7 + black: 95.7 + red: 72.3 + green: 51.2 + yellow: 27.9 + blue: 69.8 + magenta: 70.3 + cyan: 54.4 + white: 24.1 + brightBlack: 71.6 + brightRed: 61.1 + brightGreen: 42.4 + brightYellow: 27.8 + brightBlue: 59.1 + brightMagenta: 55.2 + brightCyan: 51.3 + brightWhite: 0 diff --git a/themes/the-orchid-soft.yaml b/themes/the-orchid-soft.yaml new file mode 100644 index 00000000..1f4a7d83 --- /dev/null +++ b/themes/the-orchid-soft.yaml @@ -0,0 +1,49 @@ +name: "the-orchid-soft" +source: + marketplace_id: "403forbidden.the-orchid-theme" + version: "1.1.8" + installs: 183 + author: "403 Forbidden" + repo: "https://github.com/mario-garcia-dev/the-orchid-theme" + url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.the-orchid-theme" +colors: + bg: "#25162C" + fg: "#F1F1F1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 314 + contrast: + fg: 97.1 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.1 + cyan: 46.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 37.9 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/the-theme.yaml b/themes/the-theme.yaml new file mode 100644 index 00000000..8dd3821e --- /dev/null +++ b/themes/the-theme.yaml @@ -0,0 +1,49 @@ +name: "The Theme" +source: + marketplace_id: "mazhugasergei.the-theme" + version: "0.0.4" + installs: 9 + author: "mazhugasergei" + repo: "https://github.com/mazhugasergei/the-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mazhugasergei.the-theme" +colors: + bg: "#161616" + fg: "#9D9C9D" + black: "#2A2A2A" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#FFFFFF" + white: "#FFFFFF" + brightBlack: "#505050" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 48 + black: 0 + red: 33.1 + green: 61.8 + yellow: 76.5 + blue: 48.7 + magenta: 46.6 + cyan: 107 + white: 107 + brightBlack: 13.3 + brightRed: 33.1 + brightGreen: 61.8 + brightYellow: 76.5 + brightBlue: 48.7 + brightMagenta: 46.6 + brightCyan: 107 + brightWhite: 107 diff --git a/themes/theaisphere-dark.yaml b/themes/theaisphere-dark.yaml new file mode 100644 index 00000000..720c6a46 --- /dev/null +++ b/themes/theaisphere-dark.yaml @@ -0,0 +1,49 @@ +name: "theAIsphere-dark" +source: + marketplace_id: "theAIsphere.theaisphere" + version: "0.1.0" + installs: 53 + author: "theAIsphere" + repo: "https://github.com/admin-theaisphere/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=theAIsphere.theaisphere" +colors: + bg: "#1D1D26" + fg: "#FCFCFC" + black: "#080D0A" + red: "#991E29" + green: "#149068" + yellow: "#BFAB25" + blue: "#002FD7" + magenta: "#703880" + cyan: "#1FB4FF" + white: "#CCCCCC" + brightBlack: "#545763" + brightRed: "#CC2936" + brightGreen: "#38E4AE" + brightYellow: "#DECC54" + brightBlue: "#4065E7" + brightMagenta: "#954BAA" + brightCyan: "#5CC8FF" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "purple" + hue: 285 + contrast: + fg: 104.1 + black: 0 + red: 13.5 + green: 32.8 + yellow: 54.8 + blue: 12.1 + magenta: 12.4 + cyan: 55 + white: 73.9 + brightBlack: 15.2 + brightRed: 25 + brightGreen: 73.5 + brightYellow: 73.1 + brightBlue: 26.1 + brightMagenta: 23.3 + brightCyan: 65.3 + brightWhite: 86.1 diff --git a/themes/theaisphere-light.yaml b/themes/theaisphere-light.yaml new file mode 100644 index 00000000..2c8b68a7 --- /dev/null +++ b/themes/theaisphere-light.yaml @@ -0,0 +1,49 @@ +name: "theAIsphere-light" +source: + marketplace_id: "theAIsphere.theaisphere" + version: "0.1.0" + installs: 53 + author: "theAIsphere" + repo: "https://github.com/admin-theaisphere/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=theAIsphere.theaisphere" +colors: + bg: "#F2F2F2" + fg: "#280060" + black: "#080D0A" + red: "#991E29" + green: "#149068" + yellow: "#BFAB25" + blue: "#002FD7" + magenta: "#703880" + cyan: "#1FB4FF" + white: "#CCCCCC" + brightBlack: "#545763" + brightRed: "#CC2936" + brightGreen: "#38E4AE" + brightYellow: "#DECC54" + brightBlue: "#4065E7" + brightMagenta: "#954BAA" + brightCyan: "#5CC8FF" + brightWhite: "#E0E0E0" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 94.6 + black: 98 + red: 79 + green: 59.3 + yellow: 37.8 + blue: 80.6 + magenta: 80.2 + cyan: 37.5 + white: 19.5 + brightBlack: 77.2 + brightRed: 67.1 + brightGreen: 19.9 + brightYellow: 20.3 + brightBlue: 66.1 + brightMagenta: 68.9 + brightCyan: 27.7 + brightWhite: 8.1 diff --git a/themes/thebestthemealive.yaml b/themes/thebestthemealive.yaml new file mode 100644 index 00000000..72b26bb0 --- /dev/null +++ b/themes/thebestthemealive.yaml @@ -0,0 +1,49 @@ +name: "TheBestThemeAlive" +source: + marketplace_id: "hyziodyzio.thebestcolorextensionalive" + version: "0.0.4" + installs: 80 + author: "hyziodyzio" + repo: "https://github.com/TheBestProgrammerAlive/thebestcolorextensionalive" + url: "https://marketplace.visualstudio.com/items?itemName=hyziodyzio.thebestcolorextensionalive" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD0000" + green: "#00CD00" + yellow: "#CDCD00" + blue: "#0000EE" + magenta: "#CD00CD" + cyan: "#00CDCD" + white: "#E5E5E5" + brightBlack: "#7F7F7F" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#5C5CFF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 25.4 + green: 60.8 + yellow: 72.5 + blue: 14 + magenta: 31.7 + cyan: 64.9 + white: 91 + brightBlack: 34.3 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 29.4 + brightMagenta: 46.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/thedarkerone.yaml b/themes/thedarkerone.yaml new file mode 100644 index 00000000..a7e6972b --- /dev/null +++ b/themes/thedarkerone.yaml @@ -0,0 +1,49 @@ +name: "TheDarkerOne" +source: + marketplace_id: "ozguncagri.thedarkerone" + version: "0.0.4" + installs: 334 + author: "Özgün Çağrı AYDIN" + repo: "https://github.com/ozguncagri/TheDarkerOne" + url: "https://marketplace.visualstudio.com/items?itemName=ozguncagri.thedarkerone" +colors: + bg: "#0E0F11" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60 + black: 9.5 + red: 37.4 + green: 61 + yellow: 49.2 + blue: 50.3 + magenta: 39.7 + cyan: 53.1 + white: 91.3 + brightBlack: 16.1 + brightRed: 46.7 + brightGreen: 77.4 + brightYellow: 61.9 + brightBlue: 64.4 + brightMagenta: 50.9 + brightCyan: 68.4 + brightWhite: 107.5 diff --git a/themes/themarro-dark-contrast.yaml b/themes/themarro-dark-contrast.yaml new file mode 100644 index 00000000..bef681cd --- /dev/null +++ b/themes/themarro-dark-contrast.yaml @@ -0,0 +1,49 @@ +name: "Themarro Dark Contrast" +source: + marketplace_id: "aelmessaarab.themarro" + version: "0.1.2" + installs: 10029 + author: "aelmessaarab" + repo: "https://github.com/adamthecro/Themarro" + url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" +colors: + bg: "#020914" + fg: "#D4D4D4" + black: "#414141" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 251 + contrast: + fg: 80.4 + black: 8.7 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/themarro-david-remix.yaml b/themes/themarro-david-remix.yaml new file mode 100644 index 00000000..557334f8 --- /dev/null +++ b/themes/themarro-david-remix.yaml @@ -0,0 +1,49 @@ +name: "Themarro David Remix" +source: + marketplace_id: "aelmessaarab.themarro" + version: "0.1.2" + installs: 10029 + author: "aelmessaarab" + repo: "https://github.com/adamthecro/Themarro" + url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" +colors: + bg: "#030C1B" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 107.6 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/themarro.yaml b/themes/themarro.yaml new file mode 100644 index 00000000..2758f90f --- /dev/null +++ b/themes/themarro.yaml @@ -0,0 +1,49 @@ +name: "Themarro" +source: + marketplace_id: "aelmessaarab.themarro" + version: "0.1.2" + installs: 10029 + author: "aelmessaarab" + repo: "https://github.com/adamthecro/Themarro" + url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" +colors: + bg: "#080B14" + fg: "#D4D4D4" + black: "#414141" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + contrast: + fg: 80.3 + black: 8.6 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/theme-bear.yaml b/themes/theme-bear.yaml new file mode 100644 index 00000000..5d5af8f2 --- /dev/null +++ b/themes/theme-bear.yaml @@ -0,0 +1,49 @@ +name: "theme-bear" +source: + marketplace_id: "hassanoof93.RozaaaDodooo-1446" + version: "2.0.1" + installs: 110 + author: "hassanoof93" + repo: "https://github.com/hassanmostafaibrahim11/Fayrouz" + url: "https://marketplace.visualstudio.com/items?itemName=hassanoof93.RozaaaDodooo-1446" +colors: + bg: "#1F2023" + fg: "#BCB28D" + black: "#2C5A65" + red: "#E03C8A" + green: "#5DE7B9" + yellow: "#E6844F" + blue: "#58B2DC" + magenta: "#E03C8A" + cyan: "#69B0AC" + white: "#EEE8D5" + brightBlack: "#666666" + brightRed: "#D1500A" + brightGreen: "#5C8490" + brightYellow: "#FFC400" + brightBlue: "#58B2DC" + brightMagenta: "#646695" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 58.5 + black: 13.6 + red: 33.1 + green: 76.2 + yellow: 47.7 + blue: 53.2 + magenta: 33.1 + cyan: 50.9 + white: 90.8 + brightBlack: 20.9 + brightRed: 30.6 + brightGreen: 31.7 + brightYellow: 74.2 + brightBlue: 53.2 + brightMagenta: 22.6 + brightCyan: 47.8 + brightWhite: 100 diff --git a/themes/theme-dark.yaml b/themes/theme-dark.yaml new file mode 100644 index 00000000..ea578895 --- /dev/null +++ b/themes/theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Theme³ Dark" +source: + marketplace_id: "StevenJborik.colorado-theme" + version: "0.0.15" + installs: 84 + author: "StevenJBorik" + repo: "https://github.com/StevenJBorik/colorado-theme" + url: "https://marketplace.visualstudio.com/items?itemName=StevenJborik.colorado-theme" +colors: + bg: "#2E3440" + fg: "#D3D7DF" + black: "#3E4656" + red: "#609BBC" + green: "#05BE9F" + yellow: "#E6BA5C" + blue: "#05BE9F" + magenta: "#E57373" + cyan: "#99AAB5" + white: "#DEE1E7" + brightBlack: "#5F6B83" + brightRed: "#E57373" + brightGreen: "#05BE9F" + brightYellow: "#E6BA5C" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#99AAB5" + brightWhite: "#DEE1E7" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 76.1 + black: 0 + red: 38.6 + green: 50 + yellow: 62.7 + blue: 50 + magenta: 39.7 + cyan: 48.8 + white: 82.3 + brightBlack: 19 + brightRed: 39.7 + brightGreen: 50 + brightYellow: 62.7 + brightBlue: 36.4 + brightMagenta: 7.7 + brightCyan: 48.8 + brightWhite: 82.3 diff --git a/themes/theme-for-codes-dark.yaml b/themes/theme-for-codes-dark.yaml new file mode 100644 index 00000000..3d4290e5 --- /dev/null +++ b/themes/theme-for-codes-dark.yaml @@ -0,0 +1,49 @@ +name: "Theme For Codes - Dark" +source: + marketplace_id: "veduishu1257.code-with-colors-pro" + version: "2.3.0" + installs: 18 + author: "veduishu" + repo: "https://github.com/vishal-s-reddy/code-with-colors" + url: "https://marketplace.visualstudio.com/items?itemName=veduishu1257.code-with-colors-pro" +colors: + bg: "#050505" + fg: "#E6E6E6" + black: "#000000" + red: "#FF5555" + green: "#50FA7B" + yellow: "#FFB86C" + blue: "#4FC1FF" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#E6E6E6" + brightBlack: "#555555" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFCC95" + brightBlue: "#6DD5FF" + brightMagenta: "#FF92D0" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 91.6 + black: 0 + red: 44.4 + green: 85.9 + yellow: 72.4 + blue: 63.5 + magenta: 55.6 + cyan: 84.9 + white: 91.6 + brightBlack: 16.1 + brightRed: 49.8 + brightGreen: 90 + brightYellow: 81.2 + brightBlue: 73.8 + brightMagenta: 62.8 + brightCyan: 97.8 + brightWhite: 107.9 diff --git a/themes/theme-for-codes-light.yaml b/themes/theme-for-codes-light.yaml new file mode 100644 index 00000000..9bac13e4 --- /dev/null +++ b/themes/theme-for-codes-light.yaml @@ -0,0 +1,49 @@ +name: "Theme For Codes - Light" +source: + marketplace_id: "veduishu1257.code-with-colors-pro" + version: "2.3.0" + installs: 18 + author: "veduishu" + repo: "https://github.com/vishal-s-reddy/code-with-colors" + url: "https://marketplace.visualstudio.com/items?itemName=veduishu1257.code-with-colors-pro" +colors: + bg: "#FFFFFF" + fg: "#1A1A1A" + black: "#000000" + red: "#D32F2F" + green: "#388E3C" + yellow: "#F57C00" + blue: "#1976D2" + magenta: "#7B1FA2" + cyan: "#0097A7" + white: "#616161" + brightBlack: "#000000" + brightRed: "#D32F2F" + brightGreen: "#388E3C" + brightYellow: "#F57C00" + brightBlue: "#1976D2" + brightMagenta: "#7B1FA2" + brightCyan: "#0097A7" + brightWhite: "#616161" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 104.3 + black: 106 + red: 72.8 + green: 68 + yellow: 51.8 + blue: 71.4 + magenta: 87.1 + cyan: 62 + white: 80.9 + brightBlack: 106 + brightRed: 72.8 + brightGreen: 68 + brightYellow: 51.8 + brightBlue: 71.4 + brightMagenta: 87.1 + brightCyan: 62 + brightWhite: 80.9 diff --git a/themes/theme-joey.yaml b/themes/theme-joey.yaml new file mode 100644 index 00000000..72ef3940 --- /dev/null +++ b/themes/theme-joey.yaml @@ -0,0 +1,49 @@ +name: "theme-joey" +source: + marketplace_id: "xshapira.joey-theme" + version: "3.3.8" + installs: 1134 + author: "xshapira" + repo: "https://github.com/xshapira/joey" + url: "https://marketplace.visualstudio.com/items?itemName=xshapira.joey-theme" +colors: + bg: "#1F2023" + fg: "#BCB28D" + black: "#2C5A65" + red: "#E03C8A" + green: "#4EC9B0" + yellow: "#E6844F" + blue: "#6796E6" + magenta: "#A58EDC" + cyan: "#69B0AC" + white: "#EEE8D5" + brightBlack: "#666666" + brightRed: "#E6844F" + brightGreen: "#5C8490" + brightYellow: "#657B83" + brightBlue: "#58B2DC" + brightMagenta: "#646695" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 58.5 + black: 13.6 + red: 33.1 + green: 60.9 + yellow: 47.7 + blue: 43.6 + magenta: 45.9 + cyan: 50.9 + white: 90.8 + brightBlack: 20.9 + brightRed: 47.7 + brightGreen: 31.7 + brightYellow: 28.6 + brightBlue: 53.2 + brightMagenta: 22.6 + brightCyan: 47.8 + brightWhite: 100 diff --git a/themes/theme-mk-1-green.yaml b/themes/theme-mk-1-green.yaml new file mode 100644 index 00000000..24ac9b65 --- /dev/null +++ b/themes/theme-mk-1-green.yaml @@ -0,0 +1,49 @@ +name: "theme-mk 1 green" +source: + marketplace_id: "dev-mk02.theme-mk" + version: "0.6.0" + installs: 36 + author: "mk-02" + repo: "https://github.com/leeminki02/theme-mk" + url: "https://marketplace.visualstudio.com/items?itemName=dev-mk02.theme-mk" +colors: + bg: "#1A1B1E" + fg: "#CDCECE" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 75.3 + black: 0 + red: 43.6 + green: 69.6 + yellow: 66.1 + blue: 60.1 + magenta: 60.2 + cyan: 77.4 + white: 71.2 + brightBlack: 22.4 + brightRed: 46.1 + brightGreen: 72.9 + brightYellow: 69.1 + brightBlue: 62.9 + brightMagenta: 62.9 + brightCyan: 80.4 + brightWhite: 106.4 diff --git a/themes/theme-mk-rebuilt.yaml b/themes/theme-mk-rebuilt.yaml new file mode 100644 index 00000000..82d88d5b --- /dev/null +++ b/themes/theme-mk-rebuilt.yaml @@ -0,0 +1,49 @@ +name: "theme-mk rebuilt" +source: + marketplace_id: "dev-mk02.theme-mk" + version: "0.6.0" + installs: 36 + author: "mk-02" + repo: "https://github.com/leeminki02/theme-mk" + url: "https://marketplace.visualstudio.com/items?itemName=dev-mk02.theme-mk" +colors: + bg: "#1A1B1E" + fg: "#CDCECE" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F48946" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 75.3 + black: 0 + red: 43.6 + green: 69.6 + yellow: 66.1 + blue: 60.1 + magenta: 60.2 + cyan: 77.4 + white: 71.2 + brightBlack: 22.4 + brightRed: 52.5 + brightGreen: 72.9 + brightYellow: 69.1 + brightBlue: 62.9 + brightMagenta: 62.9 + brightCyan: 80.4 + brightWhite: 106.4 diff --git a/themes/theme-nickel.yaml b/themes/theme-nickel.yaml new file mode 100644 index 00000000..c350a8de --- /dev/null +++ b/themes/theme-nickel.yaml @@ -0,0 +1,49 @@ +name: "theme-nickel" +source: + marketplace_id: "nickel-dev.theme-nickel" + version: "0.1.2" + installs: 490 + author: "Daniel Nickel" + repo: "https://github.com/nickel-dev/theme-nickel" + url: "https://marketplace.visualstudio.com/items?itemName=nickel-dev.theme-nickel" +colors: + bg: "#151515" + fg: "#B9B4B8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#888888" + brightBlack: "#444444" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#B9B4B8" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 61.7 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 37.8 + brightBlack: 9 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 61.7 diff --git a/themes/theme-one.yaml b/themes/theme-one.yaml new file mode 100644 index 00000000..ac36be94 --- /dev/null +++ b/themes/theme-one.yaml @@ -0,0 +1,49 @@ +name: "Theme One" +source: + marketplace_id: "ThemeOne.themeone" + version: "1.0.3" + installs: 51 + author: "Theme One" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ThemeOne.themeone" +colors: + bg: "#191830" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 106.4 + black: 0 + red: 26.3 + green: 52.5 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/theme-stick-green-dark.yaml b/themes/theme-stick-green-dark.yaml new file mode 100644 index 00000000..89dc1df3 --- /dev/null +++ b/themes/theme-stick-green-dark.yaml @@ -0,0 +1,49 @@ +name: "Theme_stick_green_dark" +source: + marketplace_id: "sankalpkumar.theme-strict-dark" + version: "0.2.0" + installs: 2220 + author: "sankalp kumar" + repo: "https://github.com/sankalp475/Theme_stick_dark" + url: "https://marketplace.visualstudio.com/items?itemName=sankalpkumar.theme-strict-dark" +colors: + bg: "#292C3F" + fg: "#D4D4D4" + black: "#1F2330" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + contrast: + fg: 76 + black: 0 + red: 23.2 + green: 49.5 + yellow: 82.1 + blue: 23.9 + magenta: 26.3 + cyan: 44.1 + white: 86.5 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.5 diff --git a/themes/theme-y-random.yaml b/themes/theme-y-random.yaml new file mode 100644 index 00000000..28d60063 --- /dev/null +++ b/themes/theme-y-random.yaml @@ -0,0 +1,49 @@ +name: "Theme-Y-Random" +source: + marketplace_id: "Yisus-Code.theme-y-random" + version: "0.0.1" + installs: 243 + author: "Yisus-Code" + repo: "https://github.com/JesusAIV/Theme-Y-Random" + url: "https://marketplace.visualstudio.com/items?itemName=Yisus-Code.theme-y-random" +colors: + bg: "#031238" + fg: "#FFFFFF" + black: "#000000" + red: "#EC3A37" + green: "#3AD900" + yellow: "#FAD000" + blue: "#436FFF" + magenta: "#FF2C70" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#5C5C61" + brightRed: "#EC3A37" + brightGreen: "#3AD900" + brightYellow: "#FAD000" + brightBlue: "#438EFF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 263 + contrast: + fg: 106.9 + black: 0 + red: 34.7 + green: 66.3 + yellow: 79.4 + blue: 32 + magenta: 39.1 + cyan: 92.7 + white: 106.9 + brightBlack: 18 + brightRed: 34.7 + brightGreen: 66.3 + brightYellow: 79.4 + brightBlue: 41.9 + brightMagenta: 64.3 + brightCyan: 92.7 + brightWhite: 106.9 diff --git a/themes/theme.yaml b/themes/theme.yaml new file mode 100644 index 00000000..9a8ac621 --- /dev/null +++ b/themes/theme.yaml @@ -0,0 +1,49 @@ +name: "theme" +source: + marketplace_id: "lioa.themeol" + version: "0.0.1" + installs: 14 + author: "lioa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=lioa.themeol" +colors: + bg: "#191830" + fg: "#FFFFFF" + black: "#000000" + red: "#EC3A37" + green: "#3AD900" + yellow: "#FAD000" + blue: "#7857FE" + magenta: "#FF2C70" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#5C5C61" + brightRed: "#EC3A37" + brightGreen: "#3AD900" + brightYellow: "#FAD000" + brightBlue: "#6943FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 284 + contrast: + fg: 106.4 + black: 0 + red: 34.3 + green: 65.8 + yellow: 79 + blue: 29.1 + magenta: 38.7 + cyan: 92.3 + white: 106.4 + brightBlack: 17.6 + brightRed: 34.3 + brightGreen: 65.8 + brightYellow: 79 + brightBlue: 24 + brightMagenta: 63.9 + brightCyan: 92.3 + brightWhite: 106.4 diff --git a/themes/themedarker.yaml b/themes/themedarker.yaml new file mode 100644 index 00000000..6b7aaa13 --- /dev/null +++ b/themes/themedarker.yaml @@ -0,0 +1,49 @@ +name: "ThemeDarker" +source: + marketplace_id: "tal7aouy.theme" + version: "3.1.0" + installs: 1510124 + author: "Mhammed Talhaouy" + repo: "https://github.com/tal7aouy/theme" + url: "https://marketplace.visualstudio.com/items?itemName=tal7aouy.theme" +colors: + bg: "#23272E" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 57.2 + black: 0 + red: 34.5 + green: 58.1 + yellow: 46.4 + blue: 47.4 + magenta: 36.8 + cyan: 50.3 + white: 80.8 + brightBlack: 13.2 + brightRed: 43.9 + brightGreen: 74.6 + brightYellow: 59 + brightBlue: 61.5 + brightMagenta: 48 + brightCyan: 65.6 + brightWhite: 88.4 diff --git a/themes/themeframek.yaml b/themes/themeframek.yaml new file mode 100644 index 00000000..eeb39718 --- /dev/null +++ b/themes/themeframek.yaml @@ -0,0 +1,49 @@ +name: "ThemeFramek" +source: + marketplace_id: "YesCode.themeframek" + version: "0.0.3" + installs: 1 + author: "YesCode" + repo: "https://github.com/y3mm/ThemeFramework" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.themeframek" +colors: + bg: "#141516" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#60AEF7" + brightYellow: "#E7F0FF" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.8 + black: 0 + red: 42.2 + green: 61.2 + yellow: 73.3 + blue: 47.7 + magenta: 19.7 + cyan: 49.6 + white: 47.4 + brightBlack: 18.8 + brightRed: 42.2 + brightGreen: 54.9 + brightYellow: 96.8 + brightBlue: 18.9 + brightMagenta: 19.7 + brightCyan: 49.6 + brightWhite: 99.1 diff --git a/themes/themegreen.yaml b/themes/themegreen.yaml new file mode 100644 index 00000000..e7b653f8 --- /dev/null +++ b/themes/themegreen.yaml @@ -0,0 +1,49 @@ +name: "themegreen" +source: + marketplace_id: "tiantianli007.tian-green" + version: "0.0.1" + installs: 192 + author: "tiantian" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tiantianli007.tian-green" +colors: + bg: "#303030" + fg: "#E8E8E8" + black: "#000000" + red: "#FF7C7C" + green: "#6AF56A" + yellow: "#FAFF45" + blue: "#5EABFF" + magenta: "#FF80FF" + cyan: "#0BCCFB" + white: "#555555" + brightBlack: "#666666" + brightRed: "#FF9D9D" + brightGreen: "#AFFFAF" + brightYellow: "#FCFF9B" + brightBlue: "#89C2FF" + brightMagenta: "#FFB6FF" + brightCyan: "#83E7FF" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 87.8 + black: 0 + red: 48.5 + green: 78.9 + yellow: 97.1 + blue: 49.9 + magenta: 55.5 + cyan: 61.9 + white: 11 + brightBlack: 17.9 + brightRed: 59.1 + brightGreen: 90.4 + brightYellow: 98.7 + brightBlue: 62.1 + brightMagenta: 72.1 + brightCyan: 78.5 + brightWhite: 48.4 diff --git a/themes/themename.yaml b/themes/themename.yaml new file mode 100644 index 00000000..e85ffbad --- /dev/null +++ b/themes/themename.yaml @@ -0,0 +1,49 @@ +name: "themename" +source: + marketplace_id: "carljkempe.night-milk" + version: "0.1.0" + installs: 1156 + author: "carljkempe" + repo: "https://github.com/carljkempe/night-milk-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=carljkempe.night-milk" +colors: + bg: "#15202B" + fg: "#BDD2E7" + black: "#000000" + red: "#FF3838" + green: "#3FC56B" + yellow: "#F9C859" + blue: "#1DA1F2" + magenta: "#FF50FF" + cyan: "#00DCDC" + white: "#BDD2E7" + brightBlack: "#5F82A5" + brightRed: "#FF3838" + brightGreen: "#3FC56B" + brightYellow: "#F9C859" + brightBlue: "#1DA1F2" + brightMagenta: "#FF50FF" + brightCyan: "#00DCDC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 249 + contrast: + fg: 75.7 + black: 0 + red: 38.1 + green: 56.6 + yellow: 75.4 + blue: 46.1 + magenta: 49.1 + cyan: 70.8 + white: 75.7 + brightBlack: 32.2 + brightRed: 38.1 + brightGreen: 56.6 + brightYellow: 75.4 + brightBlue: 46.1 + brightMagenta: 49.1 + brightCyan: 70.8 + brightWhite: 105.9 diff --git a/themes/themenis.yaml b/themes/themenis.yaml new file mode 100644 index 00000000..3dd14584 --- /dev/null +++ b/themes/themenis.yaml @@ -0,0 +1,49 @@ +name: "Themenis" +source: + marketplace_id: "RIRICHAN.themenis" + version: "0.0.4" + installs: 75 + author: "RIRICHAN" + repo: "https://github.com/usiusa7991/Themenis" + url: "https://marketplace.visualstudio.com/items?itemName=RIRICHAN.themenis" +colors: + bg: "#1E1E1E" + fg: "#FDEDE3" + black: "#362922" + red: "#FF825C" + green: "#2A7157" + yellow: "#F2C821" + blue: "#4F4BC2" + magenta: "#974FE2" + cyan: "#3885E8" + white: "#FDEDE3" + brightBlack: "#66554C" + brightRed: "#F05D30" + brightGreen: "#4B9278" + brightYellow: "#FFCB00" + brightBlue: "#433DF5" + brightMagenta: "#BD7DFF" + brightCyan: "#2484FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 96.1 + black: 0 + red: 52.6 + green: 21 + yellow: 74 + blue: 17.3 + magenta: 28.3 + cyan: 35.8 + white: 96.1 + brightBlack: 15.6 + brightRed: 40.2 + brightGreen: 35.4 + brightYellow: 77.3 + brightBlue: 18.9 + brightMagenta: 46.6 + brightCyan: 36.8 + brightWhite: 106 diff --git a/themes/themeo.yaml b/themes/themeo.yaml new file mode 100644 index 00000000..09ae5452 --- /dev/null +++ b/themes/themeo.yaml @@ -0,0 +1,49 @@ +name: "ThemeO" +source: + marketplace_id: "th7mo.theme-o" + version: "1.1.10" + installs: 299 + author: "th7mo" + repo: "https://github.com/th7mo/intellij-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=th7mo.theme-o" +colors: + bg: "#1E1F22" + fg: "#D4D4D4" + black: "#000000" + red: "#F0524F" + green: "#7EC482" + yellow: "#DEBC7E" + blue: "#749DED" + magenta: "#A771BF" + cyan: "#749DED" + white: "#808080" + brightBlack: "#666666" + brightRed: "#FA5762" + brightGreen: "#7EC482" + brightYellow: "#DEBC7E" + brightBlue: "#749DED" + brightMagenta: "#A771BF" + brightCyan: "#749DED" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 78.5 + black: 0 + red: 38.4 + green: 59.8 + yellow: 67 + blue: 47.7 + magenta: 35.8 + cyan: 47.7 + white: 32.8 + brightBlack: 21.1 + brightRed: 41.8 + brightGreen: 59.8 + brightYellow: 67 + brightBlue: 47.7 + brightMagenta: 35.8 + brightCyan: 47.7 + brightWhite: 89 diff --git a/themes/themepurple.yaml b/themes/themepurple.yaml new file mode 100644 index 00000000..2fa09b35 --- /dev/null +++ b/themes/themepurple.yaml @@ -0,0 +1,49 @@ +name: "ThemePurple" +source: + marketplace_id: "KelsonCarvalho.roxotema" + version: "2.0.0" + installs: 1035 + author: "Kelson Carvalho" + repo: "https://github.com/NoslekCode/VsCode_Tema_Roxo_Dark" + url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.roxotema" +colors: + bg: "#2D0D29" + fg: "#D4D4D4" + black: "#000000" + red: "#D10B03" + green: "#66B055" + yellow: "#D9E100" + blue: "#4424D3" + magenta: "#B96BB9" + cyan: "#4525D1" + white: "#FFF5FF" + brightBlack: "#202020" + brightRed: "#FD0E04" + brightGreen: "#66B055" + brightYellow: "#FBFF00" + brightBlue: "#331BB2" + brightMagenta: "#974795" + brightCyan: "#341CBF" + brightWhite: "#E9D1E9" +meta: + mode: "dark" + accent: "orange" + hue: 333 + contrast: + fg: 79 + black: 0 + red: 24.9 + green: 48.9 + yellow: 81.6 + blue: 12.5 + magenta: 37.1 + cyan: 12.5 + white: 101.7 + brightBlack: 0 + brightRed: 35.6 + brightGreen: 48.9 + brightYellow: 100.6 + brightBlue: 7.4 + brightMagenta: 22 + brightCyan: 8.9 + brightWhite: 81.6 diff --git a/themes/themer-dark.yaml b/themes/themer-dark.yaml new file mode 100644 index 00000000..5371ff95 --- /dev/null +++ b/themes/themer-dark.yaml @@ -0,0 +1,49 @@ +name: "Themer Dark" +source: + marketplace_id: "sansbrina.poolside" + version: "0.0.1" + installs: 370 + author: "sansbrina" + repo: "https://github.com/sansbrina/poolside-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sansbrina.poolside" +colors: + bg: "#6261A1" + fg: "#FFC9C9" + black: "#6261A1" + red: "#820000" + green: "#00A7A7" + yellow: "#FFEBC4" + blue: "#B5E5E5" + magenta: "#8BC9F0" + cyan: "#3898FF" + white: "#E9BAC3" + brightBlack: "#7870A7" + brightRed: "#FFFFFF" + brightGreen: "#3898FF" + brightYellow: "#FFEBC4" + brightBlue: "#B5E5E5" + brightMagenta: "#8BC9F0" + brightCyan: "#3898FF" + brightWhite: "#FFC9C9" +meta: + mode: "light" + accent: "indigo" + hue: 283 + contrast: + fg: 57.1 + black: 0 + red: 12.6 + green: 21.6 + yellow: 71.5 + blue: 60.8 + magenta: 44.9 + cyan: 21.5 + white: 47.5 + brightBlack: 0 + brightRed: 83.2 + brightGreen: 21.5 + brightYellow: 71.5 + brightBlue: 60.8 + brightMagenta: 44.9 + brightCyan: 21.5 + brightWhite: 57.1 diff --git a/themes/themer-light.yaml b/themes/themer-light.yaml new file mode 100644 index 00000000..05c689f2 --- /dev/null +++ b/themes/themer-light.yaml @@ -0,0 +1,49 @@ +name: "Themer Light" +source: + marketplace_id: "JoshBurnsXYZ.joshburnsxyz-vscode" + version: "2.3.3" + installs: 428 + author: "Josh Burns" + repo: "https://github.com/joshburnsxyz/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JoshBurnsXYZ.joshburnsxyz-vscode" +colors: + bg: "#FDFDFD" + fg: "#14181B" + black: "#FDFDFD" + red: "#EF4E7C" + green: "#6EBB82" + yellow: "#F79532" + blue: "#1299AD" + magenta: "#AE7BB7" + cyan: "#09B399" + white: "#35393B" + brightBlack: "#DCDCDD" + brightRed: "#F37055" + brightGreen: "#09B399" + brightYellow: "#F79532" + brightBlue: "#1299AD" + brightMagenta: "#AE7BB7" + brightCyan: "#09B399" + brightWhite: "#14181B" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 103.4 + black: 0 + red: 60 + green: 44.2 + yellow: 42.9 + blue: 59.7 + magenta: 59.3 + cyan: 49.8 + white: 95.7 + brightBlack: 16.9 + brightRed: 53.4 + brightGreen: 49.8 + brightYellow: 42.9 + brightBlue: 59.7 + brightMagenta: 59.3 + brightCyan: 49.8 + brightWhite: 103.4 diff --git a/themes/themin-mint.yaml b/themes/themin-mint.yaml new file mode 100644 index 00000000..b627c71b --- /dev/null +++ b/themes/themin-mint.yaml @@ -0,0 +1,49 @@ +name: "Themin - Mint" +source: + marketplace_id: "Homerotto.themin" + version: "3.0.1" + installs: 2229 + author: "Homerotto" + repo: "https://github.com/FredMSJ/themin" + url: "https://marketplace.visualstudio.com/items?itemName=Homerotto.themin" +colors: + bg: "#0A0A0A" + fg: "#E0E0E0" + black: "#131317" + red: "#DF9F9F" + green: "#9FC1DF" + yellow: "#9898A6" + blue: "#0DC1AF" + magenta: "#FDFDFE" + cyan: "#DFC59F" + white: "#868690" + brightBlack: "#5C5C5C" + brightRed: "#DF9F9F" + brightGreen: "#9FC1DF" + brightYellow: "#9898A6" + brightBlue: "#0DC1AF" + brightMagenta: "#FDFDFE" + brightCyan: "#DFC59F" + brightWhite: "#868690" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 87.7 + black: 0 + red: 59.1 + green: 66.7 + yellow: 47.1 + blue: 57.9 + magenta: 106.5 + cyan: 73.5 + white: 37.9 + brightBlack: 18.7 + brightRed: 59.1 + brightGreen: 66.7 + brightYellow: 47.1 + brightBlue: 57.9 + brightMagenta: 106.5 + brightCyan: 73.5 + brightWhite: 37.9 diff --git a/themes/theo-swarg-dark.yaml b/themes/theo-swarg-dark.yaml new file mode 100644 index 00000000..122ea18e --- /dev/null +++ b/themes/theo-swarg-dark.yaml @@ -0,0 +1,49 @@ +name: "Theo-Swarg-Dark" +source: + marketplace_id: "Theoraclenyt.theo-swarg-dark" + version: "0.1.2" + installs: 49 + author: "Theoraclenyt" + repo: "https://github.com/Ishesensei/theo-swarg-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Theoraclenyt.theo-swarg-dark" +colors: + bg: "#3B3C4F" + fg: "#FFFFFF" + black: "#A1A1A1" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#8C8C8C" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 282 + contrast: + fg: 98.9 + black: 42.4 + red: 18.8 + green: 45 + yellow: 77.7 + blue: 19.5 + magenta: 21.8 + cyan: 39.6 + white: 82.1 + brightBlack: 31.6 + brightRed: 30.6 + brightGreen: 55.6 + brightYellow: 87.7 + brightBlue: 32 + brightMagenta: 37.4 + brightCyan: 47.4 + brightWhite: 82.1 diff --git a/themes/theta.yaml b/themes/theta.yaml new file mode 100644 index 00000000..72f8fe38 --- /dev/null +++ b/themes/theta.yaml @@ -0,0 +1,49 @@ +name: ".Theta" +source: + marketplace_id: "slepe.topl-theme" + version: "1.0.1" + installs: 824 + author: "Slepe" + repo: "https://github.com/slepe/topl-theme" + url: "https://marketplace.visualstudio.com/items?itemName=slepe.topl-theme" +colors: + bg: "#13131A" + fg: "#CFDEE6" + black: "#484E5B" + red: "#FF1654" + green: "#70C1B3" + yellow: "#F3FFBD" + blue: "#FF1654" + magenta: "#FF1654" + cyan: "#CFDEE6" + white: "#CFDEE6" + brightBlack: "#484E5B" + brightRed: "#FF1654" + brightGreen: "#70C1B3" + brightYellow: "#F3FFBD" + brightBlue: "#FF1654" + brightMagenta: "#FF1654" + brightCyan: "#CFDEE6" + brightWhite: "#CFDEE6" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 84.4 + black: 12.7 + red: 37.7 + green: 60.4 + yellow: 102.9 + blue: 37.7 + magenta: 37.7 + cyan: 84.4 + white: 84.4 + brightBlack: 12.7 + brightRed: 37.7 + brightGreen: 60.4 + brightYellow: 102.9 + brightBlue: 37.7 + brightMagenta: 37.7 + brightCyan: 84.4 + brightWhite: 84.4 diff --git a/themes/thinkstorm.yaml b/themes/thinkstorm.yaml new file mode 100644 index 00000000..ac91c087 --- /dev/null +++ b/themes/thinkstorm.yaml @@ -0,0 +1,49 @@ +name: "ThinkStorm" +source: + marketplace_id: "Patczatowicz.thinkstorm" + version: "0.0.1" + installs: 149 + author: "Patczatowicz" + repo: "https://github.com/AlfaaMangovskyy/thinkstorm" + url: "https://marketplace.visualstudio.com/items?itemName=Patczatowicz.thinkstorm" +colors: + bg: "#000000" + fg: "#8C8C8C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 40.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/thore-blue.yaml b/themes/thore-blue.yaml new file mode 100644 index 00000000..8afbc6bb --- /dev/null +++ b/themes/thore-blue.yaml @@ -0,0 +1,49 @@ +name: "Thore Blue" +source: + marketplace_id: "MarcWebDev.thore-blue" + version: "1.0.2" + installs: 961 + author: "MarcWebDev" + repo: "https://github.com/MarcWebDev/thore-blue" + url: "https://marketplace.visualstudio.com/items?itemName=MarcWebDev.thore-blue" +colors: + bg: "#0E0E0E" + fg: "#BEBEBE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EAEAEA" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 67.1 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 93.9 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/thorn.yaml b/themes/thorn.yaml new file mode 100644 index 00000000..a4a560a0 --- /dev/null +++ b/themes/thorn.yaml @@ -0,0 +1,49 @@ +name: "Thorn" +source: + marketplace_id: "jpwol.thorn" + version: "1.0.0" + installs: 107 + author: "jpwol" + repo: "https://github.com/jpwol/thorn-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jpwol.thorn" +colors: + bg: "#1D282F" + fg: "#DBD0C6" + black: "#1A2328" + red: "#D2696C" + green: "#79C2B6" + yellow: "#FFD7AA" + blue: "#86BFD0" + magenta: "#D9ADD4" + cyan: "#9FCFC3" + white: "#D9D3CE" + brightBlack: "#D9D3CE" + brightRed: "#D2696C" + brightGreen: "#79C2B6" + brightYellow: "#FFD7AA" + brightBlue: "#86BFD0" + brightMagenta: "#D9ADD4" + brightCyan: "#9FCFC3" + brightWhite: "#D9D3CE" +meta: + mode: "dark" + accent: "orange" + hue: 236 + contrast: + fg: 75.9 + black: 0 + red: 36.2 + green: 59.1 + yellow: 83.3 + blue: 59.9 + magenta: 62.3 + cyan: 68.5 + white: 77.3 + brightBlack: 77.3 + brightRed: 36.2 + brightGreen: 59.1 + brightYellow: 83.3 + brightBlue: 59.9 + brightMagenta: 62.3 + brightCyan: 68.5 + brightWhite: 77.3 diff --git a/themes/thoughtworks-style-theme.yaml b/themes/thoughtworks-style-theme.yaml new file mode 100644 index 00000000..9849f010 --- /dev/null +++ b/themes/thoughtworks-style-theme.yaml @@ -0,0 +1,49 @@ +name: "Thoughtworks Style Theme" +source: + marketplace_id: "guzhongren.thoughtworks-styled-theme" + version: "1.0.2" + installs: 40 + author: "guzhongren" + repo: "https://github.com/guzhongren/thoughtworks-styled-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guzhongren.thoughtworks-styled-theme" +colors: + bg: "#003D4F" + fg: "#EDF1F3" + black: "#000000" + red: "#F2617A" + green: "#6B9E78" + yellow: "#CC850A" + blue: "#47A1AD" + magenta: "#634F7D" + cyan: "#003D4F" + white: "#EDF1F3" + brightBlack: "#000000" + brightRed: "#F2617A" + brightGreen: "#6B9E78" + brightYellow: "#CC850A" + brightBlue: "#47A1AD" + brightMagenta: "#634F7D" + brightCyan: "#003D4F" + brightWhite: "#EDF1F3" +meta: + mode: "dark" + accent: "red" + hue: 225 + contrast: + fg: 90.7 + black: 0 + red: 36.9 + green: 36.3 + yellow: 37.4 + blue: 37.6 + magenta: 9.7 + cyan: 0 + white: 90.7 + brightBlack: 0 + brightRed: 36.9 + brightGreen: 36.3 + brightYellow: 37.4 + brightBlue: 37.6 + brightMagenta: 9.7 + brightCyan: 0 + brightWhite: 90.7 diff --git a/themes/thra.yaml b/themes/thra.yaml new file mode 100644 index 00000000..4f39a5bf --- /dev/null +++ b/themes/thra.yaml @@ -0,0 +1,49 @@ +name: "Thra" +source: + marketplace_id: "whatsadelane.thra" + version: "0.11.0" + installs: 718 + author: "whatsadelane" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=whatsadelane.thra" +colors: + bg: "#241F24" + fg: "#9D78CF" + black: "#000000" + red: "#D33B58" + green: "#59927C" + yellow: "#C0863A" + blue: "#9843FF" + magenta: "#BC3FBC" + cyan: "#3E8FA3" + white: "#D7A7D4" + brightBlack: "#666666" + brightRed: "#FF7777" + brightGreen: "#B0DECB" + brightYellow: "#D3B799" + brightBlue: "#B392EC" + brightMagenta: "#E280E2" + brightCyan: "#7FCBDE" + brightWhite: "#ECCEEA" +meta: + mode: "dark" + accent: "magenta" + hue: 326 + contrast: + fg: 37.2 + black: 0 + red: 28.6 + green: 35.9 + yellow: 41.4 + blue: 28.6 + magenta: 28.6 + cyan: 35 + white: 60.8 + brightBlack: 20.8 + brightRed: 50 + brightGreen: 78.3 + brightYellow: 63.9 + brightBlue: 49.9 + brightMagenta: 51.1 + brightCyan: 66.4 + brightWhite: 80.1 diff --git a/themes/threedark.yaml b/themes/threedark.yaml new file mode 100644 index 00000000..604a4009 --- /dev/null +++ b/themes/threedark.yaml @@ -0,0 +1,49 @@ +name: "threedark" +source: + marketplace_id: "theegamesVSMarketPlace.threedark" + version: "0.0.5" + installs: 323 + author: "3ee Games" + repo: "https://github.com/3ee-Games/three-dark" + url: "https://marketplace.visualstudio.com/items?itemName=theegamesVSMarketPlace.threedark" +colors: + bg: "#070F1C" + fg: "#EEFFFF" + black: "#011627" + red: "#FA2CCA" + green: "#1FE00A" + yellow: "#E0FF4A" + blue: "#389BED" + magenta: "#BB64F9" + cyan: "#2CFADB" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#FA2CCA" + brightGreen: "#1FE00A" + brightYellow: "#E0FF4A" + brightBlue: "#389BED" + brightMagenta: "#BB64F9" + brightCyan: "#2CFADB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 259 + contrast: + fg: 105.2 + black: 0 + red: 42.3 + green: 70 + yellow: 98.4 + blue: 45.6 + magenta: 41.1 + cyan: 87.7 + white: 107.5 + brightBlack: 16.2 + brightRed: 42.3 + brightGreen: 70 + brightYellow: 98.4 + brightBlue: 45.6 + brightMagenta: 41.1 + brightCyan: 87.7 + brightWhite: 107.5 diff --git a/themes/thunder-focus.yaml b/themes/thunder-focus.yaml new file mode 100644 index 00000000..a94014ea --- /dev/null +++ b/themes/thunder-focus.yaml @@ -0,0 +1,49 @@ +name: "Thunder Focus" +source: + marketplace_id: "REPTaiLE.thunder-focus" + version: "0.0.3" + installs: 394 + author: "Francisco González Ferrada" + repo: "https://github.com/REPTaiLE/Thunder-Focus" + url: "https://marketplace.visualstudio.com/items?itemName=REPTaiLE.thunder-focus" +colors: + bg: "#000814" + fg: "#FFC300" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 247 + contrast: + fg: 75.8 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.4 + white: 107.8 + brightBlack: 22.9 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/thunder-remains-unseen.yaml b/themes/thunder-remains-unseen.yaml new file mode 100644 index 00000000..7002b70d --- /dev/null +++ b/themes/thunder-remains-unseen.yaml @@ -0,0 +1,49 @@ +name: "Thunder Remains Unseen" +source: + marketplace_id: "anser-fabalis-serrirostris.thunder-remains-unseen" + version: "1.0.0" + installs: 15 + author: "Hishikui" + repo: "https://github.com/Hishikui/vsc-theme-thunder-remains-unseen" + url: "https://marketplace.visualstudio.com/items?itemName=anser-fabalis-serrirostris.thunder-remains-unseen" +colors: + bg: "#2D2D2D" + fg: "#F0F0F0" + black: "#1A1A1A" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E6B422" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F0F0F0" + brightBlack: "#4A4A4A" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFCC00" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 93.6 + black: 0 + red: 23.3 + green: 49.6 + yellow: 61.4 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 93.6 + brightBlack: 7.5 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 75.1 + brightBlue: 36.6 + brightMagenta: 41.9 + brightCyan: 52 + brightWhite: 93.6 diff --git a/themes/thxdude-theme.yaml b/themes/thxdude-theme.yaml new file mode 100644 index 00000000..1b794097 --- /dev/null +++ b/themes/thxdude-theme.yaml @@ -0,0 +1,49 @@ +name: "thxdude-theme" +source: + marketplace_id: "PABlond.thxdude-theme" + version: "0.0.1" + installs: 41 + author: "PABlond" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PABlond.thxdude-theme" +colors: + bg: "#171C26" + fg: "#B2B5BE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 60.8 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/thyme21g.yaml b/themes/thyme21g.yaml new file mode 100644 index 00000000..745acc25 --- /dev/null +++ b/themes/thyme21g.yaml @@ -0,0 +1,49 @@ +name: "Thyme21g" +source: + marketplace_id: "RohithRotdgrr.thyme21g-theme" + version: "0.0.1" + installs: 35 + author: "Rohith_Rot_dgrr" + repo: "https://github.com/Rohithdgrr/thyme21g-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RohithRotdgrr.thyme21g-theme" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#CBA6F7" + cyan: "#94E2D5" + white: "#CDD6F4" + brightBlack: "#6C7086" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#CBA6F7" + brightCyan: "#94E2D5" + brightWhite: "#CDD6F4" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 80 + black: 9.3 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 60.8 + cyan: 78.2 + white: 80 + brightBlack: 25.8 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 88.4 + brightBlue: 59.1 + brightMagenta: 60.8 + brightCyan: 78.2 + brightWhite: 80 diff --git a/themes/thynaptic-dark-base.yaml b/themes/thynaptic-dark-base.yaml new file mode 100644 index 00000000..1affb287 --- /dev/null +++ b/themes/thynaptic-dark-base.yaml @@ -0,0 +1,49 @@ +name: "Thynaptic Dark (Base)" +source: + marketplace_id: "Thynaptic.thynaptic-color-themes" + version: "0.4.0" + installs: 26 + author: "Thynaptic" + repo: "https://github.com/cassianwolfe/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" +colors: + bg: "#0A0A0A" + fg: "#FAFAFA" + black: "#0A0A0A" + red: "#FF2056" + green: "#FAFAFA" + yellow: "#FE9A00" + blue: "#FAFAFA" + magenta: "#FAFAFA" + cyan: "#A1A1A1" + white: "#FAFAFA" + brightBlack: "#262626" + brightRed: "#FF2056" + brightGreen: "#FAFAFA" + brightYellow: "#FE9A00" + brightBlue: "#FAFAFA" + brightMagenta: "#FAFAFA" + brightCyan: "#A1A1A1" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104.4 + black: 0 + red: 38.7 + green: 104.4 + yellow: 60.7 + blue: 104.4 + magenta: 104.4 + cyan: 51.2 + white: 104.4 + brightBlack: 0 + brightRed: 38.7 + brightGreen: 104.4 + brightYellow: 60.7 + brightBlue: 104.4 + brightMagenta: 104.4 + brightCyan: 51.2 + brightWhite: 104.4 diff --git a/themes/thynaptic-dim-base.yaml b/themes/thynaptic-dim-base.yaml new file mode 100644 index 00000000..bc4d7322 --- /dev/null +++ b/themes/thynaptic-dim-base.yaml @@ -0,0 +1,49 @@ +name: "Thynaptic Dim (Base)" +source: + marketplace_id: "Thynaptic.thynaptic-color-themes" + version: "0.4.0" + installs: 26 + author: "Thynaptic" + repo: "https://github.com/cassianwolfe/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" +colors: + bg: "#0F0F0F" + fg: "#EAEAEA" + black: "#0F0F0F" + red: "#FF2056" + green: "#EAEAEA" + yellow: "#FE9A00" + blue: "#EAEAEA" + magenta: "#EAEAEA" + cyan: "#8B8B8B" + white: "#EAEAEA" + brightBlack: "#373737" + brightRed: "#FF2056" + brightGreen: "#EAEAEA" + brightYellow: "#FE9A00" + brightBlue: "#EAEAEA" + brightMagenta: "#EAEAEA" + brightCyan: "#8B8B8B" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 93.8 + black: 0 + red: 38.5 + green: 93.8 + yellow: 60.5 + blue: 93.8 + magenta: 93.8 + cyan: 39.7 + white: 93.8 + brightBlack: 0 + brightRed: 38.5 + brightGreen: 93.8 + brightYellow: 60.5 + brightBlue: 93.8 + brightMagenta: 93.8 + brightCyan: 39.7 + brightWhite: 93.8 diff --git a/themes/thynaptic-pro.yaml b/themes/thynaptic-pro.yaml new file mode 100644 index 00000000..0dba7c82 --- /dev/null +++ b/themes/thynaptic-pro.yaml @@ -0,0 +1,49 @@ +name: "Thynaptic Pro" +source: + marketplace_id: "Thynaptic.thynaptic-color-themes" + version: "0.4.0" + installs: 26 + author: "Thynaptic" + repo: "https://github.com/cassianwolfe/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" +colors: + bg: "#09090B" + fg: "#FAFAFA" + black: "#09090B" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#FAFAFA" + brightBlack: "#52525B" + brightRed: "#F87171" + brightGreen: "#34D399" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 104.5 + black: 0 + red: 37.7 + green: 52.7 + yellow: 60.3 + blue: 37.7 + magenta: 35.3 + cyan: 54.8 + white: 104.5 + brightBlack: 15.1 + brightRed: 49 + brightGreen: 66.1 + brightYellow: 73.6 + brightBlue: 52.3 + brightMagenta: 50.6 + brightCyan: 69.5 + brightWhite: 104.5 diff --git a/themes/thynaptic-sand-base.yaml b/themes/thynaptic-sand-base.yaml new file mode 100644 index 00000000..99beeced --- /dev/null +++ b/themes/thynaptic-sand-base.yaml @@ -0,0 +1,49 @@ +name: "Thynaptic Sand (Base)" +source: + marketplace_id: "Thynaptic.thynaptic-color-themes" + version: "0.4.0" + installs: 26 + author: "Thynaptic" + repo: "https://github.com/cassianwolfe/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" +colors: + bg: "#F3EFE7" + fg: "#0A0A0A" + black: "#0A0A0A" + red: "#FF2056" + green: "#0A0A0A" + yellow: "#FE9A00" + blue: "#0A0A0A" + magenta: "#0A0A0A" + cyan: "#6B6B6B" + white: "#F3EFE7" + brightBlack: "#6B6B6B" + brightRed: "#FF2056" + brightGreen: "#0A0A0A" + brightYellow: "#FE9A00" + brightBlue: "#0A0A0A" + brightMagenta: "#0A0A0A" + brightCyan: "#6B6B6B" + brightWhite: "#FBF8F1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.5 + black: 96.5 + red: 53.5 + green: 96.5 + yellow: 32.1 + blue: 96.5 + magenta: 96.5 + cyan: 67.2 + white: 0 + brightBlack: 67.2 + brightRed: 53.5 + brightGreen: 96.5 + brightYellow: 32.1 + brightBlue: 96.5 + brightMagenta: 96.5 + brightCyan: 67.2 + brightWhite: 0 diff --git a/themes/thynaptic-sand-dark.yaml b/themes/thynaptic-sand-dark.yaml new file mode 100644 index 00000000..666018c9 --- /dev/null +++ b/themes/thynaptic-sand-dark.yaml @@ -0,0 +1,49 @@ +name: "Thynaptic Sand Dark" +source: + marketplace_id: "Thynaptic.thynaptic-color-themes" + version: "0.4.0" + installs: 26 + author: "Thynaptic" + repo: "https://github.com/cassianwolfe/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" +colors: + bg: "#1C1814" + fg: "#E8E3D8" + black: "#1C1814" + red: "#FF2056" + green: "#E8E3D8" + yellow: "#FE9A00" + blue: "#E8E3D8" + magenta: "#E8E3D8" + cyan: "#9B9488" + white: "#E8E3D8" + brightBlack: "#9B9488" + brightRed: "#FF2056" + brightGreen: "#E8E3D8" + brightYellow: "#FE9A00" + brightBlue: "#E8E3D8" + brightMagenta: "#E8E3D8" + brightCyan: "#9B9488" + brightWhite: "#F5F0E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88.8 + black: 0 + red: 37.6 + green: 88.8 + yellow: 59.6 + blue: 88.8 + magenta: 88.8 + cyan: 43.8 + white: 88.8 + brightBlack: 43.8 + brightRed: 37.6 + brightGreen: 88.8 + brightYellow: 59.6 + brightBlue: 88.8 + brightMagenta: 88.8 + brightCyan: 43.8 + brightWhite: 97.1 diff --git a/themes/tickle-contrast.yaml b/themes/tickle-contrast.yaml new file mode 100644 index 00000000..435f16cb --- /dev/null +++ b/themes/tickle-contrast.yaml @@ -0,0 +1,49 @@ +name: "tickle-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#181819" + fg: "#C1C1C1" + black: "#242426" + red: "#BA0E2E" + green: "#85FFC7" + yellow: "#40A5A5" + blue: "#FF8552" + magenta: "#85FFC7" + cyan: "#FF8552" + white: "#CECECE" + brightBlack: "#4A4A4D" + brightRed: "#F03E5F" + brightGreen: "#EBFFF6" + brightYellow: "#7ECDCD" + brightBlue: "#FFCDB8" + brightMagenta: "#EBFFF6" + brightCyan: "#FFCDB8" + brightWhite: "#F4F4F4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 68.1 + black: 0 + red: 20.4 + green: 92 + yellow: 45.1 + blue: 54 + magenta: 92 + cyan: 54 + white: 75.7 + brightBlack: 10.9 + brightRed: 36.7 + brightGreen: 103.6 + brightYellow: 67.4 + brightBlue: 81.6 + brightMagenta: 103.6 + brightCyan: 81.6 + brightWhite: 99.5 diff --git a/themes/tickle-light.yaml b/themes/tickle-light.yaml new file mode 100644 index 00000000..f751e931 --- /dev/null +++ b/themes/tickle-light.yaml @@ -0,0 +1,49 @@ +name: "tickle-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#65C699" + yellow: "#40A5A5" + blue: "#FF8552" + magenta: "#65C699" + cyan: "#FF8552" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#AFE2CA" + brightYellow: "#7ECDCD" + brightBlue: "#FFCDB8" + brightMagenta: "#AFE2CA" + brightCyan: "#FFCDB8" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 40.5 + yellow: 55.6 + blue: 46.9 + magenta: 40.5 + cyan: 46.9 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 21.1 + brightYellow: 34 + brightBlue: 20.6 + brightMagenta: 21.1 + brightCyan: 20.6 + brightWhite: 71.1 diff --git a/themes/tickle-refresh.yaml b/themes/tickle-refresh.yaml new file mode 100644 index 00000000..43a05ea5 --- /dev/null +++ b/themes/tickle-refresh.yaml @@ -0,0 +1,49 @@ +name: "tickle-refresh" +source: + marketplace_id: "jetpackguy.tangerine" + version: "0.1.2" + installs: 2608 + author: "jetpackguy" + repo: "https://github.com/jetpackguy/tangerine-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jetpackguy.tangerine" +colors: + bg: "#39393A" + fg: "#CBCBCB" + black: "#464647" + red: "#BA0E2E" + green: "#85FFC7" + yellow: "#40A5A5" + blue: "#FF8552" + magenta: "#85FFC7" + cyan: "#FF8552" + white: "#CECECE" + brightBlack: "#6C6C6D" + brightRed: "#F03E5F" + brightGreen: "#EBFFF6" + brightYellow: "#7ECDCD" + brightBlue: "#FFCDB8" + brightMagenta: "#EBFFF6" + brightCyan: "#FFCDB8" + brightWhite: "#F4F4F4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 67.5 + black: 0 + red: 13.9 + green: 85.5 + yellow: 38.6 + blue: 47.5 + magenta: 85.5 + cyan: 47.5 + white: 69.3 + brightBlack: 18 + brightRed: 30.2 + brightGreen: 97.1 + brightYellow: 60.9 + brightBlue: 75.1 + brightMagenta: 97.1 + brightCyan: 75.1 + brightWhite: 93 diff --git a/themes/tickle.yaml b/themes/tickle.yaml new file mode 100644 index 00000000..78e14fc9 --- /dev/null +++ b/themes/tickle.yaml @@ -0,0 +1,49 @@ +name: "tickle" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#39393A" + fg: "#C1C1C1" + black: "#464647" + red: "#BA0E2E" + green: "#85FFC7" + yellow: "#40A5A5" + blue: "#FF8552" + magenta: "#85FFC7" + cyan: "#FF8552" + white: "#CECECE" + brightBlack: "#6C6C6D" + brightRed: "#F03E5F" + brightGreen: "#EBFFF6" + brightYellow: "#7ECDCD" + brightBlue: "#FFCDB8" + brightMagenta: "#EBFFF6" + brightCyan: "#FFCDB8" + brightWhite: "#F4F4F4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 61.6 + black: 0 + red: 13.9 + green: 85.5 + yellow: 38.6 + blue: 47.5 + magenta: 85.5 + cyan: 47.5 + white: 69.3 + brightBlack: 18 + brightRed: 30.2 + brightGreen: 97.1 + brightYellow: 60.9 + brightBlue: 75.1 + brightMagenta: 97.1 + brightCyan: 75.1 + brightWhite: 93 diff --git a/themes/tidelight-contrast-light.yaml b/themes/tidelight-contrast-light.yaml new file mode 100644 index 00000000..8272fbc6 --- /dev/null +++ b/themes/tidelight-contrast-light.yaml @@ -0,0 +1,49 @@ +name: "Tidelight Contrast (Light)" +source: + marketplace_id: "slow-clap-software.tidelight-theme" + version: "0.0.5" + installs: 14 + author: "Slow Clap Software" + repo: "https://github.com/melnicorn/tidelight-themes" + url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" +colors: + bg: "#FFFFFF" + fg: "#020617" + black: "#020617" + red: "#9F1239" + green: "#166534" + yellow: "#A16207" + blue: "#1D4ED8" + magenta: "#A21CAF" + cyan: "#0E7490" + white: "#0F172A" + brightBlack: "#020617" + brightRed: "#9F1239" + brightGreen: "#166534" + brightYellow: "#A16207" + brightBlue: "#1D4ED8" + brightMagenta: "#A21CAF" + brightCyan: "#0E7490" + brightWhite: "#0F172A" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 105.9 + black: 105.9 + red: 85.9 + green: 84.4 + yellow: 73.7 + blue: 82.2 + magenta: 79.9 + cyan: 76.2 + white: 104.6 + brightBlack: 105.9 + brightRed: 85.9 + brightGreen: 84.4 + brightYellow: 73.7 + brightBlue: 82.2 + brightMagenta: 79.9 + brightCyan: 76.2 + brightWhite: 104.6 diff --git a/themes/tidelight-contrast.yaml b/themes/tidelight-contrast.yaml new file mode 100644 index 00000000..4562cd42 --- /dev/null +++ b/themes/tidelight-contrast.yaml @@ -0,0 +1,49 @@ +name: "Tidelight Contrast" +source: + marketplace_id: "slow-clap-software.tidelight-theme" + version: "0.0.5" + installs: 14 + author: "Slow Clap Software" + repo: "https://github.com/melnicorn/tidelight-themes" + url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" +colors: + bg: "#05070C" + fg: "#F8FAFC" + black: "#0B1220" + red: "#FB7185" + green: "#A3E635" + yellow: "#FBBF24" + blue: "#60A5FA" + magenta: "#F472B6" + cyan: "#22D3EE" + white: "#FFFFFF" + brightBlack: "#0B1220" + brightRed: "#FB7185" + brightGreen: "#A3E635" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#F472B6" + brightCyan: "#22D3EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 104.3 + black: 0 + red: 50.2 + green: 79.6 + yellow: 73.6 + blue: 52.3 + magenta: 50.8 + cyan: 69.5 + white: 107.8 + brightBlack: 0 + brightRed: 50.2 + brightGreen: 79.6 + brightYellow: 73.6 + brightBlue: 52.3 + brightMagenta: 50.8 + brightCyan: 69.5 + brightWhite: 107.8 diff --git a/themes/tidelight-dawn.yaml b/themes/tidelight-dawn.yaml new file mode 100644 index 00000000..03f87046 --- /dev/null +++ b/themes/tidelight-dawn.yaml @@ -0,0 +1,49 @@ +name: "Tidelight Dawn" +source: + marketplace_id: "slow-clap-software.tidelight-theme" + version: "0.0.5" + installs: 14 + author: "Slow Clap Software" + repo: "https://github.com/melnicorn/tidelight-themes" + url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" +colors: + bg: "#F8FAFC" + fg: "#0F172A" + black: "#0F172A" + red: "#BE123C" + green: "#16A34A" + yellow: "#B45309" + blue: "#2563EB" + magenta: "#BE185D" + cyan: "#0891B2" + white: "#334155" + brightBlack: "#0F172A" + brightRed: "#BE123C" + brightGreen: "#16A34A" + brightYellow: "#B45309" + brightBlue: "#2563EB" + brightMagenta: "#BE185D" + brightCyan: "#0891B2" + brightWhite: "#334155" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 101.4 + black: 101.4 + red: 76 + green: 56.6 + yellow: 70.9 + blue: 71.7 + magenta: 75.1 + cyan: 60.7 + white: 90.9 + brightBlack: 101.4 + brightRed: 76 + brightGreen: 56.6 + brightYellow: 70.9 + brightBlue: 71.7 + brightMagenta: 75.1 + brightCyan: 60.7 + brightWhite: 90.9 diff --git a/themes/tidelight-daybreak.yaml b/themes/tidelight-daybreak.yaml new file mode 100644 index 00000000..9350ffb8 --- /dev/null +++ b/themes/tidelight-daybreak.yaml @@ -0,0 +1,49 @@ +name: "Tidelight Daybreak" +source: + marketplace_id: "slow-clap-software.tidelight-theme" + version: "0.0.5" + installs: 14 + author: "Slow Clap Software" + repo: "https://github.com/melnicorn/tidelight-themes" + url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" +colors: + bg: "#FFFFFF" + fg: "#0B1220" + black: "#0B1220" + red: "#9F1239" + green: "#15803D" + yellow: "#A16207" + blue: "#1D4ED8" + magenta: "#A21CAF" + cyan: "#0284C7" + white: "#334155" + brightBlack: "#0B1220" + brightRed: "#9F1239" + brightGreen: "#15803D" + brightYellow: "#A16207" + brightBlue: "#1D4ED8" + brightMagenta: "#A21CAF" + brightCyan: "#0284C7" + brightWhite: "#334155" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 105.2 + black: 105.2 + red: 85.9 + green: 74.2 + yellow: 73.7 + blue: 82.2 + magenta: 79.9 + cyan: 67.5 + white: 94 + brightBlack: 105.2 + brightRed: 85.9 + brightGreen: 74.2 + brightYellow: 73.7 + brightBlue: 82.2 + brightMagenta: 79.9 + brightCyan: 67.5 + brightWhite: 94 diff --git a/themes/tidelight-deep.yaml b/themes/tidelight-deep.yaml new file mode 100644 index 00000000..8b9a6471 --- /dev/null +++ b/themes/tidelight-deep.yaml @@ -0,0 +1,49 @@ +name: "Tidelight Deep" +source: + marketplace_id: "slow-clap-software.tidelight-theme" + version: "0.0.5" + installs: 14 + author: "Slow Clap Software" + repo: "https://github.com/melnicorn/tidelight-themes" + url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" +colors: + bg: "#0B1220" + fg: "#CBD5E1" + black: "#0F172A" + red: "#FB7185" + green: "#34D399" + yellow: "#F59E0B" + blue: "#38BDF8" + magenta: "#F472B6" + cyan: "#22D3EE" + white: "#E2E8F0" + brightBlack: "#0F172A" + brightRed: "#FB7185" + brightGreen: "#34D399" + brightYellow: "#F59E0B" + brightBlue: "#38BDF8" + brightMagenta: "#F472B6" + brightCyan: "#22D3EE" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "red" + hue: 263 + contrast: + fg: 79.8 + black: 0 + red: 49.7 + green: 65.6 + yellow: 59.8 + blue: 60 + magenta: 50.3 + cyan: 69 + white: 91.9 + brightBlack: 0 + brightRed: 49.7 + brightGreen: 65.6 + brightYellow: 59.8 + brightBlue: 60 + brightMagenta: 50.3 + brightCyan: 69 + brightWhite: 91.9 diff --git a/themes/tidelight-dusk.yaml b/themes/tidelight-dusk.yaml new file mode 100644 index 00000000..413108e8 --- /dev/null +++ b/themes/tidelight-dusk.yaml @@ -0,0 +1,49 @@ +name: "Tidelight Dusk" +source: + marketplace_id: "slow-clap-software.tidelight-theme" + version: "0.0.5" + installs: 14 + author: "Slow Clap Software" + repo: "https://github.com/melnicorn/tidelight-themes" + url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" +colors: + bg: "#0F172A" + fg: "#CBD5E1" + black: "#0F172A" + red: "#FB7185" + green: "#A3E635" + yellow: "#F59E0B" + blue: "#38BDF8" + magenta: "#F472B6" + cyan: "#22D3EE" + white: "#E2E8F0" + brightBlack: "#0F172A" + brightRed: "#FB7185" + brightGreen: "#A3E635" + brightYellow: "#F59E0B" + brightBlue: "#38BDF8" + brightMagenta: "#F472B6" + brightCyan: "#22D3EE" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "green" + hue: 266 + contrast: + fg: 79.3 + black: 0 + red: 49.2 + green: 78.6 + yellow: 59.3 + blue: 59.5 + magenta: 49.8 + cyan: 68.5 + white: 91.4 + brightBlack: 0 + brightRed: 49.2 + brightGreen: 78.6 + brightYellow: 59.3 + brightBlue: 59.5 + brightMagenta: 49.8 + brightCyan: 68.5 + brightWhite: 91.4 diff --git a/themes/tidelight-fog.yaml b/themes/tidelight-fog.yaml new file mode 100644 index 00000000..19415a37 --- /dev/null +++ b/themes/tidelight-fog.yaml @@ -0,0 +1,49 @@ +name: "Tidelight Fog" +source: + marketplace_id: "slow-clap-software.tidelight-theme" + version: "0.0.5" + installs: 14 + author: "Slow Clap Software" + repo: "https://github.com/melnicorn/tidelight-themes" + url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" +colors: + bg: "#1F2937" + fg: "#E5E7EB" + black: "#111827" + red: "#FB7185" + green: "#86EFAC" + yellow: "#FDBA74" + blue: "#60A5FA" + magenta: "#F0ABFC" + cyan: "#67E8F9" + white: "#F8FAFC" + brightBlack: "#111827" + brightRed: "#FB7185" + brightGreen: "#86EFAC" + brightYellow: "#FDBA74" + brightBlue: "#60A5FA" + brightMagenta: "#F0ABFC" + brightCyan: "#67E8F9" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "red" + hue: 257 + contrast: + fg: 88.7 + black: 0 + red: 46.7 + green: 80.6 + yellow: 69.5 + blue: 48.8 + magenta: 67.1 + cyan: 78.6 + white: 100.8 + brightBlack: 0 + brightRed: 46.7 + brightGreen: 80.6 + brightYellow: 69.5 + brightBlue: 48.8 + brightMagenta: 67.1 + brightCyan: 78.6 + brightWhite: 100.8 diff --git a/themes/tidelight-high-noon.yaml b/themes/tidelight-high-noon.yaml new file mode 100644 index 00000000..bd478cfe --- /dev/null +++ b/themes/tidelight-high-noon.yaml @@ -0,0 +1,49 @@ +name: "Tidelight High Noon" +source: + marketplace_id: "slow-clap-software.tidelight-theme" + version: "0.0.5" + installs: 14 + author: "Slow Clap Software" + repo: "https://github.com/melnicorn/tidelight-themes" + url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" +colors: + bg: "#FFF7ED" + fg: "#020617" + black: "#020617" + red: "#9F1239" + green: "#166534" + yellow: "#B45309" + blue: "#1D4ED8" + magenta: "#A21CAF" + cyan: "#0E7490" + white: "#1E293B" + brightBlack: "#020617" + brightRed: "#9F1239" + brightGreen: "#166534" + brightYellow: "#B45309" + brightBlue: "#1D4ED8" + brightMagenta: "#A21CAF" + brightCyan: "#0E7490" + brightWhite: "#1E293B" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 101.7 + black: 101.7 + red: 81.8 + green: 80.2 + yellow: 69.9 + blue: 78 + magenta: 75.7 + cyan: 72.1 + white: 97.2 + brightBlack: 101.7 + brightRed: 81.8 + brightGreen: 80.2 + brightYellow: 69.9 + brightBlue: 78 + brightMagenta: 75.7 + brightCyan: 72.1 + brightWhite: 97.2 diff --git a/themes/tidelight-midnight.yaml b/themes/tidelight-midnight.yaml new file mode 100644 index 00000000..4c126736 --- /dev/null +++ b/themes/tidelight-midnight.yaml @@ -0,0 +1,49 @@ +name: "Tidelight Midnight" +source: + marketplace_id: "slow-clap-software.tidelight-theme" + version: "0.0.5" + installs: 14 + author: "Slow Clap Software" + repo: "https://github.com/melnicorn/tidelight-themes" + url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" +colors: + bg: "#070B14" + fg: "#E2E8F0" + black: "#0B1220" + red: "#FB7185" + green: "#A3E635" + yellow: "#F59E0B" + blue: "#38BDF8" + magenta: "#F472B6" + cyan: "#22D3EE" + white: "#F8FAFC" + brightBlack: "#0B1220" + brightRed: "#FB7185" + brightGreen: "#A3E635" + brightYellow: "#F59E0B" + brightBlue: "#38BDF8" + brightMagenta: "#F472B6" + brightCyan: "#22D3EE" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 92.3 + black: 0 + red: 50.1 + green: 79.5 + yellow: 60.3 + blue: 60.4 + magenta: 50.7 + cyan: 69.4 + white: 104.2 + brightBlack: 0 + brightRed: 50.1 + brightGreen: 79.5 + brightYellow: 60.3 + brightBlue: 60.4 + brightMagenta: 50.7 + brightCyan: 69.4 + brightWhite: 104.2 diff --git a/themes/tidelight-shore.yaml b/themes/tidelight-shore.yaml new file mode 100644 index 00000000..be9c15ba --- /dev/null +++ b/themes/tidelight-shore.yaml @@ -0,0 +1,49 @@ +name: "Tidelight Shore" +source: + marketplace_id: "slow-clap-software.tidelight-theme" + version: "0.0.5" + installs: 14 + author: "Slow Clap Software" + repo: "https://github.com/melnicorn/tidelight-themes" + url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" +colors: + bg: "#F1F5F9" + fg: "#0F172A" + black: "#0F172A" + red: "#BE123C" + green: "#16A34A" + yellow: "#B45309" + blue: "#2563EB" + magenta: "#BE185D" + cyan: "#0891B2" + white: "#334155" + brightBlack: "#0F172A" + brightRed: "#BE123C" + brightGreen: "#16A34A" + brightYellow: "#B45309" + brightBlue: "#2563EB" + brightMagenta: "#BE185D" + brightCyan: "#0891B2" + brightWhite: "#334155" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 98.3 + black: 98.3 + red: 72.9 + green: 53.4 + yellow: 67.7 + blue: 68.6 + magenta: 72 + cyan: 57.5 + white: 87.7 + brightBlack: 98.3 + brightRed: 72.9 + brightGreen: 53.4 + brightYellow: 67.7 + brightBlue: 68.6 + brightMagenta: 72 + brightCyan: 57.5 + brightWhite: 87.7 diff --git a/themes/tiktok.yaml b/themes/tiktok.yaml new file mode 100644 index 00000000..f54c5a7d --- /dev/null +++ b/themes/tiktok.yaml @@ -0,0 +1,49 @@ +name: "tiktok" +source: + marketplace_id: "Volskaya.irrelevant" + version: "0.0.2" + installs: 33 + author: "Volskaya" + repo: "https://github.com/volskaya/irrelevant" + url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#1C1C1C" + red: "#FE2C55" + green: "#25F4EE" + yellow: "#FE2C55" + blue: "#878787" + magenta: "#979797" + cyan: "#A6A6A6" + white: "#444444" + brightBlack: "#666666" + brightRed: "#FE2C55" + brightGreen: "#25F4EE" + brightYellow: "#DDDDDD" + brightBlue: "#878787" + brightMagenta: "#979797" + brightCyan: "#A6A6A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 37.7 + green: 84.2 + yellow: 37.7 + blue: 36.6 + magenta: 44.6 + cyan: 52.5 + white: 8.3 + brightBlack: 21.5 + brightRed: 37.7 + brightGreen: 84.2 + brightYellow: 84.4 + brightBlue: 36.6 + brightMagenta: 44.6 + brightCyan: 52.5 + brightWhite: 106.3 diff --git a/themes/tim-s-experiments-dark.yaml b/themes/tim-s-experiments-dark.yaml new file mode 100644 index 00000000..69386914 --- /dev/null +++ b/themes/tim-s-experiments-dark.yaml @@ -0,0 +1,49 @@ +name: "Tim's Experiments Dark" +source: + marketplace_id: "TimsExperiments.timsexperiments-theme" + version: "0.0.1" + installs: 43 + author: "Tim's Experiments" + repo: "https://github.com/timsexperiments/timsexperiments-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TimsExperiments.timsexperiments-theme" +colors: + bg: "#F4F5F5" + fg: "#434746" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 85.7 + black: 99.9 + red: 67.9 + green: 41.9 + yellow: 10.9 + blue: 67.2 + magenta: 64.8 + cyan: 47.2 + white: 0 + brightBlack: 72.7 + brightRed: 56 + brightGreen: 31.8 + brightYellow: 0 + brightBlue: 54.6 + brightMagenta: 49.3 + brightCyan: 39.6 + brightWhite: 0 diff --git a/themes/timir.yaml b/themes/timir.yaml new file mode 100644 index 00000000..e3178a4e --- /dev/null +++ b/themes/timir.yaml @@ -0,0 +1,49 @@ +name: "Timir" +source: + marketplace_id: "ShubhamThorat.Timir" + version: "2.6.1" + installs: 192 + author: "Shubham Thorat" + repo: "https://github.com/Biotechnologyguy/Timir-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=ShubhamThorat.Timir" +colors: + bg: "#1D2433" + fg: "#A2AABC" + black: "#2F3B54" + red: "#EF6B73" + green: "#BAE67E" + yellow: "#FFCC66" + blue: "#5EC5DA" + magenta: "#C3A6FF" + cyan: "#5EC5DA" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#BAE67E" + brightYellow: "#FFCC66" + brightBlue: "#5EC5DA" + brightMagenta: "#C3A6FF" + brightCyan: "#5EC5DA" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "orange" + hue: 265 + contrast: + fg: 53.3 + black: 0 + red: 43.1 + green: 80.2 + yellow: 77.5 + blue: 61 + magenta: 59.6 + cyan: 61 + white: 53.3 + brightBlack: 9.4 + brightRed: 43.1 + brightGreen: 80.2 + brightYellow: 77.5 + brightBlue: 61 + brightMagenta: 59.6 + brightCyan: 61 + brightWhite: 53.3 diff --git a/themes/timu-macos-dark-theme.yaml b/themes/timu-macos-dark-theme.yaml new file mode 100644 index 00000000..03fa79b8 --- /dev/null +++ b/themes/timu-macos-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Timu macOS dark Theme" +source: + marketplace_id: "aimebertrand.timu-macos-vscode" + version: "1.0.4" + installs: 2481 + author: "Aimé Bertrand" + repo: "https://gitlab.com/aimebertrand/timu-macos-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=aimebertrand.timu-macos-vscode" +colors: + bg: "#222327" + fg: "#FFFFFF" + black: "#222327" + red: "#EC5F5E" + green: "#78B856" + yellow: "#F6C844" + blue: "#88C0D0" + magenta: "#E45C9C" + cyan: "#46D9FF" + white: "#FFFFFF" + brightBlack: "#222327" + brightRed: "#EC5F5E" + brightGreen: "#78B856" + brightYellow: "#F6C844" + brightBlue: "#88C0D0" + brightMagenta: "#E45C9C" + brightCyan: "#46D9FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 105.3 + black: 0 + red: 39.6 + green: 52.5 + yellow: 74.1 + blue: 61.1 + magenta: 39.2 + cyan: 71.5 + white: 105.3 + brightBlack: 0 + brightRed: 39.6 + brightGreen: 52.5 + brightYellow: 74.1 + brightBlue: 61.1 + brightMagenta: 39.2 + brightCyan: 71.5 + brightWhite: 105.3 diff --git a/themes/timu-macos-light-theme.yaml b/themes/timu-macos-light-theme.yaml new file mode 100644 index 00000000..cfd80ab8 --- /dev/null +++ b/themes/timu-macos-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Timu macOS light Theme" +source: + marketplace_id: "aimebertrand.timu-macos-vscode" + version: "1.0.4" + installs: 2481 + author: "Aimé Bertrand" + repo: "https://gitlab.com/aimebertrand/timu-macos-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=aimebertrand.timu-macos-vscode" +colors: + bg: "#FFFFFF" + fg: "#222327" + black: "#222327" + red: "#EC5F5E" + green: "#78B856" + yellow: "#F6C844" + blue: "#88C0D0" + magenta: "#E45C9C" + cyan: "#46D9FF" + white: "#FFFFFF" + brightBlack: "#222327" + brightRed: "#EC5F5E" + brightGreen: "#78B856" + brightYellow: "#F6C844" + brightBlue: "#88C0D0" + brightMagenta: "#E45C9C" + brightCyan: "#46D9FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 102.7 + black: 102.7 + red: 59.6 + green: 46.9 + yellow: 26.3 + blue: 38.7 + magenta: 60 + cyan: 28.8 + white: 0 + brightBlack: 102.7 + brightRed: 59.6 + brightGreen: 46.9 + brightYellow: 26.3 + brightBlue: 38.7 + brightMagenta: 60 + brightCyan: 28.8 + brightWhite: 0 diff --git a/themes/timu-spacegrey-theme.yaml b/themes/timu-spacegrey-theme.yaml new file mode 100644 index 00000000..fd8760d3 --- /dev/null +++ b/themes/timu-spacegrey-theme.yaml @@ -0,0 +1,49 @@ +name: "Timu Spacegrey Theme" +source: + marketplace_id: "aimebertrand.timu-spacegrey-vscode" + version: "1.2.1" + installs: 1089 + author: "Aimé Bertrand" + repo: "https://gitlab.com/aimebertrand/timu-spacegrey-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=aimebertrand.timu-spacegrey-vscode" +colors: + bg: "#232830" + fg: "#C0C5CE" + black: "#2B303B" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#ECBE7B" + blue: "#8FA1B3" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#C0C5CE" + brightBlack: "#2B303B" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#ECBE7B" + brightBlue: "#8FA1B3" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#C0C5CE" +meta: + mode: "dark" + accent: "orange" + hue: 260 + contrast: + fg: 67.9 + black: 0 + red: 30.6 + green: 59.3 + yellow: 68.5 + blue: 46.9 + magenta: 44.1 + cyan: 60.3 + white: 67.9 + brightBlack: 0 + brightRed: 30.6 + brightGreen: 59.3 + brightYellow: 68.5 + brightBlue: 46.9 + brightMagenta: 44.1 + brightCyan: 60.3 + brightWhite: 67.9 diff --git a/themes/tinacious-design-syntax.yaml b/themes/tinacious-design-syntax.yaml new file mode 100644 index 00000000..723bdd47 --- /dev/null +++ b/themes/tinacious-design-syntax.yaml @@ -0,0 +1,49 @@ +name: "Tinacious Design Syntax" +source: + marketplace_id: "Prabodhan.blush" + version: "2.0.2" + installs: 1075 + author: "Prabodhan" + repo: "https://github.com/Prabodhan29/vscode-theme-blush" + url: "https://marketplace.visualstudio.com/items?itemName=Prabodhan.blush" +colors: + bg: "#1D1D26" + fg: "#B3B3D4" + black: "#2C2C3E" + red: "#F30067" + green: "#00D364" + yellow: "#FFCC66" + blue: "#00BFFF" + magenta: "#F30067" + cyan: "#00CED1" + white: "#FFFFFF" + brightBlack: "#3D3D56" + brightRed: "#F30067" + brightGreen: "#00D364" + brightYellow: "#FFCC66" + brightBlue: "#00BFFF" + brightMagenta: "#F30067" + brightCyan: "#00CED1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 60.9 + black: 0 + red: 33.8 + green: 62.7 + yellow: 78.5 + blue: 59.6 + magenta: 33.8 + cyan: 63.8 + white: 106.1 + brightBlack: 0 + brightRed: 33.8 + brightGreen: 62.7 + brightYellow: 78.5 + brightBlue: 59.6 + brightMagenta: 33.8 + brightCyan: 63.8 + brightWhite: 106.1 diff --git a/themes/tiniri-dark.yaml b/themes/tiniri-dark.yaml new file mode 100644 index 00000000..8790da78 --- /dev/null +++ b/themes/tiniri-dark.yaml @@ -0,0 +1,49 @@ +name: "Tiniri Dark" +source: + marketplace_id: "vladstudio.vlad-studio-tiniri" + version: "0.0.73" + installs: 1911 + author: "Vlad.studio" + repo: "https://github.com/vladstudio/tiniri-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vladstudio.vlad-studio-tiniri" +colors: + bg: "#1A1C1E" + fg: "#E8E6E3" + black: "#1A1C1E" + red: "#C66B67" + green: "#85A0AD" + yellow: "#CEA182" + blue: "#CEA182" + magenta: "#9F9A93" + cyan: "#85A0AD" + white: "#E8E5E3" + brightBlack: "#575653" + brightRed: "#D9726C" + brightGreen: "#85A0AD" + brightYellow: "#E5C7B2" + brightBlue: "#E5C7B2" + brightMagenta: "#ABA49C" + brightCyan: "#E8E5E3" + brightWhite: "#FFFCF0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 90.2 + black: 0 + red: 36 + green: 47.1 + yellow: 54.8 + blue: 54.8 + magenta: 46.5 + cyan: 47.1 + white: 89.8 + brightBlack: 15 + brightRed: 41.5 + brightGreen: 47.1 + brightYellow: 74.5 + brightBlue: 74.5 + brightMagenta: 52 + brightCyan: 89.8 + brightWhite: 104.2 diff --git a/themes/tiniri-light.yaml b/themes/tiniri-light.yaml new file mode 100644 index 00000000..2d26ecff --- /dev/null +++ b/themes/tiniri-light.yaml @@ -0,0 +1,49 @@ +name: "Tiniri Light" +source: + marketplace_id: "vladstudio.vlad-studio-tiniri" + version: "0.0.73" + installs: 1911 + author: "Vlad.studio" + repo: "https://github.com/vladstudio/tiniri-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vladstudio.vlad-studio-tiniri" +colors: + bg: "#FEFDFD" + fg: "#222120" + black: "#44403C" + red: "#994C48" + green: "#538A8A" + yellow: "#994C48" + blue: "#2D5C80" + magenta: "#804C6E" + cyan: "#538A8A" + white: "#DAD8CE" + brightBlack: "#B7B5AC" + brightRed: "#994C48" + brightGreen: "#538A8A" + brightYellow: "#E59793" + brightBlue: "#2D5C80" + brightMagenta: "#BD71A4" + brightCyan: "#538A8A" + brightWhite: "#E6E4D9" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 102 + black: 92.8 + red: 78.7 + green: 65.4 + yellow: 78.7 + blue: 83.4 + magenta: 81.4 + cyan: 65.4 + white: 19.5 + brightBlack: 39 + brightRed: 78.7 + brightGreen: 65.4 + brightYellow: 43.9 + brightBlue: 83.4 + brightMagenta: 60.9 + brightCyan: 65.4 + brightWhite: 12.6 diff --git a/themes/tiny-light.yaml b/themes/tiny-light.yaml new file mode 100644 index 00000000..84090f45 --- /dev/null +++ b/themes/tiny-light.yaml @@ -0,0 +1,49 @@ +name: "Tiny Light" +source: + marketplace_id: "zhiqiangx.xeon-light" + version: "0.0.2" + installs: 2787 + author: "zhiqiangx" + repo: "https://github.com/zhiqiangx/tinylight-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=zhiqiangx.xeon-light" +colors: + bg: "#FFFBE8" + fg: "#499504" + black: "#000000" + red: "#FD6C67" + green: "#097E00" + yellow: "#CDCB00" + blue: "#5597EF" + magenta: "#FE76FF" + cyan: "#39CBCC" + white: "#BBBBBB" + brightBlack: "#686868" + brightRed: "#FE8885" + brightGreen: "#74FA61" + brightYellow: "#FFFB00" + brightBlue: "#7FAFF4" + brightMagenta: "#FE9CFF" + brightCyan: "#6FDADA" + brightWhite: "#F1F1F1" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 62.1 + black: 103.4 + red: 50.4 + green: 72.7 + yellow: 28.4 + blue: 53.4 + magenta: 41.5 + cyan: 35.3 + white: 34.1 + brightBlack: 75.2 + brightRed: 42.6 + brightGreen: 14 + brightYellow: 0 + brightBlue: 41.5 + brightMagenta: 31.6 + brightCyan: 25.9 + brightWhite: 0 diff --git a/themes/titillating-midnight.yaml b/themes/titillating-midnight.yaml new file mode 100644 index 00000000..b84bdae9 --- /dev/null +++ b/themes/titillating-midnight.yaml @@ -0,0 +1,49 @@ +name: "Titillating Midnight" +source: + marketplace_id: "wicked-labs.relentless" + version: "0.17.0" + installs: 1115 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/relentless" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.relentless" +colors: + bg: "#00001A" + fg: "#BEC4D4" + black: "#1B1C37" + red: "#DC77CE" + green: "#C8A8F9" + yellow: "#9BA4BA" + blue: "#9688FF" + magenta: "#62DFC4" + cyan: "#B870DE" + white: "#BEC4D4" + brightBlack: "#858CA3" + brightRed: "#DC77CE" + brightGreen: "#C8A8F9" + brightYellow: "#9BA4BA" + brightBlue: "#9688FF" + brightMagenta: "#62DFC4" + brightCyan: "#B870DE" + brightWhite: "#BEC4D4" +meta: + mode: "dark" + accent: "magenta" + hue: 264 + contrast: + fg: 70.8 + black: 0 + red: 48.6 + green: 63.2 + yellow: 52.8 + blue: 46.7 + magenta: 74.9 + cyan: 41.8 + white: 70.8 + brightBlack: 40.7 + brightRed: 48.6 + brightGreen: 63.2 + brightYellow: 52.8 + brightBlue: 46.7 + brightMagenta: 74.9 + brightCyan: 41.8 + brightWhite: 70.8 diff --git a/themes/titillating-sunset.yaml b/themes/titillating-sunset.yaml new file mode 100644 index 00000000..3e6ede39 --- /dev/null +++ b/themes/titillating-sunset.yaml @@ -0,0 +1,49 @@ +name: "Titillating Sunset" +source: + marketplace_id: "wicked-labs.relentless" + version: "0.17.0" + installs: 1115 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/relentless" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.relentless" +colors: + bg: "#191B39" + fg: "#BEC4D4" + black: "#282A48" + red: "#FF7EED" + green: "#9DF0F0" + yellow: "#9BA4BA" + blue: "#8878FF" + magenta: "#23EBC0" + cyan: "#B870DE" + white: "#BEC4D4" + brightBlack: "#8C93AA" + brightRed: "#FF7EED" + brightGreen: "#9DF0F0" + brightYellow: "#9BA4BA" + brightBlue: "#8878FF" + brightMagenta: "#23EBC0" + brightCyan: "#B870DE" + brightWhite: "#BEC4D4" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 69 + black: 0 + red: 57.1 + green: 87.1 + yellow: 51 + blue: 38.6 + magenta: 77.3 + cyan: 40 + white: 69 + brightBlack: 42.4 + brightRed: 57.1 + brightGreen: 87.1 + brightYellow: 51 + brightBlue: 38.6 + brightMagenta: 77.3 + brightCyan: 40 + brightWhite: 69 diff --git a/themes/tlapalli-00-obsidian.yaml b/themes/tlapalli-00-obsidian.yaml new file mode 100644 index 00000000..baa1d335 --- /dev/null +++ b/themes/tlapalli-00-obsidian.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli 00: Obsidian" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#020202" + fg: "#A7A7A7" + black: "#020202" + red: "#777777" + green: "#4C4C4C" + yellow: "#A1A1A1" + blue: "#373737" + magenta: "#8C8C8C" + cyan: "#616161" + white: "#B6B6B6" + brightBlack: "#212121" + brightRed: "#777777" + brightGreen: "#4C4C4C" + brightYellow: "#A1A1A1" + brightBlue: "#373737" + brightMagenta: "#8C8C8C" + brightCyan: "#616161" + brightWhite: "#E1E1E1" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 54.6 + black: 0 + red: 30.6 + green: 12.7 + yellow: 51.4 + blue: 0 + magenta: 40.6 + cyan: 20.9 + white: 62.9 + brightBlack: 0 + brightRed: 30.6 + brightGreen: 12.7 + brightYellow: 51.4 + brightBlue: 0 + brightMagenta: 40.6 + brightCyan: 20.9 + brightWhite: 88.5 diff --git a/themes/tlapalli-01-gold.yaml b/themes/tlapalli-01-gold.yaml new file mode 100644 index 00000000..ca0ae558 --- /dev/null +++ b/themes/tlapalli-01-gold.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli 01: Gold" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#090705" + fg: "#BDA88A" + black: "#090705" + red: "#9D7F5A" + green: "#7F5F3D" + yellow: "#D9B88F" + blue: "#4D3A2A" + magenta: "#BD9970" + cyan: "#9E7A50" + white: "#E3C59D" + brightBlack: "#38261E" + brightRed: "#9D7F5A" + brightGreen: "#7F5F3D" + brightYellow: "#D9B88F" + brightBlue: "#4D3A2A" + brightMagenta: "#BD9970" + brightCyan: "#9E7A50" + brightWhite: "#FFE8C4" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 56.7 + black: 0 + red: 36.7 + green: 22.7 + yellow: 67 + blue: 7.7 + magenta: 50.4 + cyan: 35 + white: 74.1 + brightBlack: 0 + brightRed: 36.7 + brightGreen: 22.7 + brightYellow: 67 + brightBlue: 7.7 + brightMagenta: 50.4 + brightCyan: 35 + brightWhite: 94.7 diff --git a/themes/tlapalli-02-turquoise.yaml b/themes/tlapalli-02-turquoise.yaml new file mode 100644 index 00000000..32c4abd3 --- /dev/null +++ b/themes/tlapalli-02-turquoise.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli 02: Turquoise" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#050909" + fg: "#6AADAA" + black: "#050909" + red: "#04B4AB" + green: "#3D7F7D" + yellow: "#8FD9D6" + blue: "#2A4D4A" + magenta: "#70BDBA" + cyan: "#509E9A" + white: "#9DE3E0" + brightBlack: "#1E3837" + brightRed: "#04B4AB" + brightGreen: "#3D7F7D" + brightYellow: "#8FD9D6" + brightBlue: "#2A4D4A" + brightMagenta: "#70BDBA" + brightCyan: "#509E9A" + brightWhite: "#A8F0ED" +meta: + mode: "dark" + accent: "cyan" + hue: null + contrast: + fg: 51.7 + black: 0 + red: 51.9 + green: 29.6 + yellow: 75.6 + blue: 10.9 + magenta: 59.6 + cyan: 43.4 + white: 81.9 + brightBlack: 0 + brightRed: 51.9 + brightGreen: 29.6 + brightYellow: 75.6 + brightBlue: 10.9 + brightMagenta: 59.6 + brightCyan: 43.4 + brightWhite: 89.7 diff --git a/themes/tlapalli-03-quartz.yaml b/themes/tlapalli-03-quartz.yaml new file mode 100644 index 00000000..13860186 --- /dev/null +++ b/themes/tlapalli-03-quartz.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli 03: Quartz" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#0A0509" + fg: "#F78ABE" + black: "#0A0509" + red: "#D96B94" + green: "#7F3D5F" + yellow: "#FF8CB8" + blue: "#4D2A3D" + magenta: "#FF70AD" + cyan: "#9E5080" + white: "#FF99C2" + brightBlack: "#381E2E" + brightRed: "#D96B94" + brightGreen: "#7F3D5F" + brightYellow: "#FF8CB8" + brightBlue: "#4D2A3D" + brightMagenta: "#FF70AD" + brightCyan: "#9E5080" + brightWhite: "#FFA3D1" +meta: + mode: "dark" + accent: "red" + hue: 333 + contrast: + fg: 58.1 + black: 0 + red: 42.4 + green: 15.7 + yellow: 59.9 + blue: 0 + magenta: 52.3 + cyan: 25.3 + white: 64.3 + brightBlack: 0 + brightRed: 42.4 + brightGreen: 15.7 + brightYellow: 59.9 + brightBlue: 0 + brightMagenta: 52.3 + brightCyan: 25.3 + brightWhite: 68.2 diff --git a/themes/tlapalli-04-lapis-lazuli.yaml b/themes/tlapalli-04-lapis-lazuli.yaml new file mode 100644 index 00000000..a00f9d9c --- /dev/null +++ b/themes/tlapalli-04-lapis-lazuli.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli 04: Lapis Lazuli" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#070A0D" + fg: "#99B8D4" + black: "#070A0D" + red: "#5A7F9D" + green: "#3D5F7F" + yellow: "#8FB5D9" + blue: "#2A404D" + magenta: "#7099BD" + cyan: "#507A9E" + white: "#9DC9E3" + brightBlack: "#1E2A38" + brightRed: "#5A7F9D" + brightGreen: "#3D5F7F" + brightYellow: "#8FB5D9" + brightBlue: "#2A404D" + brightMagenta: "#7099BD" + brightCyan: "#507A9E" + brightWhite: "#C4E8FF" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 61.8 + black: 0 + red: 32.3 + green: 18.9 + yellow: 60 + blue: 7.4 + magenta: 44.9 + cyan: 30.1 + white: 70.2 + brightBlack: 0 + brightRed: 32.3 + brightGreen: 18.9 + brightYellow: 60 + brightBlue: 7.4 + brightMagenta: 44.9 + brightCyan: 30.1 + brightWhite: 89.5 diff --git a/themes/tlapalli-05-amethyst.yaml b/themes/tlapalli-05-amethyst.yaml new file mode 100644 index 00000000..52ffc701 --- /dev/null +++ b/themes/tlapalli-05-amethyst.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli 05: Amethyst" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#060407" + fg: "#997CC0" + black: "#060407" + red: "#8A5A9D" + green: "#6B3D7F" + yellow: "#B89FD9" + blue: "#342A4D" + magenta: "#9970BD" + cyan: "#7A509E" + white: "#D49DE3" + brightBlack: "#261E38" + brightRed: "#8A5A9D" + brightGreen: "#6B3D7F" + brightYellow: "#B89FD9" + brightBlue: "#342A4D" + brightMagenta: "#9970BD" + brightCyan: "#7A509E" + brightWhite: "#E8C4FF" +meta: + mode: "dark" + accent: "magenta" + hue: 316 + contrast: + fg: 39.2 + black: 0 + red: 26 + green: 14.4 + yellow: 56.1 + blue: 0 + magenta: 35.5 + cyan: 21.8 + white: 59.9 + brightBlack: 0 + brightRed: 26 + brightGreen: 14.4 + brightYellow: 56.1 + brightBlue: 0 + brightMagenta: 35.5 + brightCyan: 21.8 + brightWhite: 78.8 diff --git a/themes/tlapalli-06-jade.yaml b/themes/tlapalli-06-jade.yaml new file mode 100644 index 00000000..192bd883 --- /dev/null +++ b/themes/tlapalli-06-jade.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli 06: Jade" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#070B09" + fg: "#6AAD8F" + black: "#070B09" + red: "#5A9D7A" + green: "#3D7F5F" + yellow: "#8FD9AD" + blue: "#2A4D3E" + magenta: "#70BD99" + cyan: "#509E7A" + white: "#9DE3B8" + brightBlack: "#1E3829" + brightRed: "#5A9D7A" + brightGreen: "#3D7F5F" + brightYellow: "#8FD9AD" + brightBlue: "#2A4D3E" + brightMagenta: "#70BD99" + brightCyan: "#509E7A" + brightWhite: "#A3FFC4" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 50.6 + black: 0 + red: 42.4 + green: 28.6 + yellow: 73.9 + blue: 10.5 + magenta: 58.2 + cyan: 42.3 + white: 80.2 + brightBlack: 0 + brightRed: 42.4 + brightGreen: 28.6 + brightYellow: 73.9 + brightBlue: 10.5 + brightMagenta: 58.2 + brightCyan: 42.3 + brightWhite: 95 diff --git a/themes/tlapalli-07-fire-opal.yaml b/themes/tlapalli-07-fire-opal.yaml new file mode 100644 index 00000000..cd71581b --- /dev/null +++ b/themes/tlapalli-07-fire-opal.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli 07: Fire Opal" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#0C0707" + fg: "#D96670" + black: "#0C0707" + red: "#C94D5A" + green: "#7F3D3D" + yellow: "#FF4848" + blue: "#4D2A2A" + magenta: "#FF7070" + cyan: "#9E5050" + white: "#FF9199" + brightBlack: "#381E1E" + brightRed: "#C94D5A" + brightGreen: "#7F3D3D" + brightYellow: "#FF4848" + brightBlue: "#4D2A2A" + brightMagenta: "#FF7070" + brightCyan: "#9E5050" + brightWhite: "#FF8599" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 40.1 + black: 0 + red: 31.3 + green: 14.8 + yellow: 42.1 + blue: 0 + magenta: 50.2 + cyan: 23.8 + white: 60.2 + brightBlack: 0 + brightRed: 31.3 + brightGreen: 14.8 + brightYellow: 42.1 + brightBlue: 0 + brightMagenta: 50.2 + brightCyan: 23.8 + brightWhite: 56.7 diff --git a/themes/tlapalli-l-00-obsidian-light.yaml b/themes/tlapalli-l-00-obsidian-light.yaml new file mode 100644 index 00000000..8c2725de --- /dev/null +++ b/themes/tlapalli-l-00-obsidian-light.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli l-00: Obsidian Light" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#FDFDFD" + fg: "#4F4F4F" + black: "#FDFDFD" + red: "#898989" + green: "#B4B4B4" + yellow: "#5D5D5D" + blue: "#C9C8C7" + magenta: "#737373" + cyan: "#9E9E9E" + white: "#494949" + brightBlack: "#DDDDDD" + brightRed: "#898989" + brightGreen: "#B4B4B4" + brightYellow: "#5D5D5D" + brightBlue: "#C9C8C7" + brightMagenta: "#737373" + brightCyan: "#9E9E9E" + brightWhite: "#1E1E1E" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 87.2 + black: 0 + red: 61.4 + green: 39.3 + yellow: 81.4 + blue: 28.3 + magenta: 71.7 + cyan: 50.9 + white: 89.5 + brightBlack: 16.4 + brightRed: 61.4 + brightGreen: 39.3 + brightYellow: 81.4 + brightBlue: 28.3 + brightMagenta: 71.7 + brightCyan: 50.9 + brightWhite: 102.4 diff --git a/themes/tlapalli-l-01-gold-light.yaml b/themes/tlapalli-l-01-gold-light.yaml new file mode 100644 index 00000000..07aa22f4 --- /dev/null +++ b/themes/tlapalli-l-01-gold-light.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli l-01: Gold Light" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#FAF8F6" + fg: "#756042" + black: "#FAF8F6" + red: "#A58762" + green: "#C2A280" + yellow: "#704F26" + blue: "#D5C2B2" + magenta: "#8F6B42" + cyan: "#AF8B61" + white: "#62441C" + brightBlack: "#E1CFC7" + brightRed: "#A58762" + brightGreen: "#C2A280" + brightYellow: "#704F26" + brightBlue: "#D5C2B2" + brightMagenta: "#8F6B42" + brightCyan: "#AF8B61" + brightWhite: "#3B2400" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 75.9 + black: 0 + red: 57 + green: 43.1 + yellow: 81.6 + blue: 27.1 + magenta: 69.4 + cyan: 54.4 + white: 86.2 + brightBlack: 19.6 + brightRed: 57 + brightGreen: 43.1 + brightYellow: 81.6 + brightBlue: 27.1 + brightMagenta: 69.4 + brightCyan: 54.4 + brightWhite: 97.2 diff --git a/themes/tlapalli-l-02-turquoise-light.yaml b/themes/tlapalli-l-02-turquoise-light.yaml new file mode 100644 index 00000000..73edba2a --- /dev/null +++ b/themes/tlapalli-l-02-turquoise-light.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli l-02: Turquoise Light" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#F6FAFA" + fg: "#33615F" + black: "#F6FAFA" + red: "#0A9E97" + green: "#80C2C0" + yellow: "#26706D" + blue: "#B2D5D2" + magenta: "#428F8C" + cyan: "#61AFAB" + white: "#1C625F" + brightBlack: "#C7E1E0" + brightRed: "#0A9E97" + brightGreen: "#80C2C0" + brightYellow: "#26706D" + brightBlue: "#B2D5D2" + brightMagenta: "#428F8C" + brightCyan: "#61AFAB" + brightWhite: "#0F5754" +meta: + mode: "light" + accent: "cyan" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 56.4 + green: 35.6 + yellow: 75.3 + blue: 22.7 + magenta: 61.8 + cyan: 46.3 + white: 80.8 + brightBlack: 14.8 + brightRed: 56.4 + brightGreen: 35.6 + brightYellow: 75.3 + brightBlue: 22.7 + brightMagenta: 61.8 + brightCyan: 46.3 + brightWhite: 85 diff --git a/themes/tlapalli-l-03-quartz-light.yaml b/themes/tlapalli-l-03-quartz-light.yaml new file mode 100644 index 00000000..238b9078 --- /dev/null +++ b/themes/tlapalli-l-03-quartz-light.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli l-03: Quartz Light" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#FAF5F9" + fg: "#75083C" + black: "#FAF5F9" + red: "#94264F" + green: "#C280A2" + yellow: "#73002C" + blue: "#D5B2C5" + magenta: "#8F003D" + cyan: "#AF6191" + white: "#660029" + brightBlack: "#E1C7D7" + brightRed: "#94264F" + brightGreen: "#C280A2" + brightYellow: "#73002C" + brightBlue: "#D5B2C5" + brightMagenta: "#8F003D" + brightCyan: "#AF6191" + brightWhite: "#5C002E" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 89.2 + black: 0 + red: 81.2 + green: 51.9 + yellow: 90 + blue: 31.2 + magenta: 84.2 + cyan: 63.9 + white: 92.4 + brightBlack: 21 + brightRed: 81.2 + brightGreen: 51.9 + brightYellow: 90 + brightBlue: 31.2 + brightMagenta: 84.2 + brightCyan: 63.9 + brightWhite: 94 diff --git a/themes/tlapalli-l-04-lapis-lazuli-light.yaml b/themes/tlapalli-l-04-lapis-lazuli-light.yaml new file mode 100644 index 00000000..8bb63f99 --- /dev/null +++ b/themes/tlapalli-l-04-lapis-lazuli-light.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli l-04: Lapis Lazuli Light" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#F2F5F8" + fg: "#2B4A66" + black: "#F2F5F8" + red: "#6287A5" + green: "#80A2C2" + yellow: "#264C70" + blue: "#B2C8D5" + magenta: "#426B8F" + cyan: "#618BAF" + white: "#1C4862" + brightBlack: "#C7D3E1" + brightRed: "#6287A5" + brightGreen: "#80A2C2" + brightYellow: "#264C70" + brightBlue: "#B2C8D5" + brightMagenta: "#426B8F" + brightCyan: "#618BAF" + brightWhite: "#00243B" +meta: + mode: "light" + accent: "indigo" + hue: null + contrast: + fg: 85 + black: 0 + red: 59.2 + green: 45.7 + yellow: 84.1 + blue: 25.2 + magenta: 71.8 + cyan: 57.4 + white: 86.2 + brightBlack: 17.9 + brightRed: 59.2 + brightGreen: 45.7 + brightYellow: 84.1 + brightBlue: 25.2 + brightMagenta: 71.8 + brightCyan: 57.4 + brightWhite: 96.4 diff --git a/themes/tlapalli-l-05-amethyst-light.yaml b/themes/tlapalli-l-05-amethyst-light.yaml new file mode 100644 index 00000000..5eb12c5f --- /dev/null +++ b/themes/tlapalli-l-05-amethyst-light.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli l-05: Amethyst Light" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#FAF8FB" + fg: "#5C3F83" + black: "#FAF8FB" + red: "#9262A5" + green: "#AE80C2" + yellow: "#3F2660" + blue: "#BCB2D5" + magenta: "#6B428F" + cyan: "#8B61AF" + white: "#531C62" + brightBlack: "#CFC7E1" + brightRed: "#9262A5" + brightGreen: "#AE80C2" + brightYellow: "#3F2660" + brightBlue: "#BCB2D5" + brightMagenta: "#6B428F" + brightCyan: "#8B61AF" + brightWhite: "#24003B" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 85 + black: 0 + red: 68.4 + green: 54.7 + yellow: 94.6 + blue: 35.1 + magenta: 82 + cyan: 69 + white: 93.5 + brightBlack: 24.2 + brightRed: 68.4 + brightGreen: 54.7 + brightYellow: 94.6 + brightBlue: 35.1 + brightMagenta: 82 + brightCyan: 69 + brightWhite: 100.5 diff --git a/themes/tlapalli-l-06-jade-light.yaml b/themes/tlapalli-l-06-jade-light.yaml new file mode 100644 index 00000000..c54ac85c --- /dev/null +++ b/themes/tlapalli-l-06-jade-light.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli l-06: Jade Light" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#F4F8F6" + fg: "#3C7159" + black: "#F4F8F6" + red: "#62A582" + green: "#80C2A2" + yellow: "#267044" + blue: "#B2D5C6" + magenta: "#428F6B" + cyan: "#61AF8B" + white: "#1C6237" + brightBlack: "#C7E1D2" + brightRed: "#62A582" + brightGreen: "#80C2A2" + brightYellow: "#267044" + brightBlue: "#B2D5C6" + brightMagenta: "#428F6B" + brightCyan: "#61AF8B" + brightWhite: "#005C21" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 73.5 + black: 0 + red: 50.5 + green: 35.5 + yellow: 75.1 + blue: 21.9 + magenta: 61.5 + cyan: 46.2 + white: 80.5 + brightBlack: 14.1 + brightRed: 50.5 + brightGreen: 35.5 + brightYellow: 75.1 + brightBlue: 21.9 + brightMagenta: 61.5 + brightCyan: 46.2 + brightWhite: 83.1 diff --git a/themes/tlapalli-l-07-fire-opal-light.yaml b/themes/tlapalli-l-07-fire-opal-light.yaml new file mode 100644 index 00000000..0120e6b2 --- /dev/null +++ b/themes/tlapalli-l-07-fire-opal-light.yaml @@ -0,0 +1,49 @@ +name: "Tlapalli l-07: Fire Opal Light" +source: + marketplace_id: "ackzell.tlapalli" + version: "0.2.2" + installs: 33 + author: "ackzell" + repo: "https://github.com/ackzell/tlapalli-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" +colors: + bg: "#F8F3F3" + fg: "#992630" + black: "#F8F3F3" + red: "#B23643" + green: "#C28080" + yellow: "#B70000" + blue: "#D5B2B2" + magenta: "#8F0000" + cyan: "#AF6161" + white: "#6E0008" + brightBlack: "#E1C7C7" + brightRed: "#B23643" + brightGreen: "#C28080" + brightYellow: "#B70000" + brightBlue: "#D5B2B2" + brightMagenta: "#8F0000" + brightCyan: "#AF6161" + brightWhite: "#7A0014" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 79.5 + black: 0 + red: 72.4 + green: 51.8 + yellow: 74.8 + blue: 30.6 + magenta: 83.4 + cyan: 64.2 + white: 89.8 + brightBlack: 20.3 + brightRed: 72.4 + brightGreen: 51.8 + brightYellow: 74.8 + brightBlue: 30.6 + brightMagenta: 83.4 + brightCyan: 64.2 + brightWhite: 87.5 diff --git a/themes/tm2rd3.yaml b/themes/tm2rd3.yaml new file mode 100644 index 00000000..05675229 --- /dev/null +++ b/themes/tm2rd3.yaml @@ -0,0 +1,49 @@ +name: "tm2rd3" +source: + marketplace_id: "rd-theme3.tm2-rd3" + version: "0.0.1" + installs: 50 + author: "rd-theme3" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=rd-theme3.tm2-rd3" +colors: + bg: "#2B303B" + fg: "#C5C8C6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 266 + contrast: + fg: 67.7 + black: 0 + red: 22.6 + green: 48.9 + yellow: 81.5 + blue: 23.3 + magenta: 25.7 + cyan: 43.5 + white: 85.9 + brightBlack: 17.9 + brightRed: 34.5 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.9 + brightMagenta: 41.3 + brightCyan: 51.3 + brightWhite: 85.9 diff --git a/themes/tnove-dark-theme.yaml b/themes/tnove-dark-theme.yaml new file mode 100644 index 00000000..28dc899b --- /dev/null +++ b/themes/tnove-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "tnove-dark-theme" +source: + marketplace_id: "nafiulkabirbd.tnove-dark-theme" + version: "1.0.0" + installs: 251 + author: "Nafiul Kabir" + repo: "https://github.com/nafiulkabirbd/tnove-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nafiulkabirbd.tnove-dark-theme" +colors: + bg: "#161828" + fg: "#B4B4B4" + black: "#282341" + red: "#AA3C4B" + green: "#55735F" + yellow: "#AF8C55" + blue: "#2472C8" + magenta: "#7D5AAA" + cyan: "#326987" + white: "#DCDCDC" + brightBlack: "#3C375F" + brightRed: "#DC5A69" + brightGreen: "#698778" + brightYellow: "#D2AA69" + brightBlue: "#645AB4" + brightMagenta: "#916EC3" + brightCyan: "#468CB4" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "orange" + hue: 278 + contrast: + fg: 60.5 + black: 0 + red: 21 + green: 24.5 + yellow: 42.2 + blue: 27.2 + magenta: 23.9 + cyan: 20.8 + white: 84.1 + brightBlack: 0 + brightRed: 36.8 + brightGreen: 33.7 + brightYellow: 58.4 + brightBlue: 22 + brightMagenta: 33.1 + brightCyan: 36 + brightWhite: 96.8 diff --git a/themes/tobirama-water-style.yaml b/themes/tobirama-water-style.yaml new file mode 100644 index 00000000..06f0c7c2 --- /dev/null +++ b/themes/tobirama-water-style.yaml @@ -0,0 +1,49 @@ +name: "Tobirama Water Style" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 429 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" +colors: + bg: "#0D1B2A" + fg: "#E8F4F8" + black: "#0D1B2A" + red: "#FF6B6B" + green: "#5DADE2" + yellow: "#FFB74D" + blue: "#4FC3F7" + magenta: "#9C88FF" + cyan: "#00CED1" + white: "#E8F4F8" + brightBlack: "#5A7A8F" + brightRed: "#FF8A80" + brightGreen: "#81D4FA" + brightYellow: "#FFD180" + brightBlue: "#80DEEA" + brightMagenta: "#B39DDB" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 251 + contrast: + fg: 97.8 + black: 0 + red: 47.7 + green: 52.4 + yellow: 70.2 + blue: 62.5 + magenta: 46 + cyan: 64.2 + white: 97.8 + brightBlack: 28.7 + brightRed: 56.1 + brightGreen: 72.9 + brightYellow: 81.4 + brightBlue: 76.6 + brightMagenta: 53.4 + brightCyan: 90.8 + brightWhite: 106.5 diff --git a/themes/tokito-inspired.yaml b/themes/tokito-inspired.yaml new file mode 100644 index 00000000..47687ab1 --- /dev/null +++ b/themes/tokito-inspired.yaml @@ -0,0 +1,49 @@ +name: "Tokito Inspired" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 738 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" +colors: + bg: "#141921" + fg: "#D1D5DB" + black: "#141921" + red: "#F472B6" + green: "#86EFAC" + yellow: "#FDE047" + blue: "#7DD3FC" + magenta: "#D8B4FE" + cyan: "#7DD3FC" + white: "#E5E7EB" + brightBlack: "#71717A" + brightRed: "#F472B6" + brightGreen: "#86EFAC" + brightYellow: "#FDE047" + brightBlue: "#7DD3FC" + brightMagenta: "#D8B4FE" + brightCyan: "#7DD3FC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 260 + contrast: + fg: 79.7 + black: 0 + red: 49.7 + green: 82.9 + yellow: 87 + blue: 72.5 + magenta: 69.1 + cyan: 72.5 + white: 91 + brightBlack: 26.9 + brightRed: 49.7 + brightGreen: 82.9 + brightYellow: 87 + brightBlue: 72.5 + brightMagenta: 69.1 + brightCyan: 72.5 + brightWhite: 106.7 diff --git a/themes/tokv7.yaml b/themes/tokv7.yaml new file mode 100644 index 00000000..6fb8aad6 --- /dev/null +++ b/themes/tokv7.yaml @@ -0,0 +1,49 @@ +name: "tokv7" +source: + marketplace_id: "tok.tokv7" + version: "0.0.1" + installs: 33 + author: "tok" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tok.tokv7" +colors: + bg: "#1F1F1F" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.7 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/tokyo-dark.yaml b/themes/tokyo-dark.yaml new file mode 100644 index 00000000..cc65bf5e --- /dev/null +++ b/themes/tokyo-dark.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Dark" +source: + marketplace_id: "smnatale.tokyodark" + version: "1.0.4" + installs: 1954 + author: "smnatale" + repo: "https://github.com/smnatale/tokyodark-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=smnatale.tokyodark" +colors: + bg: "#090B10" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 268 + contrast: + fg: 60.7 + black: 0 + red: 50.7 + green: 73.6 + yellow: 63.6 + blue: 52.5 + magenta: 56.4 + cyan: 71.9 + white: 33.4 + brightBlack: 0 + brightRed: 50.7 + brightGreen: 73.6 + brightYellow: 63.6 + brightBlue: 52.5 + brightMagenta: 56.4 + brightCyan: 71.9 + brightWhite: 60.3 diff --git a/themes/tokyo-dive.yaml b/themes/tokyo-dive.yaml new file mode 100644 index 00000000..c6ddcb68 --- /dev/null +++ b/themes/tokyo-dive.yaml @@ -0,0 +1,49 @@ +name: "tokyo-dive" +source: + marketplace_id: "sukemoritech.tokyo-dive" + version: "0.1.0" + installs: 1146 + author: "sukemoritech" + repo: "https://github.com/sukemoritech/tokyo-dive" + url: "https://marketplace.visualstudio.com/items?itemName=sukemoritech.tokyo-dive" +colors: + bg: "#202123" + fg: "#DADBDD" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#FFFF00" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#DADBDD" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 82.5 + black: 0 + red: 23.3 + green: 51.8 + yellow: 56.4 + blue: 33.4 + magenta: 30.9 + cyan: 49.2 + white: 87.2 + brightBlack: 20.8 + brightRed: 36 + brightGreen: 75.7 + brightYellow: 100.4 + brightBlue: 48.6 + brightMagenta: 45.3 + brightCyan: 72.2 + brightWhite: 82.5 diff --git a/themes/tokyo-ghosts-dark.yaml b/themes/tokyo-ghosts-dark.yaml new file mode 100644 index 00000000..8641d236 --- /dev/null +++ b/themes/tokyo-ghosts-dark.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Ghosts Dark" +source: + marketplace_id: "CodeTime.tokyo-ghosts" + version: "0.1.0" + installs: 70 + author: "Code Time" + repo: "https://github.com/afj176/tokyo-ghosts" + url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.tokyo-ghosts" +colors: + bg: "#2B2D3A" + fg: "#E0E2EB" + black: "#1E2028" + red: "#FF6B8A" + green: "#50C878" + yellow: "#FFB347" + blue: "#6CB4EE" + magenta: "#BF5AF2" + cyan: "#00D4FF" + white: "#E0E2EB" + brightBlack: "#5D6075" + brightRed: "#FF8FA8" + brightGreen: "#7AD99A" + brightYellow: "#FFCA7A" + brightBlue: "#8FC8F5" + brightMagenta: "#D08FF7" + brightCyan: "#4DE4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 278 + contrast: + fg: 84.7 + black: 0 + red: 45.3 + green: 56.3 + yellow: 65.5 + blue: 53.7 + magenta: 34.9 + cyan: 66.3 + white: 84.7 + brightBlack: 16.4 + brightRed: 55.6 + brightGreen: 67.4 + brightYellow: 75.2 + brightBlue: 65.1 + brightMagenta: 51.4 + brightCyan: 75 + brightWhite: 103.3 diff --git a/themes/tokyo-ghosts-light.yaml b/themes/tokyo-ghosts-light.yaml new file mode 100644 index 00000000..b4ea35f5 --- /dev/null +++ b/themes/tokyo-ghosts-light.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Ghosts Light" +source: + marketplace_id: "CodeTime.tokyo-ghosts" + version: "0.1.0" + installs: 70 + author: "Code Time" + repo: "https://github.com/afj176/tokyo-ghosts" + url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.tokyo-ghosts" +colors: + bg: "#F0F1F5" + fg: "#2B2D3A" + black: "#2B2D3A" + red: "#B5314A" + green: "#1E7F4D" + yellow: "#9D6B28" + blue: "#2E5AAC" + magenta: "#7B5AA6" + cyan: "#0099CC" + white: "#E0E2EB" + brightBlack: "#5D6075" + brightRed: "#D04663" + brightGreen: "#2DA366" + brightYellow: "#C08530" + brightBlue: "#4075CC" + brightMagenta: "#9B75C6" + brightCyan: "#20B0DD" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 91.9 + black: 91.9 + red: 70.5 + green: 65.9 + yellow: 63.4 + blue: 74.1 + magenta: 68.7 + cyan: 51 + white: 0 + brightBlack: 72.6 + brightRed: 61.5 + brightGreen: 50.6 + brightYellow: 50.2 + brightBlue: 62.9 + brightMagenta: 55.7 + brightCyan: 40.7 + brightWhite: 0 diff --git a/themes/tokyo-gogh-alt.yaml b/themes/tokyo-gogh-alt.yaml new file mode 100644 index 00000000..167fc07b --- /dev/null +++ b/themes/tokyo-gogh-alt.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Gogh Alt" +source: + marketplace_id: "Avetis.tokyo-night" + version: "1.0.2" + installs: 110908 + author: "Avetis" + repo: "https://github.com/AvetisDN/tokyo-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.tokyo-night" +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#000000" + red: "#CD3131" + green: "#54B02A" + yellow: "#FDB347" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#727779" + brightRed: "#F14C4C" + brightGreen: "#9CCE6A" + brightYellow: "#E4B571" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 73.8 + black: 0 + red: 26.2 + green: 47.4 + yellow: 68.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 28.6 + brightRed: 38 + brightGreen: 66.8 + brightYellow: 65.3 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/tokyo-gogh.yaml b/themes/tokyo-gogh.yaml new file mode 100644 index 00000000..aa6306b9 --- /dev/null +++ b/themes/tokyo-gogh.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Gogh" +source: + marketplace_id: "Avetis.tokyo-night" + version: "1.0.2" + installs: 110908 + author: "Avetis" + repo: "https://github.com/AvetisDN/tokyo-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.tokyo-night" +colors: + bg: "#24283B" + fg: "#C0CAF5" + black: "#000000" + red: "#CD3131" + green: "#54B02A" + yellow: "#FDB347" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#727779" + brightRed: "#F14C4C" + brightGreen: "#9CCE6A" + brightYellow: "#E4B571" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 71.7 + black: 0 + red: 24.1 + green: 45.3 + yellow: 66 + blue: 24.8 + magenta: 27.1 + cyan: 44.9 + white: 87.4 + brightBlack: 26.5 + brightRed: 35.9 + brightGreen: 64.7 + brightYellow: 63.2 + brightBlue: 37.4 + brightMagenta: 42.7 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/tokyo-light.yaml b/themes/tokyo-light.yaml new file mode 100644 index 00000000..4cfef5b4 --- /dev/null +++ b/themes/tokyo-light.yaml @@ -0,0 +1,49 @@ +name: "Tokyo (Light)" +source: + marketplace_id: "akil-s.tokyo-light" + version: "0.0.4" + installs: 7302 + author: "akil-s" + repo: "https://github.com/Salah-Akil/tokyo-vscode-light" + url: "https://marketplace.visualstudio.com/items?itemName=akil-s.tokyo-light" +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#232627" + red: "#BF0C0C" + green: "#738D01" + yellow: "#D59200" + blue: "#009C8F" + magenta: "#AA62C8" + cyan: "#17B898" + white: "#42413F" + brightBlack: "#464E4F" + brightRed: "#CA1111" + brightGreen: "#7F990D" + brightYellow: "#9E6200" + brightBlue: "#00B6A4" + brightMagenta: "#8E44AD" + brightCyan: "#16A085" + brightWhite: "#5D5C5A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.5 + black: 102.2 + red: 79.4 + green: 65.2 + yellow: 51.2 + blue: 61 + magenta: 66.7 + cyan: 48.8 + white: 93.7 + brightBlack: 89.4 + brightRed: 76.8 + brightGreen: 59.6 + brightYellow: 74.2 + brightBlue: 49.3 + brightMagenta: 78.8 + brightCyan: 59.6 + brightWhite: 83 diff --git a/themes/tokyo-lights.yaml b/themes/tokyo-lights.yaml new file mode 100644 index 00000000..7347760c --- /dev/null +++ b/themes/tokyo-lights.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Lights" +source: + marketplace_id: "elvados.tokyo-lights" + version: "0.0.9" + installs: 18 + author: "vadyapan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=elvados.tokyo-lights" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#A9B1D6" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 59.3 + black: 10.3 + red: 49.4 + green: 72.2 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 59.3 + brightBlack: 10.3 + brightRed: 49.4 + brightGreen: 72.2 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 59.3 diff --git a/themes/tokyo-midnight.yaml b/themes/tokyo-midnight.yaml new file mode 100644 index 00000000..e3262acc --- /dev/null +++ b/themes/tokyo-midnight.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Midnight" +source: + marketplace_id: "nacholaciar.tokyo-midnight" + version: "0.1.9" + installs: 14438 + author: "nacholaciar" + repo: "https://github.com/nacholaciar/tokyo-midnight" + url: "https://marketplace.visualstudio.com/items?itemName=nacholaciar.tokyo-midnight" +colors: + bg: "#26262E" + fg: "#B5B5B5" + black: "#444654" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#7E8093" + brightBlack: "#444654" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 59.1 + black: 7.6 + red: 47.7 + green: 44.2 + yellow: 60.5 + blue: 49.5 + magenta: 53.4 + cyan: 68.8 + white: 32.1 + brightBlack: 7.6 + brightRed: 47.7 + brightGreen: 44.2 + brightYellow: 60.5 + brightBlue: 49.5 + brightMagenta: 53.4 + brightCyan: 68.8 + brightWhite: 57.3 diff --git a/themes/tokyo-modern.yaml b/themes/tokyo-modern.yaml new file mode 100644 index 00000000..54f7a93b --- /dev/null +++ b/themes/tokyo-modern.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Modern" +source: + marketplace_id: "lod-inc.tokyo-modern" + version: "2.8.32" + installs: 39 + author: "lod" + repo: "https://github.com/darqus/tokyo-modern-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lod-inc.tokyo-modern" +colors: + bg: "#1D1B2F" + fg: "#BBC4EE" + black: "#151326" + red: "#FF5555" + green: "#8AB56C" + yellow: "#C4B39D" + blue: "#6D61D3" + magenta: "#A580EC" + cyan: "#51BBCB" + white: "#B8C2ED" + brightBlack: "#A8AECE" + brightRed: "#D64747" + brightGreen: "#74985B" + brightYellow: "#C9B9A5" + brightBlue: "#796ED7" + brightMagenta: "#A580EC" + brightCyan: "#51BBCB" + brightWhite: "#BBC4EE" +meta: + mode: "dark" + accent: "orange" + hue: 288 + contrast: + fg: 70.1 + black: 0 + red: 42.6 + green: 53.9 + yellow: 60.8 + blue: 26.4 + magenta: 42.9 + cyan: 56.2 + white: 68.9 + brightBlack: 57.4 + brightRed: 31 + brightGreen: 39.7 + brightYellow: 64.1 + brightBlue: 31.3 + brightMagenta: 42.9 + brightCyan: 56.2 + brightWhite: 70.1 diff --git a/themes/tokyo-night-blackout.yaml b/themes/tokyo-night-blackout.yaml new file mode 100644 index 00000000..4c498566 --- /dev/null +++ b/themes/tokyo-night-blackout.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Night Blackout" +source: + marketplace_id: "EdmundYong.tokyo-night-blackout" + version: "0.0.1" + installs: 1987 + author: "Edmund Yong" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=EdmundYong.tokyo-night-blackout" +colors: + bg: "#000000" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 60.9 + black: 0 + red: 50.9 + green: 73.8 + yellow: 63.7 + blue: 52.7 + magenta: 56.6 + cyan: 72.1 + white: 33.6 + brightBlack: 0 + brightRed: 50.9 + brightGreen: 47.4 + brightYellow: 63.7 + brightBlue: 52.7 + brightMagenta: 56.6 + brightCyan: 72.1 + brightWhite: 60.5 diff --git a/themes/tokyo-night-bright.yaml b/themes/tokyo-night-bright.yaml new file mode 100644 index 00000000..80b1c584 --- /dev/null +++ b/themes/tokyo-night-bright.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Night Bright" +source: + marketplace_id: "danarnold.tokyo-night-bright" + version: "0.0.1" + installs: 467 + author: "danarnold" + repo: "https://github.com/danarnold/tokyonight-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=danarnold.tokyo-night-bright" +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#15161E" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#A9B1D6" + brightBlack: "#414868" + brightRed: "#FF899D" + brightGreen: "#9FE044" + brightYellow: "#FABA4A" + brightBlue: "#8DB0FF" + brightMagenta: "#C7A9FF" + brightCyan: "#A4DAFF" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "green" + hue: 280 + contrast: + fg: 73.8 + black: 0 + red: 49.4 + green: 66.9 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 59.3 + brightBlack: 10.3 + brightRed: 56.5 + brightGreen: 75 + brightYellow: 70.3 + brightBlue: 58.6 + brightMagenta: 62.4 + brightCyan: 78.5 + brightWhite: 73.8 diff --git a/themes/tokyo-night-dark.yaml b/themes/tokyo-night-dark.yaml new file mode 100644 index 00000000..a3b95916 --- /dev/null +++ b/themes/tokyo-night-dark.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Night Dark" +source: + marketplace_id: "drewxs.tokyo-night-dark" + version: "0.3.3" + installs: 76424 + author: "Andrew X. Shah" + repo: "https://github.com/kito0/tokyo-night-dark" + url: "https://marketplace.visualstudio.com/items?itemName=drewxs.tokyo-night-dark" +colors: + bg: "#0A0A0D" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 60.7 + black: 0 + red: 50.8 + green: 47.2 + yellow: 63.6 + blue: 52.5 + magenta: 56.4 + cyan: 71.9 + white: 33.5 + brightBlack: 0 + brightRed: 50.8 + brightGreen: 47.2 + brightYellow: 63.6 + brightBlue: 52.5 + brightMagenta: 56.4 + brightCyan: 71.9 + brightWhite: 60.4 diff --git a/themes/tokyo-night-equalizer.yaml b/themes/tokyo-night-equalizer.yaml new file mode 100644 index 00000000..bc9b73c6 --- /dev/null +++ b/themes/tokyo-night-equalizer.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Night Equalizer" +source: + marketplace_id: "ni3rav.andromeda-night" + version: "0.0.7" + installs: 1259 + author: "ni3rav" + repo: "https://github.com/ni3rav/andromeda-night" + url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.andromeda-night" +colors: + bg: "#14151D" + fg: "#979AB3" + black: "#4A4E6B" + red: "#CA5F64" + green: "#6F768E" + yellow: "#B6A6C2" + blue: "#7A7C9D" + magenta: "#8A8CB2" + cyan: "#7F9BAD" + white: "#707083" + brightBlack: "#4A4E6B" + brightRed: "#CA5F64" + brightGreen: "#6F768E" + brightYellow: "#B6A6C2" + brightBlue: "#7A7C9D" + brightMagenta: "#8A8CB2" + brightCyan: "#7F9BAD" + brightWhite: "#8B8D9C" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 47.6 + black: 13.3 + red: 34.5 + green: 29.5 + yellow: 56.3 + blue: 33.1 + magenta: 41.1 + cyan: 45.3 + white: 27.2 + brightBlack: 13.3 + brightRed: 34.5 + brightGreen: 29.5 + brightYellow: 56.3 + brightBlue: 33.1 + brightMagenta: 41.1 + brightCyan: 45.3 + brightWhite: 40.6 diff --git a/themes/tokyo-night-light.yaml b/themes/tokyo-night-light.yaml new file mode 100644 index 00000000..c14195be --- /dev/null +++ b/themes/tokyo-night-light.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Night Light" +source: + marketplace_id: "damask-holdings.tokyo-night-theme-damask-edition" + version: "0.0.1" + installs: 318 + author: "Damask Holdings" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=damask-holdings.tokyo-night-theme-damask-edition" +colors: + bg: "#BFC0C7" + fg: "#343B59" + black: "#0F0F14" + red: "#8C4351" + green: "#33635C" + yellow: "#8F5E15" + blue: "#34548A" + magenta: "#5A4A78" + cyan: "#0F4B6E" + white: "#828594" + brightBlack: "#0F0F14" + brightRed: "#8C4351" + brightGreen: "#33635C" + brightYellow: "#8F5E15" + brightBlue: "#34548A" + brightMagenta: "#5A4A78" + brightCyan: "#0F4B6E" + brightWhite: "#828594" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 59.4 + black: 69.5 + red: 47.5 + green: 47.4 + yellow: 41.5 + blue: 50.1 + magenta: 51.1 + cyan: 55.2 + white: 28.3 + brightBlack: 69.5 + brightRed: 47.5 + brightGreen: 47.4 + brightYellow: 41.5 + brightBlue: 50.1 + brightMagenta: 51.1 + brightCyan: 55.2 + brightWhite: 28.3 diff --git a/themes/tokyo-night-nv.yaml b/themes/tokyo-night-nv.yaml new file mode 100644 index 00000000..cb1d9e22 --- /dev/null +++ b/themes/tokyo-night-nv.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Night nv" +source: + marketplace_id: "tokyo-night.nvtokyo" + version: "0.0.1" + installs: 1816 + author: "tokyo-night" + repo: "https://github.com/betty2310/Tokyo-Night" + url: "https://marketplace.visualstudio.com/items?itemName=tokyo-night.nvtokyo" +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#000000" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#B4F9F8" + white: "#E5E5E5" + brightBlack: "#727779" + brightRed: "#F14C4C" + brightGreen: "#9CCE6A" + brightYellow: "#E4B571" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 280 + contrast: + fg: 73.8 + black: 0 + red: 49.4 + green: 66.9 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 94.3 + white: 89.5 + brightBlack: 28.6 + brightRed: 38 + brightGreen: 66.8 + brightYellow: 65.3 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/tokyo-night-pure.yaml b/themes/tokyo-night-pure.yaml new file mode 100644 index 00000000..86e90a68 --- /dev/null +++ b/themes/tokyo-night-pure.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Night Pure" +source: + marketplace_id: "nishantg96.tokyo-night-pure" + version: "0.0.3" + installs: 1743 + author: "Nishant Gajjar" + repo: "https://github.com/nishantg96/Tokyo-Night-Pure-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=nishantg96.tokyo-night-pure" +colors: + bg: "#1A1B26" + fg: "#CFC9C2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E0AF68" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D5D6DB" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 72.8 + black: 0 + red: 26.2 + green: 52.5 + yellow: 62.2 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 80.2 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/tokyo-night-storm.yaml b/themes/tokyo-night-storm.yaml new file mode 100644 index 00000000..ca631468 --- /dev/null +++ b/themes/tokyo-night-storm.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Night Storm" +source: + marketplace_id: "PojokCode.pcode-theme" + version: "0.0.1038" + installs: 1397 + author: "Pojok Code" + repo: "https://github.com/pojokcodeid/pcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PojokCode.pcode-theme" +colors: + bg: "#24283B" + fg: "#A9B1D6" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#7982A9" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 57.2 + black: 8.2 + red: 47.3 + green: 70.1 + yellow: 60.1 + blue: 49 + magenta: 52.9 + cyan: 68.4 + white: 32.8 + brightBlack: 8.2 + brightRed: 47.3 + brightGreen: 70.1 + brightYellow: 60.1 + brightBlue: 49 + brightMagenta: 52.9 + brightCyan: 68.4 + brightWhite: 57.2 diff --git a/themes/tokyo-night-void.yaml b/themes/tokyo-night-void.yaml new file mode 100644 index 00000000..529011fb --- /dev/null +++ b/themes/tokyo-night-void.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Night Void" +source: + marketplace_id: "SatoruCode.tokyo-night-void" + version: "0.0.1" + installs: 418 + author: "Satoru Code" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SatoruCode.tokyo-night-void" +colors: + bg: "#000000" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#F04F6A" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#F04F6A" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 60.9 + black: 0 + red: 50.9 + green: 73.8 + yellow: 40.4 + blue: 52.7 + magenta: 56.6 + cyan: 72.1 + white: 33.6 + brightBlack: 0 + brightRed: 50.9 + brightGreen: 47.4 + brightYellow: 40.4 + brightBlue: 52.7 + brightMagenta: 56.6 + brightCyan: 72.1 + brightWhite: 60.5 diff --git a/themes/tokyo-night.yaml b/themes/tokyo-night.yaml new file mode 100644 index 00000000..59698c10 --- /dev/null +++ b/themes/tokyo-night.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Night" +source: + marketplace_id: "AgraeonLabs.dev-themes" + version: "0.1.0" + installs: 283 + author: "Agraeon Labs" + repo: "https://github.com/adiagcodelance/VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#1A1B26" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#C0CAF5" + brightBlack: "#1A1B26" + brightRed: "#F7768E" + brightGreen: "#9ECE6A" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 73.8 + black: 0 + red: 49.4 + green: 66.9 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 73.8 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 66.9 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 73.8 diff --git a/themes/tokyo-panda.yaml b/themes/tokyo-panda.yaml new file mode 100644 index 00000000..bc11e62c --- /dev/null +++ b/themes/tokyo-panda.yaml @@ -0,0 +1,49 @@ +name: "Tokyo Panda" +source: + marketplace_id: "effordDev.tokyo-panda-theme" + version: "1.12.0" + installs: 8329 + author: "effordDev" + repo: "https://github.com/effordDev/tokyo-panda-theme" + url: "https://marketplace.visualstudio.com/items?itemName=effordDev.tokyo-panda-theme" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#3AFFC4" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 280 + contrast: + fg: 59.3 + black: 0 + red: 62.9 + green: 90.3 + yellow: 95.2 + blue: 80.8 + magenta: 74.2 + cyan: 95.4 + white: 74.1 + brightBlack: 0 + brightRed: 51.2 + brightGreen: 88.5 + brightYellow: 90 + brightBlue: 61.6 + brightMagenta: 49.7 + brightCyan: 93.3 + brightWhite: 106.3 diff --git a/themes/tokyo.yaml b/themes/tokyo.yaml new file mode 100644 index 00000000..3afeb0a9 --- /dev/null +++ b/themes/tokyo.yaml @@ -0,0 +1,49 @@ +name: "Tokyo" +source: + marketplace_id: "Avetis.codeme-theme" + version: "0.1.1" + installs: 8079 + author: "Avetis" + repo: "https://github.com/AvetisDN/codeme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" +colors: + bg: "#1A1B22" + fg: "#D7DCE8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D7DCE8" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 279 + contrast: + fg: 83.8 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.3 + cyan: 47.1 + white: 83.8 + brightBlack: 21.5 + brightRed: 38.1 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 106.4 diff --git a/themes/tokyonight-moon-lazy.yaml b/themes/tokyonight-moon-lazy.yaml new file mode 100644 index 00000000..58ba0f17 --- /dev/null +++ b/themes/tokyonight-moon-lazy.yaml @@ -0,0 +1,49 @@ +name: "TokyoNight Moon (Lazy)" +source: + marketplace_id: "gyro-uyt.lazy-themes" + version: "0.1.5" + installs: 17 + author: "Uday Thakur" + repo: "https://github.com/gyro-uyt/lazy-themes" + url: "https://marketplace.visualstudio.com/items?itemName=gyro-uyt.lazy-themes" +colors: + bg: "#222436" + fg: "#C8D3F5" + black: "#1B1D2B" + red: "#FF757F" + green: "#C3E88D" + yellow: "#FFC777" + blue: "#82AAFF" + magenta: "#C099FF" + cyan: "#86E1FC" + white: "#C8D3F5" + brightBlack: "#828BB8" + brightRed: "#FF757F" + brightGreen: "#C3E88D" + brightYellow: "#FFC777" + brightBlue: "#82AAFF" + brightMagenta: "#C099FF" + brightCyan: "#86E1FC" + brightWhite: "#C8D3F5" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 77.2 + black: 0 + red: 48.9 + green: 82.2 + yellow: 75.6 + blue: 54 + magenta: 54.5 + cyan: 77.8 + white: 77.2 + brightBlack: 38.2 + brightRed: 48.9 + brightGreen: 82.2 + brightYellow: 75.6 + brightBlue: 54 + brightMagenta: 54.5 + brightCyan: 77.8 + brightWhite: 77.2 diff --git a/themes/tokyonight.yaml b/themes/tokyonight.yaml new file mode 100644 index 00000000..b46e3ee4 --- /dev/null +++ b/themes/tokyonight.yaml @@ -0,0 +1,49 @@ +name: "tokyoNIGHT" +source: + marketplace_id: "UnSad.tragicpale" + version: "0.0.1" + installs: 184 + author: "UnSad" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=UnSad.tragicpale" +colors: + bg: "#131421" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F5F5F5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 107 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 100.5 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.5 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/tol.yaml b/themes/tol.yaml new file mode 100644 index 00000000..7b6bad93 --- /dev/null +++ b/themes/tol.yaml @@ -0,0 +1,49 @@ +name: "Tol" +source: + marketplace_id: "dustypomerleau.tol" + version: "0.11.0" + installs: 5418 + author: "Dusty Pomerleau" + repo: "https://github.com/dustypomerleau/tol" + url: "https://marketplace.visualstudio.com/items?itemName=dustypomerleau.tol" +colors: + bg: "#292D3E" + fg: "#CAC0A9" + black: "#242837" + red: "#EE8866" + green: "#BBCC33" + yellow: "#EEDD88" + blue: "#77AADD" + magenta: "#FFAABB" + cyan: "#99DDFF" + white: "#FDF1D4" + brightBlack: "#535664" + brightRed: "#EE8866" + brightGreen: "#44BB99" + brightYellow: "#EEDD88" + brightBlue: "#9FC3E7" + brightMagenta: "#FFAABB" + brightCyan: "#99DDFF" + brightWhite: "#FDF5E0" +meta: + mode: "dark" + accent: "green" + hue: 274 + contrast: + fg: 64.4 + black: 0 + red: 48.4 + green: 65.4 + yellow: 80.9 + blue: 49.3 + magenta: 65 + cyan: 75.9 + white: 94.5 + brightBlack: 12.1 + brightRed: 48.4 + brightGreen: 50.8 + brightYellow: 80.9 + brightBlue: 63.5 + brightMagenta: 65 + brightCyan: 75.9 + brightWhite: 96.9 diff --git a/themes/tomorrow-night-bright-r-classic.yaml b/themes/tomorrow-night-bright-r-classic.yaml new file mode 100644 index 00000000..4a169a87 --- /dev/null +++ b/themes/tomorrow-night-bright-r-classic.yaml @@ -0,0 +1,49 @@ +name: "Tomorrow Night Bright (R Classic)" +source: + marketplace_id: "gvelasq.tomorrow-night-bright-r-classic" + version: "0.1.3" + installs: 337 + author: "gvelasq" + repo: "https://github.com/gvelasq/tomorrow-night-bright-r-classic" + url: "https://marketplace.visualstudio.com/items?itemName=gvelasq.tomorrow-night-bright-r-classic" +colors: + bg: "#000000" + fg: "#DEDEDE" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 86.6 + black: 13.6 + red: 53.1 + green: 52.6 + yellow: 52.7 + blue: 52.7 + magenta: 52.7 + cyan: 61.9 + white: 64.5 + brightBlack: 29.7 + brightRed: 65.3 + brightGreen: 65.9 + brightYellow: 65.2 + brightBlue: 65.2 + brightMagenta: 65.1 + brightCyan: 70.4 + brightWhite: 107.9 diff --git a/themes/tomorrow-night-ij.yaml b/themes/tomorrow-night-ij.yaml new file mode 100644 index 00000000..5e2b81c2 --- /dev/null +++ b/themes/tomorrow-night-ij.yaml @@ -0,0 +1,49 @@ +name: "Tomorrow Night IJ" +source: + marketplace_id: "Arkadiy-Dymkov-Weinstein.tomorrow-night-ij" + version: "1.0.0" + installs: 77 + author: "Arkadiy Dymkov-Weinstein" + repo: "https://github.com/Arkady-Dymkov/tommorow-night-ij" + url: "https://marketplace.visualstudio.com/items?itemName=Arkadiy-Dymkov-Weinstein.tomorrow-night-ij" +colors: + bg: "#1D1F21" + fg: "#C5C8C6" + black: "#1D1F21" + red: "#CC6666" + green: "#B5BD68" + yellow: "#F0C674" + blue: "#81A2BE" + magenta: "#B294BB" + cyan: "#8ABEB7" + white: "#C5C8C6" + brightBlack: "#969896" + brightRed: "#FF6B68" + brightGreen: "#70FF70" + brightYellow: "#FFFF00" + brightBlue: "#7EAEF1" + brightMagenta: "#FF99FF" + brightCyan: "#6CDADA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 70.9 + black: 0 + red: 35.5 + green: 61.5 + yellow: 73.7 + blue: 47.9 + magenta: 47.9 + cyan: 59.9 + white: 70.9 + brightBlack: 44.4 + brightRed: 47.1 + brightGreen: 87.7 + brightYellow: 100.8 + brightBlue: 55.3 + brightMagenta: 65.6 + brightCyan: 72.2 + brightWhite: 105.9 diff --git a/themes/tomorrow-night-vs.yaml b/themes/tomorrow-night-vs.yaml new file mode 100644 index 00000000..0f3cdf29 --- /dev/null +++ b/themes/tomorrow-night-vs.yaml @@ -0,0 +1,49 @@ +name: "Tomorrow Night VS" +source: + marketplace_id: "xivilay.simplified-themes-mods-pack" + version: "0.0.2" + installs: 47 + author: "xivilay" + repo: "https://github.com/xivilay/vs-code-themes" + url: "https://marketplace.visualstudio.com/items?itemName=xivilay.simplified-themes-mods-pack" +colors: + bg: "#263035" + fg: "#C5C8C6" + black: "#263035" + red: "#CC6666" + green: "#B5BD68" + yellow: "#F0C674" + blue: "#81A2BE" + magenta: "#B294BB" + cyan: "#8ABEB7" + white: "#969896" + brightBlack: "#263035" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#F0C674" + brightBlue: "#81A2BE" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#C5C8C6" +meta: + mode: "dark" + accent: "orange" + hue: 230 + contrast: + fg: 68.1 + black: 0 + red: 32.6 + green: 58.6 + yellow: 70.8 + blue: 45.1 + magenta: 45.1 + cyan: 57.1 + white: 41.6 + brightBlack: 0 + brightRed: 32.6 + brightGreen: 58.6 + brightYellow: 70.8 + brightBlue: 45.1 + brightMagenta: 45.1 + brightCyan: 57.1 + brightWhite: 68.1 diff --git a/themes/tomorrowmyst.yaml b/themes/tomorrowmyst.yaml new file mode 100644 index 00000000..2146be93 --- /dev/null +++ b/themes/tomorrowmyst.yaml @@ -0,0 +1,49 @@ +name: "TomorrowMyst" +source: + marketplace_id: "CodeMyst.tomorrowmyst" + version: "1.0.1" + installs: 675 + author: "CodeMyst" + repo: "https://github.com/CodeMyst/TomorrowMyst" + url: "https://marketplace.visualstudio.com/items?itemName=CodeMyst.tomorrowmyst" +colors: + bg: "#141414" + fg: "#C5C8C6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CECECE" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 72.1 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 76.1 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/tonic-contrast.yaml b/themes/tonic-contrast.yaml new file mode 100644 index 00000000..21fb54f4 --- /dev/null +++ b/themes/tonic-contrast.yaml @@ -0,0 +1,49 @@ +name: "tonic-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#111314" + fg: "#EEEEEE" + black: "#1D2022" + red: "#BA0E2E" + green: "#75A1A4" + yellow: "#B8CD44" + blue: "#FD9F59" + magenta: "#EF6E44" + cyan: "#B8CD44" + white: "#FBFBFB" + brightBlack: "#40474B" + brightRed: "#F03E5F" + brightGreen: "#B2CBCD" + brightYellow: "#D7E394" + brightBlue: "#FED9BE" + brightMagenta: "#F7B7A2" + brightCyan: "#D7E394" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 96.1 + black: 0 + red: 20.9 + green: 46.7 + yellow: 69.6 + blue: 62.2 + magenta: 45 + cyan: 69.6 + white: 104.6 + brightBlack: 9.9 + brightRed: 37.2 + brightGreen: 71.6 + brightYellow: 84.8 + brightBlue: 87.2 + brightMagenta: 71.4 + brightCyan: 84.8 + brightWhite: 107.3 diff --git a/themes/tonic-light.yaml b/themes/tonic-light.yaml new file mode 100644 index 00000000..dbffb40c --- /dev/null +++ b/themes/tonic-light.yaml @@ -0,0 +1,49 @@ +name: "tonic-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#EEEEEE" + fg: "#2A2F31" + black: "#FBFBFB" + red: "#BA0E2E" + green: "#75A1A4" + yellow: "#B8CD44" + blue: "#FD9F59" + magenta: "#EF6E44" + cyan: "#B8CD44" + white: "#363C3F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#B2CBCD" + brightYellow: "#D7E394" + brightBlue: "#FED9BE" + brightMagenta: "#F7B7A2" + brightCyan: "#D7E394" + brightWhite: "#596468" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 90 + black: 0 + red: 70.2 + green: 44.4 + yellow: 22.4 + blue: 29.4 + magenta: 46 + cyan: 22.4 + white: 85.8 + brightBlack: 8.9 + brightRed: 53.8 + brightGreen: 20.4 + brightYellow: 8 + brightBlue: 0 + brightMagenta: 20.6 + brightCyan: 8 + brightWhite: 70.3 diff --git a/themes/tonic.yaml b/themes/tonic.yaml new file mode 100644 index 00000000..6ff5618a --- /dev/null +++ b/themes/tonic.yaml @@ -0,0 +1,49 @@ +name: "tonic" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2A2F31" + fg: "#EEEEEE" + black: "#363C3F" + red: "#BA0E2E" + green: "#75A1A4" + yellow: "#B8CD44" + blue: "#FD9F59" + magenta: "#EF6E44" + cyan: "#B8CD44" + white: "#FBFBFB" + brightBlack: "#596468" + brightRed: "#F03E5F" + brightGreen: "#B2CBCD" + brightYellow: "#D7E394" + brightBlue: "#FED9BE" + brightMagenta: "#F7B7A2" + brightCyan: "#D7E394" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 92.1 + black: 0 + red: 16.8 + green: 42.7 + yellow: 65.5 + blue: 58.2 + magenta: 41 + cyan: 65.5 + white: 100.5 + brightBlack: 16.7 + brightRed: 33.1 + brightGreen: 67.5 + brightYellow: 80.7 + brightBlue: 83.1 + brightMagenta: 67.3 + brightCyan: 80.7 + brightWhite: 103.2 diff --git a/themes/toodark.yaml b/themes/toodark.yaml new file mode 100644 index 00000000..8cd4a3c6 --- /dev/null +++ b/themes/toodark.yaml @@ -0,0 +1,49 @@ +name: "TooDark" +source: + marketplace_id: "blankrsd.toodark" + version: "0.0.2" + installs: 796 + author: "Raj Shekhar" + repo: "https://github.com/blankRSD/TooDark" + url: "https://marketplace.visualstudio.com/items?itemName=blankrsd.toodark" +colors: + bg: "#121416" + fg: "#C8C8C8" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 72.6 + black: 0 + red: 42.4 + green: 62.6 + yellow: 70.9 + blue: 55 + magenta: 45.4 + cyan: 54.9 + white: 83.3 + brightBlack: 35.8 + brightRed: 38.7 + brightGreen: 62.6 + brightYellow: 70.9 + brightBlue: 41.8 + brightMagenta: 13 + brightCyan: 54.9 + brightWhite: 83.3 diff --git a/themes/topic-the-leader.yaml b/themes/topic-the-leader.yaml new file mode 100644 index 00000000..12a767b0 --- /dev/null +++ b/themes/topic-the-leader.yaml @@ -0,0 +1,49 @@ +name: "Topic: The leader" +source: + marketplace_id: "J27dev.jhonat2709" + version: "1.0.0" + installs: 7 + author: "J27.dev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=J27dev.jhonat2709" +colors: + bg: "#000000" + fg: "#FFFB00" + black: "#BC2323" + red: "#CD3131" + green: "#FF3A43" + yellow: "#FF0000" + blue: "#FF0000" + magenta: "#BC3FBC" + cyan: "#20FF00" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#2CFF0E" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 100.8 + black: 22.7 + red: 27.7 + green: 40.5 + yellow: 37.5 + blue: 37.5 + magenta: 30.8 + cyan: 86.6 + white: 91 + brightBlack: 23 + brightRed: 86.7 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/tora.yaml b/themes/tora.yaml new file mode 100644 index 00000000..4abff797 --- /dev/null +++ b/themes/tora.yaml @@ -0,0 +1,49 @@ +name: "Tora" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2036 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" +colors: + bg: "#0D0B08" + fg: "#E6D7C3" + black: "#2A1E0F" + red: "#D2691E" + green: "#228B22" + yellow: "#FFA500" + blue: "#4682B4" + magenta: "#9932CC" + cyan: "#2E8B57" + white: "#E6D7C3" + brightBlack: "#6B5D4F" + brightRed: "#FF6347" + brightGreen: "#32CD32" + brightYellow: "#FFD700" + brightBlue: "#87CEEB" + brightMagenta: "#DA70D6" + brightCyan: "#20B2AA" + brightWhite: "#F4E4C1" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 83.3 + black: 0 + red: 38.1 + green: 31.5 + yellow: 64.5 + blue: 33.4 + magenta: 24.2 + cyan: 32.5 + white: 83.3 + brightBlack: 20.1 + brightRed: 46.6 + brightGreen: 61.2 + brightYellow: 84.1 + brightBlue: 71 + brightMagenta: 46.9 + brightCyan: 51.1 + brightWhite: 91 diff --git a/themes/torque.yaml b/themes/torque.yaml new file mode 100644 index 00000000..6116cded --- /dev/null +++ b/themes/torque.yaml @@ -0,0 +1,49 @@ +name: "torque" +source: + marketplace_id: "IktisadRashid.torque-dark-theme" + version: "0.0.3" + installs: 352 + author: "iktisad rashid" + repo: "https://github.com/Iktisad/torque-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=IktisadRashid.torque-dark-theme" +colors: + bg: "#10161B" + fg: "#FFFFFF" + black: "#383838" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 244 + contrast: + fg: 107 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.2 diff --git a/themes/torte-vim.yaml b/themes/torte-vim.yaml new file mode 100644 index 00000000..29dc830e --- /dev/null +++ b/themes/torte-vim.yaml @@ -0,0 +1,49 @@ +name: "Torte Vim" +source: + marketplace_id: "GabrielVillalonga.torte-theme" + version: "0.0.2" + installs: 792 + author: "GabrielVillalonga" + repo: "https://github.com/gabivlj/torte" + url: "https://marketplace.visualstudio.com/items?itemName=GabrielVillalonga.torte-theme" +colors: + bg: "#000000" + fg: "#C9C9C9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 73.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/total-black-theme.yaml b/themes/total-black-theme.yaml new file mode 100644 index 00000000..81e47722 --- /dev/null +++ b/themes/total-black-theme.yaml @@ -0,0 +1,49 @@ +name: "total-black-theme" +source: + marketplace_id: "Jotatajo22.black-total" + version: "0.0.1" + installs: 45 + author: "Jotatajo22" + repo: "https://github.com/JoaoPedro-cody/black-total" + url: "https://marketplace.visualstudio.com/items?itemName=Jotatajo22.black-total" +colors: + bg: "#000000" + fg: "#E6E6EA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#6F6F6F" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 27 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/total-lunar-eclipse.yaml b/themes/total-lunar-eclipse.yaml new file mode 100644 index 00000000..83ae6386 --- /dev/null +++ b/themes/total-lunar-eclipse.yaml @@ -0,0 +1,49 @@ +name: "Total Lunar Eclipse" +source: + marketplace_id: "ginfuru.lunar-eclipse" + version: "0.1.4" + installs: 10309 + author: "Ed Heltzel" + repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" +colors: + bg: "#111418" + fg: "#AEB2B2" + black: "#63828A" + red: "#FF0046" + green: "#2DAE58" + yellow: "#CF9C00" + blue: "#09A1ED" + magenta: "#EA00D9" + cyan: "#AF79FE" + white: "#DDE4F1" + brightBlack: "#303742" + brightRed: "#FF2E87" + brightGreen: "#25DA6A" + brightYellow: "#FFC104" + brightBlue: "#41B9FF" + brightMagenta: "#C75AF3" + brightCyan: "#16DAD6" + brightWhite: "#E3EEFE" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 59.5 + black: 32.6 + red: 37.2 + green: 46.6 + yellow: 52.5 + blue: 47 + magenta: 38 + cyan: 44.6 + white: 89.4 + brightBlack: 0 + brightRed: 40.2 + brightGreen: 67.5 + brightYellow: 74.4 + brightBlue: 58.9 + brightMagenta: 40.3 + brightCyan: 70.9 + brightWhite: 95.4 diff --git a/themes/totow-s-th-me.yaml b/themes/totow-s-th-me.yaml new file mode 100644 index 00000000..f94572e0 --- /dev/null +++ b/themes/totow-s-th-me.yaml @@ -0,0 +1,49 @@ +name: "Totow's Thème" +source: + marketplace_id: "Totow.Totow-s-Theme" + version: "1.0.3" + installs: 288 + author: "Totow" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Totow.Totow-s-Theme" +colors: + bg: "#222222" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.1 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 88.6 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/toxic-color-theme.yaml b/themes/toxic-color-theme.yaml new file mode 100644 index 00000000..0bc30b2f --- /dev/null +++ b/themes/toxic-color-theme.yaml @@ -0,0 +1,49 @@ +name: "toxic-color-theme" +source: + marketplace_id: "wavebeem.toxic-vscode" + version: "0.3.1" + installs: 408 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/toxic-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.toxic-vscode" +colors: + bg: "#251F47" + fg: "#D4CCFF" + black: "#4E3D7D" + red: "#FF6882" + green: "#83D411" + yellow: "#F29324" + blue: "#6DA8FF" + magenta: "#FF75F1" + cyan: "#00CBC0" + white: "#F7F1FF" + brightBlack: "#4E3D7D" + brightRed: "#FF6882" + brightGreen: "#83D411" + brightYellow: "#F29324" + brightBlue: "#6DA8FF" + brightMagenta: "#FF75F1" + brightCyan: "#00CBC0" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "pink" + hue: 287 + contrast: + fg: 76.3 + black: 8.4 + red: 46.1 + green: 65.3 + yellow: 53.4 + blue: 51.7 + magenta: 54.1 + cyan: 60.4 + white: 97.2 + brightBlack: 8.4 + brightRed: 46.1 + brightGreen: 65.3 + brightYellow: 53.4 + brightBlue: 51.7 + brightMagenta: 54.1 + brightCyan: 60.4 + brightWhite: 97.2 diff --git a/themes/toxic-waste.yaml b/themes/toxic-waste.yaml new file mode 100644 index 00000000..bce64897 --- /dev/null +++ b/themes/toxic-waste.yaml @@ -0,0 +1,49 @@ +name: "Toxic Waste" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 358 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" +colors: + bg: "#0A1A0A" + fg: "#80FF80" + black: "#000000" + red: "#FF4040" + green: "#00FF00" + yellow: "#FFFF40" + blue: "#4040FF" + magenta: "#FF40FF" + cyan: "#40FFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF4040" + brightGreen: "#00FF00" + brightYellow: "#FFFF40" + brightBlue: "#4040FF" + brightMagenta: "#FF40FF" + brightCyan: "#40FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 144 + contrast: + fg: 89.8 + black: 0 + red: 40.1 + green: 85.5 + yellow: 101.9 + blue: 21.2 + magenta: 48.1 + cyan: 91.8 + white: 106.9 + brightBlack: 0 + brightRed: 40.1 + brightGreen: 85.5 + brightYellow: 101.9 + brightBlue: 21.2 + brightMagenta: 48.1 + brightCyan: 91.8 + brightWhite: 106.9 diff --git a/themes/toy-chest.yaml b/themes/toy-chest.yaml new file mode 100644 index 00000000..1a3203d1 --- /dev/null +++ b/themes/toy-chest.yaml @@ -0,0 +1,49 @@ +name: "Toy Chest" +source: + marketplace_id: "cloudMACHINES.toy-chest-theme" + version: "0.1.1" + installs: 164 + author: "cloudMACHINES" + repo: "https://github.com/fakebizprez/toy-chest-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cloudMACHINES.toy-chest-theme" +colors: + bg: "#23364A" + fg: "#30CF7B" + black: "#2C3F57" + red: "#BE2D26" + green: "#199171" + yellow: "#DA8E26" + blue: "#325D96" + magenta: "#8A5DDB" + cyan: "#35A08F" + white: "#23D082" + brightBlack: "#326889" + brightRed: "#DD5943" + brightGreen: "#30CF7B" + brightYellow: "#E7D74B" + brightBlue: "#33A5D9" + brightMagenta: "#AD6BDC" + brightCyan: "#41C3AD" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "magenta" + hue: 251 + contrast: + fg: 57 + black: 0 + red: 17.7 + green: 29 + yellow: 44 + blue: 12.8 + magenta: 24.5 + cyan: 36.6 + white: 57.5 + brightBlack: 15.5 + brightRed: 31 + brightGreen: 57 + brightYellow: 74.5 + brightBlue: 42.2 + brightMagenta: 32.6 + brightCyan: 53.3 + brightWhite: 74.2 diff --git a/themes/tranquillity-theme.yaml b/themes/tranquillity-theme.yaml new file mode 100644 index 00000000..aeb5db0e --- /dev/null +++ b/themes/tranquillity-theme.yaml @@ -0,0 +1,49 @@ +name: "Tranquillity-theme" +source: + marketplace_id: "OmerFarukGungor.tranquillity-code" + version: "0.0.3" + installs: 179 + author: "Omer Faruk Gungor" + repo: "https://github.com/o-fgungor/tranquility-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=OmerFarukGungor.tranquillity-code" +colors: + bg: "#1F2125" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 58.1 + black: 7.6 + red: 35.5 + green: 59.1 + yellow: 47.3 + blue: 48.4 + magenta: 37.8 + cyan: 51.3 + white: 81.8 + brightBlack: 14.2 + brightRed: 44.8 + brightGreen: 75.5 + brightYellow: 60 + brightBlue: 62.5 + brightMagenta: 49 + brightCyan: 66.6 + brightWhite: 89.4 diff --git a/themes/trans-pride-light-naomi.yaml b/themes/trans-pride-light-naomi.yaml new file mode 100644 index 00000000..55ff51eb --- /dev/null +++ b/themes/trans-pride-light-naomi.yaml @@ -0,0 +1,49 @@ +name: "Trans Pride Light (Naomi)" +source: + marketplace_id: "nhcarrigan.naomis-themes" + version: "2.3.0" + installs: 68 + author: "NHCarrigan" + repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" +colors: + bg: "#E6F6FF" + fg: "#DB7093" + black: "#E6F6FF" + red: "#FF4F7A" + green: "#C75B7C" + yellow: "#FF96B5" + blue: "#DB7093" + magenta: "#C96385" + cyan: "#FF85A2" + white: "#2A0A18" + brightBlack: "#E6F6FF" + brightRed: "#FF2F66" + brightGreen: "#D87093" + brightYellow: "#FFB6C1" + brightBlue: "#E35A8F" + brightMagenta: "#D45A88" + brightCyan: "#FF9AAC" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 50.8 + black: 0 + red: 50.6 + green: 60.1 + yellow: 32.6 + blue: 50.8 + magenta: 57.7 + cyan: 38 + white: 97.7 + brightBlack: 0 + brightRed: 54.7 + brightGreen: 51.3 + brightYellow: 21.8 + brightBlue: 54.1 + brightMagenta: 57.4 + brightCyan: 31.7 + brightWhite: 99.1 diff --git a/themes/transylvania.yaml b/themes/transylvania.yaml new file mode 100644 index 00000000..b91209a6 --- /dev/null +++ b/themes/transylvania.yaml @@ -0,0 +1,49 @@ +name: "Transylvania" +source: + marketplace_id: "matheusps.transylvania" + version: "1.5.2" + installs: 3645 + author: "matheusps" + repo: "https://github.com/matheusps/transylvania" + url: "https://marketplace.visualstudio.com/items?itemName=matheusps.transylvania" +colors: + bg: "#22212C" + fg: "#F5F5F0" + black: "#22212C" + red: "#FA7F7F" + green: "#8AFD80" + yellow: "#FFFF81" + blue: "#B382D9" + magenta: "#FF82C3" + cyan: "#82FFEC" + white: "#F5F5F0" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#2CDA9D" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#F786AA" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 289 + contrast: + fg: 98.6 + black: 0 + red: 51 + green: 87.9 + yellow: 101.3 + blue: 43.4 + magenta: 55.3 + cyan: 92 + white: 98.6 + brightBlack: 26.6 + brightRed: 47.4 + brightGreen: 67.1 + brightYellow: 102.1 + brightBlue: 64.7 + brightMagenta: 53.7 + brightCyan: 95.3 + brightWhite: 105.4 diff --git a/themes/triad-dragon.yaml b/themes/triad-dragon.yaml new file mode 100644 index 00000000..92f738a8 --- /dev/null +++ b/themes/triad-dragon.yaml @@ -0,0 +1,49 @@ +name: "Triad Dragon" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#1A0A0A" + fg: "#F5F5DC" + black: "#000000" + red: "#DC143C" + green: "#006400" + yellow: "#FFD700" + blue: "#191970" + magenta: "#8B008B" + cyan: "#008B8B" + white: "#F5F5DC" + brightBlack: "#000000" + brightRed: "#DC143C" + brightGreen: "#006400" + brightYellow: "#FFD700" + brightBlue: "#191970" + brightMagenta: "#8B008B" + brightCyan: "#008B8B" + brightWhite: "#F5F5DC" +meta: + mode: "dark" + accent: "orange" + hue: 20 + contrast: + fg: 99.8 + black: 0 + red: 29.1 + green: 16.5 + yellow: 83.8 + blue: 0 + magenta: 14.7 + cyan: 33.3 + white: 99.8 + brightBlack: 0 + brightRed: 29.1 + brightGreen: 16.5 + brightYellow: 83.8 + brightBlue: 0 + brightMagenta: 14.7 + brightCyan: 33.3 + brightWhite: 99.8 diff --git a/themes/tribal-contrast.yaml b/themes/tribal-contrast.yaml new file mode 100644 index 00000000..db26f9af --- /dev/null +++ b/themes/tribal-contrast.yaml @@ -0,0 +1,49 @@ +name: "tribal-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#19191D" + fg: "#FFFFFF" + black: "#25252B" + red: "#BA0E2E" + green: "#C43535" + yellow: "#5F5582" + blue: "#E0DDEB" + magenta: "#5F5582" + cyan: "#8F8AA2" + white: "#FFFFFF" + brightBlack: "#484854" + brightRed: "#F03E5F" + brightGreen: "#DD8282" + brightYellow: "#938AB3" + brightBlue: "#FFFFFF" + brightMagenta: "#938AB3" + brightCyan: "#C5C3CF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 106.6 + black: 0 + red: 20.2 + green: 25 + yellow: 17.4 + blue: 85.8 + magenta: 17.4 + cyan: 39.8 + white: 106.6 + brightBlack: 10.3 + brightRed: 36.5 + brightGreen: 47.5 + brightYellow: 41.1 + brightBlue: 106.6 + brightMagenta: 41.1 + brightCyan: 69.9 + brightWhite: 106.6 diff --git a/themes/tribal-light.yaml b/themes/tribal-light.yaml new file mode 100644 index 00000000..24c6b863 --- /dev/null +++ b/themes/tribal-light.yaml @@ -0,0 +1,49 @@ +name: "tribal-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#C43535" + yellow: "#5F5582" + blue: "#A09CAF" + magenta: "#5F5582" + cyan: "#8F8AA2" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DD8282" + brightYellow: "#938AB3" + brightBlue: "#D6D4DD" + brightMagenta: "#938AB3" + brightCyan: "#C5C3CF" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 75.5 + yellow: 83.3 + blue: 51.9 + magenta: 83.3 + cyan: 60.6 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 53.1 + brightYellow: 59.4 + brightBlue: 22.1 + brightMagenta: 59.4 + brightCyan: 31.6 + brightWhite: 71.1 diff --git a/themes/tribal.yaml b/themes/tribal.yaml new file mode 100644 index 00000000..97851d98 --- /dev/null +++ b/themes/tribal.yaml @@ -0,0 +1,49 @@ +name: "tribal" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#393942" + fg: "#FFFFFF" + black: "#454550" + red: "#BA0E2E" + green: "#C43535" + yellow: "#5F5582" + blue: "#E0DDEB" + magenta: "#5F5582" + cyan: "#8F8AA2" + white: "#FFFFFF" + brightBlack: "#686879" + brightRed: "#F03E5F" + brightGreen: "#DD8282" + brightYellow: "#938AB3" + brightBlue: "#FFFFFF" + brightMagenta: "#938AB3" + brightCyan: "#C5C3CF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 286 + contrast: + fg: 100.1 + black: 0 + red: 13.7 + green: 18.4 + yellow: 10.9 + blue: 79.3 + magenta: 10.9 + cyan: 33.3 + white: 100.1 + brightBlack: 16.7 + brightRed: 30 + brightGreen: 40.9 + brightYellow: 34.5 + brightBlue: 100.1 + brightMagenta: 34.5 + brightCyan: 63.3 + brightWhite: 100.1 diff --git a/themes/trioptimized.yaml b/themes/trioptimized.yaml new file mode 100644 index 00000000..babdaa4d --- /dev/null +++ b/themes/trioptimized.yaml @@ -0,0 +1,49 @@ +name: "TriOptimized" +source: + marketplace_id: "NuttshellMan.trioptimized-vs-code-theme" + version: "0.2.5" + installs: 38 + author: "Nuttshell_Man" + repo: "https://github.com/NuttshellDevelopment/trioptimized-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NuttshellMan.trioptimized-vs-code-theme" +colors: + bg: "#141414" + fg: "#CCCCCC" + black: "#515961" + red: "#EB4758" + green: "#37D25B" + yellow: "#FFEA7F" + blue: "#248AFF" + magenta: "#A075F0" + cyan: "#39C5CF" + white: "#D5D8DD" + brightBlack: "#959DA5" + brightRed: "#FB606F" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#61ABFF" + brightMagenta: "#A075F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 74.9 + black: 16.6 + red: 36.9 + green: 63.6 + yellow: 93 + blue: 40 + magenta: 40.5 + cyan: 61.1 + white: 82 + brightBlack: 48 + brightRed: 45.3 + brightGreen: 79.4 + brightYellow: 93 + brightBlue: 54.4 + brightMagenta: 40.5 + brightCyan: 69.7 + brightWhite: 104.4 diff --git a/themes/tristan.yaml b/themes/tristan.yaml new file mode 100644 index 00000000..9e908ef2 --- /dev/null +++ b/themes/tristan.yaml @@ -0,0 +1,49 @@ +name: "Tristan" +source: + marketplace_id: "TristanTheme.tristan" + version: "1.0.0" + installs: 224 + author: "Tristan Theme" + repo: "https://github.com/tristanHdez18/Tristan-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=TristanTheme.tristan" +colors: + bg: "#1C1C1D" + fg: "#3A86FF" + black: "#000000" + red: "#EE6055" + green: "#ADF7B6" + yellow: "#FFE66D" + blue: "#21597D" + magenta: "#F15BB5" + cyan: "#00F5D4" + white: "#F7FFF7" + brightBlack: "#5A5252" + brightRed: "#FF9B85" + brightGreen: "#ADF7B6" + brightYellow: "#FEE440" + brightBlue: "#38A3A5" + brightMagenta: "#F15BB5" + brightCyan: "#00F5D4" + brightWhite: "#887979" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 38.2 + black: 0 + red: 41 + green: 89.9 + yellow: 90 + blue: 14.6 + magenta: 43.8 + cyan: 83.4 + white: 104.8 + brightBlack: 14.1 + brightRed: 61.2 + brightGreen: 89.9 + brightYellow: 88.5 + brightBlue: 43.5 + brightMagenta: 43.8 + brightCyan: 83.4 + brightWhite: 31.5 diff --git a/themes/triumph-v2.yaml b/themes/triumph-v2.yaml new file mode 100644 index 00000000..12f62632 --- /dev/null +++ b/themes/triumph-v2.yaml @@ -0,0 +1,49 @@ +name: "Triumph v2" +source: + marketplace_id: "bushenzie.triumph" + version: "2.0.2" + installs: 230 + author: "Bushenzie" + repo: "https://i.postimg.cc/dtWztrg2/logo.png" + url: "https://marketplace.visualstudio.com/items?itemName=bushenzie.triumph" +colors: + bg: "#16181E" + fg: "#F8F5F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 100.4 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/triumph.yaml b/themes/triumph.yaml new file mode 100644 index 00000000..822958f0 --- /dev/null +++ b/themes/triumph.yaml @@ -0,0 +1,49 @@ +name: "Triumph" +source: + marketplace_id: "bushenzie.triumph" + version: "2.0.2" + installs: 230 + author: "Bushenzie" + repo: "https://i.postimg.cc/dtWztrg2/logo.png" + url: "https://marketplace.visualstudio.com/items?itemName=bushenzie.triumph" +colors: + bg: "#181825" + fg: "#F8F5F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 284 + contrast: + fg: 100.3 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.1 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/tron-ares.yaml b/themes/tron-ares.yaml new file mode 100644 index 00000000..d48259fe --- /dev/null +++ b/themes/tron-ares.yaml @@ -0,0 +1,49 @@ +name: "Tron-Ares" +source: + marketplace_id: "AdibKhondoker.tron-ares-theme" + version: "0.1.5" + installs: 364 + author: "Adib Khondoker" + repo: "https://github.com/adib82302/tron-ares-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AdibKhondoker.tron-ares-theme" +colors: + bg: "#0C0C0C" + fg: "#A90000" + black: "#003300" + red: "#B40000" + green: "#E60000" + yellow: "#CCCC00" + blue: "#003FFF" + magenta: "#880088" + cyan: "#008888" + white: "#DE0303" + brightBlack: "#006600" + brightRed: "#B40000" + brightGreen: "#FF4800" + brightYellow: "#888800" + brightBlue: "#003FFF" + brightMagenta: "#880088" + brightCyan: "#008888" + brightWhite: "#DDFFDD" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 17.3 + black: 0 + red: 19.7 + green: 31.1 + yellow: 71.7 + blue: 20.5 + magenta: 14.2 + cyan: 32.2 + white: 29.2 + brightBlack: 17.3 + brightRed: 19.7 + brightGreen: 41.6 + brightYellow: 36.4 + brightBlue: 20.5 + brightMagenta: 14.2 + brightCyan: 32.2 + brightWhite: 101.7 diff --git a/themes/tron-contrast.yaml b/themes/tron-contrast.yaml new file mode 100644 index 00000000..7ee2817a --- /dev/null +++ b/themes/tron-contrast.yaml @@ -0,0 +1,49 @@ +name: "tron-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#07090B" + fg: "#AEC2E0" + black: "#11161B" + red: "#BA0E2E" + green: "#267FB5" + yellow: "#FFFFFF" + blue: "#FFFFFF" + magenta: "#748AA6" + cyan: "#267FB5" + white: "#C0D0E7" + brightBlack: "#2F3C49" + brightRed: "#F03E5F" + brightGreen: "#63B0DE" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#B2BECE" + brightCyan: "#63B0DE" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 68.8 + black: 0 + red: 21.4 + green: 31.5 + yellow: 107.8 + blue: 107.8 + magenta: 38.6 + cyan: 31.5 + white: 77.1 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 55.1 + brightYellow: 107.8 + brightBlue: 107.8 + brightMagenta: 66.7 + brightCyan: 55.1 + brightWhite: 104.3 diff --git a/themes/tron-light.yaml b/themes/tron-light.yaml new file mode 100644 index 00000000..c25c08b3 --- /dev/null +++ b/themes/tron-light.yaml @@ -0,0 +1,49 @@ +name: "tron-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#D7E5ED" + fg: "#222222" + black: "#E9F0F5" + red: "#BA0E2E" + green: "#267FB5" + yellow: "#89BDDD" + blue: "#FFFFFF" + magenta: "#748AA6" + cyan: "#267FB5" + white: "#2F2F2F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#63B0DE" + brightYellow: "#D8E9F4" + brightBlue: "#FFFFFF" + brightMagenta: "#B2BECE" + brightCyan: "#63B0DE" + brightWhite: "#555555" +meta: + mode: "light" + accent: "orange" + hue: 233 + contrast: + fg: 86.2 + black: 0 + red: 63.7 + green: 53.4 + yellow: 22.5 + blue: 16.4 + magenta: 46.3 + cyan: 53.4 + white: 83.2 + brightBlack: 16.4 + brightRed: 47.2 + brightGreen: 30.2 + brightYellow: 0 + brightBlue: 16.4 + brightMagenta: 19.1 + brightCyan: 30.2 + brightWhite: 69.3 diff --git a/themes/tron.yaml b/themes/tron.yaml new file mode 100644 index 00000000..e03148b8 --- /dev/null +++ b/themes/tron.yaml @@ -0,0 +1,49 @@ +name: "tron" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#14191F" + fg: "#AEC2E0" + black: "#1E262E" + red: "#BA0E2E" + green: "#267FB5" + yellow: "#FFFFFF" + blue: "#FFFFFF" + magenta: "#748AA6" + cyan: "#267FB5" + white: "#C0D0E7" + brightBlack: "#3C4B5D" + brightRed: "#F03E5F" + brightGreen: "#63B0DE" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#B2BECE" + brightCyan: "#63B0DE" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "orange" + hue: 253 + contrast: + fg: 67.7 + black: 0 + red: 20.3 + green: 30.4 + yellow: 106.7 + blue: 106.7 + magenta: 37.5 + cyan: 30.4 + white: 76 + brightBlack: 10.7 + brightRed: 36.6 + brightGreen: 54 + brightYellow: 106.7 + brightBlue: 106.7 + brightMagenta: 65.6 + brightCyan: 54 + brightWhite: 103.2 diff --git a/themes/trsm-night-eyes.yaml b/themes/trsm-night-eyes.yaml new file mode 100644 index 00000000..a527bcdc --- /dev/null +++ b/themes/trsm-night-eyes.yaml @@ -0,0 +1,49 @@ +name: "trsm-night-eyes" +source: + marketplace_id: "Trsm.trsm-night-eyes" + version: "0.0.4" + installs: 43 + author: "Tiago Machado" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Trsm.trsm-night-eyes" +colors: + bg: "#1B2124" + fg: "#DBC79B" + black: "#000000" + red: "#C41F1F" + green: "#5CB45C" + yellow: "#AFAF35" + blue: "#2222B6" + magenta: "#B93FB9" + cyan: "#23CECE" + white: "#D8D3D3" + brightBlack: "#000000" + brightRed: "#C41F1F" + brightGreen: "#5CB45C" + brightYellow: "#AFAF35" + brightBlue: "#2222B6" + brightMagenta: "#B93FB9" + brightCyan: "#23CECE" + brightWhite: "#D8D3D3" +meta: + mode: "dark" + accent: "purple" + hue: 229 + contrast: + fg: 71.7 + black: 0 + red: 22.1 + green: 49.6 + yellow: 54.1 + blue: 0 + magenta: 27.9 + cyan: 63.5 + white: 78.4 + brightBlack: 0 + brightRed: 22.1 + brightGreen: 49.6 + brightYellow: 54.1 + brightBlue: 0 + brightMagenta: 27.9 + brightCyan: 63.5 + brightWhite: 78.4 diff --git a/themes/true-dark.yaml b/themes/true-dark.yaml new file mode 100644 index 00000000..f5b2a18c --- /dev/null +++ b/themes/true-dark.yaml @@ -0,0 +1,49 @@ +name: "True Dark" +source: + marketplace_id: "Jaron.true-dark" + version: "1.0.3" + installs: 3329 + author: "Jaron" + repo: "https://github.com/jaronpate/true-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Jaron.true-dark" +colors: + bg: "#141414" + fg: "#D6DEEB" + black: "#111111" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ADDB67" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 85.5 + black: 0 + red: 39.6 + green: 67.5 + yellow: 75.2 + blue: 56.2 + magenta: 54 + cyan: 60 + white: 107.1 + brightBlack: 15.9 + brightRed: 39.6 + brightGreen: 67.5 + brightYellow: 94 + brightBlue: 56.2 + brightMagenta: 54 + brightCyan: 74.3 + brightWhite: 107.1 diff --git a/themes/trueamber.yaml b/themes/trueamber.yaml new file mode 100644 index 00000000..5f26a305 --- /dev/null +++ b/themes/trueamber.yaml @@ -0,0 +1,49 @@ +name: "trueAmber" +source: + marketplace_id: "headintheclout.trueamber" + version: "1.0.9" + installs: 2797 + author: "headintheclout" + repo: "https://github.com/headintheclout/trueAmber" + url: "https://marketplace.visualstudio.com/items?itemName=headintheclout.trueamber" +colors: + bg: "#220C00" + fg: "#FFAC00" + black: "#868686" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#ABABAB" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 55 + contrast: + fg: 66.5 + black: 36.9 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30.1 + cyan: 47.9 + white: 90.3 + brightBlack: 56.1 + brightRed: 38.9 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/tsuki.yaml b/themes/tsuki.yaml new file mode 100644 index 00000000..bfcd591d --- /dev/null +++ b/themes/tsuki.yaml @@ -0,0 +1,49 @@ +name: "Tsuki" +source: + marketplace_id: "re1san.tsuki" + version: "1.0.0" + installs: 2173 + author: "Aniketto" + repo: "https://github.com/re1san/Tsuki" + url: "https://marketplace.visualstudio.com/items?itemName=re1san.tsuki" +colors: + bg: "#151515" + fg: "#DFDDDD" + black: "#1B1B1B" + red: "#C14D53" + green: "#56966E" + yellow: "#DC8C61" + blue: "#6E95BD" + magenta: "#A56DB1" + cyan: "#6A9F98" + white: "#B7B7B7" + brightBlack: "#272727" + brightRed: "#DA4B52" + brightGreen: "#57A274" + brightYellow: "#E1956C" + brightBlue: "#6FADEA" + brightMagenta: "#D466E9" + brightCyan: "#63B4B5" + brightWhite: "#C7C7C7" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 85.5 + black: 0 + red: 28.8 + green: 38.3 + yellow: 49.9 + blue: 42.6 + magenta: 34.8 + cyan: 44.5 + white: 62.6 + brightBlack: 0 + brightRed: 33.6 + brightGreen: 43.4 + brightYellow: 53.9 + brightBlue: 54.5 + brightMagenta: 44.1 + brightCyan: 53.9 + brightWhite: 71.9 diff --git a/themes/tsukiroku-dark.yaml b/themes/tsukiroku-dark.yaml new file mode 100644 index 00000000..b1113662 --- /dev/null +++ b/themes/tsukiroku-dark.yaml @@ -0,0 +1,49 @@ +name: "tsukiroku dark" +source: + marketplace_id: "tsukiroku.tsukiroku" + version: "2.0.2" + installs: 72 + author: "tsukiroku" + repo: "https://github.com/tsukiroku/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tsukiroku.tsukiroku" +colors: + bg: "#0F0F0F" + fg: "#A2AABC" + black: "#252525" + red: "#EF6B73" + green: "#BAE67E" + yellow: "#DADADA" + blue: "#BAC7FB" + magenta: "#C3A6FF" + cyan: "#BAC7FB" + white: "#A2AABC" + brightBlack: "#353535" + brightRed: "#F7757D" + brightGreen: "#D1FF54" + brightYellow: "#ECFFA8" + brightBlue: "#94AAFF" + brightMagenta: "#F889F3" + brightCyan: "#91E9FF" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 55.7 + black: 0 + red: 45.5 + green: 82.5 + yellow: 83.8 + blue: 73.4 + magenta: 61.9 + cyan: 73.4 + white: 55.7 + brightBlack: 0 + brightRed: 49.8 + brightGreen: 96.7 + brightYellow: 101.6 + brightBlue: 58.1 + brightMagenta: 60.5 + brightCyan: 85.1 + brightWhite: 91.3 diff --git a/themes/tsukuyomi-light.yaml b/themes/tsukuyomi-light.yaml new file mode 100644 index 00000000..61de0ea0 --- /dev/null +++ b/themes/tsukuyomi-light.yaml @@ -0,0 +1,49 @@ +name: "Tsukuyomi (Light)" +source: + marketplace_id: "developerayo.Tsukuyomi" + version: "1.2.7" + installs: 12459 + author: "Shodipo Ayomide" + repo: "https://github.com/Developerayo/tsukuyomi-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=developerayo.Tsukuyomi" +colors: + bg: "#F5F5F0" + fg: "#383A42" + black: "#383A42" + red: "#E45649" + green: "#4E8F35" + yellow: "#986801" + blue: "#0B76D4" + magenta: "#8954A8" + cyan: "#0184BC" + white: "#383A42" + brightBlack: "#9D9D9D" + brightRed: "#E45649" + brightGreen: "#4E8F35" + brightYellow: "#986801" + brightBlue: "#0B76D4" + brightMagenta: "#8954A8" + brightCyan: "#0184BC" + brightWhite: "#383A42" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 90 + black: 90 + red: 57.2 + green: 60.6 + yellow: 67.3 + blue: 65.2 + magenta: 70.4 + cyan: 62 + white: 90 + brightBlack: 46.4 + brightRed: 57.2 + brightGreen: 60.6 + brightYellow: 67.3 + brightBlue: 65.2 + brightMagenta: 70.4 + brightCyan: 62 + brightWhite: 90 diff --git a/themes/tsukuyomi-no-italics.yaml b/themes/tsukuyomi-no-italics.yaml new file mode 100644 index 00000000..7da7e325 --- /dev/null +++ b/themes/tsukuyomi-no-italics.yaml @@ -0,0 +1,49 @@ +name: "Tsukuyomi (No Italics)" +source: + marketplace_id: "developerayo.Tsukuyomi" + version: "1.2.7" + installs: 12459 + author: "Shodipo Ayomide" + repo: "https://github.com/Developerayo/tsukuyomi-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=developerayo.Tsukuyomi" +colors: + bg: "#1A1E23" + fg: "#D4D9E4" + black: "#1A1F1A" + red: "#F07178" + green: "#BBD99E" + yellow: "#E5C07B" + blue: "#89DDFF" + magenta: "#BB80FF" + cyan: "#89DDFF" + white: "#D4D7D6" + brightBlack: "#5D6963" + brightRed: "#F07178" + brightGreen: "#BBD99E" + brightYellow: "#FFCC66" + brightBlue: "#7DCFFF" + brightMagenta: "#BB80FF" + brightCyan: "#7DCFFF" + brightWhite: "#D4D7D6" +meta: + mode: "dark" + accent: "magenta" + hue: 254 + contrast: + fg: 81.6 + black: 0 + red: 45.8 + green: 76 + yellow: 69.8 + blue: 77.5 + magenta: 47.2 + cyan: 77.5 + white: 80.1 + brightBlack: 21.3 + brightRed: 45.8 + brightGreen: 76 + brightYellow: 78.5 + brightBlue: 70.3 + brightMagenta: 47.2 + brightCyan: 70.3 + brightWhite: 80.1 diff --git a/themes/tsumiki-theme.yaml b/themes/tsumiki-theme.yaml new file mode 100644 index 00000000..9d612708 --- /dev/null +++ b/themes/tsumiki-theme.yaml @@ -0,0 +1,49 @@ +name: "Tsumiki Theme" +source: + marketplace_id: "ArivanHouten.tsumiki" + version: "0.0.1" + installs: 134 + author: "Ari van Houten" + repo: "https://github.com/Ari24-cb24/tsumiki-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ArivanHouten.tsumiki" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#B6B60B" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C9C9C9" + brightBlack: "#929292" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#ECEC39" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#DEDEDE" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 59.8 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 73.9 + brightBlack: 43.6 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 91 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 86.6 diff --git a/themes/ttheme.yaml b/themes/ttheme.yaml new file mode 100644 index 00000000..e66cf2d1 --- /dev/null +++ b/themes/ttheme.yaml @@ -0,0 +1,49 @@ +name: "tTheme" +source: + marketplace_id: "ThejasRP.ttheme" + version: "2.0.0" + installs: 250 + author: "Thejas" + repo: "https://github.com/ThejasRP/tTheme" + url: "https://marketplace.visualstudio.com/items?itemName=ThejasRP.ttheme" +colors: + bg: "#171717" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.5 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/tudoroxo.yaml b/themes/tudoroxo.yaml new file mode 100644 index 00000000..2ffaa621 --- /dev/null +++ b/themes/tudoroxo.yaml @@ -0,0 +1,49 @@ +name: "Tudoroxo" +source: + marketplace_id: "viniceosm.tudoroxo" + version: "0.3.0" + installs: 624 + author: "Vinicius Miiller" + repo: "https://github.com/viniceosm/tudoroxo" + url: "https://marketplace.visualstudio.com/items?itemName=viniceosm.tudoroxo" +colors: + bg: "#302A49" + fg: "#B2CCD6" + black: "#263238" + red: "#FA6981" + green: "#C3E88D" + yellow: "#FFCC00" + blue: "#82AAFF" + magenta: "#F77669" + cyan: "#7FCAC3" + white: "#B2CCD6" + brightBlack: "#65737E" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#FFCC00" + brightBlue: "#82AAFF" + brightMagenta: "#F77669" + brightCyan: "#7FCAC3" + brightWhite: "#B2CCD6" +meta: + mode: "dark" + accent: "red" + hue: 292 + contrast: + fg: 68.3 + black: 0 + red: 43.3 + green: 80.4 + yellow: 74.8 + blue: 52.1 + magenta: 45.1 + cyan: 62 + white: 68.3 + brightBlack: 23.1 + brightRed: 29.2 + brightGreen: 57.9 + brightYellow: 74.8 + brightBlue: 52.1 + brightMagenta: 45.1 + brightCyan: 62 + brightWhite: 68.3 diff --git a/themes/tundra-dusk.yaml b/themes/tundra-dusk.yaml new file mode 100644 index 00000000..84863c30 --- /dev/null +++ b/themes/tundra-dusk.yaml @@ -0,0 +1,49 @@ +name: "Tundra Dusk" +source: + marketplace_id: "exastone.exa-theme" + version: "1.0.9" + installs: 517 + author: "Andrew Stone" + repo: "https://github.com/exastone/exa-theme" + url: "https://marketplace.visualstudio.com/items?itemName=exastone.exa-theme" +colors: + bg: "#0C1426" + fg: "#D8DEE9" + black: "#000000" + red: "#FDB0BA" + green: "#25BA58" + yellow: "#F4CC67" + blue: "#68A9FF" + magenta: "#FE97E1" + cyan: "#0D9480" + white: "#D4CCB9" + brightBlack: "#A1A1A1" + brightRed: "#FD788B" + brightGreen: "#B3EBAB" + brightYellow: "#FFCA14" + brightBlue: "#8CDAFF" + brightMagenta: "#F970CD" + brightCyan: "#A5FFFA" + brightWhite: "#D8DEE9" +meta: + mode: "dark" + accent: "pink" + hue: 265 + contrast: + fg: 85.6 + black: 0 + red: 70.5 + green: 51.8 + yellow: 77.7 + blue: 53.9 + magenta: 64.2 + cyan: 36.1 + white: 75.1 + brightBlack: 50.6 + brightRed: 51.8 + brightGreen: 85 + brightYellow: 78 + brightBlue: 77.3 + brightMagenta: 51.8 + brightCyan: 96.8 + brightWhite: 85.6 diff --git a/themes/turbo-c-3-0-borland-style.yaml b/themes/turbo-c-3-0-borland-style.yaml new file mode 100644 index 00000000..bf58089d --- /dev/null +++ b/themes/turbo-c-3-0-borland-style.yaml @@ -0,0 +1,49 @@ +name: "Turbo C 3.0 Borland Style" +source: + marketplace_id: "WatkinsLabs.turboc-3-0-theme" + version: "0.0.1" + installs: 1306 + author: "Watkins Labs" + repo: "https://github.com/chris17453/vscode-turboc3.0-theme" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.turboc-3-0-theme" +colors: + bg: "#000058" + fg: "#00FF00" + black: "#000000" + red: "#800000" + green: "#008000" + yellow: "#808000" + blue: "#0000FF" + magenta: "#800080" + cyan: "#008080" + white: "#C0C0C0" + brightBlack: "#808080" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 84.7 + black: 0 + red: 7.8 + green: 25.3 + yellow: 31.1 + blue: 14.5 + magenta: 10.9 + cyan: 27.4 + white: 66.9 + brightBlack: 33 + brightRed: 35.8 + brightGreen: 84.7 + brightYellow: 100.9 + brightBlue: 14.5 + brightMagenta: 44.5 + brightCyan: 90.4 + brightWhite: 106.1 diff --git a/themes/turbo.yaml b/themes/turbo.yaml new file mode 100644 index 00000000..2a2b2b2d --- /dev/null +++ b/themes/turbo.yaml @@ -0,0 +1,49 @@ +name: "Turbo" +source: + marketplace_id: "kliucn.turbo" + version: "0.2.0" + installs: 3476 + author: "Kai Liu" + repo: "https://github.com/nebulabox/vscode_turbo_theme" + url: "https://marketplace.visualstudio.com/items?itemName=kliucn.turbo" +colors: + bg: "#000058" + fg: "#FFFF55" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 264 + contrast: + fg: 101.3 + black: 0 + red: 62.7 + green: 90.1 + yellow: 95 + blue: 80.6 + magenta: 74 + cyan: 95.2 + white: 73.9 + brightBlack: 0 + brightRed: 51 + brightGreen: 86.1 + brightYellow: 89.8 + brightBlue: 61.4 + brightMagenta: 49.5 + brightCyan: 93.1 + brightWhite: 106.1 diff --git a/themes/turnip-contrast.yaml b/themes/turnip-contrast.yaml new file mode 100644 index 00000000..8ea4bb31 --- /dev/null +++ b/themes/turnip-contrast.yaml @@ -0,0 +1,49 @@ +name: "turnip-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#080809" + fg: "#EDE0CE" + black: "#141416" + red: "#BA0E2E" + green: "#92B55F" + yellow: "#487D76" + blue: "#E8DA5E" + magenta: "#92B55F" + cyan: "#487D76" + white: "#F4ECE1" + brightBlack: "#38383F" + brightRed: "#F03E5F" + brightGreen: "#C1D5A5" + brightYellow: "#79B2AA" + brightBlue: "#F5EFB7" + brightMagenta: "#C1D5A5" + brightCyan: "#79B2AA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88.8 + black: 0 + red: 21.4 + green: 56 + yellow: 29.1 + blue: 82.5 + magenta: 56 + cyan: 29.1 + white: 96 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 76.7 + brightYellow: 54.8 + brightBlue: 96 + brightMagenta: 76.7 + brightCyan: 54.8 + brightWhite: 107.8 diff --git a/themes/turnip-light.yaml b/themes/turnip-light.yaml new file mode 100644 index 00000000..b9206050 --- /dev/null +++ b/themes/turnip-light.yaml @@ -0,0 +1,49 @@ +name: "turnip-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#92B55F" + yellow: "#487D76" + blue: "#E8DA5E" + magenta: "#92B55F" + cyan: "#487D76" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C1D5A5" + brightYellow: "#79B2AA" + brightBlue: "#F5EFB7" + brightMagenta: "#C1D5A5" + brightCyan: "#79B2AA" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 46 + yellow: 72.5 + blue: 20.8 + magenta: 46 + cyan: 72.5 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 26.2 + brightYellow: 47.2 + brightBlue: 8.2 + brightMagenta: 26.2 + brightCyan: 47.2 + brightWhite: 71.1 diff --git a/themes/turnip.yaml b/themes/turnip.yaml new file mode 100644 index 00000000..5e2af6f8 --- /dev/null +++ b/themes/turnip.yaml @@ -0,0 +1,49 @@ +name: "turnip" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#1A1B1D" + fg: "#EDE0CE" + black: "#26282A" + red: "#BA0E2E" + green: "#92B55F" + yellow: "#487D76" + blue: "#E8DA5E" + magenta: "#92B55F" + cyan: "#487D76" + white: "#F4ECE1" + brightBlack: "#4A4D53" + brightRed: "#F03E5F" + brightGreen: "#C1D5A5" + brightYellow: "#79B2AA" + brightBlue: "#F5EFB7" + brightMagenta: "#C1D5A5" + brightCyan: "#79B2AA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 87.5 + black: 0 + red: 20.1 + green: 54.7 + yellow: 27.7 + blue: 81.1 + magenta: 54.7 + cyan: 27.7 + white: 94.7 + brightBlack: 11.6 + brightRed: 36.3 + brightGreen: 75.4 + brightYellow: 53.4 + brightBlue: 94.6 + brightMagenta: 75.4 + brightCyan: 53.4 + brightWhite: 106.4 diff --git a/themes/turquesa-bege.yaml b/themes/turquesa-bege.yaml new file mode 100644 index 00000000..c7762fd0 --- /dev/null +++ b/themes/turquesa-bege.yaml @@ -0,0 +1,49 @@ +name: "Turquesa/bege" +source: + marketplace_id: "srtakennedy.turquesa" + version: "0.0.4" + installs: 222 + author: "srtakennedy" + repo: "https://github.com/SrtaKennedy" + url: "https://marketplace.visualstudio.com/items?itemName=srtakennedy.turquesa" +colors: + bg: "#282828" + fg: "#FFD700" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.8 + black: 0 + red: 24.3 + green: 50.6 + yellow: 83.2 + blue: 25 + magenta: 27.3 + cyan: 45.1 + white: 87.6 + brightBlack: 19.6 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.6 + brightMagenta: 42.9 + brightCyan: 53 + brightWhite: 87.6 diff --git a/themes/tutilabs-theme.yaml b/themes/tutilabs-theme.yaml new file mode 100644 index 00000000..95e3b0c8 --- /dev/null +++ b/themes/tutilabs-theme.yaml @@ -0,0 +1,49 @@ +name: "Tutilabs Theme" +source: + marketplace_id: "tutilabs.tutilabs" + version: "0.0.1" + installs: 34 + author: "tutilabs" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tutilabs.tutilabs" +colors: + bg: "#151626" + fg: "#BEC2EA" + black: "#665757" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D1AFAF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#BAADAD" +meta: + mode: "dark" + accent: "pink" + hue: 281 + contrast: + fg: 70.1 + black: 17.2 + red: 26.7 + green: 52.9 + yellow: 85.6 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 62.4 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 58.4 diff --git a/themes/tw40-gigi.yaml b/themes/tw40-gigi.yaml new file mode 100644 index 00000000..0d16a72d --- /dev/null +++ b/themes/tw40-gigi.yaml @@ -0,0 +1,49 @@ +name: "TW40 - Gigi" +source: + marketplace_id: "chrsolr.rose-pine-nvchad-theme" + version: "0.0.3" + installs: 6735 + author: "Christian Soler" + repo: "https://github.com/chrsolr/rose-pine-nvchad-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=chrsolr.rose-pine-nvchad-theme" +colors: + bg: "#191825" + fg: "#777777" + black: "#333333" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EEEEEE" + brightBlack: "#555555" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 288 + contrast: + fg: 29.3 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 95.5 + brightBlack: 14.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 106.6 diff --git a/themes/tweed-contrast.yaml b/themes/tweed-contrast.yaml new file mode 100644 index 00000000..45ed81a3 --- /dev/null +++ b/themes/tweed-contrast.yaml @@ -0,0 +1,49 @@ +name: "tweed-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#1E2026" + fg: "#FFFFFF" + black: "#292C34" + red: "#BA0E2E" + green: "#777F93" + yellow: "#5E9989" + blue: "#CAB696" + magenta: "#E2975F" + cyan: "#E75B4B" + white: "#FFFFFF" + brightBlack: "#4B505F" + brightRed: "#F03E5F" + brightGreen: "#B0B4C0" + brightYellow: "#9BC2B7" + brightBlue: "#ECE5DA" + brightMagenta: "#F2CFB5" + brightCyan: "#F3ADA5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 271 + contrast: + fg: 105.7 + black: 0 + red: 19.4 + green: 32.1 + yellow: 39.5 + blue: 62.2 + magenta: 53.2 + cyan: 37.8 + white: 105.7 + brightBlack: 12.1 + brightRed: 35.7 + brightGreen: 59.7 + brightYellow: 62.9 + brightBlue: 89.4 + brightMagenta: 79.3 + brightCyan: 65.6 + brightWhite: 105.7 diff --git a/themes/tweed-light.yaml b/themes/tweed-light.yaml new file mode 100644 index 00000000..4ed16845 --- /dev/null +++ b/themes/tweed-light.yaml @@ -0,0 +1,49 @@ +name: "tweed-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#585E6D" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#585E6D" + yellow: "#5E9989" + blue: "#CAB696" + magenta: "#E2975F" + cyan: "#E75B4B" + white: "#636A7B" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#8A91A1" + brightYellow: "#9BC2B7" + brightBlue: "#ECE5DA" + brightMagenta: "#F2CFB5" + brightCyan: "#F3ADA5" + brightWhite: "#8A91A1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 82.2 + black: 0 + red: 80.3 + green: 82.2 + yellow: 60.1 + blue: 38.1 + magenta: 46.7 + cyan: 61.7 + white: 77 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 58.7 + brightYellow: 37.4 + brightBlue: 12.5 + brightMagenta: 21.9 + brightCyan: 34.8 + brightWhite: 58.7 diff --git a/themes/tweed.yaml b/themes/tweed.yaml new file mode 100644 index 00000000..d96bef1f --- /dev/null +++ b/themes/tweed.yaml @@ -0,0 +1,49 @@ +name: "tweed" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#3B3F4C" + fg: "#FFFFFF" + black: "#464B5A" + red: "#BA0E2E" + green: "#777F93" + yellow: "#5E9989" + blue: "#CAB696" + magenta: "#E2975F" + cyan: "#E75B4B" + white: "#FFFFFF" + brightBlack: "#686F85" + brightRed: "#F03E5F" + brightGreen: "#B0B4C0" + brightYellow: "#9BC2B7" + brightBlue: "#ECE5DA" + brightMagenta: "#F2CFB5" + brightCyan: "#F3ADA5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 272 + contrast: + fg: 98.3 + black: 0 + red: 12 + green: 24.7 + yellow: 32.1 + blue: 54.8 + magenta: 45.8 + cyan: 30.4 + white: 98.3 + brightBlack: 17.6 + brightRed: 28.3 + brightGreen: 52.3 + brightYellow: 55.5 + brightBlue: 82 + brightMagenta: 71.9 + brightCyan: 58.2 + brightWhite: 98.3 diff --git a/themes/twentyfour.yaml b/themes/twentyfour.yaml new file mode 100644 index 00000000..bfc3d710 --- /dev/null +++ b/themes/twentyfour.yaml @@ -0,0 +1,49 @@ +name: "Twentyfour" +source: + marketplace_id: "YesCode.twentyFour" + version: "0.0.2" + installs: 89 + author: "YesCode" + repo: "https://github.com/yesomac/twentyFour" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.twentyFour" +colors: + bg: "#0A0D11" + fg: "#DDDDDD" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#8F8EDA" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 85.8 + black: 0 + red: 42.7 + green: 61.7 + yellow: 73.8 + blue: 83.6 + magenta: 20.3 + cyan: 50.2 + white: 48 + brightBlack: 19.3 + brightRed: 42.7 + brightGreen: 45.2 + brightYellow: 80.5 + brightBlue: 19.5 + brightMagenta: 20.3 + brightCyan: 50.2 + brightWhite: 99.6 diff --git a/themes/twilight-cosmos.yaml b/themes/twilight-cosmos.yaml new file mode 100644 index 00000000..f9a7069c --- /dev/null +++ b/themes/twilight-cosmos.yaml @@ -0,0 +1,49 @@ +name: "Twilight Cosmos" +source: + marketplace_id: "zellwk.twilight-cosmos-theme" + version: "1.0.13" + installs: 106 + author: "Zell Liew" + repo: "https://github.com/zellwk/twilight-cosmos" + url: "https://marketplace.visualstudio.com/items?itemName=zellwk.twilight-cosmos-theme" +colors: + bg: "#222027" + fg: "#E5E7F2" + black: "#000000" + red: "#FA5858" + green: "#66E9A5" + yellow: "#F7BD2B" + blue: "#3E9EEE" + magenta: "#F08EDB" + cyan: "#00DAF6" + white: "#E5E7F2" + brightBlack: "#8B8FAC" + brightRed: "#FF757F" + brightGreen: "#C3E88D" + brightYellow: "#FFC777" + brightBlue: "#7CAFFF" + brightMagenta: "#F08EDB" + brightCyan: "#78DBFF" + brightWhite: "#E5E7F2" +meta: + mode: "dark" + accent: "orange" + hue: 298 + contrast: + fg: 90.3 + black: 0 + red: 41.5 + green: 76.8 + yellow: 70 + blue: 45.1 + magenta: 57.1 + cyan: 70.9 + white: 90.3 + brightBlack: 40.6 + brightRed: 49.6 + brightGreen: 82.9 + brightYellow: 76.3 + brightBlue: 56.2 + brightMagenta: 57.1 + brightCyan: 75 + brightWhite: 90.3 diff --git a/themes/twilight-pro.yaml b/themes/twilight-pro.yaml new file mode 100644 index 00000000..1cced2d7 --- /dev/null +++ b/themes/twilight-pro.yaml @@ -0,0 +1,49 @@ +name: "Twilight Pro" +source: + marketplace_id: "malkoleyplay.twilight-pro" + version: "0.3.0" + installs: 2133 + author: "_ipal" + repo: "https://github.com/Iipal/Twilight-Pro" + url: "https://marketplace.visualstudio.com/items?itemName=malkoleyplay.twilight-pro" +colors: + bg: "#141414" + fg: "#F8F8F8" + black: "#000000" + red: "#AA0000" + green: "#00AA00" + yellow: "#AAAA00" + blue: "#0000AA" + magenta: "#AA00AA" + cyan: "#00AAAA" + white: "#AAAAAA" + brightBlack: "#555555" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 102.5 + black: 0 + red: 17 + green: 43.8 + yellow: 52.7 + blue: 0 + magenta: 21.8 + cyan: 46.9 + white: 55.5 + brightBlack: 15.4 + brightRed: 43.7 + brightGreen: 87.4 + brightYellow: 102.3 + brightBlue: 26.6 + brightMagenta: 51.1 + brightCyan: 55.7 + brightWhite: 107.1 diff --git a/themes/twilight-sage.yaml b/themes/twilight-sage.yaml new file mode 100644 index 00000000..42e57641 --- /dev/null +++ b/themes/twilight-sage.yaml @@ -0,0 +1,49 @@ +name: "Twilight Sage" +source: + marketplace_id: "JamesGulland.twilight-sage-dark-theme" + version: "2.5.0" + installs: 136 + author: "James Gulland" + repo: "https://github.com/james-gulland/twilight-sage-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.twilight-sage-dark-theme" +colors: + bg: "#1F1F1F" + fg: "#968E88" + black: "#1F1F1F" + red: "#D97A88" + green: "#CDD1AC" + yellow: "#CDD1AC" + blue: "#91C1D8" + magenta: "#B480B0" + cyan: "#91C1D8" + white: "#E1DEE3" + brightBlack: "#968E88" + brightRed: "#D97A88" + brightGreen: "#CDD1AC" + brightYellow: "#CDD1AC" + brightBlue: "#91C1D8" + brightMagenta: "#B480B0" + brightCyan: "#91C1D8" + brightWhite: "#E1DEE3" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 40.3 + black: 0 + red: 43.9 + green: 74.8 + yellow: 74.8 + blue: 63.3 + magenta: 41.2 + cyan: 63.3 + white: 85.3 + brightBlack: 40.3 + brightRed: 43.9 + brightGreen: 74.8 + brightYellow: 74.8 + brightBlue: 63.3 + brightMagenta: 41.2 + brightCyan: 63.3 + brightWhite: 85.3 diff --git a/themes/twilight.yaml b/themes/twilight.yaml new file mode 100644 index 00000000..db02fb13 --- /dev/null +++ b/themes/twilight.yaml @@ -0,0 +1,49 @@ +name: "Twilight" +source: + marketplace_id: "SriManikantaPalakollu.twilight" + version: "1.0.0" + installs: 5204 + author: "Sri Manikanta Palakollu" + repo: "https://github.com/srimani-programmer/Twilight" + url: "https://marketplace.visualstudio.com/items?itemName=SriManikantaPalakollu.twilight" +colors: + bg: "#021524" + fg: "#D6DEEB" + black: "#000000" + red: "#C23621" + green: "#25BC24" + yellow: "#ADAD27" + blue: "#492EE1" + magenta: "#D338D3" + cyan: "#33BBC8" + white: "#CBCCCD" + brightBlack: "#818383" + brightRed: "#FC391F" + brightGreen: "#31E722" + brightYellow: "#EAEC23" + brightBlue: "#5833FF" + brightMagenta: "#F935F8" + brightCyan: "#14F0F0" + brightWhite: "#E9EBEB" +meta: + mode: "dark" + accent: "pink" + hue: 243 + contrast: + fg: 85.4 + black: 0 + red: 25 + green: 52.2 + yellow: 54.3 + blue: 16.1 + magenta: 35.1 + cyan: 56.1 + white: 74.8 + brightBlack: 35.2 + brightRed: 38.5 + brightGreen: 73.4 + brightYellow: 89.8 + brightBlue: 21.1 + brightMagenta: 45.4 + brightCyan: 82.9 + brightWhite: 93.8 diff --git a/themes/twilightsparkle.yaml b/themes/twilightsparkle.yaml new file mode 100644 index 00000000..e95dc796 --- /dev/null +++ b/themes/twilightsparkle.yaml @@ -0,0 +1,49 @@ +name: "TwilightSparkle" +source: + marketplace_id: "nanoparsec.twilightsparkle" + version: "0.1.0" + installs: 557 + author: "nanoparsec" + repo: "https://github.com/nanoparsec/twilightsparkle-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=nanoparsec.twilightsparkle" +colors: + bg: "#1D0038" + fg: "#19E68C" + black: "#9A00E0" + red: "#FF00BF" + green: "#19E68C" + yellow: "#A576FF" + blue: "#0098FF" + magenta: "#F335FF" + cyan: "#00CCCC" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF00BF" + brightGreen: "#00F2A5" + brightYellow: "#AEB3FF" + brightBlue: "#35A6FF" + brightMagenta: "#DB2FF4" + brightCyan: "#5BFFD3" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 301 + contrast: + fg: 73.9 + black: 22.9 + red: 41 + green: 73.9 + yellow: 42.3 + blue: 44.5 + magenta: 44.4 + cyan: 63.4 + white: 106.9 + brightBlack: 22 + brightRed: 41 + brightGreen: 80.7 + brightYellow: 63.6 + brightBlue: 50.5 + brightMagenta: 38.1 + brightCyan: 90.5 + brightWhite: 90 diff --git a/themes/twilite-darker.yaml b/themes/twilite-darker.yaml new file mode 100644 index 00000000..f4458c03 --- /dev/null +++ b/themes/twilite-darker.yaml @@ -0,0 +1,49 @@ +name: "Twilite (Darker)" +source: + marketplace_id: "vegcom.twilite" + version: "0.0.3" + installs: 29 + author: "vegcom" + repo: "https://github.com/vegcom/VSCode-Twilite" + url: "https://marketplace.visualstudio.com/items?itemName=vegcom.twilite" +colors: + bg: "#181520" + fg: "#F8F8F2" + black: "#21222C" + red: "#E84545" + green: "#40E868" + yellow: "#E0E878" + blue: "#B084F5" + magenta: "#F060B3" + cyan: "#79DDF0" + white: "#A8A8A8" + brightBlack: "#4D5066" + brightRed: "#FF8080" + brightGreen: "#7DFFAA" + brightYellow: "#FFFFB8" + brightBlue: "#D4B5FF" + brightMagenta: "#FFA8EB" + brightCyan: "#B8FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 297 + contrast: + fg: 102 + black: 0 + red: 35.4 + green: 74.8 + yellow: 87.3 + blue: 47 + magenta: 45.1 + cyan: 76.4 + white: 54.2 + brightBlack: 13.7 + brightRed: 53.7 + brightGreen: 90.7 + brightYellow: 104.1 + brightBlue: 69.2 + brightMagenta: 70.2 + brightCyan: 98.5 + brightWhite: 106.9 diff --git a/themes/twilite.yaml b/themes/twilite.yaml new file mode 100644 index 00000000..ce9f35c5 --- /dev/null +++ b/themes/twilite.yaml @@ -0,0 +1,49 @@ +name: "Twilite" +source: + marketplace_id: "vegcom.twilite" + version: "0.0.3" + installs: 29 + author: "vegcom" + repo: "https://github.com/vegcom/VSCode-Twilite" + url: "https://marketplace.visualstudio.com/items?itemName=vegcom.twilite" +colors: + bg: "#1E1A2E" + fg: "#F8F8F2" + black: "#282A36" + red: "#D84040" + green: "#40D860" + yellow: "#D0D870" + blue: "#A080D9" + magenta: "#D960A8" + cyan: "#70C9DD" + white: "#A0A0A0" + brightBlack: "#44475A" + brightRed: "#E85858" + brightGreen: "#58E878" + brightYellow: "#E0E888" + brightBlue: "#B89AE0" + brightMagenta: "#E878C0" + brightCyan: "#88DDE8" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "green" + hue: 292 + contrast: + fg: 101.3 + black: 0 + red: 30.4 + green: 65.9 + yellow: 77 + blue: 41.1 + magenta: 39.2 + cyan: 64.9 + white: 49.2 + brightBlack: 9.5 + brightRed: 38.1 + brightGreen: 75.1 + brightYellow: 86.9 + brightBlue: 53 + brightMagenta: 48.8 + brightCyan: 76.2 + brightWhite: 91.2 diff --git a/themes/twin-black.yaml b/themes/twin-black.yaml new file mode 100644 index 00000000..8d9facfd --- /dev/null +++ b/themes/twin-black.yaml @@ -0,0 +1,49 @@ +name: "Twin Black" +source: + marketplace_id: "twin-themes.twin-vsc" + version: "1.0.5" + installs: 892 + author: "Twin Themes" + repo: "https://github.com/twin-themes/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=twin-themes.twin-vsc" +colors: + bg: "#2A2D2C" + fg: "#BCC0CC" + black: "#6A6D6C" + red: "#E47267" + green: "#25D483" + yellow: "#DBEC79" + blue: "#71BAEF" + magenta: "#C181E4" + cyan: "#F4BF5D" + white: "#DADDDC" + brightBlack: "#8A8D8C" + brightRed: "#E69F99" + brightGreen: "#58D59B" + brightYellow: "#E3EDAB" + brightBlue: "#A4D0EF" + brightMagenta: "#D5AFE9" + brightCyan: "#F1D093" + brightWhite: "#FAFDFC" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 64.4 + black: 21.5 + red: 40.7 + green: 61.5 + yellow: 85.2 + blue: 56.9 + magenta: 44 + cyan: 68.7 + white: 81.3 + brightBlack: 36.4 + brightRed: 55.9 + brightGreen: 64 + brightYellow: 88 + brightBlue: 70.4 + brightMagenta: 62.5 + brightCyan: 76.3 + brightWhite: 101.8 diff --git a/themes/twin-blue.yaml b/themes/twin-blue.yaml new file mode 100644 index 00000000..ae5dd3de --- /dev/null +++ b/themes/twin-blue.yaml @@ -0,0 +1,49 @@ +name: "Twin Blue" +source: + marketplace_id: "twin-themes.twin-vsc" + version: "1.0.5" + installs: 892 + author: "Twin Themes" + repo: "https://github.com/twin-themes/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=twin-themes.twin-vsc" +colors: + bg: "#112239" + fg: "#BCC0CC" + black: "#4A4D4C" + red: "#E84030" + green: "#14B369" + yellow: "#D6F042" + blue: "#38A6F5" + magenta: "#B04CE6" + cyan: "#FCAF22" + white: "#BABDBC" + brightBlack: "#6A6D6C" + brightRed: "#E47267" + brightGreen: "#25D483" + brightYellow: "#DBEC79" + brightBlue: "#71BAEF" + brightMagenta: "#C181E4" + brightCyan: "#F4BF5D" + brightWhite: "#DADDDC" +meta: + mode: "dark" + accent: "magenta" + hue: 256 + contrast: + fg: 66.2 + black: 10.4 + red: 33 + green: 47.1 + yellow: 87.7 + blue: 48.4 + magenta: 31.2 + cyan: 65.4 + white: 64 + brightBlack: 23.3 + brightRed: 42.6 + brightGreen: 63.4 + brightYellow: 87.1 + brightBlue: 58.7 + brightMagenta: 45.9 + brightCyan: 70.6 + brightWhite: 83.1 diff --git a/themes/two-firewatch.yaml b/themes/two-firewatch.yaml new file mode 100644 index 00000000..56e04681 --- /dev/null +++ b/themes/two-firewatch.yaml @@ -0,0 +1,49 @@ +name: "Two Firewatch" +source: + marketplace_id: "hehk.two-firewatch" + version: "0.0.1" + installs: 257 + author: "hehk" + repo: "https://github.com/Hehk/two-firewatch" + url: "https://marketplace.visualstudio.com/items?itemName=hehk.two-firewatch" +colors: + bg: "#FAF8F5" + fg: "#896724" + black: "#282C34" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#DCDFE4" + brightBlack: "#282C34" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#DCDFE4" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 71.7 + black: 96.6 + red: 54.6 + green: 35 + yellow: 27.1 + blue: 42.3 + magenta: 51.6 + cyan: 42.4 + white: 12.5 + brightBlack: 96.6 + brightRed: 54.6 + brightGreen: 35 + brightYellow: 27.1 + brightBlue: 42.3 + brightMagenta: 51.6 + brightCyan: 42.4 + brightWhite: 12.5 diff --git a/themes/twodark.yaml b/themes/twodark.yaml new file mode 100644 index 00000000..5d56d659 --- /dev/null +++ b/themes/twodark.yaml @@ -0,0 +1,49 @@ +name: "TwoDark" +source: + marketplace_id: "Avetis.twodark" + version: "0.4.3" + installs: 444 + author: "Avetis" + repo: "https://github.com/AvetisDN/twodark-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.twodark" +colors: + bg: "#191B21" + fg: "#E1E4E8" + black: "#2C2A31" + red: "#F0406C" + green: "#34D058" + yellow: "#F0FF68" + blue: "#1495FF" + magenta: "#B87FFA" + cyan: "#2EDBE7" + white: "#D1D5DA" + brightBlack: "#959DA5" + brightRed: "#FF5882" + brightGreen: "#85E89D" + brightYellow: "#F0FF68" + brightBlue: "#2EC4FF" + brightMagenta: "#B87FFA" + brightCyan: "#3EDCE7" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "red" + hue: 271 + contrast: + fg: 88.7 + black: 0 + red: 36.9 + green: 61.8 + yellow: 99.8 + blue: 43 + magenta: 46.5 + cyan: 71.7 + white: 79.3 + brightBlack: 47.3 + brightRed: 44.5 + brightGreen: 78.6 + brightYellow: 99.8 + brightBlue: 62.5 + brightMagenta: 46.5 + brightCyan: 72.5 + brightWhite: 103.7 diff --git a/themes/tycho-crater.yaml b/themes/tycho-crater.yaml new file mode 100644 index 00000000..b6316379 --- /dev/null +++ b/themes/tycho-crater.yaml @@ -0,0 +1,49 @@ +name: "Tycho Crater" +source: + marketplace_id: "MrLizardAndCompany.sea-of-serenity" + version: "0.2.15" + installs: 58 + author: "Mr Lizard & Company" + repo: "https://github.com/webstek/sea-of-serenity" + url: "https://marketplace.visualstudio.com/items?itemName=MrLizardAndCompany.sea-of-serenity" +colors: + bg: "#D4D0CC" + fg: "#787470" + black: "#181818" + red: "#A02020" + green: "#406040" + yellow: "#005888" + blue: "#284090" + magenta: "#804080" + cyan: "#C04010" + white: "#B8A080" + brightBlack: "#503028" + brightRed: "#D05868" + brightGreen: "#60A040" + brightYellow: "#00A0C0" + brightBlue: "#A0B0E0" + brightMagenta: "#B868B8" + brightCyan: "#FF8000" + brightWhite: "#F8FFFF" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 45.2 + black: 77.6 + red: 58.3 + green: 57.5 + yellow: 59 + blue: 64.4 + magenta: 57.2 + cyan: 48.1 + white: 22.2 + brightBlack: 69.8 + brightRed: 39.5 + brightGreen: 31.8 + brightYellow: 30.2 + brightBlue: 15.2 + brightMagenta: 37.1 + brightCyan: 21.7 + brightWhite: 27 diff --git a/themes/tyh-theme-dark.yaml b/themes/tyh-theme-dark.yaml new file mode 100644 index 00000000..3688b710 --- /dev/null +++ b/themes/tyh-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "tyh-theme-dark" +source: + marketplace_id: "tyh-theme.tyh-theme" + version: "1.4.1" + installs: 535 + author: "tyh-theme" + repo: "https://github.com/Tyh2001/tyh-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=tyh-theme.tyh-theme" +colors: + bg: "#2C2C2C" + fg: "#EEFFFF" + black: "#333333" + red: "#D10F1B" + green: "#54C600" + yellow: "#FBCC30" + blue: "#3A6FF4" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.3 + black: 0 + red: 22.3 + green: 54.7 + yellow: 74.8 + blue: 27.4 + magenta: 29 + cyan: 47.2 + white: 85.3 + brightBlack: 18.8 + brightRed: 34.1 + brightGreen: 73.8 + brightYellow: 80.7 + brightBlue: 46.6 + brightMagenta: 43.3 + brightCyan: 70.2 + brightWhite: 98.7 diff --git a/themes/typedark-magenta.yaml b/themes/typedark-magenta.yaml new file mode 100644 index 00000000..e69a248f --- /dev/null +++ b/themes/typedark-magenta.yaml @@ -0,0 +1,49 @@ +name: "TypeDark Magenta" +source: + marketplace_id: "BonnyAD9.typedark" + version: "1.1.27" + installs: 374 + author: "BonnyAD9" + repo: "https://github.com/BonnyAD9/TypeDark" + url: "https://marketplace.visualstudio.com/items?itemName=BonnyAD9.typedark" +colors: + bg: "#252224" + fg: "#EEEEEE" + black: "#000000" + red: "#883333" + green: "#338833" + yellow: "#888833" + blue: "#5566EE" + magenta: "#884488" + cyan: "#338888" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#FF5555" + brightGreen: "#23D16A" + brightYellow: "#FFFF55" + brightBlue: "#308EEA" + brightMagenta: "#FF77FF" + brightCyan: "#66CCCC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 94.2 + black: 0 + red: 12 + green: 28.5 + yellow: 34.2 + blue: 27.3 + magenta: 17.5 + cyan: 30.5 + white: 73.1 + brightBlack: 28 + brightRed: 41.8 + brightGreen: 61.2 + brightYellow: 100.5 + brightBlue: 38.2 + brightMagenta: 55.9 + brightCyan: 64.1 + brightWhite: 105.3 diff --git a/themes/typedark-yellow.yaml b/themes/typedark-yellow.yaml new file mode 100644 index 00000000..faa24243 --- /dev/null +++ b/themes/typedark-yellow.yaml @@ -0,0 +1,49 @@ +name: "TypeDark Yellow" +source: + marketplace_id: "BonnyAD9.typedark" + version: "1.1.27" + installs: 374 + author: "BonnyAD9" + repo: "https://github.com/BonnyAD9/TypeDark" + url: "https://marketplace.visualstudio.com/items?itemName=BonnyAD9.typedark" +colors: + bg: "#222222" + fg: "#EEEEEE" + black: "#000000" + red: "#883333" + green: "#338833" + yellow: "#888833" + blue: "#5566EE" + magenta: "#884488" + cyan: "#338888" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#FF5555" + brightGreen: "#23D16A" + brightYellow: "#FFFF55" + brightBlue: "#308EEA" + brightMagenta: "#FF77FF" + brightCyan: "#66CCCC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 94.3 + black: 0 + red: 12.1 + green: 28.6 + yellow: 34.4 + blue: 27.4 + magenta: 17.6 + cyan: 30.6 + white: 73.2 + brightBlack: 28.1 + brightRed: 42 + brightGreen: 61.4 + brightYellow: 100.7 + brightBlue: 38.3 + brightMagenta: 56 + brightCyan: 64.2 + brightWhite: 105.5 diff --git a/themes/tyrell-corporation.yaml b/themes/tyrell-corporation.yaml new file mode 100644 index 00000000..7e31b509 --- /dev/null +++ b/themes/tyrell-corporation.yaml @@ -0,0 +1,49 @@ +name: "Tyrell Corporation" +source: + marketplace_id: "hc.wallace-corporation" + version: "0.4.1" + installs: 1588 + author: "Howard C." + repo: "https://github.com/h-cwc/wallace-corporation" + url: "https://marketplace.visualstudio.com/items?itemName=hc.wallace-corporation" +colors: + bg: "#0B0C0F" + fg: "#FFB000" + black: "#FFB000" + red: "#C08605" + green: "#CF9003" + yellow: "#A07007" + blue: "#EFA501" + magenta: "#DF9B02" + cyan: "#B07B06" + white: "#906608" + brightBlack: "#FFB000" + brightRed: "#C08605" + brightGreen: "#CF9003" + brightYellow: "#A07007" + brightBlue: "#EFA501" + brightMagenta: "#DF9B02" + brightCyan: "#B07B06" + brightWhite: "#906608" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 68.4 + black: 68.4 + red: 43.1 + green: 48.9 + yellow: 31.5 + blue: 61.6 + magenta: 55.3 + cyan: 37.2 + white: 26.3 + brightBlack: 68.4 + brightRed: 43.1 + brightGreen: 48.9 + brightYellow: 31.5 + brightBlue: 61.6 + brightMagenta: 55.3 + brightCyan: 37.2 + brightWhite: 26.3 diff --git a/themes/tyrian-night.yaml b/themes/tyrian-night.yaml new file mode 100644 index 00000000..bd099794 --- /dev/null +++ b/themes/tyrian-night.yaml @@ -0,0 +1,49 @@ +name: "Tyrian Night" +source: + marketplace_id: "renbkna.tyrian-night" + version: "1.5.2" + installs: 24 + author: "renbkna" + repo: "https://github.com/renbkna/tyrian-night" + url: "https://marketplace.visualstudio.com/items?itemName=renbkna.tyrian-night" +colors: + bg: "#0C0C0C" + fg: "#D0C8E0" + black: "#252530" + red: "#C06868" + green: "#489060" + yellow: "#C09040" + blue: "#5A78C0" + magenta: "#8B6ABD" + cyan: "#3A9690" + white: "#D0C8E0" + brightBlack: "#404050" + brightRed: "#D08888" + brightGreen: "#68B080" + brightYellow: "#D0B060" + brightBlue: "#7A98D0" + brightMagenta: "#A888C8" + brightCyan: "#58B0A8" + brightWhite: "#E0D8F0" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 75.2 + black: 0 + red: 35.6 + green: 35.5 + yellow: 46.8 + blue: 31.8 + magenta: 31.9 + cyan: 38.8 + white: 75.2 + brightBlack: 8.7 + brightRed: 48.2 + brightGreen: 51.2 + brightYellow: 61.3 + brightBlue: 46.3 + brightMagenta: 45 + brightCyan: 51.7 + brightWhite: 84.9 diff --git a/themes/tyrone-neon-24k-gold.yaml b/themes/tyrone-neon-24k-gold.yaml new file mode 100644 index 00000000..d57dfc8f --- /dev/null +++ b/themes/tyrone-neon-24k-gold.yaml @@ -0,0 +1,49 @@ +name: "Tyrone Neon - 24K Gold" +source: + marketplace_id: "tyronejosee.tyrone-neon" + version: "2.0.0" + installs: 157 + author: "tyronejosee" + repo: "https://github.com/tyronejosee/theme_tyrone_neon" + url: "https://marketplace.visualstudio.com/items?itemName=tyronejosee.tyrone-neon" +colors: + bg: "#000000" + fg: "#E5E5E5" + black: "#484F58" + red: "#FF4757" + green: "#00FF87" + yellow: "#FFFA65" + blue: "#00D9FF" + magenta: "#FF6B9D" + cyan: "#00FFCC" + white: "#E5E5E5" + brightBlack: "#7D8590" + brightRed: "#FF6B6B" + brightGreen: "#5EFFA3" + brightYellow: "#FFFF80" + brightBlue: "#40E0FF" + brightMagenta: "#FF8FC7" + brightCyan: "#80FFE6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 91 + black: 13.6 + red: 42.3 + green: 87.7 + yellow: 100.9 + blue: 73.3 + magenta: 50.6 + cyan: 89.8 + white: 91 + brightBlack: 36.8 + brightRed: 49.1 + brightGreen: 90 + brightYellow: 103.7 + brightBlue: 77.3 + brightMagenta: 61.5 + brightCyan: 94.1 + brightWhite: 107.9 diff --git a/themes/ubuntu-dark.yaml b/themes/ubuntu-dark.yaml new file mode 100644 index 00000000..c9088e1d --- /dev/null +++ b/themes/ubuntu-dark.yaml @@ -0,0 +1,49 @@ +name: "Ubuntu Dark" +source: + marketplace_id: "AgraeonLabs.dev-themes" + version: "0.1.0" + installs: 283 + author: "Agraeon Labs" + repo: "https://github.com/adiagcodelance/VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" +colors: + bg: "#2C2C2C" + fg: "#F0F0F0" + black: "#2C2C2C" + red: "#CC0000" + green: "#4E9A06" + yellow: "#C4A000" + blue: "#3465A4" + magenta: "#75507B" + cyan: "#06989A" + white: "#D3D7CF" + brightBlack: "#555753" + brightRed: "#EF2929" + brightGreen: "#8AE234" + brightYellow: "#FCE94F" + brightBlue: "#729FCF" + brightMagenta: "#AD7FA8" + brightCyan: "#34E2E2" + brightWhite: "#EEEEEC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 93.8 + black: 0 + red: 21 + green: 34.9 + yellow: 48.8 + blue: 18.2 + magenta: 15.2 + cyan: 35.2 + white: 77.2 + brightBlack: 12.4 + brightRed: 30.6 + brightGreen: 71.5 + brightYellow: 87.9 + brightBlue: 44.2 + brightMagenta: 37.3 + brightCyan: 72.2 + brightWhite: 92.4 diff --git a/themes/ui-color.yaml b/themes/ui-color.yaml new file mode 100644 index 00000000..e2ac05e7 --- /dev/null +++ b/themes/ui-color.yaml @@ -0,0 +1,49 @@ +name: "ui_color" +source: + marketplace_id: "PinkDopeyBug.pinkdopeybug" + version: "1.0.20" + installs: 472 + author: "PinkDopeyBug" + repo: "https://github.com/PinkDopeyBug/pinkdopeybug-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PinkDopeyBug.pinkdopeybug" +colors: + bg: "#303845" + fg: "#DDDDDD" + black: "#2D3139" + red: "#EA4A5A" + green: "#92D69E" + yellow: "#EBB07A" + blue: "#61AFEF" + magenta: "#CAA6ED" + cyan: "#39C5CF" + white: "#D1D5DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#46ABE4" + brightMagenta: "#CAA6ED" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "orange" + hue: 260 + contrast: + fg: 78.9 + black: 0 + red: 30.8 + green: 65.3 + yellow: 59.1 + blue: 48.5 + magenta: 55 + cyan: 54.7 + white: 73.6 + brightBlack: 41.6 + brightRed: 43.6 + brightGreen: 72.9 + brightYellow: 86.6 + brightBlue: 45 + brightMagenta: 55 + brightCyan: 63.3 + brightWhite: 98 diff --git a/themes/ui.yaml b/themes/ui.yaml new file mode 100644 index 00000000..ec2bc6e6 --- /dev/null +++ b/themes/ui.yaml @@ -0,0 +1,49 @@ +name: "_ui" +source: + marketplace_id: "saltchang.salty" + version: "0.2.0" + installs: 313 + author: "Salt Chang" + repo: "https://github.com/saltchang/theme-salty" + url: "https://marketplace.visualstudio.com/items?itemName=saltchang.salty" +colors: + bg: "#131A18" + fg: "#E0E0E0" + black: "#666666" + red: "#CD6564" + green: "#AEC199" + yellow: "#FFF099" + blue: "#6D9CBE" + magenta: "#B081B9" + cyan: "#80B5B3" + white: "#EFEFEF" + brightBlack: "#666666" + brightRed: "#CD6564" + brightGreen: "#AEC199" + brightYellow: "#FFF099" + brightBlue: "#6D9CBE" + brightMagenta: "#B081B9" + brightCyan: "#80B5B3" + brightWhite: "#EFEFEF" +meta: + mode: "dark" + accent: "orange" + hue: 176 + contrast: + fg: 86.7 + black: 21.9 + red: 36.2 + green: 64.3 + yellow: 95.9 + blue: 44.8 + magenta: 42.2 + cyan: 55.9 + white: 96.2 + brightBlack: 21.9 + brightRed: 36.2 + brightGreen: 64.3 + brightYellow: 95.9 + brightBlue: 44.8 + brightMagenta: 42.2 + brightCyan: 55.9 + brightWhite: 96.2 diff --git a/themes/ukiyo-e-aged-manuscript.yaml b/themes/ukiyo-e-aged-manuscript.yaml new file mode 100644 index 00000000..f5049fe6 --- /dev/null +++ b/themes/ukiyo-e-aged-manuscript.yaml @@ -0,0 +1,49 @@ +name: "Ukiyo-e Aged Manuscript" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2036 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" +colors: + bg: "#D4C29A" + fg: "#2A1F15" + black: "#2A1F15" + red: "#A8472B" + green: "#5A7A4C" + yellow: "#C5941A" + blue: "#4A5C7A" + magenta: "#7A5A7A" + cyan: "#4C6B6B" + white: "#D4C29A" + brightBlack: "#746453" + brightRed: "#C85A3B" + brightGreen: "#6D9157" + brightYellow: "#E8B226" + brightBlue: "#5C7094" + brightMagenta: "#9570A3" + brightCyan: "#5E8282" + brightWhite: "#F0E8D6" +meta: + mode: "light" + accent: "yellow" + hue: 87 + contrast: + fg: 68.8 + black: 68.8 + red: 44.3 + green: 39.4 + yellow: 18.8 + blue: 49.1 + magenta: 45.2 + cyan: 44.8 + white: 0 + brightBlack: 44.3 + brightRed: 34.3 + brightGreen: 29.3 + brightYellow: 0 + brightBlue: 40.4 + brightMagenta: 33.9 + brightCyan: 34.8 + brightWhite: 21.3 diff --git a/themes/ukiyo-e-manuscript.yaml b/themes/ukiyo-e-manuscript.yaml new file mode 100644 index 00000000..aeb18ae3 --- /dev/null +++ b/themes/ukiyo-e-manuscript.yaml @@ -0,0 +1,49 @@ +name: "Ukiyo-e Manuscript" +source: + marketplace_id: "sserafy.naturefy-themes" + version: "2.0.2" + installs: 1655 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.naturefy-themes" +colors: + bg: "#F5F0E8" + fg: "#1A1614" + black: "#1A1614" + red: "#D63031" + green: "#00B894" + yellow: "#FDCB6E" + blue: "#4CA7A5" + magenta: "#FD79A8" + cyan: "#4CA7A5" + white: "#F5F0E8" + brightBlack: "#6B5D4F" + brightRed: "#E74C3C" + brightGreen: "#00D2A3" + brightYellow: "#FFD93D" + brightBlue: "#5FB8B6" + brightMagenta: "#FF8CC8" + brightCyan: "#5FB8B6" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.1 + black: 96.1 + red: 63.4 + green: 40.4 + yellow: 14.9 + blue: 45.7 + magenta: 39.5 + cyan: 45.7 + white: 0 + brightBlack: 73 + brightRed: 56 + brightGreen: 28.2 + brightYellow: 9.6 + brightBlue: 37.1 + brightMagenta: 32.9 + brightCyan: 37.1 + brightWhite: 0 diff --git a/themes/ukiyo-tone-asahi-morning-sun.yaml b/themes/ukiyo-tone-asahi-morning-sun.yaml new file mode 100644 index 00000000..12d91db6 --- /dev/null +++ b/themes/ukiyo-tone-asahi-morning-sun.yaml @@ -0,0 +1,49 @@ +name: "Ukiyo-Tone Asahi (Morning Sun)" +source: + marketplace_id: "OneMohitSharma.ukiyo-tone" + version: "1.0.1" + installs: 71 + author: "Mohit Sharma" + repo: "https://github.com/mohitSharma74/ukiyo-tone" + url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" +colors: + bg: "#F0F4F5" + fg: "#264348" + black: "#264348" + red: "#CB4042" + green: "#4F7942" + yellow: "#8C5A3C" + blue: "#264348" + magenta: "#CB4042" + cyan: "#4F7942" + white: "#F2EBD3" + brightBlack: "#264348" + brightRed: "#CB4042" + brightGreen: "#4F7942" + brightYellow: "#8C5A3C" + brightBlue: "#264348" + brightMagenta: "#CB4042" + brightCyan: "#4F7942" + brightWhite: "#F2EBD3" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 87.5 + black: 87.5 + red: 65.4 + green: 67.9 + yellow: 71.7 + blue: 87.5 + magenta: 65.4 + cyan: 67.9 + white: 0 + brightBlack: 87.5 + brightRed: 65.4 + brightGreen: 67.9 + brightYellow: 71.7 + brightBlue: 87.5 + brightMagenta: 65.4 + brightCyan: 67.9 + brightWhite: 0 diff --git a/themes/ukiyo-tone-kachi-iro-victory-color.yaml b/themes/ukiyo-tone-kachi-iro-victory-color.yaml new file mode 100644 index 00000000..fd2bfcc2 --- /dev/null +++ b/themes/ukiyo-tone-kachi-iro-victory-color.yaml @@ -0,0 +1,49 @@ +name: "Ukiyo-Tone Kachi-iro (Victory Color)" +source: + marketplace_id: "OneMohitSharma.ukiyo-tone" + version: "1.0.1" + installs: 71 + author: "Mohit Sharma" + repo: "https://github.com/mohitSharma74/ukiyo-tone" + url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" +colors: + bg: "#0D1117" + fg: "#FFFFFF" + black: "#0D1117" + red: "#FF003C" + green: "#00FFCC" + yellow: "#FFFF00" + blue: "#FFFF00" + magenta: "#FF003C" + cyan: "#00FFCC" + white: "#FFFFFF" + brightBlack: "#0D1117" + brightRed: "#FF003C" + brightGreen: "#00FFCC" + brightYellow: "#FFFF00" + brightBlue: "#FFFF00" + brightMagenta: "#FF003C" + brightCyan: "#00FFCC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 258 + contrast: + fg: 107.4 + black: 0 + red: 37.3 + green: 89.3 + yellow: 102.2 + blue: 102.2 + magenta: 37.3 + cyan: 89.3 + white: 107.4 + brightBlack: 0 + brightRed: 37.3 + brightGreen: 89.3 + brightYellow: 102.2 + brightBlue: 102.2 + brightMagenta: 37.3 + brightCyan: 89.3 + brightWhite: 107.4 diff --git a/themes/ukiyo-tone-karesansui-dry-landscape.yaml b/themes/ukiyo-tone-karesansui-dry-landscape.yaml new file mode 100644 index 00000000..b0ed8f63 --- /dev/null +++ b/themes/ukiyo-tone-karesansui-dry-landscape.yaml @@ -0,0 +1,49 @@ +name: "Ukiyo-Tone Karesansui (Dry Landscape)" +source: + marketplace_id: "OneMohitSharma.ukiyo-tone" + version: "1.0.1" + installs: 71 + author: "Mohit Sharma" + repo: "https://github.com/mohitSharma74/ukiyo-tone" + url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" +colors: + bg: "#E8EDE6" + fg: "#4A5056" + black: "#4A5056" + red: "#C19C4D" + green: "#6A7B54" + yellow: "#C19C4D" + blue: "#5B7C8C" + magenta: "#8C7C96" + cyan: "#5B7C8C" + white: "#E8EDE6" + brightBlack: "#4A5056" + brightRed: "#C19C4D" + brightGreen: "#6A7B54" + brightYellow: "#C19C4D" + brightBlue: "#5B7C8C" + brightMagenta: "#8C7C96" + brightCyan: "#5B7C8C" + brightWhite: "#E8EDE6" +meta: + mode: "light" + accent: "yellow" + hue: 137 + contrast: + fg: 76.7 + black: 76.7 + red: 38.8 + green: 60.3 + yellow: 38.8 + blue: 59.3 + magenta: 54.5 + cyan: 59.3 + white: 0 + brightBlack: 76.7 + brightRed: 38.8 + brightGreen: 60.3 + brightYellow: 38.8 + brightBlue: 59.3 + brightMagenta: 54.5 + brightCyan: 59.3 + brightWhite: 0 diff --git a/themes/ukiyo-tone-koke-dera-moss-temple.yaml b/themes/ukiyo-tone-koke-dera-moss-temple.yaml new file mode 100644 index 00000000..21b10c3c --- /dev/null +++ b/themes/ukiyo-tone-koke-dera-moss-temple.yaml @@ -0,0 +1,49 @@ +name: "Ukiyo-Tone Koke-Dera (Moss Temple)" +source: + marketplace_id: "OneMohitSharma.ukiyo-tone" + version: "1.0.1" + installs: 71 + author: "Mohit Sharma" + repo: "https://github.com/mohitSharma74/ukiyo-tone" + url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" +colors: + bg: "#0F1F1C" + fg: "#D4E0D9" + black: "#0F1F1C" + red: "#8CB060" + green: "#4D8C7D" + yellow: "#A3BFA8" + blue: "#B8D8BE" + magenta: "#8CB060" + cyan: "#4D8C7D" + white: "#D4E0D9" + brightBlack: "#0F1F1C" + brightRed: "#8CB060" + brightGreen: "#4D8C7D" + brightYellow: "#A3BFA8" + brightBlue: "#B8D8BE" + brightMagenta: "#8CB060" + brightCyan: "#4D8C7D" + brightWhite: "#D4E0D9" +meta: + mode: "dark" + accent: "green" + hue: 181 + contrast: + fg: 84.4 + black: 0 + red: 51.8 + green: 33.6 + yellow: 62.4 + blue: 76.4 + magenta: 51.8 + cyan: 33.6 + white: 84.4 + brightBlack: 0 + brightRed: 51.8 + brightGreen: 33.6 + brightYellow: 62.4 + brightBlue: 76.4 + brightMagenta: 51.8 + brightCyan: 33.6 + brightWhite: 84.4 diff --git a/themes/ukiyo-tone-kuro-sumi-black-ink.yaml b/themes/ukiyo-tone-kuro-sumi-black-ink.yaml new file mode 100644 index 00000000..576ebdc2 --- /dev/null +++ b/themes/ukiyo-tone-kuro-sumi-black-ink.yaml @@ -0,0 +1,49 @@ +name: "Ukiyo-Tone Kuro-Sumi (Black Ink)" +source: + marketplace_id: "OneMohitSharma.ukiyo-tone" + version: "1.0.1" + installs: 71 + author: "Mohit Sharma" + repo: "https://github.com/mohitSharma74/ukiyo-tone" + url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" +colors: + bg: "#1C1C1C" + fg: "#DCDCDC" + black: "#1C1C1C" + red: "#FF5D62" + green: "#98BB6C" + yellow: "#E6C384" + blue: "#7E9CD8" + magenta: "#7E9CD8" + cyan: "#98BB6C" + white: "#DCDCDC" + brightBlack: "#1C1C1C" + brightRed: "#FF5D62" + brightGreen: "#98BB6C" + brightYellow: "#E6C384" + brightBlue: "#7E9CD8" + brightMagenta: "#7E9CD8" + brightCyan: "#98BB6C" + brightWhite: "#DCDCDC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.8 + black: 0 + red: 44.5 + green: 57.9 + yellow: 71.6 + blue: 47.2 + magenta: 47.2 + cyan: 57.9 + white: 83.8 + brightBlack: 0 + brightRed: 44.5 + brightGreen: 57.9 + brightYellow: 71.6 + brightBlue: 47.2 + brightMagenta: 47.2 + brightCyan: 57.9 + brightWhite: 83.8 diff --git a/themes/ukiyo-tone-tasogare-twilight.yaml b/themes/ukiyo-tone-tasogare-twilight.yaml new file mode 100644 index 00000000..880cd87f --- /dev/null +++ b/themes/ukiyo-tone-tasogare-twilight.yaml @@ -0,0 +1,49 @@ +name: "Ukiyo-Tone Tasogare (Twilight)" +source: + marketplace_id: "OneMohitSharma.ukiyo-tone" + version: "1.0.1" + installs: 71 + author: "Mohit Sharma" + repo: "https://github.com/mohitSharma74/ukiyo-tone" + url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" +colors: + bg: "#2D333B" + fg: "#ADB5BD" + black: "#2D333B" + red: "#CB4042" + green: "#7AA2F7" + yellow: "#E6C384" + blue: "#BB9AF7" + magenta: "#BB9AF7" + cyan: "#7AA2F7" + white: "#ADB5BD" + brightBlack: "#2D333B" + brightRed: "#CB4042" + brightGreen: "#7AA2F7" + brightYellow: "#E6C384" + brightBlue: "#BB9AF7" + brightMagenta: "#BB9AF7" + brightCyan: "#7AA2F7" + brightWhite: "#ADB5BD" +meta: + mode: "dark" + accent: "orange" + hue: 256 + contrast: + fg: 56 + black: 0 + red: 23.6 + green: 47 + yellow: 67.4 + blue: 50.8 + magenta: 50.8 + cyan: 47 + white: 56 + brightBlack: 0 + brightRed: 23.6 + brightGreen: 47 + brightYellow: 67.4 + brightBlue: 50.8 + brightMagenta: 50.8 + brightCyan: 47 + brightWhite: 56 diff --git a/themes/ukiyo.yaml b/themes/ukiyo.yaml new file mode 100644 index 00000000..2663e3ed --- /dev/null +++ b/themes/ukiyo.yaml @@ -0,0 +1,49 @@ +name: "ukiyo" +source: + marketplace_id: "zcericola.ukiyo" + version: "0.8.0" + installs: 1159 + author: "zcericola" + repo: "https://www.github.com/zcericola/ukiyo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zcericola.ukiyo" +colors: + bg: "#121212" + fg: "#D3D3D3" + black: "#666666" + red: "#EB7F7F" + green: "#15B6A6" + yellow: "#D0CD7B" + blue: "#10BED5" + magenta: "#A59BE9" + cyan: "#62CFCF" + white: "#A59BE9" + brightBlack: "#505050" + brightRed: "#DF9DAC" + brightGreen: "#B5DED8" + brightYellow: "#D0CD7B" + brightBlue: "#76D0E0" + brightMagenta: "#A59BE9" + brightCyan: "#CFCE6F" + brightWhite: "#EFEFEF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.3 + black: 22.5 + red: 49.8 + green: 52.2 + yellow: 73.5 + blue: 57.9 + magenta: 52.7 + cyan: 67.4 + white: 52.7 + brightBlack: 13.6 + brightRed: 58.4 + brightGreen: 81 + brightYellow: 73.5 + brightBlue: 69.8 + brightMagenta: 52.7 + brightCyan: 73.5 + brightWhite: 96.8 diff --git a/themes/ultima-gwz.yaml b/themes/ultima-gwz.yaml new file mode 100644 index 00000000..41c3f996 --- /dev/null +++ b/themes/ultima-gwz.yaml @@ -0,0 +1,49 @@ +name: "Ultima GWZ" +source: + marketplace_id: "guezwhoz-schema.ultima-vscode-theme" + version: "2.2.2" + installs: 186 + author: "Egor Lem" + repo: "https://github.com/egorlem/ultima.vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guezwhoz-schema.ultima-vscode-theme" +colors: + bg: "#1D1D1D" + fg: "#D9D9D9" + black: "#333333" + red: "#E85181" + green: "#7AD694" + yellow: "#B7D074" + blue: "#5AA0D6" + magenta: "#9A90E0" + cyan: "#58D6CE" + white: "#D9D9D9" + brightBlack: "#808080" + brightRed: "#E85181" + brightGreen: "#87EDA4" + brightYellow: "#AFD7AF" + brightBlue: "#64B2ED" + brightMagenta: "#A398ED" + brightCyan: "#61EDE4" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 81.8 + black: 0 + red: 37.9 + green: 68.7 + yellow: 70.5 + blue: 46.1 + magenta: 46 + cyan: 69 + white: 81.8 + brightBlack: 33.1 + brightRed: 37.9 + brightGreen: 81.2 + brightYellow: 74.4 + brightBlue: 55.2 + brightMagenta: 50.6 + brightCyan: 81.6 + brightWhite: 94.4 diff --git a/themes/ultima.yaml b/themes/ultima.yaml new file mode 100644 index 00000000..575f12ce --- /dev/null +++ b/themes/ultima.yaml @@ -0,0 +1,49 @@ +name: "Ultima" +source: + marketplace_id: "guezwhoz-schema.ultima-vscode-theme" + version: "2.2.2" + installs: 186 + author: "Egor Lem" + repo: "https://github.com/egorlem/ultima.vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guezwhoz-schema.ultima-vscode-theme" +colors: + bg: "#1F1F1F" + fg: "#DDE3DC" + black: "#3A3A3A" + red: "#E85181" + green: "#7CD996" + yellow: "#B7D074" + blue: "#5BA2D9" + magenta: "#8581DA" + cyan: "#59D9D0" + white: "#C2BAC2" + brightBlack: "#595959" + brightRed: "#FF598E" + brightGreen: "#91FFB0" + brightYellow: "#E1FF8F" + brightBlue: "#6BBFFF" + brightMagenta: "#9C96FF" + brightCyan: "#69FFF5" + brightWhite: "#F5EBF5" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 86.7 + black: 0 + red: 37.6 + green: 70 + yellow: 70.2 + blue: 46.8 + magenta: 38.2 + cyan: 70.3 + white: 64.5 + brightBlack: 15.7 + brightRed: 44.5 + brightGreen: 91.1 + brightYellow: 98 + brightBlue: 62 + brightMagenta: 50.1 + brightCyan: 91.6 + brightWhite: 94.7 diff --git a/themes/ultra-instinct-mastered-light.yaml b/themes/ultra-instinct-mastered-light.yaml new file mode 100644 index 00000000..f0c00adf --- /dev/null +++ b/themes/ultra-instinct-mastered-light.yaml @@ -0,0 +1,49 @@ +name: "Ultra Instinct Mastered (Light)" +source: + marketplace_id: "JuanLias.ultra-instinct-theme" + version: "0.1.4" + installs: 73 + author: "Juan Lias" + repo: "https://github.com/juanlias/ultra-instinct-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JuanLias.ultra-instinct-theme" +colors: + bg: "#F8FAFC" + fg: "#334155" + black: "#000000" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#9333EA" + cyan: "#06B6D4" + white: "#64748B" + brightBlack: "#334155" + brightRed: "#F87171" + brightGreen: "#34D399" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#94A3B8" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 90.9 + black: 102.9 + red: 60.7 + green: 45.9 + yellow: 38.6 + blue: 60.7 + magenta: 72.4 + cyan: 44 + white: 69.9 + brightBlack: 90.9 + brightRed: 49.6 + brightGreen: 33.1 + brightYellow: 26 + brightBlue: 46.4 + brightMagenta: 48.1 + brightCyan: 29.9 + brightWhite: 47 diff --git a/themes/ultra-instinct-mastered.yaml b/themes/ultra-instinct-mastered.yaml new file mode 100644 index 00000000..918e4615 --- /dev/null +++ b/themes/ultra-instinct-mastered.yaml @@ -0,0 +1,49 @@ +name: "Ultra Instinct Mastered" +source: + marketplace_id: "JuanLias.ultra-instinct-theme" + version: "0.1.4" + installs: 73 + author: "Juan Lias" + repo: "https://github.com/juanlias/ultra-instinct-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JuanLias.ultra-instinct-theme" +colors: + bg: "#141118" + fg: "#B0B5C0" + black: "#141118" + red: "#FF3366" + green: "#00FF99" + yellow: "#FFCB6B" + blue: "#33C7FF" + magenta: "#7B42FF" + cyan: "#00EAFF" + white: "#DCE0E5" + brightBlack: "#606080" + brightRed: "#FF6688" + brightGreen: "#66FFAA" + brightYellow: "#FFE082" + brightBlue: "#80D8FF" + brightMagenta: "#D0A0FF" + brightCyan: "#80F0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 304 + contrast: + fg: 61.6 + black: 0 + red: 39.8 + green: 87.6 + yellow: 79.3 + blue: 64.8 + magenta: 26.5 + cyan: 80.9 + white: 87 + brightBlack: 21.1 + brightRed: 48.2 + brightGreen: 89.9 + brightYellow: 88.7 + brightBlue: 75.7 + brightMagenta: 61.4 + brightCyan: 87.2 + brightWhite: 107.3 diff --git a/themes/ultra-instinct-sign.yaml b/themes/ultra-instinct-sign.yaml new file mode 100644 index 00000000..ede8ac21 --- /dev/null +++ b/themes/ultra-instinct-sign.yaml @@ -0,0 +1,49 @@ +name: "Ultra Instinct Sign" +source: + marketplace_id: "JuanLias.ultra-instinct-theme" + version: "0.1.4" + installs: 73 + author: "Juan Lias" + repo: "https://github.com/juanlias/ultra-instinct-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JuanLias.ultra-instinct-theme" +colors: + bg: "#0D1017" + fg: "#B0B5C0" + black: "#0D1017" + red: "#FF3366" + green: "#00FF99" + yellow: "#FFCB6B" + blue: "#3D5AFE" + magenta: "#AA00FF" + cyan: "#00E5FF" + white: "#DCE0E5" + brightBlack: "#606080" + brightRed: "#FF6688" + brightGreen: "#66FFAA" + brightYellow: "#FFE082" + brightBlue: "#82B1FF" + brightMagenta: "#EA80FC" + brightCyan: "#80F0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 267 + contrast: + fg: 61.8 + black: 0 + red: 40 + green: 87.7 + yellow: 79.5 + blue: 26.7 + magenta: 29 + cyan: 78.6 + white: 87.1 + brightBlack: 21.3 + brightRed: 48.4 + brightGreen: 90.1 + brightYellow: 88.9 + brightBlue: 59.2 + brightMagenta: 56 + brightCyan: 87.3 + brightWhite: 107.4 diff --git a/themes/umbra.yaml b/themes/umbra.yaml new file mode 100644 index 00000000..00b6d66d --- /dev/null +++ b/themes/umbra.yaml @@ -0,0 +1,49 @@ +name: "umbra" +source: + marketplace_id: "greven.umbra" + version: "1.4.10" + installs: 17301 + author: "greven" + repo: "https://github.com/greven/umbra-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=greven.umbra" +colors: + bg: "#141414" + fg: "#CCCCCC" + black: "#282A36" + red: "#F37F97" + green: "#5ADECD" + yellow: "#F2A272" + blue: "#8897F4" + magenta: "#C574DD" + cyan: "#79E6F3" + white: "#BEBEC1" + brightBlack: "#414458" + brightRed: "#FF4971" + brightGreen: "#18E3C8" + brightYellow: "#FF8037" + brightBlue: "#556FFF" + brightMagenta: "#B043D1" + brightCyan: "#3FDCEE" + brightWhite: "#FDFDFD" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 74.9 + black: 0 + red: 52 + green: 73.9 + yellow: 61.6 + blue: 48.9 + magenta: 44.2 + cyan: 81.1 + white: 66.9 + brightBlack: 9.5 + brightRed: 42.4 + brightGreen: 74.6 + brightYellow: 52.7 + brightBlue: 33.1 + brightMagenta: 29.9 + brightCyan: 73.6 + brightWhite: 105.8 diff --git a/themes/umi.yaml b/themes/umi.yaml new file mode 100644 index 00000000..ddb3151d --- /dev/null +++ b/themes/umi.yaml @@ -0,0 +1,49 @@ +name: "Umi" +source: + marketplace_id: "TobiasTimm.umi" + version: "1.1.2" + installs: 2886 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/umi" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.umi" +colors: + bg: "#1C2B45" + fg: "#D4D4D4" + black: "#6F7899" + red: "#F1888E" + green: "#12D8C3" + yellow: "#FFEDCB" + blue: "#15BDDB" + magenta: "#9DA5E8" + cyan: "#D6E9FF" + white: "#FFFFFF" + brightBlack: "#6F7899" + brightRed: "#F1888E" + brightGreen: "#12D8C3" + brightYellow: "#FFEDCB" + brightBlue: "#15BDDB" + brightMagenta: "#9DA5E8" + brightCyan: "#D6E9FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 261 + contrast: + fg: 76.4 + black: 27.4 + red: 50.5 + green: 65.7 + yellow: 93.2 + blue: 54.3 + magenta: 51.9 + cyan: 88.1 + white: 103.8 + brightBlack: 27.4 + brightRed: 50.5 + brightGreen: 65.7 + brightYellow: 93.2 + brightBlue: 54.3 + brightMagenta: 51.9 + brightCyan: 88.1 + brightWhite: 103.8 diff --git a/themes/ump-45-leva.yaml b/themes/ump-45-leva.yaml new file mode 100644 index 00000000..fbd12486 --- /dev/null +++ b/themes/ump-45-leva.yaml @@ -0,0 +1,49 @@ +name: "UMP 45 / LEVA" +source: + marketplace_id: "PlutonicVoid.Leva-ump45" + version: "1.1.0" + installs: 18 + author: "PlutonicVoid" + repo: "https://github.com/ThanatosSystemOmegaVI/leva-ump45-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PlutonicVoid.Leva-ump45" +colors: + bg: "#151515" + fg: "#E6DECE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 86.2 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/unbluelievable.yaml b/themes/unbluelievable.yaml new file mode 100644 index 00000000..d47e7c87 --- /dev/null +++ b/themes/unbluelievable.yaml @@ -0,0 +1,49 @@ +name: "UnBlueLievable!" +source: + marketplace_id: "Yalright.unbluelievable" + version: "0.0.4" + installs: 95 + author: "Yalright" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Yalright.unbluelievable" +colors: + bg: "#170C38" + fg: "#C0B6B6" + black: "#5E5E5E" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#DEDEDE" + brightBlack: "#7B7B7B" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 289 + contrast: + fg: 63.2 + black: 18.7 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 85.7 + brightBlack: 31.4 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/undefined.yaml b/themes/undefined.yaml new file mode 100644 index 00000000..ea69cdfa --- /dev/null +++ b/themes/undefined.yaml @@ -0,0 +1,49 @@ +name: "Undefined" +source: + marketplace_id: "so1ve.theme-undefined" + version: "1.1.0" + installs: 63 + author: "so1ve" + repo: "https://github.com/so1ve/vscode-theme-undefined" + url: "https://marketplace.visualstudio.com/items?itemName=so1ve.theme-undefined" +colors: + bg: "#262626" + fg: "#DBD7CA" + black: "#3F4451" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#06B6D4" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 79.2 + black: 0 + red: 38.7 + green: 34.6 + yellow: 73.5 + blue: 39.3 + magenta: 41.8 + cyan: 51.8 + white: 79.2 + brightBlack: 27.5 + brightRed: 38.7 + brightGreen: 34.6 + brightYellow: 73.5 + brightBlue: 39.3 + brightMagenta: 41.8 + brightCyan: 51.8 + brightWhite: 104.8 diff --git a/themes/under-theme.yaml b/themes/under-theme.yaml new file mode 100644 index 00000000..f34bf234 --- /dev/null +++ b/themes/under-theme.yaml @@ -0,0 +1,49 @@ +name: "Under Theme" +source: + marketplace_id: "RLabsInc.rlabs-theme-collection" + version: "0.1.4" + installs: 181 + author: "RLabs Inc." + repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" + url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" +colors: + bg: "#0D101A" + fg: "#FFFFFF" + black: "#292929" + red: "#FF8686" + green: "#7BD19E" + yellow: "#FFC59E" + blue: "#78A4BD" + magenta: "#C871B4" + cyan: "#76A9AC" + white: "#FFFFFF" + brightBlack: "#D6D2DA" + brightRed: "#FF7575" + brightGreen: "#9FFFC6" + brightYellow: "#FFEFB7" + brightBlue: "#A6D9F7" + brightMagenta: "#6D8296" + brightCyan: "#9CBEC5" + brightWhite: "#C9C6C9" +meta: + mode: "dark" + accent: "orange" + hue: 271 + contrast: + fg: 107.4 + black: 0 + red: 56.1 + green: 67.9 + yellow: 78.2 + blue: 49.4 + magenta: 41.8 + cyan: 50.5 + white: 107.4 + brightBlack: 79.7 + brightRed: 51.2 + brightGreen: 94.4 + brightYellow: 97 + brightBlue: 78.9 + brightMagenta: 34.1 + brightCyan: 63.6 + brightWhite: 72.2 diff --git a/themes/underdark-fork.yaml b/themes/underdark-fork.yaml new file mode 100644 index 00000000..e637a622 --- /dev/null +++ b/themes/underdark-fork.yaml @@ -0,0 +1,49 @@ +name: "Underdark - Fork" +source: + marketplace_id: "SanuKumar.rik" + version: "1.0.7" + installs: 99 + author: "Sanu Kumar" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SanuKumar.rik" +colors: + bg: "#1B1B1B" + fg: "#AF8BFF" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 49.2 + black: 0 + red: 38.2 + green: 85.6 + yellow: 90.8 + blue: 37 + magenta: 44.8 + cyan: 75.6 + white: 51 + brightBlack: 21.6 + brightRed: 46.7 + brightGreen: 92.1 + brightYellow: 79 + brightBlue: 71.1 + brightMagenta: 66.4 + brightCyan: 89.2 + brightWhite: 72.4 diff --git a/themes/underdark-v2.yaml b/themes/underdark-v2.yaml new file mode 100644 index 00000000..55c3ab1e --- /dev/null +++ b/themes/underdark-v2.yaml @@ -0,0 +1,49 @@ +name: "Underdark v2" +source: + marketplace_id: "MikeBuslenko.underdark-v2" + version: "0.0.2" + installs: 167 + author: "Mike Buslenko" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MikeBuslenko.underdark-v2" +colors: + bg: "#0A0A0A" + fg: "#D0D7FF" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 83.3 + black: 7.3 + red: 39.5 + green: 87 + yellow: 92.2 + blue: 38.3 + magenta: 46.1 + cyan: 77 + white: 52.3 + brightBlack: 22.9 + brightRed: 48 + brightGreen: 93.4 + brightYellow: 80.3 + brightBlue: 72.4 + brightMagenta: 67.7 + brightCyan: 90.5 + brightWhite: 73.7 diff --git a/themes/understated-no-italics.yaml b/themes/understated-no-italics.yaml new file mode 100644 index 00000000..31e81d5c --- /dev/null +++ b/themes/understated-no-italics.yaml @@ -0,0 +1,49 @@ +name: "Understated (no-italics)" +source: + marketplace_id: "hnrchrdl.understated-theme-vscode" + version: "0.1.2" + installs: 1017 + author: "hnrchrdl" + repo: "https://github.com/hnrchrdl/understated-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hnrchrdl.understated-theme-vscode" +colors: + bg: "#2F3640" + fg: "#F5F6FA" + black: "#353B48" + red: "#E84118" + green: "#44BD32" + yellow: "#FBC531" + blue: "#40739E" + magenta: "#9C88FF" + cyan: "#00A8FF" + white: "#F5F6FA" + brightBlack: "#718093" + brightRed: "#E84118" + brightGreen: "#00A8FF" + brightYellow: "#FBC531" + brightBlue: "#00A8FF" + brightMagenta: "#9C88FF" + brightCyan: "#487EB0" + brightWhite: "#F5F6FA" +meta: + mode: "dark" + accent: "orange" + hue: 257 + contrast: + fg: 95.5 + black: 0 + red: 28.9 + green: 47.7 + yellow: 69.6 + blue: 20.5 + magenta: 40.9 + cyan: 45.2 + white: 95.5 + brightBlack: 27.5 + brightRed: 28.9 + brightGreen: 45.2 + brightYellow: 69.6 + brightBlue: 45.2 + brightMagenta: 40.9 + brightCyan: 25.6 + brightWhite: 95.5 diff --git a/themes/unicorn-dark.yaml b/themes/unicorn-dark.yaml new file mode 100644 index 00000000..d071e926 --- /dev/null +++ b/themes/unicorn-dark.yaml @@ -0,0 +1,49 @@ +name: "Unicorn dark" +source: + marketplace_id: "MarfahTechnologies.unicorn-dark" + version: "1.0.0" + installs: 215 + author: "Marfah Technologies" + repo: "https://github.com/FahadQasim283/unicorn-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MarfahTechnologies.unicorn-dark" +colors: + bg: "#131212" + fg: "#D4D4D4" + black: "#E8ACAC" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E4B23D" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E6D577" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.9 + black: 65.2 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.2 + cyan: 48 + white: 64.4 + brightBlack: 22.4 + brightRed: 39 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 79.9 diff --git a/themes/unicorn.yaml b/themes/unicorn.yaml new file mode 100644 index 00000000..a2a5de25 --- /dev/null +++ b/themes/unicorn.yaml @@ -0,0 +1,49 @@ +name: "Unicorn" +source: + marketplace_id: "walele993.fable-code-theme" + version: "1.2.0" + installs: 46 + author: "Gabriele Meucci" + repo: "https://github.com/walele993/fable_a_vsc_theme" + url: "https://marketplace.visualstudio.com/items?itemName=walele993.fable-code-theme" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#E85A94" + green: "#6C9C86" + yellow: "#B8A898" + blue: "#7A4EBF" + magenta: "#D6409F" + cyan: "#A3C9A3" + white: "#333333" + brightBlack: "#888888" + brightRed: "#E85A94" + brightGreen: "#6C9C86" + brightYellow: "#B8A898" + brightBlue: "#7A4EBF" + brightMagenta: "#D6409F" + brightCyan: "#A3C9A3" + brightWhite: "#333333" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 98.7 + black: 0 + red: 59.8 + green: 58.1 + yellow: 45.6 + blue: 78.2 + magenta: 67.2 + cyan: 34.4 + white: 98.7 + brightBlack: 63.1 + brightRed: 59.8 + brightGreen: 58.1 + brightYellow: 45.6 + brightBlue: 78.2 + brightMagenta: 67.2 + brightCyan: 34.4 + brightWhite: 98.7 diff --git a/themes/unicornio-dark.yaml b/themes/unicornio-dark.yaml new file mode 100644 index 00000000..d79260d4 --- /dev/null +++ b/themes/unicornio-dark.yaml @@ -0,0 +1,49 @@ +name: "unicornio dark" +source: + marketplace_id: "unicorniodev.unicornio-dark" + version: "1.1.0" + installs: 229 + author: "FlorLuzDuarte" + repo: "https://github.com/unicorniodev/unicornio-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=unicorniodev.unicornio-dark" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#FF9580" + green: "#33FFD3" + yellow: "#FFFAAD" + blue: "#569CFF" + magenta: "#FB36DB" + cyan: "#32CCFF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF9580" + brightGreen: "#33FFD3" + brightYellow: "#FFFAAD" + brightBlue: "#569CFF" + brightMagenta: "#FB36DB" + brightCyan: "#32CCFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 59 + green: 88.6 + yellow: 100.5 + blue: 46.9 + magenta: 42.9 + cyan: 65.8 + white: 89.2 + brightBlack: 21.2 + brightRed: 59 + brightGreen: 88.6 + brightYellow: 100.5 + brightBlue: 46.9 + brightMagenta: 42.9 + brightCyan: 65.8 + brightWhite: 89.2 diff --git a/themes/unieye.yaml b/themes/unieye.yaml new file mode 100644 index 00000000..a1b4550f --- /dev/null +++ b/themes/unieye.yaml @@ -0,0 +1,49 @@ +name: "UniEye" +source: + marketplace_id: "hbthen3rd.unieye" + version: "1.1.0" + installs: 1882 + author: "hb" + repo: "https://github.com/hbthen3rd/unieye-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=hbthen3rd.unieye" +colors: + bg: "#0B0A10" + fg: "#CAC3DF" + black: "#2E2840" + red: "#9F2846" + green: "#149F37" + yellow: "#DF8B38" + blue: "#6238DF" + magenta: "#A148BF" + cyan: "#3C869F" + white: "#908B9F" + brightBlack: "#453C60" + brightRed: "#BF3054" + brightGreen: "#18BF42" + brightYellow: "#FF9F40" + brightBlue: "#7040FF" + brightMagenta: "#BC54DF" + brightCyan: "#48A1BF" + brightWhite: "#ADA7BF" +meta: + mode: "dark" + accent: "magenta" + hue: 292 + contrast: + fg: 72.4 + black: 0 + red: 17.5 + green: 39.8 + yellow: 50.3 + blue: 19.8 + magenta: 27.5 + cyan: 33.4 + white: 41.2 + brightBlack: 8.8 + brightRed: 25 + brightGreen: 54.3 + brightYellow: 62.8 + brightBlue: 25.5 + brightMagenta: 36.3 + brightCyan: 45.9 + brightWhite: 56.2 diff --git a/themes/uniquezhd.yaml b/themes/uniquezhd.yaml new file mode 100644 index 00000000..3107db43 --- /dev/null +++ b/themes/uniquezhd.yaml @@ -0,0 +1,49 @@ +name: "UniquezHD" +source: + marketplace_id: "UniquezHD.uniquezhd" + version: "1.0.6" + installs: 61 + author: "UniquezHD" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=UniquezHD.uniquezhd" +colors: + bg: "#2D2B55" + fg: "#FFFFFF" + black: "#000000" + red: "#EC3A37" + green: "#3AD900" + yellow: "#FAD000" + blue: "#6943FF" + magenta: "#FF2C70" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#5C5C61" + brightRed: "#EC3A37" + brightGreen: "#3AD900" + brightYellow: "#FAD000" + brightBlue: "#6943FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 283 + contrast: + fg: 102.7 + black: 0 + red: 30.6 + green: 62.1 + yellow: 75.2 + blue: 20.3 + magenta: 34.9 + cyan: 88.6 + white: 102.7 + brightBlack: 13.8 + brightRed: 30.6 + brightGreen: 62.1 + brightYellow: 75.2 + brightBlue: 20.3 + brightMagenta: 60.1 + brightCyan: 88.6 + brightWhite: 102.7 diff --git a/themes/unitsmash.yaml b/themes/unitsmash.yaml new file mode 100644 index 00000000..22c684b1 --- /dev/null +++ b/themes/unitsmash.yaml @@ -0,0 +1,49 @@ +name: "UnitSmash" +source: + marketplace_id: "rajeshvu.unitsmash-theme" + version: "1.1.1" + installs: 35 + author: "Rajesh V U" + repo: "https://github.com/rajeshvu/vscode-theme-unitsmash" + url: "https://marketplace.visualstudio.com/items?itemName=rajeshvu.unitsmash-theme" +colors: + bg: "#101016" + fg: "#D2D2D2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 78.8 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.6 diff --git a/themes/unity-theme.yaml b/themes/unity-theme.yaml new file mode 100644 index 00000000..46b80514 --- /dev/null +++ b/themes/unity-theme.yaml @@ -0,0 +1,49 @@ +name: "Unity Theme" +source: + marketplace_id: "TallesSouza.Unity-theme" + version: "1.1.0" + installs: 1389 + author: "Talles Souza" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TallesSouza.Unity-theme" +colors: + bg: "#0D0D0D" + fg: "#FFFFFF" + black: "#545454" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#6F6F6F" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.6 + black: 15.5 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 26.7 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/universe-gray-italic.yaml b/themes/universe-gray-italic.yaml new file mode 100644 index 00000000..e12ef471 --- /dev/null +++ b/themes/universe-gray-italic.yaml @@ -0,0 +1,49 @@ +name: "Universe Gray Italic" +source: + marketplace_id: "MatiasOlivera.universe" + version: "1.9.0" + installs: 20196 + author: "Matías Olivera" + repo: "https://github.com/MatiasOlivera/universe-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MatiasOlivera.universe" +colors: + bg: "#1A1A1A" + fg: "#DDDDDD" + black: "#373737" + red: "#FFA2A2" + green: "#BBD99E" + yellow: "#E6D791" + blue: "#9AC6F2" + magenta: "#C1A2FF" + cyan: "#92D8E6" + white: "#DDDDDD" + brightBlack: "#4C4C4C" + brightRed: "#FFB3B3" + brightGreen: "#C9E2AF" + brightYellow: "#ECE0A5" + brightBlue: "#ACD1F5" + brightMagenta: "#CCB3FF" + brightCyan: "#A5E0EC" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 84.7 + black: 0 + red: 64.7 + green: 76.4 + yellow: 80.6 + blue: 68.3 + magenta: 59.3 + cyan: 74.9 + white: 84.7 + brightBlack: 11.4 + brightRed: 71.2 + brightGreen: 82.7 + brightYellow: 86 + brightBlue: 74.9 + brightMagenta: 67 + brightCyan: 80.5 + brightWhite: 98 diff --git a/themes/universe-italic.yaml b/themes/universe-italic.yaml new file mode 100644 index 00000000..e0ff0597 --- /dev/null +++ b/themes/universe-italic.yaml @@ -0,0 +1,49 @@ +name: "Universe Italic" +source: + marketplace_id: "MatiasOlivera.universe" + version: "1.9.0" + installs: 20196 + author: "Matías Olivera" + repo: "https://github.com/MatiasOlivera/universe-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MatiasOlivera.universe" +colors: + bg: "#0E1729" + fg: "#D6D9E0" + black: "#2E384D" + red: "#FFA2A2" + green: "#BBD99E" + yellow: "#E6D791" + blue: "#9AC6F2" + magenta: "#C1A2FF" + cyan: "#92D8E6" + white: "#D6D9E0" + brightBlack: "#3D485F" + brightRed: "#FFB3B3" + brightGreen: "#C9E2AF" + brightYellow: "#ECE0A5" + brightBlue: "#ACD1F5" + brightMagenta: "#CCB3FF" + brightCyan: "#A5E0EC" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "magenta" + hue: 263 + contrast: + fg: 82.4 + black: 0 + red: 64.9 + green: 76.7 + yellow: 80.9 + blue: 68.5 + magenta: 59.6 + cyan: 75.2 + white: 82.4 + brightBlack: 10.2 + brightRed: 71.4 + brightGreen: 82.9 + brightYellow: 86.3 + brightBlue: 75.2 + brightMagenta: 67.2 + brightCyan: 80.8 + brightWhite: 98.3 diff --git a/themes/universe-purple-italic.yaml b/themes/universe-purple-italic.yaml new file mode 100644 index 00000000..fdd3d176 --- /dev/null +++ b/themes/universe-purple-italic.yaml @@ -0,0 +1,49 @@ +name: "Universe Purple Italic" +source: + marketplace_id: "MatiasOlivera.universe" + version: "1.9.0" + installs: 20196 + author: "Matías Olivera" + repo: "https://github.com/MatiasOlivera/universe-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MatiasOlivera.universe" +colors: + bg: "#150E29" + fg: "#D8D5DF" + black: "#362E4D" + red: "#FFA2A2" + green: "#BBD99E" + yellow: "#E6D791" + blue: "#9AC6F2" + magenta: "#C1A2FF" + cyan: "#92D8E6" + white: "#D8D5DF" + brightBlack: "#463D5F" + brightRed: "#FFB3B3" + brightGreen: "#C9E2AF" + brightYellow: "#ECE0A5" + brightBlue: "#ACD1F5" + brightMagenta: "#CCB3FF" + brightCyan: "#A5E0EC" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "magenta" + hue: 293 + contrast: + fg: 81.2 + black: 0 + red: 65.3 + green: 77 + yellow: 81.3 + blue: 68.9 + magenta: 59.9 + cyan: 75.6 + white: 81.2 + brightBlack: 8.5 + brightRed: 71.8 + brightGreen: 83.3 + brightYellow: 86.7 + brightBlue: 75.5 + brightMagenta: 67.6 + brightCyan: 81.2 + brightWhite: 98.6 diff --git a/themes/universe.yaml b/themes/universe.yaml new file mode 100644 index 00000000..8286f9f1 --- /dev/null +++ b/themes/universe.yaml @@ -0,0 +1,49 @@ +name: "Universe" +source: + marketplace_id: "terkoshi.UN1VERSE" + version: "1.0.0" + installs: 24 + author: "Terkoshi646" + repo: "https://github.com/Terkoshi" + url: "https://marketplace.visualstudio.com/items?itemName=terkoshi.UN1VERSE" +colors: + bg: "#1D010F" + fg: "#62C07A" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 351 + contrast: + fg: 57.6 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.2 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/unlight-v-2.yaml b/themes/unlight-v-2.yaml new file mode 100644 index 00000000..9edf0c92 --- /dev/null +++ b/themes/unlight-v-2.yaml @@ -0,0 +1,49 @@ +name: "Unlight v.2" +source: + marketplace_id: "essequiel.unlighted" + version: "1.2.0" + installs: 40 + author: "essequiel" + repo: "https://github.com/essequie1/unlighted" + url: "https://marketplace.visualstudio.com/items?itemName=essequiel.unlighted" +colors: + bg: "#0A0A0A" + fg: "#A7A7A7" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 54.5 + black: 7.3 + red: 39.5 + green: 87 + yellow: 92.2 + blue: 38.3 + magenta: 46.1 + cyan: 77 + white: 52.3 + brightBlack: 22.9 + brightRed: 48 + brightGreen: 93.4 + brightYellow: 80.3 + brightBlue: 72.4 + brightMagenta: 67.7 + brightCyan: 90.5 + brightWhite: 73.7 diff --git a/themes/untitled-fork-fork.yaml b/themes/untitled-fork-fork.yaml new file mode 100644 index 00000000..bdca9a54 --- /dev/null +++ b/themes/untitled-fork-fork.yaml @@ -0,0 +1,49 @@ +name: "Untitled - Fork - Fork" +source: + marketplace_id: "xynny.aquaticblue-theme" + version: "0.0.1" + installs: 1105 + author: "xynny" + repo: "https://github.com/xynnylol/vsthemes" + url: "https://marketplace.visualstudio.com/items?itemName=xynny.aquaticblue-theme" +colors: + bg: "#001821" + fg: "#D4D4D4" + black: "#797575" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 225 + contrast: + fg: 79.5 + black: 29.1 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 106.9 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/untitled-fork.yaml b/themes/untitled-fork.yaml new file mode 100644 index 00000000..cb17a943 --- /dev/null +++ b/themes/untitled-fork.yaml @@ -0,0 +1,49 @@ +name: "Untitled - Fork" +source: + marketplace_id: "FabianLeGair.earthen-bog" + version: "0.0.2" + installs: 71 + author: "Fabian LeGair" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=FabianLeGair.earthen-bog" +colors: + bg: "#3D4333" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: 124 + contrast: + fg: 97.9 + black: 10.1 + red: 17.7 + green: 42.7 + yellow: 33.8 + blue: 0 + magenta: 17.1 + cyan: 31.1 + white: 0 + brightBlack: 13 + brightRed: 17.7 + brightGreen: 51.3 + brightYellow: 51.3 + brightBlue: 0 + brightMagenta: 17.1 + brightCyan: 31.1 + brightWhite: 43.5 diff --git a/themes/untitled.yaml b/themes/untitled.yaml new file mode 100644 index 00000000..b9f270ab --- /dev/null +++ b/themes/untitled.yaml @@ -0,0 +1,49 @@ +name: "Untitled" +source: + marketplace_id: "invillia.Code-Like-A-Rainbow" + version: "0.3.0" + installs: 10472 + author: "invillia" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=invillia.Code-Like-A-Rainbow" +colors: + bg: "#1E1E1E" + fg: "#C86DA9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#4E6E90" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 38.9 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 23.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 106 diff --git a/themes/unyodusk.yaml b/themes/unyodusk.yaml new file mode 100644 index 00000000..67c28059 --- /dev/null +++ b/themes/unyodusk.yaml @@ -0,0 +1,49 @@ +name: "UnyoDusk" +source: + marketplace_id: "UnyoDusk.unyocorp" + version: "1.0.3" + installs: 131 + author: "UnyoDusk" + repo: "https://github.com/firdodev/unyodusk" + url: "https://marketplace.visualstudio.com/items?itemName=UnyoDusk.unyocorp" +colors: + bg: "#151515" + fg: "#B0B0B0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 58.7 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 107.1 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/updog-light.yaml b/themes/updog-light.yaml new file mode 100644 index 00000000..bacee8a8 --- /dev/null +++ b/themes/updog-light.yaml @@ -0,0 +1,49 @@ +name: "updog light" +source: + marketplace_id: "douggrubba.updog" + version: "1.5.1" + installs: 206 + author: "douggrubba" + repo: "https://github.com/douggrubba/updog-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=douggrubba.updog" +colors: + bg: "#EDEDF6" + fg: "#1F2526" + black: "#000309" + red: "#D1383E" + green: "#43BA79" + yellow: "#E6A055" + blue: "#186CCC" + magenta: "#D149E6" + cyan: "#0BD6BB" + white: "#CFE0E7" + brightBlack: "#000714" + brightRed: "#EB4046" + brightGreen: "#5AFAA2" + brightYellow: "#FFB25E" + brightBlue: "#1C7BE6" + brightMagenta: "#E952FF" + brightCyan: "#07F4D5" + brightWhite: "#EAF1F4" +meta: + mode: "light" + accent: "pink" + hue: 286 + contrast: + fg: 92.2 + black: 95.7 + red: 61.9 + green: 37.7 + yellow: 32.9 + blue: 64.8 + magenta: 52.4 + cyan: 23.9 + white: 0 + brightBlack: 95.6 + brightRed: 54.9 + brightGreen: 0 + brightYellow: 22.4 + brightBlue: 57.9 + brightMagenta: 44.7 + brightCyan: 8.7 + brightWhite: 0 diff --git a/themes/updog.yaml b/themes/updog.yaml new file mode 100644 index 00000000..eb12cec9 --- /dev/null +++ b/themes/updog.yaml @@ -0,0 +1,49 @@ +name: "updog" +source: + marketplace_id: "douggrubba.updog" + version: "1.5.1" + installs: 206 + author: "douggrubba" + repo: "https://github.com/douggrubba/updog-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=douggrubba.updog" +colors: + bg: "#090A09" + fg: "#7CFB9D" + black: "#0B0C0B" + red: "#DE186F" + green: "#78E02F" + yellow: "#B6E02F" + blue: "#3DCDCD" + magenta: "#B953D9" + cyan: "#35D27A" + white: "#9AB28A" + brightBlack: "#040404" + brightRed: "#F80A73" + brightGreen: "#73F21A" + brightYellow: "#C3F50B" + brightBlue: "#24EBEB" + brightMagenta: "#D476F2" + brightCyan: "#1CE474" + brightWhite: "#C3DEB0" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 89 + black: 0 + red: 31 + green: 73.3 + yellow: 78.5 + blue: 65.4 + magenta: 35.2 + cyan: 64.8 + white: 56.5 + brightBlack: 0 + brightRed: 37.1 + brightGreen: 82.1 + brightYellow: 90 + brightBlue: 81 + brightMagenta: 49.2 + brightCyan: 73.2 + brightWhite: 81.4 diff --git a/themes/upward-dark-focus-border-on.yaml b/themes/upward-dark-focus-border-on.yaml new file mode 100644 index 00000000..b676401c --- /dev/null +++ b/themes/upward-dark-focus-border-on.yaml @@ -0,0 +1,49 @@ +name: "Upward Dark (Focus Border On)" +source: + marketplace_id: "upward-solutions.upward-theme" + version: "3.1.0" + installs: 123 + author: "Upward Solutions" + repo: "https://github.com/Upward-Solutions-Agency/VS-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=upward-solutions.upward-theme" +colors: + bg: "#000000" + fg: "#C5C5C5" + black: "#707070" + red: "#E56C7C" + green: "#439D49" + yellow: "#DDAA3C" + blue: "#45B0DE" + magenta: "#D161D1" + cyan: "#1FB2B2" + white: "#E8E8E8" + brightBlack: "#ACABAB" + brightRed: "#EA8A97" + brightGreen: "#86EA8C" + brightYellow: "#E6C070" + brightBlue: "#81CAE9" + brightMagenta: "#EEA0EE" + brightCyan: "#52E0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 71.5 + black: 27.4 + red: 44.3 + green: 40.4 + yellow: 60.8 + blue: 53.8 + magenta: 41.8 + cyan: 51.6 + white: 92.9 + brightBlack: 56.9 + brightRed: 54.1 + brightGreen: 80.7 + brightYellow: 71.5 + brightBlue: 68.8 + brightMagenta: 65.7 + brightCyan: 76.1 + brightWhite: 107.9 diff --git a/themes/upward-dark-legacy-focus-border-on.yaml b/themes/upward-dark-legacy-focus-border-on.yaml new file mode 100644 index 00000000..585e7087 --- /dev/null +++ b/themes/upward-dark-legacy-focus-border-on.yaml @@ -0,0 +1,49 @@ +name: "Upward Dark Legacy (Focus Border On)" +source: + marketplace_id: "upward-solutions.upward-theme" + version: "3.1.0" + installs: 123 + author: "Upward Solutions" + repo: "https://github.com/Upward-Solutions-Agency/VS-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=upward-solutions.upward-theme" +colors: + bg: "#000000" + fg: "#949494" + black: "#6D6D6D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#BE8F00" + blue: "#1C72D1" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C9C9C9" + brightBlack: "#8A8A8A" + brightRed: "#FF6767" + brightGreen: "#33FFAD" + brightYellow: "#FFCB33" + brightBlue: "#62ADFF" + brightMagenta: "#FF86FF" + brightCyan: "#32D7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 44.6 + black: 26.1 + red: 27.7 + green: 54 + yellow: 46.1 + blue: 29 + magenta: 30.8 + cyan: 48.6 + white: 73.9 + brightBlack: 39.6 + brightRed: 48.2 + brightGreen: 89.1 + brightYellow: 79.3 + brightBlue: 56 + brightMagenta: 62.2 + brightCyan: 72.7 + brightWhite: 107.9 diff --git a/themes/urara.yaml b/themes/urara.yaml new file mode 100644 index 00000000..0616dbd6 --- /dev/null +++ b/themes/urara.yaml @@ -0,0 +1,49 @@ +name: "Urara" +source: + marketplace_id: "haxibami.urara-vscode" + version: "0.2.0" + installs: 2927 + author: "haxibami" + repo: "https://github.com/haxibami/urara-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=haxibami.urara-vscode" +colors: + bg: "#1C1921" + fg: "#D2CED9" + black: "#14111A" + red: "#D9989C" + green: "#ABBF86" + yellow: "#D9C77E" + blue: "#9986BF" + magenta: "#A6B4DE" + cyan: "#86BFB6" + white: "#D2CED9" + brightBlack: "#8A8299" + brightRed: "#E6BBBE" + brightGreen: "#B8D2AA" + brightYellow: "#E4D7A4" + brightBlue: "#91ACD1" + brightMagenta: "#CBD3EB" + brightCyan: "#A5CEC7" + brightWhite: "#EDEBEF" +meta: + mode: "dark" + accent: "green" + hue: 302 + contrast: + fg: 76.5 + black: 0 + red: 54.4 + green: 62.4 + yellow: 71.4 + blue: 40.9 + magenta: 60.8 + cyan: 60.5 + white: 76.5 + brightBlack: 36.1 + brightRed: 70.4 + brightGreen: 73.2 + brightYellow: 80.8 + brightBlue: 54.8 + brightMagenta: 78.6 + brightCyan: 70.6 + brightWhite: 93.9 diff --git a/themes/urban-couple.yaml b/themes/urban-couple.yaml new file mode 100644 index 00000000..2697fd2d --- /dev/null +++ b/themes/urban-couple.yaml @@ -0,0 +1,49 @@ +name: "Urban Couple" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#2F1B14" + fg: "#F5DEB3" + black: "#000000" + red: "#CD5C5C" + green: "#228B22" + yellow: "#D4AF37" + blue: "#4682B4" + magenta: "#9370DB" + cyan: "#5F9EA0" + white: "#F5DEB3" + brightBlack: "#000000" + brightRed: "#CD5C5C" + brightGreen: "#228B22" + brightYellow: "#D4AF37" + brightBlue: "#4682B4" + brightMagenta: "#9370DB" + brightCyan: "#5F9EA0" + brightWhite: "#F5DEB3" +meta: + mode: "dark" + accent: "green" + hue: 40 + contrast: + fg: 86 + black: 0 + red: 33 + green: 29.6 + yellow: 59.1 + blue: 31.4 + magenta: 34.5 + cyan: 42.3 + white: 86 + brightBlack: 0 + brightRed: 33 + brightGreen: 29.6 + brightYellow: 59.1 + brightBlue: 31.4 + brightMagenta: 34.5 + brightCyan: 42.3 + brightWhite: 86 diff --git a/themes/urban-forge.yaml b/themes/urban-forge.yaml new file mode 100644 index 00000000..95ea5acf --- /dev/null +++ b/themes/urban-forge.yaml @@ -0,0 +1,49 @@ +name: "Urban Forge" +source: + marketplace_id: "UrbanForge.urbanforge-vscode-theme" + version: "1.2.1" + installs: 504 + author: "UrbanForge" + repo: "https://github.com/rilex037/urbanforge-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=UrbanForge.urbanforge-vscode-theme" +colors: + bg: "#20222C" + fg: "#C4C4C4" + black: "#000000" + red: "#F74E4E" + green: "#5FD392" + yellow: "#E28045" + blue: "#5F96D3" + magenta: "#CF5FD3" + cyan: "#22C3E8" + white: "#9F9191" + brightBlack: "#666666" + brightRed: "#FF5C5C" + brightGreen: "#71FFAF" + brightYellow: "#F9A36F" + brightBlue: "#90C4FF" + brightMagenta: "#FF9ADC" + brightCyan: "#34FFF5" + brightWhite: "#E2E2E2" +meta: + mode: "dark" + accent: "orange" + hue: 276 + contrast: + fg: 68.4 + black: 0 + red: 38.8 + green: 64.9 + yellow: 45.3 + blue: 41.5 + magenta: 38.6 + cyan: 59.4 + white: 42.2 + brightBlack: 20.5 + brightRed: 43.3 + brightGreen: 88.7 + brightYellow: 61.3 + brightBlue: 66.2 + brightMagenta: 63.4 + brightCyan: 89.5 + brightWhite: 86.6 diff --git a/themes/urban-glow.yaml b/themes/urban-glow.yaml new file mode 100644 index 00000000..921dd18b --- /dev/null +++ b/themes/urban-glow.yaml @@ -0,0 +1,49 @@ +name: "Urban Glow" +source: + marketplace_id: "Ranfurly.urban-glow" + version: "1.0.8" + installs: 29 + author: "Ranfurly" + repo: "https://github.com/ranfurIy/urban-glow" + url: "https://marketplace.visualstudio.com/items?itemName=Ranfurly.urban-glow" +colors: + bg: "#000000" + fg: "#DDDDDD" + black: "#000000" + red: "#F0727D" + green: "#8BC98F" + yellow: "#FFC64C" + blue: "#559AD1" + magenta: "#C695C6" + cyan: "#30AFAE" + white: "#C7C7C7" + brightBlack: "#838383" + brightRed: "#F0727D" + brightGreen: "#8BC98F" + brightYellow: "#FFC64C" + brightBlue: "#559AD1" + brightMagenta: "#C695C6" + brightCyan: "#30AFAE" + brightWhite: "#C7C7C7" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86 + black: 0 + red: 48 + green: 65.4 + yellow: 77.5 + blue: 44.9 + magenta: 53.6 + cyan: 50.4 + white: 72.7 + brightBlack: 36.2 + brightRed: 48 + brightGreen: 65.4 + brightYellow: 77.5 + brightBlue: 44.9 + brightMagenta: 53.6 + brightCyan: 50.4 + brightWhite: 72.7 diff --git a/themes/user160.yaml b/themes/user160.yaml new file mode 100644 index 00000000..0891d643 --- /dev/null +++ b/themes/user160.yaml @@ -0,0 +1,49 @@ +name: "user160" +source: + marketplace_id: "user160-theme.user160-theme" + version: "1.0.0" + installs: 10 + author: "user160-theme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=user160-theme.user160-theme" +colors: + bg: "#080B0F" + fg: "#C9D1D9" + black: "#484F58" + red: "#EC8E2C" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FDAC54" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 255 + contrast: + fg: 77.9 + black: 13.4 + red: 53.5 + green: 52.5 + yellow: 52.5 + blue: 52.5 + magenta: 52.5 + cyan: 61.7 + white: 64.4 + brightBlack: 29.6 + brightRed: 67.1 + brightGreen: 65.1 + brightYellow: 65 + brightBlue: 65.1 + brightMagenta: 64.9 + brightCyan: 70.3 + brightWhite: 107.7 diff --git a/themes/userscape-contrast.yaml b/themes/userscape-contrast.yaml new file mode 100644 index 00000000..d39e2cf2 --- /dev/null +++ b/themes/userscape-contrast.yaml @@ -0,0 +1,49 @@ +name: "userscape-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#15181C" + fg: "#DCE2E8" + black: "#20242B" + red: "#BA0E2E" + green: "#A8C0E0" + yellow: "#507DB7" + blue: "#E3BD14" + magenta: "#B3BECC" + cyan: "#DE4D3A" + white: "#EBEFF2" + brightBlack: "#414A56" + brightRed: "#F03E5F" + brightGreen: "#F3F6FB" + brightYellow: "#98B3D5" + brightBlue: "#F2D96B" + brightMagenta: "#F0F2F5" + brightCyan: "#ED9C91" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 87.5 + black: 0 + red: 20.4 + green: 66.3 + yellow: 31.5 + blue: 67.8 + magenta: 65.7 + cyan: 34.2 + white: 95.9 + brightBlack: 10.6 + brightRed: 36.7 + brightGreen: 100.7 + brightYellow: 58.8 + brightBlue: 82.7 + brightMagenta: 98.1 + brightCyan: 59.1 + brightWhite: 106.8 diff --git a/themes/userscape-light.yaml b/themes/userscape-light.yaml new file mode 100644 index 00000000..36acf822 --- /dev/null +++ b/themes/userscape-light.yaml @@ -0,0 +1,49 @@ +name: "userscape-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#F5F8FC" + fg: "#879BB0" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#A8C0E0" + yellow: "#355B8C" + blue: "#E3BD14" + magenta: "#808C9C" + cyan: "#DE4D3A" + white: "#96A8BA" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F3F6FB" + brightYellow: "#638DC4" + brightBlue: "#F2D96B" + brightMagenta: "#B9C0C9" + brightCyan: "#ED9C91" + brightWhite: "#C5CED8" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 50.4 + black: 0 + red: 75.9 + green: 30.7 + yellow: 79.4 + blue: 29.3 + magenta: 57.3 + cyan: 62 + white: 43.6 + brightBlack: 0 + brightRed: 59.5 + brightGreen: 0 + brightYellow: 57.2 + brightBlue: 15.2 + brightMagenta: 30 + brightCyan: 37.7 + brightWhite: 22.4 diff --git a/themes/userscape.yaml b/themes/userscape.yaml new file mode 100644 index 00000000..0aef438a --- /dev/null +++ b/themes/userscape.yaml @@ -0,0 +1,49 @@ +name: "userscape" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#323A42" + fg: "#DCE2E8" + black: "#3D4750" + red: "#BA0E2E" + green: "#A8C0E0" + yellow: "#507DB7" + blue: "#E3BD14" + magenta: "#B3BECC" + cyan: "#DE4D3A" + white: "#EBEFF2" + brightBlack: "#5E6D7C" + brightRed: "#F03E5F" + brightGreen: "#F3F6FB" + brightYellow: "#98B3D5" + brightBlue: "#F2D96B" + brightMagenta: "#F0F2F5" + brightCyan: "#ED9C91" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 81 + black: 0 + red: 13.9 + green: 59.8 + yellow: 24.9 + blue: 61.3 + magenta: 59.2 + cyan: 27.6 + white: 89.4 + brightBlack: 17.7 + brightRed: 30.2 + brightGreen: 94.2 + brightYellow: 52.3 + brightBlue: 76.2 + brightMagenta: 91.6 + brightCyan: 52.5 + brightWhite: 100.3 diff --git a/themes/utheme.yaml b/themes/utheme.yaml new file mode 100644 index 00000000..f2f17933 --- /dev/null +++ b/themes/utheme.yaml @@ -0,0 +1,49 @@ +name: "uTheme" +source: + marketplace_id: "uEriic.utheme" + version: "0.0.2" + installs: 220 + author: "uEriic" + repo: "https://github.com/uEriic/uTheme" + url: "https://marketplace.visualstudio.com/items?itemName=uEriic.utheme" +colors: + bg: "#141015" + fg: "#B6CBE0" + black: "#000000" + red: "#C10000" + green: "#00FF7F" + yellow: "#FFD700" + blue: "#4169E1" + magenta: "#FF00FF" + cyan: "#11A8CD" + white: "#F8F8FF" + brightBlack: "#696969" + brightRed: "#FF4949" + brightGreen: "#4AFDA3" + brightYellow: "#FFE558" + brightBlue: "#1E90FF" + brightMagenta: "#FF40FF" + brightCyan: "#29B8DB" + brightWhite: "#DDDDE2" +meta: + mode: "dark" + accent: "pink" + hue: 319 + contrast: + fg: 73 + black: 0 + red: 22.2 + green: 87 + yellow: 83.7 + blue: 28 + magenta: 45.7 + cyan: 48 + white: 103.1 + brightBlack: 23.8 + brightRed: 41.8 + brightGreen: 87.7 + brightYellow: 90.4 + brightBlue: 42.2 + brightMagenta: 48.6 + brightCyan: 55.9 + brightWhite: 85.7 diff --git a/themes/utopia.yaml b/themes/utopia.yaml new file mode 100644 index 00000000..226f6a3e --- /dev/null +++ b/themes/utopia.yaml @@ -0,0 +1,49 @@ +name: "utopia" +source: + marketplace_id: "yingfc.yingfc" + version: "0.0.2" + installs: 188 + author: "yingfc" + repo: "https://github.com/yingfc/utopia_color_theme" + url: "https://marketplace.visualstudio.com/items?itemName=yingfc.yingfc" +colors: + bg: "#2E2E2E" + fg: "#E6E6E6" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#99918B" + brightRed: "#FB543F" + brightGreen: "#237E02" + brightYellow: "#FAC03B" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 87 + black: 0 + red: 38.3 + green: 57.3 + yellow: 69.4 + blue: 43.9 + magenta: 15.9 + cyan: 45.8 + white: 43.6 + brightBlack: 39.1 + brightRed: 38.3 + brightGreen: 21.9 + brightYellow: 69.4 + brightBlue: 15.1 + brightMagenta: 15.9 + brightCyan: 45.8 + brightWhite: 95.2 diff --git a/themes/uvadark-rahul-fork.yaml b/themes/uvadark-rahul-fork.yaml new file mode 100644 index 00000000..86991a47 --- /dev/null +++ b/themes/uvadark-rahul-fork.yaml @@ -0,0 +1,49 @@ +name: "Uvadark - Rahul - Fork" +source: + marketplace_id: "syk.bluered" + version: "0.0.1" + installs: 52 + author: "syk" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=syk.bluered" +colors: + bg: "#000000" + fg: "#3AA1FD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 49.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/v-id-contrast.yaml b/themes/v-id-contrast.yaml new file mode 100644 index 00000000..e60cbf5a --- /dev/null +++ b/themes/v-id-contrast.yaml @@ -0,0 +1,49 @@ +name: "vøid-contrast" +source: + marketplace_id: "m1guelsb.void-dark-theme" + version: "0.0.2" + installs: 140 + author: "m1guelsb" + repo: "https://github.com/m1guelsb/void-theme" + url: "https://marketplace.visualstudio.com/items?itemName=m1guelsb.void-dark-theme" +colors: + bg: "#000000" + fg: "#A3A3A3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 52.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/v-id-soft.yaml b/themes/v-id-soft.yaml new file mode 100644 index 00000000..b5c051a6 --- /dev/null +++ b/themes/v-id-soft.yaml @@ -0,0 +1,49 @@ +name: "vøid-soft" +source: + marketplace_id: "m1guelsb.void-dark-theme" + version: "0.0.2" + installs: 140 + author: "m1guelsb" + repo: "https://github.com/m1guelsb/void-theme" + url: "https://marketplace.visualstudio.com/items?itemName=m1guelsb.void-dark-theme" +colors: + bg: "#191A22" + fg: "#808080" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 279 + contrast: + fg: 33.4 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.4 + cyan: 47.2 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.2 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/v01d-theme-alternative.yaml b/themes/v01d-theme-alternative.yaml new file mode 100644 index 00000000..17880bb5 --- /dev/null +++ b/themes/v01d-theme-alternative.yaml @@ -0,0 +1,49 @@ +name: "V01D Theme alternative" +source: + marketplace_id: "victordev079.v01d-theme" + version: "1.4.2" + installs: 30 + author: "victorcarrillo.dev" + repo: "https://github.com/victorcarrillodev/V01D-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=victordev079.v01d-theme" +colors: + bg: "#05040A" + fg: "#BCBCBC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 293 + contrast: + fg: 66.3 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/v01d-theme.yaml b/themes/v01d-theme.yaml new file mode 100644 index 00000000..1e8b0898 --- /dev/null +++ b/themes/v01d-theme.yaml @@ -0,0 +1,49 @@ +name: "V01D Theme" +source: + marketplace_id: "victordev079.v01d-theme" + version: "1.4.2" + installs: 30 + author: "victorcarrillo.dev" + repo: "https://github.com/victorcarrillodev/V01D-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=victordev079.v01d-theme" +colors: + bg: "#05040A" + fg: "#A5A5A5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 293 + contrast: + fg: 53.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/v7.yaml b/themes/v7.yaml new file mode 100644 index 00000000..117f0dd1 --- /dev/null +++ b/themes/v7.yaml @@ -0,0 +1,49 @@ +name: "v7" +source: + marketplace_id: "Tazmaniaco.Tema" + version: "0.0.7" + installs: 663 + author: "Tazmaniaco" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Tazmaniaco.Tema" +colors: + bg: "#050505" + fg: "#B8B8B8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 64 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/vaatu.yaml b/themes/vaatu.yaml new file mode 100644 index 00000000..633142ee --- /dev/null +++ b/themes/vaatu.yaml @@ -0,0 +1,49 @@ +name: "vaatu" +source: + marketplace_id: "Volskaya.irrelevant" + version: "0.0.2" + installs: 33 + author: "Volskaya" + repo: "https://github.com/volskaya/irrelevant" + url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#1C1C1C" + red: "#FF1652" + green: "#F148FB" + yellow: "#FFFF33" + blue: "#878787" + magenta: "#979797" + cyan: "#A6A6A6" + white: "#444444" + brightBlack: "#666666" + brightRed: "#FFFF33" + brightGreen: "#F148FB" + brightYellow: "#DDDDDD" + brightBlue: "#878787" + brightMagenta: "#979797" + brightCyan: "#A6A6A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 36.8 + green: 45.2 + yellow: 101.2 + blue: 36.6 + magenta: 44.6 + cyan: 52.5 + white: 8.3 + brightBlack: 21.5 + brightRed: 101.2 + brightGreen: 45.2 + brightYellow: 84.4 + brightBlue: 36.6 + brightMagenta: 44.6 + brightCyan: 52.5 + brightWhite: 106.3 diff --git a/themes/vagalume-dev.yaml b/themes/vagalume-dev.yaml new file mode 100644 index 00000000..66b554af --- /dev/null +++ b/themes/vagalume-dev.yaml @@ -0,0 +1,49 @@ +name: "Vagalume Dev" +source: + marketplace_id: "vagalumedev.vagalume-dev-theme" + version: "1.0.1" + installs: 375 + author: "Vagalume Dev" + repo: "https://github.com/vagalumedev/vagalume-dev-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=vagalumedev.vagalume-dev-theme" +colors: + bg: "#040402" + fg: "#FBBA00" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E1C542" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#39CDE2" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFE05B" + brightBlue: "#74BCFF" + brightMagenta: "#D670D6" + brightCyan: "#74F2FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 71.7 + black: 7.4 + red: 27.7 + green: 54 + yellow: 72.1 + blue: 28.4 + magenta: 30.8 + cyan: 66.5 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 88.7 + brightBlue: 63.2 + brightMagenta: 46.4 + brightCyan: 88.1 + brightWhite: 91 diff --git a/themes/vagruvboxtheme-color-theme.yaml b/themes/vagruvboxtheme-color-theme.yaml new file mode 100644 index 00000000..2ddb741f --- /dev/null +++ b/themes/vagruvboxtheme-color-theme.yaml @@ -0,0 +1,49 @@ +name: "VAGruvboxTheme-color-theme" +source: + marketplace_id: "MinchCoder.visual-assist-gruvbox-theme" + version: "0.7.11" + installs: 377 + author: "Minch Coder" + repo: "https://github.com/Minchh/vscode-gruvbox-visualassist-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MinchCoder.visual-assist-gruvbox-theme" +colors: + bg: "#1D2021" + fg: "#EBDBB2" + black: "#1E1E1E" + red: "#CC241D" + green: "#87AD72" + yellow: "#CEA800" + blue: "#569CD6" + magenta: "#D8A0DF" + cyan: "#4CE2E2" + white: "#EEEEEE" + brightBlack: "#131313" + brightRed: "#FB4934" + brightGreen: "#B5CEA8" + brightYellow: "#FFD700" + brightBlue: "#7ABCF3" + brightMagenta: "#F0C2F7" + brightCyan: "#9FFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.3 + black: 0 + red: 24.2 + green: 50.1 + yellow: 55.4 + blue: 44 + magenta: 59.3 + cyan: 75 + white: 94.7 + brightBlack: 0 + brightRed: 39.1 + brightGreen: 70.4 + brightYellow: 82.2 + brightBlue: 60.8 + brightMagenta: 76.7 + brightCyan: 95.3 + brightWhite: 105.8 diff --git a/themes/vague-neovim-theme-extended-light.yaml b/themes/vague-neovim-theme-extended-light.yaml new file mode 100644 index 00000000..2d571efd --- /dev/null +++ b/themes/vague-neovim-theme-extended-light.yaml @@ -0,0 +1,49 @@ +name: "Vague neovim Theme Extended Light" +source: + marketplace_id: "EmmettHintz.Kanagawa-Vague" + version: "0.1.6" + installs: 1197 + author: "Emmett Hintz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.Kanagawa-Vague" +colors: + bg: "#FDFDFE" + fg: "#141415" + black: "#26233A" + red: "#DF6882" + green: "#8CB66D" + yellow: "#F3BE7C" + blue: "#6E94B2" + magenta: "#C48282" + cyan: "#7E98E8" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#DF6882" + brightGreen: "#8CB66D" + brightYellow: "#F3BE7C" + brightBlue: "#6E94B2" + brightMagenta: "#C48282" + brightCyan: "#7E98E8" + brightWhite: "#E0DEF4" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 103.9 + black: 100.9 + red: 58.2 + green: 44.7 + yellow: 28.6 + blue: 58.1 + magenta: 56.2 + cyan: 52.4 + white: 14.6 + brightBlack: 58.3 + brightRed: 58.2 + brightGreen: 44.7 + brightYellow: 28.6 + brightBlue: 58.1 + brightMagenta: 56.2 + brightCyan: 52.4 + brightWhite: 14.6 diff --git a/themes/vague-neovim-theme-extended.yaml b/themes/vague-neovim-theme-extended.yaml new file mode 100644 index 00000000..dc3403dc --- /dev/null +++ b/themes/vague-neovim-theme-extended.yaml @@ -0,0 +1,49 @@ +name: "Vague neovim Theme Extended" +source: + marketplace_id: "EmmettHintz.Kanagawa-Vague" + version: "0.1.6" + installs: 1197 + author: "Emmett Hintz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.Kanagawa-Vague" +colors: + bg: "#141415" + fg: "#CDCDCD" + black: "#26233A" + red: "#DF6882" + green: "#8CB66D" + yellow: "#F3BE7C" + blue: "#6E94B2" + magenta: "#C48282" + cyan: "#7E98E8" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#DF6882" + brightGreen: "#8CB66D" + brightYellow: "#F3BE7C" + brightBlue: "#6E94B2" + brightMagenta: "#C48282" + brightCyan: "#7E98E8" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 75.5 + black: 0 + red: 41.6 + green: 55.5 + yellow: 72.3 + blue: 41.7 + magenta: 43.7 + cyan: 47.5 + white: 87.2 + brightBlack: 41.5 + brightRed: 41.6 + brightGreen: 55.5 + brightYellow: 72.3 + brightBlue: 41.7 + brightMagenta: 43.7 + brightCyan: 47.5 + brightWhite: 87.2 diff --git a/themes/valary.yaml b/themes/valary.yaml new file mode 100644 index 00000000..1f0b6c86 --- /dev/null +++ b/themes/valary.yaml @@ -0,0 +1,49 @@ +name: "Valary" +source: + marketplace_id: "fahadachaudhry.valary" + version: "1.0.0" + installs: 2082 + author: "Fahad Ashraf Chaudhry" + repo: "https://github.com/fahadachaudhry/valary-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=fahadachaudhry.valary" +colors: + bg: "#0F0F0F" + fg: "#5D7075" + black: "#666666" + red: "#DA6771" + green: "#4EB071" + yellow: "#FFF099" + blue: "#399EF4" + magenta: "#B168DF" + cyan: "#21C5C7" + white: "#EFEFEF" + brightBlack: "#666666" + brightRed: "#DA6771" + brightGreen: "#4EB071" + brightYellow: "#FFF099" + brightBlue: "#399EF4" + brightMagenta: "#B168DF" + brightCyan: "#21C5C7" + brightWhite: "#EFEFEF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 25.6 + black: 22.7 + red: 40.3 + green: 49.4 + yellow: 96.7 + blue: 47.3 + magenta: 38.6 + cyan: 60.7 + white: 97 + brightBlack: 22.7 + brightRed: 40.3 + brightGreen: 49.4 + brightYellow: 96.7 + brightBlue: 47.3 + brightMagenta: 38.6 + brightCyan: 60.7 + brightWhite: 97 diff --git a/themes/valkthor-dark-theme.yaml b/themes/valkthor-dark-theme.yaml new file mode 100644 index 00000000..3b84db70 --- /dev/null +++ b/themes/valkthor-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "valkthor-dark-theme" +source: + marketplace_id: "Valkthor.ValkthorTheme" + version: "1.3.0" + installs: 73 + author: "Valkthor" + repo: "https://github.com/Valkthor/ValkthorTheme-vsCode" + url: "https://marketplace.visualstudio.com/items?itemName=Valkthor.ValkthorTheme" +colors: + bg: "#202020" + fg: "#F2F2F8" + black: "#292C36" + red: "#F84547" + green: "#95C76F" + yellow: "#EFA16B" + blue: "#8485CE" + magenta: "#B74989" + cyan: "#64878F" + white: "#D8D8D8" + brightBlack: "#65568A" + brightRed: "#F84547" + brightGreen: "#95C76F" + brightYellow: "#EFA16B" + brightBlue: "#8485CE" + brightMagenta: "#B74989" + brightCyan: "#64878F" + brightWhite: "#F8F8F8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 97.5 + black: 0 + red: 38 + green: 62.5 + yellow: 59.1 + blue: 38.5 + magenta: 26.6 + cyan: 33.3 + white: 80.8 + brightBlack: 17.8 + brightRed: 38 + brightGreen: 62.5 + brightYellow: 59.1 + brightBlue: 38.5 + brightMagenta: 26.6 + brightCyan: 33.3 + brightWhite: 101.1 diff --git a/themes/valley-italic.yaml b/themes/valley-italic.yaml new file mode 100644 index 00000000..5fe4a78e --- /dev/null +++ b/themes/valley-italic.yaml @@ -0,0 +1,49 @@ +name: "Valley Italic" +source: + marketplace_id: "TimGrochowski.valley-vscode" + version: "0.4.0" + installs: 4889 + author: "Tim Grochowski" + repo: "https://github.com/TimGr/valley-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TimGrochowski.valley-vscode" +colors: + bg: "#1E1E1F" + fg: "#BFC7CF" + black: "#282829" + red: "#D66A81" + green: "#78B98A" + yellow: "#D8C67E" + blue: "#5B89DB" + magenta: "#DF91CA" + cyan: "#57B6CD" + white: "#FAFAFA" + brightBlack: "#656567" + brightRed: "#F59EB1" + brightGreen: "#A0E4B2" + brightYellow: "#F5E8B2" + brightBlue: "#91B7F8" + brightMagenta: "#FACCEE" + brightCyan: "#84DCF0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 70.2 + black: 0 + red: 39.2 + green: 54.9 + yellow: 70.3 + blue: 37.7 + magenta: 54.6 + cyan: 54.3 + white: 102.7 + brightBlack: 20.8 + brightRed: 61.5 + brightGreen: 79 + brightYellow: 90.8 + brightBlue: 61 + brightMagenta: 82 + brightCyan: 75.8 + brightWhite: 102.7 diff --git a/themes/valorant-theme-darker.yaml b/themes/valorant-theme-darker.yaml new file mode 100644 index 00000000..ffcc7200 --- /dev/null +++ b/themes/valorant-theme-darker.yaml @@ -0,0 +1,49 @@ +name: "Valorant Theme - Darker" +source: + marketplace_id: "TasnimulHasan.valorant-theme" + version: "4.2.4" + installs: 8379 + author: "Tasnimul Hasan" + repo: "https://github.com/Tasnimul-Hasan/valorant-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TasnimulHasan.valorant-theme" +colors: + bg: "#1D222B" + fg: "#D6E0E8" + black: "#687696" + red: "#E06C75" + green: "#75C074" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#9185E0" + cyan: "#56B6C2" + white: "#D6E0E8" + brightBlack: "#808EAA" + brightRed: "#EF5350" + brightGreen: "#75C074" + brightYellow: "#E49A26" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#87CBFF" + brightWhite: "#F9FAFB" +meta: + mode: "dark" + accent: "orange" + hue: 262 + contrast: + fg: 84.6 + black: 27.7 + red: 40.7 + green: 56.6 + yellow: 69.2 + blue: 53.3 + magenta: 40.7 + cyan: 53.2 + white: 84.6 + brightBlack: 39 + brightRed: 37.9 + brightGreen: 56.6 + brightYellow: 53.7 + brightBlue: 53.3 + brightMagenta: 43.7 + brightCyan: 68.6 + brightWhite: 102.1 diff --git a/themes/valorant-theme-remasterd.yaml b/themes/valorant-theme-remasterd.yaml new file mode 100644 index 00000000..43ba6ff5 --- /dev/null +++ b/themes/valorant-theme-remasterd.yaml @@ -0,0 +1,49 @@ +name: "Valorant Theme - Remasterd" +source: + marketplace_id: "TasnimulHasan.valorant-theme" + version: "4.2.4" + installs: 8379 + author: "Tasnimul Hasan" + repo: "https://github.com/Tasnimul-Hasan/valorant-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TasnimulHasan.valorant-theme" +colors: + bg: "#0F1923" + fg: "#C9D6DA" + black: "#617D8A" + red: "#E57373" + green: "#82C781" + yellow: "#E5C275" + blue: "#64B5F6" + magenta: "#B39AFD" + cyan: "#4DD0E1" + white: "#C9D6DA" + brightBlack: "#95AAB4" + brightRed: "#EF5350" + brightGreen: "#82C781" + brightYellow: "#E89E30" + brightBlue: "#64B5F6" + brightMagenta: "#D792CD" + brightCyan: "#87CBFF" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "orange" + hue: 249 + contrast: + fg: 79.1 + black: 30.3 + red: 44.6 + green: 62.3 + yellow: 71.1 + blue: 57.6 + magenta: 54.8 + cyan: 67.3 + white: 79.1 + brightBlack: 53.2 + brightRed: 39.2 + brightGreen: 62.3 + brightYellow: 57.1 + brightBlue: 57.6 + brightMagenta: 54.4 + brightCyan: 69.8 + brightWhite: 98.2 diff --git a/themes/vampurr.yaml b/themes/vampurr.yaml new file mode 100644 index 00000000..8a89f0ad --- /dev/null +++ b/themes/vampurr.yaml @@ -0,0 +1,49 @@ +name: "vampurr" +source: + marketplace_id: "Sajjad.vampurr" + version: "1.2.0" + installs: 71 + author: "Sajjad" + repo: "https://github.com/sajadabedi/vampurr" + url: "https://marketplace.visualstudio.com/items?itemName=Sajjad.vampurr" +colors: + bg: "#21212C" + fg: "#F8F8F2" + black: "#23232F" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 285 + contrast: + fg: 100.6 + black: 0 + red: 42 + green: 83.5 + yellow: 97.1 + blue: 52.2 + magenta: 53.2 + cyan: 82.5 + white: 100.6 + brightBlack: 26.6 + brightRed: 47.4 + brightGreen: 87.6 + brightYellow: 102.1 + brightBlue: 64.7 + brightMagenta: 61.2 + brightCyan: 95.4 + brightWhite: 105.5 diff --git a/themes/van-gogh-theme.yaml b/themes/van-gogh-theme.yaml new file mode 100644 index 00000000..fb2f5baf --- /dev/null +++ b/themes/van-gogh-theme.yaml @@ -0,0 +1,49 @@ +name: "Van Gogh Theme" +source: + marketplace_id: "kyawzinhtet.van-gogh" + version: "0.0.8" + installs: 8 + author: "Kyaw Zin Htet" + repo: "https://github.com/kyawzinhtett/Van-Gogh-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=kyawzinhtet.van-gogh" +colors: + bg: "#0A192F" + fg: "#F2E2A4" + black: "#0A192F" + red: "#D9822B" + green: "#7FB3D5" + yellow: "#F2E2A4" + blue: "#4A78A8" + magenta: "#D9822B" + cyan: "#9FD3C7" + white: "#F2E2A4" + brightBlack: "#2C4668" + brightRed: "#FF9F1C" + brightGreen: "#9FD3C7" + brightYellow: "#F6F1C1" + brightBlue: "#6BA4D9" + brightMagenta: "#FF9F1C" + brightCyan: "#B8E1DD" + brightWhite: "#FFF3C4" +meta: + mode: "dark" + accent: "yellow" + hue: 258 + contrast: + fg: 87.8 + black: 0 + red: 45.2 + green: 56.4 + yellow: 87.8 + blue: 28.4 + magenta: 45.2 + cyan: 72.3 + white: 87.8 + brightBlack: 8.9 + brightRed: 61.4 + brightGreen: 72.3 + brightYellow: 96.2 + brightBlue: 49.2 + brightMagenta: 61.4 + brightCyan: 82.2 + brightWhite: 98.5 diff --git a/themes/vanilla-jade.yaml b/themes/vanilla-jade.yaml new file mode 100644 index 00000000..56db7059 --- /dev/null +++ b/themes/vanilla-jade.yaml @@ -0,0 +1,49 @@ +name: "vanilla-jade" +source: + marketplace_id: "danjoa.cdr4vsc" + version: "4.2.7" + installs: 5204 + author: "danjoa" + repo: "private" + url: "https://marketplace.visualstudio.com/items?itemName=danjoa.cdr4vsc" +colors: + bg: "#FFFFFF" + fg: "#222222" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.9 + black: 99 + red: 70.5 + green: 59 + yellow: 59.1 + blue: 63.9 + magenta: 70.3 + cyan: 58.3 + white: 11.1 + brightBlack: 76.8 + brightRed: 71 + brightGreen: 76.8 + brightYellow: 70.9 + brightBlue: 58.8 + brightMagenta: 70.2 + brightCyan: 52 + brightWhite: 0 diff --git a/themes/vanilla.yaml b/themes/vanilla.yaml new file mode 100644 index 00000000..0fb60107 --- /dev/null +++ b/themes/vanilla.yaml @@ -0,0 +1,49 @@ +name: "Vanilla" +source: + marketplace_id: "danjoa.cdr4vsc" + version: "4.2.7" + installs: 5204 + author: "danjoa" + repo: "private" + url: "https://marketplace.visualstudio.com/items?itemName=danjoa.cdr4vsc" +colors: + bg: "#FCFCFC" + fg: "#222222" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.1 + black: 97.2 + red: 68.7 + green: 57.2 + yellow: 57.3 + blue: 62.1 + magenta: 68.5 + cyan: 56.5 + white: 9.3 + brightBlack: 75 + brightRed: 69.2 + brightGreen: 75 + brightYellow: 69.1 + brightBlue: 57 + brightMagenta: 68.4 + brightCyan: 50.2 + brightWhite: 0 diff --git a/themes/vapor.yaml b/themes/vapor.yaml new file mode 100644 index 00000000..71c1ca03 --- /dev/null +++ b/themes/vapor.yaml @@ -0,0 +1,49 @@ +name: "vapor" +source: + marketplace_id: "Swerve.vapor-color-theme" + version: "0.0.1" + installs: 2 + author: "Swerve" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Swerve.vapor-color-theme" +colors: + bg: "#070825" + fg: "#46BDFF" + black: "#181A1F" + red: "#FF16B0" + green: "#848BBD" + yellow: "#FCEE54" + blue: "#46BDFF" + magenta: "#FF92DF" + cyan: "#DF81FC" + white: "#FFFFFF" + brightBlack: "#FF16B0" + brightRed: "#F85353" + brightGreen: "#FCEE54" + brightYellow: "#FFFFFF" + brightBlue: "#46BDFF" + brightMagenta: "#FF92DF" + brightCyan: "#FF901F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 61.2 + black: 0 + red: 41.2 + green: 41.3 + yellow: 94.2 + blue: 61.2 + magenta: 63.3 + cyan: 54.5 + white: 107.6 + brightBlack: 41.2 + brightRed: 42.1 + brightGreen: 94.2 + brightYellow: 107.6 + brightBlue: 61.2 + brightMagenta: 63.3 + brightCyan: 57.6 + brightWhite: 107.6 diff --git a/themes/vaporizer-alice-dark.yaml b/themes/vaporizer-alice-dark.yaml new file mode 100644 index 00000000..360676ae --- /dev/null +++ b/themes/vaporizer-alice-dark.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Alice Dark" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#414141" + fg: "#7ADAEC" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 65.7 + black: 10.2 + red: 17.6 + green: 42.6 + yellow: 33.7 + blue: 0 + magenta: 17 + cyan: 31 + white: 0 + brightBlack: 12.9 + brightRed: 17.6 + brightGreen: 51.3 + brightYellow: 51.2 + brightBlue: 0 + brightMagenta: 17 + brightCyan: 31 + brightWhite: 43.4 diff --git a/themes/vaporizer-alice-light.yaml b/themes/vaporizer-alice-light.yaml new file mode 100644 index 00000000..091be252 --- /dev/null +++ b/themes/vaporizer-alice-light.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Alice Light" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#FFFFFF" + fg: "#7ADAEC" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 27.1 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/vaporizer-ava-light.yaml b/themes/vaporizer-ava-light.yaml new file mode 100644 index 00000000..eaa7413e --- /dev/null +++ b/themes/vaporizer-ava-light.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Ava Light" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#FFFFFF" + fg: "#CBC4FF" + black: "#000000" + red: "#FF5E8B" + green: "#00BC00" + yellow: "#E2BF38" + blue: "#2DA7D7" + magenta: "#FF59FF" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#FB80A2" + brightGreen: "#89E471" + brightYellow: "#EECC45" + brightBlue: "#5AD0FF" + brightMagenta: "#FF9BFF" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 28.1 + black: 106 + red: 54.5 + green: 49.2 + yellow: 32.9 + blue: 52.8 + magenta: 49.5 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 47 + brightGreen: 25.7 + brightYellow: 25.9 + brightBlue: 32.1 + brightMagenta: 34.4 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/vaporizer-batman-dark-2022.yaml b/themes/vaporizer-batman-dark-2022.yaml new file mode 100644 index 00000000..f5c2a8a6 --- /dev/null +++ b/themes/vaporizer-batman-dark-2022.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Batman Dark 2022" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#000000" + fg: "#D1D1D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/vaporizer-batman-dark-night.yaml b/themes/vaporizer-batman-dark-night.yaml new file mode 100644 index 00000000..e5062bdd --- /dev/null +++ b/themes/vaporizer-batman-dark-night.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Batman Dark Night" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#1B1B1B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/vaporizer-cloudy-light.yaml b/themes/vaporizer-cloudy-light.yaml new file mode 100644 index 00000000..6e0ced6f --- /dev/null +++ b/themes/vaporizer-cloudy-light.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Cloudy Light" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#FFFFFF" + fg: "#A9DBDE" + black: "#4F4F4F" + red: "#FF8181" + green: "#2FF5AB" + yellow: "#E2C421" + blue: "#53C0F5" + magenta: "#FD95FD" + cyan: "#4ADBFF" + white: "#555555" + brightBlack: "#A1A1A1" + brightRed: "#FB9393" + brightGreen: "#8DF9BC" + brightYellow: "#FBD06B" + brightBlue: "#87BFFD" + brightMagenta: "#FFB2FF" + brightCyan: "#8BE8FF" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "teal" + hue: null + contrast: + fg: 23.9 + black: 88.4 + red: 47 + green: 19.7 + yellow: 31.1 + blue: 39.7 + magenta: 36.6 + cyan: 27.8 + white: 85.9 + brightBlack: 50.5 + brightRed: 42.3 + brightGreen: 13.7 + brightYellow: 21.9 + brightBlue: 36.8 + brightMagenta: 27.2 + brightCyan: 18.9 + brightWhite: 48.5 diff --git a/themes/vaporizer-cobalt-dark.yaml b/themes/vaporizer-cobalt-dark.yaml new file mode 100644 index 00000000..00532902 --- /dev/null +++ b/themes/vaporizer-cobalt-dark.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Cobalt Dark" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#104855" + fg: "#FF7815" + black: "#362F2F" + red: "#FF5454" + green: "#0DBC79" + yellow: "#E59C10" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#2E2E2E" + brightRed: "#FF7171" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 217 + contrast: + fg: 40.6 + black: 0 + red: 33.6 + green: 43.4 + yellow: 46.3 + blue: 17.8 + magenta: 20.2 + cyan: 38 + white: 97.3 + brightBlack: 0 + brightRed: 40 + brightGreen: 53.9 + brightYellow: 86 + brightBlue: 30.4 + brightMagenta: 35.8 + brightCyan: 45.8 + brightWhite: 80.4 diff --git a/themes/vaporizer-crescent-dark.yaml b/themes/vaporizer-crescent-dark.yaml new file mode 100644 index 00000000..aea8cbf3 --- /dev/null +++ b/themes/vaporizer-crescent-dark.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Crescent Dark" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#262947" + fg: "#FF7815" + black: "#362F2F" + red: "#FF5454" + green: "#0DBC79" + yellow: "#E59C10" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#2E2E2E" + brightRed: "#FF7171" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + contrast: + fg: 47 + black: 0 + red: 40 + green: 49.8 + yellow: 52.7 + blue: 24.3 + magenta: 26.6 + cyan: 44.4 + white: 103.7 + brightBlack: 0 + brightRed: 46.4 + brightGreen: 60.4 + brightYellow: 92.5 + brightBlue: 36.8 + brightMagenta: 42.2 + brightCyan: 52.2 + brightWhite: 86.9 diff --git a/themes/vaporizer-dark-blue-green.yaml b/themes/vaporizer-dark-blue-green.yaml new file mode 100644 index 00000000..3a8ab4e6 --- /dev/null +++ b/themes/vaporizer-dark-blue-green.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Blue Green" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#1D2024" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#8E7F7F" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.8 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 33.8 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 105.8 diff --git a/themes/vaporizer-dark-cherry.yaml b/themes/vaporizer-dark-cherry.yaml new file mode 100644 index 00000000..40f7a8da --- /dev/null +++ b/themes/vaporizer-dark-cherry.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Cherry" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#333333" + fg: "#DC2929" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 24.5 + black: 0 + red: 21.9 + green: 48.2 + yellow: 80.8 + blue: 22.6 + magenta: 24.9 + cyan: 42.7 + white: 85.2 + brightBlack: 17.2 + brightRed: 33.7 + brightGreen: 58.7 + brightYellow: 90.8 + brightBlue: 35.1 + brightMagenta: 40.5 + brightCyan: 50.5 + brightWhite: 85.2 diff --git a/themes/vaporizer-dark-coffee.yaml b/themes/vaporizer-dark-coffee.yaml new file mode 100644 index 00000000..c8978deb --- /dev/null +++ b/themes/vaporizer-dark-coffee.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Coffee" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#24272D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 77.2 + black: 0 + red: 24.5 + green: 50.8 + yellow: 83.4 + blue: 25.2 + magenta: 27.5 + cyan: 45.3 + white: 87.8 + brightBlack: 19.8 + brightRed: 36.3 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.8 + brightMagenta: 43.1 + brightCyan: 53.2 + brightWhite: 87.8 diff --git a/themes/vaporizer-dark-cool-1.yaml b/themes/vaporizer-dark-cool-1.yaml new file mode 100644 index 00000000..d69e71e2 --- /dev/null +++ b/themes/vaporizer-dark-cool-1.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Cool 1" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#24272F" + fg: "#8FC7D7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + contrast: + fg: 64.4 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.2 + magenta: 27.5 + cyan: 45.3 + white: 87.7 + brightBlack: 19.8 + brightRed: 36.3 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.7 + brightMagenta: 43.1 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/vaporizer-dark-cool-2.yaml b/themes/vaporizer-dark-cool-2.yaml new file mode 100644 index 00000000..0704f417 --- /dev/null +++ b/themes/vaporizer-dark-cool-2.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Cool 2" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#2E3440" + fg: "#8FC7D7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 61.6 + black: 0 + red: 21.6 + green: 47.9 + yellow: 80.5 + blue: 22.4 + magenta: 24.7 + cyan: 42.5 + white: 84.9 + brightBlack: 17 + brightRed: 33.5 + brightGreen: 58.5 + brightYellow: 90.6 + brightBlue: 34.9 + brightMagenta: 40.3 + brightCyan: 50.3 + brightWhite: 84.9 diff --git a/themes/vaporizer-dark-cop.yaml b/themes/vaporizer-dark-cop.yaml new file mode 100644 index 00000000..f5e8da0e --- /dev/null +++ b/themes/vaporizer-dark-cop.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Cop" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#26292D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 76.9 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.2 + cyan: 45 + white: 87.4 + brightBlack: 19.5 + brightRed: 36 + brightGreen: 61 + brightYellow: 93.1 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/vaporizer-dark-cyber-neon-1.yaml b/themes/vaporizer-dark-cyber-neon-1.yaml new file mode 100644 index 00000000..a443ed00 --- /dev/null +++ b/themes/vaporizer-dark-cyber-neon-1.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Cyber Neon 1" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#060002" + fg: "#21B8F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#F41459" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#F54B7F" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: 354 + contrast: + fg: 57.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 35.7 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 41.5 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/vaporizer-dark-cyber-neon-2.yaml b/themes/vaporizer-dark-cyber-neon-2.yaml new file mode 100644 index 00000000..2ef50480 --- /dev/null +++ b/themes/vaporizer-dark-cyber-neon-2.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Cyber Neon 2" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#150309" + fg: "#21B8F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#F41459" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#F54B7F" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: 358 + contrast: + fg: 57.5 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 35.5 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 41.3 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/vaporizer-dark-cyber-neon-3.yaml b/themes/vaporizer-dark-cyber-neon-3.yaml new file mode 100644 index 00000000..02cf41aa --- /dev/null +++ b/themes/vaporizer-dark-cyber-neon-3.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Cyber Neon 3" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#100015" + fg: "#21B8F2" + black: "#D300FF" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 320 + contrast: + fg: 57.5 + black: 36.7 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.9 diff --git a/themes/vaporizer-dark-ivy.yaml b/themes/vaporizer-dark-ivy.yaml new file mode 100644 index 00000000..22e296d4 --- /dev/null +++ b/themes/vaporizer-dark-ivy.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Ivy" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#0A1016" + fg: "#BA5D59" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 249 + contrast: + fg: 31.3 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.2 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/vaporizer-dark-joker.yaml b/themes/vaporizer-dark-joker.yaml new file mode 100644 index 00000000..c7f353bf --- /dev/null +++ b/themes/vaporizer-dark-joker.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Joker" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/vaporizer-dark-matrix-1.yaml b/themes/vaporizer-dark-matrix-1.yaml new file mode 100644 index 00000000..6d3f0f00 --- /dev/null +++ b/themes/vaporizer-dark-matrix-1.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Matrix 1" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#000201" + fg: "#D2FFC2" + black: "#86F500" + red: "#58AB05" + green: "#009232" + yellow: "#488A07" + blue: "#1F7D1D" + magenta: "#0EE261" + cyan: "#50A322" + white: "#E5E5E5" + brightBlack: "#AAF26D" + brightRed: "#447134" + brightGreen: "#009F20" + brightYellow: "#60E814" + brightBlue: "#69BC67" + brightMagenta: "#82D670" + brightCyan: "#9ED586" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 165 + contrast: + fg: 99.6 + black: 84.9 + red: 46.9 + green: 34.5 + yellow: 32.4 + blue: 26.2 + magenta: 71.9 + cyan: 43.1 + white: 91 + brightBlack: 86.9 + brightRed: 23.2 + brightGreen: 39.8 + brightYellow: 76.1 + brightBlue: 56.2 + brightMagenta: 70 + brightCyan: 72.3 + brightWhite: 91 diff --git a/themes/vaporizer-dark-monterey.yaml b/themes/vaporizer-dark-monterey.yaml new file mode 100644 index 00000000..1bebec8b --- /dev/null +++ b/themes/vaporizer-dark-monterey.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Monterey" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#2C0F49" + fg: "#2A8296" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 302 + contrast: + fg: 28.9 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.1 + magenta: 28.5 + cyan: 46.3 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.3 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/vaporizer-dark-painting.yaml b/themes/vaporizer-dark-painting.yaml new file mode 100644 index 00000000..6434989f --- /dev/null +++ b/themes/vaporizer-dark-painting.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Painting" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#1E1E1E" + fg: "#7D2C05" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 9.6 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/vaporizer-dark-pansy.yaml b/themes/vaporizer-dark-pansy.yaml new file mode 100644 index 00000000..2d7ef639 --- /dev/null +++ b/themes/vaporizer-dark-pansy.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Pansy" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#3B3551" + fg: "#744290" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 294 + contrast: + fg: 9.8 + black: 0 + red: 20.1 + green: 46.4 + yellow: 79 + blue: 20.8 + magenta: 23.2 + cyan: 41 + white: 83.4 + brightBlack: 15.5 + brightRed: 32 + brightGreen: 56.9 + brightYellow: 89 + brightBlue: 33.4 + brightMagenta: 38.8 + brightCyan: 48.8 + brightWhite: 83.4 diff --git a/themes/vaporizer-dark-stabilo.yaml b/themes/vaporizer-dark-stabilo.yaml new file mode 100644 index 00000000..63b400e8 --- /dev/null +++ b/themes/vaporizer-dark-stabilo.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Stabilo" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#26292D" + fg: "#606C38" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 19.8 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.2 + cyan: 45 + white: 87.4 + brightBlack: 19.5 + brightRed: 36 + brightGreen: 61 + brightYellow: 93.1 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/vaporizer-dark-turquoise.yaml b/themes/vaporizer-dark-turquoise.yaml new file mode 100644 index 00000000..700b4c1f --- /dev/null +++ b/themes/vaporizer-dark-turquoise.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Dark Turquoise" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#191919" + fg: "#9BC793" + black: "#000000" + red: "#CD3131" + green: "#00BC64" + yellow: "#949800" + blue: "#5F9FE6" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#00BC64" + brightYellow: "#B5BA00" + brightBlue: "#3F75B0" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 64.8 + black: 0 + red: 26.5 + green: 52.3 + yellow: 42.6 + blue: 47.4 + magenta: 25.9 + cyan: 39.9 + white: 14.9 + brightBlack: 21.8 + brightRed: 26.5 + brightGreen: 52.3 + brightYellow: 60.1 + brightBlue: 27.4 + brightMagenta: 25.9 + brightCyan: 39.9 + brightWhite: 52.3 diff --git a/themes/vaporizer-epic-red-dark.yaml b/themes/vaporizer-epic-red-dark.yaml new file mode 100644 index 00000000..93cadc8a --- /dev/null +++ b/themes/vaporizer-epic-red-dark.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Epic Red Dark" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#212326" + fg: "#FFFFFF" + black: "#5A5959" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BF95F9" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 105.3 + black: 15.2 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 53 + cyan: 46 + white: 88.5 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.8 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/vaporizer-fonc-dark.yaml b/themes/vaporizer-fonc-dark.yaml new file mode 100644 index 00000000..0530300b --- /dev/null +++ b/themes/vaporizer-fonc-dark.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Foncé Dark" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#191919" + fg: "#DEDEDE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 85.4 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/vaporizer-frozen-dark.yaml b/themes/vaporizer-frozen-dark.yaml new file mode 100644 index 00000000..cb71c7f7 --- /dev/null +++ b/themes/vaporizer-frozen-dark.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Frozen Dark " +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#000000" + fg: "#1E92A5" + black: "#53839F" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#C2C2C2" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 37.7 + black: 33.6 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 69.8 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/vaporizer-golgi-dark.yaml b/themes/vaporizer-golgi-dark.yaml new file mode 100644 index 00000000..e8fec0af --- /dev/null +++ b/themes/vaporizer-golgi-dark.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Golgi Dark" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#333342" + fg: "#D4D4D4" + black: "#808080" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 74.3 + black: 28.6 + red: 21.5 + green: 47.8 + yellow: 80.4 + blue: 22.2 + magenta: 24.6 + cyan: 42.4 + white: 84.8 + brightBlack: 16.8 + brightRed: 33.4 + brightGreen: 58.3 + brightYellow: 90.4 + brightBlue: 34.8 + brightMagenta: 40.2 + brightCyan: 50.2 + brightWhite: 84.8 diff --git a/themes/vaporizer-half-moon-dark.yaml b/themes/vaporizer-half-moon-dark.yaml new file mode 100644 index 00000000..1428d7aa --- /dev/null +++ b/themes/vaporizer-half-moon-dark.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Half-Moon Dark" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#0F1525" + fg: "#D4D4D4" + black: "#999898" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 268 + contrast: + fg: 79.6 + black: 45.9 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/vaporizer-lemonade-light.yaml b/themes/vaporizer-lemonade-light.yaml new file mode 100644 index 00000000..7b7f7884 --- /dev/null +++ b/themes/vaporizer-lemonade-light.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Lemonade Light" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#F9F9F9" + fg: "#E0DFDF" + black: "#4F4F4F" + red: "#FF8181" + green: "#2FF5AB" + yellow: "#E2C421" + blue: "#53C0F5" + magenta: "#FD95FD" + cyan: "#4ADBFF" + white: "#000000" + brightBlack: "#A1A1A1" + brightRed: "#FB9393" + brightGreen: "#8DF9BC" + brightYellow: "#FBD06B" + brightBlue: "#87BFFD" + brightMagenta: "#FFB2FF" + brightCyan: "#8BE8FF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "teal" + hue: null + contrast: + fg: 12.7 + black: 84.8 + red: 43.4 + green: 16.1 + yellow: 27.5 + blue: 36.1 + magenta: 33 + cyan: 24.2 + white: 102.5 + brightBlack: 46.9 + brightRed: 38.7 + brightGreen: 10.1 + brightYellow: 18.3 + brightBlue: 33.2 + brightMagenta: 23.6 + brightCyan: 15.3 + brightWhite: 102.5 diff --git a/themes/vaporizer-lemonade-solarized-light.yaml b/themes/vaporizer-lemonade-solarized-light.yaml new file mode 100644 index 00000000..96a6ae1e --- /dev/null +++ b/themes/vaporizer-lemonade-solarized-light.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Lemonade Solarized Light" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#FFF9D8" + fg: "#E0DFDF" + black: "#4F4F4F" + red: "#FF8181" + green: "#2FF5AB" + yellow: "#E2C421" + blue: "#53C0F5" + magenta: "#FD95FD" + cyan: "#4ADBFF" + white: "#000000" + brightBlack: "#A1A1A1" + brightRed: "#FB9393" + brightGreen: "#8DF9BC" + brightYellow: "#FBD06B" + brightBlue: "#87BFFD" + brightMagenta: "#FFB2FF" + brightCyan: "#8BE8FF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "teal" + hue: null + contrast: + fg: 12.2 + black: 84.2 + red: 42.9 + green: 15.6 + yellow: 27 + blue: 35.6 + magenta: 32.5 + cyan: 23.7 + white: 101.9 + brightBlack: 46.4 + brightRed: 38.2 + brightGreen: 9.6 + brightYellow: 17.8 + brightBlue: 32.7 + brightMagenta: 23.1 + brightCyan: 14.8 + brightWhite: 101.9 diff --git a/themes/vaporizer-milk-light.yaml b/themes/vaporizer-milk-light.yaml new file mode 100644 index 00000000..e8018695 --- /dev/null +++ b/themes/vaporizer-milk-light.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Milk Light" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#FFFCEA" + fg: "#666666" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#02ADC7" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#8E7F7F" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#91EEAD" + brightYellow: "#F5F543" + brightBlue: "#02ADE7" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 76.6 + black: 103.9 + red: 71.8 + green: 45.8 + yellow: 14.8 + blue: 49.4 + magenta: 68.8 + cyan: 51.1 + white: 63.6 + brightBlack: 76.6 + brightRed: 60 + brightGreen: 16.9 + brightYellow: 0 + brightBlue: 47.6 + brightMagenta: 53.3 + brightCyan: 43.5 + brightWhite: 0 diff --git a/themes/vaporizer-mini-blue-light.yaml b/themes/vaporizer-mini-blue-light.yaml new file mode 100644 index 00000000..ee513559 --- /dev/null +++ b/themes/vaporizer-mini-blue-light.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Mini Blue Light" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#FFF8F7" + fg: "#B5C7FF" + black: "#000000" + red: "#FD7776" + green: "#8CE2AE" + yellow: "#FBEAA1" + blue: "#DFF2FE" + magenta: "#EAA3E0" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#FB908F" + brightGreen: "#8CE2AE" + brightYellow: "#FFF1B4" + brightBlue: "#EFFEFF" + brightMagenta: "#FBC3F3" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 26.1 + black: 102.7 + red: 46.9 + green: 21.6 + yellow: 0 + blue: 0 + magenta: 33.8 + cyan: 57.3 + white: 82.6 + brightBlack: 75.4 + brightRed: 39.9 + brightGreen: 21.6 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 19.2 + brightCyan: 57.3 + brightWhite: 45.1 diff --git a/themes/vaporizer-minimalism-light.yaml b/themes/vaporizer-minimalism-light.yaml new file mode 100644 index 00000000..bd1601a8 --- /dev/null +++ b/themes/vaporizer-minimalism-light.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Minimalism Light" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#F8F8F8" + fg: "#A9A9A9" + black: "#4F4F4F" + red: "#FF8181" + green: "#2FF5AB" + yellow: "#E2C421" + blue: "#53C0F5" + magenta: "#FD95FD" + cyan: "#4ADBFF" + white: "#555555" + brightBlack: "#A1A1A1" + brightRed: "#FB9393" + brightGreen: "#8DF9BC" + brightYellow: "#FBD06B" + brightBlue: "#87BFFD" + brightMagenta: "#FFB2FF" + brightCyan: "#8BE8FF" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "teal" + hue: null + contrast: + fg: 42.2 + black: 84.2 + red: 42.8 + green: 15.5 + yellow: 26.9 + blue: 35.5 + magenta: 32.4 + cyan: 23.6 + white: 81.8 + brightBlack: 46.3 + brightRed: 38.1 + brightGreen: 9.5 + brightYellow: 17.8 + brightBlue: 32.6 + brightMagenta: 23 + brightCyan: 14.7 + brightWhite: 44.3 diff --git a/themes/vaporizer-modern-light.yaml b/themes/vaporizer-modern-light.yaml new file mode 100644 index 00000000..3c12ea55 --- /dev/null +++ b/themes/vaporizer-modern-light.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Modern Light" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#F5F4F8" + fg: "#D28EFF" + black: "#4F4F4F" + red: "#FF8181" + green: "#2FF5AB" + yellow: "#E2C421" + blue: "#53C0F5" + magenta: "#FD95FD" + cyan: "#4ADBFF" + white: "#555555" + brightBlack: "#A1A1A1" + brightRed: "#FB9393" + brightGreen: "#8DF9BC" + brightYellow: "#FBD06B" + brightBlue: "#87BFFD" + brightMagenta: "#FFB2FF" + brightCyan: "#06AED7" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "teal" + hue: null + contrast: + fg: 39.3 + black: 82.1 + red: 40.7 + green: 13.5 + yellow: 24.8 + blue: 33.5 + magenta: 30.3 + cyan: 21.5 + white: 79.7 + brightBlack: 44.3 + brightRed: 36 + brightGreen: 7.4 + brightYellow: 15.7 + brightBlue: 30.5 + brightMagenta: 20.9 + brightCyan: 44.1 + brightWhite: 42.2 diff --git a/themes/vaporizer-moon-light-dark.yaml b/themes/vaporizer-moon-light-dark.yaml new file mode 100644 index 00000000..ba706e1a --- /dev/null +++ b/themes/vaporizer-moon-light-dark.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Moon-Light Dark" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#1C2332" + fg: "#D4D4D4" + black: "#999898" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 265 + contrast: + fg: 77.9 + black: 44.2 + red: 25.1 + green: 51.4 + yellow: 84 + blue: 25.8 + magenta: 28.2 + cyan: 46 + white: 88.4 + brightBlack: 20.4 + brightRed: 37 + brightGreen: 61.9 + brightYellow: 94 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/vaporizer-phosphoric-blue.yaml b/themes/vaporizer-phosphoric-blue.yaml new file mode 100644 index 00000000..eea1bd79 --- /dev/null +++ b/themes/vaporizer-phosphoric-blue.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Phosphoric Blue" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#EAEAEA" + fg: "#929190" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 46.1 + black: 93.6 + red: 61.5 + green: 36.8 + yellow: 45.5 + blue: 73.6 + magenta: 62.1 + cyan: 48.2 + white: 73.5 + brightBlack: 66.3 + brightRed: 61.5 + brightGreen: 28.5 + brightYellow: 28.5 + brightBlue: 73.6 + brightMagenta: 62.1 + brightCyan: 48.2 + brightWhite: 36 diff --git a/themes/vaporizer-purple-gray-dark.yaml b/themes/vaporizer-purple-gray-dark.yaml new file mode 100644 index 00000000..1f804c18 --- /dev/null +++ b/themes/vaporizer-purple-gray-dark.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Purple Gray Dark" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#2E3440" + fg: "#9D52E8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 25.9 + black: 0 + red: 21.6 + green: 47.9 + yellow: 80.5 + blue: 22.4 + magenta: 24.7 + cyan: 42.5 + white: 84.9 + brightBlack: 17 + brightRed: 33.5 + brightGreen: 58.5 + brightYellow: 90.6 + brightBlue: 34.9 + brightMagenta: 40.3 + brightCyan: 50.3 + brightWhite: 84.9 diff --git a/themes/vaporizer-soft-light.yaml b/themes/vaporizer-soft-light.yaml new file mode 100644 index 00000000..c5c57632 --- /dev/null +++ b/themes/vaporizer-soft-light.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Soft Light" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#F0F7FE" + fg: "#B4B4B4" + black: "#999999" + red: "#FDA9A9" + green: "#5ED55E" + yellow: "#CFC67D" + blue: "#76B2F5" + magenta: "#EA7EEA" + cyan: "#4EC8E6" + white: "#999999" + brightBlack: "#B8B3B3" + brightRed: "#F9A2A2" + brightGreen: "#89CF89" + brightYellow: "#D5C152" + brightBlue: "#9DCCFF" + brightMagenta: "#F59CF5" + brightCyan: "#51CAE8" + brightWhite: "#9D9D9D" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 35.2 + black: 49.3 + red: 29 + green: 30 + yellow: 26.4 + blue: 38.3 + magenta: 41.9 + cyan: 32 + white: 49.3 + brightBlack: 35.1 + brightRed: 32.2 + brightGreen: 29.4 + brightYellow: 28.4 + brightBlue: 24.3 + brightMagenta: 31.1 + brightCyan: 30.9 + brightWhite: 47.2 diff --git a/themes/vaporizer-splash-dark.yaml b/themes/vaporizer-splash-dark.yaml new file mode 100644 index 00000000..302fe914 --- /dev/null +++ b/themes/vaporizer-splash-dark.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Splash Dark" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#211C22" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 321 + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 29 + cyan: 46.8 + white: 89.2 + brightBlack: 21.3 + brightRed: 37.8 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/vaporizer-turquoise-light.yaml b/themes/vaporizer-turquoise-light.yaml new file mode 100644 index 00000000..14e0249e --- /dev/null +++ b/themes/vaporizer-turquoise-light.yaml @@ -0,0 +1,49 @@ +name: "Vaporizer Turquoise Light" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35736 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#F3F3F3" + fg: "#9BC793" + black: "#000000" + red: "#CD3131" + green: "#00BC64" + yellow: "#949800" + blue: "#5F9FE6" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#00BC64" + brightYellow: "#B5BA00" + brightBlue: "#3F75B0" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 29.3 + black: 98.9 + red: 66.8 + green: 41.3 + yellow: 50.8 + blue: 46.1 + magenta: 67.4 + cyan: 53.4 + white: 78.8 + brightBlack: 71.6 + brightRed: 66.8 + brightGreen: 41.3 + brightYellow: 33.8 + brightBlue: 65.9 + brightMagenta: 67.4 + brightCyan: 53.4 + brightWhite: 41.3 diff --git a/themes/vaporwave.yaml b/themes/vaporwave.yaml new file mode 100644 index 00000000..69c1437c --- /dev/null +++ b/themes/vaporwave.yaml @@ -0,0 +1,49 @@ +name: "Vaporwave" +source: + marketplace_id: "andrei-isvoran96.vaporwave-theme" + version: "1.0.2" + installs: 75 + author: "Andrei Isvoran" + repo: "https://github.com/andrei-isvoran96/vaporwave" + url: "https://marketplace.visualstudio.com/items?itemName=andrei-isvoran96.vaporwave-theme" +colors: + bg: "#1A1A2E" + fg: "#EAEAEA" + black: "#1A1A2E" + red: "#E94560" + green: "#7EFFC8" + yellow: "#FFD866" + blue: "#0F3460" + magenta: "#C792EA" + cyan: "#00FFF5" + white: "#EAEAEA" + brightBlack: "#A0A0A0" + brightRed: "#FF6B9D" + brightGreen: "#7EFFC8" + brightYellow: "#FFD866" + brightBlue: "#00FFF5" + brightMagenta: "#C792EA" + brightCyan: "#00FFF5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 283 + contrast: + fg: 92.6 + black: 0 + red: 35.5 + green: 91.1 + yellow: 83.7 + blue: 0 + magenta: 53.2 + cyan: 90.1 + white: 92.6 + brightBlack: 49.3 + brightRed: 49 + brightGreen: 91.1 + brightYellow: 83.7 + brightBlue: 90.1 + brightMagenta: 53.2 + brightCyan: 90.1 + brightWhite: 106.3 diff --git a/themes/vaquita.yaml b/themes/vaquita.yaml new file mode 100644 index 00000000..bc254966 --- /dev/null +++ b/themes/vaquita.yaml @@ -0,0 +1,49 @@ +name: "Vaquita" +source: + marketplace_id: "anemones.anemone-colors" + version: "0.0.2" + installs: 378 + author: "anemones" + repo: "https://github.com/radio-alice/anemone-colors" + url: "https://marketplace.visualstudio.com/items?itemName=anemones.anemone-colors" +colors: + bg: "#00106A" + fg: "#F3FFDC" + black: "#00106A" + red: "#FF009C" + green: "#9BDABB" + yellow: "#FFDD5D" + blue: "#FFC8F5" + magenta: "#FF4AB9" + cyan: "#D2EBFF" + white: "#D0DDCC" + brightBlack: "#23327A" + brightRed: "#FFA685" + brightGreen: "#D2EBFF" + brightYellow: "#FFDD5D" + brightBlue: "#FFC8F5" + brightMagenta: "#FF4AB9" + brightCyan: "#D2EBFF" + brightWhite: "#F3FFDC" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 101.8 + black: 0 + red: 37.4 + green: 73.1 + yellow: 84.5 + blue: 80.5 + magenta: 43.1 + cyan: 89.7 + white: 80.7 + brightBlack: 0 + brightRed: 63.6 + brightGreen: 89.7 + brightYellow: 84.5 + brightBlue: 80.5 + brightMagenta: 43.1 + brightCyan: 89.7 + brightWhite: 101.8 diff --git a/themes/varlet-dark.yaml b/themes/varlet-dark.yaml new file mode 100644 index 00000000..010c8d9b --- /dev/null +++ b/themes/varlet-dark.yaml @@ -0,0 +1,49 @@ +name: "varlet-dark" +source: + marketplace_id: "haoziqaq.vscode-theme-varlet" + version: "0.0.14" + installs: 351 + author: "haoziqaq" + repo: "https://github.com/varletjs/vscode-theme-varlet" + url: "https://marketplace.visualstudio.com/items?itemName=haoziqaq.vscode-theme-varlet" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#393A34" + red: "#CB7676" + green: "#80A665" + yellow: "#E6CC77" + blue: "#9BB5FF" + magenta: "#D9739F" + cyan: "#83BDEE" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#80A665" + brightYellow: "#E6CC77" + brightBlue: "#9BB5FF" + brightMagenta: "#D9739F" + brightCyan: "#83BDEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 78.7 + black: 0 + red: 39.9 + green: 46.5 + yellow: 74.8 + blue: 61.6 + magenta: 43.1 + cyan: 61.8 + white: 80.5 + brightBlack: 28.7 + brightRed: 39.9 + brightGreen: 46.5 + brightYellow: 74.8 + brightBlue: 61.6 + brightMagenta: 43.1 + brightCyan: 61.8 + brightWhite: 106 diff --git a/themes/vase-with-twelve-sunflowers.yaml b/themes/vase-with-twelve-sunflowers.yaml new file mode 100644 index 00000000..71b108a1 --- /dev/null +++ b/themes/vase-with-twelve-sunflowers.yaml @@ -0,0 +1,49 @@ +name: "Vase with Twelve Sunflowers" +source: + marketplace_id: "XadillaX.van-gogh-paintings" + version: "1.0.0" + installs: 959 + author: "XadillaX" + repo: "https://github.com/XadillaX/vscode-mir2-colorscheme" + url: "https://marketplace.visualstudio.com/items?itemName=XadillaX.van-gogh-paintings" +colors: + bg: "#B7C6B2" + fg: "#685A27" + black: "#B7C6B2" + red: "#D2AB53" + green: "#632B17" + yellow: "#DAC371" + blue: "#CEA032" + magenta: "#9E6A28" + cyan: "#718656" + white: "#73693B" + brightBlack: "#ACB79E" + brightRed: "#67714B" + brightGreen: "#718656" + brightYellow: "#DAC371" + brightBlue: "#CEA032" + brightMagenta: "#9E6A28" + brightCyan: "#718656" + brightWhite: "#685A27" +meta: + mode: "light" + accent: "yellow" + hue: 138 + contrast: + fg: 48.2 + black: 0 + red: 0 + green: 59.9 + yellow: 0 + blue: 12.1 + magenta: 36.6 + cyan: 32 + white: 42.2 + brightBlack: 0 + brightRed: 40.5 + brightGreen: 32 + brightYellow: 0 + brightBlue: 12.1 + brightMagenta: 36.6 + brightCyan: 32 + brightWhite: 48.2 diff --git a/themes/vasses-tricolor-theme.yaml b/themes/vasses-tricolor-theme.yaml new file mode 100644 index 00000000..5faed960 --- /dev/null +++ b/themes/vasses-tricolor-theme.yaml @@ -0,0 +1,49 @@ +name: "vasses-tricolor-theme" +source: + marketplace_id: "vassdeniss.vasses-tricolor-theme" + version: "1.0.0" + installs: 109 + author: "vassdeniss" + repo: "https://github.com/vassdeniss/vasses-tricolor-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vassdeniss.vasses-tricolor-theme" +colors: + bg: "#1E1E1E" + fg: "#FD6B00" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 45.8 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/vcoldtheme.yaml b/themes/vcoldtheme.yaml new file mode 100644 index 00000000..64b46b2a --- /dev/null +++ b/themes/vcoldtheme.yaml @@ -0,0 +1,49 @@ +name: "vColdTheme" +source: + marketplace_id: "vgColdTheme.vgColdTheme" + version: "0.0.4" + installs: 53 + author: "vgColdTheme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=vgColdTheme.vgColdTheme" +colors: + bg: "#393E4E" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#2E3240" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 271 + contrast: + fg: 93.7 + black: 0 + red: 16.4 + green: 44.8 + yellow: 49.4 + blue: 0 + magenta: 24 + cyan: 42.2 + white: 80.2 + brightBlack: 13.8 + brightRed: 29.1 + brightGreen: 68.7 + brightYellow: 75.7 + brightBlue: 41.6 + brightMagenta: 38.3 + brightCyan: 65.2 + brightWhite: 93.7 diff --git a/themes/vegas-night-details-theme.yaml b/themes/vegas-night-details-theme.yaml new file mode 100644 index 00000000..037fb78b --- /dev/null +++ b/themes/vegas-night-details-theme.yaml @@ -0,0 +1,49 @@ +name: "Vegas Night Details Theme" +source: + marketplace_id: "robpco.vegas-night-details-theme" + version: "0.2.2" + installs: 1016 + author: "robpco" + repo: "https://github.com/robertpeteuil/vegas-night-details-theme" + url: "https://marketplace.visualstudio.com/items?itemName=robpco.vegas-night-details-theme" +colors: + bg: "#131313" + fg: "#CCCCCC" + black: "#131313" + red: "#C91B00" + green: "#48C248" + yellow: "#C7C400" + blue: "#5A77F5" + magenta: "#DA9ED9" + cyan: "#00C5C7" + white: "#CCCCCC" + brightBlack: "#484848" + brightRed: "#FF6E67" + brightGreen: "#6DD872" + brightYellow: "#FFFC67" + brightBlue: "#6871FF" + brightMagenta: "#CB63CB" + brightCyan: "#60FDFF" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 75 + black: 0 + red: 24.4 + green: 56.3 + yellow: 67.2 + blue: 35 + magenta: 60 + cyan: 60.3 + white: 75 + brightBlack: 10.6 + brightRed: 49 + brightGreen: 69.1 + brightYellow: 101.2 + brightBlue: 35 + brightMagenta: 40.1 + brightCyan: 92.1 + brightWhite: 82.3 diff --git a/themes/vegetable-contrast.yaml b/themes/vegetable-contrast.yaml new file mode 100644 index 00000000..0196fa42 --- /dev/null +++ b/themes/vegetable-contrast.yaml @@ -0,0 +1,49 @@ +name: "vegetable-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#161314" + fg: "#E2DCDD" + black: "#241F20" + red: "#BA0E2E" + green: "#F0A56C" + yellow: "#689D81" + blue: "#D8CA96" + magenta: "#F0A56C" + cyan: "#689D81" + white: "#EEEAEB" + brightBlack: "#4D4246" + brightRed: "#F03E5F" + brightGreen: "#F9DEC9" + brightYellow: "#A6C5B5" + brightBlue: "#F4F0E0" + brightMagenta: "#F9DEC9" + brightCyan: "#A6C5B5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.5 + black: 0 + red: 20.8 + green: 62.1 + yellow: 42.9 + blue: 73.8 + magenta: 62.1 + cyan: 42.9 + white: 94.1 + brightBlack: 9.4 + brightRed: 37.1 + brightGreen: 88.9 + brightYellow: 66.7 + brightBlue: 97.2 + brightMagenta: 88.9 + brightCyan: 66.7 + brightWhite: 107.2 diff --git a/themes/vegetable-light.yaml b/themes/vegetable-light.yaml new file mode 100644 index 00000000..949f43cb --- /dev/null +++ b/themes/vegetable-light.yaml @@ -0,0 +1,49 @@ +name: "vegetable-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#E2DCDD" + fg: "#514547" + black: "#EEEAEB" + red: "#BA0E2E" + green: "#F0A56C" + yellow: "#689D81" + blue: "#C6A52D" + magenta: "#F0A56C" + cyan: "#689D81" + white: "#5F5153" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F9DEC9" + brightYellow: "#A6C5B5" + brightBlue: "#E0CA79" + brightMagenta: "#F9DEC9" + brightCyan: "#A6C5B5" + brightWhite: "#887477" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 71.4 + black: 0 + red: 60.6 + green: 19.7 + yellow: 38.4 + blue: 27 + magenta: 19.7 + cyan: 38.4 + white: 66.4 + brightBlack: 19.9 + brightRed: 44.1 + brightGreen: 0 + brightYellow: 15.4 + brightBlue: 8.3 + brightMagenta: 0 + brightCyan: 15.4 + brightWhite: 50.5 diff --git a/themes/vegetable.yaml b/themes/vegetable.yaml new file mode 100644 index 00000000..a760c620 --- /dev/null +++ b/themes/vegetable.yaml @@ -0,0 +1,49 @@ +name: "vegetable" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2D2627" + fg: "#E2DCDD" + black: "#3B3233" + red: "#BA0E2E" + green: "#F0A56C" + yellow: "#689D81" + blue: "#D8CA96" + magenta: "#F0A56C" + cyan: "#689D81" + white: "#EEEAEB" + brightBlack: "#645557" + brightRed: "#F03E5F" + brightGreen: "#F9DEC9" + brightYellow: "#A6C5B5" + brightBlue: "#F4F0E0" + brightMagenta: "#F9DEC9" + brightCyan: "#A6C5B5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 8 + contrast: + fg: 82.9 + black: 0 + red: 18.1 + green: 59.5 + yellow: 40.2 + blue: 71.1 + magenta: 59.5 + cyan: 40.2 + white: 91.4 + brightBlack: 14.1 + brightRed: 34.4 + brightGreen: 86.2 + brightYellow: 64 + brightBlue: 94.5 + brightMagenta: 86.2 + brightCyan: 64 + brightWhite: 104.5 diff --git a/themes/vegetation.yaml b/themes/vegetation.yaml new file mode 100644 index 00000000..3ebb3293 --- /dev/null +++ b/themes/vegetation.yaml @@ -0,0 +1,49 @@ +name: "vegetation" +source: + marketplace_id: "samlazrak.vegetation" + version: "1.1.0" + installs: 966 + author: "samlazrak" + repo: "https://github.com/samlazrak/vegetation" + url: "https://marketplace.visualstudio.com/items?itemName=samlazrak.vegetation" +colors: + bg: "#1F1F1F" + fg: "#916255" + black: "#1F1F1F" + red: "#B06698" + green: "#9AC2BE" + yellow: "#C78547" + blue: "#EBC17A" + magenta: "#BB90D8" + cyan: "#83A06C" + white: "#AFCAAF" + brightBlack: "#916255" + brightRed: "#B06698" + brightGreen: "#9AC2BE" + brightYellow: "#C78547" + brightBlue: "#EBC17A" + brightMagenta: "#BB90D8" + brightCyan: "#83A06C" + brightWhite: "#AFCAAF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 24.4 + black: 0 + red: 32.3 + green: 63.3 + yellow: 42.6 + blue: 70.9 + magenta: 49.3 + cyan: 44.3 + white: 68.3 + brightBlack: 24.4 + brightRed: 32.3 + brightGreen: 63.3 + brightYellow: 42.6 + brightBlue: 70.9 + brightMagenta: 49.3 + brightCyan: 44.3 + brightWhite: 68.3 diff --git a/themes/veil.yaml b/themes/veil.yaml new file mode 100644 index 00000000..2c80dc52 --- /dev/null +++ b/themes/veil.yaml @@ -0,0 +1,49 @@ +name: "Veil" +source: + marketplace_id: "Priyaank.ether" + version: "2.0.1" + installs: 55 + author: "Priyaank" + repo: "https://github.com/PRIYAANK2510/Ether" + url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.ether" +colors: + bg: "#18181F" + fg: "#676775" + black: "#121217" + red: "#A94B67" + green: "#499F71" + yellow: "#B4927A" + blue: "#4E75C2" + magenta: "#7171B0" + cyan: "#83918E" + white: "#CCCCCC" + brightBlack: "#676775" + brightRed: "#C15D7D" + brightGreen: "#5AB585" + brightYellow: "#CAA78E" + brightBlue: "#6489D1" + brightMagenta: "#8787C4" + brightCyan: "#9AA8A5" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 22.8 + black: 0 + red: 24.2 + green: 41.1 + yellow: 45.9 + blue: 29.3 + magenta: 29.5 + cyan: 40.4 + white: 74.5 + brightBlack: 22.8 + brightRed: 32.8 + brightGreen: 51.8 + brightYellow: 57.1 + brightBlue: 38.3 + brightMagenta: 39.8 + brightCyan: 52.3 + brightWhite: 90.5 diff --git a/themes/veiled.yaml b/themes/veiled.yaml new file mode 100644 index 00000000..c20b31eb --- /dev/null +++ b/themes/veiled.yaml @@ -0,0 +1,49 @@ +name: "Veiled" +source: + marketplace_id: "samanshaiza.veiled" + version: "0.0.1" + installs: 54 + author: "saman shaiza" + repo: "https://github.com/samanshaiza004/veiled" + url: "https://marketplace.visualstudio.com/items?itemName=samanshaiza.veiled" +colors: + bg: "#272829" + fg: "#D8D9DA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80 + black: 0 + red: 24.3 + green: 50.6 + yellow: 83.2 + blue: 25 + magenta: 27.3 + cyan: 45.1 + white: 87.6 + brightBlack: 19.6 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.6 + brightMagenta: 43 + brightCyan: 53 + brightWhite: 87.6 diff --git a/themes/veist.yaml b/themes/veist.yaml new file mode 100644 index 00000000..63f3765d --- /dev/null +++ b/themes/veist.yaml @@ -0,0 +1,49 @@ +name: "Veist" +source: + marketplace_id: "guilhermerodz.veist" + version: "0.1.9" + installs: 2882 + author: "Guilherme Rodz" + repo: "https://github.com/guilhermerodz/veist-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guilhermerodz.veist" +colors: + bg: "#000000" + fg: "#FAFBFC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 105.1 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/vela-spectrum-colorblind-light.yaml b/themes/vela-spectrum-colorblind-light.yaml new file mode 100644 index 00000000..d8b12d67 --- /dev/null +++ b/themes/vela-spectrum-colorblind-light.yaml @@ -0,0 +1,49 @@ +name: "Vela Spectrum Colorblind Light" +source: + marketplace_id: "telianedward.vela-spectrum" + version: "0.3.7" + installs: 75 + author: "Vela Inc" + repo: "https://github.com/Telianedward/VelaSpectrum" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" +colors: + bg: "#F6F8FA" + fg: "#000000" + black: "#111111" + red: "#723700" + green: "#007F5E" + yellow: "#A97700" + blue: "#0071F5" + magenta: "#8E5700" + cyan: "#2E77AE" + white: "#F6F8FA" + brightBlack: "#3D444D" + brightRed: "#915500" + brightGreen: "#009E7A" + brightYellow: "#C89700" + brightBlue: "#0092FF" + brightMagenta: "#AD7500" + brightCyan: "#4E96CF" + brightWhite: "#F6F8FA" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 101.7 + black: 101 + red: 86.6 + green: 69.7 + yellow: 62.2 + blue: 65.9 + magenta: 75.2 + cyan: 68.7 + white: 0 + brightBlack: 88.5 + brightRed: 75.2 + brightGreen: 56.5 + brightYellow: 47.2 + brightBlue: 54.1 + brightMagenta: 62.2 + brightCyan: 54.5 + brightWhite: 0 diff --git a/themes/vela-spectrum-dark-colorblind.yaml b/themes/vela-spectrum-dark-colorblind.yaml new file mode 100644 index 00000000..e1ee43b6 --- /dev/null +++ b/themes/vela-spectrum-dark-colorblind.yaml @@ -0,0 +1,49 @@ +name: "Vela Spectrum Dark+ Colorblind" +source: + marketplace_id: "telianedward.vela-spectrum" + version: "0.3.7" + installs: 75 + author: "Vela Inc" + repo: "https://github.com/Telianedward/VelaSpectrum" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" +colors: + bg: "#0D1117" + fg: "#F6F8FA" + black: "#252525" + red: "#723700" + green: "#007F67" + yellow: "#A97700" + blue: "#006CF9" + magenta: "#8E5700" + cyan: "#3875B0" + white: "#F6F8FA" + brightBlack: "#3D444D" + brightRed: "#915500" + brightGreen: "#009E84" + brightYellow: "#C89700" + brightBlue: "#008DFF" + brightMagenta: "#AD7500" + brightCyan: "#5694D1" + brightWhite: "#F6F8FA" +meta: + mode: "dark" + accent: "purple" + hue: 258 + contrast: + fg: 102.6 + black: 0 + red: 10.9 + green: 27.4 + yellow: 34.6 + blue: 29.9 + magenta: 21.8 + cyan: 27.9 + white: 102.6 + brightBlack: 9.1 + brightRed: 21.8 + brightGreen: 40.6 + brightYellow: 49.9 + brightBlue: 41 + brightMagenta: 34.6 + brightCyan: 42.2 + brightWhite: 102.6 diff --git a/themes/vela-spectrum-dark-dimmed.yaml b/themes/vela-spectrum-dark-dimmed.yaml new file mode 100644 index 00000000..86c53883 --- /dev/null +++ b/themes/vela-spectrum-dark-dimmed.yaml @@ -0,0 +1,49 @@ +name: "Vela Spectrum Dark+ Dimmed" +source: + marketplace_id: "telianedward.vela-spectrum" + version: "0.3.7" + installs: 75 + author: "Vela Inc" + repo: "https://github.com/Telianedward/VelaSpectrum" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" +colors: + bg: "#0D1117" + fg: "#F6F8FA" + black: "#252525" + red: "#841A00" + green: "#1F7541" + yellow: "#9F7B01" + blue: "#5962D4" + magenta: "#9B3B6B" + cyan: "#3D7998" + white: "#F6F8FA" + brightBlack: "#3D444D" + brightRed: "#A53C1F" + brightGreen: "#42945D" + brightYellow: "#BE9936" + brightBlue: "#7481F7" + brightMagenta: "#BC5989" + brightCyan: "#5B98B7" + brightWhite: "#F6F8FA" +meta: + mode: "dark" + accent: "purple" + hue: 258 + contrast: + fg: 102.6 + black: 0 + red: 10.5 + green: 23.1 + yellow: 34.5 + blue: 26.4 + magenta: 19.8 + cyan: 28.1 + white: 102.6 + brightBlack: 9.1 + brightRed: 20.3 + brightGreen: 36.5 + brightYellow: 49.3 + brightBlue: 40.2 + brightMagenta: 32.2 + brightCyan: 42.5 + brightWhite: 102.6 diff --git a/themes/vela-spectrum-dark-tritanopia.yaml b/themes/vela-spectrum-dark-tritanopia.yaml new file mode 100644 index 00000000..f92095a9 --- /dev/null +++ b/themes/vela-spectrum-dark-tritanopia.yaml @@ -0,0 +1,49 @@ +name: "Vela Spectrum Dark+ Tritanopia" +source: + marketplace_id: "telianedward.vela-spectrum" + version: "0.3.7" + installs: 75 + author: "Vela Inc" + repo: "https://github.com/Telianedward/VelaSpectrum" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" +colors: + bg: "#0D1117" + fg: "#F6F8FA" + black: "#252525" + red: "#B90000" + green: "#008500" + yellow: "#459900" + blue: "#6900FF" + magenta: "#CB0074" + cyan: "#0084B4" + white: "#F6F8FA" + brightBlack: "#3D444D" + brightRed: "#E00000" + brightGreen: "#00A51C" + brightYellow: "#63BA00" + brightBlue: "#7E2EFF" + brightMagenta: "#F10092" + brightCyan: "#00A4D5" + brightWhite: "#F6F8FA" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + contrast: + fg: 102.6 + black: 0 + red: 20.5 + green: 28.5 + yellow: 37.9 + blue: 20.3 + magenta: 26.2 + cyan: 32.6 + white: 102.6 + brightBlack: 9.1 + brightRed: 29.4 + brightGreen: 41.9 + brightYellow: 53.6 + brightBlue: 24.5 + brightMagenta: 36 + brightCyan: 46.8 + brightWhite: 102.6 diff --git a/themes/vela-spectrum-dark.yaml b/themes/vela-spectrum-dark.yaml new file mode 100644 index 00000000..83e0afb1 --- /dev/null +++ b/themes/vela-spectrum-dark.yaml @@ -0,0 +1,49 @@ +name: "Vela Spectrum Dark+" +source: + marketplace_id: "telianedward.vela-spectrum" + version: "0.3.7" + installs: 75 + author: "Vela Inc" + repo: "https://github.com/Telianedward/VelaSpectrum" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" +colors: + bg: "#0D1117" + fg: "#F6F8FA" + black: "#252525" + red: "#990000" + green: "#007C2D" + yellow: "#AB7600" + blue: "#544FFE" + magenta: "#AE136F" + cyan: "#027CA8" + white: "#F6F8FA" + brightBlack: "#3D444D" + brightRed: "#BC0600" + brightGreen: "#009B4B" + brightYellow: "#CB9500" + brightBlue: "#6D73FF" + brightMagenta: "#D13E8C" + brightCyan: "#389AC8" + brightWhite: "#F6F8FA" +meta: + mode: "dark" + accent: "purple" + hue: 258 + contrast: + fg: 102.6 + black: 0 + red: 13.8 + green: 25.2 + yellow: 34.6 + blue: 25.5 + magenta: 20.1 + cyan: 29 + white: 102.6 + brightBlack: 9.1 + brightRed: 21.1 + brightGreen: 38 + brightYellow: 49.6 + brightBlue: 36.1 + brightMagenta: 31.8 + brightCyan: 42.7 + brightWhite: 102.6 diff --git a/themes/vela-spectrum-dimmed-light.yaml b/themes/vela-spectrum-dimmed-light.yaml new file mode 100644 index 00000000..76cb7ba5 --- /dev/null +++ b/themes/vela-spectrum-dimmed-light.yaml @@ -0,0 +1,49 @@ +name: "Vela Spectrum Dimmed Light" +source: + marketplace_id: "telianedward.vela-spectrum" + version: "0.3.7" + installs: 75 + author: "Vela Inc" + repo: "https://github.com/Telianedward/VelaSpectrum" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" +colors: + bg: "#F6F8FA" + fg: "#000000" + black: "#111111" + red: "#802103" + green: "#287443" + yellow: "#9C7B1C" + blue: "#5A64CE" + magenta: "#983F6B" + cyan: "#427995" + white: "#F6F8FA" + brightBlack: "#3D444D" + brightRed: "#A14026" + brightGreen: "#489360" + brightYellow: "#BC9A41" + brightBlue: "#7583F0" + brightMagenta: "#B95D88" + brightCyan: "#6097B4" + brightWhite: "#F6F8FA" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 101.7 + black: 101 + red: 87.2 + green: 74 + yellow: 62.7 + blue: 70.3 + magenta: 77.1 + cyan: 68.6 + white: 0 + brightBlack: 88.5 + brightRed: 76.8 + brightGreen: 60.4 + brightYellow: 47.6 + brightBlue: 56.4 + brightMagenta: 64.3 + brightCyan: 54.6 + brightWhite: 0 diff --git a/themes/vela-spectrum-high-contrast-light.yaml b/themes/vela-spectrum-high-contrast-light.yaml new file mode 100644 index 00000000..9cffb9b9 --- /dev/null +++ b/themes/vela-spectrum-high-contrast-light.yaml @@ -0,0 +1,49 @@ +name: "Vela Spectrum High Contrast Light" +source: + marketplace_id: "telianedward.vela-spectrum" + version: "0.3.7" + installs: 75 + author: "Vela Inc" + repo: "https://github.com/Telianedward/VelaSpectrum" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" +colors: + bg: "#F6F8FA" + fg: "#000000" + black: "#111111" + red: "#AC0000" + green: "#00810B" + yellow: "#B76F00" + blue: "#5527FF" + magenta: "#C00072" + cyan: "#007DB7" + white: "#F6F8FA" + brightBlack: "#3D444D" + brightRed: "#D20000" + brightGreen: "#00A134" + brightYellow: "#D88F00" + brightBlue: "#6A5AFF" + brightMagenta: "#E50090" + brightCyan: "#009CD8" + brightWhite: "#F6F8FA" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 101.7 + black: 101 + red: 79.4 + green: 69.9 + yellow: 62.3 + blue: 77.1 + magenta: 73.2 + cyan: 66.6 + white: 0 + brightBlack: 88.5 + brightRed: 70.8 + brightGreen: 56.6 + brightYellow: 47.3 + brightBlue: 67.3 + brightMagenta: 63.7 + brightCyan: 53.1 + brightWhite: 0 diff --git a/themes/vela-spectrum-high-contrast.yaml b/themes/vela-spectrum-high-contrast.yaml new file mode 100644 index 00000000..e92419ac --- /dev/null +++ b/themes/vela-spectrum-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Vela Spectrum High Contrast" +source: + marketplace_id: "telianedward.vela-spectrum" + version: "0.3.7" + installs: 75 + author: "Vela Inc" + repo: "https://github.com/Telianedward/VelaSpectrum" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" +colors: + bg: "#0D1117" + fg: "#F6F8FA" + black: "#252525" + red: "#AC0000" + green: "#00810B" + yellow: "#B76F00" + blue: "#5527FF" + magenta: "#C00072" + cyan: "#007DB7" + white: "#F6F8FA" + brightBlack: "#3D444D" + brightRed: "#D20000" + brightGreen: "#00A134" + brightYellow: "#D88F00" + brightBlue: "#6A5AFF" + brightMagenta: "#E50090" + brightCyan: "#009CD8" + brightWhite: "#F6F8FA" +meta: + mode: "dark" + accent: "purple" + hue: 258 + contrast: + fg: 102.6 + black: 0 + red: 17.7 + green: 27 + yellow: 34.5 + blue: 19.9 + magenta: 23.7 + cyan: 30.2 + white: 102.6 + brightBlack: 9.1 + brightRed: 26.1 + brightGreen: 40.3 + brightYellow: 49.8 + brightBlue: 29.5 + brightMagenta: 33.1 + brightCyan: 43.8 + brightWhite: 102.6 diff --git a/themes/vela-spectrum-light-tritanopia.yaml b/themes/vela-spectrum-light-tritanopia.yaml new file mode 100644 index 00000000..eeb5854f --- /dev/null +++ b/themes/vela-spectrum-light-tritanopia.yaml @@ -0,0 +1,49 @@ +name: "Vela Spectrum Light+ Tritanopia" +source: + marketplace_id: "telianedward.vela-spectrum" + version: "0.3.7" + installs: 75 + author: "Vela Inc" + repo: "https://github.com/Telianedward/VelaSpectrum" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" +colors: + bg: "#F6F8FA" + fg: "#000000" + black: "#111111" + red: "#B30000" + green: "#008300" + yellow: "#609400" + blue: "#3E1EFF" + magenta: "#C60073" + cyan: "#0085AA" + white: "#F6F8FA" + brightBlack: "#3D444D" + brightRed: "#D90000" + brightGreen: "#00A32A" + brightYellow: "#7CB400" + brightBlue: "#4E58FF" + brightMagenta: "#EB0091" + brightCyan: "#00A5CA" + brightWhite: "#F6F8FA" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 101.7 + black: 101 + red: 77.9 + green: 69.1 + yellow: 59.6 + blue: 79.3 + magenta: 71.9 + cyan: 64.4 + white: 0 + brightBlack: 88.5 + brightRed: 69.1 + brightGreen: 55.8 + brightYellow: 44.5 + brightBlue: 69.7 + brightMagenta: 62.3 + brightCyan: 50.3 + brightWhite: 0 diff --git a/themes/vela-spectrum-light.yaml b/themes/vela-spectrum-light.yaml new file mode 100644 index 00000000..ee22f497 --- /dev/null +++ b/themes/vela-spectrum-light.yaml @@ -0,0 +1,49 @@ +name: "Vela Spectrum Light+" +source: + marketplace_id: "telianedward.vela-spectrum" + version: "0.3.7" + installs: 75 + author: "Vela Inc" + repo: "https://github.com/Telianedward/VelaSpectrum" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" +colors: + bg: "#F6F8FA" + fg: "#000000" + black: "#111111" + red: "#990000" + green: "#007C2D" + yellow: "#AB7600" + blue: "#544FFE" + magenta: "#AE136F" + cyan: "#027CA8" + white: "#F6F8FA" + brightBlack: "#3D444D" + brightRed: "#BC0600" + brightGreen: "#009B4B" + brightYellow: "#CB9500" + brightBlue: "#6D73FF" + brightMagenta: "#D13E8C" + brightCyan: "#389AC8" + brightWhite: "#F6F8FA" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 101.7 + black: 101 + red: 83.5 + green: 71.7 + yellow: 62.2 + blue: 71.4 + magenta: 76.9 + cyan: 67.8 + white: 0 + brightBlack: 88.5 + brightRed: 75.8 + brightGreen: 58.8 + brightYellow: 47.4 + brightBlue: 60.7 + brightMagenta: 65 + brightCyan: 54.2 + brightWhite: 0 diff --git a/themes/velourous.yaml b/themes/velourous.yaml new file mode 100644 index 00000000..d0072abe --- /dev/null +++ b/themes/velourous.yaml @@ -0,0 +1,49 @@ +name: "Velourous" +source: + marketplace_id: "arkarmintun.velourous" + version: "1.0.2" + installs: 21 + author: "Arkar MIn Tun" + repo: "https://github.com/arkarmintun1/velourous" + url: "https://marketplace.visualstudio.com/items?itemName=arkarmintun.velourous" +colors: + bg: "#272822" + fg: "#F8F8F2" + black: "#3E4451" + red: "#E06C75" + green: "#98C379" + yellow: "#D8B870" + blue: "#7BA1D0" + magenta: "#B083B9" + cyan: "#68A5BA" + white: "#D4D4D4" + brightBlack: "#5A5F6B" + brightRed: "#E89393" + brightGreen: "#A8D4A9" + brightYellow: "#DDC87F" + brightBlue: "#A0C5E8" + brightMagenta: "#C798C4" + brightCyan: "#88C0D0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "orange" + hue: 115 + contrast: + fg: 99.6 + black: 0 + red: 39.8 + green: 59.9 + yellow: 62.8 + blue: 46.6 + magenta: 40.6 + cyan: 45.7 + white: 77.2 + brightBlack: 16.7 + brightRed: 53.1 + brightGreen: 70.5 + brightYellow: 70.4 + brightBlue: 65.8 + brightMagenta: 51.3 + brightCyan: 60.3 + brightWhite: 88.3 diff --git a/themes/velvet-chrome.yaml b/themes/velvet-chrome.yaml new file mode 100644 index 00000000..198e8534 --- /dev/null +++ b/themes/velvet-chrome.yaml @@ -0,0 +1,49 @@ +name: "velvet-chrome" +source: + marketplace_id: "willduque.velvet-chrome-theme" + version: "0.0.3" + installs: 16 + author: "Willian Duque" + repo: "https://github.com/wduqu001/velvet-chrome-theme" + url: "https://marketplace.visualstudio.com/items?itemName=willduque.velvet-chrome-theme" +colors: + bg: "#191919" + fg: "#ECECEC" + black: "#1B1B1B" + red: "#D97A7A" + green: "#6A9E86" + yellow: "#E6C36A" + blue: "#74C6FF" + magenta: "#B48EED" + cyan: "#6BB1A6" + white: "#E6E6E6" + brightBlack: "#3A3A3A" + brightRed: "#D97A7A" + brightGreen: "#9AD1A6" + brightYellow: "#E6C36A" + brightBlue: "#74C6FF" + brightMagenta: "#CFA0FF" + brightCyan: "#7CC6BC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 94.3 + black: 0 + red: 44.3 + green: 43 + yellow: 71.4 + blue: 66.3 + magenta: 49.8 + cyan: 52.1 + white: 90.4 + brightBlack: 0 + brightRed: 44.3 + brightGreen: 69.8 + brightYellow: 71.4 + brightBlue: 66.3 + brightMagenta: 60.7 + brightCyan: 63.3 + brightWhite: 106.7 diff --git a/themes/velvet-thunder.yaml b/themes/velvet-thunder.yaml new file mode 100644 index 00000000..a4186a4a --- /dev/null +++ b/themes/velvet-thunder.yaml @@ -0,0 +1,49 @@ +name: "Velvet Thunder" +source: + marketplace_id: "BuddyDeveloping.velvet-thunder" + version: "0.2.2" + installs: 1279 + author: "BuddyDeveloping" + repo: "https://github.com/BuddyDeveloping/Velvet-Thunder" + url: "https://marketplace.visualstudio.com/items?itemName=BuddyDeveloping.velvet-thunder" +colors: + bg: "#191C1F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/venice-beach-sky.yaml b/themes/venice-beach-sky.yaml new file mode 100644 index 00000000..3dcf31ef --- /dev/null +++ b/themes/venice-beach-sky.yaml @@ -0,0 +1,49 @@ +name: "Venice Beach Sky" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#E2F7FB" + fg: "#15425C" + black: "#336080" + red: "#C43D6D" + green: "#5FC3E7" + yellow: "#F7E5C7" + blue: "#2C8EC2" + magenta: "#B881A7" + cyan: "#23B2B6" + white: "#E2F7FB" + brightBlack: "#8ECADD" + brightRed: "#C43D6D" + brightGreen: "#5FC3E7" + brightYellow: "#F7E5C7" + brightBlue: "#2C8EC2" + brightMagenta: "#B881A7" + brightCyan: "#23B2B6" + brightWhite: "#D8F1FA" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 87.4 + black: 75.9 + red: 66.2 + green: 31.6 + yellow: 0 + blue: 56.6 + magenta: 51 + cyan: 43 + white: 0 + brightBlack: 26.3 + brightRed: 66.2 + brightGreen: 31.6 + brightYellow: 0 + brightBlue: 56.6 + brightMagenta: 51 + brightCyan: 43 + brightWhite: 0 diff --git a/themes/venom-theme.yaml b/themes/venom-theme.yaml new file mode 100644 index 00000000..eb90fbc8 --- /dev/null +++ b/themes/venom-theme.yaml @@ -0,0 +1,49 @@ +name: "Venom Theme" +source: + marketplace_id: "susanta96.venom-theme-vscode" + version: "1.0.1" + installs: 926 + author: "Susanta Chakraborty" + repo: "https://github.com/susanta96/venom-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=susanta96.venom-theme-vscode" +colors: + bg: "#15171E" + fg: "#EFEFEF" + black: "#3C404E" + red: "#F14C4C" + green: "#BAE67E" + yellow: "#D3B632" + blue: "#8271D8" + magenta: "#C3A6FF" + cyan: "#13F8FE" + white: "#DFDFDF" + brightBlack: "#444A5E" + brightRed: "#F14C4C" + brightGreen: "#BAE67E" + brightYellow: "#D3B632" + brightBlue: "#0C13E7" + brightMagenta: "#C3A6FF" + brightCyan: "#13F8FE" + brightWhite: "#DFDFDF" +meta: + mode: "dark" + accent: "purple" + hue: 273 + contrast: + fg: 96.4 + black: 7.5 + red: 38.5 + green: 81.9 + yellow: 62.8 + blue: 33.8 + magenta: 61.3 + cyan: 87.5 + white: 86.2 + brightBlack: 11.1 + brightRed: 38.5 + brightGreen: 81.9 + brightYellow: 62.8 + brightBlue: 12.5 + brightMagenta: 61.3 + brightCyan: 87.5 + brightWhite: 86.2 diff --git a/themes/vercel-light.yaml b/themes/vercel-light.yaml new file mode 100644 index 00000000..64055bec --- /dev/null +++ b/themes/vercel-light.yaml @@ -0,0 +1,49 @@ +name: "Vercel Light" +source: + marketplace_id: "aurorascharff.vercel-docs-theme" + version: "0.3.1" + installs: 24 + author: "aurorascharff" + repo: "https://github.com/aurorascharff/vercel-vscode-docs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=aurorascharff.vercel-docs-theme" +colors: + bg: "#FFFFFF" + fg: "#171717" + black: "#171717" + red: "#D6336C" + green: "#067A3D" + yellow: "#C27800" + blue: "#0070F3" + magenta: "#7C3AED" + cyan: "#0070F3" + white: "#FAFAFA" + brightBlack: "#666666" + brightRed: "#D6336C" + brightGreen: "#067A3D" + brightYellow: "#C27800" + brightBlue: "#0070F3" + brightMagenta: "#7C3AED" + brightCyan: "#0070F3" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 104.7 + black: 104.7 + red: 70.6 + green: 76.6 + yellow: 62.3 + blue: 70.7 + magenta: 77.5 + cyan: 70.7 + white: 0 + brightBlack: 78.8 + brightRed: 70.6 + brightGreen: 76.6 + brightYellow: 62.3 + brightBlue: 70.7 + brightMagenta: 77.5 + brightCyan: 70.7 + brightWhite: 0 diff --git a/themes/vercel.yaml b/themes/vercel.yaml new file mode 100644 index 00000000..2242a076 --- /dev/null +++ b/themes/vercel.yaml @@ -0,0 +1,49 @@ +name: "Vercel" +source: + marketplace_id: "aurorascharff.vercel-docs-theme" + version: "0.3.1" + installs: 24 + author: "aurorascharff" + repo: "https://github.com/aurorascharff/vercel-vscode-docs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=aurorascharff.vercel-docs-theme" +colors: + bg: "#000000" + fg: "#EEEEEE" + black: "#000000" + red: "#FF4D8D" + green: "#3ECF6E" + yellow: "#FFCC47" + blue: "#47A8FF" + magenta: "#C473FC" + cyan: "#0070F3" + white: "#EEEEEE" + brightBlack: "#666666" + brightRed: "#FF4D8D" + brightGreen: "#3ECF6E" + brightYellow: "#FFCC47" + brightBlue: "#47A8FF" + brightMagenta: "#C473FC" + brightCyan: "#47A8FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 96.8 + black: 0 + red: 44.6 + green: 63.4 + yellow: 79.9 + blue: 52.8 + magenta: 46.7 + cyan: 31 + white: 96.8 + brightBlack: 23 + brightRed: 44.6 + brightGreen: 63.4 + brightYellow: 79.9 + brightBlue: 52.8 + brightMagenta: 46.7 + brightCyan: 52.8 + brightWhite: 107.9 diff --git a/themes/verdantium.yaml b/themes/verdantium.yaml new file mode 100644 index 00000000..97cc0be5 --- /dev/null +++ b/themes/verdantium.yaml @@ -0,0 +1,49 @@ +name: "Verdantium" +source: + marketplace_id: "PlutonicVoid.Verdantium" + version: "0.0.1" + installs: 13 + author: "PlutonicVoid" + repo: "https://gitlab.com/peter_thesequel/Verdantium" + url: "https://marketplace.visualstudio.com/items?itemName=PlutonicVoid.Verdantium" +colors: + bg: "#111111" + fg: "#FFD46E" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 83.2 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/verdure.yaml b/themes/verdure.yaml new file mode 100644 index 00000000..6b4aaa0c --- /dev/null +++ b/themes/verdure.yaml @@ -0,0 +1,49 @@ +name: "Verdure" +source: + marketplace_id: "verdure.verdure-vscode-theme" + version: "0.0.2" + installs: 181 + author: "Ada Rachel" + repo: "https://github.com/adarachel/verdure-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=verdure.verdure-vscode-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#B25E5E" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#8A2E2E" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 71 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 88 diff --git a/themes/version-1-0-5.yaml b/themes/version-1-0-5.yaml new file mode 100644 index 00000000..1d6c6ce6 --- /dev/null +++ b/themes/version-1-0-5.yaml @@ -0,0 +1,49 @@ +name: "version 1.0.5" +source: + marketplace_id: "souza.lennon-theme" + version: "1.1.0" + installs: 179 + author: "lennon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=souza.lennon-theme" +colors: + bg: "#1E1E1E" + fg: "#E8E8E8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 91.1 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/very-blue.yaml b/themes/very-blue.yaml new file mode 100644 index 00000000..6b4e2617 --- /dev/null +++ b/themes/very-blue.yaml @@ -0,0 +1,49 @@ +name: "Very Blue" +source: + marketplace_id: "xxhtml.xxhtml-themes" + version: "0.0.15" + installs: 1165 + author: "Isaac" + repo: "https://github.com/XxHTMLStudios/xxhtml-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xxhtml.xxhtml-themes" +colors: + bg: "#222134" + fg: "#C1C1C1" + black: "#444444" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E2E2E2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 66.6 + black: 0 + red: 25.1 + green: 51.4 + yellow: 84 + blue: 25.8 + magenta: 28.2 + cyan: 46 + white: 86.5 + brightBlack: 20.4 + brightRed: 37 + brightGreen: 61.9 + brightYellow: 94 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/very-fast-theme.yaml b/themes/very-fast-theme.yaml new file mode 100644 index 00000000..0e20a6e6 --- /dev/null +++ b/themes/very-fast-theme.yaml @@ -0,0 +1,49 @@ +name: "very fast theme" +source: + marketplace_id: "minekuba.very-fast-theme" + version: "0.0.1" + installs: 61 + author: "minekuba" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=minekuba.very-fast-theme" +colors: + bg: "#280606" + fg: "#E0E0E0" + black: "#4D4D4D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E4E4E4" + brightBlack: "#686868" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 25 + contrast: + fg: 87 + black: 12.2 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 89.5 + brightBlack: 23 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.5 + brightCyan: 55.6 + brightWhite: 107 diff --git a/themes/vesper-golden.yaml b/themes/vesper-golden.yaml new file mode 100644 index 00000000..a89dfbb7 --- /dev/null +++ b/themes/vesper-golden.yaml @@ -0,0 +1,49 @@ +name: "Vesper Golden" +source: + marketplace_id: "narayann7.vesper-golden" + version: "0.0.7" + installs: 533 + author: "narayan" + repo: "https://github.com/narayann7/vesper-golden" + url: "https://marketplace.visualstudio.com/items?itemName=narayann7.vesper-golden" +colors: + bg: "#0A0908" + fg: "#FFFFFF" + black: "#0A0908" + red: "#FF8080" + green: "#FFBF3B" + yellow: "#FFBF3B" + blue: "#74B3F7" + magenta: "#E8D5B7" + cyan: "#F2E7DC" + white: "#FFFFFF" + brightBlack: "#505050" + brightRed: "#FF9999" + brightGreen: "#FFBF3B" + brightYellow: "#FFCFA8" + brightBlue: "#90C4FF" + brightMagenta: "#F4E4BC" + brightCyan: "#FFF9F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 107.8 + black: 0 + red: 54.6 + green: 74.4 + yellow: 74.4 + blue: 58.8 + magenta: 82.4 + cyan: 93.2 + white: 107.8 + brightBlack: 14.1 + brightRed: 62.7 + brightGreen: 74.4 + brightYellow: 82.9 + brightBlue: 68.5 + brightMagenta: 90.9 + brightCyan: 104.3 + brightWhite: 107.8 diff --git a/themes/vesper-purple-dark.yaml b/themes/vesper-purple-dark.yaml new file mode 100644 index 00000000..8855a090 --- /dev/null +++ b/themes/vesper-purple-dark.yaml @@ -0,0 +1,49 @@ +name: "Vesper Purple Dark" +source: + marketplace_id: "xinyao27.vesper-purple-theme" + version: "0.2.2" + installs: 2422 + author: "Xinyao" + repo: "https://github.com/xinyao27/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xinyao27.vesper-purple-theme" +colors: + bg: "#0A0A0A" + fg: "#DBD7CA" + black: "#323232" + red: "#FCA5A5" + green: "#16A34A" + yellow: "#EAB308" + blue: "#0369A1" + magenta: "#C391E6" + cyan: "#06B6D4" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#FCA5A5" + brightGreen: "#16A34A" + brightYellow: "#EAB308" + brightBlue: "#0369A1" + brightMagenta: "#C391E6" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 82.2 + black: 0 + red: 66.4 + green: 41.8 + yellow: 66 + blue: 22.6 + magenta: 53.5 + cyan: 54.7 + white: 82.2 + brightBlack: 30.4 + brightRed: 66.4 + brightGreen: 41.8 + brightYellow: 66 + brightBlue: 22.6 + brightMagenta: 53.5 + brightCyan: 54.7 + brightWhite: 107.7 diff --git a/themes/vesper-purple-light.yaml b/themes/vesper-purple-light.yaml new file mode 100644 index 00000000..10ddd62a --- /dev/null +++ b/themes/vesper-purple-light.yaml @@ -0,0 +1,49 @@ +name: "Vesper Purple Light" +source: + marketplace_id: "xinyao27.vesper-purple-theme" + version: "0.2.2" + installs: 2422 + author: "Xinyao" + repo: "https://github.com/xinyao27/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xinyao27.vesper-purple-theme" +colors: + bg: "#F5F5F5" + fg: "#323232" + black: "#0A0A0A" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#0EA5E9" + magenta: "#9066DF" + cyan: "#06B6D4" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#0EA5E9" + brightMagenta: "#9066DF" + brightCyan: "#06B6D4" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 93 + black: 99.9 + red: 57.9 + green: 38.4 + yellow: 30.4 + blue: 46.9 + magenta: 61.7 + cyan: 41.2 + white: 15.1 + brightBlack: 39.9 + brightRed: 57.9 + brightGreen: 38.4 + brightYellow: 30.4 + brightBlue: 46.9 + brightMagenta: 61.7 + brightCyan: 41.2 + brightWhite: 11.6 diff --git a/themes/vesper.yaml b/themes/vesper.yaml new file mode 100644 index 00000000..6c2a7936 --- /dev/null +++ b/themes/vesper.yaml @@ -0,0 +1,49 @@ +name: "Vesper ++" +source: + marketplace_id: "opedrodev.vesper-pp-lighter" + version: "1.0.1" + installs: 1465 + author: "opedrodev" + repo: "https://github.com/opedrodev/vesper" + url: "https://marketplace.visualstudio.com/items?itemName=opedrodev.vesper-pp-lighter" +colors: + bg: "#161616" + fg: "#FFFFFF" + black: "#161616" + red: "#FF8080" + green: "#99FFE4" + yellow: "#FFC799" + blue: "#FFC799" + magenta: "#FBADFF" + cyan: "#99FFE4" + white: "#E3E3DD" + brightBlack: "#161616" + brightRed: "#FF8080" + brightGreen: "#99FFE4" + brightYellow: "#FFC799" + brightBlue: "#FFC799" + brightMagenta: "#FBADFF" + brightCyan: "#99FFE4" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107 + black: 0 + red: 53.8 + green: 94.7 + yellow: 78.4 + blue: 78.4 + magenta: 72.4 + cyan: 94.7 + white: 88.6 + brightBlack: 0 + brightRed: 53.8 + brightGreen: 94.7 + brightYellow: 78.4 + brightBlue: 78.4 + brightMagenta: 72.4 + brightCyan: 94.7 + brightWhite: 102.1 diff --git a/themes/vhs80.yaml b/themes/vhs80.yaml new file mode 100644 index 00000000..b7386b31 --- /dev/null +++ b/themes/vhs80.yaml @@ -0,0 +1,49 @@ +name: "VHS80" +source: + marketplace_id: "TahaYVR.vhs80" + version: "1.0.1" + installs: 169 + author: "Taha YVR" + repo: "https://github.com/tahayvr/vhs80-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TahaYVR.vhs80" +colors: + bg: "#121212" + fg: "#EAEAEA" + black: "#0D0D0D" + red: "#862020" + green: "#A85511" + yellow: "#A85511" + blue: "#2F8383" + magenta: "#8B7F2E" + cyan: "#2F8383" + white: "#BEBEBE" + brightBlack: "#8A8A8D" + brightRed: "#F87171" + brightGreen: "#A85511" + brightYellow: "#A85511" + brightBlue: "#2F8383" + brightMagenta: "#8B7F2E" + brightCyan: "#2F8383" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 93.6 + black: 0 + red: 11.3 + green: 25.4 + yellow: 25.4 + blue: 30.3 + magenta: 33.3 + cyan: 30.3 + white: 66.9 + brightBlack: 39.1 + brightRed: 48.5 + brightGreen: 25.4 + brightYellow: 25.4 + brightBlue: 30.3 + brightMagenta: 33.3 + brightCyan: 30.3 + brightWhite: 107.3 diff --git a/themes/vi-dark.yaml b/themes/vi-dark.yaml new file mode 100644 index 00000000..184e95eb --- /dev/null +++ b/themes/vi-dark.yaml @@ -0,0 +1,49 @@ +name: "Vi_Dark" +source: + marketplace_id: "higornabuco.vi-dark" + version: "0.0.3" + installs: 269 + author: "Higor Nabuco" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=higornabuco.vi-dark" +colors: + bg: "#1B2423" + fg: "#FFFFFF" + black: "#2A2929" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#00FFCF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#28C988" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 188 + contrast: + fg: 105.4 + black: 0 + red: 25.3 + green: 51.5 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 87.5 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 58.2 + brightYellow: 94.2 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 105.4 diff --git a/themes/vibe-dark-legacy.yaml b/themes/vibe-dark-legacy.yaml new file mode 100644 index 00000000..8886e6a7 --- /dev/null +++ b/themes/vibe-dark-legacy.yaml @@ -0,0 +1,49 @@ +name: "Vibe Dark Legacy" +source: + marketplace_id: "yondav.vibe" + version: "2.0.1" + installs: 1540 + author: "yondav" + repo: "https://github.com/yondav-configs/vibe" + url: "https://marketplace.visualstudio.com/items?itemName=yondav.vibe" +colors: + bg: "#161618" + fg: "#F1EBF3" + black: "#222222" + red: "#FF8D8D" + green: "#89DF95" + yellow: "#FCE789" + blue: "#729FCF" + magenta: "#B37EBC" + cyan: "#55DBE0" + white: "#FAFAFA" + brightBlack: "#333333" + brightRed: "#FF4646" + brightGreen: "#55ED6A" + brightYellow: "#FFE055" + brightBlue: "#49B8FD" + brightMagenta: "#D87DE4" + brightCyan: "#1CF3FB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 95.1 + black: 0 + red: 57.8 + green: 74.8 + yellow: 91.2 + blue: 47.5 + magenta: 42.1 + cyan: 72.9 + white: 103.6 + brightBlack: 0 + brightRed: 41 + brightGreen: 78 + brightYellow: 87.7 + brightBlue: 58.4 + brightMagenta: 50 + brightCyan: 84.9 + brightWhite: 107 diff --git a/themes/vibecolors-corporate-light.yaml b/themes/vibecolors-corporate-light.yaml new file mode 100644 index 00000000..c7884b64 --- /dev/null +++ b/themes/vibecolors-corporate-light.yaml @@ -0,0 +1,49 @@ +name: "VibeColors Corporate Light" +source: + marketplace_id: "AlexLi.vibecolors" + version: "1.1.4" + installs: 113 + author: "Alex Li" + repo: "https://github.com/yili6ms/VibeColors" + url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" +colors: + bg: "#FFFFFF" + fg: "#2C3E50" + black: "#7F8C8D" + red: "#E74C3C" + green: "#27AE60" + yellow: "#F39C12" + blue: "#3498DB" + magenta: "#9B59B6" + cyan: "#1ABC9C" + white: "#2C3E50" + brightBlack: "#7F8C8D" + brightRed: "#E74C3C" + brightGreen: "#27AE60" + brightYellow: "#F39C12" + brightBlue: "#3498DB" + brightMagenta: "#9B59B6" + brightCyan: "#1ABC9C" + brightWhite: "#2C3E50" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.4 + black: 62.4 + red: 64.6 + green: 54.4 + yellow: 42.8 + blue: 58.2 + magenta: 72.1 + cyan: 46.9 + white: 95.4 + brightBlack: 62.4 + brightRed: 64.6 + brightGreen: 54.4 + brightYellow: 42.8 + brightBlue: 58.2 + brightMagenta: 72.1 + brightCyan: 46.9 + brightWhite: 95.4 diff --git a/themes/vibecolors-dark.yaml b/themes/vibecolors-dark.yaml new file mode 100644 index 00000000..456f6731 --- /dev/null +++ b/themes/vibecolors-dark.yaml @@ -0,0 +1,49 @@ +name: "VibeColors Dark" +source: + marketplace_id: "AlexLi.vibecolors" + version: "1.1.4" + installs: 113 + author: "Alex Li" + repo: "https://github.com/yili6ms/VibeColors" + url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#414868" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#C0CAF5" + brightBlack: "#565F89" + brightRed: "#F7768E" + brightGreen: "#9ECE6A" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 73.8 + black: 10.3 + red: 49.4 + green: 66.9 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 73.8 + brightBlack: 19.5 + brightRed: 49.4 + brightGreen: 66.9 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 73.8 diff --git a/themes/vibecolors-dynamic-dark.yaml b/themes/vibecolors-dynamic-dark.yaml new file mode 100644 index 00000000..80fd8118 --- /dev/null +++ b/themes/vibecolors-dynamic-dark.yaml @@ -0,0 +1,49 @@ +name: "VibeColors Dynamic Dark" +source: + marketplace_id: "AlexLi.vibecolors" + version: "1.1.4" + installs: 113 + author: "Alex Li" + repo: "https://github.com/yili6ms/VibeColors" + url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" +colors: + bg: "#1A1525" + fg: "#E8D5FF" + black: "#6B4F7A" + red: "#FF4757" + green: "#26D0CE" + yellow: "#FFA726" + blue: "#5DADE2" + magenta: "#FF6B9D" + cyan: "#4BCFFA" + white: "#E8D5FF" + brightBlack: "#6B4F7A" + brightRed: "#FF4757" + brightGreen: "#26D0CE" + brightYellow: "#FFA726" + brightBlue: "#5DADE2" + brightMagenta: "#FF6B9D" + brightCyan: "#4BCFFA" + brightWhite: "#E8D5FF" +meta: + mode: "dark" + accent: "orange" + hue: 298 + contrast: + fg: 84.7 + black: 16.9 + red: 41.2 + green: 65.5 + yellow: 64.4 + blue: 52.7 + magenta: 49.5 + cyan: 68.2 + white: 84.7 + brightBlack: 16.9 + brightRed: 41.2 + brightGreen: 65.5 + brightYellow: 64.4 + brightBlue: 52.7 + brightMagenta: 49.5 + brightCyan: 68.2 + brightWhite: 84.7 diff --git a/themes/vibecolors-dynamic-light.yaml b/themes/vibecolors-dynamic-light.yaml new file mode 100644 index 00000000..37230d8f --- /dev/null +++ b/themes/vibecolors-dynamic-light.yaml @@ -0,0 +1,49 @@ +name: "VibeColors Dynamic Light" +source: + marketplace_id: "AlexLi.vibecolors" + version: "1.1.4" + installs: 113 + author: "Alex Li" + repo: "https://github.com/yili6ms/VibeColors" + url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" +colors: + bg: "#FEF9E7" + fg: "#2D4A22" + black: "#6C8F5C" + red: "#DC3545" + green: "#198754" + yellow: "#FD7E14" + blue: "#0D6EFD" + magenta: "#D63384" + cyan: "#20C997" + white: "#2D4A22" + brightBlack: "#6C8F5C" + brightRed: "#DC3545" + brightGreen: "#198754" + brightYellow: "#FD7E14" + brightBlue: "#0D6EFD" + brightMagenta: "#D63384" + brightCyan: "#20C997" + brightWhite: "#2D4A22" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 89.3 + black: 60.6 + red: 66.3 + green: 67.3 + yellow: 45.9 + blue: 66.6 + magenta: 66.2 + cyan: 37.5 + white: 89.3 + brightBlack: 60.6 + brightRed: 66.3 + brightGreen: 67.3 + brightYellow: 45.9 + brightBlue: 66.6 + brightMagenta: 66.2 + brightCyan: 37.5 + brightWhite: 89.3 diff --git a/themes/vibecolors-light.yaml b/themes/vibecolors-light.yaml new file mode 100644 index 00000000..cfc0b427 --- /dev/null +++ b/themes/vibecolors-light.yaml @@ -0,0 +1,49 @@ +name: "VibeColors Light" +source: + marketplace_id: "AlexLi.vibecolors" + version: "1.1.4" + installs: 113 + author: "Alex Li" + repo: "https://github.com/yili6ms/VibeColors" + url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" +colors: + bg: "#FFFFFF" + fg: "#24292F" + black: "#586069" + red: "#D73A49" + green: "#28A745" + yellow: "#FFD33D" + blue: "#0366D6" + magenta: "#EA4AAA" + cyan: "#17A2B8" + white: "#24292F" + brightBlack: "#8C92AC" + brightRed: "#D73A49" + brightGreen: "#28A745" + brightYellow: "#FFD33D" + brightBlue: "#0366D6" + brightMagenta: "#EA4AAA" + brightCyan: "#17A2B8" + brightWhite: "#24292F" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 101.5 + black: 81.7 + red: 70.4 + green: 57.9 + yellow: 20.6 + blue: 76.2 + magenta: 61.1 + cyan: 56.8 + white: 101.5 + brightBlack: 57.7 + brightRed: 70.4 + brightGreen: 57.9 + brightYellow: 20.6 + brightBlue: 76.2 + brightMagenta: 61.1 + brightCyan: 56.8 + brightWhite: 101.5 diff --git a/themes/vibecolors-minimal-light.yaml b/themes/vibecolors-minimal-light.yaml new file mode 100644 index 00000000..9d5195cd --- /dev/null +++ b/themes/vibecolors-minimal-light.yaml @@ -0,0 +1,49 @@ +name: "VibeColors Minimal Light" +source: + marketplace_id: "AlexLi.vibecolors" + version: "1.1.4" + installs: 113 + author: "Alex Li" + repo: "https://github.com/yili6ms/VibeColors" + url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" +colors: + bg: "#FAFAFA" + fg: "#333333" + black: "#666666" + red: "#CC0000" + green: "#009900" + yellow: "#FF9900" + blue: "#0066CC" + magenta: "#9900CC" + cyan: "#0099CC" + white: "#333333" + brightBlack: "#666666" + brightRed: "#CC0000" + brightGreen: "#009900" + brightYellow: "#FF9900" + brightBlue: "#0066CC" + brightMagenta: "#9900CC" + brightCyan: "#0099CC" + brightWhite: "#333333" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 95.7 + black: 75.8 + red: 73.5 + green: 61.5 + yellow: 38.5 + blue: 74 + magenta: 76.8 + cyan: 56.3 + white: 95.7 + brightBlack: 75.8 + brightRed: 73.5 + brightGreen: 61.5 + brightYellow: 38.5 + brightBlue: 74 + brightMagenta: 76.8 + brightCyan: 56.3 + brightWhite: 95.7 diff --git a/themes/vibecolors-neon-dark.yaml b/themes/vibecolors-neon-dark.yaml new file mode 100644 index 00000000..8c740368 --- /dev/null +++ b/themes/vibecolors-neon-dark.yaml @@ -0,0 +1,49 @@ +name: "VibeColors Neon Dark" +source: + marketplace_id: "AlexLi.vibecolors" + version: "1.1.4" + installs: 113 + author: "Alex Li" + repo: "https://github.com/yili6ms/VibeColors" + url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" +colors: + bg: "#0D1117" + fg: "#E6EDF3" + black: "#484F58" + red: "#FF0080" + green: "#39FF14" + yellow: "#FFFF00" + blue: "#0080FF" + magenta: "#FF69B4" + cyan: "#00FFFF" + white: "#E6EDF3" + brightBlack: "#484F58" + brightRed: "#FF0080" + brightGreen: "#39FF14" + brightYellow: "#FFFF00" + brightBlue: "#0080FF" + brightMagenta: "#FF69B4" + brightCyan: "#00FFFF" + brightWhite: "#E6EDF3" +meta: + mode: "dark" + accent: "green" + hue: 258 + contrast: + fg: 95 + black: 13.1 + red: 38.8 + green: 86.5 + yellow: 102.2 + blue: 36.6 + magenta: 50.6 + cyan: 91.7 + white: 95 + brightBlack: 13.1 + brightRed: 38.8 + brightGreen: 86.5 + brightYellow: 102.2 + brightBlue: 36.6 + brightMagenta: 50.6 + brightCyan: 91.7 + brightWhite: 95 diff --git a/themes/vibecolors-ocean-dark.yaml b/themes/vibecolors-ocean-dark.yaml new file mode 100644 index 00000000..6be998a2 --- /dev/null +++ b/themes/vibecolors-ocean-dark.yaml @@ -0,0 +1,49 @@ +name: "VibeColors Ocean Dark" +source: + marketplace_id: "AlexLi.vibecolors" + version: "1.1.4" + installs: 113 + author: "Alex Li" + repo: "https://github.com/yili6ms/VibeColors" + url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" +colors: + bg: "#061621" + fg: "#D7F7FF" + black: "#0F2733" + red: "#FF6F70" + green: "#8FF0C1" + yellow: "#FFD37D" + blue: "#42C5FF" + magenta: "#FF9B6A" + cyan: "#21D4F0" + white: "#F3FEFF" + brightBlack: "#0F2733" + brightRed: "#FF6F70" + brightGreen: "#8FF0C1" + brightYellow: "#FFD37D" + brightBlue: "#42C5FF" + brightMagenta: "#FF9B6A" + brightCyan: "#21D4F0" + brightWhite: "#F3FEFF" +meta: + mode: "dark" + accent: "orange" + hue: 240 + contrast: + fg: 98 + black: 0 + red: 49.3 + green: 85.1 + yellow: 82.8 + blue: 64 + magenta: 61.4 + cyan: 69.3 + white: 104.9 + brightBlack: 0 + brightRed: 49.3 + brightGreen: 85.1 + brightYellow: 82.8 + brightBlue: 64 + brightMagenta: 61.4 + brightCyan: 69.3 + brightWhite: 104.9 diff --git a/themes/vibecolors-pastel-light.yaml b/themes/vibecolors-pastel-light.yaml new file mode 100644 index 00000000..09162ab9 --- /dev/null +++ b/themes/vibecolors-pastel-light.yaml @@ -0,0 +1,49 @@ +name: "VibeColors Pastel Light" +source: + marketplace_id: "AlexLi.vibecolors" + version: "1.1.4" + installs: 113 + author: "Alex Li" + repo: "https://github.com/yili6ms/VibeColors" + url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" +colors: + bg: "#FEF7FF" + fg: "#5A5A5A" + black: "#7A7A7A" + red: "#FF9BB3" + green: "#99E6B3" + yellow: "#FFCC99" + blue: "#99C5FF" + magenta: "#D4A5D4" + cyan: "#99E6D6" + white: "#5A5A5A" + brightBlack: "#7A7A7A" + brightRed: "#FF9BB3" + brightGreen: "#99E6B3" + brightYellow: "#FFCC99" + brightBlue: "#99C5FF" + brightMagenta: "#D4A5D4" + brightCyan: "#99E6D6" + brightWhite: "#5A5A5A" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 80.3 + black: 66.2 + red: 34.5 + green: 18.5 + yellow: 18.4 + blue: 29.3 + magenta: 36.9 + cyan: 17.2 + white: 80.3 + brightBlack: 66.2 + brightRed: 34.5 + brightGreen: 18.5 + brightYellow: 18.4 + brightBlue: 29.3 + brightMagenta: 36.9 + brightCyan: 17.2 + brightWhite: 80.3 diff --git a/themes/vibecolors-retro-dark.yaml b/themes/vibecolors-retro-dark.yaml new file mode 100644 index 00000000..509b11de --- /dev/null +++ b/themes/vibecolors-retro-dark.yaml @@ -0,0 +1,49 @@ +name: "VibeColors Retro Dark" +source: + marketplace_id: "AlexLi.vibecolors" + version: "1.1.4" + installs: 113 + author: "Alex Li" + repo: "https://github.com/yili6ms/VibeColors" + url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" +colors: + bg: "#0C1021" + fg: "#00FF41" + black: "#2A5A3E" + red: "#FF4444" + green: "#00FF41" + yellow: "#FFCC00" + blue: "#4488FF" + magenta: "#FF8844" + cyan: "#44FFFF" + white: "#FFFFFF" + brightBlack: "#2A5A3E" + brightRed: "#FF4444" + brightGreen: "#00FF41" + brightYellow: "#FFCC00" + brightBlue: "#4488FF" + brightMagenta: "#FF8844" + brightCyan: "#44FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 272 + contrast: + fg: 86.2 + black: 14.1 + red: 41.1 + green: 86.2 + yellow: 79.1 + blue: 40.3 + magenta: 55.3 + cyan: 92.3 + white: 107.3 + brightBlack: 14.1 + brightRed: 41.1 + brightGreen: 86.2 + brightYellow: 79.1 + brightBlue: 40.3 + brightMagenta: 55.3 + brightCyan: 92.3 + brightWhite: 107.3 diff --git a/themes/vibecolors-soft-dark.yaml b/themes/vibecolors-soft-dark.yaml new file mode 100644 index 00000000..0f461d06 --- /dev/null +++ b/themes/vibecolors-soft-dark.yaml @@ -0,0 +1,49 @@ +name: "VibeColors Soft Dark" +source: + marketplace_id: "AlexLi.vibecolors" + version: "1.1.4" + installs: 113 + author: "Alex Li" + repo: "https://github.com/yili6ms/VibeColors" + url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" +colors: + bg: "#2D2A2E" + fg: "#FCFCFA" + black: "#5B595C" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#CBA6F7" + cyan: "#94E2D5" + white: "#FCFCFA" + brightBlack: "#5B595C" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#CBA6F7" + brightCyan: "#94E2D5" + brightWhite: "#FCFCFA" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.8 + black: 13.9 + red: 52.7 + green: 76.4 + yellow: 86.4 + blue: 57.1 + magenta: 58.9 + cyan: 76.3 + white: 101.8 + brightBlack: 13.9 + brightRed: 52.7 + brightGreen: 76.4 + brightYellow: 86.4 + brightBlue: 57.1 + brightMagenta: 58.9 + brightCyan: 76.3 + brightWhite: 101.8 diff --git a/themes/vibecolors-sunset-light.yaml b/themes/vibecolors-sunset-light.yaml new file mode 100644 index 00000000..e5c48bf9 --- /dev/null +++ b/themes/vibecolors-sunset-light.yaml @@ -0,0 +1,49 @@ +name: "VibeColors Sunset Light" +source: + marketplace_id: "AlexLi.vibecolors" + version: "1.1.4" + installs: 113 + author: "Alex Li" + repo: "https://github.com/yili6ms/VibeColors" + url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" +colors: + bg: "#FFF7F0" + fg: "#3A1B1A" + black: "#6E4439" + red: "#D74949" + green: "#5A9965" + yellow: "#C98900" + blue: "#3C8FA0" + magenta: "#C9508A" + cyan: "#3EA8A5" + white: "#FFFFFF" + brightBlack: "#6E4439" + brightRed: "#D74949" + brightGreen: "#5A9965" + brightYellow: "#C98900" + brightBlue: "#3C8FA0" + brightMagenta: "#C9508A" + brightCyan: "#3EA8A5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.2 + black: 84.3 + red: 64.3 + green: 57.3 + yellow: 51.9 + blue: 60.6 + magenta: 64.2 + cyan: 50.4 + white: 0 + brightBlack: 84.3 + brightRed: 64.3 + brightGreen: 57.3 + brightYellow: 51.9 + brightBlue: 60.6 + brightMagenta: 64.2 + brightCyan: 50.4 + brightWhite: 0 diff --git a/themes/vibes.yaml b/themes/vibes.yaml new file mode 100644 index 00000000..f21b2ed5 --- /dev/null +++ b/themes/vibes.yaml @@ -0,0 +1,49 @@ +name: "Vibes" +source: + marketplace_id: "FusionTerror.vibey-theme" + version: "0.0.3" + installs: 908 + author: "Fusion Terror" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=FusionTerror.vibey-theme" +colors: + bg: "#301830" + fg: "#C0D8F0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 327 + contrast: + fg: 78.8 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.1 + magenta: 28.4 + cyan: 46.2 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.2 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.7 + brightMagenta: 44 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/vibra.yaml b/themes/vibra.yaml new file mode 100644 index 00000000..f17fbf1f --- /dev/null +++ b/themes/vibra.yaml @@ -0,0 +1,49 @@ +name: "Vibra" +source: + marketplace_id: "TayMizami.vibra" + version: "0.0.3" + installs: 3797 + author: "Tay Mizami" + repo: "https://github.com/taymizami/vibra" + url: "https://marketplace.visualstudio.com/items?itemName=TayMizami.vibra" +colors: + bg: "#191617" + fg: "#FFFFFF" + black: "#9F9F9F" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F0F0F0" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.9 + black: 49.3 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 97.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/vibrant-abyss-vscode.yaml b/themes/vibrant-abyss-vscode.yaml new file mode 100644 index 00000000..dd054909 --- /dev/null +++ b/themes/vibrant-abyss-vscode.yaml @@ -0,0 +1,49 @@ +name: "vibrant-abyss-vscode" +source: + marketplace_id: "noelhorvath.vibrant-abyss" + version: "0.4.13" + installs: 1574 + author: "Noel Horváth" + repo: "https://github.com/noelhorvath/vibrant-abyss" + url: "https://marketplace.visualstudio.com/items?itemName=noelhorvath.vibrant-abyss" +colors: + bg: "#000000" + fg: "#DEDEDE" + black: "#1A1A1A" + red: "#FF6439" + green: "#26E019" + yellow: "#E7D427" + blue: "#34A7FF" + magenta: "#D129C2" + cyan: "#0BDEE3" + white: "#CDCDCD" + brightBlack: "#2A2A2A" + brightRed: "#FF8566" + brightGreen: "#5FD789" + brightYellow: "#FFEE00" + brightBlue: "#4EC1FB" + brightMagenta: "#FE77EF" + brightCyan: "#0DF8FC" + brightWhite: "#DEDEDE" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 86.6 + black: 0 + red: 46.8 + green: 70.5 + yellow: 79.3 + blue: 51.8 + magenta: 33 + cyan: 74.1 + white: 76.3 + brightBlack: 0 + brightRed: 55.5 + brightGreen: 69.1 + brightYellow: 94.6 + brightBlue: 63.2 + brightMagenta: 57.2 + brightCyan: 88.4 + brightWhite: 86.6 diff --git a/themes/vibrant-dark.yaml b/themes/vibrant-dark.yaml new file mode 100644 index 00000000..d8493ee5 --- /dev/null +++ b/themes/vibrant-dark.yaml @@ -0,0 +1,49 @@ +name: "Vibrant Dark" +source: + marketplace_id: "kalternate.vibrant-theme" + version: "1.0.4" + installs: 873 + author: "kalternate" + repo: "https://github.com/kalternate/vibrant-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kalternate.vibrant-theme" +colors: + bg: "#282C34" + fg: "#AFB7C7" + black: "#40444C" + red: "#F81141" + green: "#23974A" + yellow: "#FD7E57" + blue: "#285BFF" + magenta: "#8C62FD" + cyan: "#3A8AB2" + white: "#CDD3E0" + brightBlack: "#8F9AAE" + brightRed: "#FC4A6D" + brightGreen: "#37BD58" + brightYellow: "#F6BE48" + brightBlue: "#199FFD" + brightMagenta: "#FC58F6" + brightCyan: "#50ACAE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 59 + black: 0 + red: 32.1 + green: 32.8 + yellow: 48.7 + blue: 22.6 + magenta: 30.8 + cyan: 31.8 + white: 75.5 + brightBlack: 43.2 + brightRed: 38.3 + brightGreen: 50.1 + brightYellow: 68.5 + brightBlue: 43.9 + brightMagenta: 46.9 + brightCyan: 45.9 + brightWhite: 103.7 diff --git a/themes/vibrant-max.yaml b/themes/vibrant-max.yaml new file mode 100644 index 00000000..6ba6f1a7 --- /dev/null +++ b/themes/vibrant-max.yaml @@ -0,0 +1,49 @@ +name: "Vibrant Max" +source: + marketplace_id: "MatthewOrchard.vibrant-max" + version: "0.0.8" + installs: 527 + author: "Matthew Orchard" + repo: "https://github.com/mattorchard/vibrant-max" + url: "https://marketplace.visualstudio.com/items?itemName=MatthewOrchard.vibrant-max" +colors: + bg: "#171923" + fg: "#A0AEC0" + black: "#000000" + red: "#F56565" + green: "#48BB78" + yellow: "#ECC94B" + blue: "#4299E1" + magenta: "#9F7AEA" + cyan: "#0BC5EA" + white: "#F7FAFC" + brightBlack: "#4A5568" + brightRed: "#FC8181" + brightGreen: "#68D391" + brightYellow: "#F6E05E" + brightBlue: "#63B3ED" + brightMagenta: "#B794F4" + brightCyan: "#76E4F7" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "orange" + hue: 276 + contrast: + fg: 56.4 + black: 0 + red: 44.2 + green: 53.3 + yellow: 74.3 + blue: 43.4 + magenta: 40.8 + cyan: 61.5 + white: 103 + brightBlack: 14.6 + brightRed: 53.1 + brightGreen: 66.5 + brightYellow: 86 + brightBlue: 56 + brightMagenta: 52.5 + brightCyan: 79.6 + brightWhite: 91.2 diff --git a/themes/vice-city-noir.yaml b/themes/vice-city-noir.yaml new file mode 100644 index 00000000..46eb5efb --- /dev/null +++ b/themes/vice-city-noir.yaml @@ -0,0 +1,49 @@ +name: "Vice City Noir" +source: + marketplace_id: "Wasted69.dark-theme-sos" + version: "2.7.0" + installs: 402 + author: "Wasted" + repo: "https://github.com/riel-fas/VScode_theme_extension" + url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" +colors: + bg: "#0D1B2A" + fg: "#FFFFFF" + black: "#0D1B2A" + red: "#FF0066" + green: "#00FF7F" + yellow: "#FFD700" + blue: "#00FFFF" + magenta: "#FF1493" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#0D1B2A" + brightRed: "#FF0066" + brightGreen: "#00FF7F" + brightYellow: "#FFD700" + brightBlue: "#00FFFF" + brightMagenta: "#FF1493" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 251 + contrast: + fg: 106.5 + black: 0 + red: 37.2 + green: 86.2 + yellow: 82.9 + blue: 90.8 + magenta: 38.7 + cyan: 90.8 + white: 106.5 + brightBlack: 0 + brightRed: 37.2 + brightGreen: 86.2 + brightYellow: 82.9 + brightBlue: 90.8 + brightMagenta: 38.7 + brightCyan: 90.8 + brightWhite: 106.5 diff --git a/themes/vicious.yaml b/themes/vicious.yaml new file mode 100644 index 00000000..6061259b --- /dev/null +++ b/themes/vicious.yaml @@ -0,0 +1,49 @@ +name: "Vicious" +source: + marketplace_id: "ZaherAlMajed.vicious" + version: "1.0.5" + installs: 252 + author: "Zaher Al Majed" + repo: "https://github.com/zaheralmajed/vicious-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ZaherAlMajed.vicious" +colors: + bg: "#08090E" + fg: "#FBFCFC" + black: "#4F5053" + red: "#EE81F1" + green: "#E3EB8B" + yellow: "#F1C981" + blue: "#8BE3EB" + magenta: "#F18196" + cyan: "#8DF181" + white: "#818184" + brightBlack: "#818184" + brightRed: "#AB8BEB" + brightGreen: "#F19A81" + brightYellow: "#F1C981" + brightBlue: "#81F1A4" + brightMagenta: "#F181C5" + brightCyan: "#BCF181" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 105.6 + black: 14.1 + red: 56.6 + green: 90.4 + yellow: 77.1 + blue: 81 + magenta: 52.7 + cyan: 84.3 + white: 35.2 + brightBlack: 35.2 + brightRed: 48.6 + brightGreen: 59.6 + brightYellow: 77.1 + brightBlue: 84.4 + brightMagenta: 54.7 + brightCyan: 88.4 + brightWhite: 90.9 diff --git a/themes/victoria-dark.yaml b/themes/victoria-dark.yaml new file mode 100644 index 00000000..33d03a41 --- /dev/null +++ b/themes/victoria-dark.yaml @@ -0,0 +1,49 @@ +name: "Victoria Dark" +source: + marketplace_id: "lucidlabs.victoria-theme" + version: "1.1.0" + installs: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.victoria-theme" +colors: + bg: "#0C0E18" + fg: "#E8EDF3" + black: "#0C0E18" + red: "#E22339" + green: "#6BBE27" + yellow: "#FFCC2C" + blue: "#0052C2" + magenta: "#003174" + cyan: "#5B9BD5" + white: "#E8EDF3" + brightBlack: "#78797E" + brightRed: "#FF4D5E" + brightGreen: "#78D65B" + brightYellow: "#FFE066" + brightBlue: "#3D7FD6" + brightMagenta: "#E07AFF" + brightCyan: "#7EB8DA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 95.4 + black: 0 + red: 31.1 + green: 56.1 + yellow: 79.3 + blue: 18.1 + magenta: 0 + cyan: 45.5 + white: 95.4 + brightBlack: 31.2 + brightRed: 42.9 + brightGreen: 68.7 + brightYellow: 88.5 + brightBlue: 34 + brightMagenta: 53 + brightCyan: 59.7 + brightWhite: 107.5 diff --git a/themes/victoria-light.yaml b/themes/victoria-light.yaml new file mode 100644 index 00000000..061a6499 --- /dev/null +++ b/themes/victoria-light.yaml @@ -0,0 +1,49 @@ +name: "Victoria Light" +source: + marketplace_id: "lucidlabs.victoria-theme" + version: "1.1.0" + installs: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.victoria-theme" +colors: + bg: "#FFFFFF" + fg: "#0C0E18" + black: "#0C0E18" + red: "#E22339" + green: "#0A690D" + yellow: "#B38800" + blue: "#0052C2" + magenta: "#003174" + cyan: "#006A8F" + white: "#FFFFFF" + brightBlack: "#78797E" + brightRed: "#8A1220" + brightGreen: "#339D37" + brightYellow: "#FFCC2C" + brightBlue: "#003DA0" + brightMagenta: "#001E50" + brightCyan: "#5B9BD5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 105.6 + black: 105.6 + red: 70.2 + green: 83.3 + yellow: 59.7 + blue: 83.4 + magenta: 97.5 + cyan: 79.8 + white: 0 + brightBlack: 70.1 + brightRed: 90.5 + brightGreen: 62 + brightYellow: 23.5 + brightBlue: 91.4 + brightMagenta: 102.6 + brightCyan: 56 + brightWhite: 0 diff --git a/themes/video-contrast.yaml b/themes/video-contrast.yaml new file mode 100644 index 00000000..825ed817 --- /dev/null +++ b/themes/video-contrast.yaml @@ -0,0 +1,49 @@ +name: "Video-Contrast" +source: + marketplace_id: "valentinesamuel.fallout-dark" + version: "0.0.1" + installs: 2242 + author: "valentine samuel" + repo: "https://github.com/valentinesamuel/themes" + url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#A51F1F" + green: "#1BBC0D" + yellow: "#FFFF00" + blue: "#2733E6" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C2C2C2" + brightBlack: "#2E2E2E" + brightRed: "#F14C4C" + brightGreen: "#27D94B" + brightYellow: "#FFFF3E" + brightBlue: "#0263CF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 17.7 + green: 52.8 + yellow: 102.7 + blue: 16.5 + magenta: 30.8 + cyan: 48.6 + white: 69.8 + brightBlack: 0 + brightRed: 39.6 + brightGreen: 67.3 + brightYellow: 102.9 + brightBlue: 24.1 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/vigerdark.yaml b/themes/vigerdark.yaml new file mode 100644 index 00000000..5c4612a5 --- /dev/null +++ b/themes/vigerdark.yaml @@ -0,0 +1,49 @@ +name: "VigerDark" +source: + marketplace_id: "BigTreeWorld.vigerdark" + version: "0.0.2" + installs: 54 + author: "Big Tree World" + repo: "https://github.com/rameezv/vigerdark-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BigTreeWorld.vigerdark" +colors: + bg: "#0A0A0A" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.3 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/vigikai.yaml b/themes/vigikai.yaml new file mode 100644 index 00000000..36c37e94 --- /dev/null +++ b/themes/vigikai.yaml @@ -0,0 +1,49 @@ +name: "Vigikai" +source: + marketplace_id: "vigi-p.vigikai" + version: "1.0.1" + installs: 271 + author: "Vignesh Prasad" + repo: "https://github.com/ViGi-P/vigikai" + url: "https://marketplace.visualstudio.com/items?itemName=vigi-p.vigikai" +colors: + bg: "#1E1F1C" + fg: "#A0EA33" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 79.5 + black: 0 + red: 23.7 + green: 52.1 + yellow: 56.8 + blue: 33.7 + magenta: 31.3 + cyan: 49.5 + white: 87.6 + brightBlack: 21.1 + brightRed: 36.4 + brightGreen: 76.1 + brightYellow: 83 + brightBlue: 48.9 + brightMagenta: 45.6 + brightCyan: 72.5 + brightWhite: 101.1 diff --git a/themes/viii-iii-mmv.yaml b/themes/viii-iii-mmv.yaml new file mode 100644 index 00000000..8b70aa7d --- /dev/null +++ b/themes/viii-iii-mmv.yaml @@ -0,0 +1,49 @@ +name: "VIII-III-MMV" +source: + marketplace_id: "VIII-III-MMV.viii-iii-mmv" + version: "0.0.3" + installs: 11 + author: "VIII-III-MMV-The-Theme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=VIII-III-MMV.viii-iii-mmv" +colors: + bg: "#0A0A0F" + fg: "#E8E8F0" + black: "#0A0A0F" + red: "#FF3366" + green: "#00FF88" + yellow: "#FFDD33" + blue: "#0099FF" + magenta: "#CC66FF" + cyan: "#00D4FF" + white: "#E8E8F0" + brightBlack: "#4A4A60" + brightRed: "#FF5588" + brightGreen: "#44FFAA" + brightYellow: "#FFEE55" + brightBlue: "#44AAFF" + brightMagenta: "#DD88FF" + brightCyan: "#44DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 93.1 + black: 0 + red: 40.3 + green: 87.6 + yellow: 86.8 + blue: 45.7 + magenta: 45 + cyan: 70.7 + white: 93.1 + brightBlack: 12.5 + brightRed: 45.5 + brightGreen: 89.2 + brightYellow: 94.8 + brightBlue: 53.3 + brightMagenta: 56.4 + brightCyan: 75.8 + brightWhite: 107.7 diff --git a/themes/vikkie-dark.yaml b/themes/vikkie-dark.yaml new file mode 100644 index 00000000..a3f53985 --- /dev/null +++ b/themes/vikkie-dark.yaml @@ -0,0 +1,49 @@ +name: "Vikkie!!! Dark" +source: + marketplace_id: "atomicnumberphi.vikkie-theme" + version: "1.0.3" + installs: 97 + author: "Kaleidosium" + repo: "https://github.com/Kaleidosium/vikkie-theme" + url: "https://marketplace.visualstudio.com/items?itemName=atomicnumberphi.vikkie-theme" +colors: + bg: "#322544" + fg: "#E1E1E6" + black: "#100E23" + red: "#FF5458" + green: "#62D196" + yellow: "#FFB378" + blue: "#65B2FF" + magenta: "#906CFF" + cyan: "#63F2F1" + white: "#A6B3CC" + brightBlack: "#565575" + brightRed: "#FF8080" + brightGreen: "#95FFA4" + brightYellow: "#FFE9AA" + brightBlue: "#91DDFF" + brightMagenta: "#C991E1" + brightCyan: "#AAFFE4" + brightWhite: "#CBE3E7" +meta: + mode: "dark" + accent: "magenta" + hue: 302 + contrast: + fg: 84.6 + black: 0 + red: 40.2 + green: 62.6 + yellow: 66.7 + blue: 54.1 + magenta: 34 + cyan: 82.4 + white: 56.7 + brightBlack: 13.2 + brightRed: 50.6 + brightGreen: 88.9 + brightYellow: 90.3 + brightBlue: 75.7 + brightMagenta: 50.1 + brightCyan: 92.9 + brightWhite: 82.8 diff --git a/themes/vikkie-light.yaml b/themes/vikkie-light.yaml new file mode 100644 index 00000000..0e79a3d8 --- /dev/null +++ b/themes/vikkie-light.yaml @@ -0,0 +1,49 @@ +name: "Vikkie!!! Light" +source: + marketplace_id: "atomicnumberphi.vikkie-theme" + version: "1.0.3" + installs: 97 + author: "Kaleidosium" + repo: "https://github.com/Kaleidosium/vikkie-theme" + url: "https://marketplace.visualstudio.com/items?itemName=atomicnumberphi.vikkie-theme" +colors: + bg: "#F8F5FF" + fg: "#2A1E3A" + black: "#2A1E3A" + red: "#FF6F6F" + green: "#059669" + yellow: "#D97706" + blue: "#3B82F6" + magenta: "#A66BB8" + cyan: "#06B6D4" + white: "#E8E1F5" + brightBlack: "#6A6D77" + brightRed: "#FCA5A5" + brightGreen: "#34D399" + brightYellow: "#FCD34D" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 97.3 + black: 97.3 + red: 46.6 + green: 59.5 + yellow: 53.3 + blue: 58.7 + magenta: 60.9 + cyan: 42 + white: 8.3 + brightBlack: 70.4 + brightRed: 30.8 + brightGreen: 31.1 + brightYellow: 15.8 + brightBlue: 44.4 + brightMagenta: 46.1 + brightCyan: 16 + brightWhite: 0 diff --git a/themes/villain-dark.yaml b/themes/villain-dark.yaml new file mode 100644 index 00000000..dd20b920 --- /dev/null +++ b/themes/villain-dark.yaml @@ -0,0 +1,49 @@ +name: "villain-dark" +source: + marketplace_id: "sahilkumardev.villan-theam" + version: "0.0.2" + installs: 558 + author: "sahil kumar dev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sahilkumardev.villan-theam" +colors: + bg: "#28282B" + fg: "#FFFFFF" + black: "#1E1E20" + red: "#FF6F5E" + green: "#7ED957" + yellow: "#FFC56C" + blue: "#9F6DFF" + magenta: "#FFA256" + cyan: "#B7A6FF" + white: "#D4CCFF" + brightBlack: "#3A3A3E" + brightRed: "#FF8A7A" + brightGreen: "#96E56F" + brightYellow: "#FFD280" + brightBlue: "#B7A6FF" + brightMagenta: "#FFB374" + brightCyan: "#C8B7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 104.4 + black: 0 + red: 46.2 + green: 67.3 + yellow: 74 + blue: 36.7 + magenta: 60.7 + cyan: 57.3 + white: 75.8 + brightBlack: 0 + brightRed: 53.9 + brightGreen: 75.3 + brightYellow: 79.8 + brightBlue: 57.3 + brightMagenta: 67.2 + brightCyan: 65.8 + brightWhite: 104.4 diff --git a/themes/villain-light.yaml b/themes/villain-light.yaml new file mode 100644 index 00000000..5792073b --- /dev/null +++ b/themes/villain-light.yaml @@ -0,0 +1,49 @@ +name: "villain-light" +source: + marketplace_id: "sahilkumardev.villan-theam" + version: "0.0.2" + installs: 558 + author: "sahil kumar dev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sahilkumardev.villan-theam" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#44403C" + red: "#DC2626" + green: "#16A34A" + yellow: "#D97706" + blue: "#2563EB" + magenta: "#7C3AED" + cyan: "#0891B2" + white: "#A1A1AA" + brightBlack: "#78716C" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FBBF24" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#22D3EE" + brightWhite: "#E7E5E4" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 106 + black: 93.9 + red: 71.6 + green: 59.7 + yellow: 58.5 + blue: 74.9 + magenta: 77.5 + cyan: 63.8 + white: 50.2 + brightBlack: 73.3 + brightRed: 52.8 + brightGreen: 31.3 + brightYellow: 29.1 + brightBlue: 63.9 + brightMagenta: 66.2 + brightCyan: 33 + brightWhite: 12.7 diff --git a/themes/vim-dar11sdasdasd.yaml b/themes/vim-dar11sdasdasd.yaml new file mode 100644 index 00000000..9f15aa02 --- /dev/null +++ b/themes/vim-dar11sdasdasd.yaml @@ -0,0 +1,49 @@ +name: "Vim Dar11sdasdasd" +source: + marketplace_id: "AndreaCombette.SweetWood" + version: "0.5.5" + installs: 249 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/SweetWood-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.SweetWood" +colors: + bg: "#3D2D27" + fg: "#B1C1D7" + black: "#3D2D27" + red: "#A16B38" + green: "#D3923F" + yellow: "#D3923F" + blue: "#6D859C" + magenta: "#A16B38" + cyan: "#6D859C" + white: "#96A8BF" + brightBlack: "#A16B38" + brightRed: "#A16B38" + brightGreen: "#D3923F" + brightYellow: "#B1C1D7" + brightBlue: "#96A8BF" + brightMagenta: "#96A8BF" + brightCyan: "#96A8BF" + brightWhite: "#B1C1D7" +meta: + mode: "dark" + accent: "yellow" + hue: 42 + contrast: + fg: 63 + black: 0 + red: 25.4 + green: 45.4 + yellow: 45.4 + blue: 30.6 + magenta: 25.4 + cyan: 30.6 + white: 48.9 + brightBlack: 25.4 + brightRed: 25.4 + brightGreen: 45.4 + brightYellow: 63 + brightBlue: 48.9 + brightMagenta: 48.9 + brightCyan: 48.9 + brightWhite: 63 diff --git a/themes/vim-dark-hard.yaml b/themes/vim-dark-hard.yaml new file mode 100644 index 00000000..817f79b7 --- /dev/null +++ b/themes/vim-dark-hard.yaml @@ -0,0 +1,49 @@ +name: "Vim Dark Hard" +source: + marketplace_id: "AndreaCombette.SweetWood" + version: "0.5.5" + installs: 249 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/SweetWood-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.SweetWood" +colors: + bg: "#241914" + fg: "#D6DFEE" + black: "#3D2D27" + red: "#975F0E" + green: "#B5761A" + yellow: "#D0850D" + blue: "#5D768F" + magenta: "#767A7E" + cyan: "#767A7E" + white: "#8294A7" + brightBlack: "#767A7E" + brightRed: "#D0850D" + brightGreen: "#D3923F" + brightYellow: "#D3923F" + brightBlue: "#8294A7" + brightMagenta: "#96A8BF" + brightCyan: "#8294A7" + brightWhite: "#D6DFEE" +meta: + mode: "dark" + accent: "yellow" + hue: 46 + contrast: + fg: 85.3 + black: 0 + red: 24.1 + green: 35.2 + yellow: 44.2 + blue: 27.4 + magenta: 30.2 + cyan: 30.2 + white: 42.1 + brightBlack: 30.2 + brightRed: 44.2 + brightGreen: 49.2 + brightYellow: 49.2 + brightBlue: 42.1 + brightMagenta: 52.7 + brightCyan: 42.1 + brightWhite: 85.3 diff --git a/themes/vim-dark-medium.yaml b/themes/vim-dark-medium.yaml new file mode 100644 index 00000000..6c0564d8 --- /dev/null +++ b/themes/vim-dark-medium.yaml @@ -0,0 +1,49 @@ +name: "Vim Dark Medium" +source: + marketplace_id: "AndreaCombette.SweetWood" + version: "0.5.5" + installs: 249 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/SweetWood-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.SweetWood" +colors: + bg: "#33221B" + fg: "#D6DFEE" + black: "#3D2D27" + red: "#975F0E" + green: "#B5761A" + yellow: "#D0850D" + blue: "#5D768F" + magenta: "#767A7E" + cyan: "#767A7E" + white: "#8294A7" + brightBlack: "#767A7E" + brightRed: "#D0850D" + brightGreen: "#D3923F" + brightYellow: "#D3923F" + brightBlue: "#8294A7" + brightMagenta: "#96A8BF" + brightCyan: "#8294A7" + brightWhite: "#D6DFEE" +meta: + mode: "dark" + accent: "yellow" + hue: 43 + contrast: + fg: 83.7 + black: 0 + red: 22.5 + green: 33.6 + yellow: 42.6 + blue: 25.8 + magenta: 28.6 + cyan: 28.6 + white: 40.5 + brightBlack: 28.6 + brightRed: 42.6 + brightGreen: 47.6 + brightYellow: 47.6 + brightBlue: 40.5 + brightMagenta: 51.1 + brightCyan: 40.5 + brightWhite: 83.7 diff --git a/themes/vim-dark-soft.yaml b/themes/vim-dark-soft.yaml new file mode 100644 index 00000000..7e5c8a7f --- /dev/null +++ b/themes/vim-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Vim Dark Soft" +source: + marketplace_id: "HarryHopkinson.vim-theme" + version: "1.1.8" + installs: 181121 + author: "HarryHopkinson" + repo: "https://github.com/Harry-Hopkinson/vim-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=HarryHopkinson.vim-theme" +colors: + bg: "#32302F" + fg: "#EBDBB2" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 80.2 + black: 0 + red: 21.1 + green: 38.7 + yellow: 48.3 + blue: 27.4 + magenta: 27.5 + cyan: 37.7 + white: 43 + brightBlack: 32.2 + brightRed: 36 + brightGreen: 57 + brightYellow: 67.6 + brightBlue: 44.4 + brightMagenta: 43.8 + brightCyan: 55.9 + brightWhite: 80.2 diff --git a/themes/vim-light-1.yaml b/themes/vim-light-1.yaml new file mode 100644 index 00000000..45f01f89 --- /dev/null +++ b/themes/vim-light-1.yaml @@ -0,0 +1,49 @@ +name: "Vim Light 1" +source: + marketplace_id: "theprogrammergary.atom-themes" + version: "2.1.9" + installs: 614 + author: "theprogrammergary" + repo: "https://github.com/gary-ix/Gary-VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=theprogrammergary.atom-themes" +colors: + bg: "#EDE5CA" + fg: "#3C3836" + black: "#DED3B0" + red: "#CC241D" + green: "#98971A" + yellow: "#CF8900" + blue: "#32302F" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: 93 + contrast: + fg: 81.3 + black: 7.8 + red: 60.1 + green: 42.4 + yellow: 39.6 + blue: 84.1 + magenta: 53.6 + cyan: 43.4 + white: 58.4 + brightBlack: 48.9 + brightRed: 71.6 + brightGreen: 58.2 + brightYellow: 49.6 + brightBlue: 66.8 + brightMagenta: 67.4 + brightCyan: 59 + brightWhite: 81.3 diff --git a/themes/vim-light-2.yaml b/themes/vim-light-2.yaml new file mode 100644 index 00000000..4be167f1 --- /dev/null +++ b/themes/vim-light-2.yaml @@ -0,0 +1,49 @@ +name: "Vim Light 2" +source: + marketplace_id: "theprogrammergary.atom-themes" + version: "2.1.9" + installs: 614 + author: "theprogrammergary" + repo: "https://github.com/gary-ix/Gary-VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=theprogrammergary.atom-themes" +colors: + bg: "#EBDDB3" + fg: "#3C3836" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#CF8900" + blue: "#333232" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: 92 + contrast: + fg: 77 + black: 0 + red: 55.8 + green: 38.1 + yellow: 35.3 + blue: 79.2 + magenta: 49.3 + cyan: 39.1 + white: 54.1 + brightBlack: 44.6 + brightRed: 67.3 + brightGreen: 53.9 + brightYellow: 45.3 + brightBlue: 62.5 + brightMagenta: 63 + brightCyan: 54.7 + brightWhite: 77 diff --git a/themes/vim-light-3b.yaml b/themes/vim-light-3b.yaml new file mode 100644 index 00000000..5678eff3 --- /dev/null +++ b/themes/vim-light-3b.yaml @@ -0,0 +1,49 @@ +name: "Vim Light 3b" +source: + marketplace_id: "theprogrammergary.atom-themes" + version: "2.1.9" + installs: 614 + author: "theprogrammergary" + repo: "https://github.com/gary-ix/Gary-VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=theprogrammergary.atom-themes" +colors: + bg: "#F7F3E6" + fg: "#3C3836" + black: "#DED3B0" + red: "#CC241D" + green: "#98971A" + yellow: "#CF8900" + blue: "#32302F" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 89.5 + black: 16 + red: 68.3 + green: 50.6 + yellow: 47.8 + blue: 92.3 + magenta: 61.8 + cyan: 51.6 + white: 66.6 + brightBlack: 57.1 + brightRed: 79.8 + brightGreen: 66.4 + brightYellow: 57.8 + brightBlue: 75 + brightMagenta: 75.5 + brightCyan: 67.2 + brightWhite: 89.5 diff --git a/themes/vim-light-hard.yaml b/themes/vim-light-hard.yaml new file mode 100644 index 00000000..5a34315a --- /dev/null +++ b/themes/vim-light-hard.yaml @@ -0,0 +1,49 @@ +name: "Vim Light Hard" +source: + marketplace_id: "AndreaCombette.SweetWood" + version: "0.5.5" + installs: 249 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/SweetWood-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.SweetWood" +colors: + bg: "#D6DFEE" + fg: "#3D2D27" + black: "#D6DFEE" + red: "#975F0E" + green: "#B5761A" + yellow: "#D0850D" + blue: "#5D768F" + magenta: "#767A7E" + cyan: "#767A7E" + white: "#656A6B" + brightBlack: "#767A7E" + brightRed: "#794115" + brightGreen: "#975F0E" + brightYellow: "#B5761A" + brightBlue: "#495D65" + brightMagenta: "#855D44" + brightCyan: "#495D65" + brightWhite: "#3D2D27" +meta: + mode: "light" + accent: "yellow" + hue: 261 + contrast: + fg: 80.1 + black: 0 + red: 56.9 + green: 45.7 + yellow: 36.9 + blue: 53.5 + magenta: 50.8 + cyan: 50.8 + white: 58.2 + brightBlack: 50.8 + brightRed: 68.6 + brightGreen: 56.9 + brightYellow: 45.7 + brightBlue: 64.7 + brightMagenta: 59.5 + brightCyan: 64.7 + brightWhite: 80.1 diff --git a/themes/vim-light-medium.yaml b/themes/vim-light-medium.yaml new file mode 100644 index 00000000..2a880f63 --- /dev/null +++ b/themes/vim-light-medium.yaml @@ -0,0 +1,49 @@ +name: "Vim Light Medium" +source: + marketplace_id: "HarryHopkinson.vim-theme" + version: "1.1.8" + installs: 181121 + author: "HarryHopkinson" + repo: "https://github.com/Harry-Hopkinson/vim-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=HarryHopkinson.vim-theme" +colors: + bg: "#FBF1C7" + fg: "#3C3836" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 88.1 + black: 9.5 + red: 66.8 + green: 49.2 + yellow: 39.9 + blue: 60.5 + magenta: 60.3 + cyan: 50.2 + white: 65.1 + brightBlack: 55.7 + brightRed: 78.4 + brightGreen: 65 + brightYellow: 56.3 + brightBlue: 73.6 + brightMagenta: 74.1 + brightCyan: 65.8 + brightWhite: 88.1 diff --git a/themes/vim-light-soft.yaml b/themes/vim-light-soft.yaml new file mode 100644 index 00000000..97262ede --- /dev/null +++ b/themes/vim-light-soft.yaml @@ -0,0 +1,49 @@ +name: "Vim Light Soft" +source: + marketplace_id: "HarryHopkinson.vim-theme" + version: "1.1.8" + installs: 181121 + author: "HarryHopkinson" + repo: "https://github.com/Harry-Hopkinson/vim-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=HarryHopkinson.vim-theme" +colors: + bg: "#F2E5BC" + fg: "#3C3836" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: 93 + contrast: + fg: 81.5 + black: 0 + red: 60.3 + green: 42.6 + yellow: 33.3 + blue: 53.9 + magenta: 53.8 + cyan: 43.6 + white: 58.6 + brightBlack: 49.1 + brightRed: 71.8 + brightGreen: 58.4 + brightYellow: 49.8 + brightBlue: 67 + brightMagenta: 67.5 + brightCyan: 59.2 + brightWhite: 81.5 diff --git a/themes/vim-night.yaml b/themes/vim-night.yaml new file mode 100644 index 00000000..b904c11b --- /dev/null +++ b/themes/vim-night.yaml @@ -0,0 +1,49 @@ +name: "Vim Night" +source: + marketplace_id: "Rasla.rassotheme" + version: "0.5.0" + installs: 74 + author: "Rasla" + repo: "https://github.com/0xrasla/rassotheme" + url: "https://marketplace.visualstudio.com/items?itemName=Rasla.rassotheme" +colors: + bg: "#000000" + fg: "#7436B1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#000000" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 17.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 0 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/vin-theme.yaml b/themes/vin-theme.yaml new file mode 100644 index 00000000..37622bf3 --- /dev/null +++ b/themes/vin-theme.yaml @@ -0,0 +1,49 @@ +name: "vin theme" +source: + marketplace_id: "vintheme.vin-theme" + version: "1.74.0" + installs: 212 + author: "ervinarviandi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=vintheme.vin-theme" +colors: + bg: "#1C1E26" + fg: "#FFB600" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 69 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/vintage-rust-theme.yaml b/themes/vintage-rust-theme.yaml new file mode 100644 index 00000000..f1b08d05 --- /dev/null +++ b/themes/vintage-rust-theme.yaml @@ -0,0 +1,49 @@ +name: "Vintage Rust Theme" +source: + marketplace_id: "HmadAfzal.vintage-rust-theme" + version: "0.1.0" + installs: 746 + author: "Hmad Afzal" + repo: "https://github.com/HmadAfzal/Vintage-Rust-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=HmadAfzal.vintage-rust-theme" +colors: + bg: "#000000" + fg: "#DAD2BE" + black: "#3E3728" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#E9B449" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#D0C9AE" + brightBlack: "#6C6447" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#DAD6BE" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.5 + black: 0 + red: 41.5 + green: 78 + yellow: 68 + blue: 66.7 + magenta: 46.6 + cyan: 71.5 + white: 73.7 + brightBlack: 22.2 + brightRed: 46.8 + brightGreen: 80.2 + brightYellow: 54.9 + brightBlue: 58.3 + brightMagenta: 59 + brightCyan: 74.9 + brightWhite: 81.3 diff --git a/themes/vintage-serene.yaml b/themes/vintage-serene.yaml new file mode 100644 index 00000000..94de5c1c --- /dev/null +++ b/themes/vintage-serene.yaml @@ -0,0 +1,49 @@ +name: "vintage-serene" +source: + marketplace_id: "Legion.theme-vintage-serene" + version: "1.3.4" + installs: 30 + author: "Legion" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Legion.theme-vintage-serene" +colors: + bg: "#222222" + fg: "#D9D9D9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 81.1 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 88.6 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/vintage.yaml b/themes/vintage.yaml new file mode 100644 index 00000000..03e166e3 --- /dev/null +++ b/themes/vintage.yaml @@ -0,0 +1,49 @@ +name: "vintage" +source: + marketplace_id: "silas0827.vintage" + version: "0.0.1" + installs: 1072 + author: "Silas Chen" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=silas0827.vintage" +colors: + bg: "#FFFFE9" + fg: "#CB997E" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 48.1 + black: 105.1 + red: 73.1 + green: 48.3 + yellow: 57 + blue: 85.2 + magenta: 73.7 + cyan: 59.7 + white: 85 + brightBlack: 77.9 + brightRed: 73.1 + brightGreen: 40 + brightYellow: 40 + brightBlue: 85.2 + brightMagenta: 73.7 + brightCyan: 59.7 + brightWhite: 47.6 diff --git a/themes/vinyl.yaml b/themes/vinyl.yaml new file mode 100644 index 00000000..a0e2d2c2 --- /dev/null +++ b/themes/vinyl.yaml @@ -0,0 +1,49 @@ +name: "Vinyl" +source: + marketplace_id: "sophiebosio.vinyl" + version: "1.0.5" + installs: 525 + author: "sophiebosio" + repo: "https://github.com/SophieBosio/vinyl" + url: "https://marketplace.visualstudio.com/items?itemName=sophiebosio.vinyl" +colors: + bg: "#222121" + fg: "#DBD7CC" + black: "#55575C" + red: "#C9696B" + green: "#84B787" + yellow: "#E8C67D" + blue: "#85B5E8" + magenta: "#859BFF" + cyan: "#7CAB93" + white: "#DBD7CC" + brightBlack: "#96959C" + brightRed: "#E06C75" + brightGreen: "#A6C389" + brightYellow: "#EBD9B7" + brightBlue: "#A0D9EF" + brightMagenta: "#A199EB" + brightCyan: "#89B482" + brightWhite: "#DCDFE4" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 80.1 + black: 14.6 + red: 35.4 + green: 54.4 + yellow: 72.2 + blue: 57.8 + magenta: 49.3 + cyan: 49 + white: 80.1 + brightBlack: 43.2 + brightRed: 40.8 + brightGreen: 62.8 + brightYellow: 82.4 + brightBlue: 76.1 + brightMagenta: 50 + brightCyan: 53.4 + brightWhite: 84.8 diff --git a/themes/violaceous-contrast.yaml b/themes/violaceous-contrast.yaml new file mode 100644 index 00000000..82c4d98b --- /dev/null +++ b/themes/violaceous-contrast.yaml @@ -0,0 +1,49 @@ +name: "violaceous-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0B0A11" + fg: "#BDB2F7" + black: "#151321" + red: "#BA0E2E" + green: "#725AC1" + yellow: "#8D86C9" + blue: "#CAC4CE" + magenta: "#725AC1" + cyan: "#CAC4CE" + white: "#D1C9F9" + brightBlack: "#353051" + brightRed: "#F03E5F" + brightGreen: "#B1A4DD" + brightYellow: "#CFCDE8" + brightBlue: "#FCFCFC" + brightMagenta: "#B1A4DD" + brightCyan: "#FCFCFC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 291 + contrast: + fg: 65.3 + black: 0 + red: 21.3 + green: 25.3 + yellow: 41.3 + blue: 72 + magenta: 25.3 + cyan: 72 + white: 77.1 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 57.1 + brightYellow: 77.6 + brightBlue: 105.7 + brightMagenta: 57.1 + brightCyan: 105.7 + brightWhite: 107.7 diff --git a/themes/violaceous-light.yaml b/themes/violaceous-light.yaml new file mode 100644 index 00000000..a8e3c8ea --- /dev/null +++ b/themes/violaceous-light.yaml @@ -0,0 +1,49 @@ +name: "violaceous-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#E5E3EF" + fg: "#444349" + black: "#F4F3F8" + red: "#BA0E2E" + green: "#725AC1" + yellow: "#8D86C9" + blue: "#8D8593" + magenta: "#725AC1" + cyan: "#8D8593" + white: "#504F56" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#B1A4DD" + brightYellow: "#CFCDE8" + brightBlue: "#C0BBC3" + brightMagenta: "#B1A4DD" + brightCyan: "#C0BBC3" + brightWhite: "#76747E" +meta: + mode: "light" + accent: "orange" + hue: 294 + contrast: + fg: 77 + black: 7.8 + red: 64.6 + green: 60.5 + yellow: 44.5 + blue: 47.4 + magenta: 60.5 + cyan: 47.4 + white: 72.3 + brightBlack: 15.4 + brightRed: 48.1 + brightGreen: 29.1 + brightYellow: 9.6 + brightBlue: 20.1 + brightMagenta: 29.1 + brightCyan: 20.1 + brightWhite: 56.2 diff --git a/themes/violaceous.yaml b/themes/violaceous.yaml new file mode 100644 index 00000000..f7beece2 --- /dev/null +++ b/themes/violaceous.yaml @@ -0,0 +1,49 @@ +name: "violaceous" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#242038" + fg: "#BDB2F7" + black: "#2E2948" + red: "#BA0E2E" + green: "#725AC1" + yellow: "#8D86C9" + blue: "#CAC4CE" + magenta: "#725AC1" + cyan: "#CAC4CE" + white: "#D1C9F9" + brightBlack: "#4E4579" + brightRed: "#F03E5F" + brightGreen: "#B1A4DD" + brightYellow: "#CFCDE8" + brightBlue: "#FCFCFC" + brightMagenta: "#B1A4DD" + brightCyan: "#FCFCFC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 291 + contrast: + fg: 62.8 + black: 0 + red: 18.9 + green: 22.9 + yellow: 38.9 + blue: 69.5 + magenta: 22.9 + cyan: 69.5 + white: 74.6 + brightBlack: 10.2 + brightRed: 35.1 + brightGreen: 54.6 + brightYellow: 75.1 + brightBlue: 103.2 + brightMagenta: 54.6 + brightCyan: 103.2 + brightWhite: 105.2 diff --git a/themes/violet-dream.yaml b/themes/violet-dream.yaml new file mode 100644 index 00000000..b84ad97f --- /dev/null +++ b/themes/violet-dream.yaml @@ -0,0 +1,49 @@ +name: "Violet Dream" +source: + marketplace_id: "AlexandreFPGoncalves.violet-dream" + version: "1.0.3" + installs: 5422 + author: "AlexandreFPGoncalves" + repo: "https://github.com/AlexandreFPGoncalves/violet-dream" + url: "https://marketplace.visualstudio.com/items?itemName=AlexandreFPGoncalves.violet-dream" +colors: + bg: "#15151F" + fg: "#E9E1F8" + black: "#000000" + red: "#FF385D" + green: "#29FDA3" + yellow: "#FFC85F" + blue: "#6B77FF" + magenta: "#FF64D1" + cyan: "#70B8FF" + white: "#E5E7EB" + brightBlack: "#343434" + brightRed: "#FF3870" + brightGreen: "#67FFBE" + brightYellow: "#FFD481" + brightBlue: "#619BFF" + brightMagenta: "#FF87DB" + brightCyan: "#70DBFF" + brightWhite: "#F9FAFB" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 89.8 + black: 0 + red: 39.8 + green: 86.7 + yellow: 77.6 + blue: 36.7 + magenta: 50.6 + cyan: 60.4 + white: 91.3 + brightBlack: 0 + brightRed: 40.2 + brightGreen: 90.3 + brightYellow: 83.2 + brightBlue: 48.1 + brightMagenta: 59.4 + brightCyan: 75.9 + brightWhite: 103.6 diff --git a/themes/violet-night.yaml b/themes/violet-night.yaml new file mode 100644 index 00000000..a8bd2f79 --- /dev/null +++ b/themes/violet-night.yaml @@ -0,0 +1,49 @@ +name: "Violet Night" +source: + marketplace_id: "MaryamRezaee.violet-night-theme" + version: "0.2.0" + installs: 449 + author: "Maryam Rezaee" + repo: "https://github.com/msmrexe/violet-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MaryamRezaee.violet-night-theme" +colors: + bg: "#080808" + fg: "#E1E1E1" + black: "#434343" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CCCCCC" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 88.4 + black: 9.4 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 75.6 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/violet-nova.yaml b/themes/violet-nova.yaml new file mode 100644 index 00000000..c0069f0c --- /dev/null +++ b/themes/violet-nova.yaml @@ -0,0 +1,49 @@ +name: "Violet Nova" +source: + marketplace_id: "ZCNXS.violet-nova-theme" + version: "1.0.4" + installs: 111 + author: "ZCNXS" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ZCNXS.violet-nova-theme" +colors: + bg: "#1A1523" + fg: "#F3E9FF" + black: "#1A1523" + red: "#FF6B9F" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#C084FC" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF92DF" + brightGreen: "#7FFF9C" + brightYellow: "#FFFFA5" + brightBlue: "#E2B8FF" + brightMagenta: "#FFB3FE" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 300 + contrast: + fg: 94.9 + black: 0 + red: 49.6 + green: 84.8 + yellow: 98.5 + blue: 49.6 + magenta: 54.5 + cyan: 83.9 + white: 101.9 + brightBlack: 28 + brightRed: 62.5 + brightGreen: 90.3 + brightYellow: 103.5 + brightBlue: 72.2 + brightMagenta: 75 + brightCyan: 96.7 + brightWhite: 106.8 diff --git a/themes/viora.yaml b/themes/viora.yaml new file mode 100644 index 00000000..62fe6849 --- /dev/null +++ b/themes/viora.yaml @@ -0,0 +1,49 @@ +name: "Viora" +source: + marketplace_id: "AdityaMali.viora" + version: "1.0.2" + installs: 74 + author: "Aditya Mali" + repo: "[https://github.com/adityamali/Viora.git](https://github.com/adityamali/Viora.git)" + url: "https://marketplace.visualstudio.com/items?itemName=AdityaMali.viora" +colors: + bg: "#121212" + fg: "#E0E0E0" + black: "#121212" + red: "#CC0000" + green: "#00CC00" + yellow: "#CCCC00" + blue: "#9A00CC" + magenta: "#CC00CC" + cyan: "#00CCCC" + white: "#E0E0E0" + brightBlack: "#121212" + brightRed: "#CC8080" + brightGreen: "#80CC80" + brightYellow: "#CCCC80" + brightBlue: "#B580CC" + brightMagenta: "#CC80CC" + brightCyan: "#80CCCC" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.3 + black: 0 + red: 24.6 + green: 59.7 + yellow: 71.4 + blue: 21.6 + magenta: 30.9 + cyan: 63.8 + white: 87.3 + brightBlack: 0 + brightRed: 44.5 + brightGreen: 65 + brightYellow: 72.6 + brightBlue: 44.2 + brightMagenta: 47.7 + brightCyan: 67.6 + brightWhite: 87.3 diff --git a/themes/viper-theme.yaml b/themes/viper-theme.yaml new file mode 100644 index 00000000..b2926228 --- /dev/null +++ b/themes/viper-theme.yaml @@ -0,0 +1,49 @@ +name: "Viper Theme" +source: + marketplace_id: "Felip3.purple-haze-theme" + version: "1.0.5" + installs: 2042 + author: "Felipe Menezes" + repo: "https://github.com/fmm312/purple-haze" + url: "https://marketplace.visualstudio.com/items?itemName=Felip3.purple-haze-theme" +colors: + bg: "#2B1F31" + fg: "#F2F2F2" + black: "#151515" + red: "#BC5653" + green: "#909D63" + yellow: "#EBC17A" + blue: "#6A8799" + magenta: "#B06698" + cyan: "#C9DFFF" + white: "#D9D9D9" + brightBlack: "#636363" + brightRed: "#BC5653" + brightGreen: "#F07178" + brightYellow: "#EBC17A" + brightBlue: "#C3E88D" + brightMagenta: "#B48EAD" + brightCyan: "#ACBBD0" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 314 + contrast: + fg: 96.7 + black: 0 + red: 27.8 + green: 43.5 + yellow: 70.2 + blue: 33.5 + magenta: 31.6 + cyan: 83.4 + white: 80.9 + brightBlack: 19.1 + brightRed: 27.8 + brightGreen: 44.9 + brightYellow: 70.2 + brightBlue: 82.5 + brightMagenta: 44.8 + brightCyan: 62.3 + brightWhite: 99.9 diff --git a/themes/vishwakarma-sunset-glow.yaml b/themes/vishwakarma-sunset-glow.yaml new file mode 100644 index 00000000..ca9b3f2e --- /dev/null +++ b/themes/vishwakarma-sunset-glow.yaml @@ -0,0 +1,49 @@ +name: "Vishwakarma Sunset Glow" +source: + marketplace_id: "VishwakarmaIndustries0abhishek.vishwakarma-theme" + version: "1.0.0" + installs: 872 + author: "Vishwakarma Industries" + repo: "https://github.com/vishwakarma-industries/vishwakarma-theme" + url: "https://marketplace.visualstudio.com/items?itemName=VishwakarmaIndustries0abhishek.vishwakarma-theme" +colors: + bg: "#FAF8F5" + fg: "#2D2A26" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 97 + black: 97.4 + red: 70.7 + green: 81.2 + yellow: 93.9 + blue: 70.9 + magenta: 70.3 + cyan: 69.7 + white: 67.5 + brightBlack: 77.7 + brightRed: 81.2 + brightGreen: 70.5 + brightYellow: 88 + brightBlue: 56.6 + brightMagenta: 55.3 + brightCyan: 59.3 + brightWhite: 53.1 diff --git a/themes/vision-colorblind.yaml b/themes/vision-colorblind.yaml new file mode 100644 index 00000000..233ca62a --- /dev/null +++ b/themes/vision-colorblind.yaml @@ -0,0 +1,49 @@ +name: "vision-colorblind" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#FC4D1F" + yellow: "#FDBA2C" + blue: "#21C0FC" + magenta: "#136EFB" + cyan: "#FC1264" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#FD9D84" + brightYellow: "#FEDB91" + brightBlue: "#86DDFD" + brightMagenta: "#77ACFD" + brightCyan: "#FD77A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 21.5 + green: 41.9 + yellow: 72.1 + blue: 61.8 + magenta: 31.2 + cyan: 37.9 + white: 107.9 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 63.1 + brightYellow: 87.3 + brightBlue: 78.9 + brightMagenta: 56.8 + brightCyan: 53.3 + brightWhite: 107.9 diff --git a/themes/vision-light-colorblind.yaml b/themes/vision-light-colorblind.yaml new file mode 100644 index 00000000..87b18e7c --- /dev/null +++ b/themes/vision-light-colorblind.yaml @@ -0,0 +1,49 @@ +name: "vision-light-colorblind" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#81209E" + yellow: "#1BA2F7" + blue: "#F87856" + magenta: "#F87856" + cyan: "#81209E" + white: "#0D0D0D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#B94ADA" + brightYellow: "#7ECAFA" + brightBlue: "#FCC6B8" + brightMagenta: "#FCC6B8" + brightCyan: "#B94ADA" + brightWhite: "#333333" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 0 + red: 80.3 + green: 86.4 + yellow: 53 + blue: 51.6 + magenta: 51.6 + cyan: 86.4 + white: 105.7 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 67.8 + brightYellow: 33 + brightBlue: 23.7 + brightMagenta: 23.7 + brightCyan: 67.8 + brightWhite: 98.7 diff --git a/themes/visual-studio-code-dark-theme.yaml b/themes/visual-studio-code-dark-theme.yaml new file mode 100644 index 00000000..28faec8a --- /dev/null +++ b/themes/visual-studio-code-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Visual Studio Code Dark Theme" +source: + marketplace_id: "mdmarufsarker.maruf-sarker" + version: "0.1.1" + installs: 29145 + author: "Md. Maruf Sarker" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" +colors: + bg: "#0C1924" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 245 + contrast: + fg: 79.4 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/visual-studio-github-light-plus.yaml b/themes/visual-studio-github-light-plus.yaml new file mode 100644 index 00000000..bcba373c --- /dev/null +++ b/themes/visual-studio-github-light-plus.yaml @@ -0,0 +1,49 @@ +name: "Visual Studio & Github Light Plus" +source: + marketplace_id: "aaaaash.vs-github-light-plus" + version: "0.0.2" + installs: 1133 + author: "aaaaash" + repo: "https://github.com/Aaaaash/vs-github-light-plus" + url: "https://marketplace.visualstudio.com/items?itemName=aaaaash.vs-github-light-plus" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#384247" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 106 + black: 93.9 + red: 74.8 + green: 85.2 + yellow: 98 + blue: 74.9 + magenta: 74.3 + cyan: 73.8 + white: 71.6 + brightBlack: 81.8 + brightRed: 85.2 + brightGreen: 74.6 + brightYellow: 92 + brightBlue: 60.7 + brightMagenta: 59.3 + brightCyan: 63.3 + brightWhite: 57.2 diff --git a/themes/visualos.yaml b/themes/visualos.yaml new file mode 100644 index 00000000..420ab24b --- /dev/null +++ b/themes/visualos.yaml @@ -0,0 +1,49 @@ +name: "VisualOS" +source: + marketplace_id: "Tikode.VisualOS" + version: "0.4.0" + installs: 2881 + author: "Tikode" + repo: "https://github.com/tigranabelian1/VisualOS" + url: "https://marketplace.visualstudio.com/items?itemName=Tikode.VisualOS" +colors: + bg: "#121212" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D1D1D1" + brightBlack: "#545454" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.3 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 78.1 + brightBlack: 15.1 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 107.3 diff --git a/themes/vitepress-theme-vite-dark.yaml b/themes/vitepress-theme-vite-dark.yaml new file mode 100644 index 00000000..bbb182cb --- /dev/null +++ b/themes/vitepress-theme-vite-dark.yaml @@ -0,0 +1,49 @@ +name: "VitePress Theme Vite Dark" +source: + marketplace_id: "zanfee.theme-vitepress" + version: "0.0.2" + installs: 690 + author: "Jan Fröhlich" + repo: "https://github.com/zanfee/vscode-theme-vitepress" + url: "https://marketplace.visualstudio.com/items?itemName=zanfee.theme-vitepress" +colors: + bg: "#1E1E20" + fg: "#FFFFF5" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 105.6 + black: 0 + red: 45.7 + green: 83.3 + yellow: 78.1 + blue: 55.1 + magenta: 52.9 + cyan: 77.4 + white: 106 + brightBlack: 25.6 + brightRed: 45.7 + brightGreen: 83.3 + brightYellow: 78.1 + brightBlue: 55.1 + brightMagenta: 52.9 + brightCyan: 77.4 + brightWhite: 106 diff --git a/themes/vitesse-black.yaml b/themes/vitesse-black.yaml new file mode 100644 index 00000000..34fc2231 --- /dev/null +++ b/themes/vitesse-black.yaml @@ -0,0 +1,49 @@ +name: "Vitesse Black" +source: + marketplace_id: "antfu.theme-vitesse" + version: "1.0.1" + installs: 108742 + author: "Anthony Fu" + repo: "https://github.com/antfu/vscode-theme-vitesse" + url: "https://marketplace.visualstudio.com/items?itemName=antfu.theme-vitesse" +colors: + bg: "#000000" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 82.3 + black: 0 + red: 41.8 + green: 37.7 + yellow: 76.6 + blue: 42.4 + magenta: 44.9 + cyan: 50.3 + white: 82.3 + brightBlack: 30.6 + brightRed: 41.8 + brightGreen: 37.7 + brightYellow: 76.6 + brightBlue: 42.4 + brightMagenta: 44.9 + brightCyan: 50.3 + brightWhite: 107.9 diff --git a/themes/vitesse-dark-custom.yaml b/themes/vitesse-dark-custom.yaml new file mode 100644 index 00000000..4da3db60 --- /dev/null +++ b/themes/vitesse-dark-custom.yaml @@ -0,0 +1,49 @@ +name: "Vitesse Dark Custom" +source: + marketplace_id: "fxzer.theme-vitesse-dark-custom" + version: "0.2.1" + installs: 1325 + author: "Vitesse Theme Custom" + repo: "https://github.com/fxzer/theme-vitesse-dark-custom" + url: "https://marketplace.visualstudio.com/items?itemName=fxzer.theme-vitesse-dark-custom" +colors: + bg: "#121212" + fg: "#BFBAAA" + black: "#BFBAAA" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#BFBAAA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 64.6 + black: 64.6 + red: 41.2 + green: 37.1 + yellow: 76 + blue: 41.8 + magenta: 44.3 + cyan: 49.7 + white: 64.6 + brightBlack: 30 + brightRed: 41.2 + brightGreen: 37.1 + brightYellow: 76 + brightBlue: 41.8 + brightMagenta: 44.3 + brightCyan: 49.7 + brightWhite: 107.3 diff --git a/themes/vitesse-dark-soft.yaml b/themes/vitesse-dark-soft.yaml new file mode 100644 index 00000000..23efd742 --- /dev/null +++ b/themes/vitesse-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Vitesse Dark Soft" +source: + marketplace_id: "antfu.theme-vitesse" + version: "1.0.1" + installs: 108742 + author: "Anthony Fu" + repo: "https://github.com/antfu/vscode-theme-vitesse" + url: "https://marketplace.visualstudio.com/items?itemName=antfu.theme-vitesse" +colors: + bg: "#222222" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 79.9 + black: 0 + red: 39.4 + green: 35.3 + yellow: 74.2 + blue: 39.9 + magenta: 42.5 + cyan: 47.9 + white: 79.9 + brightBlack: 28.1 + brightRed: 39.4 + brightGreen: 35.3 + brightYellow: 74.2 + brightBlue: 39.9 + brightMagenta: 42.5 + brightCyan: 47.9 + brightWhite: 105.5 diff --git a/themes/vitesse-dark.yaml b/themes/vitesse-dark.yaml new file mode 100644 index 00000000..7d5a7413 --- /dev/null +++ b/themes/vitesse-dark.yaml @@ -0,0 +1,49 @@ +name: "Vitesse Dark" +source: + marketplace_id: "vguegan.vicos-theme" + version: "1.0.1" + installs: 408 + author: "Victor Guegan" + repo: "https://github.com/GueganVictor/vicos-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vguegan.vicos-theme" +colors: + bg: "#191919" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#DB889A" + cyan: "#5EAAB5" + white: "#FFFFFF" + brightBlack: "#393A34" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#DB889A" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 81.1 + black: 0 + red: 40.6 + green: 36.5 + yellow: 75.4 + blue: 41.1 + magenta: 49.7 + cyan: 49.1 + white: 106.7 + brightBlack: 0 + brightRed: 40.6 + brightGreen: 36.5 + brightYellow: 75.4 + brightBlue: 41.1 + brightMagenta: 49.7 + brightCyan: 49.1 + brightWhite: 106.7 diff --git a/themes/vitesse-dragon-dark.yaml b/themes/vitesse-dragon-dark.yaml new file mode 100644 index 00000000..13704a0b --- /dev/null +++ b/themes/vitesse-dragon-dark.yaml @@ -0,0 +1,49 @@ +name: "Vitesse Dragon Dark" +source: + marketplace_id: "simonhe.vitesse-theme-colorful" + version: "0.0.6" + installs: 855 + author: "simonhe" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=simonhe.vitesse-theme-colorful" +colors: + bg: "#121212" + fg: "#FFA2CB" + black: "#4A3C53" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#FFA2CB" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 67 + black: 8.3 + red: 41.2 + green: 37.1 + yellow: 76 + blue: 41.8 + magenta: 44.3 + cyan: 49.7 + white: 67 + brightBlack: 30 + brightRed: 41.2 + brightGreen: 37.1 + brightYellow: 76 + brightBlue: 41.8 + brightMagenta: 44.3 + brightCyan: 49.7 + brightWhite: 107.3 diff --git a/themes/vitesse-dragon.yaml b/themes/vitesse-dragon.yaml new file mode 100644 index 00000000..d60270b3 --- /dev/null +++ b/themes/vitesse-dragon.yaml @@ -0,0 +1,49 @@ +name: "Vitesse Dragon" +source: + marketplace_id: "simonhe.vitesse-theme-colorful" + version: "0.0.6" + installs: 855 + author: "simonhe" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=simonhe.vitesse-theme-colorful" +colors: + bg: "#F4FAF3" + fg: "#4A3C53" + black: "#121212" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#FFA2CB" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 89.6 + black: 101.2 + red: 69.4 + green: 73.9 + yellow: 44.2 + blue: 74.1 + magenta: 77.1 + cyan: 59.4 + white: 30.9 + brightBlack: 41.8 + brightRed: 69.4 + brightGreen: 73.9 + brightYellow: 44.2 + brightBlue: 74.1 + brightMagenta: 77.1 + brightCyan: 59.4 + brightWhite: 13.5 diff --git a/themes/vitesse-green-theme.yaml b/themes/vitesse-green-theme.yaml new file mode 100644 index 00000000..e4545ced --- /dev/null +++ b/themes/vitesse-green-theme.yaml @@ -0,0 +1,49 @@ +name: "Vitesse Green Theme" +source: + marketplace_id: "namefhf.vitesse-green-theme" + version: "0.0.5" + installs: 185 + author: "namefhf" + repo: "https://github.com/namefhf/vitesse-green-theme" + url: "https://marketplace.visualstudio.com/items?itemName=namefhf.vitesse-green-theme" +colors: + bg: "#F3FAF7" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 92.5 + black: 101.3 + red: 69.5 + green: 73.9 + yellow: 44.3 + blue: 74.2 + magenta: 77.1 + cyan: 59.5 + white: 17.1 + brightBlack: 41.8 + brightRed: 69.5 + brightGreen: 73.9 + brightYellow: 44.3 + brightBlue: 74.2 + brightMagenta: 77.1 + brightCyan: 59.5 + brightWhite: 13.6 diff --git a/themes/vitesse-light-soft.yaml b/themes/vitesse-light-soft.yaml new file mode 100644 index 00000000..1cc513e2 --- /dev/null +++ b/themes/vitesse-light-soft.yaml @@ -0,0 +1,49 @@ +name: "Vitesse Light Soft" +source: + marketplace_id: "antfu.theme-vitesse" + version: "1.0.1" + installs: 108742 + author: "Anthony Fu" + repo: "https://github.com/antfu/vscode-theme-vitesse" + url: "https://marketplace.visualstudio.com/items?itemName=antfu.theme-vitesse" +colors: + bg: "#F1F0E9" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 87.4 + black: 96.2 + red: 64.4 + green: 68.8 + yellow: 39.2 + blue: 69.1 + magenta: 72 + cyan: 54.4 + white: 12 + brightBlack: 36.7 + brightRed: 64.4 + brightGreen: 68.8 + brightYellow: 39.2 + brightBlue: 69.1 + brightMagenta: 72 + brightCyan: 54.4 + brightWhite: 8.5 diff --git a/themes/vitesse-light.yaml b/themes/vitesse-light.yaml new file mode 100644 index 00000000..802414c5 --- /dev/null +++ b/themes/vitesse-light.yaml @@ -0,0 +1,49 @@ +name: "Vitesse Light" +source: + marketplace_id: "mashirozx.theme-biu" + version: "0.1.14" + installs: 203 + author: "Mashiro" + repo: "https://github.com/mashirozx/vscode-theme-biu" + url: "https://marketplace.visualstudio.com/items?itemName=mashirozx.theme-biu" +colors: + bg: "#FFFFFF" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#1C6B48" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#B05A78" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1C6B48" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#B05A78" + brightCyan: "#2993A3" + brightWhite: "#DBD7CA" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 96.5 + black: 105.3 + red: 73.5 + green: 81.8 + yellow: 48.3 + blue: 78.2 + magenta: 71.5 + cyan: 63.5 + white: 21.1 + brightBlack: 45.8 + brightRed: 73.5 + brightGreen: 81.8 + brightYellow: 48.3 + brightBlue: 78.2 + brightMagenta: 71.5 + brightCyan: 63.5 + brightWhite: 21.1 diff --git a/themes/vitesse-webstorm-dark.yaml b/themes/vitesse-webstorm-dark.yaml new file mode 100644 index 00000000..b05aff37 --- /dev/null +++ b/themes/vitesse-webstorm-dark.yaml @@ -0,0 +1,49 @@ +name: "Vitesse WebStorm Dark" +source: + marketplace_id: "AnthonyJu.vscode-theme-vitesse-webstorm" + version: "0.1.1" + installs: 562 + author: "AnthonyJu" + repo: "https://github.com/AnthonyJu/vscode-theme-vitesse-webstorm" + url: "https://marketplace.visualstudio.com/items?itemName=AnthonyJu.vscode-theme-vitesse-webstorm" +colors: + bg: "#1E1F22" + fg: "#FFFFFF" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 105.9 + black: 0 + red: 39.8 + green: 35.7 + yellow: 74.6 + blue: 40.4 + magenta: 42.9 + cyan: 48.3 + white: 80.3 + brightBlack: 28.6 + brightRed: 39.8 + brightGreen: 35.7 + brightYellow: 74.6 + brightBlue: 40.4 + brightMagenta: 42.9 + brightCyan: 48.3 + brightWhite: 105.9 diff --git a/themes/vitrioleuse.yaml b/themes/vitrioleuse.yaml new file mode 100644 index 00000000..80daeef6 --- /dev/null +++ b/themes/vitrioleuse.yaml @@ -0,0 +1,49 @@ +name: "vitrioleuse" +source: + marketplace_id: "vitrioleuse.vitrioleuse" + version: "1.0.0" + installs: 40 + author: "vitrioleuse" + repo: "https://github.com/lichrot/vitrioleuse" + url: "https://marketplace.visualstudio.com/items?itemName=vitrioleuse.vitrioleuse" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF005F" + green: "#00AF87" + yellow: "#FFD700" + blue: "#0087FF" + magenta: "#FB923C" + cyan: "#875FFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF005F" + brightGreen: "#00AF87" + brightYellow: "#FFD700" + brightBlue: "#0087FF" + brightMagenta: "#FB923C" + brightCyan: "#875FFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 38.4 + green: 48.5 + yellow: 84.3 + blue: 39.4 + magenta: 57.9 + cyan: 34 + white: 107.9 + brightBlack: 0 + brightRed: 38.4 + brightGreen: 48.5 + brightYellow: 84.3 + brightBlue: 39.4 + brightMagenta: 57.9 + brightCyan: 34 + brightWhite: 107.9 diff --git a/themes/vivid-blue.yaml b/themes/vivid-blue.yaml new file mode 100644 index 00000000..bcd9cb48 --- /dev/null +++ b/themes/vivid-blue.yaml @@ -0,0 +1,49 @@ +name: "Vivid Blue" +source: + marketplace_id: "WelkerArantes.sweet-code-theme" + version: "1.0.0" + installs: 4062 + author: "Welker Arantes" + repo: "https://github.com/taikio/sweet-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=WelkerArantes.sweet-code-theme" +colors: + bg: "#333333" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 74.6 + black: 0 + red: 21.9 + green: 48.2 + yellow: 80.8 + blue: 22.6 + magenta: 24.9 + cyan: 42.7 + white: 85.2 + brightBlack: 17.2 + brightRed: 33.7 + brightGreen: 58.7 + brightYellow: 90.8 + brightBlue: 35.1 + brightMagenta: 40.5 + brightCyan: 50.5 + brightWhite: 85.2 diff --git a/themes/vividnord.yaml b/themes/vividnord.yaml new file mode 100644 index 00000000..f525d67c --- /dev/null +++ b/themes/vividnord.yaml @@ -0,0 +1,49 @@ +name: "VividNord" +source: + marketplace_id: "stnord.vivid-nord" + version: "3.0.0" + installs: 1127 + author: "stnord" + repo: "https://github.com/LyonAlpha/vivid-nord" + url: "https://marketplace.visualstudio.com/items?itemName=stnord.vivid-nord" +colors: + bg: "#334055" + fg: "#CDC4C4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + contrast: + fg: 62.5 + black: 9.6 + red: 18.1 + green: 44.4 + yellow: 77 + blue: 18.8 + magenta: 21.2 + cyan: 39 + white: 81.4 + brightBlack: 13.4 + brightRed: 30 + brightGreen: 54.9 + brightYellow: 87 + brightBlue: 31.4 + brightMagenta: 36.8 + brightCyan: 46.8 + brightWhite: 81.4 diff --git a/themes/vivido-theme.yaml b/themes/vivido-theme.yaml new file mode 100644 index 00000000..5660b7bf --- /dev/null +++ b/themes/vivido-theme.yaml @@ -0,0 +1,49 @@ +name: "Vivido Theme" +source: + marketplace_id: "philipbruer.vivido" + version: "0.1.0" + installs: 1130 + author: "Philip Bruér" + repo: "https://github.com/philipbruer/vivido" + url: "https://marketplace.visualstudio.com/items?itemName=philipbruer.vivido" +colors: + bg: "#272A30" + fg: "#F9F9F9" + black: "#292A2B" + red: "#FF6188" + green: "#19F9D8" + yellow: "#F7E87E" + blue: "#6FC1FF" + magenta: "#C594C5" + cyan: "#FCAD83" + white: "#F9F9F9" + brightBlack: "#9EA7B0" + brightRed: "#FF6188" + brightGreen: "#19F9D8" + brightYellow: "#F7E87E" + brightBlue: "#6FC1FF" + brightMagenta: "#C594C5" + brightCyan: "#FCAD83" + brightWhite: "#F9F9F9" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 100.1 + black: 0 + red: 44 + green: 83.4 + yellow: 87.8 + blue: 61.2 + magenta: 49.2 + cyan: 64.5 + white: 100.1 + brightBlack: 50.2 + brightRed: 44 + brightGreen: 83.4 + brightYellow: 87.8 + brightBlue: 61.2 + brightMagenta: 49.2 + brightCyan: 64.5 + brightWhite: 100.1 diff --git a/themes/vkt-theme.yaml b/themes/vkt-theme.yaml new file mode 100644 index 00000000..4ffa50df --- /dev/null +++ b/themes/vkt-theme.yaml @@ -0,0 +1,49 @@ +name: "vkt-theme" +source: + marketplace_id: "PedroMakaveli.VktTheme" + version: "1.0.0" + installs: 3214 + author: "Pedro Makaveli" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PedroMakaveli.VktTheme" +colors: + bg: "#0E0C13" + fg: "#9EFDC8" + black: "#7BFF68" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#1BFFDF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFE0E0" + brightBlack: "#828282" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#439CFF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 298 + contrast: + fg: 93.6 + black: 89.8 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 90.4 + magenta: 30.5 + cyan: 48.3 + white: 92.1 + brightBlack: 35.4 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 47.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 107.6 diff --git a/themes/void-iris.yaml b/themes/void-iris.yaml new file mode 100644 index 00000000..0624c61c --- /dev/null +++ b/themes/void-iris.yaml @@ -0,0 +1,49 @@ +name: "Void Iris" +source: + marketplace_id: "Dikroll.void-iris-theme" + version: "1.1.1" + installs: 141 + author: "Dikroll" + repo: "https://github.com/Dikroll/Void-Iris" + url: "https://marketplace.visualstudio.com/items?itemName=Dikroll.void-iris-theme" +colors: + bg: "#0D0D0D" + fg: "#E0E0E0" + black: "#000000" + red: "#A63C3C" + green: "#5D4AD9" + yellow: "#A07540" + blue: "#5D4AD9" + magenta: "#9E91F2" + cyan: "#9E91F2" + white: "#C0C0C0" + brightBlack: "#5A4A50" + brightRed: "#A63C3C" + brightGreen: "#9E91F2" + brightYellow: "#D4A05E" + brightBlue: "#9E91F2" + brightMagenta: "#211859" + brightCyan: "#9E91F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 87.6 + black: 0 + red: 21 + green: 21.7 + yellow: 33.3 + blue: 21.7 + magenta: 49.4 + cyan: 49.4 + white: 68.4 + brightBlack: 13.3 + brightRed: 21 + brightGreen: 49.4 + brightYellow: 55.9 + brightBlue: 49.4 + brightMagenta: 0 + brightCyan: 49.4 + brightWhite: 107.6 diff --git a/themes/void-script.yaml b/themes/void-script.yaml new file mode 100644 index 00000000..ac0c689a --- /dev/null +++ b/themes/void-script.yaml @@ -0,0 +1,49 @@ +name: "Void Script" +source: + marketplace_id: "adamsmithdev.void-script" + version: "0.0.6" + installs: 72 + author: "adamsmithdev" + repo: "https://github.com/adamsmithdev/void-script-theme" + url: "https://marketplace.visualstudio.com/items?itemName=adamsmithdev.void-script" +colors: + bg: "#212121" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.2 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/void.yaml b/themes/void.yaml new file mode 100644 index 00000000..9a67892a --- /dev/null +++ b/themes/void.yaml @@ -0,0 +1,49 @@ +name: "Void" +source: + marketplace_id: "void-sin.void-singularity" + version: "1.0.0" + installs: 68 + author: "void-sin" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=void-sin.void-singularity" +colors: + bg: "#0D0D0D" + fg: "#C4C4C4" + black: "#0D0D0D" + red: "#6A6A6A" + green: "#909090" + yellow: "#B0B0B0" + blue: "#787898" + magenta: "#A0A0A0" + cyan: "#888898" + white: "#E8E8E8" + brightBlack: "#2A2A2A" + brightRed: "#8A8A8A" + brightGreen: "#B0B0B0" + brightYellow: "#D0D0D0" + brightBlue: "#9898B8" + brightMagenta: "#C0C0C0" + brightCyan: "#A8A8B8" + brightWhite: "#F8F8F8" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 70.7 + black: 0 + red: 24.5 + green: 42.3 + yellow: 59.3 + blue: 32 + magenta: 50.6 + cyan: 39 + white: 92.7 + brightBlack: 0 + brightRed: 39.3 + brightGreen: 59.3 + brightYellow: 77.8 + brightBlue: 47.8 + brightMagenta: 68.4 + brightCyan: 55.5 + brightWhite: 103 diff --git a/themes/voidbloom-quazar.yaml b/themes/voidbloom-quazar.yaml new file mode 100644 index 00000000..a80354b9 --- /dev/null +++ b/themes/voidbloom-quazar.yaml @@ -0,0 +1,49 @@ +name: "Voidbloom Quazar" +source: + marketplace_id: "emery2547.voidbloom" + version: "0.1.0" + installs: 61 + author: "emery" + repo: "https://github.com/r4chl/voidbloom" + url: "https://marketplace.visualstudio.com/items?itemName=emery2547.voidbloom" +colors: + bg: "#F2ECEE" + fg: "#261931" + black: "#4A3B52" + red: "#9E2A46" + green: "#4F854B" + yellow: "#BA9744" + blue: "#3B59B4" + magenta: "#A24E7A" + cyan: "#157A8C" + white: "#BEB4C0" + brightBlack: "#6D5A74" + brightRed: "#C14E68" + brightGreen: "#7DA872" + brightYellow: "#DFB65D" + brightBlue: "#6982D0" + brightMagenta: "#C7799A" + brightCyan: "#38A0B0" + brightWhite: "#C9C0CB" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 93 + black: 83.5 + red: 73.8 + green: 59.8 + yellow: 42.8 + blue: 71.1 + magenta: 65.9 + cyan: 63.8 + white: 28.4 + brightBlack: 70.7 + brightRed: 60.9 + brightGreen: 42.2 + brightYellow: 25.9 + brightBlue: 53.8 + brightMagenta: 48.2 + brightCyan: 47 + brightWhite: 22 diff --git a/themes/voidbloom-singularity.yaml b/themes/voidbloom-singularity.yaml new file mode 100644 index 00000000..8a26200c --- /dev/null +++ b/themes/voidbloom-singularity.yaml @@ -0,0 +1,49 @@ +name: "Voidbloom Singularity" +source: + marketplace_id: "emery2547.voidbloom" + version: "0.1.0" + installs: 61 + author: "emery" + repo: "https://github.com/r4chl/voidbloom" + url: "https://marketplace.visualstudio.com/items?itemName=emery2547.voidbloom" +colors: + bg: "#1E172B" + fg: "#F1EFF5" + black: "#AFA4C1" + red: "#F27C92" + green: "#A3E2A4" + yellow: "#F6D37E" + blue: "#9DACFF" + magenta: "#F59BCA" + cyan: "#58D9F4" + white: "#382A4C" + brightBlack: "#7F6D99" + brightRed: "#E24D6A" + brightGreen: "#7AD383" + brightYellow: "#F4C15D" + brightBlue: "#718CFF" + brightMagenta: "#F06EB5" + brightCyan: "#25BFEA" + brightWhite: "#2F2240" +meta: + mode: "dark" + accent: "red" + hue: 299 + contrast: + fg: 96.5 + black: 54.1 + red: 50.1 + green: 78.3 + yellow: 80.8 + blue: 58.7 + magenta: 62 + cyan: 72.6 + white: 0 + brightBlack: 28.2 + brightRed: 35.6 + brightGreen: 67.1 + brightYellow: 72.4 + brightBlue: 43.3 + brightMagenta: 47.7 + brightCyan: 58.9 + brightWhite: 0 diff --git a/themes/voidwalker.yaml b/themes/voidwalker.yaml new file mode 100644 index 00000000..d1497e8f --- /dev/null +++ b/themes/voidwalker.yaml @@ -0,0 +1,49 @@ +name: "Voidwalker" +source: + marketplace_id: "SatyamRana.the-prime-themes" + version: "1.0.2" + installs: 130 + author: "Satyam Rana" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SatyamRana.the-prime-themes" +colors: + bg: "#0A0A0A" + fg: "#FFFFFF" + black: "#000000" + red: "#FF6B6B" + green: "#009A97" + yellow: "#FFD93D" + blue: "#74B9FF" + magenta: "#A29BFE" + cyan: "#009A97" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#FF7675" + brightGreen: "#00B894" + brightYellow: "#FDCB6E" + brightBlue: "#81ECEC" + brightMagenta: "#FD79A8" + brightCyan: "#00CEC9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.7 + black: 0 + red: 49 + green: 40 + yellow: 85.2 + blue: 61.8 + magenta: 54.2 + cyan: 40 + white: 107.7 + brightBlack: 0 + brightRed: 51.7 + brightGreen: 52.8 + brightYellow: 79.5 + brightBlue: 84.7 + brightMagenta: 53.7 + brightCyan: 65.1 + brightWhite: 107.7 diff --git a/themes/volatile-contrast.yaml b/themes/volatile-contrast.yaml new file mode 100644 index 00000000..b7db5206 --- /dev/null +++ b/themes/volatile-contrast.yaml @@ -0,0 +1,49 @@ +name: "volatile-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#141619" + fg: "#C0CCDB" + black: "#1F2227" + red: "#BA0E2E" + green: "#EE9C3D" + yellow: "#568769" + blue: "#FFFFFF" + magenta: "#EE9C3D" + cyan: "#568769" + white: "#D0D9E4" + brightBlack: "#414852" + brightRed: "#F03E5F" + brightGreen: "#F6CC9B" + brightYellow: "#8DB69D" + brightBlue: "#FFFFFF" + brightMagenta: "#F6CC9B" + brightCyan: "#8DB69D" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 74 + black: 0 + red: 20.6 + green: 57.8 + yellow: 32.3 + blue: 107 + magenta: 57.8 + cyan: 32.3 + white: 82 + brightBlack: 10.1 + brightRed: 36.9 + brightGreen: 79.1 + brightYellow: 56.8 + brightBlue: 107 + brightMagenta: 79.1 + brightCyan: 56.8 + brightWhite: 107 diff --git a/themes/volatile-light.yaml b/themes/volatile-light.yaml new file mode 100644 index 00000000..5f5a35df --- /dev/null +++ b/themes/volatile-light.yaml @@ -0,0 +1,49 @@ +name: "volatile-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#474F56" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#EE9C3D" + yellow: "#568769" + blue: "#474F56" + magenta: "#EE9C3D" + cyan: "#568769" + white: "#535C64" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F6CC9B" + brightYellow: "#8DB69D" + brightBlue: "#76828D" + brightMagenta: "#F6CC9B" + brightCyan: "#8DB69D" + brightWhite: "#76828D" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 88.8 + black: 0 + red: 80.3 + green: 43.4 + yellow: 68.5 + blue: 88.8 + magenta: 43.4 + cyan: 68.5 + white: 83.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 23.3 + brightYellow: 44.4 + brightBlue: 66.7 + brightMagenta: 23.3 + brightCyan: 44.4 + brightWhite: 66.7 diff --git a/themes/volatile.yaml b/themes/volatile.yaml new file mode 100644 index 00000000..52bfcfa1 --- /dev/null +++ b/themes/volatile.yaml @@ -0,0 +1,49 @@ +name: "volatile" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#32373D" + fg: "#C0CCDB" + black: "#3D444B" + red: "#BA0E2E" + green: "#EE9C3D" + yellow: "#568769" + blue: "#FFFFFF" + magenta: "#EE9C3D" + cyan: "#568769" + white: "#D0D9E4" + brightBlack: "#606A75" + brightRed: "#F03E5F" + brightGreen: "#F6CC9B" + brightYellow: "#8DB69D" + brightBlue: "#FFFFFF" + brightMagenta: "#F6CC9B" + brightCyan: "#8DB69D" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + contrast: + fg: 68 + black: 0 + red: 14.7 + green: 51.9 + yellow: 26.4 + blue: 101 + magenta: 51.9 + cyan: 26.4 + white: 76.1 + brightBlack: 17.4 + brightRed: 31 + brightGreen: 73.1 + brightYellow: 50.8 + brightBlue: 101 + brightMagenta: 73.1 + brightCyan: 50.8 + brightWhite: 101 diff --git a/themes/volcanofr.yaml b/themes/volcanofr.yaml new file mode 100644 index 00000000..e3110843 --- /dev/null +++ b/themes/volcanofr.yaml @@ -0,0 +1,49 @@ +name: "volcanofr" +source: + marketplace_id: "volcanofr.volcanofr-theme" + version: "1.0.2" + installs: 55 + author: "volcanofr" + repo: "https://github.com/volcanofr/volcanofr-theme" + url: "https://marketplace.visualstudio.com/items?itemName=volcanofr.volcanofr-theme" +colors: + bg: "#25252D" + fg: "#DED7D1" + black: "#000000" + red: "#FF0000" + green: "#00AA00" + yellow: "#AA5500" + blue: "#0000AA" + magenta: "#AA00AA" + cyan: "#00AAAA" + white: "#AAAAAA" + brightBlack: "#555555" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 80 + black: 0 + red: 34.5 + green: 41.5 + yellow: 23.3 + blue: 0 + magenta: 19.5 + cyan: 44.6 + white: 53.2 + brightBlack: 13.1 + brightRed: 41.4 + brightGreen: 85.1 + brightYellow: 100.1 + brightBlue: 24.3 + brightMagenta: 48.8 + brightCyan: 90.3 + brightWhite: 88 diff --git a/themes/volskaya.yaml b/themes/volskaya.yaml new file mode 100644 index 00000000..524c32dc --- /dev/null +++ b/themes/volskaya.yaml @@ -0,0 +1,49 @@ +name: "volskaya" +source: + marketplace_id: "Volskaya.irrelevant" + version: "0.0.2" + installs: 33 + author: "Volskaya" + repo: "https://github.com/volskaya/irrelevant" + url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#1C1C1C" + red: "#FF1652" + green: "#B2FA52" + yellow: "#FF1652" + blue: "#878787" + magenta: "#979797" + cyan: "#A6A6A6" + white: "#444444" + brightBlack: "#666666" + brightRed: "#FF1652" + brightGreen: "#B2FA52" + brightYellow: "#DDDDDD" + brightBlue: "#878787" + brightMagenta: "#979797" + brightCyan: "#A6A6A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 36.8 + green: 89.8 + yellow: 36.8 + blue: 36.6 + magenta: 44.6 + cyan: 52.5 + white: 8.3 + brightBlack: 21.5 + brightRed: 36.8 + brightGreen: 89.8 + brightYellow: 84.4 + brightBlue: 36.6 + brightMagenta: 44.6 + brightCyan: 52.5 + brightWhite: 106.3 diff --git a/themes/volt-dark.yaml b/themes/volt-dark.yaml new file mode 100644 index 00000000..cf4f1eeb --- /dev/null +++ b/themes/volt-dark.yaml @@ -0,0 +1,49 @@ +name: "Volt Dark" +source: + marketplace_id: "MBhakta.voltdark" + version: "2.0.3" + installs: 84 + author: "MBhakta" + repo: "https://github.com/milinbhakta/voltdark" + url: "https://marketplace.visualstudio.com/items?itemName=MBhakta.voltdark" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#CDFF5C" + yellow: "#87B1C8" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#6DFFF8" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#CDFF5C" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#6DFFF8" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 96.8 + yellow: 56.9 + blue: 28.4 + magenta: 30.8 + cyan: 93.9 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 96.8 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 93.9 + brightWhite: 91 diff --git a/themes/voodoo.yaml b/themes/voodoo.yaml new file mode 100644 index 00000000..5270ce93 --- /dev/null +++ b/themes/voodoo.yaml @@ -0,0 +1,49 @@ +name: "Voodoo" +source: + marketplace_id: "liamsheppard.voodoo" + version: "0.10.0" + installs: 6341 + author: "liamsheppard" + repo: "https://github.com/liamsheppard/voodoo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=liamsheppard.voodoo" +colors: + bg: "#25273E" + fg: "#D3D4D9" + black: "#525889" + red: "#EF476F" + green: "#93FF66" + yellow: "#F1D302" + blue: "#18A5FC" + magenta: "#6E61FF" + cyan: "#00EA8C" + white: "#E5E9F0" + brightBlack: "#525889" + brightRed: "#EF476F" + brightGreen: "#93FF66" + brightYellow: "#F1D302" + brightBlue: "#18A5FC" + brightMagenta: "#6E61FF" + brightCyan: "#00EA8C" + brightWhite: "#E5E9F0" +meta: + mode: "dark" + accent: "purple" + hue: 279 + contrast: + fg: 77 + black: 15.1 + red: 35.5 + green: 88 + yellow: 76.7 + blue: 46.8 + magenta: 28.4 + cyan: 73.2 + white: 89.7 + brightBlack: 15.1 + brightRed: 35.5 + brightGreen: 88 + brightYellow: 76.7 + brightBlue: 46.8 + brightMagenta: 28.4 + brightCyan: 73.2 + brightWhite: 89.7 diff --git a/themes/voraes.yaml b/themes/voraes.yaml new file mode 100644 index 00000000..cbe15c12 --- /dev/null +++ b/themes/voraes.yaml @@ -0,0 +1,49 @@ +name: "Voraes" +source: + marketplace_id: "Voraes.voraes" + version: "0.6.1" + installs: 48 + author: "Voraes" + repo: "https://github.com/Voraes/voraes-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Voraes.voraes" +colors: + bg: "#26292D" + fg: "#E4E3E3" + black: "#000000" + red: "#F6757A" + green: "#57CC99" + yellow: "#DBBC7F" + blue: "#1DA2DB" + magenta: "#B569D8" + cyan: "#8BCDEF" + white: "#E4E3E3" + brightBlack: "#5C6A72" + brightRed: "#FC5185" + brightGreen: "#57CC99" + brightYellow: "#DFA000" + brightBlue: "#1DA2DB" + brightMagenta: "#B569D8" + brightCyan: "#8BCDEF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 86.3 + black: 0 + red: 46.3 + green: 60.3 + yellow: 65 + blue: 43.4 + magenta: 35.7 + cyan: 67.6 + white: 86.3 + brightBlack: 20.3 + brightRed: 40.6 + brightGreen: 60.3 + brightYellow: 53.7 + brightBlue: 43.4 + brightMagenta: 35.7 + brightCyan: 67.6 + brightWhite: 87.4 diff --git a/themes/vortex.yaml b/themes/vortex.yaml new file mode 100644 index 00000000..8e3b5af1 --- /dev/null +++ b/themes/vortex.yaml @@ -0,0 +1,49 @@ +name: "vortex" +source: + marketplace_id: "melyssanimeth.beachouse" + version: "0.0.1" + installs: 72 + author: "melyssanimeth" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=melyssanimeth.beachouse" +colors: + bg: "#C6C6C6" + fg: "#828177" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 33.8 + black: 73.2 + red: 41.1 + green: 16.4 + yellow: 25.1 + blue: 53.2 + magenta: 41.7 + cyan: 27.7 + white: 53.1 + brightBlack: 45.9 + brightRed: 41.1 + brightGreen: 8.1 + brightYellow: 8.1 + brightBlue: 53.2 + brightMagenta: 41.7 + brightCyan: 27.7 + brightWhite: 15.6 diff --git a/themes/vox-ac30.yaml b/themes/vox-ac30.yaml new file mode 100644 index 00000000..6f9a2091 --- /dev/null +++ b/themes/vox-ac30.yaml @@ -0,0 +1,49 @@ +name: "VOX AC30" +source: + marketplace_id: "sainomeS.vox-ac30-theme" + version: "0.0.2" + installs: 32 + author: "sainomeS" + repo: "https://github.com/sainomeS/vox-ac30-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sainomeS.vox-ac30-theme" +colors: + bg: "#4D3129" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 37 + contrast: + fg: 73.1 + black: 0 + red: 20.4 + green: 46.6 + yellow: 79.3 + blue: 21.1 + magenta: 23.4 + cyan: 41.2 + white: 83.7 + brightBlack: 15.7 + brightRed: 32.2 + brightGreen: 57.2 + brightYellow: 89.3 + brightBlue: 33.6 + brightMagenta: 39 + brightCyan: 49 + brightWhite: 83.7 diff --git a/themes/voyager.yaml b/themes/voyager.yaml new file mode 100644 index 00000000..9d3e09ed --- /dev/null +++ b/themes/voyager.yaml @@ -0,0 +1,49 @@ +name: "voyager" +source: + marketplace_id: "VoyagerTeam.voyager-dark" + version: "0.0.7" + installs: 546 + author: "Voyager Team" + repo: "https://github.com/andrewbgrant/voyager-dark" + url: "https://marketplace.visualstudio.com/items?itemName=VoyagerTeam.voyager-dark" +colors: + bg: "#1A1A1A" + fg: "#B4B4B4" + black: "#171B24" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#FFD173" + brightBlue: "#73D0FF" + brightMagenta: "#DFBFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 60.4 + black: 0 + red: 50 + green: 70.4 + yellow: 78.2 + blue: 67.7 + magenta: 71.3 + cyan: 77.5 + white: 71.4 + brightBlack: 22.6 + brightRed: 52.5 + brightGreen: 96.9 + brightYellow: 81.2 + brightBlue: 70.5 + brightMagenta: 74.2 + brightCyan: 80.5 + brightWhite: 106.5 diff --git a/themes/vs-code-deep-f-lux-fork-fork.yaml b/themes/vs-code-deep-f-lux-fork-fork.yaml new file mode 100644 index 00000000..19642422 --- /dev/null +++ b/themes/vs-code-deep-f-lux-fork-fork.yaml @@ -0,0 +1,49 @@ +name: "VS Code Deep F.lux - Fork - Fork" +source: + marketplace_id: "valentinesamuel.fallout-dark" + version: "0.0.1" + installs: 2242 + author: "valentine samuel" + repo: "https://github.com/valentinesamuel/themes" + url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" +colors: + bg: "#FFC85B" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#261C1C" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: 82 + contrast: + fg: 79.1 + black: 79.1 + red: 47 + green: 22.3 + yellow: 31 + blue: 59.1 + magenta: 47.6 + cyan: 33.7 + white: 76.6 + brightBlack: 51.8 + brightRed: 47 + brightGreen: 14 + brightYellow: 14 + brightBlue: 59.1 + brightMagenta: 47.6 + brightCyan: 33.7 + brightWhite: 27.9 diff --git a/themes/vs-code-deep-f-lux.yaml b/themes/vs-code-deep-f-lux.yaml new file mode 100644 index 00000000..ec7386f3 --- /dev/null +++ b/themes/vs-code-deep-f-lux.yaml @@ -0,0 +1,49 @@ +name: "VS Code Deep F.lux" +source: + marketplace_id: "suleman-el.vs-code-flux-intense" + version: "0.0.1" + installs: 555 + author: "Suleman Elahi" + repo: "https://github.com/Suleman-Elahi/vs-code-flux-intense" + url: "https://marketplace.visualstudio.com/items?itemName=suleman-el.vs-code-flux-intense" +colors: + bg: "#FFCE5E" + fg: "#5C0000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#261C1C" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: 85 + contrast: + fg: 74.9 + black: 81.4 + red: 49.4 + green: 24.6 + yellow: 33.3 + blue: 61.4 + magenta: 50 + cyan: 36 + white: 78.9 + brightBlack: 54.1 + brightRed: 49.4 + brightGreen: 16.3 + brightYellow: 16.3 + brightBlue: 61.4 + brightMagenta: 50 + brightCyan: 36 + brightWhite: 25.3 diff --git a/themes/vs-code-next-js.yaml b/themes/vs-code-next-js.yaml new file mode 100644 index 00000000..29971423 --- /dev/null +++ b/themes/vs-code-next-js.yaml @@ -0,0 +1,49 @@ +name: "VS Code Next.Js" +source: + marketplace_id: "ShayanAliJalbani.nextjs-theme" + version: "0.0.1" + installs: 12564 + author: "Shayan Ali Jalbani" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ShayanAliJalbani.nextjs-theme" +colors: + bg: "#0A0A0A" + fg: "#EDEDED" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 96 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/vs-fleet.yaml b/themes/vs-fleet.yaml new file mode 100644 index 00000000..419f0afa --- /dev/null +++ b/themes/vs-fleet.yaml @@ -0,0 +1,49 @@ +name: "vs-fleet" +source: + marketplace_id: "anto.vs-fleet" + version: "2.0.1" + installs: 2759 + author: "anto" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=anto.vs-fleet" +colors: + bg: "#060606" + fg: "#DFDFDF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.2 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/vs-ghoul.yaml b/themes/vs-ghoul.yaml new file mode 100644 index 00000000..8b75518a --- /dev/null +++ b/themes/vs-ghoul.yaml @@ -0,0 +1,49 @@ +name: "VS Ghoul" +source: + marketplace_id: "NathanInbar.vs-ghoul" + version: "0.0.3" + installs: 2474 + author: "Nathan Inbar" + repo: "https://github.com/NathanInbar/vs-ghoul" + url: "https://marketplace.visualstudio.com/items?itemName=NathanInbar.vs-ghoul" +colors: + bg: "#1D1D1D" + fg: "#ABABAB" + black: "#262626" + red: "#CD3131" + green: "#23BC0D" + yellow: "#E5E510" + blue: "#2445C8" + magenta: "#BC3FBC" + cyan: "#11B3CD" + white: "#C7C7C7" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D12E" + brightYellow: "#F5F543" + brightBlue: "#3B7FEA" + brightMagenta: "#D670D6" + brightCyan: "#29CADB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 55.1 + black: 0 + red: 26 + green: 51.2 + yellow: 84.9 + blue: 14.7 + magenta: 29.1 + cyan: 51.5 + white: 71 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 61.3 + brightYellow: 94.9 + brightBlue: 34.1 + brightMagenta: 44.7 + brightCyan: 62.8 + brightWhite: 89.3 diff --git a/themes/vsblue.yaml b/themes/vsblue.yaml new file mode 100644 index 00000000..f71b71ea --- /dev/null +++ b/themes/vsblue.yaml @@ -0,0 +1,49 @@ +name: "vsblue" +source: + marketplace_id: "4rya.vsblue" + version: "1.4.2" + installs: 66 + author: "4rya" + repo: "https://github.com/TugasArya/vsblue" + url: "https://marketplace.visualstudio.com/items?itemName=4rya.vsblue" +colors: + bg: "#F0F9FF" + fg: "#1E3A5F" + black: "#1A365D" + red: "#FF595E" + green: "#FFD166" + yellow: "#FF9F1C" + blue: "#4ECDC4" + magenta: "#FF6B9D" + cyan: "#A3D5FF" + white: "#E6F2FF" + brightBlack: "#8DA1B9" + brightRed: "#FF7D82" + brightGreen: "#FFE082" + brightYellow: "#FFB74D" + brightBlue: "#6CE6DE" + brightMagenta: "#FF85AA" + brightCyan: "#D4EBFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 91.9 + black: 93.1 + red: 52.1 + green: 16.6 + yellow: 35.2 + blue: 32.3 + magenta: 46.9 + cyan: 20.9 + white: 0 + brightBlack: 47.1 + brightRed: 43.6 + brightGreen: 10 + brightYellow: 26.7 + brightBlue: 18.7 + brightMagenta: 40.2 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/vsc-blue-theme.yaml b/themes/vsc-blue-theme.yaml new file mode 100644 index 00000000..8c579cef --- /dev/null +++ b/themes/vsc-blue-theme.yaml @@ -0,0 +1,49 @@ +name: "Vsc-Blue-theme" +source: + marketplace_id: "Mdb05.vsc-theme" + version: "1.0.1" + installs: 667 + author: "Mdb05" + repo: "https://github.com/Mdb05/Vsc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Mdb05.vsc-theme" +colors: + bg: "#161A1D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.2 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.7 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/vsc-military-style.yaml b/themes/vsc-military-style.yaml new file mode 100644 index 00000000..d76d22c2 --- /dev/null +++ b/themes/vsc-military-style.yaml @@ -0,0 +1,49 @@ +name: "VSC Military Style" +source: + marketplace_id: "ROMAINPC.vsc-military-monokai" + version: "1.0.0" + installs: 951 + author: "ROMAINPC" + repo: "https://github.com/ROMAINPC/vsc-military-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=ROMAINPC.vsc-military-monokai" +colors: + bg: "#191F19" + fg: "#9D9E95" + black: "#1F1F1F" + red: "#8B3432" + green: "#8CA56F" + yellow: "#9B8B30" + blue: "#23454B" + magenta: "#704D77" + cyan: "#588D8B" + white: "#C7C7C7" + brightBlack: "#2C2C2C" + brightRed: "#914948" + brightGreen: "#61C548" + brightYellow: "#C5B243" + brightBlue: "#6D9CBE" + brightMagenta: "#80528A" + brightCyan: "#2E6069" + brightWhite: "#C7C7C7" +meta: + mode: "dark" + accent: "green" + hue: 145 + contrast: + fg: 47.6 + black: 0 + red: 13.4 + green: 47.5 + yellow: 38.2 + blue: 0 + magenta: 16.2 + cyan: 34.9 + white: 70.9 + brightBlack: 0 + brightRed: 18.4 + brightGreen: 57.6 + brightYellow: 58.6 + brightBlue: 44.3 + brightMagenta: 20.2 + brightCyan: 16 + brightWhite: 70.9 diff --git a/themes/vsc-minimalist-theme-oak.yaml b/themes/vsc-minimalist-theme-oak.yaml new file mode 100644 index 00000000..7d787300 --- /dev/null +++ b/themes/vsc-minimalist-theme-oak.yaml @@ -0,0 +1,49 @@ +name: "vsc-minimalist-theme-oak" +source: + marketplace_id: "MuhammadMohsen.vsc-minimalist-theme" + version: "1.5.4" + installs: 1321 + author: "Muhammad Mohsen" + repo: "https://github.com/Muhammad-Mohsen/vsc-minimalist-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMohsen.vsc-minimalist-theme" +colors: + bg: "#141414" + fg: "#D4D4D4" + black: "#585858" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.8 + black: 16.6 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/vsc-minimalist-theme-obsidian.yaml b/themes/vsc-minimalist-theme-obsidian.yaml new file mode 100644 index 00000000..6e77f3a3 --- /dev/null +++ b/themes/vsc-minimalist-theme-obsidian.yaml @@ -0,0 +1,49 @@ +name: "vsc-minimalist-theme-obsidian" +source: + marketplace_id: "MuhammadMohsen.vsc-minimalist-theme" + version: "1.5.4" + installs: 1321 + author: "Muhammad Mohsen" + repo: "https://github.com/Muhammad-Mohsen/vsc-minimalist-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMohsen.vsc-minimalist-theme" +colors: + bg: "#1E2025" + fg: "#D4D4D4" + black: "#585858" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.4 + black: 15.2 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.3 + magenta: 28.6 + cyan: 46.4 + white: 88.9 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/vsc-minimalist-theme-odp.yaml b/themes/vsc-minimalist-theme-odp.yaml new file mode 100644 index 00000000..3fb83d3f --- /dev/null +++ b/themes/vsc-minimalist-theme-odp.yaml @@ -0,0 +1,49 @@ +name: "vsc-minimalist-theme-odp" +source: + marketplace_id: "MuhammadMohsen.vsc-minimalist-theme" + version: "1.5.4" + installs: 1321 + author: "Muhammad Mohsen" + repo: "https://github.com/Muhammad-Mohsen/vsc-minimalist-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMohsen.vsc-minimalist-theme" +colors: + bg: "#161616" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.6 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/vsc-solarized-light.yaml b/themes/vsc-solarized-light.yaml new file mode 100644 index 00000000..b28e8913 --- /dev/null +++ b/themes/vsc-solarized-light.yaml @@ -0,0 +1,49 @@ +name: "vsc-solarized-light" +source: + marketplace_id: "ikx12333.vsc-soft-theme" + version: "0.1.9" + installs: 596 + author: "ikx12333" + repo: "https://github.com/ikx12333/vsc-soft-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ikx12333.vsc-soft-theme" +colors: + bg: "#FDF6E3" + fg: "#657B83" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#EEE8D5" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 65.7 + black: 93.7 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 0 + brightBlack: 96.4 + brightRed: 65.8 + brightGreen: 71.6 + brightYellow: 65.7 + brightBlue: 53.5 + brightMagenta: 65 + brightCyan: 46.7 + brightWhite: 0 diff --git a/themes/vscode-bt-feynuus-color-theme.yaml b/themes/vscode-bt-feynuus-color-theme.yaml new file mode 100644 index 00000000..27e4a3eb --- /dev/null +++ b/themes/vscode-bt-feynuus-color-theme.yaml @@ -0,0 +1,49 @@ +name: "vscode-bt-feynuus-color-theme" +source: + marketplace_id: "BanadirTech.vscode-bt-feynuus-theme" + version: "0.0.4" + installs: 326 + author: "BanadirTech Inc" + repo: "https://github.com/banadirtech/vscode-feynuus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BanadirTech.vscode-bt-feynuus-theme" +colors: + bg: "#212121" + fg: "#FDFDFD" + black: "#040404" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 104.3 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/vscode-material-ui.yaml b/themes/vscode-material-ui.yaml new file mode 100644 index 00000000..d925e8a1 --- /dev/null +++ b/themes/vscode-material-ui.yaml @@ -0,0 +1,49 @@ +name: "vscode-material-ui" +source: + marketplace_id: "nxt3.vscode-material-ui" + version: "1.2.0" + installs: 30110 + author: "nxt3" + repo: "https://github.com/Nxt3/vscode-material-ui" + url: "https://marketplace.visualstudio.com/items?itemName=nxt3.vscode-material-ui" +colors: + bg: "#212121" + fg: "#EEEEEE" + black: "#000000" + red: "#F44336" + green: "#00C853" + yellow: "#FFEB3B" + blue: "#2096F3" + magenta: "#9C30B0" + cyan: "#04BCD4" + white: "#BFBFBF" + brightBlack: "#666666" + brightRed: "#E57373" + brightGreen: "#25E47A" + brightYellow: "#FFF176" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 94.5 + black: 0 + red: 36.4 + green: 56.6 + yellow: 91.1 + blue: 41.8 + magenta: 20.3 + cyan: 55.2 + white: 65.8 + brightBlack: 20.8 + brightRed: 43.5 + brightGreen: 71.3 + brightYellow: 94.6 + brightBlue: 56.5 + brightMagenta: 36.6 + brightCyan: 66.2 + brightWhite: 102.3 diff --git a/themes/vscode-nofrils-dark.yaml b/themes/vscode-nofrils-dark.yaml new file mode 100644 index 00000000..ad8ee2bc --- /dev/null +++ b/themes/vscode-nofrils-dark.yaml @@ -0,0 +1,49 @@ +name: "VSCode Nofrils Dark" +source: + marketplace_id: "batteajd.vscode-nofrils" + version: "2.2.0" + installs: 102 + author: "Jonathan Batteas" + repo: "https://github.com/sosukeinu/vscode-nofrils" + url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" +colors: + bg: "#121212" + fg: "#E4E4E4" + black: "#11151C" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 89.8 + black: 0 + red: 44.5 + green: 70.5 + yellow: 67 + blue: 61 + magenta: 61.1 + cyan: 78.3 + white: 72.1 + brightBlack: 23.3 + brightRed: 47 + brightGreen: 73.7 + brightYellow: 70 + brightBlue: 63.8 + brightMagenta: 63.8 + brightCyan: 81.3 + brightWhite: 107.3 diff --git a/themes/vscode-nofrils-github-light.yaml b/themes/vscode-nofrils-github-light.yaml new file mode 100644 index 00000000..5d3be83e --- /dev/null +++ b/themes/vscode-nofrils-github-light.yaml @@ -0,0 +1,49 @@ +name: "VSCode Nofrils GitHub Light" +source: + marketplace_id: "batteajd.vscode-nofrils" + version: "2.2.0" + installs: 102 + author: "Jonathan Batteas" + repo: "https://github.com/sosukeinu/vscode-nofrils" + url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#24292E" + red: "#D73A49" + green: "#28A745" + yellow: "#FFD33D" + blue: "#0366D6" + magenta: "#6F42C1" + cyan: "#39C5CF" + white: "#FFFFFF" + brightBlack: "#586069" + brightRed: "#D73A49" + brightGreen: "#28A745" + brightYellow: "#FFD33D" + brightBlue: "#0366D6" + brightMagenta: "#6F42C1" + brightCyan: "#39C5CF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.5 + black: 101.5 + red: 70.4 + green: 57.9 + yellow: 20.6 + blue: 76.2 + magenta: 81.7 + cyan: 40.4 + white: 0 + brightBlack: 81.7 + brightRed: 70.4 + brightGreen: 57.9 + brightYellow: 20.6 + brightBlue: 76.2 + brightMagenta: 81.7 + brightCyan: 40.4 + brightWhite: 0 diff --git a/themes/vscode-nofrils-gruvbox-dark.yaml b/themes/vscode-nofrils-gruvbox-dark.yaml new file mode 100644 index 00000000..30d3313c --- /dev/null +++ b/themes/vscode-nofrils-gruvbox-dark.yaml @@ -0,0 +1,49 @@ +name: "VSCode Nofrils Gruvbox Dark" +source: + marketplace_id: "batteajd.vscode-nofrils" + version: "2.2.0" + installs: 102 + author: "Jonathan Batteas" + repo: "https://github.com/sosukeinu/vscode-nofrils" + url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" +colors: + bg: "#3C3836" + fg: "#EBDBB2" + black: "#EBDBB2" + red: "#EA6C6D" + green: "#6CBF43" + yellow: "#ECA944" + blue: "#3199E1" + magenta: "#9E75C7" + cyan: "#46BA94" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#F2AE49" + brightBlue: "#399EE6" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#D1D1D1" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 77.9 + black: 77.9 + red: 37.4 + green: 49.7 + yellow: 55.5 + blue: 36.7 + magenta: 30.6 + cyan: 47.3 + white: 65.2 + brightBlack: 16.4 + brightRed: 39.9 + brightGreen: 46 + brightYellow: 58.4 + brightBlue: 39.2 + brightMagenta: 33 + brightCyan: 50 + brightWhite: 71.2 diff --git a/themes/vscode-nofrils-gruvbox-light.yaml b/themes/vscode-nofrils-gruvbox-light.yaml new file mode 100644 index 00000000..9f8c0122 --- /dev/null +++ b/themes/vscode-nofrils-gruvbox-light.yaml @@ -0,0 +1,49 @@ +name: "VSCode Nofrils Gruvbox Light" +source: + marketplace_id: "batteajd.vscode-nofrils" + version: "2.2.0" + installs: 102 + author: "Jonathan Batteas" + repo: "https://github.com/sosukeinu/vscode-nofrils" + url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" +colors: + bg: "#FBF1C7" + fg: "#282828" + black: "#282828" + red: "#EA6C6D" + green: "#6CBF43" + yellow: "#ECA944" + blue: "#3199E1" + magenta: "#9E75C7" + cyan: "#46BA94" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#F2AE49" + brightBlue: "#399EE6" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 93 + black: 93 + red: 48.2 + green: 36.3 + yellow: 30.7 + blue: 48.9 + magenta: 54.9 + cyan: 38.6 + white: 21.5 + brightBlack: 69.3 + brightRed: 45.8 + brightGreen: 39.9 + brightYellow: 27.9 + brightBlue: 46.5 + brightMagenta: 52.5 + brightCyan: 36 + brightWhite: 15.8 diff --git a/themes/vscode-nofrils-light.yaml b/themes/vscode-nofrils-light.yaml new file mode 100644 index 00000000..76cd249a --- /dev/null +++ b/themes/vscode-nofrils-light.yaml @@ -0,0 +1,49 @@ +name: "VSCode Nofrils Light" +source: + marketplace_id: "batteajd.vscode-nofrils-light" + version: "1.1.1" + installs: 7 + author: "Jonathan Batteas" + repo: "https://github.com/urld/vscode-nofrils" + url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils-light" +colors: + bg: "#DADADA" + fg: "#000000" + black: "#000000" + red: "#EA6C6D" + green: "#6CBF43" + yellow: "#ECA944" + blue: "#3199E1" + magenta: "#9E75C7" + cyan: "#46BA94" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#F2AE49" + brightBlue: "#399EE6" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 84.4 + black: 84.4 + red: 35.2 + green: 23.2 + yellow: 17.7 + blue: 35.9 + magenta: 41.9 + cyan: 25.5 + white: 8.4 + brightBlack: 56.2 + brightRed: 32.7 + brightGreen: 26.8 + brightYellow: 14.9 + brightBlue: 33.5 + brightMagenta: 39.5 + brightCyan: 23 + brightWhite: 0 diff --git a/themes/vscode-nofrils-one-dark.yaml b/themes/vscode-nofrils-one-dark.yaml new file mode 100644 index 00000000..3883f535 --- /dev/null +++ b/themes/vscode-nofrils-one-dark.yaml @@ -0,0 +1,49 @@ +name: "VSCode Nofrils One Dark" +source: + marketplace_id: "batteajd.vscode-nofrils" + version: "2.2.0" + installs: 102 + author: "Jonathan Batteas" + repo: "https://github.com/sosukeinu/vscode-nofrils" + url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#282C34" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 56.2 + brightBlack: 17.4 + brightRed: 38.9 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 51.5 + brightMagenta: 41.9 + brightCyan: 51.4 + brightWhite: 103.7 diff --git a/themes/vscode-nofrils-one-light.yaml b/themes/vscode-nofrils-one-light.yaml new file mode 100644 index 00000000..75cd0097 --- /dev/null +++ b/themes/vscode-nofrils-one-light.yaml @@ -0,0 +1,49 @@ +name: "VSCode Nofrils One Light" +source: + marketplace_id: "batteajd.vscode-nofrils" + version: "2.2.0" + installs: 102 + author: "Jonathan Batteas" + repo: "https://github.com/sosukeinu/vscode-nofrils" + url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" +colors: + bg: "#FAFAFA" + fg: "#383A42" + black: "#383A42" + red: "#E45649" + green: "#50A14F" + yellow: "#C18401" + blue: "#4078F2" + magenta: "#A626A4" + cyan: "#0184BC" + white: "#FAFAFA" + brightBlack: "#4F525D" + brightRed: "#E45649" + brightGreen: "#50A14F" + brightYellow: "#C18401" + brightBlue: "#4078F2" + brightMagenta: "#A626A4" + brightCyan: "#0184BC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 93.2 + black: 93.2 + red: 60.4 + green: 56 + yellow: 55.8 + blue: 64.3 + magenta: 76.2 + cyan: 65.1 + white: 0 + brightBlack: 84.1 + brightRed: 60.4 + brightGreen: 56 + brightYellow: 55.8 + brightBlue: 64.3 + brightMagenta: 76.2 + brightCyan: 65.1 + brightWhite: 0 diff --git a/themes/vscode-nofrils-sepia.yaml b/themes/vscode-nofrils-sepia.yaml new file mode 100644 index 00000000..06d92cd7 --- /dev/null +++ b/themes/vscode-nofrils-sepia.yaml @@ -0,0 +1,49 @@ +name: "VSCode Nofrils Sepia" +source: + marketplace_id: "batteajd.vscode-nofrils" + version: "2.2.0" + installs: 102 + author: "Jonathan Batteas" + repo: "https://github.com/sosukeinu/vscode-nofrils" + url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" +colors: + bg: "#FDFBD4" + fg: "#545333" + black: "#545333" + red: "#EA6C6D" + green: "#6CBF43" + yellow: "#ECA944" + blue: "#3199E1" + magenta: "#9E75C7" + cyan: "#46BA94" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#F2AE49" + brightBlue: "#399EE6" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 83.7 + black: 83.7 + red: 53.2 + green: 41.3 + yellow: 35.7 + blue: 53.9 + magenta: 59.9 + cyan: 43.5 + white: 26.4 + brightBlack: 74.2 + brightRed: 50.7 + brightGreen: 44.9 + brightYellow: 32.9 + brightBlue: 51.5 + brightMagenta: 57.5 + brightCyan: 41 + brightWhite: 20.8 diff --git a/themes/vscode-nofrils-tokyo-night.yaml b/themes/vscode-nofrils-tokyo-night.yaml new file mode 100644 index 00000000..23d3725c --- /dev/null +++ b/themes/vscode-nofrils-tokyo-night.yaml @@ -0,0 +1,49 @@ +name: "VSCode Nofrils Tokyo Night" +source: + marketplace_id: "batteajd.vscode-nofrils" + version: "2.2.0" + installs: 102 + author: "Jonathan Batteas" + repo: "https://github.com/sosukeinu/vscode-nofrils" + url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#1A1B26" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#C0CAF5" + brightBlack: "#565F89" + brightRed: "#F7768E" + brightGreen: "#9ECE6A" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 73.8 + black: 0 + red: 49.4 + green: 66.9 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 73.8 + brightBlack: 19.5 + brightRed: 49.4 + brightGreen: 66.9 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 73.8 diff --git a/themes/vscode-pink-and-puple-theme.yaml b/themes/vscode-pink-and-puple-theme.yaml new file mode 100644 index 00000000..531cec98 --- /dev/null +++ b/themes/vscode-pink-and-puple-theme.yaml @@ -0,0 +1,49 @@ +name: "vscode-pink-and-puple-theme" +source: + marketplace_id: "KelsonCarvalho.vscode-pink-and-puple-theme" + version: "2.0.0" + installs: 1126 + author: "Kelson Carvalho" + repo: "https://github.com/NoslekCode/vscode-pink-and-puple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.vscode-pink-and-puple-theme" +colors: + bg: "#563760" + fg: "#D4D4D4" + black: "#FB005E" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#5C5C5C" + brightRed: "#B9B9B9" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 318 + contrast: + fg: 69.7 + black: 26.6 + red: 16.9 + green: 43.2 + yellow: 75.8 + blue: 17.6 + magenta: 20 + cyan: 37.8 + white: 97.1 + brightBlack: 8.1 + brightRed: 53.8 + brightGreen: 53.8 + brightYellow: 85.9 + brightBlue: 30.2 + brightMagenta: 35.6 + brightCyan: 45.6 + brightWhite: 97.1 diff --git a/themes/vscode-sublime-ish.yaml b/themes/vscode-sublime-ish.yaml new file mode 100644 index 00000000..faee5e35 --- /dev/null +++ b/themes/vscode-sublime-ish.yaml @@ -0,0 +1,49 @@ +name: "vscode-sublime-ish" +source: + marketplace_id: "keepflying.sublime-ish" + version: "0.0.1" + installs: 134 + author: "keepflying" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=keepflying.sublime-ish" +colors: + bg: "#F2F2F2" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 98.3 + black: 98.3 + red: 66.2 + green: 41.5 + yellow: 50.2 + blue: 78.3 + magenta: 66.8 + cyan: 52.9 + white: 78.2 + brightBlack: 71 + brightRed: 66.2 + brightGreen: 33.2 + brightYellow: 33.2 + brightBlue: 78.3 + brightMagenta: 66.8 + brightCyan: 52.9 + brightWhite: 40.7 diff --git a/themes/vscode-theme.yaml b/themes/vscode-theme.yaml new file mode 100644 index 00000000..738b188c --- /dev/null +++ b/themes/vscode-theme.yaml @@ -0,0 +1,49 @@ +name: "VSCode Theme" +source: + marketplace_id: "JhosephS.vscodemaintheme" + version: "2.1.3" + installs: 979 + author: "JhosephS" + repo: "https://github.com/JhosephL/VSCodeThemes" + url: "https://marketplace.visualstudio.com/items?itemName=JhosephS.vscodemaintheme" +colors: + bg: "#001432" + fg: "#FFFFFF" + black: "#212121" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 256 + contrast: + fg: 106.9 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 79.5 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 106.9 diff --git a/themes/vscyberpunk-2077.yaml b/themes/vscyberpunk-2077.yaml new file mode 100644 index 00000000..ffb9a5af --- /dev/null +++ b/themes/vscyberpunk-2077.yaml @@ -0,0 +1,49 @@ +name: "VSCyberpunk 2077" +source: + marketplace_id: "spicyhek.visual-studio-cyberpunk-2077" + version: "0.1.1" + installs: 224 + author: "spicyhek" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=spicyhek.visual-studio-cyberpunk-2077" +colors: + bg: "#160000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 29 + contrast: + fg: 80.3 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/vsmuted-color-theme.yaml b/themes/vsmuted-color-theme.yaml new file mode 100644 index 00000000..23701757 --- /dev/null +++ b/themes/vsmuted-color-theme.yaml @@ -0,0 +1,49 @@ +name: "VSMuted-color-theme" +source: + marketplace_id: "PJWalker.vs-muted" + version: "1.2.0" + installs: 1189 + author: "PJ Walker" + repo: "https://github.com/PJWalker/VS-Muted" + url: "https://marketplace.visualstudio.com/items?itemName=PJWalker.vs-muted" +colors: + bg: "#FFFFFF" + fg: "#000D" + black: "#000D" + red: "#CC1155" + green: "#119944" + yellow: "#EEAA11" + blue: "#007ACC" + magenta: "#BC05BC" + cyan: "#007ACC" + white: "#000A" + brightBlack: "#000A" + brightRed: "#CC1155" + brightGreen: "#119944" + brightYellow: "#EEAA11" + brightBlue: "#007ACC" + brightMagenta: "#BC05BC" + brightCyan: "#007ACC" + brightWhite: "#AAAAAA" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 75.6 + green: 64.1 + yellow: 38.9 + blue: 70.6 + magenta: 74.6 + cyan: 70.6 + white: 106 + brightBlack: 106 + brightRed: 75.6 + brightGreen: 64.1 + brightYellow: 38.9 + brightBlue: 70.6 + brightMagenta: 74.6 + brightCyan: 70.6 + brightWhite: 45.8 diff --git a/themes/vsnordtheme-dark-contrast-color-theme.yaml b/themes/vsnordtheme-dark-contrast-color-theme.yaml new file mode 100644 index 00000000..eaa0c1ad --- /dev/null +++ b/themes/vsnordtheme-dark-contrast-color-theme.yaml @@ -0,0 +1,49 @@ +name: "VSNordTheme-dark-contrast-color-theme" +source: + marketplace_id: "Kochan.vs-nord-theme" + version: "1.0.2" + installs: 528 + author: "Koiverse" + repo: "https://github.com/koimoee/VSNordTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Kochan.vs-nord-theme" +colors: + bg: "#101010" + fg: "#C8DCE9" + black: "#2B3252" + red: "#AF515A" + green: "#93AE7C" + yellow: "#DBBB7B" + blue: "#7191B1" + magenta: "#A48EAD" + cyan: "#78B0C0" + white: "#D5D9F0" + brightBlack: "#3C466A" + brightRed: "#AF515A" + brightGreen: "#93AE7C" + brightYellow: "#DBBB7B" + brightBlue: "#7191B1" + brightMagenta: "#A48EAD" + brightCyan: "#7FABB0" + brightWhite: "#DCEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.1 + black: 0 + red: 26.8 + green: 53.5 + yellow: 67.6 + blue: 41.1 + magenta: 45 + cyan: 54.5 + white: 83.7 + brightBlack: 10.7 + brightRed: 26.8 + brightGreen: 53.5 + brightYellow: 67.6 + brightBlue: 41.1 + brightMagenta: 45 + brightCyan: 52.2 + brightWhite: 94.7 diff --git a/themes/vsnordtheme-light-color-theme.yaml b/themes/vsnordtheme-light-color-theme.yaml new file mode 100644 index 00000000..e96eb400 --- /dev/null +++ b/themes/vsnordtheme-light-color-theme.yaml @@ -0,0 +1,49 @@ +name: "VSNordTheme-light-color-theme" +source: + marketplace_id: "Kochan.vs-nord-theme" + version: "1.0.2" + installs: 528 + author: "Koiverse" + repo: "https://github.com/koimoee/VSNordTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Kochan.vs-nord-theme" +colors: + bg: "#FFFFFF" + fg: "#2E3440" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#2E3440" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.4 + black: 93.4 + red: 67.7 + green: 39.7 + yellow: 25.7 + blue: 52.2 + magenta: 54.3 + cyan: 38.7 + white: 98.4 + brightBlack: 85.6 + brightRed: 67.7 + brightGreen: 39.7 + brightYellow: 25.7 + brightBlue: 52.2 + brightMagenta: 54.3 + brightCyan: 40.7 + brightWhite: 0 diff --git a/themes/vsnordtheme-light-contrast-color-theme.yaml b/themes/vsnordtheme-light-contrast-color-theme.yaml new file mode 100644 index 00000000..70c1f289 --- /dev/null +++ b/themes/vsnordtheme-light-contrast-color-theme.yaml @@ -0,0 +1,49 @@ +name: "VSNordTheme-light-contrast-color-theme" +source: + marketplace_id: "Kochan.vs-nord-theme" + version: "1.0.2" + installs: 528 + author: "Koiverse" + repo: "https://github.com/koimoee/VSNordTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Kochan.vs-nord-theme" +colors: + bg: "#FFFFFF" + fg: "#1E1E1E" + black: "#2B3252" + red: "#AF515A" + green: "#93AE7C" + yellow: "#DBBB7B" + blue: "#7191B1" + magenta: "#A48EAD" + cyan: "#78B0C0" + white: "#1E1E1E" + brightBlack: "#3C466A" + brightRed: "#AF515A" + brightGreen: "#93AE7C" + brightYellow: "#DBBB7B" + brightBlue: "#7191B1" + brightMagenta: "#A48EAD" + brightCyan: "#7FABB0" + brightWhite: "#DCEFF4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 103.6 + black: 98.3 + red: 74.5 + green: 48.1 + yellow: 34.5 + blue: 60.2 + magenta: 56.4 + cyan: 47.1 + white: 103.6 + brightBlack: 91.2 + brightRed: 74.5 + brightGreen: 48.1 + brightYellow: 34.5 + brightBlue: 60.2 + brightMagenta: 56.4 + brightCyan: 49.3 + brightWhite: 9 diff --git a/themes/vstheme-no-italics.yaml b/themes/vstheme-no-italics.yaml new file mode 100644 index 00000000..db44a2b4 --- /dev/null +++ b/themes/vstheme-no-italics.yaml @@ -0,0 +1,49 @@ +name: "VSTheme No Italics" +source: + marketplace_id: "jamesgleason.vstheme" + version: "1.0.0" + installs: 355 + author: "James Gleason" + repo: "https://github.com/jameygleason/vstheme" + url: "https://marketplace.visualstudio.com/items?itemName=jamesgleason.vstheme" +colors: + bg: "#00091A" + fg: "#C8D4E7" + black: "#00091A" + red: "#EF5350" + green: "#22DA6E" + yellow: "#DFD9A6" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 253 + contrast: + fg: 79.7 + black: 0 + red: 40.1 + green: 68.1 + yellow: 82.3 + blue: 56.7 + magenta: 54.6 + cyan: 60.5 + white: 107.7 + brightBlack: 16.4 + brightRed: 40.1 + brightGreen: 68.1 + brightYellow: 94.5 + brightBlue: 56.7 + brightMagenta: 54.6 + brightCyan: 74.8 + brightWhite: 107.7 diff --git a/themes/vstoolkit-theme-dark.yaml b/themes/vstoolkit-theme-dark.yaml new file mode 100644 index 00000000..5f92776b --- /dev/null +++ b/themes/vstoolkit-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "VSToolKit Theme Dark" +source: + marketplace_id: "PhilippBo.vstoolkit" + version: "1.1.0" + installs: 133 + author: "Philipp Bo." + repo: "https://github.com/phil1436/VSToolKit" + url: "https://marketplace.visualstudio.com/items?itemName=PhilippBo.vstoolkit" +colors: + bg: "#010409" + fg: "#D6DEEB" + black: "#010409" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#FD4A4A" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#FD4A4A" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 86.2 + black: 0 + red: 40.3 + green: 68.2 + yellow: 83 + blue: 56.9 + magenta: 42 + cyan: 60.7 + white: 107.9 + brightBlack: 16.6 + brightRed: 40.3 + brightGreen: 68.2 + brightYellow: 94.7 + brightBlue: 56.9 + brightMagenta: 42 + brightCyan: 75 + brightWhite: 107.9 diff --git a/themes/vuejs-theme.yaml b/themes/vuejs-theme.yaml new file mode 100644 index 00000000..2a4a87ad --- /dev/null +++ b/themes/vuejs-theme.yaml @@ -0,0 +1,49 @@ +name: "VueJS Theme" +source: + marketplace_id: "leonardoleal202.vuejs-theme" + version: "2.0.0" + installs: 12754 + author: "leonardoleal202" + repo: "https://github.com/Leozhr/VueJS-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=leonardoleal202.vuejs-theme" +colors: + bg: "#151515" + fg: "#BBBBCC" + black: "#363537" + red: "#99BBFE" + green: "#FFDD44" + yellow: "#43D194" + blue: "#99BBFE" + magenta: "#99BBFF" + cyan: "#DDAAFF" + white: "#FFFFFF" + brightBlack: "#69676C" + brightRed: "#99BBFE" + brightGreen: "#FFDD44" + brightYellow: "#43D194" + brightBlue: "#99BBFE" + brightMagenta: "#99BBFF" + brightCyan: "#DDAAFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 65.7 + black: 0 + red: 64.8 + green: 86.3 + yellow: 64.6 + blue: 64.8 + magenta: 64.9 + cyan: 66.6 + white: 107.1 + brightBlack: 23 + brightRed: 64.8 + brightGreen: 86.3 + brightYellow: 64.6 + brightBlue: 64.8 + brightMagenta: 64.9 + brightCyan: 66.6 + brightWhite: 107.1 diff --git a/themes/vulpotheme.yaml b/themes/vulpotheme.yaml new file mode 100644 index 00000000..207759b5 --- /dev/null +++ b/themes/vulpotheme.yaml @@ -0,0 +1,49 @@ +name: "VulpoTheme" +source: + marketplace_id: "VulpoTheDev.vulpotheme" + version: "1.0.0" + installs: 84 + author: "Jason" + repo: "https://github.com/VulpoTheDev/vulpotheme" + url: "https://marketplace.visualstudio.com/items?itemName=VulpoTheDev.vulpotheme" +colors: + bg: "#131313" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 79.8 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/vxcode-blush.yaml b/themes/vxcode-blush.yaml new file mode 100644 index 00000000..6a3da859 --- /dev/null +++ b/themes/vxcode-blush.yaml @@ -0,0 +1,49 @@ +name: "vxcode blush" +source: + marketplace_id: "evertjunior.vxcode-theme" + version: "0.0.15" + installs: 3237 + author: "Evert Junior" + repo: "https://github.com/evertjr/vxcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" +colors: + bg: "#E9DFD6" + fg: "#333333" + black: "#555555" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#888888" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#EEEEEE" +meta: + mode: "light" + accent: "orange" + hue: 65 + contrast: + fg: 80.8 + black: 68 + red: 38 + green: 30.8 + yellow: 10.1 + blue: 37.9 + magenta: 35.5 + cyan: 26.8 + white: 0 + brightBlack: 45.1 + brightRed: 30.4 + brightGreen: 22.5 + brightYellow: 0 + brightBlue: 29.9 + brightMagenta: 27.2 + brightCyan: 18.4 + brightWhite: 0 diff --git a/themes/vxcode-cream.yaml b/themes/vxcode-cream.yaml new file mode 100644 index 00000000..4eeb4477 --- /dev/null +++ b/themes/vxcode-cream.yaml @@ -0,0 +1,49 @@ +name: "vxcode cream" +source: + marketplace_id: "evertjunior.vxcode-theme" + version: "0.0.15" + installs: 3237 + author: "Evert Junior" + repo: "https://github.com/evertjr/vxcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" +colors: + bg: "#FAF3E0" + fg: "#333333" + black: "#555555" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#888888" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#EEEEEE" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 91.7 + black: 78.9 + red: 48.9 + green: 41.7 + yellow: 21 + blue: 48.8 + magenta: 46.3 + cyan: 37.7 + white: 10.5 + brightBlack: 56 + brightRed: 41.3 + brightGreen: 33.4 + brightYellow: 12 + brightBlue: 40.7 + brightMagenta: 38.1 + brightCyan: 29.3 + brightWhite: 0 diff --git a/themes/vxcode-dark.yaml b/themes/vxcode-dark.yaml new file mode 100644 index 00000000..84a1a231 --- /dev/null +++ b/themes/vxcode-dark.yaml @@ -0,0 +1,49 @@ +name: "vxcode dark" +source: + marketplace_id: "evertjunior.vxcode-theme" + version: "0.0.15" + installs: 3237 + author: "Evert Junior" + repo: "https://github.com/evertjr/vxcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" +colors: + bg: "#2A2A30" + fg: "#E3E3E3" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#E3E3E3" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: 286 + contrast: + fg: 85.8 + black: 0 + red: 41.9 + green: 49.3 + yellow: 71 + blue: 42 + magenta: 44.6 + cyan: 53.5 + white: 85.8 + brightBlack: 19.1 + brightRed: 49.8 + brightGreen: 57.9 + brightYellow: 80.6 + brightBlue: 50.3 + brightMagenta: 53.1 + brightCyan: 62.2 + brightWhite: 98 diff --git a/themes/vxcode-darker.yaml b/themes/vxcode-darker.yaml new file mode 100644 index 00000000..a00a7b95 --- /dev/null +++ b/themes/vxcode-darker.yaml @@ -0,0 +1,49 @@ +name: "vxcode darker" +source: + marketplace_id: "evertjunior.vxcode-theme" + version: "0.0.15" + installs: 3237 + author: "Evert Junior" + repo: "https://github.com/evertjr/vxcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" +colors: + bg: "#0A0A0A" + fg: "#E3E3E3" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#E3E3E3" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.6 + black: 0 + red: 45.7 + green: 53.1 + yellow: 74.8 + blue: 45.8 + magenta: 48.3 + cyan: 57.2 + white: 89.6 + brightBlack: 22.9 + brightRed: 53.6 + brightGreen: 61.7 + brightYellow: 84.4 + brightBlue: 54.1 + brightMagenta: 56.8 + brightCyan: 66 + brightWhite: 101.8 diff --git a/themes/vxcode-lavender.yaml b/themes/vxcode-lavender.yaml new file mode 100644 index 00000000..f337786c --- /dev/null +++ b/themes/vxcode-lavender.yaml @@ -0,0 +1,49 @@ +name: "vxcode lavender" +source: + marketplace_id: "evertjunior.vxcode-theme" + version: "0.0.15" + installs: 3237 + author: "Evert Junior" + repo: "https://github.com/evertjr/vxcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" +colors: + bg: "#E9E3EA" + fg: "#333333" + black: "#555555" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#888888" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#EEEEEE" +meta: + mode: "light" + accent: "orange" + hue: 321 + contrast: + fg: 83.2 + black: 70.5 + red: 40.5 + green: 33.2 + yellow: 12.6 + blue: 40.4 + magenta: 37.9 + cyan: 29.3 + white: 0 + brightBlack: 47.6 + brightRed: 32.8 + brightGreen: 25 + brightYellow: 0 + brightBlue: 32.3 + brightMagenta: 29.7 + brightCyan: 20.8 + brightWhite: 0 diff --git a/themes/vxcode-lime.yaml b/themes/vxcode-lime.yaml new file mode 100644 index 00000000..89808268 --- /dev/null +++ b/themes/vxcode-lime.yaml @@ -0,0 +1,49 @@ +name: "vxcode lime" +source: + marketplace_id: "evertjunior.vxcode-theme" + version: "0.0.15" + installs: 3237 + author: "Evert Junior" + repo: "https://github.com/evertjr/vxcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" +colors: + bg: "#DDF2E5" + fg: "#333333" + black: "#555555" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#888888" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#EEEEEE" +meta: + mode: "light" + accent: "orange" + hue: 159 + contrast: + fg: 87.9 + black: 75.2 + red: 45.2 + green: 37.9 + yellow: 17.2 + blue: 45.1 + magenta: 42.6 + cyan: 33.9 + white: 0 + brightBlack: 52.3 + brightRed: 37.5 + brightGreen: 29.6 + brightYellow: 8.2 + brightBlue: 37 + brightMagenta: 34.3 + brightCyan: 25.5 + brightWhite: 0 diff --git a/themes/vxcode-oled.yaml b/themes/vxcode-oled.yaml new file mode 100644 index 00000000..22309ef2 --- /dev/null +++ b/themes/vxcode-oled.yaml @@ -0,0 +1,49 @@ +name: "vxcode OLED" +source: + marketplace_id: "evertjunior.vxcode-theme" + version: "0.0.15" + installs: 3237 + author: "Evert Junior" + repo: "https://github.com/evertjr/vxcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" +colors: + bg: "#000000" + fg: "#E3E3E3" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#E3E3E3" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.8 + black: 0 + red: 45.8 + green: 53.3 + yellow: 74.9 + blue: 45.9 + magenta: 48.5 + cyan: 57.4 + white: 89.8 + brightBlack: 23 + brightRed: 53.7 + brightGreen: 61.9 + brightYellow: 84.5 + brightBlue: 54.2 + brightMagenta: 57 + brightCyan: 66.2 + brightWhite: 101.9 diff --git a/themes/w30.yaml b/themes/w30.yaml new file mode 100644 index 00000000..d7794f32 --- /dev/null +++ b/themes/w30.yaml @@ -0,0 +1,49 @@ +name: "W30" +source: + marketplace_id: "heikopanjas.berlin-postal-themes" + version: "2.0.2" + installs: 38 + author: "Heiko Panjas" + repo: "https://github.com/heikopanjas/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=heikopanjas.berlin-postal-themes" +colors: + bg: "#010409" + fg: "#C9D1D9" + black: "#484F58" + red: "#EC8E2C" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FDAC54" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 248 + contrast: + fg: 78 + black: 13.5 + red: 53.7 + green: 52.7 + yellow: 52.7 + blue: 52.7 + magenta: 52.7 + cyan: 61.9 + white: 64.5 + brightBlack: 29.7 + brightRed: 67.3 + brightGreen: 65.2 + brightYellow: 65.2 + brightBlue: 65.2 + brightMagenta: 65.1 + brightCyan: 70.4 + brightWhite: 107.9 diff --git a/themes/w40-theme.yaml b/themes/w40-theme.yaml new file mode 100644 index 00000000..c02fe995 --- /dev/null +++ b/themes/w40-theme.yaml @@ -0,0 +1,49 @@ +name: "w40 Theme" +source: + marketplace_id: "emersonsm.pinkcode-theme" + version: "1.3.4" + installs: 698 + author: "emersonsm" + repo: "https://github.com/emersonsm/pinkcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=emersonsm.pinkcode-theme" +colors: + bg: "#181C24" + fg: "#E5E5E5" + black: "#181C24" + red: "#CD84C8" + green: "#C4BFA2" + yellow: "#DDEC5B" + blue: "#CD84C8" + magenta: "#CD84C8" + cyan: "#E5E5E5" + white: "#E5E5E5" + brightBlack: "#515151" + brightRed: "#E5E5E5" + brightGreen: "#E5E5E5" + brightYellow: "#E9EC5B" + brightBlue: "#CD84C8" + brightMagenta: "#CD84C8" + brightCyan: "#E5E5E5" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 89.5 + black: 0 + red: 47.8 + green: 66 + yellow: 87.8 + blue: 47.8 + magenta: 47.8 + cyan: 89.5 + white: 89.5 + brightBlack: 13 + brightRed: 89.5 + brightGreen: 89.5 + brightYellow: 89.4 + brightBlue: 47.8 + brightMagenta: 47.8 + brightCyan: 89.5 + brightWhite: 89.5 diff --git a/themes/walking-in-the-dark-red.yaml b/themes/walking-in-the-dark-red.yaml new file mode 100644 index 00000000..f8c2a5c4 --- /dev/null +++ b/themes/walking-in-the-dark-red.yaml @@ -0,0 +1,49 @@ +name: "Walking in the dark - RED" +source: + marketplace_id: "mayconfelipe.walking-in-the-dark-red" + version: "3.0.0" + installs: 173 + author: "Maycon Felipe Silva" + repo: "https://github.com/mayconfelipes/VsCodeTheme" + url: "https://marketplace.visualstudio.com/items?itemName=mayconfelipe.walking-in-the-dark-red" +colors: + bg: "#191919" + fg: "#E2E2E2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.9 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/wallbash.yaml b/themes/wallbash.yaml new file mode 100644 index 00000000..d87f092a --- /dev/null +++ b/themes/wallbash.yaml @@ -0,0 +1,49 @@ +name: "wallbash" +source: + marketplace_id: "TheHyDEProject.wallbash" + version: "0.3.7" + installs: 2230 + author: "The HyDE Project" + repo: "https://github.com/HyDE-Project/vscode-wallbash" + url: "https://marketplace.visualstudio.com/items?itemName=TheHyDEProject.wallbash" +colors: + bg: "#2C2525" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#F8F8F0" + green: "#F92672" + yellow: "#E6C39A" + blue: "#F0BEAA" + magenta: "#FFEDCC" + cyan: "#E6C39A" + white: "#141515" + brightBlack: "#8F6757" + brightRed: "#F8F8F0" + brightGreen: "#F92672" + brightYellow: "#E6C39A" + brightBlue: "#F0BEAA" + brightMagenta: "#FFEDCC" + brightCyan: "#E6C39A" + brightWhite: "#7D594B" +meta: + mode: "dark" + accent: "red" + hue: 18 + contrast: + fg: 104.7 + black: 104.7 + red: 99.7 + green: 35.1 + yellow: 70.5 + blue: 70.6 + magenta: 94.1 + cyan: 70.5 + white: 0 + brightBlack: 24.3 + brightRed: 99.7 + brightGreen: 35.1 + brightYellow: 70.5 + brightBlue: 70.6 + brightMagenta: 94.1 + brightCyan: 70.5 + brightWhite: 17.9 diff --git a/themes/walloco-light-theme.yaml b/themes/walloco-light-theme.yaml new file mode 100644 index 00000000..a99d204f --- /dev/null +++ b/themes/walloco-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Walloco Light Theme" +source: + marketplace_id: "StevenWaller.walloco-light-theme" + version: "0.0.1" + installs: 74 + author: "Steven Waller" + repo: "https://github.com/stevenwaller/walloco-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=StevenWaller.walloco-light-theme" +colors: + bg: "#FFFFFF" + fg: "#395063" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 88.9 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/walls-fill.yaml b/themes/walls-fill.yaml new file mode 100644 index 00000000..ae4f4b21 --- /dev/null +++ b/themes/walls-fill.yaml @@ -0,0 +1,49 @@ +name: "walls-fill" +source: + marketplace_id: "mmmint.walls-theme-dark" + version: "1.0.5" + installs: 565 + author: "mmmint" + repo: "https://github.com/mmmintdesign/vscode-walls-theme-dark" + url: "https://marketplace.visualstudio.com/items?itemName=mmmint.walls-theme-dark" +colors: + bg: "#191919" + fg: "#868686" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 36.4 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/wandering-mercenary.yaml b/themes/wandering-mercenary.yaml new file mode 100644 index 00000000..7ed41760 --- /dev/null +++ b/themes/wandering-mercenary.yaml @@ -0,0 +1,49 @@ +name: "Wandering Mercenary" +source: + marketplace_id: "FastExtract.wandering-mercenary" + version: "1.0.2" + installs: 317 + author: "FastExtract" + repo: "https://github.com/RudigerMorinDocter/Wandering-Mercenary" + url: "https://marketplace.visualstudio.com/items?itemName=FastExtract.wandering-mercenary" +colors: + bg: "#1B1A1A" + fg: "#DDE7E5" + black: "#000000" + red: "#D51A19" + green: "#0DBC79" + yellow: "#EED202" + blue: "#006AC7" + magenta: "#BC3FBC" + cyan: "#85DFED" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F74D29" + brightGreen: "#23D18B" + brightYellow: "#F1F148" + brightBlue: "#2BB0EA" + brightMagenta: "#D670D6" + brightCyan: "#C1FFFD" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 89.5 + black: 0 + red: 26.4 + green: 52.6 + yellow: 78 + blue: 24.2 + magenta: 29.4 + cyan: 77.6 + white: 89.7 + brightBlack: 21.7 + brightRed: 39.4 + brightGreen: 63.2 + brightYellow: 92.8 + brightBlue: 52.5 + brightMagenta: 45 + brightCyan: 98.9 + brightWhite: 89.7 diff --git a/themes/wangyj-bright-black.yaml b/themes/wangyj-bright-black.yaml new file mode 100644 index 00000000..8e24e013 --- /dev/null +++ b/themes/wangyj-bright-black.yaml @@ -0,0 +1,49 @@ +name: "Wangyj Bright Black" +source: + marketplace_id: "wangyjhh.nice-vscode-extension" + version: "0.9.1" + installs: 39 + author: "wyj" + repo: "https://github.com/wangyjhh/nice_vscode_extension" + url: "https://marketplace.visualstudio.com/items?itemName=wangyjhh.nice-vscode-extension" +colors: + bg: "#121212" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#3AA675" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#3AA675" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 81.7 + black: 0 + red: 41.2 + green: 44.2 + yellow: 76 + blue: 41.8 + magenta: 44.3 + cyan: 49.7 + white: 81.7 + brightBlack: 30 + brightRed: 41.2 + brightGreen: 44.2 + brightYellow: 76 + brightBlue: 41.8 + brightMagenta: 44.3 + brightCyan: 49.7 + brightWhite: 107.3 diff --git a/themes/wangyj-contrast-black.yaml b/themes/wangyj-contrast-black.yaml new file mode 100644 index 00000000..24d76984 --- /dev/null +++ b/themes/wangyj-contrast-black.yaml @@ -0,0 +1,49 @@ +name: "Wangyj Contrast Black" +source: + marketplace_id: "wangyjhh.nice-vscode-extension" + version: "0.9.1" + installs: 39 + author: "wyj" + repo: "https://github.com/wangyjhh/nice_vscode_extension" + url: "https://marketplace.visualstudio.com/items?itemName=wangyjhh.nice-vscode-extension" +colors: + bg: "#000000" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#3AA675" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#3AA675" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 82.3 + black: 0 + red: 41.8 + green: 44.8 + yellow: 76.6 + blue: 42.4 + magenta: 44.9 + cyan: 50.3 + white: 82.3 + brightBlack: 30.6 + brightRed: 41.8 + brightGreen: 44.8 + brightYellow: 76.6 + brightBlue: 42.4 + brightMagenta: 44.9 + brightCyan: 50.3 + brightWhite: 107.9 diff --git a/themes/wangyj-film-black.yaml b/themes/wangyj-film-black.yaml new file mode 100644 index 00000000..9fd021d0 --- /dev/null +++ b/themes/wangyj-film-black.yaml @@ -0,0 +1,49 @@ +name: "wangyj-film-black" +source: + marketplace_id: "wangyjhh.nice-vscode-extension" + version: "0.9.1" + installs: 39 + author: "wyj" + repo: "https://github.com/wangyjhh/nice_vscode_extension" + url: "https://marketplace.visualstudio.com/items?itemName=wangyjhh.nice-vscode-extension" +colors: + bg: "#0D0F10" + fg: "#D9D1BD" + black: "#6D6D64" + red: "#E68E8E" + green: "#6BD4A2" + yellow: "#E9B873" + blue: "#7FB5E6" + magenta: "#D48FB8" + cyan: "#5AC8DC" + white: "#F5F2E8" + brightBlack: "#6D6D64" + brightRed: "#E68E8E" + brightGreen: "#6BD4A2" + brightYellow: "#E9B873" + brightBlue: "#7FB5E6" + brightMagenta: "#D48FB8" + brightCyan: "#5AC8DC" + brightWhite: "#F5F2E8" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 78.6 + black: 25.4 + red: 53.9 + green: 68.6 + yellow: 68.5 + blue: 59.2 + magenta: 52.8 + cyan: 64.7 + white: 98.9 + brightBlack: 25.4 + brightRed: 53.9 + brightGreen: 68.6 + brightYellow: 68.5 + brightBlue: 59.2 + brightMagenta: 52.8 + brightCyan: 64.7 + brightWhite: 98.9 diff --git a/themes/wangyj-film-light.yaml b/themes/wangyj-film-light.yaml new file mode 100644 index 00000000..4f94eabf --- /dev/null +++ b/themes/wangyj-film-light.yaml @@ -0,0 +1,49 @@ +name: "wangyj-film-light" +source: + marketplace_id: "wangyjhh.nice-vscode-extension" + version: "0.9.1" + installs: 39 + author: "wyj" + repo: "https://github.com/wangyjhh/nice_vscode_extension" + url: "https://marketplace.visualstudio.com/items?itemName=wangyjhh.nice-vscode-extension" +colors: + bg: "#D9D1BD" + fg: "#0D0F10" + black: "#181C1E" + red: "#6D2E2E" + green: "#3E8D6B" + yellow: "#7A4A26" + blue: "#2A5273" + magenta: "#6A2D50" + cyan: "#0F5E6D" + white: "#707070" + brightBlack: "#181C1E" + brightRed: "#6D2E2E" + brightGreen: "#3E8D6B" + brightYellow: "#7A4A26" + brightBlue: "#2A5273" + brightMagenta: "#6A2D50" + brightCyan: "#0F5E6D" + brightWhite: "#707070" +meta: + mode: "light" + accent: "red" + hue: 89 + contrast: + fg: 79 + black: 77.5 + red: 66.4 + green: 40.7 + yellow: 59 + blue: 61.7 + magenta: 66.2 + cyan: 58.8 + white: 47.8 + brightBlack: 77.5 + brightRed: 66.4 + brightGreen: 40.7 + brightYellow: 59 + brightBlue: 61.7 + brightMagenta: 66.2 + brightCyan: 58.8 + brightWhite: 47.8 diff --git a/themes/warlock-contrast.yaml b/themes/warlock-contrast.yaml new file mode 100644 index 00000000..2c3da92b --- /dev/null +++ b/themes/warlock-contrast.yaml @@ -0,0 +1,49 @@ +name: "warlock-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#171123" + fg: "#FFFFFF" + black: "#221934" + red: "#BA0E2E" + green: "#F46036" + yellow: "#5B85AA" + blue: "#5B64A3" + magenta: "#9559C6" + cyan: "#F46036" + white: "#FFFFFF" + brightBlack: "#443268" + brightRed: "#F03E5F" + brightGreen: "#F9AC97" + brightYellow: "#9EB7CD" + brightBlue: "#9CA2C8" + brightMagenta: "#C5A5E0" + brightCyan: "#F9AC97" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 298 + contrast: + fg: 107.1 + black: 0 + red: 20.7 + green: 42.8 + yellow: 34.5 + blue: 23.4 + magenta: 29 + cyan: 42.8 + white: 107.1 + brightBlack: 0 + brightRed: 37 + brightGreen: 67.2 + brightYellow: 60.9 + brightBlue: 52.2 + brightMagenta: 59.6 + brightCyan: 67.2 + brightWhite: 107.1 diff --git a/themes/warlock-light.yaml b/themes/warlock-light.yaml new file mode 100644 index 00000000..af4b3ec4 --- /dev/null +++ b/themes/warlock-light.yaml @@ -0,0 +1,49 @@ +name: "warlock-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#4B4060" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#F46036" + yellow: "#7EB1DD" + blue: "#7C86D6" + magenta: "#B67AE8" + cyan: "#F46036" + white: "#574A6F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F9AC97" + brightYellow: "#CFE2F2" + brightBlue: "#CACEEE" + brightMagenta: "#E6D1F7" + brightCyan: "#F9AC97" + brightWhite: "#7B6A9C" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.1 + black: 0 + red: 80.3 + green: 58.2 + yellow: 44.8 + blue: 61 + magenta: 56.8 + cyan: 58.2 + white: 87.8 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 34.6 + brightYellow: 16.2 + brightBlue: 25.2 + brightMagenta: 20.1 + brightCyan: 34.6 + brightWhite: 73.2 diff --git a/themes/warlock.yaml b/themes/warlock.yaml new file mode 100644 index 00000000..dd9f2230 --- /dev/null +++ b/themes/warlock.yaml @@ -0,0 +1,49 @@ +name: "warlock" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#4B4060" + fg: "#FFFFFF" + black: "#574A6F" + red: "#BA0E2E" + green: "#F46036" + yellow: "#7EB1DD" + blue: "#7C86D6" + magenta: "#B67AE8" + cyan: "#F46036" + white: "#FFFFFF" + brightBlack: "#7B6A9C" + brightRed: "#F03E5F" + brightGreen: "#F9AC97" + brightYellow: "#CFE2F2" + brightBlue: "#CACEEE" + brightMagenta: "#E6D1F7" + brightCyan: "#F9AC97" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 300 + contrast: + fg: 96.3 + black: 0 + red: 9.9 + green: 32 + yellow: 45.7 + blue: 29.1 + magenta: 33.4 + cyan: 32 + white: 96.3 + brightBlack: 16.9 + brightRed: 26.2 + brightGreen: 56.4 + brightYellow: 75.9 + brightBlue: 66.3 + brightMagenta: 71.8 + brightCyan: 56.4 + brightWhite: 96.3 diff --git a/themes/warm-black.yaml b/themes/warm-black.yaml new file mode 100644 index 00000000..8adc2e50 --- /dev/null +++ b/themes/warm-black.yaml @@ -0,0 +1,49 @@ +name: "Warm Black" +source: + marketplace_id: "vaghylevente.warm-black" + version: "0.0.7" + installs: 815 + author: "vaghylevente" + repo: "https://github.com/vaghylevente/warm-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vaghylevente.warm-black" +colors: + bg: "#060606" + fg: "#EBDBB2" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 85.4 + black: 0 + red: 26.2 + green: 43.9 + yellow: 53.5 + blue: 32.6 + magenta: 32.7 + cyan: 42.9 + white: 48.2 + brightBlack: 37.3 + brightRed: 41.1 + brightGreen: 62.1 + brightYellow: 72.8 + brightBlue: 49.6 + brightMagenta: 48.9 + brightCyan: 61.1 + brightWhite: 85.4 diff --git a/themes/warm-burnout-dark.yaml b/themes/warm-burnout-dark.yaml new file mode 100644 index 00000000..42001774 --- /dev/null +++ b/themes/warm-burnout-dark.yaml @@ -0,0 +1,49 @@ +name: "warm-burnout-dark" +source: + marketplace_id: "felip3fdl.warm-burnout" + version: "0.1.6" + installs: 14 + author: "Felipe F Lima" + repo: "https://github.com/felipefdl/warm-burnout" + url: "https://marketplace.visualstudio.com/items?itemName=felip3fdl.warm-burnout" +colors: + bg: "#1A1510" + fg: "#BFBDB6" + black: "#23211B" + red: "#F06B73" + green: "#70BF56" + yellow: "#FDB04C" + blue: "#4FBFFF" + magenta: "#D0A1FF" + cyan: "#93E2C8" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 67 + contrast: + fg: 65.9 + black: 0 + red: 45.2 + green: 56.8 + yellow: 67.7 + blue: 61.7 + magenta: 61.5 + cyan: 78.8 + white: 71.8 + brightBlack: 23 + brightRed: 46.7 + brightGreen: 73.4 + brightYellow: 69.7 + brightBlue: 63.4 + brightMagenta: 63.5 + brightCyan: 81 + brightWhite: 107 diff --git a/themes/warm-burnout-light.yaml b/themes/warm-burnout-light.yaml new file mode 100644 index 00000000..252cb19d --- /dev/null +++ b/themes/warm-burnout-light.yaml @@ -0,0 +1,49 @@ +name: "warm-burnout-light" +source: + marketplace_id: "felip3fdl.warm-burnout" + version: "0.1.6" + installs: 14 + author: "Felipe F Lima" + repo: "https://github.com/felipefdl/warm-burnout" + url: "https://marketplace.visualstudio.com/items?itemName=felip3fdl.warm-burnout" +colors: + bg: "#F5EDE0" + fg: "#3A3630" + black: "#3A3630" + red: "#B82820" + green: "#2D6A14" + yellow: "#8A6000" + blue: "#2060A0" + magenta: "#8A3090" + cyan: "#146858" + white: "#C0B8AA" + brightBlack: "#686868" + brightRed: "#B82820" + brightGreen: "#3A7A20" + brightYellow: "#9A7008" + brightBlue: "#2870B0" + brightMagenta: "#9A38A0" + brightCyan: "#208870" + brightWhite: "#FAF6F0" +meta: + mode: "light" + accent: "orange" + hue: 80 + contrast: + fg: 87.3 + black: 87.3 + red: 69.4 + green: 72.1 + yellow: 67.5 + blue: 71.6 + magenta: 74.1 + cyan: 72.4 + white: 27.7 + brightBlack: 67.7 + brightRed: 69.4 + brightGreen: 65.7 + brightYellow: 60.6 + brightBlue: 65.3 + brightMagenta: 69.4 + brightCyan: 59.6 + brightWhite: 0 diff --git a/themes/warm-orange-enthusiasm-creativity.yaml b/themes/warm-orange-enthusiasm-creativity.yaml new file mode 100644 index 00000000..722f3aa7 --- /dev/null +++ b/themes/warm-orange-enthusiasm-creativity.yaml @@ -0,0 +1,49 @@ +name: "Warm Orange - Enthusiasm & Creativity" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#1A0F05" + fg: "#FFF3E0" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 65 + contrast: + fg: 100.3 + black: 0 + red: 38.2 + green: 48 + yellow: 92.8 + blue: 43.5 + magenta: 33.1 + cyan: 56.9 + white: 96.5 + brightBlack: 9.5 + brightRed: 43.3 + brightGreen: 82.5 + brightYellow: 102.1 + brightBlue: 41 + brightMagenta: 41.9 + brightCyan: 91.7 + brightWhite: 107.3 diff --git a/themes/warm-orange-theme.yaml b/themes/warm-orange-theme.yaml new file mode 100644 index 00000000..5ad70201 --- /dev/null +++ b/themes/warm-orange-theme.yaml @@ -0,0 +1,49 @@ +name: "Warm Orange Theme" +source: + marketplace_id: "JerryJ.trae-warm-orange-theme" + version: "1.0.5" + installs: 29 + author: "JerryJ" + repo: "https://github.com/xyjie37/WarmOrange" + url: "https://marketplace.visualstudio.com/items?itemName=JerryJ.trae-warm-orange-theme" +colors: + bg: "#FAF8F3" + fg: "#5C4A3A" + black: "#4A3A2A" + red: "#D32F2F" + green: "#7C3AED" + yellow: "#C94C00" + blue: "#BE185D" + magenta: "#16A34A" + cyan: "#0891B2" + white: "#E8E0D5" + brightBlack: "#5C4A3A" + brightRed: "#EF4444" + brightGreen: "#8B5CF6" + brightYellow: "#C94C00" + brightBlue: "#BE185D" + brightMagenta: "#22C55E" + brightCyan: "#06B6D4" + brightWhite: "#F5F1E8" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 84.8 + black: 91 + red: 68.7 + green: 73.3 + yellow: 67.1 + blue: 74.1 + magenta: 55.6 + cyan: 59.7 + white: 11.1 + brightBlack: 84.8 + brightRed: 59.7 + brightGreen: 64.6 + brightYellow: 67.1 + brightBlue: 74.1 + brightMagenta: 40.2 + brightCyan: 43 + brightWhite: 0 diff --git a/themes/warmkai-pro.yaml b/themes/warmkai-pro.yaml new file mode 100644 index 00000000..51ec52c9 --- /dev/null +++ b/themes/warmkai-pro.yaml @@ -0,0 +1,49 @@ +name: "Warmkai Pro" +source: + marketplace_id: "ViciandoCodigo.warmkai" + version: "1.4.0" + installs: 279 + author: "Viciando Codigo" + repo: "https://github.com/Torr1co/warmkai" + url: "https://marketplace.visualstudio.com/items?itemName=ViciandoCodigo.warmkai" +colors: + bg: "#F7F0DD" + fg: "#000000" + black: "#FDF9F3" + red: "#E1221F" + green: "#00A31E" + yellow: "#BF4F10" + blue: "#B78900" + magenta: "#6529B8" + cyan: "#2679D1" + white: "#000000" + brightBlack: "#8D8D8D" + brightRed: "#E1221F" + brightGreen: "#00A31E" + brightYellow: "#BF4F10" + brightBlue: "#B78900" + brightMagenta: "#6529B8" + brightCyan: "#2679D1" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.3 + black: 0 + red: 61.9 + green: 51.4 + yellow: 63.9 + blue: 50 + magenta: 78.5 + cyan: 61.5 + white: 97.3 + brightBlack: 51.8 + brightRed: 61.9 + brightGreen: 51.4 + brightYellow: 63.9 + brightBlue: 50 + brightMagenta: 78.5 + brightCyan: 61.5 + brightWhite: 97.3 diff --git a/themes/waste-contrast.yaml b/themes/waste-contrast.yaml new file mode 100644 index 00000000..3e7cf65e --- /dev/null +++ b/themes/waste-contrast.yaml @@ -0,0 +1,49 @@ +name: "waste-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#081011" + fg: "#B1C7CC" + black: "#102022" + red: "#BA0E2E" + green: "#43BDB2" + yellow: "#BBD4BE" + blue: "#F9D6BC" + magenta: "#F7A8A5" + cyan: "#43BDB2" + white: "#C0D2D6" + brightBlack: "#295156" + brightRed: "#F03E5F" + brightGreen: "#8ED7D1" + brightYellow: "#F9FCFA" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#8ED7D1" + brightWhite: "#EFF3F4" +meta: + mode: "dark" + accent: "orange" + hue: 206 + contrast: + fg: 70 + black: 0 + red: 21.1 + green: 56.9 + yellow: 76.2 + blue: 85.3 + magenta: 66.3 + cyan: 56.9 + white: 76.9 + brightBlack: 12.1 + brightRed: 37.4 + brightGreen: 74.1 + brightYellow: 105 + brightBlue: 107.5 + brightMagenta: 107.5 + brightCyan: 74.1 + brightWhite: 99.1 diff --git a/themes/waste-light.yaml b/themes/waste-light.yaml new file mode 100644 index 00000000..56024892 --- /dev/null +++ b/themes/waste-light.yaml @@ -0,0 +1,49 @@ +name: "waste-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#43BDB2" + yellow: "#95AD97" + blue: "#D3B298" + magenta: "#F7A8A5" + cyan: "#43BDB2" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#8ED7D1" + brightYellow: "#CED9CF" + brightBlue: "#F2E7DF" + brightMagenta: "#FFFFFF" + brightCyan: "#8ED7D1" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 44.9 + yellow: 47.5 + blue: 38.3 + magenta: 35.8 + cyan: 44.9 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 28.4 + brightYellow: 21.6 + brightBlue: 10.6 + brightMagenta: 0 + brightCyan: 28.4 + brightWhite: 71.1 diff --git a/themes/waste.yaml b/themes/waste.yaml new file mode 100644 index 00000000..49f2c3ed --- /dev/null +++ b/themes/waste.yaml @@ -0,0 +1,49 @@ +name: "waste" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#1B353A" + fg: "#B1C7CC" + black: "#23454B" + red: "#BA0E2E" + green: "#43BDB2" + yellow: "#BBD4BE" + blue: "#F9D6BC" + magenta: "#F7A8A5" + cyan: "#43BDB2" + white: "#C0D2D6" + brightBlack: "#3B7580" + brightRed: "#F03E5F" + brightGreen: "#8ED7D1" + brightYellow: "#F9FCFA" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#8ED7D1" + brightWhite: "#EFF3F4" +meta: + mode: "dark" + accent: "orange" + hue: 211 + contrast: + fg: 64.9 + black: 0 + red: 16 + green: 51.8 + yellow: 71.1 + blue: 80.2 + magenta: 61.2 + cyan: 51.8 + white: 71.8 + brightBlack: 20.7 + brightRed: 32.3 + brightGreen: 69 + brightYellow: 99.9 + brightBlue: 102.4 + brightMagenta: 102.4 + brightCyan: 69 + brightWhite: 94 diff --git a/themes/water-grape.yaml b/themes/water-grape.yaml new file mode 100644 index 00000000..045f1519 --- /dev/null +++ b/themes/water-grape.yaml @@ -0,0 +1,49 @@ +name: "Water Grape" +source: + marketplace_id: "qfilip.watergrape-theme" + version: "0.0.2" + installs: 5217 + author: "qfilip" + repo: "https://github.com/qfilip/watergrape-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=qfilip.watergrape-theme" +colors: + bg: "#222222" + fg: "#E3E2E0" + black: "#2F2F2F" + red: "#CF433E" + green: "#C3CB4C" + yellow: "#F7C53C" + blue: "#00BBAA" + magenta: "#F03E5F" + cyan: "#00BBAA" + white: "#EFEFED" + brightBlack: "#555555" + brightRed: "#F03E5F" + brightGreen: "#F4FF60" + brightYellow: "#F7C53C" + brightBlue: "#1EFFEC" + brightMagenta: "#EC5773" + brightCyan: "#00BBAA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.8 + black: 0 + red: 28.1 + green: 68.3 + yellow: 73.2 + blue: 52.7 + magenta: 35.4 + cyan: 52.7 + white: 94.9 + brightBlack: 13.7 + brightRed: 35.4 + brightGreen: 99.2 + brightYellow: 73.2 + brightBlue: 88.9 + brightMagenta: 38.7 + brightCyan: 52.7 + brightWhite: 105.5 diff --git a/themes/waterbyte-classic-2022-light.yaml b/themes/waterbyte-classic-2022-light.yaml new file mode 100644 index 00000000..2e4c9532 --- /dev/null +++ b/themes/waterbyte-classic-2022-light.yaml @@ -0,0 +1,49 @@ +name: "Waterbyte - Classic 2022 Light" +source: + marketplace_id: "ungarmichael.wbyt-theme" + version: "0.2.3" + installs: 239 + author: "Michael Ungar" + repo: "https://github.com/ungarmichael/wbyt-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ungarmichael.wbyt-theme" +colors: + bg: "#FFFFFF" + fg: "#022EC6" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 90.4 + black: 106 + red: 67.7 + green: 44.9 + yellow: 31.7 + blue: 66.3 + magenta: 72.6 + cyan: 51.8 + white: 0 + brightBlack: 50.6 + brightRed: 67.7 + brightGreen: 44.9 + brightYellow: 31.7 + brightBlue: 66.3 + brightMagenta: 72.6 + brightCyan: 51.8 + brightWhite: 0 diff --git a/themes/watermelon.yaml b/themes/watermelon.yaml new file mode 100644 index 00000000..7fc11c0c --- /dev/null +++ b/themes/watermelon.yaml @@ -0,0 +1,49 @@ +name: "Watermelon" +source: + marketplace_id: "mlkywy.watermelon-theme" + version: "0.3.0" + installs: 2753 + author: "mlkywy" + repo: "https://github.com/alshei/vscode-watermelon" + url: "https://marketplace.visualstudio.com/items?itemName=mlkywy.watermelon-theme" +colors: + bg: "#151317" + fg: "#E0E0E0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.2 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.9 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/wavefire.yaml b/themes/wavefire.yaml new file mode 100644 index 00000000..32ba6e0a --- /dev/null +++ b/themes/wavefire.yaml @@ -0,0 +1,49 @@ +name: "WaveFire" +source: + marketplace_id: "Krecharles.wavefire" + version: "1.0.1" + installs: 372 + author: "Charles Kremer" + repo: "https://github.com/Krecharles/wavefire" + url: "https://marketplace.visualstudio.com/items?itemName=Krecharles.wavefire" +colors: + bg: "#1F1F23" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 58.4 + black: 7.8 + red: 35.7 + green: 59.3 + yellow: 47.6 + blue: 48.6 + magenta: 38 + cyan: 51.5 + white: 82 + brightBlack: 14.4 + brightRed: 45.1 + brightGreen: 75.8 + brightYellow: 60.2 + brightBlue: 62.7 + brightMagenta: 49.2 + brightCyan: 66.8 + brightWhite: 89.6 diff --git a/themes/waves.yaml b/themes/waves.yaml new file mode 100644 index 00000000..6b833082 --- /dev/null +++ b/themes/waves.yaml @@ -0,0 +1,49 @@ +name: "Waves" +source: + marketplace_id: "xlqrrw.ultrafocus-dark" + version: "0.0.1" + installs: 737 + author: "xlqrrw" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xlqrrw.ultrafocus-dark" +colors: + bg: "#000000" + fg: "#B2B2B2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#6F6F6F" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 60.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 27 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/wdark-theme.yaml b/themes/wdark-theme.yaml new file mode 100644 index 00000000..5b3f4fb3 --- /dev/null +++ b/themes/wdark-theme.yaml @@ -0,0 +1,49 @@ +name: "wDark Theme" +source: + marketplace_id: "wykys.wdark" + version: "0.0.3" + installs: 439 + author: "wykys" + repo: "https://gitlab.com/wykys/vscode-theme-wdark" + url: "https://marketplace.visualstudio.com/items?itemName=wykys.wdark" +colors: + bg: "#000000" + fg: "#AAAAAA" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 56.2 + black: 9.9 + red: 37.7 + green: 61.4 + yellow: 49.6 + blue: 50.7 + magenta: 40.1 + cyan: 53.5 + white: 84 + brightBlack: 16.5 + brightRed: 47.1 + brightGreen: 77.8 + brightYellow: 62.2 + brightBlue: 64.7 + brightMagenta: 51.3 + brightCyan: 68.8 + brightWhite: 91.7 diff --git a/themes/webc-dark.yaml b/themes/webc-dark.yaml new file mode 100644 index 00000000..d4202305 --- /dev/null +++ b/themes/webc-dark.yaml @@ -0,0 +1,49 @@ +name: "webc-dark" +source: + marketplace_id: "dwkns.webc" + version: "0.0.11" + installs: 1162 + author: "dwkns" + repo: "https://github.com/dwkns/vscode-webc" + url: "https://marketplace.visualstudio.com/items?itemName=dwkns.webc" +colors: + bg: "#171819" + fg: "#DEECEC" + black: "#000000" + red: "#FF5370" + green: "#81B336" + yellow: "#E6D53F" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 92.5 + black: 0 + red: 43.5 + green: 52.1 + yellow: 78.6 + blue: 55.8 + magenta: 53.7 + cyan: 78.2 + white: 106.8 + brightBlack: 10.9 + brightRed: 43.5 + brightGreen: 84.1 + brightYellow: 78.8 + brightBlue: 55.8 + brightMagenta: 53.7 + brightCyan: 78.2 + brightWhite: 106.8 diff --git a/themes/webstorm-darcula-dark-theme.yaml b/themes/webstorm-darcula-dark-theme.yaml new file mode 100644 index 00000000..812cd13c --- /dev/null +++ b/themes/webstorm-darcula-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Webstorm Darcula Dark Theme" +source: + marketplace_id: "AleksandrZorin.webstorm-darcula-dark-theme" + version: "1.0.1" + installs: 1932 + author: "Alexander Zorin" + repo: "https://github.com/zzzoryn/webstorm-darkula-dark-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AleksandrZorin.webstorm-darcula-dark-theme" +colors: + bg: "#232425" + fg: "#A9B7C6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 59.8 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.7 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/webstorm-intellij-darcula-theme.yaml b/themes/webstorm-intellij-darcula-theme.yaml new file mode 100644 index 00000000..a6c2d640 --- /dev/null +++ b/themes/webstorm-intellij-darcula-theme.yaml @@ -0,0 +1,49 @@ +name: "Webstorm IntelliJ Darcula Theme" +source: + marketplace_id: "xr0master.webstorm-intellij-darcula-theme" + version: "1.1.1" + installs: 131586 + author: "Sergey Khomushin" + repo: "https://github.com/xr0master/vscode-intellij-darcula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xr0master.webstorm-intellij-darcula-theme" +colors: + bg: "#2B2B2B" + fg: "#A9B7C6" + black: "#FFFFFF" + red: "#FF6B68" + green: "#A8C023" + yellow: "#D6BF55" + blue: "#5394EC" + magenta: "#AE8ABE" + cyan: "#299999" + white: "#1F1F1F" + brightBlack: "#FFFFFF" + brightRed: "#FF8785" + brightGreen: "#A8C023" + brightYellow: "#FFFF00" + brightBlue: "#7EAEF1" + brightMagenta: "#FF99FF" + brightCyan: "#6CDADA" + brightWhite: "#1F1F1F" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 58.5 + black: 103.8 + red: 45 + green: 58.4 + yellow: 64.2 + blue: 40.3 + magenta: 42.1 + cyan: 36.1 + white: 0 + brightBlack: 103.8 + brightRed: 52.7 + brightGreen: 58.4 + brightYellow: 98.7 + brightBlue: 53.2 + brightMagenta: 63.5 + brightCyan: 70.1 + brightWhite: 0 diff --git a/themes/webstorm-monokai.yaml b/themes/webstorm-monokai.yaml new file mode 100644 index 00000000..92cb84fb --- /dev/null +++ b/themes/webstorm-monokai.yaml @@ -0,0 +1,49 @@ +name: "WebStorm Monokai" +source: + marketplace_id: "ctwhome.webstorm-monokai" + version: "0.1.1" + installs: 4092 + author: "ctwhome" + repo: "https://github.com/ctwhome/webstorm-monokai-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ctwhome.webstorm-monokai" +colors: + bg: "#1E2017" + fg: "#A9B7C6" + black: "#FFFFFF" + red: "#FF6B68" + green: "#A8C023" + yellow: "#D6BF55" + blue: "#5394EC" + magenta: "#AE8ABE" + cyan: "#299999" + white: "#1F1F1F" + brightBlack: "#FFFFFF" + brightRed: "#FF8785" + brightGreen: "#A8C023" + brightYellow: "#FFFF00" + brightBlue: "#7EAEF1" + brightMagenta: "#FF99FF" + brightCyan: "#6CDADA" + brightWhite: "#1F1F1F" +meta: + mode: "dark" + accent: "green" + hue: 118 + contrast: + fg: 60.5 + black: 105.9 + red: 47.1 + green: 60.5 + yellow: 66.3 + blue: 42.3 + magenta: 44.2 + cyan: 38.2 + white: 0 + brightBlack: 105.9 + brightRed: 54.8 + brightGreen: 60.5 + brightYellow: 100.7 + brightBlue: 55.3 + brightMagenta: 65.6 + brightCyan: 72.1 + brightWhite: 0 diff --git a/themes/weiting-candycolor.yaml b/themes/weiting-candycolor.yaml new file mode 100644 index 00000000..89c4e83e --- /dev/null +++ b/themes/weiting-candycolor.yaml @@ -0,0 +1,49 @@ +name: "weiting_candycolor" +source: + marketplace_id: "Weiting.weiting-s-color" + version: "0.0.1" + installs: 36 + author: "Weiting Huang" + repo: "https://github.com/weiting53/weiting-s-color" + url: "https://marketplace.visualstudio.com/items?itemName=Weiting.weiting-s-color" +colors: + bg: "#430000" + fg: "#E5D4FF" + black: "#DBFFC2" + red: "#FFAFAF" + green: "#8CFFD3" + yellow: "#FFFFBD" + blue: "#B3D7FF" + magenta: "#FFE0FF" + cyan: "#8CE8FF" + white: "#E5E5E5" + brightBlack: "#E8E7B4" + brightRed: "#FF9191" + brightGreen: "#38FFAF" + brightYellow: "#FFFF55" + brightBlue: "#B8DAFF" + brightMagenta: "#FF89FF" + brightCyan: "#5EDFFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 29 + contrast: + fg: 82.3 + black: 98.1 + red: 68.3 + green: 91.4 + yellow: 102.6 + blue: 77.6 + magenta: 91.2 + cyan: 82.1 + white: 88.4 + brightBlack: 87.8 + brightRed: 57.4 + brightGreen: 86.7 + brightYellow: 100.5 + brightBlue: 79.4 + brightMagenta: 60.4 + brightCyan: 75.2 + brightWhite: 88.4 diff --git a/themes/west-bengal-cultural-hub.yaml b/themes/west-bengal-cultural-hub.yaml new file mode 100644 index 00000000..73594b5f --- /dev/null +++ b/themes/west-bengal-cultural-hub.yaml @@ -0,0 +1,49 @@ +name: "West Bengal - Cultural Hub" +source: + marketplace_id: "ProudIndian.colors-of-india-themes" + version: "1.0.1" + installs: 37 + author: "Sachin Ghadi" + repo: "https://github.com/GhadiSachin/colors-of-india-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" +colors: + bg: "#1A1416" + fg: "#F8E8E0" + black: "#000000" + red: "#E74856" + green: "#FFFFFF" + yellow: "#FFD700" + blue: "#3B8EEA" + magenta: "#B140AA" + cyan: "#29B8DB" + white: "#E5E5E5" + brightBlack: "#000000" + brightRed: "#E74856" + brightGreen: "#FFFFFF" + brightYellow: "#FFD700" + brightBlue: "#3B8EEA" + brightMagenta: "#B140AA" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 356 + contrast: + fg: 93.9 + black: 0 + red: 36 + green: 107 + yellow: 83.4 + blue: 40.1 + magenta: 27 + cyan: 55.5 + white: 90.1 + brightBlack: 0 + brightRed: 36 + brightGreen: 107 + brightYellow: 83.4 + brightBlue: 40.1 + brightMagenta: 27 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/what-the-hell.yaml b/themes/what-the-hell.yaml new file mode 100644 index 00000000..b40e3f6b --- /dev/null +++ b/themes/what-the-hell.yaml @@ -0,0 +1,49 @@ +name: "What The Hell" +source: + marketplace_id: "Barkerbg001.whatthehell-vscode" + version: "1.0.7" + installs: 282 + author: "Barkerbg001" + repo: "https://github.com/barkerbg001/whatthehell-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Barkerbg001.whatthehell-vscode" +colors: + bg: "#80FF00" + fg: "#FF00FF" + black: "#FF0080" + red: "#FF0000" + green: "#FF0080" + yellow: "#00FFFF" + blue: "#8000FF" + magenta: "#8000FF" + cyan: "#00FFFF" + white: "#00FF00" + brightBlack: "#FF8000" + brightRed: "#FF0000" + brightGreen: "#0000FF" + brightYellow: "#FF8000" + brightBlue: "#00FF00" + brightMagenta: "#00FF80" + brightCyan: "#FF00FF" + brightWhite: "#FF00FF" +meta: + mode: "light" + accent: "pink" + hue: 136 + contrast: + fg: 39 + black: 45.9 + red: 47.6 + green: 45.9 + yellow: 0 + blue: 61.9 + magenta: 61.9 + cyan: 0 + white: 0 + brightBlack: 32.2 + brightRed: 47.6 + brightGreen: 69.3 + brightYellow: 32.2 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 39 + brightWhite: 39 diff --git a/themes/wheel-color-theme.yaml b/themes/wheel-color-theme.yaml new file mode 100644 index 00000000..0395ce05 --- /dev/null +++ b/themes/wheel-color-theme.yaml @@ -0,0 +1,49 @@ +name: "wheel-color-theme" +source: + marketplace_id: "escape-technology-llc.the-color-wheel" + version: "0.7.2" + installs: 2425 + author: "eScape Technology LLC" + repo: "https://escape-technology-llc.visualstudio.com/Color%20Wheel/_git/Color%20Wheel" + url: "https://marketplace.visualstudio.com/items?itemName=escape-technology-llc.the-color-wheel" +colors: + bg: "#092418" + fg: "#F3CEDE" + black: "#404040" + red: "#6F0B0B" + green: "#0B6F0B" + yellow: "#6F6F0B" + blue: "#0B0B6F" + magenta: "#6F0B6F" + cyan: "#0B6F6F" + white: "#B0B0B0" + brightBlack: "#787878" + brightRed: "#DE6F6F" + brightGreen: "#6FDE6F" + brightYellow: "#DEDE6F" + brightBlue: "#6F6FDE" + brightMagenta: "#DE6FDE" + brightCyan: "#6FDEDE" + brightWhite: "#DEDEDE" +meta: + mode: "dark" + accent: "pink" + hue: 162 + contrast: + fg: 80.7 + black: 0 + red: 0 + green: 18.7 + yellow: 23.3 + blue: 0 + magenta: 0 + cyan: 20.3 + white: 57.4 + brightBlack: 28.9 + brightRed: 41.2 + brightGreen: 70.6 + brightYellow: 81.1 + brightBlue: 30.8 + brightMagenta: 46 + brightCyan: 74.3 + brightWhite: 84.5 diff --git a/themes/wheel-light-color-theme.yaml b/themes/wheel-light-color-theme.yaml new file mode 100644 index 00000000..c1abbfcb --- /dev/null +++ b/themes/wheel-light-color-theme.yaml @@ -0,0 +1,49 @@ +name: "wheel-light-color-theme" +source: + marketplace_id: "escape-technology-llc.the-color-wheel" + version: "0.7.2" + installs: 2425 + author: "eScape Technology LLC" + repo: "https://escape-technology-llc.visualstudio.com/Color%20Wheel/_git/Color%20Wheel" + url: "https://marketplace.visualstudio.com/items?itemName=escape-technology-llc.the-color-wheel" +colors: + bg: "#DBF6E0" + fg: "#EEEEEE" + black: "#404040" + red: "#6F0B0B" + green: "#0B6F0B" + yellow: "#6F6F0B" + blue: "#0B0B6F" + magenta: "#6F0B6F" + cyan: "#0B6F6F" + white: "#838383" + brightBlack: "#808080" + brightRed: "#DE6F6F" + brightGreen: "#6FDE6F" + brightYellow: "#DEDE6F" + brightBlue: "#6F6FDE" + brightMagenta: "#DE6FDE" + brightCyan: "#6FDEDE" + brightWhite: "#A3A3A3" +meta: + mode: "light" + accent: "pink" + hue: 151 + contrast: + fg: 0 + black: 84.6 + red: 86.6 + green: 71.6 + yellow: 66.8 + blue: 92.6 + magenta: 83.9 + cyan: 69.9 + white: 56 + brightBlack: 57.4 + brightRed: 49 + brightGreen: 20.6 + brightYellow: 10.7 + brightBlue: 59.2 + brightMagenta: 44.3 + brightCyan: 17.2 + brightWhite: 40 diff --git a/themes/whiskey-coder-dark.yaml b/themes/whiskey-coder-dark.yaml new file mode 100644 index 00000000..9ad3223c --- /dev/null +++ b/themes/whiskey-coder-dark.yaml @@ -0,0 +1,49 @@ +name: "Whiskey Coder Dark" +source: + marketplace_id: "SubhamBera.whiskey-coder-dark" + version: "2.1.0" + installs: 37 + author: "Subham Bera" + repo: "https://github.com/subhambera/Whiskey-Coder-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=SubhamBera.whiskey-coder-dark" +colors: + bg: "#1A0F0A" + fg: "#E6D4B7" + black: "#1A0F0A" + red: "#CD5C5C" + green: "#9ACD32" + yellow: "#DAA520" + blue: "#4682B4" + magenta: "#DA70D6" + cyan: "#20B2AA" + white: "#E6D4B7" + brightBlack: "#1A0F0A" + brightRed: "#CD5C5C" + brightGreen: "#9ACD32" + brightYellow: "#DAA520" + brightBlue: "#4682B4" + brightMagenta: "#DA70D6" + brightCyan: "#20B2AA" + brightWhite: "#E6D4B7" +meta: + mode: "dark" + accent: "green" + hue: 45 + contrast: + fg: 81.2 + black: 0 + red: 34.6 + green: 66.4 + yellow: 57.7 + blue: 33.1 + magenta: 46.5 + cyan: 50.7 + white: 81.2 + brightBlack: 0 + brightRed: 34.6 + brightGreen: 66.4 + brightYellow: 57.7 + brightBlue: 33.1 + brightMagenta: 46.5 + brightCyan: 50.7 + brightWhite: 81.2 diff --git a/themes/whiskey-coder-light.yaml b/themes/whiskey-coder-light.yaml new file mode 100644 index 00000000..2cfcc284 --- /dev/null +++ b/themes/whiskey-coder-light.yaml @@ -0,0 +1,49 @@ +name: "Whiskey Coder Light" +source: + marketplace_id: "SubhamBera.whiskey-coder-dark" + version: "2.1.0" + installs: 37 + author: "Subham Bera" + repo: "https://github.com/subhambera/Whiskey-Coder-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=SubhamBera.whiskey-coder-dark" +colors: + bg: "#FDFBF7" + fg: "#4A2C20" + black: "#2E1A0E" + red: "#C62828" + green: "#2E7D32" + yellow: "#F57C00" + blue: "#1565C0" + magenta: "#6A1B9A" + cyan: "#00838F" + white: "#4A2C20" + brightBlack: "#6D4C2E" + brightRed: "#D32F2F" + brightGreen: "#388E3C" + brightYellow: "#FFA000" + brightBlue: "#1976D2" + brightMagenta: "#7B1FA2" + brightCyan: "#0097A7" + brightWhite: "#8D6E55" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 96.1 + black: 101.1 + red: 74.1 + green: 72.7 + yellow: 49.4 + blue: 75.8 + magenta: 88.2 + cyan: 68.5 + white: 96.1 + brightBlack: 84.4 + brightRed: 70.5 + brightGreen: 65.6 + brightYellow: 37 + brightBlue: 69.1 + brightMagenta: 84.8 + brightCyan: 59.7 + brightWhite: 70.1 diff --git a/themes/white-blue-demo.yaml b/themes/white-blue-demo.yaml new file mode 100644 index 00000000..e15bae1a --- /dev/null +++ b/themes/white-blue-demo.yaml @@ -0,0 +1,49 @@ +name: "white-blue-demo" +source: + marketplace_id: "white-blue-demo.white-blue-demo" + version: "1.0.0" + installs: 180 + author: "white-blue-demo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=white-blue-demo.white-blue-demo" +colors: + bg: "#EDEFF1" + fg: "#1D344F" + black: "#000000" + red: "#C98093" + green: "#7CA198" + yellow: "#C48D52" + blue: "#6080B0" + magenta: "#916A9D" + cyan: "#6CA8CF" + white: "#555555" + brightBlack: "#666666" + brightRed: "#C98093" + brightGreen: "#7CA198" + brightYellow: "#C48D52" + brightBlue: "#6080B0" + brightMagenta: "#916A9D" + brightCyan: "#6CA8CF" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 88.9 + black: 96.4 + red: 46.9 + green: 44.7 + yellow: 45.3 + blue: 57.8 + magenta: 60.9 + cyan: 40.7 + white: 76.3 + brightBlack: 69.1 + brightRed: 46.9 + brightGreen: 44.7 + brightYellow: 45.3 + brightBlue: 57.8 + brightMagenta: 60.9 + brightCyan: 40.7 + brightWhite: 38.8 diff --git a/themes/white-color-theme.yaml b/themes/white-color-theme.yaml new file mode 100644 index 00000000..89746879 --- /dev/null +++ b/themes/white-color-theme.yaml @@ -0,0 +1,49 @@ +name: "White-color-theme" +source: + marketplace_id: "arthurwhite.white" + version: "1.3.6" + installs: 100961 + author: "Arthur White" + repo: "https://github.com/arthurwhite/white-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=arthurwhite.white" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#FF0032" + green: "#00FF68" + yellow: "#FFCA00" + blue: "#004BFF" + magenta: "#7D46FC" + cyan: "#00D2FF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0032" + brightGreen: "#00FF68" + brightYellow: "#FFCA00" + brightBlue: "#004BFF" + brightMagenta: "#7D46FC" + brightCyan: "#00D2FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 106 + black: 106 + red: 63.9 + green: 16.5 + yellow: 24.4 + blue: 78.9 + magenta: 74 + cyan: 32.7 + white: 0 + brightBlack: 106 + brightRed: 63.9 + brightGreen: 16.5 + brightYellow: 24.4 + brightBlue: 78.9 + brightMagenta: 74 + brightCyan: 32.7 + brightWhite: 0 diff --git a/themes/white-night-color-theme.yaml b/themes/white-night-color-theme.yaml new file mode 100644 index 00000000..3362837b --- /dev/null +++ b/themes/white-night-color-theme.yaml @@ -0,0 +1,49 @@ +name: "White-Night-color-theme" +source: + marketplace_id: "arthurwhite.white" + version: "1.3.6" + installs: 100961 + author: "Arthur White" + repo: "https://github.com/arthurwhite/white-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=arthurwhite.white" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#FF0032" + green: "#00FF68" + yellow: "#FFCA00" + blue: "#004BFF" + magenta: "#7D46FC" + cyan: "#00D2FF" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#FF0032" + brightGreen: "#00FF68" + brightYellow: "#FFCA00" + brightBlue: "#004BFF" + brightMagenta: "#7D46FC" + brightCyan: "#00D2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 107.9 + black: 107.9 + red: 37.7 + green: 87.2 + yellow: 78.8 + blue: 22.9 + magenta: 27.7 + cyan: 70 + white: 107.9 + brightBlack: 107.9 + brightRed: 37.7 + brightGreen: 87.2 + brightYellow: 78.8 + brightBlue: 22.9 + brightMagenta: 27.7 + brightCyan: 70 + brightWhite: 107.9 diff --git a/themes/white-shade-color.yaml b/themes/white-shade-color.yaml new file mode 100644 index 00000000..78c91bf3 --- /dev/null +++ b/themes/white-shade-color.yaml @@ -0,0 +1,49 @@ +name: "White Shade Color" +source: + marketplace_id: "silas0827.white-shade" + version: "0.1.0" + installs: 1439 + author: "Silas Chen" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=silas0827.white-shade" +colors: + bg: "#FFFFFF" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 41.8 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/white-winter.yaml b/themes/white-winter.yaml new file mode 100644 index 00000000..58d87251 --- /dev/null +++ b/themes/white-winter.yaml @@ -0,0 +1,49 @@ +name: "White Winter" +source: + marketplace_id: "jker.white-winter" + version: "1.0.1" + installs: 12430 + author: "jker" + repo: "https://github.com/guidolee/jker-white-winter" + url: "https://marketplace.visualstudio.com/items?itemName=jker.white-winter" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#7F7F7F" + red: "#E15A60" + green: "#99C794" + yellow: "#FFE2A9" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#7F7F7F" + brightRed: "#E15A60" + brightGreen: "#99C794" + brightYellow: "#FFE2A9" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 106 + black: 67.4 + red: 62.8 + green: 36.6 + yellow: 12.7 + blue: 56.6 + magenta: 48.9 + cyan: 48 + white: 22.8 + brightBlack: 67.4 + brightRed: 62.8 + brightGreen: 36.6 + brightYellow: 12.7 + brightBlue: 56.6 + brightMagenta: 48.9 + brightCyan: 48 + brightWhite: 22.8 diff --git a/themes/whiteboard.yaml b/themes/whiteboard.yaml new file mode 100644 index 00000000..3454d5b8 --- /dev/null +++ b/themes/whiteboard.yaml @@ -0,0 +1,49 @@ +name: "Whiteboard" +source: + marketplace_id: "jsm-dev.whiteboard-theme" + version: "1.0.1" + installs: 244 + author: "jsm" + repo: "https://github.com/jsm04/whiteboard-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jsm-dev.whiteboard-theme" +colors: + bg: "#FCFCFC" + fg: "#000000" + black: "#29343D" + red: "#F8961E" + green: "#90BE6D" + yellow: "#F3722C" + blue: "#577590" + magenta: "#F9C74F" + cyan: "#43AA8B" + white: "#969696" + brightBlack: "#394956" + brightRed: "#F8961E" + brightGreen: "#90BE6D" + brightYellow: "#F3722C" + brightBlue: "#577590" + brightMagenta: "#F9C74F" + brightCyan: "#43AA8B" + brightWhite: "#ABABAB" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 104.2 + black: 97 + red: 41.9 + green: 40.3 + yellow: 52.8 + blue: 71.6 + magenta: 24.3 + cyan: 52.6 + white: 54.3 + brightBlack: 89.6 + brightRed: 41.9 + brightGreen: 40.3 + brightYellow: 52.8 + brightBlue: 71.6 + brightMagenta: 24.3 + brightCyan: 52.6 + brightWhite: 43.5 diff --git a/themes/whitespace.yaml b/themes/whitespace.yaml new file mode 100644 index 00000000..30870873 --- /dev/null +++ b/themes/whitespace.yaml @@ -0,0 +1,49 @@ +name: "WhiteSpace" +source: + marketplace_id: "YesCode.inspiration" + version: "0.0.19" + installs: 1076 + author: "YesCode" + repo: "https://github.com/yesomac/inspiration_themevsc" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" +colors: + bg: "#ECFCF0" + fg: "#001A0C" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#626D65" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 100.5 + black: 99.1 + red: 54.5 + green: 36 + yellow: 24.5 + blue: 49.1 + magenta: 77.1 + cyan: 47.2 + white: 49.3 + brightBlack: 78 + brightRed: 54.5 + brightGreen: 72.6 + brightYellow: 18.2 + brightBlue: 77.9 + brightMagenta: 77.1 + brightCyan: 47.2 + brightWhite: 0 diff --git a/themes/wick.yaml b/themes/wick.yaml new file mode 100644 index 00000000..7cc2fb09 --- /dev/null +++ b/themes/wick.yaml @@ -0,0 +1,49 @@ +name: "Wick" +source: + marketplace_id: "wick.wick" + version: "1.0.2" + installs: 137 + author: "wick" + repo: "https://github.com/olivergrass/wick-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wick.wick" +colors: + bg: "#21252B" + fg: "#A9B2C3" + black: "#000000" + red: "#E06C75" + green: "#98C379" + yellow: "#F2D479" + blue: "#70A2FF" + magenta: "#F2A4F4" + cyan: "#78C4CE" + white: "#F2F1EC" + brightBlack: "#000000" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#F2D479" + brightBlue: "#70A2FF" + brightMagenta: "#F2A4F4" + brightCyan: "#78C4CE" + brightWhite: "#F2F1EC" +meta: + mode: "dark" + accent: "purple" + hue: 258 + contrast: + fg: 57.5 + black: 0 + red: 40.2 + green: 60.4 + yellow: 79 + blue: 49.7 + magenta: 65.2 + cyan: 61.3 + white: 95.7 + brightBlack: 0 + brightRed: 40.2 + brightGreen: 60.4 + brightYellow: 79 + brightBlue: 49.7 + brightMagenta: 65.2 + brightCyan: 61.3 + brightWhite: 95.7 diff --git a/themes/wicked.yaml b/themes/wicked.yaml new file mode 100644 index 00000000..ba6def67 --- /dev/null +++ b/themes/wicked.yaml @@ -0,0 +1,49 @@ +name: "Wicked" +source: + marketplace_id: "RoxasKi.positively-wicked" + version: "1.0.5" + installs: 27 + author: "RoxasKi" + repo: "https://github.com/Roxaski/positively-wicked" + url: "https://marketplace.visualstudio.com/items?itemName=RoxasKi.positively-wicked" +colors: + bg: "#1A1A1A" + fg: "#E8E6E3" + black: "#1A1A1A" + red: "#7A4A2E" + green: "#52A249" + yellow: "#359816" + blue: "#4A7C59" + magenta: "#5D7C5D" + cyan: "#3D8B6B" + white: "#C9C6C6" + brightBlack: "#4E6E4A" + brightRed: "#8B5A3C" + brightGreen: "#6BC95D" + brightYellow: "#3FBB19" + brightBlue: "#5C9670" + brightMagenta: "#739973" + brightCyan: "#4DA882" + brightWhite: "#F1F0EE" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 90.5 + black: 0 + red: 15.3 + green: 41.8 + yellow: 36.1 + blue: 26.7 + magenta: 28 + cyan: 32.3 + white: 71.2 + brightBlack: 21.7 + brightRed: 21.6 + brightGreen: 60.8 + brightYellow: 51.7 + brightBlue: 38.2 + brightMagenta: 41 + brightCyan: 45.4 + brightWhite: 96.8 diff --git a/themes/widgit-monokai.yaml b/themes/widgit-monokai.yaml new file mode 100644 index 00000000..45b890d1 --- /dev/null +++ b/themes/widgit-monokai.yaml @@ -0,0 +1,49 @@ +name: "Widgit Monokai" +source: + marketplace_id: "widgitlabs.widgit-monokai" + version: "0.0.2" + installs: 245 + author: "Widgit Labs" + repo: "https://gitlab.com/widgitlabs/widgit-monokai/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=widgitlabs.widgit-monokai" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#1793D1" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#1793D1" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 36.3 + magenta: 41.9 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 36.3 + brightMagenta: 9.5 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/wiity-green-eye-friendly.yaml b/themes/wiity-green-eye-friendly.yaml new file mode 100644 index 00000000..4c3215c7 --- /dev/null +++ b/themes/wiity-green-eye-friendly.yaml @@ -0,0 +1,49 @@ +name: "Wiity Green Eye-friendly" +source: + marketplace_id: "puszkarek.wiity-vscode-theme" + version: "0.2.0" + installs: 136 + author: "Puszkarek" + repo: "https://github.com/Puszkarek/wiity-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.wiity-vscode-theme" +colors: + bg: "#0A0E0A" + fg: "#D6EECF" + black: "#111111" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#33FF00" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#D6EECF" +meta: + mode: "dark" + accent: "green" + hue: 145 + contrast: + fg: 92.1 + black: 0 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 86.6 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 92.1 diff --git a/themes/wiity-green.yaml b/themes/wiity-green.yaml new file mode 100644 index 00000000..314b9ee1 --- /dev/null +++ b/themes/wiity-green.yaml @@ -0,0 +1,49 @@ +name: "Wiity Green" +source: + marketplace_id: "puszkarek.wiity-vscode-theme" + version: "0.2.0" + installs: 136 + author: "Puszkarek" + repo: "https://github.com/Puszkarek/wiity-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.wiity-vscode-theme" +colors: + bg: "#0A0E0A" + fg: "#66FF66" + black: "#0A0E0A" + red: "#FF2E6E" + green: "#33FF00" + yellow: "#EEFF00" + blue: "#00E1FF" + magenta: "#FF00AA" + cyan: "#00FFF7" + white: "#33FF00" + brightBlack: "#121A12" + brightRed: "#FF2E6E" + brightGreen: "#33FF00" + brightYellow: "#EEFF00" + brightBlue: "#00E1FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFF7" + brightWhite: "#BBFFAC" +meta: + mode: "dark" + accent: "pink" + hue: 145 + contrast: + fg: 88.7 + black: 0 + red: 39.9 + green: 86.6 + yellow: 100.1 + blue: 76.8 + magenta: 40.7 + cyan: 91.5 + white: 86.6 + brightBlack: 0 + brightRed: 39.9 + brightGreen: 86.6 + brightYellow: 100.1 + brightBlue: 76.8 + brightMagenta: 45.9 + brightCyan: 91.5 + brightWhite: 96.3 diff --git a/themes/wild-flower.yaml b/themes/wild-flower.yaml new file mode 100644 index 00000000..2613c09f --- /dev/null +++ b/themes/wild-flower.yaml @@ -0,0 +1,49 @@ +name: "Wild Flower" +source: + marketplace_id: "TheHalfBloodPrince.wild-flower" + version: "1.0.0" + installs: 1022 + author: "The Half Blood Prince" + repo: "https://github.com/the-halfbloodprince/Wild-Flower" + url: "https://marketplace.visualstudio.com/items?itemName=TheHalfBloodPrince.wild-flower" +colors: + bg: "#222222" + fg: "#FF0000" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 35.1 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 88.6 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/wildcat.yaml b/themes/wildcat.yaml new file mode 100644 index 00000000..f7753617 --- /dev/null +++ b/themes/wildcat.yaml @@ -0,0 +1,49 @@ +name: "wildcat" +source: + marketplace_id: "ergenekonyigit.wildcat" + version: "0.1.1" + installs: 100 + author: "Ergenekon Yigit" + repo: "https://github.com/ergenekonyigit/wildcat-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ergenekonyigit.wildcat" +colors: + bg: "#0C120F" + fg: "#A6ACCD" + black: "#0A0E0C" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 163 + contrast: + fg: 57.6 + black: 0 + red: 39.7 + green: 76.9 + yellow: 102.5 + blue: 78.8 + magenta: 55.4 + cyan: 78.8 + white: 107.4 + brightBlack: 57.6 + brightRed: 39.7 + brightGreen: 76.9 + brightYellow: 102.5 + brightBlue: 79.1 + brightMagenta: 55.4 + brightCyan: 79.1 + brightWhite: 107.4 diff --git a/themes/wildtype.yaml b/themes/wildtype.yaml new file mode 100644 index 00000000..3cf7585d --- /dev/null +++ b/themes/wildtype.yaml @@ -0,0 +1,49 @@ +name: "Wildtype" +source: + marketplace_id: "wildtype.wildtype" + version: "0.0.6" + installs: 4150 + author: "wildtype" + repo: "https://github.com/wtype/wildtype-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wildtype.wildtype" +colors: + bg: "#020A12" + fg: "#AACBF1" + black: "#519EEB" + red: "#F87E4E" + green: "#CFCF75" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#F06FA0" + cyan: "#1B9891" + white: "#AACBF1" + brightBlack: "#00126E" + brightRed: "#FF5B1A" + brightGreen: "#CACACA" + brightYellow: "#E1E2B3" + brightBlue: "#7DCBFF" + brightMagenta: "#CFCF75" + brightCyan: "#389C76" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "orange" + hue: 241 + contrast: + fg: 73.1 + black: 47.7 + red: 51.6 + green: 74.5 + yellow: 104.1 + blue: 37.6 + magenta: 48.3 + cyan: 39.1 + white: 73.1 + brightBlack: 0 + brightRed: 44.7 + brightGreen: 74.3 + brightYellow: 87 + brightBlue: 70.1 + brightMagenta: 74.5 + brightCyan: 40.4 + brightWhite: 89.2 diff --git a/themes/wildwest.yaml b/themes/wildwest.yaml new file mode 100644 index 00000000..e3afbfcf --- /dev/null +++ b/themes/wildwest.yaml @@ -0,0 +1,49 @@ +name: "WildWest" +source: + marketplace_id: "MaheshGaddhe00.wildWest" + version: "0.5.0" + installs: 1372 + author: "MaheshGaddhe00" + repo: "https://github.com/Maheshoo7/WildWest" + url: "https://marketplace.visualstudio.com/items?itemName=MaheshGaddhe00.wildWest" +colors: + bg: "#001724" + fg: "#B0B5B3" + black: "#333945" + red: "#FC3A52" + green: "#73A580" + yellow: "#FF6768" + blue: "#028096" + magenta: "#C3A6FF" + cyan: "#028096" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#FC3A52" + brightGreen: "#73A580" + brightYellow: "#FC3A52" + brightBlue: "#028096" + brightMagenta: "#C3A6FF" + brightCyan: "#028096" + brightWhite: "#C8E4FE" +meta: + mode: "dark" + accent: "orange" + hue: 235 + contrast: + fg: 60.7 + black: 0 + red: 39 + green: 46.6 + yellow: 47.2 + blue: 29.1 + magenta: 61.4 + cyan: 29.1 + white: 55.2 + brightBlack: 11.2 + brightRed: 39 + brightGreen: 46.6 + brightYellow: 39 + brightBlue: 29.1 + brightMagenta: 61.4 + brightCyan: 29.1 + brightWhite: 87.3 diff --git a/themes/will-o-wisp-theme.yaml b/themes/will-o-wisp-theme.yaml new file mode 100644 index 00000000..2231d56b --- /dev/null +++ b/themes/will-o-wisp-theme.yaml @@ -0,0 +1,49 @@ +name: "Will-o'-Wisp Theme" +source: + marketplace_id: "simon-jaeger.will-o-wisp-theme" + version: "0.3.0" + installs: 796 + author: "Simon Jäger" + repo: "https://github.com/simon-jaeger/vscode-will-o-wisp-theme" + url: "https://marketplace.visualstudio.com/items?itemName=simon-jaeger.will-o-wisp-theme" +colors: + bg: "#202428" + fg: "#B3B3B3" + black: "#5D6A83" + red: "#C45F5F" + green: "#78AB81" + yellow: "#B88E2E" + blue: "#8294C9" + magenta: "#AA83AA" + cyan: "#72B2B8" + white: "#B3B3B3" + brightBlack: "#5D6A83" + brightRed: "#C45F5F" + brightGreen: "#78AB81" + brightYellow: "#B88E2E" + brightBlue: "#8294C9" + brightMagenta: "#AA83AA" + brightCyan: "#72B2B8" + brightWhite: "#B3B3B3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 58.5 + black: 21.9 + red: 31.5 + green: 47.8 + yellow: 42.3 + blue: 42.6 + magenta: 39.7 + cyan: 52.3 + white: 58.5 + brightBlack: 21.9 + brightRed: 31.5 + brightGreen: 47.8 + brightYellow: 42.3 + brightBlue: 42.6 + brightMagenta: 39.7 + brightCyan: 52.3 + brightWhite: 58.5 diff --git a/themes/willasm-emerald-sky.yaml b/themes/willasm-emerald-sky.yaml new file mode 100644 index 00000000..80804acb --- /dev/null +++ b/themes/willasm-emerald-sky.yaml @@ -0,0 +1,49 @@ +name: "willasm.emerald.sky" +source: + marketplace_id: "willasm.emerald-sky" + version: "1.0.6" + installs: 710 + author: "willasm" + repo: "https://github.com/willasm/emerald-sky" + url: "https://marketplace.visualstudio.com/items?itemName=willasm.emerald-sky" +colors: + bg: "#05100A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 161 + contrast: + fg: 80.2 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/willi-style-darker.yaml b/themes/willi-style-darker.yaml new file mode 100644 index 00000000..dae88e57 --- /dev/null +++ b/themes/willi-style-darker.yaml @@ -0,0 +1,49 @@ +name: "Willi-Style Darker" +source: + marketplace_id: "wq.willi-style" + version: "0.0.4" + installs: 434 + author: "wQ" + repo: "https://github.com/iamstrawberry/willi-style" + url: "https://marketplace.visualstudio.com/items?itemName=wq.willi-style" +colors: + bg: "#111111" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/willi-style-darkest.yaml b/themes/willi-style-darkest.yaml new file mode 100644 index 00000000..abd0ca11 --- /dev/null +++ b/themes/willi-style-darkest.yaml @@ -0,0 +1,49 @@ +name: "Willi-Style Darkest" +source: + marketplace_id: "wq.willi-style" + version: "0.0.4" + installs: 434 + author: "wQ" + repo: "https://github.com/iamstrawberry/willi-style" + url: "https://marketplace.visualstudio.com/items?itemName=wq.willi-style" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/willi-style-dracula-flavour.yaml b/themes/willi-style-dracula-flavour.yaml new file mode 100644 index 00000000..c1c97a96 --- /dev/null +++ b/themes/willi-style-dracula-flavour.yaml @@ -0,0 +1,49 @@ +name: "Willi-Style Dracula flavour" +source: + marketplace_id: "wq.willi-style" + version: "0.0.4" + installs: 434 + author: "wQ" + repo: "https://github.com/iamstrawberry/willi-style" + url: "https://marketplace.visualstudio.com/items?itemName=wq.willi-style" +colors: + bg: "#2B2B2B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 76.5 + black: 0 + red: 23.7 + green: 50 + yellow: 82.6 + blue: 24.4 + magenta: 26.7 + cyan: 44.5 + white: 87 + brightBlack: 19 + brightRed: 35.5 + brightGreen: 60.5 + brightYellow: 92.6 + brightBlue: 37 + brightMagenta: 42.3 + brightCyan: 52.4 + brightWhite: 87 diff --git a/themes/willow.yaml b/themes/willow.yaml new file mode 100644 index 00000000..03ae762f --- /dev/null +++ b/themes/willow.yaml @@ -0,0 +1,49 @@ +name: "willow" +source: + marketplace_id: "RaulWierzbiski.willow-theme" + version: "0.0.1" + installs: 902 + author: "Raul Wierzbiński" + repo: "https://github.com/Wierzba13/willow-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RaulWierzbiski.willow-theme" +colors: + bg: "#0A0A0A" + fg: "#D4D4D4" + black: "#131313" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.3 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/win-xp-luna.yaml b/themes/win-xp-luna.yaml new file mode 100644 index 00000000..644bf172 --- /dev/null +++ b/themes/win-xp-luna.yaml @@ -0,0 +1,49 @@ +name: "Win XP Luna" +source: + marketplace_id: "sinedied.vscode-windows-xp-theme" + version: "0.1.5" + installs: 28277 + author: "Yohan Lasorsa" + repo: "https://github.com/sinedied/vscode-win-xp-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sinedied.vscode-windows-xp-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#909090" + red: "#C00000" + green: "#00C000" + yellow: "#C0C000" + blue: "#0000C0" + magenta: "#C000C0" + cyan: "#00C0C0" + white: "#C0C0C0" + brightBlack: "#C0C0C0" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 59.1 + red: 79.3 + green: 47.4 + yellow: 37.2 + blue: 94 + magenta: 73.5 + cyan: 43.8 + white: 34 + brightBlack: 34 + brightRed: 64.1 + brightGreen: 17.1 + brightYellow: 0 + brightBlue: 85.8 + brightMagenta: 55.6 + brightCyan: 11.8 + brightWhite: 0 diff --git a/themes/win10.yaml b/themes/win10.yaml new file mode 100644 index 00000000..d33ffd39 --- /dev/null +++ b/themes/win10.yaml @@ -0,0 +1,49 @@ +name: "Win10" +source: + marketplace_id: "Meitrox9.dark-navy-theme" + version: "0.0.2" + installs: 535 + author: "Meitrox" + repo: "https://github.com/Meitrox/dark-navy-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Meitrox9.dark-navy-theme" +colors: + bg: "#0C131D" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F7F7F7" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + contrast: + fg: 107.2 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 102 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/winclassic.yaml b/themes/winclassic.yaml new file mode 100644 index 00000000..b42400c9 --- /dev/null +++ b/themes/winclassic.yaml @@ -0,0 +1,49 @@ +name: "WinClassic" +source: + marketplace_id: "disk0.win-classic-theme" + version: "0.0.23" + installs: 5037 + author: "disk0" + repo: "https://github.com/disco0/win-classic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=disk0.win-classic-theme" +colors: + bg: "#EFEFEF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC41" + yellow: "#CC5500" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#BBBBBB" + brightBlack: "#666666" + brightRed: "#D51015" + brightGreen: "#14CE14" + brightYellow: "#FF7E00" + brightBlue: "#0066FF" + brightMagenta: "#DB05DB" + brightCyan: "#0598BC" + brightWhite: "#EDEDED" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 96.5 + black: 96.5 + red: 64.5 + green: 39.5 + yellow: 59.5 + blue: 76.5 + magenta: 65.1 + cyan: 51.1 + white: 27.2 + brightBlack: 69.2 + brightRed: 64.7 + brightGreen: 31.4 + brightYellow: 39.7 + brightBlue: 62.9 + brightMagenta: 56.5 + brightCyan: 51.1 + brightWhite: 0 diff --git a/themes/wind-dark-slate.yaml b/themes/wind-dark-slate.yaml new file mode 100644 index 00000000..aebc33f2 --- /dev/null +++ b/themes/wind-dark-slate.yaml @@ -0,0 +1,49 @@ +name: "Wind Dark Slate" +source: + marketplace_id: "calvinludwig.wind-theme" + version: "1.0.0" + installs: 1681 + author: "Calvin Ludwig" + repo: "https://github.com/calvinludwig/wind-theme" + url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" +colors: + bg: "#0F172A" + fg: "#CBD5E1" + black: "#1E293B" + red: "#F43F5E" + green: "#22C55E" + yellow: "#FACC15" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F1F5F9" + brightBlack: "#334155" + brightRed: "#FB7185" + brightGreen: "#4ADE80" + brightYellow: "#FDE047" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "magenta" + hue: 266 + contrast: + fg: 79.3 + black: 0 + red: 37.7 + green: 56.7 + yellow: 77.7 + blue: 36.7 + magenta: 34.3 + cyan: 53.8 + white: 99.8 + brightBlack: 7.4 + brightRed: 49.2 + brightGreen: 70.4 + brightYellow: 87 + brightBlue: 51.3 + brightMagenta: 49.6 + brightCyan: 68.5 + brightWhite: 103.3 diff --git a/themes/wind-dark-zinc.yaml b/themes/wind-dark-zinc.yaml new file mode 100644 index 00000000..d89f1cd2 --- /dev/null +++ b/themes/wind-dark-zinc.yaml @@ -0,0 +1,49 @@ +name: "Wind Dark Zinc" +source: + marketplace_id: "calvinludwig.wind-theme" + version: "1.0.0" + installs: 1681 + author: "Calvin Ludwig" + repo: "https://github.com/calvinludwig/wind-theme" + url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" +colors: + bg: "#18181B" + fg: "#D4D4D8" + black: "#27272A" + red: "#F43F5E" + green: "#22C55E" + yellow: "#FACC15" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F4F4F5" + brightBlack: "#3F3F46" + brightRed: "#FB7185" + brightGreen: "#4ADE80" + brightYellow: "#FDE047" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 79.5 + black: 0 + red: 37.7 + green: 56.7 + yellow: 77.6 + blue: 36.6 + magenta: 34.3 + cyan: 53.7 + white: 99.5 + brightBlack: 0 + brightRed: 49.1 + brightGreen: 70.3 + brightYellow: 87 + brightBlue: 51.2 + brightMagenta: 49.5 + brightCyan: 68.5 + brightWhite: 103.4 diff --git a/themes/wind.yaml b/themes/wind.yaml new file mode 100644 index 00000000..15e55f0f --- /dev/null +++ b/themes/wind.yaml @@ -0,0 +1,49 @@ +name: "wind" +source: + marketplace_id: "letrieu.tornado-themes" + version: "0.0.7" + installs: 356 + author: "Le Trieu" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=letrieu.tornado-themes" +colors: + bg: "#1F2430" + fg: "#CBCCC6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 267 + contrast: + fg: 72.5 + black: 0 + red: 25 + green: 51.2 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.2 + brightMagenta: 43.6 + brightCyan: 53.6 + brightWhite: 88.3 diff --git a/themes/windows-95-theme.yaml b/themes/windows-95-theme.yaml new file mode 100644 index 00000000..65ae94a1 --- /dev/null +++ b/themes/windows-95-theme.yaml @@ -0,0 +1,49 @@ +name: "Windows 95 Theme" +source: + marketplace_id: "samwnr.Windows-95-Theme" + version: "0.0.1" + installs: 2419 + author: "samwnr" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=samwnr.Windows-95-Theme" +colors: + bg: "#000021" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 80.3 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/windows-nt.yaml b/themes/windows-nt.yaml new file mode 100644 index 00000000..92ec6914 --- /dev/null +++ b/themes/windows-nt.yaml @@ -0,0 +1,49 @@ +name: "Windows NT" +source: + marketplace_id: "wassimdev.windows-nt-vscode-theme" + version: "0.0.12" + installs: 26383 + author: "Wassim Chegham" + repo: "https://github.com/manekinekko/windows-nt-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wassimdev.windows-nt-vscode-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/windows-xp-dark-luna.yaml b/themes/windows-xp-dark-luna.yaml new file mode 100644 index 00000000..10e80f74 --- /dev/null +++ b/themes/windows-xp-dark-luna.yaml @@ -0,0 +1,49 @@ +name: "Windows Xp Dark Luna" +source: + marketplace_id: "mssjim.windows-xp-dark" + version: "1.0.1" + installs: 3362 + author: "Mssjim" + repo: "https://github.com/Mssjim/windows-xp-dark" + url: "https://marketplace.visualstudio.com/items?itemName=mssjim.windows-xp-dark" +colors: + bg: "#212122" + fg: "#D4D4D4" + black: "#909090" + red: "#C00000" + green: "#00C000" + yellow: "#C0C000" + blue: "#0000C0" + magenta: "#C000C0" + cyan: "#00C0C0" + white: "#C0C0C0" + brightBlack: "#C0C0C0" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.2 + black: 40.3 + red: 20.2 + green: 52.3 + yellow: 62.9 + blue: 0 + magenta: 25.9 + cyan: 56 + white: 66.3 + brightBlack: 66.3 + brightRed: 35.3 + brightGreen: 84.2 + brightYellow: 100.4 + brightBlue: 13.9 + brightMagenta: 43.9 + brightCyan: 89.9 + brightWhite: 105.6 diff --git a/themes/windu.yaml b/themes/windu.yaml new file mode 100644 index 00000000..21e3beac --- /dev/null +++ b/themes/windu.yaml @@ -0,0 +1,49 @@ +name: "Windu" +source: + marketplace_id: "JohannesFreutel.Windu" + version: "0.0.1" + installs: 61 + author: "JohannesFreutel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.Windu" +colors: + bg: "#11172C" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + contrast: + fg: 79.3 + black: 0 + red: 26.6 + green: 52.8 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.9 diff --git a/themes/windwaker.yaml b/themes/windwaker.yaml new file mode 100644 index 00000000..1fb47ad6 --- /dev/null +++ b/themes/windwaker.yaml @@ -0,0 +1,49 @@ +name: "Windwaker" +source: + marketplace_id: "endg4me.windwaker" + version: "1.0.3" + installs: 182 + author: "Endg4me_" + repo: "https://github.com/Endg4meZer0/Windwaker-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=endg4me.windwaker" +colors: + bg: "#111716" + fg: "#E3E3E3" + black: "#1A2322" + red: "#F5476B" + green: "#51E3B2" + yellow: "#F0C647" + blue: "#5473EB" + magenta: "#BE58F5" + cyan: "#55A8D3" + white: "#EEF0F9" + brightBlack: "#485655" + brightRed: "#F694A5" + brightGreen: "#8BF6D4" + brightYellow: "#F5EC78" + brightBlue: "#8FA6F6" + brightMagenta: "#D895F6" + brightCyan: "#79CBF5" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 88.9 + black: 0 + red: 39.5 + green: 74.7 + yellow: 74 + blue: 32.3 + magenta: 38.3 + cyan: 49.6 + white: 97.3 + brightBlack: 14.5 + brightRed: 59 + brightGreen: 88.5 + brightYellow: 92.2 + brightBlue: 55 + brightMagenta: 58.2 + brightCyan: 68.5 + brightWhite: 103.7 diff --git a/themes/wine-garden.yaml b/themes/wine-garden.yaml new file mode 100644 index 00000000..0a7771e3 --- /dev/null +++ b/themes/wine-garden.yaml @@ -0,0 +1,49 @@ +name: "Wine Garden" +source: + marketplace_id: "Synth1983GreenWave.ampelopsis" + version: "1.0.2" + installs: 259 + author: "🧪 ovct 🧪" + repo: "https://github.com/Octaviocossy/ampelopsis-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Synth1983GreenWave.ampelopsis" +colors: + bg: "#101724" + fg: "#A6ACCD" + black: "#101724" + red: "#E695B9" + green: "#7CBEB9" + yellow: "#D7CE9A" + blue: "#7FB5D6" + magenta: "#E695B9" + cyan: "#7FB5D6" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#E695B9" + brightGreen: "#7CBEB9" + brightYellow: "#D7CE9A" + brightBlue: "#ADD7FF" + brightMagenta: "#E695B9" + brightCyan: "#FAFAFA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 262 + contrast: + fg: 57.1 + black: 0 + red: 57.1 + green: 59.8 + yellow: 75.2 + blue: 57.6 + magenta: 57.1 + cyan: 57.6 + white: 106.9 + brightBlack: 57.1 + brightRed: 57.1 + brightGreen: 59.8 + brightYellow: 75.2 + brightBlue: 78.5 + brightMagenta: 57.1 + brightCyan: 103.5 + brightWhite: 106.9 diff --git a/themes/winter-pearl.yaml b/themes/winter-pearl.yaml new file mode 100644 index 00000000..80d778cf --- /dev/null +++ b/themes/winter-pearl.yaml @@ -0,0 +1,49 @@ +name: "Winter Pearl" +source: + marketplace_id: "suryashanm.winter-pearl-theme" + version: "1.0.0" + installs: 2356 + author: "suryashanm" + repo: "https://github.com/suryashanm/winter-pearl" + url: "https://marketplace.visualstudio.com/items?itemName=suryashanm.winter-pearl-theme" +colors: + bg: "#06090F" + fg: "#E1E1E1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 88.4 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/winter.yaml b/themes/winter.yaml new file mode 100644 index 00000000..c1611f64 --- /dev/null +++ b/themes/winter.yaml @@ -0,0 +1,49 @@ +name: "Winter" +source: + marketplace_id: "wintercms.winter-vscode-theme" + version: "1.0.1" + installs: 337 + author: "Winter CMS" + repo: "https://github.com/wintercms/winter-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wintercms.winter-vscode-theme" +colors: + bg: "#17191E" + fg: "#BDC1CA" + black: "#17191E" + red: "#FF8D90" + green: "#A1C861" + yellow: "#E1B834" + blue: "#8BACFE" + magenta: "#BFA0EE" + cyan: "#4BD1D3" + white: "#BDC1CA" + brightBlack: "#55585F" + brightRed: "#FFB3B4" + brightGreen: "#BADE7F" + brightYellow: "#F5D05F" + brightBlue: "#AEC4FF" + brightMagenta: "#D5B9FF" + brightCyan: "#7DE5E7" + brightWhite: "#D4D8E2" +meta: + mode: "dark" + accent: "green" + hue: 268 + contrast: + fg: 67.9 + black: 0 + red: 57.6 + green: 64.7 + yellow: 65.5 + blue: 57.2 + magenta: 57.4 + cyan: 66.9 + white: 67.9 + brightBlack: 16 + brightRed: 71.3 + brightGreen: 77.9 + brightYellow: 79 + brightBlue: 70.2 + brightMagenta: 70.6 + brightCyan: 79.8 + brightWhite: 81.7 diff --git a/themes/winteriscoding-gift.yaml b/themes/winteriscoding-gift.yaml new file mode 100644 index 00000000..412ce6b6 --- /dev/null +++ b/themes/winteriscoding-gift.yaml @@ -0,0 +1,49 @@ +name: "WinterIsCoding Gift" +source: + marketplace_id: "winterx64.winteriscoding" + version: "2.1.0" + installs: 593 + author: "winter_x64" + repo: "https://github.com/winter-x64/WinterIsCoding" + url: "https://marketplace.visualstudio.com/items?itemName=winterx64.winteriscoding" +colors: + bg: "#181818" + fg: "#FFFFFF" + black: "#262626" + red: "#FF3E3E" + green: "#0DBC79" + yellow: "#FFAF00" + blue: "#2E6CFF" + magenta: "#9F00FF" + cyan: "#2DE2B2" + white: "#E5E5E5" + brightBlack: "#767676" + brightRed: "#FF8484" + brightGreen: "#C5F467" + brightYellow: "#FFCC5C" + brightBlue: "#5CB2FF" + brightMagenta: "#CF8DFB" + brightCyan: "#5CECC6" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 106.8 + black: 0 + red: 39.7 + green: 52.9 + yellow: 67.2 + blue: 30.3 + magenta: 26.6 + cyan: 73.1 + white: 89.9 + brightBlack: 29 + brightRed: 54.8 + brightGreen: 89.4 + brightYellow: 79 + brightBlue: 56.6 + brightMagenta: 54.4 + brightCyan: 80.2 + brightWhite: 89.9 diff --git a/themes/winteriscoding.yaml b/themes/winteriscoding.yaml new file mode 100644 index 00000000..9963802e --- /dev/null +++ b/themes/winteriscoding.yaml @@ -0,0 +1,49 @@ +name: "WinterIsCoding" +source: + marketplace_id: "winterx64.winteriscoding" + version: "2.1.0" + installs: 593 + author: "winter_x64" + repo: "https://github.com/winter-x64/WinterIsCoding" + url: "https://marketplace.visualstudio.com/items?itemName=winterx64.winteriscoding" +colors: + bg: "#1A1A1A" + fg: "#FFFFFF" + black: "#262626" + red: "#FF3E3E" + green: "#0DBC79" + yellow: "#FFAF00" + blue: "#2E6CFF" + magenta: "#9F00FF" + cyan: "#2DE2B2" + white: "#E5E5E5" + brightBlack: "#767676" + brightRed: "#FF8484" + brightGreen: "#C5F467" + brightYellow: "#FFCC5C" + brightBlue: "#5CB2FF" + brightMagenta: "#CF8DFB" + brightCyan: "#5CECC6" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 106.5 + black: 0 + red: 39.5 + green: 52.7 + yellow: 66.9 + blue: 30.1 + magenta: 26.3 + cyan: 72.9 + white: 89.7 + brightBlack: 28.8 + brightRed: 54.6 + brightGreen: 89.2 + brightYellow: 78.8 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 80 + brightWhite: 89.7 diff --git a/themes/wired-lighter.yaml b/themes/wired-lighter.yaml new file mode 100644 index 00000000..a9c6f0bb --- /dev/null +++ b/themes/wired-lighter.yaml @@ -0,0 +1,49 @@ +name: "wired lighter" +source: + marketplace_id: "minako.wired" + version: "2.0.5" + installs: 4867 + author: "minako" + repo: "https://github.com/kayliese/wired" + url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" +colors: + bg: "#03071B" + fg: "#C1B492" + black: "#502832" + red: "#A45A74" + green: "#B39987" + yellow: "#A47F7C" + blue: "#AD5F74" + magenta: "#D78594" + cyan: "#B39487" + white: "#CA988E" + brightBlack: "#703A47" + brightRed: "#A45A74" + brightGreen: "#B39987" + brightYellow: "#A47F7C" + brightBlue: "#AD5F74" + brightMagenta: "#D78594" + brightCyan: "#B39487" + brightWhite: "#D2738A" +meta: + mode: "dark" + accent: "red" + hue: 267 + contrast: + fg: 62 + black: 0 + red: 27.9 + green: 49.6 + yellow: 38.4 + blue: 30.5 + magenta: 49 + cyan: 47.8 + white: 52.8 + brightBlack: 12.2 + brightRed: 27.9 + brightGreen: 49.6 + brightYellow: 38.4 + brightBlue: 30.5 + brightMagenta: 49 + brightCyan: 47.8 + brightWhite: 42.7 diff --git a/themes/wired.yaml b/themes/wired.yaml new file mode 100644 index 00000000..963303b5 --- /dev/null +++ b/themes/wired.yaml @@ -0,0 +1,49 @@ +name: "wired" +source: + marketplace_id: "minako.wired" + version: "2.0.5" + installs: 4867 + author: "minako" + repo: "https://github.com/kayliese/wired" + url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" +colors: + bg: "#000000" + fg: "#C1B492" + black: "#502832" + red: "#A45A74" + green: "#B39987" + yellow: "#A47F7C" + blue: "#AD5F74" + magenta: "#D78594" + cyan: "#B39487" + white: "#CA988E" + brightBlack: "#703A47" + brightRed: "#A45A74" + brightGreen: "#B39987" + brightYellow: "#A47F7C" + brightBlue: "#AD5F74" + brightMagenta: "#D78594" + brightCyan: "#B39487" + brightWhite: "#D2738A" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 62.2 + black: 0 + red: 28.1 + green: 49.8 + yellow: 38.6 + blue: 30.7 + magenta: 49.1 + cyan: 48 + white: 52.9 + brightBlack: 12.4 + brightRed: 28.1 + brightGreen: 49.8 + brightYellow: 38.6 + brightBlue: 30.7 + brightMagenta: 49.1 + brightCyan: 48 + brightWhite: 42.8 diff --git a/themes/wise-owl-material-high-contrast.yaml b/themes/wise-owl-material-high-contrast.yaml new file mode 100644 index 00000000..d88220ee --- /dev/null +++ b/themes/wise-owl-material-high-contrast.yaml @@ -0,0 +1,49 @@ +name: "Wise Owl Material High Contrast" +source: + marketplace_id: "waseemakhter028.wise-owl-material-theme" + version: "1.0.0" + installs: 31 + author: "WaseemAkhter" + repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" +colors: + bg: "#000000" + fg: "#D6DEEB" + black: "#000000" + red: "#FF5874" + green: "#22DA6F" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#7FDBCA" + white: "#D6DEEB" + brightBlack: "#464E57" + brightRed: "#FF5874" + brightGreen: "#22DA6F" + brightYellow: "#ECC48D" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 86.2 + black: 0 + red: 45.6 + green: 68.3 + yellow: 74.7 + blue: 56.9 + magenta: 54.8 + cyan: 75 + white: 86.2 + brightBlack: 13.1 + brightRed: 45.6 + brightGreen: 68.3 + brightYellow: 74.7 + brightBlue: 56.9 + brightMagenta: 54.8 + brightCyan: 75 + brightWhite: 107.9 diff --git a/themes/wise-owl-material-light.yaml b/themes/wise-owl-material-light.yaml new file mode 100644 index 00000000..add98085 --- /dev/null +++ b/themes/wise-owl-material-light.yaml @@ -0,0 +1,49 @@ +name: "Wise Owl Material Light" +source: + marketplace_id: "waseemakhter028.wise-owl-material-theme" + version: "1.0.0" + installs: 31 + author: "WaseemAkhter" + repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" +colors: + bg: "#F5F5F5" + fg: "#333333" + black: "#333333" + red: "#E91E63" + green: "#27AE60" + yellow: "#F39C12" + blue: "#0066CC" + magenta: "#8E44AD" + cyan: "#16A085" + white: "#F5F5F5" + brightBlack: "#666666" + brightRed: "#E91E63" + brightGreen: "#27AE60" + brightYellow: "#F39C12" + brightBlue: "#0066CC" + brightMagenta: "#8E44AD" + brightCyan: "#16A085" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 92.7 + black: 92.7 + red: 62 + green: 48.5 + yellow: 36.8 + blue: 71 + magenta: 72.8 + cyan: 53.7 + white: 0 + brightBlack: 72.8 + brightRed: 62 + brightGreen: 48.5 + brightYellow: 36.8 + brightBlue: 71 + brightMagenta: 72.8 + brightCyan: 53.7 + brightWhite: 0 diff --git a/themes/wise-owl-material.yaml b/themes/wise-owl-material.yaml new file mode 100644 index 00000000..f17674c5 --- /dev/null +++ b/themes/wise-owl-material.yaml @@ -0,0 +1,49 @@ +name: "Wise Owl Material" +source: + marketplace_id: "waseemakhter028.wise-owl-material-theme" + version: "1.0.0" + installs: 31 + author: "WaseemAkhter" + repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" +colors: + bg: "#011627" + fg: "#D6DEEB" + black: "#011627" + red: "#FF5874" + green: "#22DA6F" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#7FDBCA" + white: "#D6DEEB" + brightBlack: "#464E57" + brightRed: "#FF5874" + brightGreen: "#22DA6F" + brightYellow: "#ECC48D" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 244 + contrast: + fg: 85.3 + black: 0 + red: 44.7 + green: 67.4 + yellow: 73.8 + blue: 56 + magenta: 53.8 + cyan: 74.1 + white: 85.3 + brightBlack: 12.2 + brightRed: 44.7 + brightGreen: 67.4 + brightYellow: 73.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 107 diff --git a/themes/wisteria.yaml b/themes/wisteria.yaml new file mode 100644 index 00000000..f2fb212c --- /dev/null +++ b/themes/wisteria.yaml @@ -0,0 +1,49 @@ +name: "Wisteria" +source: + marketplace_id: "raleigh-hansen.wisteria-vscode" + version: "1.0.1" + installs: 935 + author: "Raleigh Hansen" + repo: "https://github.com/raleighsedona/wisteria-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=raleigh-hansen.wisteria-vscode" +colors: + bg: "#120C24" + fg: "#A9B1D6" + black: "#6B6B6B" + red: "#CD2C59" + green: "#73DACA" + yellow: "#C0B65D" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#4A9CCC" + white: "#A9B1D6" + brightBlack: "#999999" + brightRed: "#DB587D" + brightGreen: "#93ECDE" + brightYellow: "#EAE18E" + brightBlue: "#99B9FB" + brightMagenta: "#D1BEF5" + brightCyan: "#73B2D7" + brightWhite: "#C2C5DE" +meta: + mode: "dark" + accent: "red" + hue: 292 + contrast: + fg: 60.4 + black: 24.7 + red: 27.4 + green: 73.3 + yellow: 61.2 + blue: 52.2 + magenta: 56.1 + cyan: 44.4 + white: 60.4 + brightBlack: 46.7 + brightRed: 37.5 + brightGreen: 85 + brightYellow: 86.4 + brightBlue: 64.1 + brightMagenta: 72.1 + brightCyan: 56.1 + brightWhite: 71.8 diff --git a/themes/witch-elaina.yaml b/themes/witch-elaina.yaml new file mode 100644 index 00000000..5440dc62 --- /dev/null +++ b/themes/witch-elaina.yaml @@ -0,0 +1,49 @@ +name: "Witch Elaina" +source: + marketplace_id: "WitchElaina.witchelaina" + version: "0.10.0" + installs: 591 + author: "WitchElaina" + repo: "https://github.com/WitchElaina/WitchElaina-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=WitchElaina.witchelaina" +colors: + bg: "#17141B" + fg: "#DEE9E9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 305 + contrast: + fg: 91.3 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.5 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/witcher.yaml b/themes/witcher.yaml new file mode 100644 index 00000000..789c269b --- /dev/null +++ b/themes/witcher.yaml @@ -0,0 +1,49 @@ +name: "witcher" +source: + marketplace_id: "Devpenzil.witcher" + version: "0.1.1" + installs: 667 + author: "Devpenzil" + repo: "https://github.com/devpenzil/Witcher-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Devpenzil.witcher" +colors: + bg: "#222831" + fg: "#FFFFFF" + black: "#565869" + red: "#FF5C57" + green: "#2DAE58" + yellow: "#EBB100" + blue: "#09A1ED" + magenta: "#FF3E78" + cyan: "#04D1BC" + white: "#FAFBF9" + brightBlack: "#75798F" + brightRed: "#FFAEAC" + brightGreen: "#35CF68" + brightYellow: "#F5B900" + brightBlue: "#14B1FF" + brightMagenta: "#FF94D2" + brightCyan: "#04D1BC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 258 + contrast: + fg: 104.5 + black: 14.3 + red: 42.3 + green: 44 + yellow: 62.1 + blue: 44.3 + magenta: 38.6 + cyan: 62.7 + white: 101.6 + brightBlack: 28.5 + brightRed: 67.1 + brightGreen: 59.7 + brightYellow: 66.9 + brightBlue: 52.1 + brightMagenta: 60.2 + brightCyan: 62.7 + brightWhite: 104.5 diff --git a/themes/witchy-dark.yaml b/themes/witchy-dark.yaml new file mode 100644 index 00000000..8073f61a --- /dev/null +++ b/themes/witchy-dark.yaml @@ -0,0 +1,49 @@ +name: "Witchy Dark" +source: + marketplace_id: "nhcarrigan.naomis-themes" + version: "2.3.0" + installs: 68 + author: "NHCarrigan" + repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" +colors: + bg: "#0A0009" + fg: "#E8D5E8" + black: "#2B1B3D" + red: "#A8577E" + green: "#8A7A9E" + yellow: "#D4A5C7" + blue: "#7B5EA8" + magenta: "#A8577E" + cyan: "#B8A0D0" + white: "#D4A5C7" + brightBlack: "#44275A" + brightRed: "#C96B8E" + brightGreen: "#A898C0" + brightYellow: "#E8D5E8" + brightBlue: "#9B7EC8" + brightMagenta: "#D4A5C7" + brightCyan: "#D0B8E8" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "red" + hue: 331 + contrast: + fg: 84.5 + black: 0 + red: 28.4 + green: 35 + yellow: 61.2 + blue: 25.8 + magenta: 28.4 + cyan: 55.9 + white: 61.2 + brightBlack: 0 + brightRed: 39.3 + brightGreen: 50.2 + brightYellow: 84.5 + brightBlue: 40.5 + brightMagenta: 61.2 + brightCyan: 69.4 + brightWhite: 101.3 diff --git a/themes/wl-acid-wash.yaml b/themes/wl-acid-wash.yaml new file mode 100644 index 00000000..56b9bd1b --- /dev/null +++ b/themes/wl-acid-wash.yaml @@ -0,0 +1,49 @@ +name: "WL-Acid Wash" +source: + marketplace_id: "WatkinsLabs.acid-wash" + version: "1.0.1" + installs: 27 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.acid-wash" +colors: + bg: "#FF00FF" + fg: "#00FF00" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FF8000" + blue: "#FF00FF" + magenta: "#FFFF00" + cyan: "#FF00FF" + white: "#00FF00" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FF8000" + brightBlue: "#FF00FF" + brightMagenta: "#FFFF00" + brightCyan: "#FF00FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: 328 + contrast: + fg: 39.5 + black: 48.5 + red: 0 + green: 39.5 + yellow: 0 + blue: 0 + magenta: 55.7 + cyan: 0 + white: 39.5 + brightBlack: 21.2 + brightRed: 0 + brightGreen: 39.5 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 55.7 + brightCyan: 0 + brightWhite: 60.9 diff --git a/themes/wl-amber-monitor.yaml b/themes/wl-amber-monitor.yaml new file mode 100644 index 00000000..e2dbb710 --- /dev/null +++ b/themes/wl-amber-monitor.yaml @@ -0,0 +1,49 @@ +name: "WL-Amber Monitor" +source: + marketplace_id: "WatkinsLabs.amber-monitor" + version: "1.0.1" + installs: 125 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.amber-monitor" +colors: + bg: "#141413" + fg: "#FDFFB6" + black: "#000000" + red: "#FF3C38" + green: "#45A045" + yellow: "#FF8300" + blue: "#FFC080" + magenta: "#FFA640" + cyan: "#FFC080" + white: "#FDFFB6" + brightBlack: "#666666" + brightRed: "#FF3C38" + brightGreen: "#45A045" + brightYellow: "#FF8300" + brightBlue: "#FFC080" + brightMagenta: "#FFA640" + brightCyan: "#FFC080" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 104 + black: 0 + red: 39.8 + green: 40.9 + yellow: 53.4 + blue: 75.2 + magenta: 64.6 + cyan: 75.2 + white: 104 + brightBlack: 22.3 + brightRed: 39.8 + brightGreen: 40.9 + brightYellow: 53.4 + brightBlue: 75.2 + brightMagenta: 64.6 + brightCyan: 75.2 + brightWhite: 107.2 diff --git a/themes/wl-chrome-dreams.yaml b/themes/wl-chrome-dreams.yaml new file mode 100644 index 00000000..68374feb --- /dev/null +++ b/themes/wl-chrome-dreams.yaml @@ -0,0 +1,49 @@ +name: "WL-Chrome Dreams" +source: + marketplace_id: "WatkinsLabs.chrome-dreams" + version: "1.0.1" + installs: 47 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.chrome-dreams" +colors: + bg: "#2B2D3C" + fg: "#ECEFF1" + black: "#000000" + red: "#FF5C5C" + green: "#70C1B3" + yellow: "#FFC15E" + blue: "#B58AD3" + magenta: "#8F6DB0" + cyan: "#B58AD3" + white: "#ECEFF1" + brightBlack: "#666666" + brightRed: "#FF5C5C" + brightGreen: "#70C1B3" + brightYellow: "#FFC15E" + brightBlue: "#B58AD3" + brightMagenta: "#8F6DB0" + brightCyan: "#B58AD3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 279 + contrast: + fg: 92.4 + black: 0 + red: 41.1 + green: 56.5 + yellow: 71.1 + blue: 43.6 + magenta: 28 + cyan: 43.6 + white: 92.4 + brightBlack: 18.4 + brightRed: 41.1 + brightGreen: 56.5 + brightYellow: 71.1 + brightBlue: 43.6 + brightMagenta: 28 + brightCyan: 43.6 + brightWhite: 103.2 diff --git a/themes/wl-cosmic-drift.yaml b/themes/wl-cosmic-drift.yaml new file mode 100644 index 00000000..be27f974 --- /dev/null +++ b/themes/wl-cosmic-drift.yaml @@ -0,0 +1,49 @@ +name: "WL-Cosmic Drift" +source: + marketplace_id: "WatkinsLabs.cosmic-drift" + version: "1.0.1" + installs: 31 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.cosmic-drift" +colors: + bg: "#2B183F" + fg: "#D1D0FC" + black: "#000000" + red: "#FF3D77" + green: "#7DE38D" + yellow: "#FFAA3D" + blue: "#9F72DD" + magenta: "#B198FC" + cyan: "#9F72DD" + white: "#D1D0FC" + brightBlack: "#666666" + brightRed: "#FF3D77" + brightGreen: "#7DE38D" + brightYellow: "#FFAA3D" + brightBlue: "#9F72DD" + brightMagenta: "#B198FC" + brightCyan: "#9F72DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 304 + contrast: + fg: 78 + black: 0 + red: 39.4 + green: 74.2 + yellow: 64.3 + blue: 36.4 + magenta: 52.5 + cyan: 36.4 + white: 78 + brightBlack: 20.6 + brightRed: 39.4 + brightGreen: 74.2 + brightYellow: 64.3 + brightBlue: 36.4 + brightMagenta: 52.5 + brightCyan: 36.4 + brightWhite: 105.5 diff --git a/themes/wl-crystal-cave.yaml b/themes/wl-crystal-cave.yaml new file mode 100644 index 00000000..078e1caf --- /dev/null +++ b/themes/wl-crystal-cave.yaml @@ -0,0 +1,49 @@ +name: "WL-Crystal Cave" +source: + marketplace_id: "WatkinsLabs.crystal-cave" + version: "1.0.1" + installs: 32 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.crystal-cave" +colors: + bg: "#002545" + fg: "#D1F2F9" + black: "#000000" + red: "#FF647C" + green: "#29CC97" + yellow: "#FFAD46" + blue: "#80DAEB" + magenta: "#5AB3CD" + cyan: "#80DAEB" + white: "#D1F2F9" + brightBlack: "#666666" + brightRed: "#FF647C" + brightGreen: "#29CC97" + brightYellow: "#FFAD46" + brightBlue: "#80DAEB" + brightMagenta: "#5AB3CD" + brightCyan: "#80DAEB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 249 + contrast: + fg: 92.5 + black: 0 + red: 45 + green: 59.6 + yellow: 64.8 + blue: 73.1 + magenta: 52 + cyan: 73.1 + white: 92.5 + brightBlack: 20 + brightRed: 45 + brightGreen: 59.6 + brightYellow: 64.8 + brightBlue: 73.1 + brightMagenta: 52 + brightCyan: 73.1 + brightWhite: 104.9 diff --git a/themes/wl-cyber-punk.yaml b/themes/wl-cyber-punk.yaml new file mode 100644 index 00000000..38b77fbc --- /dev/null +++ b/themes/wl-cyber-punk.yaml @@ -0,0 +1,49 @@ +name: "WL-Cyber Punk" +source: + marketplace_id: "WatkinsLabs.cyber-punk" + version: "1.0.1" + installs: 457 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.cyber-punk" +colors: + bg: "#0D0C1D" + fg: "#B8B8D0" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#00FF00" + magenta: "#00FFFF" + cyan: "#00FF00" + white: "#B8B8D0" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#00FF00" + brightMagenta: "#00FFFF" + brightCyan: "#00FF00" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 285 + contrast: + fg: 64.8 + black: 0 + red: 37.2 + green: 86.1 + yellow: 102.4 + blue: 86.1 + magenta: 91.8 + cyan: 86.1 + white: 64.8 + brightBlack: 22.7 + brightRed: 37.2 + brightGreen: 86.1 + brightYellow: 102.4 + brightBlue: 86.1 + brightMagenta: 91.8 + brightCyan: 86.1 + brightWhite: 107.5 diff --git a/themes/wl-data-stream.yaml b/themes/wl-data-stream.yaml new file mode 100644 index 00000000..3d50c6e0 --- /dev/null +++ b/themes/wl-data-stream.yaml @@ -0,0 +1,49 @@ +name: "WL-Data Stream" +source: + marketplace_id: "WatkinsLabs.data-stream" + version: "1.0.1" + installs: 26 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.data-stream" +colors: + bg: "#0000FF" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#8888FF" + magenta: "#BBBBFF" + cyan: "#8888FF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#8888FF" + brightMagenta: "#BBBBFF" + brightCyan: "#8888FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + contrast: + fg: 90.7 + black: 18.2 + red: 20.3 + green: 69.3 + yellow: 85.5 + blue: 28.1 + magenta: 52 + cyan: 28.1 + white: 90.7 + brightBlack: 0 + brightRed: 20.3 + brightGreen: 69.3 + brightYellow: 85.5 + brightBlue: 28.1 + brightMagenta: 52 + brightCyan: 28.1 + brightWhite: 90.7 diff --git a/themes/wl-disco-ball.yaml b/themes/wl-disco-ball.yaml new file mode 100644 index 00000000..d0f3f9fd --- /dev/null +++ b/themes/wl-disco-ball.yaml @@ -0,0 +1,49 @@ +name: "WL-Disco Ball" +source: + marketplace_id: "WatkinsLabs.disco-ball" + version: "1.0.1" + installs: 20 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.disco-ball" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#008000" + yellow: "#FFA500" + blue: "#C0C0C0" + magenta: "#808080" + cyan: "#C0C0C0" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#008000" + brightYellow: "#FFA500" + brightBlue: "#C0C0C0" + brightMagenta: "#808080" + brightCyan: "#C0C0C0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 27.1 + yellow: 64.7 + blue: 68.6 + magenta: 34.8 + cyan: 68.6 + white: 107.9 + brightBlack: 23 + brightRed: 37.5 + brightGreen: 27.1 + brightYellow: 64.7 + brightBlue: 68.6 + brightMagenta: 34.8 + brightCyan: 68.6 + brightWhite: 107.9 diff --git a/themes/wl-electric-dreams.yaml b/themes/wl-electric-dreams.yaml new file mode 100644 index 00000000..75fb5fa0 --- /dev/null +++ b/themes/wl-electric-dreams.yaml @@ -0,0 +1,49 @@ +name: "WL-Electric Dreams" +source: + marketplace_id: "WatkinsLabs.electric-dreams" + version: "1.0.1" + installs: 38 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.electric-dreams" +colors: + bg: "#06060F" + fg: "#FFFAFA" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FF8C00" + blue: "#00FFFF" + magenta: "#7FFF00" + cyan: "#00FFFF" + white: "#FFFAFA" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FF8C00" + brightBlue: "#00FFFF" + brightMagenta: "#7FFF00" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 283 + contrast: + fg: 105.2 + black: 0 + red: 37.5 + green: 86.4 + yellow: 56.6 + blue: 92.1 + magenta: 89.6 + cyan: 92.1 + white: 105.2 + brightBlack: 23 + brightRed: 37.5 + brightGreen: 86.4 + brightYellow: 56.6 + brightBlue: 92.1 + brightMagenta: 89.6 + brightCyan: 92.1 + brightWhite: 107.8 diff --git a/themes/wl-electric-sunset.yaml b/themes/wl-electric-sunset.yaml new file mode 100644 index 00000000..3ec99be8 --- /dev/null +++ b/themes/wl-electric-sunset.yaml @@ -0,0 +1,49 @@ +name: "WL-Electric Sunset" +source: + marketplace_id: "WatkinsLabs.electric-sunset" + version: "1.0.1" + installs: 45 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.electric-sunset" +colors: + bg: "#311D4E" + fg: "#FFAB29" + black: "#000000" + red: "#D8000C" + green: "#3F7E00" + yellow: "#FFAA00" + blue: "#FF6100" + magenta: "#FF8F00" + cyan: "#FF6100" + white: "#FFAB29" + brightBlack: "#666666" + brightRed: "#D8000C" + brightGreen: "#3F7E00" + brightYellow: "#FFAA00" + brightBlue: "#FF6100" + brightMagenta: "#FF8F00" + brightCyan: "#FF6100" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 300 + contrast: + fg: 63.4 + black: 0 + red: 24.4 + green: 23.9 + yellow: 62.9 + blue: 42.4 + magenta: 54 + cyan: 42.4 + white: 63.4 + brightBlack: 19.5 + brightRed: 24.4 + brightGreen: 23.9 + brightYellow: 62.9 + brightBlue: 42.4 + brightMagenta: 54 + brightCyan: 42.4 + brightWhite: 104.3 diff --git a/themes/wl-fusion-core.yaml b/themes/wl-fusion-core.yaml new file mode 100644 index 00000000..c99980b9 --- /dev/null +++ b/themes/wl-fusion-core.yaml @@ -0,0 +1,49 @@ +name: "WL-Fusion Core" +source: + marketplace_id: "WatkinsLabs.fusion-core" + version: "1.0.1" + installs: 15 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.fusion-core" +colors: + bg: "#000000" + fg: "#FF5500" + black: "#000000" + red: "#FF0000" + green: "#FF4500" + yellow: "#FF8C00" + blue: "#FF6347" + magenta: "#FFA500" + cyan: "#FF6347" + white: "#FF5500" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#FF4500" + brightYellow: "#FF8C00" + brightBlue: "#FF6347" + brightMagenta: "#FFA500" + brightCyan: "#FF6347" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 43.8 + black: 0 + red: 37.5 + green: 41.4 + yellow: 56.7 + blue: 46.8 + magenta: 64.7 + cyan: 46.8 + white: 43.8 + brightBlack: 23 + brightRed: 37.5 + brightGreen: 41.4 + brightYellow: 56.7 + brightBlue: 46.8 + brightMagenta: 64.7 + brightCyan: 46.8 + brightWhite: 107.9 diff --git a/themes/wl-graffiti-wall.yaml b/themes/wl-graffiti-wall.yaml new file mode 100644 index 00000000..f8c1ffff --- /dev/null +++ b/themes/wl-graffiti-wall.yaml @@ -0,0 +1,49 @@ +name: "WL-Graffiti Wall" +source: + marketplace_id: "WatkinsLabs.graffiti-wall" + version: "1.0.1" + installs: 53 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.graffiti-wall" +colors: + bg: "#1B1B27" + fg: "#F7F7F2" + black: "#000000" + red: "#EA5455" + green: "#21BF73" + yellow: "#F07B3F" + blue: "#7209B7" + magenta: "#3A0CA3" + cyan: "#7209B7" + white: "#F7F7F2" + brightBlack: "#666666" + brightRed: "#EA5455" + brightGreen: "#21BF73" + brightYellow: "#F07B3F" + brightBlue: "#7209B7" + brightMagenta: "#3A0CA3" + brightCyan: "#7209B7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 284 + contrast: + fg: 100.8 + black: 0 + red: 37.9 + green: 53.8 + yellow: 47.5 + blue: 12.9 + magenta: 0 + cyan: 12.9 + white: 100.8 + brightBlack: 21.4 + brightRed: 37.9 + brightGreen: 53.8 + brightYellow: 47.5 + brightBlue: 12.9 + brightMagenta: 0 + brightCyan: 12.9 + brightWhite: 106.3 diff --git a/themes/wl-hyper-drive.yaml b/themes/wl-hyper-drive.yaml new file mode 100644 index 00000000..d91c7445 --- /dev/null +++ b/themes/wl-hyper-drive.yaml @@ -0,0 +1,49 @@ +name: "WL-Hyper Drive" +source: + marketplace_id: "WatkinsLabs.hyper-drive" + version: "1.0.1" + installs: 29 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.hyper-drive" +colors: + bg: "#0E0F14" + fg: "#F2F5FA" + black: "#000000" + red: "#FF2400" + green: "#32CD32" + yellow: "#FF6A00" + blue: "#FFAA00" + magenta: "#FF7300" + cyan: "#FFAA00" + white: "#F2F5FA" + brightBlack: "#666666" + brightRed: "#FF2400" + brightGreen: "#32CD32" + brightYellow: "#FF6A00" + brightBlue: "#FFAA00" + brightMagenta: "#FF7300" + brightCyan: "#FFAA00" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 276 + contrast: + fg: 100.7 + black: 0 + red: 38 + green: 61 + yellow: 47.5 + blue: 66.1 + magenta: 49.6 + cyan: 66.1 + white: 100.7 + brightBlack: 22.7 + brightRed: 38 + brightGreen: 61 + brightYellow: 47.5 + brightBlue: 66.1 + brightMagenta: 49.6 + brightCyan: 66.1 + brightWhite: 107.5 diff --git a/themes/wl-ink-splash.yaml b/themes/wl-ink-splash.yaml new file mode 100644 index 00000000..fd5ec729 --- /dev/null +++ b/themes/wl-ink-splash.yaml @@ -0,0 +1,49 @@ +name: "WL-Ink Splash" +source: + marketplace_id: "WatkinsLabs.ink-splash" + version: "1.0.1" + installs: 13 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.ink-splash" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#E76F51" + green: "#2A9D8F" + yellow: "#E9C46A" + blue: "#457B9D" + magenta: "#A8DADC" + cyan: "#457B9D" + white: "#000000" + brightBlack: "#666666" + brightRed: "#E76F51" + brightGreen: "#2A9D8F" + brightYellow: "#E9C46A" + brightBlue: "#457B9D" + brightMagenta: "#A8DADC" + brightCyan: "#457B9D" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 106 + black: 106 + red: 57.3 + green: 60.3 + yellow: 29.4 + blue: 71.8 + magenta: 24.5 + cyan: 71.8 + white: 106 + brightBlack: 78.8 + brightRed: 57.3 + brightGreen: 60.3 + brightYellow: 29.4 + brightBlue: 71.8 + brightMagenta: 24.5 + brightCyan: 71.8 + brightWhite: 0 diff --git a/themes/wl-jade-temple.yaml b/themes/wl-jade-temple.yaml new file mode 100644 index 00000000..11b2de93 --- /dev/null +++ b/themes/wl-jade-temple.yaml @@ -0,0 +1,49 @@ +name: "WL-Jade Temple" +source: + marketplace_id: "WatkinsLabs.jade-temple" + version: "1.0.1" + installs: 12 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.jade-temple" +colors: + bg: "#144622" + fg: "#9AFF91" + black: "#000000" + red: "#E84343" + green: "#39E843" + yellow: "#E89943" + blue: "#178417" + magenta: "#4DF04D" + cyan: "#178417" + white: "#9AFF91" + brightBlack: "#666666" + brightRed: "#E84343" + brightGreen: "#39E843" + brightYellow: "#E89943" + brightBlue: "#178417" + brightMagenta: "#4DF04D" + brightCyan: "#178417" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 149 + contrast: + fg: 83.9 + black: 9 + red: 27 + green: 66.1 + yellow: 47.6 + blue: 19.7 + magenta: 70.8 + cyan: 19.7 + white: 83.9 + brightBlack: 14 + brightRed: 27 + brightGreen: 66.1 + brightYellow: 47.6 + brightBlue: 19.7 + brightMagenta: 70.8 + brightCyan: 19.7 + brightWhite: 98.8 diff --git a/themes/wl-laser-grid.yaml b/themes/wl-laser-grid.yaml new file mode 100644 index 00000000..3d9722ea --- /dev/null +++ b/themes/wl-laser-grid.yaml @@ -0,0 +1,49 @@ +name: "WL-Laser Grid" +source: + marketplace_id: "WatkinsLabs.laser-grid" + version: "1.0.1" + installs: 70 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.laser-grid" +colors: + bg: "#0D0C1D" + fg: "#FFC0CB" + black: "#000000" + red: "#DC143C" + green: "#00FF00" + yellow: "#FFA500" + blue: "#FF007F" + magenta: "#FF4500" + cyan: "#FF007F" + white: "#FFC0CB" + brightBlack: "#666666" + brightRed: "#DC143C" + brightGreen: "#00FF00" + brightYellow: "#FFA500" + brightBlue: "#FF007F" + brightMagenta: "#FF4500" + brightCyan: "#FF007F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 285 + contrast: + fg: 78 + black: 0 + red: 29.1 + green: 86.1 + yellow: 64.4 + blue: 38.9 + magenta: 41 + cyan: 38.9 + white: 78 + brightBlack: 22.7 + brightRed: 29.1 + brightGreen: 86.1 + brightYellow: 64.4 + brightBlue: 38.9 + brightMagenta: 41 + brightCyan: 38.9 + brightWhite: 107.5 diff --git a/themes/wl-lava-lamp.yaml b/themes/wl-lava-lamp.yaml new file mode 100644 index 00000000..506da311 --- /dev/null +++ b/themes/wl-lava-lamp.yaml @@ -0,0 +1,49 @@ +name: "WL-Lava Lamp" +source: + marketplace_id: "WatkinsLabs.lava-lamp" + version: "1.0.1" + installs: 18 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.lava-lamp" +colors: + bg: "#FCE8D7" + fg: "#805A3B" + black: "#000000" + red: "#B23030" + green: "#D6853F" + yellow: "#FF6400" + blue: "#FFA276" + magenta: "#FFD1B8" + cyan: "#FFA276" + white: "#805A3B" + brightBlack: "#666666" + brightRed: "#B23030" + brightGreen: "#D6853F" + brightYellow: "#FF6400" + brightBlue: "#FFA276" + brightMagenta: "#FFD1B8" + brightCyan: "#FFA276" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: 63 + contrast: + fg: 68.7 + black: 94.4 + red: 68.2 + green: 43.1 + yellow: 43.5 + blue: 26 + magenta: 7.4 + cyan: 26 + white: 68.7 + brightBlack: 67.1 + brightRed: 68.2 + brightGreen: 43.1 + brightYellow: 43.5 + brightBlue: 26 + brightMagenta: 7.4 + brightCyan: 26 + brightWhite: 10.7 diff --git a/themes/wl-mainframe-blue.yaml b/themes/wl-mainframe-blue.yaml new file mode 100644 index 00000000..44405d41 --- /dev/null +++ b/themes/wl-mainframe-blue.yaml @@ -0,0 +1,49 @@ +name: "WL-Mainframe Blue" +source: + marketplace_id: "WatkinsLabs.mainframe-blue" + version: "1.0.1" + installs: 35 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.mainframe-blue" +colors: + bg: "#132C33" + fg: "#FFFFFF" + black: "#000000" + red: "#C71C22" + green: "#008744" + yellow: "#FFC75F" + blue: "#33A2CC" + magenta: "#005799" + cyan: "#33A2CC" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#C71C22" + brightGreen: "#008744" + brightYellow: "#FFC75F" + brightBlue: "#33A2CC" + brightMagenta: "#005799" + brightCyan: "#33A2CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 218 + contrast: + fg: 104.2 + black: 0 + red: 21.1 + green: 26.6 + yellow: 74.5 + blue: 42.9 + magenta: 13.2 + cyan: 42.9 + white: 104.2 + brightBlack: 19.4 + brightRed: 21.1 + brightGreen: 26.6 + brightYellow: 74.5 + brightBlue: 42.9 + brightMagenta: 13.2 + brightCyan: 42.9 + brightWhite: 104.2 diff --git a/themes/wl-midnight-drive.yaml b/themes/wl-midnight-drive.yaml new file mode 100644 index 00000000..145998e7 --- /dev/null +++ b/themes/wl-midnight-drive.yaml @@ -0,0 +1,49 @@ +name: "WL-Midnight Drive" +source: + marketplace_id: "WatkinsLabs.midnight-drive" + version: "1.0.1" + installs: 25 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.midnight-drive" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FF8000" + blue: "#00FF00" + magenta: "#00FFFF" + cyan: "#00FF00" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FF8000" + brightBlue: "#00FF00" + brightMagenta: "#00FFFF" + brightCyan: "#00FF00" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 53.3 + blue: 86.5 + magenta: 92.2 + cyan: 86.5 + white: 107.9 + brightBlack: 23 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 53.3 + brightBlue: 86.5 + brightMagenta: 92.2 + brightCyan: 86.5 + brightWhite: 107.9 diff --git a/themes/wl-misty-mountain.yaml b/themes/wl-misty-mountain.yaml new file mode 100644 index 00000000..db47e4ab --- /dev/null +++ b/themes/wl-misty-mountain.yaml @@ -0,0 +1,49 @@ +name: "WL-Misty Mountain" +source: + marketplace_id: "WatkinsLabs.misty-mountain" + version: "1.0.1" + installs: 30 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.misty-mountain" +colors: + bg: "#1A2F1E" + fg: "#F5F6F7" + black: "#000000" + red: "#FF5349" + green: "#7FCD91" + yellow: "#FFAA00" + blue: "#98C79E" + magenta: "#6CAD7B" + cyan: "#98C79E" + white: "#F5F6F7" + brightBlack: "#666666" + brightRed: "#FF5349" + brightGreen: "#7FCD91" + brightYellow: "#FFAA00" + brightBlue: "#98C79E" + brightMagenta: "#6CAD7B" + brightCyan: "#98C79E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 149 + contrast: + fg: 97.9 + black: 0 + red: 39.9 + green: 62.4 + yellow: 62.5 + blue: 62.1 + magenta: 46.3 + cyan: 62.1 + white: 97.9 + brightBlack: 19.1 + brightRed: 39.9 + brightGreen: 62.4 + brightYellow: 62.5 + brightBlue: 62.1 + brightMagenta: 46.3 + brightCyan: 62.1 + brightWhite: 103.9 diff --git a/themes/wl-moon-phase.yaml b/themes/wl-moon-phase.yaml new file mode 100644 index 00000000..55f558b0 --- /dev/null +++ b/themes/wl-moon-phase.yaml @@ -0,0 +1,49 @@ +name: "WL-Moon Phase" +source: + marketplace_id: "WatkinsLabs.moon-phase" + version: "1.0.1" + installs: 26 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.moon-phase" +colors: + bg: "#1F1F2E" + fg: "#D9D9E5" + black: "#000000" + red: "#FF5555" + green: "#50FA7B" + yellow: "#FFB86C" + blue: "#505064" + magenta: "#6A6775" + cyan: "#505064" + white: "#D9D9E5" + brightBlack: "#666666" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#FFB86C" + brightBlue: "#505064" + brightMagenta: "#6A6775" + brightCyan: "#505064" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 284 + contrast: + fg: 81.9 + black: 0 + red: 42.2 + green: 83.7 + yellow: 70.3 + blue: 12.6 + magenta: 22 + cyan: 12.6 + white: 81.9 + brightBlack: 20.9 + brightRed: 42.2 + brightGreen: 83.7 + brightYellow: 70.3 + brightBlue: 12.6 + brightMagenta: 22 + brightCyan: 12.6 + brightWhite: 105.7 diff --git a/themes/wl-neon-cascade.yaml b/themes/wl-neon-cascade.yaml new file mode 100644 index 00000000..40dc22e7 --- /dev/null +++ b/themes/wl-neon-cascade.yaml @@ -0,0 +1,49 @@ +name: "WL-Neon Cascade" +source: + marketplace_id: "WatkinsLabs.neon-cascade" + version: "1.0.1" + installs: 67 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.neon-cascade" +colors: + bg: "#000033" + fg: "#00FFFC" + black: "#000000" + red: "#FF0066" + green: "#00FF66" + yellow: "#FF3300" + blue: "#FF66CC" + magenta: "#33CCCC" + cyan: "#FF66CC" + white: "#00FFFC" + brightBlack: "#666666" + brightRed: "#FF0066" + brightGreen: "#00FF66" + brightYellow: "#FF3300" + brightBlue: "#FF66CC" + brightMagenta: "#33CCCC" + brightCyan: "#FF66CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 264 + contrast: + fg: 91.5 + black: 0 + red: 38 + green: 86.6 + yellow: 38.9 + blue: 51.2 + magenta: 64.3 + cyan: 51.2 + white: 91.5 + brightBlack: 22.5 + brightRed: 38 + brightGreen: 86.6 + brightYellow: 38.9 + brightBlue: 51.2 + brightMagenta: 64.3 + brightCyan: 51.2 + brightWhite: 107.4 diff --git a/themes/wl-neon-sign.yaml b/themes/wl-neon-sign.yaml new file mode 100644 index 00000000..5dd5fcff --- /dev/null +++ b/themes/wl-neon-sign.yaml @@ -0,0 +1,49 @@ +name: "WL-Neon Sign" +source: + marketplace_id: "WatkinsLabs.neon-sign" + version: "1.0.1" + installs: 30 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.neon-sign" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF56" + yellow: "#FFC700" + blue: "#00FF1E" + magenta: "#00FFCF" + cyan: "#00FF1E" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#00FF56" + brightYellow: "#FFC700" + brightBlue: "#00FF1E" + brightMagenta: "#00FFCF" + brightCyan: "#00FF1E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.9 + yellow: 77.5 + blue: 86.5 + magenta: 90 + cyan: 86.5 + white: 107.9 + brightBlack: 23 + brightRed: 37.5 + brightGreen: 86.9 + brightYellow: 77.5 + brightBlue: 86.5 + brightMagenta: 90 + brightCyan: 86.5 + brightWhite: 107.9 diff --git a/themes/wl-neon-tokyo.yaml b/themes/wl-neon-tokyo.yaml new file mode 100644 index 00000000..05de8a5d --- /dev/null +++ b/themes/wl-neon-tokyo.yaml @@ -0,0 +1,49 @@ +name: "WL-Neon Tokyo" +source: + marketplace_id: "WatkinsLabs.neon-tokyo" + version: "1.0.1" + installs: 63 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.neon-tokyo" +colors: + bg: "#1A1A2E" + fg: "#E0E0E0" + black: "#000000" + red: "#FF414D" + green: "#4CD137" + yellow: "#FF9F43" + blue: "#6639A6" + magenta: "#E94560" + cyan: "#6639A6" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF414D" + brightGreen: "#4CD137" + brightYellow: "#FF9F43" + brightBlue: "#6639A6" + brightMagenta: "#E94560" + brightCyan: "#6639A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 283 + contrast: + fg: 86.3 + black: 0 + red: 39.8 + green: 62.4 + yellow: 61.4 + blue: 14 + magenta: 35.5 + cyan: 14 + white: 86.3 + brightBlack: 21.4 + brightRed: 39.8 + brightGreen: 62.4 + brightYellow: 61.4 + brightBlue: 14 + brightMagenta: 35.5 + brightCyan: 14 + brightWhite: 106.3 diff --git a/themes/wl-nova-burst.yaml b/themes/wl-nova-burst.yaml new file mode 100644 index 00000000..9738574c --- /dev/null +++ b/themes/wl-nova-burst.yaml @@ -0,0 +1,49 @@ +name: "WL-Nova Burst" +source: + marketplace_id: "WatkinsLabs.nova-burst" + version: "1.0.1" + installs: 14 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.nova-burst" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0033" + green: "#00FF00" + yellow: "#FFD700" + blue: "#FF9000" + magenta: "#FFC600" + cyan: "#FF9000" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF0033" + brightGreen: "#00FF00" + brightYellow: "#FFD700" + brightBlue: "#FF9000" + brightMagenta: "#FFC600" + brightCyan: "#FF9000" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 37.7 + green: 86.5 + yellow: 84.3 + blue: 57.9 + magenta: 77.1 + cyan: 57.9 + white: 107.9 + brightBlack: 23 + brightRed: 37.7 + brightGreen: 86.5 + brightYellow: 84.3 + brightBlue: 57.9 + brightMagenta: 77.1 + brightCyan: 57.9 + brightWhite: 107.9 diff --git a/themes/wl-pastel-dream.yaml b/themes/wl-pastel-dream.yaml new file mode 100644 index 00000000..be9e7786 --- /dev/null +++ b/themes/wl-pastel-dream.yaml @@ -0,0 +1,49 @@ +name: "WL-Pastel Dream" +source: + marketplace_id: "WatkinsLabs.pastel-dream" + version: "1.0.1" + installs: 35 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.pastel-dream" +colors: + bg: "#FCF5EF" + fg: "#383A42" + black: "#000000" + red: "#FF6666" + green: "#66CC99" + yellow: "#FFCC66" + blue: "#99FFCC" + magenta: "#99CCFF" + cyan: "#99FFCC" + white: "#383A42" + brightBlack: "#666666" + brightRed: "#FF6666" + brightGreen: "#66CC99" + brightYellow: "#FFCC66" + brightBlue: "#99FFCC" + brightMagenta: "#99CCFF" + brightCyan: "#99FFCC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 90.9 + black: 100.7 + red: 48.6 + green: 32.4 + yellow: 17.6 + blue: 0 + magenta: 24.6 + cyan: 0 + white: 90.9 + brightBlack: 73.4 + brightRed: 48.6 + brightGreen: 32.4 + brightYellow: 17.6 + brightBlue: 0 + brightMagenta: 24.6 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/wl-pixel-punch.yaml b/themes/wl-pixel-punch.yaml new file mode 100644 index 00000000..073c2162 --- /dev/null +++ b/themes/wl-pixel-punch.yaml @@ -0,0 +1,49 @@ +name: "WL-Pixel Punch" +source: + marketplace_id: "WatkinsLabs.pixel-punch" + version: "1.0.1" + installs: 50 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.pixel-punch" +colors: + bg: "#0A063B" + fg: "#D8E0EA" + black: "#000000" + red: "#E82741" + green: "#1ED2F4" + yellow: "#F0DF2D" + blue: "#1ED2F4" + magenta: "#F0DF2D" + cyan: "#1ED2F4" + white: "#D8E0EA" + brightBlack: "#666666" + brightRed: "#E82741" + brightGreen: "#1ED2F4" + brightYellow: "#F0DF2D" + brightBlue: "#1ED2F4" + brightMagenta: "#F0DF2D" + brightCyan: "#1ED2F4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 86.5 + black: 0 + red: 32.5 + green: 68.7 + yellow: 84.8 + blue: 68.7 + magenta: 84.8 + cyan: 68.7 + white: 86.5 + brightBlack: 22.3 + brightRed: 32.5 + brightGreen: 68.7 + brightYellow: 84.8 + brightBlue: 68.7 + brightMagenta: 84.8 + brightCyan: 68.7 + brightWhite: 107.1 diff --git a/themes/wl-plasma-storm.yaml b/themes/wl-plasma-storm.yaml new file mode 100644 index 00000000..8a6b64fb --- /dev/null +++ b/themes/wl-plasma-storm.yaml @@ -0,0 +1,49 @@ +name: "WL-Plasma Storm" +source: + marketplace_id: "WatkinsLabs.plasma-storm" + version: "1.0.1" + installs: 24 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.plasma-storm" +colors: + bg: "#2C0937" + fg: "#D4D4D4" + black: "#000000" + red: "#FF0061" + green: "#AB5BC4" + yellow: "#FF47CF" + blue: "#7F2480" + magenta: "#A249C8" + cyan: "#7F2480" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF0061" + brightGreen: "#AB5BC4" + brightYellow: "#FF47CF" + brightBlue: "#7F2480" + brightMagenta: "#A249C8" + brightCyan: "#7F2480" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 317 + contrast: + fg: 78.9 + black: 0 + red: 36.8 + green: 31.6 + yellow: 45.1 + blue: 12.2 + magenta: 27 + cyan: 12.2 + white: 106.2 + brightBlack: 21.4 + brightRed: 36.8 + brightGreen: 31.6 + brightYellow: 45.1 + brightBlue: 12.2 + brightMagenta: 27 + brightCyan: 12.2 + brightWhite: 106.2 diff --git a/themes/wl-prism-break.yaml b/themes/wl-prism-break.yaml new file mode 100644 index 00000000..5e99fad0 --- /dev/null +++ b/themes/wl-prism-break.yaml @@ -0,0 +1,49 @@ +name: "WL-Prism Break" +source: + marketplace_id: "WatkinsLabs.prism-break" + version: "1.0.1" + installs: 28 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.prism-break" +colors: + bg: "#2C2C34" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF66" + yellow: "#FFAA00" + blue: "#00C1FF" + magenta: "#FF7700" + cyan: "#00C1FF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#00FF66" + brightYellow: "#FFAA00" + brightBlue: "#00C1FF" + brightMagenta: "#FF7700" + brightCyan: "#00C1FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 103.5 + black: 0 + red: 33.2 + green: 82.8 + yellow: 62.1 + blue: 57.9 + magenta: 46.6 + cyan: 57.9 + white: 103.5 + brightBlack: 18.7 + brightRed: 33.2 + brightGreen: 82.8 + brightYellow: 62.1 + brightBlue: 57.9 + brightMagenta: 46.6 + brightCyan: 57.9 + brightWhite: 103.5 diff --git a/themes/wl-pulse-wave.yaml b/themes/wl-pulse-wave.yaml new file mode 100644 index 00000000..66a5ca4b --- /dev/null +++ b/themes/wl-pulse-wave.yaml @@ -0,0 +1,49 @@ +name: "WL-Pulse Wave" +source: + marketplace_id: "WatkinsLabs.pulse-wave" + version: "1.0.1" + installs: 30 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.pulse-wave" +colors: + bg: "#1F2041" + fg: "#FFFFFF" + black: "#000000" + red: "#FF5F5F" + green: "#29FF88" + yellow: "#FFC766" + blue: "#2DE1FC" + magenta: "#FCAB10" + cyan: "#2DE1FC" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF5F5F" + brightGreen: "#29FF88" + brightYellow: "#FFC766" + brightBlue: "#2DE1FC" + brightMagenta: "#FCAB10" + brightCyan: "#2DE1FC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 280 + contrast: + fg: 105.2 + black: 0 + red: 43.7 + green: 85.3 + yellow: 75.5 + blue: 74.5 + magenta: 63.6 + cyan: 74.5 + white: 105.2 + brightBlack: 20.3 + brightRed: 43.7 + brightGreen: 85.3 + brightYellow: 75.5 + brightBlue: 74.5 + brightMagenta: 63.6 + brightCyan: 74.5 + brightWhite: 105.2 diff --git a/themes/wl-punch-tape.yaml b/themes/wl-punch-tape.yaml new file mode 100644 index 00000000..edac4c6d --- /dev/null +++ b/themes/wl-punch-tape.yaml @@ -0,0 +1,49 @@ +name: "WL-Punch Tape" +source: + marketplace_id: "WatkinsLabs.punch-tape" + version: "1.0.1" + installs: 106 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.punch-tape" +colors: + bg: "#F5DEB3" + fg: "#000000" + black: "#000000" + red: "#FF0000" + green: "#008000" + yellow: "#FFA500" + blue: "#708090" + magenta: "#A0522D" + cyan: "#708090" + white: "#000000" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#008000" + brightYellow: "#FFA500" + brightBlue: "#708090" + brightMagenta: "#A0522D" + brightCyan: "#708090" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: 83 + contrast: + fg: 88.1 + black: 88.1 + red: 46.2 + green: 56.7 + yellow: 19.8 + blue: 49.9 + magenta: 59.7 + cyan: 49.9 + white: 88.1 + brightBlack: 60.8 + brightRed: 46.2 + brightGreen: 56.7 + brightYellow: 19.8 + brightBlue: 49.9 + brightMagenta: 59.7 + brightCyan: 49.9 + brightWhite: 17.8 diff --git a/themes/wl-retro-arcade.yaml b/themes/wl-retro-arcade.yaml new file mode 100644 index 00000000..4e0846e2 --- /dev/null +++ b/themes/wl-retro-arcade.yaml @@ -0,0 +1,49 @@ +name: "WL-Retro Arcade" +source: + marketplace_id: "WatkinsLabs.retro-arcade" + version: "1.0.1" + installs: 88 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.retro-arcade" +colors: + bg: "#07273E" + fg: "#EFEFEF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FF8000" + blue: "#6BFF8B" + magenta: "#FF6B4F" + cyan: "#6BFF8B" + white: "#EFEFEF" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FF8000" + brightBlue: "#6BFF8B" + brightMagenta: "#FF6B4F" + brightCyan: "#6BFF8B" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 244 + contrast: + fg: 94.3 + black: 0 + red: 34.5 + green: 83.4 + yellow: 50.2 + blue: 86.8 + magenta: 45.5 + cyan: 86.8 + white: 94.3 + brightBlack: 20 + brightRed: 34.5 + brightGreen: 83.4 + brightYellow: 50.2 + brightBlue: 86.8 + brightMagenta: 45.5 + brightCyan: 86.8 + brightWhite: 104.8 diff --git a/themes/wl-retro-future.yaml b/themes/wl-retro-future.yaml new file mode 100644 index 00000000..3420f9c0 --- /dev/null +++ b/themes/wl-retro-future.yaml @@ -0,0 +1,49 @@ +name: "WL-Retro Future" +source: + marketplace_id: "WatkinsLabs.retro-future" + version: "1.0.1" + installs: 64 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.retro-future" +colors: + bg: "#202833" + fg: "#A2ADD0" + black: "#000000" + red: "#F74E52" + green: "#69BF87" + yellow: "#F9AE58" + blue: "#F0C674" + magenta: "#9DB4CC" + cyan: "#F0C674" + white: "#A2ADD0" + brightBlack: "#666666" + brightRed: "#F74E52" + brightGreen: "#69BF87" + brightYellow: "#F9AE58" + brightBlue: "#F0C674" + brightMagenta: "#9DB4CC" + brightCyan: "#F0C674" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 256 + contrast: + fg: 54.9 + black: 0 + red: 38 + green: 55 + yellow: 64 + blue: 72.2 + magenta: 57 + cyan: 72.2 + white: 54.9 + brightBlack: 19.7 + brightRed: 38 + brightGreen: 55 + brightYellow: 64 + brightBlue: 72.2 + brightMagenta: 57 + brightCyan: 72.2 + brightWhite: 104.5 diff --git a/themes/wl-signal-wave.yaml b/themes/wl-signal-wave.yaml new file mode 100644 index 00000000..d7d290b1 --- /dev/null +++ b/themes/wl-signal-wave.yaml @@ -0,0 +1,49 @@ +name: "WL-Signal Wave" +source: + marketplace_id: "WatkinsLabs.signal-wave" + version: "1.0.1" + installs: 40 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.signal-wave" +colors: + bg: "#050505" + fg: "#7FFF00" + black: "#000000" + red: "#FF3300" + green: "#33CC33" + yellow: "#FFCC00" + blue: "#CCFF00" + magenta: "#99FF00" + cyan: "#CCFF00" + white: "#7FFF00" + brightBlack: "#666666" + brightRed: "#FF3300" + brightGreen: "#33CC33" + brightYellow: "#FFCC00" + brightBlue: "#CCFF00" + brightMagenta: "#99FF00" + brightCyan: "#CCFF00" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 89.6 + black: 0 + red: 39.4 + green: 60.9 + yellow: 79.6 + blue: 96.1 + magenta: 91.4 + cyan: 96.1 + white: 89.6 + brightBlack: 23 + brightRed: 39.4 + brightGreen: 60.9 + brightYellow: 79.6 + brightBlue: 96.1 + brightMagenta: 91.4 + brightCyan: 96.1 + brightWhite: 107.9 diff --git a/themes/wl-silk-road.yaml b/themes/wl-silk-road.yaml new file mode 100644 index 00000000..bd61565c --- /dev/null +++ b/themes/wl-silk-road.yaml @@ -0,0 +1,49 @@ +name: "WL-Silk Road" +source: + marketplace_id: "WatkinsLabs.silk-road" + version: "1.0.1" + installs: 32 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.silk-road" +colors: + bg: "#F4CCA1" + fg: "#6A4E42" + black: "#000000" + red: "#E74C3C" + green: "#27AE60" + yellow: "#E67E22" + blue: "#DD6B3D" + magenta: "#FCA15D" + cyan: "#DD6B3D" + white: "#6A4E42" + brightBlack: "#666666" + brightRed: "#E74C3C" + brightGreen: "#27AE60" + brightYellow: "#E67E22" + brightBlue: "#DD6B3D" + brightMagenta: "#FCA15D" + brightCyan: "#DD6B3D" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: 69 + contrast: + fg: 60.5 + black: 80.4 + red: 38.9 + green: 28.8 + yellow: 28.4 + blue: 34.8 + magenta: 13.3 + cyan: 34.8 + white: 60.5 + brightBlack: 53.1 + brightRed: 38.9 + brightGreen: 28.8 + brightYellow: 28.4 + brightBlue: 34.8 + brightMagenta: 13.3 + brightCyan: 34.8 + brightWhite: 26.5 diff --git a/themes/wl-synthwave-rider.yaml b/themes/wl-synthwave-rider.yaml new file mode 100644 index 00000000..b9e6fa41 --- /dev/null +++ b/themes/wl-synthwave-rider.yaml @@ -0,0 +1,49 @@ +name: "WL-Synthwave Rider" +source: + marketplace_id: "WatkinsLabs.synthwave-rider" + version: "1.0.1" + installs: 91 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.synthwave-rider" +colors: + bg: "#090A31" + fg: "#EEBBF4" + black: "#000000" + red: "#FF073A" + green: "#21FC0D" + yellow: "#FF5722" + blue: "#74F9FF" + magenta: "#1EC6EA" + cyan: "#74F9FF" + white: "#EEBBF4" + brightBlack: "#666666" + brightRed: "#FF073A" + brightGreen: "#21FC0D" + brightYellow: "#FF5722" + brightBlue: "#74F9FF" + brightMagenta: "#1EC6EA" + brightCyan: "#74F9FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 274 + contrast: + fg: 75 + black: 0 + red: 37.2 + green: 84.4 + yellow: 43.6 + blue: 91 + magenta: 62.8 + cyan: 91 + white: 75 + brightBlack: 22.5 + brightRed: 37.2 + brightGreen: 84.4 + brightYellow: 43.6 + brightBlue: 91 + brightMagenta: 62.8 + brightCyan: 91 + brightWhite: 107.3 diff --git a/themes/wl-tape-deck.yaml b/themes/wl-tape-deck.yaml new file mode 100644 index 00000000..78dcc5d9 --- /dev/null +++ b/themes/wl-tape-deck.yaml @@ -0,0 +1,49 @@ +name: "WL-Tape Deck" +source: + marketplace_id: "WatkinsLabs.tape-deck" + version: "1.0.1" + installs: 37 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.tape-deck" +colors: + bg: "#4E443B" + fg: "#D3D5D7" + black: "#000000" + red: "#DE6449" + green: "#759C75" + yellow: "#E5AE39" + blue: "#D1C1AC" + magenta: "#736359" + cyan: "#D1C1AC" + white: "#D3D5D7" + brightBlack: "#666666" + brightRed: "#DE6449" + brightGreen: "#759C75" + brightYellow: "#E5AE39" + brightBlue: "#D1C1AC" + brightMagenta: "#736359" + brightCyan: "#D1C1AC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 64 + contrast: + fg: 69.3 + black: 12 + red: 28.3 + green: 32.1 + yellow: 51.9 + blue: 58.8 + magenta: 11.4 + cyan: 58.8 + white: 69.3 + brightBlack: 11.4 + brightRed: 28.3 + brightGreen: 32.1 + brightYellow: 51.9 + brightBlue: 58.8 + brightMagenta: 11.4 + brightCyan: 58.8 + brightWhite: 96.2 diff --git a/themes/wl-terminal-green.yaml b/themes/wl-terminal-green.yaml new file mode 100644 index 00000000..8aec98ff --- /dev/null +++ b/themes/wl-terminal-green.yaml @@ -0,0 +1,49 @@ +name: "WL-Terminal Green" +source: + marketplace_id: "WatkinsLabs.terminal-green" + version: "1.0.1" + installs: 147 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.terminal-green" +colors: + bg: "#000000" + fg: "#00FF00" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#00CC66" + magenta: "#33CC33" + cyan: "#00CC66" + white: "#00FF00" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#00CC66" + brightMagenta: "#33CC33" + brightCyan: "#00CC66" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 86.5 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 61.1 + magenta: 60.9 + cyan: 61.1 + white: 86.5 + brightBlack: 23 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 61.1 + brightMagenta: 60.9 + brightCyan: 61.1 + brightWhite: 107.9 diff --git a/themes/wl-vacuum-glow.yaml b/themes/wl-vacuum-glow.yaml new file mode 100644 index 00000000..87c4c04d --- /dev/null +++ b/themes/wl-vacuum-glow.yaml @@ -0,0 +1,49 @@ +name: "WL-Vacuum Glow" +source: + marketplace_id: "WatkinsLabs.vacuum-glow" + version: "1.0.1" + installs: 36 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.vacuum-glow" +colors: + bg: "#221B15" + fg: "#FF9A58" + black: "#000000" + red: "#FF3232" + green: "#AAFF32" + yellow: "#FF9632" + blue: "#FFC299" + magenta: "#FFAA69" + cyan: "#FFC299" + white: "#FF9A58" + brightBlack: "#666666" + brightRed: "#FF3232" + brightGreen: "#AAFF32" + brightYellow: "#FF9632" + brightBlue: "#FFC299" + brightMagenta: "#FFAA69" + brightCyan: "#FFC299" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 63 + contrast: + fg: 60 + black: 0 + red: 37.9 + green: 91.3 + yellow: 58.3 + blue: 75.7 + magenta: 65.7 + cyan: 75.7 + white: 60 + brightBlack: 21.4 + brightRed: 37.9 + brightGreen: 91.3 + brightYellow: 58.3 + brightBlue: 75.7 + brightMagenta: 65.7 + brightCyan: 75.7 + brightWhite: 106.3 diff --git a/themes/wl-velvet-night.yaml b/themes/wl-velvet-night.yaml new file mode 100644 index 00000000..12f6213c --- /dev/null +++ b/themes/wl-velvet-night.yaml @@ -0,0 +1,49 @@ +name: "WL-Velvet Night" +source: + marketplace_id: "WatkinsLabs.velvet-night" + version: "1.0.1" + installs: 25 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.velvet-night" +colors: + bg: "#240046" + fg: "#FFFFFF" + black: "#000000" + red: "#990000" + green: "#00B300" + yellow: "#FF5733" + blue: "#5A189A" + magenta: "#800080" + cyan: "#5A189A" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#990000" + brightGreen: "#00B300" + brightYellow: "#FF5733" + brightBlue: "#5A189A" + brightMagenta: "#800080" + brightCyan: "#5A189A" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 300 + contrast: + fg: 106.2 + black: 0 + red: 12.7 + green: 46.9 + yellow: 42.7 + blue: 8.1 + magenta: 11 + cyan: 8.1 + white: 106.2 + brightBlack: 21.4 + brightRed: 12.7 + brightGreen: 46.9 + brightYellow: 42.7 + brightBlue: 8.1 + brightMagenta: 11 + brightCyan: 8.1 + brightWhite: 106.2 diff --git a/themes/wl-volt-surge.yaml b/themes/wl-volt-surge.yaml new file mode 100644 index 00000000..7207da4a --- /dev/null +++ b/themes/wl-volt-surge.yaml @@ -0,0 +1,49 @@ +name: "WL-Volt Surge" +source: + marketplace_id: "WatkinsLabs.volt-surge" + version: "1.0.1" + installs: 16 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.volt-surge" +colors: + bg: "#000000" + fg: "#FFFF00" + black: "#000000" + red: "#FF0000" + green: "#008000" + yellow: "#FF7700" + blue: "#FFAA00" + magenta: "#FFCC00" + cyan: "#FFAA00" + white: "#FFFF00" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#008000" + brightYellow: "#FF7700" + brightBlue: "#FFAA00" + brightMagenta: "#FFCC00" + brightCyan: "#FFAA00" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 102.7 + black: 0 + red: 37.5 + green: 27.1 + yellow: 50.9 + blue: 66.5 + magenta: 79.6 + cyan: 66.5 + white: 102.7 + brightBlack: 23 + brightRed: 37.5 + brightGreen: 27.1 + brightYellow: 50.9 + brightBlue: 66.5 + brightMagenta: 79.6 + brightCyan: 66.5 + brightWhite: 107.9 diff --git a/themes/wl-zen-twilight.yaml b/themes/wl-zen-twilight.yaml new file mode 100644 index 00000000..c2216b8d --- /dev/null +++ b/themes/wl-zen-twilight.yaml @@ -0,0 +1,49 @@ +name: "WL-Zen Twilight" +source: + marketplace_id: "WatkinsLabs.zen-twilight" + version: "1.0.1" + installs: 20 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.zen-twilight" +colors: + bg: "#6F5B4B" + fg: "#F4EAE6" + black: "#000000" + red: "#D7263D" + green: "#69995D" + yellow: "#EF7C26" + blue: "#FF9188" + magenta: "#EB897C" + cyan: "#FF9188" + white: "#F4EAE6" + brightBlack: "#666666" + brightRed: "#D7263D" + brightGreen: "#69995D" + brightYellow: "#EF7C26" + brightBlue: "#FF9188" + brightMagenta: "#EB897C" + brightCyan: "#FF9188" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 60 + contrast: + fg: 74.5 + black: 22.2 + red: 8.3 + green: 20.2 + yellow: 28 + blue: 38.8 + magenta: 32.3 + cyan: 38.8 + white: 74.5 + brightBlack: 0 + brightRed: 8.3 + brightGreen: 20.2 + brightYellow: 28 + brightBlue: 38.8 + brightMagenta: 32.3 + brightCyan: 38.8 + brightWhite: 86.9 diff --git a/themes/wolves-league-dark.yaml b/themes/wolves-league-dark.yaml new file mode 100644 index 00000000..7f7ac095 --- /dev/null +++ b/themes/wolves-league-dark.yaml @@ -0,0 +1,49 @@ +name: "Wolves League Dark" +source: + marketplace_id: "WolvesLeague.wolves-league" + version: "3.0.0" + installs: 1845 + author: "Wolves League" + repo: "https://github.com/WolvesLeague/wolves-league-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=WolvesLeague.wolves-league" +colors: + bg: "#141516" + fg: "#BCBFC2" + black: "#141516" + red: "#FF5252" + green: "#29D196" + yellow: "#FFBA52" + blue: "#52A0FF" + magenta: "#FF85C4" + cyan: "#3DD6F5" + white: "#BCBFC2" + brightBlack: "#BCBFC2" + brightRed: "#FF0000" + brightGreen: "#66FFC9" + brightYellow: "#FFCE85" + brightBlue: "#85BCFF" + brightMagenta: "#F061AB" + brightCyan: "#85EBFF" + brightWhite: "#F8F8FF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 67 + black: 0 + red: 43 + green: 64.1 + yellow: 72 + blue: 49.3 + magenta: 57.8 + cyan: 71.1 + white: 67 + brightBlack: 67 + brightRed: 36.7 + brightGreen: 90.8 + brightYellow: 80.9 + brightBlue: 63.6 + brightMagenta: 45.1 + brightCyan: 84.8 + brightWhite: 102.8 diff --git a/themes/woodsmoke.yaml b/themes/woodsmoke.yaml new file mode 100644 index 00000000..c3d13e07 --- /dev/null +++ b/themes/woodsmoke.yaml @@ -0,0 +1,49 @@ +name: "Woodsmoke" +source: + marketplace_id: "QuentinLowette.woodsmoke" + version: "0.2.1" + installs: 483 + author: "Quentin Lowette" + repo: "https://github.com/quentinlowette/woodsmoke" + url: "https://marketplace.visualstudio.com/items?itemName=QuentinLowette.woodsmoke" +colors: + bg: "#16191C" + fg: "#F6F8FA" + black: "#212121" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#EEFFFF" + brightBlack: "#4A4A4A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 101.9 + black: 0 + red: 46.4 + green: 84 + yellow: 78.8 + blue: 55.7 + magenta: 53.6 + cyan: 78.1 + white: 104.4 + brightBlack: 10.8 + brightRed: 46.4 + brightGreen: 84 + brightYellow: 78.8 + brightBlue: 55.7 + brightMagenta: 53.6 + brightCyan: 78.1 + brightWhite: 106.7 diff --git a/themes/wookie.yaml b/themes/wookie.yaml new file mode 100644 index 00000000..6f513771 --- /dev/null +++ b/themes/wookie.yaml @@ -0,0 +1,49 @@ +name: "Wookie" +source: + marketplace_id: "krolick.theme-wookie" + version: "1.1.3" + installs: 418 + author: "Alex Krolick" + repo: "https://github.com/alexkrolick/theme-wookie" + url: "https://marketplace.visualstudio.com/items?itemName=krolick.theme-wookie" +colors: + bg: "#262422" + fg: "#AF9176" + black: "#282A36" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#F1F1F0" + brightBlack: "#686868" + brightRed: "#FF5C57" + brightGreen: "#5AF78E" + brightYellow: "#F3F99D" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 43.1 + black: 0 + red: 42.9 + green: 82.3 + yellow: 96.9 + blue: 63.7 + magenta: 49.1 + cyan: 85.3 + white: 95.9 + brightBlack: 21.1 + brightRed: 42.9 + brightGreen: 82.3 + brightYellow: 96.9 + brightBlue: 63.7 + brightMagenta: 49.1 + brightCyan: 85.3 + brightWhite: 94.9 diff --git a/themes/word-color-theme.yaml b/themes/word-color-theme.yaml new file mode 100644 index 00000000..470070cc --- /dev/null +++ b/themes/word-color-theme.yaml @@ -0,0 +1,49 @@ +name: "word-color-theme" +source: + marketplace_id: "coastermcgee.word-theme" + version: "1.3.6" + installs: 54117 + author: "Coaster McGee" + repo: "https://github.com/coastermcgee/vscode-word-theme" + url: "https://marketplace.visualstudio.com/items?itemName=coastermcgee.word-theme" +colors: + bg: "#0000AA" + fg: "#FFFFFF" + black: "#000000" + red: "#AA0000" + green: "#00AA00" + yellow: "#E8E851" + blue: "#0000AA" + magenta: "#AA00AA" + cyan: "#00AAAA" + white: "#FFFFFF" + brightBlack: "#AAAAAA" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 100.3 + black: 0 + red: 10.2 + green: 37 + yellow: 81.2 + blue: 0 + magenta: 15 + cyan: 40.1 + white: 100.3 + brightBlack: 48.7 + brightRed: 36.8 + brightGreen: 80.6 + brightYellow: 95.5 + brightBlue: 19.8 + brightMagenta: 44.3 + brightCyan: 85.8 + brightWhite: 100.3 diff --git a/themes/word-dark-theme.yaml b/themes/word-dark-theme.yaml new file mode 100644 index 00000000..f50fc2ec --- /dev/null +++ b/themes/word-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "word-dark-theme" +source: + marketplace_id: "simen.theme-simen" + version: "1.2.0" + installs: 54 + author: "simen" + repo: "https://github.com/microsoft/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=simen.theme-simen" +colors: + bg: "#262626" + fg: "#F6F6F6" + black: "#000000" + red: "#ED7D31" + green: "#FFFFFF" + yellow: "#FFC000" + blue: "#7FA5F9" + magenta: "#C19DEC" + cyan: "#5B9BD5" + white: "#F6F6F6" + brightBlack: "#A5A5A5" + brightRed: "#F38784" + brightGreen: "#B0E18D" + brightYellow: "#FFD965" + brightBlue: "#8EAADB" + brightMagenta: "#CEB0F4" + brightCyan: "#A7C6F1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 98.9 + black: 0 + red: 45.8 + green: 104.8 + yellow: 71.7 + blue: 51.3 + magenta: 54.6 + cyan: 42.7 + white: 98.9 + brightBlack: 50.4 + brightRed: 51.3 + brightGreen: 76.8 + brightYellow: 82.7 + brightBlue: 52.6 + brightMagenta: 63.7 + brightCyan: 67.7 + brightWhite: 104.8 diff --git a/themes/wordsmith-dark.yaml b/themes/wordsmith-dark.yaml new file mode 100644 index 00000000..70b58208 --- /dev/null +++ b/themes/wordsmith-dark.yaml @@ -0,0 +1,49 @@ +name: "Wordsmith Dark" +source: + marketplace_id: "arzg.wordsmith" + version: "0.1.0" + installs: 716 + author: "arzg" + repo: "https://github.com/arzg/wordsmith" + url: "https://marketplace.visualstudio.com/items?itemName=arzg.wordsmith" +colors: + bg: "#1A1A1A" + fg: "#CCCCCC" + black: "#1A1A1A" + red: "#D98567" + green: "#82A56F" + yellow: "#C1944E" + blue: "#7B9FC2" + magenta: "#BA8DB3" + cyan: "#16BDEC" + white: "#CCCCCC" + brightBlack: "#707070" + brightRed: "#D98567" + brightGreen: "#82A56F" + brightYellow: "#C1944E" + brightBlue: "#7B9FC2" + brightMagenta: "#BA8DB3" + brightCyan: "#16BDEC" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "blue" + hue: null + contrast: + fg: 74.3 + black: 0 + red: 46.9 + green: 47 + yellow: 47.4 + blue: 47.1 + magenta: 46.9 + cyan: 58 + white: 74.3 + brightBlack: 26.1 + brightRed: 46.9 + brightGreen: 47 + brightYellow: 47.4 + brightBlue: 47.1 + brightMagenta: 46.9 + brightCyan: 58 + brightWhite: 74.3 diff --git a/themes/wordsmith-light.yaml b/themes/wordsmith-light.yaml new file mode 100644 index 00000000..c0cbb32f --- /dev/null +++ b/themes/wordsmith-light.yaml @@ -0,0 +1,49 @@ +name: "Wordsmith Light" +source: + marketplace_id: "arzg.wordsmith" + version: "0.1.0" + installs: 716 + author: "arzg" + repo: "https://github.com/arzg/wordsmith" + url: "https://marketplace.visualstudio.com/items?itemName=arzg.wordsmith" +colors: + bg: "#F7F7F7" + fg: "#1A1A1A" + black: "#F7F7F7" + red: "#CB4819" + green: "#3F831E" + yellow: "#A66501" + blue: "#3476B9" + magenta: "#B24FA3" + cyan: "#16BDEC" + white: "#1A1A1A" + brightBlack: "#C7C4C2" + brightRed: "#CB4819" + brightGreen: "#3F831E" + brightYellow: "#A66501" + brightBlue: "#3476B9" + brightMagenta: "#B24FA3" + brightCyan: "#16BDEC" + brightWhite: "#1A1A1A" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.5 + black: 0 + red: 66.7 + green: 67.5 + yellow: 67.4 + blue: 67.8 + magenta: 66.8 + cyan: 38 + white: 99.5 + brightBlack: 26.7 + brightRed: 66.7 + brightGreen: 67.5 + brightYellow: 67.4 + brightBlue: 67.8 + brightMagenta: 66.8 + brightCyan: 38 + brightWhite: 99.5 diff --git a/themes/wrkspace-theme.yaml b/themes/wrkspace-theme.yaml new file mode 100644 index 00000000..41ef23a1 --- /dev/null +++ b/themes/wrkspace-theme.yaml @@ -0,0 +1,49 @@ +name: "wrkspace-theme" +source: + marketplace_id: "Wrkspace.wrkspace-theme" + version: "0.0.2" + installs: 20 + author: "Wrkspace" + repo: "https://github.com/wrkspace-co/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Wrkspace.wrkspace-theme" +colors: + bg: "#0F0F0F" + fg: "#6F6F6F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 26.6 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/wuthering-waves-aemeath-dark.yaml b/themes/wuthering-waves-aemeath-dark.yaml new file mode 100644 index 00000000..688fb562 --- /dev/null +++ b/themes/wuthering-waves-aemeath-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Aemeath (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#1A1418" + fg: "#F5EBF0" + black: "#1A1418" + red: "#F5A8C8" + green: "#88C8B0" + yellow: "#FDD7E8" + blue: "#77C1C8" + magenta: "#E488AC" + cyan: "#C8F9FC" + white: "#F5EBF0" + brightBlack: "#6A5860" + brightRed: "#FFB8D8" + brightGreen: "#98D8C0" + brightYellow: "#FFE7F8" + brightBlue: "#8AD8E8" + brightMagenta: "#F498BC" + brightCyan: "#D8FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 338 + contrast: + fg: 95.6 + black: 0 + red: 66.8 + green: 64.9 + yellow: 87.7 + blue: 61.6 + magenta: 52.3 + cyan: 97.1 + white: 95.6 + brightBlack: 18.3 + brightRed: 75 + brightGreen: 74.2 + brightYellow: 95.6 + brightBlue: 74.9 + brightMagenta: 60.8 + brightCyan: 102 + brightWhite: 107 diff --git a/themes/wuthering-waves-aemeath.yaml b/themes/wuthering-waves-aemeath.yaml new file mode 100644 index 00000000..17b05458 --- /dev/null +++ b/themes/wuthering-waves-aemeath.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Aemeath" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FEFBF8" + fg: "#3D2D35" + black: "#3D2D35" + red: "#D87098" + green: "#70A888" + yellow: "#E8B8D8" + blue: "#5AB8C0" + magenta: "#E488AC" + cyan: "#77C1C8" + white: "#FFF8FB" + brightBlack: "#8D7A82" + brightRed: "#E890B0" + brightGreen: "#88C8A0" + brightYellow: "#F8D8F0" + brightBlue: "#70C8D0" + brightMagenta: "#F498BC" + brightCyan: "#8AD8E0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 97 + black: 97 + red: 55.9 + green: 50.9 + yellow: 28.5 + blue: 43.4 + magenta: 46.6 + cyan: 37.7 + white: 0 + brightBlack: 65.3 + brightRed: 43.4 + brightGreen: 35 + brightYellow: 13 + brightBlue: 34.8 + brightMagenta: 38.4 + brightCyan: 25.4 + brightWhite: 0 diff --git a/themes/wuthering-waves-augusta-dark.yaml b/themes/wuthering-waves-augusta-dark.yaml new file mode 100644 index 00000000..d8910ed4 --- /dev/null +++ b/themes/wuthering-waves-augusta-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Augusta (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#1A1614" + fg: "#F5EFE8" + black: "#1A1614" + red: "#E75130" + green: "#90B880" + yellow: "#FA9751" + blue: "#8898A8" + magenta: "#C88890" + cyan: "#9A7D66" + white: "#F5EFE8" + brightBlack: "#645852" + brightRed: "#F87150" + brightGreen: "#A0C890" + brightYellow: "#FFB070" + brightBlue: "#98A8B8" + brightMagenta: "#D898A0" + brightCyan: "#B89D86" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 96.9 + black: 0 + red: 36.8 + green: 56.9 + yellow: 58.6 + blue: 44.7 + magenta: 46.4 + cyan: 35 + white: 96.9 + brightBlack: 17.2 + brightRed: 47.5 + brightGreen: 65.9 + brightYellow: 68.6 + brightBlue: 53.1 + brightMagenta: 54.7 + brightCyan: 50.9 + brightWhite: 106.9 diff --git a/themes/wuthering-waves-augusta.yaml b/themes/wuthering-waves-augusta.yaml new file mode 100644 index 00000000..a94e2b89 --- /dev/null +++ b/themes/wuthering-waves-augusta.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Augusta" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FEFDFB" + fg: "#2D2219" + black: "#2D2219" + red: "#D84428" + green: "#70A870" + yellow: "#C89840" + blue: "#7888A0" + magenta: "#B87888" + cyan: "#9A7D66" + white: "#FCF9F5" + brightBlack: "#8D7A6E" + brightRed: "#F85438" + brightGreen: "#88C088" + brightYellow: "#FA9751" + brightBlue: "#8898B0" + brightMagenta: "#D09098" + brightCyan: "#B89D86" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 101.3 + black: 101.3 + red: 68.1 + green: 52.5 + yellow: 49.8 + blue: 62.5 + magenta: 60.8 + cyan: 64.5 + white: 0 + brightBlack: 66.9 + brightRed: 58.3 + brightGreen: 40.1 + brightYellow: 41.5 + brightBlue: 54.6 + brightMagenta: 49.3 + brightCyan: 48.9 + brightWhite: 0 diff --git a/themes/wuthering-waves-baizhi-dark.yaml b/themes/wuthering-waves-baizhi-dark.yaml new file mode 100644 index 00000000..a3225848 --- /dev/null +++ b/themes/wuthering-waves-baizhi-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Baizhi (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#16181A" + fg: "#EBF0EB" + black: "#16181A" + red: "#DE7470" + green: "#80B8A0" + yellow: "#E8E8E8" + blue: "#A0A6AD" + magenta: "#B8A8A0" + cyan: "#88A898" + white: "#EBF0EB" + brightBlack: "#565E5A" + brightRed: "#EE8480" + brightGreen: "#90C8B0" + brightYellow: "#F8F8F8" + brightBlue: "#C0C6CD" + brightMagenta: "#C8B8B0" + brightCyan: "#98B8A8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 96.1 + black: 0 + red: 43.5 + green: 56.5 + yellow: 91.8 + blue: 52.6 + magenta: 55.7 + cyan: 50.2 + white: 96.1 + brightBlack: 17.8 + brightRed: 51.3 + brightGreen: 65.4 + brightYellow: 102.2 + brightBlue: 70.6 + brightMagenta: 64.7 + brightCyan: 58.9 + brightWhite: 106.8 diff --git a/themes/wuthering-waves-baizhi.yaml b/themes/wuthering-waves-baizhi.yaml new file mode 100644 index 00000000..596610f0 --- /dev/null +++ b/themes/wuthering-waves-baizhi.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Baizhi" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FEFEFF" + fg: "#1D1F20" + black: "#1D1F20" + red: "#D86870" + green: "#70A890" + yellow: "#D8C8B8" + blue: "#A0A6AD" + magenta: "#A89898" + cyan: "#78A898" + white: "#FCFDFC" + brightBlack: "#72787A" + brightRed: "#E87880" + brightGreen: "#88C0A0" + brightYellow: "#E8E8E8" + brightBlue: "#B0B6BD" + brightMagenta: "#B8A8A8" + brightCyan: "#88B8A8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.9 + black: 102.9 + red: 60.7 + green: 52.2 + yellow: 27.6 + blue: 47.8 + magenta: 52.7 + cyan: 51.4 + white: 0 + brightBlack: 70.6 + brightRed: 53.3 + brightGreen: 40 + brightYellow: 10.6 + brightBlue: 39.3 + brightMagenta: 44.4 + brightCyan: 43.1 + brightWhite: 0 diff --git a/themes/wuthering-waves-brant-dark.yaml b/themes/wuthering-waves-brant-dark.yaml new file mode 100644 index 00000000..bded9304 --- /dev/null +++ b/themes/wuthering-waves-brant-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Brant (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#1C2130" + fg: "#E4D8DC" + black: "#1C2130" + red: "#D65D8A" + green: "#609070" + yellow: "#C09050" + blue: "#72869F" + magenta: "#B06090" + cyan: "#889AB0" + white: "#E4D8DC" + brightBlack: "#5A6578" + brightRed: "#E070A0" + brightGreen: "#70B080" + brightYellow: "#E0A060" + brightBlue: "#8FA0C0" + brightMagenta: "#D070A0" + brightCyan: "#A0B0D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 270 + contrast: + fg: 82.4 + black: 0 + red: 36.1 + green: 35.1 + yellow: 44.9 + blue: 34.4 + magenta: 30.1 + cyan: 44.4 + white: 82.4 + brightBlack: 20 + brightRed: 43.2 + brightGreen: 49.6 + brightYellow: 55.8 + brightBlue: 48.1 + brightMagenta: 40.2 + brightCyan: 56.9 + brightWhite: 105.5 diff --git a/themes/wuthering-waves-brant.yaml b/themes/wuthering-waves-brant.yaml new file mode 100644 index 00000000..9406bc6e --- /dev/null +++ b/themes/wuthering-waves-brant.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Brant" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FFFCFA" + fg: "#1C2130" + black: "#1C2130" + red: "#973D6A" + green: "#508060" + yellow: "#B08040" + blue: "#3C4359" + magenta: "#805070" + cyan: "#72869F" + white: "#E4D8DC" + brightBlack: "#5A6578" + brightRed: "#B04070" + brightGreen: "#609070" + brightYellow: "#C09050" + brightBlue: "#506080" + brightMagenta: "#A06080" + brightCyan: "#889AB0" + brightWhite: "#F6F0F2" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 101.5 + black: 101.5 + red: 80.5 + green: 70.1 + yellow: 60.9 + blue: 91.3 + magenta: 80 + cyan: 63.4 + white: 17.3 + brightBlack: 78 + brightRed: 75.2 + brightGreen: 62.7 + brightYellow: 53.1 + brightBlue: 79.9 + brightMagenta: 70.9 + brightCyan: 53.5 + brightWhite: 0 diff --git a/themes/wuthering-waves-cantarella-dark.yaml b/themes/wuthering-waves-cantarella-dark.yaml new file mode 100644 index 00000000..73dbbd99 --- /dev/null +++ b/themes/wuthering-waves-cantarella-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Cantarella (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#282840" + fg: "#C1C7DB" + black: "#282840" + red: "#D08090" + green: "#7ABAA0" + yellow: "#C8B070" + blue: "#7175C2" + magenta: "#9A8AC0" + cyan: "#70A0C0" + white: "#C1C7DB" + brightBlack: "#6A6A8A" + brightRed: "#E090A0" + brightGreen: "#8ACAB0" + brightYellow: "#D8C080" + brightBlue: "#8185D2" + brightMagenta: "#AA9AD0" + brightCyan: "#80B0D0" + brightWhite: "#F8F9FC" +meta: + mode: "dark" + accent: "purple" + hue: 283 + contrast: + fg: 69 + black: 0 + red: 42.4 + green: 54.1 + yellow: 56.8 + blue: 29 + magenta: 39.9 + cyan: 44 + white: 69 + brightBlack: 22.1 + brightRed: 50.6 + brightGreen: 63 + brightYellow: 65.8 + brightBlue: 36.6 + brightMagenta: 48.1 + brightCyan: 52.4 + brightWhite: 100 diff --git a/themes/wuthering-waves-cantarella.yaml b/themes/wuthering-waves-cantarella.yaml new file mode 100644 index 00000000..0f6f8a6e --- /dev/null +++ b/themes/wuthering-waves-cantarella.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Cantarella" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#F8F9FC" + fg: "#3C3C62" + black: "#3C3C62" + red: "#C07080" + green: "#6AAA8A" + yellow: "#B8A060" + blue: "#6164B2" + magenta: "#8A7AB0" + cyan: "#6090B0" + white: "#E8EAF2" + brightBlack: "#6A6A8A" + brightRed: "#D08090" + brightGreen: "#7ABAA0" + brightYellow: "#C8B070" + brightBlue: "#7175C2" + brightMagenta: "#9A8AC0" + brightCyan: "#70A0C0" + brightWhite: "#F8F9FC" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 90.6 + black: 90.6 + red: 59.5 + green: 49 + yellow: 46.3 + blue: 72.6 + magenta: 62.1 + cyan: 58.2 + white: 0 + brightBlack: 72.2 + brightRed: 51.9 + brightGreen: 40.6 + brightYellow: 38 + brightBlue: 65.1 + brightMagenta: 54.4 + brightCyan: 50.4 + brightWhite: 0 diff --git a/themes/wuthering-waves-carlotta-dark.yaml b/themes/wuthering-waves-carlotta-dark.yaml new file mode 100644 index 00000000..081b34e0 --- /dev/null +++ b/themes/wuthering-waves-carlotta-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Carlotta (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#281820" + fg: "#FFE0E8" + black: "#281820" + red: "#FF5080" + green: "#509070" + yellow: "#D0A040" + blue: "#407090" + magenta: "#B05080" + cyan: "#409090" + white: "#FFE0E8" + brightBlack: "#704050" + brightRed: "#FF7090" + brightGreen: "#70B090" + brightYellow: "#E0B060" + brightBlue: "#6090B0" + brightMagenta: "#D070A0" + brightCyan: "#60B0B0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 348 + contrast: + fg: 91 + black: 0 + red: 42.9 + green: 34.8 + yellow: 53.4 + blue: 23.6 + magenta: 26.7 + cyan: 35.2 + white: 91 + brightBlack: 12.1 + brightRed: 49.5 + brightGreen: 50.7 + brightYellow: 62.3 + brightBlue: 38.2 + brightMagenta: 40.8 + brightCyan: 51 + brightWhite: 106.2 diff --git a/themes/wuthering-waves-carlotta.yaml b/themes/wuthering-waves-carlotta.yaml new file mode 100644 index 00000000..74ddfd61 --- /dev/null +++ b/themes/wuthering-waves-carlotta.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Carlotta" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FFFFFF" + fg: "#2A1A1C" + black: "#2A1A1C" + red: "#9A2850" + green: "#509068" + yellow: "#A08040" + blue: "#3A5568" + magenta: "#9A2850" + cyan: "#4A8898" + white: "#FCE8EC" + brightBlack: "#6A5558" + brightRed: "#B83060" + brightGreen: "#60A078" + brightYellow: "#B09050" + brightBlue: "#4A6578" + brightMagenta: "#B83060" + brightCyan: "#5A98A8" + brightWhite: "#FEFAFB" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 103.5 + black: 103.5 + red: 85 + green: 65.4 + yellow: 64.6 + blue: 87.2 + magenta: 85 + cyan: 67.1 + white: 8.3 + brightBlack: 83.8 + brightRed: 77.7 + brightGreen: 57.7 + brightYellow: 56.9 + brightBlue: 80.6 + brightMagenta: 77.7 + brightCyan: 59.5 + brightWhite: 0 diff --git a/themes/wuthering-waves-cartethyia-dark.yaml b/themes/wuthering-waves-cartethyia-dark.yaml new file mode 100644 index 00000000..0d038fb3 --- /dev/null +++ b/themes/wuthering-waves-cartethyia-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Cartethyia (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#0F1820" + fg: "#D8E8F4" + black: "#1C2838" + red: "#E88888" + green: "#70B890" + yellow: "#F0C078" + blue: "#6BA8D8" + magenta: "#B888D0" + cyan: "#88C8F0" + white: "#D8E8F4" + brightBlack: "#4878A0" + brightRed: "#F89898" + brightGreen: "#80C8A0" + brightYellow: "#FFD090" + brightBlue: "#88C8F0" + brightMagenta: "#C898E0" + brightCyan: "#A0E0FF" + brightWhite: "#F0F8FC" +meta: + mode: "dark" + accent: "orange" + hue: 246 + contrast: + fg: 90.4 + black: 0 + red: 51.6 + green: 54.9 + yellow: 72.2 + blue: 51 + magenta: 46.8 + cyan: 67.8 + white: 90.4 + brightBlack: 28.1 + brightRed: 60 + brightGreen: 63.6 + brightYellow: 81.7 + brightBlue: 67.8 + brightMagenta: 55.2 + brightCyan: 81.4 + brightWhite: 101.3 diff --git a/themes/wuthering-waves-cartethyia.yaml b/themes/wuthering-waves-cartethyia.yaml new file mode 100644 index 00000000..f5b0244e --- /dev/null +++ b/themes/wuthering-waves-cartethyia.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Cartethyia" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FAFCFD" + fg: "#2C3845" + black: "#2C3845" + red: "#C86868" + green: "#60A880" + yellow: "#D4A860" + blue: "#4888C0" + magenta: "#A878C0" + cyan: "#6BA8D8" + white: "#E8F2F8" + brightBlack: "#586878" + brightRed: "#D87878" + brightGreen: "#70B890" + brightYellow: "#E4B870" + brightBlue: "#5898C8" + brightMagenta: "#B888D0" + brightCyan: "#88C8F0" + brightWhite: "#F2F8FC" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 95.3 + black: 95.3 + red: 62.4 + green: 52.2 + yellow: 41.1 + blue: 63.1 + magenta: 59.7 + cyan: 47.9 + white: 0 + brightBlack: 76.6 + brightRed: 55 + brightGreen: 44.2 + brightYellow: 32.6 + brightBlue: 56 + brightMagenta: 51.9 + brightCyan: 31.7 + brightWhite: 0 diff --git a/themes/wuthering-waves-changli-dark.yaml b/themes/wuthering-waves-changli-dark.yaml new file mode 100644 index 00000000..1b465557 --- /dev/null +++ b/themes/wuthering-waves-changli-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Changli (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#1A1514" + fg: "#F5E8E3" + black: "#1A1514" + red: "#F5A3A3" + green: "#90B080" + yellow: "#E8A050" + blue: "#8098B0" + magenta: "#D89AA0" + cyan: "#80A8A0" + white: "#F5E8E3" + brightBlack: "#6A5552" + brightRed: "#FFB5B5" + brightGreen: "#A0C090" + brightYellow: "#F8B860" + brightBlue: "#90A8C0" + brightMagenta: "#E8AAB0" + brightCyan: "#90B8B0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 93.6 + black: 0 + red: 63.6 + green: 53.6 + yellow: 58.3 + blue: 44.4 + magenta: 55.5 + cyan: 50 + white: 93.6 + brightBlack: 17.1 + brightRed: 72.4 + brightGreen: 62.4 + brightYellow: 70.1 + brightBlue: 52.7 + brightMagenta: 64.3 + brightCyan: 58.6 + brightWhite: 107 diff --git a/themes/wuthering-waves-changli.yaml b/themes/wuthering-waves-changli.yaml new file mode 100644 index 00000000..3bd4dfec --- /dev/null +++ b/themes/wuthering-waves-changli.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Changli" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FFFCFA" + fg: "#3D2D2A" + black: "#383131" + red: "#C03020" + green: "#609060" + yellow: "#C08020" + blue: "#506080" + magenta: "#A04050" + cyan: "#508080" + white: "#FEECE8" + brightBlack: "#706060" + brightRed: "#E05040" + brightGreen: "#70B070" + brightYellow: "#E0A040" + brightBlue: "#607090" + brightMagenta: "#C05060" + brightCyan: "#609090" + brightWhite: "#FFFCFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.8 + black: 97.3 + red: 75.6 + green: 63.1 + yellow: 58.7 + blue: 79.9 + magenta: 79.1 + cyan: 69.2 + white: 0 + brightBlack: 78.2 + brightRed: 63.9 + brightGreen: 48.9 + brightYellow: 42.9 + brightBlue: 72.9 + brightMagenta: 69.9 + brightCyan: 61.7 + brightWhite: 0 diff --git a/themes/wuthering-waves-chisa-dark.yaml b/themes/wuthering-waves-chisa-dark.yaml new file mode 100644 index 00000000..6e6c16f0 --- /dev/null +++ b/themes/wuthering-waves-chisa-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Chisa (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#1A1816" + fg: "#F5F0EB" + black: "#1A1816" + red: "#C83540" + green: "#80B080" + yellow: "#F8D7BD" + blue: "#8898A8" + magenta: "#B87888" + cyan: "#6E6C78" + white: "#F5F0EB" + brightBlack: "#645C58" + brightRed: "#E84550" + brightGreen: "#90C090" + brightYellow: "#FFE8D0" + brightBlue: "#98A8B8" + brightMagenta: "#D89098" + brightCyan: "#8E8C98" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 97.4 + black: 0 + red: 26.1 + green: 52 + yellow: 84.8 + blue: 44.5 + magenta: 38.6 + cyan: 25.1 + white: 97.4 + brightBlack: 18.4 + brightRed: 35.4 + brightGreen: 60.7 + brightYellow: 94.1 + brightBlue: 52.9 + brightMagenta: 51.7 + brightCyan: 40.1 + brightWhite: 106.7 diff --git a/themes/wuthering-waves-chisa.yaml b/themes/wuthering-waves-chisa.yaml new file mode 100644 index 00000000..c0b29e8f --- /dev/null +++ b/themes/wuthering-waves-chisa.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Chisa" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FEFDFB" + fg: "#2D2725" + black: "#2D2725" + red: "#C83540" + green: "#70A070" + yellow: "#D8A878" + blue: "#6E6C78" + magenta: "#B87888" + cyan: "#8898A8" + white: "#FCF9F6" + brightBlack: "#8D7A78" + brightRed: "#E84550" + brightGreen: "#88C088" + brightYellow: "#F8D7BD" + brightBlue: "#8E8C98" + brightMagenta: "#D89098" + brightCyan: "#98A8B8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 100.4 + black: 100.4 + red: 73.3 + green: 55.7 + yellow: 40.9 + blue: 74.3 + magenta: 60.8 + cyan: 54.9 + white: 0 + brightBlack: 66.6 + brightRed: 63.9 + brightGreen: 40.1 + brightYellow: 16.4 + brightBlue: 59.3 + brightMagenta: 48 + brightCyan: 46.8 + brightWhite: 0 diff --git a/themes/wuthering-waves-galbrena-dark.yaml b/themes/wuthering-waves-galbrena-dark.yaml new file mode 100644 index 00000000..833705aa --- /dev/null +++ b/themes/wuthering-waves-galbrena-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Galbrena (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#16181A" + fg: "#EBF0F5" + black: "#16181A" + red: "#B87888" + green: "#80B8A0" + yellow: "#B8A8D8" + blue: "#3486D8" + magenta: "#9F76B8" + cyan: "#535A77" + white: "#EBF0F5" + brightBlack: "#565E64" + brightRed: "#C88898" + brightGreen: "#90C8B0" + brightYellow: "#C8B8E8" + brightBlue: "#5098E8" + brightMagenta: "#B090C8" + brightCyan: "#636A87" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + contrast: + fg: 96.5 + black: 0 + red: 38.7 + green: 56.5 + yellow: 58.2 + blue: 35.6 + magenta: 36.6 + cyan: 17.5 + white: 96.5 + brightBlack: 18.1 + brightRed: 46.6 + brightGreen: 65.4 + brightYellow: 67.2 + brightBlue: 44.3 + brightMagenta: 47.8 + brightCyan: 24.1 + brightWhite: 106.8 diff --git a/themes/wuthering-waves-galbrena.yaml b/themes/wuthering-waves-galbrena.yaml new file mode 100644 index 00000000..03830e9a --- /dev/null +++ b/themes/wuthering-waves-galbrena.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Galbrena" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FEFEFF" + fg: "#1D2228" + black: "#1D2228" + red: "#C87888" + green: "#70A888" + yellow: "#A898D8" + blue: "#3486D8" + magenta: "#9F76B8" + cyan: "#535A77" + white: "#FBFDFE" + brightBlack: "#727A80" + brightRed: "#D88898" + brightGreen: "#88C098" + brightYellow: "#B8A8E8" + brightBlue: "#5098E8" + brightMagenta: "#B090C8" + brightCyan: "#636A87" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "indigo" + hue: null + contrast: + fg: 102.4 + black: 102.4 + red: 58.8 + green: 52.5 + yellow: 49.8 + blue: 64.4 + magenta: 63.4 + cyan: 82.8 + white: 0 + brightBlack: 69.7 + brightRed: 51 + brightGreen: 40.3 + brightYellow: 41.5 + brightBlue: 55.9 + brightMagenta: 52.4 + brightCyan: 76 + brightWhite: 0 diff --git a/themes/wuthering-waves-iuno-dark.yaml b/themes/wuthering-waves-iuno-dark.yaml new file mode 100644 index 00000000..1169c043 --- /dev/null +++ b/themes/wuthering-waves-iuno-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Iuno (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#181820" + fg: "#E8E0D8" + black: "#181820" + red: "#C05050" + green: "#709060" + yellow: "#D4A830" + blue: "#6890B8" + magenta: "#907090" + cyan: "#609090" + white: "#E8E0D8" + brightBlack: "#4A5878" + brightRed: "#D06060" + brightGreen: "#80A070" + brightYellow: "#E4B840" + brightBlue: "#78A0C8" + brightMagenta: "#A080A0" + brightCyan: "#70A0A0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + contrast: + fg: 87.4 + black: 0 + red: 28.8 + green: 37 + yellow: 57.3 + blue: 39.6 + magenta: 30.9 + cyan: 37.3 + white: 87.4 + brightBlack: 16.2 + brightRed: 35.5 + brightGreen: 45 + brightYellow: 66.1 + brightBlue: 47.7 + brightMagenta: 38.5 + brightCyan: 45.2 + brightWhite: 106.7 diff --git a/themes/wuthering-waves-iuno.yaml b/themes/wuthering-waves-iuno.yaml new file mode 100644 index 00000000..e245a7cf --- /dev/null +++ b/themes/wuthering-waves-iuno.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Iuno" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FFFFFF" + fg: "#2A3040" + black: "#2A3040" + red: "#C05050" + green: "#609060" + yellow: "#D4A830" + blue: "#4A6890" + magenta: "#906080" + cyan: "#408090" + white: "#FDFADC" + brightBlack: "#606880" + brightRed: "#D06060" + brightGreen: "#70A070" + brightYellow: "#E4B840" + brightBlue: "#5A78A0" + brightMagenta: "#A07090" + brightCyan: "#5090A0" + brightWhite: "#FFFCFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 99.5 + black: 99.5 + red: 71.7 + green: 64.6 + yellow: 43.6 + blue: 78.5 + magenta: 74.7 + cyan: 70.8 + white: 0 + brightBlack: 77.7 + brightRed: 65 + brightGreen: 56.9 + brightYellow: 35.2 + brightBlue: 71.4 + brightMagenta: 67.5 + brightCyan: 63.4 + brightWhite: 0 diff --git a/themes/wuthering-waves-jinhsi.yaml b/themes/wuthering-waves-jinhsi.yaml new file mode 100644 index 00000000..336645c4 --- /dev/null +++ b/themes/wuthering-waves-jinhsi.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Jinhsi" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FFFFFF" + fg: "#2A3638" + black: "#2A3638" + red: "#C06868" + green: "#50A078" + yellow: "#A08840" + blue: "#4888A8" + magenta: "#8878A8" + cyan: "#1A8A95" + white: "#E0F5F6" + brightBlack: "#5A6A6C" + brightRed: "#D08080" + brightGreen: "#60B088" + brightYellow: "#B09850" + brightBlue: "#5898B8" + brightMagenta: "#9888B8" + brightCyan: "#28A0AC" + brightWhite: "#FAFEFE" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 98.4 + black: 98.4 + red: 65.9 + green: 58.6 + yellow: 61.9 + blue: 66.4 + magenta: 67 + cyan: 67.8 + white: 0 + brightBlack: 78.3 + brightRed: 56 + brightGreen: 50.7 + brightYellow: 54.1 + brightBlue: 58.9 + brightMagenta: 59.3 + brightCyan: 57.9 + brightWhite: 0 diff --git a/themes/wuthering-waves-lynae-dark.yaml b/themes/wuthering-waves-lynae-dark.yaml new file mode 100644 index 00000000..90c3bc7f --- /dev/null +++ b/themes/wuthering-waves-lynae-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Lynae (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#252830" + fg: "#E0DCD8" + black: "#252830" + red: "#D87A8A" + green: "#6AAA8A" + yellow: "#D4BCB5" + blue: "#5A8A9A" + magenta: "#B887A5" + cyan: "#79B2B9" + white: "#E0DCD8" + brightBlack: "#6A7280" + brightRed: "#E88A9A" + brightGreen: "#7ABAA0" + brightYellow: "#E4CCC5" + brightBlue: "#6A9AAA" + brightMagenta: "#C898B0" + brightCyan: "#89C2C9" + brightWhite: "#FDFBFA" +meta: + mode: "dark" + accent: "red" + hue: 269 + contrast: + fg: 82.3 + black: 0 + red: 42.3 + green: 45.9 + yellow: 65.7 + blue: 32.8 + magenta: 42 + cyan: 52 + white: 82.3 + brightBlack: 24.6 + brightRed: 50.4 + brightGreen: 54.5 + brightYellow: 75.2 + brightBlue: 40.6 + brightMagenta: 50.4 + brightCyan: 60.8 + brightWhite: 102 diff --git a/themes/wuthering-waves-lynae.yaml b/themes/wuthering-waves-lynae.yaml new file mode 100644 index 00000000..db143ae8 --- /dev/null +++ b/themes/wuthering-waves-lynae.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Lynae" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FDFBFA" + fg: "#313843" + black: "#313843" + red: "#D87A8A" + green: "#6AAA8A" + yellow: "#C4ACA5" + blue: "#5A8A9A" + magenta: "#B887A5" + cyan: "#79B2B9" + white: "#F0EBE9" + brightBlack: "#5A6270" + brightRed: "#E88A9A" + brightGreen: "#7ABAA0" + brightYellow: "#D4BCB5" + brightBlue: "#6A9AAA" + brightMagenta: "#C898B0" + brightCyan: "#89C2C9" + brightWhite: "#FDFBFA" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 94.9 + black: 94.9 + red: 53.8 + green: 50.4 + yellow: 39.9 + blue: 63.2 + magenta: 54.2 + cyan: 44.4 + white: 0 + brightBlack: 78.5 + brightRed: 46 + brightGreen: 42 + brightYellow: 31.2 + brightBlue: 55.5 + brightMagenta: 45.9 + brightCyan: 35.9 + brightWhite: 0 diff --git a/themes/wuthering-waves-mornye-dark.yaml b/themes/wuthering-waves-mornye-dark.yaml new file mode 100644 index 00000000..4e6a755b --- /dev/null +++ b/themes/wuthering-waves-mornye-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Mornye (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#1A1520" + fg: "#F4F3F6" + black: "#1A1520" + red: "#E18DA9" + green: "#88A890" + yellow: "#FAB3CA" + blue: "#DDCEFC" + magenta: "#A88EBB" + cyan: "#C8A8D8" + white: "#F4F3F6" + brightBlack: "#635860" + brightRed: "#F0A0C0" + brightGreen: "#98B8A0" + brightYellow: "#FFC8DC" + brightBlue: "#EEDEFC" + brightMagenta: "#C8AECB" + brightCyan: "#D8B8E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 305 + contrast: + fg: 99.2 + black: 0 + red: 53 + green: 50 + yellow: 71.5 + blue: 80.1 + magenta: 45.5 + cyan: 60.4 + white: 99.2 + brightBlack: 17.5 + brightRed: 62.7 + brightGreen: 58.6 + brightYellow: 81.2 + brightBlue: 89.3 + brightMagenta: 62 + brightCyan: 69.5 + brightWhite: 106.9 diff --git a/themes/wuthering-waves-mornye.yaml b/themes/wuthering-waves-mornye.yaml new file mode 100644 index 00000000..b73ef213 --- /dev/null +++ b/themes/wuthering-waves-mornye.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Mornye" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FEFEFC" + fg: "#2D2535" + black: "#2D2535" + red: "#D87898" + green: "#70A888" + yellow: "#E8B8D0" + blue: "#B8A8D8" + magenta: "#A88EBB" + cyan: "#C8A8D8" + white: "#FBF8FD" + brightBlack: "#8D7A8A" + brightRed: "#E890B0" + brightGreen: "#88C0A0" + brightYellow: "#F8D0E8" + brightBlue: "#D0C0E8" + brightMagenta: "#C8AECB" + brightCyan: "#D8B8E8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 100.8 + black: 100.8 + red: 55.3 + green: 52.3 + yellow: 30.3 + blue: 42.2 + magenta: 54.6 + cyan: 40.2 + white: 0 + brightBlack: 66.4 + brightRed: 44.9 + brightGreen: 39.9 + brightYellow: 18 + brightBlue: 29.5 + brightMagenta: 38.6 + brightCyan: 31.5 + brightWhite: 0 diff --git a/themes/wuthering-waves-roccia-dark.yaml b/themes/wuthering-waves-roccia-dark.yaml new file mode 100644 index 00000000..06511b1f --- /dev/null +++ b/themes/wuthering-waves-roccia-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Roccia (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#181418" + fg: "#F0ECF5" + black: "#181418" + red: "#D86880" + green: "#90B8B0" + yellow: "#FDB3DD" + blue: "#5F6AC3" + magenta: "#C2588A" + cyan: "#A898B8" + white: "#F0ECF5" + brightBlack: "#5E5A64" + brightRed: "#E87890" + brightGreen: "#A0C8C0" + brightYellow: "#FDC3ED" + brightBlue: "#6F7AD3" + brightMagenta: "#D2689A" + brightCyan: "#B8A8C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 326 + contrast: + fg: 95.6 + black: 0 + red: 40.1 + green: 58.7 + yellow: 73.1 + blue: 27.4 + magenta: 32.8 + cyan: 49 + white: 95.6 + brightBlack: 17.9 + brightRed: 47.6 + brightGreen: 67.7 + brightYellow: 79.9 + brightBlue: 34.6 + brightMagenta: 39.9 + brightCyan: 57.6 + brightWhite: 107 diff --git a/themes/wuthering-waves-roccia.yaml b/themes/wuthering-waves-roccia.yaml new file mode 100644 index 00000000..a3200955 --- /dev/null +++ b/themes/wuthering-waves-roccia.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Roccia" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FEFCFE" + fg: "#1D1A20" + black: "#1D1A20" + red: "#D86880" + green: "#70A898" + yellow: "#FDC3ED" + blue: "#5F6AC3" + magenta: "#C2588A" + cyan: "#9888A8" + white: "#FCFAFD" + brightBlack: "#7A7280" + brightRed: "#E87890" + brightGreen: "#88C0A8" + brightYellow: "#FDD3FC" + brightBlue: "#6F7AD3" + brightMagenta: "#D2689A" + brightCyan: "#A898B8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 102.6 + black: 102.6 + red: 59.3 + green: 51 + yellow: 21.1 + blue: 72 + magenta: 66.6 + cyan: 58.6 + white: 0 + brightBlack: 70.7 + brightRed: 51.9 + brightGreen: 38.9 + brightYellow: 14.4 + brightBlue: 64.7 + brightMagenta: 59.5 + brightCyan: 50.5 + brightWhite: 0 diff --git a/themes/wuthering-waves-rover.yaml b/themes/wuthering-waves-rover.yaml new file mode 100644 index 00000000..2d43e035 --- /dev/null +++ b/themes/wuthering-waves-rover.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Rover" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FFFCFA" + fg: "#312328" + black: "#312328" + red: "#A25050" + green: "#709060" + yellow: "#D09060" + blue: "#506080" + magenta: "#906070" + cyan: "#608080" + white: "#F7EADC" + brightBlack: "#706060" + brightRed: "#C06060" + brightGreen: "#80A070" + brightYellow: "#E3B08B" + brightBlue: "#607090" + brightMagenta: "#A07080" + brightCyan: "#709090" + brightWhite: "#FFFCFA" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 100.3 + black: 100.3 + red: 75.7 + green: 62 + yellow: 50.4 + blue: 79.9 + magenta: 73.8 + cyan: 68.1 + white: 7.3 + brightBlack: 78.2 + brightRed: 66.5 + brightGreen: 54.1 + brightYellow: 35.5 + brightBlue: 72.9 + brightMagenta: 66.6 + brightCyan: 60.6 + brightWhite: 0 diff --git a/themes/wuthering-waves-sanhua-dark.yaml b/themes/wuthering-waves-sanhua-dark.yaml new file mode 100644 index 00000000..df076721 --- /dev/null +++ b/themes/wuthering-waves-sanhua-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Sanhua (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#16181A" + fg: "#EDF0F2" + black: "#16181A" + red: "#DE7470" + green: "#98B8B0" + yellow: "#D8C8C0" + blue: "#A0A6AD" + magenta: "#C8A8C8" + cyan: "#A8B8C0" + white: "#EDF0F2" + brightBlack: "#565A5C" + brightRed: "#EE8480" + brightGreen: "#A8C8C0" + brightYellow: "#E8D8D0" + brightBlue: "#C0C6CD" + brightMagenta: "#D8B8D8" + brightCyan: "#B8C8D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 96.6 + black: 0 + red: 43.5 + green: 59.2 + yellow: 74 + blue: 52.6 + magenta: 59.5 + cyan: 61.5 + white: 96.6 + brightBlack: 16.7 + brightRed: 51.3 + brightGreen: 68.2 + brightYellow: 83.7 + brightBlue: 70.6 + brightMagenta: 68.6 + brightCyan: 70.7 + brightWhite: 106.8 diff --git a/themes/wuthering-waves-sanhua.yaml b/themes/wuthering-waves-sanhua.yaml new file mode 100644 index 00000000..e3da3bac --- /dev/null +++ b/themes/wuthering-waves-sanhua.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Sanhua" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FEFEFE" + fg: "#1D1F20" + black: "#1D1F20" + red: "#D86870" + green: "#70A888" + yellow: "#C8B8B0" + blue: "#A0A6AD" + magenta: "#B898C8" + cyan: "#98A8B0" + white: "#FCFDFD" + brightBlack: "#727678" + brightRed: "#E87880" + brightGreen: "#88C098" + brightYellow: "#D8C8C0" + brightBlue: "#B0B6BD" + brightMagenta: "#C8A8D8" + brightCyan: "#A8B8C0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.9 + black: 102.9 + red: 60.7 + green: 52.4 + yellow: 36.1 + blue: 47.7 + magenta: 48.6 + cyan: 47.7 + white: 0 + brightBlack: 71.3 + brightRed: 53.3 + brightGreen: 40.2 + brightYellow: 27.3 + brightBlue: 39.2 + brightMagenta: 40.2 + brightCyan: 39.2 + brightWhite: 0 diff --git a/themes/wuthering-waves-scar-dark.yaml b/themes/wuthering-waves-scar-dark.yaml new file mode 100644 index 00000000..dff89699 --- /dev/null +++ b/themes/wuthering-waves-scar-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Scar (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#161618" + fg: "#D4D4D4" + black: "#121215" + red: "#FF3355" + green: "#2E8B57" + yellow: "#E6C200" + blue: "#4A6A8A" + magenta: "#B01830" + cyan: "#5BA4C8" + white: "#E0E0E0" + brightBlack: "#505058" + brightRed: "#FF6680" + brightGreen: "#50C878" + brightYellow: "#FFD700" + brightBlue: "#6A8AA8" + brightMagenta: "#D03050" + brightCyan: "#7BC8E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.6 + black: 0 + red: 39.1 + green: 31.7 + yellow: 70.5 + blue: 22.7 + magenta: 18.8 + cyan: 47.7 + white: 87 + brightBlack: 13.5 + brightRed: 47.6 + brightGreen: 59.9 + brightYellow: 83.3 + brightBlue: 37.1 + brightMagenta: 27.8 + brightCyan: 66.5 + brightWhite: 107 diff --git a/themes/wuthering-waves-scar.yaml b/themes/wuthering-waves-scar.yaml new file mode 100644 index 00000000..44b86145 --- /dev/null +++ b/themes/wuthering-waves-scar.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Scar" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#F5F5F7" + fg: "#1E1E24" + black: "#1E1E24" + red: "#D81E3D" + green: "#2E8B57" + yellow: "#E6C200" + blue: "#4A6A8A" + magenta: "#8B0000" + cyan: "#5BA4C8" + white: "#EAEAEF" + brightBlack: "#5A5A65" + brightRed: "#FF4D6D" + brightGreen: "#50C878" + brightYellow: "#FFD700" + brightBlue: "#6A8AA8" + brightMagenta: "#A03040" + brightCyan: "#7BC8E8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.7 + black: 97.7 + red: 66.9 + green: 63.1 + yellow: 25.4 + blue: 72.3 + magenta: 84.9 + cyan: 47.4 + white: 0 + brightBlack: 77.6 + brightRed: 52.2 + brightGreen: 35.5 + brightYellow: 13.3 + brightBlue: 57.8 + brightMagenta: 77.4 + brightCyan: 29.2 + brightWhite: 0 diff --git a/themes/wuthering-waves-taoqi.yaml b/themes/wuthering-waves-taoqi.yaml new file mode 100644 index 00000000..0f4d9633 --- /dev/null +++ b/themes/wuthering-waves-taoqi.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Taoqi" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FEFCFD" + fg: "#2D1D25" + black: "#2D1D25" + red: "#D86380" + green: "#70A888" + yellow: "#E8A8C8" + blue: "#9878B8" + magenta: "#B9536E" + cyan: "#A878A8" + white: "#FCF8FA" + brightBlack: "#8D7278" + brightRed: "#E87390" + brightGreen: "#88C098" + brightYellow: "#F8C0D8" + brightBlue: "#A888C8" + brightMagenta: "#C9637E" + brightCyan: "#B888B8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 101.4 + black: 101.4 + red: 60.4 + green: 51.5 + yellow: 35.4 + blue: 62.8 + magenta: 70.2 + cyan: 61.5 + white: 0 + brightBlack: 68.7 + brightRed: 53.1 + brightGreen: 39.4 + brightYellow: 23.8 + brightBlue: 55 + brightMagenta: 63.3 + brightCyan: 53.7 + brightWhite: 0 diff --git a/themes/wuthering-waves-the-shorekeeper-dark.yaml b/themes/wuthering-waves-the-shorekeeper-dark.yaml new file mode 100644 index 00000000..1ea428d9 --- /dev/null +++ b/themes/wuthering-waves-the-shorekeeper-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : The Shorekeeper (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#0D1B28" + fg: "#D4EBFA" + black: "#1A2F3F" + red: "#E88899" + green: "#60B088" + yellow: "#F0C070" + blue: "#6BB6D6" + magenta: "#A78BFA" + cyan: "#89CFF0" + white: "#D4EBFA" + brightBlack: "#4A7A9F" + brightRed: "#F8A0AA" + brightGreen: "#70C098" + brightYellow: "#FFD085" + brightBlue: "#89CFF0" + brightMagenta: "#C4B5FD" + brightCyan: "#A0E0FF" + brightWhite: "#F0F8FC" +meta: + mode: "dark" + accent: "magenta" + hue: 248 + contrast: + fg: 91.3 + black: 0 + red: 51.9 + green: 49.9 + yellow: 71.7 + blue: 56.3 + magenta: 47.9 + cyan: 70.7 + white: 91.3 + brightBlack: 28.5 + brightRed: 62.9 + brightGreen: 58.3 + brightYellow: 81.2 + brightBlue: 70.7 + brightMagenta: 66.5 + brightCyan: 81.1 + brightWhite: 101 diff --git a/themes/wuthering-waves-the-shorekeeper.yaml b/themes/wuthering-waves-the-shorekeeper.yaml new file mode 100644 index 00000000..cfc9d470 --- /dev/null +++ b/themes/wuthering-waves-the-shorekeeper.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : The Shorekeeper" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#F8FCFE" + fg: "#2B5F8F" + black: "#2B5F8F" + red: "#C85F75" + green: "#50A078" + yellow: "#D4A055" + blue: "#4A8AB8" + magenta: "#9B86BD" + cyan: "#6BB6D6" + white: "#E0F0F8" + brightBlack: "#5A8AB0" + brightRed: "#D87585" + brightGreen: "#60B088" + brightYellow: "#E4B065" + brightBlue: "#5A9AC8" + brightMagenta: "#B8A4D4" + brightCyan: "#89CFF0" + brightWhite: "#F0F8FC" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 80.6 + black: 80.6 + red: 64 + green: 56.3 + yellow: 43.9 + blue: 62.5 + magenta: 57.1 + cyan: 42.2 + white: 0 + brightBlack: 62.1 + brightRed: 55.2 + brightGreen: 48.5 + brightYellow: 35.5 + brightBlue: 54.9 + brightMagenta: 42.3 + brightCyan: 28.5 + brightWhite: 0 diff --git a/themes/wuthering-waves-verina-dark.yaml b/themes/wuthering-waves-verina-dark.yaml new file mode 100644 index 00000000..ef3fc2c6 --- /dev/null +++ b/themes/wuthering-waves-verina-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Verina (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#1A1C18" + fg: "#F0F5EB" + black: "#1A1C18" + red: "#C87870" + green: "#8AC880" + yellow: "#E3F275" + blue: "#7CA8B0" + magenta: "#B89898" + cyan: "#6C8C81" + white: "#F0F5EB" + brightBlack: "#5A6258" + brightRed: "#D89080" + brightGreen: "#9AD890" + brightYellow: "#F0FF90" + brightBlue: "#8CB8C0" + brightMagenta: "#C8A8A8" + brightCyan: "#7C9C91" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 98.7 + black: 0 + red: 40.2 + green: 63 + yellow: 91.9 + blue: 49.7 + magenta: 49.1 + cyan: 35.8 + white: 98.7 + brightBlack: 18.9 + brightRed: 50.6 + brightGreen: 72.1 + brightYellow: 100.5 + brightBlue: 58.3 + brightMagenta: 57.8 + brightCyan: 43.7 + brightWhite: 106.4 diff --git a/themes/wuthering-waves-verina.yaml b/themes/wuthering-waves-verina.yaml new file mode 100644 index 00000000..90f0c45d --- /dev/null +++ b/themes/wuthering-waves-verina.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Verina" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FDFEF8" + fg: "#252B1D" + black: "#252B1D" + red: "#B87860" + green: "#70A870" + yellow: "#C8B860" + blue: "#6888A0" + magenta: "#A87890" + cyan: "#6C8C81" + white: "#FBFDF5" + brightBlack: "#7A8272" + brightRed: "#D89078" + brightGreen: "#88C088" + brightYellow: "#DFD48B" + brightBlue: "#7898B0" + brightMagenta: "#C890A8" + brightCyan: "#7C9C91" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 100.4 + black: 100.4 + red: 62.1 + green: 52.7 + yellow: 37.8 + blue: 63.9 + magenta: 63 + cyan: 63.4 + white: 0 + brightBlack: 66.3 + brightRed: 49.1 + brightGreen: 40.3 + brightYellow: 22.7 + brightBlue: 56.1 + brightMagenta: 50.1 + brightCyan: 55.6 + brightWhite: 0 diff --git a/themes/wuthering-waves-yinlin-dark.yaml b/themes/wuthering-waves-yinlin-dark.yaml new file mode 100644 index 00000000..173c0b61 --- /dev/null +++ b/themes/wuthering-waves-yinlin-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Yinlin (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#18141A" + fg: "#F0EBF0" + black: "#18141A" + red: "#EE5257" + green: "#90B8A0" + yellow: "#C5ADC7" + blue: "#8B64AB" + magenta: "#C890A8" + cyan: "#A88898" + white: "#F0EBF0" + brightBlack: "#5E5A60" + brightRed: "#F87277" + brightGreen: "#A0C8B0" + brightYellow: "#D5BDD7" + brightBlue: "#9B74BB" + brightMagenta: "#D8A0B8" + brightCyan: "#B898A8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 315 + contrast: + fg: 94.9 + black: 0 + red: 39.2 + green: 58 + yellow: 61.2 + blue: 28.6 + magenta: 50 + cyan: 42.1 + white: 94.9 + brightBlack: 17.8 + brightRed: 48.6 + brightGreen: 67 + brightYellow: 70.3 + brightBlue: 35.9 + brightMagenta: 58.6 + brightCyan: 50.4 + brightWhite: 107 diff --git a/themes/wuthering-waves-yinlin.yaml b/themes/wuthering-waves-yinlin.yaml new file mode 100644 index 00000000..2fde89d9 --- /dev/null +++ b/themes/wuthering-waves-yinlin.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Yinlin" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FEFCFD" + fg: "#1D1A20" + black: "#1D1A20" + red: "#EE5257" + green: "#70A890" + yellow: "#D0B0C8" + blue: "#8B64AB" + magenta: "#C890A8" + cyan: "#A88898" + white: "#FCFAFC" + brightBlack: "#7A7278" + brightRed: "#F86267" + brightGreen: "#88C0A0" + brightYellow: "#E0C0D8" + brightBlue: "#9B74BB" + brightMagenta: "#D8A0B8" + brightCyan: "#B898A8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 102.6 + black: 102.6 + red: 60.1 + green: 51.3 + yellow: 36.2 + blue: 70.7 + magenta: 49.6 + cyan: 57.2 + white: 0 + brightBlack: 70.9 + brightRed: 54.7 + brightGreen: 39.1 + brightYellow: 27.4 + brightBlue: 63.4 + brightMagenta: 41.3 + brightCyan: 49.2 + brightWhite: 0 diff --git a/themes/wuthering-waves-zhezhi-dark.yaml b/themes/wuthering-waves-zhezhi-dark.yaml new file mode 100644 index 00000000..5b44c4fa --- /dev/null +++ b/themes/wuthering-waves-zhezhi-dark.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Zhezhi (Dark)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#181616" + fg: "#F0F5F5" + black: "#181616" + red: "#D88090" + green: "#90B8B0" + yellow: "#E6A4C7" + blue: "#97CADD" + magenta: "#C8A0B8" + cyan: "#7BABB4" + white: "#F0F5F5" + brightBlack: "#5E5656" + brightRed: "#E890A0" + brightGreen: "#A0C8C0" + brightYellow: "#F8B8D8" + brightBlue: "#A8D8EC" + brightMagenta: "#D8B0C8" + brightCyan: "#8BBBC4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 99.7 + black: 0 + red: 46.7 + green: 58.6 + yellow: 62.8 + blue: 69 + magenta: 56 + cyan: 51.6 + white: 99.7 + brightBlack: 16.2 + brightRed: 54.9 + brightGreen: 67.6 + brightYellow: 73.7 + brightBlue: 77.5 + brightMagenta: 64.9 + brightCyan: 60.3 + brightWhite: 106.9 diff --git a/themes/wuthering-waves-zhezhi.yaml b/themes/wuthering-waves-zhezhi.yaml new file mode 100644 index 00000000..474be683 --- /dev/null +++ b/themes/wuthering-waves-zhezhi.yaml @@ -0,0 +1,49 @@ +name: "Wuthering Waves : Zhezhi" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 120 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" +colors: + bg: "#FDFEFE" + fg: "#242222" + black: "#242222" + red: "#C87888" + green: "#70A898" + yellow: "#D8B8D0" + blue: "#97CADD" + magenta: "#E6A4C7" + cyan: "#7BABB4" + white: "#FBFDFE" + brightBlack: "#7A7676" + brightRed: "#D88898" + brightGreen: "#88C0A8" + brightYellow: "#E8C8E0" + brightBlue: "#A8D8EC" + brightMagenta: "#F8B8D8" + brightCyan: "#8BBBC4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 102.1 + black: 102.1 + red: 58.6 + green: 51.8 + yellow: 32.6 + blue: 32 + magenta: 37.9 + cyan: 48.7 + white: 0 + brightBlack: 70.4 + brightRed: 50.8 + brightGreen: 39.6 + brightYellow: 23.6 + brightBlue: 23.9 + brightMagenta: 27.5 + brightCyan: 40.3 + brightWhite: 0 diff --git a/themes/wye-black.yaml b/themes/wye-black.yaml new file mode 100644 index 00000000..eff8f543 --- /dev/null +++ b/themes/wye-black.yaml @@ -0,0 +1,49 @@ +name: "Wye Black" +source: + marketplace_id: "phyzess.wye" + version: "0.7.1" + installs: 155 + author: "phyzess" + repo: "https://github.com/phyzess/vscode-theme-wye" + url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" +colors: + bg: "#000000" + fg: "#E5E5E5" + black: "#393A34" + red: "#F74F5B" + green: "#BDE46F" + yellow: "#F8E330" + blue: "#296AA3" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#E5E5E5" + brightBlack: "#777777" + brightRed: "#F74F5B" + brightGreen: "#BDE46F" + brightYellow: "#F8E330" + brightBlue: "#296AA3" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 91 + black: 0 + red: 41.7 + green: 82 + yellow: 88.6 + blue: 23.6 + magenta: 44.9 + cyan: 50.3 + white: 91 + brightBlack: 30.6 + brightRed: 41.7 + brightGreen: 82 + brightYellow: 88.6 + brightBlue: 23.6 + brightMagenta: 44.9 + brightCyan: 50.3 + brightWhite: 107.9 diff --git a/themes/wye-dark-soft.yaml b/themes/wye-dark-soft.yaml new file mode 100644 index 00000000..5bb139fd --- /dev/null +++ b/themes/wye-dark-soft.yaml @@ -0,0 +1,49 @@ +name: "Wye Dark Soft" +source: + marketplace_id: "phyzess.wye" + version: "0.7.1" + installs: 155 + author: "phyzess" + repo: "https://github.com/phyzess/vscode-theme-wye" + url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" +colors: + bg: "#222222" + fg: "#E5E5E5" + black: "#393A34" + red: "#F74F5B" + green: "#BDE46F" + yellow: "#F8E330" + blue: "#296AA3" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#E5E5E5" + brightBlack: "#777777" + brightRed: "#F74F5B" + brightGreen: "#BDE46F" + brightYellow: "#F8E330" + brightBlue: "#296AA3" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88.6 + black: 0 + red: 39.2 + green: 79.6 + yellow: 86.1 + blue: 21.2 + magenta: 42.5 + cyan: 47.9 + white: 88.6 + brightBlack: 28.1 + brightRed: 39.2 + brightGreen: 79.6 + brightYellow: 86.1 + brightBlue: 21.2 + brightMagenta: 42.5 + brightCyan: 47.9 + brightWhite: 105.5 diff --git a/themes/wye-dark.yaml b/themes/wye-dark.yaml new file mode 100644 index 00000000..4366dfe6 --- /dev/null +++ b/themes/wye-dark.yaml @@ -0,0 +1,49 @@ +name: "Wye Dark" +source: + marketplace_id: "phyzess.wye" + version: "0.7.1" + installs: 155 + author: "phyzess" + repo: "https://github.com/phyzess/vscode-theme-wye" + url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" +colors: + bg: "#151515" + fg: "#E5E5E5" + black: "#393A34" + red: "#F74F5B" + green: "#BDE46F" + yellow: "#F8E330" + blue: "#296AA3" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#E5E5E5" + brightBlack: "#777777" + brightRed: "#F74F5B" + brightGreen: "#BDE46F" + brightYellow: "#F8E330" + brightBlue: "#296AA3" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 90.2 + black: 0 + red: 40.9 + green: 81.2 + yellow: 87.7 + blue: 22.8 + magenta: 44.1 + cyan: 49.5 + white: 90.2 + brightBlack: 29.7 + brightRed: 40.9 + brightGreen: 81.2 + brightYellow: 87.7 + brightBlue: 22.8 + brightMagenta: 44.1 + brightCyan: 49.5 + brightWhite: 107.1 diff --git a/themes/wye-light-soft.yaml b/themes/wye-light-soft.yaml new file mode 100644 index 00000000..5687ce70 --- /dev/null +++ b/themes/wye-light-soft.yaml @@ -0,0 +1,49 @@ +name: "Wye Light Soft" +source: + marketplace_id: "phyzess.wye" + version: "0.7.1" + installs: 155 + author: "phyzess" + repo: "https://github.com/phyzess/vscode-theme-wye" + url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" +colors: + bg: "#F1F0E9" + fg: "#393A34" + black: "#151515" + red: "#AB5959" + green: "#91C53E" + yellow: "#BDA437" + blue: "#6394BF" + magenta: "#A13865" + cyan: "#2993A3" + white: "#E5E5E5" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#91C53E" + brightYellow: "#BDA437" + brightBlue: "#6394BF" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 87.4 + black: 95.9 + red: 64.4 + green: 30.6 + yellow: 39.2 + blue: 50.3 + magenta: 72 + cyan: 54.4 + white: 0 + brightBlack: 36.7 + brightRed: 64.4 + brightGreen: 30.6 + brightYellow: 39.2 + brightBlue: 50.3 + brightMagenta: 72 + brightCyan: 54.4 + brightWhite: 8.5 diff --git a/themes/wye-light.yaml b/themes/wye-light.yaml new file mode 100644 index 00000000..6c5bd936 --- /dev/null +++ b/themes/wye-light.yaml @@ -0,0 +1,49 @@ +name: "Wye Light" +source: + marketplace_id: "phyzess.wye" + version: "0.7.1" + installs: 155 + author: "phyzess" + repo: "https://github.com/phyzess/vscode-theme-wye" + url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" +colors: + bg: "#FFFFFF" + fg: "#393A34" + black: "#151515" + red: "#AB5959" + green: "#91C53E" + yellow: "#BDA437" + blue: "#6394BF" + magenta: "#A13865" + cyan: "#2993A3" + white: "#E5E5E5" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#91C53E" + brightYellow: "#BDA437" + brightBlue: "#6394BF" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 96.5 + black: 104.9 + red: 73.5 + green: 39.7 + yellow: 48.3 + blue: 59.4 + magenta: 81.1 + cyan: 63.5 + white: 12.9 + brightBlack: 45.8 + brightRed: 73.5 + brightGreen: 39.7 + brightYellow: 48.3 + brightBlue: 59.4 + brightMagenta: 81.1 + brightCyan: 63.5 + brightWhite: 17.6 diff --git a/themes/xaeon-dark.yaml b/themes/xaeon-dark.yaml new file mode 100644 index 00000000..c31564fe --- /dev/null +++ b/themes/xaeon-dark.yaml @@ -0,0 +1,49 @@ +name: "Xaeon Dark" +source: + marketplace_id: "AalaeBl.ui-xaeon-dark" + version: "0.0.7" + installs: 441 + author: "aalaeDev" + repo: "https://github.com/aalaeDev/xaeon-dark" + url: "https://marketplace.visualstudio.com/items?itemName=AalaeBl.ui-xaeon-dark" +colors: + bg: "#100F1C" + fg: "#8C88BE" + black: "#393656" + red: "#F9626E" + green: "#8BCB5D" + yellow: "#F7BB4B" + blue: "#2E99E5" + magenta: "#C678DD" + cyan: "#45C9D9" + white: "#BBB2D3" + brightBlack: "#676484" + brightRed: "#EE7983" + brightGreen: "#98C379" + brightYellow: "#D19A66" + brightBlue: "#66A9F2" + brightMagenta: "#E89CFF" + brightCyan: "#56B6C2" + brightWhite: "#E8E0FF" +meta: + mode: "dark" + accent: "orange" + hue: 287 + contrast: + fg: 41 + black: 0 + red: 45.5 + green: 64.8 + yellow: 71.3 + blue: 43.9 + magenta: 45.7 + cyan: 64.1 + white: 62.8 + brightBlack: 23.2 + brightRed: 49 + brightGreen: 62.8 + brightYellow: 53.2 + brightBlue: 53.3 + brightMagenta: 64 + brightCyan: 55.1 + brightWhite: 90 diff --git a/themes/xaidozy-color.yaml b/themes/xaidozy-color.yaml new file mode 100644 index 00000000..a9349586 --- /dev/null +++ b/themes/xaidozy-color.yaml @@ -0,0 +1,49 @@ +name: "xaidozy_Color" +source: + marketplace_id: "xaidozy.xaidozy" + version: "0.0.1" + installs: 36 + author: "xaidozy" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xaidozy.xaidozy" +colors: + bg: "#111111" + fg: "#00FF00" + black: "#333333" + red: "#D10F1B" + green: "#54C600" + yellow: "#FBCC30" + blue: "#3A6FF4" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 86 + black: 0 + red: 26 + green: 58.4 + yellow: 78.5 + blue: 31.1 + magenta: 32.7 + cyan: 50.9 + white: 89 + brightBlack: 22.5 + brightRed: 37.8 + brightGreen: 77.5 + brightYellow: 84.4 + brightBlue: 50.4 + brightMagenta: 47 + brightCyan: 73.9 + brightWhite: 102.5 diff --git a/themes/xanthron-light.yaml b/themes/xanthron-light.yaml new file mode 100644 index 00000000..7a7a58b5 --- /dev/null +++ b/themes/xanthron-light.yaml @@ -0,0 +1,49 @@ +name: "Xanthron Light" +source: + marketplace_id: "XanthronWriter.vscode-theme-xanthron-light" + version: "0.5.1" + installs: 177 + author: "Xanthron Writer" + repo: "https://github.com/XanthronWriter/vscode-theme-xanthron-light" + url: "https://marketplace.visualstudio.com/items?itemName=XanthronWriter.vscode-theme-xanthron-light" +colors: + bg: "#FFFFFF" + fg: "#1C2225" + black: "#1C2225" + red: "#FF2020" + green: "#50FF50" + yellow: "#FFFF50" + blue: "#5050FF" + magenta: "#FF50FF" + cyan: "#50FFFF" + white: "#FFFFFF" + brightBlack: "#1C2225" + brightRed: "#FF2020" + brightGreen: "#50FF50" + brightYellow: "#FFFF50" + brightBlue: "#5050FF" + brightMagenta: "#FF50FF" + brightCyan: "#50FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 103.1 + black: 103.1 + red: 63.4 + green: 15.8 + yellow: 0 + blue: 75.7 + magenta: 50.8 + cyan: 10.9 + white: 0 + brightBlack: 103.1 + brightRed: 63.4 + brightGreen: 15.8 + brightYellow: 0 + brightBlue: 75.7 + brightMagenta: 50.8 + brightCyan: 10.9 + brightWhite: 0 diff --git a/themes/xava-color-theme.yaml b/themes/xava-color-theme.yaml new file mode 100644 index 00000000..68b3dba9 --- /dev/null +++ b/themes/xava-color-theme.yaml @@ -0,0 +1,49 @@ +name: "xava-color-theme" +source: + marketplace_id: "atagulalan.xava-color-theme" + version: "0.0.2" + installs: 94 + author: "Ata" + repo: "https://github.com/atagulalan/xava-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=atagulalan.xava-color-theme" +colors: + bg: "#050505" + fg: "#FAFAFA" + black: "#050505" + red: "#E62E31" + green: "#CCFF2D" + yellow: "#FFE900" + blue: "#003FFF" + magenta: "#FC467A" + cyan: "#00FFEE" + white: "#E0E0E0" + brightBlack: "#2D3136" + brightRed: "#FF3C6D" + brightGreen: "#CCFF2D" + brightYellow: "#FFD140" + brightBlue: "#0191FF" + brightMagenta: "#914DFF" + brightCyan: "#79FFFC" + brightWhite: "#C2C2C2" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 104.5 + black: 0 + red: 33.1 + green: 96.2 + yellow: 92.2 + blue: 20.7 + magenta: 42.3 + cyan: 91.3 + white: 87.9 + brightBlack: 0 + brightRed: 41.4 + brightGreen: 96.2 + brightYellow: 81.9 + brightBlue: 42.9 + brightMagenta: 31.5 + brightCyan: 94.7 + brightWhite: 69.8 diff --git a/themes/xceodark.yaml b/themes/xceodark.yaml new file mode 100644 index 00000000..88873efc --- /dev/null +++ b/themes/xceodark.yaml @@ -0,0 +1,49 @@ +name: "XCeoDark" +source: + marketplace_id: "ceo.xceodark" + version: "0.0.1" + installs: 68 + author: "ceo" + repo: "https://github.com/cyr4hx/XCeoDark" + url: "https://marketplace.visualstudio.com/items?itemName=ceo.xceodark" +colors: + bg: "#24272C" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + contrast: + fg: 77.3 + black: 0 + red: 24.5 + green: 50.8 + yellow: 83.4 + blue: 25.2 + magenta: 27.5 + cyan: 45.3 + white: 87.8 + brightBlack: 19.8 + brightRed: 36.3 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.8 + brightMagenta: 43.2 + brightCyan: 53.2 + brightWhite: 87.8 diff --git a/themes/xcode-dark.yaml b/themes/xcode-dark.yaml new file mode 100644 index 00000000..83c8622b --- /dev/null +++ b/themes/xcode-dark.yaml @@ -0,0 +1,49 @@ +name: "xcode-dark" +source: + marketplace_id: "Lorpaves.zenies" + version: "1.3.3" + installs: 523 + author: "Lorpaves" + repo: "https://github.com/Lorpaves/vscode-flat-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Lorpaves.zenies" +colors: + bg: "#242426" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 57.6 + black: 0 + red: 35 + green: 58.6 + yellow: 46.8 + blue: 47.9 + magenta: 37.3 + cyan: 50.7 + white: 81.3 + brightBlack: 13.7 + brightRed: 44.3 + brightGreen: 75 + brightYellow: 59.5 + brightBlue: 62 + brightMagenta: 48.5 + brightCyan: 66 + brightWhite: 88.9 diff --git a/themes/xecoy-dark.yaml b/themes/xecoy-dark.yaml new file mode 100644 index 00000000..ac6d8100 --- /dev/null +++ b/themes/xecoy-dark.yaml @@ -0,0 +1,49 @@ +name: "Xecoy Dark" +source: + marketplace_id: "xecoy-studio.xecoy-theme" + version: "1.0.2" + installs: 190 + author: "xecoy-studio" + repo: "https://github.com/Xecoy-Studio/Xecoy-Web-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=xecoy-studio.xecoy-theme" +colors: + bg: "#1E1F22" + fg: "#CCCCCC" + black: "#2B2D30" + red: "#DA5050" + green: "#6AAA70" + yellow: "#CF9977" + blue: "#55A0D0" + magenta: "#C787C7" + cyan: "#60B7B7" + white: "#CCCCCC" + brightBlack: "#2B2D30" + brightRed: "#DA5050" + brightGreen: "#6AAA70" + brightYellow: "#CF9977" + brightBlue: "#55A0D0" + brightMagenta: "#C787C7" + brightCyan: "#60B7B7" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.7 + black: 0 + red: 33.2 + green: 46.6 + yellow: 51.4 + blue: 45.2 + magenta: 47.3 + cyan: 54 + white: 73.7 + brightBlack: 0 + brightRed: 33.2 + brightGreen: 46.6 + brightYellow: 51.4 + brightBlue: 45.2 + brightMagenta: 47.3 + brightCyan: 54 + brightWhite: 73.7 diff --git a/themes/xecoy-light.yaml b/themes/xecoy-light.yaml new file mode 100644 index 00000000..a823308e --- /dev/null +++ b/themes/xecoy-light.yaml @@ -0,0 +1,49 @@ +name: "Xecoy Light" +source: + marketplace_id: "xecoy-studio.xecoy-theme" + version: "1.0.2" + installs: 190 + author: "xecoy-studio" + repo: "https://github.com/Xecoy-Studio/Xecoy-Web-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=xecoy-studio.xecoy-theme" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#F7F8FA" + red: "#A11922" + green: "#007D19" + yellow: "#C96520" + blue: "#0033B3" + magenta: "#954595" + cyan: "#077AAB" + white: "#333333" + brightBlack: "#F7F8FA" + brightRed: "#A11922" + brightGreen: "#007D19" + brightYellow: "#C96520" + brightBlue: "#0033B3" + brightMagenta: "#954595" + brightCyan: "#077AAB" + brightWhite: "#333333" +meta: + mode: "light" + accent: "purple" + hue: null + contrast: + fg: 98.7 + black: 0 + red: 85.5 + green: 75.7 + yellow: 66 + blue: 91.6 + magenta: 79 + cyan: 72.7 + white: 98.7 + brightBlack: 0 + brightRed: 85.5 + brightGreen: 75.7 + brightYellow: 66 + brightBlue: 91.6 + brightMagenta: 79 + brightCyan: 72.7 + brightWhite: 98.7 diff --git a/themes/xiali-vintage-rose-dark.yaml b/themes/xiali-vintage-rose-dark.yaml new file mode 100644 index 00000000..c2143945 --- /dev/null +++ b/themes/xiali-vintage-rose-dark.yaml @@ -0,0 +1,49 @@ +name: "Xiali Vintage Rose Dark" +source: + marketplace_id: "xiali-themes.xiali-vintage-rose" + version: "1.1.1" + installs: 20 + author: "xiali-themes" + repo: "https://github.com/Fernando-Leon/xiali-vintage-rose" + url: "https://marketplace.visualstudio.com/items?itemName=xiali-themes.xiali-vintage-rose" +colors: + bg: "#1A0D10" + fg: "#F2C4C4" + black: "#1A0D10" + red: "#9C3348" + green: "#7A3347" + yellow: "#A04D5E" + blue: "#B56070" + magenta: "#C2607A" + cyan: "#C97B87" + white: "#EDD5C8" + brightBlack: "#5C2035" + brightRed: "#C2607A" + brightGreen: "#A04D5E" + brightYellow: "#C97B87" + brightBlue: "#D4758C" + brightMagenta: "#EAAEB2" + brightCyan: "#F2C4C4" + brightWhite: "#FDF0F0" +meta: + mode: "dark" + accent: "red" + hue: 5 + contrast: + fg: 77 + black: 0 + red: 17.9 + green: 12.2 + yellow: 23.4 + blue: 31.6 + magenta: 34.2 + cyan: 42.8 + white: 83.4 + brightBlack: 0 + brightRed: 34.2 + brightGreen: 23.4 + brightYellow: 42.8 + brightBlue: 43.3 + brightMagenta: 66.6 + brightCyan: 77 + brightWhite: 99.4 diff --git a/themes/xiali-vintage-rose-light.yaml b/themes/xiali-vintage-rose-light.yaml new file mode 100644 index 00000000..ee3adb72 --- /dev/null +++ b/themes/xiali-vintage-rose-light.yaml @@ -0,0 +1,49 @@ +name: "Xiali Vintage Rose Light" +source: + marketplace_id: "xiali-themes.xiali-vintage-rose" + version: "1.1.1" + installs: 20 + author: "xiali-themes" + repo: "https://github.com/Fernando-Leon/xiali-vintage-rose" + url: "https://marketplace.visualstudio.com/items?itemName=xiali-themes.xiali-vintage-rose" +colors: + bg: "#FDF0F0" + fg: "#3E1022" + black: "#3E1022" + red: "#9C3348" + green: "#8A4A58" + yellow: "#B56070" + blue: "#A04D5E" + magenta: "#C2607A" + cyan: "#B56070" + white: "#EDD5C8" + brightBlack: "#7A3347" + brightRed: "#C2607A" + brightGreen: "#A04D5E" + brightYellow: "#C97B87" + brightBlue: "#D4758C" + brightMagenta: "#EAAEB2" + brightCyan: "#F2C4C4" + brightWhite: "#FDF0F0" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 95.4 + black: 95.4 + red: 76.3 + green: 75 + yellow: 62.3 + blue: 70.6 + magenta: 59.7 + cyan: 62.3 + white: 12.3 + brightBlack: 82.3 + brightRed: 59.7 + brightGreen: 70.6 + brightYellow: 51.1 + brightBlue: 50.7 + brightMagenta: 28.2 + brightCyan: 18.4 + brightWhite: 0 diff --git a/themes/xis-one.yaml b/themes/xis-one.yaml new file mode 100644 index 00000000..1314d7e4 --- /dev/null +++ b/themes/xis-one.yaml @@ -0,0 +1,49 @@ +name: "xis_one" +source: + marketplace_id: "Xanpis.xis" + version: "0.0.0" + installs: 827 + author: "Xanpis" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Xanpis.xis" +colors: + bg: "#1E2222" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 58.1 + black: 7.6 + red: 35.4 + green: 59.1 + yellow: 47.3 + blue: 48.4 + magenta: 37.8 + cyan: 51.2 + white: 81.7 + brightBlack: 14.2 + brightRed: 44.8 + brightGreen: 75.5 + brightYellow: 59.9 + brightBlue: 62.4 + brightMagenta: 49 + brightCyan: 66.5 + brightWhite: 89.4 diff --git a/themes/xk-dark-catppuccin-mocha.yaml b/themes/xk-dark-catppuccin-mocha.yaml new file mode 100644 index 00000000..568fa420 --- /dev/null +++ b/themes/xk-dark-catppuccin-mocha.yaml @@ -0,0 +1,49 @@ +name: "XK Dark Catppuccin Mocha" +source: + marketplace_id: "x1ngkong.vscode-xk-theme" + version: "0.1.0" + installs: 31 + author: "x1ngkong" + repo: "https://github.com/x1ngkong/vscode-xk-theme" + url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#000000" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#FAB387" + blue: "#CBA6F7" + magenta: "#89B4FA" + cyan: "#89B4FA" + white: "#CDD6F4" + brightBlack: "#CDD6F4" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#FAB387" + brightBlue: "#CBA6F7" + brightMagenta: "#89B4FA" + brightCyan: "#89B4FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 80 + black: 0 + red: 54.7 + green: 78.3 + yellow: 68.2 + blue: 60.8 + magenta: 59.1 + cyan: 59.1 + white: 80 + brightBlack: 80 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 68.2 + brightBlue: 60.8 + brightMagenta: 59.1 + brightCyan: 59.1 + brightWhite: 105.8 diff --git a/themes/xk-dark-dracula.yaml b/themes/xk-dark-dracula.yaml new file mode 100644 index 00000000..f714cb78 --- /dev/null +++ b/themes/xk-dark-dracula.yaml @@ -0,0 +1,49 @@ +name: "XK Dark Dracula" +source: + marketplace_id: "x1ngkong.vscode-xk-theme" + version: "0.1.0" + installs: 31 + author: "x1ngkong" + repo: "https://github.com/x1ngkong/vscode-xk-theme" + url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#000000" + red: "#FF5555" + green: "#50FA7B" + yellow: "#FFB86C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#F8F8F2" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#FFB86C" + brightBlue: "#BD93F9" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 68.5 + blue: 50.7 + magenta: 51.6 + cyan: 81 + white: 99 + brightBlack: 99 + brightRed: 40.4 + brightGreen: 81.9 + brightYellow: 68.5 + brightBlue: 50.7 + brightMagenta: 51.6 + brightCyan: 81 + brightWhite: 103.9 diff --git a/themes/xk-dark-gruvbox.yaml b/themes/xk-dark-gruvbox.yaml new file mode 100644 index 00000000..48a9583b --- /dev/null +++ b/themes/xk-dark-gruvbox.yaml @@ -0,0 +1,49 @@ +name: "XK Dark Gruvbox" +source: + marketplace_id: "x1ngkong.vscode-xk-theme" + version: "0.1.0" + installs: 31 + author: "x1ngkong" + repo: "https://github.com/x1ngkong/vscode-xk-theme" + url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" +colors: + bg: "#1D2021" + fg: "#EBDBB2" + black: "#000000" + red: "#FB4934" + green: "#B8BB26" + yellow: "#FABD2F" + blue: "#FABD2F" + magenta: "#FE8019" + cyan: "#83A598" + white: "#EBDBB2" + brightBlack: "#EBDBB2" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#FABD2F" + brightMagenta: "#FE8019" + brightCyan: "#83A598" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 83.3 + black: 0 + red: 39.1 + green: 60.1 + yellow: 70.8 + blue: 70.8 + magenta: 51.1 + cyan: 47.6 + white: 83.3 + brightBlack: 83.3 + brightRed: 39.1 + brightGreen: 60.1 + brightYellow: 70.8 + brightBlue: 70.8 + brightMagenta: 51.1 + brightCyan: 47.6 + brightWhite: 105.8 diff --git a/themes/xk-dark-monokai-pro.yaml b/themes/xk-dark-monokai-pro.yaml new file mode 100644 index 00000000..1f4ec35a --- /dev/null +++ b/themes/xk-dark-monokai-pro.yaml @@ -0,0 +1,49 @@ +name: "XK Dark Monokai Pro" +source: + marketplace_id: "x1ngkong.vscode-xk-theme" + version: "0.1.0" + installs: 31 + author: "x1ngkong" + repo: "https://github.com/x1ngkong/vscode-xk-theme" + url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" +colors: + bg: "#2D2A2E" + fg: "#FCFCFA" + black: "#000000" + red: "#FF6188" + green: "#78DCE8" + yellow: "#FFD866" + blue: "#A9DC76" + magenta: "#FF6188" + cyan: "#78DCE8" + white: "#FCFCFA" + brightBlack: "#FCFCFA" + brightRed: "#FF6188" + brightGreen: "#78DCE8" + brightYellow: "#FFD866" + brightBlue: "#A9DC76" + brightMagenta: "#FF6188" + brightCyan: "#78DCE8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 101.8 + black: 0 + red: 43.8 + green: 72.4 + yellow: 81.3 + blue: 72.3 + magenta: 43.8 + cyan: 72.4 + white: 101.8 + brightBlack: 101.8 + brightRed: 43.8 + brightGreen: 72.4 + brightYellow: 81.3 + brightBlue: 72.3 + brightMagenta: 43.8 + brightCyan: 72.4 + brightWhite: 103.9 diff --git a/themes/xk-dark-tokyo-night.yaml b/themes/xk-dark-tokyo-night.yaml new file mode 100644 index 00000000..e1bcc145 --- /dev/null +++ b/themes/xk-dark-tokyo-night.yaml @@ -0,0 +1,49 @@ +name: "XK Dark Tokyo Night" +source: + marketplace_id: "x1ngkong.vscode-xk-theme" + version: "0.1.0" + installs: 31 + author: "x1ngkong" + repo: "https://github.com/x1ngkong/vscode-xk-theme" + url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" +colors: + bg: "#1A1B2E" + fg: "#C0CAF5" + black: "#000000" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#FF9E64" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7AA2F7" + white: "#C0CAF5" + brightBlack: "#C0CAF5" + brightRed: "#F7768E" + brightGreen: "#9ECE6A" + brightYellow: "#FF9E64" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7AA2F7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 281 + contrast: + fg: 73.7 + black: 0 + red: 49.2 + green: 66.8 + yellow: 61.4 + blue: 51 + magenta: 54.9 + cyan: 51 + white: 73.7 + brightBlack: 73.7 + brightRed: 49.2 + brightGreen: 66.8 + brightYellow: 61.4 + brightBlue: 51 + brightMagenta: 54.9 + brightCyan: 51 + brightWhite: 106.2 diff --git a/themes/xk-light-catppuccin-latte.yaml b/themes/xk-light-catppuccin-latte.yaml new file mode 100644 index 00000000..8c25d477 --- /dev/null +++ b/themes/xk-light-catppuccin-latte.yaml @@ -0,0 +1,49 @@ +name: "XK Light Catppuccin Latte" +source: + marketplace_id: "x1ngkong.vscode-xk-theme" + version: "0.1.0" + installs: 31 + author: "x1ngkong" + repo: "https://github.com/x1ngkong/vscode-xk-theme" + url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" +colors: + bg: "#EFF1F5" + fg: "#3D3F55" + black: "#000000" + red: "#B91C1C" + green: "#166534" + yellow: "#B45309" + blue: "#7C3AED" + magenta: "#1D4ED8" + cyan: "#1D4ED8" + white: "#3D3F55" + brightBlack: "#3D3F55" + brightRed: "#B91C1C" + brightGreen: "#166534" + brightYellow: "#B45309" + brightBlue: "#7C3AED" + brightMagenta: "#1D4ED8" + brightCyan: "#1D4ED8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 85.5 + black: 97.6 + red: 71.8 + green: 75.9 + yellow: 65.6 + blue: 69.1 + magenta: 73.8 + cyan: 73.8 + white: 85.5 + brightBlack: 85.5 + brightRed: 71.8 + brightGreen: 75.9 + brightYellow: 65.6 + brightBlue: 69.1 + brightMagenta: 73.8 + brightCyan: 73.8 + brightWhite: 0 diff --git a/themes/xk-light-github.yaml b/themes/xk-light-github.yaml new file mode 100644 index 00000000..f63976aa --- /dev/null +++ b/themes/xk-light-github.yaml @@ -0,0 +1,49 @@ +name: "XK Light GitHub" +source: + marketplace_id: "x1ngkong.vscode-xk-theme" + version: "0.1.0" + installs: 31 + author: "x1ngkong" + repo: "https://github.com/x1ngkong/vscode-xk-theme" + url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" +colors: + bg: "#FFFFFF" + fg: "#1F2328" + black: "#000000" + red: "#B91C1C" + green: "#116329" + yellow: "#854D0E" + blue: "#0550AE" + magenta: "#6639BA" + cyan: "#0550AE" + white: "#1F2328" + brightBlack: "#1F2328" + brightRed: "#B91C1C" + brightGreen: "#116329" + brightYellow: "#854D0E" + brightBlue: "#0550AE" + brightMagenta: "#6639BA" + brightCyan: "#0550AE" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 102.8 + black: 106 + red: 80.2 + green: 85.2 + yellow: 83.3 + blue: 85.6 + magenta: 84.9 + cyan: 85.6 + white: 102.8 + brightBlack: 102.8 + brightRed: 80.2 + brightGreen: 85.2 + brightYellow: 83.3 + brightBlue: 85.6 + brightMagenta: 84.9 + brightCyan: 85.6 + brightWhite: 0 diff --git a/themes/xk-light-one.yaml b/themes/xk-light-one.yaml new file mode 100644 index 00000000..f2355be0 --- /dev/null +++ b/themes/xk-light-one.yaml @@ -0,0 +1,49 @@ +name: "XK Light One" +source: + marketplace_id: "x1ngkong.vscode-xk-theme" + version: "0.1.0" + installs: 31 + author: "x1ngkong" + repo: "https://github.com/x1ngkong/vscode-xk-theme" + url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" +colors: + bg: "#FAFAFA" + fg: "#282C33" + black: "#000000" + red: "#C0392B" + green: "#3D8A3D" + yellow: "#8A5C00" + blue: "#2C64D6" + magenta: "#8B1EA0" + cyan: "#2C64D6" + white: "#282C33" + brightBlack: "#282C33" + brightRed: "#C0392B" + brightGreen: "#3D8A3D" + brightYellow: "#8A5C00" + brightBlue: "#2C64D6" + brightMagenta: "#8B1EA0" + brightCyan: "#2C64D6" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 97.7 + black: 103 + red: 72.9 + green: 66.4 + yellow: 75.8 + blue: 73.3 + magenta: 81.8 + cyan: 73.3 + white: 97.7 + brightBlack: 97.7 + brightRed: 72.9 + brightGreen: 66.4 + brightYellow: 75.8 + brightBlue: 73.3 + brightMagenta: 81.8 + brightCyan: 73.3 + brightWhite: 0 diff --git a/themes/xk-light-ros-pine.yaml b/themes/xk-light-ros-pine.yaml new file mode 100644 index 00000000..0cbb3501 --- /dev/null +++ b/themes/xk-light-ros-pine.yaml @@ -0,0 +1,49 @@ +name: "XK Light Rosé Pine" +source: + marketplace_id: "x1ngkong.vscode-xk-theme" + version: "0.1.0" + installs: 31 + author: "x1ngkong" + repo: "https://github.com/x1ngkong/vscode-xk-theme" + url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" +colors: + bg: "#FAF4ED" + fg: "#3D3951" + black: "#000000" + red: "#96344A" + green: "#3A7A84" + yellow: "#B85E00" + blue: "#1A5F78" + magenta: "#B85C58" + cyan: "#1A5F78" + white: "#3D3951" + brightBlack: "#3D3951" + brightRed: "#96344A" + brightGreen: "#3A7A84" + brightYellow: "#B85E00" + brightBlue: "#1A5F78" + brightMagenta: "#B85C58" + brightCyan: "#1A5F78" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 89.4 + black: 100 + red: 78.4 + green: 67.6 + yellow: 64.8 + blue: 78.3 + magenta: 64.4 + cyan: 78.3 + white: 89.4 + brightBlack: 89.4 + brightRed: 78.4 + brightGreen: 67.6 + brightYellow: 64.8 + brightBlue: 78.3 + brightMagenta: 64.4 + brightCyan: 78.3 + brightWhite: 0 diff --git a/themes/xk-light-solarized.yaml b/themes/xk-light-solarized.yaml new file mode 100644 index 00000000..c45d0318 --- /dev/null +++ b/themes/xk-light-solarized.yaml @@ -0,0 +1,49 @@ +name: "XK Light Solarized" +source: + marketplace_id: "x1ngkong.vscode-xk-theme" + version: "0.1.0" + installs: 31 + author: "x1ngkong" + repo: "https://github.com/x1ngkong/vscode-xk-theme" + url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" +colors: + bg: "#FDF6E3" + fg: "#073642" + black: "#000000" + red: "#B81C1C" + green: "#5C6F00" + yellow: "#8A6500" + blue: "#1A6EA8" + magenta: "#A81676" + cyan: "#1A6EA8" + white: "#073642" + brightBlack: "#073642" + brightRed: "#B81C1C" + brightGreen: "#5C6F00" + brightYellow: "#8A6500" + brightBlue: "#1A6EA8" + brightMagenta: "#A81676" + brightCyan: "#1A6EA8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 93.7 + black: 100.8 + red: 75.2 + green: 72.7 + yellow: 71 + blue: 71.6 + magenta: 76.9 + cyan: 71.6 + white: 93.7 + brightBlack: 93.7 + brightRed: 75.2 + brightGreen: 72.7 + brightYellow: 71 + brightBlue: 71.6 + brightMagenta: 76.9 + brightCyan: 71.6 + brightWhite: 0 diff --git a/themes/xlumielvscodetheme.yaml b/themes/xlumielvscodetheme.yaml new file mode 100644 index 00000000..af86e408 --- /dev/null +++ b/themes/xlumielvscodetheme.yaml @@ -0,0 +1,49 @@ +name: "xLumielVSCodeTheme" +source: + marketplace_id: "xlumiel.xLumielVSCodeTheme" + version: "3.9.6" + installs: 100 + author: "xlumiel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xlumiel.xLumielVSCodeTheme" +colors: + bg: "#000000" + fg: "#3399DD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 44 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/xochil.yaml b/themes/xochil.yaml new file mode 100644 index 00000000..c7e5e324 --- /dev/null +++ b/themes/xochil.yaml @@ -0,0 +1,49 @@ +name: "Xochil" +source: + marketplace_id: "VARKODE.xochil" + version: "0.0.2" + installs: 73 + author: "VARKODE" + repo: "https://github.com/varkode/xochil" + url: "https://marketplace.visualstudio.com/items?itemName=VARKODE.xochil" +colors: + bg: "#19232D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 249 + contrast: + fg: 78 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 88.6 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.6 + brightMagenta: 43.9 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/xotocode-dark.yaml b/themes/xotocode-dark.yaml new file mode 100644 index 00000000..c18a0e81 --- /dev/null +++ b/themes/xotocode-dark.yaml @@ -0,0 +1,49 @@ +name: "xotocode-dark" +source: + marketplace_id: "xotosphere.xotocode-theme" + version: "0.0.9" + installs: 296 + author: "xotosphere" + repo: "https://github.com/xotocode/xotocode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xotosphere.xotocode-theme" +colors: + bg: "#1D2031" + fg: "#C8D3F5" + black: "#000000" + red: "#FF757F" + green: "#C3E88D" + yellow: "#FFC777" + blue: "#82AAFF" + magenta: "#FCA7EA" + cyan: "#86E1FC" + white: "#C8D3F5" + brightBlack: "#828BB8" + brightRed: "#FF757F" + brightGreen: "#C3E88D" + brightYellow: "#FFC777" + brightBlue: "#82AAFF" + brightMagenta: "#FCA7EA" + brightCyan: "#86E1FC" + brightWhite: "#C8D3F5" +meta: + mode: "dark" + accent: "orange" + hue: 276 + contrast: + fg: 77.9 + black: 0 + red: 49.6 + green: 82.9 + yellow: 76.2 + blue: 54.6 + magenta: 68 + cyan: 78.5 + white: 77.9 + brightBlack: 38.9 + brightRed: 49.6 + brightGreen: 82.9 + brightYellow: 76.2 + brightBlue: 54.6 + brightMagenta: 68 + brightCyan: 78.5 + brightWhite: 77.9 diff --git a/themes/xotopio.yaml b/themes/xotopio.yaml new file mode 100644 index 00000000..9bd9a99a --- /dev/null +++ b/themes/xotopio.yaml @@ -0,0 +1,49 @@ +name: "xotopio" +source: + marketplace_id: "xotopio.xotopio-light" + version: "0.29.0" + installs: 1008 + author: "xotopio" + repo: "https://github.com/xotopio/xotopio.light" + url: "https://marketplace.visualstudio.com/items?itemName=xotopio.xotopio-light" +colors: + bg: "#F7F5F4" + fg: "#212121" + black: "#403F53" + red: "#DE3D3B" + green: "#3F987F" + yellow: "#C9BD62" + blue: "#5885A5" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#BA5887" + brightCyan: "#2AA298" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 97.3 + black: 88 + red: 63 + green: 56.5 + yellow: 30.9 + blue: 61.1 + magenta: 62 + cyan: 52.1 + white: 0 + brightBlack: 88 + brightRed: 63 + brightGreen: 60.9 + brightYellow: 36.4 + brightBlue: 56.7 + brightMagenta: 63.9 + brightCyan: 52.1 + brightWhite: 0 diff --git a/themes/xpyjs-black.yaml b/themes/xpyjs-black.yaml new file mode 100644 index 00000000..f9337ce4 --- /dev/null +++ b/themes/xpyjs-black.yaml @@ -0,0 +1,49 @@ +name: "Xpyjs Black" +source: + marketplace_id: "xpyjs.xpyjs-theme" + version: "0.0.3" + installs: 34 + author: "xpyjs" + repo: "https://github.com/xpyjs/vsc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xpyjs.xpyjs-theme" +colors: + bg: "#000000" + fg: "#DBD7CA" + black: "#000000" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 82.3 + black: 0 + red: 40.3 + green: 68.3 + yellow: 83.1 + blue: 56.9 + magenta: 54.8 + cyan: 60.7 + white: 107.9 + brightBlack: 16.6 + brightRed: 40.3 + brightGreen: 68.3 + brightYellow: 94.7 + brightBlue: 56.9 + brightMagenta: 54.8 + brightCyan: 75 + brightWhite: 107.9 diff --git a/themes/xresources-bordered-dark.yaml b/themes/xresources-bordered-dark.yaml new file mode 100644 index 00000000..2b5efd30 --- /dev/null +++ b/themes/xresources-bordered-dark.yaml @@ -0,0 +1,49 @@ +name: "xresources_bordered_dark" +source: + marketplace_id: "NekkiNeks.xresources-theme-plus" + version: "2.0.1" + installs: 22 + author: "NekkiNeks" + repo: "https://github.com/NekkiNeks/xresources-theme-plus" + url: "https://marketplace.visualstudio.com/items?itemName=NekkiNeks.xresources-theme-plus" +colors: + bg: "#000000" + fg: "#EAEAEA" + black: "#232323" + red: "#B30303" + green: "#8AB800" + yellow: "#DC4904" + blue: "#2527CE" + magenta: "#B20B6D" + cyan: "#277890" + white: "#AFAFAF" + brightBlack: "#4D4D4D" + brightRed: "#FF0100" + brightGreen: "#BAF602" + brightYellow: "#FD6C13" + brightBlue: "#2E31FC" + brightMagenta: "#F01294" + brightCyan: "#3BB1D4" + brightWhite: "#D6D6D6" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 94.2 + black: 0 + red: 19.7 + green: 56 + yellow: 33.9 + blue: 12.4 + magenta: 21.1 + cyan: 27.2 + white: 59 + brightBlack: 13.1 + brightRed: 37.5 + brightGreen: 89.7 + brightYellow: 47.9 + brightBlue: 19 + brightMagenta: 36.5 + brightCyan: 53.4 + brightWhite: 81.7 diff --git a/themes/xresources-bordered-mixed.yaml b/themes/xresources-bordered-mixed.yaml new file mode 100644 index 00000000..e494edbb --- /dev/null +++ b/themes/xresources-bordered-mixed.yaml @@ -0,0 +1,49 @@ +name: "xresources_bordered_mixed" +source: + marketplace_id: "NekkiNeks.xresources-theme-plus" + version: "2.0.1" + installs: 22 + author: "NekkiNeks" + repo: "https://github.com/NekkiNeks/xresources-theme-plus" + url: "https://marketplace.visualstudio.com/items?itemName=NekkiNeks.xresources-theme-plus" +colors: + bg: "#000000" + fg: "#EAEAEA" + black: "#000000" + red: "#B30303" + green: "#8AB800" + yellow: "#DC4904" + blue: "#2527CE" + magenta: "#B20B6D" + cyan: "#277890" + white: "#AFAFAF" + brightBlack: "#4D4D4D" + brightRed: "#FF0100" + brightGreen: "#BAF602" + brightYellow: "#FD6C13" + brightBlue: "#2E31FC" + brightMagenta: "#F01294" + brightCyan: "#3BB1D4" + brightWhite: "#D6D6D6" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 94.2 + black: 0 + red: 19.7 + green: 56 + yellow: 33.9 + blue: 12.4 + magenta: 21.1 + cyan: 27.2 + white: 59 + brightBlack: 13.1 + brightRed: 37.5 + brightGreen: 89.7 + brightYellow: 47.9 + brightBlue: 19 + brightMagenta: 36.5 + brightCyan: 53.4 + brightWhite: 81.7 diff --git a/themes/xresources-bordered.yaml b/themes/xresources-bordered.yaml new file mode 100644 index 00000000..5ee0c762 --- /dev/null +++ b/themes/xresources-bordered.yaml @@ -0,0 +1,49 @@ +name: "xresources-bordered" +source: + marketplace_id: "JackVandergriff.xresources-theme" + version: "1.1.0" + installs: 1524 + author: "Jack Vandergriff" + repo: "https://github.com/JackVandergriff/vscode-xresources-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JackVandergriff.xresources-theme" +colors: + bg: "#2F2C2B" + fg: "#C9C8C8" + black: "#272524" + red: "#F4ADFC" + green: "#185D8E" + yellow: "#7270A0" + blue: "#7996AA" + magenta: "#5989AA" + cyan: "#D0C29F" + white: "#C9C8C8" + brightBlack: "#5D5B5A" + brightRed: "#F4FCAD" + brightGreen: "#185D8E" + brightYellow: "#7270A0" + brightBlue: "#7996AA" + brightMagenta: "#5989AA" + brightCyan: "#D0C29F" + brightWhite: "#C9C8C8" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 69.1 + black: 0 + red: 67.6 + green: 13.7 + yellow: 25.2 + blue: 39.3 + magenta: 32.2 + cyan: 65.9 + white: 69.1 + brightBlack: 14.3 + brightRed: 97.4 + brightGreen: 13.7 + brightYellow: 25.2 + brightBlue: 39.3 + brightMagenta: 32.2 + brightCyan: 65.9 + brightWhite: 69.1 diff --git a/themes/xresources.yaml b/themes/xresources.yaml new file mode 100644 index 00000000..44061726 --- /dev/null +++ b/themes/xresources.yaml @@ -0,0 +1,49 @@ +name: "xresources" +source: + marketplace_id: "JackVandergriff.xresources-theme" + version: "1.1.0" + installs: 1524 + author: "Jack Vandergriff" + repo: "https://github.com/JackVandergriff/vscode-xresources-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JackVandergriff.xresources-theme" +colors: + bg: "#272524" + fg: "#C9C8C8" + black: "#272524" + red: "#F4ADFC" + green: "#185D8E" + yellow: "#7270A0" + blue: "#7996AA" + magenta: "#5989AA" + cyan: "#D0C29F" + white: "#C9C8C8" + brightBlack: "#5D5B5A" + brightRed: "#F4FCAD" + brightGreen: "#185D8E" + brightYellow: "#7270A0" + brightBlue: "#7996AA" + brightMagenta: "#5989AA" + brightCyan: "#D0C29F" + brightWhite: "#C9C8C8" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 70.4 + black: 0 + red: 69 + green: 15.1 + yellow: 26.6 + blue: 40.7 + magenta: 33.6 + cyan: 67.3 + white: 70.4 + brightBlack: 15.7 + brightRed: 98.8 + brightGreen: 15.1 + brightYellow: 26.6 + brightBlue: 40.7 + brightMagenta: 33.6 + brightCyan: 67.3 + brightWhite: 70.4 diff --git a/themes/xrodev.yaml b/themes/xrodev.yaml new file mode 100644 index 00000000..99daf078 --- /dev/null +++ b/themes/xrodev.yaml @@ -0,0 +1,49 @@ +name: "xrodev" +source: + marketplace_id: "rayan2228.xrodev" + version: "1.1.0" + installs: 87 + author: "rayan2228" + repo: "https://github.com/rayan2228/xrodev-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rayan2228.xrodev" +colors: + bg: "#0F0919" + fg: "#EAECFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 300 + contrast: + fg: 95.9 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.1 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/xs.yaml b/themes/xs.yaml new file mode 100644 index 00000000..4f2c0dc6 --- /dev/null +++ b/themes/xs.yaml @@ -0,0 +1,49 @@ +name: "xs" +source: + marketplace_id: "VOID-DaydreaM.onsea-scenery" + version: "0.3.0" + installs: 6 + author: "VOID-DaydreaM" + repo: "https://github.com/mag1c1an1/onsea-scenery" + url: "https://marketplace.visualstudio.com/items?itemName=VOID-DaydreaM.onsea-scenery" +colors: + bg: "#FFFFFF" + fg: "#B81515" + black: "#101316" + red: "#E35535" + green: "#00A884" + yellow: "#DDB177" + blue: "#11B7D4" + magenta: "#D46EC0" + cyan: "#DDB177" + white: "#C3C6CB" + brightBlack: "#11B7D4" + brightRed: "#E35535" + brightGreen: "#00A884" + brightYellow: "#DDB177" + brightBlue: "#11B7D4" + brightMagenta: "#D46EC0" + brightCyan: "#DDB177" + brightWhite: "#C3C6CB" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 80.8 + black: 105.2 + red: 64 + green: 56.4 + yellow: 38.1 + blue: 46.7 + magenta: 57.5 + cyan: 38.1 + white: 30.8 + brightBlack: 46.7 + brightRed: 64 + brightGreen: 56.4 + brightYellow: 38.1 + brightBlue: 46.7 + brightMagenta: 57.5 + brightCyan: 38.1 + brightWhite: 30.8 diff --git a/themes/xstheme.yaml b/themes/xstheme.yaml new file mode 100644 index 00000000..12930f20 --- /dev/null +++ b/themes/xstheme.yaml @@ -0,0 +1,49 @@ +name: "XSTheme" +source: + marketplace_id: "JoseXS.xstheme" + version: "0.0.3" + installs: 787 + author: "JoseXS" + repo: "https://github.com/josexs/vscode-xstheme" + url: "https://marketplace.visualstudio.com/items?itemName=JoseXS.xstheme" +colors: + bg: "#1E1E1E" + fg: "#CCCCCC" + black: "#000000" + red: "#FB5245" + green: "#CC0000" + yellow: "#FAC149" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CCCCCC" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#CC0000" + brightYellow: "#F5F543" + brightBlue: "#95B7F7" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 73.8 + black: 0 + red: 40.9 + green: 23.4 + yellow: 72.7 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 73.8 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 23.4 + brightYellow: 94.8 + brightBlue: 61.3 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/xthemis-cyan.yaml b/themes/xthemis-cyan.yaml new file mode 100644 index 00000000..26aafb71 --- /dev/null +++ b/themes/xthemis-cyan.yaml @@ -0,0 +1,49 @@ +name: "xThemis-Cyan" +source: + marketplace_id: "xthemis19981.Cyan-Theme" + version: "0.0.3" + installs: 456 + author: "xthemis19981" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xthemis19981.Cyan-Theme" +colors: + bg: "#151515" + fg: "#B00000" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 18.2 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/xtree-gold.yaml b/themes/xtree-gold.yaml new file mode 100644 index 00000000..d9fc05a9 --- /dev/null +++ b/themes/xtree-gold.yaml @@ -0,0 +1,49 @@ +name: "Xtree Gold" +source: + marketplace_id: "xstructx.xtree-gold" + version: "0.0.6" + installs: 1680 + author: "xstructx" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xstructx.xtree-gold" +colors: + bg: "#0900B0" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: 265 + contrast: + fg: 99.7 + black: 8 + red: 19.5 + green: 44.5 + yellow: 35.7 + blue: 7.8 + magenta: 19 + cyan: 32.9 + white: 7.9 + brightBlack: 14.9 + brightRed: 19.5 + brightGreen: 53.2 + brightYellow: 53.1 + brightBlue: 7.8 + brightMagenta: 19 + brightCyan: 32.9 + brightWhite: 45.4 diff --git a/themes/xviewdark.yaml b/themes/xviewdark.yaml new file mode 100644 index 00000000..aea4b2db --- /dev/null +++ b/themes/xviewdark.yaml @@ -0,0 +1,49 @@ +name: "xViewDark" +source: + marketplace_id: "thomas-richter.xviewdark" + version: "1.1.0" + installs: 745 + author: "Thomas Richter" + repo: "https://github.com/eightbyte81/x-view-dark-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thomas-richter.xviewdark" +colors: + bg: "#212126" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.2 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.1 + magenta: 28.4 + cyan: 46.2 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.2 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.7 + brightMagenta: 44 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/xxhtml.yaml b/themes/xxhtml.yaml new file mode 100644 index 00000000..ac2d1174 --- /dev/null +++ b/themes/xxhtml.yaml @@ -0,0 +1,49 @@ +name: "XxHTML" +source: + marketplace_id: "xxhtml.xxhtml-themes" + version: "0.0.15" + installs: 1165 + author: "Isaac" + repo: "https://github.com/XxHTMLStudios/xxhtml-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xxhtml.xxhtml-themes" +colors: + bg: "#282828" + fg: "#C0C0C0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 65.2 + black: 0 + red: 24.3 + green: 50.6 + yellow: 83.2 + blue: 25 + magenta: 27.3 + cyan: 45.1 + white: 87.6 + brightBlack: 19.6 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.6 + brightMagenta: 42.9 + brightCyan: 53 + brightWhite: 87.6 diff --git a/themes/xxtereshko-light.yaml b/themes/xxtereshko-light.yaml new file mode 100644 index 00000000..b4a5a0dd --- /dev/null +++ b/themes/xxtereshko-light.yaml @@ -0,0 +1,49 @@ +name: "xxtereshko-light" +source: + marketplace_id: "xxtereshko.xxtereshko-light" + version: "1.0.0" + installs: 248 + author: "Maxim Tereshko" + repo: "https://github.com/xxtereshko/xxtereshko-light" + url: "https://marketplace.visualstudio.com/items?itemName=xxtereshko.xxtereshko-light" +colors: + bg: "#FFFFFF" + fg: "#24292F" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#4078F2" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 101.5 + black: 101.5 + red: 74.8 + green: 85.2 + yellow: 98 + blue: 67.3 + magenta: 74.3 + cyan: 73.8 + white: 71.6 + brightBlack: 81.8 + brightRed: 85.2 + brightGreen: 74.6 + brightYellow: 92 + brightBlue: 60.7 + brightMagenta: 59.3 + brightCyan: 63.3 + brightWhite: 57.2 diff --git a/themes/xzadudu179.yaml b/themes/xzadudu179.yaml new file mode 100644 index 00000000..ae748cfa --- /dev/null +++ b/themes/xzadudu179.yaml @@ -0,0 +1,49 @@ +name: "xzadudu179" +source: + marketplace_id: "xzadudu179.aerno-theme" + version: "0.0.4" + installs: 140 + author: "xzadudu179" + repo: "https://github.com/xzadudu179/Aerno-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=xzadudu179.aerno-theme" +colors: + bg: "#1A1A24" + fg: "#CAD2EB" + black: "#1A1A1D" + red: "#F76363" + green: "#74F57F" + yellow: "#F8EF71" + blue: "#60A0FF" + magenta: "#DF6BEE" + cyan: "#70DBE2" + white: "#DCDDF1" + brightBlack: "#242433" + brightRed: "#FF8F8F" + brightGreen: "#ACF5B8" + brightYellow: "#FAF49C" + brightBlue: "#8AB9FF" + brightMagenta: "#EC8DF8" + brightCyan: "#9AECF1" + brightWhite: "#ECEDFF" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 78 + black: 0 + red: 44 + green: 83.4 + yellow: 93.3 + blue: 49.4 + magenta: 47 + cyan: 73.8 + white: 85.4 + brightBlack: 0 + brightRed: 57.9 + brightGreen: 89 + brightYellow: 96.9 + brightBlue: 62.1 + brightMagenta: 58.7 + brightCyan: 85.5 + brightWhite: 95.4 diff --git a/themes/y3m.yaml b/themes/y3m.yaml new file mode 100644 index 00000000..8a095823 --- /dev/null +++ b/themes/y3m.yaml @@ -0,0 +1,49 @@ +name: "y3m" +source: + marketplace_id: "YesCode.y3m" + version: "0.0.2" + installs: 1 + author: "YesCode" + repo: "https://github.com/y3mm/y3m-theme-vs" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.y3m" +colors: + bg: "#020202" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#CFBDFA" + brightYellow: "#E7F0FF" + brightBlue: "#1E8094" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 105.6 + black: 0 + red: 43 + green: 62 + yellow: 74.1 + blue: 48.5 + magenta: 20.5 + cyan: 50.5 + white: 48.2 + brightBlack: 19.6 + brightRed: 43 + brightGreen: 72.2 + brightYellow: 97.6 + brightBlue: 30.1 + brightMagenta: 20.5 + brightCyan: 50.5 + brightWhite: 99.9 diff --git a/themes/yaast.yaml b/themes/yaast.yaml new file mode 100644 index 00000000..854cef9a --- /dev/null +++ b/themes/yaast.yaml @@ -0,0 +1,49 @@ +name: "yaast" +source: + marketplace_id: "jerhos.yaast" + version: "1.1.0" + installs: 161 + author: "jerhos" + repo: "https://github.com/jerhos/YAAST" + url: "https://marketplace.visualstudio.com/items?itemName=jerhos.yaast" +colors: + bg: "#242730" + fg: "#D7DAE0" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#CCC063" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#181A1F" + brightRed: "#F92672" + brightGreen: "#97E65F" + brightYellow: "#E1D461" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F2F4F8" +meta: + mode: "dark" + accent: "red" + hue: 271 + contrast: + fg: 80.8 + black: 0 + red: 22.3 + green: 50.7 + yellow: 64.2 + blue: 32.3 + magenta: 29.9 + cyan: 48.2 + white: 86.2 + brightBlack: 0 + brightRed: 35 + brightGreen: 75.8 + brightYellow: 75.7 + brightBlue: 47.6 + brightMagenta: 44.2 + brightCyan: 71.1 + brightWhite: 97.3 diff --git a/themes/yagnesh.yaml b/themes/yagnesh.yaml new file mode 100644 index 00000000..1864ae57 --- /dev/null +++ b/themes/yagnesh.yaml @@ -0,0 +1,49 @@ +name: "yagnesh" +source: + marketplace_id: "Yagnesh.yagnesh" + version: "2.0.9" + installs: 49 + author: "Yagnesh" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Yagnesh.yagnesh" +colors: + bg: "#030B0D" + fg: "#FF00FB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F7F7F7" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 211 + contrast: + fg: 45.8 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 102.5 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/yagomaia-theme.yaml b/themes/yagomaia-theme.yaml new file mode 100644 index 00000000..4bc750c2 --- /dev/null +++ b/themes/yagomaia-theme.yaml @@ -0,0 +1,49 @@ +name: "yagomaia-theme" +source: + marketplace_id: "YagoMaia.maia-theme-purple" + version: "1.1.0" + installs: 1947 + author: "YagoMaia" + repo: "https://github.com/YagoMaia/Maia-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=YagoMaia.maia-theme-purple" +colors: + bg: "#020A17" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#A179FB" + brightGreen: "#66FFB4" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 253 + contrast: + fg: 102.8 + black: 0 + red: 25.4 + green: 53.8 + yellow: 58.5 + blue: 35.5 + magenta: 33 + cyan: 51.3 + white: 89.3 + brightBlack: 22.9 + brightRed: 43.1 + brightGreen: 90.7 + brightYellow: 84.7 + brightBlue: 50.7 + brightMagenta: 47.4 + brightCyan: 74.2 + brightWhite: 102.8 diff --git a/themes/yalpha-dark-eris.yaml b/themes/yalpha-dark-eris.yaml new file mode 100644 index 00000000..86b528d0 --- /dev/null +++ b/themes/yalpha-dark-eris.yaml @@ -0,0 +1,49 @@ +name: "yalpha-dark-eris" +source: + marketplace_id: "yalpha-dark-eris-color-theme.yalpha-dark-eris" + version: "0.0.1" + installs: 221 + author: "yalpha-dark-eris-color-theme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=yalpha-dark-eris-color-theme.yalpha-dark-eris" +colors: + bg: "#1E1E1E" + fg: "#CF6A4C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 36.6 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/yami-blue.yaml b/themes/yami-blue.yaml new file mode 100644 index 00000000..4c7c765d --- /dev/null +++ b/themes/yami-blue.yaml @@ -0,0 +1,49 @@ +name: "Yami Blue" +source: + marketplace_id: "HatimMurtuza.yami-theme" + version: "1.2.0" + installs: 2369 + author: "Hatim Murtuza" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HatimMurtuza.yami-theme" +colors: + bg: "#020413" + fg: "#D4D4D4" + black: "#2C2C3E" + red: "#FF2C6F" + green: "#77FF5C" + yellow: "#EAD653" + blue: "#4A94FC" + magenta: "#CC66FF" + cyan: "#00CED1" + white: "#DDDDDD" + brightBlack: "#3D3D56" + brightRed: "#FF2C6F" + brightGreen: "#77FF5C" + brightYellow: "#EAD653" + brightBlue: "#4A94FC" + brightMagenta: "#CC66FF" + brightCyan: "#00CED1" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "red" + hue: 269 + contrast: + fg: 80.4 + black: 0 + red: 40 + green: 89.6 + yellow: 80.9 + blue: 45 + magenta: 45.1 + cyan: 65.5 + white: 86 + brightBlack: 8.2 + brightRed: 40 + brightGreen: 89.6 + brightYellow: 80.9 + brightBlue: 45 + brightMagenta: 45.1 + brightCyan: 65.5 + brightWhite: 86 diff --git a/themes/yanbaru-shadow.yaml b/themes/yanbaru-shadow.yaml new file mode 100644 index 00000000..85a190af --- /dev/null +++ b/themes/yanbaru-shadow.yaml @@ -0,0 +1,49 @@ +name: "Yanbaru Shadow" +source: + marketplace_id: "ky12228121.okinawan-themes" + version: "0.0.1" + installs: 10 + author: "Keny Yahat" + repo: "https://github.com/ky12228121/okinawan" + url: "https://marketplace.visualstudio.com/items?itemName=ky12228121.okinawan-themes" +colors: + bg: "#0A1A12" + fg: "#DCE1E6" + black: "#0A1A12" + red: "#FF6F61" + green: "#6B8C78" + yellow: "#E69B3A" + blue: "#192236" + magenta: "#FF6F61" + cyan: "#40E0D0" + white: "#E6E6E6" + brightBlack: "#4D5B6A" + brightRed: "#FF6F61" + brightGreen: "#6B8C78" + brightYellow: "#E69B3A" + brightBlue: "#192236" + brightMagenta: "#FF6F61" + brightCyan: "#40E0D0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "orange" + hue: 161 + contrast: + fg: 87 + black: 0 + red: 48.8 + green: 35.9 + yellow: 55.9 + blue: 0 + magenta: 48.8 + cyan: 73.8 + white: 90.6 + brightBlack: 16.9 + brightRed: 48.8 + brightGreen: 35.9 + brightYellow: 55.9 + brightBlue: 0 + brightMagenta: 48.8 + brightCyan: 73.8 + brightWhite: 90.6 diff --git a/themes/yarra-valley.yaml b/themes/yarra-valley.yaml new file mode 100644 index 00000000..d5bcdf69 --- /dev/null +++ b/themes/yarra-valley.yaml @@ -0,0 +1,49 @@ +name: "Yarra Valley" +source: + marketplace_id: "dustypomerleau.yarra-valley" + version: "0.29.14" + installs: 10151 + author: "Dusty Pomerleau" + repo: "https://github.com/dustypomerleau/yarra-valley" + url: "https://marketplace.visualstudio.com/items?itemName=dustypomerleau.yarra-valley" +colors: + bg: "#292D3E" + fg: "#CAC0A9" + black: "#242837" + red: "#F14360" + green: "#AECC00" + yellow: "#FF9D35" + blue: "#99C2EB" + magenta: "#C651E5" + cyan: "#4CE7FF" + white: "#FDF1D4" + brightBlack: "#535664" + brightRed: "#F14360" + brightGreen: "#8AF899" + brightYellow: "#FF9D35" + brightBlue: "#99C2EB" + brightMagenta: "#EE37AA" + brightCyan: "#4CE7FF" + brightWhite: "#FDF5E0" +meta: + mode: "dark" + accent: "red" + hue: 274 + contrast: + fg: 64.4 + black: 0 + red: 34.1 + green: 63.8 + yellow: 57.6 + blue: 62.8 + magenta: 33.5 + cyan: 76.4 + white: 94.5 + brightBlack: 12.1 + brightRed: 34.1 + brightGreen: 83.8 + brightYellow: 57.6 + brightBlue: 62.8 + brightMagenta: 34.5 + brightCyan: 76.4 + brightWhite: 96.9 diff --git a/themes/yaru-dark-grape.yaml b/themes/yaru-dark-grape.yaml new file mode 100644 index 00000000..22687302 --- /dev/null +++ b/themes/yaru-dark-grape.yaml @@ -0,0 +1,49 @@ +name: "Yaru Dark Grape" +source: + marketplace_id: "AdsonCicilioti.yaru-vscode" + version: "0.1.3" + installs: 20214 + author: "AdsonCicilioti" + repo: "https://github.com/AdsonCicilioti/yaru-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AdsonCicilioti.yaru-vscode" +colors: + bg: "#222222" + fg: "#FDFDFD" + black: "#222222" + red: "#FF794A" + green: "#52D866" + yellow: "#FFDC98" + blue: "#EE80D6" + magenta: "#FF9D88" + cyan: "#60D4FD" + white: "#FDFDFD" + brightBlack: "#928986" + brightRed: "#FF6D4C" + brightGreen: "#69FF94" + brightYellow: "#FFF5BC" + brightBlue: "#FFA2EB" + brightMagenta: "#FFAEA0" + brightCyan: "#98E4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 104.1 + black: 0 + red: 49.4 + green: 65.8 + yellow: 85.7 + blue: 52.4 + magenta: 61.1 + cyan: 70.2 + white: 104.1 + brightBlack: 37.6 + brightRed: 46.6 + brightGreen: 87.6 + brightYellow: 98 + brightBlue: 66.8 + brightMagenta: 67.6 + brightCyan: 81.2 + brightWhite: 105.5 diff --git a/themes/yaru-dark.yaml b/themes/yaru-dark.yaml new file mode 100644 index 00000000..f166599e --- /dev/null +++ b/themes/yaru-dark.yaml @@ -0,0 +1,49 @@ +name: "Yaru Dark" +source: + marketplace_id: "rdnlsmith.linux-themes" + version: "1.3.0" + installs: 41699 + author: "rdnlsmith" + repo: "https://github.com/rdnlsmith/vscode-arc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" +colors: + bg: "#2F2F2F" + fg: "#FFFFFF" + black: "#000000" + red: "#AA0000" + green: "#00AA00" + yellow: "#AA5500" + blue: "#0000AA" + magenta: "#AA00AA" + cyan: "#00AAAA" + white: "#AAAAAA" + brightBlack: "#555555" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 103 + black: 0 + red: 12.9 + green: 39.6 + yellow: 21.4 + blue: 0 + magenta: 17.6 + cyan: 42.8 + white: 51.3 + brightBlack: 11.2 + brightRed: 39.5 + brightGreen: 83.2 + brightYellow: 98.2 + brightBlue: 22.5 + brightMagenta: 47 + brightCyan: 88.5 + brightWhite: 103 diff --git a/themes/yaru.yaml b/themes/yaru.yaml new file mode 100644 index 00000000..d0e799b8 --- /dev/null +++ b/themes/yaru.yaml @@ -0,0 +1,49 @@ +name: "Yaru" +source: + marketplace_id: "rdnlsmith.linux-themes" + version: "1.3.0" + installs: 41699 + author: "rdnlsmith" + repo: "https://github.com/rdnlsmith/vscode-arc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" +colors: + bg: "#FFFFFF" + fg: "#111111" + black: "#000000" + red: "#AA0000" + green: "#00AA00" + yellow: "#AA5500" + blue: "#0000AA" + magenta: "#AA00AA" + cyan: "#00AAAA" + white: "#AAAAAA" + brightBlack: "#555555" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 105.4 + black: 106 + red: 84.2 + green: 57.2 + yellow: 75.4 + blue: 96.7 + magenta: 79.3 + cyan: 54.2 + white: 45.8 + brightBlack: 85.9 + brightRed: 57.4 + brightGreen: 15.6 + brightYellow: 0 + brightBlue: 74.3 + brightMagenta: 50.1 + brightCyan: 10.7 + brightWhite: 0 diff --git a/themes/yaruna-aurora.yaml b/themes/yaruna-aurora.yaml new file mode 100644 index 00000000..62fd6b5b --- /dev/null +++ b/themes/yaruna-aurora.yaml @@ -0,0 +1,49 @@ +name: "Yaruna Aurora" +source: + marketplace_id: "daniel-duc.daniel-yaruna-theme" + version: "1.3.2" + installs: 254 + author: "Daniel Duc" + repo: "https://github.com/binhduc1211/daniel-yaruna-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" +colors: + bg: "#1A1D29" + fg: "#D4D9E8" + black: "#232636" + red: "#E89AC7" + green: "#A8D5BA" + yellow: "#E8B896" + blue: "#7EA8E8" + magenta: "#C9B7E8" + cyan: "#9DB8D4" + white: "#D4D9E8" + brightBlack: "#5A627A" + brightRed: "#E89AC7" + brightGreen: "#A8D5BA" + brightYellow: "#E8D796" + brightBlue: "#70D4E8" + brightMagenta: "#C9B7E8" + brightCyan: "#9DB8D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 274 + contrast: + fg: 81.8 + black: 0 + red: 58.9 + green: 73.1 + yellow: 67.8 + blue: 52.5 + magenta: 66.3 + cyan: 60.6 + white: 81.8 + brightBlack: 19.8 + brightRed: 58.9 + brightGreen: 73.1 + brightYellow: 80.6 + brightBlue: 70.5 + brightMagenta: 66.3 + brightCyan: 60.6 + brightWhite: 106.1 diff --git a/themes/yaruna-forest.yaml b/themes/yaruna-forest.yaml new file mode 100644 index 00000000..4f1a96ef --- /dev/null +++ b/themes/yaruna-forest.yaml @@ -0,0 +1,49 @@ +name: "Yaruna Forest" +source: + marketplace_id: "daniel-duc.daniel-yaruna-theme" + version: "1.3.2" + installs: 254 + author: "Daniel Duc" + repo: "https://github.com/binhduc1211/daniel-yaruna-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" +colors: + bg: "#1C2A25" + fg: "#DCE3DC" + black: "#25332E" + red: "#52B69A" + green: "#D9ED92" + yellow: "#CAFFBF" + blue: "#A7C957" + magenta: "#99D98C" + cyan: "#BEC5BE" + white: "#DCE3DC" + brightBlack: "#5A6D63" + brightRed: "#52B69A" + brightGreen: "#D9ED92" + brightYellow: "#FCBF49" + brightBlue: "#88D498" + brightMagenta: "#99D98C" + brightCyan: "#BEC5BE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: 171 + contrast: + fg: 85.2 + black: 0 + red: 50.4 + green: 87 + yellow: 95.4 + blue: 63.5 + magenta: 70.6 + cyan: 67.1 + white: 85.2 + brightBlack: 20.9 + brightRed: 50.4 + brightGreen: 87 + brightYellow: 70.8 + brightBlue: 67.2 + brightMagenta: 70.6 + brightCyan: 67.1 + brightWhite: 104.6 diff --git a/themes/yaruna-midnight.yaml b/themes/yaruna-midnight.yaml new file mode 100644 index 00000000..860ff2e2 --- /dev/null +++ b/themes/yaruna-midnight.yaml @@ -0,0 +1,49 @@ +name: "Yaruna Midnight" +source: + marketplace_id: "daniel-duc.daniel-yaruna-theme" + version: "1.3.2" + installs: 254 + author: "Daniel Duc" + repo: "https://github.com/binhduc1211/daniel-yaruna-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#161A20" + red: "#FF9E64" + green: "#7EE787" + yellow: "#79C0FF" + blue: "#8B949E" + magenta: "#F7768E" + cyan: "#ABB3BB" + white: "#C9D1D9" + brightBlack: "#6E7681" + brightRed: "#FF9E64" + brightGreen: "#7EE787" + brightYellow: "#F2CC60" + brightBlue: "#58A6FF" + brightMagenta: "#F7768E" + brightCyan: "#ABB3BB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 258 + contrast: + fg: 77.5 + black: 0 + red: 62.6 + green: 78.1 + yellow: 64.7 + blue: 43.6 + magenta: 50.4 + cyan: 60.1 + white: 77.5 + brightBlack: 29.3 + brightRed: 62.6 + brightGreen: 78.1 + brightYellow: 77.6 + brightBlue: 52.2 + brightMagenta: 50.4 + brightCyan: 60.1 + brightWhite: 107.4 diff --git a/themes/yaruna-nova.yaml b/themes/yaruna-nova.yaml new file mode 100644 index 00000000..4f6959c8 --- /dev/null +++ b/themes/yaruna-nova.yaml @@ -0,0 +1,49 @@ +name: "Yaruna Nova" +source: + marketplace_id: "daniel-duc.daniel-yaruna-theme" + version: "1.3.2" + installs: 254 + author: "Daniel Duc" + repo: "https://github.com/binhduc1211/daniel-yaruna-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" +colors: + bg: "#242424" + fg: "#F6F5F4" + black: "#2D2D2D" + red: "#FF5555" + green: "#3DD68D" + yellow: "#8BE9FD" + blue: "#62A0EA" + magenta: "#FFB86C" + cyan: "#D8D7D6" + white: "#F6F5F4" + brightBlack: "#7C7A75" + brightRed: "#FF5555" + brightGreen: "#3DD68D" + brightYellow: "#FFB86C" + brightBlue: "#FF6E40" + brightMagenta: "#FFB86C" + brightCyan: "#D8D7D6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 98.6 + black: 0 + red: 41.6 + green: 64.7 + yellow: 82.2 + blue: 46.7 + magenta: 69.7 + cyan: 79.7 + white: 98.6 + brightBlack: 29.2 + brightRed: 41.6 + brightGreen: 64.7 + brightYellow: 69.7 + brightBlue: 46.3 + brightMagenta: 69.7 + brightCyan: 79.7 + brightWhite: 105.1 diff --git a/themes/yaruna-palenight.yaml b/themes/yaruna-palenight.yaml new file mode 100644 index 00000000..8dac9ad2 --- /dev/null +++ b/themes/yaruna-palenight.yaml @@ -0,0 +1,49 @@ +name: "Yaruna Palenight" +source: + marketplace_id: "daniel-duc.daniel-yaruna-theme" + version: "1.3.2" + installs: 254 + author: "Daniel Duc" + repo: "https://github.com/binhduc1211/daniel-yaruna-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" +colors: + bg: "#292D3E" + fg: "#BABED8" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + contrast: + fg: 63.5 + black: 0 + red: 43 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 43 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/yazbi.yaml b/themes/yazbi.yaml new file mode 100644 index 00000000..4a17f906 --- /dev/null +++ b/themes/yazbi.yaml @@ -0,0 +1,49 @@ +name: "yazbi" +source: + marketplace_id: "Roby195.biendark" + version: "2.0.1" + installs: 66 + author: "Mimassi Joseph" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Roby195.biendark" +colors: + bg: "#171616" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 106.9 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 29.2 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/yd-dark.yaml b/themes/yd-dark.yaml new file mode 100644 index 00000000..dd1e2ecd --- /dev/null +++ b/themes/yd-dark.yaml @@ -0,0 +1,49 @@ +name: "YD Dark" +source: + marketplace_id: "YellowDeer.yd-theme" + version: "2.3.1" + installs: 165 + author: "YellowDeer" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=YellowDeer.yd-theme" +colors: + bg: "#2D3436" + fg: "#ECF0F1" + black: "#2D3436" + red: "#D63031" + green: "#008A6F" + yellow: "#FDCB6E" + blue: "#0763AA" + magenta: "#AE326E" + cyan: "#40B393" + white: "#D1D5D6" + brightBlack: "#484F51" + brightRed: "#EA8462" + brightGreen: "#40B393" + brightYellow: "#FDCB6E" + brightBlue: "#0763AA" + brightMagenta: "#AE326E" + brightCyan: "#40B393" + brightWhite: "#ECF0F1" +meta: + mode: "dark" + accent: "orange" + hue: 217 + contrast: + fg: 91.8 + black: 0 + red: 23.8 + green: 26.6 + yellow: 73.9 + blue: 15.6 + magenta: 16.9 + cyan: 45.7 + white: 74.8 + brightBlack: 7.5 + brightRed: 45.2 + brightGreen: 45.7 + brightYellow: 73.9 + brightBlue: 15.6 + brightMagenta: 16.9 + brightCyan: 45.7 + brightWhite: 91.8 diff --git a/themes/yd-light.yaml b/themes/yd-light.yaml new file mode 100644 index 00000000..31536cd7 --- /dev/null +++ b/themes/yd-light.yaml @@ -0,0 +1,49 @@ +name: "YD Light" +source: + marketplace_id: "YellowDeer.yd-theme" + version: "2.3.1" + installs: 165 + author: "YellowDeer" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=YellowDeer.yd-theme" +colors: + bg: "#FFFCFF" + fg: "#282629" + black: "#FFFCFF" + red: "#F03E4D" + green: "#97BD2D" + yellow: "#EEBA21" + blue: "#53A6E1" + magenta: "#EE4EB8" + cyan: "#1FC598" + white: "#474247" + brightBlack: "#E0DCE0" + brightRed: "#F37735" + brightGreen: "#1FC598" + brightYellow: "#EEBA21" + brightBlue: "#53A6E1" + brightMagenta: "#EE4EB8" + brightCyan: "#1FC598" + brightWhite: "#282629" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 100.6 + black: 0 + red: 62.9 + green: 41.4 + yellow: 31.8 + blue: 50.1 + magenta: 57.7 + cyan: 41.7 + white: 91.5 + brightBlack: 16.2 + brightRed: 52 + brightGreen: 41.7 + brightYellow: 31.8 + brightBlue: 50.1 + brightMagenta: 57.7 + brightCyan: 41.7 + brightWhite: 100.6 diff --git a/themes/ydrgzm-light-theme.yaml b/themes/ydrgzm-light-theme.yaml new file mode 100644 index 00000000..08646763 --- /dev/null +++ b/themes/ydrgzm-light-theme.yaml @@ -0,0 +1,49 @@ +name: "Ydrgzm LIGHT Theme" +source: + marketplace_id: "ydrgzm.yd-light-theme" + version: "0.0.4" + installs: 368 + author: "ydrgzm" + repo: "https://github.com/ydrgzm/Ydrgzm-LIGHT-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ydrgzm.yd-light-theme" +colors: + bg: "#FAFAFA" + fg: "#000000" + black: "#868686" + red: "#FF5470" + green: "#33D057" + yellow: "#E1C542" + blue: "#469DF1" + magenta: "#E557F9" + cyan: "#39CDE2" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#FF718A" + brightGreen: "#67FF8A" + brightYellow: "#FFE05B" + brightBlue: "#74BCFF" + brightMagenta: "#EC84FF" + brightCyan: "#74F2FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 103 + black: 61 + red: 54 + green: 36.1 + yellow: 27.6 + blue: 51.4 + magenta: 52.4 + cyan: 33 + white: 19.8 + brightBlack: 42.3 + brightRed: 47.6 + brightGreen: 11.1 + brightYellow: 12.1 + brightBlue: 36.1 + brightMagenta: 41.1 + brightCyan: 12.7 + brightWhite: 0 diff --git a/themes/yelan.yaml b/themes/yelan.yaml new file mode 100644 index 00000000..bb102a0e --- /dev/null +++ b/themes/yelan.yaml @@ -0,0 +1,49 @@ +name: "Yelan" +source: + marketplace_id: "SaiAkhilKarra.yelan-theme-made-by-me" + version: "0.0.7" + installs: 103 + author: "Sai Akhil Karra" + repo: "https://github.com/SaiAkhil2006/Yelan-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=SaiAkhilKarra.yelan-theme-made-by-me" +colors: + bg: "#0A0F1F" + fg: "#7DB7FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + contrast: + fg: 61.3 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/yellow-beryl.yaml b/themes/yellow-beryl.yaml new file mode 100644 index 00000000..c50a45ea --- /dev/null +++ b/themes/yellow-beryl.yaml @@ -0,0 +1,49 @@ +name: "Yellow Beryl" +source: + marketplace_id: "Meitrox9.yellow-beryl-theme" + version: "0.0.3" + installs: 393 + author: "Meitrox" + repo: "https://github.com/Meitrox/yellow-beryl-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Meitrox9.yellow-beryl-theme" +colors: + bg: "#131428" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + contrast: + fg: 106.9 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/yellow-green-blue-theme.yaml b/themes/yellow-green-blue-theme.yaml new file mode 100644 index 00000000..8b2994d8 --- /dev/null +++ b/themes/yellow-green-blue-theme.yaml @@ -0,0 +1,49 @@ +name: "Yellow-Green-Blue-Theme" +source: + marketplace_id: "miha19772001.yellow-green-blue-theme" + version: "0.0.2" + installs: 234 + author: "miha19772001" + repo: "https://github.com/miha19772001/yellow-green-blue-theme" + url: "https://marketplace.visualstudio.com/items?itemName=miha19772001.yellow-green-blue-theme" +colors: + bg: "#26231E" + fg: "#CBCFC3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 81 + contrast: + fg: 73.8 + black: 0 + red: 25.1 + green: 51.4 + yellow: 84 + blue: 25.8 + magenta: 28.1 + cyan: 45.9 + white: 88.4 + brightBlack: 20.4 + brightRed: 36.9 + brightGreen: 61.9 + brightYellow: 94 + brightBlue: 38.4 + brightMagenta: 43.7 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/yellow-ish.yaml b/themes/yellow-ish.yaml new file mode 100644 index 00000000..1922ebcb --- /dev/null +++ b/themes/yellow-ish.yaml @@ -0,0 +1,49 @@ +name: "Yellow-ish" +source: + marketplace_id: "VincentWillats.vwyellow" + version: "0.0.2" + installs: 476 + author: "VincentWillats" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=VincentWillats.vwyellow" +colors: + bg: "#171600" + fg: "#D4D4D4" + black: "#474747" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#FF2E2E" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 108 + contrast: + fg: 79.6 + black: 10 + red: 26.8 + green: 53.1 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 38.3 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.2 diff --git a/themes/yellow-purple-theme.yaml b/themes/yellow-purple-theme.yaml new file mode 100644 index 00000000..d6e26c72 --- /dev/null +++ b/themes/yellow-purple-theme.yaml @@ -0,0 +1,49 @@ +name: "Yellow purple theme" +source: + marketplace_id: "davisamasoa.davisamasoa-theme" + version: "1.0.4" + installs: 951 + author: "Davi Samuel" + repo: "https://github.com/Davisamasoa/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=davisamasoa.davisamasoa-theme" +colors: + bg: "#2A2530" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 306 + contrast: + fg: 104.6 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.2 + magenta: 27.5 + cyan: 45.3 + white: 87.7 + brightBlack: 19.8 + brightRed: 36.3 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.7 + brightMagenta: 43.1 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/yellowed.yaml b/themes/yellowed.yaml new file mode 100644 index 00000000..3c656396 --- /dev/null +++ b/themes/yellowed.yaml @@ -0,0 +1,49 @@ +name: "Yellowed" +source: + marketplace_id: "gael-lopes-da-silva.yellowed" + version: "2.4.0" + installs: 2756 + author: "Gaël Lopes Da Silva" + repo: "https://github.com/Gael-Lopes-Da-Silva/YellowedVSCode" + url: "https://marketplace.visualstudio.com/items?itemName=gael-lopes-da-silva.yellowed" +colors: + bg: "#242424" + fg: "#FFFFFF" + black: "#222222" + red: "#FC618D" + green: "#7BD88F" + yellow: "#FCE566" + blue: "#FD9353" + magenta: "#948AE3" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#FCE566" + brightBlue: "#FD9353" + brightMagenta: "#948AE3" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 105.1 + black: 0 + red: 44.6 + green: 68.5 + yellow: 87.9 + blue: 56.2 + magenta: 42.5 + cyan: 68.3 + white: 97.5 + brightBlack: 21.1 + brightRed: 44.6 + brightGreen: 68.5 + brightYellow: 87.9 + brightBlue: 56.2 + brightMagenta: 42.5 + brightCyan: 68.3 + brightWhite: 97.5 diff --git a/themes/yerba.yaml b/themes/yerba.yaml new file mode 100644 index 00000000..c8de7b45 --- /dev/null +++ b/themes/yerba.yaml @@ -0,0 +1,49 @@ +name: "Yerba" +source: + marketplace_id: "sebastian-j-ibanez.yerba-theme" + version: "0.0.2" + installs: 16 + author: "sebastian-j-ibanez" + repo: "https://github.com/sebastian-j-ibanez/yerba-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sebastian-j-ibanez.yerba-theme" +colors: + bg: "#181818" + fg: "#BCBCBC" + black: "#000000" + red: "#A05A4A" + green: "#6A9A6A" + yellow: "#B87848" + blue: "#909088" + magenta: "#A89880" + cyan: "#686868" + white: "#BCBCBC" + brightBlack: "#333333" + brightRed: "#B86A5A" + brightGreen: "#7AAA7A" + brightYellow: "#C88858" + brightBlue: "#A0A098" + brightMagenta: "#B8A890" + brightCyan: "#787878" + brightWhite: "#D3D3D3" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65.2 + black: 0 + red: 25.2 + green: 40.8 + yellow: 37.1 + blue: 41.2 + magenta: 46.6 + cyan: 22.8 + white: 65.2 + brightBlack: 0 + brightRed: 33.5 + brightGreen: 48.9 + brightYellow: 44.8 + brightBlue: 49.4 + brightMagenta: 55.2 + brightCyan: 29.9 + brightWhite: 78.8 diff --git a/themes/yet-another-solarized-theme-dark.yaml b/themes/yet-another-solarized-theme-dark.yaml new file mode 100644 index 00000000..470bbafb --- /dev/null +++ b/themes/yet-another-solarized-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "Yet Another Solarized Theme (Dark)" +source: + marketplace_id: "JulianSchelb.yet-another-solarized-theme" + version: "1.0.5" + installs: 2704 + author: "Julian Schelb" + repo: "https://github.com/julianschelb/vscode-theme-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=JulianSchelb.yet-another-solarized-theme" +colors: + bg: "#2E343F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 263 + contrast: + fg: 74.4 + black: 0 + red: 21.7 + green: 48 + yellow: 80.6 + blue: 22.4 + magenta: 24.7 + cyan: 42.5 + white: 85 + brightBlack: 17 + brightRed: 33.5 + brightGreen: 58.5 + brightYellow: 90.6 + brightBlue: 35 + brightMagenta: 40.3 + brightCyan: 50.4 + brightWhite: 85 diff --git a/themes/yet-another-solarized-theme-light.yaml b/themes/yet-another-solarized-theme-light.yaml new file mode 100644 index 00000000..c7bc0a9f --- /dev/null +++ b/themes/yet-another-solarized-theme-light.yaml @@ -0,0 +1,49 @@ +name: "Yet Another Solarized Theme (Light)" +source: + marketplace_id: "JulianSchelb.yet-another-solarized-theme" + version: "1.0.5" + installs: 2704 + author: "Julian Schelb" + repo: "https://github.com/julianschelb/vscode-theme-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=JulianSchelb.yet-another-solarized-theme" +colors: + bg: "#F9F6EF" + fg: "#193F49" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 90.8 + black: 100.8 + red: 68.7 + green: 44 + yellow: 52.6 + blue: 80.8 + magenta: 69.3 + cyan: 55.3 + white: 80.7 + brightBlack: 73.5 + brightRed: 68.7 + brightGreen: 35.6 + brightYellow: 35.7 + brightBlue: 80.8 + brightMagenta: 69.3 + brightCyan: 55.3 + brightWhite: 43.2 diff --git a/themes/yharnizedtheme.yaml b/themes/yharnizedtheme.yaml new file mode 100644 index 00000000..b86ff339 --- /dev/null +++ b/themes/yharnizedtheme.yaml @@ -0,0 +1,49 @@ +name: "YharnizedTheme" +source: + marketplace_id: "YaruGames.yharnizedtheme" + version: "0.0.1" + installs: 38 + author: "Yaru Games" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=YaruGames.yharnizedtheme" +colors: + bg: "#000000" + fg: "#E1E1E0" + black: "#3B3B3B" + red: "#E22424" + green: "#18D384" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#D32DD3" + cyan: "#11A8CD" + white: "#BEBEBE" + brightBlack: "#757575" + brightRed: "#FF6F6F" + brightGreen: "#70F0AE" + brightYellow: "#FFFF67" + brightBlue: "#3B8EEA" + brightMagenta: "#FF95FF" + brightCyan: "#29B8DB" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 88.5 + black: 0 + red: 31.4 + green: 65.2 + yellow: 86.6 + blue: 28.4 + magenta: 34.9 + cyan: 48.6 + white: 67.5 + brightBlack: 29.6 + brightRed: 50.1 + brightGreen: 83.4 + brightYellow: 103.3 + brightBlue: 41 + brightMagenta: 66.4 + brightCyan: 56.4 + brightWhite: 94.2 diff --git a/themes/yinloonga-python.yaml b/themes/yinloonga-python.yaml new file mode 100644 index 00000000..2c512809 --- /dev/null +++ b/themes/yinloonga-python.yaml @@ -0,0 +1,49 @@ +name: "yinloonga_python" +source: + marketplace_id: "yinloonga.solarized-dark-cpp" + version: "1.48.0" + installs: 1779 + author: "yinloonga" + repo: "https://github.com/torvalds/linux" + url: "https://marketplace.visualstudio.com/items?itemName=yinloonga.solarized-dark-cpp" +colors: + bg: "#23272E" + fg: "#B8C0CC" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 262 + contrast: + fg: 65 + black: 0 + red: 22.4 + green: 50.8 + yellow: 55.4 + blue: 32.4 + magenta: 30 + cyan: 48.2 + white: 86.3 + brightBlack: 19.8 + brightRed: 35.1 + brightGreen: 74.8 + brightYellow: 81.7 + brightBlue: 47.6 + brightMagenta: 44.3 + brightCyan: 71.2 + brightWhite: 99.8 diff --git a/themes/yitzchok-contrast.yaml b/themes/yitzchok-contrast.yaml new file mode 100644 index 00000000..0958c012 --- /dev/null +++ b/themes/yitzchok-contrast.yaml @@ -0,0 +1,49 @@ +name: "yitzchok-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#101316" + fg: "#AFB7BF" + black: "#1B2025" + red: "#BA0E2E" + green: "#E7BE45" + yellow: "#7A8289" + blue: "#E6EAEF" + magenta: "#E7BE45" + cyan: "#7A8289" + white: "#BDC4CA" + brightBlack: "#3B4651" + brightRed: "#F03E5F" + brightGreen: "#F3DE9F" + brightYellow: "#B0B5B9" + brightBlue: "#FFFFFF" + brightMagenta: "#F3DE9F" + brightCyan: "#B0B5B9" + brightWhite: "#E8EAEC" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 62.2 + black: 0 + red: 20.9 + green: 69.6 + yellow: 34.6 + blue: 93.3 + magenta: 69.6 + cyan: 34.6 + white: 69.7 + brightBlack: 9.5 + brightRed: 37.2 + brightGreen: 86.7 + brightYellow: 61.3 + brightBlue: 107.3 + brightMagenta: 86.7 + brightCyan: 61.3 + brightWhite: 93.4 diff --git a/themes/yitzchok-light.yaml b/themes/yitzchok-light.yaml new file mode 100644 index 00000000..51f6d1b1 --- /dev/null +++ b/themes/yitzchok-light.yaml @@ -0,0 +1,49 @@ +name: "yitzchok-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#6A7684" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#E7BE45" + yellow: "#7A8289" + blue: "#6A7684" + magenta: "#E7BE45" + cyan: "#7A8289" + white: "#768391" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F3DE9F" + brightYellow: "#B0B5B9" + brightBlue: "#A1A9B3" + brightMagenta: "#F3DE9F" + brightCyan: "#B0B5B9" + brightWhite: "#A1A9B3" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 72.2 + black: 0 + red: 80.3 + green: 32.4 + yellow: 66.5 + blue: 72.2 + magenta: 32.4 + cyan: 66.5 + white: 66.2 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 16.4 + brightYellow: 40.4 + brightBlue: 46.8 + brightMagenta: 16.4 + brightCyan: 40.4 + brightWhite: 46.8 diff --git a/themes/yitzchok.yaml b/themes/yitzchok.yaml new file mode 100644 index 00000000..cefa1e39 --- /dev/null +++ b/themes/yitzchok.yaml @@ -0,0 +1,49 @@ +name: "yitzchok" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#252C33" + fg: "#AFB7BF" + black: "#303942" + red: "#BA0E2E" + green: "#E7BE45" + yellow: "#7A8289" + blue: "#E6EAEF" + magenta: "#E7BE45" + cyan: "#7A8289" + white: "#BDC4CA" + brightBlack: "#505F6E" + brightRed: "#F03E5F" + brightGreen: "#F3DE9F" + brightYellow: "#B0B5B9" + brightBlue: "#FFFFFF" + brightMagenta: "#F3DE9F" + brightCyan: "#B0B5B9" + brightWhite: "#E8EAEC" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 58.8 + black: 0 + red: 17.4 + green: 66.2 + yellow: 31.1 + blue: 89.8 + magenta: 66.2 + cyan: 31.1 + white: 66.3 + brightBlack: 15.4 + brightRed: 33.7 + brightGreen: 83.2 + brightYellow: 57.8 + brightBlue: 103.8 + brightMagenta: 83.2 + brightCyan: 57.8 + brightWhite: 89.9 diff --git a/themes/ylw-dark-theme.yaml b/themes/ylw-dark-theme.yaml new file mode 100644 index 00000000..26c70625 --- /dev/null +++ b/themes/ylw-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "ylw-dark-theme" +source: + marketplace_id: "ylw.ylw-theme" + version: "3.1.0" + installs: 99 + author: "ylw" + repo: "https://github.com/ylw1997/ylw-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ylw.ylw-theme" +colors: + bg: "#1A1C22" + fg: "#D4D4D4" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 78.9 + black: 8.3 + red: 36.1 + green: 59.8 + yellow: 48 + blue: 49.1 + magenta: 38.5 + cyan: 51.9 + white: 82.5 + brightBlack: 14.9 + brightRed: 45.5 + brightGreen: 76.2 + brightYellow: 60.6 + brightBlue: 63.2 + brightMagenta: 49.7 + brightCyan: 67.2 + brightWhite: 90.1 diff --git a/themes/yoda-mystical-force.yaml b/themes/yoda-mystical-force.yaml new file mode 100644 index 00000000..fb062be4 --- /dev/null +++ b/themes/yoda-mystical-force.yaml @@ -0,0 +1,49 @@ +name: "Yoda - Mystical Force" +source: + marketplace_id: "Dutchorange.space-wars" + version: "1.1.7" + installs: 1710 + author: "Dutchorange" + repo: "https://github.com/entropy-glitch/space-wars" + url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" +colors: + bg: "#1A2028" + fg: "#E9EAE6" + black: "#2C353F" + red: "#FF7F7F" + green: "#7AFFB2" + yellow: "#FFD787" + blue: "#66D9EF" + magenta: "#E7A3FF" + cyan: "#4B9783" + white: "#E9EAE6" + brightBlack: "#6B8299" + brightRed: "#FF9B9B" + brightGreen: "#A2FFD0" + brightYellow: "#FFE4A8" + brightBlue: "#A3E4F2" + brightMagenta: "#F2B8FF" + brightCyan: "#B0FFF5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 256 + contrast: + fg: 91.8 + black: 0 + red: 52.4 + green: 89.7 + yellow: 83.5 + blue: 72.4 + magenta: 64.5 + cyan: 37.6 + white: 91.8 + brightBlack: 32.5 + brightRed: 61.4 + brightGreen: 93.5 + brightYellow: 90 + brightBlue: 81.8 + brightMagenta: 73.7 + brightCyan: 96.2 + brightWhite: 105.8 diff --git a/themes/yoda.yaml b/themes/yoda.yaml new file mode 100644 index 00000000..7df577cd --- /dev/null +++ b/themes/yoda.yaml @@ -0,0 +1,49 @@ +name: "Yoda" +source: + marketplace_id: "yoda.yoda-theme" + version: "1.0.3" + installs: 95 + author: "Sire" + repo: "https://github.com/Sire/Yoda" + url: "https://marketplace.visualstudio.com/items?itemName=yoda.yoda-theme" +colors: + bg: "#222222" + fg: "#A8A8A8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 52.7 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 88.6 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/yodart.yaml b/themes/yodart.yaml new file mode 100644 index 00000000..e944af55 --- /dev/null +++ b/themes/yodart.yaml @@ -0,0 +1,49 @@ +name: "Yodart" +source: + marketplace_id: "Yodart.yodart-theme" + version: "0.1.0" + installs: 210 + author: "Yodart" + repo: "https://github.com/Yodart/yodart-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Yodart.yodart-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/yohualli-eclipse.yaml b/themes/yohualli-eclipse.yaml new file mode 100644 index 00000000..04d4098a --- /dev/null +++ b/themes/yohualli-eclipse.yaml @@ -0,0 +1,49 @@ +name: "Yohualli Eclipse" +source: + marketplace_id: "AlejandroHernandez.yohualli-theme" + version: "0.0.3" + installs: 36 + author: "Alejandro Hernandez" + repo: "https://github.com/josuebautista/YohualliTheme" + url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.yohualli-theme" +colors: + bg: "#020006" + fg: "#FFB5E0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 303 + contrast: + fg: 75.2 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/yohualli-lunaris.yaml b/themes/yohualli-lunaris.yaml new file mode 100644 index 00000000..10da54a0 --- /dev/null +++ b/themes/yohualli-lunaris.yaml @@ -0,0 +1,49 @@ +name: "Yohualli Lunaris" +source: + marketplace_id: "AlejandroHernandez.yohualli-theme" + version: "0.0.3" + installs: 36 + author: "Alejandro Hernandez" + repo: "https://github.com/josuebautista/YohualliTheme" + url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.yohualli-theme" +colors: + bg: "#020006" + fg: "#BEA8EE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 303 + contrast: + fg: 61.3 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/yohualli-nebulune.yaml b/themes/yohualli-nebulune.yaml new file mode 100644 index 00000000..26c2996e --- /dev/null +++ b/themes/yohualli-nebulune.yaml @@ -0,0 +1,49 @@ +name: "Yohualli Nebulune" +source: + marketplace_id: "AlejandroHernandez.yohualli-theme" + version: "0.0.3" + installs: 36 + author: "Alejandro Hernandez" + repo: "https://github.com/josuebautista/YohualliTheme" + url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.yohualli-theme" +colors: + bg: "#020006" + fg: "#CCB5FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 303 + contrast: + fg: 69 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/yohualli-penumbra.yaml b/themes/yohualli-penumbra.yaml new file mode 100644 index 00000000..fb75992c --- /dev/null +++ b/themes/yohualli-penumbra.yaml @@ -0,0 +1,49 @@ +name: "Yohualli Penumbra" +source: + marketplace_id: "AlejandroHernandez.yohualli-theme" + version: "0.0.3" + installs: 36 + author: "Alejandro Hernandez" + repo: "https://github.com/josuebautista/YohualliTheme" + url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.yohualli-theme" +colors: + bg: "#020006" + fg: "#B0A6CE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 303 + contrast: + fg: 57 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/yonc.yaml b/themes/yonc.yaml new file mode 100644 index 00000000..e969d955 --- /dev/null +++ b/themes/yonc.yaml @@ -0,0 +1,49 @@ +name: "Yoncé" +source: + marketplace_id: "minamarkham.yonce-theme" + version: "0.1.0" + installs: 19006 + author: "minamarkham" + repo: "https://github.com/minamarkham/yonce-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=minamarkham.yonce-theme" +colors: + bg: "#1C1C1C" + fg: "#D4D4D4" + black: "#1C1C1C" + red: "#FC4384" + green: "#98E342" + yellow: "#E6DB74" + blue: "#00A7AA" + magenta: "#FFB1F2" + cyan: "#37E5E7" + white: "#D4D4D4" + brightBlack: "#555555" + brightRed: "#FC4384" + brightGreen: "#98E342" + brightYellow: "#E6DB74" + brightBlue: "#00A7AA" + brightMagenta: "#FFB1F2" + brightCyan: "#37E5E7" + brightWhite: "#F1F1EF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 78.9 + black: 0 + red: 40.6 + green: 75.8 + yellow: 81.5 + blue: 44.8 + magenta: 73.1 + cyan: 76.6 + white: 78.9 + brightBlack: 14.5 + brightRed: 40.6 + brightGreen: 75.8 + brightYellow: 81.5 + brightBlue: 44.8 + brightMagenta: 73.1 + brightCyan: 76.6 + brightWhite: 97 diff --git a/themes/yondog-dark.yaml b/themes/yondog-dark.yaml new file mode 100644 index 00000000..aec7798b --- /dev/null +++ b/themes/yondog-dark.yaml @@ -0,0 +1,49 @@ +name: "yondog-dark" +source: + marketplace_id: "AbyTubuon.yondog-dark" + version: "0.0.3" + installs: 24 + author: "Kirik " + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AbyTubuon.yondog-dark" +colors: + bg: "#181C1F" + fg: "#EEFFFF" + black: "#000000" + red: "#F14C4C" + green: "#3AD353" + yellow: "#DBDB50" + blue: "#3B8EEA" + magenta: "#BB68BB" + cyan: "#39C5CF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#F14C4C" + brightGreen: "#3AD353" + brightYellow: "#DBDB50" + brightBlue: "#3B8EEA" + brightMagenta: "#BB68BB" + brightCyan: "#39C5CF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 104.1 + black: 0 + red: 38.1 + green: 63.3 + yellow: 79.5 + blue: 39.5 + magenta: 36.8 + cyan: 60.4 + white: 106.4 + brightBlack: 0 + brightRed: 38.1 + brightGreen: 63.3 + brightYellow: 79.5 + brightBlue: 39.5 + brightMagenta: 36.8 + brightCyan: 60.4 + brightWhite: 106.4 diff --git a/themes/yotei.yaml b/themes/yotei.yaml new file mode 100644 index 00000000..d0ef37bd --- /dev/null +++ b/themes/yotei.yaml @@ -0,0 +1,49 @@ +name: "Yotei" +source: + marketplace_id: "Zenky.yotei" + version: "1.1.4" + installs: 542 + author: "Zenky" + repo: "https://github.com/bzenky/yotei-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Zenky.yotei" +colors: + bg: "#211925" + fg: "#FEF7FF" + black: "#282936" + red: "#EA51B2" + green: "#FD4200" + yellow: "#77CDFF" + blue: "#62D6E8" + magenta: "#DE71FF" + cyan: "#A1EFE4" + white: "#E9E9F4" + brightBlack: "#626483" + brightRed: "#EA51B2" + brightGreen: "#EBFF87" + brightYellow: "#4351A1" + brightBlue: "#E462E8" + brightMagenta: "#B45BCF" + brightCyan: "#A1EFE4" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "orange" + hue: 314 + contrast: + fg: 102.4 + black: 0 + red: 40.5 + green: 38.9 + yellow: 69.2 + blue: 70.9 + magenta: 49.2 + cyan: 86.7 + white: 92.5 + brightBlack: 21.6 + brightRed: 40.5 + brightGreen: 99.5 + brightYellow: 15.8 + brightBlue: 45.5 + brightMagenta: 33.8 + brightCyan: 86.7 + brightWhite: 101.2 diff --git a/themes/yoth-theme-dark.yaml b/themes/yoth-theme-dark.yaml new file mode 100644 index 00000000..93d82ad9 --- /dev/null +++ b/themes/yoth-theme-dark.yaml @@ -0,0 +1,49 @@ +name: "yoth-theme-dark" +source: + marketplace_id: "yoththemedark.yoth-theme-dark" + version: "0.0.1" + installs: 110 + author: "yoththemedark" + repo: "https://github.com/theoyoth/yoth-theme-dark" + url: "https://marketplace.visualstudio.com/items?itemName=yoththemedark.yoth-theme-dark" +colors: + bg: "#0F0F11" + fg: "#D3D1D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.5 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/yoyo-theme-green.yaml b/themes/yoyo-theme-green.yaml new file mode 100644 index 00000000..9b87bfc0 --- /dev/null +++ b/themes/yoyo-theme-green.yaml @@ -0,0 +1,49 @@ +name: "yoyo theme green" +source: + marketplace_id: "AmreshMaurya.yoyo" + version: "0.0.1" + installs: 81 + author: "Amresh Maurya" + repo: "https://github.com/Amresh9/yoyo" + url: "https://marketplace.visualstudio.com/items?itemName=AmreshMaurya.yoyo" +colors: + bg: "#6DB66F" + fg: "#09DE48" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: 145 + contrast: + fg: 14.7 + black: 56 + red: 23.9 + green: 0 + yellow: 31.8 + blue: 23.2 + magenta: 20.8 + cyan: 0 + white: 36.2 + brightBlack: 28.7 + brightRed: 12 + brightGreen: 9.7 + brightYellow: 41.8 + brightBlue: 10.6 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 36.2 diff --git a/themes/yoyo-theme.yaml b/themes/yoyo-theme.yaml new file mode 100644 index 00000000..336c895b --- /dev/null +++ b/themes/yoyo-theme.yaml @@ -0,0 +1,49 @@ +name: "yoyo theme" +source: + marketplace_id: "AmreshMaurya.yoyo" + version: "0.0.1" + installs: 81 + author: "Amresh Maurya" + repo: "https://github.com/Amresh9/yoyo" + url: "https://marketplace.visualstudio.com/items?itemName=AmreshMaurya.yoyo" +colors: + bg: "#172026" + fg: "#09DE48" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 238 + contrast: + fg: 67.6 + black: 0 + red: 25.8 + green: 52 + yellow: 84.7 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89.1 diff --git a/themes/ystheme.yaml b/themes/ystheme.yaml new file mode 100644 index 00000000..fc603cf3 --- /dev/null +++ b/themes/ystheme.yaml @@ -0,0 +1,49 @@ +name: "ystheme" +source: + marketplace_id: "ystheme.ystheme" + version: "1.3.0" + installs: 3 + author: "Yirsis Serrano Theme" + repo: "https://github.com/YirsisHertz/yirsis-serrano-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ystheme.ystheme" +colors: + bg: "#15141B" + fg: "#EDECEE" + black: "#15141B" + red: "#FF6767" + green: "#F2F2F2" + yellow: "#FFCA85" + blue: "#A277FF" + magenta: "#F2F2F2" + cyan: "#A277FF" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#FFCA85" + brightGreen: "#A277FF" + brightYellow: "#FFCA85" + brightBlue: "#A277FF" + brightMagenta: "#F2F2F2" + brightCyan: "#F2F2F2" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "magenta" + hue: 292 + contrast: + fg: 94.9 + black: 0 + red: 47.3 + green: 98.5 + yellow: 79.2 + blue: 42.4 + magenta: 98.5 + cyan: 42.4 + white: 75.1 + brightBlack: 0 + brightRed: 79.2 + brightGreen: 42.4 + brightYellow: 79.2 + brightBlue: 42.4 + brightMagenta: 98.5 + brightCyan: 98.5 + brightWhite: 94.9 diff --git a/themes/ytheme-dark.yaml b/themes/ytheme-dark.yaml new file mode 100644 index 00000000..e1e03071 --- /dev/null +++ b/themes/ytheme-dark.yaml @@ -0,0 +1,49 @@ +name: "YTheme Dark" +source: + marketplace_id: "czfadmin.ytheme" + version: "1.3.21" + installs: 1127 + author: "czfadmin" + repo: "https://github.com/czfadmin/Atom-One-Dark-Pro" + url: "https://marketplace.visualstudio.com/items?itemName=czfadmin.ytheme" +colors: + bg: "#2A2A31" + fg: "#CECECE" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#D49D35" + blue: "#839BDD" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#256B7A" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#C07639" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#BDBDBD" +meta: + mode: "dark" + accent: "pink" + hue: 286 + contrast: + fg: 72.9 + black: 0 + red: 39.1 + green: 59.3 + yellow: 50.6 + blue: 45.2 + magenta: 42.2 + cyan: 51.6 + white: 56.5 + brightBlack: 17.8 + brightRed: 39.1 + brightGreen: 59.3 + brightYellow: 34.8 + brightBlue: 51.7 + brightMagenta: 42.2 + brightCyan: 51.6 + brightWhite: 62.9 diff --git a/themes/yue-theme.yaml b/themes/yue-theme.yaml new file mode 100644 index 00000000..76534dec --- /dev/null +++ b/themes/yue-theme.yaml @@ -0,0 +1,49 @@ +name: "yue-theme" +source: + marketplace_id: "yuesuirenqianli.yue-code-theme" + version: "0.0.2" + installs: 91 + author: "yuesuirenqianli" + repo: "https://github.com/yuesuirenqianli/yue-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yuesuirenqianli.yue-code-theme" +colors: + bg: "#202020" + fg: "#CDB892" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 63.3 + black: 0 + red: 43.7 + green: 51.2 + yellow: 72.8 + blue: 43.8 + magenta: 46.4 + cyan: 55.3 + white: 83.9 + brightBlack: 20.9 + brightRed: 51.6 + brightGreen: 59.8 + brightYellow: 82.4 + brightBlue: 52.1 + brightMagenta: 54.9 + brightCyan: 64.1 + brightWhite: 99.8 diff --git a/themes/yukinord.yaml b/themes/yukinord.yaml new file mode 100644 index 00000000..6a153525 --- /dev/null +++ b/themes/yukinord.yaml @@ -0,0 +1,49 @@ +name: "Yukinord" +source: + marketplace_id: "yukina.yukinord" + version: "0.0.65" + installs: 1364 + author: "Yukina" + repo: "https://github.com/yukina3230/yukinord" + url: "https://marketplace.visualstudio.com/items?itemName=yukina.yukinord" +colors: + bg: "#1D2129" + fg: "#D8DEE9" + black: "#292E39" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#8FBCBB" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#E5E9F0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 84.1 + black: 0 + red: 31.7 + green: 60.4 + yellow: 75.1 + blue: 47.4 + magenta: 45.2 + cyan: 59.3 + white: 91.1 + brightBlack: 14.1 + brightRed: 31.7 + brightGreen: 60.4 + brightYellow: 75.1 + brightBlue: 47.4 + brightMagenta: 45.2 + brightCyan: 59.3 + brightWhite: 91.1 diff --git a/themes/yule-contrast.yaml b/themes/yule-contrast.yaml new file mode 100644 index 00000000..0b661d3d --- /dev/null +++ b/themes/yule-contrast.yaml @@ -0,0 +1,49 @@ +name: "yule-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#0C0C0B" + fg: "#EDE0CE" + black: "#191917" + red: "#BA0E2E" + green: "#39B81F" + yellow: "#D63131" + blue: "#EBB626" + magenta: "#39B81F" + cyan: "#D63131" + white: "#F4ECE1" + brightBlack: "#41413C" + brightRed: "#F03E5F" + brightGreen: "#71E35A" + brightYellow: "#E78686" + brightBlue: "#F4D583" + brightMagenta: "#71E35A" + brightCyan: "#E78686" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 88.7 + black: 0 + red: 21.3 + green: 51.3 + yellow: 29.5 + blue: 67.3 + magenta: 51.3 + cyan: 29.5 + white: 95.9 + brightBlack: 8.5 + brightRed: 37.6 + brightGreen: 74.7 + brightYellow: 51.6 + brightBlue: 82.6 + brightMagenta: 74.7 + brightCyan: 51.6 + brightWhite: 107.7 diff --git a/themes/yule-light.yaml b/themes/yule-light.yaml new file mode 100644 index 00000000..e5b29681 --- /dev/null +++ b/themes/yule-light.yaml @@ -0,0 +1,49 @@ +name: "yule-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#39B81F" + yellow: "#D63131" + blue: "#EBB626" + magenta: "#39B81F" + cyan: "#D63131" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#71E35A" + brightYellow: "#E78686" + brightBlue: "#F4D583" + brightMagenta: "#71E35A" + brightCyan: "#E78686" + brightWhite: "#777777" +meta: + mode: "light" + accent: "green" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 50.4 + yellow: 72 + blue: 35 + magenta: 50.4 + cyan: 72 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 28 + brightYellow: 50.1 + brightBlue: 20.5 + brightMagenta: 28 + brightCyan: 50.1 + brightWhite: 71.1 diff --git a/themes/yule.yaml b/themes/yule.yaml new file mode 100644 index 00000000..1ba5a27c --- /dev/null +++ b/themes/yule.yaml @@ -0,0 +1,49 @@ +name: "yule" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#2B2A27" + fg: "#EDE0CE" + black: "#383733" + red: "#BA0E2E" + green: "#39B81F" + yellow: "#D63131" + blue: "#EBB626" + magenta: "#39B81F" + cyan: "#D63131" + white: "#F4ECE1" + brightBlack: "#605E57" + brightRed: "#F03E5F" + brightGreen: "#71E35A" + brightYellow: "#E78686" + brightBlue: "#F4D583" + brightMagenta: "#71E35A" + brightCyan: "#E78686" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 85.1 + black: 0 + red: 17.7 + green: 47.7 + yellow: 25.9 + blue: 63.7 + magenta: 47.7 + cyan: 25.9 + white: 92.3 + brightBlack: 15.8 + brightRed: 34 + brightGreen: 71.1 + brightYellow: 48 + brightBlue: 79 + brightMagenta: 71.1 + brightCyan: 48 + brightWhite: 104 diff --git a/themes/yulon.yaml b/themes/yulon.yaml new file mode 100644 index 00000000..c7c3b8e3 --- /dev/null +++ b/themes/yulon.yaml @@ -0,0 +1,49 @@ +name: "yulon" +source: + marketplace_id: "Volskaya.irrelevant" + version: "0.0.2" + installs: 33 + author: "Volskaya" + repo: "https://github.com/volskaya/irrelevant" + url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#1C1C1C" + red: "#946BFB" + green: "#00FF98" + yellow: "#946BFB" + blue: "#878787" + magenta: "#979797" + cyan: "#A6A6A6" + white: "#444444" + brightBlack: "#666666" + brightRed: "#946BFB" + brightGreen: "#00FF98" + brightYellow: "#DDDDDD" + brightBlue: "#878787" + brightMagenta: "#979797" + brightCyan: "#A6A6A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 36.4 + green: 86.6 + yellow: 36.4 + blue: 36.6 + magenta: 44.6 + cyan: 52.5 + white: 8.3 + brightBlack: 21.5 + brightRed: 36.4 + brightGreen: 86.6 + brightYellow: 84.4 + brightBlue: 36.6 + brightMagenta: 44.6 + brightCyan: 52.5 + brightWhite: 106.3 diff --git a/themes/yum.yaml b/themes/yum.yaml new file mode 100644 index 00000000..0b6d9013 --- /dev/null +++ b/themes/yum.yaml @@ -0,0 +1,49 @@ +name: "yum" +source: + marketplace_id: "RioEdwards.yum" + version: "1.0.4" + installs: 233 + author: "Rio Edwards" + repo: "https://github.com/rioredwards/yum" + url: "https://marketplace.visualstudio.com/items?itemName=RioEdwards.yum" +colors: + bg: "#272727" + fg: "#CCCCCC" + black: "#353535" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 72.4 + black: 0 + red: 23 + green: 40.7 + yellow: 50.2 + blue: 29.3 + magenta: 29.4 + cyan: 39.7 + white: 45 + brightBlack: 34.1 + brightRed: 37.9 + brightGreen: 58.9 + brightYellow: 69.5 + brightBlue: 46.4 + brightMagenta: 45.7 + brightCyan: 57.9 + brightWhite: 82.1 diff --git a/themes/yurei-dark-theme.yaml b/themes/yurei-dark-theme.yaml new file mode 100644 index 00000000..bb8b4d46 --- /dev/null +++ b/themes/yurei-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Yurei Dark Theme" +source: + marketplace_id: "vanreagan.yurei-dark-theme" + version: "1.1.0" + installs: 282 + author: "vanreagan" + repo: "https://github.com/vanreagan/yurei-dark-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=vanreagan.yurei-dark-theme" +colors: + bg: "#151515" + fg: "#B4B4B4" + black: "#514E4E" + red: "#BC5E5E" + green: "#5BB492" + yellow: "#D5D567" + blue: "#71849B" + magenta: "#BC71BC" + cyan: "#5AB6CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F57979" + brightGreen: "#7EF2C4" + brightYellow: "#FFFFB0" + brightBlue: "#99CAFF" + brightMagenta: "#E6B4E6" + brightCyan: "#6AE2FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 61 + black: 12.9 + red: 31.6 + green: 52.2 + yellow: 77 + blue: 35 + magenta: 39.9 + cyan: 55.5 + white: 90.2 + brightBlack: 22.2 + brightRed: 49.8 + brightGreen: 85.1 + brightYellow: 104 + brightBlue: 71.2 + brightMagenta: 70.2 + brightCyan: 78.9 + brightWhite: 90.2 diff --git a/themes/yuru-black.yaml b/themes/yuru-black.yaml new file mode 100644 index 00000000..e8e06047 --- /dev/null +++ b/themes/yuru-black.yaml @@ -0,0 +1,49 @@ +name: "yuru black" +source: + marketplace_id: "yuru.yuru-black" + version: "2.3.4" + installs: 962 + author: "yuru" + repo: "https://github.com/yuruko/yuru-black" + url: "https://marketplace.visualstudio.com/items?itemName=yuru.yuru-black" +colors: + bg: "#000000" + fg: "#D9C8C8" + black: "#646464" + red: "#FF7171" + green: "#35FFB2" + yellow: "#FFFF64" + blue: "#588AFF" + magenta: "#FF78FF" + cyan: "#45DAFF" + white: "#E5E5E5" + brightBlack: "#8A8A8A" + brightRed: "#FFA6A6" + brightGreen: "#A8FFDC" + brightYellow: "#FFFFB5" + brightBlue: "#ADBEFF" + brightMagenta: "#FFC0FF" + brightCyan: "#8BE8FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 75.5 + black: 22.2 + red: 50.6 + green: 89.3 + yellow: 103.3 + blue: 42.5 + magenta: 58.7 + cyan: 74.5 + white: 91 + brightBlack: 39.6 + brightRed: 67.5 + brightGreen: 96.5 + brightYellow: 105 + brightBlue: 68.9 + brightMagenta: 80.9 + brightCyan: 84.6 + brightWhite: 91 diff --git a/themes/yuru.yaml b/themes/yuru.yaml new file mode 100644 index 00000000..35dbcb02 --- /dev/null +++ b/themes/yuru.yaml @@ -0,0 +1,49 @@ +name: "Yuru" +source: + marketplace_id: "arzg.noel" + version: "2.1.0" + installs: 614 + author: "arzg" + repo: "https://github.com/arzg/noel" + url: "https://marketplace.visualstudio.com/items?itemName=arzg.noel" +colors: + bg: "#292525" + fg: "#E1DBD1" + black: "#292525" + red: "#CC818E" + green: "#91A872" + yellow: "#BE8B67" + blue: "#88D4CC" + magenta: "#CC818E" + cyan: "#C4BAA9" + white: "#E1DBD1" + brightBlack: "#5D5650" + brightRed: "#CC818E" + brightGreen: "#91A872" + brightYellow: "#BE8B67" + brightBlue: "#88D4CC" + brightMagenta: "#CC818E" + brightCyan: "#C4BAA9" + brightWhite: "#E1DBD1" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 82.1 + black: 0 + red: 42.8 + green: 47.9 + yellow: 42.6 + blue: 69.4 + magenta: 42.8 + cyan: 62.7 + white: 82.1 + brightBlack: 13.9 + brightRed: 42.8 + brightGreen: 47.9 + brightYellow: 42.6 + brightBlue: 69.4 + brightMagenta: 42.8 + brightCyan: 62.7 + brightWhite: 82.1 diff --git a/themes/yuyuko-vscode-ocean.yaml b/themes/yuyuko-vscode-ocean.yaml new file mode 100644 index 00000000..8c2befea --- /dev/null +++ b/themes/yuyuko-vscode-ocean.yaml @@ -0,0 +1,49 @@ +name: "yuyuko.vscode ocean" +source: + marketplace_id: "hylwxqwq.yuyuko-vim-vsc" + version: "0.2.1" + installs: 6332 + author: "hylwxqwq" + repo: "https://github.com/hylwxqwq/yuyuko-vim-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=hylwxqwq.yuyuko-vim-vsc" +colors: + bg: "#0F111A" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 105 + black: 0 + red: 44.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 107.3 + brightBlack: 11.4 + brightRed: 44.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/yuyuko-vscode.yaml b/themes/yuyuko-vscode.yaml new file mode 100644 index 00000000..1cda51a2 --- /dev/null +++ b/themes/yuyuko-vscode.yaml @@ -0,0 +1,49 @@ +name: "yuyuko.vscode" +source: + marketplace_id: "hylwxqwq.yuyuko-vim-vsc" + version: "0.2.1" + installs: 6332 + author: "hylwxqwq" + repo: "https://github.com/hylwxqwq/yuyuko-vim-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=hylwxqwq.yuyuko-vim-vsc" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 106.3 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/z-darktheme.yaml b/themes/z-darktheme.yaml new file mode 100644 index 00000000..5f5f09ee --- /dev/null +++ b/themes/z-darktheme.yaml @@ -0,0 +1,49 @@ +name: "Z-DarkTheme" +source: + marketplace_id: "Akako.z-darktheme" + version: "0.1.0" + installs: 321 + author: "Akakø" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Akako.z-darktheme" +colors: + bg: "#311E40" + fg: "#FFFEE1" + black: "#1B0D25" + red: "#FC6363" + green: "#DAE987" + yellow: "#F8F1B2" + blue: "#2725B1" + magenta: "#E982F7" + cyan: "#AFFFF8" + white: "#CECECE" + brightBlack: "#493F4E" + brightRed: "#F72626" + brightGreen: "#87EE12" + brightYellow: "#F0DA78" + brightBlue: "#5B1BFF" + brightMagenta: "#EB50FF" + brightCyan: "#05EBD7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 309 + contrast: + fg: 102.9 + black: 0 + red: 43.3 + green: 85.1 + yellow: 94 + blue: 0 + magenta: 53.2 + cyan: 95.1 + white: 73.6 + brightBlack: 0 + brightRed: 33.4 + brightGreen: 78.1 + brightYellow: 81 + brightBlue: 16.9 + brightMagenta: 43.7 + brightCyan: 76.7 + brightWhite: 104.7 diff --git a/themes/z3r0.yaml b/themes/z3r0.yaml new file mode 100644 index 00000000..8bb8a1e9 --- /dev/null +++ b/themes/z3r0.yaml @@ -0,0 +1,49 @@ +name: "z3r0" +source: + marketplace_id: "z3r0.z3r0" + version: "1.2.0" + installs: 341 + author: "Z3R0" + repo: "https://github.com/thailoeduardo/z3r0" + url: "https://marketplace.visualstudio.com/items?itemName=z3r0.z3r0" +colors: + bg: "#121212" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.3 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.4 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/zach-s-blue-theme.yaml b/themes/zach-s-blue-theme.yaml new file mode 100644 index 00000000..8b359516 --- /dev/null +++ b/themes/zach-s-blue-theme.yaml @@ -0,0 +1,49 @@ +name: "Zach's Blue Theme" +source: + marketplace_id: "ZachFauser.ZachsBlueTheme" + version: "9.0.1" + installs: 1738 + author: "Zach Fauser" + repo: "https://github.com/Zfauser/Zachs-BLUE-vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=ZachFauser.ZachsBlueTheme" +colors: + bg: "#0E2434" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 242 + contrast: + fg: 78 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 28.2 + cyan: 46 + white: 88.5 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/zacks-contrast.yaml b/themes/zacks-contrast.yaml new file mode 100644 index 00000000..63fbac85 --- /dev/null +++ b/themes/zacks-contrast.yaml @@ -0,0 +1,49 @@ +name: "zacks-contrast" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#000000" + fg: "#F0F0F0" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#9C7DDB" + yellow: "#FF6A38" + blue: "#BCD42A" + magenta: "#FF6A38" + cyan: "#9C7DDB" + white: "#FDFDFD" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#D9CDF1" + brightYellow: "#FFB69E" + brightBlue: "#D7E67E" + brightMagenta: "#FFB69E" + brightCyan: "#D9CDF1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 98.1 + black: 0 + red: 21.5 + green: 41.5 + yellow: 48.1 + blue: 73.7 + magenta: 48.1 + cyan: 41.5 + white: 106.6 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 79.6 + brightYellow: 72.9 + brightBlue: 86.3 + brightMagenta: 72.9 + brightCyan: 79.6 + brightWhite: 107.9 diff --git a/themes/zacks-light.yaml b/themes/zacks-light.yaml new file mode 100644 index 00000000..07faadde --- /dev/null +++ b/themes/zacks-light.yaml @@ -0,0 +1,49 @@ +name: "zacks-light" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#9C7DDB" + yellow: "#FF6A38" + blue: "#BCD42A" + magenta: "#FF6A38" + cyan: "#9C7DDB" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#D9CDF1" + brightYellow: "#FFB69E" + brightBlue: "#D7E67E" + brightMagenta: "#FFB69E" + brightCyan: "#D9CDF1" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 60.2 + yellow: 53.7 + blue: 29.2 + magenta: 53.7 + cyan: 60.2 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 23.6 + brightYellow: 29.9 + brightBlue: 17.3 + brightMagenta: 29.9 + brightCyan: 23.6 + brightWhite: 71.1 diff --git a/themes/zacks.yaml b/themes/zacks.yaml new file mode 100644 index 00000000..5bf12553 --- /dev/null +++ b/themes/zacks.yaml @@ -0,0 +1,49 @@ +name: "zacks" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 527899 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" +colors: + bg: "#222222" + fg: "#F0F0F0" + black: "#2F2F2F" + red: "#BA0E2E" + green: "#9C7DDB" + yellow: "#FF6A38" + blue: "#BCD42A" + magenta: "#FF6A38" + cyan: "#9C7DDB" + white: "#FDFDFD" + brightBlack: "#555555" + brightRed: "#F03E5F" + brightGreen: "#D9CDF1" + brightYellow: "#FFB69E" + brightBlue: "#D7E67E" + brightMagenta: "#FFB69E" + brightCyan: "#D9CDF1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 95.6 + black: 0 + red: 19.1 + green: 39.1 + yellow: 45.7 + blue: 71.2 + magenta: 45.7 + cyan: 39.1 + white: 104.1 + brightBlack: 13.7 + brightRed: 35.4 + brightGreen: 77.1 + brightYellow: 70.5 + brightBlue: 83.9 + brightMagenta: 70.5 + brightCyan: 77.1 + brightWhite: 105.5 diff --git a/themes/zaher-color-theme.yaml b/themes/zaher-color-theme.yaml new file mode 100644 index 00000000..c5370c37 --- /dev/null +++ b/themes/zaher-color-theme.yaml @@ -0,0 +1,49 @@ +name: "zaher-color-theme" +source: + marketplace_id: "special-one.zaher" + version: "0.0.3" + installs: 76 + author: "Alireza" + repo: "https://github.com/alirezahastam/zaher" + url: "https://marketplace.visualstudio.com/items?itemName=special-one.zaher" +colors: + bg: "#0B0E14" + fg: "#2A9D8F" + black: "#101216" + red: "#F26D78" + green: "#0EAD69" + yellow: "#F1C26E" + blue: "#5E8CC1" + magenta: "#D457FF" + cyan: "#3BAFC5" + white: "#D0D0D0" + brightBlack: "#5C6066" + brightRed: "#F26D78" + brightGreen: "#0EAD69" + brightYellow: "#F1C26E" + brightBlue: "#5E8CC1" + brightMagenta: "#D457FF" + brightCyan: "#3BAFC5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 41.1 + black: 0 + red: 46.8 + green: 46.5 + yellow: 73.7 + blue: 38.9 + magenta: 43.3 + cyan: 51.4 + white: 77.8 + brightBlack: 20.1 + brightRed: 46.8 + brightGreen: 46.5 + brightYellow: 73.7 + brightBlue: 38.9 + brightMagenta: 43.3 + brightCyan: 51.4 + brightWhite: 107.6 diff --git a/themes/zan.yaml b/themes/zan.yaml new file mode 100644 index 00000000..df44cbcc --- /dev/null +++ b/themes/zan.yaml @@ -0,0 +1,49 @@ +name: "Zan" +source: + marketplace_id: "bjschwa2.zan" + version: "0.0.4" + installs: 783 + author: "bjschwa2" + repo: "https://github.com/bjschwa2/Zan" + url: "https://marketplace.visualstudio.com/items?itemName=bjschwa2.zan" +colors: + bg: "#141314" + fg: "#8A745C" + black: "#46423B" + red: "#70473A" + green: "#534D35" + yellow: "#9C7650" + blue: "#75715E" + magenta: "#543B3B" + cyan: "#5F4444" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#916255" + brightGreen: "#858167" + brightYellow: "#AD8650" + brightBlue: "#473E38" + brightMagenta: "#6B5D51" + brightCyan: "#585858" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 30.2 + black: 8.6 + red: 14.1 + green: 12.4 + yellow: 32.9 + blue: 27 + magenta: 8.3 + cyan: 11.6 + white: 90.3 + brightBlack: 22.4 + brightRed: 25.7 + brightGreen: 34.2 + brightYellow: 40.4 + brightBlue: 7.7 + brightMagenta: 19.6 + brightCyan: 16.6 + brightWhite: 90.3 diff --git a/themes/zandromeda.yaml b/themes/zandromeda.yaml new file mode 100644 index 00000000..260bb170 --- /dev/null +++ b/themes/zandromeda.yaml @@ -0,0 +1,49 @@ +name: "Zandromeda" +source: + marketplace_id: "tommalitz.simplethemes" + version: "0.0.10" + installs: 65 + author: "tommalitz" + repo: "https://github.com/TomMalitz/zedromeda" + url: "https://marketplace.visualstudio.com/items?itemName=tommalitz.simplethemes" +colors: + bg: "#171717" + fg: "#F7F7F8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 101.6 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/zap.yaml b/themes/zap.yaml new file mode 100644 index 00000000..77fed835 --- /dev/null +++ b/themes/zap.yaml @@ -0,0 +1,49 @@ +name: "zap" +source: + marketplace_id: "giovanicavila.zap-theme" + version: "0.0.10" + installs: 106 + author: "Giovani Avila" + repo: "https://github.com/giovanicavila/Zap" + url: "https://marketplace.visualstudio.com/items?itemName=giovanicavila.zap-theme" +colors: + bg: "#012400" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 142 + contrast: + fg: 78.5 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/zathura.yaml b/themes/zathura.yaml new file mode 100644 index 00000000..316d9cf1 --- /dev/null +++ b/themes/zathura.yaml @@ -0,0 +1,49 @@ +name: "Zathura" +source: + marketplace_id: "TeneBris.zathura" + version: "0.0.3" + installs: 150 + author: "TeneBris" + repo: "https://github.com/yaksh1/zathura_vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TeneBris.zathura" +colors: + bg: "#0F0F0F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/zbra-dark.yaml b/themes/zbra-dark.yaml new file mode 100644 index 00000000..8f626dcf --- /dev/null +++ b/themes/zbra-dark.yaml @@ -0,0 +1,49 @@ +name: "ZBRA Dark" +source: + marketplace_id: "zbra-dev.zbra-vs-code-theme" + version: "0.0.2" + installs: 123 + author: "ZBRA" + repo: "https://github.com/zbra-solutions/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zbra-dev.zbra-vs-code-theme" +colors: + bg: "#282C34" + fg: "#D1D3D4" + black: "#282C34" + red: "#EB3047" + green: "#4FE070" + yellow: "#E0D66C" + blue: "#4F59E0" + magenta: "#EB30D5" + cyan: "#43BFB3" + white: "#B9BBBD" + brightBlack: "#40444B" + brightRed: "#EB5630" + brightGreen: "#43BFB3" + brightYellow: "#E0D66C" + brightBlue: "#4F59E0" + brightMagenta: "#EB30D5" + brightCyan: "#43BFB3" + brightWhite: "#D1D3D4" +meta: + mode: "dark" + accent: "pink" + hue: 264 + contrast: + fg: 75.5 + black: 0 + red: 30.5 + green: 68.1 + yellow: 75.7 + blue: 20.7 + magenta: 36.1 + cyan: 54 + white: 61.4 + brightBlack: 0 + brightRed: 35.4 + brightGreen: 54 + brightYellow: 75.7 + brightBlue: 20.7 + brightMagenta: 36.1 + brightCyan: 54 + brightWhite: 75.5 diff --git a/themes/zeal.yaml b/themes/zeal.yaml new file mode 100644 index 00000000..23012bc7 --- /dev/null +++ b/themes/zeal.yaml @@ -0,0 +1,49 @@ +name: "Zeal" +source: + marketplace_id: "kqadem.zeal-theme" + version: "1.1.0" + installs: 2762 + author: "kq.adem" + repo: "https://github.com/kqadem/zeal" + url: "https://marketplace.visualstudio.com/items?itemName=kqadem.zeal-theme" +colors: + bg: "#263238" + fg: "#FFFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 230 + contrast: + fg: 102.7 + black: 0 + red: 39.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 102.7 + brightBlack: 19.7 + brightRed: 39.4 + brightGreen: 80 + brightYellow: 74.7 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/zednostheme-v1.yaml b/themes/zednostheme-v1.yaml new file mode 100644 index 00000000..d4ce13ac --- /dev/null +++ b/themes/zednostheme-v1.yaml @@ -0,0 +1,49 @@ +name: "ZednosTheme v1" +source: + marketplace_id: "GhostWithAHoodie.zednos-theme" + version: "0.1.0" + installs: 516 + author: "Ghost With A Hoodie" + repo: "https://github.com/SilesterGold9/ZednosTheme" + url: "https://marketplace.visualstudio.com/items?itemName=GhostWithAHoodie.zednos-theme" +colors: + bg: "#1D2628" + fg: "#EC9309" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 213 + contrast: + fg: 52.3 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.8 + blue: 25.6 + magenta: 27.9 + cyan: 45.7 + white: 88.2 + brightBlack: 20.2 + brightRed: 36.7 + brightGreen: 61.7 + brightYellow: 93.8 + brightBlue: 38.2 + brightMagenta: 43.5 + brightCyan: 53.6 + brightWhite: 88.2 diff --git a/themes/zelda-dark.yaml b/themes/zelda-dark.yaml new file mode 100644 index 00000000..cc412e11 --- /dev/null +++ b/themes/zelda-dark.yaml @@ -0,0 +1,49 @@ +name: "Zelda-Dark" +source: + marketplace_id: "KlausChamberlain.zelda" + version: "0.0.1" + installs: 60 + author: "Klaus Chamberlain" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=KlausChamberlain.zelda" +colors: + bg: "#0D1513" + fg: "#E2DDC3" + black: "#0D1513" + red: "#C9B962" + green: "#90B791" + yellow: "#C9B962" + blue: "#6CA08C" + magenta: "#9BA064" + cyan: "#ABC894" + white: "#E2DDC3" + brightBlack: "#6D9064" + brightRed: "#C9B962" + brightGreen: "#90B791" + brightYellow: "#C9B962" + brightBlue: "#6CA08C" + brightMagenta: "#9BA064" + brightCyan: "#ABC894" + brightWhite: "#E2DDC3" +meta: + mode: "dark" + accent: "green" + hue: 178 + contrast: + fg: 84.9 + black: 0 + red: 63.5 + green: 57.3 + yellow: 63.5 + blue: 44.7 + magenta: 47.9 + cyan: 67.4 + white: 84.9 + brightBlack: 37.4 + brightRed: 63.5 + brightGreen: 57.3 + brightYellow: 63.5 + brightBlue: 44.7 + brightMagenta: 47.9 + brightCyan: 67.4 + brightWhite: 84.9 diff --git a/themes/zelzea.yaml b/themes/zelzea.yaml new file mode 100644 index 00000000..6bd3cf13 --- /dev/null +++ b/themes/zelzea.yaml @@ -0,0 +1,49 @@ +name: "zelzea" +source: + marketplace_id: "hooriahic.zelzea" + version: "0.2.0" + installs: 387 + author: "hooriahic" + repo: "https://github.com/HooriaHIC/zelzea" + url: "https://marketplace.visualstudio.com/items?itemName=hooriahic.zelzea" +colors: + bg: "#EEEEEE" + fg: "#333333" + black: "#ECF0F8" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 88.6 + black: 0 + red: 48.5 + green: 29 + yellow: 21.1 + blue: 49.1 + magenta: 45.6 + cyan: 36.4 + white: 9.3 + brightBlack: 55 + brightRed: 52.1 + brightGreen: 29 + brightYellow: 21.1 + brightBlue: 49.1 + brightMagenta: 78.3 + brightCyan: 36.4 + brightWhite: 9.3 diff --git a/themes/zemarcolortheme.yaml b/themes/zemarcolortheme.yaml new file mode 100644 index 00000000..8ba01639 --- /dev/null +++ b/themes/zemarcolortheme.yaml @@ -0,0 +1,49 @@ +name: "ZemarColorTheme" +source: + marketplace_id: "ZColorTheme.ZColorThemeV2" + version: "0.0.1" + installs: 1803 + author: "ZColorTheme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ZColorTheme.ZColorThemeV2" +colors: + bg: "#080E21" + fg: "#00CFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#238BFF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 268 + contrast: + fg: 68.2 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 40.6 + magenta: 30.3 + cyan: 48.1 + white: 107.5 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/zemizer-grey.yaml b/themes/zemizer-grey.yaml new file mode 100644 index 00000000..80ac4aca --- /dev/null +++ b/themes/zemizer-grey.yaml @@ -0,0 +1,49 @@ +name: "ZeMizer Grey" +source: + marketplace_id: "Kmzx.zemizer-theme" + version: "1.0.1" + installs: 118 + author: "ZeKmzx" + repo: "https://github.com/mlaidouni/vsc.ext.zemizer.theme" + url: "https://marketplace.visualstudio.com/items?itemName=Kmzx.zemizer-theme" +colors: + bg: "#24292E" + fg: "#E1E4E8" + black: "#000000" + red: "#FF0000" + green: "#26A269" + yellow: "#CDCD00" + blue: "#2AA1B3" + magenta: "#AE81FF" + cyan: "#2DE0A7" + white: "#F1EFF8" + brightBlack: "#666699" + brightRed: "#FF0000" + brightGreen: "#33D17A" + brightYellow: "#7AA5FF" + brightBlue: "#2A7BDE" + brightMagenta: "#AE81FF" + brightCyan: "#33C7DE" + brightWhite: "#53495D" +meta: + mode: "dark" + accent: "orange" + hue: 248 + contrast: + fg: 86.7 + black: 0 + red: 34 + green: 38.8 + yellow: 69 + blue: 41.1 + magenta: 44 + cyan: 69.3 + white: 94.6 + brightBlack: 21.6 + brightRed: 34 + brightGreen: 60.8 + brightYellow: 50.9 + brightBlue: 29.6 + brightMagenta: 44 + brightCyan: 59.9 + brightWhite: 9.5 diff --git a/themes/zen-dark.yaml b/themes/zen-dark.yaml new file mode 100644 index 00000000..ec41e9fb --- /dev/null +++ b/themes/zen-dark.yaml @@ -0,0 +1,49 @@ +name: "Zen Dark" +source: + marketplace_id: "cmion.zen-vscode-theme" + version: "1.0.2" + installs: 143 + author: "cmion" + repo: "https://github.com/cmion/zen-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cmion.zen-vscode-theme" +colors: + bg: "#212121" + fg: "#B0BEC5" + black: "#212121" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#E093D9" + cyan: "#89DDFF" + white: "#F8F8F2" + brightBlack: "#616161" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#E093D9" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 63.9 + black: 0 + red: 42.4 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 55.8 + cyan: 77 + white: 100.7 + brightBlack: 18.7 + brightRed: 42.4 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 55.8 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/zen-mono.yaml b/themes/zen-mono.yaml new file mode 100644 index 00000000..d3c29f79 --- /dev/null +++ b/themes/zen-mono.yaml @@ -0,0 +1,49 @@ +name: "Zen Mono" +source: + marketplace_id: "Noxire.midnight-themepack" + version: "1.2.0" + installs: 544 + author: "Noxire" + repo: "https://github.com/Noxire-Hash/midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" +colors: + bg: "#11141B" + fg: "#DCD9F6" + black: "#0E1017" + red: "#FF6A9B" + green: "#B3F1D0" + yellow: "#FFCC88" + blue: "#A7C5FF" + magenta: "#C099FF" + cyan: "#B8E7FF" + white: "#E8E6FF" + brightBlack: "#2A2E3E" + brightRed: "#FF8AB3" + brightGreen: "#C7F6DC" + brightYellow: "#FFE3A8" + brightBlue: "#BDD4FF" + brightMagenta: "#D8C5FF" + brightCyan: "#D2F1FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 267 + contrast: + fg: 84.6 + black: 0 + red: 49.6 + green: 89.3 + yellow: 80.2 + blue: 70.4 + magenta: 56.7 + cyan: 87.2 + white: 92.4 + brightBlack: 0 + brightRed: 58.5 + brightGreen: 94.2 + brightYellow: 90.9 + brightBlue: 79.2 + brightMagenta: 76.2 + brightCyan: 94.7 + brightWhite: 107.1 diff --git a/themes/zen-sakura-cherry-blossom.yaml b/themes/zen-sakura-cherry-blossom.yaml new file mode 100644 index 00000000..1cfef1b8 --- /dev/null +++ b/themes/zen-sakura-cherry-blossom.yaml @@ -0,0 +1,49 @@ +name: "Zen Sakura (Cherry Blossom)" +source: + marketplace_id: "cmion.zen-vscode-theme" + version: "1.0.2" + installs: 143 + author: "cmion" + repo: "https://github.com/cmion/zen-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cmion.zen-vscode-theme" +colors: + bg: "#212121" + fg: "#B0BEC5" + black: "#212121" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#F780BF" + cyan: "#89DDFF" + white: "#F8F8F2" + brightBlack: "#616161" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#F780BF" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 63.9 + black: 0 + red: 42.4 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 53.1 + cyan: 77 + white: 100.7 + brightBlack: 18.7 + brightRed: 42.4 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 53.1 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/zen-theme.yaml b/themes/zen-theme.yaml new file mode 100644 index 00000000..59c2b0a6 --- /dev/null +++ b/themes/zen-theme.yaml @@ -0,0 +1,49 @@ +name: "zen-theme" +source: + marketplace_id: "pzielinski.zen-theme" + version: "0.0.6" + installs: 27 + author: "Piotr Zieliński" + repo: "https://github.com/piotrzielinski1994/vscode-zen-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pzielinski.zen-theme" +colors: + bg: "#0F111A" + fg: "#B7BBCD" + black: "#000000" + red: "#FF5371" + green: "#C3E88D" + yellow: "#FFCB6C" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#00AFD7" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 65.5 + black: 0 + red: 44.1 + green: 84.7 + yellow: 79.4 + blue: 27.9 + magenta: 30.2 + cyan: 51.5 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.8 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/zen.yaml b/themes/zen.yaml new file mode 100644 index 00000000..eefaf582 --- /dev/null +++ b/themes/zen.yaml @@ -0,0 +1,49 @@ +name: "Zen" +source: + marketplace_id: "ZenTheme.zen-color-theme" + version: "0.0.4" + installs: 372 + author: "Zen Theme" + repo: "https://github.com/vibovenkat123/zen_vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ZenTheme.zen-color-theme" +colors: + bg: "#1D1D1D" + fg: "#EBEBEB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 93.1 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/zenbones-dark-stark.yaml b/themes/zenbones-dark-stark.yaml new file mode 100644 index 00000000..ccdf2ad8 --- /dev/null +++ b/themes/zenbones-dark-stark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Dark Stark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#171210" + fg: "#B4BDC3" + black: "#1C1917" + red: "#DE6E7C" + green: "#819B69" + yellow: "#B77E64" + blue: "#6099C0" + magenta: "#B279A7" + cyan: "#66A5AD" + white: "#B4BDC3" + brightBlack: "#403833" + brightRed: "#E8838F" + brightGreen: "#8BAE68" + brightYellow: "#D68C67" + brightBlue: "#61ABDA" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#888F94" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 65.4 + black: 0 + red: 42.7 + green: 43.4 + yellow: 39.7 + blue: 43.5 + magenta: 39.7 + cyan: 47.7 + white: 65.4 + brightBlack: 0 + brightRed: 50.8 + brightGreen: 52 + brightYellow: 49.2 + brightBlue: 52.1 + brightMagenta: 49.3 + brightCyan: 56.5 + brightWhite: 40.9 diff --git a/themes/zenbones-dark-warm.yaml b/themes/zenbones-dark-warm.yaml new file mode 100644 index 00000000..a4874e43 --- /dev/null +++ b/themes/zenbones-dark-warm.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Dark Warm" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#221F1D" + fg: "#B4BDC3" + black: "#1C1917" + red: "#DE6E7C" + green: "#819B69" + yellow: "#B77E64" + blue: "#6099C0" + magenta: "#B279A7" + cyan: "#66A5AD" + white: "#B4BDC3" + brightBlack: "#403833" + brightRed: "#E8838F" + brightGreen: "#8BAE68" + brightYellow: "#D68C67" + brightBlue: "#61ABDA" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#888F94" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 64 + black: 0 + red: 41.3 + green: 42 + yellow: 38.3 + blue: 42.1 + magenta: 38.3 + cyan: 46.3 + white: 64 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 50.6 + brightYellow: 47.8 + brightBlue: 50.7 + brightMagenta: 47.9 + brightCyan: 55.1 + brightWhite: 39.5 diff --git a/themes/zenbones-dark.yaml b/themes/zenbones-dark.yaml new file mode 100644 index 00000000..3d2cc0b2 --- /dev/null +++ b/themes/zenbones-dark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Dark" +source: + marketplace_id: "vinitkme.zenbones-redux" + version: "1.0.1" + installs: 9 + author: "Gotchacode" + repo: "https://github.com/vinitkumar/zenbones" + url: "https://marketplace.visualstudio.com/items?itemName=vinitkme.zenbones-redux" +colors: + bg: "#1C1917" + fg: "#B4BDC3" + black: "#1C1917" + red: "#DE6E7C" + green: "#819B69" + yellow: "#B77E64" + blue: "#6099C0" + magenta: "#B279A7" + cyan: "#66A5AD" + white: "#B4BDC3" + brightBlack: "#5B514A" + brightRed: "#E8838F" + brightGreen: "#8BAE68" + brightYellow: "#D68C67" + brightBlue: "#61ABDA" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#C4CACF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 64.8 + black: 0 + red: 42.1 + green: 42.8 + yellow: 39.1 + blue: 42.8 + magenta: 39.1 + cyan: 47 + white: 64.8 + brightBlack: 14 + brightRed: 50.2 + brightGreen: 51.4 + brightYellow: 48.6 + brightBlue: 51.5 + brightMagenta: 48.7 + brightCyan: 55.9 + brightWhite: 72.7 diff --git a/themes/zenbones-duckbones-dark-stark.yaml b/themes/zenbones-duckbones-dark-stark.yaml new file mode 100644 index 00000000..b7a7930d --- /dev/null +++ b/themes/zenbones-duckbones-dark-stark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Duckbones Dark Stark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#06070F" + fg: "#EBEFC0" + black: "#0E101A" + red: "#E03600" + green: "#5DCD97" + yellow: "#E39500" + blue: "#00A3CB" + magenta: "#795CCC" + cyan: "#00A3CB" + white: "#EBEFC0" + brightBlack: "#2B2F46" + brightRed: "#FF4821" + brightGreen: "#58DB9E" + brightYellow: "#F6A100" + brightBlue: "#00B4E0" + brightMagenta: "#B3A1E6" + brightCyan: "#00B4E0" + brightWhite: "#B3B692" +meta: + mode: "dark" + accent: "orange" + hue: 277 + contrast: + fg: 94.9 + black: 0 + red: 32.2 + green: 64.5 + yellow: 54.1 + blue: 46.3 + magenta: 27.4 + cyan: 46.3 + white: 94.9 + brightBlack: 0 + brightRed: 41.8 + brightGreen: 71.2 + brightYellow: 61.6 + brightBlue: 54.6 + brightMagenta: 56.8 + brightCyan: 54.6 + brightWhite: 61.2 diff --git a/themes/zenbones-duckbones-dark-warm.yaml b/themes/zenbones-duckbones-dark-warm.yaml new file mode 100644 index 00000000..e823c974 --- /dev/null +++ b/themes/zenbones-duckbones-dark-warm.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Duckbones Dark Warm" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#151722" + fg: "#EBEFC0" + black: "#0E101A" + red: "#E03600" + green: "#5DCD97" + yellow: "#E39500" + blue: "#00A3CB" + magenta: "#795CCC" + cyan: "#00A3CB" + white: "#EBEFC0" + brightBlack: "#2B2F46" + brightRed: "#FF4821" + brightGreen: "#58DB9E" + brightYellow: "#F6A100" + brightBlue: "#00B4E0" + brightMagenta: "#B3A1E6" + brightCyan: "#00B4E0" + brightWhite: "#B3B692" +meta: + mode: "dark" + accent: "orange" + hue: 276 + contrast: + fg: 93.9 + black: 0 + red: 31.2 + green: 63.5 + yellow: 53.1 + blue: 45.3 + magenta: 26.4 + cyan: 45.3 + white: 93.9 + brightBlack: 0 + brightRed: 40.8 + brightGreen: 70.2 + brightYellow: 60.6 + brightBlue: 53.6 + brightMagenta: 55.8 + brightCyan: 53.6 + brightWhite: 60.2 diff --git a/themes/zenbones-duckbones-dark.yaml b/themes/zenbones-duckbones-dark.yaml new file mode 100644 index 00000000..01619749 --- /dev/null +++ b/themes/zenbones-duckbones-dark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Duckbones Dark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#0E101A" + fg: "#EBEFC0" + black: "#0E101A" + red: "#E03600" + green: "#5DCD97" + yellow: "#E39500" + blue: "#00A3CB" + magenta: "#795CCC" + cyan: "#00A3CB" + white: "#EBEFC0" + brightBlack: "#2B2F46" + brightRed: "#FF4821" + brightGreen: "#58DB9E" + brightYellow: "#F6A100" + brightBlue: "#00B4E0" + brightMagenta: "#B3A1E6" + brightCyan: "#00B4E0" + brightWhite: "#B3B692" +meta: + mode: "dark" + accent: "orange" + hue: 275 + contrast: + fg: 94.5 + black: 0 + red: 31.8 + green: 64.1 + yellow: 53.7 + blue: 45.9 + magenta: 27 + cyan: 45.9 + white: 94.5 + brightBlack: 0 + brightRed: 41.4 + brightGreen: 70.8 + brightYellow: 61.2 + brightBlue: 54.2 + brightMagenta: 56.4 + brightCyan: 54.2 + brightWhite: 60.8 diff --git a/themes/zenbones-forestbones-dark-stark.yaml b/themes/zenbones-forestbones-dark-stark.yaml new file mode 100644 index 00000000..2357ef1c --- /dev/null +++ b/themes/zenbones-forestbones-dark-stark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Forestbones Dark Stark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#242D34" + fg: "#E7DCC4" + black: "#2C343A" + red: "#E67C7F" + green: "#A9C181" + yellow: "#DDBD7F" + blue: "#7FBCB4" + magenta: "#D69AB7" + cyan: "#83C193" + white: "#E7DCC4" + brightBlack: "#45525C" + brightRed: "#ED9294" + brightGreen: "#B0CE7B" + brightYellow: "#EDC77A" + brightBlue: "#7AC9C0" + brightMagenta: "#E5A7C4" + brightCyan: "#7DD093" + brightWhite: "#B2A790" +meta: + mode: "dark" + accent: "orange" + hue: 242 + contrast: + fg: 81.7 + black: 0 + red: 44.4 + green: 60.1 + yellow: 65 + blue: 55.8 + magenta: 52.8 + cyan: 57.1 + white: 81.7 + brightBlack: 10.1 + brightRed: 52.8 + brightGreen: 66.4 + brightYellow: 71.4 + brightBlue: 61.7 + brightMagenta: 60.3 + brightCyan: 63.5 + brightWhite: 50.9 diff --git a/themes/zenbones-forestbones-dark-warm.yaml b/themes/zenbones-forestbones-dark-warm.yaml new file mode 100644 index 00000000..6aaf9614 --- /dev/null +++ b/themes/zenbones-forestbones-dark-warm.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Forestbones Dark Warm" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#323A40" + fg: "#E7DCC4" + black: "#2C343A" + red: "#E67C7F" + green: "#A9C181" + yellow: "#DDBD7F" + blue: "#7FBCB4" + magenta: "#D69AB7" + cyan: "#83C193" + white: "#E7DCC4" + brightBlack: "#45525C" + brightRed: "#ED9294" + brightGreen: "#B0CE7B" + brightYellow: "#EDC77A" + brightBlue: "#7AC9C0" + brightMagenta: "#E5A7C4" + brightCyan: "#7DD093" + brightWhite: "#B2A790" +meta: + mode: "dark" + accent: "orange" + hue: 240 + contrast: + fg: 78.3 + black: 0 + red: 41.1 + green: 56.7 + yellow: 61.7 + blue: 52.4 + magenta: 49.4 + cyan: 53.7 + white: 78.3 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 63.1 + brightYellow: 68.1 + brightBlue: 58.3 + brightMagenta: 56.9 + brightCyan: 60.1 + brightWhite: 47.6 diff --git a/themes/zenbones-forestbones-dark.yaml b/themes/zenbones-forestbones-dark.yaml new file mode 100644 index 00000000..274b17cd --- /dev/null +++ b/themes/zenbones-forestbones-dark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Forestbones Dark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#2C343A" + fg: "#E7DCC4" + black: "#2C343A" + red: "#E67C7F" + green: "#A9C181" + yellow: "#DDBD7F" + blue: "#7FBCB4" + magenta: "#D69AB7" + cyan: "#83C193" + white: "#E7DCC4" + brightBlack: "#45525C" + brightRed: "#ED9294" + brightGreen: "#B0CE7B" + brightYellow: "#EDC77A" + brightBlue: "#7AC9C0" + brightMagenta: "#E5A7C4" + brightCyan: "#7DD093" + brightWhite: "#B2A790" +meta: + mode: "dark" + accent: "orange" + hue: 240 + contrast: + fg: 80.1 + black: 0 + red: 42.8 + green: 58.5 + yellow: 63.4 + blue: 54.2 + magenta: 51.2 + cyan: 55.5 + white: 80.1 + brightBlack: 8.5 + brightRed: 51.2 + brightGreen: 64.8 + brightYellow: 69.8 + brightBlue: 60.1 + brightMagenta: 58.6 + brightCyan: 61.9 + brightWhite: 49.3 diff --git a/themes/zenbones-forestbones-light-bright.yaml b/themes/zenbones-forestbones-light-bright.yaml new file mode 100644 index 00000000..1f3aaf5b --- /dev/null +++ b/themes/zenbones-forestbones-light-bright.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Forestbones Light Bright" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#FEFCF8" + fg: "#4F5B62" + black: "#FAF3E1" + red: "#F85550" + green: "#8DA200" + yellow: "#DEA000" + blue: "#3A94C4" + magenta: "#DF69BA" + cyan: "#36A87E" + white: "#4F5B62" + brightBlack: "#DBC988" + brightRed: "#E6271C" + brightGreen: "#758700" + brightYellow: "#B98500" + brightBlue: "#297CA6" + brightMagenta: "#CA43A3" + brightCyan: "#258C67" + brightWhite: "#6E7F88" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 82.5 + black: 0 + red: 57.3 + green: 53.1 + yellow: 43.3 + blue: 59.3 + magenta: 55.2 + cyan: 54.3 + white: 82.5 + brightBlack: 27 + brightRed: 67.5 + brightGreen: 65.6 + brightYellow: 58 + brightBlue: 70.2 + brightMagenta: 67.4 + brightCyan: 66.7 + brightWhite: 66.9 diff --git a/themes/zenbones-forestbones-light-dim.yaml b/themes/zenbones-forestbones-light-dim.yaml new file mode 100644 index 00000000..783daa9e --- /dev/null +++ b/themes/zenbones-forestbones-light-dim.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Forestbones Light Dim" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#F5EBCC" + fg: "#4F5B62" + black: "#FAF3E1" + red: "#F85550" + green: "#8DA200" + yellow: "#DEA000" + blue: "#3A94C4" + magenta: "#DF69BA" + cyan: "#36A87E" + white: "#4F5B62" + brightBlack: "#DBC988" + brightRed: "#E6271C" + brightGreen: "#758700" + brightYellow: "#B98500" + brightBlue: "#297CA6" + brightMagenta: "#CA43A3" + brightCyan: "#258C67" + brightWhite: "#6E7F88" +meta: + mode: "light" + accent: "orange" + hue: 92 + contrast: + fg: 72.5 + black: 0 + red: 47.3 + green: 43 + yellow: 33.3 + blue: 49.2 + magenta: 45.1 + cyan: 44.2 + white: 72.5 + brightBlack: 17 + brightRed: 57.4 + brightGreen: 55.5 + brightYellow: 48 + brightBlue: 60.1 + brightMagenta: 57.3 + brightCyan: 56.7 + brightWhite: 56.9 diff --git a/themes/zenbones-forestbones-light.yaml b/themes/zenbones-forestbones-light.yaml new file mode 100644 index 00000000..a4e0885a --- /dev/null +++ b/themes/zenbones-forestbones-light.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Forestbones Light" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#FAF3E1" + fg: "#4F5B62" + black: "#FAF3E1" + red: "#F85550" + green: "#8DA200" + yellow: "#DEA000" + blue: "#3A94C4" + magenta: "#DF69BA" + cyan: "#36A87E" + white: "#4F5B62" + brightBlack: "#DBC988" + brightRed: "#E6271C" + brightGreen: "#758700" + brightYellow: "#B98500" + brightBlue: "#297CA6" + brightMagenta: "#CA43A3" + brightCyan: "#258C67" + brightWhite: "#6E7F88" +meta: + mode: "light" + accent: "orange" + hue: null + contrast: + fg: 77.2 + black: 0 + red: 52 + green: 47.8 + yellow: 38 + blue: 54 + magenta: 49.9 + cyan: 49 + white: 77.2 + brightBlack: 21.8 + brightRed: 62.2 + brightGreen: 60.3 + brightYellow: 52.8 + brightBlue: 64.9 + brightMagenta: 62.1 + brightCyan: 61.4 + brightWhite: 61.6 diff --git a/themes/zenbones-kanagawabones-dark-stark.yaml b/themes/zenbones-kanagawabones-dark-stark.yaml new file mode 100644 index 00000000..7c7703f5 --- /dev/null +++ b/themes/zenbones-kanagawabones-dark-stark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Kanagawabones Dark Stark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#181825" + fg: "#DDD8BB" + black: "#1F1F28" + red: "#E46A78" + green: "#98BC6D" + yellow: "#E5C283" + blue: "#7EB3C9" + magenta: "#957FB8" + cyan: "#7EB3C9" + white: "#DDD8BB" + brightBlack: "#3C3C51" + brightRed: "#EC818C" + brightGreen: "#9EC967" + brightYellow: "#F1C982" + brightBlue: "#7BC2DF" + brightMagenta: "#A98FD2" + brightCyan: "#7BC2DF" + brightWhite: "#A8A48D" +meta: + mode: "dark" + accent: "red" + hue: 284 + contrast: + fg: 81.2 + black: 0 + red: 42.2 + green: 58.7 + yellow: 71.3 + blue: 55.8 + magenta: 37.9 + cyan: 55.8 + white: 81.2 + brightBlack: 0 + brightRed: 50.3 + brightGreen: 64.9 + brightYellow: 76 + brightBlue: 63.1 + brightMagenta: 47 + brightCyan: 63.1 + brightWhite: 51.4 diff --git a/themes/zenbones-kanagawabones-dark-warm.yaml b/themes/zenbones-kanagawabones-dark-warm.yaml new file mode 100644 index 00000000..b382bf36 --- /dev/null +++ b/themes/zenbones-kanagawabones-dark-warm.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Kanagawabones Dark Warm" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#25252F" + fg: "#DDD8BB" + black: "#1F1F28" + red: "#E46A78" + green: "#98BC6D" + yellow: "#E5C283" + blue: "#7EB3C9" + magenta: "#957FB8" + cyan: "#7EB3C9" + white: "#DDD8BB" + brightBlack: "#3C3C51" + brightRed: "#EC818C" + brightGreen: "#9EC967" + brightYellow: "#F1C982" + brightBlue: "#7BC2DF" + brightMagenta: "#A98FD2" + brightCyan: "#7BC2DF" + brightWhite: "#A8A48D" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 79.4 + black: 0 + red: 40.4 + green: 56.9 + yellow: 69.5 + blue: 54 + magenta: 36.1 + cyan: 54 + white: 79.4 + brightBlack: 0 + brightRed: 48.5 + brightGreen: 63.1 + brightYellow: 74.2 + brightBlue: 61.3 + brightMagenta: 45.2 + brightCyan: 61.3 + brightWhite: 49.6 diff --git a/themes/zenbones-kanagawabones-dark.yaml b/themes/zenbones-kanagawabones-dark.yaml new file mode 100644 index 00000000..369250c8 --- /dev/null +++ b/themes/zenbones-kanagawabones-dark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Kanagawabones Dark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#1F1F28" + fg: "#DDD8BB" + black: "#1F1F28" + red: "#E46A78" + green: "#98BC6D" + yellow: "#E5C283" + blue: "#7EB3C9" + magenta: "#957FB8" + cyan: "#7EB3C9" + white: "#DDD8BB" + brightBlack: "#3C3C51" + brightRed: "#EC818C" + brightGreen: "#9EC967" + brightYellow: "#F1C982" + brightBlue: "#7BC2DF" + brightMagenta: "#A98FD2" + brightCyan: "#7BC2DF" + brightWhite: "#A8A48D" +meta: + mode: "dark" + accent: "red" + hue: 285 + contrast: + fg: 80.3 + black: 0 + red: 41.4 + green: 57.9 + yellow: 70.5 + blue: 55 + magenta: 37.1 + cyan: 55 + white: 80.3 + brightBlack: 0 + brightRed: 49.5 + brightGreen: 64.1 + brightYellow: 75.2 + brightBlue: 62.3 + brightMagenta: 46.2 + brightCyan: 62.3 + brightWhite: 50.6 diff --git a/themes/zenbones-light-bright.yaml b/themes/zenbones-light-bright.yaml new file mode 100644 index 00000000..8b4968e1 --- /dev/null +++ b/themes/zenbones-light-bright.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Light Bright" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#F8F6F5" + fg: "#2C363C" + black: "#F0EDEC" + red: "#A8334C" + green: "#4F6C31" + yellow: "#944927" + blue: "#286486" + magenta: "#88507D" + cyan: "#3B8992" + white: "#2C363C" + brightBlack: "#CFC1BA" + brightRed: "#94253E" + brightGreen: "#3F5A22" + brightYellow: "#803D1C" + brightBlue: "#1D5573" + brightMagenta: "#7B3B70" + brightCyan: "#2B747C" + brightWhite: "#4F5E68" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 93 + black: 0 + red: 76 + green: 74.6 + yellow: 76.5 + blue: 76.6 + magenta: 74.7 + cyan: 62.4 + white: 93 + brightBlack: 26.8 + brightRed: 81.7 + brightGreen: 81.8 + brightYellow: 82.3 + brightBlue: 82.6 + brightMagenta: 81.4 + brightCyan: 71.5 + brightWhite: 77.9 diff --git a/themes/zenbones-light-dim.yaml b/themes/zenbones-light-dim.yaml new file mode 100644 index 00000000..ad67f516 --- /dev/null +++ b/themes/zenbones-light-dim.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Light Dim" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#E8E4E3" + fg: "#2C363C" + black: "#F0EDEC" + red: "#A8334C" + green: "#4F6C31" + yellow: "#944927" + blue: "#286486" + magenta: "#88507D" + cyan: "#3B8992" + white: "#2C363C" + brightBlack: "#CFC1BA" + brightRed: "#94253E" + brightGreen: "#3F5A22" + brightYellow: "#803D1C" + brightBlue: "#1D5573" + brightMagenta: "#7B3B70" + brightCyan: "#2B747C" + brightWhite: "#4F5E68" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 82.7 + black: 0 + red: 65.7 + green: 64.3 + yellow: 66.2 + blue: 66.3 + magenta: 64.4 + cyan: 52.1 + white: 82.7 + brightBlack: 16.5 + brightRed: 71.4 + brightGreen: 71.5 + brightYellow: 72 + brightBlue: 72.2 + brightMagenta: 71.1 + brightCyan: 61.2 + brightWhite: 67.6 diff --git a/themes/zenbones-light.yaml b/themes/zenbones-light.yaml new file mode 100644 index 00000000..22048ddd --- /dev/null +++ b/themes/zenbones-light.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Light" +source: + marketplace_id: "vinitkme.zenbones-redux" + version: "1.0.1" + installs: 9 + author: "Gotchacode" + repo: "https://github.com/vinitkumar/zenbones" + url: "https://marketplace.visualstudio.com/items?itemName=vinitkme.zenbones-redux" +colors: + bg: "#F0EDEC" + fg: "#2C363C" + black: "#2C363C" + red: "#A8334C" + green: "#4F6C31" + yellow: "#944927" + blue: "#286486" + magenta: "#88507D" + cyan: "#3B8992" + white: "#F0EDEC" + brightBlack: "#9B948F" + brightRed: "#94253E" + brightGreen: "#3F5A22" + brightYellow: "#803D1C" + brightBlue: "#1D5573" + brightMagenta: "#7B3B70" + brightCyan: "#2B747C" + brightWhite: "#DEDAD8" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 87.8 + black: 87.8 + red: 70.8 + green: 69.4 + yellow: 71.3 + blue: 71.4 + magenta: 69.5 + cyan: 57.2 + white: 0 + brightBlack: 46.2 + brightRed: 76.5 + brightGreen: 76.6 + brightYellow: 77.1 + brightBlue: 77.4 + brightMagenta: 76.3 + brightCyan: 66.3 + brightWhite: 8.5 diff --git a/themes/zenbones-neobones-dark-stark.yaml b/themes/zenbones-neobones-dark-stark.yaml new file mode 100644 index 00000000..0e30a087 --- /dev/null +++ b/themes/zenbones-neobones-dark-stark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Neobones Dark Stark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#091217" + fg: "#C6D5CF" + black: "#0F191F" + red: "#DE6E7C" + green: "#90FF6B" + yellow: "#B77E64" + blue: "#8190D4" + magenta: "#B279A7" + cyan: "#66A5AD" + white: "#C6D5CF" + brightBlack: "#263945" + brightRed: "#E8838F" + brightGreen: "#A0FF85" + brightYellow: "#D68C67" + brightBlue: "#92A0E2" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#98A39E" +meta: + mode: "dark" + accent: "green" + hue: 233 + contrast: + fg: 78.5 + black: 0 + red: 42.9 + green: 90.9 + yellow: 39.9 + blue: 43.9 + magenta: 39.9 + cyan: 47.8 + white: 78.5 + brightBlack: 0 + brightRed: 50.9 + brightGreen: 92.6 + brightYellow: 49.3 + brightBlue: 52.1 + brightMagenta: 49.5 + brightCyan: 56.6 + brightWhite: 50.6 diff --git a/themes/zenbones-neobones-dark-warm.yaml b/themes/zenbones-neobones-dark-warm.yaml new file mode 100644 index 00000000..f6ee8bf2 --- /dev/null +++ b/themes/zenbones-neobones-dark-warm.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Neobones Dark Warm" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#151F25" + fg: "#C6D5CF" + black: "#0F191F" + red: "#DE6E7C" + green: "#90FF6B" + yellow: "#B77E64" + blue: "#8190D4" + magenta: "#B279A7" + cyan: "#66A5AD" + white: "#C6D5CF" + brightBlack: "#263945" + brightRed: "#E8838F" + brightGreen: "#A0FF85" + brightYellow: "#D68C67" + brightBlue: "#92A0E2" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#98A39E" +meta: + mode: "dark" + accent: "green" + hue: 235 + contrast: + fg: 77.2 + black: 0 + red: 41.6 + green: 89.6 + yellow: 38.5 + blue: 42.6 + magenta: 38.6 + cyan: 46.5 + white: 77.2 + brightBlack: 0 + brightRed: 49.6 + brightGreen: 91.3 + brightYellow: 48 + brightBlue: 50.8 + brightMagenta: 48.2 + brightCyan: 55.3 + brightWhite: 49.3 diff --git a/themes/zenbones-neobones-dark.yaml b/themes/zenbones-neobones-dark.yaml new file mode 100644 index 00000000..19a6101b --- /dev/null +++ b/themes/zenbones-neobones-dark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Neobones Dark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#0F191F" + fg: "#C6D5CF" + black: "#0F191F" + red: "#DE6E7C" + green: "#90FF6B" + yellow: "#B77E64" + blue: "#8190D4" + magenta: "#B279A7" + cyan: "#66A5AD" + white: "#C6D5CF" + brightBlack: "#263945" + brightRed: "#E8838F" + brightGreen: "#A0FF85" + brightYellow: "#D68C67" + brightBlue: "#92A0E2" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#98A39E" +meta: + mode: "dark" + accent: "green" + hue: 235 + contrast: + fg: 77.9 + black: 0 + red: 42.3 + green: 90.4 + yellow: 39.3 + blue: 43.3 + magenta: 39.3 + cyan: 47.2 + white: 77.9 + brightBlack: 0 + brightRed: 50.3 + brightGreen: 92 + brightYellow: 48.7 + brightBlue: 51.5 + brightMagenta: 48.9 + brightCyan: 56 + brightWhite: 50 diff --git a/themes/zenbones-neobones-light-bright.yaml b/themes/zenbones-neobones-light-bright.yaml new file mode 100644 index 00000000..60935cbf --- /dev/null +++ b/themes/zenbones-neobones-light-bright.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Neobones Light Bright" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#EFF5F0" + fg: "#202E18" + black: "#E5EDE6" + red: "#A8334C" + green: "#567A30" + yellow: "#944927" + blue: "#286486" + magenta: "#88507D" + cyan: "#3B8992" + white: "#202E18" + brightBlack: "#B3C6B6" + brightRed: "#94253E" + brightGreen: "#3F5A22" + brightYellow: "#803D1C" + brightBlue: "#1D5573" + brightMagenta: "#7B3B70" + brightCyan: "#2B747C" + brightWhite: "#415934" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 94.1 + black: 0 + red: 74.2 + green: 67.4 + yellow: 74.8 + blue: 74.8 + magenta: 72.9 + cyan: 60.6 + white: 94.1 + brightBlack: 26.5 + brightRed: 80 + brightGreen: 80 + brightYellow: 80.6 + brightBlue: 80.8 + brightMagenta: 79.7 + brightCyan: 69.7 + brightWhite: 80 diff --git a/themes/zenbones-neobones-light-dim.yaml b/themes/zenbones-neobones-light-dim.yaml new file mode 100644 index 00000000..4dbf06ee --- /dev/null +++ b/themes/zenbones-neobones-light-dim.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Neobones Light Dim" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#DBE5DC" + fg: "#202E18" + black: "#E5EDE6" + red: "#A8334C" + green: "#567A30" + yellow: "#944927" + blue: "#286486" + magenta: "#88507D" + cyan: "#3B8992" + white: "#202E18" + brightBlack: "#B3C6B6" + brightRed: "#94253E" + brightGreen: "#3F5A22" + brightYellow: "#803D1C" + brightBlue: "#1D5573" + brightMagenta: "#7B3B70" + brightCyan: "#2B747C" + brightWhite: "#415934" +meta: + mode: "light" + accent: "red" + hue: 148 + contrast: + fg: 84.1 + black: 0 + red: 64.2 + green: 57.4 + yellow: 64.8 + blue: 64.9 + magenta: 63 + cyan: 50.6 + white: 84.1 + brightBlack: 16.5 + brightRed: 70 + brightGreen: 70 + brightYellow: 70.6 + brightBlue: 70.8 + brightMagenta: 69.7 + brightCyan: 59.7 + brightWhite: 70 diff --git a/themes/zenbones-neobones-light.yaml b/themes/zenbones-neobones-light.yaml new file mode 100644 index 00000000..5952f6fd --- /dev/null +++ b/themes/zenbones-neobones-light.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Neobones Light" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#E5EDE6" + fg: "#202E18" + black: "#E5EDE6" + red: "#A8334C" + green: "#567A30" + yellow: "#944927" + blue: "#286486" + magenta: "#88507D" + cyan: "#3B8992" + white: "#202E18" + brightBlack: "#B3C6B6" + brightRed: "#94253E" + brightGreen: "#3F5A22" + brightYellow: "#803D1C" + brightBlue: "#1D5573" + brightMagenta: "#7B3B70" + brightCyan: "#2B747C" + brightWhite: "#415934" +meta: + mode: "light" + accent: "red" + hue: 149 + contrast: + fg: 89.1 + black: 0 + red: 69.2 + green: 62.4 + yellow: 69.7 + blue: 69.8 + magenta: 67.9 + cyan: 55.6 + white: 89.1 + brightBlack: 21.4 + brightRed: 74.9 + brightGreen: 75 + brightYellow: 75.5 + brightBlue: 75.8 + brightMagenta: 74.7 + brightCyan: 64.7 + brightWhite: 75 diff --git a/themes/zenbones-nordbones-dark-stark.yaml b/themes/zenbones-nordbones-dark-stark.yaml new file mode 100644 index 00000000..b96cee3b --- /dev/null +++ b/themes/zenbones-nordbones-dark-stark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Nordbones Dark Stark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#272E3C" + fg: "#EBEEF3" + black: "#2F3541" + red: "#C1616A" + green: "#A4BE8D" + yellow: "#CF866F" + blue: "#8FBCBA" + magenta: "#B38DAC" + cyan: "#87BFCE" + white: "#EBEEF3" + brightBlack: "#475063" + brightRed: "#D6787F" + brightGreen: "#A8CC86" + brightYellow: "#E09680" + brightBlue: "#89CAC8" + brightMagenta: "#CF97C5" + brightCyan: "#82CCE0" + brightWhite: "#A5B4CD" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 91.9 + black: 0 + red: 29.7 + green: 58.2 + yellow: 42.3 + blue: 56.9 + magenta: 42.3 + cyan: 58.4 + white: 91.9 + brightBlack: 9.5 + brightRed: 39.9 + brightGreen: 64.5 + brightYellow: 50.8 + brightBlue: 63.1 + brightMagenta: 50.9 + brightCyan: 64.7 + brightWhite: 56.6 diff --git a/themes/zenbones-nordbones-dark-warm.yaml b/themes/zenbones-nordbones-dark-warm.yaml new file mode 100644 index 00000000..8656bd8a --- /dev/null +++ b/themes/zenbones-nordbones-dark-warm.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Nordbones Dark Warm" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#363B47" + fg: "#EBEEF3" + black: "#2F3541" + red: "#C1616A" + green: "#A4BE8D" + yellow: "#CF866F" + blue: "#8FBCBA" + magenta: "#B38DAC" + cyan: "#87BFCE" + white: "#EBEEF3" + brightBlack: "#475063" + brightRed: "#D6787F" + brightGreen: "#A8CC86" + brightYellow: "#E09680" + brightBlue: "#89CAC8" + brightMagenta: "#CF97C5" + brightCyan: "#82CCE0" + brightWhite: "#A5B4CD" +meta: + mode: "dark" + accent: "orange" + hue: 267 + contrast: + fg: 88.4 + black: 0 + red: 26.1 + green: 54.6 + yellow: 38.8 + blue: 53.3 + magenta: 38.8 + cyan: 54.9 + white: 88.4 + brightBlack: 0 + brightRed: 36.3 + brightGreen: 61 + brightYellow: 47.2 + brightBlue: 59.6 + brightMagenta: 47.3 + brightCyan: 61.1 + brightWhite: 53 diff --git a/themes/zenbones-nordbones-dark.yaml b/themes/zenbones-nordbones-dark.yaml new file mode 100644 index 00000000..93488879 --- /dev/null +++ b/themes/zenbones-nordbones-dark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Nordbones Dark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#2F3541" + fg: "#EBEEF3" + black: "#2F3541" + red: "#C1616A" + green: "#A4BE8D" + yellow: "#CF866F" + blue: "#8FBCBA" + magenta: "#B38DAC" + cyan: "#87BFCE" + white: "#EBEEF3" + brightBlack: "#475063" + brightRed: "#D6787F" + brightGreen: "#A8CC86" + brightYellow: "#E09680" + brightBlue: "#89CAC8" + brightMagenta: "#CF97C5" + brightCyan: "#82CCE0" + brightWhite: "#A5B4CD" +meta: + mode: "dark" + accent: "orange" + hue: 264 + contrast: + fg: 90.2 + black: 0 + red: 28 + green: 56.4 + yellow: 40.6 + blue: 55.2 + magenta: 40.6 + cyan: 56.7 + white: 90.2 + brightBlack: 7.8 + brightRed: 38.2 + brightGreen: 62.8 + brightYellow: 49 + brightBlue: 61.4 + brightMagenta: 49.2 + brightCyan: 62.9 + brightWhite: 54.8 diff --git a/themes/zenbones-rosebones-dark-stark.yaml b/themes/zenbones-rosebones-dark-stark.yaml new file mode 100644 index 00000000..1c5d0e83 --- /dev/null +++ b/themes/zenbones-rosebones-dark-stark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Rosebones Dark Stark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#141120" + fg: "#E1D4D4" + black: "#1A1825" + red: "#EB7193" + green: "#317490" + yellow: "#F6C074" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#9CCFD8" + white: "#E1D4D4" + brightBlack: "#3A3651" + brightRed: "#F289A4" + brightGreen: "#358DAF" + brightYellow: "#F9CA8E" + brightBlue: "#94DAE6" + brightMagenta: "#CEB3EF" + brightCyan: "#94DAE6" + brightWhite: "#BF9B99" +meta: + mode: "dark" + accent: "red" + hue: 292 + contrast: + fg: 81.6 + black: 0 + red: 46.7 + green: 25.4 + yellow: 73.5 + blue: 71.7 + magenta: 60.7 + cyan: 71.7 + white: 81.6 + brightBlack: 0 + brightRed: 55.1 + brightGreen: 36.1 + brightYellow: 78.6 + brightBlue: 76.7 + brightMagenta: 66.9 + brightCyan: 76.7 + brightWhite: 52 diff --git a/themes/zenbones-rosebones-dark-warm.yaml b/themes/zenbones-rosebones-dark-warm.yaml new file mode 100644 index 00000000..f6d369f3 --- /dev/null +++ b/themes/zenbones-rosebones-dark-warm.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Rosebones Dark Warm" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#232137" + fg: "#E1D4D4" + black: "#1A1825" + red: "#EB7193" + green: "#317490" + yellow: "#F6C074" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#9CCFD8" + white: "#E1D4D4" + brightBlack: "#3A3651" + brightRed: "#F289A4" + brightGreen: "#358DAF" + brightYellow: "#F9CA8E" + brightBlue: "#94DAE6" + brightMagenta: "#CEB3EF" + brightCyan: "#94DAE6" + brightWhite: "#BF9B99" +meta: + mode: "dark" + accent: "red" + hue: 287 + contrast: + fg: 79.5 + black: 0 + red: 44.7 + green: 23.4 + yellow: 71.5 + blue: 69.7 + magenta: 58.6 + cyan: 69.7 + white: 79.5 + brightBlack: 0 + brightRed: 53.1 + brightGreen: 34.1 + brightYellow: 76.6 + brightBlue: 74.7 + brightMagenta: 64.9 + brightCyan: 74.7 + brightWhite: 50 diff --git a/themes/zenbones-rosebones-dark.yaml b/themes/zenbones-rosebones-dark.yaml new file mode 100644 index 00000000..887b2290 --- /dev/null +++ b/themes/zenbones-rosebones-dark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Rosebones Dark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#1A1825" + fg: "#E1D4D4" + black: "#1A1825" + red: "#EB7193" + green: "#317490" + yellow: "#F6C074" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#9CCFD8" + white: "#E1D4D4" + brightBlack: "#3A3651" + brightRed: "#F289A4" + brightGreen: "#358DAF" + brightYellow: "#F9CA8E" + brightBlue: "#94DAE6" + brightMagenta: "#CEB3EF" + brightCyan: "#94DAE6" + brightWhite: "#BF9B99" +meta: + mode: "dark" + accent: "red" + hue: 291 + contrast: + fg: 80.9 + black: 0 + red: 46.1 + green: 24.8 + yellow: 72.9 + blue: 71 + magenta: 60 + cyan: 71 + white: 80.9 + brightBlack: 0 + brightRed: 54.5 + brightGreen: 35.5 + brightYellow: 78 + brightBlue: 76.1 + brightMagenta: 66.3 + brightCyan: 76.1 + brightWhite: 51.4 diff --git a/themes/zenbones-rosebones-light-bright.yaml b/themes/zenbones-rosebones-light-bright.yaml new file mode 100644 index 00000000..27b5edf5 --- /dev/null +++ b/themes/zenbones-rosebones-light-bright.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Rosebones Light Bright" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#FFFFFF" + fg: "#724341" + black: "#FBF6F0" + red: "#B5637A" + green: "#286A84" + yellow: "#EC9D33" + blue: "#5795A0" + magenta: "#917BA9" + cyan: "#5795A0" + white: "#724341" + brightBlack: "#E8C48B" + brightRed: "#A54A66" + brightGreen: "#1C5970" + brightYellow: "#C68223" + brightBlue: "#407D88" + brightMagenta: "#855AAC" + brightCyan: "#407D88" + brightWhite: "#A4635F" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 87.8 + black: 0 + red: 68.5 + green: 79.9 + yellow: 43.5 + blue: 61.2 + magenta: 65 + cyan: 61.2 + white: 87.8 + brightBlack: 28.8 + brightRed: 77.3 + brightGreen: 86.6 + brightYellow: 58.6 + brightBlue: 72.2 + brightMagenta: 75.5 + brightCyan: 72.2 + brightWhite: 72 diff --git a/themes/zenbones-rosebones-light-dim.yaml b/themes/zenbones-rosebones-light-dim.yaml new file mode 100644 index 00000000..ff5ff437 --- /dev/null +++ b/themes/zenbones-rosebones-light-dim.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Rosebones Light Dim" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#F6ECE1" + fg: "#724341" + black: "#FBF6F0" + red: "#B5637A" + green: "#286A84" + yellow: "#EC9D33" + blue: "#5795A0" + magenta: "#917BA9" + cyan: "#5795A0" + white: "#724341" + brightBlack: "#E8C48B" + brightRed: "#A54A66" + brightGreen: "#1C5970" + brightYellow: "#C68223" + brightBlue: "#407D88" + brightMagenta: "#855AAC" + brightCyan: "#407D88" + brightWhite: "#A4635F" +meta: + mode: "light" + accent: "yellow" + hue: 70 + contrast: + fg: 77.4 + black: 0 + red: 58 + green: 69.4 + yellow: 33.1 + blue: 50.7 + magenta: 54.5 + cyan: 50.7 + white: 77.4 + brightBlack: 18.4 + brightRed: 66.9 + brightGreen: 76.2 + brightYellow: 48.1 + brightBlue: 61.8 + brightMagenta: 65 + brightCyan: 61.8 + brightWhite: 61.6 diff --git a/themes/zenbones-rosebones-light.yaml b/themes/zenbones-rosebones-light.yaml new file mode 100644 index 00000000..a9345226 --- /dev/null +++ b/themes/zenbones-rosebones-light.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Rosebones Light" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#FBF6F0" + fg: "#724341" + black: "#FBF6F0" + red: "#B5637A" + green: "#286A84" + yellow: "#EC9D33" + blue: "#5795A0" + magenta: "#917BA9" + cyan: "#5795A0" + white: "#724341" + brightBlack: "#E8C48B" + brightRed: "#A54A66" + brightGreen: "#1C5970" + brightYellow: "#C68223" + brightBlue: "#407D88" + brightMagenta: "#855AAC" + brightCyan: "#407D88" + brightWhite: "#A4635F" +meta: + mode: "light" + accent: "yellow" + hue: null + contrast: + fg: 82.9 + black: 0 + red: 63.5 + green: 74.9 + yellow: 38.6 + blue: 56.2 + magenta: 60 + cyan: 56.2 + white: 82.9 + brightBlack: 23.8 + brightRed: 72.3 + brightGreen: 81.6 + brightYellow: 53.6 + brightBlue: 67.2 + brightMagenta: 70.5 + brightCyan: 67.2 + brightWhite: 67 diff --git a/themes/zenbones-seoulbones-dark-stark.yaml b/themes/zenbones-seoulbones-dark-stark.yaml new file mode 100644 index 00000000..d26c001c --- /dev/null +++ b/themes/zenbones-seoulbones-dark-stark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Seoulbones Dark Stark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#4D4244" + fg: "#DDDDDD" + black: "#4B4B4B" + red: "#E388A3" + green: "#98BD99" + yellow: "#FFDF9B" + blue: "#97BDDE" + magenta: "#A5A6C5" + cyan: "#6FBDBE" + white: "#DDDDDD" + brightBlack: "#6C6465" + brightRed: "#EB99B1" + brightGreen: "#8FCD92" + brightYellow: "#FFE5B3" + brightBlue: "#A2C8E9" + brightMagenta: "#B2B3DA" + brightCyan: "#6BCACB" + brightWhite: "#A8A8A8" +meta: + mode: "dark" + accent: "red" + hue: 5 + contrast: + fg: 74.7 + black: 0 + red: 41.4 + green: 50.2 + yellow: 78.2 + blue: 53.1 + magenta: 44 + cyan: 48.5 + white: 74.7 + brightBlack: 11.7 + brightRed: 48.6 + brightGreen: 56.3 + brightYellow: 81.5 + brightBlue: 59.4 + brightMagenta: 51.6 + brightCyan: 54.6 + brightWhite: 43.8 diff --git a/themes/zenbones-seoulbones-dark-warm.yaml b/themes/zenbones-seoulbones-dark-warm.yaml new file mode 100644 index 00000000..37f2c491 --- /dev/null +++ b/themes/zenbones-seoulbones-dark-warm.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Seoulbones Dark Warm" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#525252" + fg: "#DDDDDD" + black: "#4B4B4B" + red: "#E388A3" + green: "#98BD99" + yellow: "#FFDF9B" + blue: "#97BDDE" + magenta: "#A5A6C5" + cyan: "#6FBDBE" + white: "#DDDDDD" + brightBlack: "#6C6465" + brightRed: "#EB99B1" + brightGreen: "#8FCD92" + brightYellow: "#FFE5B3" + brightBlue: "#A2C8E9" + brightMagenta: "#B2B3DA" + brightCyan: "#6BCACB" + brightWhite: "#A8A8A8" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 70 + black: 0 + red: 36.7 + green: 45.5 + yellow: 73.5 + blue: 48.4 + magenta: 39.3 + cyan: 43.8 + white: 70 + brightBlack: 0 + brightRed: 43.9 + brightGreen: 51.6 + brightYellow: 76.8 + brightBlue: 54.7 + brightMagenta: 46.9 + brightCyan: 49.9 + brightWhite: 39.1 diff --git a/themes/zenbones-seoulbones-dark.yaml b/themes/zenbones-seoulbones-dark.yaml new file mode 100644 index 00000000..2dc71c8f --- /dev/null +++ b/themes/zenbones-seoulbones-dark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Seoulbones Dark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#4B4B4B" + fg: "#DDDDDD" + black: "#4B4B4B" + red: "#E388A3" + green: "#98BD99" + yellow: "#FFDF9B" + blue: "#97BDDE" + magenta: "#A5A6C5" + cyan: "#6FBDBE" + white: "#DDDDDD" + brightBlack: "#6C6465" + brightRed: "#EB99B1" + brightGreen: "#8FCD92" + brightYellow: "#FFE5B3" + brightBlue: "#A2C8E9" + brightMagenta: "#B2B3DA" + brightCyan: "#6BCACB" + brightWhite: "#A8A8A8" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 72.5 + black: 0 + red: 39.2 + green: 48.1 + yellow: 76 + blue: 50.9 + magenta: 41.8 + cyan: 46.3 + white: 72.5 + brightBlack: 9.5 + brightRed: 46.5 + brightGreen: 54.2 + brightYellow: 79.4 + brightBlue: 57.2 + brightMagenta: 49.4 + brightCyan: 52.4 + brightWhite: 41.7 diff --git a/themes/zenbones-seoulbones-light-bright.yaml b/themes/zenbones-seoulbones-light-bright.yaml new file mode 100644 index 00000000..bbe590c7 --- /dev/null +++ b/themes/zenbones-seoulbones-light-bright.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Seoulbones Light Bright" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#ECEAEB" + fg: "#555555" + black: "#E2E2E2" + red: "#DC5284" + green: "#628562" + yellow: "#C48562" + blue: "#0084A3" + magenta: "#896788" + cyan: "#008586" + white: "#555555" + brightBlack: "#BFBABB" + brightRed: "#BE3C6D" + brightGreen: "#487249" + brightYellow: "#A76B48" + brightBlue: "#006F89" + brightMagenta: "#7F4C7E" + brightCyan: "#006F70" + brightWhite: "#777777" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 73.8 + black: 0 + red: 52.2 + green: 56.4 + yellow: 45.1 + blue: 57.4 + magenta: 61.2 + cyan: 58.3 + white: 73.8 + brightBlack: 24.5 + brightRed: 62.5 + brightGreen: 65.5 + brightYellow: 57.7 + brightBlue: 66.2 + brightMagenta: 69.8 + brightCyan: 67.2 + brightWhite: 59 diff --git a/themes/zenbones-seoulbones-light-dim.yaml b/themes/zenbones-seoulbones-light-dim.yaml new file mode 100644 index 00000000..39c640c1 --- /dev/null +++ b/themes/zenbones-seoulbones-light-dim.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Seoulbones Light Dim" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#DADADA" + fg: "#555555" + black: "#E2E2E2" + red: "#DC5284" + green: "#628562" + yellow: "#C48562" + blue: "#0084A3" + magenta: "#896788" + cyan: "#008586" + white: "#555555" + brightBlack: "#BFBABB" + brightRed: "#BE3C6D" + brightGreen: "#487249" + brightYellow: "#A76B48" + brightBlue: "#006F89" + brightMagenta: "#7F4C7E" + brightCyan: "#006F70" + brightWhite: "#777777" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 64.3 + black: 0 + red: 42.7 + green: 46.9 + yellow: 35.6 + blue: 47.9 + magenta: 51.7 + cyan: 48.8 + white: 64.3 + brightBlack: 15 + brightRed: 53 + brightGreen: 56 + brightYellow: 48.2 + brightBlue: 56.7 + brightMagenta: 60.3 + brightCyan: 57.7 + brightWhite: 49.5 diff --git a/themes/zenbones-seoulbones-light.yaml b/themes/zenbones-seoulbones-light.yaml new file mode 100644 index 00000000..be2f8f38 --- /dev/null +++ b/themes/zenbones-seoulbones-light.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Seoulbones Light" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#E2E2E2" + fg: "#555555" + black: "#E2E2E2" + red: "#DC5284" + green: "#628562" + yellow: "#C48562" + blue: "#0084A3" + magenta: "#896788" + cyan: "#008586" + white: "#555555" + brightBlack: "#BFBABB" + brightRed: "#BE3C6D" + brightGreen: "#487249" + brightYellow: "#A76B48" + brightBlue: "#006F89" + brightMagenta: "#7F4C7E" + brightCyan: "#006F70" + brightWhite: "#777777" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 68.9 + black: 0 + red: 47.3 + green: 51.5 + yellow: 40.1 + blue: 52.4 + magenta: 56.3 + cyan: 53.4 + white: 68.9 + brightBlack: 19.6 + brightRed: 57.6 + brightGreen: 60.6 + brightYellow: 52.8 + brightBlue: 61.3 + brightMagenta: 64.9 + brightCyan: 62.3 + brightWhite: 54 diff --git a/themes/zenbones-tokyobones-dark-stark.yaml b/themes/zenbones-tokyobones-dark-stark.yaml new file mode 100644 index 00000000..10939095 --- /dev/null +++ b/themes/zenbones-tokyobones-dark-stark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Tokyobones Dark Stark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#131521" + fg: "#C0CAF5" + black: "#1A1B26" + red: "#F77890" + green: "#74DBCB" + yellow: "#E1B068" + blue: "#7BA2F7" + magenta: "#BB9BF7" + cyan: "#2BC4DE" + white: "#C0CAF5" + brightBlack: "#36384D" + brightRed: "#F98EA0" + brightGreen: "#6DE5D3" + brightYellow: "#F2BA64" + brightBlue: "#90AFFA" + brightMagenta: "#C6ACFA" + brightCyan: "#74DBCB" + brightWhite: "#7E98EB" +meta: + mode: "dark" + accent: "red" + hue: 277 + contrast: + fg: 74.5 + black: 0 + red: 50.6 + green: 73.5 + yellow: 63.4 + blue: 51.9 + magenta: 56 + cyan: 61 + white: 74.5 + brightBlack: 0 + brightRed: 57.6 + brightGreen: 78.2 + brightYellow: 69.9 + brightBlue: 58.8 + brightMagenta: 63.7 + brightCyan: 73.5 + brightWhite: 47.6 diff --git a/themes/zenbones-tokyobones-dark-warm.yaml b/themes/zenbones-tokyobones-dark-warm.yaml new file mode 100644 index 00000000..9dded78d --- /dev/null +++ b/themes/zenbones-tokyobones-dark-warm.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Tokyobones Dark Warm" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#25293C" + fg: "#C0CAF5" + black: "#1A1B26" + red: "#F77890" + green: "#74DBCB" + yellow: "#E1B068" + blue: "#7BA2F7" + magenta: "#BB9BF7" + cyan: "#2BC4DE" + white: "#C0CAF5" + brightBlack: "#36384D" + brightRed: "#F98EA0" + brightGreen: "#6DE5D3" + brightYellow: "#F2BA64" + brightBlue: "#90AFFA" + brightMagenta: "#C6ACFA" + brightCyan: "#74DBCB" + brightWhite: "#7E98EB" +meta: + mode: "dark" + accent: "red" + hue: 275 + contrast: + fg: 71.5 + black: 0 + red: 47.6 + green: 70.5 + yellow: 60.4 + blue: 48.9 + magenta: 53.1 + cyan: 58.1 + white: 71.5 + brightBlack: 0 + brightRed: 54.6 + brightGreen: 75.3 + brightYellow: 67 + brightBlue: 55.9 + brightMagenta: 60.7 + brightCyan: 70.5 + brightWhite: 44.7 diff --git a/themes/zenbones-tokyobones-dark.yaml b/themes/zenbones-tokyobones-dark.yaml new file mode 100644 index 00000000..bd606427 --- /dev/null +++ b/themes/zenbones-tokyobones-dark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Tokyobones Dark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#1A1B26" + red: "#F77890" + green: "#74DBCB" + yellow: "#E1B068" + blue: "#7BA2F7" + magenta: "#BB9BF7" + cyan: "#2BC4DE" + white: "#C0CAF5" + brightBlack: "#36384D" + brightRed: "#F98EA0" + brightGreen: "#6DE5D3" + brightYellow: "#F2BA64" + brightBlue: "#90AFFA" + brightMagenta: "#C6ACFA" + brightCyan: "#74DBCB" + brightWhite: "#7E98EB" +meta: + mode: "dark" + accent: "red" + hue: 280 + contrast: + fg: 73.8 + black: 0 + red: 49.9 + green: 72.8 + yellow: 62.7 + blue: 51.2 + magenta: 55.3 + cyan: 60.4 + white: 73.8 + brightBlack: 0 + brightRed: 56.9 + brightGreen: 77.6 + brightYellow: 69.3 + brightBlue: 58.2 + brightMagenta: 63 + brightCyan: 72.8 + brightWhite: 46.9 diff --git a/themes/zenbones-tokyobones-light-bright.yaml b/themes/zenbones-tokyobones-light-bright.yaml new file mode 100644 index 00000000..aaf921a3 --- /dev/null +++ b/themes/zenbones-tokyobones-light-bright.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Tokyobones Light Bright" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#DEDFE5" + fg: "#333A57" + black: "#D6D7DC" + red: "#8B4351" + green: "#34645D" + yellow: "#8F5E14" + blue: "#34548C" + magenta: "#5A4A79" + cyan: "#176775" + white: "#333A57" + brightBlack: "#ADB0BD" + brightRed: "#7E3242" + brightGreen: "#26554F" + brightYellow: "#794E0D" + brightBlue: "#26467A" + brightMagenta: "#503875" + brightCyan: "#34645D" + brightWhite: "#56618D" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 77.1 + black: 0 + red: 65 + green: 64.3 + yellow: 58.8 + blue: 67.3 + magenta: 68.4 + cyan: 63.2 + white: 77.1 + brightBlack: 23.8 + brightRed: 70.5 + brightGreen: 70.2 + brightYellow: 66.1 + brightBlue: 72.8 + brightMagenta: 73.6 + brightCyan: 64.3 + brightWhite: 61.4 diff --git a/themes/zenbones-tokyobones-light-dim.yaml b/themes/zenbones-tokyobones-light-dim.yaml new file mode 100644 index 00000000..b37fa48e --- /dev/null +++ b/themes/zenbones-tokyobones-light-dim.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Tokyobones Light Dim" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#CDCFD4" + fg: "#333A57" + black: "#D6D7DC" + red: "#8B4351" + green: "#34645D" + yellow: "#8F5E14" + blue: "#34548C" + magenta: "#5A4A79" + cyan: "#176775" + white: "#333A57" + brightBlack: "#ADB0BD" + brightRed: "#7E3242" + brightGreen: "#26554F" + brightYellow: "#794E0D" + brightBlue: "#26467A" + brightMagenta: "#503875" + brightCyan: "#34645D" + brightWhite: "#56618D" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 67.8 + black: 0 + red: 55.8 + green: 55.1 + yellow: 49.6 + blue: 58 + magenta: 59.1 + cyan: 54 + white: 67.8 + brightBlack: 14.6 + brightRed: 61.3 + brightGreen: 61 + brightYellow: 56.9 + brightBlue: 63.5 + brightMagenta: 64.4 + brightCyan: 55.1 + brightWhite: 52.1 diff --git a/themes/zenbones-tokyobones-light.yaml b/themes/zenbones-tokyobones-light.yaml new file mode 100644 index 00000000..1982d32f --- /dev/null +++ b/themes/zenbones-tokyobones-light.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Tokyobones Light" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#D6D7DC" + fg: "#333A57" + black: "#D6D7DC" + red: "#8B4351" + green: "#34645D" + yellow: "#8F5E14" + blue: "#34548C" + magenta: "#5A4A79" + cyan: "#176775" + white: "#333A57" + brightBlack: "#ADB0BD" + brightRed: "#7E3242" + brightGreen: "#26554F" + brightYellow: "#794E0D" + brightBlue: "#26467A" + brightMagenta: "#503875" + brightCyan: "#34645D" + brightWhite: "#56618D" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 72.5 + black: 0 + red: 60.4 + green: 59.7 + yellow: 54.2 + blue: 62.7 + magenta: 63.8 + cyan: 58.6 + white: 72.5 + brightBlack: 19.2 + brightRed: 65.9 + brightGreen: 65.6 + brightYellow: 61.5 + brightBlue: 68.2 + brightMagenta: 69 + brightCyan: 59.7 + brightWhite: 56.8 diff --git a/themes/zenbones-vimbones-light-bright.yaml b/themes/zenbones-vimbones-light-bright.yaml new file mode 100644 index 00000000..6f0456b6 --- /dev/null +++ b/themes/zenbones-vimbones-light-bright.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Vimbones Light Bright" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#F9F9CC" + fg: "#353535" + black: "#F0F0CA" + red: "#A8334C" + green: "#4F6C31" + yellow: "#944927" + blue: "#286486" + magenta: "#88507D" + cyan: "#3B8992" + white: "#353535" + brightBlack: "#C6C6A3" + brightRed: "#94253E" + brightGreen: "#3F5A22" + brightYellow: "#803D1C" + brightBlue: "#1D5573" + brightMagenta: "#7B3B70" + brightCyan: "#2B747C" + brightWhite: "#5C5C5C" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 92.7 + black: 0 + red: 75.8 + green: 74.4 + yellow: 76.4 + blue: 76.5 + magenta: 74.6 + cyan: 62.3 + white: 92.7 + brightBlack: 26.6 + brightRed: 81.6 + brightGreen: 81.6 + brightYellow: 82.2 + brightBlue: 82.4 + brightMagenta: 81.3 + brightCyan: 71.4 + brightWhite: 77.7 diff --git a/themes/zenbones-vimbones-light-dim.yaml b/themes/zenbones-vimbones-light-dim.yaml new file mode 100644 index 00000000..5eb3c8f6 --- /dev/null +++ b/themes/zenbones-vimbones-light-dim.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Vimbones Light Dim" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#E7E7C7" + fg: "#353535" + black: "#F0F0CA" + red: "#A8334C" + green: "#4F6C31" + yellow: "#944927" + blue: "#286486" + magenta: "#88507D" + cyan: "#3B8992" + white: "#353535" + brightBlack: "#C6C6A3" + brightRed: "#94253E" + brightGreen: "#3F5A22" + brightYellow: "#803D1C" + brightBlue: "#1D5573" + brightMagenta: "#7B3B70" + brightCyan: "#2B747C" + brightWhite: "#5C5C5C" +meta: + mode: "light" + accent: "red" + hue: 107 + contrast: + fg: 82.6 + black: 0 + red: 65.7 + green: 64.3 + yellow: 66.3 + blue: 66.4 + magenta: 64.5 + cyan: 52.2 + white: 82.6 + brightBlack: 16.5 + brightRed: 71.5 + brightGreen: 71.5 + brightYellow: 72.1 + brightBlue: 72.3 + brightMagenta: 71.2 + brightCyan: 61.3 + brightWhite: 67.6 diff --git a/themes/zenbones-vimbones-light.yaml b/themes/zenbones-vimbones-light.yaml new file mode 100644 index 00000000..79aa8fb1 --- /dev/null +++ b/themes/zenbones-vimbones-light.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Vimbones Light" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#F0F0CA" + fg: "#353535" + black: "#F0F0CA" + red: "#A8334C" + green: "#4F6C31" + yellow: "#944927" + blue: "#286486" + magenta: "#88507D" + cyan: "#3B8992" + white: "#353535" + brightBlack: "#C6C6A3" + brightRed: "#94253E" + brightGreen: "#3F5A22" + brightYellow: "#803D1C" + brightBlue: "#1D5573" + brightMagenta: "#7B3B70" + brightCyan: "#2B747C" + brightWhite: "#5C5C5C" +meta: + mode: "light" + accent: "red" + hue: 107 + contrast: + fg: 87.6 + black: 0 + red: 70.8 + green: 69.4 + yellow: 71.3 + blue: 71.4 + magenta: 69.5 + cyan: 57.2 + white: 87.6 + brightBlack: 21.5 + brightRed: 76.5 + brightGreen: 76.6 + brightYellow: 77.1 + brightBlue: 77.3 + brightMagenta: 76.2 + brightCyan: 66.3 + brightWhite: 72.7 diff --git a/themes/zenbones-zenburned-dark-stark.yaml b/themes/zenbones-zenburned-dark-stark.yaml new file mode 100644 index 00000000..92bc7966 --- /dev/null +++ b/themes/zenbones-zenburned-dark-stark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Zenburned Dark Stark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#413738" + fg: "#F0E4CF" + black: "#404040" + red: "#E3716E" + green: "#819B69" + yellow: "#B77E64" + blue: "#6099C0" + magenta: "#B279A7" + cyan: "#66A5AD" + white: "#F0E4CF" + brightBlack: "#625A5B" + brightRed: "#EC8685" + brightGreen: "#8BAE68" + brightYellow: "#D68C67" + brightBlue: "#61ABDA" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#C0AB86" +meta: + mode: "dark" + accent: "orange" + hue: 11 + contrast: + fg: 83.4 + black: 0 + red: 37 + green: 36.4 + yellow: 32.6 + blue: 36.4 + magenta: 32.7 + cyan: 40.6 + white: 83.4 + brightBlack: 11.1 + brightRed: 45 + brightGreen: 45 + brightYellow: 42.1 + brightBlue: 45 + brightMagenta: 42.3 + brightCyan: 49.4 + brightWhite: 50.5 diff --git a/themes/zenbones-zenburned-dark-warm.yaml b/themes/zenbones-zenburned-dark-warm.yaml new file mode 100644 index 00000000..92e02565 --- /dev/null +++ b/themes/zenbones-zenburned-dark-warm.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Zenburned Dark Warm" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#474747" + fg: "#F0E4CF" + black: "#404040" + red: "#E3716E" + green: "#819B69" + yellow: "#B77E64" + blue: "#6099C0" + magenta: "#B279A7" + cyan: "#66A5AD" + white: "#F0E4CF" + brightBlack: "#625A5B" + brightRed: "#EC8685" + brightGreen: "#8BAE68" + brightYellow: "#D68C67" + brightBlue: "#61ABDA" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#C0AB86" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.1 + black: 0 + red: 32.6 + green: 32 + yellow: 28.3 + blue: 32 + magenta: 28.3 + cyan: 36.2 + white: 79.1 + brightBlack: 0 + brightRed: 40.7 + brightGreen: 40.6 + brightYellow: 37.8 + brightBlue: 40.7 + brightMagenta: 37.9 + brightCyan: 45.1 + brightWhite: 46.1 diff --git a/themes/zenbones-zenburned-dark.yaml b/themes/zenbones-zenburned-dark.yaml new file mode 100644 index 00000000..261b50f2 --- /dev/null +++ b/themes/zenbones-zenburned-dark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Zenburned Dark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#404040" + fg: "#F0E4CF" + black: "#404040" + red: "#E3716E" + green: "#819B69" + yellow: "#B77E64" + blue: "#6099C0" + magenta: "#B279A7" + cyan: "#66A5AD" + white: "#F0E4CF" + brightBlack: "#625A5B" + brightRed: "#EC8685" + brightGreen: "#8BAE68" + brightYellow: "#D68C67" + brightBlue: "#61ABDA" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#C0AB86" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 81.4 + black: 0 + red: 34.9 + green: 34.3 + yellow: 30.6 + blue: 34.4 + magenta: 30.6 + cyan: 38.5 + white: 81.4 + brightBlack: 9.1 + brightRed: 43 + brightGreen: 42.9 + brightYellow: 40.1 + brightBlue: 43 + brightMagenta: 40.2 + brightCyan: 47.4 + brightWhite: 48.4 diff --git a/themes/zenbones-zenwritten-dark-stark.yaml b/themes/zenbones-zenwritten-dark-stark.yaml new file mode 100644 index 00000000..babb3fca --- /dev/null +++ b/themes/zenbones-zenwritten-dark-stark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Zenwritten Dark Stark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#171213" + fg: "#BBBBBB" + black: "#191919" + red: "#DE6E7C" + green: "#819B69" + yellow: "#B77E64" + blue: "#6099C0" + magenta: "#B279A7" + cyan: "#66A5AD" + white: "#BBBBBB" + brightBlack: "#3D3839" + brightRed: "#E8838F" + brightGreen: "#8BAE68" + brightYellow: "#D68C67" + brightBlue: "#61ABDA" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#8E8E8E" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 65.1 + black: 0 + red: 42.7 + green: 43.4 + yellow: 39.7 + blue: 43.5 + magenta: 39.7 + cyan: 47.6 + white: 65.1 + brightBlack: 0 + brightRed: 50.8 + brightGreen: 52 + brightYellow: 49.2 + brightBlue: 52.1 + brightMagenta: 49.3 + brightCyan: 56.5 + brightWhite: 40.9 diff --git a/themes/zenbones-zenwritten-dark-warm.yaml b/themes/zenbones-zenwritten-dark-warm.yaml new file mode 100644 index 00000000..6d05ec67 --- /dev/null +++ b/themes/zenbones-zenwritten-dark-warm.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Zenwritten Dark Warm" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#1F1F1F" + fg: "#BBBBBB" + black: "#191919" + red: "#DE6E7C" + green: "#819B69" + yellow: "#B77E64" + blue: "#6099C0" + magenta: "#B279A7" + cyan: "#66A5AD" + white: "#BBBBBB" + brightBlack: "#3D3839" + brightRed: "#E8838F" + brightGreen: "#8BAE68" + brightYellow: "#D68C67" + brightBlue: "#61ABDA" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#8E8E8E" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 63.8 + black: 0 + red: 41.4 + green: 42.1 + yellow: 38.4 + blue: 42.2 + magenta: 38.4 + cyan: 46.3 + white: 63.8 + brightBlack: 0 + brightRed: 49.5 + brightGreen: 50.7 + brightYellow: 47.9 + brightBlue: 50.8 + brightMagenta: 48 + brightCyan: 55.2 + brightWhite: 39.6 diff --git a/themes/zenbones-zenwritten-dark.yaml b/themes/zenbones-zenwritten-dark.yaml new file mode 100644 index 00000000..15869192 --- /dev/null +++ b/themes/zenbones-zenwritten-dark.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Zenwritten Dark" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#191919" + fg: "#BBBBBB" + black: "#191919" + red: "#DE6E7C" + green: "#819B69" + yellow: "#B77E64" + blue: "#6099C0" + magenta: "#B279A7" + cyan: "#66A5AD" + white: "#BBBBBB" + brightBlack: "#3D3839" + brightRed: "#E8838F" + brightGreen: "#8BAE68" + brightYellow: "#D68C67" + brightBlue: "#61ABDA" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#8E8E8E" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 64.5 + black: 0 + red: 42.2 + green: 42.9 + yellow: 39.1 + blue: 42.9 + magenta: 39.2 + cyan: 47.1 + white: 64.5 + brightBlack: 0 + brightRed: 50.2 + brightGreen: 51.5 + brightYellow: 48.6 + brightBlue: 51.5 + brightMagenta: 48.8 + brightCyan: 55.9 + brightWhite: 40.4 diff --git a/themes/zenbones-zenwritten-light-bright.yaml b/themes/zenbones-zenwritten-light-bright.yaml new file mode 100644 index 00000000..b26d1a58 --- /dev/null +++ b/themes/zenbones-zenwritten-light-bright.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Zenwritten Light Bright" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#F7F6F6" + fg: "#353535" + black: "#EEEEEE" + red: "#A8334C" + green: "#4F6C31" + yellow: "#944927" + blue: "#286486" + magenta: "#88507D" + cyan: "#3B8992" + white: "#353535" + brightBlack: "#C6C3C3" + brightRed: "#94253E" + brightGreen: "#3F5A22" + brightYellow: "#803D1C" + brightBlue: "#1D5573" + brightMagenta: "#7B3B70" + brightCyan: "#2B747C" + brightWhite: "#5C5C5C" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 92.8 + black: 0 + red: 75.9 + green: 74.5 + yellow: 76.4 + blue: 76.5 + magenta: 74.6 + cyan: 62.3 + white: 92.8 + brightBlack: 26.7 + brightRed: 81.6 + brightGreen: 81.7 + brightYellow: 82.2 + brightBlue: 82.5 + brightMagenta: 81.4 + brightCyan: 71.4 + brightWhite: 77.8 diff --git a/themes/zenbones-zenwritten-light-dim.yaml b/themes/zenbones-zenwritten-light-dim.yaml new file mode 100644 index 00000000..fd253053 --- /dev/null +++ b/themes/zenbones-zenwritten-light-dim.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Zenwritten Light Dim" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#E5E5E5" + fg: "#353535" + black: "#EEEEEE" + red: "#A8334C" + green: "#4F6C31" + yellow: "#944927" + blue: "#286486" + magenta: "#88507D" + cyan: "#3B8992" + white: "#353535" + brightBlack: "#C6C3C3" + brightRed: "#94253E" + brightGreen: "#3F5A22" + brightYellow: "#803D1C" + brightBlue: "#1D5573" + brightMagenta: "#7B3B70" + brightCyan: "#2B747C" + brightWhite: "#5C5C5C" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 82.7 + black: 0 + red: 65.8 + green: 64.4 + yellow: 66.3 + blue: 66.4 + magenta: 64.5 + cyan: 52.2 + white: 82.7 + brightBlack: 16.6 + brightRed: 71.5 + brightGreen: 71.6 + brightYellow: 72.1 + brightBlue: 72.4 + brightMagenta: 71.3 + brightCyan: 61.3 + brightWhite: 67.7 diff --git a/themes/zenbones-zenwritten-light.yaml b/themes/zenbones-zenwritten-light.yaml new file mode 100644 index 00000000..62d48152 --- /dev/null +++ b/themes/zenbones-zenwritten-light.yaml @@ -0,0 +1,49 @@ +name: "Zenbones Zenwritten Light" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2700 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" +colors: + bg: "#EEEEEE" + fg: "#353535" + black: "#EEEEEE" + red: "#A8334C" + green: "#4F6C31" + yellow: "#944927" + blue: "#286486" + magenta: "#88507D" + cyan: "#3B8992" + white: "#353535" + brightBlack: "#C6C3C3" + brightRed: "#94253E" + brightGreen: "#3F5A22" + brightYellow: "#803D1C" + brightBlue: "#1D5573" + brightMagenta: "#7B3B70" + brightCyan: "#2B747C" + brightWhite: "#5C5C5C" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 87.9 + black: 0 + red: 71 + green: 69.6 + yellow: 71.6 + blue: 71.7 + magenta: 69.8 + cyan: 57.5 + white: 87.9 + brightBlack: 21.9 + brightRed: 76.8 + brightGreen: 76.8 + brightYellow: 77.4 + brightBlue: 77.6 + brightMagenta: 76.5 + brightCyan: 66.6 + brightWhite: 72.9 diff --git a/themes/zenbook-ux534ftc-white-gold-v1-full-dark.yaml b/themes/zenbook-ux534ftc-white-gold-v1-full-dark.yaml new file mode 100644 index 00000000..75d381b5 --- /dev/null +++ b/themes/zenbook-ux534ftc-white-gold-v1-full-dark.yaml @@ -0,0 +1,49 @@ +name: "Zenbook UX534FTC White-Gold V1 Full Dark" +source: + marketplace_id: "ELITENOTORIOUSTHEPRESTIGIOUS.zenbook-ux534ftc-white-gold-v2" + version: "2.2.35" + installs: 492 + author: "ELITE NOTORIOUS THE PRESTIGIOUS" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ELITENOTORIOUSTHEPRESTIGIOUS.zenbook-ux534ftc-white-gold-v2" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 52.7 + yellow: 43.8 + blue: 16 + magenta: 27.1 + cyan: 41.1 + white: 16.1 + brightBlack: 23 + brightRed: 27.7 + brightGreen: 61.4 + brightYellow: 61.3 + brightBlue: 16 + brightMagenta: 27.1 + brightCyan: 41.1 + brightWhite: 53.5 diff --git a/themes/zenbook-ux534ftc-white-gold-v2-1-95.yaml b/themes/zenbook-ux534ftc-white-gold-v2-1-95.yaml new file mode 100644 index 00000000..74dfed6a --- /dev/null +++ b/themes/zenbook-ux534ftc-white-gold-v2-1-95.yaml @@ -0,0 +1,49 @@ +name: "Zenbook UX534FTC White-Gold V2.1.95" +source: + marketplace_id: "ELITENOTORIOUSTHEPRESTIGIOUS.zenbook-ux534ftc-white-gold-v2" + version: "2.2.35" + installs: 492 + author: "ELITE NOTORIOUS THE PRESTIGIOUS" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ELITENOTORIOUSTHEPRESTIGIOUS.zenbook-ux534ftc-white-gold-v2" +colors: + bg: "#DEDEDE" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + contrast: + fg: 86.7 + black: 86.7 + red: 54.6 + green: 29.9 + yellow: 38.5 + blue: 66.7 + magenta: 55.2 + cyan: 41.2 + white: 66.6 + brightBlack: 59.4 + brightRed: 54.6 + brightGreen: 21.5 + brightYellow: 21.6 + brightBlue: 66.7 + brightMagenta: 55.2 + brightCyan: 41.2 + brightWhite: 29.1 diff --git a/themes/zenburn.yaml b/themes/zenburn.yaml new file mode 100644 index 00000000..b01c01dd --- /dev/null +++ b/themes/zenburn.yaml @@ -0,0 +1,49 @@ +name: "Zenburn" +source: + marketplace_id: "swashata.beautiful-ui" + version: "1.7.0" + installs: 121085 + author: "swashata" + repo: "https://github.com/swashata/vscode-beautiful-ui" + url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" +colors: + bg: "#383838" + fg: "#DEDEDE" + black: "#000000" + red: "#D81E00" + green: "#5EA702" + yellow: "#CFAE00" + blue: "#427AB3" + magenta: "#89658E" + cyan: "#00A7AA" + white: "#DBDED8" + brightBlack: "#686A66" + brightRed: "#F54235" + brightGreen: "#99E343" + brightYellow: "#FDEB61" + brightBlue: "#84B0D8" + brightMagenta: "#BC94B7" + brightCyan: "#37E6E8" + brightWhite: "#F1F1F0" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 79.3 + black: 0 + red: 21.3 + green: 38.2 + yellow: 52.6 + blue: 23.3 + magenta: 20.7 + cyan: 39.1 + white: 78.7 + brightBlack: 17.2 + brightRed: 31.5 + brightGreen: 70.2 + brightYellow: 86.1 + brightBlue: 49.8 + brightMagenta: 43.8 + brightCyan: 71.4 + brightWhite: 91.4 diff --git a/themes/zene-dark-theme.yaml b/themes/zene-dark-theme.yaml new file mode 100644 index 00000000..e43a148a --- /dev/null +++ b/themes/zene-dark-theme.yaml @@ -0,0 +1,49 @@ +name: "Zene Dark Theme" +source: + marketplace_id: "MehdiTalalha.zene-theme" + version: "3.1.0" + installs: 37 + author: "Mehdi Talalha" + repo: "https://github.com/mehdi1-T/ZENE-vscode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MehdiTalalha.zene-theme" +colors: + bg: "#1E1E2E" + fg: "#CAD3F5" + black: "#363A4F" + red: "#ED8796" + green: "#A6DA95" + yellow: "#EED49F" + blue: "#8AADF4" + magenta: "#C6A0F6" + cyan: "#8BD5CA" + white: "#CAD3F5" + brightBlack: "#6E738D" + brightRed: "#ED8796" + brightGreen: "#A6DA95" + brightYellow: "#EED49F" + brightBlue: "#8AADF4" + brightMagenta: "#C6A0F6" + brightCyan: "#8BD5CA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 284 + contrast: + fg: 78.4 + black: 0 + red: 51.7 + green: 73.7 + yellow: 80.1 + blue: 56 + magenta: 58 + cyan: 71 + white: 78.4 + brightBlack: 27.2 + brightRed: 51.7 + brightGreen: 73.7 + brightYellow: 80.1 + brightBlue: 56 + brightMagenta: 58 + brightCyan: 71 + brightWhite: 105.8 diff --git a/themes/zeneth.yaml b/themes/zeneth.yaml new file mode 100644 index 00000000..4736abd3 --- /dev/null +++ b/themes/zeneth.yaml @@ -0,0 +1,49 @@ +name: "Zeneth" +source: + marketplace_id: "edan-m.theme-zeneth" + version: "1.0.1" + installs: 26 + author: "Edan M." + repo: "https://github.com/edanick/zeneth" + url: "https://marketplace.visualstudio.com/items?itemName=edan-m.theme-zeneth" +colors: + bg: "#080808" + fg: "#A5B1C2" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 59.4 + black: 0 + red: 64.3 + green: 91.8 + yellow: 96.7 + blue: 82.2 + magenta: 75.7 + cyan: 96.9 + white: 75.6 + brightBlack: 0 + brightRed: 52.6 + brightGreen: 87.7 + brightYellow: 91.4 + brightBlue: 63.1 + brightMagenta: 51.2 + brightCyan: 94.8 + brightWhite: 107.8 diff --git a/themes/zenflow-noir.yaml b/themes/zenflow-noir.yaml new file mode 100644 index 00000000..6d0f7994 --- /dev/null +++ b/themes/zenflow-noir.yaml @@ -0,0 +1,49 @@ +name: "ZenFlow Noir" +source: + marketplace_id: "Demise.zenflow" + version: "0.0.2" + installs: 122 + author: "Demise" + repo: "https://github.com/Demiserular/Zenflow--vsTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Demise.zenflow" +colors: + bg: "#0A0A0E" + fg: "#E0E0E8" + black: "#1A1A25" + red: "#E74C3C" + green: "#2ECC71" + yellow: "#F39C12" + blue: "#3498DB" + magenta: "#9B59B6" + cyan: "#2ECCDB" + white: "#E0E0E8" + brightBlack: "#707080" + brightRed: "#E74C3C" + brightGreen: "#2ECC71" + brightYellow: "#F39C12" + brightBlue: "#3498DB" + brightMagenta: "#9B59B6" + brightCyan: "#2ECCDB" + brightWhite: "#E0E0E8" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 88.1 + black: 0 + red: 36.9 + green: 61.5 + yellow: 59.3 + blue: 43.3 + magenta: 29.4 + cyan: 65.3 + white: 88.1 + brightBlack: 27.8 + brightRed: 36.9 + brightGreen: 61.5 + brightYellow: 59.3 + brightBlue: 43.3 + brightMagenta: 29.4 + brightCyan: 65.3 + brightWhite: 88.1 diff --git a/themes/zenith-aurora.yaml b/themes/zenith-aurora.yaml new file mode 100644 index 00000000..12b859e5 --- /dev/null +++ b/themes/zenith-aurora.yaml @@ -0,0 +1,49 @@ +name: "Zenith Aurora" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 108 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" +colors: + bg: "#1A1E24" + fg: "#D8E5E8" + black: "#1A1E24" + red: "#E8A5B8" + green: "#A8DFC5" + yellow: "#E8D8B0" + blue: "#9FC5E8" + magenta: "#C8B5E8" + cyan: "#A0E8E0" + white: "#D8E5E8" + brightBlack: "#3E4450" + brightRed: "#E8A5B8" + brightGreen: "#B8E5D0" + brightYellow: "#E8D8B0" + brightBlue: "#88B3D6" + brightMagenta: "#B8A5D8" + brightCyan: "#96D6D0" + brightWhite: "#D8E5E8" +meta: + mode: "dark" + accent: "red" + hue: 258 + contrast: + fg: 87.7 + black: 0 + red: 62 + green: 78.1 + yellow: 81.8 + blue: 67.3 + magenta: 65.4 + cyan: 82.8 + white: 87.7 + brightBlack: 8 + brightRed: 62 + brightGreen: 83 + brightYellow: 81.8 + brightBlue: 56.7 + brightMagenta: 56.4 + brightCyan: 72.8 + brightWhite: 87.7 diff --git a/themes/zenith-dawn.yaml b/themes/zenith-dawn.yaml new file mode 100644 index 00000000..725c0c1f --- /dev/null +++ b/themes/zenith-dawn.yaml @@ -0,0 +1,49 @@ +name: "Zenith Dawn" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 108 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" +colors: + bg: "#EFF1F5" + fg: "#4C4F69" + black: "#EFF1F5" + red: "#D20F39" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#8839EF" + cyan: "#04A5E5" + white: "#4C4F69" + brightBlack: "#9CA0B0" + brightRed: "#D20F39" + brightGreen: "#5FB268" + brightYellow: "#DF8E1D" + brightBlue: "#1E66F5" + brightMagenta: "#7C3AED" + brightCyan: "#179299" + brightWhite: "#4C4F69" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 79.3 + black: 0 + red: 66.3 + green: 52.1 + yellow: 42.3 + blue: 64.8 + magenta: 67.5 + cyan: 44.7 + white: 79.3 + brightBlack: 42.4 + brightRed: 66.3 + brightGreen: 42.3 + brightYellow: 42.3 + brightBlue: 64.8 + brightMagenta: 69.1 + brightCyan: 56.1 + brightWhite: 79.3 diff --git a/themes/zenith-dusk.yaml b/themes/zenith-dusk.yaml new file mode 100644 index 00000000..cec9f8b8 --- /dev/null +++ b/themes/zenith-dusk.yaml @@ -0,0 +1,49 @@ +name: "Zenith Dusk" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 108 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" +colors: + bg: "#1E1E2E" + fg: "#E0DFE8" + black: "#1E1E2E" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#BBA6F7" + cyan: "#94E2D5" + white: "#E0DFE8" + brightBlack: "#45475A" + brightRed: "#F38BA8" + brightGreen: "#B5EDB5" + brightYellow: "#F9E2AF" + brightBlue: "#7A9FF5" + brightMagenta: "#A58EE5" + brightCyan: "#91D7E3" + brightWhite: "#E0DFE8" +meta: + mode: "dark" + accent: "purple" + hue: 284 + contrast: + fg: 85.8 + black: 0 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 58.7 + cyan: 78.2 + white: 85.8 + brightBlack: 9.3 + brightRed: 54.7 + brightGreen: 85.2 + brightYellow: 88.4 + brightBlue: 49.4 + brightMagenta: 46.5 + brightCyan: 73.5 + brightWhite: 85.8 diff --git a/themes/zenith-forest.yaml b/themes/zenith-forest.yaml new file mode 100644 index 00000000..07d92f20 --- /dev/null +++ b/themes/zenith-forest.yaml @@ -0,0 +1,49 @@ +name: "Zenith Forest" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 108 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" +colors: + bg: "#151D17" + fg: "#E8F0E0" + black: "#1A211B" + red: "#F28B82" + green: "#81C995" + yellow: "#F9E2AF" + blue: "#89C0EB" + magenta: "#C8A8E0" + cyan: "#89DCEB" + white: "#E8F0E0" + brightBlack: "#3F4740" + brightRed: "#F28B82" + brightGreen: "#9DE0AD" + brightYellow: "#F9E2AF" + brightBlue: "#7CB8D8" + brightMagenta: "#B89FD8" + brightCyan: "#76CEC7" + brightWhite: "#E8F0E0" +meta: + mode: "dark" + accent: "orange" + hue: 153 + contrast: + fg: 94.8 + black: 0 + red: 53.8 + green: 63.4 + yellow: 89 + blue: 63.7 + magenta: 60.4 + cyan: 76.2 + white: 94.8 + brightBlack: 8.7 + brightRed: 53.8 + brightGreen: 77.1 + brightYellow: 89 + brightBlue: 58.3 + brightMagenta: 54.6 + brightCyan: 66.7 + brightWhite: 94.8 diff --git a/themes/zenith-midnight.yaml b/themes/zenith-midnight.yaml new file mode 100644 index 00000000..277dce3d --- /dev/null +++ b/themes/zenith-midnight.yaml @@ -0,0 +1,49 @@ +name: "Zenith Midnight" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 108 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" +colors: + bg: "#0F0F14" + fg: "#E8E8F0" + black: "#0F0F14" + red: "#FF99B8" + green: "#B8FFC8" + yellow: "#FFF0B8" + blue: "#99B8FF" + magenta: "#C8B8FF" + cyan: "#B8F0FF" + white: "#E8E8F0" + brightBlack: "#32323C" + brightRed: "#FF99B8" + brightGreen: "#C8FFD8" + brightYellow: "#FFF0B8" + brightBlue: "#88A8FF" + brightMagenta: "#B8A8F5" + brightCyan: "#A8E8F0" + brightWhite: "#E8E8F0" +meta: + mode: "dark" + accent: "purple" + hue: 285 + contrast: + fg: 92.9 + black: 0 + red: 63.5 + green: 96.8 + yellow: 97.6 + blue: 64.1 + magenta: 69.3 + cyan: 91.8 + white: 92.9 + brightBlack: 0 + brightRed: 63.5 + brightGreen: 99 + brightYellow: 97.6 + brightBlue: 56.2 + brightMagenta: 60.6 + brightCyan: 85.7 + brightWhite: 92.9 diff --git a/themes/zenith-neutral.yaml b/themes/zenith-neutral.yaml new file mode 100644 index 00000000..996a0400 --- /dev/null +++ b/themes/zenith-neutral.yaml @@ -0,0 +1,49 @@ +name: "Zenith Neutral" +source: + marketplace_id: "britown.vscode-theme-zenith" + version: "0.0.23" + installs: 577 + author: "Britown" + repo: "https://github.com/bkuzmanoski/vscode-theme-zenith" + url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-zenith" +colors: + bg: "#191919" + fg: "#BBBBBB" + black: "#191919" + red: "#DE6E7C" + green: "#64B280" + yellow: "#D68C67" + blue: "#61ABDA" + magenta: "#CF86C1" + cyan: "#65B8C1" + white: "#BBBBBB" + brightBlack: "#6E6E6E" + brightRed: "#FC8C9A" + brightGreen: "#86CC92" + brightYellow: "#F4AA85" + brightBlue: "#7FC9F8" + brightMagenta: "#ECA4DF" + brightCyan: "#83D6DF" + brightWhite: "#8E8E8E" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 64.5 + black: 0 + red: 42.2 + green: 50.9 + yellow: 48.6 + blue: 51.5 + magenta: 48.8 + cyan: 55.9 + white: 64.5 + brightBlack: 25.3 + brightRed: 57 + brightGreen: 65.3 + brightYellow: 64.7 + brightBlue: 67.9 + brightMagenta: 64.7 + brightCyan: 72.7 + brightWhite: 40.4 diff --git a/themes/zenith-ocean.yaml b/themes/zenith-ocean.yaml new file mode 100644 index 00000000..7b7f9696 --- /dev/null +++ b/themes/zenith-ocean.yaml @@ -0,0 +1,49 @@ +name: "Zenith Ocean" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 108 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" +colors: + bg: "#14191F" + fg: "#D8E8F0" + black: "#14191F" + red: "#A8B8D5" + green: "#A8D5C8" + yellow: "#D5E0C8" + blue: "#8FB8D8" + magenta: "#B8C8E8" + cyan: "#A8D8E8" + white: "#D8E8F0" + brightBlack: "#363C44" + brightRed: "#A8B8D5" + brightGreen: "#B5E0D5" + brightYellow: "#D5E0C8" + brightBlue: "#78A8C8" + brightMagenta: "#A8B8D8" + brightCyan: "#88C8D8" + brightWhite: "#D8E8F0" +meta: + mode: "dark" + accent: "indigo" + hue: 253 + contrast: + fg: 90.1 + black: 0 + red: 62.4 + green: 74.3 + yellow: 84.3 + blue: 60.1 + magenta: 71.7 + cyan: 77.1 + white: 90.1 + brightBlack: 0 + brightRed: 62.4 + brightGreen: 81.2 + brightYellow: 84.3 + brightBlue: 50.9 + brightMagenta: 62.5 + brightCyan: 66.4 + brightWhite: 90.1 diff --git a/themes/zenith-ros.yaml b/themes/zenith-ros.yaml new file mode 100644 index 00000000..e40c26c6 --- /dev/null +++ b/themes/zenith-ros.yaml @@ -0,0 +1,49 @@ +name: "Zenith Rosé" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 108 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" +colors: + bg: "#1F1A1D" + fg: "#E8DFE8" + black: "#1F1A1D" + red: "#F5A5A8" + green: "#9CCFD8" + yellow: "#F6C177" + blue: "#9AC7DC" + magenta: "#C4A7E7" + cyan: "#9CCFD8" + white: "#E8DFE8" + brightBlack: "#4A3F43" + brightRed: "#F5A5A8" + brightGreen: "#A8DFE5" + brightYellow: "#F6C177" + brightBlue: "#9CADCE" + brightMagenta: "#B8A0D9" + brightCyan: "#9CCFD8" + brightWhite: "#E8DFE8" +meta: + mode: "dark" + accent: "yellow" + hue: null + contrast: + fg: 87.4 + black: 0 + red: 63.9 + green: 70.8 + yellow: 73.1 + blue: 67.3 + magenta: 59.8 + cyan: 70.8 + white: 87.4 + brightBlack: 7.6 + brightRed: 63.9 + brightGreen: 79.8 + brightYellow: 73.1 + brightBlue: 56 + brightMagenta: 54.9 + brightCyan: 70.8 + brightWhite: 87.4 diff --git a/themes/zenith-zen.yaml b/themes/zenith-zen.yaml new file mode 100644 index 00000000..6bfc038e --- /dev/null +++ b/themes/zenith-zen.yaml @@ -0,0 +1,49 @@ +name: "Zenith Zen" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 108 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" +colors: + bg: "#141414" + fg: "#E8E8E8" + black: "#141414" + red: "#C8B4B4" + green: "#B4C8BC" + yellow: "#CCC8B4" + blue: "#B8C0CC" + magenta: "#C4B8CC" + cyan: "#B8C8CC" + white: "#E8E8E8" + brightBlack: "#3A3A3A" + brightRed: "#C8B4B4" + brightGreen: "#B8CCC2" + brightYellow: "#CCC8B4" + brightBlue: "#B4BCC8" + brightMagenta: "#C0B4C8" + brightCyan: "#B4C8C4" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 92.2 + black: 0 + red: 63.6 + green: 69.7 + yellow: 72.3 + blue: 67.4 + magenta: 65.7 + cyan: 70.8 + white: 92.2 + brightBlack: 0 + brightRed: 63.6 + brightGreen: 72.1 + brightYellow: 72.3 + brightBlue: 65.1 + brightMagenta: 63.4 + brightCyan: 70 + brightWhite: 92.2 diff --git a/themes/zenith.yaml b/themes/zenith.yaml new file mode 100644 index 00000000..2bb3850c --- /dev/null +++ b/themes/zenith.yaml @@ -0,0 +1,49 @@ +name: "Zenith" +source: + marketplace_id: "britown.vscode-theme-zenith" + version: "0.0.23" + installs: 577 + author: "Britown" + repo: "https://github.com/bkuzmanoski/vscode-theme-zenith" + url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-zenith" +colors: + bg: "#161A1D" + fg: "#B4BBC2" + black: "#161A1D" + red: "#DE6E7C" + green: "#64B280" + yellow: "#D68C67" + blue: "#61ABDA" + magenta: "#CF86C1" + cyan: "#65B8C1" + white: "#B4BBC2" + brightBlack: "#637079" + brightRed: "#FC8C9A" + brightGreen: "#86CC92" + brightYellow: "#F4AA85" + brightBlue: "#7FC9F8" + brightMagenta: "#ECA4DF" + brightCyan: "#83D6DF" + brightWhite: "#839099" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 63.9 + black: 0 + red: 42.1 + green: 50.8 + yellow: 48.6 + blue: 51.5 + magenta: 48.7 + cyan: 55.9 + white: 63.9 + brightBlack: 25.3 + brightRed: 57 + brightGreen: 65.2 + brightYellow: 64.6 + brightBlue: 67.8 + brightMagenta: 64.6 + brightCyan: 72.6 + brightWhite: 40.3 diff --git a/themes/zenitria-amoled.yaml b/themes/zenitria-amoled.yaml new file mode 100644 index 00000000..c38d5bb6 --- /dev/null +++ b/themes/zenitria-amoled.yaml @@ -0,0 +1,49 @@ +name: "Zenitria AMOLED" +source: + marketplace_id: "Zenitria.zenitria-amoled" + version: "1.0.2" + installs: 2551 + author: "Zenitria" + repo: "https://github.com/Zenitria/zenitria-amoled-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=Zenitria.zenitria-amoled" +colors: + bg: "#000000" + fg: "#999999" + black: "#000000" + red: "#ED424B" + green: "#09E85E" + yellow: "#FFF712" + blue: "#0DB1FC" + magenta: "#BF47FF" + cyan: "#51F2F5" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#ED424B" + brightGreen: "#09E85E" + brightYellow: "#FFF712" + brightBlue: "#0DB1FC" + brightMagenta: "#BF47FF" + brightCyan: "#51F2F5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 47.2 + black: 0 + red: 37.2 + green: 74.9 + yellow: 98.8 + blue: 55.2 + magenta: 37.4 + cyan: 86.1 + white: 107.9 + brightBlack: 0 + brightRed: 37.2 + brightGreen: 74.9 + brightYellow: 98.8 + brightBlue: 55.2 + brightMagenta: 37.4 + brightCyan: 86.1 + brightWhite: 107.9 diff --git a/themes/zenml.yaml b/themes/zenml.yaml new file mode 100644 index 00000000..41ec171b --- /dev/null +++ b/themes/zenml.yaml @@ -0,0 +1,49 @@ +name: "ZenML" +source: + marketplace_id: "zenml-io.zenml-tutorial" + version: "0.1.6" + installs: 261 + author: "zenml-io" + repo: "https://github.com/zenml-io/vscode-tutorial-extension" + url: "https://marketplace.visualstudio.com/items?itemName=zenml-io.zenml-tutorial" +colors: + bg: "#FFFFFF" + fg: "#1A1A2E" + black: "#000000" + red: "#DC3545" + green: "#179F3E" + yellow: "#A65D07" + blue: "#007BFF" + magenta: "#7A3EF4" + cyan: "#17A2B8" + white: "#F8F9FA" + brightBlack: "#6C757D" + brightRed: "#DC3545" + brightGreen: "#179F3E" + brightYellow: "#A65D07" + brightBlue: "#3498DB" + brightMagenta: "#7A3EF4" + brightCyan: "#1ABC9C" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 103.9 + black: 106 + red: 69.9 + green: 61.6 + yellow: 74.2 + blue: 66.2 + magenta: 76.4 + cyan: 56.8 + white: 0 + brightBlack: 72.6 + brightRed: 69.9 + brightGreen: 61.6 + brightYellow: 74.2 + brightBlue: 58.2 + brightMagenta: 76.4 + brightCyan: 46.9 + brightWhite: 0 diff --git a/themes/zero-s-solarized.yaml b/themes/zero-s-solarized.yaml new file mode 100644 index 00000000..a2fa229c --- /dev/null +++ b/themes/zero-s-solarized.yaml @@ -0,0 +1,49 @@ +name: "Zero's Solarized" +source: + marketplace_id: "JavierdeMarco.zerossolarized" + version: "0.0.1" + installs: 82 + author: "Javier de Marco" + repo: "https://github.com/javierdemarco/zerossolarized" + url: "https://marketplace.visualstudio.com/items?itemName=JavierdeMarco.zerossolarized" +colors: + bg: "#073642" + fg: "#EEE8D5" + black: "#000000" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#000000" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#D33682" + brightCyan: "#2AA198" + brightWhite: "#EEE8D5" +meta: + mode: "dark" + accent: "orange" + hue: 220 + contrast: + fg: 87.3 + black: 0 + red: 25.5 + green: 37.1 + yellow: 37.1 + blue: 32.1 + magenta: 25.8 + cyan: 37.8 + white: 87.3 + brightBlack: 0 + brightRed: 25.5 + brightGreen: 37.1 + brightYellow: 37.1 + brightBlue: 32.1 + brightMagenta: 25.8 + brightCyan: 37.8 + brightWhite: 87.3 diff --git a/themes/zero-wip.yaml b/themes/zero-wip.yaml new file mode 100644 index 00000000..860159c0 --- /dev/null +++ b/themes/zero-wip.yaml @@ -0,0 +1,49 @@ +name: "Zero [WIP]" +source: + marketplace_id: "Valkyrihane.zero" + version: "0.0.1" + installs: 1481 + author: "Valkyrihane" + repo: "https://github.com/Valkyrihane/zero" + url: "https://marketplace.visualstudio.com/items?itemName=Valkyrihane.zero" +colors: + bg: "#000000" + fg: "#AAAAAA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 56.2 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/zeus-turquoise.yaml b/themes/zeus-turquoise.yaml new file mode 100644 index 00000000..566c618d --- /dev/null +++ b/themes/zeus-turquoise.yaml @@ -0,0 +1,49 @@ +name: "Zeus Turquoise" +source: + marketplace_id: "UllasKunder.zeus-vscode-theme" + version: "0.0.1" + installs: 694 + author: "Ullas Kunder" + repo: "https://github.com/ullaskunder3/zeus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=UllasKunder.zeus-vscode-theme" +colors: + bg: "#0D1318" + fg: "#C9D1D9" + black: "#484F58" + red: "#EC8E2C" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FDAC54" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 244 + contrast: + fg: 77.4 + black: 13 + red: 53.1 + green: 52.1 + yellow: 52.1 + blue: 52.1 + magenta: 52.1 + cyan: 61.3 + white: 63.9 + brightBlack: 29.1 + brightRed: 66.7 + brightGreen: 64.6 + brightYellow: 64.6 + brightBlue: 64.6 + brightMagenta: 64.5 + brightCyan: 69.8 + brightWhite: 107.3 diff --git a/themes/zeus-yelo.yaml b/themes/zeus-yelo.yaml new file mode 100644 index 00000000..a974ad2e --- /dev/null +++ b/themes/zeus-yelo.yaml @@ -0,0 +1,49 @@ +name: "Zeus Yelo" +source: + marketplace_id: "UllasKunder.zeus-vscode-theme" + version: "0.0.1" + installs: 694 + author: "Ullas Kunder" + repo: "https://github.com/ullaskunder3/zeus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=UllasKunder.zeus-vscode-theme" +colors: + bg: "#171724" + fg: "#C9D1D9" + black: "#484F58" + red: "#EC8E2C" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FDAC54" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 284 + contrast: + fg: 76.9 + black: 12.4 + red: 52.5 + green: 51.6 + yellow: 51.6 + blue: 51.6 + magenta: 51.6 + cyan: 60.7 + white: 63.4 + brightBlack: 28.6 + brightRed: 66.1 + brightGreen: 64.1 + brightYellow: 64.1 + brightBlue: 64.1 + brightMagenta: 64 + brightCyan: 69.3 + brightWhite: 106.7 diff --git a/themes/zhangpengtao-black.yaml b/themes/zhangpengtao-black.yaml new file mode 100644 index 00000000..6bb4ff04 --- /dev/null +++ b/themes/zhangpengtao-black.yaml @@ -0,0 +1,49 @@ +name: "zhangpengtao-black" +source: + marketplace_id: "ZhangPengtao.zhangpengtao-black" + version: "0.0.3" + installs: 450 + author: "ZhangPengtao" + repo: "https://github.com/zptzpt/zhangpengtao-black" + url: "https://marketplace.visualstudio.com/items?itemName=ZhangPengtao.zhangpengtao-black" +colors: + bg: "#000000" + fg: "#EEFFFF" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 105.6 + black: 13.6 + red: 53.1 + green: 52.6 + yellow: 52.7 + blue: 52.7 + magenta: 52.7 + cyan: 61.9 + white: 64.5 + brightBlack: 29.7 + brightRed: 65.3 + brightGreen: 65.9 + brightYellow: 65.2 + brightBlue: 65.2 + brightMagenta: 65.1 + brightCyan: 70.4 + brightWhite: 101.4 diff --git a/themes/zhe-qi.yaml b/themes/zhe-qi.yaml new file mode 100644 index 00000000..b762aaf6 --- /dev/null +++ b/themes/zhe-qi.yaml @@ -0,0 +1,49 @@ +name: "zhe-qi" +source: + marketplace_id: "zhe-qi.zheqi-theme" + version: "0.0.2" + installs: 67 + author: "zhe-qi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=zhe-qi.zheqi-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#8F8F8F" + red: "#F82A5D" + green: "#98D800" + yellow: "#E7DC60" + blue: "#5CCAEF" + magenta: "#F57F00" + cyan: "#A57FFF" + white: "#F1F1F1" + brightBlack: "#8F8F8F" + brightRed: "#F82A5D" + brightGreen: "#98D800" + brightYellow: "#E7DC60" + brightBlue: "#5CCAEF" + brightMagenta: "#F57F00" + brightCyan: "#A57FFF" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 107.9 + black: 42.1 + red: 37.8 + green: 71.8 + yellow: 83.4 + blue: 67 + magenta: 50.9 + cyan: 45.8 + white: 98.7 + brightBlack: 42.1 + brightRed: 37.8 + brightGreen: 71.8 + brightYellow: 83.4 + brightBlue: 67 + brightMagenta: 50.9 + brightCyan: 45.8 + brightWhite: 98.7 diff --git a/themes/zhongli.yaml b/themes/zhongli.yaml new file mode 100644 index 00000000..ecae2245 --- /dev/null +++ b/themes/zhongli.yaml @@ -0,0 +1,49 @@ +name: "Zhongli" +source: + marketplace_id: "jeooo.lapis-dei" + version: "1.0.1" + installs: 1685 + author: "jeooo`" + repo: "https://github.com/jeoooo/zhongli-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jeooo.lapis-dei" +colors: + bg: "#3B2F2E" + fg: "#D4D4D4" + black: "#171717" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#000000" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 24 + contrast: + fg: 74.9 + black: 0 + red: 22.2 + green: 48.4 + yellow: 81.1 + blue: 22.9 + magenta: 25.2 + cyan: 43 + white: 85.5 + brightBlack: 0 + brightRed: 34 + brightGreen: 59 + brightYellow: 91.1 + brightBlue: 35.4 + brightMagenta: 40.8 + brightCyan: 50.8 + brightWhite: 85.5 diff --git a/themes/zhxo-lt.yaml b/themes/zhxo-lt.yaml new file mode 100644 index 00000000..f787ca08 --- /dev/null +++ b/themes/zhxo-lt.yaml @@ -0,0 +1,49 @@ +name: "zhxo'lt" +source: + marketplace_id: "shwuy.zhxo-themes" + version: "2.0.1" + installs: 1481 + author: "shwuy" + repo: "https://github.com/sxhk0/.theme" + url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" +colors: + bg: "#FFF6F0" + fg: "#777790" + black: "#131313" + red: "#C43D3D" + green: "#00BC6D" + yellow: "#CF9E0D" + blue: "#1F5FA5" + magenta: "#A313D7" + cyan: "#1FA1C0" + white: "#585858" + brightBlack: "#303030" + brightRed: "#EA5959" + brightGreen: "#29D18A" + brightYellow: "#E6BA38" + brightBlue: "#4181C7" + brightMagenta: "#C421FF" + brightCyan: "#34D0F5" + brightWhite: "#949494" +meta: + mode: "light" + accent: "magenta" + hue: null + contrast: + fg: 65.7 + black: 100.7 + red: 69.9 + green: 43.8 + yellow: 43.6 + blue: 77.3 + magenta: 72.5 + cyan: 52.2 + white: 80.2 + brightBlack: 95.1 + brightRed: 56.8 + brightGreen: 33.3 + brightYellow: 29.8 + brightBlue: 63 + brightMagenta: 62.5 + brightCyan: 29.3 + brightWhite: 52.7 diff --git a/themes/zhxo-red-experimental.yaml b/themes/zhxo-red-experimental.yaml new file mode 100644 index 00000000..d68e0e4a --- /dev/null +++ b/themes/zhxo-red-experimental.yaml @@ -0,0 +1,49 @@ +name: "zhxo'red (experimental)" +source: + marketplace_id: "shwuy.zhxo-themes" + version: "2.0.1" + installs: 1481 + author: "shwuy" + repo: "https://github.com/sxhk0/.theme" + url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" +colors: + bg: "#1A1A1D" + fg: "#ABABAB" + black: "#3B3B3B" + red: "#E03C3C" + green: "#22CD8B" + yellow: "#EEC051" + blue: "#668BE2" + magenta: "#A34BB0" + cyan: "#10CCD5" + white: "#CBCBCB" + brightBlack: "#66676F" + brightRed: "#F08359" + brightGreen: "#3FE6A3" + brightYellow: "#FBFB7B" + brightBlue: "#81A6FD" + brightMagenta: "#C970D6" + brightCyan: "#4DEAEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 55.4 + black: 0 + red: 31.9 + green: 61.2 + yellow: 70.9 + blue: 40.1 + magenta: 26.2 + cyan: 63.5 + white: 73.7 + brightBlack: 22.3 + brightRed: 50.3 + brightGreen: 74.7 + brightYellow: 99.7 + brightBlue: 53.8 + brightMagenta: 42.8 + brightCyan: 80 + brightWhite: 106.5 diff --git a/themes/zhxo-st.yaml b/themes/zhxo-st.yaml new file mode 100644 index 00000000..794a31ca --- /dev/null +++ b/themes/zhxo-st.yaml @@ -0,0 +1,49 @@ +name: "zhxo'st" +source: + marketplace_id: "shwuy.zhxo-themes" + version: "2.0.1" + installs: 1481 + author: "shwuy" + repo: "https://github.com/sxhk0/.theme" + url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" +colors: + bg: "#1B1A1A" + fg: "#B8BCD9" + black: "#3B3B3B" + red: "#E03C3C" + green: "#22CD8B" + yellow: "#EEC051" + blue: "#668BE2" + magenta: "#A34BB0" + cyan: "#10CCD5" + white: "#CBCBCB" + brightBlack: "#66676F" + brightRed: "#F08359" + brightGreen: "#3FE6A3" + brightYellow: "#FBFB7B" + brightBlue: "#81A6FD" + brightMagenta: "#C970D6" + brightCyan: "#4DEAEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 65.8 + black: 0 + red: 31.9 + green: 61.2 + yellow: 70.9 + blue: 40.1 + magenta: 26.2 + cyan: 63.5 + white: 73.7 + brightBlack: 22.3 + brightRed: 50.3 + brightGreen: 74.7 + brightYellow: 99.7 + brightBlue: 53.8 + brightMagenta: 42.8 + brightCyan: 80 + brightWhite: 106.5 diff --git a/themes/zhxo-yll.yaml b/themes/zhxo-yll.yaml new file mode 100644 index 00000000..9f22fcc9 --- /dev/null +++ b/themes/zhxo-yll.yaml @@ -0,0 +1,49 @@ +name: "zhxo'yll" +source: + marketplace_id: "shwuy.zhxo-themes" + version: "2.0.1" + installs: 1481 + author: "shwuy" + repo: "https://github.com/sxhk0/.theme" + url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" +colors: + bg: "#131313" + fg: "#BCBCBC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 65.7 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/zinc.yaml b/themes/zinc.yaml new file mode 100644 index 00000000..bc332bd8 --- /dev/null +++ b/themes/zinc.yaml @@ -0,0 +1,49 @@ +name: "Zinc" +source: + marketplace_id: "MadsSR.zinc-theme" + version: "0.0.11" + installs: 265 + author: "MadsSR" + repo: "https://github.com/MadsSR/zinc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MadsSR.zinc-theme" +colors: + bg: "#19191F" + fg: "#CCCCCC" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 285 + contrast: + fg: 74.4 + black: 8.6 + red: 36.4 + green: 60.1 + yellow: 48.3 + blue: 49.4 + magenta: 38.8 + cyan: 52.2 + white: 82.8 + brightBlack: 15.2 + brightRed: 45.8 + brightGreen: 76.5 + brightYellow: 61 + brightBlue: 63.5 + brightMagenta: 50 + brightCyan: 67.5 + brightWhite: 90.4 diff --git a/themes/zokugun-obsidium.yaml b/themes/zokugun-obsidium.yaml new file mode 100644 index 00000000..99076f64 --- /dev/null +++ b/themes/zokugun-obsidium.yaml @@ -0,0 +1,49 @@ +name: "Zokugun Obsidium" +source: + marketplace_id: "zokugun.zokugun-theme" + version: "0.6.2" + installs: 1909 + author: "zokugun" + repo: "https://github.com/zokugun/theme-zokugun-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=zokugun.zokugun-theme" +colors: + bg: "#000000" + fg: "#DADADA" + black: "#000000" + red: "#B33320" + green: "#44AC2D" + yellow: "#999900" + blue: "#4C41DB" + magenta: "#CF48CF" + cyan: "#00A6B2" + white: "#BFBFBF" + brightBlack: "#828282" + brightRed: "#E50000" + brightGreen: "#00D900" + brightYellow: "#E5E500" + brightBlue: "#0000FF" + brightMagenta: "#E500E5" + brightCyan: "#00E5E5" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 84.2 + black: 0 + red: 22.3 + green: 46.6 + yellow: 44.8 + blue: 19.3 + magenta: 36.8 + cyan: 46.3 + white: 68 + brightBlack: 35.7 + brightRed: 31.1 + brightGreen: 66.7 + brightYellow: 86.6 + brightBlue: 16.2 + brightMagenta: 38.5 + brightCyan: 77.6 + brightWhite: 91 diff --git a/themes/zordon-colors.yaml b/themes/zordon-colors.yaml new file mode 100644 index 00000000..75f421d8 --- /dev/null +++ b/themes/zordon-colors.yaml @@ -0,0 +1,49 @@ +name: "Zordon Colors" +source: + marketplace_id: "zordon.zordon-color-theme" + version: "1.9.0" + installs: 332 + author: "zordon" + repo: "https://github.com/chrisAndriotti/Zordon-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zordon.zordon-color-theme" +colors: + bg: "#1F1F1F" + fg: "#DCD9D9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 82 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/zoren-breeze.yaml b/themes/zoren-breeze.yaml new file mode 100644 index 00000000..a2544ea3 --- /dev/null +++ b/themes/zoren-breeze.yaml @@ -0,0 +1,49 @@ +name: "Zoren Breeze" +source: + marketplace_id: "viniciuslazzari.zoren" + version: "1.3.1" + installs: 83 + author: "viniciuslazzari" + repo: "https://github.com/viniciuslaz/zoren-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viniciuslazzari.zoren" +colors: + bg: "#1E2228" + fg: "#D4D7DD" + black: "#1E2228" + red: "#E07856" + green: "#6AB06A" + yellow: "#E0B95A" + blue: "#4D9DE0" + magenta: "#B884D6" + cyan: "#5AC5C5" + white: "#D4D7DD" + brightBlack: "#5A6270" + brightRed: "#F09070" + brightGreen: "#84C884" + brightYellow: "#F5D078" + brightBlue: "#6EB4F7" + brightMagenta: "#D0A0F0" + brightCyan: "#78DADA" + brightWhite: "#E8EAED" +meta: + mode: "dark" + accent: "orange" + hue: 258 + contrast: + fg: 79.8 + black: 0 + red: 43.1 + green: 48.7 + yellow: 65 + blue: 44.2 + magenta: 44.6 + cyan: 60.2 + white: 79.8 + brightBlack: 18.8 + brightRed: 53.6 + brightGreen: 61.7 + brightYellow: 78.3 + brightBlue: 56.6 + brightMagenta: 58.7 + brightCyan: 72.4 + brightWhite: 91.7 diff --git a/themes/ztheme.yaml b/themes/ztheme.yaml new file mode 100644 index 00000000..1a6a3dd0 --- /dev/null +++ b/themes/ztheme.yaml @@ -0,0 +1,49 @@ +name: "zTheme" +source: + marketplace_id: "cycscarlos.my-own-theme" + version: "1.0.0" + installs: 6 + author: "Carlos Colmenares Álvarez" + repo: "https://github.com/cycscarlos/myTheme-VSC" + url: "https://marketplace.visualstudio.com/items?itemName=cycscarlos.my-own-theme" +colors: + bg: "#1C3549" + fg: "#FFFFFF" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 244 + contrast: + fg: 102 + black: 0 + red: 34.4 + green: 62.4 + yellow: 77.2 + blue: 51 + magenta: 48.9 + cyan: 54.8 + white: 102 + brightBlack: 10.7 + brightRed: 34.4 + brightGreen: 62.4 + brightYellow: 88.8 + brightBlue: 51 + brightMagenta: 48.9 + brightCyan: 69.1 + brightWhite: 102 diff --git a/themes/ztok.yaml b/themes/ztok.yaml new file mode 100644 index 00000000..a547113f --- /dev/null +++ b/themes/ztok.yaml @@ -0,0 +1,49 @@ +name: "Ztok" +source: + marketplace_id: "KrlosDev.ztok" + version: "1.0.5" + installs: 885 + author: "KrlosDev" + repo: "https://github.com/KrlosDev/ztok" + url: "https://marketplace.visualstudio.com/items?itemName=KrlosDev.ztok" +colors: + bg: "#222222" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#49D59C" + blue: "#FAF7DC" + magenta: "#BC3FBC" + cyan: "#FAF7DC" + white: "#FAF7DC" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#49D59C" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 58 + black: 0 + red: 25.3 + green: 51.6 + yellow: 65.4 + blue: 99.4 + magenta: 28.3 + cyan: 99.4 + white: 99.4 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 65.4 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/zunda-dark.yaml b/themes/zunda-dark.yaml new file mode 100644 index 00000000..78c0d7a4 --- /dev/null +++ b/themes/zunda-dark.yaml @@ -0,0 +1,49 @@ +name: "Zunda dark" +source: + marketplace_id: "Matcha.zunda" + version: "0.0.9" + installs: 385 + author: "Matcha" + repo: "https://github.com/MatchaScript/zunda" + url: "https://marketplace.visualstudio.com/items?itemName=Matcha.zunda" +colors: + bg: "#000000" + fg: "#DFDEDF" + black: "#000000" + red: "#C72E2E" + green: "#158844" + yellow: "#FF9500" + blue: "#2A6DD7" + magenta: "#5E5CE7" + cyan: "#2480B5" + white: "#DFDEDF" + brightBlack: "#EBEBF5" + brightRed: "#FF375F" + brightGreen: "#30D158" + brightYellow: "#FFE620" + brightBlue: "#2094FA" + brightMagenta: "#BF5AF2" + brightCyan: "#00E4E3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 86.8 + black: 0 + red: 26.1 + green: 30.7 + yellow: 59.4 + blue: 28.1 + magenta: 27.3 + cyan: 31.9 + white: 86.8 + brightBlack: 95.3 + brightRed: 40.6 + brightGreen: 63.7 + brightYellow: 90.9 + brightBlue: 43.8 + brightMagenta: 39.6 + brightCyan: 77 + brightWhite: 107.9 diff --git a/themes/zux-purple-minimal.yaml b/themes/zux-purple-minimal.yaml new file mode 100644 index 00000000..d9ac6a7a --- /dev/null +++ b/themes/zux-purple-minimal.yaml @@ -0,0 +1,49 @@ +name: "zux purple - minimal" +source: + marketplace_id: "giovanicavila.zux" + version: "0.0.6" + installs: 28 + author: "Giovani Avila" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=giovanicavila.zux" +colors: + bg: "#151719" + fg: "#E1E1E0" + black: "#474747" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 87.5 + black: 9.9 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/zwel.yaml b/themes/zwel.yaml new file mode 100644 index 00000000..3b4134b6 --- /dev/null +++ b/themes/zwel.yaml @@ -0,0 +1,49 @@ +name: "ZweL" +source: + marketplace_id: "ZweL.zwel" + version: "0.0.3" + installs: 63 + author: "ZweL" + repo: "https://github.com/zwelhtetyan/ZweL-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ZweL.zwel" +colors: + bg: "#1D2423" + fg: "#B4B4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 186 + contrast: + fg: 59.3 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 28.2 + cyan: 46 + white: 88.5 + brightBlack: 20.5 + brightRed: 37.1 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/zxxn.yaml b/themes/zxxn.yaml new file mode 100644 index 00000000..2f88ca26 --- /dev/null +++ b/themes/zxxn.yaml @@ -0,0 +1,49 @@ +name: "Zxxn" +source: + marketplace_id: "aki4003.zxxn-theme" + version: "1.0.5" + installs: 43 + author: "aki4003" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aki4003.zxxn-theme" +colors: + bg: "#0E141F" + fg: "#8AB6D9" + black: "#000000" + red: "#CD3131" + green: "#5BD1A4" + yellow: "#E5E510" + blue: "#5B97D6" + magenta: "#BC3FBC" + cyan: "#5CC7E2" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#98C8FF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 262 + contrast: + fg: 59.3 + black: 0 + red: 27 + green: 66.1 + yellow: 85.9 + blue: 43.6 + magenta: 30 + cyan: 64.2 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 70.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/zygomatic-blue.yaml b/themes/zygomatic-blue.yaml new file mode 100644 index 00000000..302bc31f --- /dev/null +++ b/themes/zygomatic-blue.yaml @@ -0,0 +1,49 @@ +name: "Zygomatic Blue" +source: + marketplace_id: "jugal13.zygoma" + version: "0.2.3" + installs: 164 + author: "Jugal" + repo: "https://github.com/jugal13/zygomatic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=jugal13.zygoma" +colors: + bg: "#212121" + fg: "#D4D4D4" + black: "#868686" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFEE00" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 78.2 + black: 35.4 + red: 25.4 + green: 51.7 + yellow: 92.3 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/zyrotec.yaml b/themes/zyrotec.yaml new file mode 100644 index 00000000..3ea23753 --- /dev/null +++ b/themes/zyrotec.yaml @@ -0,0 +1,49 @@ +name: "zyrotec" +source: + marketplace_id: "zyrotec.zyrotec-theme" + version: "0.0.1" + installs: 33 + author: "zyrotec" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=zyrotec.zyrotec-theme" +colors: + bg: "#171717" + fg: "#FFFFFF" + black: "#171717" + red: "#A65548" + green: "#94AD4F" + yellow: "#D9C188" + blue: "#43888B" + magenta: "#A26B88" + cyan: "#598B6F" + white: "#EAD7A9" + brightBlack: "#757575" + brightRed: "#C76A5C" + brightGreen: "#AEC964" + brightYellow: "#EBD7A8" + brightBlue: "#46B4B9" + brightMagenta: "#C082A2" + brightCyan: "#68B188" + brightWhite: "#F7EBCF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 106.9 + black: 0 + red: 25.1 + green: 51.7 + yellow: 69.5 + blue: 32.7 + magenta: 31.8 + cyan: 34 + white: 82.2 + brightBlack: 28.6 + brightRed: 36.3 + brightGreen: 66.7 + brightYellow: 82.3 + brightBlue: 52.6 + brightMagenta: 43.9 + brightCyan: 51.1 + brightWhite: 94.3 diff --git a/themes/zzhtheme-dark.yaml b/themes/zzhtheme-dark.yaml new file mode 100644 index 00000000..bbd7c672 --- /dev/null +++ b/themes/zzhtheme-dark.yaml @@ -0,0 +1,49 @@ +name: "ZzhTheme Dark" +source: + marketplace_id: "langlang.zzh-theme" + version: "3.5.8" + installs: 249 + author: "langlang" + repo: "https://github.com/zhaogongchengsi/zzh-vs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=langlang.zzh-theme" +colors: + bg: "#191919" + fg: "#F4F9F9" + black: "#202020" + red: "#901110" + green: "#1C5A25" + yellow: "#7E6C06" + blue: "#0A4694" + magenta: "#FF1A9C" + cyan: "#00838F" + white: "#202020" + brightBlack: "#606060" + brightRed: "#D73324" + brightGreen: "#32953D" + brightYellow: "#D2AF0F" + brightBlue: "#1D75DB" + brightMagenta: "#FF4DB2" + brightCyan: "#01ACC1" + brightWhite: "#606060" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 102 + black: 0 + red: 11.6 + green: 12.7 + yellow: 24.9 + blue: 10.8 + magenta: 39.5 + cyan: 29.6 + white: 0 + brightBlack: 19.3 + brightRed: 28.8 + brightGreen: 35.1 + brightYellow: 59.6 + brightBlue: 29.5 + brightMagenta: 44.8 + brightCyan: 48.4 + brightWhite: 19.3 diff --git a/themes/zzhtheme-light.yaml b/themes/zzhtheme-light.yaml new file mode 100644 index 00000000..a98ad443 --- /dev/null +++ b/themes/zzhtheme-light.yaml @@ -0,0 +1,49 @@ +name: "ZzhTheme Light" +source: + marketplace_id: "langlang.zzh-theme" + version: "3.5.8" + installs: 249 + author: "langlang" + repo: "https://github.com/zhaogongchengsi/zzh-vs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=langlang.zzh-theme" +colors: + bg: "#F9F9F9" + fg: "#333333" + black: "#202020" + red: "#901110" + green: "#1C5A25" + yellow: "#7E6C06" + blue: "#0A4694" + magenta: "#FF1A9C" + cyan: "#00838F" + white: "#202020" + brightBlack: "#606060" + brightRed: "#D73324" + brightGreen: "#32953D" + brightYellow: "#D2AF0F" + brightBlue: "#1D75DB" + brightMagenta: "#FF4DB2" + brightCyan: "#01ACC1" + brightWhite: "#606060" +meta: + mode: "light" + accent: "red" + hue: null + contrast: + fg: 95.1 + black: 99.7 + red: 85.9 + green: 84.7 + yellow: 72.1 + blue: 86.6 + magenta: 57.4 + cyan: 67.2 + white: 99.7 + brightBlack: 77.8 + brightRed: 68 + brightGreen: 61.7 + brightYellow: 37.9 + brightBlue: 67.4 + brightMagenta: 52.1 + brightCyan: 48.7 + brightWhite: 77.8 From b6e97894814d4561faa7f167d95d34c01e5f1035 Mon Sep 17 00:00:00 2001 From: Ismael Canal Date: Wed, 18 Mar 2026 23:13:05 +0100 Subject: [PATCH 03/21] Add new set of scrapped themes --- cli/src/theme-schema.ts | 6 + cli/src/theme.ts | 134 +- scripts/scrape-themes.ts | 110 +- themes/.yaml | 49 - themes/07-dark.yaml | 1 + themes/07-light.yaml | 1 + themes/0a515-dark.yaml | 1 + themes/0x96f-theme.yaml | 3 +- themes/1.yaml | 11 +- themes/10x-dark-theme.yaml | 1 + themes/111-theme.yaml | 49 - themes/1977.yaml | 1 + themes/1989.yaml | 1 + themes/19th-century.yaml | 1 + themes/1dark-poncho-hc.yaml | 3 +- themes/1mm-dracula.yaml | 3 +- themes/2-colors.yaml | 1 + themes/2077.yaml | 1 + themes/24.yaml | 59 +- themes/2am.yaml | 1 + themes/365-6-coder-theme.yaml | 1 + themes/365-day-october-dark.yaml | 3 +- themes/3xay.yaml | 1 + themes/4-colours.yaml | 1 + themes/404-flat.yaml | 1 + themes/42nd.yaml | 1 + themes/4am-session-aqua.yaml | 1 + themes/4am-session-blue.yaml | 1 + themes/4am-session-green.yaml | 1 + themes/4am-session-orange.yaml | 1 + themes/4am-session-red.yaml | 1 + themes/4am-session-yellow.yaml | 1 + themes/6szn.yaml | 1 + themes/7lou-theme.yaml | 1 + themes/8-bit-dark.yaml | 3 +- themes/8-bit-light.yaml | 3 +- themes/8-bit-theme.yaml | 1 + themes/80-neon-vibes-fluor.yaml | 3 +- themes/80-neon-vibes.yaml | 3 +- themes/808s-heartbreak-theme.yaml | 1 + themes/8v.yaml | 1 + themes/8x8-dark-fork.yaml | 1 + themes/8x8-darker.yaml | 1 + themes/9-way-ticket.yaml | 1 + themes/a-2-theme.yaml | 1 + themes/a-cup-of-coffee.yaml | 1 + themes/a-github-dark-dimmed-1-red.yaml | 3 +- themes/a-github-dark-dimmed-2-orange.yaml | 3 +- themes/a-github-dark-dimmed-3-green.yaml | 3 +- themes/a-github-dark-dimmed-4-blue.yaml | 3 +- themes/a-github-dark-dimmed-5-purple.yaml | 3 +- themes/a-github-dark-dimmed-brown.yaml | 3 +- themes/a-github-dark-dimmed-muted.yaml | 3 +- themes/a-github-dark-dimmed-vampire.yaml | 3 +- themes/a-github-dark-high-contrast-1-red.yaml | 3 +- .../a-github-dark-high-contrast-2-orange.yaml | 3 +- .../a-github-dark-high-contrast-3-green.yaml | 3 +- .../a-github-dark-high-contrast-4-blue.yaml | 3 +- .../a-github-dark-high-contrast-5-purple.yaml | 3 +- themes/a-github-dark-muted.yaml | 3 +- themes/a-github-dark-vampire.yaml | 3 +- themes/a-github-light-1-red.yaml | 3 +- themes/a-github-light-2-orange.yaml | 3 +- themes/a-github-light-3-green.yaml | 3 +- themes/a-github-light-4-blue.yaml | 3 +- themes/a-github-light-5-purple.yaml | 3 +- themes/a-green-cat-dimmed.yaml | 3 +- themes/a-green-cat-v2.yaml | 49 - themes/aauu.yaml | 1 + themes/ab-dark.yaml | 1 + themes/abcdef.yaml | 1 + themes/abe-land.yaml | 1 + themes/abissal.yaml | 1 + themes/aboc.yaml | 1 + themes/abolkog-dark.yaml | 3 +- themes/abolkog-light.yaml | 3 +- themes/absent-contrast.yaml | 13 +- themes/absent-light.yaml | 13 +- themes/absent.yaml | 13 +- themes/abstract-mh.yaml | 1 + themes/abyskai.yaml | 1 + themes/abyss.yaml | 21 +- themes/acario.yaml | 1 + themes/acekaizen-calmly-dark.yaml | 49 - themes/acequartz.yaml | 1 + themes/aclear-dark.yaml | 1 + themes/acme.yaml | 1 + themes/aconitum-clean.yaml | 49 - themes/acs-cozy-dark.yaml | 1 + themes/adapt-dark.yaml | 1 + themes/adark.yaml | 1 + themes/adech-theme-legacy.yaml | 1 + themes/adech-theme-superior.yaml | 1 + themes/adey-coder-deep-dark.yaml | 3 +- themes/adey-coder.yaml | 3 +- themes/adonis.yaml | 5 +- themes/adrift.yaml | 1 + themes/advancedbat.yaml | 1 + themes/aelmouny11-theme.yaml | 1 + themes/aeridia.yaml | 1 + themes/aesir-theme.yaml | 1 + themes/aesthetic-dark.yaml | 3 +- themes/aesthetic.yaml | 3 +- themes/aether-abyss.yaml | 1 + themes/aether-abyssal.yaml | 1 + themes/aether-arctic.yaml | 1 + themes/aether-atlantis.yaml | 1 + themes/aether-aurora.yaml | 1 + themes/aether-borealis.yaml | 1 + themes/aether-carbon.yaml | 1 + themes/aether-clarity.yaml | 1 + themes/aether-coffee-dark.yaml | 1 + themes/aether-coffee.yaml | 1 + themes/aether-cosmos.yaml | 1 + themes/aether-dark-space.yaml | 1 + themes/aether-dark.yaml | 1 + themes/aether-dawn.yaml | 1 + themes/aether-deep-ocean.yaml | 1 + themes/aether-depths.yaml | 1 + themes/aether-dusk.yaml | 1 + themes/aether-emerald.yaml | 1 + themes/aether-forest.yaml | 1 + themes/aether-glass.yaml | 1 + themes/aether-light.yaml | 1 + themes/aether-mariana.yaml | 1 + themes/aether-matrix.yaml | 1 + themes/aether-midnight.yaml | 1 + themes/aether-nautilus.yaml | 1 + themes/aether-nebula.yaml | 1 + themes/aether-neon.yaml | 1 + themes/aether-neptune.yaml | 1 + themes/aether-oceanic.yaml | 1 + themes/aether-quantum.yaml | 1 + themes/aether-reef.yaml | 1 + themes/aether-stellar.yaml | 1 + themes/aether-tempest.yaml | 1 + themes/aether-tidal.yaml | 1 + themes/aether-trench-contrast.yaml | 1 + themes/aether-twilight.yaml | 1 + themes/aether-void.yaml | 1 + themes/aether-zen.yaml | 1 + themes/aether.yaml | 1 + themes/aetherglow.yaml | 1 + themes/afternoon-delight-subtle.yaml | 1 + themes/afterpurple.yaml | 1 + themes/agathist-dark.yaml | 1 + themes/agen-theme.yaml | 1 + themes/ahoy-theme.yaml | 1 + themes/ahroun.yaml | 1 + themes/aka-kuro-light.yaml | 1 + themes/akagami-dark.yaml | 1 + themes/akagami-light.yaml | 1 + themes/akari-dawn.yaml | 1 + themes/akari-night.yaml | 1 + themes/akihabara.yaml | 3 +- themes/aksin.yaml | 1 + themes/akumanomi-theme.yaml | 3 +- themes/akurdor.yaml | 1 + themes/alabaster-dark.yaml | 1 + themes/alchemist-s-orchid-dark.yaml | 1 + themes/alchemist-s-orchid-light.yaml | 1 + themes/alchemist-s-orchid-sepia.yaml | 1 + themes/alchemy-theme.yaml | 3 +- themes/aldrico-s-gruvbox.yaml | 3 +- themes/aldrico-s.yaml | 49 - themes/alien-blood.yaml | 1 + themes/alien-terminal-nostromo-amber.yaml | 3 +- themes/alien-terminal-nostromo-green.yaml | 3 +- themes/alien-terminal-sevastopol-link.yaml | 3 +- themes/alive-dark-theme.yaml | 49 - themes/all-black.yaml | 3 +- themes/all-blue.yaml | 1 + themes/all-nighter-theme.yaml | 1 + themes/alligator-light.yaml | 1 + themes/alligator-solarized-dark.yaml | 1 + themes/alligator-solarized-light.yaml | 1 + themes/allomancer.yaml | 1 + themes/allure-contrast.yaml | 13 +- themes/allure-light.yaml | 13 +- themes/allure.yaml | 13 +- themes/alma-sakura-theme.yaml | 3 +- themes/almond-cream.yaml | 3 +- themes/alpha.yaml | 1 + themes/alpine-warm.yaml | 1 + themes/alpine.yaml | 1 + themes/altearn.yaml | 1 + themes/altered-matter-dopamin-owl.yaml | 3 +- themes/alternight.yaml | 1 + themes/altin-s-love-symphony.yaml | 1 + themes/alucard-sotn.yaml | 1 + themes/alx-theme-classic.yaml | 1 + themes/alx-theme-normal.yaml | 49 - themes/amadeus-dark-cobalt.yaml | 1 + themes/amadeus-dark-pastel.yaml | 1 + themes/amadeus-dark.yaml | 1 + themes/amaranth-red-eerie-black-fork.yaml | 49 - themes/amazonfrog.yaml | 3 +- themes/amber-blue-light.yaml | 49 - themes/amber-blue.yaml | 49 - themes/amber-color-theme.yaml | 49 - themes/ambient.yaml | 1 + themes/amethyst-kiss-dark-amethyst-mode.yaml | 49 - themes/amethyst-kiss-light-amethyst-mode.yaml | 49 - themes/amethyst-theme.yaml | 1 + themes/amoled-dark-theme.yaml | 13 +- themes/amoledtest-fork-fork.yaml | 1 + themes/amora.yaml | 1 + themes/amozonia.yaml | 3 +- themes/amp-dark.yaml | 3 +- themes/amp-light.yaml | 3 +- themes/an-bis.yaml | 1 + themes/anakmun.yaml | 1 + themes/analog-dream-beige-terminal.yaml | 1 + themes/analog-dream-magnetic-night.yaml | 1 + themes/anastasia.yaml | 1 + themes/andromeda-custom.yaml | 1 + themes/andromeda-light-italic-bordered.yaml | 1 + themes/andromeda-zed.yaml | 1 + themes/andromeda.yaml | 3 +- themes/anemones.yaml | 1 + themes/angrboda-dark.yaml | 1 + themes/angrboda-light.yaml | 1 + themes/angular-dark-theme.yaml | 3 +- themes/animatrix.yaml | 3 +- themes/animetheme.yaml | 3 +- themes/anisochromatic.yaml | 1 + themes/ano-theme-dark.yaml | 1 + themes/anoldhope.yaml | 3 +- themes/anquyx-fork.yaml | 49 - themes/anthropic-dark.yaml | 1 + themes/anthropic-light.yaml | 1 + themes/anthropic.yaml | 3 +- themes/anti-glare-moonlit.yaml | 1 + themes/anti-glare-nebula.yaml | 1 + themes/anti-glare-official.yaml | 1 + themes/anti-gravity-pink.yaml | 3 +- themes/antidote.yaml | 1 + themes/antimaterial.yaml | 1 + themes/anubis-dark-theme.yaml | 1 + themes/anubis-dark.yaml | 1 + themes/anubis-light.yaml | 1 + themes/anya.yaml | 49 - themes/apathy-experimental.yaml | 1 + themes/apathy.yaml | 1 + themes/apcodespaces.yaml | 1 + themes/apex.yaml | 3 +- themes/apollo-dark.yaml | 3 +- themes/apollo-light.yaml | 3 +- themes/apparently-purple.yaml | 1 + themes/apple-dancheong-minimal-light.yaml | 1 + themes/apprentice.yaml | 1 + themes/april-dark-theme.yaml | 3 +- themes/aquamain.yaml | 3 +- themes/aquanova.yaml | 3 +- themes/arabian-nights.yaml | 3 +- themes/arabian-theme.yaml | 1 + themes/arc-dark.yaml | 3 +- themes/arcadia-theme-dark.yaml | 9 +- themes/arcadia-theme-storm.yaml | 9 +- themes/arcaea.yaml | 1 + themes/archangel-dusk.yaml | 1 + themes/archangel.yaml | 1 + themes/archie-dark-color-theme.yaml | 1 + themes/architect-dark-fork.yaml | 3 +- themes/arctic-depth.yaml | 3 +- themes/arctic-night.yaml | 1 + themes/arctis-dark.yaml | 13 +- themes/arctis-high-contrast.yaml | 13 +- themes/arctis-light.yaml | 13 +- themes/arctis-moon.yaml | 13 +- themes/arctis-night.yaml | 13 +- themes/arctis.yaml | 13 +- themes/ares-tron-legacy.yaml | 3 +- themes/arete-theme.yaml | 1 + themes/argonaut.yaml | 1 + themes/argprocolor.yaml | 1 + themes/ariake-sands.yaml | 3 +- themes/ariake-sun.yaml | 3 +- themes/aries.yaml | 3 +- themes/arkaios-theme.yaml | 1 + themes/arkinetictheme.yaml | 1 + themes/arkku.yaml | 1 + themes/armada.yaml | 89 +- themes/aroace-high-contrast.yaml | 1 + themes/aroace-light.yaml | 1 + themes/aroace.yaml | 1 + themes/aromantic.yaml | 1 + themes/arrakis-day.yaml | 1 + themes/arrakis-night.yaml | 1 + themes/arrpee.yaml | 1 + themes/arstotzka-contrast.yaml | 13 +- themes/arstotzka-light.yaml | 13 +- themes/arstotzka.yaml | 13 +- themes/artinpixel-turquoise-theme-dark.yaml | 1 + themes/artinpixel-turquoise-theme.yaml | 1 + themes/artisan-theme.yaml | 1 + themes/artlab-dark.yaml | 1 + themes/artlab-light.yaml | 1 + themes/arunika.yaml | 1 + themes/as-theme.yaml | 1 + themes/asdfasdfuntitled.yaml | 1 + themes/asexual.yaml | 1 + themes/asgtheme.yaml | 1 + themes/ash-ember.yaml | 3 +- themes/ash-lumen-light.yaml | 3 +- themes/ash-lumen.yaml | 3 +- themes/ash.yaml | 85 +- themes/ashen-darker.yaml | 2 +- themes/ashen.yaml | 2 +- themes/ashineui.yaml | 1 + themes/aspiesoft-intellij-theme.yaml | 3 +- themes/aspire-core.yaml | 1 + themes/aspire-dark.yaml | 1 + themes/aspire-light.yaml | 1 + themes/assam-tea-gardens.yaml | 1 + themes/asteria.yaml | 1 + themes/astigmatism-theme.yaml | 3 +- themes/astra.yaml | 3 +- themes/astral-theme.yaml | 1 + themes/astro-dark.yaml | 3 +- themes/astro-kanagawa.yaml | 3 +- themes/astro-light.yaml | 3 +- themes/astrofunk-dark.yaml | 1 + themes/astronaut.yaml | 1 + themes/astrus-midnight.yaml | 1 + themes/astrus-nebula.yaml | 1 + themes/astrus-standard.yaml | 1 + themes/asuka-theme-light.yaml | 3 +- themes/asuka-theme.yaml | 3 +- themes/athabasca-light.yaml | 3 +- themes/athabasca.yaml | 3 +- themes/atilio.yaml | 1 + themes/atlantu.yaml | 1 + themes/atom-homepage-fork.yaml | 1 + themes/atom-material-theme.yaml | 1 + themes/atom-one-dark-coal.yaml | 3 +- themes/atom-one-dark-cyan.yaml | 1 + themes/atom-one-light-cyan.yaml | 1 + themes/atom-one-light-modern.yaml | 3 +- themes/atomax-colorblind-light.yaml | 1 + themes/atomax-dark-dimmed.yaml | 1 + themes/atomax-dark-tritanopia.yaml | 1 + themes/atomax-dark.yaml | 1 + themes/atomax-high-contrast.yaml | 1 + themes/atomax-light-tritanopia.yaml | 1 + themes/atomax-light.yaml | 1 + themes/atomicc.yaml | 1 + themes/atomify.yaml | 1 + themes/atomized-theme.yaml | 1 + themes/atomizer-dark-island.yaml | 3 +- .../attack-on-titan-eren-s-determination.yaml | 3 +- themes/attentio-flow.yaml | 1 + themes/attentio-pulse.yaml | 1 + themes/attica.yaml | 1 + themes/aube.yaml | 1 + themes/august-ariake-dark.yaml | 3 +- themes/august-arstotzka-2-darker.yaml | 49 - themes/august-arstotzka-2.yaml | 49 - themes/august-arstotzka-lighter.yaml | 3 +- .../august-beardedtheme-oceanic-reversed.yaml | 3 +- ...ust-beardedtheme-surprising-blueberry.yaml | 3 +- themes/august-catppuccin.yaml | 13 +- themes/august-city-lights-darker.yaml | 3 +- themes/august-city-lights.yaml | 3 +- themes/august-dark-theme.yaml | 3 +- themes/august-drawbridge-darker.yaml | 3 +- themes/august-drawbridge.yaml | 3 +- themes/august-gruvbox-darker.yaml | 3 +- themes/august-kanagawa-darker.yaml | 3 +- themes/august-material-palenight.yaml | 3 +- themes/august-night-owl-darker.yaml | 3 +- themes/august-night-owl.yaml | 3 +- themes/august-nord-darker.yaml | 3 +- themes/august-nord.yaml | 3 +- themes/august-radical-2.yaml | 3 +- themes/august-radical.yaml | 3 +- themes/august-ros-pine-moon.yaml | 49 - themes/august-ros-pine.yaml | 49 - themes/aura-dark-soft-text.yaml | 13 +- themes/aura-dark.yaml | 13 +- themes/aura-dracula-spirit-soft.yaml | 3 +- themes/aura-dracula-spirit-synthwave.yaml | 3 +- themes/aura-dracula-spirit.yaml | 3 +- themes/aura-soft-dark-soft-text.yaml | 13 +- themes/aura-soft-dark.yaml | 13 +- themes/aurbis-dark.yaml | 1 + themes/aurelconstellation.yaml | 1 + themes/aurora-borealis-theme-dark.yaml | 3 +- themes/aurora-borealis-theme.yaml | 3 +- themes/aurora.yaml | 1 + themes/aurorain.yaml | 1 + themes/aurorasynth-dark.yaml | 1 + themes/aurorasynth-light.yaml | 1 + themes/australian-food-fibre-dark.yaml | 3 +- themes/australian-food-fibre-light.yaml | 3 +- themes/autumn-fork-contrast.yaml | 1 + themes/autumn-fork.yaml | 1 + themes/autumn-highlighter-syntax.yaml | 1 + themes/autumn.yaml | 1 + themes/awesome-dark.yaml | 1 + themes/awesome-theme.yaml | 1 + themes/awesome-vscode-dark.yaml | 1 + themes/axiomatic-dark.yaml | 1 + themes/axiomatic-light.yaml | 1 + themes/ayame.yaml | 1 + themes/ayanokoji.yaml | 1 + themes/aylin.yaml | 3 +- themes/ayu-enhanced.yaml | 1 + themes/ayu-owl.yaml | 3 +- themes/ayu.yaml | 49 - themes/ayudark.yaml | 3 +- themes/ayuloco-dark-bordered.yaml | 1 + themes/ayuloco-dark.yaml | 49 - themes/ayuloco-mirage-bordered.yaml | 1 + themes/ayuloco-mirage.yaml | 1 + themes/ayutokyo-color-theme.yaml | 3 +- themes/ayyour.yaml | 45 +- themes/az0ox-theme-shadesofblue.yaml | 1 + themes/azathoth.yaml | 1 + themes/azeny-cutimaru.yaml | 1 + themes/azeny-inveny.yaml | 1 + themes/azeny-okano.yaml | 1 + themes/azeny.yaml | 1 + themes/azul.yaml | 1 + themes/azure-contrast.yaml | 13 +- themes/azure-dark-teal.yaml | 1 + themes/azure-iris-dark.yaml | 3 +- themes/azure-iris-light.yaml | 3 +- themes/azure-light.yaml | 13 +- themes/azure-noir.yaml | 3 +- themes/azure.yaml | 13 +- themes/b-nt.yaml | 1 + themes/b150-dark.yaml | 1 + themes/b150-light.yaml | 1 + themes/b2b-edge-light.yaml | 1 + ...b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml | 1 + ...9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml | 1 + themes/backspace-dark-glass.yaml | 1 + themes/backspace-dark-vibe-coder.yaml | 1 + themes/backspace-dark-winter.yaml | 1 + themes/backspace-dark.yaml | 1 + themes/backspace-light.yaml | 1 + themes/baculum-color-lightup-comment.yaml | 49 - themes/baculum-color-minimal-2.yaml | 1 + themes/baculum-color-minimal-vantablack.yaml | 49 - themes/baculum-dark-color.yaml | 1 + themes/badbird.yaml | 1 + themes/baitul-hikmah-professional.yaml | 1 + themes/baiyuechu.yaml | 74 +- themes/bakaneo.yaml | 1 + ...ance-pink-colorblind-compassion-focus.yaml | 1 + themes/balance-pink-compassion-focus.yaml | 1 + ...e-pink-high-contrast-compassion-focus.yaml | 1 + .../balance-pink-light-compassion-focus.yaml | 1 + themes/ballerini-theme.yaml | 3 +- themes/bam.yaml | 1 + themes/bamboo-green.yaml | 1 + themes/bamboo.yaml | 1 + themes/ban-light.yaml | 1 + themes/ban-night.yaml | 1 + themes/ban-typhoon.yaml | 1 + themes/bandmeup.yaml | 1 + themes/banner-contrast.yaml | 13 +- themes/banner-light.yaml | 13 +- themes/banner.yaml | 13 +- themes/barbenheimer-bunker.yaml | 3 +- themes/barbenheimer-dreamhouse.yaml | 3 +- themes/barbenheimer-nuclear-sunrise.yaml | 3 +- themes/barbie-light.yaml | 3 +- themes/barbie-theme.yaml | 3 +- themes/barbie.yaml | 3 +- themes/barney-pro.yaml | 3 +- themes/base-color-theme.yaml | 3 +- themes/base-minor-dark-hard.yaml | 1 + themes/base-minor-dark-soft.yaml | 1 + themes/base-minor-soft.yaml | 1 + themes/base-minor.yaml | 49 - themes/base16-3024-dark.yaml | 3 +- themes/base16-3024-light.yaml | 3 +- themes/base16-apathy-dark.yaml | 3 +- themes/base16-apathy-light.yaml | 3 +- themes/base16-ashes-dark.yaml | 3 +- themes/base16-ashes-light.yaml | 3 +- themes/base16-bespin-dark.yaml | 3 +- themes/base16-bespin-light.yaml | 3 +- themes/base16-brewer-dark.yaml | 3 +- themes/base16-brewer-light.yaml | 3 +- themes/base16-bright-dark.yaml | 3 +- themes/base16-bright-light.yaml | 3 +- themes/base16-codeschool-dark.yaml | 3 +- themes/base16-codeschool-light.yaml | 3 +- themes/base16-default-dark.yaml | 3 +- themes/base16-default-light.yaml | 3 +- themes/base16-eighties-dark.yaml | 3 +- themes/base16-eighties-light.yaml | 3 +- themes/base16-embers-dark.yaml | 3 +- themes/base16-embers-light.yaml | 3 +- themes/base16-flat-dark.yaml | 3 +- themes/base16-flat-light.yaml | 3 +- themes/base16-google-dark.yaml | 3 +- themes/base16-google-light.yaml | 3 +- themes/base16-grayscale-dark.yaml | 3 +- themes/base16-grayscale-light.yaml | 3 +- themes/base16-green-screen-dark.yaml | 3 +- themes/base16-green-screen-light.yaml | 3 +- themes/base16-harmonic16-dark.yaml | 3 +- themes/base16-harmonic16-light.yaml | 3 +- themes/base16-isotope-dark.yaml | 3 +- themes/base16-isotope-light.yaml | 3 +- themes/base16-marrakesh-dark.yaml | 3 +- themes/base16-marrakesh-light.yaml | 3 +- themes/base16-mocha-dark.yaml | 3 +- themes/base16-mocha-light.yaml | 3 +- themes/base16-monokai-dark.yaml | 3 +- themes/base16-monokai-light.yaml | 3 +- themes/base16-ocean-dark.yaml | 3 +- themes/base16-ocean-light.yaml | 3 +- themes/base16-oceanicnext-dark.yaml | 3 +- themes/base16-oceanicnext-light.yaml | 3 +- themes/base16-paraiso-dark.yaml | 3 +- themes/base16-paraiso-light.yaml | 3 +- themes/base16-pop-dark.yaml | 3 +- themes/base16-pop-light.yaml | 3 +- themes/base16-railscasts-dark.yaml | 3 +- themes/base16-railscasts-light.yaml | 3 +- themes/base16-shapeshifter-dark.yaml | 3 +- themes/base16-shapeshifter-light.yaml | 3 +- themes/base16-solarized-dark.yaml | 3 +- themes/base16-solarized-light.yaml | 3 +- themes/base16-summerfruit-dark.yaml | 3 +- themes/base16-summerfruit-light.yaml | 3 +- themes/base16-tomorrow-dark.yaml | 3 +- themes/base16-tomorrow-light.yaml | 3 +- themes/base16-twilight-dark.yaml | 3 +- themes/base16-twilight-light.yaml | 3 +- themes/base16-unikitty-dark.yaml | 3 +- themes/base16-unikitty-light.yaml | 3 +- themes/base16-woodland-dark.yaml | 3 +- themes/basic-black.yaml | 1 + themes/basic-blue.yaml | 1 + themes/basterdized.yaml | 2 +- themes/bat.yaml | 3 +- themes/batsignal-light-color-theme.yaml | 1 + themes/bazutya.yaml | 1 + themes/bbbalabamasuntan.yaml | 1 + themes/bbbdark.yaml | 1 + themes/bbbhotdogstand.yaml | 1 + themes/bbogdanov-dark.yaml | 1 + themes/bbogdanov-light.yaml | 1 + themes/bc-theme.yaml | 1 + themes/beacrisg.yaml | 1 + themes/bedarx-obsidian.yaml | 3 +- themes/bedarx-onyx.yaml | 3 +- themes/bedarx-pearl.yaml | 3 +- themes/bedarx-sapphire.yaml | 3 +- themes/bee-theme-color-theme-tow.yaml | 1 + themes/bee-theme.yaml | 1 + themes/beerish.yaml | 1 + themes/behavai-vitesse.yaml | 1 + themes/behavai.yaml | 1 + themes/beloco-italic.yaml | 49 - themes/benimaru.yaml | 49 - themes/berg.yaml | 1 + themes/berkeley.yaml | 1 + themes/bernadoque-theme.yaml | 1 + themes/berry-blast-theme.yaml | 1 + themes/berry-latte-light.yaml | 1 + themes/bersk.yaml | 1 + themes/beru.yaml | 3 +- themes/best-themes-monokai-next.yaml | 49 - themes/best-themes-one-monokai.yaml | 13 +- themes/better-coding-dark.yaml | 1 + themes/better-oceanic-next.yaml | 1 + themes/better-selenized-dark.yaml | 13 +- themes/better-solarized-dark-italic.yaml | 13 +- themes/better-solarized-dark.yaml | 1 + themes/bhwm715-even-darker.yaml | 1 + themes/bianconero.yaml | 1 + themes/bibauporto-simple.yaml | 49 - themes/biddeew.yaml | 1 + themes/bigfish.yaml | 1 + themes/bigsur-gtk-theme-dark-blue.yaml | 1 + themes/bini-theme.yaml | 1 + themes/bird.yaml | 1 + themes/bit-intense.yaml | 1 + themes/bit-soft.yaml | 1 + themes/bit.yaml | 1 + themes/bitpurp-dark.yaml | 1 + themes/bits-theme-green-light.yaml | 1 + themes/bits-theme-green.yaml | 1 + themes/bits-theme-light.yaml | 1 + themes/bits-theme-purple-light.yaml | 1 + themes/bits-theme-purple.yaml | 1 + themes/bits-theme.yaml | 1 + themes/bl-nk.yaml | 1 + themes/black-back-dark-e-theme.yaml | 1 + themes/black-color-theme.yaml | 1 + themes/black-ocean.yaml | 3 +- themes/black-on-gray.yaml | 1 + themes/black-pink-rose.yaml | 3 +- themes/black-purple.yaml | 3 +- themes/black-rose.yaml | 1 + themes/black-theme.yaml | 87 +- themes/blackai-theme.yaml | 3 +- themes/blackberry.yaml | 1 + themes/blackbird-dusk.yaml | 1 + themes/blackbird-midnight.yaml | 1 + themes/blackboard-plus.yaml | 1 + themes/blackcoffeedark.yaml | 1 + themes/blackdot.yaml | 1 + themes/blacklite.yaml | 1 + themes/blackout.yaml | 1 + themes/blackpink.yaml | 3 +- themes/blackroulette.yaml | 1 + themes/blackula-theme.yaml | 1 + themes/bladerunner-light.yaml | 1 + themes/bladerunner.yaml | 1 + themes/blah-dark.yaml | 1 + themes/blank-ghibli.yaml | 1 + themes/blank-monochrome.yaml | 1 + themes/blank-moonlight.yaml | 1 + themes/blank-s-theme-reborn.yaml | 1 + themes/blank-uchiha.yaml | 1 + themes/blankeos-zen-theme.yaml | 49 - themes/blaze-orange.yaml | 49 - themes/blinds-dark.yaml | 3 +- themes/blink-contrast.yaml | 13 +- themes/blink-light.yaml | 13 +- themes/blink.yaml | 13 +- themes/bloody-pie.yaml | 1 + themes/bloom-1-1-0.yaml | 1 + themes/blowington.yaml | 1 + themes/blube-dark-light.yaml | 1 + themes/blue-cheese.yaml | 1 + themes/blue-color-theme.yaml | 1 + themes/blue-dark-theme.yaml | 1 + themes/blue-day.yaml | 3 +- themes/blue-faded.yaml | 1 + themes/blue-green-theme.yaml | 1 + themes/blue-hacker-theme.yaml | 1 + themes/blue-light-filter-dark.yaml | 2 +- themes/blue-light-filter-warm-dark.yaml | 2 +- themes/blue-light-theme.yaml | 3 +- themes/blue-moves-color-theme.yaml | 1 + themes/blue-moves-darker-color-theme.yaml | 1 + themes/blue-neon.yaml | 1 + themes/blue-night.yaml | 3 +- themes/blue.yaml | 1 + themes/blueberry-dark-theme.yaml | 13 +- themes/blueberry-theme.yaml | 3 +- themes/bluebracket-theme.yaml | 1 + themes/bluedark.yaml | 1 + themes/bluegreenspace.yaml | 1 + themes/bluelili-color-theme.yaml | 1 + themes/blueorange.yaml | 1 + themes/bluered-theme.yaml | 1 + themes/bluesea.yaml | 47 +- themes/bluespace-s.yaml | 37 +- themes/bluespace.yaml | 51 +- themes/bluethemepulper.yaml | 49 - themes/blueyonedark.yaml | 13 +- themes/bluloco-dark-italic.yaml | 13 +- themes/bluloco-dark.yaml | 1 + themes/bluloco-light-italic.yaml | 3 +- themes/blush-pink-enhanced-premium.yaml | 3 +- themes/blve.yaml | 1 + themes/bocenago-pradei.yaml | 1 + themes/bogem-s-night-owl.yaml | 3 +- themes/bogster.yaml | 1 + themes/bohemian-dark.yaml | 1 + themes/bohemian-light.yaml | 1 + themes/bold-contrast.yaml | 13 +- themes/bold-light.yaml | 13 +- themes/bold.yaml | 13 +- themes/bolsonaro-theme.yaml | 3 +- themes/bombyx-light.yaml | 1 + themes/bombyx.yaml | 1 + themes/boo.yaml | 1 + themes/boogel.yaml | 1 + themes/booklike.yaml | 1 + themes/bootstrap-dark.yaml | 1 + themes/bootstrap-light.yaml | 1 + themes/borders-blue.yaml | 3 +- themes/borders-dark.yaml | 3 +- themes/borders-darker.yaml | 3 +- themes/borealis.yaml | 1 + themes/borealsharp.yaml | 1 + themes/botany-color-theme.yaml | 1 + themes/botany.yaml | 9 +- themes/bougainvillea.yaml | 1 + themes/boundless.yaml | 1 + themes/bouquet.yaml | 1 + themes/boxuk-contrast.yaml | 13 +- themes/boxuk-light.yaml | 13 +- themes/boxuk.yaml | 13 +- themes/brackethive-theme.yaml | 1 + themes/brave-contrast.yaml | 13 +- themes/brave-light.yaml | 13 +- themes/brave.yaml | 13 +- themes/breath2ripoff.yaml | 1 + themes/breeze.yaml | 1 + themes/brew-theme.yaml | 1 + themes/brid-purple-garden-dark.yaml | 3 +- themes/brid-purple-garden-light.yaml | 3 +- themes/briggitehelm.yaml | 1 + themes/bright-colors-blue.yaml | 3 +- themes/bright-lights.yaml | 1 + themes/britecore.yaml | 1 + themes/british-racing-green-theme.yaml | 3 +- themes/brogrammer-plus.yaml | 3 +- themes/broken-dreams-blue.yaml | 1 + themes/broken-dreams-purple.yaml | 1 + themes/bromium.yaml | 1 + themes/brownhu.yaml | 1 + themes/brownista.yaml | 3 +- themes/bts-borahae.yaml | 1 + themes/btv-dark.yaml | 1 + themes/bubble-theme.yaml | 1 + themes/bubblegum-color-theme.yaml | 1 + themes/bubblegum-milkshake.yaml | 1 + themes/bubblegum.yaml | 3 +- themes/bubblegumtheme.yaml | 1 + themes/buby-color-theme.yaml | 1 + ...ddha-a-super-minimal-theme-for-vscode.yaml | 1 + themes/budha.yaml | 1 + themes/budokan.yaml | 1 + themes/bugged-gpu.yaml | 1 + themes/buhtig.yaml | 1 + themes/bullish-theme.yaml | 1 + themes/bun-gothic.yaml | 49 - themes/burnt-chestnut.yaml | 3 +- themes/burple-dark.yaml | 1 + themes/busbyvscode.yaml | 1 + themes/bushland.yaml | 1 + themes/butrin-theme.yaml | 1 + themes/butter-green-fork.yaml | 1 + themes/buttercawfee.yaml | 1 + themes/bynawers.yaml | 1 + themes/byteglow.yaml | 1 + themes/c-c-theme.yaml | 3 +- themes/c-dracula.yaml | 3 +- themes/c0v3r.yaml | 1 + themes/cabalyon-theme.yaml | 1 + themes/cadet-dark-gray.yaml | 1 + themes/cadet-medium-gray-flat.yaml | 49 - themes/caf-warmth.yaml | 1 + themes/caffe-crema-dark.yaml | 3 +- themes/caffe-crema-light.yaml | 3 +- themes/caffeinated-rust.yaml | 3 +- themes/calm-dark.yaml | 3 +- ...m-days-sober-nights-day-no-bold-style.yaml | 49 - ...ys-sober-nights-day-sky-no-bold-style.yaml | 49 - ...days-sober-nights-night-no-bold-style.yaml | 49 - ...-sober-nights-night-sky-no-bold-style.yaml | 49 - themes/calm-down-color-theme.yaml | 1 + themes/calm-light.yaml | 3 +- themes/calm-ocean.yaml | 3 +- .../calm-teal-colorblind-balance-clarity.yaml | 49 - ...lm-teal-high-contrast-balance-clarity.yaml | 1 + themes/calm-teal-light-balance-clarity.yaml | 1 + themes/calming-theme.yaml | 3 +- themes/calmppuccin-frappe.yaml | 3 +- themes/calmppuccin-latte.yaml | 3 +- themes/calmppuccin-macchiato.yaml | 3 +- themes/calmppuccin-mocha.yaml | 3 +- themes/calmppuccin-nitro-cold-brew.yaml | 3 +- themes/calmppuccin-oledppuccin.yaml | 3 +- themes/calomnie.yaml | 49 - themes/campbell.yaml | 1 + themes/camula-moon.yaml | 1 + themes/camula-sun.yaml | 1 + themes/camula.yaml | 1 + themes/candle-theme.yaml | 1 + themes/candy-blue.yaml | 1 + themes/candy-pine.yaml | 3 +- themes/candy-purple.yaml | 1 + themes/candy-red.yaml | 3 +- themes/candy-shop-eclipse.yaml | 3 +- themes/canonic-theme.yaml | 1 + themes/cape-town-nights.yaml | 1 + themes/capitola.yaml | 1 + themes/capy-ui.yaml | 1 + themes/caramel-fork.yaml | 49 - themes/carbon-candy-anthracite.yaml | 3 +- themes/carbon-candy-aurora-thin-border.yaml | 49 - themes/carbon-candy-carbon-thin-border.yaml | 49 - themes/carbon-candy-dark-thin-border.yaml | 49 - themes/carbon-candy-obsidian-thin-border.yaml | 49 - themes/carbon-candy-palenight.yaml | 3 +- themes/carbon-code-amber-dark.yaml | 1 + themes/carbon-code-amber-light.yaml | 1 + themes/carbon-code-crimson-dark.yaml | 1 + themes/carbon-code-crimson-light.yaml | 1 + themes/carbon-code-dark.yaml | 1 + themes/carbon-code-emerald-dark.yaml | 1 + themes/carbon-code-emerald-light.yaml | 1 + themes/carbon-code-light.yaml | 1 + themes/carbon-code-rose-dark.yaml | 1 + themes/carbon-code-rose-light.yaml | 1 + themes/carbon-design-system-theme.yaml | 1 + .../carbon-react-color-theme-maya-black.yaml | 3 +- themes/carbon-react-color-theme-maya.yaml | 3 +- themes/carbon-react-color-theme.yaml | 3 +- themes/carbon.yaml | 1 + themes/carbonfox.yaml | 1 + themes/carbonight-contrast.yaml | 13 +- themes/carbonight-dusk.yaml | 1 + themes/carbonight-light.yaml | 13 +- themes/carbonight-midnight.yaml | 1 + themes/carbonight.yaml | 1 + themes/carex-dark.yaml | 3 +- themes/carex-high-contrast-dark.yaml | 3 +- themes/carex-light.yaml | 3 +- themes/casino-royal.yaml | 3 +- themes/cat-pink.yaml | 1 + themes/cat-sleep-color-theme.yaml | 1 + themes/catalyst-light.yaml | 1 + themes/catalyst.yaml | 1 + themes/cathaytrial.yaml | 1 + themes/catppuccin-dark.yaml | 1 + themes/catppuccin-frapp.yaml | 13 +- themes/catppuccin-latte.yaml | 13 +- themes/catppuccin-macchiato.yaml | 13 +- themes/catppuccin-mocha.yaml | 3 +- themes/catppuccin-monokai-frappe.yaml | 11 +- themes/catppuccin-monokai-latte.yaml | 11 +- themes/catppuccin-monokai-macchiato.yaml | 11 +- themes/catppuccin-monokai-mocha.yaml | 11 +- themes/catthode.yaml | 2 +- themes/cchl-color-theme.yaml | 49 - themes/cebola-theme.yaml | 1 + themes/celadon-theme.yaml | 1 + themes/celestial-charm-theme.yaml | 1 + themes/ceo.yaml | 49 - themes/cerydra.yaml | 1 + themes/cfl-one.yaml | 1 + themes/chai-light.yaml | 13 +- themes/chalk.yaml | 3 +- themes/chalkish.yaml | 1 + themes/charcoal.yaml | 1 + themes/charli-health-dark.yaml | 1 + themes/charli-health-light.yaml | 1 + themes/chatgpt-theme.yaml | 49 - themes/cheese-n-all.yaml | 1 + themes/cheesewaffle-blue.yaml | 1 + themes/cheetha-green.yaml | 1 + themes/cherry-blossom-airy.yaml | 3 +- themes/cherry-blossom-breeze.yaml | 3 +- themes/cherry-blossom-dark-reflection.yaml | 3 +- themes/cherry-blossom-dark-vivid.yaml | 3 +- themes/cherry-blossom-dark.yaml | 3 +- themes/cherry-blossom-dimmed-dusk.yaml | 3 +- themes/cherry-blossom-dimmed.yaml | 3 +- themes/cherry-blossom-night-harmony.yaml | 3 +- themes/cherry-blossom-night.yaml | 3 +- themes/cherry-blossom-osaka-light.yaml | 3 +- themes/cherry-blossom-osaka.yaml | 3 +- themes/cherry-blossom-sky-vibrant.yaml | 3 +- themes/cherry-blossom-spring.yaml | 3 +- themes/cherry-blossom-twilight.yaml | 3 +- themes/cherry-blossom-warm.yaml | 3 +- themes/cherry-delite.yaml | 1 + themes/cherry-midnight.yaml | 3 +- themes/cherry-wild-theme.yaml | 1 + themes/cherry.yaml | 3 +- themes/cherryblossom.yaml | 1 + themes/chiclete-de-uva-theme.yaml | 1 + themes/chillhack.yaml | 1 + themes/chinolor-light.yaml | 3 +- themes/chinolor.yaml | 3 +- themes/chocolate-contrast.yaml | 13 +- themes/chocolate-dessert-theme.yaml | 1 + themes/chocolate-light.yaml | 13 +- themes/chocolate.yaml | 13 +- themes/chpastel.yaml | 1 + themes/christmas.yaml | 1 + themes/chromahin-amoled.yaml | 1 + themes/chromahin-dark.yaml | 1 + themes/chromahin-multi-color.yaml | 1 + themes/chromahin-soft.yaml | 1 + themes/chromatic-dark.yaml | 1 + themes/chromatic-light.yaml | 1 + themes/chrome-devtools.yaml | 1 + themes/chromodusk-classic.yaml | 1 + themes/cielo.yaml | 1 + themes/cinnamon.yaml | 1 + themes/cinnamonroll.yaml | 1 + themes/citric-secret.yaml | 1 + themes/city-fog.yaml | 1 + themes/clairvoyance-theme-alt.yaml | 1 + themes/clairvoyance-theme-grape.yaml | 1 + themes/clairvoyance-theme-pinkish.yaml | 1 + themes/clairvoyance-theme.yaml | 1 + themes/clarity-design-system-dark.yaml | 1 + themes/clarity-design-system-light.yaml | 1 + themes/claro.yaml | 1 + themes/classic-terminal.yaml | 1 + themes/claude-code-dark-brand.yaml | 49 - themes/claude-code-dark-high-contrast.yaml | 3 +- themes/claude-code-light-brand.yaml | 49 - themes/claude-code-light-high-contrast.yaml | 3 +- themes/claude-dark-anthropic.yaml | 3 +- themes/claude-dark-high-contrast-italic.yaml | 49 - themes/claude-dark-italic.yaml | 3 +- themes/claude-dark.yaml | 3 +- themes/claude-light.yaml | 3 +- themes/claude-mode-dark.yaml | 1 + themes/claude-mode-light.yaml | 1 + themes/claude-velvet-dark.yaml | 1 + themes/claude-velvet-light.yaml | 1 + themes/claude-warm-light.yaml | 1 + themes/clean-theme-halloween.yaml | 1 + themes/clean-white.yaml | 1 + themes/clear-dark.yaml | 1 + themes/cleo.yaml | 1 + themes/cloudmint-night.yaml | 3 +- themes/clrsync.yaml | 1 + themes/clu-tron-legacy.yaml | 3 +- themes/clubcleaver-functional-matrix.yaml | 1 + ...clymate-monochrome-vsdark-color-theme.yaml | 1 + .../clymate-pop-neon-vsdark-color-theme.yaml | 1 + .../clymate-vintage-vsdark-color-theme.yaml | 1 + themes/clymate-vsdark-color-theme.yaml | 1 + themes/cmyk-colourrrs.yaml | 3 +- themes/cobalt-next-dark.yaml | 3 +- themes/cobalt-next.yaml | 3 +- themes/cobalt3dark.yaml | 3 +- themes/cobalt9.yaml | 3 +- themes/coco-theme-au-palette.yaml | 1 + themes/coco-theme-ca-palette.yaml | 1 + themes/coco-theme-coco-palette.yaml | 1 + themes/coco-theme-coconut-palette.yaml | 1 + themes/coco-theme-de-palette.yaml | 1 + themes/coco-theme-es-palette.yaml | 1 + themes/coco-theme-fr-palette.yaml | 1 + themes/coco-theme-gb-palette.yaml | 1 + themes/coco-theme-in-palette.yaml | 1 + themes/coco-theme-personnal-palette.yaml | 1 + themes/coco-theme-se-palette.yaml | 1 + themes/coco-theme-tr-palette.yaml | 1 + themes/coco-theme-v1-palette.yaml | 1 + themes/coco-theme.yaml | 1 + themes/coco.yaml | 1 + themes/coconut-dark.yaml | 5 +- themes/coconut.yaml | 1 + themes/coda.yaml | 1 + themes/code-dadi-dark.yaml | 1 + themes/code-dadi-lighter.yaml | 1 + themes/code-hunter-bluepurly.yaml | 49 - themes/code-hunter-magnum-purple.yaml | 1 + themes/code-hunter-spruce-wind.yaml | 1 + themes/code-kraken-theme.yaml | 1 + themes/code-like-a-rainbow.yaml | 3 +- themes/code-red.yaml | 1 + .../code-with-colors-pro-midnight-purple.yaml | 1 + themes/code33.yaml | 1 + themes/codebabel-theme-dark.yaml | 1 + themes/codecourse-contrast.yaml | 13 +- themes/codecourse-light.yaml | 13 +- themes/codecourse.yaml | 13 +- themes/codehesion-dark-theme.yaml | 1 + themes/codehesion-light-theme.yaml | 1 + themes/codeify-dark-berry-color-theme.yaml | 3 +- themes/codeitlive-light.yaml | 1 + themes/codeitlive.yaml | 1 + themes/codelabs-inspired.yaml | 1 + themes/codellsby-nightowl.yaml | 1 + themes/codely-dark-theme.yaml | 9 +- themes/codeme.yaml | 3 +- themes/codeo-light.yaml | 1 + themes/codeo.yaml | 1 + themes/codepdia.yaml | 1 + themes/codepen-nights.yaml | 1 + themes/codepixel-modern-dark.yaml | 1 + themes/coder-coder-dark-redefined.yaml | 3 +- themes/coder-vai-forest.yaml | 3 +- themes/coder-vai-light.yaml | 3 +- themes/coder-vai-ocean.yaml | 3 +- themes/coder-vai-purple-haze.yaml | 3 +- themes/coder30.yaml | 1 + themes/codesandbox-theme.yaml | 1 + themes/codeschool2-minimal.yaml | 3 +- themes/codesso-unison-beta.yaml | 1 + themes/codetest.yaml | 1 + themes/codethread-black.yaml | 1 + themes/codeuccino.yaml | 1 + themes/codevibe-epic-theme.yaml | 1 + themes/codexflow-themes.yaml | 1 + themes/codiefy-optimas-prime-color-theme.yaml | 3 +- themes/coding-light-theme.yaml | 1 + themes/cods.yaml | 1 + themes/coffee-contrast.yaml | 13 +- themes/coffee-light.yaml | 13 +- themes/coffee.yaml | 13 +- themes/coffeespace.yaml | 49 +- themes/cognac.yaml | 1 + themes/coimbroxthmedark.yaml | 1 + themes/cold-night.yaml | 1 + themes/cold-python-theme.yaml | 3 +- themes/coldark-cold.yaml | 3 +- themes/coldark-dark.yaml | 3 +- themes/collapse.yaml | 1 + themes/color-coffee-dark.yaml | 1 + themes/colora.yaml | 1 + themes/colorbars-blue.yaml | 1 + themes/colorbars-green.yaml | 1 + themes/colorbars-orange.yaml | 1 + themes/colorbars-purple.yaml | 1 + themes/colorful-carbon-dark-knight.yaml | 1 + themes/colorful-carbon.yaml | 1 + themes/colorful-dark-fork.yaml | 1 + themes/colorful-dark-theme.yaml | 3 +- themes/colorful-light.yaml | 1 + themes/colorizer.yaml | 3 +- themes/colors-color-theme.yaml | 1 + themes/colors.yaml | 1 + themes/colorshift-material-pro-evening.yaml | 1 + themes/colorshift-material-pro-morning.yaml | 1 + themes/colorshift-material-pro.yaml | 1 + themes/colorways-cheers-soft.yaml | 3 +- themes/columbina-high-contrast.yaml | 1 + themes/comfy-monokai.yaml | 1 + themes/common.yaml | 1 + themes/community-material-theme-darker.yaml | 49 - ...-material-theme-default-high-contrast.yaml | 49 - ...-material-theme-lighter-high-contrast.yaml | 49 - themes/community-material-theme-lighter.yaml | 49 - ...ty-material-theme-ocean-high-contrast.yaml | 49 - ...aterial-theme-palenight-high-contrast.yaml | 49 - themes/compline.yaml | 3 +- themes/component.yaml | 1 + themes/comrade-contrast.yaml | 13 +- themes/comrade-light.yaml | 29 +- themes/comrade.yaml | 21 +- themes/concoctis-dark-hard.yaml | 3 +- themes/concoctis-dark-soft.yaml | 3 +- themes/concoctis-light-hard.yaml | 3 +- themes/concoctis-light-soft.yaml | 3 +- themes/concrete-theme.yaml | 1 + themes/concrete.yaml | 1 + themes/conifer-theme.yaml | 1 + themes/contrast-kai.yaml | 1 + themes/cool-panda.yaml | 1 + themes/cool-with-a-c.yaml | 1 + themes/cooland.yaml | 1 + themes/coolnight-color-theme.yaml | 3 +- themes/coolshine.yaml | 1 + themes/copper-dark.yaml | 3 +- themes/corallike.yaml | 1 + themes/corduroy.yaml | 1 + themes/corgidarkpastel2.yaml | 1 + themes/corgidarkpastel3.yaml | 1 + themes/corporate-dark-theme.yaml | 1 + themes/cosmic-decay.yaml | 3 +- themes/cosmic-gleam-darkest.yaml | 3 +- themes/cosmic-iris.yaml | 3 +- themes/cosmic-purple.yaml | 1 + themes/cosmic-sea.yaml | 9 +- themes/cosmic.yaml | 1 + themes/cosmical.yaml | 1 + themes/cosmico.yaml | 1 + themes/cosmicsarthak-dark.yaml | 3 +- themes/cosmicsarthak-neon.yaml | 3 +- themes/cosmicsarthak-night-owl.yaml | 3 +- themes/cosmicsarthak-red.yaml | 3 +- themes/cosmo.yaml | 1 + themes/cosmos-theme.yaml | 1 + themes/cosmos.yaml | 3 +- themes/couldpeak.yaml | 1 + themes/cowboy-theme.yaml | 3 +- themes/cozy-evenings.yaml | 1 + themes/cozy-mornings.yaml | 1 + themes/crackpot-contrast.yaml | 13 +- themes/crackpot-light.yaml | 13 +- themes/crackpot.yaml | 13 +- themes/cream-charcoal.yaml | 1 + ...ple-colorblind-innovation-imagination.yaml | 49 - ...e-purple-light-innovation-imagination.yaml | 1 + themes/crema.yaml | 1 + themes/crf-flamengo.yaml | 1 + themes/crimson-sunset.yaml | 3 +- themes/crisp-contrast.yaml | 13 +- themes/crisp-light.yaml | 13 +- themes/crisp.yaml | 13 +- themes/crow-dark.yaml | 1 + themes/crowveil-ayu.yaml | 1 + themes/crt-64.yaml | 13 +- themes/crt-alt.yaml | 1 + themes/crt-amber.yaml | 73 +- themes/crt-apple.yaml | 1 + themes/crt-appleiic.yaml | 1 + themes/crt-blue.yaml | 85 +- themes/crt-gray.yaml | 49 - themes/crt-green.yaml | 13 +- themes/crt-green1.yaml | 1 + themes/crt-green2.yaml | 1 + themes/crt-paper.yaml | 49 - themes/crt-red.yaml | 13 +- themes/crt.yaml | 1 + themes/crypto.yaml | 3 +- themes/crystaltine-s-crystalline-4-1.yaml | 1 + themes/crystaltine-s-crystalline-5-0.yaml | 1 + themes/cs50-light-theme.yaml | 3 +- themes/css-battle.yaml | 3 +- themes/cucumber-dark.yaml | 3 +- themes/cucumber-light.yaml | 3 +- themes/cupertino-dark.yaml | 3 +- themes/cupertino-light.yaml | 3 +- themes/curry-dark.yaml | 1 + themes/cursor-dark-anysphere-v0-0-1.yaml | 1 + themes/cursor-dark.yaml | 49 - themes/cursor-less-dark.yaml | 3 +- themes/cursor-light.yaml | 3 +- themes/cursor-night-theme-soft.yaml | 3 +- themes/cursor-night-theme.yaml | 3 +- themes/cursor-theme.yaml | 3 +- themes/custom-theme-dark.yaml | 3 +- themes/custom-theme-light.yaml | 3 +- themes/custom-theme.yaml | 1 + themes/custommarktheme.yaml | 9 +- themes/cyan-dark.yaml | 3 +- themes/cyber-dark.yaml | 9 +- themes/cyber-light-soft.yaml | 9 +- themes/cyber-light-warm.yaml | 9 +- themes/cyber-light.yaml | 9 +- themes/cyber-pastel-violet.yaml | 3 +- themes/cyber-purple-77.yaml | 3 +- themes/cyberblue.yaml | 1 + themes/cyberdude-black.yaml | 1 + themes/cyberdyne-ghostty.yaml | 1 + themes/cybereternals-vscode-theme.yaml | 1 + themes/cybermoon.yaml | 1 + themes/cyberpink-137-theme.yaml | 3 +- themes/cyberpunk-2077-night-city-neon.yaml | 2 +- themes/cyberpunk-2077-reloaded.yaml | 3 +- themes/cyberpunk-2077.yaml | 1 + themes/cyberpunk.yaml | 9 +- themes/cyberpunkcygnus-clear-grid.yaml | 1 + themes/cyberpunkcygnus-neon-pulse.yaml | 1 + themes/cyberpunkcygnus-solace-flare.yaml | 1 + themes/cybertrauma-s-dark-theme.yaml | 3 +- themes/cybertrauma-s.yaml | 1 + themes/cynical-color-theme.yaml | 1 + themes/d2t-dark-clean.yaml | 1 + themes/d2t-dark.yaml | 1 + themes/da3m0ns-dark-italic.yaml | 1 + themes/dafault.yaml | 1 + themes/dalailahner-dark.yaml | 1 + themes/dalton.yaml | 1 + themes/dan-light-work.yaml | 1 + themes/dan-react-theme.yaml | 1 + themes/dang-jedi.yaml | 1 + themes/dangergray-v2.yaml | 1 + themes/dango-theme.yaml | 1 + themes/dantes-theme.yaml | 1 + themes/dantetheme.yaml | 1 + themes/darcula-contrast-min.yaml | 3 +- themes/darcula-contrast.yaml | 3 +- themes/darcula-dark-theme.yaml | 3 +- themes/darcula-solid-color-theme.yaml | 3 +- themes/darcula-void.yaml | 1 + themes/darcula.yaml | 13 +- themes/darculacode.yaml | 1 + themes/dare-contrast.yaml | 13 +- themes/dare-light.yaml | 13 +- themes/dare.yaml | 13 +- themes/dark-abyss.yaml | 3 +- themes/dark-amethyst.yaml | 1 + themes/dark-army.yaml | 1 + themes/dark-aura.yaml | 3 +- themes/dark-black-developer.yaml | 1 + themes/dark-blue-theme.yaml | 1 + themes/dark-bqueiroz.yaml | 3 +- themes/dark-brown-theme.yaml | 1 + themes/dark-brown.yaml | 3 +- themes/dark-chai.yaml | 49 - themes/dark-clean.yaml | 1 + themes/dark-code-fork.yaml | 3 +- themes/dark-codely-theme.yaml | 7 +- themes/dark-coffee.yaml | 1 + themes/dark-color-theme.yaml | 49 - themes/dark-cool-theme.yaml | 1 + themes/dark-decay.yaml | 1 + themes/dark-discord-vscode.yaml | 1 + themes/dark-dust-pro.yaml | 1 + themes/dark-edit.yaml | 1 + themes/dark-flow.yaml | 1 + themes/dark-frost-midnight.yaml | 1 + themes/dark-frost.yaml | 1 + themes/dark-fury.yaml | 3 +- themes/dark-future-cyberpunk-2077.yaml | 1 + themes/dark-green-energy.yaml | 1 + themes/dark-green-jungle.yaml | 13 +- themes/dark-green-minimalist-theme.yaml | 1 + themes/dark-green.yaml | 11 +- themes/dark-grey-theme.yaml | 3 +- themes/dark-ink-and-red-accents.yaml | 2 +- themes/dark-ink-brighter.yaml | 2 +- themes/dark-ink-brightest.yaml | 2 +- themes/dark-ink-lighter.yaml | 2 +- themes/dark-ink.yaml | 2 +- themes/dark-jade.yaml | 1 + themes/dark-lavender-black.yaml | 1 + themes/dark-lavender-soft.yaml | 1 + themes/dark-lavender-tailwind-soft.yaml | 1 + themes/dark-lavender-tailwind.yaml | 1 + themes/dark-lavender.yaml | 1 + themes/dark-legibility.yaml | 1 + themes/dark-leocode-theme.yaml | 1 + themes/dark-lime-flat.yaml | 13 +- themes/dark-magic-dracula.yaml | 13 +- themes/dark-magic-frankenstein.yaml | 13 +- themes/dark-magic-light.yaml | 3 +- themes/dark-magic-night.yaml | 13 +- themes/dark-magic-nord.yaml | 13 +- themes/dark-magic-tokyo.yaml | 13 +- themes/dark-magic.yaml | 13 +- themes/dark-matter-code-neptune-medium.yaml | 1 + themes/dark-minimal-lime-theme.yaml | 1 + themes/dark-minimal-theme-sm.yaml | 3 +- themes/dark-mode-vs.yaml | 3 +- themes/dark-mode.yaml | 3 +- themes/dark-modern-one-without-italics.yaml | 3 +- themes/dark-molokai.yaml | 3 +- themes/dark-mono.yaml | 3 +- themes/dark-mute.yaml | 1 + themes/dark-nebula.yaml | 1 + themes/dark-neon-theme-sm.yaml | 3 +- themes/dark-night-pro.yaml | 1 + themes/dark-night.yaml | 3 +- themes/dark-ocean-sands.yaml | 1 + themes/dark-ocean.yaml | 3 +- themes/dark-ohnagi-2020.yaml | 1 + themes/dark-orange.yaml | 49 - themes/dark-owl-darker.yaml | 3 +- themes/dark-pastel-pink.yaml | 1 + themes/dark-pastel.yaml | 1 + themes/dark-petrol-dev.yaml | 1 + themes/dark-pie-deep-dark.yaml | 1 + themes/dark-pink-theme.yaml | 1 + themes/dark-plus-chocolate.yaml | 3 +- themes/dark-plus-moon-lite.yaml | 3 +- themes/dark-plus-oled-dim-100.yaml | 1 + themes/dark-plus-oled-dim-75.yaml | 1 + themes/dark-plus-oled-dim-80.yaml | 1 + themes/dark-plus-oled-dim-85.yaml | 1 + themes/dark-plus-oled-dim-90.yaml | 1 + themes/dark-plus-oled-dim-95.yaml | 1 + themes/dark-plus-syntax.yaml | 1 + themes/dark-purple-flat.yaml | 13 +- themes/dark-purple.yaml | 1 + themes/dark-rainbow.yaml | 1 + themes/dark-rblx-rian.yaml | 49 - themes/dark-reader-light.yaml | 3 +- themes/dark-readin-5.yaml | 1 + themes/dark-red-theme-vs-code.yaml | 3 +- themes/dark-remix-nord.yaml | 1 + themes/dark-remix-one-dark.yaml | 1 + themes/dark-sand-theme.yaml | 1 + themes/dark-sea-green.yaml | 3 +- themes/dark-sky-fork-fork.yaml | 1 + themes/dark-soft-theme-sm.yaml | 3 +- themes/dark-solarin-2.yaml | 49 - themes/dark-springbok.yaml | 3 +- themes/dark-terminal-pro.yaml | 1 + themes/dark-theme-blue.yaml | 1 + themes/dark-theme-by-sanan.yaml | 1 + themes/dark-theme-default-by-luisfelipe.yaml | 1 + themes/dark-theme-new.yaml | 1 + themes/dark-theme.yaml | 1 + themes/dark-v3.yaml | 1 + themes/dark-vibes.yaml | 1 + themes/dark-wolf.yaml | 3 +- themes/dark-yellow-flat.yaml | 13 +- themes/dark.yaml | 89 +- themes/darka.yaml | 1 + themes/darkalchemy-basic.yaml | 1 + themes/darkalicious.yaml | 1 + themes/darkasp.yaml | 3 +- themes/darkblue-theme.yaml | 1 + themes/darkbubble.yaml | 1 + themes/darkbutter.yaml | 3 +- themes/darker-solarized.yaml | 1 + themes/darker-than-black.yaml | 3 +- themes/darkest.yaml | 3 +- themes/darkestside-theme.yaml | 1 + themes/darkforest.yaml | 1 + themes/darkgreen.yaml | 1 + themes/darkheist.yaml | 1 + themes/darkish.yaml | 1 + themes/darkit-astral.yaml | 1 + themes/darkj.yaml | 1 + themes/darkknight.yaml | 1 + themes/darklimeteal.yaml | 1 + themes/darklover.yaml | 3 +- themes/darkly-theme.yaml | 1 + themes/darkly.yaml | 1 + themes/darkness-color-theme.yaml | 1 + themes/darkness-of-my-soul.yaml | 1 + themes/darko.yaml | 49 - themes/darkoo.yaml | 1 + themes/darkorange.yaml | 1 + themes/darkpinkpro.yaml | 3 +- themes/darkplastic.yaml | 1 + themes/darkpurple.yaml | 11 +- themes/darkquark.yaml | 1 + themes/darkr-green.yaml | 1 + themes/darkred.yaml | 1 + themes/darkroom.yaml | 1 + themes/darkroy-night.yaml | 1 + themes/darkroy.yaml | 1 + themes/darkrr-green.yaml | 1 + themes/darkrrr-green.yaml | 1 + themes/darkrrrr-green.yaml | 1 + themes/darkrrrrr-green.yaml | 1 + themes/darkside-contrast.yaml | 13 +- themes/darkside-light.yaml | 13 +- themes/darkside.yaml | 13 +- themes/darksome.yaml | 1 + themes/darkspace.yaml | 47 +- themes/darkstar.yaml | 3 +- themes/darkstash.yaml | 1 + themes/darktra.yaml | 1 + themes/darkula.yaml | 1 + themes/darkuto.yaml | 1 + themes/darkvoid-ocean.yaml | 1 + themes/darkvoid.yaml | 1 + themes/darkwaves-ashen-core.yaml | 3 +- themes/darkwaves-celestial-mist.yaml | 3 +- themes/darkwaves-cloud-lands.yaml | 3 +- themes/darkwaves-driftwood.yaml | 3 +- themes/darkwaves-forge.yaml | 3 +- themes/darkwaves-gray-elegance.yaml | 3 +- themes/darkwaves-nebula.yaml | 3 +- themes/darkwaves-obsidian.yaml | 3 +- themes/darkwaves-spectrum.yaml | 3 +- themes/darkwind-default.yaml | 1 + themes/darky-purple-storm.yaml | 3 +- themes/darky-purple.yaml | 3 +- themes/darth-insidious.yaml | 3 +- themes/darth-invader.yaml | 3 +- themes/darthbuddy.yaml | 1 + themes/dartpad-candy.yaml | 49 - themes/daru.yaml | 9 +- themes/darwin.yaml | 1 + themes/darxmon.yaml | 1 + themes/dashxe.yaml | 1 + themes/davi-lacerda-dark.yaml | 1 + themes/davi-lacerda-light.yaml | 1 + themes/david.yaml | 3 +- themes/daviontheme.yaml | 3 +- themes/day-n-nite.yaml | 1 + themes/day.yaml | 3 +- themes/dayfox.yaml | 1 + themes/daysofwineandroses.yaml | 1 + themes/dbt-fusion.yaml | 3 +- themes/dbt-inspired-dark-theme.yaml | 49 - themes/dbt-inspired-light-theme.yaml | 49 - themes/dcdevthemered.yaml | 1 + themes/deadbeef.yaml | 1 + themes/deadpool.yaml | 3 +- themes/decayce.yaml | 3 +- themes/deco.yaml | 1 + themes/deeold.yaml | 1 + themes/deep-dark.yaml | 1 + themes/deep-indigo-wisdom-intuition.yaml | 1 + themes/deep-ocean.yaml | 1 + themes/deep-purple-fork.yaml | 49 - themes/deep-purple-theme.yaml | 1 + themes/deep-purple.yaml | 1 + themes/deep-rainforest.yaml | 3 +- themes/deep-space-dark.yaml | 3 +- themes/deepwave.yaml | 1 + themes/deepwoods-autumn-needles-italic.yaml | 49 - themes/deepwoods-frosted-pines-italic.yaml | 49 - themes/deepwoods-high-canopy-italic.yaml | 49 - themes/deepwoods-spring-thaw-italic.yaml | 49 - themes/default-enhanced.yaml | 1 + themes/default-theme.yaml | 1 + themes/defaults.yaml | 3 +- themes/defdo-base.yaml | 3 +- themes/defdo-halloween.yaml | 3 +- themes/definetely-not-github-s-theme.yaml | 1 + themes/definition-theme2023.yaml | 1 + themes/dejaypiii.yaml | 1 + themes/dekirisu-s-rust-theme.yaml | 3 +- themes/demon-dark-pro.yaml | 3 +- themes/demon-light-pro.yaml | 3 +- themes/demon-slayer-light-theme.yaml | 3 +- themes/denian-theme.yaml | 49 - themes/desert.yaml | 1 + themes/designcourse-theme.yaml | 1 + themes/dessert.yaml | 1 + themes/deus-ex-md-dark.yaml | 1 + themes/dev-dark-fork-fork.yaml | 3 +- themes/dev-theme-pro-nebula-mist.yaml | 1 + themes/dev-theme-pro-nebula-void.yaml | 1 + themes/dev-theme-pro-ocean-mist.yaml | 1 + themes/dev-theme-pro-ocean-void.yaml | 1 + themes/devcode.yaml | 1 + themes/developers-theme-fork.yaml | 3 +- themes/devmedia-dark-modern.yaml | 2 +- themes/devmedia-dark.yaml | 3 +- themes/devmedia-light.yaml | 3 +- themes/devr.yaml | 1 + themes/devsena-ultra-dark.yaml | 1 + themes/devtheme.yaml | 59 +- themes/devx-dark.yaml | 1 + themes/dew-grey.yaml | 1 + themes/dfp-idle.yaml | 3 +- themes/dhamma-dark.yaml | 1 + themes/dhamma-light.yaml | 1 + themes/dharam-gfx-amethyst.yaml | 49 - themes/dharam-gfx-anthracite.yaml | 1 + themes/dharam-gfx-arc-blueberry.yaml | 1 + themes/dharam-gfx-arc-eggplant.yaml | 1 + themes/dharam-gfx-arc-reversed.yaml | 1 + themes/dharam-gfx-hacker-theme.yaml | 1 + themes/dharam-gfx-hight-contrast.yaml | 1 + themes/dharam-gfx-webdevcody.yaml | 1 + themes/diabo-theme.yaml | 1 + themes/diamond-theme.yaml | 1 + themes/digitaliss-italic.yaml | 49 - themes/digitaliss-light-italic.yaml | 49 - themes/digitaliss-pastel-italic.yaml | 49 - themes/dimi-theme-dark.yaml | 1 + themes/dimi-theme-darker.yaml | 1 + themes/dimmed-dark-theme.yaml | 1 + themes/dimmed-theme.yaml | 3 +- themes/dimmed.yaml | 1 + themes/dioximo-dark.yaml | 1 + themes/dioximo-light.yaml | 1 + themes/discord-theme.yaml | 3 +- themes/dislexic.yaml | 1 + themes/div-s-theme.yaml | 1 + themes/dive-bar.yaml | 1 + themes/dj-s-purple.yaml | 1 + themes/djolof.yaml | 1 + themes/dna-helix.yaml | 1 + themes/dodimmed-dark.yaml | 1 + themes/doli-universal.yaml | 1 + themes/doli-visual-studio.yaml | 1 + themes/dominator-paralyzer.yaml | 1 + themes/domtheme.yaml | 3 +- themes/doom-one-dark.yaml | 1 + themes/doom-one-light.yaml | 1 + themes/doom-one.yaml | 11 +- themes/dooshtheme.yaml | 1 + themes/dorkmode.yaml | 1 + themes/dot-developer-dark.yaml | 3 +- themes/downpour-contrast.yaml | 13 +- themes/downpour-light.yaml | 13 +- themes/downpour.yaml | 13 +- themes/doxa-code-color-theme.yaml | 1 + themes/doyoubleed.yaml | 1 + themes/dr-jones.yaml | 3 +- themes/draco-dark.yaml | 3 +- themes/draconica.yaml | 1 + themes/dracula-at-dusk.yaml | 3 +- themes/dracula-at-midnight.yaml | 1 + themes/dracula-at-night.yaml | 13 +- themes/dracula-clean.yaml | 49 - themes/dracula-dimmed-color-theme.yaml | 3 +- themes/dracula-falcon.yaml | 1 + themes/dracula-gray.yaml | 1 + themes/dracula-high-contract.yaml | 1 + themes/dracula-light.yaml | 3 +- themes/dracula-midnight.yaml | 1 + themes/dracula-min-light-darker-theme.yaml | 1 + themes/dracula-min-light-theme.yaml | 1 + themes/dracula-min-white-darker-theme.yaml | 1 + themes/dracula-min-white-theme.yaml | 1 + themes/dracula-pro-black.yaml | 3 +- themes/dracula-soft.yaml | 49 - themes/dracula.yaml | 1 + themes/draculight.yaml | 1 + themes/draculish.yaml | 1 + themes/dragn-dark-color-theme.yaml | 3 +- themes/dragon.yaml | 3 +- themes/dragonfly.yaml | 3 +- themes/dragonight.yaml | 1 + themes/drakencord-blue-fork.yaml | 1 + themes/draquinho.yaml | 1 + themes/dreadbots-fork.yaml | 3 +- themes/dreamy-lights.yaml | 1 + themes/dribbble-theme-light.yaml | 1 + themes/drifter.yaml | 1 + themes/drk.yaml | 1 + themes/drukyul-dark.yaml | 1 + themes/drukyul-light.yaml | 1 + themes/ds-rose.yaml | 1 + themes/duck-in-the-dream.yaml | 1 + themes/duck-in-the-lake.yaml | 1 + themes/duck-story.yaml | 2 +- themes/duckcash.yaml | 1 + themes/duckdevlabs.yaml | 1 + themes/duckeys-blurple.yaml | 1 + themes/ducks.yaml | 1 + themes/ducky-light.yaml | 1 + themes/dukana.yaml | 1 + themes/dukemonokai-color-theme.yaml | 1 + themes/dull-sun-dark.yaml | 1 + themes/dull-sun-light.yaml | 1 + themes/dull-sun.yaml | 1 + themes/dumdum-theme.yaml | 1 + themes/dune-arrakis-incandescent.yaml | 1 + themes/dune-bene-gesserit.yaml | 1 + themes/dune-caladan-storm.yaml | 1 + themes/dune-fremen-sietch.yaml | 1 + themes/dune-giedi-prime.yaml | 1 + themes/dune-guild-navigator.yaml | 1 + themes/dune-harkonnen.yaml | 1 + themes/dune-house-atreides.yaml | 1 + themes/dune-ix-technology.yaml | 1 + themes/dune-kaitain.yaml | 1 + themes/dune-mentat.yaml | 1 + themes/dune-muad-dib.yaml | 1 + themes/dune-salusa-secundus.yaml | 1 + themes/dune-sandworm.yaml | 1 + themes/dune-sardaukar-imperial.yaml | 1 + themes/dune-spacing-guild.yaml | 1 + themes/dune-spice-vision.yaml | 1 + themes/dune-water-of-life.yaml | 1 + themes/duomage.yaml | 1 + themes/durgonix-dark.yaml | 1 + themes/dusk-rider.yaml | 3 +- themes/dusk.yaml | 1 + themes/duskfox.yaml | 3 +- themes/dutchtheme.yaml | 1 + themes/dynamic.yaml | 1 + themes/dyno-cute.yaml | 1 + themes/dyno.yaml | 1 + themes/dzsolarized-dark.yaml | 1 + themes/dzsolarized.yaml | 1 + themes/earl-grey.yaml | 3 +- themes/early-riser.yaml | 1 + themes/earth-brown-stability-grounding.yaml | 1 + themes/earthsong-contrast.yaml | 13 +- themes/earthsong-light.yaml | 13 +- themes/earthsong.yaml | 13 +- themes/easy-eye.yaml | 3 +- themes/easy-eyes-color-theme.yaml | 3 +- themes/easy-light.yaml | 1 + themes/ebizome.yaml | 1 + themes/ebullience.yaml | 49 - themes/eclipsa.yaml | 1 + themes/eclipse-dark-darker.yaml | 1 + themes/eclipse-dark-flat.yaml | 1 + themes/eclipse-flare.yaml | 1 + themes/eclipse-optics.yaml | 1 + themes/eclipse-penumbra.yaml | 1 + themes/eclipse-umbra.yaml | 1 + themes/edge-dark-aura.yaml | 3 +- themes/edge-dark-neon.yaml | 3 +- themes/edge-dark.yaml | 3 +- themes/edge-light.yaml | 3 +- themes/edgerunner.yaml | 1 + themes/editor.yaml | 1 + themes/edu4dev-vscode-theme-color.yaml | 1 + themes/eerie.yaml | 49 - themes/eezoterial-dark.yaml | 1 + themes/eezoterial-light.yaml | 1 + themes/ef-dark.yaml | 1 + themes/ef-day.yaml | 1 + themes/ef-deuteranopia-dark.yaml | 1 + themes/ef-deuteranopia-light.yaml | 1 + themes/ef-duo-dark.yaml | 1 + themes/ef-duo-light.yaml | 1 + themes/ef-elea-dark.yaml | 1 + themes/ef-elea-light.yaml | 1 + themes/ef-light.yaml | 1 + themes/ef-maris-dark.yaml | 1 + themes/ef-maris-light.yaml | 1 + themes/ef-melissa-dark.yaml | 1 + themes/ef-melissa-light.yaml | 1 + themes/ef-night.yaml | 1 + themes/ef-trio-dark.yaml | 1 + themes/ef-trio-light.yaml | 1 + themes/ef-tritanopia-dark.yaml | 1 + themes/ef-tritanopia-light.yaml | 1 + themes/eggsplo1t.yaml | 1 + themes/eh-s-website-theme.yaml | 1 + themes/eidolon-alter.yaml | 49 - themes/eidolon-less-dark.yaml | 1 + themes/eigen-color-theme.yaml | 3 +- themes/ein.yaml | 1 + themes/eink.yaml | 3 +- themes/ekim.yaml | 1 + themes/eldar1984.yaml | 1 + themes/elderberry.yaml | 1 + themes/eldritch-dark.yaml | 3 +- themes/eldritch.yaml | 3 +- themes/electric-blue.yaml | 1 + themes/electric-dreams.yaml | 1 + themes/electric-labs.yaml | 1 + themes/electric-sheep.yaml | 1 + themes/electric-violet-fork.yaml | 3 +- themes/electron-highlighter.yaml | 1 + themes/electron-vue.yaml | 13 +- .../electronic-moonlight-theme-borders.yaml | 1 + themes/eleganceu.yaml | 3 +- themes/elegant-black.yaml | 1 + themes/elegant-red.yaml | 3 +- themes/eleganterror404.yaml | 1 + themes/elementary.yaml | 3 +- themes/elementowl.yaml | 1 + themes/elements.yaml | 9 +- themes/elf-dream.yaml | 3 +- themes/elhassan-neon-cyan.yaml | 1 + themes/elhassan-neon-dark-professional.yaml | 1 + themes/elhassan-neon-light-professional.yaml | 1 + themes/elhassan-neon-magenta.yaml | 1 + themes/elhassan-neon-purple.yaml | 1 + .../elixir-theme-no-italics-less-dark-2.yaml | 49 - themes/elixir-theme-no-italics.yaml | 1 + themes/elly.yaml | 1 + themes/elypink-dark-faded.yaml | 3 +- themes/elypink-dark.yaml | 3 +- themes/elypink-light-diamond.yaml | 3 +- themes/elypink-light-faded.yaml | 3 +- themes/elypink-light-spring.yaml | 3 +- themes/elypink-light-summer.yaml | 3 +- themes/elypink-light.yaml | 3 +- themes/ember.yaml | 1 + themes/emberstone-dark-theme.yaml | 1 + themes/emberstone.yaml | 1 + themes/emerald-fork.yaml | 3 +- themes/emerald-matrix.yaml | 3 +- themes/emerald.yaml | 1 + themes/emeralds.yaml | 1 + themes/emi-theme.yaml | 1 + themes/enchant-high-contrast.yaml | 1 + themes/enchant.yaml | 1 + themes/encom.yaml | 1 + themes/end-color-theme.yaml | 3 +- themes/endeavouros-breeze-dark.yaml | 47 +- themes/endeavouros-dark-high-contrast.yaml | 3 +- themes/endeavouros-dark-night-shift.yaml | 3 +- themes/endless-iris.yaml | 1 + ...ergy-red-colorblind-passion-alertness.yaml | 49 - .../energy-red-light-passion-alertness.yaml | 1 + themes/enhanced-hubspot-theme.yaml | 1 + themes/enhanced-material-batman.yaml | 1 + themes/enhanced-material-fork.yaml | 1 + themes/enhanced-material.yaml | 49 - themes/enki-night-owl.yaml | 13 +- themes/enki-rainbow-bro.yaml | 49 - themes/enki-red.yaml | 13 +- themes/enki.yaml | 13 +- themes/enough.yaml | 1 + themes/enova.yaml | 1 + themes/entropic-theme.yaml | 1 + themes/eon-react.yaml | 1 + themes/eon-theme-second.yaml | 1 + themes/eon-theme-v4.yaml | 1 + themes/eon-theme.yaml | 1 + themes/epsilon.yaml | 1 + themes/equinox-dark.yaml | 1 + themes/equinox-light.yaml | 1 + themes/eralith.yaml | 1 + themes/erikwdevtheme-color-theme.yaml | 1 + themes/eritbh-s-theme.yaml | 1 + themes/errordark.yaml | 1 + themes/errrrrm.yaml | 1 + themes/escook-theme-light.yaml | 1 + themes/espresso-dark-theme.yaml | 3 +- themes/espresso-dark.yaml | 3 +- themes/etec-pfa-light.yaml | 1 + themes/eternal-autumn.yaml | 1 + themes/eternal-summer.yaml | 1 + themes/eternals-no-italic.yaml | 1 + themes/ethanli-turquoise-dark.yaml | 1 + themes/ethereal.yaml | 1 + themes/ethereum-dark-blue-theme.yaml | 1 + themes/ethereum-dark-grey-theme.yaml | 1 + themes/eva-01-berserk-theme.yaml | 3 +- themes/eva-01.yaml | 3 +- ...-02-theme-enhanced-red-grey-variation.yaml | 3 +- themes/evans-dark-theme.yaml | 1 + themes/eve.yaml | 89 +- themes/evening-sky.yaml | 1 + themes/everforest-dark.yaml | 49 - themes/everforest-light.yaml | 49 - themes/everforest-pro-dark-cozy.yaml | 3 +- themes/everforest-pro-dark-vibrant.yaml | 3 +- themes/everforest-pro-light-cozy.yaml | 3 +- themes/everforest-pro-light-vibrant.yaml | 3 +- themes/everforest-soft.yaml | 3 +- themes/evergarden-winter-light.yaml | 1 + themes/evergarden-winter.yaml | 1 + themes/evergarden.yaml | 3 +- themes/evernex.yaml | 3 +- themes/evex-dark.yaml | 1 + themes/evondev-minimal-theme.yaml | 1 + themes/evondev-tailwind-theme.yaml | 1 + themes/evro-dark.yaml | 3 +- themes/evro-darker-flat.yaml | 3 +- themes/execlabs.yaml | 3 +- themes/exias-theme-colorful.yaml | 49 - themes/exias-theme-town.yaml | 1 + themes/exploit.yaml | 1 + themes/extreme-dark-theme.yaml | 1 + themes/eye-care-dark.yaml | 1 + themes/eye-care-light.yaml | 1 + themes/eye-care.yaml | 9 +- themes/eye-comfort-light.yaml | 3 +- themes/eyecooler.yaml | 1 + themes/eyeguard.yaml | 1 + themes/eyehealth-dark.yaml | 1 + themes/eyehealth-plus-light.yaml | 1 + themes/eyera.yaml | 1 + themes/eyesore.yaml | 1 + themes/ezcord-highcontrast.yaml | 1 + themes/ezcord-light.yaml | 1 + themes/ezcord-pastel.yaml | 1 + themes/ezcord.yaml | 1 + themes/ezgiturali-halloween.yaml | 1 + themes/ezra.yaml | 1 + themes/fabi.yaml | 3 +- themes/fabulapps-theme.yaml | 1 + themes/fabulous-las-vegas-after-dark.yaml | 1 + themes/fabulous-las-vegas-high-noon.yaml | 1 + themes/fady-ehab-amer-dark-theme.yaml | 1 + themes/faerie-online.yaml | 1 + themes/fakedonald-s.yaml | 3 +- themes/falcon.yaml | 1 + themes/falconui-theme.yaml | 1 + themes/fallout-theme.yaml | 49 - themes/famous-dev-light.yaml | 1 + themes/famous-dev-midnight.yaml | 1 + themes/fanuc-karel.yaml | 1 + themes/fcc0ff.yaml | 1 + themes/fcode.yaml | 1 + themes/fearless-dark.yaml | 1 + themes/feefoolec-2-0.yaml | 1 + themes/felina.yaml | 3 +- themes/feline-color-theme.yaml | 1 + themes/felixo-green-contrast.yaml | 3 +- themes/felixo-green-light.yaml | 3 +- themes/felixo-green.yaml | 3 +- themes/felixo-orange-contrast.yaml | 3 +- themes/felixo-orange-light.yaml | 3 +- themes/felixo-orange.yaml | 3 +- themes/felixoux-theme.yaml | 1 + themes/feliz-dark.yaml | 1 + themes/ferra.yaml | 1 + themes/feta.yaml | 1 + themes/fictionaltheme.yaml | 1 + themes/fifties.yaml | 1 + themes/fifty-shades-of-grape.yaml | 3 +- themes/filtered.yaml | 1 + themes/finalbossjeff.yaml | 1 + themes/firefly.yaml | 83 +- themes/firefox-dark.yaml | 3 +- themes/firelight.yaml | 3 +- themes/firewatch.yaml | 3 +- themes/flamelabs-argo.yaml | 49 - themes/flamelabs-fire.yaml | 1 + themes/flamelabs-plasma.yaml | 1 + themes/flamingo-galaxy.yaml | 49 - themes/flashbang.yaml | 49 - themes/flat-light.yaml | 1 + themes/flat-theme-gray.yaml | 1 + themes/flat-theme-light.yaml | 1 + themes/flat-ui-immersed.yaml | 3 +- themes/flat-ui-one-dark.yaml | 1 + themes/flatcap.yaml | 3 +- ...-monokai-improved-no-cursor-highlight.yaml | 49 - themes/flavia.yaml | 1 + themes/fleetish.yaml | 1 + themes/fleetonedark.yaml | 1 + themes/fleety.yaml | 1 + themes/fleex-theme-dark.yaml | 1 + themes/fleex-theme-forest-dark.yaml | 1 + themes/fleex-theme-forest-light.yaml | 1 + themes/fleex-theme-light.yaml | 1 + themes/fleex-theme-mist-dark.yaml | 1 + themes/fleex-theme-mist-light.yaml | 1 + themes/fleex-theme-ocean-dark.yaml | 1 + themes/fleex-theme-ocean-light.yaml | 1 + themes/fleex-theme-plum-dark.yaml | 1 + themes/fleex-theme-plum-light.yaml | 1 + themes/fleex-theme-rose-dark.yaml | 1 + themes/fleex-theme-rose-light.yaml | 1 + themes/fleex-theme-sand-dark.yaml | 1 + themes/fleex-theme-sand-light.yaml | 1 + themes/fleex-theme-warm-dark.yaml | 1 + themes/fleex-theme-warm-light.yaml | 1 + themes/fleury-theme.yaml | 1 + themes/flex-appeal.yaml | 1 + themes/flexoki.yaml | 3 +- themes/flora.yaml | 1 + themes/florence.yaml | 1 + themes/floriamaris.yaml | 1 + themes/florist-dark.yaml | 1 + themes/florist-light.yaml | 1 + themes/flow-light.yaml | 49 - themes/fluffy-dark-theme.yaml | 3 +- themes/fluffy-theme.yaml | 3 +- themes/fluid-light-theme.yaml | 1 + themes/flukerbr-theme.yaml | 1 + themes/fluminense.yaml | 1 + themes/fluorite-theme.yaml | 1 + themes/flutter-dark.yaml | 1 + themes/flutter-theme-dark.yaml | 1 + themes/flux-dark.yaml | 1 + themes/flux-dawn.yaml | 11 +- themes/flux-daylight.yaml | 11 +- themes/flux-night.yaml | 11 +- themes/flux-twilight.yaml | 11 +- themes/fluxish.yaml | 1 + themes/foco-1-0-0.yaml | 1 + ...s-blue-colorblind-concentration-trust.yaml | 1 + themes/focus-blue-concentration-trust.yaml | 1 + ...lue-high-contrast-concentration-trust.yaml | 1 + .../focus-blue-light-concentration-trust.yaml | 1 + themes/focus-colors.yaml | 3 +- themes/focus-dark-fork-fork.yaml | 1 + themes/focusoncoding.yaml | 1 + themes/fodder-contrast.yaml | 13 +- themes/fodder-light.yaml | 13 +- themes/fodder.yaml | 13 +- themes/foggy-forest-v1.yaml | 1 + themes/fonteeboa.yaml | 3 +- themes/forest-color-theme.yaml | 3 +- themes/forest-green-vitality-connection.yaml | 1 + themes/forest-green.yaml | 1 + themes/forest-light.yaml | 1 + themes/forest-night-ethereal-magic.yaml | 3 +- themes/forest-night-italic-serenade.yaml | 3 +- themes/forest-night-serenade.yaml | 3 +- themes/forest-night.yaml | 1 + themes/forest-violet.yaml | 3 +- themes/forestfly-dark-hard.yaml | 1 + themes/forestfly-dark.yaml | 1 + themes/forestfly-light-hard.yaml | 1 + themes/forestlook.yaml | 1 + themes/forestry.yaml | 1 + themes/forge-dark.yaml | 1 + themes/forge-light.yaml | 1 + themes/formosa-dark-ipanema-blue.yaml | 1 + themes/formosa-dark-night-green.yaml | 1 + themes/formosa-light-ipanema-blue.yaml | 1 + themes/formosa-light-night-green.yaml | 1 + themes/forventone.yaml | 1 + themes/forxtu-light.yaml | 49 - themes/forxtu.yaml | 1 + themes/foundyn-dev.yaml | 1 + themes/four-sages-color-theme.yaml | 49 - themes/foxdracula-color-theme.yaml | 1 + themes/frankenstein.yaml | 3 +- themes/frantic-contrast.yaml | 13 +- themes/frantic-light.yaml | 13 +- themes/frantic.yaml | 13 +- themes/french-rose.yaml | 3 +- themes/fresh-start.yaml | 1 + themes/freshcut-contrast.yaml | 13 +- themes/freshcut-light.yaml | 13 +- themes/freshcut.yaml | 13 +- themes/friction-contrast.yaml | 13 +- themes/friction-light.yaml | 13 +- themes/friction.yaml | 13 +- themes/frontend-galaxy.yaml | 3 +- themes/frontier-contrast.yaml | 13 +- themes/frontier-light.yaml | 13 +- themes/frontier.yaml | 13 +- themes/ftrblue.yaml | 1 + ...k-all-these-vscode-custom-ugly-themes.yaml | 1 + themes/functional.yaml | 49 - themes/funx-theme.yaml | 49 - themes/furnace.yaml | 1 + themes/furukawa-pop-theme.yaml | 1 + themes/futuremotion-light.yaml | 1 + themes/futuristic-green.yaml | 1 + themes/futuristt.yaml | 3 +- themes/g-dark-blue-whale.yaml | 3 +- themes/g-dark-jacksons-purple.yaml | 3 +- themes/g-dark-light-alice-blue.yaml | 3 +- themes/g-dark-light-glitter.yaml | 3 +- themes/g-dark-light-hint-of-red.yaml | 3 +- themes/g-dark-minimal-2-astronaut-blue.yaml | 3 +- themes/g-dark-minimal-3-oxford-blue.yaml | 3 +- themes/g-dark-minimal-midnight.yaml | 3 +- themes/g-dark-one-love-black-pearl.yaml | 3 +- themes/g-dark-one-love.yaml | 3 +- .../g-dark-shader-h-ck3r-midnight-moss.yaml | 3 +- themes/g-dark-shader-haiti.yaml | 3 +- themes/g-dark-shader-mirage.yaml | 3 +- themes/g-dark-shift-midnight-moss.yaml | 3 +- themes/g-dark-shift-vulcan.yaml | 3 +- themes/g-dark-valhalla.yaml | 3 +- themes/g3-gray.yaml | 1 + themes/gagarin-theme.yaml | 1 + themes/galaxia.yaml | 3 +- themes/galaxytheme.yaml | 1 + themes/game-mode.yaml | 3 +- themes/gameboy-classic-dark.yaml | 3 +- themes/gameboy-classic-light.yaml | 3 +- themes/gamma-fork.yaml | 1 + themes/gamma.yaml | 3 +- themes/ganbaru-blue.yaml | 3 +- themes/ganbaru-dark.yaml | 3 +- themes/gantheory-dark.yaml | 1 + themes/ganyu-theme.yaml | 1 + themes/gapstyle-vs-dark-modern.yaml | 3 +- themes/gapstyle-vs.yaml | 3 +- themes/garbage-oracle-dark.yaml | 1 + themes/garbage-oracle-light.yaml | 1 + themes/gatito-next-theme.yaml | 1 + themes/gatito-nightly-red.yaml | 3 +- themes/gatito-theme.yaml | 3 +- themes/gatomontesdark2.yaml | 3 +- themes/gdfunkytheme.yaml | 1 + themes/geartheme.yaml | 1 + themes/gelato.yaml | 1 + themes/gelgel.yaml | 1 + themes/gems-theme-default.yaml | 1 + themes/gems-theme-light.yaml | 1 + themes/gen-theme.yaml | 1 + themes/generated-color-theme.yaml | 82 +- themes/genshin-impact-chiori-dark.yaml | 13 +- themes/genshin-impact-chiori.yaml | 13 +- themes/genshin-impact-citlali-dark.yaml | 13 +- themes/genshin-impact-citlali.yaml | 13 +- themes/genshin-impact-columbina-dark.yaml | 49 - themes/genshin-impact-columbina.yaml | 13 +- themes/genshin-impact-furina-dark.yaml | 13 +- themes/genshin-impact-furina.yaml | 13 +- themes/genshin-impact-ganyu-dark.yaml | 13 +- .../genshin-impact-ganyu-high-contrast.yaml | 13 +- themes/genshin-impact-ganyu-light.yaml | 13 +- themes/genshin-impact-il-dottore-dark.yaml | 13 +- themes/genshin-impact-il-dottore.yaml | 13 +- .../genshin-impact-kamisato-ayaka-dark.yaml | 13 +- themes/genshin-impact-kamisato-ayaka.yaml | 13 +- themes/genshin-impact-layla-dark.yaml | 13 +- themes/genshin-impact-layla.yaml | 13 +- themes/genshin-impact-sandrone-dark.yaml | 13 +- themes/genshin-impact-sandrone.yaml | 13 +- themes/genshin-impact-scaramouche-dark.yaml | 13 +- themes/genshin-impact-scaramouche.yaml | 13 +- themes/genshin-impact-skirk-dark.yaml | 13 +- themes/genshin-impact-skirk.yaml | 13 +- themes/genshin-impact-wanderer-dark.yaml | 13 +- themes/genshin-impact-wanderer.yaml | 13 +- themes/genshin-impact-yae-miko-dark.yaml | 13 +- themes/genshin-impact-yae-miko.yaml | 13 +- ...genshin-impact-yumemizuki-mizuki-dark.yaml | 13 +- ...mpact-yumemizuki-mizuki-high-contrast.yaml | 13 +- ...enshin-impact-yumemizuki-mizuki-light.yaml | 13 +- themes/genshin-vibes-celestine-bardlight.yaml | 3 +- themes/genshin-vibes-damselette-whisper.yaml | 3 +- themes/genshin-vibes-emergency-food.yaml | 3 +- .../genshin-vibes-eternal-electro-throne.yaml | 3 +- themes/genshin-vibes-fontaine-spotlight.yaml | 3 +- themes/genshin-vibes-frost-ritual.yaml | 3 +- themes/genshin-vibes-geo-contract-vault.yaml | 3 +- themes/genshin-vibes-hydrocourt-midnight.yaml | 3 +- themes/genshin-vibes-ice-oracle.yaml | 3 +- themes/genshin-vibes-kusanali-dawnbloom.yaml | 3 +- themes/genshin-vibes-lava-glaze-inferno.yaml | 3 +- themes/genshin-vibes-morax-golden-seal.yaml | 3 +- themes/genshin-vibes-outrider-blaze.yaml | 3 +- themes/genshin-vibes-pyro-scout.yaml | 3 +- themes/genshin-vibes-starry-companion.yaml | 3 +- themes/genshin-vibes-stormrider-breeze.yaml | 3 +- themes/genshin-vibes-sunforge-ember.yaml | 3 +- themes/genshin-vibes-veiled-harbinger.yaml | 3 +- themes/genshin-vibes-verdant-dreamweave.yaml | 3 +- .../genshin-vibes-violet-eternity-glow.yaml | 3 +- themes/gentil-dark.yaml | 1 + themes/gentle-builder.yaml | 1 + themes/gentle-clean-light.yaml | 1 + themes/gentle-clean-monokai.yaml | 1 + themes/gentle-dark-warm.yaml | 1 + themes/gentle-dark.yaml | 1 + themes/gentle-light-warmer.yaml | 1 + themes/gentle-light.yaml | 1 + themes/gentle-midnight-warm.yaml | 1 + themes/gentle-midnight.yaml | 1 + themes/gentleblack.yaml | 1 + themes/gfx.yaml | 1 + themes/gg-djaja-darken.yaml | 1 + themes/gg-djaja-default.yaml | 1 + themes/gg-djaja-light.yaml | 1 + themes/ghibli-day.yaml | 1 + themes/ghibli-forest-dark.yaml | 13 +- themes/ghibli-night.yaml | 1 + themes/ghibli-sky-light.yaml | 3 +- themes/ghost-louise.yaml | 1 + themes/ghostgrey.yaml | 1 + themes/ghostty-default-styledark.yaml | 1 + themes/ghostty-synthwave.yaml | 1 + themes/gigaaa.yaml | 3 +- themes/gineticustheme.yaml | 1 + themes/ginseng.yaml | 1 + themes/girls-theme.yaml | 1 + themes/github-blue-dark.yaml | 1 + themes/github-blue-darkest.yaml | 1 + themes/github-catppuccin-dark-mix.yaml | 3 +- themes/github-catppuccin-dark.yaml | 3 +- themes/github-contrast-theme.yaml | 1 + themes/github-contrast.yaml | 13 +- themes/github-dank-dimmed.yaml | 3 +- themes/github-dark-colorblind-grayscale.yaml | 1 + themes/github-dark-colorblind.yaml | 49 - themes/github-dark-default-grayscale.yaml | 1 + themes/github-dark-default.yaml | 55 +- themes/github-dark-dimmed-grayscale.yaml | 1 + themes/github-dark-dimmed.yaml | 87 +- .../github-dark-high-contrast-grayscale.yaml | 1 + themes/github-dark-high-contrast.yaml | 13 +- themes/github-dark-mode.yaml | 3 +- themes/github-dark-palenight.yaml | 3 +- themes/github-dark-tritanopia.yaml | 3 +- themes/github-dark.yaml | 49 - themes/github-light-colorblind.yaml | 49 - themes/github-light-default.yaml | 1 + themes/github-light-high-contrast.yaml | 49 - themes/github-light.yaml | 49 - themes/github-minimal.yaml | 1 + themes/github-revamp-alt.yaml | 49 - themes/github-theme-by-humamafif.yaml | 3 +- themes/github.yaml | 13 +- themes/gitlab-dark-grey.yaml | 3 +- themes/gitlab-dark.yaml | 3 +- themes/gitlab-light.yaml | 3 +- themes/gitlab.yaml | 1 + themes/giyu-tomioka.yaml | 3 +- themes/giza.yaml | 1 + themes/glance-contrast.yaml | 13 +- themes/glance-light.yaml | 13 +- themes/glance.yaml | 13 +- themes/gleam-theme-minimal-dark.yaml | 3 +- themes/glitchly-green.yaml | 1 + themes/gloam.yaml | 1 + themes/globe.yaml | 1 + themes/gloom-contrast.yaml | 13 +- themes/gloom-light.yaml | 13 +- themes/gloom.yaml | 13 +- themes/glowfish-contrast.yaml | 13 +- themes/glowfish-light.yaml | 13 +- themes/glowfish.yaml | 13 +- themes/glowing-sun.yaml | 1 + themes/glowing-yellow.yaml | 1 + themes/glowminerals.yaml | 1 + themes/glu-dark-lighter.yaml | 1 + themes/glu-dark.yaml | 1 + themes/glv-s-theme.yaml | 1 + themes/gms2.yaml | 3 +- themes/gnome-base16.yaml | 1 + themes/go-playground.yaml | 1 + themes/go-source.yaml | 1 + themes/goa-beach-paradise.yaml | 1 + themes/god-theme.yaml | 1 + themes/godot-4.yaml | 3 +- themes/gojo-infinity-dark.yaml | 3 +- ...oku-code-dragon-ball-z-power-eye-safe.yaml | 11 +- themes/gold.yaml | 1 + themes/golden-blue-color-theme.yaml | 1 + themes/golden-dracula.yaml | 1 + themes/golden-era.yaml | 3 +- themes/golden-eye.yaml | 3 +- themes/golden-sky.yaml | 3 +- themes/golden-sunset.yaml | 1 + themes/golden-wave.yaml | 9 +- themes/goldentheme.yaml | 1 + themes/goldfish-contrast.yaml | 13 +- themes/goldfish-light.yaml | 13 +- themes/goldfish.yaml | 13 +- themes/goldream.yaml | 1 + themes/good-purple.yaml | 3 +- themes/goodnight-classic.yaml | 3 +- themes/goodnight.yaml | 3 +- themes/gooey-theme.yaml | 1 + themes/googledark.yaml | 3 +- themes/googlory-color-theme.yaml | 49 - themes/goolou.yaml | 1 + themes/goose.yaml | 1 + themes/goosebumps.yaml | 1 + themes/gopher.yaml | 1 + themes/gorfius-orange.yaml | 9 +- themes/gorfius-peace-forest.yaml | 1 + themes/gorg.yaml | 1 + themes/gosthy.yaml | 1 + themes/gotham.yaml | 11 +- themes/gothic-absinthe.yaml | 3 +- themes/gothic-amber-fog.yaml | 3 +- themes/gothic-blood-moon.yaml | 3 +- themes/gothic-cathedral.yaml | 3 +- themes/gothic-cemetery.yaml | 3 +- themes/gothic-dark.yaml | 1 + themes/gothic-emerald-crypt.yaml | 3 +- themes/gothic-jester.yaml | 3 +- themes/gothic-midnight-rose.yaml | 3 +- themes/gothic-qaddy.yaml | 3 +- themes/gothic-raven.yaml | 3 +- themes/gothic-spider-lily.yaml | 3 +- themes/gothic-twilight-forest.yaml | 3 +- themes/gothic-vampire.yaml | 85 +- themes/gothic-victorian-mourning.yaml | 3 +- themes/gothic.yaml | 1 + themes/gourd.yaml | 1 + themes/gptheme-dark.yaml | 1 + themes/gptheme.yaml | 1 + themes/gracefulbear.yaml | 1 + themes/grandblue-pastel.yaml | 1 + themes/grandblue-soft.yaml | 1 + themes/grandblue.yaml | 1 + themes/grank-blackout.yaml | 1 + themes/grank-italics.yaml | 49 - themes/grapered.yaml | 1 + themes/grapevine.yaml | 3 +- themes/graphlinq-dark.yaml | 1 + themes/grassrivers-sunset.yaml | 3 +- themes/gravel-pit.yaml | 1 + themes/graveyard.yaml | 1 + themes/gravity.yaml | 1 + themes/gray-matter.yaml | 1 + themes/gray-pastel.yaml | 1 + themes/gray.yaml | 49 - themes/graygraygray.yaml | 3 +- themes/graymium-theme.yaml | 1 + themes/grayscale301-light.yaml | 1 + themes/great-white-bloodloss.yaml | 3 +- themes/great-white-dark.yaml | 3 +- themes/great-white-frost.yaml | 3 +- themes/great-white-high-contrast-dark.yaml | 3 +- themes/great-white-high-contrast-light.yaml | 3 +- themes/great-white-light.yaml | 3 +- themes/great-white-storm.yaml | 3 +- themes/great-white.yaml | 3 +- themes/greblue.yaml | 1 + themes/greeeeen.yaml | 1 + themes/green-coffee.yaml | 3 +- themes/green-geek.yaml | 1 + themes/green-kingdom.yaml | 11 +- themes/green-low-contrast.yaml | 1 + themes/green-papper.yaml | 1 + themes/green-theme.yaml | 3 +- themes/green-tree.yaml | 3 +- themes/green-valley-forest.yaml | 3 +- themes/green-valley-matrix.yaml | 3 +- themes/green-valley-midnight.yaml | 3 +- themes/green-valley-mint.yaml | 3 +- themes/green-valley-neo.yaml | 3 +- themes/green-water.yaml | 1 + themes/green-yow.yaml | 1 + themes/green.yaml | 1 + themes/greenbreeze-dark.yaml | 1 + themes/greenbreeze-light.yaml | 1 + themes/greenbyte-dark.yaml | 1 + themes/greencloud.yaml | 1 + themes/greeney-v2.yaml | 1 + themes/greeney.yaml | 1 + themes/greeni.yaml | 1 + themes/greenmachine.yaml | 1 + themes/greenspace.yaml | 1 + themes/greeny.yaml | 49 - themes/grewee-colorscheme.yaml | 1 + themes/greygull.yaml | 1 + themes/greyout.yaml | 3 +- themes/greystillplays.yaml | 3 +- themes/grimoire-nox.yaml | 1 + themes/grimoire.yaml | 1 + themes/grove-street-noir.yaml | 3 +- themes/gru-black.yaml | 3 +- themes/gru.yaml | 49 - themes/gruber-blue.yaml | 1 + themes/grumbra.yaml | 13 +- themes/grunboxtheme.yaml | 1 + themes/grunge-contrast.yaml | 13 +- themes/grunge-light.yaml | 13 +- themes/grunge.yaml | 13 +- themes/grusper.yaml | 1 + themes/gruvalized-dark.yaml | 3 +- themes/gruvalized-light.yaml | 3 +- themes/gruvbox-dark-medium.yaml | 19 +- themes/gruvbox-dark-soft.yaml | 3 +- themes/gruvbox-drakenlords-dark-draken.yaml | 3 +- themes/gruvbox-drakenlords-dark.yaml | 1 + themes/gruvbox-drakenlords-grey.yaml | 3 +- themes/gruvbox-drakenlords-semi-dark.yaml | 3 +- themes/gruvbox-ish-dark-hard.yaml | 3 +- themes/gruvbox-ish-dark-medium.yaml | 3 +- themes/gruvbox-ish-dark-soft.yaml | 3 +- .../gruvbox-material-dark-claude-hybrid.yaml | 1 + themes/gruvbox-material-dark.yaml | 49 - themes/gruvbox-material-flat-dark.yaml | 3 +- themes/gruvbox-material-flat-light.yaml | 3 +- themes/gruvbox-material-light.yaml | 49 - themes/gruvbox-minor-dark-hard.yaml | 13 +- themes/gruvbox-minor-dark-medium.yaml | 13 +- themes/gruvbox-minor-dark-soft.yaml | 13 +- themes/gruvbox-minor-light-hard.yaml | 13 +- themes/gruvbox-minor-light-medium.yaml | 13 +- themes/gruvbox-minor-light-soft.yaml | 13 +- themes/gruvchad.yaml | 1 + themes/gruvdark-gbm.yaml | 1 + themes/gruvdark-mono.yaml | 49 - themes/gruvdark-tokyo.yaml | 1 + themes/guezwhoz.yaml | 1 + themes/guisaldanha-light.yaml | 1 + themes/gujarat-vibrant-culture.yaml | 1 + themes/gum.yaml | 11 +- themes/gumua.yaml | 3 +- themes/gunivers.yaml | 1 + themes/gunmetal-code-pro.yaml | 1 + themes/gustavoglins.yaml | 1 + themes/gusuku-limestone.yaml | 1 + themes/gyomei-himejima.yaml | 3 +- themes/h1-dark-fork.yaml | 3 +- themes/h1-light-fork.yaml | 3 +- themes/haavyz.yaml | 1 + themes/habamax.yaml | 3 +- themes/habamix.yaml | 3 +- themes/hachiko.yaml | 3 +- themes/hack-and-lima.yaml | 1 + themes/hack-electron.yaml | 1 + themes/hackage-theme.yaml | 1 + themes/hacker-blue.yaml | 3 +- themes/hacker-pink.yaml | 1 + themes/hacker-x.yaml | 3 +- themes/hacker.yaml | 3 +- themes/hackish.yaml | 1 + themes/hackpot-batman-vs-joker-dark.yaml | 3 +- themes/hackpot-batman-vs-joker.yaml | 3 +- themes/hackpot-dark-knight.yaml | 3 +- themes/hackpot-darker-knight.yaml | 3 +- themes/hackpot-garden-dark.yaml | 3 +- themes/hackpot-garden-of-atlantis.yaml | 3 +- themes/hackpot-garden-purple-haze.yaml | 3 +- themes/hackpot-garden.yaml | 3 +- themes/hackpot-muddy-garden.yaml | 3 +- themes/hackpot-poisoned-garden.yaml | 3 +- themes/hadar.yaml | 3 +- themes/haidark-two.yaml | 1 + themes/halcyon.yaml | 3 +- themes/half-gray.yaml | 1 + themes/halflife-contrast.yaml | 13 +- themes/halflife-light.yaml | 13 +- themes/halflife.yaml | 13 +- themes/halloween.yaml | 1 + themes/hallucination.yaml | 1 + themes/hamidthedev-professional.yaml | 3 +- themes/han.yaml | 1 + themes/happy-dark.yaml | 1 + themes/happy-heart-1-dark-classic.yaml | 1 + themes/happy-heart-10-forest-green.yaml | 1 + themes/happy-heart-11-emerald-green.yaml | 1 + themes/happy-heart-12-midnight-purple.yaml | 1 + themes/happy-heart-13-royal-purple.yaml | 1 + themes/happy-heart-14-rose-gold.yaml | 1 + themes/happy-heart-15-chilli-paper.yaml | 1 + themes/happy-heart-16-grey.yaml | 1 + themes/happy-heart-17-yellow.yaml | 1 + themes/happy-heart-2-dark-orange.yaml | 1 + themes/happy-heart-3-dark-purple.yaml | 1 + themes/happy-heart-4-dark-green.yaml | 1 + themes/happy-heart-5-deep-blue.yaml | 1 + themes/happy-heart-6-ocean-blue.yaml | 1 + themes/happy-heart-7-navy-blue.yaml | 1 + themes/happy-heart-8-bright-light.yaml | 1 + themes/happy-heart-9-smooth-light.yaml | 1 + themes/hapsida.yaml | 1 + themes/hard-hacker-darker.yaml | 3 +- themes/hard-hacker-high-contrast.yaml | 49 - themes/hard-hacker-light-high-contrast.yaml | 49 - themes/harddark.yaml | 1 + themes/hardwired-arctic-blue.yaml | 3 +- themes/hardwired-electric-lime.yaml | 3 +- themes/hardwired-purple.yaml | 3 +- themes/harley-quinn-theme.yaml | 1 + themes/harmonized-dark.yaml | 35 +- themes/harmonized-light-hc.yaml | 1 + themes/harmonized-light.yaml | 1 + themes/harriet.yaml | 1 + themes/harrys.yaml | 1 + themes/hashirama-senju-god-of-shinobi.yaml | 3 +- themes/haube-blue-1.yaml | 1 + themes/hawaii-contrast.yaml | 13 +- themes/hawaii-light.yaml | 13 +- themes/hawaii.yaml | 13 +- themes/hc-zenburn.yaml | 3 +- themes/hecker-boy.yaml | 1 + themes/held.yaml | 1 + themes/helion.yaml | 1 + themes/helios-solarized-dark.yaml | 3 +- themes/helios-solarized-light.yaml | 3 +- themes/helix.yaml | 3 +- themes/hell-pine.yaml | 1 + themes/hellfire.yaml | 3 +- themes/hello-world-theme.yaml | 1 + themes/hello.yaml | 49 - themes/hendrikkels-dark.yaml | 1 + themes/hendrikkels-light.yaml | 1 + themes/heptapod.yaml | 1 + themes/herbal.yaml | 1 + themes/hereafter.yaml | 1 + themes/hero-dark-inverse.yaml | 49 - themes/heroku-contrast.yaml | 13 +- themes/heroku-light.yaml | 13 +- themes/heroku.yaml | 13 +- themes/herzha-dark.yaml | 3 +- themes/herzha-flux.yaml | 3 +- themes/herzha-vanta.yaml | 3 +- themes/hfa-theme.yaml | 1 + themes/hhp1614.yaml | 1 + themes/hi-dark.yaml | 1 + themes/hi-light.yaml | 1 + themes/hibiscus.yaml | 13 +- themes/high-contrast-april-light-theme.yaml | 3 +- themes/high-contrast-april-theme.yaml | 3 +- themes/high-contrast-august-light-theme.yaml | 3 +- themes/high-contrast-february-dark-theme.yaml | 3 +- ...trast-february-light-theme-accessible.yaml | 3 +- ...gh-contrast-february-theme-accessible.yaml | 3 +- themes/high-contrast-july-light-theme.yaml | 3 +- themes/high-contrast-june-light-theme.yaml | 3 +- ...-contrast-march-dark-theme-accessible.yaml | 3 +- themes/high-contrast-march-dark-theme.yaml | 3 +- ...contrast-march-light-theme-accessible.yaml | 3 +- .../high-contrast-march-theme-accessible.yaml | 3 +- themes/high-contrast-may-light-theme.yaml | 3 +- .../high-contrast-september-light-theme.yaml | 3 +- themes/high-contrast-sunset.yaml | 3 +- themes/high-tea.yaml | 3 +- themes/highflyer.yaml | 1 + themes/highgruv.yaml | 1 + themes/highland-winter.yaml | 1 + themes/himalaya-dark.yaml | 1 + themes/hinode.yaml | 1 + themes/hipster-next.yaml | 1 + themes/hive-contrast.yaml | 13 +- themes/hive-light.yaml | 13 +- themes/hive.yaml | 13 +- themes/hobbyist-goth.yaml | 3 +- themes/hoccacas.yaml | 1 + themes/hocsinhnghiemtuc.yaml | 1 + themes/holdesher-dark.yaml | 1 + themes/holy-bible.yaml | 1 + themes/homebrew.yaml | 3 +- themes/homecooked-theme.yaml | 1 + themes/homer.yaml | 1 + themes/homey.yaml | 1 + themes/honkai-star-rail-aventurine-dark.yaml | 13 +- themes/honkai-star-rail-aventurine.yaml | 13 +- themes/honkai-star-rail-cyrene-dark.yaml | 13 +- themes/honkai-star-rail-cyrene.yaml | 13 +- themes/honkai-star-rail-dan-heng-dark.yaml | 13 +- themes/honkai-star-rail-dan-heng.yaml | 13 +- themes/honkai-star-rail-firefly-dark.yaml | 13 +- themes/honkai-star-rail-firefly.yaml | 13 +- themes/honkai-star-rail-kafka-dark.yaml | 13 +- themes/honkai-star-rail-kafka.yaml | 13 +- themes/honkai-star-rail-march-7th-dark.yaml | 13 +- themes/honkai-star-rail-march-7th.yaml | 13 +- themes/honkai-star-rail-robin-dark.yaml | 13 +- themes/honkai-star-rail-robin-light-soft.yaml | 13 +- themes/honkai-star-rail-ruan-mei-dark.yaml | 13 +- themes/honkai-star-rail-ruan-mei.yaml | 13 +- themes/horizon-contrast.yaml | 13 +- themes/horizon-extended.yaml | 3 +- themes/horizon-laker-theme.yaml | 1 + themes/horizon-light.yaml | 13 +- themes/horizon.yaml | 13 +- themes/horizondark.yaml | 1 + themes/horror-theme.yaml | 1 + themes/horus.yaml | 1 + themes/hot-pink-theme.yaml | 1 + themes/hot-stuff.yaml | 3 +- themes/hotrice.yaml | 1 + themes/house-of-the-dragon-team-blacks.yaml | 49 - themes/houston.yaml | 13 +- themes/htvodp.yaml | 1 + themes/huacat-pink-dark.yaml | 3 +- themes/hub-contrast.yaml | 49 - themes/hub-light.yaml | 13 +- themes/hub.yaml | 13 +- themes/hugodvlp.yaml | 1 + themes/hulcu.yaml | 1 + themes/human-dark.yaml | 3 +- themes/human-high-contrast.yaml | 3 +- themes/human-light.yaml | 3 +- themes/human-low-light.yaml | 3 +- themes/human-soft.yaml | 3 +- themes/human-warm.yaml | 3 +- themes/human.yaml | 1 + themes/hundred-oceans.yaml | 1 + themes/hush-dark.yaml | 1 + themes/hush-light.yaml | 1 + themes/hutaotheme.yaml | 3 +- themes/hybrid-dim.yaml | 1 + themes/hybrid-next-gray-background.yaml | 1 + themes/hybrid-theme.yaml | 1 + themes/hydr-theme.yaml | 1 + themes/hydra-night.yaml | 1 + themes/hydra-storm.yaml | 1 + themes/hyezo-dark.yaml | 49 - themes/hyle-color-theme.yaml | 1 + themes/hyle-night-night-color-theme.yaml | 1 + themes/hyped-down-fork.yaml | 3 +- themes/hyped-down-theme.yaml | 1 + themes/hyper-ctrl-theme.yaml | 1 + themes/hyper.yaml | 1 + themes/hyperdark-theme.yaml | 3 +- themes/hyperlink.yaml | 1 + .../hyperrail-theme-hyper-syntax-colors.yaml | 1 + themes/hypersubatomic.yaml | 3 +- themes/hypervoxel.yaml | 1 + themes/hyprluna.yaml | 3 +- themes/hyrule-contrast.yaml | 13 +- themes/hyrule-light.yaml | 13 +- themes/hyrule.yaml | 13 +- themes/i-don-t-know.yaml | 1 + themes/i-solarised-color-theme.yaml | 3 +- themes/i3-aurora-x-custom-ii.yaml | 49 - themes/i3-aurora-x-custom-iii.yaml | 49 - themes/i3-aurora-x-custom.yaml | 49 - themes/ian.yaml | 3 +- ...gray-10-alternative-code-highlighting.yaml | 49 - ...ray-100-alternative-code-highlighting.yaml | 49 - ...gray-90-alternative-code-highlighting.yaml | 49 - ...n-white-alternative-code-highlighting.yaml | 49 - themes/icaria.yaml | 1 + themes/icattheme.yaml | 3 +- themes/icc-light-theme.yaml | 3 +- themes/ice-cube-dark.yaml | 1 + themes/ice-cube-light.yaml | 1 + themes/ice.yaml | 3 +- themes/iceberg-contrast.yaml | 13 +- themes/iceberg-light.yaml | 87 +- themes/iceberg.yaml | 81 +- themes/icefall.yaml | 1 + themes/idea-islands-dark.yaml | 3 +- themes/iditarod.yaml | 1 + themes/idk.yaml | 7 +- themes/idx-theme-dark.yaml | 3 +- themes/idx-xcode-dark-improved.yaml | 13 +- themes/igniter-theme-light.yaml | 1 + themes/igniter-theme.yaml | 1 + themes/ikaros-white.yaml | 1 + themes/ikaros.yaml | 1 + themes/ikki-vscode-dark-theme.yaml | 3 +- themes/ikki-vscode-light-theme.yaml | 3 +- themes/ikshana.yaml | 1 + themes/illusion-refined.yaml | 49 - themes/iloveagents-azure-ai-foundry-dark.yaml | 3 +- .../iloveagents-azure-ai-foundry-light.yaml | 3 +- themes/iloveagents-dark.yaml | 3 +- themes/iloveagents-light.yaml | 3 +- themes/imba-dark.yaml | 3 +- themes/imexoodeex.yaml | 3 +- themes/in-bed-by-7pm.yaml | 3 +- themes/in-darkest-night.yaml | 1 + themes/in-his-earthy-elements.yaml | 1 + themes/in-the-fog-dark.yaml | 3 +- themes/index.json | 1331 ++++++++++++----- themes/index.yaml | 3 +- themes/indielayer.yaml | 1 + themes/indigo-and-amaranth.yaml | 1 + themes/indigo-ice.yaml | 1 + themes/industrialcomplex.yaml | 49 - themes/industry.yaml | 1 + themes/infatuation.yaml | 77 +- themes/inferius.yaml | 1 + themes/infinitus.yaml | 1 + ...finity-64-blackboard-by-shingo-murata.yaml | 1 + ...finity-64-whiteboard-by-shingo-murata.yaml | 1 + themes/infinity-dark-contrast.yaml | 3 +- themes/infinity.yaml | 1 + themes/ingeni.yaml | 1 + themes/inheritance.yaml | 3 +- themes/inkpot.yaml | 1 + themes/inksea-dank.yaml | 1 + themes/inksea-dark.yaml | 1 + themes/inksea-dracula.yaml | 1 + themes/inksea-hacker.yaml | 1 + themes/inksea-midnight.yaml | 1 + themes/inksea-oceanic.yaml | 1 + themes/inksea-sea-monkey.yaml | 1 + themes/inksea.yaml | 1 + themes/inkstained.yaml | 1 + themes/inovando-theme.yaml | 1 + themes/insane.yaml | 3 +- themes/insight.yaml | 1 + themes/inspiration.yaml | 1 + themes/instamuch.yaml | 1 + themes/intellij-dark-color-theme.yaml | 3 +- themes/intellij-idea-islands-dark.yaml | 3 +- themes/intellij-idea-islands-light.yaml | 3 +- themes/intellij-idea-new-ui.yaml | 13 +- .../intellij-light-classic-color-theme.yaml | 49 - themes/intellij-light-deaft.yaml | 1 + themes/intelliyay-color-theme.yaml | 1 + themes/intergalactic.yaml | 9 +- themes/interstellar-blue-ii.yaml | 1 + themes/interstellar-blue.yaml | 1 + themes/interstellar.yaml | 1 + themes/intility-bifrost-theme.yaml | 1 + themes/into-the-unknow-fork.yaml | 3 +- themes/invi.yaml | 1 + themes/ionztorm-theme.yaml | 1 + themes/irishbruse-s-color-theme.yaml | 3 +- themes/ironhellrider.yaml | 1 + themes/ironman-theme-dark.yaml | 3 +- themes/ironman-theme-light.yaml | 3 +- themes/irony.yaml | 1 + themes/is-them-tears-bro.yaml | 1 + themes/islands-dark.yaml | 3 +- themes/islands-light.yaml | 3 +- themes/isotope-contrast.yaml | 13 +- themes/isotope-light.yaml | 13 +- themes/isotope.yaml | 13 +- themes/itsnp-dark-cyan.yaml | 1 + themes/itsnp-dark-pink.yaml | 1 + themes/itsnp-dark.yaml | 1 + themes/itsnp-night-blue.yaml | 1 + themes/itsnp-yellow.yaml | 1 + themes/iv-spade.yaml | 1 + themes/ivalo-color-theme.yaml | 1 + themes/iwa-s-code-theme.yaml | 1 + themes/j-cinco-da-manh.yaml | 1 + themes/j-theme.yaml | 1 + themes/jabrms.yaml | 1 + themes/jackhammar.yaml | 3 +- themes/jaga-theme.yaml | 1 + themes/jammy-jellyfish.yaml | 3 +- themes/jamuntheme.yaml | 1 + themes/jannchie-black.yaml | 1 + themes/jannchie-dark-soft.yaml | 1 + themes/jannchie-dark.yaml | 1 + themes/jannchie-light-soft.yaml | 1 + themes/jannchie-light.yaml | 1 + themes/japanese-breakfast.yaml | 1 + themes/jartur.yaml | 1 + themes/jarvis-3d.yaml | 3 +- themes/jarvis.yaml | 1 + themes/jasmine.yaml | 1 + themes/java-dark-theme.yaml | 1 + themes/javascript-modern-dark.yaml | 1 + themes/javascript-neon-dark.yaml | 1 + themes/javascript-vibrant-dark.yaml | 1 + themes/jazari-dark.yaml | 1 + themes/jazari-light.yaml | 1 + themes/jcardenas.yaml | 1 + themes/jcsoftiablack.yaml | 3 +- themes/jcsoftiadark.yaml | 3 +- themes/jcsoftiadarkblue.yaml | 3 +- themes/jcsoftiadarkred.yaml | 3 +- themes/jd-s-abyss.yaml | 1 + themes/jdarkmaterial-v2.yaml | 1 + themes/jdh.yaml | 1 + themes/jehuty-dark.yaml | 1 + themes/jehuty-light.yaml | 1 + themes/jelly-theme.yaml | 3 +- themes/jelly.yaml | 3 +- themes/jellybeans-theme.yaml | 3 +- themes/jellybeans.yaml | 1 + themes/jellyfish.yaml | 9 +- themes/jeng-light.yaml | 3 +- themes/jetbrain-fleet-color.yaml | 1 + themes/jetbrains-dark-theme.yaml | 3 +- themes/jetbrains-deep-dark-theme.yaml | 3 +- themes/jetbrains-ide-dark-theme.yaml | 3 +- themes/jetcode.yaml | 1 + themes/jetdark.yaml | 1 + themes/jetverse-dev-dark.yaml | 49 - themes/jewel-contrast.yaml | 13 +- themes/jewel-light.yaml | 13 +- themes/jewel.yaml | 13 +- themes/jg-vsc.yaml | 1 + themes/jingle-contrast.yaml | 13 +- themes/jingle-light.yaml | 13 +- themes/jingle.yaml | 13 +- themes/jinglecode.yaml | 1 + themes/jinshi-dark-theme.yaml | 3 +- themes/jinshi-light-theme.yaml | 3 +- themes/jinx.yaml | 1 + themes/jk.yaml | 1 + themes/jker-purple-wave.yaml | 1 + themes/jngl.yaml | 1 + themes/jojobii-s-colors.yaml | 1 + themes/jokejoke.yaml | 1 + themes/joker-contrast.yaml | 13 +- themes/joker-light.yaml | 13 +- themes/joker-neon.yaml | 3 +- themes/joker.yaml | 13 +- themes/jollifake.yaml | 3 +- themes/jolly-light.yaml | 1 + themes/jone-light.yaml | 1 + themes/joyboy.yaml | 1 + themes/joyful-fork.yaml | 49 - themes/js-dark-theme.yaml | 3 +- themes/jtvscode-dark.yaml | 1 + themes/jtvscode-light.yaml | 1 + themes/jugal13-theme.yaml | 1 + themes/juicy-contrast.yaml | 13 +- themes/juicy-light.yaml | 13 +- themes/juicy.yaml | 13 +- themes/july-summer-vibes-dark-theme.yaml | 3 +- themes/jummidark.yaml | 1 + themes/jummilight.yaml | 1 + themes/jumper-contrast.yaml | 13 +- themes/jumper-light.yaml | 13 +- themes/jumper.yaml | 13 +- themes/jungle.yaml | 1 + themes/juniorcoder.yaml | 1 + themes/just-code-already-fork.yaml | 1 + themes/jwrdark.yaml | 13 +- themes/k-colorable-dark.yaml | 1 + themes/k-colorable-light.yaml | 1 + themes/k-relaxed.yaml | 1 + themes/kabukich.yaml | 13 +- themes/kactus-dream-theme-dark.yaml | 1 + themes/kactus-dream-theme.yaml | 1 + themes/kadoku.yaml | 1 + themes/kai-garbage.yaml | 1 + themes/kai-sa-white-fork.yaml | 1 + themes/kai.yaml | 3 +- themes/kailash-shaw-dark-theme.yaml | 3 +- themes/kaimandres.yaml | 1 + themes/kaio.yaml | 1 + themes/kaiokenkolors.yaml | 1 + themes/kaique-theme.yaml | 1 + themes/kaisa-dark.yaml | 1 + themes/kali-linux-theme.yaml | 3 +- themes/kalia.yaml | 1 + themes/kalidozza.yaml | 3 +- themes/kalisi.yaml | 1 + themes/kalmia-high-contrast.yaml | 1 + themes/kalmia.yaml | 1 + themes/kami-theme.yaml | 1 + themes/kanagawa-dragon.yaml | 3 +- themes/kanagawa-light.yaml | 1 + themes/kanagawa-lotus.yaml | 3 +- themes/kanagawa-night.yaml | 1 + themes/kanagawa-paper.yaml | 3 +- themes/kanagawa-wave-light.yaml | 1 + themes/kanagawa-wave.yaml | 1 + themes/kanagawa.yaml | 49 - themes/kanamin-dark.yaml | 1 + themes/kanao.yaml | 67 +- themes/kanso-ink.yaml | 3 +- themes/kanso-mist.yaml | 3 +- themes/kanso-pearl.yaml | 3 +- themes/kaolin-light-theme-alt.yaml | 3 +- themes/kaolin-light-theme.yaml | 3 +- themes/kaplan-dark-muted.yaml | 49 - themes/kara.yaml | 1 + themes/karma.yaml | 81 +- themes/karnataka-sandalwood-state.yaml | 1 + themes/karou-noir.yaml | 1 + themes/karou-theme.yaml | 1 + themes/karrot-theme-classic.yaml | 1 + themes/karry-color-theme.yaml | 49 - themes/kary-pro-colors-dark.yaml | 3 +- themes/kary-pro-colors-light.yaml | 3 +- themes/kastorcode-dark-orange-theme.yaml | 3 +- themes/kastorcode-dark-purple-theme.yaml | 3 +- themes/katagawatheme.yaml | 3 +- themes/kato.yaml | 1 + themes/kaupo.yaml | 1 + themes/kayhan.yaml | 1 + themes/kayto.yaml | 1 + themes/kaze.yaml | 1 + themes/kblue-minimal.yaml | 1 + themes/keen-contrast.yaml | 13 +- themes/keen-light.yaml | 13 +- themes/keen.yaml | 13 +- themes/kenobi-dark-theme.yaml | 1 + themes/kerala-god-s-own-country.yaml | 1 + themes/kerama-deep.yaml | 1 + themes/kermit-fork.yaml | 3 +- themes/keval-s-official-electric-lime.yaml | 49 - themes/kiiro-dark.yaml | 1 + themes/killer-dark.yaml | 1 + themes/kindfeeling.yaml | 1 + themes/kingfisher-fishing.yaml | 1 + themes/kinnitchi-neon-dark-modern.yaml | 1 + themes/kintsugi-dark.yaml | 3 +- themes/kintsugi-light.yaml | 3 +- themes/kiona.yaml | 1 + themes/kira-theme.yaml | 1 + themes/kismat-default-colors.yaml | 1 + themes/kiss.yaml | 1 + themes/kite-dark.yaml | 13 +- themes/kite-darker.yaml | 13 +- themes/kite-light.yaml | 13 +- themes/kitty-catty.yaml | 1 + themes/kitty-night.yaml | 3 +- themes/kittypower.yaml | 3 +- themes/kiwi-contrast.yaml | 13 +- themes/kiwi-light.yaml | 13 +- themes/kiwi.yaml | 1 + themes/kiwisoup-fork.yaml | 3 +- themes/knapsack.yaml | 1 + themes/knfocus-alt.yaml | 1 + themes/knfocus-base.yaml | 1 + themes/knoctal-dark.yaml | 1 + themes/knoctal-darker.yaml | 1 + themes/knowit-dark.yaml | 1 + themes/knowlyr-dark.yaml | 1 + themes/knowlyr-light.yaml | 1 + themes/koala-codes-theme.yaml | 3 +- themes/kod-purple.yaml | 1 + themes/kodex-arctic.yaml | 3 +- themes/kodex.yaml | 3 +- themes/koffee-kreme.yaml | 1 + themes/koi-noir-lan-theme.yaml | 1 + themes/koi-noir-theme.yaml | 1 + themes/koi-pond-dark.yaml | 7 +- themes/koi-pond-light.yaml | 7 +- themes/kokatheme.yaml | 1 + themes/koki-dark.yaml | 1 + themes/kokubo.yaml | 1 + themes/kolada.yaml | 3 +- themes/komorebi.yaml | 1 + themes/kong-light-extended.yaml | 49 - themes/konng.yaml | 1 + themes/kopo-theme.yaml | 1 + themes/korbit.yaml | 1 + themes/korean-dancheong-dark.yaml | 3 +- themes/korsr-theme.yaml | 1 + themes/kozy-darker.yaml | 1 + themes/kozy.yaml | 1 + themes/kpurple.yaml | 1 + themes/kradeno.yaml | 1 + themes/krb-violet.yaml | 1 + themes/kripton.yaml | 13 +- themes/krishna-dark-elegant.yaml | 1 + themes/kroma-cardinal-light.yaml | 1 + themes/krone.yaml | 1 + themes/krow-t.yaml | 1 + themes/kryptonite-theme.yaml | 1 + themes/ktrz-monokai.yaml | 1 + themes/kubesong.yaml | 3 +- themes/kultist-v2.yaml | 3 +- themes/kurdish-vibrant-theme.yaml | 1 + themes/kurdor-light.yaml | 1 + themes/kuro-theme-color-theme.yaml | 1 + themes/kuro.yaml | 1 + themes/kuroir-dark-01-crimson.yaml | 9 +- themes/kuroir-dark-02-vermilion.yaml | 9 +- themes/kuroir-dark-04-goldenrod.yaml | 9 +- themes/kuroir-dark-05-citrine.yaml | 49 - themes/kuroir-dark-06-chartreuse.yaml | 9 +- themes/kuroir-dark-07-fern.yaml | 9 +- themes/kuroir-dark-08-emerald.yaml | 9 +- themes/kuroir-dark-09-jade.yaml | 9 +- themes/kuroir-dark-13-turquoise.yaml | 49 - themes/kuroir-dark-17-sapphire.yaml | 49 - themes/kuroir-dark-18-indigo.yaml | 9 +- themes/kuroir-dark-19-violet.yaml | 49 - themes/kuroir-dark-20-amethyst.yaml | 9 +- themes/kuroir-dark-21-magenta.yaml | 9 +- themes/kuroir-dark-22-fuchsia.yaml | 9 +- themes/kuroir-dark-23-rose.yaml | 9 +- themes/kuroir-dark-24-coral.yaml | 9 +- themes/kuroir-light-02-vermilion.yaml | 49 - themes/kuroir-light-04-goldenrod.yaml | 49 - themes/kuroir-light-07-fern.yaml | 9 +- themes/kuroir-light-09-jade.yaml | 9 +- themes/kuroir-light-13-turquoise.yaml | 49 - themes/kuroir-light-15-sky.yaml | 9 +- themes/kuroir-light-18-indigo.yaml | 9 +- themes/kuroir-light-19-violet.yaml | 9 +- themes/kuroir-light-23-rose.yaml | 9 +- themes/kyanite.yaml | 11 +- themes/kybern.yaml | 1 + themes/kybik-dark.yaml | 1 + themes/kybik.yaml | 1 + themes/kyngo-s-theme.yaml | 1 + themes/kyojuro-rengoku.yaml | 3 +- themes/kyorazo-dark-theme.yaml | 3 +- themes/lackluster-dark.yaml | 1 + themes/lackluster-night.yaml | 49 - themes/ladyluck-color-theme.yaml | 1 + themes/lanten-color-theme-dark.yaml | 1 + themes/lapis-ruby-dark-stealth-version.yaml | 49 - themes/lapis-ruby-light.yaml | 49 - themes/lapis-stealth-version.yaml | 49 - themes/laracasts-contrast.yaml | 13 +- themes/laracasts-light.yaml | 13 +- themes/laracasts.yaml | 13 +- themes/laravel-contrast.yaml | 13 +- themes/laravel-light.yaml | 13 +- themes/laravel.yaml | 85 +- themes/laserkai.yaml | 1 + themes/late-night.yaml | 1 + themes/lauds.yaml | 3 +- themes/lavalink.yaml | 1 + themes/lavanda.yaml | 3 +- themes/lavender-contrast.yaml | 49 - themes/lavender-dark-theme.yaml | 3 +- themes/lavender-light-theme.yaml | 3 +- themes/lavender-light.yaml | 13 +- themes/lavender.yaml | 13 +- themes/lazuli.yaml | 1 + themes/lazy-yellow-lemon.yaml | 1 + themes/lazygreed-theme.yaml | 1 + themes/lazzaretti-plenatech.yaml | 1 + themes/lazzaretti-win11.yaml | 1 + themes/lbb-builder-dark.yaml | 1 + themes/lbb-builder-light.yaml | 1 + themes/lc.yaml | 1 + themes/lcars.yaml | 1 + themes/le-moderne.yaml | 1 + themes/leaf-dark-soft.yaml | 1 + themes/leaf-dark.yaml | 1 + themes/lean-coders-dark.yaml | 1 + .../learn-with-sumit-blue-velvet-theme.yaml | 49 - themes/learn-with-sumit-official-theme.yaml | 49 - ...umit-peace-of-the-eye-dracula-version.yaml | 49 - .../learn-with-sumit-professional-theme.yaml | 49 - themes/learn-with-sumit-simple-as-light.yaml | 49 - themes/learn-with-sumit-theme.yaml | 3 +- themes/learn-with-sumit-vintage.yaml | 49 - themes/leftish.yaml | 1 + themes/legacy-contrast.yaml | 13 +- themes/legacy-light.yaml | 13 +- themes/legacy-solarized-dark-color-theme.yaml | 3 +- .../legacy-solarized-light-color-theme.yaml | 3 +- themes/legacy.yaml | 49 - themes/legendary-dark.yaml | 3 +- themes/legends-theme-night-fymhr-special.yaml | 1 + themes/legends-theme-night.yaml | 1 + themes/leios.yaml | 1 + themes/lemon.yaml | 1 + themes/lemonade.yaml | 1 + themes/leon-arantes.yaml | 1 + themes/leon.yaml | 1 + themes/leonida-keys-ocean.yaml | 3 +- themes/lesbian.yaml | 1 + themes/lesser.yaml | 1 + themes/let-s-code.yaml | 1 + themes/leviosa-theme.yaml | 1 + themes/levuaska.yaml | 1 + themes/lht.yaml | 1 + themes/liangliang-one-monokai.yaml | 1 + themes/lichen-contrast.yaml | 13 +- themes/lichen-light.yaml | 13 +- themes/lichen.yaml | 13 +- themes/light-brown.yaml | 1 + themes/light-code-with-bars.yaml | 1 + themes/light-color-theme.yaml | 49 - themes/light-decay.yaml | 3 +- themes/light-gruvdark-mono.yaml | 1 + themes/light-gruvdark-tokyo.yaml | 1 + themes/light-gruvdark.yaml | 1 + themes/light-print.yaml | 1 + themes/light-red.yaml | 49 - themes/light-springbok.yaml | 3 +- themes/light-theme.yaml | 1 + themes/light.yaml | 85 +- themes/lightblack.yaml | 3 +- themes/lightdelight.yaml | 1 + themes/lighter-a-theme-for-light-coders.yaml | 1 + themes/lightestlighttheme.yaml | 1 + themes/lighthaus.yaml | 1 + themes/lightning-cloud.yaml | 49 - themes/lightning-dark.yaml | 3 +- themes/lightning-material-day.yaml | 3 +- themes/lightning-material-evening.yaml | 3 +- themes/lightning-material-midnight.yaml | 3 +- themes/lightning-material-soft.yaml | 3 +- themes/lightning-soft-dark.yaml | 3 +- themes/lightning-soft.yaml | 3 +- themes/lightning-theme.yaml | 1 + themes/lightning.yaml | 3 +- themes/ligiapink.yaml | 3 +- themes/ligor-fork.yaml | 49 - themes/lilac-dreams.yaml | 1 + themes/lilac-grove.yaml | 3 +- themes/lima-theme.yaml | 1 + themes/limpo-dark.yaml | 1 + themes/limpo-darker.yaml | 1 + themes/linear-dark.yaml | 1 + themes/linear-light.yaml | 1 + themes/linkarzu-vscode-theme.yaml | 1 + themes/lino-dark-ruby.yaml | 1 + themes/lionel.yaml | 1 + themes/liquid-dark.yaml | 3 +- themes/liquid-ochre.yaml | 3 +- themes/liquid-ray-light.yaml | 3 +- themes/liquid-ray.yaml | 3 +- themes/liquor-theme.yaml | 1 + themes/liquorice.yaml | 1 + themes/little-league-dark.yaml | 1 + themes/little-league-darker.yaml | 1 + themes/little-league-light.yaml | 1 + themes/lives.yaml | 1 + themes/living-twilight.yaml | 1 + themes/lncoder-theme.yaml | 49 - themes/lofi.yaml | 3 +- themes/loki-official-classic.yaml | 1 + themes/loki-official-kang-edition.yaml | 1 + themes/loki-theme-contrast.yaml | 3 +- themes/loki-theme.yaml | 3 +- themes/lolo.yaml | 1 + themes/lone-wolf-dark.yaml | 1 + themes/lonely.yaml | 1 + themes/lonus-dark.yaml | 1 + themes/lookify-dark-mode.yaml | 3 +- themes/lookify-light-mode.yaml | 3 +- themes/looped.yaml | 1 + themes/loopy.yaml | 1 + themes/lore.yaml | 1 + themes/lostforindia.yaml | 1 + themes/lotus-dark.yaml | 3 +- themes/lotus-flat-dusk.yaml | 3 +- themes/lotus-flat-midnight.yaml | 3 +- themes/lotus-light.yaml | 3 +- themes/lovepurple.yaml | 3 +- themes/lowlvl.yaml | 1 + themes/loyal-contrast.yaml | 13 +- themes/loyal-light.yaml | 13 +- themes/loyal.yaml | 13 +- themes/luanslaslatheme.yaml | 1 + themes/luau-starlit.yaml | 1 + themes/lubasiverse-freewill.yaml | 3 +- themes/lubasiverse.yaml | 3 +- themes/lucario.yaml | 1 + themes/lucid-labs-dark.yaml | 3 +- themes/lucid-labs-light.yaml | 3 +- .../lucifer-terminal-dark-hacker-edition.yaml | 1 + themes/luckyhub.yaml | 1 + themes/lui.yaml | 1 + themes/luiz-dark-theme.yaml | 3 +- themes/luke-skywriter.yaml | 3 +- themes/lull.yaml | 1 + themes/lulutheme.yaml | 1 + themes/lumenrift.yaml | 1 + themes/lumin.yaml | 1 + themes/lumina.yaml | 1 + themes/luminara-void.yaml | 1 + themes/luminashade-amethyst.yaml | 3 +- themes/luminescence-theme.yaml | 1 + themes/lumon-theme.yaml | 3 +- themes/lumos-black.yaml | 1 + themes/lumos-dark-soft.yaml | 1 + themes/lumos-dark.yaml | 1 + themes/lunar-eclipse-golden-hour.yaml | 3 +- themes/lunar-eclipse-light.yaml | 3 +- themes/lunar-eclipse.yaml | 3 +- themes/lunar-pink-satellite.yaml | 3 +- themes/lunar-pink.yaml | 3 +- themes/lunar-theme.yaml | 1 + themes/lunar-vscode.yaml | 3 +- themes/lunar.yaml | 3 +- themes/lunaria.yaml | 1 + themes/lunna-dark.yaml | 1 + themes/lupine.yaml | 1 + themes/lupus.yaml | 1 + themes/luxeforest.yaml | 1 + themes/lyra-s-vega.yaml | 3 +- themes/lztheme.yaml | 1 + themes/m-unity-s-custom-vscode-theme.yaml | 1 + themes/m2d-fork.yaml | 1 + themes/mac-theme.yaml | 1 + themes/machine.yaml | 3 +- themes/macho-man.yaml | 1 + themes/macos-classic-dark.yaml | 1 + themes/macos-classic-light.yaml | 1 + themes/macos.yaml | 1 + themes/macrodata-refiners-classic.yaml | 3 +- themes/macrodata-refiners-cold-harbor.yaml | 3 +- themes/macrodata-refiners-defiant-jazz.yaml | 3 +- themes/macrodata-refiners-ortbo.yaml | 3 +- themes/macrodata-refiners-sweet-vitriol.yaml | 3 +- themes/mad-dark-volt.yaml | 1 + themes/madak17z-darkmode-testing.yaml | 1 + themes/madness.yaml | 1 + themes/madnight.yaml | 1 + themes/madrid-night.yaml | 1 + themes/magenta-one-dark-pro.yaml | 3 +- themes/magic-mushroom-theme.yaml | 1 + themes/magicorp.yaml | 49 - themes/magicuser-bases.yaml | 3 +- themes/magicuser-book.yaml | 3 +- themes/magicuser-camouflage-light.yaml | 3 +- themes/magicuser-camouflage.yaml | 3 +- themes/magicuser-day.yaml | 3 +- themes/magicuser-light-blue.yaml | 3 +- themes/magicuser-light-gray.yaml | 3 +- themes/magicuser-light-green.yaml | 3 +- themes/magicuser-light-orange.yaml | 3 +- themes/magicuser-light-purple.yaml | 3 +- themes/magicuser-light.yaml | 3 +- themes/magicuser-neblina.yaml | 3 +- themes/magicuser-night-neblina.yaml | 3 +- themes/magicuser-night.yaml | 3 +- themes/magicuser-paladin.yaml | 3 +- themes/magicuser-path.yaml | 3 +- themes/magicuser-power.yaml | 3 +- themes/magicuser-purple-night.yaml | 3 +- themes/magicuser-purple.yaml | 3 +- themes/magicuser-room-lamp.yaml | 3 +- themes/magicuser-sea.yaml | 3 +- themes/magicuser-space.yaml | 3 +- themes/magicuser-specialist.yaml | 3 +- themes/magicuser-staff.yaml | 3 +- themes/magicuser-sun.yaml | 3 +- themes/magicuser-talisman.yaml | 3 +- themes/magicuser-teal-night.yaml | 3 +- themes/magicuser-teal.yaml | 3 +- themes/magicuser-veteran-blue.yaml | 3 +- themes/magicuser-veteran-purple.yaml | 3 +- themes/magicuser-veteran.yaml | 3 +- themes/magicuser-wand-blue.yaml | 3 +- themes/magicuser.yaml | 3 +- themes/magnolia.yaml | 3 +- themes/magnus-dark-theme.yaml | 1 + themes/maguh.yaml | 1 + themes/maharashtra-land-of-warriors.yaml | 1 + themes/mahiro.yaml | 1 + themes/maisum-xcode-dark.yaml | 1 + themes/mak1na-theme.yaml | 1 + themes/make-apps.yaml | 3 +- themes/malachite.yaml | 1 + themes/maldi-dark.yaml | 1 + themes/malibu-sunset.yaml | 1 + themes/malibun-sunrise.yaml | 1 + themes/man-dark-stone.yaml | 3 +- themes/manatee.yaml | 1 + themes/mandacaru-syntax-theme.yaml | 3 +- themes/manhld-theme.yaml | 1 + themes/manjaro-owl.yaml | 1 + themes/manners.yaml | 1 + themes/mantissa-dark.yaml | 1 + themes/mantissa-light.yaml | 1 + themes/maomao-dark-theme.yaml | 3 +- themes/maomao-light-theme.yaml | 3 +- themes/maple-dark.yaml | 3 +- themes/maple-light.yaml | 1 + themes/marble-dark.yaml | 1 + themes/marci1.yaml | 1 + themes/marcial-theme.yaml | 1 + themes/marcosven.yaml | 3 +- themes/mariana-light.yaml | 3 +- themes/mariana-pro.yaml | 3 +- themes/mariana-refined.yaml | 3 +- themes/mariana.yaml | 51 +- themes/marigold-night.yaml | 1 + themes/mario-theme.yaml | 3 +- themes/marnic1505.yaml | 3 +- themes/maroza-cyber-chill.yaml | 1 + themes/maroza-dark-theme.yaml | 1 + themes/maroza-light-theme.yaml | 1 + themes/maroza-soothing-aqua.yaml | 1 + themes/maroza-zen-pro.yaml | 1 + themes/mars.yaml | 1 + themes/marshmallow.yaml | 1 + themes/marsidark.yaml | 3 +- themes/marstree.yaml | 1 + themes/marwen-labidi-theme.yaml | 1 + themes/matcha.yaml | 1 + themes/matchalk.yaml | 1 + themes/matchanaa.yaml | 1 + themes/matchati.yaml | 1 + themes/material-color-theme.yaml | 3 +- themes/material-community-ansi-16.yaml | 1 + themes/material-dark-color-theme.yaml | 3 +- themes/material-last.yaml | 49 - themes/material-midnight.yaml | 1 + themes/material-monokai-high-contrast.yaml | 1 + themes/material-rainbow.yaml | 1 + themes/material-solarized.yaml | 1 + themes/material-theme-dark.yaml | 1 + .../material-theme-darker-high-contrast.yaml | 49 - themes/material-theme-darker.yaml | 49 - ...terial-theme-deepforest-high-contrast.yaml | 49 - .../material-theme-default-high-contrast.yaml | 49 - .../material-theme-lighter-high-contrast.yaml | 49 - themes/material-theme-lighter.yaml | 49 - ...aterial-theme-palenight-high-contrast.yaml | 49 - ...material-theme-twilight-wave-ocean-ui.yaml | 3 +- themes/material.yaml | 3 +- themes/material1.yaml | 1 + themes/materialdarker-monokaist3.yaml | 1 + themes/materialdarkplus.yaml | 1 + themes/matey.yaml | 3 +- themes/matitheme-gotham.yaml | 1 + themes/matitheme.yaml | 1 + themes/matrix-hacking-dark-theme.yaml | 3 +- themes/matrix.yaml | 3 +- themes/matronator-s-theme.yaml | 1 + themes/matte-atelier-ivory.yaml | 1 + themes/matte-atelier-obsidian-colorblind.yaml | 1 + .../matte-atelier-obsidian-high-contrast.yaml | 1 + themes/matte-atelier-obsidian.yaml | 1 + themes/matte-atelier-ros.yaml | 1 + themes/matte-atelier-sapphire.yaml | 1 + themes/matte-light-theme.yaml | 1 + themes/matteblack.yaml | 3 +- themes/matter.yaml | 1 + themes/matteric-dark-default.yaml | 1 + themes/mauve-contrast.yaml | 13 +- themes/mauve-light.yaml | 13 +- themes/mauve.yaml | 13 +- themes/mavaia.yaml | 1 + themes/max2.yaml | 1 + themes/maxsumon.yaml | 1 + themes/mayukai.yaml | 71 +- themes/mazda-rx7-theme.yaml | 1 + themes/mbp.yaml | 1 + themes/mcdark-theme.yaml | 3 +- themes/mcdonalds-theme.yaml | 3 +- themes/mcyoda-s-light-theme.yaml | 1 + themes/md-abdur-rakib.yaml | 1 + themes/meaow-dark.yaml | 1 + themes/mecha-01.yaml | 3 +- themes/mega-green.yaml | 1 + themes/meitnerium-theme.yaml | 1 + themes/mel.yaml | 1 + themes/melancholy.yaml | 1 + themes/melange-redux-light.yaml | 13 +- themes/melcr.yaml | 1 + themes/melee-island.yaml | 1 + themes/mellow-contrast.yaml | 13 +- themes/mellow-light.yaml | 13 +- themes/mellow.yaml | 13 +- themes/melokai.yaml | 1 + themes/meloncode.yaml | 1 + themes/melyon-blue.yaml | 1 + themes/melyon.yaml | 1 + themes/menelik.yaml | 1 + themes/meoceanblackbarry.yaml | 49 - themes/meoceangray.yaml | 11 +- themes/mesalvo-cortex.yaml | 1 + themes/meshvoid-light.yaml | 1 + themes/meshvoid.yaml | 1 + themes/meteora.yaml | 1 + themes/metropolis-light.yaml | 1 + themes/metropolis.yaml | 1 + themes/mgldvd-theme.yaml | 1 + themes/mh-theme.yaml | 1 + themes/mhfeizi.yaml | 1 + themes/mi4uokai.yaml | 1 + themes/miami-vice.yaml | 1 + themes/miami-wind.yaml | 1 + themes/miasma-color-theme.yaml | 83 +- themes/mibtema.yaml | 1 + themes/micky-dark-black.yaml | 1 + themes/micky-dark-lite-black.yaml | 1 + themes/micky-dark-lite.yaml | 1 + themes/midas-touch-light.yaml | 1 + themes/midas-touch.yaml | 85 +- themes/midcentury.yaml | 1 + themes/midight-sun.yaml | 1 + themes/midnight-blueprint.yaml | 1 + themes/midnight-breeze.yaml | 1 + themes/midnight-candy.yaml | 1 + themes/midnight-city.yaml | 13 +- themes/midnight-color-theme.yaml | 1 + themes/midnight-darker.yaml | 1 + themes/midnight-dracula.yaml | 1 + themes/midnight-embers.yaml | 3 +- themes/midnight-fusion.yaml | 1 + themes/midnight-gambler.yaml | 3 +- themes/midnight-grove.yaml | 3 +- themes/midnight-guest.yaml | 1 + themes/midnight-lake.yaml | 1 + themes/midnight-marina.yaml | 1 + themes/midnight-mirage.yaml | 1 + themes/midnight-monokai.yaml | 1 + themes/midnight-moon-eclipse.yaml | 1 + themes/midnight-moon-ukiyo.yaml | 1 + themes/midnight-moon.yaml | 1 + themes/midnight-pastel.yaml | 3 +- themes/midnight-pro.yaml | 1 + themes/midnight-purple-deep.yaml | 3 +- themes/midnight-purple.yaml | 1 + themes/midnight-rainbow.yaml | 3 +- themes/midnight-rose-theme.yaml | 3 +- themes/midnight-sapphire.yaml | 1 + themes/midnight-theme-light-soft.yaml | 1 + themes/midnight-theme-light.yaml | 1 + themes/midnight-theme.yaml | 1 + themes/midnight-ukiyo.yaml | 1 + themes/midnight-z.yaml | 1 + themes/midnightblue.yaml | 1 + themes/midnightglow.yaml | 1 + themes/midt.yaml | 1 + themes/mihari-bordered.yaml | 1 + themes/mihari.yaml | 1 + themes/mike-sources-green-crt.yaml | 1 + themes/mike-sources-yellowstone.yaml | 1 + themes/mikes-vscode-theme-1.yaml | 1 + themes/miku-code-fusion-light.yaml | 13 +- themes/miku-code-light.yaml | 13 +- themes/miku-code.yaml | 13 +- themes/milianor-theme.yaml | 47 +- themes/military-fork.yaml | 1 + themes/milkyway.yaml | 1 + themes/mimesis-dark.yaml | 1 + themes/mimesis-light.yaml | 1 + themes/min-gruvbox.yaml | 3 +- themes/min-light.yaml | 49 - themes/mincom.yaml | 1 + themes/minimal-44-pro.yaml | 1 + themes/minimal-44.yaml | 1 + themes/minimal-dark-fork.yaml | 1 + themes/minimal-dark.yaml | 1 + themes/minimal-green.yaml | 3 +- themes/minimal-monochrome-dark.yaml | 5 +- themes/minimal-monochrome-ink-dark.yaml | 5 +- themes/minimal-monochrome-ink-light.yaml | 5 +- themes/minimal-monochrome-pastel-dawn.yaml | 5 +- themes/minimal-monochrome-pastel-light.yaml | 5 +- themes/minimal-monochrome-slate-dark.yaml | 5 +- themes/minimal-monochrome-slate-light.yaml | 49 - ...mal-pastel-dark-vibrant-softer-yellow.yaml | 3 +- themes/minimal-theme.yaml | 3 +- themes/minimal-wave-floral-dark.yaml | 1 + themes/minimal-wave-floral-light.yaml | 1 + themes/minimal.yaml | 83 +- themes/minimalesque.yaml | 1 + themes/minimalist.yaml | 1 + themes/minimalistic-dark-theme.yaml | 1 + themes/minimalisticdarktheme.yaml | 3 +- themes/minimalistik.yaml | 1 + themes/minimalred.yaml | 1 + themes/miniml-dusk.yaml | 1 + themes/miniml-light.yaml | 1 + themes/miniml-midnight.yaml | 1 + themes/minimus.yaml | 1 + themes/minitheme.yaml | 1 + themes/mink-dark-theme.yaml | 1 + themes/minokai-kalel.yaml | 1 + themes/minone.yaml | 1 + themes/mint-chocolate.yaml | 3 +- themes/mint-dark.yaml | 3 +- themes/mintchoc-contrast.yaml | 13 +- themes/mintchoc-light.yaml | 13 +- themes/mintchoc.yaml | 13 +- themes/mintdark.yaml | 3 +- themes/minty-dark.yaml | 3 +- themes/mirai.yaml | 1 + themes/miramare.yaml | 1 + themes/mist-theme.yaml | 1 + themes/mist.yaml | 1 + themes/misterioso.yaml | 1 + themes/misty-blue.yaml | 3 +- themes/mistywind.yaml | 1 + themes/mitaverse.yaml | 1 + themes/mitsuri-kanroji.yaml | 3 +- themes/mixed-solarized-light.yaml | 1 + themes/mk-iceblack.yaml | 1 + themes/mk-mono-dark.yaml | 3 +- themes/mk-mono-light.yaml | 49 - themes/mkanet.yaml | 1 + themes/mkdeveloper-theme.yaml | 1 + themes/mlia-dark.yaml | 1 + themes/mlia-light.yaml | 1 + themes/mlia-soft.yaml | 1 + themes/mlv60-vintage-light.yaml | 1 + themes/mocaccino-light.yaml | 1 + themes/moderate-dimm.yaml | 1 + themes/modern-dracula.yaml | 1 + themes/modern-github-white-purple.yaml | 49 - themes/moderneclipse.yaml | 1 + themes/modernui-fork.yaml | 13 +- themes/modest-pink.yaml | 1 + themes/modified-darker-material-theme.yaml | 1 + themes/modus-operandi-deuteranopia.yaml | 1 + themes/modus-operandi-tinted.yaml | 1 + themes/modus-operandi-tritanopia.yaml | 1 + themes/modus-operandi.yaml | 1 + themes/modus-vivendi-deuteranopia.yaml | 1 + themes/modus-vivendi-tinted.yaml | 1 + themes/modus-vivendi-tritanopia.yaml | 1 + themes/modus-vivendi.yaml | 1 + themes/moegi-black-zen.yaml | 3 +- themes/moegi-black.yaml | 3 +- themes/moegi-dark.yaml | 3 +- themes/moegi-dawn.yaml | 3 +- themes/moegi-iris.yaml | 3 +- themes/moegi-light.yaml | 3 +- themes/moegi-space.yaml | 3 +- themes/moin-acme.yaml | 1 + themes/moin-dark.yaml | 1 + themes/moin-light.yaml | 1 + themes/moin-soft-dark.yaml | 1 + themes/mojito-pro-dark.yaml | 1 + themes/mojito-pro.yaml | 1 + themes/mokka-fork-darken-blue.yaml | 1 + themes/mokka.yaml | 1 + themes/mol-lurity-theme-soft-fixed.yaml | 1 + themes/mol-lurity-theme.yaml | 1 + themes/molarity-washed.yaml | 1 + themes/molineux.yaml | 1 + themes/moloch.yaml | 1 + themes/molokai-darker.yaml | 1 + themes/molten-aurora.yaml | 1 + themes/monaco-paulsevere-color-theme.yaml | 1 + themes/monfika.yaml | 1 + themes/mono-atom.yaml | 1 + themes/mono-bw.yaml | 1 + themes/mono-cl.yaml | 3 +- themes/monochai-dark.yaml | 13 +- themes/monochromator-dark-plain.yaml | 3 +- themes/monochromator-light-plain.yaml | 3 +- themes/monochrome-dark-amplified.yaml | 3 +- themes/monochrome-dark-cool-gray.yaml | 3 +- themes/monochrome-dark-gray.yaml | 1 + themes/monochrome-dark-indigo.yaml | 3 +- themes/monochrome-dark-neutral.yaml | 1 + themes/monochrome-dark-slate.yaml | 1 + themes/monochrome-dark-stone.yaml | 1 + themes/monochrome-dark-subtle.yaml | 3 +- themes/monochrome-dark-zinc.yaml | 1 + themes/monochrome-dark.yaml | 71 +- themes/monochrome-github-edition.yaml | 3 +- themes/monochrome-light-amplified.yaml | 3 +- themes/monochrome-light-cool-gray.yaml | 3 +- themes/monochrome-light-gray.yaml | 1 + themes/monochrome-light-indigo.yaml | 3 +- themes/monochrome-light-neutral.yaml | 1 + themes/monochrome-light-slate.yaml | 1 + themes/monochrome-light-stone.yaml | 1 + themes/monochrome-light-subtle.yaml | 3 +- themes/monochrome-light-zinc.yaml | 1 + themes/monochrome-light.yaml | 73 +- themes/monochrome.yaml | 3 +- themes/monoclean-light.yaml | 1 + themes/monocr.yaml | 1 + themes/monocraft.yaml | 3 +- themes/monoeye.yaml | 1 + themes/monokai-blue.yaml | 49 - themes/monokai-color-theme-1.yaml | 1 + themes/monokai-color-theme.yaml | 49 - themes/monokai-dark-green.yaml | 1 + themes/monokai-dark.yaml | 1 + themes/monokai-deep-dark.yaml | 13 +- themes/monokai-deep-ocean.yaml | 1 + themes/monokai-drizzle.yaml | 1 + themes/monokai-extended.yaml | 1 + themes/monokai-faded.yaml | 1 + themes/monokai-flow.yaml | 1 + themes/monokai-grey.yaml | 1 + themes/monokai-grs.yaml | 1 + themes/monokai-hc-color-theme.yaml | 3 +- themes/monokai-japan-color-theme.yaml | 1 + themes/monokai-midnight.yaml | 1 + themes/monokai-night-z-blue.yaml | 1 + themes/monokai-night.yaml | 49 - themes/monokai-ocean-color-theme.yaml | 3 +- themes/monokai-octagon.yaml | 3 +- themes/monokai-okean.yaml | 1 + themes/monokai-original-sublime-theme.yaml | 3 +- themes/monokai-prime.yaml | 3 +- themes/monokai-pro.yaml | 19 +- themes/monokai-rain.yaml | 1 + themes/monokai-seti-dark.yaml | 3 +- themes/monokai-seti-light.yaml | 3 +- themes/monokai-sharp.yaml | 1 + themes/monokai-soda-darker.yaml | 3 +- themes/monokai-storm.yaml | 1 + themes/monokai-supersaturated.yaml | 1 + themes/monokai-tornado.yaml | 1 + themes/monokai-underdark-mk.yaml | 1 + themes/monokai-underdark.yaml | 1 + themes/monokai-unified.yaml | 13 +- themes/monokai.yaml | 49 - themes/monokai22.yaml | 1 + themes/monokaiju.yaml | 1 + themes/monokaisgq.yaml | 1 + themes/monokaizen.yaml | 1 + themes/monokard.yaml | 1 + themes/monokong.yaml | 1 + themes/monokuro-amber.yaml | 1 + themes/monolite.yaml | 1 + themes/monos-blac.yaml | 1 + themes/monospace-dark.yaml | 3 +- themes/monospace-light.yaml | 3 +- themes/monotone.yaml | 49 - themes/monrch-darc.yaml | 1 + themes/montana.yaml | 1 + themes/monzo-contrast.yaml | 13 +- themes/monzo-light.yaml | 13 +- themes/monzo.yaml | 13 +- themes/moon-light-theme.yaml | 3 +- themes/moon-night.yaml | 1 + themes/moon-purple.yaml | 3 +- themes/moon-violet-dark-plus.yaml | 3 +- themes/moonbloom-theme-official.yaml | 3 +- themes/moonerized-dark.yaml | 1 + themes/moonerized-light.yaml | 1 + themes/moongate-theme-dark.yaml | 1 + themes/moongate-theme-light.yaml | 1 + themes/moonkai.yaml | 1 + themes/moonlight-ii.yaml | 3 +- themes/moonlight.yaml | 3 +- themes/moonokai.yaml | 1 + themes/morass-contrast.yaml | 13 +- themes/morass-light.yaml | 13 +- themes/morass.yaml | 13 +- themes/more-purple.yaml | 1 + themes/morgan-codes.yaml | 3 +- themes/mori-keycaps.yaml | 1 + themes/mori.yaml | 1 + themes/morning-mist.yaml | 1 + themes/morning-mocha.yaml | 1 + themes/morose-theme.yaml | 1 + themes/mosaic.yaml | 3 +- themes/mosmmy.yaml | 1 + themes/moss-oracle.yaml | 3 +- themes/mossframe-light.yaml | 1 + themes/mossframe.yaml | 1 + themes/motion-blue-thin-brackets.yaml | 49 - themes/mount-kalaga-noir.yaml | 3 +- themes/mountain-theme.yaml | 1 + themes/mountain.yaml | 49 - themes/mourning.yaml | 1 + themes/mowgli.yaml | 3 +- themes/mr-code-black.yaml | 1 + themes/mr-code-gunmetal.yaml | 1 + themes/ms-dev-theme.yaml | 3 +- themes/mt-doom-theme.yaml | 1 + themes/mud-contrast.yaml | 13 +- themes/mud-light.yaml | 13 +- themes/mud-theme.yaml | 1 + themes/mud.yaml | 13 +- themes/muromachi.yaml | 1 + themes/murora-light-lite.yaml | 1 + themes/murtadapy-green.yaml | 1 + themes/muted-mirage.yaml | 1 + themes/mutenight.yaml | 1 + themes/mwone-dark.yaml | 1 + themes/my-custom-theme.yaml | 85 +- themes/my-dark-theme-refined-updated.yaml | 1 + themes/my-dark-theme.yaml | 49 - themes/my-first-visual-studio-theme.yaml | 1 + themes/my-hero-academia-deku-plus-ultra.yaml | 3 +- themes/my-light-theme-blue-dark.yaml | 1 + themes/my-light-theme-blue.yaml | 1 + ...-light-theme-light-green-fork-updated.yaml | 1 + ...ight-theme-light-green-paperblue-fork.yaml | 1 + ...t-theme-light-green-papermint-updated.yaml | 1 + ...theme-mint-sand-updated-fork-bluesand.yaml | 1 + themes/my-light-theme-mint-sand-updated.yaml | 1 + themes/my-monokai.yaml | 1 + themes/my-oceanic.yaml | 1 + themes/my-theme.yaml | 1 + themes/my-zu.yaml | 1 + themes/mycode-dark-blue.yaml | 49 - themes/mygo.yaml | 1 + themes/mynthra.yaml | 1 + themes/myoptic-v2.yaml | 3 +- themes/myoptic.yaml | 1 + themes/myrteal.yaml | 1 + themes/mystic-moonshadow.yaml | 1 + themes/mystic.yaml | 1 + themes/mystico-c64-pepto-ntsc-sony.yaml | 3 +- themes/mystico-c64-pepto-pal.yaml | 3 +- themes/mystico-c64.yaml | 3 +- themes/mystico-deep-purple.yaml | 1 + themes/mystico-forest-ocean.yaml | 1 + themes/mystico-mint.yaml | 1 + themes/mystico-purples.yaml | 1 + themes/mytheme.yaml | 49 - themes/myvscode.yaml | 1 + themes/n-darktheme.yaml | 1 + themes/n0m4d.yaml | 1 + themes/n7-lilac.yaml | 1 + themes/n7-maya.yaml | 1 + themes/n7-night-vision.yaml | 1 + themes/n7-purple-green.yaml | 1 + themes/n7-red-flare.yaml | 1 + themes/n7-soft-pink.yaml | 1 + themes/nada-theme.yaml | 1 + themes/nairobi-dark.yaml | 1 + themes/nameless.yaml | 49 - themes/nanowise.yaml | 1 + themes/naps-dusk-gold.yaml | 1 + themes/narato.yaml | 49 - themes/narunika.yaml | 1 + themes/naruto-akatsuki.yaml | 3 +- .../naruto-hinata-hyuga-byakugan-vision.yaml | 3 +- themes/naruto-hokage-dawn.yaml | 3 +- themes/naruto-hokage-orange.yaml | 3 +- ...uto-itachi-uchiha-tsukuyomi-dimension.yaml | 3 +- themes/naruto-jiraiya-gallant-toad-sage.yaml | 3 +- themes/naruto-kakashi-copy-ninja.yaml | 3 +- themes/naruto-kurama-nine-tails.yaml | 3 +- ...hina-uzumaki-red-hot-blooded-habanero.yaml | 3 +- ...might-guy-gate-of-death-madara-battle.yaml | 3 +- themes/naruto-might-guy-gates-of-youth.yaml | 3 +- .../naruto-minato-namikaze-yellow-flash.yaml | 3 +- themes/naruto-pain-nagato-rinnegan-god.yaml | 3 +- themes/naruto-sage-mode.yaml | 3 +- ...to-sakura-haruno-cherry-blossom-storm.yaml | 3 +- themes/naruto-sasuke-uchiha-sharingan.yaml | 3 +- ...ruto-shikamaru-nara-shadow-possession.yaml | 3 +- themes/naruto-shinobi-night.yaml | 3 +- themes/natasha-theme.yaml | 3 +- themes/natives-in-tech-theme.yaml | 1 + themes/natto-theme-2.yaml | 1 + themes/natty.yaml | 49 - themes/natural-faded-dark.yaml | 1 + ...tural-green-colorblind-growth-harmony.yaml | 49 - .../natural-green-light-growth-harmony.yaml | 1 + themes/nature-color-theme.yaml | 1 + ...ature-green-colorblind-growth-harmony.yaml | 49 - themes/nature-green-light-growth-harmony.yaml | 1 + themes/nature.yaml | 1 + themes/nautilus.yaml | 1 + themes/naver.yaml | 1 + themes/navy-flat.yaml | 1 + themes/navy-nights-theme.yaml | 1 + themes/navy-theme.yaml | 1 + themes/navy.yaml | 3 +- themes/nb-monochrome-dark.yaml | 1 + themes/ncl5c.yaml | 1 + themes/nebula-color-theme.yaml | 13 +- ...-dark-vibrant-fabo-it-and-media-group.yaml | 1 + themes/nebula-nights.yaml | 3 +- themes/nebula-pro-dark.yaml | 3 +- themes/nebula-surge.yaml | 1 + themes/nebula-symphony-dark-pro.yaml | 1 + themes/nebula-symphony-dark.yaml | 1 + themes/nebula-symphony-light.yaml | 1 + themes/nebula.yaml | 1 + themes/nebular-theme.yaml | 1 + themes/nebularomantic.yaml | 1 + themes/nebulous-dark.yaml | 49 - themes/nebulous-luna.yaml | 1 + themes/necessity-aaa-light.yaml | 1 + themes/necessity-aaa.yaml | 1 + themes/negative-theme.yaml | 1 + themes/neil-s-theme-dark.yaml | 5 +- themes/neil-s-theme.yaml | 5 +- themes/nekhbet.yaml | 1 + themes/neki.yaml | 1 + themes/neo-hacker-soft-premium.yaml | 11 +- themes/neo-nuxt-matte.yaml | 1 + themes/neo-seoul-dark.yaml | 3 +- themes/neo-seoul-light.yaml | 3 +- themes/neo-vscode-theme.yaml | 1 + themes/neodark.yaml | 1 + themes/neofusion.yaml | 1 + themes/neogenesis.yaml | 1 + themes/neokai.yaml | 1 + themes/neon-black.yaml | 1 + themes/neon-color-dark-theme.yaml | 3 +- themes/neon-cyber.yaml | 11 +- themes/neon-cyberpunk.yaml | 3 +- themes/neon-dream-code.yaml | 3 +- themes/neon-dreams-neobrutalist.yaml | 49 - themes/neon-dusk.yaml | 1 + themes/neon-forest.yaml | 1 + themes/neon-glow.yaml | 3 +- themes/neon-green-light.yaml | 1 + themes/neon-green-midnight.yaml | 1 + themes/neon-lights.yaml | 1 + themes/neon-matrix.yaml | 3 +- themes/neon-noir.yaml | 1 + themes/neon-ocean.yaml | 3 +- themes/neon-palette-themes-blue.yaml | 49 - themes/neon-purple-old-school.yaml | 49 - themes/neon-shimmer-amethyst-core.yaml | 3 +- themes/neon-shimmer-bubblegum-punk.yaml | 3 +- themes/neon-shimmer-crimson-drive.yaml | 3 +- themes/neon-shimmer.yaml | 3 +- themes/neon-side.yaml | 1 + themes/neon-sunset.yaml | 3 +- themes/neon-synthwave.yaml | 3 +- themes/neon-theme.yaml | 1 + themes/neon-trench-theme.yaml | 1 + themes/neon-violet.yaml | 3 +- themes/neon.yaml | 49 - themes/neonaska.yaml | 3 +- themes/neonite.yaml | 3 +- themes/neonmist.yaml | 1 + themes/neonshaded.yaml | 1 + themes/neorose-vimpine.yaml | 1 + themes/neospace.yaml | 1 + themes/neospectrum-midnight.yaml | 1 + themes/neospectrum-mystic.yaml | 1 + themes/neovim-sp.yaml | 1 + themes/neovim-theme.yaml | 3 +- themes/nephtis-dark.yaml | 1 + themes/nephtis-light.yaml | 1 + themes/nerd-light.yaml | 1 + themes/nero.yaml | 1 + themes/nestjs-codes.yaml | 3 +- themes/netbeans-harmonized.yaml | 3 +- themes/netbilla-blue.yaml | 1 + themes/netlify-theme.yaml | 3 +- themes/netlify.yaml | 3 +- themes/netrunnaz.yaml | 1 + themes/netstack.yaml | 1 + themes/nettsi-monokai-darker.yaml | 1 + themes/netuno.yaml | 1 + themes/neumatter-night.yaml | 1 + themes/neuraltone.yaml | 1 + themes/neutral-gray-minimalism-focus.yaml | 1 + themes/neutral.yaml | 85 +- themes/neutralvi.yaml | 1 + themes/neutron.yaml | 3 +- themes/nevada.yaml | 1 + themes/never-be-lost-day.yaml | 1 + themes/never-be-lost-night.yaml | 1 + themes/nevermore.yaml | 1 + themes/neverwhere.yaml | 1 + themes/nevo-black.yaml | 1 + themes/nevo-comfy.yaml | 1 + themes/nevo.yaml | 1 + themes/new-england-light-theme.yaml | 3 +- themes/new-moon.yaml | 13 +- themes/new-owl.yaml | 1 + themes/new-retro.yaml | 1 + themes/new-south-wales-dark.yaml | 5 +- themes/new-south-wales-light.yaml | 5 +- themes/new-sphere.yaml | 3 +- themes/new-theme.yaml | 1 + themes/newdarktheme.yaml | 1 + themes/newera-dark-theme.yaml | 1 + themes/newrailscasts.yaml | 3 +- themes/newspaperlike.yaml | 1 + themes/newsprint-c.yaml | 49 - themes/newsprint-invert.yaml | 1 + themes/newsprint-so.yaml | 1 + themes/newton-contrast.yaml | 13 +- themes/newton-light.yaml | 13 +- themes/newton-next-official.yaml | 1 + themes/newton.yaml | 13 +- themes/newx-light.yaml | 1 + themes/next-theme.yaml | 1 + themes/nextcode.yaml | 1 + themes/nexus.yaml | 1 + themes/ngc-aurora-dawn.yaml | 1 + themes/ngc-aurora-night.yaml | 1 + themes/ngc-forest-retreat.yaml | 1 + themes/ngc-midnight-base.yaml | 1 + themes/ngoding-bro.yaml | 1 + themes/nibelung-dark.yaml | 1 + themes/nibelung.yaml | 1 + themes/nice-dark.yaml | 1 + themes/nicedark-fork.yaml | 1 + themes/nicedark.yaml | 1 + themes/nicely-neon.yaml | 1 + themes/nier-automata-light-theme.yaml | 3 +- themes/nier-automata-theme.yaml | 3 +- themes/night-aurora.yaml | 1 + themes/night-blossom.yaml | 3 +- themes/night-blue-high.yaml | 1 + themes/night-city.yaml | 3 +- themes/night-cyan.yaml | 1 + themes/night-dragon.yaml | 1 + themes/night-fae-theme.yaml | 1 + themes/night-market.yaml | 1 + themes/night-owl-oled-dim-100.yaml | 3 +- themes/night-owl-oled-dim-75.yaml | 3 +- themes/night-owl-oled-dim-80.yaml | 3 +- themes/night-owl-oled-dim-85.yaml | 3 +- themes/night-owl-oled-dim-90.yaml | 3 +- themes/night-owl-oled-dim-95.yaml | 3 +- themes/night-owl.yaml | 49 - themes/night-pink.yaml | 1 + themes/night-raccoon.yaml | 1 + themes/night-rainbow-darker.yaml | 3 +- themes/night-rainbow-purple-haze.yaml | 3 +- themes/night-rainbow.yaml | 3 +- themes/night-stack-amber-crt.yaml | 1 + themes/night-stack-amber-dark.yaml | 1 + themes/night-stack-arctic-night.yaml | 1 + themes/night-stack-aurora.yaml | 1 + themes/night-stack-carbon-green.yaml | 1 + themes/night-stack-carbon.yaml | 1 + themes/night-stack-circuit.yaml | 1 + themes/night-stack-copper-dark.yaml | 1 + themes/night-stack-crimson-dark.yaml | 1 + themes/night-stack-deep-work.yaml | 1 + themes/night-stack-desert-dusk.yaml | 1 + themes/night-stack-dos-blue.yaml | 1 + themes/night-stack-ember-dark.yaml | 1 + themes/night-stack-eyestrain-green.yaml | 1 + themes/night-stack-forest-night.yaml | 1 + themes/night-stack-frost.yaml | 1 + themes/night-stack-graphite.yaml | 1 + themes/night-stack-green-neon.yaml | 1 + themes/night-stack-hacker-soft.yaml | 1 + themes/night-stack-hologram.yaml | 1 + themes/night-stack-indigo-dark.yaml | 1 + themes/night-stack-ion.yaml | 1 + themes/night-stack-low-contrast-pro.yaml | 1 + themes/night-stack-midnight-blue.yaml | 1 + themes/night-stack-mono-focus.yaml | 1 + themes/night-stack-neo-tokyo.yaml | 1 + themes/night-stack-night-city.yaml | 1 + themes/night-stack-noir.yaml | 1 + themes/night-stack-obsidian-glass.yaml | 1 + themes/night-stack-obsidian.yaml | 1 + themes/night-stack-ocean-abyss.yaml | 1 + themes/night-stack-onyx.yaml | 1 + themes/night-stack-phosphor-green.yaml | 1 + themes/night-stack-plasma.yaml | 1 + themes/night-stack-pure-hacker.yaml | 1 + themes/night-stack-quantum.yaml | 1 + themes/night-stack-retro-wave.yaml | 1 + themes/night-stack-slate.yaml | 1 + themes/night-stack-street-grid.yaml | 1 + themes/night-stack-teal-dark.yaml | 1 + themes/night-stack-titanium.yaml | 1 + themes/night-stack-violet-dark.yaml | 1 + themes/night-stack-zen-dark.yaml | 1 + themes/night-storm.yaml | 3 +- themes/night-yellow.yaml | 1 + themes/night-zen.yaml | 9 +- themes/night.yaml | 3 +- themes/nightblue-1.yaml | 1 + themes/nightblue-oled-beta.yaml | 1 + themes/nightcall-no-italics.yaml | 49 - themes/nightchill.yaml | 49 - themes/nightcode.yaml | 1 + themes/nightdream-monokai.yaml | 1 + themes/nightdream.yaml | 1 + themes/nightfly.yaml | 1 + themes/nightfox.yaml | 1 + themes/nighthawk.yaml | 3 +- themes/nightlife.yaml | 3 +- themes/nightly-code.yaml | 1 + themes/nightly-inspiration-dark.yaml | 1 + themes/nightmare.yaml | 1 + themes/nightnode.yaml | 3 +- themes/nightshade.yaml | 1 + themes/nightsky.yaml | 1 + themes/nightswell.yaml | 1 + themes/nightwing.yaml | 3 +- themes/nighty-purple-color-theme.yaml | 1 + themes/nigthwolf-color-theme.yaml | 1 + themes/nihilleaf-theme.yaml | 3 +- themes/niketa-pop-dark.yaml | 1 + themes/niketa-pop-light.yaml | 1 + themes/niketaoasis.yaml | 1 + themes/niketaplus.yaml | 1 + themes/niketaprettier.yaml | 1 + themes/niko-s-techlabs-dark.yaml | 1 + themes/nikso-vscode-theme-dark.yaml | 1 + themes/nil-ui.yaml | 1 + themes/nimbus-mint-light.yaml | 3 +- themes/ninjadark.yaml | 1 + themes/nitrous-theme-dark.yaml | 1 + themes/nivtheme.yaml | 1 + themes/nix.yaml | 3 +- themes/njord.yaml | 49 - themes/nkalai-dark.yaml | 1 + themes/nkalai-light.yaml | 1 + themes/nloo-theme.yaml | 1 + .../no-not-the-lava-it-burns-ahhh-fork.yaml | 1 + themes/no-pixie-blue-dark.yaml | 1 + themes/no-pixie-blue-light.yaml | 1 + themes/no-pixie-dark-high-contrast.yaml | 1 + themes/no-pixie-dark.yaml | 1 + themes/no-pixie-light-high-contrast.yaml | 1 + themes/no-pixie-light.yaml | 1 + themes/no-pixie-yellow-dark.yaml | 1 + themes/no-pixie-yellow-light.yaml | 1 + themes/noah-theme.yaml | 1 + themes/noctaliatheme.yaml | 3 +- themes/noctilux.yaml | 1 + themes/noctis-azureus.yaml | 49 - themes/noctis-bordo.yaml | 49 - themes/noctis-hibernus.yaml | 49 - themes/noctis-high-contrast.yaml | 3 +- themes/noctis-lilac.yaml | 1 + themes/noctis-lux-ansi-16.yaml | 1 + themes/noctis-lux-dean-s-version.yaml | 1 + themes/noctis-lux.yaml | 49 - themes/noctis-minimus.yaml | 49 - themes/noctis-obscuro.yaml | 49 - themes/noctis-red-flow.yaml | 3 +- themes/noctis-sereno.yaml | 49 - themes/noctis-uva.yaml | 49 - themes/noctis-viola.yaml | 49 - themes/noctis.yaml | 49 - themes/noctua-black-rose.yaml | 1 + themes/noctua-dark-leaf.yaml | 1 + themes/noctua-grass.yaml | 1 + themes/noctua-hidden-sky.yaml | 1 + themes/nocturnal.yaml | 1 + themes/nodr-cocoa.yaml | 1 + themes/nodr-plum.yaml | 1 + themes/noel.yaml | 1 + themes/noir-dark.yaml | 1 + themes/noir-dracula.yaml | 3 +- themes/noir-essence-dark-border.yaml | 49 - themes/noir-essence-light.yaml | 1 + themes/noir-light.yaml | 1 + themes/noir-outrun.yaml | 3 +- themes/noir-owl.yaml | 3 +- themes/noir-poimandres-black.yaml | 3 +- themes/noir-poimandres-dark.yaml | 3 +- themes/noir-poimandres-darker.yaml | 3 +- themes/noir-poimandres.yaml | 3 +- themes/noir-ros-pine-grey.yaml | 3 +- themes/noir-ros-pine-moon-grey.yaml | 3 +- themes/noir-tokyo-night-black.yaml | 3 +- themes/noir-tokyo-night.yaml | 3 +- themes/noirex.yaml | 1 + themes/noirzen.yaml | 1 + themes/nokion-clean.yaml | 3 +- themes/noll-tta.yaml | 1 + themes/non-arbitrary-colors-theme.yaml | 1 + themes/noname-ui-next.yaml | 3 +- themes/noname-ui.yaml | 3 +- themes/noori.yaml | 1 + themes/noparanoia.yaml | 1 + themes/nora-dark.yaml | 1 + themes/nora-light-bordered.yaml | 1 + themes/nord-bunker.yaml | 3 +- themes/nord-dark-contrast.yaml | 3 +- themes/nord-dark-pro.yaml | 3 +- themes/nord-deep.yaml | 51 +- themes/nord-jujoco.yaml | 1 + themes/nord-midnight.yaml | 3 +- themes/nord-native.yaml | 3 +- themes/nord-operator-theme.yaml | 1 + themes/nord-palette.yaml | 3 +- themes/nord-zero.yaml | 3 +- themes/nord.yaml | 3 +- themes/nordfox.yaml | 1 + themes/nordic-dark.yaml | 1 + themes/nordic-electric-ai-nocturne.yaml | 1 + themes/nordic.yaml | 3 +- themes/nordicbox.yaml | 1 + themes/nordicdark.yaml | 3 +- themes/nordico.yaml | 3 +- themes/nordishcocoa.yaml | 1 + themes/northeirn.yaml | 3 +- themes/northern-territory-dark.yaml | 3 +- themes/northern-territory-light.yaml | 3 +- themes/nosk-theme.yaml | 1 + themes/nostromo.yaml | 3 +- themes/not-so-simple.yaml | 1 + themes/notchy-dark.yaml | 1 + themes/notesocean-vs-code-theme.yaml | 1 + themes/notflask-theme-light.yaml | 1 + themes/nothing-dark.yaml | 1 + themes/nothing-light.yaml | 1 + themes/nothing-os-dark.yaml | 13 +- themes/nothing-os-gray.yaml | 13 +- themes/notion-code-theme.yaml | 3 +- themes/notionliketheme.yaml | 3 +- themes/notthevimguytheme.yaml | 1 + themes/nova.yaml | 3 +- themes/novadust.yaml | 1 + themes/november-theme-black.yaml | 1 + themes/november-theme-darkblue.yaml | 1 + themes/nox.yaml | 1 + themes/noxis-light.yaml | 1 + themes/noxis.yaml | 1 + themes/noxus.yaml | 1 + themes/npp-color-dark-hard.yaml | 1 + themes/npp-color-light-hard.yaml | 1 + .../nstlgy-dark-josh-w-comeau-inspired.yaml | 1 + themes/ntt1.yaml | 1 + themes/nuclear-z-light.yaml | 1 + themes/nudark.yaml | 1 + themes/nuitp-le-theme.yaml | 1 + themes/null-theme-absolute-black.yaml | 3 +- themes/null-theme-electric-enhanced.yaml | 3 +- themes/null-theme-midnight-enhanced.yaml | 3 +- themes/null-theme-muted.yaml | 3 +- themes/null-theme-near-black.yaml | 3 +- themes/null-theme-pastel.yaml | 3 +- themes/null-theme-synthwave.yaml | 3 +- themes/null-theme-vivid.yaml | 3 +- themes/nultramarine.yaml | 1 + themes/nulzo-relax.yaml | 1 + themes/nulzo-winter-light.yaml | 1 + themes/nur-dark.yaml | 1 + themes/nur-light.yaml | 1 + themes/nushu-classic.yaml | 3 +- themes/nushu-dark.yaml | 3 +- themes/nushu-light.yaml | 3 +- themes/nutheme.yaml | 1 + themes/nutty-dark-theme.yaml | 3 +- themes/nutty-light-theme.yaml | 3 +- themes/nuxt-blend-bleach-color-theme.yaml | 1 + themes/nuxt-blend.yaml | 1 + themes/nuxtian-deep-space.yaml | 1 + themes/nuxtian-light.yaml | 1 + themes/nuxtian-nitro.yaml | 1 + themes/nuxtian.yaml | 1 + themes/nuxtiansololevel.yaml | 1 + themes/nuxtvite.yaml | 1 + themes/nuxtvoid.yaml | 1 + themes/nw21.yaml | 1 + themes/ny-city-lights-theme.yaml | 1 + themes/nyctophilia.yaml | 1 + themes/oa515.yaml | 1 + themes/oak-dark.yaml | 1 + themes/oak.yaml | 1 + themes/obanai-iguro.yaml | 3 +- themes/obito-akatsuki-theme.yaml | 3 +- themes/oblivion.yaml | 1 + themes/oboro.yaml | 1 + themes/obsidian-dark.yaml | 1 + themes/obsidian-ember.yaml | 85 +- themes/obsidian-light.yaml | 3 +- themes/obsidian-nova.yaml | 1 + themes/obsidian-pro-dark-blue-purple.yaml | 1 + themes/obsidian-pro-dark-pink-purple.yaml | 1 + themes/obsidian-pro-dark-purple-neon.yaml | 1 + themes/obsidian-pro-dark-purple-pastel.yaml | 1 + themes/obsidian-pro-dark-purple.yaml | 1 + themes/obsidian-pro-dark.yaml | 1 + themes/obsidian-pro-white-purple.yaml | 1 + themes/obsidian-pro-white.yaml | 1 + themes/obsidian-pulse-light-theme.yaml | 1 + themes/obsidian-pulse-theme.yaml | 1 + themes/obsidian-sea.yaml | 1 + themes/obsidian-sunset.yaml | 3 +- themes/obsidian-void.yaml | 3 +- themes/obsidian.yaml | 1 + themes/obsidianite-amoled.yaml | 3 +- themes/obsidianite.yaml | 3 +- themes/oc-7-light.yaml | 1 + themes/ocean-blue-theme.yaml | 3 +- themes/ocean-breeze.yaml | 11 +- themes/ocean-color-theme.yaml | 1 + themes/ocean-deep-depth-stability.yaml | 1 + themes/ocean-eyes-medium.yaml | 3 +- themes/ocean-eyes.yaml | 3 +- themes/ocean-high-contrast.yaml | 3 +- themes/ocean-mist-light.yaml | 3 +- themes/ocean-mist.yaml | 3 +- themes/ocean-night.yaml | 1 + themes/ocean-theme.yaml | 1 + themes/ocean.yaml | 1 + themes/oceana.yaml | 1 + themes/oceanic-solitude.yaml | 1 + themes/oceanic-wind-cool.yaml | 1 + themes/oceanic-wind-warm.yaml | 1 + themes/oceanic-wind.yaml | 1 + themes/oceans-of-andromeda.yaml | 1 + themes/ochre-dark-midnight.yaml | 1 + themes/ochre-dark.yaml | 1 + themes/ochre-light-snow.yaml | 1 + themes/ochre-light.yaml | 1 + themes/octalide.yaml | 1 + themes/octo-dark-one.yaml | 1 + themes/octo-light.yaml | 1 + themes/octopus-theme.yaml | 1 + themes/odyssey-night.yaml | 1 + themes/office-light.yaml | 3 +- themes/ogone.yaml | 1 + themes/oh-dark-pro.yaml | 1 + themes/ohiostate-fork.yaml | 1 + themes/ohled-aliceblue.yaml | 3 +- themes/ohled-antiquewhite.yaml | 3 +- themes/ohled-aqua.yaml | 49 - themes/ohled-aquamarine.yaml | 3 +- themes/ohled-azure.yaml | 3 +- themes/ohled-beige.yaml | 3 +- themes/ohled-bisque.yaml | 3 +- themes/ohled-blanchedalmond.yaml | 3 +- themes/ohled-blue.yaml | 3 +- themes/ohled-blueviolet.yaml | 3 +- themes/ohled-brown.yaml | 3 +- themes/ohled-burlywood.yaml | 3 +- themes/ohled-cadetblue.yaml | 3 +- themes/ohled-chartreuse.yaml | 3 +- themes/ohled-chocolate.yaml | 3 +- themes/ohled-coral.yaml | 3 +- themes/ohled-cornflowerblue.yaml | 3 +- themes/ohled-cornsilk.yaml | 3 +- themes/ohled-crimson.yaml | 3 +- themes/ohled-darkblue.yaml | 3 +- themes/ohled-darkcyan.yaml | 3 +- themes/ohled-darkgoldenrod.yaml | 3 +- themes/ohled-darkgray.yaml | 3 +- themes/ohled-darkgreen.yaml | 3 +- themes/ohled-darkkhaki.yaml | 3 +- themes/ohled-darkmagenta.yaml | 3 +- themes/ohled-darkolivegreen.yaml | 3 +- themes/ohled-darkorange.yaml | 3 +- themes/ohled-darkorchid.yaml | 3 +- themes/ohled-darkred.yaml | 3 +- themes/ohled-darksalmon.yaml | 3 +- themes/ohled-darkseagreen.yaml | 3 +- themes/ohled-darkslateblue.yaml | 3 +- themes/ohled-darkslategray.yaml | 3 +- themes/ohled-darkturquoise.yaml | 3 +- themes/ohled-darkviolet.yaml | 3 +- themes/ohled-deeppink.yaml | 3 +- themes/ohled-deepskyblue.yaml | 3 +- themes/ohled-dimgray.yaml | 3 +- themes/ohled-dodgerblue.yaml | 3 +- themes/ohled-firebrick.yaml | 3 +- themes/ohled-forestgreen.yaml | 3 +- themes/ohled-fuchsia.yaml | 49 - themes/ohled-gainsboro.yaml | 3 +- themes/ohled-ghostwhite.yaml | 3 +- themes/ohled-gold.yaml | 3 +- themes/ohled-goldenrod.yaml | 3 +- themes/ohled-gray.yaml | 3 +- themes/ohled-green.yaml | 3 +- themes/ohled-greenyellow.yaml | 3 +- themes/ohled-honeydew.yaml | 3 +- themes/ohled-hotpink.yaml | 3 +- themes/ohled-indianred.yaml | 3 +- themes/ohled-indigo.yaml | 3 +- themes/ohled-ivory.yaml | 3 +- themes/ohled-khaki.yaml | 3 +- themes/ohled-lavender.yaml | 3 +- themes/ohled-lavenderblush.yaml | 3 +- themes/ohled-lawngreen.yaml | 3 +- themes/ohled-lemonchiffon.yaml | 3 +- themes/ohled-lightblue.yaml | 3 +- themes/ohled-lightcoral.yaml | 3 +- themes/ohled-lightcyan.yaml | 3 +- themes/ohled-lightgoldenrodyellow.yaml | 3 +- themes/ohled-lightgray.yaml | 3 +- themes/ohled-lightgreen.yaml | 3 +- themes/ohled-lightpink.yaml | 3 +- themes/ohled-lightsalmon.yaml | 3 +- themes/ohled-lightseagreen.yaml | 3 +- themes/ohled-lightskyblue.yaml | 3 +- themes/ohled-lightslategray.yaml | 3 +- themes/ohled-lightsteelblue.yaml | 3 +- themes/ohled-lightyellow.yaml | 3 +- themes/ohled-lime.yaml | 3 +- themes/ohled-limegreen.yaml | 3 +- themes/ohled-linen.yaml | 3 +- themes/ohled-maroon.yaml | 3 +- themes/ohled-mediumaquamarine.yaml | 3 +- themes/ohled-mediumblue.yaml | 3 +- themes/ohled-mediumorchid.yaml | 3 +- themes/ohled-mediumpurple.yaml | 3 +- themes/ohled-mediumseagreen.yaml | 3 +- themes/ohled-mediumslateblue.yaml | 3 +- themes/ohled-mediumspringgreen.yaml | 3 +- themes/ohled-mediumturquoise.yaml | 3 +- themes/ohled-mediumvioletred.yaml | 3 +- themes/ohled-midnightblue.yaml | 3 +- themes/ohled-mintcream.yaml | 3 +- themes/ohled-mistyrose.yaml | 3 +- themes/ohled-moccasin.yaml | 3 +- themes/ohled-navajowhite.yaml | 3 +- themes/ohled-navy.yaml | 3 +- themes/ohled-oldlace.yaml | 3 +- themes/ohled-olive.yaml | 3 +- themes/ohled-olivedrab.yaml | 3 +- themes/ohled-orange.yaml | 3 +- themes/ohled-orangered.yaml | 3 +- themes/ohled-orchid.yaml | 3 +- themes/ohled-palegoldenrod.yaml | 3 +- themes/ohled-palegreen.yaml | 3 +- themes/ohled-paleturquoise.yaml | 3 +- themes/ohled-palevioletred.yaml | 3 +- themes/ohled-papayawhip.yaml | 3 +- themes/ohled-peachpuff.yaml | 3 +- themes/ohled-peru.yaml | 3 +- themes/ohled-pink.yaml | 3 +- themes/ohled-plum.yaml | 3 +- themes/ohled-powderblue.yaml | 3 +- themes/ohled-purple.yaml | 3 +- themes/ohled-rebeccapurple.yaml | 3 +- themes/ohled-red.yaml | 3 +- themes/ohled-rosybrown.yaml | 3 +- themes/ohled-royalblue.yaml | 3 +- themes/ohled-saddlebrown.yaml | 3 +- themes/ohled-salmon.yaml | 3 +- themes/ohled-sandybrown.yaml | 3 +- themes/ohled-seagreen.yaml | 3 +- themes/ohled-seashell.yaml | 3 +- themes/ohled-sienna.yaml | 3 +- themes/ohled-silver.yaml | 3 +- themes/ohled-skyblue.yaml | 3 +- themes/ohled-slateblue.yaml | 3 +- themes/ohled-slategray.yaml | 3 +- themes/ohled-snow.yaml | 3 +- themes/ohled-springgreen.yaml | 3 +- themes/ohled-steelblue.yaml | 3 +- themes/ohled-tan.yaml | 3 +- themes/ohled-teal.yaml | 3 +- themes/ohled-thistle.yaml | 3 +- themes/ohled-tomato.yaml | 3 +- themes/ohled-turquoise.yaml | 3 +- themes/ohled-violet.yaml | 3 +- themes/ohled-wheat.yaml | 3 +- themes/ohled-white.yaml | 3 +- themes/ohled-whitesmoke.yaml | 3 +- themes/ohled-yellow.yaml | 3 +- themes/ohled-yellowgreen.yaml | 3 +- themes/ohled-yelloworange.yaml | 3 +- themes/ohled-yellowpink.yaml | 3 +- themes/ohled-yellowpurple.yaml | 3 +- themes/okas-theme.yaml | 1 + themes/oldschool-terminal-green.yaml | 3 +- themes/oldworld.yaml | 63 +- themes/olive-dark.yaml | 1 + themes/olive-light.yaml | 1 + themes/omega.yaml | 1 + themes/omni-customized-dark.yaml | 1 + themes/omni-customized.yaml | 1 + themes/omni-dracula-dark.yaml | 3 +- ...ni-dracula-theme-tradicional-contrast.yaml | 3 +- themes/omni-dracula-theme.yaml | 3 +- .../omni-dracula-wine-theme-tradicional.yaml | 3 +- themes/omni-monokai-dark.yaml | 3 +- themes/omni-pro.yaml | 3 +- themes/omni.yaml | 3 +- themes/omnisexual.yaml | 1 + themes/omnitrix-code.yaml | 11 +- themes/omo-theme.yaml | 1 + themes/one-ai-theme.yaml | 1 + themes/one-dark-cloud-theme.yaml | 1 + themes/one-dark-code.yaml | 1 + themes/one-dark-darker-vivid.yaml | 1 + themes/one-dark-darker.yaml | 13 +- themes/one-dark-modern-pro.yaml | 3 +- themes/one-dark-night-blue-boy.yaml | 3 +- themes/one-dark-night-eye-care.yaml | 3 +- themes/one-dark-night-minimalist.yaml | 3 +- themes/one-dark-night-professional.yaml | 3 +- themes/one-dark-nx.yaml | 1 + themes/one-dark-pro-theme.yaml | 3 +- themes/one-dark-pro-var-night.yaml | 3 +- themes/one-dark-pro.yaml | 1 + themes/one-dark-vibrant-theme.yaml | 3 +- themes/one-dark-vivid.yaml | 49 - themes/one-dark.yaml | 1 + themes/one-darker-pro.yaml | 1 + themes/one-darkpuccin-vivid-italic.yaml | 49 - themes/one-half-light-italic.yaml | 49 - themes/one-hunter-theme.yaml | 73 +- themes/one-light-pro.yaml | 13 +- themes/one-material.yaml | 1 + themes/one-midnight.yaml | 1 + themes/one-monokai-darker.yaml | 1 + themes/one-monokai-forked.yaml | 1 + themes/one-monokai-michota.yaml | 1 + themes/one-monokai-shadow.yaml | 1 + themes/one-monokai.yaml | 49 - themes/one-monokai1.yaml | 1 + themes/one-moon.yaml | 1 + themes/one-more-dark.yaml | 1 + themes/one-piece-dark.yaml | 3 +- themes/one-piece-high-contrast.yaml | 3 +- themes/one-piece-light.yaml | 3 +- themes/one-piece-straw-hat-red.yaml | 3 +- themes/onebitcode-theme.yaml | 1 + themes/onebitcode.yaml | 1 + themes/onecalm.yaml | 1 + themes/onedark-nvim.yaml | 13 +- themes/onedark-pro-suhayb-s-version-v2.yaml | 3 +- themes/oneiroi-caffeine.yaml | 1 + themes/oneiroi-dream.yaml | 1 + themes/oneiroi-melatonin.yaml | 1 + themes/onemonokai80s.yaml | 3 +- themes/onemonokai80sog.yaml | 3 +- themes/onenv.yaml | 1 + themes/oni-theme.yaml | 1 + themes/onlydark.yaml | 45 +- themes/onora.yaml | 1 + themes/onyx-core.yaml | 1 + themes/onyx-ghost.yaml | 1 + themes/onyx-theme-color.yaml | 1 + themes/onyx.yaml | 83 +- themes/ook.yaml | 1 + themes/oolory-dark-color-theme.yaml | 1 + themes/openbase.yaml | 1 + themes/openspace-dark-flat.yaml | 1 + themes/openspace-dark.yaml | 1 + themes/openspace.yaml | 1 + themes/optimus-dark.yaml | 1 + themes/oq-dark-soft.yaml | 49 - themes/oq-dark.yaml | 49 - themes/oq-light-soft.yaml | 49 - themes/oq-light.yaml | 49 - themes/oradia.yaml | 1 + themes/oragethemedark.yaml | 1 + themes/orago-s-warm-theme.yaml | 1 + themes/orange-coral.yaml | 9 +- themes/orange-dark.yaml | 1 + themes/orange.yaml | 1 + themes/orangefox-dark.yaml | 1 + themes/orangefox-light.yaml | 1 + themes/orangey-darker-1.yaml | 3 +- themes/orangey-darker-2.yaml | 3 +- themes/orangey-lighter-1.yaml | 3 +- themes/orangey-lighter-2.yaml | 3 +- themes/orangey.yaml | 3 +- themes/orbi-blue.yaml | 1 + themes/orbi-green.yaml | 49 - themes/orca.yaml | 9 +- themes/origami-theme.yaml | 1 + themes/origamid.yaml | 3 +- themes/orion-x-black.yaml | 1 + themes/orwellian-nightmare.yaml | 1 + themes/osaka-solarized-pro-dark.yaml | 1 + themes/osaka-solarized-pro-light.yaml | 1 + themes/osaka-solarized-pro-monokai-storm.yaml | 1 + themes/oslo-dark.yaml | 1 + themes/osmoz-dark.yaml | 3 +- themes/osx9.yaml | 1 + themes/otakon-contrast.yaml | 13 +- themes/otakon-light.yaml | 13 +- themes/otakon.yaml | 13 +- themes/outrun-contrast.yaml | 49 - themes/outrun-dark.yaml | 17 +- themes/overflow-contrast.yaml | 13 +- themes/overflow-light.yaml | 13 +- themes/overflow.yaml | 13 +- themes/overload.yaml | 1 + themes/overnight-italic.yaml | 49 - themes/owlet-default.yaml | 3 +- themes/owlet-material.yaml | 3 +- themes/owlet-mono.yaml | 3 +- themes/owlet-outrun.yaml | 3 +- themes/owlet-solarized.yaml | 3 +- themes/owokai-hard.yaml | 1 + themes/owokai.yaml | 1 + themes/oxide.yaml | 49 - themes/oxocarbon-5.yaml | 1 + themes/oxocarbon-compatibility.yaml | 49 - themes/oxocarbon-monochrom-compatibility.yaml | 49 - themes/oxocarbon-oled-compatibility.yaml | 49 - ...xocarbon-oled-monochrom-compatibility.yaml | 3 +- themes/oxocarbon-oled-monochrom.yaml | 3 +- themes/oxocarbon-port.yaml | 3 +- themes/oxocarbonix-dark-theme.yaml | 3 +- themes/ozzy.yaml | 1 + themes/p-black.yaml | 49 - themes/p-citadel.yaml | 49 - themes/p-crimson.yaml | 49 - themes/p-dark.yaml | 49 - themes/p-eggplant.yaml | 49 - themes/p-emerald.yaml | 49 - themes/p-eucalyptus.yaml | 49 - themes/p-floresta.yaml | 49 - themes/p-frost.yaml | 49 - themes/p-genmaicha.yaml | 49 - themes/p-grizzly.yaml | 49 - themes/p-haze.yaml | 49 - themes/p-inkstone.yaml | 49 - themes/p-leipzig.yaml | 49 - themes/p-light.yaml | 49 - themes/p-machine.yaml | 49 - themes/p-mist.yaml | 49 - themes/p-neptune.yaml | 49 - themes/p-ornithopter.yaml | 49 - themes/p-ox.yaml | 49 - themes/p-terabyte.yaml | 49 - themes/p-ultramarine.yaml | 49 - themes/p-wolf.yaml | 49 - themes/p-yesterday.yaml | 3 +- themes/p-zenith.yaml | 49 - themes/p33t.yaml | 1 + themes/pace-dark.yaml | 3 +- themes/pace-light.yaml | 3 +- themes/padrepio.yaml | 1 + themes/paigio.yaml | 1 + themes/pale-blue.yaml | 1 + themes/pale-boreal-dark.yaml | 3 +- themes/palenight-italic.yaml | 49 - themes/palenight-material.yaml | 3 +- themes/palenight-pro.yaml | 1 + themes/palenight-theme.yaml | 49 - themes/palespring.yaml | 1 + themes/palestorm-x.yaml | 3 +- themes/palestorm.yaml | 3 +- themes/palette.yaml | 3 +- themes/pall-theme.yaml | 1 + themes/panda-blue.yaml | 1 + themes/panda-dark.yaml | 9 +- themes/pandju-no-italics.yaml | 49 - themes/pantasio.yaml | 1 + themes/papaya.yaml | 3 +- themes/papercolordark.yaml | 1 + themes/paradise.yaml | 1 + themes/parakeet-theme.yaml | 1 + themes/parchment-candlelight-color-theme.yaml | 3 +- themes/parchment-codex-color-theme.yaml | 3 +- themes/parchment-digitized-color-theme.yaml | 3 +- themes/parchment-starlight-color-theme.yaml | 3 +- themes/parchment.yaml | 1 + themes/pare-colors-theme.yaml | 3 +- themes/parkside-light.yaml | 3 +- themes/paro-paro-solarized-dark-theme.yaml | 1 + themes/pastel-contrast.yaml | 13 +- themes/pastel-inu.yaml | 3 +- themes/pastel-light.yaml | 13 +- themes/pastel.yaml | 1 + themes/pastelefull.yaml | 1 + themes/pastelfairy.yaml | 3 +- themes/pastellize-dark-muted.yaml | 1 + themes/patina-colors.yaml | 3 +- themes/patina-dark.yaml | 1 + themes/patina-light.yaml | 1 + themes/patr-theme.yaml | 1 + themes/patricklimax.yaml | 1 + themes/patriot-contrast.yaml | 13 +- themes/patriot-light.yaml | 13 +- themes/patriot.yaml | 13 +- themes/paulera-s-dark-monokai.yaml | 1 + themes/paulera-s-lyo.yaml | 1 + themes/paztels.yaml | 1 + themes/peaceful-mind.yaml | 1 + themes/peachy-dolphin.yaml | 1 + themes/peachy.yaml | 1 + themes/peacock-contrast.yaml | 13 +- themes/peacock-light.yaml | 13 +- themes/peacock.yaml | 87 +- themes/peacocks-in-space-contrast.yaml | 13 +- themes/peacocks-in-space-light.yaml | 13 +- themes/peacocks-in-space.yaml | 13 +- themes/peel-contrast.yaml | 13 +- themes/peel-light.yaml | 13 +- themes/peel.yaml | 13 +- themes/penitent-contrast.yaml | 13 +- themes/penitent-light.yaml | 13 +- themes/penitent.yaml | 13 +- themes/penumbra-dark-contrast.yaml | 3 +- themes/penumbra-dark.yaml | 3 +- themes/penumbra-light.yaml | 3 +- themes/perf-pink.yaml | 1 + themes/perfect-dark.yaml | 1 + themes/perfect-grey-pf-dark.yaml | 1 + themes/perfect-grey-pf-light.yaml | 1 + themes/periwinkle-color-theme.yaml | 1 + themes/periwinkle-soft-dark.yaml | 1 + themes/perplexity.yaml | 3 +- themes/perry-the-platypus.yaml | 3 +- themes/petrel.yaml | 1 + themes/pglight.yaml | 1 + themes/phocus.yaml | 1 + themes/phonebook-dark.yaml | 1 + themes/phonebook-light.yaml | 1 + themes/phosphor-dark.yaml | 3 +- themes/phosphorus-minor.yaml | 1 + themes/photonica-dark.yaml | 3 +- themes/photonica-light.yaml | 3 +- themes/photophore.yaml | 1 + themes/piattro.yaml | 1 + themes/pierre-dark.yaml | 3 +- themes/pierre-light.yaml | 3 +- themes/piggy-contrast.yaml | 13 +- themes/piggy-light.yaml | 13 +- themes/piggy.yaml | 13 +- themes/pillirioen-italics.yaml | 49 - themes/pine-cone-theme.yaml | 1 + themes/pine-editor-light.yaml | 49 - themes/pine-forest-green-dark.yaml | 1 + themes/pine-forest.yaml | 3 +- themes/pine-frizz.yaml | 13 +- themes/pine-theme-blue.yaml | 49 - themes/pine-theme-dark-low-contrast.yaml | 49 - themes/pine-theme-grey.yaml | 49 - themes/pine-theme-original-dark-extend.yaml | 3 +- themes/pine-theme-original-dark.yaml | 49 - themes/pineapple.yaml | 1 + themes/pines.yaml | 1 + themes/pingocho-dark.yaml | 1 + themes/pink-candy-dark-warm.yaml | 3 +- themes/pink-candy-dark.yaml | 3 +- themes/pink-candy-light.yaml | 3 +- themes/pink-flower.yaml | 3 +- themes/pink-neon.yaml | 1 + themes/pink-theme.yaml | 3 +- themes/pink.yaml | 1 + themes/pinkandgreen.yaml | 1 + themes/pinkandwhite.yaml | 3 +- themes/pinkcloud.yaml | 1 + themes/pinkcodes-pink.yaml | 3 +- themes/pinkdark.yaml | 1 + themes/pinkmare.yaml | 1 + themes/pinkppuccin.yaml | 1 + themes/pinky-promise-dark.yaml | 1 + themes/pinky-promise-light.yaml | 1 + themes/pinkyboo.yaml | 3 +- themes/pinot-gris.yaml | 1 + themes/pinya-theme.yaml | 3 +- themes/pipboy-theme.yaml | 3 +- themes/pirulug-dark.yaml | 1 + themes/pirulug-ligt.yaml | 1 + themes/pistachio-madness.yaml | 1 + themes/pitaya-smoothie.yaml | 1 + themes/pittaya-theme-light.yaml | 1 + themes/pittaya-theme.yaml | 1 + themes/pittcsc-theme.yaml | 1 + themes/pixeye-theme.yaml | 1 + themes/pizarra.yaml | 1 + themes/plane.yaml | 1 + themes/plantillathemes.yaml | 1 + themes/plasma-pink.yaml | 1 + themes/plasticine.yaml | 1 + themes/platzi-theme.yaml | 1 + themes/playground-theme.yaml | 1 + themes/playground.yaml | 1 + themes/pleasure-contrast.yaml | 13 +- themes/pleasure-light.yaml | 13 +- themes/pleasure.yaml | 13 +- themes/plotka-amethyst.yaml | 1 + themes/pls-my-eyes-sir.yaml | 1 + themes/plurpelvsc.yaml | 1 + themes/pluto-dark.yaml | 1 + themes/po.yaml | 1 + themes/poimandres-dark-theme.yaml | 49 - themes/polar-black-cherry-blossom.yaml | 3 +- themes/polar-black-green-cactus.yaml | 3 +- themes/polar-black-ice.yaml | 3 +- themes/polar-black-less-black-smoke.yaml | 3 +- themes/polar-black-light.yaml | 3 +- themes/polar-black-red.yaml | 3 +- themes/polar-black-savanna.yaml | 3 +- themes/polar-black.yaml | 3 +- themes/polar-ice-dark.yaml | 1 + themes/polar-ice-light.yaml | 1 + themes/polar-light.yaml | 3 +- themes/polar-midnight.yaml | 3 +- themes/polar-night.yaml | 3 +- themes/polar.yaml | 49 - themes/polish.yaml | 3 +- themes/polychrome-dark.yaml | 1 + themes/polychrome-light.yaml | 1 + themes/polygopher-theme.yaml | 1 + themes/polykai.yaml | 3 +- themes/polymath.yaml | 1 + themes/poolside.yaml | 3 +- themes/pop-os-cosmic.yaml | 1 + themes/popipa.yaml | 1 + themes/popping-and-locking-mod.yaml | 1 + themes/popping-and-locking.yaml | 3 +- themes/popsicle-color-theme.yaml | 1 + themes/port-gellhorn-noir.yaml | 3 +- themes/posh.yaml | 3 +- themes/potpourri-contrast.yaml | 13 +- themes/potpourri-light.yaml | 13 +- themes/potpourri.yaml | 13 +- themes/powder.yaml | 1 + themes/power-dark.yaml | 1 + themes/power-low-purple-theme.yaml | 1 + themes/poznajkubernetes.yaml | 1 + themes/ppy-like.yaml | 9 +- themes/pr-theme-obsidian.yaml | 1 + themes/pr-theme-premium.yaml | 1 + themes/pr-theme.yaml | 1 + themes/pre.yaml | 3 +- themes/prescient.yaml | 1 + themes/pretentious-name.yaml | 3 +- themes/pretstyle.yaml | 1 + themes/pretty-dark-theme.yaml | 3 +- themes/pributan.yaml | 1 + themes/primary-dark.yaml | 3 +- themes/primary-light.yaml | 3 +- themes/prime-contrast.yaml | 13 +- themes/prime-light.yaml | 13 +- themes/prime.yaml | 13 +- themes/primer-light.yaml | 3 +- themes/prism-dark.yaml | 1 + themes/prism-light.yaml | 1 + themes/prisma.yaml | 3 +- themes/prismapixel-studios-dark-theme.yaml | 1 + themes/prismatic-dark.yaml | 1 + themes/prismatic-light.yaml | 1 + themes/prismatic-void.yaml | 1 + themes/prismmagic.yaml | 9 +- themes/professional-dark.yaml | 1 + themes/programmer.yaml | 1 + themes/progress.yaml | 1 + themes/project-dark-theme-soft.yaml | 1 + themes/prom-wiki.yaml | 1 + themes/proper-dracula.yaml | 1 + themes/proper-pure.yaml | 1 + themes/proper-theme-alternate-2.yaml | 1 + themes/proper-theme-alternate-fork.yaml | 1 + themes/proper-theme-fork.yaml | 1 + themes/proper-up-for-what.yaml | 1 + themes/proper.yaml | 1 + themes/propurple.yaml | 1 + themes/ps-dark.yaml | 1 + themes/ps-light.yaml | 1 + themes/ps-mid-blue.yaml | 1 + themes/ps-syntax.yaml | 1 + themes/pudding-dark-caramel-beta.yaml | 1 + themes/pudding-dark-christmas.yaml | 1 + themes/pudding-dark.yaml | 1 + themes/pudding-light-jk.yaml | 1 + themes/pudding-light.yaml | 1 + themes/pulpy-orange.yaml | 1 + themes/pulsar-default.yaml | 49 - themes/pulsar.yaml | 1 + themes/pulse-balanced-purple.yaml | 3 +- themes/pulse-comfort-light.yaml | 3 +- themes/pulse-soft-purple.yaml | 3 +- themes/pumpkin.yaml | 1 + themes/punjab-land-of-five-rivers.yaml | 1 + themes/punk-runner.yaml | 3 +- themes/pur-theme-v1.yaml | 3 +- themes/purble-0-0-2-fork-fork.yaml | 3 +- themes/purddy.yaml | 1 + themes/pure-black.yaml | 1 + themes/pure-dark.yaml | 83 +- themes/pure-light.yaml | 1 + themes/pureblack.yaml | 1 + themes/puri-twilite.yaml | 1 + themes/purple-cake.yaml | 1 + themes/purple-cloud-minimal.yaml | 1 + themes/purple-cloud-theme.yaml | 1 + themes/purple-codain.yaml | 3 +- themes/purple-dark-black.yaml | 1 + themes/purple-dark-theme-unicode.yaml | 3 +- themes/purple-dark.yaml | 3 +- themes/purple-deep-black-fork.yaml | 1 + themes/purple-deep-black.yaml | 1 + themes/purple-dream.yaml | 3 +- themes/purple-ish.yaml | 1 + themes/purple-royal.yaml | 1 + themes/purple-theme.yaml | 3 +- themes/purple-twist.yaml | 3 +- themes/purple-void.yaml | 3 +- themes/purple.yaml | 1 + themes/purpleandblack.yaml | 3 +- themes/purplechan.yaml | 1 + themes/purplecrystal.yaml | 1 + themes/purplephantom.yaml | 1 + themes/purpleporschepheme.yaml | 1 + themes/purpler.yaml | 1 + themes/purplespace.yaml | 1 + themes/purplexed-magic.yaml | 1 + themes/purplexed-theme.yaml | 1 + themes/purplezera.yaml | 1 + themes/purplish-fork.yaml | 3 +- themes/purplue.yaml | 1 + themes/purply-dark.yaml | 3 +- themes/purply-light.yaml | 3 +- themes/purppy.yaml | 1 + themes/purps.yaml | 1 + .../purrfect-marshmallow-lavender-night.yaml | 1 + themes/purrfect-marshmallow-pastel-pink.yaml | 1 + themes/purupiu-theme.yaml | 3 +- themes/pushkin-is-white.yaml | 3 +- themes/pussdev-pink-theme.yaml | 1 + themes/pvc-light.yaml | 1 + themes/pvdk-theme.yaml | 1 + themes/pycharm-theme.yaml | 1 + themes/python-bright-colors-theme.yaml | 3 +- themes/qara.yaml | 1 + themes/qii-theme-dark-shallow.yaml | 3 +- themes/qii-theme-dark.yaml | 3 +- themes/qii-theme-light.yaml | 3 +- themes/qoder-dark.yaml | 1 + themes/qqqoid-light-color.yaml | 1 + themes/qt-creator-like-dark-theme.yaml | 3 +- themes/qtz-theme.yaml | 1 + themes/quantum-blue-dark.yaml | 1 + themes/quantum-bordered.yaml | 49 - themes/quantum-dark-bordered.yaml | 49 - themes/quantum-green.yaml | 1 + themes/quantum-mirage-bordered.yaml | 49 - themes/quantum-night.yaml | 3 +- themes/quantum-synthwave.yaml | 3 +- themes/quantxz.yaml | 3 +- themes/quarkus-dark-theme.yaml | 3 +- themes/quasar.yaml | 3 +- themes/qubik-dark.yaml | 1 + themes/qubik-light.yaml | 1 + themes/queensland-dark.yaml | 5 +- themes/queensland-light.yaml | 5 +- themes/quiet-canvas.yaml | 1 + themes/quiet-hacker.yaml | 1 + themes/quietude.yaml | 1 + themes/quirky-contrast-theme.yaml | 3 +- themes/qutheme.yaml | 1 + .../r-dark-pro-filter-black-white-border.yaml | 49 - themes/r-dark-pro-filter-coolnight.yaml | 1 + themes/r-dark-pro-filter-dark-pro.yaml | 1 + themes/r-dark-pro-filter-laser-border.yaml | 49 - themes/r-dark-pro-filter-nightfall.yaml | 1 + themes/r-dark-pro-filter-nightgrey.yaml | 1 + themes/r-dark-pro-filter-nightlate.yaml | 1 + themes/r-e-m.yaml | 1 + themes/r-h-zero-monokai.yaml | 1 + themes/rabbit.yaml | 1 + themes/radiant-noir.yaml | 1 + themes/radium.yaml | 3 +- themes/ragnarok.yaml | 1 + themes/raij-dark-no-italics.yaml | 49 - themes/raij-no-italics.yaml | 49 - themes/rain-city-theme.yaml | 1 + themes/rain.yaml | 3 +- themes/rainbow-contrast.yaml | 49 - themes/rainbow-light.yaml | 13 +- themes/rainbow-material-theme.yaml | 3 +- themes/rainbow-pastel-theme.yaml | 1 + themes/rainbow.yaml | 13 +- themes/rainbowdrops-dark.yaml | 3 +- themes/rainforest-dark.yaml | 1 + themes/rainx0r.yaml | 1 + themes/rainy-hydrangea.yaml | 1 + themes/raiyanplanet-dark-knight.yaml | 1 + themes/raiyanplanet-darkest.yaml | 1 + themes/raiyanplanet-purple-world.yaml | 1 + themes/rajasthan-land-of-kings.yaml | 1 + themes/rajoyish.yaml | 1 + themes/rakkii-theme.yaml | 1 + themes/ramage.yaml | 1 + themes/ramazzotti-80s.yaml | 1 + themes/ramazzotti-flexobi.yaml | 1 + themes/ramazzotti-gruvbox.yaml | 1 + themes/ramuda.yaml | 1 + themes/rapture.yaml | 3 +- themes/rate-dark-cold.yaml | 1 + themes/rate-dark.yaml | 1 + themes/rate-light-soft.yaml | 1 + themes/rate-light.yaml | 1 + themes/ravenwood-dark.yaml | 1 + themes/ravenwood-light.yaml | 1 + themes/rbe-matrix-skin-theme.yaml | 3 +- themes/rdcd.yaml | 1 + themes/re-dark-alt.yaml | 49 - themes/re-eclipse-old-school.yaml | 3 +- themes/re-eclipse.yaml | 3 +- themes/re-vision.yaml | 1 + themes/react-theme.yaml | 1 + themes/rebellion-contrast.yaml | 13 +- themes/rebellion-light.yaml | 13 +- themes/rebellion.yaml | 13 +- themes/recats-classic-dark.yaml | 1 + themes/recats-nova-dark.yaml | 1 + themes/recotheme.yaml | 1 + themes/red-black-white-dark.yaml | 3 +- themes/red-black-white-light.yaml | 3 +- themes/red-grey.yaml | 1 + themes/red-neon.yaml | 1 + themes/red-one-dark-pro-dark-bordered.yaml | 49 - themes/red-one-dark-pro-dark.yaml | 3 +- themes/red-one-dark-pro-mirage-bordered.yaml | 49 - themes/red-one-dark-pro-mirage.yaml | 49 - themes/red-vintage.yaml | 1 + themes/reddark.yaml | 1 + themes/reddish.yaml | 49 - themes/reddit-dark-based-theme-updated.yaml | 1 + themes/rediohead-theme.yaml | 1 + themes/redorainbow.yaml | 1 + themes/redpro-dark.yaml | 1 + themes/redpro-light.yaml | 1 + themes/refined-charcoal.yaml | 1 + themes/refined-default.yaml | 1 + themes/refined-dracula.yaml | 1 + themes/refined-espresso.yaml | 1 + themes/refined-matcha.yaml | 1 + themes/refined-mocha.yaml | 1 + themes/refined-night-owl.yaml | 1 + themes/refined-oceanic-next.yaml | 1 + themes/refined-one.yaml | 1 + themes/refined-palenight.yaml | 1 + themes/refined-purple.yaml | 1 + themes/refined-slate.yaml | 1 + themes/regard.yaml | 1 + themes/registheme.yaml | 1 + themes/relaxed-theme-dark-focus.yaml | 1 + themes/relaxed-theme-day-light.yaml | 1 + themes/relaxed-theme-night-warm.yaml | 1 + themes/relaxed-theme.yaml | 3 +- themes/remedy-bright-tilted.yaml | 1 + themes/remedy-dark-tilted.yaml | 1 + themes/replicant.yaml | 1 + themes/replt-it.yaml | 3 +- themes/repoman-color-theme.yaml | 1 + themes/resknow-dark.yaml | 1 + themes/ressgame-advance-coding-theme.yaml | 1 + themes/retina.yaml | 3 +- themes/retro-cathode-ray-minimal-theme.yaml | 3 +- themes/retro-green.yaml | 3 +- themes/retro-hacker-amber.yaml | 3 +- themes/retro-hacker-blue.yaml | 3 +- themes/retro-hacker-green-subtle.yaml | 3 +- themes/retro-hacker-green.yaml | 3 +- themes/retro-hacker-magenta.yaml | 3 +- themes/retro-keyboard-dark.yaml | 3 +- themes/retro-keyboard-light.yaml | 3 +- themes/retro-pastel-color-theme.yaml | 1 + themes/retro-vibes.yaml | 1 + themes/retro.yaml | 1 + themes/retrocoders.yaml | 1 + themes/retronica-amber-terminal.yaml | 3 +- themes/retronica-neon-nights.yaml | 3 +- themes/retronica-pastel-arcade.yaml | 3 +- themes/retronica-phosphor-green.yaml | 3 +- themes/retronica-vintage-computing.yaml | 3 +- themes/retropunk.yaml | 1 + themes/retroscope.yaml | 1 + themes/retrox.yaml | 1 + themes/reui-ii-dark-italic.yaml | 49 - themes/reui-ii-italic.yaml | 49 - themes/reui-ii-mirage-italic.yaml | 49 - themes/revelation-contrast.yaml | 13 +- themes/revelation-light.yaml | 13 +- themes/revelation.yaml | 13 +- themes/revisual-assist-color-theme.yaml | 3 +- themes/revisualassist.yaml | 1 + themes/rextax-bright-fork.yaml | 3 +- themes/rhodes-dark.yaml | 1 + themes/rhodes-light.yaml | 1 + themes/rich-black-theme-no-italic.yaml | 49 - themes/rider-melon-night.yaml | 1 + themes/rider.yaml | 3 +- themes/rigel.yaml | 1 + themes/rimber.yaml | 1 + themes/riskified-dark.yaml | 3 +- themes/rito.yaml | 9 +- themes/rivendell.yaml | 3 +- themes/rizz-focused.yaml | 1 + themes/rizz-neutral.yaml | 1 + themes/rm-dark-theme.yaml | 3 +- themes/roblox-stylized-dark-theme.yaml | 1 + themes/robodark.yaml | 1 + themes/robolaunch.yaml | 1 + themes/rocinante.yaml | 1 + themes/rocko-s-modern-theme.yaml | 1 + ...rog-theme-v1-1-dark-alpha-syntax-test.yaml | 1 + themes/rogue-squadron.yaml | 1 + themes/ronin-darker.yaml | 1 + themes/ronin.yaml | 1 + themes/root-bear.yaml | 3 +- themes/root-dark-mode-theme-v0-1.yaml | 1 + themes/ros-pine-dawn.yaml | 49 - themes/ros-pine.yaml | 3 +- themes/rose-paradise.yaml | 3 +- themes/rosefall-black.yaml | 1 + themes/rosefall-midnight.yaml | 1 + themes/roselia-orbital-eden-pastel.yaml | 1 + themes/roselia.yaml | 1 + themes/rouge-no-italics.yaml | 49 - themes/roxo-theme.yaml | 1 + themes/royal-darker-theme.yaml | 1 + themes/royal-fork.yaml | 1 + themes/royal.yaml | 1 + themes/rozen.yaml | 1 + themes/rs-dark.yaml | 1 + themes/rsikified-dark-purple.yaml | 3 +- themes/rubecula.yaml | 1 + themes/rubi-theme.yaml | 1 + themes/ruby-nights-garnet-midnight.yaml | 1 + themes/ruby-nights-garnet.yaml | 1 + themes/ruby-nights-ruby-midnight.yaml | 1 + themes/ruby-nights-ruby.yaml | 1 + themes/ruby-sea.yaml | 1 + ...udydev-theme-edited-tokyo-night-storm.yaml | 1 + themes/rui-cobalt.yaml | 3 +- themes/rui-sapphire.yaml | 3 +- themes/runic-minimal.yaml | 1 + themes/ruru-marijuana.yaml | 1 + themes/ruru-moon.yaml | 1 + themes/rust-brown.yaml | 3 +- themes/rustacean.yaml | 1 + themes/rusty.yaml | 1 + themes/ryb.yaml | 1 + themes/rypjaws.yaml | 3 +- themes/s-kill.yaml | 3 +- themes/s-o-paulo-night.yaml | 3 +- themes/safari-midnight.yaml | 1 + themes/safira.yaml | 3 +- themes/saga-nordic-v1-2.yaml | 1 + themes/saga-oceania-v1-2.yaml | 1 + themes/sage-of-light-color-theme.yaml | 1 + themes/sage-siren-theme.yaml | 1 + themes/sailor-at-sea.yaml | 3 +- themes/sakai-theme-jupiter.yaml | 1 + themes/sakai-theme-moon.yaml | 1 + themes/sakai-theme-saturn.yaml | 1 + themes/sakai-theme-venus.yaml | 49 - themes/sakura-blossom-midnight.yaml | 3 +- themes/sakura-blossom-theme.yaml | 1 + themes/sakura-dreams-dark.yaml | 1 + themes/sakura-dreams.yaml | 1 + themes/sakura-theme-fork.yaml | 49 - themes/sakura-theme.yaml | 77 +- themes/sakura-v2-by-leroiadib.yaml | 1 + themes/sakura.yaml | 85 +- themes/sakya-dorje.yaml | 3 +- themes/samacaca.yaml | 1 + themes/samgido-theme-dark.yaml | 1 + themes/samito-nest-graphql-theme.yaml | 1 + themes/samito-nest-theme.yaml | 1 + themes/samurai.yaml | 3 +- themes/samyak-bumb.yaml | 1 + themes/sanam-dark-pro.yaml | 1 + themes/sandcastle.yaml | 9 +- themes/sanded.yaml | 1 + themes/sandstorm.yaml | 1 + themes/sanemi-shinazugawa.yaml | 3 +- themes/sanrio.yaml | 1 + themes/saransk-night.yaml | 1 + themes/sarcastic-white.yaml | 1 + themes/sargam.yaml | 3 +- themes/satoru-gojo-blue.yaml | 3 +- themes/satoru-gojo-white.yaml | 3 +- themes/satoshi-nakamoto-theme.yaml | 1 + themes/satu.yaml | 3 +- themes/saturated-dark-terminal.yaml | 1 + themes/saturn-moonlight.yaml | 3 +- themes/saturnblue-dark.yaml | 1 + themes/sauna-theme.yaml | 1 + themes/saunf.yaml | 1 + themes/sauve.yaml | 1 + themes/savannah-dawn.yaml | 1 + themes/savannah-sunset.yaml | 1 + themes/save-my-eyes.yaml | 3 +- themes/savetemin.yaml | 1 + themes/sazardev.yaml | 1 + themes/scarlet.yaml | 1 + themes/sceanic-dark-gray.yaml | 1 + themes/sceanic-gray.yaml | 1 + themes/sceanic.yaml | 1 + themes/scepter.yaml | 49 - themes/schooltheme.yaml | 1 + themes/schwifty-atom-one-dark.yaml | 1 + themes/schwifty-purple-one-dark.yaml | 49 - themes/schwifty.yaml | 1 + themes/scooby-dooby-dark.yaml | 1 + themes/scorch-contrast.yaml | 13 +- themes/scorch-light.yaml | 13 +- themes/scorch.yaml | 13 +- themes/scorpion-theme.yaml | 3 +- themes/scuba.yaml | 1 + themes/sea-glass.yaml | 3 +- themes/sea-urchin.yaml | 1 + themes/seabrook-dark-italic.yaml | 1 + themes/seabrook-light-italic.yaml | 1 + themes/seaci-darkbase.yaml | 49 - themes/seaci-shadow.yaml | 49 - themes/seagull.yaml | 1 + themes/secunda.yaml | 1 + themes/secuoyas-code.yaml | 1 + themes/sedona.yaml | 3 +- themes/seed7-tokyo-night-dark.yaml | 1 + themes/seekode-light.yaml | 1 + themes/selene-selenized-dark.yaml | 3 +- themes/selene-selenized-light.yaml | 3 +- themes/selenitic-color-theme.yaml | 1 + themes/sema.yaml | 1 + themes/semantic-noctis-lux.yaml | 3 +- themes/semi-dark-theme-in-yellow.yaml | 3 +- themes/senerdark-pro-blue-gray.yaml | 1 + themes/senerdark-pro-deep-gray.yaml | 1 + themes/senkorange.yaml | 1 + themes/senna-dark-black-theme.yaml | 1 + themes/seoul-dancheong.yaml | 3 +- themes/seoul-morning.yaml | 3 +- themes/seoul-night.yaml | 3 +- themes/september-dark-theme.yaml | 3 +- themes/sequoia-monochrome.yaml | 3 +- themes/sequoia-moonlight.yaml | 3 +- themes/sequoia-retro.yaml | 3 +- themes/seral-dark-github-stripe.yaml | 1 + themes/seral-light-github-stripe.yaml | 1 + themes/serendipity-midnight-electric.yaml | 3 +- themes/serendipity-midnight-v1.yaml | 1 + themes/serendipity-midnight.yaml | 3 +- themes/serendipity-morning-v1.yaml | 1 + themes/serendipity-morning.yaml | 3 +- themes/serendipity-sunset-v1.yaml | 1 + themes/serendipity-sunset.yaml | 3 +- themes/serene.yaml | 1 + themes/service-contrast.yaml | 13 +- themes/service-light.yaml | 13 +- themes/service.yaml | 13 +- themes/seti-classic-vscode.yaml | 3 +- themes/seti.yaml | 3 +- themes/sewayaki-dark.yaml | 1 + themes/shaan-s.yaml | 1 + themes/shaant-shakti-mystic-roast.yaml | 1 + themes/shaant-shakti-sand-storm.yaml | 1 + themes/shaant-shakti-soul-drift.yaml | 1 + themes/shaant-shakti-spfx-sanctuary.yaml | 1 + themes/shaant-shakti.yaml | 1 + themes/shadcn-green-dark.yaml | 1 + themes/shadcn-green-light.yaml | 1 + themes/shadcn-neutral-dark.yaml | 1 + themes/shadcn-neutral-light.yaml | 1 + themes/shadcn-orange-dark.yaml | 1 + themes/shadcn-orange-light.yaml | 1 + themes/shadcn-red-dark.yaml | 1 + themes/shadcn-red-light.yaml | 1 + themes/shadcn-rose-dark.yaml | 1 + themes/shadcn-rose-light.yaml | 1 + themes/shadcn-violet-dark.yaml | 1 + themes/shadcn-violet-light.yaml | 1 + themes/shadcn-vivid.yaml | 1 + themes/shadcn-yellow-dark.yaml | 1 + themes/shadcn-yellow-light.yaml | 1 + themes/shaddy-lighta.yaml | 1 + themes/shaddy.yaml | 1 + themes/shades-of-blue.yaml | 3 +- themes/shades-of-cyan-theme.yaml | 13 +- themes/shades-of-gravy.yaml | 3 +- themes/shades-of-life-light.yaml | 1 + themes/shades-of-life.yaml | 1 + .../shades-of-midnight-blue-dark-theme.yaml | 3 +- themes/shades-of-violet.yaml | 1 + themes/shades.yaml | 57 +- themes/shadowborn.yaml | 3 +- themes/shadowspectrum.yaml | 1 + themes/shamrock.yaml | 1 + themes/sharkdark-theme.yaml | 3 +- themes/sharpblue.yaml | 1 + themes/sheme.yaml | 1 + themes/shibainu-dark.yaml | 1 + themes/shibuya.yaml | 3 +- themes/shifting-sands.yaml | 3 +- themes/shiina.yaml | 1 + themes/shinjuku-colored-brackets.yaml | 49 - themes/shinkai.yaml | 3 +- themes/shirotelin.yaml | 1 + themes/shrek-contrast.yaml | 13 +- themes/shrek-light.yaml | 13 +- themes/shrek.yaml | 91 +- themes/shuri-midnight.yaml | 1 + themes/siberia.yaml | 1 + themes/side-punk-sql.yaml | 1 + themes/sidev-monokai-dim-ts.yaml | 1 + themes/siemor.yaml | 1 + themes/sign-theme-v3.yaml | 1 + themes/sign-theme-v4.yaml | 1 + themes/silent-code.yaml | 1 + themes/silot-dark-classic.yaml | 1 + themes/silvermist.yaml | 1 + themes/simple-3000.yaml | 1 + themes/simple-calm-dark.yaml | 1 + themes/simple-purple.yaml | 49 - themes/simple-red-dark.yaml | 1 + themes/simple-theme.yaml | 3 +- themes/simpledark.yaml | 1 + themes/sinequanone-acid.yaml | 1 + themes/sinequanone-apple.yaml | 1 + themes/sinequanone-brighton.yaml | 1 + themes/sinequanone-carbon.yaml | 1 + themes/sinequanone-cerulean.yaml | 49 - themes/sinequanone-noir.yaml | 1 + themes/sinequanone-sunset.yaml | 1 + themes/sinequanone-swan.yaml | 49 - themes/sinergyext.yaml | 1 + themes/sirius-astral.yaml | 3 +- themes/sirius-glow.yaml | 3 +- themes/sirius-nebula.yaml | 3 +- themes/sirius-pulsar.yaml | 3 +- themes/sirius-vesper.yaml | 3 +- themes/sirius-vibe.yaml | 3 +- themes/sirius-vortex.yaml | 3 +- themes/sirius-zenith.yaml | 3 +- themes/sith.yaml | 1 + themes/sizdah-best-of-all.yaml | 49 - themes/sizo-purple.yaml | 3 +- themes/sj-pinkish-theme.yaml | 1 + themes/sj-theme.yaml | 1 + themes/sk5s-vsgt.yaml | 1 + themes/skeletortheme.yaml | 1 + themes/sky-at-night.yaml | 1 + themes/sky-blue-tranquility-focus.yaml | 1 + themes/sky-miami-vice.yaml | 1 + themes/sky-neon.yaml | 1 + themes/skyline.yaml | 3 +- themes/slack-theme-aubergine-dark.yaml | 3 +- themes/slack-theme-aubergine-new.yaml | 3 +- themes/slack-theme-aubergine.yaml | 49 - themes/slack-theme-dark.yaml | 3 +- themes/slack-theme.yaml | 3 +- themes/slate-black.yaml | 1 + themes/slate-blackish.yaml | 1 + themes/slate-contrast.yaml | 13 +- themes/slate-gray.yaml | 1 + themes/slate-light.yaml | 49 - themes/slate.yaml | 13 +- themes/sleepy-owl-default-beta.yaml | 1 + themes/sleepy-owl-greenwich-beta.yaml | 1 + themes/sleepy-owl-oak-beta.yaml | 1 + themes/slime-color-theme.yaml | 3 +- themes/slime-contrast.yaml | 13 +- themes/slime-light.yaml | 13 +- themes/slime-solid-color-theme.yaml | 1 + themes/slime.yaml | 1 + themes/slimy-high-contrast.yaml | 1 + themes/slimy-light.yaml | 1 + themes/slimy.yaml | 1 + themes/slinkwave.yaml | 1 + themes/sloth-highlander-theme-1.yaml | 1 + themes/sloth-highlander-theme-2.yaml | 49 - themes/smalltheme-carbon-oled.yaml | 1 + themes/smettboi-light.yaml | 1 + themes/smithy-bronze.yaml | 49 - themes/smooth-burn-dark-hard.yaml | 1 + themes/smooth-burn-dark-medium.yaml | 1 + themes/smooth-burn-dark.yaml | 1 + themes/smooth-burn-light-hard.yaml | 1 + themes/snakedye-chocolate.yaml | 1 + themes/snappy-contrast.yaml | 13 +- themes/snappy-light.yaml | 13 +- themes/snappy.yaml | 49 - themes/snazzy-light.yaml | 3 +- ...zzy-operator-color-theme-dark-italics.yaml | 49 - .../snazzy-operator-color-theme-italics.yaml | 13 +- themes/snazzy-operator-natural.yaml | 3 +- themes/snazzy-operator-plus-color-theme.yaml | 49 - themes/snazzy-solaris.yaml | 1 + themes/snazzy-vs-theme.yaml | 1 + themes/snow-theme.yaml | 1 + themes/snowflake-dark-theme.yaml | 3 +- themes/snowflake-darker-theme.yaml | 3 +- themes/snoword-dark-soft.yaml | 1 + themes/snoword-dark.yaml | 1 + themes/snoword-light-soft.yaml | 1 + themes/snoword-light.yaml | 1 + themes/snowpiercer.yaml | 1 + themes/sober-afternoon.yaml | 1 + themes/sober-deepnight.yaml | 1 + themes/sober-midnight.yaml | 1 + themes/sober.yaml | 1 + themes/sobrio-light.yaml | 1 + themes/sobrio.yaml | 1 + themes/soct-color-theme.yaml | 1 + themes/soda.yaml | 1 + themes/soft-colors.yaml | 1 + themes/soft-dark-2.yaml | 49 - themes/soft-era-ellite-edit.yaml | 49 - themes/soft-kawaii-theme-1-color-theme.yaml | 1 + themes/soft-light-2.yaml | 49 - themes/soft-material.yaml | 1 + themes/soft-midnight.yaml | 3 +- themes/soft-mood-theme.yaml | 1 + themes/soft-sight.yaml | 3 +- themes/soft-sunset-dark.yaml | 1 + themes/soft-yellow-light.yaml | 3 +- themes/soho-color-theme.yaml | 1 + themes/soil-theme.yaml | 1 + themes/solar-drift-dark-theme.yaml | 1 + themes/solar-drift-darker-theme.yaml | 1 + themes/solar-flare.yaml | 85 +- themes/solarflare-contrast.yaml | 13 +- themes/solarflare-light.yaml | 13 +- themes/solarflare.yaml | 13 +- themes/solaris.yaml | 1 + themes/solarized-abydos.yaml | 49 - themes/solarized-complete-dark.yaml | 1 + themes/solarized-complete-light.yaml | 1 + themes/solarized-custom-dark.yaml | 1 + themes/solarized-custom-light.yaml | 1 + themes/solarized-dark-theme.yaml | 3 +- themes/solarized-dark.yaml | 81 +- themes/solarized-deep.yaml | 1 + themes/solarized-light-functional.yaml | 3 +- themes/solarized-light-n.yaml | 1 + themes/solarized-light.yaml | 51 +- themes/solarized-lilac.yaml | 1 + themes/solarized-monokai-dark.yaml | 3 +- themes/solarized-neue-bright.yaml | 1 + themes/solarized-neue.yaml | 73 +- themes/solarized-pro.yaml | 1 + themes/solarized-right.yaml | 1 + themes/solarized-ss-light.yaml | 1 + themes/solarized-yuki.yaml | 1 + themes/solarized.yaml | 3 +- themes/solarus.yaml | 1 + themes/solaryss.yaml | 1 + themes/solavsce-packagera.yaml | 1 + themes/solid-dark-theme.yaml | 1 + themes/solitude-dark.yaml | 1 + themes/solitude-soft.yaml | 1 + themes/solo-leveling.yaml | 3 +- themes/solstice-estival.yaml | 13 +- themes/solstice-hibernal.yaml | 13 +- themes/somber.yaml | 1 + themes/something-theme.yaml | 1 + themes/somewhere-on-a-beach.yaml | 3 +- themes/sonokai-andromeda.yaml | 13 +- themes/sonokai-atlantis.yaml | 13 +- themes/sonokai-espresso.yaml | 13 +- themes/sonokai-maia.yaml | 13 +- themes/sonokai-shusia.yaml | 13 +- themes/sonokai.yaml | 13 +- themes/sonora-deep-signal-faded.yaml | 1 + themes/sonora-deep-signal-vibrant.yaml | 1 + themes/sonora-deep-signal.yaml | 1 + themes/sonora-tides.yaml | 1 + themes/soothing-dark.yaml | 1 + themes/soothing-light.yaml | 1 + themes/soothing.yaml | 1 + themes/sorcerer.yaml | 1 + themes/soudev-mega-dark.yaml | 3 +- themes/soudev-purple-andromeda.yaml | 3 +- themes/soudev-semi-dark-andromeda.yaml | 3 +- themes/soul-theme.yaml | 1 + themes/souls-theme.yaml | 3 +- themes/soup-contrast.yaml | 13 +- themes/soup-light.yaml | 13 +- themes/soup.yaml | 13 +- themes/sourc.yaml | 3 +- themes/sourcerer.yaml | 1 + themes/sourlick-contrast.yaml | 13 +- themes/sourlick-light.yaml | 13 +- themes/sourlick.yaml | 13 +- themes/south-australia-dark.yaml | 3 +- themes/south-australia-light.yaml | 3 +- themes/space-dark.yaml | 13 +- themes/space-invader-black.yaml | 1 + themes/space-invader-darker.yaml | 1 + themes/space-invader-light.yaml | 1 + themes/space-invader.yaml | 1 + themes/space-light.yaml | 13 +- themes/space-purple-dark.yaml | 3 +- themes/space-purple-light.yaml | 3 +- themes/space-theme.yaml | 3 +- themes/space.yaml | 1 + themes/spacecamp.yaml | 1 + themes/spacedust.yaml | 1 + themes/spacegray.yaml | 1 + themes/spacegrey.yaml | 1 + themes/spacemacs-dark.yaml | 13 +- themes/spacemacs-light.yaml | 13 +- themes/spaceoceankitrefined.yaml | 3 +- themes/spacial.yaml | 1 + themes/spades.yaml | 1 + themes/sparkle-theme.yaml | 1 + themes/speakeasy.yaml | 1 + themes/spearmint-contrast.yaml | 13 +- themes/spearmint-light.yaml | 13 +- themes/spearmint.yaml | 13 +- themes/spider-man.yaml | 49 - themes/spiderverse-2099.yaml | 3 +- themes/spiderverse-miles.yaml | 3 +- themes/spiderverse-spider-man.yaml | 3 +- themes/spin-theme.yaml | 1 + themes/spirited-night.yaml | 3 +- themes/spitfire-contrast.yaml | 13 +- themes/spitfire-light.yaml | 13 +- themes/spitfire.yaml | 13 +- themes/splus.yaml | 1 + themes/spotly-dark.yaml | 1 + themes/spotly-light.yaml | 1 + themes/spring.yaml | 3 +- themes/sprinkles-color-theme.yaml | 1 + themes/spurlys-theme.yaml | 1 + themes/spyder-theme-light.yaml | 3 +- themes/sql-dark-pro-high-contrast.yaml | 1 + themes/squeak.yaml | 1 + themes/srcery-gagbo.yaml | 1 + themes/srcery.yaml | 3 +- themes/stackmeister.yaml | 1 + themes/stained-glass-dark.yaml | 1 + themes/stannum.yaml | 1 + themes/star-night-luna.yaml | 1 + themes/star-night.yaml | 1 + themes/star-wars-dark-side-theme-global.yaml | 1 + themes/starboy-theme.yaml | 1 + themes/starburst-dark.yaml | 1 + themes/starfield.yaml | 1 + themes/stark-contrast.yaml | 13 +- themes/stark-dark.yaml | 1 + themes/stark-light.yaml | 83 +- themes/stark.yaml | 13 +- themes/starlight-daybreak.yaml | 1 + themes/starlight-light.yaml | 1 + themes/starlight-midnight.yaml | 1 + themes/starlight-obsidian.yaml | 1 + themes/starlight-soft-glow.yaml | 1 + themes/starlight.yaml | 1 + themes/starry-night.yaml | 1 + themes/starry-pillar.yaml | 1 + themes/startlite.yaml | 1 + themes/startrail.yaml | 1 + themes/stasis-contrast.yaml | 13 +- themes/stasis-light.yaml | 13 +- themes/stasis.yaml | 13 +- themes/stealth-contrast.yaml | 13 +- themes/stealth-light.yaml | 13 +- themes/stealth.yaml | 85 +- themes/steel-blue-dark.yaml | 1 + themes/steel-phantom.yaml | 1 + themes/steffula.yaml | 3 +- themes/stella-high-contrast.yaml | 3 +- themes/stella-theme.yaml | 1 + themes/stella.yaml | 3 +- themes/stellar-void.yaml | 3 +- themes/stellar.yaml | 49 +- themes/stereo-theme.yaml | 1 + themes/sto-classic.yaml | 1 + themes/sto-green-dark.yaml | 1 + themes/sto-green.yaml | 1 + themes/stonerose.yaml | 1 + themes/storm-contrast.yaml | 13 +- themes/storm-dark-pro.yaml | 49 - themes/storm-light.yaml | 13 +- themes/storm-tracker.yaml | 3 +- themes/storm-uvadark-fork.yaml | 1 + themes/storm.yaml | 87 +- themes/stormpetrel.yaml | 1 + themes/strangebrew.yaml | 49 - themes/studio-bio-bio-dark-theme.yaml | 1 + themes/stylelight35.yaml | 1 + themes/subessence.yaml | 1 + themes/sublime-breakers.yaml | 2 +- themes/sublime-mariana-semantic-colorful.yaml | 49 - themes/sublime-mariana-test.yaml | 3 +- themes/sublime-monokai-color-theme.yaml | 49 - themes/sublime-text-3.yaml | 1 + themes/sublime-text-4-theme.yaml | 1 + themes/sublime-vscode-theme.yaml | 3 +- themes/subliminal-color-theme.yaml | 3 +- themes/subliminalr-next.yaml | 49 - themes/subscribe-color.yaml | 1 + themes/substrata.yaml | 1 + themes/sufocode.yaml | 1 + themes/sugar-dark-focus.yaml | 1 + themes/sugar-dark-github.yaml | 1 + themes/sugar-dark-midnight.yaml | 1 + themes/sugar-dark-one.yaml | 1 + themes/sugar-dark-vitesse.yaml | 1 + themes/sugar-dark-vs.yaml | 1 + themes/sugar-dark.yaml | 1 + themes/sugar-fleet.yaml | 1 + themes/sugar-light-vitesse.yaml | 1 + themes/sugar-light-vs.yaml | 1 + themes/sugar-light.yaml | 1 + themes/sukadia-dev-dark.yaml | 3 +- themes/sulfuric-dark.yaml | 1 + themes/sumiiro.yaml | 1 + themes/summer-night-gray-high-contrast.yaml | 1 + themes/summer-night-high-contrast.yaml | 1 + themes/summer-night.yaml | 1 + themes/summer-nights-lullaby.yaml | 1 + themes/summer-nights.yaml | 1 + themes/summer.yaml | 1 + themes/summercamp.yaml | 1 + themes/summerrelax.yaml | 1 + themes/sunbather.yaml | 1 + ...code-dark-soothing-blue-light-reduced.yaml | 1 + themes/sunny.yaml | 1 + themes/sunset-beach-dark.yaml | 9 +- themes/sunset-beach-light.yaml | 9 +- themes/sunset-boulevard.yaml | 3 +- themes/sunset-noir.yaml | 3 +- themes/sunset-serenade.yaml | 1 + themes/sunset-theme.yaml | 1 + themes/super-contrast.yaml | 13 +- themes/super-dark-cyberpunk-green.yaml | 1 + themes/super-dark-cyberpunk-grey.yaml | 1 + themes/super-dark-cyberpunk-purple.yaml | 1 + themes/super-light.yaml | 13 +- themes/super.yaml | 13 +- themes/superbright.yaml | 3 +- themes/superman-theme.yaml | 3 +- themes/supernova.yaml | 87 +- themes/surreal.yaml | 1 + themes/susuwatari.yaml | 1 + themes/svelte-5-theme.yaml | 1 + themes/sveltesse-black.yaml | 3 +- themes/sveltesse-dark-soft.yaml | 3 +- themes/sveltesse-dark.yaml | 3 +- themes/sveltesse-light-soft.yaml | 3 +- themes/sveltesse-light.yaml | 3 +- themes/sw-tatooine.yaml | 1 + themes/sw61.yaml | 1 + themes/swablu.yaml | 3 +- themes/swaminarayan.yaml | 1 + themes/swamp-color-theme.yaml | 1 + themes/sweet-lemon.yaml | 3 +- themes/sweet-pascal.yaml | 1 + themes/sweet-vscode.yaml | 13 +- themes/sweetdracula-monokai.yaml | 3 +- themes/swnb-palenight-theme.yaml | 1 + themes/syl-black.yaml | 1 + themes/syl-chocolate.yaml | 1 + themes/syl-forest.yaml | 1 + themes/syl-ice.yaml | 1 + themes/syl-plum.yaml | 1 + themes/syl-shadow.yaml | 1 + themes/syntax-palette.yaml | 3 +- themes/synthesis.yaml | 1 + themes/synthor-dark-fork.yaml | 1 + themes/synthwave-2077.yaml | 3 +- themes/synthwave-84-csav-edition.yaml | 11 +- themes/synthwave-84.yaml | 49 - themes/synthwave-alpha.yaml | 3 +- themes/synthwave-material-ansi-16.yaml | 1 + themes/synthwave.yaml | 1 + themes/synthy.yaml | 1 + themes/sypher.yaml | 1 + themes/syrinx.yaml | 1 + themes/sys1.yaml | 1 + themes/sysop.yaml | 1 + themes/t-theme.yaml | 1 + themes/t3nsor-solo-leveling.yaml | 1 + themes/tabycord.yaml | 49 - themes/taco-syntax.yaml | 1 + themes/tahigh.yaml | 1 + themes/taiga.yaml | 1 + themes/tail-dark-theme.yaml | 3 +- themes/tailwind-amber-dark.yaml | 1 + themes/tailwind-amber-light.yaml | 1 + themes/tailwind-blue-dark.yaml | 1 + themes/tailwind-blue-light.yaml | 1 + themes/tailwind-breeze.yaml | 1 + themes/tailwind-cyan-dark.yaml | 1 + themes/tailwind-cyan-light.yaml | 1 + themes/tailwind-dark.yaml | 3 +- themes/tailwind-darkest.yaml | 3 +- themes/tailwind-emerald-dark.yaml | 1 + themes/tailwind-emerald-light.yaml | 1 + themes/tailwind-fuchsia-dark.yaml | 1 + themes/tailwind-fuchsia-light.yaml | 1 + themes/tailwind-gray-dark.yaml | 1 + themes/tailwind-gray-light.yaml | 1 + themes/tailwind-green-dark.yaml | 1 + themes/tailwind-green-light.yaml | 1 + themes/tailwind-indigo-dark.yaml | 1 + themes/tailwind-indigo-light.yaml | 1 + themes/tailwind-lime-dark.yaml | 1 + themes/tailwind-lime-light.yaml | 1 + themes/tailwind-moon-blue.yaml | 3 +- themes/tailwind-moon-grey.yaml | 1 + themes/tailwind-moon.yaml | 3 +- themes/tailwind-neutral-dark.yaml | 1 + themes/tailwind-neutral-light.yaml | 1 + themes/tailwind-orange-dark.yaml | 1 + themes/tailwind-orange-light.yaml | 1 + themes/tailwind-pink-dark.yaml | 1 + themes/tailwind-pink-light.yaml | 1 + themes/tailwind-purple-dark.yaml | 1 + themes/tailwind-purple-light.yaml | 1 + themes/tailwind-red-dark.yaml | 1 + themes/tailwind-red-light.yaml | 1 + themes/tailwind-rose-dark.yaml | 1 + themes/tailwind-rose-light.yaml | 1 + themes/tailwind-sky-dark.yaml | 1 + themes/tailwind-sky-light.yaml | 1 + themes/tailwind-slate-dark.yaml | 1 + themes/tailwind-slate-light.yaml | 1 + themes/tailwind-stone-dark.yaml | 1 + themes/tailwind-stone-light.yaml | 1 + themes/tailwind-teal-dark.yaml | 1 + themes/tailwind-teal-light.yaml | 1 + themes/tailwind-violet-dark.yaml | 1 + themes/tailwind-violet-light.yaml | 1 + themes/tailwind-yellow-dark.yaml | 1 + themes/tailwind-yellow-light.yaml | 1 + themes/tailwind-zinc-dark.yaml | 1 + themes/tailwind-zinc-light.yaml | 1 + themes/tailwind.yaml | 1 + themes/taipei-night.yaml | 1 + themes/takenawa-modified.yaml | 1 + themes/takenawa.yaml | 1 + themes/tame-contrast.yaml | 13 +- themes/tame-light.yaml | 13 +- themes/tame.yaml | 13 +- themes/tamil-nadu-temple-land.yaml | 1 + themes/tan-jade.yaml | 1 + themes/tangere-dark.yaml | 3 +- themes/tangere-light.yaml | 3 +- themes/tango-plus.yaml | 3 +- themes/tango.yaml | 1 + themes/tanuki.yaml | 1 + themes/tao-theme.yaml | 1 + themes/taquito-darker.yaml | 1 + themes/taquito-lighter.yaml | 1 + themes/tara-theme-carbon-high-contrast.yaml | 3 +- themes/tara-theme-carbon.yaml | 3 +- themes/tara-theme-deepforest.yaml | 3 +- themes/tara-theme-graphene.yaml | 49 - themes/tara-theme-ocean.yaml | 3 +- themes/tara-theme-palenight.yaml | 3 +- themes/tara-theme-teal.yaml | 3 +- themes/taramandal-aurora.yaml | 1 + themes/taramandal-dark.yaml | 1 + themes/taramandal-true-cream.yaml | 1 + themes/tasmania-dark.yaml | 5 +- themes/tasmania-light.yaml | 5 +- themes/taurus.yaml | 3 +- themes/tbs-theme.yaml | 1 + themes/tea-leaves.yaml | 1 + themes/teags.yaml | 1 + themes/teal-crow-light.yaml | 1 + themes/teal.yaml | 1 + themes/tealicious.yaml | 1 + themes/tealy.yaml | 1 + themes/team-pastel-colors-theme.yaml | 3 +- themes/tearz.yaml | 1 + themes/techrazor-pro.yaml | 1 + themes/techswahili-color-theme.yaml | 1 + themes/techswahili-deep.yaml | 1 + themes/techswahili-modern-dark.yaml | 1 + themes/tecoma-theme.yaml | 1 + themes/telescope-fork.yaml | 1 + themes/telescope.yaml | 1 + themes/tema-dark-nero.yaml | 1 + themes/tema-dos-cria.yaml | 3 +- themes/tema-felipao.yaml | 7 +- themes/teneblattinus.yaml | 1 + themes/tenebris.yaml | 1 + themes/terafox.yaml | 3 +- themes/term.yaml | 1 + themes/terminal.yaml | 85 +- themes/terracecat.yaml | 1 + themes/terrarium-minimal-dark.yaml | 1 + themes/terrarium-minimal-light.yaml | 1 + themes/terrorboy-dark.yaml | 1 + themes/tesselate.yaml | 1 + themes/tesseract-dark.yaml | 3 +- themes/test.yaml | 1 + themes/tetra-contrast.yaml | 13 +- themes/tetra-light.yaml | 13 +- themes/tetra.yaml | 13 +- themes/teutobourg.yaml | 1 + themes/textmate-rstheme.yaml | 3 +- themes/th-me-dark-avril-vert-printemps.yaml | 3 +- themes/th-me-dark-janvier-bleu-fonc.yaml | 3 +- themes/th-me-dark-juillet-contraste-lev.yaml | 3 +- themes/th-me-dark-juin-high-contrast.yaml | 3 +- .../th-me-dark-septembre-contraste-lev.yaml | 49 - themes/th-me-high-contrast-janvier-r-vis.yaml | 3 +- themes/th-me-sombre-d-automne.yaml | 3 +- themes/thanatos.yaml | 1 + themes/thatdatapurple.yaml | 1 + themes/the-best-theme-ever.yaml | 1 + themes/the-dark-stove.yaml | 1 + themes/the-digital-life.yaml | 1 + themes/the-empire.yaml | 1 + themes/the-end-of-development.yaml | 3 +- themes/the-flying-dutchman-high-contrast.yaml | 1 + themes/the-flying-dutchman-soft.yaml | 1 + themes/the-flying-dutchman.yaml | 1 + themes/the-gentleman.yaml | 1 + themes/the-one-theme.yaml | 1 + themes/the-only-tolerable-light-theme.yaml | 1 + themes/the-orchid-dark.yaml | 1 + themes/the-orchid-light.yaml | 1 + themes/the-orchid-soft.yaml | 1 + themes/the-theme.yaml | 1 + themes/theaisphere-dark.yaml | 1 + themes/theaisphere-light.yaml | 1 + themes/thedarkerone.yaml | 3 +- themes/themarro-dark-contrast.yaml | 3 +- themes/themarro-david-remix.yaml | 3 +- themes/themarro.yaml | 3 +- themes/theme-bear.yaml | 1 + themes/theme-dark.yaml | 1 + themes/theme-for-codes-dark.yaml | 1 + themes/theme-for-codes-light.yaml | 1 + themes/theme-joey.yaml | 3 +- themes/theme-mk-1-green.yaml | 49 - themes/theme-mk-rebuilt.yaml | 1 + themes/theme-nickel.yaml | 1 + themes/theme-one.yaml | 1 + themes/theme-stick-green-dark.yaml | 1 + themes/theme-y-random.yaml | 1 + themes/theme.yaml | 1 + themes/themedarker.yaml | 3 +- themes/themeframek.yaml | 37 +- themes/themegreen.yaml | 1 + themes/themename.yaml | 1 + themes/themenis.yaml | 1 + themes/themeo.yaml | 1 + themes/themepurple.yaml | 3 +- themes/themer-dark.yaml | 1 + themes/themer-light.yaml | 1 + themes/themin-mint.yaml | 3 +- themes/theo-swarg-dark.yaml | 3 +- themes/theta.yaml | 1 + themes/thinkstorm.yaml | 1 + themes/thore-blue.yaml | 1 + themes/thorn.yaml | 11 +- themes/thoughtworks-style-theme.yaml | 1 + themes/thra.yaml | 1 + themes/threedark.yaml | 1 + themes/thunder-focus.yaml | 1 + themes/thunder-remains-unseen.yaml | 1 + themes/thxdude-theme.yaml | 1 + themes/thyme21g.yaml | 1 + themes/thynaptic-dark-base.yaml | 1 + themes/thynaptic-dim-base.yaml | 1 + themes/thynaptic-pro.yaml | 1 + themes/thynaptic-sand-base.yaml | 1 + themes/thynaptic-sand-dark.yaml | 1 + themes/tickle-contrast.yaml | 13 +- themes/tickle-light.yaml | 13 +- themes/tickle-refresh.yaml | 1 + themes/tickle.yaml | 13 +- themes/tidelight-contrast-light.yaml | 1 + themes/tidelight-contrast.yaml | 1 + themes/tidelight-dawn.yaml | 1 + themes/tidelight-daybreak.yaml | 1 + themes/tidelight-deep.yaml | 1 + themes/tidelight-dusk.yaml | 1 + themes/tidelight-fog.yaml | 1 + themes/tidelight-high-noon.yaml | 1 + themes/tidelight-midnight.yaml | 1 + themes/tidelight-shore.yaml | 1 + themes/tiktok.yaml | 1 + themes/tim-s-experiments-dark.yaml | 1 + themes/timir.yaml | 1 + themes/timu-macos-dark-theme.yaml | 1 + themes/timu-macos-light-theme.yaml | 1 + themes/timu-spacegrey-theme.yaml | 1 + themes/tinacious-design-syntax.yaml | 3 +- themes/tiniri-dark.yaml | 3 +- themes/tiniri-light.yaml | 3 +- themes/tiny-light.yaml | 1 + themes/titillating-midnight.yaml | 1 + themes/titillating-sunset.yaml | 1 + themes/tlapalli-00-obsidian.yaml | 1 + themes/tlapalli-01-gold.yaml | 1 + themes/tlapalli-02-turquoise.yaml | 1 + themes/tlapalli-03-quartz.yaml | 1 + themes/tlapalli-04-lapis-lazuli.yaml | 1 + themes/tlapalli-05-amethyst.yaml | 1 + themes/tlapalli-06-jade.yaml | 1 + themes/tlapalli-07-fire-opal.yaml | 1 + themes/tlapalli-l-00-obsidian-light.yaml | 1 + themes/tlapalli-l-01-gold-light.yaml | 1 + themes/tlapalli-l-02-turquoise-light.yaml | 1 + themes/tlapalli-l-03-quartz-light.yaml | 1 + themes/tlapalli-l-04-lapis-lazuli-light.yaml | 1 + themes/tlapalli-l-05-amethyst-light.yaml | 1 + themes/tlapalli-l-06-jade-light.yaml | 1 + themes/tlapalli-l-07-fire-opal-light.yaml | 1 + themes/tm2rd3.yaml | 1 + themes/tnove-dark-theme.yaml | 1 + themes/tobirama-water-style.yaml | 3 +- themes/tokito-inspired.yaml | 3 +- themes/tokv7.yaml | 1 + themes/tokyo-dark.yaml | 49 - themes/tokyo-dive.yaml | 1 + themes/tokyo-ghosts-dark.yaml | 1 + themes/tokyo-ghosts-light.yaml | 1 + themes/tokyo-gogh-alt.yaml | 3 +- themes/tokyo-gogh.yaml | 3 +- themes/tokyo-light.yaml | 3 +- themes/tokyo-lights.yaml | 1 + themes/tokyo-midnight.yaml | 3 +- themes/tokyo-modern.yaml | 1 + themes/tokyo-night-blackout.yaml | 3 +- themes/tokyo-night-bright.yaml | 1 + themes/tokyo-night-dark.yaml | 3 +- themes/tokyo-night-equalizer.yaml | 3 +- themes/tokyo-night-light.yaml | 1 + themes/tokyo-night-nv.yaml | 1 + themes/tokyo-night-pure.yaml | 3 +- themes/tokyo-night-storm.yaml | 49 - themes/tokyo-night-void.yaml | 3 +- themes/tokyo-night.yaml | 49 - themes/tokyo-panda.yaml | 3 +- themes/tokyo.yaml | 3 +- themes/tokyonight-moon-lazy.yaml | 3 +- themes/tokyonight.yaml | 1 + themes/tol.yaml | 1 + themes/tomorrow-night-bright-r-classic.yaml | 1 + themes/tomorrow-night-ij.yaml | 1 + themes/tomorrowmyst.yaml | 1 + themes/tonic-contrast.yaml | 13 +- themes/tonic-light.yaml | 13 +- themes/tonic.yaml | 13 +- themes/toodark.yaml | 1 + themes/topic-the-leader.yaml | 1 + themes/tora.yaml | 9 +- themes/torque.yaml | 1 + themes/torte-vim.yaml | 1 + themes/total-lunar-eclipse.yaml | 3 +- themes/totow-s-th-me.yaml | 1 + themes/toxic-color-theme.yaml | 1 + themes/toxic-waste.yaml | 1 + themes/toy-chest.yaml | 1 + themes/tranquillity-theme.yaml | 1 + themes/trans-pride-light-naomi.yaml | 1 + themes/transylvania.yaml | 1 + themes/triad-dragon.yaml | 3 +- themes/tribal-contrast.yaml | 13 +- themes/tribal-light.yaml | 13 +- themes/tribal.yaml | 13 +- themes/trioptimized.yaml | 49 - themes/triumph-v2.yaml | 1 + themes/triumph.yaml | 1 + themes/tron-ares.yaml | 3 +- themes/tron-contrast.yaml | 13 +- themes/tron-light.yaml | 13 +- themes/tron.yaml | 13 +- themes/trsm-night-eyes.yaml | 3 +- themes/true-dark.yaml | 49 - themes/trueamber.yaml | 3 +- themes/tsuki.yaml | 3 +- themes/tsukiroku-dark.yaml | 1 + themes/tsukuyomi-light.yaml | 3 +- themes/tsukuyomi-no-italics.yaml | 49 - themes/tsumiki-theme.yaml | 1 + themes/ttheme.yaml | 49 - themes/tudoroxo.yaml | 1 + themes/tundra-dusk.yaml | 1 + themes/turbo-c-3-0-borland-style.yaml | 3 +- themes/turbo.yaml | 1 + themes/turnip-contrast.yaml | 13 +- themes/turnip-light.yaml | 13 +- themes/turnip.yaml | 13 +- themes/turquesa-bege.yaml | 3 +- themes/tutilabs-theme.yaml | 1 + themes/tw40-gigi.yaml | 3 +- themes/tweed-contrast.yaml | 13 +- themes/tweed-light.yaml | 13 +- themes/tweed.yaml | 13 +- themes/twentyfour.yaml | 1 + themes/twilight-cosmos.yaml | 1 + themes/twilight-pro.yaml | 1 + themes/twilight-sage.yaml | 1 + themes/twilight.yaml | 1 + themes/twilightsparkle.yaml | 3 +- themes/twilite-darker.yaml | 3 +- themes/twilite.yaml | 3 +- themes/twin-black.yaml | 3 +- themes/twin-blue.yaml | 3 +- themes/two-firewatch.yaml | 3 +- themes/twodark.yaml | 1 + themes/tycho-crater.yaml | 1 + themes/tyh-theme-dark.yaml | 1 + themes/typedark-magenta.yaml | 1 + themes/typedark-yellow.yaml | 49 - themes/tyrell-corporation.yaml | 1 + themes/tyrian-night.yaml | 1 + themes/tyrone-neon-24k-gold.yaml | 49 - themes/ui.yaml | 1 + themes/ukiyo-e-aged-manuscript.yaml | 3 +- themes/ukiyo-e-manuscript.yaml | 7 +- themes/ukiyo-tone-asahi-morning-sun.yaml | 1 + .../ukiyo-tone-kachi-iro-victory-color.yaml | 1 + .../ukiyo-tone-karesansui-dry-landscape.yaml | 1 + themes/ukiyo-tone-koke-dera-moss-temple.yaml | 1 + themes/ukiyo-tone-kuro-sumi-black-ink.yaml | 1 + themes/ukiyo-tone-tasogare-twilight.yaml | 1 + themes/ukiyo.yaml | 1 + themes/ultima-gwz.yaml | 1 + themes/ultima.yaml | 1 + themes/ultra-instinct-mastered-light.yaml | 1 + themes/ultra-instinct-mastered.yaml | 1 + themes/ultra-instinct-sign.yaml | 1 + themes/umbra.yaml | 3 +- themes/umi.yaml | 3 +- themes/ump-45-leva.yaml | 1 + themes/unbluelievable.yaml | 1 + themes/undefined.yaml | 1 + themes/underdark-fork.yaml | 1 + themes/underdark-v2.yaml | 1 + themes/understated-no-italics.yaml | 49 - themes/unicorn-dark.yaml | 3 +- themes/unicorn.yaml | 1 + themes/unicornio-dark.yaml | 3 +- themes/unieye.yaml | 1 + themes/uniquezhd.yaml | 1 + themes/unitsmash.yaml | 1 + themes/unity-theme.yaml | 3 +- themes/universe-gray-italic.yaml | 49 - themes/universe-italic.yaml | 3 +- themes/universe-purple-italic.yaml | 49 - themes/universe.yaml | 1 + themes/unlight-v-2.yaml | 1 + themes/untitled-fork-fork.yaml | 1 + themes/untitled-fork.yaml | 1 + themes/untitled.yaml | 3 +- themes/unyodusk.yaml | 1 + themes/updog-light.yaml | 1 + themes/updog.yaml | 1 + themes/upward-dark-focus-border-on.yaml | 49 - .../upward-dark-legacy-focus-border-on.yaml | 49 - themes/urara.yaml | 1 + themes/urban-couple.yaml | 3 +- themes/urban-forge.yaml | 1 + themes/urban-glow.yaml | 1 + themes/user160.yaml | 1 + themes/userscape-contrast.yaml | 13 +- themes/userscape-light.yaml | 13 +- themes/userscape.yaml | 13 +- themes/utheme.yaml | 1 + themes/utopia.yaml | 1 + themes/uvadark-rahul-fork.yaml | 1 + themes/v-id-contrast.yaml | 1 + themes/v-id-soft.yaml | 1 + themes/v01d-theme-alternative.yaml | 1 + themes/v01d-theme.yaml | 1 + themes/v7.yaml | 1 + themes/vaatu.yaml | 1 + themes/vagalume-dev.yaml | 1 + themes/vagruvboxtheme-color-theme.yaml | 1 + themes/vague-neovim-theme-extended-light.yaml | 3 +- themes/vague-neovim-theme-extended.yaml | 3 +- themes/valary.yaml | 1 + themes/valkthor-dark-theme.yaml | 1 + themes/valley-italic.yaml | 49 - themes/valorant-theme-darker.yaml | 3 +- themes/valorant-theme-remasterd.yaml | 3 +- themes/vampurr.yaml | 1 + themes/van-gogh-theme.yaml | 3 +- themes/vanilla-jade.yaml | 1 + themes/vanilla.yaml | 1 + themes/vapor.yaml | 83 +- themes/vaporizer-alice-dark.yaml | 3 +- themes/vaporizer-alice-light.yaml | 3 +- themes/vaporizer-ava-light.yaml | 3 +- themes/vaporizer-batman-dark-2022.yaml | 3 +- themes/vaporizer-batman-dark-night.yaml | 3 +- themes/vaporizer-cloudy-light.yaml | 3 +- themes/vaporizer-cobalt-dark.yaml | 3 +- themes/vaporizer-crescent-dark.yaml | 3 +- themes/vaporizer-dark-blue-green.yaml | 49 - themes/vaporizer-dark-cherry.yaml | 3 +- themes/vaporizer-dark-coffee.yaml | 3 +- themes/vaporizer-dark-cool-1.yaml | 3 +- themes/vaporizer-dark-cool-2.yaml | 3 +- themes/vaporizer-dark-cop.yaml | 3 +- themes/vaporizer-dark-cyber-neon-1.yaml | 3 +- themes/vaporizer-dark-cyber-neon-2.yaml | 3 +- themes/vaporizer-dark-cyber-neon-3.yaml | 3 +- themes/vaporizer-dark-ivy.yaml | 3 +- themes/vaporizer-dark-joker.yaml | 3 +- themes/vaporizer-dark-matrix-1.yaml | 49 - themes/vaporizer-dark-monterey.yaml | 3 +- themes/vaporizer-dark-painting.yaml | 3 +- themes/vaporizer-dark-pansy.yaml | 3 +- themes/vaporizer-dark-stabilo.yaml | 3 +- themes/vaporizer-dark-turquoise.yaml | 3 +- themes/vaporizer-epic-red-dark.yaml | 3 +- themes/vaporizer-fonc-dark.yaml | 3 +- themes/vaporizer-frozen-dark.yaml | 3 +- themes/vaporizer-golgi-dark.yaml | 3 +- themes/vaporizer-half-moon-dark.yaml | 3 +- themes/vaporizer-lemonade-light.yaml | 3 +- .../vaporizer-lemonade-solarized-light.yaml | 3 +- themes/vaporizer-milk-light.yaml | 3 +- themes/vaporizer-mini-blue-light.yaml | 3 +- themes/vaporizer-minimalism-light.yaml | 3 +- themes/vaporizer-modern-light.yaml | 3 +- themes/vaporizer-moon-light-dark.yaml | 3 +- themes/vaporizer-phosphoric-blue.yaml | 3 +- themes/vaporizer-purple-gray-dark.yaml | 3 +- themes/vaporizer-soft-light.yaml | 3 +- themes/vaporizer-splash-dark.yaml | 3 +- themes/vaporizer-turquoise-light.yaml | 3 +- themes/vaquita.yaml | 1 + themes/varlet-dark.yaml | 1 + themes/vase-with-twelve-sunflowers.yaml | 1 + themes/vasses-tricolor-theme.yaml | 1 + themes/vcoldtheme.yaml | 1 + themes/vegas-night-details-theme.yaml | 3 +- themes/vegetable-contrast.yaml | 13 +- themes/vegetable-light.yaml | 13 +- themes/vegetable.yaml | 49 - themes/vegetation.yaml | 1 + themes/veiled.yaml | 1 + themes/veist.yaml | 1 + themes/vela-spectrum-colorblind-light.yaml | 1 + themes/vela-spectrum-dark-colorblind.yaml | 1 + themes/vela-spectrum-dark-dimmed.yaml | 1 + themes/vela-spectrum-dark-tritanopia.yaml | 1 + themes/vela-spectrum-dark.yaml | 1 + themes/vela-spectrum-dimmed-light.yaml | 1 + themes/vela-spectrum-high-contrast-light.yaml | 1 + themes/vela-spectrum-high-contrast.yaml | 1 + themes/vela-spectrum-light-tritanopia.yaml | 1 + themes/vela-spectrum-light.yaml | 1 + themes/velourous.yaml | 1 + themes/velvet-chrome.yaml | 1 + themes/velvet-thunder.yaml | 1 + themes/venice-beach-sky.yaml | 3 +- themes/venom-theme.yaml | 1 + themes/vercel-light.yaml | 4 +- themes/vercel.yaml | 21 +- themes/verdantium.yaml | 1 + themes/verdure.yaml | 1 + themes/version-1-0-5.yaml | 1 + themes/very-blue.yaml | 1 + themes/very-fast-theme.yaml | 1 + themes/vesper-golden.yaml | 1 + themes/vesper-purple-dark.yaml | 1 + themes/vesper-purple-light.yaml | 1 + themes/vesper.yaml | 3 +- themes/vhs80.yaml | 1 + themes/vi-dark.yaml | 1 + themes/vibe-dark-legacy.yaml | 3 +- themes/vibecolors-corporate-light.yaml | 1 + themes/vibecolors-dark.yaml | 1 + themes/vibecolors-dynamic-dark.yaml | 1 + themes/vibecolors-dynamic-light.yaml | 1 + themes/vibecolors-light.yaml | 1 + themes/vibecolors-minimal-light.yaml | 1 + themes/vibecolors-neon-dark.yaml | 1 + themes/vibecolors-ocean-dark.yaml | 1 + themes/vibecolors-pastel-light.yaml | 1 + themes/vibecolors-retro-dark.yaml | 1 + themes/vibecolors-soft-dark.yaml | 1 + themes/vibecolors-sunset-light.yaml | 1 + themes/vibes.yaml | 1 + themes/vibra.yaml | 1 + themes/vibrant-abyss-vscode.yaml | 3 +- themes/vibrant-dark.yaml | 1 + themes/vibrant-max.yaml | 1 + themes/vice-city-noir.yaml | 3 +- themes/vicious.yaml | 1 + themes/victoria-dark.yaml | 5 +- themes/victoria-light.yaml | 5 +- themes/video-contrast.yaml | 3 +- themes/vigerdark.yaml | 49 - themes/vigikai.yaml | 1 + themes/viii-iii-mmv.yaml | 1 + themes/vikkie-dark.yaml | 3 +- themes/vikkie-light.yaml | 3 +- themes/villain-dark.yaml | 3 +- themes/villain-light.yaml | 3 +- themes/vim-dar11sdasdasd.yaml | 1 + themes/vim-dark-hard.yaml | 49 - themes/vim-dark-medium.yaml | 1 + themes/vim-dark-soft.yaml | 3 +- themes/vim-light-1.yaml | 1 + themes/vim-light-2.yaml | 1 + themes/vim-light-3b.yaml | 49 - themes/vim-light-hard.yaml | 49 - themes/vim-light-medium.yaml | 49 - themes/vim-light-soft.yaml | 85 +- themes/vim-night.yaml | 9 +- themes/vin-theme.yaml | 1 + themes/vintage-rust-theme.yaml | 1 + themes/vintage-serene.yaml | 1 + themes/vintage.yaml | 1 + themes/vinyl.yaml | 1 + themes/violaceous-contrast.yaml | 13 +- themes/violaceous-light.yaml | 13 +- themes/violaceous.yaml | 13 +- themes/violet-dream.yaml | 3 +- themes/violet-night.yaml | 3 +- themes/violet-nova.yaml | 3 +- themes/viora.yaml | 1 + themes/viper-theme.yaml | 1 + themes/vishwakarma-sunset-glow.yaml | 11 +- themes/vision-colorblind.yaml | 13 +- themes/vision-light-colorblind.yaml | 13 +- themes/visual-studio-code-dark-theme.yaml | 3 +- themes/visual-studio-github-light-plus.yaml | 1 + themes/visualos.yaml | 1 + themes/vitepress-theme-vite-dark.yaml | 1 + themes/vitesse-black.yaml | 49 - themes/vitesse-dark-custom.yaml | 3 +- themes/vitesse-dark-soft.yaml | 13 +- themes/vitesse-dark.yaml | 49 - themes/vitesse-dragon-dark.yaml | 1 + themes/vitesse-dragon.yaml | 1 + themes/vitesse-green-theme.yaml | 1 + themes/vitesse-light-soft.yaml | 49 - themes/vitesse-light.yaml | 49 - themes/vitesse-webstorm-dark.yaml | 1 + themes/vitrioleuse.yaml | 1 + themes/vivid-blue.yaml | 11 +- themes/vividnord.yaml | 1 + themes/vivido-theme.yaml | 1 + themes/vkt-theme.yaml | 3 +- themes/void-iris.yaml | 1 + themes/void-script.yaml | 49 - themes/void.yaml | 1 + themes/voidbloom-quazar.yaml | 1 + themes/voidbloom-singularity.yaml | 1 + themes/voidwalker.yaml | 1 + themes/volatile-contrast.yaml | 13 +- themes/volatile-light.yaml | 13 +- themes/volatile.yaml | 13 +- themes/volcanofr.yaml | 1 + themes/volskaya.yaml | 1 + themes/volt-dark.yaml | 1 + themes/voodoo.yaml | 3 +- themes/voraes.yaml | 1 + themes/voyager.yaml | 1 + themes/vs-code-deep-f-lux-fork-fork.yaml | 3 +- themes/vs-code-deep-f-lux.yaml | 1 + themes/vs-code-next-js.yaml | 7 +- themes/vs-fleet.yaml | 3 +- themes/vs-ghoul.yaml | 3 +- themes/vsblue.yaml | 1 + themes/vsc-blue-theme.yaml | 3 +- themes/vsc-military-style.yaml | 1 + themes/vsc-minimalist-theme-oak.yaml | 3 +- themes/vsc-minimalist-theme-obsidian.yaml | 3 +- themes/vsc-minimalist-theme-odp.yaml | 3 +- themes/vsc-solarized-light.yaml | 1 + themes/vscode-material-ui.yaml | 3 +- themes/vscode-nofrils-dark.yaml | 1 + themes/vscode-nofrils-github-light.yaml | 1 + themes/vscode-nofrils-gruvbox-dark.yaml | 1 + themes/vscode-nofrils-gruvbox-light.yaml | 1 + themes/vscode-nofrils-light.yaml | 11 +- themes/vscode-nofrils-one-dark.yaml | 1 + themes/vscode-nofrils-one-light.yaml | 1 + themes/vscode-nofrils-sepia.yaml | 1 + themes/vscode-nofrils-tokyo-night.yaml | 1 + themes/vscode-pink-and-puple-theme.yaml | 3 +- themes/vscode-theme.yaml | 1 + themes/vscyberpunk-2077.yaml | 49 - themes/vsmuted-color-theme.yaml | 1 + themes/vstheme-no-italics.yaml | 1 + themes/vstoolkit-theme-dark.yaml | 1 + themes/vuejs-theme.yaml | 3 +- themes/vulpotheme.yaml | 49 - themes/vxcode-blush.yaml | 3 +- themes/vxcode-cream.yaml | 3 +- themes/vxcode-dark.yaml | 3 +- themes/vxcode-darker.yaml | 3 +- themes/vxcode-lavender.yaml | 3 +- themes/vxcode-lime.yaml | 3 +- themes/vxcode-oled.yaml | 3 +- themes/w30.yaml | 49 - themes/w40-theme.yaml | 3 +- themes/wallbash.yaml | 1 + themes/walloco-light-theme.yaml | 3 +- themes/walls-fill.yaml | 1 + themes/wandering-mercenary.yaml | 1 + themes/wangyj-bright-black.yaml | 1 + themes/wangyj-contrast-black.yaml | 49 - themes/wangyj-film-black.yaml | 1 + themes/wangyj-film-light.yaml | 1 + themes/warlock-contrast.yaml | 13 +- themes/warlock-light.yaml | 13 +- themes/warlock.yaml | 13 +- themes/warm-black.yaml | 1 + themes/warm-burnout-dark.yaml | 3 +- themes/warm-burnout-light.yaml | 3 +- themes/warm-orange-enthusiasm-creativity.yaml | 1 + themes/warm-orange-theme.yaml | 1 + themes/warmkai-pro.yaml | 1 + themes/waste-contrast.yaml | 13 +- themes/waste-light.yaml | 13 +- themes/waste.yaml | 13 +- themes/water-grape.yaml | 3 +- themes/waterbyte-classic-2022-light.yaml | 3 +- themes/watermelon.yaml | 3 +- themes/wavefire.yaml | 1 + themes/waves.yaml | 49 - themes/wdark-theme.yaml | 1 + themes/webc-dark.yaml | 1 + themes/webstorm-darcula-dark-theme.yaml | 1 + themes/webstorm-intellij-darcula-theme.yaml | 3 +- themes/webstorm-monokai.yaml | 1 + themes/weiting-candycolor.yaml | 1 + themes/west-bengal-cultural-hub.yaml | 1 + themes/what-the-hell.yaml | 1 + themes/wheel-color-theme.yaml | 1 + themes/wheel-light-color-theme.yaml | 1 + themes/whiskey-coder-dark.yaml | 1 + themes/whiskey-coder-light.yaml | 1 + themes/white-color-theme.yaml | 49 - themes/white-night-color-theme.yaml | 49 - themes/white-shade-color.yaml | 1 + themes/white-winter.yaml | 3 +- themes/whiteboard.yaml | 3 +- themes/whitespace.yaml | 1 + themes/wick.yaml | 1 + themes/wicked.yaml | 87 +- themes/wiity-green-eye-friendly.yaml | 1 + themes/wiity-green.yaml | 7 +- themes/wild-flower.yaml | 1 + themes/wildtype.yaml | 1 + themes/wildwest.yaml | 1 + themes/will-o-wisp-theme.yaml | 1 + themes/willasm-emerald-sky.yaml | 1 + themes/willi-style-darker.yaml | 49 - themes/willi-style-darkest.yaml | 49 - themes/willi-style-dracula-flavour.yaml | 3 +- themes/willow.yaml | 1 + themes/win-xp-luna.yaml | 3 +- themes/win10.yaml | 1 + themes/winclassic.yaml | 3 +- themes/wind-dark-slate.yaml | 3 +- themes/wind-dark-zinc.yaml | 3 +- themes/wind.yaml | 1 + themes/windows-95-theme.yaml | 3 +- themes/windows-nt.yaml | 3 +- themes/windows-xp-dark-luna.yaml | 3 +- themes/windu.yaml | 1 + themes/windwaker.yaml | 3 +- themes/wine-garden.yaml | 1 + themes/winter-pearl.yaml | 3 +- themes/winter.yaml | 1 + themes/winteriscoding-gift.yaml | 1 + themes/winteriscoding.yaml | 1 + themes/wired-lighter.yaml | 3 +- themes/wired.yaml | 3 +- themes/wise-owl-material-high-contrast.yaml | 1 + themes/wise-owl-material-light.yaml | 1 + themes/wise-owl-material.yaml | 1 + themes/wisteria.yaml | 3 +- themes/witch-elaina.yaml | 1 + themes/witcher.yaml | 1 + themes/witchy-dark.yaml | 1 + themes/wl-acid-wash.yaml | 1 + themes/wl-amber-monitor.yaml | 3 +- themes/wl-chrome-dreams.yaml | 1 + themes/wl-cosmic-drift.yaml | 1 + themes/wl-crystal-cave.yaml | 1 + themes/wl-cyber-punk.yaml | 3 +- themes/wl-data-stream.yaml | 1 + themes/wl-disco-ball.yaml | 1 + themes/wl-electric-dreams.yaml | 1 + themes/wl-electric-sunset.yaml | 3 +- themes/wl-fusion-core.yaml | 1 + themes/wl-graffiti-wall.yaml | 1 + themes/wl-hyper-drive.yaml | 1 + themes/wl-ink-splash.yaml | 1 + themes/wl-jade-temple.yaml | 1 + themes/wl-laser-grid.yaml | 1 + themes/wl-lava-lamp.yaml | 1 + themes/wl-mainframe-blue.yaml | 1 + themes/wl-midnight-drive.yaml | 1 + themes/wl-misty-mountain.yaml | 3 +- themes/wl-moon-phase.yaml | 1 + themes/wl-neon-cascade.yaml | 1 + themes/wl-neon-sign.yaml | 1 + themes/wl-neon-tokyo.yaml | 1 + themes/wl-nova-burst.yaml | 1 + themes/wl-pixel-punch.yaml | 1 + themes/wl-plasma-storm.yaml | 1 + themes/wl-pulse-wave.yaml | 1 + themes/wl-retro-arcade.yaml | 1 + themes/wl-retro-future.yaml | 1 + themes/wl-signal-wave.yaml | 3 +- themes/wl-silk-road.yaml | 1 + themes/wl-tape-deck.yaml | 1 + themes/wl-terminal-green.yaml | 1 + themes/wl-vacuum-glow.yaml | 1 + themes/wl-velvet-night.yaml | 1 + themes/wl-volt-surge.yaml | 1 + themes/wl-zen-twilight.yaml | 1 + themes/wolves-league-dark.yaml | 1 + themes/woodsmoke.yaml | 1 + themes/wookie.yaml | 1 + themes/word-color-theme.yaml | 3 +- themes/word-dark-theme.yaml | 17 +- themes/wordsmith-dark.yaml | 1 + themes/wordsmith-light.yaml | 1 + themes/wuthering-waves-aemeath-dark.yaml | 3 +- themes/wuthering-waves-aemeath.yaml | 3 +- themes/wuthering-waves-augusta-dark.yaml | 3 +- themes/wuthering-waves-augusta.yaml | 3 +- themes/wuthering-waves-baizhi-dark.yaml | 3 +- themes/wuthering-waves-baizhi.yaml | 3 +- themes/wuthering-waves-brant-dark.yaml | 3 +- themes/wuthering-waves-brant.yaml | 3 +- themes/wuthering-waves-cantarella-dark.yaml | 3 +- themes/wuthering-waves-cantarella.yaml | 3 +- themes/wuthering-waves-carlotta-dark.yaml | 3 +- themes/wuthering-waves-carlotta.yaml | 3 +- themes/wuthering-waves-cartethyia-dark.yaml | 3 +- themes/wuthering-waves-cartethyia.yaml | 3 +- themes/wuthering-waves-changli-dark.yaml | 3 +- themes/wuthering-waves-changli.yaml | 3 +- themes/wuthering-waves-chisa-dark.yaml | 3 +- themes/wuthering-waves-chisa.yaml | 3 +- themes/wuthering-waves-galbrena-dark.yaml | 3 +- themes/wuthering-waves-galbrena.yaml | 3 +- themes/wuthering-waves-iuno-dark.yaml | 3 +- themes/wuthering-waves-iuno.yaml | 3 +- themes/wuthering-waves-jinhsi.yaml | 3 +- themes/wuthering-waves-lynae-dark.yaml | 3 +- themes/wuthering-waves-lynae.yaml | 3 +- themes/wuthering-waves-mornye-dark.yaml | 3 +- themes/wuthering-waves-mornye.yaml | 3 +- themes/wuthering-waves-roccia-dark.yaml | 3 +- themes/wuthering-waves-roccia.yaml | 3 +- themes/wuthering-waves-rover.yaml | 3 +- themes/wuthering-waves-sanhua-dark.yaml | 3 +- themes/wuthering-waves-sanhua.yaml | 3 +- themes/wuthering-waves-scar-dark.yaml | 3 +- themes/wuthering-waves-scar.yaml | 3 +- themes/wuthering-waves-taoqi.yaml | 3 +- .../wuthering-waves-the-shorekeeper-dark.yaml | 3 +- themes/wuthering-waves-the-shorekeeper.yaml | 3 +- themes/wuthering-waves-verina-dark.yaml | 3 +- themes/wuthering-waves-verina.yaml | 3 +- themes/wuthering-waves-yinlin-dark.yaml | 3 +- themes/wuthering-waves-yinlin.yaml | 3 +- themes/wuthering-waves-zhezhi-dark.yaml | 3 +- themes/wuthering-waves-zhezhi.yaml | 3 +- themes/wye-black.yaml | 1 + themes/wye-dark-soft.yaml | 1 + themes/wye-dark.yaml | 1 + themes/wye-light-soft.yaml | 1 + themes/wye-light.yaml | 1 + themes/xaeon-dark.yaml | 1 + themes/xaidozy-color.yaml | 1 + themes/xanthron-light.yaml | 1 + themes/xava-color-theme.yaml | 1 + themes/xceodark.yaml | 1 + themes/xcode-dark.yaml | 1 + themes/xecoy-dark.yaml | 1 + themes/xecoy-light.yaml | 1 + themes/xiali-vintage-rose-dark.yaml | 1 + themes/xiali-vintage-rose-light.yaml | 1 + themes/xis-one.yaml | 1 + themes/xk-dark-catppuccin-mocha.yaml | 1 + themes/xk-dark-dracula.yaml | 1 + themes/xk-dark-gruvbox.yaml | 1 + themes/xk-dark-monokai-pro.yaml | 1 + themes/xk-dark-tokyo-night.yaml | 1 + themes/xk-light-catppuccin-latte.yaml | 1 + themes/xk-light-github.yaml | 1 + themes/xk-light-one.yaml | 1 + themes/xk-light-ros-pine.yaml | 1 + themes/xk-light-solarized.yaml | 1 + themes/xlumielvscodetheme.yaml | 1 + themes/xochil.yaml | 1 + themes/xotopio.yaml | 1 + themes/xpyjs-black.yaml | 3 +- themes/xresources-bordered-dark.yaml | 49 - themes/xresources-bordered-mixed.yaml | 49 - themes/xresources-bordered.yaml | 85 +- themes/xresources.yaml | 1 + themes/xrodev.yaml | 1 + themes/xs.yaml | 1 + themes/xstheme.yaml | 1 + themes/xtree-gold.yaml | 1 + themes/xviewdark.yaml | 1 + themes/xxhtml.yaml | 9 +- themes/xxtereshko-light.yaml | 1 + themes/xzadudu179.yaml | 1 + themes/y3m.yaml | 1 + themes/yaast.yaml | 1 + themes/yagnesh.yaml | 1 + themes/yagomaia-theme.yaml | 49 - themes/yami-blue.yaml | 1 + themes/yanbaru-shadow.yaml | 1 + themes/yarra-valley.yaml | 3 +- themes/yaru-dark-grape.yaml | 49 - themes/yaru-dark.yaml | 81 +- themes/yaru.yaml | 3 +- themes/yaruna-aurora.yaml | 3 +- themes/yaruna-forest.yaml | 3 +- themes/yaruna-midnight.yaml | 3 +- themes/yaruna-nova.yaml | 3 +- themes/yaruna-palenight.yaml | 49 - themes/yazbi.yaml | 49 - themes/yd-dark.yaml | 1 + themes/yd-light.yaml | 1 + themes/ydrgzm-light-theme.yaml | 1 + themes/yelan.yaml | 1 + themes/yellow-beryl.yaml | 1 + themes/yellow-green-blue-theme.yaml | 1 + themes/yellow-purple-theme.yaml | 1 + themes/yellowed.yaml | 3 +- themes/yerba.yaml | 1 + themes/yet-another-solarized-theme-dark.yaml | 3 +- themes/yet-another-solarized-theme-light.yaml | 13 +- themes/yharnizedtheme.yaml | 1 + themes/yinloonga-python.yaml | 49 - themes/yitzchok-contrast.yaml | 13 +- themes/yitzchok-light.yaml | 13 +- themes/yitzchok.yaml | 13 +- themes/ylw-dark-theme.yaml | 1 + themes/yoda-mystical-force.yaml | 3 +- themes/yoda.yaml | 1 + themes/yodart.yaml | 49 - themes/yohualli-eclipse.yaml | 1 + themes/yohualli-lunaris.yaml | 1 + themes/yohualli-nebulune.yaml | 1 + themes/yohualli-penumbra.yaml | 1 + themes/yonc.yaml | 13 +- themes/yotei.yaml | 1 + themes/yoth-theme-dark.yaml | 1 + themes/ystheme.yaml | 1 + themes/ytheme-dark.yaml | 3 +- themes/yue-theme.yaml | 1 + themes/yukinord.yaml | 3 +- themes/yule-contrast.yaml | 13 +- themes/yule-light.yaml | 13 +- themes/yule.yaml | 13 +- themes/yulon.yaml | 1 + themes/yum.yaml | 1 + themes/yurei-dark-theme.yaml | 1 + themes/yuru-black.yaml | 1 + themes/yuru.yaml | 1 + themes/yuyuko-vscode-ocean.yaml | 3 +- themes/yuyuko-vscode.yaml | 3 +- themes/z-darktheme.yaml | 1 + themes/z3r0.yaml | 1 + themes/zach-s-blue-theme.yaml | 3 +- themes/zacks-contrast.yaml | 13 +- themes/zacks-light.yaml | 13 +- themes/zacks.yaml | 13 +- themes/zaher-color-theme.yaml | 1 + themes/zan.yaml | 1 + themes/zandromeda.yaml | 49 - themes/zap.yaml | 3 +- themes/zathura.yaml | 49 - themes/zbra-dark.yaml | 1 + themes/zeal.yaml | 3 +- themes/zednostheme-v1.yaml | 1 + themes/zemarcolortheme.yaml | 9 +- themes/zemizer-grey.yaml | 1 + themes/zen-dark.yaml | 1 + themes/zen-mono.yaml | 1 + themes/zen-sakura-cherry-blossom.yaml | 1 + themes/zenbones-dark-stark.yaml | 3 +- themes/zenbones-dark-warm.yaml | 3 +- themes/zenbones-dark.yaml | 21 +- themes/zenbones-duckbones-dark-stark.yaml | 3 +- themes/zenbones-duckbones-dark-warm.yaml | 3 +- themes/zenbones-duckbones-dark.yaml | 3 +- themes/zenbones-forestbones-dark-stark.yaml | 3 +- themes/zenbones-forestbones-dark-warm.yaml | 3 +- themes/zenbones-forestbones-dark.yaml | 3 +- themes/zenbones-forestbones-light-bright.yaml | 3 +- themes/zenbones-forestbones-light-dim.yaml | 3 +- themes/zenbones-forestbones-light.yaml | 3 +- themes/zenbones-kanagawabones-dark-stark.yaml | 3 +- themes/zenbones-kanagawabones-dark-warm.yaml | 3 +- themes/zenbones-kanagawabones-dark.yaml | 3 +- themes/zenbones-light-bright.yaml | 3 +- themes/zenbones-light-dim.yaml | 3 +- themes/zenbones-light.yaml | 29 +- themes/zenbones-neobones-dark-stark.yaml | 3 +- themes/zenbones-neobones-dark-warm.yaml | 3 +- themes/zenbones-neobones-dark.yaml | 3 +- themes/zenbones-neobones-light-bright.yaml | 3 +- themes/zenbones-neobones-light-dim.yaml | 3 +- themes/zenbones-neobones-light.yaml | 3 +- themes/zenbones-nordbones-dark-stark.yaml | 3 +- themes/zenbones-nordbones-dark-warm.yaml | 3 +- themes/zenbones-nordbones-dark.yaml | 3 +- themes/zenbones-rosebones-dark-stark.yaml | 3 +- themes/zenbones-rosebones-dark-warm.yaml | 3 +- themes/zenbones-rosebones-dark.yaml | 3 +- themes/zenbones-rosebones-light-bright.yaml | 3 +- themes/zenbones-rosebones-light-dim.yaml | 3 +- themes/zenbones-rosebones-light.yaml | 3 +- themes/zenbones-seoulbones-dark-stark.yaml | 3 +- themes/zenbones-seoulbones-dark-warm.yaml | 3 +- themes/zenbones-seoulbones-dark.yaml | 3 +- themes/zenbones-seoulbones-light-bright.yaml | 3 +- themes/zenbones-seoulbones-light-dim.yaml | 3 +- themes/zenbones-seoulbones-light.yaml | 3 +- themes/zenbones-tokyobones-dark-stark.yaml | 3 +- themes/zenbones-tokyobones-dark-warm.yaml | 3 +- themes/zenbones-tokyobones-dark.yaml | 3 +- themes/zenbones-tokyobones-light-bright.yaml | 3 +- themes/zenbones-tokyobones-light-dim.yaml | 3 +- themes/zenbones-tokyobones-light.yaml | 3 +- themes/zenbones-vimbones-light-bright.yaml | 3 +- themes/zenbones-vimbones-light-dim.yaml | 3 +- themes/zenbones-vimbones-light.yaml | 3 +- themes/zenbones-zenburned-dark-stark.yaml | 3 +- themes/zenbones-zenburned-dark-warm.yaml | 3 +- themes/zenbones-zenburned-dark.yaml | 3 +- themes/zenbones-zenwritten-dark-stark.yaml | 3 +- themes/zenbones-zenwritten-dark-warm.yaml | 3 +- themes/zenbones-zenwritten-dark.yaml | 3 +- themes/zenbones-zenwritten-light-bright.yaml | 3 +- themes/zenbones-zenwritten-light-dim.yaml | 3 +- themes/zenbones-zenwritten-light.yaml | 3 +- themes/zenburn.yaml | 3 +- themes/zene-dark-theme.yaml | 1 + themes/zeneth.yaml | 1 + themes/zenflow-noir.yaml | 1 + themes/zenith-aurora.yaml | 3 +- themes/zenith-dawn.yaml | 3 +- themes/zenith-dusk.yaml | 3 +- themes/zenith-forest.yaml | 3 +- themes/zenith-midnight.yaml | 3 +- themes/zenith-neutral.yaml | 3 +- themes/zenith-ocean.yaml | 3 +- themes/zenith-ros.yaml | 3 +- themes/zenith-zen.yaml | 3 +- themes/zenith.yaml | 3 +- themes/zenitria-amoled.yaml | 3 +- themes/zero-wip.yaml | 1 + themes/zeus-turquoise.yaml | 3 +- themes/zeus-yelo.yaml | 3 +- themes/zhangpengtao-black.yaml | 1 + themes/zhe-qi.yaml | 49 - themes/zhongli.yaml | 3 +- themes/zhxo-lt.yaml | 1 + themes/zhxo-red-experimental.yaml | 49 - themes/zhxo-st.yaml | 1 + themes/zhxo-yll.yaml | 1 + themes/zinc.yaml | 1 + themes/zokugun-obsidium.yaml | 1 + themes/zoren-breeze.yaml | 1 + themes/ztok.yaml | 3 +- themes/zux-purple-minimal.yaml | 1 + themes/zwel.yaml | 1 + themes/zxxn.yaml | 1 + themes/zygomatic-blue.yaml | 1 + themes/zyrotec.yaml | 1 + themes/zzhtheme-dark.yaml | 1 + themes/zzhtheme-light.yaml | 1 + 6288 files changed, 14496 insertions(+), 25997 deletions(-) delete mode 100644 themes/.yaml delete mode 100644 themes/111-theme.yaml delete mode 100644 themes/a-green-cat-v2.yaml delete mode 100644 themes/acekaizen-calmly-dark.yaml delete mode 100644 themes/aconitum-clean.yaml delete mode 100644 themes/aldrico-s.yaml delete mode 100644 themes/alive-dark-theme.yaml delete mode 100644 themes/alx-theme-normal.yaml delete mode 100644 themes/amaranth-red-eerie-black-fork.yaml delete mode 100644 themes/amber-blue-light.yaml delete mode 100644 themes/amber-blue.yaml delete mode 100644 themes/amber-color-theme.yaml delete mode 100644 themes/amethyst-kiss-dark-amethyst-mode.yaml delete mode 100644 themes/amethyst-kiss-light-amethyst-mode.yaml delete mode 100644 themes/anquyx-fork.yaml delete mode 100644 themes/anya.yaml delete mode 100644 themes/august-arstotzka-2-darker.yaml delete mode 100644 themes/august-arstotzka-2.yaml delete mode 100644 themes/august-ros-pine-moon.yaml delete mode 100644 themes/august-ros-pine.yaml delete mode 100644 themes/ayu.yaml delete mode 100644 themes/ayuloco-dark.yaml delete mode 100644 themes/baculum-color-lightup-comment.yaml delete mode 100644 themes/baculum-color-minimal-vantablack.yaml delete mode 100644 themes/base-minor.yaml delete mode 100644 themes/beloco-italic.yaml delete mode 100644 themes/benimaru.yaml delete mode 100644 themes/best-themes-monokai-next.yaml delete mode 100644 themes/bibauporto-simple.yaml delete mode 100644 themes/blankeos-zen-theme.yaml delete mode 100644 themes/blaze-orange.yaml delete mode 100644 themes/bluethemepulper.yaml delete mode 100644 themes/bun-gothic.yaml delete mode 100644 themes/cadet-medium-gray-flat.yaml delete mode 100644 themes/calm-days-sober-nights-day-no-bold-style.yaml delete mode 100644 themes/calm-days-sober-nights-day-sky-no-bold-style.yaml delete mode 100644 themes/calm-days-sober-nights-night-no-bold-style.yaml delete mode 100644 themes/calm-days-sober-nights-night-sky-no-bold-style.yaml delete mode 100644 themes/calm-teal-colorblind-balance-clarity.yaml delete mode 100644 themes/calomnie.yaml delete mode 100644 themes/caramel-fork.yaml delete mode 100644 themes/carbon-candy-aurora-thin-border.yaml delete mode 100644 themes/carbon-candy-carbon-thin-border.yaml delete mode 100644 themes/carbon-candy-dark-thin-border.yaml delete mode 100644 themes/carbon-candy-obsidian-thin-border.yaml delete mode 100644 themes/cchl-color-theme.yaml delete mode 100644 themes/ceo.yaml delete mode 100644 themes/chatgpt-theme.yaml delete mode 100644 themes/claude-code-dark-brand.yaml delete mode 100644 themes/claude-code-light-brand.yaml delete mode 100644 themes/claude-dark-high-contrast-italic.yaml delete mode 100644 themes/code-hunter-bluepurly.yaml delete mode 100644 themes/community-material-theme-darker.yaml delete mode 100644 themes/community-material-theme-default-high-contrast.yaml delete mode 100644 themes/community-material-theme-lighter-high-contrast.yaml delete mode 100644 themes/community-material-theme-lighter.yaml delete mode 100644 themes/community-material-theme-ocean-high-contrast.yaml delete mode 100644 themes/community-material-theme-palenight-high-contrast.yaml delete mode 100644 themes/creative-purple-colorblind-innovation-imagination.yaml delete mode 100644 themes/crt-gray.yaml delete mode 100644 themes/crt-paper.yaml delete mode 100644 themes/cursor-dark.yaml delete mode 100644 themes/dark-chai.yaml delete mode 100644 themes/dark-color-theme.yaml delete mode 100644 themes/dark-orange.yaml delete mode 100644 themes/dark-rblx-rian.yaml delete mode 100644 themes/dark-solarin-2.yaml delete mode 100644 themes/darko.yaml delete mode 100644 themes/dartpad-candy.yaml delete mode 100644 themes/dbt-inspired-dark-theme.yaml delete mode 100644 themes/dbt-inspired-light-theme.yaml delete mode 100644 themes/deep-purple-fork.yaml delete mode 100644 themes/deepwoods-autumn-needles-italic.yaml delete mode 100644 themes/deepwoods-frosted-pines-italic.yaml delete mode 100644 themes/deepwoods-high-canopy-italic.yaml delete mode 100644 themes/deepwoods-spring-thaw-italic.yaml delete mode 100644 themes/denian-theme.yaml delete mode 100644 themes/dharam-gfx-amethyst.yaml delete mode 100644 themes/digitaliss-italic.yaml delete mode 100644 themes/digitaliss-light-italic.yaml delete mode 100644 themes/digitaliss-pastel-italic.yaml delete mode 100644 themes/dracula-clean.yaml delete mode 100644 themes/dracula-soft.yaml delete mode 100644 themes/ebullience.yaml delete mode 100644 themes/eerie.yaml delete mode 100644 themes/eidolon-alter.yaml delete mode 100644 themes/elixir-theme-no-italics-less-dark-2.yaml delete mode 100644 themes/energy-red-colorblind-passion-alertness.yaml delete mode 100644 themes/enhanced-material.yaml delete mode 100644 themes/enki-rainbow-bro.yaml delete mode 100644 themes/everforest-dark.yaml delete mode 100644 themes/everforest-light.yaml delete mode 100644 themes/exias-theme-colorful.yaml delete mode 100644 themes/fallout-theme.yaml delete mode 100644 themes/flamelabs-argo.yaml delete mode 100644 themes/flamingo-galaxy.yaml delete mode 100644 themes/flashbang.yaml delete mode 100644 themes/flatland-monokai-improved-no-cursor-highlight.yaml delete mode 100644 themes/flow-light.yaml delete mode 100644 themes/forxtu-light.yaml delete mode 100644 themes/four-sages-color-theme.yaml delete mode 100644 themes/functional.yaml delete mode 100644 themes/funx-theme.yaml delete mode 100644 themes/genshin-impact-columbina-dark.yaml delete mode 100644 themes/github-dark-colorblind.yaml delete mode 100644 themes/github-dark.yaml delete mode 100644 themes/github-light-colorblind.yaml delete mode 100644 themes/github-light-high-contrast.yaml delete mode 100644 themes/github-light.yaml delete mode 100644 themes/github-revamp-alt.yaml delete mode 100644 themes/googlory-color-theme.yaml delete mode 100644 themes/grank-italics.yaml delete mode 100644 themes/gray.yaml delete mode 100644 themes/greeny.yaml delete mode 100644 themes/gru.yaml delete mode 100644 themes/gruvbox-material-dark.yaml delete mode 100644 themes/gruvbox-material-light.yaml delete mode 100644 themes/gruvdark-mono.yaml delete mode 100644 themes/hard-hacker-high-contrast.yaml delete mode 100644 themes/hard-hacker-light-high-contrast.yaml delete mode 100644 themes/hello.yaml delete mode 100644 themes/hero-dark-inverse.yaml delete mode 100644 themes/house-of-the-dragon-team-blacks.yaml delete mode 100644 themes/hub-contrast.yaml delete mode 100644 themes/hyezo-dark.yaml delete mode 100644 themes/i3-aurora-x-custom-ii.yaml delete mode 100644 themes/i3-aurora-x-custom-iii.yaml delete mode 100644 themes/i3-aurora-x-custom.yaml delete mode 100644 themes/ibm-carbon-gray-10-alternative-code-highlighting.yaml delete mode 100644 themes/ibm-carbon-gray-100-alternative-code-highlighting.yaml delete mode 100644 themes/ibm-carbon-gray-90-alternative-code-highlighting.yaml delete mode 100644 themes/ibm-carbon-white-alternative-code-highlighting.yaml delete mode 100644 themes/illusion-refined.yaml delete mode 100644 themes/industrialcomplex.yaml delete mode 100644 themes/intellij-light-classic-color-theme.yaml delete mode 100644 themes/jetverse-dev-dark.yaml delete mode 100644 themes/joyful-fork.yaml delete mode 100644 themes/kanagawa.yaml delete mode 100644 themes/kaplan-dark-muted.yaml delete mode 100644 themes/karry-color-theme.yaml delete mode 100644 themes/keval-s-official-electric-lime.yaml delete mode 100644 themes/kong-light-extended.yaml delete mode 100644 themes/kuroir-dark-05-citrine.yaml delete mode 100644 themes/kuroir-dark-13-turquoise.yaml delete mode 100644 themes/kuroir-dark-17-sapphire.yaml delete mode 100644 themes/kuroir-dark-19-violet.yaml delete mode 100644 themes/kuroir-light-02-vermilion.yaml delete mode 100644 themes/kuroir-light-04-goldenrod.yaml delete mode 100644 themes/kuroir-light-13-turquoise.yaml delete mode 100644 themes/lackluster-night.yaml delete mode 100644 themes/lapis-ruby-dark-stealth-version.yaml delete mode 100644 themes/lapis-ruby-light.yaml delete mode 100644 themes/lapis-stealth-version.yaml delete mode 100644 themes/lavender-contrast.yaml delete mode 100644 themes/learn-with-sumit-blue-velvet-theme.yaml delete mode 100644 themes/learn-with-sumit-official-theme.yaml delete mode 100644 themes/learn-with-sumit-peace-of-the-eye-dracula-version.yaml delete mode 100644 themes/learn-with-sumit-professional-theme.yaml delete mode 100644 themes/learn-with-sumit-simple-as-light.yaml delete mode 100644 themes/learn-with-sumit-vintage.yaml delete mode 100644 themes/legacy.yaml delete mode 100644 themes/light-color-theme.yaml delete mode 100644 themes/light-red.yaml delete mode 100644 themes/lightning-cloud.yaml delete mode 100644 themes/ligor-fork.yaml delete mode 100644 themes/lncoder-theme.yaml delete mode 100644 themes/magicorp.yaml delete mode 100644 themes/material-last.yaml delete mode 100644 themes/material-theme-darker-high-contrast.yaml delete mode 100644 themes/material-theme-darker.yaml delete mode 100644 themes/material-theme-deepforest-high-contrast.yaml delete mode 100644 themes/material-theme-default-high-contrast.yaml delete mode 100644 themes/material-theme-lighter-high-contrast.yaml delete mode 100644 themes/material-theme-lighter.yaml delete mode 100644 themes/material-theme-palenight-high-contrast.yaml delete mode 100644 themes/meoceanblackbarry.yaml delete mode 100644 themes/min-light.yaml delete mode 100644 themes/minimal-monochrome-slate-light.yaml delete mode 100644 themes/mk-mono-light.yaml delete mode 100644 themes/modern-github-white-purple.yaml delete mode 100644 themes/monokai-blue.yaml delete mode 100644 themes/monokai-color-theme.yaml delete mode 100644 themes/monokai-night.yaml delete mode 100644 themes/monokai.yaml delete mode 100644 themes/monotone.yaml delete mode 100644 themes/motion-blue-thin-brackets.yaml delete mode 100644 themes/mountain.yaml delete mode 100644 themes/my-dark-theme.yaml delete mode 100644 themes/mycode-dark-blue.yaml delete mode 100644 themes/mytheme.yaml delete mode 100644 themes/nameless.yaml delete mode 100644 themes/narato.yaml delete mode 100644 themes/natty.yaml delete mode 100644 themes/natural-green-colorblind-growth-harmony.yaml delete mode 100644 themes/nature-green-colorblind-growth-harmony.yaml delete mode 100644 themes/nebulous-dark.yaml delete mode 100644 themes/neon-dreams-neobrutalist.yaml delete mode 100644 themes/neon-palette-themes-blue.yaml delete mode 100644 themes/neon-purple-old-school.yaml delete mode 100644 themes/neon.yaml delete mode 100644 themes/newsprint-c.yaml delete mode 100644 themes/night-owl.yaml delete mode 100644 themes/nightcall-no-italics.yaml delete mode 100644 themes/nightchill.yaml delete mode 100644 themes/njord.yaml delete mode 100644 themes/noctis-azureus.yaml delete mode 100644 themes/noctis-bordo.yaml delete mode 100644 themes/noctis-hibernus.yaml delete mode 100644 themes/noctis-lux.yaml delete mode 100644 themes/noctis-minimus.yaml delete mode 100644 themes/noctis-obscuro.yaml delete mode 100644 themes/noctis-sereno.yaml delete mode 100644 themes/noctis-uva.yaml delete mode 100644 themes/noctis-viola.yaml delete mode 100644 themes/noctis.yaml delete mode 100644 themes/noir-essence-dark-border.yaml delete mode 100644 themes/ohled-aqua.yaml delete mode 100644 themes/ohled-fuchsia.yaml delete mode 100644 themes/one-dark-vivid.yaml delete mode 100644 themes/one-darkpuccin-vivid-italic.yaml delete mode 100644 themes/one-half-light-italic.yaml delete mode 100644 themes/one-monokai.yaml delete mode 100644 themes/oq-dark-soft.yaml delete mode 100644 themes/oq-dark.yaml delete mode 100644 themes/oq-light-soft.yaml delete mode 100644 themes/oq-light.yaml delete mode 100644 themes/orbi-green.yaml delete mode 100644 themes/outrun-contrast.yaml delete mode 100644 themes/overnight-italic.yaml delete mode 100644 themes/oxide.yaml delete mode 100644 themes/oxocarbon-compatibility.yaml delete mode 100644 themes/oxocarbon-monochrom-compatibility.yaml delete mode 100644 themes/oxocarbon-oled-compatibility.yaml delete mode 100644 themes/p-black.yaml delete mode 100644 themes/p-citadel.yaml delete mode 100644 themes/p-crimson.yaml delete mode 100644 themes/p-dark.yaml delete mode 100644 themes/p-eggplant.yaml delete mode 100644 themes/p-emerald.yaml delete mode 100644 themes/p-eucalyptus.yaml delete mode 100644 themes/p-floresta.yaml delete mode 100644 themes/p-frost.yaml delete mode 100644 themes/p-genmaicha.yaml delete mode 100644 themes/p-grizzly.yaml delete mode 100644 themes/p-haze.yaml delete mode 100644 themes/p-inkstone.yaml delete mode 100644 themes/p-leipzig.yaml delete mode 100644 themes/p-light.yaml delete mode 100644 themes/p-machine.yaml delete mode 100644 themes/p-mist.yaml delete mode 100644 themes/p-neptune.yaml delete mode 100644 themes/p-ornithopter.yaml delete mode 100644 themes/p-ox.yaml delete mode 100644 themes/p-terabyte.yaml delete mode 100644 themes/p-ultramarine.yaml delete mode 100644 themes/p-wolf.yaml delete mode 100644 themes/p-zenith.yaml delete mode 100644 themes/palenight-italic.yaml delete mode 100644 themes/palenight-theme.yaml delete mode 100644 themes/pandju-no-italics.yaml delete mode 100644 themes/pillirioen-italics.yaml delete mode 100644 themes/pine-editor-light.yaml delete mode 100644 themes/pine-theme-blue.yaml delete mode 100644 themes/pine-theme-dark-low-contrast.yaml delete mode 100644 themes/pine-theme-grey.yaml delete mode 100644 themes/pine-theme-original-dark.yaml delete mode 100644 themes/poimandres-dark-theme.yaml delete mode 100644 themes/polar.yaml delete mode 100644 themes/pulsar-default.yaml delete mode 100644 themes/quantum-bordered.yaml delete mode 100644 themes/quantum-dark-bordered.yaml delete mode 100644 themes/quantum-mirage-bordered.yaml delete mode 100644 themes/r-dark-pro-filter-black-white-border.yaml delete mode 100644 themes/r-dark-pro-filter-laser-border.yaml delete mode 100644 themes/raij-dark-no-italics.yaml delete mode 100644 themes/raij-no-italics.yaml delete mode 100644 themes/rainbow-contrast.yaml delete mode 100644 themes/re-dark-alt.yaml delete mode 100644 themes/red-one-dark-pro-dark-bordered.yaml delete mode 100644 themes/red-one-dark-pro-mirage-bordered.yaml delete mode 100644 themes/red-one-dark-pro-mirage.yaml delete mode 100644 themes/reddish.yaml delete mode 100644 themes/reui-ii-dark-italic.yaml delete mode 100644 themes/reui-ii-italic.yaml delete mode 100644 themes/reui-ii-mirage-italic.yaml delete mode 100644 themes/rich-black-theme-no-italic.yaml delete mode 100644 themes/ros-pine-dawn.yaml delete mode 100644 themes/rouge-no-italics.yaml delete mode 100644 themes/sakai-theme-venus.yaml delete mode 100644 themes/sakura-theme-fork.yaml delete mode 100644 themes/scepter.yaml delete mode 100644 themes/schwifty-purple-one-dark.yaml delete mode 100644 themes/seaci-darkbase.yaml delete mode 100644 themes/seaci-shadow.yaml delete mode 100644 themes/shinjuku-colored-brackets.yaml delete mode 100644 themes/simple-purple.yaml delete mode 100644 themes/sinequanone-cerulean.yaml delete mode 100644 themes/sinequanone-swan.yaml delete mode 100644 themes/sizdah-best-of-all.yaml delete mode 100644 themes/slack-theme-aubergine.yaml delete mode 100644 themes/slate-light.yaml delete mode 100644 themes/sloth-highlander-theme-2.yaml delete mode 100644 themes/smithy-bronze.yaml delete mode 100644 themes/snappy.yaml delete mode 100644 themes/snazzy-operator-color-theme-dark-italics.yaml delete mode 100644 themes/snazzy-operator-plus-color-theme.yaml delete mode 100644 themes/soft-dark-2.yaml delete mode 100644 themes/soft-era-ellite-edit.yaml delete mode 100644 themes/soft-light-2.yaml delete mode 100644 themes/solarized-abydos.yaml delete mode 100644 themes/spider-man.yaml delete mode 100644 themes/storm-dark-pro.yaml delete mode 100644 themes/strangebrew.yaml delete mode 100644 themes/sublime-mariana-semantic-colorful.yaml delete mode 100644 themes/sublime-monokai-color-theme.yaml delete mode 100644 themes/subliminalr-next.yaml delete mode 100644 themes/synthwave-84.yaml delete mode 100644 themes/tabycord.yaml delete mode 100644 themes/tara-theme-graphene.yaml delete mode 100644 themes/th-me-dark-septembre-contraste-lev.yaml delete mode 100644 themes/theme-mk-1-green.yaml delete mode 100644 themes/tokyo-dark.yaml delete mode 100644 themes/tokyo-night-storm.yaml delete mode 100644 themes/tokyo-night.yaml delete mode 100644 themes/trioptimized.yaml delete mode 100644 themes/true-dark.yaml delete mode 100644 themes/tsukuyomi-no-italics.yaml delete mode 100644 themes/ttheme.yaml delete mode 100644 themes/typedark-yellow.yaml delete mode 100644 themes/tyrone-neon-24k-gold.yaml delete mode 100644 themes/understated-no-italics.yaml delete mode 100644 themes/universe-gray-italic.yaml delete mode 100644 themes/universe-purple-italic.yaml delete mode 100644 themes/upward-dark-focus-border-on.yaml delete mode 100644 themes/upward-dark-legacy-focus-border-on.yaml delete mode 100644 themes/valley-italic.yaml delete mode 100644 themes/vaporizer-dark-blue-green.yaml delete mode 100644 themes/vaporizer-dark-matrix-1.yaml delete mode 100644 themes/vegetable.yaml delete mode 100644 themes/vigerdark.yaml delete mode 100644 themes/vim-dark-hard.yaml delete mode 100644 themes/vim-light-3b.yaml delete mode 100644 themes/vim-light-hard.yaml delete mode 100644 themes/vim-light-medium.yaml delete mode 100644 themes/vitesse-black.yaml delete mode 100644 themes/vitesse-dark.yaml delete mode 100644 themes/vitesse-light-soft.yaml delete mode 100644 themes/vitesse-light.yaml delete mode 100644 themes/void-script.yaml delete mode 100644 themes/vscyberpunk-2077.yaml delete mode 100644 themes/vulpotheme.yaml delete mode 100644 themes/w30.yaml delete mode 100644 themes/wangyj-contrast-black.yaml delete mode 100644 themes/waves.yaml delete mode 100644 themes/white-color-theme.yaml delete mode 100644 themes/white-night-color-theme.yaml delete mode 100644 themes/willi-style-darker.yaml delete mode 100644 themes/willi-style-darkest.yaml delete mode 100644 themes/xresources-bordered-dark.yaml delete mode 100644 themes/xresources-bordered-mixed.yaml delete mode 100644 themes/yagomaia-theme.yaml delete mode 100644 themes/yaru-dark-grape.yaml delete mode 100644 themes/yaruna-palenight.yaml delete mode 100644 themes/yazbi.yaml delete mode 100644 themes/yinloonga-python.yaml delete mode 100644 themes/yodart.yaml delete mode 100644 themes/zandromeda.yaml delete mode 100644 themes/zathura.yaml delete mode 100644 themes/zhe-qi.yaml delete mode 100644 themes/zhxo-red-experimental.yaml diff --git a/cli/src/theme-schema.ts b/cli/src/theme-schema.ts index 32fb84b6..c2d7f301 100644 --- a/cli/src/theme-schema.ts +++ b/cli/src/theme-schema.ts @@ -8,6 +8,8 @@ export interface ThemeSource { marketplace_id: string; version: string; installs: number; + rating: number; + ratings: number; url: string; author: string; repo: string | null; @@ -58,6 +60,7 @@ export interface ThemeMeta { mode: 'dark' | 'light'; accent: string; hue: number | null; + pair: string | null; contrast: ThemeContrast; } @@ -177,6 +180,8 @@ export function serializeThemeYAML(theme: ThemeYAML): string { lines.push(` marketplace_id: "${theme.source.marketplace_id}"`); lines.push(` version: "${theme.source.version}"`); lines.push(` installs: ${theme.source.installs}`); + lines.push(` rating: ${Math.round((theme.source.rating || 0) * 100) / 100}`); + lines.push(` ratings: ${theme.source.ratings || 0}`); lines.push(` author: "${theme.source.author}"`); lines.push(` repo: ${theme.source.repo ? '"' + theme.source.repo + '"' : 'null'}`); lines.push(` url: "${theme.source.url}"`); @@ -190,6 +195,7 @@ export function serializeThemeYAML(theme: ThemeYAML): string { lines.push(` mode: "${theme.meta.mode}"`); lines.push(` accent: "${theme.meta.accent}"`); lines.push(` hue: ${theme.meta.hue === null ? 'null' : theme.meta.hue}`); + lines.push(` pair: ${theme.meta.pair ? '"' + theme.meta.pair + '"' : 'null'}`); lines.push(' contrast:'); for (const key of ['fg', ...ANSI_KEYS]) { const val = theme.meta.contrast[key as keyof ThemeContrast]; diff --git a/cli/src/theme.ts b/cli/src/theme.ts index 8e350291..9bd777db 100644 --- a/cli/src/theme.ts +++ b/cli/src/theme.ts @@ -32,12 +32,16 @@ const GITHUB_RAW_BASE = 'https://raw.githubusercontent.com/basiclines/rampa-stud // ── Args ── +type SortOption = 'name' | 'installs' | 'rating' | 'ratings' | 'mode'; + interface ThemeArgs { command: 'list' | 'show' | 'install'; name: string; app: string; dryRun: boolean; local: boolean; + all: boolean; + sort: SortOption[]; } function showThemeHelp(): void { @@ -62,6 +66,8 @@ ${bold}OPTIONS${reset} ${cyan}--install ${reset} ${dim}Target app to generate theme for${reset} ${cyan}--show${reset} ${dim}Print theme colors and metadata${reset} ${cyan}--dry-run${reset} ${dim}Print generated output without writing file${reset} + ${cyan}--all${reset} ${dim}Show all themes (list shows 100 by default)${reset} + ${cyan}--sort ${reset} ${dim}Sort by: name (default), installs, mode${reset} ${cyan}--local${reset} ${dim}Use local themes/ directory instead of fetching from GitHub${reset} ${cyan}-h, --help${reset} ${dim}Show this help${reset} @@ -83,6 +89,8 @@ export function parseThemeArgs(argv: string[]): ThemeArgs { app: '', dryRun: false, local: false, + all: false, + sort: ['name'], }; let i = 0; @@ -118,6 +126,25 @@ export function parseThemeArgs(argv: string[]): ThemeArgs { continue; } + if (arg === '--all') { + args.all = true; + i++; + continue; + } + + if (arg === '--sort' && argv[i + 1]) { + const val = argv[++i] as SortOption; + if (['name', 'installs', 'rating', 'ratings', 'mode'].includes(val)) { + if (args.sort.length === 1 && args.sort[0] === 'name') { + args.sort = [val]; // replace default + } else { + args.sort.push(val); + } + } + i++; + continue; + } + if (arg === 'list') { args.command = 'list'; i++; @@ -140,14 +167,21 @@ export function parseThemeArgs(argv: string[]): ThemeArgs { // ── Theme loading ── function resolveThemesDir(): string { - // Walk up from __dirname to find themes/ - let dir = dirname(new URL(import.meta.url).pathname); - for (let i = 0; i < 10; i++) { - const candidate = join(dir, 'themes'); - if (existsSync(candidate)) return candidate; - dir = dirname(dir); + // Try multiple starting points — compiled binaries can't use import.meta.url + const startDirs = [ + process.cwd(), + dirname(process.argv[0]), + ]; + try { startDirs.push(dirname(new URL(import.meta.url).pathname)); } catch {} + + for (const start of startDirs) { + let dir = start; + for (let i = 0; i < 10; i++) { + const candidate = join(dir, 'themes'); + if (existsSync(candidate)) return candidate; + dir = dirname(dir); + } } - // Fallback: CWD return join(process.cwd(), 'themes'); } @@ -237,18 +271,90 @@ function resolveInstallPath(basePath: string): string { // ── Commands ── -async function listThemes(local: boolean): Promise { +async function listThemes(local: boolean, all: boolean, sorts: SortOption[]): Promise { const index = await fetchIndex(local); - const entries = Object.entries(index); + let entries = Object.entries(index); + const total = entries.length; - if (entries.length === 0) { + if (total === 0) { console.log('No themes found. Run the scraper first or check your themes/ directory.'); return; } - console.log(`\n ${entries.length} themes available:\n`); - for (const [name] of entries.sort((a, b) => a[0].localeCompare(b[0]))) { - console.log(` ${name}`); + const dim = '\x1b[2m'; + const reset = '\x1b[0m'; + const needsMeta = sorts.some(s => s !== 'name'); + + // Read metadata from YAML files when sorting by anything other than name + const meta = new Map(); + if (needsMeta && local) { + const themesDir = resolveThemesDir(); + for (const [name, filename] of entries) { + try { + const raw = readFileSync(join(themesDir, filename), 'utf8'); + const installsMatch = raw.match(/^\s*installs:\s*(\d+)/m); + const ratingMatch = raw.match(/^\s*rating:\s*([\d.]+)/m); + const ratingsMatch = raw.match(/^\s*ratings:\s*(\d+)/m); + const modeMatch = raw.match(/^\s*mode:\s*"?(dark|light)"?/m); + meta.set(name, { + installs: installsMatch ? parseInt(installsMatch[1]) : 0, + rating: ratingMatch ? parseFloat(ratingMatch[1]) : 0, + ratings: ratingsMatch ? parseInt(ratingsMatch[1]) : 0, + mode: modeMatch ? modeMatch[1] : 'dark', + }); + } catch { + meta.set(name, { installs: 0, rating: 0, ratings: 0, mode: 'dark' }); + } + } + } + + // Apply sorts in order (first sort is primary, chained sorts break ties) + entries.sort((a, b) => { + for (const sort of sorts) { + let cmp = 0; + switch (sort) { + case 'name': + cmp = a[0].localeCompare(b[0]); + break; + case 'installs': + cmp = (meta.get(b[0])?.installs || 0) - (meta.get(a[0])?.installs || 0); + break; + case 'rating': + cmp = (meta.get(b[0])?.rating || 0) - (meta.get(a[0])?.rating || 0); + break; + case 'ratings': + cmp = (meta.get(b[0])?.ratings || 0) - (meta.get(a[0])?.ratings || 0); + break; + case 'mode': + cmp = (meta.get(a[0])?.mode || '').localeCompare(meta.get(b[0])?.mode || ''); + break; + } + if (cmp !== 0) return cmp; + } + return 0; + }); + + const limit = 100; + const shown = all ? entries : entries.slice(0, limit); + const sortLabel = sorts.join(', '); + + console.log(`\n ${total} themes available (sorted by ${sortLabel}):\n`); + for (const [name] of shown) { + const m = meta.get(name); + const parts: string[] = [name]; + if (m && needsMeta) { + const info: string[] = []; + if (sorts.includes('installs')) info.push(`${m.installs.toLocaleString()} installs`); + if (sorts.includes('rating')) info.push(`★ ${m.rating.toFixed(1)}`); + if (sorts.includes('ratings')) info.push(`${m.ratings} ratings`); + if (sorts.includes('mode')) info.push(`(${m.mode})`); + if (info.length) parts.push(`${dim}${info.join(' ')}${reset}`); + } + console.log(` ${parts.join(' ')}`); + } + + if (!all && total > limit) { + console.log(`\n ${dim}Showing ${limit} of ${total} themes. Use --all to see full list.${reset}`); } console.log(''); } @@ -389,7 +495,7 @@ export async function runTheme(argv: string[]): Promise { switch (args.command) { case 'list': - await listThemes(args.local); + await listThemes(args.local, args.all, args.sort); break; case 'show': diff --git a/scripts/scrape-themes.ts b/scripts/scrape-themes.ts index 9fef96b0..8a2501bb 100644 --- a/scripts/scrape-themes.ts +++ b/scripts/scrape-themes.ts @@ -9,7 +9,6 @@ import { mkdirSync, writeFileSync, existsSync, readFileSync } from 'node:fs'; import { join } from 'node:path'; -import { createHash } from 'node:crypto'; import { serializeThemeYAML, ANSI_KEYS, type ThemeYAML, type ThemeColors, type ThemeContrast } from '../cli/src/theme-schema'; import { computeApcaLc } from '../src/engine/ApcaEngine'; import { hexToOklch } from '../src/engine/OklchMathEngine'; @@ -20,7 +19,7 @@ const MARKETPLACE_URL = 'https://marketplace.visualstudio.com/_apis/public/galle const THEMES_DIR = join(import.meta.dir, '..', 'themes'); const PAGE_SIZE = 100; const DEFAULT_CONCURRENCY = 5; -const DELAY_BETWEEN_PAGES = 500; +const DELAY_BETWEEN_PAGES = 1500; // ── CLI args ── @@ -57,36 +56,48 @@ interface MarketplaceExtension { statistics: Array<{ statisticName: string; value: number }>; } -async function fetchPage(page: number): Promise<{ extensions: MarketplaceExtension[]; total: number }> { - const res = await fetch(MARKETPLACE_URL, { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - 'Accept': 'application/json;api-version=7.2-preview.1', - }, - body: JSON.stringify({ - filters: [{ - criteria: [ - { filterType: 8, value: 'Microsoft.VisualStudio.Code' }, - { filterType: 10, value: 'tag:"color-theme"' }, - ], - pageSize: PAGE_SIZE, - pageNumber: page, - sortBy: 12, // Install count - sortOrder: 0, - }], - flags: 914, - }), - }); - - if (!res.ok) { - throw new Error(`Marketplace API error: ${res.status} ${await res.text()}`); +async function fetchPage(page: number, retries = 5): Promise<{ extensions: MarketplaceExtension[]; total: number }> { + for (let attempt = 0; attempt <= retries; attempt++) { + const res = await fetch(MARKETPLACE_URL, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'Accept': 'application/json;api-version=7.2-preview.1', + }, + body: JSON.stringify({ + filters: [{ + criteria: [ + { filterType: 8, value: 'Microsoft.VisualStudio.Code' }, + { filterType: 10, value: 'tag:"color-theme"' }, + ], + pageSize: PAGE_SIZE, + pageNumber: page, + sortBy: 12, // Install count + sortOrder: 0, + }], + flags: 914, + }), + }); + + if (res.status === 429) { + const wait = Math.pow(2, attempt) * 2000; + console.log(` ⏳ Rate limited on page ${page}, retrying in ${wait / 1000}s... (attempt ${attempt + 1}/${retries})`); + await Bun.sleep(wait); + continue; + } + + if (!res.ok) { + throw new Error(`Marketplace API error: ${res.status} ${await res.text()}`); + } + + const data = await res.json(); + const result = data.results[0]; + const total = result.resultMetadata?.[0]?.metadataItems?.[0]?.count || 0; + return { extensions: result.extensions || [], total }; } - const data = await res.json(); - const result = data.results[0]; - const total = result.resultMetadata?.[0]?.metadataItems?.[0]?.count || 0; - return { extensions: result.extensions || [], total }; + console.log(` ⚠️ Skipping page ${page} after ${retries} retries`); + return { extensions: [], total: 0 }; } // ── VSIX download + extraction ── @@ -99,10 +110,19 @@ async function downloadAndExtractThemes(ext: MarketplaceExtension): Promise colors[k as keyof ThemeColors])]; - return createHash('md5').update(values.join(',')).digest('hex'); -} +// ── Filename ── function themeFilename(name: string): string { return name.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-|-$/g, '') + '.yaml'; @@ -351,11 +368,9 @@ async function main() { ? JSON.parse(readFileSync(indexPath, 'utf8')) : {}; - const seenFingerprints = new Set(); const index: Record = { ...existingIndex }; let totalProcessed = 0; let totalWritten = 0; - let totalSkipped = 0; let page = 1; // Phase 1: Paginate marketplace @@ -379,14 +394,6 @@ async function main() { for (const { name, colors, extension } of themes) { totalProcessed++; - // Deduplicate - const fp = colorFingerprint(colors); - if (seenFingerprints.has(fp)) { - totalSkipped++; - continue; - } - seenFingerprints.add(fp); - // Enrich + write const theme = enrichTheme(name, colors, extension); const filename = themeFilename(theme.name); @@ -424,8 +431,7 @@ async function main() { console.log(`\n\n📊 Done!`); console.log(` Processed: ${totalProcessed} theme files`); - console.log(` Written: ${totalWritten} unique themes`); - console.log(` Skipped: ${totalSkipped} duplicates`); + console.log(` Written: ${totalWritten} themes`); console.log(` Index: ${Object.keys(index).length} entries → themes/index.json`); } diff --git a/themes/.yaml b/themes/.yaml deleted file mode 100644 index ec9b706b..00000000 --- a/themes/.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "𝐂𝐚𝐥𝐜𝐢𝐮𝐦º❍。⊹・゚✧" -source: - marketplace_id: "Feefoolec.calcium" - version: "1.0.0" - installs: 80 - author: "Feefoolec" - repo: "https://github.com/FilipKajetaniak/calcium" - url: "https://marketplace.visualstudio.com/items?itemName=Feefoolec.calcium" -colors: - bg: "#191919" - fg: "#74D8FF" - black: "#000000" - red: "#FD207D" - green: "#1CD9BF" - yellow: "#FDA85D" - blue: "#667DFF" - magenta: "#C697FF" - cyan: "#5ED2FF" - white: "#EEC9FF" - brightBlack: "#3108A3" - brightRed: "#FF6396" - brightGreen: "#43FFDC" - brightYellow: "#FFD862" - brightBlue: "#97B6FF" - brightMagenta: "#FFA2CE" - brightCyan: "#76C2E0" - brightWhite: "#E0E0E0" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 74.4 - black: 0 - red: 38.1 - green: 68.9 - yellow: 64.8 - blue: 37.9 - magenta: 56.4 - cyan: 70.5 - white: 80.5 - brightBlack: 0 - brightRed: 47.4 - brightGreen: 89.9 - brightYellow: 84.1 - brightBlue: 62.2 - brightMagenta: 66.5 - brightCyan: 62.8 - brightWhite: 86.7 diff --git a/themes/07-dark.yaml b/themes/07-dark.yaml index 79825e8a..104ba582 100644 --- a/themes/07-dark.yaml +++ b/themes/07-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "07 Light" contrast: fg: 80.7 black: 25.2 diff --git a/themes/07-light.yaml b/themes/07-light.yaml index cdb5e4b8..59386a15 100644 --- a/themes/07-light.yaml +++ b/themes/07-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "07 Dark" contrast: fg: 65.8 black: 94.8 diff --git a/themes/0a515-dark.yaml b/themes/0a515-dark.yaml index 4030570e..48c89c95 100644 --- a/themes/0a515-dark.yaml +++ b/themes/0a515-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 105 + pair: null contrast: fg: 78.7 black: 7.8 diff --git a/themes/0x96f-theme.yaml b/themes/0x96f-theme.yaml index 27e3fdff..7090cbc1 100644 --- a/themes/0x96f-theme.yaml +++ b/themes/0x96f-theme.yaml @@ -2,7 +2,7 @@ name: "0x96f Theme" source: marketplace_id: "filipjane.0x96f-vscode-theme" version: "0.2.0" - installs: 622 + installs: 625 author: "Filip" repo: "https://github.com/filipjanevski/0x96f-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=filipjane.0x96f-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 103 black: 0 diff --git a/themes/1.yaml b/themes/1.yaml index 207229cf..7ee4f1cb 100644 --- a/themes/1.yaml +++ b/themes/1.yaml @@ -1,11 +1,11 @@ name: "1️⃣" source: - marketplace_id: "PhanTriVietHoang.think-in-react" - version: "1.0.0" - installs: 5 + marketplace_id: "PhanTriVietHoang.theme4anyone" + version: "1.0.3" + installs: 6 author: "PhanTriVietHoang" - repo: "https://github.com/phantriviethoang/think-in-react" - url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.think-in-react" + repo: "https://github.com/phantriviethoang/theme4anyone" + url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.theme4anyone" colors: bg: "#282C34" fg: "#ABB2BF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/10x-dark-theme.yaml b/themes/10x-dark-theme.yaml index ad7560e7..a19af184 100644 --- a/themes/10x-dark-theme.yaml +++ b/themes/10x-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 70.4 black: 0 diff --git a/themes/111-theme.yaml b/themes/111-theme.yaml deleted file mode 100644 index 4e612026..00000000 --- a/themes/111-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "111-theme" -source: - marketplace_id: "Rion.111-theme" - version: "1.0.2" - installs: 29 - author: "Rion" - repo: "https://github.com/ri0n-dev/111-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Rion.111-theme" -colors: - bg: "#111111" - fg: "#BABABA" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 64.7 - black: 0 - red: 27.2 - green: 53.5 - yellow: 86.1 - blue: 27.9 - magenta: 30.3 - cyan: 48.1 - white: 90.5 - brightBlack: 22.5 - brightRed: 39.1 - brightGreen: 64 - brightYellow: 96.1 - brightBlue: 40.5 - brightMagenta: 45.9 - brightCyan: 55.9 - brightWhite: 90.5 diff --git a/themes/1977.yaml b/themes/1977.yaml index b28b093e..bffbe0cd 100644 --- a/themes/1977.yaml +++ b/themes/1977.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 242 + pair: null contrast: fg: 106.9 black: 70.5 diff --git a/themes/1989.yaml b/themes/1989.yaml index df5c2d0b..ca886130 100644 --- a/themes/1989.yaml +++ b/themes/1989.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 102.8 black: 0 diff --git a/themes/19th-century.yaml b/themes/19th-century.yaml index 3c9af870..f5992cc5 100644 --- a/themes/19th-century.yaml +++ b/themes/19th-century.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 62.4 black: 0 diff --git a/themes/1dark-poncho-hc.yaml b/themes/1dark-poncho-hc.yaml index 09d0a610..72df74fa 100644 --- a/themes/1dark-poncho-hc.yaml +++ b/themes/1dark-poncho-hc.yaml @@ -2,7 +2,7 @@ name: "1Dark Poncho HC" source: marketplace_id: "ginfuru.ginfuru-onedark-raincoat-theme" version: "0.9.9" - installs: 24972 + installs: 24975 author: "Ed Heltzel" repo: "https://github.com/ginfuru/vscode-1dark-raincoat" url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.ginfuru-onedark-raincoat-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 106.7 black: 0 diff --git a/themes/1mm-dracula.yaml b/themes/1mm-dracula.yaml index 365047ef..780c1da5 100644 --- a/themes/1mm-dracula.yaml +++ b/themes/1mm-dracula.yaml @@ -2,7 +2,7 @@ name: "1mm - Dracula" source: marketplace_id: "joytrekker.1mm-themes" version: "0.0.1" - installs: 37030 + installs: 37036 author: "joytrekker" repo: "https://github.com/joytrekker/1mm-themes" url: "https://marketplace.visualstudio.com/items?itemName=joytrekker.1mm-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 278 + pair: null contrast: fg: 49.3 black: 12.9 diff --git a/themes/2-colors.yaml b/themes/2-colors.yaml index 40d78683..b9e17636 100644 --- a/themes/2-colors.yaml +++ b/themes/2-colors.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 46.7 black: 43.3 diff --git a/themes/2077.yaml b/themes/2077.yaml index 7c3609d5..cef4eca1 100644 --- a/themes/2077.yaml +++ b/themes/2077.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/24.yaml b/themes/24.yaml index 305cde6c..98740ecd 100644 --- a/themes/24.yaml +++ b/themes/24.yaml @@ -1,14 +1,14 @@ name: "24" source: - marketplace_id: "YesCode.shadesTheme" - version: "0.0.13" - installs: 3082 + marketplace_id: "YesCode.24" + version: "0.0.12" + installs: 79 author: "YesCode" - repo: "https://github.com/yesomac/ShadesThemeVSC" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.shadesTheme" + repo: "https://github.com/y3mm/24" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.24" colors: - bg: "#F9F7F3" - fg: "#03031F" + bg: "#000203" + fg: "#EEFFFF" black: "#1D2021" red: "#FB543F" green: "#95C085" @@ -19,31 +19,32 @@ colors: white: "#A89984" brightBlack: "#665C54" brightRed: "#FB543F" - brightGreen: "#3B3B3F" - brightYellow: "#FFCC80" - brightBlue: "#606066" + brightGreen: "#B99A4E" + brightYellow: "#E7F0FF" + brightBlue: "#0D6678" brightMagenta: "#8F4673" brightCyan: "#8BA59B" brightWhite: "#FDF4C1" meta: - mode: "light" + mode: "dark" accent: "orange" - hue: null + hue: 219 + pair: null contrast: - fg: 101.1 - black: 98.7 - red: 54 - green: 35.6 - yellow: 24.1 - blue: 48.6 - magenta: 76.6 - cyan: 46.7 - white: 48.9 - brightBlack: 77.6 - brightRed: 54 - brightGreen: 91.1 - brightYellow: 17.8 - brightBlue: 76.5 - brightMagenta: 76.6 - brightCyan: 46.7 - brightWhite: 0 + fg: 105.6 + black: 0 + red: 43 + green: 62 + yellow: 74.1 + blue: 48.5 + magenta: 20.5 + cyan: 50.5 + white: 48.2 + brightBlack: 19.6 + brightRed: 43 + brightGreen: 49.7 + brightYellow: 97.6 + brightBlue: 19.7 + brightMagenta: 20.5 + brightCyan: 50.5 + brightWhite: 99.9 diff --git a/themes/2am.yaml b/themes/2am.yaml index 92663654..4b0a82f8 100644 --- a/themes/2am.yaml +++ b/themes/2am.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 86 black: 11.2 diff --git a/themes/365-6-coder-theme.yaml b/themes/365-6-coder-theme.yaml index 4c42e55e..ce1dc7e0 100644 --- a/themes/365-6-coder-theme.yaml +++ b/themes/365-6-coder-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 228 + pair: null contrast: fg: 20.2 black: 0 diff --git a/themes/365-day-october-dark.yaml b/themes/365-day-october-dark.yaml index be5bbb9e..de4eb9f6 100644 --- a/themes/365-day-october-dark.yaml +++ b/themes/365-day-october-dark.yaml @@ -2,7 +2,7 @@ name: "365 Day october dark" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 85 black: 103.3 diff --git a/themes/3xay.yaml b/themes/3xay.yaml index 1c62a200..441f19ec 100644 --- a/themes/3xay.yaml +++ b/themes/3xay.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/4-colours.yaml b/themes/4-colours.yaml index b30d2e96..3d367f1f 100644 --- a/themes/4-colours.yaml +++ b/themes/4-colours.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 96.4 black: 0 diff --git a/themes/404-flat.yaml b/themes/404-flat.yaml index 56b61439..4d47c86b 100644 --- a/themes/404-flat.yaml +++ b/themes/404-flat.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 68.7 black: 0 diff --git a/themes/42nd.yaml b/themes/42nd.yaml index bf9d2670..8f97158f 100644 --- a/themes/42nd.yaml +++ b/themes/42nd.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 77.8 black: 0 diff --git a/themes/4am-session-aqua.yaml b/themes/4am-session-aqua.yaml index 0ed840db..4691637e 100644 --- a/themes/4am-session-aqua.yaml +++ b/themes/4am-session-aqua.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 225 + pair: null contrast: fg: 74.9 black: 0 diff --git a/themes/4am-session-blue.yaml b/themes/4am-session-blue.yaml index 523c8799..e1dbcf8a 100644 --- a/themes/4am-session-blue.yaml +++ b/themes/4am-session-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 273 + pair: null contrast: fg: 79 black: 0 diff --git a/themes/4am-session-green.yaml b/themes/4am-session-green.yaml index edc4f0d0..4dfb2420 100644 --- a/themes/4am-session-green.yaml +++ b/themes/4am-session-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 146 + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/4am-session-orange.yaml b/themes/4am-session-orange.yaml index e2987b7b..50ed732e 100644 --- a/themes/4am-session-orange.yaml +++ b/themes/4am-session-orange.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 70 + pair: null contrast: fg: 79.1 black: 0 diff --git a/themes/4am-session-red.yaml b/themes/4am-session-red.yaml index ef119413..f467df80 100644 --- a/themes/4am-session-red.yaml +++ b/themes/4am-session-red.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 20 + pair: null contrast: fg: 79.6 black: 0 diff --git a/themes/4am-session-yellow.yaml b/themes/4am-session-yellow.yaml index 97f5b04a..275ae30d 100644 --- a/themes/4am-session-yellow.yaml +++ b/themes/4am-session-yellow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 105 + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/6szn.yaml b/themes/6szn.yaml index da3064b1..bb417544 100644 --- a/themes/6szn.yaml +++ b/themes/6szn.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 61 black: 0 diff --git a/themes/7lou-theme.yaml b/themes/7lou-theme.yaml index 55b4c03f..55b5f4a9 100644 --- a/themes/7lou-theme.yaml +++ b/themes/7lou-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 255 + pair: null contrast: fg: 99.1 black: 0 diff --git a/themes/8-bit-dark.yaml b/themes/8-bit-dark.yaml index 64b3bc8c..76422f15 100644 --- a/themes/8-bit-dark.yaml +++ b/themes/8-bit-dark.yaml @@ -2,7 +2,7 @@ name: "8-Bit Dark" source: marketplace_id: "handsomeone.8bit" version: "0.2.3" - installs: 29597 + installs: 29600 author: "Zhou Qi" repo: "https://github.com/HandsomeOne/8bit" url: "https://marketplace.visualstudio.com/items?itemName=handsomeone.8bit" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "8-Bit Light" contrast: fg: 107.9 black: 0 diff --git a/themes/8-bit-light.yaml b/themes/8-bit-light.yaml index da78570c..c20af95d 100644 --- a/themes/8-bit-light.yaml +++ b/themes/8-bit-light.yaml @@ -2,7 +2,7 @@ name: "8-Bit Light" source: marketplace_id: "handsomeone.8bit" version: "0.2.3" - installs: 29597 + installs: 29600 author: "Zhou Qi" repo: "https://github.com/HandsomeOne/8bit" url: "https://marketplace.visualstudio.com/items?itemName=handsomeone.8bit" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "8-Bit Dark" contrast: fg: 106 black: 0 diff --git a/themes/8-bit-theme.yaml b/themes/8-bit-theme.yaml index f973c75f..f977645c 100644 --- a/themes/8-bit-theme.yaml +++ b/themes/8-bit-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/80-neon-vibes-fluor.yaml b/themes/80-neon-vibes-fluor.yaml index ea225aec..24b6b087 100644 --- a/themes/80-neon-vibes-fluor.yaml +++ b/themes/80-neon-vibes-fluor.yaml @@ -2,7 +2,7 @@ name: "'80 Neon Vibes - Fluor" source: marketplace_id: "caiqueex.neon-beat" version: "0.0.5" - installs: 1202 + installs: 1204 author: "Caique Lourenço" repo: "https://github.com/caiqueex/neon-beat-vscode" url: "https://marketplace.visualstudio.com/items?itemName=caiqueex.neon-beat" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 250 + pair: null contrast: fg: 84.8 black: 0 diff --git a/themes/80-neon-vibes.yaml b/themes/80-neon-vibes.yaml index 7f5d1aa8..d793c712 100644 --- a/themes/80-neon-vibes.yaml +++ b/themes/80-neon-vibes.yaml @@ -2,7 +2,7 @@ name: "'80 Neon Vibes" source: marketplace_id: "caiqueex.neon-beat" version: "0.0.5" - installs: 1202 + installs: 1204 author: "Caique Lourenço" repo: "https://github.com/caiqueex/neon-beat-vscode" url: "https://marketplace.visualstudio.com/items?itemName=caiqueex.neon-beat" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 250 + pair: null contrast: fg: 94.9 black: 0 diff --git a/themes/808s-heartbreak-theme.yaml b/themes/808s-heartbreak-theme.yaml index 7417eca9..22ee202a 100644 --- a/themes/808s-heartbreak-theme.yaml +++ b/themes/808s-heartbreak-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 55.4 black: 55.4 diff --git a/themes/8v.yaml b/themes/8v.yaml index fd71cf6d..6cf9a37f 100644 --- a/themes/8v.yaml +++ b/themes/8v.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 86 black: 0 diff --git a/themes/8x8-dark-fork.yaml b/themes/8x8-dark-fork.yaml index 945fad5b..2a4fc1a3 100644 --- a/themes/8x8-dark-fork.yaml +++ b/themes/8x8-dark-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 243 + pair: null contrast: fg: 100.1 black: 0 diff --git a/themes/8x8-darker.yaml b/themes/8x8-darker.yaml index 97ee5c69..3dc8371e 100644 --- a/themes/8x8-darker.yaml +++ b/themes/8x8-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 91.3 black: 84 diff --git a/themes/9-way-ticket.yaml b/themes/9-way-ticket.yaml index 5db4335a..9b8cc258 100644 --- a/themes/9-way-ticket.yaml +++ b/themes/9-way-ticket.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 68 + pair: null contrast: fg: 75.7 black: 52.1 diff --git a/themes/a-2-theme.yaml b/themes/a-2-theme.yaml index 81db38f5..026c7f96 100644 --- a/themes/a-2-theme.yaml +++ b/themes/a-2-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 64.8 black: 32 diff --git a/themes/a-cup-of-coffee.yaml b/themes/a-cup-of-coffee.yaml index fb6537ce..ab67a796 100644 --- a/themes/a-cup-of-coffee.yaml +++ b/themes/a-cup-of-coffee.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 65.6 black: 41.8 diff --git a/themes/a-github-dark-dimmed-1-red.yaml b/themes/a-github-dark-dimmed-1-red.yaml index 8a40ef5d..3fb77a4c 100644 --- a/themes/a-github-dark-dimmed-1-red.yaml +++ b/themes/a-github-dark-dimmed-1-red.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark Dimmed 1 🔴 Red" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 1 + pair: null contrast: fg: 60.3 black: 15.4 diff --git a/themes/a-github-dark-dimmed-2-orange.yaml b/themes/a-github-dark-dimmed-2-orange.yaml index ce92ea39..cfb61651 100644 --- a/themes/a-github-dark-dimmed-2-orange.yaml +++ b/themes/a-github-dark-dimmed-2-orange.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark Dimmed 2 🟠 Orange" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 78 + pair: null contrast: fg: 60.7 black: 15.5 diff --git a/themes/a-github-dark-dimmed-3-green.yaml b/themes/a-github-dark-dimmed-3-green.yaml index 007cd228..a57be47e 100644 --- a/themes/a-github-dark-dimmed-3-green.yaml +++ b/themes/a-github-dark-dimmed-3-green.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark Dimmed 3 🟢 Green" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 149 + pair: null contrast: fg: 61.6 black: 15.9 diff --git a/themes/a-github-dark-dimmed-4-blue.yaml b/themes/a-github-dark-dimmed-4-blue.yaml index f1b2703a..156ee6d7 100644 --- a/themes/a-github-dark-dimmed-4-blue.yaml +++ b/themes/a-github-dark-dimmed-4-blue.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark Dimmed 4 🔵 Blue" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 242 + pair: null contrast: fg: 61.3 black: 16 diff --git a/themes/a-github-dark-dimmed-5-purple.yaml b/themes/a-github-dark-dimmed-5-purple.yaml index 4171c1aa..45277f25 100644 --- a/themes/a-github-dark-dimmed-5-purple.yaml +++ b/themes/a-github-dark-dimmed-5-purple.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark Dimmed 5 🟣 Purple" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 299 + pair: null contrast: fg: 60.5 black: 15.4 diff --git a/themes/a-github-dark-dimmed-brown.yaml b/themes/a-github-dark-dimmed-brown.yaml index 58e925dd..0ae8edaa 100644 --- a/themes/a-github-dark-dimmed-brown.yaml +++ b/themes/a-github-dark-dimmed-brown.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark Dimmed 🟤 Brown" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 11 + pair: null contrast: fg: 26.9 black: 0 diff --git a/themes/a-github-dark-dimmed-muted.yaml b/themes/a-github-dark-dimmed-muted.yaml index 712a58db..87af81f6 100644 --- a/themes/a-github-dark-dimmed-muted.yaml +++ b/themes/a-github-dark-dimmed-muted.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark Dimmed 🩶 Muted" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 255 + pair: null contrast: fg: 67.6 black: 18.8 diff --git a/themes/a-github-dark-dimmed-vampire.yaml b/themes/a-github-dark-dimmed-vampire.yaml index 25863d7a..6aefc7ef 100644 --- a/themes/a-github-dark-dimmed-vampire.yaml +++ b/themes/a-github-dark-dimmed-vampire.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark Dimmed 🧛 Vampire" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 289 + pair: null contrast: fg: 36.3 black: 7.4 diff --git a/themes/a-github-dark-high-contrast-1-red.yaml b/themes/a-github-dark-high-contrast-1-red.yaml index 94d80e3d..3fded4f5 100644 --- a/themes/a-github-dark-high-contrast-1-red.yaml +++ b/themes/a-github-dark-high-contrast-1-red.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark High Contrast 1 🔴 Red" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 360 + pair: null contrast: fg: 104.3 black: 39.5 diff --git a/themes/a-github-dark-high-contrast-2-orange.yaml b/themes/a-github-dark-high-contrast-2-orange.yaml index 349e0ca7..e7ebafd1 100644 --- a/themes/a-github-dark-high-contrast-2-orange.yaml +++ b/themes/a-github-dark-high-contrast-2-orange.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark High Contrast 2 🟠 Orange" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 78 + pair: null contrast: fg: 106.3 black: 40.3 diff --git a/themes/a-github-dark-high-contrast-3-green.yaml b/themes/a-github-dark-high-contrast-3-green.yaml index 1563e3e0..8b5bc567 100644 --- a/themes/a-github-dark-high-contrast-3-green.yaml +++ b/themes/a-github-dark-high-contrast-3-green.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark High Contrast 3 🟢 Green" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 151 + pair: null contrast: fg: 105.3 black: 41.1 diff --git a/themes/a-github-dark-high-contrast-4-blue.yaml b/themes/a-github-dark-high-contrast-4-blue.yaml index 2a344406..b19eefb9 100644 --- a/themes/a-github-dark-high-contrast-4-blue.yaml +++ b/themes/a-github-dark-high-contrast-4-blue.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark High Contrast 4 🔵 Blue" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 239 + pair: null contrast: fg: 105.3 black: 40.6 diff --git a/themes/a-github-dark-high-contrast-5-purple.yaml b/themes/a-github-dark-high-contrast-5-purple.yaml index cf021283..e4bb2c82 100644 --- a/themes/a-github-dark-high-contrast-5-purple.yaml +++ b/themes/a-github-dark-high-contrast-5-purple.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark High Contrast 5 🟣 Purple" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 300 + pair: null contrast: fg: 106.1 black: 39.9 diff --git a/themes/a-github-dark-muted.yaml b/themes/a-github-dark-muted.yaml index 08eba621..fbc59e96 100644 --- a/themes/a-github-dark-muted.yaml +++ b/themes/a-github-dark-muted.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark 🩶 Muted" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 258 + pair: null contrast: fg: 86.6 black: 17.4 diff --git a/themes/a-github-dark-vampire.yaml b/themes/a-github-dark-vampire.yaml index 33db90f9..b331fe52 100644 --- a/themes/a-github-dark-vampire.yaml +++ b/themes/a-github-dark-vampire.yaml @@ -2,7 +2,7 @@ name: "A GitHub Dark 🧛 Vampire" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 290 + pair: null contrast: fg: 106.8 black: 21.6 diff --git a/themes/a-github-light-1-red.yaml b/themes/a-github-light-1-red.yaml index f2582e7f..a04a36ef 100644 --- a/themes/a-github-light-1-red.yaml +++ b/themes/a-github-light-1-red.yaml @@ -2,7 +2,7 @@ name: "A GitHub Light 1 🔴 Red" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 96.1 black: 96.1 diff --git a/themes/a-github-light-2-orange.yaml b/themes/a-github-light-2-orange.yaml index 7065ec36..8845665d 100644 --- a/themes/a-github-light-2-orange.yaml +++ b/themes/a-github-light-2-orange.yaml @@ -2,7 +2,7 @@ name: "A GitHub Light 2 🟠 Orange" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 95.9 black: 95.9 diff --git a/themes/a-github-light-3-green.yaml b/themes/a-github-light-3-green.yaml index 5ed84de5..3f24c5b6 100644 --- a/themes/a-github-light-3-green.yaml +++ b/themes/a-github-light-3-green.yaml @@ -2,7 +2,7 @@ name: "A GitHub Light 3 🟢 Green" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 95.7 black: 95.7 diff --git a/themes/a-github-light-4-blue.yaml b/themes/a-github-light-4-blue.yaml index c0f9c2c4..32fe924b 100644 --- a/themes/a-github-light-4-blue.yaml +++ b/themes/a-github-light-4-blue.yaml @@ -2,7 +2,7 @@ name: "A GitHub Light 4 🔵 Blue" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 95.8 black: 95.8 diff --git a/themes/a-github-light-5-purple.yaml b/themes/a-github-light-5-purple.yaml index afafd075..f8c120e6 100644 --- a/themes/a-github-light-5-purple.yaml +++ b/themes/a-github-light-5-purple.yaml @@ -2,7 +2,7 @@ name: "A GitHub Light 5 🟣 Purple" source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" - installs: 889 + installs: 893 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 96.1 black: 96.1 diff --git a/themes/a-green-cat-dimmed.yaml b/themes/a-green-cat-dimmed.yaml index a07b29da..cad036eb 100644 --- a/themes/a-green-cat-dimmed.yaml +++ b/themes/a-green-cat-dimmed.yaml @@ -2,7 +2,7 @@ name: "a_green_cat dimmed" source: marketplace_id: "agreencat.a-green-cat-theme" version: "1.0.3" - installs: 368 + installs: 369 author: "a_green_cat" repo: "https://github.com/KiraGreifeneder/a-green-cat-theme" url: "https://marketplace.visualstudio.com/items?itemName=agreencat.a-green-cat-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 76.7 black: 0 diff --git a/themes/a-green-cat-v2.yaml b/themes/a-green-cat-v2.yaml deleted file mode 100644 index fa2ea34a..00000000 --- a/themes/a-green-cat-v2.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "a_green_cat v2" -source: - marketplace_id: "agreencat.a-green-cat-theme" - version: "1.0.3" - installs: 368 - author: "a_green_cat" - repo: "https://github.com/KiraGreifeneder/a-green-cat-theme" - url: "https://marketplace.visualstudio.com/items?itemName=agreencat.a-green-cat-theme" -colors: - bg: "#101010" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 80.1 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28 - magenta: 30.3 - cyan: 48.1 - white: 90.6 - brightBlack: 22.6 - brightRed: 39.1 - brightGreen: 64.1 - brightYellow: 96.2 - brightBlue: 40.6 - brightMagenta: 45.9 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/aauu.yaml b/themes/aauu.yaml index c331e7ee..b92eb5e8 100644 --- a/themes/aauu.yaml +++ b/themes/aauu.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.1 black: 0 diff --git a/themes/ab-dark.yaml b/themes/ab-dark.yaml index f28c1602..0230090d 100644 --- a/themes/ab-dark.yaml +++ b/themes/ab-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 94.5 black: 0 diff --git a/themes/abcdef.yaml b/themes/abcdef.yaml index a734d2b4..b49004e4 100644 --- a/themes/abcdef.yaml +++ b/themes/abcdef.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 49.5 black: 0 diff --git a/themes/abe-land.yaml b/themes/abe-land.yaml index 76aac253..43abd68d 100644 --- a/themes/abe-land.yaml +++ b/themes/abe-land.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 103.2 black: 0 diff --git a/themes/abissal.yaml b/themes/abissal.yaml index 73d77ade..38219cb3 100644 --- a/themes/abissal.yaml +++ b/themes/abissal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 278 + pair: null contrast: fg: 98.5 black: 0 diff --git a/themes/aboc.yaml b/themes/aboc.yaml index bb6765f6..db7c2fd8 100644 --- a/themes/aboc.yaml +++ b/themes/aboc.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.5 black: 17.3 diff --git a/themes/abolkog-dark.yaml b/themes/abolkog-dark.yaml index 4479ef57..eb1b4409 100644 --- a/themes/abolkog-dark.yaml +++ b/themes/abolkog-dark.yaml @@ -2,7 +2,7 @@ name: "ABOLKOG Dark" source: marketplace_id: "abolkog.vscode-abolkog-light" version: "1.1.0" - installs: 2729 + installs: 2730 author: "Khalid Elshafie" repo: "https://github.com/abolkog/vscode-abolkog-theme" url: "https://marketplace.visualstudio.com/items?itemName=abolkog.vscode-abolkog-light" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: "ABOLKOG Light" contrast: fg: 82.2 black: 0 diff --git a/themes/abolkog-light.yaml b/themes/abolkog-light.yaml index 9ae48227..6f75866c 100644 --- a/themes/abolkog-light.yaml +++ b/themes/abolkog-light.yaml @@ -2,7 +2,7 @@ name: "ABOLKOG Light" source: marketplace_id: "abolkog.vscode-abolkog-light" version: "1.1.0" - installs: 2729 + installs: 2730 author: "Khalid Elshafie" repo: "https://github.com/abolkog/vscode-abolkog-theme" url: "https://marketplace.visualstudio.com/items?itemName=abolkog.vscode-abolkog-light" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "ABOLKOG Dark" contrast: fg: 101.5 black: 93.4 diff --git a/themes/absent-contrast.yaml b/themes/absent-contrast.yaml index be385743..fe2c3b17 100644 --- a/themes/absent-contrast.yaml +++ b/themes/absent-contrast.yaml @@ -1,11 +1,11 @@ name: "absent-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0E1114" fg: "#AEB9C4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 63.3 black: 0 diff --git a/themes/absent-light.yaml b/themes/absent-light.yaml index 398b54dd..bfe86a6b 100644 --- a/themes/absent-light.yaml +++ b/themes/absent-light.yaml @@ -1,11 +1,11 @@ name: "absent-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#465360" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/absent.yaml b/themes/absent.yaml index 91213d9e..e4abf7b0 100644 --- a/themes/absent.yaml +++ b/themes/absent.yaml @@ -1,11 +1,11 @@ name: "absent" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#252C33" fg: "#AEB9C4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 248 + pair: null contrast: fg: 59.7 black: 0 diff --git a/themes/abstract-mh.yaml b/themes/abstract-mh.yaml index 7f1081dd..63c916cd 100644 --- a/themes/abstract-mh.yaml +++ b/themes/abstract-mh.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 83 black: 0 diff --git a/themes/abyskai.yaml b/themes/abyskai.yaml index 160c1715..ee752e9d 100644 --- a/themes/abyskai.yaml +++ b/themes/abyskai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 283 + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/abyss.yaml b/themes/abyss.yaml index 99b3da07..114d9e30 100644 --- a/themes/abyss.yaml +++ b/themes/abyss.yaml @@ -1,17 +1,17 @@ name: "Abyss" source: - marketplace_id: "filip-bydalek.abyss-tweaked" - version: "0.2.2" - installs: 261 - author: "Filip Bydałek" - repo: "https://github.com/AGameDevPhilip/abyss-tweaked" - url: "https://marketplace.visualstudio.com/items?itemName=filip-bydalek.abyss-tweaked" + marketplace_id: "tommy-tang.custom-abyss-theme" + version: "0.0.1" + installs: 68 + author: "Tommytang111" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tommy-tang.custom-abyss-theme" colors: bg: "#000C18" fg: "#6688CC" black: "#111111" red: "#FF9DA4" - green: "#D1F1A9" + green: "#B4FF82" yellow: "#FFEEAD" blue: "#BBDAFF" magenta: "#EBBBFF" @@ -19,7 +19,7 @@ colors: white: "#CCCCCC" brightBlack: "#333333" brightRed: "#FF7882" - brightGreen: "#B8F171" + brightGreen: "#77F171" brightYellow: "#FFE580" brightBlue: "#80BAFF" brightMagenta: "#D778FF" @@ -29,11 +29,12 @@ meta: mode: "dark" accent: "magenta" hue: 242 + pair: null contrast: fg: 38.7 black: 0 red: 64.2 - green: 91.6 + green: 94.6 yellow: 96.5 blue: 82.1 magenta: 75.5 @@ -41,7 +42,7 @@ meta: white: 75.4 brightBlack: 0 brightRed: 52.5 - brightGreen: 87.6 + brightGreen: 82.5 brightYellow: 91.3 brightBlue: 63 brightMagenta: 51 diff --git a/themes/acario.yaml b/themes/acario.yaml index 4bbb426c..ebcaf448 100644 --- a/themes/acario.yaml +++ b/themes/acario.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 276 + pair: null contrast: fg: 82.8 black: 0 diff --git a/themes/acekaizen-calmly-dark.yaml b/themes/acekaizen-calmly-dark.yaml deleted file mode 100644 index 29018c38..00000000 --- a/themes/acekaizen-calmly-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "AceKaizen Calmly Dark" -source: - marketplace_id: "AryanKashyap.theme-acekaizen-code" - version: "1.1.1" - installs: 455 - author: "Aryan Kashyap" - repo: "https://github.com/aryankashyap7/AceKaizen-Code-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=AryanKashyap.theme-acekaizen-code" -colors: - bg: "#141414" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#B8B8B8" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFF9F9" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 107.1 - black: 0 - red: 27 - green: 53.3 - yellow: 85.9 - blue: 27.7 - magenta: 30 - cyan: 47.8 - white: 63.3 - brightBlack: 22.3 - brightRed: 38.8 - brightGreen: 63.8 - brightYellow: 95.9 - brightBlue: 40.3 - brightMagenta: 45.6 - brightCyan: 55.7 - brightWhite: 104 diff --git a/themes/acequartz.yaml b/themes/acequartz.yaml index edf5df83..b7186ebc 100644 --- a/themes/acequartz.yaml +++ b/themes/acequartz.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 330 + pair: null contrast: fg: 63 black: 0 diff --git a/themes/aclear-dark.yaml b/themes/aclear-dark.yaml index 76b284d0..980247a9 100644 --- a/themes/aclear-dark.yaml +++ b/themes/aclear-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 265 + pair: null contrast: fg: 56.6 black: 0 diff --git a/themes/acme.yaml b/themes/acme.yaml index d8b8d528..f9ab272d 100644 --- a/themes/acme.yaml +++ b/themes/acme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 105.2 black: 105.2 diff --git a/themes/aconitum-clean.yaml b/themes/aconitum-clean.yaml deleted file mode 100644 index 439ed5ba..00000000 --- a/themes/aconitum-clean.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Aconitum - Clean" -source: - marketplace_id: "ArturGuedx.Aconitum" - version: "0.0.2" - installs: 173 - author: "ArturGuedx" - repo: "https://github.com/ArturGuedes/Aconitum" - url: "https://marketplace.visualstudio.com/items?itemName=ArturGuedx.Aconitum" -colors: - bg: "#212121" - fg: "#707E8A" - black: "#000000" - red: "#FF8B92" - green: "#9EE1BF" - yellow: "#FFC475" - blue: "#5B3CBE" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#ABBECF" - brightBlack: "#666666" - brightRed: "#FF525C" - brightGreen: "#66FFB1" - brightYellow: "#FFAD3F" - brightBlue: "#6D7DFE" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 30.7 - black: 0 - red: 56 - green: 77.5 - yellow: 75 - blue: 14.6 - magenta: 28.5 - cyan: 46.3 - white: 63.8 - brightBlack: 20.8 - brightRed: 41.8 - brightGreen: 88.5 - brightYellow: 65.5 - brightBlue: 37.2 - brightMagenta: 44.1 - brightCyan: 54.1 - brightWhite: 88.8 diff --git a/themes/acs-cozy-dark.yaml b/themes/acs-cozy-dark.yaml index b43e2ab4..b7d2063f 100644 --- a/themes/acs-cozy-dark.yaml +++ b/themes/acs-cozy-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/adapt-dark.yaml b/themes/adapt-dark.yaml index dbdbf57b..f621cf51 100644 --- a/themes/adapt-dark.yaml +++ b/themes/adapt-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 92.7 black: 0 diff --git a/themes/adark.yaml b/themes/adark.yaml index 463dd356..15070db0 100644 --- a/themes/adark.yaml +++ b/themes/adark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 49.4 black: 0 diff --git a/themes/adech-theme-legacy.yaml b/themes/adech-theme-legacy.yaml index 5e25227b..31414d5a 100644 --- a/themes/adech-theme-legacy.yaml +++ b/themes/adech-theme-legacy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 263 + pair: null contrast: fg: 74.6 black: 0 diff --git a/themes/adech-theme-superior.yaml b/themes/adech-theme-superior.yaml index 65a5550f..303a719d 100644 --- a/themes/adech-theme-superior.yaml +++ b/themes/adech-theme-superior.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 264 + pair: null contrast: fg: 65.6 black: 0 diff --git a/themes/adey-coder-deep-dark.yaml b/themes/adey-coder-deep-dark.yaml index 0d4b6a67..72c9bc26 100644 --- a/themes/adey-coder-deep-dark.yaml +++ b/themes/adey-coder-deep-dark.yaml @@ -2,7 +2,7 @@ name: "Adey Coder - Deep dark" source: marketplace_id: "AdeyCoder.adey-coder-dark" version: "1.0.3" - installs: 1786 + installs: 1787 author: "Adey Coder" repo: "https://github.com/yohanstesfaye/adey-coder-dark" url: "https://marketplace.visualstudio.com/items?itemName=AdeyCoder.adey-coder-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 145 + pair: null contrast: fg: 107.2 black: 0 diff --git a/themes/adey-coder.yaml b/themes/adey-coder.yaml index 4cc16fc6..0578d245 100644 --- a/themes/adey-coder.yaml +++ b/themes/adey-coder.yaml @@ -2,7 +2,7 @@ name: "Adey Coder" source: marketplace_id: "AdeyCoder.adey-coder-dark" version: "1.0.3" - installs: 1786 + installs: 1787 author: "Adey Coder" repo: "https://github.com/yohanstesfaye/adey-coder-dark" url: "https://marketplace.visualstudio.com/items?itemName=AdeyCoder.adey-coder-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 144 + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/adonis.yaml b/themes/adonis.yaml index 4d85bb61..4befaf80 100644 --- a/themes/adonis.yaml +++ b/themes/adonis.yaml @@ -1,8 +1,8 @@ -name: "Adonis" +name: "Adonis+" source: marketplace_id: "saeed-nazari.adonis-theme" version: "5.1.0" - installs: 17277 + installs: 17283 author: "Saeed Nazari" repo: "https://github.com/saeed-nazari/vsc-theme-adonis" url: "https://marketplace.visualstudio.com/items?itemName=saeed-nazari.adonis-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 261 + pair: null contrast: fg: 71.9 black: 0 diff --git a/themes/adrift.yaml b/themes/adrift.yaml index 0a0f4f13..e99e84a3 100644 --- a/themes/adrift.yaml +++ b/themes/adrift.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 222 + pair: null contrast: fg: 81.4 black: 0 diff --git a/themes/advancedbat.yaml b/themes/advancedbat.yaml index 2831288c..19007382 100644 --- a/themes/advancedbat.yaml +++ b/themes/advancedbat.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 58.1 black: 58.1 diff --git a/themes/aelmouny11-theme.yaml b/themes/aelmouny11-theme.yaml index 2ceafd4d..f92a8bce 100644 --- a/themes/aelmouny11-theme.yaml +++ b/themes/aelmouny11-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 106.2 black: 0 diff --git a/themes/aeridia.yaml b/themes/aeridia.yaml index 2f5478e0..d554182b 100644 --- a/themes/aeridia.yaml +++ b/themes/aeridia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77.5 black: 0 diff --git a/themes/aesir-theme.yaml b/themes/aesir-theme.yaml index 44511b82..6054f8ba 100644 --- a/themes/aesir-theme.yaml +++ b/themes/aesir-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 78.1 black: 0 diff --git a/themes/aesthetic-dark.yaml b/themes/aesthetic-dark.yaml index b15a17a5..914b3278 100644 --- a/themes/aesthetic-dark.yaml +++ b/themes/aesthetic-dark.yaml @@ -2,7 +2,7 @@ name: "Aesthetic Dark" source: marketplace_id: "manojjoshi.aesthetic" version: "3.0.0" - installs: 8071 + installs: 8072 author: "manoj joshi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=manojjoshi.aesthetic" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 106.6 black: 0 diff --git a/themes/aesthetic.yaml b/themes/aesthetic.yaml index 8195fd1a..65976020 100644 --- a/themes/aesthetic.yaml +++ b/themes/aesthetic.yaml @@ -2,7 +2,7 @@ name: "Aesthetic" source: marketplace_id: "sophtli.cute-aesthetic" version: "1.1.4" - installs: 4504 + installs: 4505 author: "Sophtli" repo: "https://github.com/Sophtli/cute-aesthetic" url: "https://marketplace.visualstudio.com/items?itemName=sophtli.cute-aesthetic" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 98.7 black: 106 diff --git a/themes/aether-abyss.yaml b/themes/aether-abyss.yaml index 929dc6bf..7f0f857d 100644 --- a/themes/aether-abyss.yaml +++ b/themes/aether-abyss.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 246 + pair: null contrast: fg: 81.6 black: 0 diff --git a/themes/aether-abyssal.yaml b/themes/aether-abyssal.yaml index 13f471ff..137323a5 100644 --- a/themes/aether-abyssal.yaml +++ b/themes/aether-abyssal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 213 + pair: null contrast: fg: 66.7 black: 7.8 diff --git a/themes/aether-arctic.yaml b/themes/aether-arctic.yaml index 9b376a50..585938eb 100644 --- a/themes/aether-arctic.yaml +++ b/themes/aether-arctic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 244 + pair: null contrast: fg: 96.9 black: 0 diff --git a/themes/aether-atlantis.yaml b/themes/aether-atlantis.yaml index 9b39abf5..99c6efb4 100644 --- a/themes/aether-atlantis.yaml +++ b/themes/aether-atlantis.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 214 + pair: null contrast: fg: 81.8 black: 0 diff --git a/themes/aether-aurora.yaml b/themes/aether-aurora.yaml index 579a8cf9..6c1df688 100644 --- a/themes/aether-aurora.yaml +++ b/themes/aether-aurora.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: null contrast: fg: 97.2 black: 0 diff --git a/themes/aether-borealis.yaml b/themes/aether-borealis.yaml index 3f45d06d..87257f5c 100644 --- a/themes/aether-borealis.yaml +++ b/themes/aether-borealis.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/aether-carbon.yaml b/themes/aether-carbon.yaml index a8db9766..686e3d21 100644 --- a/themes/aether-carbon.yaml +++ b/themes/aether-carbon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/aether-clarity.yaml b/themes/aether-clarity.yaml index 3eb90821..dc7f906c 100644 --- a/themes/aether-clarity.yaml +++ b/themes/aether-clarity.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 102.8 black: 101.5 diff --git a/themes/aether-coffee-dark.yaml b/themes/aether-coffee-dark.yaml index 285a1893..803c42ad 100644 --- a/themes/aether-coffee-dark.yaml +++ b/themes/aether-coffee-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 76.4 black: 0 diff --git a/themes/aether-coffee.yaml b/themes/aether-coffee.yaml index 24c48a3e..2a4d8ec5 100644 --- a/themes/aether-coffee.yaml +++ b/themes/aether-coffee.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 75 + pair: null contrast: fg: 87.1 black: 0 diff --git a/themes/aether-cosmos.yaml b/themes/aether-cosmos.yaml index b9bdebc1..ed9f3d02 100644 --- a/themes/aether-cosmos.yaml +++ b/themes/aether-cosmos.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 273 + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/aether-dark-space.yaml b/themes/aether-dark-space.yaml index eed16226..e039afc5 100644 --- a/themes/aether-dark-space.yaml +++ b/themes/aether-dark-space.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 305 + pair: null contrast: fg: 88.7 black: 0 diff --git a/themes/aether-dark.yaml b/themes/aether-dark.yaml index e006da30..c53ce9c5 100644 --- a/themes/aether-dark.yaml +++ b/themes/aether-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Aether Light" contrast: fg: 92.1 black: 0 diff --git a/themes/aether-dawn.yaml b/themes/aether-dawn.yaml index a8007339..c77f12d2 100644 --- a/themes/aether-dawn.yaml +++ b/themes/aether-dawn.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Aether Midnight" contrast: fg: 92.4 black: 92.4 diff --git a/themes/aether-deep-ocean.yaml b/themes/aether-deep-ocean.yaml index 82cdff13..6672361b 100644 --- a/themes/aether-deep-ocean.yaml +++ b/themes/aether-deep-ocean.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 258 + pair: null contrast: fg: 85.8 black: 0 diff --git a/themes/aether-depths.yaml b/themes/aether-depths.yaml index 24a78f0e..bef48c05 100644 --- a/themes/aether-depths.yaml +++ b/themes/aether-depths.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 207 + pair: null contrast: fg: 68.8 black: 0 diff --git a/themes/aether-dusk.yaml b/themes/aether-dusk.yaml index 44e19357..d30a859d 100644 --- a/themes/aether-dusk.yaml +++ b/themes/aether-dusk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 310 + pair: null contrast: fg: 86.4 black: 0 diff --git a/themes/aether-emerald.yaml b/themes/aether-emerald.yaml index c45076d8..2e744896 100644 --- a/themes/aether-emerald.yaml +++ b/themes/aether-emerald.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 173 + pair: null contrast: fg: 91.9 black: 0 diff --git a/themes/aether-forest.yaml b/themes/aether-forest.yaml index 02fcfb32..d3187d92 100644 --- a/themes/aether-forest.yaml +++ b/themes/aether-forest.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 96.3 black: 0 diff --git a/themes/aether-glass.yaml b/themes/aether-glass.yaml index 6519a6df..36d04cdc 100644 --- a/themes/aether-glass.yaml +++ b/themes/aether-glass.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 97.5 black: 0 diff --git a/themes/aether-light.yaml b/themes/aether-light.yaml index b8189d51..18e609a9 100644 --- a/themes/aether-light.yaml +++ b/themes/aether-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Aether Dark" contrast: fg: 88.7 black: 93.4 diff --git a/themes/aether-mariana.yaml b/themes/aether-mariana.yaml index e3096816..0d3dcc30 100644 --- a/themes/aether-mariana.yaml +++ b/themes/aether-mariana.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 208 + pair: null contrast: fg: 68.7 black: 10.5 diff --git a/themes/aether-matrix.yaml b/themes/aether-matrix.yaml index f9ab37c0..45452f7a 100644 --- a/themes/aether-matrix.yaml +++ b/themes/aether-matrix.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 145 + pair: null contrast: fg: 95.2 black: 0 diff --git a/themes/aether-midnight.yaml b/themes/aether-midnight.yaml index 0cb131f9..52bbeee1 100644 --- a/themes/aether-midnight.yaml +++ b/themes/aether-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Aether Dawn" contrast: fg: 87.9 black: 0 diff --git a/themes/aether-nautilus.yaml b/themes/aether-nautilus.yaml index aa48b797..942499b4 100644 --- a/themes/aether-nautilus.yaml +++ b/themes/aether-nautilus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 209 + pair: null contrast: fg: 71.9 black: 9.4 diff --git a/themes/aether-nebula.yaml b/themes/aether-nebula.yaml index 8d22ae02..edb15984 100644 --- a/themes/aether-nebula.yaml +++ b/themes/aether-nebula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 297 + pair: null contrast: fg: 85 black: 0 diff --git a/themes/aether-neon.yaml b/themes/aether-neon.yaml index c1829408..e4c67eb3 100644 --- a/themes/aether-neon.yaml +++ b/themes/aether-neon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 171 + pair: null contrast: fg: 86.9 black: 0 diff --git a/themes/aether-neptune.yaml b/themes/aether-neptune.yaml index 1bef9f8c..e045df8c 100644 --- a/themes/aether-neptune.yaml +++ b/themes/aether-neptune.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 218 + pair: null contrast: fg: 77.2 black: 0 diff --git a/themes/aether-oceanic.yaml b/themes/aether-oceanic.yaml index ab333243..976cf84e 100644 --- a/themes/aether-oceanic.yaml +++ b/themes/aether-oceanic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 210 + pair: null contrast: fg: 74.2 black: 9.7 diff --git a/themes/aether-quantum.yaml b/themes/aether-quantum.yaml index 9c76c0bd..2ac98b52 100644 --- a/themes/aether-quantum.yaml +++ b/themes/aether-quantum.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 268 + pair: null contrast: fg: 92.3 black: 0 diff --git a/themes/aether-reef.yaml b/themes/aether-reef.yaml index d2499af0..ed86495b 100644 --- a/themes/aether-reef.yaml +++ b/themes/aether-reef.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 209 + pair: null contrast: fg: 69.8 black: 11.6 diff --git a/themes/aether-stellar.yaml b/themes/aether-stellar.yaml index ac3e73c6..6395a557 100644 --- a/themes/aether-stellar.yaml +++ b/themes/aether-stellar.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 258 + pair: null contrast: fg: 86.4 black: 0 diff --git a/themes/aether-tempest.yaml b/themes/aether-tempest.yaml index 94d79a86..64c2d54c 100644 --- a/themes/aether-tempest.yaml +++ b/themes/aether-tempest.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 251 + pair: null contrast: fg: 90.1 black: 0 diff --git a/themes/aether-tidal.yaml b/themes/aether-tidal.yaml index b6f69f27..48a26650 100644 --- a/themes/aether-tidal.yaml +++ b/themes/aether-tidal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 221 + pair: null contrast: fg: 77.8 black: 10.2 diff --git a/themes/aether-trench-contrast.yaml b/themes/aether-trench-contrast.yaml index e412e46a..71230db6 100644 --- a/themes/aether-trench-contrast.yaml +++ b/themes/aether-trench-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 86 black: 13.6 diff --git a/themes/aether-twilight.yaml b/themes/aether-twilight.yaml index 929c9d1a..665e03f3 100644 --- a/themes/aether-twilight.yaml +++ b/themes/aether-twilight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 80 black: 9.3 diff --git a/themes/aether-void.yaml b/themes/aether-void.yaml index 5a9d2907..31bb25ea 100644 --- a/themes/aether-void.yaml +++ b/themes/aether-void.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 268 + pair: null contrast: fg: 75.7 black: 0 diff --git a/themes/aether-zen.yaml b/themes/aether-zen.yaml index af06cc69..41215849 100644 --- a/themes/aether-zen.yaml +++ b/themes/aether-zen.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 93.2 black: 93.2 diff --git a/themes/aether.yaml b/themes/aether.yaml index 947cf087..d4077086 100644 --- a/themes/aether.yaml +++ b/themes/aether.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 284 + pair: null contrast: fg: 107 black: 0 diff --git a/themes/aetherglow.yaml b/themes/aetherglow.yaml index 6f5644dd..06a7edf2 100644 --- a/themes/aetherglow.yaml +++ b/themes/aetherglow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 248 + pair: null contrast: fg: 91.5 black: 91.1 diff --git a/themes/afternoon-delight-subtle.yaml b/themes/afternoon-delight-subtle.yaml index b8c599ad..11c999a8 100644 --- a/themes/afternoon-delight-subtle.yaml +++ b/themes/afternoon-delight-subtle.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 82 black: 0 diff --git a/themes/afterpurple.yaml b/themes/afterpurple.yaml index a08453a6..cc95ed29 100644 --- a/themes/afterpurple.yaml +++ b/themes/afterpurple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 305 + pair: null contrast: fg: 73.5 black: 0 diff --git a/themes/agathist-dark.yaml b/themes/agathist-dark.yaml index 3e422a25..958fd102 100644 --- a/themes/agathist-dark.yaml +++ b/themes/agathist-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 266 + pair: null contrast: fg: 91.4 black: 0 diff --git a/themes/agen-theme.yaml b/themes/agen-theme.yaml index 44b51691..db0dbbb2 100644 --- a/themes/agen-theme.yaml +++ b/themes/agen-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 96 black: 0 diff --git a/themes/ahoy-theme.yaml b/themes/ahoy-theme.yaml index 3d36effa..a0301c60 100644 --- a/themes/ahoy-theme.yaml +++ b/themes/ahoy-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 93.9 black: 0 diff --git a/themes/ahroun.yaml b/themes/ahroun.yaml index 69e0753e..1a558aac 100644 --- a/themes/ahroun.yaml +++ b/themes/ahroun.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 101.6 black: 0 diff --git a/themes/aka-kuro-light.yaml b/themes/aka-kuro-light.yaml index 35a284e0..a39d1f21 100644 --- a/themes/aka-kuro-light.yaml +++ b/themes/aka-kuro-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 97 black: 97 diff --git a/themes/akagami-dark.yaml b/themes/akagami-dark.yaml index 709950d7..8a87fe8c 100644 --- a/themes/akagami-dark.yaml +++ b/themes/akagami-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Akagami Light" contrast: fg: 81.7 black: 0 diff --git a/themes/akagami-light.yaml b/themes/akagami-light.yaml index 80425854..da0a498a 100644 --- a/themes/akagami-light.yaml +++ b/themes/akagami-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "Akagami Dark" contrast: fg: 96.5 black: 105.3 diff --git a/themes/akari-dawn.yaml b/themes/akari-dawn.yaml index 1cf91c35..28ff48c8 100644 --- a/themes/akari-dawn.yaml +++ b/themes/akari-dawn.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: 75 + pair: "Akari Night" contrast: fg: 85.6 black: 85.6 diff --git a/themes/akari-night.yaml b/themes/akari-night.yaml index c5c1f72c..9a6e0ecd 100644 --- a/themes/akari-night.yaml +++ b/themes/akari-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Akari Dawn" contrast: fg: 84.6 black: 0 diff --git a/themes/akihabara.yaml b/themes/akihabara.yaml index 01b0c389..05ba7f5b 100644 --- a/themes/akihabara.yaml +++ b/themes/akihabara.yaml @@ -2,7 +2,7 @@ name: "Akihabara" source: marketplace_id: "justin-lavi.akihabara" version: "4.8.8" - installs: 1295 + installs: 1296 author: "Justin Lavi" repo: "https://github.com/justinlavi/Akihabara" url: "https://marketplace.visualstudio.com/items?itemName=justin-lavi.akihabara" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 296 + pair: null contrast: fg: 69.5 black: 0 diff --git a/themes/aksin.yaml b/themes/aksin.yaml index 7dc8246a..686a25a1 100644 --- a/themes/aksin.yaml +++ b/themes/aksin.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 40.3 black: 0 diff --git a/themes/akumanomi-theme.yaml b/themes/akumanomi-theme.yaml index e4c16953..ee86a473 100644 --- a/themes/akumanomi-theme.yaml +++ b/themes/akumanomi-theme.yaml @@ -2,7 +2,7 @@ name: "Akumanomi Theme" source: marketplace_id: "IngridLiana.akumanomi-theme" version: "0.1.4" - installs: 2721 + installs: 2726 author: "Ingrid Liana" repo: null url: "https://marketplace.visualstudio.com/items?itemName=IngridLiana.akumanomi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 82.3 black: 0 diff --git a/themes/akurdor.yaml b/themes/akurdor.yaml index fc020908..0015b49b 100644 --- a/themes/akurdor.yaml +++ b/themes/akurdor.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 66.1 black: 0 diff --git a/themes/alabaster-dark.yaml b/themes/alabaster-dark.yaml index e8f6230d..3f9ccf9b 100644 --- a/themes/alabaster-dark.yaml +++ b/themes/alabaster-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 258 + pair: null contrast: fg: 57.5 black: 0 diff --git a/themes/alchemist-s-orchid-dark.yaml b/themes/alchemist-s-orchid-dark.yaml index 503a17d9..ac13e7de 100644 --- a/themes/alchemist-s-orchid-dark.yaml +++ b/themes/alchemist-s-orchid-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: "Alchemist's Orchid Light" contrast: fg: 87.3 black: 0 diff --git a/themes/alchemist-s-orchid-light.yaml b/themes/alchemist-s-orchid-light.yaml index c13ded3e..b1302e03 100644 --- a/themes/alchemist-s-orchid-light.yaml +++ b/themes/alchemist-s-orchid-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Alchemist's Orchid Dark" contrast: fg: 95.9 black: 95.9 diff --git a/themes/alchemist-s-orchid-sepia.yaml b/themes/alchemist-s-orchid-sepia.yaml index 06e00bf9..ee933a6d 100644 --- a/themes/alchemist-s-orchid-sepia.yaml +++ b/themes/alchemist-s-orchid-sepia.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 89.8 black: 89.8 diff --git a/themes/alchemy-theme.yaml b/themes/alchemy-theme.yaml index 98dec83a..9b60d623 100644 --- a/themes/alchemy-theme.yaml +++ b/themes/alchemy-theme.yaml @@ -2,7 +2,7 @@ name: "Alchemy Theme" source: marketplace_id: "thgmhz.alchemy" version: "1.1.0" - installs: 425 + installs: 426 author: "thgmhz" repo: "https://github.com/thgmhz/alchemy-theme" url: "https://marketplace.visualstudio.com/items?itemName=thgmhz.alchemy" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 301 + pair: null contrast: fg: 89.3 black: 0 diff --git a/themes/aldrico-s-gruvbox.yaml b/themes/aldrico-s-gruvbox.yaml index 237644cb..67ff70b5 100644 --- a/themes/aldrico-s-gruvbox.yaml +++ b/themes/aldrico-s-gruvbox.yaml @@ -2,7 +2,7 @@ name: "Aldrico's Gruvbox" source: marketplace_id: "HeavenAldrico.aldrico-s-gruvbox" version: "0.2.3" - installs: 4288 + installs: 4290 author: "Heaven Aldrico" repo: "https://github.com/ldriko/gruvbox-in-black" url: "https://marketplace.visualstudio.com/items?itemName=HeavenAldrico.aldrico-s-gruvbox" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 69 black: 0 diff --git a/themes/aldrico-s.yaml b/themes/aldrico-s.yaml deleted file mode 100644 index 768105ae..00000000 --- a/themes/aldrico-s.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Aldrico's" -source: - marketplace_id: "HeavenAldrico.aldrico-s" - version: "0.4.1" - installs: 756 - author: "Heaven Aldrico" - repo: "https://github.com/ldriko/aldrico-s" - url: "https://marketplace.visualstudio.com/items?itemName=HeavenAldrico.aldrico-s" -colors: - bg: "#000000" - fg: "#BFBDB6" - black: "#1E232B" - red: "#EA6C73" - green: "#7FD962" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#CDA1FA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAD94C" - brightYellow: "#FFB454" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 66.9 - black: 0 - red: 45.1 - green: 71 - yellow: 67.6 - blue: 61.6 - magenta: 61.6 - cyan: 78.9 - white: 72.7 - brightBlack: 23.9 - brightRed: 47.6 - brightGreen: 74.3 - brightYellow: 70.6 - brightBlue: 64.3 - brightMagenta: 64.4 - brightCyan: 81.9 - brightWhite: 107.9 diff --git a/themes/alien-blood.yaml b/themes/alien-blood.yaml index d7dd5823..041f668e 100644 --- a/themes/alien-blood.yaml +++ b/themes/alien-blood.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 149 + pair: null contrast: fg: 30 black: 0 diff --git a/themes/alien-terminal-nostromo-amber.yaml b/themes/alien-terminal-nostromo-amber.yaml index a469b7cd..6c49978e 100644 --- a/themes/alien-terminal-nostromo-amber.yaml +++ b/themes/alien-terminal-nostromo-amber.yaml @@ -2,7 +2,7 @@ name: "Alien Terminal Nostromo Amber" source: marketplace_id: "ericson-willians.uscss-nostromo-theme" version: "1.0.0" - installs: 595 + installs: 596 author: "Ericson Willians Rocha Pires" repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 66.5 black: 0 diff --git a/themes/alien-terminal-nostromo-green.yaml b/themes/alien-terminal-nostromo-green.yaml index 9ece6335..4bb96e06 100644 --- a/themes/alien-terminal-nostromo-green.yaml +++ b/themes/alien-terminal-nostromo-green.yaml @@ -2,7 +2,7 @@ name: "Alien Terminal Nostromo Green" source: marketplace_id: "ericson-willians.uscss-nostromo-theme" version: "1.0.0" - installs: 595 + installs: 596 author: "Ericson Willians Rocha Pires" repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/alien-terminal-sevastopol-link.yaml b/themes/alien-terminal-sevastopol-link.yaml index 94937a6e..fb33d1cb 100644 --- a/themes/alien-terminal-sevastopol-link.yaml +++ b/themes/alien-terminal-sevastopol-link.yaml @@ -2,7 +2,7 @@ name: "Alien Terminal Sevastopol Link" source: marketplace_id: "ericson-willians.uscss-nostromo-theme" version: "1.0.0" - installs: 595 + installs: 596 author: "Ericson Willians Rocha Pires" repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 99.3 black: 0 diff --git a/themes/alive-dark-theme.yaml b/themes/alive-dark-theme.yaml deleted file mode 100644 index 941ceeda..00000000 --- a/themes/alive-dark-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "alive-dark-theme" -source: - marketplace_id: "PedroFernandes.alive-dark-theme" - version: "0.0.1" - installs: 157 - author: "Pedro Fernandes" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=PedroFernandes.alive-dark-theme" -colors: - bg: "#0A0A0A" - fg: "#FFFFFF" - black: "#3D3D3D" - red: "#FF3333" - green: "#00FF64" - yellow: "#FFE779" - blue: "#1584FF" - magenta: "#FF02FF" - cyan: "#0AE1FF" - white: "#A3A3A3" - brightBlack: "#666666" - brightRed: "#FF6767" - brightGreen: "#97FFB1" - brightYellow: "#FFCE00" - brightBlue: "#95CCFF" - brightMagenta: "#FF9AFF" - brightCyan: "#8EF4FF" - brightWhite: "#C9C9C9" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 107.7 - black: 7.3 - red: 39.5 - green: 87 - yellow: 92.2 - blue: 38.3 - magenta: 46.1 - cyan: 77 - white: 52.3 - brightBlack: 22.9 - brightRed: 48 - brightGreen: 93.4 - brightYellow: 80.3 - brightBlue: 72.4 - brightMagenta: 67.7 - brightCyan: 90.5 - brightWhite: 73.7 diff --git a/themes/all-black.yaml b/themes/all-black.yaml index c768fdf8..243a805b 100644 --- a/themes/all-black.yaml +++ b/themes/all-black.yaml @@ -2,7 +2,7 @@ name: "all-black" source: marketplace_id: "xiaobai.all-black" version: "0.6.4" - installs: 5846 + installs: 5847 author: "xiaobai" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xiaobai.all-black" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.1 black: 0 diff --git a/themes/all-blue.yaml b/themes/all-blue.yaml index ec019f13..5bddddb2 100644 --- a/themes/all-blue.yaml +++ b/themes/all-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 244 + pair: null contrast: fg: 61.8 black: 0 diff --git a/themes/all-nighter-theme.yaml b/themes/all-nighter-theme.yaml index f09dd9af..f11d3ac0 100644 --- a/themes/all-nighter-theme.yaml +++ b/themes/all-nighter-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.9 black: 0 diff --git a/themes/alligator-light.yaml b/themes/alligator-light.yaml index b9820f95..236107fe 100644 --- a/themes/alligator-light.yaml +++ b/themes/alligator-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 71.2 black: 91.9 diff --git a/themes/alligator-solarized-dark.yaml b/themes/alligator-solarized-dark.yaml index 3901c2ee..63bbe5c3 100644 --- a/themes/alligator-solarized-dark.yaml +++ b/themes/alligator-solarized-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: null contrast: fg: 39.2 black: 0 diff --git a/themes/alligator-solarized-light.yaml b/themes/alligator-solarized-light.yaml index d61f8da0..866540d3 100644 --- a/themes/alligator-solarized-light.yaml +++ b/themes/alligator-solarized-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 73.2 black: 67.3 diff --git a/themes/allomancer.yaml b/themes/allomancer.yaml index b6480847..109b77ee 100644 --- a/themes/allomancer.yaml +++ b/themes/allomancer.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 101.4 black: 0 diff --git a/themes/allure-contrast.yaml b/themes/allure-contrast.yaml index 75f6eb3f..51596168 100644 --- a/themes/allure-contrast.yaml +++ b/themes/allure-contrast.yaml @@ -1,11 +1,11 @@ name: "allure-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#17191C" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/allure-light.yaml b/themes/allure-light.yaml index 9f816062..45d3c918 100644 --- a/themes/allure-light.yaml +++ b/themes/allure-light.yaml @@ -1,11 +1,11 @@ name: "allure-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#555E68" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 82.6 black: 0 diff --git a/themes/allure.yaml b/themes/allure.yaml index c5e767a1..73f83564 100644 --- a/themes/allure.yaml +++ b/themes/allure.yaml @@ -1,11 +1,11 @@ name: "allure" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#32373D" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 253 + pair: null contrast: fg: 68 black: 0 diff --git a/themes/alma-sakura-theme.yaml b/themes/alma-sakura-theme.yaml index a7eb8677..b9e0d6f7 100644 --- a/themes/alma-sakura-theme.yaml +++ b/themes/alma-sakura-theme.yaml @@ -2,7 +2,7 @@ name: "Alma Sakura Theme" source: marketplace_id: "hoshinokanade.alma-sakura" version: "0.1.2" - installs: 9216 + installs: 9217 author: "hoshinokanade" repo: "https://github.com/as-alma/Alma-Sakura" url: "https://marketplace.visualstudio.com/items?itemName=hoshinokanade.alma-sakura" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 65.1 black: 0 diff --git a/themes/almond-cream.yaml b/themes/almond-cream.yaml index 1b0df90b..b9953ad8 100644 --- a/themes/almond-cream.yaml +++ b/themes/almond-cream.yaml @@ -2,7 +2,7 @@ name: "Almond Cream" source: marketplace_id: "wicked-labs.cocoa-butter" version: "0.1.4" - installs: 1140 + installs: 1141 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/cocoabutter" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.cocoa-butter" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 74.2 black: 0 diff --git a/themes/alpha.yaml b/themes/alpha.yaml index a9eff326..ccbe590f 100644 --- a/themes/alpha.yaml +++ b/themes/alpha.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 286 + pair: null contrast: fg: 53.1 black: 10.6 diff --git a/themes/alpine-warm.yaml b/themes/alpine-warm.yaml index a84d5391..4fdd1855 100644 --- a/themes/alpine-warm.yaml +++ b/themes/alpine-warm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 75.1 black: 0 diff --git a/themes/alpine.yaml b/themes/alpine.yaml index a69b184c..6d38dd72 100644 --- a/themes/alpine.yaml +++ b/themes/alpine.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 51.1 black: 0 diff --git a/themes/altearn.yaml b/themes/altearn.yaml index 1612c150..220ab8bf 100644 --- a/themes/altearn.yaml +++ b/themes/altearn.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 93.5 black: 100.8 diff --git a/themes/altered-matter-dopamin-owl.yaml b/themes/altered-matter-dopamin-owl.yaml index f80bfa92..e32544d2 100644 --- a/themes/altered-matter-dopamin-owl.yaml +++ b/themes/altered-matter-dopamin-owl.yaml @@ -2,7 +2,7 @@ name: "Altered Matter Dopamin Owl" source: marketplace_id: "techwithcarlos.cyberpunk-2021" version: "1.8.5" - installs: 31480 + installs: 31486 author: "techwithcarlos" repo: "https://github.com/CarlosTaubeler/cyberpunk-2021" url: "https://marketplace.visualstudio.com/items?itemName=techwithcarlos.cyberpunk-2021" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 244 + pair: null contrast: fg: 53.4 black: 0 diff --git a/themes/alternight.yaml b/themes/alternight.yaml index a9ac87c3..0110076a 100644 --- a/themes/alternight.yaml +++ b/themes/alternight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 302 + pair: null contrast: fg: 63.5 black: 0 diff --git a/themes/altin-s-love-symphony.yaml b/themes/altin-s-love-symphony.yaml index e4e4cb23..59375793 100644 --- a/themes/altin-s-love-symphony.yaml +++ b/themes/altin-s-love-symphony.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.8 black: 0 diff --git a/themes/alucard-sotn.yaml b/themes/alucard-sotn.yaml index aca4fedc..587473ac 100644 --- a/themes/alucard-sotn.yaml +++ b/themes/alucard-sotn.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 282 + pair: null contrast: fg: 65 black: 0 diff --git a/themes/alx-theme-classic.yaml b/themes/alx-theme-classic.yaml index 83a44e04..2e3ce3c0 100644 --- a/themes/alx-theme-classic.yaml +++ b/themes/alx-theme-classic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.5 black: 23.9 diff --git a/themes/alx-theme-normal.yaml b/themes/alx-theme-normal.yaml deleted file mode 100644 index 593298da..00000000 --- a/themes/alx-theme-normal.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "ALX_THEME_NORMAL" -source: - marketplace_id: "ALX-ZMN.alx-theme-color-theme" - version: "8.9.0" - installs: 1246 - author: "ALX_ZMN" - repo: "https://github.com/revivalver/VScodeTHEME" - url: "https://marketplace.visualstudio.com/items?itemName=ALX-ZMN.alx-theme-color-theme" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#686868" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#C77878" - brightBlack: "#A5A5A5" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 107.9 - black: 23.9 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 41.7 - brightBlack: 53.5 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/amadeus-dark-cobalt.yaml b/themes/amadeus-dark-cobalt.yaml index 6fbd544b..a7ea5650 100644 --- a/themes/amadeus-dark-cobalt.yaml +++ b/themes/amadeus-dark-cobalt.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 80.1 black: 10.7 diff --git a/themes/amadeus-dark-pastel.yaml b/themes/amadeus-dark-pastel.yaml index b8c8c9ba..5047d9f0 100644 --- a/themes/amadeus-dark-pastel.yaml +++ b/themes/amadeus-dark-pastel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 68.6 black: 0 diff --git a/themes/amadeus-dark.yaml b/themes/amadeus-dark.yaml index 8e1f578a..d96947bb 100644 --- a/themes/amadeus-dark.yaml +++ b/themes/amadeus-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 51.5 black: 0 diff --git a/themes/amaranth-red-eerie-black-fork.yaml b/themes/amaranth-red-eerie-black-fork.yaml deleted file mode 100644 index 1653c214..00000000 --- a/themes/amaranth-red-eerie-black-fork.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Amaranth Red & Eerie Black - Fork" -source: - marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" - version: "9.0.1" - installs: 29903 - author: "Hasibur R" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" -colors: - bg: "#131415" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 107.2 - black: 0 - red: 27 - green: 53.3 - yellow: 85.9 - blue: 27.7 - magenta: 30 - cyan: 47.8 - white: 90.3 - brightBlack: 22.3 - brightRed: 38.8 - brightGreen: 63.8 - brightYellow: 95.9 - brightBlue: 40.3 - brightMagenta: 45.7 - brightCyan: 55.7 - brightWhite: 90.3 diff --git a/themes/amazonfrog.yaml b/themes/amazonfrog.yaml index 72f57388..f9b7e0db 100644 --- a/themes/amazonfrog.yaml +++ b/themes/amazonfrog.yaml @@ -2,7 +2,7 @@ name: "AmazonFrog" source: marketplace_id: "TiagoMarcial.AmazonFrog" version: "0.1.8" - installs: 309 + installs: 310 author: "Tiago Marcial" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TiagoMarcial.AmazonFrog" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 244 + pair: null contrast: fg: 107 black: 0 diff --git a/themes/amber-blue-light.yaml b/themes/amber-blue-light.yaml deleted file mode 100644 index 4ff53fc5..00000000 --- a/themes/amber-blue-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Amber-Blue-Light" -source: - marketplace_id: "HantigoZore.amber-studio" - version: "1.2.0" - installs: 77 - author: "HantigoZore" - repo: "https://github.com/HantigoZore/AmberStudio" - url: "https://marketplace.visualstudio.com/items?itemName=HantigoZore.amber-studio" -colors: - bg: "#FFFFFF" - fg: "#333333" - black: "#C8C8C8" - red: "#E05561" - green: "#98C379" - yellow: "#F69D50" - blue: "#4AA5F0" - magenta: "#C792EA" - cyan: "#82AAFF" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "light" - accent: "pink" - hue: null - contrast: - fg: 98.7 - black: 29.5 - red: 63.9 - green: 39.1 - yellow: 41.5 - blue: 51.2 - magenta: 47.3 - cyan: 45.2 - white: 12.3 - brightBlack: 85.6 - brightRed: 54.7 - brightGreen: 25.3 - brightYellow: 40.1 - brightBlue: 37.7 - brightMagenta: 50.7 - brightCyan: 33.8 - brightWhite: 19.4 diff --git a/themes/amber-blue.yaml b/themes/amber-blue.yaml deleted file mode 100644 index fbff213e..00000000 --- a/themes/amber-blue.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Amber-Blue" -source: - marketplace_id: "HantigoZore.amber-studio" - version: "1.2.0" - installs: 77 - author: "HantigoZore" - repo: "https://github.com/HantigoZore/AmberStudio" - url: "https://marketplace.visualstudio.com/items?itemName=HantigoZore.amber-studio" -colors: - bg: "#000000" - fg: "#E1E4E8" - black: "#3F4451" - red: "#E05561" - green: "#98C379" - yellow: "#F69D50" - blue: "#4AA5F0" - magenta: "#C792EA" - cyan: "#82AAFF" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 90.2 - black: 9.9 - red: 37.7 - green: 63.3 - yellow: 60.7 - blue: 50.7 - magenta: 54.8 - cyan: 56.9 - white: 91.7 - brightBlack: 16.5 - brightRed: 47.1 - brightGreen: 77.8 - brightYellow: 62.2 - brightBlue: 64.7 - brightMagenta: 51.3 - brightCyan: 68.8 - brightWhite: 84 diff --git a/themes/amber-color-theme.yaml b/themes/amber-color-theme.yaml deleted file mode 100644 index 1e1ec1ac..00000000 --- a/themes/amber-color-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "amber-color-theme" -source: - marketplace_id: "electropol-fr.coloredtheme" - version: "1.3.0" - installs: 4210 - author: "electropol.fr" - repo: "https://github.com/FrankSAURET/colored-theme" - url: "https://marketplace.visualstudio.com/items?itemName=electropol-fr.coloredtheme" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#FF0000" - green: "#00FF22" - yellow: "#FFEE00" - blue: "#40BFFA" - magenta: "#FF00DD" - cyan: "#00EEFF" - white: "#EEEEEE" - brightBlack: "#808080" - brightRed: "#ED7D31" - brightGreen: "#70AD47" - brightYellow: "#FFC000" - brightBlue: "#4472C4" - brightMagenta: "#DAC2F7" - brightCyan: "#5B9BD5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - contrast: - fg: 106 - black: 106 - red: 64.1 - green: 17.1 - yellow: 9.6 - blue: 40.5 - magenta: 58 - cyan: 19.9 - white: 7.6 - brightBlack: 66.9 - brightRed: 52.9 - brightGreen: 52.3 - brightYellow: 28.2 - brightBlue: 72.5 - brightMagenta: 27.4 - brightCyan: 56 - brightWhite: 0 diff --git a/themes/ambient.yaml b/themes/ambient.yaml index b49a6d48..3286b83e 100644 --- a/themes/ambient.yaml +++ b/themes/ambient.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/amethyst-kiss-dark-amethyst-mode.yaml b/themes/amethyst-kiss-dark-amethyst-mode.yaml deleted file mode 100644 index 27e46f6c..00000000 --- a/themes/amethyst-kiss-dark-amethyst-mode.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Amethyst Kiss Dark(Amethyst Mode)" -source: - marketplace_id: "MahdiBehkar.amethyst-kiss" - version: "0.1.0" - installs: 641 - author: "MahdiBehkar" - repo: "https://github.com/Behkar/amethyst_kiss_theme" - url: "https://marketplace.visualstudio.com/items?itemName=MahdiBehkar.amethyst-kiss" -colors: - bg: "#373E4D" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 265 - contrast: - fg: 71.4 - black: 9 - red: 18.6 - green: 44.9 - yellow: 77.5 - blue: 19.3 - magenta: 21.7 - cyan: 39.5 - white: 81.9 - brightBlack: 13.9 - brightRed: 30.5 - brightGreen: 55.4 - brightYellow: 87.5 - brightBlue: 31.9 - brightMagenta: 37.3 - brightCyan: 47.3 - brightWhite: 81.9 diff --git a/themes/amethyst-kiss-light-amethyst-mode.yaml b/themes/amethyst-kiss-light-amethyst-mode.yaml deleted file mode 100644 index faabbfe8..00000000 --- a/themes/amethyst-kiss-light-amethyst-mode.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Amethyst Kiss Light(Amethyst Mode)" -source: - marketplace_id: "MahdiBehkar.amethyst-kiss" - version: "0.1.0" - installs: 641 - author: "MahdiBehkar" - repo: "https://github.com/Behkar/amethyst_kiss_theme" - url: "https://marketplace.visualstudio.com/items?itemName=MahdiBehkar.amethyst-kiss" -colors: - bg: "#F9F9F9" - fg: "#29343D" - black: "#29343D" - red: "#F8961E" - green: "#90BE6D" - yellow: "#F3722C" - blue: "#577590" - magenta: "#F9C74F" - cyan: "#43AA8B" - white: "#555555" - brightBlack: "#394956" - brightRed: "#F8961E" - brightGreen: "#90BE6D" - brightYellow: "#F3722C" - brightBlue: "#577590" - brightMagenta: "#F9C74F" - brightCyan: "#43AA8B" - brightWhite: "#ABABAB" -meta: - mode: "light" - accent: "yellow" - hue: null - contrast: - fg: 95.2 - black: 95.2 - red: 40.1 - green: 38.5 - yellow: 51 - blue: 69.8 - magenta: 22.5 - cyan: 50.8 - white: 82.3 - brightBlack: 87.8 - brightRed: 40.1 - brightGreen: 38.5 - brightYellow: 51 - brightBlue: 69.8 - brightMagenta: 22.5 - brightCyan: 50.8 - brightWhite: 41.7 diff --git a/themes/amethyst-theme.yaml b/themes/amethyst-theme.yaml index cefa52b1..9e0b3c52 100644 --- a/themes/amethyst-theme.yaml +++ b/themes/amethyst-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 297 + pair: null contrast: fg: 51.2 black: 17.7 diff --git a/themes/amoled-dark-theme.yaml b/themes/amoled-dark-theme.yaml index a6e28727..c6aa89d7 100644 --- a/themes/amoled-dark-theme.yaml +++ b/themes/amoled-dark-theme.yaml @@ -1,11 +1,11 @@ name: "Amoled Dark Theme" source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3734 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + marketplace_id: "rendinjast.amoled-black" + version: "0.1.0" + installs: 58362 + author: "Erfan khadivar" + repo: "https://github.com/rendinjast/amoled-black" + url: "https://marketplace.visualstudio.com/items?itemName=rendinjast.amoled-black" colors: bg: "#0E0E0E" fg: "#999999" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 46.9 black: 0 diff --git a/themes/amoledtest-fork-fork.yaml b/themes/amoledtest-fork-fork.yaml index 99b93047..ddb8a748 100644 --- a/themes/amoledtest-fork-fork.yaml +++ b/themes/amoledtest-fork-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.4 black: 0 diff --git a/themes/amora.yaml b/themes/amora.yaml index d47a148b..394e92c9 100644 --- a/themes/amora.yaml +++ b/themes/amora.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/amozonia.yaml b/themes/amozonia.yaml index e2090e28..86bb27eb 100644 --- a/themes/amozonia.yaml +++ b/themes/amozonia.yaml @@ -2,7 +2,7 @@ name: "Amozonia" source: marketplace_id: "VueComputedTheme.styldev" version: "0.0.2" - installs: 188 + installs: 189 author: "VueComputed Theme" repo: "https://github.com/rafa4dev/styldev" url: "https://marketplace.visualstudio.com/items?itemName=VueComputedTheme.styldev" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 24 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/amp-dark.yaml b/themes/amp-dark.yaml index abb509a2..341059f6 100644 --- a/themes/amp-dark.yaml +++ b/themes/amp-dark.yaml @@ -2,7 +2,7 @@ name: "Amp Dark" source: marketplace_id: "hrose.amp-theme" version: "0.1.0" - installs: 492 + installs: 495 author: "Hanna Rose" repo: "https://codeberg.org/hanna/amp-theme#vscode" url: "https://marketplace.visualstudio.com/items?itemName=hrose.amp-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Amp Light" contrast: fg: 94.7 black: 0 diff --git a/themes/amp-light.yaml b/themes/amp-light.yaml index 4952f0ec..dd235fab 100644 --- a/themes/amp-light.yaml +++ b/themes/amp-light.yaml @@ -2,7 +2,7 @@ name: "Amp Light" source: marketplace_id: "hrose.amp-theme" version: "0.1.0" - installs: 492 + installs: 495 author: "Hanna Rose" repo: "https://codeberg.org/hanna/amp-theme#vscode" url: "https://marketplace.visualstudio.com/items?itemName=hrose.amp-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Amp Dark" contrast: fg: 101.1 black: 15.2 diff --git a/themes/an-bis.yaml b/themes/an-bis.yaml index d9e9bc3c..053bdae4 100644 --- a/themes/an-bis.yaml +++ b/themes/an-bis.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 253 + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/anakmun.yaml b/themes/anakmun.yaml index 721c59a5..6adf29e0 100644 --- a/themes/anakmun.yaml +++ b/themes/anakmun.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 71.5 black: 0 diff --git a/themes/analog-dream-beige-terminal.yaml b/themes/analog-dream-beige-terminal.yaml index 7222e5ec..b6a86415 100644 --- a/themes/analog-dream-beige-terminal.yaml +++ b/themes/analog-dream-beige-terminal.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.9 black: 99.7 diff --git a/themes/analog-dream-magnetic-night.yaml b/themes/analog-dream-magnetic-night.yaml index 288dd7a6..bc37de13 100644 --- a/themes/analog-dream-magnetic-night.yaml +++ b/themes/analog-dream-magnetic-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 254 + pair: null contrast: fg: 76.9 black: 0 diff --git a/themes/anastasia.yaml b/themes/anastasia.yaml index 77ed125d..2f8920f3 100644 --- a/themes/anastasia.yaml +++ b/themes/anastasia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 179 + pair: null contrast: fg: 95.1 black: 0 diff --git a/themes/andromeda-custom.yaml b/themes/andromeda-custom.yaml index 7a054a21..535eb7ce 100644 --- a/themes/andromeda-custom.yaml +++ b/themes/andromeda-custom.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.2 black: 0 diff --git a/themes/andromeda-light-italic-bordered.yaml b/themes/andromeda-light-italic-bordered.yaml index 7d68beb1..dfa2018c 100644 --- a/themes/andromeda-light-italic-bordered.yaml +++ b/themes/andromeda-light-italic-bordered.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 88.5 black: 101 diff --git a/themes/andromeda-zed.yaml b/themes/andromeda-zed.yaml index 81824ff8..306964e4 100644 --- a/themes/andromeda-zed.yaml +++ b/themes/andromeda-zed.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 100.5 black: 0 diff --git a/themes/andromeda.yaml b/themes/andromeda.yaml index dbf63bbe..b5bcd9df 100644 --- a/themes/andromeda.yaml +++ b/themes/andromeda.yaml @@ -2,7 +2,7 @@ name: "Andromeda" source: marketplace_id: "apoorvkhare07.andromeda-vscode" version: "1.1.0" - installs: 35967 + installs: 35973 author: "apoorvkhare07" repo: "https://github.com/apoorvkhare07/andromeda" url: "https://marketplace.visualstudio.com/items?itemName=apoorvkhare07.andromeda-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.7 black: 22.9 diff --git a/themes/anemones.yaml b/themes/anemones.yaml index ccd41873..9b45288d 100644 --- a/themes/anemones.yaml +++ b/themes/anemones.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: 298 + pair: null contrast: fg: 89.5 black: 0 diff --git a/themes/angrboda-dark.yaml b/themes/angrboda-dark.yaml index fb1c9e99..67d52365 100644 --- a/themes/angrboda-dark.yaml +++ b/themes/angrboda-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Angrboda Light" contrast: fg: 92.8 black: 92.8 diff --git a/themes/angrboda-light.yaml b/themes/angrboda-light.yaml index b9b238ff..be834f12 100644 --- a/themes/angrboda-light.yaml +++ b/themes/angrboda-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Angrboda Dark" contrast: fg: 104.3 black: 104.3 diff --git a/themes/angular-dark-theme.yaml b/themes/angular-dark-theme.yaml index 708ca68c..c16944d6 100644 --- a/themes/angular-dark-theme.yaml +++ b/themes/angular-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Angular Dark Theme" source: marketplace_id: "MichaellAlavedraMunayco.angular-theme" version: "7.1.1" - installs: 16333 + installs: 16338 author: "Michaell Alavedra" repo: "https://github.com/gitchaell/angular-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=MichaellAlavedraMunayco.angular-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 104.5 black: 0 diff --git a/themes/animatrix.yaml b/themes/animatrix.yaml index 65f2cf1d..5f1f4f84 100644 --- a/themes/animatrix.yaml +++ b/themes/animatrix.yaml @@ -2,7 +2,7 @@ name: "Animatrix" source: marketplace_id: "KurtDunn.animatrix" version: "0.0.4" - installs: 6173 + installs: 6174 author: "Animatrix" repo: "https://github.com/kurtisdunn/animatrix" url: "https://marketplace.visualstudio.com/items?itemName=KurtDunn.animatrix" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 217 + pair: null contrast: fg: 88.5 black: 0 diff --git a/themes/animetheme.yaml b/themes/animetheme.yaml index 463360bc..bccedca5 100644 --- a/themes/animetheme.yaml +++ b/themes/animetheme.yaml @@ -2,7 +2,7 @@ name: "animetheme" source: marketplace_id: "animetheme.animetheme" version: "0.0.2" - installs: 3931 + installs: 3932 author: "animetheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=animetheme.animetheme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 283 + pair: null contrast: fg: 76.3 black: 0 diff --git a/themes/anisochromatic.yaml b/themes/anisochromatic.yaml index 2f80eb56..36d57966 100644 --- a/themes/anisochromatic.yaml +++ b/themes/anisochromatic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 262 + pair: null contrast: fg: 90.5 black: 87.4 diff --git a/themes/ano-theme-dark.yaml b/themes/ano-theme-dark.yaml index 93170094..6b5a2ef2 100644 --- a/themes/ano-theme-dark.yaml +++ b/themes/ano-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 76.8 black: 0 diff --git a/themes/anoldhope.yaml b/themes/anoldhope.yaml index 8a29d766..8b7b60f2 100644 --- a/themes/anoldhope.yaml +++ b/themes/anoldhope.yaml @@ -2,7 +2,7 @@ name: "AnOldHope" source: marketplace_id: "dustinsanders.an-old-hope-theme-vscode" version: "4.4.0" - installs: 102953 + installs: 102957 author: "Dustin Sanders" repo: "https://github.com/git@github.com:dustinsanders/an-old-hope-theme-vscode.git" url: "https://marketplace.visualstudio.com/items?itemName=dustinsanders.an-old-hope-theme-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 74.5 black: 35.1 diff --git a/themes/anquyx-fork.yaml b/themes/anquyx-fork.yaml deleted file mode 100644 index ef912ae0..00000000 --- a/themes/anquyx-fork.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "anquyx - Fork" -source: - marketplace_id: "julisales.anquyx-theme" - version: "2.0.0" - installs: 39 - author: "julisales" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=julisales.anquyx-theme" -colors: - bg: "#1A1727" - fg: "#FFFBFB" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#B8B8B8" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 292 - contrast: - fg: 104.5 - black: 0 - red: 26.5 - green: 52.7 - yellow: 85.4 - blue: 27.2 - magenta: 29.5 - cyan: 47.3 - white: 62.8 - brightBlack: 21.8 - brightRed: 38.3 - brightGreen: 63.3 - brightYellow: 95.4 - brightBlue: 39.7 - brightMagenta: 45.1 - brightCyan: 55.1 - brightWhite: 89.8 diff --git a/themes/anthropic-dark.yaml b/themes/anthropic-dark.yaml index a432fa66..5ebc5c4c 100644 --- a/themes/anthropic-dark.yaml +++ b/themes/anthropic-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Anthropic Light" contrast: fg: 95.3 black: 0 diff --git a/themes/anthropic-light.yaml b/themes/anthropic-light.yaml index c50724fa..2265ae1b 100644 --- a/themes/anthropic-light.yaml +++ b/themes/anthropic-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Anthropic Dark" contrast: fg: 101.4 black: 101.4 diff --git a/themes/anthropic.yaml b/themes/anthropic.yaml index 2e7fa77d..df034892 100644 --- a/themes/anthropic.yaml +++ b/themes/anthropic.yaml @@ -2,7 +2,7 @@ name: "Anthropic" source: marketplace_id: "bryanr.anthropic-theme" version: "0.0.1" - installs: 966 + installs: 970 author: "Bryan Russett" repo: "https://github.com/od0/anthropic-theme" url: "https://marketplace.visualstudio.com/items?itemName=bryanr.anthropic-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 76.2 black: 0 diff --git a/themes/anti-glare-moonlit.yaml b/themes/anti-glare-moonlit.yaml index 911496dd..5d945e8d 100644 --- a/themes/anti-glare-moonlit.yaml +++ b/themes/anti-glare-moonlit.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 247 + pair: null contrast: fg: 79.2 black: 0 diff --git a/themes/anti-glare-nebula.yaml b/themes/anti-glare-nebula.yaml index 769b7db3..28afabd0 100644 --- a/themes/anti-glare-nebula.yaml +++ b/themes/anti-glare-nebula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 248 + pair: null contrast: fg: 78.8 black: 0 diff --git a/themes/anti-glare-official.yaml b/themes/anti-glare-official.yaml index 0c4d899a..14ece3b3 100644 --- a/themes/anti-glare-official.yaml +++ b/themes/anti-glare-official.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 242 + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/anti-gravity-pink.yaml b/themes/anti-gravity-pink.yaml index 865deb83..9a3fe1a7 100644 --- a/themes/anti-gravity-pink.yaml +++ b/themes/anti-gravity-pink.yaml @@ -2,7 +2,7 @@ name: "Anti-Gravity Pink" source: marketplace_id: "hap4114.antigravity-pink" version: "0.1.0" - installs: 117 + installs: 134 author: "Himani Anil Patil" repo: "https://github.com/hap4114/antigravity-pink" url: "https://marketplace.visualstudio.com/items?itemName=hap4114.antigravity-pink" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 322 + pair: null contrast: fg: 107.8 black: 0 diff --git a/themes/antidote.yaml b/themes/antidote.yaml index 71499248..150de7af 100644 --- a/themes/antidote.yaml +++ b/themes/antidote.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 60.1 black: 0 diff --git a/themes/antimaterial.yaml b/themes/antimaterial.yaml index a1a72a3b..00b5c181 100644 --- a/themes/antimaterial.yaml +++ b/themes/antimaterial.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 230 + pair: null contrast: fg: 80.5 black: 19.7 diff --git a/themes/anubis-dark-theme.yaml b/themes/anubis-dark-theme.yaml index 75cf80a7..c1df110c 100644 --- a/themes/anubis-dark-theme.yaml +++ b/themes/anubis-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 76.3 black: 17.3 diff --git a/themes/anubis-dark.yaml b/themes/anubis-dark.yaml index e9825365..9f3d20ee 100644 --- a/themes/anubis-dark.yaml +++ b/themes/anubis-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: "Anubis Light" contrast: fg: 101 black: 0 diff --git a/themes/anubis-light.yaml b/themes/anubis-light.yaml index c243145b..a698947f 100644 --- a/themes/anubis-light.yaml +++ b/themes/anubis-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Anubis Dark" contrast: fg: 104.3 black: 101.5 diff --git a/themes/anya.yaml b/themes/anya.yaml deleted file mode 100644 index 718b36f1..00000000 --- a/themes/anya.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Anya" -source: - marketplace_id: "choednwn.anya" - version: "0.0.8" - installs: 331 - author: "choednwn" - repo: "https://github.com/anya-theme/anya-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=choednwn.anya" -colors: - bg: "#1E1E1E" - fg: "#CCCCCC" - black: "#282727" - red: "#E05656" - green: "#69AD7A" - yellow: "#DDB96C" - blue: "#6396BD" - magenta: "#DB89C0" - cyan: "#61AC93" - white: "#DDDDDD" - brightBlack: "#444444" - brightRed: "#E05656" - brightGreen: "#69AD7A" - brightYellow: "#DDB96C" - brightBlue: "#6396BD" - brightMagenta: "#DB89C0" - brightCyan: "#61AC93" - brightWhite: "#E4E4E4" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 73.8 - black: 0 - red: 35.8 - green: 48.2 - yellow: 65.4 - blue: 41.2 - magenta: 51 - cyan: 48.1 - white: 84.2 - brightBlack: 8 - brightRed: 35.8 - brightGreen: 48.2 - brightYellow: 65.4 - brightBlue: 41.2 - brightMagenta: 51 - brightCyan: 48.1 - brightWhite: 88.6 diff --git a/themes/apathy-experimental.yaml b/themes/apathy-experimental.yaml index fa3be2ac..a5010edd 100644 --- a/themes/apathy-experimental.yaml +++ b/themes/apathy-experimental.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 88.5 black: 0 diff --git a/themes/apathy.yaml b/themes/apathy.yaml index 7bedbac8..b58fe0e3 100644 --- a/themes/apathy.yaml +++ b/themes/apathy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 44.4 black: 0 diff --git a/themes/apcodespaces.yaml b/themes/apcodespaces.yaml index 1e808f28..141d986a 100644 --- a/themes/apcodespaces.yaml +++ b/themes/apcodespaces.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 216 + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/apex.yaml b/themes/apex.yaml index e2090a18..7843a79c 100644 --- a/themes/apex.yaml +++ b/themes/apex.yaml @@ -2,7 +2,7 @@ name: "Apex" source: marketplace_id: "FluffyBear1111.apex-theme" version: "1.0.0" - installs: 160 + installs: 161 author: "FluffyBear" repo: null url: "https://marketplace.visualstudio.com/items?itemName=FluffyBear1111.apex-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 254 + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/apollo-dark.yaml b/themes/apollo-dark.yaml index 09f34e5b..b8cf7e75 100644 --- a/themes/apollo-dark.yaml +++ b/themes/apollo-dark.yaml @@ -2,7 +2,7 @@ name: "Apollo Dark" source: marketplace_id: "lufutu.apollo-theme" version: "1.0.0" - installs: 148 + installs: 149 author: "lufutu" repo: "https://github.com/lufutu/apollo-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lufutu.apollo-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 279 + pair: "Apollo Light" contrast: fg: 95.5 black: 0 diff --git a/themes/apollo-light.yaml b/themes/apollo-light.yaml index 4c821e4d..d9c568e7 100644 --- a/themes/apollo-light.yaml +++ b/themes/apollo-light.yaml @@ -2,7 +2,7 @@ name: "Apollo Light" source: marketplace_id: "lufutu.apollo-theme" version: "1.0.0" - installs: 148 + installs: 149 author: "lufutu" repo: "https://github.com/lufutu/apollo-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lufutu.apollo-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Apollo Dark" contrast: fg: 94.7 black: 94.7 diff --git a/themes/apparently-purple.yaml b/themes/apparently-purple.yaml index ed4e9cdb..c3405bb0 100644 --- a/themes/apparently-purple.yaml +++ b/themes/apparently-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 290 + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/apple-dancheong-minimal-light.yaml b/themes/apple-dancheong-minimal-light.yaml index e9b184c3..9bff43a3 100644 --- a/themes/apple-dancheong-minimal-light.yaml +++ b/themes/apple-dancheong-minimal-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 90.4 black: 97.8 diff --git a/themes/apprentice.yaml b/themes/apprentice.yaml index b4bbc46f..d3f6b061 100644 --- a/themes/apprentice.yaml +++ b/themes/apprentice.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 63.2 black: 0 diff --git a/themes/april-dark-theme.yaml b/themes/april-dark-theme.yaml index 2183c28b..6d61b028 100644 --- a/themes/april-dark-theme.yaml +++ b/themes/april-dark-theme.yaml @@ -2,7 +2,7 @@ name: "April Dark Theme" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 272 + pair: null contrast: fg: 93.1 black: 0 diff --git a/themes/aquamain.yaml b/themes/aquamain.yaml index 830ded77..81f874d1 100644 --- a/themes/aquamain.yaml +++ b/themes/aquamain.yaml @@ -2,7 +2,7 @@ name: "AquaMain" source: marketplace_id: "JohnnyBoySou.aqua-main" version: "0.0.9" - installs: 1646 + installs: 1650 author: "JohnnyBoySou" repo: "https://github.com/JohnnyBoySou/aqua-main" url: "https://marketplace.visualstudio.com/items?itemName=JohnnyBoySou.aqua-main" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 270 + pair: null contrast: fg: 106.7 black: 52.4 diff --git a/themes/aquanova.yaml b/themes/aquanova.yaml index 5fa8ad35..0632ad4a 100644 --- a/themes/aquanova.yaml +++ b/themes/aquanova.yaml @@ -2,7 +2,7 @@ name: "AquaNova" source: marketplace_id: "AarMagic.aquanova" version: "0.0.5" - installs: 231 + installs: 232 author: "AarWeb" repo: "https://github.com/aarweb/aquanova" url: "https://marketplace.visualstudio.com/items?itemName=AarMagic.aquanova" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 81.9 black: 0 diff --git a/themes/arabian-nights.yaml b/themes/arabian-nights.yaml index d5ee7648..0ba98cac 100644 --- a/themes/arabian-nights.yaml +++ b/themes/arabian-nights.yaml @@ -2,7 +2,7 @@ name: "Arabian Nights" source: marketplace_id: "andrejkoller.arabian-nights-theme" version: "1.0.4" - installs: 132 + installs: 134 author: "andrejkoller" repo: "https://github.com/andrejkoller/arabian-nights-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrejkoller.arabian-nights-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 302 + pair: null contrast: fg: 92.9 black: 0 diff --git a/themes/arabian-theme.yaml b/themes/arabian-theme.yaml index 93a5af82..2dbb1b03 100644 --- a/themes/arabian-theme.yaml +++ b/themes/arabian-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 82 + pair: null contrast: fg: 78.3 black: 78.3 diff --git a/themes/arc-dark.yaml b/themes/arc-dark.yaml index 02c44ad5..52fac91e 100644 --- a/themes/arc-dark.yaml +++ b/themes/arc-dark.yaml @@ -2,7 +2,7 @@ name: "Arc Dark" source: marketplace_id: "rdnlsmith.linux-themes" version: "1.3.0" - installs: 41699 + installs: 41712 author: "rdnlsmith" repo: "https://github.com/rdnlsmith/vscode-arc-theme" url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 273 + pair: null contrast: fg: 43.3 black: 0 diff --git a/themes/arcadia-theme-dark.yaml b/themes/arcadia-theme-dark.yaml index c8734d6d..f931f977 100644 --- a/themes/arcadia-theme-dark.yaml +++ b/themes/arcadia-theme-dark.yaml @@ -1,11 +1,11 @@ name: "Arcadia Theme Dark" source: - marketplace_id: "Kodi.arcadia-theme" + marketplace_id: "Kodi.kuiro-theme" version: "1.3.2" - installs: 1149 + installs: 59 author: "Moti" - repo: "https://github.com/motidev/arcadia-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Kodi.arcadia-theme" + repo: "https://github.com/motidev/kuiro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Kodi.kuiro-theme" colors: bg: "#1E2227" fg: "#9DA5B4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 254 + pair: null contrast: fg: 50.9 black: 25.3 diff --git a/themes/arcadia-theme-storm.yaml b/themes/arcadia-theme-storm.yaml index 50f6ebdd..71b20ecf 100644 --- a/themes/arcadia-theme-storm.yaml +++ b/themes/arcadia-theme-storm.yaml @@ -1,11 +1,11 @@ name: "Arcadia Theme Storm" source: - marketplace_id: "Kodi.arcadia-theme" + marketplace_id: "Kodi.kuiro-theme" version: "1.3.2" - installs: 1149 + installs: 59 author: "Moti" - repo: "https://github.com/motidev/arcadia-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Kodi.arcadia-theme" + repo: "https://github.com/motidev/kuiro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Kodi.kuiro-theme" colors: bg: "#1A1B27" fg: "#9DA5B4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 281 + pair: null contrast: fg: 51.7 black: 26.1 diff --git a/themes/arcaea.yaml b/themes/arcaea.yaml index 248ac68f..fe7a6d4e 100644 --- a/themes/arcaea.yaml +++ b/themes/arcaea.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 66.3 black: 0 diff --git a/themes/archangel-dusk.yaml b/themes/archangel-dusk.yaml index 047d71eb..9c55342d 100644 --- a/themes/archangel-dusk.yaml +++ b/themes/archangel-dusk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/archangel.yaml b/themes/archangel.yaml index c7e662d0..8732e0e0 100644 --- a/themes/archangel.yaml +++ b/themes/archangel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/archie-dark-color-theme.yaml b/themes/archie-dark-color-theme.yaml index a654252b..5c9e92e4 100644 --- a/themes/archie-dark-color-theme.yaml +++ b/themes/archie-dark-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 48 black: 0 diff --git a/themes/architect-dark-fork.yaml b/themes/architect-dark-fork.yaml index 5e130aff..59bbd29a 100644 --- a/themes/architect-dark-fork.yaml +++ b/themes/architect-dark-fork.yaml @@ -2,7 +2,7 @@ name: "Architect (dark) - Fork" source: marketplace_id: "valentinesamuel.fallout-dark" version: "0.0.1" - installs: 2242 + installs: 2243 author: "valentine samuel" repo: "https://github.com/valentinesamuel/themes" url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 101.9 black: 0 diff --git a/themes/arctic-depth.yaml b/themes/arctic-depth.yaml index 68853dcb..6e50defa 100644 --- a/themes/arctic-depth.yaml +++ b/themes/arctic-depth.yaml @@ -2,7 +2,7 @@ name: "Arctic Depth" source: marketplace_id: "MarvellinusVincent.arctic-depth" version: "1.0.11" - installs: 393 + installs: 395 author: "Marvellinus Vincent" repo: "https://github.com/MarvellinusVincent/Arctic-Depth" url: "https://marketplace.visualstudio.com/items?itemName=MarvellinusVincent.arctic-depth" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 269 + pair: null contrast: fg: 59.8 black: 0 diff --git a/themes/arctic-night.yaml b/themes/arctic-night.yaml index 93dbe3fc..b8684f4e 100644 --- a/themes/arctic-night.yaml +++ b/themes/arctic-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 93.8 black: 11.9 diff --git a/themes/arctis-dark.yaml b/themes/arctis-dark.yaml index f0bf51f7..2b5731f3 100644 --- a/themes/arctis-dark.yaml +++ b/themes/arctis-dark.yaml @@ -1,11 +1,11 @@ name: "Arctis Dark+" source: - marketplace_id: "avidworks.arctis" - version: "2.3.1" - installs: 15547 - author: "adamdotjs" - repo: "https://github.com/avidworks/arctis" - url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#1E1E1E" fg: "#D1D1D1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 76.8 black: 0 diff --git a/themes/arctis-high-contrast.yaml b/themes/arctis-high-contrast.yaml index 701be5b9..4086bc7c 100644 --- a/themes/arctis-high-contrast.yaml +++ b/themes/arctis-high-contrast.yaml @@ -1,11 +1,11 @@ name: "Arctis High Contrast" source: - marketplace_id: "avidworks.arctis" - version: "2.3.1" - installs: 15547 - author: "adamdotjs" - repo: "https://github.com/avidworks/arctis" - url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#000000" fg: "#C7CCD6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 75.5 black: 0 diff --git a/themes/arctis-light.yaml b/themes/arctis-light.yaml index 1606e2da..4ef7f97e 100644 --- a/themes/arctis-light.yaml +++ b/themes/arctis-light.yaml @@ -1,11 +1,11 @@ name: "Arctis Light" source: - marketplace_id: "avidworks.arctis" - version: "2.3.1" - installs: 15547 - author: "adamdotjs" - repo: "https://github.com/avidworks/arctis" - url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#EAECF0" fg: "#404859" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "Arctis Night" contrast: fg: 79.8 black: 13.3 diff --git a/themes/arctis-moon.yaml b/themes/arctis-moon.yaml index e8063ede..f35bca3d 100644 --- a/themes/arctis-moon.yaml +++ b/themes/arctis-moon.yaml @@ -1,11 +1,11 @@ name: "Arctis Moon" source: - marketplace_id: "avidworks.arctis" - version: "2.3.1" - installs: 15547 - author: "adamdotjs" - repo: "https://github.com/avidworks/arctis" - url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#212337" fg: "#CCCEE1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 279 + pair: null contrast: fg: 74.6 black: 0 diff --git a/themes/arctis-night.yaml b/themes/arctis-night.yaml index ebfbbb14..d9b717d2 100644 --- a/themes/arctis-night.yaml +++ b/themes/arctis-night.yaml @@ -1,11 +1,11 @@ name: "Arctis Night" source: - marketplace_id: "avidworks.arctis" - version: "2.3.1" - installs: 15547 - author: "adamdotjs" - repo: "https://github.com/avidworks/arctis" - url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#011627" fg: "#BBD1E2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 244 + pair: "Arctis Light" contrast: fg: 75.9 black: 0 diff --git a/themes/arctis.yaml b/themes/arctis.yaml index 421fdc07..8ea680b9 100644 --- a/themes/arctis.yaml +++ b/themes/arctis.yaml @@ -1,11 +1,11 @@ name: "Arctis" source: - marketplace_id: "avidworks.arctis" - version: "2.3.1" - installs: 15547 - author: "adamdotjs" - repo: "https://github.com/avidworks/arctis" - url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#2E3440" fg: "#D3D7DF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 264 + pair: null contrast: fg: 76.1 black: 0 diff --git a/themes/ares-tron-legacy.yaml b/themes/ares-tron-legacy.yaml index 2f0fb43e..bd2058e6 100644 --- a/themes/ares-tron-legacy.yaml +++ b/themes/ares-tron-legacy.yaml @@ -2,7 +2,7 @@ name: "Ares Tron Legacy" source: marketplace_id: "rubenzn.encom-tron-legacy" version: "1.0.0" - installs: 60 + installs: 61 author: "rubenzn" repo: "https://github.com/ruben-cxtx/best-tron-legacy-theme" url: "https://marketplace.visualstudio.com/items?itemName=rubenzn.encom-tron-legacy" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 29 + pair: null contrast: fg: 72.4 black: 0 diff --git a/themes/arete-theme.yaml b/themes/arete-theme.yaml index 45f9f10c..231750d1 100644 --- a/themes/arete-theme.yaml +++ b/themes/arete-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 80.1 black: 0 diff --git a/themes/argonaut.yaml b/themes/argonaut.yaml index 19fc58bd..bb180d6c 100644 --- a/themes/argonaut.yaml +++ b/themes/argonaut.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/argprocolor.yaml b/themes/argprocolor.yaml index 8eb3934b..d0efb60b 100644 --- a/themes/argprocolor.yaml +++ b/themes/argprocolor.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 211 + pair: null contrast: fg: 71.4 black: 10.2 diff --git a/themes/ariake-sands.yaml b/themes/ariake-sands.yaml index 59b69cad..65862ad4 100644 --- a/themes/ariake-sands.yaml +++ b/themes/ariake-sands.yaml @@ -2,7 +2,7 @@ name: "Ariake Sands" source: marketplace_id: "radiolevity.ariake-sands" version: "1.1.3" - installs: 6041 + installs: 6042 author: "Finn James" repo: "https://github.com/radiolevity/ariake-sands" url: "https://marketplace.visualstudio.com/items?itemName=radiolevity.ariake-sands" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 69.6 black: 27.7 diff --git a/themes/ariake-sun.yaml b/themes/ariake-sun.yaml index 9cc00550..0e6a69b6 100644 --- a/themes/ariake-sun.yaml +++ b/themes/ariake-sun.yaml @@ -2,7 +2,7 @@ name: "Ariake Sun" source: marketplace_id: "radiolevity.ariake-sands" version: "1.1.3" - installs: 6041 + installs: 6042 author: "Finn James" repo: "https://github.com/radiolevity/ariake-sands" url: "https://marketplace.visualstudio.com/items?itemName=radiolevity.ariake-sands" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 100.3 black: 100.3 diff --git a/themes/aries.yaml b/themes/aries.yaml index aa4e4d26..3342c8d1 100644 --- a/themes/aries.yaml +++ b/themes/aries.yaml @@ -2,7 +2,7 @@ name: "aries" source: marketplace_id: "ariebird.aries-pink-theme" version: "0.0.1" - installs: 1912 + installs: 1913 author: "Aries Russin" repo: "https://github.com/adragonqc/aries-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=ariebird.aries-pink-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: 4 + pair: null contrast: fg: 65.4 black: 84.9 diff --git a/themes/arkaios-theme.yaml b/themes/arkaios-theme.yaml index 296aa799..e81a3cd5 100644 --- a/themes/arkaios-theme.yaml +++ b/themes/arkaios-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: null contrast: fg: 99 black: 0 diff --git a/themes/arkinetictheme.yaml b/themes/arkinetictheme.yaml index 00878291..ef389705 100644 --- a/themes/arkinetictheme.yaml +++ b/themes/arkinetictheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/arkku.yaml b/themes/arkku.yaml index f87b50ed..17680cf1 100644 --- a/themes/arkku.yaml +++ b/themes/arkku.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 56.6 black: 0 diff --git a/themes/armada.yaml b/themes/armada.yaml index 0ff00659..5a2d1dc6 100644 --- a/themes/armada.yaml +++ b/themes/armada.yaml @@ -1,49 +1,50 @@ -name: "armada" +name: "Armada" source: - marketplace_id: "hakan-akgul.armada" - version: "3.1.8" - installs: 550 - author: "hakan-akgul" - repo: "https://github.com/hakan-akgul/armada" - url: "https://marketplace.visualstudio.com/items?itemName=hakan-akgul.armada" + marketplace_id: "DavidSeptimus.armada-theme" + version: "1.0.1" + installs: 295 + author: "DavidSeptimus" + repo: "https://github.com/DavidSeptimus/armada-theme-vscode-extension" + url: "https://marketplace.visualstudio.com/items?itemName=DavidSeptimus.armada-theme" colors: - bg: "#223043" - fg: "#D2D5DB" - black: "#010B13" - red: "#F20D5E" - green: "#8DCC33" - yellow: "#E5F20D" - blue: "#4688D8" - magenta: "#8F26D9" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#546E7A" - brightRed: "#FF5909" - brightGreen: "#10BC97" - brightYellow: "#F6EF87" - brightBlue: "#139FCD" - brightMagenta: "#9500FF" - brightCyan: "#1FB7EA" - brightWhite: "#E5E5E5" + bg: "#18191B" + fg: "#E0E1E4" + black: "#E0E1E4" + red: "#EB4056" + green: "#82D2CE" + yellow: "#FAD075" + blue: "#4B8DEC" + magenta: "#EB83E2" + cyan: "#2CCCE6" + white: "#18191B" + brightBlack: "#595959" + brightRed: "#C7001B" + brightGreen: "#009E6F" + brightYellow: "#E09119" + brightBlue: "#0067E6" + brightMagenta: "#EB4DDE" + brightCyan: "#00BAD6" + brightWhite: "#18191B" meta: mode: "dark" - accent: "magenta" - hue: 256 + accent: "pink" + hue: null + pair: null contrast: - fg: 76 - black: 0 - red: 30.2 - green: 60.4 - yellow: 87.8 - blue: 33 - magenta: 17.8 - cyan: 43.6 - white: 86.1 - brightBlack: 19.9 - brightRed: 39.5 - brightGreen: 49.9 - brightYellow: 89.9 - brightBlue: 39.9 - brightMagenta: 21.2 - brightCyan: 51.7 - brightWhite: 86.1 + fg: 87.3 + black: 87.3 + red: 35.5 + green: 70 + yellow: 80.2 + blue: 40.2 + magenta: 54.6 + cyan: 64.8 + white: 0 + brightBlack: 16.5 + brightRed: 22.9 + brightGreen: 39.3 + brightYellow: 51.1 + brightBlue: 26 + brightMagenta: 42.9 + brightCyan: 55.5 + brightWhite: 0 diff --git a/themes/aroace-high-contrast.yaml b/themes/aroace-high-contrast.yaml index c86dbee0..0af6bef1 100644 --- a/themes/aroace-high-contrast.yaml +++ b/themes/aroace-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/aroace-light.yaml b/themes/aroace-light.yaml index bba43828..852b13d1 100644 --- a/themes/aroace-light.yaml +++ b/themes/aroace-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 100.9 black: 106 diff --git a/themes/aroace.yaml b/themes/aroace.yaml index 57a4c20a..057ef7cb 100644 --- a/themes/aroace.yaml +++ b/themes/aroace.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 276 + pair: null contrast: fg: 69.4 black: 24.4 diff --git a/themes/aromantic.yaml b/themes/aromantic.yaml index c04ab26f..0b9db603 100644 --- a/themes/aromantic.yaml +++ b/themes/aromantic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 12.3 diff --git a/themes/arrakis-day.yaml b/themes/arrakis-day.yaml index 3383f9e8..7ee6abac 100644 --- a/themes/arrakis-day.yaml +++ b/themes/arrakis-day.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 68 + pair: "Arrakis Night" contrast: fg: 83.7 black: 94.5 diff --git a/themes/arrakis-night.yaml b/themes/arrakis-night.yaml index e5e06904..d3136e60 100644 --- a/themes/arrakis-night.yaml +++ b/themes/arrakis-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Arrakis Day" contrast: fg: 70.8 black: 0 diff --git a/themes/arrpee.yaml b/themes/arrpee.yaml index f43815e1..5ef9a399 100644 --- a/themes/arrpee.yaml +++ b/themes/arrpee.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 94.2 black: 24.2 diff --git a/themes/arstotzka-contrast.yaml b/themes/arstotzka-contrast.yaml index e83dd74d..6a8019d6 100644 --- a/themes/arstotzka-contrast.yaml +++ b/themes/arstotzka-contrast.yaml @@ -1,11 +1,11 @@ name: "arstotzka-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0F0E0D" fg: "#EDEBE6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 94.6 black: 0 diff --git a/themes/arstotzka-light.yaml b/themes/arstotzka-light.yaml index be2d3222..24697a5e 100644 --- a/themes/arstotzka-light.yaml +++ b/themes/arstotzka-light.yaml @@ -1,11 +1,11 @@ name: "arstotzka-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#333333" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/arstotzka.yaml b/themes/arstotzka.yaml index 2b10456c..78708892 100644 --- a/themes/arstotzka.yaml +++ b/themes/arstotzka.yaml @@ -1,11 +1,11 @@ name: "arstotzka" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#332E2E" fg: "#EDEBE6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 90 black: 0 diff --git a/themes/artinpixel-turquoise-theme-dark.yaml b/themes/artinpixel-turquoise-theme-dark.yaml index 2349a262..75c50a2a 100644 --- a/themes/artinpixel-turquoise-theme-dark.yaml +++ b/themes/artinpixel-turquoise-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 226 + pair: null contrast: fg: 78.4 black: 0 diff --git a/themes/artinpixel-turquoise-theme.yaml b/themes/artinpixel-turquoise-theme.yaml index 1d62c368..51f32d93 100644 --- a/themes/artinpixel-turquoise-theme.yaml +++ b/themes/artinpixel-turquoise-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 75.2 black: 0 diff --git a/themes/artisan-theme.yaml b/themes/artisan-theme.yaml index 1110bdda..c53ea4a0 100644 --- a/themes/artisan-theme.yaml +++ b/themes/artisan-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.5 black: 97.5 diff --git a/themes/artlab-dark.yaml b/themes/artlab-dark.yaml index f8350576..92ce3cfd 100644 --- a/themes/artlab-dark.yaml +++ b/themes/artlab-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "ArtLab Light" contrast: fg: 81.7 black: 0 diff --git a/themes/artlab-light.yaml b/themes/artlab-light.yaml index fba40f23..f77b6673 100644 --- a/themes/artlab-light.yaml +++ b/themes/artlab-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "ArtLab Dark" contrast: fg: 96.5 black: 105.3 diff --git a/themes/arunika.yaml b/themes/arunika.yaml index 82584852..b56068d3 100644 --- a/themes/arunika.yaml +++ b/themes/arunika.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/as-theme.yaml b/themes/as-theme.yaml index 26bac876..66d7acf5 100644 --- a/themes/as-theme.yaml +++ b/themes/as-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 327 + pair: null contrast: fg: 92.9 black: 0 diff --git a/themes/asdfasdfuntitled.yaml b/themes/asdfasdfuntitled.yaml index 1576b13a..42a950c3 100644 --- a/themes/asdfasdfuntitled.yaml +++ b/themes/asdfasdfuntitled.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/asexual.yaml b/themes/asexual.yaml index 520bb593..2d1594ef 100644 --- a/themes/asexual.yaml +++ b/themes/asexual.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.9 black: 12.3 diff --git a/themes/asgtheme.yaml b/themes/asgtheme.yaml index ff380bd1..7dc94614 100644 --- a/themes/asgtheme.yaml +++ b/themes/asgtheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 93.9 black: 0 diff --git a/themes/ash-ember.yaml b/themes/ash-ember.yaml index 5e0591f0..0d511c06 100644 --- a/themes/ash-ember.yaml +++ b/themes/ash-ember.yaml @@ -2,7 +2,7 @@ name: "Ash & Ember" source: marketplace_id: "InnaSodri.ash-ember-theme" version: "0.0.3" - installs: 127 + installs: 129 author: "Inna Sodri" repo: "https://example.com/inna/ash-ember-theme" url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.ash-ember-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 95.5 black: 0 diff --git a/themes/ash-lumen-light.yaml b/themes/ash-lumen-light.yaml index ed133a5f..3d378981 100644 --- a/themes/ash-lumen-light.yaml +++ b/themes/ash-lumen-light.yaml @@ -2,7 +2,7 @@ name: "Ash Lumen Light" source: marketplace_id: "edfl.ash-lumen" version: "0.1.0" - installs: 9 + installs: 11 author: "edfl" repo: "https://github.com/emersxw/edfl" url: "https://marketplace.visualstudio.com/items?itemName=edfl.ash-lumen" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 77.9 black: 77.9 diff --git a/themes/ash-lumen.yaml b/themes/ash-lumen.yaml index bfe13a50..d34a3326 100644 --- a/themes/ash-lumen.yaml +++ b/themes/ash-lumen.yaml @@ -2,7 +2,7 @@ name: "Ash Lumen" source: marketplace_id: "edfl.ash-lumen" version: "0.1.0" - installs: 9 + installs: 11 author: "edfl" repo: "https://github.com/emersxw/edfl" url: "https://marketplace.visualstudio.com/items?itemName=edfl.ash-lumen" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 49.9 black: 0 diff --git a/themes/ash.yaml b/themes/ash.yaml index 29546d43..f0f80746 100644 --- a/themes/ash.yaml +++ b/themes/ash.yaml @@ -1,49 +1,50 @@ name: "Ash" source: - marketplace_id: "Priyaank.ether" - version: "2.0.1" - installs: 55 - author: "Priyaank" - repo: "https://github.com/PRIYAANK2510/Ether" - url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.ether" + marketplace_id: "Avetis.codeme-theme" + version: "0.1.1" + installs: 8080 + author: "Avetis" + repo: "https://github.com/AvetisDN/codeme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" colors: - bg: "#1F1F1F" - fg: "#656565" - black: "#181818" - red: "#B09388" - green: "#91BB96" - yellow: "#AF89A8" - blue: "#81A1BC" - magenta: "#947DB9" - cyan: "#909090" - white: "#DFDFDF" - brightBlack: "#656565" - brightRed: "#C5A89A" - brightGreen: "#A5CBA8" - brightYellow: "#C29BBA" - brightBlue: "#95B3CA" - brightMagenta: "#A891C7" - brightCyan: "#A8A8A8" - brightWhite: "#F0F0F0" + bg: "#20242D" + fg: "#B4BAC4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: mode: "dark" - accent: "magenta" - hue: null + accent: "pink" + hue: 266 + pair: null contrast: - fg: 20.6 + fg: 62.1 black: 0 - red: 45.3 - green: 58 - yellow: 43 - blue: 47.4 - magenta: 36.5 - cyan: 40.6 - white: 85.3 - brightBlack: 20.6 - brightRed: 56.4 - brightGreen: 67.5 - brightYellow: 52.5 - brightBlue: 57.1 - brightMagenta: 46.2 - brightCyan: 53.2 - brightWhite: 96.1 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/ashen-darker.yaml b/themes/ashen-darker.yaml index 3dc6d6b7..97ebc9d2 100644 --- a/themes/ashen-darker.yaml +++ b/themes/ashen-darker.yaml @@ -2,7 +2,7 @@ name: "Ashen Darker" source: marketplace_id: "derder.ashen-theme" version: "1.0.3" - installs: 187 + installs: 188 author: "Der Der" repo: null url: "https://marketplace.visualstudio.com/items?itemName=derder.ashen-theme" diff --git a/themes/ashen.yaml b/themes/ashen.yaml index b077b616..8e2d85f6 100644 --- a/themes/ashen.yaml +++ b/themes/ashen.yaml @@ -2,7 +2,7 @@ name: "Ashen" source: marketplace_id: "derder.ashen-theme" version: "1.0.3" - installs: 187 + installs: 188 author: "Der Der" repo: null url: "https://marketplace.visualstudio.com/items?itemName=derder.ashen-theme" diff --git a/themes/ashineui.yaml b/themes/ashineui.yaml index a3784ffb..0c3c208b 100644 --- a/themes/ashineui.yaml +++ b/themes/ashineui.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.8 black: 21.3 diff --git a/themes/aspiesoft-intellij-theme.yaml b/themes/aspiesoft-intellij-theme.yaml index fcfb5db5..7fc918bd 100644 --- a/themes/aspiesoft-intellij-theme.yaml +++ b/themes/aspiesoft-intellij-theme.yaml @@ -2,7 +2,7 @@ name: "AspieSoft IntelliJ Theme" source: marketplace_id: "AspieSoft.aspiesoft-intellij-theme" version: "1.0.3" - installs: 3790 + installs: 3791 author: "AspieSoft" repo: "https://github.com/aspiesoft/vscode-intellij-theme" url: "https://marketplace.visualstudio.com/items?itemName=AspieSoft.aspiesoft-intellij-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 59.2 black: 104.6 diff --git a/themes/aspire-core.yaml b/themes/aspire-core.yaml index 505835b1..c9e809a1 100644 --- a/themes/aspire-core.yaml +++ b/themes/aspire-core.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 249 + pair: null contrast: fg: 101.4 black: 0 diff --git a/themes/aspire-dark.yaml b/themes/aspire-dark.yaml index d74fec67..55292912 100644 --- a/themes/aspire-dark.yaml +++ b/themes/aspire-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 233 + pair: "Aspire Light" contrast: fg: 103 black: 0 diff --git a/themes/aspire-light.yaml b/themes/aspire-light.yaml index 61a51990..b44cf5d7 100644 --- a/themes/aspire-light.yaml +++ b/themes/aspire-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Aspire Dark" contrast: fg: 96.8 black: 105.7 diff --git a/themes/assam-tea-gardens.yaml b/themes/assam-tea-gardens.yaml index 9a2a6467..e68829cc 100644 --- a/themes/assam-tea-gardens.yaml +++ b/themes/assam-tea-gardens.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 95.3 black: 0 diff --git a/themes/asteria.yaml b/themes/asteria.yaml index fef650d9..203d3b73 100644 --- a/themes/asteria.yaml +++ b/themes/asteria.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 32 black: 0 diff --git a/themes/astigmatism-theme.yaml b/themes/astigmatism-theme.yaml index 2481f3e2..0d7d8f0a 100644 --- a/themes/astigmatism-theme.yaml +++ b/themes/astigmatism-theme.yaml @@ -2,7 +2,7 @@ name: "Astigmatism Theme" source: marketplace_id: "GabrielFacioni.astigmatism-theme" version: "1.0.3" - installs: 259 + installs: 261 author: "GabrielFacioni" repo: "https://github.com/GabrielMMC/astigmatism-theme" url: "https://marketplace.visualstudio.com/items?itemName=GabrielFacioni.astigmatism-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 266 + pair: null contrast: fg: 77.5 black: 0 diff --git a/themes/astra.yaml b/themes/astra.yaml index ed2fe81f..8feb08ae 100644 --- a/themes/astra.yaml +++ b/themes/astra.yaml @@ -2,7 +2,7 @@ name: "Astra" source: marketplace_id: "fulin.astra" version: "1.0.1" - installs: 1585 + installs: 1587 author: "Giovanni Fu Lin" repo: "https://github.com/aeither/vscode-astra-theme" url: "https://marketplace.visualstudio.com/items?itemName=fulin.astra" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.8 black: 0 diff --git a/themes/astral-theme.yaml b/themes/astral-theme.yaml index f13d10f0..24896226 100644 --- a/themes/astral-theme.yaml +++ b/themes/astral-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 90 black: 0 diff --git a/themes/astro-dark.yaml b/themes/astro-dark.yaml index b1b5c59f..5fe6783c 100644 --- a/themes/astro-dark.yaml +++ b/themes/astro-dark.yaml @@ -2,7 +2,7 @@ name: "Astro Dark" source: marketplace_id: "wicked-labs.astro-theme" version: "0.9.7" - installs: 5253 + installs: 5255 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/astro-theme" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.astro-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Astro Light" contrast: fg: 46.6 black: 107.4 diff --git a/themes/astro-kanagawa.yaml b/themes/astro-kanagawa.yaml index daa19da9..157c1a8b 100644 --- a/themes/astro-kanagawa.yaml +++ b/themes/astro-kanagawa.yaml @@ -2,7 +2,7 @@ name: "Astro Kanagawa" source: marketplace_id: "panquequelol.astro-kanagawa" version: "0.0.4" - installs: 3863 + installs: 3865 author: "panquequelol" repo: "https://github.com/panquequelol/astro-kanagawa" url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.astro-kanagawa" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 45.8 black: 0 diff --git a/themes/astro-light.yaml b/themes/astro-light.yaml index d949df8f..1d15a5bd 100644 --- a/themes/astro-light.yaml +++ b/themes/astro-light.yaml @@ -2,7 +2,7 @@ name: "Astro Light" source: marketplace_id: "wicked-labs.astro-theme" version: "0.9.7" - installs: 5253 + installs: 5255 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/astro-theme" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.astro-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Astro Dark" contrast: fg: 84.6 black: 18 diff --git a/themes/astrofunk-dark.yaml b/themes/astrofunk-dark.yaml index dc8f75c0..9eb646d7 100644 --- a/themes/astrofunk-dark.yaml +++ b/themes/astrofunk-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 288 + pair: null contrast: fg: 66.7 black: 0 diff --git a/themes/astronaut.yaml b/themes/astronaut.yaml index 876b3ea5..4235ae38 100644 --- a/themes/astronaut.yaml +++ b/themes/astronaut.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 296 + pair: null contrast: fg: 87.6 black: 0 diff --git a/themes/astrus-midnight.yaml b/themes/astrus-midnight.yaml index d399d228..62e0de0a 100644 --- a/themes/astrus-midnight.yaml +++ b/themes/astrus-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 282 + pair: null contrast: fg: 63.5 black: 0 diff --git a/themes/astrus-nebula.yaml b/themes/astrus-nebula.yaml index bbb56d51..eaebcffe 100644 --- a/themes/astrus-nebula.yaml +++ b/themes/astrus-nebula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 302 + pair: null contrast: fg: 63 black: 0 diff --git a/themes/astrus-standard.yaml b/themes/astrus-standard.yaml index b2fd659d..97f24c3a 100644 --- a/themes/astrus-standard.yaml +++ b/themes/astrus-standard.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 63.6 black: 0 diff --git a/themes/asuka-theme-light.yaml b/themes/asuka-theme-light.yaml index ba6dba63..df5838f1 100644 --- a/themes/asuka-theme-light.yaml +++ b/themes/asuka-theme-light.yaml @@ -2,7 +2,7 @@ name: "Asuka-Theme-Light" source: marketplace_id: "MennyfSoryu.asuka-theme" version: "0.1.1" - installs: 4076 + installs: 4079 author: "MennyfSoryu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MennyfSoryu.asuka-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 51.7 black: 106 diff --git a/themes/asuka-theme.yaml b/themes/asuka-theme.yaml index ddf6f585..9db04a56 100644 --- a/themes/asuka-theme.yaml +++ b/themes/asuka-theme.yaml @@ -2,7 +2,7 @@ name: "Asuka-Theme" source: marketplace_id: "MennyfSoryu.asuka-theme" version: "0.1.1" - installs: 4076 + installs: 4079 author: "MennyfSoryu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MennyfSoryu.asuka-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 45.9 black: 0 diff --git a/themes/athabasca-light.yaml b/themes/athabasca-light.yaml index 2d719100..2c432e4c 100644 --- a/themes/athabasca-light.yaml +++ b/themes/athabasca-light.yaml @@ -2,7 +2,7 @@ name: "Athabasca Light" source: marketplace_id: "ianlord.athabasca" version: "0.0.3" - installs: 637 + installs: 638 author: "Ian Lord" repo: "https://github.com/ianlord/athabasca" url: "https://marketplace.visualstudio.com/items?itemName=ianlord.athabasca" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 242 + pair: null contrast: fg: 96.3 black: 0 diff --git a/themes/athabasca.yaml b/themes/athabasca.yaml index 99a4608d..619efe5d 100644 --- a/themes/athabasca.yaml +++ b/themes/athabasca.yaml @@ -2,7 +2,7 @@ name: "Athabasca" source: marketplace_id: "ianlord.athabasca" version: "0.0.3" - installs: 637 + installs: 638 author: "Ian Lord" repo: "https://github.com/ianlord/athabasca" url: "https://marketplace.visualstudio.com/items?itemName=ianlord.athabasca" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: null contrast: fg: 96.6 black: 0 diff --git a/themes/atilio.yaml b/themes/atilio.yaml index 6b4fc871..3ada94a3 100644 --- a/themes/atilio.yaml +++ b/themes/atilio.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 81 black: 14.5 diff --git a/themes/atlantu.yaml b/themes/atlantu.yaml index 5f44cc53..f35cd48b 100644 --- a/themes/atlantu.yaml +++ b/themes/atlantu.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.3 black: 0 diff --git a/themes/atom-homepage-fork.yaml b/themes/atom-homepage-fork.yaml index bc272a8b..050c1066 100644 --- a/themes/atom-homepage-fork.yaml +++ b/themes/atom-homepage-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.2 black: 0 diff --git a/themes/atom-material-theme.yaml b/themes/atom-material-theme.yaml index ca995f7b..473b13a0 100644 --- a/themes/atom-material-theme.yaml +++ b/themes/atom-material-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 230 + pair: null contrast: fg: 75.3 black: 0 diff --git a/themes/atom-one-dark-coal.yaml b/themes/atom-one-dark-coal.yaml index 7683539a..ff5d22ac 100644 --- a/themes/atom-one-dark-coal.yaml +++ b/themes/atom-one-dark-coal.yaml @@ -2,7 +2,7 @@ name: "Atom One dark Coal" source: marketplace_id: "shiftybody.atom-one-dark-coal" version: "1.5.0" - installs: 10664 + installs: 10668 author: "shiftybody" repo: "https://github.com/shiftybody/atom-one-dark-coal" url: "https://marketplace.visualstudio.com/items?itemName=shiftybody.atom-one-dark-coal" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 66.9 black: 12 diff --git a/themes/atom-one-dark-cyan.yaml b/themes/atom-one-dark-cyan.yaml index ae48d105..e65e5cbd 100644 --- a/themes/atom-one-dark-cyan.yaml +++ b/themes/atom-one-dark-cyan.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: "Atom One Light Cyan" contrast: fg: 53.2 black: 0 diff --git a/themes/atom-one-light-cyan.yaml b/themes/atom-one-light-cyan.yaml index f2908a04..785ca411 100644 --- a/themes/atom-one-light-cyan.yaml +++ b/themes/atom-one-light-cyan.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Atom One Dark Cyan" contrast: fg: 89.1 black: 94.5 diff --git a/themes/atom-one-light-modern.yaml b/themes/atom-one-light-modern.yaml index 97aedcf5..2eb364f1 100644 --- a/themes/atom-one-light-modern.yaml +++ b/themes/atom-one-light-modern.yaml @@ -2,7 +2,7 @@ name: "Atom One Light Modern" source: marketplace_id: "mani-sh-reddy.atom-one-light-modern" version: "1.0.5" - installs: 2192 + installs: 2195 author: "Manish Reddy" repo: "https://github.com/mani-sh-reddy/atom-one-light-modern" url: "https://marketplace.visualstudio.com/items?itemName=mani-sh-reddy.atom-one-light-modern" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 93.8 black: 93.8 diff --git a/themes/atomax-colorblind-light.yaml b/themes/atomax-colorblind-light.yaml index a89162fe..82a43ec4 100644 --- a/themes/atomax-colorblind-light.yaml +++ b/themes/atomax-colorblind-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 97.1 black: 97.1 diff --git a/themes/atomax-dark-dimmed.yaml b/themes/atomax-dark-dimmed.yaml index 8c654a0c..80a7af20 100644 --- a/themes/atomax-dark-dimmed.yaml +++ b/themes/atomax-dark-dimmed.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 257 + pair: null contrast: fg: 62 black: 16.7 diff --git a/themes/atomax-dark-tritanopia.yaml b/themes/atomax-dark-tritanopia.yaml index 2bad2cbf..69283076 100644 --- a/themes/atomax-dark-tritanopia.yaml +++ b/themes/atomax-dark-tritanopia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 248 + pair: null contrast: fg: 78 black: 13.5 diff --git a/themes/atomax-dark.yaml b/themes/atomax-dark.yaml index a053ac20..3f366e45 100644 --- a/themes/atomax-dark.yaml +++ b/themes/atomax-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 248 + pair: null contrast: fg: 78 black: 13.5 diff --git a/themes/atomax-high-contrast.yaml b/themes/atomax-high-contrast.yaml index 659584c6..c3ad236c 100644 --- a/themes/atomax-high-contrast.yaml +++ b/themes/atomax-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 248 + pair: null contrast: fg: 99.7 black: 35.4 diff --git a/themes/atomax-light-tritanopia.yaml b/themes/atomax-light-tritanopia.yaml index 38e72711..0dcaab0e 100644 --- a/themes/atomax-light-tritanopia.yaml +++ b/themes/atomax-light-tritanopia.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 97.1 black: 97.1 diff --git a/themes/atomax-light.yaml b/themes/atomax-light.yaml index 1104e234..db4fc01f 100644 --- a/themes/atomax-light.yaml +++ b/themes/atomax-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 97.1 black: 97.1 diff --git a/themes/atomicc.yaml b/themes/atomicc.yaml index f15a67d2..8c057379 100644 --- a/themes/atomicc.yaml +++ b/themes/atomicc.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 75.7 black: 0 diff --git a/themes/atomify.yaml b/themes/atomify.yaml index 94a15ac8..9a7e7da9 100644 --- a/themes/atomify.yaml +++ b/themes/atomify.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 249 + pair: null contrast: fg: 59.9 black: 9.3 diff --git a/themes/atomized-theme.yaml b/themes/atomized-theme.yaml index 4692f05b..8ef6c4b9 100644 --- a/themes/atomized-theme.yaml +++ b/themes/atomized-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 100.2 black: 10.3 diff --git a/themes/atomizer-dark-island.yaml b/themes/atomizer-dark-island.yaml index 01b2c40f..074ee1e2 100644 --- a/themes/atomizer-dark-island.yaml +++ b/themes/atomizer-dark-island.yaml @@ -2,7 +2,7 @@ name: "Atomizer Dark Island" source: marketplace_id: "riipandi.vscode-atomizer-theme" version: "3.1.3" - installs: 6583 + installs: 6584 author: "Aris Ripandi" repo: "https://github.com/riipandi/vscode-atomizer-theme" url: "https://marketplace.visualstudio.com/items?itemName=riipandi.vscode-atomizer-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 66.2 black: 0 diff --git a/themes/attack-on-titan-eren-s-determination.yaml b/themes/attack-on-titan-eren-s-determination.yaml index cbab4108..f3826554 100644 --- a/themes/attack-on-titan-eren-s-determination.yaml +++ b/themes/attack-on-titan-eren-s-determination.yaml @@ -2,7 +2,7 @@ name: "Attack on Titan (Eren's Determination)" source: marketplace_id: "LunaCode.anime-theme" version: "0.0.3" - installs: 373 + installs: 377 author: "LunaCode" repo: "https://github.com/BuildXO/anime-theme-pack" url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 53 + pair: null contrast: fg: 85.3 black: 0 diff --git a/themes/attentio-flow.yaml b/themes/attentio-flow.yaml index 6d258bbc..e528a0a3 100644 --- a/themes/attentio-flow.yaml +++ b/themes/attentio-flow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: null contrast: fg: 71.4 black: 0 diff --git a/themes/attentio-pulse.yaml b/themes/attentio-pulse.yaml index 9cafe61b..f020f79d 100644 --- a/themes/attentio-pulse.yaml +++ b/themes/attentio-pulse.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 278 + pair: null contrast: fg: 71.4 black: 0 diff --git a/themes/attica.yaml b/themes/attica.yaml index e9854f50..25ca4daa 100644 --- a/themes/attica.yaml +++ b/themes/attica.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 299 + pair: null contrast: fg: 47.9 black: 87.5 diff --git a/themes/aube.yaml b/themes/aube.yaml index c5c93e8a..e7e5e12b 100644 --- a/themes/aube.yaml +++ b/themes/aube.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 90.6 black: 0 diff --git a/themes/august-ariake-dark.yaml b/themes/august-ariake-dark.yaml index 2d18549b..d835d2b0 100644 --- a/themes/august-ariake-dark.yaml +++ b/themes/august-ariake-dark.yaml @@ -2,7 +2,7 @@ name: "August - Ariake Dark" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 264 + pair: null contrast: fg: 36.8 black: 0 diff --git a/themes/august-arstotzka-2-darker.yaml b/themes/august-arstotzka-2-darker.yaml deleted file mode 100644 index 8ced7695..00000000 --- a/themes/august-arstotzka-2-darker.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "August - Arstotzka 2 (Darker)" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146390 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#050404" - fg: "#556955" - black: "#050404" - red: "#A62828" - green: "#85A4B1" - yellow: "#B19600" - blue: "#85A4B1" - magenta: "#837485" - cyan: "#9CB5AA" - white: "#A2A797" - brightBlack: "#565656" - brightRed: "#A62828" - brightGreen: "#678813" - brightYellow: "#B19600" - brightBlue: "#9CB5AA" - brightMagenta: "#837485" - brightCyan: "#9CB5AA" - brightWhite: "#A2A797" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 22.1 - black: 0 - red: 18.6 - green: 50.4 - yellow: 46.6 - blue: 50.4 - magenta: 31.3 - cyan: 59.1 - white: 53.4 - brightBlack: 16.5 - brightRed: 18.6 - brightGreen: 33.6 - brightYellow: 46.6 - brightBlue: 59.1 - brightMagenta: 31.3 - brightCyan: 59.1 - brightWhite: 53.4 diff --git a/themes/august-arstotzka-2.yaml b/themes/august-arstotzka-2.yaml deleted file mode 100644 index ccc322c0..00000000 --- a/themes/august-arstotzka-2.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "August - Arstotzka 2" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146390 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#0F0B0B" - fg: "#556955" - black: "#0F0B0B" - red: "#A62828" - green: "#85A4B1" - yellow: "#B19600" - blue: "#85A4B1" - magenta: "#837485" - cyan: "#9CB5AA" - white: "#A2A797" - brightBlack: "#565656" - brightRed: "#A62828" - brightGreen: "#678813" - brightYellow: "#B19600" - brightBlue: "#9CB5AA" - brightMagenta: "#837485" - brightCyan: "#9CB5AA" - brightWhite: "#A2A797" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 21.9 - black: 0 - red: 18.4 - green: 50.2 - yellow: 46.4 - blue: 50.2 - magenta: 31.1 - cyan: 58.9 - white: 53.2 - brightBlack: 16.3 - brightRed: 18.4 - brightGreen: 33.4 - brightYellow: 46.4 - brightBlue: 58.9 - brightMagenta: 31.1 - brightCyan: 58.9 - brightWhite: 53.2 diff --git a/themes/august-arstotzka-lighter.yaml b/themes/august-arstotzka-lighter.yaml index b8c16756..0643b305 100644 --- a/themes/august-arstotzka-lighter.yaml +++ b/themes/august-arstotzka-lighter.yaml @@ -2,7 +2,7 @@ name: "August - Arstotzka (Lighter)" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 18 + pair: null contrast: fg: 21.4 black: 0 diff --git a/themes/august-beardedtheme-oceanic-reversed.yaml b/themes/august-beardedtheme-oceanic-reversed.yaml index 80907904..4229c020 100644 --- a/themes/august-beardedtheme-oceanic-reversed.yaml +++ b/themes/august-beardedtheme-oceanic-reversed.yaml @@ -2,7 +2,7 @@ name: "August - BeardedTheme Oceanic Reversed" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 233 + pair: null contrast: fg: 78.4 black: 0 diff --git a/themes/august-beardedtheme-surprising-blueberry.yaml b/themes/august-beardedtheme-surprising-blueberry.yaml index 228eff86..d7f94d99 100644 --- a/themes/august-beardedtheme-surprising-blueberry.yaml +++ b/themes/august-beardedtheme-surprising-blueberry.yaml @@ -2,7 +2,7 @@ name: "August - BeardedTheme Surprising Blueberry" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 258 + pair: null contrast: fg: 72.9 black: 0 diff --git a/themes/august-catppuccin.yaml b/themes/august-catppuccin.yaml index fb805d79..04df8a4d 100644 --- a/themes/august-catppuccin.yaml +++ b/themes/august-catppuccin.yaml @@ -1,11 +1,11 @@ name: "August - Catppuccin" source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146390 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + marketplace_id: "SofiDev.sofidev" + version: "6.1.9" + installs: 591 + author: "SofiDev" + repo: "https://github.com/SofiDevO/sofidev-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SofiDev.sofidev" colors: bg: "#1E2030" fg: "#CAD3F5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 278 + pair: null contrast: fg: 78.1 black: 56 diff --git a/themes/august-city-lights-darker.yaml b/themes/august-city-lights-darker.yaml index 2be4ff76..abd986c5 100644 --- a/themes/august-city-lights-darker.yaml +++ b/themes/august-city-lights-darker.yaml @@ -2,7 +2,7 @@ name: "August - City Lights (Darker)" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 248 + pair: null contrast: fg: 41.9 black: 12.1 diff --git a/themes/august-city-lights.yaml b/themes/august-city-lights.yaml index 8a61493e..c09b2615 100644 --- a/themes/august-city-lights.yaml +++ b/themes/august-city-lights.yaml @@ -2,7 +2,7 @@ name: "August - City Lights" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 245 + pair: null contrast: fg: 40.6 black: 10.8 diff --git a/themes/august-dark-theme.yaml b/themes/august-dark-theme.yaml index 33daf436..52889715 100644 --- a/themes/august-dark-theme.yaml +++ b/themes/august-dark-theme.yaml @@ -2,7 +2,7 @@ name: "August Dark Theme" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 266 + pair: null contrast: fg: 99.8 black: 0 diff --git a/themes/august-drawbridge-darker.yaml b/themes/august-drawbridge-darker.yaml index a2e9083a..3b03c3e6 100644 --- a/themes/august-drawbridge-darker.yaml +++ b/themes/august-drawbridge-darker.yaml @@ -2,7 +2,7 @@ name: "August - Drawbridge (Darker)" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 278 + pair: null contrast: fg: 75.9 black: 0 diff --git a/themes/august-drawbridge.yaml b/themes/august-drawbridge.yaml index 3a19b24b..c4fd51cd 100644 --- a/themes/august-drawbridge.yaml +++ b/themes/august-drawbridge.yaml @@ -2,7 +2,7 @@ name: "August - Drawbridge" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 276 + pair: null contrast: fg: 75.4 black: 0 diff --git a/themes/august-gruvbox-darker.yaml b/themes/august-gruvbox-darker.yaml index 1bc2f61a..9ec6adde 100644 --- a/themes/august-gruvbox-darker.yaml +++ b/themes/august-gruvbox-darker.yaml @@ -2,7 +2,7 @@ name: "August - Gruvbox (Darker)" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 84.4 black: 0 diff --git a/themes/august-kanagawa-darker.yaml b/themes/august-kanagawa-darker.yaml index dc5960a5..1bc2f022 100644 --- a/themes/august-kanagawa-darker.yaml +++ b/themes/august-kanagawa-darker.yaml @@ -2,7 +2,7 @@ name: "August - Kanagawa (Darker)" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 80.8 black: 0 diff --git a/themes/august-material-palenight.yaml b/themes/august-material-palenight.yaml index 7be95903..a1c824ea 100644 --- a/themes/august-material-palenight.yaml +++ b/themes/august-material-palenight.yaml @@ -2,7 +2,7 @@ name: "August - Material Palenight" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 53.5 black: 0 diff --git a/themes/august-night-owl-darker.yaml b/themes/august-night-owl-darker.yaml index ff5a86fd..3a209de3 100644 --- a/themes/august-night-owl-darker.yaml +++ b/themes/august-night-owl-darker.yaml @@ -2,7 +2,7 @@ name: "August - Night Owl (Darker)" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 236 + pair: null contrast: fg: 31.9 black: 0 diff --git a/themes/august-night-owl.yaml b/themes/august-night-owl.yaml index 51a038b9..e56db7f6 100644 --- a/themes/august-night-owl.yaml +++ b/themes/august-night-owl.yaml @@ -2,7 +2,7 @@ name: "August - Night Owl" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 244 + pair: null contrast: fg: 31.3 black: 0 diff --git a/themes/august-nord-darker.yaml b/themes/august-nord-darker.yaml index 1a68b6b4..af3da7de 100644 --- a/themes/august-nord-darker.yaml +++ b/themes/august-nord-darker.yaml @@ -2,7 +2,7 @@ name: "August - Nord (Darker)" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 36.8 black: 0 diff --git a/themes/august-nord.yaml b/themes/august-nord.yaml index 24ca8f5c..465a24d6 100644 --- a/themes/august-nord.yaml +++ b/themes/august-nord.yaml @@ -2,7 +2,7 @@ name: "August - Nord" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 34.1 black: 0 diff --git a/themes/august-radical-2.yaml b/themes/august-radical-2.yaml index 76a26e3d..fcb2c820 100644 --- a/themes/august-radical-2.yaml +++ b/themes/august-radical-2.yaml @@ -2,7 +2,7 @@ name: "August - Radical 2" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 287 + pair: null contrast: fg: 45.1 black: 0 diff --git a/themes/august-radical.yaml b/themes/august-radical.yaml index 46cd2ed2..82082c75 100644 --- a/themes/august-radical.yaml +++ b/themes/august-radical.yaml @@ -2,7 +2,7 @@ name: "August - Radical" source: marketplace_id: "inci-august.august-themes" version: "2.8.0" - installs: 146390 + installs: 146457 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 287 + pair: null contrast: fg: 45.1 black: 0 diff --git a/themes/august-ros-pine-moon.yaml b/themes/august-ros-pine-moon.yaml deleted file mode 100644 index c6530eff..00000000 --- a/themes/august-ros-pine-moon.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "August - Rosé Pine Moon" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146390 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#232136" - fg: "#E0DEF4" - black: "#393552" - red: "#EB6F92" - green: "#3E8FB0" - yellow: "#F6C177" - blue: "#9CCFD8" - magenta: "#C4A7E7" - cyan: "#EA9A97" - white: "#E0DEF4" - brightBlack: "#908CAA" - brightRed: "#EB6F92" - brightGreen: "#3E8FB0" - brightYellow: "#F6C177" - brightBlue: "#9CCFD8" - brightMagenta: "#C4A7E7" - brightCyan: "#EA9A97" - brightWhite: "#E0DEF4" -meta: - mode: "dark" - accent: "red" - hue: 288 - contrast: - fg: 85.3 - black: 0 - red: 44.2 - green: 35.2 - yellow: 71.9 - blue: 69.7 - magenta: 58.7 - cyan: 56.5 - white: 85.3 - brightBlack: 39.6 - brightRed: 44.2 - brightGreen: 35.2 - brightYellow: 71.9 - brightBlue: 69.7 - brightMagenta: 58.7 - brightCyan: 56.5 - brightWhite: 85.3 diff --git a/themes/august-ros-pine.yaml b/themes/august-ros-pine.yaml deleted file mode 100644 index e4a611d7..00000000 --- a/themes/august-ros-pine.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "August - Rosé Pine" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146390 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#191724" - fg: "#E0DEF4" - black: "#26233A" - red: "#EB6F92" - green: "#31748F" - yellow: "#F6C177" - blue: "#9CCFD8" - magenta: "#C4A7E7" - cyan: "#EBBCBA" - white: "#E0DEF4" - brightBlack: "#908CAA" - brightRed: "#EB6F92" - brightGreen: "#31748F" - brightYellow: "#F6C177" - brightBlue: "#9CCFD8" - brightMagenta: "#C4A7E7" - brightCyan: "#EBBCBA" - brightWhite: "#E0DEF4" -meta: - mode: "dark" - accent: "red" - hue: 291 - contrast: - fg: 86.8 - black: 0 - red: 45.7 - green: 24.9 - yellow: 73.4 - blue: 71.2 - magenta: 60.1 - cyan: 71.6 - white: 86.8 - brightBlack: 41.1 - brightRed: 45.7 - brightGreen: 24.9 - brightYellow: 73.4 - brightBlue: 71.2 - brightMagenta: 60.1 - brightCyan: 71.6 - brightWhite: 86.8 diff --git a/themes/aura-dark-soft-text.yaml b/themes/aura-dark-soft-text.yaml index 6c26e1b4..da5eba10 100644 --- a/themes/aura-dark-soft-text.yaml +++ b/themes/aura-dark-soft-text.yaml @@ -1,11 +1,11 @@ name: "Aura Dark (Soft Text)" source: - marketplace_id: "DaltonMenezes.aura-theme" - version: "2.1.2" - installs: 559627 - author: "Dalton Menezes" - repo: "https://github.com/daltonmenezes/aura-theme" - url: "https://marketplace.visualstudio.com/items?itemName=DaltonMenezes.aura-theme" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#15141B" fg: "#BDBDBD" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 292 + pair: null contrast: fg: 66.1 black: 0 diff --git a/themes/aura-dark.yaml b/themes/aura-dark.yaml index a136388e..5d1c20e2 100644 --- a/themes/aura-dark.yaml +++ b/themes/aura-dark.yaml @@ -1,11 +1,11 @@ name: "Aura Dark" source: - marketplace_id: "DaltonMenezes.aura-theme" - version: "2.1.2" - installs: 559627 - author: "Dalton Menezes" - repo: "https://github.com/daltonmenezes/aura-theme" - url: "https://marketplace.visualstudio.com/items?itemName=DaltonMenezes.aura-theme" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#15141B" fg: "#EDECEE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 292 + pair: null contrast: fg: 94.9 black: 0 diff --git a/themes/aura-dracula-spirit-soft.yaml b/themes/aura-dracula-spirit-soft.yaml index 4e4fa4f5..3c9d5248 100644 --- a/themes/aura-dracula-spirit-soft.yaml +++ b/themes/aura-dracula-spirit-soft.yaml @@ -2,7 +2,7 @@ name: "Aura Dracula Spirit (Soft)" source: marketplace_id: "JoseMurilloc.aura-spirit-dracula" version: "0.1.10" - installs: 70846 + installs: 70920 author: "JoseMurilloc" repo: "https://github.com/josemurilloc/aura-spirit-dracula" url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 300 + pair: null contrast: fg: 94.7 black: 0 diff --git a/themes/aura-dracula-spirit-synthwave.yaml b/themes/aura-dracula-spirit-synthwave.yaml index c475cb39..3e6dd978 100644 --- a/themes/aura-dracula-spirit-synthwave.yaml +++ b/themes/aura-dracula-spirit-synthwave.yaml @@ -2,7 +2,7 @@ name: "Aura Dracula Spirit (SynthWave)" source: marketplace_id: "JoseMurilloc.aura-spirit-dracula" version: "0.1.10" - installs: 70846 + installs: 70920 author: "JoseMurilloc" repo: "https://github.com/josemurilloc/aura-spirit-dracula" url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 292 + pair: null contrast: fg: 92.7 black: 0 diff --git a/themes/aura-dracula-spirit.yaml b/themes/aura-dracula-spirit.yaml index 9f0ab797..ec007591 100644 --- a/themes/aura-dracula-spirit.yaml +++ b/themes/aura-dracula-spirit.yaml @@ -2,7 +2,7 @@ name: "Aura Dracula Spirit" source: marketplace_id: "JoseMurilloc.aura-spirit-dracula" version: "0.1.10" - installs: 70846 + installs: 70920 author: "JoseMurilloc" repo: "https://github.com/josemurilloc/aura-spirit-dracula" url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 307 + pair: null contrast: fg: 95.2 black: 0 diff --git a/themes/aura-soft-dark-soft-text.yaml b/themes/aura-soft-dark-soft-text.yaml index 0d245725..15b242e5 100644 --- a/themes/aura-soft-dark-soft-text.yaml +++ b/themes/aura-soft-dark-soft-text.yaml @@ -1,11 +1,11 @@ name: "Aura Soft Dark (Soft Text)" source: - marketplace_id: "DaltonMenezes.aura-theme" - version: "2.1.2" - installs: 559627 - author: "Dalton Menezes" - repo: "https://github.com/daltonmenezes/aura-theme" - url: "https://marketplace.visualstudio.com/items?itemName=DaltonMenezes.aura-theme" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#21202E" fg: "#BDBDBD" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 288 + pair: null contrast: fg: 64.5 black: 0 diff --git a/themes/aura-soft-dark.yaml b/themes/aura-soft-dark.yaml index af13b457..0a60d842 100644 --- a/themes/aura-soft-dark.yaml +++ b/themes/aura-soft-dark.yaml @@ -1,11 +1,11 @@ name: "Aura Soft Dark" source: - marketplace_id: "DaltonMenezes.aura-theme" - version: "2.1.2" - installs: 559627 - author: "Dalton Menezes" - repo: "https://github.com/daltonmenezes/aura-theme" - url: "https://marketplace.visualstudio.com/items?itemName=DaltonMenezes.aura-theme" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#21202E" fg: "#EDECEE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 288 + pair: null contrast: fg: 93.4 black: 0 diff --git a/themes/aurbis-dark.yaml b/themes/aurbis-dark.yaml index 157bf20b..f6f534b1 100644 --- a/themes/aurbis-dark.yaml +++ b/themes/aurbis-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85.8 black: 0 diff --git a/themes/aurelconstellation.yaml b/themes/aurelconstellation.yaml index ef36f5bb..75c5d4d5 100644 --- a/themes/aurelconstellation.yaml +++ b/themes/aurelconstellation.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/aurora-borealis-theme-dark.yaml b/themes/aurora-borealis-theme-dark.yaml index e4790d43..c9974883 100644 --- a/themes/aurora-borealis-theme-dark.yaml +++ b/themes/aurora-borealis-theme-dark.yaml @@ -2,7 +2,7 @@ name: "Aurora Borealis Theme Dark" source: marketplace_id: "mister-gold.aurora-borealis-theme" version: "1.5.0" - installs: 636 + installs: 637 author: "Anton Zolotukhin" repo: "https://github.com/bandantonio/aurora-borealis-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mister-gold.aurora-borealis-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 288 + pair: null contrast: fg: 86.2 black: 0 diff --git a/themes/aurora-borealis-theme.yaml b/themes/aurora-borealis-theme.yaml index ba3aaf31..c6396045 100644 --- a/themes/aurora-borealis-theme.yaml +++ b/themes/aurora-borealis-theme.yaml @@ -2,7 +2,7 @@ name: "Aurora Borealis Theme" source: marketplace_id: "mister-gold.aurora-borealis-theme" version: "1.5.0" - installs: 636 + installs: 637 author: "Anton Zolotukhin" repo: "https://github.com/bandantonio/aurora-borealis-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mister-gold.aurora-borealis-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 266 + pair: null contrast: fg: 84.8 black: 0 diff --git a/themes/aurora.yaml b/themes/aurora.yaml index 14b32430..a1f2f1d9 100644 --- a/themes/aurora.yaml +++ b/themes/aurora.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 293 + pair: null contrast: fg: 63.3 black: 0 diff --git a/themes/aurorain.yaml b/themes/aurorain.yaml index 4c96106b..462df236 100644 --- a/themes/aurorain.yaml +++ b/themes/aurorain.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 182 + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/aurorasynth-dark.yaml b/themes/aurorasynth-dark.yaml index 8a5d3645..c35bd7fe 100644 --- a/themes/aurorasynth-dark.yaml +++ b/themes/aurorasynth-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "AuroraSynth Light" contrast: fg: 86.9 black: 0 diff --git a/themes/aurorasynth-light.yaml b/themes/aurorasynth-light.yaml index 7dad5b77..c6bc9b63 100644 --- a/themes/aurorasynth-light.yaml +++ b/themes/aurorasynth-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "AuroraSynth Dark" contrast: fg: 75.4 black: 92.4 diff --git a/themes/australian-food-fibre-dark.yaml b/themes/australian-food-fibre-dark.yaml index 2561a9a5..0b039c2f 100644 --- a/themes/australian-food-fibre-dark.yaml +++ b/themes/australian-food-fibre-dark.yaml @@ -1,7 +1,7 @@ name: "Australian Food & Fibre Dark" source: marketplace_id: "lucidlabs.australian-food-fibre-theme" - version: "1.1.0" + version: "1.4.0" installs: 8 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: "Australian Food & Fibre Light" contrast: fg: 91.7 black: 0 diff --git a/themes/australian-food-fibre-light.yaml b/themes/australian-food-fibre-light.yaml index 72526ca8..f749e06f 100644 --- a/themes/australian-food-fibre-light.yaml +++ b/themes/australian-food-fibre-light.yaml @@ -1,7 +1,7 @@ name: "Australian Food & Fibre Light" source: marketplace_id: "lucidlabs.australian-food-fibre-theme" - version: "1.1.0" + version: "1.4.0" installs: 8 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Australian Food & Fibre Dark" contrast: fg: 104.5 black: 104.5 diff --git a/themes/autumn-fork-contrast.yaml b/themes/autumn-fork-contrast.yaml index 6884a28b..c88a559f 100644 --- a/themes/autumn-fork-contrast.yaml +++ b/themes/autumn-fork-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 101.1 black: 0 diff --git a/themes/autumn-fork.yaml b/themes/autumn-fork.yaml index 97ec9268..0b8adada 100644 --- a/themes/autumn-fork.yaml +++ b/themes/autumn-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 20 + pair: null contrast: fg: 36.9 black: 0 diff --git a/themes/autumn-highlighter-syntax.yaml b/themes/autumn-highlighter-syntax.yaml index c1b5c195..27975d81 100644 --- a/themes/autumn-highlighter-syntax.yaml +++ b/themes/autumn-highlighter-syntax.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 59.5 black: 0 diff --git a/themes/autumn.yaml b/themes/autumn.yaml index 57e36f18..1a96f164 100644 --- a/themes/autumn.yaml +++ b/themes/autumn.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 89.9 black: 105.5 diff --git a/themes/awesome-dark.yaml b/themes/awesome-dark.yaml index 99577e1f..e15b8678 100644 --- a/themes/awesome-dark.yaml +++ b/themes/awesome-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80 black: 0 diff --git a/themes/awesome-theme.yaml b/themes/awesome-theme.yaml index 2894c4f5..3b62e8a6 100644 --- a/themes/awesome-theme.yaml +++ b/themes/awesome-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 277 + pair: null contrast: fg: 88 black: 0 diff --git a/themes/awesome-vscode-dark.yaml b/themes/awesome-vscode-dark.yaml index 4d7828ca..27f46ea0 100644 --- a/themes/awesome-vscode-dark.yaml +++ b/themes/awesome-vscode-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 22 + pair: null contrast: fg: 55.8 black: 0 diff --git a/themes/axiomatic-dark.yaml b/themes/axiomatic-dark.yaml index e14274ef..6abd2195 100644 --- a/themes/axiomatic-dark.yaml +++ b/themes/axiomatic-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 278 + pair: "Axiomatic Light" contrast: fg: 99 black: 0 diff --git a/themes/axiomatic-light.yaml b/themes/axiomatic-light.yaml index b5d6848d..fd3ee8c1 100644 --- a/themes/axiomatic-light.yaml +++ b/themes/axiomatic-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Axiomatic Dark" contrast: fg: 93.2 black: 93.2 diff --git a/themes/ayame.yaml b/themes/ayame.yaml index 86701c02..40cd8b54 100644 --- a/themes/ayame.yaml +++ b/themes/ayame.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 295 + pair: null contrast: fg: 68.4 black: 13.6 diff --git a/themes/ayanokoji.yaml b/themes/ayanokoji.yaml index 9f486479..ad112c6e 100644 --- a/themes/ayanokoji.yaml +++ b/themes/ayanokoji.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 278 + pair: null contrast: fg: 99 black: 0 diff --git a/themes/aylin.yaml b/themes/aylin.yaml index 44bfa9b8..972053e0 100644 --- a/themes/aylin.yaml +++ b/themes/aylin.yaml @@ -2,7 +2,7 @@ name: "Aylin" source: marketplace_id: "AhmedAbdulrahman.aylin" version: "1.13.0" - installs: 9802 + installs: 9805 author: "Ahmed Abdulrahman" repo: "https://github.com/AhmedAbdulrahman/aylin-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=AhmedAbdulrahman.aylin" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 73.3 black: 0 diff --git a/themes/ayu-enhanced.yaml b/themes/ayu-enhanced.yaml index 93474b6b..1ed73e28 100644 --- a/themes/ayu-enhanced.yaml +++ b/themes/ayu-enhanced.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 267 + pair: null contrast: fg: 71.6 black: 0 diff --git a/themes/ayu-owl.yaml b/themes/ayu-owl.yaml index 545e133d..d721ecf3 100644 --- a/themes/ayu-owl.yaml +++ b/themes/ayu-owl.yaml @@ -2,7 +2,7 @@ name: "ayu-owl" source: marketplace_id: "dermohamad.ayu-owl" version: "0.5.0" - installs: 17992 + installs: 17994 author: "dermohamad" repo: "https://github.com/mo-develop/ayu-owl" url: "https://marketplace.visualstudio.com/items?itemName=dermohamad.ayu-owl" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 244 + pair: null contrast: fg: 74.4 black: 0 diff --git a/themes/ayu.yaml b/themes/ayu.yaml deleted file mode 100644 index cdc730b0..00000000 --- a/themes/ayu.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "ayu" -source: - marketplace_id: "tsybko22.ayu-fork" - version: "1.2.0" - installs: 790 - author: "Ivan Tsybko" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=tsybko22.ayu-fork" -colors: - bg: "#1F2430" - fg: "#CCCAC2" - black: "#191E2A" - red: "#ED8274" - green: "#BAE67E" - yellow: "#FAD07B" - blue: "#71B6F0" - magenta: "#CFBAFA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F28779" - brightGreen: "#BAE67E" - brightYellow: "#FAC761" - brightBlue: "#71B6F0" - brightMagenta: "#D4BFFF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 267 - contrast: - fg: 71.6 - black: 0 - red: 48.6 - green: 80.2 - yellow: 78.7 - blue: 56.8 - magenta: 68.3 - cyan: 76.1 - white: 69.9 - brightBlack: 21.1 - brightRed: 51.1 - brightGreen: 80.2 - brightYellow: 74.5 - brightBlue: 56.8 - brightMagenta: 71.2 - brightCyan: 79.1 - brightWhite: 105.1 diff --git a/themes/ayudark.yaml b/themes/ayudark.yaml index 4f9d7e6b..aff5a861 100644 --- a/themes/ayudark.yaml +++ b/themes/ayudark.yaml @@ -2,7 +2,7 @@ name: "AyuDark" source: marketplace_id: "Avetis.codeme-theme" version: "0.1.1" - installs: 8079 + installs: 8080 author: "Avetis" repo: "https://github.com/AvetisDN/codeme-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 258 + pair: null contrast: fg: 79.9 black: 0 diff --git a/themes/ayuloco-dark-bordered.yaml b/themes/ayuloco-dark-bordered.yaml index 7209b149..20b8e24b 100644 --- a/themes/ayuloco-dark-bordered.yaml +++ b/themes/ayuloco-dark-bordered.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 267 + pair: null contrast: fg: 66.4 black: 0 diff --git a/themes/ayuloco-dark.yaml b/themes/ayuloco-dark.yaml deleted file mode 100644 index c0e08643..00000000 --- a/themes/ayuloco-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Ayuloco Dark" -source: - marketplace_id: "dpaulos6.ayuloco-theme" - version: "2.0.3" - installs: 1465 - author: "dpaulos6" - repo: "https://github.com/dpaulos6/ayuloco-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dpaulos6.ayuloco-theme" -colors: - bg: "#0B0E14" - fg: "#BFBDB6" - black: "#1E232B" - red: "#EA6C73" - green: "#7FD962" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#CDA1FA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAD94C" - brightYellow: "#FFB454" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 264 - contrast: - fg: 66.5 - black: 0 - red: 44.7 - green: 70.7 - yellow: 67.3 - blue: 61.3 - magenta: 61.3 - cyan: 78.6 - white: 72.4 - brightBlack: 23.6 - brightRed: 47.3 - brightGreen: 74 - brightYellow: 70.3 - brightBlue: 64 - brightMagenta: 64.1 - brightCyan: 81.6 - brightWhite: 107.6 diff --git a/themes/ayuloco-mirage-bordered.yaml b/themes/ayuloco-mirage-bordered.yaml index b4805e33..e9e4e72f 100644 --- a/themes/ayuloco-mirage-bordered.yaml +++ b/themes/ayuloco-mirage-bordered.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 268 + pair: null contrast: fg: 70.7 black: 0 diff --git a/themes/ayuloco-mirage.yaml b/themes/ayuloco-mirage.yaml index d79a15af..f153d41a 100644 --- a/themes/ayuloco-mirage.yaml +++ b/themes/ayuloco-mirage.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 267 + pair: null contrast: fg: 71.6 black: 0 diff --git a/themes/ayutokyo-color-theme.yaml b/themes/ayutokyo-color-theme.yaml index 98c33f5e..7672ccae 100644 --- a/themes/ayutokyo-color-theme.yaml +++ b/themes/ayutokyo-color-theme.yaml @@ -2,7 +2,7 @@ name: "AyuTokyo-color-theme" source: marketplace_id: "LudoLoops.ayutokyo" version: "0.2.1" - installs: 21424 + installs: 21449 author: "LudoLoops" repo: "https://github.com/neuroloops/ayutokyo" url: "https://marketplace.visualstudio.com/items?itemName=LudoLoops.ayutokyo" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 267 + pair: null contrast: fg: 66.4 black: 0 diff --git a/themes/ayyour.yaml b/themes/ayyour.yaml index 1aed0321..b81fb941 100644 --- a/themes/ayyour.yaml +++ b/themes/ayyour.yaml @@ -1,13 +1,13 @@ name: "Ayyour" source: - marketplace_id: "akil-s.ayyour" - version: "0.0.1" - installs: 195 + marketplace_id: "akil-s.tahiti-retro" + version: "0.0.2" + installs: 611 author: "akil-s" repo: "https://github.com/Salah-Akil/ayyour-theme" - url: "https://marketplace.visualstudio.com/items?itemName=akil-s.ayyour" + url: "https://marketplace.visualstudio.com/items?itemName=akil-s.tahiti-retro" colors: - bg: "#EAE7E1" + bg: "#DCDAD7" fg: "#323435" black: "#232627" red: "#BF0C0C" @@ -29,21 +29,22 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: - fg: 84.4 - black: 88.1 - red: 65.4 - green: 51.2 - yellow: 37.1 - blue: 47 - magenta: 52.6 - cyan: 34.8 - white: 79.6 - brightBlack: 75.3 - brightRed: 62.8 - brightGreen: 45.5 - brightYellow: 60.2 - brightBlue: 35.3 - brightMagenta: 64.7 - brightCyan: 45.6 - brightWhite: 69 + fg: 76.9 + black: 80.6 + red: 57.9 + green: 43.7 + yellow: 29.6 + blue: 39.5 + magenta: 45.2 + cyan: 27.3 + white: 72.2 + brightBlack: 67.8 + brightRed: 55.3 + brightGreen: 38.1 + brightYellow: 52.7 + brightBlue: 27.8 + brightMagenta: 57.3 + brightCyan: 38.1 + brightWhite: 61.5 diff --git a/themes/az0ox-theme-shadesofblue.yaml b/themes/az0ox-theme-shadesofblue.yaml index a20675e0..2604857c 100644 --- a/themes/az0ox-theme-shadesofblue.yaml +++ b/themes/az0ox-theme-shadesofblue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 58.9 black: 0 diff --git a/themes/azathoth.yaml b/themes/azathoth.yaml index cd290150..10a614e9 100644 --- a/themes/azathoth.yaml +++ b/themes/azathoth.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 78.3 black: 0 diff --git a/themes/azeny-cutimaru.yaml b/themes/azeny-cutimaru.yaml index 7db662f4..1dd9c201 100644 --- a/themes/azeny-cutimaru.yaml +++ b/themes/azeny-cutimaru.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 61.1 black: 0 diff --git a/themes/azeny-inveny.yaml b/themes/azeny-inveny.yaml index 81ae7a56..55fcf0ad 100644 --- a/themes/azeny-inveny.yaml +++ b/themes/azeny-inveny.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 280 + pair: null contrast: fg: 105.4 black: 0 diff --git a/themes/azeny-okano.yaml b/themes/azeny-okano.yaml index e768fe6c..42e68c71 100644 --- a/themes/azeny-okano.yaml +++ b/themes/azeny-okano.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 104.8 black: 0 diff --git a/themes/azeny.yaml b/themes/azeny.yaml index 4fa6265a..fe879a0b 100644 --- a/themes/azeny.yaml +++ b/themes/azeny.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 280 + pair: null contrast: fg: 105.4 black: 0 diff --git a/themes/azul.yaml b/themes/azul.yaml index e1ea25e6..ef5f582d 100644 --- a/themes/azul.yaml +++ b/themes/azul.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 35 + pair: null contrast: fg: 83.1 black: 0 diff --git a/themes/azure-contrast.yaml b/themes/azure-contrast.yaml index 7d5ec157..b5dd6679 100644 --- a/themes/azure-contrast.yaml +++ b/themes/azure-contrast.yaml @@ -1,11 +1,11 @@ name: "azure-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#040507" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/azure-dark-teal.yaml b/themes/azure-dark-teal.yaml index a96fa1aa..e44c5e3a 100644 --- a/themes/azure-dark-teal.yaml +++ b/themes/azure-dark-teal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 99.7 black: 8 diff --git a/themes/azure-iris-dark.yaml b/themes/azure-iris-dark.yaml index 682ca0f1..5e045948 100644 --- a/themes/azure-iris-dark.yaml +++ b/themes/azure-iris-dark.yaml @@ -2,7 +2,7 @@ name: "Azure Iris Dark" source: marketplace_id: "Codetown-3.azure-iris-theme" version: "0.0.39" - installs: 109 + installs: 110 author: "Lielisk" repo: "https://github.com/your-username/azure-iris-theme" url: "https://marketplace.visualstudio.com/items?itemName=Codetown-3.azure-iris-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 249 + pair: "Azure Iris Light" contrast: fg: 87.2 black: 0 diff --git a/themes/azure-iris-light.yaml b/themes/azure-iris-light.yaml index 62ae899d..6eba2328 100644 --- a/themes/azure-iris-light.yaml +++ b/themes/azure-iris-light.yaml @@ -2,7 +2,7 @@ name: "Azure Iris Light" source: marketplace_id: "Codetown-3.azure-iris-theme" version: "0.0.39" - installs: 109 + installs: 110 author: "Lielisk" repo: "https://github.com/your-username/azure-iris-theme" url: "https://marketplace.visualstudio.com/items?itemName=Codetown-3.azure-iris-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Azure Iris Dark" contrast: fg: 93.4 black: 106 diff --git a/themes/azure-light.yaml b/themes/azure-light.yaml index 8ead40e6..32267bba 100644 --- a/themes/azure-light.yaml +++ b/themes/azure-light.yaml @@ -1,11 +1,11 @@ name: "azure-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#444444" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/azure-noir.yaml b/themes/azure-noir.yaml index cb0a3a54..05240a61 100644 --- a/themes/azure-noir.yaml +++ b/themes/azure-noir.yaml @@ -2,7 +2,7 @@ name: "Azure Noir" source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" - installs: 80 + installs: 81 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 269 + pair: null contrast: fg: 95.3 black: 0 diff --git a/themes/azure.yaml b/themes/azure.yaml index 882a3cc2..0136e82e 100644 --- a/themes/azure.yaml +++ b/themes/azure.yaml @@ -1,11 +1,11 @@ name: "azure" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#181D26" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: null contrast: fg: 106.2 black: 0 diff --git a/themes/b-nt.yaml b/themes/b-nt.yaml index 57239595..ddc2739e 100644 --- a/themes/b-nt.yaml +++ b/themes/b-nt.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/b150-dark.yaml b/themes/b150-dark.yaml index 9a51e9fe..28c31ebb 100644 --- a/themes/b150-dark.yaml +++ b/themes/b150-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: "B150 Light" contrast: fg: 87.3 black: 0 diff --git a/themes/b150-light.yaml b/themes/b150-light.yaml index ffffb1ed..20548692 100644 --- a/themes/b150-light.yaml +++ b/themes/b150-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "B150 Dark" contrast: fg: 94.9 black: 94.9 diff --git a/themes/b2b-edge-light.yaml b/themes/b2b-edge-light.yaml index 95617e97..8ed3f459 100644 --- a/themes/b2b-edge-light.yaml +++ b/themes/b2b-edge-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 94.2 black: 94.2 diff --git a/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml index c4c577ab..26547866 100644 --- a/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml +++ b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 269 + pair: null contrast: fg: 54.1 black: 0 diff --git a/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml index aff4c6a6..986d8648 100644 --- a/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml +++ b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 63.6 black: 90.6 diff --git a/themes/backspace-dark-glass.yaml b/themes/backspace-dark-glass.yaml index 03a61a0a..8fa6d1d6 100644 --- a/themes/backspace-dark-glass.yaml +++ b/themes/backspace-dark-glass.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 91.4 black: 0 diff --git a/themes/backspace-dark-vibe-coder.yaml b/themes/backspace-dark-vibe-coder.yaml index a0786bd9..1a4799db 100644 --- a/themes/backspace-dark-vibe-coder.yaml +++ b/themes/backspace-dark-vibe-coder.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 300 + pair: null contrast: fg: 90.9 black: 0 diff --git a/themes/backspace-dark-winter.yaml b/themes/backspace-dark-winter.yaml index 956126a0..51f77830 100644 --- a/themes/backspace-dark-winter.yaml +++ b/themes/backspace-dark-winter.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 256 + pair: null contrast: fg: 91.1 black: 0 diff --git a/themes/backspace-dark.yaml b/themes/backspace-dark.yaml index b825bdd2..41753143 100644 --- a/themes/backspace-dark.yaml +++ b/themes/backspace-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Backspace Light" contrast: fg: 90.9 black: 0 diff --git a/themes/backspace-light.yaml b/themes/backspace-light.yaml index fd089bfb..db877da7 100644 --- a/themes/backspace-light.yaml +++ b/themes/backspace-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Backspace Dark" contrast: fg: 95.8 black: 100.8 diff --git a/themes/baculum-color-lightup-comment.yaml b/themes/baculum-color-lightup-comment.yaml deleted file mode 100644 index c086a497..00000000 --- a/themes/baculum-color-lightup-comment.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Baculum Color Lightup Comment" -source: - marketplace_id: "oneplus1000.baculum-color" - version: "0.0.27" - installs: 144 - author: "oneplus1000" - repo: "https://github.com/oneplus1000/baculum-color" - url: "https://marketplace.visualstudio.com/items?itemName=oneplus1000.baculum-color" -colors: - bg: "#272821" - fg: "#D4D4D4" - black: "#272821" - red: "#FC4384" - green: "#98E342" - yellow: "#E6DB74" - blue: "#00A7AA" - magenta: "#FFB1F2" - cyan: "#37E5E7" - white: "#D4D4D4" - brightBlack: "#555555" - brightRed: "#FC4384" - brightGreen: "#98E342" - brightYellow: "#E6DB74" - brightBlue: "#00A7AA" - brightMagenta: "#FFB1F2" - brightCyan: "#37E5E7" - brightWhite: "#F1F1EF" -meta: - mode: "dark" - accent: "red" - hue: 114 - contrast: - fg: 77.2 - black: 0 - red: 38.9 - green: 74.1 - yellow: 79.8 - blue: 43 - magenta: 71.4 - cyan: 74.9 - white: 77.2 - brightBlack: 12.8 - brightRed: 38.9 - brightGreen: 74.1 - brightYellow: 79.8 - brightBlue: 43 - brightMagenta: 71.4 - brightCyan: 74.9 - brightWhite: 95.3 diff --git a/themes/baculum-color-minimal-2.yaml b/themes/baculum-color-minimal-2.yaml index f9e55c6b..2563c922 100644 --- a/themes/baculum-color-minimal-2.yaml +++ b/themes/baculum-color-minimal-2.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 77.9 black: 0 diff --git a/themes/baculum-color-minimal-vantablack.yaml b/themes/baculum-color-minimal-vantablack.yaml deleted file mode 100644 index 690f288c..00000000 --- a/themes/baculum-color-minimal-vantablack.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Baculum Color Minimal Vantablack" -source: - marketplace_id: "oneplus1000.baculum-color" - version: "0.0.27" - installs: 144 - author: "oneplus1000" - repo: "https://github.com/oneplus1000/baculum-color" - url: "https://marketplace.visualstudio.com/items?itemName=oneplus1000.baculum-color" -colors: - bg: "#020202" - fg: "#D4D4D4" - black: "#020202" - red: "#FC4384" - green: "#98E342" - yellow: "#E6DB74" - blue: "#00A7AA" - magenta: "#FFB1F2" - cyan: "#37E5E7" - white: "#D4D4D4" - brightBlack: "#555555" - brightRed: "#FC4384" - brightGreen: "#98E342" - brightYellow: "#E6DB74" - brightBlue: "#00A7AA" - brightMagenta: "#FFB1F2" - brightCyan: "#37E5E7" - brightWhite: "#F1F1EF" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 80.5 - black: 0 - red: 42.2 - green: 77.4 - yellow: 83.1 - blue: 46.4 - magenta: 74.7 - cyan: 78.2 - white: 80.5 - brightBlack: 16.1 - brightRed: 42.2 - brightGreen: 77.4 - brightYellow: 83.1 - brightBlue: 46.4 - brightMagenta: 74.7 - brightCyan: 78.2 - brightWhite: 98.6 diff --git a/themes/baculum-dark-color.yaml b/themes/baculum-dark-color.yaml index 97ac9144..ec23a357 100644 --- a/themes/baculum-dark-color.yaml +++ b/themes/baculum-dark-color.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 115 + pair: null contrast: fg: 78.3 black: 0 diff --git a/themes/badbird.yaml b/themes/badbird.yaml index 842460b7..a1105bb5 100644 --- a/themes/badbird.yaml +++ b/themes/badbird.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 76.1 black: 0 diff --git a/themes/baitul-hikmah-professional.yaml b/themes/baitul-hikmah-professional.yaml index 39e3e172..d9835c81 100644 --- a/themes/baitul-hikmah-professional.yaml +++ b/themes/baitul-hikmah-professional.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 98.8 black: 0 diff --git a/themes/baiyuechu.yaml b/themes/baiyuechu.yaml index fb544450..9eabf305 100644 --- a/themes/baiyuechu.yaml +++ b/themes/baiyuechu.yaml @@ -7,43 +7,43 @@ source: repo: "https://github.com/xiaowu-d3" url: "https://marketplace.visualstudio.com/items?itemName=DongFangBaiYue.DongFangBai" colors: - bg: "#1E1E2E" - fg: "#CDD6F4" - black: "#A6ADC8" - red: "#F38BA8" - green: "#A6E3A1" - yellow: "#F9E2AF" - blue: "#89B4FA" - magenta: "#F5C2E7" - cyan: "#89DCEB" - white: "#BAC2DE" - brightBlack: "#585B70" - brightRed: "#F38BA8" - brightGreen: "#A6E3A1" - brightYellow: "#F9E2AF" - brightBlue: "#89B4FA" - brightMagenta: "#F5C2E7" - brightCyan: "#89DCEB" - brightWhite: "#45475A" + bg: "#181B28" + fg: "#8D8E8E" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" meta: mode: "dark" - accent: "red" - hue: 284 + accent: "orange" + hue: 274 contrast: - fg: 80 - black: 56.2 - red: 54.7 - green: 78.3 - yellow: 88.4 - blue: 59.1 - magenta: 76.7 - cyan: 75.6 - white: 68.1 - brightBlack: 16.9 - brightRed: 54.7 - brightGreen: 78.3 - brightYellow: 88.4 - brightBlue: 59.1 - brightMagenta: 76.7 - brightCyan: 75.6 - brightWhite: 9.3 + fg: 39.9 + black: 0 + red: 41.6 + green: 61.7 + yellow: 70 + blue: 40.9 + magenta: 44.6 + cyan: 54 + white: 82.5 + brightBlack: 35 + brightRed: 37.9 + brightGreen: 61.7 + brightYellow: 70 + brightBlue: 40.9 + brightMagenta: 12.2 + brightCyan: 54 + brightWhite: 82.5 diff --git a/themes/bakaneo.yaml b/themes/bakaneo.yaml index a5b93943..7aa0c0a9 100644 --- a/themes/bakaneo.yaml +++ b/themes/bakaneo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.2 black: 0 diff --git a/themes/balance-pink-colorblind-compassion-focus.yaml b/themes/balance-pink-colorblind-compassion-focus.yaml index fbed4a5a..96614f5f 100644 --- a/themes/balance-pink-colorblind-compassion-focus.yaml +++ b/themes/balance-pink-colorblind-compassion-focus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 1 + pair: null contrast: fg: 87.5 black: 0 diff --git a/themes/balance-pink-compassion-focus.yaml b/themes/balance-pink-compassion-focus.yaml index 90dcc04a..4f9b0228 100644 --- a/themes/balance-pink-compassion-focus.yaml +++ b/themes/balance-pink-compassion-focus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 1 + pair: null contrast: fg: 93.8 black: 0 diff --git a/themes/balance-pink-high-contrast-compassion-focus.yaml b/themes/balance-pink-high-contrast-compassion-focus.yaml index a5927c46..032b1f37 100644 --- a/themes/balance-pink-high-contrast-compassion-focus.yaml +++ b/themes/balance-pink-high-contrast-compassion-focus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/balance-pink-light-compassion-focus.yaml b/themes/balance-pink-light-compassion-focus.yaml index 59c85e21..78d00ad7 100644 --- a/themes/balance-pink-light-compassion-focus.yaml +++ b/themes/balance-pink-light-compassion-focus.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: 355 + pair: null contrast: fg: 93 black: 93 diff --git a/themes/ballerini-theme.yaml b/themes/ballerini-theme.yaml index f5b5fd11..f92c6db5 100644 --- a/themes/ballerini-theme.yaml +++ b/themes/ballerini-theme.yaml @@ -2,7 +2,7 @@ name: "Ballerini Theme" source: marketplace_id: "BalleriniServer.ballerini-theme" version: "1.2.4" - installs: 55161 + installs: 55189 author: "Ballerini Theme" repo: "https://github.com/Ballerini-Server/Ballerini-theme" url: "https://marketplace.visualstudio.com/items?itemName=BalleriniServer.ballerini-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 5 + pair: null contrast: fg: 98.8 black: 0 diff --git a/themes/bam.yaml b/themes/bam.yaml index c226d6f6..844a7097 100644 --- a/themes/bam.yaml +++ b/themes/bam.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/bamboo-green.yaml b/themes/bamboo-green.yaml index 0f1ec933..ceccbb3a 100644 --- a/themes/bamboo-green.yaml +++ b/themes/bamboo-green.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 99.6 black: 99.6 diff --git a/themes/bamboo.yaml b/themes/bamboo.yaml index 110e3b8e..535bd9c1 100644 --- a/themes/bamboo.yaml +++ b/themes/bamboo.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 60.8 black: 64.1 diff --git a/themes/ban-light.yaml b/themes/ban-light.yaml index ab982283..aea4cef9 100644 --- a/themes/ban-light.yaml +++ b/themes/ban-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Ban Night" contrast: fg: 81.3 black: 81.3 diff --git a/themes/ban-night.yaml b/themes/ban-night.yaml index 113bdece..3679cd68 100644 --- a/themes/ban-night.yaml +++ b/themes/ban-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: "Ban Light" contrast: fg: 59.5 black: 0 diff --git a/themes/ban-typhoon.yaml b/themes/ban-typhoon.yaml index 72d6c7d9..2f1a378e 100644 --- a/themes/ban-typhoon.yaml +++ b/themes/ban-typhoon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 59.1 black: 0 diff --git a/themes/bandmeup.yaml b/themes/bandmeup.yaml index 2301ddb0..74158451 100644 --- a/themes/bandmeup.yaml +++ b/themes/bandmeup.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 55.1 black: 0 diff --git a/themes/banner-contrast.yaml b/themes/banner-contrast.yaml index 82b9d5d6..1565e9ec 100644 --- a/themes/banner-contrast.yaml +++ b/themes/banner-contrast.yaml @@ -1,11 +1,11 @@ name: "banner-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0B0A0F" fg: "#C5BEDD" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 294 + pair: null contrast: fg: 69.6 black: 0 diff --git a/themes/banner-light.yaml b/themes/banner-light.yaml index 05a25022..55917221 100644 --- a/themes/banner-light.yaml +++ b/themes/banner-light.yaml @@ -1,11 +1,11 @@ name: "banner-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#373247" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 98 black: 0 diff --git a/themes/banner.yaml b/themes/banner.yaml index bcad1417..9874619c 100644 --- a/themes/banner.yaml +++ b/themes/banner.yaml @@ -1,11 +1,11 @@ name: "banner" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#1D1A26" fg: "#C5BEDD" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 296 + pair: null contrast: fg: 68.2 black: 0 diff --git a/themes/barbenheimer-bunker.yaml b/themes/barbenheimer-bunker.yaml index b3419c91..a1290b02 100644 --- a/themes/barbenheimer-bunker.yaml +++ b/themes/barbenheimer-bunker.yaml @@ -2,7 +2,7 @@ name: "Barbenheimer Bunker" source: marketplace_id: "jayvicsanantonio.barbenheimer" version: "1.0.0" - installs: 4071 + installs: 4072 author: "Jayvic San Antonio" repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 108 + pair: null contrast: fg: 68.9 black: 0 diff --git a/themes/barbenheimer-dreamhouse.yaml b/themes/barbenheimer-dreamhouse.yaml index ff5d5844..f485f4c7 100644 --- a/themes/barbenheimer-dreamhouse.yaml +++ b/themes/barbenheimer-dreamhouse.yaml @@ -2,7 +2,7 @@ name: "Barbenheimer Dreamhouse" source: marketplace_id: "jayvicsanantonio.barbenheimer" version: "1.0.0" - installs: 4071 + installs: 4072 author: "Jayvic San Antonio" repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 101.5 black: 97.6 diff --git a/themes/barbenheimer-nuclear-sunrise.yaml b/themes/barbenheimer-nuclear-sunrise.yaml index 29e7e501..e180081c 100644 --- a/themes/barbenheimer-nuclear-sunrise.yaml +++ b/themes/barbenheimer-nuclear-sunrise.yaml @@ -2,7 +2,7 @@ name: "Barbenheimer Nuclear Sunrise" source: marketplace_id: "jayvicsanantonio.barbenheimer" version: "1.0.0" - installs: 4071 + installs: 4072 author: "Jayvic San Antonio" repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 107 + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/barbie-light.yaml b/themes/barbie-light.yaml index 98464ecc..acd9d109 100644 --- a/themes/barbie-light.yaml +++ b/themes/barbie-light.yaml @@ -2,7 +2,7 @@ name: "Barbie Light" source: marketplace_id: "LuanKisaki.barbie-light-theme" version: "1.0.0" - installs: 3028 + installs: 3038 author: "Luan Kisaki" repo: "https://github.com/LuanKisaki/barbie-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=LuanKisaki.barbie-light-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 89.7 black: 100.9 diff --git a/themes/barbie-theme.yaml b/themes/barbie-theme.yaml index 19f69e8b..d1c1bec1 100644 --- a/themes/barbie-theme.yaml +++ b/themes/barbie-theme.yaml @@ -2,7 +2,7 @@ name: "Barbie Theme" source: marketplace_id: "mihtoa.barbie-theme" version: "0.0.2" - installs: 10582 + installs: 10608 author: "Milene Toazza" repo: "https://github.com/mihtoa/barbie-theme" url: "https://marketplace.visualstudio.com/items?itemName=mihtoa.barbie-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 83.7 black: 0 diff --git a/themes/barbie.yaml b/themes/barbie.yaml index 82c84503..a4e6bda4 100644 --- a/themes/barbie.yaml +++ b/themes/barbie.yaml @@ -2,7 +2,7 @@ name: "Barbie" source: marketplace_id: "Miraz007.Barbie" version: "0.0.2" - installs: 5930 + installs: 5936 author: "Miraz" repo: "https://github.com/PiyushYadav007/Barbie-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Miraz007.Barbie" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 324 + pair: null contrast: fg: 85.4 black: 85.4 diff --git a/themes/barney-pro.yaml b/themes/barney-pro.yaml index 0123bffa..b12686d9 100644 --- a/themes/barney-pro.yaml +++ b/themes/barney-pro.yaml @@ -2,7 +2,7 @@ name: "Barney PRO" source: marketplace_id: "barney-pro-one.barney-pro" version: "0.0.1" - installs: 1280 + installs: 1282 author: "barney-pro-one" repo: "https://github.com/armando10rafael10/theme-barney-pro" url: "https://marketplace.visualstudio.com/items?itemName=barney-pro-one.barney-pro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 307 + pair: null contrast: fg: 91.6 black: 20 diff --git a/themes/base-color-theme.yaml b/themes/base-color-theme.yaml index 57593c10..83639381 100644 --- a/themes/base-color-theme.yaml +++ b/themes/base-color-theme.yaml @@ -2,7 +2,7 @@ name: "base-color-theme" source: marketplace_id: "electricduck.elementary-theme" version: "1.51.2" - installs: 4186 + installs: 4187 author: "Ducky" repo: "https://github.com/electricduck/vscode-elementary-theme" url: "https://marketplace.visualstudio.com/items?itemName=electricduck.elementary-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 105.4 black: 99 diff --git a/themes/base-minor-dark-hard.yaml b/themes/base-minor-dark-hard.yaml index e818305f..49b1c617 100644 --- a/themes/base-minor-dark-hard.yaml +++ b/themes/base-minor-dark-hard.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 90 black: 0 diff --git a/themes/base-minor-dark-soft.yaml b/themes/base-minor-dark-soft.yaml index e483b942..0bdd32e4 100644 --- a/themes/base-minor-dark-soft.yaml +++ b/themes/base-minor-dark-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 89.2 black: 0 diff --git a/themes/base-minor-soft.yaml b/themes/base-minor-soft.yaml index 45295ce4..cdfb383e 100644 --- a/themes/base-minor-soft.yaml +++ b/themes/base-minor-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 89.2 black: 0 diff --git a/themes/base-minor.yaml b/themes/base-minor.yaml deleted file mode 100644 index 5c50e70c..00000000 --- a/themes/base-minor.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Base Minor" -source: - marketplace_id: "adamsome.vscode-theme-phosphorus-minor" - version: "1.1.3" - installs: 421 - author: "adamsome" - repo: "https://github.com/adamsome/vscode-theme-phosphorus-minor" - url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-phosphorus-minor" -colors: - bg: "#000000" - fg: "#A8A29E" - black: "#000000" - red: "#DC2626" - green: "#7E9E83" - yellow: "#A09B4E" - blue: "#55757F" - magenta: "#DC2626" - cyan: "#60A2A3" - white: "#292524" - brightBlack: "#120F0E" - brightRed: "#F87171" - brightGreen: "#B8D3BB" - brightYellow: "#D9D385" - brightBlue: "#93A7AF" - brightMagenta: "#F87171" - brightCyan: "#9AD7D8" - brightWhite: "#1C1917" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 52.5 - black: 0 - red: 30.1 - green: 45.7 - yellow: 46.8 - blue: 27.4 - magenta: 30.1 - cyan: 46.3 - white: 0 - brightBlack: 0 - brightRed: 49.1 - brightGreen: 75.7 - brightYellow: 78.1 - brightBlue: 52.8 - brightMagenta: 49.1 - brightCyan: 75.8 - brightWhite: 0 diff --git a/themes/base16-3024-dark.yaml b/themes/base16-3024-dark.yaml index cdd45dd5..6c3fb80f 100644 --- a/themes/base16-3024-dark.yaml +++ b/themes/base16-3024-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 3024 Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 66 + pair: "Base16 3024 Light" contrast: fg: 52.2 black: 10.5 diff --git a/themes/base16-3024-light.yaml b/themes/base16-3024-light.yaml index c5456826..980c1940 100644 --- a/themes/base16-3024-light.yaml +++ b/themes/base16-3024-light.yaml @@ -2,7 +2,7 @@ name: "Base16 3024 Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Base16 3024 Dark" contrast: fg: 87.1 black: 44.9 diff --git a/themes/base16-apathy-dark.yaml b/themes/base16-apathy-dark.yaml index 6ca17516..abfc5936 100644 --- a/themes/base16-apathy-dark.yaml +++ b/themes/base16-apathy-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Apathy Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 180 + pair: "Base16 Apathy Light" contrast: fg: 55.8 black: 9.6 diff --git a/themes/base16-apathy-light.yaml b/themes/base16-apathy-light.yaml index 8a15f5de..87ec7efa 100644 --- a/themes/base16-apathy-light.yaml +++ b/themes/base16-apathy-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Apathy Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 186 + pair: "Base16 Apathy Dark" contrast: fg: 74.9 black: 28.5 diff --git a/themes/base16-ashes-dark.yaml b/themes/base16-ashes-dark.yaml index 01e8c390..b1e6481c 100644 --- a/themes/base16-ashes-dark.yaml +++ b/themes/base16-ashes-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Ashes Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: "Base16 Ashes Light" contrast: fg: 73.2 black: 17.2 diff --git a/themes/base16-ashes-light.yaml b/themes/base16-ashes-light.yaml index 8480cec9..6f2f1908 100644 --- a/themes/base16-ashes-light.yaml +++ b/themes/base16-ashes-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Ashes Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Base16 Ashes Dark" contrast: fg: 76 black: 21 diff --git a/themes/base16-bespin-dark.yaml b/themes/base16-bespin-dark.yaml index 7be13641..d64a7d81 100644 --- a/themes/base16-bespin-dark.yaml +++ b/themes/base16-bespin-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Bespin Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 58 + pair: "Base16 Bespin Light" contrast: fg: 36.6 black: 16.9 diff --git a/themes/base16-bespin-light.yaml b/themes/base16-bespin-light.yaml index 9b5388fc..3010b3b5 100644 --- a/themes/base16-bespin-light.yaml +++ b/themes/base16-bespin-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Bespin Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: 75 + pair: "Base16 Bespin Dark" contrast: fg: 37.6 black: 17.6 diff --git a/themes/base16-brewer-dark.yaml b/themes/base16-brewer-dark.yaml index 5bf5127e..184ee54e 100644 --- a/themes/base16-brewer-dark.yaml +++ b/themes/base16-brewer-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Brewer Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Base16 Brewer Light" contrast: fg: 63.7 black: 14.6 diff --git a/themes/base16-brewer-light.yaml b/themes/base16-brewer-light.yaml index a165f8e7..398356f7 100644 --- a/themes/base16-brewer-light.yaml +++ b/themes/base16-brewer-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Brewer Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Base16 Brewer Dark" contrast: fg: 85.9 black: 37.1 diff --git a/themes/base16-bright-dark.yaml b/themes/base16-bright-dark.yaml index ffc74c53..0eec176c 100644 --- a/themes/base16-bright-dark.yaml +++ b/themes/base16-bright-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Bright Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Base16 Bright Light" contrast: fg: 87.9 black: 14.2 diff --git a/themes/base16-bright-light.yaml b/themes/base16-bright-light.yaml index 1ffcc179..ceab43e5 100644 --- a/themes/base16-bright-light.yaml +++ b/themes/base16-bright-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Bright Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Base16 Bright Dark" contrast: fg: 88 black: 15.8 diff --git a/themes/base16-codeschool-dark.yaml b/themes/base16-codeschool-dark.yaml index f6192cf0..a5385e09 100644 --- a/themes/base16-codeschool-dark.yaml +++ b/themes/base16-codeschool-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Codeschool Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 232 + pair: "Base16 Codeschool Light" contrast: fg: 49.6 black: 0 diff --git a/themes/base16-codeschool-light.yaml b/themes/base16-codeschool-light.yaml index 6a145796..a2c0b6b0 100644 --- a/themes/base16-codeschool-light.yaml +++ b/themes/base16-codeschool-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Codeschool Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 244 + pair: "Base16 Codeschool Dark" contrast: fg: 73.6 black: 23.2 diff --git a/themes/base16-default-dark.yaml b/themes/base16-default-dark.yaml index f3fea806..e26f758f 100644 --- a/themes/base16-default-dark.yaml +++ b/themes/base16-default-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Default Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Base16 Default Light" contrast: fg: 81.8 black: 0 diff --git a/themes/base16-default-light.yaml b/themes/base16-default-light.yaml index 49c1827e..14873a21 100644 --- a/themes/base16-default-light.yaml +++ b/themes/base16-default-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Default Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Base16 Default Dark" contrast: fg: 92.8 black: 16.3 diff --git a/themes/base16-eighties-dark.yaml b/themes/base16-eighties-dark.yaml index 6294deb0..a2fe2a06 100644 --- a/themes/base16-eighties-dark.yaml +++ b/themes/base16-eighties-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Eighties Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Base16 Eighties Light" contrast: fg: 73.7 black: 10.1 diff --git a/themes/base16-eighties-light.yaml b/themes/base16-eighties-light.yaml index d56c4168..66b39e8d 100644 --- a/themes/base16-eighties-light.yaml +++ b/themes/base16-eighties-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Eighties Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Base16 Eighties Dark" contrast: fg: 78.7 black: 16.1 diff --git a/themes/base16-embers-dark.yaml b/themes/base16-embers-dark.yaml index 7d1e33de..57f8157c 100644 --- a/themes/base16-embers-dark.yaml +++ b/themes/base16-embers-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Embers Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: "Base16 Embers Light" contrast: fg: 47.7 black: 0 diff --git a/themes/base16-embers-light.yaml b/themes/base16-embers-light.yaml index cdc2c29c..9db9bdc3 100644 --- a/themes/base16-embers-light.yaml +++ b/themes/base16-embers-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Embers Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Base16 Embers Dark" contrast: fg: 71.9 black: 29.9 diff --git a/themes/base16-flat-dark.yaml b/themes/base16-flat-dark.yaml index 01ee0382..2ca56352 100644 --- a/themes/base16-flat-dark.yaml +++ b/themes/base16-flat-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Flat Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: "Base16 Flat Light" contrast: fg: 79.2 black: 30.7 diff --git a/themes/base16-flat-light.yaml b/themes/base16-flat-light.yaml index d4bf0fa5..2d88888c 100644 --- a/themes/base16-flat-light.yaml +++ b/themes/base16-flat-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Flat Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Base16 Flat Dark" contrast: fg: 53 black: 0 diff --git a/themes/base16-google-dark.yaml b/themes/base16-google-dark.yaml index 8410c0fc..686f0228 100644 --- a/themes/base16-google-dark.yaml +++ b/themes/base16-google-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Google Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: "Base16 Google Light" contrast: fg: 70.9 black: 0 diff --git a/themes/base16-google-light.yaml b/themes/base16-google-light.yaml index 5c7cdea2..1bf1f81e 100644 --- a/themes/base16-google-light.yaml +++ b/themes/base16-google-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Google Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "Base16 Google Dark" contrast: fg: 96 black: 30 diff --git a/themes/base16-grayscale-dark.yaml b/themes/base16-grayscale-dark.yaml index 9d17aac5..4410096e 100644 --- a/themes/base16-grayscale-dark.yaml +++ b/themes/base16-grayscale-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Grayscale Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: "Base16 Grayscale Light" contrast: fg: 64.2 black: 10.1 diff --git a/themes/base16-grayscale-light.yaml b/themes/base16-grayscale-light.yaml index 9d801fb6..9c05d42e 100644 --- a/themes/base16-grayscale-light.yaml +++ b/themes/base16-grayscale-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Grayscale Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: "Base16 Grayscale Dark" contrast: fg: 87.1 black: 33 diff --git a/themes/base16-green-screen-dark.yaml b/themes/base16-green-screen-dark.yaml index b5b26264..2941ad7f 100644 --- a/themes/base16-green-screen-dark.yaml +++ b/themes/base16-green-screen-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Green Screen Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 142 + pair: "Base16 Green Screen Light" contrast: fg: 51.9 black: 11.6 diff --git a/themes/base16-green-screen-light.yaml b/themes/base16-green-screen-light.yaml index 8972683b..f6f47684 100644 --- a/themes/base16-green-screen-light.yaml +++ b/themes/base16-green-screen-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Green Screen Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: 142 + pair: "Base16 Green Screen Dark" contrast: fg: 70.8 black: 30.2 diff --git a/themes/base16-harmonic16-dark.yaml b/themes/base16-harmonic16-dark.yaml index 662cfda6..deee5c5f 100644 --- a/themes/base16-harmonic16-dark.yaml +++ b/themes/base16-harmonic16-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Harmonic16 Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 249 + pair: "Base16 Harmonic16 Light" contrast: fg: 79.4 black: 16.5 diff --git a/themes/base16-harmonic16-light.yaml b/themes/base16-harmonic16-light.yaml index b393f2e0..23848810 100644 --- a/themes/base16-harmonic16-light.yaml +++ b/themes/base16-harmonic16-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Harmonic16 Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Base16 Harmonic16 Dark" contrast: fg: 80.2 black: 18.6 diff --git a/themes/base16-isotope-dark.yaml b/themes/base16-isotope-dark.yaml index 1568a5f7..879b7c50 100644 --- a/themes/base16-isotope-dark.yaml +++ b/themes/base16-isotope-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Isotope Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Base16 Isotope Light" contrast: fg: 78.1 black: 20.5 diff --git a/themes/base16-isotope-light.yaml b/themes/base16-isotope-light.yaml index 2b4a91bd..50992326 100644 --- a/themes/base16-isotope-light.yaml +++ b/themes/base16-isotope-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Isotope Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Base16 Isotope Dark" contrast: fg: 81.3 black: 25 diff --git a/themes/base16-marrakesh-dark.yaml b/themes/base16-marrakesh-dark.yaml index 966ea984..b68053cb 100644 --- a/themes/base16-marrakesh-dark.yaml +++ b/themes/base16-marrakesh-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Marrakesh Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 84 + pair: "Base16 Marrakesh Light" contrast: fg: 39.4 black: 16.7 diff --git a/themes/base16-marrakesh-light.yaml b/themes/base16-marrakesh-light.yaml index 4909c6d4..d8d8ba6f 100644 --- a/themes/base16-marrakesh-light.yaml +++ b/themes/base16-marrakesh-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Marrakesh Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "teal" hue: 102 + pair: "Base16 Marrakesh Dark" contrast: fg: 74 black: 51 diff --git a/themes/base16-mocha-dark.yaml b/themes/base16-mocha-dark.yaml index 7864266c..f6e00b45 100644 --- a/themes/base16-mocha-dark.yaml +++ b/themes/base16-mocha-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Mocha Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 70 + pair: "Base16 Mocha Light" contrast: fg: 68.3 black: 10.2 diff --git a/themes/base16-mocha-light.yaml b/themes/base16-mocha-light.yaml index 574603a3..38533a75 100644 --- a/themes/base16-mocha-light.yaml +++ b/themes/base16-mocha-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Mocha Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Base16 Mocha Dark" contrast: fg: 76.5 black: 19.3 diff --git a/themes/base16-monokai-dark.yaml b/themes/base16-monokai-dark.yaml index f47ee80c..8dd33aeb 100644 --- a/themes/base16-monokai-dark.yaml +++ b/themes/base16-monokai-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Monokai Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 115 + pair: "Base16 Monokai Light" contrast: fg: 99.6 black: 7.8 diff --git a/themes/base16-monokai-light.yaml b/themes/base16-monokai-light.yaml index d0aa76b2..80788f21 100644 --- a/themes/base16-monokai-light.yaml +++ b/themes/base16-monokai-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Monokai Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Base16 Monokai Dark" contrast: fg: 87.1 black: 0 diff --git a/themes/base16-ocean-dark.yaml b/themes/base16-ocean-dark.yaml index e37b3ac2..fa94b17a 100644 --- a/themes/base16-ocean-dark.yaml +++ b/themes/base16-ocean-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Ocean Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 266 + pair: "Base16 Ocean Light" contrast: fg: 66.2 black: 12.8 diff --git a/themes/base16-ocean-light.yaml b/themes/base16-ocean-light.yaml index 6bfcc480..386f793e 100644 --- a/themes/base16-ocean-light.yaml +++ b/themes/base16-ocean-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Ocean Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Base16 Ocean Dark" contrast: fg: 75.7 black: 23 diff --git a/themes/base16-oceanicnext-dark.yaml b/themes/base16-oceanicnext-dark.yaml index dd50f7f4..fa0d6e50 100644 --- a/themes/base16-oceanicnext-dark.yaml +++ b/themes/base16-oceanicnext-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 OceanicNext Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 234 + pair: "Base16 OceanicNext Light" contrast: fg: 67.6 black: 14.2 diff --git a/themes/base16-oceanicnext-light.yaml b/themes/base16-oceanicnext-light.yaml index 3fa8be4b..0d2bd070 100644 --- a/themes/base16-oceanicnext-light.yaml +++ b/themes/base16-oceanicnext-light.yaml @@ -2,7 +2,7 @@ name: "Base16 OceanicNext Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 263 + pair: "Base16 OceanicNext Dark" contrast: fg: 64.5 black: 11.8 diff --git a/themes/base16-paraiso-dark.yaml b/themes/base16-paraiso-dark.yaml index 978539cb..843f18f2 100644 --- a/themes/base16-paraiso-dark.yaml +++ b/themes/base16-paraiso-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Paraiso Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 329 + pair: "Base16 Paraiso Light" contrast: fg: 47.5 black: 7.7 diff --git a/themes/base16-paraiso-light.yaml b/themes/base16-paraiso-light.yaml index 81b78c2c..a711543c 100644 --- a/themes/base16-paraiso-light.yaml +++ b/themes/base16-paraiso-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Paraiso Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 113 + pair: "Base16 Paraiso Dark" contrast: fg: 78.1 black: 37.8 diff --git a/themes/base16-pop-dark.yaml b/themes/base16-pop-dark.yaml index 8019b655..74eefefc 100644 --- a/themes/base16-pop-dark.yaml +++ b/themes/base16-pop-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Pop Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Base16 Pop Light" contrast: fg: 78.1 black: 0 diff --git a/themes/base16-pop-light.yaml b/themes/base16-pop-light.yaml index efcea4bc..367a07ac 100644 --- a/themes/base16-pop-light.yaml +++ b/themes/base16-pop-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Pop Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Base16 Pop Dark" contrast: fg: 99.6 black: 25 diff --git a/themes/base16-railscasts-dark.yaml b/themes/base16-railscasts-dark.yaml index aab8c1d0..622cb200 100644 --- a/themes/base16-railscasts-dark.yaml +++ b/themes/base16-railscasts-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Railscasts Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Base16 Railscasts Light" contrast: fg: 84.9 black: 0 diff --git a/themes/base16-railscasts-light.yaml b/themes/base16-railscasts-light.yaml index 73c9f513..ad481f55 100644 --- a/themes/base16-railscasts-light.yaml +++ b/themes/base16-railscasts-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Railscasts Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Base16 Railscasts Dark" contrast: fg: 89.2 black: 10.1 diff --git a/themes/base16-shapeshifter-dark.yaml b/themes/base16-shapeshifter-dark.yaml index 53088fd5..7e2ff41b 100644 --- a/themes/base16-shapeshifter-dark.yaml +++ b/themes/base16-shapeshifter-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Shapeshifter Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Base16 Shapeshifter Light" contrast: fg: 56.8 black: 0 diff --git a/themes/base16-shapeshifter-light.yaml b/themes/base16-shapeshifter-light.yaml index ebd8b98e..8658690d 100644 --- a/themes/base16-shapeshifter-light.yaml +++ b/themes/base16-shapeshifter-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Shapeshifter Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "Base16 Shapeshifter Dark" contrast: fg: 100.2 black: 41.7 diff --git a/themes/base16-solarized-dark.yaml b/themes/base16-solarized-dark.yaml index 5e1d65c1..7450baaa 100644 --- a/themes/base16-solarized-dark.yaml +++ b/themes/base16-solarized-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Solarized Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: "Base16 Solarized Light" contrast: fg: 46.4 black: 21.5 diff --git a/themes/base16-solarized-light.yaml b/themes/base16-solarized-light.yaml index 2dcd4dae..41b1d08e 100644 --- a/themes/base16-solarized-light.yaml +++ b/themes/base16-solarized-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Solarized Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Base16 Solarized Dark" contrast: fg: 71.6 black: 46.7 diff --git a/themes/base16-summerfruit-dark.yaml b/themes/base16-summerfruit-dark.yaml index d9340d87..ebc2ea86 100644 --- a/themes/base16-summerfruit-dark.yaml +++ b/themes/base16-summerfruit-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Summerfruit Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Base16 Summerfruit Light" contrast: fg: 77.2 black: 0 diff --git a/themes/base16-summerfruit-light.yaml b/themes/base16-summerfruit-light.yaml index 56255b6a..d02c2540 100644 --- a/themes/base16-summerfruit-light.yaml +++ b/themes/base16-summerfruit-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Summerfruit Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Base16 Summerfruit Dark" contrast: fg: 105.5 black: 25 diff --git a/themes/base16-tomorrow-dark.yaml b/themes/base16-tomorrow-dark.yaml index 21116d40..1dec8836 100644 --- a/themes/base16-tomorrow-dark.yaml +++ b/themes/base16-tomorrow-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Tomorrow Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Base16 Tomorrow Light" contrast: fg: 79.8 black: 11.1 diff --git a/themes/base16-tomorrow-light.yaml b/themes/base16-tomorrow-light.yaml index 0a4fc4dc..2629cab8 100644 --- a/themes/base16-tomorrow-light.yaml +++ b/themes/base16-tomorrow-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Tomorrow Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Base16 Tomorrow Dark" contrast: fg: 89.2 black: 21.6 diff --git a/themes/base16-twilight-dark.yaml b/themes/base16-twilight-dark.yaml index db0b209c..07fb1346 100644 --- a/themes/base16-twilight-dark.yaml +++ b/themes/base16-twilight-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Twilight Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Base16 Twilight Light" contrast: fg: 52.8 black: 10.3 diff --git a/themes/base16-twilight-light.yaml b/themes/base16-twilight-light.yaml index 186c4012..dfa0d9f7 100644 --- a/themes/base16-twilight-light.yaml +++ b/themes/base16-twilight-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Twilight Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Base16 Twilight Dark" contrast: fg: 90.2 black: 47.4 diff --git a/themes/base16-unikitty-dark.yaml b/themes/base16-unikitty-dark.yaml index cc77573b..fd1db6a7 100644 --- a/themes/base16-unikitty-dark.yaml +++ b/themes/base16-unikitty-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Unikitty Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 311 + pair: "Base16 Unikitty Light" contrast: fg: 61.5 black: 18.1 diff --git a/themes/base16-unikitty-light.yaml b/themes/base16-unikitty-light.yaml index 00c0e2da..e6ec9c8d 100644 --- a/themes/base16-unikitty-light.yaml +++ b/themes/base16-unikitty-light.yaml @@ -2,7 +2,7 @@ name: "Base16 Unikitty Light" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Base16 Unikitty Dark" contrast: fg: 77 black: 32.1 diff --git a/themes/base16-woodland-dark.yaml b/themes/base16-woodland-dark.yaml index b6ec4f00..addd419a 100644 --- a/themes/base16-woodland-dark.yaml +++ b/themes/base16-woodland-dark.yaml @@ -2,7 +2,7 @@ name: "Base16 Woodland Dark" source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" - installs: 159085 + installs: 159110 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 72 + pair: null contrast: fg: 65.7 black: 0 diff --git a/themes/basic-black.yaml b/themes/basic-black.yaml index b4e36b85..1a4eb622 100644 --- a/themes/basic-black.yaml +++ b/themes/basic-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 102.9 black: 0 diff --git a/themes/basic-blue.yaml b/themes/basic-blue.yaml index 7278bd14..a02efc6b 100644 --- a/themes/basic-blue.yaml +++ b/themes/basic-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 277 + pair: null contrast: fg: 57.3 black: 0 diff --git a/themes/basterdized.yaml b/themes/basterdized.yaml index f510cef7..8ec4adac 100644 --- a/themes/basterdized.yaml +++ b/themes/basterdized.yaml @@ -2,7 +2,7 @@ name: "Basterdized" source: marketplace_id: "nashpatty.basterdized" version: "1.0.0" - installs: 114 + installs: 115 author: "nashpatty" repo: "https://github.com/nashpatty/vs-code-basterdized" url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.basterdized" diff --git a/themes/bat.yaml b/themes/bat.yaml index b5d12414..e712b205 100644 --- a/themes/bat.yaml +++ b/themes/bat.yaml @@ -2,7 +2,7 @@ name: "bat" source: marketplace_id: "JohannesFreutel.bat" version: "0.0.12" - installs: 3383 + installs: 3384 author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.bat" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 244 + pair: null contrast: fg: 36 black: 0 diff --git a/themes/batsignal-light-color-theme.yaml b/themes/batsignal-light-color-theme.yaml index fbe62cd1..d10d4a00 100644 --- a/themes/batsignal-light-color-theme.yaml +++ b/themes/batsignal-light-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/bazutya.yaml b/themes/bazutya.yaml index c8485801..4b127d95 100644 --- a/themes/bazutya.yaml +++ b/themes/bazutya.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 284 + pair: null contrast: fg: 79.6 black: 0 diff --git a/themes/bbbalabamasuntan.yaml b/themes/bbbalabamasuntan.yaml index fc3398cf..03258d12 100644 --- a/themes/bbbalabamasuntan.yaml +++ b/themes/bbbalabamasuntan.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 29 + pair: null contrast: fg: 64.4 black: 0 diff --git a/themes/bbbdark.yaml b/themes/bbbdark.yaml index 8a5ad89b..f698bbd0 100644 --- a/themes/bbbdark.yaml +++ b/themes/bbbdark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 0 black: 0 diff --git a/themes/bbbhotdogstand.yaml b/themes/bbbhotdogstand.yaml index 7231ff2e..dad28d42 100644 --- a/themes/bbbhotdogstand.yaml +++ b/themes/bbbhotdogstand.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 30 + pair: null contrast: fg: 23.9 black: 0 diff --git a/themes/bbogdanov-dark.yaml b/themes/bbogdanov-dark.yaml index 5ff0f260..c24cc424 100644 --- a/themes/bbogdanov-dark.yaml +++ b/themes/bbogdanov-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "BBogdanov Light" contrast: fg: 76.5 black: 0 diff --git a/themes/bbogdanov-light.yaml b/themes/bbogdanov-light.yaml index 3528ef8f..e14da7dd 100644 --- a/themes/bbogdanov-light.yaml +++ b/themes/bbogdanov-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "BBogdanov Dark" contrast: fg: 98.7 black: 0 diff --git a/themes/bc-theme.yaml b/themes/bc-theme.yaml index 734a3bb4..e16ffbc6 100644 --- a/themes/bc-theme.yaml +++ b/themes/bc-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 81.3 black: 0 diff --git a/themes/beacrisg.yaml b/themes/beacrisg.yaml index 91384283..e83de66e 100644 --- a/themes/beacrisg.yaml +++ b/themes/beacrisg.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 313 + pair: null contrast: fg: 80.2 black: 0 diff --git a/themes/bedarx-obsidian.yaml b/themes/bedarx-obsidian.yaml index e6058cb6..9c684a31 100644 --- a/themes/bedarx-obsidian.yaml +++ b/themes/bedarx-obsidian.yaml @@ -2,7 +2,7 @@ name: "BedarX Obsidian" source: marketplace_id: "saqibbedar.bedarx-pro" version: "2.0.0" - installs: 136 + installs: 137 author: "saqibbedar" repo: "https://github.com/saqibbedar/BedarX-Pro" url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 92.5 black: 0 diff --git a/themes/bedarx-onyx.yaml b/themes/bedarx-onyx.yaml index 254053d3..b564d42a 100644 --- a/themes/bedarx-onyx.yaml +++ b/themes/bedarx-onyx.yaml @@ -2,7 +2,7 @@ name: "BedarX Onyx" source: marketplace_id: "saqibbedar.bedarx-pro" version: "2.0.0" - installs: 136 + installs: 137 author: "saqibbedar" repo: "https://github.com/saqibbedar/BedarX-Pro" url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/bedarx-pearl.yaml b/themes/bedarx-pearl.yaml index 5fa99def..d3616bb3 100644 --- a/themes/bedarx-pearl.yaml +++ b/themes/bedarx-pearl.yaml @@ -2,7 +2,7 @@ name: "BedarX Pearl" source: marketplace_id: "saqibbedar.bedarx-pro" version: "2.0.0" - installs: 136 + installs: 137 author: "saqibbedar" repo: "https://github.com/saqibbedar/BedarX-Pro" url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.7 black: 96.7 diff --git a/themes/bedarx-sapphire.yaml b/themes/bedarx-sapphire.yaml index 1099debc..06e46561 100644 --- a/themes/bedarx-sapphire.yaml +++ b/themes/bedarx-sapphire.yaml @@ -2,7 +2,7 @@ name: "BedarX Sapphire" source: marketplace_id: "saqibbedar.bedarx-pro" version: "2.0.0" - installs: 136 + installs: 137 author: "saqibbedar" repo: "https://github.com/saqibbedar/BedarX-Pro" url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 258 + pair: null contrast: fg: 81.6 black: 0 diff --git a/themes/bee-theme-color-theme-tow.yaml b/themes/bee-theme-color-theme-tow.yaml index 2fc88369..810c722a 100644 --- a/themes/bee-theme-color-theme-tow.yaml +++ b/themes/bee-theme-color-theme-tow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 104.2 black: 0 diff --git a/themes/bee-theme.yaml b/themes/bee-theme.yaml index 12fb78c7..a9fc594f 100644 --- a/themes/bee-theme.yaml +++ b/themes/bee-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 76.9 black: 0 diff --git a/themes/beerish.yaml b/themes/beerish.yaml index e55146e5..3a50b51d 100644 --- a/themes/beerish.yaml +++ b/themes/beerish.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 93.2 black: 106 diff --git a/themes/behavai-vitesse.yaml b/themes/behavai-vitesse.yaml index 1054ac3b..cb061803 100644 --- a/themes/behavai-vitesse.yaml +++ b/themes/behavai-vitesse.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 266 + pair: null contrast: fg: 82.1 black: 0 diff --git a/themes/behavai.yaml b/themes/behavai.yaml index 049a38f0..849961be 100644 --- a/themes/behavai.yaml +++ b/themes/behavai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/beloco-italic.yaml b/themes/beloco-italic.yaml deleted file mode 100644 index ca721abe..00000000 --- a/themes/beloco-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Beloco Italic" -source: - marketplace_id: "needcoder.theme-beloco-dark" - version: "1.0.1" - installs: 163 - author: "needcoder" - repo: "https://github.com/needcoder/beloco" - url: "https://marketplace.visualstudio.com/items?itemName=needcoder.theme-beloco-dark" -colors: - bg: "#282C34" - fg: "#A6B6B4" - black: "#42444D" - red: "#FC2E51" - green: "#25A45C" - yellow: "#FF9369" - blue: "#3375FE" - magenta: "#9F7EFE" - cyan: "#4483AA" - white: "#CDD3E0" - brightBlack: "#8F9AAE" - brightRed: "#FF637F" - brightGreen: "#3FC56A" - brightYellow: "#F9C858" - brightBlue: "#10B0FE" - brightMagenta: "#FF78F8" - brightCyan: "#5FB9BC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 264 - contrast: - fg: 56.8 - black: 0 - red: 34.6 - green: 38.7 - yellow: 55.5 - blue: 29.9 - magenta: 40.5 - cyan: 29.2 - white: 75.5 - brightBlack: 43.2 - brightRed: 43.7 - brightGreen: 54.4 - brightYellow: 73.2 - brightBlue: 50.8 - brightMagenta: 54 - brightCyan: 52.8 - brightWhite: 103.7 diff --git a/themes/benimaru.yaml b/themes/benimaru.yaml deleted file mode 100644 index c8896dab..00000000 --- a/themes/benimaru.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Benimaru" -source: - marketplace_id: "HenriLima05.shadowrealm-rebirth" - version: "1.0.0" - installs: 448 - author: "Henri Lima" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.shadowrealm-rebirth" -colors: - bg: "#1A1A1A" - fg: "#F2F2F2" - black: "#1A1A1A" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 98 - black: 0 - red: 26.4 - green: 52.7 - yellow: 85.3 - blue: 27.1 - magenta: 29.4 - cyan: 47.2 - white: 89.7 - brightBlack: 21.7 - brightRed: 38.2 - brightGreen: 63.2 - brightYellow: 95.3 - brightBlue: 39.7 - brightMagenta: 45 - brightCyan: 55.1 - brightWhite: 89.7 diff --git a/themes/berg.yaml b/themes/berg.yaml index 7f82189c..cb23cc32 100644 --- a/themes/berg.yaml +++ b/themes/berg.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 38.6 black: 0 diff --git a/themes/berkeley.yaml b/themes/berkeley.yaml index a2f4c50e..7b582c0c 100644 --- a/themes/berkeley.yaml +++ b/themes/berkeley.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.6 black: 0 diff --git a/themes/bernadoque-theme.yaml b/themes/bernadoque-theme.yaml index da7fbbb5..9c311980 100644 --- a/themes/bernadoque-theme.yaml +++ b/themes/bernadoque-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.2 black: 33.1 diff --git a/themes/berry-blast-theme.yaml b/themes/berry-blast-theme.yaml index 0908cec1..9b666fba 100644 --- a/themes/berry-blast-theme.yaml +++ b/themes/berry-blast-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 352 + pair: null contrast: fg: 28.6 black: 53.2 diff --git a/themes/berry-latte-light.yaml b/themes/berry-latte-light.yaml index 7a2d0c73..fd36b64a 100644 --- a/themes/berry-latte-light.yaml +++ b/themes/berry-latte-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 89.4 black: 89.4 diff --git a/themes/bersk.yaml b/themes/bersk.yaml index 773ff715..9b75575c 100644 --- a/themes/bersk.yaml +++ b/themes/bersk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 106.2 black: 0 diff --git a/themes/beru.yaml b/themes/beru.yaml index a8c6ba07..400eb131 100644 --- a/themes/beru.yaml +++ b/themes/beru.yaml @@ -2,7 +2,7 @@ name: "Beru" source: marketplace_id: "FullDev.beru-theme" version: "1.0.3" - installs: 238 + installs: 239 author: "FullDev" repo: "https://github.com/getBeru/beru-theme" url: "https://marketplace.visualstudio.com/items?itemName=FullDev.beru-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 64.7 black: 0 diff --git a/themes/best-themes-monokai-next.yaml b/themes/best-themes-monokai-next.yaml deleted file mode 100644 index 158b52aa..00000000 --- a/themes/best-themes-monokai-next.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Best Themes - Monokai Next" -source: - marketplace_id: "lakshits11.best-themes-redefined" - version: "0.4.6" - installs: 145966 - author: "Lakshit Somani" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=lakshits11.best-themes-redefined" -colors: - bg: "#272822" - fg: "#FDFFF1" - black: "#3B3C35" - red: "#F92672" - green: "#A6E22E" - yellow: "#E6DB74" - blue: "#FD971F" - magenta: "#AE81FF" - cyan: "#66D9EF" - white: "#FDFFF1" - brightBlack: "#6E7066" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E6DB74" - brightBlue: "#FD971F" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#FDFFF1" -meta: - mode: "dark" - accent: "red" - hue: 115 - contrast: - fg: 103.6 - black: 0 - red: 35 - green: 74.7 - yellow: 79.7 - blue: 56.4 - magenta: 44.2 - cyan: 71.1 - white: 103.6 - brightBlack: 23.6 - brightRed: 35 - brightGreen: 74.7 - brightYellow: 79.7 - brightBlue: 56.4 - brightMagenta: 44.2 - brightCyan: 71.1 - brightWhite: 103.6 diff --git a/themes/best-themes-one-monokai.yaml b/themes/best-themes-one-monokai.yaml index 97a1c233..55d03f96 100644 --- a/themes/best-themes-one-monokai.yaml +++ b/themes/best-themes-one-monokai.yaml @@ -1,11 +1,11 @@ name: "Best Themes - One Monokai" source: - marketplace_id: "lakshits11.best-themes-redefined" - version: "0.4.6" - installs: 145966 - author: "Lakshit Somani" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=lakshits11.best-themes-redefined" + marketplace_id: "EstevamSouza.the-best-themes-for-programmers" + version: "1.1.0" + installs: 4137 + author: "Estevam Souza" + repo: "https://github.com/estevam5s/extensions" + url: "https://marketplace.visualstudio.com/items?itemName=EstevamSouza.the-best-themes-for-programmers" colors: bg: "#1E222A" fg: "#ABB2BF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 58 black: 0 diff --git a/themes/better-coding-dark.yaml b/themes/better-coding-dark.yaml index 9771aa1e..e447dbfb 100644 --- a/themes/better-coding-dark.yaml +++ b/themes/better-coding-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 67 + pair: null contrast: fg: 74.7 black: 0 diff --git a/themes/better-oceanic-next.yaml b/themes/better-oceanic-next.yaml index 0de4ba8e..0ed41653 100644 --- a/themes/better-oceanic-next.yaml +++ b/themes/better-oceanic-next.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "blue" hue: 258 + pair: null contrast: fg: 83.5 black: 0 diff --git a/themes/better-selenized-dark.yaml b/themes/better-selenized-dark.yaml index f54275d9..bc012b1f 100644 --- a/themes/better-selenized-dark.yaml +++ b/themes/better-selenized-dark.yaml @@ -1,11 +1,11 @@ name: "Better Selenized Dark" source: - marketplace_id: "ginfuru.ginfuru-better-solarized-dark-theme" - version: "0.10.9" - installs: 146723 - author: "Ed Heltzel" - repo: "https://github.com/ginfuru/vscode-better-solarized" - url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.ginfuru-better-solarized-dark-theme" + marketplace_id: "joelsantos.darkerized-better-solarized-dark-theme" + version: "0.10.11" + installs: 566 + author: "joelsantos" + repo: "https://github.com/joelsantosjunior/vscode-better-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=joelsantos.darkerized-better-solarized-dark-theme" colors: bg: "#053D48" fg: "#C8D7D8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 215 + pair: null contrast: fg: 73.1 black: 94.7 diff --git a/themes/better-solarized-dark-italic.yaml b/themes/better-solarized-dark-italic.yaml index cb23d5fb..f6a49055 100644 --- a/themes/better-solarized-dark-italic.yaml +++ b/themes/better-solarized-dark-italic.yaml @@ -1,11 +1,11 @@ name: "Better Solarized Dark Italic" source: - marketplace_id: "ginfuru.ginfuru-better-solarized-dark-theme" - version: "0.10.9" - installs: 146723 - author: "Ed Heltzel" - repo: "https://github.com/ginfuru/vscode-better-solarized" - url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.ginfuru-better-solarized-dark-theme" + marketplace_id: "joelsantos.darkerized-better-solarized-dark-theme" + version: "0.10.11" + installs: 566 + author: "joelsantos" + repo: "https://github.com/joelsantosjunior/vscode-better-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=joelsantos.darkerized-better-solarized-dark-theme" colors: bg: "#002B36" fg: "#839496" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: null contrast: fg: 39.5 black: 0 diff --git a/themes/better-solarized-dark.yaml b/themes/better-solarized-dark.yaml index 9517579b..1180ebc1 100644 --- a/themes/better-solarized-dark.yaml +++ b/themes/better-solarized-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: null contrast: fg: 39.5 black: 89.5 diff --git a/themes/bhwm715-even-darker.yaml b/themes/bhwm715-even-darker.yaml index b9bf49ee..04504ef6 100644 --- a/themes/bhwm715-even-darker.yaml +++ b/themes/bhwm715-even-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 270 + pair: null contrast: fg: 76.8 black: 0 diff --git a/themes/bianconero.yaml b/themes/bianconero.yaml index 2be7c032..0c229238 100644 --- a/themes/bianconero.yaml +++ b/themes/bianconero.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 105.9 black: 105.9 diff --git a/themes/bibauporto-simple.yaml b/themes/bibauporto-simple.yaml deleted file mode 100644 index 98ce8aa6..00000000 --- a/themes/bibauporto-simple.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Bibauporto Simple" -source: - marketplace_id: "bibauporto.bibauporto-theme" - version: "0.1.0" - installs: 12 - author: "bibauporto" - repo: "https://github.com/bibauporto/bibauporto-vs-theme" - url: "https://marketplace.visualstudio.com/items?itemName=bibauporto.bibauporto-theme" -colors: - bg: "#000000" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 60.4 - black: 9.9 - red: 37.7 - green: 61.4 - yellow: 49.6 - blue: 50.7 - magenta: 40.1 - cyan: 53.5 - white: 84 - brightBlack: 16.5 - brightRed: 47.1 - brightGreen: 77.8 - brightYellow: 62.2 - brightBlue: 64.7 - brightMagenta: 51.3 - brightCyan: 68.8 - brightWhite: 91.7 diff --git a/themes/biddeew.yaml b/themes/biddeew.yaml index 6d0c9799..9f613633 100644 --- a/themes/biddeew.yaml +++ b/themes/biddeew.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 66.5 black: 0 diff --git a/themes/bigfish.yaml b/themes/bigfish.yaml index e0ba2468..0cf304fd 100644 --- a/themes/bigfish.yaml +++ b/themes/bigfish.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: null contrast: fg: 85.5 black: 0 diff --git a/themes/bigsur-gtk-theme-dark-blue.yaml b/themes/bigsur-gtk-theme-dark-blue.yaml index ca0e407a..48cc24ce 100644 --- a/themes/bigsur-gtk-theme-dark-blue.yaml +++ b/themes/bigsur-gtk-theme-dark-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 229 + pair: null contrast: fg: 87.1 black: 0 diff --git a/themes/bini-theme.yaml b/themes/bini-theme.yaml index 10b02aed..bb2a0183 100644 --- a/themes/bini-theme.yaml +++ b/themes/bini-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 51.1 black: 0 diff --git a/themes/bird.yaml b/themes/bird.yaml index ea6d2226..ccb82ebf 100644 --- a/themes/bird.yaml +++ b/themes/bird.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 65.7 black: 0 diff --git a/themes/bit-intense.yaml b/themes/bit-intense.yaml index 93ff79de..62dbd181 100644 --- a/themes/bit-intense.yaml +++ b/themes/bit-intense.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 88.2 black: 0 diff --git a/themes/bit-soft.yaml b/themes/bit-soft.yaml index 60bf507c..ee449c16 100644 --- a/themes/bit-soft.yaml +++ b/themes/bit-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85.3 black: 0 diff --git a/themes/bit.yaml b/themes/bit.yaml index 9313f528..c7e95432 100644 --- a/themes/bit.yaml +++ b/themes/bit.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 88.1 black: 0 diff --git a/themes/bitpurp-dark.yaml b/themes/bitpurp-dark.yaml index 6b7db121..d12976d2 100644 --- a/themes/bitpurp-dark.yaml +++ b/themes/bitpurp-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 305 + pair: null contrast: fg: 92.2 black: 17.3 diff --git a/themes/bits-theme-green-light.yaml b/themes/bits-theme-green-light.yaml index 3be7867b..0dcce957 100644 --- a/themes/bits-theme-green-light.yaml +++ b/themes/bits-theme-green-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 104.3 black: 104.3 diff --git a/themes/bits-theme-green.yaml b/themes/bits-theme-green.yaml index 1d1b7f5f..f8e842ec 100644 --- a/themes/bits-theme-green.yaml +++ b/themes/bits-theme-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 142 + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/bits-theme-light.yaml b/themes/bits-theme-light.yaml index 4c044321..36678aa9 100644 --- a/themes/bits-theme-light.yaml +++ b/themes/bits-theme-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 104.3 black: 104.3 diff --git a/themes/bits-theme-purple-light.yaml b/themes/bits-theme-purple-light.yaml index 4eea418e..e56f1ba3 100644 --- a/themes/bits-theme-purple-light.yaml +++ b/themes/bits-theme-purple-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 104.3 black: 104.3 diff --git a/themes/bits-theme-purple.yaml b/themes/bits-theme-purple.yaml index 79fbbec8..a3d24134 100644 --- a/themes/bits-theme-purple.yaml +++ b/themes/bits-theme-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 305 + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/bits-theme.yaml b/themes/bits-theme.yaml index 9d30119d..8a119d8d 100644 --- a/themes/bits-theme.yaml +++ b/themes/bits-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 251 + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/bl-nk.yaml b/themes/bl-nk.yaml index 968f8c4e..3859d2b2 100644 --- a/themes/bl-nk.yaml +++ b/themes/bl-nk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 50.3 black: 0 diff --git a/themes/black-back-dark-e-theme.yaml b/themes/black-back-dark-e-theme.yaml index 02575e8a..15bdbabc 100644 --- a/themes/black-back-dark-e-theme.yaml +++ b/themes/black-back-dark-e-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 96.2 black: 0 diff --git a/themes/black-color-theme.yaml b/themes/black-color-theme.yaml index 22fddb54..2bfaea7e 100644 --- a/themes/black-color-theme.yaml +++ b/themes/black-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/black-ocean.yaml b/themes/black-ocean.yaml index fd14fa0e..0a7d7d44 100644 --- a/themes/black-ocean.yaml +++ b/themes/black-ocean.yaml @@ -2,7 +2,7 @@ name: "Black Ocean" source: marketplace_id: "zamerick.black-ocean" version: "1.1.3" - installs: 87734 + installs: 87742 author: "zamerick" repo: "https://github.com/Zamerick/black-ocean" url: "https://marketplace.visualstudio.com/items?itemName=zamerick.black-ocean" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 86.6 black: 0 diff --git a/themes/black-on-gray.yaml b/themes/black-on-gray.yaml index 25f7eee3..c9622971 100644 --- a/themes/black-on-gray.yaml +++ b/themes/black-on-gray.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 46.4 black: 46.9 diff --git a/themes/black-pink-rose.yaml b/themes/black-pink-rose.yaml index 3b75cb0f..578ac611 100644 --- a/themes/black-pink-rose.yaml +++ b/themes/black-pink-rose.yaml @@ -2,7 +2,7 @@ name: "Black Pink Rose" source: marketplace_id: "abenavidesh.theme-blackpink" version: "0.0.5" - installs: 3276 + installs: 3278 author: "abenavidesh" repo: "https://github.com/abenavidesh/vs-blackpink-theme" url: "https://marketplace.visualstudio.com/items?itemName=abenavidesh.theme-blackpink" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 230 + pair: null contrast: fg: 71.8 black: 0 diff --git a/themes/black-purple.yaml b/themes/black-purple.yaml index 026585a0..263850fb 100644 --- a/themes/black-purple.yaml +++ b/themes/black-purple.yaml @@ -2,7 +2,7 @@ name: "Black Purple" source: marketplace_id: "VishalMaurya.zenith-ui" version: "0.2.4" - installs: 189 + installs: 191 author: "Vishal Maurya" repo: "https://github.com/maurya-07/zenith-ui" url: "https://marketplace.visualstudio.com/items?itemName=VishalMaurya.zenith-ui" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 88.5 black: 10.9 diff --git a/themes/black-rose.yaml b/themes/black-rose.yaml index 91b72c87..6516ac2f 100644 --- a/themes/black-rose.yaml +++ b/themes/black-rose.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 326 + pair: null contrast: fg: 88.8 black: 0 diff --git a/themes/black-theme.yaml b/themes/black-theme.yaml index df45dad4..eef6cc1d 100644 --- a/themes/black-theme.yaml +++ b/themes/black-theme.yaml @@ -1,49 +1,50 @@ -name: "black-theme" +name: "Black theme" source: - marketplace_id: "electropol-fr.coloredtheme" - version: "1.3.0" - installs: 4210 - author: "electropol.fr" - repo: "https://github.com/FrankSAURET/colored-theme" - url: "https://marketplace.visualstudio.com/items?itemName=electropol-fr.coloredtheme" + marketplace_id: "PriyankarPal.darkthemeforvscode" + version: "2.13.0" + installs: 767 + author: "Priyankar Pal" + repo: "https://github.com/priyankarpal/DarkThemeVsCode" + url: "https://marketplace.visualstudio.com/items?itemName=PriyankarPal.darkthemeforvscode" colors: - bg: "#262626" - fg: "#F6F6F6" - black: "#000000" - red: "#ED7D31" - green: "#70AD47" - yellow: "#FFC000" - blue: "#4472C4" - magenta: "#8064A2" - cyan: "#5B9BD5" - white: "#F6F6F6" - brightBlack: "#A5A5A5" - brightRed: "#F4B183" - brightGreen: "#A8D08D" - brightYellow: "#FFD965" - brightBlue: "#8EAADB" - brightMagenta: "#B2A1C7" - brightCyan: "#9CC3E5" - brightWhite: "#FFFFFF" + bg: "#1B1B1B" + fg: "#FFFFFF" + black: "#645B5B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#888181" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: mode: "dark" - accent: "yellow" + accent: "pink" hue: null + pair: null contrast: - fg: 98.9 - black: 0 - red: 45.8 - green: 46.5 - yellow: 71.7 - blue: 26.1 - magenta: 24.6 - cyan: 42.7 - white: 98.9 - brightBlack: 50.4 - brightRed: 65.3 - brightGreen: 68.1 - brightYellow: 82.7 - brightBlue: 52.6 - brightMagenta: 52 - brightCyan: 64.7 - brightWhite: 104.8 + fg: 106.4 + black: 17.8 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 34.5 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/blackai-theme.yaml b/themes/blackai-theme.yaml index 915e094c..fadfa53e 100644 --- a/themes/blackai-theme.yaml +++ b/themes/blackai-theme.yaml @@ -2,7 +2,7 @@ name: "blackai-theme" source: marketplace_id: "asilverio.blackai-visual-studio-code" version: "0.1.9" - installs: 51213 + installs: 51216 author: "asilverio" repo: "https://github.com/slipnox/blackai-theme" url: "https://marketplace.visualstudio.com/items?itemName=asilverio.blackai-visual-studio-code" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 102.9 black: 0 diff --git a/themes/blackberry.yaml b/themes/blackberry.yaml index 63b8f49d..538aa97d 100644 --- a/themes/blackberry.yaml +++ b/themes/blackberry.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 326 + pair: null contrast: fg: 58.4 black: 0 diff --git a/themes/blackbird-dusk.yaml b/themes/blackbird-dusk.yaml index 02a23b93..550f4f51 100644 --- a/themes/blackbird-dusk.yaml +++ b/themes/blackbird-dusk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 101.3 black: 0 diff --git a/themes/blackbird-midnight.yaml b/themes/blackbird-midnight.yaml index ec69d9e1..bd389ae1 100644 --- a/themes/blackbird-midnight.yaml +++ b/themes/blackbird-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 101.7 black: 0 diff --git a/themes/blackboard-plus.yaml b/themes/blackboard-plus.yaml index 3d787ccf..362b13d3 100644 --- a/themes/blackboard-plus.yaml +++ b/themes/blackboard-plus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 276 + pair: null contrast: fg: 103 black: 16.7 diff --git a/themes/blackcoffeedark.yaml b/themes/blackcoffeedark.yaml index b39f7606..618d70de 100644 --- a/themes/blackcoffeedark.yaml +++ b/themes/blackcoffeedark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 268 + pair: null contrast: fg: 99.9 black: 0 diff --git a/themes/blackdot.yaml b/themes/blackdot.yaml index 3259dc14..4d3d7999 100644 --- a/themes/blackdot.yaml +++ b/themes/blackdot.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.2 black: 9.7 diff --git a/themes/blacklite.yaml b/themes/blacklite.yaml index b1431466..e7c7c42b 100644 --- a/themes/blacklite.yaml +++ b/themes/blacklite.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 65.7 black: 0 diff --git a/themes/blackout.yaml b/themes/blackout.yaml index 99c7f327..788a0a9a 100644 --- a/themes/blackout.yaml +++ b/themes/blackout.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 87.9 black: 15.9 diff --git a/themes/blackpink.yaml b/themes/blackpink.yaml index 2124916f..f5b1390a 100644 --- a/themes/blackpink.yaml +++ b/themes/blackpink.yaml @@ -2,7 +2,7 @@ name: "BLACKPINK" source: marketplace_id: "banebo.black-pink-theme" version: "0.0.1" - installs: 3832 + installs: 3836 author: "banebo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=banebo.black-pink-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 8.1 diff --git a/themes/blackroulette.yaml b/themes/blackroulette.yaml index 7e30a159..4da66269 100644 --- a/themes/blackroulette.yaml +++ b/themes/blackroulette.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 88.5 black: 0 diff --git a/themes/blackula-theme.yaml b/themes/blackula-theme.yaml index 8f472bae..57040225 100644 --- a/themes/blackula-theme.yaml +++ b/themes/blackula-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/bladerunner-light.yaml b/themes/bladerunner-light.yaml index 633e5676..b40126d3 100644 --- a/themes/bladerunner-light.yaml +++ b/themes/bladerunner-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 95.9 black: 92.2 diff --git a/themes/bladerunner.yaml b/themes/bladerunner.yaml index 171cfb97..3d528daa 100644 --- a/themes/bladerunner.yaml +++ b/themes/bladerunner.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 234 + pair: null contrast: fg: 50.9 black: 0 diff --git a/themes/blah-dark.yaml b/themes/blah-dark.yaml index 3cf0ed39..d66603bb 100644 --- a/themes/blah-dark.yaml +++ b/themes/blah-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 244 + pair: null contrast: fg: 85.3 black: 0 diff --git a/themes/blank-ghibli.yaml b/themes/blank-ghibli.yaml index 4eb8653a..6b8f64ea 100644 --- a/themes/blank-ghibli.yaml +++ b/themes/blank-ghibli.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 38 black: 0 diff --git a/themes/blank-monochrome.yaml b/themes/blank-monochrome.yaml index e4f4634b..f78042b7 100644 --- a/themes/blank-monochrome.yaml +++ b/themes/blank-monochrome.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 38 black: 0 diff --git a/themes/blank-moonlight.yaml b/themes/blank-moonlight.yaml index b5aed850..737bef80 100644 --- a/themes/blank-moonlight.yaml +++ b/themes/blank-moonlight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 38 black: 0 diff --git a/themes/blank-s-theme-reborn.yaml b/themes/blank-s-theme-reborn.yaml index d5dcda79..883177b3 100644 --- a/themes/blank-s-theme-reborn.yaml +++ b/themes/blank-s-theme-reborn.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 283 + pair: null contrast: fg: 91.3 black: 0 diff --git a/themes/blank-uchiha.yaml b/themes/blank-uchiha.yaml index 96270a90..b09e2970 100644 --- a/themes/blank-uchiha.yaml +++ b/themes/blank-uchiha.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 37.6 black: 0 diff --git a/themes/blankeos-zen-theme.yaml b/themes/blankeos-zen-theme.yaml deleted file mode 100644 index 6e87c82f..00000000 --- a/themes/blankeos-zen-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "blankeos zen theme" -source: - marketplace_id: "Blankeos.blankeos-zen" - version: "0.0.3" - installs: 942 - author: "Blankeos" - repo: "https://github.com/blankeos/zen" - url: "https://marketplace.visualstudio.com/items?itemName=Blankeos.blankeos-zen" -colors: - bg: "#121212" - fg: "#A6ACCD" - black: "#121212" - red: "#D0679D" - green: "#5DE4C7" - yellow: "#FFFAC2" - blue: "#89DDFF" - magenta: "#F087BD" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#A6ACCD" - brightRed: "#D0679D" - brightGreen: "#5DE4C7" - brightYellow: "#FFFAC2" - brightBlue: "#ADD7FF" - brightMagenta: "#F087BD" - brightCyan: "#ADD7FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 57.6 - black: 0 - red: 39.7 - green: 76.8 - yellow: 102.4 - blue: 78.7 - magenta: 55.3 - cyan: 78.7 - white: 107.3 - brightBlack: 57.6 - brightRed: 39.7 - brightGreen: 76.8 - brightYellow: 102.4 - brightBlue: 79 - brightMagenta: 55.3 - brightCyan: 79 - brightWhite: 107.3 diff --git a/themes/blaze-orange.yaml b/themes/blaze-orange.yaml deleted file mode 100644 index 2833ab21..00000000 --- a/themes/blaze-orange.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "blaze-orange" -source: - marketplace_id: "BrennoFruhauf.ocms-theme" - version: "0.0.1" - installs: 394 - author: "Brenno Fruhauf" - repo: "https://github.com/brennofruhauf/ocms-theme" - url: "https://marketplace.visualstudio.com/items?itemName=BrennoFruhauf.ocms-theme" -colors: - bg: "#131313" - fg: "#EBEBEB" - black: "#FFFFFF" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 94.2 - black: 107.2 - red: 27.1 - green: 53.4 - yellow: 86 - blue: 27.8 - magenta: 30.1 - cyan: 47.9 - white: 90.4 - brightBlack: 22.4 - brightRed: 38.9 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.4 - brightMagenta: 45.7 - brightCyan: 55.8 - brightWhite: 90.4 diff --git a/themes/blinds-dark.yaml b/themes/blinds-dark.yaml index a673a7f3..1124b66c 100644 --- a/themes/blinds-dark.yaml +++ b/themes/blinds-dark.yaml @@ -2,7 +2,7 @@ name: "Blinds (Dark)" source: marketplace_id: "tankashing.blinds-theme" version: "8.0.0" - installs: 4025 + installs: 4027 author: "Tan Ka-Shing" repo: "https://github.com/orbulant/blinds-theme" url: "https://marketplace.visualstudio.com/items?itemName=tankashing.blinds-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 100.6 black: 0 diff --git a/themes/blink-contrast.yaml b/themes/blink-contrast.yaml index 11dad3a7..2e0b2e1b 100644 --- a/themes/blink-contrast.yaml +++ b/themes/blink-contrast.yaml @@ -1,11 +1,11 @@ name: "blink-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#131719" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.9 black: 0 diff --git a/themes/blink-light.yaml b/themes/blink-light.yaml index 422da0fb..1bd280c9 100644 --- a/themes/blink-light.yaml +++ b/themes/blink-light.yaml @@ -1,11 +1,11 @@ name: "blink-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#6A7E89" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 69.3 black: 0 diff --git a/themes/blink.yaml b/themes/blink.yaml index 91660245..5a3a840d 100644 --- a/themes/blink.yaml +++ b/themes/blink.yaml @@ -1,11 +1,11 @@ name: "blink" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#283035" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 235 + pair: null contrast: fg: 70 black: 0 diff --git a/themes/bloody-pie.yaml b/themes/bloody-pie.yaml index c906dcec..afbb58f7 100644 --- a/themes/bloody-pie.yaml +++ b/themes/bloody-pie.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 98.1 black: 0 diff --git a/themes/bloom-1-1-0.yaml b/themes/bloom-1-1-0.yaml index 971b55b3..c2b4697a 100644 --- a/themes/bloom-1-1-0.yaml +++ b/themes/bloom-1-1-0.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 65.7 black: 34.8 diff --git a/themes/blowington.yaml b/themes/blowington.yaml index eb472c53..6aed1523 100644 --- a/themes/blowington.yaml +++ b/themes/blowington.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 195 + pair: null contrast: fg: 59.2 black: 0 diff --git a/themes/blube-dark-light.yaml b/themes/blube-dark-light.yaml index a952bccb..75d83d52 100644 --- a/themes/blube-dark-light.yaml +++ b/themes/blube-dark-light.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 275 + pair: null contrast: fg: 42.8 black: 0 diff --git a/themes/blue-cheese.yaml b/themes/blue-cheese.yaml index 130cfcda..63cb6bb7 100644 --- a/themes/blue-cheese.yaml +++ b/themes/blue-cheese.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 83.7 black: 0 diff --git a/themes/blue-color-theme.yaml b/themes/blue-color-theme.yaml index aeeb9f62..4953f650 100644 --- a/themes/blue-color-theme.yaml +++ b/themes/blue-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 105.8 black: 0 diff --git a/themes/blue-dark-theme.yaml b/themes/blue-dark-theme.yaml index 6e9d31b5..7320a470 100644 --- a/themes/blue-dark-theme.yaml +++ b/themes/blue-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: "Blue Light Theme" contrast: fg: 74.7 black: 0 diff --git a/themes/blue-day.yaml b/themes/blue-day.yaml index 5ac10d0c..c7dce089 100644 --- a/themes/blue-day.yaml +++ b/themes/blue-day.yaml @@ -2,7 +2,7 @@ name: "Blue-Day" source: marketplace_id: "thiagobessimo.bluenight" version: "1.0.1" - installs: 1347 + installs: 1348 author: "Thiago P B Bessimo" repo: "https://github.com/thiagobessimo/bluenight" url: "https://marketplace.visualstudio.com/items?itemName=thiagobessimo.bluenight" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 101.7 black: 0 diff --git a/themes/blue-faded.yaml b/themes/blue-faded.yaml index feccb283..ff514577 100644 --- a/themes/blue-faded.yaml +++ b/themes/blue-faded.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 258 + pair: null contrast: fg: 95.7 black: 0 diff --git a/themes/blue-green-theme.yaml b/themes/blue-green-theme.yaml index 9590d277..3b29a905 100644 --- a/themes/blue-green-theme.yaml +++ b/themes/blue-green-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 205 + pair: null contrast: fg: 54.5 black: 0 diff --git a/themes/blue-hacker-theme.yaml b/themes/blue-hacker-theme.yaml index c5d5869e..c12731fe 100644 --- a/themes/blue-hacker-theme.yaml +++ b/themes/blue-hacker-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 263 + pair: null contrast: fg: 85.4 black: 0 diff --git a/themes/blue-light-filter-dark.yaml b/themes/blue-light-filter-dark.yaml index f1e0af48..5a656853 100644 --- a/themes/blue-light-filter-dark.yaml +++ b/themes/blue-light-filter-dark.yaml @@ -2,7 +2,7 @@ name: "Blue Light Filter - Dark" source: marketplace_id: "SakshamYadav.blue-light-filter-theme" version: "1.0.0" - installs: 153 + installs: 156 author: "Saksham Yadav" repo: "https://github.com/Sakshamyadav15/GitCode" url: "https://marketplace.visualstudio.com/items?itemName=SakshamYadav.blue-light-filter-theme" diff --git a/themes/blue-light-filter-warm-dark.yaml b/themes/blue-light-filter-warm-dark.yaml index 014b9c01..e9416854 100644 --- a/themes/blue-light-filter-warm-dark.yaml +++ b/themes/blue-light-filter-warm-dark.yaml @@ -2,7 +2,7 @@ name: "Blue Light Filter - Warm Dark" source: marketplace_id: "SakshamYadav.blue-light-filter-theme" version: "1.0.0" - installs: 153 + installs: 156 author: "Saksham Yadav" repo: "https://github.com/Sakshamyadav15/GitCode" url: "https://marketplace.visualstudio.com/items?itemName=SakshamYadav.blue-light-filter-theme" diff --git a/themes/blue-light-theme.yaml b/themes/blue-light-theme.yaml index 7dd74256..20af6dc9 100644 --- a/themes/blue-light-theme.yaml +++ b/themes/blue-light-theme.yaml @@ -2,7 +2,7 @@ name: "Blue Light Theme" source: marketplace_id: "msnilshartmann.blue-light" version: "0.6.4" - installs: 94952 + installs: 94971 author: "Nils Hartmann" repo: "https://github.com/nilshartmann/vscode-blue-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=msnilshartmann.blue-light" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Blue Dark theme" contrast: fg: 53.6 black: 104.3 diff --git a/themes/blue-moves-color-theme.yaml b/themes/blue-moves-color-theme.yaml index 212ec35a..0f1f620a 100644 --- a/themes/blue-moves-color-theme.yaml +++ b/themes/blue-moves-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 259 + pair: null contrast: fg: 54.3 black: 0 diff --git a/themes/blue-moves-darker-color-theme.yaml b/themes/blue-moves-darker-color-theme.yaml index d13e7649..bdda647e 100644 --- a/themes/blue-moves-darker-color-theme.yaml +++ b/themes/blue-moves-darker-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 262 + pair: null contrast: fg: 54.9 black: 0 diff --git a/themes/blue-neon.yaml b/themes/blue-neon.yaml index 07d500d9..e46fb16b 100644 --- a/themes/blue-neon.yaml +++ b/themes/blue-neon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 52.8 black: 0 diff --git a/themes/blue-night.yaml b/themes/blue-night.yaml index 4e32013d..ababe16a 100644 --- a/themes/blue-night.yaml +++ b/themes/blue-night.yaml @@ -2,7 +2,7 @@ name: "Blue-Night" source: marketplace_id: "thiagobessimo.bluenight" version: "1.0.1" - installs: 1347 + installs: 1348 author: "Thiago P B Bessimo" repo: "https://github.com/thiagobessimo/bluenight" url: "https://marketplace.visualstudio.com/items?itemName=thiagobessimo.bluenight" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 251 + pair: null contrast: fg: 103.1 black: 0 diff --git a/themes/blue.yaml b/themes/blue.yaml index 3e21dee7..89b84560 100644 --- a/themes/blue.yaml +++ b/themes/blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 71.7 black: 0 diff --git a/themes/blueberry-dark-theme.yaml b/themes/blueberry-dark-theme.yaml index 3541690f..e256fccd 100644 --- a/themes/blueberry-dark-theme.yaml +++ b/themes/blueberry-dark-theme.yaml @@ -1,11 +1,11 @@ name: "Blueberry dark theme" source: - marketplace_id: "peymanslh.blueberry-dark-theme" - version: "1.1.1" - installs: 95862 - author: "peymanslh" - repo: "https://github.com/peymanslh/vscode-blueberry-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=peymanslh.blueberry-dark-theme" + marketplace_id: "kachick.blueberry-brackets-dark-theme" + version: "1.2.0" + installs: 554 + author: "Kenichi Kamiya" + repo: "https://github.com/kachick/vscode-blueberry-brackets-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kachick.blueberry-brackets-dark-theme" colors: bg: "#242938" fg: "#A6ACCD" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 270 + pair: null contrast: fg: 54.4 black: 23.7 diff --git a/themes/blueberry-theme.yaml b/themes/blueberry-theme.yaml index a798653c..c7bb4bf0 100644 --- a/themes/blueberry-theme.yaml +++ b/themes/blueberry-theme.yaml @@ -2,7 +2,7 @@ name: "Blueberry Theme" source: marketplace_id: "sylten.strawberry-theme" version: "1.0.5" - installs: 8896 + installs: 8899 author: "Jonas Siltamäki Håkansson" repo: "https://github.com/sylten/strawberry-theme" url: "https://marketplace.visualstudio.com/items?itemName=sylten.strawberry-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 229 + pair: null contrast: fg: 76.6 black: 34.3 diff --git a/themes/bluebracket-theme.yaml b/themes/bluebracket-theme.yaml index a5ecaf84..4f494879 100644 --- a/themes/bluebracket-theme.yaml +++ b/themes/bluebracket-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 239 + pair: null contrast: fg: 105.5 black: 25.8 diff --git a/themes/bluedark.yaml b/themes/bluedark.yaml index 2ab73f5f..4599209e 100644 --- a/themes/bluedark.yaml +++ b/themes/bluedark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 257 + pair: null contrast: fg: 56.9 black: 0 diff --git a/themes/bluegreenspace.yaml b/themes/bluegreenspace.yaml index 7eeb597b..d3738671 100644 --- a/themes/bluegreenspace.yaml +++ b/themes/bluegreenspace.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 113 + pair: null contrast: fg: 99.3 black: 0 diff --git a/themes/bluelili-color-theme.yaml b/themes/bluelili-color-theme.yaml index a7584637..3e935003 100644 --- a/themes/bluelili-color-theme.yaml +++ b/themes/bluelili-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 36.8 black: 0 diff --git a/themes/blueorange.yaml b/themes/blueorange.yaml index 21c490b6..9dae7a47 100644 --- a/themes/blueorange.yaml +++ b/themes/blueorange.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: null contrast: fg: 87.7 black: 0 diff --git a/themes/bluered-theme.yaml b/themes/bluered-theme.yaml index 5c81e635..5a93eca2 100644 --- a/themes/bluered-theme.yaml +++ b/themes/bluered-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 263 + pair: null contrast: fg: 71.6 black: 8.8 diff --git a/themes/bluesea.yaml b/themes/bluesea.yaml index 62c0d8f4..a5bfa0d8 100644 --- a/themes/bluesea.yaml +++ b/themes/bluesea.yaml @@ -1,13 +1,13 @@ name: "BlueSea" source: - marketplace_id: "YesCode.neutral" - version: "0.0.9" - installs: 608 + marketplace_id: "YesCode.morita" + version: "0.0.18" + installs: 228 author: "YesCode" - repo: "https://github.com/yesomac/NeutralThemeVSC" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.neutral" + repo: "https://github.com/yesomac/MyThemes" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" colors: - bg: "#09021D" + bg: "#2B2731" fg: "#F7EEFF" black: "#1D2021" red: "#FB543F" @@ -28,22 +28,23 @@ colors: meta: mode: "dark" accent: "orange" - hue: 292 + hue: 303 + pair: null contrast: - fg: 98.7 + fg: 95.3 black: 0 - red: 42.8 - green: 61.8 - yellow: 73.9 - blue: 48.4 - magenta: 20.4 - cyan: 50.3 - white: 48.1 - brightBlack: 19.4 - brightRed: 42.8 - brightGreen: 103.3 - brightYellow: 59.6 - brightBlue: 19.6 - brightMagenta: 20.4 - brightCyan: 50.3 - brightWhite: 99.7 + red: 39.4 + green: 58.4 + yellow: 70.5 + blue: 44.9 + magenta: 16.9 + cyan: 46.9 + white: 44.7 + brightBlack: 16 + brightRed: 39.4 + brightGreen: 99.9 + brightYellow: 56.2 + brightBlue: 16.1 + brightMagenta: 16.9 + brightCyan: 46.9 + brightWhite: 96.3 diff --git a/themes/bluespace-s.yaml b/themes/bluespace-s.yaml index 74d28f36..2297547f 100644 --- a/themes/bluespace-s.yaml +++ b/themes/bluespace-s.yaml @@ -7,7 +7,7 @@ source: repo: "https://github.com/yesomac/BlueSpaceVSC" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.bluespace" colors: - bg: "#16181F" + bg: "#232530" fg: "#EEFFFF" black: "#1D2021" red: "#FB543F" @@ -28,22 +28,23 @@ colors: meta: mode: "dark" accent: "orange" - hue: 273 + hue: 277 + pair: null contrast: - fg: 104.4 + fg: 102.6 black: 0 - red: 41.8 - green: 60.8 - yellow: 72.9 - blue: 47.4 - magenta: 19.4 - cyan: 49.3 - white: 47.1 - brightBlack: 18.5 - brightRed: 41.8 - brightGreen: 90.8 - brightYellow: 96.4 - brightBlue: 18.6 - brightMagenta: 19.4 - brightCyan: 49.3 - brightWhite: 98.7 + red: 40 + green: 59 + yellow: 71.1 + blue: 45.5 + magenta: 17.5 + cyan: 47.4 + white: 45.2 + brightBlack: 16.6 + brightRed: 40 + brightGreen: 89 + brightYellow: 94.6 + brightBlue: 16.7 + brightMagenta: 17.5 + brightCyan: 47.4 + brightWhite: 96.9 diff --git a/themes/bluespace.yaml b/themes/bluespace.yaml index d4fe2bf4..4ea768f6 100644 --- a/themes/bluespace.yaml +++ b/themes/bluespace.yaml @@ -1,14 +1,14 @@ name: "BlueSpace" source: - marketplace_id: "YesCode.bluespace" - version: "0.0.22" - installs: 208 + marketplace_id: "YesCode.only-dark-theme" + version: "0.0.16" + installs: 383 author: "YesCode" - repo: "https://github.com/yesomac/BlueSpaceVSC" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.bluespace" + repo: "https://github.com/yesomac/only_dark" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" colors: - bg: "#02031D" - fg: "#FFFFFF" + bg: "#1A1A1A" + fg: "#DDDDDD" black: "#1D211D" red: "#FB543F" green: "#95C085" @@ -20,7 +20,7 @@ colors: brightBlack: "#665C54" brightRed: "#FB543F" brightGreen: "#8F8EDA" - brightYellow: "#FFCC80" + brightYellow: "#FF8080" brightBlue: "#0D6678" brightMagenta: "#8F4673" brightCyan: "#8BA59B" @@ -28,22 +28,23 @@ colors: meta: mode: "dark" accent: "green" - hue: 271 + hue: null + pair: null contrast: - fg: 107.7 + fg: 84.7 black: 0 - red: 42.8 - green: 61.8 - yellow: 73.9 - blue: 83.7 - magenta: 20.4 - cyan: 50.3 - white: 48.1 - brightBlack: 19.5 - brightRed: 42.8 - brightGreen: 45.3 - brightYellow: 80.6 - brightBlue: 19.6 - brightMagenta: 20.4 - brightCyan: 50.3 - brightWhite: 99.7 + red: 41.6 + green: 60.6 + yellow: 72.7 + blue: 82.5 + magenta: 19.2 + cyan: 49.1 + white: 46.9 + brightBlack: 18.3 + brightRed: 41.6 + brightGreen: 44.1 + brightYellow: 53.4 + brightBlue: 18.4 + brightMagenta: 19.2 + brightCyan: 49.1 + brightWhite: 98.5 diff --git a/themes/bluethemepulper.yaml b/themes/bluethemepulper.yaml deleted file mode 100644 index d5a01f34..00000000 --- a/themes/bluethemepulper.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "BlueThemePulper" -source: - marketplace_id: "daniloBrayann.blue-theme-dark" - version: "0.0.37" - installs: 454 - author: "daniloBrayann" - repo: "https://github.com/danilobrayann/dev-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.blue-theme-dark" -colors: - bg: "#171131" - fg: "#C7BFE8" - black: "#171131" - red: "#D62C2C" - green: "#42DD76" - yellow: "#FFB638" - blue: "#28A9FF" - magenta: "#E66DFF" - cyan: "#14E5D4" - white: "#C7BFE8" - brightBlack: "#382B78" - brightRed: "#FC0606" - brightGreen: "#21FE6B" - brightYellow: "#FFB638" - brightBlue: "#28A9FF" - brightMagenta: "#E66DFF" - brightCyan: "#00F9E5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 288 - contrast: - fg: 70 - black: 0 - red: 28.2 - green: 69.5 - yellow: 70 - blue: 51.4 - magenta: 50.3 - cyan: 75.9 - white: 70 - brightBlack: 0 - brightRed: 35.8 - brightGreen: 85.8 - brightYellow: 70 - brightBlue: 51.4 - brightMagenta: 50.3 - brightCyan: 86.8 - brightWhite: 106.9 diff --git a/themes/blueyonedark.yaml b/themes/blueyonedark.yaml index f17a1f57..047f287d 100644 --- a/themes/blueyonedark.yaml +++ b/themes/blueyonedark.yaml @@ -1,14 +1,14 @@ name: "BlueyOneDark" source: - marketplace_id: "BlueyThemes.blueyonedark" - version: "2.2.1" - installs: 190 + marketplace_id: "BlueyThemes.blueymonokai" + version: "1.4.0" + installs: 116 author: "BlueyThemes" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=BlueyThemes.blueyonedark" + url: "https://marketplace.visualstudio.com/items?itemName=BlueyThemes.blueymonokai" colors: bg: "#282C34" - fg: "#D9DBE0" + fg: "#A3A3A3" black: "#3F4451" red: "#E05561" green: "#8CC265" @@ -29,8 +29,9 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: - fg: 80.5 + fg: 48.2 black: 0 red: 33.5 green: 57.2 diff --git a/themes/bluloco-dark-italic.yaml b/themes/bluloco-dark-italic.yaml index b6ca3427..41761bb3 100644 --- a/themes/bluloco-dark-italic.yaml +++ b/themes/bluloco-dark-italic.yaml @@ -1,11 +1,11 @@ name: "Bluloco Dark Italic" source: - marketplace_id: "uloco.theme-bluloco-dark" - version: "3.7.6" - installs: 510899 - author: "Umut Topuzoğlu" - repo: "https://github.com/uloco/theme-bluloco-dark" - url: "https://marketplace.visualstudio.com/items?itemName=uloco.theme-bluloco-dark" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#282C34" fg: "#ABB2BF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: "Bluloco Light Italic" contrast: fg: 56.2 black: 0 diff --git a/themes/bluloco-dark.yaml b/themes/bluloco-dark.yaml index 7b3d4289..4d09f9a2 100644 --- a/themes/bluloco-dark.yaml +++ b/themes/bluloco-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/bluloco-light-italic.yaml b/themes/bluloco-light-italic.yaml index ee9759cd..a4a14c31 100644 --- a/themes/bluloco-light-italic.yaml +++ b/themes/bluloco-light-italic.yaml @@ -2,7 +2,7 @@ name: "Bluloco Light Italic" source: marketplace_id: "uloco.theme-bluloco-light" version: "3.7.5" - installs: 484924 + installs: 485005 author: "Umut Topuzoğlu" repo: "https://github.com/uloco/theme-bluloco-light" url: "https://marketplace.visualstudio.com/items?itemName=uloco.theme-bluloco-light" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Bluloco Dark Italic" contrast: fg: 92.6 black: 92.7 diff --git a/themes/blush-pink-enhanced-premium.yaml b/themes/blush-pink-enhanced-premium.yaml index e063c5a0..8a05d28d 100644 --- a/themes/blush-pink-enhanced-premium.yaml +++ b/themes/blush-pink-enhanced-premium.yaml @@ -2,7 +2,7 @@ name: "Blush Pink Enhanced Premium" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.9 black: 96.9 diff --git a/themes/blve.yaml b/themes/blve.yaml index 8d029e1f..1df5bfbb 100644 --- a/themes/blve.yaml +++ b/themes/blve.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 249 + pair: null contrast: fg: 80.1 black: 0 diff --git a/themes/bocenago-pradei.yaml b/themes/bocenago-pradei.yaml index a9bce75a..654a0aec 100644 --- a/themes/bocenago-pradei.yaml +++ b/themes/bocenago-pradei.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 69 black: 0 diff --git a/themes/bogem-s-night-owl.yaml b/themes/bogem-s-night-owl.yaml index faf9a9a6..173434e9 100644 --- a/themes/bogem-s-night-owl.yaml +++ b/themes/bogem-s-night-owl.yaml @@ -2,7 +2,7 @@ name: "Bogem's Night Owl" source: marketplace_id: "bogem.bogems-night-owl" version: "1.2.0" - installs: 18234 + installs: 18240 author: "Albert Nigmatzianov" repo: "https://github.com/bogem/bogems-night-owl-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=bogem.bogems-night-owl" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 244 + pair: null contrast: fg: 83.2 black: 0 diff --git a/themes/bogster.yaml b/themes/bogster.yaml index 033d5857..db1ec80b 100644 --- a/themes/bogster.yaml +++ b/themes/bogster.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 249 + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/bohemian-dark.yaml b/themes/bohemian-dark.yaml index 7cdb8632..1e354623 100644 --- a/themes/bohemian-dark.yaml +++ b/themes/bohemian-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Bohemian Light" contrast: fg: 92.4 black: 7.5 diff --git a/themes/bohemian-light.yaml b/themes/bohemian-light.yaml index cf478f90..260745eb 100644 --- a/themes/bohemian-light.yaml +++ b/themes/bohemian-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "Bohemian Dark" contrast: fg: 93.1 black: 93.1 diff --git a/themes/bold-contrast.yaml b/themes/bold-contrast.yaml index 35f55e70..d0d59ef3 100644 --- a/themes/bold-contrast.yaml +++ b/themes/bold-contrast.yaml @@ -1,11 +1,11 @@ name: "bold-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0F0D0D" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.6 black: 0 diff --git a/themes/bold-light.yaml b/themes/bold-light.yaml index 2c73ca30..25186145 100644 --- a/themes/bold-light.yaml +++ b/themes/bold-light.yaml @@ -1,11 +1,11 @@ name: "bold-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#555555" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 85.9 black: 0 diff --git a/themes/bold.yaml b/themes/bold.yaml index d70d3b27..33692d1e 100644 --- a/themes/bold.yaml +++ b/themes/bold.yaml @@ -1,11 +1,11 @@ name: "bold" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2A2626" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 104.6 black: 0 diff --git a/themes/bolsonaro-theme.yaml b/themes/bolsonaro-theme.yaml index 765da7e7..669c4d32 100644 --- a/themes/bolsonaro-theme.yaml +++ b/themes/bolsonaro-theme.yaml @@ -2,7 +2,7 @@ name: "bolsonaro theme" source: marketplace_id: "higordevv.bolsonarodarktheme" version: "0.0.1" - installs: 1818 + installs: 1823 author: "Higor Devkkkjj" repo: null url: "https://marketplace.visualstudio.com/items?itemName=higordevv.bolsonarodarktheme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 36.9 black: 0 diff --git a/themes/bombyx-light.yaml b/themes/bombyx-light.yaml index 1753cf81..de4e0591 100644 --- a/themes/bombyx-light.yaml +++ b/themes/bombyx-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 100.6 black: 100.6 diff --git a/themes/bombyx.yaml b/themes/bombyx.yaml index 7697431c..f7f24c6b 100644 --- a/themes/bombyx.yaml +++ b/themes/bombyx.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 89.2 black: 0 diff --git a/themes/boo.yaml b/themes/boo.yaml index 8d0384a2..e3d6277a 100644 --- a/themes/boo.yaml +++ b/themes/boo.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 102.5 black: 32.1 diff --git a/themes/boogel.yaml b/themes/boogel.yaml index 75b2ed20..7d747fa2 100644 --- a/themes/boogel.yaml +++ b/themes/boogel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 55.2 black: 0 diff --git a/themes/booklike.yaml b/themes/booklike.yaml index 73b3536d..702edd66 100644 --- a/themes/booklike.yaml +++ b/themes/booklike.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 87.6 black: 103 diff --git a/themes/bootstrap-dark.yaml b/themes/bootstrap-dark.yaml index 99de98cf..b0fb2ede 100644 --- a/themes/bootstrap-dark.yaml +++ b/themes/bootstrap-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Bootstrap Light" contrast: fg: 102.3 black: 0 diff --git a/themes/bootstrap-light.yaml b/themes/bootstrap-light.yaml index fb9d7e2c..8bec8fcd 100644 --- a/themes/bootstrap-light.yaml +++ b/themes/bootstrap-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Bootstrap Dark" contrast: fg: 105.7 black: 104.4 diff --git a/themes/borders-blue.yaml b/themes/borders-blue.yaml index 3fb9bfbc..8341b76b 100644 --- a/themes/borders-blue.yaml +++ b/themes/borders-blue.yaml @@ -2,7 +2,7 @@ name: "Borders Blue" source: marketplace_id: "bloumbs.borders-dark" version: "1.7.0" - installs: 4682 + installs: 4683 author: "Bloumbs" repo: "https://github.com/Bloumbs/Borders-Dark" url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 253 + pair: null contrast: fg: 91.7 black: 0 diff --git a/themes/borders-dark.yaml b/themes/borders-dark.yaml index 6bd1392f..5bf2a08e 100644 --- a/themes/borders-dark.yaml +++ b/themes/borders-dark.yaml @@ -2,7 +2,7 @@ name: "Borders Dark" source: marketplace_id: "bloumbs.borders-dark" version: "1.7.0" - installs: 4682 + installs: 4683 author: "Bloumbs" repo: "https://github.com/Bloumbs/Borders-Dark" url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 94.6 black: 0 diff --git a/themes/borders-darker.yaml b/themes/borders-darker.yaml index ab2d39b1..e0d22223 100644 --- a/themes/borders-darker.yaml +++ b/themes/borders-darker.yaml @@ -2,7 +2,7 @@ name: "Borders Darker" source: marketplace_id: "bloumbs.borders-dark" version: "1.7.0" - installs: 4682 + installs: 4683 author: "Bloumbs" repo: "https://github.com/Bloumbs/Borders-Dark" url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 96 black: 0 diff --git a/themes/borealis.yaml b/themes/borealis.yaml index 7515bf64..8c0d7e79 100644 --- a/themes/borealis.yaml +++ b/themes/borealis.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 283 + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/borealsharp.yaml b/themes/borealsharp.yaml index 650029ee..8d79692e 100644 --- a/themes/borealsharp.yaml +++ b/themes/borealsharp.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 72.9 black: 0 diff --git a/themes/botany-color-theme.yaml b/themes/botany-color-theme.yaml index b85fd5c2..e46487cd 100644 --- a/themes/botany-color-theme.yaml +++ b/themes/botany-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 230 + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/botany.yaml b/themes/botany.yaml index 3dc3798c..f2b4b43f 100644 --- a/themes/botany.yaml +++ b/themes/botany.yaml @@ -1,11 +1,11 @@ name: "Botany" source: - marketplace_id: "sserafy.ttera-themes" - version: "2.0.7" - installs: 2036 + marketplace_id: "sserafy.ssera-themes" + version: "2.0.2" + installs: 334 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: bg: "#1E2128" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 267 + pair: null contrast: fg: 105.6 black: 13.6 diff --git a/themes/bougainvillea.yaml b/themes/bougainvillea.yaml index 8c648df5..223fb86f 100644 --- a/themes/bougainvillea.yaml +++ b/themes/bougainvillea.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 99.1 black: 0 diff --git a/themes/boundless.yaml b/themes/boundless.yaml index 0264deb7..fa03802a 100644 --- a/themes/boundless.yaml +++ b/themes/boundless.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 89 + pair: null contrast: fg: 47.7 black: 81.1 diff --git a/themes/bouquet.yaml b/themes/bouquet.yaml index 4f8439b0..81abfa00 100644 --- a/themes/bouquet.yaml +++ b/themes/bouquet.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 190 + pair: null contrast: fg: 88.6 black: 0 diff --git a/themes/boxuk-contrast.yaml b/themes/boxuk-contrast.yaml index 4c4fb7d5..371cc08f 100644 --- a/themes/boxuk-contrast.yaml +++ b/themes/boxuk-contrast.yaml @@ -1,11 +1,11 @@ name: "boxuk-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#111519" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 248 + pair: null contrast: fg: 107.1 black: 0 diff --git a/themes/boxuk-light.yaml b/themes/boxuk-light.yaml index 4e981fb5..63bc5862 100644 --- a/themes/boxuk-light.yaml +++ b/themes/boxuk-light.yaml @@ -1,11 +1,11 @@ name: "boxuk-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#414F5C" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 89 black: 0 diff --git a/themes/boxuk.yaml b/themes/boxuk.yaml index 5172be2a..4440284d 100644 --- a/themes/boxuk.yaml +++ b/themes/boxuk.yaml @@ -1,11 +1,11 @@ name: "boxuk" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2A353F" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 246 + pair: null contrast: fg: 101.8 black: 0 diff --git a/themes/brackethive-theme.yaml b/themes/brackethive-theme.yaml index c8feaf4f..620214c0 100644 --- a/themes/brackethive-theme.yaml +++ b/themes/brackethive-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 292 + pair: null contrast: fg: 80 black: 0 diff --git a/themes/brave-contrast.yaml b/themes/brave-contrast.yaml index 6909a027..a6a6d57d 100644 --- a/themes/brave-contrast.yaml +++ b/themes/brave-contrast.yaml @@ -1,11 +1,11 @@ name: "brave-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#101216" fg: "#D6DBDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/brave-light.yaml b/themes/brave-light.yaml index 5fb07c05..ccfb1ae8 100644 --- a/themes/brave-light.yaml +++ b/themes/brave-light.yaml @@ -1,11 +1,11 @@ name: "brave-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#F7F9F9" fg: "#2C2D2D" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.6 black: 0 diff --git a/themes/brave.yaml b/themes/brave.yaml index c353fbc1..26f3ee0b 100644 --- a/themes/brave.yaml +++ b/themes/brave.yaml @@ -1,11 +1,11 @@ name: "brave" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#333846" fg: "#D6DBDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 270 + pair: null contrast: fg: 76.8 black: 0 diff --git a/themes/breath2ripoff.yaml b/themes/breath2ripoff.yaml index 96c4e60b..8c428524 100644 --- a/themes/breath2ripoff.yaml +++ b/themes/breath2ripoff.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 220 + pair: null contrast: fg: 41.9 black: 0 diff --git a/themes/breeze.yaml b/themes/breeze.yaml index 2a7d9a75..29404e56 100644 --- a/themes/breeze.yaml +++ b/themes/breeze.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 53.4 black: 0 diff --git a/themes/brew-theme.yaml b/themes/brew-theme.yaml index 4a5eedfa..1d012883 100644 --- a/themes/brew-theme.yaml +++ b/themes/brew-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 61.3 black: 0 diff --git a/themes/brid-purple-garden-dark.yaml b/themes/brid-purple-garden-dark.yaml index 83c962ca..705c2bbe 100644 --- a/themes/brid-purple-garden-dark.yaml +++ b/themes/brid-purple-garden-dark.yaml @@ -2,7 +2,7 @@ name: "Brid Purple Garden Dark" source: marketplace_id: "layon-extensions.brid-purple-garden" version: "1.0.0" - installs: 8 + installs: 10 author: "layon-extensions" repo: "https://github.com/Fernando-Leon/theme-brid" url: "https://marketplace.visualstudio.com/items?itemName=layon-extensions.brid-purple-garden" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 307 + pair: "Brid Purple Garden Light" contrast: fg: 85.8 black: 0 diff --git a/themes/brid-purple-garden-light.yaml b/themes/brid-purple-garden-light.yaml index 98ccd9bb..66bf3122 100644 --- a/themes/brid-purple-garden-light.yaml +++ b/themes/brid-purple-garden-light.yaml @@ -2,7 +2,7 @@ name: "Brid Purple Garden Light" source: marketplace_id: "layon-extensions.brid-purple-garden" version: "1.0.0" - installs: 8 + installs: 10 author: "layon-extensions" repo: "https://github.com/Fernando-Leon/theme-brid" url: "https://marketplace.visualstudio.com/items?itemName=layon-extensions.brid-purple-garden" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Brid Purple Garden Dark" contrast: fg: 93.6 black: 93.6 diff --git a/themes/briggitehelm.yaml b/themes/briggitehelm.yaml index 17f183f2..044b3f33 100644 --- a/themes/briggitehelm.yaml +++ b/themes/briggitehelm.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 102.5 black: 102.5 diff --git a/themes/bright-colors-blue.yaml b/themes/bright-colors-blue.yaml index dd7073d2..1e92a83b 100644 --- a/themes/bright-colors-blue.yaml +++ b/themes/bright-colors-blue.yaml @@ -2,7 +2,7 @@ name: "Bright Colors Blue" source: marketplace_id: "nikhil2007.Bright-Color" version: "1.4.2" - installs: 17799 + installs: 17810 author: "Nikhil Nath Jha" repo: "https://github.com/jhanikhilnath/bright_colors_theme" url: "https://marketplace.visualstudio.com/items?itemName=nikhil2007.Bright-Color" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 242 + pair: null contrast: fg: 102.1 black: 0 diff --git a/themes/bright-lights.yaml b/themes/bright-lights.yaml index 7aa047dc..a762054f 100644 --- a/themes/bright-lights.yaml +++ b/themes/bright-lights.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72.3 black: 0 diff --git a/themes/britecore.yaml b/themes/britecore.yaml index bb6af8a0..75fdb3d5 100644 --- a/themes/britecore.yaml +++ b/themes/britecore.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 211 + pair: null contrast: fg: 104 black: 0 diff --git a/themes/british-racing-green-theme.yaml b/themes/british-racing-green-theme.yaml index 44d068c2..0e5cf8ab 100644 --- a/themes/british-racing-green-theme.yaml +++ b/themes/british-racing-green-theme.yaml @@ -2,7 +2,7 @@ name: "British Racing Green Theme" source: marketplace_id: "Danesed.british-racing-green-theme" version: "1.0.1" - installs: 13 + installs: 15 author: "Danesed" repo: "https://github.com/danesed/colorsea-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Danesed.british-racing-green-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 179 + pair: null contrast: fg: 73.8 black: 9.3 diff --git a/themes/brogrammer-plus.yaml b/themes/brogrammer-plus.yaml index e6fcd918..2fcede9f 100644 --- a/themes/brogrammer-plus.yaml +++ b/themes/brogrammer-plus.yaml @@ -2,7 +2,7 @@ name: "Brogrammer Plus" source: marketplace_id: "jackjyq.brogrammer-plus" version: "1.0.1" - installs: 8954 + installs: 8958 author: "Jack Jiang" repo: "https://github.com/jackjyq/vscode-theme-brogrammer-plus" url: "https://marketplace.visualstudio.com/items?itemName=jackjyq.brogrammer-plus" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.3 black: 0 diff --git a/themes/broken-dreams-blue.yaml b/themes/broken-dreams-blue.yaml index c8aeecf8..8fdd9d6a 100644 --- a/themes/broken-dreams-blue.yaml +++ b/themes/broken-dreams-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 86.9 black: 0 diff --git a/themes/broken-dreams-purple.yaml b/themes/broken-dreams-purple.yaml index b2670a6a..bb63038e 100644 --- a/themes/broken-dreams-purple.yaml +++ b/themes/broken-dreams-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 308 + pair: null contrast: fg: 99.7 black: 0 diff --git a/themes/bromium.yaml b/themes/bromium.yaml index b15fbb00..a3a2d893 100644 --- a/themes/bromium.yaml +++ b/themes/bromium.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.9 black: 0 diff --git a/themes/brownhu.yaml b/themes/brownhu.yaml index 59740e94..4a3f6ad3 100644 --- a/themes/brownhu.yaml +++ b/themes/brownhu.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 74.9 black: 0 diff --git a/themes/brownista.yaml b/themes/brownista.yaml index fecc38c7..bea5646f 100644 --- a/themes/brownista.yaml +++ b/themes/brownista.yaml @@ -2,7 +2,7 @@ name: "Brownista" source: marketplace_id: "hubaldium.brownista-hubaldium" version: "0.0.1" - installs: 69 + installs: 70 author: "Brownista" repo: "https://github.com/theBoss-png/brownista-hubaldium" url: "https://marketplace.visualstudio.com/items?itemName=hubaldium.brownista-hubaldium" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.4 black: 0 diff --git a/themes/bts-borahae.yaml b/themes/bts-borahae.yaml index 884f35cb..0879c41c 100644 --- a/themes/bts-borahae.yaml +++ b/themes/bts-borahae.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 298 + pair: null contrast: fg: 62.3 black: 0 diff --git a/themes/btv-dark.yaml b/themes/btv-dark.yaml index 5325d6d5..ffc9d3f1 100644 --- a/themes/btv-dark.yaml +++ b/themes/btv-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 75.2 black: 17.6 diff --git a/themes/bubble-theme.yaml b/themes/bubble-theme.yaml index 0b55eb15..25345bbe 100644 --- a/themes/bubble-theme.yaml +++ b/themes/bubble-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 96.5 black: 0 diff --git a/themes/bubblegum-color-theme.yaml b/themes/bubblegum-color-theme.yaml index 542b67fc..68108d6b 100644 --- a/themes/bubblegum-color-theme.yaml +++ b/themes/bubblegum-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 326 + pair: null contrast: fg: 79.2 black: 94.5 diff --git a/themes/bubblegum-milkshake.yaml b/themes/bubblegum-milkshake.yaml index 96a4f56b..45ad74f1 100644 --- a/themes/bubblegum-milkshake.yaml +++ b/themes/bubblegum-milkshake.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: 251 + pair: null contrast: fg: 101.5 black: 0 diff --git a/themes/bubblegum.yaml b/themes/bubblegum.yaml index d165b66f..37ec68f0 100644 --- a/themes/bubblegum.yaml +++ b/themes/bubblegum.yaml @@ -2,7 +2,7 @@ name: "Bubblegum" source: marketplace_id: "AdrianTriS.bubblegum-theme" version: "1.0.0" - installs: 57 + installs: 58 author: "AdrianTriS" repo: "https://github.com/AdrianTriSetiawan/Bubblegums-theme" url: "https://marketplace.visualstudio.com/items?itemName=AdrianTriS.bubblegum-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 301 + pair: null contrast: fg: 86.7 black: 0 diff --git a/themes/bubblegumtheme.yaml b/themes/bubblegumtheme.yaml index 3ec9f277..f25b784e 100644 --- a/themes/bubblegumtheme.yaml +++ b/themes/bubblegumtheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 13.8 diff --git a/themes/buby-color-theme.yaml b/themes/buby-color-theme.yaml index 76430f20..84ff2ad8 100644 --- a/themes/buby-color-theme.yaml +++ b/themes/buby-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: 300 + pair: null contrast: fg: 39.3 black: 0 diff --git a/themes/buddha-a-super-minimal-theme-for-vscode.yaml b/themes/buddha-a-super-minimal-theme-for-vscode.yaml index 89db152d..2506ee98 100644 --- a/themes/buddha-a-super-minimal-theme-for-vscode.yaml +++ b/themes/buddha-a-super-minimal-theme-for-vscode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 219 + pair: null contrast: fg: 102.7 black: 102.7 diff --git a/themes/budha.yaml b/themes/budha.yaml index 748048d0..9ee39e76 100644 --- a/themes/budha.yaml +++ b/themes/budha.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 267 + pair: null contrast: fg: 23.1 black: 0 diff --git a/themes/budokan.yaml b/themes/budokan.yaml index d06d152a..0d21ce68 100644 --- a/themes/budokan.yaml +++ b/themes/budokan.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.3 black: 0 diff --git a/themes/bugged-gpu.yaml b/themes/bugged-gpu.yaml index 248c5caf..c4d367f5 100644 --- a/themes/bugged-gpu.yaml +++ b/themes/bugged-gpu.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 103 black: 0 diff --git a/themes/buhtig.yaml b/themes/buhtig.yaml index 94f50397..0431cde2 100644 --- a/themes/buhtig.yaml +++ b/themes/buhtig.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 248 + pair: null contrast: fg: 88.5 black: 18.5 diff --git a/themes/bullish-theme.yaml b/themes/bullish-theme.yaml index 502395a3..c207cf8c 100644 --- a/themes/bullish-theme.yaml +++ b/themes/bullish-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 72.2 black: 96.7 diff --git a/themes/bun-gothic.yaml b/themes/bun-gothic.yaml deleted file mode 100644 index 93f3d1fc..00000000 --- a/themes/bun-gothic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "bun_gothic" -source: - marketplace_id: "ArtemBunichev.bun-gothic-theme" - version: "1.1.0" - installs: 430 - author: "ArtemBunichev" - repo: "https://github.com/spleekz/vscode-bun_gothic-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ArtemBunichev.bun-gothic-theme" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#000000" - green: "#000000" - yellow: "#000000" - blue: "#000000" - magenta: "#000000" - cyan: "#000000" - white: "#000000" - brightBlack: "#000000" - brightRed: "#000000" - brightGreen: "#000000" - brightYellow: "#000000" - brightBlue: "#000000" - brightMagenta: "#000000" - brightCyan: "#000000" - brightWhite: "#000000" -meta: - mode: "light" - accent: "red" - hue: null - contrast: - fg: 106 - black: 106 - red: 106 - green: 106 - yellow: 106 - blue: 106 - magenta: 106 - cyan: 106 - white: 106 - brightBlack: 106 - brightRed: 106 - brightGreen: 106 - brightYellow: 106 - brightBlue: 106 - brightMagenta: 106 - brightCyan: 106 - brightWhite: 106 diff --git a/themes/burnt-chestnut.yaml b/themes/burnt-chestnut.yaml index a6509db7..5bf231c0 100644 --- a/themes/burnt-chestnut.yaml +++ b/themes/burnt-chestnut.yaml @@ -2,7 +2,7 @@ name: "Burnt Chestnut" source: marketplace_id: "wicked-labs.cocoa-butter" version: "0.1.4" - installs: 1140 + installs: 1141 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/cocoabutter" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.cocoa-butter" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 59.1 black: 0 diff --git a/themes/burple-dark.yaml b/themes/burple-dark.yaml index 692c66fc..23ba9aed 100644 --- a/themes/burple-dark.yaml +++ b/themes/burple-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/busbyvscode.yaml b/themes/busbyvscode.yaml index de040589..2c678932 100644 --- a/themes/busbyvscode.yaml +++ b/themes/busbyvscode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 235 + pair: null contrast: fg: 69.8 black: 24.9 diff --git a/themes/bushland.yaml b/themes/bushland.yaml index 61c9c753..f2efa7bf 100644 --- a/themes/bushland.yaml +++ b/themes/bushland.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 98.5 black: 17.7 diff --git a/themes/butrin-theme.yaml b/themes/butrin-theme.yaml index 599afcdb..16ed2a92 100644 --- a/themes/butrin-theme.yaml +++ b/themes/butrin-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 14 + pair: null contrast: fg: 76 black: 25.7 diff --git a/themes/butter-green-fork.yaml b/themes/butter-green-fork.yaml index 0fe988b5..fe6f568e 100644 --- a/themes/butter-green-fork.yaml +++ b/themes/butter-green-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 52.4 black: 0 diff --git a/themes/buttercawfee.yaml b/themes/buttercawfee.yaml index 0c178a03..0172a1e8 100644 --- a/themes/buttercawfee.yaml +++ b/themes/buttercawfee.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/bynawers.yaml b/themes/bynawers.yaml index 1c9ea220..562f8999 100644 --- a/themes/bynawers.yaml +++ b/themes/bynawers.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 220 + pair: null contrast: fg: 56.7 black: 0 diff --git a/themes/byteglow.yaml b/themes/byteglow.yaml index 60e3c5c1..cca148df 100644 --- a/themes/byteglow.yaml +++ b/themes/byteglow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 284 + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/c-c-theme.yaml b/themes/c-c-theme.yaml index 2c5ecb30..78fc9bd4 100644 --- a/themes/c-c-theme.yaml +++ b/themes/c-c-theme.yaml @@ -2,7 +2,7 @@ name: "C/C++ Theme" source: marketplace_id: "Xen.ccpp-theme" version: "0.3.4" - installs: 18872 + installs: 18877 author: "Xen" repo: "https://github.com/xenkuo/ccpp_theme" url: "https://marketplace.visualstudio.com/items?itemName=Xen.ccpp-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: null contrast: fg: 97.1 black: 0 diff --git a/themes/c-dracula.yaml b/themes/c-dracula.yaml index 15ad16cc..a78bf9ae 100644 --- a/themes/c-dracula.yaml +++ b/themes/c-dracula.yaml @@ -2,7 +2,7 @@ name: "C# Dracula" source: marketplace_id: "Gabrieldp-dev.reduc-csharp-dracula" version: "1.0.2" - installs: 9010 + installs: 9012 author: "Gabriel-dp" repo: "https://github.com/gabrieldp23/sBotics_Snippets_vscode" url: "https://marketplace.visualstudio.com/items?itemName=Gabrieldp-dev.reduc-csharp-dracula" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 278 + pair: null contrast: fg: 99 black: 0 diff --git a/themes/c0v3r.yaml b/themes/c0v3r.yaml index fd84748d..504c65b1 100644 --- a/themes/c0v3r.yaml +++ b/themes/c0v3r.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 78.7 black: 10.5 diff --git a/themes/cabalyon-theme.yaml b/themes/cabalyon-theme.yaml index 5c1f4f58..918b381f 100644 --- a/themes/cabalyon-theme.yaml +++ b/themes/cabalyon-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 88 black: 0 diff --git a/themes/cadet-dark-gray.yaml b/themes/cadet-dark-gray.yaml index 8f9b5ec6..6d4cfbbb 100644 --- a/themes/cadet-dark-gray.yaml +++ b/themes/cadet-dark-gray.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 265 + pair: null contrast: fg: 103.2 black: 0 diff --git a/themes/cadet-medium-gray-flat.yaml b/themes/cadet-medium-gray-flat.yaml deleted file mode 100644 index b3a71264..00000000 --- a/themes/cadet-medium-gray-flat.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Cadet Medium Gray Flat" -source: - marketplace_id: "SethCox.cadet" - version: "0.0.4" - installs: 2440 - author: "Seth Cox" - repo: "https://github.com/sethaddison/Cadet-Vscode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=SethCox.cadet" -colors: - bg: "#1F2937" - fg: "#FFF9F1" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 257 - contrast: - fg: 100.9 - black: 0 - red: 24.2 - green: 50.5 - yellow: 83.1 - blue: 24.9 - magenta: 27.2 - cyan: 45 - white: 87.5 - brightBlack: 19.5 - brightRed: 36 - brightGreen: 61 - brightYellow: 93.1 - brightBlue: 37.5 - brightMagenta: 42.8 - brightCyan: 52.9 - brightWhite: 87.5 diff --git a/themes/caf-warmth.yaml b/themes/caf-warmth.yaml index 375b94a6..c7e8dd39 100644 --- a/themes/caf-warmth.yaml +++ b/themes/caf-warmth.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 44.8 black: 0 diff --git a/themes/caffe-crema-dark.yaml b/themes/caffe-crema-dark.yaml index 9984e0ab..eabe0980 100644 --- a/themes/caffe-crema-dark.yaml +++ b/themes/caffe-crema-dark.yaml @@ -2,7 +2,7 @@ name: "Caffe Crema Dark" source: marketplace_id: "MonicaVilla.caffe-crema-theme" version: "1.0.1" - installs: 298 + installs: 301 author: "Mónica Villarroel" repo: "https://github.com/MonicaVillap/CaffeCremaTheme" url: "https://marketplace.visualstudio.com/items?itemName=MonicaVilla.caffe-crema-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 44 + pair: "Caffe Crema Light" contrast: fg: 90 black: 0 diff --git a/themes/caffe-crema-light.yaml b/themes/caffe-crema-light.yaml index a4b655df..8f4a4d9b 100644 --- a/themes/caffe-crema-light.yaml +++ b/themes/caffe-crema-light.yaml @@ -2,7 +2,7 @@ name: "Caffe Crema Light" source: marketplace_id: "MonicaVilla.caffe-crema-theme" version: "1.0.1" - installs: 298 + installs: 301 author: "Mónica Villarroel" repo: "https://github.com/MonicaVillap/CaffeCremaTheme" url: "https://marketplace.visualstudio.com/items?itemName=MonicaVilla.caffe-crema-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Caffe Crema Dark" contrast: fg: 95.5 black: 85.9 diff --git a/themes/caffeinated-rust.yaml b/themes/caffeinated-rust.yaml index 24c9dbde..6d65721a 100644 --- a/themes/caffeinated-rust.yaml +++ b/themes/caffeinated-rust.yaml @@ -2,7 +2,7 @@ name: "Caffeinated Rust" source: marketplace_id: "CaffeinatedMinds.caffeinated-rust-dark" version: "0.1.0" - installs: 139 + installs: 140 author: "Caffeinated Minds" repo: "https://github.com/caffeinated-minds/caffeinated-rust" url: "https://marketplace.visualstudio.com/items?itemName=CaffeinatedMinds.caffeinated-rust-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 94.8 black: 0 diff --git a/themes/calm-dark.yaml b/themes/calm-dark.yaml index 6e160021..ee4cc367 100644 --- a/themes/calm-dark.yaml +++ b/themes/calm-dark.yaml @@ -2,7 +2,7 @@ name: "Calm Dark" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 229 + pair: "Calm Light" contrast: fg: 87.4 black: 0 diff --git a/themes/calm-days-sober-nights-day-no-bold-style.yaml b/themes/calm-days-sober-nights-day-no-bold-style.yaml deleted file mode 100644 index 90c861c1..00000000 --- a/themes/calm-days-sober-nights-day-no-bold-style.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Calm Days, Sober Nights - Day (no bold style)" -source: - marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" - version: "7.1.6" - installs: 6373 - author: "Giovani Cascaes" - repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" -colors: - bg: "#F0F4F7" - fg: "#6B7682" - black: "#000000" - red: "#EB6C81" - green: "#00B342" - yellow: "#EDC045" - blue: "#2EA0D1" - magenta: "#B375C7" - cyan: "#46ACBA" - white: "#C7D4E0" - brightBlack: "#94A2B0" - brightRed: "#F07186" - brightGreen: "#00B342" - brightYellow: "#F2C549" - brightBlue: "#36A6D6" - brightMagenta: "#B87ACC" - brightCyan: "#4CB2BF" - brightWhite: "#DDE7F0" -meta: - mode: "light" - accent: "green" - hue: null - contrast: - fg: 65.2 - black: 99.1 - red: 49.2 - green: 46 - yellow: 23.8 - blue: 49 - magenta: 53.7 - cyan: 44.7 - white: 16.8 - brightBlack: 44 - brightRed: 46.9 - brightGreen: 46 - brightYellow: 21.1 - brightBlue: 46.1 - brightMagenta: 51.3 - brightCyan: 41.8 - brightWhite: 0 diff --git a/themes/calm-days-sober-nights-day-sky-no-bold-style.yaml b/themes/calm-days-sober-nights-day-sky-no-bold-style.yaml deleted file mode 100644 index 06bbc5b4..00000000 --- a/themes/calm-days-sober-nights-day-sky-no-bold-style.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Calm Days, Sober Nights - Day (Sky) (no bold style)" -source: - marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" - version: "7.1.6" - installs: 6373 - author: "Giovani Cascaes" - repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" -colors: - bg: "#FFFFFF" - fg: "#687082" - black: "#000000" - red: "#EB6C81" - green: "#00B342" - yellow: "#EDC045" - blue: "#2EA0D1" - magenta: "#B375C7" - cyan: "#46ACBA" - white: "#C5CDE0" - brightBlack: "#929BB0" - brightRed: "#F07186" - brightGreen: "#00B342" - brightYellow: "#F2C549" - brightBlue: "#36A6D6" - brightMagenta: "#B87ACC" - brightCyan: "#4CB2BF" - brightWhite: "#DAE1F0" -meta: - mode: "light" - accent: "green" - hue: null - contrast: - fg: 74.4 - black: 106 - red: 56.1 - green: 53 - yellow: 30.8 - blue: 55.9 - magenta: 60.6 - cyan: 51.6 - white: 26.8 - brightBlack: 53.7 - brightRed: 53.8 - brightGreen: 53 - brightYellow: 28 - brightBlue: 53.1 - brightMagenta: 58.2 - brightCyan: 48.7 - brightWhite: 15.4 diff --git a/themes/calm-days-sober-nights-night-no-bold-style.yaml b/themes/calm-days-sober-nights-night-no-bold-style.yaml deleted file mode 100644 index 25d2d16e..00000000 --- a/themes/calm-days-sober-nights-night-no-bold-style.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Calm Days, Sober Nights - Night (no bold style)" -source: - marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" - version: "7.1.6" - installs: 6373 - author: "Giovani Cascaes" - repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" -colors: - bg: "#232530" - fg: "#D3D6E8" - black: "#000000" - red: "#ED7480" - green: "#70CC92" - yellow: "#F2D988" - blue: "#6ED0FA" - magenta: "#EAB9FA" - cyan: "#90D7E0" - white: "#DFE3FA" - brightBlack: "#6A708C" - brightRed: "#F27985" - brightGreen: "#70CC92" - brightYellow: "#F7DD8D" - brightBlue: "#73D5FF" - brightMagenta: "#EFBFFF" - brightCyan: "#95DDE6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 277 - contrast: - fg: 79.2 - black: 0 - red: 44.9 - green: 62 - yellow: 81.4 - blue: 68.3 - magenta: 71.6 - cyan: 72.3 - white: 87.3 - brightBlack: 24.9 - brightRed: 47.4 - brightGreen: 62 - brightYellow: 84 - brightBlue: 71.1 - brightMagenta: 74.9 - brightCyan: 75.8 - brightWhite: 104.9 diff --git a/themes/calm-days-sober-nights-night-sky-no-bold-style.yaml b/themes/calm-days-sober-nights-night-sky-no-bold-style.yaml deleted file mode 100644 index eb357905..00000000 --- a/themes/calm-days-sober-nights-night-sky-no-bold-style.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Calm Days, Sober Nights - Night (Sky) (no bold style)" -source: - marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" - version: "7.1.6" - installs: 6373 - author: "Giovani Cascaes" - repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" -colors: - bg: "#192030" - fg: "#D3DAE8" - black: "#000000" - red: "#ED7480" - green: "#70CC92" - yellow: "#F2D988" - blue: "#6ED0FA" - magenta: "#EAB9FA" - cyan: "#90D7E0" - white: "#D2DDFA" - brightBlack: "#63708C" - brightRed: "#F27985" - brightGreen: "#70CC92" - brightYellow: "#F7DD8D" - brightBlue: "#73D5FF" - brightMagenta: "#EFBFFF" - brightCyan: "#95DDE6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 266 - contrast: - fg: 81.7 - black: 0 - red: 45.8 - green: 62.8 - yellow: 82.2 - blue: 69.1 - magenta: 72.4 - cyan: 73.2 - white: 83.9 - brightBlack: 25.2 - brightRed: 48.2 - brightGreen: 62.8 - brightYellow: 84.8 - brightBlue: 72 - brightMagenta: 75.8 - brightCyan: 76.7 - brightWhite: 105.7 diff --git a/themes/calm-down-color-theme.yaml b/themes/calm-down-color-theme.yaml index 577a20a0..fb78ecef 100644 --- a/themes/calm-down-color-theme.yaml +++ b/themes/calm-down-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 76.5 black: 0 diff --git a/themes/calm-light.yaml b/themes/calm-light.yaml index f2cb0700..c270ecb6 100644 --- a/themes/calm-light.yaml +++ b/themes/calm-light.yaml @@ -2,7 +2,7 @@ name: "Calm Light" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: "Calm Dark" contrast: fg: 95.1 black: 96.6 diff --git a/themes/calm-ocean.yaml b/themes/calm-ocean.yaml index 73d713d1..228abd4a 100644 --- a/themes/calm-ocean.yaml +++ b/themes/calm-ocean.yaml @@ -2,7 +2,7 @@ name: "Calm Ocean" source: marketplace_id: "tlolkema.natural-indigo" version: "0.0.3" - installs: 510 + installs: 511 author: "tlolkema" repo: "https://github.com/tlolkema/natural-indigo.git#master" url: "https://marketplace.visualstudio.com/items?itemName=tlolkema.natural-indigo" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 258 + pair: null contrast: fg: 100.7 black: 0 diff --git a/themes/calm-teal-colorblind-balance-clarity.yaml b/themes/calm-teal-colorblind-balance-clarity.yaml deleted file mode 100644 index e916dcf2..00000000 --- a/themes/calm-teal-colorblind-balance-clarity.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Calm Teal Colorblind - Balance & Clarity" -source: - marketplace_id: "akashbadole.dev-ideas-themes" - version: "2.1.1" - installs: 406 - author: "akashbadole" - repo: "https://github.com/akashsbadole/dev-psychology-themes" - url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" -colors: - bg: "#0D1A1A" - fg: "#E0F2F1" - black: "#263238" - red: "#F44336" - green: "#4CAF50" - yellow: "#FFEB3B" - blue: "#2196F3" - magenta: "#E91E63" - cyan: "#00BCD4" - white: "#ECEFF1" - brightBlack: "#37474F" - brightRed: "#FF5252" - brightGreen: "#69F0AE" - brightYellow: "#FFFF00" - brightBlue: "#448AFF" - brightMagenta: "#FF4081" - brightCyan: "#18FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 196 - contrast: - fg: 95.8 - black: 0 - red: 37.6 - green: 47.5 - yellow: 92.2 - blue: 42.9 - magenta: 32.5 - cyan: 56.4 - white: 96 - brightBlack: 9 - brightRed: 42.7 - brightGreen: 81.9 - brightYellow: 101.6 - brightBlue: 40.4 - brightMagenta: 41.3 - brightCyan: 91.1 - brightWhite: 106.8 diff --git a/themes/calm-teal-high-contrast-balance-clarity.yaml b/themes/calm-teal-high-contrast-balance-clarity.yaml index c6cec3e9..028b15fb 100644 --- a/themes/calm-teal-high-contrast-balance-clarity.yaml +++ b/themes/calm-teal-high-contrast-balance-clarity.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/calm-teal-light-balance-clarity.yaml b/themes/calm-teal-light-balance-clarity.yaml index 0156c130..6adf4724 100644 --- a/themes/calm-teal-light-balance-clarity.yaml +++ b/themes/calm-teal-light-balance-clarity.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 100.9 black: 95.9 diff --git a/themes/calming-theme.yaml b/themes/calming-theme.yaml index 0ef77276..5d68f1e5 100644 --- a/themes/calming-theme.yaml +++ b/themes/calming-theme.yaml @@ -2,7 +2,7 @@ name: "Calming Theme" source: marketplace_id: "diff001a.calming-theme" version: "1.0.1" - installs: 4034 + installs: 4037 author: "diff001a" repo: "https://github.com/diff001a/CalmingTheme" url: "https://marketplace.visualstudio.com/items?itemName=diff001a.calming-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 76 black: 0 diff --git a/themes/calmppuccin-frappe.yaml b/themes/calmppuccin-frappe.yaml index 1eaf671a..1bd71246 100644 --- a/themes/calmppuccin-frappe.yaml +++ b/themes/calmppuccin-frappe.yaml @@ -2,7 +2,7 @@ name: "Calmppuccin Frappe" source: marketplace_id: "kenan-salar.calmppuccin-vscode" version: "1.9.9" - installs: 6402 + installs: 6413 author: "Kenan Salar" repo: "https://github.com/KenanSalar/calmppuccin-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 72.6 black: 11.1 diff --git a/themes/calmppuccin-latte.yaml b/themes/calmppuccin-latte.yaml index 37ec861c..b030840f 100644 --- a/themes/calmppuccin-latte.yaml +++ b/themes/calmppuccin-latte.yaml @@ -2,7 +2,7 @@ name: "Calmppuccin Latte" source: marketplace_id: "kenan-salar.calmppuccin-vscode" version: "1.9.9" - installs: 6402 + installs: 6413 author: "Kenan Salar" repo: "https://github.com/KenanSalar/calmppuccin-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 77.3 black: 68.8 diff --git a/themes/calmppuccin-macchiato.yaml b/themes/calmppuccin-macchiato.yaml index 56048d32..7a3ab685 100644 --- a/themes/calmppuccin-macchiato.yaml +++ b/themes/calmppuccin-macchiato.yaml @@ -2,7 +2,7 @@ name: "Calmppuccin Macchiato" source: marketplace_id: "kenan-salar.calmppuccin-vscode" version: "1.9.9" - installs: 6402 + installs: 6413 author: "Kenan Salar" repo: "https://github.com/KenanSalar/calmppuccin-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 277 + pair: null contrast: fg: 71.5 black: 10 diff --git a/themes/calmppuccin-mocha.yaml b/themes/calmppuccin-mocha.yaml index a035a749..7ca670e0 100644 --- a/themes/calmppuccin-mocha.yaml +++ b/themes/calmppuccin-mocha.yaml @@ -2,7 +2,7 @@ name: "Calmppuccin Mocha" source: marketplace_id: "kenan-salar.calmppuccin-vscode" version: "1.9.9" - installs: 6402 + installs: 6413 author: "Kenan Salar" repo: "https://github.com/KenanSalar/calmppuccin-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 61.2 black: 9.4 diff --git a/themes/calmppuccin-nitro-cold-brew.yaml b/themes/calmppuccin-nitro-cold-brew.yaml index 54819ad6..140c3ca2 100644 --- a/themes/calmppuccin-nitro-cold-brew.yaml +++ b/themes/calmppuccin-nitro-cold-brew.yaml @@ -2,7 +2,7 @@ name: "Calmppuccin Nitro-cold-brew" source: marketplace_id: "kenan-salar.calmppuccin-vscode" version: "1.9.9" - installs: 6402 + installs: 6413 author: "Kenan Salar" repo: "https://github.com/KenanSalar/calmppuccin-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 57.4 black: 8.2 diff --git a/themes/calmppuccin-oledppuccin.yaml b/themes/calmppuccin-oledppuccin.yaml index c8750a94..d6122cd6 100644 --- a/themes/calmppuccin-oledppuccin.yaml +++ b/themes/calmppuccin-oledppuccin.yaml @@ -2,7 +2,7 @@ name: "Calmppuccin Oledppuccin" source: marketplace_id: "kenan-salar.calmppuccin-vscode" version: "1.9.9" - installs: 6402 + installs: 6413 author: "Kenan Salar" repo: "https://github.com/KenanSalar/calmppuccin-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 43.6 black: 0 diff --git a/themes/calomnie.yaml b/themes/calomnie.yaml deleted file mode 100644 index d73ab7bb..00000000 --- a/themes/calomnie.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Calomnie" -source: - marketplace_id: "404mat.calomnie" - version: "1.1.0" - installs: 63 - author: "404mat" - repo: "https://github.com/404mat/calomnie" - url: "https://marketplace.visualstudio.com/items?itemName=404mat.calomnie" -colors: - bg: "#0F1114" - fg: "#A6ACCD" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 57.6 - black: 0 - red: 27.2 - green: 53.5 - yellow: 86.1 - blue: 27.9 - magenta: 30.3 - cyan: 48.1 - white: 90.5 - brightBlack: 22.5 - brightRed: 39.1 - brightGreen: 64 - brightYellow: 96.1 - brightBlue: 40.5 - brightMagenta: 45.9 - brightCyan: 55.9 - brightWhite: 90.5 diff --git a/themes/campbell.yaml b/themes/campbell.yaml index 1a90f802..c1d92744 100644 --- a/themes/campbell.yaml +++ b/themes/campbell.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 75.5 black: 0 diff --git a/themes/camula-moon.yaml b/themes/camula-moon.yaml index e76fb47f..3341958d 100644 --- a/themes/camula-moon.yaml +++ b/themes/camula-moon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 73.5 black: 0 diff --git a/themes/camula-sun.yaml b/themes/camula-sun.yaml index 488c740c..94b626b5 100644 --- a/themes/camula-sun.yaml +++ b/themes/camula-sun.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 101.2 black: 0 diff --git a/themes/camula.yaml b/themes/camula.yaml index 3db4f53a..1ff394bf 100644 --- a/themes/camula.yaml +++ b/themes/camula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 289 + pair: null contrast: fg: 99.4 black: 0 diff --git a/themes/candle-theme.yaml b/themes/candle-theme.yaml index b19c45a5..33ce1c6d 100644 --- a/themes/candle-theme.yaml +++ b/themes/candle-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 67.2 black: 0 diff --git a/themes/candy-blue.yaml b/themes/candy-blue.yaml index 18fda681..3adbed3b 100644 --- a/themes/candy-blue.yaml +++ b/themes/candy-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 249 + pair: null contrast: fg: 102.3 black: 0 diff --git a/themes/candy-pine.yaml b/themes/candy-pine.yaml index c20acc1d..2f45bd50 100644 --- a/themes/candy-pine.yaml +++ b/themes/candy-pine.yaml @@ -2,7 +2,7 @@ name: "Candy Pine" source: marketplace_id: "yuschick.candy-pine" version: "0.2.5" - installs: 1594 + installs: 1596 author: "Yuschick" repo: "https://github.com/candy-pine/vscode" url: "https://marketplace.visualstudio.com/items?itemName=yuschick.candy-pine" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 291 + pair: null contrast: fg: 88.7 black: 0 diff --git a/themes/candy-purple.yaml b/themes/candy-purple.yaml index e378c520..3451bc7f 100644 --- a/themes/candy-purple.yaml +++ b/themes/candy-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 307 + pair: null contrast: fg: 44.9 black: 0 diff --git a/themes/candy-red.yaml b/themes/candy-red.yaml index 9310f0d3..54fbd597 100644 --- a/themes/candy-red.yaml +++ b/themes/candy-red.yaml @@ -2,7 +2,7 @@ name: "Candy Red" source: marketplace_id: "xynny.candy-red" version: "1.0.0" - installs: 3492 + installs: 3494 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.candy-red" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 2 + pair: null contrast: fg: 104.9 black: 0 diff --git a/themes/candy-shop-eclipse.yaml b/themes/candy-shop-eclipse.yaml index 67720f05..bf62bea1 100644 --- a/themes/candy-shop-eclipse.yaml +++ b/themes/candy-shop-eclipse.yaml @@ -2,7 +2,7 @@ name: "Candy-Shop-Eclipse" source: marketplace_id: "ErfanFathalizadeh.Candy-Shop-Eclipse" version: "2.1.0" - installs: 1099 + installs: 1100 author: "Erfan Fathalizadeh" repo: "https://github.com/ErfanFathalizadeh/VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ErfanFathalizadeh.Candy-Shop-Eclipse" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 101.6 black: 0 diff --git a/themes/canonic-theme.yaml b/themes/canonic-theme.yaml index 31c60066..8b1044bb 100644 --- a/themes/canonic-theme.yaml +++ b/themes/canonic-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 106 black: 0 diff --git a/themes/cape-town-nights.yaml b/themes/cape-town-nights.yaml index c53d1d3d..fcb7c1af 100644 --- a/themes/cape-town-nights.yaml +++ b/themes/cape-town-nights.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 207 + pair: null contrast: fg: 94.3 black: 0 diff --git a/themes/capitola.yaml b/themes/capitola.yaml index 4a17beee..b8f8aa10 100644 --- a/themes/capitola.yaml +++ b/themes/capitola.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 90.1 black: 90.1 diff --git a/themes/capy-ui.yaml b/themes/capy-ui.yaml index 34d51b8b..1e2b2850 100644 --- a/themes/capy-ui.yaml +++ b/themes/capy-ui.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 101.9 black: 0 diff --git a/themes/caramel-fork.yaml b/themes/caramel-fork.yaml deleted file mode 100644 index 73f59c3e..00000000 --- a/themes/caramel-fork.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Caramel - Fork" -source: - marketplace_id: "xynny.sweetcaramel" - version: "0.0.1" - installs: 331 - author: "xynny" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=xynny.sweetcaramel" -colors: - bg: "#1B1B1B" - fg: "#CDCDCD" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 74.8 - black: 0 - red: 26.3 - green: 52.6 - yellow: 85.2 - blue: 27 - magenta: 29.3 - cyan: 47.1 - white: 89.6 - brightBlack: 21.6 - brightRed: 38.1 - brightGreen: 63.1 - brightYellow: 95.2 - brightBlue: 39.6 - brightMagenta: 44.9 - brightCyan: 54.9 - brightWhite: 89.6 diff --git a/themes/carbon-candy-anthracite.yaml b/themes/carbon-candy-anthracite.yaml index db79b2d9..6068c107 100644 --- a/themes/carbon-candy-anthracite.yaml +++ b/themes/carbon-candy-anthracite.yaml @@ -2,7 +2,7 @@ name: "carbon-candy-anthracite" source: marketplace_id: "viral-team.carbon-candy" version: "0.2.9" - installs: 835 + installs: 842 author: "Viral Team Theme" repo: "https://github.com/viral-team/carbon-candy-theme" url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 73.4 black: 0 diff --git a/themes/carbon-candy-aurora-thin-border.yaml b/themes/carbon-candy-aurora-thin-border.yaml deleted file mode 100644 index e1326656..00000000 --- a/themes/carbon-candy-aurora-thin-border.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "carbon-candy-aurora (thin-border)" -source: - marketplace_id: "viral-team.carbon-candy" - version: "0.2.9" - installs: 835 - author: "Viral Team Theme" - repo: "https://github.com/viral-team/carbon-candy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" -colors: - bg: "#1A1A1A" - fg: "#E8E8E8" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#5A5A5A" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 91.6 - black: 0 - red: 46.3 - green: 83.9 - yellow: 78.6 - blue: 55.6 - magenta: 53.4 - cyan: 77.9 - white: 106.5 - brightBlack: 16.7 - brightRed: 46.3 - brightGreen: 83.9 - brightYellow: 78.6 - brightBlue: 55.6 - brightMagenta: 53.4 - brightCyan: 77.9 - brightWhite: 106.5 diff --git a/themes/carbon-candy-carbon-thin-border.yaml b/themes/carbon-candy-carbon-thin-border.yaml deleted file mode 100644 index 79af6926..00000000 --- a/themes/carbon-candy-carbon-thin-border.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "carbon-candy-carbon (thin-border)" -source: - marketplace_id: "viral-team.carbon-candy" - version: "0.2.9" - installs: 835 - author: "Viral Team Theme" - repo: "https://github.com/viral-team/carbon-candy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" -colors: - bg: "#1A1A1A" - fg: "#D4D4D4" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#424242" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 79.2 - black: 0 - red: 46.3 - green: 83.9 - yellow: 78.6 - blue: 55.6 - magenta: 53.4 - cyan: 77.9 - white: 106.5 - brightBlack: 7.8 - brightRed: 46.3 - brightGreen: 83.9 - brightYellow: 78.6 - brightBlue: 55.6 - brightMagenta: 53.4 - brightCyan: 77.9 - brightWhite: 106.5 diff --git a/themes/carbon-candy-dark-thin-border.yaml b/themes/carbon-candy-dark-thin-border.yaml deleted file mode 100644 index 67fb5136..00000000 --- a/themes/carbon-candy-dark-thin-border.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "carbon-candy-dark (thin-border)" -source: - marketplace_id: "viral-team.carbon-candy" - version: "0.2.9" - installs: 835 - author: "Viral Team Theme" - repo: "https://github.com/viral-team/carbon-candy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" -colors: - bg: "#161616" - fg: "#CCCCCC" - black: "#262626" - red: "#EE5396" - green: "#42BE65" - yellow: "#FDDC68" - blue: "#78A9FF" - magenta: "#BE95FF" - cyan: "#08BDBA" - white: "#F2F4F8" - brightBlack: "#525252" - brightRed: "#FF7EB6" - brightGreen: "#44E070" - brightYellow: "#FDE593" - brightBlue: "#33B1FF" - brightMagenta: "#FF7EB6" - brightCyan: "#3DDBD9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 74.8 - black: 0 - red: 41.1 - green: 54.4 - yellow: 85.9 - blue: 54.9 - magenta: 54.9 - cyan: 55.8 - white: 99.6 - brightBlack: 14 - brightRed: 55.2 - brightGreen: 71 - brightYellow: 90.7 - brightBlue: 55 - brightMagenta: 55.2 - brightCyan: 71.9 - brightWhite: 107 diff --git a/themes/carbon-candy-obsidian-thin-border.yaml b/themes/carbon-candy-obsidian-thin-border.yaml deleted file mode 100644 index a197836c..00000000 --- a/themes/carbon-candy-obsidian-thin-border.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "carbon-candy-obsidian (thin-border)" -source: - marketplace_id: "viral-team.carbon-candy" - version: "0.2.9" - installs: 835 - author: "Viral Team Theme" - repo: "https://github.com/viral-team/carbon-candy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" -colors: - bg: "#0F0F0F" - fg: "#D8D8D8" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#363636" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 82.6 - black: 0 - red: 47.2 - green: 84.8 - yellow: 79.6 - blue: 56.6 - magenta: 54.4 - cyan: 78.9 - white: 107.5 - brightBlack: 0 - brightRed: 47.2 - brightGreen: 84.8 - brightYellow: 79.6 - brightBlue: 56.6 - brightMagenta: 54.4 - brightCyan: 78.9 - brightWhite: 107.5 diff --git a/themes/carbon-candy-palenight.yaml b/themes/carbon-candy-palenight.yaml index 9a8f906b..d812968b 100644 --- a/themes/carbon-candy-palenight.yaml +++ b/themes/carbon-candy-palenight.yaml @@ -2,7 +2,7 @@ name: "carbon-candy-palenight" source: marketplace_id: "viral-team.carbon-candy" version: "0.2.9" - installs: 835 + installs: 842 author: "Viral Team Theme" repo: "https://github.com/viral-team/carbon-candy-theme" url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 101 black: 0 diff --git a/themes/carbon-code-amber-dark.yaml b/themes/carbon-code-amber-dark.yaml index 648215a8..b7ff6c99 100644 --- a/themes/carbon-code-amber-dark.yaml +++ b/themes/carbon-code-amber-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 92 + pair: "Carbon Code Amber Light" contrast: fg: 91.3 black: 0 diff --git a/themes/carbon-code-amber-light.yaml b/themes/carbon-code-amber-light.yaml index 71d817b0..110f8085 100644 --- a/themes/carbon-code-amber-light.yaml +++ b/themes/carbon-code-amber-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Carbon Code Amber Dark" contrast: fg: 103.5 black: 103.7 diff --git a/themes/carbon-code-crimson-dark.yaml b/themes/carbon-code-crimson-dark.yaml index beb9b670..1b275460 100644 --- a/themes/carbon-code-crimson-dark.yaml +++ b/themes/carbon-code-crimson-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Carbon Code Crimson Light" contrast: fg: 91.3 black: 0 diff --git a/themes/carbon-code-crimson-light.yaml b/themes/carbon-code-crimson-light.yaml index 1d40f501..0c81bf54 100644 --- a/themes/carbon-code-crimson-light.yaml +++ b/themes/carbon-code-crimson-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Carbon Code Crimson Dark" contrast: fg: 104.3 black: 104.5 diff --git a/themes/carbon-code-dark.yaml b/themes/carbon-code-dark.yaml index 7b61ec9d..a624ef42 100644 --- a/themes/carbon-code-dark.yaml +++ b/themes/carbon-code-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Carbon Code Light" contrast: fg: 91.3 black: 0 diff --git a/themes/carbon-code-emerald-dark.yaml b/themes/carbon-code-emerald-dark.yaml index 75472c33..e0947eb1 100644 --- a/themes/carbon-code-emerald-dark.yaml +++ b/themes/carbon-code-emerald-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Carbon Code Emerald Light" contrast: fg: 91.2 black: 0 diff --git a/themes/carbon-code-emerald-light.yaml b/themes/carbon-code-emerald-light.yaml index df5fdb53..5bc45361 100644 --- a/themes/carbon-code-emerald-light.yaml +++ b/themes/carbon-code-emerald-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Carbon Code Emerald Dark" contrast: fg: 104.7 black: 104.8 diff --git a/themes/carbon-code-light.yaml b/themes/carbon-code-light.yaml index 1a19e68b..107a4788 100644 --- a/themes/carbon-code-light.yaml +++ b/themes/carbon-code-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Carbon Code Dark" contrast: fg: 104.2 black: 104.4 diff --git a/themes/carbon-code-rose-dark.yaml b/themes/carbon-code-rose-dark.yaml index c6216237..a3fb57bb 100644 --- a/themes/carbon-code-rose-dark.yaml +++ b/themes/carbon-code-rose-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Carbon Code Rose Light" contrast: fg: 91.3 black: 0 diff --git a/themes/carbon-code-rose-light.yaml b/themes/carbon-code-rose-light.yaml index dad72e54..1571a55d 100644 --- a/themes/carbon-code-rose-light.yaml +++ b/themes/carbon-code-rose-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Carbon Code Rose Dark" contrast: fg: 103 black: 103.2 diff --git a/themes/carbon-design-system-theme.yaml b/themes/carbon-design-system-theme.yaml index 982bffd5..68751c98 100644 --- a/themes/carbon-design-system-theme.yaml +++ b/themes/carbon-design-system-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 99.7 black: 0 diff --git a/themes/carbon-react-color-theme-maya-black.yaml b/themes/carbon-react-color-theme-maya-black.yaml index 5f54f6b5..de749065 100644 --- a/themes/carbon-react-color-theme-maya-black.yaml +++ b/themes/carbon-react-color-theme-maya-black.yaml @@ -2,7 +2,7 @@ name: "Carbon React Color Theme - Maya Black" source: marketplace_id: "yathink3.carbon-react-color-theme" version: "1.4.5" - installs: 6737 + installs: 6741 author: "yathink3" repo: "https://github.com/yathink3/carbon-react-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 242 + pair: null contrast: fg: 66.8 black: 0 diff --git a/themes/carbon-react-color-theme-maya.yaml b/themes/carbon-react-color-theme-maya.yaml index 411d9b26..f7bb1be2 100644 --- a/themes/carbon-react-color-theme-maya.yaml +++ b/themes/carbon-react-color-theme-maya.yaml @@ -2,7 +2,7 @@ name: "Carbon React Color Theme - Maya" source: marketplace_id: "yathink3.carbon-react-color-theme" version: "1.4.5" - installs: 6737 + installs: 6741 author: "yathink3" repo: "https://github.com/yathink3/carbon-react-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 270 + pair: null contrast: fg: 65.5 black: 0 diff --git a/themes/carbon-react-color-theme.yaml b/themes/carbon-react-color-theme.yaml index f59bd801..55ff46fe 100644 --- a/themes/carbon-react-color-theme.yaml +++ b/themes/carbon-react-color-theme.yaml @@ -2,7 +2,7 @@ name: "Carbon React Color Theme" source: marketplace_id: "yathink3.carbon-react-color-theme" version: "1.4.5" - installs: 6737 + installs: 6741 author: "yathink3" repo: "https://github.com/yathink3/carbon-react-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 268 + pair: null contrast: fg: 64 black: 0 diff --git a/themes/carbon.yaml b/themes/carbon.yaml index 15386fc8..89c5dd65 100644 --- a/themes/carbon.yaml +++ b/themes/carbon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 262 + pair: null contrast: fg: 73.2 black: 0 diff --git a/themes/carbonfox.yaml b/themes/carbonfox.yaml index 71f1b3d3..e6828251 100644 --- a/themes/carbonfox.yaml +++ b/themes/carbonfox.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 74.4 black: 0 diff --git a/themes/carbonight-contrast.yaml b/themes/carbonight-contrast.yaml index 8018af08..95cc4921 100644 --- a/themes/carbonight-contrast.yaml +++ b/themes/carbonight-contrast.yaml @@ -1,11 +1,11 @@ name: "carbonight-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#000000" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/carbonight-dusk.yaml b/themes/carbonight-dusk.yaml index bc937f73..f330f1e1 100644 --- a/themes/carbonight-dusk.yaml +++ b/themes/carbonight-dusk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 278 + pair: null contrast: fg: 86.3 black: 0 diff --git a/themes/carbonight-light.yaml b/themes/carbonight-light.yaml index b8796d43..970e15d9 100644 --- a/themes/carbonight-light.yaml +++ b/themes/carbonight-light.yaml @@ -1,11 +1,11 @@ name: "carbonight-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#2E2C2B" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 100.5 black: 0 diff --git a/themes/carbonight-midnight.yaml b/themes/carbonight-midnight.yaml index b5c52425..dcf5c332 100644 --- a/themes/carbonight-midnight.yaml +++ b/themes/carbonight-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 87.7 black: 0 diff --git a/themes/carbonight.yaml b/themes/carbonight.yaml index 18174bd2..71945635 100644 --- a/themes/carbonight.yaml +++ b/themes/carbonight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 254 + pair: null contrast: fg: 86 black: 0 diff --git a/themes/carex-dark.yaml b/themes/carex-dark.yaml index f67dd676..7bfba1b4 100644 --- a/themes/carex-dark.yaml +++ b/themes/carex-dark.yaml @@ -2,7 +2,7 @@ name: "Carex Dark" source: marketplace_id: "OMERBABACO.carex-theme" version: "2.0.0" - installs: 43 + installs: 45 author: "OMERBABACO" repo: "https://github.com/babajoeltdsti/carex-theme" url: "https://marketplace.visualstudio.com/items?itemName=OMERBABACO.carex-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: "Carex Light" contrast: fg: 80 black: 9.3 diff --git a/themes/carex-high-contrast-dark.yaml b/themes/carex-high-contrast-dark.yaml index 38120e9c..75e6b203 100644 --- a/themes/carex-high-contrast-dark.yaml +++ b/themes/carex-high-contrast-dark.yaml @@ -2,7 +2,7 @@ name: "Carex High Contrast Dark" source: marketplace_id: "OMERBABACO.carex-theme" version: "2.0.0" - installs: 43 + installs: 45 author: "OMERBABACO" repo: "https://github.com/babajoeltdsti/carex-theme" url: "https://marketplace.visualstudio.com/items?itemName=OMERBABACO.carex-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/carex-light.yaml b/themes/carex-light.yaml index b9a297af..4de13f08 100644 --- a/themes/carex-light.yaml +++ b/themes/carex-light.yaml @@ -2,7 +2,7 @@ name: "Carex Light" source: marketplace_id: "OMERBABACO.carex-theme" version: "2.0.0" - installs: 43 + installs: 45 author: "OMERBABACO" repo: "https://github.com/babajoeltdsti/carex-theme" url: "https://marketplace.visualstudio.com/items?itemName=OMERBABACO.carex-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Carex Dark" contrast: fg: 79.3 black: 72.8 diff --git a/themes/casino-royal.yaml b/themes/casino-royal.yaml index a5ecaf4c..7d543cbe 100644 --- a/themes/casino-royal.yaml +++ b/themes/casino-royal.yaml @@ -2,7 +2,7 @@ name: "Casino Royal" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 143 + pair: null contrast: fg: 94.3 black: 0 diff --git a/themes/cat-pink.yaml b/themes/cat-pink.yaml index 5be43364..8e881c2f 100644 --- a/themes/cat-pink.yaml +++ b/themes/cat-pink.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.1 black: 0 diff --git a/themes/cat-sleep-color-theme.yaml b/themes/cat-sleep-color-theme.yaml index a1d985ed..ed1affe0 100644 --- a/themes/cat-sleep-color-theme.yaml +++ b/themes/cat-sleep-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 36.8 black: 0 diff --git a/themes/catalyst-light.yaml b/themes/catalyst-light.yaml index 5f1b8302..ef660e5d 100644 --- a/themes/catalyst-light.yaml +++ b/themes/catalyst-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 101.4 black: 106 diff --git a/themes/catalyst.yaml b/themes/catalyst.yaml index fdfbe3ec..151779c6 100644 --- a/themes/catalyst.yaml +++ b/themes/catalyst.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 23.5 black: 0 diff --git a/themes/cathaytrial.yaml b/themes/cathaytrial.yaml index 22b63af8..03c18d4d 100644 --- a/themes/cathaytrial.yaml +++ b/themes/cathaytrial.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/catppuccin-dark.yaml b/themes/catppuccin-dark.yaml index fccdc1da..d87d2917 100644 --- a/themes/catppuccin-dark.yaml +++ b/themes/catppuccin-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 80.9 black: 10.2 diff --git a/themes/catppuccin-frapp.yaml b/themes/catppuccin-frapp.yaml index 5d0f9304..b8fc4824 100644 --- a/themes/catppuccin-frapp.yaml +++ b/themes/catppuccin-frapp.yaml @@ -1,11 +1,11 @@ name: "Catppuccin Frappé" source: - marketplace_id: "Catppuccin.catppuccin-vsc" - version: "3.18.1" - installs: 1123950 - author: "Catppuccin" - repo: "https://github.com/catppuccin/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc" + marketplace_id: "codelogix.catppuccin-darker-vsc" + version: "0.0.3" + installs: 1329 + author: "Carl Weis" + repo: "https://github.com/carlweis/catppuccin-dark" + url: "https://marketplace.visualstudio.com/items?itemName=codelogix.catppuccin-darker-vsc" colors: bg: "#303446" fg: "#C6D0F5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 72.3 black: 10.8 diff --git a/themes/catppuccin-latte.yaml b/themes/catppuccin-latte.yaml index bf18907c..86ca0b2f 100644 --- a/themes/catppuccin-latte.yaml +++ b/themes/catppuccin-latte.yaml @@ -1,11 +1,11 @@ name: "Catppuccin Latte" source: - marketplace_id: "Catppuccin.catppuccin-vsc" - version: "3.18.1" - installs: 1123950 - author: "Catppuccin" - repo: "https://github.com/catppuccin/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc" + marketplace_id: "codelogix.catppuccin-darker-vsc" + version: "0.0.3" + installs: 1329 + author: "Carl Weis" + repo: "https://github.com/carlweis/catppuccin-dark" + url: "https://marketplace.visualstudio.com/items?itemName=codelogix.catppuccin-darker-vsc" colors: bg: "#EFF1F5" fg: "#4C4F69" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 79.3 black: 72.8 diff --git a/themes/catppuccin-macchiato.yaml b/themes/catppuccin-macchiato.yaml index 186d5635..47b01a0a 100644 --- a/themes/catppuccin-macchiato.yaml +++ b/themes/catppuccin-macchiato.yaml @@ -1,11 +1,11 @@ name: "Catppuccin Macchiato" source: - marketplace_id: "Catppuccin.catppuccin-vsc" - version: "3.18.1" - installs: 1123950 - author: "Catppuccin" - repo: "https://github.com/catppuccin/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc" + marketplace_id: "codelogix.catppuccin-darker-vsc" + version: "0.0.3" + installs: 1329 + author: "Carl Weis" + repo: "https://github.com/carlweis/catppuccin-dark" + url: "https://marketplace.visualstudio.com/items?itemName=codelogix.catppuccin-darker-vsc" colors: bg: "#24273A" fg: "#CAD3F5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 277 + pair: null contrast: fg: 76.9 black: 10 diff --git a/themes/catppuccin-mocha.yaml b/themes/catppuccin-mocha.yaml index 5f883c6d..691f3f9a 100644 --- a/themes/catppuccin-mocha.yaml +++ b/themes/catppuccin-mocha.yaml @@ -2,7 +2,7 @@ name: "Catppuccin Mocha" source: marketplace_id: "skyrocket-qy.whisper" version: "0.1.3" - installs: 576 + installs: 578 author: "skyrocket-qy" repo: "https://github.com/skyrocket-qy/Whisper" url: "https://marketplace.visualstudio.com/items?itemName=skyrocket-qy.whisper" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 81.1 black: 10.7 diff --git a/themes/catppuccin-monokai-frappe.yaml b/themes/catppuccin-monokai-frappe.yaml index 4b3883e7..b55421e9 100644 --- a/themes/catppuccin-monokai-frappe.yaml +++ b/themes/catppuccin-monokai-frappe.yaml @@ -1,11 +1,11 @@ name: "Catppuccin Monokai Frappe" source: - marketplace_id: "dooez.alt-catppuccin-vsc" - version: "2.7.4" - installs: 50560 + marketplace_id: "dooez.catppuccin-monokai-vsc" + version: "2.7.1" + installs: 28 author: "dooez" - repo: "https://github.com/Dooez/alt-catppuccin-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=dooez.alt-catppuccin-vsc" + repo: "https://github.com/Dooez/catppuccin-monokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dooez.catppuccin-monokai-vsc" colors: bg: "#303446" fg: "#C6D0F5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 72.3 black: 25.6 diff --git a/themes/catppuccin-monokai-latte.yaml b/themes/catppuccin-monokai-latte.yaml index 71751dce..c924e710 100644 --- a/themes/catppuccin-monokai-latte.yaml +++ b/themes/catppuccin-monokai-latte.yaml @@ -1,11 +1,11 @@ name: "Catppuccin Monokai Latte" source: - marketplace_id: "dooez.alt-catppuccin-vsc" - version: "2.7.4" - installs: 50560 + marketplace_id: "dooez.catppuccin-monokai-vsc" + version: "2.7.1" + installs: 28 author: "dooez" - repo: "https://github.com/Dooez/alt-catppuccin-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=dooez.alt-catppuccin-vsc" + repo: "https://github.com/Dooez/catppuccin-monokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dooez.catppuccin-monokai-vsc" colors: bg: "#EFF1F5" fg: "#4C4F69" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 79.3 black: 42.4 diff --git a/themes/catppuccin-monokai-macchiato.yaml b/themes/catppuccin-monokai-macchiato.yaml index f40efac5..7865bd87 100644 --- a/themes/catppuccin-monokai-macchiato.yaml +++ b/themes/catppuccin-monokai-macchiato.yaml @@ -1,11 +1,11 @@ name: "Catppuccin Monokai Macchiato" source: - marketplace_id: "dooez.alt-catppuccin-vsc" - version: "2.7.4" - installs: 50560 + marketplace_id: "dooez.catppuccin-monokai-vsc" + version: "2.7.1" + installs: 28 author: "dooez" - repo: "https://github.com/Dooez/alt-catppuccin-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=dooez.alt-catppuccin-vsc" + repo: "https://github.com/Dooez/catppuccin-monokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dooez.catppuccin-monokai-vsc" colors: bg: "#24273A" fg: "#CAD3F5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 277 + pair: null contrast: fg: 76.9 black: 25.8 diff --git a/themes/catppuccin-monokai-mocha.yaml b/themes/catppuccin-monokai-mocha.yaml index 376d1dc2..3c042d0a 100644 --- a/themes/catppuccin-monokai-mocha.yaml +++ b/themes/catppuccin-monokai-mocha.yaml @@ -1,11 +1,11 @@ name: "Catppuccin Monokai Mocha" source: - marketplace_id: "dooez.alt-catppuccin-vsc" - version: "2.7.4" - installs: 50560 + marketplace_id: "dooez.catppuccin-monokai-vsc" + version: "2.7.1" + installs: 28 author: "dooez" - repo: "https://github.com/Dooez/alt-catppuccin-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=dooez.alt-catppuccin-vsc" + repo: "https://github.com/Dooez/catppuccin-monokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dooez.catppuccin-monokai-vsc" colors: bg: "#1E1E2E" fg: "#CDD6F4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 80 black: 25.8 diff --git a/themes/catthode.yaml b/themes/catthode.yaml index 56c13c2d..d186ca3c 100644 --- a/themes/catthode.yaml +++ b/themes/catthode.yaml @@ -2,7 +2,7 @@ name: "Catthode" source: marketplace_id: "Catthode.catthode" version: "0.1.1" - installs: 63 + installs: 64 author: "Catthode" repo: "https://github.com/catthode/vscode" url: "https://marketplace.visualstudio.com/items?itemName=Catthode.catthode" diff --git a/themes/cchl-color-theme.yaml b/themes/cchl-color-theme.yaml deleted file mode 100644 index c65b4945..00000000 --- a/themes/cchl-color-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "cchl-color-theme" -source: - marketplace_id: "lvchencheng.theme-ckai" - version: "1.3.0" - installs: 91 - author: "lvchencheng" - repo: "https://gitee.com/lu-chencheng/ckai" - url: "https://marketplace.visualstudio.com/items?itemName=lvchencheng.theme-ckai" -colors: - bg: "#292929" - fg: "#F8F8F2" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 99.3 - black: 0 - red: 22 - green: 50.4 - yellow: 55 - blue: 32 - magenta: 29.6 - cyan: 47.8 - white: 85.9 - brightBlack: 19.4 - brightRed: 34.7 - brightGreen: 74.4 - brightYellow: 81.3 - brightBlue: 47.2 - brightMagenta: 43.9 - brightCyan: 70.8 - brightWhite: 99.3 diff --git a/themes/cebola-theme.yaml b/themes/cebola-theme.yaml index 5c9bff5d..5dba11b5 100644 --- a/themes/cebola-theme.yaml +++ b/themes/cebola-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 244 + pair: null contrast: fg: 79.6 black: 0 diff --git a/themes/celadon-theme.yaml b/themes/celadon-theme.yaml index 215e3c33..949a0ce0 100644 --- a/themes/celadon-theme.yaml +++ b/themes/celadon-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 197 + pair: null contrast: fg: 81.9 black: 0 diff --git a/themes/celestial-charm-theme.yaml b/themes/celestial-charm-theme.yaml index 2d97a90e..fa738282 100644 --- a/themes/celestial-charm-theme.yaml +++ b/themes/celestial-charm-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 5 + pair: null contrast: fg: 65.6 black: 0 diff --git a/themes/ceo.yaml b/themes/ceo.yaml deleted file mode 100644 index 8c2a600a..00000000 --- a/themes/ceo.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Ceo" -source: - marketplace_id: "ceo.ceo" - version: "1.0.2" - installs: 51 - author: "ceo" - repo: "https://github.com/Ceo-Sammarco/Ceo-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ceo.ceo" -colors: - bg: "#1C1C21" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 78.9 - black: 0 - red: 26.1 - green: 52.4 - yellow: 85 - blue: 26.8 - magenta: 29.1 - cyan: 46.9 - white: 89.4 - brightBlack: 21.4 - brightRed: 37.9 - brightGreen: 62.9 - brightYellow: 95 - brightBlue: 39.4 - brightMagenta: 44.8 - brightCyan: 54.8 - brightWhite: 89.4 diff --git a/themes/cerydra.yaml b/themes/cerydra.yaml index 404ebd82..1833ea98 100644 --- a/themes/cerydra.yaml +++ b/themes/cerydra.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 104.3 black: 0 diff --git a/themes/cfl-one.yaml b/themes/cfl-one.yaml index 50e63d7e..04d86a89 100644 --- a/themes/cfl-one.yaml +++ b/themes/cfl-one.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 75.8 black: 0 diff --git a/themes/chai-light.yaml b/themes/chai-light.yaml index 6eb965a6..06af5123 100644 --- a/themes/chai-light.yaml +++ b/themes/chai-light.yaml @@ -1,11 +1,11 @@ name: "Chai Light" source: - marketplace_id: "hiteshchoudharycode.chai-theme" - version: "0.2.0" - installs: 167423 - author: "hitesh choudhary" - repo: "https://github.com/hiteshchoudhary/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=hiteshchoudharycode.chai-theme" + marketplace_id: "vs-code-theme.FantasyTheme" + version: "0.1.4" + installs: 565 + author: "PradeepSahu" + repo: "https://github.com/PradeepSahhu/vscode-theme-blue" + url: "https://marketplace.visualstudio.com/items?itemName=vs-code-theme.FantasyTheme" colors: bg: "#F7F7F7" fg: "#383A42" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 91.4 black: 91.5 diff --git a/themes/chalk.yaml b/themes/chalk.yaml index 2c08700b..d15df209 100644 --- a/themes/chalk.yaml +++ b/themes/chalk.yaml @@ -2,7 +2,7 @@ name: "Chalk" source: marketplace_id: "emmakrause.chalk" version: "1.0.0" - installs: 3042 + installs: 3044 author: "Emma Krause" repo: "https://github.com/emkrause14/chalk-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=emmakrause.chalk" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 77.3 black: 22.8 diff --git a/themes/chalkish.yaml b/themes/chalkish.yaml index c7713ce1..cdcc8572 100644 --- a/themes/chalkish.yaml +++ b/themes/chalkish.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/charcoal.yaml b/themes/charcoal.yaml index e2204dca..293c9dea 100644 --- a/themes/charcoal.yaml +++ b/themes/charcoal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 248 + pair: null contrast: fg: 73.1 black: 0 diff --git a/themes/charli-health-dark.yaml b/themes/charli-health-dark.yaml index c593eee0..b037e28f 100644 --- a/themes/charli-health-dark.yaml +++ b/themes/charli-health-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 303 + pair: "CHARLI Health Light" contrast: fg: 92.1 black: 0 diff --git a/themes/charli-health-light.yaml b/themes/charli-health-light.yaml index d506c848..59a2bb3f 100644 --- a/themes/charli-health-light.yaml +++ b/themes/charli-health-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "CHARLI Health Dark" contrast: fg: 79.7 black: 100.4 diff --git a/themes/chatgpt-theme.yaml b/themes/chatgpt-theme.yaml deleted file mode 100644 index fe87f87a..00000000 --- a/themes/chatgpt-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "ChatGPT Theme" -source: - marketplace_id: "kgnio.sprinklepack" - version: "0.2.5" - installs: 80 - author: "Kagan Mamak" - repo: "https://github.com/kgnio/sprinklepack" - url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" -colors: - bg: "#171717" - fg: "#E9E9E9" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 92.5 - black: 0 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 90 - brightBlack: 22 - brightRed: 38.6 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 106.9 diff --git a/themes/cheese-n-all.yaml b/themes/cheese-n-all.yaml index e27f9163..98379bbd 100644 --- a/themes/cheese-n-all.yaml +++ b/themes/cheese-n-all.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 46.9 black: 0 diff --git a/themes/cheesewaffle-blue.yaml b/themes/cheesewaffle-blue.yaml index 1d6edae2..de79a6bb 100644 --- a/themes/cheesewaffle-blue.yaml +++ b/themes/cheesewaffle-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 103.4 black: 0 diff --git a/themes/cheetha-green.yaml b/themes/cheetha-green.yaml index 99d3d706..9f1b1c9a 100644 --- a/themes/cheetha-green.yaml +++ b/themes/cheetha-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 34.6 black: 0 diff --git a/themes/cherry-blossom-airy.yaml b/themes/cherry-blossom-airy.yaml index 03c9708f..287a393e 100644 --- a/themes/cherry-blossom-airy.yaml +++ b/themes/cherry-blossom-airy.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Airy" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 83 black: 83 diff --git a/themes/cherry-blossom-breeze.yaml b/themes/cherry-blossom-breeze.yaml index 81eeaa4d..52193d63 100644 --- a/themes/cherry-blossom-breeze.yaml +++ b/themes/cherry-blossom-breeze.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Breeze" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 268 + pair: null contrast: fg: 96.4 black: 0 diff --git a/themes/cherry-blossom-dark-reflection.yaml b/themes/cherry-blossom-dark-reflection.yaml index 858797bd..7aecfd73 100644 --- a/themes/cherry-blossom-dark-reflection.yaml +++ b/themes/cherry-blossom-dark-reflection.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Dark Reflection" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: 269 + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/cherry-blossom-dark-vivid.yaml b/themes/cherry-blossom-dark-vivid.yaml index 0c047bea..125e31c6 100644 --- a/themes/cherry-blossom-dark-vivid.yaml +++ b/themes/cherry-blossom-dark-vivid.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Dark Vivid" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 81.6 black: 0 diff --git a/themes/cherry-blossom-dark.yaml b/themes/cherry-blossom-dark.yaml index b934cd54..00f566b1 100644 --- a/themes/cherry-blossom-dark.yaml +++ b/themes/cherry-blossom-dark.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Dark" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 98.2 black: 0 diff --git a/themes/cherry-blossom-dimmed-dusk.yaml b/themes/cherry-blossom-dimmed-dusk.yaml index f6cfa54d..81f7585c 100644 --- a/themes/cherry-blossom-dimmed-dusk.yaml +++ b/themes/cherry-blossom-dimmed-dusk.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Dimmed Dusk" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.2 black: 0 diff --git a/themes/cherry-blossom-dimmed.yaml b/themes/cherry-blossom-dimmed.yaml index fee77718..40940451 100644 --- a/themes/cherry-blossom-dimmed.yaml +++ b/themes/cherry-blossom-dimmed.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Dimmed" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 98.2 black: 0 diff --git a/themes/cherry-blossom-night-harmony.yaml b/themes/cherry-blossom-night-harmony.yaml index b26b571e..70e6f88a 100644 --- a/themes/cherry-blossom-night-harmony.yaml +++ b/themes/cherry-blossom-night-harmony.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Night Harmony" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 103.2 black: 0 diff --git a/themes/cherry-blossom-night.yaml b/themes/cherry-blossom-night.yaml index 06fe2db0..c7f088ee 100644 --- a/themes/cherry-blossom-night.yaml +++ b/themes/cherry-blossom-night.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Night" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 282 + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/cherry-blossom-osaka-light.yaml b/themes/cherry-blossom-osaka-light.yaml index bfabe00f..e71cefeb 100644 --- a/themes/cherry-blossom-osaka-light.yaml +++ b/themes/cherry-blossom-osaka-light.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Osaka Light" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 82.4 black: 93.9 diff --git a/themes/cherry-blossom-osaka.yaml b/themes/cherry-blossom-osaka.yaml index fdd191cb..c5d8771f 100644 --- a/themes/cherry-blossom-osaka.yaml +++ b/themes/cherry-blossom-osaka.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Osaka" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 254 + pair: null contrast: fg: 77.9 black: 0 diff --git a/themes/cherry-blossom-sky-vibrant.yaml b/themes/cherry-blossom-sky-vibrant.yaml index 86a2d60a..4954fd58 100644 --- a/themes/cherry-blossom-sky-vibrant.yaml +++ b/themes/cherry-blossom-sky-vibrant.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Sky Vibrant" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 98.5 black: 98.5 diff --git a/themes/cherry-blossom-spring.yaml b/themes/cherry-blossom-spring.yaml index 8060d697..e204c06b 100644 --- a/themes/cherry-blossom-spring.yaml +++ b/themes/cherry-blossom-spring.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Spring" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 91.1 black: 96.9 diff --git a/themes/cherry-blossom-twilight.yaml b/themes/cherry-blossom-twilight.yaml index 28aac488..0e51d9f6 100644 --- a/themes/cherry-blossom-twilight.yaml +++ b/themes/cherry-blossom-twilight.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Twilight" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 308 + pair: null contrast: fg: 91.2 black: 0 diff --git a/themes/cherry-blossom-warm.yaml b/themes/cherry-blossom-warm.yaml index 29762a88..0cbcf36d 100644 --- a/themes/cherry-blossom-warm.yaml +++ b/themes/cherry-blossom-warm.yaml @@ -2,7 +2,7 @@ name: "Cherry Blossom Warm" source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" - installs: 2129 + installs: 2131 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 98.2 black: 98.2 diff --git a/themes/cherry-delite.yaml b/themes/cherry-delite.yaml index 863efc3b..0d6ad153 100644 --- a/themes/cherry-delite.yaml +++ b/themes/cherry-delite.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 56.7 black: 0 diff --git a/themes/cherry-midnight.yaml b/themes/cherry-midnight.yaml index e75175d1..e299cb5c 100644 --- a/themes/cherry-midnight.yaml +++ b/themes/cherry-midnight.yaml @@ -2,7 +2,7 @@ name: "Cherry Midnight" source: marketplace_id: "nullxception.cherry-theme" version: "0.2.7" - installs: 8306 + installs: 8307 author: "Nauval Rizky" repo: "https://github.com/nullxception/cherry-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nullxception.cherry-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 70.5 black: 0 diff --git a/themes/cherry-wild-theme.yaml b/themes/cherry-wild-theme.yaml index 63a09d80..d74463ee 100644 --- a/themes/cherry-wild-theme.yaml +++ b/themes/cherry-wild-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 313 + pair: null contrast: fg: 105.2 black: 0 diff --git a/themes/cherry.yaml b/themes/cherry.yaml index ae7c4f66..7817805c 100644 --- a/themes/cherry.yaml +++ b/themes/cherry.yaml @@ -2,7 +2,7 @@ name: "Cherry" source: marketplace_id: "nullxception.cherry-theme" version: "0.2.7" - installs: 8306 + installs: 8307 author: "Nauval Rizky" repo: "https://github.com/nullxception/cherry-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nullxception.cherry-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 68.8 black: 8.1 diff --git a/themes/cherryblossom.yaml b/themes/cherryblossom.yaml index e71a574a..07a1abc0 100644 --- a/themes/cherryblossom.yaml +++ b/themes/cherryblossom.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 79 + pair: null contrast: fg: 93.3 black: 0 diff --git a/themes/chiclete-de-uva-theme.yaml b/themes/chiclete-de-uva-theme.yaml index 29e9f626..a2a98fe6 100644 --- a/themes/chiclete-de-uva-theme.yaml +++ b/themes/chiclete-de-uva-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/chillhack.yaml b/themes/chillhack.yaml index 7fa083b2..13a6b6ac 100644 --- a/themes/chillhack.yaml +++ b/themes/chillhack.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72 black: 0 diff --git a/themes/chinolor-light.yaml b/themes/chinolor-light.yaml index 21c55134..961037e5 100644 --- a/themes/chinolor-light.yaml +++ b/themes/chinolor-light.yaml @@ -2,7 +2,7 @@ name: "Chinolor Light" source: marketplace_id: "iwyvi.chinolor" version: "0.2.19" - installs: 36136 + installs: 36140 author: "iwyvi" repo: "https://github.com/iwyvi/chinolor" url: "https://marketplace.visualstudio.com/items?itemName=iwyvi.chinolor" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 93.4 black: 99.7 diff --git a/themes/chinolor.yaml b/themes/chinolor.yaml index 40587dde..b7d22b40 100644 --- a/themes/chinolor.yaml +++ b/themes/chinolor.yaml @@ -2,7 +2,7 @@ name: "Chinolor" source: marketplace_id: "iwyvi.chinolor" version: "0.2.19" - installs: 36136 + installs: 36140 author: "iwyvi" repo: "https://github.com/iwyvi/chinolor" url: "https://marketplace.visualstudio.com/items?itemName=iwyvi.chinolor" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 150 + pair: null contrast: fg: 82.6 black: 0 diff --git a/themes/chocolate-contrast.yaml b/themes/chocolate-contrast.yaml index 6bb0de69..5209279f 100644 --- a/themes/chocolate-contrast.yaml +++ b/themes/chocolate-contrast.yaml @@ -1,11 +1,11 @@ name: "chocolate-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#150F08" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 71 + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/chocolate-dessert-theme.yaml b/themes/chocolate-dessert-theme.yaml index 44cc6db5..568c4eea 100644 --- a/themes/chocolate-dessert-theme.yaml +++ b/themes/chocolate-dessert-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 33 + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/chocolate-light.yaml b/themes/chocolate-light.yaml index e1c21ed8..06cabdd7 100644 --- a/themes/chocolate-light.yaml +++ b/themes/chocolate-light.yaml @@ -1,11 +1,11 @@ name: "chocolate-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#150F08" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 105.4 black: 0 diff --git a/themes/chocolate.yaml b/themes/chocolate.yaml index 88f5b1ac..0f792b27 100644 --- a/themes/chocolate.yaml +++ b/themes/chocolate.yaml @@ -1,11 +1,11 @@ name: "chocolate" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#261B0E" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 70 + pair: null contrast: fg: 106.1 black: 0 diff --git a/themes/chpastel.yaml b/themes/chpastel.yaml index 15ff7bd9..7d9841ba 100644 --- a/themes/chpastel.yaml +++ b/themes/chpastel.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 33.6 black: 66.4 diff --git a/themes/christmas.yaml b/themes/christmas.yaml index 3f857321..742d7de4 100644 --- a/themes/christmas.yaml +++ b/themes/christmas.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 73.8 black: 106 diff --git a/themes/chromahin-amoled.yaml b/themes/chromahin-amoled.yaml index 3bd2338d..b5caad1c 100644 --- a/themes/chromahin-amoled.yaml +++ b/themes/chromahin-amoled.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 98.2 black: 0 diff --git a/themes/chromahin-dark.yaml b/themes/chromahin-dark.yaml index 25071665..2dd269db 100644 --- a/themes/chromahin-dark.yaml +++ b/themes/chromahin-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 94.7 black: 0 diff --git a/themes/chromahin-multi-color.yaml b/themes/chromahin-multi-color.yaml index fcc190f6..67173189 100644 --- a/themes/chromahin-multi-color.yaml +++ b/themes/chromahin-multi-color.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 268 + pair: null contrast: fg: 95.6 black: 0 diff --git a/themes/chromahin-soft.yaml b/themes/chromahin-soft.yaml index 8c7b9955..c7c26128 100644 --- a/themes/chromahin-soft.yaml +++ b/themes/chromahin-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 265 + pair: null contrast: fg: 95.9 black: 0 diff --git a/themes/chromatic-dark.yaml b/themes/chromatic-dark.yaml index cede8500..ee16c1e9 100644 --- a/themes/chromatic-dark.yaml +++ b/themes/chromatic-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Chromatic Light" contrast: fg: 39.2 black: 0 diff --git a/themes/chromatic-light.yaml b/themes/chromatic-light.yaml index 15ae4022..978bf8e5 100644 --- a/themes/chromatic-light.yaml +++ b/themes/chromatic-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Chromatic Dark" contrast: fg: 97.2 black: 83.1 diff --git a/themes/chrome-devtools.yaml b/themes/chrome-devtools.yaml index 247b7a0a..d578dcf4 100644 --- a/themes/chrome-devtools.yaml +++ b/themes/chrome-devtools.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 69.3 black: 10 diff --git a/themes/chromodusk-classic.yaml b/themes/chromodusk-classic.yaml index b4a1599b..047bd09c 100644 --- a/themes/chromodusk-classic.yaml +++ b/themes/chromodusk-classic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 242 + pair: null contrast: fg: 72.1 black: 13.6 diff --git a/themes/cielo.yaml b/themes/cielo.yaml index 7ac8bbcb..e78bc055 100644 --- a/themes/cielo.yaml +++ b/themes/cielo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 273 + pair: null contrast: fg: 94.2 black: 0 diff --git a/themes/cinnamon.yaml b/themes/cinnamon.yaml index 62b7261e..cb3b942d 100644 --- a/themes/cinnamon.yaml +++ b/themes/cinnamon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 277 + pair: null contrast: fg: 61.7 black: 0 diff --git a/themes/cinnamonroll.yaml b/themes/cinnamonroll.yaml index 8e45aeee..e9f2c2c2 100644 --- a/themes/cinnamonroll.yaml +++ b/themes/cinnamonroll.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 54.6 black: 106 diff --git a/themes/citric-secret.yaml b/themes/citric-secret.yaml index d9480b0a..fe0944fd 100644 --- a/themes/citric-secret.yaml +++ b/themes/citric-secret.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 96.8 black: 0 diff --git a/themes/city-fog.yaml b/themes/city-fog.yaml index dbd654f3..3ca5addc 100644 --- a/themes/city-fog.yaml +++ b/themes/city-fog.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 245 + pair: null contrast: fg: 78.7 black: 87.7 diff --git a/themes/clairvoyance-theme-alt.yaml b/themes/clairvoyance-theme-alt.yaml index 12d759fc..da93111c 100644 --- a/themes/clairvoyance-theme-alt.yaml +++ b/themes/clairvoyance-theme-alt.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 270 + pair: null contrast: fg: 61.6 black: 0 diff --git a/themes/clairvoyance-theme-grape.yaml b/themes/clairvoyance-theme-grape.yaml index 3e8062c2..580acc56 100644 --- a/themes/clairvoyance-theme-grape.yaml +++ b/themes/clairvoyance-theme-grape.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 270 + pair: null contrast: fg: 65.5 black: 0 diff --git a/themes/clairvoyance-theme-pinkish.yaml b/themes/clairvoyance-theme-pinkish.yaml index 339c5078..2b501122 100644 --- a/themes/clairvoyance-theme-pinkish.yaml +++ b/themes/clairvoyance-theme-pinkish.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 270 + pair: null contrast: fg: 68.5 black: 0 diff --git a/themes/clairvoyance-theme.yaml b/themes/clairvoyance-theme.yaml index c73c512d..5907f43f 100644 --- a/themes/clairvoyance-theme.yaml +++ b/themes/clairvoyance-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 270 + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/clarity-design-system-dark.yaml b/themes/clarity-design-system-dark.yaml index 932594ce..1bc39e12 100644 --- a/themes/clarity-design-system-dark.yaml +++ b/themes/clarity-design-system-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: "Clarity Design System - Light" contrast: fg: 95.3 black: 0 diff --git a/themes/clarity-design-system-light.yaml b/themes/clarity-design-system-light.yaml index 89de87a2..71684af6 100644 --- a/themes/clarity-design-system-light.yaml +++ b/themes/clarity-design-system-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Clarity Design System - Dark" contrast: fg: 95.7 black: 0 diff --git a/themes/claro.yaml b/themes/claro.yaml index 0f6aeb3f..59dcaa88 100644 --- a/themes/claro.yaml +++ b/themes/claro.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/classic-terminal.yaml b/themes/classic-terminal.yaml index ad046f18..38ef4029 100644 --- a/themes/classic-terminal.yaml +++ b/themes/classic-terminal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 28 black: 0 diff --git a/themes/claude-code-dark-brand.yaml b/themes/claude-code-dark-brand.yaml deleted file mode 100644 index 621e769d..00000000 --- a/themes/claude-code-dark-brand.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Claude Code Dark Brand" -source: - marketplace_id: "ashwingopalsamy.claude-code-theme" - version: "1.2.2" - installs: 889 - author: "Ashwin Gopalsamy" - repo: "https://github.com/ashwingopalsamy/claude-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" -colors: - bg: "#141413" - fg: "#EAE7DF" - black: "#1A1917" - red: "#D47563" - green: "#9ACA86" - yellow: "#E8C96B" - blue: "#61AAF2" - magenta: "#9B87F5" - cyan: "#8CC4FF" - white: "#D9D5CC" - brightBlack: "#6B665F" - brightRed: "#F09884" - brightGreen: "#B6E0A5" - brightYellow: "#F2D98F" - brightBlue: "#A2D2FF" - brightMagenta: "#C9BCFF" - brightCyan: "#BDE0FF" - brightWhite: "#F5F2E9" -meta: - mode: "dark" - accent: "magenta" - hue: null - contrast: - fg: 91.6 - black: 0 - red: 41.9 - green: 66.2 - yellow: 74.7 - blue: 53.1 - magenta: 45.5 - cyan: 67.6 - white: 80.5 - brightBlack: 22.6 - brightRed: 58.3 - brightGreen: 79.9 - brightYellow: 83.8 - brightBlue: 75.6 - brightMagenta: 70.6 - brightCyan: 84.5 - brightWhite: 98.6 diff --git a/themes/claude-code-dark-high-contrast.yaml b/themes/claude-code-dark-high-contrast.yaml index 0ea25569..e977dc18 100644 --- a/themes/claude-code-dark-high-contrast.yaml +++ b/themes/claude-code-dark-high-contrast.yaml @@ -2,7 +2,7 @@ name: "Claude Code Dark High Contrast" source: marketplace_id: "ashwingopalsamy.claude-code-theme" version: "1.2.2" - installs: 889 + installs: 913 author: "Ashwin Gopalsamy" repo: "https://github.com/ashwingopalsamy/claude-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Claude Code Light High Contrast" contrast: fg: 98.9 black: 0 diff --git a/themes/claude-code-light-brand.yaml b/themes/claude-code-light-brand.yaml deleted file mode 100644 index 7411a435..00000000 --- a/themes/claude-code-light-brand.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Claude Code Light Brand" -source: - marketplace_id: "ashwingopalsamy.claude-code-theme" - version: "1.2.2" - installs: 889 - author: "Ashwin Gopalsamy" - repo: "https://github.com/ashwingopalsamy/claude-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" -colors: - bg: "#FAF9F5" - fg: "#1A1917" - black: "#1A1917" - red: "#A84B3A" - green: "#2E7C4C" - yellow: "#8A6220" - blue: "#207FDE" - magenta: "#6A5BCC" - cyan: "#2E5F99" - white: "#746E64" - brightBlack: "#8D877D" - brightRed: "#C45F4A" - brightGreen: "#5E8F6D" - brightYellow: "#9C7A39" - brightBlue: "#4F79A8" - brightMagenta: "#6D5DBD" - brightCyan: "#45809E" - brightWhite: "#4A473F" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 100.8 - black: 100.8 - red: 73.9 - green: 71.4 - yellow: 73.4 - blue: 63.8 - magenta: 72.3 - cyan: 78.5 - white: 71.3 - brightBlack: 59.6 - brightRed: 64.3 - brightGreen: 61.2 - brightYellow: 63.5 - brightBlue: 67.7 - brightMagenta: 72.6 - brightCyan: 66.3 - brightWhite: 87.8 diff --git a/themes/claude-code-light-high-contrast.yaml b/themes/claude-code-light-high-contrast.yaml index 2e915590..16e08468 100644 --- a/themes/claude-code-light-high-contrast.yaml +++ b/themes/claude-code-light-high-contrast.yaml @@ -2,7 +2,7 @@ name: "Claude Code Light High Contrast" source: marketplace_id: "ashwingopalsamy.claude-code-theme" version: "1.2.2" - installs: 889 + installs: 913 author: "Ashwin Gopalsamy" repo: "https://github.com/ashwingopalsamy/claude-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Claude Code Dark High Contrast" contrast: fg: 97.9 black: 97.9 diff --git a/themes/claude-dark-anthropic.yaml b/themes/claude-dark-anthropic.yaml index 7a1dd1ae..8d110181 100644 --- a/themes/claude-dark-anthropic.yaml +++ b/themes/claude-dark-anthropic.yaml @@ -2,7 +2,7 @@ name: "Claude Dark (Anthropic)" source: marketplace_id: "duca.claude-anthropic-theme" version: "1.0.0" - installs: 16 + installs: 39 author: "duca" repo: "https://github.com/igorfelipeduca/claude-theme" url: "https://marketplace.visualstudio.com/items?itemName=duca.claude-anthropic-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 87.5 black: 0 diff --git a/themes/claude-dark-high-contrast-italic.yaml b/themes/claude-dark-high-contrast-italic.yaml deleted file mode 100644 index 819f5132..00000000 --- a/themes/claude-dark-high-contrast-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Claude Dark High Contrast Italic" -source: - marketplace_id: "AlvinUnreal.claude-vscode-theme" - version: "1.2.0" - installs: 2138 - author: "Alvin Unreal" - repo: "https://github.com/alvinunreal/awesome-claude" - url: "https://marketplace.visualstudio.com/items?itemName=AlvinUnreal.claude-vscode-theme" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#0D0D0D" - red: "#FF8A8A" - green: "#8FE99F" - yellow: "#FFE066" - blue: "#82C7FF" - magenta: "#C49BFF" - cyan: "#66E8FF" - white: "#B8B8B8" - brightBlack: "#5A5A5A" - brightRed: "#FFAAAA" - brightGreen: "#AAFFBB" - brightYellow: "#FFF099" - brightBlue: "#AADDFF" - brightMagenta: "#DDBBFF" - brightCyan: "#99FFFF" - brightWhite: "#F0F0F0" -meta: - mode: "dark" - accent: "magenta" - hue: null - contrast: - fg: 107.9 - black: 0 - red: 57.8 - green: 81.3 - yellow: 88.8 - blue: 68.9 - magenta: 58.7 - cyan: 82.5 - white: 64 - brightBlack: 18.1 - brightRed: 69 - brightGreen: 95.4 - brightYellow: 97.1 - brightBlue: 82 - brightMagenta: 73.7 - brightCyan: 96.9 - brightWhite: 98.1 diff --git a/themes/claude-dark-italic.yaml b/themes/claude-dark-italic.yaml index 0343189a..944444f0 100644 --- a/themes/claude-dark-italic.yaml +++ b/themes/claude-dark-italic.yaml @@ -2,7 +2,7 @@ name: "Claude Dark Italic" source: marketplace_id: "AlvinUnreal.claude-vscode-theme" version: "1.2.0" - installs: 2138 + installs: 2148 author: "Alvin Unreal" repo: "https://github.com/alvinunreal/awesome-claude" url: "https://marketplace.visualstudio.com/items?itemName=AlvinUnreal.claude-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 89.7 black: 0 diff --git a/themes/claude-dark.yaml b/themes/claude-dark.yaml index 2c81a67f..b1994919 100644 --- a/themes/claude-dark.yaml +++ b/themes/claude-dark.yaml @@ -2,7 +2,7 @@ name: "Claude Dark" source: marketplace_id: "SamiHindi.claude-theme-sami-hindi" version: "0.0.1" - installs: 1290 + installs: 1293 author: "Sami Hindi" repo: "https://github.com/FujiwaraChoki/claude-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamiHindi.claude-theme-sami-hindi" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: "Claude Light" contrast: fg: 65.4 black: 0 diff --git a/themes/claude-light.yaml b/themes/claude-light.yaml index 62eeda5d..0ca57ba4 100644 --- a/themes/claude-light.yaml +++ b/themes/claude-light.yaml @@ -2,7 +2,7 @@ name: "Claude Light" source: marketplace_id: "SamiHindi.claude-theme-sami-hindi" version: "0.0.1" - installs: 1290 + installs: 1293 author: "Sami Hindi" repo: "https://github.com/FujiwaraChoki/claude-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamiHindi.claude-theme-sami-hindi" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Claude Dark" contrast: fg: 71.4 black: 101.4 diff --git a/themes/claude-mode-dark.yaml b/themes/claude-mode-dark.yaml index c4f674fc..b56b8ea5 100644 --- a/themes/claude-mode-dark.yaml +++ b/themes/claude-mode-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Claude Mode Light" contrast: fg: 89.6 black: 0 diff --git a/themes/claude-mode-light.yaml b/themes/claude-mode-light.yaml index f9de900c..d5294296 100644 --- a/themes/claude-mode-light.yaml +++ b/themes/claude-mode-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Claude Mode Dark" contrast: fg: 92.4 black: 92.4 diff --git a/themes/claude-velvet-dark.yaml b/themes/claude-velvet-dark.yaml index 5668ee53..9b486792 100644 --- a/themes/claude-velvet-dark.yaml +++ b/themes/claude-velvet-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Claude Velvet Light" contrast: fg: 89.6 black: 0 diff --git a/themes/claude-velvet-light.yaml b/themes/claude-velvet-light.yaml index c28d0b56..7b50f76a 100644 --- a/themes/claude-velvet-light.yaml +++ b/themes/claude-velvet-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Claude Velvet Dark" contrast: fg: 92.4 black: 92.4 diff --git a/themes/claude-warm-light.yaml b/themes/claude-warm-light.yaml index 9980f314..5235c3b9 100644 --- a/themes/claude-warm-light.yaml +++ b/themes/claude-warm-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 91.5 black: 91.5 diff --git a/themes/clean-theme-halloween.yaml b/themes/clean-theme-halloween.yaml index ce7c0110..4429164e 100644 --- a/themes/clean-theme-halloween.yaml +++ b/themes/clean-theme-halloween.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 224 + pair: null contrast: fg: 105 black: 0 diff --git a/themes/clean-white.yaml b/themes/clean-white.yaml index ead337c0..8d3ba46f 100644 --- a/themes/clean-white.yaml +++ b/themes/clean-white.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 52.6 black: 106 diff --git a/themes/clear-dark.yaml b/themes/clear-dark.yaml index e62e8d70..011bc5b6 100644 --- a/themes/clear-dark.yaml +++ b/themes/clear-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 24.5 black: 0 diff --git a/themes/cleo.yaml b/themes/cleo.yaml index c641974f..0c1deb2f 100644 --- a/themes/cleo.yaml +++ b/themes/cleo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 254 + pair: null contrast: fg: 80 black: 0 diff --git a/themes/cloudmint-night.yaml b/themes/cloudmint-night.yaml index 7fd4af5d..17ab828e 100644 --- a/themes/cloudmint-night.yaml +++ b/themes/cloudmint-night.yaml @@ -2,7 +2,7 @@ name: "CloudMint Night" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 91.8 black: 0 diff --git a/themes/clrsync.yaml b/themes/clrsync.yaml index 1c81cf8c..3b382acf 100644 --- a/themes/clrsync.yaml +++ b/themes/clrsync.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 80 black: 0 diff --git a/themes/clu-tron-legacy.yaml b/themes/clu-tron-legacy.yaml index 5797afa1..73d53b67 100644 --- a/themes/clu-tron-legacy.yaml +++ b/themes/clu-tron-legacy.yaml @@ -2,7 +2,7 @@ name: "CLU Tron Legacy" source: marketplace_id: "rubenzn.encom-tron-legacy" version: "1.0.0" - installs: 60 + installs: 61 author: "rubenzn" repo: "https://github.com/ruben-cxtx/best-tron-legacy-theme" url: "https://marketplace.visualstudio.com/items?itemName=rubenzn.encom-tron-legacy" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 82 + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/clubcleaver-functional-matrix.yaml b/themes/clubcleaver-functional-matrix.yaml index 71f34b52..46a7e46f 100644 --- a/themes/clubcleaver-functional-matrix.yaml +++ b/themes/clubcleaver-functional-matrix.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 87.2 black: 0 diff --git a/themes/clymate-monochrome-vsdark-color-theme.yaml b/themes/clymate-monochrome-vsdark-color-theme.yaml index 6896596b..2de5f7a5 100644 --- a/themes/clymate-monochrome-vsdark-color-theme.yaml +++ b/themes/clymate-monochrome-vsdark-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/clymate-pop-neon-vsdark-color-theme.yaml b/themes/clymate-pop-neon-vsdark-color-theme.yaml index 3fef882b..ccda6f1c 100644 --- a/themes/clymate-pop-neon-vsdark-color-theme.yaml +++ b/themes/clymate-pop-neon-vsdark-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 296 + pair: null contrast: fg: 80.9 black: 0 diff --git a/themes/clymate-vintage-vsdark-color-theme.yaml b/themes/clymate-vintage-vsdark-color-theme.yaml index 0f1f63a4..c5bcc34b 100644 --- a/themes/clymate-vintage-vsdark-color-theme.yaml +++ b/themes/clymate-vintage-vsdark-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 123 + pair: null contrast: fg: 48.7 black: 0 diff --git a/themes/clymate-vsdark-color-theme.yaml b/themes/clymate-vsdark-color-theme.yaml index e1b18d5f..50c3753b 100644 --- a/themes/clymate-vsdark-color-theme.yaml +++ b/themes/clymate-vsdark-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 29 + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/cmyk-colourrrs.yaml b/themes/cmyk-colourrrs.yaml index da481f1b..ef28de0e 100644 --- a/themes/cmyk-colourrrs.yaml +++ b/themes/cmyk-colourrrs.yaml @@ -2,7 +2,7 @@ name: "CMYK colourrrs" source: marketplace_id: "techygrrrl.techygrrrl-cmyk-colourrrs" version: "0.2.2" - installs: 1382 + installs: 1383 author: "techygrrrl" repo: "https://github.com/techygrrrl/techygrrrl-cmyk-colourrrs-vscode" url: "https://marketplace.visualstudio.com/items?itemName=techygrrrl.techygrrrl-cmyk-colourrrs" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 105.5 black: 105.5 diff --git a/themes/cobalt-next-dark.yaml b/themes/cobalt-next-dark.yaml index c84f5121..798f9424 100644 --- a/themes/cobalt-next-dark.yaml +++ b/themes/cobalt-next-dark.yaml @@ -2,7 +2,7 @@ name: "Cobalt Next Dark" source: marketplace_id: "dline.CobaltNext" version: "0.4.5" - installs: 125771 + installs: 125787 author: "David Leininger" repo: "https://github.com/davidleininger/cobaltnext-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dline.CobaltNext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 233 + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/cobalt-next.yaml b/themes/cobalt-next.yaml index 8f43e8f8..7dba75fd 100644 --- a/themes/cobalt-next.yaml +++ b/themes/cobalt-next.yaml @@ -2,7 +2,7 @@ name: "Cobalt Next" source: marketplace_id: "dline.CobaltNext" version: "0.4.5" - installs: 125771 + installs: 125787 author: "David Leininger" repo: "https://github.com/davidleininger/cobaltnext-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dline.CobaltNext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 234 + pair: null contrast: fg: 104.2 black: 0 diff --git a/themes/cobalt3dark.yaml b/themes/cobalt3dark.yaml index 980a2e3f..f49056e0 100644 --- a/themes/cobalt3dark.yaml +++ b/themes/cobalt3dark.yaml @@ -2,7 +2,7 @@ name: "Cobalt3Dark" source: marketplace_id: "hendrikbeutlin.Cobalt3Dark" version: "0.5.0" - installs: 1521 + installs: 1522 author: "hendrikbeutlin" repo: "https://github.com/hendrikbeutlin/Cobalt3Dark" url: "https://marketplace.visualstudio.com/items?itemName=hendrikbeutlin.Cobalt3Dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 241 + pair: null contrast: fg: 91.5 black: 0 diff --git a/themes/cobalt9.yaml b/themes/cobalt9.yaml index 500e03d5..d7fe2f63 100644 --- a/themes/cobalt9.yaml +++ b/themes/cobalt9.yaml @@ -2,7 +2,7 @@ name: "Cobalt9" source: marketplace_id: "pydemia.cobalt9" version: "1.4.2" - installs: 7244 + installs: 7246 author: "Youngju Jaden Kim" repo: "https://github.com/pydemia/pydemia-vscode-syntax/cobalt9" url: "https://marketplace.visualstudio.com/items?itemName=pydemia.cobalt9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 242 + pair: null contrast: fg: 105.2 black: 0 diff --git a/themes/coco-theme-au-palette.yaml b/themes/coco-theme-au-palette.yaml index 1781877d..3329a152 100644 --- a/themes/coco-theme-au-palette.yaml +++ b/themes/coco-theme-au-palette.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 279 + pair: null contrast: fg: 89.8 black: 30.4 diff --git a/themes/coco-theme-ca-palette.yaml b/themes/coco-theme-ca-palette.yaml index ad1e9798..7d053069 100644 --- a/themes/coco-theme-ca-palette.yaml +++ b/themes/coco-theme-ca-palette.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 244 + pair: null contrast: fg: 90 black: 0 diff --git a/themes/coco-theme-coco-palette.yaml b/themes/coco-theme-coco-palette.yaml index 88f08766..55be98da 100644 --- a/themes/coco-theme-coco-palette.yaml +++ b/themes/coco-theme-coco-palette.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 242 + pair: null contrast: fg: 104.8 black: 48.7 diff --git a/themes/coco-theme-coconut-palette.yaml b/themes/coco-theme-coconut-palette.yaml index 27eb0295..098a843c 100644 --- a/themes/coco-theme-coconut-palette.yaml +++ b/themes/coco-theme-coconut-palette.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 233 + pair: null contrast: fg: 104.6 black: 48.5 diff --git a/themes/coco-theme-de-palette.yaml b/themes/coco-theme-de-palette.yaml index ca3cc4d6..9ad29e2f 100644 --- a/themes/coco-theme-de-palette.yaml +++ b/themes/coco-theme-de-palette.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 253 + pair: null contrast: fg: 85.2 black: 24.1 diff --git a/themes/coco-theme-es-palette.yaml b/themes/coco-theme-es-palette.yaml index c3fa480e..bb1b93e0 100644 --- a/themes/coco-theme-es-palette.yaml +++ b/themes/coco-theme-es-palette.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 232 + pair: null contrast: fg: 102.3 black: 0 diff --git a/themes/coco-theme-fr-palette.yaml b/themes/coco-theme-fr-palette.yaml index cfc8194e..90beb55c 100644 --- a/themes/coco-theme-fr-palette.yaml +++ b/themes/coco-theme-fr-palette.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 246 + pair: null contrast: fg: 99.5 black: 8.2 diff --git a/themes/coco-theme-gb-palette.yaml b/themes/coco-theme-gb-palette.yaml index 4a1a5908..eb1b2d0a 100644 --- a/themes/coco-theme-gb-palette.yaml +++ b/themes/coco-theme-gb-palette.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 266 + pair: null contrast: fg: 97.6 black: 0 diff --git a/themes/coco-theme-in-palette.yaml b/themes/coco-theme-in-palette.yaml index 7d953e78..fa926e56 100644 --- a/themes/coco-theme-in-palette.yaml +++ b/themes/coco-theme-in-palette.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: 247 + pair: null contrast: fg: 94.5 black: 0 diff --git a/themes/coco-theme-personnal-palette.yaml b/themes/coco-theme-personnal-palette.yaml index 763c5023..2f7e9dfb 100644 --- a/themes/coco-theme-personnal-palette.yaml +++ b/themes/coco-theme-personnal-palette.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 243 + pair: null contrast: fg: 90.6 black: 0 diff --git a/themes/coco-theme-se-palette.yaml b/themes/coco-theme-se-palette.yaml index f554840f..fcd8240e 100644 --- a/themes/coco-theme-se-palette.yaml +++ b/themes/coco-theme-se-palette.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 242 + pair: null contrast: fg: 104.8 black: 0 diff --git a/themes/coco-theme-tr-palette.yaml b/themes/coco-theme-tr-palette.yaml index 764fa134..2f5434d8 100644 --- a/themes/coco-theme-tr-palette.yaml +++ b/themes/coco-theme-tr-palette.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 99.1 black: 70.9 diff --git a/themes/coco-theme-v1-palette.yaml b/themes/coco-theme-v1-palette.yaml index cdb0003c..23f965f3 100644 --- a/themes/coco-theme-v1-palette.yaml +++ b/themes/coco-theme-v1-palette.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: null contrast: fg: 99.2 black: 8.5 diff --git a/themes/coco-theme.yaml b/themes/coco-theme.yaml index d5a80680..7ad5e2a3 100644 --- a/themes/coco-theme.yaml +++ b/themes/coco-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 260 + pair: null contrast: fg: 82.2 black: 8.9 diff --git a/themes/coco.yaml b/themes/coco.yaml index 1029545d..8ce33f53 100644 --- a/themes/coco.yaml +++ b/themes/coco.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 242 + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/coconut-dark.yaml b/themes/coconut-dark.yaml index bb6b50f3..f82ce84d 100644 --- a/themes/coconut-dark.yaml +++ b/themes/coconut-dark.yaml @@ -1,8 +1,8 @@ -name: "coconut dark" +name: "coconut dark+" source: marketplace_id: "coconut.coconut-vscode-theme" version: "0.0.4" - installs: 226 + installs: 227 author: "coconut" repo: null url: "https://marketplace.visualstudio.com/items?itemName=coconut.coconut-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80 black: 0 diff --git a/themes/coconut.yaml b/themes/coconut.yaml index 8697b5fe..fdefca61 100644 --- a/themes/coconut.yaml +++ b/themes/coconut.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 242 + pair: null contrast: fg: 104.8 black: 0 diff --git a/themes/coda.yaml b/themes/coda.yaml index e5917aeb..f68cb2a9 100644 --- a/themes/coda.yaml +++ b/themes/coda.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 56.4 black: 0 diff --git a/themes/code-dadi-dark.yaml b/themes/code-dadi-dark.yaml index 79414dac..8c4b9921 100644 --- a/themes/code-dadi-dark.yaml +++ b/themes/code-dadi-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 297 + pair: null contrast: fg: 92 black: 0 diff --git a/themes/code-dadi-lighter.yaml b/themes/code-dadi-lighter.yaml index 13e613de..11e55c5e 100644 --- a/themes/code-dadi-lighter.yaml +++ b/themes/code-dadi-lighter.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 263 + pair: null contrast: fg: 91.7 black: 0 diff --git a/themes/code-hunter-bluepurly.yaml b/themes/code-hunter-bluepurly.yaml deleted file mode 100644 index d2774f70..00000000 --- a/themes/code-hunter-bluepurly.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Code Hunter - BluePurly" -source: - marketplace_id: "CodeHunterBD.code-hunter-theme" - version: "4.5.1" - installs: 1088 - author: "Code Hunter" - repo: "https://github.com/Code-Hunter-OfficialBD/code-hunter-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=CodeHunterBD.code-hunter-theme" -colors: - bg: "#181B28" - fg: "#D3D3D3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 274 - contrast: - fg: 78.3 - black: 0 - red: 26.2 - green: 52.5 - yellow: 85.1 - blue: 26.9 - magenta: 29.2 - cyan: 47 - white: 89.5 - brightBlack: 21.5 - brightRed: 38 - brightGreen: 63 - brightYellow: 95.1 - brightBlue: 39.5 - brightMagenta: 44.8 - brightCyan: 54.9 - brightWhite: 89.5 diff --git a/themes/code-hunter-magnum-purple.yaml b/themes/code-hunter-magnum-purple.yaml index 9f818131..492a23e7 100644 --- a/themes/code-hunter-magnum-purple.yaml +++ b/themes/code-hunter-magnum-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 91 black: 15.2 diff --git a/themes/code-hunter-spruce-wind.yaml b/themes/code-hunter-spruce-wind.yaml index 18871826..1f21d022 100644 --- a/themes/code-hunter-spruce-wind.yaml +++ b/themes/code-hunter-spruce-wind.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 266 + pair: null contrast: fg: 47.4 black: 0 diff --git a/themes/code-kraken-theme.yaml b/themes/code-kraken-theme.yaml index 05e8068d..2a14b929 100644 --- a/themes/code-kraken-theme.yaml +++ b/themes/code-kraken-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 296 + pair: null contrast: fg: 106.3 black: 89.9 diff --git a/themes/code-like-a-rainbow.yaml b/themes/code-like-a-rainbow.yaml index db9c2901..056a64bf 100644 --- a/themes/code-like-a-rainbow.yaml +++ b/themes/code-like-a-rainbow.yaml @@ -2,7 +2,7 @@ name: "Code_Like_a_Rainbow" source: marketplace_id: "invillia.Code-Like-A-Rainbow" version: "0.3.0" - installs: 10472 + installs: 10478 author: "invillia" repo: null url: "https://marketplace.visualstudio.com/items?itemName=invillia.Code-Like-A-Rainbow" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/code-red.yaml b/themes/code-red.yaml index f6383e63..4ecc9242 100644 --- a/themes/code-red.yaml +++ b/themes/code-red.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 56.3 black: 0 diff --git a/themes/code-with-colors-pro-midnight-purple.yaml b/themes/code-with-colors-pro-midnight-purple.yaml index 4df60947..bf3db684 100644 --- a/themes/code-with-colors-pro-midnight-purple.yaml +++ b/themes/code-with-colors-pro-midnight-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 278 + pair: null contrast: fg: 99 black: 0 diff --git a/themes/code33.yaml b/themes/code33.yaml index e9d30bf7..2b974cea 100644 --- a/themes/code33.yaml +++ b/themes/code33.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 95.2 black: 0 diff --git a/themes/codebabel-theme-dark.yaml b/themes/codebabel-theme-dark.yaml index 409d4e32..5a606a3b 100644 --- a/themes/codebabel-theme-dark.yaml +++ b/themes/codebabel-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/codecourse-contrast.yaml b/themes/codecourse-contrast.yaml index e06748a4..31b250f3 100644 --- a/themes/codecourse-contrast.yaml +++ b/themes/codecourse-contrast.yaml @@ -1,11 +1,11 @@ name: "codecourse-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#05080A" fg: "#B6CED8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 74.4 black: 0 diff --git a/themes/codecourse-light.yaml b/themes/codecourse-light.yaml index bafb929d..4ccc746d 100644 --- a/themes/codecourse-light.yaml +++ b/themes/codecourse-light.yaml @@ -1,11 +1,11 @@ name: "codecourse-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#547F91" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 70.1 black: 0 diff --git a/themes/codecourse.yaml b/themes/codecourse.yaml index b48f20af..c0f77c85 100644 --- a/themes/codecourse.yaml +++ b/themes/codecourse.yaml @@ -1,11 +1,11 @@ name: "codecourse" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#19272D" fg: "#B6CED8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 226 + pair: null contrast: fg: 71.5 black: 0 diff --git a/themes/codehesion-dark-theme.yaml b/themes/codehesion-dark-theme.yaml index 3e9cbd7d..868072b1 100644 --- a/themes/codehesion-dark-theme.yaml +++ b/themes/codehesion-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 213 + pair: "Codehesion Light Theme" contrast: fg: 107.6 black: 0 diff --git a/themes/codehesion-light-theme.yaml b/themes/codehesion-light-theme.yaml index ea6c38d5..7c32c1f1 100644 --- a/themes/codehesion-light-theme.yaml +++ b/themes/codehesion-light-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Codehesion Dark Theme" contrast: fg: 97.5 black: 98 diff --git a/themes/codeify-dark-berry-color-theme.yaml b/themes/codeify-dark-berry-color-theme.yaml index 966795e9..9e4aea61 100644 --- a/themes/codeify-dark-berry-color-theme.yaml +++ b/themes/codeify-dark-berry-color-theme.yaml @@ -2,7 +2,7 @@ name: "Codeify dark berry color theme" source: marketplace_id: "siyam.Codeify" version: "1.1.2" - installs: 2979 + installs: 2981 author: "siyam" repo: "https://github.com/SISIYAM/codiefy-color-theme-vs-code-extension" url: "https://marketplace.visualstudio.com/items?itemName=siyam.Codeify" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 100.6 black: 0 diff --git a/themes/codeitlive-light.yaml b/themes/codeitlive-light.yaml index a00fece6..3bfcbd20 100644 --- a/themes/codeitlive-light.yaml +++ b/themes/codeitlive-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/codeitlive.yaml b/themes/codeitlive.yaml index 59a5c916..72d888f9 100644 --- a/themes/codeitlive.yaml +++ b/themes/codeitlive.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 292 + pair: null contrast: fg: 77.9 black: 0 diff --git a/themes/codelabs-inspired.yaml b/themes/codelabs-inspired.yaml index b47caf53..597a0f68 100644 --- a/themes/codelabs-inspired.yaml +++ b/themes/codelabs-inspired.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 79.4 black: 0 diff --git a/themes/codellsby-nightowl.yaml b/themes/codellsby-nightowl.yaml index 381777ef..35aafd41 100644 --- a/themes/codellsby-nightowl.yaml +++ b/themes/codellsby-nightowl.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 82.4 black: 0 diff --git a/themes/codely-dark-theme.yaml b/themes/codely-dark-theme.yaml index 7bdca31e..ddee1c23 100644 --- a/themes/codely-dark-theme.yaml +++ b/themes/codely-dark-theme.yaml @@ -1,11 +1,11 @@ name: "Codely Dark Theme" source: - marketplace_id: "Rupesh9369.Codely-Dark-Pro-Theme" - version: "0.4.0" - installs: 477 + marketplace_id: "Rupesh9369.Themess" + version: "0.5.0" + installs: 150 author: "Rupesh9369" repo: "https://github.com/Rupesh9369/Codely-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Rupesh9369.Codely-Dark-Pro-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Rupesh9369.Themess" colors: bg: "#202124" fg: "#EBDBB2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 83.1 black: 0 diff --git a/themes/codeme.yaml b/themes/codeme.yaml index 678297dd..6d79f6d5 100644 --- a/themes/codeme.yaml +++ b/themes/codeme.yaml @@ -2,7 +2,7 @@ name: "CodeMe" source: marketplace_id: "Avetis.codeme-theme" version: "0.1.1" - installs: 8079 + installs: 8080 author: "Avetis" repo: "https://github.com/AvetisDN/codeme-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/codeo-light.yaml b/themes/codeo-light.yaml index f38c3e6c..b990f031 100644 --- a/themes/codeo-light.yaml +++ b/themes/codeo-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 91.3 black: 91.3 diff --git a/themes/codeo.yaml b/themes/codeo.yaml index f34fe55f..c9095493 100644 --- a/themes/codeo.yaml +++ b/themes/codeo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 244 + pair: null contrast: fg: 85.3 black: 0 diff --git a/themes/codepdia.yaml b/themes/codepdia.yaml index 18638dfd..034faac3 100644 --- a/themes/codepdia.yaml +++ b/themes/codepdia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 90 black: 0 diff --git a/themes/codepen-nights.yaml b/themes/codepen-nights.yaml index 90f62e3f..ae132edd 100644 --- a/themes/codepen-nights.yaml +++ b/themes/codepen-nights.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 280 + pair: null contrast: fg: 103.5 black: 0 diff --git a/themes/codepixel-modern-dark.yaml b/themes/codepixel-modern-dark.yaml index c76e8421..dc3ea725 100644 --- a/themes/codepixel-modern-dark.yaml +++ b/themes/codepixel-modern-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 285 + pair: null contrast: fg: 92.3 black: 0 diff --git a/themes/coder-coder-dark-redefined.yaml b/themes/coder-coder-dark-redefined.yaml index 47d4de6a..4e5ed421 100644 --- a/themes/coder-coder-dark-redefined.yaml +++ b/themes/coder-coder-dark-redefined.yaml @@ -2,7 +2,7 @@ name: "Coder Coder Dark Redefined" source: marketplace_id: "moondevaa.codercoderdarkredefined" version: "0.1.2" - installs: 1532 + installs: 1534 author: "moondevaa" repo: "https://github.com/AaBbdev29/Redefined-coder" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.codercoderdarkredefined" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 287 + pair: null contrast: fg: 49 black: 0 diff --git a/themes/coder-vai-forest.yaml b/themes/coder-vai-forest.yaml index 6f7956ba..9fd82fe6 100644 --- a/themes/coder-vai-forest.yaml +++ b/themes/coder-vai-forest.yaml @@ -2,7 +2,7 @@ name: "Coder Vai Forest" source: marketplace_id: "umorfaruksupto.coder-vai" version: "1.0.0" - installs: 428 + installs: 429 author: "umorfaruksupto" repo: "https://github.com/umorfaruksupto/coder-vai" url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 145 + pair: null contrast: fg: 85.4 black: 0 diff --git a/themes/coder-vai-light.yaml b/themes/coder-vai-light.yaml index 44b6be7c..a10b165f 100644 --- a/themes/coder-vai-light.yaml +++ b/themes/coder-vai-light.yaml @@ -2,7 +2,7 @@ name: "Coder Vai Light" source: marketplace_id: "umorfaruksupto.coder-vai" version: "1.0.0" - installs: 428 + installs: 429 author: "umorfaruksupto" repo: "https://github.com/umorfaruksupto/coder-vai" url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 79.3 black: 72.8 diff --git a/themes/coder-vai-ocean.yaml b/themes/coder-vai-ocean.yaml index dd1dee69..2b3d4973 100644 --- a/themes/coder-vai-ocean.yaml +++ b/themes/coder-vai-ocean.yaml @@ -2,7 +2,7 @@ name: "Coder Vai Ocean" source: marketplace_id: "umorfaruksupto.coder-vai" version: "1.0.0" - installs: 428 + installs: 429 author: "umorfaruksupto" repo: "https://github.com/umorfaruksupto/coder-vai" url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: null contrast: fg: 66.2 black: 0 diff --git a/themes/coder-vai-purple-haze.yaml b/themes/coder-vai-purple-haze.yaml index 020cf1e5..3a72791a 100644 --- a/themes/coder-vai-purple-haze.yaml +++ b/themes/coder-vai-purple-haze.yaml @@ -2,7 +2,7 @@ name: "Coder Vai Purple Haze" source: marketplace_id: "umorfaruksupto.coder-vai" version: "1.0.0" - installs: 428 + installs: 429 author: "umorfaruksupto" repo: "https://github.com/umorfaruksupto/coder-vai" url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 299 + pair: null contrast: fg: 83.3 black: 0 diff --git a/themes/coder30.yaml b/themes/coder30.yaml index 1eb6abb3..badabd1f 100644 --- a/themes/coder30.yaml +++ b/themes/coder30.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 85.6 black: 23.9 diff --git a/themes/codesandbox-theme.yaml b/themes/codesandbox-theme.yaml index 910437c8..873450c6 100644 --- a/themes/codesandbox-theme.yaml +++ b/themes/codesandbox-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 46.4 black: 0 diff --git a/themes/codeschool2-minimal.yaml b/themes/codeschool2-minimal.yaml index 3d8876a7..615754d0 100644 --- a/themes/codeschool2-minimal.yaml +++ b/themes/codeschool2-minimal.yaml @@ -2,7 +2,7 @@ name: "CodeSchool2 Minimal" source: marketplace_id: "gargakshit.theme-alabaster-dark" version: "0.1.3" - installs: 4222 + installs: 4225 author: "Akshit Garg" repo: "https://github.com/gargakshit/vscode-theme-alabaster-dark" url: "https://marketplace.visualstudio.com/items?itemName=gargakshit.theme-alabaster-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 76.2 black: 0 diff --git a/themes/codesso-unison-beta.yaml b/themes/codesso-unison-beta.yaml index 9504c99d..ab162e81 100644 --- a/themes/codesso-unison-beta.yaml +++ b/themes/codesso-unison-beta.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.7 black: 90.2 diff --git a/themes/codetest.yaml b/themes/codetest.yaml index 4c17e736..6ea27a82 100644 --- a/themes/codetest.yaml +++ b/themes/codetest.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 64.9 black: 0 diff --git a/themes/codethread-black.yaml b/themes/codethread-black.yaml index 9e282221..7df44d3b 100644 --- a/themes/codethread-black.yaml +++ b/themes/codethread-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 13.1 black: 48.2 diff --git a/themes/codeuccino.yaml b/themes/codeuccino.yaml index e8e88eef..6af952f4 100644 --- a/themes/codeuccino.yaml +++ b/themes/codeuccino.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 79 + pair: null contrast: fg: 23 black: 83.5 diff --git a/themes/codevibe-epic-theme.yaml b/themes/codevibe-epic-theme.yaml index 18150dbb..35f58a4b 100644 --- a/themes/codevibe-epic-theme.yaml +++ b/themes/codevibe-epic-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/codexflow-themes.yaml b/themes/codexflow-themes.yaml index 33a35c8d..8658ff49 100644 --- a/themes/codexflow-themes.yaml +++ b/themes/codexflow-themes.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 74.1 black: 0 diff --git a/themes/codiefy-optimas-prime-color-theme.yaml b/themes/codiefy-optimas-prime-color-theme.yaml index 93878e10..896cfa89 100644 --- a/themes/codiefy-optimas-prime-color-theme.yaml +++ b/themes/codiefy-optimas-prime-color-theme.yaml @@ -2,7 +2,7 @@ name: "Codiefy optimas prime color theme" source: marketplace_id: "siyam.Codeify" version: "1.1.2" - installs: 2979 + installs: 2981 author: "siyam" repo: "https://github.com/SISIYAM/codiefy-color-theme-vs-code-extension" url: "https://marketplace.visualstudio.com/items?itemName=siyam.Codeify" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 99.3 black: 0 diff --git a/themes/coding-light-theme.yaml b/themes/coding-light-theme.yaml index 60f54315..e92f3a0e 100644 --- a/themes/coding-light-theme.yaml +++ b/themes/coding-light-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 95.3 black: 95.3 diff --git a/themes/cods.yaml b/themes/cods.yaml index 7d132853..9baf8aea 100644 --- a/themes/cods.yaml +++ b/themes/cods.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 270 + pair: null contrast: fg: 58.8 black: 0 diff --git a/themes/coffee-contrast.yaml b/themes/coffee-contrast.yaml index cca559fd..1a6bde84 100644 --- a/themes/coffee-contrast.yaml +++ b/themes/coffee-contrast.yaml @@ -1,11 +1,11 @@ name: "coffee-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0F0C0C" fg: "#C4BABB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 66.2 black: 0 diff --git a/themes/coffee-light.yaml b/themes/coffee-light.yaml index 50a0f02c..1b43e7c9 100644 --- a/themes/coffee-light.yaml +++ b/themes/coffee-light.yaml @@ -1,11 +1,11 @@ name: "coffee-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#F4F2F2" fg: "#282122" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 95.2 black: 0 diff --git a/themes/coffee.yaml b/themes/coffee.yaml index 5aaaf6b1..a5f7ba98 100644 --- a/themes/coffee.yaml +++ b/themes/coffee.yaml @@ -1,11 +1,11 @@ name: "coffee" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#282122" fg: "#C4BABB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 8 + pair: null contrast: fg: 63.9 black: 0 diff --git a/themes/coffeespace.yaml b/themes/coffeespace.yaml index e8a59be9..bcb26dee 100644 --- a/themes/coffeespace.yaml +++ b/themes/coffeespace.yaml @@ -1,14 +1,14 @@ name: "coffeespace" source: - marketplace_id: "YesCode.darkspace" - version: "0.0.7" - installs: 174 + marketplace_id: "YesCode.morita" + version: "0.0.18" + installs: 228 author: "YesCode" - repo: "https://github.com/yesomac/darkSpace" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.darkspace" + repo: "https://github.com/yesomac/MyThemes" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" colors: - bg: "#000000" - fg: "#FAE8D8" + bg: "#3A2844" + fg: "#FAEBD8" black: "#1D2021" red: "#FB543F" green: "#95C085" @@ -28,22 +28,23 @@ colors: meta: mode: "dark" accent: "orange" - hue: null + hue: 313 + pair: null contrast: - fg: 94.8 + fg: 91.2 black: 0 - red: 43 - green: 62 - yellow: 74.1 - blue: 48.5 - magenta: 20.5 - cyan: 50.5 - white: 48.2 - brightBlack: 19.6 - brightRed: 43 - brightGreen: 39.4 - brightYellow: 80.8 - brightBlue: 19.7 - brightMagenta: 20.5 - brightCyan: 50.5 - brightWhite: 99.9 + red: 38 + green: 57 + yellow: 69.1 + blue: 43.6 + magenta: 15.6 + cyan: 45.5 + white: 43.3 + brightBlack: 14.6 + brightRed: 38 + brightGreen: 34.5 + brightYellow: 75.8 + brightBlue: 14.8 + brightMagenta: 15.6 + brightCyan: 45.5 + brightWhite: 94.9 diff --git a/themes/cognac.yaml b/themes/cognac.yaml index a6728ab5..c73eeddf 100644 --- a/themes/cognac.yaml +++ b/themes/cognac.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 84.8 black: 0 diff --git a/themes/coimbroxthmedark.yaml b/themes/coimbroxthmedark.yaml index a22be025..2bc326e4 100644 --- a/themes/coimbroxthmedark.yaml +++ b/themes/coimbroxthmedark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 306 + pair: null contrast: fg: 65.7 black: 0 diff --git a/themes/cold-night.yaml b/themes/cold-night.yaml index 467aeeba..fbe885c2 100644 --- a/themes/cold-night.yaml +++ b/themes/cold-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 242 + pair: null contrast: fg: 102.1 black: 0 diff --git a/themes/cold-python-theme.yaml b/themes/cold-python-theme.yaml index a78f9f38..5449c35e 100644 --- a/themes/cold-python-theme.yaml +++ b/themes/cold-python-theme.yaml @@ -2,7 +2,7 @@ name: "Cold Python Theme" source: marketplace_id: "nparamonov.cold-python-theme" version: "1.14.1" - installs: 31692 + installs: 31709 author: "nparamonov" repo: "https://github.com/nparamonov/vscode-cold-python-theme" url: "https://marketplace.visualstudio.com/items?itemName=nparamonov.cold-python-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 65.5 black: 0 diff --git a/themes/coldark-cold.yaml b/themes/coldark-cold.yaml index 8a473ba4..9b551742 100644 --- a/themes/coldark-cold.yaml +++ b/themes/coldark-cold.yaml @@ -2,7 +2,7 @@ name: "Coldark - Cold" source: marketplace_id: "ArmandPhilippot.coldark" version: "1.2.11" - installs: 6466 + installs: 6471 author: "Armand Philippot" repo: "https://github.com/ArmandPhilippot/coldark-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ArmandPhilippot.coldark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 252 + pair: null contrast: fg: 91.2 black: 0 diff --git a/themes/coldark-dark.yaml b/themes/coldark-dark.yaml index 4e501668..dbdbc135 100644 --- a/themes/coldark-dark.yaml +++ b/themes/coldark-dark.yaml @@ -2,7 +2,7 @@ name: "Coldark - Dark" source: marketplace_id: "ArmandPhilippot.coldark" version: "1.2.11" - installs: 6466 + installs: 6471 author: "Armand Philippot" repo: "https://github.com/ArmandPhilippot/coldark-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ArmandPhilippot.coldark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 253 + pair: null contrast: fg: 92.2 black: 0 diff --git a/themes/collapse.yaml b/themes/collapse.yaml index 09908d2b..dcf433d3 100644 --- a/themes/collapse.yaml +++ b/themes/collapse.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 265 + pair: null contrast: fg: 85.5 black: 0 diff --git a/themes/color-coffee-dark.yaml b/themes/color-coffee-dark.yaml index 14d3595c..c80d406a 100644 --- a/themes/color-coffee-dark.yaml +++ b/themes/color-coffee-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 94.7 black: 74.2 diff --git a/themes/colora.yaml b/themes/colora.yaml index f3daa5d6..12326758 100644 --- a/themes/colora.yaml +++ b/themes/colora.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 76.6 black: 0 diff --git a/themes/colorbars-blue.yaml b/themes/colorbars-blue.yaml index e9822316..fa0a6359 100644 --- a/themes/colorbars-blue.yaml +++ b/themes/colorbars-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.1 black: 0 diff --git a/themes/colorbars-green.yaml b/themes/colorbars-green.yaml index e939fe20..1ec0a0d5 100644 --- a/themes/colorbars-green.yaml +++ b/themes/colorbars-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/colorbars-orange.yaml b/themes/colorbars-orange.yaml index 5a292eac..58c17834 100644 --- a/themes/colorbars-orange.yaml +++ b/themes/colorbars-orange.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/colorbars-purple.yaml b/themes/colorbars-purple.yaml index cd9f2071..3bdd268f 100644 --- a/themes/colorbars-purple.yaml +++ b/themes/colorbars-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.1 black: 0 diff --git a/themes/colorful-carbon-dark-knight.yaml b/themes/colorful-carbon-dark-knight.yaml index f7735b06..20cdca35 100644 --- a/themes/colorful-carbon-dark-knight.yaml +++ b/themes/colorful-carbon-dark-knight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 87.7 black: 0 diff --git a/themes/colorful-carbon.yaml b/themes/colorful-carbon.yaml index 3e9395b0..d7bb9bfa 100644 --- a/themes/colorful-carbon.yaml +++ b/themes/colorful-carbon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 83.4 black: 0 diff --git a/themes/colorful-dark-fork.yaml b/themes/colorful-dark-fork.yaml index 92852ef7..e4a8004d 100644 --- a/themes/colorful-dark-fork.yaml +++ b/themes/colorful-dark-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 238 + pair: null contrast: fg: 75.6 black: 0 diff --git a/themes/colorful-dark-theme.yaml b/themes/colorful-dark-theme.yaml index f1f260fe..71234808 100644 --- a/themes/colorful-dark-theme.yaml +++ b/themes/colorful-dark-theme.yaml @@ -2,7 +2,7 @@ name: "colorful-dark-theme" source: marketplace_id: "leonex16.colorful-theme" version: "1.1.4" - installs: 3551 + installs: 3554 author: "Leonel Espinoza Sotelo" repo: "https://github.com/leonex16/colorful-theme" url: "https://marketplace.visualstudio.com/items?itemName=leonex16.colorful-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 102.4 black: 0 diff --git a/themes/colorful-light.yaml b/themes/colorful-light.yaml index 37ef2b14..019cfb04 100644 --- a/themes/colorful-light.yaml +++ b/themes/colorful-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 83 black: 83 diff --git a/themes/colorizer.yaml b/themes/colorizer.yaml index bdfa9f29..be72350e 100644 --- a/themes/colorizer.yaml +++ b/themes/colorizer.yaml @@ -2,7 +2,7 @@ name: "Colorizer" source: marketplace_id: "MohammedShalabi.colorizer" version: "0.0.2" - installs: 12128 + installs: 12129 author: "Mohammed Shalabi" repo: "https://github.com/M-Shalabi/Colorizer" url: "https://marketplace.visualstudio.com/items?itemName=MohammedShalabi.colorizer" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: null contrast: fg: 71.8 black: 0 diff --git a/themes/colors-color-theme.yaml b/themes/colors-color-theme.yaml index f11d08b1..c48c30b2 100644 --- a/themes/colors-color-theme.yaml +++ b/themes/colors-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 99.3 black: 0 diff --git a/themes/colors.yaml b/themes/colors.yaml index 0469ef4e..9aa46207 100644 --- a/themes/colors.yaml +++ b/themes/colors.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 95.8 black: 0 diff --git a/themes/colorshift-material-pro-evening.yaml b/themes/colorshift-material-pro-evening.yaml index 1330f48e..0bb34caf 100644 --- a/themes/colorshift-material-pro-evening.yaml +++ b/themes/colorshift-material-pro-evening.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 227 + pair: null contrast: fg: 85.5 black: 0 diff --git a/themes/colorshift-material-pro-morning.yaml b/themes/colorshift-material-pro-morning.yaml index 34c19bba..54b5c3ca 100644 --- a/themes/colorshift-material-pro-morning.yaml +++ b/themes/colorshift-material-pro-morning.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 239 + pair: null contrast: fg: 100.6 black: 0 diff --git a/themes/colorshift-material-pro.yaml b/themes/colorshift-material-pro.yaml index 8c186a38..a6b3897d 100644 --- a/themes/colorshift-material-pro.yaml +++ b/themes/colorshift-material-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 230 + pair: null contrast: fg: 100.4 black: 0 diff --git a/themes/colorways-cheers-soft.yaml b/themes/colorways-cheers-soft.yaml index 8950b1dc..f57fdd76 100644 --- a/themes/colorways-cheers-soft.yaml +++ b/themes/colorways-cheers-soft.yaml @@ -2,7 +2,7 @@ name: "Colorways - Cheers (Soft)" source: marketplace_id: "Franthormel.colorways" version: "0.2.1" - installs: 1011 + installs: 1012 author: "Franthormel" repo: "https://github.com/franthormel/colorways-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Franthormel.colorways" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 101.5 black: 93.7 diff --git a/themes/columbina-high-contrast.yaml b/themes/columbina-high-contrast.yaml index a76848d0..8b1a5686 100644 --- a/themes/columbina-high-contrast.yaml +++ b/themes/columbina-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/comfy-monokai.yaml b/themes/comfy-monokai.yaml index 49b8bec9..f90488b4 100644 --- a/themes/comfy-monokai.yaml +++ b/themes/comfy-monokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 260 + pair: null contrast: fg: 91.4 black: 0 diff --git a/themes/common.yaml b/themes/common.yaml index 3dccc030..0be89216 100644 --- a/themes/common.yaml +++ b/themes/common.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 74.7 black: 0 diff --git a/themes/community-material-theme-darker.yaml b/themes/community-material-theme-darker.yaml deleted file mode 100644 index 8768a266..00000000 --- a/themes/community-material-theme-darker.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Community-Material-Theme-Darker" -source: - marketplace_id: "Equinusocio.vsc-community-material-theme" - version: "1.4.7" - installs: 3728631 - author: "Material Theme" - repo: "https://github.com/material-theme/vsc-community-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" -colors: - bg: "#212121" - fg: "#EEFFFF" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#545454" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 103.3 - black: 0 - red: 42.4 - green: 82.9 - yellow: 77.7 - blue: 54.7 - magenta: 52.5 - cyan: 77 - white: 105.6 - brightBlack: 13.5 - brightRed: 42.4 - brightGreen: 82.9 - brightYellow: 77.7 - brightBlue: 54.7 - brightMagenta: 52.5 - brightCyan: 77 - brightWhite: 105.6 diff --git a/themes/community-material-theme-default-high-contrast.yaml b/themes/community-material-theme-default-high-contrast.yaml deleted file mode 100644 index f4e12458..00000000 --- a/themes/community-material-theme-default-high-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Community-Material-Theme-Default-High-Contrast" -source: - marketplace_id: "Equinusocio.vsc-community-material-theme" - version: "1.4.7" - installs: 3728631 - author: "Material Theme" - repo: "https://github.com/material-theme/vsc-community-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" -colors: - bg: "#263238" - fg: "#EEFFFF" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#546E7A" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 230 - contrast: - fg: 100.4 - black: 0 - red: 39.4 - green: 80 - yellow: 74.7 - blue: 51.7 - magenta: 49.6 - cyan: 74.1 - white: 102.7 - brightBlack: 19.7 - brightRed: 39.4 - brightGreen: 80 - brightYellow: 74.7 - brightBlue: 51.7 - brightMagenta: 49.6 - brightCyan: 74.1 - brightWhite: 102.7 diff --git a/themes/community-material-theme-lighter-high-contrast.yaml b/themes/community-material-theme-lighter-high-contrast.yaml deleted file mode 100644 index b75ff143..00000000 --- a/themes/community-material-theme-lighter-high-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Community-Material-Theme-Lighter-High-Contrast" -source: - marketplace_id: "Equinusocio.vsc-community-material-theme" - version: "1.4.7" - installs: 3728631 - author: "Material Theme" - repo: "https://github.com/material-theme/vsc-community-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" -colors: - bg: "#FFFFFF" - fg: "#90A4AE" - black: "#000000" - red: "#E53935" - green: "#91B859" - yellow: "#FFB62C" - blue: "#6182B8" - magenta: "#7C4DFF" - cyan: "#39ADB5" - white: "#FFFFFF" - brightBlack: "#90A4AE" - brightRed: "#E53935" - brightGreen: "#91B859" - brightYellow: "#FFB62C" - brightBlue: "#6182B8" - brightMagenta: "#7C4DFF" - brightCyan: "#39ADB5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 50.6 - black: 106 - red: 67.7 - green: 44.9 - yellow: 31.7 - blue: 66.3 - magenta: 72.6 - cyan: 51.8 - white: 0 - brightBlack: 50.6 - brightRed: 67.7 - brightGreen: 44.9 - brightYellow: 31.7 - brightBlue: 66.3 - brightMagenta: 72.6 - brightCyan: 51.8 - brightWhite: 0 diff --git a/themes/community-material-theme-lighter.yaml b/themes/community-material-theme-lighter.yaml deleted file mode 100644 index 5cf1c37e..00000000 --- a/themes/community-material-theme-lighter.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Community-Material-Theme-Lighter" -source: - marketplace_id: "Equinusocio.vsc-community-material-theme" - version: "1.4.7" - installs: 3728631 - author: "Material Theme" - repo: "https://github.com/material-theme/vsc-community-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" -colors: - bg: "#FAFAFA" - fg: "#90A4AE" - black: "#000000" - red: "#E53935" - green: "#91B859" - yellow: "#FFB62C" - blue: "#6182B8" - magenta: "#7C4DFF" - cyan: "#39ADB5" - white: "#FFFFFF" - brightBlack: "#90A4AE" - brightRed: "#E53935" - brightGreen: "#91B859" - brightYellow: "#FFB62C" - brightBlue: "#6182B8" - brightMagenta: "#7C4DFF" - brightCyan: "#39ADB5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 47.6 - black: 103 - red: 64.7 - green: 41.9 - yellow: 28.7 - blue: 63.3 - magenta: 69.6 - cyan: 48.8 - white: 0 - brightBlack: 47.6 - brightRed: 64.7 - brightGreen: 41.9 - brightYellow: 28.7 - brightBlue: 63.3 - brightMagenta: 69.6 - brightCyan: 48.8 - brightWhite: 0 diff --git a/themes/community-material-theme-ocean-high-contrast.yaml b/themes/community-material-theme-ocean-high-contrast.yaml deleted file mode 100644 index 0206ddec..00000000 --- a/themes/community-material-theme-ocean-high-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Community-Material-Theme-Ocean-High-Contrast" -source: - marketplace_id: "Equinusocio.vsc-community-material-theme" - version: "1.4.7" - installs: 3728631 - author: "Material Theme" - repo: "https://github.com/material-theme/vsc-community-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" -colors: - bg: "#0F111A" - fg: "#8F93A2" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#464B5D" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 275 - contrast: - fg: 43.7 - black: 0 - red: 44.1 - green: 84.7 - yellow: 79.4 - blue: 56.4 - magenta: 54.2 - cyan: 78.7 - white: 107.3 - brightBlack: 12 - brightRed: 44.1 - brightGreen: 84.7 - brightYellow: 79.4 - brightBlue: 56.4 - brightMagenta: 54.2 - brightCyan: 78.7 - brightWhite: 107.3 diff --git a/themes/community-material-theme-palenight-high-contrast.yaml b/themes/community-material-theme-palenight-high-contrast.yaml deleted file mode 100644 index 03470005..00000000 --- a/themes/community-material-theme-palenight-high-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Community-Material-Theme-Palenight-High-Contrast" -source: - marketplace_id: "Equinusocio.vsc-community-material-theme" - version: "1.4.7" - installs: 3728631 - author: "Material Theme" - repo: "https://github.com/material-theme/vsc-community-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" -colors: - bg: "#292D3E" - fg: "#A6ACCD" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 274 - contrast: - fg: 53.5 - black: 0 - red: 40 - green: 80.6 - yellow: 75.3 - blue: 52.3 - magenta: 50.1 - cyan: 74.6 - white: 103.3 - brightBlack: 22.8 - brightRed: 40 - brightGreen: 80.6 - brightYellow: 75.3 - brightBlue: 52.3 - brightMagenta: 50.1 - brightCyan: 74.6 - brightWhite: 103.3 diff --git a/themes/compline.yaml b/themes/compline.yaml index 75e7bfc7..32dc564b 100644 --- a/themes/compline.yaml +++ b/themes/compline.yaml @@ -2,7 +2,7 @@ name: "Compline" source: marketplace_id: "rivethorn.compline" version: "1.0.1" - installs: 547 + installs: 548 author: "Rivethorn" repo: "https://github.com/jblais493/compline" url: "https://marketplace.visualstudio.com/items?itemName=rivethorn.compline" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 95.7 black: 0 diff --git a/themes/component.yaml b/themes/component.yaml index 798bf5c7..9ce02a0f 100644 --- a/themes/component.yaml +++ b/themes/component.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 39.5 black: 0 diff --git a/themes/comrade-contrast.yaml b/themes/comrade-contrast.yaml index 21d5cdb5..dabce1f4 100644 --- a/themes/comrade-contrast.yaml +++ b/themes/comrade-contrast.yaml @@ -1,11 +1,11 @@ name: "comrade-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#121414" fg: "#D6DBDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.4 black: 0 diff --git a/themes/comrade-light.yaml b/themes/comrade-light.yaml index 89db04fa..c2b8dab9 100644 --- a/themes/comrade-light.yaml +++ b/themes/comrade-light.yaml @@ -1,21 +1,21 @@ name: "comrade-light" source: - marketplace_id: "ztaylor.comradeyuri" - version: "0.0.9" - installs: 177 - author: "Zachary Taylor" - repo: "https://github.com/thezacharytaylor/comradeyuri" - url: "https://marketplace.visualstudio.com/items?itemName=ztaylor.comradeyuri" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#D6DBDB" fg: "#343939" black: "#E4E7E7" red: "#BA0E2E" - green: "#BE1704" - yellow: "#4A6656" + green: "#C24E4B" + yellow: "#7F9689" blue: "#343939" - magenta: "#4A6656" - cyan: "#BE1704" + magenta: "#7F9689" + cyan: "#C24E4B" white: "#404646" brightBlack: "#FFFFFF" brightRed: "#F03E5F" @@ -29,15 +29,16 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 75.3 black: 0 red: 58.7 - green: 57.7 - yellow: 59.7 + green: 50.1 + yellow: 37.1 blue: 75.3 - magenta: 59.7 - cyan: 57.7 + magenta: 37.1 + cyan: 50.1 white: 70.6 brightBlack: 22.1 brightRed: 42.2 diff --git a/themes/comrade.yaml b/themes/comrade.yaml index 2eb62adf..6fdbefd5 100644 --- a/themes/comrade.yaml +++ b/themes/comrade.yaml @@ -1,21 +1,21 @@ name: "comrade" source: - marketplace_id: "ztaylor.comradeyuri" - version: "0.0.9" - installs: 177 - author: "Zachary Taylor" - repo: "https://github.com/thezacharytaylor/comradeyuri" - url: "https://marketplace.visualstudio.com/items?itemName=ztaylor.comradeyuri" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#343939" fg: "#D6DBDB" black: "#404646" red: "#BA0E2E" - green: "#FB4934" + green: "#C24E4B" yellow: "#9BB7A7" blue: "#F9F7F1" magenta: "#9BB7A7" - cyan: "#FB4934" + cyan: "#C24E4B" white: "#E4E7E7" brightBlack: "#656E6E" brightRed: "#F03E5F" @@ -29,15 +29,16 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 76.8 black: 0 red: 14.2 - green: 33.9 + green: 22.6 yellow: 52.5 blue: 95.3 magenta: 52.5 - cyan: 33.9 + cyan: 22.6 white: 84.6 brightBlack: 18.4 brightRed: 30.5 diff --git a/themes/concoctis-dark-hard.yaml b/themes/concoctis-dark-hard.yaml index 40485bc7..63de7140 100644 --- a/themes/concoctis-dark-hard.yaml +++ b/themes/concoctis-dark-hard.yaml @@ -2,7 +2,7 @@ name: "Concoctis - Dark : Hard" source: marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" version: "10.30.27" - installs: 74043 + installs: 74058 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Concoctis - Light : Hard" contrast: fg: 66.9 black: 0 diff --git a/themes/concoctis-dark-soft.yaml b/themes/concoctis-dark-soft.yaml index 0ff983a3..02722ee0 100644 --- a/themes/concoctis-dark-soft.yaml +++ b/themes/concoctis-dark-soft.yaml @@ -2,7 +2,7 @@ name: "Concoctis - Dark : Soft" source: marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" version: "10.30.27" - installs: 74043 + installs: 74058 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Concoctis - Light : Soft" contrast: fg: 63.8 black: 0 diff --git a/themes/concoctis-light-hard.yaml b/themes/concoctis-light-hard.yaml index 39f4570c..c68ddb6c 100644 --- a/themes/concoctis-light-hard.yaml +++ b/themes/concoctis-light-hard.yaml @@ -2,7 +2,7 @@ name: "Concoctis - Light : Hard" source: marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" version: "10.30.27" - installs: 74043 + installs: 74058 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Concoctis - Dark : Hard" contrast: fg: 82.2 black: 88.5 diff --git a/themes/concoctis-light-soft.yaml b/themes/concoctis-light-soft.yaml index 5b70717c..97f72ab3 100644 --- a/themes/concoctis-light-soft.yaml +++ b/themes/concoctis-light-soft.yaml @@ -2,7 +2,7 @@ name: "Concoctis - Light : Soft" source: marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" version: "10.30.27" - installs: 74043 + installs: 74058 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 93 + pair: "Concoctis - Dark : Soft" contrast: fg: 73.6 black: 80 diff --git a/themes/concrete-theme.yaml b/themes/concrete-theme.yaml index a7819029..b8b5530c 100644 --- a/themes/concrete-theme.yaml +++ b/themes/concrete-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 101.4 black: 0 diff --git a/themes/concrete.yaml b/themes/concrete.yaml index 170d475a..72f58d70 100644 --- a/themes/concrete.yaml +++ b/themes/concrete.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 77.7 black: 0 diff --git a/themes/conifer-theme.yaml b/themes/conifer-theme.yaml index 9ca356b0..42cdc824 100644 --- a/themes/conifer-theme.yaml +++ b/themes/conifer-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.7 black: 0 diff --git a/themes/contrast-kai.yaml b/themes/contrast-kai.yaml index 94dc5970..463ec804 100644 --- a/themes/contrast-kai.yaml +++ b/themes/contrast-kai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77.4 black: 0 diff --git a/themes/cool-panda.yaml b/themes/cool-panda.yaml index a46d5161..42d3d98a 100644 --- a/themes/cool-panda.yaml +++ b/themes/cool-panda.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 84.1 black: 0 diff --git a/themes/cool-with-a-c.yaml b/themes/cool-with-a-c.yaml index d72fdaf3..2f7b5cfe 100644 --- a/themes/cool-with-a-c.yaml +++ b/themes/cool-with-a-c.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 239 + pair: null contrast: fg: 86.7 black: 0 diff --git a/themes/cooland.yaml b/themes/cooland.yaml index 25ac441e..3fca0dea 100644 --- a/themes/cooland.yaml +++ b/themes/cooland.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/coolnight-color-theme.yaml b/themes/coolnight-color-theme.yaml index fb2848aa..0c5a0985 100644 --- a/themes/coolnight-color-theme.yaml +++ b/themes/coolnight-color-theme.yaml @@ -2,7 +2,7 @@ name: "coolnight-color-theme" source: marketplace_id: "kpatdev.coolnight-theme" version: "0.1.1" - installs: 155 + installs: 157 author: "kpatdev" repo: "https://github.com/kpatdev/coolnight" url: "https://marketplace.visualstudio.com/items?itemName=kpatdev.coolnight-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 242 + pair: null contrast: fg: 85.3 black: 10 diff --git a/themes/coolshine.yaml b/themes/coolshine.yaml index 3b3c5389..96876477 100644 --- a/themes/coolshine.yaml +++ b/themes/coolshine.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 213 + pair: null contrast: fg: 76.2 black: 83.6 diff --git a/themes/copper-dark.yaml b/themes/copper-dark.yaml index 169d3197..5270432a 100644 --- a/themes/copper-dark.yaml +++ b/themes/copper-dark.yaml @@ -2,7 +2,7 @@ name: "Copper Dark" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 39 + pair: null contrast: fg: 82.1 black: 0 diff --git a/themes/corallike.yaml b/themes/corallike.yaml index 9ca15a5f..cf1c568c 100644 --- a/themes/corallike.yaml +++ b/themes/corallike.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 94.9 black: 0 diff --git a/themes/corduroy.yaml b/themes/corduroy.yaml index 7569728a..f66cfea1 100644 --- a/themes/corduroy.yaml +++ b/themes/corduroy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 311 + pair: null contrast: fg: 72.9 black: 0 diff --git a/themes/corgidarkpastel2.yaml b/themes/corgidarkpastel2.yaml index 781f884a..f9a4c5a2 100644 --- a/themes/corgidarkpastel2.yaml +++ b/themes/corgidarkpastel2.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 245 + pair: null contrast: fg: 67.7 black: 10.8 diff --git a/themes/corgidarkpastel3.yaml b/themes/corgidarkpastel3.yaml index ae09a80e..434bf114 100644 --- a/themes/corgidarkpastel3.yaml +++ b/themes/corgidarkpastel3.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 277 + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/corporate-dark-theme.yaml b/themes/corporate-dark-theme.yaml index de97e2d8..724eba48 100644 --- a/themes/corporate-dark-theme.yaml +++ b/themes/corporate-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 91.9 black: 0 diff --git a/themes/cosmic-decay.yaml b/themes/cosmic-decay.yaml index 3e840874..c7e908ca 100644 --- a/themes/cosmic-decay.yaml +++ b/themes/cosmic-decay.yaml @@ -2,7 +2,7 @@ name: "Cosmic Decay" source: marketplace_id: "decaycs.decay" version: "1.0.9" - installs: 37704 + installs: 37708 author: "decaycs" repo: "https://github.com/decaycs/vscode" url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 280 + pair: null contrast: fg: 62.1 black: 0 diff --git a/themes/cosmic-gleam-darkest.yaml b/themes/cosmic-gleam-darkest.yaml index 1b1084c2..27c034ff 100644 --- a/themes/cosmic-gleam-darkest.yaml +++ b/themes/cosmic-gleam-darkest.yaml @@ -2,7 +2,7 @@ name: "Cosmic Gleam: Darkest" source: marketplace_id: "srshah.cosmic-gleam" version: "4.4.0" - installs: 1416 + installs: 1417 author: "Snehil Shah" repo: "https://github.com/snehilshah/cosmic-gleam" url: "https://marketplace.visualstudio.com/items?itemName=srshah.cosmic-gleam" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 82 black: 11.3 diff --git a/themes/cosmic-iris.yaml b/themes/cosmic-iris.yaml index 5b1f7f37..3c6fac3c 100644 --- a/themes/cosmic-iris.yaml +++ b/themes/cosmic-iris.yaml @@ -2,7 +2,7 @@ name: "Cosmic Iris" source: marketplace_id: "shravaninikam.cosmic-iris" version: "0.1.0" - installs: 826 + installs: 827 author: "Shravani Nikam" repo: "https://github.com/shravaninikam/Cosmic-Iris" url: "https://marketplace.visualstudio.com/items?itemName=shravaninikam.cosmic-iris" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 76.4 black: 15.2 diff --git a/themes/cosmic-purple.yaml b/themes/cosmic-purple.yaml index ff3671fd..ea39305d 100644 --- a/themes/cosmic-purple.yaml +++ b/themes/cosmic-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 284 + pair: null contrast: fg: 92.2 black: 0 diff --git a/themes/cosmic-sea.yaml b/themes/cosmic-sea.yaml index 80086ca1..abd64a71 100644 --- a/themes/cosmic-sea.yaml +++ b/themes/cosmic-sea.yaml @@ -1,11 +1,11 @@ name: "Cosmic Sea" source: - marketplace_id: "sserafy.ttera-themes" - version: "2.0.7" - installs: 2036 + marketplace_id: "sserafy.ssera-themes" + version: "2.0.2" + installs: 334 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: bg: "#0F1A2E" fg: "#B3E5FC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: null contrast: fg: 85 black: 0 diff --git a/themes/cosmic.yaml b/themes/cosmic.yaml index 66b5fe8b..6175a49a 100644 --- a/themes/cosmic.yaml +++ b/themes/cosmic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 267 + pair: null contrast: fg: 96.6 black: 0 diff --git a/themes/cosmical.yaml b/themes/cosmical.yaml index 9d7df6f5..6633708b 100644 --- a/themes/cosmical.yaml +++ b/themes/cosmical.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.1 black: 0 diff --git a/themes/cosmico.yaml b/themes/cosmico.yaml index 7d65d152..caeabc12 100644 --- a/themes/cosmico.yaml +++ b/themes/cosmico.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 260 + pair: null contrast: fg: 86 black: 34.2 diff --git a/themes/cosmicsarthak-dark.yaml b/themes/cosmicsarthak-dark.yaml index 7c24d406..b073863d 100644 --- a/themes/cosmicsarthak-dark.yaml +++ b/themes/cosmicsarthak-dark.yaml @@ -2,7 +2,7 @@ name: "cosmicsarthak Dark" source: marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" version: "4.4.7" - installs: 24448 + installs: 24458 author: "cosmicsarthak" repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 242 + pair: null contrast: fg: 58.8 black: 0 diff --git a/themes/cosmicsarthak-neon.yaml b/themes/cosmicsarthak-neon.yaml index f651cc3d..b2ab880e 100644 --- a/themes/cosmicsarthak-neon.yaml +++ b/themes/cosmicsarthak-neon.yaml @@ -2,7 +2,7 @@ name: "cosmicsarthak-neon" source: marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" version: "4.4.7" - installs: 24448 + installs: 24458 author: "cosmicsarthak" repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 260 + pair: null contrast: fg: 106.7 black: 0 diff --git a/themes/cosmicsarthak-night-owl.yaml b/themes/cosmicsarthak-night-owl.yaml index 3a1b6e98..33ebd6cc 100644 --- a/themes/cosmicsarthak-night-owl.yaml +++ b/themes/cosmicsarthak-night-owl.yaml @@ -2,7 +2,7 @@ name: "cosmicsarthak Night Owl" source: marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" version: "4.4.7" - installs: 24448 + installs: 24458 author: "cosmicsarthak" repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 244 + pair: null contrast: fg: 85.3 black: 0 diff --git a/themes/cosmicsarthak-red.yaml b/themes/cosmicsarthak-red.yaml index 8670f9a5..4c9d38dc 100644 --- a/themes/cosmicsarthak-red.yaml +++ b/themes/cosmicsarthak-red.yaml @@ -2,7 +2,7 @@ name: "cosmicsarthak Red" source: marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" version: "4.4.7" - installs: 24448 + installs: 24458 author: "cosmicsarthak" repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 29 + pair: null contrast: fg: 47.9 black: 0 diff --git a/themes/cosmo.yaml b/themes/cosmo.yaml index 9c6f1e00..18437af2 100644 --- a/themes/cosmo.yaml +++ b/themes/cosmo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 58.9 black: 0 diff --git a/themes/cosmos-theme.yaml b/themes/cosmos-theme.yaml index d974b6fe..75da219a 100644 --- a/themes/cosmos-theme.yaml +++ b/themes/cosmos-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 296 + pair: null contrast: fg: 87.6 black: 0 diff --git a/themes/cosmos.yaml b/themes/cosmos.yaml index 86b241e3..df701dc3 100644 --- a/themes/cosmos.yaml +++ b/themes/cosmos.yaml @@ -2,7 +2,7 @@ name: "cosmos" source: marketplace_id: "Ark-Platforms-Inc.galaxyum-theme-arkcorporation" version: "0.0.1" - installs: 302 + installs: 303 author: "Ark Platforms" repo: "https://github.com/ArkCorporation/Cosmic" url: "https://marketplace.visualstudio.com/items?itemName=Ark-Platforms-Inc.galaxyum-theme-arkcorporation" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 258 + pair: null contrast: fg: 106.8 black: 0 diff --git a/themes/couldpeak.yaml b/themes/couldpeak.yaml index 875e47be..2cfb00ec 100644 --- a/themes/couldpeak.yaml +++ b/themes/couldpeak.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 37.5 black: 0 diff --git a/themes/cowboy-theme.yaml b/themes/cowboy-theme.yaml index 71c7752a..3f83e770 100644 --- a/themes/cowboy-theme.yaml +++ b/themes/cowboy-theme.yaml @@ -2,7 +2,7 @@ name: "Cowboy Theme" source: marketplace_id: "lulu-rijpkema.cool-cowboy-theme" version: "0.2.0" - installs: 895 + installs: 896 author: "LRijpkema" repo: "https://github.com/LRijpkema/cool-cowboy-theme" url: "https://marketplace.visualstudio.com/items?itemName=lulu-rijpkema.cool-cowboy-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 300 + pair: null contrast: fg: 86.3 black: 0 diff --git a/themes/cozy-evenings.yaml b/themes/cozy-evenings.yaml index 02f12b20..417ed860 100644 --- a/themes/cozy-evenings.yaml +++ b/themes/cozy-evenings.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 234 + pair: null contrast: fg: 83.5 black: 29.3 diff --git a/themes/cozy-mornings.yaml b/themes/cozy-mornings.yaml index 54abf118..3d8481f9 100644 --- a/themes/cozy-mornings.yaml +++ b/themes/cozy-mornings.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 90 black: 101.6 diff --git a/themes/crackpot-contrast.yaml b/themes/crackpot-contrast.yaml index 204ba4ce..b6d0a605 100644 --- a/themes/crackpot-contrast.yaml +++ b/themes/crackpot-contrast.yaml @@ -1,11 +1,11 @@ name: "crackpot-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#181726" fg: "#D2C9EF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 287 + pair: null contrast: fg: 75.7 black: 0 diff --git a/themes/crackpot-light.yaml b/themes/crackpot-light.yaml index f899b6c7..3434c449 100644 --- a/themes/crackpot-light.yaml +++ b/themes/crackpot-light.yaml @@ -1,11 +1,11 @@ name: "crackpot-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#E6E3EF" fg: "#3A385B" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 298 + pair: null contrast: fg: 80 black: 7.7 diff --git a/themes/crackpot.yaml b/themes/crackpot.yaml index 47e868f7..b7ff79b1 100644 --- a/themes/crackpot.yaml +++ b/themes/crackpot.yaml @@ -1,11 +1,11 @@ name: "crackpot" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#3A385B" fg: "#D2C9EF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 286 + pair: null contrast: fg: 68.4 black: 0 diff --git a/themes/cream-charcoal.yaml b/themes/cream-charcoal.yaml index 45cd6268..c6765523 100644 --- a/themes/cream-charcoal.yaml +++ b/themes/cream-charcoal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 44.2 black: 0 diff --git a/themes/creative-purple-colorblind-innovation-imagination.yaml b/themes/creative-purple-colorblind-innovation-imagination.yaml deleted file mode 100644 index 84cc9cbe..00000000 --- a/themes/creative-purple-colorblind-innovation-imagination.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Creative Purple Colorblind - Innovation & Imagination" -source: - marketplace_id: "akashbadole.dev-ideas-themes" - version: "2.1.1" - installs: 406 - author: "akashbadole" - repo: "https://github.com/akashsbadole/dev-psychology-themes" - url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" -colors: - bg: "#1A0D1A" - fg: "#F3E5F5" - black: "#263238" - red: "#F44336" - green: "#4CAF50" - yellow: "#FFEB3B" - blue: "#2196F3" - magenta: "#E91E63" - cyan: "#00BCD4" - white: "#ECEFF1" - brightBlack: "#37474F" - brightRed: "#FF5252" - brightGreen: "#69F0AE" - brightYellow: "#FFFF00" - brightBlue: "#448AFF" - brightMagenta: "#FF4081" - brightCyan: "#18FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 327 - contrast: - fg: 93.1 - black: 0 - red: 38.1 - green: 48 - yellow: 92.8 - blue: 43.5 - magenta: 33.1 - cyan: 56.9 - white: 96.5 - brightBlack: 9.5 - brightRed: 43.3 - brightGreen: 82.4 - brightYellow: 102.1 - brightBlue: 41 - brightMagenta: 41.9 - brightCyan: 91.6 - brightWhite: 107.3 diff --git a/themes/creative-purple-light-innovation-imagination.yaml b/themes/creative-purple-light-innovation-imagination.yaml index 689835db..cb75de5b 100644 --- a/themes/creative-purple-light-innovation-imagination.yaml +++ b/themes/creative-purple-light-innovation-imagination.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 100.1 black: 94.4 diff --git a/themes/crema.yaml b/themes/crema.yaml index 0132026c..e0c81e0e 100644 --- a/themes/crema.yaml +++ b/themes/crema.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.7 black: 15.2 diff --git a/themes/crf-flamengo.yaml b/themes/crf-flamengo.yaml index 95de587a..340bce80 100644 --- a/themes/crf-flamengo.yaml +++ b/themes/crf-flamengo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/crimson-sunset.yaml b/themes/crimson-sunset.yaml index 48a5445b..74a126fc 100644 --- a/themes/crimson-sunset.yaml +++ b/themes/crimson-sunset.yaml @@ -2,7 +2,7 @@ name: "Crimson Sunset" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/crisp-contrast.yaml b/themes/crisp-contrast.yaml index 6f5e6608..f3c27d21 100644 --- a/themes/crisp-contrast.yaml +++ b/themes/crisp-contrast.yaml @@ -1,11 +1,11 @@ name: "crisp-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0C090C" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/crisp-light.yaml b/themes/crisp-light.yaml index d794d0c5..c9bff12a 100644 --- a/themes/crisp-light.yaml +++ b/themes/crisp-light.yaml @@ -1,11 +1,11 @@ name: "crisp-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#221A22" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 103.9 black: 0 diff --git a/themes/crisp.yaml b/themes/crisp.yaml index bdcdf3cc..f2a5dc29 100644 --- a/themes/crisp.yaml +++ b/themes/crisp.yaml @@ -1,11 +1,11 @@ name: "crisp" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#221A22" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 326 + pair: null contrast: fg: 106.2 black: 0 diff --git a/themes/crow-dark.yaml b/themes/crow-dark.yaml index 3cc5e81c..128ea51b 100644 --- a/themes/crow-dark.yaml +++ b/themes/crow-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/crowveil-ayu.yaml b/themes/crowveil-ayu.yaml index 874528df..2de2c50e 100644 --- a/themes/crowveil-ayu.yaml +++ b/themes/crowveil-ayu.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 59.5 black: 0 diff --git a/themes/crt-64.yaml b/themes/crt-64.yaml index d8b2fb9c..5ea82fea 100644 --- a/themes/crt-64.yaml +++ b/themes/crt-64.yaml @@ -1,11 +1,11 @@ name: "CRT 64" source: - marketplace_id: "krueger71.crt-themes" - version: "0.5.2" - installs: 38247 - author: "krueger71" - repo: "https://github.com/krueger71/crt-themes" - url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#352879" fg: "#6C5EB5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 284 + pair: null contrast: fg: 18.1 black: 18.1 diff --git a/themes/crt-alt.yaml b/themes/crt-alt.yaml index 9dc32a8a..acb119ea 100644 --- a/themes/crt-alt.yaml +++ b/themes/crt-alt.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 142 + pair: null contrast: fg: 87 black: 87 diff --git a/themes/crt-amber.yaml b/themes/crt-amber.yaml index ca864085..5ea7adc6 100644 --- a/themes/crt-amber.yaml +++ b/themes/crt-amber.yaml @@ -1,49 +1,50 @@ name: "CRT Amber" source: - marketplace_id: "leandro-rodrigues.crt-vscode" - version: "0.1.0" - installs: 6563 - author: "Leandro Rodrigues" - repo: "https://github.com/TheOld/legacy-term" - url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: - bg: "#180F06" + bg: "#111111" fg: "#FFB000" black: "#FFB000" - red: "#C68C0B" - green: "#D49508" - yellow: "#A97A10" - blue: "#F1A703" - magenta: "#E29E05" - cyan: "#B7830D" - white: "#9B7113" + red: "#C08605" + green: "#CF9003" + yellow: "#A07007" + blue: "#EFA501" + magenta: "#DF9B02" + cyan: "#B07B06" + white: "#906608" brightBlack: "#FFB000" - brightRed: "#C68C0B" - brightGreen: "#D49508" - brightYellow: "#A97A10" - brightBlue: "#F1A703" - brightMagenta: "#E29E05" - brightCyan: "#B7830D" - brightWhite: "#9B7113" + brightRed: "#C08605" + brightGreen: "#CF9003" + brightYellow: "#A07007" + brightBlue: "#EFA501" + brightMagenta: "#DF9B02" + brightCyan: "#B07B06" + brightWhite: "#906608" meta: mode: "dark" accent: "yellow" - hue: 67 + hue: null + pair: null contrast: fg: 68.1 black: 68.1 - red: 45.8 - green: 51.1 - yellow: 35.6 - blue: 62.3 - magenta: 56.5 - cyan: 40.5 - white: 30.8 + red: 42.9 + green: 48.6 + yellow: 31.2 + blue: 61.3 + magenta: 55 + cyan: 36.9 + white: 26.1 brightBlack: 68.1 - brightRed: 45.8 - brightGreen: 51.1 - brightYellow: 35.6 - brightBlue: 62.3 - brightMagenta: 56.5 - brightCyan: 40.5 - brightWhite: 30.8 + brightRed: 42.9 + brightGreen: 48.6 + brightYellow: 31.2 + brightBlue: 61.3 + brightMagenta: 55 + brightCyan: 36.9 + brightWhite: 26.1 diff --git a/themes/crt-apple.yaml b/themes/crt-apple.yaml index a940d2b1..a9336648 100644 --- a/themes/crt-apple.yaml +++ b/themes/crt-apple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 142 + pair: null contrast: fg: 86.8 black: 86.8 diff --git a/themes/crt-appleiic.yaml b/themes/crt-appleiic.yaml index df4afecb..cb6a462f 100644 --- a/themes/crt-appleiic.yaml +++ b/themes/crt-appleiic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 142 + pair: null contrast: fg: 88.8 black: 88.8 diff --git a/themes/crt-blue.yaml b/themes/crt-blue.yaml index ea4ef2bc..6701a73d 100644 --- a/themes/crt-blue.yaml +++ b/themes/crt-blue.yaml @@ -1,49 +1,50 @@ name: "CRT Blue" source: - marketplace_id: "leandro-rodrigues.crt-vscode" - version: "0.1.0" - installs: 6563 - author: "Leandro Rodrigues" - repo: "https://github.com/TheOld/legacy-term" - url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: - bg: "#00000C" - fg: "#00B7FF" - black: "#00B7FF" - red: "#0DB4C6" - green: "#0AC1D4" - yellow: "#129BA9" - blue: "#05DAF1" - magenta: "#08CEE2" - cyan: "#0FA7B7" - white: "#148E9B" - brightBlack: "#00B7FF" - brightRed: "#0DB4C6" - brightGreen: "#0AC1D4" - brightYellow: "#129BA9" - brightBlue: "#05DAF1" - brightMagenta: "#08CEE2" - brightCyan: "#0FA7B7" - brightWhite: "#148E9B" + bg: "#111111" + fg: "#0099FF" + black: "#0099FF" + red: "#0575C0" + green: "#037ECF" + yellow: "#0763A0" + blue: "#0190EF" + magenta: "#0287DF" + cyan: "#066CB0" + white: "#085A90" + brightBlack: "#0099FF" + brightRed: "#0575C0" + brightGreen: "#037ECF" + brightYellow: "#0763A0" + brightBlue: "#0190EF" + brightMagenta: "#0287DF" + brightCyan: "#066CB0" + brightWhite: "#085A90" meta: mode: "dark" accent: "indigo" - hue: 264 + hue: null + pair: null contrast: - fg: 57.9 - black: 57.9 - red: 53.3 - green: 59.7 - yellow: 41.4 - blue: 72.9 - magenta: 66.4 - cyan: 47 - white: 35.6 - brightBlack: 57.9 - brightRed: 53.3 - brightGreen: 59.7 - brightYellow: 41.4 - brightBlue: 72.9 - brightMagenta: 66.4 - brightCyan: 47 - brightWhite: 35.6 + fg: 45.4 + black: 45.4 + red: 28.1 + green: 32.1 + yellow: 20.3 + blue: 40.8 + magenta: 36.4 + cyan: 24.1 + white: 16.7 + brightBlack: 45.4 + brightRed: 28.1 + brightGreen: 32.1 + brightYellow: 20.3 + brightBlue: 40.8 + brightMagenta: 36.4 + brightCyan: 24.1 + brightWhite: 16.7 diff --git a/themes/crt-gray.yaml b/themes/crt-gray.yaml deleted file mode 100644 index f6bf9db3..00000000 --- a/themes/crt-gray.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "CRT Gray" -source: - marketplace_id: "krueger71.crt-themes" - version: "0.5.2" - installs: 38247 - author: "krueger71" - repo: "https://github.com/krueger71/crt-themes" - url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" -colors: - bg: "#111111" - fg: "#BBBBBB" - black: "#BBBBBB" - red: "#8E8E8E" - green: "#999999" - yellow: "#777777" - blue: "#B0B0B0" - magenta: "#A4A4A4" - cyan: "#828282" - white: "#6C6C6C" - brightBlack: "#BBBBBB" - brightRed: "#8E8E8E" - brightGreen: "#999999" - brightYellow: "#777777" - brightBlue: "#B0B0B0" - brightMagenta: "#A4A4A4" - brightCyan: "#828282" - brightWhite: "#6C6C6C" -meta: - mode: "dark" - accent: "yellow" - hue: null - contrast: - fg: 65.2 - black: 65.2 - red: 41.1 - green: 46.7 - yellow: 30.1 - blue: 59 - magenta: 52.5 - cyan: 35.2 - white: 25.1 - brightBlack: 65.2 - brightRed: 41.1 - brightGreen: 46.7 - brightYellow: 30.1 - brightBlue: 59 - brightMagenta: 52.5 - brightCyan: 35.2 - brightWhite: 25.1 diff --git a/themes/crt-green.yaml b/themes/crt-green.yaml index 39d027f4..ae569d50 100644 --- a/themes/crt-green.yaml +++ b/themes/crt-green.yaml @@ -1,11 +1,11 @@ name: "CRT Green" source: - marketplace_id: "krueger71.crt-themes" - version: "0.5.2" - installs: 38247 - author: "krueger71" - repo: "https://github.com/krueger71/crt-themes" - url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#111111" fg: "#33FF00" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 86.3 black: 86.3 diff --git a/themes/crt-green1.yaml b/themes/crt-green1.yaml index ec9bbbc5..980657a4 100644 --- a/themes/crt-green1.yaml +++ b/themes/crt-green1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 142 + pair: null contrast: fg: 86.7 black: 86.7 diff --git a/themes/crt-green2.yaml b/themes/crt-green2.yaml index e8f59ca9..bec13aa0 100644 --- a/themes/crt-green2.yaml +++ b/themes/crt-green2.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 142 + pair: null contrast: fg: 86.5 black: 86.5 diff --git a/themes/crt-paper.yaml b/themes/crt-paper.yaml deleted file mode 100644 index 041adc07..00000000 --- a/themes/crt-paper.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "CRT Paper" -source: - marketplace_id: "krueger71.crt-themes" - version: "0.5.2" - installs: 38247 - author: "krueger71" - repo: "https://github.com/krueger71/crt-themes" - url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" -colors: - bg: "#F0F0F0" - fg: "#0F0F0F" - black: "#0F0F0F" - red: "#4B4B4B" - green: "#3C3C3C" - yellow: "#696969" - blue: "#1E1E1E" - magenta: "#2D2D2D" - cyan: "#5A5A5A" - white: "#787878" - brightBlack: "#0F0F0F" - brightRed: "#4B4B4B" - brightGreen: "#3C3C3C" - brightYellow: "#696969" - brightBlue: "#1E1E1E" - brightMagenta: "#2D2D2D" - brightCyan: "#5A5A5A" - brightWhite: "#787878" -meta: - mode: "light" - accent: "yellow" - hue: null - contrast: - fg: 96.6 - black: 96.6 - red: 81 - green: 86.6 - yellow: 68.5 - blue: 94.7 - magenta: 91.4 - cyan: 75 - white: 61.7 - brightBlack: 96.6 - brightRed: 81 - brightGreen: 86.6 - brightYellow: 68.5 - brightBlue: 94.7 - brightMagenta: 91.4 - brightCyan: 75 - brightWhite: 61.7 diff --git a/themes/crt-red.yaml b/themes/crt-red.yaml index 5193e7f1..d4ce2854 100644 --- a/themes/crt-red.yaml +++ b/themes/crt-red.yaml @@ -1,11 +1,11 @@ name: "CRT Red" source: - marketplace_id: "krueger71.crt-themes" - version: "0.5.2" - installs: 38247 - author: "krueger71" - repo: "https://github.com/krueger71/crt-themes" - url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#111111" fg: "#FF2222" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 37.8 black: 37.8 diff --git a/themes/crt.yaml b/themes/crt.yaml index 636ed21c..af9a1312 100644 --- a/themes/crt.yaml +++ b/themes/crt.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 150 + pair: null contrast: fg: 80.9 black: 0 diff --git a/themes/crypto.yaml b/themes/crypto.yaml index 6edcc127..f7bce36a 100644 --- a/themes/crypto.yaml +++ b/themes/crypto.yaml @@ -2,7 +2,7 @@ name: "Crypto" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 298 + pair: null contrast: fg: 31.2 black: 0 diff --git a/themes/crystaltine-s-crystalline-4-1.yaml b/themes/crystaltine-s-crystalline-4-1.yaml index 6afd519c..0e5160d3 100644 --- a/themes/crystaltine-s-crystalline-4-1.yaml +++ b/themes/crystaltine-s-crystalline-4-1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 58.8 black: 8.2 diff --git a/themes/crystaltine-s-crystalline-5-0.yaml b/themes/crystaltine-s-crystalline-5-0.yaml index 8c3b741e..d0384a27 100644 --- a/themes/crystaltine-s-crystalline-5-0.yaml +++ b/themes/crystaltine-s-crystalline-5-0.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 49.8 black: 8.1 diff --git a/themes/cs50-light-theme.yaml b/themes/cs50-light-theme.yaml index e773e524..fcd34376 100644 --- a/themes/cs50-light-theme.yaml +++ b/themes/cs50-light-theme.yaml @@ -2,7 +2,7 @@ name: "cs50-light-theme" source: marketplace_id: "whitehat4u.cs50-theme-harvard" version: "1.1.0" - installs: 4449 + installs: 4452 author: "juan santos" repo: "https://github.com/juanpumpkinpie/cs50-theme-harvard" url: "https://marketplace.visualstudio.com/items?itemName=whitehat4u.cs50-theme-harvard" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 90 black: 90 diff --git a/themes/css-battle.yaml b/themes/css-battle.yaml index aae1e3c8..d7cc7f66 100644 --- a/themes/css-battle.yaml +++ b/themes/css-battle.yaml @@ -2,7 +2,7 @@ name: "CSS Battle" source: marketplace_id: "JamesGulland.solar-storm-dark-theme" version: "0.1.0" - installs: 177 + installs: 179 author: "James Gulland" repo: "https://github.com/james-gulland/solar-storm-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.solar-storm-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 272 + pair: null contrast: fg: 36.2 black: 0 diff --git a/themes/cucumber-dark.yaml b/themes/cucumber-dark.yaml index 2d2528f9..5ceb4ebf 100644 --- a/themes/cucumber-dark.yaml +++ b/themes/cucumber-dark.yaml @@ -2,7 +2,7 @@ name: "Cucumber - Dark" source: marketplace_id: "jbird.cucumber-color-theme" version: "0.0.1" - installs: 40 + installs: 41 author: "Jason Hulbert" repo: "https://github.com/jasonhulbert/cucumber-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=jbird.cucumber-color-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: "Cucumber - Light" contrast: fg: 66.7 black: 0 diff --git a/themes/cucumber-light.yaml b/themes/cucumber-light.yaml index 843fceef..c7da210a 100644 --- a/themes/cucumber-light.yaml +++ b/themes/cucumber-light.yaml @@ -2,7 +2,7 @@ name: "Cucumber - Light" source: marketplace_id: "jbird.cucumber-color-theme" version: "0.0.1" - installs: 40 + installs: 41 author: "Jason Hulbert" repo: "https://github.com/jasonhulbert/cucumber-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=jbird.cucumber-color-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "Cucumber - Dark" contrast: fg: 95.1 black: 0 diff --git a/themes/cupertino-dark.yaml b/themes/cupertino-dark.yaml index e9f0d272..dc516ad2 100644 --- a/themes/cupertino-dark.yaml +++ b/themes/cupertino-dark.yaml @@ -2,7 +2,7 @@ name: "Cupertino Dark" source: marketplace_id: "EuraIndustries.cupertino-vscode" version: "1.3.1" - installs: 14 + installs: 15 author: "Eura Industries" repo: "https://github.com/eura-industries/cupertino-vscode" url: "https://marketplace.visualstudio.com/items?itemName=EuraIndustries.cupertino-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 268 + pair: "Cupertino Light" contrast: fg: 85.8 black: 0 diff --git a/themes/cupertino-light.yaml b/themes/cupertino-light.yaml index e17d5a1c..0edfb6b1 100644 --- a/themes/cupertino-light.yaml +++ b/themes/cupertino-light.yaml @@ -2,7 +2,7 @@ name: "Cupertino Light" source: marketplace_id: "EuraIndustries.cupertino-vscode" version: "1.3.1" - installs: 14 + installs: 15 author: "Eura Industries" repo: "https://github.com/eura-industries/cupertino-vscode" url: "https://marketplace.visualstudio.com/items?itemName=EuraIndustries.cupertino-vscode" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Cupertino Dark" contrast: fg: 98.5 black: 101.8 diff --git a/themes/curry-dark.yaml b/themes/curry-dark.yaml index 55ea566c..e8279961 100644 --- a/themes/curry-dark.yaml +++ b/themes/curry-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 81.7 black: 0 diff --git a/themes/cursor-dark-anysphere-v0-0-1.yaml b/themes/cursor-dark-anysphere-v0-0-1.yaml index e924abac..87694526 100644 --- a/themes/cursor-dark-anysphere-v0-0-1.yaml +++ b/themes/cursor-dark-anysphere-v0-0-1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 98.8 black: 0 diff --git a/themes/cursor-dark.yaml b/themes/cursor-dark.yaml deleted file mode 100644 index a1fa9f4a..00000000 --- a/themes/cursor-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Cursor Dark" -source: - marketplace_id: "MohdZaid.vscode-cursor-theme" - version: "0.0.1" - installs: 2733 - author: "Mohd Zaid" - repo: "https://github.com/BioHazard786/cursor-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=MohdZaid.vscode-cursor-theme" -colors: - bg: "#181818" - fg: "#E4E4E4" - black: "#242424" - red: "#FC6B83" - green: "#3FA266" - yellow: "#D2943E" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E4E4E4" - brightBlack: "#E4E4E4" - brightRed: "#FC6B83" - brightGreen: "#70B489" - brightYellow: "#F1B467" - brightBlue: "#87A6C4" - brightMagenta: "#B48EAD" - brightCyan: "#88C0D0" - brightWhite: "#E4E4E4" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 89.3 - black: 0 - red: 47.9 - green: 41.8 - yellow: 50.1 - blue: 48.5 - magenta: 46.4 - cyan: 62.6 - white: 89.3 - brightBlack: 89.3 - brightRed: 47.9 - brightGreen: 52.8 - brightYellow: 67.3 - brightBlue: 51.2 - brightMagenta: 46.4 - brightCyan: 62.6 - brightWhite: 89.3 diff --git a/themes/cursor-less-dark.yaml b/themes/cursor-less-dark.yaml index 8fc98a00..c64ead2f 100644 --- a/themes/cursor-less-dark.yaml +++ b/themes/cursor-less-dark.yaml @@ -2,7 +2,7 @@ name: "Cursor Less Dark" source: marketplace_id: "cedricverlinden.cursor-dark" version: "2.2.0" - installs: 18680 + installs: 18735 author: "Cédric Verlinden" repo: "https://github.com/CedricVerlinden/cursor-dark" url: "https://marketplace.visualstudio.com/items?itemName=cedricverlinden.cursor-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/cursor-light.yaml b/themes/cursor-light.yaml index 68985b33..85354f82 100644 --- a/themes/cursor-light.yaml +++ b/themes/cursor-light.yaml @@ -2,7 +2,7 @@ name: "Cursor Light" source: marketplace_id: "MohdZaid.vscode-cursor-theme" version: "0.0.1" - installs: 2733 + installs: 2750 author: "Mohd Zaid" repo: "https://github.com/BioHazard786/cursor-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=MohdZaid.vscode-cursor-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 103.3 black: 103.3 diff --git a/themes/cursor-night-theme-soft.yaml b/themes/cursor-night-theme-soft.yaml index 0c61eead..273312c2 100644 --- a/themes/cursor-night-theme-soft.yaml +++ b/themes/cursor-night-theme-soft.yaml @@ -2,7 +2,7 @@ name: "Cursor Night Theme Soft" source: marketplace_id: "DiegoMontejano.cursor-night-theme" version: "1.0.0" - installs: 1011 + installs: 1013 author: "Diego Montejano" repo: "https://github.com/diegomontejano/cursor-night-theme" url: "https://marketplace.visualstudio.com/items?itemName=DiegoMontejano.cursor-night-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 266 + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/cursor-night-theme.yaml b/themes/cursor-night-theme.yaml index 0673e562..49b670c5 100644 --- a/themes/cursor-night-theme.yaml +++ b/themes/cursor-night-theme.yaml @@ -2,7 +2,7 @@ name: "Cursor Night Theme" source: marketplace_id: "DiegoMontejano.cursor-night-theme" version: "1.0.0" - installs: 1011 + installs: 1013 author: "Diego Montejano" repo: "https://github.com/diegomontejano/cursor-night-theme" url: "https://marketplace.visualstudio.com/items?itemName=DiegoMontejano.cursor-night-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 242 + pair: null contrast: fg: 82.2 black: 0 diff --git a/themes/cursor-theme.yaml b/themes/cursor-theme.yaml index 83787cd9..91510511 100644 --- a/themes/cursor-theme.yaml +++ b/themes/cursor-theme.yaml @@ -2,7 +2,7 @@ name: "Cursor Theme" source: marketplace_id: "ManitejaPratha.cursor-midnight-theme" version: "0.0.3" - installs: 5028 + installs: 5048 author: "Maniteja Pratha" repo: "https://github.com/Manitej66/cursor-theme-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ManitejaPratha.cursor-midnight-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 36.1 black: 0 diff --git a/themes/custom-theme-dark.yaml b/themes/custom-theme-dark.yaml index 6f8ad513..b50d0761 100644 --- a/themes/custom-theme-dark.yaml +++ b/themes/custom-theme-dark.yaml @@ -2,7 +2,7 @@ name: "Custom Theme (dark)" source: marketplace_id: "Teambotics.theme-studio" version: "0.0.2" - installs: 13 + installs: 14 author: "Teambotics" repo: "https://github.com/nickhilster/theme-crafter" url: "https://marketplace.visualstudio.com/items?itemName=Teambotics.theme-studio" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 77.1 black: 0 diff --git a/themes/custom-theme-light.yaml b/themes/custom-theme-light.yaml index d14d1e57..a2fc2c98 100644 --- a/themes/custom-theme-light.yaml +++ b/themes/custom-theme-light.yaml @@ -2,7 +2,7 @@ name: "Custom Theme (light)" source: marketplace_id: "Teambotics.theme-studio" version: "0.0.2" - installs: 13 + installs: 14 author: "Teambotics" repo: "https://github.com/nickhilster/theme-crafter" url: "https://marketplace.visualstudio.com/items?itemName=Teambotics.theme-studio" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 96.7 black: 103 diff --git a/themes/custom-theme.yaml b/themes/custom-theme.yaml index 0dfbc04a..8ed69471 100644 --- a/themes/custom-theme.yaml +++ b/themes/custom-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 257 + pair: null contrast: fg: 61 black: 15.7 diff --git a/themes/custommarktheme.yaml b/themes/custommarktheme.yaml index 42d04d31..0ff99830 100644 --- a/themes/custommarktheme.yaml +++ b/themes/custommarktheme.yaml @@ -1,11 +1,11 @@ name: "CustomMarkTheme" source: - marketplace_id: "Meuid3.headfox-theme-intense" - version: "1.0.0" - installs: 89 + marketplace_id: "Meuid3.headfox-theme" + version: "1.0.1" + installs: 281 author: "meuid3" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Meuid3.headfox-theme-intense" + url: "https://marketplace.visualstudio.com/items?itemName=Meuid3.headfox-theme" colors: bg: "#303845" fg: "#B4BDCD" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 59.4 black: 0 diff --git a/themes/cyan-dark.yaml b/themes/cyan-dark.yaml index 4850a049..43e9d63e 100644 --- a/themes/cyan-dark.yaml +++ b/themes/cyan-dark.yaml @@ -2,7 +2,7 @@ name: "Cyan Dark" source: marketplace_id: "ceciljacob.code-color-theme" version: "1.0.0" - installs: 22121 + installs: 22125 author: "Cecil Jacob" repo: "https://github.com/ceciljacob/code-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=ceciljacob.code-color-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 260 + pair: null contrast: fg: 84.7 black: 0 diff --git a/themes/cyber-dark.yaml b/themes/cyber-dark.yaml index dc12f5db..79b8c232 100644 --- a/themes/cyber-dark.yaml +++ b/themes/cyber-dark.yaml @@ -1,11 +1,11 @@ name: "Cyber Dark" source: - marketplace_id: "tryToDEv.cyber-dark-theme-collection" - version: "1.0.0" - installs: 22 + marketplace_id: "tryToDEv.cyber-qoder-themes" + version: "1.2.0" + installs: 15 author: "tryToDEv" repo: "https://github.com/shivam20/cyber-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-dark-theme-collection" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" colors: bg: "#0D1117" fg: "#C9D1D9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 258 + pair: "Cyber Light" contrast: fg: 77.5 black: 0 diff --git a/themes/cyber-light-soft.yaml b/themes/cyber-light-soft.yaml index a8b42e0e..d33f37df 100644 --- a/themes/cyber-light-soft.yaml +++ b/themes/cyber-light-soft.yaml @@ -1,11 +1,11 @@ name: "Cyber Light Soft" source: - marketplace_id: "tryToDEv.cyber-dark-theme-collection" - version: "1.0.0" - installs: 22 + marketplace_id: "tryToDEv.cyber-qoder-themes" + version: "1.2.0" + installs: 15 author: "tryToDEv" repo: "https://github.com/shivam20/cyber-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-dark-theme-collection" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" colors: bg: "#FAFBFC" fg: "#2F363D" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 95.5 black: 95.5 diff --git a/themes/cyber-light-warm.yaml b/themes/cyber-light-warm.yaml index 0471e6d3..9c820dd0 100644 --- a/themes/cyber-light-warm.yaml +++ b/themes/cyber-light-warm.yaml @@ -1,11 +1,11 @@ name: "Cyber Light Warm" source: - marketplace_id: "tryToDEv.cyber-dark-theme-collection" - version: "1.0.0" - installs: 22 + marketplace_id: "tryToDEv.cyber-qoder-themes" + version: "1.2.0" + installs: 15 author: "tryToDEv" repo: "https://github.com/shivam20/cyber-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-dark-theme-collection" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" colors: bg: "#FFFBF0" fg: "#3A2A1A" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.9 black: 97.9 diff --git a/themes/cyber-light.yaml b/themes/cyber-light.yaml index 931d6909..7fb6ee58 100644 --- a/themes/cyber-light.yaml +++ b/themes/cyber-light.yaml @@ -1,11 +1,11 @@ name: "Cyber Light" source: - marketplace_id: "tryToDEv.cyber-dark-theme-collection" - version: "1.0.0" - installs: 22 + marketplace_id: "tryToDEv.cyber-qoder-themes" + version: "1.2.0" + installs: 15 author: "tryToDEv" repo: "https://github.com/shivam20/cyber-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-dark-theme-collection" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" colors: bg: "#FFFFFF" fg: "#24292F" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Cyber Dark" contrast: fg: 101.5 black: 101.5 diff --git a/themes/cyber-pastel-violet.yaml b/themes/cyber-pastel-violet.yaml index 8eda4fb3..2f9d5a79 100644 --- a/themes/cyber-pastel-violet.yaml +++ b/themes/cyber-pastel-violet.yaml @@ -2,7 +2,7 @@ name: "Cyber Pastel - Violet" source: marketplace_id: "cyber-pastel-themes.cyber-pastel-theme-pack" version: "1.0.0" - installs: 424 + installs: 425 author: "cyber-pastel-themes" repo: "https://github.com/your-username/cyber-pastel-theme-pack" url: "https://marketplace.visualstudio.com/items?itemName=cyber-pastel-themes.cyber-pastel-theme-pack" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 93.4 black: 93.4 diff --git a/themes/cyber-purple-77.yaml b/themes/cyber-purple-77.yaml index 493b46a0..d6ab7891 100644 --- a/themes/cyber-purple-77.yaml +++ b/themes/cyber-purple-77.yaml @@ -2,7 +2,7 @@ name: "Cyber Purple 77" source: marketplace_id: "flep.cyber-purple-77" version: "1.2.1" - installs: 4861 + installs: 4865 author: "flep" repo: "https://github.com/fleps/cyber-purple-77-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=flep.cyber-purple-77" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 307 + pair: null contrast: fg: 56.4 black: 37.3 diff --git a/themes/cyberblue.yaml b/themes/cyberblue.yaml index fd9ce315..20ac21de 100644 --- a/themes/cyberblue.yaml +++ b/themes/cyberblue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 80.2 black: 14.3 diff --git a/themes/cyberdude-black.yaml b/themes/cyberdude-black.yaml index e21a0bf3..a9be64e2 100644 --- a/themes/cyberdude-black.yaml +++ b/themes/cyberdude-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 244 + pair: null contrast: fg: 102.3 black: 10.6 diff --git a/themes/cyberdyne-ghostty.yaml b/themes/cyberdyne-ghostty.yaml index 4f072d46..6ef8d992 100644 --- a/themes/cyberdyne-ghostty.yaml +++ b/themes/cyberdyne-ghostty.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 279 + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/cybereternals-vscode-theme.yaml b/themes/cybereternals-vscode-theme.yaml index 7fbd4197..bc97896f 100644 --- a/themes/cybereternals-vscode-theme.yaml +++ b/themes/cybereternals-vscode-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 267 + pair: null contrast: fg: 66.4 black: 0 diff --git a/themes/cybermoon.yaml b/themes/cybermoon.yaml index 911340b0..25c43ba7 100644 --- a/themes/cybermoon.yaml +++ b/themes/cybermoon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/cyberpink-137-theme.yaml b/themes/cyberpink-137-theme.yaml index 6e23e5d2..4112723f 100644 --- a/themes/cyberpink-137-theme.yaml +++ b/themes/cyberpink-137-theme.yaml @@ -2,7 +2,7 @@ name: "Cyberpink-137© Theme" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 293 + pair: null contrast: fg: 39 black: 26.8 diff --git a/themes/cyberpunk-2077-night-city-neon.yaml b/themes/cyberpunk-2077-night-city-neon.yaml index c495e30d..78ecc68f 100644 --- a/themes/cyberpunk-2077-night-city-neon.yaml +++ b/themes/cyberpunk-2077-night-city-neon.yaml @@ -2,7 +2,7 @@ name: "Cyberpunk 2077 - Night City Neon" source: marketplace_id: "GriffReaper.cyberpunk-2077-night-city-theme" version: "1.0.5" - installs: 74 + installs: 76 author: "Griff Reaper" repo: "https://github.com/your-username/cyberpunk-2077-theme" url: "https://marketplace.visualstudio.com/items?itemName=GriffReaper.cyberpunk-2077-night-city-theme" diff --git a/themes/cyberpunk-2077-reloaded.yaml b/themes/cyberpunk-2077-reloaded.yaml index 4c3ce190..b23526f7 100644 --- a/themes/cyberpunk-2077-reloaded.yaml +++ b/themes/cyberpunk-2077-reloaded.yaml @@ -2,7 +2,7 @@ name: "Cyberpunk 2077 Reloaded" source: marketplace_id: "andre-s-nascimento.cyberpunk-reloaded-theme" version: "1.0.3" - installs: 2791 + installs: 2792 author: "André Soares Nascimento" repo: "https://github.com/andre-s-nascimento/cyberpunk-reloaded-theme" url: "https://marketplace.visualstudio.com/items?itemName=andre-s-nascimento.cyberpunk-reloaded-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 275 + pair: null contrast: fg: 93.9 black: 0 diff --git a/themes/cyberpunk-2077.yaml b/themes/cyberpunk-2077.yaml index 9330d4b4..e161d53f 100644 --- a/themes/cyberpunk-2077.yaml +++ b/themes/cyberpunk-2077.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 275 + pair: null contrast: fg: 104.2 black: 0 diff --git a/themes/cyberpunk.yaml b/themes/cyberpunk.yaml index 38a587f6..d377caa4 100644 --- a/themes/cyberpunk.yaml +++ b/themes/cyberpunk.yaml @@ -1,11 +1,11 @@ name: "Cyberpunk" source: - marketplace_id: "sserafy.ttera-themes" - version: "2.0.7" - installs: 2036 + marketplace_id: "sserafy.ssera-themes" + version: "2.0.2" + installs: 334 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: bg: "#000000" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/cyberpunkcygnus-clear-grid.yaml b/themes/cyberpunkcygnus-clear-grid.yaml index 81368017..5c6263f0 100644 --- a/themes/cyberpunkcygnus-clear-grid.yaml +++ b/themes/cyberpunkcygnus-clear-grid.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 106 black: 96.5 diff --git a/themes/cyberpunkcygnus-neon-pulse.yaml b/themes/cyberpunkcygnus-neon-pulse.yaml index 48518443..5eb4a99a 100644 --- a/themes/cyberpunkcygnus-neon-pulse.yaml +++ b/themes/cyberpunkcygnus-neon-pulse.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 106.8 black: 0 diff --git a/themes/cyberpunkcygnus-solace-flare.yaml b/themes/cyberpunkcygnus-solace-flare.yaml index b0afe10f..81b710a5 100644 --- a/themes/cyberpunkcygnus-solace-flare.yaml +++ b/themes/cyberpunkcygnus-solace-flare.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 95.2 black: 77.8 diff --git a/themes/cybertrauma-s-dark-theme.yaml b/themes/cybertrauma-s-dark-theme.yaml index 6f7fada4..41ef6913 100644 --- a/themes/cybertrauma-s-dark-theme.yaml +++ b/themes/cybertrauma-s-dark-theme.yaml @@ -2,7 +2,7 @@ name: "CyberTrauma's Dark Theme" source: marketplace_id: "CyberTrauma.cybertrauma-s-dark-theme" version: "0.1.11" - installs: 2108 + installs: 2109 author: "CyberTrauma" repo: "https://github.com/siddarthreddygsr/CyberTrauma-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=CyberTrauma.cybertrauma-s-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 78 black: 0 diff --git a/themes/cybertrauma-s.yaml b/themes/cybertrauma-s.yaml index 411c9b36..2f814b0d 100644 --- a/themes/cybertrauma-s.yaml +++ b/themes/cybertrauma-s.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 9 diff --git a/themes/cynical-color-theme.yaml b/themes/cynical-color-theme.yaml index 599e31d9..3c4998be 100644 --- a/themes/cynical-color-theme.yaml +++ b/themes/cynical-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 243 + pair: null contrast: fg: 98.3 black: 0 diff --git a/themes/d2t-dark-clean.yaml b/themes/d2t-dark-clean.yaml index 4529ed8e..09bdd92e 100644 --- a/themes/d2t-dark-clean.yaml +++ b/themes/d2t-dark-clean.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 278 + pair: null contrast: fg: 90.2 black: 27.4 diff --git a/themes/d2t-dark.yaml b/themes/d2t-dark.yaml index 1a49d770..e1d72eda 100644 --- a/themes/d2t-dark.yaml +++ b/themes/d2t-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 277 + pair: null contrast: fg: 89 black: 26.2 diff --git a/themes/da3m0ns-dark-italic.yaml b/themes/da3m0ns-dark-italic.yaml index c070800a..1d2198ce 100644 --- a/themes/da3m0ns-dark-italic.yaml +++ b/themes/da3m0ns-dark-italic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 59.3 black: 0 diff --git a/themes/dafault.yaml b/themes/dafault.yaml index cff1b596..cb8ce133 100644 --- a/themes/dafault.yaml +++ b/themes/dafault.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 107 black: 0 diff --git a/themes/dalailahner-dark.yaml b/themes/dalailahner-dark.yaml index 71c58996..c14fc05c 100644 --- a/themes/dalailahner-dark.yaml +++ b/themes/dalailahner-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 82 black: 0 diff --git a/themes/dalton.yaml b/themes/dalton.yaml index b72015ef..d234177f 100644 --- a/themes/dalton.yaml +++ b/themes/dalton.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 303 + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/dan-light-work.yaml b/themes/dan-light-work.yaml index a060feed..2b9f60bd 100644 --- a/themes/dan-light-work.yaml +++ b/themes/dan-light-work.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 197 + pair: null contrast: fg: 86.4 black: 19.8 diff --git a/themes/dan-react-theme.yaml b/themes/dan-react-theme.yaml index 6d37b76c..6c064ac5 100644 --- a/themes/dan-react-theme.yaml +++ b/themes/dan-react-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 249 + pair: null contrast: fg: 71.5 black: 26.6 diff --git a/themes/dang-jedi.yaml b/themes/dang-jedi.yaml index 3764bd42..834e75f6 100644 --- a/themes/dang-jedi.yaml +++ b/themes/dang-jedi.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 43.7 black: 0 diff --git a/themes/dangergray-v2.yaml b/themes/dangergray-v2.yaml index c43aa2be..16f8f4fc 100644 --- a/themes/dangergray-v2.yaml +++ b/themes/dangergray-v2.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 100.6 black: 0 diff --git a/themes/dango-theme.yaml b/themes/dango-theme.yaml index d3befffb..0e9b3a0f 100644 --- a/themes/dango-theme.yaml +++ b/themes/dango-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/dantes-theme.yaml b/themes/dantes-theme.yaml index 00314cff..0dcb71b0 100644 --- a/themes/dantes-theme.yaml +++ b/themes/dantes-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: null contrast: fg: 102.3 black: 0 diff --git a/themes/dantetheme.yaml b/themes/dantetheme.yaml index 55cf08d5..dd920bb3 100644 --- a/themes/dantetheme.yaml +++ b/themes/dantetheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 115 + pair: null contrast: fg: 99 black: 106.7 diff --git a/themes/darcula-contrast-min.yaml b/themes/darcula-contrast-min.yaml index e5902e22..16b0a045 100644 --- a/themes/darcula-contrast-min.yaml +++ b/themes/darcula-contrast-min.yaml @@ -2,7 +2,7 @@ name: "Darcula Contrast Min" source: marketplace_id: "nashpatty.darculacontrast" version: "1.3.1" - installs: 1838 + installs: 1842 author: "nashpatty" repo: "https://github.com/nashpatty/vscode-darcula" url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.darculacontrast" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 65.5 black: 0 diff --git a/themes/darcula-contrast.yaml b/themes/darcula-contrast.yaml index 732ed4a0..13ecc5aa 100644 --- a/themes/darcula-contrast.yaml +++ b/themes/darcula-contrast.yaml @@ -2,7 +2,7 @@ name: "Darcula Contrast" source: marketplace_id: "nashpatty.darculacontrast" version: "1.3.1" - installs: 1838 + installs: 1842 author: "nashpatty" repo: "https://github.com/nashpatty/vscode-darcula" url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.darculacontrast" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 60.5 black: 0 diff --git a/themes/darcula-dark-theme.yaml b/themes/darcula-dark-theme.yaml index 776f97d5..1501beed 100644 --- a/themes/darcula-dark-theme.yaml +++ b/themes/darcula-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Darcula Dark Theme" source: marketplace_id: "CyrilLeblanc.amoled-darcula" version: "1.0.1" - installs: 3271 + installs: 3275 author: "CyrilLeblanc" repo: "https://github.com/CyrilLeblanc/vscode-amoled-darcula-theme" url: "https://marketplace.visualstudio.com/items?itemName=CyrilLeblanc.amoled-darcula" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 47.2 black: 0 diff --git a/themes/darcula-solid-color-theme.yaml b/themes/darcula-solid-color-theme.yaml index 5aca93e4..c79c24f8 100644 --- a/themes/darcula-solid-color-theme.yaml +++ b/themes/darcula-solid-color-theme.yaml @@ -2,7 +2,7 @@ name: "darcula-solid-color-theme" source: marketplace_id: "jussiemion.darcula-solid" version: "1.2.1" - installs: 3515 + installs: 3516 author: "jussiemion" repo: "https://github.com/jussiemion/darcula-solid" url: "https://marketplace.visualstudio.com/items?itemName=jussiemion.darcula-solid" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 74.6 black: 0 diff --git a/themes/darcula-void.yaml b/themes/darcula-void.yaml index 821fdc6c..bb4b4017 100644 --- a/themes/darcula-void.yaml +++ b/themes/darcula-void.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 68 black: 0 diff --git a/themes/darcula.yaml b/themes/darcula.yaml index 8c48d34d..d886212c 100644 --- a/themes/darcula.yaml +++ b/themes/darcula.yaml @@ -1,11 +1,11 @@ name: "Darcula" source: - marketplace_id: "sldobri.bunker" - version: "1.1.6" - installs: 377837 - author: "dobbbri" - repo: "https://github.com/sldobri/bunker" - url: "https://marketplace.visualstudio.com/items?itemName=sldobri.bunker" + marketplace_id: "ItsSunnyMonster.sm-bunker" + version: "1.1.7" + installs: 1773 + author: "ItsSunnyMonster" + repo: "https://github.com/ItsSunnyMonster/dobri-next-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ItsSunnyMonster.sm-bunker" colors: bg: "#0B1015" fg: "#F5F5F5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 249 + pair: null contrast: fg: 100.9 black: 0 diff --git a/themes/darculacode.yaml b/themes/darculacode.yaml index 82ed7432..2811f5e4 100644 --- a/themes/darculacode.yaml +++ b/themes/darculacode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 58.5 black: 103.8 diff --git a/themes/dare-contrast.yaml b/themes/dare-contrast.yaml index c77758f2..feff39c4 100644 --- a/themes/dare-contrast.yaml +++ b/themes/dare-contrast.yaml @@ -1,11 +1,11 @@ name: "dare-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#17191C" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/dare-light.yaml b/themes/dare-light.yaml index 39ad1a7b..826fb4dc 100644 --- a/themes/dare-light.yaml +++ b/themes/dare-light.yaml @@ -1,11 +1,11 @@ name: "dare-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#6E7A87" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 70.4 black: 0 diff --git a/themes/dare.yaml b/themes/dare.yaml index 64a723b4..92e33229 100644 --- a/themes/dare.yaml +++ b/themes/dare.yaml @@ -1,11 +1,11 @@ name: "dare" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#32373D" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 253 + pair: null contrast: fg: 68 black: 0 diff --git a/themes/dark-abyss.yaml b/themes/dark-abyss.yaml index 98cabbee..413c9cd0 100644 --- a/themes/dark-abyss.yaml +++ b/themes/dark-abyss.yaml @@ -2,7 +2,7 @@ name: "Dark Abyss" source: marketplace_id: "MatongoMulindi.abyss" version: "0.1.2" - installs: 10344 + installs: 10346 author: "Matongo Mulindi" repo: "https://github.com/mmatongo/vscode-abyss" url: "https://marketplace.visualstudio.com/items?itemName=MatongoMulindi.abyss" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 95.9 black: 0 diff --git a/themes/dark-amethyst.yaml b/themes/dark-amethyst.yaml index 36ce10ff..6629478f 100644 --- a/themes/dark-amethyst.yaml +++ b/themes/dark-amethyst.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 310 + pair: null contrast: fg: 84.6 black: 0 diff --git a/themes/dark-army.yaml b/themes/dark-army.yaml index 07bb0295..23220182 100644 --- a/themes/dark-army.yaml +++ b/themes/dark-army.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.1 black: 0 diff --git a/themes/dark-aura.yaml b/themes/dark-aura.yaml index 5d1bf519..2cc1ff45 100644 --- a/themes/dark-aura.yaml +++ b/themes/dark-aura.yaml @@ -2,7 +2,7 @@ name: "Dark Aura" source: marketplace_id: "Furqan.dark-aura-theme" version: "1.0.0" - installs: 847 + installs: 850 author: "Furqan" repo: "https://github.com/furqanistic/darkaura" url: "https://marketplace.visualstudio.com/items?itemName=Furqan.dark-aura-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 285 + pair: null contrast: fg: 93.1 black: 0 diff --git a/themes/dark-black-developer.yaml b/themes/dark-black-developer.yaml index 4ee7ba23..4b91630c 100644 --- a/themes/dark-black-developer.yaml +++ b/themes/dark-black-developer.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 288 + pair: null contrast: fg: 80.3 black: 34.4 diff --git a/themes/dark-blue-theme.yaml b/themes/dark-blue-theme.yaml index 453ab4d3..5884f602 100644 --- a/themes/dark-blue-theme.yaml +++ b/themes/dark-blue-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 241 + pair: null contrast: fg: 103.3 black: 0 diff --git a/themes/dark-bqueiroz.yaml b/themes/dark-bqueiroz.yaml index 1c92badc..426a7dc5 100644 --- a/themes/dark-bqueiroz.yaml +++ b/themes/dark-bqueiroz.yaml @@ -2,7 +2,7 @@ name: "dark-bqueiroz" source: marketplace_id: "dark-bqueiroz.dark-bqueiroz" version: "0.0.11" - installs: 2402 + installs: 2406 author: "dark-bqueiroz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dark-bqueiroz.dark-bqueiroz" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 303 + pair: null contrast: fg: 94.2 black: 0 diff --git a/themes/dark-brown-theme.yaml b/themes/dark-brown-theme.yaml index 58d1d76d..61501feb 100644 --- a/themes/dark-brown-theme.yaml +++ b/themes/dark-brown-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 59 + pair: null contrast: fg: 104.1 black: 0 diff --git a/themes/dark-brown.yaml b/themes/dark-brown.yaml index 706d8292..d626cbf9 100644 --- a/themes/dark-brown.yaml +++ b/themes/dark-brown.yaml @@ -2,7 +2,7 @@ name: "Dark Brown" source: marketplace_id: "blono.dark-brown" version: "0.0.1" - installs: 4045 + installs: 4047 author: "blono" repo: "https://github.com/blono/vscode-theme-dark-brown" url: "https://marketplace.visualstudio.com/items?itemName=blono.dark-brown" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 83.9 black: 0 diff --git a/themes/dark-chai.yaml b/themes/dark-chai.yaml deleted file mode 100644 index 774583f7..00000000 --- a/themes/dark-chai.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Dark Chai" -source: - marketplace_id: "hiteshchoudharycode.chai-theme" - version: "0.2.0" - installs: 167423 - author: "hitesh choudhary" - repo: "https://github.com/hiteshchoudhary/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=hiteshchoudharycode.chai-theme" -colors: - bg: "#010107" - fg: "#BECFDA" - black: "#28353E" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#AEC3D0" - brightBlack: "#475E6C" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#BECFDA" -meta: - mode: "dark" - accent: "orange" - hue: 278 - contrast: - fg: 75.9 - black: 0 - red: 41.5 - green: 78 - yellow: 68 - blue: 53 - magenta: 46.6 - cyan: 71.5 - white: 68.5 - brightBlack: 18.5 - brightRed: 46.8 - brightGreen: 80.2 - brightYellow: 54.9 - brightBlue: 58.3 - brightMagenta: 59 - brightCyan: 74.9 - brightWhite: 75.9 diff --git a/themes/dark-clean.yaml b/themes/dark-clean.yaml index 73580865..1862a5a2 100644 --- a/themes/dark-clean.yaml +++ b/themes/dark-clean.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/dark-code-fork.yaml b/themes/dark-code-fork.yaml index 4ecdfbe7..0aa99f6e 100644 --- a/themes/dark-code-fork.yaml +++ b/themes/dark-code-fork.yaml @@ -2,7 +2,7 @@ name: "Dark Code - Fork" source: marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" version: "9.0.1" - installs: 29903 + installs: 29917 author: "Hasibur R" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 45 black: 18.1 diff --git a/themes/dark-codely-theme.yaml b/themes/dark-codely-theme.yaml index 59e0527e..88bb7f56 100644 --- a/themes/dark-codely-theme.yaml +++ b/themes/dark-codely-theme.yaml @@ -1,11 +1,11 @@ name: "dark.codely-theme" source: - marketplace_id: "codely.dark-codely-theme" + marketplace_id: "codely.codely-theme" version: "0.0.1" - installs: 39 + installs: 23888 author: "Codely" repo: "https://github.com/CodelyTV/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=codely.dark-codely-theme" + url: "https://marketplace.visualstudio.com/items?itemName=codely.codely-theme" colors: bg: "#1E1E1E" fg: "#EBDBB2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/dark-coffee.yaml b/themes/dark-coffee.yaml index 01bf6e44..82a619d9 100644 --- a/themes/dark-coffee.yaml +++ b/themes/dark-coffee.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/dark-color-theme.yaml b/themes/dark-color-theme.yaml deleted file mode 100644 index aa0fffd2..00000000 --- a/themes/dark-color-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "dark-color-theme" -source: - marketplace_id: "wavebeem.theme-unoduetre" - version: "5.11.1" - installs: 4290 - author: "Sage Fennel" - repo: "https://github.com/wavebeem/vscode-theme-unoduetre" - url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" -colors: - bg: "#333333" - fg: "#E6E6E6" - black: "#333333" - red: "#ED817D" - green: "#88E29B" - yellow: "#EEC7A0" - blue: "#AFA0EE" - magenta: "#EFA3E2" - cyan: "#86E9E7" - white: "#F0F0F0" - brightBlack: "#333333" - brightRed: "#ED817D" - brightGreen: "#88E29B" - brightYellow: "#EEC7A0" - brightBlue: "#AFA0EE" - brightMagenta: "#EFA3E2" - brightCyan: "#86E9E7" - brightWhite: "#F0F0F0" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 85.8 - black: 0 - red: 45.4 - green: 71.4 - yellow: 70.9 - blue: 50.7 - magenta: 60.4 - cyan: 77.6 - white: 92.2 - brightBlack: 0 - brightRed: 45.4 - brightGreen: 71.4 - brightYellow: 70.9 - brightBlue: 50.7 - brightMagenta: 60.4 - brightCyan: 77.6 - brightWhite: 92.2 diff --git a/themes/dark-cool-theme.yaml b/themes/dark-cool-theme.yaml index 370a29dd..eeb1ec95 100644 --- a/themes/dark-cool-theme.yaml +++ b/themes/dark-cool-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 61.7 black: 0 diff --git a/themes/dark-decay.yaml b/themes/dark-decay.yaml index 5176778a..df426d15 100644 --- a/themes/dark-decay.yaml +++ b/themes/dark-decay.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 254 + pair: "Light Decay" contrast: fg: 66.3 black: 7.7 diff --git a/themes/dark-discord-vscode.yaml b/themes/dark-discord-vscode.yaml index 3f4a0dfb..1049f3cc 100644 --- a/themes/dark-discord-vscode.yaml +++ b/themes/dark-discord-vscode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 62.2 black: 36.9 diff --git a/themes/dark-dust-pro.yaml b/themes/dark-dust-pro.yaml index 1460acc1..1d9ae6ae 100644 --- a/themes/dark-dust-pro.yaml +++ b/themes/dark-dust-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/dark-edit.yaml b/themes/dark-edit.yaml index 81786971..95da2ed9 100644 --- a/themes/dark-edit.yaml +++ b/themes/dark-edit.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80 black: 0 diff --git a/themes/dark-flow.yaml b/themes/dark-flow.yaml index c42267c4..9bdf7b79 100644 --- a/themes/dark-flow.yaml +++ b/themes/dark-flow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 268 + pair: null contrast: fg: 75.4 black: 0 diff --git a/themes/dark-frost-midnight.yaml b/themes/dark-frost-midnight.yaml index bc0753e4..f44e4466 100644 --- a/themes/dark-frost-midnight.yaml +++ b/themes/dark-frost-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 82.9 black: 24.3 diff --git a/themes/dark-frost.yaml b/themes/dark-frost.yaml index 6e011a85..91493fde 100644 --- a/themes/dark-frost.yaml +++ b/themes/dark-frost.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 261 + pair: null contrast: fg: 69.1 black: 24.2 diff --git a/themes/dark-fury.yaml b/themes/dark-fury.yaml index 34e4fb18..92fd7c01 100644 --- a/themes/dark-fury.yaml +++ b/themes/dark-fury.yaml @@ -2,7 +2,7 @@ name: "Dark Fury" source: marketplace_id: "alive-ninja.dark-fury-theme" version: "1.0.13" - installs: 152 + installs: 153 author: "alive ninja" repo: null url: "https://marketplace.visualstudio.com/items?itemName=alive-ninja.dark-fury-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 23 black: 0 diff --git a/themes/dark-future-cyberpunk-2077.yaml b/themes/dark-future-cyberpunk-2077.yaml index b2e3ddf8..c4e919f7 100644 --- a/themes/dark-future-cyberpunk-2077.yaml +++ b/themes/dark-future-cyberpunk-2077.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 276 + pair: null contrast: fg: 66.5 black: 66.5 diff --git a/themes/dark-green-energy.yaml b/themes/dark-green-energy.yaml index e28cd8b3..85674b7f 100644 --- a/themes/dark-green-energy.yaml +++ b/themes/dark-green-energy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 54.8 black: 0 diff --git a/themes/dark-green-jungle.yaml b/themes/dark-green-jungle.yaml index ccdd2eae..25c963f2 100644 --- a/themes/dark-green-jungle.yaml +++ b/themes/dark-green-jungle.yaml @@ -1,11 +1,11 @@ name: "Dark Green Jungle" source: - marketplace_id: "moondevaa.DarkGreenJungle" - version: "0.4.3" - installs: 29594 - author: "moondevaa" - repo: "https://github.com/AaBbdev29/Dark-Green-Jungle" - url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.DarkGreenJungle" + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1840 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" colors: bg: "#18211E" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 173 + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/dark-green-minimalist-theme.yaml b/themes/dark-green-minimalist-theme.yaml index f2bf03b4..3269159e 100644 --- a/themes/dark-green-minimalist-theme.yaml +++ b/themes/dark-green-minimalist-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 48.6 black: 0 diff --git a/themes/dark-green.yaml b/themes/dark-green.yaml index 6f592977..c2f8f31b 100644 --- a/themes/dark-green.yaml +++ b/themes/dark-green.yaml @@ -1,11 +1,11 @@ name: "Dark-Green" source: - marketplace_id: "bakrimoharram.shades-of-green" - version: "0.0.1" - installs: 2132 + marketplace_id: "bakrimoharram.dark-green" + version: "0.0.2" + installs: 1855 author: "bakrimoharram" - repo: "https://github.com/bakrimoharram/shades-of-green" - url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.shades-of-green" + repo: "https://github.com/bakrimoharram/dark-green" + url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.dark-green" colors: bg: "#0E2810" fg: "#BC7B7B" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 145 + pair: null contrast: fg: 38.2 black: 0 diff --git a/themes/dark-grey-theme.yaml b/themes/dark-grey-theme.yaml index e7000469..7920961e 100644 --- a/themes/dark-grey-theme.yaml +++ b/themes/dark-grey-theme.yaml @@ -2,7 +2,7 @@ name: "Dark Grey Theme" source: marketplace_id: "DarkMannn.dark-grey-theme" version: "0.0.1" - installs: 816 + installs: 817 author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-grey-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-grey-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 34.8 black: 0 diff --git a/themes/dark-ink-and-red-accents.yaml b/themes/dark-ink-and-red-accents.yaml index e5e32a74..b96cbacd 100644 --- a/themes/dark-ink-and-red-accents.yaml +++ b/themes/dark-ink-and-red-accents.yaml @@ -2,7 +2,7 @@ name: "Dark Ink And Red Accents" source: marketplace_id: "DarkMannn.dark-ink-theme" version: "0.0.9" - installs: 412 + installs: 413 author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" diff --git a/themes/dark-ink-brighter.yaml b/themes/dark-ink-brighter.yaml index c120e0d3..aca621d8 100644 --- a/themes/dark-ink-brighter.yaml +++ b/themes/dark-ink-brighter.yaml @@ -2,7 +2,7 @@ name: "Dark Ink Brighter" source: marketplace_id: "DarkMannn.dark-ink-theme" version: "0.0.9" - installs: 412 + installs: 413 author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" diff --git a/themes/dark-ink-brightest.yaml b/themes/dark-ink-brightest.yaml index a8416a2b..1b7f9543 100644 --- a/themes/dark-ink-brightest.yaml +++ b/themes/dark-ink-brightest.yaml @@ -2,7 +2,7 @@ name: "Dark Ink Brightest" source: marketplace_id: "DarkMannn.dark-ink-theme" version: "0.0.9" - installs: 412 + installs: 413 author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" diff --git a/themes/dark-ink-lighter.yaml b/themes/dark-ink-lighter.yaml index a8d8a14d..b761d344 100644 --- a/themes/dark-ink-lighter.yaml +++ b/themes/dark-ink-lighter.yaml @@ -2,7 +2,7 @@ name: "Dark Ink Lighter" source: marketplace_id: "DarkMannn.dark-ink-theme" version: "0.0.9" - installs: 412 + installs: 413 author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" diff --git a/themes/dark-ink.yaml b/themes/dark-ink.yaml index 5bd69084..74a1e295 100644 --- a/themes/dark-ink.yaml +++ b/themes/dark-ink.yaml @@ -2,7 +2,7 @@ name: "Dark Ink" source: marketplace_id: "DarkMannn.dark-ink-theme" version: "0.0.9" - installs: 412 + installs: 413 author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" diff --git a/themes/dark-jade.yaml b/themes/dark-jade.yaml index 43d9eda7..906289db 100644 --- a/themes/dark-jade.yaml +++ b/themes/dark-jade.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Light Jade" contrast: fg: 54.6 black: 0 diff --git a/themes/dark-lavender-black.yaml b/themes/dark-lavender-black.yaml index a02629e2..e443b4e1 100644 --- a/themes/dark-lavender-black.yaml +++ b/themes/dark-lavender-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 276 + pair: null contrast: fg: 82 black: 0 diff --git a/themes/dark-lavender-soft.yaml b/themes/dark-lavender-soft.yaml index e20cf57a..3eea5929 100644 --- a/themes/dark-lavender-soft.yaml +++ b/themes/dark-lavender-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 81.1 black: 0 diff --git a/themes/dark-lavender-tailwind-soft.yaml b/themes/dark-lavender-tailwind-soft.yaml index aa33d12d..ca6184a8 100644 --- a/themes/dark-lavender-tailwind-soft.yaml +++ b/themes/dark-lavender-tailwind-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 100.1 black: 0 diff --git a/themes/dark-lavender-tailwind.yaml b/themes/dark-lavender-tailwind.yaml index 02b883c5..ba09273e 100644 --- a/themes/dark-lavender-tailwind.yaml +++ b/themes/dark-lavender-tailwind.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 100.8 black: 0 diff --git a/themes/dark-lavender.yaml b/themes/dark-lavender.yaml index 2f1bce55..bed365b2 100644 --- a/themes/dark-lavender.yaml +++ b/themes/dark-lavender.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 268 + pair: null contrast: fg: 81.9 black: 0 diff --git a/themes/dark-legibility.yaml b/themes/dark-legibility.yaml index cf04131b..304730d9 100644 --- a/themes/dark-legibility.yaml +++ b/themes/dark-legibility.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 288 + pair: null contrast: fg: 84.3 black: 0 diff --git a/themes/dark-leocode-theme.yaml b/themes/dark-leocode-theme.yaml index a39e468f..f7109d05 100644 --- a/themes/dark-leocode-theme.yaml +++ b/themes/dark-leocode-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 62.4 black: 0 diff --git a/themes/dark-lime-flat.yaml b/themes/dark-lime-flat.yaml index 03270872..d565379f 100644 --- a/themes/dark-lime-flat.yaml +++ b/themes/dark-lime-flat.yaml @@ -1,11 +1,11 @@ name: "Dark Lime Flat" source: - marketplace_id: "Ayrz.vscode-theme-ayrz-arcticfox" - version: "1.0.2" - installs: 212 - author: "Ayrz" - repo: "https://github.com/ayrzDev/ArcticFox-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ayrz.vscode-theme-ayrz-arcticfox" + marketplace_id: "jannisberndt.dark-orange" + version: "0.4.0" + installs: 21524 + author: "Jannis Berndt" + repo: "https://github.com/jb3rndt/dark-orange" + url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" colors: bg: "#202226" fg: "#E1E4E8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.8 black: 7.4 diff --git a/themes/dark-magic-dracula.yaml b/themes/dark-magic-dracula.yaml index 63fc1c11..67b543d6 100644 --- a/themes/dark-magic-dracula.yaml +++ b/themes/dark-magic-dracula.yaml @@ -1,11 +1,11 @@ name: "Dark Magic Dracula" source: - marketplace_id: "DavidMorais.dark-magic-themes" - version: "0.3.1" - installs: 47308 - author: "David Morais" - repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" - url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" + marketplace_id: "AbdoGhonim.ghonim-dark-themes" + version: "0.0.2" + installs: 138 + author: "Abdo Ghonim" + repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" colors: bg: "#282A36" fg: "#CCE3F5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 83.8 black: 0 diff --git a/themes/dark-magic-frankenstein.yaml b/themes/dark-magic-frankenstein.yaml index a3997746..1f203af9 100644 --- a/themes/dark-magic-frankenstein.yaml +++ b/themes/dark-magic-frankenstein.yaml @@ -1,11 +1,11 @@ name: "Dark Magic Frankenstein" source: - marketplace_id: "DavidMorais.dark-magic-themes" - version: "0.3.1" - installs: 47308 - author: "David Morais" - repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" - url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" + marketplace_id: "AbdoGhonim.ghonim-dark-themes" + version: "0.0.2" + installs: 138 + author: "Abdo Ghonim" + repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" colors: bg: "#0F1715" fg: "#B6E8CF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 178 + pair: null contrast: fg: 85.1 black: 0 diff --git a/themes/dark-magic-light.yaml b/themes/dark-magic-light.yaml index 4f9856f9..2af44fdb 100644 --- a/themes/dark-magic-light.yaml +++ b/themes/dark-magic-light.yaml @@ -2,7 +2,7 @@ name: "Dark Magic - Light" source: marketplace_id: "DavidMorais.dark-magic-themes" version: "0.3.1" - installs: 47308 + installs: 47330 author: "David Morais" repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: 286 + pair: "Dark Magic Night" contrast: fg: 82.4 black: 93.9 diff --git a/themes/dark-magic-night.yaml b/themes/dark-magic-night.yaml index 02933ae8..225b3d45 100644 --- a/themes/dark-magic-night.yaml +++ b/themes/dark-magic-night.yaml @@ -1,11 +1,11 @@ name: "Dark Magic Night" source: - marketplace_id: "DavidMorais.dark-magic-themes" - version: "0.3.1" - installs: 47308 - author: "David Morais" - repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" - url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" + marketplace_id: "AbdoGhonim.ghonim-dark-themes" + version: "0.0.2" + installs: 138 + author: "Abdo Ghonim" + repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" colors: bg: "#111111" fg: "#CCCCCC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Dark Magic - Light" contrast: fg: 75.2 black: 0 diff --git a/themes/dark-magic-nord.yaml b/themes/dark-magic-nord.yaml index 573538df..02a57fd9 100644 --- a/themes/dark-magic-nord.yaml +++ b/themes/dark-magic-nord.yaml @@ -1,11 +1,11 @@ name: "Dark Magic Nord" source: - marketplace_id: "DavidMorais.dark-magic-themes" - version: "0.3.1" - installs: 47308 - author: "David Morais" - repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" - url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" + marketplace_id: "AbdoGhonim.ghonim-dark-themes" + version: "0.0.2" + installs: 138 + author: "Abdo Ghonim" + repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" colors: bg: "#2E3440" fg: "#D8DEE9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/dark-magic-tokyo.yaml b/themes/dark-magic-tokyo.yaml index 3bffe650..a1356e4d 100644 --- a/themes/dark-magic-tokyo.yaml +++ b/themes/dark-magic-tokyo.yaml @@ -1,11 +1,11 @@ name: "Dark Magic Tokyo" source: - marketplace_id: "DavidMorais.dark-magic-themes" - version: "0.3.1" - installs: 47308 - author: "David Morais" - repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" - url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" + marketplace_id: "AbdoGhonim.ghonim-dark-themes" + version: "0.0.2" + installs: 138 + author: "Abdo Ghonim" + repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" colors: bg: "#16161E" fg: "#787C99" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 32.6 black: 0 diff --git a/themes/dark-magic.yaml b/themes/dark-magic.yaml index ae0eda87..d1f78912 100644 --- a/themes/dark-magic.yaml +++ b/themes/dark-magic.yaml @@ -1,11 +1,11 @@ name: "Dark Magic" source: - marketplace_id: "DavidMorais.dark-magic-themes" - version: "0.3.1" - installs: 47308 - author: "David Morais" - repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" - url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" + marketplace_id: "AbdoGhonim.ghonim-dark-themes" + version: "0.0.2" + installs: 138 + author: "Abdo Ghonim" + repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" + url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" colors: bg: "#0F0F17" fg: "#BBCCEE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 74.9 black: 0 diff --git a/themes/dark-matter-code-neptune-medium.yaml b/themes/dark-matter-code-neptune-medium.yaml index 121e3dcd..480bfcd4 100644 --- a/themes/dark-matter-code-neptune-medium.yaml +++ b/themes/dark-matter-code-neptune-medium.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/dark-minimal-lime-theme.yaml b/themes/dark-minimal-lime-theme.yaml index cc6c3c7b..2a541fe8 100644 --- a/themes/dark-minimal-lime-theme.yaml +++ b/themes/dark-minimal-lime-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 60.3 black: 0 diff --git a/themes/dark-minimal-theme-sm.yaml b/themes/dark-minimal-theme-sm.yaml index 660f6aa0..41aab25d 100644 --- a/themes/dark-minimal-theme-sm.yaml +++ b/themes/dark-minimal-theme-sm.yaml @@ -2,7 +2,7 @@ name: "Dark Minimal Theme(SM)" source: marketplace_id: "SIRILMP.dark-theme-sm" version: "3.11.3" - installs: 21064 + installs: 21087 author: "SIRIL M P" repo: "https://github.com/sirilmp/dark-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/dark-mode-vs.yaml b/themes/dark-mode-vs.yaml index 88df60bb..550fd4f2 100644 --- a/themes/dark-mode-vs.yaml +++ b/themes/dark-mode-vs.yaml @@ -2,7 +2,7 @@ name: "Dark Mode VS" source: marketplace_id: "DarkModeVS.dark-mode-vs" version: "1.3.0" - installs: 2689 + installs: 2690 author: "Dark Mode VS" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DarkModeVS.dark-mode-vs" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/dark-mode.yaml b/themes/dark-mode.yaml index 5455228c..1712e6ac 100644 --- a/themes/dark-mode.yaml +++ b/themes/dark-mode.yaml @@ -2,7 +2,7 @@ name: "Dark Mode" source: marketplace_id: "philsinatra.macos-dark-mode-theme" version: "1.1.3" - installs: 60747 + installs: 60756 author: "Phil Sinatra" repo: "https://github.com/philsinatra/macos-dark-mode-theme" url: "https://marketplace.visualstudio.com/items?itemName=philsinatra.macos-dark-mode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 106 black: 0 diff --git a/themes/dark-modern-one-without-italics.yaml b/themes/dark-modern-one-without-italics.yaml index 9eb9427e..28dcbfbe 100644 --- a/themes/dark-modern-one-without-italics.yaml +++ b/themes/dark-modern-one-without-italics.yaml @@ -2,7 +2,7 @@ name: "Dark Modern One without italics" source: marketplace_id: "nicolaerario.dark-modern-one" version: "0.3.1" - installs: 3338 + installs: 3342 author: "Nicola Erario" repo: "https://github.com/nicolaerario/dark-modern-one" url: "https://marketplace.visualstudio.com/items?itemName=nicolaerario.dark-modern-one" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 258 + pair: null contrast: fg: 73.6 black: 7.8 diff --git a/themes/dark-molokai.yaml b/themes/dark-molokai.yaml index d32087a8..93eaec9d 100644 --- a/themes/dark-molokai.yaml +++ b/themes/dark-molokai.yaml @@ -2,7 +2,7 @@ name: "Dark (molokai)" source: marketplace_id: "nonylene.dark-molokai-theme" version: "1.0.10" - installs: 33282 + installs: 33285 author: "nonylene" repo: "https://github.com/nonylene/vscode-dark-molokai-theme" url: "https://marketplace.visualstudio.com/items?itemName=nonylene.dark-molokai-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.3 black: 0 diff --git a/themes/dark-mono.yaml b/themes/dark-mono.yaml index 6692a7f8..f8c77cb9 100644 --- a/themes/dark-mono.yaml +++ b/themes/dark-mono.yaml @@ -2,7 +2,7 @@ name: "Dark Mono" source: marketplace_id: "leonardoleal202.dark-mono" version: "1.1.0" - installs: 6602 + installs: 6606 author: "leonardoleal202" repo: null url: "https://marketplace.visualstudio.com/items?itemName=leonardoleal202.dark-mono" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77.4 black: 55 diff --git a/themes/dark-mute.yaml b/themes/dark-mute.yaml index 6789738e..5a086085 100644 --- a/themes/dark-mute.yaml +++ b/themes/dark-mute.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 61.2 black: 0 diff --git a/themes/dark-nebula.yaml b/themes/dark-nebula.yaml index c61f4991..45849dc2 100644 --- a/themes/dark-nebula.yaml +++ b/themes/dark-nebula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72.7 black: 0 diff --git a/themes/dark-neon-theme-sm.yaml b/themes/dark-neon-theme-sm.yaml index 77ee4254..16c4c509 100644 --- a/themes/dark-neon-theme-sm.yaml +++ b/themes/dark-neon-theme-sm.yaml @@ -2,7 +2,7 @@ name: "Dark Neon Theme(SM)" source: marketplace_id: "SIRILMP.dark-theme-sm" version: "3.11.3" - installs: 21064 + installs: 21087 author: "SIRIL M P" repo: "https://github.com/sirilmp/dark-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 249 + pair: null contrast: fg: 84.6 black: 0 diff --git a/themes/dark-night-pro.yaml b/themes/dark-night-pro.yaml index 9b1e5467..e908e23d 100644 --- a/themes/dark-night-pro.yaml +++ b/themes/dark-night-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 106.6 black: 0 diff --git a/themes/dark-night.yaml b/themes/dark-night.yaml index fcf06248..fb7621d9 100644 --- a/themes/dark-night.yaml +++ b/themes/dark-night.yaml @@ -2,7 +2,7 @@ name: "Dark Night" source: marketplace_id: "SumitSaha.learn-with-sumit-theme" version: "12.1.0" - installs: 157486 + installs: 157511 author: "Learn with Sumit" repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 62.5 black: 0 diff --git a/themes/dark-ocean-sands.yaml b/themes/dark-ocean-sands.yaml index 7a929500..9028dcf9 100644 --- a/themes/dark-ocean-sands.yaml +++ b/themes/dark-ocean-sands.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 59.8 black: 9.2 diff --git a/themes/dark-ocean.yaml b/themes/dark-ocean.yaml index 9e3086bc..12e45229 100644 --- a/themes/dark-ocean.yaml +++ b/themes/dark-ocean.yaml @@ -2,7 +2,7 @@ name: "Dark Ocean" source: marketplace_id: "patricklopes33.theme-dark-ocean" version: "1.0.7" - installs: 4533 + installs: 4534 author: "patricklopes33" repo: "https://github.com/patlopes/vscode-dark-ocean" url: "https://marketplace.visualstudio.com/items?itemName=patricklopes33.theme-dark-ocean" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 296 + pair: null contrast: fg: 88.4 black: 0 diff --git a/themes/dark-ohnagi-2020.yaml b/themes/dark-ohnagi-2020.yaml index 83b6b927..a401b6e1 100644 --- a/themes/dark-ohnagi-2020.yaml +++ b/themes/dark-ohnagi-2020.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 266 + pair: null contrast: fg: 60.2 black: 0 diff --git a/themes/dark-orange.yaml b/themes/dark-orange.yaml deleted file mode 100644 index 574509aa..00000000 --- a/themes/dark-orange.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Dark Orange" -source: - marketplace_id: "Ayrz.vscode-theme-ayrz-arcticfox" - version: "1.0.2" - installs: 212 - author: "Ayrz" - repo: "https://github.com/ayrzDev/ArcticFox-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ayrz.vscode-theme-ayrz-arcticfox" -colors: - bg: "#24292E" - fg: "#E1E4E8" - black: "#3F4451" - red: "#E05561" - green: "#98C379" - yellow: "#F69D50" - blue: "#4AA5F0" - magenta: "#C792EA" - cyan: "#82AAFF" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "pink" - hue: 248 - contrast: - fg: 86.7 - black: 0 - red: 34.2 - green: 59.8 - yellow: 57.2 - blue: 47.1 - magenta: 51.2 - cyan: 53.4 - white: 88.1 - brightBlack: 12.9 - brightRed: 43.6 - brightGreen: 74.3 - brightYellow: 58.7 - brightBlue: 61.2 - brightMagenta: 47.7 - brightCyan: 65.3 - brightWhite: 80.5 diff --git a/themes/dark-owl-darker.yaml b/themes/dark-owl-darker.yaml index ce70a89a..8571b84f 100644 --- a/themes/dark-owl-darker.yaml +++ b/themes/dark-owl-darker.yaml @@ -2,7 +2,7 @@ name: "Dark Owl Darker" source: marketplace_id: "hmseeb.dark-owl" version: "2.2.6" - installs: 4451 + installs: 4452 author: "hmseeb" repo: "https://github.com/hmseeb/dark-owl" url: "https://marketplace.visualstudio.com/items?itemName=hmseeb.dark-owl" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 244 + pair: null contrast: fg: 79 black: 0 diff --git a/themes/dark-pastel-pink.yaml b/themes/dark-pastel-pink.yaml index ea4523df..cc16b5cb 100644 --- a/themes/dark-pastel-pink.yaml +++ b/themes/dark-pastel-pink.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 85 black: 0 diff --git a/themes/dark-pastel.yaml b/themes/dark-pastel.yaml index c7bbe715..ea2df4b7 100644 --- a/themes/dark-pastel.yaml +++ b/themes/dark-pastel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 55.7 black: 0 diff --git a/themes/dark-petrol-dev.yaml b/themes/dark-petrol-dev.yaml index 24316f49..dda47211 100644 --- a/themes/dark-petrol-dev.yaml +++ b/themes/dark-petrol-dev.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 180 + pair: null contrast: fg: 71.4 black: 0 diff --git a/themes/dark-pie-deep-dark.yaml b/themes/dark-pie-deep-dark.yaml index 94eea883..c7b1cfdd 100644 --- a/themes/dark-pie-deep-dark.yaml +++ b/themes/dark-pie-deep-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 258 + pair: null contrast: fg: 58 black: 0 diff --git a/themes/dark-pink-theme.yaml b/themes/dark-pink-theme.yaml index 2190a322..cc9ecb15 100644 --- a/themes/dark-pink-theme.yaml +++ b/themes/dark-pink-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 6 + pair: null contrast: fg: 76.1 black: 0 diff --git a/themes/dark-plus-chocolate.yaml b/themes/dark-plus-chocolate.yaml index 8c6435ee..c8239549 100644 --- a/themes/dark-plus-chocolate.yaml +++ b/themes/dark-plus-chocolate.yaml @@ -2,7 +2,7 @@ name: "Dark Plus Chocolate" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 18 + pair: null contrast: fg: 79 black: 0 diff --git a/themes/dark-plus-moon-lite.yaml b/themes/dark-plus-moon-lite.yaml index 292ce4b3..659fe04a 100644 --- a/themes/dark-plus-moon-lite.yaml +++ b/themes/dark-plus-moon-lite.yaml @@ -2,7 +2,7 @@ name: "dark Plus moon lite" source: marketplace_id: "moondevaa.darkplusmoonlite" version: "0.8.7" - installs: 15869 + installs: 15882 author: "moondevaa" repo: "https://github.com/AaBbdev29/Darkplusmoonlite" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.darkplusmoonlite" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: null contrast: fg: 64.1 black: 0 diff --git a/themes/dark-plus-oled-dim-100.yaml b/themes/dark-plus-oled-dim-100.yaml index 60329cc7..8f9d810f 100644 --- a/themes/dark-plus-oled-dim-100.yaml +++ b/themes/dark-plus-oled-dim-100.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/dark-plus-oled-dim-75.yaml b/themes/dark-plus-oled-dim-75.yaml index 4efb8a77..08bca1d9 100644 --- a/themes/dark-plus-oled-dim-75.yaml +++ b/themes/dark-plus-oled-dim-75.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 50.3 black: 0 diff --git a/themes/dark-plus-oled-dim-80.yaml b/themes/dark-plus-oled-dim-80.yaml index dfdaaa9f..411e66f2 100644 --- a/themes/dark-plus-oled-dim-80.yaml +++ b/themes/dark-plus-oled-dim-80.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 55.7 black: 0 diff --git a/themes/dark-plus-oled-dim-85.yaml b/themes/dark-plus-oled-dim-85.yaml index 82316ad9..4e6ef7ba 100644 --- a/themes/dark-plus-oled-dim-85.yaml +++ b/themes/dark-plus-oled-dim-85.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 61.8 black: 0 diff --git a/themes/dark-plus-oled-dim-90.yaml b/themes/dark-plus-oled-dim-90.yaml index 18a247d8..cda2fa9c 100644 --- a/themes/dark-plus-oled-dim-90.yaml +++ b/themes/dark-plus-oled-dim-90.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 67.5 black: 0 diff --git a/themes/dark-plus-oled-dim-95.yaml b/themes/dark-plus-oled-dim-95.yaml index 690b25f4..31af74fa 100644 --- a/themes/dark-plus-oled-dim-95.yaml +++ b/themes/dark-plus-oled-dim-95.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 73.9 black: 0 diff --git a/themes/dark-plus-syntax.yaml b/themes/dark-plus-syntax.yaml index 7c670c4e..1c80ca44 100644 --- a/themes/dark-plus-syntax.yaml +++ b/themes/dark-plus-syntax.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/dark-purple-flat.yaml b/themes/dark-purple-flat.yaml index c03e569d..9101a55c 100644 --- a/themes/dark-purple-flat.yaml +++ b/themes/dark-purple-flat.yaml @@ -1,11 +1,11 @@ name: "Dark Purple Flat" source: - marketplace_id: "Ayrz.vscode-theme-ayrz-arcticfox" - version: "1.0.2" - installs: 212 - author: "Ayrz" - repo: "https://github.com/ayrzDev/ArcticFox-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ayrz.vscode-theme-ayrz-arcticfox" + marketplace_id: "jannisberndt.dark-orange" + version: "0.4.0" + installs: 21524 + author: "Jannis Berndt" + repo: "https://github.com/jb3rndt/dark-orange" + url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" colors: bg: "#1C1E26" fg: "#E1E4E8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 88.3 black: 8 diff --git a/themes/dark-purple.yaml b/themes/dark-purple.yaml index 7b6101da..75c7cd82 100644 --- a/themes/dark-purple.yaml +++ b/themes/dark-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 232 + pair: null contrast: fg: 87.4 black: 9.9 diff --git a/themes/dark-rainbow.yaml b/themes/dark-rainbow.yaml index 331f37d1..9a046d8a 100644 --- a/themes/dark-rainbow.yaml +++ b/themes/dark-rainbow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.6 black: 0 diff --git a/themes/dark-rblx-rian.yaml b/themes/dark-rblx-rian.yaml deleted file mode 100644 index c2bb3b65..00000000 --- a/themes/dark-rblx-rian.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "dark-rblx-rian" -source: - marketplace_id: "Rianyj.light-rblx-rian" - version: "0.0.12" - installs: 37 - author: "RianyJ" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Rianyj.light-rblx-rian" -colors: - bg: "#C9C8C8" - fg: "#383A42" - black: "#373A41" - red: "#D52652" - green: "#239749" - yellow: "#DF621B" - blue: "#275FE4" - magenta: "#823EF0" - cyan: "#26608C" - white: "#B9BAC1" - brightBlack: "#676A77" - brightRed: "#FF637F" - brightGreen: "#3CBC66" - brightYellow: "#C5A231" - brightBlue: "#0099E0" - brightMagenta: "#CE32C0" - brightCyan: "#6D92BA" - brightWhite: "#D3D3D3" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 64.5 - black: 64.6 - red: 41 - green: 33 - yellow: 30.8 - blue: 44.9 - magenta: 44.2 - cyan: 51.2 - white: 0 - brightBlack: 45.2 - brightRed: 22.3 - brightGreen: 16.1 - brightYellow: 16.3 - brightBlue: 26.4 - brightMagenta: 37 - brightCyan: 28 - brightWhite: 0 diff --git a/themes/dark-reader-light.yaml b/themes/dark-reader-light.yaml index 996519e3..e0d31918 100644 --- a/themes/dark-reader-light.yaml +++ b/themes/dark-reader-light.yaml @@ -2,7 +2,7 @@ name: "Dark Reader (Light)" source: marketplace_id: "akil-s.dark-reader-light" version: "0.0.4" - installs: 607 + installs: 608 author: "akil-s" repo: "https://github.com/Salah-Akil/darkreader-vscode-light" url: "https://marketplace.visualstudio.com/items?itemName=akil-s.dark-reader-light" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 73.6 black: 78.9 diff --git a/themes/dark-readin-5.yaml b/themes/dark-readin-5.yaml index 799f9652..b1ec74c3 100644 --- a/themes/dark-readin-5.yaml +++ b/themes/dark-readin-5.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/dark-red-theme-vs-code.yaml b/themes/dark-red-theme-vs-code.yaml index af2fa089..132ac602 100644 --- a/themes/dark-red-theme-vs-code.yaml +++ b/themes/dark-red-theme-vs-code.yaml @@ -2,7 +2,7 @@ name: "Dark Red Theme VS-Code" source: marketplace_id: "vscode-dark-red-theme.vscode-dark-red-theme" version: "0.30.0" - installs: 2739 + installs: 2742 author: "Kailash Shaw" repo: "https://github.com/kailash-shaw/vscode-dark-red-theme" url: "https://marketplace.visualstudio.com/items?itemName=vscode-dark-red-theme.vscode-dark-red-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 268 + pair: null contrast: fg: 74.1 black: 0 diff --git a/themes/dark-remix-nord.yaml b/themes/dark-remix-nord.yaml index f46edf22..19c57de4 100644 --- a/themes/dark-remix-nord.yaml +++ b/themes/dark-remix-nord.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/dark-remix-one-dark.yaml b/themes/dark-remix-one-dark.yaml index 7e8d27a0..30521d45 100644 --- a/themes/dark-remix-one-dark.yaml +++ b/themes/dark-remix-one-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/dark-sand-theme.yaml b/themes/dark-sand-theme.yaml index cc8631ff..66b79f33 100644 --- a/themes/dark-sand-theme.yaml +++ b/themes/dark-sand-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 76.3 black: 0 diff --git a/themes/dark-sea-green.yaml b/themes/dark-sea-green.yaml index 351bff05..e253043b 100644 --- a/themes/dark-sea-green.yaml +++ b/themes/dark-sea-green.yaml @@ -2,7 +2,7 @@ name: "Dark Sea Green" source: marketplace_id: "Dadoux.Dadoux" version: "0.0.3" - installs: 2656 + installs: 2684 author: "Dadoux" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Dadoux.Dadoux" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 249 + pair: null contrast: fg: 104.9 black: 0 diff --git a/themes/dark-sky-fork-fork.yaml b/themes/dark-sky-fork-fork.yaml index c74dc53a..a9d8bb2a 100644 --- a/themes/dark-sky-fork-fork.yaml +++ b/themes/dark-sky-fork-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 81.1 black: 0 diff --git a/themes/dark-soft-theme-sm.yaml b/themes/dark-soft-theme-sm.yaml index 69400590..fb1a9c8b 100644 --- a/themes/dark-soft-theme-sm.yaml +++ b/themes/dark-soft-theme-sm.yaml @@ -2,7 +2,7 @@ name: "Dark Soft Theme(SM)" source: marketplace_id: "SIRILMP.dark-theme-sm" version: "3.11.3" - installs: 21064 + installs: 21087 author: "SIRIL M P" repo: "https://github.com/sirilmp/dark-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 68.6 black: 0 diff --git a/themes/dark-solarin-2.yaml b/themes/dark-solarin-2.yaml deleted file mode 100644 index d0af15f2..00000000 --- a/themes/dark-solarin-2.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "dark-solarin-2" -source: - marketplace_id: "kevboutin.dark-solarin-2" - version: "1.0.3" - installs: 32 - author: "Kevin Boutin" - repo: "https://github.com/kevboutin/vscode-theme-dark-solarin-2" - url: "https://marketplace.visualstudio.com/items?itemName=kevboutin.dark-solarin-2" -colors: - bg: "#1E1E1E" - fg: "#CCCCCC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 73.8 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/dark-springbok.yaml b/themes/dark-springbok.yaml index 74f3f345..726a469a 100644 --- a/themes/dark-springbok.yaml +++ b/themes/dark-springbok.yaml @@ -2,7 +2,7 @@ name: "Dark Springbok" source: marketplace_id: "chrp.springbok-theme" version: "0.12.0" - installs: 620 + installs: 621 author: "chrp" repo: "https://github.com/christophehurpeau/springbok-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=chrp.springbok-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Light Springbok" contrast: fg: 87.8 black: 31.4 diff --git a/themes/dark-terminal-pro.yaml b/themes/dark-terminal-pro.yaml index 95905768..7a7061e5 100644 --- a/themes/dark-terminal-pro.yaml +++ b/themes/dark-terminal-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 63.5 black: 0 diff --git a/themes/dark-theme-blue.yaml b/themes/dark-theme-blue.yaml index 455e368d..6c0add35 100644 --- a/themes/dark-theme-blue.yaml +++ b/themes/dark-theme-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/dark-theme-by-sanan.yaml b/themes/dark-theme-by-sanan.yaml index e60bedb9..710e6855 100644 --- a/themes/dark-theme-by-sanan.yaml +++ b/themes/dark-theme-by-sanan.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 93.2 black: 0 diff --git a/themes/dark-theme-default-by-luisfelipe.yaml b/themes/dark-theme-default-by-luisfelipe.yaml index e9425375..f7d0d5a5 100644 --- a/themes/dark-theme-default-by-luisfelipe.yaml +++ b/themes/dark-theme-default-by-luisfelipe.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77.2 black: 0 diff --git a/themes/dark-theme-new.yaml b/themes/dark-theme-new.yaml index dc6f36b6..bb70dbad 100644 --- a/themes/dark-theme-new.yaml +++ b/themes/dark-theme-new.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/dark-theme.yaml b/themes/dark-theme.yaml index 3979ff78..30963e0f 100644 --- a/themes/dark-theme.yaml +++ b/themes/dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Light Theme" contrast: fg: 88.5 black: 0 diff --git a/themes/dark-v3.yaml b/themes/dark-v3.yaml index 66f162ed..09e54d45 100644 --- a/themes/dark-v3.yaml +++ b/themes/dark-v3.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/dark-vibes.yaml b/themes/dark-vibes.yaml index 495e9bad..0cfe0de9 100644 --- a/themes/dark-vibes.yaml +++ b/themes/dark-vibes.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 267 + pair: null contrast: fg: 77.7 black: 0 diff --git a/themes/dark-wolf.yaml b/themes/dark-wolf.yaml index d9bfb803..65aa8361 100644 --- a/themes/dark-wolf.yaml +++ b/themes/dark-wolf.yaml @@ -2,7 +2,7 @@ name: "Dark-Wolf" source: marketplace_id: "ThiagoSaytson.dark-wolf" version: "1.0.1" - installs: 1363 + installs: 1366 author: "Thiago Saytson" repo: "https://github.com/TSaytson/Dark-Wolf-theme" url: "https://marketplace.visualstudio.com/items?itemName=ThiagoSaytson.dark-wolf" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 79.6 black: 0 diff --git a/themes/dark-yellow-flat.yaml b/themes/dark-yellow-flat.yaml index 65951873..753cdaf4 100644 --- a/themes/dark-yellow-flat.yaml +++ b/themes/dark-yellow-flat.yaml @@ -1,11 +1,11 @@ name: "Dark Yellow Flat" source: - marketplace_id: "Ayrz.vscode-theme-ayrz-arcticfox" - version: "1.0.2" - installs: 212 - author: "Ayrz" - repo: "https://github.com/ayrzDev/ArcticFox-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ayrz.vscode-theme-ayrz-arcticfox" + marketplace_id: "jannisberndt.dark-orange" + version: "0.4.0" + installs: 21524 + author: "Jannis Berndt" + repo: "https://github.com/jb3rndt/dark-orange" + url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" colors: bg: "#23272E" fg: "#E1E4E8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: null contrast: fg: 87 black: 0 diff --git a/themes/dark.yaml b/themes/dark.yaml index 09331412..68abc5ef 100644 --- a/themes/dark.yaml +++ b/themes/dark.yaml @@ -1,49 +1,50 @@ -name: "dark" +name: "_Dark" source: - marketplace_id: "lenglounh2024.lenglounh-theme" - version: "0.0.7" - installs: 28 - author: "lenglounh2024" - repo: "https://github.com/lenglounh2024/lenglounh-vscode-extension-pack.git#main" - url: "https://marketplace.visualstudio.com/items?itemName=lenglounh2024.lenglounh-theme" + marketplace_id: "Cleo.cleo" + version: "0.1.7" + installs: 1576 + author: "Cleo" + repo: "https://github.com/FabioKaelin/cleo-vscode-extension" + url: "https://marketplace.visualstudio.com/items?itemName=Cleo.cleo" colors: - bg: "#060218" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" + bg: "#FFFFFF" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#FFFFFF" + green: "#FFFFFF" + yellow: "#FFFFFF" + blue: "#FFFFFF" + magenta: "#FFFFFF" + cyan: "#FFFFFF" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#FFFFFF" + brightGreen: "#FFFFFF" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" meta: - mode: "dark" - accent: "pink" - hue: 289 + mode: "light" + accent: "yellow" + hue: null + pair: null contrast: - fg: 80.4 + fg: 0 black: 0 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.3 - magenta: 30.7 - cyan: 48.5 - white: 90.9 - brightBlack: 22.9 - brightRed: 39.5 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.9 - brightMagenta: 46.3 - brightCyan: 56.3 - brightWhite: 90.9 + red: 0 + green: 0 + yellow: 0 + blue: 0 + magenta: 0 + cyan: 0 + white: 0 + brightBlack: 0 + brightRed: 0 + brightGreen: 0 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/darka.yaml b/themes/darka.yaml index faaccdb9..6f737c83 100644 --- a/themes/darka.yaml +++ b/themes/darka.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 97.5 black: 0 diff --git a/themes/darkalchemy-basic.yaml b/themes/darkalchemy-basic.yaml index 11df0c25..9de8d587 100644 --- a/themes/darkalchemy-basic.yaml +++ b/themes/darkalchemy-basic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.1 black: 0 diff --git a/themes/darkalicious.yaml b/themes/darkalicious.yaml index bc48feb9..f86b29f5 100644 --- a/themes/darkalicious.yaml +++ b/themes/darkalicious.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 255 + pair: null contrast: fg: 78.6 black: 0 diff --git a/themes/darkasp.yaml b/themes/darkasp.yaml index ca6f7142..ebeadaf1 100644 --- a/themes/darkasp.yaml +++ b/themes/darkasp.yaml @@ -2,7 +2,7 @@ name: "DarkASP" source: marketplace_id: "aspeditor.asp-language-editor-dlv2" version: "0.1.5" - installs: 2188 + installs: 2189 author: "aspeditor" repo: "https://github.com/pierpaolosestito-dev/ASPEditorPlugin" url: "https://marketplace.visualstudio.com/items?itemName=aspeditor.asp-language-editor-dlv2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.3 black: 0 diff --git a/themes/darkblue-theme.yaml b/themes/darkblue-theme.yaml index c0ff3441..63abac77 100644 --- a/themes/darkblue-theme.yaml +++ b/themes/darkblue-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 74.4 black: 0 diff --git a/themes/darkbubble.yaml b/themes/darkbubble.yaml index 54cec4aa..7e4c5f4a 100644 --- a/themes/darkbubble.yaml +++ b/themes/darkbubble.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 72.2 black: 0 diff --git a/themes/darkbutter.yaml b/themes/darkbutter.yaml index 3dd90d30..7751c930 100644 --- a/themes/darkbutter.yaml +++ b/themes/darkbutter.yaml @@ -2,7 +2,7 @@ name: "DarkButter" source: marketplace_id: "SaiRohith.DarkButter" version: "0.0.8" - installs: 2976 + installs: 2977 author: "SaiRohith" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SaiRohith.DarkButter" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 71.6 black: 0 diff --git a/themes/darker-solarized.yaml b/themes/darker-solarized.yaml index 0ab5a676..c053e6e6 100644 --- a/themes/darker-solarized.yaml +++ b/themes/darker-solarized.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 218 + pair: null contrast: fg: 41.2 black: 0 diff --git a/themes/darker-than-black.yaml b/themes/darker-than-black.yaml index 86d85bde..af80538e 100644 --- a/themes/darker-than-black.yaml +++ b/themes/darker-than-black.yaml @@ -2,7 +2,7 @@ name: "Darker Than Black" source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" - installs: 80 + installs: 81 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 87.7 black: 0 diff --git a/themes/darkest.yaml b/themes/darkest.yaml index 31c5ad17..e08ffbfe 100644 --- a/themes/darkest.yaml +++ b/themes/darkest.yaml @@ -2,7 +2,7 @@ name: "darkEST" source: marketplace_id: "RakeshKannaS.darkest-theme" version: "0.0.2" - installs: 439 + installs: 441 author: "Rakesh Kanna S" repo: "https://github.com/rakeshkanna-rk/darkest" url: "https://marketplace.visualstudio.com/items?itemName=RakeshKannaS.darkest-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/darkestside-theme.yaml b/themes/darkestside-theme.yaml index f95c3c6d..f6afa729 100644 --- a/themes/darkestside-theme.yaml +++ b/themes/darkestside-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 98.3 black: 0 diff --git a/themes/darkforest.yaml b/themes/darkforest.yaml index 45d76e5b..9b63e52f 100644 --- a/themes/darkforest.yaml +++ b/themes/darkforest.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 245 + pair: null contrast: fg: 72.5 black: 0 diff --git a/themes/darkgreen.yaml b/themes/darkgreen.yaml index fdfc6fac..72d00b47 100644 --- a/themes/darkgreen.yaml +++ b/themes/darkgreen.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 92.2 black: 0 diff --git a/themes/darkheist.yaml b/themes/darkheist.yaml index ddcf8e72..7592b248 100644 --- a/themes/darkheist.yaml +++ b/themes/darkheist.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 340 + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/darkish.yaml b/themes/darkish.yaml index 12b1e76d..2f28101a 100644 --- a/themes/darkish.yaml +++ b/themes/darkish.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 82.1 black: 0 diff --git a/themes/darkit-astral.yaml b/themes/darkit-astral.yaml index 7106abe8..eed10aec 100644 --- a/themes/darkit-astral.yaml +++ b/themes/darkit-astral.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 57.2 black: 8.2 diff --git a/themes/darkj.yaml b/themes/darkj.yaml index 1e41887f..e393644a 100644 --- a/themes/darkj.yaml +++ b/themes/darkj.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 73.8 black: 0 diff --git a/themes/darkknight.yaml b/themes/darkknight.yaml index 80ee791f..bf051917 100644 --- a/themes/darkknight.yaml +++ b/themes/darkknight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 107.1 black: 0 diff --git a/themes/darklimeteal.yaml b/themes/darklimeteal.yaml index 42ec9ee8..1670fa26 100644 --- a/themes/darklimeteal.yaml +++ b/themes/darklimeteal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 228 + pair: null contrast: fg: 66.1 black: 0 diff --git a/themes/darklover.yaml b/themes/darklover.yaml index 3c69f03c..4cfaf7cb 100644 --- a/themes/darklover.yaml +++ b/themes/darklover.yaml @@ -2,7 +2,7 @@ name: "darkLover" source: marketplace_id: "rayan2228.darkLover" version: "1.0.0" - installs: 340 + installs: 341 author: "rayan2228" repo: "https://github.com/rayan2228/darkLover" url: "https://marketplace.visualstudio.com/items?itemName=rayan2228.darkLover" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 273 + pair: null contrast: fg: 96.1 black: 23 diff --git a/themes/darkly-theme.yaml b/themes/darkly-theme.yaml index a3358574..24f588a3 100644 --- a/themes/darkly-theme.yaml +++ b/themes/darkly-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/darkly.yaml b/themes/darkly.yaml index 8321d3f7..376dc97f 100644 --- a/themes/darkly.yaml +++ b/themes/darkly.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 279 + pair: null contrast: fg: 59.8 black: 0 diff --git a/themes/darkness-color-theme.yaml b/themes/darkness-color-theme.yaml index d30e5f80..24445de5 100644 --- a/themes/darkness-color-theme.yaml +++ b/themes/darkness-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 106.6 black: 0 diff --git a/themes/darkness-of-my-soul.yaml b/themes/darkness-of-my-soul.yaml index 0580c6dc..80a57ec2 100644 --- a/themes/darkness-of-my-soul.yaml +++ b/themes/darkness-of-my-soul.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/darko.yaml b/themes/darko.yaml deleted file mode 100644 index b2d88406..00000000 --- a/themes/darko.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "darko" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#0A0A0A" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 80.3 - black: 0 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.3 - magenta: 30.6 - cyan: 48.4 - white: 90.9 - brightBlack: 22.9 - brightRed: 39.4 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.9 - brightMagenta: 46.2 - brightCyan: 56.3 - brightWhite: 90.9 diff --git a/themes/darkoo.yaml b/themes/darkoo.yaml index 67c8e1b4..1019dc6f 100644 --- a/themes/darkoo.yaml +++ b/themes/darkoo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/darkorange.yaml b/themes/darkorange.yaml index 2d009643..966524b2 100644 --- a/themes/darkorange.yaml +++ b/themes/darkorange.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 62 + pair: null contrast: fg: 48.3 black: 48.3 diff --git a/themes/darkpinkpro.yaml b/themes/darkpinkpro.yaml index d288c33a..ab52b4e8 100644 --- a/themes/darkpinkpro.yaml +++ b/themes/darkpinkpro.yaml @@ -2,7 +2,7 @@ name: "DarkPinkPro" source: marketplace_id: "AhmedSaid.darkpinkpro" version: "0.3.4" - installs: 12745 + installs: 12754 author: "Ahmed Said" repo: "https://github.com/AhmeddSaid/darkpinkpro" url: "https://marketplace.visualstudio.com/items?itemName=AhmedSaid.darkpinkpro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.8 black: 0 diff --git a/themes/darkplastic.yaml b/themes/darkplastic.yaml index 853fc2fd..15089e90 100644 --- a/themes/darkplastic.yaml +++ b/themes/darkplastic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 65.6 black: 0 diff --git a/themes/darkpurple.yaml b/themes/darkpurple.yaml index be7565d3..9b2d184e 100644 --- a/themes/darkpurple.yaml +++ b/themes/darkpurple.yaml @@ -1,11 +1,11 @@ name: "DarkPurple" source: - marketplace_id: "bakrimoharram.just-purple" - version: "0.0.1" - installs: 575 + marketplace_id: "bakrimoharram.purple-dark-theme" + version: "0.0.4" + installs: 150 author: "bakrimoharram" - repo: "https://github.com/bakrimoharram/just-purple" - url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.just-purple" + repo: "https://github.com/bakrimoharram/darkpurple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.purple-dark-theme" colors: bg: "#1D001B" fg: "#D1C7D3" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 331 + pair: null contrast: fg: 74 black: 11.5 diff --git a/themes/darkquark.yaml b/themes/darkquark.yaml index 0f6f0457..847ea289 100644 --- a/themes/darkquark.yaml +++ b/themes/darkquark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 258 + pair: null contrast: fg: 100.9 black: 13.1 diff --git a/themes/darkr-green.yaml b/themes/darkr-green.yaml index 0e2a6a8a..65f417dd 100644 --- a/themes/darkr-green.yaml +++ b/themes/darkr-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: null contrast: fg: 105.5 black: 0 diff --git a/themes/darkred.yaml b/themes/darkred.yaml index ca3bba3b..96489556 100644 --- a/themes/darkred.yaml +++ b/themes/darkred.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.2 black: 0 diff --git a/themes/darkroom.yaml b/themes/darkroom.yaml index ea1bc403..35893a6f 100644 --- a/themes/darkroom.yaml +++ b/themes/darkroom.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 277 + pair: null contrast: fg: 64.3 black: 47.1 diff --git a/themes/darkroy-night.yaml b/themes/darkroy-night.yaml index fc6297cc..26fec736 100644 --- a/themes/darkroy-night.yaml +++ b/themes/darkroy-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 94.1 black: 0 diff --git a/themes/darkroy.yaml b/themes/darkroy.yaml index 23d6e396..b520864e 100644 --- a/themes/darkroy.yaml +++ b/themes/darkroy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 94.2 black: 0 diff --git a/themes/darkrr-green.yaml b/themes/darkrr-green.yaml index cd1328ce..c9b582ac 100644 --- a/themes/darkrr-green.yaml +++ b/themes/darkrr-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 106.2 black: 0 diff --git a/themes/darkrrr-green.yaml b/themes/darkrrr-green.yaml index 6ecf628b..e7d0e08b 100644 --- a/themes/darkrrr-green.yaml +++ b/themes/darkrrr-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.1 black: 0 diff --git a/themes/darkrrrr-green.yaml b/themes/darkrrrr-green.yaml index 0c981bd8..243abc5d 100644 --- a/themes/darkrrrr-green.yaml +++ b/themes/darkrrrr-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.3 black: 0 diff --git a/themes/darkrrrrr-green.yaml b/themes/darkrrrrr-green.yaml index 7bd1ee90..491c1eaa 100644 --- a/themes/darkrrrrr-green.yaml +++ b/themes/darkrrrrr-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/darkside-contrast.yaml b/themes/darkside-contrast.yaml index 1318df58..487b7006 100644 --- a/themes/darkside-contrast.yaml +++ b/themes/darkside-contrast.yaml @@ -1,11 +1,11 @@ name: "darkside-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#000000" fg: "#BABABA" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 65.2 black: 0 diff --git a/themes/darkside-light.yaml b/themes/darkside-light.yaml index 9e0e5087..57a11101 100644 --- a/themes/darkside-light.yaml +++ b/themes/darkside-light.yaml @@ -1,11 +1,11 @@ name: "darkside-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#E0E0E0" fg: "#222324" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 84.5 black: 0 diff --git a/themes/darkside.yaml b/themes/darkside.yaml index d1ab6d93..879f1447 100644 --- a/themes/darkside.yaml +++ b/themes/darkside.yaml @@ -1,11 +1,11 @@ name: "darkside" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#222324" fg: "#BABABA" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 62.6 black: 0 diff --git a/themes/darksome.yaml b/themes/darksome.yaml index 5062a306..62ae7d6c 100644 --- a/themes/darksome.yaml +++ b/themes/darksome.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/darkspace.yaml b/themes/darkspace.yaml index 7b6bd151..882bfdb8 100644 --- a/themes/darkspace.yaml +++ b/themes/darkspace.yaml @@ -1,13 +1,13 @@ name: "DarkSpace" source: - marketplace_id: "YesCode.grayspace" - version: "0.0.23" - installs: 768 + marketplace_id: "YesCode.only-dark-theme" + version: "0.0.16" + installs: 383 author: "YesCode" - repo: "https://github.com/yesomac/platzi_theme" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.grayspace" + repo: "https://github.com/yesomac/only_dark" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" colors: - bg: "#1A1B1B" + bg: "#04060A" fg: "#EEFFFF" black: "#1D2021" red: "#FB543F" @@ -28,22 +28,23 @@ colors: meta: mode: "dark" accent: "orange" - hue: null + hue: 259 + pair: null contrast: - fg: 104.1 + fg: 105.5 black: 0 - red: 41.6 - green: 60.6 - yellow: 72.6 - blue: 47.1 - magenta: 19.1 - cyan: 49 - white: 46.8 - brightBlack: 18.2 - brightRed: 41.6 - brightGreen: 88.8 - brightYellow: 79.3 - brightBlue: 18.3 - brightMagenta: 19.1 - brightCyan: 49 - brightWhite: 98.4 + red: 42.9 + green: 61.9 + yellow: 74 + blue: 48.5 + magenta: 20.5 + cyan: 50.4 + white: 48.2 + brightBlack: 19.5 + brightRed: 42.9 + brightGreen: 90.2 + brightYellow: 80.7 + brightBlue: 19.7 + brightMagenta: 20.5 + brightCyan: 50.4 + brightWhite: 99.8 diff --git a/themes/darkstar.yaml b/themes/darkstar.yaml index 626e676e..20608ae0 100644 --- a/themes/darkstar.yaml +++ b/themes/darkstar.yaml @@ -2,7 +2,7 @@ name: "DarkStar" source: marketplace_id: "DarkStar.darkstar" version: "0.0.5" - installs: 1166 + installs: 1167 author: "DarkStar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DarkStar.darkstar" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 103.9 black: 0 diff --git a/themes/darkstash.yaml b/themes/darkstash.yaml index 35ace246..68a03847 100644 --- a/themes/darkstash.yaml +++ b/themes/darkstash.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79 black: 0 diff --git a/themes/darktra.yaml b/themes/darktra.yaml index 71b6d207..7b4d59e2 100644 --- a/themes/darktra.yaml +++ b/themes/darktra.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 104.6 black: 0 diff --git a/themes/darkula.yaml b/themes/darkula.yaml index 02c40f18..76e78d07 100644 --- a/themes/darkula.yaml +++ b/themes/darkula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 102.3 black: 0 diff --git a/themes/darkuto.yaml b/themes/darkuto.yaml index d7d2b98f..f7b474e7 100644 --- a/themes/darkuto.yaml +++ b/themes/darkuto.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 229 + pair: null contrast: fg: 79.2 black: 0 diff --git a/themes/darkvoid-ocean.yaml b/themes/darkvoid-ocean.yaml index 3b6c4603..4d9f119a 100644 --- a/themes/darkvoid-ocean.yaml +++ b/themes/darkvoid-ocean.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 67.9 black: 0 diff --git a/themes/darkvoid.yaml b/themes/darkvoid.yaml index 74da4ec9..9707cd6e 100644 --- a/themes/darkvoid.yaml +++ b/themes/darkvoid.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 67.9 black: 0 diff --git a/themes/darkwaves-ashen-core.yaml b/themes/darkwaves-ashen-core.yaml index f81b723d..9274fd4b 100644 --- a/themes/darkwaves-ashen-core.yaml +++ b/themes/darkwaves-ashen-core.yaml @@ -2,7 +2,7 @@ name: "Darkwaves: Ashen Core" source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" - installs: 677 + installs: 678 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 72.6 black: 0 diff --git a/themes/darkwaves-celestial-mist.yaml b/themes/darkwaves-celestial-mist.yaml index c72ff31c..f1eb612a 100644 --- a/themes/darkwaves-celestial-mist.yaml +++ b/themes/darkwaves-celestial-mist.yaml @@ -2,7 +2,7 @@ name: "Darkwaves: Celestial Mist" source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" - installs: 677 + installs: 678 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 84.1 black: 84.7 diff --git a/themes/darkwaves-cloud-lands.yaml b/themes/darkwaves-cloud-lands.yaml index 3828da97..835bdc4b 100644 --- a/themes/darkwaves-cloud-lands.yaml +++ b/themes/darkwaves-cloud-lands.yaml @@ -2,7 +2,7 @@ name: "Darkwaves Cloud Lands" source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" - installs: 677 + installs: 678 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 85.4 black: 0 diff --git a/themes/darkwaves-driftwood.yaml b/themes/darkwaves-driftwood.yaml index 34f275a3..af5300fb 100644 --- a/themes/darkwaves-driftwood.yaml +++ b/themes/darkwaves-driftwood.yaml @@ -2,7 +2,7 @@ name: "Darkwaves: Driftwood" source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" - installs: 677 + installs: 678 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 66.3 black: 0 diff --git a/themes/darkwaves-forge.yaml b/themes/darkwaves-forge.yaml index 2a4817d1..f9a73e65 100644 --- a/themes/darkwaves-forge.yaml +++ b/themes/darkwaves-forge.yaml @@ -2,7 +2,7 @@ name: "Darkwaves: Forge" source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" - installs: 677 + installs: 678 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83 black: 0 diff --git a/themes/darkwaves-gray-elegance.yaml b/themes/darkwaves-gray-elegance.yaml index f1c9c094..93327760 100644 --- a/themes/darkwaves-gray-elegance.yaml +++ b/themes/darkwaves-gray-elegance.yaml @@ -2,7 +2,7 @@ name: "Darkwaves Gray Elegance" source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" - installs: 677 + installs: 678 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 78.8 black: 0 diff --git a/themes/darkwaves-nebula.yaml b/themes/darkwaves-nebula.yaml index 97897f3a..14753b0b 100644 --- a/themes/darkwaves-nebula.yaml +++ b/themes/darkwaves-nebula.yaml @@ -2,7 +2,7 @@ name: "Darkwaves: Nebula" source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" - installs: 677 + installs: 678 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 58.7 black: 0 diff --git a/themes/darkwaves-obsidian.yaml b/themes/darkwaves-obsidian.yaml index 66c32e81..6f352256 100644 --- a/themes/darkwaves-obsidian.yaml +++ b/themes/darkwaves-obsidian.yaml @@ -2,7 +2,7 @@ name: "Darkwaves: Obsidian" source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" - installs: 677 + installs: 678 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 77.9 black: 0 diff --git a/themes/darkwaves-spectrum.yaml b/themes/darkwaves-spectrum.yaml index 8ab9867f..4077baf5 100644 --- a/themes/darkwaves-spectrum.yaml +++ b/themes/darkwaves-spectrum.yaml @@ -2,7 +2,7 @@ name: "Darkwaves Spectrum" source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" - installs: 677 + installs: 678 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/darkwind-default.yaml b/themes/darkwind-default.yaml index 32db4a45..c6d99c04 100644 --- a/themes/darkwind-default.yaml +++ b/themes/darkwind-default.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 265 + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/darky-purple-storm.yaml b/themes/darky-purple-storm.yaml index 19391a69..fdf4e1a2 100644 --- a/themes/darky-purple-storm.yaml +++ b/themes/darky-purple-storm.yaml @@ -2,7 +2,7 @@ name: "Darky Purple Storm" source: marketplace_id: "AlexanderAlekseenko.darky-purple-theme" version: "1.4.0" - installs: 11695 + installs: 11700 author: "Alexander Alekseenko" repo: "https://github.com/Akaike0/vsc-darky-purple-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.darky-purple-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 288 + pair: null contrast: fg: 43.9 black: 19.8 diff --git a/themes/darky-purple.yaml b/themes/darky-purple.yaml index 17502090..050e9a5c 100644 --- a/themes/darky-purple.yaml +++ b/themes/darky-purple.yaml @@ -2,7 +2,7 @@ name: "Darky Purple" source: marketplace_id: "AlexanderAlekseenko.darky-purple-theme" version: "1.4.0" - installs: 11695 + installs: 11700 author: "Alexander Alekseenko" repo: "https://github.com/Akaike0/vsc-darky-purple-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.darky-purple-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 45.8 black: 15.2 diff --git a/themes/darth-insidious.yaml b/themes/darth-insidious.yaml index 733ca2e9..1e710751 100644 --- a/themes/darth-insidious.yaml +++ b/themes/darth-insidious.yaml @@ -2,7 +2,7 @@ name: "Darth Insidious" source: marketplace_id: "Dutchorange.space-wars" version: "1.1.7" - installs: 1710 + installs: 1711 author: "Dutchorange" repo: "https://github.com/entropy-glitch/space-wars" url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 307 + pair: null contrast: fg: 88.6 black: 0 diff --git a/themes/darth-invader.yaml b/themes/darth-invader.yaml index 85570f8b..1c1cfebb 100644 --- a/themes/darth-invader.yaml +++ b/themes/darth-invader.yaml @@ -2,7 +2,7 @@ name: "Darth Invader" source: marketplace_id: "Dutchorange.space-wars" version: "1.1.7" - installs: 1710 + installs: 1711 author: "Dutchorange" repo: "https://github.com/entropy-glitch/space-wars" url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 87.9 black: 0 diff --git a/themes/darthbuddy.yaml b/themes/darthbuddy.yaml index fe375038..c8450873 100644 --- a/themes/darthbuddy.yaml +++ b/themes/darthbuddy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107 black: 0 diff --git a/themes/dartpad-candy.yaml b/themes/dartpad-candy.yaml deleted file mode 100644 index 2a3df143..00000000 --- a/themes/dartpad-candy.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "DartPad Candy" -source: - marketplace_id: "Alejandro-FA.vscode-theme-dartpad" - version: "0.5.4" - installs: 5313 - author: "Alejandro-FA" - repo: "https://github.com/Alejandro-FA/vscode-theme-dartpad" - url: "https://marketplace.visualstudio.com/items?itemName=Alejandro-FA.vscode-theme-dartpad" -colors: - bg: "#0E161F" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 252 - contrast: - fg: 107 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.8 - blue: 27.6 - magenta: 29.9 - cyan: 47.7 - white: 90.2 - brightBlack: 22.2 - brightRed: 38.7 - brightGreen: 63.7 - brightYellow: 95.8 - brightBlue: 40.1 - brightMagenta: 45.5 - brightCyan: 55.5 - brightWhite: 90.2 diff --git a/themes/daru.yaml b/themes/daru.yaml index 5e608e3f..9afef56d 100644 --- a/themes/daru.yaml +++ b/themes/daru.yaml @@ -1,11 +1,11 @@ name: "daru" source: - marketplace_id: "baboyiban.daru" + marketplace_id: "daruhan.daru" version: "0.0.1" - installs: 143 - author: "baboyiban" + installs: 138 + author: "daruhan" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=baboyiban.daru" + url: "https://marketplace.visualstudio.com/items?itemName=daruhan.daru" colors: bg: "#FFFFFF" fg: "#000000" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/darwin.yaml b/themes/darwin.yaml index 8581e0f4..8718abf3 100644 --- a/themes/darwin.yaml +++ b/themes/darwin.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/darxmon.yaml b/themes/darxmon.yaml index 5a54eea1..f926e888 100644 --- a/themes/darxmon.yaml +++ b/themes/darxmon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 70.2 diff --git a/themes/dashxe.yaml b/themes/dashxe.yaml index 30e5daa5..24369998 100644 --- a/themes/dashxe.yaml +++ b/themes/dashxe.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 255 + pair: null contrast: fg: 107.6 black: 15.4 diff --git a/themes/davi-lacerda-dark.yaml b/themes/davi-lacerda-dark.yaml index 40b6db44..11fb40d2 100644 --- a/themes/davi-lacerda-dark.yaml +++ b/themes/davi-lacerda-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Davi Lacerda Light" contrast: fg: 104.5 black: 13.4 diff --git a/themes/davi-lacerda-light.yaml b/themes/davi-lacerda-light.yaml index 9c7a9aec..4389ff6c 100644 --- a/themes/davi-lacerda-light.yaml +++ b/themes/davi-lacerda-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "Davi Lacerda Dark" contrast: fg: 102.9 black: 85.6 diff --git a/themes/david.yaml b/themes/david.yaml index 4bbb7220..86aa2ff2 100644 --- a/themes/david.yaml +++ b/themes/david.yaml @@ -2,7 +2,7 @@ name: "david" source: marketplace_id: "batdavid70.david" version: "0.0.1" - installs: 233 + installs: 234 author: "batdavid70" repo: null url: "https://marketplace.visualstudio.com/items?itemName=batdavid70.david" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.2 black: 0 diff --git a/themes/daviontheme.yaml b/themes/daviontheme.yaml index c2655e13..d27844c9 100644 --- a/themes/daviontheme.yaml +++ b/themes/daviontheme.yaml @@ -2,7 +2,7 @@ name: "DavionTheme" source: marketplace_id: "MahdiAlavitabar.daviontheme" version: "1.1.4" - installs: 102 + installs: 104 author: "Mahdi Alavitabar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MahdiAlavitabar.daviontheme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 70.7 black: 0 diff --git a/themes/day-n-nite.yaml b/themes/day-n-nite.yaml index 26b60175..598de37d 100644 --- a/themes/day-n-nite.yaml +++ b/themes/day-n-nite.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 0 black: 0 diff --git a/themes/day.yaml b/themes/day.yaml index 2996801a..4c81a7a6 100644 --- a/themes/day.yaml +++ b/themes/day.yaml @@ -2,7 +2,7 @@ name: "day" source: marketplace_id: "AninhaPardini.coffee-break-theme" version: "1.5.0" - installs: 834 + installs: 835 author: "Aninha Pardini" repo: "https://github.com/AninhaPardini/coffee-break-theme" url: "https://marketplace.visualstudio.com/items?itemName=AninhaPardini.coffee-break-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 102.4 black: 94.7 diff --git a/themes/dayfox.yaml b/themes/dayfox.yaml index 908817dc..ac6c2cad 100644 --- a/themes/dayfox.yaml +++ b/themes/dayfox.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 90.7 black: 92.8 diff --git a/themes/daysofwineandroses.yaml b/themes/daysofwineandroses.yaml index 61252f13..6b82b3cd 100644 --- a/themes/daysofwineandroses.yaml +++ b/themes/daysofwineandroses.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 316 + pair: null contrast: fg: 36.4 black: 0 diff --git a/themes/dbt-fusion.yaml b/themes/dbt-fusion.yaml index a2d08bae..4be23bc0 100644 --- a/themes/dbt-fusion.yaml +++ b/themes/dbt-fusion.yaml @@ -2,7 +2,7 @@ name: "dbt Fusion" source: marketplace_id: "dbtLabsInc.dbt" version: "0.54.0" - installs: 76524 + installs: 76805 author: "dbt Labs Inc" repo: "https://github.com/dbt-labs/dbt-fusion" url: "https://marketplace.visualstudio.com/items?itemName=dbtLabsInc.dbt" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 261 + pair: null contrast: fg: 84.8 black: 12 diff --git a/themes/dbt-inspired-dark-theme.yaml b/themes/dbt-inspired-dark-theme.yaml deleted file mode 100644 index 6ca91433..00000000 --- a/themes/dbt-inspired-dark-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "DBT Inspired Dark Theme" -source: - marketplace_id: "jayzelenkov.jz-vscode-themes" - version: "0.0.2" - installs: 6 - author: "Jay Zelenkov" - repo: "https://github.com/jayzelenkov/jz-vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=jayzelenkov.jz-vscode-themes" -colors: - bg: "#161514" - fg: "#F6F6F6" - black: "#2F2D2C" - red: "#F64B44" - green: "#31A753" - yellow: "#D47500" - blue: "#1894F8" - magenta: "#F83D75" - cyan: "#0BA58B" - white: "#EBE9E9" - brightBlack: "#736D6C" - brightRed: "#FF866F" - brightGreen: "#45D170" - brightYellow: "#F79900" - brightBlue: "#6AB8FF" - brightMagenta: "#FF82A1" - brightCyan: "#38CCB2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 101.1 - black: 0 - red: 39.6 - green: 43.4 - yellow: 40.9 - blue: 42.7 - magenta: 39.3 - cyan: 43.5 - white: 93 - brightBlack: 25.8 - brightRed: 55.1 - brightGreen: 63.8 - brightYellow: 58.3 - brightBlue: 60.1 - brightMagenta: 55.5 - brightCyan: 63 - brightWhite: 107 diff --git a/themes/dbt-inspired-light-theme.yaml b/themes/dbt-inspired-light-theme.yaml deleted file mode 100644 index bc82f568..00000000 --- a/themes/dbt-inspired-light-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "DBT Inspired Light Theme" -source: - marketplace_id: "jayzelenkov.jz-vscode-themes" - version: "0.0.2" - installs: 6 - author: "Jay Zelenkov" - repo: "https://github.com/jayzelenkov/jz-vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=jayzelenkov.jz-vscode-themes" -colors: - bg: "#FDFDFD" - fg: "#1C1A19" - black: "#1C1A19" - red: "#8D0D10" - green: "#105A20" - yellow: "#AB5100" - blue: "#004895" - magenta: "#8B0839" - cyan: "#105748" - white: "#CFCDCC" - brightBlack: "#4E4A49" - brightRed: "#C42C28" - brightGreen: "#188435" - brightYellow: "#D47500" - brightBlue: "#006DCE" - brightMagenta: "#CA0356" - brightCyan: "#17806C" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - contrast: - fg: 103 - black: 103 - red: 89 - green: 87.3 - yellow: 74.9 - blue: 88.4 - magenta: 89 - cyan: 87.6 - white: 25.3 - brightBlack: 88.8 - brightRed: 75.3 - brightGreen: 71.5 - brightYellow: 58.8 - brightBlue: 73.5 - brightMagenta: 75 - brightCyan: 71.9 - brightWhite: 0 diff --git a/themes/dcdevthemered.yaml b/themes/dcdevthemered.yaml index 51b81ba8..0039ae2c 100644 --- a/themes/dcdevthemered.yaml +++ b/themes/dcdevthemered.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/deadbeef.yaml b/themes/deadbeef.yaml index 879e70bc..f80a74ef 100644 --- a/themes/deadbeef.yaml +++ b/themes/deadbeef.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 89.7 black: 0 diff --git a/themes/deadpool.yaml b/themes/deadpool.yaml index 2f80eb91..2c28a42d 100644 --- a/themes/deadpool.yaml +++ b/themes/deadpool.yaml @@ -2,7 +2,7 @@ name: "DeadPool" source: marketplace_id: "MukeshJoshi.dodopool" version: "0.0.6" - installs: 1803 + installs: 1805 author: "Mukesh Joshi" repo: "https://github.com/orangepreneur/dodopool" url: "https://marketplace.visualstudio.com/items?itemName=MukeshJoshi.dodopool" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 248 + pair: null contrast: fg: 59.4 black: 0 diff --git a/themes/decayce.yaml b/themes/decayce.yaml index a47fd525..cac20a37 100644 --- a/themes/decayce.yaml +++ b/themes/decayce.yaml @@ -2,7 +2,7 @@ name: "Decayce" source: marketplace_id: "decaycs.decay" version: "1.0.9" - installs: 37704 + installs: 37708 author: "decaycs" repo: "https://github.com/decaycs/vscode" url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 61.7 black: 0 diff --git a/themes/deco.yaml b/themes/deco.yaml index d61dcf3a..b3e3d757 100644 --- a/themes/deco.yaml +++ b/themes/deco.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 222 + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/deeold.yaml b/themes/deeold.yaml index 7dcf08fe..c1ca69ec 100644 --- a/themes/deeold.yaml +++ b/themes/deeold.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 61.2 black: 0 diff --git a/themes/deep-dark.yaml b/themes/deep-dark.yaml index 6313e5f5..c1947915 100644 --- a/themes/deep-dark.yaml +++ b/themes/deep-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 54.5 black: 0 diff --git a/themes/deep-indigo-wisdom-intuition.yaml b/themes/deep-indigo-wisdom-intuition.yaml index 5115d121..e1f2325c 100644 --- a/themes/deep-indigo-wisdom-intuition.yaml +++ b/themes/deep-indigo-wisdom-intuition.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 94.1 black: 0 diff --git a/themes/deep-ocean.yaml b/themes/deep-ocean.yaml index ce4abfde..4fb7202d 100644 --- a/themes/deep-ocean.yaml +++ b/themes/deep-ocean.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 250 + pair: null contrast: fg: 98.4 black: 0 diff --git a/themes/deep-purple-fork.yaml b/themes/deep-purple-fork.yaml deleted file mode 100644 index 061dab3e..00000000 --- a/themes/deep-purple-fork.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Deep Purple - Fork" -source: - marketplace_id: "MrudulMistri.mystic-fusion-theme" - version: "1.0.18" - installs: 74 - author: "Mrudul Mistri" - repo: "https://github.com/Mrudul1234/mystic-fusion-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MrudulMistri.mystic-fusion-theme" -colors: - bg: "#16111B" - fg: "#E4EEF0" - black: "#3D3D3D" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 307 - contrast: - fg: 94.9 - black: 0 - red: 27.1 - green: 53.3 - yellow: 86 - blue: 27.8 - magenta: 30.1 - cyan: 47.9 - white: 90.4 - brightBlack: 22.4 - brightRed: 38.9 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.3 - brightMagenta: 45.7 - brightCyan: 55.7 - brightWhite: 90.4 diff --git a/themes/deep-purple-theme.yaml b/themes/deep-purple-theme.yaml index a257bf87..99d5d390 100644 --- a/themes/deep-purple-theme.yaml +++ b/themes/deep-purple-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 323 + pair: null contrast: fg: 89 black: 29.2 diff --git a/themes/deep-purple.yaml b/themes/deep-purple.yaml index 82f4520c..0b064665 100644 --- a/themes/deep-purple.yaml +++ b/themes/deep-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 298 + pair: null contrast: fg: 85.8 black: 39.8 diff --git a/themes/deep-rainforest.yaml b/themes/deep-rainforest.yaml index f24b62e7..c8b431da 100644 --- a/themes/deep-rainforest.yaml +++ b/themes/deep-rainforest.yaml @@ -2,7 +2,7 @@ name: "Deep Rainforest" source: marketplace_id: "yeskunall.deep-rainforest" version: "0.3.0" - installs: 646 + installs: 647 author: "Kunall Banerjee" repo: "https://github.com/yeskunall/deep-rainforest" url: "https://marketplace.visualstudio.com/items?itemName=yeskunall.deep-rainforest" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 222 + pair: null contrast: fg: 18.7 black: 0 diff --git a/themes/deep-space-dark.yaml b/themes/deep-space-dark.yaml index 628ebc8a..7cc6ccad 100644 --- a/themes/deep-space-dark.yaml +++ b/themes/deep-space-dark.yaml @@ -2,7 +2,7 @@ name: "Deep Space Dark" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 301 + pair: null contrast: fg: 107.8 black: 10.8 diff --git a/themes/deepwave.yaml b/themes/deepwave.yaml index a331e517..b5522721 100644 --- a/themes/deepwave.yaml +++ b/themes/deepwave.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 57.4 black: 7.7 diff --git a/themes/deepwoods-autumn-needles-italic.yaml b/themes/deepwoods-autumn-needles-italic.yaml deleted file mode 100644 index 0c2fd49c..00000000 --- a/themes/deepwoods-autumn-needles-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Deepwoods Autumn Needles Italic" -source: - marketplace_id: "just-spliff.frosty-pine" - version: "1.1.4" - installs: 63 - author: "just-spliff" - repo: "https://github.com/just-spliff/frosty-pine" - url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" -colors: - bg: "#090806" - fg: "#FFF8F0" - black: "#15100C" - red: "#E36B5F" - green: "#8AA37C" - yellow: "#E9A86C" - blue: "#A49B8F" - magenta: "#BF8A82" - cyan: "#C2D2B7" - white: "#FFF8F0" - brightBlack: "#43372D" - brightRed: "#F18977" - brightGreen: "#B6C79B" - brightYellow: "#F4C98D" - brightBlue: "#C0B7AA" - brightMagenta: "#D9A496" - brightCyan: "#E4F0DE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 103.8 - black: 0 - red: 42.8 - green: 48.5 - yellow: 62.6 - blue: 48.8 - magenta: 46.1 - cyan: 76.1 - white: 103.8 - brightBlack: 0 - brightRed: 54.1 - brightGreen: 69 - brightYellow: 77.9 - brightBlue: 64 - brightMagenta: 59.6 - brightCyan: 95.6 - brightWhite: 107.8 diff --git a/themes/deepwoods-frosted-pines-italic.yaml b/themes/deepwoods-frosted-pines-italic.yaml deleted file mode 100644 index c00041c2..00000000 --- a/themes/deepwoods-frosted-pines-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Deepwoods Frosted Pines Italic" -source: - marketplace_id: "just-spliff.frosty-pine" - version: "1.1.4" - installs: 63 - author: "just-spliff" - repo: "https://github.com/just-spliff/frosty-pine" - url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" -colors: - bg: "#05070B" - fg: "#F5FAFF" - black: "#11151C" - red: "#E38A9E" - green: "#7CB4A0" - yellow: "#CFE7C0" - blue: "#8FA7C7" - magenta: "#B6ABD8" - cyan: "#A5DFF9" - white: "#F5FAFF" - brightBlack: "#3B4652" - brightRed: "#F2A3B5" - brightGreen: "#AEE6C7" - brightYellow: "#E5F5D8" - brightBlue: "#B9CBE4" - brightMagenta: "#D2C5F0" - brightCyan: "#CDEBFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 260 - contrast: - fg: 104.1 - black: 0 - red: 53 - green: 55.5 - yellow: 87.6 - blue: 53.5 - magenta: 60.1 - cyan: 82 - white: 104.1 - brightBlack: 10.1 - brightRed: 64.6 - brightGreen: 83.8 - brightYellow: 97.8 - brightBlue: 74 - brightMagenta: 75.2 - brightCyan: 92 - brightWhite: 107.8 diff --git a/themes/deepwoods-high-canopy-italic.yaml b/themes/deepwoods-high-canopy-italic.yaml deleted file mode 100644 index 6796d272..00000000 --- a/themes/deepwoods-high-canopy-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Deepwoods High Canopy Italic" -source: - marketplace_id: "just-spliff.frosty-pine" - version: "1.1.4" - installs: 63 - author: "just-spliff" - repo: "https://github.com/just-spliff/frosty-pine" - url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" -colors: - bg: "#050807" - fg: "#F7FFF5" - black: "#11160F" - red: "#F28B82" - green: "#8EDC73" - yellow: "#CFEA8A" - blue: "#9BAE97" - magenta: "#B59F8E" - cyan: "#B7F1C5" - white: "#F7FFF5" - brightBlack: "#3D493C" - brightRed: "#F7A395" - brightGreen: "#B7F171" - brightYellow: "#E6FFD2" - brightBlue: "#C0D1BF" - brightMagenta: "#D0BBA6" - brightCyan: "#E0FFE9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 106.2 - black: 0 - red: 55.2 - green: 73.8 - yellow: 87.4 - blue: 55.4 - magenta: 52.4 - cyan: 89.9 - white: 106.2 - brightBlack: 10.4 - brightRed: 64.4 - brightGreen: 87.7 - brightYellow: 102.5 - brightBlue: 75.8 - brightMagenta: 67.6 - brightCyan: 102.7 - brightWhite: 107.8 diff --git a/themes/deepwoods-spring-thaw-italic.yaml b/themes/deepwoods-spring-thaw-italic.yaml deleted file mode 100644 index 4476dde2..00000000 --- a/themes/deepwoods-spring-thaw-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Deepwoods Spring Thaw Italic" -source: - marketplace_id: "just-spliff.frosty-pine" - version: "1.1.4" - installs: 63 - author: "just-spliff" - repo: "https://github.com/just-spliff/frosty-pine" - url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" -colors: - bg: "#060809" - fg: "#F5F8F6" - black: "#101414" - red: "#4E7D5A" - green: "#8FD39A" - yellow: "#CBEA96" - blue: "#A8B3AE" - magenta: "#A8B3AE" - cyan: "#E0F8E6" - white: "#F5F8F6" - brightBlack: "#3A4440" - brightRed: "#6BA874" - brightGreen: "#CBEA96" - brightYellow: "#E0F8E6" - brightBlue: "#D0DDDA" - brightMagenta: "#D0DDDA" - brightCyan: "#F5F8F6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 102.7 - black: 0 - red: 28.6 - green: 70.6 - yellow: 87.2 - blue: 59.7 - magenta: 59.7 - cyan: 99.2 - white: 102.7 - brightBlack: 9 - brightRed: 47.9 - brightGreen: 87.2 - brightYellow: 99.2 - brightBlue: 84.2 - brightMagenta: 84.2 - brightCyan: 102.7 - brightWhite: 107.8 diff --git a/themes/default-enhanced.yaml b/themes/default-enhanced.yaml index e07d732f..ec6b2c47 100644 --- a/themes/default-enhanced.yaml +++ b/themes/default-enhanced.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60 black: 0 diff --git a/themes/default-theme.yaml b/themes/default-theme.yaml index 52de0633..81f5f620 100644 --- a/themes/default-theme.yaml +++ b/themes/default-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/defaults.yaml b/themes/defaults.yaml index 2cff900e..0ec51eac 100644 --- a/themes/defaults.yaml +++ b/themes/defaults.yaml @@ -2,7 +2,7 @@ name: "defaults" source: marketplace_id: "drzix.hc-zenburn-vscode" version: "0.3.0" - installs: 7767 + installs: 7768 author: "Kyeongmin Cho" repo: "https://github.com/drzix/hc-zenburn-vscode" url: "https://marketplace.visualstudio.com/items?itemName=drzix.hc-zenburn-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.4 black: 8.1 diff --git a/themes/defdo-base.yaml b/themes/defdo-base.yaml index c6cdcb34..3934e424 100644 --- a/themes/defdo-base.yaml +++ b/themes/defdo-base.yaml @@ -2,7 +2,7 @@ name: "defdo base" source: marketplace_id: "defdo.defdo-themes" version: "0.0.15" - installs: 1254 + installs: 1255 author: "defdo" repo: "https://github.com/defdo-dev/defdo-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=defdo.defdo-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 233 + pair: null contrast: fg: 104.1 black: 0 diff --git a/themes/defdo-halloween.yaml b/themes/defdo-halloween.yaml index f7b43c34..93fc69eb 100644 --- a/themes/defdo-halloween.yaml +++ b/themes/defdo-halloween.yaml @@ -2,7 +2,7 @@ name: "defdo halloween" source: marketplace_id: "defdo.defdo-themes" version: "0.0.15" - installs: 1254 + installs: 1255 author: "defdo" repo: "https://github.com/defdo-dev/defdo-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=defdo.defdo-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 310 + pair: null contrast: fg: 105.2 black: 0 diff --git a/themes/definetely-not-github-s-theme.yaml b/themes/definetely-not-github-s-theme.yaml index 1ad329f2..d089e986 100644 --- a/themes/definetely-not-github-s-theme.yaml +++ b/themes/definetely-not-github-s-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 95.1 black: 19.8 diff --git a/themes/definition-theme2023.yaml b/themes/definition-theme2023.yaml index f7d91767..81d21760 100644 --- a/themes/definition-theme2023.yaml +++ b/themes/definition-theme2023.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 266 + pair: null contrast: fg: 76.5 black: 0 diff --git a/themes/dejaypiii.yaml b/themes/dejaypiii.yaml index 196ecbd5..fea03664 100644 --- a/themes/dejaypiii.yaml +++ b/themes/dejaypiii.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 89.8 black: 11.4 diff --git a/themes/dekirisu-s-rust-theme.yaml b/themes/dekirisu-s-rust-theme.yaml index 87305019..52392df3 100644 --- a/themes/dekirisu-s-rust-theme.yaml +++ b/themes/dekirisu-s-rust-theme.yaml @@ -2,7 +2,7 @@ name: "Dekirisu's Rust Theme" source: marketplace_id: "dekirisu.dekirisu-rust-themes" version: "0.0.1" - installs: 3896 + installs: 3898 author: "Dekirisu" repo: "https://github.com/dekirisu/vscode-rust-themes" url: "https://marketplace.visualstudio.com/items?itemName=dekirisu.dekirisu-rust-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 71.3 black: 0 diff --git a/themes/demon-dark-pro.yaml b/themes/demon-dark-pro.yaml index 2176fd8d..dda2d461 100644 --- a/themes/demon-dark-pro.yaml +++ b/themes/demon-dark-pro.yaml @@ -2,7 +2,7 @@ name: "Demon Dark Pro" source: marketplace_id: "mrsiddharthsolanki.demon-dark-pro-theme" version: "2.6.7" - installs: 140 + installs: 141 author: "mrsiddharthsolanki" repo: "https://github.com/mrsiddharthsolanki/demon-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=mrsiddharthsolanki.demon-dark-pro-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: "Demon Light Pro" contrast: fg: 92.7 black: 0 diff --git a/themes/demon-light-pro.yaml b/themes/demon-light-pro.yaml index ad1c14be..0fc51aa7 100644 --- a/themes/demon-light-pro.yaml +++ b/themes/demon-light-pro.yaml @@ -2,7 +2,7 @@ name: "Demon Light Pro" source: marketplace_id: "mrsiddharthsolanki.demon-dark-pro-theme" version: "2.6.7" - installs: 140 + installs: 141 author: "mrsiddharthsolanki" repo: "https://github.com/mrsiddharthsolanki/demon-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=mrsiddharthsolanki.demon-dark-pro-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Demon Dark Pro" contrast: fg: 94.7 black: 94.7 diff --git a/themes/demon-slayer-light-theme.yaml b/themes/demon-slayer-light-theme.yaml index 7830e4be..b285fc65 100644 --- a/themes/demon-slayer-light-theme.yaml +++ b/themes/demon-slayer-light-theme.yaml @@ -2,7 +2,7 @@ name: "Demon Slayer Light Theme" source: marketplace_id: "TeteDeCactus.demon-slayer-light-theme" version: "0.0.1" - installs: 8483 + installs: 8489 author: "TeteDeCactus" repo: "https://github.com/tetedecactus/VScode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=TeteDeCactus.demon-slayer-light-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 68.5 black: 95.9 diff --git a/themes/denian-theme.yaml b/themes/denian-theme.yaml deleted file mode 100644 index 63229bb8..00000000 --- a/themes/denian-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Denian Theme" -source: - marketplace_id: "denianxd.denianxd" - version: "0.0.27" - installs: 122 - author: "denianxd" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=denianxd.denianxd" -colors: - bg: "#141414" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 79.8 - black: 0 - red: 27 - green: 53.3 - yellow: 85.9 - blue: 27.7 - magenta: 30 - cyan: 47.8 - white: 90.3 - brightBlack: 22.3 - brightRed: 38.8 - brightGreen: 63.8 - brightYellow: 95.9 - brightBlue: 40.3 - brightMagenta: 45.6 - brightCyan: 55.7 - brightWhite: 90.3 diff --git a/themes/desert.yaml b/themes/desert.yaml index 31ddb1fc..7fae5cf4 100644 --- a/themes/desert.yaml +++ b/themes/desert.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 102 black: 0 diff --git a/themes/designcourse-theme.yaml b/themes/designcourse-theme.yaml index 5703d075..14f1a7c1 100644 --- a/themes/designcourse-theme.yaml +++ b/themes/designcourse-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 83.5 black: 0 diff --git a/themes/dessert.yaml b/themes/dessert.yaml index 2afdd6dd..ecc7890c 100644 --- a/themes/dessert.yaml +++ b/themes/dessert.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 64.6 black: 0 diff --git a/themes/deus-ex-md-dark.yaml b/themes/deus-ex-md-dark.yaml index 1d50e89d..27fef5e5 100644 --- a/themes/deus-ex-md-dark.yaml +++ b/themes/deus-ex-md-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 68.9 black: 43.8 diff --git a/themes/dev-dark-fork-fork.yaml b/themes/dev-dark-fork-fork.yaml index 7f61b9ea..948223f9 100644 --- a/themes/dev-dark-fork-fork.yaml +++ b/themes/dev-dark-fork-fork.yaml @@ -2,7 +2,7 @@ name: "Dev+ Dark - Fork - Fork" source: marketplace_id: "Thzin.Thzin-theme" version: "1.0.2" - installs: 2031 + installs: 2034 author: "Thzin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Thzin.Thzin-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/dev-theme-pro-nebula-mist.yaml b/themes/dev-theme-pro-nebula-mist.yaml index a583a8c7..d678b3c9 100644 --- a/themes/dev-theme-pro-nebula-mist.yaml +++ b/themes/dev-theme-pro-nebula-mist.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 73.8 black: 0 diff --git a/themes/dev-theme-pro-nebula-void.yaml b/themes/dev-theme-pro-nebula-void.yaml index 8e4f09a5..c635657e 100644 --- a/themes/dev-theme-pro-nebula-void.yaml +++ b/themes/dev-theme-pro-nebula-void.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 75 black: 0 diff --git a/themes/dev-theme-pro-ocean-mist.yaml b/themes/dev-theme-pro-ocean-mist.yaml index 3739a84b..15a07544 100644 --- a/themes/dev-theme-pro-ocean-mist.yaml +++ b/themes/dev-theme-pro-ocean-mist.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 73.8 black: 0 diff --git a/themes/dev-theme-pro-ocean-void.yaml b/themes/dev-theme-pro-ocean-void.yaml index 4c890fdb..6fc87472 100644 --- a/themes/dev-theme-pro-ocean-void.yaml +++ b/themes/dev-theme-pro-ocean-void.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 75 black: 0 diff --git a/themes/devcode.yaml b/themes/devcode.yaml index b7b9b4f0..6e10c787 100644 --- a/themes/devcode.yaml +++ b/themes/devcode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 102.1 black: 0 diff --git a/themes/developers-theme-fork.yaml b/themes/developers-theme-fork.yaml index 50e86f0c..6a4cc8e0 100644 --- a/themes/developers-theme-fork.yaml +++ b/themes/developers-theme-fork.yaml @@ -2,7 +2,7 @@ name: "Developers theme - Fork" source: marketplace_id: "Rajeshwaran.developer-theme-dark" version: "5.0.0" - installs: 162112 + installs: 162179 author: "Rajeshwaran" repo: "https://github.com/Rajeshwaran2001/developer-theme-dark" url: "https://marketplace.visualstudio.com/items?itemName=Rajeshwaran.developer-theme-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 290 + pair: null contrast: fg: 107.2 black: 19.6 diff --git a/themes/devmedia-dark-modern.yaml b/themes/devmedia-dark-modern.yaml index bf31ec6e..40355ec1 100644 --- a/themes/devmedia-dark-modern.yaml +++ b/themes/devmedia-dark-modern.yaml @@ -2,7 +2,7 @@ name: "DevMedia Dark Modern" source: marketplace_id: "joaomjbraga.devmedia-theme" version: "1.1.0" - installs: 137 + installs: 138 author: "João M J Braga" repo: "https://github.com/joaomjbraga/devmedia-theme" url: "https://marketplace.visualstudio.com/items?itemName=joaomjbraga.devmedia-theme" diff --git a/themes/devmedia-dark.yaml b/themes/devmedia-dark.yaml index eceb7d3e..6d8b7362 100644 --- a/themes/devmedia-dark.yaml +++ b/themes/devmedia-dark.yaml @@ -2,7 +2,7 @@ name: "DevMedia Dark" source: marketplace_id: "joaomjbraga.devmedia-theme" version: "1.1.0" - installs: 137 + installs: 138 author: "João M J Braga" repo: "https://github.com/joaomjbraga/devmedia-theme" url: "https://marketplace.visualstudio.com/items?itemName=joaomjbraga.devmedia-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "DevMedia Light" contrast: fg: 97.7 black: 0 diff --git a/themes/devmedia-light.yaml b/themes/devmedia-light.yaml index cfd499c8..c43652db 100644 --- a/themes/devmedia-light.yaml +++ b/themes/devmedia-light.yaml @@ -2,7 +2,7 @@ name: "DevMedia Light" source: marketplace_id: "joaomjbraga.devmedia-theme" version: "1.1.0" - installs: 137 + installs: 138 author: "João M J Braga" repo: "https://github.com/joaomjbraga/devmedia-theme" url: "https://marketplace.visualstudio.com/items?itemName=joaomjbraga.devmedia-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "DevMedia Dark" contrast: fg: 92.5 black: 96.4 diff --git a/themes/devr.yaml b/themes/devr.yaml index d0841959..486f6743 100644 --- a/themes/devr.yaml +++ b/themes/devr.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 246 + pair: null contrast: fg: 102.1 black: 0 diff --git a/themes/devsena-ultra-dark.yaml b/themes/devsena-ultra-dark.yaml index 8c3ad71a..ab7be301 100644 --- a/themes/devsena-ultra-dark.yaml +++ b/themes/devsena-ultra-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77.1 black: 0 diff --git a/themes/devtheme.yaml b/themes/devtheme.yaml index bccec6c0..7955febf 100644 --- a/themes/devtheme.yaml +++ b/themes/devtheme.yaml @@ -1,49 +1,50 @@ -name: "DevTheme" +name: "devTheme" source: - marketplace_id: "devTheme.devtheme" - version: "0.0.3" - installs: 75 - author: "devTheme" - repo: "https://github.com/mrgold92/devtheme" - url: "https://marketplace.visualstudio.com/items?itemName=devTheme.devtheme" + marketplace_id: "devTH.owlTh" + version: "0.3.0" + installs: 3833 + author: "devTH" + repo: "https://github.com/Ajay-308/devTheme" + url: "https://marketplace.visualstudio.com/items?itemName=devTH.owlTh" colors: - bg: "#353538" - fg: "#D4D4D4" + bg: "#000000" + fg: "#FFFFFF" black: "#000000" red: "#CD3131" - green: "#0DBC79" + green: "#2DE3FF" yellow: "#E5E510" blue: "#2472C8" magenta: "#BC3FBC" cyan: "#11A8CD" white: "#E5E5E5" - brightBlack: "#666666" + brightBlack: "#929292" brightRed: "#F14C4C" - brightGreen: "#23D18B" + brightGreen: "#3EFFF6" brightYellow: "#F5F543" brightBlue: "#3B8EEA" brightMagenta: "#D670D6" brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" + brightWhite: "#6796D1" meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: - fg: 74 + fg: 107.9 black: 0 - red: 21.2 - green: 47.5 - yellow: 80.1 - blue: 22 - magenta: 24.3 - cyan: 42.1 - white: 84.5 - brightBlack: 16.6 - brightRed: 33.1 - brightGreen: 58.1 - brightYellow: 90.2 - brightBlue: 34.5 - brightMagenta: 39.9 - brightCyan: 49.9 - brightWhite: 84.5 + red: 27.7 + green: 78.3 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 43.6 + brightRed: 39.6 + brightGreen: 92.3 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 44.4 diff --git a/themes/devx-dark.yaml b/themes/devx-dark.yaml index 5017f7bb..a65420a0 100644 --- a/themes/devx-dark.yaml +++ b/themes/devx-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 58.2 black: 0 diff --git a/themes/dew-grey.yaml b/themes/dew-grey.yaml index f895803b..06d87a8d 100644 --- a/themes/dew-grey.yaml +++ b/themes/dew-grey.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 269 + pair: null contrast: fg: 103.3 black: 0 diff --git a/themes/dfp-idle.yaml b/themes/dfp-idle.yaml index fe9f4409..9abc8dc5 100644 --- a/themes/dfp-idle.yaml +++ b/themes/dfp-idle.yaml @@ -2,7 +2,7 @@ name: "DFP-IDLE" source: marketplace_id: "anto.dafluffypotato-s-idle-theme" version: "0.0.2" - installs: 990 + installs: 991 author: "anto" repo: null url: "https://marketplace.visualstudio.com/items?itemName=anto.dafluffypotato-s-idle-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 225 + pair: null contrast: fg: 68 black: 0 diff --git a/themes/dhamma-dark.yaml b/themes/dhamma-dark.yaml index 82bbb25b..fc453704 100644 --- a/themes/dhamma-dark.yaml +++ b/themes/dhamma-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Dhamma Light" contrast: fg: 88.7 black: 0 diff --git a/themes/dhamma-light.yaml b/themes/dhamma-light.yaml index f05f108f..af3989b9 100644 --- a/themes/dhamma-light.yaml +++ b/themes/dhamma-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Dhamma Dark" contrast: fg: 92.7 black: 92.7 diff --git a/themes/dharam-gfx-amethyst.yaml b/themes/dharam-gfx-amethyst.yaml deleted file mode 100644 index 3d12ac85..00000000 --- a/themes/dharam-gfx-amethyst.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "dharam-gfx-amethyst" -source: - marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" - version: "0.0.7" - installs: 660 - author: "dharmendra kumar" - repo: "https://github.com/dharam-gfx/dharam-gfx-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" -colors: - bg: "#111418" - fg: "#BEC6D0" - black: "#111418" - red: "#E35535" - green: "#00A884" - yellow: "#C7910C" - blue: "#11B7D4" - magenta: "#D46EC0" - cyan: "#38C7BD" - white: "#BEC6D0" - brightBlack: "#3A4551" - brightRed: "#FF4319" - brightGreen: "#00A884" - brightYellow: "#D39600" - brightBlue: "#00C3E5" - brightMagenta: "#F052D1" - brightCyan: "#12EDDE" - brightWhite: "#F9FAFB" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 70.9 - black: 0 - red: 37 - green: 44.7 - yellow: 47.4 - blue: 54.6 - magenta: 43.6 - cyan: 61.2 - white: 70.9 - brightBlack: 9.1 - brightRed: 40.5 - brightGreen: 44.7 - brightYellow: 51 - brightBlue: 60.9 - brightMagenta: 44.4 - brightCyan: 80.6 - brightWhite: 103.8 diff --git a/themes/dharam-gfx-anthracite.yaml b/themes/dharam-gfx-anthracite.yaml index 19a08a06..19c37319 100644 --- a/themes/dharam-gfx-anthracite.yaml +++ b/themes/dharam-gfx-anthracite.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 74.2 black: 0 diff --git a/themes/dharam-gfx-arc-blueberry.yaml b/themes/dharam-gfx-arc-blueberry.yaml index 2b0f6caf..3b428259 100644 --- a/themes/dharam-gfx-arc-blueberry.yaml +++ b/themes/dharam-gfx-arc-blueberry.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 69 black: 0 diff --git a/themes/dharam-gfx-arc-eggplant.yaml b/themes/dharam-gfx-arc-eggplant.yaml index dea73d34..9ee23923 100644 --- a/themes/dharam-gfx-arc-eggplant.yaml +++ b/themes/dharam-gfx-arc-eggplant.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 298 + pair: null contrast: fg: 70.2 black: 0 diff --git a/themes/dharam-gfx-arc-reversed.yaml b/themes/dharam-gfx-arc-reversed.yaml index 390e262a..17824750 100644 --- a/themes/dharam-gfx-arc-reversed.yaml +++ b/themes/dharam-gfx-arc-reversed.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 75 black: 0 diff --git a/themes/dharam-gfx-hacker-theme.yaml b/themes/dharam-gfx-hacker-theme.yaml index 1eaf5d55..7fc4bb18 100644 --- a/themes/dharam-gfx-hacker-theme.yaml +++ b/themes/dharam-gfx-hacker-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 291 + pair: null contrast: fg: 40 black: 0 diff --git a/themes/dharam-gfx-hight-contrast.yaml b/themes/dharam-gfx-hight-contrast.yaml index 2e849372..a74a3cb5 100644 --- a/themes/dharam-gfx-hight-contrast.yaml +++ b/themes/dharam-gfx-hight-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 281 + pair: null contrast: fg: 101.4 black: 0 diff --git a/themes/dharam-gfx-webdevcody.yaml b/themes/dharam-gfx-webdevcody.yaml index f6971ff4..88b90bff 100644 --- a/themes/dharam-gfx-webdevcody.yaml +++ b/themes/dharam-gfx-webdevcody.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 206 + pair: null contrast: fg: 86.9 black: 0 diff --git a/themes/diabo-theme.yaml b/themes/diabo-theme.yaml index a6ad75ab..b0783d5b 100644 --- a/themes/diabo-theme.yaml +++ b/themes/diabo-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 22 + pair: null contrast: fg: 32.5 black: 0 diff --git a/themes/diamond-theme.yaml b/themes/diamond-theme.yaml index 2382af38..a21d0a34 100644 --- a/themes/diamond-theme.yaml +++ b/themes/diamond-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 315 + pair: null contrast: fg: 102.4 black: 0 diff --git a/themes/digitaliss-italic.yaml b/themes/digitaliss-italic.yaml deleted file mode 100644 index 7a36dc92..00000000 --- a/themes/digitaliss-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "digitaliss Italic" -source: - marketplace_id: "dgtlss.digitaliss" - version: "2.0.2" - installs: 122 - author: "dgtlss" - repo: "https://github.com/dgtlss/digitaliss" - url: "https://marketplace.visualstudio.com/items?itemName=dgtlss.digitaliss" -colors: - bg: "#1A1925" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 288 - contrast: - fg: 79.1 - black: 0 - red: 26.3 - green: 52.6 - yellow: 85.2 - blue: 27.1 - magenta: 29.4 - cyan: 47.2 - white: 89.6 - brightBlack: 21.7 - brightRed: 38.2 - brightGreen: 63.2 - brightYellow: 95.3 - brightBlue: 39.6 - brightMagenta: 45 - brightCyan: 55 - brightWhite: 89.6 diff --git a/themes/digitaliss-light-italic.yaml b/themes/digitaliss-light-italic.yaml deleted file mode 100644 index df0389be..00000000 --- a/themes/digitaliss-light-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "digitaliss Light Italic" -source: - marketplace_id: "dgtlss.digitaliss" - version: "2.0.2" - installs: 122 - author: "dgtlss" - repo: "https://github.com/dgtlss/digitaliss" - url: "https://marketplace.visualstudio.com/items?itemName=dgtlss.digitaliss" -colors: - bg: "#FAFAFA" - fg: "#4A4A4A" - black: "#383A42" - red: "#E45649" - green: "#44A14F" - yellow: "#C18401" - blue: "#4078F2" - magenta: "#A626A4" - cyan: "#0997B3" - white: "#F0F0F3" - brightBlack: "#A0A1A7" - brightRed: "#E45649" - brightGreen: "#50A14F" - brightYellow: "#C18401" - brightBlue: "#5589F5" - brightMagenta: "#A626A4" - brightCyan: "#0184BC" - brightWhite: "#383A42" -meta: - mode: "light" - accent: "pink" - hue: null - contrast: - fg: 87.3 - black: 93.2 - red: 60.4 - green: 56.5 - yellow: 55.8 - blue: 64.3 - magenta: 76.2 - cyan: 58.5 - white: 0 - brightBlack: 47.4 - brightRed: 60.4 - brightGreen: 56 - brightYellow: 55.8 - brightBlue: 57.6 - brightMagenta: 76.2 - brightCyan: 65.1 - brightWhite: 93.2 diff --git a/themes/digitaliss-pastel-italic.yaml b/themes/digitaliss-pastel-italic.yaml deleted file mode 100644 index 2b120b12..00000000 --- a/themes/digitaliss-pastel-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "digitaliss Pastel Italic" -source: - marketplace_id: "dgtlss.digitaliss" - version: "2.0.2" - installs: 122 - author: "dgtlss" - repo: "https://github.com/dgtlss/digitaliss" - url: "https://marketplace.visualstudio.com/items?itemName=dgtlss.digitaliss" -colors: - bg: "#1E1D2B" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 287 - contrast: - fg: 78.6 - black: 0 - red: 25.8 - green: 52.1 - yellow: 84.7 - blue: 26.5 - magenta: 28.9 - cyan: 46.7 - white: 89.1 - brightBlack: 21.1 - brightRed: 37.7 - brightGreen: 62.6 - brightYellow: 94.7 - brightBlue: 39.1 - brightMagenta: 44.5 - brightCyan: 54.5 - brightWhite: 89.1 diff --git a/themes/dimi-theme-dark.yaml b/themes/dimi-theme-dark.yaml index a54d1d41..e1f741c1 100644 --- a/themes/dimi-theme-dark.yaml +++ b/themes/dimi-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 76.4 black: 0 diff --git a/themes/dimi-theme-darker.yaml b/themes/dimi-theme-darker.yaml index 296205a1..b9af9a40 100644 --- a/themes/dimi-theme-darker.yaml +++ b/themes/dimi-theme-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 74.3 black: 0 diff --git a/themes/dimmed-dark-theme.yaml b/themes/dimmed-dark-theme.yaml index ca33db31..29a8d9a4 100644 --- a/themes/dimmed-dark-theme.yaml +++ b/themes/dimmed-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 223 + pair: null contrast: fg: 80 black: 0 diff --git a/themes/dimmed-theme.yaml b/themes/dimmed-theme.yaml index dcb1233e..f952e8c0 100644 --- a/themes/dimmed-theme.yaml +++ b/themes/dimmed-theme.yaml @@ -2,7 +2,7 @@ name: "Dimmed Theme" source: marketplace_id: "AleCaste.dimmed-theme" version: "0.0.16" - installs: 1127 + installs: 1128 author: "AleCaste" repo: "https://github.com/AleCaste/dimmed-theme" url: "https://marketplace.visualstudio.com/items?itemName=AleCaste.dimmed-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 18.3 black: 0 diff --git a/themes/dimmed.yaml b/themes/dimmed.yaml index 48ae41f5..62534f27 100644 --- a/themes/dimmed.yaml +++ b/themes/dimmed.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 105.8 black: 0 diff --git a/themes/dioximo-dark.yaml b/themes/dioximo-dark.yaml index 58911304..e4cb91f2 100644 --- a/themes/dioximo-dark.yaml +++ b/themes/dioximo-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: "Dioximo Light" contrast: fg: 71.1 black: 0 diff --git a/themes/dioximo-light.yaml b/themes/dioximo-light.yaml index 68c3c34f..b05ff7aa 100644 --- a/themes/dioximo-light.yaml +++ b/themes/dioximo-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Dioximo Dark" contrast: fg: 104.5 black: 11.8 diff --git a/themes/discord-theme.yaml b/themes/discord-theme.yaml index 6d70bd0d..cea6f792 100644 --- a/themes/discord-theme.yaml +++ b/themes/discord-theme.yaml @@ -2,7 +2,7 @@ name: "Discord Theme" source: marketplace_id: "tanmay.discord-theme" version: "1.0.6" - installs: 61655 + installs: 61671 author: "tanmay" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tanmay.discord-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 71.3 black: 0 diff --git a/themes/dislexic.yaml b/themes/dislexic.yaml index 4603d5a9..4cab06c1 100644 --- a/themes/dislexic.yaml +++ b/themes/dislexic.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 95.7 black: 99.4 diff --git a/themes/div-s-theme.yaml b/themes/div-s-theme.yaml index c6bc848a..4a76bc95 100644 --- a/themes/div-s-theme.yaml +++ b/themes/div-s-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.4 black: 0 diff --git a/themes/dive-bar.yaml b/themes/dive-bar.yaml index 2bd1b089..c6762728 100644 --- a/themes/dive-bar.yaml +++ b/themes/dive-bar.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 286 + pair: null contrast: fg: 58.3 black: 0 diff --git a/themes/dj-s-purple.yaml b/themes/dj-s-purple.yaml index fa342118..c2523f00 100644 --- a/themes/dj-s-purple.yaml +++ b/themes/dj-s-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 47.2 black: 0 diff --git a/themes/djolof.yaml b/themes/djolof.yaml index f1ba183b..66356ef2 100644 --- a/themes/djolof.yaml +++ b/themes/djolof.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 52.2 black: 0 diff --git a/themes/dna-helix.yaml b/themes/dna-helix.yaml index 4489d9d4..73f8e23b 100644 --- a/themes/dna-helix.yaml +++ b/themes/dna-helix.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 265 + pair: null contrast: fg: 96.3 black: 0 diff --git a/themes/dodimmed-dark.yaml b/themes/dodimmed-dark.yaml index 2606478c..3f7b153c 100644 --- a/themes/dodimmed-dark.yaml +++ b/themes/dodimmed-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107 black: 8.2 diff --git a/themes/doli-universal.yaml b/themes/doli-universal.yaml index 330b205f..d7bcec33 100644 --- a/themes/doli-universal.yaml +++ b/themes/doli-universal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 70.1 black: 0 diff --git a/themes/doli-visual-studio.yaml b/themes/doli-visual-studio.yaml index a1866976..41c121c5 100644 --- a/themes/doli-visual-studio.yaml +++ b/themes/doli-visual-studio.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/dominator-paralyzer.yaml b/themes/dominator-paralyzer.yaml index bd06dfe9..8f768168 100644 --- a/themes/dominator-paralyzer.yaml +++ b/themes/dominator-paralyzer.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 92.5 black: 0 diff --git a/themes/domtheme.yaml b/themes/domtheme.yaml index 392f0419..08fe1de2 100644 --- a/themes/domtheme.yaml +++ b/themes/domtheme.yaml @@ -2,7 +2,7 @@ name: "DomTheme" source: marketplace_id: "DomTheme.DomTheme" version: "0.0.1" - installs: 2261 + installs: 2262 author: "DomTheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DomTheme.DomTheme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 24.3 black: 7.3 diff --git a/themes/doom-one-dark.yaml b/themes/doom-one-dark.yaml index 4e1c19f5..cb96dd85 100644 --- a/themes/doom-one-dark.yaml +++ b/themes/doom-one-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: "Doom One Light" contrast: fg: 65.3 black: 0 diff --git a/themes/doom-one-light.yaml b/themes/doom-one-light.yaml index d23de383..c261215c 100644 --- a/themes/doom-one-light.yaml +++ b/themes/doom-one-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Doom One Dark" contrast: fg: 93.2 black: 100 diff --git a/themes/doom-one.yaml b/themes/doom-one.yaml index 85377040..0a89c5c0 100644 --- a/themes/doom-one.yaml +++ b/themes/doom-one.yaml @@ -1,11 +1,11 @@ name: "Doom One" source: - marketplace_id: "NTBBloodbath.doom-one" + marketplace_id: "L-Nafaryus.doom-one-theme" version: "0.1.1" - installs: 8955 - author: "NTBBloodbath" - repo: "https://github.com/NTBBloodbath/doom-one-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=NTBBloodbath.doom-one" + installs: 2628 + author: "L-Nafaryus" + repo: "https://github.com/L-Nafaryus/doom-one-theme" + url: "https://marketplace.visualstudio.com/items?itemName=L-Nafaryus.doom-one-theme" colors: bg: "#282C34" fg: "#BBC2CF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 65.3 black: 0 diff --git a/themes/dooshtheme.yaml b/themes/dooshtheme.yaml index 10c9b2b0..53d2758d 100644 --- a/themes/dooshtheme.yaml +++ b/themes/dooshtheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/dorkmode.yaml b/themes/dorkmode.yaml index ae53b491..59a72ef8 100644 --- a/themes/dorkmode.yaml +++ b/themes/dorkmode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 248 + pair: null contrast: fg: 103.8 black: 0 diff --git a/themes/dot-developer-dark.yaml b/themes/dot-developer-dark.yaml index 49feee5f..ec954fba 100644 --- a/themes/dot-developer-dark.yaml +++ b/themes/dot-developer-dark.yaml @@ -2,7 +2,7 @@ name: "Dot Developer (Dark)" source: marketplace_id: "n-devs.vscode-dot-developer" version: "1.1.9" - installs: 796 + installs: 797 author: "n-devs" repo: "https://github.com/n-devs/vscode-dot-developer" url: "https://marketplace.visualstudio.com/items?itemName=n-devs.vscode-dot-developer" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 266 + pair: null contrast: fg: 71.4 black: 0 diff --git a/themes/downpour-contrast.yaml b/themes/downpour-contrast.yaml index d1779fb8..f14c9b8b 100644 --- a/themes/downpour-contrast.yaml +++ b/themes/downpour-contrast.yaml @@ -1,11 +1,11 @@ name: "downpour-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#121419" fg: "#D6DBDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 83.4 black: 0 diff --git a/themes/downpour-light.yaml b/themes/downpour-light.yaml index bd550c28..afe57ae7 100644 --- a/themes/downpour-light.yaml +++ b/themes/downpour-light.yaml @@ -1,11 +1,11 @@ name: "downpour-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#D6DBDB" fg: "#2C323D" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 77.4 black: 0 diff --git a/themes/downpour.yaml b/themes/downpour.yaml index 0a9f5906..984317ae 100644 --- a/themes/downpour.yaml +++ b/themes/downpour.yaml @@ -1,11 +1,11 @@ name: "downpour" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2C323D" fg: "#D6DBDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 263 + pair: null contrast: fg: 78.6 black: 0 diff --git a/themes/doxa-code-color-theme.yaml b/themes/doxa-code-color-theme.yaml index 3f1101d9..bbf14e1f 100644 --- a/themes/doxa-code-color-theme.yaml +++ b/themes/doxa-code-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 292 + pair: null contrast: fg: 100.6 black: 0 diff --git a/themes/doyoubleed.yaml b/themes/doyoubleed.yaml index 823f63a8..5b448227 100644 --- a/themes/doyoubleed.yaml +++ b/themes/doyoubleed.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80 black: 0 diff --git a/themes/dr-jones.yaml b/themes/dr-jones.yaml index 6ac155c6..636ad722 100644 --- a/themes/dr-jones.yaml +++ b/themes/dr-jones.yaml @@ -2,7 +2,7 @@ name: "Dr. Jones" source: marketplace_id: "Rachael.rachaels-themes" version: "0.0.2" - installs: 1169 + installs: 1170 author: "Rachael" repo: "https://github.com/rbouissey/rachaelsthemes" url: "https://marketplace.visualstudio.com/items?itemName=Rachael.rachaels-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: 79 + pair: null contrast: fg: 80.8 black: 85.7 diff --git a/themes/draco-dark.yaml b/themes/draco-dark.yaml index 96f8601f..f4bd9d56 100644 --- a/themes/draco-dark.yaml +++ b/themes/draco-dark.yaml @@ -2,7 +2,7 @@ name: "Draco-dark" source: marketplace_id: "Draco.draco-dark" version: "0.0.3" - installs: 6842 + installs: 6845 author: "Draco" repo: "https://github.com/PR7JW7L/vsc-draco-dark" url: "https://marketplace.visualstudio.com/items?itemName=Draco.draco-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 65.5 black: 0 diff --git a/themes/draconica.yaml b/themes/draconica.yaml index 04da4e13..afa54d37 100644 --- a/themes/draconica.yaml +++ b/themes/draconica.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 278 + pair: null contrast: fg: 99 black: 0 diff --git a/themes/dracula-at-dusk.yaml b/themes/dracula-at-dusk.yaml index 41a61acf..096d0000 100644 --- a/themes/dracula-at-dusk.yaml +++ b/themes/dracula-at-dusk.yaml @@ -2,7 +2,7 @@ name: "Dracula At Dusk" source: marketplace_id: "Telokis.theme-dracula-at-dusk" version: "1.0.6" - installs: 12062 + installs: 12064 author: "Telokis" repo: "https://gitlab.com/Telokis/dracula-at-dusk" url: "https://marketplace.visualstudio.com/items?itemName=Telokis.theme-dracula-at-dusk" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 244 + pair: null contrast: fg: 93.9 black: 10.6 diff --git a/themes/dracula-at-midnight.yaml b/themes/dracula-at-midnight.yaml index 116ed7ec..3c80e16f 100644 --- a/themes/dracula-at-midnight.yaml +++ b/themes/dracula-at-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 101 black: 9.3 diff --git a/themes/dracula-at-night.yaml b/themes/dracula-at-night.yaml index a3c22369..34ccb6e0 100644 --- a/themes/dracula-at-night.yaml +++ b/themes/dracula-at-night.yaml @@ -1,11 +1,11 @@ name: "Dracula At Night" source: - marketplace_id: "bceskavich.theme-dracula-at-night" - version: "2.7.1" - installs: 567159 - author: "bceskavich" - repo: "https://github.com/bceskavich/dracula-at-night" - url: "https://marketplace.visualstudio.com/items?itemName=bceskavich.theme-dracula-at-night" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#0E1419" fg: "#F8F8F2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 244 + pair: null contrast: fg: 102.3 black: 10.6 diff --git a/themes/dracula-clean.yaml b/themes/dracula-clean.yaml deleted file mode 100644 index 11d9e8fd..00000000 --- a/themes/dracula-clean.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Dracula Clean" -source: - marketplace_id: "echevarriandre.theme-dracula-clean" - version: "4.0.6" - installs: 34464 - author: "André Echevarria" - repo: "https://github.com/echevarriandre/dracula-clean" - url: "https://marketplace.visualstudio.com/items?itemName=echevarriandre.theme-dracula-clean" -colors: - bg: "#282A36" - fg: "#F8F8F2" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 278 - contrast: - fg: 99 - black: 0 - red: 40.4 - green: 81.9 - yellow: 95.6 - blue: 50.7 - magenta: 51.6 - cyan: 81 - white: 99 - brightBlack: 25.1 - brightRed: 45.9 - brightGreen: 86.1 - brightYellow: 100.6 - brightBlue: 63.2 - brightMagenta: 59.7 - brightCyan: 93.8 - brightWhite: 103.9 diff --git a/themes/dracula-dimmed-color-theme.yaml b/themes/dracula-dimmed-color-theme.yaml index 80c547f8..2dd05158 100644 --- a/themes/dracula-dimmed-color-theme.yaml +++ b/themes/dracula-dimmed-color-theme.yaml @@ -2,7 +2,7 @@ name: "dracula-dimmed-color-theme" source: marketplace_id: "scjorge.theme-dracula-dimmed" version: "0.1.1" - installs: 2025 + installs: 2027 author: "Jorge Silva" repo: "https://github.com/scjorge/dracula-dimmed" url: "https://marketplace.visualstudio.com/items?itemName=scjorge.theme-dracula-dimmed" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 257 + pair: null contrast: fg: 85.9 black: 0 diff --git a/themes/dracula-falcon.yaml b/themes/dracula-falcon.yaml index 3b6245fe..183f2b3a 100644 --- a/themes/dracula-falcon.yaml +++ b/themes/dracula-falcon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 76 black: 0 diff --git a/themes/dracula-gray.yaml b/themes/dracula-gray.yaml index 1051636e..9118cd6e 100644 --- a/themes/dracula-gray.yaml +++ b/themes/dracula-gray.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 275 + pair: null contrast: fg: 35.8 black: 0 diff --git a/themes/dracula-high-contract.yaml b/themes/dracula-high-contract.yaml index 3442bec2..0ade3ddc 100644 --- a/themes/dracula-high-contract.yaml +++ b/themes/dracula-high-contract.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 279 + pair: null contrast: fg: 105.3 black: 0 diff --git a/themes/dracula-light.yaml b/themes/dracula-light.yaml index cbf5ffe6..5e0d5f5a 100644 --- a/themes/dracula-light.yaml +++ b/themes/dracula-light.yaml @@ -2,7 +2,7 @@ name: "Dracula Light" source: marketplace_id: "f-hossen.dracula-theme-light-dark" version: "0.0.2" - installs: 1097 + installs: 1099 author: "Farhad H." repo: "https://github.com/f-hossen/dracula-theme-light-dark" url: "https://marketplace.visualstudio.com/items?itemName=f-hossen.dracula-theme-light-dark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Dracula Dark" contrast: fg: 87.8 black: 0 diff --git a/themes/dracula-midnight.yaml b/themes/dracula-midnight.yaml index f9360e9b..c64e721f 100644 --- a/themes/dracula-midnight.yaml +++ b/themes/dracula-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 281 + pair: null contrast: fg: 99.9 black: 0 diff --git a/themes/dracula-min-light-darker-theme.yaml b/themes/dracula-min-light-darker-theme.yaml index 58b09b65..8f191947 100644 --- a/themes/dracula-min-light-darker-theme.yaml +++ b/themes/dracula-min-light-darker-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.5 black: 0 diff --git a/themes/dracula-min-light-theme.yaml b/themes/dracula-min-light-theme.yaml index 65189775..73107d75 100644 --- a/themes/dracula-min-light-theme.yaml +++ b/themes/dracula-min-light-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.5 black: 0 diff --git a/themes/dracula-min-white-darker-theme.yaml b/themes/dracula-min-white-darker-theme.yaml index e843943f..c91fba55 100644 --- a/themes/dracula-min-white-darker-theme.yaml +++ b/themes/dracula-min-white-darker-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101 black: 0 diff --git a/themes/dracula-min-white-theme.yaml b/themes/dracula-min-white-theme.yaml index 1d65ce94..212d0dd1 100644 --- a/themes/dracula-min-white-theme.yaml +++ b/themes/dracula-min-white-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101 black: 0 diff --git a/themes/dracula-pro-black.yaml b/themes/dracula-pro-black.yaml index e13cfac3..6305270a 100644 --- a/themes/dracula-pro-black.yaml +++ b/themes/dracula-pro-black.yaml @@ -2,7 +2,7 @@ name: "Dracula Pro Black" source: marketplace_id: "caiovellani.dracula-pro-free" version: "1.2.0" - installs: 447 + installs: 448 author: "caiovellani" repo: "https://github.com/caiovellani/dracula-pro" url: "https://marketplace.visualstudio.com/items?itemName=caiovellani.dracula-pro-free" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 103 black: 0 diff --git a/themes/dracula-soft.yaml b/themes/dracula-soft.yaml deleted file mode 100644 index b769f5c8..00000000 --- a/themes/dracula-soft.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "dracula-soft" -source: - marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" - version: "0.0.7" - installs: 660 - author: "dharmendra kumar" - repo: "https://github.com/dharam-gfx/dharam-gfx-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" -colors: - bg: "#282A36" - fg: "#F6F6F4" - black: "#262626" - red: "#EE6666" - green: "#62E884" - yellow: "#E7EE98" - blue: "#BF9EEE" - magenta: "#F286C4" - cyan: "#97E1F1" - white: "#F6F6F4" - brightBlack: "#7B7F8B" - brightRed: "#F07C7C" - brightGreen: "#78F09A" - brightYellow: "#F6F6AE" - brightBlue: "#D6B4F7" - brightMagenta: "#F49DDA" - brightCyan: "#ADF6F6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 278 - contrast: - fg: 97.9 - black: 0 - red: 40.3 - green: 73.5 - yellow: 88.8 - blue: 53.9 - magenta: 52.4 - cyan: 77.5 - white: 97.9 - brightBlack: 30.4 - brightRed: 46.5 - brightGreen: 79.2 - brightYellow: 95.2 - brightBlue: 65.6 - brightMagenta: 60.8 - brightCyan: 89.7 - brightWhite: 103.9 diff --git a/themes/dracula.yaml b/themes/dracula.yaml index 7a03cdb2..2a20a28d 100644 --- a/themes/dracula.yaml +++ b/themes/dracula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: null contrast: fg: 99 black: 0 diff --git a/themes/draculight.yaml b/themes/draculight.yaml index d73daf28..09b949f5 100644 --- a/themes/draculight.yaml +++ b/themes/draculight.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97 black: 101.2 diff --git a/themes/draculish.yaml b/themes/draculish.yaml index 94620989..7391dd83 100644 --- a/themes/draculish.yaml +++ b/themes/draculish.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 261 + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/dragn-dark-color-theme.yaml b/themes/dragn-dark-color-theme.yaml index 97cfe2ba..29f28a54 100644 --- a/themes/dragn-dark-color-theme.yaml +++ b/themes/dragn-dark-color-theme.yaml @@ -2,7 +2,7 @@ name: "Dragn Dark Color Theme" source: marketplace_id: "Miladfathy.dragan-color-theme" version: "2.0.8" - installs: 69755 + installs: 69767 author: "Milad Fathy" repo: "https://github.com/miladfathy" url: "https://marketplace.visualstudio.com/items?itemName=Miladfathy.dragan-color-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 88 black: 0 diff --git a/themes/dragon.yaml b/themes/dragon.yaml index 027af833..b81a0878 100644 --- a/themes/dragon.yaml +++ b/themes/dragon.yaml @@ -2,7 +2,7 @@ name: "Dragon" source: marketplace_id: "sserafy.ttera-themes" version: "2.0.7" - installs: 2036 + installs: 2044 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 66 + pair: null contrast: fg: 82.7 black: 0 diff --git a/themes/dragonfly.yaml b/themes/dragonfly.yaml index dbe71d07..79cda355 100644 --- a/themes/dragonfly.yaml +++ b/themes/dragonfly.yaml @@ -2,7 +2,7 @@ name: "Dragonfly" source: marketplace_id: "thelayeredmind.dragonfly-theme" version: "1.0.1" - installs: 1884 + installs: 1885 author: "thelayeredmind" repo: "https://github.com/thelayeredmind/dragonfly-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thelayeredmind.dragonfly-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 63.6 black: 0 diff --git a/themes/dragonight.yaml b/themes/dragonight.yaml index 07fee3d1..34e837f9 100644 --- a/themes/dragonight.yaml +++ b/themes/dragonight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 273 + pair: null contrast: fg: 90.1 black: 0 diff --git a/themes/drakencord-blue-fork.yaml b/themes/drakencord-blue-fork.yaml index f79fb3ff..7bf23531 100644 --- a/themes/drakencord-blue-fork.yaml +++ b/themes/drakencord-blue-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 258 + pair: null contrast: fg: 89.7 black: 0 diff --git a/themes/draquinho.yaml b/themes/draquinho.yaml index b6087428..ed4dee78 100644 --- a/themes/draquinho.yaml +++ b/themes/draquinho.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 60.7 black: 58.9 diff --git a/themes/dreadbots-fork.yaml b/themes/dreadbots-fork.yaml index 271edd96..817e9bd8 100644 --- a/themes/dreadbots-fork.yaml +++ b/themes/dreadbots-fork.yaml @@ -2,7 +2,7 @@ name: "Dreadbots - Fork" source: marketplace_id: "xynny.blazing-red" version: "0.0.1" - installs: 7922 + installs: 7924 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.blazing-red" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 21 + pair: null contrast: fg: 58.1 black: 0 diff --git a/themes/dreamy-lights.yaml b/themes/dreamy-lights.yaml index fc8db6ef..914ca8f0 100644 --- a/themes/dreamy-lights.yaml +++ b/themes/dreamy-lights.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 102.8 black: 0 diff --git a/themes/dribbble-theme-light.yaml b/themes/dribbble-theme-light.yaml index 5b400f54..26895bc4 100644 --- a/themes/dribbble-theme-light.yaml +++ b/themes/dribbble-theme-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 92.6 black: 106 diff --git a/themes/drifter.yaml b/themes/drifter.yaml index b9167b2d..b9bf36cd 100644 --- a/themes/drifter.yaml +++ b/themes/drifter.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 334 + pair: null contrast: fg: 106.8 black: 0 diff --git a/themes/drk.yaml b/themes/drk.yaml index 968bc1a3..0030ebfa 100644 --- a/themes/drk.yaml +++ b/themes/drk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 107.9 black: 101.3 diff --git a/themes/drukyul-dark.yaml b/themes/drukyul-dark.yaml index 52292648..c91d4af4 100644 --- a/themes/drukyul-dark.yaml +++ b/themes/drukyul-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Drukyul Light" contrast: fg: 102.1 black: 0 diff --git a/themes/drukyul-light.yaml b/themes/drukyul-light.yaml index f873b9b9..7d7266fb 100644 --- a/themes/drukyul-light.yaml +++ b/themes/drukyul-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "teal" hue: null + pair: "Drukyul Dark" contrast: fg: 95.1 black: 97.4 diff --git a/themes/ds-rose.yaml b/themes/ds-rose.yaml index 4a9c9297..115f199f 100644 --- a/themes/ds-rose.yaml +++ b/themes/ds-rose.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 70.8 black: 0 diff --git a/themes/duck-in-the-dream.yaml b/themes/duck-in-the-dream.yaml index 1c1f85e2..9beaeaf4 100644 --- a/themes/duck-in-the-dream.yaml +++ b/themes/duck-in-the-dream.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 296 + pair: null contrast: fg: 95.3 black: 0 diff --git a/themes/duck-in-the-lake.yaml b/themes/duck-in-the-lake.yaml index 7400ed77..23db5a1f 100644 --- a/themes/duck-in-the-lake.yaml +++ b/themes/duck-in-the-lake.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 266 + pair: null contrast: fg: 72 black: 0 diff --git a/themes/duck-story.yaml b/themes/duck-story.yaml index 02447402..3b55fe1e 100644 --- a/themes/duck-story.yaml +++ b/themes/duck-story.yaml @@ -2,7 +2,7 @@ name: "Duck Story" source: marketplace_id: "andzhr.duck-story" version: "1.0.0" - installs: 437 + installs: 438 author: "Andrey Zakharov" repo: "https://github.com/andzhr/duck-story-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andzhr.duck-story" diff --git a/themes/duckcash.yaml b/themes/duckcash.yaml index bf1b6a1c..807b24fd 100644 --- a/themes/duckcash.yaml +++ b/themes/duckcash.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 103.4 black: 0 diff --git a/themes/duckdevlabs.yaml b/themes/duckdevlabs.yaml index f98aab9e..b050d808 100644 --- a/themes/duckdevlabs.yaml +++ b/themes/duckdevlabs.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 75 black: 0 diff --git a/themes/duckeys-blurple.yaml b/themes/duckeys-blurple.yaml index eb2b2b7f..9adb9a84 100644 --- a/themes/duckeys-blurple.yaml +++ b/themes/duckeys-blurple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/ducks.yaml b/themes/ducks.yaml index 76d58137..a59d349b 100644 --- a/themes/ducks.yaml +++ b/themes/ducks.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 42.4 black: 23 diff --git a/themes/ducky-light.yaml b/themes/ducky-light.yaml index b56951b0..189004fc 100644 --- a/themes/ducky-light.yaml +++ b/themes/ducky-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 92.6 black: 17.8 diff --git a/themes/dukana.yaml b/themes/dukana.yaml index c3a4b282..76c349cf 100644 --- a/themes/dukana.yaml +++ b/themes/dukana.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 302 + pair: null contrast: fg: 55.8 black: 0 diff --git a/themes/dukemonokai-color-theme.yaml b/themes/dukemonokai-color-theme.yaml index c05327ab..cf08214e 100644 --- a/themes/dukemonokai-color-theme.yaml +++ b/themes/dukemonokai-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 100.4 black: 0 diff --git a/themes/dull-sun-dark.yaml b/themes/dull-sun-dark.yaml index 793bd74b..68e22216 100644 --- a/themes/dull-sun-dark.yaml +++ b/themes/dull-sun-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 262 + pair: null contrast: fg: 73.3 black: 0 diff --git a/themes/dull-sun-light.yaml b/themes/dull-sun-light.yaml index 3623c4ce..b63dac3b 100644 --- a/themes/dull-sun-light.yaml +++ b/themes/dull-sun-light.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 71.2 black: 0 diff --git a/themes/dull-sun.yaml b/themes/dull-sun.yaml index 262824bb..26e38510 100644 --- a/themes/dull-sun.yaml +++ b/themes/dull-sun.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 265 + pair: null contrast: fg: 72.4 black: 0 diff --git a/themes/dumdum-theme.yaml b/themes/dumdum-theme.yaml index 95147f38..a4536c61 100644 --- a/themes/dumdum-theme.yaml +++ b/themes/dumdum-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77.7 black: 0 diff --git a/themes/dune-arrakis-incandescent.yaml b/themes/dune-arrakis-incandescent.yaml index 93c5c0fb..87af42ba 100644 --- a/themes/dune-arrakis-incandescent.yaml +++ b/themes/dune-arrakis-incandescent.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 75.3 black: 0 diff --git a/themes/dune-bene-gesserit.yaml b/themes/dune-bene-gesserit.yaml index bc974afd..be437589 100644 --- a/themes/dune-bene-gesserit.yaml +++ b/themes/dune-bene-gesserit.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 89.9 black: 0 diff --git a/themes/dune-caladan-storm.yaml b/themes/dune-caladan-storm.yaml index 0cb371da..63d23556 100644 --- a/themes/dune-caladan-storm.yaml +++ b/themes/dune-caladan-storm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 258 + pair: null contrast: fg: 95 black: 0 diff --git a/themes/dune-fremen-sietch.yaml b/themes/dune-fremen-sietch.yaml index bc77c9c2..9e682eee 100644 --- a/themes/dune-fremen-sietch.yaml +++ b/themes/dune-fremen-sietch.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.1 black: 0 diff --git a/themes/dune-giedi-prime.yaml b/themes/dune-giedi-prime.yaml index 3d905656..915d86b2 100644 --- a/themes/dune-giedi-prime.yaml +++ b/themes/dune-giedi-prime.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/dune-guild-navigator.yaml b/themes/dune-guild-navigator.yaml index de0f8e51..e1298a00 100644 --- a/themes/dune-guild-navigator.yaml +++ b/themes/dune-guild-navigator.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 305 + pair: null contrast: fg: 95.1 black: 0 diff --git a/themes/dune-harkonnen.yaml b/themes/dune-harkonnen.yaml index c0b9c6be..a0663a2a 100644 --- a/themes/dune-harkonnen.yaml +++ b/themes/dune-harkonnen.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 82.1 black: 0 diff --git a/themes/dune-house-atreides.yaml b/themes/dune-house-atreides.yaml index f7e1317b..084d2c00 100644 --- a/themes/dune-house-atreides.yaml +++ b/themes/dune-house-atreides.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 253 + pair: null contrast: fg: 94.5 black: 0 diff --git a/themes/dune-ix-technology.yaml b/themes/dune-ix-technology.yaml index d88879da..10d3c37e 100644 --- a/themes/dune-ix-technology.yaml +++ b/themes/dune-ix-technology.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 94.9 black: 0 diff --git a/themes/dune-kaitain.yaml b/themes/dune-kaitain.yaml index 87d9cb1b..2939f62a 100644 --- a/themes/dune-kaitain.yaml +++ b/themes/dune-kaitain.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 214 + pair: null contrast: fg: 63.9 black: 0 diff --git a/themes/dune-mentat.yaml b/themes/dune-mentat.yaml index 25ab78fb..d8923d64 100644 --- a/themes/dune-mentat.yaml +++ b/themes/dune-mentat.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 101.3 black: 0 diff --git a/themes/dune-muad-dib.yaml b/themes/dune-muad-dib.yaml index 8f6d28f6..7cbaa5a9 100644 --- a/themes/dune-muad-dib.yaml +++ b/themes/dune-muad-dib.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 88.9 black: 0 diff --git a/themes/dune-salusa-secundus.yaml b/themes/dune-salusa-secundus.yaml index a1785161..a97c5734 100644 --- a/themes/dune-salusa-secundus.yaml +++ b/themes/dune-salusa-secundus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.9 black: 0 diff --git a/themes/dune-sandworm.yaml b/themes/dune-sandworm.yaml index 2d333383..1e18d4ac 100644 --- a/themes/dune-sandworm.yaml +++ b/themes/dune-sandworm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: 73 + pair: null contrast: fg: 85.1 black: 0 diff --git a/themes/dune-sardaukar-imperial.yaml b/themes/dune-sardaukar-imperial.yaml index 5e6e2afe..5e50c9cd 100644 --- a/themes/dune-sardaukar-imperial.yaml +++ b/themes/dune-sardaukar-imperial.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 93.1 black: 0 diff --git a/themes/dune-spacing-guild.yaml b/themes/dune-spacing-guild.yaml index a3e7be84..aea86194 100644 --- a/themes/dune-spacing-guild.yaml +++ b/themes/dune-spacing-guild.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 95.1 black: 0 diff --git a/themes/dune-spice-vision.yaml b/themes/dune-spice-vision.yaml index 8447f325..0f268461 100644 --- a/themes/dune-spice-vision.yaml +++ b/themes/dune-spice-vision.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 67 + pair: null contrast: fg: 96.7 black: 0 diff --git a/themes/dune-water-of-life.yaml b/themes/dune-water-of-life.yaml index bb0d74e3..e4a5f485 100644 --- a/themes/dune-water-of-life.yaml +++ b/themes/dune-water-of-life.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 258 + pair: null contrast: fg: 97.4 black: 0 diff --git a/themes/duomage.yaml b/themes/duomage.yaml index 7b8131b3..334cf2e8 100644 --- a/themes/duomage.yaml +++ b/themes/duomage.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 103 black: 0 diff --git a/themes/durgonix-dark.yaml b/themes/durgonix-dark.yaml index 669d2756..6a562046 100644 --- a/themes/durgonix-dark.yaml +++ b/themes/durgonix-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77.2 black: 0 diff --git a/themes/dusk-rider.yaml b/themes/dusk-rider.yaml index 64c6e7e2..0ee4c507 100644 --- a/themes/dusk-rider.yaml +++ b/themes/dusk-rider.yaml @@ -2,7 +2,7 @@ name: "Dusk Rider" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 312 + pair: null contrast: fg: 93.5 black: 0 diff --git a/themes/dusk.yaml b/themes/dusk.yaml index 5a2ecd03..c7803a7b 100644 --- a/themes/dusk.yaml +++ b/themes/dusk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 72.1 black: 13.5 diff --git a/themes/duskfox.yaml b/themes/duskfox.yaml index 34a57471..e3e96819 100644 --- a/themes/duskfox.yaml +++ b/themes/duskfox.yaml @@ -2,7 +2,7 @@ name: "Duskfox" source: marketplace_id: "keifererikson.nightfox" version: "0.0.14" - installs: 17378 + installs: 17385 author: "Keifer Erikson" repo: "https://github.com/keifererikson/vscode-nightfox" url: "https://marketplace.visualstudio.com/items?itemName=keifererikson.nightfox" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 288 + pair: null contrast: fg: 74.1 black: 0 diff --git a/themes/dutchtheme.yaml b/themes/dutchtheme.yaml index 889defca..5ba7b90e 100644 --- a/themes/dutchtheme.yaml +++ b/themes/dutchtheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 28.7 black: 0 diff --git a/themes/dynamic.yaml b/themes/dynamic.yaml index 0f8f5968..ba49dd3a 100644 --- a/themes/dynamic.yaml +++ b/themes/dynamic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 256 + pair: null contrast: fg: 104.6 black: 0 diff --git a/themes/dyno-cute.yaml b/themes/dyno-cute.yaml index f3b75acd..fb765177 100644 --- a/themes/dyno-cute.yaml +++ b/themes/dyno-cute.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 265 + pair: null contrast: fg: 53.3 black: 0 diff --git a/themes/dyno.yaml b/themes/dyno.yaml index ac877e3e..47b96c13 100644 --- a/themes/dyno.yaml +++ b/themes/dyno.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 251 + pair: null contrast: fg: 101.3 black: 0 diff --git a/themes/dzsolarized-dark.yaml b/themes/dzsolarized-dark.yaml index 58f06afa..3711fa04 100644 --- a/themes/dzsolarized-dark.yaml +++ b/themes/dzsolarized-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 224 + pair: null contrast: fg: 41.4 black: 0 diff --git a/themes/dzsolarized.yaml b/themes/dzsolarized.yaml index ee1a2444..493cb582 100644 --- a/themes/dzsolarized.yaml +++ b/themes/dzsolarized.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 71.6 black: 97 diff --git a/themes/earl-grey.yaml b/themes/earl-grey.yaml index fc8e7ac1..f0c7df48 100644 --- a/themes/earl-grey.yaml +++ b/themes/earl-grey.yaml @@ -2,7 +2,7 @@ name: "Earl Grey" source: marketplace_id: "EarlGrey.earl-grey" version: "1.0.1" - installs: 3413 + installs: 3414 author: "Earl Grey" repo: "https://github.com/earl-grey-theme/earl-grey-vsc" url: "https://marketplace.visualstudio.com/items?itemName=EarlGrey.earl-grey" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 81.2 black: 81.2 diff --git a/themes/early-riser.yaml b/themes/early-riser.yaml index f513b8a3..48e06661 100644 --- a/themes/early-riser.yaml +++ b/themes/early-riser.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 65 black: 86.7 diff --git a/themes/earth-brown-stability-grounding.yaml b/themes/earth-brown-stability-grounding.yaml index 8e5c6f93..d52a493e 100644 --- a/themes/earth-brown-stability-grounding.yaml +++ b/themes/earth-brown-stability-grounding.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 56 + pair: null contrast: fg: 94.4 black: 0 diff --git a/themes/earthsong-contrast.yaml b/themes/earthsong-contrast.yaml index 622255bc..24cf9b33 100644 --- a/themes/earthsong-contrast.yaml +++ b/themes/earthsong-contrast.yaml @@ -1,11 +1,11 @@ name: "earthsong-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#12100F" fg: "#EBD1B7" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 80.8 black: 0 diff --git a/themes/earthsong-light.yaml b/themes/earthsong-light.yaml index a2d41875..eaee4cfe 100644 --- a/themes/earthsong-light.yaml +++ b/themes/earthsong-light.yaml @@ -1,11 +1,11 @@ name: "earthsong-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#4D463E" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 91.5 black: 0 diff --git a/themes/earthsong.yaml b/themes/earthsong.yaml index 3b198173..726a78c5 100644 --- a/themes/earthsong.yaml +++ b/themes/earthsong.yaml @@ -1,11 +1,11 @@ name: "earthsong" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#36312C" fg: "#EBD1B7" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 67 + pair: null contrast: fg: 75.7 black: 0 diff --git a/themes/easy-eye.yaml b/themes/easy-eye.yaml index c44f15b5..ad377f96 100644 --- a/themes/easy-eye.yaml +++ b/themes/easy-eye.yaml @@ -2,7 +2,7 @@ name: "Easy Eye" source: marketplace_id: "SufficientDaikon.sufficentdaikon-darkpp" version: "1.3.5" - installs: 698 + installs: 699 author: "SufficientDaikon" repo: "https://github.com/SufficientDaikon/Black-Void_VSCode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SufficientDaikon.sufficentdaikon-darkpp" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72.6 black: 0 diff --git a/themes/easy-eyes-color-theme.yaml b/themes/easy-eyes-color-theme.yaml index ff05fa8d..cfbafa0c 100644 --- a/themes/easy-eyes-color-theme.yaml +++ b/themes/easy-eyes-color-theme.yaml @@ -2,7 +2,7 @@ name: "easy-eyes-color-theme" source: marketplace_id: "vvhg1.theme-easy-eyes" version: "1.2.1" - installs: 5650 + installs: 5656 author: "vvhg1" repo: "https://github.com/vvhg1/easyeyes" url: "https://marketplace.visualstudio.com/items?itemName=vvhg1.theme-easy-eyes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72.1 black: 0 diff --git a/themes/easy-light.yaml b/themes/easy-light.yaml index 36cc09c3..d25d211f 100644 --- a/themes/easy-light.yaml +++ b/themes/easy-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 82.7 black: 82.7 diff --git a/themes/ebizome.yaml b/themes/ebizome.yaml index 529f6316..f632f629 100644 --- a/themes/ebizome.yaml +++ b/themes/ebizome.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 333 + pair: null contrast: fg: 85.4 black: 13.7 diff --git a/themes/ebullience.yaml b/themes/ebullience.yaml deleted file mode 100644 index be8a0adc..00000000 --- a/themes/ebullience.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Ebullience" -source: - marketplace_id: "Nash0810.ebullience" - version: "0.0.7" - installs: 22 - author: "Nash" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Nash0810.ebullience" -colors: - bg: "#202020" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 105.8 - black: 0 - red: 25.6 - green: 51.9 - yellow: 84.5 - blue: 26.3 - magenta: 28.6 - cyan: 46.4 - white: 88.9 - brightBlack: 20.9 - brightRed: 37.4 - brightGreen: 62.4 - brightYellow: 94.5 - brightBlue: 38.9 - brightMagenta: 44.3 - brightCyan: 54.3 - brightWhite: 88.9 diff --git a/themes/eclipsa.yaml b/themes/eclipsa.yaml index fc03265d..86721d21 100644 --- a/themes/eclipsa.yaml +++ b/themes/eclipsa.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 64.7 black: 0 diff --git a/themes/eclipse-dark-darker.yaml b/themes/eclipse-dark-darker.yaml index 5f8b08c6..a7b88477 100644 --- a/themes/eclipse-dark-darker.yaml +++ b/themes/eclipse-dark-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 73.8 black: 10.3 diff --git a/themes/eclipse-dark-flat.yaml b/themes/eclipse-dark-flat.yaml index debb918a..9db418e2 100644 --- a/themes/eclipse-dark-flat.yaml +++ b/themes/eclipse-dark-flat.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 273 + pair: null contrast: fg: 76.3 black: 17.4 diff --git a/themes/eclipse-flare.yaml b/themes/eclipse-flare.yaml index b752f60f..68880fda 100644 --- a/themes/eclipse-flare.yaml +++ b/themes/eclipse-flare.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/eclipse-optics.yaml b/themes/eclipse-optics.yaml index df94e189..f95bc2c6 100644 --- a/themes/eclipse-optics.yaml +++ b/themes/eclipse-optics.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 72.6 black: 0 diff --git a/themes/eclipse-penumbra.yaml b/themes/eclipse-penumbra.yaml index b6f7fc44..04fddff7 100644 --- a/themes/eclipse-penumbra.yaml +++ b/themes/eclipse-penumbra.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 257 + pair: null contrast: fg: 96.4 black: 0 diff --git a/themes/eclipse-umbra.yaml b/themes/eclipse-umbra.yaml index 4b42b135..f24ba88b 100644 --- a/themes/eclipse-umbra.yaml +++ b/themes/eclipse-umbra.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/edge-dark-aura.yaml b/themes/edge-dark-aura.yaml index 80e1e1f5..99bb9703 100644 --- a/themes/edge-dark-aura.yaml +++ b/themes/edge-dark-aura.yaml @@ -2,7 +2,7 @@ name: "Edge Dark (Aura)" source: marketplace_id: "sainnhe.edge" version: "0.1.8" - installs: 20558 + installs: 20560 author: "sainnhe" repo: "https://github.com/sainnhe/edge-vscode" url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 276 + pair: null contrast: fg: 71.3 black: 0 diff --git a/themes/edge-dark-neon.yaml b/themes/edge-dark-neon.yaml index bb387b3d..b6ba88c7 100644 --- a/themes/edge-dark-neon.yaml +++ b/themes/edge-dark-neon.yaml @@ -2,7 +2,7 @@ name: "Edge Dark (Neon)" source: marketplace_id: "sainnhe.edge" version: "0.1.8" - installs: 20558 + installs: 20560 author: "sainnhe" repo: "https://github.com/sainnhe/edge-vscode" url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 71.2 black: 0 diff --git a/themes/edge-dark.yaml b/themes/edge-dark.yaml index 04fbb8d3..e1c0b334 100644 --- a/themes/edge-dark.yaml +++ b/themes/edge-dark.yaml @@ -2,7 +2,7 @@ name: "Edge Dark" source: marketplace_id: "sainnhe.edge" version: "0.1.8" - installs: 20558 + installs: 20560 author: "sainnhe" repo: "https://github.com/sainnhe/edge-vscode" url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: "Edge Light" contrast: fg: 71.1 black: 0 diff --git a/themes/edge-light.yaml b/themes/edge-light.yaml index 7140da76..d0be4e47 100644 --- a/themes/edge-light.yaml +++ b/themes/edge-light.yaml @@ -2,7 +2,7 @@ name: "Edge Light" source: marketplace_id: "sainnhe.edge" version: "0.1.8" - installs: 20558 + installs: 20560 author: "sainnhe" repo: "https://github.com/sainnhe/edge-vscode" url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Edge Dark" contrast: fg: 85 black: 0 diff --git a/themes/edgerunner.yaml b/themes/edgerunner.yaml index 6e51df4b..21a0b909 100644 --- a/themes/edgerunner.yaml +++ b/themes/edgerunner.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 137 + pair: null contrast: fg: 80.1 black: 0 diff --git a/themes/editor.yaml b/themes/editor.yaml index 1e0e3912..d50aa4aa 100644 --- a/themes/editor.yaml +++ b/themes/editor.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 51.4 black: 0 diff --git a/themes/edu4dev-vscode-theme-color.yaml b/themes/edu4dev-vscode-theme-color.yaml index 556fed87..b3974e03 100644 --- a/themes/edu4dev-vscode-theme-color.yaml +++ b/themes/edu4dev-vscode-theme-color.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 96.8 black: 0 diff --git a/themes/eerie.yaml b/themes/eerie.yaml deleted file mode 100644 index aabda9b1..00000000 --- a/themes/eerie.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Eerie" -source: - marketplace_id: "Priyaank.radiancexx" - version: "1.1.0" - installs: 68 - author: "Priyaank" - repo: "https://github.com/PRIYAANK2510/Radiance" - url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.radiancexx" -colors: - bg: "#18181F" - fg: "#70708F" - black: "#262626" - red: "#C03D3D" - green: "#27923B" - yellow: "#BE8939" - blue: "#2A70BC" - magenta: "#9F399F" - cyan: "#2D9EBA" - white: "#A9A9A9" - brightBlack: "#383838" - brightRed: "#E64343" - brightGreen: "#30B649" - brightYellow: "#E4A546" - brightBlue: "#338BEA" - brightMagenta: "#BE47BE" - brightCyan: "#38C0E2" - brightWhite: "#C0C0C0" -meta: - mode: "dark" - accent: "pink" - hue: 285 - contrast: - fg: 27.4 - black: 0 - red: 25.3 - green: 33.7 - yellow: 43.1 - blue: 25.9 - magenta: 21.9 - cyan: 42.6 - white: 54.5 - brightBlack: 0 - brightRed: 34.5 - brightGreen: 49.6 - brightYellow: 59 - brightBlue: 38.5 - brightMagenta: 31.2 - brightCyan: 59.4 - brightWhite: 67.4 diff --git a/themes/eezoterial-dark.yaml b/themes/eezoterial-dark.yaml index b61ade93..65b88f17 100644 --- a/themes/eezoterial-dark.yaml +++ b/themes/eezoterial-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 272 + pair: "eezoterial light" contrast: fg: 55.2 black: 0 diff --git a/themes/eezoterial-light.yaml b/themes/eezoterial-light.yaml index a00470a5..19f36a01 100644 --- a/themes/eezoterial-light.yaml +++ b/themes/eezoterial-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 279 + pair: "eezoterial dark" contrast: fg: 71.2 black: 91.5 diff --git a/themes/ef-dark.yaml b/themes/ef-dark.yaml index 55699ee9..c217559d 100644 --- a/themes/ef-dark.yaml +++ b/themes/ef-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Ef Light" contrast: fg: 78.1 black: 78.1 diff --git a/themes/ef-day.yaml b/themes/ef-day.yaml index ce715bd4..b248fd92 100644 --- a/themes/ef-day.yaml +++ b/themes/ef-day.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Ef Night" contrast: fg: 86.4 black: 86.4 diff --git a/themes/ef-deuteranopia-dark.yaml b/themes/ef-deuteranopia-dark.yaml index df2226a0..6e1a8b79 100644 --- a/themes/ef-deuteranopia-dark.yaml +++ b/themes/ef-deuteranopia-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 256 + pair: "Ef Deuteranopia Light" contrast: fg: 86.6 black: 86.6 diff --git a/themes/ef-deuteranopia-light.yaml b/themes/ef-deuteranopia-light.yaml index 43d2777c..318ef7d9 100644 --- a/themes/ef-deuteranopia-light.yaml +++ b/themes/ef-deuteranopia-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Ef Deuteranopia Dark" contrast: fg: 98.4 black: 98.4 diff --git a/themes/ef-duo-dark.yaml b/themes/ef-duo-dark.yaml index ae0b13a8..83b50ece 100644 --- a/themes/ef-duo-dark.yaml +++ b/themes/ef-duo-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 294 + pair: "Ef Duo Light" contrast: fg: 78 black: 78 diff --git a/themes/ef-duo-light.yaml b/themes/ef-duo-light.yaml index 16bef7db..51652019 100644 --- a/themes/ef-duo-light.yaml +++ b/themes/ef-duo-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Ef Duo Dark" contrast: fg: 99.3 black: 99.3 diff --git a/themes/ef-elea-dark.yaml b/themes/ef-elea-dark.yaml index ce57062a..e7bf7a12 100644 --- a/themes/ef-elea-dark.yaml +++ b/themes/ef-elea-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Ef Elea Light" contrast: fg: 95.3 black: 95.3 diff --git a/themes/ef-elea-light.yaml b/themes/ef-elea-light.yaml index 63ee14b0..61a974db 100644 --- a/themes/ef-elea-light.yaml +++ b/themes/ef-elea-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Ef Elea Dark" contrast: fg: 96.8 black: 96.8 diff --git a/themes/ef-light.yaml b/themes/ef-light.yaml index e8e31ae1..65bfad65 100644 --- a/themes/ef-light.yaml +++ b/themes/ef-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Ef Dark" contrast: fg: 103.3 black: 103.3 diff --git a/themes/ef-maris-dark.yaml b/themes/ef-maris-dark.yaml index 9745d4df..eb11b57f 100644 --- a/themes/ef-maris-dark.yaml +++ b/themes/ef-maris-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 260 + pair: "Ef Maris Light" contrast: fg: 94.2 black: 94.2 diff --git a/themes/ef-maris-light.yaml b/themes/ef-maris-light.yaml index 3b72c1e4..74e7c230 100644 --- a/themes/ef-maris-light.yaml +++ b/themes/ef-maris-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Ef Maris Dark" contrast: fg: 97 black: 97 diff --git a/themes/ef-melissa-dark.yaml b/themes/ef-melissa-dark.yaml index bc5eb3b7..24458cb3 100644 --- a/themes/ef-melissa-dark.yaml +++ b/themes/ef-melissa-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 68 + pair: "Ef Melissa Light" contrast: fg: 85.2 black: 85.2 diff --git a/themes/ef-melissa-light.yaml b/themes/ef-melissa-light.yaml index 0f37b518..1cc8ee10 100644 --- a/themes/ef-melissa-light.yaml +++ b/themes/ef-melissa-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "Ef Melissa Dark" contrast: fg: 87.3 black: 87.3 diff --git a/themes/ef-night.yaml b/themes/ef-night.yaml index f3c727c0..b9d8b6ba 100644 --- a/themes/ef-night.yaml +++ b/themes/ef-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 232 + pair: "Ef Day" contrast: fg: 64.6 black: 64.6 diff --git a/themes/ef-trio-dark.yaml b/themes/ef-trio-dark.yaml index 3cb8bc34..5fe3210f 100644 --- a/themes/ef-trio-dark.yaml +++ b/themes/ef-trio-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 18 + pair: "Ef Trio Light" contrast: fg: 78.4 black: 78.4 diff --git a/themes/ef-trio-light.yaml b/themes/ef-trio-light.yaml index 01687485..bb2cf8ce 100644 --- a/themes/ef-trio-light.yaml +++ b/themes/ef-trio-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Ef Trio Dark" contrast: fg: 89.2 black: 89.2 diff --git a/themes/ef-tritanopia-dark.yaml b/themes/ef-tritanopia-dark.yaml index 941b9016..ba1eda78 100644 --- a/themes/ef-tritanopia-dark.yaml +++ b/themes/ef-tritanopia-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 343 + pair: "Ef Tritanopia Light" contrast: fg: 80.1 black: 80.1 diff --git a/themes/ef-tritanopia-light.yaml b/themes/ef-tritanopia-light.yaml index 319a2176..a3a49d9b 100644 --- a/themes/ef-tritanopia-light.yaml +++ b/themes/ef-tritanopia-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "Ef Tritanopia Dark" contrast: fg: 101.5 black: 101.5 diff --git a/themes/eggsplo1t.yaml b/themes/eggsplo1t.yaml index eb6e2828..04989ec3 100644 --- a/themes/eggsplo1t.yaml +++ b/themes/eggsplo1t.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 313 + pair: null contrast: fg: 107.8 black: 0 diff --git a/themes/eh-s-website-theme.yaml b/themes/eh-s-website-theme.yaml index 9ecf2103..763a0b39 100644 --- a/themes/eh-s-website-theme.yaml +++ b/themes/eh-s-website-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 92 + pair: null contrast: fg: 53.1 black: 85.1 diff --git a/themes/eidolon-alter.yaml b/themes/eidolon-alter.yaml deleted file mode 100644 index cfe20b53..00000000 --- a/themes/eidolon-alter.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Eidolon Alter" -source: - marketplace_id: "eidolon.eidolon-theme" - version: "4.0.8" - installs: 110 - author: "Eurico Magalhães Neto" - repo: "https://github.com/Eurico77/eidolon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=eidolon.eidolon-theme" -colors: - bg: "#12121F" - fg: "#DADDFF" - black: "#1D1D2F" - red: "#BD4277" - green: "#74D2B7" - yellow: "#E5DCA4" - blue: "#87BFF7" - magenta: "#9486E4" - cyan: "#9BE9F8" - white: "#D4D7FF" - brightBlack: "#4F5071" - brightRed: "#BF4A7F" - brightGreen: "#7ED7C0" - brightYellow: "#ECDFAC" - brightBlue: "#8FC8FA" - brightMagenta: "#9F95E9" - brightCyan: "#AAECF8" - brightWhite: "#DADDFF" -meta: - mode: "dark" - accent: "red" - hue: 284 - contrast: - fg: 86.6 - black: 0 - red: 27.4 - green: 68.6 - yellow: 83.9 - blue: 64.6 - magenta: 43.3 - cyan: 85.2 - white: 83.2 - brightBlack: 14.6 - brightRed: 29.3 - brightGreen: 71.9 - brightYellow: 86.4 - brightBlue: 69.3 - brightMagenta: 49.8 - brightCyan: 87.9 - brightWhite: 86.6 diff --git a/themes/eidolon-less-dark.yaml b/themes/eidolon-less-dark.yaml index 89c9a33f..04bb3737 100644 --- a/themes/eidolon-less-dark.yaml +++ b/themes/eidolon-less-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 85.4 black: 0 diff --git a/themes/eigen-color-theme.yaml b/themes/eigen-color-theme.yaml index b0c01643..692136e8 100644 --- a/themes/eigen-color-theme.yaml +++ b/themes/eigen-color-theme.yaml @@ -2,7 +2,7 @@ name: "eigen-color-theme" source: marketplace_id: "eesov.eigengrau" version: "0.0.3" - installs: 4121 + installs: 4123 author: "Igor Sotsugov" repo: "https://github.com/sotsugov/eigengrau" url: "https://marketplace.visualstudio.com/items?itemName=eesov.eigengrau" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 85.2 black: 0 diff --git a/themes/ein.yaml b/themes/ein.yaml index d5190a69..0ed46e57 100644 --- a/themes/ein.yaml +++ b/themes/ein.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77.7 black: 0 diff --git a/themes/eink.yaml b/themes/eink.yaml index 2ef0fbb2..51bf45b4 100644 --- a/themes/eink.yaml +++ b/themes/eink.yaml @@ -2,7 +2,7 @@ name: "eink" source: marketplace_id: "henderjon.eink" version: "0.0.5" - installs: 349 + installs: 350 author: "henderjon" repo: "https://github.com/henderjon/eink" url: "https://marketplace.visualstudio.com/items?itemName=henderjon.eink" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 73.5 black: 97.7 diff --git a/themes/ekim.yaml b/themes/ekim.yaml index e4330ffc..a76f07d7 100644 --- a/themes/ekim.yaml +++ b/themes/ekim.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/eldar1984.yaml b/themes/eldar1984.yaml index 6ac429b6..c15d6e8e 100644 --- a/themes/eldar1984.yaml +++ b/themes/eldar1984.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 93 black: 0 diff --git a/themes/elderberry.yaml b/themes/elderberry.yaml index f65def68..8ca97a4c 100644 --- a/themes/elderberry.yaml +++ b/themes/elderberry.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 281 + pair: null contrast: fg: 72.1 black: 0 diff --git a/themes/eldritch-dark.yaml b/themes/eldritch-dark.yaml index a02883d5..b28e7547 100644 --- a/themes/eldritch-dark.yaml +++ b/themes/eldritch-dark.yaml @@ -2,7 +2,7 @@ name: "Eldritch Dark" source: marketplace_id: "Eldritch.eldritch" version: "1.1.1" - installs: 1477 + installs: 1478 author: "Eldritch" repo: "https://github.com/eldritch-theme/eldritch" url: "https://marketplace.visualstudio.com/items?itemName=Eldritch.eldritch" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: null contrast: fg: 101.2 black: 0 diff --git a/themes/eldritch.yaml b/themes/eldritch.yaml index 154d4e81..d21df55f 100644 --- a/themes/eldritch.yaml +++ b/themes/eldritch.yaml @@ -2,7 +2,7 @@ name: "Eldritch" source: marketplace_id: "Eldritch.eldritch" version: "1.1.1" - installs: 1477 + installs: 1478 author: "Eldritch" repo: "https://github.com/eldritch-theme/eldritch" url: "https://marketplace.visualstudio.com/items?itemName=Eldritch.eldritch" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 99.7 black: 0 diff --git a/themes/electric-blue.yaml b/themes/electric-blue.yaml index 7567fb3b..6d052817 100644 --- a/themes/electric-blue.yaml +++ b/themes/electric-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 265 + pair: null contrast: fg: 96.3 black: 0 diff --git a/themes/electric-dreams.yaml b/themes/electric-dreams.yaml index 3ef47344..7d748cca 100644 --- a/themes/electric-dreams.yaml +++ b/themes/electric-dreams.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 78.6 black: 0 diff --git a/themes/electric-labs.yaml b/themes/electric-labs.yaml index e2afb642..05c31d3e 100644 --- a/themes/electric-labs.yaml +++ b/themes/electric-labs.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 86.5 black: 16.2 diff --git a/themes/electric-sheep.yaml b/themes/electric-sheep.yaml index 30dcc6e8..833d9e15 100644 --- a/themes/electric-sheep.yaml +++ b/themes/electric-sheep.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 258 + pair: null contrast: fg: 97.8 black: 0 diff --git a/themes/electric-violet-fork.yaml b/themes/electric-violet-fork.yaml index 5ceb2f68..790c6a04 100644 --- a/themes/electric-violet-fork.yaml +++ b/themes/electric-violet-fork.yaml @@ -2,7 +2,7 @@ name: "Electric Violet - Fork" source: marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" version: "9.0.1" - installs: 29903 + installs: 29917 author: "Hasibur R" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 277 + pair: null contrast: fg: 76 black: 0 diff --git a/themes/electron-highlighter.yaml b/themes/electron-highlighter.yaml index 62af749c..3d52b2e5 100644 --- a/themes/electron-highlighter.yaml +++ b/themes/electron-highlighter.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 96.3 black: 0 diff --git a/themes/electron-vue.yaml b/themes/electron-vue.yaml index 88187c9c..fec01c7b 100644 --- a/themes/electron-vue.yaml +++ b/themes/electron-vue.yaml @@ -1,11 +1,11 @@ name: "Electron vue" source: - marketplace_id: "icao.electron-vue" - version: "3.2.0" - installs: 49016 - author: "icao" - repo: "https://github.com/icao/electron-vue" - url: "https://marketplace.visualstudio.com/items?itemName=icao.electron-vue" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#1B202C" fg: "#BAC7E4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 267 + pair: null contrast: fg: 70.4 black: 0 diff --git a/themes/electronic-moonlight-theme-borders.yaml b/themes/electronic-moonlight-theme-borders.yaml index b8652ef3..92405c54 100644 --- a/themes/electronic-moonlight-theme-borders.yaml +++ b/themes/electronic-moonlight-theme-borders.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 78 black: 0 diff --git a/themes/eleganceu.yaml b/themes/eleganceu.yaml index b2c111f3..fc3eb469 100644 --- a/themes/eleganceu.yaml +++ b/themes/eleganceu.yaml @@ -2,7 +2,7 @@ name: "ELEGANCEu" source: marketplace_id: "ELEGANCEu.eleganceu-darkpurpletheme" version: "0.0.2" - installs: 278 + installs: 281 author: "ELEGANCEu" repo: "https://github.com/ELEGANCEu/temaDarkPurple" url: "https://marketplace.visualstudio.com/items?itemName=ELEGANCEu.eleganceu-darkpurpletheme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 57.4 black: 0 diff --git a/themes/elegant-black.yaml b/themes/elegant-black.yaml index 38ffa7e6..46b57cbe 100644 --- a/themes/elegant-black.yaml +++ b/themes/elegant-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 88.7 black: 0 diff --git a/themes/elegant-red.yaml b/themes/elegant-red.yaml index 002c2363..4439d2f1 100644 --- a/themes/elegant-red.yaml +++ b/themes/elegant-red.yaml @@ -2,7 +2,7 @@ name: "Elegant Red" source: marketplace_id: "hudadamar21.monokai-red-moon" version: "1.0.0" - installs: 2317 + installs: 2319 author: "hudadamar21" repo: "https://themes.vscode.one/theme/hudadamar21/29medjnT" url: "https://marketplace.visualstudio.com/items?itemName=hudadamar21.monokai-red-moon" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 37.6 diff --git a/themes/eleganterror404.yaml b/themes/eleganterror404.yaml index d4e0ca22..80984bc7 100644 --- a/themes/eleganterror404.yaml +++ b/themes/eleganterror404.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 19 + pair: null contrast: fg: 105.2 black: 0 diff --git a/themes/elementary.yaml b/themes/elementary.yaml index c041211a..2b0e3f52 100644 --- a/themes/elementary.yaml +++ b/themes/elementary.yaml @@ -2,7 +2,7 @@ name: "Elementary" source: marketplace_id: "rdnlsmith.linux-themes" version: "1.3.0" - installs: 41699 + installs: 41712 author: "rdnlsmith" repo: "https://github.com/rdnlsmith/vscode-arc-theme" url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 76.9 black: 71.6 diff --git a/themes/elementowl.yaml b/themes/elementowl.yaml index 35681350..f013cd94 100644 --- a/themes/elementowl.yaml +++ b/themes/elementowl.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 103 black: 96.6 diff --git a/themes/elements.yaml b/themes/elements.yaml index 4a8158ef..11a77e3f 100644 --- a/themes/elements.yaml +++ b/themes/elements.yaml @@ -1,11 +1,11 @@ name: "Elements" source: - marketplace_id: "gordonhch.elements-vscode-theme" - version: "1.0.2" - installs: 6037 + marketplace_id: "gordonhch.elements" + version: "0.0.1" + installs: 1 author: "Gordon Ho" repo: "https://github.com/gordonhch/elements-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=gordonhch.elements-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=gordonhch.elements" colors: bg: "#0E151B" fg: "#D6DEEB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 245 + pair: null contrast: fg: 85.5 black: 0 diff --git a/themes/elf-dream.yaml b/themes/elf-dream.yaml index 2bdcf8a5..ca51244a 100644 --- a/themes/elf-dream.yaml +++ b/themes/elf-dream.yaml @@ -2,7 +2,7 @@ name: "Elf Dream" source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" - installs: 80 + installs: 81 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 83.9 black: 83.9 diff --git a/themes/elhassan-neon-cyan.yaml b/themes/elhassan-neon-cyan.yaml index e3aa38d1..e75f737f 100644 --- a/themes/elhassan-neon-cyan.yaml +++ b/themes/elhassan-neon-cyan.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 243 + pair: null contrast: fg: 93.4 black: 0 diff --git a/themes/elhassan-neon-dark-professional.yaml b/themes/elhassan-neon-dark-professional.yaml index 3f1b126c..7d171b4f 100644 --- a/themes/elhassan-neon-dark-professional.yaml +++ b/themes/elhassan-neon-dark-professional.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 283 + pair: "Elhassan Neon Light Professional" contrast: fg: 88.9 black: 0 diff --git a/themes/elhassan-neon-light-professional.yaml b/themes/elhassan-neon-light-professional.yaml index 87b16d40..7bd6f840 100644 --- a/themes/elhassan-neon-light-professional.yaml +++ b/themes/elhassan-neon-light-professional.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Elhassan Neon Dark Professional" contrast: fg: 97.4 black: 95.7 diff --git a/themes/elhassan-neon-magenta.yaml b/themes/elhassan-neon-magenta.yaml index 6a70757c..5d2edc16 100644 --- a/themes/elhassan-neon-magenta.yaml +++ b/themes/elhassan-neon-magenta.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 297 + pair: null contrast: fg: 86.2 black: 0 diff --git a/themes/elhassan-neon-purple.yaml b/themes/elhassan-neon-purple.yaml index f87b47a8..9a792df8 100644 --- a/themes/elhassan-neon-purple.yaml +++ b/themes/elhassan-neon-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 301 + pair: null contrast: fg: 80.9 black: 0 diff --git a/themes/elixir-theme-no-italics-less-dark-2.yaml b/themes/elixir-theme-no-italics-less-dark-2.yaml deleted file mode 100644 index 453ebb84..00000000 --- a/themes/elixir-theme-no-italics-less-dark-2.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "elixir-theme-no-italics-less-dark-2" -source: - marketplace_id: "maiquitome.elixir-theme" - version: "0.12.0" - installs: 9237 - author: "Maiqui Tomé" - repo: "https://github.com/maiquitome/vscode_elixir_theme" - url: "https://marketplace.visualstudio.com/items?itemName=maiquitome.elixir-theme" -colors: - bg: "#201B2D" - fg: "#8F93A2" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#464B5D" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 296 - contrast: - fg: 42.4 - black: 0 - red: 42.8 - green: 83.4 - yellow: 78.1 - blue: 55.1 - magenta: 52.9 - cyan: 77.4 - white: 106.1 - brightBlack: 10.7 - brightRed: 42.8 - brightGreen: 83.4 - brightYellow: 78.1 - brightBlue: 55.1 - brightMagenta: 52.9 - brightCyan: 77.4 - brightWhite: 106.1 diff --git a/themes/elixir-theme-no-italics.yaml b/themes/elixir-theme-no-italics.yaml index 0a24767a..05407e5e 100644 --- a/themes/elixir-theme-no-italics.yaml +++ b/themes/elixir-theme-no-italics.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 268 + pair: null contrast: fg: 44.1 black: 0 diff --git a/themes/elly.yaml b/themes/elly.yaml index 6d26721e..cc2d60f6 100644 --- a/themes/elly.yaml +++ b/themes/elly.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 233 + pair: null contrast: fg: 46.5 black: 0 diff --git a/themes/elypink-dark-faded.yaml b/themes/elypink-dark-faded.yaml index 586b7690..d2055f2a 100644 --- a/themes/elypink-dark-faded.yaml +++ b/themes/elypink-dark-faded.yaml @@ -2,7 +2,7 @@ name: "Elypink Dark (Faded)" source: marketplace_id: "barineco.elypink-theme" version: "0.6.0" - installs: 37 + installs: 38 author: "barineco" repo: "https://github.com/barineco/elypink-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Elypink Light (Faded)" contrast: fg: 50.4 black: 0 diff --git a/themes/elypink-dark.yaml b/themes/elypink-dark.yaml index 1ba1c933..89ee06e4 100644 --- a/themes/elypink-dark.yaml +++ b/themes/elypink-dark.yaml @@ -2,7 +2,7 @@ name: "Elypink Dark" source: marketplace_id: "barineco.elypink-theme" version: "0.6.0" - installs: 37 + installs: 38 author: "barineco" repo: "https://github.com/barineco/elypink-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 346 + pair: "Elypink Light" contrast: fg: 49.7 black: 0 diff --git a/themes/elypink-light-diamond.yaml b/themes/elypink-light-diamond.yaml index 8703c9ef..4e505a6e 100644 --- a/themes/elypink-light-diamond.yaml +++ b/themes/elypink-light-diamond.yaml @@ -2,7 +2,7 @@ name: "Elypink Light (Diamond)" source: marketplace_id: "barineco.elypink-theme" version: "0.6.0" - installs: 37 + installs: 38 author: "barineco" repo: "https://github.com/barineco/elypink-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 52.8 black: 94.2 diff --git a/themes/elypink-light-faded.yaml b/themes/elypink-light-faded.yaml index 76545413..a6f18af7 100644 --- a/themes/elypink-light-faded.yaml +++ b/themes/elypink-light-faded.yaml @@ -2,7 +2,7 @@ name: "Elypink Light (Faded)" source: marketplace_id: "barineco.elypink-theme" version: "0.6.0" - installs: 37 + installs: 38 author: "barineco" repo: "https://github.com/barineco/elypink-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "Elypink Dark (Faded)" contrast: fg: 64.7 black: 93.3 diff --git a/themes/elypink-light-spring.yaml b/themes/elypink-light-spring.yaml index ecf717f9..4f0f8b3b 100644 --- a/themes/elypink-light-spring.yaml +++ b/themes/elypink-light-spring.yaml @@ -2,7 +2,7 @@ name: "Elypink Light (Spring)" source: marketplace_id: "barineco.elypink-theme" version: "0.6.0" - installs: 37 + installs: 38 author: "barineco" repo: "https://github.com/barineco/elypink-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 63 black: 92 diff --git a/themes/elypink-light-summer.yaml b/themes/elypink-light-summer.yaml index e3802594..b4d8e421 100644 --- a/themes/elypink-light-summer.yaml +++ b/themes/elypink-light-summer.yaml @@ -2,7 +2,7 @@ name: "Elypink Light (Summer)" source: marketplace_id: "barineco.elypink-theme" version: "0.6.0" - installs: 37 + installs: 38 author: "barineco" repo: "https://github.com/barineco/elypink-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 64.2 black: 91.9 diff --git a/themes/elypink-light.yaml b/themes/elypink-light.yaml index d6441be1..c9f0d605 100644 --- a/themes/elypink-light.yaml +++ b/themes/elypink-light.yaml @@ -2,7 +2,7 @@ name: "Elypink Light" source: marketplace_id: "barineco.elypink-theme" version: "0.6.0" - installs: 37 + installs: 38 author: "barineco" repo: "https://github.com/barineco/elypink-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "Elypink Dark" contrast: fg: 63.8 black: 91.9 diff --git a/themes/ember.yaml b/themes/ember.yaml index ba05892b..52317f16 100644 --- a/themes/ember.yaml +++ b/themes/ember.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 81.6 black: 0 diff --git a/themes/emberstone-dark-theme.yaml b/themes/emberstone-dark-theme.yaml index f17feecc..775743b7 100644 --- a/themes/emberstone-dark-theme.yaml +++ b/themes/emberstone-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 93.9 black: 28.7 diff --git a/themes/emberstone.yaml b/themes/emberstone.yaml index ba1ca648..1722d6d2 100644 --- a/themes/emberstone.yaml +++ b/themes/emberstone.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 239 + pair: null contrast: fg: 77.6 black: 0 diff --git a/themes/emerald-fork.yaml b/themes/emerald-fork.yaml index e910ad12..4ee1a7d1 100644 --- a/themes/emerald-fork.yaml +++ b/themes/emerald-fork.yaml @@ -2,7 +2,7 @@ name: "EMERALD - Fork" source: marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" version: "9.0.1" - installs: 29903 + installs: 29917 author: "Hasibur R" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 88.6 black: 0 diff --git a/themes/emerald-matrix.yaml b/themes/emerald-matrix.yaml index d5a0d05f..231f07b8 100644 --- a/themes/emerald-matrix.yaml +++ b/themes/emerald-matrix.yaml @@ -2,7 +2,7 @@ name: "Emerald Matrix" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 195 + pair: null contrast: fg: 79.4 black: 0 diff --git a/themes/emerald.yaml b/themes/emerald.yaml index 2475a75b..b2f0296f 100644 --- a/themes/emerald.yaml +++ b/themes/emerald.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 172 + pair: null contrast: fg: 105.2 black: 0 diff --git a/themes/emeralds.yaml b/themes/emeralds.yaml index 5b76bbd1..8e3d1b99 100644 --- a/themes/emeralds.yaml +++ b/themes/emeralds.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.2 black: 0 diff --git a/themes/emi-theme.yaml b/themes/emi-theme.yaml index 36648313..4c9b012c 100644 --- a/themes/emi-theme.yaml +++ b/themes/emi-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 295 + pair: null contrast: fg: 51.2 black: 0 diff --git a/themes/enchant-high-contrast.yaml b/themes/enchant-high-contrast.yaml index fd3b3147..21ebeaed 100644 --- a/themes/enchant-high-contrast.yaml +++ b/themes/enchant-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 88.2 black: 0 diff --git a/themes/enchant.yaml b/themes/enchant.yaml index 2988f50a..c79af007 100644 --- a/themes/enchant.yaml +++ b/themes/enchant.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 87.5 black: 0 diff --git a/themes/encom.yaml b/themes/encom.yaml index cd3ba46f..ab894fc3 100644 --- a/themes/encom.yaml +++ b/themes/encom.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 44.7 black: 0 diff --git a/themes/end-color-theme.yaml b/themes/end-color-theme.yaml index e5c9dc2c..cca5ca21 100644 --- a/themes/end-color-theme.yaml +++ b/themes/end-color-theme.yaml @@ -2,7 +2,7 @@ name: "End-color-theme" source: marketplace_id: "hzao.theme-end" version: "0.3.0" - installs: 3155 + installs: 3158 author: "hzao" repo: "https://github.com/hezeao/theme-end" url: "https://marketplace.visualstudio.com/items?itemName=hzao.theme-end" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 98.1 black: 0 diff --git a/themes/endeavouros-breeze-dark.yaml b/themes/endeavouros-breeze-dark.yaml index cdf30521..a2227851 100644 --- a/themes/endeavouros-breeze-dark.yaml +++ b/themes/endeavouros-breeze-dark.yaml @@ -1,15 +1,15 @@ name: "EndeavourOS Breeze Dark" source: - marketplace_id: "jordojordo.endeavouros-dark" - version: "0.1.2" - installs: 271 + marketplace_id: "jordojordo.endeavouros-dark-vscode-theme" + version: "0.1.0" + installs: 10 author: "Jordon Leach" repo: "https://github.com/jordojordo/endeavouros-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jordojordo.endeavouros-dark" + url: "https://marketplace.visualstudio.com/items?itemName=jordojordo.endeavouros-dark-vscode-theme" colors: - bg: "#222529" + bg: "#08042A" fg: "#E3E3EA" - black: "#222529" + black: "#08042A" red: "#FF7F7F" green: "#27AE60" yellow: "#F67400" @@ -28,22 +28,23 @@ colors: meta: mode: "dark" accent: "red" - hue: null + hue: 279 + pair: null contrast: - fg: 87.2 + fg: 89.7 black: 0 - red: 51.6 - green: 44.5 - yellow: 45.4 - blue: 60.3 - magenta: 27.3 - cyan: 18.5 - white: 87.2 - brightBlack: 95.1 - brightRed: 51.6 - brightGreen: 44.5 - brightYellow: 45.4 - brightBlue: 38.8 - brightMagenta: 27.3 - brightCyan: 18.5 - brightWhite: 105 + red: 54.1 + green: 47 + yellow: 47.9 + blue: 62.8 + magenta: 29.8 + cyan: 21 + white: 89.7 + brightBlack: 97.6 + brightRed: 54.1 + brightGreen: 47 + brightYellow: 47.9 + brightBlue: 41.4 + brightMagenta: 29.8 + brightCyan: 21 + brightWhite: 107.5 diff --git a/themes/endeavouros-dark-high-contrast.yaml b/themes/endeavouros-dark-high-contrast.yaml index cc1225cf..710f4794 100644 --- a/themes/endeavouros-dark-high-contrast.yaml +++ b/themes/endeavouros-dark-high-contrast.yaml @@ -2,7 +2,7 @@ name: "EndeavourOS Dark High Contrast" source: marketplace_id: "jordojordo.endeavouros-dark" version: "0.1.2" - installs: 271 + installs: 272 author: "Jordon Leach" repo: "https://github.com/jordojordo/endeavouros-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jordojordo.endeavouros-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/endeavouros-dark-night-shift.yaml b/themes/endeavouros-dark-night-shift.yaml index c0effdd7..10720d52 100644 --- a/themes/endeavouros-dark-night-shift.yaml +++ b/themes/endeavouros-dark-night-shift.yaml @@ -2,7 +2,7 @@ name: "EndeavourOS Dark Night Shift" source: marketplace_id: "jordojordo.endeavouros-dark" version: "0.1.2" - installs: 271 + installs: 272 author: "Jordon Leach" repo: "https://github.com/jordojordo/endeavouros-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jordojordo.endeavouros-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/endless-iris.yaml b/themes/endless-iris.yaml index 9295a9c0..7a8126b1 100644 --- a/themes/endless-iris.yaml +++ b/themes/endless-iris.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 104 black: 102.1 diff --git a/themes/energy-red-colorblind-passion-alertness.yaml b/themes/energy-red-colorblind-passion-alertness.yaml deleted file mode 100644 index f5f191d9..00000000 --- a/themes/energy-red-colorblind-passion-alertness.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Energy Red Colorblind - Passion & Alertness" -source: - marketplace_id: "akashbadole.dev-ideas-themes" - version: "2.1.1" - installs: 406 - author: "akashbadole" - repo: "https://github.com/akashsbadole/dev-psychology-themes" - url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" -colors: - bg: "#1A0505" - fg: "#FFEBEE" - black: "#263238" - red: "#F44336" - green: "#4CAF50" - yellow: "#FFEB3B" - blue: "#2196F3" - magenta: "#E91E63" - cyan: "#00BCD4" - white: "#ECEFF1" - brightBlack: "#D32F2F" - brightRed: "#FF5252" - brightGreen: "#69F0AE" - brightYellow: "#FFFF00" - brightBlue: "#448AFF" - brightMagenta: "#FF4081" - brightCyan: "#18FFFF" - brightWhite: "#EEEEEE" -meta: - mode: "dark" - accent: "red" - hue: 23 - contrast: - fg: 97.5 - black: 0 - red: 38.4 - green: 48.3 - yellow: 93 - blue: 43.7 - magenta: 33.3 - cyan: 57.2 - white: 96.8 - brightBlack: 28.5 - brightRed: 43.5 - brightGreen: 82.7 - brightYellow: 102.4 - brightBlue: 41.2 - brightMagenta: 42.1 - brightCyan: 91.9 - brightWhite: 96.4 diff --git a/themes/energy-red-light-passion-alertness.yaml b/themes/energy-red-light-passion-alertness.yaml index 25a38350..bb86692f 100644 --- a/themes/energy-red-light-passion-alertness.yaml +++ b/themes/energy-red-light-passion-alertness.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 100.9 black: 94.8 diff --git a/themes/enhanced-hubspot-theme.yaml b/themes/enhanced-hubspot-theme.yaml index 6a97a2b4..2f441090 100644 --- a/themes/enhanced-hubspot-theme.yaml +++ b/themes/enhanced-hubspot-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 250 + pair: null contrast: fg: 97.2 black: 0 diff --git a/themes/enhanced-material-batman.yaml b/themes/enhanced-material-batman.yaml index d0da44ca..6cb56564 100644 --- a/themes/enhanced-material-batman.yaml +++ b/themes/enhanced-material-batman.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 58.9 black: 0 diff --git a/themes/enhanced-material-fork.yaml b/themes/enhanced-material-fork.yaml index 7a2f1618..3eee136e 100644 --- a/themes/enhanced-material-fork.yaml +++ b/themes/enhanced-material-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79 black: 0 diff --git a/themes/enhanced-material.yaml b/themes/enhanced-material.yaml deleted file mode 100644 index 45cd279c..00000000 --- a/themes/enhanced-material.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Enhanced Material" -source: - marketplace_id: "aviksaikat.material-tweaked" - version: "0.0.1" - installs: 109 - author: "avik_saikat" - repo: "https://github.com/Aviksaikat/Vscode-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=aviksaikat.material-tweaked" -colors: - bg: "#292C3E" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 277 - contrast: - fg: 103.4 - black: 0 - red: 23.3 - green: 49.5 - yellow: 82.2 - blue: 24 - magenta: 26.3 - cyan: 44.1 - white: 86.6 - brightBlack: 18.6 - brightRed: 35.1 - brightGreen: 60.1 - brightYellow: 92.2 - brightBlue: 36.5 - brightMagenta: 41.9 - brightCyan: 51.9 - brightWhite: 86.6 diff --git a/themes/enki-night-owl.yaml b/themes/enki-night-owl.yaml index 03dc2238..45d19338 100644 --- a/themes/enki-night-owl.yaml +++ b/themes/enki-night-owl.yaml @@ -1,11 +1,11 @@ name: "Enki Night Owl" source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3734 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + marketplace_id: "enkia.enki-vscode-theme" + version: "0.5.0" + installs: 12063 + author: "enkia" + repo: "https://github.com/enkia/enki-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" colors: bg: "#011627" fg: "#D6DEEB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 244 + pair: null contrast: fg: 85.3 black: 0 diff --git a/themes/enki-rainbow-bro.yaml b/themes/enki-rainbow-bro.yaml deleted file mode 100644 index 3304156a..00000000 --- a/themes/enki-rainbow-bro.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Enki Rainbow Bro" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3734 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#19191F" - fg: "#9699A8" - black: "#595D78" - red: "#C33C4A" - green: "#0F8976" - yellow: "#CA9B55" - blue: "#50B4E6" - magenta: "#6D3B66" - cyan: "#7ED6F9" - white: "#707386" - brightBlack: "#595D78" - brightRed: "#C33C4A" - brightGreen: "#0F8976" - brightYellow: "#CA9B55" - brightBlue: "#6582AF" - brightMagenta: "#9D599D" - brightCyan: "#7ED6F9" - brightWhite: "#707386" -meta: - mode: "dark" - accent: "orange" - hue: 285 - contrast: - fg: 46.2 - black: 18.6 - red: 25.9 - green: 31 - yellow: 51.4 - blue: 55.1 - magenta: 11.9 - cyan: 73.7 - white: 27.9 - brightBlack: 18.6 - brightRed: 25.9 - brightGreen: 31 - brightYellow: 51.4 - brightBlue: 33.9 - brightMagenta: 27.2 - brightCyan: 73.7 - brightWhite: 27.9 diff --git a/themes/enki-red.yaml b/themes/enki-red.yaml index 817b1b16..950ae80e 100644 --- a/themes/enki-red.yaml +++ b/themes/enki-red.yaml @@ -1,11 +1,11 @@ name: "Enki Red" source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3734 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + marketplace_id: "enkia.enki-vscode-theme" + version: "0.5.0" + installs: 12063 + author: "enkia" + repo: "https://github.com/enkia/enki-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" colors: bg: "#19191F" fg: "#9699A8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 46.2 black: 32.3 diff --git a/themes/enki.yaml b/themes/enki.yaml index 20c1a28a..541a16c6 100644 --- a/themes/enki.yaml +++ b/themes/enki.yaml @@ -1,11 +1,11 @@ name: "Enki" source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3734 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + marketplace_id: "enkia.enki-vscode-theme" + version: "0.5.0" + installs: 12063 + author: "enkia" + repo: "https://github.com/enkia/enki-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" colors: bg: "#19191F" fg: "#9699A8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 46.2 black: 18.6 diff --git a/themes/enough.yaml b/themes/enough.yaml index 56eb5e8c..b4d6a92d 100644 --- a/themes/enough.yaml +++ b/themes/enough.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 106 black: 0 diff --git a/themes/enova.yaml b/themes/enova.yaml index 99af8291..f5814406 100644 --- a/themes/enova.yaml +++ b/themes/enova.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.2 black: 0 diff --git a/themes/entropic-theme.yaml b/themes/entropic-theme.yaml index 54b8c255..933c3739 100644 --- a/themes/entropic-theme.yaml +++ b/themes/entropic-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 80.1 black: 16.1 diff --git a/themes/eon-react.yaml b/themes/eon-react.yaml index adca95ff..9bd6ed19 100644 --- a/themes/eon-react.yaml +++ b/themes/eon-react.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 57.6 black: 0 diff --git a/themes/eon-theme-second.yaml b/themes/eon-theme-second.yaml index e1e46d65..8cee5a8e 100644 --- a/themes/eon-theme-second.yaml +++ b/themes/eon-theme-second.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 247 + pair: null contrast: fg: 91.1 black: 0 diff --git a/themes/eon-theme-v4.yaml b/themes/eon-theme-v4.yaml index d3daba80..d210a78f 100644 --- a/themes/eon-theme-v4.yaml +++ b/themes/eon-theme-v4.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 245 + pair: null contrast: fg: 90.8 black: 0 diff --git a/themes/eon-theme.yaml b/themes/eon-theme.yaml index 839c0ad7..f08b0391 100644 --- a/themes/eon-theme.yaml +++ b/themes/eon-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 247 + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/epsilon.yaml b/themes/epsilon.yaml index 861fc7c5..051b4f09 100644 --- a/themes/epsilon.yaml +++ b/themes/epsilon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 58.5 black: 0 diff --git a/themes/equinox-dark.yaml b/themes/equinox-dark.yaml index 52e74305..6734205f 100644 --- a/themes/equinox-dark.yaml +++ b/themes/equinox-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Equinox Light" contrast: fg: 54.8 black: 0 diff --git a/themes/equinox-light.yaml b/themes/equinox-light.yaml index 7c97a2ba..530470c8 100644 --- a/themes/equinox-light.yaml +++ b/themes/equinox-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Equinox Dark" contrast: fg: 76.4 black: 72.7 diff --git a/themes/eralith.yaml b/themes/eralith.yaml index 4045b4c1..ff832738 100644 --- a/themes/eralith.yaml +++ b/themes/eralith.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 309 + pair: null contrast: fg: 76.9 black: 0 diff --git a/themes/erikwdevtheme-color-theme.yaml b/themes/erikwdevtheme-color-theme.yaml index 3aa3731b..10562d52 100644 --- a/themes/erikwdevtheme-color-theme.yaml +++ b/themes/erikwdevtheme-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 279 + pair: null contrast: fg: 72.5 black: 0 diff --git a/themes/eritbh-s-theme.yaml b/themes/eritbh-s-theme.yaml index 848ae4c8..c1c067f9 100644 --- a/themes/eritbh-s-theme.yaml +++ b/themes/eritbh-s-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 89.3 black: 0 diff --git a/themes/errordark.yaml b/themes/errordark.yaml index 9705ad18..c16d21ef 100644 --- a/themes/errordark.yaml +++ b/themes/errordark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 280 + pair: null contrast: fg: 72.5 black: 0 diff --git a/themes/errrrrm.yaml b/themes/errrrrm.yaml index 70866d49..d20a416d 100644 --- a/themes/errrrrm.yaml +++ b/themes/errrrrm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/escook-theme-light.yaml b/themes/escook-theme-light.yaml index 197901b5..76042478 100644 --- a/themes/escook-theme-light.yaml +++ b/themes/escook-theme-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 69.2 black: 103 diff --git a/themes/espresso-dark-theme.yaml b/themes/espresso-dark-theme.yaml index 83c79469..10c5f13e 100644 --- a/themes/espresso-dark-theme.yaml +++ b/themes/espresso-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Espresso Dark Theme" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 284 + pair: null contrast: fg: 81.5 black: 0 diff --git a/themes/espresso-dark.yaml b/themes/espresso-dark.yaml index cc0ad2a8..9f6ed465 100644 --- a/themes/espresso-dark.yaml +++ b/themes/espresso-dark.yaml @@ -2,7 +2,7 @@ name: "Espresso Dark" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 44 + pair: null contrast: fg: 71.1 black: 0 diff --git a/themes/etec-pfa-light.yaml b/themes/etec-pfa-light.yaml index 44e59eeb..f9168414 100644 --- a/themes/etec-pfa-light.yaml +++ b/themes/etec-pfa-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 78.8 diff --git a/themes/eternal-autumn.yaml b/themes/eternal-autumn.yaml index 56561c4d..fcbf5b0c 100644 --- a/themes/eternal-autumn.yaml +++ b/themes/eternal-autumn.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 323 + pair: null contrast: fg: 60.7 black: 0 diff --git a/themes/eternal-summer.yaml b/themes/eternal-summer.yaml index 5d6563eb..e6a3882f 100644 --- a/themes/eternal-summer.yaml +++ b/themes/eternal-summer.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 83 + pair: null contrast: fg: 77.8 black: 0 diff --git a/themes/eternals-no-italic.yaml b/themes/eternals-no-italic.yaml index 78873429..1a0cbf9b 100644 --- a/themes/eternals-no-italic.yaml +++ b/themes/eternals-no-italic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 267 + pair: null contrast: fg: 69 black: 0 diff --git a/themes/ethanli-turquoise-dark.yaml b/themes/ethanli-turquoise-dark.yaml index d241d981..55cddcbd 100644 --- a/themes/ethanli-turquoise-dark.yaml +++ b/themes/ethanli-turquoise-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 235 + pair: null contrast: fg: 97.8 black: 0 diff --git a/themes/ethereal.yaml b/themes/ethereal.yaml index a071fc4f..633b1ae3 100644 --- a/themes/ethereal.yaml +++ b/themes/ethereal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 329 + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/ethereum-dark-blue-theme.yaml b/themes/ethereum-dark-blue-theme.yaml index 147d827e..71ad35fe 100644 --- a/themes/ethereum-dark-blue-theme.yaml +++ b/themes/ethereum-dark-blue-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 249 + pair: null contrast: fg: 27.6 black: 0 diff --git a/themes/ethereum-dark-grey-theme.yaml b/themes/ethereum-dark-grey-theme.yaml index 2117f69a..ecebfcb8 100644 --- a/themes/ethereum-dark-grey-theme.yaml +++ b/themes/ethereum-dark-grey-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 315 + pair: null contrast: fg: 46.7 black: 0 diff --git a/themes/eva-01-berserk-theme.yaml b/themes/eva-01-berserk-theme.yaml index dde032e4..88b34b4f 100644 --- a/themes/eva-01-berserk-theme.yaml +++ b/themes/eva-01-berserk-theme.yaml @@ -2,7 +2,7 @@ name: "EVA-01 Berserk Theme" source: marketplace_id: "engr.eva-unit-01-berserk-theme" version: "0.1.0" - installs: 590 + installs: 591 author: "engr" repo: "https://github.com/engrx0/eva-unit01-berserk-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=engr.eva-unit-01-berserk-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 292 + pair: null contrast: fg: 85.1 black: 0 diff --git a/themes/eva-01.yaml b/themes/eva-01.yaml index 7eb33561..2a4b087b 100644 --- a/themes/eva-01.yaml +++ b/themes/eva-01.yaml @@ -2,7 +2,7 @@ name: "EVA-01" source: marketplace_id: "kvx.evangelion-unit-eva-01-theme" version: "0.1.2" - installs: 748 + installs: 751 author: "kvx" repo: "https://github.com/luqezr/eva-01-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kvx.evangelion-unit-eva-01-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 289 + pair: null contrast: fg: 99.6 black: 0 diff --git a/themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml b/themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml index ca98c338..e4419dae 100644 --- a/themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml +++ b/themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml @@ -2,7 +2,7 @@ name: "EVA Unit-02 Theme (Enhanced Red & Grey Variation)" source: marketplace_id: "engr.neon-genesis-evangelion-themes" version: "0.3.0" - installs: 1737 + installs: 1739 author: "engr" repo: "https://github.com/engrx0/neon-genesis-evangelion-vscode-theme-extension" url: "https://marketplace.visualstudio.com/items?itemName=engr.neon-genesis-evangelion-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 94.4 black: 0 diff --git a/themes/evans-dark-theme.yaml b/themes/evans-dark-theme.yaml index b0023ea4..c6cf4db1 100644 --- a/themes/evans-dark-theme.yaml +++ b/themes/evans-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 235 + pair: null contrast: fg: 81.9 black: 0 diff --git a/themes/eve.yaml b/themes/eve.yaml index 998885ef..48a7e57c 100644 --- a/themes/eve.yaml +++ b/themes/eve.yaml @@ -1,49 +1,50 @@ name: "Eve" source: - marketplace_id: "origin.adam" - version: "0.1.2" - installs: 1985 - author: "Ricardo Brito" - repo: "https://github.com/souzk/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=origin.adam" + marketplace_id: "ItsSunnyMonster.sm-bunker" + version: "1.1.7" + installs: 1773 + author: "ItsSunnyMonster" + repo: "https://github.com/ItsSunnyMonster/dobri-next-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ItsSunnyMonster.sm-bunker" colors: - bg: "#FCFCFD" - fg: "#9393A8" - black: "#787892" - red: "#F7768E" - green: "#79F391" - yellow: "#FFDB89" - blue: "#8DDDFF" - magenta: "#B1B2FF" - cyan: "#8DDDFF" - white: "#FCFCFD" - brightBlack: "#9393A8" - brightRed: "#F7768E" - brightGreen: "#79F391" - brightYellow: "#FFDB89" - brightBlue: "#8DDDFF" - brightMagenta: "#B1B2FF" - brightCyan: "#8DDDFF" - brightWhite: "#F7F7F8" + bg: "#0B1015" + fg: "#97A7C8" + black: "#05080A" + red: "#FB467B" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#CB6CFE" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FB467B" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#CB6CFE" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" meta: - mode: "light" - accent: "green" - hue: null + mode: "dark" + accent: "magenta" + hue: 249 + pair: null contrast: - fg: 55.1 - black: 67.9 - red: 49.2 - green: 17.2 - yellow: 14.6 - blue: 21.9 - magenta: 36.1 - cyan: 21.9 - white: 0 - brightBlack: 55.1 - brightRed: 49.2 - brightGreen: 17.2 - brightYellow: 14.6 - brightBlue: 21.9 - brightMagenta: 36.1 - brightCyan: 21.9 - brightWhite: 0 + fg: 53.9 + black: 0 + red: 41.7 + green: 84.8 + yellow: 79.5 + blue: 56.5 + magenta: 45.9 + cyan: 78.9 + white: 107.5 + brightBlack: 27 + brightRed: 41.7 + brightGreen: 84.8 + brightYellow: 79.5 + brightBlue: 56.5 + brightMagenta: 45.9 + brightCyan: 78.9 + brightWhite: 107.5 diff --git a/themes/evening-sky.yaml b/themes/evening-sky.yaml index e38bcef9..4372e819 100644 --- a/themes/evening-sky.yaml +++ b/themes/evening-sky.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 299 + pair: null contrast: fg: 77.3 black: 0 diff --git a/themes/everforest-dark.yaml b/themes/everforest-dark.yaml deleted file mode 100644 index 8f834354..00000000 --- a/themes/everforest-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Everforest Dark" -source: - marketplace_id: "johnull.blackforest" - version: "0.0.2" - installs: 1527 - author: "johnull" - repo: "https://github.com/johnull/everforest-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=johnull.blackforest" -colors: - bg: "#000000" - fg: "#D3C6AA" - black: "#343F44" - red: "#E67E80" - green: "#A7C080" - yellow: "#DBBC7F" - blue: "#7FBBB3" - magenta: "#D699B6" - cyan: "#83C092" - white: "#D3C6AA" - brightBlack: "#859289" - brightRed: "#E67E80" - brightGreen: "#A7C080" - brightYellow: "#DBBC7F" - brightBlue: "#7FBBB3" - brightMagenta: "#D699B6" - brightCyan: "#83C092" - brightWhite: "#D3C6AA" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 72.7 - black: 7.5 - red: 49.2 - green: 63.6 - yellow: 68.5 - blue: 59.5 - magenta: 56.6 - cyan: 60.8 - white: 72.7 - brightBlack: 42 - brightRed: 49.2 - brightGreen: 63.6 - brightYellow: 68.5 - brightBlue: 59.5 - brightMagenta: 56.6 - brightCyan: 60.8 - brightWhite: 72.7 diff --git a/themes/everforest-light.yaml b/themes/everforest-light.yaml deleted file mode 100644 index 695e0d58..00000000 --- a/themes/everforest-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Everforest Light" -source: - marketplace_id: "sainnhe.everforest" - version: "0.3.0" - installs: 123139 - author: "sainnhe" - repo: "https://github.com/sainnhe/everforest-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.everforest" -colors: - bg: "#FDF6E3" - fg: "#5C6A72" - black: "#5C6A72" - red: "#F85552" - green: "#8DA101" - yellow: "#DFA000" - blue: "#3A94C5" - magenta: "#DF69BA" - cyan: "#35A77C" - white: "#939F91" - brightBlack: "#5C6A72" - brightRed: "#F85552" - brightGreen: "#8DA101" - brightYellow: "#DFA000" - brightBlue: "#3A94C5" - brightMagenta: "#DF69BA" - brightCyan: "#35A77C" - brightWhite: "#F4F0D9" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 72.7 - black: 72.7 - red: 53.8 - green: 49.9 - yellow: 39.6 - blue: 55.7 - magenta: 51.7 - cyan: 51.3 - white: 48.1 - brightBlack: 72.7 - brightRed: 53.8 - brightGreen: 49.9 - brightYellow: 39.6 - brightBlue: 55.7 - brightMagenta: 51.7 - brightCyan: 51.3 - brightWhite: 0 diff --git a/themes/everforest-pro-dark-cozy.yaml b/themes/everforest-pro-dark-cozy.yaml index 7758f48d..38312399 100644 --- a/themes/everforest-pro-dark-cozy.yaml +++ b/themes/everforest-pro-dark-cozy.yaml @@ -2,7 +2,7 @@ name: "Everforest Pro Dark Cozy" source: marketplace_id: "AndreiLucaci.everforest-pro" version: "2.0.0" - installs: 2464 + installs: 2489 author: "Andrei Lucaci" repo: "https://github.com/AndreiLucaci/everforest-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 241 + pair: "Everforest Pro Light Cozy" contrast: fg: 64.6 black: 0 diff --git a/themes/everforest-pro-dark-vibrant.yaml b/themes/everforest-pro-dark-vibrant.yaml index 9b40f031..fb7a7c00 100644 --- a/themes/everforest-pro-dark-vibrant.yaml +++ b/themes/everforest-pro-dark-vibrant.yaml @@ -2,7 +2,7 @@ name: "Everforest Pro Dark Vibrant" source: marketplace_id: "AndreiLucaci.everforest-pro" version: "2.0.0" - installs: 2464 + installs: 2489 author: "Andrei Lucaci" repo: "https://github.com/AndreiLucaci/everforest-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 239 + pair: "Everforest Pro Light Vibrant" contrast: fg: 68.3 black: 0 diff --git a/themes/everforest-pro-light-cozy.yaml b/themes/everforest-pro-light-cozy.yaml index 6559e29a..123ec383 100644 --- a/themes/everforest-pro-light-cozy.yaml +++ b/themes/everforest-pro-light-cozy.yaml @@ -2,7 +2,7 @@ name: "Everforest Pro Light Cozy" source: marketplace_id: "AndreiLucaci.everforest-pro" version: "2.0.0" - installs: 2464 + installs: 2489 author: "Andrei Lucaci" repo: "https://github.com/AndreiLucaci/everforest-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 89 + pair: "Everforest Pro Dark Cozy" contrast: fg: 65.7 black: 65.7 diff --git a/themes/everforest-pro-light-vibrant.yaml b/themes/everforest-pro-light-vibrant.yaml index 5408ccc5..613c14f8 100644 --- a/themes/everforest-pro-light-vibrant.yaml +++ b/themes/everforest-pro-light-vibrant.yaml @@ -2,7 +2,7 @@ name: "Everforest Pro Light Vibrant" source: marketplace_id: "AndreiLucaci.everforest-pro" version: "2.0.0" - installs: 2464 + installs: 2489 author: "Andrei Lucaci" repo: "https://github.com/AndreiLucaci/everforest-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Everforest Pro Dark Vibrant" contrast: fg: 75.5 black: 75.5 diff --git a/themes/everforest-soft.yaml b/themes/everforest-soft.yaml index a6d9cf10..94bf0bb9 100644 --- a/themes/everforest-soft.yaml +++ b/themes/everforest-soft.yaml @@ -2,7 +2,7 @@ name: "Everforest Soft" source: marketplace_id: "MrMartian.everforest-moist" version: "0.0.2" - installs: 4411 + installs: 4414 author: "MrMartian" repo: "https://github.com/CraigglesO/everforest-moist-vscode" url: "https://marketplace.visualstudio.com/items?itemName=MrMartian.everforest-moist" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 239 + pair: null contrast: fg: 67.1 black: 0 diff --git a/themes/evergarden-winter-light.yaml b/themes/evergarden-winter-light.yaml index 92c4238b..e646d6b7 100644 --- a/themes/evergarden-winter-light.yaml +++ b/themes/evergarden-winter-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 94.4 black: 82.5 diff --git a/themes/evergarden-winter.yaml b/themes/evergarden-winter.yaml index 6fef5b98..0664c237 100644 --- a/themes/evergarden-winter.yaml +++ b/themes/evergarden-winter.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 89.3 black: 10.2 diff --git a/themes/evergarden.yaml b/themes/evergarden.yaml index eb124c37..fec462f4 100644 --- a/themes/evergarden.yaml +++ b/themes/evergarden.yaml @@ -2,7 +2,7 @@ name: "Evergarden" source: marketplace_id: "icarrera.evergarden-theme" version: "1.3.0" - installs: 757 + installs: 759 author: "Ignacio Carrera" repo: "https://github.com/nachokb/vscode-evergarden-theme" url: "https://marketplace.visualstudio.com/items?itemName=icarrera.evergarden-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 229 + pair: null contrast: fg: 71.8 black: 0 diff --git a/themes/evernex.yaml b/themes/evernex.yaml index a90f6292..5ee59724 100644 --- a/themes/evernex.yaml +++ b/themes/evernex.yaml @@ -2,7 +2,7 @@ name: "EverNex" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 171 + pair: null contrast: fg: 94.8 black: 0 diff --git a/themes/evex-dark.yaml b/themes/evex-dark.yaml index c0fdf060..38150016 100644 --- a/themes/evex-dark.yaml +++ b/themes/evex-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 51.7 black: 0 diff --git a/themes/evondev-minimal-theme.yaml b/themes/evondev-minimal-theme.yaml index e7f4b361..76293a9c 100644 --- a/themes/evondev-minimal-theme.yaml +++ b/themes/evondev-minimal-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 281 + pair: null contrast: fg: 100.7 black: 0 diff --git a/themes/evondev-tailwind-theme.yaml b/themes/evondev-tailwind-theme.yaml index 7314cd74..aa3617e7 100644 --- a/themes/evondev-tailwind-theme.yaml +++ b/themes/evondev-tailwind-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 272 + pair: null contrast: fg: 103.7 black: 0 diff --git a/themes/evro-dark.yaml b/themes/evro-dark.yaml index 39efb69f..3a7ef44c 100644 --- a/themes/evro-dark.yaml +++ b/themes/evro-dark.yaml @@ -2,7 +2,7 @@ name: "Evro Dark" source: marketplace_id: "EvroHQ.evro-dark" version: "1.9.8" - installs: 3672 + installs: 3673 author: "EvroHQ" repo: "https://github.com/evrohq/EvroDark" url: "https://marketplace.visualstudio.com/items?itemName=EvroHQ.evro-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 254 + pair: null contrast: fg: 58.7 black: 0 diff --git a/themes/evro-darker-flat.yaml b/themes/evro-darker-flat.yaml index a61df5b5..bcc80e78 100644 --- a/themes/evro-darker-flat.yaml +++ b/themes/evro-darker-flat.yaml @@ -2,7 +2,7 @@ name: "Evro Darker Flat" source: marketplace_id: "EvroHQ.evro-dark" version: "1.9.8" - installs: 3672 + installs: 3673 author: "EvroHQ" repo: "https://github.com/evrohq/EvroDark" url: "https://marketplace.visualstudio.com/items?itemName=EvroHQ.evro-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 59.6 black: 0 diff --git a/themes/execlabs.yaml b/themes/execlabs.yaml index df70c98f..14299258 100644 --- a/themes/execlabs.yaml +++ b/themes/execlabs.yaml @@ -2,7 +2,7 @@ name: "ExecLabs" source: marketplace_id: "ExecLabs.execlabs" version: "0.0.3" - installs: 1510 + installs: 1511 author: "ExecLabs" repo: "https://github.com/mkuchak/execlabs-theme" url: "https://marketplace.visualstudio.com/items?itemName=ExecLabs.execlabs" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 263 + pair: null contrast: fg: 37.3 black: 10.1 diff --git a/themes/exias-theme-colorful.yaml b/themes/exias-theme-colorful.yaml deleted file mode 100644 index f335206a..00000000 --- a/themes/exias-theme-colorful.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Exias Theme (Colorful)" -source: - marketplace_id: "AldiiX.exias-theme" - version: "1.2.140" - installs: 115 - author: "AldiiX" - repo: "https://github.com/AldiiX/Exias-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=AldiiX.exias-theme" -colors: - bg: "#13161B" - fg: "#9FADC2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 261 - contrast: - fg: 56.3 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.7 - blue: 27.5 - magenta: 29.9 - cyan: 47.7 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.7 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.5 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/exias-theme-town.yaml b/themes/exias-theme-town.yaml index 7fb0b31b..01a7a9c3 100644 --- a/themes/exias-theme-town.yaml +++ b/themes/exias-theme-town.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 77.8 black: 0 diff --git a/themes/exploit.yaml b/themes/exploit.yaml index d562ddc6..56c2116f 100644 --- a/themes/exploit.yaml +++ b/themes/exploit.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.9 black: 0 diff --git a/themes/extreme-dark-theme.yaml b/themes/extreme-dark-theme.yaml index 6bd69f35..e2e51403 100644 --- a/themes/extreme-dark-theme.yaml +++ b/themes/extreme-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.7 black: 0 diff --git a/themes/eye-care-dark.yaml b/themes/eye-care-dark.yaml index 44218327..7c46164d 100644 --- a/themes/eye-care-dark.yaml +++ b/themes/eye-care-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Eye Care Light" contrast: fg: 70.7 black: 0 diff --git a/themes/eye-care-light.yaml b/themes/eye-care-light.yaml index 77160d3b..27f2e426 100644 --- a/themes/eye-care-light.yaml +++ b/themes/eye-care-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Eye Care Dark" contrast: fg: 94.4 black: 101.8 diff --git a/themes/eye-care.yaml b/themes/eye-care.yaml index 8b18b704..c86b9cb5 100644 --- a/themes/eye-care.yaml +++ b/themes/eye-care.yaml @@ -1,11 +1,11 @@ name: "eye-care" source: - marketplace_id: "NazmusSayad.onnokicu" - version: "2.4.12" - installs: 561 + marketplace_id: "NazmusSayad.one-eye-care" + version: "1.0.0" + installs: 648 author: "Nazmus Sayad" repo: "git+github.com:nazmussayad/vscode-theme.onnokicu--" - url: "https://marketplace.visualstudio.com/items?itemName=NazmusSayad.onnokicu" + url: "https://marketplace.visualstudio.com/items?itemName=NazmusSayad.one-eye-care" colors: bg: "#21252C" fg: "#ABB2BF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: null contrast: fg: 57.5 black: 10.9 diff --git a/themes/eye-comfort-light.yaml b/themes/eye-comfort-light.yaml index e1b5b548..6780af57 100644 --- a/themes/eye-comfort-light.yaml +++ b/themes/eye-comfort-light.yaml @@ -2,7 +2,7 @@ name: "Eye Comfort Light" source: marketplace_id: "SaikatDas.eye-comfort-themes" version: "1.0.1" - installs: 1296 + installs: 1298 author: "Saikat Das" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SaikatDas.eye-comfort-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 83.6 black: 77.1 diff --git a/themes/eyecooler.yaml b/themes/eyecooler.yaml index fdbd3103..75252790 100644 --- a/themes/eyecooler.yaml +++ b/themes/eyecooler.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 105.6 black: 0 diff --git a/themes/eyeguard.yaml b/themes/eyeguard.yaml index ac430a70..3bdd23fd 100644 --- a/themes/eyeguard.yaml +++ b/themes/eyeguard.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.7 black: 0 diff --git a/themes/eyehealth-dark.yaml b/themes/eyehealth-dark.yaml index 3b007074..52db77a9 100644 --- a/themes/eyehealth-dark.yaml +++ b/themes/eyehealth-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 97.5 black: 82.9 diff --git a/themes/eyehealth-plus-light.yaml b/themes/eyehealth-plus-light.yaml index 8bb99cff..4c7b689f 100644 --- a/themes/eyehealth-plus-light.yaml +++ b/themes/eyehealth-plus-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 72.8 black: 87.5 diff --git a/themes/eyera.yaml b/themes/eyera.yaml index aea9134d..b7b3f070 100644 --- a/themes/eyera.yaml +++ b/themes/eyera.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 101.4 black: 0 diff --git a/themes/eyesore.yaml b/themes/eyesore.yaml index ddfc12d5..ec198a89 100644 --- a/themes/eyesore.yaml +++ b/themes/eyesore.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 81.8 black: 99.5 diff --git a/themes/ezcord-highcontrast.yaml b/themes/ezcord-highcontrast.yaml index 0cf3c93a..98676af3 100644 --- a/themes/ezcord-highcontrast.yaml +++ b/themes/ezcord-highcontrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/ezcord-light.yaml b/themes/ezcord-light.yaml index ec01e26e..cd388d82 100644 --- a/themes/ezcord-light.yaml +++ b/themes/ezcord-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 100.4 black: 100.4 diff --git a/themes/ezcord-pastel.yaml b/themes/ezcord-pastel.yaml index 639ee1ca..5ad4f37b 100644 --- a/themes/ezcord-pastel.yaml +++ b/themes/ezcord-pastel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 296 + pair: null contrast: fg: 83.4 black: 0 diff --git a/themes/ezcord.yaml b/themes/ezcord.yaml index 1e0ba125..08f7aef4 100644 --- a/themes/ezcord.yaml +++ b/themes/ezcord.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 90.6 black: 0 diff --git a/themes/ezgiturali-halloween.yaml b/themes/ezgiturali-halloween.yaml index 21434276..c08d14aa 100644 --- a/themes/ezgiturali-halloween.yaml +++ b/themes/ezgiturali-halloween.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 60.1 black: 0 diff --git a/themes/ezra.yaml b/themes/ezra.yaml index 1be41fd2..c4cef9cc 100644 --- a/themes/ezra.yaml +++ b/themes/ezra.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: 206 + pair: null contrast: fg: 61.7 black: 0 diff --git a/themes/fabi.yaml b/themes/fabi.yaml index 67d4c05c..7b6ea65c 100644 --- a/themes/fabi.yaml +++ b/themes/fabi.yaml @@ -2,7 +2,7 @@ name: "Fabi" source: marketplace_id: "Fabius.fa" version: "0.0.3" - installs: 194 + installs: 195 author: "Fabius" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Fabius.fa" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 217 + pair: null contrast: fg: 102.1 black: 0 diff --git a/themes/fabulapps-theme.yaml b/themes/fabulapps-theme.yaml index 5b21aedb..38ab379d 100644 --- a/themes/fabulapps-theme.yaml +++ b/themes/fabulapps-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 221 + pair: null contrast: fg: 70.3 black: 0 diff --git a/themes/fabulous-las-vegas-after-dark.yaml b/themes/fabulous-las-vegas-after-dark.yaml index b70e9107..fda68e83 100644 --- a/themes/fabulous-las-vegas-after-dark.yaml +++ b/themes/fabulous-las-vegas-after-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 300 + pair: null contrast: fg: 85.3 black: 0 diff --git a/themes/fabulous-las-vegas-high-noon.yaml b/themes/fabulous-las-vegas-high-noon.yaml index 00db05e0..0bdc1bd1 100644 --- a/themes/fabulous-las-vegas-high-noon.yaml +++ b/themes/fabulous-las-vegas-high-noon.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.5 black: 98.5 diff --git a/themes/fady-ehab-amer-dark-theme.yaml b/themes/fady-ehab-amer-dark-theme.yaml index b0a92fd7..c8c9a91f 100644 --- a/themes/fady-ehab-amer-dark-theme.yaml +++ b/themes/fady-ehab-amer-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107 black: 0 diff --git a/themes/faerie-online.yaml b/themes/faerie-online.yaml index e49af4c8..fa21d398 100644 --- a/themes/faerie-online.yaml +++ b/themes/faerie-online.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 292 + pair: null contrast: fg: 92.5 black: 0 diff --git a/themes/fakedonald-s.yaml b/themes/fakedonald-s.yaml index f8b49e92..8f7d11a9 100644 --- a/themes/fakedonald-s.yaml +++ b/themes/fakedonald-s.yaml @@ -2,7 +2,7 @@ name: "FakeDonald's" source: marketplace_id: "SamuelePignone.fakedonalds" version: "0.0.1" - installs: 11830 + installs: 11836 author: "Samuele Pignone" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SamuelePignone.fakedonalds" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 24 + pair: null contrast: fg: 43.2 black: 26.2 diff --git a/themes/falcon.yaml b/themes/falcon.yaml index ceca2728..2a3db515 100644 --- a/themes/falcon.yaml +++ b/themes/falcon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 293 + pair: null contrast: fg: 46.9 black: 0 diff --git a/themes/falconui-theme.yaml b/themes/falconui-theme.yaml index fdeb0230..61d1a951 100644 --- a/themes/falconui-theme.yaml +++ b/themes/falconui-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 271 + pair: null contrast: fg: 107.3 black: 0 diff --git a/themes/fallout-theme.yaml b/themes/fallout-theme.yaml deleted file mode 100644 index 0be360c4..00000000 --- a/themes/fallout-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "fallout-theme" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#000000" - fg: "#39FF14" - black: "#39FF14" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 87 - black: 87 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/famous-dev-light.yaml b/themes/famous-dev-light.yaml index 4306e904..2f7a10e1 100644 --- a/themes/famous-dev-light.yaml +++ b/themes/famous-dev-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Famous Dev Midnight" contrast: fg: 99 black: 106 diff --git a/themes/famous-dev-midnight.yaml b/themes/famous-dev-midnight.yaml index 634f8cef..0dc3220d 100644 --- a/themes/famous-dev-midnight.yaml +++ b/themes/famous-dev-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: "Famous Dev Light" contrast: fg: 70.9 black: 0 diff --git a/themes/fanuc-karel.yaml b/themes/fanuc-karel.yaml index 7c73ebf8..9b0fc714 100644 --- a/themes/fanuc-karel.yaml +++ b/themes/fanuc-karel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.8 black: 0 diff --git a/themes/fcc0ff.yaml b/themes/fcc0ff.yaml index a8f40d9c..3cf99d5d 100644 --- a/themes/fcc0ff.yaml +++ b/themes/fcc0ff.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 312 + pair: null contrast: fg: 61.2 black: 0 diff --git a/themes/fcode.yaml b/themes/fcode.yaml index f62a0915..e1a01145 100644 --- a/themes/fcode.yaml +++ b/themes/fcode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/fearless-dark.yaml b/themes/fearless-dark.yaml index 37082544..3e87c149 100644 --- a/themes/fearless-dark.yaml +++ b/themes/fearless-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 299 + pair: null contrast: fg: 77.9 black: 0 diff --git a/themes/feefoolec-2-0.yaml b/themes/feefoolec-2-0.yaml index 84f5dd29..15ff224a 100644 --- a/themes/feefoolec-2-0.yaml +++ b/themes/feefoolec-2-0.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 75.8 black: 0 diff --git a/themes/felina.yaml b/themes/felina.yaml index 6c521f29..27703fcb 100644 --- a/themes/felina.yaml +++ b/themes/felina.yaml @@ -2,7 +2,7 @@ name: "Felina" source: marketplace_id: "veoper.felina" version: "0.0.2" - installs: 210 + installs: 211 author: "veoper" repo: "https://github.com/veoper/felina-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=veoper.felina" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 86.4 black: 0 diff --git a/themes/feline-color-theme.yaml b/themes/feline-color-theme.yaml index 488c2ed6..ccce97cb 100644 --- a/themes/feline-color-theme.yaml +++ b/themes/feline-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 80.5 black: 37.5 diff --git a/themes/felixo-green-contrast.yaml b/themes/felixo-green-contrast.yaml index c5866b80..e962a24f 100644 --- a/themes/felixo-green-contrast.yaml +++ b/themes/felixo-green-contrast.yaml @@ -2,7 +2,7 @@ name: "felixo-green-contrast" source: marketplace_id: "waroi.felixo" version: "1.0.0" - installs: 845 + installs: 846 author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 102.6 black: 0 diff --git a/themes/felixo-green-light.yaml b/themes/felixo-green-light.yaml index 3da9eb45..bc68e647 100644 --- a/themes/felixo-green-light.yaml +++ b/themes/felixo-green-light.yaml @@ -2,7 +2,7 @@ name: "felixo-green-light" source: marketplace_id: "waroi.felixo" version: "1.0.0" - installs: 845 + installs: 846 author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99 black: 0 diff --git a/themes/felixo-green.yaml b/themes/felixo-green.yaml index 8b3c488a..3a961acf 100644 --- a/themes/felixo-green.yaml +++ b/themes/felixo-green.yaml @@ -2,7 +2,7 @@ name: "felixo-green" source: marketplace_id: "waroi.felixo" version: "1.0.0" - installs: 845 + installs: 846 author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 67 + pair: null contrast: fg: 97.4 black: 0 diff --git a/themes/felixo-orange-contrast.yaml b/themes/felixo-orange-contrast.yaml index 06d36075..46676db3 100644 --- a/themes/felixo-orange-contrast.yaml +++ b/themes/felixo-orange-contrast.yaml @@ -2,7 +2,7 @@ name: "felixo-orange-contrast" source: marketplace_id: "waroi.felixo" version: "1.0.0" - installs: 845 + installs: 846 author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 102.6 black: 0 diff --git a/themes/felixo-orange-light.yaml b/themes/felixo-orange-light.yaml index a76240d4..827202c1 100644 --- a/themes/felixo-orange-light.yaml +++ b/themes/felixo-orange-light.yaml @@ -2,7 +2,7 @@ name: "felixo-orange-light" source: marketplace_id: "waroi.felixo" version: "1.0.0" - installs: 845 + installs: 846 author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99 black: 0 diff --git a/themes/felixo-orange.yaml b/themes/felixo-orange.yaml index 94a5737b..2076fc49 100644 --- a/themes/felixo-orange.yaml +++ b/themes/felixo-orange.yaml @@ -2,7 +2,7 @@ name: "felixo-orange" source: marketplace_id: "waroi.felixo" version: "1.0.0" - installs: 845 + installs: 846 author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 67 + pair: null contrast: fg: 97.4 black: 0 diff --git a/themes/felixoux-theme.yaml b/themes/felixoux-theme.yaml index e8e78a0e..e4777f63 100644 --- a/themes/felixoux-theme.yaml +++ b/themes/felixoux-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 84.6 black: 0 diff --git a/themes/feliz-dark.yaml b/themes/feliz-dark.yaml index a775a615..98e83350 100644 --- a/themes/feliz-dark.yaml +++ b/themes/feliz-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/ferra.yaml b/themes/ferra.yaml index 954d6e91..31fe67ee 100644 --- a/themes/ferra.yaml +++ b/themes/ferra.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.6 black: 17.4 diff --git a/themes/feta.yaml b/themes/feta.yaml index 80b37b18..74f51a76 100644 --- a/themes/feta.yaml +++ b/themes/feta.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 105.2 black: 105.2 diff --git a/themes/fictionaltheme.yaml b/themes/fictionaltheme.yaml index 667aea63..7c8ae0e1 100644 --- a/themes/fictionaltheme.yaml +++ b/themes/fictionaltheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 223 + pair: null contrast: fg: 104.5 black: 0 diff --git a/themes/fifties.yaml b/themes/fifties.yaml index 99a8c73a..6525038c 100644 --- a/themes/fifties.yaml +++ b/themes/fifties.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 66.7 black: 24.2 diff --git a/themes/fifty-shades-of-grape.yaml b/themes/fifty-shades-of-grape.yaml index d5d5310c..e214c9de 100644 --- a/themes/fifty-shades-of-grape.yaml +++ b/themes/fifty-shades-of-grape.yaml @@ -2,7 +2,7 @@ name: "Fifty Shades of Grape" source: marketplace_id: "ChenYefet.fifty-shades-of-grape" version: "0.56.0" - installs: 1234 + installs: 1235 author: "Chen Yefet" repo: "https://github.com/ChenYefet/fifty-shades-of-grape" url: "https://marketplace.visualstudio.com/items?itemName=ChenYefet.fifty-shades-of-grape" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 297 + pair: null contrast: fg: 83.1 black: 43.6 diff --git a/themes/filtered.yaml b/themes/filtered.yaml index 03b76c94..364a2f9b 100644 --- a/themes/filtered.yaml +++ b/themes/filtered.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 226 + pair: null contrast: fg: 99.5 black: 0 diff --git a/themes/finalbossjeff.yaml b/themes/finalbossjeff.yaml index 3caba361..4b75c434 100644 --- a/themes/finalbossjeff.yaml +++ b/themes/finalbossjeff.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 96.4 black: 0 diff --git a/themes/firefly.yaml b/themes/firefly.yaml index 1fc33980..803c4447 100644 --- a/themes/firefly.yaml +++ b/themes/firefly.yaml @@ -1,49 +1,50 @@ -name: "Firefly" +name: "FireFly" source: - marketplace_id: "vagalumedev.firefly" - version: "0.0.1" - installs: 14081 - author: "Vagalume Dev" - repo: "https://github.com/vagalumedev/firefly-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=vagalumedev.firefly" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: - bg: "#1D1D1B" - fg: "#D6DEEB" - black: "#001F47" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" + bg: "#151515" + fg: "#B3B8C5" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "teal" + accent: "green" hue: null + pair: null contrast: - fg: 84.5 + fg: 63.2 black: 0 - red: 38.6 - green: 66.6 - yellow: 81.4 - blue: 55.2 - magenta: 53.1 - cyan: 59 - white: 106.2 - brightBlack: 14.9 - brightRed: 38.6 - brightGreen: 66.6 - brightYellow: 93 - brightBlue: 55.2 - brightMagenta: 53.1 - brightCyan: 73.3 - brightWhite: 106.2 + red: 44.2 + green: 54.4 + yellow: 66.8 + blue: 60.8 + magenta: 92.2 + cyan: 78.1 + white: 71.9 + brightBlack: 23.1 + brightRed: 46.8 + brightGreen: 76.1 + brightYellow: 69.8 + brightBlue: 63.5 + brightMagenta: 95.4 + brightCyan: 81.1 + brightWhite: 107.1 diff --git a/themes/firefox-dark.yaml b/themes/firefox-dark.yaml index f1a8a8ac..eeaf42e2 100644 --- a/themes/firefox-dark.yaml +++ b/themes/firefox-dark.yaml @@ -2,7 +2,7 @@ name: "Firefox Dark" source: marketplace_id: "shaobeichen.gradient-theme" version: "1.19.0" - installs: 24126 + installs: 24140 author: "shaobeichen" repo: "https://github.com/shaobeichen/gradient-theme" url: "https://marketplace.visualstudio.com/items?itemName=shaobeichen.gradient-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 56.3 black: 0 diff --git a/themes/firelight.yaml b/themes/firelight.yaml index 9d5ba52b..b8c00bf1 100644 --- a/themes/firelight.yaml +++ b/themes/firelight.yaml @@ -2,7 +2,7 @@ name: "Firelight" source: marketplace_id: "camcgreen.firelight-vscode" version: "0.0.4" - installs: 1587 + installs: 1588 author: "Cam Green" repo: "https://github.com/camcgreen/firelight-vscode" url: "https://marketplace.visualstudio.com/items?itemName=camcgreen.firelight-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 265 + pair: null contrast: fg: 53.3 black: 0 diff --git a/themes/firewatch.yaml b/themes/firewatch.yaml index 60df7fd6..943c3f5e 100644 --- a/themes/firewatch.yaml +++ b/themes/firewatch.yaml @@ -2,7 +2,7 @@ name: "firewatch" source: marketplace_id: "gmtstephane.firewatch" version: "0.0.1" - installs: 916 + installs: 917 author: "gmtstephane" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gmtstephane.firewatch" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/flamelabs-argo.yaml b/themes/flamelabs-argo.yaml deleted file mode 100644 index d1c944d6..00000000 --- a/themes/flamelabs-argo.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "FlameLabs - Argo" -source: - marketplace_id: "Congram.flamelabs" - version: "1.3.0" - installs: 353 - author: "Congram" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Congram.flamelabs" -colors: - bg: "#191919" - fg: "#D4D4D4" - black: "#808080" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 79.3 - black: 33.5 - red: 26.5 - green: 52.8 - yellow: 85.4 - blue: 27.2 - magenta: 29.5 - cyan: 47.3 - white: 89.8 - brightBlack: 21.8 - brightRed: 38.3 - brightGreen: 63.3 - brightYellow: 95.4 - brightBlue: 39.8 - brightMagenta: 45.2 - brightCyan: 55.2 - brightWhite: 89.8 diff --git a/themes/flamelabs-fire.yaml b/themes/flamelabs-fire.yaml index 25d1360a..98fbf1f2 100644 --- a/themes/flamelabs-fire.yaml +++ b/themes/flamelabs-fire.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 58.9 black: 0 diff --git a/themes/flamelabs-plasma.yaml b/themes/flamelabs-plasma.yaml index 4e01f8a8..58bacb31 100644 --- a/themes/flamelabs-plasma.yaml +++ b/themes/flamelabs-plasma.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 58.9 black: 0 diff --git a/themes/flamingo-galaxy.yaml b/themes/flamingo-galaxy.yaml deleted file mode 100644 index c313762a..00000000 --- a/themes/flamingo-galaxy.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Flamingo Galaxy" -source: - marketplace_id: "oleblaesing.flamingo-galaxy" - version: "0.0.3" - installs: 2721 - author: "oleblaesing" - repo: "https://github.com/oleblaesing/flamingo-galaxy" - url: "https://marketplace.visualstudio.com/items?itemName=oleblaesing.flamingo-galaxy" -colors: - bg: "#263647" - fg: "#FFFFFF" - black: "#000000" - red: "#FD6E72" - green: "#1DBB9B" - yellow: "#FEF035" - blue: "#69AFF8" - magenta: "#A665A6" - cyan: "#1DAFEC" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#FDA0A0" - brightGreen: "#3CC5AA" - brightYellow: "#FFFC67" - brightBlue: "#69AFF8" - brightMagenta: "#EE70A9" - brightCyan: "#478DC8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 251 - contrast: - fg: 101.5 - black: 0 - red: 43.2 - green: 48.3 - yellow: 89.2 - blue: 50.4 - magenta: 26.8 - cyan: 47.1 - white: 66.4 - brightBlack: 17.6 - brightRed: 58.5 - brightGreen: 54 - brightYellow: 95.5 - brightBlue: 50.4 - brightMagenta: 42.3 - brightCyan: 32.5 - brightWhite: 101.5 diff --git a/themes/flashbang.yaml b/themes/flashbang.yaml deleted file mode 100644 index 973e6911..00000000 --- a/themes/flashbang.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Flashbang" -source: - marketplace_id: "flashbang.flashbang" - version: "0.0.2" - installs: 1171 - author: "flashbang" - repo: "https://github.com/genetv/flashbang-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=flashbang.flashbang" -colors: - bg: "#FFFFFF" - fg: "#FFFFFF" - black: "#FFFFFF" - red: "#FFFFFF" - green: "#FFFFFF" - yellow: "#FFFFFF" - blue: "#FFFFFF" - magenta: "#FFFFFF" - cyan: "#FFFFFF" - white: "#FFFFFF" - brightBlack: "#FFFFFF" - brightRed: "#FFFFFF" - brightGreen: "#FFFFFF" - brightYellow: "#FFFFFF" - brightBlue: "#FFFFFF" - brightMagenta: "#FFFFFF" - brightCyan: "#FFFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "yellow" - hue: null - contrast: - fg: 0 - black: 0 - red: 0 - green: 0 - yellow: 0 - blue: 0 - magenta: 0 - cyan: 0 - white: 0 - brightBlack: 0 - brightRed: 0 - brightGreen: 0 - brightYellow: 0 - brightBlue: 0 - brightMagenta: 0 - brightCyan: 0 - brightWhite: 0 diff --git a/themes/flat-light.yaml b/themes/flat-light.yaml index dcffea0f..725557ce 100644 --- a/themes/flat-light.yaml +++ b/themes/flat-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 97 black: 97 diff --git a/themes/flat-theme-gray.yaml b/themes/flat-theme-gray.yaml index b85ec53f..314d2d12 100644 --- a/themes/flat-theme-gray.yaml +++ b/themes/flat-theme-gray.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/flat-theme-light.yaml b/themes/flat-theme-light.yaml index 4c3d9efb..efd6d247 100644 --- a/themes/flat-theme-light.yaml +++ b/themes/flat-theme-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 86.4 black: 93.5 diff --git a/themes/flat-ui-immersed.yaml b/themes/flat-ui-immersed.yaml index 49672bcb..e589c117 100644 --- a/themes/flat-ui-immersed.yaml +++ b/themes/flat-ui-immersed.yaml @@ -2,7 +2,7 @@ name: "flat-ui immersed" source: marketplace_id: "lkytal.FlatUI" version: "1.4.9" - installs: 263992 + installs: 264006 author: "Kaiyuan Liu" repo: "https://github.com/lkytal/vscode-theme-flatui" url: "https://marketplace.visualstudio.com/items?itemName=lkytal.FlatUI" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 91.3 black: 91.3 diff --git a/themes/flat-ui-one-dark.yaml b/themes/flat-ui-one-dark.yaml index 43b61ee9..1470f3f0 100644 --- a/themes/flat-ui-one-dark.yaml +++ b/themes/flat-ui-one-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 63.9 black: 0 diff --git a/themes/flatcap.yaml b/themes/flatcap.yaml index 98645473..665fbf58 100644 --- a/themes/flatcap.yaml +++ b/themes/flatcap.yaml @@ -2,7 +2,7 @@ name: "Flatcap" source: marketplace_id: "cheycron.flatcap-theme" version: "1.1.0" - installs: 116 + installs: 117 author: "cheycron" repo: "https://github.com/cheycron/flatcap-vscode" url: "https://marketplace.visualstudio.com/items?itemName=cheycron.flatcap-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 76.1 black: 0 diff --git a/themes/flatland-monokai-improved-no-cursor-highlight.yaml b/themes/flatland-monokai-improved-no-cursor-highlight.yaml deleted file mode 100644 index 59e56044..00000000 --- a/themes/flatland-monokai-improved-no-cursor-highlight.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Flatland Monokai Improved - No Cursor Highlight" -source: - marketplace_id: "meirbon.flatland-monokai-improved" - version: "0.1.5" - installs: 5699 - author: "Mèir Noordermeer" - repo: "https://github.com/MeirBon/flatland-monokai-improved" - url: "https://marketplace.visualstudio.com/items?itemName=meirbon.flatland-monokai-improved" -colors: - bg: "#26292C" - fg: "#F8F8F2" - black: "#1F1F1F" - red: "#DD454D" - green: "#82DD4D" - yellow: "#F7C054" - blue: "#36A3D9" - magenta: "#E79AFF" - cyan: "#9BFFFA" - white: "#E2E2E2" - brightBlack: "#4B4B4B" - brightRed: "#EC141F" - brightGreen: "#5EFF00" - brightYellow: "#FFD82B" - brightBlue: "#6871FF" - brightMagenta: "#FF77FF" - brightCyan: "#56FFF7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 99.4 - black: 0 - red: 30.5 - green: 69.3 - yellow: 70.2 - blue: 44.2 - magenta: 60.1 - cyan: 93.3 - white: 85.6 - brightBlack: 8.8 - brightRed: 29.5 - brightGreen: 84.5 - brightYellow: 81.2 - brightBlue: 32.1 - brightMagenta: 54.9 - brightCyan: 89.4 - brightWhite: 104.3 diff --git a/themes/flavia.yaml b/themes/flavia.yaml index 6a0ffd2b..301ba01d 100644 --- a/themes/flavia.yaml +++ b/themes/flavia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 70.7 black: 0 diff --git a/themes/fleetish.yaml b/themes/fleetish.yaml index 5555f5a5..9e69844a 100644 --- a/themes/fleetish.yaml +++ b/themes/fleetish.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.7 black: 23.2 diff --git a/themes/fleetonedark.yaml b/themes/fleetonedark.yaml index 1655e5ab..53bdafd9 100644 --- a/themes/fleetonedark.yaml +++ b/themes/fleetonedark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 64.3 black: 0 diff --git a/themes/fleety.yaml b/themes/fleety.yaml index c2543f22..ff6ab74f 100644 --- a/themes/fleety.yaml +++ b/themes/fleety.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 74 black: 0 diff --git a/themes/fleex-theme-dark.yaml b/themes/fleex-theme-dark.yaml index 60518328..bbdd3367 100644 --- a/themes/fleex-theme-dark.yaml +++ b/themes/fleex-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Fleex Theme Light" contrast: fg: 92.2 black: 0 diff --git a/themes/fleex-theme-forest-dark.yaml b/themes/fleex-theme-forest-dark.yaml index d71a286b..2344b092 100644 --- a/themes/fleex-theme-forest-dark.yaml +++ b/themes/fleex-theme-forest-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 151 + pair: "Fleex Theme Forest Light" contrast: fg: 94.8 black: 0 diff --git a/themes/fleex-theme-forest-light.yaml b/themes/fleex-theme-forest-light.yaml index d238b125..cea492f1 100644 --- a/themes/fleex-theme-forest-light.yaml +++ b/themes/fleex-theme-forest-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Fleex Theme Forest Dark" contrast: fg: 100.1 black: 82.5 diff --git a/themes/fleex-theme-light.yaml b/themes/fleex-theme-light.yaml index 22879626..f80c217d 100644 --- a/themes/fleex-theme-light.yaml +++ b/themes/fleex-theme-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Fleex Theme Dark" contrast: fg: 103.8 black: 90.2 diff --git a/themes/fleex-theme-mist-dark.yaml b/themes/fleex-theme-mist-dark.yaml index 0fa19070..0ee1c28a 100644 --- a/themes/fleex-theme-mist-dark.yaml +++ b/themes/fleex-theme-mist-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 242 + pair: "Fleex Theme Mist Light" contrast: fg: 93.9 black: 0 diff --git a/themes/fleex-theme-mist-light.yaml b/themes/fleex-theme-mist-light.yaml index c8098483..884722cc 100644 --- a/themes/fleex-theme-mist-light.yaml +++ b/themes/fleex-theme-mist-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Fleex Theme Mist Dark" contrast: fg: 96.7 black: 80.2 diff --git a/themes/fleex-theme-ocean-dark.yaml b/themes/fleex-theme-ocean-dark.yaml index 778255e7..9521d90e 100644 --- a/themes/fleex-theme-ocean-dark.yaml +++ b/themes/fleex-theme-ocean-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 223 + pair: "Fleex Theme Ocean Light" contrast: fg: 94.6 black: 0 diff --git a/themes/fleex-theme-ocean-light.yaml b/themes/fleex-theme-ocean-light.yaml index ec7f64f8..63198183 100644 --- a/themes/fleex-theme-ocean-light.yaml +++ b/themes/fleex-theme-ocean-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Fleex Theme Ocean Dark" contrast: fg: 99.3 black: 80.7 diff --git a/themes/fleex-theme-plum-dark.yaml b/themes/fleex-theme-plum-dark.yaml index e5964988..bccd7602 100644 --- a/themes/fleex-theme-plum-dark.yaml +++ b/themes/fleex-theme-plum-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 307 + pair: "Fleex Theme Plum Light" contrast: fg: 93.2 black: 0 diff --git a/themes/fleex-theme-plum-light.yaml b/themes/fleex-theme-plum-light.yaml index 784eb0c9..d17f6f63 100644 --- a/themes/fleex-theme-plum-light.yaml +++ b/themes/fleex-theme-plum-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Fleex Theme Plum Dark" contrast: fg: 100.5 black: 84.9 diff --git a/themes/fleex-theme-rose-dark.yaml b/themes/fleex-theme-rose-dark.yaml index 497192c6..20db2f4d 100644 --- a/themes/fleex-theme-rose-dark.yaml +++ b/themes/fleex-theme-rose-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 343 + pair: "Fleex Theme Rose Light" contrast: fg: 94.2 black: 0 diff --git a/themes/fleex-theme-rose-light.yaml b/themes/fleex-theme-rose-light.yaml index 8bd6a620..31408131 100644 --- a/themes/fleex-theme-rose-light.yaml +++ b/themes/fleex-theme-rose-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Fleex Theme Rose Dark" contrast: fg: 99.1 black: 83.7 diff --git a/themes/fleex-theme-sand-dark.yaml b/themes/fleex-theme-sand-dark.yaml index 03476e0b..51fe7553 100644 --- a/themes/fleex-theme-sand-dark.yaml +++ b/themes/fleex-theme-sand-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Fleex Theme Sand Light" contrast: fg: 91.9 black: 0 diff --git a/themes/fleex-theme-sand-light.yaml b/themes/fleex-theme-sand-light.yaml index 754eb33b..c87fc3db 100644 --- a/themes/fleex-theme-sand-light.yaml +++ b/themes/fleex-theme-sand-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Fleex Theme Sand Dark" contrast: fg: 98.8 black: 83.9 diff --git a/themes/fleex-theme-warm-dark.yaml b/themes/fleex-theme-warm-dark.yaml index 4496a314..42d3a71f 100644 --- a/themes/fleex-theme-warm-dark.yaml +++ b/themes/fleex-theme-warm-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 67 + pair: "Fleex Theme Warm Light" contrast: fg: 93.2 black: 0 diff --git a/themes/fleex-theme-warm-light.yaml b/themes/fleex-theme-warm-light.yaml index b6ed4fa6..f717ce8b 100644 --- a/themes/fleex-theme-warm-light.yaml +++ b/themes/fleex-theme-warm-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Fleex Theme Warm Dark" contrast: fg: 100.6 black: 85.6 diff --git a/themes/fleury-theme.yaml b/themes/fleury-theme.yaml index e763ae44..737a15ab 100644 --- a/themes/fleury-theme.yaml +++ b/themes/fleury-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 48 black: 0 diff --git a/themes/flex-appeal.yaml b/themes/flex-appeal.yaml index 903b67c3..45ff1cde 100644 --- a/themes/flex-appeal.yaml +++ b/themes/flex-appeal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 292 + pair: null contrast: fg: 104.9 black: 0 diff --git a/themes/flexoki.yaml b/themes/flexoki.yaml index 3c58000f..44f79d7e 100644 --- a/themes/flexoki.yaml +++ b/themes/flexoki.yaml @@ -2,7 +2,7 @@ name: "Flexoki" source: marketplace_id: "sglza.flexoki" version: "0.0.3" - installs: 2610 + installs: 2614 author: "sglza" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sglza.flexoki" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 75.6 black: 0 diff --git a/themes/flora.yaml b/themes/flora.yaml index 74c32270..73656648 100644 --- a/themes/flora.yaml +++ b/themes/flora.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 91.5 black: 0 diff --git a/themes/florence.yaml b/themes/florence.yaml index 8d893190..87366910 100644 --- a/themes/florence.yaml +++ b/themes/florence.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 70.6 black: 0 diff --git a/themes/floriamaris.yaml b/themes/floriamaris.yaml index e4a6b88f..aefaa61a 100644 --- a/themes/floriamaris.yaml +++ b/themes/floriamaris.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 90.5 black: 59.5 diff --git a/themes/florist-dark.yaml b/themes/florist-dark.yaml index 5ef59805..01f49625 100644 --- a/themes/florist-dark.yaml +++ b/themes/florist-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 305 + pair: null contrast: fg: 91 black: 0 diff --git a/themes/florist-light.yaml b/themes/florist-light.yaml index 85bdb343..b1c88127 100644 --- a/themes/florist-light.yaml +++ b/themes/florist-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 306 + pair: null contrast: fg: 94.1 black: 94.1 diff --git a/themes/flow-light.yaml b/themes/flow-light.yaml deleted file mode 100644 index 65a97e90..00000000 --- a/themes/flow-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Flow Light" -source: - marketplace_id: "blackblackcat.vscode-flow" - version: "0.1.4" - installs: 1464 - author: "black_black_cat" - repo: "https://github.com/black-black-cat/vscode-firefox-flow" - url: "https://marketplace.visualstudio.com/items?itemName=blackblackcat.vscode-flow" -colors: - bg: "#EEEEEE" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - contrast: - fg: 95.9 - black: 95.9 - red: 63.9 - green: 39.1 - yellow: 47.8 - blue: 76 - magenta: 64.5 - cyan: 50.5 - white: 75.8 - brightBlack: 68.7 - brightRed: 63.9 - brightGreen: 30.8 - brightYellow: 30.9 - brightBlue: 76 - brightMagenta: 64.5 - brightCyan: 50.5 - brightWhite: 38.4 diff --git a/themes/fluffy-dark-theme.yaml b/themes/fluffy-dark-theme.yaml index e93f6d98..30c07c40 100644 --- a/themes/fluffy-dark-theme.yaml +++ b/themes/fluffy-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Fluffy Dark Theme" source: marketplace_id: "ayakoSky.fluffy-dark-theme" version: "0.0.6" - installs: 16560 + installs: 16564 author: "ayako" repo: "https://github.com/ayako02/fluff-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=ayakoSky.fluffy-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 230 + pair: null contrast: fg: 60.2 black: 0 diff --git a/themes/fluffy-theme.yaml b/themes/fluffy-theme.yaml index acfd2036..39f4a575 100644 --- a/themes/fluffy-theme.yaml +++ b/themes/fluffy-theme.yaml @@ -2,7 +2,7 @@ name: "Fluffy Theme" source: marketplace_id: "ayakoSky.fluffy-theme" version: "0.0.10" - installs: 14342 + installs: 14347 author: "ayako" repo: "https://github.com/ayako02/fluffy-theme" url: "https://marketplace.visualstudio.com/items?itemName=ayakoSky.fluffy-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 37.1 black: 98.7 diff --git a/themes/fluid-light-theme.yaml b/themes/fluid-light-theme.yaml index b0fe57ed..9bd8ee58 100644 --- a/themes/fluid-light-theme.yaml +++ b/themes/fluid-light-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 13.9 black: 100.7 diff --git a/themes/flukerbr-theme.yaml b/themes/flukerbr-theme.yaml index 5eca4fcc..fdb1f043 100644 --- a/themes/flukerbr-theme.yaml +++ b/themes/flukerbr-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 53.7 black: 0 diff --git a/themes/fluminense.yaml b/themes/fluminense.yaml index 7a10123a..d8941c30 100644 --- a/themes/fluminense.yaml +++ b/themes/fluminense.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 70.3 black: 0 diff --git a/themes/fluorite-theme.yaml b/themes/fluorite-theme.yaml index 121599c1..53e82ac3 100644 --- a/themes/fluorite-theme.yaml +++ b/themes/fluorite-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 307 + pair: null contrast: fg: 44.9 black: 0 diff --git a/themes/flutter-dark.yaml b/themes/flutter-dark.yaml index 485731c6..27890fd7 100644 --- a/themes/flutter-dark.yaml +++ b/themes/flutter-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 263 + pair: null contrast: fg: 91.8 black: 0 diff --git a/themes/flutter-theme-dark.yaml b/themes/flutter-theme-dark.yaml index 8872535c..28d1cb11 100644 --- a/themes/flutter-theme-dark.yaml +++ b/themes/flutter-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 297 + pair: null contrast: fg: 79.6 black: 0 diff --git a/themes/flux-dark.yaml b/themes/flux-dark.yaml index 62e74e94..159fefb7 100644 --- a/themes/flux-dark.yaml +++ b/themes/flux-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 87.7 black: 0 diff --git a/themes/flux-dawn.yaml b/themes/flux-dawn.yaml index eb8c61d7..a8695de5 100644 --- a/themes/flux-dawn.yaml +++ b/themes/flux-dawn.yaml @@ -1,11 +1,11 @@ name: "Flux Dawn" source: - marketplace_id: "CrappyCodeMaker.crappycode-theme" - version: "2.3.5" - installs: 1206 - author: "Danil_Reznichenko_(Legacy)" + marketplace_id: "danilrez.flux-theme" + version: "2.5.1" + installs: 261 + author: "Danil Reznichenko " repo: "https://github.com/danilrez/flux-theme" - url: "https://marketplace.visualstudio.com/items?itemName=CrappyCodeMaker.crappycode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=danilrez.flux-theme" colors: bg: "#FFFFFF" fg: "#B36F4D" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Flux Night" contrast: fg: 66.8 black: 51.7 diff --git a/themes/flux-daylight.yaml b/themes/flux-daylight.yaml index cef8046e..ad17b6e5 100644 --- a/themes/flux-daylight.yaml +++ b/themes/flux-daylight.yaml @@ -1,11 +1,11 @@ name: "Flux Daylight" source: - marketplace_id: "CrappyCodeMaker.crappycode-theme" - version: "2.3.5" - installs: 1206 - author: "Danil_Reznichenko_(Legacy)" + marketplace_id: "danilrez.flux-theme" + version: "2.5.1" + installs: 261 + author: "Danil Reznichenko " repo: "https://github.com/danilrez/flux-theme" - url: "https://marketplace.visualstudio.com/items?itemName=CrappyCodeMaker.crappycode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=danilrez.flux-theme" colors: bg: "#FFFFFF" fg: "#252B37" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 100.9 black: 94.5 diff --git a/themes/flux-night.yaml b/themes/flux-night.yaml index 0ed3c5f4..c51eb41d 100644 --- a/themes/flux-night.yaml +++ b/themes/flux-night.yaml @@ -1,11 +1,11 @@ name: "Flux Night" source: - marketplace_id: "CrappyCodeMaker.crappycode-theme" - version: "2.3.5" - installs: 1206 - author: "Danil_Reznichenko_(Legacy)" + marketplace_id: "danilrez.flux-theme" + version: "2.5.1" + installs: 261 + author: "Danil Reznichenko " repo: "https://github.com/danilrez/flux-theme" - url: "https://marketplace.visualstudio.com/items?itemName=CrappyCodeMaker.crappycode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=danilrez.flux-theme" colors: bg: "#1F242E" fg: "#8D95A5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: "Flux Dawn" contrast: fg: 42.2 black: 0 diff --git a/themes/flux-twilight.yaml b/themes/flux-twilight.yaml index a1fca3dd..39b35129 100644 --- a/themes/flux-twilight.yaml +++ b/themes/flux-twilight.yaml @@ -1,11 +1,11 @@ name: "Flux Twilight" source: - marketplace_id: "CrappyCodeMaker.crappycode-theme" - version: "2.3.5" - installs: 1206 - author: "Danil_Reznichenko_(Legacy)" + marketplace_id: "danilrez.flux-theme" + version: "2.5.1" + installs: 261 + author: "Danil Reznichenko " repo: "https://github.com/danilrez/flux-theme" - url: "https://marketplace.visualstudio.com/items?itemName=CrappyCodeMaker.crappycode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=danilrez.flux-theme" colors: bg: "#272B3F" fg: "#878DAB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 275 + pair: null contrast: fg: 37.4 black: 0 diff --git a/themes/fluxish.yaml b/themes/fluxish.yaml index c2365688..35b51990 100644 --- a/themes/fluxish.yaml +++ b/themes/fluxish.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 81 + pair: null contrast: fg: 79.4 black: 79.4 diff --git a/themes/foco-1-0-0.yaml b/themes/foco-1-0-0.yaml index 99c4b230..81d1310f 100644 --- a/themes/foco-1-0-0.yaml +++ b/themes/foco-1-0-0.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/focus-blue-colorblind-concentration-trust.yaml b/themes/focus-blue-colorblind-concentration-trust.yaml index 68175aa4..47d91b4b 100644 --- a/themes/focus-blue-colorblind-concentration-trust.yaml +++ b/themes/focus-blue-colorblind-concentration-trust.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 269 + pair: null contrast: fg: 87.5 black: 0 diff --git a/themes/focus-blue-concentration-trust.yaml b/themes/focus-blue-concentration-trust.yaml index 19a39b53..d174b0e7 100644 --- a/themes/focus-blue-concentration-trust.yaml +++ b/themes/focus-blue-concentration-trust.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 269 + pair: null contrast: fg: 98.9 black: 0 diff --git a/themes/focus-blue-high-contrast-concentration-trust.yaml b/themes/focus-blue-high-contrast-concentration-trust.yaml index 81093287..66582109 100644 --- a/themes/focus-blue-high-contrast-concentration-trust.yaml +++ b/themes/focus-blue-high-contrast-concentration-trust.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/focus-blue-light-concentration-trust.yaml b/themes/focus-blue-light-concentration-trust.yaml index 403bbe53..203d3ea1 100644 --- a/themes/focus-blue-light-concentration-trust.yaml +++ b/themes/focus-blue-light-concentration-trust.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 96.5 black: 96.5 diff --git a/themes/focus-colors.yaml b/themes/focus-colors.yaml index f18d9581..2417e2bd 100644 --- a/themes/focus-colors.yaml +++ b/themes/focus-colors.yaml @@ -2,7 +2,7 @@ name: "Focus-Colors" source: marketplace_id: "Wellington-A.omni-dracula-dark" version: "1.0.7" - installs: 4759 + installs: 4766 author: "Wellington-A" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 252 + pair: null contrast: fg: 39.2 black: 0 diff --git a/themes/focus-dark-fork-fork.yaml b/themes/focus-dark-fork-fork.yaml index 2b13a68f..d3b12236 100644 --- a/themes/focus-dark-fork-fork.yaml +++ b/themes/focus-dark-fork-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 48.6 black: 0 diff --git a/themes/focusoncoding.yaml b/themes/focusoncoding.yaml index 7f6ebb7d..3fe9b32b 100644 --- a/themes/focusoncoding.yaml +++ b/themes/focusoncoding.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 281 + pair: null contrast: fg: 55.8 black: 0 diff --git a/themes/fodder-contrast.yaml b/themes/fodder-contrast.yaml index 14d0876f..1e83d103 100644 --- a/themes/fodder-contrast.yaml +++ b/themes/fodder-contrast.yaml @@ -1,11 +1,11 @@ name: "fodder-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#131C17" fg: "#CCE0D6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 160 + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/fodder-light.yaml b/themes/fodder-light.yaml index dddad8e3..e218c638 100644 --- a/themes/fodder-light.yaml +++ b/themes/fodder-light.yaml @@ -1,11 +1,11 @@ name: "fodder-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#CCE0D6" fg: "#2D4137" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 164 + pair: null contrast: fg: 74.3 black: 0 diff --git a/themes/fodder.yaml b/themes/fodder.yaml index ef5849fb..04a86800 100644 --- a/themes/fodder.yaml +++ b/themes/fodder.yaml @@ -1,11 +1,11 @@ name: "fodder" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2D4137" fg: "#CCE0D6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 163 + pair: null contrast: fg: 76.2 black: 0 diff --git a/themes/foggy-forest-v1.yaml b/themes/foggy-forest-v1.yaml index e7f6c193..7cadf6ad 100644 --- a/themes/foggy-forest-v1.yaml +++ b/themes/foggy-forest-v1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 130 + pair: null contrast: fg: 77.9 black: 0 diff --git a/themes/fonteeboa.yaml b/themes/fonteeboa.yaml index e871740e..11b5c952 100644 --- a/themes/fonteeboa.yaml +++ b/themes/fonteeboa.yaml @@ -2,7 +2,7 @@ name: "fonteeboa" source: marketplace_id: "Fonteeboa.fonteeboa" version: "1.0.1" - installs: 390 + installs: 392 author: "Fonteeboa" repo: "https://github.com/fonteeboa/vscode-theme-fonteeboa" url: "https://marketplace.visualstudio.com/items?itemName=Fonteeboa.fonteeboa" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 244 + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/forest-color-theme.yaml b/themes/forest-color-theme.yaml index 27568757..c3605b17 100644 --- a/themes/forest-color-theme.yaml +++ b/themes/forest-color-theme.yaml @@ -2,7 +2,7 @@ name: "forest-color-theme" source: marketplace_id: "feb19.theme-forest" version: "0.1.1" - installs: 3191 + installs: 3192 author: "feb19" repo: "https://github.com/feb19/theme-forest" url: "https://marketplace.visualstudio.com/items?itemName=feb19.theme-forest" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 67 black: 0 diff --git a/themes/forest-green-vitality-connection.yaml b/themes/forest-green-vitality-connection.yaml index 6c552862..de8766e9 100644 --- a/themes/forest-green-vitality-connection.yaml +++ b/themes/forest-green-vitality-connection.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 144 + pair: null contrast: fg: 97.5 black: 0 diff --git a/themes/forest-green.yaml b/themes/forest-green.yaml index 6a4e81e5..e7d20cf4 100644 --- a/themes/forest-green.yaml +++ b/themes/forest-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 265 + pair: null contrast: fg: 98.6 black: 0 diff --git a/themes/forest-light.yaml b/themes/forest-light.yaml index e45c658f..2b124b37 100644 --- a/themes/forest-light.yaml +++ b/themes/forest-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Midnight Forest" contrast: fg: 87.3 black: 87.3 diff --git a/themes/forest-night-ethereal-magic.yaml b/themes/forest-night-ethereal-magic.yaml index b966cef2..599ef036 100644 --- a/themes/forest-night-ethereal-magic.yaml +++ b/themes/forest-night-ethereal-magic.yaml @@ -2,7 +2,7 @@ name: "Forest Night - Ethereal Magic" source: marketplace_id: "forrest-knight.forest-night-theme" version: "1.0.3" - installs: 2762 + installs: 2766 author: "Forrest Knight" repo: "https://github.com/ForrestKnight/forest-night-theme" url: "https://marketplace.visualstudio.com/items?itemName=forrest-knight.forest-night-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 233 + pair: null contrast: fg: 75.9 black: 0 diff --git a/themes/forest-night-italic-serenade.yaml b/themes/forest-night-italic-serenade.yaml index 775e4001..03d667c9 100644 --- a/themes/forest-night-italic-serenade.yaml +++ b/themes/forest-night-italic-serenade.yaml @@ -2,7 +2,7 @@ name: "Forest Night (Italic) Serenade" source: marketplace_id: "rul3r.forest-night-serenade" version: "0.1.9" - installs: 2139 + installs: 2140 author: "rul3r" repo: "https://github.com/rul3rst4/forest-night-vscode" url: "https://marketplace.visualstudio.com/items?itemName=rul3r.forest-night-serenade" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 232 + pair: null contrast: fg: 66.9 black: 0 diff --git a/themes/forest-night-serenade.yaml b/themes/forest-night-serenade.yaml index 14eb21d4..dbf17420 100644 --- a/themes/forest-night-serenade.yaml +++ b/themes/forest-night-serenade.yaml @@ -2,7 +2,7 @@ name: "Forest Night Serenade" source: marketplace_id: "rul3r.forest-night-serenade" version: "0.1.9" - installs: 2139 + installs: 2140 author: "rul3r" repo: "https://github.com/rul3rst4/forest-night-vscode" url: "https://marketplace.visualstudio.com/items?itemName=rul3r.forest-night-serenade" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 70.4 black: 0 diff --git a/themes/forest-night.yaml b/themes/forest-night.yaml index cf2eb7ab..2c3481b3 100644 --- a/themes/forest-night.yaml +++ b/themes/forest-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 153 + pair: null contrast: fg: 95.6 black: 0 diff --git a/themes/forest-violet.yaml b/themes/forest-violet.yaml index 5323f5a7..782ebca8 100644 --- a/themes/forest-violet.yaml +++ b/themes/forest-violet.yaml @@ -2,7 +2,7 @@ name: "Forest Violet" source: marketplace_id: "InnaSodri.lilac-grove-bundle" version: "0.0.1" - installs: 230 + installs: 231 author: "Inna Sodri" repo: "https://example.com/inna/lilac-grove-bundle" url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.lilac-grove-bundle" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 94 black: 0 diff --git a/themes/forestfly-dark-hard.yaml b/themes/forestfly-dark-hard.yaml index 3bee9856..6ffdfc6e 100644 --- a/themes/forestfly-dark-hard.yaml +++ b/themes/forestfly-dark-hard.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "forestfly Light Hard" contrast: fg: 72.5 black: 0 diff --git a/themes/forestfly-dark.yaml b/themes/forestfly-dark.yaml index 5a36a550..43e8579f 100644 --- a/themes/forestfly-dark.yaml +++ b/themes/forestfly-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 13 + pair: null contrast: fg: 71 black: 0 diff --git a/themes/forestfly-light-hard.yaml b/themes/forestfly-light-hard.yaml index d7b3f855..55ce6130 100644 --- a/themes/forestfly-light-hard.yaml +++ b/themes/forestfly-light-hard.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 45 + pair: "forestfly Dark Hard" contrast: fg: 70.6 black: 0 diff --git a/themes/forestlook.yaml b/themes/forestlook.yaml index 3a5c21ff..79139593 100644 --- a/themes/forestlook.yaml +++ b/themes/forestlook.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 105.4 black: 0 diff --git a/themes/forestry.yaml b/themes/forestry.yaml index 06dec578..e9111a1b 100644 --- a/themes/forestry.yaml +++ b/themes/forestry.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 139 + pair: null contrast: fg: 62.7 black: 0 diff --git a/themes/forge-dark.yaml b/themes/forge-dark.yaml index 1fc42834..874aad49 100644 --- a/themes/forge-dark.yaml +++ b/themes/forge-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 229 + pair: null contrast: fg: 107.6 black: 15.1 diff --git a/themes/forge-light.yaml b/themes/forge-light.yaml index 796ae1a0..ce10cf68 100644 --- a/themes/forge-light.yaml +++ b/themes/forge-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 86.7 black: 106 diff --git a/themes/formosa-dark-ipanema-blue.yaml b/themes/formosa-dark-ipanema-blue.yaml index df260d43..355eaf24 100644 --- a/themes/formosa-dark-ipanema-blue.yaml +++ b/themes/formosa-dark-ipanema-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 260 + pair: "Formosa Light - Ipanema Blue" contrast: fg: 88.2 black: 0 diff --git a/themes/formosa-dark-night-green.yaml b/themes/formosa-dark-night-green.yaml index 5e305f02..9f7ea708 100644 --- a/themes/formosa-dark-night-green.yaml +++ b/themes/formosa-dark-night-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 166 + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/formosa-light-ipanema-blue.yaml b/themes/formosa-light-ipanema-blue.yaml index d1217c1c..5eb40389 100644 --- a/themes/formosa-light-ipanema-blue.yaml +++ b/themes/formosa-light-ipanema-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Formosa Dark - Ipanema Blue" contrast: fg: 100.7 black: 100.7 diff --git a/themes/formosa-light-night-green.yaml b/themes/formosa-light-night-green.yaml index 83347b99..07b45f5e 100644 --- a/themes/formosa-light-night-green.yaml +++ b/themes/formosa-light-night-green.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 100.7 black: 100.7 diff --git a/themes/forventone.yaml b/themes/forventone.yaml index 1b3dbc12..a7a027e3 100644 --- a/themes/forventone.yaml +++ b/themes/forventone.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 275 + pair: null contrast: fg: 105.6 black: 0 diff --git a/themes/forxtu-light.yaml b/themes/forxtu-light.yaml deleted file mode 100644 index d1443658..00000000 --- a/themes/forxtu-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "FORXTU Light" -source: - marketplace_id: "forxtu.forxtu-vscode-theme" - version: "0.2.1" - installs: 1551 - author: "forxtu" - repo: "https://github.com/forxtu/forxtu-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=forxtu.forxtu-vscode-theme" -colors: - bg: "#FBFBFB" - fg: "#403F53" - black: "#403F53" - red: "#DE3D3B" - green: "#08916A" - yellow: "#E0AF02" - blue: "#288ED7" - magenta: "#D6438A" - cyan: "#2AA298" - white: "#F0F0F0" - brightBlack: "#403F53" - brightRed: "#DE3D3B" - brightGreen: "#08916A" - brightYellow: "#DAAA01" - brightBlue: "#288ED7" - brightMagenta: "#D6438A" - brightCyan: "#2AA298" - brightWhite: "#F0F0F0" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 91.3 - black: 91.3 - red: 66.3 - green: 64.2 - yellow: 37 - blue: 60.1 - magenta: 65.3 - cyan: 55.5 - white: 0 - brightBlack: 91.3 - brightRed: 66.3 - brightGreen: 64.2 - brightYellow: 39.7 - brightBlue: 60.1 - brightMagenta: 65.3 - brightCyan: 55.5 - brightWhite: 0 diff --git a/themes/forxtu.yaml b/themes/forxtu.yaml index 84745f62..6d4da021 100644 --- a/themes/forxtu.yaml +++ b/themes/forxtu.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 277 + pair: null contrast: fg: 72.5 black: 0 diff --git a/themes/foundyn-dev.yaml b/themes/foundyn-dev.yaml index da4a490c..fd09cf41 100644 --- a/themes/foundyn-dev.yaml +++ b/themes/foundyn-dev.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 75.1 black: 0 diff --git a/themes/four-sages-color-theme.yaml b/themes/four-sages-color-theme.yaml deleted file mode 100644 index fd1e6735..00000000 --- a/themes/four-sages-color-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "four-sages-color-theme" -source: - marketplace_id: "wavebeem.four-sages-vscode" - version: "1.0.0" - installs: 208 - author: "Sage Fennel" - repo: "https://github.com/wavebeem/four-sages-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.four-sages-vscode" -colors: - bg: "#223130" - fg: "#C0D2D0" - black: "#23504E" - red: "#FF95A9" - green: "#81D943" - yellow: "#FF9C75" - blue: "#8FBEFF" - magenta: "#F58EFF" - cyan: "#00DDD4" - white: "#FFFFFF" - brightBlack: "#23504E" - brightRed: "#FF95A9" - brightGreen: "#81D943" - brightYellow: "#FF9C75" - brightBlue: "#8FBEFF" - brightMagenta: "#F58EFF" - brightCyan: "#00DDD4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 191 - contrast: - fg: 72.3 - black: 0 - red: 57.3 - green: 66 - yellow: 58 - blue: 61.3 - magenta: 57.8 - cyan: 68.2 - white: 103.2 - brightBlack: 0 - brightRed: 57.3 - brightGreen: 66 - brightYellow: 58 - brightBlue: 61.3 - brightMagenta: 57.8 - brightCyan: 68.2 - brightWhite: 103.2 diff --git a/themes/foxdracula-color-theme.yaml b/themes/foxdracula-color-theme.yaml index 1a823b76..777d2d10 100644 --- a/themes/foxdracula-color-theme.yaml +++ b/themes/foxdracula-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 36.8 black: 0 diff --git a/themes/frankenstein.yaml b/themes/frankenstein.yaml index 964e9ee3..45cad5ee 100644 --- a/themes/frankenstein.yaml +++ b/themes/frankenstein.yaml @@ -2,7 +2,7 @@ name: "Frankenstein" source: marketplace_id: "synxty.frankenstein" version: "1.0.3" - installs: 2249 + installs: 2250 author: "Synxty" repo: "https://github.com/synxty/frankenstein" url: "https://marketplace.visualstudio.com/items?itemName=synxty.frankenstein" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 103.1 black: 0 diff --git a/themes/frantic-contrast.yaml b/themes/frantic-contrast.yaml index b195be35..8ccbbecb 100644 --- a/themes/frantic-contrast.yaml +++ b/themes/frantic-contrast.yaml @@ -1,11 +1,11 @@ name: "frantic-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0E1114" fg: "#AEB9C4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 63.3 black: 0 diff --git a/themes/frantic-light.yaml b/themes/frantic-light.yaml index f2b659d1..7f00f99c 100644 --- a/themes/frantic-light.yaml +++ b/themes/frantic-light.yaml @@ -1,11 +1,11 @@ name: "frantic-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#516172" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 81.6 black: 0 diff --git a/themes/frantic.yaml b/themes/frantic.yaml index cefea5d8..fa11ac76 100644 --- a/themes/frantic.yaml +++ b/themes/frantic.yaml @@ -1,11 +1,11 @@ name: "frantic" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#252C33" fg: "#AEB9C4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 248 + pair: null contrast: fg: 59.7 black: 0 diff --git a/themes/french-rose.yaml b/themes/french-rose.yaml index 8403c70c..14cb3266 100644 --- a/themes/french-rose.yaml +++ b/themes/french-rose.yaml @@ -2,7 +2,7 @@ name: "French Rose" source: marketplace_id: "french-rose-theme.french-rose-theme" version: "1.0.0" - installs: 3807 + installs: 3808 author: "French Rose Theme" repo: "https://github.com/denizozturk/french-rose-theme" url: "https://marketplace.visualstudio.com/items?itemName=french-rose-theme.french-rose-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 76.9 black: 0 diff --git a/themes/fresh-start.yaml b/themes/fresh-start.yaml index 9f39b555..8382e9cc 100644 --- a/themes/fresh-start.yaml +++ b/themes/fresh-start.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 91.9 black: 0 diff --git a/themes/freshcut-contrast.yaml b/themes/freshcut-contrast.yaml index 35720721..b98195b3 100644 --- a/themes/freshcut-contrast.yaml +++ b/themes/freshcut-contrast.yaml @@ -1,11 +1,11 @@ name: "freshcut-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#000000" fg: "#F8F8F2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 103 black: 0 diff --git a/themes/freshcut-light.yaml b/themes/freshcut-light.yaml index 4dae7fe6..bc76ea06 100644 --- a/themes/freshcut-light.yaml +++ b/themes/freshcut-light.yaml @@ -1,11 +1,11 @@ name: "freshcut-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#2F3030" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.6 black: 0 diff --git a/themes/freshcut.yaml b/themes/freshcut.yaml index 599fec95..db95451f 100644 --- a/themes/freshcut.yaml +++ b/themes/freshcut.yaml @@ -1,11 +1,11 @@ name: "freshcut" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2F3030" fg: "#F8F8F2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 97.9 black: 0 diff --git a/themes/friction-contrast.yaml b/themes/friction-contrast.yaml index 16dcf0b8..18c79d7d 100644 --- a/themes/friction-contrast.yaml +++ b/themes/friction-contrast.yaml @@ -1,11 +1,11 @@ name: "friction-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0C0C0F" fg: "#7E7B99" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 33.6 black: 0 diff --git a/themes/friction-light.yaml b/themes/friction-light.yaml index 577d1868..af4301bb 100644 --- a/themes/friction-light.yaml +++ b/themes/friction-light.yaml @@ -1,11 +1,11 @@ name: "friction-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#38363F" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.3 black: 0 diff --git a/themes/friction.yaml b/themes/friction.yaml index f70ee766..1ce57a25 100644 --- a/themes/friction.yaml +++ b/themes/friction.yaml @@ -1,11 +1,11 @@ name: "friction" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#26252D" fg: "#7E7B99" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 291 + pair: null contrast: fg: 30.8 black: 0 diff --git a/themes/frontend-galaxy.yaml b/themes/frontend-galaxy.yaml index e77b0e71..788f4bb5 100644 --- a/themes/frontend-galaxy.yaml +++ b/themes/frontend-galaxy.yaml @@ -2,7 +2,7 @@ name: "Frontend Galaxy" source: marketplace_id: "Avetis.frontend-galaxy" version: "0.0.2" - installs: 1428 + installs: 1429 author: "Avetis" repo: "https://github.com/AvetisDN/frontend-galaxy" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.frontend-galaxy" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 89.4 black: 0 diff --git a/themes/frontier-contrast.yaml b/themes/frontier-contrast.yaml index 96e2c173..cb4948bc 100644 --- a/themes/frontier-contrast.yaml +++ b/themes/frontier-contrast.yaml @@ -1,11 +1,11 @@ name: "frontier-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#110F0E" fg: "#F8F8F2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 102.6 black: 0 diff --git a/themes/frontier-light.yaml b/themes/frontier-light.yaml index 09f8c6b8..4b3d396e 100644 --- a/themes/frontier-light.yaml +++ b/themes/frontier-light.yaml @@ -1,11 +1,11 @@ name: "frontier-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#36312C" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99 black: 0 diff --git a/themes/frontier.yaml b/themes/frontier.yaml index b8bd5400..ef0e7392 100644 --- a/themes/frontier.yaml +++ b/themes/frontier.yaml @@ -1,11 +1,11 @@ name: "frontier" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#36312C" fg: "#F8F8F2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 67 + pair: null contrast: fg: 97.4 black: 0 diff --git a/themes/ftrblue.yaml b/themes/ftrblue.yaml index ef366bec..4416fabd 100644 --- a/themes/ftrblue.yaml +++ b/themes/ftrblue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 272 + pair: null contrast: fg: 28.5 black: 0 diff --git a/themes/fuck-all-these-vscode-custom-ugly-themes.yaml b/themes/fuck-all-these-vscode-custom-ugly-themes.yaml index a0fe26ee..ac69abe2 100644 --- a/themes/fuck-all-these-vscode-custom-ugly-themes.yaml +++ b/themes/fuck-all-these-vscode-custom-ugly-themes.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 291 + pair: null contrast: fg: 107.8 black: 0 diff --git a/themes/functional.yaml b/themes/functional.yaml deleted file mode 100644 index bbafd251..00000000 --- a/themes/functional.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "functional" -source: - marketplace_id: "BataTesting.functional-vscode-theme" - version: "0.0.1" - installs: 11 - author: "Bata Testing" - repo: "https://github.com/1eyewonder/functional-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=BataTesting.functional-vscode-theme" -colors: - bg: "#222222" - fg: "#DDDCDC" - black: "#5F5F5F" - red: "#F9A1A0" - green: "#B7DAB9" - yellow: "#FEDB8F" - blue: "#8BBADC" - magenta: "#DEBDDD" - cyan: "#8BBADC" - white: "#DDDCDC" - brightBlack: "#787878" - brightRed: "#F9A1A0" - brightGreen: "#B7DAB9" - brightYellow: "#FEDB8F" - brightBlue: "#8BBADC" - brightMagenta: "#DEBDDD" - brightCyan: "#8BBADC" - brightWhite: "#DDDCDC" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 83.1 - black: 17.7 - red: 62.1 - green: 76.2 - yellow: 84.9 - blue: 59.6 - magenta: 70.3 - cyan: 59.6 - white: 83.1 - brightBlack: 28.6 - brightRed: 62.1 - brightGreen: 76.2 - brightYellow: 84.9 - brightBlue: 59.6 - brightMagenta: 70.3 - brightCyan: 59.6 - brightWhite: 83.1 diff --git a/themes/funx-theme.yaml b/themes/funx-theme.yaml deleted file mode 100644 index ffddf0cd..00000000 --- a/themes/funx-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Funx Theme" -source: - marketplace_id: "funxdata.Funx-Theme" - version: "1.0.3" - installs: 477 - author: "梵响数据" - repo: "https://github.com/funxdata/vscode-Funx-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=funxdata.Funx-Theme" -colors: - bg: "#282C34" - fg: "#C8C8C8" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: 264 - contrast: - fg: 69.1 - black: 0 - red: 38.9 - green: 59.1 - yellow: 67.4 - blue: 51.5 - magenta: 41.9 - cyan: 51.4 - white: 79.8 - brightBlack: 32.3 - brightRed: 35.2 - brightGreen: 59.1 - brightYellow: 67.4 - brightBlue: 38.3 - brightMagenta: 9.5 - brightCyan: 51.4 - brightWhite: 79.8 diff --git a/themes/furnace.yaml b/themes/furnace.yaml index 0775715f..e66046e7 100644 --- a/themes/furnace.yaml +++ b/themes/furnace.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 269 + pair: null contrast: fg: 105.8 black: 0 diff --git a/themes/furukawa-pop-theme.yaml b/themes/furukawa-pop-theme.yaml index bba00a4d..6f7db650 100644 --- a/themes/furukawa-pop-theme.yaml +++ b/themes/furukawa-pop-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 98.9 black: 98.9 diff --git a/themes/futuremotion-light.yaml b/themes/futuremotion-light.yaml index 8eb18d90..4bd4a83d 100644 --- a/themes/futuremotion-light.yaml +++ b/themes/futuremotion-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 94.6 black: 106 diff --git a/themes/futuristic-green.yaml b/themes/futuristic-green.yaml index 858b7c9e..2608ead7 100644 --- a/themes/futuristic-green.yaml +++ b/themes/futuristic-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 234 + pair: null contrast: fg: 71 black: 0 diff --git a/themes/futuristt.yaml b/themes/futuristt.yaml index 6ef6bee4..a2ddf5ab 100644 --- a/themes/futuristt.yaml +++ b/themes/futuristt.yaml @@ -2,7 +2,7 @@ name: "Futuristt" source: marketplace_id: "carlowisse.futuristt" version: "1.6.0" - installs: 5356 + installs: 5358 author: "carlowisse" repo: "https://github.com/carlowisse/futuristt-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlowisse.futuristt" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/g-dark-blue-whale.yaml b/themes/g-dark-blue-whale.yaml index 05661b93..f0f41e98 100644 --- a/themes/g-dark-blue-whale.yaml +++ b/themes/g-dark-blue-whale.yaml @@ -2,7 +2,7 @@ name: "G Dark (Blue Whale)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 233 + pair: null contrast: fg: 91.3 black: 19.2 diff --git a/themes/g-dark-jacksons-purple.yaml b/themes/g-dark-jacksons-purple.yaml index f7667f9f..cd07b7e9 100644 --- a/themes/g-dark-jacksons-purple.yaml +++ b/themes/g-dark-jacksons-purple.yaml @@ -2,7 +2,7 @@ name: "G Dark (Jacksons Purple)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 269 + pair: null contrast: fg: 68.1 black: 23.6 diff --git a/themes/g-dark-light-alice-blue.yaml b/themes/g-dark-light-alice-blue.yaml index 42424178..5b6d4d79 100644 --- a/themes/g-dark-light-alice-blue.yaml +++ b/themes/g-dark-light-alice-blue.yaml @@ -2,7 +2,7 @@ name: "G Dark-light (Alice Blue)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 63.5 black: 30.9 diff --git a/themes/g-dark-light-glitter.yaml b/themes/g-dark-light-glitter.yaml index 010f839f..237291ac 100644 --- a/themes/g-dark-light-glitter.yaml +++ b/themes/g-dark-light-glitter.yaml @@ -2,7 +2,7 @@ name: "G Dark-light (Glitter)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: 262 + pair: null contrast: fg: 66.5 black: 65.8 diff --git a/themes/g-dark-light-hint-of-red.yaml b/themes/g-dark-light-hint-of-red.yaml index 8dd4d8e8..51edfc94 100644 --- a/themes/g-dark-light-hint-of-red.yaml +++ b/themes/g-dark-light-hint-of-red.yaml @@ -2,7 +2,7 @@ name: "G Dark-light (Hint of Red)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 74.8 black: 69.7 diff --git a/themes/g-dark-minimal-2-astronaut-blue.yaml b/themes/g-dark-minimal-2-astronaut-blue.yaml index b0d2bbfc..9fc84f33 100644 --- a/themes/g-dark-minimal-2-astronaut-blue.yaml +++ b/themes/g-dark-minimal-2-astronaut-blue.yaml @@ -2,7 +2,7 @@ name: "G Dark-minimal-2 (Astronaut Blue)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 228 + pair: null contrast: fg: 82.5 black: 26.4 diff --git a/themes/g-dark-minimal-3-oxford-blue.yaml b/themes/g-dark-minimal-3-oxford-blue.yaml index edd1b5c2..67df05dc 100644 --- a/themes/g-dark-minimal-3-oxford-blue.yaml +++ b/themes/g-dark-minimal-3-oxford-blue.yaml @@ -2,7 +2,7 @@ name: "G Dark-minimal-3 (Oxford Blue)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 232 + pair: null contrast: fg: 91.7 black: 25.4 diff --git a/themes/g-dark-minimal-midnight.yaml b/themes/g-dark-minimal-midnight.yaml index d5bc48e4..da3b4c32 100644 --- a/themes/g-dark-minimal-midnight.yaml +++ b/themes/g-dark-minimal-midnight.yaml @@ -2,7 +2,7 @@ name: "G Dark-minimal (Midnight)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 252 + pair: null contrast: fg: 50.3 black: 22.3 diff --git a/themes/g-dark-one-love-black-pearl.yaml b/themes/g-dark-one-love-black-pearl.yaml index 5392d816..92132800 100644 --- a/themes/g-dark-one-love-black-pearl.yaml +++ b/themes/g-dark-one-love-black-pearl.yaml @@ -2,7 +2,7 @@ name: "G Dark-one-love (Black Pearl)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 222 + pair: null contrast: fg: 82 black: 23.5 diff --git a/themes/g-dark-one-love.yaml b/themes/g-dark-one-love.yaml index 747e486b..03e517ac 100644 --- a/themes/g-dark-one-love.yaml +++ b/themes/g-dark-one-love.yaml @@ -2,7 +2,7 @@ name: "G Dark (One Love)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 280 + pair: null contrast: fg: 81.3 black: 21.2 diff --git a/themes/g-dark-shader-h-ck3r-midnight-moss.yaml b/themes/g-dark-shader-h-ck3r-midnight-moss.yaml index e27ad1db..d37714a1 100644 --- a/themes/g-dark-shader-h-ck3r-midnight-moss.yaml +++ b/themes/g-dark-shader-h-ck3r-midnight-moss.yaml @@ -2,7 +2,7 @@ name: "G Dark-Shader - H@ck3r (Midnight Moss)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 195 + pair: null contrast: fg: 81.2 black: 32.7 diff --git a/themes/g-dark-shader-haiti.yaml b/themes/g-dark-shader-haiti.yaml index e43a6ce4..9abe3c77 100644 --- a/themes/g-dark-shader-haiti.yaml +++ b/themes/g-dark-shader-haiti.yaml @@ -2,7 +2,7 @@ name: "G Dark-Shader (Haiti)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 299 + pair: null contrast: fg: 77.8 black: 26.1 diff --git a/themes/g-dark-shader-mirage.yaml b/themes/g-dark-shader-mirage.yaml index 979d72f5..e2612247 100644 --- a/themes/g-dark-shader-mirage.yaml +++ b/themes/g-dark-shader-mirage.yaml @@ -2,7 +2,7 @@ name: "G Dark-Shader (Mirage)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 303 + pair: null contrast: fg: 68 black: 33.8 diff --git a/themes/g-dark-shift-midnight-moss.yaml b/themes/g-dark-shift-midnight-moss.yaml index 0be27be4..48ea6eeb 100644 --- a/themes/g-dark-shift-midnight-moss.yaml +++ b/themes/g-dark-shift-midnight-moss.yaml @@ -2,7 +2,7 @@ name: "G Dark-Shift (Midnight Moss)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 196 + pair: null contrast: fg: 90.4 black: 49.3 diff --git a/themes/g-dark-shift-vulcan.yaml b/themes/g-dark-shift-vulcan.yaml index c1b147fa..44107d57 100644 --- a/themes/g-dark-shift-vulcan.yaml +++ b/themes/g-dark-shift-vulcan.yaml @@ -2,7 +2,7 @@ name: "G Dark-shift (Vulcan)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 279 + pair: null contrast: fg: 89.3 black: 22.2 diff --git a/themes/g-dark-valhalla.yaml b/themes/g-dark-valhalla.yaml index 9c5dd055..dd3c115f 100644 --- a/themes/g-dark-valhalla.yaml +++ b/themes/g-dark-valhalla.yaml @@ -2,7 +2,7 @@ name: "G Dark (Valhalla)" source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" - installs: 10981 + installs: 10984 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 273 + pair: null contrast: fg: 73.1 black: 28.9 diff --git a/themes/g3-gray.yaml b/themes/g3-gray.yaml index 5683663c..de92f5db 100644 --- a/themes/g3-gray.yaml +++ b/themes/g3-gray.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 278 + pair: null contrast: fg: 103.9 black: 0 diff --git a/themes/gagarin-theme.yaml b/themes/gagarin-theme.yaml index 3c7163a0..f5ddf440 100644 --- a/themes/gagarin-theme.yaml +++ b/themes/gagarin-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/galaxia.yaml b/themes/galaxia.yaml index fc132529..ff1e089e 100644 --- a/themes/galaxia.yaml +++ b/themes/galaxia.yaml @@ -2,7 +2,7 @@ name: "Galaxia" source: marketplace_id: "LucasBandeira.galaxia" version: "0.1.1" - installs: 293 + installs: 294 author: "Lucas Bandeira" repo: "https://github.com/LucasBandeira-MJ/Galaxia-Theme" url: "https://marketplace.visualstudio.com/items?itemName=LucasBandeira.galaxia" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 266 + pair: null contrast: fg: 93.6 black: 0 diff --git a/themes/galaxytheme.yaml b/themes/galaxytheme.yaml index cb3d63c4..b1bb3676 100644 --- a/themes/galaxytheme.yaml +++ b/themes/galaxytheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 105.7 black: 0 diff --git a/themes/game-mode.yaml b/themes/game-mode.yaml index ff1c8045..2e042802 100644 --- a/themes/game-mode.yaml +++ b/themes/game-mode.yaml @@ -2,7 +2,7 @@ name: "GAME MODE" source: marketplace_id: "sfkmt.game-mode-theme" version: "1.0.4" - installs: 855 + installs: 856 author: "sfkmt" repo: "https://github.com/sfkmt/gamemode" url: "https://marketplace.visualstudio.com/items?itemName=sfkmt.game-mode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 269 + pair: null contrast: fg: 87.4 black: 0 diff --git a/themes/gameboy-classic-dark.yaml b/themes/gameboy-classic-dark.yaml index cb0c8bcd..132c2b62 100644 --- a/themes/gameboy-classic-dark.yaml +++ b/themes/gameboy-classic-dark.yaml @@ -2,7 +2,7 @@ name: "GameBoy Classic Dark" source: marketplace_id: "sanchodelniglo.gameboy-classic-theme" version: "0.0.4" - installs: 832 + installs: 835 author: "sanchodelniglo" repo: "https://github.com/Sanchodelniglo/gameboy-classic-theme" url: "https://marketplace.visualstudio.com/items?itemName=sanchodelniglo.gameboy-classic-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 144 + pair: "GameBoy Classic Light" contrast: fg: 49.4 black: 0 diff --git a/themes/gameboy-classic-light.yaml b/themes/gameboy-classic-light.yaml index 51d53d3b..74e8e5be 100644 --- a/themes/gameboy-classic-light.yaml +++ b/themes/gameboy-classic-light.yaml @@ -2,7 +2,7 @@ name: "GameBoy Classic Light" source: marketplace_id: "sanchodelniglo.gameboy-classic-theme" version: "0.0.4" - installs: 832 + installs: 835 author: "sanchodelniglo" repo: "https://github.com/Sanchodelniglo/gameboy-classic-theme" url: "https://marketplace.visualstudio.com/items?itemName=sanchodelniglo.gameboy-classic-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: 122 + pair: "GameBoy Classic Dark" contrast: fg: 69 black: 69 diff --git a/themes/gamma-fork.yaml b/themes/gamma-fork.yaml index 0b17c309..3e2e8f1b 100644 --- a/themes/gamma-fork.yaml +++ b/themes/gamma-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 195 + pair: null contrast: fg: 58.3 black: 0 diff --git a/themes/gamma.yaml b/themes/gamma.yaml index edc49714..28387fbb 100644 --- a/themes/gamma.yaml +++ b/themes/gamma.yaml @@ -2,7 +2,7 @@ name: "Gamma" source: marketplace_id: "VenkataramanaSuryanarayanan.gamma" version: "1.0.0" - installs: 2347 + installs: 2348 author: "Venkataramana Suryanarayanan" repo: "https://github.com/HardCodeProgrammer/gamma-theme" url: "https://marketplace.visualstudio.com/items?itemName=VenkataramanaSuryanarayanan.gamma" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 195 + pair: null contrast: fg: 54.5 black: 0 diff --git a/themes/ganbaru-blue.yaml b/themes/ganbaru-blue.yaml index 70184796..38de4642 100644 --- a/themes/ganbaru-blue.yaml +++ b/themes/ganbaru-blue.yaml @@ -2,7 +2,7 @@ name: "Ganbaru blue" source: marketplace_id: "Marlodev.ganbaru" version: "1.0.0" - installs: 1847 + installs: 1850 author: "Marlodev" repo: "https://github.com/marlodevhub/ganbaru" url: "https://marketplace.visualstudio.com/items?itemName=Marlodev.ganbaru" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 256 + pair: null contrast: fg: 82.1 black: 0 diff --git a/themes/ganbaru-dark.yaml b/themes/ganbaru-dark.yaml index 635c7aec..da3b0b0a 100644 --- a/themes/ganbaru-dark.yaml +++ b/themes/ganbaru-dark.yaml @@ -2,7 +2,7 @@ name: "Ganbaru Dark" source: marketplace_id: "Marlodev.ganbaru" version: "1.0.0" - installs: 1847 + installs: 1850 author: "Marlodev" repo: "https://github.com/marlodevhub/ganbaru" url: "https://marketplace.visualstudio.com/items?itemName=Marlodev.ganbaru" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 82.4 black: 0 diff --git a/themes/gantheory-dark.yaml b/themes/gantheory-dark.yaml index 7b1bc5dd..e300f128 100644 --- a/themes/gantheory-dark.yaml +++ b/themes/gantheory-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 90.4 black: 0 diff --git a/themes/ganyu-theme.yaml b/themes/ganyu-theme.yaml index 430af46c..900a2613 100644 --- a/themes/ganyu-theme.yaml +++ b/themes/ganyu-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 242 + pair: null contrast: fg: 60.1 black: 94.2 diff --git a/themes/gapstyle-vs-dark-modern.yaml b/themes/gapstyle-vs-dark-modern.yaml index aa45f87e..b017fb9c 100644 --- a/themes/gapstyle-vs-dark-modern.yaml +++ b/themes/gapstyle-vs-dark-modern.yaml @@ -2,7 +2,7 @@ name: "GapStyle VS Dark Modern" source: marketplace_id: "gaplo917.gapstylevs" version: "2.2.0" - installs: 8662 + installs: 8666 author: "Gary Lo" repo: "https://github.com/gaplo917/GapStyle" url: "https://marketplace.visualstudio.com/items?itemName=gaplo917.gapstylevs" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/gapstyle-vs.yaml b/themes/gapstyle-vs.yaml index 056bb7bd..2764709d 100644 --- a/themes/gapstyle-vs.yaml +++ b/themes/gapstyle-vs.yaml @@ -2,7 +2,7 @@ name: "GapStyle VS" source: marketplace_id: "gaplo917.gapstylevs" version: "2.2.0" - installs: 8662 + installs: 8666 author: "Gary Lo" repo: "https://github.com/gaplo917/GapStyle" url: "https://marketplace.visualstudio.com/items?itemName=gaplo917.gapstylevs" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/garbage-oracle-dark.yaml b/themes/garbage-oracle-dark.yaml index e754a627..5c94e7f1 100644 --- a/themes/garbage-oracle-dark.yaml +++ b/themes/garbage-oracle-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 334 + pair: "Garbage Oracle Light" contrast: fg: 88.9 black: 0 diff --git a/themes/garbage-oracle-light.yaml b/themes/garbage-oracle-light.yaml index 84aeec3f..c8b1c56c 100644 --- a/themes/garbage-oracle-light.yaml +++ b/themes/garbage-oracle-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: 328 + pair: "Garbage Oracle Dark" contrast: fg: 75.8 black: 0 diff --git a/themes/gatito-next-theme.yaml b/themes/gatito-next-theme.yaml index 47420405..bf2fc1df 100644 --- a/themes/gatito-next-theme.yaml +++ b/themes/gatito-next-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 226 + pair: null contrast: fg: 76.7 black: 31 diff --git a/themes/gatito-nightly-red.yaml b/themes/gatito-nightly-red.yaml index e05f2aa3..1f10792c 100644 --- a/themes/gatito-nightly-red.yaml +++ b/themes/gatito-nightly-red.yaml @@ -2,7 +2,7 @@ name: "Gatito Nightly Red" source: marketplace_id: "TaouMou.gatito-nightly" version: "1.3.3" - installs: 1651 + installs: 1652 author: "TaouMou" repo: "https://github.com/TaouMou/gatito-nightly" url: "https://marketplace.visualstudio.com/items?itemName=TaouMou.gatito-nightly" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 242 + pair: null contrast: fg: 75.2 black: 0 diff --git a/themes/gatito-theme.yaml b/themes/gatito-theme.yaml index 8b3cf2b8..2af649d4 100644 --- a/themes/gatito-theme.yaml +++ b/themes/gatito-theme.yaml @@ -2,7 +2,7 @@ name: "Gatito Theme" source: marketplace_id: "pawelgrzybek.gatito-theme" version: "0.2.3" - installs: 139133 + installs: 139147 author: "Paweł Grzybek" repo: "https://github.com/pawelgrzybek/gatito-theme" url: "https://marketplace.visualstudio.com/items?itemName=pawelgrzybek.gatito-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 226 + pair: null contrast: fg: 76.7 black: 30.5 diff --git a/themes/gatomontesdark2.yaml b/themes/gatomontesdark2.yaml index 6fdd095a..e78ef687 100644 --- a/themes/gatomontesdark2.yaml +++ b/themes/gatomontesdark2.yaml @@ -2,7 +2,7 @@ name: "gatomontesDark2" source: marketplace_id: "GatomontesRoseIII.gatomontes" version: "1.0.0" - installs: 599 + installs: 601 author: "GatomontesRoseIII" repo: "https://github.com/ramirezherreranoeelvis/gatitomontes" url: "https://marketplace.visualstudio.com/items?itemName=GatomontesRoseIII.gatomontes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 290 + pair: null contrast: fg: 66.8 black: 0 diff --git a/themes/gdfunkytheme.yaml b/themes/gdfunkytheme.yaml index 30de1b34..d7a3e214 100644 --- a/themes/gdfunkytheme.yaml +++ b/themes/gdfunkytheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 103.2 black: 0 diff --git a/themes/geartheme.yaml b/themes/geartheme.yaml index 1d7e30c3..16fb71ff 100644 --- a/themes/geartheme.yaml +++ b/themes/geartheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 267 + pair: null contrast: fg: 22.7 black: 0 diff --git a/themes/gelato.yaml b/themes/gelato.yaml index 52e7f000..ab090125 100644 --- a/themes/gelato.yaml +++ b/themes/gelato.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 85.8 black: 0 diff --git a/themes/gelgel.yaml b/themes/gelgel.yaml index e4a42b34..b0ec72ea 100644 --- a/themes/gelgel.yaml +++ b/themes/gelgel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 81.2 black: 10.2 diff --git a/themes/gems-theme-default.yaml b/themes/gems-theme-default.yaml index 56aca94d..3c6ab993 100644 --- a/themes/gems-theme-default.yaml +++ b/themes/gems-theme-default.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 92.2 black: 0 diff --git a/themes/gems-theme-light.yaml b/themes/gems-theme-light.yaml index 4878dabe..2a047e8b 100644 --- a/themes/gems-theme-light.yaml +++ b/themes/gems-theme-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 262 + pair: null contrast: fg: 85.2 black: 92.8 diff --git a/themes/gen-theme.yaml b/themes/gen-theme.yaml index 5a1e7aae..010de7fa 100644 --- a/themes/gen-theme.yaml +++ b/themes/gen-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 73.6 black: 0 diff --git a/themes/generated-color-theme.yaml b/themes/generated-color-theme.yaml index 3b236fb4..81f88284 100644 --- a/themes/generated-color-theme.yaml +++ b/themes/generated-color-theme.yaml @@ -1,49 +1,49 @@ name: "Generated Color Theme" source: - marketplace_id: "prabinshrestha.classic" - version: "0.0.1" - installs: 32 - author: "prabin shrestha" - repo: "https://github.com/Prabin70/classic-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=prabinshrestha.classic" + marketplace_id: "RLabsInc.rlabs-theme-collection" + version: "0.1.4" + installs: 181 + author: "RLabs Inc." + repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" + url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" colors: - bg: "#010309" - fg: "#CCD7C9" + bg: "#000000" + fg: "#EDEDED" black: "#000000" - red: "#937471" - green: "#747F76" - yellow: "#AB6740" - blue: "#4B79AD" - magenta: "#A151DA" - cyan: "#737F81" - white: "#F2F1ED" - brightBlack: "#434343" - brightRed: "#BD5C54" - brightGreen: "#CDE6D2" - brightYellow: "#DE9F7B" - brightBlue: "#297AD5" - brightMagenta: "#A457DC" - brightCyan: "#A5C5CB" - brightWhite: "#FCFBFB" + red: "#D872A4" + green: "#ACCEA9" + yellow: "#AB6D33" + blue: "#3C7CC4" + magenta: "#B35C99" + cyan: "#39869A" + white: "#F4F4F0" + brightBlack: "#373737" + brightRed: "#FCC6E1" + brightGreen: "#ECF9EB" + brightYellow: "#F7C596" + brightBlue: "#ADCEF4" + brightMagenta: "#F4CBE8" + brightCyan: "#66D5F2" + brightWhite: "#FEFEFE" meta: mode: "dark" - accent: "magenta" - hue: 259 + accent: "red" + hue: null contrast: - fg: 80.3 + fg: 96.1 black: 0 - red: 32.5 - green: 32.9 - yellow: 31.2 - blue: 30.4 - magenta: 31.3 - cyan: 33.2 - white: 98.6 - brightBlack: 9.5 - brightRed: 32 - brightGreen: 87.6 - brightYellow: 58 - brightBlue: 32.1 - brightMagenta: 33 - brightCyan: 68.2 - brightWhite: 105.4 + red: 44.7 + green: 71.5 + yellow: 32.7 + blue: 32.1 + magenta: 32.4 + cyan: 33.3 + white: 100.5 + brightBlack: 0 + brightRed: 81.2 + brightGreen: 101.5 + brightYellow: 77.1 + brightBlue: 75 + brightMagenta: 82.2 + brightCyan: 72.7 + brightWhite: 107.2 diff --git a/themes/genshin-impact-chiori-dark.yaml b/themes/genshin-impact-chiori-dark.yaml index 0a6dda17..a8b4c821 100644 --- a/themes/genshin-impact-chiori-dark.yaml +++ b/themes/genshin-impact-chiori-dark.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Chiori (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#281818" fg: "#F0E0D0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 19 + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/genshin-impact-chiori.yaml b/themes/genshin-impact-chiori.yaml index d7b33807..ac5cda10 100644 --- a/themes/genshin-impact-chiori.yaml +++ b/themes/genshin-impact-chiori.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Chiori" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#FEFAF6" fg: "#4A3030" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 94.7 black: 94.7 diff --git a/themes/genshin-impact-citlali-dark.yaml b/themes/genshin-impact-citlali-dark.yaml index 34157d8a..09704f4b 100644 --- a/themes/genshin-impact-citlali-dark.yaml +++ b/themes/genshin-impact-citlali-dark.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Citlali (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#1A1428" fg: "#E8D8F0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 297 + pair: null contrast: fg: 85.2 black: 0 diff --git a/themes/genshin-impact-citlali.yaml b/themes/genshin-impact-citlali.yaml index df1086f4..8b27d44c 100644 --- a/themes/genshin-impact-citlali.yaml +++ b/themes/genshin-impact-citlali.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Citlali" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#FAF8FC" fg: "#3A2858" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 95.2 black: 95.2 diff --git a/themes/genshin-impact-columbina-dark.yaml b/themes/genshin-impact-columbina-dark.yaml deleted file mode 100644 index 27e2ec32..00000000 --- a/themes/genshin-impact-columbina-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Genshin Impact - Columbina (Dark)" -source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" -colors: - bg: "#1A171D" - fg: "#E8F4FB" - black: "#1A171D" - red: "#E87A95" - green: "#6FBEC0" - yellow: "#F0C89F" - blue: "#90CCEA" - magenta: "#E091CA" - cyan: "#A8DCF5" - white: "#C3C8ED" - brightBlack: "#4A4552" - brightRed: "#FF91AB" - brightGreen: "#85D8DA" - brightYellow: "#FFD8B5" - brightBlue: "#A8DCF5" - brightMagenta: "#F5A7E0" - brightCyan: "#C0E8FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 308 - contrast: - fg: 98.2 - black: 0 - red: 48 - green: 59.2 - yellow: 76.3 - blue: 69.8 - magenta: 55.5 - cyan: 79.7 - white: 73.3 - brightBlack: 9.8 - brightRed: 59.8 - brightGreen: 73.6 - brightYellow: 86.1 - brightBlue: 79.7 - brightMagenta: 67.4 - brightCyan: 88.1 - brightWhite: 106.7 diff --git a/themes/genshin-impact-columbina.yaml b/themes/genshin-impact-columbina.yaml index c33d0504..93ee3477 100644 --- a/themes/genshin-impact-columbina.yaml +++ b/themes/genshin-impact-columbina.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Columbina" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#F6FAFF" fg: "#272228" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 99.3 black: 99.3 diff --git a/themes/genshin-impact-furina-dark.yaml b/themes/genshin-impact-furina-dark.yaml index 80a1ffcf..900460bd 100644 --- a/themes/genshin-impact-furina-dark.yaml +++ b/themes/genshin-impact-furina-dark.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Furina (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#0F1823" fg: "#D4E6F0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 254 + pair: null contrast: fg: 88.8 black: 0 diff --git a/themes/genshin-impact-furina.yaml b/themes/genshin-impact-furina.yaml index f9879987..43b542c8 100644 --- a/themes/genshin-impact-furina.yaml +++ b/themes/genshin-impact-furina.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Furina" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#F5F9FC" fg: "#1A2840" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 97.6 black: 97.6 diff --git a/themes/genshin-impact-ganyu-dark.yaml b/themes/genshin-impact-ganyu-dark.yaml index 2232690e..26116e70 100644 --- a/themes/genshin-impact-ganyu-dark.yaml +++ b/themes/genshin-impact-ganyu-dark.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Ganyu (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#141A22" fg: "#D8E0E8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 256 + pair: null contrast: fg: 85.9 black: 0 diff --git a/themes/genshin-impact-ganyu-high-contrast.yaml b/themes/genshin-impact-ganyu-high-contrast.yaml index 17c9a396..d9d84226 100644 --- a/themes/genshin-impact-ganyu-high-contrast.yaml +++ b/themes/genshin-impact-ganyu-high-contrast.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Ganyu (High Contrast)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#000000" fg: "#E0E8F0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 92.2 black: 8 diff --git a/themes/genshin-impact-ganyu-light.yaml b/themes/genshin-impact-ganyu-light.yaml index 17187b48..a2fee765 100644 --- a/themes/genshin-impact-ganyu-light.yaml +++ b/themes/genshin-impact-ganyu-light.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Ganyu (Light)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#F5F9FC" fg: "#2A3545" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 94.3 black: 94.3 diff --git a/themes/genshin-impact-il-dottore-dark.yaml b/themes/genshin-impact-il-dottore-dark.yaml index bf13a471..0027a65c 100644 --- a/themes/genshin-impact-il-dottore-dark.yaml +++ b/themes/genshin-impact-il-dottore-dark.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Il Dottore (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#0A0C14" fg: "#C8D8E8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "blue" hue: 273 + pair: null contrast: fg: 81.5 black: 0 diff --git a/themes/genshin-impact-il-dottore.yaml b/themes/genshin-impact-il-dottore.yaml index 508ee632..0cc36e5a 100644 --- a/themes/genshin-impact-il-dottore.yaml +++ b/themes/genshin-impact-il-dottore.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Il Dottore" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#F6F9FC" fg: "#1A2848" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 97.4 black: 97.4 diff --git a/themes/genshin-impact-kamisato-ayaka-dark.yaml b/themes/genshin-impact-kamisato-ayaka-dark.yaml index 1dda74c2..8c5b105b 100644 --- a/themes/genshin-impact-kamisato-ayaka-dark.yaml +++ b/themes/genshin-impact-kamisato-ayaka-dark.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Kamisato Ayaka (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#141828" fg: "#E0ECF8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 273 + pair: null contrast: fg: 93.3 black: 0 diff --git a/themes/genshin-impact-kamisato-ayaka.yaml b/themes/genshin-impact-kamisato-ayaka.yaml index 89f244e1..80fe2eeb 100644 --- a/themes/genshin-impact-kamisato-ayaka.yaml +++ b/themes/genshin-impact-kamisato-ayaka.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Kamisato Ayaka" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#F8FAFC" fg: "#20306A" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 94.8 black: 94.8 diff --git a/themes/genshin-impact-layla-dark.yaml b/themes/genshin-impact-layla-dark.yaml index 46d7c660..dd38a208 100644 --- a/themes/genshin-impact-layla-dark.yaml +++ b/themes/genshin-impact-layla-dark.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Layla (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#181C2A" fg: "#D8ECF8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 272 + pair: null contrast: fg: 91.8 black: 0 diff --git a/themes/genshin-impact-layla.yaml b/themes/genshin-impact-layla.yaml index 1fa098bd..e88c4a0a 100644 --- a/themes/genshin-impact-layla.yaml +++ b/themes/genshin-impact-layla.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Layla" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#F8FCFE" fg: "#2A3858" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 94.5 black: 94.5 diff --git a/themes/genshin-impact-sandrone-dark.yaml b/themes/genshin-impact-sandrone-dark.yaml index 1732b735..5f3a8e8b 100644 --- a/themes/genshin-impact-sandrone-dark.yaml +++ b/themes/genshin-impact-sandrone-dark.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Sandrone (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#12141A" fg: "#E0DCE8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 271 + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/genshin-impact-sandrone.yaml b/themes/genshin-impact-sandrone.yaml index 76ff248f..163102af 100644 --- a/themes/genshin-impact-sandrone.yaml +++ b/themes/genshin-impact-sandrone.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Sandrone" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#F7F0E7" fg: "#2A2832" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.9 black: 92.9 diff --git a/themes/genshin-impact-scaramouche-dark.yaml b/themes/genshin-impact-scaramouche-dark.yaml index 2723d202..31f7a66c 100644 --- a/themes/genshin-impact-scaramouche-dark.yaml +++ b/themes/genshin-impact-scaramouche-dark.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Scaramouche (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#1E1B24" fg: "#E0D8E8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 300 + pair: null contrast: fg: 83.1 black: 0 diff --git a/themes/genshin-impact-scaramouche.yaml b/themes/genshin-impact-scaramouche.yaml index 3805d53a..6e73b644 100644 --- a/themes/genshin-impact-scaramouche.yaml +++ b/themes/genshin-impact-scaramouche.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Scaramouche" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#FAF8FC" fg: "#2A2535" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.9 black: 97.9 diff --git a/themes/genshin-impact-skirk-dark.yaml b/themes/genshin-impact-skirk-dark.yaml index 122100c1..1c16cacd 100644 --- a/themes/genshin-impact-skirk-dark.yaml +++ b/themes/genshin-impact-skirk-dark.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Skirk (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#0B0B1A" fg: "#B5FDFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 282 + pair: null contrast: fg: 98 black: 0 diff --git a/themes/genshin-impact-skirk.yaml b/themes/genshin-impact-skirk.yaml index 423e936f..ef96760f 100644 --- a/themes/genshin-impact-skirk.yaml +++ b/themes/genshin-impact-skirk.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Skirk" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#F8F9FE" fg: "#2D2272" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 95.7 black: 95.7 diff --git a/themes/genshin-impact-wanderer-dark.yaml b/themes/genshin-impact-wanderer-dark.yaml index dffb20a0..8a1ace3b 100644 --- a/themes/genshin-impact-wanderer-dark.yaml +++ b/themes/genshin-impact-wanderer-dark.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Wanderer (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#0F1820" fg: "#DCEEF8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 246 + pair: null contrast: fg: 93.9 black: 0 diff --git a/themes/genshin-impact-wanderer.yaml b/themes/genshin-impact-wanderer.yaml index 0fed0cab..ad06a71a 100644 --- a/themes/genshin-impact-wanderer.yaml +++ b/themes/genshin-impact-wanderer.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Wanderer" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#F8FCFE" fg: "#1A3050" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "indigo" hue: null + pair: null contrast: fg: 97.3 black: 97.3 diff --git a/themes/genshin-impact-yae-miko-dark.yaml b/themes/genshin-impact-yae-miko-dark.yaml index 98babbce..d66757ea 100644 --- a/themes/genshin-impact-yae-miko-dark.yaml +++ b/themes/genshin-impact-yae-miko-dark.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Yae Miko (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#1C1418" fg: "#E8DCE4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 347 + pair: null contrast: fg: 86.4 black: 0 diff --git a/themes/genshin-impact-yae-miko.yaml b/themes/genshin-impact-yae-miko.yaml index e809a991..c42ac0a3 100644 --- a/themes/genshin-impact-yae-miko.yaml +++ b/themes/genshin-impact-yae-miko.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Yae Miko" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#FDF8F9" fg: "#4A3840" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 91.7 black: 91.7 diff --git a/themes/genshin-impact-yumemizuki-mizuki-dark.yaml b/themes/genshin-impact-yumemizuki-mizuki-dark.yaml index e2fb2d48..50a5a793 100644 --- a/themes/genshin-impact-yumemizuki-mizuki-dark.yaml +++ b/themes/genshin-impact-yumemizuki-mizuki-dark.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Yumemizuki Mizuki (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#151520" fg: "#E0DCE8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 85.6 black: 0 diff --git a/themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml b/themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml index 9461be29..78154ed7 100644 --- a/themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml +++ b/themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Yumemizuki Mizuki (High Contrast)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#0A0A12" fg: "#F0ECF8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 284 + pair: null contrast: fg: 96.4 black: 0 diff --git a/themes/genshin-impact-yumemizuki-mizuki-light.yaml b/themes/genshin-impact-yumemizuki-mizuki-light.yaml index ceed80be..63b36c4b 100644 --- a/themes/genshin-impact-yumemizuki-mizuki-light.yaml +++ b/themes/genshin-impact-yumemizuki-mizuki-light.yaml @@ -1,11 +1,11 @@ name: "Genshin Impact - Yumemizuki Mizuki (Light)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#F8F5FA" fg: "#2A2445" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 96 black: 96 diff --git a/themes/genshin-vibes-celestine-bardlight.yaml b/themes/genshin-vibes-celestine-bardlight.yaml index 11a1a5bb..d26dda99 100644 --- a/themes/genshin-vibes-celestine-bardlight.yaml +++ b/themes/genshin-vibes-celestine-bardlight.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Celestine Bardlight" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 95.3 black: 0 diff --git a/themes/genshin-vibes-damselette-whisper.yaml b/themes/genshin-vibes-damselette-whisper.yaml index 86dd7a56..e278f527 100644 --- a/themes/genshin-vibes-damselette-whisper.yaml +++ b/themes/genshin-vibes-damselette-whisper.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Damselette Whisper" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/genshin-vibes-emergency-food.yaml b/themes/genshin-vibes-emergency-food.yaml index 412e28a0..122a07a6 100644 --- a/themes/genshin-vibes-emergency-food.yaml +++ b/themes/genshin-vibes-emergency-food.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Emergency Food" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 253 + pair: null contrast: fg: 99.6 black: 0 diff --git a/themes/genshin-vibes-eternal-electro-throne.yaml b/themes/genshin-vibes-eternal-electro-throne.yaml index 25ec040d..3705de97 100644 --- a/themes/genshin-vibes-eternal-electro-throne.yaml +++ b/themes/genshin-vibes-eternal-electro-throne.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Eternal Electro Throne" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 293 + pair: null contrast: fg: 83.9 black: 0 diff --git a/themes/genshin-vibes-fontaine-spotlight.yaml b/themes/genshin-vibes-fontaine-spotlight.yaml index e0962322..faf43ed8 100644 --- a/themes/genshin-vibes-fontaine-spotlight.yaml +++ b/themes/genshin-vibes-fontaine-spotlight.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Fontaine Spotlight" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 96.8 black: 0 diff --git a/themes/genshin-vibes-frost-ritual.yaml b/themes/genshin-vibes-frost-ritual.yaml index 3a9d3a1b..d5230838 100644 --- a/themes/genshin-vibes-frost-ritual.yaml +++ b/themes/genshin-vibes-frost-ritual.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Frost Ritual" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 251 + pair: null contrast: fg: 98.3 black: 0 diff --git a/themes/genshin-vibes-geo-contract-vault.yaml b/themes/genshin-vibes-geo-contract-vault.yaml index 9fff06c4..ccc5ef1b 100644 --- a/themes/genshin-vibes-geo-contract-vault.yaml +++ b/themes/genshin-vibes-geo-contract-vault.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Geo Contract Vault" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 56 + pair: null contrast: fg: 82.8 black: 0 diff --git a/themes/genshin-vibes-hydrocourt-midnight.yaml b/themes/genshin-vibes-hydrocourt-midnight.yaml index 8552d605..a9e8e712 100644 --- a/themes/genshin-vibes-hydrocourt-midnight.yaml +++ b/themes/genshin-vibes-hydrocourt-midnight.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Hydrocourt Midnight" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 248 + pair: null contrast: fg: 98.3 black: 0 diff --git a/themes/genshin-vibes-ice-oracle.yaml b/themes/genshin-vibes-ice-oracle.yaml index 21e2a01e..31c00d06 100644 --- a/themes/genshin-vibes-ice-oracle.yaml +++ b/themes/genshin-vibes-ice-oracle.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Ice Oracle" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 93.1 black: 0 diff --git a/themes/genshin-vibes-kusanali-dawnbloom.yaml b/themes/genshin-vibes-kusanali-dawnbloom.yaml index 43ed0f0d..fe152ab8 100644 --- a/themes/genshin-vibes-kusanali-dawnbloom.yaml +++ b/themes/genshin-vibes-kusanali-dawnbloom.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Kusanali Dawnbloom" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 100.1 black: 0 diff --git a/themes/genshin-vibes-lava-glaze-inferno.yaml b/themes/genshin-vibes-lava-glaze-inferno.yaml index 0ad9f185..03babdd4 100644 --- a/themes/genshin-vibes-lava-glaze-inferno.yaml +++ b/themes/genshin-vibes-lava-glaze-inferno.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Lava Glaze Inferno" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.5 black: 0 diff --git a/themes/genshin-vibes-morax-golden-seal.yaml b/themes/genshin-vibes-morax-golden-seal.yaml index c6fb75d3..ed713ef0 100644 --- a/themes/genshin-vibes-morax-golden-seal.yaml +++ b/themes/genshin-vibes-morax-golden-seal.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Morax Golden Seal" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.1 black: 0 diff --git a/themes/genshin-vibes-outrider-blaze.yaml b/themes/genshin-vibes-outrider-blaze.yaml index 08530d42..f99e36b2 100644 --- a/themes/genshin-vibes-outrider-blaze.yaml +++ b/themes/genshin-vibes-outrider-blaze.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Outrider Blaze" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 42 + pair: null contrast: fg: 83 black: 0 diff --git a/themes/genshin-vibes-pyro-scout.yaml b/themes/genshin-vibes-pyro-scout.yaml index f0331985..1ec143eb 100644 --- a/themes/genshin-vibes-pyro-scout.yaml +++ b/themes/genshin-vibes-pyro-scout.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Pyro Scout" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 89.4 black: 0 diff --git a/themes/genshin-vibes-starry-companion.yaml b/themes/genshin-vibes-starry-companion.yaml index 0e17bf80..7888da79 100644 --- a/themes/genshin-vibes-starry-companion.yaml +++ b/themes/genshin-vibes-starry-companion.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Starry Companion" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 99.6 black: 0 diff --git a/themes/genshin-vibes-stormrider-breeze.yaml b/themes/genshin-vibes-stormrider-breeze.yaml index 1f9fdf17..437876c1 100644 --- a/themes/genshin-vibes-stormrider-breeze.yaml +++ b/themes/genshin-vibes-stormrider-breeze.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Stormrider Breeze" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "cyan" hue: 220 + pair: null contrast: fg: 92.9 black: 0 diff --git a/themes/genshin-vibes-sunforge-ember.yaml b/themes/genshin-vibes-sunforge-ember.yaml index 1c0bb117..2a26efca 100644 --- a/themes/genshin-vibes-sunforge-ember.yaml +++ b/themes/genshin-vibes-sunforge-ember.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Sunforge Ember" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 89.4 black: 0 diff --git a/themes/genshin-vibes-veiled-harbinger.yaml b/themes/genshin-vibes-veiled-harbinger.yaml index 1cc61a95..7d3bf2e0 100644 --- a/themes/genshin-vibes-veiled-harbinger.yaml +++ b/themes/genshin-vibes-veiled-harbinger.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Veiled Harbinger" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 267 + pair: null contrast: fg: 93.8 black: 0 diff --git a/themes/genshin-vibes-verdant-dreamweave.yaml b/themes/genshin-vibes-verdant-dreamweave.yaml index af1286f7..428ae58e 100644 --- a/themes/genshin-vibes-verdant-dreamweave.yaml +++ b/themes/genshin-vibes-verdant-dreamweave.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Verdant Dreamweave" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 145 + pair: null contrast: fg: 96 black: 0 diff --git a/themes/genshin-vibes-violet-eternity-glow.yaml b/themes/genshin-vibes-violet-eternity-glow.yaml index 2b017a28..59c7f746 100644 --- a/themes/genshin-vibes-violet-eternity-glow.yaml +++ b/themes/genshin-vibes-violet-eternity-glow.yaml @@ -2,7 +2,7 @@ name: "Genshin Vibes: Violet Eternity Glow" source: marketplace_id: "bubaic.genshin-vibes" version: "1.0.2" - installs: 175 + installs: 176 author: "Subrata" repo: "https://github.com/bubaic/genshin-vibes" url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 88.3 black: 0 diff --git a/themes/gentil-dark.yaml b/themes/gentil-dark.yaml index 6a4510a9..46e7a34a 100644 --- a/themes/gentil-dark.yaml +++ b/themes/gentil-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 67.2 black: 0 diff --git a/themes/gentle-builder.yaml b/themes/gentle-builder.yaml index d294e356..bcef21cc 100644 --- a/themes/gentle-builder.yaml +++ b/themes/gentle-builder.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 237 + pair: null contrast: fg: 85.4 black: 0 diff --git a/themes/gentle-clean-light.yaml b/themes/gentle-clean-light.yaml index 69b381d7..24bd12be 100644 --- a/themes/gentle-clean-light.yaml +++ b/themes/gentle-clean-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 93.5 black: 102.3 diff --git a/themes/gentle-clean-monokai.yaml b/themes/gentle-clean-monokai.yaml index cf1de372..67302abf 100644 --- a/themes/gentle-clean-monokai.yaml +++ b/themes/gentle-clean-monokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 251 + pair: null contrast: fg: 70.8 black: 84.6 diff --git a/themes/gentle-dark-warm.yaml b/themes/gentle-dark-warm.yaml index 47c6f760..b1c381a0 100644 --- a/themes/gentle-dark-warm.yaml +++ b/themes/gentle-dark-warm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.1 black: 0 diff --git a/themes/gentle-dark.yaml b/themes/gentle-dark.yaml index 90f0110b..7b3ac388 100644 --- a/themes/gentle-dark.yaml +++ b/themes/gentle-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Gentle Light" contrast: fg: 83.3 black: 0 diff --git a/themes/gentle-light-warmer.yaml b/themes/gentle-light-warmer.yaml index 1e1db28a..24e7911b 100644 --- a/themes/gentle-light-warmer.yaml +++ b/themes/gentle-light-warmer.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 90.8 black: 90.8 diff --git a/themes/gentle-light.yaml b/themes/gentle-light.yaml index 289d90ba..58f159be 100644 --- a/themes/gentle-light.yaml +++ b/themes/gentle-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Gentle Dark" contrast: fg: 91.7 black: 91.7 diff --git a/themes/gentle-midnight-warm.yaml b/themes/gentle-midnight-warm.yaml index fa3bd653..2fec2ee2 100644 --- a/themes/gentle-midnight-warm.yaml +++ b/themes/gentle-midnight-warm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/gentle-midnight.yaml b/themes/gentle-midnight.yaml index b3062c0f..a959f520 100644 --- a/themes/gentle-midnight.yaml +++ b/themes/gentle-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 75.2 black: 0 diff --git a/themes/gentleblack.yaml b/themes/gentleblack.yaml index affff626..f0181f79 100644 --- a/themes/gentleblack.yaml +++ b/themes/gentleblack.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 104 + pair: null contrast: fg: 99.9 black: 25.4 diff --git a/themes/gfx.yaml b/themes/gfx.yaml index 1087bbad..d49c4631 100644 --- a/themes/gfx.yaml +++ b/themes/gfx.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 67.5 black: 10.2 diff --git a/themes/gg-djaja-darken.yaml b/themes/gg-djaja-darken.yaml index c213b826..09c05b26 100644 --- a/themes/gg-djaja-darken.yaml +++ b/themes/gg-djaja-darken.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 170 + pair: null contrast: fg: 24.3 black: 0 diff --git a/themes/gg-djaja-default.yaml b/themes/gg-djaja-default.yaml index 02ac0893..34d6edfc 100644 --- a/themes/gg-djaja-default.yaml +++ b/themes/gg-djaja-default.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 169 + pair: null contrast: fg: 35.1 black: 0 diff --git a/themes/gg-djaja-light.yaml b/themes/gg-djaja-light.yaml index 0cc43404..817a1988 100644 --- a/themes/gg-djaja-light.yaml +++ b/themes/gg-djaja-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 85.5 black: 76.2 diff --git a/themes/ghibli-day.yaml b/themes/ghibli-day.yaml index 52f09ea4..9740ada2 100644 --- a/themes/ghibli-day.yaml +++ b/themes/ghibli-day.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Ghibli Night" contrast: fg: 88.6 black: 88.6 diff --git a/themes/ghibli-forest-dark.yaml b/themes/ghibli-forest-dark.yaml index 8db0bef3..61c98cc6 100644 --- a/themes/ghibli-forest-dark.yaml +++ b/themes/ghibli-forest-dark.yaml @@ -1,11 +1,11 @@ name: "Ghibli Forest (Dark)" source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1834 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + marketplace_id: "danibram.ghibli-inspired-theme" + version: "1.0.0" + installs: 274 + author: "Daniel Biedma" + repo: "https://github.com/danibram/ghibli-theme" + url: "https://marketplace.visualstudio.com/items?itemName=danibram.ghibli-inspired-theme" colors: bg: "#1E2A24" fg: "#E8DFD0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 163 + pair: null contrast: fg: 84.5 black: 0 diff --git a/themes/ghibli-night.yaml b/themes/ghibli-night.yaml index e5d21297..4f9f143a 100644 --- a/themes/ghibli-night.yaml +++ b/themes/ghibli-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 273 + pair: "Ghibli Day" contrast: fg: 97.4 black: 0 diff --git a/themes/ghibli-sky-light.yaml b/themes/ghibli-sky-light.yaml index 856feb36..ba30fa04 100644 --- a/themes/ghibli-sky-light.yaml +++ b/themes/ghibli-sky-light.yaml @@ -2,7 +2,7 @@ name: "Ghibli Sky (Light)" source: marketplace_id: "danibram.ghibli-inspired-theme" version: "1.0.0" - installs: 267 + installs: 274 author: "Daniel Biedma" repo: "https://github.com/danibram/ghibli-theme" url: "https://marketplace.visualstudio.com/items?itemName=danibram.ghibli-inspired-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 85.6 black: 85.6 diff --git a/themes/ghost-louise.yaml b/themes/ghost-louise.yaml index d3aa7f31..10304187 100644 --- a/themes/ghost-louise.yaml +++ b/themes/ghost-louise.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 300 + pair: null contrast: fg: 15.4 black: 24.9 diff --git a/themes/ghostgrey.yaml b/themes/ghostgrey.yaml index 53ef9da0..08fd0b8b 100644 --- a/themes/ghostgrey.yaml +++ b/themes/ghostgrey.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 75.7 black: 0 diff --git a/themes/ghostty-default-styledark.yaml b/themes/ghostty-default-styledark.yaml index 80f61e8f..50eb67c1 100644 --- a/themes/ghostty-default-styledark.yaml +++ b/themes/ghostty-default-styledark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 267 + pair: null contrast: fg: 103.7 black: 0 diff --git a/themes/ghostty-synthwave.yaml b/themes/ghostty-synthwave.yaml index bc3b946d..4546e6df 100644 --- a/themes/ghostty-synthwave.yaml +++ b/themes/ghostty-synthwave.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 82.9 black: 0 diff --git a/themes/gigaaa.yaml b/themes/gigaaa.yaml index cf9f1e1a..113cdbb5 100644 --- a/themes/gigaaa.yaml +++ b/themes/gigaaa.yaml @@ -2,7 +2,7 @@ name: "gigaaa" source: marketplace_id: "sneed1337.giga" version: "0.0.2" - installs: 91 + installs: 92 author: "sneed" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sneed1337.giga" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 79.1 black: 0 diff --git a/themes/gineticustheme.yaml b/themes/gineticustheme.yaml index 85c78dfe..5622bc95 100644 --- a/themes/gineticustheme.yaml +++ b/themes/gineticustheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 76 black: 0 diff --git a/themes/ginseng.yaml b/themes/ginseng.yaml index 25dfcc33..74218ede 100644 --- a/themes/ginseng.yaml +++ b/themes/ginseng.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 308 + pair: null contrast: fg: 94 black: 76 diff --git a/themes/girls-theme.yaml b/themes/girls-theme.yaml index 10f3cdb5..fdf42fbd 100644 --- a/themes/girls-theme.yaml +++ b/themes/girls-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 93.8 black: 0 diff --git a/themes/github-blue-dark.yaml b/themes/github-blue-dark.yaml index ec554dfc..d69cb0fc 100644 --- a/themes/github-blue-dark.yaml +++ b/themes/github-blue-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 74.4 black: 0 diff --git a/themes/github-blue-darkest.yaml b/themes/github-blue-darkest.yaml index ee0bcf47..74825204 100644 --- a/themes/github-blue-darkest.yaml +++ b/themes/github-blue-darkest.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 263 + pair: null contrast: fg: 77 black: 0 diff --git a/themes/github-catppuccin-dark-mix.yaml b/themes/github-catppuccin-dark-mix.yaml index 8c39b221..6b92bd13 100644 --- a/themes/github-catppuccin-dark-mix.yaml +++ b/themes/github-catppuccin-dark-mix.yaml @@ -2,7 +2,7 @@ name: "Github Catppuccin Dark Mix" source: marketplace_id: "DevGauravJatt.github-catppuccin-dark" version: "1.0.0" - installs: 4012 + installs: 4015 author: "Dev Gaurav Jatt" repo: "https://github.com/devgauravjatt/github-catppuccin-dark" url: "https://marketplace.visualstudio.com/items?itemName=DevGauravJatt.github-catppuccin-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 258 + pair: null contrast: fg: 78.2 black: 56.1 diff --git a/themes/github-catppuccin-dark.yaml b/themes/github-catppuccin-dark.yaml index a9937b5d..36e2f811 100644 --- a/themes/github-catppuccin-dark.yaml +++ b/themes/github-catppuccin-dark.yaml @@ -2,7 +2,7 @@ name: "Github Catppuccin Dark" source: marketplace_id: "DevGauravJatt.github-catppuccin-dark" version: "1.0.0" - installs: 4012 + installs: 4015 author: "Dev Gaurav Jatt" repo: "https://github.com/devgauravjatt/github-catppuccin-dark" url: "https://marketplace.visualstudio.com/items?itemName=DevGauravJatt.github-catppuccin-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 257 + pair: null contrast: fg: 77.2 black: 55.1 diff --git a/themes/github-contrast-theme.yaml b/themes/github-contrast-theme.yaml index 0085d66d..4d82a1a4 100644 --- a/themes/github-contrast-theme.yaml +++ b/themes/github-contrast-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/github-contrast.yaml b/themes/github-contrast.yaml index 9a9c4915..a50f5fef 100644 --- a/themes/github-contrast.yaml +++ b/themes/github-contrast.yaml @@ -1,11 +1,11 @@ name: "github-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#111111" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/github-dank-dimmed.yaml b/themes/github-dank-dimmed.yaml index abcff439..046390ed 100644 --- a/themes/github-dank-dimmed.yaml +++ b/themes/github-dank-dimmed.yaml @@ -2,7 +2,7 @@ name: "Github Dank Dimmed" source: marketplace_id: "Zytesas.github-dank-dimmed" version: "0.0.5" - installs: 4512 + installs: 4514 author: "Zytesas" repo: "https://github.com/zytesas/GithubDankDimmed" url: "https://marketplace.visualstudio.com/items?itemName=Zytesas.github-dank-dimmed" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 61.3 black: 16 diff --git a/themes/github-dark-colorblind-grayscale.yaml b/themes/github-dark-colorblind-grayscale.yaml index 41c0f5a0..b872bf23 100644 --- a/themes/github-dark-colorblind-grayscale.yaml +++ b/themes/github-dark-colorblind-grayscale.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 77.8 black: 13.3 diff --git a/themes/github-dark-colorblind.yaml b/themes/github-dark-colorblind.yaml deleted file mode 100644 index 4293ce38..00000000 --- a/themes/github-dark-colorblind.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "GitHub Dark Colorblind" -source: - marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" - version: "2.2.18" - installs: 32055 - author: "wheredoesyourmindgo" - repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" -colors: - bg: "#0D1117" - fg: "#C9D1D9" - black: "#484F58" - red: "#EC8E2C" - green: "#58A6FF" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FDAC54" - brightGreen: "#79C0FF" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 258 - contrast: - fg: 77.5 - black: 13.1 - red: 53.2 - green: 52.2 - yellow: 52.2 - blue: 52.2 - magenta: 52.2 - cyan: 61.4 - white: 64 - brightBlack: 29.3 - brightRed: 66.8 - brightGreen: 64.7 - brightYellow: 64.7 - brightBlue: 64.7 - brightMagenta: 64.6 - brightCyan: 69.9 - brightWhite: 107.4 diff --git a/themes/github-dark-default-grayscale.yaml b/themes/github-dark-default-grayscale.yaml index b3ace34c..134de361 100644 --- a/themes/github-dark-default-grayscale.yaml +++ b/themes/github-dark-default-grayscale.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 95.2 black: 13.3 diff --git a/themes/github-dark-default.yaml b/themes/github-dark-default.yaml index a81b04b8..66b89f36 100644 --- a/themes/github-dark-default.yaml +++ b/themes/github-dark-default.yaml @@ -1,14 +1,14 @@ name: "GitHub Dark Default" source: - marketplace_id: "my-custom-vscode-publisher.darkminimallinefree" - version: "0.0.4" - installs: 78 - author: "my-custom-vscode-publisher" - repo: "https://github.com/pvRod/my-custom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=my-custom-vscode-publisher.darkminimallinefree" + marketplace_id: "agavram.github-vscode-theme-minimal" + version: "4.1.3" + installs: 5970 + author: "Adrian Avram" + repo: "https://github.com/agavram/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=agavram.github-vscode-theme-minimal" colors: - bg: "#0F131A" - fg: "#E6EDF3" + bg: "#0D1117" + fg: "#C9D1D9" black: "#484F58" red: "#FF7B72" green: "#3FB950" @@ -24,26 +24,27 @@ colors: brightBlue: "#79C0FF" brightMagenta: "#D2A8FF" brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" + brightWhite: "#F0F6FC" meta: mode: "dark" accent: "green" - hue: 262 + hue: 258 + pair: "GitHub Light Default" contrast: - fg: 94.8 - black: 12.9 - red: 52.4 - green: 52 - yellow: 52.1 - blue: 52.1 - magenta: 52.1 - cyan: 61.2 - white: 63.9 - brightBlack: 29.1 - brightRed: 64.7 - brightGreen: 65.3 - brightYellow: 64.6 - brightBlue: 64.6 - brightMagenta: 64.5 - brightCyan: 69.8 - brightWhite: 107.2 + fg: 77.5 + black: 13.1 + red: 52.6 + green: 52.1 + yellow: 52.2 + blue: 52.2 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 29.3 + brightRed: 64.8 + brightGreen: 65.5 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 100.9 diff --git a/themes/github-dark-dimmed-grayscale.yaml b/themes/github-dark-dimmed-grayscale.yaml index 909e679e..237d4c1a 100644 --- a/themes/github-dark-dimmed-grayscale.yaml +++ b/themes/github-dark-dimmed-grayscale.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 61.8 black: 16.5 diff --git a/themes/github-dark-dimmed.yaml b/themes/github-dark-dimmed.yaml index bd8683c0..a7074d74 100644 --- a/themes/github-dark-dimmed.yaml +++ b/themes/github-dark-dimmed.yaml @@ -1,49 +1,50 @@ name: "GitHub Dark Dimmed" source: - marketplace_id: "NathanCuevas.custom-github-dark-dimmed" - version: "1.1.17" - installs: 3245 - author: "NathanCuevas" - repo: "https://github.com/NateAyye/custom-github-dark-dimmed" - url: "https://marketplace.visualstudio.com/items?itemName=NathanCuevas.custom-github-dark-dimmed" + marketplace_id: "agavram.github-vscode-theme-minimal" + version: "4.1.3" + installs: 5970 + author: "Adrian Avram" + repo: "https://github.com/agavram/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=agavram.github-vscode-theme-minimal" colors: - bg: "#191B22" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" + bg: "#22272E" + fg: "#ADBAC7" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" meta: mode: "dark" - accent: "pink" - hue: 273 + accent: "orange" + hue: 257 + pair: null contrast: - fg: 79 - black: 0 - red: 26.2 - green: 52.5 - yellow: 85.1 - blue: 27 - magenta: 29.3 - cyan: 47.1 - white: 89.5 - brightBlack: 21.6 - brightRed: 38.1 - brightGreen: 63.1 - brightYellow: 95.2 - brightBlue: 39.5 - brightMagenta: 44.9 - brightCyan: 54.9 - brightWhite: 89.5 + fg: 61 + black: 15.7 + red: 44.6 + green: 44.3 + yellow: 44.5 + blue: 44.3 + magenta: 44.1 + cyan: 58.7 + white: 45.3 + brightBlack: 22.8 + brightRed: 57.3 + brightGreen: 56.9 + brightYellow: 57.1 + brightBlue: 57 + brightMagenta: 70.9 + brightCyan: 67.2 + brightWhite: 79.4 diff --git a/themes/github-dark-high-contrast-grayscale.yaml b/themes/github-dark-high-contrast-grayscale.yaml index 7cf1c018..824aa668 100644 --- a/themes/github-dark-high-contrast-grayscale.yaml +++ b/themes/github-dark-high-contrast-grayscale.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 99.6 black: 35.2 diff --git a/themes/github-dark-high-contrast.yaml b/themes/github-dark-high-contrast.yaml index ca3c994f..dece49f8 100644 --- a/themes/github-dark-high-contrast.yaml +++ b/themes/github-dark-high-contrast.yaml @@ -1,11 +1,11 @@ name: "GitHub Dark High Contrast" source: - marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" - version: "2.2.18" - installs: 32055 - author: "wheredoesyourmindgo" - repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" + marketplace_id: "AnasFiguigui.dark-reign-theme" + version: "1.0.4" + installs: 24 + author: "AnasFiguigui" + repo: "https://github.com/AnasFiguigui/dark-reign-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AnasFiguigui.dark-reign-theme" colors: bg: "#0A0C10" fg: "#F0F3F6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 99.5 black: 35.2 diff --git a/themes/github-dark-mode.yaml b/themes/github-dark-mode.yaml index b6965ff4..7b7f8920 100644 --- a/themes/github-dark-mode.yaml +++ b/themes/github-dark-mode.yaml @@ -2,7 +2,7 @@ name: "GitHub Dark Mode" source: marketplace_id: "markusylisiurunen.githubdarkmode" version: "0.1.6" - installs: 37572 + installs: 37591 author: "markusylisiurunen" repo: "https://github.com/markusylisiurunen/github-dark-mode" url: "https://marketplace.visualstudio.com/items?itemName=markusylisiurunen.githubdarkmode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 258 + pair: null contrast: fg: 77.5 black: 29.3 diff --git a/themes/github-dark-palenight.yaml b/themes/github-dark-palenight.yaml index 93e8a780..346f825b 100644 --- a/themes/github-dark-palenight.yaml +++ b/themes/github-dark-palenight.yaml @@ -2,7 +2,7 @@ name: "GitHub Dark Palenight" source: marketplace_id: "ConnorAbbas.github-dark-palenight" version: "1.7.1" - installs: 3532 + installs: 3533 author: "Connor Abbas" repo: "https://github.com/connorabbas/github-dark-palenight" url: "https://marketplace.visualstudio.com/items?itemName=ConnorAbbas.github-dark-palenight" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 258 + pair: null contrast: fg: 77.5 black: 13.1 diff --git a/themes/github-dark-tritanopia.yaml b/themes/github-dark-tritanopia.yaml index 3a444791..743c0e1e 100644 --- a/themes/github-dark-tritanopia.yaml +++ b/themes/github-dark-tritanopia.yaml @@ -2,7 +2,7 @@ name: "Github Dark Tritanopia" source: marketplace_id: "zanaty.github-dark-tritanopia" version: "0.0.5" - installs: 62 + installs: 63 author: "zanaty" repo: "https://github.com/moelzanaty3/github-dark-tritanopia" url: "https://marketplace.visualstudio.com/items?itemName=zanaty.github-dark-tritanopia" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 258 + pair: null contrast: fg: 100.9 black: 0 diff --git a/themes/github-dark.yaml b/themes/github-dark.yaml deleted file mode 100644 index 81c78ce4..00000000 --- a/themes/github-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "GitHub Dark" -source: - marketplace_id: "AnasFiguigui.dark-reign-theme" - version: "1.0.4" - installs: 24 - author: "AnasFiguigui" - repo: "https://github.com/AnasFiguigui/dark-reign-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AnasFiguigui.dark-reign-theme" -colors: - bg: "#0D1117" - fg: "#E6EDF3" - black: "#484F58" - red: "#FF7B72" - green: "#522546" - yellow: "#D6AEDD" - blue: "#58A6FF" - magenta: "#8C72A4" - cyan: "#E7D5E2" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FFA198" - brightGreen: "#56D364" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 258 - contrast: - fg: 95 - black: 13.1 - red: 52.6 - green: 0 - yellow: 65.4 - blue: 52.2 - magenta: 32.6 - cyan: 83.6 - white: 64 - brightBlack: 29.3 - brightRed: 64.8 - brightGreen: 65.5 - brightYellow: 64.7 - brightBlue: 64.7 - brightMagenta: 64.6 - brightCyan: 69.9 - brightWhite: 107.4 diff --git a/themes/github-light-colorblind.yaml b/themes/github-light-colorblind.yaml deleted file mode 100644 index 5fa397a8..00000000 --- a/themes/github-light-colorblind.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "GitHub Light Colorblind" -source: - marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" - version: "2.2.18" - installs: 32055 - author: "wheredoesyourmindgo" - repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" -colors: - bg: "#FFFFFF" - fg: "#24292F" - black: "#24292F" - red: "#B35900" - green: "#0550AE" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#8A4600" - brightGreen: "#0969DA" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 101.5 - black: 101.5 - red: 72.9 - green: 85.6 - yellow: 98 - blue: 74.9 - magenta: 74.3 - cyan: 73.8 - white: 71.6 - brightBlack: 81.8 - brightRed: 84.1 - brightGreen: 74.9 - brightYellow: 92 - brightBlue: 60.7 - brightMagenta: 59.3 - brightCyan: 63.3 - brightWhite: 57.2 diff --git a/themes/github-light-default.yaml b/themes/github-light-default.yaml index 359043aa..8630e8ec 100644 --- a/themes/github-light-default.yaml +++ b/themes/github-light-default.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "GitHub Dark Default" contrast: fg: 101.5 black: 101.5 diff --git a/themes/github-light-high-contrast.yaml b/themes/github-light-high-contrast.yaml deleted file mode 100644 index 8c5b1469..00000000 --- a/themes/github-light-high-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "GitHub Light High Contrast" -source: - marketplace_id: "guilhermestella.github-light-hight-contrast-theme" - version: "0.0.5" - installs: 5800 - author: "Guilherme Stella" - repo: "https://github.com/guilhermestella/vscode-extensions" - url: "https://marketplace.visualstudio.com/items?itemName=guilhermestella.github-light-hight-contrast-theme" -colors: - bg: "#FFFFFF" - fg: "#24292F" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 101.5 - black: 101.5 - red: 74.8 - green: 85.2 - yellow: 98 - blue: 74.9 - magenta: 74.3 - cyan: 73.8 - white: 71.6 - brightBlack: 81.8 - brightRed: 85.2 - brightGreen: 74.6 - brightYellow: 92 - brightBlue: 60.7 - brightMagenta: 59.3 - brightCyan: 63.3 - brightWhite: 57.2 diff --git a/themes/github-light.yaml b/themes/github-light.yaml deleted file mode 100644 index 58e387c4..00000000 --- a/themes/github-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "GitHub Light" -source: - marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" - version: "2.2.18" - installs: 32055 - author: "wheredoesyourmindgo" - repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" -colors: - bg: "#FFFFFF" - fg: "#24292E" - black: "#24292E" - red: "#D73A49" - green: "#28A745" - yellow: "#DBAB09" - blue: "#0366D6" - magenta: "#5A32A3" - cyan: "#1B7C83" - white: "#6A737D" - brightBlack: "#959DA5" - brightRed: "#CB2431" - brightGreen: "#22863A" - brightYellow: "#B08800" - brightBlue: "#005CC5" - brightMagenta: "#5A32A3" - brightCyan: "#3192AA" - brightWhite: "#D1D5DA" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 101.5 - black: 101.5 - red: 70.4 - green: 57.9 - yellow: 41.6 - blue: 76.2 - magenta: 89.2 - cyan: 73.8 - white: 73.4 - brightBlack: 53.1 - brightRed: 75.5 - brightGreen: 71.7 - brightYellow: 60.1 - brightBlue: 80.5 - brightMagenta: 89.2 - brightCyan: 63.3 - brightWhite: 22.4 diff --git a/themes/github-minimal.yaml b/themes/github-minimal.yaml index 713fb68c..3f17ae20 100644 --- a/themes/github-minimal.yaml +++ b/themes/github-minimal.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.5 black: 103.5 diff --git a/themes/github-revamp-alt.yaml b/themes/github-revamp-alt.yaml deleted file mode 100644 index d948282b..00000000 --- a/themes/github-revamp-alt.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Github Revamp Alt" -source: - marketplace_id: "Avetis.github-revamp" - version: "0.0.4" - installs: 1168 - author: "Avetis" - repo: "https://github.com/AvetisDN/github-revamp" - url: "https://marketplace.visualstudio.com/items?itemName=Avetis.github-revamp" -colors: - bg: "#202426" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 77.9 - black: 0 - red: 25.1 - green: 51.4 - yellow: 84 - blue: 25.8 - magenta: 28.1 - cyan: 45.9 - white: 88.4 - brightBlack: 20.4 - brightRed: 36.9 - brightGreen: 61.9 - brightYellow: 94 - brightBlue: 38.4 - brightMagenta: 43.7 - brightCyan: 53.8 - brightWhite: 88.4 diff --git a/themes/github-theme-by-humamafif.yaml b/themes/github-theme-by-humamafif.yaml index df103561..8143ff01 100644 --- a/themes/github-theme-by-humamafif.yaml +++ b/themes/github-theme-by-humamafif.yaml @@ -2,7 +2,7 @@ name: "Github-theme-by-humamafif" source: marketplace_id: "humamafif.github-theme-by-humamafif" version: "0.0.3" - installs: 178 + installs: 179 author: "humamafif" repo: "https://github.com/humamafif/my-github-theme" url: "https://marketplace.visualstudio.com/items?itemName=humamafif.github-theme-by-humamafif" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 258 + pair: null contrast: fg: 96.3 black: 0 diff --git a/themes/github.yaml b/themes/github.yaml index 2dc0e2c3..7e4e3ca9 100644 --- a/themes/github.yaml +++ b/themes/github.yaml @@ -1,11 +1,11 @@ name: "github" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#333333" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 102 black: 0 diff --git a/themes/gitlab-dark-grey.yaml b/themes/gitlab-dark-grey.yaml index faecb4eb..5bf964ed 100644 --- a/themes/gitlab-dark-grey.yaml +++ b/themes/gitlab-dark-grey.yaml @@ -2,7 +2,7 @@ name: "GitLab Dark Grey" source: marketplace_id: "AlbertoRestifo.gitlab-webide-theme" version: "1.0.1" - installs: 5706 + installs: 5712 author: "Alberto Restifo" repo: "https://github.com/albertorestifo/gitlab-webide-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 105.5 black: 0 diff --git a/themes/gitlab-dark.yaml b/themes/gitlab-dark.yaml index 27d3dd58..85c77764 100644 --- a/themes/gitlab-dark.yaml +++ b/themes/gitlab-dark.yaml @@ -2,7 +2,7 @@ name: "GitLab Dark" source: marketplace_id: "AlbertoRestifo.gitlab-webide-theme" version: "1.0.1" - installs: 5706 + installs: 5712 author: "Alberto Restifo" repo: "https://github.com/albertorestifo/gitlab-webide-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "GitLab Light" contrast: fg: 104.6 black: 0 diff --git a/themes/gitlab-light.yaml b/themes/gitlab-light.yaml index ccf5780d..0a426577 100644 --- a/themes/gitlab-light.yaml +++ b/themes/gitlab-light.yaml @@ -2,7 +2,7 @@ name: "GitLab Light" source: marketplace_id: "AlbertoRestifo.gitlab-webide-theme" version: "1.0.1" - installs: 5706 + installs: 5712 author: "Alberto Restifo" repo: "https://github.com/albertorestifo/gitlab-webide-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "GitLab Dark" contrast: fg: 96.8 black: 96.8 diff --git a/themes/gitlab.yaml b/themes/gitlab.yaml index 7cdfb523..050b7e8a 100644 --- a/themes/gitlab.yaml +++ b/themes/gitlab.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 82.8 black: 0 diff --git a/themes/giyu-tomioka.yaml b/themes/giyu-tomioka.yaml index 7a641f58..67f78a4f 100644 --- a/themes/giyu-tomioka.yaml +++ b/themes/giyu-tomioka.yaml @@ -2,7 +2,7 @@ name: "Giyu Tomioka" source: marketplace_id: "devLocifer.hashira-code-theme" version: "0.0.1" - installs: 738 + installs: 739 author: "devLocifer" repo: "https://github.com/diazdjul19/hashira-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 261 + pair: null contrast: fg: 59.1 black: 0 diff --git a/themes/giza.yaml b/themes/giza.yaml index 2adf412d..375de748 100644 --- a/themes/giza.yaml +++ b/themes/giza.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 294 + pair: null contrast: fg: 76.1 black: 0 diff --git a/themes/glance-contrast.yaml b/themes/glance-contrast.yaml index 8f0a3d2b..771f709e 100644 --- a/themes/glance-contrast.yaml +++ b/themes/glance-contrast.yaml @@ -1,11 +1,11 @@ name: "glance-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#111219" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 107.3 black: 0 diff --git a/themes/glance-light.yaml b/themes/glance-light.yaml index 06ff4e25..06a36b1d 100644 --- a/themes/glance-light.yaml +++ b/themes/glance-light.yaml @@ -1,11 +1,11 @@ name: "glance-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#2D3142" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.1 black: 0 diff --git a/themes/glance.yaml b/themes/glance.yaml index 6a2f0c41..6d3f1488 100644 --- a/themes/glance.yaml +++ b/themes/glance.yaml @@ -1,11 +1,11 @@ name: "glance" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2D3142" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 102.3 black: 0 diff --git a/themes/gleam-theme-minimal-dark.yaml b/themes/gleam-theme-minimal-dark.yaml index 32292572..8e855da4 100644 --- a/themes/gleam-theme-minimal-dark.yaml +++ b/themes/gleam-theme-minimal-dark.yaml @@ -2,7 +2,7 @@ name: "gleam-theme-minimal-dark" source: marketplace_id: "nicklasxyz.gleam-themes" version: "0.0.3" - installs: 3219 + installs: 3220 author: "nicklasxyz" repo: "https://github.com/NicklasXYZ/vscode-gleam-themes" url: "https://marketplace.visualstudio.com/items?itemName=nicklasxyz.gleam-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 85 black: 50 diff --git a/themes/glitchly-green.yaml b/themes/glitchly-green.yaml index 34ff2c1a..41d52020 100644 --- a/themes/glitchly-green.yaml +++ b/themes/glitchly-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 50.2 black: 0 diff --git a/themes/gloam.yaml b/themes/gloam.yaml index b9095e76..20cb1194 100644 --- a/themes/gloam.yaml +++ b/themes/gloam.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 106 black: 0 diff --git a/themes/globe.yaml b/themes/globe.yaml index 29163654..4708b8e4 100644 --- a/themes/globe.yaml +++ b/themes/globe.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 102.8 black: 0 diff --git a/themes/gloom-contrast.yaml b/themes/gloom-contrast.yaml index 9775027e..7d0e2331 100644 --- a/themes/gloom-contrast.yaml +++ b/themes/gloom-contrast.yaml @@ -1,11 +1,11 @@ name: "gloom-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0F120F" fg: "#D8EBE5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 91.6 black: 0 diff --git a/themes/gloom-light.yaml b/themes/gloom-light.yaml index 5641ef09..778db831 100644 --- a/themes/gloom-light.yaml +++ b/themes/gloom-light.yaml @@ -1,11 +1,11 @@ name: "gloom-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#D8EBE5" fg: "#2A332B" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 175 + pair: null contrast: fg: 85 black: 0 diff --git a/themes/gloom.yaml b/themes/gloom.yaml index 02c20bf9..01d0b0d3 100644 --- a/themes/gloom.yaml +++ b/themes/gloom.yaml @@ -1,11 +1,11 @@ name: "gloom" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2A332B" fg: "#D8EBE5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 148 + pair: null contrast: fg: 86.8 black: 0 diff --git a/themes/glowfish-contrast.yaml b/themes/glowfish-contrast.yaml index e0d3af69..fbbc9f1a 100644 --- a/themes/glowfish-contrast.yaml +++ b/themes/glowfish-contrast.yaml @@ -1,11 +1,11 @@ name: "glowfish-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#090B07" fg: "#6EA240" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 44.5 black: 0 diff --git a/themes/glowfish-light.yaml b/themes/glowfish-light.yaml index 80747f3f..75edb346 100644 --- a/themes/glowfish-light.yaml +++ b/themes/glowfish-light.yaml @@ -1,11 +1,11 @@ name: "glowfish-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#E3EADC" fg: "#191F13" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 129 + pair: null contrast: fg: 89.9 black: 0 diff --git a/themes/glowfish.yaml b/themes/glowfish.yaml index 671877f5..4f0659d0 100644 --- a/themes/glowfish.yaml +++ b/themes/glowfish.yaml @@ -1,11 +1,11 @@ name: "glowfish" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#191F13" fg: "#6EA240" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 130 + pair: null contrast: fg: 43 black: 0 diff --git a/themes/glowing-sun.yaml b/themes/glowing-sun.yaml index 145aad4b..0478b990 100644 --- a/themes/glowing-sun.yaml +++ b/themes/glowing-sun.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 37.5 black: 0 diff --git a/themes/glowing-yellow.yaml b/themes/glowing-yellow.yaml index b4b4e85b..3b05cf80 100644 --- a/themes/glowing-yellow.yaml +++ b/themes/glowing-yellow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 108 + pair: null contrast: fg: 99.2 black: 0 diff --git a/themes/glowminerals.yaml b/themes/glowminerals.yaml index 0c89eb1d..4be98a5b 100644 --- a/themes/glowminerals.yaml +++ b/themes/glowminerals.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 254 + pair: null contrast: fg: 81.9 black: 0 diff --git a/themes/glu-dark-lighter.yaml b/themes/glu-dark-lighter.yaml index a36ea582..746b869c 100644 --- a/themes/glu-dark-lighter.yaml +++ b/themes/glu-dark-lighter.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 296 + pair: null contrast: fg: 74 black: 0 diff --git a/themes/glu-dark.yaml b/themes/glu-dark.yaml index 09f04e1f..760f7438 100644 --- a/themes/glu-dark.yaml +++ b/themes/glu-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 299 + pair: null contrast: fg: 75.3 black: 0 diff --git a/themes/glv-s-theme.yaml b/themes/glv-s-theme.yaml index 1f023f19..3ba6b32b 100644 --- a/themes/glv-s-theme.yaml +++ b/themes/glv-s-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77.9 black: 0 diff --git a/themes/gms2.yaml b/themes/gms2.yaml index 0ab8fdff..fb3d1a3e 100644 --- a/themes/gms2.yaml +++ b/themes/gms2.yaml @@ -2,7 +2,7 @@ name: "GMS2" source: marketplace_id: "347Online.gms2-theme" version: "0.0.1" - installs: 356 + installs: 357 author: "347Online" repo: null url: "https://marketplace.visualstudio.com/items?itemName=347Online.gms2-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 66.8 black: 0 diff --git a/themes/gnome-base16.yaml b/themes/gnome-base16.yaml index 8eea365c..db80b191 100644 --- a/themes/gnome-base16.yaml +++ b/themes/gnome-base16.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 70.9 black: 0 diff --git a/themes/go-playground.yaml b/themes/go-playground.yaml index 8914f173..1b31c5f1 100644 --- a/themes/go-playground.yaml +++ b/themes/go-playground.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 104.7 black: 104.7 diff --git a/themes/go-source.yaml b/themes/go-source.yaml index e7a3a2bd..552eafec 100644 --- a/themes/go-source.yaml +++ b/themes/go-source.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 96.5 black: 96.5 diff --git a/themes/goa-beach-paradise.yaml b/themes/goa-beach-paradise.yaml index d7dd76af..7b1f9cff 100644 --- a/themes/goa-beach-paradise.yaml +++ b/themes/goa-beach-paradise.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 98.2 black: 0 diff --git a/themes/god-theme.yaml b/themes/god-theme.yaml index 7e8cfd94..e77a2888 100644 --- a/themes/god-theme.yaml +++ b/themes/god-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/godot-4.yaml b/themes/godot-4.yaml index 160054bf..4abe6f12 100644 --- a/themes/godot-4.yaml +++ b/themes/godot-4.yaml @@ -2,7 +2,7 @@ name: "Godot 4" source: marketplace_id: "mariodebono.godot-4-vscode-theme" version: "1.0.2" - installs: 905 + installs: 907 author: "Mario Debono" repo: "https://github.com/mariodebono/godot-4-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mariodebono.godot-4-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 257 + pair: null contrast: fg: 75 black: 0 diff --git a/themes/gojo-infinity-dark.yaml b/themes/gojo-infinity-dark.yaml index 74b5b4cb..de520275 100644 --- a/themes/gojo-infinity-dark.yaml +++ b/themes/gojo-infinity-dark.yaml @@ -2,7 +2,7 @@ name: "Gojo Infinity Dark" source: marketplace_id: "Shams.anime-theme-collection" version: "2.0.0" - installs: 388 + installs: 407 author: "Shams" repo: "https://github.com/shams909/AnimeThemeCollection" url: "https://marketplace.visualstudio.com/items?itemName=Shams.anime-theme-collection" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 279 + pair: null contrast: fg: 79.4 black: 0 diff --git a/themes/goku-code-dragon-ball-z-power-eye-safe.yaml b/themes/goku-code-dragon-ball-z-power-eye-safe.yaml index c157ec17..4f0aa36a 100644 --- a/themes/goku-code-dragon-ball-z-power-eye-safe.yaml +++ b/themes/goku-code-dragon-ball-z-power-eye-safe.yaml @@ -1,11 +1,11 @@ name: "Goku Code - Dragon Ball Z Power (Eye-Safe)" source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1834 + marketplace_id: "SecureDev01.theme-icon-pack" + version: "1.0.4" + installs: 906 author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + repo: "https://github.com/codewithevilxd/theme-icon-pack" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.theme-icon-pack" colors: bg: "#0F0E1A" fg: "#E8D5B7" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 287 + pair: null contrast: fg: 82.1 black: 0 diff --git a/themes/gold.yaml b/themes/gold.yaml index b70e4e64..b65b72ee 100644 --- a/themes/gold.yaml +++ b/themes/gold.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 72.2 black: 0 diff --git a/themes/golden-blue-color-theme.yaml b/themes/golden-blue-color-theme.yaml index 850ce577..7876c1fb 100644 --- a/themes/golden-blue-color-theme.yaml +++ b/themes/golden-blue-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 256 + pair: null contrast: fg: 104.6 black: 0 diff --git a/themes/golden-dracula.yaml b/themes/golden-dracula.yaml index 6a336db2..250925bd 100644 --- a/themes/golden-dracula.yaml +++ b/themes/golden-dracula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 100 black: 0 diff --git a/themes/golden-era.yaml b/themes/golden-era.yaml index 85a55d2f..8f1e79f1 100644 --- a/themes/golden-era.yaml +++ b/themes/golden-era.yaml @@ -2,7 +2,7 @@ name: "Golden Era" source: marketplace_id: "CodrJatin.golden-era" version: "0.6.0" - installs: 1697 + installs: 1698 author: "Codr Jatin" repo: "https://github.com/CodrJatin/vscode-Golden-Era" url: "https://marketplace.visualstudio.com/items?itemName=CodrJatin.golden-era" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 246 + pair: null contrast: fg: 104.6 black: 0 diff --git a/themes/golden-eye.yaml b/themes/golden-eye.yaml index f0ea8428..b7b819b3 100644 --- a/themes/golden-eye.yaml +++ b/themes/golden-eye.yaml @@ -2,7 +2,7 @@ name: "Golden Eye" source: marketplace_id: "ProphezAI.golden-eye" version: "1.0.3" - installs: 1032 + installs: 1033 author: "ProphezAI" repo: "https://github.com/ProphezAI/golden-eye" url: "https://marketplace.visualstudio.com/items?itemName=ProphezAI.golden-eye" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 138 + pair: null contrast: fg: 76.9 black: 0 diff --git a/themes/golden-sky.yaml b/themes/golden-sky.yaml index 910c185b..d76c04cc 100644 --- a/themes/golden-sky.yaml +++ b/themes/golden-sky.yaml @@ -2,7 +2,7 @@ name: "Golden Sky" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/golden-sunset.yaml b/themes/golden-sunset.yaml index b5ec401e..b6c9e010 100644 --- a/themes/golden-sunset.yaml +++ b/themes/golden-sunset.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 65 black: 0 diff --git a/themes/golden-wave.yaml b/themes/golden-wave.yaml index 1a833a6e..6c379f56 100644 --- a/themes/golden-wave.yaml +++ b/themes/golden-wave.yaml @@ -1,11 +1,11 @@ name: "Golden Wave" source: - marketplace_id: "sserafy.ttera-themes" - version: "2.0.7" - installs: 2036 + marketplace_id: "sserafy.ssera-themes" + version: "2.0.2" + installs: 334 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: bg: "#020617" fg: "#F1F5F9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 265 + pair: null contrast: fg: 100.8 black: 0 diff --git a/themes/goldentheme.yaml b/themes/goldentheme.yaml index 75ae7e05..355caa11 100644 --- a/themes/goldentheme.yaml +++ b/themes/goldentheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 40.5 black: 0 diff --git a/themes/goldfish-contrast.yaml b/themes/goldfish-contrast.yaml index 5ec70cee..a588293c 100644 --- a/themes/goldfish-contrast.yaml +++ b/themes/goldfish-contrast.yaml @@ -1,11 +1,11 @@ name: "goldfish-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0C0D0E" fg: "#F8F8F2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/goldfish-light.yaml b/themes/goldfish-light.yaml index 0c723bc6..20cbb082 100644 --- a/themes/goldfish-light.yaml +++ b/themes/goldfish-light.yaml @@ -1,11 +1,11 @@ name: "goldfish-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#2E3336" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.9 black: 0 diff --git a/themes/goldfish.yaml b/themes/goldfish.yaml index 2249c302..9d504a94 100644 --- a/themes/goldfish.yaml +++ b/themes/goldfish.yaml @@ -1,11 +1,11 @@ name: "goldfish" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2E3336" fg: "#F8F8F2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 97.3 black: 0 diff --git a/themes/goldream.yaml b/themes/goldream.yaml index 26de600d..f2450567 100644 --- a/themes/goldream.yaml +++ b/themes/goldream.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 76.8 black: 0 diff --git a/themes/good-purple.yaml b/themes/good-purple.yaml index 07930711..5c9b58d8 100644 --- a/themes/good-purple.yaml +++ b/themes/good-purple.yaml @@ -2,7 +2,7 @@ name: "Good Purple" source: marketplace_id: "YanBystrikov.good-purple" version: "1.4.0" - installs: 210 + installs: 211 author: "YanBystrikov" repo: "https://github.com/YanBystrik/good-purple" url: "https://marketplace.visualstudio.com/items?itemName=YanBystrikov.good-purple" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 279 + pair: null contrast: fg: 68.8 black: 0 diff --git a/themes/goodnight-classic.yaml b/themes/goodnight-classic.yaml index ac2f359a..cbd6bb17 100644 --- a/themes/goodnight-classic.yaml +++ b/themes/goodnight-classic.yaml @@ -2,7 +2,7 @@ name: "Goodnight Classic" source: marketplace_id: "MatheusPiovezan.Goodnight" version: "0.0.7" - installs: 2769 + installs: 2770 author: "Matheus Piovezan" repo: "https://github.com/MatheusPiovezan/vscode-theme-goodnight" url: "https://marketplace.visualstudio.com/items?itemName=MatheusPiovezan.Goodnight" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 267 + pair: null contrast: fg: 23.1 black: 9.8 diff --git a/themes/goodnight.yaml b/themes/goodnight.yaml index bf6dc0ce..0f09f8c4 100644 --- a/themes/goodnight.yaml +++ b/themes/goodnight.yaml @@ -2,7 +2,7 @@ name: "Goodnight" source: marketplace_id: "MatheusPiovezan.Goodnight" version: "0.0.7" - installs: 2769 + installs: 2770 author: "Matheus Piovezan" repo: "https://github.com/MatheusPiovezan/vscode-theme-goodnight" url: "https://marketplace.visualstudio.com/items?itemName=MatheusPiovezan.Goodnight" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 28.7 black: 0 diff --git a/themes/gooey-theme.yaml b/themes/gooey-theme.yaml index 679f4cf5..76be5945 100644 --- a/themes/gooey-theme.yaml +++ b/themes/gooey-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 275 + pair: null contrast: fg: 63.9 black: 0 diff --git a/themes/googledark.yaml b/themes/googledark.yaml index d59792ad..fca03bd3 100644 --- a/themes/googledark.yaml +++ b/themes/googledark.yaml @@ -2,7 +2,7 @@ name: "GoogleDark" source: marketplace_id: "Avetis.codeme-theme" version: "0.1.1" - installs: 8079 + installs: 8080 author: "Avetis" repo: "https://github.com/AvetisDN/codeme-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/googlory-color-theme.yaml b/themes/googlory-color-theme.yaml deleted file mode 100644 index 40407664..00000000 --- a/themes/googlory-color-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "googlory-color-theme" -source: - marketplace_id: "gtwsky.oolory" - version: "2.0.0" - installs: 2116 - author: "Michał Gutowski" - repo: "https://gitlab.com/gtwsky_/oolory" - url: "https://marketplace.visualstudio.com/items?itemName=gtwsky.oolory" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#FF0032" - green: "#008000" - yellow: "#D7AF00" - blue: "#004BFF" - magenta: "#7D46FC" - cyan: "#00AFFF" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#FF0032" - brightGreen: "#008000" - brightYellow: "#D7AF00" - brightBlue: "#004BFF" - brightMagenta: "#7D46FC" - brightCyan: "#00AFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "purple" - hue: null - contrast: - fg: 106 - black: 106 - red: 63.9 - green: 74.6 - yellow: 40.7 - blue: 78.9 - magenta: 74 - cyan: 47.4 - white: 0 - brightBlack: 106 - brightRed: 63.9 - brightGreen: 74.6 - brightYellow: 40.7 - brightBlue: 78.9 - brightMagenta: 74 - brightCyan: 47.4 - brightWhite: 0 diff --git a/themes/goolou.yaml b/themes/goolou.yaml index 1f539438..1f56cee8 100644 --- a/themes/goolou.yaml +++ b/themes/goolou.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 74.8 black: 0 diff --git a/themes/goose.yaml b/themes/goose.yaml index 2e57b562..59edc5a2 100644 --- a/themes/goose.yaml +++ b/themes/goose.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 103.3 black: 22.8 diff --git a/themes/goosebumps.yaml b/themes/goosebumps.yaml index 44e3fdc7..9489c429 100644 --- a/themes/goosebumps.yaml +++ b/themes/goosebumps.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 142 + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/gopher.yaml b/themes/gopher.yaml index 409a236c..bbfc0407 100644 --- a/themes/gopher.yaml +++ b/themes/gopher.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 102.9 black: 102.9 diff --git a/themes/gorfius-orange.yaml b/themes/gorfius-orange.yaml index 6feb3721..0bb32971 100644 --- a/themes/gorfius-orange.yaml +++ b/themes/gorfius-orange.yaml @@ -1,11 +1,11 @@ name: "Gorfius Orange" source: - marketplace_id: "GorIvanov.gorfius-orange-theme" - version: "0.0.4" - installs: 537 + marketplace_id: "GorIvanov.gorfius-smoke" + version: "0.1.0" + installs: 85 author: "Gor Ivanov" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=GorIvanov.gorfius-orange-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GorIvanov.gorfius-smoke" colors: bg: "#1B1B1B" fg: "#9D9D9D" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 47.8 black: 21.6 diff --git a/themes/gorfius-peace-forest.yaml b/themes/gorfius-peace-forest.yaml index 87415299..20578454 100644 --- a/themes/gorfius-peace-forest.yaml +++ b/themes/gorfius-peace-forest.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 88.1 black: 21 diff --git a/themes/gorg.yaml b/themes/gorg.yaml index 565bf4eb..db1652ad 100644 --- a/themes/gorg.yaml +++ b/themes/gorg.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 248 + pair: null contrast: fg: 75.1 black: 0 diff --git a/themes/gosthy.yaml b/themes/gosthy.yaml index 43a896b2..ad14b543 100644 --- a/themes/gosthy.yaml +++ b/themes/gosthy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 249 + pair: null contrast: fg: 77.3 black: 11.2 diff --git a/themes/gotham.yaml b/themes/gotham.yaml index 8cec474c..ccf3f8cf 100644 --- a/themes/gotham.yaml +++ b/themes/gotham.yaml @@ -1,11 +1,11 @@ name: "Gotham" source: - marketplace_id: "jach.gotham-theme" - version: "0.1.3" - installs: 3895 - author: "Michael Jach" + marketplace_id: "MichalJach.gotham" + version: "0.1.2" + installs: 2296 + author: "Michal Jach" repo: "https://github.com/michaljach/gotham-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jach.gotham-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MichalJach.gotham" colors: bg: "#000000" fg: "#D7DAE1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 84.1 black: 0 diff --git a/themes/gothic-absinthe.yaml b/themes/gothic-absinthe.yaml index 663f658b..20b4e27a 100644 --- a/themes/gothic-absinthe.yaml +++ b/themes/gothic-absinthe.yaml @@ -2,7 +2,7 @@ name: "Gothic Absinthe" source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" - installs: 1123 + installs: 1129 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 152 + pair: null contrast: fg: 90.6 black: 0 diff --git a/themes/gothic-amber-fog.yaml b/themes/gothic-amber-fog.yaml index 74ffc9c5..2dac7df9 100644 --- a/themes/gothic-amber-fog.yaml +++ b/themes/gothic-amber-fog.yaml @@ -2,7 +2,7 @@ name: "Gothic Amber Fog" source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" - installs: 1123 + installs: 1129 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 87.9 black: 0 diff --git a/themes/gothic-blood-moon.yaml b/themes/gothic-blood-moon.yaml index de9ab19f..30d61d9b 100644 --- a/themes/gothic-blood-moon.yaml +++ b/themes/gothic-blood-moon.yaml @@ -2,7 +2,7 @@ name: "Gothic Blood Moon" source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" - installs: 1123 + installs: 1129 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 19 + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/gothic-cathedral.yaml b/themes/gothic-cathedral.yaml index aeae692f..3e34ae09 100644 --- a/themes/gothic-cathedral.yaml +++ b/themes/gothic-cathedral.yaml @@ -2,7 +2,7 @@ name: "Gothic Cathedral" source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" - installs: 1123 + installs: 1129 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/gothic-cemetery.yaml b/themes/gothic-cemetery.yaml index 51e8375b..c60c4c8a 100644 --- a/themes/gothic-cemetery.yaml +++ b/themes/gothic-cemetery.yaml @@ -2,7 +2,7 @@ name: "Gothic Cemetery" source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" - installs: 1123 + installs: 1129 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/gothic-dark.yaml b/themes/gothic-dark.yaml index 7a256d5b..b87a26bf 100644 --- a/themes/gothic-dark.yaml +++ b/themes/gothic-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Gothic Light" contrast: fg: 86 black: 0 diff --git a/themes/gothic-emerald-crypt.yaml b/themes/gothic-emerald-crypt.yaml index 8c7392b8..9e3a84c9 100644 --- a/themes/gothic-emerald-crypt.yaml +++ b/themes/gothic-emerald-crypt.yaml @@ -2,7 +2,7 @@ name: "Gothic Emerald Crypt" source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" - installs: 1123 + installs: 1129 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 165 + pair: null contrast: fg: 84.4 black: 0 diff --git a/themes/gothic-jester.yaml b/themes/gothic-jester.yaml index 85bdd106..e7093399 100644 --- a/themes/gothic-jester.yaml +++ b/themes/gothic-jester.yaml @@ -2,7 +2,7 @@ name: "Gothic Jester" source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" - installs: 1123 + installs: 1129 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/gothic-midnight-rose.yaml b/themes/gothic-midnight-rose.yaml index aa0d2904..cc0ab138 100644 --- a/themes/gothic-midnight-rose.yaml +++ b/themes/gothic-midnight-rose.yaml @@ -2,7 +2,7 @@ name: "Gothic Midnight Rose" source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" - installs: 1123 + installs: 1129 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 297 + pair: null contrast: fg: 84.9 black: 0 diff --git a/themes/gothic-qaddy.yaml b/themes/gothic-qaddy.yaml index 3e807bde..8d7a5205 100644 --- a/themes/gothic-qaddy.yaml +++ b/themes/gothic-qaddy.yaml @@ -2,7 +2,7 @@ name: "Gothic Qaddy" source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" - installs: 1123 + installs: 1129 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 300 + pair: null contrast: fg: 100.5 black: 0 diff --git a/themes/gothic-raven.yaml b/themes/gothic-raven.yaml index f35aea3c..79e20bc2 100644 --- a/themes/gothic-raven.yaml +++ b/themes/gothic-raven.yaml @@ -2,7 +2,7 @@ name: "Gothic Raven" source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" - installs: 1123 + installs: 1129 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 248 + pair: null contrast: fg: 99.8 black: 0 diff --git a/themes/gothic-spider-lily.yaml b/themes/gothic-spider-lily.yaml index eb210425..57c9ead2 100644 --- a/themes/gothic-spider-lily.yaml +++ b/themes/gothic-spider-lily.yaml @@ -2,7 +2,7 @@ name: "Gothic Spider Lily" source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" - installs: 1123 + installs: 1129 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 23 + pair: null contrast: fg: 29.4 black: 0 diff --git a/themes/gothic-twilight-forest.yaml b/themes/gothic-twilight-forest.yaml index ac967b79..93b15624 100644 --- a/themes/gothic-twilight-forest.yaml +++ b/themes/gothic-twilight-forest.yaml @@ -2,7 +2,7 @@ name: "Gothic Twilight Forest" source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" - installs: 1123 + installs: 1129 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 165 + pair: null contrast: fg: 87.6 black: 0 diff --git a/themes/gothic-vampire.yaml b/themes/gothic-vampire.yaml index fb69a855..1f9aabd7 100644 --- a/themes/gothic-vampire.yaml +++ b/themes/gothic-vampire.yaml @@ -1,49 +1,50 @@ name: "Gothic Vampire" source: - marketplace_id: "Diyllan.midnight-coven-themes" - version: "1.0.1" - installs: 1123 - author: "Diyllan" - repo: "https://github.com/diyllan/midnight-coven-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + marketplace_id: "sserafy.ssera-themes" + version: "2.0.2" + installs: 334 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: - bg: "#1A1017" - fg: "#F5F0F5" - black: "#15080F" - red: "#FF5077" - green: "#A03060" - yellow: "#FF9070" - blue: "#A070B0" - magenta: "#D060A0" - cyan: "#CF4070" - white: "#F0D8E0" - brightBlack: "#907080" - brightRed: "#FF7090" - brightGreen: "#C04070" - brightYellow: "#FFB090" - brightBlue: "#C090D0" - brightMagenta: "#F080C0" - brightCyan: "#FF6090" - brightWhite: "#FFF0F5" + bg: "#0A0A0C" + fg: "#F8F8F2" + black: "#1A1A1F" + red: "#8B1538" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#6272A4" + magenta: "#BD93F9" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#44475A" + brightRed: "#B91E47" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#8BE9FD" + brightMagenta: "#BD93F9" + brightCyan: "#8BE9FD" + brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "red" - hue: 338 + accent: "green" + hue: null + pair: null contrast: - fg: 98.3 + fg: 102.8 black: 0 - red: 43.7 - green: 18.7 - yellow: 58.2 - blue: 35 - magenta: 38.1 - cyan: 30.5 - white: 86 - brightBlack: 30.8 - brightRed: 50.6 - brightGreen: 27.4 - brightYellow: 69.6 - brightBlue: 50.9 - brightMagenta: 53.4 - brightCyan: 47.2 - brightWhite: 99.7 + red: 12.2 + green: 85.7 + yellow: 99.4 + blue: 28.9 + magenta: 54.5 + cyan: 84.8 + white: 102.8 + brightBlack: 11.1 + brightRed: 22.1 + brightGreen: 85.7 + brightYellow: 99.4 + brightBlue: 84.8 + brightMagenta: 54.5 + brightCyan: 84.8 + brightWhite: 107.7 diff --git a/themes/gothic-victorian-mourning.yaml b/themes/gothic-victorian-mourning.yaml index a69668b8..bec57b09 100644 --- a/themes/gothic-victorian-mourning.yaml +++ b/themes/gothic-victorian-mourning.yaml @@ -2,7 +2,7 @@ name: "Gothic Victorian Mourning" source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" - installs: 1123 + installs: 1129 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 64 + pair: null contrast: fg: 72.2 black: 0 diff --git a/themes/gothic.yaml b/themes/gothic.yaml index 87f3368b..c6781769 100644 --- a/themes/gothic.yaml +++ b/themes/gothic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 91.1 black: 0 diff --git a/themes/gourd.yaml b/themes/gourd.yaml index 5709b293..3db19111 100644 --- a/themes/gourd.yaml +++ b/themes/gourd.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 81.4 black: 0 diff --git a/themes/gptheme-dark.yaml b/themes/gptheme-dark.yaml index 88410055..d79d31ff 100644 --- a/themes/gptheme-dark.yaml +++ b/themes/gptheme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 97.1 black: 97.1 diff --git a/themes/gptheme.yaml b/themes/gptheme.yaml index 10fa9a5c..c0825fe8 100644 --- a/themes/gptheme.yaml +++ b/themes/gptheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/gracefulbear.yaml b/themes/gracefulbear.yaml index b53579d4..e25d1630 100644 --- a/themes/gracefulbear.yaml +++ b/themes/gracefulbear.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 58 black: 7.4 diff --git a/themes/grandblue-pastel.yaml b/themes/grandblue-pastel.yaml index c64d09a8..e495b597 100644 --- a/themes/grandblue-pastel.yaml +++ b/themes/grandblue-pastel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 264 + pair: null contrast: fg: 98.1 black: 0 diff --git a/themes/grandblue-soft.yaml b/themes/grandblue-soft.yaml index 0d8837fa..447fe7e9 100644 --- a/themes/grandblue-soft.yaml +++ b/themes/grandblue-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 245 + pair: null contrast: fg: 95.8 black: 0 diff --git a/themes/grandblue.yaml b/themes/grandblue.yaml index e9b23e99..e2a69853 100644 --- a/themes/grandblue.yaml +++ b/themes/grandblue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 244 + pair: null contrast: fg: 91 black: 0 diff --git a/themes/grank-blackout.yaml b/themes/grank-blackout.yaml index 3f0b4260..f8f8474b 100644 --- a/themes/grank-blackout.yaml +++ b/themes/grank-blackout.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/grank-italics.yaml b/themes/grank-italics.yaml deleted file mode 100644 index 686eebd6..00000000 --- a/themes/grank-italics.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Grank Italics" -source: - marketplace_id: "samuraikitts.grank" - version: "0.0.4" - installs: 48 - author: "Emmanuel Akala" - repo: "https://github.com/sambabib/grank-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=samuraikitts.grank" -colors: - bg: "#1E1E1E" - fg: "#D4D4D4" - black: "#000000" - red: "#F44747" - green: "#4EC9B0" - yellow: "#CE9178" - blue: "#569CD6" - magenta: "#C586C0" - cyan: "#9CDCFE" - white: "#D4D4D4" - brightBlack: "#2D2D2D" - brightRed: "#FF6B6B" - brightGreen: "#6FCFB0" - brightYellow: "#DCDCAA" - brightBlue: "#6FB9FF" - brightMagenta: "#D7BAFF" - brightCyan: "#B5DCFE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 78.7 - black: 0 - red: 37.6 - green: 61.1 - yellow: 48.7 - blue: 44.2 - magenta: 46.5 - cyan: 78.4 - white: 78.7 - brightBlack: 0 - brightRed: 47.3 - brightGreen: 65.5 - brightYellow: 81.7 - brightBlue: 59.8 - brightMagenta: 70.6 - brightCyan: 80.7 - brightWhite: 106 diff --git a/themes/grapered.yaml b/themes/grapered.yaml index c571f54e..580f7420 100644 --- a/themes/grapered.yaml +++ b/themes/grapered.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 16.9 black: 0 diff --git a/themes/grapevine.yaml b/themes/grapevine.yaml index 71e75bba..ba925872 100644 --- a/themes/grapevine.yaml +++ b/themes/grapevine.yaml @@ -2,7 +2,7 @@ name: "grapevine" source: marketplace_id: "rautenbergf.grapevine" version: "1.0.0" - installs: 1602 + installs: 1603 author: "rautenbergf" repo: "https://github.com/rautenbergf/grapevine" url: "https://marketplace.visualstudio.com/items?itemName=rautenbergf.grapevine" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 65.4 black: 0 diff --git a/themes/graphlinq-dark.yaml b/themes/graphlinq-dark.yaml index f2ec1bf9..017206e1 100644 --- a/themes/graphlinq-dark.yaml +++ b/themes/graphlinq-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 288 + pair: null contrast: fg: 57.8 black: 0 diff --git a/themes/grassrivers-sunset.yaml b/themes/grassrivers-sunset.yaml index 9c191ac9..116cef0c 100644 --- a/themes/grassrivers-sunset.yaml +++ b/themes/grassrivers-sunset.yaml @@ -2,7 +2,7 @@ name: "Grassrivers Sunset" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 71 + pair: null contrast: fg: 101.4 black: 0 diff --git a/themes/gravel-pit.yaml b/themes/gravel-pit.yaml index f4d796b6..38245186 100644 --- a/themes/gravel-pit.yaml +++ b/themes/gravel-pit.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 70.9 black: 0 diff --git a/themes/graveyard.yaml b/themes/graveyard.yaml index c386a802..46b01318 100644 --- a/themes/graveyard.yaml +++ b/themes/graveyard.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 70.7 black: 7.5 diff --git a/themes/gravity.yaml b/themes/gravity.yaml index d9a8d52a..e72b8344 100644 --- a/themes/gravity.yaml +++ b/themes/gravity.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 71.2 black: 0 diff --git a/themes/gray-matter.yaml b/themes/gray-matter.yaml index abae0c63..28ab0739 100644 --- a/themes/gray-matter.yaml +++ b/themes/gray-matter.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 54.3 black: 0 diff --git a/themes/gray-pastel.yaml b/themes/gray-pastel.yaml index c806443d..2893de27 100644 --- a/themes/gray-pastel.yaml +++ b/themes/gray-pastel.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 66.9 black: 106 diff --git a/themes/gray.yaml b/themes/gray.yaml deleted file mode 100644 index 134fbd71..00000000 --- a/themes/gray.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "gray" -source: - marketplace_id: "Riptide.red-riptide-theme-dark" - version: "0.1.0" - installs: 1545 - author: "Riptide" - repo: "https://github.com/red-riptide/red-riptide-theme-dark" - url: "https://marketplace.visualstudio.com/items?itemName=Riptide.red-riptide-theme-dark" -colors: - bg: "#202020" - fg: "#ABABAB" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 54.7 - black: 7.7 - red: 35.6 - green: 59.2 - yellow: 47.5 - blue: 48.5 - magenta: 37.9 - cyan: 51.4 - white: 89.5 - brightBlack: 14.3 - brightRed: 45 - brightGreen: 75.7 - brightYellow: 60.1 - brightBlue: 62.6 - brightMagenta: 49.1 - brightCyan: 66.7 - brightWhite: 105.8 diff --git a/themes/graygraygray.yaml b/themes/graygraygray.yaml index 89eabc13..107ffc51 100644 --- a/themes/graygraygray.yaml +++ b/themes/graygraygray.yaml @@ -2,7 +2,7 @@ name: "graygraygray" source: marketplace_id: "kendama1980.graygraygray" version: "0.0.1" - installs: 9405 + installs: 9406 author: "kendama1980" repo: "https://github.com/kendama1980/graygraygray" url: "https://marketplace.visualstudio.com/items?itemName=kendama1980.graygraygray" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 71.1 black: 71.1 diff --git a/themes/graymium-theme.yaml b/themes/graymium-theme.yaml index 0cf6664c..1712be37 100644 --- a/themes/graymium-theme.yaml +++ b/themes/graymium-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 73.5 black: 20 diff --git a/themes/grayscale301-light.yaml b/themes/grayscale301-light.yaml index 91a2f6db..782a03c9 100644 --- a/themes/grayscale301-light.yaml +++ b/themes/grayscale301-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 69.9 black: 69.9 diff --git a/themes/great-white-bloodloss.yaml b/themes/great-white-bloodloss.yaml index bcf12600..47a26d00 100644 --- a/themes/great-white-bloodloss.yaml +++ b/themes/great-white-bloodloss.yaml @@ -2,7 +2,7 @@ name: "Great White (Bloodloss)" source: marketplace_id: "shark-labs.shark-labs-great-white-theme" version: "0.6.3" - installs: 21 + installs: 22 author: "theSharkArtist" repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 23 + pair: null contrast: fg: 95.2 black: 0 diff --git a/themes/great-white-dark.yaml b/themes/great-white-dark.yaml index 67815016..de48b703 100644 --- a/themes/great-white-dark.yaml +++ b/themes/great-white-dark.yaml @@ -2,7 +2,7 @@ name: "Great White (Dark)" source: marketplace_id: "shark-labs.shark-labs-great-white-theme" version: "0.6.3" - installs: 21 + installs: 22 author: "theSharkArtist" repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 239 + pair: null contrast: fg: 90 black: 0 diff --git a/themes/great-white-frost.yaml b/themes/great-white-frost.yaml index 46cf618a..a550f40a 100644 --- a/themes/great-white-frost.yaml +++ b/themes/great-white-frost.yaml @@ -2,7 +2,7 @@ name: "Great White (Frost)" source: marketplace_id: "shark-labs.shark-labs-great-white-theme" version: "0.6.3" - installs: 21 + installs: 22 author: "theSharkArtist" repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 97.9 black: 98.7 diff --git a/themes/great-white-high-contrast-dark.yaml b/themes/great-white-high-contrast-dark.yaml index 68d123ca..0f533f8c 100644 --- a/themes/great-white-high-contrast-dark.yaml +++ b/themes/great-white-high-contrast-dark.yaml @@ -2,7 +2,7 @@ name: "Great White (High Contrast Dark)" source: marketplace_id: "shark-labs.shark-labs-great-white-theme" version: "0.6.3" - installs: 21 + installs: 22 author: "theSharkArtist" repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 104.4 black: 0 diff --git a/themes/great-white-high-contrast-light.yaml b/themes/great-white-high-contrast-light.yaml index 9c0b5afa..42f32918 100644 --- a/themes/great-white-high-contrast-light.yaml +++ b/themes/great-white-high-contrast-light.yaml @@ -2,7 +2,7 @@ name: "Great White (High Contrast Light)" source: marketplace_id: "shark-labs.shark-labs-great-white-theme" version: "0.6.3" - installs: 21 + installs: 22 author: "theSharkArtist" repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 103.5 black: 103 diff --git a/themes/great-white-light.yaml b/themes/great-white-light.yaml index 89b64b52..9527f2ea 100644 --- a/themes/great-white-light.yaml +++ b/themes/great-white-light.yaml @@ -2,7 +2,7 @@ name: "Great White (Light)" source: marketplace_id: "shark-labs.shark-labs-great-white-theme" version: "0.6.3" - installs: 21 + installs: 22 author: "theSharkArtist" repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 95.1 black: 96.1 diff --git a/themes/great-white-storm.yaml b/themes/great-white-storm.yaml index f0eb9d58..82373abe 100644 --- a/themes/great-white-storm.yaml +++ b/themes/great-white-storm.yaml @@ -2,7 +2,7 @@ name: "Great White (Storm)" source: marketplace_id: "shark-labs.shark-labs-great-white-theme" version: "0.6.3" - installs: 21 + installs: 22 author: "theSharkArtist" repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 252 + pair: null contrast: fg: 94.5 black: 0 diff --git a/themes/great-white.yaml b/themes/great-white.yaml index d4714d42..0993341f 100644 --- a/themes/great-white.yaml +++ b/themes/great-white.yaml @@ -2,7 +2,7 @@ name: "Great White" source: marketplace_id: "thehedgefrog.greatwhite" version: "1.0.0" - installs: 5908 + installs: 5910 author: "thehedgefrog" repo: "https://github.com/thehedgefrog/great-white-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thehedgefrog.greatwhite" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: null contrast: fg: 94.9 black: 13.5 diff --git a/themes/greblue.yaml b/themes/greblue.yaml index 68975b3f..a3ef3cc2 100644 --- a/themes/greblue.yaml +++ b/themes/greblue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 39 black: 0 diff --git a/themes/greeeeen.yaml b/themes/greeeeen.yaml index 317317b2..4eb06cc6 100644 --- a/themes/greeeeen.yaml +++ b/themes/greeeeen.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 145 + pair: null contrast: fg: 96.3 black: 8.5 diff --git a/themes/green-coffee.yaml b/themes/green-coffee.yaml index 88e7e025..2455b656 100644 --- a/themes/green-coffee.yaml +++ b/themes/green-coffee.yaml @@ -2,7 +2,7 @@ name: "Green Coffee" source: marketplace_id: "Rajeshwaran.developer-theme-dark" version: "5.0.0" - installs: 162112 + installs: 162179 author: "Rajeshwaran" repo: "https://github.com/Rajeshwaran2001/developer-theme-dark" url: "https://marketplace.visualstudio.com/items?itemName=Rajeshwaran.developer-theme-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 23 + pair: null contrast: fg: 57.7 black: 0 diff --git a/themes/green-geek.yaml b/themes/green-geek.yaml index fbd64cd6..70abe5a6 100644 --- a/themes/green-geek.yaml +++ b/themes/green-geek.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 0 diff --git a/themes/green-kingdom.yaml b/themes/green-kingdom.yaml index 243d78c7..1a34744e 100644 --- a/themes/green-kingdom.yaml +++ b/themes/green-kingdom.yaml @@ -1,11 +1,11 @@ name: "Green Kingdom" source: - marketplace_id: "YesCode.inspiration" - version: "0.0.19" - installs: 1076 + marketplace_id: "YesCode.morita" + version: "0.0.18" + installs: 228 author: "YesCode" - repo: "https://github.com/yesomac/inspiration_themevsc" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" + repo: "https://github.com/yesomac/MyThemes" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" colors: bg: "#2D2D53" fg: "#D1D1F1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 282 + pair: null contrast: fg: 74.8 black: 0 diff --git a/themes/green-low-contrast.yaml b/themes/green-low-contrast.yaml index cfaa2207..76f60560 100644 --- a/themes/green-low-contrast.yaml +++ b/themes/green-low-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 219 + pair: null contrast: fg: 43.9 black: 0 diff --git a/themes/green-papper.yaml b/themes/green-papper.yaml index 40d4793b..71a4dd4b 100644 --- a/themes/green-papper.yaml +++ b/themes/green-papper.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 100.3 black: 103.5 diff --git a/themes/green-theme.yaml b/themes/green-theme.yaml index 662f67ae..037e4ed1 100644 --- a/themes/green-theme.yaml +++ b/themes/green-theme.yaml @@ -2,7 +2,7 @@ name: "green-theme" source: marketplace_id: "flyyn2.green-theme" version: "1.0.2" - installs: 2721 + installs: 2722 author: "flyyn2" repo: null url: "https://marketplace.visualstudio.com/items?itemName=flyyn2.green-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: 148 + pair: null contrast: fg: 75.1 black: 80.9 diff --git a/themes/green-tree.yaml b/themes/green-tree.yaml index 321a16f6..92f3d382 100644 --- a/themes/green-tree.yaml +++ b/themes/green-tree.yaml @@ -2,7 +2,7 @@ name: "Green Tree" source: marketplace_id: "stevennyang.green-tree" version: "1.2.1" - installs: 5715 + installs: 5716 author: "Steven N. Yang" repo: "https://github.com/snyang/vscode-theme-green-tree" url: "https://marketplace.visualstudio.com/items?itemName=stevennyang.green-tree" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 100.6 black: 103.9 diff --git a/themes/green-valley-forest.yaml b/themes/green-valley-forest.yaml index 7369a44b..52ac72ec 100644 --- a/themes/green-valley-forest.yaml +++ b/themes/green-valley-forest.yaml @@ -2,7 +2,7 @@ name: "Green Valley Forest" source: marketplace_id: "helciopenha.green-valley" version: "1.0.1" - installs: 773 + installs: 774 author: "Helcio Penha" repo: "https://github.com/helciopenha/green-valley-vscode" url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 100.7 black: 0 diff --git a/themes/green-valley-matrix.yaml b/themes/green-valley-matrix.yaml index 6fccc359..a4af627f 100644 --- a/themes/green-valley-matrix.yaml +++ b/themes/green-valley-matrix.yaml @@ -2,7 +2,7 @@ name: "Green Valley Matrix" source: marketplace_id: "helciopenha.green-valley" version: "1.0.1" - installs: 773 + installs: 774 author: "Helcio Penha" repo: "https://github.com/helciopenha/green-valley-vscode" url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 100.7 black: 0 diff --git a/themes/green-valley-midnight.yaml b/themes/green-valley-midnight.yaml index 4fcf9683..898ee33f 100644 --- a/themes/green-valley-midnight.yaml +++ b/themes/green-valley-midnight.yaml @@ -2,7 +2,7 @@ name: "Green Valley Midnight" source: marketplace_id: "helciopenha.green-valley" version: "1.0.1" - installs: 773 + installs: 774 author: "Helcio Penha" repo: "https://github.com/helciopenha/green-valley-vscode" url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.7 black: 100.1 diff --git a/themes/green-valley-mint.yaml b/themes/green-valley-mint.yaml index d4b98266..d5eb11f2 100644 --- a/themes/green-valley-mint.yaml +++ b/themes/green-valley-mint.yaml @@ -2,7 +2,7 @@ name: "Green Valley Mint" source: marketplace_id: "helciopenha.green-valley" version: "1.0.1" - installs: 773 + installs: 774 author: "Helcio Penha" repo: "https://github.com/helciopenha/green-valley-vscode" url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.5 black: 0 diff --git a/themes/green-valley-neo.yaml b/themes/green-valley-neo.yaml index 31a70975..c040c1b3 100644 --- a/themes/green-valley-neo.yaml +++ b/themes/green-valley-neo.yaml @@ -2,7 +2,7 @@ name: "Green Valley Neo" source: marketplace_id: "helciopenha.green-valley" version: "1.0.1" - installs: 773 + installs: 774 author: "Helcio Penha" repo: "https://github.com/helciopenha/green-valley-vscode" url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 100.7 black: 0 diff --git a/themes/green-water.yaml b/themes/green-water.yaml index dc01cfb1..bf7ace97 100644 --- a/themes/green-water.yaml +++ b/themes/green-water.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 106.7 black: 0 diff --git a/themes/green-yow.yaml b/themes/green-yow.yaml index 2ef3961f..7970113d 100644 --- a/themes/green-yow.yaml +++ b/themes/green-yow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/green.yaml b/themes/green.yaml index 2dca0c5d..2dd81e72 100644 --- a/themes/green.yaml +++ b/themes/green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 72.1 black: 0 diff --git a/themes/greenbreeze-dark.yaml b/themes/greenbreeze-dark.yaml index 8dae5416..79fa5cd0 100644 --- a/themes/greenbreeze-dark.yaml +++ b/themes/greenbreeze-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 145 + pair: null contrast: fg: 98.1 black: 23.1 diff --git a/themes/greenbreeze-light.yaml b/themes/greenbreeze-light.yaml index c9780274..f8c6c067 100644 --- a/themes/greenbreeze-light.yaml +++ b/themes/greenbreeze-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 94.4 black: 98.9 diff --git a/themes/greenbyte-dark.yaml b/themes/greenbyte-dark.yaml index 7ec409d0..c31c7d83 100644 --- a/themes/greenbyte-dark.yaml +++ b/themes/greenbyte-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 254 + pair: null contrast: fg: 58.7 black: 0 diff --git a/themes/greencloud.yaml b/themes/greencloud.yaml index 4c3b0633..18877ab2 100644 --- a/themes/greencloud.yaml +++ b/themes/greencloud.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 215 + pair: null contrast: fg: 106.2 black: 0 diff --git a/themes/greeney-v2.yaml b/themes/greeney-v2.yaml index d118aacd..80eb4aca 100644 --- a/themes/greeney-v2.yaml +++ b/themes/greeney-v2.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 218 + pair: null contrast: fg: 89 black: 9.2 diff --git a/themes/greeney.yaml b/themes/greeney.yaml index bc017f8b..b3113d1f 100644 --- a/themes/greeney.yaml +++ b/themes/greeney.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 218 + pair: null contrast: fg: 89 black: 9.2 diff --git a/themes/greeni.yaml b/themes/greeni.yaml index 1c7c2868..66ff967b 100644 --- a/themes/greeni.yaml +++ b/themes/greeni.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 217 + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/greenmachine.yaml b/themes/greenmachine.yaml index 5adab476..59b439c9 100644 --- a/themes/greenmachine.yaml +++ b/themes/greenmachine.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 80 black: 0 diff --git a/themes/greenspace.yaml b/themes/greenspace.yaml index 36ed95a3..d8328f87 100644 --- a/themes/greenspace.yaml +++ b/themes/greenspace.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 272 + pair: null contrast: fg: 75.3 black: 0 diff --git a/themes/greeny.yaml b/themes/greeny.yaml deleted file mode 100644 index b72263ba..00000000 --- a/themes/greeny.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Greeny" -source: - marketplace_id: "J3NGGG26.lucky-green" - version: "0.0.1" - installs: 41 - author: "J3NGGG26" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=J3NGGG26.lucky-green" -colors: - bg: "#050F0E" - fg: "#40FF9C" - black: "#0F0F0F" - red: "#E6274D" - green: "#91E673" - yellow: "#E62E7A" - blue: "#83E6B4" - magenta: "#E66C84" - cyan: "#27E6B0" - white: "#CED9D3" - brightBlack: "#171717" - brightRed: "#FF1342" - brightGreen: "#8FFF66" - brightYellow: "#FF1979" - brightBlue: "#78FFBB" - brightMagenta: "#FF456A" - brightCyan: "#12FFBC" - brightWhite: "#F2E6E9" -meta: - mode: "dark" - accent: "red" - hue: 188 - contrast: - fg: 88.6 - black: 0 - red: 32.7 - green: 78.7 - yellow: 34.3 - blue: 79.4 - magenta: 44.4 - cyan: 75.8 - white: 81.6 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 91 - brightYellow: 39.1 - brightBlue: 91.6 - brightMagenta: 42.1 - brightCyan: 89 - brightWhite: 93.2 diff --git a/themes/grewee-colorscheme.yaml b/themes/grewee-colorscheme.yaml index 1bc38990..47b0b5e1 100644 --- a/themes/grewee-colorscheme.yaml +++ b/themes/grewee-colorscheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83 black: 0 diff --git a/themes/greygull.yaml b/themes/greygull.yaml index be82d9d3..7bf8b8fd 100644 --- a/themes/greygull.yaml +++ b/themes/greygull.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 72.2 black: 72.2 diff --git a/themes/greyout.yaml b/themes/greyout.yaml index b9c33c2a..0d9c012a 100644 --- a/themes/greyout.yaml +++ b/themes/greyout.yaml @@ -2,7 +2,7 @@ name: "Greyout" source: marketplace_id: "Eses.greyout" version: "0.0.6" - installs: 2033 + installs: 2034 author: "Eses" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Eses.greyout" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 93.9 black: 93.9 diff --git a/themes/greystillplays.yaml b/themes/greystillplays.yaml index 655c4455..b1a2fe75 100644 --- a/themes/greystillplays.yaml +++ b/themes/greystillplays.yaml @@ -2,7 +2,7 @@ name: "GreyStillPlays" source: marketplace_id: "jaredbest.greystillplays-vscode" version: "0.0.2" - installs: 5741 + installs: 5742 author: "Jared Best" repo: "https://github.com/jaredbest/greystillplays-vscode" url: "https://marketplace.visualstudio.com/items?itemName=jaredbest.greystillplays-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 49.7 black: 0 diff --git a/themes/grimoire-nox.yaml b/themes/grimoire-nox.yaml index 3fe9f12c..deed447d 100644 --- a/themes/grimoire-nox.yaml +++ b/themes/grimoire-nox.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 83.4 black: 0 diff --git a/themes/grimoire.yaml b/themes/grimoire.yaml index ce5ba983..a7a446a9 100644 --- a/themes/grimoire.yaml +++ b/themes/grimoire.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/grove-street-noir.yaml b/themes/grove-street-noir.yaml index 47ae7314..017be8ba 100644 --- a/themes/grove-street-noir.yaml +++ b/themes/grove-street-noir.yaml @@ -2,7 +2,7 @@ name: "Grove Street Noir" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 121 + pair: null contrast: fg: 95.4 black: 0 diff --git a/themes/gru-black.yaml b/themes/gru-black.yaml index b4b653cf..714aa85a 100644 --- a/themes/gru-black.yaml +++ b/themes/gru-black.yaml @@ -2,7 +2,7 @@ name: "Gru Black" source: marketplace_id: "Silitonix.gru" version: "0.1.1" - installs: 922 + installs: 924 author: "Silitonix" repo: "https://github.com/Silitonix/GruTheme" url: "https://marketplace.visualstudio.com/items?itemName=Silitonix.gru" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 75.7 black: 0 diff --git a/themes/gru.yaml b/themes/gru.yaml deleted file mode 100644 index 9dccef43..00000000 --- a/themes/gru.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Gru" -source: - marketplace_id: "Silitonix.gru" - version: "0.1.1" - installs: 922 - author: "Silitonix" - repo: "https://github.com/Silitonix/GruTheme" - url: "https://marketplace.visualstudio.com/items?itemName=Silitonix.gru" -colors: - bg: "#1E1E1E" - fg: "#909090" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 40.8 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/gruber-blue.yaml b/themes/gruber-blue.yaml index bcdd87ad..9f80c510 100644 --- a/themes/gruber-blue.yaml +++ b/themes/gruber-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/grumbra.yaml b/themes/grumbra.yaml index 6aa235eb..fe4dfdc5 100644 --- a/themes/grumbra.yaml +++ b/themes/grumbra.yaml @@ -1,11 +1,11 @@ name: "grumbra" source: - marketplace_id: "Cydo.re-theme" - version: "3.0.0" - installs: 695 - author: "Cydo" - repo: "https://github.com/CydoEntis/reThemes" - url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" + marketplace_id: "entis-cydo.grumbra" + version: "0.3.4" + installs: 215 + author: "Cydo Entis" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=entis-cydo.grumbra" colors: bg: "#1B1B1B" fg: "#CCCCCC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 74.2 black: 0 diff --git a/themes/grunboxtheme.yaml b/themes/grunboxtheme.yaml index 21c6e6e3..45b55f33 100644 --- a/themes/grunboxtheme.yaml +++ b/themes/grunboxtheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 81.6 black: 0 diff --git a/themes/grunge-contrast.yaml b/themes/grunge-contrast.yaml index 39d2ec31..eff2d43f 100644 --- a/themes/grunge-contrast.yaml +++ b/themes/grunge-contrast.yaml @@ -1,11 +1,11 @@ name: "grunge-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0C0C0A" fg: "#F8F8F2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 102.8 black: 0 diff --git a/themes/grunge-light.yaml b/themes/grunge-light.yaml index 90ccf058..0bc3a5d7 100644 --- a/themes/grunge-light.yaml +++ b/themes/grunge-light.yaml @@ -1,11 +1,11 @@ name: "grunge-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#F8F8F2" fg: "#31332C" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 94.5 black: 0 diff --git a/themes/grunge.yaml b/themes/grunge.yaml index 32636344..ac20cbdb 100644 --- a/themes/grunge.yaml +++ b/themes/grunge.yaml @@ -1,11 +1,11 @@ name: "grunge" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#31332C" fg: "#F8F8F2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 120 + pair: null contrast: fg: 97.3 black: 0 diff --git a/themes/grusper.yaml b/themes/grusper.yaml index 9bf63536..214a0e48 100644 --- a/themes/grusper.yaml +++ b/themes/grusper.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.6 black: 0 diff --git a/themes/gruvalized-dark.yaml b/themes/gruvalized-dark.yaml index f5be3a5f..4c4c1fe2 100644 --- a/themes/gruvalized-dark.yaml +++ b/themes/gruvalized-dark.yaml @@ -2,7 +2,7 @@ name: "Gruvalized Dark" source: marketplace_id: "odlot-marco-lutz.gruvalized" version: "0.0.3" - installs: 89 + installs: 91 author: "Marco Lutz" repo: "https://github.com/odlot/gruvalized" url: "https://marketplace.visualstudio.com/items?itemName=odlot-marco-lutz.gruvalized" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Gruvalized Light" contrast: fg: 96.3 black: 13.5 diff --git a/themes/gruvalized-light.yaml b/themes/gruvalized-light.yaml index 29052ef4..dfe1f853 100644 --- a/themes/gruvalized-light.yaml +++ b/themes/gruvalized-light.yaml @@ -2,7 +2,7 @@ name: "Gruvalized Light" source: marketplace_id: "odlot-marco-lutz.gruvalized" version: "0.0.3" - installs: 89 + installs: 91 author: "Marco Lutz" repo: "https://github.com/odlot/gruvalized" url: "https://marketplace.visualstudio.com/items?itemName=odlot-marco-lutz.gruvalized" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Gruvalized Dark" contrast: fg: 98.4 black: 71.1 diff --git a/themes/gruvbox-dark-medium.yaml b/themes/gruvbox-dark-medium.yaml index bf0d6906..55225be2 100644 --- a/themes/gruvbox-dark-medium.yaml +++ b/themes/gruvbox-dark-medium.yaml @@ -1,15 +1,15 @@ name: "Gruvbox Dark Medium" source: - marketplace_id: "jdinhlife.theme-gruvbox-dark-medium" - version: "1.1.0" - installs: 4080 - author: "jdinhlife" - repo: "https://github.com/jdinhlife/vscode-theme-gruvbox" - url: "https://marketplace.visualstudio.com/items?itemName=jdinhlife.theme-gruvbox-dark-medium" + marketplace_id: "anhoder.gruvbox-anhoder" + version: "1.8.6" + installs: 3783 + author: "anhoder" + repo: "https://github.com/anhoder/vscode-theme-gruvbox" + url: "https://marketplace.visualstudio.com/items?itemName=anhoder.gruvbox-anhoder" colors: bg: "#282828" - fg: "#FBF1C7" - black: "#1D2021" + fg: "#EBDBB2" + black: "#3C3836" red: "#CC241D" green: "#98971A" yellow: "#D79921" @@ -29,8 +29,9 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Gruvbox Light Medium" contrast: - fg: 94.9 + fg: 81.9 black: 0 red: 22.8 green: 40.5 diff --git a/themes/gruvbox-dark-soft.yaml b/themes/gruvbox-dark-soft.yaml index 0efd79da..cb84bb1f 100644 --- a/themes/gruvbox-dark-soft.yaml +++ b/themes/gruvbox-dark-soft.yaml @@ -2,7 +2,7 @@ name: "Gruvbox Dark Soft" source: marketplace_id: "MrMartian.gruvbox-dark-moist" version: "0.0.1" - installs: 896 + installs: 897 author: "MrMartian" repo: "https://github.com/CraigglesO/gruvbox-dark-moist-vscode" url: "https://marketplace.visualstudio.com/items?itemName=MrMartian.gruvbox-dark-moist" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 239 + pair: "Gruvbox Light Soft" contrast: fg: 62.8 black: 0 diff --git a/themes/gruvbox-drakenlords-dark-draken.yaml b/themes/gruvbox-drakenlords-dark-draken.yaml index 407ccd35..b72534f9 100644 --- a/themes/gruvbox-drakenlords-dark-draken.yaml +++ b/themes/gruvbox-drakenlords-dark-draken.yaml @@ -2,7 +2,7 @@ name: "Gruvbox DrakenLords Dark Draken" source: marketplace_id: "DrakenLords.gruvbox-draken-lords" version: "1.5.5" - installs: 8896 + installs: 8900 author: "DrakenLords" repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 209 + pair: null contrast: fg: 84.8 black: 0 diff --git a/themes/gruvbox-drakenlords-dark.yaml b/themes/gruvbox-drakenlords-dark.yaml index 4f070ae1..986eaf94 100644 --- a/themes/gruvbox-drakenlords-dark.yaml +++ b/themes/gruvbox-drakenlords-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 84.3 black: 0 diff --git a/themes/gruvbox-drakenlords-grey.yaml b/themes/gruvbox-drakenlords-grey.yaml index 06e79366..723b2f84 100644 --- a/themes/gruvbox-drakenlords-grey.yaml +++ b/themes/gruvbox-drakenlords-grey.yaml @@ -2,7 +2,7 @@ name: "Gruvbox DrakenLords Grey" source: marketplace_id: "DrakenLords.gruvbox-draken-lords" version: "1.5.5" - installs: 8896 + installs: 8900 author: "DrakenLords" repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 77.9 black: 0 diff --git a/themes/gruvbox-drakenlords-semi-dark.yaml b/themes/gruvbox-drakenlords-semi-dark.yaml index 4ceed4d2..74199b5d 100644 --- a/themes/gruvbox-drakenlords-semi-dark.yaml +++ b/themes/gruvbox-drakenlords-semi-dark.yaml @@ -2,7 +2,7 @@ name: "Gruvbox DrakenLords Semi Dark" source: marketplace_id: "DrakenLords.gruvbox-draken-lords" version: "1.5.5" - installs: 8896 + installs: 8900 author: "DrakenLords" repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 81.9 black: 0 diff --git a/themes/gruvbox-ish-dark-hard.yaml b/themes/gruvbox-ish-dark-hard.yaml index 877fc3db..5ca3eeb2 100644 --- a/themes/gruvbox-ish-dark-hard.yaml +++ b/themes/gruvbox-ish-dark-hard.yaml @@ -2,7 +2,7 @@ name: "Gruvbox ish Dark Hard" source: marketplace_id: "GracefulPotato.gruvbox-ish" version: "0.8.0" - installs: 14928 + installs: 14935 author: "GracefulPotato" repo: "https://github.com/graceful-potato/gruvbox-ish" url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 68.7 black: 0 diff --git a/themes/gruvbox-ish-dark-medium.yaml b/themes/gruvbox-ish-dark-medium.yaml index 1116ea7f..1d05d032 100644 --- a/themes/gruvbox-ish-dark-medium.yaml +++ b/themes/gruvbox-ish-dark-medium.yaml @@ -2,7 +2,7 @@ name: "Gruvbox ish Dark Medium" source: marketplace_id: "GracefulPotato.gruvbox-ish" version: "0.8.0" - installs: 14928 + installs: 14935 author: "GracefulPotato" repo: "https://github.com/graceful-potato/gruvbox-ish" url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 67.3 black: 0 diff --git a/themes/gruvbox-ish-dark-soft.yaml b/themes/gruvbox-ish-dark-soft.yaml index 64edbfb3..5a347d07 100644 --- a/themes/gruvbox-ish-dark-soft.yaml +++ b/themes/gruvbox-ish-dark-soft.yaml @@ -2,7 +2,7 @@ name: "Gruvbox ish Dark Soft" source: marketplace_id: "GracefulPotato.gruvbox-ish" version: "0.8.0" - installs: 14928 + installs: 14935 author: "GracefulPotato" repo: "https://github.com/graceful-potato/gruvbox-ish" url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 65.5 black: 0 diff --git a/themes/gruvbox-material-dark-claude-hybrid.yaml b/themes/gruvbox-material-dark-claude-hybrid.yaml index 14319b6b..44c63e2f 100644 --- a/themes/gruvbox-material-dark-claude-hybrid.yaml +++ b/themes/gruvbox-material-dark-claude-hybrid.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 65.6 black: 0 diff --git a/themes/gruvbox-material-dark.yaml b/themes/gruvbox-material-dark.yaml deleted file mode 100644 index 0566659b..00000000 --- a/themes/gruvbox-material-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Gruvbox Material Dark" -source: - marketplace_id: "sainnhe.gruvbox-material" - version: "6.5.2" - installs: 328108 - author: "sainnhe" - repo: "https://github.com/sainnhe/gruvbox-material-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.gruvbox-material" -colors: - bg: "#292828" - fg: "#D4BE98" - black: "#32302F" - red: "#EA6962" - green: "#A9B665" - yellow: "#D8A657" - blue: "#7DAEA3" - magenta: "#D3869B" - cyan: "#89B482" - white: "#D4BE98" - brightBlack: "#928374" - brightRed: "#EA6962" - brightGreen: "#A9B665" - brightYellow: "#D8A657" - brightBlue: "#7DAEA3" - brightMagenta: "#D3869B" - brightCyan: "#89B482" - brightWhite: "#DDC7A1" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 65.5 - black: 0 - red: 40.5 - green: 55.5 - yellow: 55.3 - blue: 49.7 - magenta: 45.5 - cyan: 52.2 - white: 65.5 - brightBlack: 33.9 - brightRed: 40.5 - brightGreen: 55.5 - brightYellow: 55.3 - brightBlue: 49.7 - brightMagenta: 45.5 - brightCyan: 52.2 - brightWhite: 70.8 diff --git a/themes/gruvbox-material-flat-dark.yaml b/themes/gruvbox-material-flat-dark.yaml index b2bafc5e..3f8b8f4f 100644 --- a/themes/gruvbox-material-flat-dark.yaml +++ b/themes/gruvbox-material-flat-dark.yaml @@ -2,7 +2,7 @@ name: "Gruvbox Material Flat Dark" source: marketplace_id: "GrzegorzKozub.gruvbox-material-flat" version: "0.2.8" - installs: 685 + installs: 687 author: "greg" repo: "https://github.com/GrzegorzKozub/gruvbox-material-flat" url: "https://marketplace.visualstudio.com/items?itemName=GrzegorzKozub.gruvbox-material-flat" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Gruvbox Material Flat Light" contrast: fg: 63.8 black: 0 diff --git a/themes/gruvbox-material-flat-light.yaml b/themes/gruvbox-material-flat-light.yaml index 4c7d4337..5ff28300 100644 --- a/themes/gruvbox-material-flat-light.yaml +++ b/themes/gruvbox-material-flat-light.yaml @@ -2,7 +2,7 @@ name: "Gruvbox Material Flat Light" source: marketplace_id: "GrzegorzKozub.gruvbox-material-flat" version: "0.2.8" - installs: 685 + installs: 687 author: "greg" repo: "https://github.com/GrzegorzKozub/gruvbox-material-flat" url: "https://marketplace.visualstudio.com/items?itemName=GrzegorzKozub.gruvbox-material-flat" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 93 + pair: "Gruvbox Material Flat Dark" contrast: fg: 73.6 black: 0 diff --git a/themes/gruvbox-material-light.yaml b/themes/gruvbox-material-light.yaml deleted file mode 100644 index 5f85f857..00000000 --- a/themes/gruvbox-material-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Gruvbox Material Light" -source: - marketplace_id: "sainnhe.gruvbox-material" - version: "6.5.2" - installs: 328108 - author: "sainnhe" - repo: "https://github.com/sainnhe/gruvbox-material-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.gruvbox-material" -colors: - bg: "#FBF1C7" - fg: "#654735" - black: "#4F3829" - red: "#C14A4A" - green: "#6C782E" - yellow: "#B47109" - blue: "#45707A" - magenta: "#945E80" - cyan: "#4C7A5D" - white: "#928374" - brightBlack: "#654735" - brightRed: "#C14A4A" - brightGreen: "#6C782E" - brightYellow: "#B47109" - brightBlue: "#45707A" - brightMagenta: "#945E80" - brightCyan: "#4C7A5D" - brightWhite: "#F2E5BC" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 80.2 - black: 86.5 - red: 64.1 - green: 64.7 - yellow: 58 - blue: 68.5 - magenta: 66 - cyan: 65.5 - white: 55.7 - brightBlack: 80.2 - brightRed: 64.1 - brightGreen: 64.7 - brightYellow: 58 - brightBlue: 68.5 - brightMagenta: 66 - brightCyan: 65.5 - brightWhite: 0 diff --git a/themes/gruvbox-minor-dark-hard.yaml b/themes/gruvbox-minor-dark-hard.yaml index 14c90f27..36f7a213 100644 --- a/themes/gruvbox-minor-dark-hard.yaml +++ b/themes/gruvbox-minor-dark-hard.yaml @@ -1,11 +1,11 @@ name: "Gruvbox Minor Dark Hard" source: - marketplace_id: "adamsome.vscode-theme-gruvbox-minor" - version: "2.7.2" - installs: 27651 - author: "adamsome" - repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" - url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" + marketplace_id: "sagaban.dark-gruvbox-with-italics" + version: "0.0.4" + installs: 2296 + author: "Santiago Bandiera" + repo: "https://github.com/sagaban/dark-gruvbox-with-italics" + url: "https://marketplace.visualstudio.com/items?itemName=sagaban.dark-gruvbox-with-italics" colors: bg: "#1D2021" fg: "#928374" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Gruvbox Minor Light Hard" contrast: fg: 35.3 black: 0 diff --git a/themes/gruvbox-minor-dark-medium.yaml b/themes/gruvbox-minor-dark-medium.yaml index 7291a45d..af4fb9e9 100644 --- a/themes/gruvbox-minor-dark-medium.yaml +++ b/themes/gruvbox-minor-dark-medium.yaml @@ -1,11 +1,11 @@ name: "Gruvbox Minor Dark Medium" source: - marketplace_id: "adamsome.vscode-theme-gruvbox-minor" - version: "2.7.2" - installs: 27651 - author: "adamsome" - repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" - url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#282828" fg: "#928374" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Gruvbox Minor Light Medium" contrast: fg: 33.9 black: 0 diff --git a/themes/gruvbox-minor-dark-soft.yaml b/themes/gruvbox-minor-dark-soft.yaml index 037f2e21..b9cff809 100644 --- a/themes/gruvbox-minor-dark-soft.yaml +++ b/themes/gruvbox-minor-dark-soft.yaml @@ -1,11 +1,11 @@ name: "Gruvbox Minor Dark Soft" source: - marketplace_id: "adamsome.vscode-theme-gruvbox-minor" - version: "2.7.2" - installs: 27651 - author: "adamsome" - repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" - url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#32302F" fg: "#928374" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Gruvbox Minor Light Soft" contrast: fg: 32.2 black: 0 diff --git a/themes/gruvbox-minor-light-hard.yaml b/themes/gruvbox-minor-light-hard.yaml index 20c0ac53..066f2695 100644 --- a/themes/gruvbox-minor-light-hard.yaml +++ b/themes/gruvbox-minor-light-hard.yaml @@ -1,11 +1,11 @@ name: "Gruvbox Minor Light Hard" source: - marketplace_id: "adamsome.vscode-theme-gruvbox-minor" - version: "2.7.2" - installs: 27651 - author: "adamsome" - repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" - url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#F9F5D7" fg: "#928374" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Gruvbox Minor Dark Hard" contrast: fg: 57.7 black: 11.5 diff --git a/themes/gruvbox-minor-light-medium.yaml b/themes/gruvbox-minor-light-medium.yaml index 97bf5515..53badfbb 100644 --- a/themes/gruvbox-minor-light-medium.yaml +++ b/themes/gruvbox-minor-light-medium.yaml @@ -1,11 +1,11 @@ name: "Gruvbox Minor Light Medium" source: - marketplace_id: "adamsome.vscode-theme-gruvbox-minor" - version: "2.7.2" - installs: 27651 - author: "adamsome" - repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" - url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#FBF1C7" fg: "#928374" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Gruvbox Minor Dark Medium" contrast: fg: 55.7 black: 9.5 diff --git a/themes/gruvbox-minor-light-soft.yaml b/themes/gruvbox-minor-light-soft.yaml index 4f70267f..c3f27c8e 100644 --- a/themes/gruvbox-minor-light-soft.yaml +++ b/themes/gruvbox-minor-light-soft.yaml @@ -1,11 +1,11 @@ name: "Gruvbox Minor Light Soft" source: - marketplace_id: "adamsome.vscode-theme-gruvbox-minor" - version: "2.7.2" - installs: 27651 - author: "adamsome" - repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" - url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#F2E5BC" fg: "#928374" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 93 + pair: "Gruvbox Minor Dark Soft" contrast: fg: 49.1 black: 0 diff --git a/themes/gruvchad.yaml b/themes/gruvchad.yaml index b4175d09..aa050c2e 100644 --- a/themes/gruvchad.yaml +++ b/themes/gruvchad.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 60.5 black: 0 diff --git a/themes/gruvdark-gbm.yaml b/themes/gruvdark-gbm.yaml index 273753c8..85ade247 100644 --- a/themes/gruvdark-gbm.yaml +++ b/themes/gruvdark-gbm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 66.9 black: 0 diff --git a/themes/gruvdark-mono.yaml b/themes/gruvdark-mono.yaml deleted file mode 100644 index 18ec9987..00000000 --- a/themes/gruvdark-mono.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "GruvDark Mono" -source: - marketplace_id: "darianmorat.darian-theme" - version: "2.1.6" - installs: 3178 - author: "Darian Toledo" - repo: "https://github.com/darianmorat/gruvdark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" -colors: - bg: "#202020" - fg: "#CDC5B8" - black: "#2B2B2B" - red: "#DB6A6A" - green: "#76B568" - yellow: "#D19F66" - blue: "#5B98C9" - magenta: "#CD60B9" - cyan: "#4DB0BD" - white: "#CDC5B8" - brightBlack: "#4F4F4F" - brightRed: "#DB6A6A" - brightGreen: "#76B568" - brightYellow: "#D19F66" - brightBlue: "#5B98C9" - brightMagenta: "#CD60B9" - brightCyan: "#4DB0BD" - brightWhite: "#CDC5B8" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 69.9 - black: 0 - red: 39.2 - green: 51.8 - yellow: 53.3 - blue: 41.8 - magenta: 37.3 - cyan: 50.3 - white: 69.9 - brightBlack: 11.7 - brightRed: 39.2 - brightGreen: 51.8 - brightYellow: 53.3 - brightBlue: 41.8 - brightMagenta: 37.3 - brightCyan: 50.3 - brightWhite: 69.9 diff --git a/themes/gruvdark-tokyo.yaml b/themes/gruvdark-tokyo.yaml index 03f855e9..5189513e 100644 --- a/themes/gruvdark-tokyo.yaml +++ b/themes/gruvdark-tokyo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/guezwhoz.yaml b/themes/guezwhoz.yaml index cefccd37..cadb88c0 100644 --- a/themes/guezwhoz.yaml +++ b/themes/guezwhoz.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 82.6 black: 0 diff --git a/themes/guisaldanha-light.yaml b/themes/guisaldanha-light.yaml index 973b6de4..49cfc8fc 100644 --- a/themes/guisaldanha-light.yaml +++ b/themes/guisaldanha-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 92 black: 101.9 diff --git a/themes/gujarat-vibrant-culture.yaml b/themes/gujarat-vibrant-culture.yaml index d3130540..a1070798 100644 --- a/themes/gujarat-vibrant-culture.yaml +++ b/themes/gujarat-vibrant-culture.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 96.7 black: 0 diff --git a/themes/gum.yaml b/themes/gum.yaml index 6467e18c..0b3f629c 100644 --- a/themes/gum.yaml +++ b/themes/gum.yaml @@ -1,11 +1,11 @@ name: "Gum" source: - marketplace_id: "RobinNaghshbandi.gum" - version: "0.2.0" - installs: 0 - author: "Robin Naghshbandi" + marketplace_id: "RobinBandi.cherry-gum-v2" + version: "0.19.0" + installs: 394 + author: "Robin Bandi" repo: "https://github.com/robbandi/Cherry-Gum" - url: "https://marketplace.visualstudio.com/items?itemName=RobinNaghshbandi.gum" + url: "https://marketplace.visualstudio.com/items?itemName=RobinBandi.cherry-gum-v2" colors: bg: "#171717" fg: "#90D8F0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 75.6 black: 0 diff --git a/themes/gumua.yaml b/themes/gumua.yaml index 6341a466..08727992 100644 --- a/themes/gumua.yaml +++ b/themes/gumua.yaml @@ -2,7 +2,7 @@ name: "Gumua" source: marketplace_id: "GopherTheme.gumua-gopher-theme" version: "0.0.9" - installs: 1136 + installs: 1137 author: "Gopher Theme" repo: "https://github.com/KhwanNon/golang-theme" url: "https://marketplace.visualstudio.com/items?itemName=GopherTheme.gumua-gopher-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 73.2 black: 0 diff --git a/themes/gunivers.yaml b/themes/gunivers.yaml index d551ce7d..70eec08a 100644 --- a/themes/gunivers.yaml +++ b/themes/gunivers.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80 black: 37.1 diff --git a/themes/gunmetal-code-pro.yaml b/themes/gunmetal-code-pro.yaml index 1ccef06f..40f64860 100644 --- a/themes/gunmetal-code-pro.yaml +++ b/themes/gunmetal-code-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 58.7 black: 8.1 diff --git a/themes/gustavoglins.yaml b/themes/gustavoglins.yaml index 96d232a6..9bd491e5 100644 --- a/themes/gustavoglins.yaml +++ b/themes/gustavoglins.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 95.7 black: 0 diff --git a/themes/gusuku-limestone.yaml b/themes/gusuku-limestone.yaml index 54296628..b653bd28 100644 --- a/themes/gusuku-limestone.yaml +++ b/themes/gusuku-limestone.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 90.6 black: 82.9 diff --git a/themes/gyomei-himejima.yaml b/themes/gyomei-himejima.yaml index 6b760ad5..a6fc881e 100644 --- a/themes/gyomei-himejima.yaml +++ b/themes/gyomei-himejima.yaml @@ -2,7 +2,7 @@ name: "Gyomei Himejima" source: marketplace_id: "devLocifer.hashira-code-theme" version: "0.0.1" - installs: 738 + installs: 739 author: "devLocifer" repo: "https://github.com/diazdjul19/hashira-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 166 + pair: null contrast: fg: 74.8 black: 0 diff --git a/themes/h1-dark-fork.yaml b/themes/h1-dark-fork.yaml index be376fb3..5b098e64 100644 --- a/themes/h1-dark-fork.yaml +++ b/themes/h1-dark-fork.yaml @@ -2,7 +2,7 @@ name: "H1 (Dark) - Fork" source: marketplace_id: "Hacker0x01.HackerOne-VS-Code-Theme" version: "1.1.2" - installs: 5436 + installs: 5438 author: "Hacker0x01" repo: "https://github.com/Hacker0x01/HackerOne-VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Hacker0x01.HackerOne-VS-Code-Theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/h1-light-fork.yaml b/themes/h1-light-fork.yaml index aaeb7c46..5c4361b2 100644 --- a/themes/h1-light-fork.yaml +++ b/themes/h1-light-fork.yaml @@ -2,7 +2,7 @@ name: "H1 (Light) - Fork" source: marketplace_id: "Hacker0x01.HackerOne-VS-Code-Theme" version: "1.1.2" - installs: 5436 + installs: 5438 author: "Hacker0x01" repo: "https://github.com/Hacker0x01/HackerOne-VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Hacker0x01.HackerOne-VS-Code-Theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 82 black: 105.8 diff --git a/themes/haavyz.yaml b/themes/haavyz.yaml index 4a6bcc6d..8488bc00 100644 --- a/themes/haavyz.yaml +++ b/themes/haavyz.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 273 + pair: null contrast: fg: 61.5 black: 0 diff --git a/themes/habamax.yaml b/themes/habamax.yaml index 9979caf9..f17677ba 100644 --- a/themes/habamax.yaml +++ b/themes/habamax.yaml @@ -2,7 +2,7 @@ name: "Habamax" source: marketplace_id: "codelogix.habamax" version: "0.0.1" - installs: 856 + installs: 858 author: "Carl Weis" repo: "https://github.com/carlweis/vscode-habamax-theme" url: "https://marketplace.visualstudio.com/items?itemName=codelogix.habamax" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 58.8 black: 0 diff --git a/themes/habamix.yaml b/themes/habamix.yaml index 2111b181..c3a72df9 100644 --- a/themes/habamix.yaml +++ b/themes/habamix.yaml @@ -2,7 +2,7 @@ name: "habamix" source: marketplace_id: "dpdpdp.habamix" version: "0.2.0" - installs: 671 + installs: 672 author: "dpdpdp" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dpdpdp.habamix" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 64.7 black: 0 diff --git a/themes/hachiko.yaml b/themes/hachiko.yaml index 43b29135..a24d6687 100644 --- a/themes/hachiko.yaml +++ b/themes/hachiko.yaml @@ -2,7 +2,7 @@ name: "Hachiko" source: marketplace_id: "charlottielove.kitty-hachiko" version: "0.0.1" - installs: 19 + installs: 20 author: "charlottielove" repo: null url: "https://marketplace.visualstudio.com/items?itemName=charlottielove.kitty-hachiko" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 75.2 black: 0 diff --git a/themes/hack-and-lima.yaml b/themes/hack-and-lima.yaml index 2d13bb3b..c6582c45 100644 --- a/themes/hack-and-lima.yaml +++ b/themes/hack-and-lima.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/hack-electron.yaml b/themes/hack-electron.yaml index e94465ef..1b037e4d 100644 --- a/themes/hack-electron.yaml +++ b/themes/hack-electron.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 278 + pair: null contrast: fg: 75.5 black: 0 diff --git a/themes/hackage-theme.yaml b/themes/hackage-theme.yaml index 83bee49d..a2f0a3b0 100644 --- a/themes/hackage-theme.yaml +++ b/themes/hackage-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 57.5 black: 93.7 diff --git a/themes/hacker-blue.yaml b/themes/hacker-blue.yaml index 5a4c025e..7ef4d191 100644 --- a/themes/hacker-blue.yaml +++ b/themes/hacker-blue.yaml @@ -2,7 +2,7 @@ name: "Hacker Blue" source: marketplace_id: "chausen.hacker-blue" version: "1.0.0" - installs: 19468 + installs: 19475 author: "chausen" repo: "https://github.com/chausen/hacker-blue" url: "https://marketplace.visualstudio.com/items?itemName=chausen.hacker-blue" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 92.1 black: 0 diff --git a/themes/hacker-pink.yaml b/themes/hacker-pink.yaml index 70507993..f4f0ff58 100644 --- a/themes/hacker-pink.yaml +++ b/themes/hacker-pink.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 45.3 black: 45.3 diff --git a/themes/hacker-x.yaml b/themes/hacker-x.yaml index b1dc4b50..d210bcfd 100644 --- a/themes/hacker-x.yaml +++ b/themes/hacker-x.yaml @@ -2,7 +2,7 @@ name: "Hacker X" source: marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" version: "9.0.1" - installs: 29903 + installs: 29917 author: "Hasibur R" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 257 + pair: null contrast: fg: 83.8 black: 0 diff --git a/themes/hacker.yaml b/themes/hacker.yaml index 4dd7f4f4..5b376a3c 100644 --- a/themes/hacker.yaml +++ b/themes/hacker.yaml @@ -2,7 +2,7 @@ name: "Hacker" source: marketplace_id: "brenix.hacker-theme" version: "0.0.6" - installs: 69271 + installs: 69285 author: "brenix" repo: "https://github.com/brenix/vscode-hacker" url: "https://marketplace.visualstudio.com/items?itemName=brenix.hacker-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 65.6 black: 0 diff --git a/themes/hackish.yaml b/themes/hackish.yaml index fa0b4e7d..1ea9826f 100644 --- a/themes/hackish.yaml +++ b/themes/hackish.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 28.8 black: 0 diff --git a/themes/hackpot-batman-vs-joker-dark.yaml b/themes/hackpot-batman-vs-joker-dark.yaml index 49cf30c2..2c414d0e 100644 --- a/themes/hackpot-batman-vs-joker-dark.yaml +++ b/themes/hackpot-batman-vs-joker-dark.yaml @@ -2,7 +2,7 @@ name: "Hackpot Batman vs Joker Dark" source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" - installs: 24355 + installs: 24357 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 278 + pair: null contrast: fg: 75.5 black: 0 diff --git a/themes/hackpot-batman-vs-joker.yaml b/themes/hackpot-batman-vs-joker.yaml index 4a5db161..b0ed087b 100644 --- a/themes/hackpot-batman-vs-joker.yaml +++ b/themes/hackpot-batman-vs-joker.yaml @@ -2,7 +2,7 @@ name: "Hackpot Batman vs Joker" source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" - installs: 24355 + installs: 24357 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 280 + pair: null contrast: fg: 74.1 black: 0 diff --git a/themes/hackpot-dark-knight.yaml b/themes/hackpot-dark-knight.yaml index cbb4dc5d..ea70c6e0 100644 --- a/themes/hackpot-dark-knight.yaml +++ b/themes/hackpot-dark-knight.yaml @@ -2,7 +2,7 @@ name: "Hackpot Dark Knight" source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" - installs: 24355 + installs: 24357 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 248 + pair: null contrast: fg: 73.5 black: 0 diff --git a/themes/hackpot-darker-knight.yaml b/themes/hackpot-darker-knight.yaml index 921db052..cc2df1c9 100644 --- a/themes/hackpot-darker-knight.yaml +++ b/themes/hackpot-darker-knight.yaml @@ -2,7 +2,7 @@ name: "Hackpot Darker Knight" source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" - installs: 24355 + installs: 24357 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 248 + pair: null contrast: fg: 75.3 black: 0 diff --git a/themes/hackpot-garden-dark.yaml b/themes/hackpot-garden-dark.yaml index 24d85018..0b710e20 100644 --- a/themes/hackpot-garden-dark.yaml +++ b/themes/hackpot-garden-dark.yaml @@ -2,7 +2,7 @@ name: "Hackpot Garden Dark" source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" - installs: 24355 + installs: 24357 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 82.5 black: 0 diff --git a/themes/hackpot-garden-of-atlantis.yaml b/themes/hackpot-garden-of-atlantis.yaml index f1cd97e8..3dade596 100644 --- a/themes/hackpot-garden-of-atlantis.yaml +++ b/themes/hackpot-garden-of-atlantis.yaml @@ -2,7 +2,7 @@ name: "Hackpot Garden Of Atlantis" source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" - installs: 24355 + installs: 24357 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 195 + pair: null contrast: fg: 82.2 black: 0 diff --git a/themes/hackpot-garden-purple-haze.yaml b/themes/hackpot-garden-purple-haze.yaml index 4d216aec..83ffc68d 100644 --- a/themes/hackpot-garden-purple-haze.yaml +++ b/themes/hackpot-garden-purple-haze.yaml @@ -2,7 +2,7 @@ name: "Hackpot Garden Purple Haze" source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" - installs: 24355 + installs: 24357 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 328 + pair: null contrast: fg: 92.7 black: 0 diff --git a/themes/hackpot-garden.yaml b/themes/hackpot-garden.yaml index 68d0e8f5..9a5bdbeb 100644 --- a/themes/hackpot-garden.yaml +++ b/themes/hackpot-garden.yaml @@ -2,7 +2,7 @@ name: "Hackpot Garden" source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" - installs: 24355 + installs: 24357 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 80.9 black: 0 diff --git a/themes/hackpot-muddy-garden.yaml b/themes/hackpot-muddy-garden.yaml index c5f70294..01e034b6 100644 --- a/themes/hackpot-muddy-garden.yaml +++ b/themes/hackpot-muddy-garden.yaml @@ -2,7 +2,7 @@ name: "Hackpot Muddy Garden" source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" - installs: 24355 + installs: 24357 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 72 + pair: null contrast: fg: 82.3 black: 0 diff --git a/themes/hackpot-poisoned-garden.yaml b/themes/hackpot-poisoned-garden.yaml index deee8d2e..98ea232a 100644 --- a/themes/hackpot-poisoned-garden.yaml +++ b/themes/hackpot-poisoned-garden.yaml @@ -2,7 +2,7 @@ name: "Hackpot Poisoned Garden" source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" - installs: 24355 + installs: 24357 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 144 + pair: null contrast: fg: 81.4 black: 0 diff --git a/themes/hadar.yaml b/themes/hadar.yaml index 422ba8af..f2fccc92 100644 --- a/themes/hadar.yaml +++ b/themes/hadar.yaml @@ -2,7 +2,7 @@ name: "Hadar" source: marketplace_id: "cristianvasquez.hadar-theme" version: "1.0.0" - installs: 48 + installs: 49 author: "Cristian Vásquez" repo: "https://github.com/cristianvasquezc/hadar-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=cristianvasquez.hadar-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 258 + pair: null contrast: fg: 56.1 black: 0 diff --git a/themes/haidark-two.yaml b/themes/haidark-two.yaml index 2752bb42..b5178c30 100644 --- a/themes/haidark-two.yaml +++ b/themes/haidark-two.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 278 + pair: null contrast: fg: 82.3 black: 0 diff --git a/themes/halcyon.yaml b/themes/halcyon.yaml index edc2b61f..2b478663 100644 --- a/themes/halcyon.yaml +++ b/themes/halcyon.yaml @@ -2,7 +2,7 @@ name: "Halcyon" source: marketplace_id: "PhillipGreen.cyberdev" version: "0.0.4" - installs: 576 + installs: 577 author: "Phillip Green" repo: "https://github.com/PhilGreen-Dev/cyberdev-vscode" url: "https://marketplace.visualstudio.com/items?itemName=PhillipGreen.cyberdev" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 265 + pair: null contrast: fg: 86.6 black: 0 diff --git a/themes/half-gray.yaml b/themes/half-gray.yaml index 2e4a2631..23da22d0 100644 --- a/themes/half-gray.yaml +++ b/themes/half-gray.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/halflife-contrast.yaml b/themes/halflife-contrast.yaml index 67747159..b0b656b3 100644 --- a/themes/halflife-contrast.yaml +++ b/themes/halflife-contrast.yaml @@ -1,11 +1,11 @@ name: "halflife-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#000000" fg: "#CCCCCC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 75.7 black: 0 diff --git a/themes/halflife-light.yaml b/themes/halflife-light.yaml index 917e99a7..02d75e2e 100644 --- a/themes/halflife-light.yaml +++ b/themes/halflife-light.yaml @@ -1,11 +1,11 @@ name: "halflife-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#F0F0F0" fg: "#222222" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 94 black: 0 diff --git a/themes/halflife.yaml b/themes/halflife.yaml index aefa29bb..c61e221f 100644 --- a/themes/halflife.yaml +++ b/themes/halflife.yaml @@ -1,11 +1,11 @@ name: "halflife" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#222222" fg: "#CCCCCC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.2 black: 0 diff --git a/themes/halloween.yaml b/themes/halloween.yaml index 8a9e8231..7e16171a 100644 --- a/themes/halloween.yaml +++ b/themes/halloween.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 105.6 black: 0 diff --git a/themes/hallucination.yaml b/themes/hallucination.yaml index bd93ecfc..52fce300 100644 --- a/themes/hallucination.yaml +++ b/themes/hallucination.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.2 black: 0 diff --git a/themes/hamidthedev-professional.yaml b/themes/hamidthedev-professional.yaml index 33731f66..7c932a43 100644 --- a/themes/hamidthedev-professional.yaml +++ b/themes/hamidthedev-professional.yaml @@ -2,7 +2,7 @@ name: "HamidTheDev Professional" source: marketplace_id: "HamidTheDev.hamidthedev" version: "6.0.0" - installs: 923 + installs: 924 author: "HamidTheDev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HamidTheDev.hamidthedev" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 229 + pair: null contrast: fg: 58.4 black: 7.9 diff --git a/themes/han.yaml b/themes/han.yaml index a3496fef..ddd2d5e2 100644 --- a/themes/han.yaml +++ b/themes/han.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 243 + pair: null contrast: fg: 53.6 black: 15 diff --git a/themes/happy-dark.yaml b/themes/happy-dark.yaml index 00964bfd..41ee3dd1 100644 --- a/themes/happy-dark.yaml +++ b/themes/happy-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/happy-heart-1-dark-classic.yaml b/themes/happy-heart-1-dark-classic.yaml index 3e1acfa1..5bd4e683 100644 --- a/themes/happy-heart-1-dark-classic.yaml +++ b/themes/happy-heart-1-dark-classic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/happy-heart-10-forest-green.yaml b/themes/happy-heart-10-forest-green.yaml index 7da46cce..16813f9d 100644 --- a/themes/happy-heart-10-forest-green.yaml +++ b/themes/happy-heart-10-forest-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 144 + pair: null contrast: fg: 104.3 black: 0 diff --git a/themes/happy-heart-11-emerald-green.yaml b/themes/happy-heart-11-emerald-green.yaml index 11b555e4..be47f4d8 100644 --- a/themes/happy-heart-11-emerald-green.yaml +++ b/themes/happy-heart-11-emerald-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 169 + pair: null contrast: fg: 86.9 black: 11.8 diff --git a/themes/happy-heart-12-midnight-purple.yaml b/themes/happy-heart-12-midnight-purple.yaml index 65667d48..86ffb229 100644 --- a/themes/happy-heart-12-midnight-purple.yaml +++ b/themes/happy-heart-12-midnight-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 295 + pair: null contrast: fg: 92.2 black: 0 diff --git a/themes/happy-heart-13-royal-purple.yaml b/themes/happy-heart-13-royal-purple.yaml index ecd2bcc2..3625205c 100644 --- a/themes/happy-heart-13-royal-purple.yaml +++ b/themes/happy-heart-13-royal-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 297 + pair: null contrast: fg: 91.6 black: 0 diff --git a/themes/happy-heart-14-rose-gold.yaml b/themes/happy-heart-14-rose-gold.yaml index e3dcf882..3e7f0d14 100644 --- a/themes/happy-heart-14-rose-gold.yaml +++ b/themes/happy-heart-14-rose-gold.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 339 + pair: null contrast: fg: 100.4 black: 0 diff --git a/themes/happy-heart-15-chilli-paper.yaml b/themes/happy-heart-15-chilli-paper.yaml index 436b2f1c..96e8cc81 100644 --- a/themes/happy-heart-15-chilli-paper.yaml +++ b/themes/happy-heart-15-chilli-paper.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 20 + pair: null contrast: fg: 100.6 black: 0 diff --git a/themes/happy-heart-16-grey.yaml b/themes/happy-heart-16-grey.yaml index 45edd0ee..bc675abc 100644 --- a/themes/happy-heart-16-grey.yaml +++ b/themes/happy-heart-16-grey.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 260 + pair: null contrast: fg: 94.6 black: 10 diff --git a/themes/happy-heart-17-yellow.yaml b/themes/happy-heart-17-yellow.yaml index e99f6c13..e0412455 100644 --- a/themes/happy-heart-17-yellow.yaml +++ b/themes/happy-heart-17-yellow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 109 + pair: null contrast: fg: 101.8 black: 0 diff --git a/themes/happy-heart-2-dark-orange.yaml b/themes/happy-heart-2-dark-orange.yaml index 1925b770..a9e58fdf 100644 --- a/themes/happy-heart-2-dark-orange.yaml +++ b/themes/happy-heart-2-dark-orange.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/happy-heart-3-dark-purple.yaml b/themes/happy-heart-3-dark-purple.yaml index 5f38a7b9..0c7801b9 100644 --- a/themes/happy-heart-3-dark-purple.yaml +++ b/themes/happy-heart-3-dark-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/happy-heart-4-dark-green.yaml b/themes/happy-heart-4-dark-green.yaml index ad0d2c3c..828c5016 100644 --- a/themes/happy-heart-4-dark-green.yaml +++ b/themes/happy-heart-4-dark-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/happy-heart-5-deep-blue.yaml b/themes/happy-heart-5-deep-blue.yaml index fef394ea..bca039a4 100644 --- a/themes/happy-heart-5-deep-blue.yaml +++ b/themes/happy-heart-5-deep-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 252 + pair: null contrast: fg: 97.8 black: 0 diff --git a/themes/happy-heart-6-ocean-blue.yaml b/themes/happy-heart-6-ocean-blue.yaml index 3cfd47c2..70a1e09c 100644 --- a/themes/happy-heart-6-ocean-blue.yaml +++ b/themes/happy-heart-6-ocean-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 269 + pair: null contrast: fg: 97.5 black: 0 diff --git a/themes/happy-heart-7-navy-blue.yaml b/themes/happy-heart-7-navy-blue.yaml index ae6abd4d..f7e1a4e3 100644 --- a/themes/happy-heart-7-navy-blue.yaml +++ b/themes/happy-heart-7-navy-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 262 + pair: null contrast: fg: 96.7 black: 0 diff --git a/themes/happy-heart-8-bright-light.yaml b/themes/happy-heart-8-bright-light.yaml index 3bac5c3a..9e759d08 100644 --- a/themes/happy-heart-8-bright-light.yaml +++ b/themes/happy-heart-8-bright-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 98.7 black: 106 diff --git a/themes/happy-heart-9-smooth-light.yaml b/themes/happy-heart-9-smooth-light.yaml index 1ca4fbd1..4f2d4682 100644 --- a/themes/happy-heart-9-smooth-light.yaml +++ b/themes/happy-heart-9-smooth-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 98.5 black: 103 diff --git a/themes/hapsida.yaml b/themes/hapsida.yaml index df584f9c..3f4cda6e 100644 --- a/themes/hapsida.yaml +++ b/themes/hapsida.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 105.5 black: 0 diff --git a/themes/hard-hacker-darker.yaml b/themes/hard-hacker-darker.yaml index 7d8d8e66..341ade6a 100644 --- a/themes/hard-hacker-darker.yaml +++ b/themes/hard-hacker-darker.yaml @@ -2,7 +2,7 @@ name: "Hard Hacker Darker" source: marketplace_id: "HardHacker.hard-hacker-theme" version: "0.2.3" - installs: 12846 + installs: 12849 author: "Hard Hacker" repo: "https://github.com/hardhackerlabs/theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 296 + pair: "Hard Hacker Light" contrast: fg: 93.1 black: 0 diff --git a/themes/hard-hacker-high-contrast.yaml b/themes/hard-hacker-high-contrast.yaml deleted file mode 100644 index c398c753..00000000 --- a/themes/hard-hacker-high-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Hard Hacker High Contrast" -source: - marketplace_id: "HardHacker.hard-hacker-theme" - version: "0.2.3" - installs: 12846 - author: "Hard Hacker" - repo: "https://github.com/hardhackerlabs/theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" -colors: - bg: "#282433" - fg: "#EEE9FC" - black: "#282433" - red: "#E965A5" - green: "#B1F2A7" - yellow: "#EBDE76" - blue: "#B1BAF4" - magenta: "#E192EF" - cyan: "#B3F4F3" - white: "#EEE9FC" - brightBlack: "#938AAD" - brightRed: "#E965A5" - brightGreen: "#B1F2A7" - brightYellow: "#EBDE76" - brightBlue: "#B1BAF4" - brightMagenta: "#E192EF" - brightCyan: "#B3F4F3" - brightWhite: "#EEE9FC" -meta: - mode: "dark" - accent: "red" - hue: 297 - contrast: - fg: 92 - black: 0 - red: 41.9 - green: 85.8 - yellow: 82.1 - blue: 63.9 - magenta: 56 - cyan: 89.9 - white: 92 - brightBlack: 38.9 - brightRed: 41.9 - brightGreen: 85.8 - brightYellow: 82.1 - brightBlue: 63.9 - brightMagenta: 56 - brightCyan: 89.9 - brightWhite: 92 diff --git a/themes/hard-hacker-light-high-contrast.yaml b/themes/hard-hacker-light-high-contrast.yaml deleted file mode 100644 index 240861bd..00000000 --- a/themes/hard-hacker-light-high-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Hard Hacker Light High Contrast" -source: - marketplace_id: "HardHacker.hard-hacker-theme" - version: "0.2.3" - installs: 12846 - author: "Hard Hacker" - repo: "https://github.com/hardhackerlabs/theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" -colors: - bg: "#FBFAFC" - fg: "#282433" - black: "#282433" - red: "#B33974" - green: "#3C8032" - yellow: "#A86200" - blue: "#5663B8" - magenta: "#832294" - cyan: "#23758C" - white: "#FBFAFC" - brightBlack: "#756F8C" - brightRed: "#B33974" - brightGreen: "#3C8032" - brightYellow: "#A86200" - brightBlue: "#5663B8" - brightMagenta: "#832294" - brightCyan: "#23758C" - brightWhite: "#FBFAFC" -meta: - mode: "light" - accent: "pink" - hue: null - contrast: - fg: 99.2 - black: 99.2 - red: 74.2 - green: 70.6 - yellow: 69.8 - blue: 74.1 - magenta: 83.8 - cyan: 73 - white: 0 - brightBlack: 70.3 - brightRed: 74.2 - brightGreen: 70.6 - brightYellow: 69.8 - brightBlue: 74.1 - brightMagenta: 83.8 - brightCyan: 73 - brightWhite: 0 diff --git a/themes/harddark.yaml b/themes/harddark.yaml index 7ec0a154..a5011065 100644 --- a/themes/harddark.yaml +++ b/themes/harddark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.8 black: 0 diff --git a/themes/hardwired-arctic-blue.yaml b/themes/hardwired-arctic-blue.yaml index 232c1ce6..675c97d1 100644 --- a/themes/hardwired-arctic-blue.yaml +++ b/themes/hardwired-arctic-blue.yaml @@ -2,7 +2,7 @@ name: "Hardwired - Arctic Blue" source: marketplace_id: "thwilson3.hardwired-color-theme" version: "0.0.1" - installs: 624 + installs: 625 author: "thwilson3" repo: "https://github.com/thwilson3/hardwired-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thwilson3.hardwired-color-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "blue" hue: null + pair: null contrast: fg: 46 black: 20.1 diff --git a/themes/hardwired-electric-lime.yaml b/themes/hardwired-electric-lime.yaml index 61ed8e2a..8fd0c1b1 100644 --- a/themes/hardwired-electric-lime.yaml +++ b/themes/hardwired-electric-lime.yaml @@ -2,7 +2,7 @@ name: "Hardwired - Electric Lime" source: marketplace_id: "thwilson3.hardwired-color-theme" version: "0.0.1" - installs: 624 + installs: 625 author: "thwilson3" repo: "https://github.com/thwilson3/hardwired-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thwilson3.hardwired-color-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 98.9 black: 58.4 diff --git a/themes/hardwired-purple.yaml b/themes/hardwired-purple.yaml index d1fbb313..a84bb776 100644 --- a/themes/hardwired-purple.yaml +++ b/themes/hardwired-purple.yaml @@ -2,7 +2,7 @@ name: "Hardwired - Purple" source: marketplace_id: "thwilson3.hardwired-color-theme" version: "0.0.1" - installs: 624 + installs: 625 author: "thwilson3" repo: "https://github.com/thwilson3/hardwired-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thwilson3.hardwired-color-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 68.9 black: 17.4 diff --git a/themes/harley-quinn-theme.yaml b/themes/harley-quinn-theme.yaml index c3494ff9..2eceb4ec 100644 --- a/themes/harley-quinn-theme.yaml +++ b/themes/harley-quinn-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 63.5 black: 9.5 diff --git a/themes/harmonized-dark.yaml b/themes/harmonized-dark.yaml index 60443280..49c4e49e 100644 --- a/themes/harmonized-dark.yaml +++ b/themes/harmonized-dark.yaml @@ -7,7 +7,7 @@ source: repo: "https://github.com/wheredoesyourmindgo/harmonized-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.harmonized-vscode-theme" colors: - bg: "#001920" + bg: "#002B36" fg: "#BBBBBB" black: "#073642" red: "#DC322F" @@ -28,22 +28,23 @@ colors: meta: mode: "dark" accent: "orange" - hue: 218 + hue: 220 + pair: "Harmonized light" contrast: - fg: 64.7 + fg: 62.3 black: 0 - red: 30.1 - green: 41.6 - yellow: 41.6 - blue: 36.7 - magenta: 30.4 - cyan: 42.4 - white: 91.9 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 89.5 brightBlack: 0 - brightRed: 29.6 - brightGreen: 23.9 - brightYellow: 29.7 - brightBlue: 41.9 - brightMagenta: 30.4 - brightCyan: 48.8 - brightWhite: 101 + brightRed: 27.2 + brightGreen: 21.5 + brightYellow: 27.3 + brightBlue: 39.5 + brightMagenta: 28 + brightCyan: 46.4 + brightWhite: 98.6 diff --git a/themes/harmonized-light-hc.yaml b/themes/harmonized-light-hc.yaml index e3f4eb1d..31947719 100644 --- a/themes/harmonized-light-hc.yaml +++ b/themes/harmonized-light-hc.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 95.1 black: 95.4 diff --git a/themes/harmonized-light.yaml b/themes/harmonized-light.yaml index 080a940d..f55d7aea 100644 --- a/themes/harmonized-light.yaml +++ b/themes/harmonized-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Harmonized dark" contrast: fg: 93.4 black: 93.7 diff --git a/themes/harriet.yaml b/themes/harriet.yaml index 9ab5c458..af09b6a8 100644 --- a/themes/harriet.yaml +++ b/themes/harriet.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 69.5 black: 12.6 diff --git a/themes/harrys.yaml b/themes/harrys.yaml index 972bd587..f58c3531 100644 --- a/themes/harrys.yaml +++ b/themes/harrys.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 49 black: 0 diff --git a/themes/hashirama-senju-god-of-shinobi.yaml b/themes/hashirama-senju-god-of-shinobi.yaml index 4533ae50..bd3d05bb 100644 --- a/themes/hashirama-senju-god-of-shinobi.yaml +++ b/themes/hashirama-senju-god-of-shinobi.yaml @@ -2,7 +2,7 @@ name: "Hashirama Senju - God of Shinobi" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 145 + pair: null contrast: fg: 95.5 black: 0 diff --git a/themes/haube-blue-1.yaml b/themes/haube-blue-1.yaml index 8aaa0597..f64457d9 100644 --- a/themes/haube-blue-1.yaml +++ b/themes/haube-blue-1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 265 + pair: null contrast: fg: 68.9 black: 0 diff --git a/themes/hawaii-contrast.yaml b/themes/hawaii-contrast.yaml index 672828b6..885954f8 100644 --- a/themes/hawaii-contrast.yaml +++ b/themes/hawaii-contrast.yaml @@ -1,11 +1,11 @@ name: "hawaii-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#111110" fg: "#E8E1DE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 88.8 black: 0 diff --git a/themes/hawaii-light.yaml b/themes/hawaii-light.yaml index 23d71ae7..cb311496 100644 --- a/themes/hawaii-light.yaml +++ b/themes/hawaii-light.yaml @@ -1,11 +1,11 @@ name: "hawaii-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#6D6764" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 77.8 black: 0 diff --git a/themes/hawaii.yaml b/themes/hawaii.yaml index 3b09ffa7..a997ed35 100644 --- a/themes/hawaii.yaml +++ b/themes/hawaii.yaml @@ -1,11 +1,11 @@ name: "hawaii" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#333130" fg: "#E8E1DE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.9 black: 0 diff --git a/themes/hc-zenburn.yaml b/themes/hc-zenburn.yaml index fcf58b32..653907e9 100644 --- a/themes/hc-zenburn.yaml +++ b/themes/hc-zenburn.yaml @@ -2,7 +2,7 @@ name: "hc-zenburn" source: marketplace_id: "drzix.hc-zenburn-vscode" version: "0.3.0" - installs: 7767 + installs: 7768 author: "Kyeongmin Cho" repo: "https://github.com/drzix/hc-zenburn-vscode" url: "https://marketplace.visualstudio.com/items?itemName=drzix.hc-zenburn-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.4 black: 8.1 diff --git a/themes/hecker-boy.yaml b/themes/hecker-boy.yaml index 497940c4..3c71f91b 100644 --- a/themes/hecker-boy.yaml +++ b/themes/hecker-boy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 233 + pair: null contrast: fg: 34.8 black: 0 diff --git a/themes/held.yaml b/themes/held.yaml index 69ee210f..ad2e675e 100644 --- a/themes/held.yaml +++ b/themes/held.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 254 + pair: null contrast: fg: 82 black: 0 diff --git a/themes/helion.yaml b/themes/helion.yaml index c2e40cb6..83ecd618 100644 --- a/themes/helion.yaml +++ b/themes/helion.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 248 + pair: null contrast: fg: 54.9 black: 22.9 diff --git a/themes/helios-solarized-dark.yaml b/themes/helios-solarized-dark.yaml index 628567c5..9bbbfac9 100644 --- a/themes/helios-solarized-dark.yaml +++ b/themes/helios-solarized-dark.yaml @@ -2,7 +2,7 @@ name: "Helios Solarized Dark" source: marketplace_id: "santoso-wijaya.helios-selene" version: "0.3.18" - installs: 3053 + installs: 3055 author: "Santoso Wijaya" repo: "https://github.com/santoso-wijaya/vscode-helios-selene" url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: "Helios Solarized Light" contrast: fg: 46.3 black: 0 diff --git a/themes/helios-solarized-light.yaml b/themes/helios-solarized-light.yaml index 8c386dfe..756c941f 100644 --- a/themes/helios-solarized-light.yaml +++ b/themes/helios-solarized-light.yaml @@ -2,7 +2,7 @@ name: "Helios Solarized Light" source: marketplace_id: "santoso-wijaya.helios-selene" version: "0.3.18" - installs: 3053 + installs: 3055 author: "Santoso Wijaya" repo: "https://github.com/santoso-wijaya/vscode-helios-selene" url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Helios Solarized Dark" contrast: fg: 71.9 black: 0 diff --git a/themes/helix.yaml b/themes/helix.yaml index 8da1f7a0..ece1b492 100644 --- a/themes/helix.yaml +++ b/themes/helix.yaml @@ -2,7 +2,7 @@ name: "Helix+" source: marketplace_id: "codewonders.helix" version: "0.1.0" - installs: 3404 + installs: 3406 author: "Adenekan Wonderful" repo: "git+https://github.com/adenekan41/Helix" url: "https://marketplace.visualstudio.com/items?itemName=codewonders.helix" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 281 + pair: null contrast: fg: 84.5 black: 0 diff --git a/themes/hell-pine.yaml b/themes/hell-pine.yaml index f88d3054..eecc527b 100644 --- a/themes/hell-pine.yaml +++ b/themes/hell-pine.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 268 + pair: null contrast: fg: 86.8 black: 0 diff --git a/themes/hellfire.yaml b/themes/hellfire.yaml index d5a7dc4b..44a10f1c 100644 --- a/themes/hellfire.yaml +++ b/themes/hellfire.yaml @@ -2,7 +2,7 @@ name: "Hellfire" source: marketplace_id: "AlexCharbonneau.hellfire-theme" version: "1.0.5" - installs: 22 + installs: 23 author: "Alex Charbonneau" repo: "https://github.com/alexandrec90/hellfire_theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexCharbonneau.hellfire-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 29 + pair: null contrast: fg: 73.8 black: 0 diff --git a/themes/hello-world-theme.yaml b/themes/hello-world-theme.yaml index 2f63fd17..f4d39623 100644 --- a/themes/hello-world-theme.yaml +++ b/themes/hello-world-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 51.3 black: 0 diff --git a/themes/hello.yaml b/themes/hello.yaml deleted file mode 100644 index 2ce1955e..00000000 --- a/themes/hello.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "hello" -source: - marketplace_id: "MemoTheme.memo-theme" - version: "1.0.1" - installs: 12 - author: "The Bear Theme" - repo: "https://github.com/mhmetglrq/memo-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MemoTheme.memo-theme" -colors: - bg: "#101012" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 80 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28 - magenta: 30.3 - cyan: 48.1 - white: 107.4 - brightBlack: 22.6 - brightRed: 39.1 - brightGreen: 64.1 - brightYellow: 96.2 - brightBlue: 40.6 - brightMagenta: 45.9 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/hendrikkels-dark.yaml b/themes/hendrikkels-dark.yaml index 4f0de095..791b6a1c 100644 --- a/themes/hendrikkels-dark.yaml +++ b/themes/hendrikkels-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: "Hendrikkels Light" contrast: fg: 39.8 black: 8.5 diff --git a/themes/hendrikkels-light.yaml b/themes/hendrikkels-light.yaml index 92bd71b0..d61b4ac2 100644 --- a/themes/hendrikkels-light.yaml +++ b/themes/hendrikkels-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "Hendrikkels Dark" contrast: fg: 90.3 black: 92.6 diff --git a/themes/heptapod.yaml b/themes/heptapod.yaml index ece27775..745e8bc0 100644 --- a/themes/heptapod.yaml +++ b/themes/heptapod.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 229 + pair: null contrast: fg: 99.4 black: 60.6 diff --git a/themes/herbal.yaml b/themes/herbal.yaml index 2eecbe94..9480ad24 100644 --- a/themes/herbal.yaml +++ b/themes/herbal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 36 + pair: null contrast: fg: 94.7 black: 0 diff --git a/themes/hereafter.yaml b/themes/hereafter.yaml index 9726ed5b..3d0823c7 100644 --- a/themes/hereafter.yaml +++ b/themes/hereafter.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 289 + pair: null contrast: fg: 62.8 black: 12.6 diff --git a/themes/hero-dark-inverse.yaml b/themes/hero-dark-inverse.yaml deleted file mode 100644 index d2c1ba4a..00000000 --- a/themes/hero-dark-inverse.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Hero Dark Inverse" -source: - marketplace_id: "jhdcruz.hero-theme" - version: "1.1.1" - installs: 14 - author: "Joshua Hero" - repo: "https://github.com/jhdcruz/hero-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jhdcruz.hero-theme" -colors: - bg: "#151515" - fg: "#D1D1D1" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 77.9 - black: 0 - red: 26.9 - green: 53.2 - yellow: 85.8 - blue: 27.6 - magenta: 29.9 - cyan: 47.7 - white: 90.2 - brightBlack: 22.2 - brightRed: 38.7 - brightGreen: 63.7 - brightYellow: 95.8 - brightBlue: 40.2 - brightMagenta: 45.6 - brightCyan: 55.6 - brightWhite: 90.2 diff --git a/themes/heroku-contrast.yaml b/themes/heroku-contrast.yaml index 2eab6c34..8fdf8354 100644 --- a/themes/heroku-contrast.yaml +++ b/themes/heroku-contrast.yaml @@ -1,11 +1,11 @@ name: "heroku-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0B0B0F" fg: "#C8C7D5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.3 black: 0 diff --git a/themes/heroku-light.yaml b/themes/heroku-light.yaml index 867f0956..406259fd 100644 --- a/themes/heroku-light.yaml +++ b/themes/heroku-light.yaml @@ -1,11 +1,11 @@ name: "heroku-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#F7F7FC" fg: "#1B1B24" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.4 black: 0 diff --git a/themes/heroku.yaml b/themes/heroku.yaml index 5aeeb95c..359eca04 100644 --- a/themes/heroku.yaml +++ b/themes/heroku.yaml @@ -1,11 +1,11 @@ name: "heroku" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#1B1B24" fg: "#C8C7D5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 71.9 black: 0 diff --git a/themes/herzha-dark.yaml b/themes/herzha-dark.yaml index 89f5e8cb..6c88137f 100644 --- a/themes/herzha-dark.yaml +++ b/themes/herzha-dark.yaml @@ -2,7 +2,7 @@ name: "Herzha Dark" source: marketplace_id: "madhanmaaz.vscode-herzha-theme" version: "0.0.1" - installs: 17 + installs: 18 author: "madhanmaaz" repo: "https://github.com/madhanmaaz/herzha-theme" url: "https://marketplace.visualstudio.com/items?itemName=madhanmaaz.vscode-herzha-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 60.1 black: 0 diff --git a/themes/herzha-flux.yaml b/themes/herzha-flux.yaml index a911afc3..f70e2d2a 100644 --- a/themes/herzha-flux.yaml +++ b/themes/herzha-flux.yaml @@ -2,7 +2,7 @@ name: "Herzha Flux" source: marketplace_id: "madhanmaaz.vscode-herzha-theme" version: "0.0.1" - installs: 17 + installs: 18 author: "madhanmaaz" repo: "https://github.com/madhanmaaz/herzha-theme" url: "https://marketplace.visualstudio.com/items?itemName=madhanmaaz.vscode-herzha-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 272 + pair: null contrast: fg: 65 black: 0 diff --git a/themes/herzha-vanta.yaml b/themes/herzha-vanta.yaml index d1b0992c..33e477f9 100644 --- a/themes/herzha-vanta.yaml +++ b/themes/herzha-vanta.yaml @@ -2,7 +2,7 @@ name: "Herzha Vanta" source: marketplace_id: "madhanmaaz.vscode-herzha-theme" version: "0.0.1" - installs: 17 + installs: 18 author: "madhanmaaz" repo: "https://github.com/madhanmaaz/herzha-theme" url: "https://marketplace.visualstudio.com/items?itemName=madhanmaaz.vscode-herzha-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 60.7 black: 0 diff --git a/themes/hfa-theme.yaml b/themes/hfa-theme.yaml index e040afb7..4bd53c9c 100644 --- a/themes/hfa-theme.yaml +++ b/themes/hfa-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 59.9 black: 0 diff --git a/themes/hhp1614.yaml b/themes/hhp1614.yaml index 2f39ebce..6d4279e3 100644 --- a/themes/hhp1614.yaml +++ b/themes/hhp1614.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 71.6 black: 0 diff --git a/themes/hi-dark.yaml b/themes/hi-dark.yaml index 4171a6a4..fa426d52 100644 --- a/themes/hi-dark.yaml +++ b/themes/hi-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Hi Light" contrast: fg: 81.8 black: 0 diff --git a/themes/hi-light.yaml b/themes/hi-light.yaml index 30e67d6e..af1291a7 100644 --- a/themes/hi-light.yaml +++ b/themes/hi-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Hi Dark" contrast: fg: 96.5 black: 105.4 diff --git a/themes/hibiscus.yaml b/themes/hibiscus.yaml index 3cd39788..2ae072fa 100644 --- a/themes/hibiscus.yaml +++ b/themes/hibiscus.yaml @@ -1,11 +1,11 @@ name: "Hibiscus" source: - marketplace_id: "colinlienard.hibiscus-theme" - version: "0.3.1" - installs: 1246 - author: "Colin Lienard" - repo: "https://github.com/colinlienard/hibiscus-theme" - url: "https://marketplace.visualstudio.com/items?itemName=colinlienard.hibiscus-theme" + marketplace_id: "Sarfaraz.Bahej" + version: "1.0.1" + installs: 102 + author: "Sarfaraz" + repo: "https://github.com/Muhammad-Sarfaraz/Bahej" + url: "https://marketplace.visualstudio.com/items?itemName=Sarfaraz.Bahej" colors: bg: "#1F1F1F" fg: "#9FABB1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 53.7 black: 0 diff --git a/themes/high-contrast-april-light-theme.yaml b/themes/high-contrast-april-light-theme.yaml index 0e66a66e..92b69b6b 100644 --- a/themes/high-contrast-april-light-theme.yaml +++ b/themes/high-contrast-april-light-theme.yaml @@ -2,7 +2,7 @@ name: "High Contrast April Light Theme" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.1 black: 91.8 diff --git a/themes/high-contrast-april-theme.yaml b/themes/high-contrast-april-theme.yaml index 4ec3e0e7..b8bd896f 100644 --- a/themes/high-contrast-april-theme.yaml +++ b/themes/high-contrast-april-theme.yaml @@ -2,7 +2,7 @@ name: "High Contrast April Theme" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 242 + pair: null contrast: fg: 96.2 black: 0 diff --git a/themes/high-contrast-august-light-theme.yaml b/themes/high-contrast-august-light-theme.yaml index d43f6920..fa5d3c6e 100644 --- a/themes/high-contrast-august-light-theme.yaml +++ b/themes/high-contrast-august-light-theme.yaml @@ -2,7 +2,7 @@ name: "High Contrast August Light Theme" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 94.7 black: 94.7 diff --git a/themes/high-contrast-february-dark-theme.yaml b/themes/high-contrast-february-dark-theme.yaml index e7ceac9e..0f24f02d 100644 --- a/themes/high-contrast-february-dark-theme.yaml +++ b/themes/high-contrast-february-dark-theme.yaml @@ -2,7 +2,7 @@ name: "High Contrast February Dark Theme" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 284 + pair: null contrast: fg: 93.2 black: 0 diff --git a/themes/high-contrast-february-light-theme-accessible.yaml b/themes/high-contrast-february-light-theme-accessible.yaml index 6307ce3b..08ec5de7 100644 --- a/themes/high-contrast-february-light-theme-accessible.yaml +++ b/themes/high-contrast-february-light-theme-accessible.yaml @@ -2,7 +2,7 @@ name: "High Contrast February Light Theme - Accessible" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 104.3 black: 99.5 diff --git a/themes/high-contrast-february-theme-accessible.yaml b/themes/high-contrast-february-theme-accessible.yaml index 42745da1..bd67eb03 100644 --- a/themes/high-contrast-february-theme-accessible.yaml +++ b/themes/high-contrast-february-theme-accessible.yaml @@ -2,7 +2,7 @@ name: "High Contrast February Theme - Accessible" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 251 + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/high-contrast-july-light-theme.yaml b/themes/high-contrast-july-light-theme.yaml index bdc20e99..06743261 100644 --- a/themes/high-contrast-july-light-theme.yaml +++ b/themes/high-contrast-july-light-theme.yaml @@ -2,7 +2,7 @@ name: "High Contrast July Light Theme" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.5 black: 94.2 diff --git a/themes/high-contrast-june-light-theme.yaml b/themes/high-contrast-june-light-theme.yaml index 8a91d3f5..e88d52a0 100644 --- a/themes/high-contrast-june-light-theme.yaml +++ b/themes/high-contrast-june-light-theme.yaml @@ -2,7 +2,7 @@ name: "High Contrast June Light Theme" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 89.8 black: 90.4 diff --git a/themes/high-contrast-march-dark-theme-accessible.yaml b/themes/high-contrast-march-dark-theme-accessible.yaml index 8f5319d1..e034ff21 100644 --- a/themes/high-contrast-march-dark-theme-accessible.yaml +++ b/themes/high-contrast-march-dark-theme-accessible.yaml @@ -2,7 +2,7 @@ name: "High Contrast March Dark Theme - Accessible" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: "High Contrast March Light Theme - Accessible" contrast: fg: 95.3 black: 0 diff --git a/themes/high-contrast-march-dark-theme.yaml b/themes/high-contrast-march-dark-theme.yaml index f74326fd..bd53ab21 100644 --- a/themes/high-contrast-march-dark-theme.yaml +++ b/themes/high-contrast-march-dark-theme.yaml @@ -2,7 +2,7 @@ name: "High Contrast March Dark Theme" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 234 + pair: null contrast: fg: 54.1 black: 0 diff --git a/themes/high-contrast-march-light-theme-accessible.yaml b/themes/high-contrast-march-light-theme-accessible.yaml index 486dfd2f..fb7bbfbe 100644 --- a/themes/high-contrast-march-light-theme-accessible.yaml +++ b/themes/high-contrast-march-light-theme-accessible.yaml @@ -2,7 +2,7 @@ name: "High Contrast March Light Theme - Accessible" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "High Contrast March Dark Theme - Accessible" contrast: fg: 96 black: 90.6 diff --git a/themes/high-contrast-march-theme-accessible.yaml b/themes/high-contrast-march-theme-accessible.yaml index 27742065..968ce498 100644 --- a/themes/high-contrast-march-theme-accessible.yaml +++ b/themes/high-contrast-march-theme-accessible.yaml @@ -2,7 +2,7 @@ name: "High Contrast March Theme - Accessible" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 229 + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/high-contrast-may-light-theme.yaml b/themes/high-contrast-may-light-theme.yaml index 26c8f372..b22c5664 100644 --- a/themes/high-contrast-may-light-theme.yaml +++ b/themes/high-contrast-may-light-theme.yaml @@ -2,7 +2,7 @@ name: "High Contrast May Light Theme" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 95.4 black: 76.4 diff --git a/themes/high-contrast-september-light-theme.yaml b/themes/high-contrast-september-light-theme.yaml index 2c1b8f0f..a41ea626 100644 --- a/themes/high-contrast-september-light-theme.yaml +++ b/themes/high-contrast-september-light-theme.yaml @@ -2,7 +2,7 @@ name: "High Contrast September Light Theme" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 79.9 black: 79.9 diff --git a/themes/high-contrast-sunset.yaml b/themes/high-contrast-sunset.yaml index 1c294323..91b576be 100644 --- a/themes/high-contrast-sunset.yaml +++ b/themes/high-contrast-sunset.yaml @@ -2,7 +2,7 @@ name: "High Contrast Sunset" source: marketplace_id: "krishnakumarmehta.high-contrast-sunset" version: "1.0.2" - installs: 9 + installs: 10 author: "Krishna Kumar Mehta" repo: null url: "https://marketplace.visualstudio.com/items?itemName=krishnakumarmehta.high-contrast-sunset" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 99.3 black: 0 diff --git a/themes/high-tea.yaml b/themes/high-tea.yaml index bfd908d4..14e41748 100644 --- a/themes/high-tea.yaml +++ b/themes/high-tea.yaml @@ -2,7 +2,7 @@ name: "High Tea" source: marketplace_id: "Rachael.rachaels-themes" version: "0.0.2" - installs: 1169 + installs: 1170 author: "Rachael" repo: "https://github.com/rbouissey/rachaelsthemes" url: "https://marketplace.visualstudio.com/items?itemName=Rachael.rachaels-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 40.6 black: 92.2 diff --git a/themes/highflyer.yaml b/themes/highflyer.yaml index 154b9b53..2a860567 100644 --- a/themes/highflyer.yaml +++ b/themes/highflyer.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 80.1 black: 0 diff --git a/themes/highgruv.yaml b/themes/highgruv.yaml index dca28fec..11d3fae5 100644 --- a/themes/highgruv.yaml +++ b/themes/highgruv.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 69.3 black: 0 diff --git a/themes/highland-winter.yaml b/themes/highland-winter.yaml index 5d7c1c46..683038c0 100644 --- a/themes/highland-winter.yaml +++ b/themes/highland-winter.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.4 black: 0 diff --git a/themes/himalaya-dark.yaml b/themes/himalaya-dark.yaml index 1e7ae18d..55337dee 100644 --- a/themes/himalaya-dark.yaml +++ b/themes/himalaya-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 245 + pair: null contrast: fg: 65.7 black: 0 diff --git a/themes/hinode.yaml b/themes/hinode.yaml index f5f9532a..5f995036 100644 --- a/themes/hinode.yaml +++ b/themes/hinode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 104.7 black: 0 diff --git a/themes/hipster-next.yaml b/themes/hipster-next.yaml index a0e57faa..68cce23e 100644 --- a/themes/hipster-next.yaml +++ b/themes/hipster-next.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 58.9 black: 8.4 diff --git a/themes/hive-contrast.yaml b/themes/hive-contrast.yaml index 626db95e..e21be091 100644 --- a/themes/hive-contrast.yaml +++ b/themes/hive-contrast.yaml @@ -1,11 +1,11 @@ name: "hive-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0F1016" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/hive-light.yaml b/themes/hive-light.yaml index bf3c2bc4..4ca57f37 100644 --- a/themes/hive-light.yaml +++ b/themes/hive-light.yaml @@ -1,11 +1,11 @@ name: "hive-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#2D3142" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.1 black: 0 diff --git a/themes/hive.yaml b/themes/hive.yaml index f3b1b2b2..f1ad1fca 100644 --- a/themes/hive.yaml +++ b/themes/hive.yaml @@ -1,11 +1,11 @@ name: "hive" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2D3142" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 102.3 black: 0 diff --git a/themes/hobbyist-goth.yaml b/themes/hobbyist-goth.yaml index 96eb904b..485819f5 100644 --- a/themes/hobbyist-goth.yaml +++ b/themes/hobbyist-goth.yaml @@ -2,7 +2,7 @@ name: "hobbyist goth" source: marketplace_id: "timmyha.hobbyist-goth" version: "0.0.3" - installs: 1576 + installs: 1577 author: "timhansher" repo: "https://github.com/timmyha/hobbyist-goth" url: "https://marketplace.visualstudio.com/items?itemName=timmyha.hobbyist-goth" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 66.3 black: 0 diff --git a/themes/hoccacas.yaml b/themes/hoccacas.yaml index eb5e39a6..7cf48141 100644 --- a/themes/hoccacas.yaml +++ b/themes/hoccacas.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 68.7 black: 0 diff --git a/themes/hocsinhnghiemtuc.yaml b/themes/hocsinhnghiemtuc.yaml index 9246f3c6..5561c0b9 100644 --- a/themes/hocsinhnghiemtuc.yaml +++ b/themes/hocsinhnghiemtuc.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/holdesher-dark.yaml b/themes/holdesher-dark.yaml index 52dc318f..b3708742 100644 --- a/themes/holdesher-dark.yaml +++ b/themes/holdesher-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 267 + pair: null contrast: fg: 105.3 black: 0 diff --git a/themes/holy-bible.yaml b/themes/holy-bible.yaml index d406907f..8599b114 100644 --- a/themes/holy-bible.yaml +++ b/themes/holy-bible.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 29 + pair: null contrast: fg: 47.3 black: 0 diff --git a/themes/homebrew.yaml b/themes/homebrew.yaml index 3fad20d7..85c2100d 100644 --- a/themes/homebrew.yaml +++ b/themes/homebrew.yaml @@ -2,7 +2,7 @@ name: "Homebrew" source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" - installs: 3734 + installs: 3736 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 42.8 black: 0 diff --git a/themes/homecooked-theme.yaml b/themes/homecooked-theme.yaml index 4072324a..b1795f11 100644 --- a/themes/homecooked-theme.yaml +++ b/themes/homecooked-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 279 + pair: null contrast: fg: 80 black: 0 diff --git a/themes/homer.yaml b/themes/homer.yaml index cd782b88..f344848a 100644 --- a/themes/homer.yaml +++ b/themes/homer.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 97.1 black: 0 diff --git a/themes/homey.yaml b/themes/homey.yaml index c2f66512..718aa04c 100644 --- a/themes/homey.yaml +++ b/themes/homey.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 83.7 black: 0 diff --git a/themes/honkai-star-rail-aventurine-dark.yaml b/themes/honkai-star-rail-aventurine-dark.yaml index 186c1bbf..c27bd9cb 100644 --- a/themes/honkai-star-rail-aventurine-dark.yaml +++ b/themes/honkai-star-rail-aventurine-dark.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - Aventurine (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#141618" fg: "#D8D4CC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/honkai-star-rail-aventurine.yaml b/themes/honkai-star-rail-aventurine.yaml index 6881c000..1b631493 100644 --- a/themes/honkai-star-rail-aventurine.yaml +++ b/themes/honkai-star-rail-aventurine.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - Aventurine" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#F8F6F2" fg: "#2A2828" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.2 black: 96.2 diff --git a/themes/honkai-star-rail-cyrene-dark.yaml b/themes/honkai-star-rail-cyrene-dark.yaml index d8fddad7..c0ba89d0 100644 --- a/themes/honkai-star-rail-cyrene-dark.yaml +++ b/themes/honkai-star-rail-cyrene-dark.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - Cyrene (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#1E1828" fg: "#EAE0F0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 301 + pair: null contrast: fg: 88.5 black: 0 diff --git a/themes/honkai-star-rail-cyrene.yaml b/themes/honkai-star-rail-cyrene.yaml index 602d5bb1..c1fc4856 100644 --- a/themes/honkai-star-rail-cyrene.yaml +++ b/themes/honkai-star-rail-cyrene.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - Cyrene" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#FDF8FB" fg: "#4A3A50" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 90.8 black: 90.8 diff --git a/themes/honkai-star-rail-dan-heng-dark.yaml b/themes/honkai-star-rail-dan-heng-dark.yaml index 43f7f752..26e8f545 100644 --- a/themes/honkai-star-rail-dan-heng-dark.yaml +++ b/themes/honkai-star-rail-dan-heng-dark.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - Dan Heng (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#0E1A1E" fg: "#E8ECEC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 221 + pair: null contrast: fg: 93.8 black: 0 diff --git a/themes/honkai-star-rail-dan-heng.yaml b/themes/honkai-star-rail-dan-heng.yaml index 1f009fc1..30ca2f46 100644 --- a/themes/honkai-star-rail-dan-heng.yaml +++ b/themes/honkai-star-rail-dan-heng.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - Dan Heng" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#F4F6F4" fg: "#133139" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 94.5 black: 94.5 diff --git a/themes/honkai-star-rail-firefly-dark.yaml b/themes/honkai-star-rail-firefly-dark.yaml index 671d6596..07c173a6 100644 --- a/themes/honkai-star-rail-firefly-dark.yaml +++ b/themes/honkai-star-rail-firefly-dark.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - Firefly (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#1C1F22" fg: "#E0D8D2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 81.8 black: 0 diff --git a/themes/honkai-star-rail-firefly.yaml b/themes/honkai-star-rail-firefly.yaml index 7724cdea..ad577906 100644 --- a/themes/honkai-star-rail-firefly.yaml +++ b/themes/honkai-star-rail-firefly.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - Firefly" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#F7F5F2" fg: "#3A4550" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 86.8 black: 86.8 diff --git a/themes/honkai-star-rail-kafka-dark.yaml b/themes/honkai-star-rail-kafka-dark.yaml index 929cad35..be96d34b 100644 --- a/themes/honkai-star-rail-kafka-dark.yaml +++ b/themes/honkai-star-rail-kafka-dark.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - Kafka (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#18141A" fg: "#E0D8DC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 315 + pair: null contrast: fg: 83.3 black: 0 diff --git a/themes/honkai-star-rail-kafka.yaml b/themes/honkai-star-rail-kafka.yaml index 7145e2e9..938de3f1 100644 --- a/themes/honkai-star-rail-kafka.yaml +++ b/themes/honkai-star-rail-kafka.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - Kafka" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#FAF7F9" fg: "#2A2530" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 97.5 black: 97.5 diff --git a/themes/honkai-star-rail-march-7th-dark.yaml b/themes/honkai-star-rail-march-7th-dark.yaml index 1e66aebc..0f6f85e0 100644 --- a/themes/honkai-star-rail-march-7th-dark.yaml +++ b/themes/honkai-star-rail-march-7th-dark.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - March 7th (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#281828" fg: "#F0D8E8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "blue" hue: 327 + pair: null contrast: fg: 85.2 black: 0 diff --git a/themes/honkai-star-rail-march-7th.yaml b/themes/honkai-star-rail-march-7th.yaml index b39df8a8..abcfdb0f 100644 --- a/themes/honkai-star-rail-march-7th.yaml +++ b/themes/honkai-star-rail-march-7th.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - March 7th" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#FEF8FC" fg: "#483050" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 93.3 black: 93.3 diff --git a/themes/honkai-star-rail-robin-dark.yaml b/themes/honkai-star-rail-robin-dark.yaml index 6209d769..6276abb1 100644 --- a/themes/honkai-star-rail-robin-dark.yaml +++ b/themes/honkai-star-rail-robin-dark.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - Robin (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#141018" fg: "#D8DCE8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 307 + pair: null contrast: fg: 84.9 black: 0 diff --git a/themes/honkai-star-rail-robin-light-soft.yaml b/themes/honkai-star-rail-robin-light-soft.yaml index 486c6f08..6be3ca65 100644 --- a/themes/honkai-star-rail-robin-light-soft.yaml +++ b/themes/honkai-star-rail-robin-light-soft.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - Robin (Light Soft)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#F5F3F9" fg: "#3A2D58" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 91.4 black: 91.4 diff --git a/themes/honkai-star-rail-ruan-mei-dark.yaml b/themes/honkai-star-rail-ruan-mei-dark.yaml index cb2d9df5..fc412fea 100644 --- a/themes/honkai-star-rail-ruan-mei-dark.yaml +++ b/themes/honkai-star-rail-ruan-mei-dark.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - Ruan Mei (Dark)" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#1A252F" fg: "#E8E4E0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 246 + pair: null contrast: fg: 88 black: 0 diff --git a/themes/honkai-star-rail-ruan-mei.yaml b/themes/honkai-star-rail-ruan-mei.yaml index 338563dc..aee8347a 100644 --- a/themes/honkai-star-rail-ruan-mei.yaml +++ b/themes/honkai-star-rail-ruan-mei.yaml @@ -1,11 +1,11 @@ name: "Honkai: Star Rail - Ruan Mei" source: - marketplace_id: "frostmoon-dev.genshin-hsr-themes" - version: "0.1.6" - installs: 518 - author: "⏾ frostmoon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + marketplace_id: "horizon-core.horizon-theme" + version: "3.6.1" + installs: 79 + author: "Horizon" + repo: "https://github.com/Abdelrahman968/horizon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" colors: bg: "#FAF8F5" fg: "#2C435D" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 89.4 black: 89.4 diff --git a/themes/horizon-contrast.yaml b/themes/horizon-contrast.yaml index 7814d23f..17780e7a 100644 --- a/themes/horizon-contrast.yaml +++ b/themes/horizon-contrast.yaml @@ -1,11 +1,11 @@ name: "horizon-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#11101C" fg: "#EDEBE6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 287 + pair: null contrast: fg: 94.3 black: 0 diff --git a/themes/horizon-extended.yaml b/themes/horizon-extended.yaml index 44a31859..1adb8fca 100644 --- a/themes/horizon-extended.yaml +++ b/themes/horizon-extended.yaml @@ -2,7 +2,7 @@ name: "Horizon Extended" source: marketplace_id: "LanceWilhelm.horizon-extended" version: "1.1.1" - installs: 25386 + installs: 25390 author: "Lance Wilhelm" repo: "https://github.com/lancewilhelm/horizon-extended" url: "https://marketplace.visualstudio.com/items?itemName=LanceWilhelm.horizon-extended" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 80.8 black: 17.4 diff --git a/themes/horizon-laker-theme.yaml b/themes/horizon-laker-theme.yaml index a2f0eab8..abd5cd56 100644 --- a/themes/horizon-laker-theme.yaml +++ b/themes/horizon-laker-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 66.7 black: 0 diff --git a/themes/horizon-light.yaml b/themes/horizon-light.yaml index 3e8098dc..fa882038 100644 --- a/themes/horizon-light.yaml +++ b/themes/horizon-light.yaml @@ -1,11 +1,11 @@ name: "horizon-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#474466" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 91.1 black: 0 diff --git a/themes/horizon.yaml b/themes/horizon.yaml index e184dd50..618adfae 100644 --- a/themes/horizon.yaml +++ b/themes/horizon.yaml @@ -1,11 +1,11 @@ name: "horizon" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#474466" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 288 + pair: null contrast: fg: 95.5 black: 0 diff --git a/themes/horizondark.yaml b/themes/horizondark.yaml index 84760f95..f07fc074 100644 --- a/themes/horizondark.yaml +++ b/themes/horizondark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 97.9 black: 0 diff --git a/themes/horror-theme.yaml b/themes/horror-theme.yaml index dc6f402f..78703bfd 100644 --- a/themes/horror-theme.yaml +++ b/themes/horror-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.7 black: 0 diff --git a/themes/horus.yaml b/themes/horus.yaml index 46f6007a..8cc7272c 100644 --- a/themes/horus.yaml +++ b/themes/horus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 64.8 black: 7.3 diff --git a/themes/hot-pink-theme.yaml b/themes/hot-pink-theme.yaml index 366bc3d9..c515c945 100644 --- a/themes/hot-pink-theme.yaml +++ b/themes/hot-pink-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/hot-stuff.yaml b/themes/hot-stuff.yaml index 5ee7aa28..5b9cdcc4 100644 --- a/themes/hot-stuff.yaml +++ b/themes/hot-stuff.yaml @@ -2,7 +2,7 @@ name: "Hot Stuff" source: marketplace_id: "HarshRastogi.harsh" version: "1.4.0" - installs: 301 + installs: 302 author: "Harsh Rastogi" repo: "https://github.com/theharshrastogi/Hot-Stuff-VSCODE-Theme" url: "https://marketplace.visualstudio.com/items?itemName=HarshRastogi.harsh" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 75 black: 0 diff --git a/themes/hotrice.yaml b/themes/hotrice.yaml index 8d8dc171..596a730f 100644 --- a/themes/hotrice.yaml +++ b/themes/hotrice.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.2 black: 0 diff --git a/themes/house-of-the-dragon-team-blacks.yaml b/themes/house-of-the-dragon-team-blacks.yaml deleted file mode 100644 index a8650211..00000000 --- a/themes/house-of-the-dragon-team-blacks.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "House of the Dragon: Team Blacks" -source: - marketplace_id: "RamanMohammed.house-of-the-dragons-blacks-vs-greens" - version: "0.0.3" - installs: 362 - author: "RamanMohammed" - repo: "https://github.com/RaymondSWE/vscode-theme-house-of-dragon" - url: "https://marketplace.visualstudio.com/items?itemName=RamanMohammed.house-of-the-dragons-blacks-vs-greens" -colors: - bg: "#0A0A0A" - fg: "#D1D1D1" - black: "#0A0A0A" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#D1D1D1" - brightBlack: "#4D4D4D" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92D0" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 78.5 - black: 0 - red: 44.3 - green: 85.7 - yellow: 99.4 - blue: 54.5 - magenta: 55.4 - cyan: 84.8 - white: 78.5 - brightBlack: 12.9 - brightRed: 49.7 - brightGreen: 89.9 - brightYellow: 104.4 - brightBlue: 67 - brightMagenta: 62.7 - brightCyan: 97.6 - brightWhite: 107.7 diff --git a/themes/houston.yaml b/themes/houston.yaml index a56511be..1d824745 100644 --- a/themes/houston.yaml +++ b/themes/houston.yaml @@ -1,11 +1,11 @@ name: "Houston" source: - marketplace_id: "astro-build.houston" - version: "0.1.2" - installs: 80504 - author: "Astro" - repo: "https://github.com/withastro/houston-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=astro-build.houston" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#17191E" fg: "#EEF0F9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 268 + pair: null contrast: fg: 97 black: 0 diff --git a/themes/htvodp.yaml b/themes/htvodp.yaml index 128d3ee4..2d54c50b 100644 --- a/themes/htvodp.yaml +++ b/themes/htvodp.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 259 + pair: null contrast: fg: 58.7 black: 8.2 diff --git a/themes/huacat-pink-dark.yaml b/themes/huacat-pink-dark.yaml index 7a4496cc..c425288e 100644 --- a/themes/huacat-pink-dark.yaml +++ b/themes/huacat-pink-dark.yaml @@ -2,7 +2,7 @@ name: "Huacat Pink Dark" source: marketplace_id: "huacat.pink-theme" version: "1.1.2" - installs: 71463 + installs: 71499 author: "huacat" repo: "https://github.com/huacat1017/huacat.pink-theme" url: "https://marketplace.visualstudio.com/items?itemName=huacat.pink-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 327 + pair: null contrast: fg: 65 black: 0 diff --git a/themes/hub-contrast.yaml b/themes/hub-contrast.yaml deleted file mode 100644 index f5a1cd87..00000000 --- a/themes/hub-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "hub-contrast" -source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" -colors: - bg: "#191D21" - fg: "#FFFFFF" - black: "#242A2F" - red: "#BA0E2E" - green: "#E85362" - yellow: "#5392DB" - blue: "#5392DB" - magenta: "#E85362" - cyan: "#9B78DB" - white: "#FFFFFF" - brightBlack: "#45505B" - brightRed: "#F03E5F" - brightGreen: "#F4ADB4" - brightYellow: "#A7C7ED" - brightBlue: "#A7C7ED" - brightMagenta: "#F4ADB4" - brightCyan: "#D7C9F0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 106.2 - black: 0 - red: 19.9 - green: 37.5 - yellow: 40.7 - blue: 40.7 - magenta: 37.5 - cyan: 38.3 - white: 106.2 - brightBlack: 12.1 - brightRed: 36.1 - brightGreen: 66.8 - brightYellow: 69.3 - brightBlue: 69.3 - brightMagenta: 66.8 - brightCyan: 75.9 - brightWhite: 106.2 diff --git a/themes/hub-light.yaml b/themes/hub-light.yaml index e3507cc8..3c3f53e4 100644 --- a/themes/hub-light.yaml +++ b/themes/hub-light.yaml @@ -1,11 +1,11 @@ name: "hub-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#24292E" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.5 black: 0 diff --git a/themes/hub.yaml b/themes/hub.yaml index 2e0d4231..e8bb3710 100644 --- a/themes/hub.yaml +++ b/themes/hub.yaml @@ -1,11 +1,11 @@ name: "hub" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#3B444C" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 245 + pair: null contrast: fg: 97.2 black: 0 diff --git a/themes/hugodvlp.yaml b/themes/hugodvlp.yaml index dda88b3e..d3d41fd2 100644 --- a/themes/hugodvlp.yaml +++ b/themes/hugodvlp.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 244 + pair: null contrast: fg: 55.6 black: 65.7 diff --git a/themes/hulcu.yaml b/themes/hulcu.yaml index 5c9c85e1..e97d0356 100644 --- a/themes/hulcu.yaml +++ b/themes/hulcu.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 86.2 black: 0 diff --git a/themes/human-dark.yaml b/themes/human-dark.yaml index 4cd4b18d..91420aed 100644 --- a/themes/human-dark.yaml +++ b/themes/human-dark.yaml @@ -2,7 +2,7 @@ name: "Human Dark" source: marketplace_id: "TomHall.human-theme" version: "1.1.1" - installs: 94 + installs: 95 author: "Tom Hall" repo: "https://github.com/tom-f-hall/human-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 160 + pair: "Human Light" contrast: fg: 79.3 black: 0 diff --git a/themes/human-high-contrast.yaml b/themes/human-high-contrast.yaml index 04d6f93c..4da1dada 100644 --- a/themes/human-high-contrast.yaml +++ b/themes/human-high-contrast.yaml @@ -2,7 +2,7 @@ name: "Human High Contrast" source: marketplace_id: "TomHall.human-theme" version: "1.1.1" - installs: 94 + installs: 95 author: "Tom Hall" repo: "https://github.com/tom-f-hall/human-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/human-light.yaml b/themes/human-light.yaml index 1c1456a3..ace23503 100644 --- a/themes/human-light.yaml +++ b/themes/human-light.yaml @@ -2,7 +2,7 @@ name: "Human Light" source: marketplace_id: "TomHall.human-theme" version: "1.1.1" - installs: 94 + installs: 95 author: "Tom Hall" repo: "https://github.com/tom-f-hall/human-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Human Dark" contrast: fg: 93.7 black: 0 diff --git a/themes/human-low-light.yaml b/themes/human-low-light.yaml index d2af5b8a..02201ae6 100644 --- a/themes/human-low-light.yaml +++ b/themes/human-low-light.yaml @@ -2,7 +2,7 @@ name: "Human Low Light" source: marketplace_id: "TomHall.human-theme" version: "1.1.1" - installs: 94 + installs: 95 author: "Tom Hall" repo: "https://github.com/tom-f-hall/human-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 77.7 black: 0 diff --git a/themes/human-soft.yaml b/themes/human-soft.yaml index f3676260..90a8233a 100644 --- a/themes/human-soft.yaml +++ b/themes/human-soft.yaml @@ -2,7 +2,7 @@ name: "Human Soft" source: marketplace_id: "TomHall.human-theme" version: "1.1.1" - installs: 94 + installs: 95 author: "Tom Hall" repo: "https://github.com/tom-f-hall/human-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 91.2 black: 0 diff --git a/themes/human-warm.yaml b/themes/human-warm.yaml index e951bd48..04a7fc3d 100644 --- a/themes/human-warm.yaml +++ b/themes/human-warm.yaml @@ -2,7 +2,7 @@ name: "Human Warm" source: marketplace_id: "TomHall.human-theme" version: "1.1.1" - installs: 94 + installs: 95 author: "Tom Hall" repo: "https://github.com/tom-f-hall/human-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 93.3 black: 7.7 diff --git a/themes/human.yaml b/themes/human.yaml index 73d12de8..49038121 100644 --- a/themes/human.yaml +++ b/themes/human.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 271 + pair: null contrast: fg: 100.5 black: 0 diff --git a/themes/hundred-oceans.yaml b/themes/hundred-oceans.yaml index 7d0adc39..b9063356 100644 --- a/themes/hundred-oceans.yaml +++ b/themes/hundred-oceans.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 61.7 black: 0 diff --git a/themes/hush-dark.yaml b/themes/hush-dark.yaml index 61d83a52..eafc6ab6 100644 --- a/themes/hush-dark.yaml +++ b/themes/hush-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 261 + pair: null contrast: fg: 104.7 black: 0 diff --git a/themes/hush-light.yaml b/themes/hush-light.yaml index cbfbd978..00549101 100644 --- a/themes/hush-light.yaml +++ b/themes/hush-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.7 black: 101.5 diff --git a/themes/hutaotheme.yaml b/themes/hutaotheme.yaml index b93ff993..fca78773 100644 --- a/themes/hutaotheme.yaml +++ b/themes/hutaotheme.yaml @@ -2,7 +2,7 @@ name: "HuTaoTheme" source: marketplace_id: "agomizi1cm.hutao-theme" version: "1.1.3" - installs: 962 + installs: 963 author: "agomizi1cm" repo: "https://github.com/agomizi1cm/HuTaoTheme" url: "https://marketplace.visualstudio.com/items?itemName=agomizi1cm.hutao-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 23 + pair: null contrast: fg: 84.7 black: 0 diff --git a/themes/hybrid-dim.yaml b/themes/hybrid-dim.yaml index 5535c254..acc35216 100644 --- a/themes/hybrid-dim.yaml +++ b/themes/hybrid-dim.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 70.9 black: 0 diff --git a/themes/hybrid-next-gray-background.yaml b/themes/hybrid-next-gray-background.yaml index 6729e6dd..55688520 100644 --- a/themes/hybrid-next-gray-background.yaml +++ b/themes/hybrid-next-gray-background.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 67 black: 0 diff --git a/themes/hybrid-theme.yaml b/themes/hybrid-theme.yaml index b7f43ba5..84815f69 100644 --- a/themes/hybrid-theme.yaml +++ b/themes/hybrid-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 58.3 black: 23.3 diff --git a/themes/hydr-theme.yaml b/themes/hydr-theme.yaml index fad0c869..abb800f7 100644 --- a/themes/hydr-theme.yaml +++ b/themes/hydr-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 281 + pair: null contrast: fg: 76.6 black: 21.6 diff --git a/themes/hydra-night.yaml b/themes/hydra-night.yaml index 7d083d6e..4152e65c 100644 --- a/themes/hydra-night.yaml +++ b/themes/hydra-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 275 + pair: null contrast: fg: 16.9 black: 0 diff --git a/themes/hydra-storm.yaml b/themes/hydra-storm.yaml index 6d93741d..d9287949 100644 --- a/themes/hydra-storm.yaml +++ b/themes/hydra-storm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/hyezo-dark.yaml b/themes/hyezo-dark.yaml deleted file mode 100644 index 18a8e738..00000000 --- a/themes/hyezo-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "hyezo-dark" -source: - marketplace_id: "hyezoprk.hyezo" - version: "1.0.1" - installs: 33 - author: "hyezoprk" - repo: "https://github.com/hyezoprk/hyezoTheme" - url: "https://marketplace.visualstudio.com/items?itemName=hyezoprk.hyezo" -colors: - bg: "#1E293B" - fg: "#D6D6D6" - black: "#000000" - red: "#CD3131" - green: "#51E1A5" - yellow: "#51E1A5" - blue: "#C7ADFB" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 260 - contrast: - fg: 78.1 - black: 0 - red: 24.1 - green: 70.6 - yellow: 70.6 - blue: 61.5 - magenta: 27.2 - cyan: 45 - white: 87.4 - brightBlack: 19.4 - brightRed: 36 - brightGreen: 60.9 - brightYellow: 93 - brightBlue: 37.4 - brightMagenta: 42.8 - brightCyan: 52.8 - brightWhite: 87.4 diff --git a/themes/hyle-color-theme.yaml b/themes/hyle-color-theme.yaml index cb208c42..3b28294d 100644 --- a/themes/hyle-color-theme.yaml +++ b/themes/hyle-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72.3 black: 0 diff --git a/themes/hyle-night-night-color-theme.yaml b/themes/hyle-night-night-color-theme.yaml index 6e591bf7..7e60324d 100644 --- a/themes/hyle-night-night-color-theme.yaml +++ b/themes/hyle-night-night-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72.6 black: 0 diff --git a/themes/hyped-down-fork.yaml b/themes/hyped-down-fork.yaml index 3148cb1d..74101855 100644 --- a/themes/hyped-down-fork.yaml +++ b/themes/hyped-down-fork.yaml @@ -2,7 +2,7 @@ name: "Hyped Down - Fork" source: marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" version: "9.0.1" - installs: 29903 + installs: 29917 author: "Hasibur R" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 70.8 black: 0 diff --git a/themes/hyped-down-theme.yaml b/themes/hyped-down-theme.yaml index 27c9f815..fffd8e31 100644 --- a/themes/hyped-down-theme.yaml +++ b/themes/hyped-down-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 106.5 black: 14.5 diff --git a/themes/hyper-ctrl-theme.yaml b/themes/hyper-ctrl-theme.yaml index ac85ae39..0ff18b15 100644 --- a/themes/hyper-ctrl-theme.yaml +++ b/themes/hyper-ctrl-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 45.1 black: 0 diff --git a/themes/hyper.yaml b/themes/hyper.yaml index f9fe6b4e..30d2ae37 100644 --- a/themes/hyper.yaml +++ b/themes/hyper.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/hyperdark-theme.yaml b/themes/hyperdark-theme.yaml index 8b2da8b4..313d0938 100644 --- a/themes/hyperdark-theme.yaml +++ b/themes/hyperdark-theme.yaml @@ -2,7 +2,7 @@ name: "Hyperdark Theme" source: marketplace_id: "voidfaithnull.hypedown-theme" version: "1.5.0" - installs: 3358 + installs: 3361 author: "wxgrzr" repo: "https://github.com/wgrzr/hypedown-theme" url: "https://marketplace.visualstudio.com/items?itemName=voidfaithnull.hypedown-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 90.3 black: 14.5 diff --git a/themes/hyperlink.yaml b/themes/hyperlink.yaml index 62990fe2..ec5b063b 100644 --- a/themes/hyperlink.yaml +++ b/themes/hyperlink.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 263 + pair: null contrast: fg: 104.8 black: 0 diff --git a/themes/hyperrail-theme-hyper-syntax-colors.yaml b/themes/hyperrail-theme-hyper-syntax-colors.yaml index f01c41a2..47e22e4e 100644 --- a/themes/hyperrail-theme-hyper-syntax-colors.yaml +++ b/themes/hyperrail-theme-hyper-syntax-colors.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 105.8 black: 0 diff --git a/themes/hypersubatomic.yaml b/themes/hypersubatomic.yaml index 847b29a5..254d9ef8 100644 --- a/themes/hypersubatomic.yaml +++ b/themes/hypersubatomic.yaml @@ -2,7 +2,7 @@ name: "Hypersubatomic" source: marketplace_id: "neilpanchal.hypersubatomic" version: "0.1.5" - installs: 6114 + installs: 6115 author: "Neil Panchal" repo: "https://github.com/neilpanchal/hypersubatomic-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=neilpanchal.hypersubatomic" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 43.7 black: 0 diff --git a/themes/hypervoxel.yaml b/themes/hypervoxel.yaml index aacd2c2b..9771450c 100644 --- a/themes/hypervoxel.yaml +++ b/themes/hypervoxel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 277 + pair: null contrast: fg: 87 black: 11.3 diff --git a/themes/hyprluna.yaml b/themes/hyprluna.yaml index 620c0a05..285f3336 100644 --- a/themes/hyprluna.yaml +++ b/themes/hyprluna.yaml @@ -2,7 +2,7 @@ name: "HyprLuna" source: marketplace_id: "HyprLuna.hyprluna-theme" version: "1.0.2" - installs: 1276 + installs: 1279 author: "HyprLuna" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HyprLuna.hyprluna-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 26 + pair: null contrast: fg: 88.5 black: 42.1 diff --git a/themes/hyrule-contrast.yaml b/themes/hyrule-contrast.yaml index f5ef6c97..b5cc6382 100644 --- a/themes/hyrule-contrast.yaml +++ b/themes/hyrule-contrast.yaml @@ -1,11 +1,11 @@ name: "hyrule-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0C0C0C" fg: "#C0D5C1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 77.5 black: 0 diff --git a/themes/hyrule-light.yaml b/themes/hyrule-light.yaml index 9233c121..c3f175a1 100644 --- a/themes/hyrule-light.yaml +++ b/themes/hyrule-light.yaml @@ -1,11 +1,11 @@ name: "hyrule-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#C0D5C1" fg: "#2D2C2B" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: 147 + pair: null contrast: fg: 72.9 black: 0 diff --git a/themes/hyrule.yaml b/themes/hyrule.yaml index 1c9d5a1b..2b90061f 100644 --- a/themes/hyrule.yaml +++ b/themes/hyrule.yaml @@ -1,11 +1,11 @@ name: "hyrule" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2D2C2B" fg: "#C0D5C1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 73.4 black: 0 diff --git a/themes/i-don-t-know.yaml b/themes/i-don-t-know.yaml index f520dc25..46a43640 100644 --- a/themes/i-don-t-know.yaml +++ b/themes/i-don-t-know.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/i-solarised-color-theme.yaml b/themes/i-solarised-color-theme.yaml index 39f137b9..d4138a4e 100644 --- a/themes/i-solarised-color-theme.yaml +++ b/themes/i-solarised-color-theme.yaml @@ -2,7 +2,7 @@ name: "i-solarised-color-theme" source: marketplace_id: "ctrlplusb.i-minimal-theme" version: "1.1.5" - installs: 10232 + installs: 10233 author: "ctrlplusb" repo: "https://github.com/ctrlplusb/i-theme" url: "https://marketplace.visualstudio.com/items?itemName=ctrlplusb.i-minimal-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 100.8 black: 100.8 diff --git a/themes/i3-aurora-x-custom-ii.yaml b/themes/i3-aurora-x-custom-ii.yaml deleted file mode 100644 index 0325d753..00000000 --- a/themes/i3-aurora-x-custom-ii.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "i3 - Aurora X - Custom II" -source: - marketplace_id: "i3acksp4ce.tokyo-night-default-dark" - version: "0.6.62" - installs: 6247 - author: "i3acksp4ce" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" -colors: - bg: "#18191B" - fg: "#F3F3F4" - black: "#484F58" - red: "#FF7B72" - green: "#3FB950" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FFA198" - brightGreen: "#56D364" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 98.8 - black: 12.3 - red: 51.9 - green: 51.4 - yellow: 51.5 - blue: 51.5 - magenta: 51.5 - cyan: 60.7 - white: 63.3 - brightBlack: 28.5 - brightRed: 64.1 - brightGreen: 64.7 - brightYellow: 64 - brightBlue: 64 - brightMagenta: 63.9 - brightCyan: 69.2 - brightWhite: 106.7 diff --git a/themes/i3-aurora-x-custom-iii.yaml b/themes/i3-aurora-x-custom-iii.yaml deleted file mode 100644 index ea36eca0..00000000 --- a/themes/i3-aurora-x-custom-iii.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "i3 - Aurora X - Custom III" -source: - marketplace_id: "i3acksp4ce.tokyo-night-default-dark" - version: "0.6.62" - installs: 6247 - author: "i3acksp4ce" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" -colors: - bg: "#011627" - fg: "#F1F2F3" - black: "#484F58" - red: "#FF7B72" - green: "#3FB950" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FFA198" - brightGreen: "#56D364" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 244 - contrast: - fg: 98.3 - black: 12.6 - red: 52.2 - green: 51.7 - yellow: 51.8 - blue: 51.8 - magenta: 51.8 - cyan: 61 - white: 63.6 - brightBlack: 28.8 - brightRed: 64.4 - brightGreen: 65 - brightYellow: 64.3 - brightBlue: 64.3 - brightMagenta: 64.2 - brightCyan: 69.5 - brightWhite: 107 diff --git a/themes/i3-aurora-x-custom.yaml b/themes/i3-aurora-x-custom.yaml deleted file mode 100644 index 460ef997..00000000 --- a/themes/i3-aurora-x-custom.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "i3 - Aurora X - Custom" -source: - marketplace_id: "i3acksp4ce.tokyo-night-default-dark" - version: "0.6.62" - installs: 6247 - author: "i3acksp4ce" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" -colors: - bg: "#141C24" - fg: "#F0F4F7" - black: "#484F58" - red: "#FF7B72" - green: "#3FB950" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FFA198" - brightGreen: "#56D364" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 249 - contrast: - fg: 98.7 - black: 12.1 - red: 51.6 - green: 51.1 - yellow: 51.2 - blue: 51.2 - magenta: 51.2 - cyan: 60.4 - white: 63 - brightBlack: 28.3 - brightRed: 63.8 - brightGreen: 64.5 - brightYellow: 63.7 - brightBlue: 63.7 - brightMagenta: 63.6 - brightCyan: 68.9 - brightWhite: 106.4 diff --git a/themes/ian.yaml b/themes/ian.yaml index 90083ae7..6ba27c11 100644 --- a/themes/ian.yaml +++ b/themes/ian.yaml @@ -2,7 +2,7 @@ name: "ian" source: marketplace_id: "iansergio.Dark-theme-ian" version: "0.0.1" - installs: 75 + installs: 76 author: "Ian Sergio H." repo: null url: "https://marketplace.visualstudio.com/items?itemName=iansergio.Dark-theme-ian" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 86.7 black: 0 diff --git a/themes/ibm-carbon-gray-10-alternative-code-highlighting.yaml b/themes/ibm-carbon-gray-10-alternative-code-highlighting.yaml deleted file mode 100644 index 36937361..00000000 --- a/themes/ibm-carbon-gray-10-alternative-code-highlighting.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "IBM Carbon Gray 10 (alternative code highlighting)" -source: - marketplace_id: "achkasov.ibm-carbon-design-system-theme" - version: "1.1.0" - installs: 675 - author: "achkasov" - repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" -colors: - bg: "#F4F4F4" - fg: "#161616" - black: "#525252" - red: "#DA1E28" - green: "#24A148" - yellow: "#FF832B" - blue: "#4589FF" - magenta: "#A56EFF" - cyan: "#009D9A" - white: "#FFFFFF" - brightBlack: "#525252" - brightRed: "#F14C4C" - brightGreen: "#A7F0BA" - brightYellow: "#F1C21B" - brightBlue: "#D0E2FF" - brightMagenta: "#E8DAFF" - brightCyan: "#9EF0F0" - brightWhite: "#F4F4F4" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 98.3 - black: 80.6 - red: 65.9 - green: 53.9 - yellow: 41.2 - blue: 53.9 - magenta: 54 - cyan: 53.6 - white: 0 - brightBlack: 80.6 - brightRed: 55.6 - brightGreen: 9.5 - brightYellow: 23.1 - brightBlue: 8.9 - brightMagenta: 9.3 - brightCyan: 8.1 - brightWhite: 0 diff --git a/themes/ibm-carbon-gray-100-alternative-code-highlighting.yaml b/themes/ibm-carbon-gray-100-alternative-code-highlighting.yaml deleted file mode 100644 index 292ad97a..00000000 --- a/themes/ibm-carbon-gray-100-alternative-code-highlighting.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "IBM Carbon Gray 100 (alternative code highlighting)" -source: - marketplace_id: "achkasov.ibm-carbon-design-system-theme" - version: "1.1.0" - installs: 675 - author: "achkasov" - repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" -colors: - bg: "#161616" - fg: "#F4F4F4" - black: "#262626" - red: "#DA1E28" - green: "#24A148" - yellow: "#FF832B" - blue: "#4589FF" - magenta: "#A56EFF" - cyan: "#009D9A" - white: "#C6C6C6" - brightBlack: "#525252" - brightRed: "#F14C4C" - brightGreen: "#A7F0BA" - brightYellow: "#F1C21B" - brightBlue: "#D0E2FF" - brightMagenta: "#E8DAFF" - brightCyan: "#9EF0F0" - brightWhite: "#F4F4F4" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 99.7 - black: 0 - red: 28.3 - green: 40.3 - yellow: 53.3 - blue: 40.3 - magenta: 40.3 - cyan: 40.6 - white: 71.2 - brightBlack: 14 - brightRed: 38.7 - brightGreen: 86.7 - brightYellow: 72.3 - brightBlue: 87.4 - brightMagenta: 87 - brightCyan: 88.2 - brightWhite: 99.7 diff --git a/themes/ibm-carbon-gray-90-alternative-code-highlighting.yaml b/themes/ibm-carbon-gray-90-alternative-code-highlighting.yaml deleted file mode 100644 index 6b27b781..00000000 --- a/themes/ibm-carbon-gray-90-alternative-code-highlighting.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "IBM Carbon Gray 90 (alternative code highlighting)" -source: - marketplace_id: "achkasov.ibm-carbon-design-system-theme" - version: "1.1.0" - installs: 675 - author: "achkasov" - repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" -colors: - bg: "#262626" - fg: "#F4F4F4" - black: "#262626" - red: "#DA1E28" - green: "#24A148" - yellow: "#FF832B" - blue: "#4589FF" - magenta: "#A56EFF" - cyan: "#009D9A" - white: "#C6C6C6" - brightBlack: "#525252" - brightRed: "#F14C4C" - brightGreen: "#A7F0BA" - brightYellow: "#F1C21B" - brightBlue: "#D0E2FF" - brightMagenta: "#E8DAFF" - brightCyan: "#9EF0F0" - brightWhite: "#F4F4F4" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 97.6 - black: 0 - red: 26.1 - green: 38.2 - yellow: 51.1 - blue: 38.1 - magenta: 38.1 - cyan: 38.4 - white: 69 - brightBlack: 11.9 - brightRed: 36.5 - brightGreen: 84.5 - brightYellow: 70.1 - brightBlue: 85.2 - brightMagenta: 84.8 - brightCyan: 86 - brightWhite: 97.6 diff --git a/themes/ibm-carbon-white-alternative-code-highlighting.yaml b/themes/ibm-carbon-white-alternative-code-highlighting.yaml deleted file mode 100644 index 95d05562..00000000 --- a/themes/ibm-carbon-white-alternative-code-highlighting.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "IBM Carbon White (alternative code highlighting)" -source: - marketplace_id: "achkasov.ibm-carbon-design-system-theme" - version: "1.1.0" - installs: 675 - author: "achkasov" - repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" -colors: - bg: "#FFFFFF" - fg: "#161616" - black: "#525252" - red: "#DA1E28" - green: "#24A148" - yellow: "#FF832B" - blue: "#4589FF" - magenta: "#A56EFF" - cyan: "#009D9A" - white: "#F4F4F4" - brightBlack: "#525252" - brightRed: "#F14C4C" - brightGreen: "#A7F0BA" - brightYellow: "#F1C21B" - brightBlue: "#D0E2FF" - brightMagenta: "#E8DAFF" - brightCyan: "#9EF0F0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 104.8 - black: 87.2 - red: 72.5 - green: 60.5 - yellow: 47.8 - blue: 60.5 - magenta: 60.5 - cyan: 60.2 - white: 0 - brightBlack: 87.2 - brightRed: 62.1 - brightGreen: 16.1 - brightYellow: 29.6 - brightBlue: 15.4 - brightMagenta: 15.8 - brightCyan: 14.7 - brightWhite: 0 diff --git a/themes/icaria.yaml b/themes/icaria.yaml index bdd98d57..ad3a63e7 100644 --- a/themes/icaria.yaml +++ b/themes/icaria.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 270 + pair: null contrast: fg: 107.2 black: 0 diff --git a/themes/icattheme.yaml b/themes/icattheme.yaml index d2b109f3..dce77e22 100644 --- a/themes/icattheme.yaml +++ b/themes/icattheme.yaml @@ -2,7 +2,7 @@ name: "icatTheme" source: marketplace_id: "ahmeticat.icat-dark-theme" version: "0.0.11" - installs: 5290 + installs: 5291 author: "ahmeticat" repo: "https://github.com/ahmeticat/Icat-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ahmeticat.icat-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 99.7 black: 0 diff --git a/themes/icc-light-theme.yaml b/themes/icc-light-theme.yaml index 7d7aa909..204b662f 100644 --- a/themes/icc-light-theme.yaml +++ b/themes/icc-light-theme.yaml @@ -2,7 +2,7 @@ name: "ICC Light Theme" source: marketplace_id: "icatalina.vscode-icc-theme" version: "1.1.1" - installs: 705 + installs: 706 author: "icatalina" repo: "https://github.com/icatalina/vscode-icc-theme" url: "https://marketplace.visualstudio.com/items?itemName=icatalina.vscode-icc-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 100.8 black: 100.8 diff --git a/themes/ice-cube-dark.yaml b/themes/ice-cube-dark.yaml index c7a1c54a..bf4cb40b 100644 --- a/themes/ice-cube-dark.yaml +++ b/themes/ice-cube-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 254 + pair: "ICE CUBE light" contrast: fg: 70.7 black: 0 diff --git a/themes/ice-cube-light.yaml b/themes/ice-cube-light.yaml index b215f69d..21c3b5c6 100644 --- a/themes/ice-cube-light.yaml +++ b/themes/ice-cube-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "ICE CUBE dark" contrast: fg: 80.5 black: 105.4 diff --git a/themes/ice.yaml b/themes/ice.yaml index 952427ae..9414cbad 100644 --- a/themes/ice.yaml +++ b/themes/ice.yaml @@ -2,7 +2,7 @@ name: "Ice" source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" - installs: 80 + installs: 81 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 234 + pair: null contrast: fg: 91.1 black: 91.1 diff --git a/themes/iceberg-contrast.yaml b/themes/iceberg-contrast.yaml index a199c7e0..99610f3d 100644 --- a/themes/iceberg-contrast.yaml +++ b/themes/iceberg-contrast.yaml @@ -1,11 +1,11 @@ name: "iceberg-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0B0E0E" fg: "#BDD6DB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.6 black: 0 diff --git a/themes/iceberg-light.yaml b/themes/iceberg-light.yaml index ae402ae8..4aedaee3 100644 --- a/themes/iceberg-light.yaml +++ b/themes/iceberg-light.yaml @@ -1,49 +1,50 @@ -name: "Iceberg Light" +name: "iceberg-light" source: - marketplace_id: "cocopon.iceberg-theme" - version: "2.0.6" - installs: 60257 - author: "cocopon" - repo: "https://github.com/cocopon/vscode-iceberg-theme" - url: "https://marketplace.visualstudio.com/items?itemName=cocopon.iceberg-theme" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: - bg: "#E8E9EC" - fg: "#33374C" - black: "#DCDFE7" - red: "#CC517A" - green: "#668E3D" - yellow: "#C57339" - blue: "#2D539E" - magenta: "#7759B4" - cyan: "#3F83A6" - white: "#33374C" - brightBlack: "#8389A3" - brightRed: "#CC3768" - brightGreen: "#598030" - brightYellow: "#B6662D" - brightBlue: "#22478E" - brightMagenta: "#6845AD" - brightCyan: "#327698" - brightWhite: "#262A3F" + bg: "#BDD6DB" + fg: "#323B3D" + black: "#CEE0E4" + red: "#BA0E2E" + green: "#499FBC" + yellow: "#2D8DA1" + blue: "#323B3D" + magenta: "#7EA3AF" + cyan: "#323B3D" + white: "#3D494B" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#94C6D7" + brightYellow: "#61BFD3" + brightBlue: "#607175" + brightMagenta: "#BDD0D6" + brightCyan: "#607175" + brightWhite: "#607175" meta: mode: "light" - accent: "red" - hue: null + accent: "orange" + hue: 211 + pair: null contrast: - fg: 83.9 + fg: 70 black: 0 - red: 55.1 - green: 52.6 - yellow: 49.9 - blue: 72.3 - magenta: 63.8 - cyan: 55.7 - white: 83.9 - brightBlack: 49.1 - brightRed: 59.5 - brightGreen: 58.9 - brightYellow: 56.1 - brightBlue: 77 - brightMagenta: 70.5 - brightCyan: 61.5 - brightWhite: 87.8 + red: 53.8 + green: 30.1 + yellow: 39.3 + blue: 70 + magenta: 26 + cyan: 70 + white: 65 + brightBlack: 27.5 + brightRed: 37.4 + brightGreen: 8.4 + brightYellow: 14.9 + brightBlue: 48.7 + brightMagenta: 0 + brightCyan: 48.7 + brightWhite: 48.7 diff --git a/themes/iceberg.yaml b/themes/iceberg.yaml index f018ecb6..5b7822c1 100644 --- a/themes/iceberg.yaml +++ b/themes/iceberg.yaml @@ -1,49 +1,50 @@ name: "Iceberg" source: - marketplace_id: "securisec.hapsida-securisec" - version: "0.0.30" - installs: 226 - author: "securisec" - repo: "https://github.com/securisec/code-hapsida" - url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + marketplace_id: "iAldo80.basic-themes" + version: "1.5.1" + installs: 425 + author: "Aldo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=iAldo80.basic-themes" colors: bg: "#161821" - fg: "#C6C8D0" - black: "#000000" - red: "#D47D7B" - green: "#34D399" - yellow: "#FCD34D" - blue: "#818CF8" - magenta: "#FB94FF" - cyan: "#80FCFF" - white: "#FFFFFF" - brightBlack: "#0050A4" - brightRed: "#FF628C" - brightGreen: "#3AD900" - brightYellow: "#FCD34D" - brightBlue: "#0088FF" - brightMagenta: "#FB94FF" - brightCyan: "#80FCFF" - brightWhite: "#193549" + fg: "#C6C8D1" + black: "#1E2132" + red: "#E27878" + green: "#B4BE82" + yellow: "#E2A478" + blue: "#84A0C6" + magenta: "#A093C7" + cyan: "#89B8C2" + white: "#C6C8D1" + brightBlack: "#6B7089" + brightRed: "#E98989" + brightGreen: "#C0CA8E" + brightYellow: "#E9B189" + brightBlue: "#91ACD1" + brightMagenta: "#ADA0D3" + brightCyan: "#95C4CE" + brightWhite: "#D2D4DE" meta: mode: "dark" - accent: "green" + accent: "orange" hue: 275 + pair: null contrast: - fg: 72.2 + fg: 72.3 black: 0 - red: 44.3 - green: 65 - yellow: 81.2 - blue: 44.3 - magenta: 64.2 - cyan: 92.6 - white: 106.7 - brightBlack: 14.5 - brightRed: 47 - brightGreen: 66.1 - brightYellow: 81.2 - brightBlue: 38.6 - brightMagenta: 64.2 - brightCyan: 92.6 - brightWhite: 0 + red: 45.4 + green: 63.1 + yellow: 59.2 + blue: 48.6 + magenta: 46.8 + cyan: 58.5 + white: 72.3 + brightBlack: 26.7 + brightRed: 52 + brightGreen: 70 + brightYellow: 65.5 + brightBlue: 55 + brightMagenta: 53.6 + brightCyan: 65.2 + brightWhite: 79.5 diff --git a/themes/icefall.yaml b/themes/icefall.yaml index 05e3c1ec..4881b047 100644 --- a/themes/icefall.yaml +++ b/themes/icefall.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 277 + pair: null contrast: fg: 69.7 black: 8.6 diff --git a/themes/idea-islands-dark.yaml b/themes/idea-islands-dark.yaml index dfdfeee7..028883eb 100644 --- a/themes/idea-islands-dark.yaml +++ b/themes/idea-islands-dark.yaml @@ -2,7 +2,7 @@ name: "idea islands dark ++" source: marketplace_id: "idea-islands-dark-plus.idea-islands-dark-plus" version: "0.0.1" - installs: 210 + installs: 211 author: "idea-islands-dark-plus by ruiming qian" repo: "https://github.com/yourusername/idea-islands-dark-plus" url: "https://marketplace.visualstudio.com/items?itemName=idea-islands-dark-plus.idea-islands-dark-plus" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/iditarod.yaml b/themes/iditarod.yaml index 5e90fbee..8a19f91e 100644 --- a/themes/iditarod.yaml +++ b/themes/iditarod.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 235 + pair: null contrast: fg: 78.2 black: 0 diff --git a/themes/idk.yaml b/themes/idk.yaml index 6f9c79e1..7df30542 100644 --- a/themes/idk.yaml +++ b/themes/idk.yaml @@ -1,11 +1,11 @@ name: "idk" source: - marketplace_id: "Kuuhaku.idkidkidk699669969" + marketplace_id: "Kuuhaku.idkidkidk69966996" version: "1.0.1" - installs: 117 + installs: 116 author: "Kuuhaku" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Kuuhaku.idkidkidk699669969" + url: "https://marketplace.visualstudio.com/items?itemName=Kuuhaku.idkidkidk69966996" colors: bg: "#09020A" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 324 + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/idx-theme-dark.yaml b/themes/idx-theme-dark.yaml index 2b2633cc..076d22ed 100644 --- a/themes/idx-theme-dark.yaml +++ b/themes/idx-theme-dark.yaml @@ -2,7 +2,7 @@ name: "Idx Theme Dark" source: marketplace_id: "PabitraBanerjee.idx-dark-theme" version: "1.0.0" - installs: 6270 + installs: 6273 author: "Pabitra Banerjee" repo: "https://github.com/PB2204/IDX-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=PabitraBanerjee.idx-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 258 + pair: null contrast: fg: 84.9 black: 22.4 diff --git a/themes/idx-xcode-dark-improved.yaml b/themes/idx-xcode-dark-improved.yaml index 15b9993a..db960c5e 100644 --- a/themes/idx-xcode-dark-improved.yaml +++ b/themes/idx-xcode-dark-improved.yaml @@ -1,11 +1,11 @@ name: "idx-xcode-dark-improved" source: - marketplace_id: "CreevekCZ.idx-xcode" - version: "0.0.4" - installs: 951 - author: "Jan Kožnárek" - repo: "https://github.com/CreevekCZ/idx-xcode-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=CreevekCZ.idx-xcode" + marketplace_id: "AstralHorse17.charmcode" + version: "0.0.2" + installs: 33 + author: "AstralHorse17" + repo: "https://github.com/https://github.com/AstralHorse17/CharmCode" + url: "https://marketplace.visualstudio.com/items?itemName=AstralHorse17.charmcode" colors: bg: "#171F2B" fg: "#D9DFE7" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 258 + pair: null contrast: fg: 84.9 black: 33.1 diff --git a/themes/igniter-theme-light.yaml b/themes/igniter-theme-light.yaml index 58f004ca..4ce43066 100644 --- a/themes/igniter-theme-light.yaml +++ b/themes/igniter-theme-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.5 black: 98.2 diff --git a/themes/igniter-theme.yaml b/themes/igniter-theme.yaml index 9f3506de..f7823283 100644 --- a/themes/igniter-theme.yaml +++ b/themes/igniter-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 93.2 black: 0 diff --git a/themes/ikaros-white.yaml b/themes/ikaros-white.yaml index 89e747bb..2a4b8629 100644 --- a/themes/ikaros-white.yaml +++ b/themes/ikaros-white.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99 black: 8.4 diff --git a/themes/ikaros.yaml b/themes/ikaros.yaml index f6393ad9..f1931458 100644 --- a/themes/ikaros.yaml +++ b/themes/ikaros.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/ikki-vscode-dark-theme.yaml b/themes/ikki-vscode-dark-theme.yaml index 1af2ee24..3812dd28 100644 --- a/themes/ikki-vscode-dark-theme.yaml +++ b/themes/ikki-vscode-dark-theme.yaml @@ -2,7 +2,7 @@ name: "IKKI-VSCode-Dark-Theme" source: marketplace_id: "IKKI2000.ikki-vscode-dark-theme" version: "1.88.1" - installs: 3764 + installs: 3765 author: "IKKI" repo: "https://github.com/IKKI2000/IKKI-VSCode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=IKKI2000.ikki-vscode-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 65.3 black: 77 diff --git a/themes/ikki-vscode-light-theme.yaml b/themes/ikki-vscode-light-theme.yaml index dc8cd26e..fcc99e0d 100644 --- a/themes/ikki-vscode-light-theme.yaml +++ b/themes/ikki-vscode-light-theme.yaml @@ -2,7 +2,7 @@ name: "IKKI-VSCode-Light-Theme" source: marketplace_id: "IKKI2000.ikki-vscode-light-theme" version: "1.88.1" - installs: 4732 + installs: 4733 author: "IKKI" repo: "https://github.com/IKKI2000/IKKI-VSCode-Light-Theme" url: "https://marketplace.visualstudio.com/items?itemName=IKKI2000.ikki-vscode-light-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 74.1 black: 88.8 diff --git a/themes/ikshana.yaml b/themes/ikshana.yaml index 2c4c5ecb..24ba3177 100644 --- a/themes/ikshana.yaml +++ b/themes/ikshana.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 247 + pair: null contrast: fg: 87.9 black: 0 diff --git a/themes/illusion-refined.yaml b/themes/illusion-refined.yaml deleted file mode 100644 index 96567444..00000000 --- a/themes/illusion-refined.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Illusion Refined" -source: - marketplace_id: "rodrigosuelli.illusion-refined" - version: "1.0.4" - installs: 1676 - author: "Rodrigo Suélli" - repo: "https://github.com/rodrigosuelli/illusion-refined" - url: "https://marketplace.visualstudio.com/items?itemName=rodrigosuelli.illusion-refined" -colors: - bg: "#1E1D22" - fg: "#FEFEFE" - black: "#1E1D22" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#5F5076" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 105.4 - black: 0 - red: 42.6 - green: 84.1 - yellow: 97.8 - blue: 52.9 - magenta: 53.8 - cyan: 83.2 - white: 101.2 - brightBlack: 15.1 - brightRed: 48.1 - brightGreen: 88.3 - brightYellow: 102.8 - brightBlue: 65.3 - brightMagenta: 61.8 - brightCyan: 96 - brightWhite: 106.1 diff --git a/themes/iloveagents-azure-ai-foundry-dark.yaml b/themes/iloveagents-azure-ai-foundry-dark.yaml index f8bac52a..f180aa5a 100644 --- a/themes/iloveagents-azure-ai-foundry-dark.yaml +++ b/themes/iloveagents-azure-ai-foundry-dark.yaml @@ -2,7 +2,7 @@ name: "iLoveAgents - Azure AI Foundry (Dark)" source: marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" version: "0.5.3" - installs: 160 + installs: 161 author: "iLoveAgents" repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 278 + pair: null contrast: fg: 95 black: 0 diff --git a/themes/iloveagents-azure-ai-foundry-light.yaml b/themes/iloveagents-azure-ai-foundry-light.yaml index 3f163e52..9a5b105a 100644 --- a/themes/iloveagents-azure-ai-foundry-light.yaml +++ b/themes/iloveagents-azure-ai-foundry-light.yaml @@ -2,7 +2,7 @@ name: "iLoveAgents - Azure AI Foundry (Light)" source: marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" version: "0.5.3" - installs: 160 + installs: 161 author: "iLoveAgents" repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 102.3 black: 98.3 diff --git a/themes/iloveagents-dark.yaml b/themes/iloveagents-dark.yaml index 74f67d98..949a3a5e 100644 --- a/themes/iloveagents-dark.yaml +++ b/themes/iloveagents-dark.yaml @@ -2,7 +2,7 @@ name: "iLoveAgents Dark" source: marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" version: "0.5.3" - installs: 160 + installs: 161 author: "iLoveAgents" repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "iLoveAgents Light" contrast: fg: 91.3 black: 0 diff --git a/themes/iloveagents-light.yaml b/themes/iloveagents-light.yaml index 31ff1b54..0fc859bd 100644 --- a/themes/iloveagents-light.yaml +++ b/themes/iloveagents-light.yaml @@ -2,7 +2,7 @@ name: "iLoveAgents Light" source: marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" version: "0.5.3" - installs: 160 + installs: 161 author: "iLoveAgents" repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "iLoveAgents Dark" contrast: fg: 101.5 black: 98.3 diff --git a/themes/imba-dark.yaml b/themes/imba-dark.yaml index 4cf59619..e769604b 100644 --- a/themes/imba-dark.yaml +++ b/themes/imba-dark.yaml @@ -2,7 +2,7 @@ name: "Imba Dark" source: marketplace_id: "scrimba.vsimba" version: "4.2.3" - installs: 5038 + installs: 5039 author: "Scrimba" repo: "https://github.com/imba/imba" url: "https://marketplace.visualstudio.com/items?itemName=scrimba.vsimba" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 59.8 black: 0 diff --git a/themes/imexoodeex.yaml b/themes/imexoodeex.yaml index fbb78a0a..12a9784f 100644 --- a/themes/imexoodeex.yaml +++ b/themes/imexoodeex.yaml @@ -2,7 +2,7 @@ name: "imexoodeex" source: marketplace_id: "imexoodeex.neonjet" version: "1.1.0" - installs: 2730 + installs: 2732 author: "imexoodeex" repo: null url: "https://marketplace.visualstudio.com/items?itemName=imexoodeex.neonjet" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/in-bed-by-7pm.yaml b/themes/in-bed-by-7pm.yaml index f68cd367..491d2307 100644 --- a/themes/in-bed-by-7pm.yaml +++ b/themes/in-bed-by-7pm.yaml @@ -2,7 +2,7 @@ name: "In Bed by 7pm" source: marketplace_id: "sdras.inbedby7pm" version: "0.4.0" - installs: 47500 + installs: 47506 author: "sarah.drasner" repo: "https://github.com/sdras/inbedby7pm" url: "https://marketplace.visualstudio.com/items?itemName=sdras.inbedby7pm" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 277 + pair: null contrast: fg: 91.1 black: 0 diff --git a/themes/in-darkest-night.yaml b/themes/in-darkest-night.yaml index 17f1f4fa..e7f8f523 100644 --- a/themes/in-darkest-night.yaml +++ b/themes/in-darkest-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 7.6 black: 0 diff --git a/themes/in-his-earthy-elements.yaml b/themes/in-his-earthy-elements.yaml index 9efc184f..2769d705 100644 --- a/themes/in-his-earthy-elements.yaml +++ b/themes/in-his-earthy-elements.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 80 + pair: null contrast: fg: 43.6 black: 7.7 diff --git a/themes/in-the-fog-dark.yaml b/themes/in-the-fog-dark.yaml index 9d5f8dea..17a94904 100644 --- a/themes/in-the-fog-dark.yaml +++ b/themes/in-the-fog-dark.yaml @@ -2,7 +2,7 @@ name: "In The Fog Dark" source: marketplace_id: "ganevru.in-the-fog-theme" version: "0.3.1" - installs: 3344 + installs: 3367 author: "ganevru" repo: "https://github.com/ganevru/in-the-fog-theme" url: "https://marketplace.visualstudio.com/items?itemName=ganevru.in-the-fog-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 77 black: 19.6 diff --git a/themes/index.json b/themes/index.json index 662f36e6..170ba8b9 100644 --- a/themes/index.json +++ b/themes/index.json @@ -4,6 +4,7 @@ "1989": "1989.yaml", "2077": "2077.yaml", "_common": "common.yaml", + "_Dark": "dark.yaml", "_ui": "ui.yaml", ".Alpha": "alpha.yaml", ".K Relaxed": "k-relaxed.yaml", @@ -14,12 +15,24 @@ "{Hello World!} Theme": "hello-world-theme.yaml", "「愚純」dumDum_theme": "dumdum-theme.yaml", "「雪」snowy&mint": "snowy-mint.yaml", + "@skeswa's Noctis": "skeswa-s-noctis.yaml", + "@skeswa's Noctis Azureus": "skeswa-s-noctis-azureus.yaml", + "@skeswa's Noctis Bordo": "skeswa-s-noctis-bordo.yaml", + "@skeswa's Noctis Hibernus": "skeswa-s-noctis-hibernus.yaml", + "@skeswa's Noctis Lilac": "skeswa-s-noctis-lilac.yaml", + "@skeswa's Noctis Lux": "skeswa-s-noctis-lux.yaml", + "@skeswa's Noctis Minimus": "skeswa-s-noctis-minimus.yaml", + "@skeswa's Noctis Obscuro": "skeswa-s-noctis-obscuro.yaml", + "@skeswa's Noctis Sereno": "skeswa-s-noctis-sereno.yaml", + "@skeswa's Noctis Uva": "skeswa-s-noctis-uva.yaml", + "@skeswa's Noctis Viola": "skeswa-s-noctis-viola.yaml", "#ROOT - Dark mode theme v0.1": "root-dark-mode-theme-v0-1.yaml", "🏴 blackbird → dusk": "blackbird-dusk.yaml", "🏴 blackbird → midnight": "blackbird-midnight.yaml", "💎Fluorite theme": "fluorite-theme.yaml", "💜Purple-theme💜": "purple-theme.yaml", "🧊": ".yaml", + "🧛‍♂️": ".yaml", "🪽 archangel": "archangel.yaml", "🪽 archangel → dusk": "archangel-dusk.yaml", "07 Dark": "07-dark.yaml", @@ -27,17 +40,19 @@ "0A515 Dark": "0a515-dark.yaml", "0x96f Theme": "0x96f-theme.yaml", "1️⃣": "1.yaml", + "10004ok-dark": "10004ok-dark.yaml", "10x Dark Theme": "10x-dark-theme.yaml", - "111-theme": "111-theme.yaml", "19th Century": "19th-century.yaml", "1Dark Poncho HC": "1dark-poncho-hc.yaml", "1mm - Dracula": "1mm-dracula.yaml", "2_colors": "2-colors.yaml", + "25時、ナイトコードで。Blue": "25-blue.yaml", "2am": "2am.yaml", "365 Day october dark": "365-day-october-dark.yaml", "365.6 coder theme": "365-6-coder-theme.yaml", "3XAY": "3xay.yaml", "4-Colours": "4-colours.yaml", + "404 - Muted": "404-muted.yaml", "404 Flat": "404-flat.yaml", "42nd": "42nd.yaml", "4am session (aqua)": "4am-session-aqua.yaml", @@ -47,6 +62,8 @@ "4am session (red)": "4am-session-red.yaml", "4am session (yellow)": "4am-session-yellow.yaml", "6szn": "6szn.yaml", + "73nko Dark": "73nko-dark.yaml", + "73nko Light": "73nko-light.yaml", "7lou Theme": "7lou-theme.yaml", "8-Bit Dark": "8-bit-dark.yaml", "8-Bit Light": "8-bit-light.yaml", @@ -79,9 +96,10 @@ "A GitHub Light 3 🟢 Green": "a-github-light-3-green.yaml", "A GitHub Light 4 🔵 Blue": "a-github-light-4-blue.yaml", "A GitHub Light 5 🟣 Purple": "a-github-light-5-purple.yaml", + "a_green_cat": "a-green-cat.yaml", "a_green_cat dimmed": "a-green-cat-dimmed.yaml", - "a_green_cat v2": "a-green-cat-v2.yaml", "A.2 Theme": "a-2-theme.yaml", + "A/J Light": "a-j-light.yaml", "AAUU": "aauu.yaml", "Ab-dark": "ab-dark.yaml", "abcdef": "abcdef.yaml", @@ -95,14 +113,34 @@ "absent-contrast": "absent-contrast.yaml", "absent-light": "absent-light.yaml", "Abstract MH": "abstract-mh.yaml", + "Abys Zora Dark": "abys-zora-dark.yaml", + "Abysal Marble": "abysal-marble.yaml", + "Abysal Obsidian": "abysal-obsidian.yaml", "Abyskai": "abyskai.yaml", "Abyss": "abyss.yaml", + "Abyssal Blue": "abyssal-blue.yaml", + "Abyssal Mirage": "abyssal-mirage.yaml", + "Abyssal-Anime": "abyssal-anime.yaml", + "Abyssal-Black": "abyssal-black.yaml", + "Abyssal-Catppuccin": "abyssal-catppuccin.yaml", + "Abyssal-Dark": "abyssal-dark.yaml", + "Abyssal-Dracula": "abyssal-dracula.yaml", + "Abyssal-E-Ink": "abyssal-e-ink.yaml", + "Abyssal-Everforest": "abyssal-everforest.yaml", + "Abyssal-Gruvbox": "abyssal-gruvbox.yaml", + "Abyssal-Hacker": "abyssal-hacker.yaml", + "Abyssal-Latte": "abyssal-latte.yaml", + "Abyssal-Nord": "abyssal-nord.yaml", + "Abyssal-Tokyo-Night": "abyssal-tokyo-night.yaml", "Acario": "acario.yaml", - "AceKaizen Calmly Dark": "acekaizen-calmly-dark.yaml", + "access-color-theme": "access-color-theme.yaml", + "Ace Palenight": "ace-palenight.yaml", + "AceKaizen Code Theme": "acekaizen-code-theme.yaml", "AceQuartz": "acequartz.yaml", + "Acid-Trip": "acid-trip.yaml", "aclear-dark": "aclear-dark.yaml", "Acme": "acme.yaml", - "Aconitum - Clean": "aconitum-clean.yaml", + "Aconitum": "aconitum.yaml", "ACS - Cozy Dark": "acs-cozy-dark.yaml", "Adapt Dark": "adapt-dark.yaml", "ADark": "adark.yaml", @@ -112,8 +150,10 @@ "Adey Coder": "adey-coder.yaml", "Adey Coder - Deep dark": "adey-coder-deep-dark.yaml", "Adonis": "adonis.yaml", + "Adonis+": "adonis.yaml", "Adrift": "adrift.yaml", "AdvancedBat": "advancedbat.yaml", + "AdventuresinParadise": "adventuresinparadise.yaml", "aelmouny11_theme": "aelmouny11-theme.yaml", "Aeridia": "aeridia.yaml", "Aesir Theme": "aesir-theme.yaml", @@ -159,6 +199,8 @@ "Aether Void": "aether-void.yaml", "Aether Zen": "aether-zen.yaml", "Aetherglow": "aetherglow.yaml", + "Afro": "afro.yaml", + "Afterglow-Fade": "afterglow-fade.yaml", "Afternoon Delight Subtle": "afternoon-delight-subtle.yaml", "AfterPurple": "afterpurple.yaml", "Agathist Dark": "agathist-dark.yaml", @@ -171,25 +213,28 @@ "Akari Dawn": "akari-dawn.yaml", "Akari Night": "akari-night.yaml", "Akihabara": "akihabara.yaml", + "Aklesky Golden River": "aklesky-golden-river.yaml", + "Aklesky Mist of Mint": "aklesky-mist-of-mint.yaml", "Ako Theme": "ako-theme.yaml", "Aksin": "aksin.yaml", "Akumanomi Theme": "akumanomi-theme.yaml", "akurdor": "akurdor.yaml", + "AL Theme - Official": "al-theme-official.yaml", "Alabaster Dark": "alabaster-dark.yaml", "Alchemist's Orchid Dark": "alchemist-s-orchid-dark.yaml", "Alchemist's Orchid Light": "alchemist-s-orchid-light.yaml", "Alchemist's Orchid Sepia": "alchemist-s-orchid-sepia.yaml", "Alchemy Theme": "alchemy-theme.yaml", - "Aldrico's": "aldrico-s.yaml", "Aldrico's Gruvbox": "aldrico-s-gruvbox.yaml", "Alec Teal Theme": "alec-teal-theme.yaml", + "Alice's Theme": "alice-s-theme.yaml", + "Aliceblue-Theme": "aliceblue-theme.yaml", "Alien Blood": "alien-blood.yaml", "Alien Terminal Nostromo Amber": "alien-terminal-nostromo-amber.yaml", "Alien Terminal Nostromo Green": "alien-terminal-nostromo-green.yaml", "Alien Terminal Sevastopol Link": "alien-terminal-sevastopol-link.yaml", "Alignment (italic)": "alignment-italic.yaml", "Alignment darker (italic)": "alignment-darker-italic.yaml", - "alive-dark-theme": "alive-dark-theme.yaml", "All Blue": "all-blue.yaml", "all-black": "all-black.yaml", "all-nighter Theme": "all-nighter-theme.yaml", @@ -203,6 +248,7 @@ "Alma Sakura Theme": "alma-sakura-theme.yaml", "Almond Cream": "almond-cream.yaml", "Aloe": "aloe.yaml", + "alpha": "alpha.yaml", "alpine": "alpine.yaml", "Alpine-Warm": "alpine-warm.yaml", "Altearn": "altearn.yaml", @@ -211,21 +257,23 @@ "Altin's Love Symphony": "altin-s-love-symphony.yaml", "Alucard Sotn": "alucard-sotn.yaml", "ALX_THEME_CLASSIC": "alx-theme-classic.yaml", - "ALX_THEME_NORMAL": "alx-theme-normal.yaml", + "ALX_THEME_TOXIC": "alx-theme-toxic.yaml", "Amadeus Dark": "amadeus-dark.yaml", "Amadeus Dark Cobalt": "amadeus-dark-cobalt.yaml", "Amadeus Dark Pastel": "amadeus-dark-pastel.yaml", - "Amaranth Red & Eerie Black - Fork": "amaranth-red-eerie-black-fork.yaml", + "Amazon-Jungle": "amazon-jungle.yaml", "AmazonFrog": "amazonfrog.yaml", "Ambar for VSCode": "ambar-for-vscode.yaml", - "Amber-Blue": "amber-blue.yaml", - "Amber-Blue-Light": "amber-blue-light.yaml", - "amber-color-theme": "amber-color-theme.yaml", + "Amber Delight": "amber-delight.yaml", + "Amber-Red": "amber-red.yaml", + "Amber-Red-Light": "amber-red-light.yaml", "Ambient": "ambient.yaml", "Amethyst Dreams": "amethyst-dreams.yaml", - "Amethyst Kiss Dark(Amethyst Mode)": "amethyst-kiss-dark-amethyst-mode.yaml", - "Amethyst Kiss Light(Amethyst Mode)": "amethyst-kiss-light-amethyst-mode.yaml", + "Amethyst Kiss Dark(Kiss Mode)": "amethyst-kiss-dark-kiss-mode.yaml", + "Amethyst Kiss Light(Kiss Mode)": "amethyst-kiss-light-kiss-mode.yaml", "Amethyst Theme": "amethyst-theme.yaml", + "Amethyst-Stone": "amethyst-stone.yaml", + "amMinial": "amminial.yaml", "Amoled Dark Theme": "amoled-dark-theme.yaml", "amoledTest - Fork - Fork": "amoledtest-fork-fork.yaml", "Amora": "amora.yaml", @@ -239,6 +287,7 @@ "Anastasia": "anastasia.yaml", "Andromeda": "andromeda.yaml", "Andromeda Light Italic Bordered": "andromeda-light-italic-bordered.yaml", + "Andromeda Night": "andromeda-night.yaml", "Andromeda Zed": "andromeda-zed.yaml", "Andromeda-Custom": "andromeda-custom.yaml", "Anemones": "anemones.yaml", @@ -251,7 +300,8 @@ "Anisochromatic": "anisochromatic.yaml", "Ano Theme - Dark": "ano-theme-dark.yaml", "AnOldHope": "anoldhope.yaml", - "anquyx - Fork": "anquyx-fork.yaml", + "Another-Acid-Trip": "another-acid-trip.yaml", + "anquyx": "anquyx.yaml", "Anthropic": "anthropic.yaml", "Anthropic Dark": "anthropic-dark.yaml", "Anthropic Light": "anthropic-light.yaml", @@ -267,17 +317,24 @@ "Anubis Dark Theme": "anubis-dark-theme.yaml", "Anubis Light": "anubis-light.yaml", "Anufemist Dark": "anufemist-dark.yaml", - "Anya": "anya.yaml", "Apathy": "apathy.yaml", "Apathy Experimental": "apathy-experimental.yaml", "APcodespaces": "apcodespaces.yaml", "Apex": "apex.yaml", + "Apex Carbon++": "apex-carbon.yaml", + "Apex Ember++": "apex-ember.yaml", + "Apex Frost++": "apex-frost.yaml", + "Apex Neon++": "apex-neon.yaml", + "Apex Pastel++": "apex-pastel.yaml", + "Apex Steel++": "apex-steel.yaml", "Apollo Dark": "apollo-dark.yaml", "Apollo Light": "apollo-light.yaml", + "app.netlify.com": "app-netlify-com.yaml", "Apparently Purple": "apparently-purple.yaml", "apple-dancheong-minimal-light": "apple-dancheong-minimal-light.yaml", "Apprentice": "apprentice.yaml", "April Dark Theme": "april-dark-theme.yaml", + "Aqua-Glacier": "aqua-glacier.yaml", "AquaMain": "aquamain.yaml", "AquaNova": "aquanova.yaml", "Arabian Nights": "arabian-nights.yaml", @@ -292,22 +349,33 @@ "Arctic Night": "arctic-night.yaml", "Arctis": "arctis.yaml", "Arctis Dark": "arctis-dark.yaml", + "Arctis Dark - No Italics": "arctis-dark-no-italics.yaml", "Arctis Dark+": "arctis-dark.yaml", "Arctis High Contrast": "arctis-high-contrast.yaml", "Arctis Light": "arctis-light.yaml", "Arctis Moon": "arctis-moon.yaml", "Arctis Night": "arctis-night.yaml", + "Arencio Argos Dark": "arencio-argos-dark.yaml", "Ares Tron Legacy": "ares-tron-legacy.yaml", "Arete Theme": "arete-theme.yaml", + "Argo": "argo.yaml", "argonaut": "argonaut.yaml", "argprocolor": "argprocolor.yaml", "Ariake Sands": "ariake-sands.yaml", "Ariake Sun": "ariake-sun.yaml", "aries": "aries.yaml", + "aries-Darker": "aries-darker.yaml", + "aries-Darker-High-Contrast": "aries-darker-high-contrast.yaml", + "aries-Default": "aries-default.yaml", + "aries-Lighter": "aries-lighter.yaml", + "aries-Lighter-High-Contrast": "aries-lighter-high-contrast.yaml", + "aries-Ocean": "aries-ocean.yaml", + "aries-Palenight": "aries-palenight.yaml", "Arkaios Theme": "arkaios-theme.yaml", "ArkineticTheme": "arkinetictheme.yaml", "Arkku": "arkku.yaml", "armada": "armada.yaml", + "Armada": "armada.yaml", "AroAce": "aroace.yaml", "AroAce High Contrast": "aroace-high-contrast.yaml", "AroAce Light": "aroace-light.yaml", @@ -342,10 +410,12 @@ "Aspire Dark": "aspire-dark.yaml", "Aspire Light": "aspire-light.yaml", "Assam - Tea Gardens": "assam-tea-gardens.yaml", + "Aster Dark Theme": "aster-dark-theme.yaml", "Asteria": "asteria.yaml", "Astigmatism Theme": "astigmatism-theme.yaml", "Astra": "astra.yaml", "Astra-ThemeDark": "astra-themedark.yaml", + "Astral": "astral.yaml", "Astral Theme": "astral-theme.yaml", "Astro Dark": "astro-dark.yaml", "Astro Kanagawa": "astro-kanagawa.yaml", @@ -369,24 +439,27 @@ "Atom One Light Modern": "atom-one-light-modern.yaml", "AtomAx Colorblind Light": "atomax-colorblind-light.yaml", "AtomAx Dark+": "atomax-dark.yaml", + "AtomAx Dark+ Colorblind": "atomax-dark-colorblind.yaml", "AtomAx Dark+ Dimmed": "atomax-dark-dimmed.yaml", "AtomAx Dark+ Tritanopia": "atomax-dark-tritanopia.yaml", "AtomAx High Contrast": "atomax-high-contrast.yaml", + "AtomAx High Contrast Light": "atomax-high-contrast-light.yaml", "AtomAx Light+": "atomax-light.yaml", "AtomAx Light+ Tritanopia": "atomax-light-tritanopia.yaml", "Atomicc": "atomicc.yaml", "Atomify": "atomify.yaml", "Atomized-Theme": "atomized-theme.yaml", "Atomizer Dark Island": "atomizer-dark-island.yaml", + "Atomwave": "atomwave.yaml", "Attack on Titan (Eren's Determination)": "attack-on-titan-eren-s-determination.yaml", "Attentio Flow": "attentio-flow.yaml", "Attentio Pulse": "attentio-pulse.yaml", "Attica": "attica.yaml", "Aube": "aube.yaml", "August - Ariake Dark": "august-ariake-dark.yaml", + "August - Arstotzka": "august-arstotzka.yaml", + "August - Arstotzka (Darker)": "august-arstotzka-darker.yaml", "August - Arstotzka (Lighter)": "august-arstotzka-lighter.yaml", - "August - Arstotzka 2": "august-arstotzka-2.yaml", - "August - Arstotzka 2 (Darker)": "august-arstotzka-2-darker.yaml", "August - BeardedTheme Oceanic Reversed": "august-beardedtheme-oceanic-reversed.yaml", "August - BeardedTheme Surprising Blueberry": "august-beardedtheme-surprising-blueberry.yaml", "August - Catppuccin": "august-catppuccin.yaml", @@ -394,8 +467,11 @@ "August - City Lights (Darker)": "august-city-lights-darker.yaml", "August - Drawbridge": "august-drawbridge.yaml", "August - Drawbridge (Darker)": "august-drawbridge-darker.yaml", + "August - Gruvbox": "august-gruvbox.yaml", "August - Gruvbox (Darker)": "august-gruvbox-darker.yaml", + "August - Kanagawa": "august-kanagawa.yaml", "August - Kanagawa (Darker)": "august-kanagawa-darker.yaml", + "August - Material Ocean": "august-material-ocean.yaml", "August - Material Palenight": "august-material-palenight.yaml", "August - Night Owl": "august-night-owl.yaml", "August - Night Owl (Darker)": "august-night-owl-darker.yaml", @@ -403,8 +479,6 @@ "August - Nord (Darker)": "august-nord-darker.yaml", "August - Radical": "august-radical.yaml", "August - Radical 2": "august-radical-2.yaml", - "August - Rosé Pine": "august-ros-pine.yaml", - "August - Rosé Pine Moon": "august-ros-pine-moon.yaml", "August Dark Theme": "august-dark-theme.yaml", "Aura Dark": "aura-dark.yaml", "Aura Dark (Soft Text)": "aura-dark-soft-text.yaml", @@ -424,6 +498,7 @@ "AuroraSynth Light": "aurorasynth-light.yaml", "Australian Food & Fibre Dark": "australian-food-fibre-dark.yaml", "Australian Food & Fibre Light": "australian-food-fibre-light.yaml", + "Autu Dark Theme": "autu-dark-theme.yaml", "Autumn": "autumn.yaml", "Autumn - Fork": "autumn-fork.yaml", "Autumn - Fork - Contrast": "autumn-fork-contrast.yaml", @@ -435,14 +510,18 @@ "Axiomatic Dark": "axiomatic-dark.yaml", "Axiomatic Light": "axiomatic-light.yaml", "Axis Ultra Dark": "axis-ultra-dark.yaml", + "Aya Dark": "aya-dark.yaml", + "Aya Light": "aya-light.yaml", "Ayame": "ayame.yaml", "Ayanokoji": "ayanokoji.yaml", "Aylin": "aylin.yaml", - "ayu": "ayu.yaml", + "Ayu Darkvenom Transparent - borderless": "ayu-darkvenom-transparent-borderless.yaml", "Ayu Enhanced": "ayu-enhanced.yaml", + "Ayu One Dark Pro | Dark Bordered": "ayu-one-dark-pro-dark-bordered.yaml", + "Ayu One Dark Pro | Mirage": "ayu-one-dark-pro-mirage.yaml", + "Ayu One Dark Pro | Mirage Bordered": "ayu-one-dark-pro-mirage-bordered.yaml", "ayu-owl": "ayu-owl.yaml", "AyuDark": "ayudark.yaml", - "Ayuloco Dark": "ayuloco-dark.yaml", "Ayuloco Dark Bordered": "ayuloco-dark-bordered.yaml", "Ayuloco Mirage": "ayuloco-mirage.yaml", "Ayuloco Mirage Bordered": "ayuloco-mirage-bordered.yaml", @@ -475,9 +554,9 @@ "Backspace Dark Vibe Coder": "backspace-dark-vibe-coder.yaml", "Backspace Dark Winter": "backspace-dark-winter.yaml", "Backspace Light": "backspace-light.yaml", - "Baculum Color Lightup Comment": "baculum-color-lightup-comment.yaml", + "Baculum Color": "baculum-color.yaml", "Baculum Color Minimal 2": "baculum-color-minimal-2.yaml", - "Baculum Color Minimal Vantablack": "baculum-color-minimal-vantablack.yaml", + "Baculum Color Vantablack": "baculum-color-vantablack.yaml", "Baculum Dark Color": "baculum-dark-color.yaml", "badbird": "badbird.yaml", "Baig": "baig.yaml", @@ -506,10 +585,10 @@ "Barbie": "barbie.yaml", "Barbie Light": "barbie-light.yaml", "Barbie Theme": "barbie-theme.yaml", + "Barito": "barito.yaml", "barlume": "barlume.yaml", "Barney PRO": "barney-pro.yaml", "Barstrata": "barstrata.yaml", - "Base Minor": "base-minor.yaml", "Base Minor Dark Hard": "base-minor-dark-hard.yaml", "Base Minor Dark Soft": "base-minor-dark-soft.yaml", "Base Minor Soft": "base-minor-soft.yaml", @@ -580,6 +659,7 @@ "Basterdized": "basterdized.yaml", "bat": "bat.yaml", "Batsignal-light-color-theme": "batsignal-light-color-theme.yaml", + "Battutu": "battutu.yaml", "BazmaTheme": "bazmatheme.yaml", "Bazutya": "bazutya.yaml", "BBBAlabamaSuntan": "bbbalabamasuntan.yaml", @@ -598,10 +678,13 @@ "Bee Theme": "bee-theme.yaml", "bee-theme-color-theme-tow": "bee-theme-color-theme-tow.yaml", "Beerish": "beerish.yaml", + "BeeSystemTheme": "beesystemtheme.yaml", + "Beginner Theme": "beginner-theme.yaml", "Behavai": "behavai.yaml", "Behavai Vitesse": "behavai-vitesse.yaml", - "Beloco Italic": "beloco-italic.yaml", - "Benimaru": "benimaru.yaml", + "BELCH - Fork": "belch-fork.yaml", + "Bellair": "bellair.yaml", + "Beloco": "beloco.yaml", "BenLaTheme Azure": "benlatheme-azure.yaml", "Benpai Theme (Dark)": "benpai-theme-dark.yaml", "Berg": "berg.yaml", @@ -610,8 +693,8 @@ "Berry Latte Light": "berry-latte-light.yaml", "berry-blast-theme": "berry-blast-theme.yaml", "Bersk": "bersk.yaml", + "bertax": "bertax.yaml", "Beru": "beru.yaml", - "Best Themes - Monokai Next": "best-themes-monokai-next.yaml", "Best Themes - One Monokai": "best-themes-one-monokai.yaml", "Better Coding Dark": "better-coding-dark.yaml", "Better Light": "better-light.yaml", @@ -621,10 +704,10 @@ "Better Solarized Dark Italic": "better-solarized-dark-italic.yaml", "betu-dark": "betu-dark.yaml", "betu-light": "betu-light.yaml", + "betweenTTs": "betweentts.yaml", "BHWM715 - Even Darker": "bhwm715-even-darker.yaml", "BiancoNero": "bianconero.yaml", "Bibauporto Gray": "bibauporto-gray.yaml", - "Bibauporto Simple": "bibauporto-simple.yaml", "Biddeew": "biddeew.yaml", "Bifröst": "bifr-st.yaml", "BigFish": "bigfish.yaml", @@ -643,8 +726,11 @@ "Bits Theme Purple Light": "bits-theme-purple-light.yaml", "Bl!nk": "bl-nk.yaml", "Black and Red": "black-and-red.yaml", + "Black and White TV": "black-and-white-tv.yaml", + "Black Beauty": "black-beauty.yaml", "Black Ocean": "black-ocean.yaml", "Black on Gray": "black-on-gray.yaml", + "Black panther theme": "black-panther-theme.yaml", "Black Pink Rose": "black-pink-rose.yaml", "Black punk 77": "black-punk-77.yaml", "Black Purple": "black-purple.yaml", @@ -653,6 +739,7 @@ "black-color-theme": "black-color-theme.yaml", "Black-Rose": "black-rose.yaml", "black-theme": "black-theme.yaml", + "Black-Velvet-Luxe": "black-velvet-luxe.yaml", "blackai-theme": "blackai-theme.yaml", "blackamp": "blackamp.yaml", "blackberry": "blackberry.yaml", @@ -666,6 +753,7 @@ "BlackRoulette": "blackroulette.yaml", "blackula-theme": "blackula-theme.yaml", "Blacky": "blacky.yaml", + "blackzombie-color-theme": "blackzombie-color-theme.yaml", "Bladerunner": "bladerunner.yaml", "Bladerunner-light": "bladerunner-light.yaml", "Blah Dark": "blah-dark.yaml", @@ -675,8 +763,8 @@ "Blank Moonlight": "blank-moonlight.yaml", "Blank Uchiha": "blank-uchiha.yaml", "Blank's Theme Reborn": "blank-s-theme-reborn.yaml", - "blankeos zen theme": "blankeos-zen-theme.yaml", - "blaze-orange": "blaze-orange.yaml", + "Blazing": "blazing.yaml", + "Blender Mojo theme": "blender-mojo-theme.yaml", "Blinds (Dark)": "blinds-dark.yaml", "blink": "blink.yaml", "blink-contrast": "blink-contrast.yaml", @@ -706,6 +794,7 @@ "blue-moves-color-theme": "blue-moves-color-theme.yaml", "blue-moves-darker-color-theme": "blue-moves-darker-color-theme.yaml", "Blue-Night": "blue-night.yaml", + "Blueberry": "blueberry.yaml", "Blueberry dark theme": "blueberry-dark-theme.yaml", "Blueberry Futuristic theme - Fork": "blueberry-futuristic-theme-fork.yaml", "Blueberry Theme": "blueberry-theme.yaml", @@ -714,12 +803,12 @@ "BlueGreenSpace": "bluegreenspace.yaml", "Bluelili-color-theme": "bluelili-color-theme.yaml", "BlueOrange": "blueorange.yaml", + "Blueprint-Grid": "blueprint-grid.yaml", "bluered-theme": "bluered-theme.yaml", "BlueSea": "bluesea.yaml", "BlueSpace": "bluespace.yaml", "BlueSpace S": "bluespace-s.yaml", "BluespEXTER": "bluespexter.yaml", - "BlueThemePulper": "bluethemepulper.yaml", "BlueyOneDark": "blueyonedark.yaml", "Bluish": "bluish.yaml", "Bluloco Dark": "bluloco-dark.yaml", @@ -745,6 +834,7 @@ "booklike": "booklike.yaml", "Bootstrap Dark": "bootstrap-dark.yaml", "Bootstrap Light": "bootstrap-light.yaml", + "Borderless Tokyo Night": "borderless-tokyo-night.yaml", "Borders Blue": "borders-blue.yaml", "Borders Dark": "borders-dark.yaml", "Borders Darker": "borders-darker.yaml", @@ -797,7 +887,7 @@ "Bugged GPU": "bugged-gpu.yaml", "Buhtig": "buhtig.yaml", "Bullish Theme": "bullish-theme.yaml", - "bun_gothic": "bun-gothic.yaml", + "Bumblebee": "bumblebee.yaml", "Burnt Chestnut": "burnt-chestnut.yaml", "Burple Dark": "burple-dark.yaml", "BusbyVSCode": "busbyvscode.yaml", @@ -808,38 +898,44 @@ "Bynawers": "bynawers.yaml", "ByteGlow": "byteglow.yaml", "ByteNight": "bytenight.yaml", + "C-Carbon-6": "c-carbon-6.yaml", + "c.e.o": "c-e-o.yaml", "C/C++ Theme": "c-c-theme.yaml", "C# Dracula": "c-dracula.yaml", "C0V3R": "c0v3r.yaml", "Cabalyon Theme": "cabalyon-theme.yaml", "Cadet Dark Gray": "cadet-dark-gray.yaml", - "Cadet Medium Gray Flat": "cadet-medium-gray-flat.yaml", + "Cadet Medium Gray": "cadet-medium-gray.yaml", "Café Warmth": "caf-warmth.yaml", + "Cafelle": "cafelle.yaml", "Caffe Crema Dark": "caffe-crema-dark.yaml", "Caffe Crema Light": "caffe-crema-light.yaml", "Caffeinated Rust": "caffeinated-rust.yaml", "CAL-4700": "cal-4700.yaml", + "calabaza": "calabaza.yaml", "𝐂𝐚𝐥𝐜𝐢𝐮𝐦º❍。⊹・゚✧": ".yaml", "Calm Dark": "calm-dark.yaml", - "Calm Days, Sober Nights - Day (no bold style)": "calm-days-sober-nights-day-no-bold-style.yaml", - "Calm Days, Sober Nights - Day (Sky) (no bold style)": "calm-days-sober-nights-day-sky-no-bold-style.yaml", - "Calm Days, Sober Nights - Night (no bold style)": "calm-days-sober-nights-night-no-bold-style.yaml", - "Calm Days, Sober Nights - Night (Sky) (no bold style)": "calm-days-sober-nights-night-sky-no-bold-style.yaml", + "Calm Days, Sober Nights - Day": "calm-days-sober-nights-day.yaml", + "Calm Days, Sober Nights - Day (Sky)": "calm-days-sober-nights-day-sky.yaml", + "Calm Days, Sober Nights - Night": "calm-days-sober-nights-night.yaml", + "Calm Days, Sober Nights - Night (Sky)": "calm-days-sober-nights-night-sky.yaml", "Calm Down Color Theme": "calm-down-color-theme.yaml", "Calm Light": "calm-light.yaml", "Calm Ocean": "calm-ocean.yaml", - "Calm Teal Colorblind - Balance & Clarity": "calm-teal-colorblind-balance-clarity.yaml", + "Calm Teal - Balance & Clarity": "calm-teal-balance-clarity.yaml", "Calm Teal High Contrast - Balance & Clarity": "calm-teal-high-contrast-balance-clarity.yaml", "Calm Teal Light - Balance & Clarity": "calm-teal-light-balance-clarity.yaml", + "Calm Vision": "calm-vision.yaml", "Calming Theme": "calming-theme.yaml", "calming-coding-dark-theme": "calming-coding-dark-theme.yaml", + "calmnight": "calmnight.yaml", "Calmppuccin Frappe": "calmppuccin-frappe.yaml", "Calmppuccin Latte": "calmppuccin-latte.yaml", "Calmppuccin Macchiato": "calmppuccin-macchiato.yaml", "Calmppuccin Mocha": "calmppuccin-mocha.yaml", "Calmppuccin Nitro-cold-brew": "calmppuccin-nitro-cold-brew.yaml", "Calmppuccin Oledppuccin": "calmppuccin-oledppuccin.yaml", - "Calomnie": "calomnie.yaml", + "Calmshade": "calmshade.yaml", "campbell": "campbell.yaml", "Camula": "camula.yaml", "Camula Moon": "camula-moon.yaml", @@ -854,7 +950,7 @@ "Cape Town Nights": "cape-town-nights.yaml", "Capitola": "capitola.yaml", "Capy UI": "capy-ui.yaml", - "Caramel - Fork": "caramel-fork.yaml", + "Caramel": "caramel.yaml", "Carbon": "carbon.yaml", "Carbon Code Amber Dark": "carbon-code-amber-dark.yaml", "Carbon Code Amber Light": "carbon-code-amber-light.yaml", @@ -872,10 +968,11 @@ "Carbon React Color Theme - Maya": "carbon-react-color-theme-maya.yaml", "Carbon React Color Theme - Maya Black": "carbon-react-color-theme-maya-black.yaml", "carbon-candy-anthracite": "carbon-candy-anthracite.yaml", - "carbon-candy-aurora (thin-border)": "carbon-candy-aurora-thin-border.yaml", - "carbon-candy-carbon (thin-border)": "carbon-candy-carbon-thin-border.yaml", - "carbon-candy-dark (thin-border)": "carbon-candy-dark-thin-border.yaml", - "carbon-candy-obsidian (thin-border)": "carbon-candy-obsidian-thin-border.yaml", + "carbon-candy-aurora": "carbon-candy-aurora.yaml", + "carbon-candy-bee": "carbon-candy-bee.yaml", + "carbon-candy-carbon": "carbon-candy-carbon.yaml", + "carbon-candy-dark": "carbon-candy-dark.yaml", + "carbon-candy-obsidian": "carbon-candy-obsidian.yaml", "carbon-candy-palenight": "carbon-candy-palenight.yaml", "carbonfox": "carbonfox.yaml", "Carbonfox": "carbonfox.yaml", @@ -891,12 +988,16 @@ "Carex Light": "carex-light.yaml", "Casa": "casa.yaml", "Casino Royal": "casino-royal.yaml", + "Cassieye Dark": "cassieye-dark.yaml", + "Cassieye Light": "cassieye-light.yaml", "Cat_Pink": "cat-pink.yaml", + "Cat_Pulper": "cat-pulper.yaml", "Cat_Sleep-color-theme": "cat-sleep-color-theme.yaml", "Catalyst": "catalyst.yaml", "Catalyst Light": "catalyst-light.yaml", "cathayTrial": "cathaytrial.yaml", "Catppuccin Dark": "catppuccin-dark.yaml", + "Catppuccin Dark Pro": "catppuccin-dark-pro.yaml", "Catppuccin Frappé": "catppuccin-frapp.yaml", "Catppuccin Latte": "catppuccin-latte.yaml", "Catppuccin Macchiato": "catppuccin-macchiato.yaml", @@ -906,23 +1007,27 @@ "Catppuccin Monokai Macchiato": "catppuccin-monokai-macchiato.yaml", "Catppuccin Monokai Mocha": "catppuccin-monokai-mocha.yaml", "Catthode": "catthode.yaml", - "cchl-color-theme": "cchl-color-theme.yaml", + "ccat": "ccat.yaml", "cebola-theme": "cebola-theme.yaml", "Celadon Theme": "celadon-theme.yaml", "celestial-charm-theme": "celestial-charm-theme.yaml", - "Ceo": "ceo.yaml", "cerydra": "cerydra.yaml", "cfl-one": "cfl-one.yaml", + "Cha Thai": "cha-thai.yaml", "Chai Light": "chai-light.yaml", + "Chainroot": "chainroot.yaml", "Chalk": "chalk.yaml", "Chalkish": "chalkish.yaml", "Charcoal": "charcoal.yaml", "CHARLI Health Dark": "charli-health-dark.yaml", "CHARLI Health Light": "charli-health-light.yaml", + "Charmed Dark": "charmed-dark.yaml", "ChatGPT Theme": "chatgpt-theme.yaml", "cheese n all": "cheese-n-all.yaml", "Cheesewaffle Blue": "cheesewaffle-blue.yaml", "Cheetha Green": "cheetha-green.yaml", + "Chelsea Pride": "chelsea-pride.yaml", + "Chelsea Pride Away": "chelsea-pride-away.yaml", "Cherry": "cherry.yaml", "Cherry Blossom Airy": "cherry-blossom-airy.yaml", "Cherry Blossom Breeze": "cherry-blossom-breeze.yaml", @@ -944,6 +1049,10 @@ "Cherry Wild Theme": "cherry-wild-theme.yaml", "cherryBlossom": "cherryblossom.yaml", "Chiclete de uva | Theme": "chiclete-de-uva-theme.yaml", + "Chilaquiles Rojos (Dark)": "chilaquiles-rojos-dark.yaml", + "Chilaquiles Rojos (Light)": "chilaquiles-rojos-light.yaml", + "Chilaquiles Verdes (Dark)": "chilaquiles-verdes-dark.yaml", + "Chilaquiles Verdes (Light)": "chilaquiles-verdes-light.yaml", "Chill Night Mode": "chill-night-mode.yaml", "chillhack": "chillhack.yaml", "Chinolor": "chinolor.yaml", @@ -953,6 +1062,9 @@ "chocolate-dessert-theme": "chocolate-dessert-theme.yaml", "chocolate-light": "chocolate-light.yaml", "CHPastel": "chpastel.yaml", + "CHPastel Dark": "chpastel-dark.yaml", + "CHPastel Light": "chpastel-light.yaml", + "Chris Light": "chris-light.yaml", "ChrisCoding": "chriscoding.yaml", "christmas": "christmas.yaml", "CHROMAHIN AMOLED": "chromahin-amoled.yaml", @@ -962,13 +1074,16 @@ "Chromatic Dark": "chromatic-dark.yaml", "Chromatic Light": "chromatic-light.yaml", "Chrome DevTools": "chrome-devtools.yaml", + "chrome-green": "chrome-green.yaml", "Chromodusk Classic": "chromodusk-classic.yaml", + "Chronica Pink": "chronica-pink.yaml", "Chronokai": "chronokai.yaml", "Cielo": "cielo.yaml", "Cinnamon": "cinnamon.yaml", "Cinnamonroll": "cinnamonroll.yaml", "citric secret": "citric-secret.yaml", "City Fog": "city-fog.yaml", + "ckai-color-theme": "ckai-color-theme.yaml", "Clairvoyance Theme": "clairvoyance-theme.yaml", "Clairvoyance Theme - Alt": "clairvoyance-theme-alt.yaml", "Clairvoyance Theme - Grape": "clairvoyance-theme-grape.yaml", @@ -976,14 +1091,15 @@ "Clarity Design System - Dark": "clarity-design-system-dark.yaml", "Clarity Design System - Light": "clarity-design-system-light.yaml", "Claro": "claro.yaml", + "Classic Essential Colors (Blue)": "classic-essential-colors-blue.yaml", "classic_terminal": "classic-terminal.yaml", - "Claude Code Dark Brand": "claude-code-dark-brand.yaml", + "Claude Code Dark": "claude-code-dark.yaml", "Claude Code Dark High Contrast": "claude-code-dark-high-contrast.yaml", - "Claude Code Light Brand": "claude-code-light-brand.yaml", + "Claude Code Light": "claude-code-light.yaml", "Claude Code Light High Contrast": "claude-code-light-high-contrast.yaml", "Claude Dark": "claude-dark.yaml", "Claude Dark (Anthropic)": "claude-dark-anthropic.yaml", - "Claude Dark High Contrast Italic": "claude-dark-high-contrast-italic.yaml", + "Claude Dark High Contrast": "claude-dark-high-contrast.yaml", "Claude Dark Italic": "claude-dark-italic.yaml", "Claude Light": "claude-light.yaml", "Claude Mode Dark": "claude-mode-dark.yaml", @@ -996,6 +1112,7 @@ "Clear Dark": "clear-dark.yaml", "Cleo": "cleo.yaml", "clesy-theme-dark": "clesy-theme-dark.yaml", + "Clorest": "clorest.yaml", "CloudMint Night": "cloudmint-night.yaml", "clrsync": "clrsync.yaml", "CLU Tron Legacy": "clu-tron-legacy.yaml", @@ -1008,6 +1125,7 @@ "Coal": "coal.yaml", "Cobalt Next": "cobalt-next.yaml", "Cobalt Next Dark": "cobalt-next-dark.yaml", + "Cobalt-Ice": "cobalt-ice.yaml", "Cobalt2": "cobalt2.yaml", "Cobalt3Dark": "cobalt3dark.yaml", "Cobalt9": "cobalt9.yaml", @@ -1029,12 +1147,15 @@ "cocoa": "cocoa.yaml", "coconut": "coconut.yaml", "coconut dark": "coconut-dark.yaml", + "coconut dark+": "coconut-dark.yaml", "Coda": "coda.yaml", - "Code Hunter - BluePurly": "code-hunter-bluepurly.yaml", + "Code Glasses - Vision Pro": "code-glasses-vision-pro.yaml", "Code Hunter - MagNum Purple": "code-hunter-magnum-purple.yaml", "Code Hunter - Spruce Wind": "code-hunter-spruce-wind.yaml", "Code Kraken ™ Theme": "code-kraken-theme.yaml", + "Code Muse Light": "code-muse-light.yaml", "Code Red": "code-red.yaml", + "Code Sandbox Tribute": "code-sandbox-tribute.yaml", "Code With Colors Pro - Midnight Purple": "code-with-colors-pro-midnight-purple.yaml", "Code_Like_a_Rainbow": "code-like-a-rainbow.yaml", "Code-Dadi Dark": "code-dadi-dark.yaml", @@ -1078,6 +1199,7 @@ "CodeXFlow Themes": "codexflow-themes.yaml", "Codiefy optimas prime color theme": "codiefy-optimas-prime-color-theme.yaml", "coding-light-theme": "coding-light-theme.yaml", + "CodingWish": "codingwish.yaml", "cods": "cods.yaml", "coelhiN-Smooth": "coelhin-smooth.yaml", "coelhiN-Violet": "coelhin-violet.yaml", @@ -1095,6 +1217,7 @@ "Coldark - Dark": "coldark-dark.yaml", "Collapse": "collapse.yaml", "Color Coffee Dark": "color-coffee-dark.yaml", + "Color contrast": "color-contrast.yaml", "Color Sea Blue": "color-sea-blue.yaml", "Color Sea Gray": "color-sea-gray.yaml", "Color Sea Green": "color-sea-green.yaml", @@ -1107,6 +1230,7 @@ "Colorbars: green": "colorbars-green.yaml", "Colorbars: orange": "colorbars-orange.yaml", "Colorbars: purple": "colorbars-purple.yaml", + "Colored Desert": "colored-desert.yaml", "Colorful Carbon": "colorful-carbon.yaml", "Colorful Carbon Dark Knight": "colorful-carbon-dark-knight.yaml", "Colorful Light": "colorful-light.yaml", @@ -1119,26 +1243,23 @@ "ColorShift Material Pro - Evening": "colorshift-material-pro-evening.yaml", "ColorShift Material Pro - Morning": "colorshift-material-pro-morning.yaml", "Colorways - Cheers (Soft)": "colorways-cheers-soft.yaml", + "Columbina - Dark": "columbina-dark.yaml", "Columbina - High Contrast": "columbina-high-contrast.yaml", "comfy monokai": "comfy-monokai.yaml", "ComfyEyes": "comfyeyes.yaml", "commadoor": "commadoor.yaml", "commadoor dark": "commadoor-dark.yaml", "CommentsAreImportant": "commentsareimportant.yaml", - "Community-Material-Theme-Darker": "community-material-theme-darker.yaml", - "Community-Material-Theme-Default-High-Contrast": "community-material-theme-default-high-contrast.yaml", - "Community-Material-Theme-Lighter": "community-material-theme-lighter.yaml", - "Community-Material-Theme-Lighter-High-Contrast": "community-material-theme-lighter-high-contrast.yaml", - "Community-Material-Theme-Ocean-High-Contrast": "community-material-theme-ocean-high-contrast.yaml", - "Community-Material-Theme-Palenight-High-Contrast": "community-material-theme-palenight-high-contrast.yaml", "Compline": "compline.yaml", "component": "component.yaml", "comrade": "comrade.yaml", "comrade-contrast": "comrade-contrast.yaml", "comrade-light": "comrade-light.yaml", "Concoctis - Dark : Hard": "concoctis-dark-hard.yaml", + "Concoctis - Dark : Medium": "concoctis-dark-medium.yaml", "Concoctis - Dark : Soft": "concoctis-dark-soft.yaml", "Concoctis - Light : Hard": "concoctis-light-hard.yaml", + "Concoctis - Light : Medium": "concoctis-light-medium.yaml", "Concoctis - Light : Soft": "concoctis-light-soft.yaml", "Concrete": "concrete.yaml", "Concrete Theme": "concrete-theme.yaml", @@ -1157,7 +1278,9 @@ "corgidarkpastel2": "corgidarkpastel2.yaml", "corgidarkpastel3": "corgidarkpastel3.yaml", "Corporate Dark Theme": "corporate-dark-theme.yaml", + "Cortex-theme": "cortex-theme.yaml", "Cosmic": "cosmic.yaml", + "Cosmic Dark": "cosmic-dark.yaml", "Cosmic Decay": "cosmic-decay.yaml", "Cosmic Gleam: Darkest": "cosmic-gleam-darkest.yaml", "Cosmic Iris": "cosmic-iris.yaml", @@ -1177,15 +1300,17 @@ "Cowboy Theme": "cowboy-theme.yaml", "Cozy Evenings": "cozy-evenings.yaml", "Cozy Mornings": "cozy-mornings.yaml", + "CozySpace": "cozyspace.yaml", "CPA Lions": "cpa-lions.yaml", "cr-night-theme": "cr-night-theme.yaml", + "Cr0wn_Gh0ul": "cr0wn-gh0ul.yaml", "crackpot": "crackpot.yaml", "crackpot-contrast": "crackpot-contrast.yaml", "crackpot-light": "crackpot-light.yaml", "Crafty Theme Dark Contrast": "crafty-theme-dark-contrast.yaml", "CrazyDark": "crazydark.yaml", "Cream Charcoal": "cream-charcoal.yaml", - "Creative Purple Colorblind - Innovation & Imagination": "creative-purple-colorblind-innovation-imagination.yaml", + "Creative Purple - Innovation & Imagination": "creative-purple-innovation-imagination.yaml", "Creative Purple Light - Innovation & Imagination": "creative-purple-light-innovation-imagination.yaml", "Crema": "crema.yaml", "CRF Flamengo": "crf-flamengo.yaml", @@ -1201,14 +1326,13 @@ "CRT Apple": "crt-apple.yaml", "CRT AppleIIc": "crt-appleiic.yaml", "CRT Blue": "crt-blue.yaml", - "CRT Gray": "crt-gray.yaml", "CRT Green": "crt-green.yaml", "CRT Green1": "crt-green1.yaml", "CRT Green2": "crt-green2.yaml", - "CRT Paper": "crt-paper.yaml", "CRT Red": "crt-red.yaml", "CRT-ALT": "crt-alt.yaml", "Crypto": "crypto.yaml", + "Crystal-Quartz": "crystal-quartz.yaml", "Crystaltine's Crystalline 4.1": "crystaltine-s-crystalline-4-1.yaml", "Crystaltine's Crystalline 5.0": "crystaltine-s-crystalline-5-0.yaml", "cs50-light-theme": "cs50-light-theme.yaml", @@ -1218,7 +1342,6 @@ "Cupertino Dark": "cupertino-dark.yaml", "Cupertino Light": "cupertino-light.yaml", "Curry Dark": "curry-dark.yaml", - "Cursor Dark": "cursor-dark.yaml", "Cursor Dark Anysphere v0.0.1": "cursor-dark-anysphere-v0-0-1.yaml", "Cursor Less Dark": "cursor-less-dark.yaml", "Cursor Light": "cursor-light.yaml", @@ -1236,6 +1359,8 @@ "Cyber Light Warm": "cyber-light-warm.yaml", "Cyber Pastel - Violet": "cyber-pastel-violet.yaml", "Cyber Purple 77": "cyber-purple-77.yaml", + "Cyber-Industrial": "cyber-industrial.yaml", + "Cyber-Pop": "cyber-pop.yaml", "Cyberblue": "cyberblue.yaml", "CyberDude Black": "cyberdude-black.yaml", "Cyberdyne Ghostty": "cyberdyne-ghostty.yaml", @@ -1243,6 +1368,7 @@ "Cyberlite - Fork": "cyberlite-fork.yaml", "Cybermoon": "cybermoon.yaml", "Cyberpink-137© Theme": "cyberpink-137-theme.yaml", + "cyberpunk": "cyberpunk.yaml", "Cyberpunk": "cyberpunk.yaml", "CyberPunk 2077": "cyberpunk-2077.yaml", "Cyberpunk 2077 - Night City Neon": "cyberpunk-2077-night-city-neon.yaml", @@ -1250,6 +1376,8 @@ "CyberpunkCygnus Clear Grid": "cyberpunkcygnus-clear-grid.yaml", "CyberpunkCygnus Neon Pulse": "cyberpunkcygnus-neon-pulse.yaml", "CyberpunkCygnus Solace Flare": "cyberpunkcygnus-solace-flare.yaml", + "CyberSec Pro": "cybersec-pro.yaml", + "cyberspace": "cyberspace.yaml", "Cybertrauma's": "cybertrauma-s.yaml", "CyberTrauma's Dark Theme": "cybertrauma-s-dark-theme.yaml", "CYBERTRONIX": "cybertronix.yaml", @@ -1259,6 +1387,7 @@ "D2T Dark": "d2t-dark.yaml", "D2T Dark Clean": "d2t-dark-clean.yaml", "Da3m0ns Dark (Italic)": "da3m0ns-dark-italic.yaml", + "daet": "daet.yaml", "Dafault": "dafault.yaml", "dak-v1": "dak-v1.yaml", "dalailahner-dark": "dalailahner-dark.yaml", @@ -1268,7 +1397,9 @@ "Dang-Jedi": "dang-jedi.yaml", "DangerGray v2": "dangergray-v2.yaml", "Dango theme": "dango-theme.yaml", + "Daniel Material Palenight Theme": "daniel-material-palenight-theme.yaml", "danmo": "danmo.yaml", + "Dante-Color-Theme": "dante-color-theme.yaml", "Dantes Theme": "dantes-theme.yaml", "DanteTheme": "dantetheme.yaml", "Darcula": "darcula.yaml", @@ -1276,6 +1407,7 @@ "Darcula Contrast Min": "darcula-contrast-min.yaml", "Darcula Dark Theme": "darcula-dark-theme.yaml", "Darcula Void": "darcula-void.yaml", + "darcula-port": "darcula-port.yaml", "darcula-solid-color-theme": "darcula-solid-color-theme.yaml", "DarculaCode": "darculacode.yaml", "dare": "dare.yaml", @@ -1289,10 +1421,12 @@ "Dark Abyss": "dark-abyss.yaml", "Dark Aura": "dark-aura.yaml", "Dark Black Developer": "dark-black-developer.yaml", + "dark blood": "dark-blood.yaml", "Dark Blue Theme": "dark-blue-theme.yaml", "Dark Brown": "dark-brown.yaml", "Dark Brown Theme": "dark-brown-theme.yaml", - "Dark Chai": "dark-chai.yaml", + "Dark Cherry Ice-Cream": "dark-cherry-ice-cream.yaml", + "Dark Cherry Ice-Cream Subtle": "dark-cherry-ice-cream-subtle.yaml", "Dark Clean": "dark-clean.yaml", "Dark Code - Fork": "dark-code-fork.yaml", "Dark Coffee": "dark-coffee.yaml", @@ -1305,6 +1439,7 @@ "Dark Frost Midnight": "dark-frost-midnight.yaml", "Dark Fury": "dark-fury.yaml", "Dark Future Cyberpunk 2077": "dark-future-cyberpunk-2077.yaml", + "Dark Future Outrun": "dark-future-outrun.yaml", "Dark Green Jungle": "dark-green-jungle.yaml", "Dark Green Minimalist Theme": "dark-green-minimalist-theme.yaml", "Dark Grey Theme": "dark-grey-theme.yaml", @@ -1314,6 +1449,7 @@ "Dark Ink Brightest": "dark-ink-brightest.yaml", "Dark Ink Lighter": "dark-ink-lighter.yaml", "Dark Jade": "dark-jade.yaml", + "Dark Juice Bordered": "dark-juice-bordered.yaml", "Dark Lavender": "dark-lavender.yaml", "Dark Lavender (Black)": "dark-lavender-black.yaml", "Dark Lavender (Soft)": "dark-lavender-soft.yaml", @@ -1340,12 +1476,13 @@ "Dark Modern+ | yuriyProgg": "dark-modern-yuriyprogg.yaml", "Dark Mono": "dark-mono.yaml", "Dark monokai": "dark-monokai.yaml", + "Dark Moonlight": "dark-moonlight.yaml", "Dark Nebula": "dark-nebula.yaml", "Dark Neon Theme(SM)": "dark-neon-theme-sm.yaml", "Dark Night": "dark-night.yaml", "Dark Ocean": "dark-ocean.yaml", "Dark Ocean Sands": "dark-ocean-sands.yaml", - "Dark Orange": "dark-orange.yaml", + "Dark Orange Flat": "dark-orange-flat.yaml", "Dark Owl Darker": "dark-owl-darker.yaml", "Dark Pastel": "dark-pastel.yaml", "Dark Pastel Pink": "dark-pastel-pink.yaml", @@ -1361,8 +1498,11 @@ "Dark Plus Oled Dim 95": "dark-plus-oled-dim-95.yaml", "Dark Purple": "dark-purple.yaml", "Dark Purple Flat": "dark-purple-flat.yaml", + "Dark Purpled Theme": "dark-purpled-theme.yaml", "Dark Rainbow": "dark-rainbow.yaml", + "Dark Reader (Dark)": "dark-reader-dark.yaml", "Dark Reader (Light)": "dark-reader-light.yaml", + "Dark Red Theme": "dark-red-theme.yaml", "Dark Red Theme VS-Code": "dark-red-theme-vs-code.yaml", "Dark Sand Theme": "dark-sand-theme.yaml", "Dark Sea Green": "dark-sea-green.yaml", @@ -1375,11 +1515,15 @@ "Dark theme v2": "dark-theme-v2.yaml", "Dark Vibes": "dark-vibes.yaml", "Dark Yellow Flat": "dark-yellow-flat.yaml", + "Dark_1": "dark-1.yaml", "Dark_Army": "dark-army.yaml", + "dark_mosqueta": "dark-mosqueta.yaml", "Dark_Readin_5": "dark-readin-5.yaml", "Dark-amethyst": "dark-amethyst.yaml", "dark-bqueiroz": "dark-bqueiroz.yaml", "dark-color-theme": "dark-color-theme.yaml", + "Dark-Crimson": "dark-crimson.yaml", + "Dark-Dev Theme": "dark-dev-theme.yaml", "dark-flow": "dark-flow.yaml", "Dark-Green": "dark-green.yaml", "dark-leocode-theme": "dark-leocode-theme.yaml", @@ -1388,11 +1532,11 @@ "dark-ohnagi-2020": "dark-ohnagi-2020.yaml", "dark-plus-syntax": "dark-plus-syntax.yaml", "dark-purple": "dark-purple.yaml", - "dark-rblx-rian": "dark-rblx-rian.yaml", - "dark-solarin-2": "dark-solarin-2.yaml", + "dark-solarin-2021": "dark-solarin-2021.yaml", "dark-theme-blue": "dark-theme-blue.yaml", "dark-theme-by-sanan": "dark-theme-by-sanan.yaml", "dark-theme-default-by-luisfelipe": "dark-theme-default-by-luisfelipe.yaml", + "dark-with-blue": "dark-with-blue.yaml", "Dark-Wolf": "dark-wolf.yaml", "dark.codely-theme": "dark-codely-theme.yaml", "Dark/Purple": "dark-purple.yaml", @@ -1406,12 +1550,15 @@ "DarkAlchemy-Basic": "darkalchemy-basic.yaml", "Darkalicious": "darkalicious.yaml", "DarkASP": "darkasp.yaml", + "DarkBlue Theme Official": "darkblue-theme-official.yaml", "darkblue-theme": "darkblue-theme.yaml", "darkbubble": "darkbubble.yaml", "DarkButter": "darkbutter.yaml", "darkdarkdark": "darkdarkdark.yaml", + "Darker + Monokai (Gold)": "darker-monokai-gold.yaml", "Darker Solarized": "darker-solarized.yaml", "Darker Than Black": "darker-than-black.yaml", + "Darker-B": "darker-b.yaml", "darkEST": "darkest.yaml", "DarkestSide theme": "darkestside-theme.yaml", "DarkFontenelesTheme": "darkfontenelestheme.yaml", @@ -1429,7 +1576,6 @@ "Darkly Theme": "darkly-theme.yaml", "darkness_of_my_soul": "darkness-of-my-soul.yaml", "Darkness-color-theme": "darkness-color-theme.yaml", - "darko": "darko.yaml", "darkoo": "darkoo.yaml", "darkOrange": "darkorange.yaml", "DarkPinkPro": "darkpinkpro.yaml", @@ -1445,6 +1591,7 @@ "Darkrrr - Green": "darkrrr-green.yaml", "Darkrrrr - Green": "darkrrrr-green.yaml", "Darkrrrrr - Green": "darkrrrrr-green.yaml", + "Darksian-Theme": "darksian-theme.yaml", "darkside": "darkside.yaml", "darkside-contrast": "darkside-contrast.yaml", "darkside-light": "darkside-light.yaml", @@ -1473,7 +1620,7 @@ "Darth Insidious": "darth-insidious.yaml", "Darth Invader": "darth-invader.yaml", "darthbuddy": "darthbuddy.yaml", - "DartPad Candy": "dartpad-candy.yaml", + "DartPad": "dartpad.yaml", "daru": "daru.yaml", "Darwin": "darwin.yaml", "DarXmon": "darxmon.yaml", @@ -1487,31 +1634,41 @@ "Day 'n' Nite": "day-n-nite.yaml", "Dayfox": "dayfox.yaml", "DaysOfWineAndRoses": "daysofwineandroses.yaml", + "dbt dark theme": "dbt-dark-theme.yaml", "dbt Fusion": "dbt-fusion.yaml", - "DBT Inspired Dark Theme": "dbt-inspired-dark-theme.yaml", - "DBT Inspired Light Theme": "dbt-inspired-light-theme.yaml", + "dbt light theme": "dbt-light-theme.yaml", + "DC Dark Theme": "dc-dark-theme.yaml", "DcDevThemeRed": "dcdevthemered.yaml", + "Dead Club City": "dead-club-city.yaml", "deadbeef": "deadbeef.yaml", + "Deadmura": "deadmura.yaml", "DeadPool": "deadpool.yaml", "Deaving-Theme": "deaving-theme.yaml", "Decayce": "decayce.yaml", "Deco": "deco.yaml", "Deeold": "deeold.yaml", "Deep Dark": "deep-dark.yaml", + "Deep Dark Blue": "deep-dark-blue.yaml", + "Deep Dark Purple": "deep-dark-purple.yaml", + "Deep Dark Teal": "deep-dark-teal.yaml", "Deep Indigo - Wisdom & Intuition": "deep-indigo-wisdom-intuition.yaml", "Deep ocean": "deep-ocean.yaml", "Deep Ocean": "deep-ocean.yaml", "Deep Purple": "deep-purple.yaml", - "Deep Purple - Fork": "deep-purple-fork.yaml", "Deep Purple - Fork - Fork": "deep-purple-fork-fork.yaml", "Deep Rainforest": "deep-rainforest.yaml", "Deep Space Dark": "deep-space-dark.yaml", + "Deep-Ocean": "deep-ocean.yaml", "deep-purple-theme": "deep-purple-theme.yaml", + "Deep-Sea-Navigator": "deep-sea-navigator.yaml", + "Deep-Teal": "deep-teal.yaml", + "Deep-Void": "deep-void.yaml", + "Deepslime": "deepslime.yaml", "DeepWave": "deepwave.yaml", - "Deepwoods Autumn Needles Italic": "deepwoods-autumn-needles-italic.yaml", - "Deepwoods Frosted Pines Italic": "deepwoods-frosted-pines-italic.yaml", - "Deepwoods High Canopy Italic": "deepwoods-high-canopy-italic.yaml", - "Deepwoods Spring Thaw Italic": "deepwoods-spring-thaw-italic.yaml", + "Deepwoods Autumn Needles": "deepwoods-autumn-needles.yaml", + "Deepwoods Frosted Pines": "deepwoods-frosted-pines.yaml", + "Deepwoods High Canopy": "deepwoods-high-canopy.yaml", + "Deepwoods Spring Thaw": "deepwoods-spring-thaw.yaml", "Default dimmed": "default-dimmed.yaml", "Default Enhanced": "default-enhanced.yaml", "default_theme": "default-theme.yaml", @@ -1522,11 +1679,16 @@ "Definition-theme2023": "definition-theme2023.yaml", "dejaypiii": "dejaypiii.yaml", "Dekirisu's Rust Theme": "dekirisu-s-rust-theme.yaml", + "Delowar Dark Pro": "delowar-dark-pro.yaml", + "Delowar Monokai Pro": "delowar-monokai-pro.yaml", + "Delowar Ocean Blue": "delowar-ocean-blue.yaml", + "Demon": "demon.yaml", "Demon Dark Pro": "demon-dark-pro.yaml", "Demon Light Pro": "demon-light-pro.yaml", "Demon Slayer Light Theme": "demon-slayer-light-theme.yaml", - "Denian Theme": "denian-theme.yaml", "Desert": "desert.yaml", + "Desert Tide": "desert-tide.yaml", + "Desert-Night": "desert-night.yaml", "DesignCourse Theme": "designcourse-theme.yaml", "designONEv2": "designonev2.yaml", "Dessert": "dessert.yaml", @@ -1535,38 +1697,46 @@ "Dev Theme Pro — 🌊 Ocean ✨ Void": "dev-theme-pro-ocean-void.yaml", "Dev Theme Pro — 🔮 Nebula ☁️ Mist": "dev-theme-pro-nebula-mist.yaml", "Dev Theme Pro — 🔮 Nebula ✨ Void": "dev-theme-pro-nebula-void.yaml", + "Dev-Code-Theme-color-theme": "dev-code-theme-color-theme.yaml", + "Dev-Dev-color-theme": "dev-dev-color-theme.yaml", "dev-theme": "dev-theme.yaml", "dev.tachgurbanov": "dev-tachgurbanov.yaml", "Dev+ Dark - Fork - Fork": "dev-dark-fork-fork.yaml", "DevCode+": "devcode.yaml", "DevDojo Seppuku": "devdojo-seppuku.yaml", "Develer Dark": "develer-dark.yaml", + "Developer Friendly Dark": "developer-friendly-dark.yaml", "Developers theme - Fork": "developers-theme-fork.yaml", + "DevHaven (Dracula)": "devhaven-dracula.yaml", + "DevJam Dark": "devjam-dark.yaml", "DevMedia Dark": "devmedia-dark.yaml", "DevMedia Dark Modern": "devmedia-dark-modern.yaml", "DevMedia Light": "devmedia-light.yaml", + "DevOption Light": "devoption-light.yaml", "DevR": "devr.yaml", + "DevR Dark Theme - Fork": "devr-dark-theme-fork.yaml", "DevSena (ultra dark)": "devsena-ultra-dark.yaml", "devTheme": "devtheme.yaml", "DevTheme": "devtheme.yaml", "DevX Dark": "devx-dark.yaml", "DEW-GREY": "dew-grey.yaml", + "DewArt": "dewart.yaml", "DFP-IDLE": "dfp-idle.yaml", "Dhamma Dark": "dhamma-dark.yaml", "Dhamma Light": "dhamma-light.yaml", - "dharam-gfx-amethyst": "dharam-gfx-amethyst.yaml", "dharam-gfx-anthracite": "dharam-gfx-anthracite.yaml", "dharam-gfx-arc-blueberry": "dharam-gfx-arc-blueberry.yaml", "dharam-gfx-arc-eggplant": "dharam-gfx-arc-eggplant.yaml", "dharam-gfx-arc-reversed": "dharam-gfx-arc-reversed.yaml", + "dharam-gfx-gold": "dharam-gfx-gold.yaml", "dharam-gfx-hacker-theme": "dharam-gfx-hacker-theme.yaml", "Dharam-gfx-Hight-Contrast": "dharam-gfx-hight-contrast.yaml", "dharam-gfx-webdevcody": "dharam-gfx-webdevcody.yaml", "Diabo Theme": "diabo-theme.yaml", "Diamond Theme": "diamond-theme.yaml", - "digitaliss Italic": "digitaliss-italic.yaml", - "digitaliss Light Italic": "digitaliss-light-italic.yaml", - "digitaliss Pastel Italic": "digitaliss-pastel-italic.yaml", + "digitaliss": "digitaliss.yaml", + "digitaliss Light": "digitaliss-light.yaml", + "digitaliss Pastel": "digitaliss-pastel.yaml", "Dimi Theme (Dark)": "dimi-theme-dark.yaml", "Dimi Theme (Darker)": "dimi-theme-darker.yaml", "Dimmed": "dimmed.yaml", @@ -1579,6 +1749,7 @@ "dislexic": "dislexic.yaml", "Div's Theme": "div-s-theme.yaml", "Dive Bar": "dive-bar.yaml", + "diVision Group Dark Theme": "division-group-dark-theme.yaml", "DJ's Purple": "dj-s-purple.yaml", "Djolof": "djolof.yaml", "DNA Helix": "dna-helix.yaml", @@ -1595,27 +1766,31 @@ "Dorkmode": "dorkmode.yaml", "Dot Developer (Dark)": "dot-developer-dark.yaml", "dotPortal": "dotportal.yaml", + "Dove": "dove.yaml", "downpour": "downpour.yaml", "downpour-contrast": "downpour-contrast.yaml", "downpour-light": "downpour-light.yaml", "Doxa Code Color Theme": "doxa-code-color-theme.yaml", "DoYouBleed": "doyoubleed.yaml", + "dqn": "dqn.yaml", "Dr. Jones": "dr-jones.yaml", "Draco-dark": "draco-dark.yaml", "Draconica": "draconica.yaml", + "dracula": "dracula.yaml", "Dracula": "dracula.yaml", "Dracula At Dusk": "dracula-at-dusk.yaml", "Dracula At Midnight": "dracula-at-midnight.yaml", "Dracula At Night": "dracula-at-night.yaml", - "Dracula Clean": "dracula-clean.yaml", + "Dracula Dark": "dracula-dark.yaml", "Dracula Falcon": "dracula-falcon.yaml", "Dracula High Contract": "dracula-high-contract.yaml", "Dracula Light": "dracula-light.yaml", "Dracula Midnight": "dracula-midnight.yaml", + "Dracula Pro": "dracula-pro.yaml", "Dracula Pro Black": "dracula-pro-black.yaml", + "Dracula-2022": "dracula-2022.yaml", "dracula-dimmed-color-theme": "dracula-dimmed-color-theme.yaml", "dracula-gray": "dracula-gray.yaml", - "dracula-soft": "dracula-soft.yaml", "Dracula.min Light Darker Theme": "dracula-min-light-darker-theme.yaml", "Dracula.min Light Theme": "dracula-min-light-theme.yaml", "Dracula.min White Darker Theme": "dracula-min-white-darker-theme.yaml", @@ -1626,6 +1801,7 @@ "Dragon": "dragon.yaml", "Dragonfly": "dragonfly.yaml", "Dragonight": "dragonight.yaml", + "Drake": "drake.yaml", "DrakenCord Blue - Fork": "drakencord-blue-fork.yaml", "Drakkar": "drakkar.yaml", "Draquinho": "draquinho.yaml", @@ -1640,6 +1816,7 @@ "Drukyul Light": "drukyul-light.yaml", "Drux Theme": "drux-theme.yaml", "DS Rose": "ds-rose.yaml", + "DSekon Theme": "dsekon-theme.yaml", "Duck in the Dream": "duck-in-the-dream.yaml", "Duck in the Lake": "duck-in-the-lake.yaml", "Duck Story": "duck-story.yaml", @@ -1685,23 +1862,27 @@ "DzSolarized Dark": "dzsolarized-dark.yaml", "Earl Grey": "earl-grey.yaml", "Early Riser": "early-riser.yaml", + "early-bird": "early-bird.yaml", "Earth Brown - Stability & Grounding": "earth-brown-stability-grounding.yaml", "Earth Collection": "earth-collection.yaml", "earthsong": "earthsong.yaml", "earthsong-contrast": "earthsong-contrast.yaml", "earthsong-light": "earthsong-light.yaml", + "Easter": "easter.yaml", "Easy Eye": "easy-eye.yaml", "Easy Light": "easy-light.yaml", "easy-eyes-color-theme": "easy-eyes-color-theme.yaml", "Ebizome": "ebizome.yaml", - "Ebullience": "ebullience.yaml", + "Ecatheme": "ecatheme.yaml", "Eclipsa": "eclipsa.yaml", "Eclipse Dark Darker": "eclipse-dark-darker.yaml", "Eclipse Dark Flat": "eclipse-dark-flat.yaml", + "Eclipse Dawn": "eclipse-dawn.yaml", "Eclipse Flare": "eclipse-flare.yaml", "Eclipse Optics": "eclipse-optics.yaml", "Eclipse Penumbra": "eclipse-penumbra.yaml", "Eclipse Umbra": "eclipse-umbra.yaml", + "ecogest-solarized-light": "ecogest-solarized-light.yaml", "Edge Dark": "edge-dark.yaml", "Edge Dark (Aura)": "edge-dark-aura.yaml", "Edge Dark (Neon)": "edge-dark-neon.yaml", @@ -1709,7 +1890,6 @@ "Edgerunner": "edgerunner.yaml", "Editor": "editor.yaml", "Edu4Dev - VSCode Theme Color": "edu4dev-vscode-theme-color.yaml", - "Eerie": "eerie.yaml", "eezoterial dark": "eezoterial-dark.yaml", "eezoterial light": "eezoterial-light.yaml", "Ef Arbutus": "ef-arbutus.yaml", @@ -1748,9 +1928,10 @@ "Ef Winter": "ef-winter.yaml", "EggsPlo1t": "eggsplo1t.yaml", "Eh's Website Theme": "eh-s-website-theme.yaml", - "Eidolon Alter": "eidolon-alter.yaml", + "Eidolon": "eidolon.yaml", "Eidolon Less Dark": "eidolon-less-dark.yaml", "eigen-color-theme": "eigen-color-theme.yaml", + "eiji-otieno-theme": "eiji-otieno-theme.yaml", "Ein": "ein.yaml", "eink": "eink.yaml", "Ekim": "ekim.yaml", @@ -1760,6 +1941,8 @@ "Eldritch Dark": "eldritch-dark.yaml", "Electric Blue": "electric-blue.yaml", "Electric Dreams": "electric-dreams.yaml", + "Electric Ice": "electric-ice.yaml", + "Electric Ice Darker": "electric-ice-darker.yaml", "electric labs": "electric-labs.yaml", "Electric Night": "electric-night.yaml", "Electric Sheep": "electric-sheep.yaml", @@ -1781,7 +1964,7 @@ "Elhassan Neon Magenta": "elhassan-neon-magenta.yaml", "Elhassan Neon Purple": "elhassan-neon-purple.yaml", "elixir-theme-no-italics": "elixir-theme-no-italics.yaml", - "elixir-theme-no-italics-less-dark-2": "elixir-theme-no-italics-less-dark-2.yaml", + "elixir-theme-with-italics-less-dark-2": "elixir-theme-with-italics-less-dark-2.yaml", "elly": "elly.yaml", "Elypink Dark": "elypink-dark.yaml", "Elypink Dark (Faded)": "elypink-dark-faded.yaml", @@ -1791,13 +1974,18 @@ "Elypink Light (Spring)": "elypink-light-spring.yaml", "Elypink Light (Summer)": "elypink-light-summer.yaml", "Ember": "ember.yaml", + "Ember Glow": "ember-glow.yaml", "Emberstone": "emberstone.yaml", "Emberstone-dark-theme": "emberstone-dark-theme.yaml", + "Emberwood": "emberwood.yaml", "Emerald": "emerald.yaml", "EMERALD - Fork": "emerald-fork.yaml", "Emerald Matrix": "emerald-matrix.yaml", "Emeralds": "emeralds.yaml", "Emi Theme": "emi-theme.yaml", + "emmess-Periglaciar": "emmess-periglaciar.yaml", + "empire-monokai-dark": "empire-monokai-dark.yaml", + "empire-monokai-light": "empire-monokai-light.yaml", "Enchant": "enchant.yaml", "Enchant - High Contrast": "enchant-high-contrast.yaml", "ENCOM": "encom.yaml", @@ -1806,16 +1994,18 @@ "EndeavourOS Dark High Contrast": "endeavouros-dark-high-contrast.yaml", "EndeavourOS Dark Night Shift": "endeavouros-dark-night-shift.yaml", "Endless Iris": "endless-iris.yaml", - "Energy Red Colorblind - Passion & Alertness": "energy-red-colorblind-passion-alertness.yaml", + "Energy Red - Passion & Alertness": "energy-red-passion-alertness.yaml", "Energy Red Light - Passion & Alertness": "energy-red-light-passion-alertness.yaml", + "energy-theme": "energy-theme.yaml", "Enhanced HubSpot Theme": "enhanced-hubspot-theme.yaml", - "Enhanced Material": "enhanced-material.yaml", "Enhanced Material - Batman": "enhanced-material-batman.yaml", "Enhanced Material - Fork": "enhanced-material-fork.yaml", + "Enigma": "enigma.yaml", "Enki": "enki.yaml", "Enki Night Owl": "enki-night-owl.yaml", - "Enki Rainbow Bro": "enki-rainbow-bro.yaml", + "Enki Rainbow": "enki-rainbow.yaml", "Enki Red": "enki-red.yaml", + "enlightened-ifission": "enlightened-ifission.yaml", "Enough": "enough.yaml", "Enova": "enova.yaml", "Entardecer": "entardecer.yaml", @@ -1833,8 +2023,10 @@ "ErrorDark": "errordark.yaml", "errrrrm": "errrrrm.yaml", "escook-theme-light": "escook-theme-light.yaml", + "Eskey Theme": "eskey-theme.yaml", "Espresso Dark": "espresso-dark.yaml", "Espresso Dark Theme": "espresso-dark-theme.yaml", + "Espresso-High": "espresso-high.yaml", "Etec PFA - Light": "etec-pfa-light.yaml", "Eternal Autumn": "eternal-autumn.yaml", "Eternal Summer": "eternal-summer.yaml", @@ -1843,6 +2035,7 @@ "ethereal": "ethereal.yaml", "Ethereum Dark Blue Theme": "ethereum-dark-blue-theme.yaml", "Ethereum Dark Grey Theme": "ethereum-dark-grey-theme.yaml", + "Eva Theme": "eva-theme.yaml", "EVA Unit-02 Theme (Enhanced Red & Grey Variation)": "eva-unit-02-theme-enhanced-red-grey-variation.yaml", "EVA-01": "eva-01.yaml", "EVA-01 Berserk Theme": "eva-01-berserk-theme.yaml", @@ -1850,13 +2043,20 @@ "evans-dark-theme": "evans-dark-theme.yaml", "Eve": "eve.yaml", "Evening Sky": "evening-sky.yaml", - "Everforest Dark": "everforest-dark.yaml", - "Everforest Light": "everforest-light.yaml", + "Everforest Night Hard": "everforest-night-hard.yaml", + "Everforest Night Light Hard": "everforest-night-light-hard.yaml", + "Everforest Night Light Medium": "everforest-night-light-medium.yaml", + "Everforest Night Light Soft": "everforest-night-light-soft.yaml", + "Everforest Night Medium": "everforest-night-medium.yaml", + "Everforest Night Soft": "everforest-night-soft.yaml", + "Everforest Pro Dark": "everforest-pro-dark.yaml", "Everforest Pro Dark Cozy": "everforest-pro-dark-cozy.yaml", "Everforest Pro Dark Vibrant": "everforest-pro-dark-vibrant.yaml", + "Everforest Pro Light": "everforest-pro-light.yaml", "Everforest Pro Light Cozy": "everforest-pro-light-cozy.yaml", "Everforest Pro Light Vibrant": "everforest-pro-light-vibrant.yaml", "Everforest Soft": "everforest-soft.yaml", + "everforest-light": "everforest-light.yaml", "Evergarden": "evergarden.yaml", "Evergarden Winter": "evergarden-winter.yaml", "Evergarden Winter Light": "evergarden-winter-light.yaml", @@ -1868,15 +2068,19 @@ "Evro Darker Flat": "evro-darker-flat.yaml", "ExalandDark": "exalanddark.yaml", "ExecLabs": "execlabs.yaml", - "Exias Theme (Colorful)": "exias-theme-colorful.yaml", + "Executive-Level": "executive-level.yaml", + "Exias Theme (Forest)": "exias-theme-forest.yaml", "Exias Theme (Town)": "exias-theme-town.yaml", "exile": "exile.yaml", + "EXOVOID Purple Better C++": "exovoid-purple-better-c.yaml", "exploit": "exploit.yaml", "Extreme Dark Theme": "extreme-dark-theme.yaml", "Eye Care Dark": "eye-care-dark.yaml", "Eye Care Light": "eye-care-light.yaml", + "Eye Care Owl Light": "eye-care-owl-light.yaml", "Eye Comfort Light": "eye-comfort-light.yaml", "eye-care": "eye-care.yaml", + "eye-care-owl": "eye-care-owl.yaml", "EyeBreaker": "eyebreaker.yaml", "EyeCooler": "eyecooler.yaml", "EyeGuard": "eyeguard.yaml", @@ -1895,11 +2099,11 @@ "Fabulous Las Vegas — After Dark": "fabulous-las-vegas-after-dark.yaml", "Fabulous Las Vegas — High Noon": "fabulous-las-vegas-high-noon.yaml", "FADY EHAB AMER DARK THEME": "fady-ehab-amer-dark-theme.yaml", + "Fae": "fae.yaml", "Faerie.Online": "faerie-online.yaml", "FakeDonald's": "fakedonald-s.yaml", "Falcon": "falcon.yaml", "FalconUI Theme": "falconui-theme.yaml", - "fallout-theme": "fallout-theme.yaml", "Famous Dev Light": "famous-dev-light.yaml", "Famous Dev Midnight": "famous-dev-midnight.yaml", "Fanuc Karel": "fanuc-karel.yaml", @@ -1925,6 +2129,8 @@ "Fiestas": "fiestas.yaml", "fifties": "fifties.yaml", "Fifty Shades of Grape": "fifty-shades-of-grape.yaml", + "Fig": "fig.yaml", + "filter-turbo-color-theme": "filter-turbo-color-theme.yaml", "filtered": "filtered.yaml", "FinalBossJeff": "finalbossjeff.yaml", "finn4ik666corp": "finn4ik666corp.yaml", @@ -1932,21 +2138,23 @@ "FireFly": "firefly.yaml", "Firefox Dark": "firefox-dark.yaml", "Firelight": "firelight.yaml", + "Fireside": "fireside.yaml", "firewatch": "firewatch.yaml", - "FlameLabs - Argo": "flamelabs-argo.yaml", "FlameLabs - Fire": "flamelabs-fire.yaml", "FlameLabs - Plasma": "flamelabs-plasma.yaml", - "Flamingo Galaxy": "flamingo-galaxy.yaml", - "Flashbang": "flashbang.yaml", + "Flamingo Nebula": "flamingo-nebula.yaml", + "Flash Green Dark": "flash-green-dark.yaml", "Flat Light": "flat-light.yaml", "Flat UI & One Dark": "flat-ui-one-dark.yaml", "Flat-Theme Gray": "flat-theme-gray.yaml", "Flat-Theme Light": "flat-theme-light.yaml", "flat-ui immersed": "flat-ui-immersed.yaml", "Flatcap": "flatcap.yaml", - "Flatland Monokai Improved - No Cursor Highlight": "flatland-monokai-improved-no-cursor-highlight.yaml", + "Flatland Monokai Improved": "flatland-monokai-improved.yaml", "FlatUIexp": "flatuiexp.yaml", "Flavia": "flavia.yaml", + "Fleetheme": "fleetheme.yaml", + "Fleeting Theme Modern": "fleeting-theme-modern.yaml", "Fleetish": "fleetish.yaml", "FleetOneDark": "fleetonedark.yaml", "Fleety": "fleety.yaml", @@ -1969,13 +2177,14 @@ "Fleury Theme": "fleury-theme.yaml", "Flex Appeal": "flex-appeal.yaml", "Flexoki": "flexoki.yaml", + "flippidippi light": "flippidippi-light.yaml", "Flora": "flora.yaml", "florence": "florence.yaml", "floriamaris": "floriamaris.yaml", "Florist Light": "florist-light.yaml", "florist-dark": "florist-dark.yaml", - "Flow Light": "flow-light.yaml", "flow-better-theme": "flow-better-theme.yaml", + "FluentBlue": "fluentblue.yaml", "Fluffy Dark Theme": "fluffy-dark-theme.yaml", "Fluffy Theme": "fluffy-theme.yaml", "Fluid Light Theme": "fluid-light-theme.yaml", @@ -2015,6 +2224,7 @@ "Forest Rose": "forest-rose.yaml", "Forest Violet": "forest-violet.yaml", "forest-color-theme": "forest-color-theme.yaml", + "Forest-Tech": "forest-tech.yaml", "forestfly Dark": "forestfly-dark.yaml", "forestfly Dark Hard": "forestfly-dark-hard.yaml", "forestfly Light Hard": "forestfly-light-hard.yaml", @@ -2029,16 +2239,16 @@ "Formosa Light - Night Green": "formosa-light-night-green.yaml", "forventone": "forventone.yaml", "FORXTU": "forxtu.yaml", - "FORXTU Light": "forxtu-light.yaml", "Foundyn Dev": "foundyn-dev.yaml", - "four-sages-color-theme": "four-sages-color-theme.yaml", "FoxDracula-color-theme": "foxdracula-color-theme.yaml", + "foxnett-nexus-theme": "foxnett-nexus-theme.yaml", "Frankenstein": "frankenstein.yaml", "frantic": "frantic.yaml", "frantic-contrast": "frantic-contrast.yaml", "frantic-light": "frantic-light.yaml", "French Rose": "french-rose.yaml", "Fresh Start": "fresh-start.yaml", + "fresh-green-color-theme": "fresh-green-color-theme.yaml", "freshcut": "freshcut.yaml", "freshcut-contrast": "freshcut-contrast.yaml", "freshcut-light": "freshcut-light.yaml", @@ -2048,16 +2258,24 @@ "friction-light": "friction-light.yaml", "Fridge": "fridge.yaml", "Friendly": "friendly.yaml", + "Frog Terminal": "frog-terminal.yaml", + "Front Matter CMS Theme": "front-matter-cms-theme.yaml", "Frontend Galaxy": "frontend-galaxy.yaml", "frontier": "frontier.yaml", "frontier-contrast": "frontier-contrast.yaml", "frontier-light": "frontier-light.yaml", + "frost-spark-dark": "frost-spark-dark.yaml", + "Frozen-Deep": "frozen-deep.yaml", + "frubilar": "frubilar.yaml", + "fruitbasket-dark": "fruitbasket-dark.yaml", + "fruitbasket-light": "fruitbasket-light.yaml", "Fruity Loops": "fruity-loops.yaml", "ftrblue.": "ftrblue.yaml", "fuck-all-these-vscode-custom-ugly-themes": "fuck-all-these-vscode-custom-ugly-themes.yaml", + "FullDark-vscode": "fulldark-vscode.yaml", "Funchosa Dark Theme": "funchosa-dark-theme.yaml", + "FunCode": "funcode.yaml", "functional": "functional.yaml", - "Funx Theme": "funx-theme.yaml", "Furnace": "furnace.yaml", "Furukawa Pop Theme": "furukawa-pop-theme.yaml", "Futuremotion Light": "futuremotion-light.yaml", @@ -2106,9 +2324,12 @@ "Gatito Nightly Red": "gatito-nightly-red.yaml", "Gatito Theme": "gatito-theme.yaml", "gatomontesDark2": "gatomontesdark2.yaml", + "Gauss-TheTheme": "gauss-thetheme.yaml", + "gckn": "gckn.yaml", "GDFunkyTheme": "gdfunkytheme.yaml", "gdscript35": "gdscript35.yaml", "GearTheme": "geartheme.yaml", + "Gekkou": "gekkou.yaml", "Gelato": "gelato.yaml", "GelGel": "gelgel.yaml", "Gems-Theme-Default": "gems-theme-default.yaml", @@ -2120,7 +2341,6 @@ "Genshin Impact - Citlali": "genshin-impact-citlali.yaml", "Genshin Impact - Citlali (Dark)": "genshin-impact-citlali-dark.yaml", "Genshin Impact - Columbina": "genshin-impact-columbina.yaml", - "Genshin Impact - Columbina (Dark)": "genshin-impact-columbina-dark.yaml", "Genshin Impact - Furina": "genshin-impact-furina.yaml", "Genshin Impact - Furina (Dark)": "genshin-impact-furina-dark.yaml", "Genshin Impact - Ganyu (Dark)": "genshin-impact-ganyu-dark.yaml", @@ -2199,8 +2419,6 @@ "Github Catppuccin Dark": "github-catppuccin-dark.yaml", "Github Catppuccin Dark Mix": "github-catppuccin-dark-mix.yaml", "Github Dank Dimmed": "github-dank-dimmed.yaml", - "GitHub Dark": "github-dark.yaml", - "GitHub Dark Colorblind": "github-dark-colorblind.yaml", "GitHub Dark Colorblind (Grayscale)": "github-dark-colorblind-grayscale.yaml", "GitHub Dark Default": "github-dark-default.yaml", "GitHub Dark Default (Grayscale)": "github-dark-default-grayscale.yaml", @@ -2212,15 +2430,15 @@ "GitHub Dark Palenight": "github-dark-palenight.yaml", "Github Dark Tritanopia": "github-dark-tritanopia.yaml", "GitHub Dark+": "github-dark.yaml", - "GitHub Light": "github-light.yaml", - "GitHub Light Colorblind": "github-light-colorblind.yaml", "GitHub Light Default": "github-light-default.yaml", - "GitHub Light High Contrast": "github-light-high-contrast.yaml", "GitHub Minimal": "github-minimal.yaml", - "Github Revamp Alt": "github-revamp-alt.yaml", + "GitHub Revamp": "github-revamp.yaml", + "github-colorblind": "github-colorblind.yaml", "github-contrast": "github-contrast.yaml", "github-contrast-theme": "github-contrast-theme.yaml", + "github-dark-theme": "github-dark-theme.yaml", "github-light": "github-light.yaml", + "github-light-theme": "github-light-theme.yaml", "Github-theme-by-humamafif": "github-theme-by-humamafif.yaml", "GitLab": "gitlab.yaml", "GitLab Dark": "gitlab-dark.yaml", @@ -2228,9 +2446,11 @@ "GitLab Light": "gitlab-light.yaml", "Giyu Tomioka": "giyu-tomioka.yaml", "Giza": "giza.yaml", + "Glacier-Blue": "glacier-blue.yaml", "glance": "glance.yaml", "glance-contrast": "glance-contrast.yaml", "glance-light": "glance-light.yaml", + "GlassOnion": "glassonion.yaml", "gleam-theme-minimal-dark": "gleam-theme-minimal-dark.yaml", "Glitchly Green": "glitchly-green.yaml", "Gloam": "gloam.yaml", @@ -2254,12 +2474,15 @@ "Goa - Beach Paradise": "goa-beach-paradise.yaml", "GOD Theme": "god-theme.yaml", "Godot 4": "godot-4.yaml", + "Gogh": "gogh.yaml", "Gojo Infinity Dark": "gojo-infinity-dark.yaml", "Goku Code - Dragon Ball Z Power (Eye-Safe)": "goku-code-dragon-ball-z-power-eye-safe.yaml", "gold": "gold.yaml", "Golden Dracula": "golden-dracula.yaml", + "Golden Dullahan": "golden-dullahan.yaml", "Golden Era": "golden-era.yaml", "Golden Eye": "golden-eye.yaml", + "Golden Rain": "golden-rain.yaml", "Golden Sky": "golden-sky.yaml", "Golden Sunset": "golden-sunset.yaml", "Golden Wave": "golden-wave.yaml", @@ -2276,7 +2499,6 @@ "Gooey Theme": "gooey-theme.yaml", "Gooey-Theme": "gooey-theme.yaml", "GoogleDark": "googledark.yaml", - "googlory-color-theme": "googlory-color-theme.yaml", "Goolou": "goolou.yaml", "goose": "goose.yaml", "goosebumps": "goosebumps.yaml", @@ -2285,6 +2507,15 @@ "Gorfius Peace Forest": "gorfius-peace-forest.yaml", "Gorg": "gorg.yaml", "Gosthy": "gosthy.yaml", + "GOT: Beyond the Wall": "got-beyond-the-wall.yaml", + "GOT: House Baratheon": "got-house-baratheon.yaml", + "GOT: House Greyjoy": "got-house-greyjoy.yaml", + "GOT: House Lannister": "got-house-lannister.yaml", + "GOT: House Martell": "got-house-martell.yaml", + "GOT: House Stark": "got-house-stark.yaml", + "GOT: House Targaryen": "got-house-targaryen.yaml", + "GOT: Night's Watch": "got-night-s-watch.yaml", + "GOT: The Iron Throne": "got-the-iron-throne.yaml", "gotham": "gotham.yaml", "Gotham": "gotham.yaml", "Gothic": "gothic.yaml", @@ -2296,6 +2527,7 @@ "Gothic Dark": "gothic-dark.yaml", "Gothic Emerald Crypt": "gothic-emerald-crypt.yaml", "Gothic Jester": "gothic-jester.yaml", + "Gothic Light": "gothic-light.yaml", "Gothic Midnight Rose": "gothic-midnight-rose.yaml", "Gothic Qaddy": "gothic-qaddy.yaml", "Gothic Raven": "gothic-raven.yaml", @@ -2310,17 +2542,17 @@ "GrandBlue": "grandblue.yaml", "GrandBlue - Pastel": "grandblue-pastel.yaml", "GrandBlue - Soft": "grandblue-soft.yaml", + "Grank": "grank.yaml", "Grank Blackout": "grank-blackout.yaml", - "Grank Italics": "grank-italics.yaml", "GrapeRed": "grapered.yaml", "grapevine": "grapevine.yaml", "GraphLinq Dark": "graphlinq-dark.yaml", "Grassrivers Sunset": "grassrivers-sunset.yaml", "gravel-pit": "gravel-pit.yaml", "Graveyard": "graveyard.yaml", + "Graveyard - Fork - Fork": "graveyard-fork-fork.yaml", "Gravity": "gravity.yaml", "gray": "gray.yaml", - "Gray": "gray.yaml", "Gray matter": "gray-matter.yaml", "Gray Pastel": "gray-pastel.yaml", "graygraygray": "graygraygray.yaml", @@ -2338,6 +2570,7 @@ "Greeeeen": "greeeeen.yaml", "green": "green.yaml", "Green Coffee": "green-coffee.yaml", + "Green Hacker": "green-hacker.yaml", "Green Kingdom": "green-kingdom.yaml", "Green Papper": "green-papper.yaml", "Green Tree": "green-tree.yaml", @@ -2359,9 +2592,9 @@ "Greeney.": "greeney.yaml", "Greeney.v2": "greeney-v2.yaml", "greeni": "greeni.yaml", + "Greenish": "greenish.yaml", "GreenMachine": "greenmachine.yaml", "GreenSpace": "greenspace.yaml", - "Greeny": "greeny.yaml", "Grewee-colorscheme": "grewee-colorscheme.yaml", "greygull": "greygull.yaml", "Greyout": "greyout.yaml", @@ -2369,7 +2602,6 @@ "Grimoire": "grimoire.yaml", "Grimoire Nox": "grimoire-nox.yaml", "Grove Street Noir": "grove-street-noir.yaml", - "Gru": "gru.yaml", "Gru Black": "gru-black.yaml", "Gruber Blue": "gruber-blue.yaml", "grumbra": "grumbra.yaml", @@ -2389,11 +2621,11 @@ "Gruvbox ish Dark Hard": "gruvbox-ish-dark-hard.yaml", "Gruvbox ish Dark Medium": "gruvbox-ish-dark-medium.yaml", "Gruvbox ish Dark Soft": "gruvbox-ish-dark-soft.yaml", - "Gruvbox Material Dark": "gruvbox-material-dark.yaml", + "Gruvbox Light Medium": "gruvbox-light-medium.yaml", + "Gruvbox Light Soft": "gruvbox-light-soft.yaml", "Gruvbox Material Dark - Claude Hybrid": "gruvbox-material-dark-claude-hybrid.yaml", "Gruvbox Material Flat Dark": "gruvbox-material-flat-dark.yaml", "Gruvbox Material Flat Light": "gruvbox-material-flat-light.yaml", - "Gruvbox Material Light": "gruvbox-material-light.yaml", "Gruvbox Material Mix": "gruvbox-material-mix.yaml", "Gruvbox Minor Dark Hard": "gruvbox-minor-dark-hard.yaml", "Gruvbox Minor Dark Medium": "gruvbox-minor-dark-medium.yaml", @@ -2402,9 +2634,10 @@ "Gruvbox Minor Light Medium": "gruvbox-minor-light-medium.yaml", "Gruvbox Minor Light Soft": "gruvbox-minor-light-soft.yaml", "Gruvchad": "gruvchad.yaml", - "GruvDark Mono": "gruvdark-mono.yaml", + "GruvDark": "gruvdark.yaml", "GruvDark Tokyo": "gruvdark-tokyo.yaml", "GruvDark-GBM": "gruvdark-gbm.yaml", + "Gruvvy Watermelon": "gruvvy-watermelon.yaml", "Guezwhoz": "guezwhoz.yaml", "GuiSaldanha Light": "guisaldanha-light.yaml", "Gujarat - Vibrant Culture": "gujarat-vibrant-culture.yaml", @@ -2414,6 +2647,7 @@ "Gunmetal Code Pro": "gunmetal-code-pro.yaml", "GustavoGLins": "gustavoglins.yaml", "Gusuku Limestone": "gusuku-limestone.yaml", + "Guttenbergovitz": "guttenbergovitz.yaml", "Gvalley": "gvalley.yaml", "Gyomei Himejima": "gyomei-himejima.yaml", "H1 (Dark) - Fork": "h1-dark-fork.yaml", @@ -2423,6 +2657,7 @@ "habamix": "habamix.yaml", "Hachiko": "hachiko.yaml", "Hack Electron": "hack-electron.yaml", + "Hack Minor": "hack-minor.yaml", "Hack-And-Lima🍋": "hack-and-lima.yaml", "hackage-theme": "hackage-theme.yaml", "Hacker": "hacker.yaml", @@ -2442,14 +2677,18 @@ "Hackpot Poisoned Garden": "hackpot-poisoned-garden.yaml", "Hadar": "hadar.yaml", "haidark two": "haidark-two.yaml", + "halcyon": "halcyon.yaml", "Halcyon": "halcyon.yaml", "half gray": "half-gray.yaml", "halflife": "halflife.yaml", "halflife-contrast": "halflife-contrast.yaml", "halflife-light": "halflife-light.yaml", "Halloween": "halloween.yaml", + "Halloween Theme": "halloween-theme.yaml", "Hallucination": "hallucination.yaml", "HamidTheDev Professional": "hamidthedev-professional.yaml", + "Hammerhead": "hammerhead.yaml", + "hams-uno": "hams-uno.yaml", "Han": "han.yaml", "Happy Dark": "happy-dark.yaml", "Happy Heart 1 - Dark Classic": "happy-heart-1-dark-classic.yaml", @@ -2470,17 +2709,19 @@ "Happy Heart 8 - Bright Light": "happy-heart-8-bright-light.yaml", "Happy Heart 9 - Smooth Light": "happy-heart-9-smooth-light.yaml", "Hapsida": "hapsida.yaml", + "Hard Hacker": "hard-hacker.yaml", "Hard Hacker Darker": "hard-hacker-darker.yaml", - "Hard Hacker High Contrast": "hard-hacker-high-contrast.yaml", - "Hard Hacker Light High Contrast": "hard-hacker-light-high-contrast.yaml", + "Hard Hacker Light": "hard-hacker-light.yaml", "HardDark": "harddark.yaml", "Hardwired - Arctic Blue": "hardwired-arctic-blue.yaml", "Hardwired - Electric Lime": "hardwired-electric-lime.yaml", "Hardwired - Purple": "hardwired-purple.yaml", + "Hare Omagari": "hare-omagari.yaml", "Harley Quinn Theme": "harley-quinn-theme.yaml", "Harmonized dark": "harmonized-dark.yaml", "Harmonized light": "harmonized-light.yaml", "Harmonized light (hc)": "harmonized-light-hc.yaml", + "Harmony Pulse": "harmony-pulse.yaml", "Harriet": "harriet.yaml", "Harrys": "harrys.yaml", "HarshadDevPro": "harshaddevpro.yaml", @@ -2490,6 +2731,8 @@ "hawaii-contrast": "hawaii-contrast.yaml", "hawaii-light": "hawaii-light.yaml", "hc-zenburn": "hc-zenburn.yaml", + "Hearth Dark": "hearth-dark.yaml", + "Hearth Light": "hearth-light.yaml", "Hecker Boy": "hecker-boy.yaml", "Held": "held.yaml", "Helion": "helion.yaml", @@ -2498,13 +2741,13 @@ "Helix+": "helix.yaml", "Hell Pine": "hell-pine.yaml", "Hellfire": "hellfire.yaml", - "hello": "hello.yaml", "Hendrikkels Dark": "hendrikkels-dark.yaml", "Hendrikkels Light": "hendrikkels-light.yaml", "Heptapod": "heptapod.yaml", + "Herakles": "herakles.yaml", "Herbal": "herbal.yaml", "hereafter.": "hereafter.yaml", - "Hero Dark Inverse": "hero-dark-inverse.yaml", + "Hero Dark": "hero-dark.yaml", "heroku": "heroku.yaml", "heroku-contrast": "heroku-contrast.yaml", "heroku-light": "heroku-light.yaml", @@ -2532,12 +2775,14 @@ "High Contrast September Light Theme": "high-contrast-september-light-theme.yaml", "High Contrast Sunset": "high-contrast-sunset.yaml", "High Tea": "high-tea.yaml", + "High-Alert-Crimson": "high-alert-crimson.yaml", "Highflyer": "highflyer.yaml", "HighGruv": "highgruv.yaml", "Highland Winter": "highland-winter.yaml", "Himalaya Dark": "himalaya-dark.yaml", "hinode": "hinode.yaml", "Hipster Next": "hipster-next.yaml", + "Hirakata": "hirakata.yaml", "hive": "hive.yaml", "hive-contrast": "hive-contrast.yaml", "hive-light": "hive-light.yaml", @@ -2545,6 +2790,8 @@ "hoccacas": "hoccacas.yaml", "hocsinhnghiemtuc": "hocsinhnghiemtuc.yaml", "Holdesher Dark": "holdesher-dark.yaml", + "Holo's Wisdom - Spice and Wolf Theme": "holo-s-wisdom-spice-and-wolf-theme.yaml", + "Hologram Night": "hologram-night.yaml", "Holy Bible": "holy-bible.yaml", "Homebrew": "homebrew.yaml", "HomeCooked Theme": "homecooked-theme.yaml", @@ -2567,6 +2814,7 @@ "Honkai: Star Rail - Robin (Light Soft)": "honkai-star-rail-robin-light-soft.yaml", "Honkai: Star Rail - Ruan Mei": "honkai-star-rail-ruan-mei.yaml", "Honkai: Star Rail - Ruan Mei (Dark)": "honkai-star-rail-ruan-mei-dark.yaml", + "Horimura": "horimura.yaml", "horizon": "horizon.yaml", "Horizon Extended": "horizon-extended.yaml", "Horizon Laker Theme": "horizon-laker-theme.yaml", @@ -2578,15 +2826,16 @@ "Hot Stuff": "hot-stuff.yaml", "hot-pink-theme": "hot-pink-theme.yaml", "HotRice": "hotrice.yaml", - "House of the Dragon: Team Blacks": "house-of-the-dragon-team-blacks.yaml", + "House of the Dragon: Team Greens": "house-of-the-dragon-team-greens.yaml", "Houston": "houston.yaml", + "HQ_PINK+BLUE": "hq-pink-blue.yaml", "HTVODP": "htvodp.yaml", "Huacat Pink Dark": "huacat-pink-dark.yaml", "hub": "hub.yaml", - "hub-contrast": "hub-contrast.yaml", "hub-light": "hub-light.yaml", "hugodvlp": "hugodvlp.yaml", "Hulcu": "hulcu.yaml", + "Hulky": "hulky.yaml", "Human Dark": "human-dark.yaml", "Human High Contrast": "human-high-contrast.yaml", "Human Light": "human-light.yaml", @@ -2604,7 +2853,11 @@ "hydr-theme": "hydr-theme.yaml", "Hydra night": "hydra-night.yaml", "Hydra Storm": "hydra-storm.yaml", - "hyezo-dark": "hyezo-dark.yaml", + "Hydro": "hydro.yaml", + "Hydro Sea": "hydro-sea.yaml", + "Hydro Soft": "hydro-soft.yaml", + "Hydrokarbon": "hydrokarbon.yaml", + "Hygge Kyst Dark": "hygge-kyst-dark.yaml", "hyle-color-theme": "hyle-color-theme.yaml", "hyle-night-night-color-theme": "hyle-night-night-color-theme.yaml", "Hyped Down - Fork": "hyped-down-fork.yaml", @@ -2621,15 +2874,18 @@ "hyrule-contrast": "hyrule-contrast.yaml", "hyrule-light": "hyrule-light.yaml", "I don't know": "i-don-t-know.yaml", + "i-light-color-theme": "i-light-color-theme.yaml", + "i-night-color-theme": "i-night-color-theme.yaml", "i-solarised-color-theme": "i-solarised-color-theme.yaml", - "i3 - Aurora X - Custom": "i3-aurora-x-custom.yaml", - "i3 - Aurora X - Custom II": "i3-aurora-x-custom-ii.yaml", - "i3 - Aurora X - Custom III": "i3-aurora-x-custom-iii.yaml", + "i3 - Dark+ - Custom II": "i3-dark-custom-ii.yaml", + "i3 - Dark+ - Github Dark": "i3-dark-github-dark.yaml", + "i3 - Panda - Custom": "i3-panda-custom.yaml", + "i3 - Panda - Custom III": "i3-panda-custom-iii.yaml", "ian": "ian.yaml", - "IBM Carbon Gray 10 (alternative code highlighting)": "ibm-carbon-gray-10-alternative-code-highlighting.yaml", - "IBM Carbon Gray 100 (alternative code highlighting)": "ibm-carbon-gray-100-alternative-code-highlighting.yaml", - "IBM Carbon Gray 90 (alternative code highlighting)": "ibm-carbon-gray-90-alternative-code-highlighting.yaml", - "IBM Carbon White (alternative code highlighting)": "ibm-carbon-white-alternative-code-highlighting.yaml", + "IBM Carbon Gray 10": "ibm-carbon-gray-10.yaml", + "IBM Carbon Gray 100": "ibm-carbon-gray-100.yaml", + "IBM Carbon Gray 90": "ibm-carbon-gray-90.yaml", + "IBM Carbon White": "ibm-carbon-white.yaml", "Icaria": "icaria.yaml", "icatTheme": "icattheme.yaml", "ICC Light Theme": "icc-light-theme.yaml", @@ -2668,9 +2924,13 @@ "iColorLightRed": "icolorlightred.yaml", "iColorLightVolcano": "icolorlightvolcano.yaml", "iColorLightYellow": "icolorlightyellow.yaml", + "Icon Group Dark": "icon-group-dark.yaml", + "Icon Group Light": "icon-group-light.yaml", "idea islands dark ++": "idea-islands-dark.yaml", "Iditarod": "iditarod.yaml", "idk": "idk.yaml", + "Idle Dark": "idle-dark.yaml", + "Idle Light": "idle-light.yaml", "Idx Theme Dark": "idx-theme-dark.yaml", "idx-xcode-dark-improved": "idx-xcode-dark-improved.yaml", "Igniter Theme": "igniter-theme.yaml", @@ -2680,23 +2940,28 @@ "IKKI-VSCode-Dark-Theme": "ikki-vscode-dark-theme.yaml", "IKKI-VSCode-Light-Theme": "ikki-vscode-light-theme.yaml", "Ikshana": "ikshana.yaml", + "Illuminate": "illuminate.yaml", "Illumination-Emerald": "illumination-emerald.yaml", - "Illusion Refined": "illusion-refined.yaml", + "Illusion": "illusion.yaml", "iLoveAgents - Azure AI Foundry (Dark)": "iloveagents-azure-ai-foundry-dark.yaml", "iLoveAgents - Azure AI Foundry (Light)": "iloveagents-azure-ai-foundry-light.yaml", "iLoveAgents Dark": "iloveagents-dark.yaml", "iLoveAgents Light": "iloveagents-light.yaml", + "Ilyat Poimandres": "ilyat-poimandres.yaml", "Imba Dark": "imba-dark.yaml", "imexoodeex": "imexoodeex.yaml", "In Bed by 7pm": "in-bed-by-7pm.yaml", "In Darkest Night": "in-darkest-night.yaml", "in his earthy elements": "in-his-earthy-elements.yaml", + "In Rainbows Dark": "in-rainbows-dark.yaml", "In The Fog Dark": "in-the-fog-dark.yaml", "index": "index.yaml", + "Indie Dev": "indie-dev.yaml", "Indielayer": "indielayer.yaml", + "indigo": "indigo.yaml", "Indigo and Amaranth": "indigo-and-amaranth.yaml", "Indigo Ice": "indigo-ice.yaml", - "IndustrialComplex": "industrialcomplex.yaml", + "Indique Theme": "indique-theme.yaml", "Industry": "industry.yaml", "Infatuation": "infatuation.yaml", "inferius": "inferius.yaml", @@ -2728,7 +2993,7 @@ "intellij-dark-color-theme": "intellij-dark-color-theme.yaml", "intellij-idea-islands-dark": "intellij-idea-islands-dark.yaml", "intellij-idea-islands-light": "intellij-idea-islands-light.yaml", - "intellij-light-classic-color-theme": "intellij-light-classic-color-theme.yaml", + "intellij-light-color-theme": "intellij-light-color-theme.yaml", "IntelliYay-color-theme": "intelliyay-color-theme.yaml", "Intergalactic": "intergalactic.yaml", "Interstellar": "interstellar.yaml", @@ -2746,7 +3011,9 @@ "Ironman Theme Dark": "ironman-theme-dark.yaml", "Ironman Theme Light": "ironman-theme-light.yaml", "IrOny": "irony.yaml", + "irrus-Float": "irrus-float.yaml", "is-them-tears-bro": "is-them-tears-bro.yaml", + "isatoru": "isatoru.yaml", "Islands Dark": "islands-dark.yaml", "Islands Light": "islands-light.yaml", "isotope": "isotope.yaml", @@ -2786,6 +3053,7 @@ "jaytheme": "jaytheme.yaml", "Jazari Dark": "jazari-dark.yaml", "Jazari Light": "jazari-light.yaml", + "jbpc": "jbpc.yaml", "JCardenas": "jcardenas.yaml", "jcsoftiaBlack": "jcsoftiablack.yaml", "jcsoftiaDark": "jcsoftiadark.yaml", @@ -2799,9 +3067,11 @@ "jelly": "jelly.yaml", "jelly-theme": "jelly-theme.yaml", "Jellybeans": "jellybeans.yaml", + "Jellybeans Extended": "jellybeans-extended.yaml", "jellybeans-theme": "jellybeans-theme.yaml", "Jellybeans+": "jellybeans.yaml", "Jellyfish": "jellyfish.yaml", + "JellyFish": "jellyfish.yaml", "Jeng Light": "jeng-light.yaml", "Jetbrain-Fleet color": "jetbrain-fleet-color.yaml", "JetBrains Dark Theme": "jetbrains-dark-theme.yaml", @@ -2809,7 +3079,7 @@ "JetBrains IDE Dark Theme": "jetbrains-ide-dark-theme.yaml", "JetCode": "jetcode.yaml", "JetDark": "jetdark.yaml", - "JetVerse Dev Dark": "jetverse-dev-dark.yaml", + "JetVibe Darcula": "jetvibe-darcula.yaml", "jewel": "jewel.yaml", "jewel-contrast": "jewel-contrast.yaml", "jewel-light": "jewel-light.yaml", @@ -2824,6 +3094,8 @@ "jk": "jk.yaml", "jker Purple Wave": "jker-purple-wave.yaml", "jngl": "jngl.yaml", + "João Campos Theme": "jo-o-campos-theme.yaml", + "Jocelyn": "jocelyn.yaml", "jojobii's Colors": "jojobii-s-colors.yaml", "JokeJoke": "jokejoke.yaml", "JoKenKai": "jokenkai.yaml", @@ -2838,7 +3110,7 @@ "Josi": "josi.yaml", "jott4c-dark": "jott4c-dark.yaml", "JoyBoy": "joyboy.yaml", - "Joyful - Fork": "joyful-fork.yaml", + "Joyful - Fork - Fork": "joyful-fork-fork.yaml", "JS Dark Theme": "js-dark-theme.yaml", "jtVSCode Dark": "jtvscode-dark.yaml", "jtVSCode Light": "jtvscode-light.yaml", @@ -2846,6 +3118,7 @@ "juicy": "juicy.yaml", "juicy-contrast": "juicy-contrast.yaml", "juicy-light": "juicy-light.yaml", + "julia-monokai-classic-color-theme": "julia-monokai-classic-color-theme.yaml", "July Summer Vibes Dark Theme": "july-summer-vibes-dark-theme.yaml", "jummidark": "jummidark.yaml", "jummilight": "jummilight.yaml", @@ -2861,6 +3134,7 @@ "Kabukichō": "kabukich.yaml", "Kactus Dream Theme": "kactus-dream-theme.yaml", "Kactus Dream Theme Dark": "kactus-dream-theme-dark.yaml", + "kadaxi colors": "kadaxi-colors.yaml", "kadoku": "kadoku.yaml", "Kai": "kai.yaml", "kai.garbage": "kai-garbage.yaml", @@ -2878,7 +3152,6 @@ "Kalmia": "kalmia.yaml", "Kalmia High Contrast": "kalmia-high-contrast.yaml", "kami theme": "kami-theme.yaml", - "Kanagawa": "kanagawa.yaml", "Kanagawa Dragon": "kanagawa-dragon.yaml", "Kanagawa Light": "kanagawa-light.yaml", "Kanagawa Lotus": "kanagawa-lotus.yaml", @@ -2893,7 +3166,7 @@ "Kanso Pearl": "kanso-pearl.yaml", "Kaolin Light Theme": "kaolin-light-theme.yaml", "Kaolin Light Theme (alt)": "kaolin-light-theme-alt.yaml", - "Kaplan Dark Muted": "kaplan-dark-muted.yaml", + "Kaplan Dark": "kaplan-dark.yaml", "Kara": "kara.yaml", "Karam Theme Darker": "karam-theme-darker.yaml", "Karma": "karma.yaml", @@ -2901,7 +3174,7 @@ "KAROU NOIR": "karou-noir.yaml", "KAROU Theme": "karou-theme.yaml", "Karrot Theme Classic": "karrot-theme-classic.yaml", - "Karry Color Theme": "karry-color-theme.yaml", + "Karry Color Golang": "karry-color-golang.yaml", "Kary Pro Colors - Dark": "kary-pro-colors-dark.yaml", "Kary Pro Colors - Light": "kary-pro-colors-light.yaml", "Kashi Night": "kashi-night.yaml", @@ -2914,6 +3187,7 @@ "kayto": "kayto.yaml", "Kaze": "kaze.yaml", "kblue-minimal": "kblue-minimal.yaml", + "KDshade-darkBG": "kdshade-darkbg.yaml", "keen": "keen.yaml", "keen-contrast": "keen-contrast.yaml", "keen-light": "keen-light.yaml", @@ -2921,16 +3195,21 @@ "Kerala - God's Own Country": "kerala-god-s-own-country.yaml", "Kerama Deep": "kerama-deep.yaml", "Kermit - Fork": "kermit-fork.yaml", - "Keval's Official || Electric-Lime": "keval-s-official-electric-lime.yaml", + "Kesteren": "kesteren.yaml", + "KH Gold (Subtle)": "kh-gold-subtle.yaml", + "KH Silver (Subtle)": "kh-silver-subtle.yaml", + "KhoaNeoStyle": "khoaneostyle.yaml", "Kiiro Dark": "kiiro-dark.yaml", "Killer Dark": "killer-dark.yaml", "Kindfeeling": "kindfeeling.yaml", "kingfisher-fishing": "kingfisher-fishing.yaml", + "KINN": "kinn.yaml", "kinnitchi Neon Dark Modern": "kinnitchi-neon-dark-modern.yaml", "Kintsugi Dark": "kintsugi-dark.yaml", "Kintsugi Light": "kintsugi-light.yaml", "Kiona": "kiona.yaml", "Kira-Theme": "kira-theme.yaml", + "Kiranord": "kiranord.yaml", "Kismat Default Colors": "kismat-default-colors.yaml", "Kiss": "kiss.yaml", "Kite Dark": "kite-dark.yaml", @@ -2944,9 +3223,11 @@ "kiwi-contrast": "kiwi-contrast.yaml", "kiwi-light": "kiwi-light.yaml", "Kiwisoup - Fork": "kiwisoup-fork.yaml", + "KJS-Officials-Electric-Lime": "kjs-officials-electric-lime.yaml", "Knapsack": "knapsack.yaml", "KnFocus Alt": "knfocus-alt.yaml", "KnFocus Base": "knfocus-base.yaml", + "knight-vscode": "knight-vscode.yaml", "Knoctal Dark": "knoctal-dark.yaml", "Knoctal Darker": "knoctal-darker.yaml", "knowit-dark": "knowit-dark.yaml", @@ -2966,16 +3247,18 @@ "kokubo": "kokubo.yaml", "Kolada": "kolada.yaml", "Komorebi": "komorebi.yaml", - "Kong Light Extended": "kong-light-extended.yaml", + "Kong Light": "kong-light.yaml", "Konng": "konng.yaml", "Kopo-Theme": "kopo-theme.yaml", "korbit": "korbit.yaml", "Korean Dancheong Dark": "korean-dancheong-dark.yaml", "KORSR theme": "korsr-theme.yaml", + "Kotama Otose": "kotama-otose.yaml", "Kozy": "kozy.yaml", "Kozy Darker": "kozy-darker.yaml", "kPurple": "kpurple.yaml", "Kradeno": "kradeno.yaml", + "Krb_Blue": "krb-blue.yaml", "Krb_Violet": "krb-violet.yaml", "Kripton": "kripton.yaml", "Krishna - Default Dark Theme": "krishna-default-dark-theme.yaml", @@ -2991,32 +3274,33 @@ "kurdor-light": "kurdor-light.yaml", "Kuro": "kuro.yaml", "kuro_theme-color-theme": "kuro-theme-color-theme.yaml", + "kurodake-green": "kurodake-green.yaml", "Kuroir Dark 01 Crimson": "kuroir-dark-01-crimson.yaml", "Kuroir Dark 02 Vermilion": "kuroir-dark-02-vermilion.yaml", + "Kuroir Dark 03 Amber": "kuroir-dark-03-amber.yaml", "Kuroir Dark 04 Goldenrod": "kuroir-dark-04-goldenrod.yaml", - "Kuroir Dark 05 Citrine": "kuroir-dark-05-citrine.yaml", "Kuroir Dark 06 Chartreuse": "kuroir-dark-06-chartreuse.yaml", "Kuroir Dark 07 Fern": "kuroir-dark-07-fern.yaml", "Kuroir Dark 08 Emerald": "kuroir-dark-08-emerald.yaml", "Kuroir Dark 09 Jade": "kuroir-dark-09-jade.yaml", - "Kuroir Dark 13 Turquoise": "kuroir-dark-13-turquoise.yaml", - "Kuroir Dark 17 Sapphire": "kuroir-dark-17-sapphire.yaml", + "Kuroir Dark 11 Aqua": "kuroir-dark-11-aqua.yaml", + "Kuroir Dark 14 Cerulean": "kuroir-dark-14-cerulean.yaml", + "Kuroir Dark 15 Sky": "kuroir-dark-15-sky.yaml", "Kuroir Dark 18 Indigo": "kuroir-dark-18-indigo.yaml", - "Kuroir Dark 19 Violet": "kuroir-dark-19-violet.yaml", "Kuroir Dark 20 Amethyst": "kuroir-dark-20-amethyst.yaml", "Kuroir Dark 21 Magenta": "kuroir-dark-21-magenta.yaml", "Kuroir Dark 22 Fuchsia": "kuroir-dark-22-fuchsia.yaml", "Kuroir Dark 23 Rose": "kuroir-dark-23-rose.yaml", "Kuroir Dark 24 Coral": "kuroir-dark-24-coral.yaml", - "Kuroir Light 02 Vermilion": "kuroir-light-02-vermilion.yaml", - "Kuroir Light 04 Goldenrod": "kuroir-light-04-goldenrod.yaml", + "Kuroir Light 03 Amber": "kuroir-light-03-amber.yaml", "Kuroir Light 07 Fern": "kuroir-light-07-fern.yaml", "Kuroir Light 09 Jade": "kuroir-light-09-jade.yaml", - "Kuroir Light 13 Turquoise": "kuroir-light-13-turquoise.yaml", + "Kuroir Light 12 Teal": "kuroir-light-12-teal.yaml", "Kuroir Light 15 Sky": "kuroir-light-15-sky.yaml", "Kuroir Light 18 Indigo": "kuroir-light-18-indigo.yaml", "Kuroir Light 19 Violet": "kuroir-light-19-violet.yaml", "Kuroir Light 23 Rose": "kuroir-light-23-rose.yaml", + "Kuroir Light 24 Coral": "kuroir-light-24-coral.yaml", "Kyanite": "kyanite.yaml", "Kybern": "kybern.yaml", "Kybik": "kybik.yaml", @@ -3024,13 +3308,14 @@ "Kyngo's Theme": "kyngo-s-theme.yaml", "Kyojuro Rengoku": "kyojuro-rengoku.yaml", "kyorazo_dark_theme": "kyorazo-dark-theme.yaml", + "Lackluster": "lackluster.yaml", "Lackluster Dark": "lackluster-dark.yaml", - "Lackluster Night": "lackluster-night.yaml", "LadyLuck-Color-Theme": "ladyluck-color-theme.yaml", "lanten-color-theme-dark": "lanten-color-theme-dark.yaml", - "Lapis (stealth version)": "lapis-stealth-version.yaml", - "Lapis Ruby Dark (stealth version)": "lapis-ruby-dark-stealth-version.yaml", - "Lapis Ruby Light": "lapis-ruby-light.yaml", + "Lapis": "lapis.yaml", + "Lapis Dark": "lapis-dark.yaml", + "Lapis Light": "lapis-light.yaml", + "Lapres99": "lapres99.yaml", "laracasts": "laracasts.yaml", "laracasts-contrast": "laracasts-contrast.yaml", "laracasts-light": "laracasts-light.yaml", @@ -3039,6 +3324,9 @@ "Laravel": "laravel.yaml", "laravel-contrast": "laravel-contrast.yaml", "laravel-light": "laravel-light.yaml", + "Lascavo Classic": "lascavo-classic.yaml", + "Lascavo Classic contrast": "lascavo-classic-contrast.yaml", + "Lascavo Cold": "lascavo-cold.yaml", "LaserKai": "laserkai.yaml", "Late Night": "late-night.yaml", "Lauds": "lauds.yaml", @@ -3047,7 +3335,6 @@ "lavender": "lavender.yaml", "Lavender Dark Theme": "lavender-dark-theme.yaml", "Lavender Light theme": "lavender-light-theme.yaml", - "lavender-contrast": "lavender-contrast.yaml", "lavender-light": "lavender-light.yaml", "Lazuli": "lazuli.yaml", "lazy yellow lemon": "lazy-yellow-lemon.yaml", @@ -3059,22 +3346,20 @@ "lc": "lc.yaml", "LCARS": "lcars.yaml", "Le moderne": "le-moderne.yaml", + "Leaf Black": "leaf-black.yaml", "Leaf Dark": "leaf-dark.yaml", "Leaf Dark Soft": "leaf-dark-soft.yaml", "Lean-Coders Dark": "lean-coders-dark.yaml", - "Learn with Sumit - Peace of the eye - Dracula version": "learn-with-sumit-peace-of-the-eye-dracula-version.yaml", - "Learn with Sumit - Professional Theme": "learn-with-sumit-professional-theme.yaml", - "Learn with Sumit - Simple as light": "learn-with-sumit-simple-as-light.yaml", - "Learn with Sumit - Vintage": "learn-with-sumit-vintage.yaml", - "Learn with Sumit Blue Velvet Theme": "learn-with-sumit-blue-velvet-theme.yaml", - "Learn with Sumit Official Theme": "learn-with-sumit-official-theme.yaml", "Learn with Sumit Theme": "learn-with-sumit-theme.yaml", + "Lebannen Theme": "lebannen-theme.yaml", + "LeehXD": "leehxd.yaml", "Leftish": "leftish.yaml", "legacy": "legacy.yaml", "legacy-contrast": "legacy-contrast.yaml", "legacy-light": "legacy-light.yaml", "legacy-solarized-dark-color-theme": "legacy-solarized-dark-color-theme.yaml", "legacy-solarized-light-color-theme": "legacy-solarized-light-color-theme.yaml", + "Legendary attack of blue": "legendary-attack-of-blue.yaml", "Legendary Dark": "legendary-dark.yaml", "Legends Theme Night": "legends-theme-night.yaml", "Legends Theme Night (FYMHR Special)": "legends-theme-night-fymhr-special.yaml", @@ -3095,6 +3380,12 @@ "lichen": "lichen.yaml", "lichen-contrast": "lichen-contrast.yaml", "lichen-light": "lichen-light.yaml", + "LiddleLabTheme": "liddlelabtheme.yaml", + "Liftoff": "liftoff.yaml", + "LiG Dark": "lig-dark.yaml", + "LiG Dark Soft": "lig-dark-soft.yaml", + "LiG Light": "lig-light.yaml", + "LiG Light Soft": "lig-light-soft.yaml", "light": "light.yaml", "Light": "light.yaml", "Light code with bars": "light-code-with-bars.yaml", @@ -3102,11 +3393,11 @@ "Light GruvDark": "light-gruvdark.yaml", "Light GruvDark-Mono": "light-gruvdark-mono.yaml", "Light GruvDark-Tokyo": "light-gruvdark-tokyo.yaml", - "Light Red": "light-red.yaml", + "Light Jade": "light-jade.yaml", "Light Springbok": "light-springbok.yaml", "Light Theme": "light-theme.yaml", + "Light_mosqueta": "light-mosqueta.yaml", "Light-Brown": "light-brown.yaml", - "light-color-theme": "light-color-theme.yaml", "light-print": "light-print.yaml", "LightBlack": "lightblack.yaml", "LightDelight": "lightdelight.yaml", @@ -3118,8 +3409,8 @@ "Lighthouse In The Dark (Rose Island Dark)": "lighthouse-in-the-dark-rose-island-dark.yaml", "Lighthouse In The Dark (Rose Island Light)": "lighthouse-in-the-dark-rose-island-light.yaml", "Lightning": "lightning.yaml", - "Lightning Cloud": "lightning-cloud.yaml", "Lightning Dark": "lightning-dark.yaml", + "Lightning Light": "lightning-light.yaml", "Lightning Material - Day": "lightning-material-day.yaml", "Lightning Material - Evening": "lightning-material-evening.yaml", "Lightning Material - Midnight": "lightning-material-midnight.yaml", @@ -3128,7 +3419,7 @@ "Lightning Soft - Dark": "lightning-soft-dark.yaml", "Lightning Theme": "lightning-theme.yaml", "LigiaPink": "ligiapink.yaml", - "Ligor - Fork": "ligor-fork.yaml", + "lilac": "lilac.yaml", "Lilac Dreams": "lilac-dreams.yaml", "Lilac Grove": "lilac-grove.yaml", "Lima Theme": "lima-theme.yaml", @@ -3137,12 +3428,15 @@ "Linear Dark": "linear-dark.yaml", "Linear Light": "linear-light.yaml", "Linkarzu VScode theme": "linkarzu-vscode-theme.yaml", + "lino": "lino.yaml", "Lino - Dark Ruby": "lino-dark-ruby.yaml", + "Lion": "lion.yaml", "Lionel": "lionel.yaml", "Liquid Dark": "liquid-dark.yaml", "Liquid Ochre": "liquid-ochre.yaml", "Liquid Ray": "liquid-ray.yaml", "Liquid Ray Light": "liquid-ray-light.yaml", + "Liquid Ray Soft Pink": "liquid-ray-soft-pink.yaml", "Liquor Theme": "liquor-theme.yaml", "Liquorice": "liquorice.yaml", "Little League Dark": "little-league-dark.yaml", @@ -3150,13 +3444,14 @@ "Little League Light": "little-league-light.yaml", "LiveS": "lives.yaml", "Living Twilight": "living-twilight.yaml", - "Lncoder_theme": "lncoder-theme.yaml", "Lofi": "lofi.yaml", + "Loki": "loki.yaml", "Loki Official - Classic": "loki-official-classic.yaml", "Loki Official - Kang Edition": "loki-official-kang-edition.yaml", "Loki Theme": "loki-theme.yaml", "Loki Theme Contrast": "loki-theme-contrast.yaml", "lolo": "lolo.yaml", + "London Underground": "london-underground.yaml", "Lone wolf dark": "lone-wolf-dark.yaml", "Lonely": "lonely.yaml", "lonus-dark": "lonus-dark.yaml", @@ -3164,6 +3459,7 @@ "LookiFy Light mode": "lookify-light-mode.yaml", "looped": "looped.yaml", "Loopy": "loopy.yaml", + "lordmorphy": "lordmorphy.yaml", "lore": "lore.yaml", "LostforIndia": "lostforindia.yaml", "Lotus Dark": "lotus-dark.yaml", @@ -3183,12 +3479,15 @@ "Lucid Labs Dark": "lucid-labs-dark.yaml", "Lucid Labs Light": "lucid-labs-light.yaml", "Lucifer Terminal Dark (Hacker Edition)": "lucifer-terminal-dark-hacker-edition.yaml", + "Lucky Green": "lucky-green.yaml", "LuckyHub": "luckyhub.yaml", "Lui": "lui.yaml", + "luiz": "luiz.yaml", "luiz-dark-theme": "luiz-dark-theme.yaml", "Luke Skywriter": "luke-skywriter.yaml", "Lull": "lull.yaml", "LuluTheme": "lulutheme.yaml", + "Lumen Dark": "lumen-dark.yaml", "Lumenrift": "lumenrift.yaml", "Lumin": "lumin.yaml", "lumina": "lumina.yaml", @@ -3198,11 +3497,13 @@ "Luminarca (Luz)": "luminarca-luz.yaml", "Luminarca (Trevas)": "luminarca-trevas.yaml", "LuminaShade-Amethyst": "luminashade-amethyst.yaml", + "LuminEclipse": "lumineclipse.yaml", "Luminescence Theme": "luminescence-theme.yaml", "Lumon Theme": "lumon-theme.yaml", "Lumos Black": "lumos-black.yaml", "Lumos Dark": "lumos-dark.yaml", "Lumos Dark Soft": "lumos-dark-soft.yaml", + "Lumos Light Soft": "lumos-light-soft.yaml", "Lunar": "lunar.yaml", "Lunar Eclipse": "lunar-eclipse.yaml", "Lunar Eclipse Golden Hour": "lunar-eclipse-golden-hour.yaml", @@ -3215,12 +3516,16 @@ "Lunna Dark": "lunna-dark.yaml", "Lupine": "lupine.yaml", "lupus": "lupus.yaml", + "luxark": "luxark.yaml", "luxeforest": "luxeforest.yaml", "Lyra's Vega": "lyra-s-vega.yaml", "LzTheme": "lztheme.yaml", + "m-jtgzc": "m-jtgzc.yaml", "M-Unity's Custom VSCode Theme": "m-unity-s-custom-vscode-theme.yaml", + "m.": "m.yaml", "M2D - Fork": "m2d-fork.yaml", "mac-theme": "mac-theme.yaml", + "Mach1 Theme": "mach1-theme.yaml", "Machine": "machine.yaml", "Macho Man": "macho-man.yaml", "macOS": "macos.yaml", @@ -3238,7 +3543,6 @@ "Madrid Night": "madrid-night.yaml", "Magenta One Dark Pro": "magenta-one-dark-pro.yaml", "Magic Mushroom Theme": "magic-mushroom-theme.yaml", - "Magicorp": "magicorp.yaml", "MagicUser": "magicuser.yaml", "MagicUser Bases": "magicuser-bases.yaml", "MagicUser Book": "magicuser-book.yaml", @@ -3277,9 +3581,11 @@ "maguh": "maguh.yaml", "Maharashtra - Land of Warriors": "maharashtra-land-of-warriors.yaml", "Mahiro": "mahiro.yaml", + "Mainframe-Terminal": "mainframe-terminal.yaml", "Maisum Xcode Dark": "maisum-xcode-dark.yaml", "Mak1na Theme": "mak1na-theme.yaml", "Make Apps": "make-apps.yaml", + "Maki Konuri": "maki-konuri.yaml", "Malachite": "malachite.yaml", "Maldi Dark": "maldi-dark.yaml", "Malibu Sunset": "malibu-sunset.yaml", @@ -3291,6 +3597,7 @@ "Manhld Theme": "manhld-theme.yaml", "Manjaro Owl": "manjaro-owl.yaml", "Manners": "manners.yaml", + "Manoshi": "manoshi.yaml", "Mantissa Dark": "mantissa-dark.yaml", "Mantissa Light": "mantissa-light.yaml", "Maomao Dark Theme": "maomao-dark-theme.yaml", @@ -3302,6 +3609,7 @@ "Marcial Theme": "marcial-theme.yaml", "marcoSven": "marcosven.yaml", "Mariana": "mariana.yaml", + "Mariana ": "mariana.yaml", "Mariana (Pro)": "mariana-pro.yaml", "Mariana Refined": "mariana-refined.yaml", "mariana-light": "mariana-light.yaml", @@ -3324,11 +3632,13 @@ "Matcha Pink": "matcha-pink.yaml", "matchalk": "matchalk.yaml", "Matchanaa": "matchanaa.yaml", + "MatchaNeco": "matchaneco.yaml", "Matchati": "matchati.yaml", "Material": "material.yaml", "Material Community Ansi 16": "material-community-ansi-16.yaml", "Material Midnight": "material-midnight.yaml", "Material Monokai High Contrast": "material-monokai-high-contrast.yaml", + "Material Neutral": "material-neutral.yaml", "Material Ocean": "material-ocean.yaml", "Material Rainbow": "material-rainbow.yaml", "Material Solarized": "material-solarized.yaml", @@ -3337,14 +3647,9 @@ "Material Theme Twilight Wave Ocean Ui ~": "material-theme-twilight-wave-ocean-ui.yaml", "material-color-theme": "material-color-theme.yaml", "material-dark-color-theme": "material-dark-color-theme.yaml", - "Material-Last": "material-last.yaml", - "Material-Theme-Darker": "material-theme-darker.yaml", - "Material-Theme-Darker-High-Contrast": "material-theme-darker-high-contrast.yaml", - "Material-Theme-Deepforest-High-Contrast": "material-theme-deepforest-high-contrast.yaml", - "Material-Theme-Default-High-Contrast": "material-theme-default-high-contrast.yaml", - "Material-Theme-Lighter": "material-theme-lighter.yaml", - "Material-Theme-Lighter-High-Contrast": "material-theme-lighter-high-contrast.yaml", - "Material-Theme-Palenight-High-Contrast": "material-theme-palenight-high-contrast.yaml", + "Material-Pure-Dark": "material-pure-dark.yaml", + "Material-Theme-DHC-Mix-In-Pycharm-Darcula-Theme": "material-theme-dhc-mix-in-pycharm-darcula-theme.yaml", + "Material-Theme-Ocean": "material-theme-ocean.yaml", "material1": "material1.yaml", "MaterialDarker-MonokaiST3": "materialdarker-monokaist3.yaml", "materialdarkplus": "materialdarkplus.yaml", @@ -3354,6 +3659,8 @@ "Matrix": "matrix.yaml", "Matrix Hacking Dark Theme": "matrix-hacking-dark-theme.yaml", "Matrix Mint": "matrix-mint.yaml", + "Matrix Reloaded": "matrix-reloaded.yaml", + "Matrix Reloaded 🔒 LOCKED": "matrix-reloaded-locked.yaml", "Matronator's Theme": "matronator-s-theme.yaml", "Matte Atelier — Ivory": "matte-atelier-ivory.yaml", "Matte Atelier — Obsidian": "matte-atelier-obsidian.yaml", @@ -3365,6 +3672,8 @@ "MatteBlack": "matteblack.yaml", "matter": "matter.yaml", "Matteric Dark Default": "matteric-dark-default.yaml", + "MauricePlus": "mauriceplus.yaml", + "Maus Dark": "maus-dark.yaml", "mauve": "mauve.yaml", "mauve-contrast": "mauve-contrast.yaml", "mauve-light": "mauve-light.yaml", @@ -3378,13 +3687,16 @@ "McDonalds Theme": "mcdonalds-theme.yaml", "McYoda's Light Theme": "mcyoda-s-light-theme.yaml", "Md Abdur Rakib": "md-abdur-rakib.yaml", + "Meadow-Whisper": "meadow-whisper.yaml", "Meaow Dark": "meaow-dark.yaml", "MECHA.01": "mecha-01.yaml", "medium-dark": "medium-dark.yaml", "Mega Green": "mega-green.yaml", + "MeiNanziiii": "meinanziiii.yaml", "Meitnerium Theme": "meitnerium-theme.yaml", "mel": "mel.yaml", "melancholy": "melancholy.yaml", + "Melange Redux: Dark": "melange-redux-dark.yaml", "Melange Redux: Light": "melange-redux-light.yaml", "melcr": "melcr.yaml", "Melee Island": "melee-island.yaml", @@ -3398,8 +3710,10 @@ "Melyon": "melyon.yaml", "Melyon Blue": "melyon-blue.yaml", "Menelik": "menelik.yaml", - "MeOceanBlackbarry": "meoceanblackbarry.yaml", + "MeOceanEmerald": "meoceanemerald.yaml", "MeOceanGray": "meoceangray.yaml", + "Meridian": "meridian.yaml", + "Meridian Neutral": "meridian-neutral.yaml", "Merlot": "merlot.yaml", "Mesalvo Cortex": "mesalvo-cortex.yaml", "Meshvoid": "meshvoid.yaml", @@ -3408,6 +3722,7 @@ "Meteora": "meteora.yaml", "Metropolis": "metropolis.yaml", "Metropolis Light": "metropolis-light.yaml", + "Metropolis-Sky-Scape": "metropolis-sky-scape.yaml", "Mgldvd Theme": "mgldvd-theme.yaml", "MH Theme": "mh-theme.yaml", "mhfeizi": "mhfeizi.yaml", @@ -3417,30 +3732,43 @@ "miami-wind": "miami-wind.yaml", "miasma-color-theme": "miasma-color-theme.yaml", "MibTema": "mibtema.yaml", + "Michota": "michota.yaml", "micky-dark-black": "micky-dark-black.yaml", "micky-dark-lite": "micky-dark-lite.yaml", "micky-dark-lite-black": "micky-dark-lite-black.yaml", + "Microhouse": "microhouse.yaml", "Midas Touch": "midas-touch.yaml", "Midas Touch Light": "midas-touch-light.yaml", + "Midas-Touch": "midas-touch.yaml", "Midcentury": "midcentury.yaml", + "Middle-Field-Canvas": "middle-field-canvas.yaml", "Midight Sun": "midight-sun.yaml", "Midnight Blueprint": "midnight-blueprint.yaml", "Midnight Breeze": "midnight-breeze.yaml", "Midnight Candy": "midnight-candy.yaml", "Midnight City": "midnight-city.yaml", + "Midnight Dark": "midnight-dark.yaml", "Midnight Darker": "midnight-darker.yaml", "Midnight Dracula": "midnight-dracula.yaml", "Midnight Embers": "midnight-embers.yaml", + "Midnight Emerald": "midnight-emerald.yaml", + "Midnight Forest": "midnight-forest.yaml", "Midnight Gambler": "midnight-gambler.yaml", "Midnight Grove": "midnight-grove.yaml", "Midnight Guest": "midnight-guest.yaml", + "Midnight High Contrast Dark": "midnight-high-contrast-dark.yaml", + "Midnight High Contrast Light": "midnight-high-contrast-light.yaml", + "Midnight Koi": "midnight-koi.yaml", "Midnight Lake": "midnight-lake.yaml", + "Midnight Light": "midnight-light.yaml", "Midnight Marina": "midnight-marina.yaml", "Midnight Mirage": "midnight-mirage.yaml", + "Midnight Monochrome": "midnight-monochrome.yaml", "Midnight Monokai": "midnight-monokai.yaml", "Midnight Moon": "midnight-moon.yaml", "Midnight Moon Eclipse": "midnight-moon-eclipse.yaml", "Midnight Moon Ukiyo": "midnight-moon-ukiyo.yaml", + "Midnight Ocean": "midnight-ocean.yaml", "Midnight Pastel": "midnight-pastel.yaml", "Midnight Pro": "midnight-pro.yaml", "Midnight Purple": "midnight-purple.yaml", @@ -3448,6 +3776,8 @@ "Midnight Rainbow": "midnight-rainbow.yaml", "Midnight Rose Theme": "midnight-rose-theme.yaml", "Midnight Sapphire": "midnight-sapphire.yaml", + "Midnight Shadow - Fork": "midnight-shadow-fork.yaml", + "Midnight Soft": "midnight-soft.yaml", "Midnight Theme": "midnight-theme.yaml", "Midnight Theme Light": "midnight-theme-light.yaml", "Midnight Theme Light Soft": "midnight-theme-light-soft.yaml", @@ -3458,11 +3788,14 @@ "MidnightBlue": "midnightblue.yaml", "MidnightGlow": "midnightglow.yaml", "midt": "midt.yaml", + "Midwinter Light": "midwinter-light.yaml", "Mihari": "mihari.yaml", "Mihari Bordered": "mihari-bordered.yaml", "Mike Sources Green CRT": "mike-sources-green-crt.yaml", + "Mike Sources Hacker": "mike-sources-hacker.yaml", "Mike Sources YellowStone": "mike-sources-yellowstone.yaml", "Mikes-Vscode-Theme-1": "mikes-vscode-theme-1.yaml", + "mikestheme (edited GulajavaMinistudio Mayukai theme)": "mikestheme-edited-gulajavaministudio-mayukai-theme.yaml", "Miku Code": "miku-code.yaml", "Miku Code Fusion Light": "miku-code-fusion-light.yaml", "Miku Code Light": "miku-code-light.yaml", @@ -3472,18 +3805,20 @@ "Mimesis Dark": "mimesis-dark.yaml", "Mimesis Light": "mimesis-light.yaml", "Min Gruvbox": "min-gruvbox.yaml", - "Min Light": "min-light.yaml", + "minai": "minai.yaml", "MinCom": "mincom.yaml", + "Mineral-Forest": "mineral-forest.yaml", "Minimal": "minimal.yaml", + "minimal dark": "minimal-dark.yaml", "Minimal Dark": "minimal-dark.yaml", "minimal dark - Fork": "minimal-dark-fork.yaml", "Minimal Monochrome Dark": "minimal-monochrome-dark.yaml", "Minimal Monochrome Ink Dark": "minimal-monochrome-ink-dark.yaml", "Minimal Monochrome Ink Light": "minimal-monochrome-ink-light.yaml", + "Minimal Monochrome Light": "minimal-monochrome-light.yaml", "Minimal Monochrome Pastel Dawn": "minimal-monochrome-pastel-dawn.yaml", "Minimal Monochrome Pastel Light": "minimal-monochrome-pastel-light.yaml", "Minimal Monochrome Slate Dark": "minimal-monochrome-slate-dark.yaml", - "Minimal Monochrome Slate Light": "minimal-monochrome-slate-light.yaml", "Minimal Pastel Dark — Vibrant (Softer Yellow)": "minimal-pastel-dark-vibrant-softer-yellow.yaml", "Minimal Theme": "minimal-theme.yaml", "Minimal Wave - Floral Dark": "minimal-wave-floral-dark.yaml", @@ -3491,7 +3826,9 @@ "minimal_green": "minimal-green.yaml", "Minimal-44": "minimal-44.yaml", "Minimal-44-pro": "minimal-44-pro.yaml", + "MinimalBlue": "minimalblue.yaml", "minimalesque": "minimalesque.yaml", + "MinimalGold": "minimalgold.yaml", "Minimalist": "minimalist.yaml", "Minimalistic dark theme": "minimalistic-dark-theme.yaml", "MinimalisticDarkTheme": "minimalisticdarktheme.yaml", @@ -3513,6 +3850,8 @@ "MintDark": "mintdark.yaml", "Minty Dark": "minty-dark.yaml", "mirai": "mirai.yaml", + "Mirai": "mirai.yaml", + "mirajdev": "mirajdev.yaml", "Miramare": "miramare.yaml", "Mist": "mist.yaml", "Mist Theme": "mist-theme.yaml", @@ -3520,22 +3859,25 @@ "Misty Blue": "misty-blue.yaml", "MistyWind": "mistywind.yaml", "Mitaverse": "mitaverse.yaml", + "mitsuri": "mitsuri.yaml", "Mitsuri Kanroji": "mitsuri-kanroji.yaml", "Mixed Solarized Light": "mixed-solarized-light.yaml", "mk iceBlack": "mk-iceblack.yaml", "MK Mono Dark": "mk-mono-dark.yaml", - "MK Mono Light": "mk-mono-light.yaml", "MKANET": "mkanet.yaml", "MKDeveloper Theme": "mkdeveloper-theme.yaml", "mlia-dark": "mlia-dark.yaml", "mlia-light": "mlia-light.yaml", "mlia-soft": "mlia-soft.yaml", "mlv60 vintage light": "mlv60-vintage-light.yaml", + "mlv60-vintage-dark": "mlv60-vintage-dark.yaml", "Mocaccino Light": "mocaccino-light.yaml", "Moderate Dimm": "moderate-dimm.yaml", "Modern Dracula": "modern-dracula.yaml", - "Modern GitHub | White & Purple": "modern-github-white-purple.yaml", + "Modern Dracula | White": "modern-dracula-white.yaml", + "Modern-Retro": "modern-retro.yaml", "ModernEclipse": "moderneclipse.yaml", + "ModernUI": "modernui.yaml", "ModernUI - Fork": "modernui-fork.yaml", "Modest pink": "modest-pink.yaml", "Modified Darker Material Theme": "modified-darker-material-theme.yaml", @@ -3570,9 +3912,13 @@ "Molokai Darker": "molokai-darker.yaml", "Molten Aurora": "molten-aurora.yaml", "monaco-paulsevere-color-theme": "monaco-paulsevere-color-theme.yaml", + "Monet-Impressionism": "monet-impressionism.yaml", "Monfika": "monfika.yaml", "Mono Atom": "mono-atom.yaml", "Mono BW": "mono-bw.yaml", + "mono dark": "mono-dark.yaml", + "Mono Next": "mono-next.yaml", + "mono white": "mono-white.yaml", "mono-cl": "mono-cl.yaml", "Monochai Dark": "monochai-dark.yaml", "Monochromator Dark Plain": "monochromator-dark-plain.yaml", @@ -3605,7 +3951,9 @@ "Monocr": "monocr.yaml", "MonoCraft": "monocraft.yaml", "Monoeye": "monoeye.yaml", - "Monokai +Blue": "monokai-blue.yaml", + "monokai": "monokai.yaml", + "Monokai +Red": "monokai-red.yaml", + "Monokai Classic": "monokai-classic.yaml", "Monokai Dark": "monokai-dark.yaml", "Monokai Dark Green": "monokai-dark-green.yaml", "Monokai Deep Dark": "monokai-deep-dark.yaml", @@ -3615,25 +3963,27 @@ "Monokai Grey": "monokai-grey.yaml", "Monokai GRS": "monokai-grs.yaml", "Monokai Midnight": "monokai-midnight.yaml", - "Monokai Night": "monokai-night.yaml", "Monokai Night Z Blue": "monokai-night-z-blue.yaml", "Monokai Octagon": "monokai-octagon.yaml", "Monokai Pro": "monokai-pro.yaml", "Monokai Rain": "monokai-rain.yaml", + "Monokai Semantic": "monokai-semantic.yaml", "Monokai Sharp": "monokai-sharp.yaml", "Monokai soda darker": "monokai-soda-darker.yaml", "Monokai Storm": "monokai-storm.yaml", "Monokai supersaturated": "monokai-supersaturated.yaml", + "Monokai Theme": "monokai-theme.yaml", "Monokai Tornado": "monokai-tornado.yaml", "Monokai Underdark": "monokai-underdark.yaml", "Monokai Underdark MK": "monokai-underdark-mk.yaml", "Monokai--": "monokai.yaml", - "monokai-color-theme": "monokai-color-theme.yaml", "monokai-color-theme-1": "monokai-color-theme-1.yaml", + "monokai-dark": "monokai-dark.yaml", "monokai-extended": "monokai-extended.yaml", "monokai-faded": "monokai-faded.yaml", "monokai-hc-color-theme": "monokai-hc-color-theme.yaml", "monokai-japan-color-theme": "monokai-japan-color-theme.yaml", + "monokai-minimal": "monokai-minimal.yaml", "monokai-ocean-color-theme": "monokai-ocean-color-theme.yaml", "Monokai-Okean": "monokai-okean.yaml", "monokai-original-sublime-theme": "monokai-original-sublime-theme.yaml", @@ -3653,8 +4003,10 @@ "Monospace Dark": "monospace-dark.yaml", "Monospace Light": "monospace-light.yaml", "monotone": "monotone.yaml", + "Monove - Fork": "monove-fork.yaml", "MonRch-Darc": "monrch-darc.yaml", "Montana": "montana.yaml", + "Monte Cristo Theme": "monte-cristo-theme.yaml", "Monza Dark": "monza-dark.yaml", "monzo": "monzo.yaml", "monzo-contrast": "monzo-contrast.yaml", @@ -3682,6 +4034,7 @@ "morgan.codes": "morgan-codes.yaml", "Mori": "mori.yaml", "Mori Keycaps": "mori-keycaps.yaml", + "Morita": "morita.yaml", "Morning Mist": "morning-mist.yaml", "Morning Mocha": "morning-mocha.yaml", "Morose Theme": "morose-theme.yaml", @@ -3690,10 +4043,12 @@ "Moss Oracle": "moss-oracle.yaml", "MossFrame": "mossframe.yaml", "MossFrame — Light": "mossframe-light.yaml", - "Motion Blue (Thin Brackets)": "motion-blue-thin-brackets.yaml", + "MossFrame — Neon (Legacy)": "mossframe-neon-legacy.yaml", + "MossFrame — Neon Darker (Legacy)": "mossframe-neon-darker-legacy.yaml", + "mother-stretch-my-hands": "mother-stretch-my-hands.yaml", + "Motion Blue": "motion-blue.yaml", "Motiv8der's Theme": "motiv8der-s-theme.yaml", "Mount Kalaga Noir": "mount-kalaga-noir.yaml", - "Mountain": "mountain.yaml", "mountain-theme": "mountain-theme.yaml", "Mountains and Rivers": "mountains-and-rivers.yaml", "Mourning": "mourning.yaml", @@ -3701,6 +4056,7 @@ "Mr Code Black": "mr-code-black.yaml", "Mr Code Gunmetal": "mr-code-gunmetal.yaml", "MS Dev Theme": "ms-dev-theme.yaml", + "MSquare Dark": "msquare-dark.yaml", "mt-doom-theme": "mt-doom-theme.yaml", "mud": "mud.yaml", "Mud Theme": "mud-theme.yaml", @@ -3719,6 +4075,7 @@ "my dark theme - refined - updated": "my-dark-theme-refined-updated.yaml", "My First Visual Studio Theme": "my-first-visual-studio-theme.yaml", "My Hero Academia (Deku Plus Ultra)": "my-hero-academia-deku-plus-ultra.yaml", + "My Light Theme": "my-light-theme.yaml", "my light theme - mint sand updated": "my-light-theme-mint-sand-updated.yaml", "my light theme - mint sand updated - Fork Bluesand": "my-light-theme-mint-sand-updated-fork-bluesand.yaml", "my light theme blue": "my-light-theme-blue.yaml", @@ -3727,10 +4084,13 @@ "my light theme light green - PaperBlue - Fork": "my-light-theme-light-green-paperblue-fork.yaml", "my light theme light green - Papermint -updated": "my-light-theme-light-green-papermint-updated.yaml", "My Monokai": "my-monokai.yaml", + "My Ocean Theme": "my-ocean-theme.yaml", "My Oceanic": "my-oceanic.yaml", + "my theme": "my-theme.yaml", + "My theme": "my-theme.yaml", "my-dark-theme": "my-dark-theme.yaml", "my-theme": "my-theme.yaml", - "MyCode Dark Blue": "mycode-dark-blue.yaml", + "MyCode Dark": "mycode-dark.yaml", "MyGO!!!!!": "mygo.yaml", "Mynthra": "mynthra.yaml", "Myoptic": "myoptic.yaml", @@ -3750,6 +4110,7 @@ "myTheme": "mytheme.yaml", "Myūzu": "my-zu.yaml", "MyVsCode": "myvscode.yaml", + "MZ Light Grey - Sharp": "mz-light-grey-sharp.yaml", "N-DarkTheme": "n-darktheme.yaml", "n0m4D": "n0m4d.yaml", "N7 Lilac": "n7-lilac.yaml", @@ -3758,13 +4119,16 @@ "N7 Purple Green": "n7-purple-green.yaml", "N7 Red Flare": "n7-red-flare.yaml", "N7 Soft Pink": "n7-soft-pink.yaml", + "Nachop Dark": "nachop-dark.yaml", + "Nachop Light": "nachop-light.yaml", + "Nachop Light Bordered": "nachop-light-bordered.yaml", "Nada Theme": "nada-theme.yaml", "Nairobi-dark": "nairobi-dark.yaml", - "Nameless": "nameless.yaml", + "Nanami Madobe Theme": "nanami-madobe-theme.yaml", "Nanowise": "nanowise.yaml", "Naps Dusk Gold": "naps-dusk-gold.yaml", "Narasimha - Fearless Dark Theme": "narasimha-fearless-dark-theme.yaml", - "Narato": "narato.yaml", + "Narixius One Dark": "narixius-one-dark.yaml", "narunika": "narunika.yaml", "Naruto (Hokage Orange)": "naruto-hokage-orange.yaml", "Naruto Akatsuki": "naruto-akatsuki.yaml", @@ -3787,12 +4151,11 @@ "natasha-theme": "natasha-theme.yaml", "Natives in Tech Theme": "natives-in-tech-theme.yaml", "NaTTo Theme 2": "natto-theme-2.yaml", - "Natty": "natty.yaml", "Natural Faded Dark": "natural-faded-dark.yaml", - "Natural Green Colorblind - Growth & Harmony": "natural-green-colorblind-growth-harmony.yaml", + "Natural Green - Growth & Harmony": "natural-green-growth-harmony.yaml", "Natural Green Light - Growth & Harmony": "natural-green-light-growth-harmony.yaml", "Nature": "nature.yaml", - "Nature Green Colorblind - Growth & Harmony": "nature-green-colorblind-growth-harmony.yaml", + "Nature Green - Growth & Harmony": "nature-green-growth-harmony.yaml", "Nature Green Light - Growth & Harmony": "nature-green-light-growth-harmony.yaml", "nature-color-theme": "nature-color-theme.yaml", "Nautilus": "nautilus.yaml", @@ -3814,7 +4177,6 @@ "Nebula-color-theme": "nebula-color-theme.yaml", "Nebular Theme": "nebular-theme.yaml", "Nebularomantic": "nebularomantic.yaml", - "Nebulous Dark": "nebulous-dark.yaml", "Nebulous Luna": "nebulous-luna.yaml", "Necessity AAA Light": "necessity-aaa-light.yaml", "Necessity-AAA": "necessity-aaa.yaml", @@ -3832,12 +4194,11 @@ "Neofusion": "neofusion.yaml", "Neogenesis": "neogenesis.yaml", "Neokai": "neokai.yaml", - "Neon": "neon.yaml", "Neon Color - Dark Theme": "neon-color-dark-theme.yaml", "Neon Cyber": "neon-cyber.yaml", "Neon Cyberpunk": "neon-cyberpunk.yaml", "Neon Dream Code": "neon-dream-code.yaml", - "Neon Dreams Neobrutalist": "neon-dreams-neobrutalist.yaml", + "Neon Dreams": "neon-dreams.yaml", "Neon Dusk": "neon-dusk.yaml", "Neon Forest": "neon-forest.yaml", "Neon Glow": "neon-glow.yaml", @@ -3847,8 +4208,7 @@ "Neon Matrix": "neon-matrix.yaml", "Neon Noir": "neon-noir.yaml", "Neon Ocean": "neon-ocean.yaml", - "Neon Palette Themes (Blue)": "neon-palette-themes-blue.yaml", - "NEON PURPLE OLD-SCHOOL": "neon-purple-old-school.yaml", + "Neon Palette Themes (Red)": "neon-palette-themes-red.yaml", "Neon Shimmer": "neon-shimmer.yaml", "Neon Shimmer (Amethyst Core)": "neon-shimmer-amethyst-core.yaml", "Neon Shimmer (Bubblegum Punk)": "neon-shimmer-bubblegum-punk.yaml", @@ -3892,6 +4252,7 @@ "NeutralVI": "neutralvi.yaml", "Neutron": "neutron.yaml", "Nevada": "nevada.yaml", + "nevejestvo-theme": "nevejestvo-theme.yaml", "Never Be Lost (Day)": "never-be-lost-day.yaml", "Never Be Lost (Night)": "never-be-lost-night.yaml", "Nevermore": "nevermore.yaml", @@ -3899,6 +4260,7 @@ "NEVO": "nevo.yaml", "NEVO black": "nevo-black.yaml", "NEVO comfy": "nevo-comfy.yaml", + "NEVO pro": "nevo-pro.yaml", "New England light theme": "new-england-light-theme.yaml", "New Moon": "new-moon.yaml", "New Owl": "new-owl.yaml", @@ -3907,11 +4269,12 @@ "New South Wales Light": "new-south-wales-light.yaml", "new theme": "new-theme.yaml", "new-sphere": "new-sphere.yaml", + "new-wave-theme": "new-wave-theme.yaml", "NewDarkTheme": "newdarktheme.yaml", "Newera Dark Theme": "newera-dark-theme.yaml", "NewRailscasts": "newrailscasts.yaml", "Newspaperlike": "newspaperlike.yaml", - "newsprint-c": "newsprint-c.yaml", + "newsprint": "newsprint.yaml", "newsprint-invert": "newsprint-invert.yaml", "newsprint-so": "newsprint-so.yaml", "newton": "newton.yaml", @@ -3921,6 +4284,7 @@ "NewX Light": "newx-light.yaml", "next-theme": "next-theme.yaml", "nextcode": "nextcode.yaml", + "NextGen Terminal": "nextgen-terminal.yaml", "Nexus": "nexus.yaml", "Nexus Dark": "nexus-dark.yaml", "NGC Aurora Dawn": "ngc-aurora-dawn.yaml", @@ -3944,7 +4308,6 @@ "Night Dragon": "night-dragon.yaml", "night fae theme": "night-fae-theme.yaml", "Night Market": "night-market.yaml", - "Night Owl": "night-owl.yaml", "Night Owl Oled Dim 100": "night-owl-oled-dim-100.yaml", "Night Owl Oled Dim 75": "night-owl-oled-dim-75.yaml", "Night Owl Oled Dim 80": "night-owl-oled-dim-80.yaml", @@ -3963,6 +4326,7 @@ "Night Zen": "night-zen.yaml", "night-aurora": "night-aurora.yaml", "night-blossom": "night-blossom.yaml", + "night-howl": "night-howl.yaml", "Night-Stack Amber CRT": "night-stack-amber-crt.yaml", "Night-Stack Amber Dark": "night-stack-amber-dark.yaml", "Night-Stack Arctic Night": "night-stack-arctic-night.yaml", @@ -4008,8 +4372,7 @@ "Night-Stack Zen Dark": "night-stack-zen-dark.yaml", "NightBlue 1": "nightblue-1.yaml", "NightBlue OLED (BETA)": "nightblue-oled-beta.yaml", - "Nightcall (No Italics)": "nightcall-no-italics.yaml", - "NightChill": "nightchill.yaml", + "Nightcall": "nightcall.yaml", "NightCode": "nightcode.yaml", "Nightdream": "nightdream.yaml", "Nightdream Monokai": "nightdream-monokai.yaml", @@ -4022,6 +4385,7 @@ "Nightmare": "nightmare.yaml", "nightnode": "nightnode.yaml", "Nightshade": "nightshade.yaml", + "Nightshade-Venom": "nightshade-venom.yaml", "NightShift Lobo Dawn": "nightshift-lobo-dawn.yaml", "NightShiftLobo": "nightshiftlobo.yaml", "NightShiftLobo Obsidian": "nightshiftlobo-obsidian.yaml", @@ -4029,8 +4393,10 @@ "NightSky": "nightsky.yaml", "NightSwell": "nightswell.yaml", "Nightwing": "nightwing.yaml", + "Nighty Bordered": "nighty-bordered.yaml", "nighty-purple-color-theme": "nighty-purple-color-theme.yaml", "NigthWolf-color-theme": "nigthwolf-color-theme.yaml", + "nihil": "nihil.yaml", "NihilLeaf-Theme": "nihilleaf-theme.yaml", "niketa.pop.dark": "niketa-pop-dark.yaml", "niketa.pop.light": "niketa-pop-light.yaml", @@ -4045,7 +4411,6 @@ "NiTROUS Theme (Dark)": "nitrous-theme-dark.yaml", "nivtheme": "nivtheme.yaml", "Nix": "nix.yaml", - "Njord": "njord.yaml", "Nkalai Dark": "nkalai-dark.yaml", "Nkalai Light": "nkalai-light.yaml", "nloo-Theme": "nloo-theme.yaml", @@ -4061,21 +4426,11 @@ "Noah Theme": "noah-theme.yaml", "NoctaliaTheme": "noctaliatheme.yaml", "Noctilux": "noctilux.yaml", - "Noctis": "noctis.yaml", - "Noctis Azureus": "noctis-azureus.yaml", - "Noctis Bordo": "noctis-bordo.yaml", - "Noctis Hibernus": "noctis-hibernus.yaml", "Noctis High Contrast": "noctis-high-contrast.yaml", "Noctis Lilac": "noctis-lilac.yaml", - "Noctis Lux": "noctis-lux.yaml", "Noctis Lux (Dean's version)": "noctis-lux-dean-s-version.yaml", "Noctis Lux Ansi 16": "noctis-lux-ansi-16.yaml", - "Noctis Minimus": "noctis-minimus.yaml", - "Noctis Obscuro": "noctis-obscuro.yaml", "Noctis Red Flow": "noctis-red-flow.yaml", - "Noctis Sereno": "noctis-sereno.yaml", - "Noctis Uva": "noctis-uva.yaml", - "Noctis Viola": "noctis-viola.yaml", "Noctua Black Rose": "noctua-black-rose.yaml", "Noctua Dark Leaf": "noctua-dark-leaf.yaml", "Noctua Grass": "noctua-grass.yaml", @@ -4083,11 +4438,12 @@ "Nocturnal": "nocturnal.yaml", "Nodr Cocoa": "nodr-cocoa.yaml", "Nodr Plum": "nodr-plum.yaml", + "Noe": "noe.yaml", "Noel": "noel.yaml", "Noir (Dark)": "noir-dark.yaml", "Noir (Light)": "noir-light.yaml", "Noir dracula": "noir-dracula.yaml", - "Noir Essence Dark Border": "noir-essence-dark-border.yaml", + "Noir Essence Dark": "noir-essence-dark.yaml", "Noir Essence Light": "noir-essence-light.yaml", "Noir Outrun": "noir-outrun.yaml", "Noir Owl": "noir-owl.yaml", @@ -4116,13 +4472,16 @@ "Nord Deep": "nord-deep.yaml", "Nord Frost": "nord-frost.yaml", "Nord Jujoco": "nord-jujoco.yaml", + "Nord Light": "nord-light.yaml", "Nord Midnight": "nord-midnight.yaml", "Nord Native": "nord-native.yaml", "Nord Operator Theme": "nord-operator-theme.yaml", "Nord Palette": "nord-palette.yaml", "Nord Zero": "nord-zero.yaml", "nord-bunker": "nord-bunker.yaml", + "Nord-Fountain": "nord-fountain.yaml", "Nord+": "nord.yaml", + "Nordark": "nordark.yaml", "Nordfox": "nordfox.yaml", "Nordic": "nordic.yaml", "Nordic Dark": "nordic-dark.yaml", @@ -4131,6 +4490,7 @@ "NordicDark": "nordicdark.yaml", "Nordico": "nordico.yaml", "NordishCocoa": "nordishcocoa.yaml", + "NordStone": "nordstone.yaml", "Northeirn": "northeirn.yaml", "Northern Territory Dark": "northern-territory-dark.yaml", "Northern Territory Light": "northern-territory-light.yaml", @@ -4148,6 +4508,8 @@ "NotionLikeTheme": "notionliketheme.yaml", "NotTheVimGuyTheme": "notthevimguytheme.yaml", "Nova": "nova.yaml", + "Nova Dark": "nova-dark.yaml", + "Nova Light": "nova-light.yaml", "NOVADUST": "novadust.yaml", "November Theme - BLACK": "november-theme-black.yaml", "November Theme - DARKBLUE": "november-theme-darkblue.yaml", @@ -4182,6 +4544,7 @@ "nuTheme": "nutheme.yaml", "Nutty Dark Theme": "nutty-dark-theme.yaml", "Nutty Light Theme": "nutty-light-theme.yaml", + "nuuvo - space max": "nuuvo-space-max.yaml", "Nuxt Blend": "nuxt-blend.yaml", "Nuxt Blend-Bleach Color Theme": "nuxt-blend-bleach-color-theme.yaml", "Nuxtian": "nuxtian.yaml", @@ -4194,6 +4557,8 @@ "NW21": "nw21.yaml", "NY City Lights Theme": "ny-city-lights-theme.yaml", "Nyctophilia": "nyctophilia.yaml", + "nyqron": "nyqron.yaml", + "Nyrkes": "nyrkes.yaml", "OA515": "oa515.yaml", "Oak": "oak.yaml", "Oak-Dark": "oak-dark.yaml", @@ -4204,6 +4569,7 @@ "Obsidian": "obsidian.yaml", "Obsidian Dark": "obsidian-dark.yaml", "Obsidian Ember": "obsidian-ember.yaml", + "Obsidian Gold": "obsidian-gold.yaml", "Obsidian Light": "obsidian-light.yaml", "Obsidian Nova": "obsidian-nova.yaml", "Obsidian Pro - Dark": "obsidian-pro-dark.yaml", @@ -4219,6 +4585,7 @@ "Obsidian Sea": "obsidian-sea.yaml", "Obsidian Sunset": "obsidian-sunset.yaml", "Obsidian Void": "obsidian-void.yaml", + "Obsidian-Wine": "obsidian-wine.yaml", "Obsidianite": "obsidianite.yaml", "Obsidianite AMOLED": "obsidianite-amoled.yaml", "OC-7 light": "oc-7-light.yaml", @@ -4235,10 +4602,13 @@ "ocean-color-theme": "ocean-color-theme.yaml", "Ocean-theme": "ocean-theme.yaml", "Oceana": "oceana.yaml", + "Oceanic Primal Color Theme": "oceanic-primal-color-theme.yaml", "Oceanic Solitude": "oceanic-solitude.yaml", "Oceanic Wind": "oceanic-wind.yaml", "Oceanic Wind Cool": "oceanic-wind-cool.yaml", "Oceanic Wind Warm": "oceanic-wind-warm.yaml", + "Oceanic-Gradient": "oceanic-gradient.yaml", + "Oceanic-Sunset": "oceanic-sunset.yaml", "Oceans of Andromeda": "oceans-of-andromeda.yaml", "Ochre Dark": "ochre-dark.yaml", "Ochre Dark - Midnight": "ochre-dark-midnight.yaml", @@ -4249,13 +4619,14 @@ "Octo Light": "octo-light.yaml", "Octopus theme": "octopus-theme.yaml", "Odyssey Night": "odyssey-night.yaml", + "Office Dark": "office-dark.yaml", "Office Light": "office-light.yaml", + "Office-Paper": "office-paper.yaml", "Ogone": "ogone.yaml", "Oh Dark Pro": "oh-dark-pro.yaml", "OhioState - Fork": "ohiostate-fork.yaml", "OhLED_AliceBlue": "ohled-aliceblue.yaml", "OhLED_AntiqueWhite": "ohled-antiquewhite.yaml", - "OhLED_Aqua": "ohled-aqua.yaml", "OhLED_AquaMarine": "ohled-aquamarine.yaml", "OhLED_Azure": "ohled-azure.yaml", "OhLED_Beige": "ohled-beige.yaml", @@ -4272,6 +4643,7 @@ "OhLED_CornflowerBlue": "ohled-cornflowerblue.yaml", "OhLED_Cornsilk": "ohled-cornsilk.yaml", "OhLED_Crimson": "ohled-crimson.yaml", + "OhLED_Cyan": "ohled-cyan.yaml", "OhLED_DarkBlue": "ohled-darkblue.yaml", "OhLED_DarkCyan": "ohled-darkcyan.yaml", "OhLED_DarkGoldenRod": "ohled-darkgoldenrod.yaml", @@ -4295,7 +4667,6 @@ "OhLED_DodgerBlue": "ohled-dodgerblue.yaml", "OhLED_FireBrick": "ohled-firebrick.yaml", "OhLED_ForestGreen": "ohled-forestgreen.yaml", - "OhLED_Fuchsia": "ohled-fuchsia.yaml", "OhLED_Gainsboro": "ohled-gainsboro.yaml", "OhLED_GhostWhite": "ohled-ghostwhite.yaml", "OhLED_Gold": "ohled-gold.yaml", @@ -4329,6 +4700,7 @@ "OhLED_Lime": "ohled-lime.yaml", "OhLED_LimeGreen": "ohled-limegreen.yaml", "OhLED_Linen": "ohled-linen.yaml", + "OhLED_Magenta": "ohled-magenta.yaml", "OhLED_Maroon": "ohled-maroon.yaml", "OhLED_MediumAquaMarine": "ohled-mediumaquamarine.yaml", "OhLED_MediumBlue": "ohled-mediumblue.yaml", @@ -4396,6 +4768,8 @@ "Okas theme": "okas-theme.yaml", "Oldschool Terminal (Green)": "oldschool-terminal-green.yaml", "Oldworld": "oldworld.yaml", + "OldWorld": "oldworld.yaml", + "Oledge": "oledge.yaml", "Olive Dark": "olive-dark.yaml", "Olive Light": "olive-light.yaml", "Omega": "omega.yaml", @@ -4404,6 +4778,7 @@ "Omni Customized Dark": "omni-customized-dark.yaml", "Omni Dracula Dark": "omni-dracula-dark.yaml", "Omni Dracula Theme": "omni-dracula-theme.yaml", + "Omni Dracula Theme Tradicional": "omni-dracula-theme-tradicional.yaml", "Omni Dracula Theme Tradicional Contrast": "omni-dracula-theme-tradicional-contrast.yaml", "Omni Dracula Wine Theme Tradicional": "omni-dracula-wine-theme-tradicional.yaml", "Omni Monokai Dark": "omni-monokai-dark.yaml", @@ -4413,6 +4788,7 @@ "omo theme": "omo-theme.yaml", "One AI theme": "one-ai-theme.yaml", "one dark": "one-dark.yaml", + "One Dark": "one-dark.yaml", "One Dark Code": "one-dark-code.yaml", "One Dark Darker": "one-dark-darker.yaml", "One Dark Darker Vivid": "one-dark-darker-vivid.yaml", @@ -4422,27 +4798,34 @@ "One Dark Night - Minimalist": "one-dark-night-minimalist.yaml", "One Dark Night - Professional": "one-dark-night-professional.yaml", "One Dark NX": "one-dark-nx.yaml", + "One Dark Orange": "one-dark-orange.yaml", "One Dark Pro": "one-dark-pro.yaml", "One Dark Pro Theme": "one-dark-pro-theme.yaml", "One Dark Pro Var Night": "one-dark-pro-var-night.yaml", "One Dark Vibrant Theme": "one-dark-vibrant-theme.yaml", - "One Dark Vivid": "one-dark-vivid.yaml", "One Darker Pro": "one-darker-pro.yaml", - "One DarkPuccin Vivid Italic": "one-darkpuccin-vivid-italic.yaml", - "One Half Light Italic": "one-half-light-italic.yaml", + "One DarkPuccin Night": "one-darkpuccin-night.yaml", + "One DarkPuccin Vivid": "one-darkpuccin-vivid.yaml", "One Hunter Theme": "one-hunter-theme.yaml", + "One Light Italic": "one-light-italic.yaml", "One Light Pro": "one-light-pro.yaml", "One Material": "one-material.yaml", "One Midnight": "one-midnight.yaml", - "One Monokai": "one-monokai.yaml", + "One Monokai (Light)": "one-monokai-light.yaml", "One Monokai Darker": "one-monokai-darker.yaml", "One Monokai Forked": "one-monokai-forked.yaml", "One Monokai Michota": "one-monokai-michota.yaml", + "One Monokai Python Flat": "one-monokai-python-flat.yaml", "One Monokai Shadow": "one-monokai-shadow.yaml", "One Monokai1": "one-monokai1.yaml", "One More Dark": "one-more-dark.yaml", + "One Pauintxi Blue": "one-pauintxi-blue.yaml", + "One Pauintxi Blue++": "one-pauintxi-blue.yaml", + "One Pauintxi Orange++": "one-pauintxi-orange.yaml", "One Piece (Straw Hat Red)": "one-piece-straw-hat-red.yaml", + "one-dark": "one-dark.yaml", "one-dark-cloud-theme": "one-dark-cloud-theme.yaml", + "one-dark-pro": "one-dark-pro.yaml", "one-piece-dark": "one-piece-dark.yaml", "One-Piece-High-Contrast": "one-piece-high-contrast.yaml", "one-piece-light": "one-piece-light.yaml", @@ -4450,6 +4833,7 @@ "onebitcode-theme": "onebitcode-theme.yaml", "OneCalm": "onecalm.yaml", "OneDark Pro - Suhayb's Version v2": "onedark-pro-suhayb-s-version-v2.yaml", + "OneDark Vibrant": "onedark-vibrant.yaml", "onedark.nvim": "onedark-nvim.yaml", "Oneiroi caffeine": "oneiroi-caffeine.yaml", "Oneiroi dream": "oneiroi-dream.yaml", @@ -4457,24 +4841,25 @@ "OneMonokai80s": "onemonokai80s.yaml", "OneMonokai80sOG": "onemonokai80sog.yaml", "OneNv": "onenv.yaml", + "OneThing": "onething.yaml", "Oni Theme": "oni-theme.yaml", "OnlyDark": "onlydark.yaml", + "OnlyDarkLight": "onlydarklight.yaml", "Onora": "onora.yaml", "Onyx": "onyx.yaml", "Onyx Core": "onyx-core.yaml", "Onyx Ghost": "onyx-ghost.yaml", "Onyx Theme Color": "onyx-theme-color.yaml", "Ook": "ook.yaml", + "oolory-color-theme": "oolory-color-theme.yaml", "oolory-dark-color-theme": "oolory-dark-color-theme.yaml", "openbase": "openbase.yaml", "OpenSpace": "openspace.yaml", "OpenSpace Dark": "openspace-dark.yaml", "OpenSpace Dark Flat": "openspace-dark-flat.yaml", + "opmono odarkp": "opmono-odarkp.yaml", "Optimus Dark": "optimus-dark.yaml", - "oQ Dark": "oq-dark.yaml", - "oQ Dark Soft": "oq-dark-soft.yaml", - "oQ Light": "oq-light.yaml", - "oQ Light Soft": "oq-light-soft.yaml", + "Oracle-Vision": "oracle-vision.yaml", "Oradia": "oradia.yaml", "oragethemedark": "oragethemedark.yaml", "Orago's Warm Theme": "orago-s-warm-theme.yaml", @@ -4482,6 +4867,7 @@ "Orange": "orange.yaml", "orange coral": "orange-coral.yaml", "Orange Dark": "orange-dark.yaml", + "Orange Ocean": "orange-ocean.yaml", "OrangeFox Dark": "orangefox-dark.yaml", "OrangeFox Light": "orangefox-light.yaml", "orangelemon": "orangelemon.yaml", @@ -4491,30 +4877,34 @@ "Orangey (Lighter 1)": "orangey-lighter-1.yaml", "Orangey (Lighter 2)": "orangey-lighter-2.yaml", "Orbi Blue": "orbi-blue.yaml", - "Orbi Green": "orbi-green.yaml", + "Orbi Red": "orbi-red.yaml", "Orca": "orca.yaml", "origami-theme": "origami-theme.yaml", "Origamid": "origamid.yaml", "Original Theme": "original-theme.yaml", "Orion X Black": "orion-x-black.yaml", + "Orion-Black - Fork": "orion-black-fork.yaml", "Orpheux": "orpheux.yaml", + "orw": "orw.yaml", "Orwellian Nightmare": "orwellian-nightmare.yaml", "Osaka Solarized Pro Dark": "osaka-solarized-pro-dark.yaml", "Osaka Solarized Pro Light": "osaka-solarized-pro-light.yaml", "Osaka Solarized Pro Monokai Storm": "osaka-solarized-pro-monokai-storm.yaml", + "Osean Boy": "osean-boy.yaml", "Oslo Dark": "oslo-dark.yaml", "Osmoz Dark": "osmoz-dark.yaml", "OSX9": "osx9.yaml", "otakon": "otakon.yaml", "otakon-contrast": "otakon-contrast.yaml", "otakon-light": "otakon-light.yaml", - "Outrun Contrast": "outrun-contrast.yaml", + "outer-spacemacs": "outer-spacemacs.yaml", "Outrun Dark": "outrun-dark.yaml", "overflow": "overflow.yaml", "overflow-contrast": "overflow-contrast.yaml", "overflow-light": "overflow-light.yaml", "overload": "overload.yaml", - "Overnight Italic": "overnight-italic.yaml", + "Overnight": "overnight.yaml", + "Overwatch Workshop 静谧": "overwatch-workshop.yaml", "Owlet (Default)": "owlet-default.yaml", "Owlet (Material)": "owlet-material.yaml", "Owlet (Mono)": "owlet-mono.yaml", @@ -4522,10 +4912,9 @@ "Owlet (Solarized)": "owlet-solarized.yaml", "Owokai": "owokai.yaml", "Owokai Hard": "owokai-hard.yaml", - "Oxide": "oxide.yaml", - "Oxocarbon (compatibility)": "oxocarbon-compatibility.yaml", - "Oxocarbon Monochrom (compatibility)": "oxocarbon-monochrom-compatibility.yaml", - "Oxocarbon OLED (compatibility)": "oxocarbon-oled-compatibility.yaml", + "Oxocarbon Dark": "oxocarbon-dark.yaml", + "Oxocarbon Monochrom": "oxocarbon-monochrom.yaml", + "Oxocarbon OLED": "oxocarbon-oled.yaml", "Oxocarbon OLED Monochrom": "oxocarbon-oled-monochrom.yaml", "Oxocarbon OLED Monochrom (compatibility)": "oxocarbon-oled-monochrom-compatibility.yaml", "oxocarbon-5": "oxocarbon-5.yaml", @@ -4534,31 +4923,32 @@ "Ozurac": "ozurac.yaml", "Ozzy": "ozzy.yaml", "p!nk": "p-nk.yaml", - "P. \\ Black": "p-black.yaml", - "P. \\ Citadel": "p-citadel.yaml", - "P. \\ Crimson": "p-crimson.yaml", - "P. \\ Dark": "p-dark.yaml", - "P. \\ Eggplant": "p-eggplant.yaml", - "P. \\ Emerald": "p-emerald.yaml", - "P. \\ Eucalyptus": "p-eucalyptus.yaml", - "P. \\ Floresta": "p-floresta.yaml", - "P. \\ Frost": "p-frost.yaml", - "P. \\ Genmaicha": "p-genmaicha.yaml", - "P. \\ Grizzly": "p-grizzly.yaml", - "P. \\ Haze": "p-haze.yaml", - "P. \\ Inkstone": "p-inkstone.yaml", - "P. \\ Leipzig": "p-leipzig.yaml", - "P. \\ Light": "p-light.yaml", - "P. \\ Machine": "p-machine.yaml", - "P. \\ Mist": "p-mist.yaml", - "P. \\ Neptune": "p-neptune.yaml", - "P. \\ Ornithopter": "p-ornithopter.yaml", - "P. \\ Ox": "p-ox.yaml", - "P. \\ Terabyte": "p-terabyte.yaml", - "P. \\ Ultramarine": "p-ultramarine.yaml", - "P. \\ Wolf": "p-wolf.yaml", "P. \\ Yesterday": "p-yesterday.yaml", - "P. \\ Zenith": "p-zenith.yaml", + "P. Upright \\ Black": "p-upright-black.yaml", + "P. Upright \\ Citadel": "p-upright-citadel.yaml", + "P. Upright \\ Crimson": "p-upright-crimson.yaml", + "P. Upright \\ Dark": "p-upright-dark.yaml", + "P. Upright \\ Eggplant": "p-upright-eggplant.yaml", + "P. Upright \\ Emerald": "p-upright-emerald.yaml", + "P. Upright \\ Eucalyptus": "p-upright-eucalyptus.yaml", + "P. Upright \\ Floresta": "p-upright-floresta.yaml", + "P. Upright \\ Frost": "p-upright-frost.yaml", + "P. Upright \\ Genmaicha": "p-upright-genmaicha.yaml", + "P. Upright \\ Grizzly": "p-upright-grizzly.yaml", + "P. Upright \\ Haze": "p-upright-haze.yaml", + "P. Upright \\ Inkstone": "p-upright-inkstone.yaml", + "P. Upright \\ Leipzig": "p-upright-leipzig.yaml", + "P. Upright \\ Light": "p-upright-light.yaml", + "P. Upright \\ Machine": "p-upright-machine.yaml", + "P. Upright \\ Mist": "p-upright-mist.yaml", + "P. Upright \\ Neptune": "p-upright-neptune.yaml", + "P. Upright \\ Ornithopter": "p-upright-ornithopter.yaml", + "P. Upright \\ Ox": "p-upright-ox.yaml", + "P. Upright \\ Terabyte": "p-upright-terabyte.yaml", + "P. Upright \\ Ultramarine": "p-upright-ultramarine.yaml", + "P. Upright \\ Wolf": "p-upright-wolf.yaml", + "P. Upright \\ Yesterday": "p-upright-yesterday.yaml", + "P. Upright \\ Zenith": "p-upright-zenith.yaml", "P33t": "p33t.yaml", "Pace Dark": "pace-dark.yaml", "Pace Light": "pace-light.yaml", @@ -4567,10 +4957,9 @@ "Pale Blue": "pale-blue.yaml", "Pale Boreal Dark": "pale-boreal-dark.yaml", "Palenight": "palenight.yaml", - "Palenight Italic": "palenight-italic.yaml", "Palenight Material": "palenight-material.yaml", "Palenight Pro": "palenight-pro.yaml", - "Palenight Theme": "palenight-theme.yaml", + "Palenight Theme based on Olaolu Olaywuyi for Code Server": "palenight-theme-based-on-olaolu-olaywuyi-for-code-server.yaml", "palespring": "palespring.yaml", "Palestorm": "palestorm.yaml", "Palestorm X": "palestorm-x.yaml", @@ -4578,7 +4967,8 @@ "Pall Theme": "pall-theme.yaml", "Panda Dark": "panda-dark.yaml", "panda-blue": "panda-blue.yaml", - "Pandju - No italics": "pandju-no-italics.yaml", + "pandai": "pandai.yaml", + "Pandju": "pandju.yaml", "pantasio": "pantasio.yaml", "Pantone Amber (Dark)": "pantone-amber-dark.yaml", "Pantone Amber (Light)": "pantone-amber-light.yaml", @@ -4783,6 +5173,7 @@ "Papaya": "papaya.yaml", "PaperColorDark": "papercolordark.yaml", "Paradise": "paradise.yaml", + "Paraíso (dark)": "para-so-dark.yaml", "Parakeet Theme": "parakeet-theme.yaml", "Parchment": "parchment.yaml", "parchment-candlelight-color-theme": "parchment-candlelight-color-theme.yaml", @@ -4797,6 +5188,7 @@ "pastel inu": "pastel-inu.yaml", "pastel-contrast": "pastel-contrast.yaml", "pastel-light": "pastel-light.yaml", + "Pastel-Sorbet": "pastel-sorbet.yaml", "Pastelefull": "pastelefull.yaml", "pastelfairy": "pastelfairy.yaml", "Pastellize Dark (Muted)": "pastellize-dark-muted.yaml", @@ -4813,6 +5205,7 @@ "Paulera's dark monokai": "paulera-s-dark-monokai.yaml", "Paulera's Lyo": "paulera-s-lyo.yaml", "Paztels": "paztels.yaml", + "Peace of the eye - Dracula version": "peace-of-the-eye-dracula-version.yaml", "Peaceful Mind": "peaceful-mind.yaml", "Peachy": "peachy.yaml", "Peachy dolphin": "peachy-dolphin.yaml", @@ -4837,6 +5230,8 @@ "Perfect Dark": "perfect-dark.yaml", "Perfect Grey PF Dark": "perfect-grey-pf-dark.yaml", "Perfect Grey PF Light": "perfect-grey-pf-light.yaml", + "Perfection Fresh Dark": "perfection-fresh-dark.yaml", + "Perfection Fresh Light": "perfection-fresh-light.yaml", "Periwinkle Soft Dark": "periwinkle-soft-dark.yaml", "periwinkle-color-theme": "periwinkle-color-theme.yaml", "Perplexity": "perplexity.yaml", @@ -4878,23 +5273,26 @@ "Pierre Dark": "pierre-dark.yaml", "Pierre Light": "pierre-light.yaml", "piggy": "piggy.yaml", + "Piggy": "piggy.yaml", + "Piggy Bordered": "piggy-bordered.yaml", "piggy-contrast": "piggy-contrast.yaml", "piggy-light": "piggy-light.yaml", - "Pillirioen (Italics)": "pillirioen-italics.yaml", + "Pillirioen": "pillirioen.yaml", + "Pine Blue": "pine-blue.yaml", "Pine Cone Theme": "pine-cone-theme.yaml", - "Pine Editor Light": "pine-editor-light.yaml", + "Pine Editor Dark": "pine-editor-dark.yaml", + "Pine Editor Light Bold": "pine-editor-light-bold.yaml", "Pine Forest": "pine-forest.yaml", "Pine Forest Green (Dark)": "pine-forest-green-dark.yaml", "Pine FriZz": "pine-frizz.yaml", - "Pine Theme Blue": "pine-theme-blue.yaml", - "Pine Theme Dark Low Contrast": "pine-theme-dark-low-contrast.yaml", - "Pine Theme Grey": "pine-theme-grey.yaml", - "Pine Theme Original Dark": "pine-theme-original-dark.yaml", + "Pine Grey": "pine-grey.yaml", + "Pine Grey !": "pine-grey.yaml", "Pine Theme Original Dark Extend": "pine-theme-original-dark-extend.yaml", "PineApple": "pineapple.yaml", "pines": "pines.yaml", "Pingocho dark": "pingocho-dark.yaml", "Pink": "pink.yaml", + "Pink - High Contrast": "pink-high-contrast.yaml", "Pink Candy Dark": "pink-candy-dark.yaml", "Pink Candy Dark Warm": "pink-candy-dark-warm.yaml", "Pink Candy Light": "pink-candy-light.yaml", @@ -4915,6 +5313,7 @@ "Pinot Gris": "pinot-gris.yaml", "Pinya Theme": "pinya-theme.yaml", "PipBoy Theme": "pipboy-theme.yaml", + "pirate-flat-theme": "pirate-flat-theme.yaml", "Pirulug Dark": "pirulug-dark.yaml", "Pirulug Ligt": "pirulug-ligt.yaml", "Pistachio Madness": "pistachio-madness.yaml", @@ -4924,6 +5323,7 @@ "PittCSC Theme": "pittcsc-theme.yaml", "pixeye-theme": "pixeye-theme.yaml", "Pizarra": "pizarra.yaml", + "pk-vscode-theme": "pk-vscode-theme.yaml", "Plane": "plane.yaml", "PlantillaThemes": "plantillathemes.yaml", "Plasma Pink": "plasma-pink.yaml", @@ -4941,8 +5341,8 @@ "PlurpelVSC": "plurpelvsc.yaml", "Pluto Dark": "pluto-dark.yaml", "po": "po.yaml", - "poimandres dark theme": "poimandres-dark-theme.yaml", - "Polar": "polar.yaml", + "poimandres darker theme (ghostty palette)": "poimandres-darker-theme-ghostty-palette.yaml", + "Poison Serpent": "poison-serpent.yaml", "Polar Black": "polar-black.yaml", "Polar Black Cherry Blossom": "polar-black-cherry-blossom.yaml", "Polar Black Green Cactus": "polar-black-green-cactus.yaml", @@ -4962,6 +5362,7 @@ "PolyGopher Theme": "polygopher-theme.yaml", "Polykai": "polykai.yaml", "Polymath": "polymath.yaml", + "Polymer-Flow": "polymer-flow.yaml", "pookie dark": "pookie-dark.yaml", "Poolside": "poolside.yaml", "Pop OS Cosmic": "pop-os-cosmic.yaml", @@ -5005,6 +5406,8 @@ "PrismMagic": "prismmagic.yaml", "Pro Coding": "pro-coding.yaml", "Professional Dark": "professional-dark.yaml", + "Progenesis Dark": "progenesis-dark.yaml", + "Progenesis Light": "progenesis-light.yaml", "Programmer": "programmer.yaml", "Progress": "progress.yaml", "Progress Dark": "progress-dark.yaml", @@ -5019,6 +5422,8 @@ "Proper Theme Alternate Fork": "proper-theme-alternate-fork.yaml", "Proper Up for What": "proper-up-for-what.yaml", "propurple": "propurple.yaml", + "Protheme Dark": "protheme-dark.yaml", + "Protheme Dark 2": "protheme-dark-2.yaml", "PS Dark": "ps-dark.yaml", "PS Light": "ps-light.yaml", "PS Mid-Blue": "ps-mid-blue.yaml", @@ -5030,20 +5435,23 @@ "Pudding Light · JK": "pudding-light-jk.yaml", "Pulpy-Orange": "pulpy-orange.yaml", "Pulsar": "pulsar.yaml", - "Pulsar Default": "pulsar-default.yaml", "Pulse Balanced Purple": "pulse-balanced-purple.yaml", "Pulse Comfort Light": "pulse-comfort-light.yaml", "Pulse Soft Purple": "pulse-soft-purple.yaml", "Pumpkin": "pumpkin.yaml", "Punjab - Land of Five Rivers": "punjab-land-of-five-rivers.yaml", "punk-runner": "punk-runner.yaml", + "PunkFut": "punkfut.yaml", "Pur+ Theme V1": "pur-theme-v1.yaml", "purble 0.0.2 - Fork - Fork": "purble-0-0-2-fork-fork.yaml", "Purddy": "purddy.yaml", "Pure Black": "pure-black.yaml", + "Pure Black - Monokai Inspired": "pure-black-monokai-inspired.yaml", "Pure Dark": "pure-dark.yaml", "Pure Light": "pure-light.yaml", + "Pure Monochrome": "pure-monochrome.yaml", "PureBlack": "pureblack.yaml", + "Purgle Dark (Purple)": "purgle-dark-purple.yaml", "Puri Twilite": "puri-twilite.yaml", "purple": "purple.yaml", "Purple Cake": "purple-cake.yaml", @@ -5052,13 +5460,16 @@ "Purple Dark": "purple-dark.yaml", "Purple Dark Theme - Unicode": "purple-dark-theme-unicode.yaml", "Purple Dream": "purple-dream.yaml", + "purple galaxy": "purple-galaxy.yaml", "purple ish": "purple-ish.yaml", + "purple ish (dimmed)": "purple-ish-dimmed.yaml", "Purple Royal": "purple-royal.yaml", "Purple Surface Dark": "purple-surface-dark.yaml", "Purple theme": "purple-theme.yaml", "Purple Theme": "purple-theme.yaml", "Purple Twist": "purple-twist.yaml", "Purple Void": "purple-void.yaml", + "purple_dark": "purple-dark.yaml", "Purple-Cloud-Minimal": "purple-cloud-minimal.yaml", "Purple-cyan": "purple-cyan.yaml", "Purple(Dark-Black);": "purple-dark-black.yaml", @@ -5082,6 +5493,7 @@ "Purply (Light)": "purply-light.yaml", "Purppy": "purppy.yaml", "Purps": "purps.yaml", + "Purr Light": "purr-light.yaml", "Purrfect Marshmallow - Lavender Night": "purrfect-marshmallow-lavender-night.yaml", "Purrfect Marshmallow - Pastel pink": "purrfect-marshmallow-pastel-pink.yaml", "Purstel": "purstel.yaml", @@ -5094,6 +5506,9 @@ "Python-Bright-Colors-Theme": "python-bright-colors-theme.yaml", "QARA": "qara.yaml", "Qerz Theme": "qerz-theme.yaml", + "QiHui Tech": "qihui-tech.yaml", + "QiHui Tech Light": "qihui-tech-light.yaml", + "QiHui Tech Night": "qihui-tech-night.yaml", "Qii Theme Dark": "qii-theme-dark.yaml", "Qii Theme Dark Shallow": "qii-theme-dark-shallow.yaml", "Qii Theme Light": "qii-theme-light.yaml", @@ -5101,16 +5516,26 @@ "qqqoid light color": "qqqoid-light-color.yaml", "Qt Creator-Like Dark Theme": "qt-creator-like-dark-theme.yaml", "qtz-theme": "qtz-theme.yaml", + "Quantum": "quantum.yaml", "Quantum Blue Dark": "quantum-blue-dark.yaml", - "Quantum Bordered": "quantum-bordered.yaml", - "Quantum Dark Bordered": "quantum-dark-bordered.yaml", + "Quantum Dark": "quantum-dark.yaml", + "Quantum Fluidity": "quantum-fluidity.yaml", + "Quantum Flux": "quantum-flux.yaml", "Quantum Green": "quantum-green.yaml", - "Quantum Mirage Bordered": "quantum-mirage-bordered.yaml", + "Quantum Material Theme - Dark": "quantum-material-theme-dark.yaml", + "Quantum Material Theme - Light": "quantum-material-theme-light.yaml", + "Quantum Material Theme - Void": "quantum-material-theme-void.yaml", + "Quantum Mirage": "quantum-mirage.yaml", "Quantum Night": "quantum-night.yaml", "Quantum Synthwave": "quantum-synthwave.yaml", "QuantumQubic": "quantumqubic.yaml", "quantxz": "quantxz.yaml", "Quarkus Dark Theme": "quarkus-dark-theme.yaml", + "Quartzium-Theme-Dark": "quartzium-theme-dark.yaml", + "Quartzium-Theme-Darker": "quartzium-theme-darker.yaml", + "Quartzium-Theme-Deepforest": "quartzium-theme-deepforest.yaml", + "Quartzium-Theme-Default": "quartzium-theme-default.yaml", + "Quartzium-Theme-Lighter": "quartzium-theme-lighter.yaml", "Quasar": "quasar.yaml", "Qubik Dark": "qubik-dark.yaml", "Qubik Light": "qubik-light.yaml", @@ -5119,12 +5544,12 @@ "Quiet Canvas": "quiet-canvas.yaml", "Quiet Hacker": "quiet-hacker.yaml", "quietude": "quietude.yaml", + "Quinno Darkness": "quinno-darkness.yaml", "Quirky Contrast Theme": "quirky-contrast-theme.yaml", "QuTheme": "qutheme.yaml", - "R Dark Pro (Filter Black White Border)": "r-dark-pro-filter-black-white-border.yaml", "R Dark Pro (Filter Coolnight)": "r-dark-pro-filter-coolnight.yaml", "R Dark Pro (Filter Dark Pro)": "r-dark-pro-filter-dark-pro.yaml", - "R Dark Pro (Filter Laser Border)": "r-dark-pro-filter-laser-border.yaml", + "R Dark Pro (Filter Nightblack)": "r-dark-pro-filter-nightblack.yaml", "R Dark Pro (Filter Nightfall)": "r-dark-pro-filter-nightfall.yaml", "R Dark Pro (Filter Nightgrey)": "r-dark-pro-filter-nightgrey.yaml", "R Dark Pro (Filter Nightlate)": "r-dark-pro-filter-nightlate.yaml", @@ -5135,13 +5560,13 @@ "radium": "radium.yaml", "RageQuit": "ragequit.yaml", "Ragnarok": "ragnarok.yaml", - "Raijū - Dark (No italics)": "raij-dark-no-italics.yaml", - "Raijū (No italics)": "raij-no-italics.yaml", + "Raijū": "raij.yaml", + "Raijū - Dark": "raij-dark.yaml", "Rain": "rain.yaml", "Rain City Theme": "rain-city-theme.yaml", "rainbow": "rainbow.yaml", + "Rainbow": "rainbow.yaml", "Rainbow Pastel Theme": "rainbow-pastel-theme.yaml", - "rainbow-contrast": "rainbow-contrast.yaml", "rainbow-light": "rainbow-light.yaml", "rainbow-material-theme": "rainbow-material-theme.yaml", "RainbowDrops Dark": "rainbowdrops-dark.yaml", @@ -5160,19 +5585,25 @@ "ramazzotti-80s": "ramazzotti-80s.yaml", "Ramuda": "ramuda.yaml", "Rapture": "rapture.yaml", + "Rasengan Glacier": "rasengan-glacier.yaml", + "RAT Beach": "rat-beach.yaml", "Rate Dark": "rate-dark.yaml", "Rate Dark Cold": "rate-dark-cold.yaml", "Rate Light": "rate-light.yaml", "Rate Light Soft": "rate-light-soft.yaml", "Ravenwood Dark": "ravenwood-dark.yaml", "Ravenwood Light": "ravenwood-light.yaml", + "Rayleigh": "rayleigh.yaml", "RB's Desaturated": "rb-s-desaturated.yaml", "RBE Matrix Skin Theme": "rbe-matrix-skin-theme.yaml", + "rblx_lua_non_italic": "rblx-lua-non-italic.yaml", + "RCW-120-V1": "rcw-120-v1.yaml", "rdcd": "rdcd.yaml", - "re:Dark Alt": "re-dark-alt.yaml", + "re:Dark": "re-dark.yaml", "re:Eclipse": "re-eclipse.yaml", "re:Eclipse Old School": "re-eclipse-old-school.yaml", "Re:Vision": "re-vision.yaml", + "React Italic Theme": "react-italic-theme.yaml", "React Theme": "react-theme.yaml", "rebellion": "rebellion.yaml", "rebellion-contrast": "rebellion-contrast.yaml", @@ -5180,17 +5611,16 @@ "recats-classic-dark": "recats-classic-dark.yaml", "recats-nova-dark": "recats-nova-dark.yaml", "RecoTheme": "recotheme.yaml", + "red": "red.yaml", "Red Black White Dark": "red-black-white-dark.yaml", "Red Black White Light": "red-black-white-light.yaml", "Red Neon": "red-neon.yaml", "Red One Dark Pro | Dark": "red-one-dark-pro-dark.yaml", - "Red One Dark Pro | Dark Bordered": "red-one-dark-pro-dark-bordered.yaml", - "Red One Dark Pro | Mirage": "red-one-dark-pro-mirage.yaml", - "Red One Dark Pro | Mirage Bordered": "red-one-dark-pro-mirage-bordered.yaml", "Red Vintage": "red-vintage.yaml", + "red-black-white": "red-black-white.yaml", + "red-color-theme": "red-color-theme.yaml", "red/grey": "red-grey.yaml", "RedDark": "reddark.yaml", - "Reddish": "reddish.yaml", "Reddit Dark Based Theme - Updated": "reddit-dark-based-theme-updated.yaml", "rediohead theme": "rediohead-theme.yaml", "redoRainbow": "redorainbow.yaml", @@ -5217,6 +5647,8 @@ "Relaxed Theme - Night Warm": "relaxed-theme-night-warm.yaml", "Remedy - Bright (Tilted)": "remedy-bright-tilted.yaml", "Remedy - Dark (Tilted)": "remedy-dark-tilted.yaml", + "Remedyish - Bright": "remedyish-bright.yaml", + "Remedyish - Dark": "remedyish-dark.yaml", "Replicant": "replicant.yaml", "replt.it": "replt-it.yaml", "repoman-color-theme": "repoman-color-theme.yaml", @@ -5236,6 +5668,7 @@ "Retro Pastel Color Theme": "retro-pastel-color-theme.yaml", "retro theme": "retro-theme.yaml", "Retro Vibes": "retro-vibes.yaml", + "Retro-Arcade": "retro-arcade.yaml", "Retrocoders": "retrocoders.yaml", "Retronica Amber Terminal": "retronica-amber-terminal.yaml", "Retronica Neon Nights": "retronica-neon-nights.yaml", @@ -5245,51 +5678,68 @@ "RetroPuNK": "retropunk.yaml", "Retroscope": "retroscope.yaml", "Retrox": "retrox.yaml", - "ReUI II Dark Italic": "reui-ii-dark-italic.yaml", - "ReUI II Italic": "reui-ii-italic.yaml", - "ReUI II Mirage Italic": "reui-ii-mirage-italic.yaml", + "ReUI": "reui.yaml", + "ReUI II Dark": "reui-ii-dark.yaml", + "ReUI Mirage": "reui-mirage.yaml", "revelation": "revelation.yaml", "revelation-contrast": "revelation-contrast.yaml", "revelation-light": "revelation-light.yaml", "reVisual_Assist-color-theme": "revisual-assist-color-theme.yaml", "ReVisualAssist": "revisualassist.yaml", "rextax bright! - Fork": "rextax-bright-fork.yaml", + "Rey ❤️": "rey.yaml", + "Rezaul360 - Professional Theme": "rezaul360-professional-theme.yaml", + "Rezaul360 - Simple as light": "rezaul360-simple-as-light.yaml", + "Rezaul360 Blue Velvet Theme": "rezaul360-blue-velvet-theme.yaml", + "RG htmllessons.io": "rg-htmllessons-io.yaml", "Rhodes Dark": "rhodes-dark.yaml", "Rhodes Light": "rhodes-light.yaml", - "rich-black-theme-no-italic": "rich-black-theme-no-italic.yaml", + "Rhodium Dark": "rhodium-dark.yaml", + "Rich Black, no highlighting": "rich-black-no-highlighting.yaml", + "rich-black-theme": "rich-black-theme.yaml", "Rider": "rider.yaml", + "Rider Dark (Darcula)": "rider-dark-darcula.yaml", + "Rider Dark (New UI)": "rider-dark-new-ui.yaml", "Rider Melon Night": "rider-melon-night.yaml", "Rigel": "rigel.yaml", "Rimber": "rimber.yaml", "Riskified Dark": "riskified-dark.yaml", "Rito": "rito.yaml", "Rivendell": "rivendell.yaml", + "Riviera theme": "riviera-theme.yaml", "Rizz Focused": "rizz-focused.yaml", "Rizz Neutral": "rizz-neutral.yaml", "Rm Dark Theme": "rm-dark-theme.yaml", + "rmondesilva-contrast": "rmondesilva-contrast.yaml", "Roblox-Stylized Dark Theme": "roblox-stylized-dark-theme.yaml", "RoboDark": "robodark.yaml", "robolaunch": "robolaunch.yaml", + "Robot Framework Material Dark": "robot-framework-material-dark.yaml", "Rocinante": "rocinante.yaml", + "RockLee": "rocklee.yaml", "Rocko's Modern Theme": "rocko-s-modern-theme.yaml", "ROG Theme V1.1 Dark Alpha - Syntax Test": "rog-theme-v1-1-dark-alpha-syntax-test.yaml", "Rogue Squadron": "rogue-squadron.yaml", + "ROHIT": "rohit.yaml", "Rohit-Kudalkar-Dark-Theme": "rohit-kudalkar-dark-theme.yaml", "Ronin": "ronin.yaml", "Ronin Darker": "ronin-darker.yaml", "Root Bear": "root-bear.yaml", "Rose Paradise": "rose-paradise.yaml", "Rosé Pine": "ros-pine.yaml", - "Rosé Pine Dawn": "ros-pine-dawn.yaml", + "Rosé Pine (no italics)": "ros-pine-no-italics.yaml", + "Rosé Pine Dawn (no italics)": "ros-pine-dawn-no-italics.yaml", + "Rosé Pine Moon": "ros-pine-moon.yaml", "Rosefall Black": "rosefall-black.yaml", "Rosefall Midnight": "rosefall-midnight.yaml", "Roselia": "roselia.yaml", "Roselia - Orbital Eden Pastel": "roselia-orbital-eden-pastel.yaml", - "Rouge No Italics": "rouge-no-italics.yaml", + "Rouge": "rouge.yaml", "Roxo theme": "roxo-theme.yaml", "Royal": "royal.yaml", "Royal - Fork": "royal-fork.yaml", "Royal Darker Theme": "royal-darker-theme.yaml", + "Royalty Theme": "royalty-theme.yaml", "Rozen": "rozen.yaml", "RS Dark": "rs-dark.yaml", "Rsikified Dark Purple": "rsikified-dark-purple.yaml", @@ -5301,8 +5751,10 @@ "Ruby Nights — Ruby Midnight": "ruby-nights-ruby-midnight.yaml", "Ruby Sea": "ruby-sea.yaml", "RudyDev Theme [Edited Tokyo Night Storm]": "rudydev-theme-edited-tokyo-night-storm.yaml", + "rufendev-green-purple": "rufendev-green-purple.yaml", "Rui Cobalt": "rui-cobalt.yaml", "Rui Sapphire": "rui-sapphire.yaml", + "Rumba Dark": "rumba-dark.yaml", "Runic Minimal": "runic-minimal.yaml", "ruru marijuana": "ruru-marijuana.yaml", "ruru moon": "ruru-moon.yaml", @@ -5313,10 +5765,15 @@ "rypjaws": "rypjaws.yaml", "s-kill": "s-kill.yaml", "S-Kill": "s-kill.yaml", + "sabbir - theme - 3": "sabbir-theme-3.yaml", + "sacred": "sacred.yaml", + "Sadhu": "sadhu.yaml", "Safari Midnight": "safari-midnight.yaml", + "safe dark theme": "safe-dark-theme.yaml", "safira": "safira.yaml", "Saga - Nordic v1.2": "saga-nordic-v1-2.yaml", "Saga - Oceania v1.2": "saga-oceania-v1-2.yaml", + "Sage": "sage.yaml", "Sage Professional": "sage-professional.yaml", "Sage Siren Theme": "sage-siren-theme.yaml", "sage-of-light-color-theme": "sage-of-light-color-theme.yaml", @@ -5324,13 +5781,12 @@ "Sakai Theme Jupiter": "sakai-theme-jupiter.yaml", "Sakai Theme Moon": "sakai-theme-moon.yaml", "Sakai Theme Saturn": "sakai-theme-saturn.yaml", - "Sakai Theme Venus": "sakai-theme-venus.yaml", "sakura": "sakura.yaml", "Sakura": "sakura.yaml", "Sakura Blossom Midnight": "sakura-blossom-midnight.yaml", "Sakura Dreams": "sakura-dreams.yaml", "Sakura Dreams Dark": "sakura-dreams-dark.yaml", - "Sakura Theme - Fork": "sakura-theme-fork.yaml", + "Sakura Theme": "sakura-theme.yaml", "Sakura V2 By LeRoiAdib": "sakura-v2-by-leroiadib.yaml", "sakura-blossom-theme": "sakura-blossom-theme.yaml", "sakura-theme": "sakura-theme.yaml", @@ -5370,15 +5826,16 @@ "savetemin": "savetemin.yaml", "sazardev": "sazardev.yaml", "scarlet": "scarlet.yaml", + "Scarlet Witch (Dark)": "scarlet-witch-dark.yaml", + "Scarlet Witch (Light)": "scarlet-witch-light.yaml", "Sceanic": "sceanic.yaml", "Sceanic - Dark Gray": "sceanic-dark-gray.yaml", "Sceanic - Gray": "sceanic-gray.yaml", - "scepter": "scepter.yaml", "schoero-dark": "schoero-dark.yaml", "SchoolTheme": "schooltheme.yaml", "Schwifty": "schwifty.yaml", "Schwifty Atom One Dark": "schwifty-atom-one-dark.yaml", - "Schwifty Purple One Dark": "schwifty-purple-one-dark.yaml", + "Schwifty One Dark": "schwifty-one-dark.yaml", "scooby-dooby-dark": "scooby-dooby-dark.yaml", "scorch": "scorch.yaml", "scorch-contrast": "scorch-contrast.yaml", @@ -5389,17 +5846,24 @@ "Sea Urchin": "sea-urchin.yaml", "Seabrook Dark - Italic": "seabrook-dark-italic.yaml", "Seabrook Light - Italic": "seabrook-light-italic.yaml", - "Seaci Darkbase": "seaci-darkbase.yaml", - "Seaci Shadow": "seaci-shadow.yaml", + "Seaci Base": "seaci-base.yaml", + "Seaci Dark": "seaci-dark.yaml", "Seafarer": "seafarer.yaml", "Seafoam": "seafoam.yaml", "seagull": "seagull.yaml", + "Sebostien Theme": "sebostien-theme.yaml", "Secret Spring": "secret-spring.yaml", + "Section 9": "section-9.yaml", + "Section 9 - Hacker": "section-9-hacker.yaml", + "Section 9 - Major": "section-9-major.yaml", + "Section 9 - Ranger": "section-9-ranger.yaml", "Secunda": "secunda.yaml", "Secuoyas Code": "secuoyas-code.yaml", "Sedona": "sedona.yaml", "Seed7 Tokyo Night Dark": "seed7-tokyo-night-dark.yaml", "seekode light": "seekode-light.yaml", + "SeilaColor": "seilacolor.yaml", + "SeilaColor 2": "seilacolor-2.yaml", "Selene Selenized Dark": "selene-selenized-dark.yaml", "Selene Selenized Light": "selene-selenized-light.yaml", "selenitic-color-theme": "selenitic-color-theme.yaml", @@ -5419,6 +5883,10 @@ "Sequoia Retro": "sequoia-retro.yaml", "Seral Dark (GitHub × Stripe)": "seral-dark-github-stripe.yaml", "Seral Light (GitHub × Stripe)": "seral-light-github-stripe.yaml", + "Serein Dark": "serein-dark.yaml", + "Serein Dark Soft": "serein-dark-soft.yaml", + "Serein Light": "serein-light.yaml", + "Serein Light Soft": "serein-light-soft.yaml", "Serendipity Midnight": "serendipity-midnight.yaml", "Serendipity Midnight Electric": "serendipity-midnight-electric.yaml", "Serendipity Midnight V1": "serendipity-midnight-v1.yaml", @@ -5427,6 +5895,10 @@ "Serendipity Sunset": "serendipity-sunset.yaml", "Serendipity Sunset V1": "serendipity-sunset-v1.yaml", "Serene": "serene.yaml", + "Serene Dawn": "serene-dawn.yaml", + "Serenity Light": "serenity-light.yaml", + "Serenity Moon": "serenity-moon.yaml", + "Serenity Noir": "serenity-noir.yaml", "service": "service.yaml", "service-contrast": "service-contrast.yaml", "service-light": "service-light.yaml", @@ -5469,16 +5941,20 @@ "Shadowborn": "shadowborn.yaml", "Shadowscape": "shadowscape.yaml", "ShadowSpectrum": "shadowspectrum.yaml", + "Shale": "shale.yaml", "Shamrock": "shamrock.yaml", "Sharkdark Theme": "sharkdark-theme.yaml", "SharpBlue": "sharpblue.yaml", + "Shaughnessy-Nanite-Theme": "shaughnessy-nanite-theme.yaml", "Sheme": "sheme.yaml", "ShibaInu Dark": "shibainu-dark.yaml", "Shibuya": "shibuya.yaml", "Shifting Sands": "shifting-sands.yaml", "shiina": "shiina.yaml", - "Shinjuku Colored Brackets": "shinjuku-colored-brackets.yaml", + "Shinjuku": "shinjuku.yaml", "Shinkai": "shinkai.yaml", + "Shinobu Kocho": "shinobu-kocho.yaml", + "Shion": "shion.yaml", "SHIP-dark": "ship-dark.yaml", "SHIP-light": "ship-light.yaml", "shirotelin": "shirotelin.yaml", @@ -5490,17 +5966,25 @@ "shrek-contrast": "shrek-contrast.yaml", "shrek-light": "shrek-light.yaml", "Shuri Midnight": "shuri-midnight.yaml", + "ShuviTheme": "shuvitheme.yaml", + "shydl3": "shydl3.yaml", "Siberia": "siberia.yaml", "Side Punk - SQL": "side-punk-sql.yaml", "Sidev Monokai Dim Ts": "sidev-monokai-dim-ts.yaml", "Siemor": "siemor.yaml", "sign-theme-v3": "sign-theme-v3.yaml", "sign-theme-v4": "sign-theme-v4.yaml", + "siksnis.dev": "siksnis-dev.yaml", "silent-code": "silent-code.yaml", + "Silicon Dark": "silicon-dark.yaml", + "Silk-Petal": "silk-petal.yaml", + "SILO": "silo.yaml", "Silot (Dark Classic)": "silot-dark-classic.yaml", "Silvermist": "silvermist.yaml", "Silverwolf": "silverwolf.yaml", - "Simple Purple": "simple-purple.yaml", + "Simble": "simble.yaml", + "Simple Muted - Dark": "simple-muted-dark.yaml", + "Simple Muted - Light": "simple-muted-light.yaml", "Simple Red Dark": "simple-red-dark.yaml", "Simple Theme": "simple-theme.yaml", "simple-3000": "simple-3000.yaml", @@ -5510,10 +5994,8 @@ "Sinequanone Apple": "sinequanone-apple.yaml", "Sinequanone Brighton": "sinequanone-brighton.yaml", "Sinequanone Carbon": "sinequanone-carbon.yaml", - "Sinequanone Cerulean": "sinequanone-cerulean.yaml", "Sinequanone Noir": "sinequanone-noir.yaml", "Sinequanone Sunset": "sinequanone-sunset.yaml", - "Sinequanone Swan": "sinequanone-swan.yaml", "SinergyExt": "sinergyext.yaml", "Sirius-Astral": "sirius-astral.yaml", "Sirius-Glow": "sirius-glow.yaml", @@ -5523,8 +6005,8 @@ "Sirius-Vibe": "sirius-vibe.yaml", "Sirius-Vortex": "sirius-vortex.yaml", "Sirius-Zenith": "sirius-zenith.yaml", + "Sissi_Ga": "sissi-ga.yaml", "sith": "sith.yaml", - "Sizdah - Best of all": "sizdah-best-of-all.yaml", "Sizo Purple": "sizo-purple.yaml", "SJ Pinkish Theme": "sj-pinkish-theme.yaml", "SJ Theme": "sj-theme.yaml", @@ -5534,20 +6016,24 @@ "Sky Blue - Tranquility & Focus": "sky-blue-tranquility-focus.yaml", "sky-miami-vice": "sky-miami-vice.yaml", "sky-neon": "sky-neon.yaml", + "sky-real-abyss": "sky-real-abyss.yaml", "Skye-wind": "skye-wind.yaml", "Skye-wind-light": "skye-wind-light.yaml", "Skyline": "skyline.yaml", - "Slack Theme Aubergine": "slack-theme-aubergine.yaml", "Slack Theme Aubergine Dark": "slack-theme-aubergine-dark.yaml", "Slack Theme Aubergine New": "slack-theme-aubergine-new.yaml", "Slack Theme Dark": "slack-theme-dark.yaml", + "Slack Theme Hoth": "slack-theme-hoth.yaml", "slack-theme": "slack-theme.yaml", "slate": "slate.yaml", "Slate Black": "slate-black.yaml", "Slate Blackish": "slate-blackish.yaml", + "Slate Blue": "slate-blue.yaml", "Slate Gray": "slate-gray.yaml", + "Slate Neon": "slate-neon.yaml", "slate-contrast": "slate-contrast.yaml", "slate-light": "slate-light.yaml", + "Sleepy Nights": "sleepy-nights.yaml", "Sleepy Owl - Default (Beta)": "sleepy-owl-default-beta.yaml", "Sleepy Owl - Greenwich (Beta)": "sleepy-owl-greenwich-beta.yaml", "Sleepy Owl - Oak (Beta)": "sleepy-owl-oak-beta.yaml", @@ -5562,26 +6048,52 @@ "Slimy (light)": "slimy-light.yaml", "slinkwave": "slinkwave.yaml", "sloth-highlander-theme-1": "sloth-highlander-theme-1.yaml", - "sloth-highlander-theme-2": "sloth-highlander-theme-2.yaml", + "sloth-highlander-theme-3": "sloth-highlander-theme-3.yaml", "SmallTheme Carbon OLED": "smalltheme-carbon-oled.yaml", "smettboi-light": "smettboi-light.yaml", - "Smithy Bronze": "smithy-bronze.yaml", + "Smit Amber Monochrome": "smit-amber-monochrome.yaml", + "Smit Arctic Cyan": "smit-arctic-cyan.yaml", + "Smit Black Slate": "smit-black-slate.yaml", + "Smit Coffee": "smit-coffee.yaml", + "Smit Crimson Red": "smit-crimson-red.yaml", + "Smit Dark": "smit-dark.yaml", + "Smit Deep Ocean": "smit-deep-ocean.yaml", + "Smit Forest Green": "smit-forest-green.yaml", + "Smit Gruvbox Inspired": "smit-gruvbox-inspired.yaml", + "Smit High Contrast": "smit-high-contrast.yaml", + "Smit Low Light": "smit-low-light.yaml", + "Smit Matrix": "smit-matrix.yaml", + "Smit Midnight Purple": "smit-midnight-purple.yaml", + "Smit Minimal Dark": "smit-minimal-dark.yaml", + "Smit Monokai Inspired": "smit-monokai-inspired.yaml", + "Smit Neon Cyberpunk": "smit-neon-cyberpunk.yaml", + "Smit Soft Dark": "smit-soft-dark.yaml", + "Smit Sunset Orange": "smit-sunset-orange.yaml", + "Smit Synthwave": "smit-synthwave.yaml", + "Smithy Iron": "smithy-iron.yaml", + "Smoldering-Ember": "smoldering-ember.yaml", + "Smooth (dark)": "smooth-dark.yaml", + "Smooth (light)": "smooth-light.yaml", "Smooth Burn Dark": "smooth-burn-dark.yaml", "Smooth Burn Dark Hard": "smooth-burn-dark-hard.yaml", "Smooth Burn Dark Medium": "smooth-burn-dark-medium.yaml", "Smooth Burn Light Hard": "smooth-burn-light-hard.yaml", "Smoothity Dark": "smoothity-dark.yaml", + "SmoothTheme": "smooththeme.yaml", "Snakedye Chocolate": "snakedye-chocolate.yaml", - "snappy": "snappy.yaml", + "snap light": "snap-light.yaml", + "Snappier": "snappier.yaml", "snappy-contrast": "snappy-contrast.yaml", "snappy-light": "snappy-light.yaml", + "Snazzy": "snazzy.yaml", "Snazzy Light": "snazzy-light.yaml", "Snazzy Operator Natural": "snazzy-operator-natural.yaml", "Snazzy Solaris": "snazzy-solaris.yaml", "Snazzy vs theme": "snazzy-vs-theme.yaml", - "snazzy-operator-color-theme-dark-italics": "snazzy-operator-color-theme-dark-italics.yaml", + "snazzy-operator-color-theme": "snazzy-operator-color-theme.yaml", + "snazzy-operator-color-theme-dark": "snazzy-operator-color-theme-dark.yaml", "snazzy-operator-color-theme-italics": "snazzy-operator-color-theme-italics.yaml", - "snazzy-operator-plus-color-theme": "snazzy-operator-plus-color-theme.yaml", + "Snazzyfied": "snazzyfied.yaml", "snow theme": "snow-theme.yaml", "Snowflake-Dark-Theme": "snowflake-dark-theme.yaml", "Snowflake-Darker-Theme": "snowflake-darker-theme.yaml", @@ -5590,6 +6102,7 @@ "Snoword Light": "snoword-light.yaml", "Snoword Light Soft": "snoword-light-soft.yaml", "Snowpiercer": "snowpiercer.yaml", + "sober": "sober.yaml", "Sober": "sober.yaml", "Sober Afternoon": "sober-afternoon.yaml", "Sober Deepnight": "sober-deepnight.yaml", @@ -5599,27 +6112,28 @@ "SOCT-color-theme": "soct-color-theme.yaml", "Soda": "soda.yaml", "Soft Colors": "soft-colors.yaml", - "Soft Dark 2": "soft-dark-2.yaml", - "soft era (ellite edit)": "soft-era-ellite-edit.yaml", + "Soft Dark": "soft-dark.yaml", + "soft era": "soft-era.yaml", "soft kawaii theme 1-color-theme": "soft-kawaii-theme-1-color-theme.yaml", - "Soft Light 2": "soft-light-2.yaml", + "Soft Light": "soft-light.yaml", "Soft Material": "soft-material.yaml", "Soft Midnight": "soft-midnight.yaml", "Soft Mood Theme": "soft-mood-theme.yaml", "soft sight": "soft-sight.yaml", "Soft Sunset Dark": "soft-sunset-dark.yaml", "Soft Yellow Light": "soft-yellow-light.yaml", + "softie-theme": "softie-theme.yaml", "soho-color-theme": "soho-color-theme.yaml", "Soil Theme": "soil-theme.yaml", "Solar Drift Dark Theme": "solar-drift-dark-theme.yaml", "Solar Drift Darker Theme": "solar-drift-darker-theme.yaml", "Solar Flare": "solar-flare.yaml", "Solar Future": "solar-future.yaml", + "Solar-Flare": "solar-flare.yaml", "solarflare": "solarflare.yaml", "solarflare-contrast": "solarflare-contrast.yaml", "solarflare-light": "solarflare-light.yaml", "Solaris": "solaris.yaml", - "Solarized (Abydos)": "solarized-abydos.yaml", "Solarized (dark)": "solarized-dark.yaml", "Solarized (light)": "solarized-light.yaml", "Solarized Complete (Dark)": "solarized-complete-dark.yaml", @@ -5633,11 +6147,13 @@ "Solarized Monokai (dark)": "solarized-monokai-dark.yaml", "Solarized Neue": "solarized-neue.yaml", "Solarized Neue Bright": "solarized-neue-bright.yaml", + "Solarized Next": "solarized-next.yaml", "Solarized Pro": "solarized-pro.yaml", "Solarized Right": "solarized-right.yaml", "Solarized SS Light": "solarized-ss-light.yaml", "Solarized Yuki": "solarized-yuki.yaml", "Solarized-light-functional": "solarized-light-functional.yaml", + "solarized-simon": "solarized-simon.yaml", "Solarized+": "solarized.yaml", "Solarus": "solarus.yaml", "solaryss": "solaryss.yaml", @@ -5648,9 +6164,12 @@ "Solo Leveling": "solo-leveling.yaml", "Solstice Estival": "solstice-estival.yaml", "Solstice Hibernal": "solstice-hibernal.yaml", + "Solstice-Heat": "solstice-heat.yaml", "Somber": "somber.yaml", + "Something Different": "something-different.yaml", "Something Theme": "something-theme.yaml", "somewhere on a beach...": "somewhere-on-a-beach.yaml", + "Sonic-Pulse": "sonic-pulse.yaml", "Sonokai": "sonokai.yaml", "Sonokai Andromeda": "sonokai-andromeda.yaml", "Sonokai Atlantis": "sonokai-atlantis.yaml", @@ -5664,10 +6183,12 @@ "Soothing": "soothing.yaml", "Soothing Dark": "soothing-dark.yaml", "Soothing Light": "soothing-light.yaml", + "Sorbet-Swirl": "sorbet-swirl.yaml", "Sorcerer": "sorcerer.yaml", "Soudev mega dark": "soudev-mega-dark.yaml", "Soudev Purple Andromeda": "soudev-purple-andromeda.yaml", "Soudev semi dark Andromeda": "soudev-semi-dark-andromeda.yaml", + "Souei": "souei.yaml", "soul-theme": "soul-theme.yaml", "Souls Theme": "souls-theme.yaml", "soup": "soup.yaml", @@ -5704,7 +6225,6 @@ "spearmint": "spearmint.yaml", "spearmint-contrast": "spearmint-contrast.yaml", "spearmint-light": "spearmint-light.yaml", - "Spider Man": "spider-man.yaml", "SpiderVerse 2099": "spiderverse-2099.yaml", "SpiderVerse Miles": "spiderverse-miles.yaml", "SpiderVerse Spider-Man": "spiderverse-spider-man.yaml", @@ -5719,13 +6239,17 @@ "Spotly Dark": "spotly-dark.yaml", "Spotly Light": "spotly-light.yaml", "Spring": "spring.yaml", + "Spring Breeze Theme": "spring-breeze-theme.yaml", "sprinkles-color-theme": "sprinkles-color-theme.yaml", "spurlys theme": "spurlys-theme.yaml", "spyder-theme-light": "spyder-theme-light.yaml", "SQL Dark Pro - High Contrast": "sql-dark-pro-high-contrast.yaml", + "Squash Theme": "squash-theme.yaml", "Squeak": "squeak.yaml", "Srcery": "srcery.yaml", "Srcery-gagbo": "srcery-gagbo.yaml", + "ST: Borg": "st-borg.yaml", + "ST: LCARS": "st-lcars.yaml", "Stackmeister": "stackmeister.yaml", "stained-glass-dark": "stained-glass-dark.yaml", "stannum": "stannum.yaml", @@ -5754,10 +6278,12 @@ "stasis-contrast": "stasis-contrast.yaml", "stasis-light": "stasis-light.yaml", "stealth": "stealth.yaml", + "Stealth": "stealth.yaml", "stealth-contrast": "stealth-contrast.yaml", "stealth-light": "stealth-light.yaml", "Steel Blue Dark": "steel-blue-dark.yaml", "Steel Phantom": "steel-phantom.yaml", + "Steelbore": "steelbore.yaml", "Steffula": "steffula.yaml", "Stella": "stella.yaml", "Stella (High Contrast)": "stella-high-contrast.yaml", @@ -5765,33 +6291,45 @@ "Stellar": "stellar.yaml", "Stellar Void": "stellar-void.yaml", "Stereo Theme": "stereo-theme.yaml", + "stilla": "stilla.yaml", "Sto Classic": "sto-classic.yaml", "Sto Green": "sto-green.yaml", "Sto Green Dark": "sto-green-dark.yaml", "StoneRose": "stonerose.yaml", "storm": "storm.yaml", - "Storm Dark Pro": "storm-dark-pro.yaml", + "Storm": "storm.yaml", "Storm Tracker": "storm-tracker.yaml", "Storm Uvadark - Fork": "storm-uvadark-fork.yaml", "storm-contrast": "storm-contrast.yaml", "storm-light": "storm-light.yaml", "stormpetrel": "stormpetrel.yaml", - "StrangeBrew": "strangebrew.yaml", + "Stranger Theme: Dimension X": "stranger-theme-dimension-x.yaml", + "Stranger Theme: Hawkins": "stranger-theme-hawkins.yaml", + "Stranger Theme: Starcourt": "stranger-theme-starcourt.yaml", + "Stranger Theme: The Lab": "stranger-theme-the-lab.yaml", + "Stranger Theme: Tigers": "stranger-theme-tigers.yaml", + "Stranger Theme: Upside Down": "stranger-theme-upside-down.yaml", + "Studio-Apartment": "studio-apartment.yaml", "studio.bio Bio Dark Theme": "studio-bio-bio-dark-theme.yaml", + "styledark18": "styledark18.yaml", + "styledark28": "styledark28.yaml", + "stylelight33": "stylelight33.yaml", "stylelight35": "stylelight35.yaml", + "Stypt - Aether": "stypt-aether.yaml", "Subessence": "subessence.yaml", "Sublette": "sublette.yaml", "Sublime Breakers": "sublime-breakers.yaml", - "Sublime Mariana ⎯ Semantic Colorful": "sublime-mariana-semantic-colorful.yaml", + "Sublime Mariana ⎯ Semantic": "sublime-mariana-semantic.yaml", "Sublime Mariana ⎯ Test": "sublime-mariana-test.yaml", "Sublime Text 3": "sublime-text-3.yaml", "Sublime Text 4 Theme": "sublime-text-4-theme.yaml", - "sublime-monokai-color-theme": "sublime-monokai-color-theme.yaml", "sublime-vscode-theme": "sublime-vscode-theme.yaml", + "Subliminal Nightfall": "subliminal-nightfall.yaml", "Subliminal-color-theme": "subliminal-color-theme.yaml", - "SubliminalR - Next": "subliminalr-next.yaml", + "SubliminalR": "subliminalr.yaml", "subscribe-color": "subscribe-color.yaml", "Substrata": "substrata.yaml", + "Sucrose": "sucrose.yaml", "Sufocode": "sufocode.yaml", "Sugar Dark": "sugar-dark.yaml", "Sugar Dark Focus": "sugar-dark-focus.yaml", @@ -5808,6 +6346,7 @@ "Sulfuric Dark": "sulfuric-dark.yaml", "Sumiiro": "sumiiro.yaml", "summer": "summer.yaml", + "Summer": "summer.yaml", "Summer Night": "summer-night.yaml", "Summer Night Gray High Contrast": "summer-night-gray-high-contrast.yaml", "Summer Night High Contrast": "summer-night-high-contrast.yaml", @@ -5826,6 +6365,7 @@ "Sunset serenade": "sunset-serenade.yaml", "Sunset theme": "sunset-theme.yaml", "sunsplash-monodark": "sunsplash-monodark.yaml", + "Supa": "supa.yaml", "super": "super.yaml", "Super Dark Cyberpunk Green": "super-dark-cyberpunk-green.yaml", "Super Dark Cyberpunk Grey": "super-dark-cyberpunk-grey.yaml", @@ -5833,7 +6373,10 @@ "super-contrast": "super-contrast.yaml", "super-light": "super-light.yaml", "SuperBright": "superbright.yaml", + "SuperDark": "superdark.yaml", + "SuperGreatMonokai": "supergreatmonokai.yaml", "Superman Theme": "superman-theme.yaml", + "superNova": "supernova.yaml", "Supernova": "supernova.yaml", "Surreal": "surreal.yaml", "Susuwatari": "susuwatari.yaml", @@ -5869,6 +6412,7 @@ "Synthwave 84": "synthwave-84.yaml", "Synthwave Alpha": "synthwave-alpha.yaml", "SynthWave Material Ansi 16": "synthwave-material-ansi-16.yaml", + "Synthwave-Neon": "synthwave-neon.yaml", "synthy": "synthy.yaml", "Sypher": "sypher.yaml", "syrinx": "syrinx.yaml", @@ -5877,8 +6421,8 @@ "T-Theme": "t-theme.yaml", "T3chDad Darkside - Fork": "t3chdad-darkside-fork.yaml", "t3nsor-solo-leveling": "t3nsor-solo-leveling.yaml", - "TabyCord": "tabycord.yaml", "Taco Syntax": "taco-syntax.yaml", + "Tactical-Ops": "tactical-ops.yaml", "tahigh": "tahigh.yaml", "Taiga": "taiga.yaml", "Tail Dark Theme": "tail-dark-theme.yaml", @@ -5952,13 +6496,15 @@ "Tara-Theme-Carbon": "tara-theme-carbon.yaml", "Tara-Theme-Carbon-High-Contrast": "tara-theme-carbon-high-contrast.yaml", "Tara-Theme-Deepforest": "tara-theme-deepforest.yaml", - "Tara-Theme-Graphene": "tara-theme-graphene.yaml", "Tara-Theme-Ocean": "tara-theme-ocean.yaml", "Tara-Theme-Palenight": "tara-theme-palenight.yaml", "Tara-Theme-Teal": "tara-theme-teal.yaml", "TaraMandal Aurora": "taramandal-aurora.yaml", "TaraMandal Dark": "taramandal-dark.yaml", "TaraMandal True Cream": "taramandal-true-cream.yaml", + "Tarbooz Dark": "tarbooz-dark.yaml", + "Tarbooz Light": "tarbooz-light.yaml", + "Tarbooz Underripe": "tarbooz-underripe.yaml", "Tasmania Dark": "tasmania-dark.yaml", "Tasmania Light": "tasmania-light.yaml", "Taurus": "taurus.yaml", @@ -5968,12 +6514,16 @@ "Tea Leaves": "tea-leaves.yaml", "Teags": "teags.yaml", "teal": "teal.yaml", + "Teal Abyss": "teal-abyss.yaml", "Teal Crow Light": "teal-crow-light.yaml", "Tealicious": "tealicious.yaml", "tealy": "tealy.yaml", "Team Pastel Colors Theme": "team-pastel-colors-theme.yaml", + "Tears of the Kingdom - – Minimal Dark": "tears-of-the-kingdom-minimal-dark.yaml", + "Tears of the Kingdom – Minimal Dark (Midnight)": "tears-of-the-kingdom-minimal-dark-midnight.yaml", "Tearz": "tearz.yaml", "TechRazor Pro": "techrazor-pro.yaml", + "techset": "techset.yaml", "TechStudent10": "techstudent10.yaml", "TechSwahili Color Theme": "techswahili-color-theme.yaml", "TechSwahili Deep": "techswahili-deep.yaml", @@ -5991,12 +6541,14 @@ "Terafox": "terafox.yaml", "Term": "term.yaml", "Terminal": "terminal.yaml", + "Terminal - Fork": "terminal-fork.yaml", "TerraceCat": "terracecat.yaml", "Terrarium Minimal (Dark)": "terrarium-minimal-dark.yaml", "Terrarium Minimal (Light)": "terrarium-minimal-light.yaml", "Terrorboy-dark": "terrorboy-dark.yaml", "tesselate": "tesselate.yaml", "Tesseract Dark": "tesseract-dark.yaml", + "test": "test.yaml", "Test": "test.yaml", "tetra": "tetra.yaml", "tetra-contrast": "tetra-contrast.yaml", @@ -6006,6 +6558,7 @@ "Thanatos": "thanatos.yaml", "ThatDataPurple": "thatdatapurple.yaml", "The Best Theme Ever": "the-best-theme-ever.yaml", + "The Best VsCode Theme Ever - Light": "the-best-vscode-theme-ever-light.yaml", "The Dark Stove": "the-dark-stove.yaml", "The Digital Life": "the-digital-life.yaml", "The druid": "the-druid.yaml", @@ -6025,18 +6578,20 @@ "the-orchid-soft": "the-orchid-soft.yaml", "theAIsphere-dark": "theaisphere-dark.yaml", "theAIsphere-light": "theaisphere-light.yaml", + "TheBear-Dark": "thebear-dark.yaml", "TheBestThemeAlive": "thebestthemealive.yaml", + "TheCodeDoctor": "thecodedoctor.yaml", "TheDarkerOne": "thedarkerone.yaml", "Themarro": "themarro.yaml", "Themarro Dark Contrast": "themarro-dark-contrast.yaml", "Themarro David Remix": "themarro-david-remix.yaml", "theme": "theme.yaml", "Theme": "theme.yaml", + "Thème Dark Aout - Contraste Élevé": "th-me-dark-aout-contraste-lev.yaml", "Thème Dark Avril - Vert Printemps": "th-me-dark-avril-vert-printemps.yaml", "Thème Dark Janvier - Bleu Foncé": "th-me-dark-janvier-bleu-fonc.yaml", "Thème Dark Juillet - Contraste Élevé": "th-me-dark-juillet-contraste-lev.yaml", "Thème Dark Juin - High Contrast": "th-me-dark-juin-high-contrast.yaml", - "Thème Dark Septembre - Contraste Élevé": "th-me-dark-septembre-contraste-lev.yaml", "Theme For Codes - Dark": "theme-for-codes-dark.yaml", "Theme For Codes - Light": "theme-for-codes-light.yaml", "Thème High Contrast Janvier - Révisé": "th-me-high-contrast-janvier-r-vis.yaml", @@ -6045,15 +6600,18 @@ "Theme_stick_green_dark": "theme-stick-green-dark.yaml", "theme-bear": "theme-bear.yaml", "theme-joey": "theme-joey.yaml", - "theme-mk 1 green": "theme-mk-1-green.yaml", + "theme-mk black": "theme-mk-black.yaml", "theme-mk rebuilt": "theme-mk-rebuilt.yaml", "theme-nickel": "theme-nickel.yaml", "Theme-Y-Random": "theme-y-random.yaml", + "Theme1": "theme1.yaml", "Theme³": "theme.yaml", "Theme³ Dark": "theme-dark.yaml", "ThemeDarker": "themedarker.yaml", "ThemeFramek": "themeframek.yaml", "themegreen": "themegreen.yaml", + "Themello": "themello.yaml", + "ThemeMix": "thememix.yaml", "themename": "themename.yaml", "Themenis": "themenis.yaml", "ThemeO": "themeo.yaml", @@ -6062,6 +6620,7 @@ "Themer Light": "themer-light.yaml", "Themin - Mint": "themin-mint.yaml", "Theo-Swarg-Dark": "theo-swarg-dark.yaml", + "thePurple": "thepurple.yaml", "ThinkStorm": "thinkstorm.yaml", "Thore Blue": "thore-blue.yaml", "Thorn": "thorn.yaml", @@ -6120,8 +6679,11 @@ "Tlapalli l-06: Jade Light": "tlapalli-l-06-jade-light.yaml", "Tlapalli l-07: Fire Opal Light": "tlapalli-l-07-fire-opal-light.yaml", "tm2rd3": "tm2rd3.yaml", + "TMNT Dark Theme": "tmnt-dark-theme.yaml", "tnove-dark-theme": "tnove-dark-theme.yaml", + "Tô on no código": "t-on-no-c-digo.yaml", "Tobirama Water Style": "tobirama-water-style.yaml", + "TodePond Theme": "todepond-theme.yaml", "Tokito Inspired": "tokito-inspired.yaml", "tokv7": "tokv7.yaml", "Tokyo": "tokyo.yaml", @@ -6135,7 +6697,6 @@ "Tokyo Lights": "tokyo-lights.yaml", "Tokyo Midnight": "tokyo-midnight.yaml", "Tokyo Modern": "tokyo-modern.yaml", - "Tokyo Night": "tokyo-night.yaml", "Tokyo Night Blackout": "tokyo-night-blackout.yaml", "Tokyo Night Bright": "tokyo-night-bright.yaml", "Tokyo Night Dark": "tokyo-night-dark.yaml", @@ -6143,10 +6704,11 @@ "Tokyo Night Light": "tokyo-night-light.yaml", "Tokyo Night nv": "tokyo-night-nv.yaml", "Tokyo Night Pure": "tokyo-night-pure.yaml", - "Tokyo Night Storm": "tokyo-night-storm.yaml", "Tokyo Night Void": "tokyo-night-void.yaml", "Tokyo Panda": "tokyo-panda.yaml", "tokyo-dive": "tokyo-dive.yaml", + "tokyo-night-theme": "tokyo-night-theme.yaml", + "TokyoGo": "tokyogo.yaml", "tokyoNIGHT": "tokyonight.yaml", "TokyoNight Moon (Lazy)": "tokyonight-moon-lazy.yaml", "Tol": "tol.yaml", @@ -6171,11 +6733,11 @@ "Tranquillity-theme": "tranquillity-theme.yaml", "Trans Pride Light (Naomi)": "trans-pride-light-naomi.yaml", "Transylvania": "transylvania.yaml", + "Tree-Hugger": "tree-hugger.yaml", "Triad Dragon": "triad-dragon.yaml", "tribal": "tribal.yaml", "tribal-contrast": "tribal-contrast.yaml", "tribal-light": "tribal-light.yaml", - "TriOptimized": "trioptimized.yaml", "Tristan": "tristan.yaml", "Triumph": "triumph.yaml", "Triumph v2": "triumph-v2.yaml", @@ -6186,19 +6748,22 @@ "trsm-night-eyes": "trsm-night-eyes.yaml", "True Dark": "true-dark.yaml", "trueAmber": "trueamber.yaml", + "Tsoding Daily - 2024": "tsoding-daily-2024.yaml", "Tsuki": "tsuki.yaml", "tsukiroku dark": "tsukiroku-dark.yaml", + "Tsukuyomi": "tsukuyomi.yaml", "Tsukuyomi (Light)": "tsukuyomi-light.yaml", - "Tsukuyomi (No Italics)": "tsukuyomi-no-italics.yaml", "Tsumiki Theme": "tsumiki-theme.yaml", - "tTheme": "ttheme.yaml", "Tudoroxo": "tudoroxo.yaml", + "tulin.design": "tulin-design.yaml", "Tundra Dusk": "tundra-dusk.yaml", "Turbo": "turbo.yaml", "Turbo C 3.0 Borland Style": "turbo-c-3-0-borland-style.yaml", "turnip": "turnip.yaml", "turnip-contrast": "turnip-contrast.yaml", "turnip-light": "turnip-light.yaml", + "Turnstyle": "turnstyle.yaml", + "Turnstyle Darker": "turnstyle-darker.yaml", "Turquesa/bege": "turquesa-bege.yaml", "Tutilabs Theme": "tutilabs-theme.yaml", "TW40 - Gigi": "tw40-gigi.yaml", @@ -6210,21 +6775,25 @@ "Twilight Cosmos": "twilight-cosmos.yaml", "Twilight Pro": "twilight-pro.yaml", "Twilight Sage": "twilight-sage.yaml", + "Twilight-Bloom": "twilight-bloom.yaml", "TwilightSparkle": "twilightsparkle.yaml", "Twilite": "twilite.yaml", "Twilite (Darker)": "twilite-darker.yaml", "Twin Black": "twin-black.yaml", "Twin Blue": "twin-blue.yaml", "Two Firewatch": "two-firewatch.yaml", + "Two Monokai": "two-monokai.yaml", + "Two Monokai Darker": "two-monokai-darker.yaml", "TwoDark": "twodark.yaml", "Tycho Crater": "tycho-crater.yaml", "tyh-theme-dark": "tyh-theme-dark.yaml", + "TypeDark Cyan": "typedark-cyan.yaml", "TypeDark Magenta": "typedark-magenta.yaml", - "TypeDark Yellow": "typedark-yellow.yaml", "Tyrell Corporation": "tyrell-corporation.yaml", "Tyrian Night": "tyrian-night.yaml", - "Tyrone Neon - 24K Gold": "tyrone-neon-24k-gold.yaml", + "Tyrone Neon - Red": "tyrone-neon-red.yaml", "Ubuntu Dark": "ubuntu-dark.yaml", + "UDT Eclipse (light)": "udt-eclipse-light.yaml", "ui_color": "ui-color.yaml", "ukiyo": "ukiyo.yaml", "Ukiyo-e Aged Manuscript": "ukiyo-e-aged-manuscript.yaml", @@ -6240,6 +6809,7 @@ "Ultra Instinct Mastered": "ultra-instinct-mastered.yaml", "Ultra Instinct Mastered (Light)": "ultra-instinct-mastered-light.yaml", "Ultra Instinct Sign": "ultra-instinct-sign.yaml", + "Ultrafocus - Fork - Fork": "ultrafocus-fork-fork.yaml", "umbra": "umbra.yaml", "Umi": "umi.yaml", "UMP 45 / LEVA": "ump-45-leva.yaml", @@ -6248,7 +6818,7 @@ "Under Theme": "under-theme.yaml", "Underdark - Fork": "underdark-fork.yaml", "Underdark v2": "underdark-v2.yaml", - "Understated (no-italics)": "understated-no-italics.yaml", + "Understated": "understated.yaml", "Unicorn": "unicorn.yaml", "Unicorn dark": "unicorn-dark.yaml", "unicornio dark": "unicornio-dark.yaml", @@ -6257,9 +6827,9 @@ "UnitSmash": "unitsmash.yaml", "Unity Theme": "unity-theme.yaml", "Universe": "universe.yaml", - "Universe Gray Italic": "universe-gray-italic.yaml", + "Universe Gray": "universe-gray.yaml", "Universe Italic": "universe-italic.yaml", - "Universe Purple Italic": "universe-purple-italic.yaml", + "Universe Purple": "universe-purple.yaml", "Unlight v.2": "unlight-v-2.yaml", "Untitled": "untitled.yaml", "Untitled - Fork": "untitled-fork.yaml", @@ -6267,12 +6837,14 @@ "UnyoDusk": "unyodusk.yaml", "updog": "updog.yaml", "updog light": "updog-light.yaml", - "Upward Dark (Focus Border On)": "upward-dark-focus-border-on.yaml", - "Upward Dark Legacy (Focus Border On)": "upward-dark-legacy-focus-border-on.yaml", + "Upward Dark": "upward-dark.yaml", + "Upward Dark Legacy": "upward-dark-legacy.yaml", "Urara": "urara.yaml", "Urban Couple": "urban-couple.yaml", "Urban Forge": "urban-forge.yaml", "Urban Glow": "urban-glow.yaml", + "UrbanJungle": "urbanjungle.yaml", + "ursa": "ursa.yaml", "user160": "user160.yaml", "userscape": "userscape.yaml", "userscape-contrast": "userscape-contrast.yaml", @@ -6286,15 +6858,17 @@ "vaatu": "vaatu.yaml", "Vagalume Dev": "vagalume-dev.yaml", "VAGruvboxTheme-color-theme": "vagruvboxtheme-color-theme.yaml", + "Vague": "vague.yaml", "Vague neovim Theme Extended": "vague-neovim-theme-extended.yaml", "Vague neovim Theme Extended Light": "vague-neovim-theme-extended-light.yaml", "Valary": "valary.yaml", "valkthor-dark-theme": "valkthor-dark-theme.yaml", - "Valley Italic": "valley-italic.yaml", + "Valley": "valley.yaml", "Valorant Theme - Darker": "valorant-theme-darker.yaml", "Valorant Theme - Remasterd": "valorant-theme-remasterd.yaml", "vampurr": "vampurr.yaml", "Van Gogh Theme": "van-gogh-theme.yaml", + "Vanguard-Strike": "vanguard-strike.yaml", "Vanilla": "vanilla.yaml", "vanilla-jade": "vanilla-jade.yaml", "vapor": "vapor.yaml", @@ -6307,7 +6881,6 @@ "Vaporizer Cloudy Light": "vaporizer-cloudy-light.yaml", "Vaporizer Cobalt Dark": "vaporizer-cobalt-dark.yaml", "Vaporizer Crescent Dark": "vaporizer-crescent-dark.yaml", - "Vaporizer Dark Blue Green": "vaporizer-dark-blue-green.yaml", "Vaporizer Dark Cherry": "vaporizer-dark-cherry.yaml", "Vaporizer Dark Coffee": "vaporizer-dark-coffee.yaml", "Vaporizer Dark Cool 1": "vaporizer-dark-cool-1.yaml", @@ -6318,10 +6891,11 @@ "Vaporizer Dark Cyber Neon 3": "vaporizer-dark-cyber-neon-3.yaml", "Vaporizer Dark Ivy": "vaporizer-dark-ivy.yaml", "Vaporizer Dark Joker": "vaporizer-dark-joker.yaml", - "Vaporizer Dark Matrix 1": "vaporizer-dark-matrix-1.yaml", + "Vaporizer Dark Matrix 2": "vaporizer-dark-matrix-2.yaml", "Vaporizer Dark Monterey": "vaporizer-dark-monterey.yaml", "Vaporizer Dark Painting": "vaporizer-dark-painting.yaml", "Vaporizer Dark Pansy": "vaporizer-dark-pansy.yaml", + "Vaporizer Dark Red": "vaporizer-dark-red.yaml", "Vaporizer Dark Stabilo": "vaporizer-dark-stabilo.yaml", "Vaporizer Dark Turquoise": "vaporizer-dark-turquoise.yaml", "Vaporizer Epic Red Dark": "vaporizer-epic-red-dark.yaml", @@ -6347,8 +6921,8 @@ "Vase with Twelve Sunflowers": "vase-with-twelve-sunflowers.yaml", "vasses-tricolor-theme": "vasses-tricolor-theme.yaml", "vColdTheme": "vcoldtheme.yaml", + "vd": "vd.yaml", "Vegas Night Details Theme": "vegas-night-details-theme.yaml", - "vegetable": "vegetable.yaml", "vegetable-contrast": "vegetable-contrast.yaml", "vegetable-light": "vegetable-light.yaml", "vegetation": "vegetation.yaml", @@ -6372,6 +6946,7 @@ "Venom Theme": "venom-theme.yaml", "Vercel": "vercel.yaml", "Vercel Light": "vercel-light.yaml", + "verdant": "verdant.yaml", "Verdantium": "verdantium.yaml", "Verdure": "verdure.yaml", "version 1.0.5": "version-1-0-5.yaml", @@ -6406,7 +6981,6 @@ "Victoria Dark": "victoria-dark.yaml", "Victoria Light": "victoria-light.yaml", "Video-Contrast": "video-contrast.yaml", - "VigerDark": "vigerdark.yaml", "Vigikai": "vigikai.yaml", "VIII-III-MMV": "viii-iii-mmv.yaml", "Vikkie!!! Dark": "vikkie-dark.yaml", @@ -6414,24 +6988,23 @@ "villain-dark": "villain-dark.yaml", "villain-light": "villain-light.yaml", "Vim Dar11sdasdasd": "vim-dar11sdasdasd.yaml", - "Vim Dark Hard": "vim-dark-hard.yaml", "Vim Dark Medium": "vim-dark-medium.yaml", "Vim Dark Soft": "vim-dark-soft.yaml", "Vim Light 1": "vim-light-1.yaml", "Vim Light 2": "vim-light-2.yaml", - "Vim Light 3b": "vim-light-3b.yaml", - "Vim Light Hard": "vim-light-hard.yaml", - "Vim Light Medium": "vim-light-medium.yaml", + "Vim Light 3": "vim-light-3.yaml", "Vim Light Soft": "vim-light-soft.yaml", "Vim Night": "vim-night.yaml", "vin theme": "vin-theme.yaml", "vintage": "vintage.yaml", "Vintage Rust Theme": "vintage-rust-theme.yaml", + "Vintage-Heritage": "vintage-heritage.yaml", "vintage-serene": "vintage-serene.yaml", "Vinyl": "vinyl.yaml", "violaceous": "violaceous.yaml", "violaceous-contrast": "violaceous-contrast.yaml", "violaceous-light": "violaceous-light.yaml", + "violet": "violet.yaml", "Violet Dream": "violet-dream.yaml", "Violet Night": "violet-night.yaml", "Violet Nova": "violet-nova.yaml", @@ -6442,26 +7015,26 @@ "vision-light-colorblind": "vision-light-colorblind.yaml", "Visual Studio & Github Light Plus": "visual-studio-github-light-plus.yaml", "Visual Studio Code Dark Theme": "visual-studio-code-dark-theme.yaml", + "Visual Studio Dark 2019": "visual-studio-dark-2019.yaml", + "Visual Studio Dark 2026": "visual-studio-dark-2026.yaml", "VisualOS": "visualos.yaml", "VitePress Theme Vite Dark": "vitepress-theme-vite-dark.yaml", - "Vitesse Black": "vitesse-black.yaml", - "Vitesse Dark": "vitesse-dark.yaml", "Vitesse Dark Custom": "vitesse-dark-custom.yaml", "Vitesse Dark Soft": "vitesse-dark-soft.yaml", "Vitesse Dragon": "vitesse-dragon.yaml", "Vitesse Dragon Dark": "vitesse-dragon-dark.yaml", "Vitesse Green Theme": "vitesse-green-theme.yaml", - "Vitesse Light": "vitesse-light.yaml", - "Vitesse Light Soft": "vitesse-light-soft.yaml", "Vitesse WebStorm Dark": "vitesse-webstorm-dark.yaml", "vitrioleuse": "vitrioleuse.yaml", + "Vitruvian": "vitruvian.yaml", "Vivid Blue": "vivid-blue.yaml", "VividNord": "vividnord.yaml", "Vivido Theme": "vivido-theme.yaml", + "vixn-dark": "vixn-dark.yaml", "vkt-theme": "vkt-theme.yaml", "Void": "void.yaml", "Void Iris": "void-iris.yaml", - "Void Script": "void-script.yaml", + "Void Nebula": "void-nebula.yaml", "vøid-contrast": "v-id-contrast.yaml", "vøid-soft": "v-id-soft.yaml", "Voidbloom Quazar": "voidbloom-quazar.yaml", @@ -6486,10 +7059,29 @@ "vsblue": "vsblue.yaml", "VSC Military Style": "vsc-military-style.yaml", "Vsc-Blue-theme": "vsc-blue-theme.yaml", + "vsc-cyberpunk2077-theme-color-theme": "vsc-cyberpunk2077-theme-color-theme.yaml", + "vsc-minimalist-theme-flat": "vsc-minimalist-theme-flat.yaml", "vsc-minimalist-theme-oak": "vsc-minimalist-theme-oak.yaml", "vsc-minimalist-theme-obsidian": "vsc-minimalist-theme-obsidian.yaml", "vsc-minimalist-theme-odp": "vsc-minimalist-theme-odp.yaml", "vsc-solarized-light": "vsc-solarized-light.yaml", + "VSCode Forest Pro Chartreuse": "vscode-forest-pro-chartreuse.yaml", + "VSCode Forest Pro Dark Green": "vscode-forest-pro-dark-green.yaml", + "VSCode Forest Pro Enterprise": "vscode-forest-pro-enterprise.yaml", + "VSCode Forest Pro Enterprise - Accessibility Enhanced": "vscode-forest-pro-enterprise-accessibility-enhanced.yaml", + "VSCode Forest Pro Enterprise Light": "vscode-forest-pro-enterprise-light.yaml", + "VSCode Forest Pro Hunter Green": "vscode-forest-pro-hunter-green.yaml", + "VSCode Forest Pro Jade": "vscode-forest-pro-jade.yaml", + "VSCode Forest Pro Kelly Green": "vscode-forest-pro-kelly-green.yaml", + "VSCode Forest Pro Mint Green": "vscode-forest-pro-mint-green.yaml", + "VSCode Forest Pro Moss Green": "vscode-forest-pro-moss-green.yaml", + "VSCode Forest Pro Olive": "vscode-forest-pro-olive.yaml", + "VSCode Forest Pro Pale Green": "vscode-forest-pro-pale-green.yaml", + "VSCode Forest Pro Pine Green": "vscode-forest-pro-pine-green.yaml", + "VSCode Forest Pro Sea Green": "vscode-forest-pro-sea-green.yaml", + "VSCode Forest Pro Shamrock": "vscode-forest-pro-shamrock.yaml", + "VSCode Forest Pro Spring Green": "vscode-forest-pro-spring-green.yaml", + "VSCode Forest Pro Tea Green": "vscode-forest-pro-tea-green.yaml", "VSCode Nofrils Dark": "vscode-nofrils-dark.yaml", "VSCode Nofrils GitHub Light": "vscode-nofrils-github-light.yaml", "VSCode Nofrils Gruvbox Dark": "vscode-nofrils-gruvbox-dark.yaml", @@ -6501,10 +7093,10 @@ "VSCode Nofrils Tokyo Night": "vscode-nofrils-tokyo-night.yaml", "VSCode Theme": "vscode-theme.yaml", "vscode-bt-feynuus-color-theme": "vscode-bt-feynuus-color-theme.yaml", + "VSCODE-EPIC-color-theme": "vscode-epic-color-theme.yaml", "vscode-material-ui": "vscode-material-ui.yaml", "vscode-pink-and-puple-theme": "vscode-pink-and-puple-theme.yaml", "vscode-sublime-ish": "vscode-sublime-ish.yaml", - "VSCyberpunk 2077": "vscyberpunk-2077.yaml", "VSMuted-color-theme": "vsmuted-color-theme.yaml", "VSNordTheme-dark-contrast-color-theme": "vsnordtheme-dark-contrast-color-theme.yaml", "VSNordTheme-light-color-theme": "vsnordtheme-light-color-theme.yaml", @@ -6512,7 +7104,6 @@ "VSTheme No Italics": "vstheme-no-italics.yaml", "VSToolKit Theme Dark": "vstoolkit-theme-dark.yaml", "VueJS Theme": "vuejs-theme.yaml", - "VulpoTheme": "vulpotheme.yaml", "vxcode blush": "vxcode-blush.yaml", "vxcode cream": "vxcode-cream.yaml", "vxcode dark": "vxcode-dark.yaml", @@ -6520,15 +7111,14 @@ "vxcode lavender": "vxcode-lavender.yaml", "vxcode lime": "vxcode-lime.yaml", "vxcode OLED": "vxcode-oled.yaml", - "W30": "w30.yaml", "w40 Theme": "w40-theme.yaml", "Walking in the dark - RED": "walking-in-the-dark-red.yaml", "wallbash": "wallbash.yaml", "Walloco Light Theme": "walloco-light-theme.yaml", "walls-fill": "walls-fill.yaml", "Wandering Mercenary": "wandering-mercenary.yaml", + "Wangyj Black": "wangyj-black.yaml", "Wangyj Bright Black": "wangyj-bright-black.yaml", - "Wangyj Contrast Black": "wangyj-contrast-black.yaml", "wangyj-film-black": "wangyj-film-black.yaml", "wangyj-film-light": "wangyj-film-light.yaml", "warlock": "warlock.yaml", @@ -6545,16 +7135,20 @@ "waste-light": "waste-light.yaml", "Water Grape": "water-grape.yaml", "Waterbyte - Classic 2022 Light": "waterbyte-classic-2022-light.yaml", + "WaterCourse": "watercourse.yaml", "Watermelon": "watermelon.yaml", + "Wave Delight VS Dark Cool": "wave-delight-vs-dark-cool.yaml", "WaveFire": "wavefire.yaml", - "Waves": "waves.yaml", + "wawdog-dark": "wawdog-dark.yaml", "wDark Theme": "wdark-theme.yaml", "webc-dark": "webc-dark.yaml", "Webstorm Darcula Dark Theme": "webstorm-darcula-dark-theme.yaml", "Webstorm IntelliJ Darcula Theme": "webstorm-intellij-darcula-theme.yaml", "WebStorm Monokai": "webstorm-monokai.yaml", "weiting_candycolor": "weiting-candycolor.yaml", + "weitingcoder": "weitingcoder.yaml", "West Bengal - Cultural Hub": "west-bengal-cultural-hub.yaml", + "Westmont Dark": "westmont-dark.yaml", "What The Hell": "what-the-hell.yaml", "wheel-color-theme": "wheel-color-theme.yaml", "wheel-light-color-theme": "wheel-light-color-theme.yaml", @@ -6563,8 +7157,6 @@ "White Shade Color": "white-shade-color.yaml", "White Winter": "white-winter.yaml", "white-blue-demo": "white-blue-demo.yaml", - "White-color-theme": "white-color-theme.yaml", - "White-Night-color-theme": "white-night-color-theme.yaml", "Whiteboard": "whiteboard.yaml", "WhiteSpace": "whitespace.yaml", "Wick": "wick.yaml", @@ -6578,8 +7170,6 @@ "WildWest": "wildwest.yaml", "Will-o'-Wisp Theme": "will-o-wisp-theme.yaml", "willasm.emerald.sky": "willasm-emerald-sky.yaml", - "Willi-Style Darker": "willi-style-darker.yaml", - "Willi-Style Darkest": "willi-style-darkest.yaml", "Willi-Style Dracula flavour": "willi-style-dracula-flavour.yaml", "willow": "willow.yaml", "Win XP Luna": "win-xp-luna.yaml", @@ -6588,6 +7178,7 @@ "wind": "wind.yaml", "Wind Dark Slate": "wind-dark-slate.yaml", "Wind Dark Zinc": "wind-dark-zinc.yaml", + "Wind Light Neutral": "wind-light-neutral.yaml", "Windows 95 Theme": "windows-95-theme.yaml", "Windows NT": "windows-nt.yaml", "Windows Xp Dark Luna": "windows-xp-dark-luna.yaml", @@ -6598,6 +7189,8 @@ "Winter Pearl": "winter-pearl.yaml", "WinterIsCoding": "winteriscoding.yaml", "WinterIsCoding Gift": "winteriscoding-gift.yaml", + "Winternacht Dark": "winternacht-dark.yaml", + "Winternacht Light": "winternacht-light.yaml", "wired": "wired.yaml", "wired lighter": "wired-lighter.yaml", "Wise Owl Material": "wise-owl-material.yaml", @@ -6609,11 +7202,15 @@ "Witchy Dark": "witchy-dark.yaml", "WL-Acid Wash": "wl-acid-wash.yaml", "WL-Amber Monitor": "wl-amber-monitor.yaml", + "WL-Aurora Glow": "wl-aurora-glow.yaml", "WL-Chrome Dreams": "wl-chrome-dreams.yaml", + "WL-Chrome Noir": "wl-chrome-noir.yaml", "WL-Cosmic Drift": "wl-cosmic-drift.yaml", "WL-Crystal Cave": "wl-crystal-cave.yaml", "WL-Cyber Punk": "wl-cyber-punk.yaml", + "WL-Cyber Rain": "wl-cyber-rain.yaml", "WL-Data Stream": "wl-data-stream.yaml", + "WL-Dial Tone": "wl-dial-tone.yaml", "WL-Disco Ball": "wl-disco-ball.yaml", "WL-Electric Dreams": "wl-electric-dreams.yaml", "WL-Electric Sunset": "wl-electric-sunset.yaml", @@ -6645,17 +7242,22 @@ "WL-Synthwave Rider": "wl-synthwave-rider.yaml", "WL-Tape Deck": "wl-tape-deck.yaml", "WL-Terminal Green": "wl-terminal-green.yaml", + "WL-Turbo Boost": "wl-turbo-boost.yaml", "WL-Vacuum Glow": "wl-vacuum-glow.yaml", "WL-Velvet Night": "wl-velvet-night.yaml", "WL-Volt Surge": "wl-volt-surge.yaml", "WL-Zen Twilight": "wl-zen-twilight.yaml", + "WolfTheme": "wolftheme.yaml", "Wolves League Dark": "wolves-league-dark.yaml", + "Woods": "woods.yaml", "Woodsmoke": "woodsmoke.yaml", "Wookie": "wookie.yaml", "word-color-theme": "word-color-theme.yaml", "word-dark-theme": "word-dark-theme.yaml", "Wordsmith Dark": "wordsmith-dark.yaml", "Wordsmith Light": "wordsmith-light.yaml", + "Workplace-Chatter": "workplace-chatter.yaml", + "wow!": "wow.yaml", "wrkspace-theme": "wrkspace-theme.yaml", "Wuthering Waves : Aemeath": "wuthering-waves-aemeath.yaml", "Wuthering Waves : Aemeath (Dark)": "wuthering-waves-aemeath-dark.yaml", @@ -6705,6 +7307,7 @@ "Wye Dark Soft": "wye-dark-soft.yaml", "Wye Light": "wye-light.yaml", "Wye Light Soft": "wye-light-soft.yaml", + "X": "x.yaml", "Xaeon Dark": "xaeon-dark.yaml", "xaidozy_Color": "xaidozy-color.yaml", "Xanthron Light": "xanthron-light.yaml", @@ -6713,8 +7316,12 @@ "xcode-dark": "xcode-dark.yaml", "Xecoy Dark": "xecoy-dark.yaml", "Xecoy Light": "xecoy-light.yaml", + "Xenon": "xenon.yaml", + "Xerobi Dark Theme": "xerobi-dark-theme.yaml", + "Xerobi Light Theme": "xerobi-light-theme.yaml", "Xiali Vintage Rose Dark": "xiali-vintage-rose-dark.yaml", "Xiali Vintage Rose Light": "xiali-vintage-rose-light.yaml", + "Xikreti": "xikreti.yaml", "xis_one": "xis-one.yaml", "XK Dark Catppuccin Mocha": "xk-dark-catppuccin-mocha.yaml", "XK Dark Dracula": "xk-dark-dracula.yaml", @@ -6732,8 +7339,8 @@ "xotopio": "xotopio.yaml", "Xpyjs Black": "xpyjs-black.yaml", "xresources": "xresources.yaml", - "xresources_bordered_dark": "xresources-bordered-dark.yaml", - "xresources_bordered_mixed": "xresources-bordered-mixed.yaml", + "xresources_bordered": "xresources-bordered.yaml", + "xresources_normal_dark": "xresources-normal-dark.yaml", "xresources-bordered": "xresources-bordered.yaml", "xrodev": "xrodev.yaml", "xs": "xs.yaml", @@ -6747,24 +7354,22 @@ "y3m": "y3m.yaml", "yaast": "yaast.yaml", "yagnesh": "yagnesh.yaml", - "yagomaia-theme": "yagomaia-theme.yaml", "yalpha-dark-eris": "yalpha-dark-eris.yaml", "Yami Blue": "yami-blue.yaml", "Yanbaru Shadow": "yanbaru-shadow.yaml", + "YANUS": "yanus.yaml", "Yarra Valley": "yarra-valley.yaml", "Yaru": "yaru.yaml", "Yaru Dark": "yaru-dark.yaml", - "Yaru Dark Grape": "yaru-dark-grape.yaml", "Yaruna Aurora": "yaruna-aurora.yaml", "Yaruna Forest": "yaruna-forest.yaml", "Yaruna Midnight": "yaruna-midnight.yaml", "Yaruna Nova": "yaruna-nova.yaml", - "Yaruna Palenight": "yaruna-palenight.yaml", - "yazbi": "yazbi.yaml", "YD Dark": "yd-dark.yaml", "YD Light": "yd-light.yaml", "Ydrgzm LIGHT Theme": "ydrgzm-light-theme.yaml", "Yelan": "yelan.yaml", + "Yell": "yell.yaml", "Yellow Beryl": "yellow-beryl.yaml", "Yellow purple theme": "yellow-purple-theme.yaml", "Yellow-Green-Blue-Theme": "yellow-green-blue-theme.yaml", @@ -6774,14 +7379,13 @@ "Yet Another Solarized Theme (Dark)": "yet-another-solarized-theme-dark.yaml", "Yet Another Solarized Theme (Light)": "yet-another-solarized-theme-light.yaml", "YharnizedTheme": "yharnizedtheme.yaml", - "yinloonga_python": "yinloonga-python.yaml", + "yinloonga_c++": "yinloonga-c.yaml", "yitzchok": "yitzchok.yaml", "yitzchok-contrast": "yitzchok-contrast.yaml", "yitzchok-light": "yitzchok-light.yaml", "ylw-dark-theme": "ylw-dark-theme.yaml", "Yoda": "yoda.yaml", "Yoda - Mystical Force": "yoda-mystical-force.yaml", - "Yodart": "yodart.yaml", "Yohualli Eclipse": "yohualli-eclipse.yaml", "Yohualli Lunaris": "yohualli-lunaris.yaml", "Yohualli Nebulune": "yohualli-nebulune.yaml", @@ -6794,6 +7398,8 @@ "yoyo theme green": "yoyo-theme-green.yaml", "ystheme": "ystheme.yaml", "YTheme Dark": "ytheme-dark.yaml", + "Yttrium Dark": "yttrium-dark.yaml", + "Yttrium light": "yttrium-light.yaml", "yue-theme": "yue-theme.yaml", "Yukinord": "yukinord.yaml", "yule": "yule.yaml", @@ -6804,19 +7410,21 @@ "Yurei Dark Theme": "yurei-dark-theme.yaml", "Yuru": "yuru.yaml", "yuru black": "yuru-black.yaml", + "Yuuyake - dark": "yuuyake-dark.yaml", "yuyuko.vscode": "yuyuko-vscode.yaml", "yuyuko.vscode ocean": "yuyuko-vscode-ocean.yaml", "Z-DarkTheme": "z-darktheme.yaml", "z3r0": "z3r0.yaml", "Zach's Blue Theme": "zach-s-blue-theme.yaml", + "ZacharyWilliamson": "zacharywilliamson.yaml", "zacks": "zacks.yaml", "zacks-contrast": "zacks-contrast.yaml", "zacks-light": "zacks-light.yaml", + "Zaeri Dark": "zaeri-dark.yaml", "zaher-color-theme": "zaher-color-theme.yaml", "Zan": "zan.yaml", - "Zandromeda": "zandromeda.yaml", "zap": "zap.yaml", - "Zathura": "zathura.yaml", + "Zappts": "zappts.yaml", "ZBRA Dark": "zbra-dark.yaml", "Zeal": "zeal.yaml", "ZednosTheme v1": "zednostheme-v1.yaml", @@ -6890,6 +7498,7 @@ "Zenbook UX534FTC White-Gold V2.1.95": "zenbook-ux534ftc-white-gold-v2-1-95.yaml", "Zenburn": "zenburn.yaml", "Zene Dark Theme": "zene-dark-theme.yaml", + "Zene Light Theme": "zene-light-theme.yaml", "Zeneth": "zeneth.yaml", "ZenFlow Noir": "zenflow-noir.yaml", "Zenith": "zenith.yaml", @@ -6909,14 +7518,16 @@ "Zeus Turquoise": "zeus-turquoise.yaml", "Zeus Yelo": "zeus-yelo.yaml", "zhangpengtao-black": "zhangpengtao-black.yaml", - "zhe-qi": "zhe-qi.yaml", "Zhongli": "zhongli.yaml", "zhxo'lt": "zhxo-lt.yaml", - "zhxo'red (experimental)": "zhxo-red-experimental.yaml", + "zhxo'red": "zhxo-red.yaml", "zhxo'st": "zhxo-st.yaml", "zhxo'yll": "zhxo-yll.yaml", "Zinc": "zinc.yaml", "Zokugun Obsidium": "zokugun-obsidium.yaml", + "Zora Mirage": "zora-mirage.yaml", + "Zora Mirage Green": "zora-mirage-green.yaml", + "ZoraDark": "zoradark.yaml", "Zordon Colors": "zordon-colors.yaml", "Zoren Breeze": "zoren-breeze.yaml", "zTheme": "ztheme.yaml", @@ -6927,7 +7538,11 @@ "Zxxn": "zxxn.yaml", "Zygomatic Blue": "zygomatic-blue.yaml", "zyrotec": "zyrotec.yaml", + "zzc (dark)": "zzc-dark.yaml", + "zzc (light)": "zzc-light.yaml", + "zzc-light": "zzc-light.yaml", "ZzhTheme Dark": "zzhtheme-dark.yaml", "ZzhTheme Light": "zzhtheme-light.yaml", - "米白色主题": ".yaml" + "米白色主题": ".yaml", + "米白色主题@自用": ".yaml" } diff --git a/themes/index.yaml b/themes/index.yaml index 4245725b..0c93827c 100644 --- a/themes/index.yaml +++ b/themes/index.yaml @@ -2,7 +2,7 @@ name: "index" source: marketplace_id: "sudoaugustin.vslook" version: "0.3.2" - installs: 10350 + installs: 10351 author: "Augustin Joseph" repo: "https://github.com/sudoaugustin/vslook" url: "https://marketplace.visualstudio.com/items?itemName=sudoaugustin.vslook" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 266 + pair: null contrast: fg: 106.8 black: 7.4 diff --git a/themes/indielayer.yaml b/themes/indielayer.yaml index 89b9c100..2f2ee840 100644 --- a/themes/indielayer.yaml +++ b/themes/indielayer.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 56.8 black: 0 diff --git a/themes/indigo-and-amaranth.yaml b/themes/indigo-and-amaranth.yaml index 914dfb2a..acc443e8 100644 --- a/themes/indigo-and-amaranth.yaml +++ b/themes/indigo-and-amaranth.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 298 + pair: null contrast: fg: 79 black: 0 diff --git a/themes/indigo-ice.yaml b/themes/indigo-ice.yaml index a2d7e585..351aad85 100644 --- a/themes/indigo-ice.yaml +++ b/themes/indigo-ice.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 75.5 black: 0 diff --git a/themes/industrialcomplex.yaml b/themes/industrialcomplex.yaml deleted file mode 100644 index 2d048b02..00000000 --- a/themes/industrialcomplex.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "IndustrialComplex" -source: - marketplace_id: "whyamidoingthis.mytheme" - version: "0.0.1" - installs: 61 - author: "whyamidoingthis" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=whyamidoingthis.mytheme" -colors: - bg: "#2A2A2A" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 104 - black: 0 - red: 23.9 - green: 50.2 - yellow: 82.8 - blue: 24.6 - magenta: 26.9 - cyan: 44.7 - white: 87.2 - brightBlack: 19.2 - brightRed: 35.7 - brightGreen: 60.7 - brightYellow: 92.8 - brightBlue: 37.2 - brightMagenta: 42.5 - brightCyan: 52.6 - brightWhite: 87.2 diff --git a/themes/industry.yaml b/themes/industry.yaml index 323d9463..e0bef179 100644 --- a/themes/industry.yaml +++ b/themes/industry.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 74.7 black: 0 diff --git a/themes/infatuation.yaml b/themes/infatuation.yaml index 00fb91ca..c9fb0b1b 100644 --- a/themes/infatuation.yaml +++ b/themes/infatuation.yaml @@ -1,49 +1,50 @@ name: "Infatuation" source: - marketplace_id: "PixelsInTheSky.infatuation" - version: "0.1.0" - installs: 9174 - author: "PixelsInTheSky" - repo: "https://github.com/Seytani/Infatuation-VS-Code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=PixelsInTheSky.infatuation" + marketplace_id: "yuna495.pinklily" + version: "1.0.6" + installs: 114 + author: "yuna495" + repo: "https://github.com/yuna495/PinkLily" + url: "https://marketplace.visualstudio.com/items?itemName=yuna495.pinklily" colors: - bg: "#2A2A2C" - fg: "#E3E3E3" + bg: "#080808" + fg: "#FD9BCC" black: "#000000" red: "#E73752" - green: "#ADFFA6" - yellow: "#FFE7AF" - blue: "#BB57FF" - magenta: "#46D2E8" - cyan: "#FF59A0" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#E41535" - brightGreen: "#70DE66" - brightYellow: "#F7D380" - brightBlue: "#CA7DFF" - brightMagenta: "#0ABAFF" - brightCyan: "#FFA3CA" + green: "#00C060" + yellow: "#F7D380" + blue: "#505DF0" + magenta: "#C010A0" + cyan: "#46D2E8" + white: "#FD9BCC" + brightBlack: "#808080" + brightRed: "#FF5570" + brightGreen: "#11FF84" + brightYellow: "#FFE090" + brightBlue: "#7580FF" + brightMagenta: "#FF14E0" + brightCyan: "#80E5F2" brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "magenta" + accent: "pink" hue: null + pair: null contrast: - fg: 85.9 + fg: 64.9 black: 0 - red: 30.8 - green: 91.2 - yellow: 89.8 - blue: 35.5 - magenta: 65.6 - cyan: 43.3 - white: 104 - brightBlack: 19.2 - brightRed: 27.5 - brightGreen: 68.7 - brightYellow: 78.5 - brightBlue: 46.6 - brightMagenta: 55.4 - brightCyan: 64 - brightWhite: 104 + red: 34.6 + green: 55.2 + yellow: 82.3 + blue: 27.4 + magenta: 26.3 + cyan: 69.4 + white: 64.9 + brightBlack: 34.7 + brightRed: 44.9 + brightGreen: 87.6 + brightYellow: 89.6 + brightBlue: 41.1 + brightMagenta: 44.1 + brightCyan: 81.6 + brightWhite: 107.8 diff --git a/themes/inferius.yaml b/themes/inferius.yaml index 6b69e434..45014e32 100644 --- a/themes/inferius.yaml +++ b/themes/inferius.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 99.2 black: 0 diff --git a/themes/infinitus.yaml b/themes/infinitus.yaml index 9dc37a9e..ed63fef2 100644 --- a/themes/infinitus.yaml +++ b/themes/infinitus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 254 + pair: null contrast: fg: 72.3 black: 0 diff --git a/themes/infinity-64-blackboard-by-shingo-murata.yaml b/themes/infinity-64-blackboard-by-shingo-murata.yaml index 3152ec08..13351e6a 100644 --- a/themes/infinity-64-blackboard-by-shingo-murata.yaml +++ b/themes/infinity-64-blackboard-by-shingo-murata.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 85.9 black: 0 diff --git a/themes/infinity-64-whiteboard-by-shingo-murata.yaml b/themes/infinity-64-whiteboard-by-shingo-murata.yaml index 2158d1c7..553eb0b5 100644 --- a/themes/infinity-64-whiteboard-by-shingo-murata.yaml +++ b/themes/infinity-64-whiteboard-by-shingo-murata.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 93 black: 99.5 diff --git a/themes/infinity-dark-contrast.yaml b/themes/infinity-dark-contrast.yaml index 708cb607..ea30532a 100644 --- a/themes/infinity-dark-contrast.yaml +++ b/themes/infinity-dark-contrast.yaml @@ -2,7 +2,7 @@ name: "Infinity Dark Contrast" source: marketplace_id: "arthur404dev.thanos-theme" version: "0.0.6" - installs: 6548 + installs: 6550 author: "Arthur 404 dev" repo: "https://github.com/thanos-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=arthur404dev.thanos-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 68.7 black: 0 diff --git a/themes/infinity.yaml b/themes/infinity.yaml index 3041f808..59594da3 100644 --- a/themes/infinity.yaml +++ b/themes/infinity.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 265 + pair: null contrast: fg: 93 black: 0 diff --git a/themes/ingeni.yaml b/themes/ingeni.yaml index 8311937f..9f828f82 100644 --- a/themes/ingeni.yaml +++ b/themes/ingeni.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/inheritance.yaml b/themes/inheritance.yaml index ab8d45ec..e4decf0f 100644 --- a/themes/inheritance.yaml +++ b/themes/inheritance.yaml @@ -2,7 +2,7 @@ name: "Inheritance" source: marketplace_id: "icao.inheritance" version: "0.3.0" - installs: 3310 + installs: 3311 author: "icao" repo: "https://github.com/icao/inheritance" url: "https://marketplace.visualstudio.com/items?itemName=icao.inheritance" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 71.3 black: 0 diff --git a/themes/inkpot.yaml b/themes/inkpot.yaml index cdbed7de..6ddaebf8 100644 --- a/themes/inkpot.yaml +++ b/themes/inkpot.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 282 + pair: null contrast: fg: 40.3 black: 0 diff --git a/themes/inksea-dank.yaml b/themes/inksea-dank.yaml index 54f41519..a8d3e73c 100644 --- a/themes/inksea-dank.yaml +++ b/themes/inksea-dank.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 72.2 black: 0 diff --git a/themes/inksea-dark.yaml b/themes/inksea-dark.yaml index e6d0dde5..e9472539 100644 --- a/themes/inksea-dark.yaml +++ b/themes/inksea-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 72.4 black: 0 diff --git a/themes/inksea-dracula.yaml b/themes/inksea-dracula.yaml index 55fb43e6..8bc93527 100644 --- a/themes/inksea-dracula.yaml +++ b/themes/inksea-dracula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 280 + pair: null contrast: fg: 67.8 black: 0 diff --git a/themes/inksea-hacker.yaml b/themes/inksea-hacker.yaml index bd28d552..fcb9f00e 100644 --- a/themes/inksea-hacker.yaml +++ b/themes/inksea-hacker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 65.5 black: 0 diff --git a/themes/inksea-midnight.yaml b/themes/inksea-midnight.yaml index 8a258976..e5d87b96 100644 --- a/themes/inksea-midnight.yaml +++ b/themes/inksea-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 73.9 black: 0 diff --git a/themes/inksea-oceanic.yaml b/themes/inksea-oceanic.yaml index bdc0ee6a..a62e0d8f 100644 --- a/themes/inksea-oceanic.yaml +++ b/themes/inksea-oceanic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 57.6 black: 0 diff --git a/themes/inksea-sea-monkey.yaml b/themes/inksea-sea-monkey.yaml index f864a37b..50bbdec6 100644 --- a/themes/inksea-sea-monkey.yaml +++ b/themes/inksea-sea-monkey.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72.4 black: 0 diff --git a/themes/inksea.yaml b/themes/inksea.yaml index 4504dafa..65a6f5f8 100644 --- a/themes/inksea.yaml +++ b/themes/inksea.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 71.2 black: 0 diff --git a/themes/inkstained.yaml b/themes/inkstained.yaml index 1c05576c..7cec6c49 100644 --- a/themes/inkstained.yaml +++ b/themes/inkstained.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 61.8 black: 94.4 diff --git a/themes/inovando-theme.yaml b/themes/inovando-theme.yaml index c7846e24..9d84350b 100644 --- a/themes/inovando-theme.yaml +++ b/themes/inovando-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 296 + pair: null contrast: fg: 79.4 black: 19.4 diff --git a/themes/insane.yaml b/themes/insane.yaml index 6d69cf3c..47a856eb 100644 --- a/themes/insane.yaml +++ b/themes/insane.yaml @@ -2,7 +2,7 @@ name: "Insane" source: marketplace_id: "VitorRubimPassos.insane-dark-theme" version: "2.0.1" - installs: 822 + installs: 823 author: "Vitor Rubim Passos" repo: "https://github.com/vitorrubim1/insane-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=VitorRubimPassos.insane-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 89.5 black: 0 diff --git a/themes/insight.yaml b/themes/insight.yaml index 18ea1125..ca7e0175 100644 --- a/themes/insight.yaml +++ b/themes/insight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 81.8 black: 0 diff --git a/themes/inspiration.yaml b/themes/inspiration.yaml index a2ea592e..8a871295 100644 --- a/themes/inspiration.yaml +++ b/themes/inspiration.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 57 + pair: null contrast: fg: 105.4 black: 0 diff --git a/themes/instamuch.yaml b/themes/instamuch.yaml index 4bf22e86..53f6b5c8 100644 --- a/themes/instamuch.yaml +++ b/themes/instamuch.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 328 + pair: null contrast: fg: 53.7 black: 8.8 diff --git a/themes/intellij-dark-color-theme.yaml b/themes/intellij-dark-color-theme.yaml index 196b959e..5f46eb55 100644 --- a/themes/intellij-dark-color-theme.yaml +++ b/themes/intellij-dark-color-theme.yaml @@ -2,7 +2,7 @@ name: "intellij-dark-color-theme" source: marketplace_id: "zerodind.familiar-java-themes" version: "0.1.7" - installs: 58649 + installs: 58663 author: "0dinD" repo: "https://gitlab.com/zerodind/familiar-java-themes" url: "https://marketplace.visualstudio.com/items?itemName=zerodind.familiar-java-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 58.5 black: 103.8 diff --git a/themes/intellij-idea-islands-dark.yaml b/themes/intellij-idea-islands-dark.yaml index b461e942..6eea91a5 100644 --- a/themes/intellij-idea-islands-dark.yaml +++ b/themes/intellij-idea-islands-dark.yaml @@ -2,7 +2,7 @@ name: "intellij-idea-islands-dark" source: marketplace_id: "OleksandrHavrysh.vscode-intellij-theme" version: "1.1.1" - installs: 2829 + installs: 2852 author: "Oleksandr Havrysh" repo: "https://github.com/a-havrysh/vscode-intellij-theme" url: "https://marketplace.visualstudio.com/items?itemName=OleksandrHavrysh.vscode-intellij-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 66.1 black: 0 diff --git a/themes/intellij-idea-islands-light.yaml b/themes/intellij-idea-islands-light.yaml index 903e3d8d..c290c424 100644 --- a/themes/intellij-idea-islands-light.yaml +++ b/themes/intellij-idea-islands-light.yaml @@ -2,7 +2,7 @@ name: "intellij-idea-islands-light" source: marketplace_id: "OleksandrHavrysh.vscode-intellij-theme" version: "1.1.1" - installs: 2829 + installs: 2852 author: "Oleksandr Havrysh" repo: "https://github.com/a-havrysh/vscode-intellij-theme" url: "https://marketplace.visualstudio.com/items?itemName=OleksandrHavrysh.vscode-intellij-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 105.9 black: 105.9 diff --git a/themes/intellij-idea-new-ui.yaml b/themes/intellij-idea-new-ui.yaml index 24186963..6d7d13ee 100644 --- a/themes/intellij-idea-new-ui.yaml +++ b/themes/intellij-idea-new-ui.yaml @@ -1,11 +1,11 @@ name: "IntelliJ IDEA New UI" source: - marketplace_id: "compassak.intellij-idea-new-ui" - version: "1.4.0" - installs: 14999 - author: "compassak" - repo: "https://github.com/compassak/vscode-intellij-idea-new-ui" - url: "https://marketplace.visualstudio.com/items?itemName=compassak.intellij-idea-new-ui" + marketplace_id: "AnandaBibekRay.intellij-idea-new-ui-theme" + version: "1.0.5" + installs: 23361 + author: "Ananda Bibek Ray" + repo: "https://github.com/anandbibek/vscode-intellij-new-ui-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AnandaBibekRay.intellij-idea-new-ui-theme" colors: bg: "#FFFFFF" fg: "#000000" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 106 black: 75.2 diff --git a/themes/intellij-light-classic-color-theme.yaml b/themes/intellij-light-classic-color-theme.yaml deleted file mode 100644 index ca859597..00000000 --- a/themes/intellij-light-classic-color-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "intellij-light-classic-color-theme" -source: - marketplace_id: "zerodind.familiar-java-themes" - version: "0.1.7" - installs: 58649 - author: "0dinD" - repo: "https://gitlab.com/zerodind/familiar-java-themes" - url: "https://marketplace.visualstudio.com/items?itemName=zerodind.familiar-java-themes" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#CD0000" - green: "#00CD00" - yellow: "#C4A000" - blue: "#0000EE" - magenta: "#CD00CD" - cyan: "#00CCCC" - white: "#AAAAAA" - brightBlack: "#555555" - brightRed: "#FF0000" - brightGreen: "#00FF00" - brightYellow: "#EAEA00" - brightBlue: "#5C5CFF" - brightMagenta: "#FF00FF" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - contrast: - fg: 106 - black: 106 - red: 76.3 - green: 41.4 - yellow: 49 - blue: 88.1 - magenta: 70 - cyan: 38 - white: 45.8 - brightBlack: 85.9 - brightRed: 64.1 - brightGreen: 17.1 - brightYellow: 14.2 - brightBlue: 72.3 - brightMagenta: 55.6 - brightCyan: 11.8 - brightWhite: 0 diff --git a/themes/intellij-light-deaft.yaml b/themes/intellij-light-deaft.yaml index 81d3704b..596fee91 100644 --- a/themes/intellij-light-deaft.yaml +++ b/themes/intellij-light-deaft.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 105.9 black: 106 diff --git a/themes/intelliyay-color-theme.yaml b/themes/intelliyay-color-theme.yaml index d052da80..41d80bfb 100644 --- a/themes/intelliyay-color-theme.yaml +++ b/themes/intelliyay-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 60.5 black: 105.9 diff --git a/themes/intergalactic.yaml b/themes/intergalactic.yaml index 20ecf15c..76d71618 100644 --- a/themes/intergalactic.yaml +++ b/themes/intergalactic.yaml @@ -1,11 +1,11 @@ name: "Intergalactic" source: - marketplace_id: "sserafy.ttera-themes" - version: "2.0.7" - installs: 2036 + marketplace_id: "sserafy.ssera-themes" + version: "2.0.2" + installs: 334 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: bg: "#0B0D14" fg: "#F0F4F8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 272 + pair: null contrast: fg: 100 black: 0 diff --git a/themes/interstellar-blue-ii.yaml b/themes/interstellar-blue-ii.yaml index e4b5d77e..5630a72a 100644 --- a/themes/interstellar-blue-ii.yaml +++ b/themes/interstellar-blue-ii.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 290 + pair: null contrast: fg: 54.1 black: 0 diff --git a/themes/interstellar-blue.yaml b/themes/interstellar-blue.yaml index 6b0048f0..557a3584 100644 --- a/themes/interstellar-blue.yaml +++ b/themes/interstellar-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 291 + pair: null contrast: fg: 61.7 black: 0 diff --git a/themes/interstellar.yaml b/themes/interstellar.yaml index 20144d5b..af184ef9 100644 --- a/themes/interstellar.yaml +++ b/themes/interstellar.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 97.1 black: 0 diff --git a/themes/intility-bifrost-theme.yaml b/themes/intility-bifrost-theme.yaml index 7665fff8..59dd2721 100644 --- a/themes/intility-bifrost-theme.yaml +++ b/themes/intility-bifrost-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 253 + pair: null contrast: fg: 90.9 black: 8.1 diff --git a/themes/into-the-unknow-fork.yaml b/themes/into-the-unknow-fork.yaml index 1c2da870..ab28ef7b 100644 --- a/themes/into-the-unknow-fork.yaml +++ b/themes/into-the-unknow-fork.yaml @@ -2,7 +2,7 @@ name: "Into the unknow - Fork" source: marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" version: "9.0.1" - installs: 29903 + installs: 29917 author: "Hasibur R" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.9 black: 0 diff --git a/themes/invi.yaml b/themes/invi.yaml index 58ccc531..435d8d9a 100644 --- a/themes/invi.yaml +++ b/themes/invi.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 59.3 black: 16.1 diff --git a/themes/ionztorm-theme.yaml b/themes/ionztorm-theme.yaml index b3f56283..17605148 100644 --- a/themes/ionztorm-theme.yaml +++ b/themes/ionztorm-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 74.4 black: 10.9 diff --git a/themes/irishbruse-s-color-theme.yaml b/themes/irishbruse-s-color-theme.yaml index 716f3d0c..87b8a9fb 100644 --- a/themes/irishbruse-s-color-theme.yaml +++ b/themes/irishbruse-s-color-theme.yaml @@ -2,7 +2,7 @@ name: "IrishBruse's Color Theme" source: marketplace_id: "IrishBruse.dark-theme" version: "1.6.2" - installs: 807 + installs: 808 author: "Ethan Conneely" repo: "https://github.com/IrishBruse/IrishBruse-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=IrishBruse.dark-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 103.9 black: 106 diff --git a/themes/ironhellrider.yaml b/themes/ironhellrider.yaml index e51c2cbf..cdcffb2a 100644 --- a/themes/ironhellrider.yaml +++ b/themes/ironhellrider.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 73 black: 0 diff --git a/themes/ironman-theme-dark.yaml b/themes/ironman-theme-dark.yaml index 819af648..99329179 100644 --- a/themes/ironman-theme-dark.yaml +++ b/themes/ironman-theme-dark.yaml @@ -2,7 +2,7 @@ name: "Ironman Theme Dark" source: marketplace_id: "rohit-chouhan.ironman-theme" version: "1.0.6" - installs: 3738 + installs: 3739 author: "Rohit Chouhan" repo: "https://github.com/rohit-chouhan/" url: "https://marketplace.visualstudio.com/items?itemName=rohit-chouhan.ironman-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 300 + pair: "Ironman Theme Light" contrast: fg: 21.5 black: 0 diff --git a/themes/ironman-theme-light.yaml b/themes/ironman-theme-light.yaml index 7df19bc9..65ceeccf 100644 --- a/themes/ironman-theme-light.yaml +++ b/themes/ironman-theme-light.yaml @@ -2,7 +2,7 @@ name: "Ironman Theme Light" source: marketplace_id: "rohit-chouhan.ironman-theme" version: "1.0.6" - installs: 3738 + installs: 3739 author: "Rohit Chouhan" repo: "https://github.com/rohit-chouhan/" url: "https://marketplace.visualstudio.com/items?itemName=rohit-chouhan.ironman-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Ironman Theme Dark" contrast: fg: 80 black: 106 diff --git a/themes/irony.yaml b/themes/irony.yaml index 11578727..cebad730 100644 --- a/themes/irony.yaml +++ b/themes/irony.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 223 + pair: null contrast: fg: 78 black: 10.5 diff --git a/themes/is-them-tears-bro.yaml b/themes/is-them-tears-bro.yaml index b612441a..9c105c35 100644 --- a/themes/is-them-tears-bro.yaml +++ b/themes/is-them-tears-bro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 233 + pair: null contrast: fg: 77.7 black: 0 diff --git a/themes/islands-dark.yaml b/themes/islands-dark.yaml index 7349aeec..096ffabb 100644 --- a/themes/islands-dark.yaml +++ b/themes/islands-dark.yaml @@ -2,7 +2,7 @@ name: "Islands Dark" source: marketplace_id: "PhanTriVietHoang.island" version: "1.0.1" - installs: 84 + installs: 85 author: "PhanTriVietHoang" repo: "https://github.com/phantriviethoang/wip" url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.island" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Islands Light" contrast: fg: 66.2 black: 0 diff --git a/themes/islands-light.yaml b/themes/islands-light.yaml index 23152760..dfb02fe4 100644 --- a/themes/islands-light.yaml +++ b/themes/islands-light.yaml @@ -2,7 +2,7 @@ name: "Islands Light" source: marketplace_id: "kangsou.islands-theme" version: "1.0.5" - installs: 2877 + installs: 2889 author: "kangsou" repo: "https://github.com/guxiaohui/islands-theme" url: "https://marketplace.visualstudio.com/items?itemName=kangsou.islands-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Islands Dark" contrast: fg: 105.9 black: 106 diff --git a/themes/isotope-contrast.yaml b/themes/isotope-contrast.yaml index 931ab6f4..41b0d84e 100644 --- a/themes/isotope-contrast.yaml +++ b/themes/isotope-contrast.yaml @@ -1,11 +1,11 @@ name: "isotope-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0E0F11" fg: "#F3EFF5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 97.9 black: 0 diff --git a/themes/isotope-light.yaml b/themes/isotope-light.yaml index 57c5b39b..fa43a3d6 100644 --- a/themes/isotope-light.yaml +++ b/themes/isotope-light.yaml @@ -1,11 +1,11 @@ name: "isotope-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#454955" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 90.6 black: 0 diff --git a/themes/isotope.yaml b/themes/isotope.yaml index faf27658..b4169d13 100644 --- a/themes/isotope.yaml +++ b/themes/isotope.yaml @@ -1,11 +1,11 @@ name: "isotope" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#454955" fg: "#F3EFF5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 271 + pair: null contrast: fg: 85.4 black: 0 diff --git a/themes/itsnp-dark-cyan.yaml b/themes/itsnp-dark-cyan.yaml index 9a0b1452..fba8ddbc 100644 --- a/themes/itsnp-dark-cyan.yaml +++ b/themes/itsnp-dark-cyan.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 89.8 black: 0 diff --git a/themes/itsnp-dark-pink.yaml b/themes/itsnp-dark-pink.yaml index 9510d67e..36d4ab79 100644 --- a/themes/itsnp-dark-pink.yaml +++ b/themes/itsnp-dark-pink.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 89.8 black: 0 diff --git a/themes/itsnp-dark.yaml b/themes/itsnp-dark.yaml index f711a138..b2a31263 100644 --- a/themes/itsnp-dark.yaml +++ b/themes/itsnp-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 275 + pair: null contrast: fg: 76.3 black: 0 diff --git a/themes/itsnp-night-blue.yaml b/themes/itsnp-night-blue.yaml index 819d6904..afacb838 100644 --- a/themes/itsnp-night-blue.yaml +++ b/themes/itsnp-night-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 275 + pair: null contrast: fg: 76.3 black: 0 diff --git a/themes/itsnp-yellow.yaml b/themes/itsnp-yellow.yaml index 330a63a5..3ab8e683 100644 --- a/themes/itsnp-yellow.yaml +++ b/themes/itsnp-yellow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 76.3 black: 0 diff --git a/themes/iv-spade.yaml b/themes/iv-spade.yaml index 06e4e86f..43b89df1 100644 --- a/themes/iv-spade.yaml +++ b/themes/iv-spade.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 50.6 black: 0 diff --git a/themes/ivalo-color-theme.yaml b/themes/ivalo-color-theme.yaml index a1245ac3..7e81f479 100644 --- a/themes/ivalo-color-theme.yaml +++ b/themes/ivalo-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: null contrast: fg: 84.4 black: 0 diff --git a/themes/iwa-s-code-theme.yaml b/themes/iwa-s-code-theme.yaml index a4c37dca..a4ba602f 100644 --- a/themes/iwa-s-code-theme.yaml +++ b/themes/iwa-s-code-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 56.9 black: 0 diff --git a/themes/j-cinco-da-manh.yaml b/themes/j-cinco-da-manh.yaml index c9b5718e..f5832ad4 100644 --- a/themes/j-cinco-da-manh.yaml +++ b/themes/j-cinco-da-manh.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 273 + pair: null contrast: fg: 90.1 black: 0 diff --git a/themes/j-theme.yaml b/themes/j-theme.yaml index a2c08f0a..1c812e84 100644 --- a/themes/j-theme.yaml +++ b/themes/j-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.6 black: 0 diff --git a/themes/jabrms.yaml b/themes/jabrms.yaml index e9c4688a..32a89f29 100644 --- a/themes/jabrms.yaml +++ b/themes/jabrms.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 104.8 black: 106 diff --git a/themes/jackhammar.yaml b/themes/jackhammar.yaml index dd7c4c37..29ecd470 100644 --- a/themes/jackhammar.yaml +++ b/themes/jackhammar.yaml @@ -2,7 +2,7 @@ name: "Jackhammar" source: marketplace_id: "minako.wired" version: "2.0.5" - installs: 4867 + installs: 4868 author: "minako" repo: "https://github.com/kayliese/wired" url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/jaga-theme.yaml b/themes/jaga-theme.yaml index 6ec1edae..c45d2cdd 100644 --- a/themes/jaga-theme.yaml +++ b/themes/jaga-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 358 + pair: null contrast: fg: 99.7 black: 0 diff --git a/themes/jammy-jellyfish.yaml b/themes/jammy-jellyfish.yaml index e8689d5d..52385a61 100644 --- a/themes/jammy-jellyfish.yaml +++ b/themes/jammy-jellyfish.yaml @@ -2,7 +2,7 @@ name: "Jammy Jellyfish" source: marketplace_id: "kevinnorman.jammy-jellyfish-color-theme" version: "1.1.1" - installs: 7081 + installs: 7085 author: "Kevin Norman" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kevinnorman.jammy-jellyfish-color-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.2 black: 0 diff --git a/themes/jamuntheme.yaml b/themes/jamuntheme.yaml index 3bb7fcf4..55de9f66 100644 --- a/themes/jamuntheme.yaml +++ b/themes/jamuntheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: null contrast: fg: 75.9 black: 81.4 diff --git a/themes/jannchie-black.yaml b/themes/jannchie-black.yaml index 974bfbfd..92a66bab 100644 --- a/themes/jannchie-black.yaml +++ b/themes/jannchie-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Jannchie Light" contrast: fg: 82.3 black: 0 diff --git a/themes/jannchie-dark-soft.yaml b/themes/jannchie-dark-soft.yaml index 4accded1..6dcd603c 100644 --- a/themes/jannchie-dark-soft.yaml +++ b/themes/jannchie-dark-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Jannchie Light Soft" contrast: fg: 79.5 black: 0 diff --git a/themes/jannchie-dark.yaml b/themes/jannchie-dark.yaml index 83ca2599..42393ce2 100644 --- a/themes/jannchie-dark.yaml +++ b/themes/jannchie-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 80.1 black: 0 diff --git a/themes/jannchie-light-soft.yaml b/themes/jannchie-light-soft.yaml index 4022084c..6cb2b83d 100644 --- a/themes/jannchie-light-soft.yaml +++ b/themes/jannchie-light-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Jannchie Dark Soft" contrast: fg: 87.4 black: 7.8 diff --git a/themes/jannchie-light.yaml b/themes/jannchie-light.yaml index 0e72a6f6..2f8db185 100644 --- a/themes/jannchie-light.yaml +++ b/themes/jannchie-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Jannchie Black" contrast: fg: 96.5 black: 0 diff --git a/themes/japanese-breakfast.yaml b/themes/japanese-breakfast.yaml index 864b14fc..8721b483 100644 --- a/themes/japanese-breakfast.yaml +++ b/themes/japanese-breakfast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 28.7 black: 0 diff --git a/themes/jartur.yaml b/themes/jartur.yaml index 97c31183..e51ce650 100644 --- a/themes/jartur.yaml +++ b/themes/jartur.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 55.8 black: 9.2 diff --git a/themes/jarvis-3d.yaml b/themes/jarvis-3d.yaml index 4a18e874..5dc99299 100644 --- a/themes/jarvis-3d.yaml +++ b/themes/jarvis-3d.yaml @@ -2,7 +2,7 @@ name: "Jarvis 3D" source: marketplace_id: "nextgencode.jarvis-3d-theme" version: "1.1.0" - installs: 72 + installs: 77 author: "NextGenCode" repo: "https://github.com/Mattzey/jarvis-3d-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.jarvis-3d-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 258 + pair: null contrast: fg: 99 black: 0 diff --git a/themes/jarvis.yaml b/themes/jarvis.yaml index f11a3d26..7073769b 100644 --- a/themes/jarvis.yaml +++ b/themes/jarvis.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 105.9 black: 0 diff --git a/themes/jasmine.yaml b/themes/jasmine.yaml index f1dc0b2c..550f2a60 100644 --- a/themes/jasmine.yaml +++ b/themes/jasmine.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 265 + pair: null contrast: fg: 53.3 black: 0 diff --git a/themes/java-dark-theme.yaml b/themes/java-dark-theme.yaml index 97d08ede..e85aac19 100644 --- a/themes/java-dark-theme.yaml +++ b/themes/java-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 60.7 black: 0 diff --git a/themes/javascript-modern-dark.yaml b/themes/javascript-modern-dark.yaml index c96f6ff1..04ce6c46 100644 --- a/themes/javascript-modern-dark.yaml +++ b/themes/javascript-modern-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 271 + pair: null contrast: fg: 91.7 black: 0 diff --git a/themes/javascript-neon-dark.yaml b/themes/javascript-neon-dark.yaml index 0746c362..83090880 100644 --- a/themes/javascript-neon-dark.yaml +++ b/themes/javascript-neon-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 258 + pair: null contrast: fg: 91.9 black: 0 diff --git a/themes/javascript-vibrant-dark.yaml b/themes/javascript-vibrant-dark.yaml index 7dbf4085..ba8e8047 100644 --- a/themes/javascript-vibrant-dark.yaml +++ b/themes/javascript-vibrant-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/jazari-dark.yaml b/themes/jazari-dark.yaml index 5d50922f..19d73b2f 100644 --- a/themes/jazari-dark.yaml +++ b/themes/jazari-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Jazari Light" contrast: fg: 79.8 black: 0 diff --git a/themes/jazari-light.yaml b/themes/jazari-light.yaml index 69897614..205aab4c 100644 --- a/themes/jazari-light.yaml +++ b/themes/jazari-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 268 + pair: "Jazari Dark" contrast: fg: 89.6 black: 89.6 diff --git a/themes/jcardenas.yaml b/themes/jcardenas.yaml index 9a2e18c7..01c8d2f8 100644 --- a/themes/jcardenas.yaml +++ b/themes/jcardenas.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 24.2 black: 0 diff --git a/themes/jcsoftiablack.yaml b/themes/jcsoftiablack.yaml index f5f288c0..21666440 100644 --- a/themes/jcsoftiablack.yaml +++ b/themes/jcsoftiablack.yaml @@ -2,7 +2,7 @@ name: "jcsoftiaBlack" source: marketplace_id: "JCsoftIA.JCsoftIA" version: "1.5.3" - installs: 8460 + installs: 8461 author: "Dark Black Theme jcsoftia" repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 57.5 black: 0 diff --git a/themes/jcsoftiadark.yaml b/themes/jcsoftiadark.yaml index 5fe1d662..23fa8e21 100644 --- a/themes/jcsoftiadark.yaml +++ b/themes/jcsoftiadark.yaml @@ -2,7 +2,7 @@ name: "jcsoftiaDark" source: marketplace_id: "JCsoftIA.JCsoftIA" version: "1.5.3" - installs: 8460 + installs: 8461 author: "Dark Black Theme jcsoftia" repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 263 + pair: null contrast: fg: 57.5 black: 0 diff --git a/themes/jcsoftiadarkblue.yaml b/themes/jcsoftiadarkblue.yaml index 09473cab..cc3c8c92 100644 --- a/themes/jcsoftiadarkblue.yaml +++ b/themes/jcsoftiadarkblue.yaml @@ -2,7 +2,7 @@ name: "jcsoftiaDarkBlue" source: marketplace_id: "JCsoftIA.JCsoftIA" version: "1.5.3" - installs: 8460 + installs: 8461 author: "Dark Black Theme jcsoftia" repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 241 + pair: null contrast: fg: 99.3 black: 0 diff --git a/themes/jcsoftiadarkred.yaml b/themes/jcsoftiadarkred.yaml index 9d292cc2..b324c81a 100644 --- a/themes/jcsoftiadarkred.yaml +++ b/themes/jcsoftiadarkred.yaml @@ -2,7 +2,7 @@ name: "jcsoftiaDarkRed" source: marketplace_id: "JCsoftIA.JCsoftIA" version: "1.5.3" - installs: 8460 + installs: 8461 author: "Dark Black Theme jcsoftia" repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 29 + pair: null contrast: fg: 57.5 black: 0 diff --git a/themes/jd-s-abyss.yaml b/themes/jd-s-abyss.yaml index f2dbaa08..a0ce1d4b 100644 --- a/themes/jd-s-abyss.yaml +++ b/themes/jd-s-abyss.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 78 black: 0 diff --git a/themes/jdarkmaterial-v2.yaml b/themes/jdarkmaterial-v2.yaml index cc35c98a..d14725a0 100644 --- a/themes/jdarkmaterial-v2.yaml +++ b/themes/jdarkmaterial-v2.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/jdh.yaml b/themes/jdh.yaml index 8095f846..64cb6a01 100644 --- a/themes/jdh.yaml +++ b/themes/jdh.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 22.5 black: 0 diff --git a/themes/jehuty-dark.yaml b/themes/jehuty-dark.yaml index 4b9a75d0..38c6e8d8 100644 --- a/themes/jehuty-dark.yaml +++ b/themes/jehuty-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 258 + pair: "Jehuty Light" contrast: fg: 97.7 black: 0 diff --git a/themes/jehuty-light.yaml b/themes/jehuty-light.yaml index 95592a08..871c9821 100644 --- a/themes/jehuty-light.yaml +++ b/themes/jehuty-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "Jehuty Dark" contrast: fg: 102.4 black: 96.5 diff --git a/themes/jelly-theme.yaml b/themes/jelly-theme.yaml index d2ea8c47..ca633034 100644 --- a/themes/jelly-theme.yaml +++ b/themes/jelly-theme.yaml @@ -2,7 +2,7 @@ name: "jelly-theme" source: marketplace_id: "NemanjaManojlovic.jelly" version: "0.0.5" - installs: 20202 + installs: 20209 author: "Nemanja Manojlovic" repo: "https://github.com/Manojlovic1998/vscode-jelly-theme" url: "https://marketplace.visualstudio.com/items?itemName=NemanjaManojlovic.jelly" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 103.4 black: 0 diff --git a/themes/jelly.yaml b/themes/jelly.yaml index 47796c4c..209e6280 100644 --- a/themes/jelly.yaml +++ b/themes/jelly.yaml @@ -2,7 +2,7 @@ name: "jelly" source: marketplace_id: "kylethebaker.jelly-theme" version: "0.0.4" - installs: 21817 + installs: 21823 author: "kylethebaker" repo: "https://github.com/kylethebaker/jelly-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kylethebaker.jelly-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: null contrast: fg: 72.6 black: 0 diff --git a/themes/jellybeans-theme.yaml b/themes/jellybeans-theme.yaml index 64309700..6cbbdb35 100644 --- a/themes/jellybeans-theme.yaml +++ b/themes/jellybeans-theme.yaml @@ -2,7 +2,7 @@ name: "jellybeans-theme" source: marketplace_id: "DimitarNonov.jellybeans-theme" version: "1.14.1" - installs: 13625 + installs: 13628 author: "Dimitar Nonov" repo: "https://github.com/DNonov/jellybeans-code" url: "https://marketplace.visualstudio.com/items?itemName=DimitarNonov.jellybeans-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 91.2 black: 91.2 diff --git a/themes/jellybeans.yaml b/themes/jellybeans.yaml index 727b33e6..e5f1cb0a 100644 --- a/themes/jellybeans.yaml +++ b/themes/jellybeans.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 91.2 black: 0 diff --git a/themes/jellyfish.yaml b/themes/jellyfish.yaml index ff187f7a..d372dbad 100644 --- a/themes/jellyfish.yaml +++ b/themes/jellyfish.yaml @@ -1,11 +1,11 @@ name: "Jellyfish" source: - marketplace_id: "sserafy.ttera-themes" - version: "2.0.7" - installs: 2036 + marketplace_id: "sserafy.ssera-themes" + version: "2.0.2" + installs: 334 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: bg: "#0F1419" fg: "#C2A5F0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 249 + pair: null contrast: fg: 60.2 black: 0 diff --git a/themes/jeng-light.yaml b/themes/jeng-light.yaml index d45cd214..62210a16 100644 --- a/themes/jeng-light.yaml +++ b/themes/jeng-light.yaml @@ -2,7 +2,7 @@ name: "Jeng Light" source: marketplace_id: "jeng.jeng-theme-light" version: "1.0.5" - installs: 17375 + installs: 17376 author: "jeng" repo: "https://github.com/jengjeng/jeng-theme-light" url: "https://marketplace.visualstudio.com/items?itemName=jeng.jeng-theme-light" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 78.5 black: 103 diff --git a/themes/jetbrain-fleet-color.yaml b/themes/jetbrain-fleet-color.yaml index d2479d36..7d5d9c95 100644 --- a/themes/jetbrain-fleet-color.yaml +++ b/themes/jetbrain-fleet-color.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.9 black: 22.4 diff --git a/themes/jetbrains-dark-theme.yaml b/themes/jetbrains-dark-theme.yaml index b58b3326..f02259ef 100644 --- a/themes/jetbrains-dark-theme.yaml +++ b/themes/jetbrains-dark-theme.yaml @@ -2,7 +2,7 @@ name: "JetBrains Dark Theme" source: marketplace_id: "kenethriera.jb-theme" version: "1.0.27" - installs: 5676 + installs: 5693 author: "Keneth Riera" repo: "https://github.com/rierarizzo/jetbrains-theme" url: "https://marketplace.visualstudio.com/items?itemName=kenethriera.jb-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 65.5 black: 0 diff --git a/themes/jetbrains-deep-dark-theme.yaml b/themes/jetbrains-deep-dark-theme.yaml index 72dfab05..c17a034b 100644 --- a/themes/jetbrains-deep-dark-theme.yaml +++ b/themes/jetbrains-deep-dark-theme.yaml @@ -2,7 +2,7 @@ name: "JetBrains Deep Dark Theme" source: marketplace_id: "kenethriera.jb-theme" version: "1.0.27" - installs: 5676 + installs: 5693 author: "Keneth Riera" repo: "https://github.com/rierarizzo/jetbrains-theme" url: "https://marketplace.visualstudio.com/items?itemName=kenethriera.jb-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 66.5 black: 0 diff --git a/themes/jetbrains-ide-dark-theme.yaml b/themes/jetbrains-ide-dark-theme.yaml index e8d419fa..72c5314b 100644 --- a/themes/jetbrains-ide-dark-theme.yaml +++ b/themes/jetbrains-ide-dark-theme.yaml @@ -2,7 +2,7 @@ name: "JetBrains IDE Dark Theme" source: marketplace_id: "mdmarufsarker.maruf-sarker" version: "0.1.1" - installs: 29145 + installs: 29154 author: "Md. Maruf Sarker" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 245 + pair: null contrast: fg: 76.7 black: 0 diff --git a/themes/jetcode.yaml b/themes/jetcode.yaml index acee4d07..8d572252 100644 --- a/themes/jetcode.yaml +++ b/themes/jetcode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/jetdark.yaml b/themes/jetdark.yaml index baef9db2..3279930d 100644 --- a/themes/jetdark.yaml +++ b/themes/jetdark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 76.1 black: 0 diff --git a/themes/jetverse-dev-dark.yaml b/themes/jetverse-dev-dark.yaml deleted file mode 100644 index 168690e6..00000000 --- a/themes/jetverse-dev-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "JetVerse Dev Dark" -source: - marketplace_id: "SurajPrasad.jetverse-theme" - version: "0.0.9" - installs: 60 - author: "Suraj Prasad" - repo: "https://github.com/SurajPrasaad/jetverse-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SurajPrasad.jetverse-theme" -colors: - bg: "#1E1E2E" - fg: "#CDD6F4" - black: "#45475A" - red: "#F38BA8" - green: "#A6E3A1" - yellow: "#F9E2AF" - blue: "#89B4FA" - magenta: "#F5C2E7" - cyan: "#94E2D5" - white: "#BAC2DE" - brightBlack: "#585B70" - brightRed: "#F38BA8" - brightGreen: "#A6E3A1" - brightYellow: "#F9E2AF" - brightBlue: "#89B4FA" - brightMagenta: "#F5C2E7" - brightCyan: "#94E2D5" - brightWhite: "#A6ADC8" -meta: - mode: "dark" - accent: "red" - hue: 284 - contrast: - fg: 80 - black: 9.3 - red: 54.7 - green: 78.3 - yellow: 88.4 - blue: 59.1 - magenta: 76.7 - cyan: 78.2 - white: 68.1 - brightBlack: 16.9 - brightRed: 54.7 - brightGreen: 78.3 - brightYellow: 88.4 - brightBlue: 59.1 - brightMagenta: 76.7 - brightCyan: 78.2 - brightWhite: 56.2 diff --git a/themes/jewel-contrast.yaml b/themes/jewel-contrast.yaml index c7d25a25..7821ef37 100644 --- a/themes/jewel-contrast.yaml +++ b/themes/jewel-contrast.yaml @@ -1,11 +1,11 @@ name: "jewel-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#141619" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 74 black: 0 diff --git a/themes/jewel-light.yaml b/themes/jewel-light.yaml index a4fda271..cce8c2b9 100644 --- a/themes/jewel-light.yaml +++ b/themes/jewel-light.yaml @@ -1,11 +1,11 @@ name: "jewel-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#5C6470" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 79.9 black: 0 diff --git a/themes/jewel.yaml b/themes/jewel.yaml index ebf57102..0cff99b2 100644 --- a/themes/jewel.yaml +++ b/themes/jewel.yaml @@ -1,11 +1,11 @@ name: "jewel" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#32373D" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 253 + pair: null contrast: fg: 68 black: 0 diff --git a/themes/jg-vsc.yaml b/themes/jg-vsc.yaml index 06f79fd6..9fd2df17 100644 --- a/themes/jg-vsc.yaml +++ b/themes/jg-vsc.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 293 + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/jingle-contrast.yaml b/themes/jingle-contrast.yaml index c20bd832..9d5f6564 100644 --- a/themes/jingle-contrast.yaml +++ b/themes/jingle-contrast.yaml @@ -1,11 +1,11 @@ name: "jingle-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0D1011" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 74.5 black: 0 diff --git a/themes/jingle-light.yaml b/themes/jingle-light.yaml index 9908abeb..90b2bf43 100644 --- a/themes/jingle-light.yaml +++ b/themes/jingle-light.yaml @@ -1,11 +1,11 @@ name: "jingle-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#485860" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/jingle.yaml b/themes/jingle.yaml index 8653c9a5..4f3d1a98 100644 --- a/themes/jingle.yaml +++ b/themes/jingle.yaml @@ -1,11 +1,11 @@ name: "jingle" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#283035" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 235 + pair: null contrast: fg: 70 black: 0 diff --git a/themes/jinglecode.yaml b/themes/jinglecode.yaml index ae1049f8..58e40227 100644 --- a/themes/jinglecode.yaml +++ b/themes/jinglecode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 244 + pair: null contrast: fg: 83 black: 0 diff --git a/themes/jinshi-dark-theme.yaml b/themes/jinshi-dark-theme.yaml index befe433b..5a4297d6 100644 --- a/themes/jinshi-dark-theme.yaml +++ b/themes/jinshi-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Jinshi Dark Theme" source: marketplace_id: "apothecary-diary-theme.apothecary-diary-theme" version: "0.1.0" - installs: 58 + installs: 59 author: "Matheus Montemurro" repo: "https://github.com/montemurro19/apothecary-diary-theme" url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 303 + pair: "Jinshi Light Theme" contrast: fg: 96.9 black: 0 diff --git a/themes/jinshi-light-theme.yaml b/themes/jinshi-light-theme.yaml index f148fa2a..41986c26 100644 --- a/themes/jinshi-light-theme.yaml +++ b/themes/jinshi-light-theme.yaml @@ -2,7 +2,7 @@ name: "Jinshi Light Theme" source: marketplace_id: "apothecary-diary-theme.apothecary-diary-theme" version: "0.1.0" - installs: 58 + installs: 59 author: "Matheus Montemurro" repo: "https://github.com/montemurro19/apothecary-diary-theme" url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Jinshi Dark Theme" contrast: fg: 101.2 black: 101.2 diff --git a/themes/jinx.yaml b/themes/jinx.yaml index 9a0a6e47..0073fd08 100644 --- a/themes/jinx.yaml +++ b/themes/jinx.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/jk.yaml b/themes/jk.yaml index dd97f8ff..15ccf1f7 100644 --- a/themes/jk.yaml +++ b/themes/jk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 298 + pair: null contrast: fg: 107.3 black: 0 diff --git a/themes/jker-purple-wave.yaml b/themes/jker-purple-wave.yaml index dd17e451..7941e1e9 100644 --- a/themes/jker-purple-wave.yaml +++ b/themes/jker-purple-wave.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 301 + pair: null contrast: fg: 78.9 black: 32.7 diff --git a/themes/jngl.yaml b/themes/jngl.yaml index a54edb3e..b3a2c5fe 100644 --- a/themes/jngl.yaml +++ b/themes/jngl.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 202 + pair: null contrast: fg: 89.9 black: 0 diff --git a/themes/jojobii-s-colors.yaml b/themes/jojobii-s-colors.yaml index 8f20d4bc..9b177563 100644 --- a/themes/jojobii-s-colors.yaml +++ b/themes/jojobii-s-colors.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 94.2 black: 0 diff --git a/themes/jokejoke.yaml b/themes/jokejoke.yaml index 3ff09fb6..563cbe27 100644 --- a/themes/jokejoke.yaml +++ b/themes/jokejoke.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80 black: 0 diff --git a/themes/joker-contrast.yaml b/themes/joker-contrast.yaml index 0e475865..5b91463e 100644 --- a/themes/joker-contrast.yaml +++ b/themes/joker-contrast.yaml @@ -1,11 +1,11 @@ name: "joker-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#141619" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 74 black: 0 diff --git a/themes/joker-light.yaml b/themes/joker-light.yaml index aec6d8e1..88613dad 100644 --- a/themes/joker-light.yaml +++ b/themes/joker-light.yaml @@ -1,11 +1,11 @@ name: "joker-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#4A5159" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 87.9 black: 0 diff --git a/themes/joker-neon.yaml b/themes/joker-neon.yaml index bf01a70a..25fae071 100644 --- a/themes/joker-neon.yaml +++ b/themes/joker-neon.yaml @@ -2,7 +2,7 @@ name: "Joker Neon" source: marketplace_id: "fidelp27.joker-neon-theme" version: "1.0.1" - installs: 267 + installs: 271 author: "fidelp27" repo: "https://github.com/fidelp27/joker-neon-theme" url: "https://marketplace.visualstudio.com/items?itemName=fidelp27.joker-neon-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 299 + pair: null contrast: fg: 91.4 black: 0 diff --git a/themes/joker.yaml b/themes/joker.yaml index c5b54d83..d5280482 100644 --- a/themes/joker.yaml +++ b/themes/joker.yaml @@ -1,11 +1,11 @@ name: "joker" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#32373D" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 253 + pair: null contrast: fg: 68 black: 0 diff --git a/themes/jollifake.yaml b/themes/jollifake.yaml index 1b6627bd..837bc844 100644 --- a/themes/jollifake.yaml +++ b/themes/jollifake.yaml @@ -2,7 +2,7 @@ name: "JolliFake" source: marketplace_id: "jeooo.jollifake" version: "1.0.0" - installs: 1037 + installs: 1038 author: "jeooo`" repo: "https://github.com/jeoooo/jollifake" url: "https://marketplace.visualstudio.com/items?itemName=jeooo.jollifake" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 84.5 black: 106 diff --git a/themes/jolly-light.yaml b/themes/jolly-light.yaml index 2be5f6dd..98df143b 100644 --- a/themes/jolly-light.yaml +++ b/themes/jolly-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 92.2 black: 92.2 diff --git a/themes/jone-light.yaml b/themes/jone-light.yaml index 64e15557..9f97b304 100644 --- a/themes/jone-light.yaml +++ b/themes/jone-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92 black: 98.3 diff --git a/themes/joyboy.yaml b/themes/joyboy.yaml index 21eae8c6..12ee6ea1 100644 --- a/themes/joyboy.yaml +++ b/themes/joyboy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 105.2 black: 0 diff --git a/themes/joyful-fork.yaml b/themes/joyful-fork.yaml deleted file mode 100644 index 4ffd9718..00000000 --- a/themes/joyful-fork.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Joyful - Fork" -source: - marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" - version: "9.0.1" - installs: 29903 - author: "Hasibur R" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" -colors: - bg: "#373E4D" - fg: "#F9F9F9" - black: "#000000" - red: "#FA5AA4" - green: "#2BE491" - yellow: "#FA946E" - blue: "#89CCF7" - magenta: "#CF8EF4" - cyan: "#63C5EA" - white: "#F9F9F9" - brightBlack: "#666666" - brightRed: "#FA74B2" - brightGreen: "#44EB9F" - brightYellow: "#FAA687" - brightBlue: "#A1D5F7" - brightMagenta: "#D8A6F4" - brightCyan: "#7ACBEA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 265 - contrast: - fg: 94.8 - black: 9 - red: 37.3 - green: 65.1 - yellow: 50 - blue: 62 - magenta: 46.3 - cyan: 55.8 - white: 94.8 - brightBlack: 13.9 - brightRed: 43.3 - brightGreen: 69.5 - brightYellow: 56.5 - brightBlue: 68 - brightMagenta: 55.5 - brightCyan: 59.7 - brightWhite: 98.8 diff --git a/themes/js-dark-theme.yaml b/themes/js-dark-theme.yaml index d57fa0ad..2c9b93f8 100644 --- a/themes/js-dark-theme.yaml +++ b/themes/js-dark-theme.yaml @@ -2,7 +2,7 @@ name: "JS Dark Theme" source: marketplace_id: "AbdulnasirOlcan.js-dark-theme" version: "1.1.3" - installs: 2213 + installs: 2215 author: "Abdulnasir Olcan" repo: "https://github.com/jsdeveloperr/JS-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=AbdulnasirOlcan.js-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 287 + pair: null contrast: fg: 29.9 black: 0 diff --git a/themes/jtvscode-dark.yaml b/themes/jtvscode-dark.yaml index ade34bd1..398fb3eb 100644 --- a/themes/jtvscode-dark.yaml +++ b/themes/jtvscode-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "jtVSCode Light" contrast: fg: 79.8 black: 0 diff --git a/themes/jtvscode-light.yaml b/themes/jtvscode-light.yaml index 50f6c26c..4c772488 100644 --- a/themes/jtvscode-light.yaml +++ b/themes/jtvscode-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "jtVSCode Dark" contrast: fg: 103.1 black: 103.1 diff --git a/themes/jugal13-theme.yaml b/themes/jugal13-theme.yaml index 5c56e41e..a0c73bc5 100644 --- a/themes/jugal13-theme.yaml +++ b/themes/jugal13-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 107.8 black: 0 diff --git a/themes/juicy-contrast.yaml b/themes/juicy-contrast.yaml index 740c7947..b6b14bff 100644 --- a/themes/juicy-contrast.yaml +++ b/themes/juicy-contrast.yaml @@ -1,11 +1,11 @@ name: "juicy-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#000000" fg: "#E3E2E0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 89.2 black: 0 diff --git a/themes/juicy-light.yaml b/themes/juicy-light.yaml index 22847cf8..840a9c5c 100644 --- a/themes/juicy-light.yaml +++ b/themes/juicy-light.yaml @@ -1,11 +1,11 @@ name: "juicy-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#F0F0F0" fg: "#333333" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 89.8 black: 0 diff --git a/themes/juicy.yaml b/themes/juicy.yaml index d75b7c97..0837828e 100644 --- a/themes/juicy.yaml +++ b/themes/juicy.yaml @@ -1,11 +1,11 @@ name: "juicy" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#222222" fg: "#E3E2E0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.8 black: 0 diff --git a/themes/july-summer-vibes-dark-theme.yaml b/themes/july-summer-vibes-dark-theme.yaml index 62054cca..b1348651 100644 --- a/themes/july-summer-vibes-dark-theme.yaml +++ b/themes/july-summer-vibes-dark-theme.yaml @@ -2,7 +2,7 @@ name: "July Summer Vibes Dark Theme" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: null contrast: fg: 104.4 black: 0 diff --git a/themes/jummidark.yaml b/themes/jummidark.yaml index 1c8521dd..eaa07aca 100644 --- a/themes/jummidark.yaml +++ b/themes/jummidark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/jummilight.yaml b/themes/jummilight.yaml index 2788d3ed..c0a12066 100644 --- a/themes/jummilight.yaml +++ b/themes/jummilight.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 86.1 black: 86.1 diff --git a/themes/jumper-contrast.yaml b/themes/jumper-contrast.yaml index e0225206..925606c1 100644 --- a/themes/jumper-contrast.yaml +++ b/themes/jumper-contrast.yaml @@ -1,11 +1,11 @@ name: "jumper-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0E1111" fg: "#8DA0A0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 48.4 black: 0 diff --git a/themes/jumper-light.yaml b/themes/jumper-light.yaml index 3b897d5a..5e14c5fa 100644 --- a/themes/jumper-light.yaml +++ b/themes/jumper-light.yaml @@ -1,11 +1,11 @@ name: "jumper-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#222A2A" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.5 black: 0 diff --git a/themes/jumper.yaml b/themes/jumper.yaml index d1eb8dd1..1760a3ed 100644 --- a/themes/jumper.yaml +++ b/themes/jumper.yaml @@ -1,11 +1,11 @@ name: "jumper" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#222A2A" fg: "#8DA0A0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 197 + pair: null contrast: fg: 45.3 black: 0 diff --git a/themes/jungle.yaml b/themes/jungle.yaml index 2f95b8b9..13a1a904 100644 --- a/themes/jungle.yaml +++ b/themes/jungle.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 156 + pair: null contrast: fg: 42.1 black: 0 diff --git a/themes/juniorcoder.yaml b/themes/juniorcoder.yaml index 235f49e2..ac6ccc92 100644 --- a/themes/juniorcoder.yaml +++ b/themes/juniorcoder.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 102.4 black: 0 diff --git a/themes/just-code-already-fork.yaml b/themes/just-code-already-fork.yaml index b0cca8a5..5a77e9ad 100644 --- a/themes/just-code-already-fork.yaml +++ b/themes/just-code-already-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 272 + pair: null contrast: fg: 99.2 black: 0 diff --git a/themes/jwrdark.yaml b/themes/jwrdark.yaml index ea5c63f9..a845644b 100644 --- a/themes/jwrdark.yaml +++ b/themes/jwrdark.yaml @@ -1,11 +1,11 @@ name: "jwrdark" source: - marketplace_id: "ibrhalilaydn.galactus-theme" - version: "0.1.0" - installs: 305 - author: "ibrhalil" - repo: "https://github.com/ibrhalil/galactus-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ibrhalilaydn.galactus-theme" + marketplace_id: "oloier.jwrdark" + version: "0.2.0" + installs: 160 + author: "oloier" + repo: "https://github.com/oloier/jwrdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=oloier.jwrdark" colors: bg: "#0C0C0C" fg: "#999999" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 47 black: 0 diff --git a/themes/k-colorable-dark.yaml b/themes/k-colorable-dark.yaml index a50da286..73b6d049 100644 --- a/themes/k-colorable-dark.yaml +++ b/themes/k-colorable-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "k-colorable light" contrast: fg: 75.2 black: 16.5 diff --git a/themes/k-colorable-light.yaml b/themes/k-colorable-light.yaml index f4a3ee9f..4a96a683 100644 --- a/themes/k-colorable-light.yaml +++ b/themes/k-colorable-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "k-colorable dark" contrast: fg: 87.6 black: 98.7 diff --git a/themes/k-relaxed.yaml b/themes/k-relaxed.yaml index d4eeb6cc..dd54fdcf 100644 --- a/themes/k-relaxed.yaml +++ b/themes/k-relaxed.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 278 + pair: null contrast: fg: 81.6 black: 0 diff --git a/themes/kabukich.yaml b/themes/kabukich.yaml index 953bf0ff..82215e76 100644 --- a/themes/kabukich.yaml +++ b/themes/kabukich.yaml @@ -1,11 +1,11 @@ name: "Kabukichō" source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3734 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + marketplace_id: "VictoriaDrake.kabukicho" + version: "0.0.6" + installs: 23230 + author: "Victoria Drake" + repo: "https://github.com/victoriadrake/kabukicho-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=VictoriaDrake.kabukicho" colors: bg: "#1F1529" fg: "#D4CDDE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 306 + pair: null contrast: fg: 76.7 black: 0 diff --git a/themes/kactus-dream-theme-dark.yaml b/themes/kactus-dream-theme-dark.yaml index 6528a75d..652d3c51 100644 --- a/themes/kactus-dream-theme-dark.yaml +++ b/themes/kactus-dream-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 309 + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/kactus-dream-theme.yaml b/themes/kactus-dream-theme.yaml index a9f5ace5..d8ea6d5d 100644 --- a/themes/kactus-dream-theme.yaml +++ b/themes/kactus-dream-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 95.6 black: 36 diff --git a/themes/kadoku.yaml b/themes/kadoku.yaml index 67ffe668..d142f893 100644 --- a/themes/kadoku.yaml +++ b/themes/kadoku.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 286 + pair: null contrast: fg: 81.6 black: 0 diff --git a/themes/kai-garbage.yaml b/themes/kai-garbage.yaml index f1fd98f6..6e7f77ec 100644 --- a/themes/kai-garbage.yaml +++ b/themes/kai-garbage.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 267 + pair: null contrast: fg: 84.1 black: 0 diff --git a/themes/kai-sa-white-fork.yaml b/themes/kai-sa-white-fork.yaml index 6ade251c..ab4f3732 100644 --- a/themes/kai-sa-white-fork.yaml +++ b/themes/kai-sa-white-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/kai.yaml b/themes/kai.yaml index 3ab17e84..18998715 100644 --- a/themes/kai.yaml +++ b/themes/kai.yaml @@ -2,7 +2,7 @@ name: "Kai" source: marketplace_id: "igordvlpr.kai-theme" version: "1.0.4" - installs: 1612 + installs: 1614 author: "Igor Dimitrijević" repo: "https://github.com/igorskyflyer/vscode-theme-kai" url: "https://marketplace.visualstudio.com/items?itemName=igordvlpr.kai-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 80.2 black: 0 diff --git a/themes/kailash-shaw-dark-theme.yaml b/themes/kailash-shaw-dark-theme.yaml index df1c3612..8746c3ad 100644 --- a/themes/kailash-shaw-dark-theme.yaml +++ b/themes/kailash-shaw-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Kailash shaw Dark Theme" source: marketplace_id: "vs-code-red-theme.vs-code-red-theme" version: "0.3.0" - installs: 595 + installs: 596 author: "vs-code-red-theme" repo: "https://github.com/karmickphp61/vs-code-red-theme" url: "https://marketplace.visualstudio.com/items?itemName=vs-code-red-theme.vs-code-red-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/kaimandres.yaml b/themes/kaimandres.yaml index 609053ff..b46bf0cd 100644 --- a/themes/kaimandres.yaml +++ b/themes/kaimandres.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 89.7 black: 0 diff --git a/themes/kaio.yaml b/themes/kaio.yaml index 5fb5b386..6cdb97d0 100644 --- a/themes/kaio.yaml +++ b/themes/kaio.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 98.2 black: 0 diff --git a/themes/kaiokenkolors.yaml b/themes/kaiokenkolors.yaml index 40e56a51..f6131696 100644 --- a/themes/kaiokenkolors.yaml +++ b/themes/kaiokenkolors.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 79.2 black: 0 diff --git a/themes/kaique-theme.yaml b/themes/kaique-theme.yaml index 6a6bcc27..bcf8173f 100644 --- a/themes/kaique-theme.yaml +++ b/themes/kaique-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 24.2 black: 0 diff --git a/themes/kaisa-dark.yaml b/themes/kaisa-dark.yaml index 2edffa0c..c5443b6c 100644 --- a/themes/kaisa-dark.yaml +++ b/themes/kaisa-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 279 + pair: null contrast: fg: 77.4 black: 0 diff --git a/themes/kali-linux-theme.yaml b/themes/kali-linux-theme.yaml index 906b6309..0ac3cdcc 100644 --- a/themes/kali-linux-theme.yaml +++ b/themes/kali-linux-theme.yaml @@ -2,7 +2,7 @@ name: "Kali linux theme" source: marketplace_id: "minako.wired" version: "2.0.5" - installs: 4867 + installs: 4868 author: "minako" repo: "https://github.com/kayliese/wired" url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 269 + pair: null contrast: fg: 77.2 black: 0 diff --git a/themes/kalia.yaml b/themes/kalia.yaml index 738bec5a..b2f860dd 100644 --- a/themes/kalia.yaml +++ b/themes/kalia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 72.6 black: 107.8 diff --git a/themes/kalidozza.yaml b/themes/kalidozza.yaml index 4a0c6706..9e08a434 100644 --- a/themes/kalidozza.yaml +++ b/themes/kalidozza.yaml @@ -2,7 +2,7 @@ name: "Kalidozza" source: marketplace_id: "afrolino02.Kalidozza-theme" version: "0.0.1" - installs: 29 + installs: 30 author: "afrolino02" repo: "https://github.com/Kalidozza-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=afrolino02.Kalidozza-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 79 + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/kalisi.yaml b/themes/kalisi.yaml index 0b992c70..c7e94c66 100644 --- a/themes/kalisi.yaml +++ b/themes/kalisi.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 103 black: 103 diff --git a/themes/kalmia-high-contrast.yaml b/themes/kalmia-high-contrast.yaml index 3ac5aa7d..69f3859f 100644 --- a/themes/kalmia-high-contrast.yaml +++ b/themes/kalmia-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 339 + pair: null contrast: fg: 75.1 black: 0 diff --git a/themes/kalmia.yaml b/themes/kalmia.yaml index 7031eaf3..d15e32aa 100644 --- a/themes/kalmia.yaml +++ b/themes/kalmia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 340 + pair: null contrast: fg: 65.5 black: 0 diff --git a/themes/kami-theme.yaml b/themes/kami-theme.yaml index 581a069b..8f0dc8fc 100644 --- a/themes/kami-theme.yaml +++ b/themes/kami-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: 313 + pair: null contrast: fg: 79.5 black: 16.2 diff --git a/themes/kanagawa-dragon.yaml b/themes/kanagawa-dragon.yaml index 5990f136..2a23f934 100644 --- a/themes/kanagawa-dragon.yaml +++ b/themes/kanagawa-dragon.yaml @@ -2,7 +2,7 @@ name: "Kanagawa Dragon" source: marketplace_id: "metaphore.kanagawa-vscode-color-theme" version: "0.5.0" - installs: 29565 + installs: 29588 author: "metapho.re" repo: "https://github.com/metapho-re/kanagawa-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=metaphore.kanagawa-vscode-color-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 72.3 black: 0 diff --git a/themes/kanagawa-light.yaml b/themes/kanagawa-light.yaml index b856d01b..febf9d6d 100644 --- a/themes/kanagawa-light.yaml +++ b/themes/kanagawa-light.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 68 black: 0 diff --git a/themes/kanagawa-lotus.yaml b/themes/kanagawa-lotus.yaml index a6911322..096d8a23 100644 --- a/themes/kanagawa-lotus.yaml +++ b/themes/kanagawa-lotus.yaml @@ -2,7 +2,7 @@ name: "Kanagawa Lotus" source: marketplace_id: "metaphore.kanagawa-vscode-color-theme" version: "0.5.0" - installs: 29565 + installs: 29588 author: "metapho.re" repo: "https://github.com/metapho-re/kanagawa-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=metaphore.kanagawa-vscode-color-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 102 + pair: null contrast: fg: 73.6 black: 91 diff --git a/themes/kanagawa-night.yaml b/themes/kanagawa-night.yaml index fee77d73..ed739a29 100644 --- a/themes/kanagawa-night.yaml +++ b/themes/kanagawa-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 83.5 black: 0 diff --git a/themes/kanagawa-paper.yaml b/themes/kanagawa-paper.yaml index bce73bbe..2434d71a 100644 --- a/themes/kanagawa-paper.yaml +++ b/themes/kanagawa-paper.yaml @@ -2,7 +2,7 @@ name: "Kanagawa Paper" source: marketplace_id: "SimonHo.kanagawa-paper" version: "1.0.10" - installs: 5475 + installs: 5479 author: "sho-87" repo: "https://github.com/sho-87/kanagawa-paper.vscode" url: "https://marketplace.visualstudio.com/items?itemName=SimonHo.kanagawa-paper" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/kanagawa-wave-light.yaml b/themes/kanagawa-wave-light.yaml index 60d5f09d..7bb1d6d0 100644 --- a/themes/kanagawa-wave-light.yaml +++ b/themes/kanagawa-wave-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 74 + pair: null contrast: fg: 87.9 black: 0 diff --git a/themes/kanagawa-wave.yaml b/themes/kanagawa-wave.yaml index c40e0530..4a1da9aa 100644 --- a/themes/kanagawa-wave.yaml +++ b/themes/kanagawa-wave.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 57.4 black: 0 diff --git a/themes/kanagawa.yaml b/themes/kanagawa.yaml deleted file mode 100644 index a690b918..00000000 --- a/themes/kanagawa.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Kanagawa" -source: - marketplace_id: "qufiwefefwoyn.kanagawa" - version: "1.5.1" - installs: 249563 - author: "qufiwefefwoyn" - repo: "https://github.com/barklan/kanagawa.vscode" - url: "https://marketplace.visualstudio.com/items?itemName=qufiwefefwoyn.kanagawa" -colors: - bg: "#1F1F28" - fg: "#DCD7BA" - black: "#1F1F28" - red: "#E82424" - green: "#76946A" - yellow: "#FF9E3B" - blue: "#658594" - magenta: "#957FB8" - cyan: "#9CABCA" - white: "#DCD7BA" - brightBlack: "#2A2A37" - brightRed: "#FF5D62" - brightGreen: "#98BB6C" - brightYellow: "#E6C384" - brightBlue: "#7FB4CA" - brightMagenta: "#D27E99" - brightCyan: "#A3D4D5" - brightWhite: "#DCD7BA" -meta: - mode: "dark" - accent: "orange" - hue: 285 - contrast: - fg: 79.7 - black: 0 - red: 30.7 - green: 38.4 - yellow: 60.5 - blue: 32.8 - magenta: 37.1 - cyan: 54.4 - white: 79.7 - brightBlack: 0 - brightRed: 44 - brightGreen: 57.4 - brightYellow: 71.1 - brightBlue: 55.5 - brightMagenta: 44.3 - brightCyan: 73 - brightWhite: 79.7 diff --git a/themes/kanamin-dark.yaml b/themes/kanamin-dark.yaml index da87cb11..6006c19d 100644 --- a/themes/kanamin-dark.yaml +++ b/themes/kanamin-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 59.2 black: 0 diff --git a/themes/kanao.yaml b/themes/kanao.yaml index f5f8c543..f3dbdb15 100644 --- a/themes/kanao.yaml +++ b/themes/kanao.yaml @@ -1,49 +1,50 @@ name: "Kanao" source: - marketplace_id: "MuhammadHanif.narato" + marketplace_id: "BayuSetiawan.kanao" version: "1.4.0" - installs: 439 - author: "Muhammad Hanif" - repo: "https://github.com/mhaniflab/narato" - url: "https://marketplace.visualstudio.com/items?itemName=MuhammadHanif.narato" + installs: 1890 + author: "Bayu Setiawan" + repo: "https://github.com/Bayusetiawan45/kanao" + url: "https://marketplace.visualstudio.com/items?itemName=BayuSetiawan.kanao" colors: - bg: "#191919" - fg: "#F5E8C7" - black: "#191919" + bg: "#F5EEE6" + fg: "#776B5D" + black: "#F5EEE6" red: "#E82424" - green: "#323232" + green: "#76946A" yellow: "#FF9E3B" - blue: "#E6A4B4" - magenta: "#FFD369" - cyan: "#F5E8C7" - white: "#F5E8C7" - brightBlack: "#0F0F0F" + blue: "#EEC759" + magenta: "#AC7D88" + cyan: "#776B5D" + white: "#776B5D" + brightBlack: "#F4DFC8" brightRed: "#FF5D62" brightGreen: "#98BB6C" - brightYellow: "#EEEEEE" + brightYellow: "#65647C" brightBlue: "#7FB4CA" - brightMagenta: "#F5E8C7" + brightMagenta: "#D27E99" brightCyan: "#A3D4D5" - brightWhite: "#F5E8C7" + brightWhite: "#776B5D" meta: - mode: "dark" + mode: "light" accent: "orange" hue: null + pair: null contrast: - fg: 92.2 + fg: 66.2 black: 0 - red: 31.6 - green: 0 - yellow: 61.3 - blue: 61.7 - magenta: 82 - cyan: 92.2 - white: 92.2 + red: 59.3 + green: 51.7 + yellow: 30.2 + blue: 18.2 + magenta: 52.7 + cyan: 66.2 + white: 66.2 brightBlack: 0 - brightRed: 44.8 - brightGreen: 58.3 - brightYellow: 95.5 - brightBlue: 56.4 - brightMagenta: 92.2 - brightCyan: 73.9 - brightWhite: 92.2 + brightRed: 46.2 + brightGreen: 33.2 + brightYellow: 69.1 + brightBlue: 35 + brightMagenta: 45.9 + brightCyan: 18.3 + brightWhite: 66.2 diff --git a/themes/kanso-ink.yaml b/themes/kanso-ink.yaml index ce57a28c..59e1296e 100644 --- a/themes/kanso-ink.yaml +++ b/themes/kanso-ink.yaml @@ -2,7 +2,7 @@ name: "Kanso Ink" source: marketplace_id: "Webhooked.kanso-theme" version: "0.2.3" - installs: 3026 + installs: 3037 author: "Webhooked" repo: "https://github.com/webhooked/kanso-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 72.3 black: 0 diff --git a/themes/kanso-mist.yaml b/themes/kanso-mist.yaml index a16f1f36..f03f8016 100644 --- a/themes/kanso-mist.yaml +++ b/themes/kanso-mist.yaml @@ -2,7 +2,7 @@ name: "Kanso Mist" source: marketplace_id: "Webhooked.kanso-theme" version: "0.2.3" - installs: 3026 + installs: 3037 author: "Webhooked" repo: "https://github.com/webhooked/kanso-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: null contrast: fg: 68.1 black: 0 diff --git a/themes/kanso-pearl.yaml b/themes/kanso-pearl.yaml index 7b9ce5f3..de909073 100644 --- a/themes/kanso-pearl.yaml +++ b/themes/kanso-pearl.yaml @@ -2,7 +2,7 @@ name: "Kanso Pearl" source: marketplace_id: "Webhooked.kanso-theme" version: "0.2.3" - installs: 3026 + installs: 3037 author: "Webhooked" repo: "https://github.com/webhooked/kanso-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 93.8 black: 95 diff --git a/themes/kaolin-light-theme-alt.yaml b/themes/kaolin-light-theme-alt.yaml index 18edc9ba..880c3f31 100644 --- a/themes/kaolin-light-theme-alt.yaml +++ b/themes/kaolin-light-theme-alt.yaml @@ -2,7 +2,7 @@ name: "Kaolin Light Theme (alt)" source: marketplace_id: "zed-nait.kaolin-vscode-themes" version: "0.1.0" - installs: 4896 + installs: 4898 author: "zed-nait" repo: "https://github.com/zed-nait/kaolin-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=zed-nait.kaolin-vscode-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 92.8 black: 92.8 diff --git a/themes/kaolin-light-theme.yaml b/themes/kaolin-light-theme.yaml index 66fb404b..fbb53d22 100644 --- a/themes/kaolin-light-theme.yaml +++ b/themes/kaolin-light-theme.yaml @@ -2,7 +2,7 @@ name: "Kaolin Light Theme" source: marketplace_id: "zed-nait.kaolin-vscode-themes" version: "0.1.0" - installs: 4896 + installs: 4898 author: "zed-nait" repo: "https://github.com/zed-nait/kaolin-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=zed-nait.kaolin-vscode-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 84.9 black: 84.9 diff --git a/themes/kaplan-dark-muted.yaml b/themes/kaplan-dark-muted.yaml deleted file mode 100644 index 0072d4a5..00000000 --- a/themes/kaplan-dark-muted.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Kaplan Dark Muted" -source: - marketplace_id: "Abyadando.kaplan-dark-theme" - version: "0.1.0" - installs: 286 - author: "Abyadando" - repo: "https://github.com/abyadando/kaplan-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Abyadando.kaplan-dark-theme" -colors: - bg: "#1D1D1D" - fg: "#FFD86C" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 83.7 - black: 0 - red: 26 - green: 52.3 - yellow: 84.9 - blue: 26.7 - magenta: 29.1 - cyan: 46.9 - white: 89.3 - brightBlack: 21.3 - brightRed: 37.9 - brightGreen: 62.8 - brightYellow: 94.9 - brightBlue: 39.3 - brightMagenta: 44.7 - brightCyan: 54.7 - brightWhite: 89.3 diff --git a/themes/kara.yaml b/themes/kara.yaml index e48b04a6..33481b4c 100644 --- a/themes/kara.yaml +++ b/themes/kara.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 57.7 black: 7.3 diff --git a/themes/karma.yaml b/themes/karma.yaml index 6c7d09b9..15759ef5 100644 --- a/themes/karma.yaml +++ b/themes/karma.yaml @@ -1,49 +1,50 @@ name: "Karma" source: - marketplace_id: "SreetamD.karma" - version: "3.1.1" - installs: 23745 - author: "Sreetam Das" - repo: "https://github.com/sreetamdas/karma" - url: "https://marketplace.visualstudio.com/items?itemName=SreetamD.karma" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: - bg: "#FFFFFF" - fg: "#0A0E14" - black: "#FFFFFF" + bg: "#0A0E14" + fg: "#F7F1FF" + black: "#0A0E14" red: "#FC618D" - green: "#2D972F" - yellow: "#EEAE11" - blue: "#6F42C1" - magenta: "#FA8D3E" - cyan: "#5688C7" - white: "#0A0E14" - brightBlack: "#999999" + green: "#7BD88F" + yellow: "#FCE566" + blue: "#FD9353" + magenta: "#AF98E6" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" brightRed: "#FC618D" - brightGreen: "#2D972F" - brightYellow: "#EEAE11" - brightBlue: "#6F42C1" - brightMagenta: "#FA8D3E" - brightCyan: "#5688C7" - brightWhite: "#0A0E14" + brightGreen: "#7BD88F" + brightYellow: "#FCE566" + brightBlue: "#FD9353" + brightMagenta: "#AF98E6" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" meta: - mode: "light" + mode: "dark" accent: "red" - hue: null + hue: 258 + pair: null contrast: - fg: 105.6 + fg: 99.9 black: 0 - red: 54.5 - green: 64.7 - yellow: 37.5 - blue: 81.7 - magenta: 45.9 - cyan: 64 - white: 105.6 - brightBlack: 54.6 - brightRed: 54.5 - brightGreen: 64.7 - brightYellow: 37.5 - brightBlue: 81.7 - brightMagenta: 45.9 - brightCyan: 64 - brightWhite: 105.6 + red: 47 + green: 70.9 + yellow: 90.3 + blue: 58.6 + magenta: 52.9 + cyan: 70.7 + white: 99.9 + brightBlack: 23.5 + brightRed: 47 + brightGreen: 70.9 + brightYellow: 90.3 + brightBlue: 58.6 + brightMagenta: 52.9 + brightCyan: 70.7 + brightWhite: 99.9 diff --git a/themes/karnataka-sandalwood-state.yaml b/themes/karnataka-sandalwood-state.yaml index 829cef40..2e481de3 100644 --- a/themes/karnataka-sandalwood-state.yaml +++ b/themes/karnataka-sandalwood-state.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 93.1 black: 0 diff --git a/themes/karou-noir.yaml b/themes/karou-noir.yaml index 4c6953de..6c6601b5 100644 --- a/themes/karou-noir.yaml +++ b/themes/karou-noir.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: null contrast: fg: 95.2 black: 7.4 diff --git a/themes/karou-theme.yaml b/themes/karou-theme.yaml index 96c7f0c1..9d6df469 100644 --- a/themes/karou-theme.yaml +++ b/themes/karou-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 82.8 black: 0 diff --git a/themes/karrot-theme-classic.yaml b/themes/karrot-theme-classic.yaml index fe40e064..6f503cd2 100644 --- a/themes/karrot-theme-classic.yaml +++ b/themes/karrot-theme-classic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 50.8 black: 0 diff --git a/themes/karry-color-theme.yaml b/themes/karry-color-theme.yaml deleted file mode 100644 index 77e0d265..00000000 --- a/themes/karry-color-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Karry Color Theme" -source: - marketplace_id: "fcunhaneto.karry-color-theme" - version: "0.0.1" - installs: 3071 - author: "fcunhaneto" - repo: "git+https://github.com/fcunhaneto/vscode-karry-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=fcunhaneto.karry-color-theme" -colors: - bg: "#FCE7CD" - fg: "#435E75" - black: "#906F41" - red: "#B80012" - green: "#49A634" - yellow: "#B2891B" - blue: "#00578B" - magenta: "#774673" - cyan: "#008B8B" - white: "#2D485D" - brightBlack: "#B59262" - brightRed: "#E80018" - brightGreen: "#2F8C1C" - brightYellow: "#D5AA38" - brightBlue: "#0071B2" - brightMagenta: "#8D648A" - brightCyan: "#00A8A8" - brightWhite: "#435E75" -meta: - mode: "light" - accent: "orange" - hue: 73 - contrast: - fg: 70.9 - black: 59.6 - red: 68.7 - green: 45.1 - yellow: 47 - blue: 73.6 - magenta: 72.4 - cyan: 55.5 - white: 79.6 - brightBlack: 42.8 - brightRed: 57.4 - brightGreen: 56.8 - brightYellow: 30.3 - brightBlue: 62.9 - brightMagenta: 61.2 - brightCyan: 42.7 - brightWhite: 70.9 diff --git a/themes/kary-pro-colors-dark.yaml b/themes/kary-pro-colors-dark.yaml index 3483b72d..98e54fd6 100644 --- a/themes/kary-pro-colors-dark.yaml +++ b/themes/kary-pro-colors-dark.yaml @@ -2,7 +2,7 @@ name: "Kary Pro Colors - Dark" source: marketplace_id: "karyfoundation.theme-karyfoundation-themes" version: "37.0.0" - installs: 158320 + installs: 158331 author: "Pouya Kary" repo: "https://github.com/pouyakary/procolors" url: "https://marketplace.visualstudio.com/items?itemName=karyfoundation.theme-karyfoundation-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Kary Pro Colors - Light" contrast: fg: 74.3 black: 0 diff --git a/themes/kary-pro-colors-light.yaml b/themes/kary-pro-colors-light.yaml index 46b57b6d..042b154d 100644 --- a/themes/kary-pro-colors-light.yaml +++ b/themes/kary-pro-colors-light.yaml @@ -2,7 +2,7 @@ name: "Kary Pro Colors - Light" source: marketplace_id: "karyfoundation.theme-karyfoundation-themes" version: "37.0.0" - installs: 158320 + installs: 158331 author: "Pouya Kary" repo: "https://github.com/pouyakary/procolors" url: "https://marketplace.visualstudio.com/items?itemName=karyfoundation.theme-karyfoundation-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Kary Pro Colors - Dark" contrast: fg: 66 black: 98.4 diff --git a/themes/kastorcode-dark-orange-theme.yaml b/themes/kastorcode-dark-orange-theme.yaml index fb2b6d96..06a71212 100644 --- a/themes/kastorcode-dark-orange-theme.yaml +++ b/themes/kastorcode-dark-orange-theme.yaml @@ -2,7 +2,7 @@ name: "KastorCode Dark Orange Theme" source: marketplace_id: "kastorcode.kastorcode-dark-orange-theme" version: "1.0.1" - installs: 6967 + installs: 6969 author: "KastorCode" repo: "https://github.com/kastorcode/kastorcode-dark-orange-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kastorcode.kastorcode-dark-orange-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 48 + pair: null contrast: fg: 107.6 black: 30.2 diff --git a/themes/kastorcode-dark-purple-theme.yaml b/themes/kastorcode-dark-purple-theme.yaml index 265ccc13..01fd8a2b 100644 --- a/themes/kastorcode-dark-purple-theme.yaml +++ b/themes/kastorcode-dark-purple-theme.yaml @@ -2,7 +2,7 @@ name: "KastorCode Dark Purple Theme" source: marketplace_id: "kastorcode.kastorcode-dark-purple-theme" version: "1.0.0" - installs: 4412 + installs: 4413 author: "KastorCode" repo: "https://github.com/kastorcode/kastorcode-dark-purple-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kastorcode.kastorcode-dark-purple-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 294 + pair: null contrast: fg: 107.8 black: 30.4 diff --git a/themes/katagawatheme.yaml b/themes/katagawatheme.yaml index 0c83a18e..c9da40ef 100644 --- a/themes/katagawatheme.yaml +++ b/themes/katagawatheme.yaml @@ -2,7 +2,7 @@ name: "KatagawaTheme" source: marketplace_id: "hikionori.kanagawa-vscode-theme" version: "0.1.0" - installs: 6855 + installs: 6856 author: "hikionori" repo: "https://github.com/hikionori/kanagawa-vscode" url: "https://marketplace.visualstudio.com/items?itemName=hikionori.kanagawa-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 80.8 black: 0 diff --git a/themes/kato.yaml b/themes/kato.yaml index b67087ee..c326306f 100644 --- a/themes/kato.yaml +++ b/themes/kato.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 44.4 black: 0 diff --git a/themes/kaupo.yaml b/themes/kaupo.yaml index e5fab48c..1bdbd737 100644 --- a/themes/kaupo.yaml +++ b/themes/kaupo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 99.2 black: 0 diff --git a/themes/kayhan.yaml b/themes/kayhan.yaml index 013b7914..2bdc16b4 100644 --- a/themes/kayhan.yaml +++ b/themes/kayhan.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 105.2 black: 0 diff --git a/themes/kayto.yaml b/themes/kayto.yaml index ab21a28c..8241ba3b 100644 --- a/themes/kayto.yaml +++ b/themes/kayto.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.1 black: 0 diff --git a/themes/kaze.yaml b/themes/kaze.yaml index fbcac487..f3ee3c97 100644 --- a/themes/kaze.yaml +++ b/themes/kaze.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 259 + pair: null contrast: fg: 80.6 black: 0 diff --git a/themes/kblue-minimal.yaml b/themes/kblue-minimal.yaml index a278e126..f360aaae 100644 --- a/themes/kblue-minimal.yaml +++ b/themes/kblue-minimal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/keen-contrast.yaml b/themes/keen-contrast.yaml index 24c7a34d..5e93e836 100644 --- a/themes/keen-contrast.yaml +++ b/themes/keen-contrast.yaml @@ -1,11 +1,11 @@ name: "keen-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#000000" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/keen-light.yaml b/themes/keen-light.yaml index 99fdc353..e61ed06e 100644 --- a/themes/keen-light.yaml +++ b/themes/keen-light.yaml @@ -1,11 +1,11 @@ name: "keen-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#CCCCCC" fg: "#111111" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 75.8 black: 0 diff --git a/themes/keen.yaml b/themes/keen.yaml index 1bf2d26f..bcc024f9 100644 --- a/themes/keen.yaml +++ b/themes/keen.yaml @@ -1,11 +1,11 @@ name: "keen" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#111111" fg: "#CCCCCC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 75.2 black: 0 diff --git a/themes/kenobi-dark-theme.yaml b/themes/kenobi-dark-theme.yaml index f2c43e3c..984c2786 100644 --- a/themes/kenobi-dark-theme.yaml +++ b/themes/kenobi-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 271 + pair: null contrast: fg: 50.5 black: 0 diff --git a/themes/kerala-god-s-own-country.yaml b/themes/kerala-god-s-own-country.yaml index 5d2de943..cfec486e 100644 --- a/themes/kerala-god-s-own-country.yaml +++ b/themes/kerala-god-s-own-country.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/kerama-deep.yaml b/themes/kerama-deep.yaml index 4691ff28..11b96387 100644 --- a/themes/kerama-deep.yaml +++ b/themes/kerama-deep.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 257 + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/kermit-fork.yaml b/themes/kermit-fork.yaml index fe768954..d3e62d9c 100644 --- a/themes/kermit-fork.yaml +++ b/themes/kermit-fork.yaml @@ -2,7 +2,7 @@ name: "Kermit - Fork" source: marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" version: "9.0.1" - installs: 29903 + installs: 29917 author: "Hasibur R" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 0 diff --git a/themes/keval-s-official-electric-lime.yaml b/themes/keval-s-official-electric-lime.yaml deleted file mode 100644 index bd41961d..00000000 --- a/themes/keval-s-official-electric-lime.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Keval's Official || Electric-Lime" -source: - marketplace_id: "KJS-Officials.kjs-officials----electriclime" - version: "3.3.7" - installs: 195 - author: "KJS - Officials" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=KJS-Officials.kjs-officials----electriclime" -colors: - bg: "#0E0F0B" - fg: "#C9CD9A" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 73.6 - black: 0 - red: 27.4 - green: 53.7 - yellow: 86.3 - blue: 28.1 - magenta: 30.4 - cyan: 48.2 - white: 90.7 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.7 - brightMagenta: 46 - brightCyan: 56.1 - brightWhite: 90.7 diff --git a/themes/kiiro-dark.yaml b/themes/kiiro-dark.yaml index 219411a1..52be4163 100644 --- a/themes/kiiro-dark.yaml +++ b/themes/kiiro-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.9 black: 0 diff --git a/themes/killer-dark.yaml b/themes/killer-dark.yaml index a64e6a1a..f60b8414 100644 --- a/themes/killer-dark.yaml +++ b/themes/killer-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 100.2 black: 0 diff --git a/themes/kindfeeling.yaml b/themes/kindfeeling.yaml index f6d33c14..aeaa28c8 100644 --- a/themes/kindfeeling.yaml +++ b/themes/kindfeeling.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 98 black: 17.6 diff --git a/themes/kingfisher-fishing.yaml b/themes/kingfisher-fishing.yaml index 32715e22..7bd6d88e 100644 --- a/themes/kingfisher-fishing.yaml +++ b/themes/kingfisher-fishing.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 248 + pair: null contrast: fg: 86.9 black: 16.8 diff --git a/themes/kinnitchi-neon-dark-modern.yaml b/themes/kinnitchi-neon-dark-modern.yaml index c3f95ae4..44856aba 100644 --- a/themes/kinnitchi-neon-dark-modern.yaml +++ b/themes/kinnitchi-neon-dark-modern.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/kintsugi-dark.yaml b/themes/kintsugi-dark.yaml index b6e9eb1b..f0054dcc 100644 --- a/themes/kintsugi-dark.yaml +++ b/themes/kintsugi-dark.yaml @@ -2,7 +2,7 @@ name: "Kintsugi Dark" source: marketplace_id: "ahmedhatem.kintsugi" version: "0.1.1" - installs: 543 + installs: 544 author: "Ahmed Hatem" repo: "https://github.com/ahatem/vscode-kintsugi" url: "https://marketplace.visualstudio.com/items?itemName=ahmedhatem.kintsugi" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: "Kintsugi Light" contrast: fg: 85.1 black: 0 diff --git a/themes/kintsugi-light.yaml b/themes/kintsugi-light.yaml index 663380f9..250f40e9 100644 --- a/themes/kintsugi-light.yaml +++ b/themes/kintsugi-light.yaml @@ -2,7 +2,7 @@ name: "Kintsugi Light" source: marketplace_id: "ahmedhatem.kintsugi" version: "0.1.1" - installs: 543 + installs: 544 author: "Ahmed Hatem" repo: "https://github.com/ahatem/vscode-kintsugi" url: "https://marketplace.visualstudio.com/items?itemName=ahmedhatem.kintsugi" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Kintsugi Dark" contrast: fg: 87.6 black: 87.6 diff --git a/themes/kiona.yaml b/themes/kiona.yaml index fbf54ad2..25d32ab1 100644 --- a/themes/kiona.yaml +++ b/themes/kiona.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 79.4 black: 0 diff --git a/themes/kira-theme.yaml b/themes/kira-theme.yaml index 75050ef9..a12dd5b4 100644 --- a/themes/kira-theme.yaml +++ b/themes/kira-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 90.9 black: 0 diff --git a/themes/kismat-default-colors.yaml b/themes/kismat-default-colors.yaml index c3fac09d..71be9828 100644 --- a/themes/kismat-default-colors.yaml +++ b/themes/kismat-default-colors.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 267 + pair: null contrast: fg: 59.3 black: 0 diff --git a/themes/kiss.yaml b/themes/kiss.yaml index ff3b1bd3..b3875a33 100644 --- a/themes/kiss.yaml +++ b/themes/kiss.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 104.8 black: 0 diff --git a/themes/kite-dark.yaml b/themes/kite-dark.yaml index 15ecbbf4..f263e7f6 100644 --- a/themes/kite-dark.yaml +++ b/themes/kite-dark.yaml @@ -1,11 +1,11 @@ name: "Kite Dark" source: - marketplace_id: "yudinikita.vscode-theme-kite" - version: "1.1.2" - installs: 8249 - author: "Yudin Nikita" - repo: "https://github.com/nblackninja/vscode-theme-kite" - url: "https://marketplace.visualstudio.com/items?itemName=yudinikita.vscode-theme-kite" + marketplace_id: "Zhouscar.vscode-theme-kite-wcag" + version: "0.0.1" + installs: 1278 + author: "Zhouscar" + repo: "https://github.com/Zhouscar/vscode-theme-kite-hc" + url: "https://marketplace.visualstudio.com/items?itemName=Zhouscar.vscode-theme-kite-wcag" colors: bg: "#2D353E" fg: "#C7CED6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 251 + pair: "Kite Light" contrast: fg: 70.2 black: 0 diff --git a/themes/kite-darker.yaml b/themes/kite-darker.yaml index 00b4dbde..4c19e1a3 100644 --- a/themes/kite-darker.yaml +++ b/themes/kite-darker.yaml @@ -1,11 +1,11 @@ name: "Kite Darker" source: - marketplace_id: "yudinikita.vscode-theme-kite" - version: "1.1.2" - installs: 8249 - author: "Yudin Nikita" - repo: "https://github.com/nblackninja/vscode-theme-kite" - url: "https://marketplace.visualstudio.com/items?itemName=yudinikita.vscode-theme-kite" + marketplace_id: "Zhouscar.vscode-theme-kite-wcag" + version: "0.0.1" + installs: 1278 + author: "Zhouscar" + repo: "https://github.com/Zhouscar/vscode-theme-kite-hc" + url: "https://marketplace.visualstudio.com/items?itemName=Zhouscar.vscode-theme-kite-wcag" colors: bg: "#22282F" fg: "#C7CED6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 252 + pair: null contrast: fg: 73 black: 0 diff --git a/themes/kite-light.yaml b/themes/kite-light.yaml index d6cd3df0..bd1e8331 100644 --- a/themes/kite-light.yaml +++ b/themes/kite-light.yaml @@ -1,11 +1,11 @@ name: "Kite Light" source: - marketplace_id: "yudinikita.vscode-theme-kite" - version: "1.1.2" - installs: 8249 - author: "Yudin Nikita" - repo: "https://github.com/nblackninja/vscode-theme-kite" - url: "https://marketplace.visualstudio.com/items?itemName=yudinikita.vscode-theme-kite" + marketplace_id: "Zhouscar.vscode-theme-kite-wcag" + version: "0.0.1" + installs: 1278 + author: "Zhouscar" + repo: "https://github.com/Zhouscar/vscode-theme-kite-hc" + url: "https://marketplace.visualstudio.com/items?itemName=Zhouscar.vscode-theme-kite-wcag" colors: bg: "#FFFFFF" fg: "#04274E" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "Kite Dark" contrast: fg: 101.5 black: 105.9 diff --git a/themes/kitty-catty.yaml b/themes/kitty-catty.yaml index b6e36299..fecc1b10 100644 --- a/themes/kitty-catty.yaml +++ b/themes/kitty-catty.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.3 black: 0 diff --git a/themes/kitty-night.yaml b/themes/kitty-night.yaml index f6ac7a41..15eac00b 100644 --- a/themes/kitty-night.yaml +++ b/themes/kitty-night.yaml @@ -2,7 +2,7 @@ name: "kitty night" source: marketplace_id: "goldyflakes.kitty-night" version: "3.0.5" - installs: 2645 + installs: 2646 author: "goldyflakes" repo: null url: "https://marketplace.visualstudio.com/items?itemName=goldyflakes.kitty-night" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 105.7 black: 0 diff --git a/themes/kittypower.yaml b/themes/kittypower.yaml index 0bc0fcc0..98a137a9 100644 --- a/themes/kittypower.yaml +++ b/themes/kittypower.yaml @@ -2,7 +2,7 @@ name: "KittyPower" source: marketplace_id: "Eduardo-Escoto.kittypower" version: "0.0.9" - installs: 859 + installs: 862 author: "Eduardo Escoto" repo: "https://github.com/eduardo-escoto/KittyPower" url: "https://marketplace.visualstudio.com/items?itemName=Eduardo-Escoto.kittypower" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 241 + pair: null contrast: fg: 54.1 black: 62.6 diff --git a/themes/kiwi-contrast.yaml b/themes/kiwi-contrast.yaml index b0ff7acb..fc5bd85f 100644 --- a/themes/kiwi-contrast.yaml +++ b/themes/kiwi-contrast.yaml @@ -1,11 +1,11 @@ name: "kiwi-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0C0F0E" fg: "#EDEBE6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 94.5 black: 0 diff --git a/themes/kiwi-light.yaml b/themes/kiwi-light.yaml index 3eaf4963..c7e14922 100644 --- a/themes/kiwi-light.yaml +++ b/themes/kiwi-light.yaml @@ -1,11 +1,11 @@ name: "kiwi-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#555555" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 85.9 black: 0 diff --git a/themes/kiwi.yaml b/themes/kiwi.yaml index 9286d0fd..f10c01d6 100644 --- a/themes/kiwi.yaml +++ b/themes/kiwi.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 49.8 black: 0 diff --git a/themes/kiwisoup-fork.yaml b/themes/kiwisoup-fork.yaml index b89a1ac8..4c6fad23 100644 --- a/themes/kiwisoup-fork.yaml +++ b/themes/kiwisoup-fork.yaml @@ -2,7 +2,7 @@ name: "Kiwisoup - Fork" source: marketplace_id: "0xJariel.chatgp-theme" version: "0.0.5" - installs: 2495 + installs: 2496 author: "0xJariel" repo: "https://github.com/0xJariel/ChatGP-Theme" url: "https://marketplace.visualstudio.com/items?itemName=0xJariel.chatgp-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 75.2 black: 0 diff --git a/themes/knapsack.yaml b/themes/knapsack.yaml index e83e9097..a5648285 100644 --- a/themes/knapsack.yaml +++ b/themes/knapsack.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 279 + pair: null contrast: fg: 105.4 black: 0 diff --git a/themes/knfocus-alt.yaml b/themes/knfocus-alt.yaml index 7c307c45..78d28ed4 100644 --- a/themes/knfocus-alt.yaml +++ b/themes/knfocus-alt.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 7.4 black: 0 diff --git a/themes/knfocus-base.yaml b/themes/knfocus-base.yaml index 2f62c992..16c368b2 100644 --- a/themes/knfocus-base.yaml +++ b/themes/knfocus-base.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 26.5 black: 0 diff --git a/themes/knoctal-dark.yaml b/themes/knoctal-dark.yaml index cdb3766a..2c7b7625 100644 --- a/themes/knoctal-dark.yaml +++ b/themes/knoctal-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/knoctal-darker.yaml b/themes/knoctal-darker.yaml index 6204112c..73848ec2 100644 --- a/themes/knoctal-darker.yaml +++ b/themes/knoctal-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 86.8 black: 0 diff --git a/themes/knowit-dark.yaml b/themes/knowit-dark.yaml index 99b2f5c4..d57d3e22 100644 --- a/themes/knowit-dark.yaml +++ b/themes/knowit-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 266 + pair: null contrast: fg: 81.5 black: 34.1 diff --git a/themes/knowlyr-dark.yaml b/themes/knowlyr-dark.yaml index 595a9996..92fa2558 100644 --- a/themes/knowlyr-dark.yaml +++ b/themes/knowlyr-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 176 + pair: "Knowlyr Light" contrast: fg: 66.1 black: 0 diff --git a/themes/knowlyr-light.yaml b/themes/knowlyr-light.yaml index 3987e0d7..d747c22d 100644 --- a/themes/knowlyr-light.yaml +++ b/themes/knowlyr-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Knowlyr Dark" contrast: fg: 93.7 black: 93.7 diff --git a/themes/koala-codes-theme.yaml b/themes/koala-codes-theme.yaml index 2a03c0f9..ee52411f 100644 --- a/themes/koala-codes-theme.yaml +++ b/themes/koala-codes-theme.yaml @@ -2,7 +2,7 @@ name: "Koala codes theme" source: marketplace_id: "VigneshwaranK.koala" version: "0.0.2" - installs: 788 + installs: 789 author: "Vigneshwaran K" repo: "https://github.com/Vigneshwaran-dev/Koala-Theme" url: "https://marketplace.visualstudio.com/items?itemName=VigneshwaranK.koala" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/kod-purple.yaml b/themes/kod-purple.yaml index 59630efc..aebfd608 100644 --- a/themes/kod-purple.yaml +++ b/themes/kod-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 70.8 black: 0 diff --git a/themes/kodex-arctic.yaml b/themes/kodex-arctic.yaml index bf982196..e708a0cb 100644 --- a/themes/kodex-arctic.yaml +++ b/themes/kodex-arctic.yaml @@ -2,7 +2,7 @@ name: "Kodex Arctic" source: marketplace_id: "pnx.kodex" version: "0.4.1" - installs: 232 + installs: 233 author: "Henrik Hautakoski" repo: "https://github.com/pnx/kodex-vscode" url: "https://marketplace.visualstudio.com/items?itemName=pnx.kodex" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 275 + pair: null contrast: fg: 94.8 black: 0 diff --git a/themes/kodex.yaml b/themes/kodex.yaml index 56c00e0a..3c571dbf 100644 --- a/themes/kodex.yaml +++ b/themes/kodex.yaml @@ -2,7 +2,7 @@ name: "Kodex" source: marketplace_id: "pnx.kodex" version: "0.4.1" - installs: 232 + installs: 233 author: "Henrik Hautakoski" repo: "https://github.com/pnx/kodex-vscode" url: "https://marketplace.visualstudio.com/items?itemName=pnx.kodex" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 258 + pair: null contrast: fg: 96.2 black: 0 diff --git a/themes/koffee-kreme.yaml b/themes/koffee-kreme.yaml index 2a3cb9b6..a0806a68 100644 --- a/themes/koffee-kreme.yaml +++ b/themes/koffee-kreme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 74 + pair: null contrast: fg: 84.4 black: 88.7 diff --git a/themes/koi-noir-lan-theme.yaml b/themes/koi-noir-lan-theme.yaml index 50d0ac81..bc7d7161 100644 --- a/themes/koi-noir-lan-theme.yaml +++ b/themes/koi-noir-lan-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 67.6 black: 0 diff --git a/themes/koi-noir-theme.yaml b/themes/koi-noir-theme.yaml index 12bf1c83..c68d4799 100644 --- a/themes/koi-noir-theme.yaml +++ b/themes/koi-noir-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 68.2 black: 0 diff --git a/themes/koi-pond-dark.yaml b/themes/koi-pond-dark.yaml index 3f82068e..b568415b 100644 --- a/themes/koi-pond-dark.yaml +++ b/themes/koi-pond-dark.yaml @@ -1,11 +1,11 @@ name: "Koi Pond Dark" source: - marketplace_id: "sserafy.naturefy-themes" + marketplace_id: "sserafy.ssera-themes" version: "2.0.2" - installs: 1655 + installs: 334 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.naturefy-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: bg: "#0F1419" fg: "#C7D2CC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: "Koi Pond Light" contrast: fg: 77 black: 0 diff --git a/themes/koi-pond-light.yaml b/themes/koi-pond-light.yaml index 195372fb..99eb3466 100644 --- a/themes/koi-pond-light.yaml +++ b/themes/koi-pond-light.yaml @@ -1,11 +1,11 @@ name: "Koi Pond Light" source: - marketplace_id: "sserafy.naturefy-themes" + marketplace_id: "sserafy.ssera-themes" version: "2.0.2" - installs: 1655 + installs: 334 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.naturefy-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: bg: "#FCFAF4" fg: "#2C3E34" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Koi Pond Dark" contrast: fg: 93.2 black: 93.2 diff --git a/themes/kokatheme.yaml b/themes/kokatheme.yaml index e5c89421..e869601d 100644 --- a/themes/kokatheme.yaml +++ b/themes/kokatheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77.8 black: 0 diff --git a/themes/koki-dark.yaml b/themes/koki-dark.yaml index a782559d..ed2a9f2f 100644 --- a/themes/koki-dark.yaml +++ b/themes/koki-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 81.7 black: 0 diff --git a/themes/kokubo.yaml b/themes/kokubo.yaml index afd2669e..b03999a5 100644 --- a/themes/kokubo.yaml +++ b/themes/kokubo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78 black: 8.5 diff --git a/themes/kolada.yaml b/themes/kolada.yaml index 517df3ad..6e4e4320 100644 --- a/themes/kolada.yaml +++ b/themes/kolada.yaml @@ -2,7 +2,7 @@ name: "Kolada" source: marketplace_id: "KaliaHayes.kolada" version: "0.4.0" - installs: 7953 + installs: 7962 author: "Kalia Hayes" repo: "https://github.com/KaliaHayes/Kolada-VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=KaliaHayes.kolada" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 7.5 diff --git a/themes/komorebi.yaml b/themes/komorebi.yaml index 5cac7d43..eccb9315 100644 --- a/themes/komorebi.yaml +++ b/themes/komorebi.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 69.2 black: 104.3 diff --git a/themes/kong-light-extended.yaml b/themes/kong-light-extended.yaml deleted file mode 100644 index 7c1504e6..00000000 --- a/themes/kong-light-extended.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Kong Light Extended" -source: - marketplace_id: "zeaphoo.kong-vscode-theme" - version: "1.0.10" - installs: 24 - author: "zeaphoo" - repo: "https://github.com/zeaphoo/kong-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zeaphoo.kong-vscode-theme" -colors: - bg: "#F5F5F5" - fg: "#1F2328" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 96.8 - black: 95.5 - red: 68.8 - green: 79.3 - yellow: 92 - blue: 69 - magenta: 68.3 - cyan: 67.8 - white: 65.6 - brightBlack: 75.8 - brightRed: 79.3 - brightGreen: 68.6 - brightYellow: 86.1 - brightBlue: 54.7 - brightMagenta: 53.4 - brightCyan: 57.4 - brightWhite: 51.2 diff --git a/themes/konng.yaml b/themes/konng.yaml index 673a99ea..7e26a59e 100644 --- a/themes/konng.yaml +++ b/themes/konng.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 58.5 black: 12.4 diff --git a/themes/kopo-theme.yaml b/themes/kopo-theme.yaml index 3dfbc6e6..5771421d 100644 --- a/themes/kopo-theme.yaml +++ b/themes/kopo-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 91.6 black: 0 diff --git a/themes/korbit.yaml b/themes/korbit.yaml index 32db7208..25dbf27b 100644 --- a/themes/korbit.yaml +++ b/themes/korbit.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 46.4 black: 0 diff --git a/themes/korean-dancheong-dark.yaml b/themes/korean-dancheong-dark.yaml index 42902c88..b50dc852 100644 --- a/themes/korean-dancheong-dark.yaml +++ b/themes/korean-dancheong-dark.yaml @@ -2,7 +2,7 @@ name: "Korean Dancheong Dark" source: marketplace_id: "weston0713.korean-dancheong-dark" version: "1.1.2" - installs: 189 + installs: 190 author: "weston0713" repo: "https://github.com/HC-kang/korean-dancheong-dark" url: "https://marketplace.visualstudio.com/items?itemName=weston0713.korean-dancheong-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 163 + pair: null contrast: fg: 88.6 black: 0 diff --git a/themes/korsr-theme.yaml b/themes/korsr-theme.yaml index 79bfd5ba..b248db34 100644 --- a/themes/korsr-theme.yaml +++ b/themes/korsr-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 269 + pair: null contrast: fg: 88 black: 0 diff --git a/themes/kozy-darker.yaml b/themes/kozy-darker.yaml index 2baa3ada..4c03190c 100644 --- a/themes/kozy-darker.yaml +++ b/themes/kozy-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 237 + pair: null contrast: fg: 54.5 black: 0 diff --git a/themes/kozy.yaml b/themes/kozy.yaml index ad2a1368..a6caab5b 100644 --- a/themes/kozy.yaml +++ b/themes/kozy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 235 + pair: null contrast: fg: 53.5 black: 0 diff --git a/themes/kpurple.yaml b/themes/kpurple.yaml index 31d49eb8..63380ea1 100644 --- a/themes/kpurple.yaml +++ b/themes/kpurple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 291 + pair: null contrast: fg: 104.5 black: 0 diff --git a/themes/kradeno.yaml b/themes/kradeno.yaml index 1981a8cf..3bde1e57 100644 --- a/themes/kradeno.yaml +++ b/themes/kradeno.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 254 + pair: null contrast: fg: 58 black: 7.5 diff --git a/themes/krb-violet.yaml b/themes/krb-violet.yaml index 854f4f72..61283043 100644 --- a/themes/krb-violet.yaml +++ b/themes/krb-violet.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 299 + pair: null contrast: fg: 75.9 black: 0 diff --git a/themes/kripton.yaml b/themes/kripton.yaml index 168091bd..22410cdf 100644 --- a/themes/kripton.yaml +++ b/themes/kripton.yaml @@ -1,11 +1,11 @@ name: "Kripton" source: - marketplace_id: "PhanDungTri.kripton" - version: "1.0.1" - installs: 1100 - author: "Phan Dung Tri" - repo: "https://github.com/Mysbeario/kripton-theme-for-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=PhanDungTri.kripton" + marketplace_id: "IanMuchina.kripton-flat" + version: "0.0.2" + installs: 1184 + author: "Ian Muchina" + repo: "https://github.com/ianmuchina/kripton-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=IanMuchina.kripton-flat" colors: bg: "#131519" fg: "#B3B1AD" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 59.4 black: 0 diff --git a/themes/krishna-dark-elegant.yaml b/themes/krishna-dark-elegant.yaml index 9c06a2a4..414f07b4 100644 --- a/themes/krishna-dark-elegant.yaml +++ b/themes/krishna-dark-elegant.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 254 + pair: null contrast: fg: 82.8 black: 0 diff --git a/themes/kroma-cardinal-light.yaml b/themes/kroma-cardinal-light.yaml index 47550b6a..82193164 100644 --- a/themes/kroma-cardinal-light.yaml +++ b/themes/kroma-cardinal-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 103.1 black: 105.4 diff --git a/themes/krone.yaml b/themes/krone.yaml index 3699dd85..4d7fc0ee 100644 --- a/themes/krone.yaml +++ b/themes/krone.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/krow-t.yaml b/themes/krow-t.yaml index 1d4d73f0..63315cec 100644 --- a/themes/krow-t.yaml +++ b/themes/krow-t.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/kryptonite-theme.yaml b/themes/kryptonite-theme.yaml index cb168535..30440d18 100644 --- a/themes/kryptonite-theme.yaml +++ b/themes/kryptonite-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 153 + pair: null contrast: fg: 54.1 black: 0 diff --git a/themes/ktrz-monokai.yaml b/themes/ktrz-monokai.yaml index 4f98f767..23ba9797 100644 --- a/themes/ktrz-monokai.yaml +++ b/themes/ktrz-monokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 99.7 black: 0 diff --git a/themes/kubesong.yaml b/themes/kubesong.yaml index cf08ce92..79388747 100644 --- a/themes/kubesong.yaml +++ b/themes/kubesong.yaml @@ -2,7 +2,7 @@ name: "Kubesong" source: marketplace_id: "Kubes.kubesong" version: "1.0.13" - installs: 1082 + installs: 1083 author: "Kubes" repo: "https://github.com/helgelol/kubesong-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Kubes.kubesong" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 252 + pair: null contrast: fg: 77.1 black: 0 diff --git a/themes/kultist-v2.yaml b/themes/kultist-v2.yaml index e522664c..03475e40 100644 --- a/themes/kultist-v2.yaml +++ b/themes/kultist-v2.yaml @@ -2,7 +2,7 @@ name: "Kultist v2" source: marketplace_id: "codekult.kultist-color-theme" version: "1.1.0" - installs: 312 + installs: 313 author: "codekult" repo: "https://github.com/codekult/kultist-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=codekult.kultist-color-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/kurdish-vibrant-theme.yaml b/themes/kurdish-vibrant-theme.yaml index bf81089b..3df79271 100644 --- a/themes/kurdish-vibrant-theme.yaml +++ b/themes/kurdish-vibrant-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 308 + pair: null contrast: fg: 107 black: 0 diff --git a/themes/kurdor-light.yaml b/themes/kurdor-light.yaml index ade94b9f..7dcfeb34 100644 --- a/themes/kurdor-light.yaml +++ b/themes/kurdor-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 77.5 black: 102.4 diff --git a/themes/kuro-theme-color-theme.yaml b/themes/kuro-theme-color-theme.yaml index 60a3b527..25507acd 100644 --- a/themes/kuro-theme-color-theme.yaml +++ b/themes/kuro-theme-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 64.4 black: 0 diff --git a/themes/kuro.yaml b/themes/kuro.yaml index a75fc3c6..00d255ab 100644 --- a/themes/kuro.yaml +++ b/themes/kuro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 96.7 black: 0 diff --git a/themes/kuroir-dark-01-crimson.yaml b/themes/kuroir-dark-01-crimson.yaml index 21bda1b5..e8d6f10d 100644 --- a/themes/kuroir-dark-01-crimson.yaml +++ b/themes/kuroir-dark-01-crimson.yaml @@ -1,11 +1,11 @@ name: "Kuroir Dark 01 Crimson" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#232020" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.3 black: 16.7 diff --git a/themes/kuroir-dark-02-vermilion.yaml b/themes/kuroir-dark-02-vermilion.yaml index a60abe65..d6bc4d97 100644 --- a/themes/kuroir-dark-02-vermilion.yaml +++ b/themes/kuroir-dark-02-vermilion.yaml @@ -1,11 +1,11 @@ name: "Kuroir Dark 02 Vermilion" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#232120" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.2 black: 16.6 diff --git a/themes/kuroir-dark-04-goldenrod.yaml b/themes/kuroir-dark-04-goldenrod.yaml index 062e8ee3..6ab713ab 100644 --- a/themes/kuroir-dark-04-goldenrod.yaml +++ b/themes/kuroir-dark-04-goldenrod.yaml @@ -1,11 +1,11 @@ name: "Kuroir Dark 04 Goldenrod" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#23211F" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.2 black: 16.6 diff --git a/themes/kuroir-dark-05-citrine.yaml b/themes/kuroir-dark-05-citrine.yaml deleted file mode 100644 index 5a574bb1..00000000 --- a/themes/kuroir-dark-05-citrine.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Kuroir Dark 05 Citrine" -source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" -colors: - bg: "#232220" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 78.1 - black: 16.5 - red: 45.4 - green: 45.1 - yellow: 45.3 - blue: 45.1 - magenta: 44.9 - cyan: 59.4 - white: 46 - brightBlack: 23.6 - brightRed: 58 - brightGreen: 57.6 - brightYellow: 57.9 - brightBlue: 57.8 - brightMagenta: 71.7 - brightCyan: 68 - brightWhite: 80.2 diff --git a/themes/kuroir-dark-06-chartreuse.yaml b/themes/kuroir-dark-06-chartreuse.yaml index badf6d1f..31db6cef 100644 --- a/themes/kuroir-dark-06-chartreuse.yaml +++ b/themes/kuroir-dark-06-chartreuse.yaml @@ -1,11 +1,11 @@ name: "Kuroir Dark 06 Chartreuse" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#22221F" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.1 black: 16.5 diff --git a/themes/kuroir-dark-07-fern.yaml b/themes/kuroir-dark-07-fern.yaml index aa16966c..eaa12668 100644 --- a/themes/kuroir-dark-07-fern.yaml +++ b/themes/kuroir-dark-07-fern.yaml @@ -1,11 +1,11 @@ name: "Kuroir Dark 07 Fern" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#212220" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Kuroir Light 07 Fern" contrast: fg: 78.1 black: 16.5 diff --git a/themes/kuroir-dark-08-emerald.yaml b/themes/kuroir-dark-08-emerald.yaml index aa735d1b..69db624d 100644 --- a/themes/kuroir-dark-08-emerald.yaml +++ b/themes/kuroir-dark-08-emerald.yaml @@ -1,11 +1,11 @@ name: "Kuroir Dark 08 Emerald" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#202220" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.2 black: 16.6 diff --git a/themes/kuroir-dark-09-jade.yaml b/themes/kuroir-dark-09-jade.yaml index 23ebf54c..0d53ca15 100644 --- a/themes/kuroir-dark-09-jade.yaml +++ b/themes/kuroir-dark-09-jade.yaml @@ -1,11 +1,11 @@ name: "Kuroir Dark 09 Jade" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#202221" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Kuroir Light 09 Jade" contrast: fg: 78.1 black: 16.6 diff --git a/themes/kuroir-dark-13-turquoise.yaml b/themes/kuroir-dark-13-turquoise.yaml deleted file mode 100644 index 91cbcceb..00000000 --- a/themes/kuroir-dark-13-turquoise.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Kuroir Dark 13 Turquoise" -source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" -colors: - bg: "#202222" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 78.1 - black: 16.6 - red: 45.4 - green: 45.1 - yellow: 45.3 - blue: 45.2 - magenta: 44.9 - cyan: 59.5 - white: 46.1 - brightBlack: 23.6 - brightRed: 58.1 - brightGreen: 57.7 - brightYellow: 58 - brightBlue: 57.9 - brightMagenta: 71.7 - brightCyan: 68.1 - brightWhite: 80.2 diff --git a/themes/kuroir-dark-17-sapphire.yaml b/themes/kuroir-dark-17-sapphire.yaml deleted file mode 100644 index 205e1d77..00000000 --- a/themes/kuroir-dark-17-sapphire.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Kuroir Dark 17 Sapphire" -source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" -colors: - bg: "#202122" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 78.2 - black: 16.7 - red: 45.5 - green: 45.2 - yellow: 45.5 - blue: 45.3 - magenta: 45 - cyan: 59.6 - white: 46.2 - brightBlack: 23.7 - brightRed: 58.2 - brightGreen: 57.8 - brightYellow: 58.1 - brightBlue: 58 - brightMagenta: 71.8 - brightCyan: 68.2 - brightWhite: 80.3 diff --git a/themes/kuroir-dark-18-indigo.yaml b/themes/kuroir-dark-18-indigo.yaml index 616864f8..b57b67b7 100644 --- a/themes/kuroir-dark-18-indigo.yaml +++ b/themes/kuroir-dark-18-indigo.yaml @@ -1,11 +1,11 @@ name: "Kuroir Dark 18 Indigo" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#212022" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Kuroir Light 18 Indigo" contrast: fg: 78.3 black: 16.7 diff --git a/themes/kuroir-dark-19-violet.yaml b/themes/kuroir-dark-19-violet.yaml deleted file mode 100644 index a707fdcb..00000000 --- a/themes/kuroir-dark-19-violet.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Kuroir Dark 19 Violet" -source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" -colors: - bg: "#212122" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 78.2 - black: 16.6 - red: 45.5 - green: 45.2 - yellow: 45.4 - blue: 45.2 - magenta: 45 - cyan: 59.6 - white: 46.2 - brightBlack: 23.7 - brightRed: 58.2 - brightGreen: 57.8 - brightYellow: 58.1 - brightBlue: 57.9 - brightMagenta: 71.8 - brightCyan: 68.1 - brightWhite: 80.3 diff --git a/themes/kuroir-dark-20-amethyst.yaml b/themes/kuroir-dark-20-amethyst.yaml index d26dd3df..6686185e 100644 --- a/themes/kuroir-dark-20-amethyst.yaml +++ b/themes/kuroir-dark-20-amethyst.yaml @@ -1,11 +1,11 @@ name: "Kuroir Dark 20 Amethyst" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#222122" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.2 black: 16.6 diff --git a/themes/kuroir-dark-21-magenta.yaml b/themes/kuroir-dark-21-magenta.yaml index 8b69cdc1..5647289c 100644 --- a/themes/kuroir-dark-21-magenta.yaml +++ b/themes/kuroir-dark-21-magenta.yaml @@ -1,11 +1,11 @@ name: "Kuroir Dark 21 Magenta" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#222022" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.3 black: 16.7 diff --git a/themes/kuroir-dark-22-fuchsia.yaml b/themes/kuroir-dark-22-fuchsia.yaml index 649f263f..e5cf16f4 100644 --- a/themes/kuroir-dark-22-fuchsia.yaml +++ b/themes/kuroir-dark-22-fuchsia.yaml @@ -1,11 +1,11 @@ name: "Kuroir Dark 22 Fuchsia" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#222121" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.2 black: 16.6 diff --git a/themes/kuroir-dark-23-rose.yaml b/themes/kuroir-dark-23-rose.yaml index 954ef43e..e9076d76 100644 --- a/themes/kuroir-dark-23-rose.yaml +++ b/themes/kuroir-dark-23-rose.yaml @@ -1,11 +1,11 @@ name: "Kuroir Dark 23 Rose" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#232021" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Kuroir Light 23 Rose" contrast: fg: 78.3 black: 16.7 diff --git a/themes/kuroir-dark-24-coral.yaml b/themes/kuroir-dark-24-coral.yaml index 6eb5f9dd..aa44a1ae 100644 --- a/themes/kuroir-dark-24-coral.yaml +++ b/themes/kuroir-dark-24-coral.yaml @@ -1,11 +1,11 @@ name: "Kuroir Dark 24 Coral" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#222120" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Kuroir Light 24 Coral" contrast: fg: 78.2 black: 16.6 diff --git a/themes/kuroir-light-02-vermilion.yaml b/themes/kuroir-light-02-vermilion.yaml deleted file mode 100644 index 8238d712..00000000 --- a/themes/kuroir-light-02-vermilion.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Kuroir Light 02 Vermilion" -source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" -colors: - bg: "#FFFDFC" - fg: "#000000" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 105.1 - black: 100.5 - red: 73.8 - green: 84.3 - yellow: 97 - blue: 74 - magenta: 73.3 - cyan: 72.8 - white: 70.6 - brightBlack: 80.8 - brightRed: 84.2 - brightGreen: 73.6 - brightYellow: 91.1 - brightBlue: 59.7 - brightMagenta: 58.3 - brightCyan: 62.4 - brightWhite: 56.2 diff --git a/themes/kuroir-light-04-goldenrod.yaml b/themes/kuroir-light-04-goldenrod.yaml deleted file mode 100644 index eae472c4..00000000 --- a/themes/kuroir-light-04-goldenrod.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Kuroir Light 04 Goldenrod" -source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" -colors: - bg: "#FEFDFC" - fg: "#000000" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 104.9 - black: 100.4 - red: 73.7 - green: 84.1 - yellow: 96.9 - blue: 73.8 - magenta: 73.2 - cyan: 72.7 - white: 70.5 - brightBlack: 80.7 - brightRed: 84.1 - brightGreen: 73.5 - brightYellow: 90.9 - brightBlue: 59.6 - brightMagenta: 58.2 - brightCyan: 62.2 - brightWhite: 56.1 diff --git a/themes/kuroir-light-07-fern.yaml b/themes/kuroir-light-07-fern.yaml index 3a6ae8a3..6e6cdc88 100644 --- a/themes/kuroir-light-07-fern.yaml +++ b/themes/kuroir-light-07-fern.yaml @@ -1,11 +1,11 @@ name: "Kuroir Light 07 Fern" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#FDFEFC" fg: "#000000" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Kuroir Dark 07 Fern" contrast: fg: 105.2 black: 100.7 diff --git a/themes/kuroir-light-09-jade.yaml b/themes/kuroir-light-09-jade.yaml index af755e02..a9bd6ed5 100644 --- a/themes/kuroir-light-09-jade.yaml +++ b/themes/kuroir-light-09-jade.yaml @@ -1,11 +1,11 @@ name: "Kuroir Light 09 Jade" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#FDFEFD" fg: "#000000" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Kuroir Dark 09 Jade" contrast: fg: 105.3 black: 100.7 diff --git a/themes/kuroir-light-13-turquoise.yaml b/themes/kuroir-light-13-turquoise.yaml deleted file mode 100644 index b00805d7..00000000 --- a/themes/kuroir-light-13-turquoise.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Kuroir Light 13 Turquoise" -source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" -colors: - bg: "#FDFEFE" - fg: "#000000" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 105.3 - black: 100.8 - red: 74 - green: 84.5 - yellow: 97.2 - blue: 74.2 - magenta: 73.6 - cyan: 73.1 - white: 70.9 - brightBlack: 81.1 - brightRed: 84.5 - brightGreen: 73.9 - brightYellow: 91.3 - brightBlue: 60 - brightMagenta: 58.6 - brightCyan: 62.6 - brightWhite: 56.5 diff --git a/themes/kuroir-light-15-sky.yaml b/themes/kuroir-light-15-sky.yaml index 5177e85f..3e89cdcf 100644 --- a/themes/kuroir-light-15-sky.yaml +++ b/themes/kuroir-light-15-sky.yaml @@ -1,11 +1,11 @@ name: "Kuroir Light 15 Sky" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#FDFDFF" fg: "#000000" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Kuroir Dark 15 Sky" contrast: fg: 104.9 black: 100.4 diff --git a/themes/kuroir-light-18-indigo.yaml b/themes/kuroir-light-18-indigo.yaml index d6c38706..9cf36e64 100644 --- a/themes/kuroir-light-18-indigo.yaml +++ b/themes/kuroir-light-18-indigo.yaml @@ -1,11 +1,11 @@ name: "Kuroir Light 18 Indigo" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#FDFDFE" fg: "#000000" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Kuroir Dark 18 Indigo" contrast: fg: 104.9 black: 100.3 diff --git a/themes/kuroir-light-19-violet.yaml b/themes/kuroir-light-19-violet.yaml index c8f4aec1..d1ca0dec 100644 --- a/themes/kuroir-light-19-violet.yaml +++ b/themes/kuroir-light-19-violet.yaml @@ -1,11 +1,11 @@ name: "Kuroir Light 19 Violet" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#FEFDFF" fg: "#000000" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 105.1 black: 100.5 diff --git a/themes/kuroir-light-23-rose.yaml b/themes/kuroir-light-23-rose.yaml index c38c2020..a45a8a90 100644 --- a/themes/kuroir-light-23-rose.yaml +++ b/themes/kuroir-light-23-rose.yaml @@ -1,11 +1,11 @@ name: "Kuroir Light 23 Rose" source: - marketplace_id: "6o8.colorized-theme" - version: "26.0.1" - installs: 367 + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 author: "6o8" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" colors: bg: "#FFFDFD" fg: "#000000" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Kuroir Dark 23 Rose" contrast: fg: 105.1 black: 100.5 diff --git a/themes/kyanite.yaml b/themes/kyanite.yaml index 0e459991..0498e78c 100644 --- a/themes/kyanite.yaml +++ b/themes/kyanite.yaml @@ -1,11 +1,11 @@ name: "Kyanite" source: - marketplace_id: "NyctibiusVII.descomplica-theme" - version: "1.4.18" - installs: 387 + marketplace_id: "NyctibiusVII.nyctibiusvii-theme" + version: "1.1.4" + installs: 254 author: "NyctibiusVII" - repo: "https://github.com/Descomplica-ADS/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.descomplica-theme" + repo: "https://github.com/NyctibiusVII/nyctibiusvii-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.nyctibiusvii-theme" colors: bg: "#071321" fg: "#737EA1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 253 + pair: null contrast: fg: 33.6 black: 8.1 diff --git a/themes/kybern.yaml b/themes/kybern.yaml index ffa60f81..255f67d6 100644 --- a/themes/kybern.yaml +++ b/themes/kybern.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 107.6 black: 0 diff --git a/themes/kybik-dark.yaml b/themes/kybik-dark.yaml index 4281c216..c3cb7ed6 100644 --- a/themes/kybik-dark.yaml +++ b/themes/kybik-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 54.8 black: 0 diff --git a/themes/kybik.yaml b/themes/kybik.yaml index f337f3f3..57b913f1 100644 --- a/themes/kybik.yaml +++ b/themes/kybik.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 53.8 black: 0 diff --git a/themes/kyngo-s-theme.yaml b/themes/kyngo-s-theme.yaml index 7078c781..a042f4be 100644 --- a/themes/kyngo-s-theme.yaml +++ b/themes/kyngo-s-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: null contrast: fg: 77.3 black: 0 diff --git a/themes/kyojuro-rengoku.yaml b/themes/kyojuro-rengoku.yaml index 23dd1368..aaacfaf1 100644 --- a/themes/kyojuro-rengoku.yaml +++ b/themes/kyojuro-rengoku.yaml @@ -2,7 +2,7 @@ name: "Kyojuro Rengoku" source: marketplace_id: "devLocifer.hashira-code-theme" version: "0.0.1" - installs: 738 + installs: 739 author: "devLocifer" repo: "https://github.com/diazdjul19/hashira-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 278 + pair: null contrast: fg: 99 black: 0 diff --git a/themes/kyorazo-dark-theme.yaml b/themes/kyorazo-dark-theme.yaml index a925fc25..30b35a50 100644 --- a/themes/kyorazo-dark-theme.yaml +++ b/themes/kyorazo-dark-theme.yaml @@ -2,7 +2,7 @@ name: "kyorazo_dark_theme" source: marketplace_id: "WilliamKyorazo.kyorazo-theme" version: "1.0.2" - installs: 4874 + installs: 4876 author: "William Kyorazo" repo: "https://github.com/bywilliams/kyorazo_theme_vscode" url: "https://marketplace.visualstudio.com/items?itemName=WilliamKyorazo.kyorazo-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/lackluster-dark.yaml b/themes/lackluster-dark.yaml index 3c5c4d41..56b8e8cd 100644 --- a/themes/lackluster-dark.yaml +++ b/themes/lackluster-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 30.7 black: 0 diff --git a/themes/lackluster-night.yaml b/themes/lackluster-night.yaml deleted file mode 100644 index 22d1adf9..00000000 --- a/themes/lackluster-night.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Lackluster Night" -source: - marketplace_id: "CoderSauce.lackluster-theme" - version: "1.0.0" - installs: 217 - author: "CoderSauce" - repo: "https://github.com/slugbyte/lackluster.nvim" - url: "https://marketplace.visualstudio.com/items?itemName=CoderSauce.lackluster-theme" -colors: - bg: "#191919" - fg: "#CCCCCC" - black: "#000000" - red: "#D70000" - green: "#789978" - yellow: "#ABAB77" - blue: "#7788AA" - magenta: "#708090" - cyan: "#DEEEED" - white: "#CCCCCC" - brightBlack: "#444444" - brightRed: "#D70000" - brightGreen: "#789978" - brightYellow: "#ABAB77" - brightBlue: "#7788AA" - brightMagenta: "#708090" - brightCyan: "#DEEEED" - brightWhite: "#DDDDDD" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 74.4 - black: 0 - red: 26.5 - green: 41.7 - yellow: 53.9 - blue: 37.2 - magenta: 32.7 - cyan: 93.4 - white: 74.4 - brightBlack: 8.6 - brightRed: 26.5 - brightGreen: 41.7 - brightYellow: 53.9 - brightBlue: 37.2 - brightMagenta: 32.7 - brightCyan: 93.4 - brightWhite: 84.8 diff --git a/themes/ladyluck-color-theme.yaml b/themes/ladyluck-color-theme.yaml index 42a5f108..a1a1c460 100644 --- a/themes/ladyluck-color-theme.yaml +++ b/themes/ladyluck-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 327 + pair: null contrast: fg: 100.7 black: 0 diff --git a/themes/lanten-color-theme-dark.yaml b/themes/lanten-color-theme-dark.yaml index 731fdef6..dc5d4ba6 100644 --- a/themes/lanten-color-theme-dark.yaml +++ b/themes/lanten-color-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 261 + pair: null contrast: fg: 82.8 black: 0 diff --git a/themes/lapis-ruby-dark-stealth-version.yaml b/themes/lapis-ruby-dark-stealth-version.yaml deleted file mode 100644 index 6c53b423..00000000 --- a/themes/lapis-ruby-dark-stealth-version.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Lapis Ruby Dark (stealth version)" -source: - marketplace_id: "AlexBarnett.lapis-vscode" - version: "1.8.3" - installs: 5587 - author: "Alex Barnett" - repo: "https://github.com/aslbarnett/lapis-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AlexBarnett.lapis-vscode" -colors: - bg: "#15181E" - fg: "#D6E2FF" - black: "#2D3953" - red: "#FC83AB" - green: "#ABFC83" - yellow: "#FCD483" - blue: "#83ABFC" - magenta: "#D483FC" - cyan: "#83FCD4" - white: "#D6E2FF" - brightBlack: "#43547A" - brightRed: "#FC9CBC" - brightGreen: "#BCFC9C" - brightYellow: "#FCDC9C" - brightBlue: "#9CBCFC" - brightMagenta: "#DC9CFC" - brightCyan: "#9CFCDC" - brightWhite: "#D6E2FF" -meta: - mode: "dark" - accent: "magenta" - hue: 264 - contrast: - fg: 87.9 - black: 0 - red: 55.2 - green: 91.4 - yellow: 82.6 - blue: 56.1 - magenta: 52.4 - cyan: 90.8 - white: 87.9 - brightBlack: 14.8 - brightRed: 63.3 - brightGreen: 93.5 - brightYellow: 86.6 - brightBlue: 65.1 - brightMagenta: 61.2 - brightCyan: 92.9 - brightWhite: 87.9 diff --git a/themes/lapis-ruby-light.yaml b/themes/lapis-ruby-light.yaml deleted file mode 100644 index cc65f2ee..00000000 --- a/themes/lapis-ruby-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Lapis Ruby Light" -source: - marketplace_id: "AlexBarnett.lapis-vscode" - version: "1.8.3" - installs: 5587 - author: "Alex Barnett" - repo: "https://github.com/aslbarnett/lapis-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AlexBarnett.lapis-vscode" -colors: - bg: "#F5F8FF" - fg: "#2D3953" - black: "#7B8FB7" - red: "#CC3366" - green: "#52A329" - yellow: "#CC9933" - blue: "#3366CC" - magenta: "#9933CC" - cyan: "#29A37A" - white: "#2D3953" - brightBlack: "#9FADC6" - brightRed: "#D14775" - brightGreen: "#5CB72E" - brightYellow: "#D1A347" - brightBlue: "#4775D1" - brightMagenta: "#A347D1" - brightCyan: "#2EB789" - brightWhite: "#2D3953" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 92.2 - black: 55.6 - red: 68.7 - green: 54.2 - yellow: 45.8 - blue: 72 - magenta: 73.1 - cyan: 54.2 - white: 92.2 - brightBlack: 40.4 - brightRed: 64.7 - brightGreen: 45.2 - brightYellow: 41.4 - brightBlue: 66.2 - brightMagenta: 68.3 - brightCyan: 45.2 - brightWhite: 92.2 diff --git a/themes/lapis-stealth-version.yaml b/themes/lapis-stealth-version.yaml deleted file mode 100644 index b530f204..00000000 --- a/themes/lapis-stealth-version.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Lapis (stealth version)" -source: - marketplace_id: "AlexBarnett.lapis-vscode" - version: "1.8.3" - installs: 5587 - author: "Alex Barnett" - repo: "https://github.com/aslbarnett/lapis-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AlexBarnett.lapis-vscode" -colors: - bg: "#1B1F27" - fg: "#D6E2FF" - black: "#2D3953" - red: "#FC83AB" - green: "#ABFC83" - yellow: "#FCD483" - blue: "#83ABFC" - magenta: "#D483FC" - cyan: "#83FCD4" - white: "#D6E2FF" - brightBlack: "#43547A" - brightRed: "#FC9CBC" - brightGreen: "#BCFC9C" - brightYellow: "#FCDC9C" - brightBlue: "#9CBCFC" - brightMagenta: "#DC9CFC" - brightCyan: "#9CFCDC" - brightWhite: "#D6E2FF" -meta: - mode: "dark" - accent: "magenta" - hue: 264 - contrast: - fg: 87.1 - black: 0 - red: 54.4 - green: 90.5 - yellow: 81.7 - blue: 55.2 - magenta: 51.5 - cyan: 90 - white: 87.1 - brightBlack: 14 - brightRed: 62.5 - brightGreen: 92.7 - brightYellow: 85.8 - brightBlue: 64.2 - brightMagenta: 60.4 - brightCyan: 92 - brightWhite: 87.1 diff --git a/themes/laracasts-contrast.yaml b/themes/laracasts-contrast.yaml index ddf3f224..d7a27c43 100644 --- a/themes/laracasts-contrast.yaml +++ b/themes/laracasts-contrast.yaml @@ -1,11 +1,11 @@ name: "laracasts-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#292D33" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 258 + pair: null contrast: fg: 70.5 black: 0 diff --git a/themes/laracasts-light.yaml b/themes/laracasts-light.yaml index 2df13835..2575379e 100644 --- a/themes/laracasts-light.yaml +++ b/themes/laracasts-light.yaml @@ -1,11 +1,11 @@ name: "laracasts-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#4D545D" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 86.6 black: 0 diff --git a/themes/laracasts.yaml b/themes/laracasts.yaml index 39a6f0aa..d3f88454 100644 --- a/themes/laracasts.yaml +++ b/themes/laracasts.yaml @@ -1,11 +1,11 @@ name: "laracasts" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#4D545D" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 255 + pair: null contrast: fg: 58.4 black: 0 diff --git a/themes/laravel-contrast.yaml b/themes/laravel-contrast.yaml index a5396901..5ecc3d2c 100644 --- a/themes/laravel-contrast.yaml +++ b/themes/laravel-contrast.yaml @@ -1,11 +1,11 @@ name: "laravel-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#000000" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/laravel-light.yaml b/themes/laravel-light.yaml index d92a2f1a..cb4c8810 100644 --- a/themes/laravel-light.yaml +++ b/themes/laravel-light.yaml @@ -1,11 +1,11 @@ name: "laravel-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#444444" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/laravel.yaml b/themes/laravel.yaml index 9d513633..6b370b4e 100644 --- a/themes/laravel.yaml +++ b/themes/laravel.yaml @@ -1,49 +1,50 @@ -name: "Laravel" +name: "laravel" source: - marketplace_id: "nsouto.laravel" - version: "0.1.5" - installs: 21813 - author: "Nuno Souto" - repo: "https://github.com/nsouto/vsce-laravel-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nsouto.laravel" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: - bg: "#EEEEEE" - fg: "#000000" - black: "#333333" - red: "#DA564A" - green: "#2E7D32" - yellow: "#EEBB6E" - blue: "#0077AA" - magenta: "#E5C499" - cyan: "#4EA1DF" - white: "#FFFFFF" - brightBlack: "#333333" - brightRed: "#DA564A" - brightGreen: "#399C3E" - brightYellow: "#FFB670" - brightBlue: "#0077AA" - brightMagenta: "#AA7900" - brightCyan: "#4EA1DF" + bg: "#2E2C2B" + fg: "#DEDEDE" + black: "#3B3937" + red: "#BA0E2E" + green: "#FFC48C" + yellow: "#FC6B0A" + blue: "#FC580C" + magenta: "#FFA927" + cyan: "#FFC48C" + white: "#EBEBEB" + brightBlack: "#635E5C" + brightRed: "#F03E5F" + brightGreen: "#FFF8F2" + brightYellow: "#FDA86F" + brightBlue: "#FD9D71" + brightMagenta: "#FFD28D" + brightCyan: "#FFF8F2" brightWhite: "#FFFFFF" meta: - mode: "light" + mode: "dark" accent: "orange" hue: null + pair: null contrast: - fg: 95.9 - black: 88.6 - red: 55.3 - green: 64.9 - yellow: 21.9 - blue: 63.7 - magenta: 18.8 - cyan: 43.6 - white: 8.9 - brightBlack: 88.6 - brightRed: 55.3 - brightGreen: 52.1 - brightYellow: 20.9 - brightBlue: 63.7 - brightMagenta: 55.7 - brightCyan: 43.6 - brightWhite: 8.9 + fg: 82.3 + black: 0 + red: 17.2 + green: 73.5 + yellow: 43.1 + blue: 39.3 + magenta: 61.9 + cyan: 73.5 + white: 90.5 + brightBlack: 15.8 + brightRed: 33.5 + brightGreen: 99.7 + brightYellow: 62 + brightBlue: 58.3 + brightMagenta: 79.2 + brightCyan: 99.7 + brightWhite: 103.6 diff --git a/themes/laserkai.yaml b/themes/laserkai.yaml index 042cd426..b6a4828b 100644 --- a/themes/laserkai.yaml +++ b/themes/laserkai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 97.7 black: 0 diff --git a/themes/late-night.yaml b/themes/late-night.yaml index 282efaf0..c40d3d37 100644 --- a/themes/late-night.yaml +++ b/themes/late-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/lauds.yaml b/themes/lauds.yaml index 6916bda1..5e4f54ba 100644 --- a/themes/lauds.yaml +++ b/themes/lauds.yaml @@ -2,7 +2,7 @@ name: "Lauds" source: marketplace_id: "rivethorn.compline" version: "1.0.1" - installs: 547 + installs: 548 author: "Rivethorn" repo: "https://github.com/jblais493/compline" url: "https://marketplace.visualstudio.com/items?itemName=rivethorn.compline" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 94.3 black: 73.3 diff --git a/themes/lavalink.yaml b/themes/lavalink.yaml index a5a091bb..75e34ce3 100644 --- a/themes/lavalink.yaml +++ b/themes/lavalink.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 224 + pair: null contrast: fg: 93.4 black: 0 diff --git a/themes/lavanda.yaml b/themes/lavanda.yaml index f72f00a3..9ed95639 100644 --- a/themes/lavanda.yaml +++ b/themes/lavanda.yaml @@ -2,7 +2,7 @@ name: "Lavanda" source: marketplace_id: "TheodorLundin.lavanda-color-theme" version: "1.1.0" - installs: 137 + installs: 138 author: "Theodor Lundin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TheodorLundin.lavanda-color-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 54.6 black: 0 diff --git a/themes/lavender-contrast.yaml b/themes/lavender-contrast.yaml deleted file mode 100644 index c81a068d..00000000 --- a/themes/lavender-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "lavender-contrast" -source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" -colors: - bg: "#080709" - fg: "#E0CEED" - black: "#151217" - red: "#BA0E2E" - green: "#A29DFA" - yellow: "#B657FF" - blue: "#F5B0EF" - magenta: "#8E6DA6" - cyan: "#8E69C9" - white: "#ECE1F4" - brightBlack: "#3B3442" - brightRed: "#F03E5F" - brightGreen: "#FEFEFF" - brightYellow: "#E2BDFF" - brightBlue: "#FFFFFF" - brightMagenta: "#BFACCD" - brightCyan: "#C7B4E4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: null - contrast: - fg: 80.7 - black: 0 - red: 21.4 - green: 54.7 - yellow: 38.5 - blue: 72.4 - magenta: 31.9 - cyan: 32.9 - white: 90.8 - brightBlack: 0 - brightRed: 37.7 - brightGreen: 107.2 - brightYellow: 75.1 - brightBlue: 107.8 - brightMagenta: 61.1 - brightCyan: 66.4 - brightWhite: 107.8 diff --git a/themes/lavender-dark-theme.yaml b/themes/lavender-dark-theme.yaml index 9c867952..928ace73 100644 --- a/themes/lavender-dark-theme.yaml +++ b/themes/lavender-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Lavender Dark Theme" source: marketplace_id: "LavenderTheme.lavender-code-theme" version: "1.0.1" - installs: 1591 + installs: 1592 author: "Ademir Silva" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LavenderTheme.lavender-code-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 309 + pair: "Lavender Light theme" contrast: fg: 78.7 black: 8.4 diff --git a/themes/lavender-light-theme.yaml b/themes/lavender-light-theme.yaml index 731fbae2..8f009687 100644 --- a/themes/lavender-light-theme.yaml +++ b/themes/lavender-light-theme.yaml @@ -2,7 +2,7 @@ name: "Lavender Light theme" source: marketplace_id: "LavenderTheme.lavender-code-theme" version: "1.0.1" - installs: 1591 + installs: 1592 author: "Ademir Silva" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LavenderTheme.lavender-code-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Lavender Dark Theme" contrast: fg: 72.2 black: 101.7 diff --git a/themes/lavender-light.yaml b/themes/lavender-light.yaml index 543cc048..ac21656b 100644 --- a/themes/lavender-light.yaml +++ b/themes/lavender-light.yaml @@ -1,11 +1,11 @@ name: "lavender-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#29222E" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 102.3 black: 0 diff --git a/themes/lavender.yaml b/themes/lavender.yaml index 9e74d01d..0f1f12bf 100644 --- a/themes/lavender.yaml +++ b/themes/lavender.yaml @@ -1,11 +1,11 @@ name: "lavender" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#29222E" fg: "#E0CEED" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 311 + pair: null contrast: fg: 77.9 black: 0 diff --git a/themes/lazuli.yaml b/themes/lazuli.yaml index 75c658f0..dd36b0c7 100644 --- a/themes/lazuli.yaml +++ b/themes/lazuli.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 245 + pair: null contrast: fg: 32.8 black: 0 diff --git a/themes/lazy-yellow-lemon.yaml b/themes/lazy-yellow-lemon.yaml index dac11212..51c1afdd 100644 --- a/themes/lazy-yellow-lemon.yaml +++ b/themes/lazy-yellow-lemon.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 103 black: 103 diff --git a/themes/lazygreed-theme.yaml b/themes/lazygreed-theme.yaml index 964306f5..7815ab6b 100644 --- a/themes/lazygreed-theme.yaml +++ b/themes/lazygreed-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 106.6 black: 0 diff --git a/themes/lazzaretti-plenatech.yaml b/themes/lazzaretti-plenatech.yaml index 7f826094..62a17703 100644 --- a/themes/lazzaretti-plenatech.yaml +++ b/themes/lazzaretti-plenatech.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 52.8 black: 0 diff --git a/themes/lazzaretti-win11.yaml b/themes/lazzaretti-win11.yaml index f8dc1bbe..5a562612 100644 --- a/themes/lazzaretti-win11.yaml +++ b/themes/lazzaretti-win11.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/lbb-builder-dark.yaml b/themes/lbb-builder-dark.yaml index b9ff08e9..da281c45 100644 --- a/themes/lbb-builder-dark.yaml +++ b/themes/lbb-builder-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 284 + pair: "LBB Builder Light" contrast: fg: 85.6 black: 0 diff --git a/themes/lbb-builder-light.yaml b/themes/lbb-builder-light.yaml index 7bc35564..0dd99539 100644 --- a/themes/lbb-builder-light.yaml +++ b/themes/lbb-builder-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "LBB Builder Dark" contrast: fg: 96.2 black: 100.4 diff --git a/themes/lc.yaml b/themes/lc.yaml index 78bb5622..addfb2db 100644 --- a/themes/lc.yaml +++ b/themes/lc.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 37.8 black: 0 diff --git a/themes/lcars.yaml b/themes/lcars.yaml index bee061fc..78496073 100644 --- a/themes/lcars.yaml +++ b/themes/lcars.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 102 black: 0 diff --git a/themes/le-moderne.yaml b/themes/le-moderne.yaml index 9a48a4d3..b38f5ca1 100644 --- a/themes/le-moderne.yaml +++ b/themes/le-moderne.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 69.1 black: 0 diff --git a/themes/leaf-dark-soft.yaml b/themes/leaf-dark-soft.yaml index b361973d..10efa214 100644 --- a/themes/leaf-dark-soft.yaml +++ b/themes/leaf-dark-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 220 + pair: null contrast: fg: 78.1 black: 0 diff --git a/themes/leaf-dark.yaml b/themes/leaf-dark.yaml index 69aeaf64..ab4180dd 100644 --- a/themes/leaf-dark.yaml +++ b/themes/leaf-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 215 + pair: null contrast: fg: 81.7 black: 0 diff --git a/themes/lean-coders-dark.yaml b/themes/lean-coders-dark.yaml index 4ea45c23..cf2171eb 100644 --- a/themes/lean-coders-dark.yaml +++ b/themes/lean-coders-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/learn-with-sumit-blue-velvet-theme.yaml b/themes/learn-with-sumit-blue-velvet-theme.yaml deleted file mode 100644 index b2d7d9f1..00000000 --- a/themes/learn-with-sumit-blue-velvet-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Learn with Sumit Blue Velvet Theme" -source: - marketplace_id: "SumitSaha.learn-with-sumit-theme" - version: "12.1.0" - installs: 157486 - author: "Learn with Sumit" - repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#40444C" - red: "#F81141" - green: "#23974A" - yellow: "#FD7E57" - blue: "#285BFF" - magenta: "#8C62FD" - cyan: "#3A8AB2" - white: "#CDD3E0" - brightBlack: "#8F9AAE" - brightRed: "#FC4A6D" - brightGreen: "#37BD58" - brightYellow: "#F6BE48" - brightBlue: "#199FFD" - brightMagenta: "#FC58F6" - brightCyan: "#50ACAE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 264 - contrast: - fg: 56.2 - black: 0 - red: 32.1 - green: 32.8 - yellow: 48.7 - blue: 22.6 - magenta: 30.8 - cyan: 31.8 - white: 75.5 - brightBlack: 43.2 - brightRed: 38.3 - brightGreen: 50.1 - brightYellow: 68.5 - brightBlue: 43.9 - brightMagenta: 46.9 - brightCyan: 45.9 - brightWhite: 103.7 diff --git a/themes/learn-with-sumit-official-theme.yaml b/themes/learn-with-sumit-official-theme.yaml deleted file mode 100644 index 22fa82a0..00000000 --- a/themes/learn-with-sumit-official-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Learn with Sumit Official Theme" -source: - marketplace_id: "SumitSaha.learn-with-sumit-theme" - version: "12.1.0" - installs: 157486 - author: "Learn with Sumit" - repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" -colors: - bg: "#101E2C" - fg: "#BDD2E7" - black: "#000000" - red: "#FF7878" - green: "#AAE682" - yellow: "#FFDC96" - blue: "#00B1FF" - magenta: "#00D991" - cyan: "#00DCDC" - white: "#BDD2E7" - brightBlack: "#5F82A5" - brightRed: "#FF7878" - brightGreen: "#AAE682" - brightYellow: "#FFDC96" - brightBlue: "#00B1FF" - brightMagenta: "#00D991" - brightCyan: "#00DCDC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 249 - contrast: - fg: 76 - black: 0 - red: 50.7 - green: 79.7 - yellow: 86.3 - blue: 53.7 - magenta: 66.7 - cyan: 71 - white: 76 - brightBlack: 32.5 - brightRed: 50.7 - brightGreen: 79.7 - brightYellow: 86.3 - brightBlue: 53.7 - brightMagenta: 66.7 - brightCyan: 71 - brightWhite: 106.1 diff --git a/themes/learn-with-sumit-peace-of-the-eye-dracula-version.yaml b/themes/learn-with-sumit-peace-of-the-eye-dracula-version.yaml deleted file mode 100644 index 714d1f06..00000000 --- a/themes/learn-with-sumit-peace-of-the-eye-dracula-version.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Learn with Sumit - Peace of the eye - Dracula version" -source: - marketplace_id: "SumitSaha.learn-with-sumit-theme" - version: "12.1.0" - installs: 157486 - author: "Learn with Sumit" - repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" -colors: - bg: "#122033" - fg: "#FFFFFF" - black: "#122033" - red: "#E35535" - green: "#52AB62" - yellow: "#FFD866" - blue: "#00B3BD" - magenta: "#E991E3" - cyan: "#78E8C6" - white: "#FFFFFF" - brightBlack: "#00B3BD" - brightRed: "#E35535" - brightGreen: "#52AB62" - brightYellow: "#FFD866" - brightBlue: "#00B3BD" - brightMagenta: "#E991E3" - brightCyan: "#78E8C6" - brightWhite: "#00B3BD" -meta: - mode: "dark" - accent: "orange" - hue: 256 - contrast: - fg: 105.8 - black: 0 - red: 35.6 - green: 45.3 - yellow: 83.2 - blue: 50.3 - magenta: 57.4 - cyan: 78.6 - white: 105.8 - brightBlack: 50.3 - brightRed: 35.6 - brightGreen: 45.3 - brightYellow: 83.2 - brightBlue: 50.3 - brightMagenta: 57.4 - brightCyan: 78.6 - brightWhite: 50.3 diff --git a/themes/learn-with-sumit-professional-theme.yaml b/themes/learn-with-sumit-professional-theme.yaml deleted file mode 100644 index 7dc5a43b..00000000 --- a/themes/learn-with-sumit-professional-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Learn with Sumit - Professional Theme" -source: - marketplace_id: "SumitSaha.learn-with-sumit-theme" - version: "12.1.0" - installs: 157486 - author: "Learn with Sumit" - repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" -colors: - bg: "#1C1E2E" - fg: "#C8D3F5" - black: "#000000" - red: "#FF757F" - green: "#C3E88D" - yellow: "#FFC777" - blue: "#82AAFF" - magenta: "#FCA7EA" - cyan: "#86E1FC" - white: "#C8D3F5" - brightBlack: "#828BB8" - brightRed: "#FF757F" - brightGreen: "#C3E88D" - brightYellow: "#FFC777" - brightBlue: "#82AAFF" - brightMagenta: "#FCA7EA" - brightCyan: "#86E1FC" - brightWhite: "#C8D3F5" -meta: - mode: "dark" - accent: "orange" - hue: 278 - contrast: - fg: 78.2 - black: 0 - red: 49.9 - green: 83.2 - yellow: 76.5 - blue: 54.9 - magenta: 68.3 - cyan: 78.8 - white: 78.2 - brightBlack: 39.2 - brightRed: 49.9 - brightGreen: 83.2 - brightYellow: 76.5 - brightBlue: 54.9 - brightMagenta: 68.3 - brightCyan: 78.8 - brightWhite: 78.2 diff --git a/themes/learn-with-sumit-simple-as-light.yaml b/themes/learn-with-sumit-simple-as-light.yaml deleted file mode 100644 index 40d43234..00000000 --- a/themes/learn-with-sumit-simple-as-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Learn with Sumit - Simple as light" -source: - marketplace_id: "SumitSaha.learn-with-sumit-theme" - version: "12.1.0" - installs: 157486 - author: "Learn with Sumit" - repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" -colors: - bg: "#FFFFFF" - fg: "#455059" - black: "#FFFFFF" - red: "#C13838" - green: "#37AE6F" - yellow: "#C9A022" - blue: "#3398DB" - magenta: "#CC71BC" - cyan: "#24B5A8" - white: "#455059" - brightBlack: "#3398DB" - brightRed: "#C13838" - brightGreen: "#37AE6F" - brightYellow: "#C9A022" - brightBlue: "#3398DB" - brightMagenta: "#CC71BC" - brightCyan: "#24B5A8" - brightWhite: "#3398DB" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 88.5 - black: 0 - red: 75.7 - green: 53.8 - yellow: 48.2 - blue: 58.3 - magenta: 58.3 - cyan: 49.4 - white: 88.5 - brightBlack: 58.3 - brightRed: 75.7 - brightGreen: 53.8 - brightYellow: 48.2 - brightBlue: 58.3 - brightMagenta: 58.3 - brightCyan: 49.4 - brightWhite: 58.3 diff --git a/themes/learn-with-sumit-theme.yaml b/themes/learn-with-sumit-theme.yaml index 5d7fb37d..39c8d264 100644 --- a/themes/learn-with-sumit-theme.yaml +++ b/themes/learn-with-sumit-theme.yaml @@ -2,7 +2,7 @@ name: "Learn with Sumit Theme" source: marketplace_id: "SumitSaha.learn-with-sumit-theme" version: "12.1.0" - installs: 157486 + installs: 157511 author: "Learn with Sumit" repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 269 + pair: null contrast: fg: 106.2 black: 0 diff --git a/themes/learn-with-sumit-vintage.yaml b/themes/learn-with-sumit-vintage.yaml deleted file mode 100644 index 6f748289..00000000 --- a/themes/learn-with-sumit-vintage.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Learn with Sumit - Vintage" -source: - marketplace_id: "SumitSaha.learn-with-sumit-theme" - version: "12.1.0" - installs: 157486 - author: "Learn with Sumit" - repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" -colors: - bg: "#23272E" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "pink" - hue: 262 - contrast: - fg: 57.2 - black: 0 - red: 34.5 - green: 58.1 - yellow: 46.4 - blue: 47.4 - magenta: 36.8 - cyan: 50.3 - white: 88.4 - brightBlack: 13.2 - brightRed: 43.9 - brightGreen: 74.6 - brightYellow: 59 - brightBlue: 61.5 - brightMagenta: 48 - brightCyan: 65.6 - brightWhite: 80.8 diff --git a/themes/leftish.yaml b/themes/leftish.yaml index 02bb2eb9..2689b7e1 100644 --- a/themes/leftish.yaml +++ b/themes/leftish.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 98.7 black: 106 diff --git a/themes/legacy-contrast.yaml b/themes/legacy-contrast.yaml index 2395da54..facefe58 100644 --- a/themes/legacy-contrast.yaml +++ b/themes/legacy-contrast.yaml @@ -1,11 +1,11 @@ name: "legacy-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#080A0C" fg: "#AEC2E0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 68.7 black: 0 diff --git a/themes/legacy-light.yaml b/themes/legacy-light.yaml index 0c46c05d..e0e1f015 100644 --- a/themes/legacy-light.yaml +++ b/themes/legacy-light.yaml @@ -1,11 +1,11 @@ name: "legacy-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#444444" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/legacy-solarized-dark-color-theme.yaml b/themes/legacy-solarized-dark-color-theme.yaml index 902474ce..3d61b43a 100644 --- a/themes/legacy-solarized-dark-color-theme.yaml +++ b/themes/legacy-solarized-dark-color-theme.yaml @@ -2,7 +2,7 @@ name: "legacy-solarized-dark-color-theme" source: marketplace_id: "ryanolsonx.solarized" version: "3.0.0" - installs: 183408 + installs: 183454 author: "Ryan Olson" repo: "https://github.com/ryanolsonx/vscode-solarized-theme" url: "https://marketplace.visualstudio.com/items?itemName=ryanolsonx.solarized" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: null contrast: fg: 39.5 black: 0 diff --git a/themes/legacy-solarized-light-color-theme.yaml b/themes/legacy-solarized-light-color-theme.yaml index a6b83aa8..bddcd681 100644 --- a/themes/legacy-solarized-light-color-theme.yaml +++ b/themes/legacy-solarized-light-color-theme.yaml @@ -2,7 +2,7 @@ name: "legacy-solarized-light-color-theme" source: marketplace_id: "ryanolsonx.solarized" version: "3.0.0" - installs: 183408 + installs: 183454 author: "Ryan Olson" repo: "https://github.com/ryanolsonx/vscode-solarized-theme" url: "https://marketplace.visualstudio.com/items?itemName=ryanolsonx.solarized" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 65.7 black: 65.7 diff --git a/themes/legacy.yaml b/themes/legacy.yaml deleted file mode 100644 index b3a133f8..00000000 --- a/themes/legacy.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "legacy" -source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" -colors: - bg: "#212933" - fg: "#AEC2E0" - black: "#2B3542" - red: "#BA0E2E" - green: "#267FB5" - yellow: "#FFFFFF" - blue: "#FFB20D" - magenta: "#748AA6" - cyan: "#267FB5" - white: "#C0D0E7" - brightBlack: "#495B71" - brightRed: "#F03E5F" - brightGreen: "#63B0DE" - brightYellow: "#FFFFFF" - brightBlue: "#FFD273" - brightMagenta: "#B2BECE" - brightCyan: "#63B0DE" - brightWhite: "#F8FAFC" -meta: - mode: "dark" - accent: "orange" - hue: 254 - contrast: - fg: 65.4 - black: 0 - red: 18 - green: 28.1 - yellow: 104.4 - blue: 65.9 - magenta: 35.2 - cyan: 28.1 - white: 73.7 - brightBlack: 14.4 - brightRed: 34.3 - brightGreen: 51.6 - brightYellow: 104.4 - brightBlue: 79.5 - brightMagenta: 63.2 - brightCyan: 51.6 - brightWhite: 100.9 diff --git a/themes/legendary-dark.yaml b/themes/legendary-dark.yaml index 37915881..90f0fa94 100644 --- a/themes/legendary-dark.yaml +++ b/themes/legendary-dark.yaml @@ -2,7 +2,7 @@ name: "Legendary Dark" source: marketplace_id: "LlewellynPaintsil.legendary-light" version: "1.0.0" - installs: 3076 + installs: 3077 author: "Llewellyn Adonteng Paintsil" repo: "https://github.com/Llewellyn500/legendary-light" url: "https://marketplace.visualstudio.com/items?itemName=LlewellynPaintsil.legendary-light" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 92.3 black: 17.8 diff --git a/themes/legends-theme-night-fymhr-special.yaml b/themes/legends-theme-night-fymhr-special.yaml index e422aff4..c906a402 100644 --- a/themes/legends-theme-night-fymhr-special.yaml +++ b/themes/legends-theme-night-fymhr-special.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 268 + pair: null contrast: fg: 60 black: 0 diff --git a/themes/legends-theme-night.yaml b/themes/legends-theme-night.yaml index 8d694f47..74a0dcd9 100644 --- a/themes/legends-theme-night.yaml +++ b/themes/legends-theme-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 65.5 black: 0 diff --git a/themes/leios.yaml b/themes/leios.yaml index ddc4f2d5..83f474be 100644 --- a/themes/leios.yaml +++ b/themes/leios.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 271 + pair: null contrast: fg: 57.6 black: 0 diff --git a/themes/lemon.yaml b/themes/lemon.yaml index 73c4befd..e5fd7e08 100644 --- a/themes/lemon.yaml +++ b/themes/lemon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 277 + pair: null contrast: fg: 41.6 black: 21.2 diff --git a/themes/lemonade.yaml b/themes/lemonade.yaml index 2a634b65..52205f1c 100644 --- a/themes/lemonade.yaml +++ b/themes/lemonade.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 267 + pair: null contrast: fg: 88.5 black: 0 diff --git a/themes/leon-arantes.yaml b/themes/leon-arantes.yaml index 62f71ba7..123486b9 100644 --- a/themes/leon-arantes.yaml +++ b/themes/leon-arantes.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 100 black: 0 diff --git a/themes/leon.yaml b/themes/leon.yaml index 42ee5016..a1ccf608 100644 --- a/themes/leon.yaml +++ b/themes/leon.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/leonida-keys-ocean.yaml b/themes/leonida-keys-ocean.yaml index 00c1f5e7..d2f37f3d 100644 --- a/themes/leonida-keys-ocean.yaml +++ b/themes/leonida-keys-ocean.yaml @@ -2,7 +2,7 @@ name: "Leonida Keys Ocean" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 256 + pair: null contrast: fg: 98.8 black: 0 diff --git a/themes/lesbian.yaml b/themes/lesbian.yaml index ab074e47..53dbe025 100644 --- a/themes/lesbian.yaml +++ b/themes/lesbian.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 37.6 diff --git a/themes/lesser.yaml b/themes/lesser.yaml index a38df388..0825d402 100644 --- a/themes/lesser.yaml +++ b/themes/lesser.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 88.4 black: 0 diff --git a/themes/let-s-code.yaml b/themes/let-s-code.yaml index 52af2c0d..0e0376b7 100644 --- a/themes/let-s-code.yaml +++ b/themes/let-s-code.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 248 + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/leviosa-theme.yaml b/themes/leviosa-theme.yaml index 351ae475..5e2cb931 100644 --- a/themes/leviosa-theme.yaml +++ b/themes/leviosa-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 51.1 black: 0 diff --git a/themes/levuaska.yaml b/themes/levuaska.yaml index 9e0d5ccb..5c67eae1 100644 --- a/themes/levuaska.yaml +++ b/themes/levuaska.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 285 + pair: null contrast: fg: 80.1 black: 0 diff --git a/themes/lht.yaml b/themes/lht.yaml index 05899c3e..fb3e1245 100644 --- a/themes/lht.yaml +++ b/themes/lht.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 106 black: 105.8 diff --git a/themes/liangliang-one-monokai.yaml b/themes/liangliang-one-monokai.yaml index 37666853..5feb53f3 100644 --- a/themes/liangliang-one-monokai.yaml +++ b/themes/liangliang-one-monokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/lichen-contrast.yaml b/themes/lichen-contrast.yaml index 63c936ef..b0666754 100644 --- a/themes/lichen-contrast.yaml +++ b/themes/lichen-contrast.yaml @@ -1,11 +1,11 @@ name: "lichen-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#090D11" fg: "#9CADBC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 248 + pair: null contrast: fg: 56.4 black: 0 diff --git a/themes/lichen-light.yaml b/themes/lichen-light.yaml index 692f95f7..500c87d5 100644 --- a/themes/lichen-light.yaml +++ b/themes/lichen-light.yaml @@ -1,11 +1,11 @@ name: "lichen-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#E6E9ED" fg: "#414549" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 79.2 black: 0 diff --git a/themes/lichen.yaml b/themes/lichen.yaml index 4241a373..031117c3 100644 --- a/themes/lichen.yaml +++ b/themes/lichen.yaml @@ -1,11 +1,11 @@ name: "lichen" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#1A252F" fg: "#9CADBC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 246 + pair: null contrast: fg: 53.9 black: 0 diff --git a/themes/light-brown.yaml b/themes/light-brown.yaml index 018eff44..9c4f8d2e 100644 --- a/themes/light-brown.yaml +++ b/themes/light-brown.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 79 + pair: null contrast: fg: 59.6 black: 64.2 diff --git a/themes/light-code-with-bars.yaml b/themes/light-code-with-bars.yaml index 2ad49e29..b297126e 100644 --- a/themes/light-code-with-bars.yaml +++ b/themes/light-code-with-bars.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 60.3 black: 106 diff --git a/themes/light-color-theme.yaml b/themes/light-color-theme.yaml deleted file mode 100644 index abaf1f84..00000000 --- a/themes/light-color-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "light-color-theme" -source: - marketplace_id: "wavebeem.theme-unoduetre" - version: "5.11.1" - installs: 4290 - author: "Sage Fennel" - repo: "https://github.com/wavebeem/vscode-theme-unoduetre" - url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" -colors: - bg: "#F0F0F0" - fg: "#333333" - black: "#0F0F0F" - red: "#AA2B22" - green: "#2D7B3C" - yellow: "#955F2D" - blue: "#5237BE" - magenta: "#B7349F" - cyan: "#267877" - white: "#E6E6E6" - brightBlack: "#0F0F0F" - brightRed: "#AA2B22" - brightGreen: "#2D7B3C" - brightYellow: "#955F2D" - brightBlue: "#5237BE" - brightMagenta: "#B7349F" - brightCyan: "#267877" - brightWhite: "#E6E6E6" -meta: - mode: "light" - accent: "pink" - hue: null - contrast: - fg: 89.8 - black: 96.6 - red: 73.3 - green: 66.8 - yellow: 67.3 - blue: 77.8 - magenta: 66 - cyan: 66.6 - white: 0 - brightBlack: 96.6 - brightRed: 73.3 - brightGreen: 66.8 - brightYellow: 67.3 - brightBlue: 77.8 - brightMagenta: 66 - brightCyan: 66.6 - brightWhite: 0 diff --git a/themes/light-decay.yaml b/themes/light-decay.yaml index f9a48591..d2d74626 100644 --- a/themes/light-decay.yaml +++ b/themes/light-decay.yaml @@ -2,7 +2,7 @@ name: "Light Decay" source: marketplace_id: "decaycs.decay" version: "1.0.9" - installs: 37704 + installs: 37708 author: "decaycs" repo: "https://github.com/decaycs/vscode" url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Dark Decay" contrast: fg: 87.3 black: 11.9 diff --git a/themes/light-gruvdark-mono.yaml b/themes/light-gruvdark-mono.yaml index 9f6ca806..0fff8f4d 100644 --- a/themes/light-gruvdark-mono.yaml +++ b/themes/light-gruvdark-mono.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 99.6 black: 89.4 diff --git a/themes/light-gruvdark-tokyo.yaml b/themes/light-gruvdark-tokyo.yaml index 22caa949..27586c5d 100644 --- a/themes/light-gruvdark-tokyo.yaml +++ b/themes/light-gruvdark-tokyo.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 99.6 black: 89.4 diff --git a/themes/light-gruvdark.yaml b/themes/light-gruvdark.yaml index c1738f9e..fbedd003 100644 --- a/themes/light-gruvdark.yaml +++ b/themes/light-gruvdark.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 96.7 black: 86.5 diff --git a/themes/light-print.yaml b/themes/light-print.yaml index 6efb0ae0..956b7bc6 100644 --- a/themes/light-print.yaml +++ b/themes/light-print.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 102 black: 98.7 diff --git a/themes/light-red.yaml b/themes/light-red.yaml deleted file mode 100644 index 89966886..00000000 --- a/themes/light-red.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Light Red" -source: - marketplace_id: "HenriLima05.a-cup-of-coffee" - version: "0.0.2" - installs: 4677 - author: "Henri Lima" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.a-cup-of-coffee" -colors: - bg: "#FBFBFB" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - contrast: - fg: 103.6 - black: 103.6 - red: 71.6 - green: 46.8 - yellow: 55.5 - blue: 83.7 - magenta: 72.2 - cyan: 58.2 - white: 83.5 - brightBlack: 76.4 - brightRed: 71.6 - brightGreen: 38.5 - brightYellow: 38.5 - brightBlue: 83.7 - brightMagenta: 72.2 - brightCyan: 58.2 - brightWhite: 46.1 diff --git a/themes/light-springbok.yaml b/themes/light-springbok.yaml index f454a6ee..785f2867 100644 --- a/themes/light-springbok.yaml +++ b/themes/light-springbok.yaml @@ -2,7 +2,7 @@ name: "Light Springbok" source: marketplace_id: "chrp.springbok-theme" version: "0.12.0" - installs: 620 + installs: 621 author: "chrp" repo: "https://github.com/christophehurpeau/springbok-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=chrp.springbok-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Dark Springbok" contrast: fg: 73.7 black: 69.6 diff --git a/themes/light-theme.yaml b/themes/light-theme.yaml index e7decc9c..e468efa1 100644 --- a/themes/light-theme.yaml +++ b/themes/light-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Dark Theme" contrast: fg: 95.9 black: 89.4 diff --git a/themes/light.yaml b/themes/light.yaml index 843aa925..b2cd0993 100644 --- a/themes/light.yaml +++ b/themes/light.yaml @@ -1,49 +1,50 @@ name: "light" source: - marketplace_id: "gthbccnt.light-theme-grey" - version: "1.0.4" - installs: 348 - author: "gthbccnt" - repo: "https://github.com/gthbccnt/gthbccnt.light-theme-grey" - url: "https://marketplace.visualstudio.com/items?itemName=gthbccnt.light-theme-grey" + marketplace_id: "SatanAlphabet.matugen-vscode" + version: "1.2.0" + installs: 0 + author: "SatanAlphabet" + repo: "https://github.com/SatanAlphabet/vscode-matugen" + url: "https://marketplace.visualstudio.com/items?itemName=SatanAlphabet.matugen-vscode" colors: - bg: "#F5F4F2" - fg: "#000000" - black: "#393735" - red: "#D8636B" - green: "#97BA85" - yellow: "#EBB95E" - blue: "#8BB4E3" - magenta: "#C88AC8" - cyan: "#6FBEBC" - white: "#E1DFDF" - brightBlack: "#666666" - brightRed: "#E57373" - brightGreen: "#8AB96C" - brightYellow: "#D9B74C" - brightBlue: "#9BC0E8" - brightMagenta: "#C78BC7" - brightCyan: "#6DD1D1" - brightWhite: "#C6C4C0" + bg: "#FFF7FB" + fg: "#1F1A1F" + black: "#161217" + red: "#BE3345" + green: "#678C19" + yellow: "#B65C0D" + blue: "#603FBF" + magenta: "#A63BAA" + cyan: "#007E90" + white: "#ECDFE9" + brightBlack: "#7E747D" + brightRed: "#D66876" + brightGreen: "#97CD25" + brightYellow: "#F0811F" + brightBlue: "#8F78D2" + brightMagenta: "#C668CA" + brightCyan: "#00C2DC" + brightWhite: "#FFF7FB" meta: mode: "light" - accent: "orange" + accent: "pink" hue: null + pair: null contrast: - fg: 99.5 - black: 90.7 - red: 56 - green: 36.1 - yellow: 26.9 - blue: 35.8 - magenta: 44.9 - cyan: 35.6 - white: 9.6 - brightBlack: 72.2 - brightRed: 49.5 - brightGreen: 38.2 - brightYellow: 30.6 - brightBlue: 29.4 - brightMagenta: 44.8 - brightCyan: 26.6 - brightWhite: 25.2 + fg: 100.5 + black: 101.6 + red: 73.2 + green: 63 + yellow: 68.1 + blue: 80.4 + magenta: 73 + cyan: 69.1 + white: 10.7 + brightBlack: 67.6 + brightRed: 57.9 + brightGreen: 32.3 + brightYellow: 47.8 + brightBlue: 60.2 + brightMagenta: 57.2 + brightCyan: 38 + brightWhite: 0 diff --git a/themes/lightblack.yaml b/themes/lightblack.yaml index 6bdd9d29..aaca10e1 100644 --- a/themes/lightblack.yaml +++ b/themes/lightblack.yaml @@ -2,7 +2,7 @@ name: "LightBlack" source: marketplace_id: "theboringkid.lightblack" version: "0.1.0" - installs: 630 + installs: 631 author: "theboringkid" repo: null url: "https://marketplace.visualstudio.com/items?itemName=theboringkid.lightblack" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 98.1 black: 0 diff --git a/themes/lightdelight.yaml b/themes/lightdelight.yaml index 7c6af744..effe1fb2 100644 --- a/themes/lightdelight.yaml +++ b/themes/lightdelight.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 102.9 black: 102.9 diff --git a/themes/lighter-a-theme-for-light-coders.yaml b/themes/lighter-a-theme-for-light-coders.yaml index f10ba91e..d6dbeb6d 100644 --- a/themes/lighter-a-theme-for-light-coders.yaml +++ b/themes/lighter-a-theme-for-light-coders.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 64.1 black: 106 diff --git a/themes/lightestlighttheme.yaml b/themes/lightestlighttheme.yaml index d109ebc9..32fb41c1 100644 --- a/themes/lightestlighttheme.yaml +++ b/themes/lightestlighttheme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.4 black: 60.5 diff --git a/themes/lighthaus.yaml b/themes/lighthaus.yaml index 3e25f593..c7204444 100644 --- a/themes/lighthaus.yaml +++ b/themes/lighthaus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 102.8 black: 0 diff --git a/themes/lightning-cloud.yaml b/themes/lightning-cloud.yaml deleted file mode 100644 index fb31b5d8..00000000 --- a/themes/lightning-cloud.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Lightning Cloud" -source: - marketplace_id: "zevross.lightning" - version: "2.1.1" - installs: 889 - author: "Zev Ross" - repo: "https://github.com/Zev18/lightning" - url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" -colors: - bg: "#F1FBFF" - fg: "#3475A2" - black: "#000000" - red: "#CF3E5B" - green: "#44EABD" - yellow: "#F5C86E" - blue: "#2681F9" - magenta: "#9172FF" - cyan: "#38B2E7" - white: "#C4C6CB" - brightBlack: "#787878" - brightRed: "#FE2B64" - brightGreen: "#2BBA93" - brightYellow: "#FAA630" - brightBlue: "#2680FF" - brightMagenta: "#BC47B2" - brightCyan: "#1C95BE" - brightWhite: "#CEDCDE" -meta: - mode: "light" - accent: "red" - hue: null - contrast: - fg: 70.8 - black: 102.6 - red: 67.9 - green: 20.6 - yellow: 22.5 - blue: 61 - magenta: 58.4 - cyan: 43.7 - white: 27.2 - brightBlack: 67.2 - brightRed: 58.7 - brightGreen: 44.4 - brightYellow: 34.7 - brightBlue: 60.9 - brightMagenta: 66.9 - brightCyan: 58.1 - brightWhite: 16.3 diff --git a/themes/lightning-dark.yaml b/themes/lightning-dark.yaml index a1e65f82..4a67f9a9 100644 --- a/themes/lightning-dark.yaml +++ b/themes/lightning-dark.yaml @@ -2,7 +2,7 @@ name: "Lightning Dark" source: marketplace_id: "zevross.lightning" version: "2.1.1" - installs: 889 + installs: 891 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 281 + pair: "Lightning Light" contrast: fg: 65.7 black: 0 diff --git a/themes/lightning-material-day.yaml b/themes/lightning-material-day.yaml index e7889606..0804747a 100644 --- a/themes/lightning-material-day.yaml +++ b/themes/lightning-material-day.yaml @@ -2,7 +2,7 @@ name: "Lightning Material - Day" source: marketplace_id: "zevross.lightning" version: "2.1.1" - installs: 889 + installs: 891 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Lightning Material - Midnight" contrast: fg: 70.6 black: 102.4 diff --git a/themes/lightning-material-evening.yaml b/themes/lightning-material-evening.yaml index c5cfcddd..f1ae1fa1 100644 --- a/themes/lightning-material-evening.yaml +++ b/themes/lightning-material-evening.yaml @@ -2,7 +2,7 @@ name: "Lightning Material - Evening" source: marketplace_id: "zevross.lightning" version: "2.1.1" - installs: 889 + installs: 891 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 63.5 black: 0 diff --git a/themes/lightning-material-midnight.yaml b/themes/lightning-material-midnight.yaml index a7cb708b..54770bd8 100644 --- a/themes/lightning-material-midnight.yaml +++ b/themes/lightning-material-midnight.yaml @@ -2,7 +2,7 @@ name: "Lightning Material - Midnight" source: marketplace_id: "zevross.lightning" version: "2.1.1" - installs: 889 + installs: 891 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 287 + pair: "Lightning Material - Day" contrast: fg: 62.7 black: 0 diff --git a/themes/lightning-material-soft.yaml b/themes/lightning-material-soft.yaml index d3c19306..70fffbff 100644 --- a/themes/lightning-material-soft.yaml +++ b/themes/lightning-material-soft.yaml @@ -2,7 +2,7 @@ name: "Lightning Material - Soft" source: marketplace_id: "zevross.lightning" version: "2.1.1" - installs: 889 + installs: 891 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 272 + pair: null contrast: fg: 63.4 black: 0 diff --git a/themes/lightning-soft-dark.yaml b/themes/lightning-soft-dark.yaml index 9f5e5806..3468f0a5 100644 --- a/themes/lightning-soft-dark.yaml +++ b/themes/lightning-soft-dark.yaml @@ -2,7 +2,7 @@ name: "Lightning Soft - Dark" source: marketplace_id: "zevross.lightning" version: "2.1.1" - installs: 889 + installs: 891 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 283 + pair: null contrast: fg: 65 black: 0 diff --git a/themes/lightning-soft.yaml b/themes/lightning-soft.yaml index 56995f5f..7fedffaf 100644 --- a/themes/lightning-soft.yaml +++ b/themes/lightning-soft.yaml @@ -2,7 +2,7 @@ name: "Lightning Soft" source: marketplace_id: "zevross.lightning" version: "2.1.1" - installs: 889 + installs: 891 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 66.5 black: 0 diff --git a/themes/lightning-theme.yaml b/themes/lightning-theme.yaml index 49453b34..ab90ed3c 100644 --- a/themes/lightning-theme.yaml +++ b/themes/lightning-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.4 black: 0 diff --git a/themes/lightning.yaml b/themes/lightning.yaml index 5e4a1971..6c4b67cd 100644 --- a/themes/lightning.yaml +++ b/themes/lightning.yaml @@ -2,7 +2,7 @@ name: "Lightning" source: marketplace_id: "zevross.lightning" version: "2.1.1" - installs: 889 + installs: 891 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 282 + pair: null contrast: fg: 67.1 black: 0 diff --git a/themes/ligiapink.yaml b/themes/ligiapink.yaml index 629d115a..6417bee0 100644 --- a/themes/ligiapink.yaml +++ b/themes/ligiapink.yaml @@ -2,7 +2,7 @@ name: "LigiaPink" source: marketplace_id: "CodeBabel.codebabel-obscure-pink" version: "0.0.1" - installs: 1651 + installs: 1654 author: "CodeBabel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CodeBabel.codebabel-obscure-pink" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 331 + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/ligor-fork.yaml b/themes/ligor-fork.yaml deleted file mode 100644 index be3a8fc7..00000000 --- a/themes/ligor-fork.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Ligor - Fork" -source: - marketplace_id: "rzceoffical.rtheme" - version: "0.0.2" - installs: 40 - author: "rzceoffical" - repo: "https://github.com/rzceoffical/rtheme" - url: "https://marketplace.visualstudio.com/items?itemName=rzceoffical.rtheme" -colors: - bg: "#000F1C" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 241 - contrast: - fg: 80.1 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28 - magenta: 30.4 - cyan: 48.2 - white: 90.6 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/lilac-dreams.yaml b/themes/lilac-dreams.yaml index 6521c720..480d5e75 100644 --- a/themes/lilac-dreams.yaml +++ b/themes/lilac-dreams.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 50.2 black: 0 diff --git a/themes/lilac-grove.yaml b/themes/lilac-grove.yaml index cda9461a..baa64d09 100644 --- a/themes/lilac-grove.yaml +++ b/themes/lilac-grove.yaml @@ -2,7 +2,7 @@ name: "Lilac Grove" source: marketplace_id: "InnaSodri.lilac-grove-bundle" version: "0.0.1" - installs: 230 + installs: 231 author: "Inna Sodri" repo: "https://example.com/inna/lilac-grove-bundle" url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.lilac-grove-bundle" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 93.8 black: 0 diff --git a/themes/lima-theme.yaml b/themes/lima-theme.yaml index 0e3c410b..4861be25 100644 --- a/themes/lima-theme.yaml +++ b/themes/lima-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 93.2 black: 0 diff --git a/themes/limpo-dark.yaml b/themes/limpo-dark.yaml index 46c4d752..3bb08fc3 100644 --- a/themes/limpo-dark.yaml +++ b/themes/limpo-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 256 + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/limpo-darker.yaml b/themes/limpo-darker.yaml index de448e40..159b4810 100644 --- a/themes/limpo-darker.yaml +++ b/themes/limpo-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 80.7 black: 0 diff --git a/themes/linear-dark.yaml b/themes/linear-dark.yaml index 9b56064a..723992e6 100644 --- a/themes/linear-dark.yaml +++ b/themes/linear-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: "Linear Light" contrast: fg: 90 black: 0 diff --git a/themes/linear-light.yaml b/themes/linear-light.yaml index b17a6895..606c7eba 100644 --- a/themes/linear-light.yaml +++ b/themes/linear-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Linear Dark" contrast: fg: 102.4 black: 102.4 diff --git a/themes/linkarzu-vscode-theme.yaml b/themes/linkarzu-vscode-theme.yaml index 4aa4e560..6b87eac0 100644 --- a/themes/linkarzu-vscode-theme.yaml +++ b/themes/linkarzu-vscode-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 254 + pair: null contrast: fg: 102.1 black: 0 diff --git a/themes/lino-dark-ruby.yaml b/themes/lino-dark-ruby.yaml index e99ac3db..c7f205fb 100644 --- a/themes/lino-dark-ruby.yaml +++ b/themes/lino-dark-ruby.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.6 black: 0 diff --git a/themes/lionel.yaml b/themes/lionel.yaml index 367aa569..bcbea42e 100644 --- a/themes/lionel.yaml +++ b/themes/lionel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 55.7 black: 0 diff --git a/themes/liquid-dark.yaml b/themes/liquid-dark.yaml index be5e7415..638265e9 100644 --- a/themes/liquid-dark.yaml +++ b/themes/liquid-dark.yaml @@ -2,7 +2,7 @@ name: "Liquid Dark" source: marketplace_id: "dxp611.liquid-white" version: "1.10.0" - installs: 1335 + installs: 1336 author: "Dragos Popa" repo: "https://github.com/dxp611/liquid-white" url: "https://marketplace.visualstudio.com/items?itemName=dxp611.liquid-white" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 91.8 black: 0 diff --git a/themes/liquid-ochre.yaml b/themes/liquid-ochre.yaml index a936c392..5a8c07c5 100644 --- a/themes/liquid-ochre.yaml +++ b/themes/liquid-ochre.yaml @@ -2,7 +2,7 @@ name: "Liquid Ochre" source: marketplace_id: "dxp611.liquid-white" version: "1.10.0" - installs: 1335 + installs: 1336 author: "Dragos Popa" repo: "https://github.com/dxp611/liquid-white" url: "https://marketplace.visualstudio.com/items?itemName=dxp611.liquid-white" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 92 + pair: null contrast: fg: 106.9 black: 0 diff --git a/themes/liquid-ray-light.yaml b/themes/liquid-ray-light.yaml index bd92d1fe..b86d2ae8 100644 --- a/themes/liquid-ray-light.yaml +++ b/themes/liquid-ray-light.yaml @@ -1,7 +1,7 @@ name: "Liquid Ray Light" source: marketplace_id: "wiidede.liquid-ray" - version: "1.2.2" + version: "1.4.3" installs: 1903 author: "wiidede" repo: "https://github.com/wiidede/Liquid-Ray" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 81.3 black: 102.2 diff --git a/themes/liquid-ray.yaml b/themes/liquid-ray.yaml index 710f292f..abd61576 100644 --- a/themes/liquid-ray.yaml +++ b/themes/liquid-ray.yaml @@ -1,7 +1,7 @@ name: "Liquid Ray" source: marketplace_id: "wiidede.liquid-ray" - version: "1.2.2" + version: "1.4.3" installs: 1903 author: "wiidede" repo: "https://github.com/wiidede/Liquid-Ray" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 52 black: 17.6 diff --git a/themes/liquor-theme.yaml b/themes/liquor-theme.yaml index 959e1d20..dfb27e14 100644 --- a/themes/liquor-theme.yaml +++ b/themes/liquor-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 17.5 black: 0 diff --git a/themes/liquorice.yaml b/themes/liquorice.yaml index 6e0f4c41..9cf9a99f 100644 --- a/themes/liquorice.yaml +++ b/themes/liquorice.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 75.7 black: 0 diff --git a/themes/little-league-dark.yaml b/themes/little-league-dark.yaml index 29c52b37..dc3c5292 100644 --- a/themes/little-league-dark.yaml +++ b/themes/little-league-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: "Little League Light" contrast: fg: 92.6 black: 0 diff --git a/themes/little-league-darker.yaml b/themes/little-league-darker.yaml index 0a494164..2ff9ed0e 100644 --- a/themes/little-league-darker.yaml +++ b/themes/little-league-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 94.6 black: 0 diff --git a/themes/little-league-light.yaml b/themes/little-league-light.yaml index 868ecb4e..724acab9 100644 --- a/themes/little-league-light.yaml +++ b/themes/little-league-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Little League Dark" contrast: fg: 83.8 black: 0 diff --git a/themes/lives.yaml b/themes/lives.yaml index 7efd4634..90e80b8e 100644 --- a/themes/lives.yaml +++ b/themes/lives.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 91.5 black: 0 diff --git a/themes/living-twilight.yaml b/themes/living-twilight.yaml index f211f4f0..7bd528c8 100644 --- a/themes/living-twilight.yaml +++ b/themes/living-twilight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 64.4 black: 36.2 diff --git a/themes/lncoder-theme.yaml b/themes/lncoder-theme.yaml deleted file mode 100644 index 994903c4..00000000 --- a/themes/lncoder-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Lncoder_theme" -source: - marketplace_id: "Lncoder.lncoder" - version: "0.0.1" - installs: 58 - author: "Lncoder" - repo: "https://github.com/Lncod3r/vscode_theme.git#main" - url: "https://marketplace.visualstudio.com/items?itemName=Lncoder.lncoder" -colors: - bg: "#1F1F1F" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 78.5 - black: 0 - red: 25.7 - green: 52 - yellow: 84.6 - blue: 26.5 - magenta: 28.8 - cyan: 46.6 - white: 89 - brightBlack: 21.1 - brightRed: 37.6 - brightGreen: 62.6 - brightYellow: 94.7 - brightBlue: 39 - brightMagenta: 44.4 - brightCyan: 54.4 - brightWhite: 89 diff --git a/themes/lofi.yaml b/themes/lofi.yaml index 2d142946..2b9ac9f0 100644 --- a/themes/lofi.yaml +++ b/themes/lofi.yaml @@ -2,7 +2,7 @@ name: "Lofi" source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" - installs: 80 + installs: 81 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.5 black: 34.1 diff --git a/themes/loki-official-classic.yaml b/themes/loki-official-classic.yaml index 23589071..88c35d36 100644 --- a/themes/loki-official-classic.yaml +++ b/themes/loki-official-classic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 101.3 black: 0 diff --git a/themes/loki-official-kang-edition.yaml b/themes/loki-official-kang-edition.yaml index 51a54cd3..68b37a42 100644 --- a/themes/loki-official-kang-edition.yaml +++ b/themes/loki-official-kang-edition.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 291 + pair: null contrast: fg: 101.3 black: 0 diff --git a/themes/loki-theme-contrast.yaml b/themes/loki-theme-contrast.yaml index 48ff70ee..ba6c9c7f 100644 --- a/themes/loki-theme-contrast.yaml +++ b/themes/loki-theme-contrast.yaml @@ -2,7 +2,7 @@ name: "Loki Theme Contrast" source: marketplace_id: "Outbound.loki-theme" version: "0.1.4" - installs: 427 + installs: 428 author: "Outbound" repo: "https://github.com/melquisedecfelipe/loki-theme" url: "https://marketplace.visualstudio.com/items?itemName=Outbound.loki-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 90 black: 0 diff --git a/themes/loki-theme.yaml b/themes/loki-theme.yaml index 582048f0..75b0546c 100644 --- a/themes/loki-theme.yaml +++ b/themes/loki-theme.yaml @@ -2,7 +2,7 @@ name: "Loki Theme" source: marketplace_id: "Outbound.loki-theme" version: "0.1.4" - installs: 427 + installs: 428 author: "Outbound" repo: "https://github.com/melquisedecfelipe/loki-theme" url: "https://marketplace.visualstudio.com/items?itemName=Outbound.loki-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 90.4 black: 0 diff --git a/themes/lolo.yaml b/themes/lolo.yaml index 1e5c4885..1b0c8e8c 100644 --- a/themes/lolo.yaml +++ b/themes/lolo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 239 + pair: null contrast: fg: 61.1 black: 0 diff --git a/themes/lone-wolf-dark.yaml b/themes/lone-wolf-dark.yaml index 1445cfaa..a9df5fa4 100644 --- a/themes/lone-wolf-dark.yaml +++ b/themes/lone-wolf-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 81.2 black: 0 diff --git a/themes/lonely.yaml b/themes/lonely.yaml index 4783436c..ae6f80c0 100644 --- a/themes/lonely.yaml +++ b/themes/lonely.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 248 + pair: null contrast: fg: 102 black: 0 diff --git a/themes/lonus-dark.yaml b/themes/lonus-dark.yaml index e3e69488..24af671a 100644 --- a/themes/lonus-dark.yaml +++ b/themes/lonus-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.8 black: 0 diff --git a/themes/lookify-dark-mode.yaml b/themes/lookify-dark-mode.yaml index 11021c87..ef63ea91 100644 --- a/themes/lookify-dark-mode.yaml +++ b/themes/lookify-dark-mode.yaml @@ -2,7 +2,7 @@ name: "LookiFy Dark mode" source: marketplace_id: "prince.lookify" version: "0.1.0" - installs: 639 + installs: 641 author: "prince" repo: null url: "https://marketplace.visualstudio.com/items?itemName=prince.lookify" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 272 + pair: "LookiFy Light mode" contrast: fg: 87.8 black: 0 diff --git a/themes/lookify-light-mode.yaml b/themes/lookify-light-mode.yaml index 75061d35..c4afc843 100644 --- a/themes/lookify-light-mode.yaml +++ b/themes/lookify-light-mode.yaml @@ -2,7 +2,7 @@ name: "LookiFy Light mode" source: marketplace_id: "prince.lookify" version: "0.1.0" - installs: 639 + installs: 641 author: "prince" repo: null url: "https://marketplace.visualstudio.com/items?itemName=prince.lookify" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "LookiFy Dark mode" contrast: fg: 95.8 black: 0 diff --git a/themes/looped.yaml b/themes/looped.yaml index 68995a12..676e93a9 100644 --- a/themes/looped.yaml +++ b/themes/looped.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 265 + pair: null contrast: fg: 103.3 black: 19.8 diff --git a/themes/loopy.yaml b/themes/loopy.yaml index 156ac1b2..c1c5dae9 100644 --- a/themes/loopy.yaml +++ b/themes/loopy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 283 + pair: null contrast: fg: 101 black: 0 diff --git a/themes/lore.yaml b/themes/lore.yaml index 8b5b7e4d..6a0e611b 100644 --- a/themes/lore.yaml +++ b/themes/lore.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/lostforindia.yaml b/themes/lostforindia.yaml index 42b861e7..499e4329 100644 --- a/themes/lostforindia.yaml +++ b/themes/lostforindia.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 49.7 black: 0 diff --git a/themes/lotus-dark.yaml b/themes/lotus-dark.yaml index 09b7e18e..429d01ce 100644 --- a/themes/lotus-dark.yaml +++ b/themes/lotus-dark.yaml @@ -2,7 +2,7 @@ name: "Lotus Dark" source: marketplace_id: "SkyLiss.lotus-theme" version: "1.1.5" - installs: 12508 + installs: 12514 author: "SkyLissh" repo: "https://github.com/SkyLissh/lotus-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=SkyLiss.lotus-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Lotus Light" contrast: fg: 103.4 black: 0 diff --git a/themes/lotus-flat-dusk.yaml b/themes/lotus-flat-dusk.yaml index 7d41a61a..758e1611 100644 --- a/themes/lotus-flat-dusk.yaml +++ b/themes/lotus-flat-dusk.yaml @@ -2,7 +2,7 @@ name: "Lotus Flat Dusk" source: marketplace_id: "alewtschuk.lotus-flat-dark-theme" version: "2.0.0" - installs: 394 + installs: 395 author: "alewtschuk" repo: "https://github.com/alewtschuk/lotus-flat-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=alewtschuk.lotus-flat-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 276 + pair: null contrast: fg: 59.6 black: 9.1 diff --git a/themes/lotus-flat-midnight.yaml b/themes/lotus-flat-midnight.yaml index 6d8f9cab..a6a379e3 100644 --- a/themes/lotus-flat-midnight.yaml +++ b/themes/lotus-flat-midnight.yaml @@ -2,7 +2,7 @@ name: "Lotus Flat Midnight" source: marketplace_id: "alewtschuk.lotus-flat-dark-theme" version: "2.0.0" - installs: 394 + installs: 395 author: "alewtschuk" repo: "https://github.com/alewtschuk/lotus-flat-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=alewtschuk.lotus-flat-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.3 black: 9.7 diff --git a/themes/lotus-light.yaml b/themes/lotus-light.yaml index 8ba7cd0b..242d90fc 100644 --- a/themes/lotus-light.yaml +++ b/themes/lotus-light.yaml @@ -2,7 +2,7 @@ name: "Lotus Light" source: marketplace_id: "SkyLiss.lotus-theme" version: "1.1.5" - installs: 12508 + installs: 12514 author: "SkyLissh" repo: "https://github.com/SkyLissh/lotus-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=SkyLiss.lotus-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "Lotus Dark" contrast: fg: 98.5 black: 96.2 diff --git a/themes/lovepurple.yaml b/themes/lovepurple.yaml index 285b0de5..b346c906 100644 --- a/themes/lovepurple.yaml +++ b/themes/lovepurple.yaml @@ -2,7 +2,7 @@ name: "LovePurple" source: marketplace_id: "MahdiBehkar.lovely-purple-theme" version: "0.0.4" - installs: 3146 + installs: 3149 author: "MahdiBehkar" repo: "https://codeberg.org/behkar/lovely_purple_theme" url: "https://marketplace.visualstudio.com/items?itemName=MahdiBehkar.lovely-purple-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 308 + pair: null contrast: fg: 41.2 black: 62.1 diff --git a/themes/lowlvl.yaml b/themes/lowlvl.yaml index fe39fad9..1af9b134 100644 --- a/themes/lowlvl.yaml +++ b/themes/lowlvl.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 100 black: 0 diff --git a/themes/loyal-contrast.yaml b/themes/loyal-contrast.yaml index 1b174674..067935e7 100644 --- a/themes/loyal-contrast.yaml +++ b/themes/loyal-contrast.yaml @@ -1,11 +1,11 @@ name: "loyal-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#1D1B23" fg: "#BBB1C9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 297 + pair: null contrast: fg: 60.8 black: 0 diff --git a/themes/loyal-light.yaml b/themes/loyal-light.yaml index f1274a66..bbd243ac 100644 --- a/themes/loyal-light.yaml +++ b/themes/loyal-light.yaml @@ -1,11 +1,11 @@ name: "loyal-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#413E4F" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 94.1 black: 0 diff --git a/themes/loyal.yaml b/themes/loyal.yaml index b83a8eb3..6e974ebe 100644 --- a/themes/loyal.yaml +++ b/themes/loyal.yaml @@ -1,11 +1,11 @@ name: "loyal" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#413E4F" fg: "#BBB1C9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 293 + pair: null contrast: fg: 52.6 black: 0 diff --git a/themes/luanslaslatheme.yaml b/themes/luanslaslatheme.yaml index 3cda4a95..731e3e83 100644 --- a/themes/luanslaslatheme.yaml +++ b/themes/luanslaslatheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/luau-starlit.yaml b/themes/luau-starlit.yaml index ce4c9fab..4fc4c924 100644 --- a/themes/luau-starlit.yaml +++ b/themes/luau-starlit.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/lubasiverse-freewill.yaml b/themes/lubasiverse-freewill.yaml index 0c934119..5a2b406a 100644 --- a/themes/lubasiverse-freewill.yaml +++ b/themes/lubasiverse-freewill.yaml @@ -2,7 +2,7 @@ name: "lubasiverse-freewill" source: marketplace_id: "lubasiverse.lubasiverse" version: "1.0.0" - installs: 34 + installs: 35 author: "lubasiverse" repo: "https://github.com/yourusername/lubasiverse" url: "https://marketplace.visualstudio.com/items?itemName=lubasiverse.lubasiverse" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.9 black: 0 diff --git a/themes/lubasiverse.yaml b/themes/lubasiverse.yaml index 98679fa7..36b38540 100644 --- a/themes/lubasiverse.yaml +++ b/themes/lubasiverse.yaml @@ -2,7 +2,7 @@ name: "lubasiverse" source: marketplace_id: "lubasiverse.lubasiverse" version: "1.0.0" - installs: 34 + installs: 35 author: "lubasiverse" repo: "https://github.com/yourusername/lubasiverse" url: "https://marketplace.visualstudio.com/items?itemName=lubasiverse.lubasiverse" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/lucario.yaml b/themes/lucario.yaml index cf211f41..06aa32c4 100644 --- a/themes/lucario.yaml +++ b/themes/lucario.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 248 + pair: null contrast: fg: 94.4 black: 0 diff --git a/themes/lucid-labs-dark.yaml b/themes/lucid-labs-dark.yaml index 0b49349d..6fa0f759 100644 --- a/themes/lucid-labs-dark.yaml +++ b/themes/lucid-labs-dark.yaml @@ -1,7 +1,7 @@ name: "Lucid Labs Dark" source: marketplace_id: "lucidlabs.lucid-labs-theme" - version: "1.6.0" + version: "1.9.0" installs: 144 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 298 + pair: "Lucid Labs Light" contrast: fg: 87.2 black: 0 diff --git a/themes/lucid-labs-light.yaml b/themes/lucid-labs-light.yaml index 6e249598..811cc980 100644 --- a/themes/lucid-labs-light.yaml +++ b/themes/lucid-labs-light.yaml @@ -1,7 +1,7 @@ name: "Lucid Labs Light" source: marketplace_id: "lucidlabs.lucid-labs-theme" - version: "1.6.0" + version: "1.9.0" installs: 144 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Lucid Labs Dark" contrast: fg: 102.7 black: 104.6 diff --git a/themes/lucifer-terminal-dark-hacker-edition.yaml b/themes/lucifer-terminal-dark-hacker-edition.yaml index 0443e8a5..17d6bda3 100644 --- a/themes/lucifer-terminal-dark-hacker-edition.yaml +++ b/themes/lucifer-terminal-dark-hacker-edition.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 91.9 black: 0 diff --git a/themes/luckyhub.yaml b/themes/luckyhub.yaml index 4cd0d4d0..98acd764 100644 --- a/themes/luckyhub.yaml +++ b/themes/luckyhub.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 62.9 black: 0 diff --git a/themes/lui.yaml b/themes/lui.yaml index 8c3094ab..f67cb157 100644 --- a/themes/lui.yaml +++ b/themes/lui.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 261 + pair: null contrast: fg: 92.7 black: 0 diff --git a/themes/luiz-dark-theme.yaml b/themes/luiz-dark-theme.yaml index b03a66bd..75a578ad 100644 --- a/themes/luiz-dark-theme.yaml +++ b/themes/luiz-dark-theme.yaml @@ -2,7 +2,7 @@ name: "luiz-dark-theme" source: marketplace_id: "LUIZDARKTHEME.luiz-dark-theme" version: "0.0.8" - installs: 2945 + installs: 2946 author: "LUIZ DARK THEME" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LUIZDARKTHEME.luiz-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.6 black: 0 diff --git a/themes/luke-skywriter.yaml b/themes/luke-skywriter.yaml index 99fa973a..fb6704c5 100644 --- a/themes/luke-skywriter.yaml +++ b/themes/luke-skywriter.yaml @@ -2,7 +2,7 @@ name: "Luke Skywriter" source: marketplace_id: "Dutchorange.space-wars" version: "1.1.7" - installs: 1710 + installs: 1711 author: "Dutchorange" repo: "https://github.com/entropy-glitch/space-wars" url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 256 + pair: null contrast: fg: 89.8 black: 0 diff --git a/themes/lull.yaml b/themes/lull.yaml index 97099568..008baeaf 100644 --- a/themes/lull.yaml +++ b/themes/lull.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.6 black: 19.5 diff --git a/themes/lulutheme.yaml b/themes/lulutheme.yaml index a7164ffc..166f2f38 100644 --- a/themes/lulutheme.yaml +++ b/themes/lulutheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 335 + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/lumenrift.yaml b/themes/lumenrift.yaml index 1abf32d5..c2cffb2d 100644 --- a/themes/lumenrift.yaml +++ b/themes/lumenrift.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 93.6 black: 93.6 diff --git a/themes/lumin.yaml b/themes/lumin.yaml index 9f7773b1..a70bad62 100644 --- a/themes/lumin.yaml +++ b/themes/lumin.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 38.7 black: 0 diff --git a/themes/lumina.yaml b/themes/lumina.yaml index 9c9c3a1c..b66927a4 100644 --- a/themes/lumina.yaml +++ b/themes/lumina.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 92.7 black: 100.1 diff --git a/themes/luminara-void.yaml b/themes/luminara-void.yaml index 2f660789..5757a526 100644 --- a/themes/luminara-void.yaml +++ b/themes/luminara-void.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 302 + pair: null contrast: fg: 95.3 black: 0 diff --git a/themes/luminashade-amethyst.yaml b/themes/luminashade-amethyst.yaml index 0b04dd73..b06e29dc 100644 --- a/themes/luminashade-amethyst.yaml +++ b/themes/luminashade-amethyst.yaml @@ -2,7 +2,7 @@ name: "LuminaShade-Amethyst" source: marketplace_id: "JackPritomSoren.luminashade" version: "1.0.5" - installs: 138 + installs: 140 author: "Jack Pritom Soren" repo: "https://github.com/jps27CSE/LuminaShade-VSCode-Extension" url: "https://marketplace.visualstudio.com/items?itemName=JackPritomSoren.luminashade" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 292 + pair: null contrast: fg: 86.1 black: 0 diff --git a/themes/luminescence-theme.yaml b/themes/luminescence-theme.yaml index 1b2549cc..5299370f 100644 --- a/themes/luminescence-theme.yaml +++ b/themes/luminescence-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 94.4 black: 26.4 diff --git a/themes/lumon-theme.yaml b/themes/lumon-theme.yaml index 836029e5..f561dc82 100644 --- a/themes/lumon-theme.yaml +++ b/themes/lumon-theme.yaml @@ -2,7 +2,7 @@ name: "Lumon Theme" source: marketplace_id: "cluzier.lumon" version: "0.0.42" - installs: 206 + installs: 208 author: "Conner Luzier" repo: "https://github.com/cluzier/lumon" url: "https://marketplace.visualstudio.com/items?itemName=cluzier.lumon" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 230 + pair: null contrast: fg: 80.9 black: 0 diff --git a/themes/lumos-black.yaml b/themes/lumos-black.yaml index a90770ee..65b63332 100644 --- a/themes/lumos-black.yaml +++ b/themes/lumos-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 82.3 black: 0 diff --git a/themes/lumos-dark-soft.yaml b/themes/lumos-dark-soft.yaml index 8bba74e0..a1b8cf52 100644 --- a/themes/lumos-dark-soft.yaml +++ b/themes/lumos-dark-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Lumos Light Soft" contrast: fg: 79.9 black: 0 diff --git a/themes/lumos-dark.yaml b/themes/lumos-dark.yaml index 180476a3..a68a7bba 100644 --- a/themes/lumos-dark.yaml +++ b/themes/lumos-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 81.7 black: 0 diff --git a/themes/lunar-eclipse-golden-hour.yaml b/themes/lunar-eclipse-golden-hour.yaml index a293c1e8..f40f61c7 100644 --- a/themes/lunar-eclipse-golden-hour.yaml +++ b/themes/lunar-eclipse-golden-hour.yaml @@ -2,7 +2,7 @@ name: "Lunar Eclipse Golden Hour" source: marketplace_id: "ginfuru.lunar-eclipse" version: "0.1.4" - installs: 10309 + installs: 10316 author: "Ed Heltzel" repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 50.7 black: 92.9 diff --git a/themes/lunar-eclipse-light.yaml b/themes/lunar-eclipse-light.yaml index e8ccab3b..44b9d4d3 100644 --- a/themes/lunar-eclipse-light.yaml +++ b/themes/lunar-eclipse-light.yaml @@ -2,7 +2,7 @@ name: "Lunar Eclipse Light" source: marketplace_id: "ginfuru.lunar-eclipse" version: "0.1.4" - installs: 10309 + installs: 10316 author: "Ed Heltzel" repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 81.2 black: 61 diff --git a/themes/lunar-eclipse.yaml b/themes/lunar-eclipse.yaml index 8af56cc8..1133d2d2 100644 --- a/themes/lunar-eclipse.yaml +++ b/themes/lunar-eclipse.yaml @@ -2,7 +2,7 @@ name: "Lunar Eclipse" source: marketplace_id: "ginfuru.lunar-eclipse" version: "0.1.4" - installs: 10309 + installs: 10316 author: "Ed Heltzel" repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 288 + pair: null contrast: fg: 95.7 black: 32.3 diff --git a/themes/lunar-pink-satellite.yaml b/themes/lunar-pink-satellite.yaml index a67643f9..266c1850 100644 --- a/themes/lunar-pink-satellite.yaml +++ b/themes/lunar-pink-satellite.yaml @@ -2,7 +2,7 @@ name: "Lunar Pink Satellite" source: marketplace_id: "nicolasdschmidt.lunar-pink" version: "1.4.0" - installs: 194247 + installs: 194473 author: "Nícolas D. Schmidt" repo: "https://github.com/tronfy/lunar-pink" url: "https://marketplace.visualstudio.com/items?itemName=nicolasdschmidt.lunar-pink" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 82.9 black: 27.5 diff --git a/themes/lunar-pink.yaml b/themes/lunar-pink.yaml index 7ff41645..dedd190b 100644 --- a/themes/lunar-pink.yaml +++ b/themes/lunar-pink.yaml @@ -2,7 +2,7 @@ name: "Lunar Pink" source: marketplace_id: "nicolasdschmidt.lunar-pink" version: "1.4.0" - installs: 194247 + installs: 194473 author: "Nícolas D. Schmidt" repo: "https://github.com/tronfy/lunar-pink" url: "https://marketplace.visualstudio.com/items?itemName=nicolasdschmidt.lunar-pink" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 85.4 black: 29.9 diff --git a/themes/lunar-theme.yaml b/themes/lunar-theme.yaml index b9c9148c..d3c071c1 100644 --- a/themes/lunar-theme.yaml +++ b/themes/lunar-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 302 + pair: null contrast: fg: 80.2 black: 13.6 diff --git a/themes/lunar-vscode.yaml b/themes/lunar-vscode.yaml index 4e7bedbb..9cee501e 100644 --- a/themes/lunar-vscode.yaml +++ b/themes/lunar-vscode.yaml @@ -2,7 +2,7 @@ name: "lunar vscode" source: marketplace_id: "JuniorSchmidt.lunar-vscode-theme" version: "1.0.8" - installs: 4284 + installs: 4286 author: "Junior Schmidt" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JuniorSchmidt.lunar-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 63.7 black: 0 diff --git a/themes/lunar.yaml b/themes/lunar.yaml index 5c0cfa02..e5ca7a5c 100644 --- a/themes/lunar.yaml +++ b/themes/lunar.yaml @@ -2,7 +2,7 @@ name: "Lunar" source: marketplace_id: "alvarosannas.nix" version: "1.4.8" - installs: 2949 + installs: 2950 author: "Alvaro Santana" repo: "https://github.com/alvarosannas/nix" url: "https://marketplace.visualstudio.com/items?itemName=alvarosannas.nix" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 274 + pair: null contrast: fg: 101.1 black: 0 diff --git a/themes/lunaria.yaml b/themes/lunaria.yaml index 1665217e..9516f9a7 100644 --- a/themes/lunaria.yaml +++ b/themes/lunaria.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 232 + pair: null contrast: fg: 80.4 black: 8.8 diff --git a/themes/lunna-dark.yaml b/themes/lunna-dark.yaml index f7dee5d0..e207d7bb 100644 --- a/themes/lunna-dark.yaml +++ b/themes/lunna-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 319 + pair: null contrast: fg: 63.1 black: 0 diff --git a/themes/lupine.yaml b/themes/lupine.yaml index 9ed099fb..180c1fd4 100644 --- a/themes/lupine.yaml +++ b/themes/lupine.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 140 + pair: null contrast: fg: 97.2 black: 0 diff --git a/themes/lupus.yaml b/themes/lupus.yaml index 0523c185..b7369558 100644 --- a/themes/lupus.yaml +++ b/themes/lupus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 73.4 black: 13.7 diff --git a/themes/luxeforest.yaml b/themes/luxeforest.yaml index 6e1a3c3c..2d745ebe 100644 --- a/themes/luxeforest.yaml +++ b/themes/luxeforest.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 147 + pair: null contrast: fg: 87.7 black: 27.2 diff --git a/themes/lyra-s-vega.yaml b/themes/lyra-s-vega.yaml index 2e0c7f2f..48b5c45b 100644 --- a/themes/lyra-s-vega.yaml +++ b/themes/lyra-s-vega.yaml @@ -2,7 +2,7 @@ name: "Lyra's Vega" source: marketplace_id: "Mubariz.a-pastel-fever-dream" version: "1.0.1" - installs: 4448 + installs: 4449 author: "Mubariz" repo: "https://github.com/Cyna298/a-pastel-fever-dream" url: "https://marketplace.visualstudio.com/items?itemName=Mubariz.a-pastel-fever-dream" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 65.6 black: 0 diff --git a/themes/lztheme.yaml b/themes/lztheme.yaml index 4123241a..aef075c8 100644 --- a/themes/lztheme.yaml +++ b/themes/lztheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 57.8 black: 0 diff --git a/themes/m-unity-s-custom-vscode-theme.yaml b/themes/m-unity-s-custom-vscode-theme.yaml index d5aea2c2..34056fee 100644 --- a/themes/m-unity-s-custom-vscode-theme.yaml +++ b/themes/m-unity-s-custom-vscode-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 29 + pair: null contrast: fg: 37.3 black: 0 diff --git a/themes/m2d-fork.yaml b/themes/m2d-fork.yaml index 81fc66c2..e424e135 100644 --- a/themes/m2d-fork.yaml +++ b/themes/m2d-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 251 + pair: null contrast: fg: 79.4 black: 0 diff --git a/themes/mac-theme.yaml b/themes/mac-theme.yaml index 85dfe305..1f2e6e31 100644 --- a/themes/mac-theme.yaml +++ b/themes/mac-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 286 + pair: null contrast: fg: 58.3 black: 0 diff --git a/themes/machine.yaml b/themes/machine.yaml index 0d313502..b3ecaf3a 100644 --- a/themes/machine.yaml +++ b/themes/machine.yaml @@ -2,7 +2,7 @@ name: "Machine" source: marketplace_id: "rafaelburghausen.rafa-theme" version: "3.0.6" - installs: 1203 + installs: 1204 author: "rafaelburghausen" repo: "https://github.com/marcos-burghausen/Extensao-Rafa" url: "https://marketplace.visualstudio.com/items?itemName=rafaelburghausen.rafa-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 230 + pair: null contrast: fg: 100.9 black: 0 diff --git a/themes/macho-man.yaml b/themes/macho-man.yaml index 299ef31e..c50d7728 100644 --- a/themes/macho-man.yaml +++ b/themes/macho-man.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 92.1 black: 0 diff --git a/themes/macos-classic-dark.yaml b/themes/macos-classic-dark.yaml index de701278..3d5d0e3c 100644 --- a/themes/macos-classic-dark.yaml +++ b/themes/macos-classic-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "macOS Classic Light" contrast: fg: 85.4 black: 89.4 diff --git a/themes/macos-classic-light.yaml b/themes/macos-classic-light.yaml index 30194ca3..4ad29046 100644 --- a/themes/macos-classic-light.yaml +++ b/themes/macos-classic-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "macOS Classic Dark" contrast: fg: 106 black: 106 diff --git a/themes/macos.yaml b/themes/macos.yaml index c4ef3317..33681dd0 100644 --- a/themes/macos.yaml +++ b/themes/macos.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/macrodata-refiners-classic.yaml b/themes/macrodata-refiners-classic.yaml index adf3b536..58766a1d 100644 --- a/themes/macrodata-refiners-classic.yaml +++ b/themes/macrodata-refiners-classic.yaml @@ -2,7 +2,7 @@ name: "Macrodata Refiners - Classic" source: marketplace_id: "guinetik.macrodata-refiners-severance-theme" version: "1.0.3" - installs: 139 + installs: 140 author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 236 + pair: null contrast: fg: 63 black: 0 diff --git a/themes/macrodata-refiners-cold-harbor.yaml b/themes/macrodata-refiners-cold-harbor.yaml index 2ab644a2..16e63fd1 100644 --- a/themes/macrodata-refiners-cold-harbor.yaml +++ b/themes/macrodata-refiners-cold-harbor.yaml @@ -2,7 +2,7 @@ name: "Macrodata Refiners - Cold Harbor" source: marketplace_id: "guinetik.macrodata-refiners-severance-theme" version: "1.0.3" - installs: 139 + installs: 140 author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 239 + pair: null contrast: fg: 61.5 black: 0 diff --git a/themes/macrodata-refiners-defiant-jazz.yaml b/themes/macrodata-refiners-defiant-jazz.yaml index 296a67d1..3bae45d3 100644 --- a/themes/macrodata-refiners-defiant-jazz.yaml +++ b/themes/macrodata-refiners-defiant-jazz.yaml @@ -2,7 +2,7 @@ name: "Macrodata Refiners - Defiant Jazz" source: marketplace_id: "guinetik.macrodata-refiners-severance-theme" version: "1.0.3" - installs: 139 + installs: 140 author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 70.9 black: 0 diff --git a/themes/macrodata-refiners-ortbo.yaml b/themes/macrodata-refiners-ortbo.yaml index 30ccf0f7..74e15f7e 100644 --- a/themes/macrodata-refiners-ortbo.yaml +++ b/themes/macrodata-refiners-ortbo.yaml @@ -2,7 +2,7 @@ name: "Macrodata Refiners - ORTBO" source: marketplace_id: "guinetik.macrodata-refiners-severance-theme" version: "1.0.3" - installs: 139 + installs: 140 author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 93.6 black: 102.8 diff --git a/themes/macrodata-refiners-sweet-vitriol.yaml b/themes/macrodata-refiners-sweet-vitriol.yaml index 98bc35b3..737d5999 100644 --- a/themes/macrodata-refiners-sweet-vitriol.yaml +++ b/themes/macrodata-refiners-sweet-vitriol.yaml @@ -2,7 +2,7 @@ name: "Macrodata Refiners - Sweet Vitriol" source: marketplace_id: "guinetik.macrodata-refiners-severance-theme" version: "1.0.3" - installs: 139 + installs: 140 author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 83.6 black: 83.6 diff --git a/themes/mad-dark-volt.yaml b/themes/mad-dark-volt.yaml index e8cb41fb..90bf8457 100644 --- a/themes/mad-dark-volt.yaml +++ b/themes/mad-dark-volt.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 242 + pair: null contrast: fg: 98 black: 0 diff --git a/themes/madak17z-darkmode-testing.yaml b/themes/madak17z-darkmode-testing.yaml index 845bbd8e..d919a0a9 100644 --- a/themes/madak17z-darkmode-testing.yaml +++ b/themes/madak17z-darkmode-testing.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 61.3 black: 0 diff --git a/themes/madness.yaml b/themes/madness.yaml index 0bf727c8..59642c8e 100644 --- a/themes/madness.yaml +++ b/themes/madness.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 34.7 black: 0 diff --git a/themes/madnight.yaml b/themes/madnight.yaml index 012603bb..9f52dcd6 100644 --- a/themes/madnight.yaml +++ b/themes/madnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 277 + pair: null contrast: fg: 80 black: 0 diff --git a/themes/madrid-night.yaml b/themes/madrid-night.yaml index eeba605c..fb38eb79 100644 --- a/themes/madrid-night.yaml +++ b/themes/madrid-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 287 + pair: null contrast: fg: 59.6 black: 0 diff --git a/themes/magenta-one-dark-pro.yaml b/themes/magenta-one-dark-pro.yaml index 6c41a12b..f6344678 100644 --- a/themes/magenta-one-dark-pro.yaml +++ b/themes/magenta-one-dark-pro.yaml @@ -2,7 +2,7 @@ name: "Magenta One Dark Pro" source: marketplace_id: "pit00.magenta-one-dark-pro" version: "1.0.0" - installs: 3493 + installs: 3497 author: "Pitu" repo: "https://github.com/pit00/magenta-one-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=pit00.magenta-one-dark-pro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 249 + pair: null contrast: fg: 59.8 black: 0 diff --git a/themes/magic-mushroom-theme.yaml b/themes/magic-mushroom-theme.yaml index 2e2261d7..b4067e1b 100644 --- a/themes/magic-mushroom-theme.yaml +++ b/themes/magic-mushroom-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 280 + pair: null contrast: fg: 95.3 black: 0 diff --git a/themes/magicorp.yaml b/themes/magicorp.yaml deleted file mode 100644 index 8991c9f7..00000000 --- a/themes/magicorp.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Magicorp" -source: - marketplace_id: "dango.magicorp-theme" - version: "1.2.3" - installs: 194 - author: "Daniel Radosa" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=dango.magicorp-theme" -colors: - bg: "#151515" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 107.1 - black: 0 - red: 26.9 - green: 53.2 - yellow: 85.8 - blue: 27.6 - magenta: 29.9 - cyan: 47.7 - white: 90.2 - brightBlack: 22.2 - brightRed: 38.7 - brightGreen: 63.7 - brightYellow: 95.8 - brightBlue: 40.2 - brightMagenta: 45.6 - brightCyan: 55.6 - brightWhite: 90.2 diff --git a/themes/magicuser-bases.yaml b/themes/magicuser-bases.yaml index a8ddfd22..8f7a2ccd 100644 --- a/themes/magicuser-bases.yaml +++ b/themes/magicuser-bases.yaml @@ -2,7 +2,7 @@ name: "MagicUser Bases" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 255 + pair: null contrast: fg: 81 black: 0 diff --git a/themes/magicuser-book.yaml b/themes/magicuser-book.yaml index 41d20a29..6e783f72 100644 --- a/themes/magicuser-book.yaml +++ b/themes/magicuser-book.yaml @@ -2,7 +2,7 @@ name: "MagicUser Book" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 92.4 black: 91.8 diff --git a/themes/magicuser-camouflage-light.yaml b/themes/magicuser-camouflage-light.yaml index a984d439..395ce057 100644 --- a/themes/magicuser-camouflage-light.yaml +++ b/themes/magicuser-camouflage-light.yaml @@ -2,7 +2,7 @@ name: "MagicUser Camouflage Light" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 122 + pair: null contrast: fg: 90.8 black: 90.1 diff --git a/themes/magicuser-camouflage.yaml b/themes/magicuser-camouflage.yaml index 0f0e0d20..7e987bdd 100644 --- a/themes/magicuser-camouflage.yaml +++ b/themes/magicuser-camouflage.yaml @@ -2,7 +2,7 @@ name: "MagicUser Camouflage" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 123 + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/magicuser-day.yaml b/themes/magicuser-day.yaml index fbad0a7d..35139792 100644 --- a/themes/magicuser-day.yaml +++ b/themes/magicuser-day.yaml @@ -2,7 +2,7 @@ name: "MagicUser Day" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 88.4 black: 87.7 diff --git a/themes/magicuser-light-blue.yaml b/themes/magicuser-light-blue.yaml index e833d5e7..1143b0f5 100644 --- a/themes/magicuser-light-blue.yaml +++ b/themes/magicuser-light-blue.yaml @@ -2,7 +2,7 @@ name: "MagicUser Light Blue" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 96.4 black: 95.7 diff --git a/themes/magicuser-light-gray.yaml b/themes/magicuser-light-gray.yaml index d2b9df97..a0702001 100644 --- a/themes/magicuser-light-gray.yaml +++ b/themes/magicuser-light-gray.yaml @@ -2,7 +2,7 @@ name: "MagicUser Light Gray" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 97.7 black: 97 diff --git a/themes/magicuser-light-green.yaml b/themes/magicuser-light-green.yaml index f28e8bcb..c5585bd6 100644 --- a/themes/magicuser-light-green.yaml +++ b/themes/magicuser-light-green.yaml @@ -2,7 +2,7 @@ name: "MagicUser Light Green" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 99.5 black: 98.8 diff --git a/themes/magicuser-light-orange.yaml b/themes/magicuser-light-orange.yaml index 315a9a78..49c6bf4d 100644 --- a/themes/magicuser-light-orange.yaml +++ b/themes/magicuser-light-orange.yaml @@ -2,7 +2,7 @@ name: "MagicUser Light Orange" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 98.5 black: 97.8 diff --git a/themes/magicuser-light-purple.yaml b/themes/magicuser-light-purple.yaml index c9721c0d..790465ed 100644 --- a/themes/magicuser-light-purple.yaml +++ b/themes/magicuser-light-purple.yaml @@ -2,7 +2,7 @@ name: "MagicUser Light Purple" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 296 + pair: "MagicUser Purple Night" contrast: fg: 83.7 black: 83 diff --git a/themes/magicuser-light.yaml b/themes/magicuser-light.yaml index f54ccd2f..5f57a613 100644 --- a/themes/magicuser-light.yaml +++ b/themes/magicuser-light.yaml @@ -2,7 +2,7 @@ name: "MagicUser Light" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "MagicUser Night" contrast: fg: 106 black: 105.4 diff --git a/themes/magicuser-neblina.yaml b/themes/magicuser-neblina.yaml index 7678b38f..253e7fc1 100644 --- a/themes/magicuser-neblina.yaml +++ b/themes/magicuser-neblina.yaml @@ -2,7 +2,7 @@ name: "MagicUser Neblina" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 83.2 black: 82.6 diff --git a/themes/magicuser-night-neblina.yaml b/themes/magicuser-night-neblina.yaml index 6986ec5f..91589c0e 100644 --- a/themes/magicuser-night-neblina.yaml +++ b/themes/magicuser-night-neblina.yaml @@ -2,7 +2,7 @@ name: "MagicUser Night Neblina" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 82.9 black: 0 diff --git a/themes/magicuser-night.yaml b/themes/magicuser-night.yaml index a5afb3af..64755edd 100644 --- a/themes/magicuser-night.yaml +++ b/themes/magicuser-night.yaml @@ -2,7 +2,7 @@ name: "MagicUser Night" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 246 + pair: "MagicUser Light" contrast: fg: 82.4 black: 0 diff --git a/themes/magicuser-paladin.yaml b/themes/magicuser-paladin.yaml index 1d9829ec..ca621a63 100644 --- a/themes/magicuser-paladin.yaml +++ b/themes/magicuser-paladin.yaml @@ -2,7 +2,7 @@ name: "MagicUser Paladin" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 252 + pair: null contrast: fg: 81.7 black: 0 diff --git a/themes/magicuser-path.yaml b/themes/magicuser-path.yaml index fdf9a1f6..fbcf5681 100644 --- a/themes/magicuser-path.yaml +++ b/themes/magicuser-path.yaml @@ -2,7 +2,7 @@ name: "MagicUser Path" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 267 + pair: null contrast: fg: 51.8 black: 0 diff --git a/themes/magicuser-power.yaml b/themes/magicuser-power.yaml index 741efe59..e25057e7 100644 --- a/themes/magicuser-power.yaml +++ b/themes/magicuser-power.yaml @@ -2,7 +2,7 @@ name: "MagicUser Power" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 292 + pair: null contrast: fg: 81.7 black: 0 diff --git a/themes/magicuser-purple-night.yaml b/themes/magicuser-purple-night.yaml index 67852565..4f636d41 100644 --- a/themes/magicuser-purple-night.yaml +++ b/themes/magicuser-purple-night.yaml @@ -2,7 +2,7 @@ name: "MagicUser Purple Night" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 304 + pair: "MagicUser Light Purple" contrast: fg: 82.6 black: 0 diff --git a/themes/magicuser-purple.yaml b/themes/magicuser-purple.yaml index 75ce1951..4488dab5 100644 --- a/themes/magicuser-purple.yaml +++ b/themes/magicuser-purple.yaml @@ -2,7 +2,7 @@ name: "MagicUser Purple" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 312 + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/magicuser-room-lamp.yaml b/themes/magicuser-room-lamp.yaml index 8a5d1f77..3402da1e 100644 --- a/themes/magicuser-room-lamp.yaml +++ b/themes/magicuser-room-lamp.yaml @@ -2,7 +2,7 @@ name: "MagicUser Room Lamp" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 5 + pair: null contrast: fg: 81.4 black: 0 diff --git a/themes/magicuser-sea.yaml b/themes/magicuser-sea.yaml index 80600c18..e4962056 100644 --- a/themes/magicuser-sea.yaml +++ b/themes/magicuser-sea.yaml @@ -2,7 +2,7 @@ name: "MagicUser Sea" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 266 + pair: null contrast: fg: 84.7 black: 84.1 diff --git a/themes/magicuser-space.yaml b/themes/magicuser-space.yaml index f5a5a023..9ddb67e3 100644 --- a/themes/magicuser-space.yaml +++ b/themes/magicuser-space.yaml @@ -2,7 +2,7 @@ name: "MagicUser Space" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 82.9 black: 0 diff --git a/themes/magicuser-specialist.yaml b/themes/magicuser-specialist.yaml index 45ea5cab..755b11fe 100644 --- a/themes/magicuser-specialist.yaml +++ b/themes/magicuser-specialist.yaml @@ -2,7 +2,7 @@ name: "MagicUser Specialist" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 161 + pair: null contrast: fg: 95.4 black: 94.7 diff --git a/themes/magicuser-staff.yaml b/themes/magicuser-staff.yaml index 2114ba8b..15a50fda 100644 --- a/themes/magicuser-staff.yaml +++ b/themes/magicuser-staff.yaml @@ -2,7 +2,7 @@ name: "MagicUser Staff" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 50.8 black: 0 diff --git a/themes/magicuser-sun.yaml b/themes/magicuser-sun.yaml index afb2de4b..3124444a 100644 --- a/themes/magicuser-sun.yaml +++ b/themes/magicuser-sun.yaml @@ -2,7 +2,7 @@ name: "MagicUser Sun" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 97.8 black: 97.1 diff --git a/themes/magicuser-talisman.yaml b/themes/magicuser-talisman.yaml index 0c751d68..33a5c093 100644 --- a/themes/magicuser-talisman.yaml +++ b/themes/magicuser-talisman.yaml @@ -2,7 +2,7 @@ name: "MagicUser Talisman" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 176 + pair: null contrast: fg: 81.9 black: 0 diff --git a/themes/magicuser-teal-night.yaml b/themes/magicuser-teal-night.yaml index 3b5d1728..c99a62fb 100644 --- a/themes/magicuser-teal-night.yaml +++ b/themes/magicuser-teal-night.yaml @@ -2,7 +2,7 @@ name: "MagicUser Teal Night" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 195 + pair: null contrast: fg: 82.5 black: 0 diff --git a/themes/magicuser-teal.yaml b/themes/magicuser-teal.yaml index 99951eb2..1ecae40d 100644 --- a/themes/magicuser-teal.yaml +++ b/themes/magicuser-teal.yaml @@ -2,7 +2,7 @@ name: "MagicUser Teal" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 195 + pair: null contrast: fg: 80.2 black: 0 diff --git a/themes/magicuser-veteran-blue.yaml b/themes/magicuser-veteran-blue.yaml index 11d60bff..63a7e20c 100644 --- a/themes/magicuser-veteran-blue.yaml +++ b/themes/magicuser-veteran-blue.yaml @@ -2,7 +2,7 @@ name: "MagicUser Veteran Blue" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 250 + pair: null contrast: fg: 77.3 black: 0 diff --git a/themes/magicuser-veteran-purple.yaml b/themes/magicuser-veteran-purple.yaml index 4671332c..c2f88b4c 100644 --- a/themes/magicuser-veteran-purple.yaml +++ b/themes/magicuser-veteran-purple.yaml @@ -2,7 +2,7 @@ name: "MagicUser Veteran Purple" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 319 + pair: null contrast: fg: 76.7 black: 0 diff --git a/themes/magicuser-veteran.yaml b/themes/magicuser-veteran.yaml index 075f28ec..5ca9ff55 100644 --- a/themes/magicuser-veteran.yaml +++ b/themes/magicuser-veteran.yaml @@ -2,7 +2,7 @@ name: "MagicUser Veteran" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 167 + pair: null contrast: fg: 76.6 black: 0 diff --git a/themes/magicuser-wand-blue.yaml b/themes/magicuser-wand-blue.yaml index 3daa015a..4c118d2f 100644 --- a/themes/magicuser-wand-blue.yaml +++ b/themes/magicuser-wand-blue.yaml @@ -2,7 +2,7 @@ name: "MagicUser Wand Blue" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 81 black: 0 diff --git a/themes/magicuser.yaml b/themes/magicuser.yaml index 49943c18..4912a78e 100644 --- a/themes/magicuser.yaml +++ b/themes/magicuser.yaml @@ -2,7 +2,7 @@ name: "MagicUser" source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" - installs: 1704 + installs: 1705 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 254 + pair: null contrast: fg: 80.2 black: 0 diff --git a/themes/magnolia.yaml b/themes/magnolia.yaml index 0b6baf63..e411d930 100644 --- a/themes/magnolia.yaml +++ b/themes/magnolia.yaml @@ -2,7 +2,7 @@ name: "Magnolia" source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" - installs: 80 + installs: 81 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 94.5 black: 34.3 diff --git a/themes/magnus-dark-theme.yaml b/themes/magnus-dark-theme.yaml index 8c168f14..6627aff3 100644 --- a/themes/magnus-dark-theme.yaml +++ b/themes/magnus-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 277 + pair: null contrast: fg: 73.4 black: 0 diff --git a/themes/maguh.yaml b/themes/maguh.yaml index 9f174326..3b2305c5 100644 --- a/themes/maguh.yaml +++ b/themes/maguh.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/maharashtra-land-of-warriors.yaml b/themes/maharashtra-land-of-warriors.yaml index 109db10a..c27afcd0 100644 --- a/themes/maharashtra-land-of-warriors.yaml +++ b/themes/maharashtra-land-of-warriors.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 67 + pair: null contrast: fg: 91.2 black: 0 diff --git a/themes/mahiro.yaml b/themes/mahiro.yaml index dc1bb97a..4c6643ba 100644 --- a/themes/mahiro.yaml +++ b/themes/mahiro.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/maisum-xcode-dark.yaml b/themes/maisum-xcode-dark.yaml index 5a0a8a66..e9084ab0 100644 --- a/themes/maisum-xcode-dark.yaml +++ b/themes/maisum-xcode-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 67.7 black: 0 diff --git a/themes/mak1na-theme.yaml b/themes/mak1na-theme.yaml index a1f94f8c..3b487da6 100644 --- a/themes/mak1na-theme.yaml +++ b/themes/mak1na-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 312 + pair: null contrast: fg: 70.7 black: 27.2 diff --git a/themes/make-apps.yaml b/themes/make-apps.yaml index 00c3c018..d053a4c8 100644 --- a/themes/make-apps.yaml +++ b/themes/make-apps.yaml @@ -2,7 +2,7 @@ name: "Make Apps" source: marketplace_id: "dannyconnell.make-apps-theme" version: "1.0.4" - installs: 19987 + installs: 19989 author: "Danny Connell" repo: "https://github.com/dannyconnell/vscode-make-apps-theme" url: "https://marketplace.visualstudio.com/items?itemName=dannyconnell.make-apps-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 230 + pair: null contrast: fg: 68.5 black: 0 diff --git a/themes/malachite.yaml b/themes/malachite.yaml index 73b0e2e7..8de4a1d4 100644 --- a/themes/malachite.yaml +++ b/themes/malachite.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.4 black: 0 diff --git a/themes/maldi-dark.yaml b/themes/maldi-dark.yaml index 7d34fd3b..6f448600 100644 --- a/themes/maldi-dark.yaml +++ b/themes/maldi-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 95.5 black: 0 diff --git a/themes/malibu-sunset.yaml b/themes/malibu-sunset.yaml index fa8af22f..853778da 100644 --- a/themes/malibu-sunset.yaml +++ b/themes/malibu-sunset.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 287 + pair: null contrast: fg: 92.4 black: 0 diff --git a/themes/malibun-sunrise.yaml b/themes/malibun-sunrise.yaml index 9eb1fb24..516f6e40 100644 --- a/themes/malibun-sunrise.yaml +++ b/themes/malibun-sunrise.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 74.2 black: 0 diff --git a/themes/man-dark-stone.yaml b/themes/man-dark-stone.yaml index 04bc8432..8640b06b 100644 --- a/themes/man-dark-stone.yaml +++ b/themes/man-dark-stone.yaml @@ -2,7 +2,7 @@ name: "Man Dark Stone" source: marketplace_id: "calvinludwig.wind-theme" version: "1.0.0" - installs: 1681 + installs: 1682 author: "Calvin Ludwig" repo: "https://github.com/calvinludwig/wind-theme" url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/manatee.yaml b/themes/manatee.yaml index f4bb2530..fd9e3917 100644 --- a/themes/manatee.yaml +++ b/themes/manatee.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: 278 + pair: null contrast: fg: 84.1 black: 0 diff --git a/themes/mandacaru-syntax-theme.yaml b/themes/mandacaru-syntax-theme.yaml index c1259adc..8e65f4f4 100644 --- a/themes/mandacaru-syntax-theme.yaml +++ b/themes/mandacaru-syntax-theme.yaml @@ -2,7 +2,7 @@ name: "Mandacaru Syntax Theme" source: marketplace_id: "oxechicao.mandacaru-syntax-theme" version: "1.2.0" - installs: 7 + installs: 8 author: "Francisco Thiago" repo: "https://github.com/oxechicao/mandacaru-vs" url: "https://marketplace.visualstudio.com/items?itemName=oxechicao.mandacaru-syntax-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 314 + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/manhld-theme.yaml b/themes/manhld-theme.yaml index 5931ca77..1e8bce06 100644 --- a/themes/manhld-theme.yaml +++ b/themes/manhld-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/manjaro-owl.yaml b/themes/manjaro-owl.yaml index d0f48dff..a0be59cf 100644 --- a/themes/manjaro-owl.yaml +++ b/themes/manjaro-owl.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 217 + pair: null contrast: fg: 89.3 black: 0 diff --git a/themes/manners.yaml b/themes/manners.yaml index ac72bd7c..40a63379 100644 --- a/themes/manners.yaml +++ b/themes/manners.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 87.4 black: 0 diff --git a/themes/mantissa-dark.yaml b/themes/mantissa-dark.yaml index acf782db..f87ca614 100644 --- a/themes/mantissa-dark.yaml +++ b/themes/mantissa-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 241 + pair: "Mantissa Light" contrast: fg: 93.9 black: 8.6 diff --git a/themes/mantissa-light.yaml b/themes/mantissa-light.yaml index f7f77c5e..7cc24406 100644 --- a/themes/mantissa-light.yaml +++ b/themes/mantissa-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Mantissa Dark" contrast: fg: 66.2 black: 66.2 diff --git a/themes/maomao-dark-theme.yaml b/themes/maomao-dark-theme.yaml index cf6613ef..6c6e9ceb 100644 --- a/themes/maomao-dark-theme.yaml +++ b/themes/maomao-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Maomao Dark Theme" source: marketplace_id: "apothecary-diary-theme.apothecary-diary-theme" version: "0.1.0" - installs: 58 + installs: 59 author: "Matheus Montemurro" repo: "https://github.com/montemurro19/apothecary-diary-theme" url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 178 + pair: "Maomao Light Theme" contrast: fg: 97.7 black: 0 diff --git a/themes/maomao-light-theme.yaml b/themes/maomao-light-theme.yaml index fa22ef3b..1174d5dc 100644 --- a/themes/maomao-light-theme.yaml +++ b/themes/maomao-light-theme.yaml @@ -2,7 +2,7 @@ name: "Maomao Light Theme" source: marketplace_id: "apothecary-diary-theme.apothecary-diary-theme" version: "0.1.0" - installs: 58 + installs: 59 author: "Matheus Montemurro" repo: "https://github.com/montemurro19/apothecary-diary-theme" url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Maomao Dark Theme" contrast: fg: 95 black: 95 diff --git a/themes/maple-dark.yaml b/themes/maple-dark.yaml index c10e0963..f2c4c7f6 100644 --- a/themes/maple-dark.yaml +++ b/themes/maple-dark.yaml @@ -2,7 +2,7 @@ name: "Maple Dark" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: "Maple Light" contrast: fg: 78.5 black: 0 diff --git a/themes/maple-light.yaml b/themes/maple-light.yaml index ef3922e8..7e87a06c 100644 --- a/themes/maple-light.yaml +++ b/themes/maple-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Maple Dark" contrast: fg: 86.3 black: 98.6 diff --git a/themes/marble-dark.yaml b/themes/marble-dark.yaml index f5cd98ed..56fff85f 100644 --- a/themes/marble-dark.yaml +++ b/themes/marble-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 88.1 black: 0 diff --git a/themes/marci1.yaml b/themes/marci1.yaml index dbeaa869..6e3c93bb 100644 --- a/themes/marci1.yaml +++ b/themes/marci1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 61.8 black: 0 diff --git a/themes/marcial-theme.yaml b/themes/marcial-theme.yaml index e804df17..f9fabe0c 100644 --- a/themes/marcial-theme.yaml +++ b/themes/marcial-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 281 + pair: null contrast: fg: 57.1 black: 13.4 diff --git a/themes/marcosven.yaml b/themes/marcosven.yaml index 38091e28..8457167b 100644 --- a/themes/marcosven.yaml +++ b/themes/marcosven.yaml @@ -2,7 +2,7 @@ name: "marcoSven" source: marketplace_id: "marcoSven.marcosventheme" version: "1.0.4" - installs: 481 + installs: 482 author: "marcoSven" repo: "https://github.com/marcoSven/masrcoSven_VSCode" url: "https://marketplace.visualstudio.com/items?itemName=marcoSven.marcosventheme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 58 black: 0 diff --git a/themes/mariana-light.yaml b/themes/mariana-light.yaml index 02348fe6..2ab08302 100644 --- a/themes/mariana-light.yaml +++ b/themes/mariana-light.yaml @@ -2,7 +2,7 @@ name: "mariana-light" source: marketplace_id: "mani-sh-reddy.mariana-refined" version: "0.1.4" - installs: 3259 + installs: 3261 author: "Manish Reddy" repo: "https://github.com/mani-sh-reddy/mariana-refined" url: "https://marketplace.visualstudio.com/items?itemName=mani-sh-reddy.mariana-refined" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 97.3 black: 104.7 diff --git a/themes/mariana-pro.yaml b/themes/mariana-pro.yaml index 6461f5f3..1bcf415f 100644 --- a/themes/mariana-pro.yaml +++ b/themes/mariana-pro.yaml @@ -2,7 +2,7 @@ name: "Mariana (Pro)" source: marketplace_id: "rickynormandeau.mariana-pro" version: "3.0.12" - installs: 48805 + installs: 48810 author: "ricky.normandeau" repo: "https://github.com/n0rmand0/Mariana-Pro-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=rickynormandeau.mariana-pro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 100.5 black: 100.5 diff --git a/themes/mariana-refined.yaml b/themes/mariana-refined.yaml index d4debcb7..7f2bf8f8 100644 --- a/themes/mariana-refined.yaml +++ b/themes/mariana-refined.yaml @@ -2,7 +2,7 @@ name: "Mariana Refined" source: marketplace_id: "mani-sh-reddy.mariana-refined" version: "0.1.4" - installs: 3259 + installs: 3261 author: "Manish Reddy" repo: "https://github.com/mani-sh-reddy/mariana-refined" url: "https://marketplace.visualstudio.com/items?itemName=mani-sh-reddy.mariana-refined" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 248 + pair: null contrast: fg: 65.1 black: 0 diff --git a/themes/mariana.yaml b/themes/mariana.yaml index 61c422bc..269ace8e 100644 --- a/themes/mariana.yaml +++ b/themes/mariana.yaml @@ -1,15 +1,15 @@ name: "Mariana" source: - marketplace_id: "gijocode.mariana-no-italic" - version: "1.99.99" - installs: 169 - author: "gijocode" - repo: "https://github.com/gijocode/vscode-mariana" - url: "https://marketplace.visualstudio.com/items?itemName=gijocode.mariana-no-italic" + marketplace_id: "zwyyy456.mariana-st" + version: "0.1.2" + installs: 227 + author: "zwyyy456" + repo: "https://github.com/zwyyy456/vscode-mariana" + url: "https://marketplace.visualstudio.com/items?itemName=zwyyy456.mariana-st" colors: - bg: "#1E2933" + bg: "#303841" fg: "#D8DEE9" - black: "#19212A" + black: "#1C2126" red: "#EC5F66" green: "#99C794" yellow: "#FAC761" @@ -17,7 +17,7 @@ colors: magenta: "#C695C6" cyan: "#5FB4B4" white: "#A6ADB9" - brightBlack: "#24303D" + brightBlack: "#293038" brightRed: "#EC5F66" brightGreen: "#99C794" brightYellow: "#FAC761" @@ -28,22 +28,23 @@ colors: meta: mode: "dark" accent: "orange" - hue: 246 + hue: 251 + pair: null contrast: - fg: 82.9 + fg: 79.3 black: 0 - red: 38.9 - green: 62.4 - yellow: 73.9 - blue: 41.7 - magenta: 50.1 - cyan: 51.1 - white: 54.2 + red: 35.3 + green: 58.8 + yellow: 70.3 + blue: 38.1 + magenta: 46.5 + cyan: 47.5 + white: 50.5 brightBlack: 0 - brightRed: 38.9 - brightGreen: 62.4 - brightYellow: 73.9 - brightBlue: 41.7 - brightMagenta: 50.1 - brightCyan: 51.1 - brightWhite: 82.9 + brightRed: 35.3 + brightGreen: 58.8 + brightYellow: 70.3 + brightBlue: 38.1 + brightMagenta: 46.5 + brightCyan: 47.5 + brightWhite: 79.3 diff --git a/themes/marigold-night.yaml b/themes/marigold-night.yaml index c2e8566f..ef72fdbc 100644 --- a/themes/marigold-night.yaml +++ b/themes/marigold-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/mario-theme.yaml b/themes/mario-theme.yaml index cfd871c3..3a1425ab 100644 --- a/themes/mario-theme.yaml +++ b/themes/mario-theme.yaml @@ -2,7 +2,7 @@ name: "Mario Theme" source: marketplace_id: "alphatr.mario-theme" version: "1.1.1" - installs: 5480 + installs: 5482 author: "alphatr" repo: "https://github.com/alphatr/vscode-mario-theme" url: "https://marketplace.visualstudio.com/items?itemName=alphatr.mario-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/marnic1505.yaml b/themes/marnic1505.yaml index 86784548..30fb8a9c 100644 --- a/themes/marnic1505.yaml +++ b/themes/marnic1505.yaml @@ -2,7 +2,7 @@ name: "Marnic1505" source: marketplace_id: "Marnic1505.more-colorful" version: "0.0.1" - installs: 759 + installs: 760 author: "Marnic1505" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Marnic1505.more-colorful" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 91.6 black: 0 diff --git a/themes/maroza-cyber-chill.yaml b/themes/maroza-cyber-chill.yaml index 3ba84d54..fcd89736 100644 --- a/themes/maroza-cyber-chill.yaml +++ b/themes/maroza-cyber-chill.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 87.4 black: 0 diff --git a/themes/maroza-dark-theme.yaml b/themes/maroza-dark-theme.yaml index bccba197..b93b1140 100644 --- a/themes/maroza-dark-theme.yaml +++ b/themes/maroza-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 272 + pair: "Maroza Light Theme" contrast: fg: 79.3 black: 7.9 diff --git a/themes/maroza-light-theme.yaml b/themes/maroza-light-theme.yaml index 34e3e51f..1f5e27ba 100644 --- a/themes/maroza-light-theme.yaml +++ b/themes/maroza-light-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Maroza Dark Theme" contrast: fg: 101.9 black: 91.3 diff --git a/themes/maroza-soothing-aqua.yaml b/themes/maroza-soothing-aqua.yaml index ffa55af2..3b5f3da4 100644 --- a/themes/maroza-soothing-aqua.yaml +++ b/themes/maroza-soothing-aqua.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 284 + pair: null contrast: fg: 90.7 black: 0 diff --git a/themes/maroza-zen-pro.yaml b/themes/maroza-zen-pro.yaml index 3715a397..30b4585d 100644 --- a/themes/maroza-zen-pro.yaml +++ b/themes/maroza-zen-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 78.1 black: 0 diff --git a/themes/mars.yaml b/themes/mars.yaml index 22ed316e..5895705a 100644 --- a/themes/mars.yaml +++ b/themes/mars.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 68.1 black: 0 diff --git a/themes/marshmallow.yaml b/themes/marshmallow.yaml index 7b5f809e..d562a696 100644 --- a/themes/marshmallow.yaml +++ b/themes/marshmallow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 232 + pair: null contrast: fg: 83 black: 0 diff --git a/themes/marsidark.yaml b/themes/marsidark.yaml index d602d207..e448e662 100644 --- a/themes/marsidark.yaml +++ b/themes/marsidark.yaml @@ -2,7 +2,7 @@ name: "MarsiDark" source: marketplace_id: "marsi.marsidark" version: "1.0.1" - installs: 1553 + installs: 1554 author: "marsi" repo: "https://github.com/marsidev/MarsiDarkTheme" url: "https://marketplace.visualstudio.com/items?itemName=marsi.marsidark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 297 + pair: null contrast: fg: 54.6 black: 0 diff --git a/themes/marstree.yaml b/themes/marstree.yaml index 77660a6b..d3aaf704 100644 --- a/themes/marstree.yaml +++ b/themes/marstree.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 258 + pair: null contrast: fg: 58.9 black: 0 diff --git a/themes/marwen-labidi-theme.yaml b/themes/marwen-labidi-theme.yaml index 6068792f..0db2c73e 100644 --- a/themes/marwen-labidi-theme.yaml +++ b/themes/marwen-labidi-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 54.1 black: 0 diff --git a/themes/matcha.yaml b/themes/matcha.yaml index 4cfefab2..33e3cf38 100644 --- a/themes/matcha.yaml +++ b/themes/matcha.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 60.1 black: 106 diff --git a/themes/matchalk.yaml b/themes/matchalk.yaml index 1d5e767f..d963c6de 100644 --- a/themes/matchalk.yaml +++ b/themes/matchalk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 230 + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/matchanaa.yaml b/themes/matchanaa.yaml index 48a51ace..dd2dde2f 100644 --- a/themes/matchanaa.yaml +++ b/themes/matchanaa.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 71.5 black: 0 diff --git a/themes/matchati.yaml b/themes/matchati.yaml index b78531a1..885c72b6 100644 --- a/themes/matchati.yaml +++ b/themes/matchati.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 226 + pair: null contrast: fg: 82.8 black: 0 diff --git a/themes/material-color-theme.yaml b/themes/material-color-theme.yaml index c6252cf7..73a03481 100644 --- a/themes/material-color-theme.yaml +++ b/themes/material-color-theme.yaml @@ -2,7 +2,7 @@ name: "material-color-theme" source: marketplace_id: "JonaDuran.my-light-theme" version: "1.1.9" - installs: 31515 + installs: 31519 author: "Jonathan Durán" repo: "https://github.com/JonaDuran/Material-Light-Theme" url: "https://marketplace.visualstudio.com/items?itemName=JonaDuran.my-light-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 100.1 black: 100.1 diff --git a/themes/material-community-ansi-16.yaml b/themes/material-community-ansi-16.yaml index bfdd5e20..b40d1065 100644 --- a/themes/material-community-ansi-16.yaml +++ b/themes/material-community-ansi-16.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 230 + pair: null contrast: fg: 100.4 black: 22.2 diff --git a/themes/material-dark-color-theme.yaml b/themes/material-dark-color-theme.yaml index 68408485..1eab60db 100644 --- a/themes/material-dark-color-theme.yaml +++ b/themes/material-dark-color-theme.yaml @@ -2,7 +2,7 @@ name: "material-dark-color-theme" source: marketplace_id: "JonaDuran.my-light-theme" version: "1.1.9" - installs: 31515 + installs: 31519 author: "Jonathan Durán" repo: "https://github.com/JonaDuran/Material-Light-Theme" url: "https://marketplace.visualstudio.com/items?itemName=JonaDuran.my-light-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 74.6 black: 0 diff --git a/themes/material-last.yaml b/themes/material-last.yaml deleted file mode 100644 index 45a034f1..00000000 --- a/themes/material-last.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Material-Last" -source: - marketplace_id: "tjlastnumber.material-last" - version: "0.0.5" - installs: 7682 - author: "Lastnumber" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=tjlastnumber.material-last" -colors: - bg: "#263238" - fg: "#B2CCD6" - black: "#263238" - red: "#FA6981" - green: "#C3E88D" - yellow: "#FFCC00" - blue: "#82AAFF" - magenta: "#F77669" - cyan: "#7FCAC3" - white: "#B2CCD6" - brightBlack: "#65737E" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#FFCC00" - brightBlue: "#82AAFF" - brightMagenta: "#F77669" - brightCyan: "#7FCAC3" - brightWhite: "#B2CCD6" -meta: - mode: "dark" - accent: "red" - hue: 230 - contrast: - fg: 67.9 - black: 0 - red: 42.9 - green: 80 - yellow: 74.4 - blue: 51.7 - magenta: 44.7 - cyan: 61.6 - white: 67.9 - brightBlack: 22.7 - brightRed: 28.8 - brightGreen: 57.5 - brightYellow: 74.4 - brightBlue: 51.7 - brightMagenta: 44.7 - brightCyan: 61.6 - brightWhite: 67.9 diff --git a/themes/material-midnight.yaml b/themes/material-midnight.yaml index f921fb2b..1617bcd6 100644 --- a/themes/material-midnight.yaml +++ b/themes/material-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 84.6 black: 0 diff --git a/themes/material-monokai-high-contrast.yaml b/themes/material-monokai-high-contrast.yaml index 218e76d0..665c5cce 100644 --- a/themes/material-monokai-high-contrast.yaml +++ b/themes/material-monokai-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 230 + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/material-rainbow.yaml b/themes/material-rainbow.yaml index 4401f0e6..47f17be0 100644 --- a/themes/material-rainbow.yaml +++ b/themes/material-rainbow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 75.8 black: 0 diff --git a/themes/material-solarized.yaml b/themes/material-solarized.yaml index b38427ac..50df684f 100644 --- a/themes/material-solarized.yaml +++ b/themes/material-solarized.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 225 + pair: null contrast: fg: 91.1 black: 0 diff --git a/themes/material-theme-dark.yaml b/themes/material-theme-dark.yaml index 19023515..f1945bb3 100644 --- a/themes/material-theme-dark.yaml +++ b/themes/material-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 272 + pair: null contrast: fg: 103.2 black: 0 diff --git a/themes/material-theme-darker-high-contrast.yaml b/themes/material-theme-darker-high-contrast.yaml deleted file mode 100644 index 558ad7fc..00000000 --- a/themes/material-theme-darker-high-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Material-Theme-Darker-High-Contrast" -source: - marketplace_id: "Serge.vsc-material-theme-italicize" - version: "0.0.14" - installs: 22608 - author: "Serge" - repo: "https://github.com/faultless/vsc-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" -colors: - bg: "#212121" - fg: "#EEFFFF" - black: "#4A4A4A" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#4A4A4A" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 103.3 - black: 9.7 - red: 42.4 - green: 82.9 - yellow: 77.7 - blue: 54.7 - magenta: 52.5 - cyan: 77 - white: 105.6 - brightBlack: 9.7 - brightRed: 42.4 - brightGreen: 82.9 - brightYellow: 77.7 - brightBlue: 54.7 - brightMagenta: 52.5 - brightCyan: 77 - brightWhite: 105.6 diff --git a/themes/material-theme-darker.yaml b/themes/material-theme-darker.yaml deleted file mode 100644 index 0a8857b8..00000000 --- a/themes/material-theme-darker.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Material-Theme-Darker" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3734 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#212121" - fg: "#EEFFFF" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#545454" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 103.3 - black: 0 - red: 45.3 - green: 82.9 - yellow: 77.7 - blue: 54.7 - magenta: 52.5 - cyan: 77 - white: 105.6 - brightBlack: 13.5 - brightRed: 45.3 - brightGreen: 82.9 - brightYellow: 77.7 - brightBlue: 54.7 - brightMagenta: 52.5 - brightCyan: 77 - brightWhite: 105.6 diff --git a/themes/material-theme-deepforest-high-contrast.yaml b/themes/material-theme-deepforest-high-contrast.yaml deleted file mode 100644 index 12dc66c7..00000000 --- a/themes/material-theme-deepforest-high-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Material-Theme-Deepforest-High-Contrast" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3734 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#141F1D" - fg: "#C2EDD3" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#6FA0DE" - magenta: "#A68DCD" - cyan: "#74C9DE" - white: "#FFFFFF" - brightBlack: "#476352" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#6FA0DE" - brightMagenta: "#A68DCD" - brightCyan: "#74C9DE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 182 - contrast: - fg: 88 - black: 0 - red: 45.9 - green: 83.5 - yellow: 78.2 - blue: 47.8 - magenta: 45.2 - cyan: 65.2 - white: 106.2 - brightBlack: 17.5 - brightRed: 45.9 - brightGreen: 83.5 - brightYellow: 78.2 - brightBlue: 47.8 - brightMagenta: 45.2 - brightCyan: 65.2 - brightWhite: 106.2 diff --git a/themes/material-theme-default-high-contrast.yaml b/themes/material-theme-default-high-contrast.yaml deleted file mode 100644 index e5a04a20..00000000 --- a/themes/material-theme-default-high-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Material-Theme-Default-High-Contrast" -source: - marketplace_id: "Serge.vsc-material-theme-italicize" - version: "0.0.14" - installs: 22608 - author: "Serge" - repo: "https://github.com/faultless/vsc-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" -colors: - bg: "#263238" - fg: "#EEFFFF" - black: "#546E7A" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#546E7A" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 230 - contrast: - fg: 100.4 - black: 19.7 - red: 39.4 - green: 80 - yellow: 74.7 - blue: 51.7 - magenta: 49.6 - cyan: 74.1 - white: 102.7 - brightBlack: 19.7 - brightRed: 39.4 - brightGreen: 80 - brightYellow: 74.7 - brightBlue: 51.7 - brightMagenta: 49.6 - brightCyan: 74.1 - brightWhite: 102.7 diff --git a/themes/material-theme-lighter-high-contrast.yaml b/themes/material-theme-lighter-high-contrast.yaml deleted file mode 100644 index 0f2c3b64..00000000 --- a/themes/material-theme-lighter-high-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Material-Theme-Lighter-High-Contrast" -source: - marketplace_id: "Serge.vsc-material-theme-italicize" - version: "0.0.14" - installs: 22608 - author: "Serge" - repo: "https://github.com/faultless/vsc-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" -colors: - bg: "#FFFFFF" - fg: "#90A4AE" - black: "#90A4AE" - red: "#E53935" - green: "#91B859" - yellow: "#FFB62C" - blue: "#6182B8" - magenta: "#7C4DFF" - cyan: "#39ADB5" - white: "#FFFFFF" - brightBlack: "#90A4AE" - brightRed: "#E53935" - brightGreen: "#91B859" - brightYellow: "#FFB62C" - brightBlue: "#6182B8" - brightMagenta: "#7C4DFF" - brightCyan: "#39ADB5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 50.6 - black: 50.6 - red: 67.7 - green: 44.9 - yellow: 31.7 - blue: 66.3 - magenta: 72.6 - cyan: 51.8 - white: 0 - brightBlack: 50.6 - brightRed: 67.7 - brightGreen: 44.9 - brightYellow: 31.7 - brightBlue: 66.3 - brightMagenta: 72.6 - brightCyan: 51.8 - brightWhite: 0 diff --git a/themes/material-theme-lighter.yaml b/themes/material-theme-lighter.yaml deleted file mode 100644 index 483fd770..00000000 --- a/themes/material-theme-lighter.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Material-Theme-Lighter" -source: - marketplace_id: "Serge.vsc-material-theme-italicize" - version: "0.0.14" - installs: 22608 - author: "Serge" - repo: "https://github.com/faultless/vsc-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" -colors: - bg: "#FAFAFA" - fg: "#90A4AE" - black: "#90A4AE" - red: "#E53935" - green: "#91B859" - yellow: "#FFB62C" - blue: "#6182B8" - magenta: "#7C4DFF" - cyan: "#39ADB5" - white: "#FFFFFF" - brightBlack: "#90A4AE" - brightRed: "#E53935" - brightGreen: "#91B859" - brightYellow: "#FFB62C" - brightBlue: "#6182B8" - brightMagenta: "#7C4DFF" - brightCyan: "#39ADB5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 47.6 - black: 47.6 - red: 64.7 - green: 41.9 - yellow: 28.7 - blue: 63.3 - magenta: 69.6 - cyan: 48.8 - white: 0 - brightBlack: 47.6 - brightRed: 64.7 - brightGreen: 41.9 - brightYellow: 28.7 - brightBlue: 63.3 - brightMagenta: 69.6 - brightCyan: 48.8 - brightWhite: 0 diff --git a/themes/material-theme-palenight-high-contrast.yaml b/themes/material-theme-palenight-high-contrast.yaml deleted file mode 100644 index f54ed612..00000000 --- a/themes/material-theme-palenight-high-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Material-Theme-Palenight-High-Contrast" -source: - marketplace_id: "Serge.vsc-material-theme-italicize" - version: "0.0.14" - installs: 22608 - author: "Serge" - repo: "https://github.com/faultless/vsc-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" -colors: - bg: "#292D3E" - fg: "#A6ACCD" - black: "#676E95" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 274 - contrast: - fg: 53.5 - black: 22.8 - red: 40 - green: 80.6 - yellow: 75.3 - blue: 52.3 - magenta: 50.1 - cyan: 74.6 - white: 103.3 - brightBlack: 22.8 - brightRed: 40 - brightGreen: 80.6 - brightYellow: 75.3 - brightBlue: 52.3 - brightMagenta: 50.1 - brightCyan: 74.6 - brightWhite: 103.3 diff --git a/themes/material-theme-twilight-wave-ocean-ui.yaml b/themes/material-theme-twilight-wave-ocean-ui.yaml index afac259c..f281dd5d 100644 --- a/themes/material-theme-twilight-wave-ocean-ui.yaml +++ b/themes/material-theme-twilight-wave-ocean-ui.yaml @@ -2,7 +2,7 @@ name: "Material Theme Twilight Wave Ocean Ui ~" source: marketplace_id: "ZahidNazir.Material-Theme-Twilight-Wave" version: "0.0.3" - installs: 2564 + installs: 2567 author: "Zahid Nazir" repo: "https://github.com/Tactition/Twilight-Wave-VsCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ZahidNazir.Material-Theme-Twilight-Wave" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 67.6 black: 0 diff --git a/themes/material.yaml b/themes/material.yaml index 4bead23e..99b8f2f6 100644 --- a/themes/material.yaml +++ b/themes/material.yaml @@ -2,7 +2,7 @@ name: "Material" source: marketplace_id: "swashata.beautiful-ui" version: "1.7.0" - installs: 121085 + installs: 121108 author: "swashata" repo: "https://github.com/swashata/vscode-beautiful-ui" url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 230 + pair: null contrast: fg: 99.6 black: 0 diff --git a/themes/material1.yaml b/themes/material1.yaml index a2075b90..5868f768 100644 --- a/themes/material1.yaml +++ b/themes/material1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 59.8 black: 0 diff --git a/themes/materialdarker-monokaist3.yaml b/themes/materialdarker-monokaist3.yaml index de781ff4..7e475516 100644 --- a/themes/materialdarker-monokaist3.yaml +++ b/themes/materialdarker-monokaist3.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 103.3 black: 7.6 diff --git a/themes/materialdarkplus.yaml b/themes/materialdarkplus.yaml index 0c5200eb..c6de55e1 100644 --- a/themes/materialdarkplus.yaml +++ b/themes/materialdarkplus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 103.7 black: 0 diff --git a/themes/matey.yaml b/themes/matey.yaml index 1ee478c2..727849e9 100644 --- a/themes/matey.yaml +++ b/themes/matey.yaml @@ -2,7 +2,7 @@ name: "Matey" source: marketplace_id: "arickho.matey-vscode" version: "1.2.5" - installs: 1978 + installs: 1979 author: "Jordan Garcia" repo: "https://github.com/arickho/matey-vscode" url: "https://marketplace.visualstudio.com/items?itemName=arickho.matey-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 265 + pair: null contrast: fg: 72.3 black: 0 diff --git a/themes/matitheme-gotham.yaml b/themes/matitheme-gotham.yaml index 09f6649d..38722e70 100644 --- a/themes/matitheme-gotham.yaml +++ b/themes/matitheme-gotham.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.1 black: 0 diff --git a/themes/matitheme.yaml b/themes/matitheme.yaml index 923a9581..c4258100 100644 --- a/themes/matitheme.yaml +++ b/themes/matitheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 73.6 black: 0 diff --git a/themes/matrix-hacking-dark-theme.yaml b/themes/matrix-hacking-dark-theme.yaml index 94b2a1a7..465d948d 100644 --- a/themes/matrix-hacking-dark-theme.yaml +++ b/themes/matrix-hacking-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Matrix Hacking Dark Theme" source: marketplace_id: "mdmarufsarker.maruf-sarker" version: "0.1.1" - installs: 29145 + installs: 29154 author: "Md. Maruf Sarker" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 231 + pair: null contrast: fg: 55.3 black: 0 diff --git a/themes/matrix.yaml b/themes/matrix.yaml index 79d224a0..ce46ed5a 100644 --- a/themes/matrix.yaml +++ b/themes/matrix.yaml @@ -2,7 +2,7 @@ name: "Matrix" source: marketplace_id: "PabloAndroetto.a-matrix-theme" version: "0.0.3" - installs: 1796 + installs: 1799 author: "Pablo Androetto" repo: "https://github.com/androettop/matrix-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=PabloAndroetto.a-matrix-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 218 + pair: null contrast: fg: 18.5 black: 0 diff --git a/themes/matronator-s-theme.yaml b/themes/matronator-s-theme.yaml index 2783ce66..0c224f3a 100644 --- a/themes/matronator-s-theme.yaml +++ b/themes/matronator-s-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 18 + pair: null contrast: fg: 79.1 black: 13 diff --git a/themes/matte-atelier-ivory.yaml b/themes/matte-atelier-ivory.yaml index a3b5d191..c0ef9b91 100644 --- a/themes/matte-atelier-ivory.yaml +++ b/themes/matte-atelier-ivory.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 85 + pair: null contrast: fg: 90 black: 90 diff --git a/themes/matte-atelier-obsidian-colorblind.yaml b/themes/matte-atelier-obsidian-colorblind.yaml index c269580c..bd8afdb3 100644 --- a/themes/matte-atelier-obsidian-colorblind.yaml +++ b/themes/matte-atelier-obsidian-colorblind.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 81 black: 0 diff --git a/themes/matte-atelier-obsidian-high-contrast.yaml b/themes/matte-atelier-obsidian-high-contrast.yaml index da07f57b..06f6be13 100644 --- a/themes/matte-atelier-obsidian-high-contrast.yaml +++ b/themes/matte-atelier-obsidian-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 95.3 black: 0 diff --git a/themes/matte-atelier-obsidian.yaml b/themes/matte-atelier-obsidian.yaml index 20b92c04..cc55bee5 100644 --- a/themes/matte-atelier-obsidian.yaml +++ b/themes/matte-atelier-obsidian.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 78.6 black: 0 diff --git a/themes/matte-atelier-ros.yaml b/themes/matte-atelier-ros.yaml index 19be78ad..6d3fef5a 100644 --- a/themes/matte-atelier-ros.yaml +++ b/themes/matte-atelier-ros.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 78.3 black: 0 diff --git a/themes/matte-atelier-sapphire.yaml b/themes/matte-atelier-sapphire.yaml index 641ce5ac..210787a9 100644 --- a/themes/matte-atelier-sapphire.yaml +++ b/themes/matte-atelier-sapphire.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 264 + pair: null contrast: fg: 75 black: 0 diff --git a/themes/matte-light-theme.yaml b/themes/matte-light-theme.yaml index 56a258f8..b794bbcd 100644 --- a/themes/matte-light-theme.yaml +++ b/themes/matte-light-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 72.9 black: 89 diff --git a/themes/matteblack.yaml b/themes/matteblack.yaml index 4097a7cb..fe794000 100644 --- a/themes/matteblack.yaml +++ b/themes/matteblack.yaml @@ -2,7 +2,7 @@ name: "MatteBlack" source: marketplace_id: "TahaYVR.matteblack" version: "1.0.2" - installs: 27880 + installs: 27912 author: "Taha YVR" repo: "https://github.com/tahayvr/matte-black-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TahaYVR.matteblack" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 93.6 black: 0 diff --git a/themes/matter.yaml b/themes/matter.yaml index 81652375..fe01e338 100644 --- a/themes/matter.yaml +++ b/themes/matter.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 253 + pair: null contrast: fg: 90.5 black: 22.8 diff --git a/themes/matteric-dark-default.yaml b/themes/matteric-dark-default.yaml index 0bfb90c9..9d56785b 100644 --- a/themes/matteric-dark-default.yaml +++ b/themes/matteric-dark-default.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 56.4 black: 0 diff --git a/themes/mauve-contrast.yaml b/themes/mauve-contrast.yaml index c21fb99b..169b524d 100644 --- a/themes/mauve-contrast.yaml +++ b/themes/mauve-contrast.yaml @@ -1,11 +1,11 @@ name: "mauve-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#191119" fg: "#AF92B2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 326 + pair: null contrast: fg: 47.7 black: 0 diff --git a/themes/mauve-light.yaml b/themes/mauve-light.yaml index 4e4ea1d5..c1a580b3 100644 --- a/themes/mauve-light.yaml +++ b/themes/mauve-light.yaml @@ -1,11 +1,11 @@ name: "mauve-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#372638" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 100.6 black: 0 diff --git a/themes/mauve.yaml b/themes/mauve.yaml index e73e2297..e5906482 100644 --- a/themes/mauve.yaml +++ b/themes/mauve.yaml @@ -1,11 +1,11 @@ name: "mauve" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#372638" fg: "#AF92B2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 325 + pair: null contrast: fg: 44.2 black: 0 diff --git a/themes/mavaia.yaml b/themes/mavaia.yaml index c02674ed..7accbf94 100644 --- a/themes/mavaia.yaml +++ b/themes/mavaia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 104.4 black: 0 diff --git a/themes/max2.yaml b/themes/max2.yaml index cd87c9a7..4093fa18 100644 --- a/themes/max2.yaml +++ b/themes/max2.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 39.8 black: 0 diff --git a/themes/maxsumon.yaml b/themes/maxsumon.yaml index 49696e35..90e7bc51 100644 --- a/themes/maxsumon.yaml +++ b/themes/maxsumon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 65.7 black: 0 diff --git a/themes/mayukai.yaml b/themes/mayukai.yaml index 9bb72f4c..027a47d9 100644 --- a/themes/mayukai.yaml +++ b/themes/mayukai.yaml @@ -1,49 +1,50 @@ name: "Mayukai" source: - marketplace_id: "GulajavaMinistudio.mayukaithemevsc" - version: "3.2.5" - installs: 359345 - author: "GulajavaMinistudio" - repo: "https://github.com/GulajavaMinistudio/Mayukai-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=GulajavaMinistudio.mayukaithemevsc" + marketplace_id: "rafaelburghausen.rafa-theme" + version: "3.0.6" + installs: 1204 + author: "rafaelburghausen" + repo: "https://github.com/marcos-burghausen/Extensao-Rafa" + url: "https://marketplace.visualstudio.com/items?itemName=rafaelburghausen.rafa-theme" colors: - bg: "#0D1016" - fg: "#DADBC0" - black: "#01060E" - red: "#EA6C73" - green: "#91B362" - yellow: "#F9AF4F" + bg: "#141824" + fg: "#CBCEBC" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" blue: "#95E6CB" - magenta: "#FAE994" - cyan: "#90E1C6" + magenta: "#CFBAFA" + cyan: "#95E6CB" white: "#C7C7C7" brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#C2D94C" - brightYellow: "#FFB454" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" brightBlue: "#95E6CB" - brightMagenta: "#FFEE99" + brightMagenta: "#D4BFFF" brightCyan: "#95E6CB" brightWhite: "#FFFFFF" meta: mode: "dark" accent: "green" - hue: 264 + hue: 270 + pair: null contrast: - fg: 83.1 + fg: 74.6 black: 0 - red: 44.6 - green: 54.8 - yellow: 67.2 - blue: 81.4 - magenta: 92.6 - cyan: 78.4 - white: 72.3 - brightBlack: 23.5 - brightRed: 47.2 - brightGreen: 76.5 - brightYellow: 70.1 - brightBlue: 81.4 - brightMagenta: 95.8 - brightCyan: 81.4 - brightWhite: 107.4 + red: 50.2 + green: 67.3 + yellow: 80.3 + blue: 80.7 + magenta: 69.9 + cyan: 80.7 + white: 71.5 + brightBlack: 22.7 + brightRed: 52.7 + brightGreen: 81.8 + brightYellow: 83.4 + brightBlue: 80.7 + brightMagenta: 72.8 + brightCyan: 80.7 + brightWhite: 106.7 diff --git a/themes/mazda-rx7-theme.yaml b/themes/mazda-rx7-theme.yaml index 2079894d..8dcdcc22 100644 --- a/themes/mazda-rx7-theme.yaml +++ b/themes/mazda-rx7-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 64.2 black: 0 diff --git a/themes/mbp.yaml b/themes/mbp.yaml index 12bfecf6..d5be2d09 100644 --- a/themes/mbp.yaml +++ b/themes/mbp.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 303 + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/mcdark-theme.yaml b/themes/mcdark-theme.yaml index d3f56fbd..7fd4dd1f 100644 --- a/themes/mcdark-theme.yaml +++ b/themes/mcdark-theme.yaml @@ -2,7 +2,7 @@ name: "McDark Theme" source: marketplace_id: "mcd005.mcdark-theme" version: "1.0.2" - installs: 1184 + installs: 1185 author: "Jamie McDonald" repo: "https://github.com/mcd005/mcdark-theme" url: "https://marketplace.visualstudio.com/items?itemName=mcd005.mcdark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 258 + pair: null contrast: fg: 77.5 black: 13.1 diff --git a/themes/mcdonalds-theme.yaml b/themes/mcdonalds-theme.yaml index 9aa7d4cf..43a15dbc 100644 --- a/themes/mcdonalds-theme.yaml +++ b/themes/mcdonalds-theme.yaml @@ -2,7 +2,7 @@ name: "McDonalds Theme" source: marketplace_id: "OttonielMatheus.mcdonalds-theme" version: "0.0.1" - installs: 4586 + installs: 4588 author: "Ottoniel Matheus" repo: null url: "https://marketplace.visualstudio.com/items?itemName=OttonielMatheus.mcdonalds-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 29 + pair: null contrast: fg: 91.3 black: 0 diff --git a/themes/mcyoda-s-light-theme.yaml b/themes/mcyoda-s-light-theme.yaml index 6aef57b1..bcb66963 100644 --- a/themes/mcyoda-s-light-theme.yaml +++ b/themes/mcyoda-s-light-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 103 black: 103 diff --git a/themes/md-abdur-rakib.yaml b/themes/md-abdur-rakib.yaml index 254bd540..24a4d251 100644 --- a/themes/md-abdur-rakib.yaml +++ b/themes/md-abdur-rakib.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 287 + pair: null contrast: fg: 87.1 black: 0 diff --git a/themes/meaow-dark.yaml b/themes/meaow-dark.yaml index 30b7317c..1418e972 100644 --- a/themes/meaow-dark.yaml +++ b/themes/meaow-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 64.8 black: 0 diff --git a/themes/mecha-01.yaml b/themes/mecha-01.yaml index d8869895..102c7134 100644 --- a/themes/mecha-01.yaml +++ b/themes/mecha-01.yaml @@ -2,7 +2,7 @@ name: "MECHA.01" source: marketplace_id: "Bytemore.mecha-01" version: "0.12.0" - installs: 3197 + installs: 3199 author: "Bytemore" repo: "https://github.com/gianmazzoran/mecha-01" url: "https://marketplace.visualstudio.com/items?itemName=Bytemore.mecha-01" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 289 + pair: null contrast: fg: 78.8 black: 0 diff --git a/themes/mega-green.yaml b/themes/mega-green.yaml index 96a8c464..a9c7b1d4 100644 --- a/themes/mega-green.yaml +++ b/themes/mega-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 161 + pair: null contrast: fg: 59.3 black: 0 diff --git a/themes/meitnerium-theme.yaml b/themes/meitnerium-theme.yaml index f34be6b3..124e9d2a 100644 --- a/themes/meitnerium-theme.yaml +++ b/themes/meitnerium-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 248 + pair: null contrast: fg: 102 black: 9 diff --git a/themes/mel.yaml b/themes/mel.yaml index 3b7848df..104552cb 100644 --- a/themes/mel.yaml +++ b/themes/mel.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/melancholy.yaml b/themes/melancholy.yaml index 75553342..5a601cbb 100644 --- a/themes/melancholy.yaml +++ b/themes/melancholy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 16.8 black: 0 diff --git a/themes/melange-redux-light.yaml b/themes/melange-redux-light.yaml index 25256612..743cf243 100644 --- a/themes/melange-redux-light.yaml +++ b/themes/melange-redux-light.yaml @@ -1,11 +1,11 @@ name: "Melange Redux: Light" source: - marketplace_id: "rtud.melange-redux" - version: "0.2.1" - installs: 1805 - author: "rtud" - repo: "https://github.com/rtud/melange-redux" - url: "https://marketplace.visualstudio.com/items?itemName=rtud.melange-redux" + marketplace_id: "fostertheweb.melange-redux-iterum" + version: "0.2.7" + installs: 416 + author: "fostertheweb" + repo: "https://github.com/fostertheweb/melange-redux" + url: "https://marketplace.visualstudio.com/items?itemName=fostertheweb.melange-redux-iterum" colors: bg: "#F1F1F1" fg: "#423324" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Melange Redux: Dark" contrast: fg: 89.4 black: 68.4 diff --git a/themes/melcr.yaml b/themes/melcr.yaml index 94772a17..482dd538 100644 --- a/themes/melcr.yaml +++ b/themes/melcr.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 230 + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/melee-island.yaml b/themes/melee-island.yaml index e0d12d12..20463b43 100644 --- a/themes/melee-island.yaml +++ b/themes/melee-island.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 267 + pair: null contrast: fg: 51.7 black: 0 diff --git a/themes/mellow-contrast.yaml b/themes/mellow-contrast.yaml index 690a53ba..7a1f6a62 100644 --- a/themes/mellow-contrast.yaml +++ b/themes/mellow-contrast.yaml @@ -1,11 +1,11 @@ name: "mellow-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0B0A09" fg: "#F8F8F2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 102.8 black: 0 diff --git a/themes/mellow-light.yaml b/themes/mellow-light.yaml index 5bc052e5..ae2a05cd 100644 --- a/themes/mellow-light.yaml +++ b/themes/mellow-light.yaml @@ -1,11 +1,11 @@ name: "mellow-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#555555" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 85.9 black: 0 diff --git a/themes/mellow.yaml b/themes/mellow.yaml index 0cfa3822..f93ff7c8 100644 --- a/themes/mellow.yaml +++ b/themes/mellow.yaml @@ -1,11 +1,11 @@ name: "Mellow" source: - marketplace_id: "kvrohit.mellow-theme" - version: "0.0.1" - installs: 1491 - author: "Rohit K Viswanath" - repo: "https://github.com/kvrohit/mellow-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kvrohit.mellow-theme" + marketplace_id: "Umi-l.mellow-minimal-theme" + version: "0.0.2" + installs: 608 + author: "Umi-l" + repo: "https://github.com/Umi-L/mellow-minimal" + url: "https://marketplace.visualstudio.com/items?itemName=Umi-l.mellow-minimal-theme" colors: bg: "#161617" fg: "#C9C7CD" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 72.3 black: 0 diff --git a/themes/melokai.yaml b/themes/melokai.yaml index 0cbd6362..1614f07d 100644 --- a/themes/melokai.yaml +++ b/themes/melokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 100.8 black: 0 diff --git a/themes/meloncode.yaml b/themes/meloncode.yaml index 8e7d2c36..0f38c9c6 100644 --- a/themes/meloncode.yaml +++ b/themes/meloncode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 18 + pair: null contrast: fg: 89 black: 25.3 diff --git a/themes/melyon-blue.yaml b/themes/melyon-blue.yaml index 77e0fa45..b0619555 100644 --- a/themes/melyon-blue.yaml +++ b/themes/melyon-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 267 + pair: null contrast: fg: 55.6 black: 0 diff --git a/themes/melyon.yaml b/themes/melyon.yaml index cc369eb0..48afaa1f 100644 --- a/themes/melyon.yaml +++ b/themes/melyon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 267 + pair: null contrast: fg: 55.6 black: 0 diff --git a/themes/menelik.yaml b/themes/menelik.yaml index 76602622..0a67c368 100644 --- a/themes/menelik.yaml +++ b/themes/menelik.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.3 black: 0 diff --git a/themes/meoceanblackbarry.yaml b/themes/meoceanblackbarry.yaml deleted file mode 100644 index f7000a3c..00000000 --- a/themes/meoceanblackbarry.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "MeOceanBlackbarry" -source: - marketplace_id: "JaianeOliveira.meoceanthemes" - version: "0.0.5" - installs: 9230 - author: "Jaiane Oliveira" - repo: "https://github.com/JaianeOliveira/meocean-themes" - url: "https://marketplace.visualstudio.com/items?itemName=JaianeOliveira.meoceanthemes" -colors: - bg: "#1F1F1F" - fg: "#F1F1F1" - black: "#000000" - red: "#E20E4A" - green: "#3FB48D" - yellow: "#E5B010" - blue: "#7066B6" - magenta: "#A469CF" - cyan: "#5AC2D3" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#FF0C51" - brightGreen: "#57FFC7" - brightYellow: "#FFC71F" - brightBlue: "#8F80FF" - brightMagenta: "#CA82FF" - brightCyan: "#67EAFF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 96.7 - black: 0 - red: 29 - green: 49.8 - yellow: 62.2 - blue: 25.7 - magenta: 34.3 - cyan: 59.9 - white: 89 - brightBlack: 21.1 - brightRed: 36.2 - brightGreen: 88.9 - brightYellow: 75.6 - brightBlue: 41.6 - brightMagenta: 49.8 - brightCyan: 81.5 - brightWhite: 89 diff --git a/themes/meoceangray.yaml b/themes/meoceangray.yaml index ca7a5214..dcb05768 100644 --- a/themes/meoceangray.yaml +++ b/themes/meoceangray.yaml @@ -1,11 +1,11 @@ name: "MeOceanGray" source: - marketplace_id: "JaianeOliveira.meoceanthemes" - version: "0.0.5" - installs: 9230 + marketplace_id: "JaianeOliveira.meoceangray" + version: "0.0.1" + installs: 1 author: "Jaiane Oliveira" - repo: "https://github.com/JaianeOliveira/meocean-themes" - url: "https://marketplace.visualstudio.com/items?itemName=JaianeOliveira.meoceanthemes" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JaianeOliveira.meoceangray" colors: bg: "#1F1F1F" fg: "#F1F1F1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 96.7 black: 0 diff --git a/themes/mesalvo-cortex.yaml b/themes/mesalvo-cortex.yaml index a4e32307..a1942c2e 100644 --- a/themes/mesalvo-cortex.yaml +++ b/themes/mesalvo-cortex.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 200 + pair: null contrast: fg: 104.2 black: 0 diff --git a/themes/meshvoid-light.yaml b/themes/meshvoid-light.yaml index 93fe5ff9..fc8fb9bb 100644 --- a/themes/meshvoid-light.yaml +++ b/themes/meshvoid-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 56.6 black: 56.6 diff --git a/themes/meshvoid.yaml b/themes/meshvoid.yaml index e3e42010..3784ee8e 100644 --- a/themes/meshvoid.yaml +++ b/themes/meshvoid.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.3 black: 12.5 diff --git a/themes/meteora.yaml b/themes/meteora.yaml index 61bd6665..b1db45c7 100644 --- a/themes/meteora.yaml +++ b/themes/meteora.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 60 black: 0 diff --git a/themes/metropolis-light.yaml b/themes/metropolis-light.yaml index b7383c85..22a62821 100644 --- a/themes/metropolis-light.yaml +++ b/themes/metropolis-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 92.5 black: 92.5 diff --git a/themes/metropolis.yaml b/themes/metropolis.yaml index 69de16a0..5f7fb18e 100644 --- a/themes/metropolis.yaml +++ b/themes/metropolis.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 237 + pair: null contrast: fg: 69.9 black: 0 diff --git a/themes/mgldvd-theme.yaml b/themes/mgldvd-theme.yaml index 226aaff7..c81afda0 100644 --- a/themes/mgldvd-theme.yaml +++ b/themes/mgldvd-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 66.6 black: 97.1 diff --git a/themes/mh-theme.yaml b/themes/mh-theme.yaml index 55b2d1d5..c8d3c049 100644 --- a/themes/mh-theme.yaml +++ b/themes/mh-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 79.9 black: 0 diff --git a/themes/mhfeizi.yaml b/themes/mhfeizi.yaml index e324894d..2173755c 100644 --- a/themes/mhfeizi.yaml +++ b/themes/mhfeizi.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.6 black: 0 diff --git a/themes/mi4uokai.yaml b/themes/mi4uokai.yaml index f3715057..01308f28 100644 --- a/themes/mi4uokai.yaml +++ b/themes/mi4uokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 230 + pair: null contrast: fg: 100.9 black: 0 diff --git a/themes/miami-vice.yaml b/themes/miami-vice.yaml index 71af2eab..0d2939af 100644 --- a/themes/miami-vice.yaml +++ b/themes/miami-vice.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 217 + pair: null contrast: fg: 79.6 black: 0 diff --git a/themes/miami-wind.yaml b/themes/miami-wind.yaml index e3ea36b9..bc9f36dc 100644 --- a/themes/miami-wind.yaml +++ b/themes/miami-wind.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 284 + pair: null contrast: fg: 80 black: 0 diff --git a/themes/miasma-color-theme.yaml b/themes/miasma-color-theme.yaml index 315fd7b8..17da8f7f 100644 --- a/themes/miasma-color-theme.yaml +++ b/themes/miasma-color-theme.yaml @@ -1,49 +1,50 @@ name: "miasma-color-theme" source: - marketplace_id: "wavebeem.miasma-vscode" - version: "0.2.0" - installs: 1166 + marketplace_id: "wavebeem.four-sages-vscode" + version: "1.0.0" + installs: 208 author: "Sage Fennel" - repo: "https://github.com/wavebeem/miasma-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.miasma-vscode" + repo: "https://github.com/wavebeem/four-sages-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.four-sages-vscode" colors: - bg: "#12362A" - fg: "#A8F0D8" - black: "#295647" - red: "#F28C9D" - green: "#BEF76E" - yellow: "#F09E75" - blue: "#86ACF9" - magenta: "#E18CF2" - cyan: "#6EF7F7" - white: "#EDE3DE" - brightBlack: "#295647" - brightRed: "#F28C9D" - brightGreen: "#BEF76E" - brightYellow: "#F09E75" - brightBlue: "#86ACF9" - brightMagenta: "#E18CF2" - brightCyan: "#6EF7F7" - brightWhite: "#EDE3DE" + bg: "#223130" + fg: "#C0D2D0" + black: "#23504E" + red: "#FF95A9" + green: "#81D943" + yellow: "#FF9C75" + blue: "#8FBEFF" + magenta: "#F58EFF" + cyan: "#00DDD4" + white: "#FFFFFF" + brightBlack: "#23504E" + brightRed: "#FF95A9" + brightGreen: "#81D943" + brightYellow: "#FF9C75" + brightBlue: "#8FBEFF" + brightMagenta: "#F58EFF" + brightCyan: "#00DDD4" + brightWhite: "#FFFFFF" meta: mode: "dark" accent: "green" - hue: 168 + hue: 191 + pair: null contrast: - fg: 83.6 - black: 8.3 - red: 51.2 - green: 86.2 - yellow: 55.4 - blue: 52.4 - magenta: 52.3 - cyan: 84.6 - white: 85.7 - brightBlack: 8.3 - brightRed: 51.2 - brightGreen: 86.2 - brightYellow: 55.4 - brightBlue: 52.4 - brightMagenta: 52.3 - brightCyan: 84.6 - brightWhite: 85.7 + fg: 72.3 + black: 0 + red: 57.3 + green: 66 + yellow: 58 + blue: 61.3 + magenta: 57.8 + cyan: 68.2 + white: 103.2 + brightBlack: 0 + brightRed: 57.3 + brightGreen: 66 + brightYellow: 58 + brightBlue: 61.3 + brightMagenta: 57.8 + brightCyan: 68.2 + brightWhite: 103.2 diff --git a/themes/mibtema.yaml b/themes/mibtema.yaml index b26736f9..c89fe347 100644 --- a/themes/mibtema.yaml +++ b/themes/mibtema.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 275 + pair: null contrast: fg: 75.9 black: 0 diff --git a/themes/micky-dark-black.yaml b/themes/micky-dark-black.yaml index f9fa794f..9005d5fd 100644 --- a/themes/micky-dark-black.yaml +++ b/themes/micky-dark-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 60.2 black: 0 diff --git a/themes/micky-dark-lite-black.yaml b/themes/micky-dark-lite-black.yaml index 18c388c3..5dc64ae9 100644 --- a/themes/micky-dark-lite-black.yaml +++ b/themes/micky-dark-lite-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 58.1 black: 0 diff --git a/themes/micky-dark-lite.yaml b/themes/micky-dark-lite.yaml index ec49625a..93260c7b 100644 --- a/themes/micky-dark-lite.yaml +++ b/themes/micky-dark-lite.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 275 + pair: null contrast: fg: 58.5 black: 0 diff --git a/themes/midas-touch-light.yaml b/themes/midas-touch-light.yaml index 2a679958..63f2610f 100644 --- a/themes/midas-touch-light.yaml +++ b/themes/midas-touch-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 77.2 black: 23.6 diff --git a/themes/midas-touch.yaml b/themes/midas-touch.yaml index 3b13de10..dea1ee83 100644 --- a/themes/midas-touch.yaml +++ b/themes/midas-touch.yaml @@ -1,49 +1,50 @@ -name: "Midas Touch" +name: "Midas-Touch" source: - marketplace_id: "vshakitskiy.midas-touch" - version: "1.0.0" - installs: 70 - author: "vshakitskiy" - repo: "https://github.com/vshakitskiy/midas_touch" - url: "https://marketplace.visualstudio.com/items?itemName=vshakitskiy.midas-touch" + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" colors: - bg: "#101010" - fg: "#FFE3EB" - black: "#181818" - red: "#F38BA8" - green: "#A6E3A1" - yellow: "#F9E2AF" - blue: "#89B4FA" - magenta: "#F5C2E7" - cyan: "#94E2D5" - white: "#CDD6F4" - brightBlack: "#6C7086" - brightRed: "#F38BA8" - brightGreen: "#A6E3A1" - brightYellow: "#F9E2AF" - brightBlue: "#89B4FA" - brightMagenta: "#F5C2E7" - brightCyan: "#94E2D5" - brightWhite: "#BAC2DE" + bg: "#0C0A09" + fg: "#FAFAF9" + black: "#0C0A09" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FACC15" + magenta: "#FACC15" + cyan: "#29C3A0" + white: "#FAFAF9" + brightBlack: "#0C0A09" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FACC15" + brightMagenta: "#FACC15" + brightCyan: "#29C3A0" + brightWhite: "#FAFAF9" meta: mode: "dark" - accent: "red" + accent: "green" hue: null + pair: null contrast: - fg: 93.7 + fg: 104.4 black: 0 - red: 56.3 - green: 80 - yellow: 90 - blue: 60.7 - magenta: 78.3 - cyan: 79.9 - white: 81.6 - brightBlack: 27.4 - brightRed: 56.3 - brightGreen: 80 - brightYellow: 90 - brightBlue: 60.7 - brightMagenta: 78.3 - brightCyan: 79.9 - brightWhite: 69.7 + red: 10.2 + green: 58.5 + yellow: 52.5 + blue: 78.6 + magenta: 78.6 + cyan: 58.5 + white: 104.4 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.5 + brightBlue: 78.6 + brightMagenta: 78.6 + brightCyan: 58.5 + brightWhite: 104.4 diff --git a/themes/midcentury.yaml b/themes/midcentury.yaml index ca038565..5ea1c52b 100644 --- a/themes/midcentury.yaml +++ b/themes/midcentury.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 25 + pair: null contrast: fg: 91 black: 0 diff --git a/themes/midight-sun.yaml b/themes/midight-sun.yaml index 48e3c29e..e5ce34ae 100644 --- a/themes/midight-sun.yaml +++ b/themes/midight-sun.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 238 + pair: null contrast: fg: 79.6 black: 0 diff --git a/themes/midnight-blueprint.yaml b/themes/midnight-blueprint.yaml index b3a57079..fa7c59bf 100644 --- a/themes/midnight-blueprint.yaml +++ b/themes/midnight-blueprint.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 270 + pair: null contrast: fg: 60 black: 0 diff --git a/themes/midnight-breeze.yaml b/themes/midnight-breeze.yaml index 8d0586ed..fb3900ba 100644 --- a/themes/midnight-breeze.yaml +++ b/themes/midnight-breeze.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 278 + pair: null contrast: fg: 84.5 black: 0 diff --git a/themes/midnight-candy.yaml b/themes/midnight-candy.yaml index 4970f433..6b220854 100644 --- a/themes/midnight-candy.yaml +++ b/themes/midnight-candy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 267 + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/midnight-city.yaml b/themes/midnight-city.yaml index 27f0e1f4..ba8cb856 100644 --- a/themes/midnight-city.yaml +++ b/themes/midnight-city.yaml @@ -1,11 +1,11 @@ name: "Midnight City" source: - marketplace_id: "dillonchanis.midnight-city" - version: "0.6.0" - installs: 44289 - author: "Dillon Chanis" - repo: "https://github.com/dillonchanis/theme-midnight-city" - url: "https://marketplace.visualstudio.com/items?itemName=dillonchanis.midnight-city" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#0D011E" fg: "#FFFFD8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 300 + pair: null contrast: fg: 106 black: 0 diff --git a/themes/midnight-color-theme.yaml b/themes/midnight-color-theme.yaml index 2807b443..6454fa3e 100644 --- a/themes/midnight-color-theme.yaml +++ b/themes/midnight-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 296 + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/midnight-darker.yaml b/themes/midnight-darker.yaml index ff7a5468..d4fea0a4 100644 --- a/themes/midnight-darker.yaml +++ b/themes/midnight-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 58.5 black: 7.9 diff --git a/themes/midnight-dracula.yaml b/themes/midnight-dracula.yaml index 644ea739..73b10d2a 100644 --- a/themes/midnight-dracula.yaml +++ b/themes/midnight-dracula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/midnight-embers.yaml b/themes/midnight-embers.yaml index a475c09c..4b0a6c96 100644 --- a/themes/midnight-embers.yaml +++ b/themes/midnight-embers.yaml @@ -2,7 +2,7 @@ name: "Midnight Embers" source: marketplace_id: "ShadowSlayer.midnightembers" version: "1.0.0" - installs: 158 + installs: 159 author: "ShadowSlayer" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ShadowSlayer.midnightembers" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 14.8 black: 0 diff --git a/themes/midnight-fusion.yaml b/themes/midnight-fusion.yaml index b8a377a6..ed5fa5b2 100644 --- a/themes/midnight-fusion.yaml +++ b/themes/midnight-fusion.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 42.8 black: 0 diff --git a/themes/midnight-gambler.yaml b/themes/midnight-gambler.yaml index 21634e7a..16f98bba 100644 --- a/themes/midnight-gambler.yaml +++ b/themes/midnight-gambler.yaml @@ -2,7 +2,7 @@ name: "Midnight Gambler" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 103.3 black: 0 diff --git a/themes/midnight-grove.yaml b/themes/midnight-grove.yaml index e2e374a2..9411f673 100644 --- a/themes/midnight-grove.yaml +++ b/themes/midnight-grove.yaml @@ -2,7 +2,7 @@ name: "Midnight Grove" source: marketplace_id: "lela.midnight-grove" version: "1.0.1" - installs: 12 + installs: 13 author: "lela" repo: "https://github.com/lelamanolio/midnight-grove-vstheme" url: "https://marketplace.visualstudio.com/items?itemName=lela.midnight-grove" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 171 + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/midnight-guest.yaml b/themes/midnight-guest.yaml index 99339d5b..7cda9a33 100644 --- a/themes/midnight-guest.yaml +++ b/themes/midnight-guest.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 283 + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/midnight-lake.yaml b/themes/midnight-lake.yaml index 07eddce8..da40b1cb 100644 --- a/themes/midnight-lake.yaml +++ b/themes/midnight-lake.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 82.9 black: 0 diff --git a/themes/midnight-marina.yaml b/themes/midnight-marina.yaml index ce57cd0c..53a1e91e 100644 --- a/themes/midnight-marina.yaml +++ b/themes/midnight-marina.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 244 + pair: null contrast: fg: 83.5 black: 8.2 diff --git a/themes/midnight-mirage.yaml b/themes/midnight-mirage.yaml index d22e80ce..f9beec52 100644 --- a/themes/midnight-mirage.yaml +++ b/themes/midnight-mirage.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 242 + pair: null contrast: fg: 78.1 black: 0 diff --git a/themes/midnight-monokai.yaml b/themes/midnight-monokai.yaml index c03813c2..0e8bda6d 100644 --- a/themes/midnight-monokai.yaml +++ b/themes/midnight-monokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85.6 black: 0 diff --git a/themes/midnight-moon-eclipse.yaml b/themes/midnight-moon-eclipse.yaml index d0884436..8f327a1e 100644 --- a/themes/midnight-moon-eclipse.yaml +++ b/themes/midnight-moon-eclipse.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 277 + pair: null contrast: fg: 87.5 black: 0 diff --git a/themes/midnight-moon-ukiyo.yaml b/themes/midnight-moon-ukiyo.yaml index b99ecbb4..e4e4cc6a 100644 --- a/themes/midnight-moon-ukiyo.yaml +++ b/themes/midnight-moon-ukiyo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/midnight-moon.yaml b/themes/midnight-moon.yaml index e1356104..a595d7d0 100644 --- a/themes/midnight-moon.yaml +++ b/themes/midnight-moon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 273 + pair: null contrast: fg: 77.7 black: 13.2 diff --git a/themes/midnight-pastel.yaml b/themes/midnight-pastel.yaml index c434dbd8..64847ab6 100644 --- a/themes/midnight-pastel.yaml +++ b/themes/midnight-pastel.yaml @@ -2,7 +2,7 @@ name: "Midnight Pastel" source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" - installs: 3734 + installs: 3736 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 105.6 black: 0 diff --git a/themes/midnight-pro.yaml b/themes/midnight-pro.yaml index 00942fcf..d52b5390 100644 --- a/themes/midnight-pro.yaml +++ b/themes/midnight-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 262 + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/midnight-purple-deep.yaml b/themes/midnight-purple-deep.yaml index a3cb42a8..3eab297c 100644 --- a/themes/midnight-purple-deep.yaml +++ b/themes/midnight-purple-deep.yaml @@ -2,7 +2,7 @@ name: "Midnight Purple Deep" source: marketplace_id: "bxstars-code.midnight-purple-dark-theme" version: "1.1.3" - installs: 19 + installs: 20 author: "Barbara_Xavier" repo: "https://github.com/bxstars/midnight-purple-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=bxstars-code.midnight-purple-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 91.7 black: 0 diff --git a/themes/midnight-purple.yaml b/themes/midnight-purple.yaml index e23fb409..20af2ed4 100644 --- a/themes/midnight-purple.yaml +++ b/themes/midnight-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 297 + pair: null contrast: fg: 49.5 black: 0 diff --git a/themes/midnight-rainbow.yaml b/themes/midnight-rainbow.yaml index 9ab1d4c7..14b0a814 100644 --- a/themes/midnight-rainbow.yaml +++ b/themes/midnight-rainbow.yaml @@ -2,7 +2,7 @@ name: "Midnight Rainbow" source: marketplace_id: "parallaxshiftdj.midnightrainbow" version: "1.0.11" - installs: 2334 + installs: 2335 author: "Parallax Shift" repo: null url: "https://marketplace.visualstudio.com/items?itemName=parallaxshiftdj.midnightrainbow" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 301 + pair: null contrast: fg: 107.8 black: 107.8 diff --git a/themes/midnight-rose-theme.yaml b/themes/midnight-rose-theme.yaml index 93b14f84..5e16aaee 100644 --- a/themes/midnight-rose-theme.yaml +++ b/themes/midnight-rose-theme.yaml @@ -2,7 +2,7 @@ name: "Midnight Rose Theme" source: marketplace_id: "nathan-dev.midnight-rose-theme" version: "1.1.4" - installs: 115 + installs: 119 author: "Nathan-extension" repo: "https://github.com/nathan/rose-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=nathan-dev.midnight-rose-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 88.4 black: 0 diff --git a/themes/midnight-sapphire.yaml b/themes/midnight-sapphire.yaml index 73d965eb..4c56809d 100644 --- a/themes/midnight-sapphire.yaml +++ b/themes/midnight-sapphire.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 106 black: 13.8 diff --git a/themes/midnight-theme-light-soft.yaml b/themes/midnight-theme-light-soft.yaml index 1cb5dc39..da0ecccf 100644 --- a/themes/midnight-theme-light-soft.yaml +++ b/themes/midnight-theme-light-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 87.4 black: 93.2 diff --git a/themes/midnight-theme-light.yaml b/themes/midnight-theme-light.yaml index 3b0261e1..8ee7a593 100644 --- a/themes/midnight-theme-light.yaml +++ b/themes/midnight-theme-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 96.5 black: 102.2 diff --git a/themes/midnight-theme.yaml b/themes/midnight-theme.yaml index 055f314d..9671c536 100644 --- a/themes/midnight-theme.yaml +++ b/themes/midnight-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/midnight-ukiyo.yaml b/themes/midnight-ukiyo.yaml index 9c755c50..69474674 100644 --- a/themes/midnight-ukiyo.yaml +++ b/themes/midnight-ukiyo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/midnight-z.yaml b/themes/midnight-z.yaml index de8ddb06..95ef73d7 100644 --- a/themes/midnight-z.yaml +++ b/themes/midnight-z.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/midnightblue.yaml b/themes/midnightblue.yaml index f370110d..ca243950 100644 --- a/themes/midnightblue.yaml +++ b/themes/midnightblue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 265 + pair: null contrast: fg: 89.3 black: 0 diff --git a/themes/midnightglow.yaml b/themes/midnightglow.yaml index 925ef53e..b6cce478 100644 --- a/themes/midnightglow.yaml +++ b/themes/midnightglow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 279 + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/midt.yaml b/themes/midt.yaml index 969b7300..7632a504 100644 --- a/themes/midt.yaml +++ b/themes/midt.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 308 + pair: null contrast: fg: 104.6 black: 0 diff --git a/themes/mihari-bordered.yaml b/themes/mihari-bordered.yaml index 54ab72f4..40a7e02d 100644 --- a/themes/mihari-bordered.yaml +++ b/themes/mihari-bordered.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 239 + pair: null contrast: fg: 72.8 black: 0 diff --git a/themes/mihari.yaml b/themes/mihari.yaml index 2aeb2a16..fe70b8bc 100644 --- a/themes/mihari.yaml +++ b/themes/mihari.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 239 + pair: null contrast: fg: 72.8 black: 0 diff --git a/themes/mike-sources-green-crt.yaml b/themes/mike-sources-green-crt.yaml index c5b82817..36418536 100644 --- a/themes/mike-sources-green-crt.yaml +++ b/themes/mike-sources-green-crt.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 138 + pair: null contrast: fg: 55.8 black: 85.7 diff --git a/themes/mike-sources-yellowstone.yaml b/themes/mike-sources-yellowstone.yaml index 7984020b..1e78dce4 100644 --- a/themes/mike-sources-yellowstone.yaml +++ b/themes/mike-sources-yellowstone.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: 85 + pair: null contrast: fg: 76 black: 76 diff --git a/themes/mikes-vscode-theme-1.yaml b/themes/mikes-vscode-theme-1.yaml index b3e590e9..860727a5 100644 --- a/themes/mikes-vscode-theme-1.yaml +++ b/themes/mikes-vscode-theme-1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: null contrast: fg: 57.2 black: 0 diff --git a/themes/miku-code-fusion-light.yaml b/themes/miku-code-fusion-light.yaml index d1d98199..3b446220 100644 --- a/themes/miku-code-fusion-light.yaml +++ b/themes/miku-code-fusion-light.yaml @@ -1,11 +1,11 @@ name: "Miku Code Fusion Light" source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1834 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + marketplace_id: "biglexj.miku-code" + version: "1.3.6" + installs: 2157 + author: "biglexj" + repo: "https://github.com/biglexj/miku-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=biglexj.miku-code" colors: bg: "#FFFFFF" fg: "#0891B2" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 63.8 black: 101.5 diff --git a/themes/miku-code-light.yaml b/themes/miku-code-light.yaml index 87439b15..06e55c1a 100644 --- a/themes/miku-code-light.yaml +++ b/themes/miku-code-light.yaml @@ -1,11 +1,11 @@ name: "Miku Code Light" source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1834 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + marketplace_id: "biglexj.miku-code" + version: "1.3.6" + installs: 2157 + author: "biglexj" + repo: "https://github.com/biglexj/miku-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=biglexj.miku-code" colors: bg: "#FFFFFF" fg: "#29CCD0" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 37.6 black: 101.5 diff --git a/themes/miku-code.yaml b/themes/miku-code.yaml index fa782c81..d5945fec 100644 --- a/themes/miku-code.yaml +++ b/themes/miku-code.yaml @@ -1,11 +1,11 @@ name: "Miku Code" source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1834 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + marketplace_id: "biglexj.miku-code" + version: "1.3.6" + installs: 2157 + author: "biglexj" + repo: "https://github.com/biglexj/miku-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=biglexj.miku-code" colors: bg: "#1A1B26" fg: "#7DCFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 70.5 black: 59.3 diff --git a/themes/milianor-theme.yaml b/themes/milianor-theme.yaml index ad0f16dd..f4e6ac67 100644 --- a/themes/milianor-theme.yaml +++ b/themes/milianor-theme.yaml @@ -1,13 +1,13 @@ name: "Milianor Theme" source: - marketplace_id: "MaxMilianoDelCantoQuezada.triage-theme" - version: "4.0.7" - installs: 13 + marketplace_id: "MaxMilianoDelCantoQuezada.milianor-theme" + version: "4.0.8" + installs: 163 author: "Max Miliano" - repo: "https://github.com/maxmx03/vscode-triage-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MaxMilianoDelCantoQuezada.triage-theme" + repo: "https://github.com/maxmx03/milianor-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MaxMilianoDelCantoQuezada.milianor-theme" colors: - bg: "#282C4D" + bg: "#2B2E4A" fg: "#F6EFEB" black: "#000000" red: "#E84A5F" @@ -28,22 +28,23 @@ colors: meta: mode: "dark" accent: "green" - hue: 277 + hue: 278 + pair: null contrast: - fg: 93.3 + fg: 93 black: 0 - red: 32.7 - green: 79.7 - yellow: 73.7 - blue: 32 - magenta: 70.1 - cyan: 86.7 - white: 86.7 - brightBlack: 18.2 - brightRed: 48.6 - brightGreen: 84.6 - brightYellow: 94.6 - brightBlue: 83.7 - brightMagenta: 70.1 - brightCyan: 96 - brightWhite: 86.2 + red: 32.4 + green: 79.4 + yellow: 73.4 + blue: 31.6 + magenta: 69.8 + cyan: 86.4 + white: 86.4 + brightBlack: 17.9 + brightRed: 48.2 + brightGreen: 84.3 + brightYellow: 94.3 + brightBlue: 83.4 + brightMagenta: 69.8 + brightCyan: 95.6 + brightWhite: 85.8 diff --git a/themes/military-fork.yaml b/themes/military-fork.yaml index 3a6dab03..44638f57 100644 --- a/themes/military-fork.yaml +++ b/themes/military-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 138 + pair: null contrast: fg: 68.3 black: 0 diff --git a/themes/milkyway.yaml b/themes/milkyway.yaml index e6c23ce8..ea37bf32 100644 --- a/themes/milkyway.yaml +++ b/themes/milkyway.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 72 black: 0 diff --git a/themes/mimesis-dark.yaml b/themes/mimesis-dark.yaml index 1e195b3a..67a13554 100644 --- a/themes/mimesis-dark.yaml +++ b/themes/mimesis-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Mimesis Light" contrast: fg: 92.9 black: 0 diff --git a/themes/mimesis-light.yaml b/themes/mimesis-light.yaml index 5ca04de6..199c6f10 100644 --- a/themes/mimesis-light.yaml +++ b/themes/mimesis-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Mimesis Dark" contrast: fg: 101.5 black: 101.5 diff --git a/themes/min-gruvbox.yaml b/themes/min-gruvbox.yaml index a8c9bfe6..a3de0d38 100644 --- a/themes/min-gruvbox.yaml +++ b/themes/min-gruvbox.yaml @@ -2,7 +2,7 @@ name: "Min Gruvbox" source: marketplace_id: "cnmorocho.min-gruvbox-theme" version: "0.0.10" - installs: 3528 + installs: 3530 author: "Carlos Nahuel Morocho" repo: "https://github.com/cnmorocho/min-gruvbox-theme" url: "https://marketplace.visualstudio.com/items?itemName=cnmorocho.min-gruvbox-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 97 black: 0 diff --git a/themes/min-light.yaml b/themes/min-light.yaml deleted file mode 100644 index f69eee25..00000000 --- a/themes/min-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Min Light" -source: - marketplace_id: "miguelsolorio.min-theme" - version: "1.5.0" - installs: 575213 - author: "Miguel Solorio" - repo: "https://github.com/misolori/min-theme" - url: "https://marketplace.visualstudio.com/items?itemName=miguelsolorio.min-theme" -colors: - bg: "#FFFFFF" - fg: "#212121" - black: "#333333" - red: "#D32F2F" - green: "#77CC00" - yellow: "#F29718" - blue: "#E0E0E0" - magenta: "#9966CC" - cyan: "#4DBF99" - white: "#C7C7C7" - brightBlack: "#A1A1A1" - brightRed: "#D6656A" - brightGreen: "#A3D900" - brightYellow: "#E7C547" - brightBlue: "#6871FF" - brightMagenta: "#A37ACC" - brightCyan: "#57D9AD" - brightWhite: "#7E7E7E" -meta: - mode: "light" - accent: "green" - hue: null - contrast: - fg: 103.1 - black: 98.7 - red: 72.8 - green: 38.7 - yellow: 44.5 - blue: 15.8 - magenta: 67.9 - cyan: 44.6 - white: 30.1 - brightBlack: 50.5 - brightRed: 62.5 - brightGreen: 29.5 - brightYellow: 29.7 - brightBlue: 66 - brightMagenta: 61.1 - brightCyan: 31.9 - brightWhite: 67.8 diff --git a/themes/mincom.yaml b/themes/mincom.yaml index 7695bbe0..1c27baca 100644 --- a/themes/mincom.yaml +++ b/themes/mincom.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 276 + pair: null contrast: fg: 98.7 black: 11 diff --git a/themes/minimal-44-pro.yaml b/themes/minimal-44-pro.yaml index be658185..76265f23 100644 --- a/themes/minimal-44-pro.yaml +++ b/themes/minimal-44-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 82.4 black: 0 diff --git a/themes/minimal-44.yaml b/themes/minimal-44.yaml index 41ce32f4..cbda89ab 100644 --- a/themes/minimal-44.yaml +++ b/themes/minimal-44.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 273 + pair: null contrast: fg: 69.1 black: 0 diff --git a/themes/minimal-dark-fork.yaml b/themes/minimal-dark-fork.yaml index 95d74034..7773c83e 100644 --- a/themes/minimal-dark-fork.yaml +++ b/themes/minimal-dark-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.1 black: 9.5 diff --git a/themes/minimal-dark.yaml b/themes/minimal-dark.yaml index 1922147e..ad06ad27 100644 --- a/themes/minimal-dark.yaml +++ b/themes/minimal-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 37.9 black: 9.3 diff --git a/themes/minimal-green.yaml b/themes/minimal-green.yaml index 546c3cfe..6512330c 100644 --- a/themes/minimal-green.yaml +++ b/themes/minimal-green.yaml @@ -2,7 +2,7 @@ name: "minimal_green" source: marketplace_id: "moldaz.minimal-green" version: "0.0.7" - installs: 11291 + installs: 11293 author: "moldaz" repo: "https://github.com/mdoyleaz/vs-code-theme-minimal_green" url: "https://marketplace.visualstudio.com/items?itemName=moldaz.minimal-green" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 57.3 black: 0 diff --git a/themes/minimal-monochrome-dark.yaml b/themes/minimal-monochrome-dark.yaml index a19713c5..0cd1004d 100644 --- a/themes/minimal-monochrome-dark.yaml +++ b/themes/minimal-monochrome-dark.yaml @@ -1,8 +1,8 @@ name: "Minimal Monochrome Dark" source: marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" - version: "0.3.0" - installs: 166 + version: "0.3.1" + installs: 168 author: "Arihant Verma" repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Minimal Monochrome Light" contrast: fg: 79.9 black: 0 diff --git a/themes/minimal-monochrome-ink-dark.yaml b/themes/minimal-monochrome-ink-dark.yaml index 3475be43..85b9692f 100644 --- a/themes/minimal-monochrome-ink-dark.yaml +++ b/themes/minimal-monochrome-ink-dark.yaml @@ -1,8 +1,8 @@ name: "Minimal Monochrome Ink Dark" source: marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" - version: "0.3.0" - installs: 166 + version: "0.3.1" + installs: 168 author: "Arihant Verma" repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Minimal Monochrome Ink Light" contrast: fg: 80.9 black: 0 diff --git a/themes/minimal-monochrome-ink-light.yaml b/themes/minimal-monochrome-ink-light.yaml index 353e0f54..78dd0c38 100644 --- a/themes/minimal-monochrome-ink-light.yaml +++ b/themes/minimal-monochrome-ink-light.yaml @@ -1,8 +1,8 @@ name: "Minimal Monochrome Ink Light" source: marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" - version: "0.3.0" - installs: 166 + version: "0.3.1" + installs: 168 author: "Arihant Verma" repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: "Minimal Monochrome Ink Dark" contrast: fg: 97.1 black: 101.8 diff --git a/themes/minimal-monochrome-pastel-dawn.yaml b/themes/minimal-monochrome-pastel-dawn.yaml index 05209b25..c804185f 100644 --- a/themes/minimal-monochrome-pastel-dawn.yaml +++ b/themes/minimal-monochrome-pastel-dawn.yaml @@ -1,8 +1,8 @@ name: "Minimal Monochrome Pastel Dawn" source: marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" - version: "0.3.0" - installs: 166 + version: "0.3.1" + installs: 168 author: "Arihant Verma" repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 79.1 black: 98.2 diff --git a/themes/minimal-monochrome-pastel-light.yaml b/themes/minimal-monochrome-pastel-light.yaml index 3a74a18e..d634a2b3 100644 --- a/themes/minimal-monochrome-pastel-light.yaml +++ b/themes/minimal-monochrome-pastel-light.yaml @@ -1,8 +1,8 @@ name: "Minimal Monochrome Pastel Light" source: marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" - version: "0.3.0" - installs: 166 + version: "0.3.1" + installs: 168 author: "Arihant Verma" repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 79.9 black: 99 diff --git a/themes/minimal-monochrome-slate-dark.yaml b/themes/minimal-monochrome-slate-dark.yaml index 1b4dafd6..603374d5 100644 --- a/themes/minimal-monochrome-slate-dark.yaml +++ b/themes/minimal-monochrome-slate-dark.yaml @@ -1,8 +1,8 @@ name: "Minimal Monochrome Slate Dark" source: marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" - version: "0.3.0" - installs: 166 + version: "0.3.1" + installs: 168 author: "Arihant Verma" repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 96.2 black: 0 diff --git a/themes/minimal-monochrome-slate-light.yaml b/themes/minimal-monochrome-slate-light.yaml deleted file mode 100644 index a047f856..00000000 --- a/themes/minimal-monochrome-slate-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Minimal Monochrome Slate Light" -source: - marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" - version: "0.3.0" - installs: 166 - author: "Arihant Verma" - repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" -colors: - bg: "#FCFCFC" - fg: "#000000" - black: "#1A1A1A" - red: "#C97A7D" - green: "#5A9E6F" - yellow: "#B8893A" - blue: "#5A8FB8" - magenta: "#8B6BA8" - cyan: "#4A9EA8" - white: "#D0D0D0" - brightBlack: "#646464" - brightRed: "#B56B6B" - brightGreen: "#4D8B5E" - brightYellow: "#A67830" - brightBlue: "#4A7FA8" - brightMagenta: "#7D5D9A" - brightCyan: "#3D8F99" - brightWhite: "#FCFCFC" -meta: - mode: "light" - accent: "yellow" - hue: null - contrast: - fg: 104.2 - black: 102.5 - red: 57.2 - green: 57.3 - yellow: 56.6 - blue: 60.3 - magenta: 68.7 - cyan: 56.1 - white: 23.2 - brightBlack: 77.8 - brightRed: 65.1 - brightGreen: 65.9 - brightYellow: 64.7 - brightBlue: 67.8 - brightMagenta: 74.9 - brightCyan: 63.1 - brightWhite: 0 diff --git a/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml b/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml index 442c2605..24cd1483 100644 --- a/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml +++ b/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml @@ -2,7 +2,7 @@ name: "Minimal Pastel Dark — Vibrant (Softer Yellow)" source: marketplace_id: "amirmajdi.minimal-themes-amirmajdi" version: "1.0.7" - installs: 330 + installs: 331 author: "Amir Majdi" repo: "https://github.com/Amir-Majdi/minimal-themes" url: "https://marketplace.visualstudio.com/items?itemName=amirmajdi.minimal-themes-amirmajdi" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/minimal-theme.yaml b/themes/minimal-theme.yaml index 4b16b15e..a6e1d112 100644 --- a/themes/minimal-theme.yaml +++ b/themes/minimal-theme.yaml @@ -2,7 +2,7 @@ name: "Minimal Theme" source: marketplace_id: "optimizion.vscode-minimal-theme" version: "0.0.2" - installs: 1841 + installs: 1842 author: "optimizion" repo: null url: "https://marketplace.visualstudio.com/items?itemName=optimizion.vscode-minimal-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 70.6 black: 0 diff --git a/themes/minimal-wave-floral-dark.yaml b/themes/minimal-wave-floral-dark.yaml index 188ddcc6..2fd071aa 100644 --- a/themes/minimal-wave-floral-dark.yaml +++ b/themes/minimal-wave-floral-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Minimal Wave - Floral Light" contrast: fg: 107.2 black: 0 diff --git a/themes/minimal-wave-floral-light.yaml b/themes/minimal-wave-floral-light.yaml index 74803846..23fff3d0 100644 --- a/themes/minimal-wave-floral-light.yaml +++ b/themes/minimal-wave-floral-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "Minimal Wave - Floral Dark" contrast: fg: 105.2 black: 106 diff --git a/themes/minimal.yaml b/themes/minimal.yaml index c0ebf62e..42f6d0d2 100644 --- a/themes/minimal.yaml +++ b/themes/minimal.yaml @@ -1,49 +1,50 @@ name: "Minimal" source: - marketplace_id: "EphraimAtta-Duncan.vscode-minimal-theme-dark" - version: "0.0.1" - installs: 1458 - author: "Ephraim Atta-Duncan" - repo: "https://github.com/dephraiim/minimal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=EphraimAtta-Duncan.vscode-minimal-theme-dark" + marketplace_id: "YesCode.only-dark-theme" + version: "0.0.16" + installs: 383 + author: "YesCode" + repo: "https://github.com/yesomac/only_dark" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" colors: - bg: "#2A2A29" - fg: "#CED3DB" - black: "#2A2A29" - red: "#F44336" - green: "#00E676" - yellow: "#FFDE03" - blue: "#206DAC" - magenta: "#FF0266" - cyan: "#00E676" - white: "#613F83" - brightBlack: "#232635" - brightRed: "#FB4934" - brightGreen: "#CACC53" - brightYellow: "#FABD2F" - brightBlue: "#00E676" - brightMagenta: "#DF6495" - brightCyan: "#8EC07C" - brightWhite: "#F9FBFC" + bg: "#080A0D" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#86EBC4" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#FFC200" + brightYellow: "#E7F0FF" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" meta: mode: "dark" - accent: "red" + accent: "orange" hue: null + pair: null contrast: - fg: 75.8 + fg: 105.4 black: 0 - red: 34.9 - green: 70.5 - yellow: 83.5 - blue: 21.1 - magenta: 34.7 - cyan: 70.5 - white: 10.1 - brightBlack: 0 - brightRed: 37.3 - brightGreen: 68.3 - brightYellow: 69 - brightBlue: 70.5 - brightMagenta: 38.3 - brightCyan: 57.3 - brightWhite: 101.2 + red: 42.8 + green: 61.8 + yellow: 73.9 + blue: 48.4 + magenta: 20.4 + cyan: 82.8 + white: 48.1 + brightBlack: 19.5 + brightRed: 42.8 + brightGreen: 75.4 + brightYellow: 97.4 + brightBlue: 19.6 + brightMagenta: 20.4 + brightCyan: 50.3 + brightWhite: 99.7 diff --git a/themes/minimalesque.yaml b/themes/minimalesque.yaml index 4cea85a2..ba1aae8c 100644 --- a/themes/minimalesque.yaml +++ b/themes/minimalesque.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/minimalist.yaml b/themes/minimalist.yaml index 36323aee..fd7a635a 100644 --- a/themes/minimalist.yaml +++ b/themes/minimalist.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 70.9 black: 0 diff --git a/themes/minimalistic-dark-theme.yaml b/themes/minimalistic-dark-theme.yaml index 616e73cf..d97ab607 100644 --- a/themes/minimalistic-dark-theme.yaml +++ b/themes/minimalistic-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/minimalisticdarktheme.yaml b/themes/minimalisticdarktheme.yaml index 7b4e346c..aa1f0037 100644 --- a/themes/minimalisticdarktheme.yaml +++ b/themes/minimalisticdarktheme.yaml @@ -2,7 +2,7 @@ name: "MinimalisticDarkTheme" source: marketplace_id: "MiguelLuisHernandezBrocat.minimalisticdarktheme" version: "0.0.1" - installs: 253 + installs: 254 author: "Miguel Luis HernandezBrocat" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MiguelLuisHernandezBrocat.minimalisticdarktheme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 80.2 black: 0 diff --git a/themes/minimalistik.yaml b/themes/minimalistik.yaml index 1c4afac9..1e4445ff 100644 --- a/themes/minimalistik.yaml +++ b/themes/minimalistik.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 59.8 black: 0 diff --git a/themes/minimalred.yaml b/themes/minimalred.yaml index ec110297..f5b94cd7 100644 --- a/themes/minimalred.yaml +++ b/themes/minimalred.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 269 + pair: null contrast: fg: 82 black: 0 diff --git a/themes/miniml-dusk.yaml b/themes/miniml-dusk.yaml index 611f694d..67f60932 100644 --- a/themes/miniml-dusk.yaml +++ b/themes/miniml-dusk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 61.2 black: 7.9 diff --git a/themes/miniml-light.yaml b/themes/miniml-light.yaml index 785f26aa..2a18d1bf 100644 --- a/themes/miniml-light.yaml +++ b/themes/miniml-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 86.8 black: 89.7 diff --git a/themes/miniml-midnight.yaml b/themes/miniml-midnight.yaml index 3b23ba68..259a3e3d 100644 --- a/themes/miniml-midnight.yaml +++ b/themes/miniml-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 61.8 black: 8.5 diff --git a/themes/minimus.yaml b/themes/minimus.yaml index c79d1afc..13dabb37 100644 --- a/themes/minimus.yaml +++ b/themes/minimus.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "indigo" hue: null + pair: null contrast: fg: 96.5 black: 96.5 diff --git a/themes/minitheme.yaml b/themes/minitheme.yaml index a6b7b857..bf29029c 100644 --- a/themes/minitheme.yaml +++ b/themes/minitheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 86.2 black: 0 diff --git a/themes/mink-dark-theme.yaml b/themes/mink-dark-theme.yaml index 5c366213..7d6494f4 100644 --- a/themes/mink-dark-theme.yaml +++ b/themes/mink-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/minokai-kalel.yaml b/themes/minokai-kalel.yaml index f64fe959..6d1d0fcf 100644 --- a/themes/minokai-kalel.yaml +++ b/themes/minokai-kalel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 271 + pair: null contrast: fg: 56.5 black: 0 diff --git a/themes/minone.yaml b/themes/minone.yaml index 3760016d..ae4b0456 100644 --- a/themes/minone.yaml +++ b/themes/minone.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/mint-chocolate.yaml b/themes/mint-chocolate.yaml index 42bcd37f..23858684 100644 --- a/themes/mint-chocolate.yaml +++ b/themes/mint-chocolate.yaml @@ -2,7 +2,7 @@ name: "Mint Chocolate" source: marketplace_id: "onulu.mint-chocolate" version: "1.0.1" - installs: 577 + installs: 579 author: "onulu" repo: "https://github.com/onulu/mint-chocolate-theme" url: "https://marketplace.visualstudio.com/items?itemName=onulu.mint-chocolate" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 56 + pair: null contrast: fg: 75.8 black: 0 diff --git a/themes/mint-dark.yaml b/themes/mint-dark.yaml index d1d15187..1e2282e4 100644 --- a/themes/mint-dark.yaml +++ b/themes/mint-dark.yaml @@ -2,7 +2,7 @@ name: "Mint Dark" source: marketplace_id: "marcbruederlin.mint-theme" version: "0.1.2" - installs: 9168 + installs: 9169 author: "Marc Brüderlin" repo: "https://github.com/marcbruederlin/vscode-mint-theme" url: "https://marketplace.visualstudio.com/items?itemName=marcbruederlin.mint-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.8 black: 0 diff --git a/themes/mintchoc-contrast.yaml b/themes/mintchoc-contrast.yaml index e4210412..f7b083ae 100644 --- a/themes/mintchoc-contrast.yaml +++ b/themes/mintchoc-contrast.yaml @@ -1,11 +1,11 @@ name: "mintchoc-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0C0A08" fg: "#BABABA" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 65 black: 0 diff --git a/themes/mintchoc-light.yaml b/themes/mintchoc-light.yaml index 2723cd99..01328eb9 100644 --- a/themes/mintchoc-light.yaml +++ b/themes/mintchoc-light.yaml @@ -1,11 +1,11 @@ name: "mintchoc-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#444444" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/mintchoc.yaml b/themes/mintchoc.yaml index 60549d33..dc3a2532 100644 --- a/themes/mintchoc.yaml +++ b/themes/mintchoc.yaml @@ -1,11 +1,11 @@ name: "mintchoc" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2B221C" fg: "#BABABA" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 55 + pair: null contrast: fg: 62.5 black: 0 diff --git a/themes/mintdark.yaml b/themes/mintdark.yaml index fd672415..8c03c036 100644 --- a/themes/mintdark.yaml +++ b/themes/mintdark.yaml @@ -2,7 +2,7 @@ name: "MintDark" source: marketplace_id: "daniel-lvovsky.mintdark-theme" version: "0.0.1" - installs: 2895 + installs: 2896 author: "Daniel Lvovsky" repo: "https://github.com/DanielLvovsky/MintDark/issues" url: "https://marketplace.visualstudio.com/items?itemName=daniel-lvovsky.mintdark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 89.3 black: 0 diff --git a/themes/minty-dark.yaml b/themes/minty-dark.yaml index 20dfd947..0fb28690 100644 --- a/themes/minty-dark.yaml +++ b/themes/minty-dark.yaml @@ -2,7 +2,7 @@ name: "Minty Dark" source: marketplace_id: "ShanukaKFernando.Minty" version: "1.0.2" - installs: 185 + installs: 186 author: "Shanuka Kavinda" repo: "https://github.com/shanukavinda/Minty" url: "https://marketplace.visualstudio.com/items?itemName=ShanukaKFernando.Minty" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.6 black: 0 diff --git a/themes/mirai.yaml b/themes/mirai.yaml index ad648337..b2ddcbea 100644 --- a/themes/mirai.yaml +++ b/themes/mirai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/miramare.yaml b/themes/miramare.yaml index 01dd21ea..f6375b8c 100644 --- a/themes/miramare.yaml +++ b/themes/miramare.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/mist-theme.yaml b/themes/mist-theme.yaml index e14fce1a..fcab4e43 100644 --- a/themes/mist-theme.yaml +++ b/themes/mist-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 244 + pair: null contrast: fg: 66.3 black: 0 diff --git a/themes/mist.yaml b/themes/mist.yaml index 84401505..6f1ebf92 100644 --- a/themes/mist.yaml +++ b/themes/mist.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 239 + pair: null contrast: fg: 86 black: 0 diff --git a/themes/misterioso.yaml b/themes/misterioso.yaml index e3d9d06d..d58f6bf6 100644 --- a/themes/misterioso.yaml +++ b/themes/misterioso.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 247 + pair: null contrast: fg: 73.5 black: 15.7 diff --git a/themes/misty-blue.yaml b/themes/misty-blue.yaml index f9e93a0a..6c12252f 100644 --- a/themes/misty-blue.yaml +++ b/themes/misty-blue.yaml @@ -2,7 +2,7 @@ name: "Misty Blue" source: marketplace_id: "d33f2gmbrsg2mlf32hg27to6utjbqm52vmxqbxml6x25odnimcoq.MistyBlue" version: "0.0.6" - installs: 2318 + installs: 2319 author: "Yashwanth Byalla" repo: null url: "https://marketplace.visualstudio.com/items?itemName=d33f2gmbrsg2mlf32hg27to6utjbqm52vmxqbxml6x25odnimcoq.MistyBlue" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 50.5 black: 107.7 diff --git a/themes/mistywind.yaml b/themes/mistywind.yaml index a19bff7f..85d8a51e 100644 --- a/themes/mistywind.yaml +++ b/themes/mistywind.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 246 + pair: null contrast: fg: 86.7 black: 0 diff --git a/themes/mitaverse.yaml b/themes/mitaverse.yaml index 16781955..a41468c7 100644 --- a/themes/mitaverse.yaml +++ b/themes/mitaverse.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 345 + pair: null contrast: fg: 101.9 black: 0 diff --git a/themes/mitsuri-kanroji.yaml b/themes/mitsuri-kanroji.yaml index 338d8fd4..ce9e2046 100644 --- a/themes/mitsuri-kanroji.yaml +++ b/themes/mitsuri-kanroji.yaml @@ -2,7 +2,7 @@ name: "Mitsuri Kanroji" source: marketplace_id: "devLocifer.hashira-code-theme" version: "0.0.1" - installs: 738 + installs: 739 author: "devLocifer" repo: "https://github.com/diazdjul19/hashira-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 266 + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/mixed-solarized-light.yaml b/themes/mixed-solarized-light.yaml index c39d0246..b3999756 100644 --- a/themes/mixed-solarized-light.yaml +++ b/themes/mixed-solarized-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 74.5 black: 93.7 diff --git a/themes/mk-iceblack.yaml b/themes/mk-iceblack.yaml index edbfee58..0fd34afb 100644 --- a/themes/mk-iceblack.yaml +++ b/themes/mk-iceblack.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 71.9 black: 0 diff --git a/themes/mk-mono-dark.yaml b/themes/mk-mono-dark.yaml index e697f69b..b0a81e22 100644 --- a/themes/mk-mono-dark.yaml +++ b/themes/mk-mono-dark.yaml @@ -2,7 +2,7 @@ name: "MK Mono Dark" source: marketplace_id: "mvtkvm.mk-mono" version: "1.0.0" - installs: 966 + installs: 968 author: "MVTKVM" repo: "https://github.com/matkammusic/mk-mono" url: "https://marketplace.visualstudio.com/items?itemName=mvtkvm.mk-mono" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/mk-mono-light.yaml b/themes/mk-mono-light.yaml deleted file mode 100644 index bd519f1b..00000000 --- a/themes/mk-mono-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "MK Mono Light" -source: - marketplace_id: "mvtkvm.mk-mono" - version: "1.0.0" - installs: 966 - author: "MVTKVM" - repo: "https://github.com/matkammusic/mk-mono" - url: "https://marketplace.visualstudio.com/items?itemName=mvtkvm.mk-mono" -colors: - bg: "#EBEBEB" - fg: "#515151" - black: "#EBEBEB" - red: "#7E7E7E" - green: "#A9A9A9" - yellow: "#525252" - blue: "#BFBFBF" - magenta: "#686868" - cyan: "#939393" - white: "#3C3C3C" - brightBlack: "#D5D5D5" - brightRed: "#7E7E7E" - brightGreen: "#A9A9A9" - brightYellow: "#525252" - brightBlue: "#BFBFBF" - brightMagenta: "#686868" - brightCyan: "#939393" - brightWhite: "#101010" -meta: - mode: "light" - accent: "yellow" - hue: null - contrast: - fg: 75.7 - black: 0 - red: 56 - green: 34.5 - yellow: 75.3 - blue: 22.7 - magenta: 66 - cyan: 45.8 - white: 83.7 - brightBlack: 10.3 - brightRed: 56 - brightGreen: 34.5 - brightYellow: 75.3 - brightBlue: 22.7 - brightMagenta: 66 - brightCyan: 45.8 - brightWhite: 93.6 diff --git a/themes/mkanet.yaml b/themes/mkanet.yaml index 2ffd28d9..fb278d6a 100644 --- a/themes/mkanet.yaml +++ b/themes/mkanet.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 54.5 black: 69.9 diff --git a/themes/mkdeveloper-theme.yaml b/themes/mkdeveloper-theme.yaml index 4942485c..19a7f334 100644 --- a/themes/mkdeveloper-theme.yaml +++ b/themes/mkdeveloper-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 255 + pair: null contrast: fg: 53.6 black: 0 diff --git a/themes/mlia-dark.yaml b/themes/mlia-dark.yaml index 2786119a..91fb25fb 100644 --- a/themes/mlia-dark.yaml +++ b/themes/mlia-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 55.2 black: 8.1 diff --git a/themes/mlia-light.yaml b/themes/mlia-light.yaml index e5ee884f..23b23b25 100644 --- a/themes/mlia-light.yaml +++ b/themes/mlia-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 75.7 black: 81.5 diff --git a/themes/mlia-soft.yaml b/themes/mlia-soft.yaml index 35438932..cf80dc0a 100644 --- a/themes/mlia-soft.yaml +++ b/themes/mlia-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 73.2 black: 0 diff --git a/themes/mlv60-vintage-light.yaml b/themes/mlv60-vintage-light.yaml index 3ae86fca..90155080 100644 --- a/themes/mlv60-vintage-light.yaml +++ b/themes/mlv60-vintage-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 100.4 black: 101 diff --git a/themes/mocaccino-light.yaml b/themes/mocaccino-light.yaml index 214cf348..88b53fb4 100644 --- a/themes/mocaccino-light.yaml +++ b/themes/mocaccino-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 78.4 black: 78.4 diff --git a/themes/moderate-dimm.yaml b/themes/moderate-dimm.yaml index cb81fccd..e5fc39c3 100644 --- a/themes/moderate-dimm.yaml +++ b/themes/moderate-dimm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 252 + pair: null contrast: fg: 82.9 black: 0 diff --git a/themes/modern-dracula.yaml b/themes/modern-dracula.yaml index 7895c34e..2e3d9ee3 100644 --- a/themes/modern-dracula.yaml +++ b/themes/modern-dracula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 46.9 black: 0 diff --git a/themes/modern-github-white-purple.yaml b/themes/modern-github-white-purple.yaml deleted file mode 100644 index 4b8f4859..00000000 --- a/themes/modern-github-white-purple.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Modern GitHub | White & Purple" -source: - marketplace_id: "LucasLomiento.modern-dracula-theme" - version: "1.2.0" - installs: 760 - author: "Lucas Lomiento" - repo: "https://github.com/LucasLomiento/modern-dracula-theme" - url: "https://marketplace.visualstudio.com/items?itemName=LucasLomiento.modern-dracula-theme" -colors: - bg: "#101012" - fg: "#F4F0E0" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 97.4 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28 - magenta: 30.3 - cyan: 48.1 - white: 90.6 - brightBlack: 22.6 - brightRed: 39.1 - brightGreen: 64.1 - brightYellow: 96.2 - brightBlue: 40.6 - brightMagenta: 45.9 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/moderneclipse.yaml b/themes/moderneclipse.yaml index 75a1a659..edb3196f 100644 --- a/themes/moderneclipse.yaml +++ b/themes/moderneclipse.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 103.3 black: 0 diff --git a/themes/modernui-fork.yaml b/themes/modernui-fork.yaml index e1fd5638..39c44660 100644 --- a/themes/modernui-fork.yaml +++ b/themes/modernui-fork.yaml @@ -1,11 +1,11 @@ name: "ModernUI - Fork" source: - marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" - version: "9.0.1" - installs: 29903 - author: "Hasibur R" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + marketplace_id: "MrDope.mdDark" + version: "1.1.0" + installs: 28 + author: "MrDope" + repo: "https://github.com/DopeeDev/mdDarkTheme" + url: "https://marketplace.visualstudio.com/items?itemName=MrDope.mdDark" colors: bg: "#171616" fg: "#D9D9D9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 82.6 black: 0 diff --git a/themes/modest-pink.yaml b/themes/modest-pink.yaml index 2e195044..20359174 100644 --- a/themes/modest-pink.yaml +++ b/themes/modest-pink.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 101 black: 101 diff --git a/themes/modified-darker-material-theme.yaml b/themes/modified-darker-material-theme.yaml index ffcfb7e7..daf09cd4 100644 --- a/themes/modified-darker-material-theme.yaml +++ b/themes/modified-darker-material-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 105.7 black: 63.9 diff --git a/themes/modus-operandi-deuteranopia.yaml b/themes/modus-operandi-deuteranopia.yaml index ecdd0399..5ae702c6 100644 --- a/themes/modus-operandi-deuteranopia.yaml +++ b/themes/modus-operandi-deuteranopia.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/modus-operandi-tinted.yaml b/themes/modus-operandi-tinted.yaml index e61c43b3..25ab774e 100644 --- a/themes/modus-operandi-tinted.yaml +++ b/themes/modus-operandi-tinted.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 101.5 black: 101.5 diff --git a/themes/modus-operandi-tritanopia.yaml b/themes/modus-operandi-tritanopia.yaml index 6e269876..f84a28f7 100644 --- a/themes/modus-operandi-tritanopia.yaml +++ b/themes/modus-operandi-tritanopia.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/modus-operandi.yaml b/themes/modus-operandi.yaml index 547cfde7..0a3c618b 100644 --- a/themes/modus-operandi.yaml +++ b/themes/modus-operandi.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/modus-vivendi-deuteranopia.yaml b/themes/modus-vivendi-deuteranopia.yaml index 984a14da..db260c31 100644 --- a/themes/modus-vivendi-deuteranopia.yaml +++ b/themes/modus-vivendi-deuteranopia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/modus-vivendi-tinted.yaml b/themes/modus-vivendi-tinted.yaml index 9223f4ef..b02d39b9 100644 --- a/themes/modus-vivendi-tinted.yaml +++ b/themes/modus-vivendi-tinted.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 280 + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/modus-vivendi-tritanopia.yaml b/themes/modus-vivendi-tritanopia.yaml index dfacba6a..bc0a28d6 100644 --- a/themes/modus-vivendi-tritanopia.yaml +++ b/themes/modus-vivendi-tritanopia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/modus-vivendi.yaml b/themes/modus-vivendi.yaml index 765b6b6b..cca7b2a7 100644 --- a/themes/modus-vivendi.yaml +++ b/themes/modus-vivendi.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/moegi-black-zen.yaml b/themes/moegi-black-zen.yaml index 054cdef5..4cfc24f6 100644 --- a/themes/moegi-black-zen.yaml +++ b/themes/moegi-black-zen.yaml @@ -2,7 +2,7 @@ name: "Moegi Black Zen" source: marketplace_id: "ddiu8081.moegi-theme" version: "0.7.1" - installs: 36944 + installs: 36950 author: "Diu" repo: "https://github.com/moegi-design/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85.8 black: 0 diff --git a/themes/moegi-black.yaml b/themes/moegi-black.yaml index 41675419..4d1248fd 100644 --- a/themes/moegi-black.yaml +++ b/themes/moegi-black.yaml @@ -2,7 +2,7 @@ name: "Moegi Black" source: marketplace_id: "ddiu8081.moegi-theme" version: "0.7.1" - installs: 36944 + installs: 36950 author: "Diu" repo: "https://github.com/moegi-design/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Moegi Dawn" contrast: fg: 85.8 black: 0 diff --git a/themes/moegi-dark.yaml b/themes/moegi-dark.yaml index aca69ab5..7fc3b4e5 100644 --- a/themes/moegi-dark.yaml +++ b/themes/moegi-dark.yaml @@ -2,7 +2,7 @@ name: "Moegi Dark" source: marketplace_id: "ddiu8081.moegi-theme" version: "0.7.1" - installs: 36944 + installs: 36950 author: "Diu" repo: "https://github.com/moegi-design/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Moegi Light" contrast: fg: 83.9 black: 0 diff --git a/themes/moegi-dawn.yaml b/themes/moegi-dawn.yaml index dcdeff8b..e7e15920 100644 --- a/themes/moegi-dawn.yaml +++ b/themes/moegi-dawn.yaml @@ -2,7 +2,7 @@ name: "Moegi Dawn" source: marketplace_id: "ddiu8081.moegi-theme" version: "0.7.1" - installs: 36944 + installs: 36950 author: "Diu" repo: "https://github.com/moegi-design/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Moegi Black" contrast: fg: 90.8 black: 78.1 diff --git a/themes/moegi-iris.yaml b/themes/moegi-iris.yaml index 75ae9b24..88003fe2 100644 --- a/themes/moegi-iris.yaml +++ b/themes/moegi-iris.yaml @@ -2,7 +2,7 @@ name: "Moegi Iris" source: marketplace_id: "ddiu8081.moegi-theme" version: "0.7.1" - installs: 36944 + installs: 36950 author: "Diu" repo: "https://github.com/moegi-design/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 88.8 black: 76.4 diff --git a/themes/moegi-light.yaml b/themes/moegi-light.yaml index 151c1d10..dd0d1249 100644 --- a/themes/moegi-light.yaml +++ b/themes/moegi-light.yaml @@ -2,7 +2,7 @@ name: "Moegi Light" source: marketplace_id: "ddiu8081.moegi-theme" version: "0.7.1" - installs: 36944 + installs: 36950 author: "Diu" repo: "https://github.com/moegi-design/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Moegi Dark" contrast: fg: 98.7 black: 85.9 diff --git a/themes/moegi-space.yaml b/themes/moegi-space.yaml index 53578c15..93313aa9 100644 --- a/themes/moegi-space.yaml +++ b/themes/moegi-space.yaml @@ -2,7 +2,7 @@ name: "Moegi Space" source: marketplace_id: "ddiu8081.moegi-theme" version: "0.7.1" - installs: 36944 + installs: 36950 author: "Diu" repo: "https://github.com/moegi-design/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 294 + pair: null contrast: fg: 81.9 black: 0 diff --git a/themes/moin-acme.yaml b/themes/moin-acme.yaml index eb2d8bac..cc5857d9 100644 --- a/themes/moin-acme.yaml +++ b/themes/moin-acme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 105.4 black: 0 diff --git a/themes/moin-dark.yaml b/themes/moin-dark.yaml index 1353d1f3..97097170 100644 --- a/themes/moin-dark.yaml +++ b/themes/moin-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Moin Light" contrast: fg: 107.9 black: 0 diff --git a/themes/moin-light.yaml b/themes/moin-light.yaml index 06d36b8d..ffebe544 100644 --- a/themes/moin-light.yaml +++ b/themes/moin-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Moin Dark" contrast: fg: 106 black: 7.6 diff --git a/themes/moin-soft-dark.yaml b/themes/moin-soft-dark.yaml index 6fae5405..a6284670 100644 --- a/themes/moin-soft-dark.yaml +++ b/themes/moin-soft-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107 black: 0 diff --git a/themes/mojito-pro-dark.yaml b/themes/mojito-pro-dark.yaml index f42c644c..3101d181 100644 --- a/themes/mojito-pro-dark.yaml +++ b/themes/mojito-pro-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 163 + pair: null contrast: fg: 95 black: 0 diff --git a/themes/mojito-pro.yaml b/themes/mojito-pro.yaml index c1080036..3517c403 100644 --- a/themes/mojito-pro.yaml +++ b/themes/mojito-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 160 + pair: null contrast: fg: 94.5 black: 0 diff --git a/themes/mokka-fork-darken-blue.yaml b/themes/mokka-fork-darken-blue.yaml index 9bd502db..a2f4d629 100644 --- a/themes/mokka-fork-darken-blue.yaml +++ b/themes/mokka-fork-darken-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 47.7 black: 0 diff --git a/themes/mokka.yaml b/themes/mokka.yaml index baf4c5a1..90d45710 100644 --- a/themes/mokka.yaml +++ b/themes/mokka.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 49.6 black: 0 diff --git a/themes/mol-lurity-theme-soft-fixed.yaml b/themes/mol-lurity-theme-soft-fixed.yaml index 7cdd0004..f4664201 100644 --- a/themes/mol-lurity-theme-soft-fixed.yaml +++ b/themes/mol-lurity-theme-soft-fixed.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/mol-lurity-theme.yaml b/themes/mol-lurity-theme.yaml index 86183839..2c2f6d33 100644 --- a/themes/mol-lurity-theme.yaml +++ b/themes/mol-lurity-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/molarity-washed.yaml b/themes/molarity-washed.yaml index 47f794e9..2463ffbe 100644 --- a/themes/molarity-washed.yaml +++ b/themes/molarity-washed.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 290 + pair: null contrast: fg: 51 black: 0 diff --git a/themes/molineux.yaml b/themes/molineux.yaml index 290478c5..0f75dfa8 100644 --- a/themes/molineux.yaml +++ b/themes/molineux.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 74.2 black: 0 diff --git a/themes/moloch.yaml b/themes/moloch.yaml index fc591f1b..42133517 100644 --- a/themes/moloch.yaml +++ b/themes/moloch.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/molokai-darker.yaml b/themes/molokai-darker.yaml index 750bd4b7..60074341 100644 --- a/themes/molokai-darker.yaml +++ b/themes/molokai-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 102.5 black: 0 diff --git a/themes/molten-aurora.yaml b/themes/molten-aurora.yaml index f18e623d..8b55fb7b 100644 --- a/themes/molten-aurora.yaml +++ b/themes/molten-aurora.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 91.6 black: 0 diff --git a/themes/monaco-paulsevere-color-theme.yaml b/themes/monaco-paulsevere-color-theme.yaml index 7f064931..7c2e7065 100644 --- a/themes/monaco-paulsevere-color-theme.yaml +++ b/themes/monaco-paulsevere-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.8 black: 0 diff --git a/themes/monfika.yaml b/themes/monfika.yaml index 34fb49a0..28eecf1f 100644 --- a/themes/monfika.yaml +++ b/themes/monfika.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 278 + pair: null contrast: fg: 88.1 black: 0 diff --git a/themes/mono-atom.yaml b/themes/mono-atom.yaml index 31770e0c..abf69bf9 100644 --- a/themes/mono-atom.yaml +++ b/themes/mono-atom.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 81 black: 0 diff --git a/themes/mono-bw.yaml b/themes/mono-bw.yaml index 5dd064a5..5e23c7f7 100644 --- a/themes/mono-bw.yaml +++ b/themes/mono-bw.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 43.6 black: 0 diff --git a/themes/mono-cl.yaml b/themes/mono-cl.yaml index 002b8a84..4986c3f2 100644 --- a/themes/mono-cl.yaml +++ b/themes/mono-cl.yaml @@ -2,7 +2,7 @@ name: "mono-cl" source: marketplace_id: "arx9781.mono-cl" version: "1.0.0" - installs: 1679 + installs: 1680 author: "arx9781" repo: null url: "https://marketplace.visualstudio.com/items?itemName=arx9781.mono-cl" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/monochai-dark.yaml b/themes/monochai-dark.yaml index c6acb2b4..fdd649c7 100644 --- a/themes/monochai-dark.yaml +++ b/themes/monochai-dark.yaml @@ -1,11 +1,11 @@ name: "Monochai Dark" source: - marketplace_id: "JesusChavez.chi-chavez" - version: "1.0.4" - installs: 31 - author: "Jesus Chavez" - repo: "https://github.com/chavezutajara/themes" - url: "https://marketplace.visualstudio.com/items?itemName=JesusChavez.chi-chavez" + marketplace_id: "381181295.monochai" + version: "1.0.5" + installs: 213 + author: "381181295" + repo: "https://github.com/381181295/monochai" + url: "https://marketplace.visualstudio.com/items?itemName=381181295.monochai" colors: bg: "#101010" fg: "#AAAAAA" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 55.8 black: 0 diff --git a/themes/monochromator-dark-plain.yaml b/themes/monochromator-dark-plain.yaml index 10383178..af48f39c 100644 --- a/themes/monochromator-dark-plain.yaml +++ b/themes/monochromator-dark-plain.yaml @@ -2,7 +2,7 @@ name: "Monochromator Dark Plain" source: marketplace_id: "beem.monochromator" version: "0.31.1" - installs: 552 + installs: 555 author: "Josias Beem" repo: "https://codeberg.org/beem/monochromator" url: "https://marketplace.visualstudio.com/items?itemName=beem.monochromator" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Monochromator Light Plain" contrast: fg: 91.9 black: 0 diff --git a/themes/monochromator-light-plain.yaml b/themes/monochromator-light-plain.yaml index 1a869af0..8b54ac6b 100644 --- a/themes/monochromator-light-plain.yaml +++ b/themes/monochromator-light-plain.yaml @@ -2,7 +2,7 @@ name: "Monochromator Light Plain" source: marketplace_id: "beem.monochromator" version: "0.31.1" - installs: 552 + installs: 555 author: "Josias Beem" repo: "https://codeberg.org/beem/monochromator" url: "https://marketplace.visualstudio.com/items?itemName=beem.monochromator" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Monochromator Dark Plain" contrast: fg: 106 black: 106 diff --git a/themes/monochrome-dark-amplified.yaml b/themes/monochrome-dark-amplified.yaml index ceb06dee..e86b206c 100644 --- a/themes/monochrome-dark-amplified.yaml +++ b/themes/monochrome-dark-amplified.yaml @@ -2,7 +2,7 @@ name: "monochrome-dark-amplified" source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" - installs: 47933 + installs: 47953 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 61.2 black: 0 diff --git a/themes/monochrome-dark-cool-gray.yaml b/themes/monochrome-dark-cool-gray.yaml index 1753d839..5dab7e09 100644 --- a/themes/monochrome-dark-cool-gray.yaml +++ b/themes/monochrome-dark-cool-gray.yaml @@ -2,7 +2,7 @@ name: "monochrome-dark-cool-gray" source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" - installs: 47933 + installs: 47953 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 265 + pair: null contrast: fg: 62.2 black: 0 diff --git a/themes/monochrome-dark-gray.yaml b/themes/monochrome-dark-gray.yaml index 0e8f4506..32d29589 100644 --- a/themes/monochrome-dark-gray.yaml +++ b/themes/monochrome-dark-gray.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 265 + pair: null contrast: fg: 99.4 black: 0 diff --git a/themes/monochrome-dark-indigo.yaml b/themes/monochrome-dark-indigo.yaml index c6256c9e..95cdf960 100644 --- a/themes/monochrome-dark-indigo.yaml +++ b/themes/monochrome-dark-indigo.yaml @@ -2,7 +2,7 @@ name: "monochrome-dark-indigo" source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" - installs: 47933 + installs: 47953 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 266 + pair: null contrast: fg: 61.7 black: 0 diff --git a/themes/monochrome-dark-neutral.yaml b/themes/monochrome-dark-neutral.yaml index a58ff4b8..b2467876 100644 --- a/themes/monochrome-dark-neutral.yaml +++ b/themes/monochrome-dark-neutral.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 100.3 black: 0 diff --git a/themes/monochrome-dark-slate.yaml b/themes/monochrome-dark-slate.yaml index 91fb9600..c825c6c9 100644 --- a/themes/monochrome-dark-slate.yaml +++ b/themes/monochrome-dark-slate.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 266 + pair: null contrast: fg: 99.8 black: 0 diff --git a/themes/monochrome-dark-stone.yaml b/themes/monochrome-dark-stone.yaml index 1a31bc26..9ac1b996 100644 --- a/themes/monochrome-dark-stone.yaml +++ b/themes/monochrome-dark-stone.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 100 black: 0 diff --git a/themes/monochrome-dark-subtle.yaml b/themes/monochrome-dark-subtle.yaml index 03266c8d..b211f941 100644 --- a/themes/monochrome-dark-subtle.yaml +++ b/themes/monochrome-dark-subtle.yaml @@ -2,7 +2,7 @@ name: "monochrome-dark-subtle" source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" - installs: 47933 + installs: 47953 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: 246 + pair: null contrast: fg: 59.2 black: 0 diff --git a/themes/monochrome-dark-zinc.yaml b/themes/monochrome-dark-zinc.yaml index 9ec6a5dd..ff7e9b55 100644 --- a/themes/monochrome-dark-zinc.yaml +++ b/themes/monochrome-dark-zinc.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 99.5 black: 0 diff --git a/themes/monochrome-dark.yaml b/themes/monochrome-dark.yaml index dbf3221e..4cb0fbbf 100644 --- a/themes/monochrome-dark.yaml +++ b/themes/monochrome-dark.yaml @@ -1,49 +1,50 @@ name: "monochrome-dark" source: - marketplace_id: "dkamyshov.monochrome" - version: "2.3.3" - installs: 2227 - author: "dkamyshov" - repo: "https://github.com/dkamyshov/monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=dkamyshov.monochrome" + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47953 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" colors: bg: "#101010" - fg: "#EBEBEB" + fg: "#AAAAAA" black: "#101010" - red: "#D0D0D0" - green: "#838383" - yellow: "#EBEBEB" - blue: "#5D5D5D" - magenta: "#EBEBEB" - cyan: "#A9A9A9" - white: "#EBEBEB" - brightBlack: "#363636" - brightRed: "#D0D0D0" - brightGreen: "#838383" - brightYellow: "#EBEBEB" - brightBlue: "#5D5D5D" - brightMagenta: "#EBEBEB" - brightCyan: "#A9A9A9" + red: "#7E7E7E" + green: "#525252" + yellow: "#A9A9A9" + blue: "#3C3C3C" + magenta: "#939393" + cyan: "#686868" + white: "#BFBFBF" + brightBlack: "#262626" + brightRed: "#7E7E7E" + brightGreen: "#525252" + brightYellow: "#A9A9A9" + brightBlue: "#3C3C3C" + brightMagenta: "#939393" + brightCyan: "#686868" brightWhite: "#EBEBEB" meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: - fg: 94.4 + fg: 55.8 black: 0 - red: 77.6 - green: 35.8 - yellow: 94.4 - blue: 18.9 - magenta: 94.4 - cyan: 55.3 - white: 94.4 + red: 33.4 + green: 14.5 + yellow: 55.3 + blue: 0 + magenta: 43.7 + cyan: 23.5 + white: 67.6 brightBlack: 0 - brightRed: 77.6 - brightGreen: 35.8 - brightYellow: 94.4 - brightBlue: 18.9 - brightMagenta: 94.4 - brightCyan: 55.3 + brightRed: 33.4 + brightGreen: 14.5 + brightYellow: 55.3 + brightBlue: 0 + brightMagenta: 43.7 + brightCyan: 23.5 brightWhite: 94.4 diff --git a/themes/monochrome-github-edition.yaml b/themes/monochrome-github-edition.yaml index 222c89fd..78deca4b 100644 --- a/themes/monochrome-github-edition.yaml +++ b/themes/monochrome-github-edition.yaml @@ -2,7 +2,7 @@ name: "Monochrome (GitHub Edition)" source: marketplace_id: "toufiqahmedshr.monochrome-theme" version: "1.1.0" - installs: 3262 + installs: 3264 author: "Toufiq Ahmed" repo: "https://github.com/toufiq-ahmed/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=toufiqahmedshr.monochrome-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 258 + pair: null contrast: fg: 105.1 black: 8.6 diff --git a/themes/monochrome-light-amplified.yaml b/themes/monochrome-light-amplified.yaml index 7ab27d32..d873b746 100644 --- a/themes/monochrome-light-amplified.yaml +++ b/themes/monochrome-light-amplified.yaml @@ -2,7 +2,7 @@ name: "monochrome-light-amplified" source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" - installs: 47933 + installs: 47953 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 89.5 black: 0 diff --git a/themes/monochrome-light-cool-gray.yaml b/themes/monochrome-light-cool-gray.yaml index b9077bab..a0089c3c 100644 --- a/themes/monochrome-light-cool-gray.yaml +++ b/themes/monochrome-light-cool-gray.yaml @@ -2,7 +2,7 @@ name: "monochrome-light-cool-gray" source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" - installs: 47933 + installs: 47953 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/monochrome-light-gray.yaml b/themes/monochrome-light-gray.yaml index 85367928..b471aebb 100644 --- a/themes/monochrome-light-gray.yaml +++ b/themes/monochrome-light-gray.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 97.9 black: 0 diff --git a/themes/monochrome-light-indigo.yaml b/themes/monochrome-light-indigo.yaml index 1fe6a562..d29e6e26 100644 --- a/themes/monochrome-light-indigo.yaml +++ b/themes/monochrome-light-indigo.yaml @@ -2,7 +2,7 @@ name: "monochrome-light-indigo" source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" - installs: 47933 + installs: 47953 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/monochrome-light-neutral.yaml b/themes/monochrome-light-neutral.yaml index c00ce170..368eb864 100644 --- a/themes/monochrome-light-neutral.yaml +++ b/themes/monochrome-light-neutral.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/monochrome-light-slate.yaml b/themes/monochrome-light-slate.yaml index f6354409..39f9fa20 100644 --- a/themes/monochrome-light-slate.yaml +++ b/themes/monochrome-light-slate.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 98.3 black: 0 diff --git a/themes/monochrome-light-stone.yaml b/themes/monochrome-light-stone.yaml index 960d388d..a2549585 100644 --- a/themes/monochrome-light-stone.yaml +++ b/themes/monochrome-light-stone.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 98.3 black: 0 diff --git a/themes/monochrome-light-subtle.yaml b/themes/monochrome-light-subtle.yaml index 0d8799e2..aa60d81c 100644 --- a/themes/monochrome-light-subtle.yaml +++ b/themes/monochrome-light-subtle.yaml @@ -2,7 +2,7 @@ name: "monochrome-light-subtle" source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" - installs: 47933 + installs: 47953 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "indigo" hue: null + pair: null contrast: fg: 79.6 black: 0 diff --git a/themes/monochrome-light-zinc.yaml b/themes/monochrome-light-zinc.yaml index b265f0ed..84b3cfd5 100644 --- a/themes/monochrome-light-zinc.yaml +++ b/themes/monochrome-light-zinc.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 98 black: 0 diff --git a/themes/monochrome-light.yaml b/themes/monochrome-light.yaml index e4c4fc57..fa4d5803 100644 --- a/themes/monochrome-light.yaml +++ b/themes/monochrome-light.yaml @@ -1,49 +1,50 @@ name: "monochrome-light" source: - marketplace_id: "dkamyshov.monochrome" - version: "2.3.3" - installs: 2227 - author: "dkamyshov" - repo: "https://github.com/dkamyshov/monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=dkamyshov.monochrome" + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47953 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" colors: bg: "#EBEBEB" - fg: "#101010" + fg: "#515151" black: "#EBEBEB" - red: "#2B2B2B" - green: "#787878" - yellow: "#101010" - blue: "#9E9E9E" - magenta: "#101010" - cyan: "#525252" - white: "#101010" - brightBlack: "#C5C5C5" - brightRed: "#2B2B2B" - brightGreen: "#787878" - brightYellow: "#101010" - brightBlue: "#9E9E9E" - brightMagenta: "#101010" - brightCyan: "#525252" + red: "#7E7E7E" + green: "#A9A9A9" + yellow: "#525252" + blue: "#BFBFBF" + magenta: "#686868" + cyan: "#939393" + white: "#3C3C3C" + brightBlack: "#D5D5D5" + brightRed: "#7E7E7E" + brightGreen: "#A9A9A9" + brightYellow: "#525252" + brightBlue: "#BFBFBF" + brightMagenta: "#686868" + brightCyan: "#939393" brightWhite: "#101010" meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: - fg: 93.6 + fg: 75.7 black: 0 - red: 89 - green: 58.8 - yellow: 93.6 - blue: 40.2 - magenta: 93.6 - cyan: 75.3 - white: 93.6 - brightBlack: 19.4 - brightRed: 89 - brightGreen: 58.8 - brightYellow: 93.6 - brightBlue: 40.2 - brightMagenta: 93.6 - brightCyan: 75.3 + red: 56 + green: 34.5 + yellow: 75.3 + blue: 22.7 + magenta: 66 + cyan: 45.8 + white: 83.7 + brightBlack: 10.3 + brightRed: 56 + brightGreen: 34.5 + brightYellow: 75.3 + brightBlue: 22.7 + brightMagenta: 66 + brightCyan: 45.8 brightWhite: 93.6 diff --git a/themes/monochrome.yaml b/themes/monochrome.yaml index 295a7bf3..0d55fc65 100644 --- a/themes/monochrome.yaml +++ b/themes/monochrome.yaml @@ -2,7 +2,7 @@ name: "Monochrome" source: marketplace_id: "toufiqahmedshr.monochrome-theme" version: "1.1.0" - installs: 3262 + installs: 3264 author: "Toufiq Ahmed" repo: "https://github.com/toufiq-ahmed/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=toufiqahmedshr.monochrome-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 104.2 black: 7.8 diff --git a/themes/monoclean-light.yaml b/themes/monoclean-light.yaml index 11ffa25e..151ebcc6 100644 --- a/themes/monoclean-light.yaml +++ b/themes/monoclean-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 95.3 black: 95.8 diff --git a/themes/monocr.yaml b/themes/monocr.yaml index b66ae30a..7ede4634 100644 --- a/themes/monocr.yaml +++ b/themes/monocr.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 65.6 black: 0 diff --git a/themes/monocraft.yaml b/themes/monocraft.yaml index c3e6ba9e..2985710b 100644 --- a/themes/monocraft.yaml +++ b/themes/monocraft.yaml @@ -2,7 +2,7 @@ name: "MonoCraft" source: marketplace_id: "cdztt.monocraft" version: "2.1.0" - installs: 3966 + installs: 3970 author: "cdztt" repo: "https://github.com/cdztt/monocraft-VSCodeColorTheme" url: "https://marketplace.visualstudio.com/items?itemName=cdztt.monocraft" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 115 + pair: null contrast: fg: 70.5 black: 0 diff --git a/themes/monoeye.yaml b/themes/monoeye.yaml index 673c2035..a3c896ec 100644 --- a/themes/monoeye.yaml +++ b/themes/monoeye.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 303 + pair: null contrast: fg: 96.7 black: 0 diff --git a/themes/monokai-blue.yaml b/themes/monokai-blue.yaml deleted file mode 100644 index e03b7316..00000000 --- a/themes/monokai-blue.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Monokai +Blue" -source: - marketplace_id: "tw.monokai-accent" - version: "0.0.7" - installs: 13330 - author: "tw" - repo: "https://github.com/tw-studio/monokai-accent" - url: "https://marketplace.visualstudio.com/items?itemName=tw.monokai-accent" -colors: - bg: "#242424" - fg: "#F6F6F6" - black: "#222222" - red: "#FC618D" - green: "#7BD88F" - yellow: "#FCE566" - blue: "#FD9353" - magenta: "#948AE3" - cyan: "#5AD4E6" - white: "#F7F1FF" - brightBlack: "#69676C" - brightRed: "#FC618D" - brightGreen: "#7BD88F" - brightYellow: "#FCE566" - brightBlue: "#FD9353" - brightMagenta: "#948AE3" - brightCyan: "#5AD4E6" - brightWhite: "#F7F1FF" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 99.2 - black: 0 - red: 44.6 - green: 68.5 - yellow: 87.9 - blue: 56.2 - magenta: 42.5 - cyan: 68.3 - white: 97.5 - brightBlack: 21.1 - brightRed: 44.6 - brightGreen: 68.5 - brightYellow: 87.9 - brightBlue: 56.2 - brightMagenta: 42.5 - brightCyan: 68.3 - brightWhite: 97.5 diff --git a/themes/monokai-color-theme-1.yaml b/themes/monokai-color-theme-1.yaml index 49c49146..e115215d 100644 --- a/themes/monokai-color-theme-1.yaml +++ b/themes/monokai-color-theme-1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 113 + pair: null contrast: fg: 106.1 black: 0 diff --git a/themes/monokai-color-theme.yaml b/themes/monokai-color-theme.yaml deleted file mode 100644 index 700019c2..00000000 --- a/themes/monokai-color-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "monokai-color-theme" -source: - marketplace_id: "destcode.monokai-air" - version: "1.0.1" - installs: 214 - author: "destcode" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=destcode.monokai-air" -colors: - bg: "#232421" - fg: "#F8F8F2" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 100.3 - black: 0 - red: 22.9 - green: 51.3 - yellow: 56 - blue: 33 - magenta: 30.5 - cyan: 48.8 - white: 86.8 - brightBlack: 20.4 - brightRed: 35.6 - brightGreen: 75.3 - brightYellow: 82.2 - brightBlue: 48.2 - brightMagenta: 44.9 - brightCyan: 71.7 - brightWhite: 100.3 diff --git a/themes/monokai-dark-green.yaml b/themes/monokai-dark-green.yaml index 24513ba1..87528ef0 100644 --- a/themes/monokai-dark-green.yaml +++ b/themes/monokai-dark-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 68.1 black: 0 diff --git a/themes/monokai-dark.yaml b/themes/monokai-dark.yaml index 578aebec..eb698288 100644 --- a/themes/monokai-dark.yaml +++ b/themes/monokai-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/monokai-deep-dark.yaml b/themes/monokai-deep-dark.yaml index 981fb080..a03ee470 100644 --- a/themes/monokai-deep-dark.yaml +++ b/themes/monokai-deep-dark.yaml @@ -1,11 +1,11 @@ name: "Monokai Deep Dark" source: - marketplace_id: "initialzgq.monokai-deep-dark" - version: "0.1.4" - installs: 604 - author: "initialzgq" - repo: "https://github.com/initialqing/monokai-deep-dark" - url: "https://marketplace.visualstudio.com/items?itemName=initialzgq.monokai-deep-dark" + marketplace_id: "JaimishLakhani.superman-theme" + version: "1.2.0" + installs: 123 + author: "Jaimish Lakhani" + repo: "https://github.com/jaimishlakhani/superman-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JaimishLakhani.superman-theme" colors: bg: "#000000" fg: "#F8F8F2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 103 black: 0 diff --git a/themes/monokai-deep-ocean.yaml b/themes/monokai-deep-ocean.yaml index 0890c272..5a0bf3c2 100644 --- a/themes/monokai-deep-ocean.yaml +++ b/themes/monokai-deep-ocean.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 277 + pair: null contrast: fg: 107.4 black: 10 diff --git a/themes/monokai-drizzle.yaml b/themes/monokai-drizzle.yaml index a4230d8d..af6e52df 100644 --- a/themes/monokai-drizzle.yaml +++ b/themes/monokai-drizzle.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 238 + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/monokai-extended.yaml b/themes/monokai-extended.yaml index 6a168e3f..5f049bcc 100644 --- a/themes/monokai-extended.yaml +++ b/themes/monokai-extended.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 18 + pair: null contrast: fg: 104.7 black: 0 diff --git a/themes/monokai-faded.yaml b/themes/monokai-faded.yaml index e7b80a69..1838a2f0 100644 --- a/themes/monokai-faded.yaml +++ b/themes/monokai-faded.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 101.1 black: 0 diff --git a/themes/monokai-flow.yaml b/themes/monokai-flow.yaml index 23bd8a57..38ac2485 100644 --- a/themes/monokai-flow.yaml +++ b/themes/monokai-flow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 53.5 black: 0 diff --git a/themes/monokai-grey.yaml b/themes/monokai-grey.yaml index 7498c880..5a9dc99e 100644 --- a/themes/monokai-grey.yaml +++ b/themes/monokai-grey.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 84 black: 0 diff --git a/themes/monokai-grs.yaml b/themes/monokai-grs.yaml index dc795a4d..6dc92e0d 100644 --- a/themes/monokai-grs.yaml +++ b/themes/monokai-grs.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 95.9 black: 12.1 diff --git a/themes/monokai-hc-color-theme.yaml b/themes/monokai-hc-color-theme.yaml index 0ce666fc..10cf38db 100644 --- a/themes/monokai-hc-color-theme.yaml +++ b/themes/monokai-hc-color-theme.yaml @@ -2,7 +2,7 @@ name: "monokai-hc-color-theme" source: marketplace_id: "iZDT.theme-monokai-hc" version: "1.0.1" - installs: 5112 + installs: 5113 author: "iZDT" repo: "https://github.com/Simple-Tools/VSCode-MonokaiHC-theme" url: "https://marketplace.visualstudio.com/items?itemName=iZDT.theme-monokai-hc" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 103 black: 0 diff --git a/themes/monokai-japan-color-theme.yaml b/themes/monokai-japan-color-theme.yaml index 6c537fd8..2f5bfc34 100644 --- a/themes/monokai-japan-color-theme.yaml +++ b/themes/monokai-japan-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.8 black: 7.8 diff --git a/themes/monokai-midnight.yaml b/themes/monokai-midnight.yaml index 2cbcbb24..7b32a108 100644 --- a/themes/monokai-midnight.yaml +++ b/themes/monokai-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 90 black: 0 diff --git a/themes/monokai-night-z-blue.yaml b/themes/monokai-night-z-blue.yaml index 4f08ce1d..931e22f6 100644 --- a/themes/monokai-night-z-blue.yaml +++ b/themes/monokai-night-z-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 258 + pair: null contrast: fg: 100.1 black: 0 diff --git a/themes/monokai-night.yaml b/themes/monokai-night.yaml deleted file mode 100644 index 7302f5d8..00000000 --- a/themes/monokai-night.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Monokai Night" -source: - marketplace_id: "jonbellah.monokai-after-dark" - version: "0.1.4" - installs: 1895 - author: "Jon Bellah" - repo: "https://github.com/jonbellah/monokai-after-dark" - url: "https://marketplace.visualstudio.com/items?itemName=jonbellah.monokai-after-dark" -colors: - bg: "#1D232F" - fg: "#A8B5D1" - black: "#111111" - red: "#FC2D1E" - green: "#2FCC71" - yellow: "#F1C40D" - blue: "#3398DB" - magenta: "#6171C4" - cyan: "#0095DE" - white: "#DEE2EA" - brightBlack: "#7992B4" - brightRed: "#FF5874" - brightGreen: "#6AF699" - brightYellow: "#FFFA9E" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#4FF2F8" - brightWhite: "#99A3B8" -meta: - mode: "dark" - accent: "orange" - hue: 264 - contrast: - fg: 59.5 - black: 0 - red: 35.7 - green: 59.1 - yellow: 71.4 - blue: 40.9 - magenta: 28 - cyan: 39.4 - white: 86.4 - brightBlack: 40.1 - brightRed: 43 - brightGreen: 82.9 - brightYellow: 99.4 - brightBlue: 54.4 - brightMagenta: 52.2 - brightCyan: 83.6 - brightWhite: 49.7 diff --git a/themes/monokai-ocean-color-theme.yaml b/themes/monokai-ocean-color-theme.yaml index 60940e3c..1bc32ae8 100644 --- a/themes/monokai-ocean-color-theme.yaml +++ b/themes/monokai-ocean-color-theme.yaml @@ -2,7 +2,7 @@ name: "monokai-ocean-color-theme" source: marketplace_id: "rofrol.monokai-ocean" version: "1.0.6" - installs: 10812 + installs: 10813 author: "rofrol" repo: "https://github.com/rofrol/monokai-ocean" url: "https://marketplace.visualstudio.com/items?itemName=rofrol.monokai-ocean" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 266 + pair: null contrast: fg: 66.8 black: 0 diff --git a/themes/monokai-octagon.yaml b/themes/monokai-octagon.yaml index 137c2d35..0b7e84ec 100644 --- a/themes/monokai-octagon.yaml +++ b/themes/monokai-octagon.yaml @@ -2,7 +2,7 @@ name: "Monokai Octagon" source: marketplace_id: "mhmdsulimn.msdev-vscode" version: "1.6.0" - installs: 456 + installs: 457 author: "Mohamed Suliman" repo: "https://github.com/mhmdsulimn/MS-Dev-Theme" url: "https://marketplace.visualstudio.com/items?itemName=mhmdsulimn.msdev-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 93.5 black: 0 diff --git a/themes/monokai-okean.yaml b/themes/monokai-okean.yaml index d2716122..c580e983 100644 --- a/themes/monokai-okean.yaml +++ b/themes/monokai-okean.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 228 + pair: null contrast: fg: 75.3 black: 0 diff --git a/themes/monokai-original-sublime-theme.yaml b/themes/monokai-original-sublime-theme.yaml index a66cb057..4aa29dd0 100644 --- a/themes/monokai-original-sublime-theme.yaml +++ b/themes/monokai-original-sublime-theme.yaml @@ -2,7 +2,7 @@ name: "monokai-original-sublime-theme" source: marketplace_id: "badrouu-laabed.monokai-original-sublime-theme" version: "1.0.0" - installs: 13536 + installs: 13539 author: "badrouu-laabed" repo: "https://github.com/Badrouu17/monokai-original-sublime-theme" url: "https://marketplace.visualstudio.com/items?itemName=badrouu-laabed.monokai-original-sublime-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 115 + pair: null contrast: fg: 99.6 black: 19.7 diff --git a/themes/monokai-prime.yaml b/themes/monokai-prime.yaml index 7dafe975..94a4d7cc 100644 --- a/themes/monokai-prime.yaml +++ b/themes/monokai-prime.yaml @@ -2,7 +2,7 @@ name: "monokai-prime" source: marketplace_id: "nhoekstra.monokai-prime" version: "0.0.2" - installs: 681 + installs: 682 author: "Nicholas Hoekstra" repo: "https://github.com/nhoekstra/monokai-prime" url: "https://marketplace.visualstudio.com/items?itemName=nhoekstra.monokai-prime" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.1 black: 0 diff --git a/themes/monokai-pro.yaml b/themes/monokai-pro.yaml index 1ef1654e..b7564774 100644 --- a/themes/monokai-pro.yaml +++ b/themes/monokai-pro.yaml @@ -1,15 +1,15 @@ name: "Monokai Pro" source: - marketplace_id: "AgraeonLabs.dev-themes" - version: "0.1.0" - installs: 283 - author: "Agraeon Labs" - repo: "https://github.com/adiagcodelance/VS-Code-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" + marketplace_id: "shaobeichen.gradient-theme" + version: "1.19.0" + installs: 24140 + author: "shaobeichen" + repo: "https://github.com/shaobeichen/gradient-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shaobeichen.gradient-theme" colors: bg: "#2D2A2E" fg: "#FCFCFA" - black: "#2D2A2E" + black: "#403E41" red: "#FF6188" green: "#A9DC76" yellow: "#FFD866" @@ -17,7 +17,7 @@ colors: magenta: "#AB9DF2" cyan: "#78DCE8" white: "#FCFCFA" - brightBlack: "#2D2A2E" + brightBlack: "#727072" brightRed: "#FF6188" brightGreen: "#A9DC76" brightYellow: "#FFD866" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.8 black: 0 @@ -39,7 +40,7 @@ meta: magenta: 51.2 cyan: 72.4 white: 101.8 - brightBlack: 0 + brightBlack: 23.6 brightRed: 43.8 brightGreen: 72.3 brightYellow: 81.3 diff --git a/themes/monokai-rain.yaml b/themes/monokai-rain.yaml index c822c42a..b70698d3 100644 --- a/themes/monokai-rain.yaml +++ b/themes/monokai-rain.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 248 + pair: null contrast: fg: 81 black: 0 diff --git a/themes/monokai-seti-dark.yaml b/themes/monokai-seti-dark.yaml index f7283c41..595d3cec 100644 --- a/themes/monokai-seti-dark.yaml +++ b/themes/monokai-seti-dark.yaml @@ -2,7 +2,7 @@ name: "monokai-seti-dark" source: marketplace_id: "adityavm.vscode-monokai-seti" version: "0.0.8" - installs: 19546 + installs: 19548 author: "Aditya Mukherjee" repo: "https://github.com/adityavm/vscode-monokai-seti" url: "https://marketplace.visualstudio.com/items?itemName=adityavm.vscode-monokai-seti" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/monokai-seti-light.yaml b/themes/monokai-seti-light.yaml index 7914e7e6..a8f3dda5 100644 --- a/themes/monokai-seti-light.yaml +++ b/themes/monokai-seti-light.yaml @@ -2,7 +2,7 @@ name: "monokai-seti-light" source: marketplace_id: "adityavm.vscode-monokai-seti" version: "0.0.8" - installs: 19546 + installs: 19548 author: "Aditya Mukherjee" repo: "https://github.com/adityavm/vscode-monokai-seti" url: "https://marketplace.visualstudio.com/items?itemName=adityavm.vscode-monokai-seti" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 101.8 black: 106 diff --git a/themes/monokai-sharp.yaml b/themes/monokai-sharp.yaml index 4160e080..4b0103ec 100644 --- a/themes/monokai-sharp.yaml +++ b/themes/monokai-sharp.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 92 black: 0 diff --git a/themes/monokai-soda-darker.yaml b/themes/monokai-soda-darker.yaml index 0b8b4540..7f11d237 100644 --- a/themes/monokai-soda-darker.yaml +++ b/themes/monokai-soda-darker.yaml @@ -2,7 +2,7 @@ name: "Monokai soda darker" source: marketplace_id: "carlossantos74.monokai-classic-darker" version: "0.0.6" - installs: 6557 + installs: 6558 author: "Carlos Santos" repo: "https://github.com/carlossantos74/Monokai-Theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossantos74.monokai-classic-darker" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/monokai-storm.yaml b/themes/monokai-storm.yaml index 000c9da2..8b312882 100644 --- a/themes/monokai-storm.yaml +++ b/themes/monokai-storm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 246 + pair: null contrast: fg: 101.8 black: 0 diff --git a/themes/monokai-supersaturated.yaml b/themes/monokai-supersaturated.yaml index 04b466d8..ec57e2f3 100644 --- a/themes/monokai-supersaturated.yaml +++ b/themes/monokai-supersaturated.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 75.7 black: 16.1 diff --git a/themes/monokai-tornado.yaml b/themes/monokai-tornado.yaml index f34fe54d..7c92d225 100644 --- a/themes/monokai-tornado.yaml +++ b/themes/monokai-tornado.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 103.2 black: 0 diff --git a/themes/monokai-underdark-mk.yaml b/themes/monokai-underdark-mk.yaml index b8b9f9ee..e1277e08 100644 --- a/themes/monokai-underdark-mk.yaml +++ b/themes/monokai-underdark-mk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 103.8 black: 7.3 diff --git a/themes/monokai-underdark.yaml b/themes/monokai-underdark.yaml index afa2933d..f8192d1a 100644 --- a/themes/monokai-underdark.yaml +++ b/themes/monokai-underdark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/monokai-unified.yaml b/themes/monokai-unified.yaml index 9a2f3049..9b526d03 100644 --- a/themes/monokai-unified.yaml +++ b/themes/monokai-unified.yaml @@ -1,11 +1,11 @@ name: "Monokai++ Unified" source: - marketplace_id: "dcasella.monokai-plusplus" - version: "2.0.4" - installs: 246540 - author: "Davide Casella" - repo: "https://github.com/dcasella/monokai-plusplus" - url: "https://marketplace.visualstudio.com/items?itemName=dcasella.monokai-plusplus" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#1C1C1C" fg: "#CCCCCC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 74.1 black: 0 diff --git a/themes/monokai.yaml b/themes/monokai.yaml deleted file mode 100644 index 1406ef85..00000000 --- a/themes/monokai.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Monokai--" -source: - marketplace_id: "Cydo.monokai-minus-minus" - version: "0.1.0" - installs: 187 - author: "Cydo" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Cydo.monokai-minus-minus" -colors: - bg: "#212121" - fg: "#EEFFFF" - black: "#1C1C1C" - red: "#E62A19" - green: "#2BE98A" - yellow: "#E6DB74" - blue: "#328EFF" - magenta: "#F92672" - cyan: "#49E0FD" - white: "#CCCCCC" - brightBlack: "#696D70" - brightRed: "#E62A19" - brightGreen: "#2BE98A" - brightYellow: "#E6DB74" - brightBlue: "#328EFF" - brightMagenta: "#F92672" - brightCyan: "#49E0FD" - brightWhite: "#F1F1F1" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 103.3 - black: 0 - red: 30.4 - green: 74.3 - yellow: 80.8 - blue: 40.1 - magenta: 36 - cyan: 75.1 - white: 73.4 - brightBlack: 23.5 - brightRed: 30.4 - brightGreen: 74.3 - brightYellow: 80.8 - brightBlue: 40.1 - brightMagenta: 36 - brightCyan: 75.1 - brightWhite: 96.4 diff --git a/themes/monokai22.yaml b/themes/monokai22.yaml index 61ae4e8c..abe1b289 100644 --- a/themes/monokai22.yaml +++ b/themes/monokai22.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.1 black: 0 diff --git a/themes/monokaiju.yaml b/themes/monokaiju.yaml index 4e81f705..ea3a0d9e 100644 --- a/themes/monokaiju.yaml +++ b/themes/monokaiju.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.3 black: 0 diff --git a/themes/monokaisgq.yaml b/themes/monokaisgq.yaml index 8855435c..837430ca 100644 --- a/themes/monokaisgq.yaml +++ b/themes/monokaisgq.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 92.2 black: 0 diff --git a/themes/monokaizen.yaml b/themes/monokaizen.yaml index df5e2652..e53a579a 100644 --- a/themes/monokaizen.yaml +++ b/themes/monokaizen.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 115 + pair: null contrast: fg: 99.6 black: 0 diff --git a/themes/monokard.yaml b/themes/monokard.yaml index 15673b6a..00de27b3 100644 --- a/themes/monokard.yaml +++ b/themes/monokard.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 84 black: 0 diff --git a/themes/monokong.yaml b/themes/monokong.yaml index 09204610..ee3ec4e4 100644 --- a/themes/monokong.yaml +++ b/themes/monokong.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.1 black: 0 diff --git a/themes/monokuro-amber.yaml b/themes/monokuro-amber.yaml index eb81c7f2..4239a6d5 100644 --- a/themes/monokuro-amber.yaml +++ b/themes/monokuro-amber.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 76.4 black: 0 diff --git a/themes/monolite.yaml b/themes/monolite.yaml index 8284600c..722ece4f 100644 --- a/themes/monolite.yaml +++ b/themes/monolite.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 106.2 black: 0 diff --git a/themes/monos-blac.yaml b/themes/monos-blac.yaml index a1db1d13..65714acd 100644 --- a/themes/monos-blac.yaml +++ b/themes/monos-blac.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 49.9 black: 0 diff --git a/themes/monospace-dark.yaml b/themes/monospace-dark.yaml index f7b9a128..9e028a7d 100644 --- a/themes/monospace-dark.yaml +++ b/themes/monospace-dark.yaml @@ -2,7 +2,7 @@ name: "Monospace Dark" source: marketplace_id: "keksiqc.idx-monospace-theme" version: "1.5.0" - installs: 31573 + installs: 31590 author: "Keksi" repo: "https://github.com/keksiqc/monospace-theme" url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 258 + pair: "Monospace Light" contrast: fg: 84.9 black: 33.1 diff --git a/themes/monospace-light.yaml b/themes/monospace-light.yaml index 0f1f277b..fcac9abc 100644 --- a/themes/monospace-light.yaml +++ b/themes/monospace-light.yaml @@ -2,7 +2,7 @@ name: "Monospace Light" source: marketplace_id: "keksiqc.idx-monospace-theme" version: "1.5.0" - installs: 31573 + installs: 31590 author: "Keksi" repo: "https://github.com/keksiqc/monospace-theme" url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Monospace Dark" contrast: fg: 101.4 black: 95 diff --git a/themes/monotone.yaml b/themes/monotone.yaml deleted file mode 100644 index cb60e04b..00000000 --- a/themes/monotone.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "monotone" -source: - marketplace_id: "0x706b-extensions.monotone-vscode-theme" - version: "0.0.3" - installs: 1725 - author: "0x706b" - repo: "https://github.com/0x706b/monotone-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=0x706b-extensions.monotone-vscode-theme" -colors: - bg: "#121111" - fg: "#BEBABA" - black: "#222020" - red: "#A54434" - green: "#7FAC71" - yellow: "#D3CFCF" - blue: "#9D9695" - magenta: "#9D9695" - cyan: "#9D9695" - white: "#9D9695" - brightBlack: "#5F5959" - brightRed: "#FF2D3C" - brightGreen: "#D3CFCF" - brightYellow: "#FFAA23" - brightBlue: "#7488AD" - brightMagenta: "#D3CFCF" - brightCyan: "#D3CFCF" - brightWhite: "#D3CFCF" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 65.1 - black: 0 - red: 21.8 - green: 50.5 - yellow: 77.5 - blue: 45.9 - magenta: 45.9 - cyan: 45.9 - white: 45.9 - brightBlack: 17.7 - brightRed: 38.7 - brightGreen: 77.5 - brightYellow: 66 - brightBlue: 37.8 - brightMagenta: 77.5 - brightCyan: 77.5 - brightWhite: 77.5 diff --git a/themes/monrch-darc.yaml b/themes/monrch-darc.yaml index abf391dc..14d6c71a 100644 --- a/themes/monrch-darc.yaml +++ b/themes/monrch-darc.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 294 + pair: null contrast: fg: 83.8 black: 0 diff --git a/themes/montana.yaml b/themes/montana.yaml index 6027d91e..2b93d9e1 100644 --- a/themes/montana.yaml +++ b/themes/montana.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 276 + pair: null contrast: fg: 95.2 black: 36.7 diff --git a/themes/monzo-contrast.yaml b/themes/monzo-contrast.yaml index 45359ffd..6de6d23e 100644 --- a/themes/monzo-contrast.yaml +++ b/themes/monzo-contrast.yaml @@ -1,11 +1,11 @@ name: "monzo-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0B1421" fg: "#B0CBF4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 258 + pair: null contrast: fg: 73.2 black: 0 diff --git a/themes/monzo-light.yaml b/themes/monzo-light.yaml index a7076801..3d444bdb 100644 --- a/themes/monzo-light.yaml +++ b/themes/monzo-light.yaml @@ -1,11 +1,11 @@ name: "monzo-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#5A79A8" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 70.7 black: 0 diff --git a/themes/monzo.yaml b/themes/monzo.yaml index b878b24e..e93fbd39 100644 --- a/themes/monzo.yaml +++ b/themes/monzo.yaml @@ -1,11 +1,11 @@ name: "monzo" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#15243B" fg: "#B0CBF4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 259 + pair: null contrast: fg: 71.2 black: 0 diff --git a/themes/moon-light-theme.yaml b/themes/moon-light-theme.yaml index 750ca355..ff8fa921 100644 --- a/themes/moon-light-theme.yaml +++ b/themes/moon-light-theme.yaml @@ -2,7 +2,7 @@ name: "Moon Light Theme" source: marketplace_id: "mukunthan.moon-light-theme" version: "0.0.1" - installs: 3495 + installs: 3498 author: "mukunthan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mukunthan.moon-light-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 258 + pair: null contrast: fg: 31.8 black: 0 diff --git a/themes/moon-night.yaml b/themes/moon-night.yaml index 8a4c6337..0d22cc37 100644 --- a/themes/moon-night.yaml +++ b/themes/moon-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 272 + pair: null contrast: fg: 107.8 black: 0 diff --git a/themes/moon-purple.yaml b/themes/moon-purple.yaml index 3a38a530..b68bcb28 100644 --- a/themes/moon-purple.yaml +++ b/themes/moon-purple.yaml @@ -2,7 +2,7 @@ name: "Moon Purple" source: marketplace_id: "Imagineee.moon-purple" version: "1.0.3" - installs: 12906 + installs: 12916 author: "Imagineee" repo: "https://github.com/imagineeeinc/Moon-Purple" url: "https://marketplace.visualstudio.com/items?itemName=Imagineee.moon-purple" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 312 + pair: null contrast: fg: 107.8 black: 0 diff --git a/themes/moon-violet-dark-plus.yaml b/themes/moon-violet-dark-plus.yaml index d7db7927..bf2d58e1 100644 --- a/themes/moon-violet-dark-plus.yaml +++ b/themes/moon-violet-dark-plus.yaml @@ -2,7 +2,7 @@ name: "Moon Violet Dark Plus" source: marketplace_id: "moondevaa.moon-violet-dark-plus" version: "0.1.9" - installs: 8121 + installs: 8129 author: "moondevaa" repo: "https://github.com/AaBbdev29/moon-violet-dark-plus" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.moon-violet-dark-plus" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 91.1 black: 0 diff --git a/themes/moonbloom-theme-official.yaml b/themes/moonbloom-theme-official.yaml index 0e8c7181..a9b775d8 100644 --- a/themes/moonbloom-theme-official.yaml +++ b/themes/moonbloom-theme-official.yaml @@ -2,7 +2,7 @@ name: "Moonbloom Theme Official" source: marketplace_id: "Moonbloom.moonbloom-theme" version: "1.1.2" - installs: 837 + installs: 838 author: "Moonbloom" repo: "https://github.com/moonbloom-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=Moonbloom.moonbloom-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 280 + pair: null contrast: fg: 78.3 black: 0 diff --git a/themes/moonerized-dark.yaml b/themes/moonerized-dark.yaml index f1a08fc1..d885e7b1 100644 --- a/themes/moonerized-dark.yaml +++ b/themes/moonerized-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 255 + pair: "Moonerized Light" contrast: fg: 82.4 black: 0 diff --git a/themes/moonerized-light.yaml b/themes/moonerized-light.yaml index 043a006e..ec9757b9 100644 --- a/themes/moonerized-light.yaml +++ b/themes/moonerized-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: "Moonerized Dark" contrast: fg: 75.9 black: 101.7 diff --git a/themes/moongate-theme-dark.yaml b/themes/moongate-theme-dark.yaml index 7f299563..ce6080c7 100644 --- a/themes/moongate-theme-dark.yaml +++ b/themes/moongate-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 266 + pair: "Moongate Theme Light" contrast: fg: 91.4 black: 0 diff --git a/themes/moongate-theme-light.yaml b/themes/moongate-theme-light.yaml index fc15ba09..5e1c9614 100644 --- a/themes/moongate-theme-light.yaml +++ b/themes/moongate-theme-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Moongate Theme Dark" contrast: fg: 98.3 black: 98.3 diff --git a/themes/moonkai.yaml b/themes/moonkai.yaml index 8f662760..2991ad1c 100644 --- a/themes/moonkai.yaml +++ b/themes/moonkai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 269 + pair: null contrast: fg: 94 black: 0 diff --git a/themes/moonlight-ii.yaml b/themes/moonlight-ii.yaml index 6b36a3f6..0d05524d 100644 --- a/themes/moonlight-ii.yaml +++ b/themes/moonlight-ii.yaml @@ -2,7 +2,7 @@ name: "Moonlight II" source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" - installs: 3734 + installs: 3736 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 77.2 black: 0 diff --git a/themes/moonlight.yaml b/themes/moonlight.yaml index 1e53609b..7d5aeadc 100644 --- a/themes/moonlight.yaml +++ b/themes/moonlight.yaml @@ -2,7 +2,7 @@ name: "Moonlight" source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" - installs: 3734 + installs: 3736 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 279 + pair: null contrast: fg: 59.8 black: 0 diff --git a/themes/moonokai.yaml b/themes/moonokai.yaml index eefbd72b..383a5b14 100644 --- a/themes/moonokai.yaml +++ b/themes/moonokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 107.3 black: 0 diff --git a/themes/morass-contrast.yaml b/themes/morass-contrast.yaml index 982af1e3..0d25e2af 100644 --- a/themes/morass-contrast.yaml +++ b/themes/morass-contrast.yaml @@ -1,11 +1,11 @@ name: "morass-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#1A1F1D" fg: "#E4E3E1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 88 black: 0 diff --git a/themes/morass-light.yaml b/themes/morass-light.yaml index 453824d9..49ad525f 100644 --- a/themes/morass-light.yaml +++ b/themes/morass-light.yaml @@ -1,11 +1,11 @@ name: "morass-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#444444" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/morass.yaml b/themes/morass.yaml index b6a9ae56..c8d59838 100644 --- a/themes/morass.yaml +++ b/themes/morass.yaml @@ -1,11 +1,11 @@ name: "morass" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#313A36" fg: "#E4E3E1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 167 + pair: null contrast: fg: 82.5 black: 0 diff --git a/themes/more-purple.yaml b/themes/more-purple.yaml index 8fd5ac38..556d8758 100644 --- a/themes/more-purple.yaml +++ b/themes/more-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 311 + pair: null contrast: fg: 24.1 black: 0 diff --git a/themes/morgan-codes.yaml b/themes/morgan-codes.yaml index 96a16595..03fb9342 100644 --- a/themes/morgan-codes.yaml +++ b/themes/morgan-codes.yaml @@ -2,7 +2,7 @@ name: "morgan.codes" source: marketplace_id: "morgan-codes.morgan-codes-vscode-theme" version: "0.0.5" - installs: 49373 + installs: 49380 author: "morgan-codes" repo: "https://github.com/morganrmarie/morgancodes-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=morgan-codes.morgan-codes-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 56.4 black: 0 diff --git a/themes/mori-keycaps.yaml b/themes/mori-keycaps.yaml index dcf7d5ba..4d4977e6 100644 --- a/themes/mori-keycaps.yaml +++ b/themes/mori-keycaps.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 37.9 black: 0 diff --git a/themes/mori.yaml b/themes/mori.yaml index 52b27ccd..a60a105d 100644 --- a/themes/mori.yaml +++ b/themes/mori.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 100.4 black: 100.4 diff --git a/themes/morning-mist.yaml b/themes/morning-mist.yaml index 9076801b..ec839e03 100644 --- a/themes/morning-mist.yaml +++ b/themes/morning-mist.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.2 black: 92.2 diff --git a/themes/morning-mocha.yaml b/themes/morning-mocha.yaml index 8ef42b36..b07c3700 100644 --- a/themes/morning-mocha.yaml +++ b/themes/morning-mocha.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 78 + pair: null contrast: fg: 87.5 black: 87.5 diff --git a/themes/morose-theme.yaml b/themes/morose-theme.yaml index efeac45d..de3bf395 100644 --- a/themes/morose-theme.yaml +++ b/themes/morose-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.2 black: 0 diff --git a/themes/mosaic.yaml b/themes/mosaic.yaml index ed18a95b..226f7667 100644 --- a/themes/mosaic.yaml +++ b/themes/mosaic.yaml @@ -2,7 +2,7 @@ name: "Mosaic" source: marketplace_id: "vitoravelino.mosaic" version: "0.0.1" - installs: 11257 + installs: 11258 author: "vitoravelino" repo: "https://github.com/vitoravelino/vscode-mosaic" url: "https://marketplace.visualstudio.com/items?itemName=vitoravelino.mosaic" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 267 + pair: null contrast: fg: 80.1 black: 0 diff --git a/themes/mosmmy.yaml b/themes/mosmmy.yaml index beb3d0e1..91787664 100644 --- a/themes/mosmmy.yaml +++ b/themes/mosmmy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 100.5 black: 0 diff --git a/themes/moss-oracle.yaml b/themes/moss-oracle.yaml index a732feaf..5407b1bf 100644 --- a/themes/moss-oracle.yaml +++ b/themes/moss-oracle.yaml @@ -2,7 +2,7 @@ name: "Moss Oracle" source: marketplace_id: "InnaSodri.moss-oracle-theme" version: "1.0.0" - installs: 186 + installs: 187 author: "Inna Sodri" repo: "https://github.com/InnaSodri/moss-oracle" url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.moss-oracle-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 151 + pair: null contrast: fg: 82.7 black: 0 diff --git a/themes/mossframe-light.yaml b/themes/mossframe-light.yaml index 04adbff2..b00973ce 100644 --- a/themes/mossframe-light.yaml +++ b/themes/mossframe-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 100.2 black: 100.2 diff --git a/themes/mossframe.yaml b/themes/mossframe.yaml index 9bd188cc..39535a3f 100644 --- a/themes/mossframe.yaml +++ b/themes/mossframe.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 29.3 black: 0 diff --git a/themes/motion-blue-thin-brackets.yaml b/themes/motion-blue-thin-brackets.yaml deleted file mode 100644 index 7d934dee..00000000 --- a/themes/motion-blue-thin-brackets.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Motion Blue (Thin Brackets)" -source: - marketplace_id: "5ett.motion-blue" - version: "0.0.7" - installs: 534 - author: "5ett" - repo: "https://github.com/5ett/motion-blue" - url: "https://marketplace.visualstudio.com/items?itemName=5ett.motion-blue" -colors: - bg: "#183752" - fg: "#BBD5ED" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 247 - contrast: - fg: 72.6 - black: 0 - red: 21.2 - green: 47.5 - yellow: 80.1 - blue: 21.9 - magenta: 24.2 - cyan: 42 - white: 84.5 - brightBlack: 16.5 - brightRed: 33 - brightGreen: 58 - brightYellow: 90.1 - brightBlue: 34.5 - brightMagenta: 39.8 - brightCyan: 49.9 - brightWhite: 84.5 diff --git a/themes/mount-kalaga-noir.yaml b/themes/mount-kalaga-noir.yaml index a09ed188..82168693 100644 --- a/themes/mount-kalaga-noir.yaml +++ b/themes/mount-kalaga-noir.yaml @@ -2,7 +2,7 @@ name: "Mount Kalaga Noir" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 144 + pair: null contrast: fg: 95.5 black: 0 diff --git a/themes/mountain-theme.yaml b/themes/mountain-theme.yaml index 7c92f914..76f2f045 100644 --- a/themes/mountain-theme.yaml +++ b/themes/mountain-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 97.7 black: 0 diff --git a/themes/mountain.yaml b/themes/mountain.yaml deleted file mode 100644 index f4403f90..00000000 --- a/themes/mountain.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Mountain" -source: - marketplace_id: "securisec.hapsida-securisec" - version: "0.0.30" - installs: 226 - author: "securisec" - repo: "https://github.com/securisec/code-hapsida" - url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" -colors: - bg: "#0C0C0C" - fg: "#E7E7E7" - black: "#000000" - red: "#C49EA0" - green: "#9EC49F" - yellow: "#CEB188" - blue: "#9EC3C4" - magenta: "#FB94FF" - cyan: "#80FCFF" - white: "#FFFFFF" - brightBlack: "#0050A4" - brightRed: "#FF628C" - brightGreen: "#3AD900" - brightYellow: "#CEB188" - brightBlue: "#0088FF" - brightMagenta: "#FB94FF" - brightCyan: "#80FCFF" - brightWhite: "#193549" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 92.1 - black: 0 - red: 54.5 - green: 65.1 - yellow: 62.3 - blue: 66.1 - magenta: 65.1 - cyan: 93.5 - white: 107.7 - brightBlack: 15.4 - brightRed: 47.9 - brightGreen: 67.1 - brightYellow: 62.3 - brightBlue: 39.5 - brightMagenta: 65.1 - brightCyan: 93.5 - brightWhite: 0 diff --git a/themes/mourning.yaml b/themes/mourning.yaml index 7c3fe76c..6a79ff70 100644 --- a/themes/mourning.yaml +++ b/themes/mourning.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 38 black: 0 diff --git a/themes/mowgli.yaml b/themes/mowgli.yaml index 87463892..4cff6119 100644 --- a/themes/mowgli.yaml +++ b/themes/mowgli.yaml @@ -2,7 +2,7 @@ name: "Mowgli" source: marketplace_id: "wapenshaw.mowgli" version: "1.1.4" - installs: 820 + installs: 821 author: "Siddharth Abbineni" repo: "https://github.com/wapenshaw/mowgli/" url: "https://marketplace.visualstudio.com/items?itemName=wapenshaw.mowgli" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 237 + pair: null contrast: fg: 84.6 black: 0 diff --git a/themes/mr-code-black.yaml b/themes/mr-code-black.yaml index 53e19445..dcff76fd 100644 --- a/themes/mr-code-black.yaml +++ b/themes/mr-code-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85.9 black: 0 diff --git a/themes/mr-code-gunmetal.yaml b/themes/mr-code-gunmetal.yaml index f9d27133..7dae6bfd 100644 --- a/themes/mr-code-gunmetal.yaml +++ b/themes/mr-code-gunmetal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 263 + pair: null contrast: fg: 81.5 black: 0 diff --git a/themes/ms-dev-theme.yaml b/themes/ms-dev-theme.yaml index 00967b2f..13f41cc5 100644 --- a/themes/ms-dev-theme.yaml +++ b/themes/ms-dev-theme.yaml @@ -2,7 +2,7 @@ name: "MS Dev Theme" source: marketplace_id: "mhmdsulimn.msdev-vscode" version: "1.6.0" - installs: 456 + installs: 457 author: "Mohamed Suliman" repo: "https://github.com/mhmdsulimn/MS-Dev-Theme" url: "https://marketplace.visualstudio.com/items?itemName=mhmdsulimn.msdev-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 258 + pair: null contrast: fg: 77.6 black: 0 diff --git a/themes/mt-doom-theme.yaml b/themes/mt-doom-theme.yaml index 022d8d82..0bbf3ae7 100644 --- a/themes/mt-doom-theme.yaml +++ b/themes/mt-doom-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/mud-contrast.yaml b/themes/mud-contrast.yaml index 74698db0..f8906925 100644 --- a/themes/mud-contrast.yaml +++ b/themes/mud-contrast.yaml @@ -1,11 +1,11 @@ name: "mud-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0D0B0B" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/mud-light.yaml b/themes/mud-light.yaml index 52da9b81..55746240 100644 --- a/themes/mud-light.yaml +++ b/themes/mud-light.yaml @@ -1,11 +1,11 @@ name: "mud-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#EDE8E8" fg: "#555555" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 73 black: 0 diff --git a/themes/mud-theme.yaml b/themes/mud-theme.yaml index e9af9d15..1e7dc267 100644 --- a/themes/mud-theme.yaml +++ b/themes/mud-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/mud.yaml b/themes/mud.yaml index 8cb4f187..59c1d509 100644 --- a/themes/mud.yaml +++ b/themes/mud.yaml @@ -1,11 +1,11 @@ name: "mud" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#403635" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 25 + pair: null contrast: fg: 100.5 black: 0 diff --git a/themes/muromachi.yaml b/themes/muromachi.yaml index d93049c9..80cfa558 100644 --- a/themes/muromachi.yaml +++ b/themes/muromachi.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 101.2 black: 0 diff --git a/themes/murora-light-lite.yaml b/themes/murora-light-lite.yaml index 1e4b4ef0..8606d935 100644 --- a/themes/murora-light-lite.yaml +++ b/themes/murora-light-lite.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.9 black: 98.7 diff --git a/themes/murtadapy-green.yaml b/themes/murtadapy-green.yaml index ff67b05c..6cdde7d0 100644 --- a/themes/murtadapy-green.yaml +++ b/themes/murtadapy-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/muted-mirage.yaml b/themes/muted-mirage.yaml index 7180de7f..929b9c0e 100644 --- a/themes/muted-mirage.yaml +++ b/themes/muted-mirage.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 267 + pair: null contrast: fg: 36.4 black: 0 diff --git a/themes/mutenight.yaml b/themes/mutenight.yaml index 145b3d76..5e1767f3 100644 --- a/themes/mutenight.yaml +++ b/themes/mutenight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 72.4 black: 27.4 diff --git a/themes/mwone-dark.yaml b/themes/mwone-dark.yaml index f3601a69..93ba6bbe 100644 --- a/themes/mwone-dark.yaml +++ b/themes/mwone-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 0 diff --git a/themes/my-custom-theme.yaml b/themes/my-custom-theme.yaml index 1ad95b45..5b62f861 100644 --- a/themes/my-custom-theme.yaml +++ b/themes/my-custom-theme.yaml @@ -1,49 +1,50 @@ name: "My Custom Theme" source: - marketplace_id: "GautamSagarMallela.my-custom-theme-extension" - version: "1.0.2" - installs: 219 - author: "Gautam Sagar Mallela" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=GautamSagarMallela.my-custom-theme-extension" + marketplace_id: "daniel-duc.daniel-yaruna-theme" + version: "1.3.2" + installs: 255 + author: "Daniel Duc" + repo: "https://github.com/binhduc1211/daniel-yaruna-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" colors: - bg: "#1E1E1E" - fg: "#D4D4D4" - black: "#000000" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFFF00" - blue: "#0000FF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#D4D4D4" - brightBlack: "#666666" - brightRed: "#FF6666" - brightGreen: "#66FF66" - brightYellow: "#FFFF66" - brightBlue: "#6666FF" - brightMagenta: "#FF66FF" - brightCyan: "#66FFFF" - brightWhite: "#D4D4D4" + bg: "#2E3440" + fg: "#E5E9F0" + black: "#373D49" + red: "#EBCB8B" + green: "#A3BE8C" + yellow: "#8FBCBB" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#C7CBD2" + white: "#E5E9F0" + brightBlack: "#616E88" + brightRed: "#EBCB8B" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#88C0D0" + brightMagenta: "#B48EAD" + brightCyan: "#C7CBD2" + brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "pink" - hue: null + accent: "yellow" + hue: 264 + pair: null contrast: - fg: 78.7 + fg: 87.3 black: 0 - red: 35.7 - green: 84.6 - yellow: 100.9 - blue: 14.4 - magenta: 44.4 - cyan: 90.3 - white: 78.7 - brightBlack: 21.2 - brightRed: 46.1 - brightGreen: 87.2 - brightYellow: 101.4 - brightBlue: 30.7 - brightMagenta: 53 - brightCyan: 92.2 - brightWhite: 78.7 + red: 71.3 + green: 56.6 + yellow: 55.5 + blue: 43.6 + magenta: 41.4 + cyan: 68.8 + white: 87.3 + brightBlack: 20.3 + brightRed: 71.3 + brightGreen: 56.6 + brightYellow: 71.3 + brightBlue: 57.6 + brightMagenta: 41.4 + brightCyan: 68.8 + brightWhite: 101.8 diff --git a/themes/my-dark-theme-refined-updated.yaml b/themes/my-dark-theme-refined-updated.yaml index 3eab0e5b..b9632d5f 100644 --- a/themes/my-dark-theme-refined-updated.yaml +++ b/themes/my-dark-theme-refined-updated.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 249 + pair: null contrast: fg: 38.6 black: 0 diff --git a/themes/my-dark-theme.yaml b/themes/my-dark-theme.yaml deleted file mode 100644 index 3a2dc445..00000000 --- a/themes/my-dark-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "my-dark-theme" -source: - marketplace_id: "kdinesh24.t3-dark-theme" - version: "0.1.1" - installs: 38 - author: "kdinesh24" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=kdinesh24.t3-dark-theme" -colors: - bg: "#1A151F" - fg: "#E5E5E5" - black: "#201B25" - red: "#EF4444" - green: "#96D0BB" - yellow: "#FFBC9E" - blue: "#9EE9F7" - magenta: "#E07AA4" - cyan: "#8BC0AE" - white: "#E5E5E5" - brightBlack: "#6A6572" - brightRed: "#F87171" - brightGreen: "#A7F3D0" - brightYellow: "#FED7AA" - brightBlue: "#BFDBFE" - brightMagenta: "#CC93CA" - brightCyan: "#A7F3D0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 307 - contrast: - fg: 90 - black: 0 - red: 36.8 - green: 70 - yellow: 74.2 - blue: 85.1 - magenta: 47.2 - cyan: 61.4 - white: 90 - brightBlack: 22.5 - brightRed: 48.1 - brightGreen: 88.9 - brightYellow: 85.3 - brightBlue: 82.1 - brightMagenta: 53 - brightCyan: 88.9 - brightWhite: 106.9 diff --git a/themes/my-first-visual-studio-theme.yaml b/themes/my-first-visual-studio-theme.yaml index b207f480..1da0ab2b 100644 --- a/themes/my-first-visual-studio-theme.yaml +++ b/themes/my-first-visual-studio-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 67.3 black: 0 diff --git a/themes/my-hero-academia-deku-plus-ultra.yaml b/themes/my-hero-academia-deku-plus-ultra.yaml index b4a73659..b5fe1d16 100644 --- a/themes/my-hero-academia-deku-plus-ultra.yaml +++ b/themes/my-hero-academia-deku-plus-ultra.yaml @@ -2,7 +2,7 @@ name: "My Hero Academia (Deku Plus Ultra)" source: marketplace_id: "LunaCode.anime-theme" version: "0.0.3" - installs: 373 + installs: 377 author: "LunaCode" repo: "https://github.com/BuildXO/anime-theme-pack" url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 179 + pair: null contrast: fg: 97.5 black: 0 diff --git a/themes/my-light-theme-blue-dark.yaml b/themes/my-light-theme-blue-dark.yaml index 10ac8d12..2d574ae6 100644 --- a/themes/my-light-theme-blue-dark.yaml +++ b/themes/my-light-theme-blue-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 249 + pair: null contrast: fg: 91.8 black: 9.2 diff --git a/themes/my-light-theme-blue.yaml b/themes/my-light-theme-blue.yaml index a0542b33..269d8574 100644 --- a/themes/my-light-theme-blue.yaml +++ b/themes/my-light-theme-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 218 + pair: null contrast: fg: 45.4 black: 36.8 diff --git a/themes/my-light-theme-light-green-fork-updated.yaml b/themes/my-light-theme-light-green-fork-updated.yaml index bc2e7d92..13752bcd 100644 --- a/themes/my-light-theme-light-green-fork-updated.yaml +++ b/themes/my-light-theme-light-green-fork-updated.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 178 + pair: null contrast: fg: 34 black: 48 diff --git a/themes/my-light-theme-light-green-paperblue-fork.yaml b/themes/my-light-theme-light-green-paperblue-fork.yaml index 0d3c37b3..847029e4 100644 --- a/themes/my-light-theme-light-green-paperblue-fork.yaml +++ b/themes/my-light-theme-light-green-paperblue-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 69.9 black: 98.3 diff --git a/themes/my-light-theme-light-green-papermint-updated.yaml b/themes/my-light-theme-light-green-papermint-updated.yaml index f28e553f..a260895a 100644 --- a/themes/my-light-theme-light-green-papermint-updated.yaml +++ b/themes/my-light-theme-light-green-papermint-updated.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 69.9 black: 98.3 diff --git a/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml b/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml index b68768ee..561ab035 100644 --- a/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml +++ b/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 85 + pair: null contrast: fg: 91.7 black: 91.7 diff --git a/themes/my-light-theme-mint-sand-updated.yaml b/themes/my-light-theme-mint-sand-updated.yaml index cb2c1cc6..5ed7fa14 100644 --- a/themes/my-light-theme-mint-sand-updated.yaml +++ b/themes/my-light-theme-mint-sand-updated.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 85 + pair: null contrast: fg: 91.7 black: 91.7 diff --git a/themes/my-monokai.yaml b/themes/my-monokai.yaml index ff212427..09b49f57 100644 --- a/themes/my-monokai.yaml +++ b/themes/my-monokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 114 + pair: null contrast: fg: 46.4 black: 0 diff --git a/themes/my-oceanic.yaml b/themes/my-oceanic.yaml index 297a72ad..6a1b6677 100644 --- a/themes/my-oceanic.yaml +++ b/themes/my-oceanic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 230 + pair: null contrast: fg: 71.3 black: 0 diff --git a/themes/my-theme.yaml b/themes/my-theme.yaml index 2dc43133..bf86a8eb 100644 --- a/themes/my-theme.yaml +++ b/themes/my-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 244 + pair: null contrast: fg: 72.3 black: 0 diff --git a/themes/my-zu.yaml b/themes/my-zu.yaml index ea4a0628..5232a521 100644 --- a/themes/my-zu.yaml +++ b/themes/my-zu.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 78 black: 0 diff --git a/themes/mycode-dark-blue.yaml b/themes/mycode-dark-blue.yaml deleted file mode 100644 index 55872d6e..00000000 --- a/themes/mycode-dark-blue.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "MyCode Dark Blue" -source: - marketplace_id: "KorotkovVitaliy.mycode-dark" - version: "0.4.0" - installs: 157 - author: "KorotkovVitaliy" - repo: "https://github.com/korotkovv/mycode-dark" - url: "https://marketplace.visualstudio.com/items?itemName=KorotkovVitaliy.mycode-dark" -colors: - bg: "#171717" - fg: "#D4D4D4" - black: "#565454" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 79.5 - black: 14.9 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 90 - brightBlack: 22 - brightRed: 38.6 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90 diff --git a/themes/mygo.yaml b/themes/mygo.yaml index 747eb710..c2068eb4 100644 --- a/themes/mygo.yaml +++ b/themes/mygo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 65.6 black: 0 diff --git a/themes/mynthra.yaml b/themes/mynthra.yaml index 93ee8691..46730762 100644 --- a/themes/mynthra.yaml +++ b/themes/mynthra.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 80 black: 9.3 diff --git a/themes/myoptic-v2.yaml b/themes/myoptic-v2.yaml index 9036b831..b20899e1 100644 --- a/themes/myoptic-v2.yaml +++ b/themes/myoptic-v2.yaml @@ -2,7 +2,7 @@ name: "Myoptic v2" source: marketplace_id: "doitalldev.myoptic-Theme-color-theme" version: "2.0.2" - installs: 658 + installs: 660 author: "doitalldev" repo: "https://github.com/doitalldev/myoptic-Theme" url: "https://marketplace.visualstudio.com/items?itemName=doitalldev.myoptic-Theme-color-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 102.9 black: 106 diff --git a/themes/myoptic.yaml b/themes/myoptic.yaml index 902b6120..da45f8c3 100644 --- a/themes/myoptic.yaml +++ b/themes/myoptic.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/myrteal.yaml b/themes/myrteal.yaml index 9994c201..ca5904ab 100644 --- a/themes/myrteal.yaml +++ b/themes/myrteal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 50.4 black: 0 diff --git a/themes/mystic-moonshadow.yaml b/themes/mystic-moonshadow.yaml index 2c71aa96..5f4c6f29 100644 --- a/themes/mystic-moonshadow.yaml +++ b/themes/mystic-moonshadow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 271 + pair: null contrast: fg: 42 black: 0 diff --git a/themes/mystic.yaml b/themes/mystic.yaml index 416638a6..ac330418 100644 --- a/themes/mystic.yaml +++ b/themes/mystic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 68.4 black: 0 diff --git a/themes/mystico-c64-pepto-ntsc-sony.yaml b/themes/mystico-c64-pepto-ntsc-sony.yaml index d4d95674..c6697fbd 100644 --- a/themes/mystico-c64-pepto-ntsc-sony.yaml +++ b/themes/mystico-c64-pepto-ntsc-sony.yaml @@ -2,7 +2,7 @@ name: "Mystico - C64 Pepto NTSC Sony" source: marketplace_id: "Chibantichic.mystico-c64" version: "0.16.0" - installs: 1456 + installs: 1459 author: "Chibantichic" repo: "https://github.com/chibanti/mystico-c64-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-c64" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 271 + pair: null contrast: fg: 44.6 black: 0 diff --git a/themes/mystico-c64-pepto-pal.yaml b/themes/mystico-c64-pepto-pal.yaml index 4062956b..45789746 100644 --- a/themes/mystico-c64-pepto-pal.yaml +++ b/themes/mystico-c64-pepto-pal.yaml @@ -2,7 +2,7 @@ name: "Mystico - C64 Pepto PAL" source: marketplace_id: "Chibantichic.mystico-c64" version: "0.16.0" - installs: 1456 + installs: 1459 author: "Chibantichic" repo: "https://github.com/chibanti/mystico-c64-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-c64" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 284 + pair: null contrast: fg: 26.6 black: 0 diff --git a/themes/mystico-c64.yaml b/themes/mystico-c64.yaml index 9ca832f4..17f7ba85 100644 --- a/themes/mystico-c64.yaml +++ b/themes/mystico-c64.yaml @@ -2,7 +2,7 @@ name: "Mystico - C64" source: marketplace_id: "Chibantichic.mystico-c64" version: "0.16.0" - installs: 1456 + installs: 1459 author: "Chibantichic" repo: "https://github.com/chibanti/mystico-c64-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-c64" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 280 + pair: null contrast: fg: 31.2 black: 12.1 diff --git a/themes/mystico-deep-purple.yaml b/themes/mystico-deep-purple.yaml index bad375ec..c61efe09 100644 --- a/themes/mystico-deep-purple.yaml +++ b/themes/mystico-deep-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 288 + pair: null contrast: fg: 64.4 black: 0 diff --git a/themes/mystico-forest-ocean.yaml b/themes/mystico-forest-ocean.yaml index 05276ba3..84555d28 100644 --- a/themes/mystico-forest-ocean.yaml +++ b/themes/mystico-forest-ocean.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 246 + pair: null contrast: fg: 79.8 black: 9.9 diff --git a/themes/mystico-mint.yaml b/themes/mystico-mint.yaml index aba04656..723fa489 100644 --- a/themes/mystico-mint.yaml +++ b/themes/mystico-mint.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 99.1 black: 0 diff --git a/themes/mystico-purples.yaml b/themes/mystico-purples.yaml index a2d45969..839822c0 100644 --- a/themes/mystico-purples.yaml +++ b/themes/mystico-purples.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 300 + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/mytheme.yaml b/themes/mytheme.yaml deleted file mode 100644 index 938886e1..00000000 --- a/themes/mytheme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "myTheme" -source: - marketplace_id: "everyoneTheme.myTheme" - version: "3.0.0" - installs: 65 - author: "everyoneTheme" - repo: "https://github.com/bryantTheCoder/my-own-vs-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=everyoneTheme.myTheme" -colors: - bg: "#1C1B26" - fg: "#FFA700" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 289 - contrast: - fg: 63.8 - black: 0 - red: 26.1 - green: 52.4 - yellow: 85 - blue: 26.8 - magenta: 29.2 - cyan: 47 - white: 89.4 - brightBlack: 21.4 - brightRed: 38 - brightGreen: 62.9 - brightYellow: 95 - brightBlue: 39.4 - brightMagenta: 44.8 - brightCyan: 54.8 - brightWhite: 89.4 diff --git a/themes/myvscode.yaml b/themes/myvscode.yaml index a0fc0ae5..007ef4de 100644 --- a/themes/myvscode.yaml +++ b/themes/myvscode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 78.6 black: 0 diff --git a/themes/n-darktheme.yaml b/themes/n-darktheme.yaml index 07f66c1a..0be56208 100644 --- a/themes/n-darktheme.yaml +++ b/themes/n-darktheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 97.4 black: 0 diff --git a/themes/n0m4d.yaml b/themes/n0m4d.yaml index 4a416894..25f0658d 100644 --- a/themes/n0m4d.yaml +++ b/themes/n0m4d.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 292 + pair: null contrast: fg: 90.1 black: 0 diff --git a/themes/n7-lilac.yaml b/themes/n7-lilac.yaml index fc639fc3..a67656c3 100644 --- a/themes/n7-lilac.yaml +++ b/themes/n7-lilac.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 62.2 black: 0 diff --git a/themes/n7-maya.yaml b/themes/n7-maya.yaml index 4561c2b7..7aea13be 100644 --- a/themes/n7-maya.yaml +++ b/themes/n7-maya.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 62.2 black: 0 diff --git a/themes/n7-night-vision.yaml b/themes/n7-night-vision.yaml index 94c6f107..22c6001d 100644 --- a/themes/n7-night-vision.yaml +++ b/themes/n7-night-vision.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 62.5 black: 0 diff --git a/themes/n7-purple-green.yaml b/themes/n7-purple-green.yaml index 27358304..3c1d261b 100644 --- a/themes/n7-purple-green.yaml +++ b/themes/n7-purple-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 62.2 black: 0 diff --git a/themes/n7-red-flare.yaml b/themes/n7-red-flare.yaml index 097ec03e..4416c4a5 100644 --- a/themes/n7-red-flare.yaml +++ b/themes/n7-red-flare.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 62.2 black: 0 diff --git a/themes/n7-soft-pink.yaml b/themes/n7-soft-pink.yaml index 3f265d88..cd3ad544 100644 --- a/themes/n7-soft-pink.yaml +++ b/themes/n7-soft-pink.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 62.5 black: 0 diff --git a/themes/nada-theme.yaml b/themes/nada-theme.yaml index 58ee7486..69faf77a 100644 --- a/themes/nada-theme.yaml +++ b/themes/nada-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/nairobi-dark.yaml b/themes/nairobi-dark.yaml index f91ccb03..e779fda5 100644 --- a/themes/nairobi-dark.yaml +++ b/themes/nairobi-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 62.8 black: 0 diff --git a/themes/nameless.yaml b/themes/nameless.yaml deleted file mode 100644 index 68ba4bc3..00000000 --- a/themes/nameless.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Nameless" -source: - marketplace_id: "tsrenato.nameless" - version: "1.0.3" - installs: 60 - author: "tsrenato" - repo: "https://github.com/tsrenato/nameless" - url: "https://marketplace.visualstudio.com/items?itemName=tsrenato.nameless" -colors: - bg: "#111111" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 107.4 - black: 0 - red: 27.2 - green: 53.5 - yellow: 86.1 - blue: 27.9 - magenta: 30.3 - cyan: 48.1 - white: 90.5 - brightBlack: 22.5 - brightRed: 39.1 - brightGreen: 64 - brightYellow: 96.1 - brightBlue: 40.5 - brightMagenta: 45.9 - brightCyan: 55.9 - brightWhite: 90.5 diff --git a/themes/nanowise.yaml b/themes/nanowise.yaml index 9915ef2f..2b75c89c 100644 --- a/themes/nanowise.yaml +++ b/themes/nanowise.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 81.8 black: 81.8 diff --git a/themes/naps-dusk-gold.yaml b/themes/naps-dusk-gold.yaml index 903b9016..27a8ce52 100644 --- a/themes/naps-dusk-gold.yaml +++ b/themes/naps-dusk-gold.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 223 + pair: null contrast: fg: 70 black: 0 diff --git a/themes/narato.yaml b/themes/narato.yaml deleted file mode 100644 index 5c9c38db..00000000 --- a/themes/narato.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Narato" -source: - marketplace_id: "MuhammadHanif.narato" - version: "1.4.0" - installs: 439 - author: "Muhammad Hanif" - repo: "https://github.com/mhaniflab/narato" - url: "https://marketplace.visualstudio.com/items?itemName=MuhammadHanif.narato" -colors: - bg: "#F5EEE6" - fg: "#776B5D" - black: "#F5EEE6" - red: "#E82424" - green: "#76946A" - yellow: "#FF9E3B" - blue: "#EEC759" - magenta: "#AC7D88" - cyan: "#776B5D" - white: "#776B5D" - brightBlack: "#F4DFC8" - brightRed: "#FF5D62" - brightGreen: "#98BB6C" - brightYellow: "#65647C" - brightBlue: "#7FB4CA" - brightMagenta: "#D27E99" - brightCyan: "#A3D4D5" - brightWhite: "#776B5D" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 66.2 - black: 0 - red: 59.3 - green: 51.7 - yellow: 30.2 - blue: 18.2 - magenta: 52.7 - cyan: 66.2 - white: 66.2 - brightBlack: 0 - brightRed: 46.2 - brightGreen: 33.2 - brightYellow: 69.1 - brightBlue: 35 - brightMagenta: 45.9 - brightCyan: 18.3 - brightWhite: 66.2 diff --git a/themes/narunika.yaml b/themes/narunika.yaml index 02522dfe..36222a79 100644 --- a/themes/narunika.yaml +++ b/themes/narunika.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/naruto-akatsuki.yaml b/themes/naruto-akatsuki.yaml index f132ad3a..bce78fdc 100644 --- a/themes/naruto-akatsuki.yaml +++ b/themes/naruto-akatsuki.yaml @@ -2,7 +2,7 @@ name: "Naruto Akatsuki" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 92.8 black: 0 diff --git a/themes/naruto-hinata-hyuga-byakugan-vision.yaml b/themes/naruto-hinata-hyuga-byakugan-vision.yaml index d93e580e..0aa58f8c 100644 --- a/themes/naruto-hinata-hyuga-byakugan-vision.yaml +++ b/themes/naruto-hinata-hyuga-byakugan-vision.yaml @@ -2,7 +2,7 @@ name: "Naruto Hinata Hyuga - Byakugan Vision" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: 307 + pair: null contrast: fg: 92 black: 0 diff --git a/themes/naruto-hokage-dawn.yaml b/themes/naruto-hokage-dawn.yaml index ee7d3843..3968a106 100644 --- a/themes/naruto-hokage-dawn.yaml +++ b/themes/naruto-hokage-dawn.yaml @@ -2,7 +2,7 @@ name: "Naruto Hokage Dawn" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 103.5 black: 0 diff --git a/themes/naruto-hokage-orange.yaml b/themes/naruto-hokage-orange.yaml index 6da258a5..3383d166 100644 --- a/themes/naruto-hokage-orange.yaml +++ b/themes/naruto-hokage-orange.yaml @@ -2,7 +2,7 @@ name: "Naruto (Hokage Orange)" source: marketplace_id: "LunaCode.anime-theme" version: "0.0.3" - installs: 373 + installs: 377 author: "LunaCode" repo: "https://github.com/BuildXO/anime-theme-pack" url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 67 + pair: null contrast: fg: 92 black: 0 diff --git a/themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml b/themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml index e981c9aa..8e06395a 100644 --- a/themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml +++ b/themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml @@ -2,7 +2,7 @@ name: "Naruto Itachi Uchiha - Tsukuyomi Dimension" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 19 + pair: null contrast: fg: 85.1 black: 0 diff --git a/themes/naruto-jiraiya-gallant-toad-sage.yaml b/themes/naruto-jiraiya-gallant-toad-sage.yaml index 96cea26d..1a703171 100644 --- a/themes/naruto-jiraiya-gallant-toad-sage.yaml +++ b/themes/naruto-jiraiya-gallant-toad-sage.yaml @@ -2,7 +2,7 @@ name: "Naruto Jiraiya - Gallant Toad Sage" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 84 + pair: null contrast: fg: 99.4 black: 0 diff --git a/themes/naruto-kakashi-copy-ninja.yaml b/themes/naruto-kakashi-copy-ninja.yaml index d2beb08a..ff738933 100644 --- a/themes/naruto-kakashi-copy-ninja.yaml +++ b/themes/naruto-kakashi-copy-ninja.yaml @@ -2,7 +2,7 @@ name: "Naruto Kakashi Copy Ninja" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 68.1 black: 0 diff --git a/themes/naruto-kurama-nine-tails.yaml b/themes/naruto-kurama-nine-tails.yaml index 7c6ef7e3..0a292092 100644 --- a/themes/naruto-kurama-nine-tails.yaml +++ b/themes/naruto-kurama-nine-tails.yaml @@ -2,7 +2,7 @@ name: "Naruto Kurama Nine-Tails" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 62 + pair: null contrast: fg: 101.6 black: 0 diff --git a/themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml b/themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml index 069eac04..398ac535 100644 --- a/themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml +++ b/themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml @@ -2,7 +2,7 @@ name: "Naruto Kushina Uzumaki - Red Hot-Blooded Habanero" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 23 + pair: null contrast: fg: 99.4 black: 0 diff --git a/themes/naruto-might-guy-gate-of-death-madara-battle.yaml b/themes/naruto-might-guy-gate-of-death-madara-battle.yaml index 6d18e2e7..4056b93d 100644 --- a/themes/naruto-might-guy-gate-of-death-madara-battle.yaml +++ b/themes/naruto-might-guy-gate-of-death-madara-battle.yaml @@ -2,7 +2,7 @@ name: "Naruto Might Guy - GATE OF DEATH MADARA BATTLE" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 29 + pair: null contrast: fg: 93.8 black: 0 diff --git a/themes/naruto-might-guy-gates-of-youth.yaml b/themes/naruto-might-guy-gates-of-youth.yaml index 22d2b963..95d670e6 100644 --- a/themes/naruto-might-guy-gates-of-youth.yaml +++ b/themes/naruto-might-guy-gates-of-youth.yaml @@ -2,7 +2,7 @@ name: "Naruto Might Guy Gates of Youth" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 144 + pair: null contrast: fg: 104.1 black: 0 diff --git a/themes/naruto-minato-namikaze-yellow-flash.yaml b/themes/naruto-minato-namikaze-yellow-flash.yaml index 559bc5c9..7d683852 100644 --- a/themes/naruto-minato-namikaze-yellow-flash.yaml +++ b/themes/naruto-minato-namikaze-yellow-flash.yaml @@ -2,7 +2,7 @@ name: "Naruto Minato Namikaze - Yellow Flash" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 265 + pair: null contrast: fg: 99.8 black: 0 diff --git a/themes/naruto-pain-nagato-rinnegan-god.yaml b/themes/naruto-pain-nagato-rinnegan-god.yaml index f1630bc9..1ff22512 100644 --- a/themes/naruto-pain-nagato-rinnegan-god.yaml +++ b/themes/naruto-pain-nagato-rinnegan-god.yaml @@ -2,7 +2,7 @@ name: "Naruto Pain/Nagato - Rinnegan God" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 92.9 black: 0 diff --git a/themes/naruto-sage-mode.yaml b/themes/naruto-sage-mode.yaml index 74bce5e0..c9bf7fc7 100644 --- a/themes/naruto-sage-mode.yaml +++ b/themes/naruto-sage-mode.yaml @@ -2,7 +2,7 @@ name: "Naruto Sage Mode" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 130 + pair: null contrast: fg: 97.9 black: 0 diff --git a/themes/naruto-sakura-haruno-cherry-blossom-storm.yaml b/themes/naruto-sakura-haruno-cherry-blossom-storm.yaml index d08c94cd..b47f7c6f 100644 --- a/themes/naruto-sakura-haruno-cherry-blossom-storm.yaml +++ b/themes/naruto-sakura-haruno-cherry-blossom-storm.yaml @@ -2,7 +2,7 @@ name: "Naruto Sakura Haruno - Cherry Blossom Storm" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 350 + pair: null contrast: fg: 105.2 black: 0 diff --git a/themes/naruto-sasuke-uchiha-sharingan.yaml b/themes/naruto-sasuke-uchiha-sharingan.yaml index 10b716ff..9c5d52f1 100644 --- a/themes/naruto-sasuke-uchiha-sharingan.yaml +++ b/themes/naruto-sasuke-uchiha-sharingan.yaml @@ -2,7 +2,7 @@ name: "Naruto Sasuke Uchiha - Sharingan" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 29 + pair: null contrast: fg: 92.9 black: 0 diff --git a/themes/naruto-shikamaru-nara-shadow-possession.yaml b/themes/naruto-shikamaru-nara-shadow-possession.yaml index 77a49d74..534fd943 100644 --- a/themes/naruto-shikamaru-nara-shadow-possession.yaml +++ b/themes/naruto-shikamaru-nara-shadow-possession.yaml @@ -2,7 +2,7 @@ name: "Naruto Shikamaru Nara - Shadow Possession" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 77.8 black: 0 diff --git a/themes/naruto-shinobi-night.yaml b/themes/naruto-shinobi-night.yaml index 82dcc97e..b1a9c42c 100644 --- a/themes/naruto-shinobi-night.yaml +++ b/themes/naruto-shinobi-night.yaml @@ -2,7 +2,7 @@ name: "Naruto Shinobi Night" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 99.9 black: 0 diff --git a/themes/natasha-theme.yaml b/themes/natasha-theme.yaml index 245301b8..44c7d83b 100644 --- a/themes/natasha-theme.yaml +++ b/themes/natasha-theme.yaml @@ -2,7 +2,7 @@ name: "natasha-theme" source: marketplace_id: "LucasAlmeida.natasha-tema" version: "1.6.0" - installs: 1804 + installs: 1805 author: "Lucas Almeida" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LucasAlmeida.natasha-tema" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 297 + pair: null contrast: fg: 105.9 black: 0 diff --git a/themes/natives-in-tech-theme.yaml b/themes/natives-in-tech-theme.yaml index b45e1005..a247c5f8 100644 --- a/themes/natives-in-tech-theme.yaml +++ b/themes/natives-in-tech-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 67.9 black: 0 diff --git a/themes/natto-theme-2.yaml b/themes/natto-theme-2.yaml index 664dffd8..40293432 100644 --- a/themes/natto-theme-2.yaml +++ b/themes/natto-theme-2.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 92.2 black: 0 diff --git a/themes/natty.yaml b/themes/natty.yaml deleted file mode 100644 index 9a24f6f0..00000000 --- a/themes/natty.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Natty" -source: - marketplace_id: "this-fifo.natty" - version: "0.1.0" - installs: 9632 - author: "this-fifo" - repo: "https://github.com/this-fifo/natty-theme" - url: "https://marketplace.visualstudio.com/items?itemName=this-fifo.natty" -colors: - bg: "#242530" - fg: "#EEFFFF" - black: "#242530" - red: "#FF8A7A" - green: "#5AF78E" - yellow: "#F3F99D" - blue: "#94D0FF" - magenta: "#FF85B8" - cyan: "#9AEDFE" - white: "#F1F1F0" - brightBlack: "#686868" - brightRed: "#FF8A7A" - brightGreen: "#5AF78E" - brightYellow: "#F3F99D" - brightBlue: "#94D0FF" - brightMagenta: "#FF85B8" - brightCyan: "#9AEDFE" - brightWhite: "#EEFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 281 - contrast: - fg: 102.5 - black: 0 - red: 54.3 - green: 82 - yellow: 96.7 - blue: 71.2 - magenta: 55 - cyan: 85 - white: 95.6 - brightBlack: 20.9 - brightRed: 54.3 - brightGreen: 82 - brightYellow: 96.7 - brightBlue: 71.2 - brightMagenta: 55 - brightCyan: 85 - brightWhite: 102.5 diff --git a/themes/natural-faded-dark.yaml b/themes/natural-faded-dark.yaml index 62b49ade..5544ded8 100644 --- a/themes/natural-faded-dark.yaml +++ b/themes/natural-faded-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 97 black: 48.3 diff --git a/themes/natural-green-colorblind-growth-harmony.yaml b/themes/natural-green-colorblind-growth-harmony.yaml deleted file mode 100644 index 93dd6083..00000000 --- a/themes/natural-green-colorblind-growth-harmony.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Natural Green Colorblind - Growth & Harmony" -source: - marketplace_id: "akashbadole.dev-ideas-themes" - version: "2.1.1" - installs: 406 - author: "akashbadole" - repo: "https://github.com/akashsbadole/dev-psychology-themes" - url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" -colors: - bg: "#0A1A0A" - fg: "#E8F5E9" - black: "#263238" - red: "#F44336" - green: "#4CAF50" - yellow: "#FFEB3B" - blue: "#2196F3" - magenta: "#E91E63" - cyan: "#00BCD4" - white: "#ECEFF1" - brightBlack: "#37474F" - brightRed: "#FF5252" - brightGreen: "#69F0AE" - brightYellow: "#FFFF00" - brightBlue: "#448AFF" - brightMagenta: "#FF4081" - brightCyan: "#18FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 144 - contrast: - fg: 98 - black: 0 - red: 37.7 - green: 47.6 - yellow: 92.3 - blue: 43 - magenta: 32.6 - cyan: 56.5 - white: 96.1 - brightBlack: 9.1 - brightRed: 42.8 - brightGreen: 82 - brightYellow: 101.7 - brightBlue: 40.5 - brightMagenta: 41.5 - brightCyan: 91.2 - brightWhite: 106.9 diff --git a/themes/natural-green-light-growth-harmony.yaml b/themes/natural-green-light-growth-harmony.yaml index ae080dd6..4466567a 100644 --- a/themes/natural-green-light-growth-harmony.yaml +++ b/themes/natural-green-light-growth-harmony.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 100.9 black: 95.6 diff --git a/themes/nature-color-theme.yaml b/themes/nature-color-theme.yaml index 933b67fb..75f89941 100644 --- a/themes/nature-color-theme.yaml +++ b/themes/nature-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 75 black: 97.5 diff --git a/themes/nature-green-colorblind-growth-harmony.yaml b/themes/nature-green-colorblind-growth-harmony.yaml deleted file mode 100644 index 2f3208a9..00000000 --- a/themes/nature-green-colorblind-growth-harmony.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Nature Green Colorblind - Growth & Harmony" -source: - marketplace_id: "akashbadole.dev-ideas-themes" - version: "2.1.1" - installs: 406 - author: "akashbadole" - repo: "https://github.com/akashsbadole/dev-psychology-themes" - url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" -colors: - bg: "#0D1B0D" - fg: "#E8F5E8" - black: "#263238" - red: "#F44336" - green: "#4CAF50" - yellow: "#FFEB3B" - blue: "#2196F3" - magenta: "#E91E63" - cyan: "#00BCD4" - white: "#ECEFF1" - brightBlack: "#37474F" - brightRed: "#FF5252" - brightGreen: "#69F0AE" - brightYellow: "#FFFF00" - brightBlue: "#448AFF" - brightMagenta: "#FF4081" - brightCyan: "#18FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 144 - contrast: - fg: 97.8 - black: 0 - red: 37.6 - green: 47.4 - yellow: 92.2 - blue: 42.9 - magenta: 32.5 - cyan: 56.4 - white: 96 - brightBlack: 8.9 - brightRed: 42.7 - brightGreen: 81.9 - brightYellow: 101.6 - brightBlue: 40.4 - brightMagenta: 41.3 - brightCyan: 91.1 - brightWhite: 106.8 diff --git a/themes/nature-green-light-growth-harmony.yaml b/themes/nature-green-light-growth-harmony.yaml index 969e8957..714c3f83 100644 --- a/themes/nature-green-light-growth-harmony.yaml +++ b/themes/nature-green-light-growth-harmony.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 100.7 black: 95.6 diff --git a/themes/nature.yaml b/themes/nature.yaml index eef0250a..cf56ee47 100644 --- a/themes/nature.yaml +++ b/themes/nature.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 209 + pair: null contrast: fg: 62.6 black: 0 diff --git a/themes/nautilus.yaml b/themes/nautilus.yaml index 257eb247..a687d205 100644 --- a/themes/nautilus.yaml +++ b/themes/nautilus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 277 + pair: null contrast: fg: 60 black: 0 diff --git a/themes/naver.yaml b/themes/naver.yaml index 136593d5..270aea0f 100644 --- a/themes/naver.yaml +++ b/themes/naver.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 78.8 black: 106 diff --git a/themes/navy-flat.yaml b/themes/navy-flat.yaml index 7d857258..e803b989 100644 --- a/themes/navy-flat.yaml +++ b/themes/navy-flat.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 263 + pair: null contrast: fg: 81.5 black: 0 diff --git a/themes/navy-nights-theme.yaml b/themes/navy-nights-theme.yaml index 1f27cffd..e5a84e89 100644 --- a/themes/navy-nights-theme.yaml +++ b/themes/navy-nights-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 80.2 black: 0 diff --git a/themes/navy-theme.yaml b/themes/navy-theme.yaml index 9506b888..78c7351a 100644 --- a/themes/navy-theme.yaml +++ b/themes/navy-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 269 + pair: null contrast: fg: 59.1 black: 0 diff --git a/themes/navy.yaml b/themes/navy.yaml index 90120c7b..6f090aec 100644 --- a/themes/navy.yaml +++ b/themes/navy.yaml @@ -2,7 +2,7 @@ name: "Navy" source: marketplace_id: "eshiraishi.navy-theme" version: "0.0.16" - installs: 342 + installs: 343 author: "Enzo Shiraishi" repo: "https://github.com/eshiraishi/navy-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=eshiraishi.navy-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 248 + pair: null contrast: fg: 90.4 black: 0 diff --git a/themes/nb-monochrome-dark.yaml b/themes/nb-monochrome-dark.yaml index 57b8f19c..7ef73d6e 100644 --- a/themes/nb-monochrome-dark.yaml +++ b/themes/nb-monochrome-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 93.1 black: 0 diff --git a/themes/ncl5c.yaml b/themes/ncl5c.yaml index 85c69df8..e6d9cb10 100644 --- a/themes/ncl5c.yaml +++ b/themes/ncl5c.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 293 + pair: null contrast: fg: 26.4 black: 0 diff --git a/themes/nebula-color-theme.yaml b/themes/nebula-color-theme.yaml index dbae6647..99efb5f3 100644 --- a/themes/nebula-color-theme.yaml +++ b/themes/nebula-color-theme.yaml @@ -1,11 +1,11 @@ name: "Nebula-color-theme" source: - marketplace_id: "ChirtleLovesDolls.nebula-theme" - version: "1.3.3" - installs: 146100 - author: "ChirtleLovesDolls" - repo: "https://github.com/eating-coleslaw/vscode-nebula-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ChirtleLovesDolls.nebula-theme" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#27273A" fg: "#FCF6FF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 99.6 black: 0 diff --git a/themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml b/themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml index 7603a488..668d75c2 100644 --- a/themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml +++ b/themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 103.2 black: 0 diff --git a/themes/nebula-nights.yaml b/themes/nebula-nights.yaml index 082293e5..9a30045e 100644 --- a/themes/nebula-nights.yaml +++ b/themes/nebula-nights.yaml @@ -2,7 +2,7 @@ name: "Nebula Nights" source: marketplace_id: "Tom-Fynes.nebula-nights-pastel" version: "1.2.0" - installs: 723 + installs: 724 author: "Tom-Fynes" repo: "https://github.com/tom-fynes/nebula-nights" url: "https://marketplace.visualstudio.com/items?itemName=Tom-Fynes.nebula-nights-pastel" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 249 + pair: null contrast: fg: 57.3 black: 0 diff --git a/themes/nebula-pro-dark.yaml b/themes/nebula-pro-dark.yaml index 2f3ec849..b36895a7 100644 --- a/themes/nebula-pro-dark.yaml +++ b/themes/nebula-pro-dark.yaml @@ -2,7 +2,7 @@ name: "Nebula Pro Dark" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 100.9 black: 0 diff --git a/themes/nebula-surge.yaml b/themes/nebula-surge.yaml index 92b698b6..655f2d55 100644 --- a/themes/nebula-surge.yaml +++ b/themes/nebula-surge.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 65.7 black: 33.5 diff --git a/themes/nebula-symphony-dark-pro.yaml b/themes/nebula-symphony-dark-pro.yaml index 7abc05d4..b03eddd8 100644 --- a/themes/nebula-symphony-dark-pro.yaml +++ b/themes/nebula-symphony-dark-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 276 + pair: null contrast: fg: 78.6 black: 9.7 diff --git a/themes/nebula-symphony-dark.yaml b/themes/nebula-symphony-dark.yaml index c78b43a1..48892d7f 100644 --- a/themes/nebula-symphony-dark.yaml +++ b/themes/nebula-symphony-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 284 + pair: "Nebula Symphony Light" contrast: fg: 78.1 black: 9.2 diff --git a/themes/nebula-symphony-light.yaml b/themes/nebula-symphony-light.yaml index ea91489e..f63a9d47 100644 --- a/themes/nebula-symphony-light.yaml +++ b/themes/nebula-symphony-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Nebula Symphony Dark" contrast: fg: 93.4 black: 92.6 diff --git a/themes/nebula.yaml b/themes/nebula.yaml index 444fd2ef..8cc6ab6c 100644 --- a/themes/nebula.yaml +++ b/themes/nebula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 299 + pair: null contrast: fg: 107.1 black: 0 diff --git a/themes/nebular-theme.yaml b/themes/nebular-theme.yaml index 32656ce6..e38bbca2 100644 --- a/themes/nebular-theme.yaml +++ b/themes/nebular-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 74.8 black: 0 diff --git a/themes/nebularomantic.yaml b/themes/nebularomantic.yaml index 144c18e8..4ac3f0e1 100644 --- a/themes/nebularomantic.yaml +++ b/themes/nebularomantic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 37.6 diff --git a/themes/nebulous-dark.yaml b/themes/nebulous-dark.yaml deleted file mode 100644 index acd1e623..00000000 --- a/themes/nebulous-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Nebulous Dark" -source: - marketplace_id: "jtpeller.nebulous-color-themes" - version: "0.0.4" - installs: 41 - author: "jtpeller" - repo: "https://github.com/jtpeller/nebulous-color-themes" - url: "https://marketplace.visualstudio.com/items?itemName=jtpeller.nebulous-color-themes" -colors: - bg: "#1D1D1D" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 106.2 - black: 0 - red: 26 - green: 52.3 - yellow: 84.9 - blue: 26.7 - magenta: 29.1 - cyan: 46.9 - white: 89.3 - brightBlack: 21.3 - brightRed: 37.9 - brightGreen: 62.8 - brightYellow: 94.9 - brightBlue: 39.3 - brightMagenta: 44.7 - brightCyan: 54.7 - brightWhite: 89.3 diff --git a/themes/nebulous-luna.yaml b/themes/nebulous-luna.yaml index 2375c5dc..2a300821 100644 --- a/themes/nebulous-luna.yaml +++ b/themes/nebulous-luna.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 78.2 black: 78.2 diff --git a/themes/necessity-aaa-light.yaml b/themes/necessity-aaa-light.yaml index 09a4dffb..9cffcea7 100644 --- a/themes/necessity-aaa-light.yaml +++ b/themes/necessity-aaa-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.7 black: 77.9 diff --git a/themes/necessity-aaa.yaml b/themes/necessity-aaa.yaml index d291fb8a..f93374af 100644 --- a/themes/necessity-aaa.yaml +++ b/themes/necessity-aaa.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/negative-theme.yaml b/themes/negative-theme.yaml index bbb12267..0e1ee2f3 100644 --- a/themes/negative-theme.yaml +++ b/themes/negative-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 275 + pair: null contrast: fg: 43.7 black: 0 diff --git a/themes/neil-s-theme-dark.yaml b/themes/neil-s-theme-dark.yaml index e2486795..f685bfba 100644 --- a/themes/neil-s-theme-dark.yaml +++ b/themes/neil-s-theme-dark.yaml @@ -1,8 +1,8 @@ name: "Neil's Theme (Dark)" source: marketplace_id: "njp-anderson.neils-vscode-theme" - version: "0.0.1" - installs: 14 + version: "0.0.3" + installs: 15 author: "N Anderson" repo: "https://github.com/njpanderson/neils-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=njp-anderson.neils-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 242 + pair: null contrast: fg: 68.6 black: 0 diff --git a/themes/neil-s-theme.yaml b/themes/neil-s-theme.yaml index f5242841..10d4a924 100644 --- a/themes/neil-s-theme.yaml +++ b/themes/neil-s-theme.yaml @@ -1,8 +1,8 @@ name: "Neil's Theme" source: marketplace_id: "njp-anderson.neils-vscode-theme" - version: "0.0.1" - installs: 14 + version: "0.0.3" + installs: 15 author: "N Anderson" repo: "https://github.com/njpanderson/neils-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=njp-anderson.neils-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 103 black: 0 diff --git a/themes/nekhbet.yaml b/themes/nekhbet.yaml index 6da59d22..5a375f8b 100644 --- a/themes/nekhbet.yaml +++ b/themes/nekhbet.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 99.8 black: 0 diff --git a/themes/neki.yaml b/themes/neki.yaml index cd0efd2a..16898aea 100644 --- a/themes/neki.yaml +++ b/themes/neki.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 286 + pair: null contrast: fg: 76.4 black: 0 diff --git a/themes/neo-hacker-soft-premium.yaml b/themes/neo-hacker-soft-premium.yaml index fc01b4b8..ef77d048 100644 --- a/themes/neo-hacker-soft-premium.yaml +++ b/themes/neo-hacker-soft-premium.yaml @@ -1,11 +1,11 @@ name: "Neo Hacker Soft - Premium" source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1834 + marketplace_id: "SecureDev01.theme-icon-pack" + version: "1.0.4" + installs: 906 author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + repo: "https://github.com/codewithevilxd/theme-icon-pack" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.theme-icon-pack" colors: bg: "#0A0C0A" fg: "#00D463" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 64.7 black: 0 diff --git a/themes/neo-nuxt-matte.yaml b/themes/neo-nuxt-matte.yaml index 50ecc33a..10923945 100644 --- a/themes/neo-nuxt-matte.yaml +++ b/themes/neo-nuxt-matte.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 30.1 black: 0 diff --git a/themes/neo-seoul-dark.yaml b/themes/neo-seoul-dark.yaml index 30fd5dc8..fd91c98b 100644 --- a/themes/neo-seoul-dark.yaml +++ b/themes/neo-seoul-dark.yaml @@ -2,7 +2,7 @@ name: "Neo Seoul Dark" source: marketplace_id: "taotao7.neo-seoul-theme" version: "0.0.3" - installs: 250 + installs: 251 author: "taotao7" repo: "https://github.com/taotao7/neoseoul-theme" url: "https://marketplace.visualstudio.com/items?itemName=taotao7.neo-seoul-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Neo Seoul Light" contrast: fg: 70.2 black: 0 diff --git a/themes/neo-seoul-light.yaml b/themes/neo-seoul-light.yaml index 698bbdc3..721a152b 100644 --- a/themes/neo-seoul-light.yaml +++ b/themes/neo-seoul-light.yaml @@ -2,7 +2,7 @@ name: "Neo Seoul Light" source: marketplace_id: "taotao7.neo-seoul-theme" version: "0.0.3" - installs: 250 + installs: 251 author: "taotao7" repo: "https://github.com/taotao7/neoseoul-theme" url: "https://marketplace.visualstudio.com/items?itemName=taotao7.neo-seoul-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Neo Seoul Dark" contrast: fg: 67.1 black: 0 diff --git a/themes/neo-vscode-theme.yaml b/themes/neo-vscode-theme.yaml index 9d92567a..f287da17 100644 --- a/themes/neo-vscode-theme.yaml +++ b/themes/neo-vscode-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 253 + pair: null contrast: fg: 66 black: 0 diff --git a/themes/neodark.yaml b/themes/neodark.yaml index 639c6cb8..c1ec98d9 100644 --- a/themes/neodark.yaml +++ b/themes/neodark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 99.5 black: 0 diff --git a/themes/neofusion.yaml b/themes/neofusion.yaml index 49161b58..6777169b 100644 --- a/themes/neofusion.yaml +++ b/themes/neofusion.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 44.7 black: 0 diff --git a/themes/neogenesis.yaml b/themes/neogenesis.yaml index f6df7574..2790b7a1 100644 --- a/themes/neogenesis.yaml +++ b/themes/neogenesis.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 284 + pair: null contrast: fg: 85.9 black: 0 diff --git a/themes/neokai.yaml b/themes/neokai.yaml index a58c4848..c37d00bd 100644 --- a/themes/neokai.yaml +++ b/themes/neokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 89.2 black: 0 diff --git a/themes/neon-black.yaml b/themes/neon-black.yaml index b8177252..938bba7e 100644 --- a/themes/neon-black.yaml +++ b/themes/neon-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 44.6 diff --git a/themes/neon-color-dark-theme.yaml b/themes/neon-color-dark-theme.yaml index abdf97ae..80949719 100644 --- a/themes/neon-color-dark-theme.yaml +++ b/themes/neon-color-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Neon Color - Dark Theme" source: marketplace_id: "mdmarufsarker.maruf-sarker" version: "0.1.1" - installs: 29145 + installs: 29154 author: "Md. Maruf Sarker" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 245 + pair: null contrast: fg: 73.1 black: 0 diff --git a/themes/neon-cyber.yaml b/themes/neon-cyber.yaml index ceb5a5ab..d947b231 100644 --- a/themes/neon-cyber.yaml +++ b/themes/neon-cyber.yaml @@ -1,11 +1,11 @@ name: "Neon Cyber" source: - marketplace_id: "CodewithBismillah.axion-themes" - version: "1.1.1" - installs: 111 + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 358 author: "Code with Bismillah" - repo: "https://github.com/mubashir1837/Axion-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.axion-themes" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" colors: bg: "#0A0A0F" fg: "#E0E0FF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 89.3 black: 0 diff --git a/themes/neon-cyberpunk.yaml b/themes/neon-cyberpunk.yaml index 7183113c..bf1bba14 100644 --- a/themes/neon-cyberpunk.yaml +++ b/themes/neon-cyberpunk.yaml @@ -2,7 +2,7 @@ name: "Neon Cyberpunk" source: marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" version: "1.0.0" - installs: 1547 + installs: 1549 author: "Little Waterfall" repo: "https://github.com/LittleWaterfall/vscode-neon-glow" url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/neon-dream-code.yaml b/themes/neon-dream-code.yaml index fc81c73e..b487b803 100644 --- a/themes/neon-dream-code.yaml +++ b/themes/neon-dream-code.yaml @@ -2,7 +2,7 @@ name: "Neon Dream Code" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 273 + pair: null contrast: fg: 96.5 black: 0 diff --git a/themes/neon-dreams-neobrutalist.yaml b/themes/neon-dreams-neobrutalist.yaml deleted file mode 100644 index c3b786cb..00000000 --- a/themes/neon-dreams-neobrutalist.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Neon Dreams Neobrutalist" -source: - marketplace_id: "CursorThemes.neon-dreams-theme" - version: "1.5.0" - installs: 613 - author: "Cursor Themes" - repo: "https://github.com/Cursor-Themes/neon_dreams" - url: "https://marketplace.visualstudio.com/items?itemName=CursorThemes.neon-dreams-theme" -colors: - bg: "#1A0F1A" - fg: "#E8D8E8" - black: "#1A0F1A" - red: "#DD77AA" - green: "#99DDAA" - yellow: "#DDAA77" - blue: "#88CCDD" - magenta: "#DD77DD" - cyan: "#77DDCC" - white: "#E8D8E8" - brightBlack: "#5A4A5A" - brightRed: "#EE88BB" - brightGreen: "#AAEEBB" - brightYellow: "#EEBB88" - brightBlue: "#99DDEE" - brightMagenta: "#EE88EE" - brightCyan: "#88EECC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 327 - contrast: - fg: 85.2 - black: 0 - red: 46.5 - green: 76 - yellow: 61 - blue: 68.9 - magenta: 49.1 - cyan: 74.9 - white: 85.2 - brightBlack: 13.2 - brightRed: 55 - brightGreen: 86.3 - brightYellow: 70.7 - brightBlue: 78.9 - brightMagenta: 57.8 - brightCyan: 84.2 - brightWhite: 107.2 diff --git a/themes/neon-dusk.yaml b/themes/neon-dusk.yaml index 618bbf65..5393390a 100644 --- a/themes/neon-dusk.yaml +++ b/themes/neon-dusk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 86.1 black: 0 diff --git a/themes/neon-forest.yaml b/themes/neon-forest.yaml index 9efc5f07..763fe8f7 100644 --- a/themes/neon-forest.yaml +++ b/themes/neon-forest.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 150 + pair: null contrast: fg: 80.2 black: 12.8 diff --git a/themes/neon-glow.yaml b/themes/neon-glow.yaml index e1572c48..5944cd3b 100644 --- a/themes/neon-glow.yaml +++ b/themes/neon-glow.yaml @@ -2,7 +2,7 @@ name: "Neon Glow" source: marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" version: "1.0.0" - installs: 1547 + installs: 1549 author: "Little Waterfall" repo: "https://github.com/LittleWaterfall/vscode-neon-glow" url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 91.9 black: 0 diff --git a/themes/neon-green-light.yaml b/themes/neon-green-light.yaml index 227cb2f9..106f8d08 100644 --- a/themes/neon-green-light.yaml +++ b/themes/neon-green-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Neon Green — Midnight" contrast: fg: 95.5 black: 99.2 diff --git a/themes/neon-green-midnight.yaml b/themes/neon-green-midnight.yaml index 21ab3614..21e83d48 100644 --- a/themes/neon-green-midnight.yaml +++ b/themes/neon-green-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 283 + pair: "Neon Green — Light" contrast: fg: 84.7 black: 0 diff --git a/themes/neon-lights.yaml b/themes/neon-lights.yaml index a8238242..68e8747f 100644 --- a/themes/neon-lights.yaml +++ b/themes/neon-lights.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87 black: 0 diff --git a/themes/neon-matrix.yaml b/themes/neon-matrix.yaml index 6c7be6c8..113d4cfa 100644 --- a/themes/neon-matrix.yaml +++ b/themes/neon-matrix.yaml @@ -2,7 +2,7 @@ name: "Neon Matrix" source: marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" version: "1.0.0" - installs: 1547 + installs: 1549 author: "Little Waterfall" repo: "https://github.com/LittleWaterfall/vscode-neon-glow" url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/neon-noir.yaml b/themes/neon-noir.yaml index f6d0d611..a8cb1f05 100644 --- a/themes/neon-noir.yaml +++ b/themes/neon-noir.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/neon-ocean.yaml b/themes/neon-ocean.yaml index e753575c..d246fb1c 100644 --- a/themes/neon-ocean.yaml +++ b/themes/neon-ocean.yaml @@ -2,7 +2,7 @@ name: "Neon Ocean" source: marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" version: "1.0.0" - installs: 1547 + installs: 1549 author: "Little Waterfall" repo: "https://github.com/LittleWaterfall/vscode-neon-glow" url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 251 + pair: null contrast: fg: 92.1 black: 0 diff --git a/themes/neon-palette-themes-blue.yaml b/themes/neon-palette-themes-blue.yaml deleted file mode 100644 index f93b1a9c..00000000 --- a/themes/neon-palette-themes-blue.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Neon Palette Themes (Blue)" -source: - marketplace_id: "Jofa8.neon-palette-themes" - version: "0.0.1" - installs: 1870 - author: "Jofa8" - repo: "https://github.com/Jofa8/neon-palette-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Jofa8.neon-palette-themes" -colors: - bg: "#12130F" - fg: "#D0CCD1" - black: "#000000" - red: "#CD3131" - green: "#7FE960" - yellow: "#FFEC03" - blue: "#03B4FF" - magenta: "#FF5CE4" - cyan: "#02E1D9" - white: "#D0CCD1" - brightBlack: "#8C8C8C" - brightRed: "#FF5E5E" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 75.8 - black: 0 - red: 27.1 - green: 78.3 - yellow: 93 - blue: 56.1 - magenta: 50.6 - cyan: 74.5 - white: 75.8 - brightBlack: 40 - brightRed: 45.6 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.4 - brightMagenta: 45.8 - brightCyan: 55.8 - brightWhite: 90.4 diff --git a/themes/neon-purple-old-school.yaml b/themes/neon-purple-old-school.yaml deleted file mode 100644 index 7fb0b843..00000000 --- a/themes/neon-purple-old-school.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "NEON PURPLE OLD-SCHOOL" -source: - marketplace_id: "guicastro13.onebitcode-theme" - version: "0.0.5" - installs: 2293 - author: "guicastro13" - repo: "https://github.com/guicastro13/onebitcode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" -colors: - bg: "#1D0038" - fg: "#D4D4D4" - black: "#9A00E0" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "magenta" - hue: 301 - contrast: - fg: 79.5 - black: 22.9 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 106.9 - brightBlack: 22 - brightRed: 38.6 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90 diff --git a/themes/neon-shimmer-amethyst-core.yaml b/themes/neon-shimmer-amethyst-core.yaml index b7a1c99e..4cb24137 100644 --- a/themes/neon-shimmer-amethyst-core.yaml +++ b/themes/neon-shimmer-amethyst-core.yaml @@ -2,7 +2,7 @@ name: "Neon Shimmer (Amethyst Core)" source: marketplace_id: "piperunner.neon-shimmer" version: "1.2.0" - installs: 16855 + installs: 16857 author: "Pipe Runner" repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 304 + pair: null contrast: fg: 87.1 black: 0 diff --git a/themes/neon-shimmer-bubblegum-punk.yaml b/themes/neon-shimmer-bubblegum-punk.yaml index 2fa96007..a23483b3 100644 --- a/themes/neon-shimmer-bubblegum-punk.yaml +++ b/themes/neon-shimmer-bubblegum-punk.yaml @@ -2,7 +2,7 @@ name: "Neon Shimmer (Bubblegum Punk)" source: marketplace_id: "piperunner.neon-shimmer" version: "1.2.0" - installs: 16855 + installs: 16857 author: "Pipe Runner" repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 335 + pair: null contrast: fg: 90.2 black: 0 diff --git a/themes/neon-shimmer-crimson-drive.yaml b/themes/neon-shimmer-crimson-drive.yaml index 44c2ea87..3b3ae378 100644 --- a/themes/neon-shimmer-crimson-drive.yaml +++ b/themes/neon-shimmer-crimson-drive.yaml @@ -2,7 +2,7 @@ name: "Neon Shimmer (Crimson Drive)" source: marketplace_id: "piperunner.neon-shimmer" version: "1.2.0" - installs: 16855 + installs: 16857 author: "Pipe Runner" repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 2 + pair: null contrast: fg: 74.1 black: 0 diff --git a/themes/neon-shimmer.yaml b/themes/neon-shimmer.yaml index e163bc83..2adf9d58 100644 --- a/themes/neon-shimmer.yaml +++ b/themes/neon-shimmer.yaml @@ -2,7 +2,7 @@ name: "Neon Shimmer" source: marketplace_id: "piperunner.neon-shimmer" version: "1.2.0" - installs: 16855 + installs: 16857 author: "Pipe Runner" repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/neon-side.yaml b/themes/neon-side.yaml index 5c260d91..daa3e8cf 100644 --- a/themes/neon-side.yaml +++ b/themes/neon-side.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 44.4 black: 0 diff --git a/themes/neon-sunset.yaml b/themes/neon-sunset.yaml index 65e6d728..ecf974b4 100644 --- a/themes/neon-sunset.yaml +++ b/themes/neon-sunset.yaml @@ -2,7 +2,7 @@ name: "Neon Sunset" source: marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" version: "1.0.0" - installs: 1547 + installs: 1549 author: "Little Waterfall" repo: "https://github.com/LittleWaterfall/vscode-neon-glow" url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 82 + pair: null contrast: fg: 66.4 black: 0 diff --git a/themes/neon-synthwave.yaml b/themes/neon-synthwave.yaml index d235272c..73d42f60 100644 --- a/themes/neon-synthwave.yaml +++ b/themes/neon-synthwave.yaml @@ -2,7 +2,7 @@ name: "Neon Synthwave" source: marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" version: "1.0.0" - installs: 1547 + installs: 1549 author: "Little Waterfall" repo: "https://github.com/LittleWaterfall/vscode-neon-glow" url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 301 + pair: null contrast: fg: 99.2 black: 0 diff --git a/themes/neon-theme.yaml b/themes/neon-theme.yaml index dcadde2f..b785a22f 100644 --- a/themes/neon-theme.yaml +++ b/themes/neon-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 73.1 black: 0 diff --git a/themes/neon-trench-theme.yaml b/themes/neon-trench-theme.yaml index 21b83369..43d78fdf 100644 --- a/themes/neon-trench-theme.yaml +++ b/themes/neon-trench-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/neon-violet.yaml b/themes/neon-violet.yaml index 2d6d6e18..92c250ea 100644 --- a/themes/neon-violet.yaml +++ b/themes/neon-violet.yaml @@ -2,7 +2,7 @@ name: "Neon Violet" source: marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" version: "1.0.0" - installs: 1547 + installs: 1549 author: "Little Waterfall" repo: "https://github.com/LittleWaterfall/vscode-neon-glow" url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 317 + pair: null contrast: fg: 45.2 black: 0 diff --git a/themes/neon.yaml b/themes/neon.yaml deleted file mode 100644 index 8881cbbc..00000000 --- a/themes/neon.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Neon" -source: - marketplace_id: "luiciff.luiciff-theme" - version: "0.0.3" - installs: 141 - author: "luiciff" - repo: "https://github.com/luic1ff/vs-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=luiciff.luiciff-theme" -colors: - bg: "#232136" - fg: "#E0DEF4" - black: "#393552" - red: "#EB6F92" - green: "#3E8FB0" - yellow: "#F6C177" - blue: "#9CCFD8" - magenta: "#C4A7E7" - cyan: "#CA9EE6" - white: "#E0DEF4" - brightBlack: "#908CAA" - brightRed: "#EB6F92" - brightGreen: "#3E8FB0" - brightYellow: "#F6C177" - brightBlue: "#9CCFD8" - brightMagenta: "#C4A7E7" - brightCyan: "#CA9EE6" - brightWhite: "#E0DEF4" -meta: - mode: "dark" - accent: "red" - hue: 288 - contrast: - fg: 85.3 - black: 0 - red: 44.2 - green: 35.2 - yellow: 71.9 - blue: 69.7 - magenta: 58.7 - cyan: 56.3 - white: 85.3 - brightBlack: 39.6 - brightRed: 44.2 - brightGreen: 35.2 - brightYellow: 71.9 - brightBlue: 69.7 - brightMagenta: 58.7 - brightCyan: 56.3 - brightWhite: 85.3 diff --git a/themes/neonaska.yaml b/themes/neonaska.yaml index 67f9d07d..8e5144b3 100644 --- a/themes/neonaska.yaml +++ b/themes/neonaska.yaml @@ -2,7 +2,7 @@ name: "NeonAska" source: marketplace_id: "Askka.neon-aska-theme" version: "0.0.3" - installs: 92 + installs: 93 author: "Askka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Askka.neon-aska-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.7 black: 0 diff --git a/themes/neonite.yaml b/themes/neonite.yaml index b342b3da..6bfcff7c 100644 --- a/themes/neonite.yaml +++ b/themes/neonite.yaml @@ -2,7 +2,7 @@ name: "Neonite" source: marketplace_id: "MohamedElsherbiny.neonite-theme" version: "1.3.0" - installs: 627 + installs: 628 author: "Mohamed Elsherbiny" repo: "https://github.com/MoElsherbiny/vscode-neonite-theme" url: "https://marketplace.visualstudio.com/items?itemName=MohamedElsherbiny.neonite-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 258 + pair: null contrast: fg: 100.2 black: 0 diff --git a/themes/neonmist.yaml b/themes/neonmist.yaml index 067ee25d..18aab532 100644 --- a/themes/neonmist.yaml +++ b/themes/neonmist.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 289 + pair: null contrast: fg: 44.3 black: 0 diff --git a/themes/neonshaded.yaml b/themes/neonshaded.yaml index e5bfb6c7..8d69788e 100644 --- a/themes/neonshaded.yaml +++ b/themes/neonshaded.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 63.3 black: 0 diff --git a/themes/neorose-vimpine.yaml b/themes/neorose-vimpine.yaml index 6c58c86c..e9d1a8a5 100644 --- a/themes/neorose-vimpine.yaml +++ b/themes/neorose-vimpine.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 291 + pair: null contrast: fg: 86.8 black: 0 diff --git a/themes/neospace.yaml b/themes/neospace.yaml index d309ec4d..b8e4f21b 100644 --- a/themes/neospace.yaml +++ b/themes/neospace.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 289 + pair: null contrast: fg: 64.9 black: 17.9 diff --git a/themes/neospectrum-midnight.yaml b/themes/neospectrum-midnight.yaml index 8585e805..7b5254d4 100644 --- a/themes/neospectrum-midnight.yaml +++ b/themes/neospectrum-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 253 + pair: null contrast: fg: 102.3 black: 0 diff --git a/themes/neospectrum-mystic.yaml b/themes/neospectrum-mystic.yaml index d689a70c..6b94ee86 100644 --- a/themes/neospectrum-mystic.yaml +++ b/themes/neospectrum-mystic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 291 + pair: null contrast: fg: 77 black: 0 diff --git a/themes/neovim-sp.yaml b/themes/neovim-sp.yaml index d58b1b26..c239e979 100644 --- a/themes/neovim-sp.yaml +++ b/themes/neovim-sp.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 263 + pair: null contrast: fg: 101.9 black: 0 diff --git a/themes/neovim-theme.yaml b/themes/neovim-theme.yaml index 43c32a4d..b4be8620 100644 --- a/themes/neovim-theme.yaml +++ b/themes/neovim-theme.yaml @@ -2,7 +2,7 @@ name: "neovim-theme" source: marketplace_id: "GustavoLins05.neovim-theme" version: "4.0.0" - installs: 838 + installs: 839 author: "Gustavo Lins" repo: null url: "https://marketplace.visualstudio.com/items?itemName=GustavoLins05.neovim-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 103.5 black: 0 diff --git a/themes/nephtis-dark.yaml b/themes/nephtis-dark.yaml index 3688510e..0a134e48 100644 --- a/themes/nephtis-dark.yaml +++ b/themes/nephtis-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 73 + pair: "Nephtis Light" contrast: fg: 97.2 black: 0 diff --git a/themes/nephtis-light.yaml b/themes/nephtis-light.yaml index 0ff3b024..55892022 100644 --- a/themes/nephtis-light.yaml +++ b/themes/nephtis-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Nephtis Dark" contrast: fg: 93.9 black: 102.1 diff --git a/themes/nerd-light.yaml b/themes/nerd-light.yaml index 27c04d05..90978059 100644 --- a/themes/nerd-light.yaml +++ b/themes/nerd-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 95.6 black: 87.6 diff --git a/themes/nero.yaml b/themes/nero.yaml index d33284ac..59fc13ff 100644 --- a/themes/nero.yaml +++ b/themes/nero.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 254 + pair: null contrast: fg: 68.4 black: 0 diff --git a/themes/nestjs-codes.yaml b/themes/nestjs-codes.yaml index 9fb809a8..6d5749fb 100644 --- a/themes/nestjs-codes.yaml +++ b/themes/nestjs-codes.yaml @@ -2,7 +2,7 @@ name: "nestjs.codes" source: marketplace_id: "EstevamSouza.nestjs-codes-vscode-theme" version: "0.0.4" - installs: 10564 + installs: 10567 author: "Estevam Souza" repo: "https://github.com/estevam5s/nestjs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=EstevamSouza.nestjs-codes-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 56.9 black: 33.4 diff --git a/themes/netbeans-harmonized.yaml b/themes/netbeans-harmonized.yaml index e4bd2c6c..80b91354 100644 --- a/themes/netbeans-harmonized.yaml +++ b/themes/netbeans-harmonized.yaml @@ -2,7 +2,7 @@ name: "NetBeans Harmonized" source: marketplace_id: "drkcode.clasic-harmonized-theme" version: "0.0.5" - installs: 558 + installs: 559 author: "drkcode" repo: null url: "https://marketplace.visualstudio.com/items?itemName=drkcode.clasic-harmonized-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.2 black: 92.5 diff --git a/themes/netbilla-blue.yaml b/themes/netbilla-blue.yaml index e9bd364f..0136e9f4 100644 --- a/themes/netbilla-blue.yaml +++ b/themes/netbilla-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 98.9 black: 0 diff --git a/themes/netlify-theme.yaml b/themes/netlify-theme.yaml index 9b0f7d0a..675b78b6 100644 --- a/themes/netlify-theme.yaml +++ b/themes/netlify-theme.yaml @@ -2,7 +2,7 @@ name: "Netlify Theme" source: marketplace_id: "ohheyjosh.netlify-vscode-theme" version: "1.2.4" - installs: 522 + installs: 523 author: "ohheyjosh" repo: "https://github.com/ohheyjosh/netlify-theme" url: "https://marketplace.visualstudio.com/items?itemName=ohheyjosh.netlify-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 220 + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/netlify.yaml b/themes/netlify.yaml index 03463659..ef8c0be4 100644 --- a/themes/netlify.yaml +++ b/themes/netlify.yaml @@ -2,7 +2,7 @@ name: "Netlify" source: marketplace_id: "austincondiff.netlify-vscode-theme" version: "1.0.4" - installs: 4681 + installs: 4682 author: "Austin Condiff" repo: "https://github.com/austincondiff/netlify-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=austincondiff.netlify-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 103.9 black: 13.3 diff --git a/themes/netrunnaz.yaml b/themes/netrunnaz.yaml index fb8d1e9a..9913b672 100644 --- a/themes/netrunnaz.yaml +++ b/themes/netrunnaz.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 37.3 black: 14.5 diff --git a/themes/netstack.yaml b/themes/netstack.yaml index cf0c5c2f..71e1b05d 100644 --- a/themes/netstack.yaml +++ b/themes/netstack.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 74.7 black: 0 diff --git a/themes/nettsi-monokai-darker.yaml b/themes/nettsi-monokai-darker.yaml index e2d07437..fe4e3a74 100644 --- a/themes/nettsi-monokai-darker.yaml +++ b/themes/nettsi-monokai-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/netuno.yaml b/themes/netuno.yaml index 9b327f90..62ae35a5 100644 --- a/themes/netuno.yaml +++ b/themes/netuno.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 202 + pair: null contrast: fg: 77.5 black: 19.6 diff --git a/themes/neumatter-night.yaml b/themes/neumatter-night.yaml index 8c81f7da..caa5d84d 100644 --- a/themes/neumatter-night.yaml +++ b/themes/neumatter-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 95.7 black: 0 diff --git a/themes/neuraltone.yaml b/themes/neuraltone.yaml index 51420d4e..88bfbcd4 100644 --- a/themes/neuraltone.yaml +++ b/themes/neuraltone.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 272 + pair: null contrast: fg: 88.1 black: 22.9 diff --git a/themes/neutral-gray-minimalism-focus.yaml b/themes/neutral-gray-minimalism-focus.yaml index d7cf6720..46e5bd07 100644 --- a/themes/neutral-gray-minimalism-focus.yaml +++ b/themes/neutral-gray-minimalism-focus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 103.2 black: 0 diff --git a/themes/neutral.yaml b/themes/neutral.yaml index 16164f64..fd2184e6 100644 --- a/themes/neutral.yaml +++ b/themes/neutral.yaml @@ -1,49 +1,50 @@ name: "Neutral" source: - marketplace_id: "Jonaqhan.jonaqhan" - version: "4.8.0" - installs: 753 - author: "Jonaqhan" - repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" + marketplace_id: "YesCode.sober-code" + version: "0.0.7" + installs: 128 + author: "YesCode" + repo: "https://git@github.com/yesomac/vs-sober" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.sober-code" colors: - bg: "#262335" - fg: "#05F5E7" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" + bg: "#15161A" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#B0C5C3" + brightYellow: "#20473A" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" meta: mode: "dark" - accent: "pink" - hue: 292 + accent: "orange" + hue: null + pair: null contrast: - fg: 82.8 + fg: 104.6 black: 0 - red: 24.7 - green: 51 - yellow: 83.6 - blue: 25.5 - magenta: 27.8 - cyan: 45.6 - white: 88 - brightBlack: 20.1 - brightRed: 36.6 - brightGreen: 61.6 - brightYellow: 93.7 - brightBlue: 38 - brightMagenta: 43.4 - brightCyan: 53.4 - brightWhite: 88 + red: 42.1 + green: 61.1 + yellow: 73.1 + blue: 47.6 + magenta: 19.6 + cyan: 49.5 + white: 47.3 + brightBlack: 18.7 + brightRed: 42.1 + brightGreen: 68.1 + brightYellow: 7.7 + brightBlue: 18.8 + brightMagenta: 19.6 + brightCyan: 49.5 + brightWhite: 98.9 diff --git a/themes/neutralvi.yaml b/themes/neutralvi.yaml index 94548644..05a82f25 100644 --- a/themes/neutralvi.yaml +++ b/themes/neutralvi.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 358 + pair: null contrast: fg: 99.8 black: 0 diff --git a/themes/neutron.yaml b/themes/neutron.yaml index 33da8714..2f43202b 100644 --- a/themes/neutron.yaml +++ b/themes/neutron.yaml @@ -2,7 +2,7 @@ name: "Neutron" source: marketplace_id: "Avetis.neutron-palette" version: "0.0.3" - installs: 1017 + installs: 1018 author: "Avetis" repo: "https://github.com/AvetisDN/neutron-palette" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.neutron-palette" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 89.9 black: 0 diff --git a/themes/nevada.yaml b/themes/nevada.yaml index 3248e6cd..f5686dfd 100644 --- a/themes/nevada.yaml +++ b/themes/nevada.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 179 + pair: null contrast: fg: 61 black: 61 diff --git a/themes/never-be-lost-day.yaml b/themes/never-be-lost-day.yaml index 13a13c4e..0166f3b8 100644 --- a/themes/never-be-lost-day.yaml +++ b/themes/never-be-lost-day.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 90 black: 0 diff --git a/themes/never-be-lost-night.yaml b/themes/never-be-lost-night.yaml index b5d8918c..1a583855 100644 --- a/themes/never-be-lost-night.yaml +++ b/themes/never-be-lost-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 91.6 black: 0 diff --git a/themes/nevermore.yaml b/themes/nevermore.yaml index 696cbdcf..2a654491 100644 --- a/themes/nevermore.yaml +++ b/themes/nevermore.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 99.5 black: 0 diff --git a/themes/neverwhere.yaml b/themes/neverwhere.yaml index 0bcce0da..4a166379 100644 --- a/themes/neverwhere.yaml +++ b/themes/neverwhere.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 69.1 black: 19.3 diff --git a/themes/nevo-black.yaml b/themes/nevo-black.yaml index 0ef4ebe5..7024fed5 100644 --- a/themes/nevo-black.yaml +++ b/themes/nevo-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 71.8 black: 10.6 diff --git a/themes/nevo-comfy.yaml b/themes/nevo-comfy.yaml index c7176e58..94807587 100644 --- a/themes/nevo-comfy.yaml +++ b/themes/nevo-comfy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85.5 black: 0 diff --git a/themes/nevo.yaml b/themes/nevo.yaml index 5164bfeb..3294fdf0 100644 --- a/themes/nevo.yaml +++ b/themes/nevo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 206 + pair: null contrast: fg: 71.4 black: 10.2 diff --git a/themes/new-england-light-theme.yaml b/themes/new-england-light-theme.yaml index d3741687..3ce13843 100644 --- a/themes/new-england-light-theme.yaml +++ b/themes/new-england-light-theme.yaml @@ -2,7 +2,7 @@ name: "New England light theme" source: marketplace_id: "dustypomerleau.new-england" version: "0.10.0" - installs: 7008 + installs: 7010 author: "Dusty Pomerleau" repo: "https://github.com/dustypomerleau/new-england" url: "https://marketplace.visualstudio.com/items?itemName=dustypomerleau.new-england" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 84.6 black: 84.6 diff --git a/themes/new-moon.yaml b/themes/new-moon.yaml index 05f5d52d..a5726274 100644 --- a/themes/new-moon.yaml +++ b/themes/new-moon.yaml @@ -1,11 +1,11 @@ name: "New Moon" source: - marketplace_id: "taniarascia.new-moon-vscode" - version: "1.8.8" - installs: 117734 - author: "Tania Rascia" - repo: "https://github.com/taniarascia/new-moon-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=taniarascia.new-moon-vscode" + marketplace_id: "ganevru.solid-moon-theme" + version: "0.0.7" + installs: 667 + author: "ganevru" + repo: "https://github.com/ganevru/solid-moon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ganevru.solid-moon-theme" colors: bg: "#2D2D2D" fg: "#B3B9C5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 60 black: 18.6 diff --git a/themes/new-owl.yaml b/themes/new-owl.yaml index 80b5ad8a..57f01f4f 100644 --- a/themes/new-owl.yaml +++ b/themes/new-owl.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 243 + pair: null contrast: fg: 78 black: 0 diff --git a/themes/new-retro.yaml b/themes/new-retro.yaml index e25167f2..705c7e22 100644 --- a/themes/new-retro.yaml +++ b/themes/new-retro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 273 + pair: null contrast: fg: 61.1 black: 19.7 diff --git a/themes/new-south-wales-dark.yaml b/themes/new-south-wales-dark.yaml index d5c09f9d..43fdc760 100644 --- a/themes/new-south-wales-dark.yaml +++ b/themes/new-south-wales-dark.yaml @@ -1,8 +1,8 @@ name: "New South Wales Dark" source: marketplace_id: "lucidlabs.new-south-wales-theme" - version: "1.1.0" - installs: 0 + version: "1.3.0" + installs: 1 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.new-south-wales-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: "New South Wales Light" contrast: fg: 95.4 black: 0 diff --git a/themes/new-south-wales-light.yaml b/themes/new-south-wales-light.yaml index 7d577c69..ba4b4f9d 100644 --- a/themes/new-south-wales-light.yaml +++ b/themes/new-south-wales-light.yaml @@ -1,8 +1,8 @@ name: "New South Wales Light" source: marketplace_id: "lucidlabs.new-south-wales-theme" - version: "1.1.0" - installs: 0 + version: "1.3.0" + installs: 1 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.new-south-wales-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "New South Wales Dark" contrast: fg: 105.6 black: 105.6 diff --git a/themes/new-sphere.yaml b/themes/new-sphere.yaml index 3c3e16a6..fe399474 100644 --- a/themes/new-sphere.yaml +++ b/themes/new-sphere.yaml @@ -2,7 +2,7 @@ name: "new-sphere" source: marketplace_id: "FSharaf.new-sphere" version: "0.1.1" - installs: 277 + installs: 279 author: "Sharaf Feyzullayev" repo: "https://github.com/FSharafff/new-sphere" url: "https://marketplace.visualstudio.com/items?itemName=FSharaf.new-sphere" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/new-theme.yaml b/themes/new-theme.yaml index cf16b773..f6a1e9a6 100644 --- a/themes/new-theme.yaml +++ b/themes/new-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 320 + pair: null contrast: fg: 86.9 black: 0 diff --git a/themes/newdarktheme.yaml b/themes/newdarktheme.yaml index 32790b25..ca458ee6 100644 --- a/themes/newdarktheme.yaml +++ b/themes/newdarktheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 74.5 black: 0 diff --git a/themes/newera-dark-theme.yaml b/themes/newera-dark-theme.yaml index 79007a0c..ec60ba10 100644 --- a/themes/newera-dark-theme.yaml +++ b/themes/newera-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 272 + pair: null contrast: fg: 86 black: 75.6 diff --git a/themes/newrailscasts.yaml b/themes/newrailscasts.yaml index e313e087..fc20077f 100644 --- a/themes/newrailscasts.yaml +++ b/themes/newrailscasts.yaml @@ -2,7 +2,7 @@ name: "NewRailscasts" source: marketplace_id: "carakan.new-railscasts" version: "1.0.68" - installs: 4016 + installs: 4018 author: "Carlos Ramos" repo: "https://github.com/carakan/new-railscasts-vscode" url: "https://marketplace.visualstudio.com/items?itemName=carakan.new-railscasts" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 101.4 black: 0 diff --git a/themes/newspaperlike.yaml b/themes/newspaperlike.yaml index 30cb61cf..04549345 100644 --- a/themes/newspaperlike.yaml +++ b/themes/newspaperlike.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 79 black: 83.2 diff --git a/themes/newsprint-c.yaml b/themes/newsprint-c.yaml deleted file mode 100644 index e82a9f80..00000000 --- a/themes/newsprint-c.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "newsprint-c" -source: - marketplace_id: "lumiknit.newsprint" - version: "0.0.12" - installs: 357 - author: "lumiknit" - repo: "https://github.com/lumiknit/vscode-newsprint-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lumiknit.newsprint" -colors: - bg: "#F2F2F2" - fg: "#444444" - black: "#000000" - red: "#E41507" - green: "#57BD66" - yellow: "#FFBD5E" - blue: "#2981CA" - magenta: "#A464D1" - cyan: "#51D2FF" - white: "#DDDDDD" - brightBlack: "#505050" - brightRed: "#FF675D" - brightGreen: "#99E391" - brightYellow: "#FFDE82" - brightBlue: "#4190F7" - brightMagenta: "#D9B9F0" - brightCyan: "#A3FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 84.9 - black: 98.3 - red: 62.8 - green: 38.6 - yellow: 21 - blue: 60.2 - magenta: 58.8 - cyan: 23.8 - white: 9.8 - brightBlack: 80.2 - brightRed: 46.1 - brightGreen: 16.6 - brightYellow: 7.6 - brightBlue: 51.1 - brightMagenta: 23.5 - brightCyan: 0 - brightWhite: 0 diff --git a/themes/newsprint-invert.yaml b/themes/newsprint-invert.yaml index 54222209..85548239 100644 --- a/themes/newsprint-invert.yaml +++ b/themes/newsprint-invert.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 63.8 black: 105.9 diff --git a/themes/newsprint-so.yaml b/themes/newsprint-so.yaml index e47c00e8..bd790212 100644 --- a/themes/newsprint-so.yaml +++ b/themes/newsprint-so.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.9 black: 86.6 diff --git a/themes/newton-contrast.yaml b/themes/newton-contrast.yaml index 80aad166..ca7beb73 100644 --- a/themes/newton-contrast.yaml +++ b/themes/newton-contrast.yaml @@ -1,11 +1,11 @@ name: "newton-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#121014" fg: "#EAEBFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 95.2 black: 0 diff --git a/themes/newton-light.yaml b/themes/newton-light.yaml index 1eb018f1..ed4a0af4 100644 --- a/themes/newton-light.yaml +++ b/themes/newton-light.yaml @@ -1,11 +1,11 @@ name: "newton-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#444444" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/newton-next-official.yaml b/themes/newton-next-official.yaml index 0cecc98c..1651b807 100644 --- a/themes/newton-next-official.yaml +++ b/themes/newton-next-official.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 74 black: 0 diff --git a/themes/newton.yaml b/themes/newton.yaml index 724db964..08340227 100644 --- a/themes/newton.yaml +++ b/themes/newton.yaml @@ -1,11 +1,11 @@ name: "newton" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#342E37" fg: "#EAEBFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 315 + pair: null contrast: fg: 90.5 black: 0 diff --git a/themes/newx-light.yaml b/themes/newx-light.yaml index 9547944a..78e355d8 100644 --- a/themes/newx-light.yaml +++ b/themes/newx-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 93.3 black: 101.3 diff --git a/themes/next-theme.yaml b/themes/next-theme.yaml index 7e58bd52..2ab16065 100644 --- a/themes/next-theme.yaml +++ b/themes/next-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 58.4 black: 13.6 diff --git a/themes/nextcode.yaml b/themes/nextcode.yaml index 609f64d6..b199fb73 100644 --- a/themes/nextcode.yaml +++ b/themes/nextcode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 249 + pair: null contrast: fg: 105 black: 0 diff --git a/themes/nexus.yaml b/themes/nexus.yaml index 8b8df818..1b2e218c 100644 --- a/themes/nexus.yaml +++ b/themes/nexus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 280 + pair: null contrast: fg: 54.3 black: 0 diff --git a/themes/ngc-aurora-dawn.yaml b/themes/ngc-aurora-dawn.yaml index 3f107784..d1c7e099 100644 --- a/themes/ngc-aurora-dawn.yaml +++ b/themes/ngc-aurora-dawn.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "NGC Aurora Night" contrast: fg: 98 black: 90.7 diff --git a/themes/ngc-aurora-night.yaml b/themes/ngc-aurora-night.yaml index 7558e3a0..0b155ee9 100644 --- a/themes/ngc-aurora-night.yaml +++ b/themes/ngc-aurora-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 260 + pair: "NGC Aurora Dawn" contrast: fg: 89.1 black: 0 diff --git a/themes/ngc-forest-retreat.yaml b/themes/ngc-forest-retreat.yaml index 59c8206f..f0e5d0a6 100644 --- a/themes/ngc-forest-retreat.yaml +++ b/themes/ngc-forest-retreat.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 82.4 black: 0 diff --git a/themes/ngc-midnight-base.yaml b/themes/ngc-midnight-base.yaml index 4e0f78bd..6b427fd1 100644 --- a/themes/ngc-midnight-base.yaml +++ b/themes/ngc-midnight-base.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/ngoding-bro.yaml b/themes/ngoding-bro.yaml index f6b1fa77..a0cc1554 100644 --- a/themes/ngoding-bro.yaml +++ b/themes/ngoding-bro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 269 + pair: null contrast: fg: 76.8 black: 13.6 diff --git a/themes/nibelung-dark.yaml b/themes/nibelung-dark.yaml index 1ba87528..5bd5ff7e 100644 --- a/themes/nibelung-dark.yaml +++ b/themes/nibelung-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 58.9 black: 0 diff --git a/themes/nibelung.yaml b/themes/nibelung.yaml index 426703e5..fcb7e41a 100644 --- a/themes/nibelung.yaml +++ b/themes/nibelung.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 92.8 black: 36.9 diff --git a/themes/nice-dark.yaml b/themes/nice-dark.yaml index cbf277c8..7f02d99b 100644 --- a/themes/nice-dark.yaml +++ b/themes/nice-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 71.9 black: 0 diff --git a/themes/nicedark-fork.yaml b/themes/nicedark-fork.yaml index 4577ad2e..2c787d7d 100644 --- a/themes/nicedark-fork.yaml +++ b/themes/nicedark-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 242 + pair: null contrast: fg: 100.1 black: 0 diff --git a/themes/nicedark.yaml b/themes/nicedark.yaml index 7ffb3fde..7936fed3 100644 --- a/themes/nicedark.yaml +++ b/themes/nicedark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 242 + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/nicely-neon.yaml b/themes/nicely-neon.yaml index 28793145..1de4dc0c 100644 --- a/themes/nicely-neon.yaml +++ b/themes/nicely-neon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 86.7 black: 0 diff --git a/themes/nier-automata-light-theme.yaml b/themes/nier-automata-light-theme.yaml index 0b6adb42..fbc4c79c 100644 --- a/themes/nier-automata-light-theme.yaml +++ b/themes/nier-automata-light-theme.yaml @@ -2,7 +2,7 @@ name: "Nier: Automata Light Theme" source: marketplace_id: "b5261b62-5943-495a-a2cd-2b281ddb7a76.vscode-nier-automata-theme" version: "1.0.0" - installs: 15576 + installs: 15582 author: "Shelune" repo: "https://github.com/shelune/vscode-nier-automata-light" url: "https://marketplace.visualstudio.com/items?itemName=b5261b62-5943-495a-a2cd-2b281ddb7a76.vscode-nier-automata-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 94 + pair: null contrast: fg: 64.2 black: 0 diff --git a/themes/nier-automata-theme.yaml b/themes/nier-automata-theme.yaml index 50ce94a0..77f47316 100644 --- a/themes/nier-automata-theme.yaml +++ b/themes/nier-automata-theme.yaml @@ -2,7 +2,7 @@ name: "Nier: Automata Theme" source: marketplace_id: "israelyagopereira.nier-automata-theme" version: "0.0.4" - installs: 2275 + installs: 2277 author: "Israel Yago Pereira" repo: "https://github.com/israelyago/nier-automata-vscode" url: "https://marketplace.visualstudio.com/items?itemName=israelyagopereira.nier-automata-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 88 + pair: null contrast: fg: 76.8 black: 76 diff --git a/themes/night-aurora.yaml b/themes/night-aurora.yaml index f4493c30..dbb08d9e 100644 --- a/themes/night-aurora.yaml +++ b/themes/night-aurora.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 285 + pair: null contrast: fg: 45.6 black: 0 diff --git a/themes/night-blossom.yaml b/themes/night-blossom.yaml index db11126d..9d069c37 100644 --- a/themes/night-blossom.yaml +++ b/themes/night-blossom.yaml @@ -2,7 +2,7 @@ name: "night-blossom" source: marketplace_id: "RustedTurnip.night-blossom" version: "0.1.0" - installs: 1575 + installs: 1576 author: "RustedTurnip" repo: "https://github.com/RustedTurnip/night-blossom" url: "https://marketplace.visualstudio.com/items?itemName=RustedTurnip.night-blossom" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 263 + pair: null contrast: fg: 98.1 black: 0 diff --git a/themes/night-blue-high.yaml b/themes/night-blue-high.yaml index 5681262e..ecebc5aa 100644 --- a/themes/night-blue-high.yaml +++ b/themes/night-blue-high.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 264 + pair: null contrast: fg: 106.4 black: 0 diff --git a/themes/night-city.yaml b/themes/night-city.yaml index 942185d9..d7417c3e 100644 --- a/themes/night-city.yaml +++ b/themes/night-city.yaml @@ -2,7 +2,7 @@ name: "Night City" source: marketplace_id: "GibMalFeuerzeugBitte.night-city" version: "0.0.6" - installs: 68 + installs: 69 author: "GibMalFeuerzeugBitte" repo: "https://github.com/GibMalFeuerzeugBitte/Night-City" url: "https://marketplace.visualstudio.com/items?itemName=GibMalFeuerzeugBitte.night-city" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 249 + pair: null contrast: fg: 87.6 black: 0 diff --git a/themes/night-cyan.yaml b/themes/night-cyan.yaml index d1a8aa34..5ceac8be 100644 --- a/themes/night-cyan.yaml +++ b/themes/night-cyan.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 71 black: 0 diff --git a/themes/night-dragon.yaml b/themes/night-dragon.yaml index 6952105e..ac660bdb 100644 --- a/themes/night-dragon.yaml +++ b/themes/night-dragon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 273 + pair: null contrast: fg: 106.7 black: 0 diff --git a/themes/night-fae-theme.yaml b/themes/night-fae-theme.yaml index e7e00d7c..a64ea9b9 100644 --- a/themes/night-fae-theme.yaml +++ b/themes/night-fae-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 57.3 black: 0 diff --git a/themes/night-market.yaml b/themes/night-market.yaml index da8b0709..4d80d70e 100644 --- a/themes/night-market.yaml +++ b/themes/night-market.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 25.6 black: 0 diff --git a/themes/night-owl-oled-dim-100.yaml b/themes/night-owl-oled-dim-100.yaml index c6b89151..c86dba39 100644 --- a/themes/night-owl-oled-dim-100.yaml +++ b/themes/night-owl-oled-dim-100.yaml @@ -2,7 +2,7 @@ name: "Night Owl Oled Dim 100" source: marketplace_id: "WeiyuWang.night-owl-oled-dim" version: "1.0.1" - installs: 4585 + installs: 4590 author: "Weiyu Wang" repo: "https://github.com/wwang1110/night-owl-oled-dim" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 86.2 black: 0 diff --git a/themes/night-owl-oled-dim-75.yaml b/themes/night-owl-oled-dim-75.yaml index 930f6ad1..e5df31b8 100644 --- a/themes/night-owl-oled-dim-75.yaml +++ b/themes/night-owl-oled-dim-75.yaml @@ -2,7 +2,7 @@ name: "Night Owl Oled Dim 75" source: marketplace_id: "WeiyuWang.night-owl-oled-dim" version: "1.0.1" - installs: 4585 + installs: 4590 author: "Weiyu Wang" repo: "https://github.com/wwang1110/night-owl-oled-dim" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 53.8 black: 0 diff --git a/themes/night-owl-oled-dim-80.yaml b/themes/night-owl-oled-dim-80.yaml index 69409a9f..ab871b54 100644 --- a/themes/night-owl-oled-dim-80.yaml +++ b/themes/night-owl-oled-dim-80.yaml @@ -2,7 +2,7 @@ name: "Night Owl Oled Dim 80" source: marketplace_id: "WeiyuWang.night-owl-oled-dim" version: "1.0.1" - installs: 4585 + installs: 4590 author: "Weiyu Wang" repo: "https://github.com/wwang1110/night-owl-oled-dim" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 59.9 black: 0 diff --git a/themes/night-owl-oled-dim-85.yaml b/themes/night-owl-oled-dim-85.yaml index 9d755fef..36bb6d28 100644 --- a/themes/night-owl-oled-dim-85.yaml +++ b/themes/night-owl-oled-dim-85.yaml @@ -2,7 +2,7 @@ name: "Night Owl Oled Dim 85" source: marketplace_id: "WeiyuWang.night-owl-oled-dim" version: "1.0.1" - installs: 4585 + installs: 4590 author: "Weiyu Wang" repo: "https://github.com/wwang1110/night-owl-oled-dim" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 66 black: 0 diff --git a/themes/night-owl-oled-dim-90.yaml b/themes/night-owl-oled-dim-90.yaml index 7af45967..f4b0374b 100644 --- a/themes/night-owl-oled-dim-90.yaml +++ b/themes/night-owl-oled-dim-90.yaml @@ -2,7 +2,7 @@ name: "Night Owl Oled Dim 90" source: marketplace_id: "WeiyuWang.night-owl-oled-dim" version: "1.0.1" - installs: 4585 + installs: 4590 author: "Weiyu Wang" repo: "https://github.com/wwang1110/night-owl-oled-dim" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 72.4 black: 0 diff --git a/themes/night-owl-oled-dim-95.yaml b/themes/night-owl-oled-dim-95.yaml index b1961653..fa500940 100644 --- a/themes/night-owl-oled-dim-95.yaml +++ b/themes/night-owl-oled-dim-95.yaml @@ -2,7 +2,7 @@ name: "Night Owl Oled Dim 95" source: marketplace_id: "WeiyuWang.night-owl-oled-dim" version: "1.0.1" - installs: 4585 + installs: 4590 author: "Weiyu Wang" repo: "https://github.com/wwang1110/night-owl-oled-dim" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 79 black: 0 diff --git a/themes/night-owl.yaml b/themes/night-owl.yaml deleted file mode 100644 index 9b44b8b9..00000000 --- a/themes/night-owl.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Night Owl" -source: - marketplace_id: "pixelbeat.fx" - version: "0.0.1" - installs: 1143 - author: "David Galavotti" - repo: "https://github.com/davo/fx-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=pixelbeat.fx" -colors: - bg: "#011627" - fg: "#D6DEEB" - black: "#011627" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ADDB67" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 244 - contrast: - fg: 85.3 - black: 0 - red: 39.4 - green: 67.3 - yellow: 75 - blue: 56 - magenta: 53.8 - cyan: 59.8 - white: 107 - brightBlack: 15.7 - brightRed: 39.4 - brightGreen: 67.3 - brightYellow: 93.8 - brightBlue: 56 - brightMagenta: 53.8 - brightCyan: 74.1 - brightWhite: 107 diff --git a/themes/night-pink.yaml b/themes/night-pink.yaml index 2312f055..c72d4370 100644 --- a/themes/night-pink.yaml +++ b/themes/night-pink.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 71 black: 0 diff --git a/themes/night-raccoon.yaml b/themes/night-raccoon.yaml index 84e8680c..76d9fd0b 100644 --- a/themes/night-raccoon.yaml +++ b/themes/night-raccoon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 249 + pair: null contrast: fg: 79.8 black: 36.9 diff --git a/themes/night-rainbow-darker.yaml b/themes/night-rainbow-darker.yaml index b2e69052..26a48a64 100644 --- a/themes/night-rainbow-darker.yaml +++ b/themes/night-rainbow-darker.yaml @@ -2,7 +2,7 @@ name: "Night Rainbow - Darker" source: marketplace_id: "allan-carlos.night-rainbow" version: "3.0.0" - installs: 10393 + installs: 10397 author: "Allan Carlos" repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.9 black: 0 diff --git a/themes/night-rainbow-purple-haze.yaml b/themes/night-rainbow-purple-haze.yaml index 68713e45..33fce264 100644 --- a/themes/night-rainbow-purple-haze.yaml +++ b/themes/night-rainbow-purple-haze.yaml @@ -2,7 +2,7 @@ name: "Night Rainbow - Purple Haze" source: marketplace_id: "allan-carlos.night-rainbow" version: "3.0.0" - installs: 10393 + installs: 10397 author: "Allan Carlos" repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/night-rainbow.yaml b/themes/night-rainbow.yaml index b8806c98..bfbbcfaf 100644 --- a/themes/night-rainbow.yaml +++ b/themes/night-rainbow.yaml @@ -2,7 +2,7 @@ name: "Night Rainbow" source: marketplace_id: "allan-carlos.night-rainbow" version: "3.0.0" - installs: 10393 + installs: 10397 author: "Allan Carlos" repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/night-stack-amber-crt.yaml b/themes/night-stack-amber-crt.yaml index d93cd80f..be7ef711 100644 --- a/themes/night-stack-amber-crt.yaml +++ b/themes/night-stack-amber-crt.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 74 + pair: null contrast: fg: 69.8 black: 0 diff --git a/themes/night-stack-amber-dark.yaml b/themes/night-stack-amber-dark.yaml index 074deb60..a111c961 100644 --- a/themes/night-stack-amber-dark.yaml +++ b/themes/night-stack-amber-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 82 + pair: null contrast: fg: 98.6 black: 0 diff --git a/themes/night-stack-arctic-night.yaml b/themes/night-stack-arctic-night.yaml index ecfdd40f..f0854a6f 100644 --- a/themes/night-stack-arctic-night.yaml +++ b/themes/night-stack-arctic-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "blue" hue: 255 + pair: null contrast: fg: 100.1 black: 0 diff --git a/themes/night-stack-aurora.yaml b/themes/night-stack-aurora.yaml index ab496a2c..b8e31147 100644 --- a/themes/night-stack-aurora.yaml +++ b/themes/night-stack-aurora.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 278 + pair: null contrast: fg: 94 black: 0 diff --git a/themes/night-stack-carbon-green.yaml b/themes/night-stack-carbon-green.yaml index 42be07da..6f9d6c12 100644 --- a/themes/night-stack-carbon-green.yaml +++ b/themes/night-stack-carbon-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 87.1 black: 0 diff --git a/themes/night-stack-carbon.yaml b/themes/night-stack-carbon.yaml index 9b72b554..4bcfb235 100644 --- a/themes/night-stack-carbon.yaml +++ b/themes/night-stack-carbon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 80.2 black: 0 diff --git a/themes/night-stack-circuit.yaml b/themes/night-stack-circuit.yaml index b066b00c..2215cdc6 100644 --- a/themes/night-stack-circuit.yaml +++ b/themes/night-stack-circuit.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 163 + pair: null contrast: fg: 103.6 black: 0 diff --git a/themes/night-stack-copper-dark.yaml b/themes/night-stack-copper-dark.yaml index 2c01b770..959ccd56 100644 --- a/themes/night-stack-copper-dark.yaml +++ b/themes/night-stack-copper-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 44 + pair: null contrast: fg: 95.6 black: 0 diff --git a/themes/night-stack-crimson-dark.yaml b/themes/night-stack-crimson-dark.yaml index a461b620..a73fcc92 100644 --- a/themes/night-stack-crimson-dark.yaml +++ b/themes/night-stack-crimson-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 350 + pair: null contrast: fg: 94.3 black: 0 diff --git a/themes/night-stack-deep-work.yaml b/themes/night-stack-deep-work.yaml index 01f1c3be..a437d0dd 100644 --- a/themes/night-stack-deep-work.yaml +++ b/themes/night-stack-deep-work.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: 253 + pair: null contrast: fg: 83.3 black: 0 diff --git a/themes/night-stack-desert-dusk.yaml b/themes/night-stack-desert-dusk.yaml index 436259fe..eaea9905 100644 --- a/themes/night-stack-desert-dusk.yaml +++ b/themes/night-stack-desert-dusk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 68 + pair: null contrast: fg: 97.4 black: 0 diff --git a/themes/night-stack-dos-blue.yaml b/themes/night-stack-dos-blue.yaml index 9033c4e7..9542e426 100644 --- a/themes/night-stack-dos-blue.yaml +++ b/themes/night-stack-dos-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 103.9 black: 0 diff --git a/themes/night-stack-ember-dark.yaml b/themes/night-stack-ember-dark.yaml index afc52cb2..bc345d62 100644 --- a/themes/night-stack-ember-dark.yaml +++ b/themes/night-stack-ember-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 50 + pair: null contrast: fg: 94.9 black: 0 diff --git a/themes/night-stack-eyestrain-green.yaml b/themes/night-stack-eyestrain-green.yaml index 3e8835ce..73265f02 100644 --- a/themes/night-stack-eyestrain-green.yaml +++ b/themes/night-stack-eyestrain-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 92.4 black: 0 diff --git a/themes/night-stack-forest-night.yaml b/themes/night-stack-forest-night.yaml index 35e70843..dcba36f8 100644 --- a/themes/night-stack-forest-night.yaml +++ b/themes/night-stack-forest-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 97.7 black: 0 diff --git a/themes/night-stack-frost.yaml b/themes/night-stack-frost.yaml index 779b9c67..dda67aa9 100644 --- a/themes/night-stack-frost.yaml +++ b/themes/night-stack-frost.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "blue" hue: 251 + pair: null contrast: fg: 96.6 black: 0 diff --git a/themes/night-stack-graphite.yaml b/themes/night-stack-graphite.yaml index 8e9bdef2..cada107b 100644 --- a/themes/night-stack-graphite.yaml +++ b/themes/night-stack-graphite.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 83.3 black: 0 diff --git a/themes/night-stack-green-neon.yaml b/themes/night-stack-green-neon.yaml index 335750fb..dc4f346b 100644 --- a/themes/night-stack-green-neon.yaml +++ b/themes/night-stack-green-neon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 145 + pair: null contrast: fg: 98.5 black: 0 diff --git a/themes/night-stack-hacker-soft.yaml b/themes/night-stack-hacker-soft.yaml index d336afc2..5fe9a6e8 100644 --- a/themes/night-stack-hacker-soft.yaml +++ b/themes/night-stack-hacker-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 88.2 black: 0 diff --git a/themes/night-stack-hologram.yaml b/themes/night-stack-hologram.yaml index eabfc8cc..b1f7c6cd 100644 --- a/themes/night-stack-hologram.yaml +++ b/themes/night-stack-hologram.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 279 + pair: null contrast: fg: 92.7 black: 0 diff --git a/themes/night-stack-indigo-dark.yaml b/themes/night-stack-indigo-dark.yaml index a88117aa..ca7eac04 100644 --- a/themes/night-stack-indigo-dark.yaml +++ b/themes/night-stack-indigo-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 284 + pair: null contrast: fg: 92.5 black: 0 diff --git a/themes/night-stack-ion.yaml b/themes/night-stack-ion.yaml index 6d230e55..3a9d01a9 100644 --- a/themes/night-stack-ion.yaml +++ b/themes/night-stack-ion.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 185 + pair: null contrast: fg: 104.1 black: 0 diff --git a/themes/night-stack-low-contrast-pro.yaml b/themes/night-stack-low-contrast-pro.yaml index f6b2f262..b9ab4d7c 100644 --- a/themes/night-stack-low-contrast-pro.yaml +++ b/themes/night-stack-low-contrast-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 268 + pair: null contrast: fg: 75.3 black: 0 diff --git a/themes/night-stack-midnight-blue.yaml b/themes/night-stack-midnight-blue.yaml index e3e8ed83..829d1b58 100644 --- a/themes/night-stack-midnight-blue.yaml +++ b/themes/night-stack-midnight-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 260 + pair: null contrast: fg: 88.9 black: 0 diff --git a/themes/night-stack-mono-focus.yaml b/themes/night-stack-mono-focus.yaml index 0cff665a..7e551fe7 100644 --- a/themes/night-stack-mono-focus.yaml +++ b/themes/night-stack-mono-focus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 90.9 black: 0 diff --git a/themes/night-stack-neo-tokyo.yaml b/themes/night-stack-neo-tokyo.yaml index a8dbfdb2..dad6827b 100644 --- a/themes/night-stack-neo-tokyo.yaml +++ b/themes/night-stack-neo-tokyo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 96.1 black: 0 diff --git a/themes/night-stack-night-city.yaml b/themes/night-stack-night-city.yaml index 7bbe9ac4..7902aa20 100644 --- a/themes/night-stack-night-city.yaml +++ b/themes/night-stack-night-city.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 268 + pair: null contrast: fg: 97 black: 0 diff --git a/themes/night-stack-noir.yaml b/themes/night-stack-noir.yaml index 3bce5928..c71bda86 100644 --- a/themes/night-stack-noir.yaml +++ b/themes/night-stack-noir.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 91 black: 0 diff --git a/themes/night-stack-obsidian-glass.yaml b/themes/night-stack-obsidian-glass.yaml index df20eb3e..c1b82f6e 100644 --- a/themes/night-stack-obsidian-glass.yaml +++ b/themes/night-stack-obsidian-glass.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 270 + pair: null contrast: fg: 93.2 black: 0 diff --git a/themes/night-stack-obsidian.yaml b/themes/night-stack-obsidian.yaml index ce72ced4..c7a1c1a8 100644 --- a/themes/night-stack-obsidian.yaml +++ b/themes/night-stack-obsidian.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 85.9 black: 0 diff --git a/themes/night-stack-ocean-abyss.yaml b/themes/night-stack-ocean-abyss.yaml index 47d63cbf..0a6415cc 100644 --- a/themes/night-stack-ocean-abyss.yaml +++ b/themes/night-stack-ocean-abyss.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 244 + pair: null contrast: fg: 96.5 black: 0 diff --git a/themes/night-stack-onyx.yaml b/themes/night-stack-onyx.yaml index 2e88feaf..48a66b8e 100644 --- a/themes/night-stack-onyx.yaml +++ b/themes/night-stack-onyx.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 91 black: 0 diff --git a/themes/night-stack-phosphor-green.yaml b/themes/night-stack-phosphor-green.yaml index 61c694e8..4a95e4ec 100644 --- a/themes/night-stack-phosphor-green.yaml +++ b/themes/night-stack-phosphor-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 144 + pair: null contrast: fg: 86.9 black: 0 diff --git a/themes/night-stack-plasma.yaml b/themes/night-stack-plasma.yaml index 8bb75a63..b39e0973 100644 --- a/themes/night-stack-plasma.yaml +++ b/themes/night-stack-plasma.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 291 + pair: null contrast: fg: 96.4 black: 0 diff --git a/themes/night-stack-pure-hacker.yaml b/themes/night-stack-pure-hacker.yaml index 62e5eacd..5d540096 100644 --- a/themes/night-stack-pure-hacker.yaml +++ b/themes/night-stack-pure-hacker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/night-stack-quantum.yaml b/themes/night-stack-quantum.yaml index fda89add..9d4c8eac 100644 --- a/themes/night-stack-quantum.yaml +++ b/themes/night-stack-quantum.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 270 + pair: null contrast: fg: 91.5 black: 0 diff --git a/themes/night-stack-retro-wave.yaml b/themes/night-stack-retro-wave.yaml index 563a5e18..20435a32 100644 --- a/themes/night-stack-retro-wave.yaml +++ b/themes/night-stack-retro-wave.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 304 + pair: null contrast: fg: 93.1 black: 0 diff --git a/themes/night-stack-slate.yaml b/themes/night-stack-slate.yaml index 67856777..f432d9ad 100644 --- a/themes/night-stack-slate.yaml +++ b/themes/night-stack-slate.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 81.7 black: 0 diff --git a/themes/night-stack-street-grid.yaml b/themes/night-stack-street-grid.yaml index 34e8cd56..4f4f80f8 100644 --- a/themes/night-stack-street-grid.yaml +++ b/themes/night-stack-street-grid.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 302 + pair: null contrast: fg: 95.4 black: 0 diff --git a/themes/night-stack-teal-dark.yaml b/themes/night-stack-teal-dark.yaml index 16ad489f..bf271845 100644 --- a/themes/night-stack-teal-dark.yaml +++ b/themes/night-stack-teal-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 196 + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/night-stack-titanium.yaml b/themes/night-stack-titanium.yaml index 1d2eddff..5b6ea456 100644 --- a/themes/night-stack-titanium.yaml +++ b/themes/night-stack-titanium.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: 261 + pair: null contrast: fg: 88.8 black: 0 diff --git a/themes/night-stack-violet-dark.yaml b/themes/night-stack-violet-dark.yaml index d7595ecc..289a792c 100644 --- a/themes/night-stack-violet-dark.yaml +++ b/themes/night-stack-violet-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 309 + pair: null contrast: fg: 95.5 black: 0 diff --git a/themes/night-stack-zen-dark.yaml b/themes/night-stack-zen-dark.yaml index 5d4457dc..8f16dbad 100644 --- a/themes/night-stack-zen-dark.yaml +++ b/themes/night-stack-zen-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 261 + pair: null contrast: fg: 82.9 black: 0 diff --git a/themes/night-storm.yaml b/themes/night-storm.yaml index e3565d5a..661ffd28 100644 --- a/themes/night-storm.yaml +++ b/themes/night-storm.yaml @@ -2,7 +2,7 @@ name: "Night Storm" source: marketplace_id: "LucianoOliveira.lanno-night-storm" version: "0.0.12" - installs: 1501 + installs: 1502 author: "Luciano Oliveira" repo: "https://github.com/luciano-work/night-storm-theme" url: "https://marketplace.visualstudio.com/items?itemName=LucianoOliveira.lanno-night-storm" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 60.3 black: 0 diff --git a/themes/night-yellow.yaml b/themes/night-yellow.yaml index c1e36730..a3259b4a 100644 --- a/themes/night-yellow.yaml +++ b/themes/night-yellow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 71 black: 0 diff --git a/themes/night-zen.yaml b/themes/night-zen.yaml index 1d82c9b5..5555fea3 100644 --- a/themes/night-zen.yaml +++ b/themes/night-zen.yaml @@ -1,11 +1,11 @@ name: "Night Zen" source: - marketplace_id: "sachin915t.night-zen-theme" - version: "0.0.1" - installs: 6 + marketplace_id: "sachin915.logan-night-theme" + version: "0.0.2" + installs: 4 author: "sachin" repo: "https://github.com/sachin915t/logan-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sachin915t.night-zen-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sachin915.logan-night-theme" colors: bg: "#0F1117" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 80 black: 0 diff --git a/themes/night.yaml b/themes/night.yaml index 410e66d9..ac6ea9e9 100644 --- a/themes/night.yaml +++ b/themes/night.yaml @@ -2,7 +2,7 @@ name: "Night" source: marketplace_id: "fem12N.night" version: "1.1.1" - installs: 8327 + installs: 8334 author: "fem12N" repo: "https://github.com/FEM12/Night" url: "https://marketplace.visualstudio.com/items?itemName=fem12N.night" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 104.2 black: 0 diff --git a/themes/nightblue-1.yaml b/themes/nightblue-1.yaml index a79ca6be..d6b3fc3f 100644 --- a/themes/nightblue-1.yaml +++ b/themes/nightblue-1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 270 + pair: null contrast: fg: 56.9 black: 0 diff --git a/themes/nightblue-oled-beta.yaml b/themes/nightblue-oled-beta.yaml index 30142246..d1a4c9cd 100644 --- a/themes/nightblue-oled-beta.yaml +++ b/themes/nightblue-oled-beta.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 58.1 black: 0 diff --git a/themes/nightcall-no-italics.yaml b/themes/nightcall-no-italics.yaml deleted file mode 100644 index 8ee66876..00000000 --- a/themes/nightcall-no-italics.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Nightcall (No Italics)" -source: - marketplace_id: "bpat86.nightcall" - version: "1.0.0" - installs: 8132 - author: "Bobby Patterson" - repo: "https://github.com/bpat86/nightcall-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=bpat86.nightcall" -colors: - bg: "#141629" - fg: "#E4CCFF" - black: "#141629" - red: "#F4598E" - green: "#85D483" - yellow: "#D9F99D" - blue: "#639EE5" - magenta: "#C792EA" - cyan: "#67E8F9" - white: "#E4CCFF" - brightBlack: "#575656" - brightRed: "#F4598E" - brightGreen: "#86EFAC" - brightYellow: "#F2E3BF" - brightBlue: "#7E90FF" - brightMagenta: "#C792EA" - brightCyan: "#A5F3FC" - brightWhite: "#E4CCFF" -meta: - mode: "dark" - accent: "red" - hue: 278 - contrast: - fg: 80.3 - black: 0 - red: 43 - green: 68.6 - yellow: 95.3 - blue: 47.3 - magenta: 53.7 - cyan: 81.1 - white: 80.3 - brightBlack: 15.5 - brightRed: 43 - brightGreen: 83 - brightYellow: 89.3 - brightBlue: 46 - brightMagenta: 53.7 - brightCyan: 90.7 - brightWhite: 80.3 diff --git a/themes/nightchill.yaml b/themes/nightchill.yaml deleted file mode 100644 index ed814071..00000000 --- a/themes/nightchill.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "NightChill" -source: - marketplace_id: "MohammedSiddiq.NightChill" - version: "0.1.2" - installs: 50 - author: "Mohammed Siddiq" - repo: "https://github.com/MohdSiddiq12/NightChill" - url: "https://marketplace.visualstudio.com/items?itemName=MohammedSiddiq.NightChill" -colors: - bg: "#000E14" - fg: "#7DF9FF" - black: "#606060" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#C2C2C2" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 222 - contrast: - fg: 91.8 - black: 20.2 - red: 27.4 - green: 53.7 - yellow: 86.3 - blue: 28.1 - magenta: 30.5 - cyan: 48.3 - white: 90.7 - brightBlack: 69.5 - brightRed: 39.3 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 90.7 diff --git a/themes/nightcode.yaml b/themes/nightcode.yaml index 2b0148b3..2d4778c9 100644 --- a/themes/nightcode.yaml +++ b/themes/nightcode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 245 + pair: null contrast: fg: 67.7 black: 10.8 diff --git a/themes/nightdream-monokai.yaml b/themes/nightdream-monokai.yaml index 36d5d4a9..b9bcc372 100644 --- a/themes/nightdream-monokai.yaml +++ b/themes/nightdream-monokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 279 + pair: null contrast: fg: 103.9 black: 0 diff --git a/themes/nightdream.yaml b/themes/nightdream.yaml index b1c00c86..88c714d5 100644 --- a/themes/nightdream.yaml +++ b/themes/nightdream.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 89.3 black: 0 diff --git a/themes/nightfly.yaml b/themes/nightfly.yaml index 997d5025..7c0105eb 100644 --- a/themes/nightfly.yaml +++ b/themes/nightfly.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 229 + pair: null contrast: fg: 107.6 black: 0 diff --git a/themes/nightfox.yaml b/themes/nightfox.yaml index 17a17ba5..93265044 100644 --- a/themes/nightfox.yaml +++ b/themes/nightfox.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 255 + pair: null contrast: fg: 103.4 black: 0 diff --git a/themes/nighthawk.yaml b/themes/nighthawk.yaml index 9105b17c..cd3245c6 100644 --- a/themes/nighthawk.yaml +++ b/themes/nighthawk.yaml @@ -2,7 +2,7 @@ name: "Nighthawk" source: marketplace_id: "ezzak.nighthawk" version: "1.1.0" - installs: 9435 + installs: 9438 author: "Ezz" repo: "https://github.com/ezzak/nighthawk" url: "https://marketplace.visualstudio.com/items?itemName=ezzak.nighthawk" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 263 + pair: null contrast: fg: 91 black: 0 diff --git a/themes/nightlife.yaml b/themes/nightlife.yaml index 2ee6c958..eef4a023 100644 --- a/themes/nightlife.yaml +++ b/themes/nightlife.yaml @@ -2,7 +2,7 @@ name: "Nightlife" source: marketplace_id: "spacesick.nightlife-vscode-theme" version: "1.0.1" - installs: 797 + installs: 798 author: "Vincent Yovian" repo: "https://github.com/spacesick/nightlife-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=spacesick.nightlife-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 272 + pair: null contrast: fg: 99.5 black: 0 diff --git a/themes/nightly-code.yaml b/themes/nightly-code.yaml index 994c7b1d..54a019b4 100644 --- a/themes/nightly-code.yaml +++ b/themes/nightly-code.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 307 + pair: null contrast: fg: 78.6 black: 0 diff --git a/themes/nightly-inspiration-dark.yaml b/themes/nightly-inspiration-dark.yaml index aeca68fd..d5636c24 100644 --- a/themes/nightly-inspiration-dark.yaml +++ b/themes/nightly-inspiration-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 210 + pair: null contrast: fg: 96.2 black: 0 diff --git a/themes/nightmare.yaml b/themes/nightmare.yaml index cb9fadaa..72797a8c 100644 --- a/themes/nightmare.yaml +++ b/themes/nightmare.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 65.2 black: 0 diff --git a/themes/nightnode.yaml b/themes/nightnode.yaml index 8c144405..5a6e2e33 100644 --- a/themes/nightnode.yaml +++ b/themes/nightnode.yaml @@ -2,7 +2,7 @@ name: "nightnode" source: marketplace_id: "AyushKhatri.nightnode" version: "1.1.2" - installs: 1223 + installs: 1224 author: "Ayush Khatri" repo: "https://github.com/ayush-khatrii/night-node" url: "https://marketplace.visualstudio.com/items?itemName=AyushKhatri.nightnode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 102.2 black: 0 diff --git a/themes/nightshade.yaml b/themes/nightshade.yaml index f40579d6..1c5c65e6 100644 --- a/themes/nightshade.yaml +++ b/themes/nightshade.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 82.5 black: 0 diff --git a/themes/nightsky.yaml b/themes/nightsky.yaml index dd173ab6..5f152790 100644 --- a/themes/nightsky.yaml +++ b/themes/nightsky.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/nightswell.yaml b/themes/nightswell.yaml index 63e18a5e..a94cf237 100644 --- a/themes/nightswell.yaml +++ b/themes/nightswell.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 281 + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/nightwing.yaml b/themes/nightwing.yaml index 1e43169a..9b48aab8 100644 --- a/themes/nightwing.yaml +++ b/themes/nightwing.yaml @@ -2,7 +2,7 @@ name: "Nightwing" source: marketplace_id: "bwielgosz.nightwing" version: "1.0.3" - installs: 408 + installs: 409 author: "Bartek Wielgosz 💻" repo: "https://github.com/bwielgosz/nightwing-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=bwielgosz.nightwing" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 243 + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/nighty-purple-color-theme.yaml b/themes/nighty-purple-color-theme.yaml index fea4f6bc..39655f1d 100644 --- a/themes/nighty-purple-color-theme.yaml +++ b/themes/nighty-purple-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 79.2 black: 0 diff --git a/themes/nigthwolf-color-theme.yaml b/themes/nigthwolf-color-theme.yaml index 47004865..85176cbd 100644 --- a/themes/nigthwolf-color-theme.yaml +++ b/themes/nigthwolf-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 278 + pair: null contrast: fg: 87.7 black: 0 diff --git a/themes/nihilleaf-theme.yaml b/themes/nihilleaf-theme.yaml index 036e4e63..0dde4e5d 100644 --- a/themes/nihilleaf-theme.yaml +++ b/themes/nihilleaf-theme.yaml @@ -2,7 +2,7 @@ name: "NihilLeaf-Theme" source: marketplace_id: "NihilLeaf.nihilleaf-theme" version: "1.0.3" - installs: 835 + installs: 874 author: "NihilLeaf" repo: "https://github.com/NihilLeaf/NihilLeaf-VScode-Green-Theme" url: "https://marketplace.visualstudio.com/items?itemName=NihilLeaf.nihilleaf-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 233 + pair: null contrast: fg: 95.2 black: 0 diff --git a/themes/niketa-pop-dark.yaml b/themes/niketa-pop-dark.yaml index f1258c1a..44be8cca 100644 --- a/themes/niketa-pop-dark.yaml +++ b/themes/niketa-pop-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.2 black: 7.6 diff --git a/themes/niketa-pop-light.yaml b/themes/niketa-pop-light.yaml index 5479550a..b46e54bf 100644 --- a/themes/niketa-pop-light.yaml +++ b/themes/niketa-pop-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 95.3 black: 105.4 diff --git a/themes/niketaoasis.yaml b/themes/niketaoasis.yaml index 0616725e..e00b029d 100644 --- a/themes/niketaoasis.yaml +++ b/themes/niketaoasis.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 267 + pair: null contrast: fg: 83.9 black: 0 diff --git a/themes/niketaplus.yaml b/themes/niketaplus.yaml index bff4d82c..f656c49f 100644 --- a/themes/niketaplus.yaml +++ b/themes/niketaplus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/niketaprettier.yaml b/themes/niketaprettier.yaml index 2d7ea9de..5be6b675 100644 --- a/themes/niketaprettier.yaml +++ b/themes/niketaprettier.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 232 + pair: null contrast: fg: 83.5 black: 0 diff --git a/themes/niko-s-techlabs-dark.yaml b/themes/niko-s-techlabs-dark.yaml index 5e313a69..7cb33b2e 100644 --- a/themes/niko-s-techlabs-dark.yaml +++ b/themes/niko-s-techlabs-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 91.9 black: 0 diff --git a/themes/nikso-vscode-theme-dark.yaml b/themes/nikso-vscode-theme-dark.yaml index 69f6f88c..f49cb561 100644 --- a/themes/nikso-vscode-theme-dark.yaml +++ b/themes/nikso-vscode-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: null contrast: fg: 77.8 black: 0 diff --git a/themes/nil-ui.yaml b/themes/nil-ui.yaml index 36d14e7a..b7c93a51 100644 --- a/themes/nil-ui.yaml +++ b/themes/nil-ui.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 62.7 black: 0 diff --git a/themes/nimbus-mint-light.yaml b/themes/nimbus-mint-light.yaml index 9a4df363..3442617d 100644 --- a/themes/nimbus-mint-light.yaml +++ b/themes/nimbus-mint-light.yaml @@ -2,7 +2,7 @@ name: "Nimbus Mint Light" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 93 black: 93 diff --git a/themes/ninjadark.yaml b/themes/ninjadark.yaml index 7837aa5a..cf4e2f4c 100644 --- a/themes/ninjadark.yaml +++ b/themes/ninjadark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 283 + pair: null contrast: fg: 106.7 black: 0 diff --git a/themes/nitrous-theme-dark.yaml b/themes/nitrous-theme-dark.yaml index dfea49c6..fabee20a 100644 --- a/themes/nitrous-theme-dark.yaml +++ b/themes/nitrous-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 261 + pair: null contrast: fg: 61.9 black: 0 diff --git a/themes/nivtheme.yaml b/themes/nivtheme.yaml index 98d9873f..132ac956 100644 --- a/themes/nivtheme.yaml +++ b/themes/nivtheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 52.7 black: 52.7 diff --git a/themes/nix.yaml b/themes/nix.yaml index 4e0fe683..97065037 100644 --- a/themes/nix.yaml +++ b/themes/nix.yaml @@ -2,7 +2,7 @@ name: "Nix" source: marketplace_id: "alvarosannas.nix" version: "1.4.8" - installs: 2949 + installs: 2950 author: "Alvaro Santana" repo: "https://github.com/alvarosannas/nix" url: "https://marketplace.visualstudio.com/items?itemName=alvarosannas.nix" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 101.6 black: 0 diff --git a/themes/njord.yaml b/themes/njord.yaml deleted file mode 100644 index 7c78663e..00000000 --- a/themes/njord.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Njord" -source: - marketplace_id: "mefechoel.njord" - version: "0.0.1" - installs: 419 - author: "mefechoel" - repo: "https://github.com/mefechoel/njord" - url: "https://marketplace.visualstudio.com/items?itemName=mefechoel.njord" -colors: - bg: "#232731" - fg: "#D8DEE9" - black: "#3B4252" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: 268 - contrast: - fg: 83.1 - black: 0 - red: 30.7 - green: 59.4 - yellow: 74.1 - blue: 46.4 - magenta: 44.2 - cyan: 60.4 - white: 90.1 - brightBlack: 13.1 - brightRed: 30.7 - brightGreen: 59.4 - brightYellow: 74.1 - brightBlue: 46.4 - brightMagenta: 44.2 - brightCyan: 58.3 - brightWhite: 94 diff --git a/themes/nkalai-dark.yaml b/themes/nkalai-dark.yaml index 3bceac57..e482d92d 100644 --- a/themes/nkalai-dark.yaml +++ b/themes/nkalai-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 230 + pair: "Nkalai Light" contrast: fg: 85.8 black: 0 diff --git a/themes/nkalai-light.yaml b/themes/nkalai-light.yaml index d2498d87..6447fed5 100644 --- a/themes/nkalai-light.yaml +++ b/themes/nkalai-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: 93 + pair: "Nkalai Dark" contrast: fg: 84.7 black: 86.1 diff --git a/themes/nloo-theme.yaml b/themes/nloo-theme.yaml index 867f7137..673fa680 100644 --- a/themes/nloo-theme.yaml +++ b/themes/nloo-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 292 + pair: null contrast: fg: 88.3 black: 0 diff --git a/themes/no-not-the-lava-it-burns-ahhh-fork.yaml b/themes/no-not-the-lava-it-burns-ahhh-fork.yaml index 2bbce12c..1b9aa9be 100644 --- a/themes/no-not-the-lava-it-burns-ahhh-fork.yaml +++ b/themes/no-not-the-lava-it-burns-ahhh-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 41 + pair: null contrast: fg: 105.1 black: 38.6 diff --git a/themes/no-pixie-blue-dark.yaml b/themes/no-pixie-blue-dark.yaml index 89b4a10f..c562b721 100644 --- a/themes/no-pixie-blue-dark.yaml +++ b/themes/no-pixie-blue-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 263 + pair: "No Pixie Blue Light" contrast: fg: 96.9 black: 0 diff --git a/themes/no-pixie-blue-light.yaml b/themes/no-pixie-blue-light.yaml index 4be830ed..ec5f7a4a 100644 --- a/themes/no-pixie-blue-light.yaml +++ b/themes/no-pixie-blue-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "No Pixie Blue Dark" contrast: fg: 95.8 black: 95.8 diff --git a/themes/no-pixie-dark-high-contrast.yaml b/themes/no-pixie-dark-high-contrast.yaml index f3f1e427..56047abe 100644 --- a/themes/no-pixie-dark-high-contrast.yaml +++ b/themes/no-pixie-dark-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "No Pixie Light High Contrast" contrast: fg: 107.4 black: 0 diff --git a/themes/no-pixie-dark.yaml b/themes/no-pixie-dark.yaml index 571bfcbd..2371c17f 100644 --- a/themes/no-pixie-dark.yaml +++ b/themes/no-pixie-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: "No Pixie Light" contrast: fg: 96 black: 0 diff --git a/themes/no-pixie-light-high-contrast.yaml b/themes/no-pixie-light-high-contrast.yaml index 98aef6aa..8c75be94 100644 --- a/themes/no-pixie-light-high-contrast.yaml +++ b/themes/no-pixie-light-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "No Pixie Dark High Contrast" contrast: fg: 106 black: 106 diff --git a/themes/no-pixie-light.yaml b/themes/no-pixie-light.yaml index b333e5ca..b11dab73 100644 --- a/themes/no-pixie-light.yaml +++ b/themes/no-pixie-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "No Pixie Dark" contrast: fg: 99.9 black: 99.9 diff --git a/themes/no-pixie-yellow-dark.yaml b/themes/no-pixie-yellow-dark.yaml index f8445415..07537615 100644 --- a/themes/no-pixie-yellow-dark.yaml +++ b/themes/no-pixie-yellow-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 61 + pair: "No Pixie Yellow Light" contrast: fg: 96.2 black: 0 diff --git a/themes/no-pixie-yellow-light.yaml b/themes/no-pixie-yellow-light.yaml index dfc0a6a5..583df80c 100644 --- a/themes/no-pixie-yellow-light.yaml +++ b/themes/no-pixie-yellow-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "No Pixie Yellow Dark" contrast: fg: 97.9 black: 88.5 diff --git a/themes/noah-theme.yaml b/themes/noah-theme.yaml index 154f39f2..29655541 100644 --- a/themes/noah-theme.yaml +++ b/themes/noah-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 59.3 black: 0 diff --git a/themes/noctaliatheme.yaml b/themes/noctaliatheme.yaml index 1ac5ef17..6138b43b 100644 --- a/themes/noctaliatheme.yaml +++ b/themes/noctaliatheme.yaml @@ -2,7 +2,7 @@ name: "NoctaliaTheme" source: marketplace_id: "Noctalia.noctaliatheme" version: "0.0.5" - installs: 1304 + installs: 1310 author: "Noctalia Team" repo: "https://github.com/tuibird/noctalia-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Noctalia.noctaliatheme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 277 + pair: null contrast: fg: 107.6 black: 51.2 diff --git a/themes/noctilux.yaml b/themes/noctilux.yaml index e0bc1d88..db9f014d 100644 --- a/themes/noctilux.yaml +++ b/themes/noctilux.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/noctis-azureus.yaml b/themes/noctis-azureus.yaml deleted file mode 100644 index df9705ce..00000000 --- a/themes/noctis-azureus.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Noctis Azureus" -source: - marketplace_id: "liviuschera.noctis" - version: "10.43.3" - installs: 1344484 - author: "Liviu Schera" - repo: "https://github.com/liviuschera/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" -colors: - bg: "#07273B" - fg: "#BECFDA" - black: "#28353E" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#AEC3D0" - brightBlack: "#475E6C" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#BECFDA" -meta: - mode: "dark" - accent: "orange" - hue: 241 - contrast: - fg: 72.9 - black: 0 - red: 38.5 - green: 75 - yellow: 65 - blue: 50 - magenta: 43.6 - cyan: 68.5 - white: 65.5 - brightBlack: 15.5 - brightRed: 43.8 - brightGreen: 77.2 - brightYellow: 51.8 - brightBlue: 55.3 - brightMagenta: 56 - brightCyan: 71.9 - brightWhite: 72.9 diff --git a/themes/noctis-bordo.yaml b/themes/noctis-bordo.yaml deleted file mode 100644 index 99729e03..00000000 --- a/themes/noctis-bordo.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Noctis Bordo" -source: - marketplace_id: "liviuschera.noctis" - version: "10.43.3" - installs: 1344484 - author: "Liviu Schera" - repo: "https://github.com/liviuschera/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" -colors: - bg: "#322A2D" - fg: "#CBBEC2" - black: "#47393E" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#B9ACB0" - brightBlack: "#69545B" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#CBBEC2" -meta: - mode: "dark" - accent: "orange" - hue: 353 - contrast: - fg: 65 - black: 0 - red: 37.3 - green: 73.7 - yellow: 63.7 - blue: 48.7 - magenta: 42.4 - cyan: 67.3 - white: 54.8 - brightBlack: 13.6 - brightRed: 42.5 - brightGreen: 75.9 - brightYellow: 50.6 - brightBlue: 54 - brightMagenta: 54.7 - brightCyan: 70.6 - brightWhite: 65 diff --git a/themes/noctis-hibernus.yaml b/themes/noctis-hibernus.yaml deleted file mode 100644 index 3b04a0f3..00000000 --- a/themes/noctis-hibernus.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Noctis Hibernus" -source: - marketplace_id: "liviuschera.noctis" - version: "10.43.3" - installs: 1344484 - author: "Liviu Schera" - repo: "https://github.com/liviuschera/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" -colors: - bg: "#F4F6F6" - fg: "#005661" - black: "#003B42" - red: "#E34E1C" - green: "#00B368" - yellow: "#F49725" - blue: "#0094F0" - magenta: "#FF5792" - cyan: "#00BDD6" - white: "#8CA6A6" - brightBlack: "#004D57" - brightRed: "#FF4000" - brightGreen: "#00D17A" - brightYellow: "#FF8C00" - brightBlue: "#0FA3FF" - brightMagenta: "#FF6B9F" - brightCyan: "#00CBE6" - brightWhite: "#BBC3C4" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 82.8 - black: 92 - red: 59.7 - green: 46.7 - yellow: 38.5 - blue: 53.2 - magenta: 49.9 - cyan: 38.5 - white: 44.9 - brightBlack: 86 - brightRed: 55.3 - brightGreen: 32.8 - brightYellow: 39.8 - brightBlue: 46.5 - brightMagenta: 45.6 - brightCyan: 31.5 - brightWhite: 27.6 diff --git a/themes/noctis-high-contrast.yaml b/themes/noctis-high-contrast.yaml index 2e905ceb..92774631 100644 --- a/themes/noctis-high-contrast.yaml +++ b/themes/noctis-high-contrast.yaml @@ -2,7 +2,7 @@ name: "Noctis High Contrast" source: marketplace_id: "Kamen.noctis-high-contrast" version: "10.39.1" - installs: 47794 + installs: 47803 author: "Kamen" repo: "https://github.com/KamenKolev/noctis-hc" url: "https://marketplace.visualstudio.com/items?itemName=Kamen.noctis-high-contrast" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/noctis-lilac.yaml b/themes/noctis-lilac.yaml index 8015890f..cbb72216 100644 --- a/themes/noctis-lilac.yaml +++ b/themes/noctis-lilac.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 94.6 black: 94.6 diff --git a/themes/noctis-lux-ansi-16.yaml b/themes/noctis-lux-ansi-16.yaml index c465701e..079396ca 100644 --- a/themes/noctis-lux-ansi-16.yaml +++ b/themes/noctis-lux-ansi-16.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 84.5 black: 46.6 diff --git a/themes/noctis-lux-dean-s-version.yaml b/themes/noctis-lux-dean-s-version.yaml index d509395d..42c2ac55 100644 --- a/themes/noctis-lux-dean-s-version.yaml +++ b/themes/noctis-lux-dean-s-version.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 79 + pair: null contrast: fg: 74.3 black: 83.5 diff --git a/themes/noctis-lux.yaml b/themes/noctis-lux.yaml deleted file mode 100644 index f8e0855d..00000000 --- a/themes/noctis-lux.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Noctis Lux" -source: - marketplace_id: "liviuschera.noctis" - version: "10.43.3" - installs: 1344484 - author: "Liviu Schera" - repo: "https://github.com/liviuschera/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" -colors: - bg: "#FEF8EC" - fg: "#005661" - black: "#003B42" - red: "#E34E1C" - green: "#00B368" - yellow: "#F49725" - blue: "#0094F0" - magenta: "#FF5792" - cyan: "#00BDD6" - white: "#8CA6A6" - brightBlack: "#004D57" - brightRed: "#FF4000" - brightGreen: "#00D17A" - brightYellow: "#FF8C00" - brightBlue: "#0FA3FF" - brightMagenta: "#FF6B9F" - brightCyan: "#00CBE6" - brightWhite: "#BBC3C4" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 84.5 - black: 93.7 - red: 61.5 - green: 48.5 - yellow: 40.2 - blue: 54.9 - magenta: 51.6 - cyan: 40.2 - white: 46.6 - brightBlack: 87.7 - brightRed: 57 - brightGreen: 34.5 - brightYellow: 41.5 - brightBlue: 48.2 - brightMagenta: 47.3 - brightCyan: 33.3 - brightWhite: 29.3 diff --git a/themes/noctis-minimus.yaml b/themes/noctis-minimus.yaml deleted file mode 100644 index 26f6d83f..00000000 --- a/themes/noctis-minimus.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Noctis Minimus" -source: - marketplace_id: "liviuschera.noctis" - version: "10.43.3" - installs: 1344484 - author: "Liviu Schera" - repo: "https://github.com/liviuschera/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" -colors: - bg: "#1B2932" - fg: "#C5CDD3" - black: "#182A35" - red: "#C08872" - green: "#72C09F" - yellow: "#C8A984" - blue: "#6196B8" - magenta: "#C28097" - cyan: "#72B7C0" - white: "#C5CDD3" - brightBlack: "#425866" - brightRed: "#CA8468" - brightGreen: "#84C8AB" - brightYellow: "#D1AA7B" - brightBlue: "#68A4CA" - brightMagenta: "#C88DA2" - brightCyan: "#84C0C8" - brightWhite: "#C5D1D3" -meta: - mode: "dark" - accent: "orange" - hue: 237 - contrast: - fg: 72.2 - black: 0 - red: 41.9 - green: 56.7 - yellow: 55.1 - blue: 39.3 - magenta: 40.9 - cyan: 54.1 - white: 72.2 - brightBlack: 12.8 - brightRed: 42 - brightGreen: 62 - brightYellow: 56.6 - brightBlue: 46.1 - brightMagenta: 46.3 - brightCyan: 59.6 - brightWhite: 73.9 diff --git a/themes/noctis-obscuro.yaml b/themes/noctis-obscuro.yaml deleted file mode 100644 index d5b42c46..00000000 --- a/themes/noctis-obscuro.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Noctis Obscuro" -source: - marketplace_id: "liviuschera.noctis" - version: "10.43.3" - installs: 1344484 - author: "Liviu Schera" - repo: "https://github.com/liviuschera/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" -colors: - bg: "#031417" - fg: "#B2CACD" - black: "#324A4D" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#B2CACD" - brightBlack: "#47686C" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#C1D4D7" -meta: - mode: "dark" - accent: "orange" - hue: 209 - contrast: - fg: 71.2 - black: 10 - red: 40.9 - green: 77.4 - yellow: 67.4 - blue: 52.4 - magenta: 46 - cyan: 70.9 - white: 71.2 - brightBlack: 21 - brightRed: 46.2 - brightGreen: 79.6 - brightYellow: 54.3 - brightBlue: 57.7 - brightMagenta: 58.4 - brightCyan: 74.3 - brightWhite: 77.7 diff --git a/themes/noctis-red-flow.yaml b/themes/noctis-red-flow.yaml index 2d02446b..32422a6a 100644 --- a/themes/noctis-red-flow.yaml +++ b/themes/noctis-red-flow.yaml @@ -2,7 +2,7 @@ name: "Noctis Red Flow" source: marketplace_id: "doc-extentions.doctis" version: "1.0.9" - installs: 4845 + installs: 4846 author: "Doc" repo: "https://github.com/doc-code-hub/noctis" url: "https://marketplace.visualstudio.com/items?itemName=doc-extentions.doctis" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 13 + pair: null contrast: fg: 67.1 black: 0 diff --git a/themes/noctis-sereno.yaml b/themes/noctis-sereno.yaml deleted file mode 100644 index 40f19c9a..00000000 --- a/themes/noctis-sereno.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Noctis Sereno" -source: - marketplace_id: "liviuschera.noctis" - version: "10.43.3" - installs: 1344484 - author: "Liviu Schera" - repo: "https://github.com/liviuschera/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" -colors: - bg: "#062E32" - fg: "#B2CACD" - black: "#324A4D" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#B2CACD" - brightBlack: "#47686C" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#C1D4D7" -meta: - mode: "dark" - accent: "orange" - hue: 205 - contrast: - fg: 68 - black: 0 - red: 37.7 - green: 74.1 - yellow: 64.1 - blue: 49.2 - magenta: 42.8 - cyan: 67.7 - white: 68 - brightBlack: 17.8 - brightRed: 42.9 - brightGreen: 76.3 - brightYellow: 51 - brightBlue: 54.4 - brightMagenta: 55.2 - brightCyan: 71 - brightWhite: 74.5 diff --git a/themes/noctis-uva.yaml b/themes/noctis-uva.yaml deleted file mode 100644 index e2e78c27..00000000 --- a/themes/noctis-uva.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Noctis Uva" -source: - marketplace_id: "doc-extentions.doctis" - version: "1.0.9" - installs: 4845 - author: "Doc" - repo: "https://github.com/doc-code-hub/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=doc-extentions.doctis" -colors: - bg: "#181726" - fg: "#C5C2D6" - black: "#302F3D" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#B6B3CC" - brightBlack: "#504E65" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#C5C2D6" -meta: - mode: "dark" - accent: "orange" - hue: 287 - contrast: - fg: 69.9 - black: 0 - red: 40.4 - green: 76.8 - yellow: 66.8 - blue: 51.8 - magenta: 45.4 - cyan: 70.3 - white: 61.5 - brightBlack: 13.2 - brightRed: 45.6 - brightGreen: 79 - brightYellow: 53.7 - brightBlue: 57.1 - brightMagenta: 57.8 - brightCyan: 73.7 - brightWhite: 69.9 diff --git a/themes/noctis-viola.yaml b/themes/noctis-viola.yaml deleted file mode 100644 index d739f858..00000000 --- a/themes/noctis-viola.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Noctis Viola" -source: - marketplace_id: "doc-extentions.doctis" - version: "1.0.9" - installs: 4845 - author: "Doc" - repo: "https://github.com/doc-code-hub/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=doc-extentions.doctis" -colors: - bg: "#311D4A" - fg: "#CCBFD9" - black: "#362F3D" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#BFAFCF" - brightBlack: "#594E65" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#CCBFD9" -meta: - mode: "dark" - accent: "orange" - hue: 302 - contrast: - fg: 67.4 - black: 0 - red: 38.1 - green: 74.6 - yellow: 64.6 - blue: 49.6 - magenta: 43.2 - cyan: 68.1 - white: 59 - brightBlack: 11.7 - brightRed: 43.3 - brightGreen: 76.8 - brightYellow: 51.4 - brightBlue: 54.9 - brightMagenta: 55.6 - brightCyan: 71.4 - brightWhite: 67.4 diff --git a/themes/noctis.yaml b/themes/noctis.yaml deleted file mode 100644 index 1d6afc9b..00000000 --- a/themes/noctis.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Noctis" -source: - marketplace_id: "liviuschera.noctis" - version: "10.43.3" - installs: 1344484 - author: "Liviu Schera" - repo: "https://github.com/liviuschera/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" -colors: - bg: "#052529" - fg: "#B2CACD" - black: "#324A4D" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#B2CACD" - brightBlack: "#47686C" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#C1D4D7" -meta: - mode: "dark" - accent: "orange" - hue: 207 - contrast: - fg: 69.4 - black: 8.2 - red: 39.1 - green: 75.6 - yellow: 65.6 - blue: 50.6 - magenta: 44.2 - cyan: 69.1 - white: 69.4 - brightBlack: 19.2 - brightRed: 44.4 - brightGreen: 77.8 - brightYellow: 52.5 - brightBlue: 55.9 - brightMagenta: 56.6 - brightCyan: 72.5 - brightWhite: 75.9 diff --git a/themes/noctua-black-rose.yaml b/themes/noctua-black-rose.yaml index 01166e1e..660de2c1 100644 --- a/themes/noctua-black-rose.yaml +++ b/themes/noctua-black-rose.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 55.8 black: 0 diff --git a/themes/noctua-dark-leaf.yaml b/themes/noctua-dark-leaf.yaml index 6a60c594..e2b0a088 100644 --- a/themes/noctua-dark-leaf.yaml +++ b/themes/noctua-dark-leaf.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 195 + pair: null contrast: fg: 55.9 black: 0 diff --git a/themes/noctua-grass.yaml b/themes/noctua-grass.yaml index 7284c3c0..40ea6f2b 100644 --- a/themes/noctua-grass.yaml +++ b/themes/noctua-grass.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 145 + pair: null contrast: fg: 55.2 black: 0 diff --git a/themes/noctua-hidden-sky.yaml b/themes/noctua-hidden-sky.yaml index 722718b4..69181549 100644 --- a/themes/noctua-hidden-sky.yaml +++ b/themes/noctua-hidden-sky.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 283 + pair: null contrast: fg: 55.7 black: 0 diff --git a/themes/nocturnal.yaml b/themes/nocturnal.yaml index cf65756e..409d5980 100644 --- a/themes/nocturnal.yaml +++ b/themes/nocturnal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 102.6 black: 9.1 diff --git a/themes/nodr-cocoa.yaml b/themes/nodr-cocoa.yaml index 609f4dc7..4cba26d3 100644 --- a/themes/nodr-cocoa.yaml +++ b/themes/nodr-cocoa.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 36.7 black: 0 diff --git a/themes/nodr-plum.yaml b/themes/nodr-plum.yaml index 33f971ce..4668f5cd 100644 --- a/themes/nodr-plum.yaml +++ b/themes/nodr-plum.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 292 + pair: null contrast: fg: 35.4 black: 0 diff --git a/themes/noel.yaml b/themes/noel.yaml index a3932d1c..205e1c1d 100644 --- a/themes/noel.yaml +++ b/themes/noel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "blue" hue: 222 + pair: null contrast: fg: 89.6 black: 0 diff --git a/themes/noir-dark.yaml b/themes/noir-dark.yaml index d77407b0..cc9fb999 100644 --- a/themes/noir-dark.yaml +++ b/themes/noir-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.7 black: 16.1 diff --git a/themes/noir-dracula.yaml b/themes/noir-dracula.yaml index dfcbdb14..7b505ed1 100644 --- a/themes/noir-dracula.yaml +++ b/themes/noir-dracula.yaml @@ -2,7 +2,7 @@ name: "Noir dracula" source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" - installs: 13968 + installs: 13972 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 75.7 black: 0 diff --git a/themes/noir-essence-dark-border.yaml b/themes/noir-essence-dark-border.yaml deleted file mode 100644 index 62870c97..00000000 --- a/themes/noir-essence-dark-border.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Noir Essence Dark Border" -source: - marketplace_id: "u1145h.u1145h-heme-ark" - version: "0.6.1" - installs: 1487 - author: "u1145h" - repo: "https://github.com/u1145h/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=u1145h.u1145h-heme-ark" -colors: - bg: "#111314" - fg: "#F7F3EA" - black: "#2B2D2D" - red: "#EA6962" - green: "#89B482" - yellow: "#E78A4E" - blue: "#7DAEA3" - magenta: "#D3869B" - cyan: "#A9B665" - white: "#F7F3EA" - brightBlack: "#434545" - brightRed: "#EA6962" - brightGreen: "#89B482" - brightYellow: "#E78A4E" - brightBlue: "#7DAEA3" - brightMagenta: "#D3869B" - brightCyan: "#A9B665" - brightWhite: "#F7F3EA" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 99.5 - black: 0 - red: 43.3 - green: 55 - yellow: 51.2 - blue: 52.6 - magenta: 48.4 - cyan: 58.4 - white: 99.5 - brightBlack: 9.4 - brightRed: 43.3 - brightGreen: 55 - brightYellow: 51.2 - brightBlue: 52.6 - brightMagenta: 48.4 - brightCyan: 58.4 - brightWhite: 99.5 diff --git a/themes/noir-essence-light.yaml b/themes/noir-essence-light.yaml index 890ca5a7..f2c3631c 100644 --- a/themes/noir-essence-light.yaml +++ b/themes/noir-essence-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Noir Essence Dark" contrast: fg: 99 black: 98.2 diff --git a/themes/noir-light.yaml b/themes/noir-light.yaml index c90cdbbe..e29be204 100644 --- a/themes/noir-light.yaml +++ b/themes/noir-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/noir-outrun.yaml b/themes/noir-outrun.yaml index fbc0bd43..97f22ecf 100644 --- a/themes/noir-outrun.yaml +++ b/themes/noir-outrun.yaml @@ -2,7 +2,7 @@ name: "Noir Outrun" source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" - installs: 13968 + installs: 13972 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 99.8 black: 0 diff --git a/themes/noir-owl.yaml b/themes/noir-owl.yaml index 54fae0cf..314d36f6 100644 --- a/themes/noir-owl.yaml +++ b/themes/noir-owl.yaml @@ -2,7 +2,7 @@ name: "Noir Owl" source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" - installs: 13968 + installs: 13972 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 245 + pair: null contrast: fg: 86 black: 0 diff --git a/themes/noir-poimandres-black.yaml b/themes/noir-poimandres-black.yaml index 516a957e..5b27735a 100644 --- a/themes/noir-poimandres-black.yaml +++ b/themes/noir-poimandres-black.yaml @@ -2,7 +2,7 @@ name: "Noir Poimandres Black" source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" - installs: 13968 + installs: 13972 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 58.1 black: 0 diff --git a/themes/noir-poimandres-dark.yaml b/themes/noir-poimandres-dark.yaml index 603dc00f..81334bd6 100644 --- a/themes/noir-poimandres-dark.yaml +++ b/themes/noir-poimandres-dark.yaml @@ -2,7 +2,7 @@ name: "Noir Poimandres Dark" source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" - installs: 13968 + installs: 13972 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 279 + pair: null contrast: fg: 57.4 black: 0 diff --git a/themes/noir-poimandres-darker.yaml b/themes/noir-poimandres-darker.yaml index aea42190..c33bb813 100644 --- a/themes/noir-poimandres-darker.yaml +++ b/themes/noir-poimandres-darker.yaml @@ -2,7 +2,7 @@ name: "Noir Poimandres Darker" source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" - installs: 13968 + installs: 13972 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 278 + pair: null contrast: fg: 57.7 black: 0 diff --git a/themes/noir-poimandres.yaml b/themes/noir-poimandres.yaml index c4e956a2..6fce31c5 100644 --- a/themes/noir-poimandres.yaml +++ b/themes/noir-poimandres.yaml @@ -2,7 +2,7 @@ name: "Noir Poimandres" source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" - installs: 13968 + installs: 13972 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 272 + pair: null contrast: fg: 56.3 black: 0 diff --git a/themes/noir-ros-pine-grey.yaml b/themes/noir-ros-pine-grey.yaml index 8f0a8488..6030b23b 100644 --- a/themes/noir-ros-pine-grey.yaml +++ b/themes/noir-ros-pine-grey.yaml @@ -2,7 +2,7 @@ name: "Noir Rosé Pine Grey" source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" - installs: 13968 + installs: 13972 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/noir-ros-pine-moon-grey.yaml b/themes/noir-ros-pine-moon-grey.yaml index 830d1dc4..87b5f7a1 100644 --- a/themes/noir-ros-pine-moon-grey.yaml +++ b/themes/noir-ros-pine-moon-grey.yaml @@ -2,7 +2,7 @@ name: "Noir Rosé Pine Moon Grey" source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" - installs: 13968 + installs: 13972 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/noir-tokyo-night-black.yaml b/themes/noir-tokyo-night-black.yaml index b581f3c0..95185225 100644 --- a/themes/noir-tokyo-night-black.yaml +++ b/themes/noir-tokyo-night-black.yaml @@ -2,7 +2,7 @@ name: "Noir Tokyo Night Black" source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" - installs: 13968 + installs: 13972 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 60.9 black: 0 diff --git a/themes/noir-tokyo-night.yaml b/themes/noir-tokyo-night.yaml index 35e917ee..46da7779 100644 --- a/themes/noir-tokyo-night.yaml +++ b/themes/noir-tokyo-night.yaml @@ -2,7 +2,7 @@ name: "Noir Tokyo Night" source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" - installs: 13968 + installs: 13972 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 60.8 black: 0 diff --git a/themes/noirex.yaml b/themes/noirex.yaml index ad0e39d3..04d89f56 100644 --- a/themes/noirex.yaml +++ b/themes/noirex.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 43.7 black: 0 diff --git a/themes/noirzen.yaml b/themes/noirzen.yaml index 0da0d689..58478df3 100644 --- a/themes/noirzen.yaml +++ b/themes/noirzen.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.4 black: 0 diff --git a/themes/nokion-clean.yaml b/themes/nokion-clean.yaml index 491e7a4e..15cffc98 100644 --- a/themes/nokion-clean.yaml +++ b/themes/nokion-clean.yaml @@ -2,7 +2,7 @@ name: "Nokion Clean" source: marketplace_id: "NokionThemes.nokion-clean" version: "0.1.2" - installs: 293 + installs: 294 author: "Nokion" repo: "https://github.com/Vbrand01/nokion-clean" url: "https://marketplace.visualstudio.com/items?itemName=NokionThemes.nokion-clean" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 92.8 black: 0 diff --git a/themes/noll-tta.yaml b/themes/noll-tta.yaml index 2174265d..c92a7831 100644 --- a/themes/noll-tta.yaml +++ b/themes/noll-tta.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.8 black: 93.4 diff --git a/themes/non-arbitrary-colors-theme.yaml b/themes/non-arbitrary-colors-theme.yaml index 44102c8f..4e541a13 100644 --- a/themes/non-arbitrary-colors-theme.yaml +++ b/themes/non-arbitrary-colors-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/noname-ui-next.yaml b/themes/noname-ui-next.yaml index 1a3669ff..05f77b0e 100644 --- a/themes/noname-ui-next.yaml +++ b/themes/noname-ui-next.yaml @@ -2,7 +2,7 @@ name: "NoName UI Next" source: marketplace_id: "iseos.noname-ui" version: "1.1.2" - installs: 1738 + installs: 1739 author: "iseos" repo: "https://github.com/iseos/noname-ui" url: "https://marketplace.visualstudio.com/items?itemName=iseos.noname-ui" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 58 black: 0 diff --git a/themes/noname-ui.yaml b/themes/noname-ui.yaml index 77ef2191..1ae52aa7 100644 --- a/themes/noname-ui.yaml +++ b/themes/noname-ui.yaml @@ -2,7 +2,7 @@ name: "NoName UI" source: marketplace_id: "iseos.noname-ui" version: "1.1.2" - installs: 1738 + installs: 1739 author: "iseos" repo: "https://github.com/iseos/noname-ui" url: "https://marketplace.visualstudio.com/items?itemName=iseos.noname-ui" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 258 + pair: null contrast: fg: 57.5 black: 0 diff --git a/themes/noori.yaml b/themes/noori.yaml index 89593be2..08000dd5 100644 --- a/themes/noori.yaml +++ b/themes/noori.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 76.2 black: 0 diff --git a/themes/noparanoia.yaml b/themes/noparanoia.yaml index 813228fc..77010a60 100644 --- a/themes/noparanoia.yaml +++ b/themes/noparanoia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 62.3 black: 0 diff --git a/themes/nora-dark.yaml b/themes/nora-dark.yaml index 1af79d68..105d77b0 100644 --- a/themes/nora-dark.yaml +++ b/themes/nora-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 66.5 black: 0 diff --git a/themes/nora-light-bordered.yaml b/themes/nora-light-bordered.yaml index d01d502a..1e309abb 100644 --- a/themes/nora-light-bordered.yaml +++ b/themes/nora-light-bordered.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 79.4 black: 104.2 diff --git a/themes/nord-bunker.yaml b/themes/nord-bunker.yaml index e8dbde95..01bee53c 100644 --- a/themes/nord-bunker.yaml +++ b/themes/nord-bunker.yaml @@ -2,7 +2,7 @@ name: "nord-bunker" source: marketplace_id: "sldobri.nord-5-stars" version: "1.0.1" - installs: 10783 + installs: 10785 author: "dobbbri" repo: "https://github.com/sldobri/nord-5-stars" url: "https://marketplace.visualstudio.com/items?itemName=sldobri.nord-5-stars" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: null contrast: fg: 86 black: 8.7 diff --git a/themes/nord-dark-contrast.yaml b/themes/nord-dark-contrast.yaml index 9000b0ff..da6d9221 100644 --- a/themes/nord-dark-contrast.yaml +++ b/themes/nord-dark-contrast.yaml @@ -2,7 +2,7 @@ name: "Nord Dark Contrast" source: marketplace_id: "simojanhunen.nord-dark-contrast" version: "0.4.0" - installs: 8763 + installs: 8767 author: "Simo Janhunen" repo: "https://github.com/simojanhunen/nord-dark-contrast" url: "https://marketplace.visualstudio.com/items?itemName=simojanhunen.nord-dark-contrast" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 84.1 black: 0 diff --git a/themes/nord-dark-pro.yaml b/themes/nord-dark-pro.yaml index 09c40197..d50a5535 100644 --- a/themes/nord-dark-pro.yaml +++ b/themes/nord-dark-pro.yaml @@ -2,7 +2,7 @@ name: "Nord Dark Pro" source: marketplace_id: "Curve.nord-dark-pro" version: "0.0.6" - installs: 13169 + installs: 13171 author: "Curve" repo: "https://github.com/Curve/Nord-Dark-Pro" url: "https://marketplace.visualstudio.com/items?itemName=Curve.nord-dark-pro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 56.9 black: 0 diff --git a/themes/nord-deep.yaml b/themes/nord-deep.yaml index 98de696e..7bfbd78f 100644 --- a/themes/nord-deep.yaml +++ b/themes/nord-deep.yaml @@ -1,15 +1,15 @@ name: "Nord Deep" source: - marketplace_id: "marlosirapuan.nord-deep" - version: "0.1.625" - installs: 62713 - author: "Marlos Irapuan" - repo: "https://github.com/marlosirapuan/vscode-theme-nord-deep" - url: "https://marketplace.visualstudio.com/items?itemName=marlosirapuan.nord-deep" + marketplace_id: "BalintGyarmathy.nord-deep-visible-comments" + version: "0.1.0" + installs: 2379 + author: "Bálint Gyarmathy" + repo: "https://github.com/gyaur/vscode-theme-nord-deep" + url: "https://marketplace.visualstudio.com/items?itemName=BalintGyarmathy.nord-deep-visible-comments" colors: - bg: "#1D2129" + bg: "#232731" fg: "#D8DEE9" - black: "#292E39" + black: "#3B4252" red: "#BF616A" green: "#A3BE8C" yellow: "#EBCB8B" @@ -28,22 +28,23 @@ colors: meta: mode: "dark" accent: "orange" - hue: 264 + hue: 268 + pair: null contrast: - fg: 84.1 + fg: 83.1 black: 0 - red: 31.7 - green: 60.4 - yellow: 75.1 - blue: 47.4 - magenta: 45.2 - cyan: 61.4 - white: 91.1 - brightBlack: 14.1 - brightRed: 31.7 - brightGreen: 60.4 - brightYellow: 75.1 - brightBlue: 47.4 - brightMagenta: 45.2 - brightCyan: 59.3 - brightWhite: 95 + red: 30.7 + green: 59.4 + yellow: 74.1 + blue: 46.4 + magenta: 44.2 + cyan: 60.4 + white: 90.1 + brightBlack: 13.1 + brightRed: 30.7 + brightGreen: 59.4 + brightYellow: 74.1 + brightBlue: 46.4 + brightMagenta: 44.2 + brightCyan: 58.3 + brightWhite: 94 diff --git a/themes/nord-jujoco.yaml b/themes/nord-jujoco.yaml index fa35449e..2ef71294 100644 --- a/themes/nord-jujoco.yaml +++ b/themes/nord-jujoco.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: null contrast: fg: 91.3 black: 7.4 diff --git a/themes/nord-midnight.yaml b/themes/nord-midnight.yaml index ffd5bcfd..8c376074 100644 --- a/themes/nord-midnight.yaml +++ b/themes/nord-midnight.yaml @@ -2,7 +2,7 @@ name: "Nord Midnight" source: marketplace_id: "adorabilis.nord-midnight" version: "0.0.1" - installs: 4986 + installs: 4995 author: "adorabilis" repo: "https://github.com/adorabilis/nord-midnight-vscode" url: "https://marketplace.visualstudio.com/items?itemName=adorabilis.nord-midnight" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: "Nord Light" contrast: fg: 84.7 black: 7.4 diff --git a/themes/nord-native.yaml b/themes/nord-native.yaml index 1b87e215..b315adc9 100644 --- a/themes/nord-native.yaml +++ b/themes/nord-native.yaml @@ -2,7 +2,7 @@ name: "Nord Native" source: marketplace_id: "divanvisagie.nord-native-theme" version: "0.0.7" - installs: 9775 + installs: 9781 author: "Divan Visagie" repo: "git+https://github.com/divanvisagie/nord-native" url: "https://marketplace.visualstudio.com/items?itemName=divanvisagie.nord-native-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 81.5 black: 0 diff --git a/themes/nord-operator-theme.yaml b/themes/nord-operator-theme.yaml index 975253fe..3e2d8302 100644 --- a/themes/nord-operator-theme.yaml +++ b/themes/nord-operator-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.1 black: 8.9 diff --git a/themes/nord-palette.yaml b/themes/nord-palette.yaml index 7d56f519..8f969efe 100644 --- a/themes/nord-palette.yaml +++ b/themes/nord-palette.yaml @@ -2,7 +2,7 @@ name: "Nord Palette" source: marketplace_id: "Avetis.nord-palette" version: "0.1.0" - installs: 27386 + installs: 27396 author: "Avetis" repo: "https://github.com/AvetisDN/nord-palette" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.nord-palette" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 263 + pair: null contrast: fg: 86.1 black: 0 diff --git a/themes/nord-zero.yaml b/themes/nord-zero.yaml index b2744f56..16515a36 100644 --- a/themes/nord-zero.yaml +++ b/themes/nord-zero.yaml @@ -2,7 +2,7 @@ name: "Nord Zero" source: marketplace_id: "Behrami.nord-zero" version: "0.2.6" - installs: 764 + installs: 765 author: "Behrami" repo: "https://github.com/QendrimBehrami/nord-zero" url: "https://marketplace.visualstudio.com/items?itemName=Behrami.nord-zero" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 269 + pair: null contrast: fg: 85.2 black: 8 diff --git a/themes/nord.yaml b/themes/nord.yaml index db9116b6..6d13f3cf 100644 --- a/themes/nord.yaml +++ b/themes/nord.yaml @@ -2,7 +2,7 @@ name: "Nord" source: marketplace_id: "swashata.beautiful-ui" version: "1.7.0" - installs: 121085 + installs: 121108 author: "swashata" repo: "https://github.com/swashata/vscode-beautiful-ui" url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 80 black: 0 diff --git a/themes/nordfox.yaml b/themes/nordfox.yaml index 39fe1477..5edfd2f2 100644 --- a/themes/nordfox.yaml +++ b/themes/nordfox.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 70.7 black: 0 diff --git a/themes/nordic-dark.yaml b/themes/nordic-dark.yaml index ebdbe810..0ef55c13 100644 --- a/themes/nordic-dark.yaml +++ b/themes/nordic-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/nordic-electric-ai-nocturne.yaml b/themes/nordic-electric-ai-nocturne.yaml index 72913456..2ec69a27 100644 --- a/themes/nordic-electric-ai-nocturne.yaml +++ b/themes/nordic-electric-ai-nocturne.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 269 + pair: null contrast: fg: 82.5 black: 0 diff --git a/themes/nordic.yaml b/themes/nordic.yaml index 3c92587e..2bb62c0b 100644 --- a/themes/nordic.yaml +++ b/themes/nordic.yaml @@ -2,7 +2,7 @@ name: "Nordic" source: marketplace_id: "bonchol.nordic-vscode" version: "0.2.0" - installs: 5711 + installs: 5717 author: "bonchol" repo: "https://github.com/bonchol/nordic-vscode" url: "https://marketplace.visualstudio.com/items?itemName=bonchol.nordic-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 93.6 black: 0 diff --git a/themes/nordicbox.yaml b/themes/nordicbox.yaml index fda44278..50923fd8 100644 --- a/themes/nordicbox.yaml +++ b/themes/nordicbox.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 84.3 black: 0 diff --git a/themes/nordicdark.yaml b/themes/nordicdark.yaml index 608bd5e2..5aa4c8ba 100644 --- a/themes/nordicdark.yaml +++ b/themes/nordicdark.yaml @@ -2,7 +2,7 @@ name: "NordicDark" source: marketplace_id: "Avetis.codeme-theme" version: "0.1.1" - installs: 8079 + installs: 8080 author: "Avetis" repo: "https://github.com/AvetisDN/codeme-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 89.5 black: 0 diff --git a/themes/nordico.yaml b/themes/nordico.yaml index a9a27ce9..01e16b32 100644 --- a/themes/nordico.yaml +++ b/themes/nordico.yaml @@ -2,7 +2,7 @@ name: "Nordico" source: marketplace_id: "madprops.nordico" version: "1.2.2" - installs: 15071 + installs: 15072 author: "madprops" repo: "https://github.com/madprops/Nordico" url: "https://marketplace.visualstudio.com/items?itemName=madprops.nordico" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 82.7 black: 0 diff --git a/themes/nordishcocoa.yaml b/themes/nordishcocoa.yaml index 1aacf6a8..525463d2 100644 --- a/themes/nordishcocoa.yaml +++ b/themes/nordishcocoa.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 80.5 black: 14.7 diff --git a/themes/northeirn.yaml b/themes/northeirn.yaml index 60557e89..8f14b9a4 100644 --- a/themes/northeirn.yaml +++ b/themes/northeirn.yaml @@ -2,7 +2,7 @@ name: "Northeirn" source: marketplace_id: "murilonicemento.northeirn" version: "1.0.1" - installs: 197 + installs: 198 author: "Murilo Nascimento" repo: "https://github.com/murilonicemento/northeirn-theme" url: "https://marketplace.visualstudio.com/items?itemName=murilonicemento.northeirn" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/northern-territory-dark.yaml b/themes/northern-territory-dark.yaml index d2841620..a10af416 100644 --- a/themes/northern-territory-dark.yaml +++ b/themes/northern-territory-dark.yaml @@ -1,7 +1,7 @@ name: "Northern Territory Dark" source: marketplace_id: "lucidlabs.northern-territory-theme" - version: "1.1.0" + version: "1.3.0" installs: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 67 + pair: "Northern Territory Light" contrast: fg: 95.4 black: 0 diff --git a/themes/northern-territory-light.yaml b/themes/northern-territory-light.yaml index a0cde2e3..4cd4ba4b 100644 --- a/themes/northern-territory-light.yaml +++ b/themes/northern-territory-light.yaml @@ -1,7 +1,7 @@ name: "Northern Territory Light" source: marketplace_id: "lucidlabs.northern-territory-theme" - version: "1.1.0" + version: "1.3.0" installs: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Northern Territory Dark" contrast: fg: 105.6 black: 105.6 diff --git a/themes/nosk-theme.yaml b/themes/nosk-theme.yaml index a7f67150..e6d68a95 100644 --- a/themes/nosk-theme.yaml +++ b/themes/nosk-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 57 black: 0 diff --git a/themes/nostromo.yaml b/themes/nostromo.yaml index 9ca5e4cd..65bf8bfe 100644 --- a/themes/nostromo.yaml +++ b/themes/nostromo.yaml @@ -2,7 +2,7 @@ name: "Nostromo" source: marketplace_id: "martintheimer.nostromo-theme" version: "1.0.2" - installs: 9916 + installs: 9919 author: "Martin Theimer" repo: "https://github.com/pappkamerad/nostromo-theme-visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=martintheimer.nostromo-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 243 + pair: null contrast: fg: 99.7 black: 0 diff --git a/themes/not-so-simple.yaml b/themes/not-so-simple.yaml index 1715581b..20068edd 100644 --- a/themes/not-so-simple.yaml +++ b/themes/not-so-simple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/notchy-dark.yaml b/themes/notchy-dark.yaml index f14a92ba..d53ce5b9 100644 --- a/themes/notchy-dark.yaml +++ b/themes/notchy-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 242 + pair: null contrast: fg: 56 black: 26.2 diff --git a/themes/notesocean-vs-code-theme.yaml b/themes/notesocean-vs-code-theme.yaml index 8c9d10b6..b8bdf7f0 100644 --- a/themes/notesocean-vs-code-theme.yaml +++ b/themes/notesocean-vs-code-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 104.4 black: 0 diff --git a/themes/notflask-theme-light.yaml b/themes/notflask-theme-light.yaml index cf2ec26a..88bf2c34 100644 --- a/themes/notflask-theme-light.yaml +++ b/themes/notflask-theme-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 77.5 black: 102.4 diff --git a/themes/nothing-dark.yaml b/themes/nothing-dark.yaml index d1403d45..f02e0154 100644 --- a/themes/nothing-dark.yaml +++ b/themes/nothing-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: "Nothing Light" contrast: fg: 92.8 black: 0 diff --git a/themes/nothing-light.yaml b/themes/nothing-light.yaml index d2fbd7f5..3e9e1ba6 100644 --- a/themes/nothing-light.yaml +++ b/themes/nothing-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: "Nothing Dark" contrast: fg: 101.1 black: 106 diff --git a/themes/nothing-os-dark.yaml b/themes/nothing-os-dark.yaml index fda8e7a3..4e4020de 100644 --- a/themes/nothing-os-dark.yaml +++ b/themes/nothing-os-dark.yaml @@ -1,11 +1,11 @@ name: "Nothing OS Dark" source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1834 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + marketplace_id: "xexefe.nothing-os-theme" + version: "1.2.0" + installs: 219 + author: "xexefe" + repo: "https://github.com/shahriaravi/nothing-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xexefe.nothing-os-theme" colors: bg: "#000000" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/nothing-os-gray.yaml b/themes/nothing-os-gray.yaml index a6d96190..55e713ac 100644 --- a/themes/nothing-os-gray.yaml +++ b/themes/nothing-os-gray.yaml @@ -1,11 +1,11 @@ name: "Nothing OS Gray" source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1834 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + marketplace_id: "xexefe.nothing-os-theme" + version: "1.2.0" + installs: 219 + author: "xexefe" + repo: "https://github.com/shahriaravi/nothing-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xexefe.nothing-os-theme" colors: bg: "#14151F" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 280 + pair: null contrast: fg: 107 black: 0 diff --git a/themes/notion-code-theme.yaml b/themes/notion-code-theme.yaml index b799961a..52e99ee2 100644 --- a/themes/notion-code-theme.yaml +++ b/themes/notion-code-theme.yaml @@ -2,7 +2,7 @@ name: "Notion Code Theme" source: marketplace_id: "HarshitGangwar.notion-code-theme" version: "0.0.2" - installs: 5257 + installs: 5258 author: "Harshit Gangwar" repo: "https://github.com/harshjoeyit/vscode-notion-theme" url: "https://marketplace.visualstudio.com/items?itemName=HarshitGangwar.notion-code-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 92.6 black: 84.9 diff --git a/themes/notionliketheme.yaml b/themes/notionliketheme.yaml index 79da8979..489d40f9 100644 --- a/themes/notionliketheme.yaml +++ b/themes/notionliketheme.yaml @@ -2,7 +2,7 @@ name: "NotionLikeTheme" source: marketplace_id: "TARA6.notion-like-theme" version: "0.2.4" - installs: 589 + installs: 590 author: "TARA6" repo: "https://github.com/tarataracodfish/notion-like-theme" url: "https://marketplace.visualstudio.com/items?itemName=TARA6.notion-like-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98 black: 98 diff --git a/themes/notthevimguytheme.yaml b/themes/notthevimguytheme.yaml index 27f57eba..2e6ce456 100644 --- a/themes/notthevimguytheme.yaml +++ b/themes/notthevimguytheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 93 + pair: null contrast: fg: 38.9 black: 0 diff --git a/themes/nova.yaml b/themes/nova.yaml index 64058562..9f086768 100644 --- a/themes/nova.yaml +++ b/themes/nova.yaml @@ -2,7 +2,7 @@ name: "Nova" source: marketplace_id: "swashata.beautiful-ui" version: "1.7.0" - installs: 121085 + installs: 121108 author: "swashata" repo: "https://github.com/swashata/vscode-beautiful-ui" url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 233 + pair: null contrast: fg: 66.4 black: 13.2 diff --git a/themes/novadust.yaml b/themes/novadust.yaml index dad94c7c..496f0dfb 100644 --- a/themes/novadust.yaml +++ b/themes/novadust.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: null contrast: fg: 75.1 black: 0 diff --git a/themes/november-theme-black.yaml b/themes/november-theme-black.yaml index e8003a61..92b5d5e8 100644 --- a/themes/november-theme-black.yaml +++ b/themes/november-theme-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 105.6 black: 0 diff --git a/themes/november-theme-darkblue.yaml b/themes/november-theme-darkblue.yaml index ba7081da..9ec98f5a 100644 --- a/themes/november-theme-darkblue.yaml +++ b/themes/november-theme-darkblue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 105.4 black: 0 diff --git a/themes/nox.yaml b/themes/nox.yaml index 57a5efb3..3662fbef 100644 --- a/themes/nox.yaml +++ b/themes/nox.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 270 + pair: null contrast: fg: 62.5 black: 0 diff --git a/themes/noxis-light.yaml b/themes/noxis-light.yaml index 751530dd..cc3e0316 100644 --- a/themes/noxis-light.yaml +++ b/themes/noxis-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 88.5 black: 40.7 diff --git a/themes/noxis.yaml b/themes/noxis.yaml index 9eae7ede..683617bc 100644 --- a/themes/noxis.yaml +++ b/themes/noxis.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 276 + pair: null contrast: fg: 45.6 black: 0 diff --git a/themes/noxus.yaml b/themes/noxus.yaml index 0ae4ee50..71ea1ee5 100644 --- a/themes/noxus.yaml +++ b/themes/noxus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 101.4 black: 30.1 diff --git a/themes/npp-color-dark-hard.yaml b/themes/npp-color-dark-hard.yaml index 1b8c6374..2a5a17de 100644 --- a/themes/npp-color-dark-hard.yaml +++ b/themes/npp-color-dark-hard.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "npp-color light hard" contrast: fg: 57.8 black: 11.5 diff --git a/themes/npp-color-light-hard.yaml b/themes/npp-color-light-hard.yaml index 492a4fcf..7280881d 100644 --- a/themes/npp-color-light-hard.yaml +++ b/themes/npp-color-light-hard.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "npp-color Dark hard" contrast: fg: 86.8 black: 81.4 diff --git a/themes/nstlgy-dark-josh-w-comeau-inspired.yaml b/themes/nstlgy-dark-josh-w-comeau-inspired.yaml index 36d53c98..3f69f9f5 100644 --- a/themes/nstlgy-dark-josh-w-comeau-inspired.yaml +++ b/themes/nstlgy-dark-josh-w-comeau-inspired.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 106 black: 8 diff --git a/themes/ntt1.yaml b/themes/ntt1.yaml index fea85245..58135794 100644 --- a/themes/ntt1.yaml +++ b/themes/ntt1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 285 + pair: null contrast: fg: 95.3 black: 0 diff --git a/themes/nuclear-z-light.yaml b/themes/nuclear-z-light.yaml index 338db728..2107967e 100644 --- a/themes/nuclear-z-light.yaml +++ b/themes/nuclear-z-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 92.8 black: 101.9 diff --git a/themes/nudark.yaml b/themes/nudark.yaml index 134e4d87..706f25a6 100644 --- a/themes/nudark.yaml +++ b/themes/nudark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 258 + pair: null contrast: fg: 77.5 black: 13.1 diff --git a/themes/nuitp-le-theme.yaml b/themes/nuitp-le-theme.yaml index 2d51cd91..c6b718a4 100644 --- a/themes/nuitp-le-theme.yaml +++ b/themes/nuitp-le-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 69.5 black: 24.5 diff --git a/themes/null-theme-absolute-black.yaml b/themes/null-theme-absolute-black.yaml index bd441b97..15a75ead 100644 --- a/themes/null-theme-absolute-black.yaml +++ b/themes/null-theme-absolute-black.yaml @@ -2,7 +2,7 @@ name: "Null Theme - Absolute Black" source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" - installs: 212 + installs: 213 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 82.6 black: 0 diff --git a/themes/null-theme-electric-enhanced.yaml b/themes/null-theme-electric-enhanced.yaml index 7e7deca3..8d5d505a 100644 --- a/themes/null-theme-electric-enhanced.yaml +++ b/themes/null-theme-electric-enhanced.yaml @@ -2,7 +2,7 @@ name: "Null Theme - Electric Enhanced" source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" - installs: 212 + installs: 213 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 282 + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/null-theme-midnight-enhanced.yaml b/themes/null-theme-midnight-enhanced.yaml index 8e2bc320..3885e896 100644 --- a/themes/null-theme-midnight-enhanced.yaml +++ b/themes/null-theme-midnight-enhanced.yaml @@ -2,7 +2,7 @@ name: "Null Theme - Midnight Enhanced" source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" - installs: 212 + installs: 213 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 283 + pair: null contrast: fg: 95 black: 0 diff --git a/themes/null-theme-muted.yaml b/themes/null-theme-muted.yaml index a80e3ba8..10ca816f 100644 --- a/themes/null-theme-muted.yaml +++ b/themes/null-theme-muted.yaml @@ -2,7 +2,7 @@ name: "Null Theme - Muted" source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" - installs: 212 + installs: 213 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 69.5 black: 0 diff --git a/themes/null-theme-near-black.yaml b/themes/null-theme-near-black.yaml index a1ffc45c..b029d17f 100644 --- a/themes/null-theme-near-black.yaml +++ b/themes/null-theme-near-black.yaml @@ -2,7 +2,7 @@ name: "Null Theme - Near Black" source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" - installs: 212 + installs: 213 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 73.2 black: 0 diff --git a/themes/null-theme-pastel.yaml b/themes/null-theme-pastel.yaml index bc67776a..c889a4d5 100644 --- a/themes/null-theme-pastel.yaml +++ b/themes/null-theme-pastel.yaml @@ -2,7 +2,7 @@ name: "Null Theme - Pastel" source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" - installs: 212 + installs: 213 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/null-theme-synthwave.yaml b/themes/null-theme-synthwave.yaml index 8ad1e811..a6dfa2fa 100644 --- a/themes/null-theme-synthwave.yaml +++ b/themes/null-theme-synthwave.yaml @@ -2,7 +2,7 @@ name: "Null Theme - Synthwave" source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" - installs: 212 + installs: 213 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 283 + pair: null contrast: fg: 87.4 black: 0 diff --git a/themes/null-theme-vivid.yaml b/themes/null-theme-vivid.yaml index f0216f97..ee662d40 100644 --- a/themes/null-theme-vivid.yaml +++ b/themes/null-theme-vivid.yaml @@ -2,7 +2,7 @@ name: "Null Theme - Vivid" source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" - installs: 212 + installs: 213 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 86.8 black: 0 diff --git a/themes/nultramarine.yaml b/themes/nultramarine.yaml index 363255e9..cec9636d 100644 --- a/themes/nultramarine.yaml +++ b/themes/nultramarine.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 252 + pair: null contrast: fg: 64.6 black: 0 diff --git a/themes/nulzo-relax.yaml b/themes/nulzo-relax.yaml index 20e5cb0a..d9a7c7f7 100644 --- a/themes/nulzo-relax.yaml +++ b/themes/nulzo-relax.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 266 + pair: null contrast: fg: 20.2 black: 18.3 diff --git a/themes/nulzo-winter-light.yaml b/themes/nulzo-winter-light.yaml index 2a777108..e4ca3fe3 100644 --- a/themes/nulzo-winter-light.yaml +++ b/themes/nulzo-winter-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 76.3 black: 89.1 diff --git a/themes/nur-dark.yaml b/themes/nur-dark.yaml index bea6e36f..9ba229c2 100644 --- a/themes/nur-dark.yaml +++ b/themes/nur-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Nur Light" contrast: fg: 81.6 black: 0 diff --git a/themes/nur-light.yaml b/themes/nur-light.yaml index fdd0e7be..981abdb8 100644 --- a/themes/nur-light.yaml +++ b/themes/nur-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Nur Dark" contrast: fg: 76.2 black: 76.2 diff --git a/themes/nushu-classic.yaml b/themes/nushu-classic.yaml index af4017a7..6918a724 100644 --- a/themes/nushu-classic.yaml +++ b/themes/nushu-classic.yaml @@ -2,7 +2,7 @@ name: "Nushu Classic" source: marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" version: "2.2.18" - installs: 32055 + installs: 32063 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.2 black: 17.1 diff --git a/themes/nushu-dark.yaml b/themes/nushu-dark.yaml index db98904e..7b58c585 100644 --- a/themes/nushu-dark.yaml +++ b/themes/nushu-dark.yaml @@ -2,7 +2,7 @@ name: "Nushu Dark" source: marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" version: "2.2.18" - installs: 32055 + installs: 32063 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Nushu Light" contrast: fg: 75.8 black: 11.2 diff --git a/themes/nushu-light.yaml b/themes/nushu-light.yaml index 3fb2e33d..cc6b6687 100644 --- a/themes/nushu-light.yaml +++ b/themes/nushu-light.yaml @@ -2,7 +2,7 @@ name: "Nushu Light" source: marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" version: "2.2.18" - installs: 32055 + installs: 32063 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Nushu Dark" contrast: fg: 96.2 black: 96.1 diff --git a/themes/nutheme.yaml b/themes/nutheme.yaml index 8aae6a58..bf8f667f 100644 --- a/themes/nutheme.yaml +++ b/themes/nutheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 105.9 black: 0 diff --git a/themes/nutty-dark-theme.yaml b/themes/nutty-dark-theme.yaml index b48f8002..b50b70d4 100644 --- a/themes/nutty-dark-theme.yaml +++ b/themes/nutty-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Nutty Dark Theme" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 56 + pair: "Nutty Light Theme" contrast: fg: 86.1 black: 0 diff --git a/themes/nutty-light-theme.yaml b/themes/nutty-light-theme.yaml index b6b9a24c..66292876 100644 --- a/themes/nutty-light-theme.yaml +++ b/themes/nutty-light-theme.yaml @@ -2,7 +2,7 @@ name: "Nutty Light Theme" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Nutty Dark Theme" contrast: fg: 102.3 black: 102.3 diff --git a/themes/nuxt-blend-bleach-color-theme.yaml b/themes/nuxt-blend-bleach-color-theme.yaml index 5c5d3330..7425e80c 100644 --- a/themes/nuxt-blend-bleach-color-theme.yaml +++ b/themes/nuxt-blend-bleach-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 71.3 black: 106 diff --git a/themes/nuxt-blend.yaml b/themes/nuxt-blend.yaml index af1afb9f..4d94ff65 100644 --- a/themes/nuxt-blend.yaml +++ b/themes/nuxt-blend.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 221 + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/nuxtian-deep-space.yaml b/themes/nuxtian-deep-space.yaml index 8022d892..ec1beb7b 100644 --- a/themes/nuxtian-deep-space.yaml +++ b/themes/nuxtian-deep-space.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 266 + pair: null contrast: fg: 80.1 black: 0 diff --git a/themes/nuxtian-light.yaml b/themes/nuxtian-light.yaml index 16222607..59b1688c 100644 --- a/themes/nuxtian-light.yaml +++ b/themes/nuxtian-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 98.2 black: 101.4 diff --git a/themes/nuxtian-nitro.yaml b/themes/nuxtian-nitro.yaml index 2884412e..518e5ded 100644 --- a/themes/nuxtian-nitro.yaml +++ b/themes/nuxtian-nitro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/nuxtian.yaml b/themes/nuxtian.yaml index 35b7fea4..1707ce49 100644 --- a/themes/nuxtian.yaml +++ b/themes/nuxtian.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 270 + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/nuxtiansololevel.yaml b/themes/nuxtiansololevel.yaml index c101b237..4f5d1379 100644 --- a/themes/nuxtiansololevel.yaml +++ b/themes/nuxtiansololevel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 106.9 black: 0 diff --git a/themes/nuxtvite.yaml b/themes/nuxtvite.yaml index 2e202932..31951711 100644 --- a/themes/nuxtvite.yaml +++ b/themes/nuxtvite.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 296 + pair: null contrast: fg: 79.6 black: 0 diff --git a/themes/nuxtvoid.yaml b/themes/nuxtvoid.yaml index f5cc6a47..f8bc5e46 100644 --- a/themes/nuxtvoid.yaml +++ b/themes/nuxtvoid.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 73.6 black: 101.5 diff --git a/themes/nw21.yaml b/themes/nw21.yaml index 390b0e2d..0b669921 100644 --- a/themes/nw21.yaml +++ b/themes/nw21.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: 269 + pair: null contrast: fg: 92.6 black: 91.4 diff --git a/themes/ny-city-lights-theme.yaml b/themes/ny-city-lights-theme.yaml index 33d7047b..860ddda5 100644 --- a/themes/ny-city-lights-theme.yaml +++ b/themes/ny-city-lights-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 100.8 black: 0 diff --git a/themes/nyctophilia.yaml b/themes/nyctophilia.yaml index 50d97150..2c25cc33 100644 --- a/themes/nyctophilia.yaml +++ b/themes/nyctophilia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 75 black: 0 diff --git a/themes/oa515.yaml b/themes/oa515.yaml index 88022818..7f24ac86 100644 --- a/themes/oa515.yaml +++ b/themes/oa515.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 97.5 black: 97.5 diff --git a/themes/oak-dark.yaml b/themes/oak-dark.yaml index 4a75d82d..5974d835 100644 --- a/themes/oak-dark.yaml +++ b/themes/oak-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 85.8 black: 105.8 diff --git a/themes/oak.yaml b/themes/oak.yaml index 91aa9052..11d082ce 100644 --- a/themes/oak.yaml +++ b/themes/oak.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 82 black: 100.1 diff --git a/themes/obanai-iguro.yaml b/themes/obanai-iguro.yaml index 0b0831b7..678fa811 100644 --- a/themes/obanai-iguro.yaml +++ b/themes/obanai-iguro.yaml @@ -2,7 +2,7 @@ name: "Obanai Iguro" source: marketplace_id: "devLocifer.hashira-code-theme" version: "0.0.1" - installs: 738 + installs: 739 author: "devLocifer" repo: "https://github.com/diazdjul19/hashira-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 267 + pair: null contrast: fg: 80.8 black: 0 diff --git a/themes/obito-akatsuki-theme.yaml b/themes/obito-akatsuki-theme.yaml index 4daa05f5..13b885bc 100644 --- a/themes/obito-akatsuki-theme.yaml +++ b/themes/obito-akatsuki-theme.yaml @@ -2,7 +2,7 @@ name: "obito akatsuki theme" source: marketplace_id: "obito-dev.obito-akatsuki-theme" version: "1.2.0" - installs: 694 + installs: 697 author: "obito-dev" repo: "https://github.com/ton-user/obito-akatsuki-theme" url: "https://marketplace.visualstudio.com/items?itemName=obito-dev.obito-akatsuki-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 83.5 black: 0 diff --git a/themes/oblivion.yaml b/themes/oblivion.yaml index fc3260e9..948b9962 100644 --- a/themes/oblivion.yaml +++ b/themes/oblivion.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 55.5 black: 0 diff --git a/themes/oboro.yaml b/themes/oboro.yaml index e9fd2ff4..6cf9386d 100644 --- a/themes/oboro.yaml +++ b/themes/oboro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 287 + pair: null contrast: fg: 79 black: 0 diff --git a/themes/obsidian-dark.yaml b/themes/obsidian-dark.yaml index b5401b3a..c77727f0 100644 --- a/themes/obsidian-dark.yaml +++ b/themes/obsidian-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 248 + pair: "Obsidian Light" contrast: fg: 77.3 black: 12.8 diff --git a/themes/obsidian-ember.yaml b/themes/obsidian-ember.yaml index 7bea798f..08227b1a 100644 --- a/themes/obsidian-ember.yaml +++ b/themes/obsidian-ember.yaml @@ -1,49 +1,50 @@ name: "Obsidian Ember" source: - marketplace_id: "lvzitan.obsidian-ember-theme" - version: "1.1.3" - installs: 1044 - author: "Daniel Francisco" - repo: "https://github.com/Lvzitan/obsidian-ember-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lvzitan.obsidian-ember-theme" + marketplace_id: "Bloody.obsidian-ember" + version: "1.0.0" + installs: 159 + author: "Bloody" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Bloody.obsidian-ember" colors: - bg: "#1E1E1E" - fg: "#D3D3D3" - black: "#333333" - red: "#D73333" - green: "#9BE884" - yellow: "#FF8243" - blue: "#AAAAAA" - magenta: "#CCCCCC" - cyan: "#FF8243" - white: "#E5E5E5" - brightBlack: "#333333" - brightRed: "#F70808" - brightGreen: "#75DB57" - brightYellow: "#FF8243" - brightBlue: "#AAAAAA" - brightMagenta: "#CCCCCC" - brightCyan: "#FF8243" - brightWhite: "#E5E5E5" + bg: "#0A0C12" + fg: "#A29A8F" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "orange" - hue: null + accent: "red" + hue: 270 + pair: null contrast: - fg: 78 + fg: 48 black: 0 - red: 28.3 - green: 79.3 - yellow: 52.3 - blue: 54.4 - magenta: 73.8 - cyan: 52.3 - white: 89.2 - brightBlack: 0 - brightRed: 33.7 - brightGreen: 69.4 - brightYellow: 52.3 - brightBlue: 54.4 - brightMagenta: 73.8 - brightCyan: 52.3 - brightWhite: 89.2 + red: 44.4 + green: 85 + yellow: 79.7 + blue: 56.7 + magenta: 54.5 + cyan: 79 + white: 107.7 + brightBlack: 12.3 + brightRed: 44.4 + brightGreen: 85 + brightYellow: 79.7 + brightBlue: 56.7 + brightMagenta: 54.5 + brightCyan: 79 + brightWhite: 107.7 diff --git a/themes/obsidian-light.yaml b/themes/obsidian-light.yaml index e2727a86..d2d83246 100644 --- a/themes/obsidian-light.yaml +++ b/themes/obsidian-light.yaml @@ -2,7 +2,7 @@ name: "Obsidian Light" source: marketplace_id: "narcilee7.obsidian-light" version: "1.2.0" - installs: 86 + installs: 87 author: "narcilee7" repo: "https://github.com/narcilee7/obsidian-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=narcilee7.obsidian-light" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Obsidian Dark" contrast: fg: 100.1 black: 100.1 diff --git a/themes/obsidian-nova.yaml b/themes/obsidian-nova.yaml index d8911b37..80abdf48 100644 --- a/themes/obsidian-nova.yaml +++ b/themes/obsidian-nova.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 59.6 black: 0 diff --git a/themes/obsidian-pro-dark-blue-purple.yaml b/themes/obsidian-pro-dark-blue-purple.yaml index a06553cf..63439188 100644 --- a/themes/obsidian-pro-dark-blue-purple.yaml +++ b/themes/obsidian-pro-dark-blue-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 95.6 black: 0 diff --git a/themes/obsidian-pro-dark-pink-purple.yaml b/themes/obsidian-pro-dark-pink-purple.yaml index 013db0b7..5f718c36 100644 --- a/themes/obsidian-pro-dark-pink-purple.yaml +++ b/themes/obsidian-pro-dark-pink-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 96.2 black: 0 diff --git a/themes/obsidian-pro-dark-purple-neon.yaml b/themes/obsidian-pro-dark-purple-neon.yaml index 43b2d216..393a6274 100644 --- a/themes/obsidian-pro-dark-purple-neon.yaml +++ b/themes/obsidian-pro-dark-purple-neon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 100.5 black: 0 diff --git a/themes/obsidian-pro-dark-purple-pastel.yaml b/themes/obsidian-pro-dark-purple-pastel.yaml index bc1a927d..64075d56 100644 --- a/themes/obsidian-pro-dark-purple-pastel.yaml +++ b/themes/obsidian-pro-dark-purple-pastel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 94.1 black: 0 diff --git a/themes/obsidian-pro-dark-purple.yaml b/themes/obsidian-pro-dark-purple.yaml index 520f15cc..57e6f526 100644 --- a/themes/obsidian-pro-dark-purple.yaml +++ b/themes/obsidian-pro-dark-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 90.4 black: 0 diff --git a/themes/obsidian-pro-dark.yaml b/themes/obsidian-pro-dark.yaml index 22dc5337..cc38eba3 100644 --- a/themes/obsidian-pro-dark.yaml +++ b/themes/obsidian-pro-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 90.4 black: 0 diff --git a/themes/obsidian-pro-white-purple.yaml b/themes/obsidian-pro-white-purple.yaml index b5e2ae68..b3955b35 100644 --- a/themes/obsidian-pro-white-purple.yaml +++ b/themes/obsidian-pro-white-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 99.9 black: 60.1 diff --git a/themes/obsidian-pro-white.yaml b/themes/obsidian-pro-white.yaml index a5dcc881..5a3b9d4c 100644 --- a/themes/obsidian-pro-white.yaml +++ b/themes/obsidian-pro-white.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 100.5 black: 102.4 diff --git a/themes/obsidian-pulse-light-theme.yaml b/themes/obsidian-pulse-light-theme.yaml index ea4b615c..92c2aa15 100644 --- a/themes/obsidian-pulse-light-theme.yaml +++ b/themes/obsidian-pulse-light-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 87.4 black: 0 diff --git a/themes/obsidian-pulse-theme.yaml b/themes/obsidian-pulse-theme.yaml index 3992eb9a..891989c4 100644 --- a/themes/obsidian-pulse-theme.yaml +++ b/themes/obsidian-pulse-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 277 + pair: null contrast: fg: 84.6 black: 0 diff --git a/themes/obsidian-sea.yaml b/themes/obsidian-sea.yaml index 5e40313a..b0ee4d56 100644 --- a/themes/obsidian-sea.yaml +++ b/themes/obsidian-sea.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 275 + pair: null contrast: fg: 90.7 black: 0 diff --git a/themes/obsidian-sunset.yaml b/themes/obsidian-sunset.yaml index 367596db..74cd082a 100644 --- a/themes/obsidian-sunset.yaml +++ b/themes/obsidian-sunset.yaml @@ -2,7 +2,7 @@ name: "Obsidian Sunset" source: marketplace_id: "lczerniawski.obsidiansunset" version: "1.5.2" - installs: 1025 + installs: 1026 author: "Łukasz Czerniawski" repo: "https://github.com/lczerniawski/ObsidianSunset" url: "https://marketplace.visualstudio.com/items?itemName=lczerniawski.obsidiansunset" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 65.9 black: 0 diff --git a/themes/obsidian-void.yaml b/themes/obsidian-void.yaml index d6fd906b..ce521fd3 100644 --- a/themes/obsidian-void.yaml +++ b/themes/obsidian-void.yaml @@ -2,7 +2,7 @@ name: "Obsidian Void" source: marketplace_id: "MohammadHasani.obsidian-void" version: "0.0.4" - installs: 86 + installs: 88 author: "Mohammad Hasani" repo: "https://github.com/mohammadhasanii/obsidian-void" url: "https://marketplace.visualstudio.com/items?itemName=MohammadHasani.obsidian-void" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 105 black: 0 diff --git a/themes/obsidian.yaml b/themes/obsidian.yaml index 680840e3..ab8c7aa8 100644 --- a/themes/obsidian.yaml +++ b/themes/obsidian.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 88.7 black: 0 diff --git a/themes/obsidianite-amoled.yaml b/themes/obsidianite-amoled.yaml index 3ea5d0ae..8d55d57f 100644 --- a/themes/obsidianite-amoled.yaml +++ b/themes/obsidianite-amoled.yaml @@ -2,7 +2,7 @@ name: "Obsidianite AMOLED" source: marketplace_id: "shd0w.obsidianite-vscode" version: "1.0.0" - installs: 0 + installs: 2 author: "shd0w" repo: "https://github.com/shd0w/obsidianite-vscode" url: "https://marketplace.visualstudio.com/items?itemName=shd0w.obsidianite-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 67.5 black: 0 diff --git a/themes/obsidianite.yaml b/themes/obsidianite.yaml index 6e4eace6..6fc45816 100644 --- a/themes/obsidianite.yaml +++ b/themes/obsidianite.yaml @@ -2,7 +2,7 @@ name: "Obsidianite" source: marketplace_id: "shd0w.obsidianite-vscode" version: "1.0.0" - installs: 0 + installs: 2 author: "shd0w" repo: "https://github.com/shd0w/obsidianite-vscode" url: "https://marketplace.visualstudio.com/items?itemName=shd0w.obsidianite-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 295 + pair: null contrast: fg: 67.1 black: 0 diff --git a/themes/oc-7-light.yaml b/themes/oc-7-light.yaml index 03e00995..3c395bb5 100644 --- a/themes/oc-7-light.yaml +++ b/themes/oc-7-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 92.6 black: 17.8 diff --git a/themes/ocean-blue-theme.yaml b/themes/ocean-blue-theme.yaml index 5012336b..e3b9ce0a 100644 --- a/themes/ocean-blue-theme.yaml +++ b/themes/ocean-blue-theme.yaml @@ -2,7 +2,7 @@ name: "Ocean Blue Theme" source: marketplace_id: "wipaaaid.oceanish-blue-theme" version: "0.0.1" - installs: 596 + installs: 597 author: "wipaaa" repo: "https://github.com/wipaaa/vscode-oceanish-blue-theme" url: "https://marketplace.visualstudio.com/items?itemName=wipaaaid.oceanish-blue-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 254 + pair: null contrast: fg: 81.9 black: 0 diff --git a/themes/ocean-breeze.yaml b/themes/ocean-breeze.yaml index feee01be..a74c05e8 100644 --- a/themes/ocean-breeze.yaml +++ b/themes/ocean-breeze.yaml @@ -1,11 +1,11 @@ name: "Ocean Breeze" source: - marketplace_id: "nhcarrigan.ocean-breeze" - version: "1.1.1" - installs: 28 + marketplace_id: "nhcarrigan.naomis-themes" + version: "2.3.0" + installs: 68 author: "NHCarrigan" - repo: "https://codeberg.org/nhcarrigan/ocean-breeze" - url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.ocean-breeze" + repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" colors: bg: "#012A22" fg: "#ABFCEC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 176 + pair: null contrast: fg: 93 black: 0 diff --git a/themes/ocean-color-theme.yaml b/themes/ocean-color-theme.yaml index 57bba9ae..65b8eb04 100644 --- a/themes/ocean-color-theme.yaml +++ b/themes/ocean-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 82.6 black: 0 diff --git a/themes/ocean-deep-depth-stability.yaml b/themes/ocean-deep-depth-stability.yaml index 1f5f89b2..19905f70 100644 --- a/themes/ocean-deep-depth-stability.yaml +++ b/themes/ocean-deep-depth-stability.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 251 + pair: null contrast: fg: 96.7 black: 0 diff --git a/themes/ocean-eyes-medium.yaml b/themes/ocean-eyes-medium.yaml index 387ccf09..aa2af2a3 100644 --- a/themes/ocean-eyes-medium.yaml +++ b/themes/ocean-eyes-medium.yaml @@ -2,7 +2,7 @@ name: "Ocean Eyes Medium" source: marketplace_id: "SethCox.ocean-eyes" version: "0.0.8" - installs: 5213 + installs: 5214 author: "Seth Cox" repo: "https://github.com/sethaddison/ocean-eyes-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SethCox.ocean-eyes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 100.9 black: 0 diff --git a/themes/ocean-eyes.yaml b/themes/ocean-eyes.yaml index 052f15ba..a74c5227 100644 --- a/themes/ocean-eyes.yaml +++ b/themes/ocean-eyes.yaml @@ -2,7 +2,7 @@ name: "Ocean Eyes" source: marketplace_id: "SethCox.ocean-eyes" version: "0.0.8" - installs: 5213 + installs: 5214 author: "Seth Cox" repo: "https://github.com/sethaddison/ocean-eyes-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SethCox.ocean-eyes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 249 + pair: null contrast: fg: 102.4 black: 7.8 diff --git a/themes/ocean-high-contrast.yaml b/themes/ocean-high-contrast.yaml index 84830c9c..67029bbf 100644 --- a/themes/ocean-high-contrast.yaml +++ b/themes/ocean-high-contrast.yaml @@ -2,7 +2,7 @@ name: "Ocean High Contrast" source: marketplace_id: "NotYasho.ocean-high-contrast" version: "4.1.0" - installs: 9850 + installs: 9851 author: "NotYasho" repo: "https://github.com/NotYasho/ocean-high-contrast" url: "https://marketplace.visualstudio.com/items?itemName=NotYasho.ocean-high-contrast" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 278 + pair: null contrast: fg: 94.3 black: 31.7 diff --git a/themes/ocean-mist-light.yaml b/themes/ocean-mist-light.yaml index cae20e82..68b4e532 100644 --- a/themes/ocean-mist-light.yaml +++ b/themes/ocean-mist-light.yaml @@ -2,7 +2,7 @@ name: "Ocean Mist Light" source: marketplace_id: "MalikHaziq.ocean-mist" version: "0.2.1" - installs: 247 + installs: 248 author: "Malik Haziq" repo: "https://github.com/Malik-Haziq/Ocean-Mist-Vscode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=MalikHaziq.ocean-mist" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 211 + pair: null contrast: fg: 76.2 black: 0 diff --git a/themes/ocean-mist.yaml b/themes/ocean-mist.yaml index 0a912f0e..563730c9 100644 --- a/themes/ocean-mist.yaml +++ b/themes/ocean-mist.yaml @@ -2,7 +2,7 @@ name: "Ocean Mist" source: marketplace_id: "MalikHaziq.ocean-mist" version: "0.2.1" - installs: 247 + installs: 248 author: "Malik Haziq" repo: "https://github.com/Malik-Haziq/Ocean-Mist-Vscode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=MalikHaziq.ocean-mist" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 213 + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/ocean-night.yaml b/themes/ocean-night.yaml index 1b418288..4d74a34c 100644 --- a/themes/ocean-night.yaml +++ b/themes/ocean-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 242 + pair: null contrast: fg: 96.6 black: 0 diff --git a/themes/ocean-theme.yaml b/themes/ocean-theme.yaml index e23fc82e..ab946146 100644 --- a/themes/ocean-theme.yaml +++ b/themes/ocean-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 273 + pair: null contrast: fg: 43.3 black: 0 diff --git a/themes/ocean.yaml b/themes/ocean.yaml index 46a413ef..d7bb80ad 100644 --- a/themes/ocean.yaml +++ b/themes/ocean.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 245 + pair: null contrast: fg: 58.3 black: 16.7 diff --git a/themes/oceana.yaml b/themes/oceana.yaml index 3906dfca..92cdb5c7 100644 --- a/themes/oceana.yaml +++ b/themes/oceana.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 196 + pair: null contrast: fg: 78.2 black: 0 diff --git a/themes/oceanic-solitude.yaml b/themes/oceanic-solitude.yaml index d7e10e2a..7925ec36 100644 --- a/themes/oceanic-solitude.yaml +++ b/themes/oceanic-solitude.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 48.1 black: 0 diff --git a/themes/oceanic-wind-cool.yaml b/themes/oceanic-wind-cool.yaml index 3e78827e..5bad4536 100644 --- a/themes/oceanic-wind-cool.yaml +++ b/themes/oceanic-wind-cool.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 88.9 black: 0 diff --git a/themes/oceanic-wind-warm.yaml b/themes/oceanic-wind-warm.yaml index b0b37377..6d63d4d1 100644 --- a/themes/oceanic-wind-warm.yaml +++ b/themes/oceanic-wind-warm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 89.4 black: 0 diff --git a/themes/oceanic-wind.yaml b/themes/oceanic-wind.yaml index 0f1fce96..4747b22e 100644 --- a/themes/oceanic-wind.yaml +++ b/themes/oceanic-wind.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 89.2 black: 0 diff --git a/themes/oceans-of-andromeda.yaml b/themes/oceans-of-andromeda.yaml index ae3c42bb..f4b21ea8 100644 --- a/themes/oceans-of-andromeda.yaml +++ b/themes/oceans-of-andromeda.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 203 + pair: null contrast: fg: 42.9 black: 0 diff --git a/themes/ochre-dark-midnight.yaml b/themes/ochre-dark-midnight.yaml index 9a1d92db..7d46121d 100644 --- a/themes/ochre-dark-midnight.yaml +++ b/themes/ochre-dark-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 101.2 black: 0 diff --git a/themes/ochre-dark.yaml b/themes/ochre-dark.yaml index 3054c20a..15381870 100644 --- a/themes/ochre-dark.yaml +++ b/themes/ochre-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: "Ochre Light" contrast: fg: 100.3 black: 0 diff --git a/themes/ochre-light-snow.yaml b/themes/ochre-light-snow.yaml index 6a832183..f656ba97 100644 --- a/themes/ochre-light-snow.yaml +++ b/themes/ochre-light-snow.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 101.7 black: 0 diff --git a/themes/ochre-light.yaml b/themes/ochre-light.yaml index 3d103b06..0a1b4e99 100644 --- a/themes/ochre-light.yaml +++ b/themes/ochre-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: 80 + pair: "Ochre Dark" contrast: fg: 92.7 black: 0 diff --git a/themes/octalide.yaml b/themes/octalide.yaml index 5b90c769..de953e8b 100644 --- a/themes/octalide.yaml +++ b/themes/octalide.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 65.7 black: 0 diff --git a/themes/octo-dark-one.yaml b/themes/octo-dark-one.yaml index dc3989e1..4700cc73 100644 --- a/themes/octo-dark-one.yaml +++ b/themes/octo-dark-one.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 76.3 black: 0 diff --git a/themes/octo-light.yaml b/themes/octo-light.yaml index 19aae6a6..e86474f9 100644 --- a/themes/octo-light.yaml +++ b/themes/octo-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 100.7 black: 100.7 diff --git a/themes/octopus-theme.yaml b/themes/octopus-theme.yaml index 0dfcfa8a..d6992f7c 100644 --- a/themes/octopus-theme.yaml +++ b/themes/octopus-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 78.6 black: 0 diff --git a/themes/odyssey-night.yaml b/themes/odyssey-night.yaml index d6f18107..d08a1981 100644 --- a/themes/odyssey-night.yaml +++ b/themes/odyssey-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 83.3 black: 9.1 diff --git a/themes/office-light.yaml b/themes/office-light.yaml index cb8af8e8..4a7159a3 100644 --- a/themes/office-light.yaml +++ b/themes/office-light.yaml @@ -2,7 +2,7 @@ name: "Office Light" source: marketplace_id: "PowerTech.powerthemes" version: "23.1.31" - installs: 6957 + installs: 6961 author: "PowerTech" repo: "https://github.com/powertech-center/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=PowerTech.powerthemes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: "Office Dark" contrast: fg: 106 black: 106 diff --git a/themes/ogone.yaml b/themes/ogone.yaml index 08edc41f..5db58449 100644 --- a/themes/ogone.yaml +++ b/themes/ogone.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 304 + pair: null contrast: fg: 69.7 black: 0 diff --git a/themes/oh-dark-pro.yaml b/themes/oh-dark-pro.yaml index fd1e1479..cb47fb9c 100644 --- a/themes/oh-dark-pro.yaml +++ b/themes/oh-dark-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 59.6 black: 9.1 diff --git a/themes/ohiostate-fork.yaml b/themes/ohiostate-fork.yaml index 40d07a7d..0eb39872 100644 --- a/themes/ohiostate-fork.yaml +++ b/themes/ohiostate-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 10 + pair: null contrast: fg: 15.8 black: 0 diff --git a/themes/ohled-aliceblue.yaml b/themes/ohled-aliceblue.yaml index 6781fb38..0e84f3bd 100644 --- a/themes/ohled-aliceblue.yaml +++ b/themes/ohled-aliceblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_AliceBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 102.5 black: 102.5 diff --git a/themes/ohled-antiquewhite.yaml b/themes/ohled-antiquewhite.yaml index 59ba7e1e..bba76743 100644 --- a/themes/ohled-antiquewhite.yaml +++ b/themes/ohled-antiquewhite.yaml @@ -2,7 +2,7 @@ name: "OhLED_AntiqueWhite" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 96.1 black: 96.1 diff --git a/themes/ohled-aqua.yaml b/themes/ohled-aqua.yaml deleted file mode 100644 index 3749c361..00000000 --- a/themes/ohled-aqua.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "OhLED_Aqua" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10961 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#00FFFF" - black: "#00FFFF" - red: "#00BBBB" - green: "#00CCCC" - yellow: "#009999" - blue: "#00EEEE" - magenta: "#00DDDD" - cyan: "#00AAAA" - white: "#008888" - brightBlack: "#00FFFF" - brightRed: "#00BBBB" - brightGreen: "#00CCCC" - brightYellow: "#009999" - brightBlue: "#00EEEE" - brightMagenta: "#00DDDD" - brightCyan: "#00AAAA" - brightWhite: "#008888" -meta: - mode: "dark" - accent: "cyan" - hue: null - contrast: - fg: 92.2 - black: 92.2 - red: 55.8 - green: 64.4 - yellow: 39.8 - blue: 82.6 - magenta: 73.3 - cyan: 47.6 - white: 32.5 - brightBlack: 92.2 - brightRed: 55.8 - brightGreen: 64.4 - brightYellow: 39.8 - brightBlue: 82.6 - brightMagenta: 73.3 - brightCyan: 47.6 - brightWhite: 32.5 diff --git a/themes/ohled-aquamarine.yaml b/themes/ohled-aquamarine.yaml index 38f50fae..79692911 100644 --- a/themes/ohled-aquamarine.yaml +++ b/themes/ohled-aquamarine.yaml @@ -2,7 +2,7 @@ name: "OhLED_AquaMarine" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 93.3 black: 93.3 diff --git a/themes/ohled-azure.yaml b/themes/ohled-azure.yaml index f554d733..dde593a0 100644 --- a/themes/ohled-azure.yaml +++ b/themes/ohled-azure.yaml @@ -2,7 +2,7 @@ name: "OhLED_Azure" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "cyan" hue: null + pair: null contrast: fg: 105.8 black: 105.8 diff --git a/themes/ohled-beige.yaml b/themes/ohled-beige.yaml index e83ff4ae..d9f72e9f 100644 --- a/themes/ohled-beige.yaml +++ b/themes/ohled-beige.yaml @@ -2,7 +2,7 @@ name: "OhLED_Beige" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 100.2 black: 100.2 diff --git a/themes/ohled-bisque.yaml b/themes/ohled-bisque.yaml index b3378bb9..a98e0c88 100644 --- a/themes/ohled-bisque.yaml +++ b/themes/ohled-bisque.yaml @@ -2,7 +2,7 @@ name: "OhLED_Bisque" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 93 black: 93 diff --git a/themes/ohled-blanchedalmond.yaml b/themes/ohled-blanchedalmond.yaml index bf94e803..7ff2e576 100644 --- a/themes/ohled-blanchedalmond.yaml +++ b/themes/ohled-blanchedalmond.yaml @@ -2,7 +2,7 @@ name: "OhLED_BlanchedAlmond" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 96.5 black: 96.5 diff --git a/themes/ohled-blue.yaml b/themes/ohled-blue.yaml index 44944067..db5947f3 100644 --- a/themes/ohled-blue.yaml +++ b/themes/ohled-blue.yaml @@ -2,7 +2,7 @@ name: "OhLED_Blue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 30 black: 30 diff --git a/themes/ohled-blueviolet.yaml b/themes/ohled-blueviolet.yaml index 569093b1..0edcbc1e 100644 --- a/themes/ohled-blueviolet.yaml +++ b/themes/ohled-blueviolet.yaml @@ -2,7 +2,7 @@ name: "OhLED_BlueViolet" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 30.1 black: 30.1 diff --git a/themes/ohled-brown.yaml b/themes/ohled-brown.yaml index 18cb534e..13d20f93 100644 --- a/themes/ohled-brown.yaml +++ b/themes/ohled-brown.yaml @@ -2,7 +2,7 @@ name: "OhLED_Brown" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 29.8 black: 29.8 diff --git a/themes/ohled-burlywood.yaml b/themes/ohled-burlywood.yaml index ffc18b6f..8d4ce444 100644 --- a/themes/ohled-burlywood.yaml +++ b/themes/ohled-burlywood.yaml @@ -2,7 +2,7 @@ name: "OhLED_BurlyWood" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 67.6 black: 67.6 diff --git a/themes/ohled-cadetblue.yaml b/themes/ohled-cadetblue.yaml index 531d821e..c95c18d7 100644 --- a/themes/ohled-cadetblue.yaml +++ b/themes/ohled-cadetblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_CadetBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "cyan" hue: null + pair: null contrast: fg: 44.5 black: 44.5 diff --git a/themes/ohled-chartreuse.yaml b/themes/ohled-chartreuse.yaml index b94b744d..3b8afef7 100644 --- a/themes/ohled-chartreuse.yaml +++ b/themes/ohled-chartreuse.yaml @@ -2,7 +2,7 @@ name: "OhLED_Chartreuse" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 89.7 black: 89.7 diff --git a/themes/ohled-chocolate.yaml b/themes/ohled-chocolate.yaml index 7add4deb..aeba7d38 100644 --- a/themes/ohled-chocolate.yaml +++ b/themes/ohled-chocolate.yaml @@ -2,7 +2,7 @@ name: "OhLED_Chocolate" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 38.3 black: 38.3 diff --git a/themes/ohled-coral.yaml b/themes/ohled-coral.yaml index 103004b3..660b4385 100644 --- a/themes/ohled-coral.yaml +++ b/themes/ohled-coral.yaml @@ -2,7 +2,7 @@ name: "OhLED_Coral" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 53.5 black: 53.5 diff --git a/themes/ohled-cornflowerblue.yaml b/themes/ohled-cornflowerblue.yaml index ef826157..0cad322b 100644 --- a/themes/ohled-cornflowerblue.yaml +++ b/themes/ohled-cornflowerblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_CornflowerBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 45.7 black: 45.7 diff --git a/themes/ohled-cornsilk.yaml b/themes/ohled-cornsilk.yaml index 656706ff..7bd4477b 100644 --- a/themes/ohled-cornsilk.yaml +++ b/themes/ohled-cornsilk.yaml @@ -2,7 +2,7 @@ name: "OhLED_Cornsilk" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 103 black: 103 diff --git a/themes/ohled-crimson.yaml b/themes/ohled-crimson.yaml index 766e373d..14b842fd 100644 --- a/themes/ohled-crimson.yaml +++ b/themes/ohled-crimson.yaml @@ -2,7 +2,7 @@ name: "OhLED_Crimson" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 31.1 black: 31.1 diff --git a/themes/ohled-darkblue.yaml b/themes/ohled-darkblue.yaml index a506fcf9..6dc19dfe 100644 --- a/themes/ohled-darkblue.yaml +++ b/themes/ohled-darkblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 29.3 black: 29.3 diff --git a/themes/ohled-darkcyan.yaml b/themes/ohled-darkcyan.yaml index b7b2c80f..96d649c7 100644 --- a/themes/ohled-darkcyan.yaml +++ b/themes/ohled-darkcyan.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkCyan" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "cyan" hue: null + pair: null contrast: fg: 33.7 black: 33.7 diff --git a/themes/ohled-darkgoldenrod.yaml b/themes/ohled-darkgoldenrod.yaml index aa214a06..95239221 100644 --- a/themes/ohled-darkgoldenrod.yaml +++ b/themes/ohled-darkgoldenrod.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkGoldenRod" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 42.1 black: 42.1 diff --git a/themes/ohled-darkgray.yaml b/themes/ohled-darkgray.yaml index 297feaab..8c4547c3 100644 --- a/themes/ohled-darkgray.yaml +++ b/themes/ohled-darkgray.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkGray" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 55.7 black: 55.7 diff --git a/themes/ohled-darkgreen.yaml b/themes/ohled-darkgreen.yaml index 809811cb..4a035cef 100644 --- a/themes/ohled-darkgreen.yaml +++ b/themes/ohled-darkgreen.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkGreen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 29.5 black: 29.5 diff --git a/themes/ohled-darkkhaki.yaml b/themes/ohled-darkkhaki.yaml index 643d921f..a1340165 100644 --- a/themes/ohled-darkkhaki.yaml +++ b/themes/ohled-darkkhaki.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkKhaki" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 61.9 black: 61.9 diff --git a/themes/ohled-darkmagenta.yaml b/themes/ohled-darkmagenta.yaml index 97c9472f..ad61ee0d 100644 --- a/themes/ohled-darkmagenta.yaml +++ b/themes/ohled-darkmagenta.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkMagenta" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 29.7 black: 29.7 diff --git a/themes/ohled-darkolivegreen.yaml b/themes/ohled-darkolivegreen.yaml index 0bcbfcbc..4fd7980c 100644 --- a/themes/ohled-darkolivegreen.yaml +++ b/themes/ohled-darkolivegreen.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkOliveGreen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 29.6 black: 29.6 diff --git a/themes/ohled-darkorange.yaml b/themes/ohled-darkorange.yaml index deb630af..3d18eedc 100644 --- a/themes/ohled-darkorange.yaml +++ b/themes/ohled-darkorange.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkOrange" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 56.7 black: 56.7 diff --git a/themes/ohled-darkorchid.yaml b/themes/ohled-darkorchid.yaml index 4f9d1704..a3ef84fd 100644 --- a/themes/ohled-darkorchid.yaml +++ b/themes/ohled-darkorchid.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkOrchid" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 30.1 black: 30.1 diff --git a/themes/ohled-darkred.yaml b/themes/ohled-darkred.yaml index e3f43573..b5449bcd 100644 --- a/themes/ohled-darkred.yaml +++ b/themes/ohled-darkred.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkRed" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 29.8 black: 29.8 diff --git a/themes/ohled-darksalmon.yaml b/themes/ohled-darksalmon.yaml index 84edd7ff..7afd628e 100644 --- a/themes/ohled-darksalmon.yaml +++ b/themes/ohled-darksalmon.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkSalmon" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 56.8 black: 56.8 diff --git a/themes/ohled-darkseagreen.yaml b/themes/ohled-darkseagreen.yaml index 6d1da2a8..9ab246ae 100644 --- a/themes/ohled-darkseagreen.yaml +++ b/themes/ohled-darkseagreen.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkSeaGreen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 60 black: 60 diff --git a/themes/ohled-darkslateblue.yaml b/themes/ohled-darkslateblue.yaml index b2debfb7..011914ff 100644 --- a/themes/ohled-darkslateblue.yaml +++ b/themes/ohled-darkslateblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkSlateBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 29.3 black: 29.3 diff --git a/themes/ohled-darkslategray.yaml b/themes/ohled-darkslategray.yaml index 17ff88a1..a9285346 100644 --- a/themes/ohled-darkslategray.yaml +++ b/themes/ohled-darkslategray.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkSlateGray" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "cyan" hue: null + pair: null contrast: fg: 29.5 black: 29.5 diff --git a/themes/ohled-darkturquoise.yaml b/themes/ohled-darkturquoise.yaml index 5753c006..90b6afa0 100644 --- a/themes/ohled-darkturquoise.yaml +++ b/themes/ohled-darkturquoise.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkTurquoise" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "cyan" hue: null + pair: null contrast: fg: 65.6 black: 65.6 diff --git a/themes/ohled-darkviolet.yaml b/themes/ohled-darkviolet.yaml index 635f19d4..61d6adeb 100644 --- a/themes/ohled-darkviolet.yaml +++ b/themes/ohled-darkviolet.yaml @@ -2,7 +2,7 @@ name: "OhLED_DarkViolet" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 30.2 black: 30.2 diff --git a/themes/ohled-deeppink.yaml b/themes/ohled-deeppink.yaml index ae190519..dec734cf 100644 --- a/themes/ohled-deeppink.yaml +++ b/themes/ohled-deeppink.yaml @@ -2,7 +2,7 @@ name: "OhLED_DeepPink" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 40.1 black: 40.1 diff --git a/themes/ohled-deepskyblue.yaml b/themes/ohled-deepskyblue.yaml index d0508abe..f7746c92 100644 --- a/themes/ohled-deepskyblue.yaml +++ b/themes/ohled-deepskyblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_DeepSkyBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 61.4 black: 61.4 diff --git a/themes/ohled-dimgray.yaml b/themes/ohled-dimgray.yaml index f184baa2..a5ff89c3 100644 --- a/themes/ohled-dimgray.yaml +++ b/themes/ohled-dimgray.yaml @@ -2,7 +2,7 @@ name: "OhLED_DimGray" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 29.2 black: 29.2 diff --git a/themes/ohled-dodgerblue.yaml b/themes/ohled-dodgerblue.yaml index 59e294ee..999a79f6 100644 --- a/themes/ohled-dodgerblue.yaml +++ b/themes/ohled-dodgerblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_DodgerBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 42.7 black: 42.7 diff --git a/themes/ohled-firebrick.yaml b/themes/ohled-firebrick.yaml index b10854cf..90040bfa 100644 --- a/themes/ohled-firebrick.yaml +++ b/themes/ohled-firebrick.yaml @@ -2,7 +2,7 @@ name: "OhLED_FireBrick" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 30 black: 30 diff --git a/themes/ohled-forestgreen.yaml b/themes/ohled-forestgreen.yaml index 5a716d53..dc1a4361 100644 --- a/themes/ohled-forestgreen.yaml +++ b/themes/ohled-forestgreen.yaml @@ -2,7 +2,7 @@ name: "OhLED_ForestGreen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 31.7 black: 31.7 diff --git a/themes/ohled-fuchsia.yaml b/themes/ohled-fuchsia.yaml deleted file mode 100644 index 443178e2..00000000 --- a/themes/ohled-fuchsia.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "OhLED_Fuchsia" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10961 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FF00FF" - black: "#FF00FF" - red: "#BB00BB" - green: "#CC00CC" - yellow: "#990099" - blue: "#EE00EE" - magenta: "#DD00DD" - cyan: "#AA00AA" - white: "#880088" - brightBlack: "#FF00FF" - brightRed: "#BB00BB" - brightGreen: "#CC00CC" - brightYellow: "#990099" - brightBlue: "#EE00EE" - brightMagenta: "#DD00DD" - brightCyan: "#AA00AA" - brightWhite: "#880088" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 46.2 - black: 46.2 - red: 26.9 - green: 31.4 - yellow: 18.4 - blue: 41.1 - magenta: 36.2 - cyan: 22.5 - white: 14.4 - brightBlack: 46.2 - brightRed: 26.9 - brightGreen: 31.4 - brightYellow: 18.4 - brightBlue: 41.1 - brightMagenta: 36.2 - brightCyan: 22.5 - brightWhite: 14.4 diff --git a/themes/ohled-gainsboro.yaml b/themes/ohled-gainsboro.yaml index d1ccd0f9..ddc460f9 100644 --- a/themes/ohled-gainsboro.yaml +++ b/themes/ohled-gainsboro.yaml @@ -2,7 +2,7 @@ name: "OhLED_Gainsboro" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 85.4 black: 85.4 diff --git a/themes/ohled-ghostwhite.yaml b/themes/ohled-ghostwhite.yaml index 78ea4993..76cc1f8a 100644 --- a/themes/ohled-ghostwhite.yaml +++ b/themes/ohled-ghostwhite.yaml @@ -2,7 +2,7 @@ name: "OhLED_GhostWhite" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 103.6 black: 103.6 diff --git a/themes/ohled-gold.yaml b/themes/ohled-gold.yaml index ed065006..c8e0483d 100644 --- a/themes/ohled-gold.yaml +++ b/themes/ohled-gold.yaml @@ -2,7 +2,7 @@ name: "OhLED_Gold" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 84.3 black: 84.3 diff --git a/themes/ohled-goldenrod.yaml b/themes/ohled-goldenrod.yaml index e065bdde..74e2a10a 100644 --- a/themes/ohled-goldenrod.yaml +++ b/themes/ohled-goldenrod.yaml @@ -2,7 +2,7 @@ name: "OhLED_GoldenRod" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 58.3 black: 58.3 diff --git a/themes/ohled-gray.yaml b/themes/ohled-gray.yaml index 32e44420..57b5c622 100644 --- a/themes/ohled-gray.yaml +++ b/themes/ohled-gray.yaml @@ -2,7 +2,7 @@ name: "OhLED_Gray" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 34.8 black: 34.8 diff --git a/themes/ohled-green.yaml b/themes/ohled-green.yaml index b250451d..465bfbdd 100644 --- a/themes/ohled-green.yaml +++ b/themes/ohled-green.yaml @@ -2,7 +2,7 @@ name: "OhLED_Green" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 29.9 black: 29.9 diff --git a/themes/ohled-greenyellow.yaml b/themes/ohled-greenyellow.yaml index 83a6a7bb..7a0e0afe 100644 --- a/themes/ohled-greenyellow.yaml +++ b/themes/ohled-greenyellow.yaml @@ -2,7 +2,7 @@ name: "OhLED_GreenYellow" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 93.2 black: 93.2 diff --git a/themes/ohled-honeydew.yaml b/themes/ohled-honeydew.yaml index 3f8e3927..51c2174e 100644 --- a/themes/ohled-honeydew.yaml +++ b/themes/ohled-honeydew.yaml @@ -2,7 +2,7 @@ name: "OhLED_HoneyDew" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 105.1 black: 105.1 diff --git a/themes/ohled-hotpink.yaml b/themes/ohled-hotpink.yaml index 0bfd2df3..e604e2a6 100644 --- a/themes/ohled-hotpink.yaml +++ b/themes/ohled-hotpink.yaml @@ -2,7 +2,7 @@ name: "OhLED_HotPink" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 51.1 black: 51.1 diff --git a/themes/ohled-indianred.yaml b/themes/ohled-indianred.yaml index 9f9cccd1..e6125305 100644 --- a/themes/ohled-indianred.yaml +++ b/themes/ohled-indianred.yaml @@ -2,7 +2,7 @@ name: "OhLED_IndianRed" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 35.1 black: 35.1 diff --git a/themes/ohled-indigo.yaml b/themes/ohled-indigo.yaml index 93790df5..90e23f34 100644 --- a/themes/ohled-indigo.yaml +++ b/themes/ohled-indigo.yaml @@ -2,7 +2,7 @@ name: "OhLED_Indigo" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 29.4 black: 29.4 diff --git a/themes/ohled-ivory.yaml b/themes/ohled-ivory.yaml index 3322adca..4a2de1f8 100644 --- a/themes/ohled-ivory.yaml +++ b/themes/ohled-ivory.yaml @@ -2,7 +2,7 @@ name: "OhLED_Ivory" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.2 black: 107.2 diff --git a/themes/ohled-khaki.yaml b/themes/ohled-khaki.yaml index ca9b91ac..2053dbea 100644 --- a/themes/ohled-khaki.yaml +++ b/themes/ohled-khaki.yaml @@ -2,7 +2,7 @@ name: "OhLED_Khaki" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 90 black: 90 diff --git a/themes/ohled-lavender.yaml b/themes/ohled-lavender.yaml index 8821daa7..49803aa4 100644 --- a/themes/ohled-lavender.yaml +++ b/themes/ohled-lavender.yaml @@ -2,7 +2,7 @@ name: "OhLED_Lavender" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 92.6 black: 92.6 diff --git a/themes/ohled-lavenderblush.yaml b/themes/ohled-lavenderblush.yaml index 667ec75b..50370896 100644 --- a/themes/ohled-lavenderblush.yaml +++ b/themes/ohled-lavenderblush.yaml @@ -2,7 +2,7 @@ name: "OhLED_LavenderBlush" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 100.4 black: 100.4 diff --git a/themes/ohled-lawngreen.yaml b/themes/ohled-lawngreen.yaml index aa3ef7f8..078456c5 100644 --- a/themes/ohled-lawngreen.yaml +++ b/themes/ohled-lawngreen.yaml @@ -2,7 +2,7 @@ name: "OhLED_LawnGreen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 87.9 black: 87.9 diff --git a/themes/ohled-lemonchiffon.yaml b/themes/ohled-lemonchiffon.yaml index 2f8dceec..10e2ec21 100644 --- a/themes/ohled-lemonchiffon.yaml +++ b/themes/ohled-lemonchiffon.yaml @@ -2,7 +2,7 @@ name: "OhLED_LemonChiffon" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 103.4 black: 103.4 diff --git a/themes/ohled-lightblue.yaml b/themes/ohled-lightblue.yaml index d64ce801..a104dc75 100644 --- a/themes/ohled-lightblue.yaml +++ b/themes/ohled-lightblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_LightBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "blue" hue: null + pair: null contrast: fg: 78.7 black: 78.7 diff --git a/themes/ohled-lightcoral.yaml b/themes/ohled-lightcoral.yaml index 759bf344..041883af 100644 --- a/themes/ohled-lightcoral.yaml +++ b/themes/ohled-lightcoral.yaml @@ -2,7 +2,7 @@ name: "OhLED_LightCoral" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 51.7 black: 51.7 diff --git a/themes/ohled-lightcyan.yaml b/themes/ohled-lightcyan.yaml index 5b53200e..4a6e8dab 100644 --- a/themes/ohled-lightcyan.yaml +++ b/themes/ohled-lightcyan.yaml @@ -2,7 +2,7 @@ name: "OhLED_LightCyan" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "cyan" hue: null + pair: null contrast: fg: 103.8 black: 103.8 diff --git a/themes/ohled-lightgoldenrodyellow.yaml b/themes/ohled-lightgoldenrodyellow.yaml index dffa25c9..d7780606 100644 --- a/themes/ohled-lightgoldenrodyellow.yaml +++ b/themes/ohled-lightgoldenrodyellow.yaml @@ -2,7 +2,7 @@ name: "OhLED_LightGoldenRodYellow" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 102.9 black: 102.9 diff --git a/themes/ohled-lightgray.yaml b/themes/ohled-lightgray.yaml index 5549fdb6..e598c8e1 100644 --- a/themes/ohled-lightgray.yaml +++ b/themes/ohled-lightgray.yaml @@ -2,7 +2,7 @@ name: "OhLED_LightGray" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 79.9 black: 79.9 diff --git a/themes/ohled-lightgreen.yaml b/themes/ohled-lightgreen.yaml index bf6a378a..9657a017 100644 --- a/themes/ohled-lightgreen.yaml +++ b/themes/ohled-lightgreen.yaml @@ -2,7 +2,7 @@ name: "OhLED_LightGreen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 83.5 black: 83.5 diff --git a/themes/ohled-lightpink.yaml b/themes/ohled-lightpink.yaml index 37f16b2c..d21cf251 100644 --- a/themes/ohled-lightpink.yaml +++ b/themes/ohled-lightpink.yaml @@ -2,7 +2,7 @@ name: "OhLED_LightPink" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 74.2 black: 74.2 diff --git a/themes/ohled-lightsalmon.yaml b/themes/ohled-lightsalmon.yaml index bede57a7..342a93e8 100644 --- a/themes/ohled-lightsalmon.yaml +++ b/themes/ohled-lightsalmon.yaml @@ -2,7 +2,7 @@ name: "OhLED_LightSalmon" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 64.2 black: 64.2 diff --git a/themes/ohled-lightseagreen.yaml b/themes/ohled-lightseagreen.yaml index c1fcd615..663d4eba 100644 --- a/themes/ohled-lightseagreen.yaml +++ b/themes/ohled-lightseagreen.yaml @@ -2,7 +2,7 @@ name: "OhLED_LightSeaGreen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "cyan" hue: null + pair: null contrast: fg: 51.3 black: 51.3 diff --git a/themes/ohled-lightskyblue.yaml b/themes/ohled-lightskyblue.yaml index e27a514f..6d8f22a4 100644 --- a/themes/ohled-lightskyblue.yaml +++ b/themes/ohled-lightskyblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_LightSkyBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 72 black: 72 diff --git a/themes/ohled-lightslategray.yaml b/themes/ohled-lightslategray.yaml index f534ec22..b105b971 100644 --- a/themes/ohled-lightslategray.yaml +++ b/themes/ohled-lightslategray.yaml @@ -2,7 +2,7 @@ name: "OhLED_LightSlateGray" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 37.7 black: 37.7 diff --git a/themes/ohled-lightsteelblue.yaml b/themes/ohled-lightsteelblue.yaml index f47894f8..c9f850a1 100644 --- a/themes/ohled-lightsteelblue.yaml +++ b/themes/ohled-lightsteelblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_LightSteelBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 69.8 black: 69.8 diff --git a/themes/ohled-lightyellow.yaml b/themes/ohled-lightyellow.yaml index 4fb679dc..a130ba56 100644 --- a/themes/ohled-lightyellow.yaml +++ b/themes/ohled-lightyellow.yaml @@ -2,7 +2,7 @@ name: "OhLED_LightYellow" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 106.5 black: 106.5 diff --git a/themes/ohled-lime.yaml b/themes/ohled-lime.yaml index 6a3a46cc..56c9f5d4 100644 --- a/themes/ohled-lime.yaml +++ b/themes/ohled-lime.yaml @@ -2,7 +2,7 @@ name: "OhLED_Lime" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 86.5 black: 86.5 diff --git a/themes/ohled-limegreen.yaml b/themes/ohled-limegreen.yaml index c048bae1..79537cad 100644 --- a/themes/ohled-limegreen.yaml +++ b/themes/ohled-limegreen.yaml @@ -2,7 +2,7 @@ name: "OhLED_LimeGreen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 61.4 black: 61.4 diff --git a/themes/ohled-linen.yaml b/themes/ohled-linen.yaml index 39c29145..109df1d4 100644 --- a/themes/ohled-linen.yaml +++ b/themes/ohled-linen.yaml @@ -2,7 +2,7 @@ name: "OhLED_Linen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 99 black: 99 diff --git a/themes/ohled-maroon.yaml b/themes/ohled-maroon.yaml index bba750aa..20e4610e 100644 --- a/themes/ohled-maroon.yaml +++ b/themes/ohled-maroon.yaml @@ -2,7 +2,7 @@ name: "OhLED_Maroon" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 29.6 black: 29.6 diff --git a/themes/ohled-mediumaquamarine.yaml b/themes/ohled-mediumaquamarine.yaml index 78bacd67..473f9050 100644 --- a/themes/ohled-mediumaquamarine.yaml +++ b/themes/ohled-mediumaquamarine.yaml @@ -2,7 +2,7 @@ name: "OhLED_MediumAquaMarine" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 65.7 black: 65.7 diff --git a/themes/ohled-mediumblue.yaml b/themes/ohled-mediumblue.yaml index 341ad089..c246b312 100644 --- a/themes/ohled-mediumblue.yaml +++ b/themes/ohled-mediumblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_MediumBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 29.9 black: 29.9 diff --git a/themes/ohled-mediumorchid.yaml b/themes/ohled-mediumorchid.yaml index 1502a1f5..a4daaaed 100644 --- a/themes/ohled-mediumorchid.yaml +++ b/themes/ohled-mediumorchid.yaml @@ -2,7 +2,7 @@ name: "OhLED_MediumOrchid" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 35.5 black: 35.5 diff --git a/themes/ohled-mediumpurple.yaml b/themes/ohled-mediumpurple.yaml index 200239b1..181cca2f 100644 --- a/themes/ohled-mediumpurple.yaml +++ b/themes/ohled-mediumpurple.yaml @@ -2,7 +2,7 @@ name: "OhLED_MediumPurple" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 36.7 black: 36.7 diff --git a/themes/ohled-mediumseagreen.yaml b/themes/ohled-mediumseagreen.yaml index 18f493f0..a83d5381 100644 --- a/themes/ohled-mediumseagreen.yaml +++ b/themes/ohled-mediumseagreen.yaml @@ -2,7 +2,7 @@ name: "OhLED_MediumSeaGreen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 50.4 black: 50.4 diff --git a/themes/ohled-mediumslateblue.yaml b/themes/ohled-mediumslateblue.yaml index 77aa53a7..5db5f97a 100644 --- a/themes/ohled-mediumslateblue.yaml +++ b/themes/ohled-mediumslateblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_MediumSlateBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 33.4 black: 33.4 diff --git a/themes/ohled-mediumspringgreen.yaml b/themes/ohled-mediumspringgreen.yaml index 7a5ff79e..6e4099b3 100644 --- a/themes/ohled-mediumspringgreen.yaml +++ b/themes/ohled-mediumspringgreen.yaml @@ -2,7 +2,7 @@ name: "OhLED_MediumSpringGreen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 85.5 black: 85.5 diff --git a/themes/ohled-mediumturquoise.yaml b/themes/ohled-mediumturquoise.yaml index f28518c3..afe3584f 100644 --- a/themes/ohled-mediumturquoise.yaml +++ b/themes/ohled-mediumturquoise.yaml @@ -2,7 +2,7 @@ name: "OhLED_MediumTurquoise" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "cyan" hue: null + pair: null contrast: fg: 67.7 black: 67.7 diff --git a/themes/ohled-mediumvioletred.yaml b/themes/ohled-mediumvioletred.yaml index ffbe7636..17549b3e 100644 --- a/themes/ohled-mediumvioletred.yaml +++ b/themes/ohled-mediumvioletred.yaml @@ -2,7 +2,7 @@ name: "OhLED_MediumVioletRed" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 30.6 black: 30.6 diff --git a/themes/ohled-midnightblue.yaml b/themes/ohled-midnightblue.yaml index c1ca14a5..1c346e02 100644 --- a/themes/ohled-midnightblue.yaml +++ b/themes/ohled-midnightblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_MidnightBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 29.4 black: 29.4 diff --git a/themes/ohled-mintcream.yaml b/themes/ohled-mintcream.yaml index 1e30fc08..1820e105 100644 --- a/themes/ohled-mintcream.yaml +++ b/themes/ohled-mintcream.yaml @@ -2,7 +2,7 @@ name: "OhLED_MintCream" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 106.3 black: 106.3 diff --git a/themes/ohled-mistyrose.yaml b/themes/ohled-mistyrose.yaml index 6c351890..9895f3eb 100644 --- a/themes/ohled-mistyrose.yaml +++ b/themes/ohled-mistyrose.yaml @@ -2,7 +2,7 @@ name: "OhLED_MistyRose" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 94.1 black: 94.1 diff --git a/themes/ohled-moccasin.yaml b/themes/ohled-moccasin.yaml index 0759a8f7..a716102e 100644 --- a/themes/ohled-moccasin.yaml +++ b/themes/ohled-moccasin.yaml @@ -2,7 +2,7 @@ name: "OhLED_Moccasin" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 92.5 black: 92.5 diff --git a/themes/ohled-navajowhite.yaml b/themes/ohled-navajowhite.yaml index 589d7254..db0ff508 100644 --- a/themes/ohled-navajowhite.yaml +++ b/themes/ohled-navajowhite.yaml @@ -2,7 +2,7 @@ name: "OhLED_NavajoWhite" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 89.6 black: 89.6 diff --git a/themes/ohled-navy.yaml b/themes/ohled-navy.yaml index 1d3f5abf..2f75a53e 100644 --- a/themes/ohled-navy.yaml +++ b/themes/ohled-navy.yaml @@ -2,7 +2,7 @@ name: "OhLED_Navy" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 29.3 black: 29.3 diff --git a/themes/ohled-oldlace.yaml b/themes/ohled-oldlace.yaml index 7e3ace1e..46b963d1 100644 --- a/themes/ohled-oldlace.yaml +++ b/themes/ohled-oldlace.yaml @@ -2,7 +2,7 @@ name: "OhLED_OldLace" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 101.8 black: 101.8 diff --git a/themes/ohled-olive.yaml b/themes/ohled-olive.yaml index d56b93f8..0c0cbff4 100644 --- a/themes/ohled-olive.yaml +++ b/themes/ohled-olive.yaml @@ -2,7 +2,7 @@ name: "OhLED_Olive" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 32.9 black: 32.9 diff --git a/themes/ohled-olivedrab.yaml b/themes/ohled-olivedrab.yaml index ca60112b..53713f69 100644 --- a/themes/ohled-olivedrab.yaml +++ b/themes/ohled-olivedrab.yaml @@ -2,7 +2,7 @@ name: "OhLED_OliveDrab" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 36.2 black: 36.2 diff --git a/themes/ohled-orange.yaml b/themes/ohled-orange.yaml index 8dc75d02..3e3cdea9 100644 --- a/themes/ohled-orange.yaml +++ b/themes/ohled-orange.yaml @@ -2,7 +2,7 @@ name: "OhLED_Orange" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 64.7 black: 64.7 diff --git a/themes/ohled-orangered.yaml b/themes/ohled-orangered.yaml index ae455e43..1b8283f0 100644 --- a/themes/ohled-orangered.yaml +++ b/themes/ohled-orangered.yaml @@ -2,7 +2,7 @@ name: "OhLED_OrangeRed" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 41.4 black: 41.4 diff --git a/themes/ohled-orchid.yaml b/themes/ohled-orchid.yaml index 2a46fb0b..bfc151d2 100644 --- a/themes/ohled-orchid.yaml +++ b/themes/ohled-orchid.yaml @@ -2,7 +2,7 @@ name: "OhLED_Orchid" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 47.1 black: 47.1 diff --git a/themes/ohled-palegoldenrod.yaml b/themes/ohled-palegoldenrod.yaml index 2cb98eae..13696a15 100644 --- a/themes/ohled-palegoldenrod.yaml +++ b/themes/ohled-palegoldenrod.yaml @@ -2,7 +2,7 @@ name: "OhLED_PaleGoldenRod" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 91.4 black: 91.4 diff --git a/themes/ohled-palegreen.yaml b/themes/ohled-palegreen.yaml index 621f4c18..772fed77 100644 --- a/themes/ohled-palegreen.yaml +++ b/themes/ohled-palegreen.yaml @@ -2,7 +2,7 @@ name: "OhLED_PaleGreen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 90.9 black: 90.9 diff --git a/themes/ohled-paleturquoise.yaml b/themes/ohled-paleturquoise.yaml index ed170a35..45985e6c 100644 --- a/themes/ohled-paleturquoise.yaml +++ b/themes/ohled-paleturquoise.yaml @@ -2,7 +2,7 @@ name: "OhLED_PaleTurquoise" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "cyan" hue: null + pair: null contrast: fg: 89.5 black: 89.5 diff --git a/themes/ohled-palevioletred.yaml b/themes/ohled-palevioletred.yaml index d4e1cb26..cc42edb5 100644 --- a/themes/ohled-palevioletred.yaml +++ b/themes/ohled-palevioletred.yaml @@ -2,7 +2,7 @@ name: "OhLED_PaleVioletRed" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 44.1 black: 44.1 diff --git a/themes/ohled-papayawhip.yaml b/themes/ohled-papayawhip.yaml index 90bb2908..194906b7 100644 --- a/themes/ohled-papayawhip.yaml +++ b/themes/ohled-papayawhip.yaml @@ -2,7 +2,7 @@ name: "OhLED_PapayaWhip" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 98.6 black: 98.6 diff --git a/themes/ohled-peachpuff.yaml b/themes/ohled-peachpuff.yaml index 9bb2ac33..66c53b19 100644 --- a/themes/ohled-peachpuff.yaml +++ b/themes/ohled-peachpuff.yaml @@ -2,7 +2,7 @@ name: "OhLED_PeachPuff" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 88.2 black: 88.2 diff --git a/themes/ohled-peru.yaml b/themes/ohled-peru.yaml index b44fdf00..071b775f 100644 --- a/themes/ohled-peru.yaml +++ b/themes/ohled-peru.yaml @@ -2,7 +2,7 @@ name: "OhLED_Peru" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 45.5 black: 45.5 diff --git a/themes/ohled-pink.yaml b/themes/ohled-pink.yaml index b2c3e900..db15c890 100644 --- a/themes/ohled-pink.yaml +++ b/themes/ohled-pink.yaml @@ -2,7 +2,7 @@ name: "OhLED_Pink" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 78.3 black: 78.3 diff --git a/themes/ohled-plum.yaml b/themes/ohled-plum.yaml index f90a47b4..8bd8c938 100644 --- a/themes/ohled-plum.yaml +++ b/themes/ohled-plum.yaml @@ -2,7 +2,7 @@ name: "OhLED_Plum" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 62 black: 62 diff --git a/themes/ohled-powderblue.yaml b/themes/ohled-powderblue.yaml index 27c02483..4a161607 100644 --- a/themes/ohled-powderblue.yaml +++ b/themes/ohled-powderblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_PowderBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "blue" hue: null + pair: null contrast: fg: 82.6 black: 82.6 diff --git a/themes/ohled-purple.yaml b/themes/ohled-purple.yaml index b6f43634..d7f373cd 100644 --- a/themes/ohled-purple.yaml +++ b/themes/ohled-purple.yaml @@ -2,7 +2,7 @@ name: "OhLED_Purple" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 29.7 black: 29.7 diff --git a/themes/ohled-rebeccapurple.yaml b/themes/ohled-rebeccapurple.yaml index cae4eee5..74958b0f 100644 --- a/themes/ohled-rebeccapurple.yaml +++ b/themes/ohled-rebeccapurple.yaml @@ -2,7 +2,7 @@ name: "OhLED_RebeccaPurple" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 29.4 black: 29.4 diff --git a/themes/ohled-red.yaml b/themes/ohled-red.yaml index 17700de9..ad28116d 100644 --- a/themes/ohled-red.yaml +++ b/themes/ohled-red.yaml @@ -2,7 +2,7 @@ name: "OhLED_Red" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 37.5 black: 37.5 diff --git a/themes/ohled-rosybrown.yaml b/themes/ohled-rosybrown.yaml index d2a983a6..8e79efcc 100644 --- a/themes/ohled-rosybrown.yaml +++ b/themes/ohled-rosybrown.yaml @@ -2,7 +2,7 @@ name: "OhLED_RosyBrown" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 47.8 black: 47.8 diff --git a/themes/ohled-royalblue.yaml b/themes/ohled-royalblue.yaml index 0de4d0c8..fdb6502a 100644 --- a/themes/ohled-royalblue.yaml +++ b/themes/ohled-royalblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_RoyalBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 29.8 black: 29.8 diff --git a/themes/ohled-saddlebrown.yaml b/themes/ohled-saddlebrown.yaml index 40ca8328..bb4948c1 100644 --- a/themes/ohled-saddlebrown.yaml +++ b/themes/ohled-saddlebrown.yaml @@ -2,7 +2,7 @@ name: "OhLED_SaddleBrown" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 29.7 black: 29.7 diff --git a/themes/ohled-salmon.yaml b/themes/ohled-salmon.yaml index 8518fb5c..f8a249bf 100644 --- a/themes/ohled-salmon.yaml +++ b/themes/ohled-salmon.yaml @@ -2,7 +2,7 @@ name: "OhLED_Salmon" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 53.3 black: 53.3 diff --git a/themes/ohled-sandybrown.yaml b/themes/ohled-sandybrown.yaml index 1564e8c4..2db67171 100644 --- a/themes/ohled-sandybrown.yaml +++ b/themes/ohled-sandybrown.yaml @@ -2,7 +2,7 @@ name: "OhLED_SandyBrown" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 63 black: 63 diff --git a/themes/ohled-seagreen.yaml b/themes/ohled-seagreen.yaml index d31d7d41..968ed7e9 100644 --- a/themes/ohled-seagreen.yaml +++ b/themes/ohled-seagreen.yaml @@ -2,7 +2,7 @@ name: "OhLED_SeaGreen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 32.7 black: 32.7 diff --git a/themes/ohled-seashell.yaml b/themes/ohled-seashell.yaml index 25dc7e84..89372f7d 100644 --- a/themes/ohled-seashell.yaml +++ b/themes/ohled-seashell.yaml @@ -2,7 +2,7 @@ name: "OhLED_SeaShell" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 102.4 black: 102.4 diff --git a/themes/ohled-sienna.yaml b/themes/ohled-sienna.yaml index 67113149..7547f148 100644 --- a/themes/ohled-sienna.yaml +++ b/themes/ohled-sienna.yaml @@ -2,7 +2,7 @@ name: "OhLED_Sienna" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 29.6 black: 29.6 diff --git a/themes/ohled-silver.yaml b/themes/ohled-silver.yaml index 829e4827..49995b0e 100644 --- a/themes/ohled-silver.yaml +++ b/themes/ohled-silver.yaml @@ -2,7 +2,7 @@ name: "OhLED_Silver" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 68.6 black: 68.6 diff --git a/themes/ohled-skyblue.yaml b/themes/ohled-skyblue.yaml index 12d4f261..71b51a33 100644 --- a/themes/ohled-skyblue.yaml +++ b/themes/ohled-skyblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_SkyBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 71.2 black: 71.2 diff --git a/themes/ohled-slateblue.yaml b/themes/ohled-slateblue.yaml index 5b5b2807..c8c6bba8 100644 --- a/themes/ohled-slateblue.yaml +++ b/themes/ohled-slateblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_SlateBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 29.6 black: 29.6 diff --git a/themes/ohled-slategray.yaml b/themes/ohled-slategray.yaml index 73856c8f..17966005 100644 --- a/themes/ohled-slategray.yaml +++ b/themes/ohled-slategray.yaml @@ -2,7 +2,7 @@ name: "OhLED_SlateGray" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 33.9 black: 33.9 diff --git a/themes/ohled-snow.yaml b/themes/ohled-snow.yaml index 31c26a9b..68822f02 100644 --- a/themes/ohled-snow.yaml +++ b/themes/ohled-snow.yaml @@ -2,7 +2,7 @@ name: "OhLED_Snow" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 105.3 black: 105.3 diff --git a/themes/ohled-springgreen.yaml b/themes/ohled-springgreen.yaml index 9677e7e9..8cc86a97 100644 --- a/themes/ohled-springgreen.yaml +++ b/themes/ohled-springgreen.yaml @@ -2,7 +2,7 @@ name: "OhLED_SpringGreen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 87.6 black: 87.6 diff --git a/themes/ohled-steelblue.yaml b/themes/ohled-steelblue.yaml index ac723a70..1a8bca24 100644 --- a/themes/ohled-steelblue.yaml +++ b/themes/ohled-steelblue.yaml @@ -2,7 +2,7 @@ name: "OhLED_SteelBlue" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 33.6 black: 33.6 diff --git a/themes/ohled-tan.yaml b/themes/ohled-tan.yaml index 21723013..3929f883 100644 --- a/themes/ohled-tan.yaml +++ b/themes/ohled-tan.yaml @@ -2,7 +2,7 @@ name: "OhLED_Tan" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 64.4 black: 64.4 diff --git a/themes/ohled-teal.yaml b/themes/ohled-teal.yaml index 325a43f9..7b2c8930 100644 --- a/themes/ohled-teal.yaml +++ b/themes/ohled-teal.yaml @@ -2,7 +2,7 @@ name: "OhLED_Teal" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "cyan" hue: null + pair: null contrast: fg: 30 black: 30 diff --git a/themes/ohled-thistle.yaml b/themes/ohled-thistle.yaml index 51f6576e..ac4a3424 100644 --- a/themes/ohled-thistle.yaml +++ b/themes/ohled-thistle.yaml @@ -2,7 +2,7 @@ name: "OhLED_Thistle" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72.5 black: 72.5 diff --git a/themes/ohled-tomato.yaml b/themes/ohled-tomato.yaml index b8922bca..02d8cba5 100644 --- a/themes/ohled-tomato.yaml +++ b/themes/ohled-tomato.yaml @@ -2,7 +2,7 @@ name: "OhLED_Tomato" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 46.8 black: 46.8 diff --git a/themes/ohled-turquoise.yaml b/themes/ohled-turquoise.yaml index b55b047f..bf9908f1 100644 --- a/themes/ohled-turquoise.yaml +++ b/themes/ohled-turquoise.yaml @@ -2,7 +2,7 @@ name: "OhLED_Turquoise" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "cyan" hue: null + pair: null contrast: fg: 74.9 black: 74.9 diff --git a/themes/ohled-violet.yaml b/themes/ohled-violet.yaml index 9d47e181..e458efe9 100644 --- a/themes/ohled-violet.yaml +++ b/themes/ohled-violet.yaml @@ -2,7 +2,7 @@ name: "OhLED_Violet" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 56.8 black: 56.8 diff --git a/themes/ohled-wheat.yaml b/themes/ohled-wheat.yaml index ac7494ab..09b94531 100644 --- a/themes/ohled-wheat.yaml +++ b/themes/ohled-wheat.yaml @@ -2,7 +2,7 @@ name: "OhLED_Wheat" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 88.2 black: 88.2 diff --git a/themes/ohled-white.yaml b/themes/ohled-white.yaml index 8853a81e..72393457 100644 --- a/themes/ohled-white.yaml +++ b/themes/ohled-white.yaml @@ -2,7 +2,7 @@ name: "OhLED_White" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 107.9 black: 107.9 diff --git a/themes/ohled-whitesmoke.yaml b/themes/ohled-whitesmoke.yaml index 6c4a0655..beaa319e 100644 --- a/themes/ohled-whitesmoke.yaml +++ b/themes/ohled-whitesmoke.yaml @@ -2,7 +2,7 @@ name: "OhLED_WhiteSmoke" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 101.3 black: 101.3 diff --git a/themes/ohled-yellow.yaml b/themes/ohled-yellow.yaml index 20c24ad4..658bd8b7 100644 --- a/themes/ohled-yellow.yaml +++ b/themes/ohled-yellow.yaml @@ -2,7 +2,7 @@ name: "OhLED_Yellow" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 102.7 black: 102.7 diff --git a/themes/ohled-yellowgreen.yaml b/themes/ohled-yellowgreen.yaml index a3a54381..32df1772 100644 --- a/themes/ohled-yellowgreen.yaml +++ b/themes/ohled-yellowgreen.yaml @@ -2,7 +2,7 @@ name: "OhLED_YellowGreen" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 67 black: 67 diff --git a/themes/ohled-yelloworange.yaml b/themes/ohled-yelloworange.yaml index a7f685de..92aa6362 100644 --- a/themes/ohled-yelloworange.yaml +++ b/themes/ohled-yelloworange.yaml @@ -2,7 +2,7 @@ name: "OhLED_YellowOrange" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 68.2 black: 68.2 diff --git a/themes/ohled-yellowpink.yaml b/themes/ohled-yellowpink.yaml index 561a6fd3..70cc8892 100644 --- a/themes/ohled-yellowpink.yaml +++ b/themes/ohled-yellowpink.yaml @@ -2,7 +2,7 @@ name: "OhLED_YellowPink" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 71.3 black: 71.3 diff --git a/themes/ohled-yellowpurple.yaml b/themes/ohled-yellowpurple.yaml index d5c29284..70933a76 100644 --- a/themes/ohled-yellowpurple.yaml +++ b/themes/ohled-yellowpurple.yaml @@ -2,7 +2,7 @@ name: "OhLED_YellowPurple" source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" - installs: 10961 + installs: 10963 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 75.1 black: 75.1 diff --git a/themes/okas-theme.yaml b/themes/okas-theme.yaml index 049f3e40..cf6a2ac0 100644 --- a/themes/okas-theme.yaml +++ b/themes/okas-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.1 black: 0 diff --git a/themes/oldschool-terminal-green.yaml b/themes/oldschool-terminal-green.yaml index 286d146c..3fbb4d5e 100644 --- a/themes/oldschool-terminal-green.yaml +++ b/themes/oldschool-terminal-green.yaml @@ -2,7 +2,7 @@ name: "Oldschool Terminal (Green)" source: marketplace_id: "ericson-willians.oldschool-theme-win95-edition" version: "1.0.0" - installs: 6535 + installs: 6536 author: "Ericson Willians Rocha Pires" repo: "https://github.com/EricsonWillians/oldschool-theme" url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.oldschool-theme-win95-edition" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/oldworld.yaml b/themes/oldworld.yaml index 2be4d402..3b010acc 100644 --- a/themes/oldworld.yaml +++ b/themes/oldworld.yaml @@ -1,49 +1,50 @@ -name: "Oldworld" +name: "OldWorld" source: - marketplace_id: "ReezPatel.oldworlddark" - version: "0.0.3" - installs: 131 - author: "Reez Patel" - repo: "https://github.com/reezpatel/oldworld-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ReezPatel.oldworlddark" + marketplace_id: "diegogomez16.oldworld" + version: "0.0.6" + installs: 163 + author: "diego.gomez16" + repo: "https://github.com/dgox16/oldworld.vscode" + url: "https://marketplace.visualstudio.com/items?itemName=diegogomez16.oldworld" colors: bg: "#161617" - fg: "#ACA1CF" - black: "#27272A" + fg: "#C9C7CD" + black: "#8F8D92" red: "#EA83A5" green: "#90B99F" yellow: "#E6B99D" - blue: "#92A2D5" + blue: "#9CA2CF" magenta: "#E29ECA" - cyan: "#85B5BA" - white: "#B4B1BA" - brightBlack: "#666666" - brightRed: "#EA83A5" - brightGreen: "#90B99F" - brightYellow: "#E6B99D" - brightBlue: "#92A2D5" - brightMagenta: "#E29ECA" - brightCyan: "#85B5BA" + cyan: "#85B8BA" + white: "#E5E5E5" + brightBlack: "#AFACB2" + brightRed: "#ED96B3" + brightGreen: "#A7C8B3" + brightYellow: "#EAC5AC" + brightBlue: "#ACB1D7" + brightMagenta: "#E8B0D4" + brightCyan: "#29B8DB" brightWhite: "#C9C7CD" meta: mode: "dark" accent: "red" hue: null + pair: null contrast: - fg: 53.8 - black: 0 + fg: 72.3 + black: 40.6 red: 51.7 green: 58.4 yellow: 68.9 - blue: 51.7 + blue: 52.4 magenta: 60.2 - cyan: 56.8 - white: 59.9 - brightBlack: 22.1 - brightRed: 51.7 - brightGreen: 58.4 - brightYellow: 68.9 - brightBlue: 51.7 - brightMagenta: 60.2 - brightCyan: 56.8 + cyan: 58.1 + white: 90.1 + brightBlack: 57 + brightRed: 58.5 + brightGreen: 67.8 + brightYellow: 74.8 + brightBlue: 60.4 + brightMagenta: 68 + brightCyan: 55.5 brightWhite: 72.3 diff --git a/themes/olive-dark.yaml b/themes/olive-dark.yaml index 9b8a139d..845fd98d 100644 --- a/themes/olive-dark.yaml +++ b/themes/olive-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Olive Light" contrast: fg: 52.6 black: 18.6 diff --git a/themes/olive-light.yaml b/themes/olive-light.yaml index a71f8fab..1253863f 100644 --- a/themes/olive-light.yaml +++ b/themes/olive-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Olive Dark" contrast: fg: 86.7 black: 103.6 diff --git a/themes/omega.yaml b/themes/omega.yaml index a98a8221..f81379d4 100644 --- a/themes/omega.yaml +++ b/themes/omega.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 91.5 black: 0 diff --git a/themes/omni-customized-dark.yaml b/themes/omni-customized-dark.yaml index c0c1b3d5..36f1cd81 100644 --- a/themes/omni-customized-dark.yaml +++ b/themes/omni-customized-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 88.7 black: 0 diff --git a/themes/omni-customized.yaml b/themes/omni-customized.yaml index 12185929..97088856 100644 --- a/themes/omni-customized.yaml +++ b/themes/omni-customized.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 87.5 black: 0 diff --git a/themes/omni-dracula-dark.yaml b/themes/omni-dracula-dark.yaml index 238fa48f..d3a97c25 100644 --- a/themes/omni-dracula-dark.yaml +++ b/themes/omni-dracula-dark.yaml @@ -2,7 +2,7 @@ name: "Omni Dracula Dark" source: marketplace_id: "Wellington-A.omni-dracula-dark" version: "1.0.7" - installs: 4759 + installs: 4766 author: "Wellington-A" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.7 black: 15.6 diff --git a/themes/omni-dracula-theme-tradicional-contrast.yaml b/themes/omni-dracula-theme-tradicional-contrast.yaml index d78b1e03..13ec7db3 100644 --- a/themes/omni-dracula-theme-tradicional-contrast.yaml +++ b/themes/omni-dracula-theme-tradicional-contrast.yaml @@ -2,7 +2,7 @@ name: "Omni Dracula Theme Tradicional Contrast" source: marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" version: "1.0.7" - installs: 36314 + installs: 36326 author: "Thiago Lúcio Bittencourt" repo: "https://github.com/thiagolucio/omni-dracula-theme" url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 267 + pair: null contrast: fg: 100.8 black: 0 diff --git a/themes/omni-dracula-theme.yaml b/themes/omni-dracula-theme.yaml index a0a9f270..1b2a272f 100644 --- a/themes/omni-dracula-theme.yaml +++ b/themes/omni-dracula-theme.yaml @@ -2,7 +2,7 @@ name: "Omni Dracula Theme" source: marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" version: "1.0.7" - installs: 36314 + installs: 36326 author: "Thiago Lúcio Bittencourt" repo: "https://github.com/thiagolucio/omni-dracula-theme" url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 103.9 black: 11.8 diff --git a/themes/omni-dracula-wine-theme-tradicional.yaml b/themes/omni-dracula-wine-theme-tradicional.yaml index 7659e917..9c761b69 100644 --- a/themes/omni-dracula-wine-theme-tradicional.yaml +++ b/themes/omni-dracula-wine-theme-tradicional.yaml @@ -2,7 +2,7 @@ name: "Omni Dracula Wine Theme Tradicional" source: marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" version: "1.0.7" - installs: 36314 + installs: 36326 author: "Thiago Lúcio Bittencourt" repo: "https://github.com/thiagolucio/omni-dracula-theme" url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 12 + pair: null contrast: fg: 83.3 black: 0 diff --git a/themes/omni-monokai-dark.yaml b/themes/omni-monokai-dark.yaml index 262b85bf..cc5259c3 100644 --- a/themes/omni-monokai-dark.yaml +++ b/themes/omni-monokai-dark.yaml @@ -2,7 +2,7 @@ name: "Omni Monokai Dark" source: marketplace_id: "Wellington-A.omni-dracula-dark" version: "1.0.7" - installs: 4759 + installs: 4766 author: "Wellington-A" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 90.6 black: 7.3 diff --git a/themes/omni-pro.yaml b/themes/omni-pro.yaml index e5a0bd39..bae9590d 100644 --- a/themes/omni-pro.yaml +++ b/themes/omni-pro.yaml @@ -2,7 +2,7 @@ name: "Omni PRO" source: marketplace_id: "viniciusamelio.theme-omni-pro" version: "1.0.15" - installs: 2481 + installs: 2484 author: "viniciusamelio" repo: "https://github.com/viniciusamelio/omni-pro" url: "https://marketplace.visualstudio.com/items?itemName=viniciusamelio.theme-omni-pro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 296 + pair: null contrast: fg: 87.6 black: 0 diff --git a/themes/omni.yaml b/themes/omni.yaml index a4a1eb52..96a9849d 100644 --- a/themes/omni.yaml +++ b/themes/omni.yaml @@ -2,7 +2,7 @@ name: "Omni" source: marketplace_id: "Avetis.codeme-theme" version: "0.1.1" - installs: 8079 + installs: 8080 author: "Avetis" repo: "https://github.com/AvetisDN/codeme-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 331 + pair: null contrast: fg: 79.2 black: 0 diff --git a/themes/omnisexual.yaml b/themes/omnisexual.yaml index 2f0b88cc..3eef6031 100644 --- a/themes/omnisexual.yaml +++ b/themes/omnisexual.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 107.9 black: 37.6 diff --git a/themes/omnitrix-code.yaml b/themes/omnitrix-code.yaml index 01e04a90..29e20200 100644 --- a/themes/omnitrix-code.yaml +++ b/themes/omnitrix-code.yaml @@ -1,11 +1,11 @@ name: "Omnitrix Code" source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1834 + marketplace_id: "SecureDev01.theme-icon-pack" + version: "1.0.4" + installs: 906 author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + repo: "https://github.com/codewithevilxd/theme-icon-pack" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.theme-icon-pack" colors: bg: "#0A1612" fg: "#E0F2E9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 171 + pair: null contrast: fg: 95.8 black: 0 diff --git a/themes/omo-theme.yaml b/themes/omo-theme.yaml index b9b91ec1..8779d9b5 100644 --- a/themes/omo-theme.yaml +++ b/themes/omo-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 55.8 black: 0 diff --git a/themes/one-ai-theme.yaml b/themes/one-ai-theme.yaml index f6e24346..545d0846 100644 --- a/themes/one-ai-theme.yaml +++ b/themes/one-ai-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 51 black: 11.4 diff --git a/themes/one-dark-cloud-theme.yaml b/themes/one-dark-cloud-theme.yaml index af93a910..eb93dff3 100644 --- a/themes/one-dark-cloud-theme.yaml +++ b/themes/one-dark-cloud-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/one-dark-code.yaml b/themes/one-dark-code.yaml index ad28789b..4af76cf7 100644 --- a/themes/one-dark-code.yaml +++ b/themes/one-dark-code.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/one-dark-darker-vivid.yaml b/themes/one-dark-darker-vivid.yaml index 9dddf728..ca2b2685 100644 --- a/themes/one-dark-darker-vivid.yaml +++ b/themes/one-dark-darker-vivid.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: null contrast: fg: 57.2 black: 0 diff --git a/themes/one-dark-darker.yaml b/themes/one-dark-darker.yaml index b75b775d..820dcdd9 100644 --- a/themes/one-dark-darker.yaml +++ b/themes/one-dark-darker.yaml @@ -1,11 +1,11 @@ name: "One Dark Darker" source: - marketplace_id: "JoelCrosby.one-dark-darker" - version: "1.0.4" - installs: 82879 - author: "Joel Crosby" - repo: "https://github.com/JoelCrosby/OneDarkDarker" - url: "https://marketplace.visualstudio.com/items?itemName=JoelCrosby.one-dark-darker" + marketplace_id: "lazyComedian.sentimental-dark" + version: "0.1.4" + installs: 518 + author: "lazyComedian" + repo: "https://github.com/lazycomedian/SentimentalDark" + url: "https://marketplace.visualstudio.com/items?itemName=lazyComedian.sentimental-dark" colors: bg: "#181A1F" fg: "#ABB2BF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 268 + pair: null contrast: fg: 59.1 black: 8.5 diff --git a/themes/one-dark-modern-pro.yaml b/themes/one-dark-modern-pro.yaml index 7d4ec567..b2077d8d 100644 --- a/themes/one-dark-modern-pro.yaml +++ b/themes/one-dark-modern-pro.yaml @@ -2,7 +2,7 @@ name: "One Dark Modern Pro" source: marketplace_id: "aleksa-codes.one-dark-modern-pro" version: "1.0.10" - installs: 2141 + installs: 2144 author: "aleksa-codes" repo: "https://github.com/aleksa-codes/one-dark-modern-pro" url: "https://marketplace.visualstudio.com/items?itemName=aleksa-codes.one-dark-modern-pro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 73.7 black: 7.9 diff --git a/themes/one-dark-night-blue-boy.yaml b/themes/one-dark-night-blue-boy.yaml index 06932b5b..519ef4cb 100644 --- a/themes/one-dark-night-blue-boy.yaml +++ b/themes/one-dark-night-blue-boy.yaml @@ -2,7 +2,7 @@ name: "One Dark Night - Blue Boy" source: marketplace_id: "sojibahmed.one-dark-night-theme" version: "0.0.7" - installs: 1362 + installs: 1363 author: "sojibAhmedSafi" repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 250 + pair: null contrast: fg: 42.5 black: 0 diff --git a/themes/one-dark-night-eye-care.yaml b/themes/one-dark-night-eye-care.yaml index c9ef5a93..22d81cfb 100644 --- a/themes/one-dark-night-eye-care.yaml +++ b/themes/one-dark-night-eye-care.yaml @@ -2,7 +2,7 @@ name: "One Dark Night - Eye Care" source: marketplace_id: "sojibahmed.one-dark-night-theme" version: "0.0.7" - installs: 1362 + installs: 1363 author: "sojibAhmedSafi" repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 269 + pair: null contrast: fg: 56.2 black: 16.5 diff --git a/themes/one-dark-night-minimalist.yaml b/themes/one-dark-night-minimalist.yaml index 4b63b528..7e640209 100644 --- a/themes/one-dark-night-minimalist.yaml +++ b/themes/one-dark-night-minimalist.yaml @@ -2,7 +2,7 @@ name: "One Dark Night - Minimalist" source: marketplace_id: "sojibahmed.one-dark-night-theme" version: "0.0.7" - installs: 1362 + installs: 1363 author: "sojibAhmedSafi" repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 277 + pair: null contrast: fg: 51 black: 0 diff --git a/themes/one-dark-night-professional.yaml b/themes/one-dark-night-professional.yaml index c57d0fd6..be8a008a 100644 --- a/themes/one-dark-night-professional.yaml +++ b/themes/one-dark-night-professional.yaml @@ -2,7 +2,7 @@ name: "One Dark Night - Professional" source: marketplace_id: "sojibahmed.one-dark-night-theme" version: "0.0.7" - installs: 1362 + installs: 1363 author: "sojibAhmedSafi" repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 67.8 black: 0 diff --git a/themes/one-dark-nx.yaml b/themes/one-dark-nx.yaml index 6ffda8cc..a8e9e4b9 100644 --- a/themes/one-dark-nx.yaml +++ b/themes/one-dark-nx.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 69.1 black: 0 diff --git a/themes/one-dark-pro-theme.yaml b/themes/one-dark-pro-theme.yaml index ba78324d..bef466a4 100644 --- a/themes/one-dark-pro-theme.yaml +++ b/themes/one-dark-pro-theme.yaml @@ -2,7 +2,7 @@ name: "One Dark Pro Theme" source: marketplace_id: "mdmarufsarker.maruf-sarker" version: "0.1.1" - installs: 29145 + installs: 29154 author: "Md. Maruf Sarker" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 245 + pair: null contrast: fg: 59.3 black: 8.7 diff --git a/themes/one-dark-pro-var-night.yaml b/themes/one-dark-pro-var-night.yaml index 275cdda9..dad01ff0 100644 --- a/themes/one-dark-pro-var-night.yaml +++ b/themes/one-dark-pro-var-night.yaml @@ -2,7 +2,7 @@ name: "One Dark Pro Var Night" source: marketplace_id: "csstools.onedarkprovar" version: "1.1.0" - installs: 7893 + installs: 7895 author: "csstools" repo: "https://github.com/csstools/onedarkprovar-theme" url: "https://marketplace.visualstudio.com/items?itemName=csstools.onedarkprovar" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 59.1 black: 0 diff --git a/themes/one-dark-pro.yaml b/themes/one-dark-pro.yaml index 6a497bbc..b880b274 100644 --- a/themes/one-dark-pro.yaml +++ b/themes/one-dark-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "One Light Pro" contrast: fg: 58.6 black: 0 diff --git a/themes/one-dark-vibrant-theme.yaml b/themes/one-dark-vibrant-theme.yaml index 06cab1f1..be46291e 100644 --- a/themes/one-dark-vibrant-theme.yaml +++ b/themes/one-dark-vibrant-theme.yaml @@ -2,7 +2,7 @@ name: "One Dark Vibrant Theme" source: marketplace_id: "josergz.one-dark-vibrant-theme" version: "1.2.2" - installs: 353 + installs: 355 author: "José Rodríguez " repo: "https://github.com/josergz/one-dark-vibrant-theme" url: "https://marketplace.visualstudio.com/items?itemName=josergz.one-dark-vibrant-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/one-dark-vivid.yaml b/themes/one-dark-vivid.yaml deleted file mode 100644 index 48fe614f..00000000 --- a/themes/one-dark-vivid.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "One Dark Vivid" -source: - marketplace_id: "mskelton.one-dark-theme" - version: "1.14.3" - installs: 128040 - author: "Mark Skelton" - repo: "https://github.com/one-dark/vscode-one-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=mskelton.one-dark-theme" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#528BFF" - brightMagenta: "#C678DD" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: 264 - contrast: - fg: 56.2 - black: 0 - red: 38.9 - green: 59.1 - yellow: 67.4 - blue: 51.5 - magenta: 41.9 - cyan: 51.4 - white: 79.8 - brightBlack: 32.3 - brightRed: 35.2 - brightGreen: 59.1 - brightYellow: 67.4 - brightBlue: 38.3 - brightMagenta: 41.9 - brightCyan: 51.4 - brightWhite: 79.8 diff --git a/themes/one-dark.yaml b/themes/one-dark.yaml index f1eb41b4..3125eab7 100644 --- a/themes/one-dark.yaml +++ b/themes/one-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.4 black: 0 diff --git a/themes/one-darker-pro.yaml b/themes/one-darker-pro.yaml index 2eafdc82..5f7d2e04 100644 --- a/themes/one-darker-pro.yaml +++ b/themes/one-darker-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 59.3 black: 8.7 diff --git a/themes/one-darkpuccin-vivid-italic.yaml b/themes/one-darkpuccin-vivid-italic.yaml deleted file mode 100644 index 3482a79c..00000000 --- a/themes/one-darkpuccin-vivid-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "One DarkPuccin Vivid Italic" -source: - marketplace_id: "ni3rav.one-darkppuccin" - version: "0.0.4" - installs: 939 - author: "ni3rav" - repo: "https://github.com/ni3rav/one-darkppuccin" - url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.one-darkppuccin" -colors: - bg: "#2D3138" - fg: "#B0B4BA" - black: "#444B58" - red: "#E45C68" - green: "#91C96A" - yellow: "#D79758" - blue: "#4FADF8" - magenta: "#C769E5" - cyan: "#47BBC9" - white: "#DCE0E5" - brightBlack: "#555C6D" - brightRed: "#FF6875" - brightGreen: "#AAE57B" - brightYellow: "#F4AA62" - brightBlue: "#52CCFF" - brightMagenta: "#E67BFF" - brightCyan: "#51D9E8" - brightWhite: "#EAEAEA" -meta: - mode: "dark" - accent: "pink" - hue: 262 - contrast: - fg: 56.3 - black: 0 - red: 34.8 - green: 59.7 - yellow: 48.1 - blue: 49.3 - magenta: 37.8 - cyan: 52.2 - white: 82.3 - brightBlack: 13.6 - brightRed: 43.4 - brightGreen: 75.5 - brightYellow: 59.9 - brightBlue: 63.2 - brightMagenta: 49.4 - brightCyan: 67.9 - brightWhite: 88.9 diff --git a/themes/one-half-light-italic.yaml b/themes/one-half-light-italic.yaml deleted file mode 100644 index ee4d33b2..00000000 --- a/themes/one-half-light-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "One Half Light Italic" -source: - marketplace_id: "ACAutonomousSystems.acas-themes" - version: "0.0.5" - installs: 267 - author: "AC Autonomous Systems" - repo: "https://github.com/AC-Autonomous-Systems/ACAS-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=ACAutonomousSystems.acas-themes" -colors: - bg: "#FAFAFA" - fg: "#24292E" - black: "#383A42" - red: "#E45649" - green: "#50A14F" - yellow: "#C18401" - blue: "#2F5AF3" - magenta: "#A626A4" - cyan: "#00B7EB" - white: "#FAFAFA" - brightBlack: "#797979" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#4B72FF" - brightMagenta: "#C678DD" - brightCyan: "#00B7EB" - brightWhite: "#FAFAFA" -meta: - mode: "light" - accent: "purple" - hue: null - contrast: - fg: 98.5 - black: 93.2 - red: 60.4 - green: 56 - yellow: 55.8 - blue: 73.2 - magenta: 76.2 - cyan: 42.4 - white: 0 - brightBlack: 67.2 - brightRed: 55.7 - brightGreen: 36.1 - brightYellow: 28.2 - brightBlue: 64.5 - brightMagenta: 52.7 - brightCyan: 42.4 - brightWhite: 0 diff --git a/themes/one-hunter-theme.yaml b/themes/one-hunter-theme.yaml index c08e3a6a..0026e4cc 100644 --- a/themes/one-hunter-theme.yaml +++ b/themes/one-hunter-theme.yaml @@ -2,48 +2,49 @@ name: "One Hunter Theme" source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" - installs: 3734 + installs: 3736 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: - bg: "#1D2126" - fg: "#E3E1E1" - black: "#3B4145" - red: "#EF5350" - green: "#66DFC4" - yellow: "#64B5F6" - blue: "#64B5F6" - magenta: "#F06292" - cyan: "#C972D8" - white: "#E3E1E1" + bg: "#000000" + fg: "#DCE3EA" + black: "#34393E" + red: "#E61F44" + green: "#5BD1B9" + yellow: "#43AAF9" + blue: "#43AAF9" + magenta: "#DD4F7D" + cyan: "#B267E6" + white: "#DCE3EA" brightBlack: "#454D54" - brightRed: "#EF5350" - brightGreen: "#B2EBF2" - brightYellow: "#90CAF9" - brightBlue: "#90CAF9" - brightMagenta: "#EC407A" - brightCyan: "#E1BEE7" - brightWhite: "#E3E1E1" + brightRed: "#E61F44" + brightGreen: "#B7F0E5" + brightYellow: "#A7D1F5" + brightBlue: "#A7D1F5" + brightMagenta: "#DD4F7D" + brightCyan: "#D7C9F0" + brightWhite: "#DCE3EA" meta: mode: "dark" - accent: "red" - hue: 254 + accent: "orange" + hue: null + pair: null contrast: - fg: 86.6 + fg: 89.2 black: 0 - red: 38.1 - green: 73 - yellow: 56.5 - blue: 56.5 - magenta: 42.9 - cyan: 42.5 - white: 86.6 - brightBlack: 10.5 - brightRed: 38.1 - brightGreen: 86.4 - brightYellow: 68.7 - brightBlue: 68.7 - brightMagenta: 35.6 - brightCyan: 71.9 - brightWhite: 86.6 + red: 32.4 + green: 67.6 + yellow: 53 + blue: 53 + magenta: 36.8 + cyan: 39.4 + white: 89.2 + brightBlack: 12.7 + brightRed: 32.4 + brightGreen: 90.8 + brightYellow: 75.8 + brightBlue: 75.8 + brightMagenta: 36.8 + brightCyan: 77.6 + brightWhite: 89.2 diff --git a/themes/one-light-pro.yaml b/themes/one-light-pro.yaml index fa4dae4e..9186e837 100644 --- a/themes/one-light-pro.yaml +++ b/themes/one-light-pro.yaml @@ -1,11 +1,11 @@ name: "One Light Pro" source: - marketplace_id: "andrewm098.OneLight-Pro" - version: "1.0.1" - installs: 21008 - author: "andrewm098" - repo: "https://github.com/andrew-ma/One-Light-Pro" - url: "https://marketplace.visualstudio.com/items?itemName=andrewm098.OneLight-Pro" + marketplace_id: "smdfuck.best-themes" + version: "0.0.15" + installs: 149 + author: "smdfuck" + repo: "https://github.com/smdfuck/best-themes" + url: "https://marketplace.visualstudio.com/items?itemName=smdfuck.best-themes" colors: bg: "#E4E0CC" fg: "#111113" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 98 + pair: "One Dark Pro" contrast: fg: 86.8 black: 83.3 diff --git a/themes/one-material.yaml b/themes/one-material.yaml index 8d7a19a6..7a35338a 100644 --- a/themes/one-material.yaml +++ b/themes/one-material.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 57 black: 0 diff --git a/themes/one-midnight.yaml b/themes/one-midnight.yaml index f035a6d9..4f385bc8 100644 --- a/themes/one-midnight.yaml +++ b/themes/one-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 294 + pair: null contrast: fg: 60.3 black: 9.8 diff --git a/themes/one-monokai-darker.yaml b/themes/one-monokai-darker.yaml index 260389d1..3a125dcd 100644 --- a/themes/one-monokai-darker.yaml +++ b/themes/one-monokai-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 254 + pair: null contrast: fg: 58 black: 0 diff --git a/themes/one-monokai-forked.yaml b/themes/one-monokai-forked.yaml index 796dc30a..fe23c289 100644 --- a/themes/one-monokai-forked.yaml +++ b/themes/one-monokai-forked.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 59.7 black: 0 diff --git a/themes/one-monokai-michota.yaml b/themes/one-monokai-michota.yaml index ba03f18a..86884ae6 100644 --- a/themes/one-monokai-michota.yaml +++ b/themes/one-monokai-michota.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 58.3 black: 0 diff --git a/themes/one-monokai-shadow.yaml b/themes/one-monokai-shadow.yaml index 81b098bf..3ab4d3fc 100644 --- a/themes/one-monokai-shadow.yaml +++ b/themes/one-monokai-shadow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.8 black: 0 diff --git a/themes/one-monokai.yaml b/themes/one-monokai.yaml deleted file mode 100644 index 6c29f6d5..00000000 --- a/themes/one-monokai.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "One Monokai" -source: - marketplace_id: "azemoh.one-monokai" - version: "0.5.2" - installs: 2841382 - author: "Joshua Azemoh" - repo: "https://github.com/azemoh/vscode-one-monokai" - url: "https://marketplace.visualstudio.com/items?itemName=azemoh.one-monokai" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#528BFF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: 264 - contrast: - fg: 56.2 - black: 0 - red: 38.9 - green: 59.1 - yellow: 67.4 - blue: 38.3 - magenta: 41.9 - cyan: 51.4 - white: 79.8 - brightBlack: 32.3 - brightRed: 35.2 - brightGreen: 59.1 - brightYellow: 67.4 - brightBlue: 38.3 - brightMagenta: 9.5 - brightCyan: 51.4 - brightWhite: 79.8 diff --git a/themes/one-monokai1.yaml b/themes/one-monokai1.yaml index 18b83756..7efad37c 100644 --- a/themes/one-monokai1.yaml +++ b/themes/one-monokai1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/one-moon.yaml b/themes/one-moon.yaml index 2bbc7b2b..52e65480 100644 --- a/themes/one-moon.yaml +++ b/themes/one-moon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 226 + pair: null contrast: fg: 76.7 black: 30.5 diff --git a/themes/one-more-dark.yaml b/themes/one-more-dark.yaml index 0ef21ca1..a0f8f6e0 100644 --- a/themes/one-more-dark.yaml +++ b/themes/one-more-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 96.7 black: 0 diff --git a/themes/one-piece-dark.yaml b/themes/one-piece-dark.yaml index c2ede18c..37b95687 100644 --- a/themes/one-piece-dark.yaml +++ b/themes/one-piece-dark.yaml @@ -2,7 +2,7 @@ name: "one-piece-dark" source: marketplace_id: "LeonardoTozoni.one-piece-theme" version: "2.0.0" - installs: 8040 + installs: 8061 author: "Leonardo Tozoni" repo: "https://github.com/Leonardo-Tozoni/one-piece-theme" url: "https://marketplace.visualstudio.com/items?itemName=LeonardoTozoni.one-piece-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 270 + pair: null contrast: fg: 90.9 black: 0 diff --git a/themes/one-piece-high-contrast.yaml b/themes/one-piece-high-contrast.yaml index cddffe4e..f77efb6b 100644 --- a/themes/one-piece-high-contrast.yaml +++ b/themes/one-piece-high-contrast.yaml @@ -2,7 +2,7 @@ name: "One-Piece-High-Contrast" source: marketplace_id: "TeteDeCactus.onepiece-dark-theme" version: "0.0.1" - installs: 7811 + installs: 7812 author: "TeteDeCactus" repo: "https://github.com/tetedecactus/VScode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=TeteDeCactus.onepiece-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 90.5 black: 0 diff --git a/themes/one-piece-light.yaml b/themes/one-piece-light.yaml index 791ba445..b6910467 100644 --- a/themes/one-piece-light.yaml +++ b/themes/one-piece-light.yaml @@ -2,7 +2,7 @@ name: "one-piece-light" source: marketplace_id: "LeonardoTozoni.one-piece-theme" version: "2.0.0" - installs: 8040 + installs: 8061 author: "Leonardo Tozoni" repo: "https://github.com/Leonardo-Tozoni/one-piece-theme" url: "https://marketplace.visualstudio.com/items?itemName=LeonardoTozoni.one-piece-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 101.7 black: 101.7 diff --git a/themes/one-piece-straw-hat-red.yaml b/themes/one-piece-straw-hat-red.yaml index 6858baa6..bc09f0e1 100644 --- a/themes/one-piece-straw-hat-red.yaml +++ b/themes/one-piece-straw-hat-red.yaml @@ -2,7 +2,7 @@ name: "One Piece (Straw Hat Red)" source: marketplace_id: "LunaCode.anime-theme" version: "0.0.3" - installs: 373 + installs: 377 author: "LunaCode" repo: "https://github.com/BuildXO/anime-theme-pack" url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 359 + pair: null contrast: fg: 92.7 black: 0 diff --git a/themes/onebitcode-theme.yaml b/themes/onebitcode-theme.yaml index 3589e301..567104af 100644 --- a/themes/onebitcode-theme.yaml +++ b/themes/onebitcode-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.4 black: 0 diff --git a/themes/onebitcode.yaml b/themes/onebitcode.yaml index 57144899..dc84d624 100644 --- a/themes/onebitcode.yaml +++ b/themes/onebitcode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 88.1 black: 15.4 diff --git a/themes/onecalm.yaml b/themes/onecalm.yaml index 50016345..5ea9a3ba 100644 --- a/themes/onecalm.yaml +++ b/themes/onecalm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 261 + pair: null contrast: fg: 101.9 black: 0 diff --git a/themes/onedark-nvim.yaml b/themes/onedark-nvim.yaml index 3cc59b7d..cb00d1fc 100644 --- a/themes/onedark-nvim.yaml +++ b/themes/onedark-nvim.yaml @@ -1,11 +1,11 @@ name: "onedark.nvim" source: - marketplace_id: "nanndo.nanndo-onedark" - version: "1.0.0" - installs: 51 - author: "nanndo" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=nanndo.nanndo-onedark" + marketplace_id: "bartoszmaka95.onedark" + version: "0.2.1" + installs: 8582 + author: "bartoszmaka95" + repo: "https://github.com/bartoszmaka/vscode-onedark" + url: "https://marketplace.visualstudio.com/items?itemName=bartoszmaka95.onedark" colors: bg: "#1A212E" fg: "#ABB2BF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 263 + pair: null contrast: fg: 58.1 black: 7.6 diff --git a/themes/onedark-pro-suhayb-s-version-v2.yaml b/themes/onedark-pro-suhayb-s-version-v2.yaml index 45b47f7c..05b533f7 100644 --- a/themes/onedark-pro-suhayb-s-version-v2.yaml +++ b/themes/onedark-pro-suhayb-s-version-v2.yaml @@ -2,7 +2,7 @@ name: "OneDark Pro - Suhayb's Version v2" source: marketplace_id: "Suhaybu.onedarkpro-colorblind" version: "1.0.1" - installs: 2278 + installs: 2280 author: "Suhaybu" repo: "https://github.com/suhaybu/onedarkpro-colorblind" url: "https://marketplace.visualstudio.com/items?itemName=Suhaybu.onedarkpro-colorblind" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 90.7 black: 0 diff --git a/themes/oneiroi-caffeine.yaml b/themes/oneiroi-caffeine.yaml index 77479ba1..dd829a09 100644 --- a/themes/oneiroi-caffeine.yaml +++ b/themes/oneiroi-caffeine.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 93.9 black: 0 diff --git a/themes/oneiroi-dream.yaml b/themes/oneiroi-dream.yaml index ff9cac7d..eca571f7 100644 --- a/themes/oneiroi-dream.yaml +++ b/themes/oneiroi-dream.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 85.8 black: 0 diff --git a/themes/oneiroi-melatonin.yaml b/themes/oneiroi-melatonin.yaml index be6dad2c..194450a7 100644 --- a/themes/oneiroi-melatonin.yaml +++ b/themes/oneiroi-melatonin.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 87.1 black: 0 diff --git a/themes/onemonokai80s.yaml b/themes/onemonokai80s.yaml index dd9fcb3b..cdd6441e 100644 --- a/themes/onemonokai80s.yaml +++ b/themes/onemonokai80s.yaml @@ -2,7 +2,7 @@ name: "OneMonokai80s" source: marketplace_id: "axiomaticstudios.one-monokai-80s" version: "2.6.6" - installs: 61821 + installs: 61824 author: "Axiomatic Studios" repo: "https://github.com/marcelo-mason/one-monokai-80s" url: "https://marketplace.visualstudio.com/items?itemName=axiomaticstudios.one-monokai-80s" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 277 + pair: null contrast: fg: 57.2 black: 28.1 diff --git a/themes/onemonokai80sog.yaml b/themes/onemonokai80sog.yaml index ceca95cf..a666c00f 100644 --- a/themes/onemonokai80sog.yaml +++ b/themes/onemonokai80sog.yaml @@ -2,7 +2,7 @@ name: "OneMonokai80sOG" source: marketplace_id: "axiomaticstudios.one-monokai-80s" version: "2.6.6" - installs: 61821 + installs: 61824 author: "Axiomatic Studios" repo: "https://github.com/marcelo-mason/one-monokai-80s" url: "https://marketplace.visualstudio.com/items?itemName=axiomaticstudios.one-monokai-80s" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 65.4 black: 26.5 diff --git a/themes/onenv.yaml b/themes/onenv.yaml index 3fefdca6..58babb71 100644 --- a/themes/onenv.yaml +++ b/themes/onenv.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 257 + pair: null contrast: fg: 97.4 black: 0 diff --git a/themes/oni-theme.yaml b/themes/oni-theme.yaml index 959478c7..6e2bb831 100644 --- a/themes/oni-theme.yaml +++ b/themes/oni-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 104 black: 0 diff --git a/themes/onlydark.yaml b/themes/onlydark.yaml index 68e77698..be0c304e 100644 --- a/themes/onlydark.yaml +++ b/themes/onlydark.yaml @@ -1,13 +1,13 @@ name: "OnlyDark" source: - marketplace_id: "YesCode.inspiration" - version: "0.0.19" - installs: 1076 + marketplace_id: "YesCode.only-dark-theme" + version: "0.0.16" + installs: 383 author: "YesCode" - repo: "https://github.com/yesomac/inspiration_themevsc" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" + repo: "https://github.com/yesomac/only_dark" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" colors: - bg: "#1A1A1A" + bg: "#16171B" fg: "#EEFFFF" black: "#1D2021" red: "#FB543F" @@ -29,21 +29,22 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: - fg: 104.2 + fg: 104.5 black: 0 - red: 41.6 - green: 60.6 - yellow: 72.7 - blue: 47.2 - magenta: 19.2 - cyan: 49.1 - white: 46.9 - brightBlack: 18.3 - brightRed: 41.6 - brightGreen: 63.4 - brightYellow: 63.4 - brightBlue: 18.4 - brightMagenta: 19.2 - brightCyan: 49.1 - brightWhite: 98.5 + red: 42 + green: 61 + yellow: 73 + blue: 47.5 + magenta: 19.5 + cyan: 49.4 + white: 47.2 + brightBlack: 18.6 + brightRed: 42 + brightGreen: 63.7 + brightYellow: 63.7 + brightBlue: 18.7 + brightMagenta: 19.5 + brightCyan: 49.4 + brightWhite: 98.8 diff --git a/themes/onora.yaml b/themes/onora.yaml index 0e76ec62..152c5ae9 100644 --- a/themes/onora.yaml +++ b/themes/onora.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 236 + pair: null contrast: fg: 101.2 black: 0 diff --git a/themes/onyx-core.yaml b/themes/onyx-core.yaml index ea112c3b..cd2dddc7 100644 --- a/themes/onyx-core.yaml +++ b/themes/onyx-core.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 56.3 black: 0 diff --git a/themes/onyx-ghost.yaml b/themes/onyx-ghost.yaml index 09d929f7..7d293096 100644 --- a/themes/onyx-ghost.yaml +++ b/themes/onyx-ghost.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 56.8 black: 0 diff --git a/themes/onyx-theme-color.yaml b/themes/onyx-theme-color.yaml index 31deaf7f..14a932f6 100644 --- a/themes/onyx-theme-color.yaml +++ b/themes/onyx-theme-color.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 89.8 black: 0 diff --git a/themes/onyx.yaml b/themes/onyx.yaml index 97345d91..c85a38bb 100644 --- a/themes/onyx.yaml +++ b/themes/onyx.yaml @@ -1,49 +1,50 @@ name: "Onyx" source: - marketplace_id: "Priyaank.ether" - version: "2.0.1" - installs: 55 - author: "Priyaank" - repo: "https://github.com/PRIYAANK2510/Ether" - url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.ether" + marketplace_id: "doay.onyx" + version: "0.0.4" + installs: 1235 + author: "Doa Yakut Kilic" + repo: "https://github.com/doayakut/onyx" + url: "https://marketplace.visualstudio.com/items?itemName=doay.onyx" colors: - bg: "#1F1F1F" - fg: "#808080" - black: "#181818" - red: "#A94B67" - green: "#499F71" - yellow: "#B4927A" - blue: "#73B3E4" - magenta: "#556FB6" - cyan: "#83918E" - white: "#DFDFDF" - brightBlack: "#707070" - brightRed: "#C15D7D" - brightGreen: "#5AB585" - brightYellow: "#CAA78E" - brightBlue: "#8BC4ED" - brightMagenta: "#6A83C7" - brightCyan: "#9AA8A5" - brightWhite: "#F0F0F0" + bg: "#222222" + fg: "#CCCCCC" + black: "#000000" + red: "#AA3731" + green: "#448C27" + yellow: "#CB9000" + blue: "#325CC0" + magenta: "#7A3E9D" + cyan: "#0083B2" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#F05050" + brightGreen: "#60CB00" + brightYellow: "#FFBC5D" + brightBlue: "#007ACC" + brightMagenta: "#E64CE6" + brightCyan: "#00AACB" + brightWhite: "#CCCCCC" meta: mode: "dark" - accent: "red" + accent: "pink" hue: null + pair: null contrast: - fg: 32.8 + fg: 73.2 black: 0 - red: 23.4 - green: 40.3 - yellow: 45.1 - blue: 55.7 - magenta: 26.3 - cyan: 39.6 - white: 85.3 - brightBlack: 25.4 - brightRed: 32 - brightGreen: 51 - brightYellow: 56.3 - brightBlue: 65.2 - brightMagenta: 35.3 - brightCyan: 51.5 - brightWhite: 96.1 + red: 18.8 + green: 30.7 + yellow: 46 + blue: 19.3 + magenta: 15.8 + cyan: 30.2 + white: 73.2 + brightBlack: 28.1 + brightRed: 37.6 + brightGreen: 59.4 + brightYellow: 71.3 + brightBlue: 28.6 + brightMagenta: 41.1 + brightCyan: 46.8 + brightWhite: 73.2 diff --git a/themes/ook.yaml b/themes/ook.yaml index 5a703e70..c50de7aa 100644 --- a/themes/ook.yaml +++ b/themes/ook.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 60.8 black: 0 diff --git a/themes/oolory-dark-color-theme.yaml b/themes/oolory-dark-color-theme.yaml index 9b8b9b10..35139f77 100644 --- a/themes/oolory-dark-color-theme.yaml +++ b/themes/oolory-dark-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 107.9 diff --git a/themes/openbase.yaml b/themes/openbase.yaml index 3a855a40..daf4f0ec 100644 --- a/themes/openbase.yaml +++ b/themes/openbase.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: null contrast: fg: 71.3 black: 0 diff --git a/themes/openspace-dark-flat.yaml b/themes/openspace-dark-flat.yaml index 9a6fa2fb..6756682c 100644 --- a/themes/openspace-dark-flat.yaml +++ b/themes/openspace-dark-flat.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/openspace-dark.yaml b/themes/openspace-dark.yaml index f8704d52..ec4283bc 100644 --- a/themes/openspace-dark.yaml +++ b/themes/openspace-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 84.1 black: 0 diff --git a/themes/openspace.yaml b/themes/openspace.yaml index 3fe59307..129a3113 100644 --- a/themes/openspace.yaml +++ b/themes/openspace.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 84.1 black: 0 diff --git a/themes/optimus-dark.yaml b/themes/optimus-dark.yaml index f2108dc9..b067921e 100644 --- a/themes/optimus-dark.yaml +++ b/themes/optimus-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.3 black: 9.3 diff --git a/themes/oq-dark-soft.yaml b/themes/oq-dark-soft.yaml deleted file mode 100644 index 2cf9d789..00000000 --- a/themes/oq-dark-soft.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "oQ Dark Soft" -source: - marketplace_id: "froQ.theme-oq" - version: "0.0.7" - installs: 16 - author: "froQ" - repo: "https://github.com/Fro-Q/vscode-theme-oq" - url: "https://marketplace.visualstudio.com/items?itemName=froQ.theme-oq" -colors: - bg: "#272828" - fg: "#B7B3B0" - black: "#272828" - red: "#E79A9A" - green: "#69C493" - yellow: "#D7B366" - blue: "#6FA8F0" - magenta: "#B57AA7" - cyan: "#68B7B7" - white: "#FFF9F5" - brightBlack: "#272727" - brightRed: "#A45B5B" - brightGreen: "#387A55" - brightYellow: "#916F3B" - brightBlue: "#3F6496" - brightMagenta: "#774D70" - brightCyan: "#3A7878" - brightWhite: "#FFF9F5" -meta: - mode: "dark" - accent: "indigo" - hue: null - contrast: - fg: 58.2 - black: 0 - red: 55.3 - green: 57.5 - yellow: 60.4 - blue: 50.4 - magenta: 37.7 - cyan: 53 - white: 101.2 - brightBlack: 0 - brightRed: 24.2 - brightGreen: 23.1 - brightYellow: 26.2 - brightBlue: 18.4 - brightMagenta: 15.1 - brightCyan: 23.4 - brightWhite: 101.2 diff --git a/themes/oq-dark.yaml b/themes/oq-dark.yaml deleted file mode 100644 index 69741c66..00000000 --- a/themes/oq-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "oQ Dark" -source: - marketplace_id: "froQ.theme-oq" - version: "0.0.7" - installs: 16 - author: "froQ" - repo: "https://github.com/Fro-Q/vscode-theme-oq" - url: "https://marketplace.visualstudio.com/items?itemName=froQ.theme-oq" -colors: - bg: "#0F1010" - fg: "#B7B3B0" - black: "#0F1010" - red: "#E79A9A" - green: "#69C493" - yellow: "#D7B366" - blue: "#6FA8F0" - magenta: "#B57AA7" - cyan: "#68B7B7" - white: "#FFF9F5" - brightBlack: "#272727" - brightRed: "#A45B5B" - brightGreen: "#387A55" - brightYellow: "#916F3B" - brightBlue: "#3F6496" - brightMagenta: "#774D70" - brightCyan: "#3A7878" - brightWhite: "#FFF9F5" -meta: - mode: "dark" - accent: "indigo" - hue: null - contrast: - fg: 61.2 - black: 0 - red: 58.3 - green: 60.5 - yellow: 63.4 - blue: 53.3 - magenta: 40.7 - cyan: 56 - white: 104.2 - brightBlack: 0 - brightRed: 27.2 - brightGreen: 26 - brightYellow: 29.2 - brightBlue: 21.4 - brightMagenta: 18.1 - brightCyan: 26.4 - brightWhite: 104.2 diff --git a/themes/oq-light-soft.yaml b/themes/oq-light-soft.yaml deleted file mode 100644 index dc0e96f5..00000000 --- a/themes/oq-light-soft.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "oQ Light Soft" -source: - marketplace_id: "froQ.theme-oq" - version: "0.0.7" - installs: 16 - author: "froQ" - repo: "https://github.com/Fro-Q/vscode-theme-oq" - url: "https://marketplace.visualstudio.com/items?itemName=froQ.theme-oq" -colors: - bg: "#E6E0DD" - fg: "#575655" - black: "#E6E0DD" - red: "#E79A9A" - green: "#69C493" - yellow: "#D7B366" - blue: "#6FA8F0" - magenta: "#B57AA7" - cyan: "#68B7B7" - white: "#0F1010" - brightBlack: "#E7E2DE" - brightRed: "#F7C7C7" - brightGreen: "#A3E4B8" - brightYellow: "#F1D89B" - brightBlue: "#AACDF7" - brightMagenta: "#E1B9D5" - brightCyan: "#A2E1E1" - brightWhite: "#0F1010" -meta: - mode: "light" - accent: "indigo" - hue: null - contrast: - fg: 67.9 - black: 0 - red: 25.8 - green: 23.7 - yellow: 20.9 - blue: 30.6 - magenta: 43 - cyan: 28 - white: 87.9 - brightBlack: 0 - brightRed: 0 - brightGreen: 0 - brightYellow: 0 - brightBlue: 10.9 - brightMagenta: 13.8 - brightCyan: 0 - brightWhite: 87.9 diff --git a/themes/oq-light.yaml b/themes/oq-light.yaml deleted file mode 100644 index 6ce9c88b..00000000 --- a/themes/oq-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "oQ Light" -source: - marketplace_id: "froQ.theme-oq" - version: "0.0.7" - installs: 16 - author: "froQ" - repo: "https://github.com/Fro-Q/vscode-theme-oq" - url: "https://marketplace.visualstudio.com/items?itemName=froQ.theme-oq" -colors: - bg: "#FFF9F5" - fg: "#575655" - black: "#FFF9F5" - red: "#E79A9A" - green: "#69C493" - yellow: "#D7B366" - blue: "#6FA8F0" - magenta: "#B57AA7" - cyan: "#68B7B7" - white: "#0F1010" - brightBlack: "#E7E2DE" - brightRed: "#F7C7C7" - brightGreen: "#A3E4B8" - brightYellow: "#F1D89B" - brightBlue: "#AACDF7" - brightMagenta: "#E1B9D5" - brightCyan: "#A2E1E1" - brightWhite: "#0F1010" -meta: - mode: "light" - accent: "indigo" - hue: null - contrast: - fg: 82.5 - black: 0 - red: 40.5 - green: 38.3 - yellow: 35.5 - blue: 45.2 - magenta: 57.6 - cyan: 42.7 - white: 102.5 - brightBlack: 11.2 - brightRed: 20.6 - brightGreen: 18.9 - brightYellow: 16.2 - brightBlue: 25.5 - brightMagenta: 28.5 - brightCyan: 18.8 - brightWhite: 102.5 diff --git a/themes/oradia.yaml b/themes/oradia.yaml index 220c3cb3..cae2bafd 100644 --- a/themes/oradia.yaml +++ b/themes/oradia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.3 black: 0 diff --git a/themes/oragethemedark.yaml b/themes/oragethemedark.yaml index 531864b0..caaaf3b6 100644 --- a/themes/oragethemedark.yaml +++ b/themes/oragethemedark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 36.8 black: 0 diff --git a/themes/orago-s-warm-theme.yaml b/themes/orago-s-warm-theme.yaml index 9fb949c6..d87dd867 100644 --- a/themes/orago-s-warm-theme.yaml +++ b/themes/orago-s-warm-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 54 + pair: null contrast: fg: 30.9 black: 23.4 diff --git a/themes/orange-coral.yaml b/themes/orange-coral.yaml index a58b3b0b..62efb382 100644 --- a/themes/orange-coral.yaml +++ b/themes/orange-coral.yaml @@ -1,11 +1,11 @@ name: "orange coral" source: - marketplace_id: "FinnyComet.coral" - version: "1.9.0" - installs: 1464 + marketplace_id: "FinnyComet.coral-ico" + version: "1.6.0" + installs: 545 author: "Lorenzo" repo: "https://github.com/FinnyComet32985/Coral-theme-for-vs-code" - url: "https://marketplace.visualstudio.com/items?itemName=FinnyComet.coral" + url: "https://marketplace.visualstudio.com/items?itemName=FinnyComet.coral-ico" colors: bg: "#131C26" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 252 + pair: null contrast: fg: 79 black: 0 diff --git a/themes/orange-dark.yaml b/themes/orange-dark.yaml index c36bfdc5..69b959c6 100644 --- a/themes/orange-dark.yaml +++ b/themes/orange-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 64.5 black: 0 diff --git a/themes/orange.yaml b/themes/orange.yaml index 02ca7b32..12ec4e29 100644 --- a/themes/orange.yaml +++ b/themes/orange.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 71.8 black: 0 diff --git a/themes/orangefox-dark.yaml b/themes/orangefox-dark.yaml index 02e3a35b..875df8a7 100644 --- a/themes/orangefox-dark.yaml +++ b/themes/orangefox-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "OrangeFox Light" contrast: fg: 73.4 black: 0 diff --git a/themes/orangefox-light.yaml b/themes/orangefox-light.yaml index 933cefd5..30319072 100644 --- a/themes/orangefox-light.yaml +++ b/themes/orangefox-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "OrangeFox Dark" contrast: fg: 100.6 black: 106 diff --git a/themes/orangey-darker-1.yaml b/themes/orangey-darker-1.yaml index c148f196..b0fd09b1 100644 --- a/themes/orangey-darker-1.yaml +++ b/themes/orangey-darker-1.yaml @@ -2,7 +2,7 @@ name: "Orangey (Darker 1)" source: marketplace_id: "ricafolio.orangey-vscode-theme" version: "1.1.1" - installs: 969 + installs: 973 author: "ricafolio" repo: "https://github.com/ricafolio/orangey-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 91.2 black: 0 diff --git a/themes/orangey-darker-2.yaml b/themes/orangey-darker-2.yaml index 2b885bc6..3269b81c 100644 --- a/themes/orangey-darker-2.yaml +++ b/themes/orangey-darker-2.yaml @@ -2,7 +2,7 @@ name: "Orangey (Darker 2)" source: marketplace_id: "ricafolio.orangey-vscode-theme" version: "1.1.1" - installs: 969 + installs: 973 author: "ricafolio" repo: "https://github.com/ricafolio/orangey-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 91.8 black: 0 diff --git a/themes/orangey-lighter-1.yaml b/themes/orangey-lighter-1.yaml index 870b449f..3083d3b1 100644 --- a/themes/orangey-lighter-1.yaml +++ b/themes/orangey-lighter-1.yaml @@ -2,7 +2,7 @@ name: "Orangey (Lighter 1)" source: marketplace_id: "ricafolio.orangey-vscode-theme" version: "1.1.1" - installs: 969 + installs: 973 author: "ricafolio" repo: "https://github.com/ricafolio/orangey-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 89.5 black: 0 diff --git a/themes/orangey-lighter-2.yaml b/themes/orangey-lighter-2.yaml index be8156f5..744032c2 100644 --- a/themes/orangey-lighter-2.yaml +++ b/themes/orangey-lighter-2.yaml @@ -2,7 +2,7 @@ name: "Orangey (Lighter 2)" source: marketplace_id: "ricafolio.orangey-vscode-theme" version: "1.1.1" - installs: 969 + installs: 973 author: "ricafolio" repo: "https://github.com/ricafolio/orangey-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 88.7 black: 0 diff --git a/themes/orangey.yaml b/themes/orangey.yaml index e2986e67..cf0eeb48 100644 --- a/themes/orangey.yaml +++ b/themes/orangey.yaml @@ -2,7 +2,7 @@ name: "Orangey" source: marketplace_id: "ricafolio.orangey-vscode-theme" version: "1.1.1" - installs: 969 + installs: 973 author: "ricafolio" repo: "https://github.com/ricafolio/orangey-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 90.4 black: 0 diff --git a/themes/orbi-blue.yaml b/themes/orbi-blue.yaml index 6cd53206..2d1aedaa 100644 --- a/themes/orbi-blue.yaml +++ b/themes/orbi-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 38 black: 0 diff --git a/themes/orbi-green.yaml b/themes/orbi-green.yaml deleted file mode 100644 index a8671f54..00000000 --- a/themes/orbi-green.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Orbi Green" -source: - marketplace_id: "anishde12020.orbi" - version: "1.4.0" - installs: 1051 - author: "AnishDe12020" - repo: "https://github.com/AnishDe12020/orbi" - url: "https://marketplace.visualstudio.com/items?itemName=anishde12020.orbi" -colors: - bg: "#000000" - fg: "#868690" - black: "#000000" - red: "#FF8888" - green: "#A4FF85" - yellow: "#FFCB86" - blue: "#86D3FF" - magenta: "#D4A8FF" - cyan: "#A0FFDF" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#FD7279" - brightGreen: "#CDFF68" - brightYellow: "#FFA939" - brightBlue: "#48BCFF" - brightMagenta: "#BC78FF" - brightCyan: "#58FFC7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: null - contrast: - fg: 38 - black: 0 - red: 57.2 - green: 93.5 - yellow: 80.5 - blue: 74.5 - magenta: 65.4 - cyan: 96 - white: 72.7 - brightBlack: 23.9 - brightRed: 50.6 - brightGreen: 96.9 - brightYellow: 66.3 - brightBlue: 61.1 - brightMagenta: 47 - brightCyan: 90.9 - brightWhite: 107.9 diff --git a/themes/orca.yaml b/themes/orca.yaml index c28b72c0..962d8a2d 100644 --- a/themes/orca.yaml +++ b/themes/orca.yaml @@ -1,11 +1,11 @@ name: "Orca" source: - marketplace_id: "sserafy.ttera-themes" - version: "2.0.7" - installs: 2036 + marketplace_id: "sserafy.ssera-themes" + version: "2.0.2" + installs: 334 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: bg: "#000000" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/origami-theme.yaml b/themes/origami-theme.yaml index bca63388..81464d62 100644 --- a/themes/origami-theme.yaml +++ b/themes/origami-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 107.3 black: 0 diff --git a/themes/origamid.yaml b/themes/origamid.yaml index 529e708c..cbdb52cb 100644 --- a/themes/origamid.yaml +++ b/themes/origamid.yaml @@ -2,7 +2,7 @@ name: "Origamid" source: marketplace_id: "origamid.origamid-theme" version: "1.1.7" - installs: 63053 + installs: 63070 author: "Origamid" repo: "https://github.com/origamid/origamid-vscode" url: "https://marketplace.visualstudio.com/items?itemName=origamid.origamid-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 105.5 black: 0 diff --git a/themes/orion-x-black.yaml b/themes/orion-x-black.yaml index c00cc683..73c707e7 100644 --- a/themes/orion-x-black.yaml +++ b/themes/orion-x-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/orwellian-nightmare.yaml b/themes/orwellian-nightmare.yaml index 455c8a30..fa2d06f0 100644 --- a/themes/orwellian-nightmare.yaml +++ b/themes/orwellian-nightmare.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/osaka-solarized-pro-dark.yaml b/themes/osaka-solarized-pro-dark.yaml index 914e5805..aaeaf8b3 100644 --- a/themes/osaka-solarized-pro-dark.yaml +++ b/themes/osaka-solarized-pro-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 219 + pair: "Osaka Solarized Pro Light" contrast: fg: 57.5 black: 0 diff --git a/themes/osaka-solarized-pro-light.yaml b/themes/osaka-solarized-pro-light.yaml index 41dcbcc5..42f8d733 100644 --- a/themes/osaka-solarized-pro-light.yaml +++ b/themes/osaka-solarized-pro-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Osaka Solarized Pro Dark" contrast: fg: 65.7 black: 97.2 diff --git a/themes/osaka-solarized-pro-monokai-storm.yaml b/themes/osaka-solarized-pro-monokai-storm.yaml index 10301b0c..c9d24415 100644 --- a/themes/osaka-solarized-pro-monokai-storm.yaml +++ b/themes/osaka-solarized-pro-monokai-storm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 284 + pair: null contrast: fg: 80.8 black: 10.1 diff --git a/themes/oslo-dark.yaml b/themes/oslo-dark.yaml index fa53da81..3d4500da 100644 --- a/themes/oslo-dark.yaml +++ b/themes/oslo-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 92.3 black: 0 diff --git a/themes/osmoz-dark.yaml b/themes/osmoz-dark.yaml index e17e4c40..2dc243fe 100644 --- a/themes/osmoz-dark.yaml +++ b/themes/osmoz-dark.yaml @@ -2,7 +2,7 @@ name: "Osmoz Dark" source: marketplace_id: "ArthurRasera.osmoz" version: "1.1.1" - installs: 58 + installs: 59 author: "Arthur Rasera" repo: "https://github.com/Raseraa0/osmoz-theme" url: "https://marketplace.visualstudio.com/items?itemName=ArthurRasera.osmoz" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 287 + pair: null contrast: fg: 62 black: 0 diff --git a/themes/osx9.yaml b/themes/osx9.yaml index c08a68f8..d45b2d32 100644 --- a/themes/osx9.yaml +++ b/themes/osx9.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 269 + pair: null contrast: fg: 61 black: 85.5 diff --git a/themes/otakon-contrast.yaml b/themes/otakon-contrast.yaml index 5f27337a..c8fbf095 100644 --- a/themes/otakon-contrast.yaml +++ b/themes/otakon-contrast.yaml @@ -1,11 +1,11 @@ name: "otakon-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#171417" fg: "#F9F3F9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 100.3 black: 0 diff --git a/themes/otakon-light.yaml b/themes/otakon-light.yaml index f440febd..c2c0fd49 100644 --- a/themes/otakon-light.yaml +++ b/themes/otakon-light.yaml @@ -1,11 +1,11 @@ name: "otakon-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#514B60" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 88.7 black: 0 diff --git a/themes/otakon.yaml b/themes/otakon.yaml index d66e168c..f2d1b4b5 100644 --- a/themes/otakon.yaml +++ b/themes/otakon.yaml @@ -1,11 +1,11 @@ name: "otakon" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#3F373F" fg: "#F9F3F9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 326 + pair: null contrast: fg: 93.4 black: 0 diff --git a/themes/outrun-contrast.yaml b/themes/outrun-contrast.yaml deleted file mode 100644 index bd36ad50..00000000 --- a/themes/outrun-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Outrun Contrast" -source: - marketplace_id: "samrapdev.outrun" - version: "0.2.2" - installs: 109346 - author: "samrapdev" - repo: "https://github.com/samrap/outrun-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=samrapdev.outrun" -colors: - bg: "#0C0A20" - fg: "#F8F8F2" - black: "#283034" - red: "#FF0081" - green: "#62A9CF" - yellow: "#F4B80C" - blue: "#42C6FF" - magenta: "#FF2AFC" - cyan: "#42C6FF" - white: "#D9E0E9" - brightBlack: "#435056" - brightRed: "#FF0081" - brightGreen: "#ADD0E5" - brightYellow: "#F4B80C" - brightBlue: "#42C6FF" - brightMagenta: "#FF2AFC" - brightCyan: "#42C6FF" - brightWhite: "#F4F6F9" -meta: - mode: "dark" - accent: "pink" - hue: 284 - contrast: - fg: 102.7 - black: 0 - red: 39 - green: 51.1 - yellow: 69.4 - blue: 65 - magenta: 46.7 - cyan: 65 - white: 87.1 - brightBlack: 13.1 - brightRed: 39 - brightGreen: 74.7 - brightYellow: 69.4 - brightBlue: 65 - brightMagenta: 46.7 - brightCyan: 65 - brightWhite: 101.5 diff --git a/themes/outrun-dark.yaml b/themes/outrun-dark.yaml index 89c47666..472520f6 100644 --- a/themes/outrun-dark.yaml +++ b/themes/outrun-dark.yaml @@ -1,14 +1,14 @@ name: "Outrun Dark" source: - marketplace_id: "hhochart29.outrun" - version: "1.1.3" - installs: 6264 - author: "hhochart29" - repo: "https://github.com/hhochart29/outrun-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=hhochart29.outrun" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#161130" - fg: "#EEEEEE" + fg: "#EBECF8" black: "#283034" red: "#FF2E97" green: "#62A9CF" @@ -29,8 +29,9 @@ meta: mode: "dark" accent: "pink" hue: 287 + pair: null contrast: - fg: 95.8 + fg: 94.9 black: 0 red: 40.6 green: 50.4 diff --git a/themes/overflow-contrast.yaml b/themes/overflow-contrast.yaml index ab9a94fd..6db257b9 100644 --- a/themes/overflow-contrast.yaml +++ b/themes/overflow-contrast.yaml @@ -1,11 +1,11 @@ name: "overflow-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#14181C" fg: "#AEB9C4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 248 + pair: null contrast: fg: 62.7 black: 0 diff --git a/themes/overflow-light.yaml b/themes/overflow-light.yaml index 48abbbf3..e273a8bf 100644 --- a/themes/overflow-light.yaml +++ b/themes/overflow-light.yaml @@ -1,11 +1,11 @@ name: "overflow-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#3E4956" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 91.1 black: 0 diff --git a/themes/overflow.yaml b/themes/overflow.yaml index 9b7f67bf..29c0ae09 100644 --- a/themes/overflow.yaml +++ b/themes/overflow.yaml @@ -1,11 +1,11 @@ name: "overflow" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#252C33" fg: "#AEB9C4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 248 + pair: null contrast: fg: 59.7 black: 0 diff --git a/themes/overload.yaml b/themes/overload.yaml index 44fcc12b..ef60fa01 100644 --- a/themes/overload.yaml +++ b/themes/overload.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 66.3 black: 0 diff --git a/themes/overnight-italic.yaml b/themes/overnight-italic.yaml deleted file mode 100644 index d4e817b9..00000000 --- a/themes/overnight-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Overnight Italic" -source: - marketplace_id: "cev.overnight" - version: "1.8.4" - installs: 25654 - author: "cev" - repo: "https://github.com/cevr/overnight" - url: "https://marketplace.visualstudio.com/items?itemName=cev.overnight" -colors: - bg: "#0E1729" - fg: "#D6D9E0" - black: "#2E384D" - red: "#F87086" - green: "#BBD99E" - yellow: "#ECC48D" - blue: "#8EACE3" - magenta: "#C792EA" - cyan: "#92D8E6" - white: "#D6D9E0" - brightBlack: "#3D485F" - brightRed: "#FFB3B3" - brightGreen: "#C9E2AF" - brightYellow: "#ECC48D" - brightBlue: "#ACD1F5" - brightMagenta: "#CCB3FF" - brightCyan: "#A5E0EC" - brightWhite: "#F2F2F2" -meta: - mode: "dark" - accent: "red" - hue: 263 - contrast: - fg: 82.4 - black: 0 - red: 48.4 - green: 76.7 - yellow: 73.6 - blue: 55.9 - magenta: 53.7 - cyan: 75.2 - white: 82.4 - brightBlack: 10.2 - brightRed: 71.4 - brightGreen: 82.9 - brightYellow: 73.6 - brightBlue: 75.2 - brightMagenta: 67.2 - brightCyan: 80.8 - brightWhite: 98.3 diff --git a/themes/owlet-default.yaml b/themes/owlet-default.yaml index 708e8afa..dd90e236 100644 --- a/themes/owlet-default.yaml +++ b/themes/owlet-default.yaml @@ -2,7 +2,7 @@ name: "Owlet (Default)" source: marketplace_id: "itsjonq.owlet" version: "0.1.22" - installs: 10595 + installs: 10596 author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 264 + pair: null contrast: fg: 83.8 black: 0 diff --git a/themes/owlet-material.yaml b/themes/owlet-material.yaml index 5109227a..ad060296 100644 --- a/themes/owlet-material.yaml +++ b/themes/owlet-material.yaml @@ -2,7 +2,7 @@ name: "Owlet (Material)" source: marketplace_id: "itsjonq.owlet" version: "0.1.22" - installs: 10595 + installs: 10596 author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 227 + pair: null contrast: fg: 81 black: 0 diff --git a/themes/owlet-mono.yaml b/themes/owlet-mono.yaml index af666fd5..803e1fa9 100644 --- a/themes/owlet-mono.yaml +++ b/themes/owlet-mono.yaml @@ -2,7 +2,7 @@ name: "Owlet (Mono)" source: marketplace_id: "itsjonq.owlet" version: "0.1.22" - installs: 10595 + installs: 10596 author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 96.3 black: 0 diff --git a/themes/owlet-outrun.yaml b/themes/owlet-outrun.yaml index e8c2437d..0e2a0cbb 100644 --- a/themes/owlet-outrun.yaml +++ b/themes/owlet-outrun.yaml @@ -2,7 +2,7 @@ name: "Owlet (Outrun)" source: marketplace_id: "itsjonq.owlet" version: "0.1.22" - installs: 10595 + installs: 10596 author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 296 + pair: null contrast: fg: 86 black: 0 diff --git a/themes/owlet-solarized.yaml b/themes/owlet-solarized.yaml index ec97e293..d3ca2b53 100644 --- a/themes/owlet-solarized.yaml +++ b/themes/owlet-solarized.yaml @@ -2,7 +2,7 @@ name: "Owlet (Solarized)" source: marketplace_id: "itsjonq.owlet" version: "0.1.22" - installs: 10595 + installs: 10596 author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 223 + pair: null contrast: fg: 82.7 black: 0 diff --git a/themes/owokai-hard.yaml b/themes/owokai-hard.yaml index a0e46d94..933f45c8 100644 --- a/themes/owokai-hard.yaml +++ b/themes/owokai-hard.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85.1 black: 0 diff --git a/themes/owokai.yaml b/themes/owokai.yaml index f5d02ed2..8cd00088 100644 --- a/themes/owokai.yaml +++ b/themes/owokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 91.5 black: 0 diff --git a/themes/oxide.yaml b/themes/oxide.yaml deleted file mode 100644 index bdba2f62..00000000 --- a/themes/oxide.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Oxide" -source: - marketplace_id: "oxidescheme.oxide-theme" - version: "0.1.1" - installs: 14 - author: "oxidescheme" - repo: "https://github.com/oxidescheme/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=oxidescheme.oxide-theme" -colors: - bg: "#161616" - fg: "#CECECE" - black: "#262626" - red: "#ED756E" - green: "#5BB661" - yellow: "#C39900" - blue: "#3BA6F5" - magenta: "#968FF7" - cyan: "#00BAAA" - white: "#CECECE" - brightBlack: "#8F8F8F" - brightRed: "#FF9890" - brightGreen: "#7BD77F" - brightYellow: "#E3B831" - brightBlue: "#6FC6FF" - brightMagenta: "#B5B2FF" - brightCyan: "#00DCCA" - brightWhite: "#DEDEDE" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 76 - black: 0 - red: 46.8 - green: 51.7 - yellow: 49.4 - blue: 50 - magenta: 47.5 - cyan: 53.8 - white: 76 - brightBlack: 41.2 - brightRed: 61.3 - brightGreen: 69.5 - brightYellow: 66.1 - brightBlue: 66.3 - brightMagenta: 64.1 - brightCyan: 71 - brightWhite: 85.7 diff --git a/themes/oxocarbon-5.yaml b/themes/oxocarbon-5.yaml index 2d8f7b20..f38c063c 100644 --- a/themes/oxocarbon-5.yaml +++ b/themes/oxocarbon-5.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 104.8 black: 102 diff --git a/themes/oxocarbon-compatibility.yaml b/themes/oxocarbon-compatibility.yaml deleted file mode 100644 index c348d60c..00000000 --- a/themes/oxocarbon-compatibility.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Oxocarbon (compatibility)" -source: - marketplace_id: "NyoomEngineering.oxocarbon-vscode" - version: "1.2.0" - installs: 1556 - author: "Nyoom Engineering" - repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" -colors: - bg: "#161616" - fg: "#F2F4F8" - black: "#161616" - red: "#78A9FF" - green: "#FF7EB6" - yellow: "#42BE65" - blue: "#08BDBA" - magenta: "#82CFFF" - cyan: "#33B1FF" - white: "#DDE1E6" - brightBlack: "#525252" - brightRed: "#78A9FF" - brightGreen: "#FF7EB6" - brightYellow: "#42BE65" - brightBlue: "#08BDBA" - brightMagenta: "#82CFFF" - brightCyan: "#33B1FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 99.6 - black: 0 - red: 54.9 - green: 55.2 - yellow: 54.4 - blue: 55.8 - magenta: 71.5 - cyan: 55 - white: 87.3 - brightBlack: 14 - brightRed: 54.9 - brightGreen: 55.2 - brightYellow: 54.4 - brightBlue: 55.8 - brightMagenta: 71.5 - brightCyan: 55 - brightWhite: 107 diff --git a/themes/oxocarbon-monochrom-compatibility.yaml b/themes/oxocarbon-monochrom-compatibility.yaml deleted file mode 100644 index c4e43462..00000000 --- a/themes/oxocarbon-monochrom-compatibility.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Oxocarbon Monochrom (compatibility)" -source: - marketplace_id: "NyoomEngineering.oxocarbon-vscode" - version: "1.2.0" - installs: 1556 - author: "Nyoom Engineering" - repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" -colors: - bg: "#161616" - fg: "#F2F4F8" - black: "#161616" - red: "#A8A8A8" - green: "#A8A8A8" - yellow: "#A8A8A8" - blue: "#A8A8A8" - magenta: "#C6C6C6" - cyan: "#A8A8A8" - white: "#DDE1E6" - brightBlack: "#525252" - brightRed: "#A8A8A8" - brightGreen: "#A8A8A8" - brightYellow: "#A8A8A8" - brightBlue: "#A8A8A8" - brightMagenta: "#C6C6C6" - brightCyan: "#A8A8A8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "indigo" - hue: null - contrast: - fg: 99.6 - black: 0 - red: 54.2 - green: 54.2 - yellow: 54.2 - blue: 54.2 - magenta: 71.2 - cyan: 54.2 - white: 87.3 - brightBlack: 14 - brightRed: 54.2 - brightGreen: 54.2 - brightYellow: 54.2 - brightBlue: 54.2 - brightMagenta: 71.2 - brightCyan: 54.2 - brightWhite: 107 diff --git a/themes/oxocarbon-oled-compatibility.yaml b/themes/oxocarbon-oled-compatibility.yaml deleted file mode 100644 index efbaea17..00000000 --- a/themes/oxocarbon-oled-compatibility.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Oxocarbon OLED (compatibility)" -source: - marketplace_id: "NyoomEngineering.oxocarbon-vscode" - version: "1.2.0" - installs: 1556 - author: "Nyoom Engineering" - repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" -colors: - bg: "#000000" - fg: "#F2F4F8" - black: "#000000" - red: "#78A9FF" - green: "#FF7EB6" - yellow: "#42BE65" - blue: "#08BDBA" - magenta: "#82CFFF" - cyan: "#33B1FF" - white: "#DDE1E6" - brightBlack: "#393939" - brightRed: "#78A9FF" - brightGreen: "#FF7EB6" - brightYellow: "#42BE65" - brightBlue: "#08BDBA" - brightMagenta: "#82CFFF" - brightCyan: "#33B1FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 100.6 - black: 0 - red: 55.8 - green: 56.1 - yellow: 55.3 - blue: 56.7 - magenta: 72.4 - cyan: 55.9 - white: 88.2 - brightBlack: 0 - brightRed: 55.8 - brightGreen: 56.1 - brightYellow: 55.3 - brightBlue: 56.7 - brightMagenta: 72.4 - brightCyan: 55.9 - brightWhite: 107.9 diff --git a/themes/oxocarbon-oled-monochrom-compatibility.yaml b/themes/oxocarbon-oled-monochrom-compatibility.yaml index 93b71200..d6d5c10c 100644 --- a/themes/oxocarbon-oled-monochrom-compatibility.yaml +++ b/themes/oxocarbon-oled-monochrom-compatibility.yaml @@ -2,7 +2,7 @@ name: "Oxocarbon OLED Monochrom (compatibility)" source: marketplace_id: "NyoomEngineering.oxocarbon-vscode" version: "1.2.0" - installs: 1556 + installs: 1561 author: "Nyoom Engineering" repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 100.6 black: 0 diff --git a/themes/oxocarbon-oled-monochrom.yaml b/themes/oxocarbon-oled-monochrom.yaml index b6d15e7a..31c42549 100644 --- a/themes/oxocarbon-oled-monochrom.yaml +++ b/themes/oxocarbon-oled-monochrom.yaml @@ -2,7 +2,7 @@ name: "Oxocarbon OLED Monochrom" source: marketplace_id: "NyoomEngineering.oxocarbon-vscode" version: "1.2.0" - installs: 1556 + installs: 1561 author: "Nyoom Engineering" repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 105.8 black: 0 diff --git a/themes/oxocarbon-port.yaml b/themes/oxocarbon-port.yaml index f8c2a503..97e1b947 100644 --- a/themes/oxocarbon-port.yaml +++ b/themes/oxocarbon-port.yaml @@ -2,7 +2,7 @@ name: "oxocarbon-port" source: marketplace_id: "beamlnwza.oxocarbon-port" version: "0.0.2" - installs: 1122 + installs: 1123 author: "beamlnwza" repo: null url: "https://marketplace.visualstudio.com/items?itemName=beamlnwza.oxocarbon-port" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 10 black: 0 diff --git a/themes/oxocarbonix-dark-theme.yaml b/themes/oxocarbonix-dark-theme.yaml index 5180b251..54436b88 100644 --- a/themes/oxocarbonix-dark-theme.yaml +++ b/themes/oxocarbonix-dark-theme.yaml @@ -2,7 +2,7 @@ name: "oXocarbonix dark theme" source: marketplace_id: "RonitGandhi.oxocarbonix" version: "2.3.1" - installs: 452 + installs: 453 author: "Ronit Gandhi" repo: "https://github.com/ronit18/oXocarbonix-vsc" url: "https://marketplace.visualstudio.com/items?itemName=RonitGandhi.oxocarbonix" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 92.5 black: 0 diff --git a/themes/ozzy.yaml b/themes/ozzy.yaml index 84135964..a6900701 100644 --- a/themes/ozzy.yaml +++ b/themes/ozzy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 252 + pair: null contrast: fg: 101.5 black: 0 diff --git a/themes/p-black.yaml b/themes/p-black.yaml deleted file mode 100644 index e873c8b9..00000000 --- a/themes/p-black.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Black" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#000000" - fg: "#F5DCBC" - black: "#3D3735" - red: "#EB1B00" - green: "#00A824" - yellow: "#FFBB00" - blue: "#2867B9" - magenta: "#D31353" - cyan: "#0BC2A3" - white: "#F5DCBC" - brightBlack: "#504D47" - brightRed: "#FF604B" - brightGreen: "#18D356" - brightYellow: "#FFD037" - brightBlue: "#43A4FF" - brightMagenta: "#FF24B6" - brightCyan: "#2AFDDA" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 87.7 - black: 0 - red: 33 - green: 43.7 - yellow: 72.8 - blue: 24 - magenta: 27.8 - cyan: 58.1 - white: 87.7 - brightBlack: 13.2 - brightRed: 46.2 - brightGreen: 64.3 - brightYellow: 81.4 - brightBlue: 51.1 - brightMagenta: 42.3 - brightCyan: 89.6 - brightWhite: 95.1 diff --git a/themes/p-citadel.yaml b/themes/p-citadel.yaml deleted file mode 100644 index 8fd1195a..00000000 --- a/themes/p-citadel.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Citadel" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#092630" - fg: "#E3B19D" - black: "#205263" - red: "#FF4128" - green: "#14AD35" - yellow: "#EBA31C" - blue: "#173FC3" - magenta: "#DB0F8D" - cyan: "#03D6DD" - white: "#E3B19D" - brightBlack: "#215769" - brightRed: "#FF5A44" - brightGreen: "#48EC7F" - brightYellow: "#FFD54C" - brightBlue: "#509FFF" - brightMagenta: "#FF46C8" - brightCyan: "#8FEBF2" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "pink" - hue: 224 - contrast: - fg: 63.7 - black: 10.3 - red: 38.3 - green: 43.5 - yellow: 57.7 - blue: 11.9 - magenta: 28.6 - cyan: 67.3 - white: 63.7 - brightBlack: 12 - brightRed: 42.4 - brightGreen: 75.8 - brightYellow: 81.1 - brightBlue: 47 - brightMagenta: 43.6 - brightCyan: 83 - brightWhite: 92.5 diff --git a/themes/p-crimson.yaml b/themes/p-crimson.yaml deleted file mode 100644 index 54e488c6..00000000 --- a/themes/p-crimson.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Crimson" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#FFFFFF" - fg: "#2B2B2B" - black: "#000000" - red: "#B61702" - green: "#009C22" - yellow: "#D68B01" - blue: "#1E5FB4" - magenta: "#D600C4" - cyan: "#0CB4B4" - white: "#C5C5C5" - brightBlack: "#3F3F3F" - brightRed: "#E43E28" - brightGreen: "#04B941" - brightYellow: "#FFB618" - brightBlue: "#2186E4" - brightMagenta: "#FF24E2" - brightCyan: "#12D6CC" - brightWhite: "#E4E4E4" -meta: - mode: "light" - accent: "pink" - hue: null - contrast: - fg: 100.9 - black: 106 - red: 81.2 - green: 63.1 - yellow: 53.2 - blue: 80.7 - magenta: 68.7 - cyan: 49.5 - white: 31.2 - brightBlack: 94.5 - brightRed: 67.4 - brightGreen: 50.3 - brightYellow: 31.8 - brightBlue: 64.5 - brightMagenta: 56.9 - brightCyan: 33.4 - brightWhite: 13.5 diff --git a/themes/p-dark.yaml b/themes/p-dark.yaml deleted file mode 100644 index 59d5cdd0..00000000 --- a/themes/p-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Dark" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#111212" - fg: "#DFC6BA" - black: "#4E4846" - red: "#CE3521" - green: "#05A829" - yellow: "#D37D0D" - blue: "#276AC2" - magenta: "#E0024C" - cyan: "#04C4A4" - white: "#DFC6BA" - brightBlack: "#6E6B64" - brightRed: "#FF553E" - brightGreen: "#69CB73" - brightYellow: "#FFAE18" - brightBlue: "#50A9FD" - brightMagenta: "#FF3478" - brightCyan: "#28F5D3" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 74.4 - black: 11.1 - red: 27.7 - green: 43.2 - yellow: 43.3 - blue: 25 - magenta: 29.9 - cyan: 58.4 - white: 74.4 - brightBlack: 24.7 - brightRed: 43.5 - brightGreen: 62.8 - brightYellow: 67.4 - brightBlue: 52.8 - brightMagenta: 40.4 - brightCyan: 84.5 - brightWhite: 94.6 diff --git a/themes/p-eggplant.yaml b/themes/p-eggplant.yaml deleted file mode 100644 index f654cf59..00000000 --- a/themes/p-eggplant.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Eggplant" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#1C1525" - fg: "#FFD9BB" - black: "#39353D" - red: "#CE3521" - green: "#05A829" - yellow: "#D37D0D" - blue: "#276AC2" - magenta: "#E0024C" - cyan: "#04C4A4" - white: "#CFB5A9" - brightBlack: "#4B4750" - brightRed: "#FF553E" - brightGreen: "#2DDD68" - brightYellow: "#FFB618" - brightBlue: "#50A9FD" - brightMagenta: "#FF3478" - brightCyan: "#28F5D3" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: 304 - contrast: - fg: 86.7 - black: 0 - red: 27.1 - green: 42.6 - yellow: 42.7 - blue: 24.4 - magenta: 29.3 - cyan: 57.9 - white: 64.1 - brightBlack: 10.3 - brightRed: 42.9 - brightGreen: 68.6 - brightYellow: 69.8 - brightBlue: 52.2 - brightMagenta: 39.8 - brightCyan: 84 - brightWhite: 94 diff --git a/themes/p-emerald.yaml b/themes/p-emerald.yaml deleted file mode 100644 index a4481ed4..00000000 --- a/themes/p-emerald.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Emerald" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#0A1A13" - fg: "#FAD6B9" - black: "#353D36" - red: "#CE3521" - green: "#05A829" - yellow: "#D3840D" - blue: "#3A76C4" - magenta: "#E0024C" - cyan: "#34B6A0" - white: "#CFB5A9" - brightBlack: "#47504A" - brightRed: "#FF553E" - brightGreen: "#2DDD68" - brightYellow: "#FFB618" - brightBlue: "#65B4FF" - brightMagenta: "#FF3478" - brightCyan: "#69F7DF" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: 164 - contrast: - fg: 84.7 - black: 0 - red: 27.2 - green: 42.7 - yellow: 44.9 - blue: 29 - magenta: 29.4 - cyan: 51.9 - white: 64.2 - brightBlack: 12.3 - brightRed: 43 - brightGreen: 68.7 - brightYellow: 69.9 - brightBlue: 57.9 - brightMagenta: 39.9 - brightCyan: 87.4 - brightWhite: 94.1 diff --git a/themes/p-eucalyptus.yaml b/themes/p-eucalyptus.yaml deleted file mode 100644 index d21bdce1..00000000 --- a/themes/p-eucalyptus.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Eucalyptus" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#21241E" - fg: "#E7B07D" - black: "#3D3735" - red: "#AD5145" - green: "#6EA03D" - yellow: "#B88F51" - blue: "#5477A5" - magenta: "#AE5975" - cyan: "#549878" - white: "#FAE5D6" - brightBlack: "#504D47" - brightRed: "#E35E4D" - brightGreen: "#8AC255" - brightYellow: "#E8B455" - brightBlue: "#6FB2D1" - brightMagenta: "#D66C8F" - brightCyan: "#7BC09D" - brightWhite: "#FFF2EC" -meta: - mode: "dark" - accent: "orange" - hue: 129 - contrast: - fg: 63.1 - black: 0 - red: 23.9 - green: 41.3 - yellow: 43.1 - blue: 27.2 - magenta: 26.9 - cyan: 37.5 - white: 90.8 - brightBlack: 10.6 - brightRed: 37.2 - brightGreen: 58.4 - brightYellow: 64.1 - brightBlue: 53.4 - brightMagenta: 39.4 - brightCyan: 58 - brightWhite: 98.3 diff --git a/themes/p-floresta.yaml b/themes/p-floresta.yaml deleted file mode 100644 index 3c59e20e..00000000 --- a/themes/p-floresta.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Floresta" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#07171A" - fg: "#FFD4C7" - black: "#26362F" - red: "#EC1C00" - green: "#068020" - yellow: "#D3940D" - blue: "#3465A5" - magenta: "#C40B71" - cyan: "#08A087" - white: "#FFD4C7" - brightBlack: "#3E4E45" - brightRed: "#FF6551" - brightGreen: "#24CA5B" - brightYellow: "#FFCA37" - brightBlue: "#3191EB" - brightMagenta: "#FF24BD" - brightCyan: "#2AE6C6" - brightWhite: "#FFFBF9" -meta: - mode: "dark" - accent: "pink" - hue: 211 - contrast: - fg: 85.4 - black: 0 - red: 32.4 - green: 26.3 - yellow: 50.2 - blue: 21.6 - magenta: 24.2 - cyan: 41.2 - white: 85.4 - brightBlack: 11.3 - brightRed: 46.5 - brightGreen: 59.3 - brightYellow: 78.1 - brightBlue: 41.1 - brightMagenta: 41.8 - brightCyan: 76.1 - brightWhite: 104.9 diff --git a/themes/p-frost.yaml b/themes/p-frost.yaml deleted file mode 100644 index 801a1019..00000000 --- a/themes/p-frost.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Frost" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#FFFFFF" - fg: "#186554" - black: "#000000" - red: "#B61702" - green: "#068020" - yellow: "#D37D0D" - blue: "#3465A5" - magenta: "#C40B48" - cyan: "#08A087" - white: "#A5B4AB" - brightBlack: "#4A574D" - brightRed: "#D43E2A" - brightGreen: "#1B9E47" - brightYellow: "#FF9B18" - brightBlue: "#3A89D3" - brightMagenta: "#FF246D" - brightCyan: "#1BDFBE" - brightWhite: "#C7CECB" -meta: - mode: "light" - accent: "red" - hue: null - contrast: - fg: 83.7 - black: 106 - red: 81.2 - green: 74.5 - yellow: 57.9 - blue: 79.3 - magenta: 77.8 - cyan: 59.6 - white: 42.5 - brightBlack: 86.4 - brightRed: 71 - brightGreen: 61.8 - brightYellow: 40.9 - brightBlue: 64.1 - brightMagenta: 62.1 - brightCyan: 29.8 - brightWhite: 27.1 diff --git a/themes/p-genmaicha.yaml b/themes/p-genmaicha.yaml deleted file mode 100644 index 28c12b8d..00000000 --- a/themes/p-genmaicha.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Genmaicha" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#F8DCA8" - fg: "#232729" - black: "#232729" - red: "#B61702" - green: "#009C22" - yellow: "#D68B01" - blue: "#1E5FB4" - magenta: "#D600C4" - cyan: "#0CB4B4" - white: "#C5C5C5" - brightBlack: "#3F3F3F" - brightRed: "#E43E28" - brightGreen: "#04B941" - brightYellow: "#FFB618" - brightBlue: "#2186E4" - brightMagenta: "#FF24E2" - brightCyan: "#12D6CC" - brightWhite: "#E4E4E4" -meta: - mode: "light" - accent: "pink" - hue: 83 - contrast: - fg: 83.3 - black: 83.3 - red: 62.5 - green: 44.5 - yellow: 34.6 - blue: 62.1 - magenta: 50.1 - cyan: 30.9 - white: 12.6 - brightBlack: 75.8 - brightRed: 48.8 - brightGreen: 31.7 - brightYellow: 13.2 - brightBlue: 45.9 - brightMagenta: 38.3 - brightCyan: 14.8 - brightWhite: 0 diff --git a/themes/p-grizzly.yaml b/themes/p-grizzly.yaml deleted file mode 100644 index 6334cc3a..00000000 --- a/themes/p-grizzly.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Grizzly" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#201612" - fg: "#F1BC94" - black: "#3C312D" - red: "#DA2811" - green: "#399227" - yellow: "#C98621" - blue: "#3465A5" - magenta: "#C40B48" - cyan: "#08A087" - white: "#F1BC94" - brightBlack: "#4B4138" - brightRed: "#FD4931" - brightGreen: "#26BE21" - brightYellow: "#FFB618" - brightBlue: "#3A89D3" - brightMagenta: "#FF3C7D" - brightCyan: "#1BDFBE" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: 43 - contrast: - fg: 71.4 - black: 0 - red: 28.5 - green: 34 - yellow: 43.7 - blue: 21.3 - magenta: 22.9 - cyan: 40.9 - white: 71.4 - brightBlack: 8.2 - brightRed: 40.5 - brightGreen: 52.8 - brightYellow: 69.7 - brightBlue: 36.4 - brightMagenta: 40.7 - brightCyan: 71.9 - brightWhite: 94 diff --git a/themes/p-haze.yaml b/themes/p-haze.yaml deleted file mode 100644 index 75402cad..00000000 --- a/themes/p-haze.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Haze" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#5B405B" - fg: "#E4CBC4" - black: "#745874" - red: "#D66B5D" - green: "#3FD15E" - yellow: "#FAC534" - blue: "#4F8CDB" - magenta: "#FF58BF" - cyan: "#30E9CA" - white: "#FFFBFA" - brightBlack: "#8D748D" - brightRed: "#FF8D7E" - brightGreen: "#90FCB4" - brightYellow: "#FFD885" - brightBlue: "#6FB7FA" - brightMagenta: "#FF84EB" - brightCyan: "#55FFE3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 327 - contrast: - fg: 65.4 - black: 8.2 - red: 27.5 - green: 51.3 - yellow: 63.2 - blue: 27.2 - magenta: 35.6 - cyan: 65.9 - white: 92.9 - brightBlack: 20 - brightRed: 45.5 - brightGreen: 78.8 - brightYellow: 73.1 - brightBlue: 47.7 - brightMagenta: 47.6 - brightCyan: 79.2 - brightWhite: 95 diff --git a/themes/p-inkstone.yaml b/themes/p-inkstone.yaml deleted file mode 100644 index af6efd7e..00000000 --- a/themes/p-inkstone.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Inkstone" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#111B22" - fg: "#F5D8C3" - black: "#353D3D" - red: "#CE3521" - green: "#05A829" - yellow: "#D39E0D" - blue: "#276AC2" - magenta: "#E0024C" - cyan: "#04C4A4" - white: "#CFB5A9" - brightBlack: "#475050" - brightRed: "#FF553E" - brightGreen: "#2DDD68" - brightYellow: "#FFC918" - brightBlue: "#50A9FD" - brightMagenta: "#FF3478" - brightCyan: "#28F5D3" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: 239 - contrast: - fg: 84.8 - black: 0 - red: 26.9 - green: 42.4 - yellow: 53.2 - blue: 24.2 - magenta: 29.1 - cyan: 57.7 - white: 63.9 - brightBlack: 12.2 - brightRed: 42.7 - brightGreen: 68.5 - brightYellow: 77 - brightBlue: 52.1 - brightMagenta: 39.6 - brightCyan: 83.8 - brightWhite: 93.8 diff --git a/themes/p-leipzig.yaml b/themes/p-leipzig.yaml deleted file mode 100644 index c4d6cf06..00000000 --- a/themes/p-leipzig.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Leipzig" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#221B1D" - fg: "#E7C4A3" - black: "#3D3735" - red: "#BE4939" - green: "#2A9842" - yellow: "#D39E0D" - blue: "#4C6F9D" - magenta: "#C63263" - cyan: "#39B7A2" - white: "#CFB5A9" - brightBlack: "#504A47" - brightRed: "#EF5C48" - brightGreen: "#53C666" - brightYellow: "#FFC918" - brightBlue: "#6FACE5" - brightMagenta: "#F15488" - brightCyan: "#4DEDD2" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: 359 - contrast: - fg: 72.9 - black: 0 - red: 26.3 - green: 35.8 - yellow: 52.9 - blue: 24.6 - magenta: 25.5 - cyan: 51.9 - white: 63.6 - brightBlack: 10.7 - brightRed: 40.2 - brightGreen: 58 - brightYellow: 76.7 - brightBlue: 53 - brightMagenta: 40.6 - brightCyan: 80.1 - brightWhite: 93.4 diff --git a/themes/p-light.yaml b/themes/p-light.yaml deleted file mode 100644 index a20a893a..00000000 --- a/themes/p-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Light" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#F3E7E2" - fg: "#423926" - black: "#000000" - red: "#B61702" - green: "#068020" - yellow: "#EE8F13" - blue: "#3465A5" - magenta: "#C40B48" - cyan: "#08A087" - white: "#CFB5A9" - brightBlack: "#5C5442" - brightRed: "#D43E2A" - brightGreen: "#1B9E47" - brightYellow: "#FFC936" - brightBlue: "#3A89D3" - brightMagenta: "#FF246D" - brightCyan: "#1BDFBE" - brightWhite: "#FAE8E0" -meta: - mode: "light" - accent: "red" - hue: 44 - contrast: - fg: 83.4 - black: 93.2 - red: 68.3 - green: 61.7 - yellow: 34.9 - blue: 66.5 - magenta: 64.9 - cyan: 46.8 - white: 24.3 - brightBlack: 73.2 - brightRed: 58.1 - brightGreen: 49 - brightYellow: 11.8 - brightBlue: 51.2 - brightMagenta: 49.3 - brightCyan: 16.9 - brightWhite: 0 diff --git a/themes/p-machine.yaml b/themes/p-machine.yaml deleted file mode 100644 index 6adc253c..00000000 --- a/themes/p-machine.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Machine" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#393837" - fg: "#F7DBC5" - black: "#747270" - red: "#E9523E" - green: "#25AC42" - yellow: "#EB780D" - blue: "#5595BD" - magenta: "#E02D69" - cyan: "#46B9B9" - white: "#FAE5D6" - brightBlack: "#868686" - brightRed: "#FF8170" - brightGreen: "#2FEC6E" - brightYellow: "#FFAF37" - brightBlue: "#73BCF8" - brightMagenta: "#FF6D9E" - brightCyan: "#7BE6E6" - brightWhite: "#FFF2EC" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 80.5 - black: 21.1 - red: 31.2 - green: 38.6 - yellow: 39.7 - blue: 34.5 - magenta: 25.3 - cyan: 48.5 - white: 86 - brightBlack: 30.3 - brightRed: 47.3 - brightGreen: 70.2 - brightYellow: 61.1 - brightBlue: 55.4 - brightMagenta: 43.7 - brightCyan: 74 - brightWhite: 93.6 diff --git a/themes/p-mist.yaml b/themes/p-mist.yaml deleted file mode 100644 index be7ca668..00000000 --- a/themes/p-mist.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Mist" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#3A4444" - fg: "#FFE3CC" - black: "#606D6D" - red: "#FA5C47" - green: "#25AC42" - yellow: "#CCA63C" - blue: "#4779BB" - magenta: "#E02D69" - cyan: "#46B9B9" - white: "#FAE5D6" - brightBlack: "#899494" - brightRed: "#FD8677" - brightGreen: "#2FEC6E" - brightYellow: "#FFDD47" - brightBlue: "#68B6FF" - brightMagenta: "#FF6D9E" - brightCyan: "#7BE6E6" - brightWhite: "#FFF2EC" -meta: - mode: "dark" - accent: "green" - hue: 197 - contrast: - fg: 82.4 - black: 14.5 - red: 33.8 - green: 35.5 - yellow: 46.2 - blue: 20.6 - magenta: 22.2 - cyan: 45.4 - white: 82.9 - brightBlack: 33 - brightRed: 45.3 - brightGreen: 67.1 - brightYellow: 76.7 - brightBlue: 49.5 - brightMagenta: 40.6 - brightCyan: 70.9 - brightWhite: 90.5 diff --git a/themes/p-neptune.yaml b/themes/p-neptune.yaml deleted file mode 100644 index 0bd28a89..00000000 --- a/themes/p-neptune.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Neptune" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#070C25" - fg: "#FDC0BE" - black: "#242334" - red: "#E72006" - green: "#068020" - yellow: "#D37D0D" - blue: "#3465A5" - magenta: "#C40B48" - cyan: "#08A087" - white: "#CFA9BB" - brightBlack: "#444367" - brightRed: "#F7614D" - brightGreen: "#1B9E47" - brightYellow: "#FF9B18" - brightBlue: "#3A89D3" - brightMagenta: "#FF246D" - brightCyan: "#1BDFBE" - brightWhite: "#FAE0E8" -meta: - mode: "dark" - accent: "red" - hue: 271 - contrast: - fg: 77.1 - black: 0 - red: 31.8 - green: 26.8 - yellow: 43.4 - blue: 22.1 - magenta: 23.6 - cyan: 41.7 - white: 61 - brightBlack: 10.4 - brightRed: 44.3 - brightGreen: 39.4 - brightYellow: 61 - brightBlue: 37.2 - brightMagenta: 39.1 - brightCyan: 72.6 - brightWhite: 91.5 diff --git a/themes/p-ornithopter.yaml b/themes/p-ornithopter.yaml deleted file mode 100644 index 9b5cdf17..00000000 --- a/themes/p-ornithopter.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Ornithopter" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#3D3028" - fg: "#F5DCBC" - black: "#55453B" - red: "#E74935" - green: "#98BD5C" - yellow: "#EF951E" - blue: "#8EB7CA" - magenta: "#CA405E" - cyan: "#78C0B4" - white: "#F5DCBC" - brightBlack: "#726054" - brightRed: "#FF7562" - brightGreen: "#C1E954" - brightYellow: "#FFC31E" - brightBlue: "#67D7DB" - brightMagenta: "#F85E91" - brightCyan: "#98FCD6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 53 - contrast: - fg: 81.9 - black: 0 - red: 30.8 - green: 54.3 - yellow: 50.6 - blue: 54.3 - magenta: 23.9 - cyan: 55.5 - white: 81.9 - brightBlack: 16.2 - brightRed: 45.5 - brightGreen: 78.7 - brightYellow: 70.2 - brightBlue: 66.7 - brightMagenta: 40.2 - brightCyan: 87.7 - brightWhite: 102.1 diff --git a/themes/p-ox.yaml b/themes/p-ox.yaml deleted file mode 100644 index 67333ff5..00000000 --- a/themes/p-ox.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Ox" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#1F0C0F" - fg: "#ECAF87" - black: "#332726" - red: "#BC1600" - green: "#39A150" - yellow: "#D39E0D" - blue: "#4075A7" - magenta: "#D0245E" - cyan: "#29AD97" - white: "#CFB5A9" - brightBlack: "#4D3232" - brightRed: "#FF2E13" - brightGreen: "#73C84C" - brightYellow: "#FFC918" - brightBlue: "#62B2E4" - brightMagenta: "#EF4980" - brightCyan: "#60DEC9" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "orange" - hue: 11 - contrast: - fg: 65.8 - black: 0 - red: 21.3 - green: 41.2 - yellow: 53.9 - blue: 27.5 - magenta: 27.5 - cyan: 47.8 - white: 64.6 - brightBlack: 0 - brightRed: 38.4 - brightGreen: 61.3 - brightYellow: 77.7 - brightBlue: 55.7 - brightMagenta: 39.3 - brightCyan: 74.1 - brightWhite: 94.5 diff --git a/themes/p-terabyte.yaml b/themes/p-terabyte.yaml deleted file mode 100644 index 3586d4fd..00000000 --- a/themes/p-terabyte.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Terabyte" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#0B1A1A" - fg: "#E6D4B2" - black: "#243D36" - red: "#A94133" - green: "#3BCE16" - yellow: "#B47D36" - blue: "#4A89AD" - magenta: "#CB3E43" - cyan: "#6CFFBD" - white: "#E8BFA1" - brightBlack: "#406662" - brightRed: "#E46857" - brightGreen: "#8FE560" - brightYellow: "#FFCB2F" - brightBlue: "#68BBDB" - brightMagenta: "#F3777B" - brightCyan: "#C0FFE6" - brightWhite: "#FAECE0" -meta: - mode: "dark" - accent: "green" - hue: 196 - contrast: - fg: 80.5 - black: 0 - red: 21.4 - green: 60.8 - yellow: 37.8 - blue: 34.9 - magenta: 27.9 - cyan: 90.3 - white: 71.5 - brightBlack: 19.1 - brightRed: 41.2 - brightGreen: 76.9 - brightYellow: 78.2 - brightBlue: 58.8 - brightMagenta: 48.7 - brightCyan: 98 - brightWhite: 95.8 diff --git a/themes/p-ultramarine.yaml b/themes/p-ultramarine.yaml deleted file mode 100644 index 20625d53..00000000 --- a/themes/p-ultramarine.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Ultramarine" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#050809" - fg: "#FFFFFF" - black: "#454545" - red: "#CE3521" - green: "#24943C" - yellow: "#BB8F18" - blue: "#276AC2" - magenta: "#E0024C" - cyan: "#04BEC4" - white: "#FFFFFF" - brightBlack: "#707070" - brightRed: "#FF553E" - brightGreen: "#76DD61" - brightYellow: "#FFD518" - brightBlue: "#50A9FD" - brightMagenta: "#FF3478" - brightCyan: "#28F5EB" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 107.8 - black: 10.1 - red: 28.2 - green: 35.6 - yellow: 45.6 - blue: 25.5 - magenta: 30.4 - cyan: 57.5 - white: 107.8 - brightBlack: 27.3 - brightRed: 44 - brightGreen: 72.3 - brightYellow: 83.3 - brightBlue: 53.3 - brightMagenta: 40.9 - brightCyan: 86.1 - brightWhite: 95 diff --git a/themes/p-wolf.yaml b/themes/p-wolf.yaml deleted file mode 100644 index a4bb25b1..00000000 --- a/themes/p-wolf.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Wolf" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#221F1E" - fg: "#DCBD9D" - black: "#473E3B" - red: "#B61702" - green: "#74AD45" - yellow: "#D37D0D" - blue: "#3465A5" - magenta: "#C40B48" - cyan: "#08A087" - white: "#DCBD9D" - brightBlack: "#575249" - brightRed: "#D43E2A" - brightGreen: "#84C32B" - brightYellow: "#FF9B18" - brightBlue: "#3A89D3" - brightMagenta: "#FF246D" - brightCyan: "#1BDFBE" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 67.8 - black: 0 - red: 18.6 - green: 47.7 - yellow: 41.8 - blue: 20.4 - magenta: 22 - cyan: 40 - white: 67.8 - brightBlack: 13.1 - brightRed: 28.6 - brightGreen: 58.4 - brightYellow: 59.3 - brightBlue: 35.5 - brightMagenta: 37.5 - brightCyan: 70.9 - brightWhite: 93.1 diff --git a/themes/p-yesterday.yaml b/themes/p-yesterday.yaml index 8288adf1..1fb44f44 100644 --- a/themes/p-yesterday.yaml +++ b/themes/p-yesterday.yaml @@ -2,7 +2,7 @@ name: "P. \ Yesterday" source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" - installs: 3734 + installs: 3736 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 80.9 black: 0 diff --git a/themes/p-zenith.yaml b/themes/p-zenith.yaml deleted file mode 100644 index 5d17f1ee..00000000 --- a/themes/p-zenith.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "P. \ Zenith" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74756 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#140D1A" - fg: "#F3B8BA" - black: "#331F38" - red: "#EC1C00" - green: "#016F33" - yellow: "#D3940D" - blue: "#3465A5" - magenta: "#C40B71" - cyan: "#0891A0" - white: "#B886FF" - brightBlack: "#483247" - brightRed: "#FF6551" - brightGreen: "#3AB4A6" - brightYellow: "#FFCA37" - brightBlue: "#3191EB" - brightMagenta: "#FF24BD" - brightCyan: "#2AE6C6" - brightWhite: "#FFFBF9" -meta: - mode: "dark" - accent: "pink" - hue: 308 - contrast: - fg: 72.1 - black: 0 - red: 32.8 - green: 20.6 - yellow: 50.6 - blue: 22 - magenta: 24.6 - cyan: 36.5 - white: 49.9 - brightBlack: 0 - brightRed: 46.9 - brightGreen: 52 - brightYellow: 78.5 - brightBlue: 41.4 - brightMagenta: 42.2 - brightCyan: 76.5 - brightWhite: 105.3 diff --git a/themes/p33t.yaml b/themes/p33t.yaml index 98cc2b74..a16c627b 100644 --- a/themes/p33t.yaml +++ b/themes/p33t.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/pace-dark.yaml b/themes/pace-dark.yaml index 13a30409..a2e85355 100644 --- a/themes/pace-dark.yaml +++ b/themes/pace-dark.yaml @@ -2,7 +2,7 @@ name: "Pace Dark" source: marketplace_id: "fabian-hiller.pace-theme" version: "0.3.0" - installs: 4449 + installs: 4450 author: "Fabian Hiller" repo: "https://github.com/fabian-hiller/vscode-pace-theme" url: "https://marketplace.visualstudio.com/items?itemName=fabian-hiller.pace-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 265 + pair: "Pace Light" contrast: fg: 50.6 black: 0 diff --git a/themes/pace-light.yaml b/themes/pace-light.yaml index b973033c..e0af8a0c 100644 --- a/themes/pace-light.yaml +++ b/themes/pace-light.yaml @@ -2,7 +2,7 @@ name: "Pace Light" source: marketplace_id: "fabian-hiller.pace-theme" version: "0.3.0" - installs: 4449 + installs: 4450 author: "Fabian Hiller" repo: "https://github.com/fabian-hiller/vscode-pace-theme" url: "https://marketplace.visualstudio.com/items?itemName=fabian-hiller.pace-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Pace Dark" contrast: fg: 73 black: 11.5 diff --git a/themes/padrepio.yaml b/themes/padrepio.yaml index 4e8ec7e1..e733980c 100644 --- a/themes/padrepio.yaml +++ b/themes/padrepio.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 82.7 black: 0 diff --git a/themes/paigio.yaml b/themes/paigio.yaml index 2a6377d8..1b5f85ac 100644 --- a/themes/paigio.yaml +++ b/themes/paigio.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 98.3 black: 0 diff --git a/themes/pale-blue.yaml b/themes/pale-blue.yaml index 11d41756..206f5281 100644 --- a/themes/pale-blue.yaml +++ b/themes/pale-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 265 + pair: null contrast: fg: 99.8 black: 0 diff --git a/themes/pale-boreal-dark.yaml b/themes/pale-boreal-dark.yaml index a75d4d62..fa75d53a 100644 --- a/themes/pale-boreal-dark.yaml +++ b/themes/pale-boreal-dark.yaml @@ -2,7 +2,7 @@ name: "Pale Boreal Dark" source: marketplace_id: "MuriloSambuite.pale-boreal-dark-theme" version: "1.0.8" - installs: 3180 + installs: 3181 author: "Murilo Sambuite" repo: "https://github.com/sambuite/pale-boreal-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=MuriloSambuite.pale-boreal-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 288 + pair: null contrast: fg: 95.4 black: 0 diff --git a/themes/palenight-italic.yaml b/themes/palenight-italic.yaml deleted file mode 100644 index cfc58161..00000000 --- a/themes/palenight-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Palenight Italic" -source: - marketplace_id: "nesterman.material-nest-theme" - version: "1.0.40" - installs: 5493 - author: "Nick Nesterov" - repo: "https://github.com/nesterman/vscode-nest-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nesterman.material-nest-theme" -colors: - bg: "#FFFFFF" - fg: "#597078" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - contrast: - fg: 76 - black: 106 - red: 57.1 - green: 18.3 - yellow: 23.3 - blue: 45.2 - magenta: 47.3 - cyan: 23.9 - white: 0 - brightBlack: 74.3 - brightRed: 57.1 - brightGreen: 18.3 - brightYellow: 23.3 - brightBlue: 45.2 - brightMagenta: 47.3 - brightCyan: 23.9 - brightWhite: 0 diff --git a/themes/palenight-material.yaml b/themes/palenight-material.yaml index ba3edde3..baf54d4d 100644 --- a/themes/palenight-material.yaml +++ b/themes/palenight-material.yaml @@ -2,7 +2,7 @@ name: "Palenight Material" source: marketplace_id: "Lebster.enough-with-the-palenight" version: "1.0.6" - installs: 7172 + installs: 7176 author: "Lebster" repo: "https://github.com/LebsterFace/enough-with-the-palenight" url: "https://marketplace.visualstudio.com/items?itemName=Lebster.enough-with-the-palenight" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 67.7 black: 0 diff --git a/themes/palenight-pro.yaml b/themes/palenight-pro.yaml index 1692cd53..30729444 100644 --- a/themes/palenight-pro.yaml +++ b/themes/palenight-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 272 + pair: null contrast: fg: 63.6 black: 0 diff --git a/themes/palenight-theme.yaml b/themes/palenight-theme.yaml deleted file mode 100644 index c73c6790..00000000 --- a/themes/palenight-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Palenight Theme" -source: - marketplace_id: "anaksholeh.unknown" - version: "0.0.5" - installs: 321 - author: "anak sholeh" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=anaksholeh.unknown" -colors: - bg: "#373F4B" - fg: "#BFC7D5" - black: "#676E95" - red: "#FF5572" - green: "#A9C77D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#FF5572" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 258 - contrast: - fg: 63.1 - black: 18.2 - red: 35.7 - green: 57.6 - yellow: 70.7 - blue: 47.7 - magenta: 45.5 - cyan: 70 - white: 98.6 - brightBlack: 18.2 - brightRed: 35.7 - brightGreen: 75.9 - brightYellow: 70.7 - brightBlue: 47.7 - brightMagenta: 45.5 - brightCyan: 70 - brightWhite: 98.6 diff --git a/themes/palespring.yaml b/themes/palespring.yaml index 049e1503..3407624c 100644 --- a/themes/palespring.yaml +++ b/themes/palespring.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 228 + pair: null contrast: fg: 82.9 black: 24.1 diff --git a/themes/palestorm-x.yaml b/themes/palestorm-x.yaml index ce064eb5..4d503fcb 100644 --- a/themes/palestorm-x.yaml +++ b/themes/palestorm-x.yaml @@ -2,7 +2,7 @@ name: "Palestorm X" source: marketplace_id: "AlexanderAlekseenko.palestorm" version: "1.3.0" - installs: 2695 + installs: 2696 author: "Alexander Alekseenko" repo: "https://github.com/Akaike/vsc-palestorm-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.palestorm" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 81.2 black: 0 diff --git a/themes/palestorm.yaml b/themes/palestorm.yaml index a49a476d..059883b5 100644 --- a/themes/palestorm.yaml +++ b/themes/palestorm.yaml @@ -2,7 +2,7 @@ name: "Palestorm" source: marketplace_id: "AlexanderAlekseenko.palestorm" version: "1.3.0" - installs: 2695 + installs: 2696 author: "Alexander Alekseenko" repo: "https://github.com/Akaike/vsc-palestorm-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.palestorm" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 272 + pair: null contrast: fg: 67.2 black: 0 diff --git a/themes/palette.yaml b/themes/palette.yaml index 6a7615cc..27826ae5 100644 --- a/themes/palette.yaml +++ b/themes/palette.yaml @@ -2,7 +2,7 @@ name: "Palette" source: marketplace_id: "palette-theme.Palette-Dark" version: "0.2.0" - installs: 5840 + installs: 5842 author: "Zakiullah" repo: "https://github.com/zbarakzai/Palette-VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=palette-theme.Palette-Dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 249 + pair: null contrast: fg: 83.3 black: 0 diff --git a/themes/pall-theme.yaml b/themes/pall-theme.yaml index 2ae3a924..d9ac3c2a 100644 --- a/themes/pall-theme.yaml +++ b/themes/pall-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 89.8 black: 95.9 diff --git a/themes/panda-blue.yaml b/themes/panda-blue.yaml index 85e4a98a..d1e3c91b 100644 --- a/themes/panda-blue.yaml +++ b/themes/panda-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 106.6 black: 52.8 diff --git a/themes/panda-dark.yaml b/themes/panda-dark.yaml index 62dcc742..db0faaaf 100644 --- a/themes/panda-dark.yaml +++ b/themes/panda-dark.yaml @@ -1,11 +1,11 @@ name: "Panda Dark" source: - marketplace_id: "sserafy.ttera-themes" - version: "2.0.7" - installs: 2036 + marketplace_id: "sserafy.ssera-themes" + version: "2.0.2" + installs: 334 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: bg: "#0D0D0D" fg: "#F5F5F5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 101 black: 0 diff --git a/themes/pandju-no-italics.yaml b/themes/pandju-no-italics.yaml deleted file mode 100644 index f4999271..00000000 --- a/themes/pandju-no-italics.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Pandju - No italics" -source: - marketplace_id: "TobiasTimm.pandju" - version: "1.0.1" - installs: 2734 - author: "Tobias Timm" - repo: "https://github.com/tobiastimm/pandju" - url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.pandju" -colors: - bg: "#171D2B" - fg: "#E6E6E6" - black: "#6F7899" - red: "#F4326D" - green: "#17F9D7" - yellow: "#FFEDBB" - blue: "#A188F1" - magenta: "#FF75B5" - cyan: "#F7B773" - white: "#D7E2FF" - brightBlack: "#6F7899" - brightRed: "#F4326D" - brightGreen: "#17F9D7" - brightYellow: "#FFEDBB" - brightBlue: "#A188F1" - brightMagenta: "#FF75B5" - brightCyan: "#F7B773" - brightWhite: "#D7E2FF" -meta: - mode: "dark" - accent: "red" - hue: 266 - contrast: - fg: 89.9 - black: 29.8 - red: 36.1 - green: 85.5 - yellow: 95 - blue: 45.3 - magenta: 52.1 - cyan: 69.1 - white: 87.4 - brightBlack: 29.8 - brightRed: 36.1 - brightGreen: 85.5 - brightYellow: 95 - brightBlue: 45.3 - brightMagenta: 52.1 - brightCyan: 69.1 - brightWhite: 87.4 diff --git a/themes/pantasio.yaml b/themes/pantasio.yaml index 43ec033f..dcd5f48b 100644 --- a/themes/pantasio.yaml +++ b/themes/pantasio.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 96.2 black: 0 diff --git a/themes/papaya.yaml b/themes/papaya.yaml index 11a54cc0..129c09b3 100644 --- a/themes/papaya.yaml +++ b/themes/papaya.yaml @@ -2,7 +2,7 @@ name: "Papaya" source: marketplace_id: "fethalen.papaya" version: "0.1.2" - installs: 4323 + installs: 4328 author: "fethalen" repo: "git://github.com/fethalen/papaya" url: "https://marketplace.visualstudio.com/items?itemName=fethalen.papaya" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 293 + pair: null contrast: fg: 75.3 black: 0 diff --git a/themes/papercolordark.yaml b/themes/papercolordark.yaml index 6ac7dd52..6d4c65f8 100644 --- a/themes/papercolordark.yaml +++ b/themes/papercolordark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 76.5 black: 0 diff --git a/themes/paradise.yaml b/themes/paradise.yaml index 25098fbb..46597605 100644 --- a/themes/paradise.yaml +++ b/themes/paradise.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 89.6 black: 0 diff --git a/themes/parakeet-theme.yaml b/themes/parakeet-theme.yaml index 86ae353f..a835f9f9 100644 --- a/themes/parakeet-theme.yaml +++ b/themes/parakeet-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 63.5 black: 9.5 diff --git a/themes/parchment-candlelight-color-theme.yaml b/themes/parchment-candlelight-color-theme.yaml index 9ca79963..37085e5e 100644 --- a/themes/parchment-candlelight-color-theme.yaml +++ b/themes/parchment-candlelight-color-theme.yaml @@ -2,7 +2,7 @@ name: "parchment-candlelight-color-theme" source: marketplace_id: "johv.parchment-light" version: "1.10.0" - installs: 3881 + installs: 3883 author: "Jonas Hvid" repo: "https://github.com/c2d7fa/vscode-parchment-light" url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 66 + pair: null contrast: fg: 79.6 black: 9.6 diff --git a/themes/parchment-codex-color-theme.yaml b/themes/parchment-codex-color-theme.yaml index 879012ef..2c37a7fa 100644 --- a/themes/parchment-codex-color-theme.yaml +++ b/themes/parchment-codex-color-theme.yaml @@ -2,7 +2,7 @@ name: "parchment-codex-color-theme" source: marketplace_id: "johv.parchment-light" version: "1.10.0" - installs: 3881 + installs: 3883 author: "Jonas Hvid" repo: "https://github.com/c2d7fa/vscode-parchment-light" url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.1 black: 34.5 diff --git a/themes/parchment-digitized-color-theme.yaml b/themes/parchment-digitized-color-theme.yaml index 4179615d..e44b7f16 100644 --- a/themes/parchment-digitized-color-theme.yaml +++ b/themes/parchment-digitized-color-theme.yaml @@ -2,7 +2,7 @@ name: "parchment-digitized-color-theme" source: marketplace_id: "johv.parchment-light" version: "1.10.0" - installs: 3881 + installs: 3883 author: "Jonas Hvid" repo: "https://github.com/c2d7fa/vscode-parchment-light" url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96 black: 34.2 diff --git a/themes/parchment-starlight-color-theme.yaml b/themes/parchment-starlight-color-theme.yaml index 11f4e47f..4ebacb73 100644 --- a/themes/parchment-starlight-color-theme.yaml +++ b/themes/parchment-starlight-color-theme.yaml @@ -2,7 +2,7 @@ name: "parchment-starlight-color-theme" source: marketplace_id: "johv.parchment-light" version: "1.10.0" - installs: 3881 + installs: 3883 author: "Jonas Hvid" repo: "https://github.com/c2d7fa/vscode-parchment-light" url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.4 black: 9.8 diff --git a/themes/parchment.yaml b/themes/parchment.yaml index a3393675..98d15355 100644 --- a/themes/parchment.yaml +++ b/themes/parchment.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 82 + pair: null contrast: fg: 95.6 black: 95.6 diff --git a/themes/pare-colors-theme.yaml b/themes/pare-colors-theme.yaml index b3854837..172bb22b 100644 --- a/themes/pare-colors-theme.yaml +++ b/themes/pare-colors-theme.yaml @@ -2,7 +2,7 @@ name: "Pare Colors Theme" source: marketplace_id: "jliima.pare-colors-theme" version: "1.0.1" - installs: 1271 + installs: 1272 author: "Jere Liimatainen" repo: "https://github.com/jliima/vscode-pare-colors-theme" url: "https://marketplace.visualstudio.com/items?itemName=jliima.pare-colors-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 246 + pair: null contrast: fg: 83 black: 0 diff --git a/themes/parkside-light.yaml b/themes/parkside-light.yaml index b08401be..576936f4 100644 --- a/themes/parkside-light.yaml +++ b/themes/parkside-light.yaml @@ -2,7 +2,7 @@ name: "Parkside Light" source: marketplace_id: "marcuskaz.parkside-light-theme" version: "1.3.4" - installs: 21 + installs: 22 author: "Marcus Kazmierczak" repo: "https://github.com/mkaz/parkside-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=marcuskaz.parkside-light-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.5 black: 97.5 diff --git a/themes/paro-paro-solarized-dark-theme.yaml b/themes/paro-paro-solarized-dark-theme.yaml index b7a280f0..ad288a4f 100644 --- a/themes/paro-paro-solarized-dark-theme.yaml +++ b/themes/paro-paro-solarized-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 103.3 black: 0 diff --git a/themes/pastel-contrast.yaml b/themes/pastel-contrast.yaml index cca91e67..74f3e3b0 100644 --- a/themes/pastel-contrast.yaml +++ b/themes/pastel-contrast.yaml @@ -1,11 +1,11 @@ name: "pastel-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0F0F0F" fg: "#EEEEEE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 96.4 black: 0 diff --git a/themes/pastel-inu.yaml b/themes/pastel-inu.yaml index 42579294..e5be7c9e 100644 --- a/themes/pastel-inu.yaml +++ b/themes/pastel-inu.yaml @@ -2,7 +2,7 @@ name: "pastel inu" source: marketplace_id: "d-end.pastel-inu" version: "0.0.6" - installs: 1569 + installs: 1571 author: "d end" repo: "https://github.com/itsdend/pastel_inu" url: "https://marketplace.visualstudio.com/items?itemName=d-end.pastel-inu" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 277 + pair: null contrast: fg: 51.1 black: 13.4 diff --git a/themes/pastel-light.yaml b/themes/pastel-light.yaml index 388e80b8..f8af169a 100644 --- a/themes/pastel-light.yaml +++ b/themes/pastel-light.yaml @@ -1,11 +1,11 @@ name: "pastel-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#222222" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.9 black: 0 diff --git a/themes/pastel.yaml b/themes/pastel.yaml index 74b20e6d..940491ab 100644 --- a/themes/pastel.yaml +++ b/themes/pastel.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 81.6 black: 64 diff --git a/themes/pastelefull.yaml b/themes/pastelefull.yaml index b300ed75..dde74cc8 100644 --- a/themes/pastelefull.yaml +++ b/themes/pastelefull.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 77.3 black: 0 diff --git a/themes/pastelfairy.yaml b/themes/pastelfairy.yaml index a106b6e3..ad6e96c3 100644 --- a/themes/pastelfairy.yaml +++ b/themes/pastelfairy.yaml @@ -2,7 +2,7 @@ name: "pastelfairy" source: marketplace_id: "tetracalibers.pastelfairy" version: "1.0.0" - installs: 873 + installs: 874 author: "tomixy" repo: "https://github.com/tetracalibers/PastelFairy" url: "https://marketplace.visualstudio.com/items?itemName=tetracalibers.pastelfairy" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 36.2 black: 98.7 diff --git a/themes/pastellize-dark-muted.yaml b/themes/pastellize-dark-muted.yaml index 45dd3ade..576fedc6 100644 --- a/themes/pastellize-dark-muted.yaml +++ b/themes/pastellize-dark-muted.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 307 + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/patina-colors.yaml b/themes/patina-colors.yaml index 6ea607ae..287f6094 100644 --- a/themes/patina-colors.yaml +++ b/themes/patina-colors.yaml @@ -2,7 +2,7 @@ name: "Patina Colors" source: marketplace_id: "SantiagoBobrik.patina-colors" version: "0.2.1" - installs: 18 + installs: 21 author: "SantiagoBobrik" repo: "https://github.com/SantiagoBobrik/patina-colors" url: "https://marketplace.visualstudio.com/items?itemName=SantiagoBobrik.patina-colors" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 81.6 black: 0 diff --git a/themes/patina-dark.yaml b/themes/patina-dark.yaml index f04b4bb0..4fc28c33 100644 --- a/themes/patina-dark.yaml +++ b/themes/patina-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Patina Light" contrast: fg: 81.7 black: 0 diff --git a/themes/patina-light.yaml b/themes/patina-light.yaml index 2af425b3..53bdbf51 100644 --- a/themes/patina-light.yaml +++ b/themes/patina-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: 92 + pair: "Patina Dark" contrast: fg: 73.1 black: 73.1 diff --git a/themes/patr-theme.yaml b/themes/patr-theme.yaml index 5352f391..efa0863d 100644 --- a/themes/patr-theme.yaml +++ b/themes/patr-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 289 + pair: null contrast: fg: 107.6 black: 8.6 diff --git a/themes/patricklimax.yaml b/themes/patricklimax.yaml index 66a78ffe..0dea8314 100644 --- a/themes/patricklimax.yaml +++ b/themes/patricklimax.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 290 + pair: null contrast: fg: 46.8 black: 0 diff --git a/themes/patriot-contrast.yaml b/themes/patriot-contrast.yaml index 4195a18f..ff4ba2f4 100644 --- a/themes/patriot-contrast.yaml +++ b/themes/patriot-contrast.yaml @@ -1,11 +1,11 @@ name: "patriot-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0D0E0F" fg: "#CAD9E3" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 81.8 black: 0 diff --git a/themes/patriot-light.yaml b/themes/patriot-light.yaml index fba77984..3feaaec9 100644 --- a/themes/patriot-light.yaml +++ b/themes/patriot-light.yaml @@ -1,11 +1,11 @@ name: "patriot-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#333333" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/patriot.yaml b/themes/patriot.yaml index 8ae8fd54..f9757c27 100644 --- a/themes/patriot.yaml +++ b/themes/patriot.yaml @@ -1,11 +1,11 @@ name: "patriot" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2D3133" fg: "#CAD9E3" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 76.9 black: 0 diff --git a/themes/paulera-s-dark-monokai.yaml b/themes/paulera-s-dark-monokai.yaml index ff360f53..6e30366b 100644 --- a/themes/paulera-s-dark-monokai.yaml +++ b/themes/paulera-s-dark-monokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 99.4 black: 0 diff --git a/themes/paulera-s-lyo.yaml b/themes/paulera-s-lyo.yaml index f08862b1..a5c931a1 100644 --- a/themes/paulera-s-lyo.yaml +++ b/themes/paulera-s-lyo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 99.4 black: 0 diff --git a/themes/paztels.yaml b/themes/paztels.yaml index 5c36cafa..3f6ebd71 100644 --- a/themes/paztels.yaml +++ b/themes/paztels.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 65.2 black: 0 diff --git a/themes/peaceful-mind.yaml b/themes/peaceful-mind.yaml index 338b7a8d..80abd3e6 100644 --- a/themes/peaceful-mind.yaml +++ b/themes/peaceful-mind.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 273 + pair: null contrast: fg: 50.6 black: 0 diff --git a/themes/peachy-dolphin.yaml b/themes/peachy-dolphin.yaml index aa8147d0..269cdfa4 100644 --- a/themes/peachy-dolphin.yaml +++ b/themes/peachy-dolphin.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 96.9 black: 0 diff --git a/themes/peachy.yaml b/themes/peachy.yaml index 67792c12..16361396 100644 --- a/themes/peachy.yaml +++ b/themes/peachy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/peacock-contrast.yaml b/themes/peacock-contrast.yaml index c52e725d..fd031bf5 100644 --- a/themes/peacock-contrast.yaml +++ b/themes/peacock-contrast.yaml @@ -1,11 +1,11 @@ name: "peacock-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0C0C0B" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/peacock-light.yaml b/themes/peacock-light.yaml index 315531cf..995e780d 100644 --- a/themes/peacock-light.yaml +++ b/themes/peacock-light.yaml @@ -1,11 +1,11 @@ name: "peacock-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#333333" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/peacock.yaml b/themes/peacock.yaml index ac26b783..2d817d94 100644 --- a/themes/peacock.yaml +++ b/themes/peacock.yaml @@ -1,49 +1,50 @@ -name: "Peacock" +name: "peacock" source: - marketplace_id: "marnix.peacock" - version: "1.1.6" - installs: 33071 - author: "Marnix Koops" - repo: "https://github.com/marnixkoops/peacock" - url: "https://marketplace.visualstudio.com/items?itemName=marnix.peacock" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: - bg: "#1E2336" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" + bg: "#2B2A27" + fg: "#EDE0CE" + black: "#383733" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#BCD42A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#F4ECE1" + brightBlack: "#605E57" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D7E67E" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "pink" - hue: 272 + accent: "orange" + hue: null + pair: null contrast: - fg: 57.7 + fg: 85.1 black: 0 - red: 35 - green: 58.6 - yellow: 46.9 - blue: 47.9 - magenta: 37.3 - cyan: 50.8 - white: 88.9 - brightBlack: 13.7 - brightRed: 44.4 - brightGreen: 75 - brightYellow: 59.5 - brightBlue: 62 - brightMagenta: 48.5 - brightCyan: 66.1 - brightWhite: 81.3 + red: 17.7 + green: 42.2 + yellow: 41.6 + blue: 69.8 + magenta: 42.2 + cyan: 41.6 + white: 92.3 + brightBlack: 15.8 + brightRed: 34 + brightGreen: 68.9 + brightYellow: 66.9 + brightBlue: 82.5 + brightMagenta: 68.9 + brightCyan: 66.9 + brightWhite: 104 diff --git a/themes/peacocks-in-space-contrast.yaml b/themes/peacocks-in-space-contrast.yaml index c98ee930..0c98f29d 100644 --- a/themes/peacocks-in-space-contrast.yaml +++ b/themes/peacocks-in-space-contrast.yaml @@ -1,11 +1,11 @@ name: "peacocks-in-space-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#121419" fg: "#DEE3EC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 88.8 black: 0 diff --git a/themes/peacocks-in-space-light.yaml b/themes/peacocks-in-space-light.yaml index c1dbd12e..2f896180 100644 --- a/themes/peacocks-in-space-light.yaml +++ b/themes/peacocks-in-space-light.yaml @@ -1,11 +1,11 @@ name: "peacocks-in-space-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#DEE3EC" fg: "#2B303B" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 262 + pair: null contrast: fg: 82.9 black: 0 diff --git a/themes/peacocks-in-space.yaml b/themes/peacocks-in-space.yaml index 2e745f08..8875a058 100644 --- a/themes/peacocks-in-space.yaml +++ b/themes/peacocks-in-space.yaml @@ -1,11 +1,11 @@ name: "peacocks-in-space" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2B303B" fg: "#DEE3EC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 266 + pair: null contrast: fg: 84.4 black: 0 diff --git a/themes/peel-contrast.yaml b/themes/peel-contrast.yaml index 7cf62e1f..b0836256 100644 --- a/themes/peel-contrast.yaml +++ b/themes/peel-contrast.yaml @@ -1,11 +1,11 @@ name: "peel-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0C0B0A" fg: "#EDEBE6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 94.7 black: 0 diff --git a/themes/peel-light.yaml b/themes/peel-light.yaml index 9d7238a0..e0607f2d 100644 --- a/themes/peel-light.yaml +++ b/themes/peel-light.yaml @@ -1,11 +1,11 @@ name: "peel-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#333333" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/peel.yaml b/themes/peel.yaml index d1ad3640..33a73235 100644 --- a/themes/peel.yaml +++ b/themes/peel.yaml @@ -1,11 +1,11 @@ name: "peel" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#23201C" fg: "#EDEBE6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 92.7 black: 0 diff --git a/themes/penitent-contrast.yaml b/themes/penitent-contrast.yaml index 629f4f85..9b83dc62 100644 --- a/themes/penitent-contrast.yaml +++ b/themes/penitent-contrast.yaml @@ -1,11 +1,11 @@ name: "penitent-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#101C18" fg: "#B9CEC7" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 172 + pair: null contrast: fg: 72.7 black: 0 diff --git a/themes/penitent-light.yaml b/themes/penitent-light.yaml index d83d9ffd..31c62e8f 100644 --- a/themes/penitent-light.yaml +++ b/themes/penitent-light.yaml @@ -1,11 +1,11 @@ name: "penitent-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#33564B" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 88.2 black: 0 diff --git a/themes/penitent.yaml b/themes/penitent.yaml index 0af4d357..7336f923 100644 --- a/themes/penitent.yaml +++ b/themes/penitent.yaml @@ -1,11 +1,11 @@ name: "penitent" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#1F352E" fg: "#B9CEC7" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 172 + pair: null contrast: fg: 68.7 black: 0 diff --git a/themes/penumbra-dark-contrast.yaml b/themes/penumbra-dark-contrast.yaml index 63c5d475..643eb831 100644 --- a/themes/penumbra-dark-contrast.yaml +++ b/themes/penumbra-dark-contrast.yaml @@ -2,7 +2,7 @@ name: "Penumbra Dark Contrast++" source: marketplace_id: "PenumbraTheme.penumbra" version: "0.4.0" - installs: 11879 + installs: 11883 author: "Penumbra Theme" repo: "https://github.com/nealmckee/penumbra_vscode" url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 57 black: 0 diff --git a/themes/penumbra-dark.yaml b/themes/penumbra-dark.yaml index 4f79b017..48e10066 100644 --- a/themes/penumbra-dark.yaml +++ b/themes/penumbra-dark.yaml @@ -2,7 +2,7 @@ name: "Penumbra Dark" source: marketplace_id: "PenumbraTheme.penumbra" version: "0.4.0" - installs: 11879 + installs: 11883 author: "Penumbra Theme" repo: "https://github.com/nealmckee/penumbra_vscode" url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: "Penumbra Light" contrast: fg: 36.3 black: 0 diff --git a/themes/penumbra-light.yaml b/themes/penumbra-light.yaml index dc563eb7..d16b32bf 100644 --- a/themes/penumbra-light.yaml +++ b/themes/penumbra-light.yaml @@ -2,7 +2,7 @@ name: "Penumbra Light" source: marketplace_id: "PenumbraTheme.penumbra" version: "0.4.0" - installs: 11879 + installs: 11883 author: "Penumbra Theme" repo: "https://github.com/nealmckee/penumbra_vscode" url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "Penumbra Dark" contrast: fg: 55.5 black: 0 diff --git a/themes/perf-pink.yaml b/themes/perf-pink.yaml index 691f6e12..4178b1dc 100644 --- a/themes/perf-pink.yaml +++ b/themes/perf-pink.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 96.7 black: 0 diff --git a/themes/perfect-dark.yaml b/themes/perfect-dark.yaml index 2b2a4aac..c26ce1b1 100644 --- a/themes/perfect-dark.yaml +++ b/themes/perfect-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 56.6 black: 0 diff --git a/themes/perfect-grey-pf-dark.yaml b/themes/perfect-grey-pf-dark.yaml index 1b410fb7..74bca1d7 100644 --- a/themes/perfect-grey-pf-dark.yaml +++ b/themes/perfect-grey-pf-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Perfect Grey PF Light" contrast: fg: 70.4 black: 0 diff --git a/themes/perfect-grey-pf-light.yaml b/themes/perfect-grey-pf-light.yaml index 32167e8b..877d939e 100644 --- a/themes/perfect-grey-pf-light.yaml +++ b/themes/perfect-grey-pf-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: "Perfect Grey PF Dark" contrast: fg: 93 black: 103.2 diff --git a/themes/periwinkle-color-theme.yaml b/themes/periwinkle-color-theme.yaml index c4b40803..50d49d3e 100644 --- a/themes/periwinkle-color-theme.yaml +++ b/themes/periwinkle-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 286 + pair: null contrast: fg: 89.8 black: 93.9 diff --git a/themes/periwinkle-soft-dark.yaml b/themes/periwinkle-soft-dark.yaml index b767d7a5..3c19e527 100644 --- a/themes/periwinkle-soft-dark.yaml +++ b/themes/periwinkle-soft-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 291 + pair: null contrast: fg: 39.3 black: 43.7 diff --git a/themes/perplexity.yaml b/themes/perplexity.yaml index ce9102d3..9e6c946f 100644 --- a/themes/perplexity.yaml +++ b/themes/perplexity.yaml @@ -2,7 +2,7 @@ name: "Perplexity" source: marketplace_id: "cottonable.perplexity" version: "1.0.2" - installs: 6579 + installs: 6590 author: "cottonable" repo: "https://github.com/cottonable/perplexity-vscode" url: "https://marketplace.visualstudio.com/items?itemName=cottonable.perplexity" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.6 black: 0 diff --git a/themes/perry-the-platypus.yaml b/themes/perry-the-platypus.yaml index 85e8d5e1..0f9cdf2d 100644 --- a/themes/perry-the-platypus.yaml +++ b/themes/perry-the-platypus.yaml @@ -2,7 +2,7 @@ name: "Perry-the-platypus" source: marketplace_id: "ArkaBanerjee.compact-vs-code" version: "1.1.1" - installs: 103 + installs: 106 author: "Arka Banerjee" repo: "https://github.com/thearkabanerjee/Compact-VS-Code" url: "https://marketplace.visualstudio.com/items?itemName=ArkaBanerjee.compact-vs-code" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 261 + pair: null contrast: fg: 63.6 black: 0 diff --git a/themes/petrel.yaml b/themes/petrel.yaml index ee61ce30..e92a8a0d 100644 --- a/themes/petrel.yaml +++ b/themes/petrel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 238 + pair: null contrast: fg: 32.7 black: 28.8 diff --git a/themes/pglight.yaml b/themes/pglight.yaml index 099ee06b..2cf9b0a5 100644 --- a/themes/pglight.yaml +++ b/themes/pglight.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 98 black: 98.6 diff --git a/themes/phocus.yaml b/themes/phocus.yaml index cffa64d6..2c608b06 100644 --- a/themes/phocus.yaml +++ b/themes/phocus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/phonebook-dark.yaml b/themes/phonebook-dark.yaml index 06a97dc2..4be81e87 100644 --- a/themes/phonebook-dark.yaml +++ b/themes/phonebook-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 62 + pair: "Phonebook Light" contrast: fg: 70.4 black: 0 diff --git a/themes/phonebook-light.yaml b/themes/phonebook-light.yaml index fa679210..a4daba4d 100644 --- a/themes/phonebook-light.yaml +++ b/themes/phonebook-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 78 + pair: "Phonebook Dark" contrast: fg: 74.3 black: 81 diff --git a/themes/phosphor-dark.yaml b/themes/phosphor-dark.yaml index cc33d851..1f7df6fc 100644 --- a/themes/phosphor-dark.yaml +++ b/themes/phosphor-dark.yaml @@ -2,7 +2,7 @@ name: "Phosphor Dark" source: marketplace_id: "phosphor-icons.phosphor-theme" version: "0.1.2" - installs: 1669 + installs: 1671 author: "Phosphor Icons" repo: "https://github.com/phosphor-icons/theme" url: "https://marketplace.visualstudio.com/items?itemName=phosphor-icons.phosphor-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 68.1 black: 18.6 diff --git a/themes/phosphorus-minor.yaml b/themes/phosphorus-minor.yaml index 7a77de2e..c26e1d64 100644 --- a/themes/phosphorus-minor.yaml +++ b/themes/phosphorus-minor.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 52.5 black: 0 diff --git a/themes/photonica-dark.yaml b/themes/photonica-dark.yaml index daf80a25..4db4f07d 100644 --- a/themes/photonica-dark.yaml +++ b/themes/photonica-dark.yaml @@ -2,7 +2,7 @@ name: "Photonica Dark" source: marketplace_id: "ConAntares.Photonica" version: "1.0.10" - installs: 17844 + installs: 17846 author: "Luke Niu" repo: "https://github.com/Photonico/Photonica" url: "https://marketplace.visualstudio.com/items?itemName=ConAntares.Photonica" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Photonica Light" contrast: fg: 96.8 black: 0 diff --git a/themes/photonica-light.yaml b/themes/photonica-light.yaml index 73d102a3..b2f971f2 100644 --- a/themes/photonica-light.yaml +++ b/themes/photonica-light.yaml @@ -2,7 +2,7 @@ name: "Photonica Light" source: marketplace_id: "ConAntares.Photonica" version: "1.0.10" - installs: 17844 + installs: 17846 author: "Luke Niu" repo: "https://github.com/Photonico/Photonica" url: "https://marketplace.visualstudio.com/items?itemName=ConAntares.Photonica" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Photonica Dark" contrast: fg: 105.1 black: 105.1 diff --git a/themes/photophore.yaml b/themes/photophore.yaml index 827fb96d..cc64aace 100644 --- a/themes/photophore.yaml +++ b/themes/photophore.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 303 + pair: null contrast: fg: 105.5 black: 61 diff --git a/themes/piattro.yaml b/themes/piattro.yaml index 049934ce..bd5c0432 100644 --- a/themes/piattro.yaml +++ b/themes/piattro.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 85 black: 103 diff --git a/themes/pierre-dark.yaml b/themes/pierre-dark.yaml index 414bac74..b77e3f83 100644 --- a/themes/pierre-dark.yaml +++ b/themes/pierre-dark.yaml @@ -2,7 +2,7 @@ name: "Pierre Dark" source: marketplace_id: "pierrecomputer.pierre-theme" version: "0.0.24" - installs: 295 + installs: 297 author: "The Pierre Computer Co" repo: "https://github.com/pierrecomputer/theme" url: "https://marketplace.visualstudio.com/items?itemName=pierrecomputer.pierre-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Pierre Light" contrast: fg: 105.2 black: 0 diff --git a/themes/pierre-light.yaml b/themes/pierre-light.yaml index 8442ff9d..b48e0cbc 100644 --- a/themes/pierre-light.yaml +++ b/themes/pierre-light.yaml @@ -2,7 +2,7 @@ name: "Pierre Light" source: marketplace_id: "pierrecomputer.pierre-theme" version: "0.0.24" - installs: 295 + installs: 297 author: "The Pierre Computer Co" repo: "https://github.com/pierrecomputer/theme" url: "https://marketplace.visualstudio.com/items?itemName=pierrecomputer.pierre-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Pierre Dark" contrast: fg: 106 black: 103.4 diff --git a/themes/piggy-contrast.yaml b/themes/piggy-contrast.yaml index df46216c..344fb50c 100644 --- a/themes/piggy-contrast.yaml +++ b/themes/piggy-contrast.yaml @@ -1,11 +1,11 @@ name: "piggy-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#1C1618" fg: "#EDEBE6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 356 + pair: null contrast: fg: 93.8 black: 0 diff --git a/themes/piggy-light.yaml b/themes/piggy-light.yaml index 0556f1d6..bd9d2034 100644 --- a/themes/piggy-light.yaml +++ b/themes/piggy-light.yaml @@ -1,11 +1,11 @@ name: "piggy-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#444444" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/piggy.yaml b/themes/piggy.yaml index c48414dc..2e607780 100644 --- a/themes/piggy.yaml +++ b/themes/piggy.yaml @@ -1,11 +1,11 @@ name: "piggy" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#3D2F34" fg: "#EDEBE6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 355 + pair: null contrast: fg: 89.1 black: 0 diff --git a/themes/pillirioen-italics.yaml b/themes/pillirioen-italics.yaml deleted file mode 100644 index 7194e0b3..00000000 --- a/themes/pillirioen-italics.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Pillirioen (Italics)" -source: - marketplace_id: "Be-njamin.pillirioen" - version: "0.2.0" - installs: 2434 - author: "Benjamin Vasquez" - repo: "https://github.com/Be-njamin/pillirioen" - url: "https://marketplace.visualstudio.com/items?itemName=Be-njamin.pillirioen" -colors: - bg: "#21262D" - fg: "#9199A1" - black: "#545D68" - red: "#C93C37" - green: "#347D39" - yellow: "#966600" - blue: "#316DCA" - magenta: "#AE4C82" - cyan: "#337582" - white: "#CDD9E5" - brightBlack: "#697482" - brightRed: "#FB4B44" - brightGreen: "#419C47" - brightYellow: "#BB7F00" - brightBlue: "#3D88FC" - brightMagenta: "#D95FA2" - brightCyan: "#3F92A2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 257 - contrast: - fg: 43.6 - black: 15.9 - red: 25.2 - green: 23.9 - yellow: 24.4 - blue: 24.3 - magenta: 24.3 - cyan: 22.9 - white: 79.6 - brightBlack: 25.7 - brightRed: 38.6 - brightGreen: 36.9 - brightYellow: 37.3 - brightBlue: 37.3 - brightMagenta: 37.4 - brightCyan: 35.4 - brightWhite: 104.9 diff --git a/themes/pine-cone-theme.yaml b/themes/pine-cone-theme.yaml index d17c7c13..ca340c67 100644 --- a/themes/pine-cone-theme.yaml +++ b/themes/pine-cone-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 141 + pair: null contrast: fg: 79.1 black: 0 diff --git a/themes/pine-editor-light.yaml b/themes/pine-editor-light.yaml deleted file mode 100644 index 0b0ec00e..00000000 --- a/themes/pine-editor-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Pine Editor Light" -source: - marketplace_id: "frizLabz.pinescript-v5-vscode" - version: "0.1.7" - installs: 12635 - author: "FFriZz" - repo: "https://github.com/FFriZ/Pine-Script-v5-VS-Code" - url: "https://marketplace.visualstudio.com/items?itemName=frizLabz.pinescript-v5-vscode" -colors: - bg: "#FBFBFB" - fg: "#403F53" - black: "#403F53" - red: "#DE3D3B" - green: "#08916A" - yellow: "#E0AF02" - blue: "#288ED7" - magenta: "#D6438A" - cyan: "#2962FF" - white: "#F0F0F0" - brightBlack: "#403F53" - brightRed: "#DE3D3B" - brightGreen: "#08916A" - brightYellow: "#DAAA01" - brightBlue: "#288ED7" - brightMagenta: "#D6438A" - brightCyan: "#2962FF" - brightWhite: "#F0F0F0" -meta: - mode: "light" - accent: "purple" - hue: null - contrast: - fg: 91.3 - black: 91.3 - red: 66.3 - green: 64.2 - yellow: 37 - blue: 60.1 - magenta: 65.3 - cyan: 70.7 - white: 0 - brightBlack: 91.3 - brightRed: 66.3 - brightGreen: 64.2 - brightYellow: 39.7 - brightBlue: 60.1 - brightMagenta: 65.3 - brightCyan: 70.7 - brightWhite: 0 diff --git a/themes/pine-forest-green-dark.yaml b/themes/pine-forest-green-dark.yaml index 446208c2..868f8b4d 100644 --- a/themes/pine-forest-green-dark.yaml +++ b/themes/pine-forest-green-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 147 + pair: null contrast: fg: 107 black: 0 diff --git a/themes/pine-forest.yaml b/themes/pine-forest.yaml index c5bc585c..d81994b8 100644 --- a/themes/pine-forest.yaml +++ b/themes/pine-forest.yaml @@ -2,7 +2,7 @@ name: "Pine Forest" source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" - installs: 80 + installs: 81 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 72.9 black: 0 diff --git a/themes/pine-frizz.yaml b/themes/pine-frizz.yaml index c78ab643..fe425e97 100644 --- a/themes/pine-frizz.yaml +++ b/themes/pine-frizz.yaml @@ -1,11 +1,11 @@ name: "Pine FriZz" source: - marketplace_id: "frizLabz.pinescript-v5-vscode" - version: "0.1.7" - installs: 12635 - author: "FFriZz" - repo: "https://github.com/FFriZ/Pine-Script-v5-VS-Code" - url: "https://marketplace.visualstudio.com/items?itemName=frizLabz.pinescript-v5-vscode" + marketplace_id: "TradesDontLie.pinescript-v6-vscode" + version: "0.1.0" + installs: 4946 + author: "TradesDontLie" + repo: "https://github.com/yourusername/Pine-Script-v6-VS-Code" + url: "https://marketplace.visualstudio.com/items?itemName=TradesDontLie.pinescript-v6-vscode" colors: bg: "#22262E" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 104.8 black: 0 diff --git a/themes/pine-theme-blue.yaml b/themes/pine-theme-blue.yaml deleted file mode 100644 index cca89927..00000000 --- a/themes/pine-theme-blue.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Pine Theme Blue" -source: - marketplace_id: "salbert11.pinescript-helper" - version: "3.4.3" - installs: 9795 - author: "salbert11" - repo: "https://github.com/salbert11/pinescript" - url: "https://marketplace.visualstudio.com/items?itemName=salbert11.pinescript-helper" -colors: - bg: "#01101C" - fg: "#D6DEEB" - black: "#01101C" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 240 - contrast: - fg: 85.8 - black: 0 - red: 39.9 - green: 67.8 - yellow: 82.6 - blue: 56.5 - magenta: 54.3 - cyan: 60.3 - white: 107.4 - brightBlack: 16.2 - brightRed: 39.9 - brightGreen: 67.8 - brightYellow: 94.3 - brightBlue: 56.5 - brightMagenta: 54.3 - brightCyan: 74.6 - brightWhite: 107.4 diff --git a/themes/pine-theme-dark-low-contrast.yaml b/themes/pine-theme-dark-low-contrast.yaml deleted file mode 100644 index 82e91eb5..00000000 --- a/themes/pine-theme-dark-low-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Pine Theme Dark Low Contrast" -source: - marketplace_id: "salbert11.pinescript-helper" - version: "3.4.3" - installs: 9795 - author: "salbert11" - repo: "https://github.com/salbert11/pinescript" - url: "https://marketplace.visualstudio.com/items?itemName=salbert11.pinescript-helper" -colors: - bg: "#131621" - fg: "#D6DEEB" - black: "#131621" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 272 - contrast: - fg: 85.3 - black: 0 - red: 39.4 - green: 67.3 - yellow: 82.1 - blue: 56 - magenta: 53.8 - cyan: 59.7 - white: 106.9 - brightBlack: 15.6 - brightRed: 39.4 - brightGreen: 67.3 - brightYellow: 93.8 - brightBlue: 56 - brightMagenta: 53.8 - brightCyan: 74 - brightWhite: 106.9 diff --git a/themes/pine-theme-grey.yaml b/themes/pine-theme-grey.yaml deleted file mode 100644 index 5e2bb9b1..00000000 --- a/themes/pine-theme-grey.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Pine Theme Grey" -source: - marketplace_id: "salbert11.pinescript-helper" - version: "3.4.3" - installs: 9795 - author: "salbert11" - repo: "https://github.com/salbert11/pinescript" - url: "https://marketplace.visualstudio.com/items?itemName=salbert11.pinescript-helper" -colors: - bg: "#22262E" - fg: "#D6DEEB" - black: "#22262E" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 264 - contrast: - fg: 83.1 - black: 0 - red: 37.2 - green: 65.2 - yellow: 80 - blue: 53.9 - magenta: 51.7 - cyan: 57.6 - white: 104.8 - brightBlack: 13.5 - brightRed: 37.2 - brightGreen: 65.2 - brightYellow: 91.6 - brightBlue: 53.9 - brightMagenta: 51.7 - brightCyan: 71.9 - brightWhite: 104.8 diff --git a/themes/pine-theme-original-dark-extend.yaml b/themes/pine-theme-original-dark-extend.yaml index 5dbb4897..94df8df2 100644 --- a/themes/pine-theme-original-dark-extend.yaml +++ b/themes/pine-theme-original-dark-extend.yaml @@ -2,7 +2,7 @@ name: "Pine Theme Original Dark Extend" source: marketplace_id: "salbert11.pinescript-helper" version: "3.4.3" - installs: 9795 + installs: 9799 author: "salbert11" repo: "https://github.com/salbert11/pinescript" url: "https://marketplace.visualstudio.com/items?itemName=salbert11.pinescript-helper" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 274 + pair: null contrast: fg: 106.9 black: 0 diff --git a/themes/pine-theme-original-dark.yaml b/themes/pine-theme-original-dark.yaml deleted file mode 100644 index 0ee65396..00000000 --- a/themes/pine-theme-original-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Pine Theme Original Dark" -source: - marketplace_id: "salbert11.pinescript-helper" - version: "3.4.3" - installs: 9795 - author: "salbert11" - repo: "https://github.com/salbert11/pinescript" - url: "https://marketplace.visualstudio.com/items?itemName=salbert11.pinescript-helper" -colors: - bg: "#131722" - fg: "#FFFFFF" - black: "#131722" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#E17518" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#E17518" -meta: - mode: "dark" - accent: "teal" - hue: 269 - contrast: - fg: 106.8 - black: 0 - red: 39.3 - green: 67.2 - yellow: 82 - blue: 55.9 - magenta: 53.7 - cyan: 59.7 - white: 43.2 - brightBlack: 15.5 - brightRed: 39.3 - brightGreen: 67.2 - brightYellow: 93.7 - brightBlue: 55.9 - brightMagenta: 53.7 - brightCyan: 73.9 - brightWhite: 43.2 diff --git a/themes/pineapple.yaml b/themes/pineapple.yaml index ab3b52be..75097e0f 100644 --- a/themes/pineapple.yaml +++ b/themes/pineapple.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.9 black: 93.8 diff --git a/themes/pines.yaml b/themes/pines.yaml index cbf9711d..8275c2a5 100644 --- a/themes/pines.yaml +++ b/themes/pines.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 255 + pair: null contrast: fg: 74.6 black: 0 diff --git a/themes/pingocho-dark.yaml b/themes/pingocho-dark.yaml index d23cfbf0..8ac2e308 100644 --- a/themes/pingocho-dark.yaml +++ b/themes/pingocho-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 267 + pair: null contrast: fg: 80 black: 0 diff --git a/themes/pink-candy-dark-warm.yaml b/themes/pink-candy-dark-warm.yaml index d4985415..789e07d7 100644 --- a/themes/pink-candy-dark-warm.yaml +++ b/themes/pink-candy-dark-warm.yaml @@ -2,7 +2,7 @@ name: "Pink Candy Dark Warm" source: marketplace_id: "kuba-p.theme-pink-candy" version: "1.6.0" - installs: 31744 + installs: 31786 author: "kuba_p" repo: "https://github.com/KubaP/vscode-pink-candy" url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 57.3 black: 96.3 diff --git a/themes/pink-candy-dark.yaml b/themes/pink-candy-dark.yaml index 98aa2090..b2639c78 100644 --- a/themes/pink-candy-dark.yaml +++ b/themes/pink-candy-dark.yaml @@ -2,7 +2,7 @@ name: "Pink Candy Dark" source: marketplace_id: "kuba-p.theme-pink-candy" version: "1.6.0" - installs: 31744 + installs: 31786 author: "kuba_p" repo: "https://github.com/KubaP/vscode-pink-candy" url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: "Pink Candy Light" contrast: fg: 57.9 black: 105.4 diff --git a/themes/pink-candy-light.yaml b/themes/pink-candy-light.yaml index 93651d19..795870a7 100644 --- a/themes/pink-candy-light.yaml +++ b/themes/pink-candy-light.yaml @@ -2,7 +2,7 @@ name: "Pink Candy Light" source: marketplace_id: "kuba-p.theme-pink-candy" version: "1.6.0" - installs: 31744 + installs: 31786 author: "kuba_p" repo: "https://github.com/KubaP/vscode-pink-candy" url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Pink Candy Dark" contrast: fg: 81.8 black: 0 diff --git a/themes/pink-flower.yaml b/themes/pink-flower.yaml index d5180811..0dd3181a 100644 --- a/themes/pink-flower.yaml +++ b/themes/pink-flower.yaml @@ -2,7 +2,7 @@ name: "Pink Flower" source: marketplace_id: "stevennyang.green-tree" version: "1.2.1" - installs: 5715 + installs: 5716 author: "Steven N. Yang" repo: "https://github.com/snyang/vscode-theme-green-tree" url: "https://marketplace.visualstudio.com/items?itemName=stevennyang.green-tree" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 95.7 black: 99.1 diff --git a/themes/pink-neon.yaml b/themes/pink-neon.yaml index 2a99f495..09931a73 100644 --- a/themes/pink-neon.yaml +++ b/themes/pink-neon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 323 + pair: null contrast: fg: 52.6 black: 0 diff --git a/themes/pink-theme.yaml b/themes/pink-theme.yaml index 301e54fc..5ee940e9 100644 --- a/themes/pink-theme.yaml +++ b/themes/pink-theme.yaml @@ -2,7 +2,7 @@ name: "Pink Theme" source: marketplace_id: "huacat.pink-theme" version: "1.1.2" - installs: 71463 + installs: 71499 author: "huacat" repo: "https://github.com/huacat1017/huacat.pink-theme" url: "https://marketplace.visualstudio.com/items?itemName=huacat.pink-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: 326 + pair: null contrast: fg: 65.8 black: 88 diff --git a/themes/pink.yaml b/themes/pink.yaml index 2c109349..8ad5b04b 100644 --- a/themes/pink.yaml +++ b/themes/pink.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 59.5 black: 97.4 diff --git a/themes/pinkandgreen.yaml b/themes/pinkandgreen.yaml index 6bdb565f..396a4d7a 100644 --- a/themes/pinkandgreen.yaml +++ b/themes/pinkandgreen.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 71.9 black: 0 diff --git a/themes/pinkandwhite.yaml b/themes/pinkandwhite.yaml index 822f7ff2..37896c1b 100644 --- a/themes/pinkandwhite.yaml +++ b/themes/pinkandwhite.yaml @@ -2,7 +2,7 @@ name: "pinkandwhite" source: marketplace_id: "AninhaPardini.pinkandwhite" version: "0.0.1" - installs: 2237 + installs: 2238 author: "Aninha Pardini" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AninhaPardini.pinkandwhite" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 69.5 black: 106 diff --git a/themes/pinkcloud.yaml b/themes/pinkcloud.yaml index 055c2464..bf13fb9f 100644 --- a/themes/pinkcloud.yaml +++ b/themes/pinkcloud.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.1 black: 92.1 diff --git a/themes/pinkcodes-pink.yaml b/themes/pinkcodes-pink.yaml index 6cce8dcc..24312380 100644 --- a/themes/pinkcodes-pink.yaml +++ b/themes/pinkcodes-pink.yaml @@ -2,7 +2,7 @@ name: "PinkCodes Pink" source: marketplace_id: "PinkCodes.pinkcodes" version: "0.0.22" - installs: 4034 + installs: 4040 author: "PinkCodes" repo: "https://github.com/pinkc0des/pinkcodes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=PinkCodes.pinkcodes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 328 + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/pinkdark.yaml b/themes/pinkdark.yaml index 9df5bb84..6167b75f 100644 --- a/themes/pinkdark.yaml +++ b/themes/pinkdark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 81 black: 0 diff --git a/themes/pinkmare.yaml b/themes/pinkmare.yaml index 522e29e9..816734fa 100644 --- a/themes/pinkmare.yaml +++ b/themes/pinkmare.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 90.9 black: 0 diff --git a/themes/pinkppuccin.yaml b/themes/pinkppuccin.yaml index 75774d79..4c0c51c3 100644 --- a/themes/pinkppuccin.yaml +++ b/themes/pinkppuccin.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 300 + pair: null contrast: fg: 79.6 black: 25.6 diff --git a/themes/pinky-promise-dark.yaml b/themes/pinky-promise-dark.yaml index 1fa990ef..6e5c7e4c 100644 --- a/themes/pinky-promise-dark.yaml +++ b/themes/pinky-promise-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 308 + pair: "Pinky Promise Light" contrast: fg: 73.9 black: 24.1 diff --git a/themes/pinky-promise-light.yaml b/themes/pinky-promise-light.yaml index 007ee8e0..6ba59859 100644 --- a/themes/pinky-promise-light.yaml +++ b/themes/pinky-promise-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Pinky Promise Dark" contrast: fg: 78.6 black: 49.4 diff --git a/themes/pinkyboo.yaml b/themes/pinkyboo.yaml index d006a79d..e46eaa2b 100644 --- a/themes/pinkyboo.yaml +++ b/themes/pinkyboo.yaml @@ -2,7 +2,7 @@ name: "Pinkyboo" source: marketplace_id: "kissa1001.pinkyboo-theme" version: "1.0.3" - installs: 3324 + installs: 3325 author: "kissa1001" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kissa1001.pinkyboo-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 81.5 black: 70.8 diff --git a/themes/pinot-gris.yaml b/themes/pinot-gris.yaml index 124b8620..86bad21c 100644 --- a/themes/pinot-gris.yaml +++ b/themes/pinot-gris.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 300 + pair: null contrast: fg: 78.1 black: 0 diff --git a/themes/pinya-theme.yaml b/themes/pinya-theme.yaml index 52f5cab7..ca40a26c 100644 --- a/themes/pinya-theme.yaml +++ b/themes/pinya-theme.yaml @@ -2,7 +2,7 @@ name: "Pinya Theme" source: marketplace_id: "Pinya.pinya-theme" version: "1.0.16" - installs: 112 + installs: 113 author: "Pinya" repo: "https://github.com/CarlesRojas/pinya-theme" url: "https://marketplace.visualstudio.com/items?itemName=Pinya.pinya-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 89.7 black: 0 diff --git a/themes/pipboy-theme.yaml b/themes/pipboy-theme.yaml index 6afd22a8..25bb5b04 100644 --- a/themes/pipboy-theme.yaml +++ b/themes/pipboy-theme.yaml @@ -2,7 +2,7 @@ name: "PipBoy Theme" source: marketplace_id: "smv7.pipboy-theme" version: "0.1.0" - installs: 1810 + installs: 1811 author: "smv7" repo: "https://github.com/smv7/pipboy-theme" url: "https://marketplace.visualstudio.com/items?itemName=smv7.pipboy-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 153 + pair: null contrast: fg: 71.6 black: 71.6 diff --git a/themes/pirulug-dark.yaml b/themes/pirulug-dark.yaml index 7417e74c..9523f173 100644 --- a/themes/pirulug-dark.yaml +++ b/themes/pirulug-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 267 + pair: null contrast: fg: 86.3 black: 34.3 diff --git a/themes/pirulug-ligt.yaml b/themes/pirulug-ligt.yaml index 38d99650..1b9300b2 100644 --- a/themes/pirulug-ligt.yaml +++ b/themes/pirulug-ligt.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.9 black: 81.5 diff --git a/themes/pistachio-madness.yaml b/themes/pistachio-madness.yaml index ecf9bcd3..a50b97f3 100644 --- a/themes/pistachio-madness.yaml +++ b/themes/pistachio-madness.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 164 + pair: null contrast: fg: 32 black: 25.9 diff --git a/themes/pitaya-smoothie.yaml b/themes/pitaya-smoothie.yaml index df8dd7ae..2f585a3b 100644 --- a/themes/pitaya-smoothie.yaml +++ b/themes/pitaya-smoothie.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 288 + pair: null contrast: fg: 106.2 black: 0 diff --git a/themes/pittaya-theme-light.yaml b/themes/pittaya-theme-light.yaml index 6b6dfb75..8c312709 100644 --- a/themes/pittaya-theme-light.yaml +++ b/themes/pittaya-theme-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 98.1 black: 103 diff --git a/themes/pittaya-theme.yaml b/themes/pittaya-theme.yaml index d5e32ce6..0c5e3d2c 100644 --- a/themes/pittaya-theme.yaml +++ b/themes/pittaya-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 91.6 black: 0 diff --git a/themes/pittcsc-theme.yaml b/themes/pittcsc-theme.yaml index 80fcbda8..d0dae246 100644 --- a/themes/pittcsc-theme.yaml +++ b/themes/pittcsc-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 101.1 black: 0 diff --git a/themes/pixeye-theme.yaml b/themes/pixeye-theme.yaml index 5e398a4d..3acef6f3 100644 --- a/themes/pixeye-theme.yaml +++ b/themes/pixeye-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 71.5 black: 0 diff --git a/themes/pizarra.yaml b/themes/pizarra.yaml index 06b1505e..f831169e 100644 --- a/themes/pizarra.yaml +++ b/themes/pizarra.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 106.9 black: 0 diff --git a/themes/plane.yaml b/themes/plane.yaml index c5bd84c3..8516a209 100644 --- a/themes/plane.yaml +++ b/themes/plane.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 273 + pair: null contrast: fg: 104.7 black: 28.7 diff --git a/themes/plantillathemes.yaml b/themes/plantillathemes.yaml index 6df01f8f..8ff53484 100644 --- a/themes/plantillathemes.yaml +++ b/themes/plantillathemes.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: null contrast: fg: 107.2 black: 0 diff --git a/themes/plasma-pink.yaml b/themes/plasma-pink.yaml index 2fd7709c..d1e4d040 100644 --- a/themes/plasma-pink.yaml +++ b/themes/plasma-pink.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 327 + pair: null contrast: fg: 93.3 black: 0 diff --git a/themes/plasticine.yaml b/themes/plasticine.yaml index 6dd7f7db..b2b14e41 100644 --- a/themes/plasticine.yaml +++ b/themes/plasticine.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 258 + pair: null contrast: fg: 57.5 black: 20 diff --git a/themes/platzi-theme.yaml b/themes/platzi-theme.yaml index 1144d121..21b7973b 100644 --- a/themes/platzi-theme.yaml +++ b/themes/platzi-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 265 + pair: null contrast: fg: 105.3 black: 0 diff --git a/themes/playground-theme.yaml b/themes/playground-theme.yaml index ce05de69..b8957a0d 100644 --- a/themes/playground-theme.yaml +++ b/themes/playground-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/playground.yaml b/themes/playground.yaml index 31fe8126..1903bf0a 100644 --- a/themes/playground.yaml +++ b/themes/playground.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 298 + pair: null contrast: fg: 107.1 black: 0 diff --git a/themes/pleasure-contrast.yaml b/themes/pleasure-contrast.yaml index ea12662c..4b2d9f27 100644 --- a/themes/pleasure-contrast.yaml +++ b/themes/pleasure-contrast.yaml @@ -1,11 +1,11 @@ name: "pleasure-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#17191C" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/pleasure-light.yaml b/themes/pleasure-light.yaml index 844b7714..a6e784dc 100644 --- a/themes/pleasure-light.yaml +++ b/themes/pleasure-light.yaml @@ -1,11 +1,11 @@ name: "pleasure-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#474E56" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 89.1 black: 0 diff --git a/themes/pleasure.yaml b/themes/pleasure.yaml index 23944fa7..c04586fc 100644 --- a/themes/pleasure.yaml +++ b/themes/pleasure.yaml @@ -1,11 +1,11 @@ name: "pleasure" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#32373D" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 253 + pair: null contrast: fg: 68 black: 0 diff --git a/themes/plotka-amethyst.yaml b/themes/plotka-amethyst.yaml index 02b1f7a0..1f8c3961 100644 --- a/themes/plotka-amethyst.yaml +++ b/themes/plotka-amethyst.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 102.2 black: 0 diff --git a/themes/pls-my-eyes-sir.yaml b/themes/pls-my-eyes-sir.yaml index 1e1ea1e8..b1812ee0 100644 --- a/themes/pls-my-eyes-sir.yaml +++ b/themes/pls-my-eyes-sir.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/plurpelvsc.yaml b/themes/plurpelvsc.yaml index 1ebcf687..9bbb9ec4 100644 --- a/themes/plurpelvsc.yaml +++ b/themes/plurpelvsc.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 291 + pair: null contrast: fg: 93.9 black: 0 diff --git a/themes/pluto-dark.yaml b/themes/pluto-dark.yaml index b570bfe1..1e5bd72a 100644 --- a/themes/pluto-dark.yaml +++ b/themes/pluto-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 74 black: 0 diff --git a/themes/po.yaml b/themes/po.yaml index 0c84d0aa..e751484a 100644 --- a/themes/po.yaml +++ b/themes/po.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/poimandres-dark-theme.yaml b/themes/poimandres-dark-theme.yaml deleted file mode 100644 index ad333ee6..00000000 --- a/themes/poimandres-dark-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "poimandres dark theme" -source: - marketplace_id: "brandonsaldan.pmndrs-vue" - version: "1.0.0" - installs: 4118 - author: "Brandon Saldan" - repo: "https://github.com/brandonsaldan/poimandres-vue" - url: "https://marketplace.visualstudio.com/items?itemName=brandonsaldan.pmndrs-vue" -colors: - bg: "#FEFEFF" - fg: "#969CBD" - black: "#FEFEFF" - red: "#FF2090" - green: "#01DAB2" - yellow: "#FFD467" - blue: "#8ABACD" - magenta: "#EB8394" - cyan: "#8ABACD" - white: "#000000" - brightBlack: "#969CBD" - brightRed: "#FF2090" - brightGreen: "#01DAB2" - brightYellow: "#FFD467" - brightBlue: "#0EBFFF" - brightMagenta: "#EB8394" - brightCyan: "#0EBFFF" - brightWhite: "#000000" -meta: - mode: "light" - accent: "red" - hue: null - contrast: - fg: 51.8 - black: 0 - red: 60.7 - green: 32.1 - yellow: 19.2 - blue: 40.6 - magenta: 49.2 - cyan: 40.6 - white: 105.5 - brightBlack: 51.8 - brightRed: 60.7 - brightGreen: 32.1 - brightYellow: 19.2 - brightBlue: 40.3 - brightMagenta: 49.2 - brightCyan: 40.3 - brightWhite: 105.5 diff --git a/themes/polar-black-cherry-blossom.yaml b/themes/polar-black-cherry-blossom.yaml index fc0b0cff..65200a14 100644 --- a/themes/polar-black-cherry-blossom.yaml +++ b/themes/polar-black-cherry-blossom.yaml @@ -2,7 +2,7 @@ name: "Polar Black Cherry Blossom" source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" - installs: 184 + installs: 190 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 85.8 black: 0 diff --git a/themes/polar-black-green-cactus.yaml b/themes/polar-black-green-cactus.yaml index 6b106222..d9762691 100644 --- a/themes/polar-black-green-cactus.yaml +++ b/themes/polar-black-green-cactus.yaml @@ -2,7 +2,7 @@ name: "Polar Black Green Cactus" source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" - installs: 184 + installs: 190 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 88.8 black: 0 diff --git a/themes/polar-black-ice.yaml b/themes/polar-black-ice.yaml index edb29d7d..8fd8cb3d 100644 --- a/themes/polar-black-ice.yaml +++ b/themes/polar-black-ice.yaml @@ -2,7 +2,7 @@ name: "Polar Black Ice" source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" - installs: 184 + installs: 190 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "blue" hue: null + pair: null contrast: fg: 93.8 black: 0 diff --git a/themes/polar-black-less-black-smoke.yaml b/themes/polar-black-less-black-smoke.yaml index 58e83fff..1b6620f0 100644 --- a/themes/polar-black-less-black-smoke.yaml +++ b/themes/polar-black-less-black-smoke.yaml @@ -2,7 +2,7 @@ name: "Polar Black Less Black Smoke" source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" - installs: 184 + installs: 190 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/polar-black-light.yaml b/themes/polar-black-light.yaml index 30972e9b..07fddfab 100644 --- a/themes/polar-black-light.yaml +++ b/themes/polar-black-light.yaml @@ -2,7 +2,7 @@ name: "Polar Black Light" source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" - installs: 184 + installs: 190 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.1 black: 98.1 diff --git a/themes/polar-black-red.yaml b/themes/polar-black-red.yaml index 6e55073d..a2fe75c5 100644 --- a/themes/polar-black-red.yaml +++ b/themes/polar-black-red.yaml @@ -2,7 +2,7 @@ name: "Polar Black Red" source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" - installs: 184 + installs: 190 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 81.4 black: 0 diff --git a/themes/polar-black-savanna.yaml b/themes/polar-black-savanna.yaml index 804b002d..c2c95f5b 100644 --- a/themes/polar-black-savanna.yaml +++ b/themes/polar-black-savanna.yaml @@ -2,7 +2,7 @@ name: "Polar Black Savanna" source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" - installs: 184 + installs: 190 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 86.2 black: 0 diff --git a/themes/polar-black.yaml b/themes/polar-black.yaml index d4d11cee..be0ced96 100644 --- a/themes/polar-black.yaml +++ b/themes/polar-black.yaml @@ -2,7 +2,7 @@ name: "Polar Black" source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" - installs: 184 + installs: 190 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/polar-ice-dark.yaml b/themes/polar-ice-dark.yaml index e366c3c7..083a8c3b 100644 --- a/themes/polar-ice-dark.yaml +++ b/themes/polar-ice-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: "Polar Ice Light" contrast: fg: 82.8 black: 0 diff --git a/themes/polar-ice-light.yaml b/themes/polar-ice-light.yaml index 9a77a7c1..7aae1173 100644 --- a/themes/polar-ice-light.yaml +++ b/themes/polar-ice-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Polar Ice Dark" contrast: fg: 85 black: 0 diff --git a/themes/polar-light.yaml b/themes/polar-light.yaml index e7fc4df5..5ee7f86a 100644 --- a/themes/polar-light.yaml +++ b/themes/polar-light.yaml @@ -2,7 +2,7 @@ name: "Polar Light" source: marketplace_id: "postnumbers.polar-themes" version: "0.0.8" - installs: 36 + installs: 37 author: "Postnumbers" repo: "https://github.com/postnumbers/polar-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.polar-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Polar Night" contrast: fg: 98.4 black: 106 diff --git a/themes/polar-midnight.yaml b/themes/polar-midnight.yaml index 3aabe04b..eb8bbf35 100644 --- a/themes/polar-midnight.yaml +++ b/themes/polar-midnight.yaml @@ -2,7 +2,7 @@ name: "Polar Midnight" source: marketplace_id: "postnumbers.polar-themes" version: "0.0.8" - installs: 36 + installs: 37 author: "Postnumbers" repo: "https://github.com/postnumbers/polar-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.polar-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.4 black: 9.1 diff --git a/themes/polar-night.yaml b/themes/polar-night.yaml index ef25b56b..229faa57 100644 --- a/themes/polar-night.yaml +++ b/themes/polar-night.yaml @@ -2,7 +2,7 @@ name: "Polar Night" source: marketplace_id: "postnumbers.polar-themes" version: "0.0.8" - installs: 36 + installs: 37 author: "Postnumbers" repo: "https://github.com/postnumbers/polar-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.polar-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: "Polar Light" contrast: fg: 84.7 black: 7.4 diff --git a/themes/polar.yaml b/themes/polar.yaml deleted file mode 100644 index 03a53134..00000000 --- a/themes/polar.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Polar" -source: - marketplace_id: "merithayan.polar" - version: "0.1.1" - installs: 5887 - author: "Tim Hull" - repo: "https://www.github.com/mtyn/polar" - url: "https://marketplace.visualstudio.com/items?itemName=merithayan.polar" -colors: - bg: "#F9FAFB" - fg: "#4C566A" - black: "#ECEFF4" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#D8DEE9" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#3B4252" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 82.6 - black: 0 - red: 64.6 - green: 36.6 - yellow: 22.6 - blue: 49.1 - magenta: 51.3 - cyan: 35.6 - white: 7.7 - brightBlack: 14.2 - brightRed: 64.6 - brightGreen: 36.6 - brightYellow: 22.6 - brightBlue: 49.1 - brightMagenta: 51.3 - brightCyan: 37.6 - brightWhite: 90.3 diff --git a/themes/polish.yaml b/themes/polish.yaml index 159ab81d..a12c72da 100644 --- a/themes/polish.yaml +++ b/themes/polish.yaml @@ -2,7 +2,7 @@ name: "Polish" source: marketplace_id: "zhiking.polish-theme" version: "0.0.5" - installs: 2261 + installs: 2262 author: "zhiking" repo: "https://github.com/zyj1022/vscode-polish-theme" url: "https://marketplace.visualstudio.com/items?itemName=zhiking.polish-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 74.9 black: 99.5 diff --git a/themes/polychrome-dark.yaml b/themes/polychrome-dark.yaml index 5a8bb3fa..ca30ed9b 100644 --- a/themes/polychrome-dark.yaml +++ b/themes/polychrome-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 293 + pair: "Polychrome Light" contrast: fg: 60.6 black: 0 diff --git a/themes/polychrome-light.yaml b/themes/polychrome-light.yaml index 2a4d706f..22c23b06 100644 --- a/themes/polychrome-light.yaml +++ b/themes/polychrome-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Polychrome Dark" contrast: fg: 86.4 black: 25.5 diff --git a/themes/polygopher-theme.yaml b/themes/polygopher-theme.yaml index b8683c8c..c188ec23 100644 --- a/themes/polygopher-theme.yaml +++ b/themes/polygopher-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 51.2 black: 52.5 diff --git a/themes/polykai.yaml b/themes/polykai.yaml index 888ee8b8..e02107a7 100644 --- a/themes/polykai.yaml +++ b/themes/polykai.yaml @@ -2,7 +2,7 @@ name: "Polykai" source: marketplace_id: "adamgraham.polykai-theme" version: "1.0.1" - installs: 16964 + installs: 16966 author: "Adam Graham" repo: "https://github.com/adamgraham/polykai-vscode" url: "https://marketplace.visualstudio.com/items?itemName=adamgraham.polykai-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 102.2 black: 41.6 diff --git a/themes/polymath.yaml b/themes/polymath.yaml index d2b8e2dd..7d6229ca 100644 --- a/themes/polymath.yaml +++ b/themes/polymath.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 34.8 black: 8.5 diff --git a/themes/poolside.yaml b/themes/poolside.yaml index 81e9e812..0a9facfa 100644 --- a/themes/poolside.yaml +++ b/themes/poolside.yaml @@ -2,7 +2,7 @@ name: "Poolside" source: marketplace_id: "nsgrantham.poolside" version: "1.2.0" - installs: 695 + installs: 696 author: "nsgrantham" repo: "https://github.com/nsgrantham/poolside-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nsgrantham.poolside" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 289 + pair: null contrast: fg: 96.6 black: 17.7 diff --git a/themes/pop-os-cosmic.yaml b/themes/pop-os-cosmic.yaml index 2b77ed79..18ba34a9 100644 --- a/themes/pop-os-cosmic.yaml +++ b/themes/pop-os-cosmic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 49.5 black: 0 diff --git a/themes/popipa.yaml b/themes/popipa.yaml index 3feefa38..0f9a7b9b 100644 --- a/themes/popipa.yaml +++ b/themes/popipa.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 55.5 black: 0 diff --git a/themes/popping-and-locking-mod.yaml b/themes/popping-and-locking-mod.yaml index b3626579..3a80994a 100644 --- a/themes/popping-and-locking-mod.yaml +++ b/themes/popping-and-locking-mod.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 88.5 black: 0 diff --git a/themes/popping-and-locking.yaml b/themes/popping-and-locking.yaml index 74af0f34..3c2d95a2 100644 --- a/themes/popping-and-locking.yaml +++ b/themes/popping-and-locking.yaml @@ -2,7 +2,7 @@ name: "Popping and Locking" source: marketplace_id: "philsinatra.popping-and-locking-vscode-black" version: "1.1.7" - installs: 40558 + installs: 40563 author: "Phil Sinatra" repo: "https://github.com/philsinatra/popping-and-locking-vscode-black" url: "https://marketplace.visualstudio.com/items?itemName=philsinatra.popping-and-locking-vscode-black" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 91.2 black: 0 diff --git a/themes/popsicle-color-theme.yaml b/themes/popsicle-color-theme.yaml index d85f7512..abcb9ca4 100644 --- a/themes/popsicle-color-theme.yaml +++ b/themes/popsicle-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 101.2 black: 89.1 diff --git a/themes/port-gellhorn-noir.yaml b/themes/port-gellhorn-noir.yaml index 2fcdb41d..f16786f5 100644 --- a/themes/port-gellhorn-noir.yaml +++ b/themes/port-gellhorn-noir.yaml @@ -2,7 +2,7 @@ name: "Port Gellhorn Noir" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/posh.yaml b/themes/posh.yaml index 6a64039b..e5d9f73f 100644 --- a/themes/posh.yaml +++ b/themes/posh.yaml @@ -2,7 +2,7 @@ name: "Posh" source: marketplace_id: "lucasdecastro.posh" version: "1.0.6" - installs: 491 + installs: 492 author: "Lucas de Castro" repo: "https://github.com/lucasdecstro/posh" url: "https://marketplace.visualstudio.com/items?itemName=lucasdecastro.posh" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 91.8 black: 0 diff --git a/themes/potpourri-contrast.yaml b/themes/potpourri-contrast.yaml index 94f1473f..dc55be57 100644 --- a/themes/potpourri-contrast.yaml +++ b/themes/potpourri-contrast.yaml @@ -1,11 +1,11 @@ name: "potpourri-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0D0C0C" fg: "#F8F8F2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/potpourri-light.yaml b/themes/potpourri-light.yaml index 8712045f..4f557298 100644 --- a/themes/potpourri-light.yaml +++ b/themes/potpourri-light.yaml @@ -1,11 +1,11 @@ name: "potpourri-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#333333" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/potpourri.yaml b/themes/potpourri.yaml index d07cacc5..15315c1d 100644 --- a/themes/potpourri.yaml +++ b/themes/potpourri.yaml @@ -1,11 +1,11 @@ name: "potpourri" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2E2B2C" fg: "#F8F8F2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 98.8 black: 0 diff --git a/themes/powder.yaml b/themes/powder.yaml index a0a997a3..de596a9e 100644 --- a/themes/powder.yaml +++ b/themes/powder.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/power-dark.yaml b/themes/power-dark.yaml index 52d44113..3e02d88f 100644 --- a/themes/power-dark.yaml +++ b/themes/power-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77 black: 0 diff --git a/themes/power-low-purple-theme.yaml b/themes/power-low-purple-theme.yaml index 4c3abab1..a9f3c18e 100644 --- a/themes/power-low-purple-theme.yaml +++ b/themes/power-low-purple-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 302 + pair: null contrast: fg: 102.5 black: 0 diff --git a/themes/poznajkubernetes.yaml b/themes/poznajkubernetes.yaml index b07bee41..b510c736 100644 --- a/themes/poznajkubernetes.yaml +++ b/themes/poznajkubernetes.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 100.4 black: 0 diff --git a/themes/ppy-like.yaml b/themes/ppy-like.yaml index 0feb16ca..b52da5d0 100644 --- a/themes/ppy-like.yaml +++ b/themes/ppy-like.yaml @@ -1,11 +1,11 @@ name: "ppy-like" source: - marketplace_id: "reiisen.hi" + marketplace_id: "Fran4end.ppy-light" version: "0.0.1" - installs: 1297 - author: "reiisen" + installs: 60 + author: "Fran4end" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=reiisen.hi" + url: "https://marketplace.visualstudio.com/items?itemName=Fran4end.ppy-light" colors: bg: "#20202A" fg: "#D7D7FF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 82.1 black: 0 diff --git a/themes/pr-theme-obsidian.yaml b/themes/pr-theme-obsidian.yaml index fa258383..137b268f 100644 --- a/themes/pr-theme-obsidian.yaml +++ b/themes/pr-theme-obsidian.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 254 + pair: null contrast: fg: 81.1 black: 0 diff --git a/themes/pr-theme-premium.yaml b/themes/pr-theme-premium.yaml index f01a5e08..39e1c949 100644 --- a/themes/pr-theme-premium.yaml +++ b/themes/pr-theme-premium.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 271 + pair: null contrast: fg: 84.1 black: 0 diff --git a/themes/pr-theme.yaml b/themes/pr-theme.yaml index 9fc87fe3..fb02b67e 100644 --- a/themes/pr-theme.yaml +++ b/themes/pr-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 71.3 black: 0 diff --git a/themes/pre.yaml b/themes/pre.yaml index 9db7dfec..94d2a596 100644 --- a/themes/pre.yaml +++ b/themes/pre.yaml @@ -2,7 +2,7 @@ name: "Pre" source: marketplace_id: "leandromatos.pre" version: "0.0.7" - installs: 13042 + installs: 13044 author: "Leandro Matos" repo: "https://github.com/leandromatos/pre-theme" url: "https://marketplace.visualstudio.com/items?itemName=leandromatos.pre" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 99.6 black: 0 diff --git a/themes/prescient.yaml b/themes/prescient.yaml index 1f03813a..a75972de 100644 --- a/themes/prescient.yaml +++ b/themes/prescient.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 281 + pair: null contrast: fg: 36.5 black: 0 diff --git a/themes/pretentious-name.yaml b/themes/pretentious-name.yaml index e83d62c9..14d565c1 100644 --- a/themes/pretentious-name.yaml +++ b/themes/pretentious-name.yaml @@ -2,7 +2,7 @@ name: "Pretentious Name" source: marketplace_id: "zhiayang.pretentious-name" version: "2.1.1" - installs: 2683 + installs: 2684 author: "zhiayang" repo: "https://github.com/zhiayang/vscode-theme-pretentious-name" url: "https://marketplace.visualstudio.com/items?itemName=zhiayang.pretentious-name" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 59.1 black: 0 diff --git a/themes/pretstyle.yaml b/themes/pretstyle.yaml index 1238083c..0dd00c7e 100644 --- a/themes/pretstyle.yaml +++ b/themes/pretstyle.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 242 + pair: null contrast: fg: 88 black: 18 diff --git a/themes/pretty-dark-theme.yaml b/themes/pretty-dark-theme.yaml index ea35203d..ca5094a0 100644 --- a/themes/pretty-dark-theme.yaml +++ b/themes/pretty-dark-theme.yaml @@ -2,7 +2,7 @@ name: "pretty-dark-theme" source: marketplace_id: "CJL.pretty-dark-theme" version: "1.0.3" - installs: 1988 + installs: 1992 author: "CJL" repo: "https://github.com/beixiyo/vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=CJL.pretty-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 68.7 black: 8.7 diff --git a/themes/pributan.yaml b/themes/pributan.yaml index c7451e50..96361328 100644 --- a/themes/pributan.yaml +++ b/themes/pributan.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: null contrast: fg: 57.3 black: 0 diff --git a/themes/primary-dark.yaml b/themes/primary-dark.yaml index 6e645c5d..30dff387 100644 --- a/themes/primary-dark.yaml +++ b/themes/primary-dark.yaml @@ -2,7 +2,7 @@ name: "Primary Dark" source: marketplace_id: "negativeone.primary-theme" version: "0.2.1" - installs: 230 + installs: 231 author: "negative.one" repo: "https://github.com/OliverDudgeon/primary-vscode" url: "https://marketplace.visualstudio.com/items?itemName=negativeone.primary-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 81 + pair: "Primary Light" contrast: fg: 58.6 black: 0 diff --git a/themes/primary-light.yaml b/themes/primary-light.yaml index c16d545c..62553993 100644 --- a/themes/primary-light.yaml +++ b/themes/primary-light.yaml @@ -2,7 +2,7 @@ name: "Primary Light" source: marketplace_id: "negativeone.primary-theme" version: "0.2.1" - installs: 230 + installs: 231 author: "negative.one" repo: "https://github.com/OliverDudgeon/primary-vscode" url: "https://marketplace.visualstudio.com/items?itemName=negativeone.primary-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Primary Dark" contrast: fg: 93.1 black: 0 diff --git a/themes/prime-contrast.yaml b/themes/prime-contrast.yaml index e2c38b34..2bb7ffb6 100644 --- a/themes/prime-contrast.yaml +++ b/themes/prime-contrast.yaml @@ -1,11 +1,11 @@ name: "prime-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0B0B11" fg: "#9090B2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 43.8 black: 0 diff --git a/themes/prime-light.yaml b/themes/prime-light.yaml index 6efde956..fda46095 100644 --- a/themes/prime-light.yaml +++ b/themes/prime-light.yaml @@ -1,11 +1,11 @@ name: "prime-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#3D3D5B" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 94.1 black: 0 diff --git a/themes/prime.yaml b/themes/prime.yaml index f07b97bc..d3ad673d 100644 --- a/themes/prime.yaml +++ b/themes/prime.yaml @@ -1,11 +1,11 @@ name: "prime" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#202030" fg: "#9090B2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 284 + pair: null contrast: fg: 41.7 black: 0 diff --git a/themes/primer-light.yaml b/themes/primer-light.yaml index 47d3f884..7a9e0c0f 100644 --- a/themes/primer-light.yaml +++ b/themes/primer-light.yaml @@ -2,7 +2,7 @@ name: "Primer Light" source: marketplace_id: "andrewmarkle.primer-light" version: "0.0.8" - installs: 43111 + installs: 43116 author: "Andrew Markle" repo: "https://github.com/andrewmarkle/primer-light" url: "https://marketplace.visualstudio.com/items?itemName=andrewmarkle.primer-light" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 98.7 black: 106 diff --git a/themes/prism-dark.yaml b/themes/prism-dark.yaml index 256904de..ccab5f0c 100644 --- a/themes/prism-dark.yaml +++ b/themes/prism-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.4 black: 102.8 diff --git a/themes/prism-light.yaml b/themes/prism-light.yaml index 69b391f8..61061dc4 100644 --- a/themes/prism-light.yaml +++ b/themes/prism-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 101.9 black: 106 diff --git a/themes/prisma.yaml b/themes/prisma.yaml index 0455ab9b..94cd5694 100644 --- a/themes/prisma.yaml +++ b/themes/prisma.yaml @@ -2,7 +2,7 @@ name: "Prisma" source: marketplace_id: "Quernest.prisma" version: "0.0.3" - installs: 8578 + installs: 8583 author: "Quernest" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Quernest.prisma" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 100.9 black: 0 diff --git a/themes/prismapixel-studios-dark-theme.yaml b/themes/prismapixel-studios-dark-theme.yaml index 867b169b..e4fa7f1a 100644 --- a/themes/prismapixel-studios-dark-theme.yaml +++ b/themes/prismapixel-studios-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 42.6 black: 0 diff --git a/themes/prismatic-dark.yaml b/themes/prismatic-dark.yaml index 0190aec7..eaac7a60 100644 --- a/themes/prismatic-dark.yaml +++ b/themes/prismatic-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Prismatic Light" contrast: fg: 72.9 black: 0 diff --git a/themes/prismatic-light.yaml b/themes/prismatic-light.yaml index 34b4c399..150666d6 100644 --- a/themes/prismatic-light.yaml +++ b/themes/prismatic-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Prismatic Dark" contrast: fg: 98.6 black: 98.6 diff --git a/themes/prismatic-void.yaml b/themes/prismatic-void.yaml index 3adee353..a7495949 100644 --- a/themes/prismatic-void.yaml +++ b/themes/prismatic-void.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/prismmagic.yaml b/themes/prismmagic.yaml index 75a3a965..55e28603 100644 --- a/themes/prismmagic.yaml +++ b/themes/prismmagic.yaml @@ -1,11 +1,11 @@ name: "PrismMagic" source: - marketplace_id: "PrismMagicTheme.PrismCode" - version: "1.0.2" - installs: 358 + marketplace_id: "PrismMagicTheme.PrismMagic" + version: "0.8.0" + installs: 47 author: "PrismMagic Theme" repo: "https://github.com/slotherinee/PrismMagic" - url: "https://marketplace.visualstudio.com/items?itemName=PrismMagicTheme.PrismCode" + url: "https://marketplace.visualstudio.com/items?itemName=PrismMagicTheme.PrismMagic" colors: bg: "#282A36" fg: "#F8F8F2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 99 black: 0 diff --git a/themes/professional-dark.yaml b/themes/professional-dark.yaml index 7d9e33c6..69b5f8fb 100644 --- a/themes/professional-dark.yaml +++ b/themes/professional-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/programmer.yaml b/themes/programmer.yaml index af958b32..8b78357a 100644 --- a/themes/programmer.yaml +++ b/themes/programmer.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 220 + pair: null contrast: fg: 78 black: 0 diff --git a/themes/progress.yaml b/themes/progress.yaml index 757fd281..0b609a5e 100644 --- a/themes/progress.yaml +++ b/themes/progress.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 37.6 diff --git a/themes/project-dark-theme-soft.yaml b/themes/project-dark-theme-soft.yaml index 7d3bba4e..be24ffdc 100644 --- a/themes/project-dark-theme-soft.yaml +++ b/themes/project-dark-theme-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/prom-wiki.yaml b/themes/prom-wiki.yaml index fe278157..793e664a 100644 --- a/themes/prom-wiki.yaml +++ b/themes/prom-wiki.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 37.2 black: 0 diff --git a/themes/proper-dracula.yaml b/themes/proper-dracula.yaml index b36aff01..730234a4 100644 --- a/themes/proper-dracula.yaml +++ b/themes/proper-dracula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 275 + pair: null contrast: fg: 104.3 black: 0 diff --git a/themes/proper-pure.yaml b/themes/proper-pure.yaml index 4880b9bb..489e6089 100644 --- a/themes/proper-pure.yaml +++ b/themes/proper-pure.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 270 + pair: null contrast: fg: 33.5 black: 29.6 diff --git a/themes/proper-theme-alternate-2.yaml b/themes/proper-theme-alternate-2.yaml index 2105de6c..9e797ca3 100644 --- a/themes/proper-theme-alternate-2.yaml +++ b/themes/proper-theme-alternate-2.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 269 + pair: null contrast: fg: 76.4 black: 0 diff --git a/themes/proper-theme-alternate-fork.yaml b/themes/proper-theme-alternate-fork.yaml index cbe1c015..34120f14 100644 --- a/themes/proper-theme-alternate-fork.yaml +++ b/themes/proper-theme-alternate-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 272 + pair: null contrast: fg: 76.1 black: 0 diff --git a/themes/proper-theme-fork.yaml b/themes/proper-theme-fork.yaml index 5991ef6e..5aa8e172 100644 --- a/themes/proper-theme-fork.yaml +++ b/themes/proper-theme-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 75.7 black: 0 diff --git a/themes/proper-up-for-what.yaml b/themes/proper-up-for-what.yaml index ecb665e1..a1999047 100644 --- a/themes/proper-up-for-what.yaml +++ b/themes/proper-up-for-what.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 276 + pair: null contrast: fg: 0 black: 0 diff --git a/themes/proper.yaml b/themes/proper.yaml index 3e6b655f..0c8fccf9 100644 --- a/themes/proper.yaml +++ b/themes/proper.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 48.6 black: 31.3 diff --git a/themes/propurple.yaml b/themes/propurple.yaml index 0eba9e2f..cf8373d3 100644 --- a/themes/propurple.yaml +++ b/themes/propurple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 88.9 black: 0 diff --git a/themes/ps-dark.yaml b/themes/ps-dark.yaml index ac934e37..20b4c72d 100644 --- a/themes/ps-dark.yaml +++ b/themes/ps-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "PS Light" contrast: fg: 79.5 black: 79.5 diff --git a/themes/ps-light.yaml b/themes/ps-light.yaml index af5e97f9..2a0bf4ea 100644 --- a/themes/ps-light.yaml +++ b/themes/ps-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "PS Dark" contrast: fg: 64.8 black: 64.8 diff --git a/themes/ps-mid-blue.yaml b/themes/ps-mid-blue.yaml index 3dd4925d..35fd8d4f 100644 --- a/themes/ps-mid-blue.yaml +++ b/themes/ps-mid-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 243 + pair: null contrast: fg: 76.6 black: 76.6 diff --git a/themes/ps-syntax.yaml b/themes/ps-syntax.yaml index e1507436..2e620d4e 100644 --- a/themes/ps-syntax.yaml +++ b/themes/ps-syntax.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 105.9 black: 0 diff --git a/themes/pudding-dark-caramel-beta.yaml b/themes/pudding-dark-caramel-beta.yaml index 37f4d61f..fd275697 100644 --- a/themes/pudding-dark-caramel-beta.yaml +++ b/themes/pudding-dark-caramel-beta.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 281 + pair: null contrast: fg: 77.6 black: 0 diff --git a/themes/pudding-dark-christmas.yaml b/themes/pudding-dark-christmas.yaml index f7ac8477..d5aa0cc0 100644 --- a/themes/pudding-dark-christmas.yaml +++ b/themes/pudding-dark-christmas.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 149 + pair: null contrast: fg: 67.4 black: 19.8 diff --git a/themes/pudding-dark.yaml b/themes/pudding-dark.yaml index d64c54f2..aaacf969 100644 --- a/themes/pudding-dark.yaml +++ b/themes/pudding-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 281 + pair: "Pudding Light" contrast: fg: 66 black: 18.4 diff --git a/themes/pudding-light-jk.yaml b/themes/pudding-light-jk.yaml index 94c844ca..2a7b5dcd 100644 --- a/themes/pudding-light-jk.yaml +++ b/themes/pudding-light-jk.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 57.6 black: 93.9 diff --git a/themes/pudding-light.yaml b/themes/pudding-light.yaml index 98a3bc23..1d3d9c23 100644 --- a/themes/pudding-light.yaml +++ b/themes/pudding-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 71 + pair: "Pudding Dark" contrast: fg: 51 black: 91.3 diff --git a/themes/pulpy-orange.yaml b/themes/pulpy-orange.yaml index d366af18..a8b8c511 100644 --- a/themes/pulpy-orange.yaml +++ b/themes/pulpy-orange.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 71.1 black: 0 diff --git a/themes/pulsar-default.yaml b/themes/pulsar-default.yaml deleted file mode 100644 index c8a38292..00000000 --- a/themes/pulsar-default.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Pulsar Default" -source: - marketplace_id: "dmrowiec-pl.pulsar-theme" - version: "1.0.8" - installs: 714 - author: "Damian Mrowiec" - repo: "https://github.com/dmrowiec-pl/pulsar-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dmrowiec-pl.pulsar-theme" -colors: - bg: "#1E1E1E" - fg: "#C5C8C6" - black: "#1E1E1E" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 71 - black: 0 - red: 23.8 - green: 52.2 - yellow: 56.8 - blue: 33.8 - magenta: 31.4 - cyan: 49.6 - white: 87.7 - brightBlack: 21.2 - brightRed: 36.5 - brightGreen: 76.2 - brightYellow: 83.1 - brightBlue: 49 - brightMagenta: 45.7 - brightCyan: 72.6 - brightWhite: 101.1 diff --git a/themes/pulsar.yaml b/themes/pulsar.yaml index 3664d3bb..9e398a3c 100644 --- a/themes/pulsar.yaml +++ b/themes/pulsar.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 71 black: 17.1 diff --git a/themes/pulse-balanced-purple.yaml b/themes/pulse-balanced-purple.yaml index fc0cb272..86f966db 100644 --- a/themes/pulse-balanced-purple.yaml +++ b/themes/pulse-balanced-purple.yaml @@ -2,7 +2,7 @@ name: "Pulse Balanced Purple" source: marketplace_id: "IrvinBenitez.Pulse-theme-vscode" version: "1.0.2" - installs: 104 + installs: 105 author: "Irvin Benitez" repo: "https://github.com/PulseStudio07/VScode-theme" url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 284 + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/pulse-comfort-light.yaml b/themes/pulse-comfort-light.yaml index 5b9d8911..44a4077a 100644 --- a/themes/pulse-comfort-light.yaml +++ b/themes/pulse-comfort-light.yaml @@ -2,7 +2,7 @@ name: "Pulse Comfort Light" source: marketplace_id: "IrvinBenitez.Pulse-theme-vscode" version: "1.0.2" - installs: 104 + installs: 105 author: "Irvin Benitez" repo: "https://github.com/PulseStudio07/VScode-theme" url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 93.8 black: 88.9 diff --git a/themes/pulse-soft-purple.yaml b/themes/pulse-soft-purple.yaml index 44092a86..da2edb8e 100644 --- a/themes/pulse-soft-purple.yaml +++ b/themes/pulse-soft-purple.yaml @@ -2,7 +2,7 @@ name: "Pulse Soft Purple" source: marketplace_id: "IrvinBenitez.Pulse-theme-vscode" version: "1.0.2" - installs: 104 + installs: 105 author: "Irvin Benitez" repo: "https://github.com/PulseStudio07/VScode-theme" url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 285 + pair: null contrast: fg: 74.6 black: 0 diff --git a/themes/pumpkin.yaml b/themes/pumpkin.yaml index 94dd7a6f..c04e2132 100644 --- a/themes/pumpkin.yaml +++ b/themes/pumpkin.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 61.9 black: 0 diff --git a/themes/punjab-land-of-five-rivers.yaml b/themes/punjab-land-of-five-rivers.yaml index 39a352ad..21e7d2cd 100644 --- a/themes/punjab-land-of-five-rivers.yaml +++ b/themes/punjab-land-of-five-rivers.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 97.3 black: 0 diff --git a/themes/punk-runner.yaml b/themes/punk-runner.yaml index 363c67be..c7d61589 100644 --- a/themes/punk-runner.yaml +++ b/themes/punk-runner.yaml @@ -2,7 +2,7 @@ name: "punk-runner" source: marketplace_id: "TheEdgesofBen.punk-runner" version: "0.0.5" - installs: 8802 + installs: 8804 author: "TheEdgesofBen" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TheEdgesofBen.punk-runner" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 188 + pair: null contrast: fg: 93.2 black: 0 diff --git a/themes/pur-theme-v1.yaml b/themes/pur-theme-v1.yaml index f1af1a74..b29c775e 100644 --- a/themes/pur-theme-v1.yaml +++ b/themes/pur-theme-v1.yaml @@ -2,7 +2,7 @@ name: "Pur+ Theme V1" source: marketplace_id: "DevEduardo.purplus-theme" version: "1.0.1" - installs: 397 + installs: 398 author: "DevEduardo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DevEduardo.purplus-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 285 + pair: null contrast: fg: 79.3 black: 54.4 diff --git a/themes/purble-0-0-2-fork-fork.yaml b/themes/purble-0-0-2-fork-fork.yaml index c56c8012..39f54594 100644 --- a/themes/purble-0-0-2-fork-fork.yaml +++ b/themes/purble-0-0-2-fork-fork.yaml @@ -2,7 +2,7 @@ name: "purble 0.0.2 - Fork - Fork" source: marketplace_id: "PSJoon.psjoon" version: "0.0.3" - installs: 5171 + installs: 5174 author: "PSJoon" repo: "https://github.com/PSjoon/testes" url: "https://marketplace.visualstudio.com/items?itemName=PSJoon.psjoon" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 305 + pair: null contrast: fg: 107.8 black: 0 diff --git a/themes/purddy.yaml b/themes/purddy.yaml index c9a09908..0d6090be 100644 --- a/themes/purddy.yaml +++ b/themes/purddy.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "teal" hue: null + pair: null contrast: fg: 85.4 black: 99.1 diff --git a/themes/pure-black.yaml b/themes/pure-black.yaml index e48c219c..5a849737 100644 --- a/themes/pure-black.yaml +++ b/themes/pure-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Pure Light" contrast: fg: 87.3 black: 0 diff --git a/themes/pure-dark.yaml b/themes/pure-dark.yaml index 5811d380..5e6032f8 100644 --- a/themes/pure-dark.yaml +++ b/themes/pure-dark.yaml @@ -1,49 +1,50 @@ name: "Pure Dark" source: - marketplace_id: "IKyzo.ikyzo-theme" - version: "1.0.0" - installs: 23 - author: "IKyzo" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=IKyzo.ikyzo-theme" + marketplace_id: "Anindra.puredark" + version: "0.10.0" + installs: 1798 + author: "Anindra" + repo: "https://github.com/meanindra/codeavenge-vscode.git#master" + url: "https://marketplace.visualstudio.com/items?itemName=Anindra.puredark" colors: - bg: "#101010" - fg: "#AAAAAA" - black: "#101010" - red: "#7E7E7E" - green: "#525252" - yellow: "#A9A9A9" - blue: "#3C3C3C" - magenta: "#939393" - cyan: "#686868" - white: "#BFBFBF" - brightBlack: "#262626" - brightRed: "#7E7E7E" - brightGreen: "#525252" - brightYellow: "#A9A9A9" - brightBlue: "#3C3C3C" - brightMagenta: "#939393" - brightCyan: "#686868" - brightWhite: "#EBEBEB" + bg: "#171717" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: mode: "dark" - accent: "yellow" + accent: "pink" hue: null + pair: null contrast: - fg: 55.8 + fg: 79.5 black: 0 - red: 33.4 - green: 14.5 - yellow: 55.3 - blue: 0 - magenta: 43.7 - cyan: 23.5 - white: 67.6 - brightBlack: 0 - brightRed: 33.4 - brightGreen: 14.5 - brightYellow: 55.3 - brightBlue: 0 - brightMagenta: 43.7 - brightCyan: 23.5 - brightWhite: 94.4 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/pure-light.yaml b/themes/pure-light.yaml index f1a3f1fc..5c51b80d 100644 --- a/themes/pure-light.yaml +++ b/themes/pure-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Pure Black" contrast: fg: 101.8 black: 94.3 diff --git a/themes/pureblack.yaml b/themes/pureblack.yaml index 93b372c0..2921b38d 100644 --- a/themes/pureblack.yaml +++ b/themes/pureblack.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 91.2 black: 0 diff --git a/themes/puri-twilite.yaml b/themes/puri-twilite.yaml index 8bddf5ca..19fb9da3 100644 --- a/themes/puri-twilite.yaml +++ b/themes/puri-twilite.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 36 + pair: null contrast: fg: 107.2 black: 0 diff --git a/themes/purple-cake.yaml b/themes/purple-cake.yaml index 6b1ea687..d486f00e 100644 --- a/themes/purple-cake.yaml +++ b/themes/purple-cake.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 308 + pair: null contrast: fg: 98.5 black: 0 diff --git a/themes/purple-cloud-minimal.yaml b/themes/purple-cloud-minimal.yaml index 02a84d67..b3c03e94 100644 --- a/themes/purple-cloud-minimal.yaml +++ b/themes/purple-cloud-minimal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/purple-cloud-theme.yaml b/themes/purple-cloud-theme.yaml index 1f21df57..f33533b9 100644 --- a/themes/purple-cloud-theme.yaml +++ b/themes/purple-cloud-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 107.3 black: 0 diff --git a/themes/purple-codain.yaml b/themes/purple-codain.yaml index a5996ff8..d1606c40 100644 --- a/themes/purple-codain.yaml +++ b/themes/purple-codain.yaml @@ -2,7 +2,7 @@ name: "Purple Codain" source: marketplace_id: "ymaninho.theme-purple-codain" version: "0.0.6" - installs: 3749 + installs: 3759 author: "ymaninho" repo: "https://github.com/ymaninho54/Theme-Vscode-Purple" url: "https://marketplace.visualstudio.com/items?itemName=ymaninho.theme-purple-codain" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.6 black: 10.1 diff --git a/themes/purple-dark-black.yaml b/themes/purple-dark-black.yaml index f8915080..60fb2df9 100644 --- a/themes/purple-dark-black.yaml +++ b/themes/purple-dark-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 59.5 black: 0 diff --git a/themes/purple-dark-theme-unicode.yaml b/themes/purple-dark-theme-unicode.yaml index 2a2d0bf0..f170ca28 100644 --- a/themes/purple-dark-theme-unicode.yaml +++ b/themes/purple-dark-theme-unicode.yaml @@ -2,7 +2,7 @@ name: "Purple Dark Theme - Unicode" source: marketplace_id: "LeehXD.unicode-purple-dark-theme" version: "0.0.4" - installs: 959 + installs: 960 author: "leehxd" repo: "https://github.com/LeehXD/unicode-purple-dark" url: "https://marketplace.visualstudio.com/items?itemName=LeehXD.unicode-purple-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 102.6 black: 0 diff --git a/themes/purple-dark.yaml b/themes/purple-dark.yaml index 467737d8..1b096c45 100644 --- a/themes/purple-dark.yaml +++ b/themes/purple-dark.yaml @@ -2,7 +2,7 @@ name: "Purple/Dark" source: marketplace_id: "purple-theme-vs.purple-theme-vscode" version: "0.0.2" - installs: 2772 + installs: 2773 author: "purple-theme-vs" repo: "https://github.com/dbedoya04/purple-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=purple-theme-vs.purple-theme-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/purple-deep-black-fork.yaml b/themes/purple-deep-black-fork.yaml index 9357c827..e805f17a 100644 --- a/themes/purple-deep-black-fork.yaml +++ b/themes/purple-deep-black-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 317 + pair: null contrast: fg: 77.5 black: 10.5 diff --git a/themes/purple-deep-black.yaml b/themes/purple-deep-black.yaml index c5e4cff8..3c5ce5f4 100644 --- a/themes/purple-deep-black.yaml +++ b/themes/purple-deep-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 59.6 black: 0 diff --git a/themes/purple-dream.yaml b/themes/purple-dream.yaml index e7c5e236..0c763022 100644 --- a/themes/purple-dream.yaml +++ b/themes/purple-dream.yaml @@ -2,7 +2,7 @@ name: "Purple Dream" source: marketplace_id: "LR6549-extensions.purple-dream" version: "1.8.7" - installs: 557 + installs: 558 author: "LR6549" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LR6549-extensions.purple-dream" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 306 + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/purple-ish.yaml b/themes/purple-ish.yaml index f0e91112..dc84d628 100644 --- a/themes/purple-ish.yaml +++ b/themes/purple-ish.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 103.3 black: 0 diff --git a/themes/purple-royal.yaml b/themes/purple-royal.yaml index 15784420..fea3662a 100644 --- a/themes/purple-royal.yaml +++ b/themes/purple-royal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/purple-theme.yaml b/themes/purple-theme.yaml index e295acc5..501b247d 100644 --- a/themes/purple-theme.yaml +++ b/themes/purple-theme.yaml @@ -2,7 +2,7 @@ name: "Purple Theme" source: marketplace_id: "ma1on3se.purple-theme" version: "0.0.1" - installs: 2084 + installs: 2086 author: "Otávio de Souza Cardoso" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ma1on3se.purple-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 311 + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/purple-twist.yaml b/themes/purple-twist.yaml index d54c8904..3f699f50 100644 --- a/themes/purple-twist.yaml +++ b/themes/purple-twist.yaml @@ -2,7 +2,7 @@ name: "Purple Twist" source: marketplace_id: "VishalMaurya.zenith-ui" version: "0.2.4" - installs: 189 + installs: 191 author: "Vishal Maurya" repo: "https://github.com/maurya-07/zenith-ui" url: "https://marketplace.visualstudio.com/items?itemName=VishalMaurya.zenith-ui" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 301 + pair: null contrast: fg: 74.8 black: 22.9 diff --git a/themes/purple-void.yaml b/themes/purple-void.yaml index 2610de98..a2a5e119 100644 --- a/themes/purple-void.yaml +++ b/themes/purple-void.yaml @@ -2,7 +2,7 @@ name: "Purple Void" source: marketplace_id: "Rej.purpleVoid" version: "1.0.3" - installs: 5013 + installs: 5015 author: "Rej" repo: "https://github.com/Rejdesu/purpleVoid" url: "https://marketplace.visualstudio.com/items?itemName=Rej.purpleVoid" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/purple.yaml b/themes/purple.yaml index 8f5ad5c7..0bd36a56 100644 --- a/themes/purple.yaml +++ b/themes/purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 71.5 black: 0 diff --git a/themes/purpleandblack.yaml b/themes/purpleandblack.yaml index afb901e1..83fb85ee 100644 --- a/themes/purpleandblack.yaml +++ b/themes/purpleandblack.yaml @@ -2,7 +2,7 @@ name: "PurpleAndBlack" source: marketplace_id: "Pab-Theme.purpleandblack" version: "0.0.2" - installs: 984 + installs: 986 author: "Pab-Theme" repo: "https://github.com/DweOfisial/Theme-Visual-PaB" url: "https://marketplace.visualstudio.com/items?itemName=Pab-Theme.purpleandblack" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 46.5 black: 0 diff --git a/themes/purplechan.yaml b/themes/purplechan.yaml index 05a5f9ce..6110bebe 100644 --- a/themes/purplechan.yaml +++ b/themes/purplechan.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 40.9 black: 0 diff --git a/themes/purplecrystal.yaml b/themes/purplecrystal.yaml index e37c6173..4e0deef7 100644 --- a/themes/purplecrystal.yaml +++ b/themes/purplecrystal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 303 + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/purplephantom.yaml b/themes/purplephantom.yaml index 2eef87b4..3756180e 100644 --- a/themes/purplephantom.yaml +++ b/themes/purplephantom.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 59.3 black: 0 diff --git a/themes/purpleporschepheme.yaml b/themes/purpleporschepheme.yaml index 0767e642..3fcb9784 100644 --- a/themes/purpleporschepheme.yaml +++ b/themes/purpleporschepheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/purpler.yaml b/themes/purpler.yaml index d40be95c..581724b9 100644 --- a/themes/purpler.yaml +++ b/themes/purpler.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 304 + pair: null contrast: fg: 44.9 black: 20.8 diff --git a/themes/purplespace.yaml b/themes/purplespace.yaml index 02dc1500..31bb6d69 100644 --- a/themes/purplespace.yaml +++ b/themes/purplespace.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 95.2 black: 93.4 diff --git a/themes/purplexed-magic.yaml b/themes/purplexed-magic.yaml index 106b9e9b..41f641c4 100644 --- a/themes/purplexed-magic.yaml +++ b/themes/purplexed-magic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 298 + pair: null contrast: fg: 36.4 black: 0 diff --git a/themes/purplexed-theme.yaml b/themes/purplexed-theme.yaml index 57dcb8f7..7f481123 100644 --- a/themes/purplexed-theme.yaml +++ b/themes/purplexed-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 298 + pair: null contrast: fg: 38 black: 0 diff --git a/themes/purplezera.yaml b/themes/purplezera.yaml index e9e5ce91..ed802c6d 100644 --- a/themes/purplezera.yaml +++ b/themes/purplezera.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 105.6 black: 0 diff --git a/themes/purplish-fork.yaml b/themes/purplish-fork.yaml index 35d05973..d800086b 100644 --- a/themes/purplish-fork.yaml +++ b/themes/purplish-fork.yaml @@ -2,7 +2,7 @@ name: "Purplish - Fork" source: marketplace_id: "xynny.purple-theme" version: "0.0.2" - installs: 6243 + installs: 6245 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.purple-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 331 + pair: null contrast: fg: 79.7 black: 13.1 diff --git a/themes/purplue.yaml b/themes/purplue.yaml index f6bd0233..471ff9be 100644 --- a/themes/purplue.yaml +++ b/themes/purplue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/purply-dark.yaml b/themes/purply-dark.yaml index 0f98dbae..10a5e353 100644 --- a/themes/purply-dark.yaml +++ b/themes/purply-dark.yaml @@ -2,7 +2,7 @@ name: "Purply (Dark)" source: marketplace_id: "jeremy-gower.purply-theme" version: "2.0.5" - installs: 3048 + installs: 3049 author: "Jeremy Gower" repo: "https://github.com/jdgower/purply-theme" url: "https://marketplace.visualstudio.com/items?itemName=jeremy-gower.purply-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/purply-light.yaml b/themes/purply-light.yaml index 78be3841..e6d6bc8f 100644 --- a/themes/purply-light.yaml +++ b/themes/purply-light.yaml @@ -2,7 +2,7 @@ name: "Purply (Light)" source: marketplace_id: "jeremy-gower.purply-theme" version: "2.0.5" - installs: 3048 + installs: 3049 author: "Jeremy Gower" repo: "https://github.com/jdgower/purply-theme" url: "https://marketplace.visualstudio.com/items?itemName=jeremy-gower.purply-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 98.7 black: 101.5 diff --git a/themes/purppy.yaml b/themes/purppy.yaml index 9c47b8a7..ec168049 100644 --- a/themes/purppy.yaml +++ b/themes/purppy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 297 + pair: null contrast: fg: 79 black: 0 diff --git a/themes/purps.yaml b/themes/purps.yaml index 622a0485..8800eacb 100644 --- a/themes/purps.yaml +++ b/themes/purps.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 72.3 black: 0 diff --git a/themes/purrfect-marshmallow-lavender-night.yaml b/themes/purrfect-marshmallow-lavender-night.yaml index f2b0c929..e4610f7b 100644 --- a/themes/purrfect-marshmallow-lavender-night.yaml +++ b/themes/purrfect-marshmallow-lavender-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 294 + pair: null contrast: fg: 91.5 black: 0 diff --git a/themes/purrfect-marshmallow-pastel-pink.yaml b/themes/purrfect-marshmallow-pastel-pink.yaml index 0ca54558..491d6dca 100644 --- a/themes/purrfect-marshmallow-pastel-pink.yaml +++ b/themes/purrfect-marshmallow-pastel-pink.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 74.6 black: 74.6 diff --git a/themes/purupiu-theme.yaml b/themes/purupiu-theme.yaml index febaa539..3786aea5 100644 --- a/themes/purupiu-theme.yaml +++ b/themes/purupiu-theme.yaml @@ -2,7 +2,7 @@ name: "Purupiu Theme" source: marketplace_id: "Isadora.purupiu-theme" version: "0.0.2" - installs: 150 + installs: 151 author: "Isadora" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Isadora.purupiu-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.5 black: 0 diff --git a/themes/pushkin-is-white.yaml b/themes/pushkin-is-white.yaml index 9bb1d06a..348059c8 100644 --- a/themes/pushkin-is-white.yaml +++ b/themes/pushkin-is-white.yaml @@ -2,7 +2,7 @@ name: "Pushkin is White" source: marketplace_id: "ispushkin.pushkin-is-white-theme" version: "0.0.7" - installs: 12362 + installs: 12365 author: "IS. Pushkin" repo: "https://github.com/llatigid/Pushkin-is-White-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ispushkin.pushkin-is-white-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.5 black: 95.5 diff --git a/themes/pussdev-pink-theme.yaml b/themes/pussdev-pink-theme.yaml index f2193505..5bcaef34 100644 --- a/themes/pussdev-pink-theme.yaml +++ b/themes/pussdev-pink-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 72.8 black: 0 diff --git a/themes/pvc-light.yaml b/themes/pvc-light.yaml index 58e9d819..c9d6000b 100644 --- a/themes/pvc-light.yaml +++ b/themes/pvc-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 101.9 black: 106 diff --git a/themes/pvdk-theme.yaml b/themes/pvdk-theme.yaml index 579448fc..22a949a5 100644 --- a/themes/pvdk-theme.yaml +++ b/themes/pvdk-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 99.3 black: 0 diff --git a/themes/pycharm-theme.yaml b/themes/pycharm-theme.yaml index d2eaf0b0..7d05fd73 100644 --- a/themes/pycharm-theme.yaml +++ b/themes/pycharm-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 75.8 black: 0 diff --git a/themes/python-bright-colors-theme.yaml b/themes/python-bright-colors-theme.yaml index 6306e852..7d08538c 100644 --- a/themes/python-bright-colors-theme.yaml +++ b/themes/python-bright-colors-theme.yaml @@ -2,7 +2,7 @@ name: "Python-Bright-Colors-Theme" source: marketplace_id: "Meda2dAsada.python-bright-colors-theme" version: "0.0.1" - installs: 892 + installs: 893 author: "Meda2dAsada" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Meda2dAsada.python-bright-colors-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 319 + pair: null contrast: fg: 44.5 black: 0 diff --git a/themes/qara.yaml b/themes/qara.yaml index 76107a07..ace0eb72 100644 --- a/themes/qara.yaml +++ b/themes/qara.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 249 + pair: null contrast: fg: 74.4 black: 0 diff --git a/themes/qii-theme-dark-shallow.yaml b/themes/qii-theme-dark-shallow.yaml index b439d8df..f7e2906c 100644 --- a/themes/qii-theme-dark-shallow.yaml +++ b/themes/qii-theme-dark-shallow.yaml @@ -2,7 +2,7 @@ name: "Qii Theme Dark Shallow" source: marketplace_id: "qiqi29.qii-theme" version: "1.6.4" - installs: 3873 + installs: 3877 author: "qiqi29" repo: "https://github.com/Qiqi29/qii-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 254 + pair: null contrast: fg: 73 black: 0 diff --git a/themes/qii-theme-dark.yaml b/themes/qii-theme-dark.yaml index 92d9cba5..94ea3d7e 100644 --- a/themes/qii-theme-dark.yaml +++ b/themes/qii-theme-dark.yaml @@ -2,7 +2,7 @@ name: "Qii Theme Dark" source: marketplace_id: "qiqi29.qii-theme" version: "1.6.4" - installs: 3873 + installs: 3877 author: "qiqi29" repo: "https://github.com/Qiqi29/qii-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: "Qii Theme Light" contrast: fg: 74.1 black: 0 diff --git a/themes/qii-theme-light.yaml b/themes/qii-theme-light.yaml index a5218140..fefba023 100644 --- a/themes/qii-theme-light.yaml +++ b/themes/qii-theme-light.yaml @@ -2,7 +2,7 @@ name: "Qii Theme Light" source: marketplace_id: "qiqi29.qii-theme" version: "1.6.4" - installs: 3873 + installs: 3877 author: "qiqi29" repo: "https://github.com/Qiqi29/qii-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Qii Theme Dark" contrast: fg: 78.9 black: 96.3 diff --git a/themes/qoder-dark.yaml b/themes/qoder-dark.yaml index 1575afba..8b0b68cb 100644 --- a/themes/qoder-dark.yaml +++ b/themes/qoder-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 285 + pair: null contrast: fg: 91.7 black: 0 diff --git a/themes/qqqoid-light-color.yaml b/themes/qqqoid-light-color.yaml index 26acb171..14c3ddbe 100644 --- a/themes/qqqoid-light-color.yaml +++ b/themes/qqqoid-light-color.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 101.5 black: 101.5 diff --git a/themes/qt-creator-like-dark-theme.yaml b/themes/qt-creator-like-dark-theme.yaml index d160793e..e58bbe25 100644 --- a/themes/qt-creator-like-dark-theme.yaml +++ b/themes/qt-creator-like-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Qt Creator-Like Dark Theme" source: marketplace_id: "MichaelH.qtlike-dark-theme" version: "0.0.1" - installs: 3267 + installs: 3268 author: "Michael H" repo: "https://github.com/Michael-H7/vscode-qtlike-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=MichaelH.qtlike-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 71.6 black: 0 diff --git a/themes/qtz-theme.yaml b/themes/qtz-theme.yaml index 4d196fce..96203af3 100644 --- a/themes/qtz-theme.yaml +++ b/themes/qtz-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 260 + pair: null contrast: fg: 67.2 black: 0 diff --git a/themes/quantum-blue-dark.yaml b/themes/quantum-blue-dark.yaml index 1d63d8f5..89917674 100644 --- a/themes/quantum-blue-dark.yaml +++ b/themes/quantum-blue-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 91.4 black: 0 diff --git a/themes/quantum-bordered.yaml b/themes/quantum-bordered.yaml deleted file mode 100644 index 3b1a5820..00000000 --- a/themes/quantum-bordered.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Quantum Bordered" -source: - marketplace_id: "CalebEphrem.quantum" - version: "2.0.3" - installs: 413 - author: "Caleb Ephrem" - repo: "https://github.com/calebephrem/quantum-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" -colors: - bg: "#040527" - fg: "#E5E5E5" - black: "#1E232B" - red: "#EA6C73" - green: "#7FD962" - yellow: "#DDCC55" - blue: "#53BDFA" - magenta: "#CDA1FA" - cyan: "#70EFEF" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAFF4C" - brightYellow: "#FFDD70" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#00DDEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 272 - contrast: - fg: 90.7 - black: 0 - red: 44.8 - green: 70.7 - yellow: 74.4 - blue: 61.3 - magenta: 61.3 - cyan: 85.3 - white: 72.4 - brightBlack: 23.6 - brightRed: 47.3 - brightGreen: 92.8 - brightYellow: 87.4 - brightBlue: 64.1 - brightMagenta: 64.1 - brightCyan: 73.9 - brightWhite: 107.6 diff --git a/themes/quantum-dark-bordered.yaml b/themes/quantum-dark-bordered.yaml deleted file mode 100644 index bd94d1d3..00000000 --- a/themes/quantum-dark-bordered.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Quantum Dark Bordered" -source: - marketplace_id: "CalebEphrem.quantum" - version: "2.0.3" - installs: 413 - author: "Caleb Ephrem" - repo: "https://github.com/calebephrem/quantum-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" -colors: - bg: "#000017" - fg: "#E5E5E5" - black: "#1E232B" - red: "#EA6C73" - green: "#7FD962" - yellow: "#DDCC55" - blue: "#53BDFA" - magenta: "#CDA1FA" - cyan: "#70EFEF" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAFF4C" - brightYellow: "#FFDD70" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#00DDEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 264 - contrast: - fg: 90.9 - black: 0 - red: 45 - green: 71 - yellow: 74.7 - blue: 61.5 - magenta: 61.6 - cyan: 85.5 - white: 72.6 - brightBlack: 23.8 - brightRed: 47.5 - brightGreen: 93 - brightYellow: 87.6 - brightBlue: 64.3 - brightMagenta: 64.3 - brightCyan: 74.1 - brightWhite: 107.8 diff --git a/themes/quantum-green.yaml b/themes/quantum-green.yaml index 864c2f0e..290badb5 100644 --- a/themes/quantum-green.yaml +++ b/themes/quantum-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 144 + pair: null contrast: fg: 101.4 black: 0 diff --git a/themes/quantum-mirage-bordered.yaml b/themes/quantum-mirage-bordered.yaml deleted file mode 100644 index 7e6fb812..00000000 --- a/themes/quantum-mirage-bordered.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Quantum Mirage Bordered" -source: - marketplace_id: "CalebEphrem.quantum" - version: "2.0.3" - installs: 413 - author: "Caleb Ephrem" - repo: "https://github.com/calebephrem/quantum-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" -colors: - bg: "#141530" - fg: "#E5E5E5" - black: "#1E232B" - red: "#EA6C73" - green: "#7FD962" - yellow: "#DDCC55" - blue: "#53BDFA" - magenta: "#CDA1FA" - cyan: "#70EFEF" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAFF4C" - brightYellow: "#FFDD70" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#00DDEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 279 - contrast: - fg: 89.9 - black: 0 - red: 43.9 - green: 69.9 - yellow: 73.6 - blue: 60.4 - magenta: 60.5 - cyan: 84.4 - white: 71.6 - brightBlack: 22.7 - brightRed: 46.4 - brightGreen: 92 - brightYellow: 86.5 - brightBlue: 63.2 - brightMagenta: 63.3 - brightCyan: 73 - brightWhite: 106.7 diff --git a/themes/quantum-night.yaml b/themes/quantum-night.yaml index a75aad64..26597119 100644 --- a/themes/quantum-night.yaml +++ b/themes/quantum-night.yaml @@ -2,7 +2,7 @@ name: "Quantum Night" source: marketplace_id: "NGdust.quantum-night" version: "1.0.0" - installs: 97 + installs: 98 author: "NGdust" repo: "https://github.com/NGdust/quantum-night" url: "https://marketplace.visualstudio.com/items?itemName=NGdust.quantum-night" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 95.4 black: 0 diff --git a/themes/quantum-synthwave.yaml b/themes/quantum-synthwave.yaml index 16950403..bb3385d7 100644 --- a/themes/quantum-synthwave.yaml +++ b/themes/quantum-synthwave.yaml @@ -2,7 +2,7 @@ name: "Quantum Synthwave" source: marketplace_id: "GatomontesRoselll.quantum-vscode" version: "0.1.22" - installs: 639 + installs: 640 author: "GatomontesRoseIII" repo: "https://github.com/ramirezherreranoeelvis/quantum-vscode" url: "https://marketplace.visualstudio.com/items?itemName=GatomontesRoselll.quantum-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 290 + pair: null contrast: fg: 100 black: 0 diff --git a/themes/quantxz.yaml b/themes/quantxz.yaml index 4b01829f..5982a037 100644 --- a/themes/quantxz.yaml +++ b/themes/quantxz.yaml @@ -2,7 +2,7 @@ name: "quantxz" source: marketplace_id: "quantxz.quantxz" version: "0.0.9" - installs: 1986 + installs: 1990 author: "anderson" repo: "https://github.com/quantxz/dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=quantxz.quantxz" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 78.6 black: 0 diff --git a/themes/quarkus-dark-theme.yaml b/themes/quarkus-dark-theme.yaml index 76ac90cf..1fca0908 100644 --- a/themes/quarkus-dark-theme.yaml +++ b/themes/quarkus-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Quarkus Dark Theme" source: marketplace_id: "tsurdilovic.theme-quarkus-dark" version: "0.0.1" - installs: 8880 + installs: 8881 author: "Tihomir Surdilovic" repo: "https://github.com/tsurdilo/theme-quarkus-dark" url: "https://marketplace.visualstudio.com/items?itemName=tsurdilovic.theme-quarkus-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: null contrast: fg: 40.8 black: 0 diff --git a/themes/quasar.yaml b/themes/quasar.yaml index 92d54d3c..2e3d8787 100644 --- a/themes/quasar.yaml +++ b/themes/quasar.yaml @@ -2,7 +2,7 @@ name: "Quasar" source: marketplace_id: "AarushAgarwal.quasar" version: "0.4.0" - installs: 1584 + installs: 1585 author: "Aarush Agarwal" repo: "https://github.com/AgarwalAarush/Quasar" url: "https://marketplace.visualstudio.com/items?itemName=AarushAgarwal.quasar" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 99.2 black: 0 diff --git a/themes/qubik-dark.yaml b/themes/qubik-dark.yaml index 4470b451..2ece89a2 100644 --- a/themes/qubik-dark.yaml +++ b/themes/qubik-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Qubik Light" contrast: fg: 91.5 black: 0 diff --git a/themes/qubik-light.yaml b/themes/qubik-light.yaml index 65016356..d90cda1f 100644 --- a/themes/qubik-light.yaml +++ b/themes/qubik-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Qubik Dark" contrast: fg: 103.3 black: 106 diff --git a/themes/queensland-dark.yaml b/themes/queensland-dark.yaml index fd1e4209..94b467cc 100644 --- a/themes/queensland-dark.yaml +++ b/themes/queensland-dark.yaml @@ -1,8 +1,8 @@ name: "Queensland Dark" source: marketplace_id: "lucidlabs.queensland-theme" - version: "1.2.0" - installs: 1 + version: "1.4.0" + installs: 2 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.queensland-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Queensland Light" contrast: fg: 95.1 black: 0 diff --git a/themes/queensland-light.yaml b/themes/queensland-light.yaml index 7af1dab2..3399368e 100644 --- a/themes/queensland-light.yaml +++ b/themes/queensland-light.yaml @@ -1,8 +1,8 @@ name: "Queensland Light" source: marketplace_id: "lucidlabs.queensland-theme" - version: "1.2.0" - installs: 1 + version: "1.4.0" + installs: 2 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.queensland-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Queensland Dark" contrast: fg: 105.2 black: 105.2 diff --git a/themes/quiet-canvas.yaml b/themes/quiet-canvas.yaml index 0715ec03..69897c42 100644 --- a/themes/quiet-canvas.yaml +++ b/themes/quiet-canvas.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 65 black: 7.4 diff --git a/themes/quiet-hacker.yaml b/themes/quiet-hacker.yaml index 8beef55d..c107c3a7 100644 --- a/themes/quiet-hacker.yaml +++ b/themes/quiet-hacker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 67.3 black: 0 diff --git a/themes/quietude.yaml b/themes/quietude.yaml index 0f0941cd..827aa0ce 100644 --- a/themes/quietude.yaml +++ b/themes/quietude.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 59.8 black: 0 diff --git a/themes/quirky-contrast-theme.yaml b/themes/quirky-contrast-theme.yaml index de456598..e57cb514 100644 --- a/themes/quirky-contrast-theme.yaml +++ b/themes/quirky-contrast-theme.yaml @@ -2,7 +2,7 @@ name: "Quirky Contrast Theme" source: marketplace_id: "DarkMannn.quirky-contrast-theme" version: "0.0.10" - installs: 616 + installs: 617 author: "DarkMannn" repo: "https://github.com/DarkMannn/quirky-contrast-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.quirky-contrast-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 84.3 black: 0 diff --git a/themes/qutheme.yaml b/themes/qutheme.yaml index ecc74073..7c61e9e5 100644 --- a/themes/qutheme.yaml +++ b/themes/qutheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 54.3 black: 0 diff --git a/themes/r-dark-pro-filter-black-white-border.yaml b/themes/r-dark-pro-filter-black-white-border.yaml deleted file mode 100644 index 6ef134ac..00000000 --- a/themes/r-dark-pro-filter-black-white-border.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "R Dark Pro (Filter Black White Border)" -source: - marketplace_id: "Rezky.r-dark-pro" - version: "0.0.44" - installs: 3273 - author: "Rezky P. Budihartono" - repo: "https://github.com/rezkycodes/rdark.pro" - url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" -colors: - bg: "#121517" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 59.6 - black: 9.1 - red: 36.9 - green: 60.6 - yellow: 48.8 - blue: 49.9 - magenta: 39.3 - cyan: 52.7 - white: 83.3 - brightBlack: 15.7 - brightRed: 46.3 - brightGreen: 77 - brightYellow: 61.5 - brightBlue: 64 - brightMagenta: 50.5 - brightCyan: 68 - brightWhite: 90.9 diff --git a/themes/r-dark-pro-filter-coolnight.yaml b/themes/r-dark-pro-filter-coolnight.yaml index 12864af0..598688b3 100644 --- a/themes/r-dark-pro-filter-coolnight.yaml +++ b/themes/r-dark-pro-filter-coolnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 59.9 black: 9.4 diff --git a/themes/r-dark-pro-filter-dark-pro.yaml b/themes/r-dark-pro-filter-dark-pro.yaml index 205ef5f3..bbcb1e40 100644 --- a/themes/r-dark-pro-filter-dark-pro.yaml +++ b/themes/r-dark-pro-filter-dark-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 60 black: 9.5 diff --git a/themes/r-dark-pro-filter-laser-border.yaml b/themes/r-dark-pro-filter-laser-border.yaml deleted file mode 100644 index e2881927..00000000 --- a/themes/r-dark-pro-filter-laser-border.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "R Dark Pro (Filter Laser Border)" -source: - marketplace_id: "Rezky.r-dark-pro" - version: "0.0.44" - installs: 3273 - author: "Rezky P. Budihartono" - repo: "https://github.com/rezkycodes/rdark.pro" - url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" -colors: - bg: "#191B22" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: 273 - contrast: - fg: 58.9 - black: 8.4 - red: 36.2 - green: 59.9 - yellow: 48.1 - blue: 49.2 - magenta: 38.6 - cyan: 52 - white: 82.6 - brightBlack: 15 - brightRed: 45.6 - brightGreen: 76.3 - brightYellow: 60.8 - brightBlue: 63.3 - brightMagenta: 49.8 - brightCyan: 67.3 - brightWhite: 90.2 diff --git a/themes/r-dark-pro-filter-nightfall.yaml b/themes/r-dark-pro-filter-nightfall.yaml index d90f224e..d45a6af1 100644 --- a/themes/r-dark-pro-filter-nightfall.yaml +++ b/themes/r-dark-pro-filter-nightfall.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 279 + pair: null contrast: fg: 59.1 black: 8.6 diff --git a/themes/r-dark-pro-filter-nightgrey.yaml b/themes/r-dark-pro-filter-nightgrey.yaml index 1c5460fc..1b46c5a3 100644 --- a/themes/r-dark-pro-filter-nightgrey.yaml +++ b/themes/r-dark-pro-filter-nightgrey.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 58 black: 7.4 diff --git a/themes/r-dark-pro-filter-nightlate.yaml b/themes/r-dark-pro-filter-nightlate.yaml index f901a792..3c520a68 100644 --- a/themes/r-dark-pro-filter-nightlate.yaml +++ b/themes/r-dark-pro-filter-nightlate.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 59.4 black: 8.9 diff --git a/themes/r-e-m.yaml b/themes/r-e-m.yaml index 5c84ae83..af3561c5 100644 --- a/themes/r-e-m.yaml +++ b/themes/r-e-m.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 262 + pair: null contrast: fg: 69.6 black: 0 diff --git a/themes/r-h-zero-monokai.yaml b/themes/r-h-zero-monokai.yaml index aa658d50..e9573e0e 100644 --- a/themes/r-h-zero-monokai.yaml +++ b/themes/r-h-zero-monokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/rabbit.yaml b/themes/rabbit.yaml index 1473b5d1..b080c64c 100644 --- a/themes/rabbit.yaml +++ b/themes/rabbit.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 307 + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/radiant-noir.yaml b/themes/radiant-noir.yaml index eabe1dd9..e16657df 100644 --- a/themes/radiant-noir.yaml +++ b/themes/radiant-noir.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 244 + pair: null contrast: fg: 75.7 black: 0 diff --git a/themes/radium.yaml b/themes/radium.yaml index 4e303b84..ad395111 100644 --- a/themes/radium.yaml +++ b/themes/radium.yaml @@ -2,7 +2,7 @@ name: "radium" source: marketplace_id: "AndrewNijmeh.radium" version: "1.1.5" - installs: 1221 + installs: 1222 author: "Andrew Nijmeh" repo: "https://github.com/radium-theme/vsc" url: "https://marketplace.visualstudio.com/items?itemName=AndrewNijmeh.radium" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 141 + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/ragnarok.yaml b/themes/ragnarok.yaml index f76eec3e..9864064e 100644 --- a/themes/ragnarok.yaml +++ b/themes/ragnarok.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 76.6 black: 0 diff --git a/themes/raij-dark-no-italics.yaml b/themes/raij-dark-no-italics.yaml deleted file mode 100644 index b0e418aa..00000000 --- a/themes/raij-dark-no-italics.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Raijū - Dark (No italics)" -source: - marketplace_id: "TobiasTimm.raiju" - version: "2.2.2" - installs: 6927 - author: "Tobias Timm" - repo: "https://github.com/tobiastimm/raiju" - url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.raiju" -colors: - bg: "#171D2B" - fg: "#E6E6E6" - black: "#6F7899" - red: "#A188F1" - green: "#7EBBBB" - yellow: "#FFEDCB" - blue: "#8D9AD1" - magenta: "#CEB3F7" - cyan: "#A7A7EE" - white: "#D7E2FF" - brightBlack: "#6F7899" - brightRed: "#A188F1" - brightGreen: "#7EBBBB" - brightYellow: "#FFEDCB" - brightBlue: "#8D9AD1" - brightMagenta: "#CEB3F7" - brightCyan: "#A7A7EE" - brightWhite: "#D7E2FF" -meta: - mode: "dark" - accent: "magenta" - hue: 266 - contrast: - fg: 89.9 - black: 29.8 - red: 45.3 - green: 58 - yellow: 95.5 - blue: 47.2 - magenta: 66.3 - cyan: 56.4 - white: 87.4 - brightBlack: 29.8 - brightRed: 45.3 - brightGreen: 58 - brightYellow: 95.5 - brightBlue: 47.2 - brightMagenta: 66.3 - brightCyan: 56.4 - brightWhite: 87.4 diff --git a/themes/raij-no-italics.yaml b/themes/raij-no-italics.yaml deleted file mode 100644 index 5c7028bf..00000000 --- a/themes/raij-no-italics.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Raijū (No italics)" -source: - marketplace_id: "TobiasTimm.raiju" - version: "2.2.2" - installs: 6927 - author: "Tobias Timm" - repo: "https://github.com/tobiastimm/raiju" - url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.raiju" -colors: - bg: "#262B3B" - fg: "#E6E6E6" - black: "#6F7899" - red: "#A188F1" - green: "#7EBBBB" - yellow: "#FFEDCB" - blue: "#8D9AD1" - magenta: "#CEB3F7" - cyan: "#A7A7EE" - white: "#D7E2FF" - brightBlack: "#6F7899" - brightRed: "#A188F1" - brightGreen: "#7EBBBB" - brightYellow: "#FFEDCB" - brightBlue: "#8D9AD1" - brightMagenta: "#CEB3F7" - brightCyan: "#A7A7EE" - brightWhite: "#D7E2FF" -meta: - mode: "dark" - accent: "magenta" - hue: 271 - contrast: - fg: 87.5 - black: 27.4 - red: 42.9 - green: 55.7 - yellow: 93.1 - blue: 44.8 - magenta: 63.9 - cyan: 54.1 - white: 85 - brightBlack: 27.4 - brightRed: 42.9 - brightGreen: 55.7 - brightYellow: 93.1 - brightBlue: 44.8 - brightMagenta: 63.9 - brightCyan: 54.1 - brightWhite: 85 diff --git a/themes/rain-city-theme.yaml b/themes/rain-city-theme.yaml index 1578bd8c..8672b8d6 100644 --- a/themes/rain-city-theme.yaml +++ b/themes/rain-city-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 88.5 black: 84.5 diff --git a/themes/rain.yaml b/themes/rain.yaml index d79b346f..4f833126 100644 --- a/themes/rain.yaml +++ b/themes/rain.yaml @@ -2,7 +2,7 @@ name: "Rain" source: marketplace_id: "Getcode.raindiaz" version: "0.3.0" - installs: 5174 + installs: 5177 author: "Getcode" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Getcode.raindiaz" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 245 + pair: null contrast: fg: 107.1 black: 0 diff --git a/themes/rainbow-contrast.yaml b/themes/rainbow-contrast.yaml deleted file mode 100644 index f8b9394b..00000000 --- a/themes/rainbow-contrast.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "rainbow-contrast" -source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" -colors: - bg: "#16181A" - fg: "#C7D0D9" - black: "#222528" - red: "#BA0E2E" - green: "#B3CC57" - yellow: "#EF746F" - blue: "#FFBE40" - magenta: "#3FB4C5" - cyan: "#F86F50" - white: "#D6DDE3" - brightBlack: "#454B51" - brightRed: "#F03E5F" - brightGreen: "#D6E4A5" - brightYellow: "#F9CDCB" - brightBlue: "#FFE1A6" - brightMagenta: "#8DD3DD" - brightCyan: "#FCC0B2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 76.3 - black: 0 - red: 20.4 - green: 68.3 - yellow: 46.8 - blue: 73.1 - magenta: 52.9 - cyan: 46.9 - white: 84.3 - brightBlack: 11 - brightRed: 36.7 - brightGreen: 85.1 - brightYellow: 81.4 - brightBlue: 89.6 - brightMagenta: 72.1 - brightCyan: 75.8 - brightWhite: 106.8 diff --git a/themes/rainbow-light.yaml b/themes/rainbow-light.yaml index b52114e4..58911f3c 100644 --- a/themes/rainbow-light.yaml +++ b/themes/rainbow-light.yaml @@ -1,11 +1,11 @@ name: "rainbow-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#444444" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/rainbow-material-theme.yaml b/themes/rainbow-material-theme.yaml index 49928a84..8d9db3c2 100644 --- a/themes/rainbow-material-theme.yaml +++ b/themes/rainbow-material-theme.yaml @@ -2,7 +2,7 @@ name: "rainbow-material-theme" source: marketplace_id: "yasgreen93.rainbow-material-theme" version: "0.3.0" - installs: 3285 + installs: 3287 author: "yasgreen93" repo: "https://github.com/yasgreen93/rainbow-material-theme" url: "https://marketplace.visualstudio.com/items?itemName=yasgreen93.rainbow-material-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 61.9 black: 0 diff --git a/themes/rainbow-pastel-theme.yaml b/themes/rainbow-pastel-theme.yaml index db334261..d2a3b290 100644 --- a/themes/rainbow-pastel-theme.yaml +++ b/themes/rainbow-pastel-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 234 + pair: null contrast: fg: 100 black: 0 diff --git a/themes/rainbow.yaml b/themes/rainbow.yaml index 96d6ca62..5f132bd5 100644 --- a/themes/rainbow.yaml +++ b/themes/rainbow.yaml @@ -1,11 +1,11 @@ name: "rainbow" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#373C42" fg: "#C7D0D9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 253 + pair: null contrast: fg: 69 black: 0 diff --git a/themes/rainbowdrops-dark.yaml b/themes/rainbowdrops-dark.yaml index 4ed4bb92..154c8e86 100644 --- a/themes/rainbowdrops-dark.yaml +++ b/themes/rainbowdrops-dark.yaml @@ -2,7 +2,7 @@ name: "RainbowDrops Dark" source: marketplace_id: "WithOutCat.theme-rainbowdrops" version: "3.0.0" - installs: 5114 + installs: 5115 author: "WithOutCat" repo: "https://github.com/withoutcat/rainbowdrops" url: "https://marketplace.visualstudio.com/items?itemName=WithOutCat.theme-rainbowdrops" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 89.6 black: 0 diff --git a/themes/rainforest-dark.yaml b/themes/rainforest-dark.yaml index 4db3d2e5..7f2c4684 100644 --- a/themes/rainforest-dark.yaml +++ b/themes/rainforest-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 78.2 black: 0 diff --git a/themes/rainx0r.yaml b/themes/rainx0r.yaml index cd171f02..c23160a5 100644 --- a/themes/rainx0r.yaml +++ b/themes/rainx0r.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 218 + pair: null contrast: fg: 103.9 black: 0 diff --git a/themes/rainy-hydrangea.yaml b/themes/rainy-hydrangea.yaml index 9640f34d..84c3b44d 100644 --- a/themes/rainy-hydrangea.yaml +++ b/themes/rainy-hydrangea.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 252 + pair: null contrast: fg: 68.2 black: 0 diff --git a/themes/raiyanplanet-dark-knight.yaml b/themes/raiyanplanet-dark-knight.yaml index a5000c59..2d2d461f 100644 --- a/themes/raiyanplanet-dark-knight.yaml +++ b/themes/raiyanplanet-dark-knight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 60.3 black: 0 diff --git a/themes/raiyanplanet-darkest.yaml b/themes/raiyanplanet-darkest.yaml index 9866957c..e5a72c01 100644 --- a/themes/raiyanplanet-darkest.yaml +++ b/themes/raiyanplanet-darkest.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 60.9 black: 0 diff --git a/themes/raiyanplanet-purple-world.yaml b/themes/raiyanplanet-purple-world.yaml index 083b291d..38950ccb 100644 --- a/themes/raiyanplanet-purple-world.yaml +++ b/themes/raiyanplanet-purple-world.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 277 + pair: null contrast: fg: 71.6 black: 26.6 diff --git a/themes/rajasthan-land-of-kings.yaml b/themes/rajasthan-land-of-kings.yaml index ea5ada63..95cb34e1 100644 --- a/themes/rajasthan-land-of-kings.yaml +++ b/themes/rajasthan-land-of-kings.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 43 + pair: null contrast: fg: 92.9 black: 0 diff --git a/themes/rajoyish.yaml b/themes/rajoyish.yaml index 9135802e..f874af04 100644 --- a/themes/rajoyish.yaml +++ b/themes/rajoyish.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 99.1 black: 99.1 diff --git a/themes/rakkii-theme.yaml b/themes/rakkii-theme.yaml index 2f5de002..4ee9cdeb 100644 --- a/themes/rakkii-theme.yaml +++ b/themes/rakkii-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 302 + pair: null contrast: fg: 106.4 black: 43.2 diff --git a/themes/ramage.yaml b/themes/ramage.yaml index 4eccc6b8..cc22da98 100644 --- a/themes/ramage.yaml +++ b/themes/ramage.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 266 + pair: null contrast: fg: 64.1 black: 0 diff --git a/themes/ramazzotti-80s.yaml b/themes/ramazzotti-80s.yaml index 22244f74..0bd140ad 100644 --- a/themes/ramazzotti-80s.yaml +++ b/themes/ramazzotti-80s.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 68.2 black: 29.3 diff --git a/themes/ramazzotti-flexobi.yaml b/themes/ramazzotti-flexobi.yaml index c30cdbc0..0c216feb 100644 --- a/themes/ramazzotti-flexobi.yaml +++ b/themes/ramazzotti-flexobi.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 81.9 black: 0 diff --git a/themes/ramazzotti-gruvbox.yaml b/themes/ramazzotti-gruvbox.yaml index bdbe643f..0dc38776 100644 --- a/themes/ramazzotti-gruvbox.yaml +++ b/themes/ramazzotti-gruvbox.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85 black: 0 diff --git a/themes/ramuda.yaml b/themes/ramuda.yaml index 6dab3592..deca73fc 100644 --- a/themes/ramuda.yaml +++ b/themes/ramuda.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 310 + pair: null contrast: fg: 98.3 black: 0 diff --git a/themes/rapture.yaml b/themes/rapture.yaml index bbb516d8..5de1a692 100644 --- a/themes/rapture.yaml +++ b/themes/rapture.yaml @@ -2,7 +2,7 @@ name: "Rapture" source: marketplace_id: "Pustur.rapture-vscode" version: "1.7.0" - installs: 4827 + installs: 4843 author: "Pustur" repo: "https://github.com/Pustur/rapture-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Pustur.rapture-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 247 + pair: null contrast: fg: 72.4 black: 0 diff --git a/themes/rate-dark-cold.yaml b/themes/rate-dark-cold.yaml index 3eb22d2d..03fde1e9 100644 --- a/themes/rate-dark-cold.yaml +++ b/themes/rate-dark-cold.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 81.4 black: 0 diff --git a/themes/rate-dark.yaml b/themes/rate-dark.yaml index 4b0588c6..0f8371ba 100644 --- a/themes/rate-dark.yaml +++ b/themes/rate-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: "Rate Light" contrast: fg: 81.8 black: 0 diff --git a/themes/rate-light-soft.yaml b/themes/rate-light-soft.yaml index eeeb9d35..b24eed3f 100644 --- a/themes/rate-light-soft.yaml +++ b/themes/rate-light-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 95.9 black: 104.6 diff --git a/themes/rate-light.yaml b/themes/rate-light.yaml index ef107874..ccdc6334 100644 --- a/themes/rate-light.yaml +++ b/themes/rate-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Rate Dark" contrast: fg: 92.6 black: 101.4 diff --git a/themes/ravenwood-dark.yaml b/themes/ravenwood-dark.yaml index 201c9ad3..744cc35a 100644 --- a/themes/ravenwood-dark.yaml +++ b/themes/ravenwood-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 145 + pair: "Ravenwood Light" contrast: fg: 79.4 black: 0 diff --git a/themes/ravenwood-light.yaml b/themes/ravenwood-light.yaml index e7b2846a..8972a344 100644 --- a/themes/ravenwood-light.yaml +++ b/themes/ravenwood-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Ravenwood Dark" contrast: fg: 85.2 black: 85.2 diff --git a/themes/rbe-matrix-skin-theme.yaml b/themes/rbe-matrix-skin-theme.yaml index 7a106f77..db3e4fe2 100644 --- a/themes/rbe-matrix-skin-theme.yaml +++ b/themes/rbe-matrix-skin-theme.yaml @@ -2,7 +2,7 @@ name: "RBE Matrix Skin Theme" source: marketplace_id: "RudeBoyEnterprises.rbe-matrix-skin-theme" version: "1.0.2" - installs: 17709 + installs: 17711 author: "Rude Boy Enterprises" repo: "https://github.com/skamansam/vscode-rbe-matrix-theme" url: "https://marketplace.visualstudio.com/items?itemName=RudeBoyEnterprises.rbe-matrix-skin-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/rdcd.yaml b/themes/rdcd.yaml index 907c4e1a..0c922961 100644 --- a/themes/rdcd.yaml +++ b/themes/rdcd.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/re-dark-alt.yaml b/themes/re-dark-alt.yaml deleted file mode 100644 index 91bc45a2..00000000 --- a/themes/re-dark-alt.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "re:Dark Alt" -source: - marketplace_id: "Cydo.re-theme" - version: "3.0.0" - installs: 695 - author: "Cydo" - repo: "https://github.com/CydoEntis/reThemes" - url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" -colors: - bg: "#212121" - fg: "#EEFFFF" - black: "#000000" - red: "#D30700" - green: "#92C202" - yellow: "#CAAC00" - blue: "#429AFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#2C2C2C" - brightRed: "#FF0800" - brightGreen: "#CAFF29" - brightYellow: "#FBFF00" - brightBlue: "#85BEFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 103.3 - black: 0 - red: 24.6 - green: 58.9 - yellow: 56.2 - blue: 44.9 - magenta: 52.5 - cyan: 77 - white: 105.6 - brightBlack: 0 - brightRed: 35.3 - brightGreen: 93.8 - brightYellow: 99.9 - brightBlue: 63 - brightMagenta: 52.5 - brightCyan: 77 - brightWhite: 105.6 diff --git a/themes/re-eclipse-old-school.yaml b/themes/re-eclipse-old-school.yaml index 180716dd..f5a4ee28 100644 --- a/themes/re-eclipse-old-school.yaml +++ b/themes/re-eclipse-old-school.yaml @@ -2,7 +2,7 @@ name: "re:Eclipse Old School" source: marketplace_id: "Cydo.re-theme" version: "3.0.0" - installs: 695 + installs: 696 author: "Cydo" repo: "https://github.com/CydoEntis/reThemes" url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 103.3 black: 105.6 diff --git a/themes/re-eclipse.yaml b/themes/re-eclipse.yaml index ec4879c7..e6013c86 100644 --- a/themes/re-eclipse.yaml +++ b/themes/re-eclipse.yaml @@ -2,7 +2,7 @@ name: "re:Eclipse" source: marketplace_id: "Cydo.re-theme" version: "3.0.0" - installs: 695 + installs: 696 author: "Cydo" repo: "https://github.com/CydoEntis/reThemes" url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 103.3 black: 0 diff --git a/themes/re-vision.yaml b/themes/re-vision.yaml index 6149232b..90a3eae6 100644 --- a/themes/re-vision.yaml +++ b/themes/re-vision.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 98.8 black: 104.2 diff --git a/themes/react-theme.yaml b/themes/react-theme.yaml index a7ee5011..8d545e51 100644 --- a/themes/react-theme.yaml +++ b/themes/react-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 262 + pair: null contrast: fg: 99.8 black: 0 diff --git a/themes/rebellion-contrast.yaml b/themes/rebellion-contrast.yaml index c95afe5c..32ad95b1 100644 --- a/themes/rebellion-contrast.yaml +++ b/themes/rebellion-contrast.yaml @@ -1,11 +1,11 @@ name: "rebellion-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0C0C09" fg: "#D6C7AB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.4 black: 0 diff --git a/themes/rebellion-light.yaml b/themes/rebellion-light.yaml index 8da12528..5772f95e 100644 --- a/themes/rebellion-light.yaml +++ b/themes/rebellion-light.yaml @@ -1,11 +1,11 @@ name: "rebellion-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#EDE8DE" fg: "#443A27" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 85 + pair: null contrast: fg: 82.4 black: 0 diff --git a/themes/rebellion.yaml b/themes/rebellion.yaml index 2b364920..87fad1fe 100644 --- a/themes/rebellion.yaml +++ b/themes/rebellion.yaml @@ -1,11 +1,11 @@ name: "rebellion" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#23231A" fg: "#D6C7AB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 108 + pair: null contrast: fg: 71.1 black: 0 diff --git a/themes/recats-classic-dark.yaml b/themes/recats-classic-dark.yaml index aaa021c8..be44e20c 100644 --- a/themes/recats-classic-dark.yaml +++ b/themes/recats-classic-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 82.5 black: 0 diff --git a/themes/recats-nova-dark.yaml b/themes/recats-nova-dark.yaml index 431bcb42..6c994511 100644 --- a/themes/recats-nova-dark.yaml +++ b/themes/recats-nova-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 99.4 black: 0 diff --git a/themes/recotheme.yaml b/themes/recotheme.yaml index 47a5270b..1d1e62de 100644 --- a/themes/recotheme.yaml +++ b/themes/recotheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.6 black: 21 diff --git a/themes/red-black-white-dark.yaml b/themes/red-black-white-dark.yaml index 9e4fe15b..a8696f54 100644 --- a/themes/red-black-white-dark.yaml +++ b/themes/red-black-white-dark.yaml @@ -2,7 +2,7 @@ name: "Red Black White Dark" source: marketplace_id: "chenzilve.gundam-rx78-theme" version: "0.1.0" - installs: 4 + installs: 6 author: "chenzilve" repo: null url: "https://marketplace.visualstudio.com/items?itemName=chenzilve.gundam-rx78-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 263 + pair: "Red Black White Light" contrast: fg: 87.7 black: 0 diff --git a/themes/red-black-white-light.yaml b/themes/red-black-white-light.yaml index a01de673..5b59c25e 100644 --- a/themes/red-black-white-light.yaml +++ b/themes/red-black-white-light.yaml @@ -2,7 +2,7 @@ name: "Red Black White Light" source: marketplace_id: "chenzilve.gundam-rx78-theme" version: "0.1.0" - installs: 4 + installs: 6 author: "chenzilve" repo: null url: "https://marketplace.visualstudio.com/items?itemName=chenzilve.gundam-rx78-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Red Black White Dark" contrast: fg: 103.1 black: 103.1 diff --git a/themes/red-grey.yaml b/themes/red-grey.yaml index 7b2a0d28..cf08ba14 100644 --- a/themes/red-grey.yaml +++ b/themes/red-grey.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72.7 black: 0 diff --git a/themes/red-neon.yaml b/themes/red-neon.yaml index 18854fca..0dd6319e 100644 --- a/themes/red-neon.yaml +++ b/themes/red-neon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 48.2 black: 0 diff --git a/themes/red-one-dark-pro-dark-bordered.yaml b/themes/red-one-dark-pro-dark-bordered.yaml deleted file mode 100644 index a5c2f54b..00000000 --- a/themes/red-one-dark-pro-dark-bordered.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Red One Dark Pro | Dark Bordered" -source: - marketplace_id: "giladgd.red-one-dark-pro" - version: "1.5.0" - installs: 35437 - author: "Gilad S." - repo: "https://gitlab.com/giladgd/red-one-dark-pro" - url: "https://marketplace.visualstudio.com/items?itemName=giladgd.red-one-dark-pro" -colors: - bg: "#0D1016" - fg: "#B3B1AD" - black: "#01060E" - red: "#EA6C73" - green: "#91B362" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#FAE994" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#C2D94C" - brightYellow: "#FFB454" - brightBlue: "#59C2FF" - brightMagenta: "#FFEE99" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 264 - contrast: - fg: 59.7 - black: 0 - red: 44.6 - green: 54.8 - yellow: 67.2 - blue: 61.2 - magenta: 92.6 - cyan: 78.4 - white: 72.3 - brightBlack: 23.5 - brightRed: 47.2 - brightGreen: 76.5 - brightYellow: 70.1 - brightBlue: 63.9 - brightMagenta: 95.8 - brightCyan: 81.4 - brightWhite: 107.4 diff --git a/themes/red-one-dark-pro-dark.yaml b/themes/red-one-dark-pro-dark.yaml index 6a12fccd..16554742 100644 --- a/themes/red-one-dark-pro-dark.yaml +++ b/themes/red-one-dark-pro-dark.yaml @@ -2,7 +2,7 @@ name: "Red One Dark Pro | Dark" source: marketplace_id: "giladgd.red-one-dark-pro" version: "1.5.0" - installs: 35437 + installs: 35445 author: "Gilad S." repo: "https://gitlab.com/giladgd/red-one-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=giladgd.red-one-dark-pro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 258 + pair: null contrast: fg: 59.9 black: 0 diff --git a/themes/red-one-dark-pro-mirage-bordered.yaml b/themes/red-one-dark-pro-mirage-bordered.yaml deleted file mode 100644 index eaddd2ba..00000000 --- a/themes/red-one-dark-pro-mirage-bordered.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Red One Dark Pro | Mirage Bordered" -source: - marketplace_id: "giladgd.red-one-dark-pro" - version: "1.5.0" - installs: 35437 - author: "Gilad S." - repo: "https://gitlab.com/giladgd/red-one-dark-pro" - url: "https://marketplace.visualstudio.com/items?itemName=giladgd.red-one-dark-pro" -colors: - bg: "#232834" - fg: "#CBCCC6" - black: "#191E2A" - red: "#ED8274" - green: "#A6CC70" - yellow: "#FAD07B" - blue: "#6DCBFA" - magenta: "#CFBAFA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F28779" - brightGreen: "#BAE67E" - brightYellow: "#FFD580" - brightBlue: "#73D0FF" - brightMagenta: "#D4BFFF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 267 - contrast: - fg: 71.8 - black: 0 - red: 47.9 - green: 65 - yellow: 78 - blue: 65.5 - magenta: 67.6 - cyan: 75.4 - white: 69.2 - brightBlack: 20.4 - brightRed: 50.4 - brightGreen: 79.5 - brightYellow: 81.1 - brightBlue: 68.4 - brightMagenta: 70.5 - brightCyan: 78.4 - brightWhite: 104.4 diff --git a/themes/red-one-dark-pro-mirage.yaml b/themes/red-one-dark-pro-mirage.yaml deleted file mode 100644 index a7bb33ab..00000000 --- a/themes/red-one-dark-pro-mirage.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Red One Dark Pro | Mirage" -source: - marketplace_id: "giladgd.red-one-dark-pro" - version: "1.5.0" - installs: 35437 - author: "Gilad S." - repo: "https://gitlab.com/giladgd/red-one-dark-pro" - url: "https://marketplace.visualstudio.com/items?itemName=giladgd.red-one-dark-pro" -colors: - bg: "#1F2430" - fg: "#CBCCC6" - black: "#191E2A" - red: "#ED8274" - green: "#A6CC70" - yellow: "#FAD07B" - blue: "#6DCBFA" - magenta: "#CFBAFA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F28779" - brightGreen: "#BAE67E" - brightYellow: "#FFD580" - brightBlue: "#73D0FF" - brightMagenta: "#D4BFFF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 267 - contrast: - fg: 72.5 - black: 0 - red: 48.6 - green: 65.7 - yellow: 78.7 - blue: 66.2 - magenta: 68.3 - cyan: 76.1 - white: 69.9 - brightBlack: 21.1 - brightRed: 51.1 - brightGreen: 80.2 - brightYellow: 81.8 - brightBlue: 69.1 - brightMagenta: 71.2 - brightCyan: 79.1 - brightWhite: 105.1 diff --git a/themes/red-vintage.yaml b/themes/red-vintage.yaml index e268b439..e2fe5076 100644 --- a/themes/red-vintage.yaml +++ b/themes/red-vintage.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 18 + pair: null contrast: fg: 72.9 black: 0 diff --git a/themes/reddark.yaml b/themes/reddark.yaml index 0855d4a5..ec892b14 100644 --- a/themes/reddark.yaml +++ b/themes/reddark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 29 + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/reddish.yaml b/themes/reddish.yaml deleted file mode 100644 index 84523892..00000000 --- a/themes/reddish.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Reddish" -source: - marketplace_id: "nickmarsaw.reddish-color-theme" - version: "0.0.1" - installs: 136 - author: "nickmarsaw" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=nickmarsaw.reddish-color-theme" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#CD2020" - green: "#0BA506" - yellow: "#C0C007" - blue: "#0656B0" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#FF0000" - brightGreen: "#20FF00" - brightYellow: "#FFFF00" - brightBlue: "#0070FF" - brightMagenta: "#FF00FF" - brightCyan: "#00FFDB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 107.9 - black: 0 - red: 26.3 - green: 42.4 - yellow: 65.2 - blue: 18.1 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 37.5 - brightGreen: 86.6 - brightYellow: 102.7 - brightBlue: 32.1 - brightMagenta: 46.2 - brightCyan: 90.5 - brightWhite: 91 diff --git a/themes/reddit-dark-based-theme-updated.yaml b/themes/reddit-dark-based-theme-updated.yaml index e12e11c6..69cdfbc2 100644 --- a/themes/reddit-dark-based-theme-updated.yaml +++ b/themes/reddit-dark-based-theme-updated.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 82.5 black: 0 diff --git a/themes/rediohead-theme.yaml b/themes/rediohead-theme.yaml index 0270fc56..0f1c5b52 100644 --- a/themes/rediohead-theme.yaml +++ b/themes/rediohead-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 18 + pair: null contrast: fg: 69.3 black: 0 diff --git a/themes/redorainbow.yaml b/themes/redorainbow.yaml index c003dff5..49f20792 100644 --- a/themes/redorainbow.yaml +++ b/themes/redorainbow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 74.8 black: 35.4 diff --git a/themes/redpro-dark.yaml b/themes/redpro-dark.yaml index a597e302..9c7d4cb2 100644 --- a/themes/redpro-dark.yaml +++ b/themes/redpro-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "RedPro Light" contrast: fg: 59.9 black: 0 diff --git a/themes/redpro-light.yaml b/themes/redpro-light.yaml index b3218c48..3f1737bf 100644 --- a/themes/redpro-light.yaml +++ b/themes/redpro-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "RedPro Dark" contrast: fg: 78.7 black: 89.2 diff --git a/themes/refined-charcoal.yaml b/themes/refined-charcoal.yaml index 5dc6e383..5705208f 100644 --- a/themes/refined-charcoal.yaml +++ b/themes/refined-charcoal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 85.8 black: 0 diff --git a/themes/refined-default.yaml b/themes/refined-default.yaml index 6f3cc552..84663417 100644 --- a/themes/refined-default.yaml +++ b/themes/refined-default.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 84.4 black: 0 diff --git a/themes/refined-dracula.yaml b/themes/refined-dracula.yaml index 96b823db..d193c90e 100644 --- a/themes/refined-dracula.yaml +++ b/themes/refined-dracula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 278 + pair: null contrast: fg: 82.3 black: 0 diff --git a/themes/refined-espresso.yaml b/themes/refined-espresso.yaml index af337a3b..a407f18e 100644 --- a/themes/refined-espresso.yaml +++ b/themes/refined-espresso.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 67 + pair: null contrast: fg: 85 black: 0 diff --git a/themes/refined-matcha.yaml b/themes/refined-matcha.yaml index 2656894f..dabea64c 100644 --- a/themes/refined-matcha.yaml +++ b/themes/refined-matcha.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 84.5 black: 0 diff --git a/themes/refined-mocha.yaml b/themes/refined-mocha.yaml index db1e6c69..f1031a2b 100644 --- a/themes/refined-mocha.yaml +++ b/themes/refined-mocha.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 67 + pair: null contrast: fg: 83.1 black: 0 diff --git a/themes/refined-night-owl.yaml b/themes/refined-night-owl.yaml index 3ddac999..3398cfdf 100644 --- a/themes/refined-night-owl.yaml +++ b/themes/refined-night-owl.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 244 + pair: null contrast: fg: 85.3 black: 0 diff --git a/themes/refined-oceanic-next.yaml b/themes/refined-oceanic-next.yaml index 1014ccef..705fd5b7 100644 --- a/themes/refined-oceanic-next.yaml +++ b/themes/refined-oceanic-next.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 234 + pair: null contrast: fg: 82.6 black: 0 diff --git a/themes/refined-one.yaml b/themes/refined-one.yaml index c2d4dbc1..b6c2068c 100644 --- a/themes/refined-one.yaml +++ b/themes/refined-one.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 264 + pair: null contrast: fg: 82 black: 0 diff --git a/themes/refined-palenight.yaml b/themes/refined-palenight.yaml index ec1c3b69..a3d3859f 100644 --- a/themes/refined-palenight.yaml +++ b/themes/refined-palenight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 274 + pair: null contrast: fg: 81.6 black: 0 diff --git a/themes/refined-purple.yaml b/themes/refined-purple.yaml index 9e1a252c..6d8dea91 100644 --- a/themes/refined-purple.yaml +++ b/themes/refined-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 285 + pair: null contrast: fg: 83.5 black: 0 diff --git a/themes/refined-slate.yaml b/themes/refined-slate.yaml index 56273914..1c5731a7 100644 --- a/themes/refined-slate.yaml +++ b/themes/refined-slate.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 264 + pair: null contrast: fg: 85.1 black: 0 diff --git a/themes/regard.yaml b/themes/regard.yaml index 635cdb7b..a93fa3f7 100644 --- a/themes/regard.yaml +++ b/themes/regard.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 94.8 black: 0 diff --git a/themes/registheme.yaml b/themes/registheme.yaml index febd13cd..64f9d3b3 100644 --- a/themes/registheme.yaml +++ b/themes/registheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 97.2 black: 0 diff --git a/themes/relaxed-theme-dark-focus.yaml b/themes/relaxed-theme-dark-focus.yaml index d5a93b2f..4865e878 100644 --- a/themes/relaxed-theme-dark-focus.yaml +++ b/themes/relaxed-theme-dark-focus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 254 + pair: null contrast: fg: 83.4 black: 0 diff --git a/themes/relaxed-theme-day-light.yaml b/themes/relaxed-theme-day-light.yaml index 2d79e7bf..b83d9883 100644 --- a/themes/relaxed-theme-day-light.yaml +++ b/themes/relaxed-theme-day-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 93.3 black: 83.7 diff --git a/themes/relaxed-theme-night-warm.yaml b/themes/relaxed-theme-night-warm.yaml index e4ae8170..9f976091 100644 --- a/themes/relaxed-theme-night-warm.yaml +++ b/themes/relaxed-theme-night-warm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 82.4 black: 0 diff --git a/themes/relaxed-theme.yaml b/themes/relaxed-theme.yaml index 82041e66..8a52c5a6 100644 --- a/themes/relaxed-theme.yaml +++ b/themes/relaxed-theme.yaml @@ -2,7 +2,7 @@ name: "Relaxed Theme" source: marketplace_id: "mischah.relaxed-theme" version: "1.0.5" - installs: 31466 + installs: 31469 author: "Michael Kühnel" repo: "https://github.com/Relaxed-Theme/vscode-theme-releaxed" url: "https://marketplace.visualstudio.com/items?itemName=mischah.relaxed-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 260 + pair: null contrast: fg: 77.8 black: 0 diff --git a/themes/remedy-bright-tilted.yaml b/themes/remedy-bright-tilted.yaml index f163eb2c..7e212c18 100644 --- a/themes/remedy-bright-tilted.yaml +++ b/themes/remedy-bright-tilted.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Remedy - Dark (Tilted)" contrast: fg: 101.6 black: 100.6 diff --git a/themes/remedy-dark-tilted.yaml b/themes/remedy-dark-tilted.yaml index df8e442d..37d69f6c 100644 --- a/themes/remedy-dark-tilted.yaml +++ b/themes/remedy-dark-tilted.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 252 + pair: "Remedy - Bright (Tilted)" contrast: fg: 61.3 black: 0 diff --git a/themes/replicant.yaml b/themes/replicant.yaml index 26585269..929584e9 100644 --- a/themes/replicant.yaml +++ b/themes/replicant.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 254 + pair: null contrast: fg: 97.9 black: 59 diff --git a/themes/replt-it.yaml b/themes/replt-it.yaml index 578c806e..f9febad2 100644 --- a/themes/replt-it.yaml +++ b/themes/replt-it.yaml @@ -2,7 +2,7 @@ name: "replt.it" source: marketplace_id: "manigandancodes.repl-it-theme" version: "0.4.0" - installs: 7621 + installs: 7622 author: "Manigandan Saravanan" repo: "https://github.com/manigandancodes/repl.it-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=manigandancodes.repl-it-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 265 + pair: null contrast: fg: 84.6 black: 0 diff --git a/themes/repoman-color-theme.yaml b/themes/repoman-color-theme.yaml index 13c3467f..08f1629b 100644 --- a/themes/repoman-color-theme.yaml +++ b/themes/repoman-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 89 black: 0 diff --git a/themes/resknow-dark.yaml b/themes/resknow-dark.yaml index c683bd59..8425e033 100644 --- a/themes/resknow-dark.yaml +++ b/themes/resknow-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 265 + pair: null contrast: fg: 92.4 black: 0 diff --git a/themes/ressgame-advance-coding-theme.yaml b/themes/ressgame-advance-coding-theme.yaml index 4698a47d..f5e2045b 100644 --- a/themes/ressgame-advance-coding-theme.yaml +++ b/themes/ressgame-advance-coding-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 225 + pair: null contrast: fg: 102.5 black: 0 diff --git a/themes/retina.yaml b/themes/retina.yaml index 1f04a534..598fa3ab 100644 --- a/themes/retina.yaml +++ b/themes/retina.yaml @@ -2,7 +2,7 @@ name: "Retina" source: marketplace_id: "RafaCMur.retina" version: "0.0.6" - installs: 1776 + installs: 1785 author: "RafaCMur" repo: "https://github.com/RafaCMur/retina" url: "https://marketplace.visualstudio.com/items?itemName=RafaCMur.retina" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 84.4 black: 0 diff --git a/themes/retro-cathode-ray-minimal-theme.yaml b/themes/retro-cathode-ray-minimal-theme.yaml index 8e869323..6994c811 100644 --- a/themes/retro-cathode-ray-minimal-theme.yaml +++ b/themes/retro-cathode-ray-minimal-theme.yaml @@ -2,7 +2,7 @@ name: "Retro Cathode-Ray Minimal Theme" source: marketplace_id: "xXBalestraroXx.wired-reality-theme" version: "1.0.0" - installs: 240 + installs: 241 author: "xXBalestraroXx" repo: "https://github.com/xxbalestraroxx/WiredRealityTheme" url: "https://marketplace.visualstudio.com/items?itemName=xXBalestraroXx.wired-reality-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 76.5 black: 0 diff --git a/themes/retro-green.yaml b/themes/retro-green.yaml index d581e608..d19c4be2 100644 --- a/themes/retro-green.yaml +++ b/themes/retro-green.yaml @@ -2,7 +2,7 @@ name: "retro green" source: marketplace_id: "LelinPadhan.retro-green-theme-vscode" version: "1.1.6" - installs: 5473 + installs: 5480 author: "Lelin Padhan" repo: "https://github.com/Lelin07/retro-green-theme" url: "https://marketplace.visualstudio.com/items?itemName=LelinPadhan.retro-green-theme-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 135 + pair: null contrast: fg: 68.7 black: 68.7 diff --git a/themes/retro-hacker-amber.yaml b/themes/retro-hacker-amber.yaml index 893667f5..d7bdef7e 100644 --- a/themes/retro-hacker-amber.yaml +++ b/themes/retro-hacker-amber.yaml @@ -2,7 +2,7 @@ name: "Retro Hacker Amber" source: marketplace_id: "devxi.retro-hacker-theme" version: "1.3.0" - installs: 4277 + installs: 4283 author: "devxi" repo: "https://github.com/elmersh/retro-hacker-theme" url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 67 + pair: null contrast: fg: 68 black: 0 diff --git a/themes/retro-hacker-blue.yaml b/themes/retro-hacker-blue.yaml index 1a86c3c1..5b111a1a 100644 --- a/themes/retro-hacker-blue.yaml +++ b/themes/retro-hacker-blue.yaml @@ -2,7 +2,7 @@ name: "Retro Hacker Blue" source: marketplace_id: "devxi.retro-hacker-theme" version: "1.3.0" - installs: 4277 + installs: 4283 author: "devxi" repo: "https://github.com/elmersh/retro-hacker-theme" url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 272 + pair: null contrast: fg: 56.5 black: 0 diff --git a/themes/retro-hacker-green-subtle.yaml b/themes/retro-hacker-green-subtle.yaml index b3912396..75c23d4e 100644 --- a/themes/retro-hacker-green-subtle.yaml +++ b/themes/retro-hacker-green-subtle.yaml @@ -2,7 +2,7 @@ name: "Retro Hacker Green - Subtle" source: marketplace_id: "devxi.retro-hacker-theme" version: "1.3.0" - installs: 4277 + installs: 4283 author: "devxi" repo: "https://github.com/elmersh/retro-hacker-theme" url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 86.7 black: 0 diff --git a/themes/retro-hacker-green.yaml b/themes/retro-hacker-green.yaml index 6507e683..082a9d10 100644 --- a/themes/retro-hacker-green.yaml +++ b/themes/retro-hacker-green.yaml @@ -2,7 +2,7 @@ name: "Retro Hacker Green" source: marketplace_id: "devxi.retro-hacker-theme" version: "1.3.0" - installs: 4277 + installs: 4283 author: "devxi" repo: "https://github.com/elmersh/retro-hacker-theme" url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 142 + pair: null contrast: fg: 84.3 black: 0 diff --git a/themes/retro-hacker-magenta.yaml b/themes/retro-hacker-magenta.yaml index 0452f3d3..23e208b9 100644 --- a/themes/retro-hacker-magenta.yaml +++ b/themes/retro-hacker-magenta.yaml @@ -2,7 +2,7 @@ name: "Retro Hacker Magenta" source: marketplace_id: "devxi.retro-hacker-theme" version: "1.3.0" - installs: 4277 + installs: 4283 author: "devxi" repo: "https://github.com/elmersh/retro-hacker-theme" url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 46.2 black: 0 diff --git a/themes/retro-keyboard-dark.yaml b/themes/retro-keyboard-dark.yaml index 2e49f628..5f9a356f 100644 --- a/themes/retro-keyboard-dark.yaml +++ b/themes/retro-keyboard-dark.yaml @@ -2,7 +2,7 @@ name: "Retro Keyboard Dark" source: marketplace_id: "nicolasmengual.retro-keyboard-theme" version: "1.1.2" - installs: 63 + installs: 64 author: "Nicolás Mengual" repo: "https://github.com/nmengual/retro-keyboard-theme" url: "https://marketplace.visualstudio.com/items?itemName=nicolasmengual.retro-keyboard-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 67 + pair: "Retro Keyboard Light" contrast: fg: 88 black: 0 diff --git a/themes/retro-keyboard-light.yaml b/themes/retro-keyboard-light.yaml index 490d46a6..a12a1d76 100644 --- a/themes/retro-keyboard-light.yaml +++ b/themes/retro-keyboard-light.yaml @@ -2,7 +2,7 @@ name: "Retro Keyboard Light" source: marketplace_id: "nicolasmengual.retro-keyboard-theme" version: "1.1.2" - installs: 63 + installs: 64 author: "Nicolás Mengual" repo: "https://github.com/nmengual/retro-keyboard-theme" url: "https://marketplace.visualstudio.com/items?itemName=nicolasmengual.retro-keyboard-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Retro Keyboard Dark" contrast: fg: 89 black: 89 diff --git a/themes/retro-pastel-color-theme.yaml b/themes/retro-pastel-color-theme.yaml index 99d4ece7..fab53e47 100644 --- a/themes/retro-pastel-color-theme.yaml +++ b/themes/retro-pastel-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 173 + pair: null contrast: fg: 49.9 black: 24.8 diff --git a/themes/retro-vibes.yaml b/themes/retro-vibes.yaml index db691530..b132565e 100644 --- a/themes/retro-vibes.yaml +++ b/themes/retro-vibes.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 265 + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/retro.yaml b/themes/retro.yaml index 2ccb524a..56a765e6 100644 --- a/themes/retro.yaml +++ b/themes/retro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 279 + pair: null contrast: fg: 105.4 black: 0 diff --git a/themes/retrocoders.yaml b/themes/retrocoders.yaml index 180a3087..9d4a3cfe 100644 --- a/themes/retrocoders.yaml +++ b/themes/retrocoders.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: null contrast: fg: 75.1 black: 0 diff --git a/themes/retronica-amber-terminal.yaml b/themes/retronica-amber-terminal.yaml index 382cfee4..a8119707 100644 --- a/themes/retronica-amber-terminal.yaml +++ b/themes/retronica-amber-terminal.yaml @@ -2,7 +2,7 @@ name: "Retronica Amber Terminal" source: marketplace_id: "adham.retronica" version: "1.0.0" - installs: 181 + installs: 183 author: "Adham" repo: "https://github.com/adham-dev/retronica" url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.9 black: 0 diff --git a/themes/retronica-neon-nights.yaml b/themes/retronica-neon-nights.yaml index 2bb2ca87..3c0ee420 100644 --- a/themes/retronica-neon-nights.yaml +++ b/themes/retronica-neon-nights.yaml @@ -2,7 +2,7 @@ name: "Retronica Neon Nights" source: marketplace_id: "adham.retronica" version: "1.0.0" - installs: 181 + installs: 183 author: "Adham" repo: "https://github.com/adham-dev/retronica" url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 298 + pair: null contrast: fg: 74 black: 0 diff --git a/themes/retronica-pastel-arcade.yaml b/themes/retronica-pastel-arcade.yaml index ad8f5150..92b66b20 100644 --- a/themes/retronica-pastel-arcade.yaml +++ b/themes/retronica-pastel-arcade.yaml @@ -2,7 +2,7 @@ name: "Retronica Pastel Arcade" source: marketplace_id: "adham.retronica" version: "1.0.0" - installs: 181 + installs: 183 author: "Adham" repo: "https://github.com/adham-dev/retronica" url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 85.5 black: 85.5 diff --git a/themes/retronica-phosphor-green.yaml b/themes/retronica-phosphor-green.yaml index 933d5ef7..858da7f0 100644 --- a/themes/retronica-phosphor-green.yaml +++ b/themes/retronica-phosphor-green.yaml @@ -2,7 +2,7 @@ name: "Retronica Phosphor Green" source: marketplace_id: "adham.retronica" version: "1.0.0" - installs: 181 + installs: 183 author: "Adham" repo: "https://github.com/adham-dev/retronica" url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 145 + pair: null contrast: fg: 75.3 black: 0 diff --git a/themes/retronica-vintage-computing.yaml b/themes/retronica-vintage-computing.yaml index 52914af0..3eaa59de 100644 --- a/themes/retronica-vintage-computing.yaml +++ b/themes/retronica-vintage-computing.yaml @@ -2,7 +2,7 @@ name: "Retronica Vintage Computing" source: marketplace_id: "adham.retronica" version: "1.0.0" - installs: 181 + installs: 183 author: "Adham" repo: "https://github.com/adham-dev/retronica" url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 85.7 black: 85.7 diff --git a/themes/retropunk.yaml b/themes/retropunk.yaml index 6143adb6..48705d1f 100644 --- a/themes/retropunk.yaml +++ b/themes/retropunk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 288 + pair: null contrast: fg: 40.6 black: 8.1 diff --git a/themes/retroscope.yaml b/themes/retroscope.yaml index 2ae9e9c1..74d10d0f 100644 --- a/themes/retroscope.yaml +++ b/themes/retroscope.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 61 black: 0 diff --git a/themes/retrox.yaml b/themes/retrox.yaml index 2815f23a..46d3134d 100644 --- a/themes/retrox.yaml +++ b/themes/retrox.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 238 + pair: null contrast: fg: 78.3 black: 0 diff --git a/themes/reui-ii-dark-italic.yaml b/themes/reui-ii-dark-italic.yaml deleted file mode 100644 index 2905e7f3..00000000 --- a/themes/reui-ii-dark-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "ReUI II Dark Italic" -source: - marketplace_id: "barrsan.reui" - version: "1.2.5" - installs: 120797 - author: "Alex Baretsky" - repo: "https://github.com/barrsan/reui-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=barrsan.reui" -colors: - bg: "#1E232E" - fg: "#FFFFFF" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 266 - contrast: - fg: 105.3 - black: 0 - red: 41.8 - green: 83.3 - yellow: 97 - blue: 52.1 - magenta: 53 - cyan: 82.4 - white: 100.4 - brightBlack: 26.5 - brightRed: 47.3 - brightGreen: 87.5 - brightYellow: 102 - brightBlue: 64.5 - brightMagenta: 61 - brightCyan: 95.2 - brightWhite: 105.3 diff --git a/themes/reui-ii-italic.yaml b/themes/reui-ii-italic.yaml deleted file mode 100644 index 39dc74d3..00000000 --- a/themes/reui-ii-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "ReUI II Italic" -source: - marketplace_id: "barrsan.reui" - version: "1.2.5" - installs: 120797 - author: "Alex Baretsky" - repo: "https://github.com/barrsan/reui-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=barrsan.reui" -colors: - bg: "#282C34" - fg: "#FFFFFF" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 264 - contrast: - fg: 103.7 - black: 0 - red: 40.2 - green: 81.7 - yellow: 95.3 - blue: 50.4 - magenta: 51.4 - cyan: 80.8 - white: 98.8 - brightBlack: 24.8 - brightRed: 45.6 - brightGreen: 85.8 - brightYellow: 100.3 - brightBlue: 62.9 - brightMagenta: 59.4 - brightCyan: 93.6 - brightWhite: 103.7 diff --git a/themes/reui-ii-mirage-italic.yaml b/themes/reui-ii-mirage-italic.yaml deleted file mode 100644 index d78faf98..00000000 --- a/themes/reui-ii-mirage-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "ReUI II Mirage Italic" -source: - marketplace_id: "barrsan.reui" - version: "1.2.5" - installs: 120797 - author: "Alex Baretsky" - repo: "https://github.com/barrsan/reui-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=barrsan.reui" -colors: - bg: "#18273A" - fg: "#FFFFFF" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 255 - contrast: - fg: 104.7 - black: 0 - red: 41.2 - green: 82.7 - yellow: 96.4 - blue: 51.5 - magenta: 52.4 - cyan: 81.8 - white: 99.8 - brightBlack: 25.9 - brightRed: 46.7 - brightGreen: 86.9 - brightYellow: 101.4 - brightBlue: 63.9 - brightMagenta: 60.4 - brightCyan: 94.6 - brightWhite: 104.7 diff --git a/themes/revelation-contrast.yaml b/themes/revelation-contrast.yaml index 1b0abdd2..fcf7acef 100644 --- a/themes/revelation-contrast.yaml +++ b/themes/revelation-contrast.yaml @@ -1,11 +1,11 @@ name: "revelation-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0C0B0B" fg: "#DEDEDE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/revelation-light.yaml b/themes/revelation-light.yaml index 542e625e..4f7c62b6 100644 --- a/themes/revelation-light.yaml +++ b/themes/revelation-light.yaml @@ -1,11 +1,11 @@ name: "revelation-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#555555" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 85.9 black: 0 diff --git a/themes/revelation.yaml b/themes/revelation.yaml index f0579a94..cabca972 100644 --- a/themes/revelation.yaml +++ b/themes/revelation.yaml @@ -1,11 +1,11 @@ name: "revelation" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2E2C2B" fg: "#DEDEDE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 82.3 black: 0 diff --git a/themes/revisual-assist-color-theme.yaml b/themes/revisual-assist-color-theme.yaml index e0da46a7..6337471a 100644 --- a/themes/revisual-assist-color-theme.yaml +++ b/themes/revisual-assist-color-theme.yaml @@ -2,7 +2,7 @@ name: "reVisual_Assist-color-theme" source: marketplace_id: "Cydo.re-theme" version: "3.0.0" - installs: 695 + installs: 696 author: "Cydo" repo: "https://github.com/CydoEntis/reThemes" url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/revisualassist.yaml b/themes/revisualassist.yaml index e9a57253..3e152aa3 100644 --- a/themes/revisualassist.yaml +++ b/themes/revisualassist.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77.2 black: 0 diff --git a/themes/rextax-bright-fork.yaml b/themes/rextax-bright-fork.yaml index 51fcd1fd..1ceb7ee2 100644 --- a/themes/rextax-bright-fork.yaml +++ b/themes/rextax-bright-fork.yaml @@ -2,7 +2,7 @@ name: "rextax bright! - Fork" source: marketplace_id: "xynny.prowhite-theme" version: "0.0.1" - installs: 1578 + installs: 1580 author: "xynny" repo: "https://github.com/xynnylol/vsthemes" url: "https://marketplace.visualstudio.com/items?itemName=xynny.prowhite-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 102.5 black: 102.5 diff --git a/themes/rhodes-dark.yaml b/themes/rhodes-dark.yaml index 1da46a77..dd63c551 100644 --- a/themes/rhodes-dark.yaml +++ b/themes/rhodes-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Rhodes Light" contrast: fg: 105.2 black: 106.5 diff --git a/themes/rhodes-light.yaml b/themes/rhodes-light.yaml index 6ae74454..6ec19bc4 100644 --- a/themes/rhodes-light.yaml +++ b/themes/rhodes-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Rhodes Dark" contrast: fg: 102.2 black: 102.2 diff --git a/themes/rich-black-theme-no-italic.yaml b/themes/rich-black-theme-no-italic.yaml deleted file mode 100644 index 17ff54a7..00000000 --- a/themes/rich-black-theme-no-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "rich-black-theme-no-italic" -source: - marketplace_id: "mariusbegby.rich-black-theme" - version: "1.1.1" - installs: 2841 - author: "Marius Begby" - repo: "https://github.com/mariusbegby/rich-black-theme" - url: "https://marketplace.visualstudio.com/items?itemName=mariusbegby.rich-black-theme" -colors: - bg: "#0F1217" - fg: "#CCCCCC" - black: "#62666D" - red: "#E48484" - green: "#85C27A" - yellow: "#CCC666" - blue: "#91B1E0" - magenta: "#E0A8FD" - cyan: "#71C2AA" - white: "#CCCCCC" - brightBlack: "#3C3F43" - brightRed: "#E45757" - brightGreen: "#65C253" - brightYellow: "#CCC43E" - brightBlue: "#6697E0" - brightMagenta: "#E0A8FD" - brightCyan: "#71C2AA" - brightWhite: "#E3E3E3" -meta: - mode: "dark" - accent: "orange" - hue: 261 - contrast: - fg: 75.1 - black: 22.3 - red: 50.1 - green: 60.7 - yellow: 69.5 - blue: 58.5 - magenta: 66.5 - cyan: 60.7 - white: 75.1 - brightBlack: 7.4 - brightRed: 38.2 - brightGreen: 57.8 - brightYellow: 68.2 - brightBlue: 45.1 - brightMagenta: 66.5 - brightCyan: 60.7 - brightWhite: 89.2 diff --git a/themes/rider-melon-night.yaml b/themes/rider-melon-night.yaml index df67655e..19998918 100644 --- a/themes/rider-melon-night.yaml +++ b/themes/rider-melon-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 75 black: 0 diff --git a/themes/rider.yaml b/themes/rider.yaml index 02cddd3f..675a1e2c 100644 --- a/themes/rider.yaml +++ b/themes/rider.yaml @@ -2,7 +2,7 @@ name: "Rider" source: marketplace_id: "arzg.intellij-theme" version: "1.11.0" - installs: 97297 + installs: 97329 author: "arzg" repo: "https://github.com/arzg/intellij-theme" url: "https://marketplace.visualstudio.com/items?itemName=arzg.intellij-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 57.7 black: 0 diff --git a/themes/rigel.yaml b/themes/rigel.yaml index 81688ec1..62e286a2 100644 --- a/themes/rigel.yaml +++ b/themes/rigel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 233 + pair: null contrast: fg: 87.9 black: 0 diff --git a/themes/rimber.yaml b/themes/rimber.yaml index d68ee72d..8ffab39c 100644 --- a/themes/rimber.yaml +++ b/themes/rimber.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 55.5 black: 0 diff --git a/themes/riskified-dark.yaml b/themes/riskified-dark.yaml index 53ca9038..3ff06cc9 100644 --- a/themes/riskified-dark.yaml +++ b/themes/riskified-dark.yaml @@ -2,7 +2,7 @@ name: "Riskified Dark" source: marketplace_id: "eliorc.riskified-theme" version: "1.0.4" - installs: 38 + installs: 39 author: "eliorc" repo: "https://github.com/eliorc/riskified-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=eliorc.riskified-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 270 + pair: null contrast: fg: 93 black: 7.9 diff --git a/themes/rito.yaml b/themes/rito.yaml index 84f62834..406523fb 100644 --- a/themes/rito.yaml +++ b/themes/rito.yaml @@ -1,11 +1,11 @@ name: "Rito" source: - marketplace_id: "EminBayrak.rito-dark-italic" - version: "0.0.3" - installs: 794 + marketplace_id: "EminBayrak.rito-dark" + version: "0.0.2" + installs: 76 author: "Emin Bayrak" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=EminBayrak.rito-dark-italic" + url: "https://marketplace.visualstudio.com/items?itemName=EminBayrak.rito-dark" colors: bg: "#32373D" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 253 + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/rivendell.yaml b/themes/rivendell.yaml index 3a8c61e6..fae05f82 100644 --- a/themes/rivendell.yaml +++ b/themes/rivendell.yaml @@ -2,7 +2,7 @@ name: "Rivendell" source: marketplace_id: "sortbyfirstname.rivendell" version: "0.0.3" - installs: 508 + installs: 509 author: "sortbyfirstname" repo: "https://github.com/sortbyfirstname/rivendell-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sortbyfirstname.rivendell" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 102.5 black: 102.5 diff --git a/themes/rizz-focused.yaml b/themes/rizz-focused.yaml index c7ddf8ad..4239a775 100644 --- a/themes/rizz-focused.yaml +++ b/themes/rizz-focused.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 144 + pair: null contrast: fg: 97.8 black: 0 diff --git a/themes/rizz-neutral.yaml b/themes/rizz-neutral.yaml index 01667c5b..a9d4152d 100644 --- a/themes/rizz-neutral.yaml +++ b/themes/rizz-neutral.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: null contrast: fg: 103.9 black: 0 diff --git a/themes/rm-dark-theme.yaml b/themes/rm-dark-theme.yaml index 5e060f00..3a30a0ca 100644 --- a/themes/rm-dark-theme.yaml +++ b/themes/rm-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Rm Dark Theme" source: marketplace_id: "raihaninfo.rm-dark-theme" version: "1.0.5" - installs: 1543 + installs: 1544 author: "raihaninfo" repo: "https://github.com/raihaninfo/rm-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=raihaninfo.rm-dark-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 255 + pair: null contrast: fg: 107.2 black: 0 diff --git a/themes/roblox-stylized-dark-theme.yaml b/themes/roblox-stylized-dark-theme.yaml index fa14efc3..941c4066 100644 --- a/themes/roblox-stylized-dark-theme.yaml +++ b/themes/roblox-stylized-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72.8 black: 0 diff --git a/themes/robodark.yaml b/themes/robodark.yaml index c4fb46a2..c223c4b6 100644 --- a/themes/robodark.yaml +++ b/themes/robodark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.4 black: 14.1 diff --git a/themes/robolaunch.yaml b/themes/robolaunch.yaml index 93cc05f3..4d85c115 100644 --- a/themes/robolaunch.yaml +++ b/themes/robolaunch.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72.9 black: 0 diff --git a/themes/rocinante.yaml b/themes/rocinante.yaml index b3b27ecd..d6fdef13 100644 --- a/themes/rocinante.yaml +++ b/themes/rocinante.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 81.3 black: 12.2 diff --git a/themes/rocko-s-modern-theme.yaml b/themes/rocko-s-modern-theme.yaml index 90670b0d..6195ab41 100644 --- a/themes/rocko-s-modern-theme.yaml +++ b/themes/rocko-s-modern-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 63.2 black: 0 diff --git a/themes/rog-theme-v1-1-dark-alpha-syntax-test.yaml b/themes/rog-theme-v1-1-dark-alpha-syntax-test.yaml index 2c9f1cc0..0c87d67b 100644 --- a/themes/rog-theme-v1-1-dark-alpha-syntax-test.yaml +++ b/themes/rog-theme-v1-1-dark-alpha-syntax-test.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 0 black: 0 diff --git a/themes/rogue-squadron.yaml b/themes/rogue-squadron.yaml index 11ccd994..ca34ce5e 100644 --- a/themes/rogue-squadron.yaml +++ b/themes/rogue-squadron.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 76 black: 0 diff --git a/themes/ronin-darker.yaml b/themes/ronin-darker.yaml index a3801bf0..c960b195 100644 --- a/themes/ronin-darker.yaml +++ b/themes/ronin-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 74.6 black: 0 diff --git a/themes/ronin.yaml b/themes/ronin.yaml index 6e3e383a..6633d7be 100644 --- a/themes/ronin.yaml +++ b/themes/ronin.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 69.4 black: 0 diff --git a/themes/root-bear.yaml b/themes/root-bear.yaml index 26eb84e5..c0adfa2a 100644 --- a/themes/root-bear.yaml +++ b/themes/root-bear.yaml @@ -2,7 +2,7 @@ name: "Root Bear" source: marketplace_id: "Reuben.root-bear" version: "0.2.1" - installs: 7009 + installs: 7010 author: "RobiMez" repo: "https://github.com/RobiMez/void_blue" url: "https://marketplace.visualstudio.com/items?itemName=Reuben.root-bear" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 258 + pair: null contrast: fg: 99.9 black: 0 diff --git a/themes/root-dark-mode-theme-v0-1.yaml b/themes/root-dark-mode-theme-v0-1.yaml index 99de0ecc..e21dfecf 100644 --- a/themes/root-dark-mode-theme-v0-1.yaml +++ b/themes/root-dark-mode-theme-v0-1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.7 black: 38.5 diff --git a/themes/ros-pine-dawn.yaml b/themes/ros-pine-dawn.yaml deleted file mode 100644 index 33bc44b4..00000000 --- a/themes/ros-pine-dawn.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Rosé Pine Dawn" -source: - marketplace_id: "mvllow.rose-pine" - version: "2.15.0" - installs: 299253 - author: "Rosé Pine" - repo: "https://github.com/rose-pine/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=mvllow.rose-pine" -colors: - bg: "#FAF4ED" - fg: "#575279" - black: "#F2E9E1" - red: "#B4637A" - green: "#286983" - yellow: "#EA9D34" - blue: "#56949F" - magenta: "#907AA9" - cyan: "#D7827E" - white: "#575279" - brightBlack: "#797593" - brightRed: "#B4637A" - brightGreen: "#286983" - brightYellow: "#EA9D34" - brightBlue: "#56949F" - brightMagenta: "#907AA9" - brightCyan: "#D7827E" - brightWhite: "#575279" -meta: - mode: "light" - accent: "yellow" - hue: null - contrast: - fg: 79.1 - black: 0 - red: 62.5 - green: 74.2 - yellow: 37.8 - blue: 55.6 - magenta: 59.3 - cyan: 48.2 - white: 79.1 - brightBlack: 64.4 - brightRed: 62.5 - brightGreen: 74.2 - brightYellow: 37.8 - brightBlue: 55.6 - brightMagenta: 59.3 - brightCyan: 48.2 - brightWhite: 79.1 diff --git a/themes/ros-pine.yaml b/themes/ros-pine.yaml index 71e56542..f4abb568 100644 --- a/themes/ros-pine.yaml +++ b/themes/ros-pine.yaml @@ -2,7 +2,7 @@ name: "Rosé Pine" source: marketplace_id: "SulSami.rose-pine-burnt" version: "1.0.3" - installs: 3258 + installs: 3259 author: "Sami" repo: "https://github.com/rose-pine-vscode/vscode" url: "https://marketplace.visualstudio.com/items?itemName=SulSami.rose-pine-burnt" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 94 + pair: null contrast: fg: 75.2 black: 0 diff --git a/themes/rose-paradise.yaml b/themes/rose-paradise.yaml index 614dc3b1..a74ab6c6 100644 --- a/themes/rose-paradise.yaml +++ b/themes/rose-paradise.yaml @@ -2,7 +2,7 @@ name: "Rose Paradise" source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" - installs: 1834 + installs: 1840 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 98.4 black: 93.5 diff --git a/themes/rosefall-black.yaml b/themes/rosefall-black.yaml index cc20c715..363d467a 100644 --- a/themes/rosefall-black.yaml +++ b/themes/rosefall-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.2 black: 9.6 diff --git a/themes/rosefall-midnight.yaml b/themes/rosefall-midnight.yaml index a53ee1dd..065d6a4c 100644 --- a/themes/rosefall-midnight.yaml +++ b/themes/rosefall-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.4 black: 9.8 diff --git a/themes/roselia-orbital-eden-pastel.yaml b/themes/roselia-orbital-eden-pastel.yaml index 2c7f1dea..50d3004e 100644 --- a/themes/roselia-orbital-eden-pastel.yaml +++ b/themes/roselia-orbital-eden-pastel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 84.4 black: 0 diff --git a/themes/roselia.yaml b/themes/roselia.yaml index de37d873..e942a218 100644 --- a/themes/roselia.yaml +++ b/themes/roselia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 95.2 black: 0 diff --git a/themes/rouge-no-italics.yaml b/themes/rouge-no-italics.yaml deleted file mode 100644 index 85395e8e..00000000 --- a/themes/rouge-no-italics.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Rouge No Italics" -source: - marketplace_id: "josef.rouge-theme" - version: "2.1.6" - installs: 53319 - author: "josef" - repo: "https://github.com/josefaidt/rouge-theme" - url: "https://marketplace.visualstudio.com/items?itemName=josef.rouge-theme" -colors: - bg: "#172030" - fg: "#BBBBBB" - black: "#374E73" - red: "#C6797E" - green: "#ADB9A4" - yellow: "#ECE7AC" - blue: "#6E94B9" - magenta: "#B18BB1" - cyan: "#8AB6C1" - white: "#E3E4E8" - brightBlack: "#3F5A85" - brightRed: "#D19498" - brightGreen: "#BEC8B7" - brightYellow: "#F2EFC7" - brightBlue: "#98B3CD" - brightMagenta: "#CCB3CC" - brightCyan: "#ABCBD3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 262 - contrast: - fg: 63.6 - black: 11.2 - red: 39.9 - green: 60.3 - yellow: 88.6 - blue: 40.7 - magenta: 44.1 - cyan: 56.8 - white: 88.3 - brightBlack: 15.8 - brightRed: 50.9 - brightGreen: 69.3 - brightYellow: 94 - brightBlue: 57.4 - brightMagenta: 63.4 - brightCyan: 69.6 - brightWhite: 105.8 diff --git a/themes/roxo-theme.yaml b/themes/roxo-theme.yaml index 03bf8200..775d5f19 100644 --- a/themes/roxo-theme.yaml +++ b/themes/roxo-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 307 + pair: null contrast: fg: 87.6 black: 0 diff --git a/themes/royal-darker-theme.yaml b/themes/royal-darker-theme.yaml index 8fc2c709..884935f7 100644 --- a/themes/royal-darker-theme.yaml +++ b/themes/royal-darker-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 291 + pair: null contrast: fg: 88.4 black: 0 diff --git a/themes/royal-fork.yaml b/themes/royal-fork.yaml index eea03e5b..9df4465d 100644 --- a/themes/royal-fork.yaml +++ b/themes/royal-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 290 + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/royal.yaml b/themes/royal.yaml index 71e4fbaa..9137a700 100644 --- a/themes/royal.yaml +++ b/themes/royal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 99.3 black: 0 diff --git a/themes/rozen.yaml b/themes/rozen.yaml index adb30603..2fc7d5cd 100644 --- a/themes/rozen.yaml +++ b/themes/rozen.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 269 + pair: null contrast: fg: 72.3 black: 0 diff --git a/themes/rs-dark.yaml b/themes/rs-dark.yaml index 491acada..7cec2b1e 100644 --- a/themes/rs-dark.yaml +++ b/themes/rs-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 94.2 black: 0 diff --git a/themes/rsikified-dark-purple.yaml b/themes/rsikified-dark-purple.yaml index 6966d410..77627f8d 100644 --- a/themes/rsikified-dark-purple.yaml +++ b/themes/rsikified-dark-purple.yaml @@ -2,7 +2,7 @@ name: "Rsikified Dark Purple" source: marketplace_id: "eliorc.riskified-theme" version: "1.0.4" - installs: 38 + installs: 39 author: "eliorc" repo: "https://github.com/eliorc/riskified-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=eliorc.riskified-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 269 + pair: null contrast: fg: 91 black: 0 diff --git a/themes/rubecula.yaml b/themes/rubecula.yaml index ad028899..29c3069b 100644 --- a/themes/rubecula.yaml +++ b/themes/rubecula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 75.3 black: 24.9 diff --git a/themes/rubi-theme.yaml b/themes/rubi-theme.yaml index 0594cbc1..16dabcf3 100644 --- a/themes/rubi-theme.yaml +++ b/themes/rubi-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 29 + pair: null contrast: fg: 75 black: 0 diff --git a/themes/ruby-nights-garnet-midnight.yaml b/themes/ruby-nights-garnet-midnight.yaml index 08b2877d..bd537040 100644 --- a/themes/ruby-nights-garnet-midnight.yaml +++ b/themes/ruby-nights-garnet-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 331 + pair: null contrast: fg: 71.5 black: 0 diff --git a/themes/ruby-nights-garnet.yaml b/themes/ruby-nights-garnet.yaml index 26060596..2ad77356 100644 --- a/themes/ruby-nights-garnet.yaml +++ b/themes/ruby-nights-garnet.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 330 + pair: null contrast: fg: 71.1 black: 0 diff --git a/themes/ruby-nights-ruby-midnight.yaml b/themes/ruby-nights-ruby-midnight.yaml index 77166b7b..d517f854 100644 --- a/themes/ruby-nights-ruby-midnight.yaml +++ b/themes/ruby-nights-ruby-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 7 + pair: null contrast: fg: 71.5 black: 0 diff --git a/themes/ruby-nights-ruby.yaml b/themes/ruby-nights-ruby.yaml index 1ccd215a..97856e85 100644 --- a/themes/ruby-nights-ruby.yaml +++ b/themes/ruby-nights-ruby.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 10 + pair: null contrast: fg: 71.1 black: 0 diff --git a/themes/ruby-sea.yaml b/themes/ruby-sea.yaml index 8d76d443..b5b0e494 100644 --- a/themes/ruby-sea.yaml +++ b/themes/ruby-sea.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 255 + pair: null contrast: fg: 53.7 black: 9.6 diff --git a/themes/rudydev-theme-edited-tokyo-night-storm.yaml b/themes/rudydev-theme-edited-tokyo-night-storm.yaml index d249f5fc..17a51c9b 100644 --- a/themes/rudydev-theme-edited-tokyo-night-storm.yaml +++ b/themes/rudydev-theme-edited-tokyo-night-storm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 245 + pair: null contrast: fg: 59.3 black: 10.3 diff --git a/themes/rui-cobalt.yaml b/themes/rui-cobalt.yaml index 09a6ef96..6fde3cd2 100644 --- a/themes/rui-cobalt.yaml +++ b/themes/rui-cobalt.yaml @@ -2,7 +2,7 @@ name: "Rui Cobalt" source: marketplace_id: "ruixiao85.rui-color-themes" version: "1.3.0" - installs: 1770 + installs: 1772 author: "Rui Xiao" repo: "https://github.com/ruixiao85/VSCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=ruixiao85.rui-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 255 + pair: null contrast: fg: 82.4 black: 0 diff --git a/themes/rui-sapphire.yaml b/themes/rui-sapphire.yaml index 09e5be02..5f3fc352 100644 --- a/themes/rui-sapphire.yaml +++ b/themes/rui-sapphire.yaml @@ -2,7 +2,7 @@ name: "Rui Sapphire" source: marketplace_id: "ruixiao85.rui-color-themes" version: "1.3.0" - installs: 1770 + installs: 1772 author: "Rui Xiao" repo: "https://github.com/ruixiao85/VSCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=ruixiao85.rui-color-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 254 + pair: null contrast: fg: 83.9 black: 0 diff --git a/themes/runic-minimal.yaml b/themes/runic-minimal.yaml index 14c95ca5..75596de7 100644 --- a/themes/runic-minimal.yaml +++ b/themes/runic-minimal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 77.4 black: 0 diff --git a/themes/ruru-marijuana.yaml b/themes/ruru-marijuana.yaml index 3968284b..a4fc6d29 100644 --- a/themes/ruru-marijuana.yaml +++ b/themes/ruru-marijuana.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 151 + pair: null contrast: fg: 80 black: 0 diff --git a/themes/ruru-moon.yaml b/themes/ruru-moon.yaml index 64f453c1..0f7c309c 100644 --- a/themes/ruru-moon.yaml +++ b/themes/ruru-moon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/rust-brown.yaml b/themes/rust-brown.yaml index 52a7bfc9..9f63a278 100644 --- a/themes/rust-brown.yaml +++ b/themes/rust-brown.yaml @@ -2,7 +2,7 @@ name: "Rust & Brown" source: marketplace_id: "LukianovII.rust-and-brown" version: "1.0.0" - installs: 5 + installs: 8 author: "LukianovII" repo: "https://github.com/LukianovII/rust-and-brown-vscode" url: "https://marketplace.visualstudio.com/items?itemName=LukianovII.rust-and-brown" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 67 + pair: null contrast: fg: 104.5 black: 0 diff --git a/themes/rustacean.yaml b/themes/rustacean.yaml index c82713d0..2f066e8a 100644 --- a/themes/rustacean.yaml +++ b/themes/rustacean.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 93 + pair: null contrast: fg: 17.6 black: 0 diff --git a/themes/rusty.yaml b/themes/rusty.yaml index fb813509..324831e7 100644 --- a/themes/rusty.yaml +++ b/themes/rusty.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 88.9 black: 0 diff --git a/themes/ryb.yaml b/themes/ryb.yaml index f7e33064..ede12a38 100644 --- a/themes/ryb.yaml +++ b/themes/ryb.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 97.1 black: 97.1 diff --git a/themes/rypjaws.yaml b/themes/rypjaws.yaml index feb15be9..5dd1b520 100644 --- a/themes/rypjaws.yaml +++ b/themes/rypjaws.yaml @@ -2,7 +2,7 @@ name: "rypjaws" source: marketplace_id: "MihirPanchal.rypjaws" version: "0.5.1" - installs: 385 + installs: 386 author: "Mihir Panchal" repo: "https://github.com/MihirRajeshPanchal/rypjaws" url: "https://marketplace.visualstudio.com/items?itemName=MihirPanchal.rypjaws" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 51.1 black: 0 diff --git a/themes/s-kill.yaml b/themes/s-kill.yaml index c008e9ce..4aa6af9f 100644 --- a/themes/s-kill.yaml +++ b/themes/s-kill.yaml @@ -2,7 +2,7 @@ name: "s-kill" source: marketplace_id: "metamorphosis.skill" version: "0.4.0" - installs: 1196 + installs: 1198 author: "metamorphosis" repo: "https://github.com/frontendmonster/vscode-skill-theme" url: "https://marketplace.visualstudio.com/items?itemName=metamorphosis.skill" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 255 + pair: null contrast: fg: 91.1 black: 0 diff --git a/themes/s-o-paulo-night.yaml b/themes/s-o-paulo-night.yaml index 3d87fa77..d7953cdf 100644 --- a/themes/s-o-paulo-night.yaml +++ b/themes/s-o-paulo-night.yaml @@ -2,7 +2,7 @@ name: "São Paulo Night" source: marketplace_id: "carlosdanieldev.saopaulo-night" version: "0.1.1" - installs: 51 + installs: 52 author: "CarlosDanielDev" repo: "https://github.com/CarlosDanielDev/saopaulo-night" url: "https://marketplace.visualstudio.com/items?itemName=carlosdanieldev.saopaulo-night" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 62.4 black: 0 diff --git a/themes/safari-midnight.yaml b/themes/safari-midnight.yaml index 5c0dbeaa..7ae03e15 100644 --- a/themes/safari-midnight.yaml +++ b/themes/safari-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 88 black: 0 diff --git a/themes/safira.yaml b/themes/safira.yaml index f89b2909..3ac12f5f 100644 --- a/themes/safira.yaml +++ b/themes/safira.yaml @@ -2,7 +2,7 @@ name: "safira" source: marketplace_id: "yinz.safira" version: "0.0.9" - installs: 10360 + installs: 10363 author: "Yinz" repo: "https://github.com/yinzdev/safira-vscode" url: "https://marketplace.visualstudio.com/items?itemName=yinz.safira" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 255 + pair: null contrast: fg: 84.8 black: 18.1 diff --git a/themes/saga-nordic-v1-2.yaml b/themes/saga-nordic-v1-2.yaml index ec559cb0..eed6de55 100644 --- a/themes/saga-nordic-v1-2.yaml +++ b/themes/saga-nordic-v1-2.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 235 + pair: null contrast: fg: 42.8 black: 11.6 diff --git a/themes/saga-oceania-v1-2.yaml b/themes/saga-oceania-v1-2.yaml index 3e8b9801..06ccd22e 100644 --- a/themes/saga-oceania-v1-2.yaml +++ b/themes/saga-oceania-v1-2.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 47.5 black: 11.4 diff --git a/themes/sage-of-light-color-theme.yaml b/themes/sage-of-light-color-theme.yaml index 011dd208..bb2eb5c8 100644 --- a/themes/sage-of-light-color-theme.yaml +++ b/themes/sage-of-light-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 98.8 black: 91.1 diff --git a/themes/sage-siren-theme.yaml b/themes/sage-siren-theme.yaml index f3c729fa..13c118d4 100644 --- a/themes/sage-siren-theme.yaml +++ b/themes/sage-siren-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 103.4 black: 0 diff --git a/themes/sailor-at-sea.yaml b/themes/sailor-at-sea.yaml index b49cc875..525d4eb1 100644 --- a/themes/sailor-at-sea.yaml +++ b/themes/sailor-at-sea.yaml @@ -2,7 +2,7 @@ name: "sailor-at-sea" source: marketplace_id: "rikkarth.ship-at-sea" version: "0.0.3" - installs: 561 + installs: 564 author: "rikkarth" repo: "https://github.com/rikkarth/ship-at-sea" url: "https://marketplace.visualstudio.com/items?itemName=rikkarth.ship-at-sea" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 94.1 black: 0 diff --git a/themes/sakai-theme-jupiter.yaml b/themes/sakai-theme-jupiter.yaml index dea195f2..3824ba1d 100644 --- a/themes/sakai-theme-jupiter.yaml +++ b/themes/sakai-theme-jupiter.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 288 + pair: null contrast: fg: 85.3 black: 0 diff --git a/themes/sakai-theme-moon.yaml b/themes/sakai-theme-moon.yaml index 2d596b6b..15c5830e 100644 --- a/themes/sakai-theme-moon.yaml +++ b/themes/sakai-theme-moon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 291 + pair: null contrast: fg: 86.8 black: 0 diff --git a/themes/sakai-theme-saturn.yaml b/themes/sakai-theme-saturn.yaml index fa9cd349..bc75a835 100644 --- a/themes/sakai-theme-saturn.yaml +++ b/themes/sakai-theme-saturn.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 84.5 black: 0 diff --git a/themes/sakai-theme-venus.yaml b/themes/sakai-theme-venus.yaml deleted file mode 100644 index 2e84b37c..00000000 --- a/themes/sakai-theme-venus.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Sakai Theme Venus" -source: - marketplace_id: "Sakai.sakai" - version: "2.6.8" - installs: 1186 - author: "Sakai" - repo: "https://github.com/Sakai-UI/Sakai-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Sakai.sakai" -colors: - bg: "#1A1B26" - fg: "#A9B1D6" - black: "#363B54" - red: "#F7768E" - green: "#73DACA" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#787C99" - brightBlack: "#363B54" - brightRed: "#F7768E" - brightGreen: "#41A6B5" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#ACB0D0" -meta: - mode: "dark" - accent: "red" - hue: 280 - contrast: - fg: 59.3 - black: 0 - red: 49.4 - green: 72.2 - yellow: 62.2 - blue: 51.1 - magenta: 55 - cyan: 70.5 - white: 32.1 - brightBlack: 0 - brightRed: 49.4 - brightGreen: 45.8 - brightYellow: 62.2 - brightBlue: 51.1 - brightMagenta: 55 - brightCyan: 70.5 - brightWhite: 59 diff --git a/themes/sakura-blossom-midnight.yaml b/themes/sakura-blossom-midnight.yaml index 036c793e..fbdc4a9e 100644 --- a/themes/sakura-blossom-midnight.yaml +++ b/themes/sakura-blossom-midnight.yaml @@ -2,7 +2,7 @@ name: "Sakura Blossom Midnight" source: marketplace_id: "agustinhopneto.sakura-blossom" version: "0.0.4" - installs: 1414 + installs: 1415 author: "Agustinho Neto" repo: "https://github.com/agustinhopneto/sakura-blossom" url: "https://marketplace.visualstudio.com/items?itemName=agustinhopneto.sakura-blossom" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 337 + pair: null contrast: fg: 73 black: 0 diff --git a/themes/sakura-blossom-theme.yaml b/themes/sakura-blossom-theme.yaml index e992a138..97d3021e 100644 --- a/themes/sakura-blossom-theme.yaml +++ b/themes/sakura-blossom-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 281 + pair: null contrast: fg: 63.2 black: 45.6 diff --git a/themes/sakura-dreams-dark.yaml b/themes/sakura-dreams-dark.yaml index bb1eb695..091927a3 100644 --- a/themes/sakura-dreams-dark.yaml +++ b/themes/sakura-dreams-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 356 + pair: null contrast: fg: 73.1 black: 0 diff --git a/themes/sakura-dreams.yaml b/themes/sakura-dreams.yaml index 9fc000e0..c0f69f9b 100644 --- a/themes/sakura-dreams.yaml +++ b/themes/sakura-dreams.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 50.8 black: 0 diff --git a/themes/sakura-theme-fork.yaml b/themes/sakura-theme-fork.yaml deleted file mode 100644 index 1cdedd75..00000000 --- a/themes/sakura-theme-fork.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Sakura Theme - Fork" -source: - marketplace_id: "minako.sakurasun" - version: "1.0.3" - installs: 1621 - author: "minako" - repo: "https://github.com/kayliese/sakura" - url: "https://marketplace.visualstudio.com/items?itemName=minako.sakurasun" -colors: - bg: "#070B11" - fg: "#00D7FF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 257 - contrast: - fg: 72.1 - black: 0 - red: 27.5 - green: 53.8 - yellow: 86.4 - blue: 28.3 - magenta: 30.6 - cyan: 48.4 - white: 90.8 - brightBlack: 22.9 - brightRed: 39.4 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.8 - brightMagenta: 46.2 - brightCyan: 56.2 - brightWhite: 90.8 diff --git a/themes/sakura-theme.yaml b/themes/sakura-theme.yaml index 1a36139b..cafc3a1d 100644 --- a/themes/sakura-theme.yaml +++ b/themes/sakura-theme.yaml @@ -1,49 +1,50 @@ -name: "sakura-theme" +name: "Sakura Theme" source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + marketplace_id: "AetherDes.sakura-aetherdes" + version: "0.0.1" + installs: 1087 + author: "AetherDes" + repo: "https://github.com/AetherDeS/Sakura-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=AetherDes.sakura-aetherdes" colors: - bg: "#181C21" - fg: "#F2A2D6" - black: "#BC8DAB" - red: "#EC3737" - green: "#05925C" + bg: "#070B11" + fg: "#00D7FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" yellow: "#E5E510" blue: "#2472C8" - magenta: "#EC34EC" - cyan: "#75BEFF" - white: "#F2A2D6" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" brightBlack: "#666666" - brightRed: "#FF7B7B" - brightGreen: "#77E2B7" - brightYellow: "#F7F79A" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" brightBlue: "#3B8EEA" - brightMagenta: "#EA8FEA" + brightMagenta: "#D670D6" brightCyan: "#29B8DB" - brightWhite: "#FFB3F7" + brightWhite: "#E5E5E5" meta: mode: "dark" accent: "pink" - hue: 254 + hue: 257 + pair: null contrast: - fg: 64.3 - black: 46.7 - red: 33.9 - green: 33.6 - yellow: 85.1 - blue: 26.9 - magenta: 40.9 - cyan: 62.6 - white: 64.3 - brightBlack: 21.5 - brightRed: 51.8 - brightGreen: 75.6 - brightYellow: 97.7 - brightBlue: 39.5 - brightMagenta: 58 - brightCyan: 54.9 - brightWhite: 74.1 + fg: 72.1 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/sakura-v2-by-leroiadib.yaml b/themes/sakura-v2-by-leroiadib.yaml index 88495a23..e6554f9d 100644 --- a/themes/sakura-v2-by-leroiadib.yaml +++ b/themes/sakura-v2-by-leroiadib.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 94.3 black: 45.4 diff --git a/themes/sakura.yaml b/themes/sakura.yaml index df4e8229..60b9eb7b 100644 --- a/themes/sakura.yaml +++ b/themes/sakura.yaml @@ -1,49 +1,50 @@ -name: "sakura" +name: "Sakura" source: - marketplace_id: "Volskaya.irrelevant" - version: "0.0.2" - installs: 33 - author: "Volskaya" - repo: "https://github.com/volskaya/irrelevant" - url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" + marketplace_id: "Kyanoxia.kcon-sakura" + version: "0.0.1" + installs: 103 + author: "Kyanoxia" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kyanoxia.kcon-sakura" colors: - bg: "#1C1C1C" - fg: "#FFFFFF" - black: "#1C1C1C" - red: "#75FA9D" - green: "#FB76C1" - yellow: "#B3FA75" - blue: "#878787" - magenta: "#979797" - cyan: "#A6A6A6" - white: "#444444" + bg: "#19181F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#196AC2" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" brightBlack: "#666666" - brightRed: "#B3FA75" - brightGreen: "#FB76C1" - brightYellow: "#DDDDDD" - brightBlue: "#878787" - brightMagenta: "#979797" - brightCyan: "#A6A6A6" - brightWhite: "#FFFFFF" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: mode: "dark" - accent: "red" - hue: null + accent: "pink" + hue: 292 + pair: null contrast: - fg: 106.3 + fg: 79.3 black: 0 - red: 86.7 - green: 52.2 - yellow: 90.3 - blue: 36.6 - magenta: 44.6 - cyan: 52.5 - white: 8.3 - brightBlack: 21.5 - brightRed: 90.3 - brightGreen: 52.2 - brightYellow: 84.4 - brightBlue: 36.6 - brightMagenta: 44.6 - brightCyan: 52.5 - brightWhite: 106.3 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 24.1 + magenta: 29.6 + cyan: 47.4 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.4 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/sakya-dorje.yaml b/themes/sakya-dorje.yaml index 69e50e44..7ad6be89 100644 --- a/themes/sakya-dorje.yaml +++ b/themes/sakya-dorje.yaml @@ -2,7 +2,7 @@ name: "Sakya Dorje" source: marketplace_id: "mouselee.sakya-theme" version: "0.2.0" - installs: 16 + installs: 19 author: "mouselee" repo: "https://github.com/XuanLee-HEALER/sakya-theme" url: "https://marketplace.visualstudio.com/items?itemName=mouselee.sakya-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 284 + pair: null contrast: fg: 86.8 black: 0 diff --git a/themes/samacaca.yaml b/themes/samacaca.yaml index 9780baf2..bb33ca40 100644 --- a/themes/samacaca.yaml +++ b/themes/samacaca.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 251 + pair: null contrast: fg: 107 black: 0 diff --git a/themes/samgido-theme-dark.yaml b/themes/samgido-theme-dark.yaml index 7b12936d..e7aecd9a 100644 --- a/themes/samgido-theme-dark.yaml +++ b/themes/samgido-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 39.3 black: 0 diff --git a/themes/samito-nest-graphql-theme.yaml b/themes/samito-nest-graphql-theme.yaml index 35e49e39..19b2bda3 100644 --- a/themes/samito-nest-graphql-theme.yaml +++ b/themes/samito-nest-graphql-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/samito-nest-theme.yaml b/themes/samito-nest-theme.yaml index 73b3e757..968e13ca 100644 --- a/themes/samito-nest-theme.yaml +++ b/themes/samito-nest-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 101.2 black: 0 diff --git a/themes/samurai.yaml b/themes/samurai.yaml index eae09965..9f351422 100644 --- a/themes/samurai.yaml +++ b/themes/samurai.yaml @@ -2,7 +2,7 @@ name: "Samurai" source: marketplace_id: "ParsaSam.samurai" version: "0.5.3" - installs: 2179 + installs: 2180 author: "Parsa Samadnejad" repo: "https://github.com/TroddenSpade/Samurai-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ParsaSam.samurai" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.1 black: 0 diff --git a/themes/samyak-bumb.yaml b/themes/samyak-bumb.yaml index 3ced7dc6..d1395d00 100644 --- a/themes/samyak-bumb.yaml +++ b/themes/samyak-bumb.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 74.1 black: 0 diff --git a/themes/sanam-dark-pro.yaml b/themes/sanam-dark-pro.yaml index 61d54b29..c82c7307 100644 --- a/themes/sanam-dark-pro.yaml +++ b/themes/sanam-dark-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 84.8 black: 0 diff --git a/themes/sandcastle.yaml b/themes/sandcastle.yaml index fafe4b6c..b2ec479c 100644 --- a/themes/sandcastle.yaml +++ b/themes/sandcastle.yaml @@ -1,11 +1,11 @@ name: "Sandcastle" source: - marketplace_id: "ryanolsonx.sandcastle-theme" - version: "0.3.1" - installs: 2543 + marketplace_id: "ryanolsonx.sandcastle" + version: "0.1.0" + installs: 846 author: "Ryan Olson" repo: "https://github.com/ryanolsonx/vscode-sandcastle-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ryanolsonx.sandcastle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ryanolsonx.sandcastle" colors: bg: "#272C35" fg: "#FFF4BA" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 262 + pair: null contrast: fg: 95.7 black: 0 diff --git a/themes/sanded.yaml b/themes/sanded.yaml index a397cff4..3344941d 100644 --- a/themes/sanded.yaml +++ b/themes/sanded.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 24.4 black: 101.5 diff --git a/themes/sandstorm.yaml b/themes/sandstorm.yaml index fe169a1a..4e3013b2 100644 --- a/themes/sandstorm.yaml +++ b/themes/sandstorm.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 90 + pair: null contrast: fg: 45.1 black: 42.1 diff --git a/themes/sanemi-shinazugawa.yaml b/themes/sanemi-shinazugawa.yaml index 033ee439..07a976b4 100644 --- a/themes/sanemi-shinazugawa.yaml +++ b/themes/sanemi-shinazugawa.yaml @@ -2,7 +2,7 @@ name: "Sanemi Shinazugawa" source: marketplace_id: "devLocifer.hashira-code-theme" version: "0.0.1" - installs: 738 + installs: 739 author: "devLocifer" repo: "https://github.com/diazdjul19/hashira-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/sanrio.yaml b/themes/sanrio.yaml index 38189fcd..f0131a72 100644 --- a/themes/sanrio.yaml +++ b/themes/sanrio.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 52.1 black: 0 diff --git a/themes/saransk-night.yaml b/themes/saransk-night.yaml index a0f1b6a2..05f752f5 100644 --- a/themes/saransk-night.yaml +++ b/themes/saransk-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 76.8 black: 0 diff --git a/themes/sarcastic-white.yaml b/themes/sarcastic-white.yaml index be7ec1f5..997578a6 100644 --- a/themes/sarcastic-white.yaml +++ b/themes/sarcastic-white.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 293 + pair: null contrast: fg: 84.9 black: 9.6 diff --git a/themes/sargam.yaml b/themes/sargam.yaml index f099dc5d..5085e370 100644 --- a/themes/sargam.yaml +++ b/themes/sargam.yaml @@ -2,7 +2,7 @@ name: "sargam" source: marketplace_id: "sargam.sargam" version: "0.1.2" - installs: 74 + installs: 75 author: "sargam" repo: "https://github.com/SargamDesign/sargam-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sargam.sargam" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 90.6 black: 27.8 diff --git a/themes/satoru-gojo-blue.yaml b/themes/satoru-gojo-blue.yaml index f9cad09c..306fae59 100644 --- a/themes/satoru-gojo-blue.yaml +++ b/themes/satoru-gojo-blue.yaml @@ -2,7 +2,7 @@ name: "satoru-gojo-blue" source: marketplace_id: "dev-alm.satoru-gojo-theme" version: "0.1.8" - installs: 1310 + installs: 1317 author: "Gustavo Cezar de Almeida" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dev-alm.satoru-gojo-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 89.5 black: 0 diff --git a/themes/satoru-gojo-white.yaml b/themes/satoru-gojo-white.yaml index e0493dd3..e4440b23 100644 --- a/themes/satoru-gojo-white.yaml +++ b/themes/satoru-gojo-white.yaml @@ -2,7 +2,7 @@ name: "satoru-gojo-white" source: marketplace_id: "dev-alm.satoru-gojo-theme" version: "0.1.8" - installs: 1310 + installs: 1317 author: "Gustavo Cezar de Almeida" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dev-alm.satoru-gojo-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.2 black: 0 diff --git a/themes/satoshi-nakamoto-theme.yaml b/themes/satoshi-nakamoto-theme.yaml index f1fdb2b8..36316207 100644 --- a/themes/satoshi-nakamoto-theme.yaml +++ b/themes/satoshi-nakamoto-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 287 + pair: null contrast: fg: 87.1 black: 0 diff --git a/themes/satu.yaml b/themes/satu.yaml index 59d97bc8..33b6a457 100644 --- a/themes/satu.yaml +++ b/themes/satu.yaml @@ -2,7 +2,7 @@ name: "Satu" source: marketplace_id: "Docutheme.docutheme" version: "0.0.2" - installs: 61 + installs: 62 author: "Docutheme" repo: "https://github.com/feanra/docutheme" url: "https://marketplace.visualstudio.com/items?itemName=Docutheme.docutheme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 78 black: 0 diff --git a/themes/saturated-dark-terminal.yaml b/themes/saturated-dark-terminal.yaml index f5ecceeb..917ed49e 100644 --- a/themes/saturated-dark-terminal.yaml +++ b/themes/saturated-dark-terminal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 105.6 black: 0 diff --git a/themes/saturn-moonlight.yaml b/themes/saturn-moonlight.yaml index 5f053217..1c07f154 100644 --- a/themes/saturn-moonlight.yaml +++ b/themes/saturn-moonlight.yaml @@ -2,7 +2,7 @@ name: "Saturn Moonlight" source: marketplace_id: "ArturSponchiado.saturnmoonlight" version: "0.0.2" - installs: 3888 + installs: 3889 author: "Artur Sponchiado" repo: "https://github.com/arturspon/SaturnMoonlight" url: "https://marketplace.visualstudio.com/items?itemName=ArturSponchiado.saturnmoonlight" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 75.3 black: 0 diff --git a/themes/saturnblue-dark.yaml b/themes/saturnblue-dark.yaml index 8a7a07af..5911b3c6 100644 --- a/themes/saturnblue-dark.yaml +++ b/themes/saturnblue-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 258 + pair: null contrast: fg: 85.5 black: 0 diff --git a/themes/sauna-theme.yaml b/themes/sauna-theme.yaml index c0562489..3b76f3f7 100644 --- a/themes/sauna-theme.yaml +++ b/themes/sauna-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 63.5 black: 0 diff --git a/themes/saunf.yaml b/themes/saunf.yaml index 30af1c92..ff479cc5 100644 --- a/themes/saunf.yaml +++ b/themes/saunf.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 247 + pair: null contrast: fg: 100.4 black: 0 diff --git a/themes/sauve.yaml b/themes/sauve.yaml index 8b43e9b0..4f6da720 100644 --- a/themes/sauve.yaml +++ b/themes/sauve.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 96 black: 0 diff --git a/themes/savannah-dawn.yaml b/themes/savannah-dawn.yaml index 166047c6..db7eac10 100644 --- a/themes/savannah-dawn.yaml +++ b/themes/savannah-dawn.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.7 black: 90.2 diff --git a/themes/savannah-sunset.yaml b/themes/savannah-sunset.yaml index 67fdf89d..fa8a9e52 100644 --- a/themes/savannah-sunset.yaml +++ b/themes/savannah-sunset.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 76.1 black: 0 diff --git a/themes/save-my-eyes.yaml b/themes/save-my-eyes.yaml index 4e1167cf..736d8ae1 100644 --- a/themes/save-my-eyes.yaml +++ b/themes/save-my-eyes.yaml @@ -2,7 +2,7 @@ name: "Save My Eyes" source: marketplace_id: "ZaphodAndo.save-my-eyes" version: "1.0.4" - installs: 1765 + installs: 1766 author: "ZaphodAndo" repo: "https://github.com/ZaphodAndo/save-my-eyes" url: "https://marketplace.visualstudio.com/items?itemName=ZaphodAndo.save-my-eyes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 60 black: 18.6 diff --git a/themes/savetemin.yaml b/themes/savetemin.yaml index 486cd2ea..bf8f6de8 100644 --- a/themes/savetemin.yaml +++ b/themes/savetemin.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/sazardev.yaml b/themes/sazardev.yaml index 3119fd41..247c4c12 100644 --- a/themes/sazardev.yaml +++ b/themes/sazardev.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 101.1 black: 0 diff --git a/themes/scarlet.yaml b/themes/scarlet.yaml index 56e62b4d..b8d33bdb 100644 --- a/themes/scarlet.yaml +++ b/themes/scarlet.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 75.4 black: 0 diff --git a/themes/sceanic-dark-gray.yaml b/themes/sceanic-dark-gray.yaml index 6aca30c5..d9f17d2b 100644 --- a/themes/sceanic-dark-gray.yaml +++ b/themes/sceanic-dark-gray.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 266 + pair: null contrast: fg: 77.6 black: 31.7 diff --git a/themes/sceanic-gray.yaml b/themes/sceanic-gray.yaml index 96c21d2f..557ec124 100644 --- a/themes/sceanic-gray.yaml +++ b/themes/sceanic-gray.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 266 + pair: null contrast: fg: 75.1 black: 29.2 diff --git a/themes/sceanic.yaml b/themes/sceanic.yaml index 38119be2..dccd87a5 100644 --- a/themes/sceanic.yaml +++ b/themes/sceanic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 231 + pair: null contrast: fg: 76.7 black: 30.8 diff --git a/themes/scepter.yaml b/themes/scepter.yaml deleted file mode 100644 index 28242c56..00000000 --- a/themes/scepter.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "scepter" -source: - marketplace_id: "IsaacWilson.scepter" - version: "1.1.6" - installs: 4977 - author: "Isaac Wilson" - repo: "https://github.com/wisac/scepter-theme" - url: "https://marketplace.visualstudio.com/items?itemName=IsaacWilson.scepter" -colors: - bg: "#171C28" - fg: "#A2AABC" - black: "#2F3B54" - red: "#EF6B73" - green: "#BAE67E" - yellow: "#FFCC66" - blue: "#5CCFE6" - magenta: "#C3A6FF" - cyan: "#5CCFE6" - white: "#A2AABC" - brightBlack: "#444A5E" - brightRed: "#EF6B73" - brightGreen: "#BAE67E" - brightYellow: "#FFCC66" - brightBlue: "#5CCFE6" - brightMagenta: "#C3A6FF" - brightCyan: "#5CCFE6" - brightWhite: "#A2AABC" -meta: - mode: "dark" - accent: "orange" - hue: 267 - contrast: - fg: 54.5 - black: 0 - red: 44.2 - green: 81.3 - yellow: 78.7 - blue: 67.2 - magenta: 60.7 - cyan: 67.2 - white: 54.5 - brightBlack: 10.6 - brightRed: 44.2 - brightGreen: 81.3 - brightYellow: 78.7 - brightBlue: 67.2 - brightMagenta: 60.7 - brightCyan: 67.2 - brightWhite: 54.5 diff --git a/themes/schooltheme.yaml b/themes/schooltheme.yaml index 71ee93ef..fd34451c 100644 --- a/themes/schooltheme.yaml +++ b/themes/schooltheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 18 + pair: null contrast: fg: 77.3 black: 0 diff --git a/themes/schwifty-atom-one-dark.yaml b/themes/schwifty-atom-one-dark.yaml index c7f1c1a8..6c89a1eb 100644 --- a/themes/schwifty-atom-one-dark.yaml +++ b/themes/schwifty-atom-one-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/schwifty-purple-one-dark.yaml b/themes/schwifty-purple-one-dark.yaml deleted file mode 100644 index 9fe9148e..00000000 --- a/themes/schwifty-purple-one-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Schwifty Purple One Dark" -source: - marketplace_id: "decrypteddesign.Schwifty" - version: "1.5.0" - installs: 2933 - author: "decrypteddesign" - repo: "https://github.com/mcqua007/schwifty" - url: "https://marketplace.visualstudio.com/items?itemName=decrypteddesign.Schwifty" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#3F4451" - red: "#F86AA3" - green: "#2EC4B6" - yellow: "#E5C07B" - blue: "#56CBF9" - magenta: "#9BA2FF" - cyan: "#42B3C2" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#F73B87" - brightGreen: "#37E6D5" - brightYellow: "#F9A571" - brightBlue: "#79D7FC" - brightMagenta: "#B1B6FC" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "red" - hue: 264 - contrast: - fg: 56.2 - black: 0 - red: 44.9 - green: 55.8 - yellow: 67.4 - blue: 63.6 - magenta: 52 - cyan: 49.3 - white: 87.4 - brightBlack: 12.3 - brightRed: 36 - brightGreen: 73.6 - brightYellow: 60.4 - brightBlue: 71 - brightMagenta: 61.7 - brightCyan: 64.6 - brightWhite: 79.8 diff --git a/themes/schwifty.yaml b/themes/schwifty.yaml index b436a4a5..46f1c8e1 100644 --- a/themes/schwifty.yaml +++ b/themes/schwifty.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 233 + pair: null contrast: fg: 56.9 black: 0 diff --git a/themes/scooby-dooby-dark.yaml b/themes/scooby-dooby-dark.yaml index 1f4b4143..ab35b737 100644 --- a/themes/scooby-dooby-dark.yaml +++ b/themes/scooby-dooby-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 85.1 black: 0 diff --git a/themes/scorch-contrast.yaml b/themes/scorch-contrast.yaml index 26f7e1a9..03bd03ee 100644 --- a/themes/scorch-contrast.yaml +++ b/themes/scorch-contrast.yaml @@ -1,11 +1,11 @@ name: "scorch-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#160D0E" fg: "#BAA0A2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 11 + pair: null contrast: fg: 53.7 black: 0 diff --git a/themes/scorch-light.yaml b/themes/scorch-light.yaml index 82fafcc3..615d7afb 100644 --- a/themes/scorch-light.yaml +++ b/themes/scorch-light.yaml @@ -1,11 +1,11 @@ name: "scorch-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#F2EDED" fg: "#514242" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 82 black: 0 diff --git a/themes/scorch.yaml b/themes/scorch.yaml index b0e7da14..873feef6 100644 --- a/themes/scorch.yaml +++ b/themes/scorch.yaml @@ -1,11 +1,11 @@ name: "scorch" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#392123" fg: "#BAA0A2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 14 + pair: null contrast: fg: 50.7 black: 0 diff --git a/themes/scorpion-theme.yaml b/themes/scorpion-theme.yaml index 50778089..448ebff9 100644 --- a/themes/scorpion-theme.yaml +++ b/themes/scorpion-theme.yaml @@ -2,7 +2,7 @@ name: "Scorpion Theme" source: marketplace_id: "TudorAlexandru.scorpion" version: "1.0.6" - installs: 2416 + installs: 2417 author: "Tudor Alexandru" repo: "https://github.com/tudorale/scorpion-theme" url: "https://marketplace.visualstudio.com/items?itemName=TudorAlexandru.scorpion" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 271 + pair: null contrast: fg: 103.4 black: 0 diff --git a/themes/scuba.yaml b/themes/scuba.yaml index 4fa5a7b8..1418d590 100644 --- a/themes/scuba.yaml +++ b/themes/scuba.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 265 + pair: null contrast: fg: 48.2 black: 0 diff --git a/themes/sea-glass.yaml b/themes/sea-glass.yaml index ebfb1301..f60febf8 100644 --- a/themes/sea-glass.yaml +++ b/themes/sea-glass.yaml @@ -2,7 +2,7 @@ name: "Sea Glass" source: marketplace_id: "KyleStewart.sea-glass-color-theme" version: "0.4.0" - installs: 4859 + installs: 4862 author: "Kyle Stewart" repo: "https://github.com/KStew1017/sea-glass-vscode-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=KyleStewart.sea-glass-color-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 83.3 black: 0 diff --git a/themes/sea-urchin.yaml b/themes/sea-urchin.yaml index e7e5ea1f..ac6948ef 100644 --- a/themes/sea-urchin.yaml +++ b/themes/sea-urchin.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 283 + pair: null contrast: fg: 87.1 black: 0 diff --git a/themes/seabrook-dark-italic.yaml b/themes/seabrook-dark-italic.yaml index 409e89c3..27a5a1f0 100644 --- a/themes/seabrook-dark-italic.yaml +++ b/themes/seabrook-dark-italic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: "Seabrook Light - Italic" contrast: fg: 86 black: 0 diff --git a/themes/seabrook-light-italic.yaml b/themes/seabrook-light-italic.yaml index 02b6a876..14cd990a 100644 --- a/themes/seabrook-light-italic.yaml +++ b/themes/seabrook-light-italic.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Seabrook Dark - Italic" contrast: fg: 85 black: 88.6 diff --git a/themes/seaci-darkbase.yaml b/themes/seaci-darkbase.yaml deleted file mode 100644 index 5a952e16..00000000 --- a/themes/seaci-darkbase.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Seaci Darkbase" -source: - marketplace_id: "seaci.seaci-theme" - version: "1.0.1" - installs: 183 - author: "seaci" - repo: "https://github.com/LeonCry/seaci-theme" - url: "https://marketplace.visualstudio.com/items?itemName=seaci.seaci-theme" -colors: - bg: "#181818" - fg: "#DDDDDD" - black: "#333333" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#DDDDDD" - brightBlack: "#666666" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#F6F6F6" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 84.9 - black: 0 - red: 44.7 - green: 52.2 - yellow: 73.8 - blue: 44.8 - magenta: 47.4 - cyan: 56.3 - white: 84.9 - brightBlack: 21.9 - brightRed: 52.6 - brightGreen: 60.8 - brightYellow: 83.4 - brightBlue: 53.1 - brightMagenta: 55.9 - brightCyan: 65.1 - brightWhite: 100.8 diff --git a/themes/seaci-shadow.yaml b/themes/seaci-shadow.yaml deleted file mode 100644 index 7814a9fb..00000000 --- a/themes/seaci-shadow.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Seaci Shadow" -source: - marketplace_id: "seaci.seaci-theme" - version: "1.0.1" - installs: 183 - author: "seaci" - repo: "https://github.com/LeonCry/seaci-theme" - url: "https://marketplace.visualstudio.com/items?itemName=seaci.seaci-theme" -colors: - bg: "#262626" - fg: "#DDDDDD" - black: "#333333" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#DDDDDD" - brightBlack: "#666666" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#F6F6F6" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 82.9 - black: 0 - red: 42.7 - green: 50.2 - yellow: 71.8 - blue: 42.9 - magenta: 45.4 - cyan: 54.3 - white: 82.9 - brightBlack: 20 - brightRed: 50.6 - brightGreen: 58.8 - brightYellow: 81.4 - brightBlue: 51.2 - brightMagenta: 53.9 - brightCyan: 63.1 - brightWhite: 98.9 diff --git a/themes/seagull.yaml b/themes/seagull.yaml index f25c241a..ff78d34d 100644 --- a/themes/seagull.yaml +++ b/themes/seagull.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 72.2 black: 72.2 diff --git a/themes/secunda.yaml b/themes/secunda.yaml index f7c8e9d1..6cdba8c2 100644 --- a/themes/secunda.yaml +++ b/themes/secunda.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 82.5 black: 0 diff --git a/themes/secuoyas-code.yaml b/themes/secuoyas-code.yaml index 122810a6..60848b44 100644 --- a/themes/secuoyas-code.yaml +++ b/themes/secuoyas-code.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 61.5 black: 0 diff --git a/themes/sedona.yaml b/themes/sedona.yaml index b717f17f..364c3fa1 100644 --- a/themes/sedona.yaml +++ b/themes/sedona.yaml @@ -2,7 +2,7 @@ name: "Sedona" source: marketplace_id: "interactiveRob.sedona" version: "0.2.5" - installs: 3143 + installs: 3145 author: "interactiveRob" repo: "https://github.com/interactiveRob/sedona-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=interactiveRob.sedona" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 78.4 black: 0 diff --git a/themes/seed7-tokyo-night-dark.yaml b/themes/seed7-tokyo-night-dark.yaml index d6ea9e3b..e0cf364e 100644 --- a/themes/seed7-tokyo-night-dark.yaml +++ b/themes/seed7-tokyo-night-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 70.2 black: 0 diff --git a/themes/seekode-light.yaml b/themes/seekode-light.yaml index 834da465..1d5b068d 100644 --- a/themes/seekode-light.yaml +++ b/themes/seekode-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 93.4 black: 89 diff --git a/themes/selene-selenized-dark.yaml b/themes/selene-selenized-dark.yaml index 06556c9c..ff17b703 100644 --- a/themes/selene-selenized-dark.yaml +++ b/themes/selene-selenized-dark.yaml @@ -2,7 +2,7 @@ name: "Selene Selenized Dark" source: marketplace_id: "santoso-wijaya.helios-selene" version: "0.3.18" - installs: 3053 + installs: 3055 author: "Santoso Wijaya" repo: "https://github.com/santoso-wijaya/vscode-helios-selene" url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 215 + pair: "Selene Selenized Light" contrast: fg: 73.1 black: 0 diff --git a/themes/selene-selenized-light.yaml b/themes/selene-selenized-light.yaml index d09afd76..1e7c0a71 100644 --- a/themes/selene-selenized-light.yaml +++ b/themes/selene-selenized-light.yaml @@ -2,7 +2,7 @@ name: "Selene Selenized Light" source: marketplace_id: "santoso-wijaya.helios-selene" version: "0.3.18" - installs: 3053 + installs: 3055 author: "Santoso Wijaya" repo: "https://github.com/santoso-wijaya/vscode-helios-selene" url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Selene Selenized Dark" contrast: fg: 84 black: 0 diff --git a/themes/selenitic-color-theme.yaml b/themes/selenitic-color-theme.yaml index 2a71b6e3..c6df4959 100644 --- a/themes/selenitic-color-theme.yaml +++ b/themes/selenitic-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 97.1 black: 0 diff --git a/themes/sema.yaml b/themes/sema.yaml index 9241df3b..f4349b9c 100644 --- a/themes/sema.yaml +++ b/themes/sema.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 81.3 black: 0 diff --git a/themes/semantic-noctis-lux.yaml b/themes/semantic-noctis-lux.yaml index 80eb6370..b960f66b 100644 --- a/themes/semantic-noctis-lux.yaml +++ b/themes/semantic-noctis-lux.yaml @@ -2,7 +2,7 @@ name: "Semantic Noctis Lux" source: marketplace_id: "jnooree.semantic-noctis" version: "1.3.3" - installs: 2741 + installs: 2745 author: "Nuri Jung" repo: "https://github.com/jnooree/noctis" url: "https://marketplace.visualstudio.com/items?itemName=jnooree.semantic-noctis" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 88.3 black: 94.3 diff --git a/themes/semi-dark-theme-in-yellow.yaml b/themes/semi-dark-theme-in-yellow.yaml index c9975bfe..396a1605 100644 --- a/themes/semi-dark-theme-in-yellow.yaml +++ b/themes/semi-dark-theme-in-yellow.yaml @@ -2,7 +2,7 @@ name: "semi dark theme in yellow" source: marketplace_id: "moondevaa.Semi-dark-theme-in-yellow" version: "0.2.4" - installs: 2844 + installs: 2846 author: "moondevaa" repo: "https://github.com/AaBbdev29/semi-dark-theme-in-yellow" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.Semi-dark-theme-in-yellow" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 68.1 black: 10.3 diff --git a/themes/senerdark-pro-blue-gray.yaml b/themes/senerdark-pro-blue-gray.yaml index 3b339c57..33c1fde3 100644 --- a/themes/senerdark-pro-blue-gray.yaml +++ b/themes/senerdark-pro-blue-gray.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 249 + pair: null contrast: fg: 77.1 black: 12.6 diff --git a/themes/senerdark-pro-deep-gray.yaml b/themes/senerdark-pro-deep-gray.yaml index 1b5b4301..17aeb92b 100644 --- a/themes/senerdark-pro-deep-gray.yaml +++ b/themes/senerdark-pro-deep-gray.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 91.1 black: 0 diff --git a/themes/senkorange.yaml b/themes/senkorange.yaml index e87a6fb8..c5cde0dd 100644 --- a/themes/senkorange.yaml +++ b/themes/senkorange.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 71 + pair: null contrast: fg: 101.2 black: 0 diff --git a/themes/senna-dark-black-theme.yaml b/themes/senna-dark-black-theme.yaml index 5dc37fc8..857d884a 100644 --- a/themes/senna-dark-black-theme.yaml +++ b/themes/senna-dark-black-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 90.6 black: 0 diff --git a/themes/seoul-dancheong.yaml b/themes/seoul-dancheong.yaml index 9dbbfde0..f760ed0d 100644 --- a/themes/seoul-dancheong.yaml +++ b/themes/seoul-dancheong.yaml @@ -2,7 +2,7 @@ name: "Seoul Dancheong" source: marketplace_id: "lovema-kr.theme-seoul" version: "0.1.6" - installs: 35 + installs: 36 author: "Hue" repo: "https://github.com/hue-lovemakr/lovema-kr" url: "https://marketplace.visualstudio.com/items?itemName=lovema-kr.theme-seoul" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 167 + pair: null contrast: fg: 70.1 black: 0 diff --git a/themes/seoul-morning.yaml b/themes/seoul-morning.yaml index 6d03a868..6a30a640 100644 --- a/themes/seoul-morning.yaml +++ b/themes/seoul-morning.yaml @@ -2,7 +2,7 @@ name: "Seoul Morning" source: marketplace_id: "lovema-kr.theme-seoul" version: "0.1.6" - installs: 35 + installs: 36 author: "Hue" repo: "https://github.com/hue-lovemakr/lovema-kr" url: "https://marketplace.visualstudio.com/items?itemName=lovema-kr.theme-seoul" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Seoul Night" contrast: fg: 94.2 black: 101.8 diff --git a/themes/seoul-night.yaml b/themes/seoul-night.yaml index 29d5ecec..a02fba2e 100644 --- a/themes/seoul-night.yaml +++ b/themes/seoul-night.yaml @@ -2,7 +2,7 @@ name: "Seoul Night" source: marketplace_id: "lovema-kr.theme-seoul" version: "0.1.6" - installs: 35 + installs: 36 author: "Hue" repo: "https://github.com/hue-lovemakr/lovema-kr" url: "https://marketplace.visualstudio.com/items?itemName=lovema-kr.theme-seoul" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Seoul Morning" contrast: fg: 72.7 black: 0 diff --git a/themes/september-dark-theme.yaml b/themes/september-dark-theme.yaml index 54aa5ca4..62714632 100644 --- a/themes/september-dark-theme.yaml +++ b/themes/september-dark-theme.yaml @@ -2,7 +2,7 @@ name: "September Dark Theme" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 101.7 black: 0 diff --git a/themes/sequoia-monochrome.yaml b/themes/sequoia-monochrome.yaml index 28ee4f02..100fe42f 100644 --- a/themes/sequoia-monochrome.yaml +++ b/themes/sequoia-monochrome.yaml @@ -2,7 +2,7 @@ name: "Sequoia Monochrome" source: marketplace_id: "wicked-labs.sequoia" version: "1.31.3" - installs: 23648 + installs: 23654 author: "Michael Andreuzza " repo: "https://github.com/Sequoia-Theme/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 37.6 black: 0 diff --git a/themes/sequoia-moonlight.yaml b/themes/sequoia-moonlight.yaml index f9d5ecf9..108445f1 100644 --- a/themes/sequoia-moonlight.yaml +++ b/themes/sequoia-moonlight.yaml @@ -2,7 +2,7 @@ name: "Sequoia Moonlight" source: marketplace_id: "wicked-labs.sequoia" version: "1.31.3" - installs: 23648 + installs: 23654 author: "Michael Andreuzza " repo: "https://github.com/Sequoia-Theme/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 37.6 black: 0 diff --git a/themes/sequoia-retro.yaml b/themes/sequoia-retro.yaml index 8ef0ca48..1ebfb9c8 100644 --- a/themes/sequoia-retro.yaml +++ b/themes/sequoia-retro.yaml @@ -2,7 +2,7 @@ name: "Sequoia Retro" source: marketplace_id: "wicked-labs.sequoia" version: "1.31.3" - installs: 23648 + installs: 23654 author: "Michael Andreuzza " repo: "https://github.com/Sequoia-Theme/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 37.6 black: 0 diff --git a/themes/seral-dark-github-stripe.yaml b/themes/seral-dark-github-stripe.yaml index 6540af47..bdc11c63 100644 --- a/themes/seral-dark-github-stripe.yaml +++ b/themes/seral-dark-github-stripe.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 254 + pair: "Seral Light (GitHub × Stripe)" contrast: fg: 100.9 black: 13 diff --git a/themes/seral-light-github-stripe.yaml b/themes/seral-light-github-stripe.yaml index 5c810f9f..5c574cc3 100644 --- a/themes/seral-light-github-stripe.yaml +++ b/themes/seral-light-github-stripe.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Seral Dark (GitHub × Stripe)" contrast: fg: 101.5 black: 101.5 diff --git a/themes/serendipity-midnight-electric.yaml b/themes/serendipity-midnight-electric.yaml index b26cb22d..53ee59c5 100644 --- a/themes/serendipity-midnight-electric.yaml +++ b/themes/serendipity-midnight-electric.yaml @@ -2,7 +2,7 @@ name: "Serendipity Midnight Electric" source: marketplace_id: "wicked-labs.wvsc-serendipity" version: "1.66.2" - installs: 70565 + installs: 70595 author: "Michael Andreuzza " repo: "https://github.com/Serendipity-Theme/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 64.3 black: 0 diff --git a/themes/serendipity-midnight-v1.yaml b/themes/serendipity-midnight-v1.yaml index a898f10a..3019e7b7 100644 --- a/themes/serendipity-midnight-v1.yaml +++ b/themes/serendipity-midnight-v1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: "Serendipity Morning V1" contrast: fg: 101.6 black: 0 diff --git a/themes/serendipity-midnight.yaml b/themes/serendipity-midnight.yaml index 0cacfa5a..0ce455d4 100644 --- a/themes/serendipity-midnight.yaml +++ b/themes/serendipity-midnight.yaml @@ -2,7 +2,7 @@ name: "Serendipity Midnight" source: marketplace_id: "wicked-labs.wvsc-serendipity" version: "1.66.2" - installs: 70565 + installs: 70595 author: "Michael Andreuzza " repo: "https://github.com/Serendipity-Theme/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 278 + pair: "Serendipity Morning" contrast: fg: 87.2 black: 0 diff --git a/themes/serendipity-morning-v1.yaml b/themes/serendipity-morning-v1.yaml index 15532273..1cdf8982 100644 --- a/themes/serendipity-morning-v1.yaml +++ b/themes/serendipity-morning-v1.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Serendipity Midnight V1" contrast: fg: 82.2 black: 104 diff --git a/themes/serendipity-morning.yaml b/themes/serendipity-morning.yaml index cbe349c8..36533d41 100644 --- a/themes/serendipity-morning.yaml +++ b/themes/serendipity-morning.yaml @@ -2,7 +2,7 @@ name: "Serendipity Morning" source: marketplace_id: "wicked-labs.wvsc-serendipity" version: "1.66.2" - installs: 70565 + installs: 70595 author: "Michael Andreuzza " repo: "https://github.com/Serendipity-Theme/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Serendipity Midnight" contrast: fg: 84.6 black: 18 diff --git a/themes/serendipity-sunset-v1.yaml b/themes/serendipity-sunset-v1.yaml index 47537fff..4585ee42 100644 --- a/themes/serendipity-sunset-v1.yaml +++ b/themes/serendipity-sunset-v1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 265 + pair: null contrast: fg: 99.2 black: 0 diff --git a/themes/serendipity-sunset.yaml b/themes/serendipity-sunset.yaml index 6b410c1c..745328cd 100644 --- a/themes/serendipity-sunset.yaml +++ b/themes/serendipity-sunset.yaml @@ -2,7 +2,7 @@ name: "Serendipity Sunset" source: marketplace_id: "wicked-labs.wvsc-serendipity" version: "1.66.2" - installs: 70565 + installs: 70595 author: "Michael Andreuzza " repo: "https://github.com/Serendipity-Theme/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 278 + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/serene.yaml b/themes/serene.yaml index a702bfca..3101deba 100644 --- a/themes/serene.yaml +++ b/themes/serene.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 305 + pair: null contrast: fg: 40.7 black: 0 diff --git a/themes/service-contrast.yaml b/themes/service-contrast.yaml index 4e96b64d..c309bcef 100644 --- a/themes/service-contrast.yaml +++ b/themes/service-contrast.yaml @@ -1,11 +1,11 @@ name: "service-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0C0C0C" fg: "#E8E1DE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 89.1 black: 0 diff --git a/themes/service-light.yaml b/themes/service-light.yaml index ece16533..60b4d629 100644 --- a/themes/service-light.yaml +++ b/themes/service-light.yaml @@ -1,11 +1,11 @@ name: "service-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#4D5151" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 87.9 black: 0 diff --git a/themes/service.yaml b/themes/service.yaml index 50f93148..e02d69b3 100644 --- a/themes/service.yaml +++ b/themes/service.yaml @@ -1,11 +1,11 @@ name: "service" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#252727" fg: "#E8E1DE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.1 black: 0 diff --git a/themes/seti-classic-vscode.yaml b/themes/seti-classic-vscode.yaml index 6a530402..f7be8104 100644 --- a/themes/seti-classic-vscode.yaml +++ b/themes/seti-classic-vscode.yaml @@ -2,7 +2,7 @@ name: "seti-classic-vscode" source: marketplace_id: "ecool.seti-classic-vscode" version: "1.0.7" - installs: 1193 + installs: 1194 author: "ecool" repo: "https://github.com/ecool/seti-classic-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ecool.seti-classic-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/seti.yaml b/themes/seti.yaml index c31d6f4c..13cd2ea8 100644 --- a/themes/seti.yaml +++ b/themes/seti.yaml @@ -2,7 +2,7 @@ name: "Seti" source: marketplace_id: "seti.seti" version: "0.0.6" - installs: 21997 + installs: 22001 author: "sriosv" repo: "https://github.com/Sarchis/seti-syntax" url: "https://marketplace.visualstudio.com/items?itemName=seti.seti" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 59.9 black: 0 diff --git a/themes/sewayaki-dark.yaml b/themes/sewayaki-dark.yaml index ec571735..35e40cf8 100644 --- a/themes/sewayaki-dark.yaml +++ b/themes/sewayaki-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 57.2 black: 0 diff --git a/themes/shaan-s.yaml b/themes/shaan-s.yaml index 97bdec7a..9af1522e 100644 --- a/themes/shaan-s.yaml +++ b/themes/shaan-s.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 272 + pair: null contrast: fg: 85.9 black: 15.9 diff --git a/themes/shaant-shakti-mystic-roast.yaml b/themes/shaant-shakti-mystic-roast.yaml index 40fed13a..5e1b6fd8 100644 --- a/themes/shaant-shakti-mystic-roast.yaml +++ b/themes/shaant-shakti-mystic-roast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85.6 black: 0 diff --git a/themes/shaant-shakti-sand-storm.yaml b/themes/shaant-shakti-sand-storm.yaml index 3187b469..b9c9eb1b 100644 --- a/themes/shaant-shakti-sand-storm.yaml +++ b/themes/shaant-shakti-sand-storm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 91.2 black: 0 diff --git a/themes/shaant-shakti-soul-drift.yaml b/themes/shaant-shakti-soul-drift.yaml index 4bb4ea06..94ceaea6 100644 --- a/themes/shaant-shakti-soul-drift.yaml +++ b/themes/shaant-shakti-soul-drift.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 102.3 black: 0 diff --git a/themes/shaant-shakti-spfx-sanctuary.yaml b/themes/shaant-shakti-spfx-sanctuary.yaml index 5ceb3d2b..482f09c5 100644 --- a/themes/shaant-shakti-spfx-sanctuary.yaml +++ b/themes/shaant-shakti-spfx-sanctuary.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 249 + pair: null contrast: fg: 98.8 black: 0 diff --git a/themes/shaant-shakti.yaml b/themes/shaant-shakti.yaml index e2232c64..b5de1a7b 100644 --- a/themes/shaant-shakti.yaml +++ b/themes/shaant-shakti.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/shadcn-green-dark.yaml b/themes/shadcn-green-dark.yaml index 4e4dd475..2b78b300 100644 --- a/themes/shadcn-green-dark.yaml +++ b/themes/shadcn-green-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Shadcn Green Light" contrast: fg: 104.5 black: 0 diff --git a/themes/shadcn-green-light.yaml b/themes/shadcn-green-light.yaml index 11a5abcc..5bdac53e 100644 --- a/themes/shadcn-green-light.yaml +++ b/themes/shadcn-green-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Shadcn Green Dark" contrast: fg: 105.9 black: 0 diff --git a/themes/shadcn-neutral-dark.yaml b/themes/shadcn-neutral-dark.yaml index 173007bc..72b77673 100644 --- a/themes/shadcn-neutral-dark.yaml +++ b/themes/shadcn-neutral-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: "Shadcn Neutral Light" contrast: fg: 104.4 black: 0 diff --git a/themes/shadcn-neutral-light.yaml b/themes/shadcn-neutral-light.yaml index 62cb7a68..69e65431 100644 --- a/themes/shadcn-neutral-light.yaml +++ b/themes/shadcn-neutral-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Shadcn Neutral Dark" contrast: fg: 105.8 black: 0 diff --git a/themes/shadcn-orange-dark.yaml b/themes/shadcn-orange-dark.yaml index 685e7a4c..89912411 100644 --- a/themes/shadcn-orange-dark.yaml +++ b/themes/shadcn-orange-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Shadcn Orange Light" contrast: fg: 104.5 black: 0 diff --git a/themes/shadcn-orange-light.yaml b/themes/shadcn-orange-light.yaml index 238cb802..aed77c95 100644 --- a/themes/shadcn-orange-light.yaml +++ b/themes/shadcn-orange-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Shadcn Orange Dark" contrast: fg: 105.9 black: 0 diff --git a/themes/shadcn-red-dark.yaml b/themes/shadcn-red-dark.yaml index e6097557..c2bae60f 100644 --- a/themes/shadcn-red-dark.yaml +++ b/themes/shadcn-red-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Shadcn Red Light" contrast: fg: 104.5 black: 0 diff --git a/themes/shadcn-red-light.yaml b/themes/shadcn-red-light.yaml index 7c66df89..e5f2613f 100644 --- a/themes/shadcn-red-light.yaml +++ b/themes/shadcn-red-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Shadcn Red Dark" contrast: fg: 105.9 black: 0 diff --git a/themes/shadcn-rose-dark.yaml b/themes/shadcn-rose-dark.yaml index b5a81c88..c1032e3b 100644 --- a/themes/shadcn-rose-dark.yaml +++ b/themes/shadcn-rose-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Shadcn Rose Light" contrast: fg: 104.5 black: 0 diff --git a/themes/shadcn-rose-light.yaml b/themes/shadcn-rose-light.yaml index 8dc241e1..b21f51e8 100644 --- a/themes/shadcn-rose-light.yaml +++ b/themes/shadcn-rose-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Shadcn Rose Dark" contrast: fg: 105.9 black: 0 diff --git a/themes/shadcn-violet-dark.yaml b/themes/shadcn-violet-dark.yaml index 424d8919..17cbd1ea 100644 --- a/themes/shadcn-violet-dark.yaml +++ b/themes/shadcn-violet-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: "Shadcn Violet Light" contrast: fg: 104.5 black: 0 diff --git a/themes/shadcn-violet-light.yaml b/themes/shadcn-violet-light.yaml index c05b478b..300bd009 100644 --- a/themes/shadcn-violet-light.yaml +++ b/themes/shadcn-violet-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Shadcn Violet Dark" contrast: fg: 105.9 black: 0 diff --git a/themes/shadcn-vivid.yaml b/themes/shadcn-vivid.yaml index e2403455..c68fcd71 100644 --- a/themes/shadcn-vivid.yaml +++ b/themes/shadcn-vivid.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/shadcn-yellow-dark.yaml b/themes/shadcn-yellow-dark.yaml index d1154b6c..5c079312 100644 --- a/themes/shadcn-yellow-dark.yaml +++ b/themes/shadcn-yellow-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Shadcn Yellow Light" contrast: fg: 104.5 black: 0 diff --git a/themes/shadcn-yellow-light.yaml b/themes/shadcn-yellow-light.yaml index 673baf41..95e0858a 100644 --- a/themes/shadcn-yellow-light.yaml +++ b/themes/shadcn-yellow-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Shadcn Yellow Dark" contrast: fg: 105.9 black: 0 diff --git a/themes/shaddy-lighta.yaml b/themes/shaddy-lighta.yaml index 29bf4203..60b9232d 100644 --- a/themes/shaddy-lighta.yaml +++ b/themes/shaddy-lighta.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.9 black: 0 diff --git a/themes/shaddy.yaml b/themes/shaddy.yaml index 572f0dd2..44a30763 100644 --- a/themes/shaddy.yaml +++ b/themes/shaddy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 104.4 black: 0 diff --git a/themes/shades-of-blue.yaml b/themes/shades-of-blue.yaml index 6a6551c4..b69ed96f 100644 --- a/themes/shades-of-blue.yaml +++ b/themes/shades-of-blue.yaml @@ -2,7 +2,7 @@ name: "Shades-Of-Blue" source: marketplace_id: "bakrimoharram.shades-of-blue" version: "0.0.6" - installs: 1964 + installs: 1965 author: "bakrimoharram" repo: "https://github.com/bakrimoharram/shades-of-blue" url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.shades-of-blue" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 268 + pair: null contrast: fg: 31.6 black: 0 diff --git a/themes/shades-of-cyan-theme.yaml b/themes/shades-of-cyan-theme.yaml index 3524be8a..4c4e487a 100644 --- a/themes/shades-of-cyan-theme.yaml +++ b/themes/shades-of-cyan-theme.yaml @@ -1,11 +1,11 @@ name: "Shades of Cyan theme" source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1834 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + marketplace_id: "moondevaa.shades-of-cyan-theme" + version: "0.1.1" + installs: 4948 + author: "moondevaa" + repo: "https://github.com/AaBbdev29/Shades-of-Cyan-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.shades-of-cyan-theme" colors: bg: "#00101A" fg: "#C4D8E2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 233 + pair: null contrast: fg: 80.5 black: 20.1 diff --git a/themes/shades-of-gravy.yaml b/themes/shades-of-gravy.yaml index af41e111..b52b7c06 100644 --- a/themes/shades-of-gravy.yaml +++ b/themes/shades-of-gravy.yaml @@ -2,7 +2,7 @@ name: "Shades Of Gravy" source: marketplace_id: "Mr-Icecream.shades-of-gravy" version: "1.1.0" - installs: 865 + installs: 866 author: "Mr. Icecream" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Mr-Icecream.shades-of-gravy" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.5 black: 12 diff --git a/themes/shades-of-life-light.yaml b/themes/shades-of-life-light.yaml index 926f9987..841b6bab 100644 --- a/themes/shades-of-life-light.yaml +++ b/themes/shades-of-life-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 93 black: 95 diff --git a/themes/shades-of-life.yaml b/themes/shades-of-life.yaml index 7e706842..a3496c71 100644 --- a/themes/shades-of-life.yaml +++ b/themes/shades-of-life.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 304 + pair: null contrast: fg: 87 black: 0 diff --git a/themes/shades-of-midnight-blue-dark-theme.yaml b/themes/shades-of-midnight-blue-dark-theme.yaml index 5c014870..b28abecc 100644 --- a/themes/shades-of-midnight-blue-dark-theme.yaml +++ b/themes/shades-of-midnight-blue-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Shades of Midnight Blue dark theme" source: marketplace_id: "moondevaa.shadesofmidnightbluedarktheme" version: "0.5.8" - installs: 17308 + installs: 17323 author: "moondevaa" repo: "https://github.com/AaBbdev29/shades-of-midnight-blue-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.shadesofmidnightbluedarktheme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 88.2 black: 0 diff --git a/themes/shades-of-violet.yaml b/themes/shades-of-violet.yaml index a611c236..a2cc2122 100644 --- a/themes/shades-of-violet.yaml +++ b/themes/shades-of-violet.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 297 + pair: null contrast: fg: 73.2 black: 0 diff --git a/themes/shades.yaml b/themes/shades.yaml index ea4119db..08bb1c7c 100644 --- a/themes/shades.yaml +++ b/themes/shades.yaml @@ -1,14 +1,14 @@ name: "Shades" source: - marketplace_id: "YesCode.shadesTheme" - version: "0.0.13" - installs: 3082 + marketplace_id: "YesCode.morita" + version: "0.0.18" + installs: 228 author: "YesCode" - repo: "https://github.com/yesomac/ShadesThemeVSC" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.shadesTheme" + repo: "https://github.com/yesomac/MyThemes" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" colors: - bg: "#0B0C0B" - fg: "#EEFFFF" + bg: "#FAF4FD" + fg: "#1A0017" black: "#1D2021" red: "#FB543F" green: "#95C085" @@ -19,31 +19,32 @@ colors: white: "#A89984" brightBlack: "#665C54" brightRed: "#FB543F" - brightGreen: "#CFBDFA" - brightYellow: "#E7F0FF" - brightBlue: "#1E8094" + brightGreen: "#0687FF" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" brightMagenta: "#8F4673" brightCyan: "#8BA59B" brightWhite: "#FDF4C1" meta: - mode: "dark" + mode: "light" accent: "orange" hue: null + pair: null contrast: - fg: 105.4 - black: 0 - red: 42.8 - green: 61.8 - yellow: 73.9 - blue: 48.3 - magenta: 20.3 - cyan: 50.2 - white: 48 - brightBlack: 19.4 - brightRed: 42.8 - brightGreen: 72 - brightYellow: 97.4 - brightBlue: 29.9 - brightMagenta: 20.3 - brightCyan: 50.2 - brightWhite: 99.7 + fg: 100.1 + black: 98 + red: 53.3 + green: 34.9 + yellow: 23.4 + blue: 47.9 + magenta: 75.9 + cyan: 46 + white: 48.2 + brightBlack: 76.9 + brightRed: 53.3 + brightGreen: 56.9 + brightYellow: 17.1 + brightBlue: 76.8 + brightMagenta: 75.9 + brightCyan: 46 + brightWhite: 0 diff --git a/themes/shadowborn.yaml b/themes/shadowborn.yaml index 8cb15e36..b66a7ebe 100644 --- a/themes/shadowborn.yaml +++ b/themes/shadowborn.yaml @@ -2,7 +2,7 @@ name: "Shadowborn" source: marketplace_id: "RyzenFromFire.vscode-shadowborn-theme" version: "1.0.2" - installs: 438 + installs: 439 author: "RyzenFromFire" repo: "https://github.com/RyzenFromFire/vscode-shadowborn" url: "https://marketplace.visualstudio.com/items?itemName=RyzenFromFire.vscode-shadowborn-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 73.5 black: 0 diff --git a/themes/shadowspectrum.yaml b/themes/shadowspectrum.yaml index 31d79d41..ccb808f7 100644 --- a/themes/shadowspectrum.yaml +++ b/themes/shadowspectrum.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/shamrock.yaml b/themes/shamrock.yaml index 2ed8d293..fd748cb1 100644 --- a/themes/shamrock.yaml +++ b/themes/shamrock.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 158 + pair: null contrast: fg: 33.2 black: 0 diff --git a/themes/sharkdark-theme.yaml b/themes/sharkdark-theme.yaml index ef74cc67..1de4899f 100644 --- a/themes/sharkdark-theme.yaml +++ b/themes/sharkdark-theme.yaml @@ -2,7 +2,7 @@ name: "Sharkdark Theme" source: marketplace_id: "Sharkdark.sharkdark" version: "0.0.1" - installs: 351 + installs: 352 author: "Sharkdark" repo: "https://github.com/dann-dann/sharkdark" url: "https://marketplace.visualstudio.com/items?itemName=Sharkdark.sharkdark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/sharpblue.yaml b/themes/sharpblue.yaml index a7abcf09..6f6cf5bc 100644 --- a/themes/sharpblue.yaml +++ b/themes/sharpblue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 230 + pair: null contrast: fg: 103.3 black: 0 diff --git a/themes/sheme.yaml b/themes/sheme.yaml index 4594c202..ff37fd07 100644 --- a/themes/sheme.yaml +++ b/themes/sheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 36.6 black: 0 diff --git a/themes/shibainu-dark.yaml b/themes/shibainu-dark.yaml index 528854a8..0fd250de 100644 --- a/themes/shibainu-dark.yaml +++ b/themes/shibainu-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 81.9 black: 0 diff --git a/themes/shibuya.yaml b/themes/shibuya.yaml index de146ddd..d63235ff 100644 --- a/themes/shibuya.yaml +++ b/themes/shibuya.yaml @@ -2,7 +2,7 @@ name: "Shibuya" source: marketplace_id: "jeroen-meijer.shibuya" version: "1.0.2" - installs: 9101 + installs: 9103 author: "Jeroen Meijer" repo: "https://github.com/jeroen-meijer/shibuya" url: "https://marketplace.visualstudio.com/items?itemName=jeroen-meijer.shibuya" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 276 + pair: null contrast: fg: 75.1 black: 0 diff --git a/themes/shifting-sands.yaml b/themes/shifting-sands.yaml index a9ab81a0..c31d160d 100644 --- a/themes/shifting-sands.yaml +++ b/themes/shifting-sands.yaml @@ -2,7 +2,7 @@ name: "Shifting Sands" source: marketplace_id: "MrLizardAndCompany.shifting-sands" version: "0.2.6" - installs: 394 + installs: 395 author: "Mr Lizard & Company" repo: "https://github.com/webstek/shifting_sands" url: "https://marketplace.visualstudio.com/items?itemName=MrLizardAndCompany.shifting-sands" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: 71 + pair: null contrast: fg: 49.2 black: 66.6 diff --git a/themes/shiina.yaml b/themes/shiina.yaml index be098da0..6f80997e 100644 --- a/themes/shiina.yaml +++ b/themes/shiina.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 83.4 black: 83.4 diff --git a/themes/shinjuku-colored-brackets.yaml b/themes/shinjuku-colored-brackets.yaml deleted file mode 100644 index 52bcb376..00000000 --- a/themes/shinjuku-colored-brackets.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Shinjuku Colored Brackets" -source: - marketplace_id: "SamirRoy.shinjuku-vscode-theme" - version: "0.1.5" - installs: 398 - author: "Samir Roy" - repo: "https://github.com/samir-roy/shinjuku-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SamirRoy.shinjuku-vscode-theme" -colors: - bg: "#191922" - fg: "#D8DEE9" - black: "#090300" - red: "#E6483C" - green: "#00BC5E" - yellow: "#FFF56A" - blue: "#01A0E4" - magenta: "#BB5DA5" - cyan: "#8EE3FF" - white: "#A5A2A2" - brightBlack: "#5C5855" - brightRed: "#F94A3D" - brightGreen: "#00C964" - brightYellow: "#FFF454" - brightBlue: "#01A0E4" - brightMagenta: "#D85CB7" - brightCyan: "#B5E4F4" - brightWhite: "#F7F7F7" -meta: - mode: "dark" - accent: "orange" - hue: 285 - contrast: - fg: 85.1 - black: 0 - red: 34.9 - green: 52.1 - yellow: 97.2 - blue: 45.4 - magenta: 33.3 - cyan: 81.1 - white: 51 - brightBlack: 16.2 - brightRed: 39.6 - brightGreen: 58.3 - brightYellow: 96.5 - brightBlue: 45.4 - brightMagenta: 39.3 - brightCyan: 84.4 - brightWhite: 101.3 diff --git a/themes/shinkai.yaml b/themes/shinkai.yaml index 5af54175..b068f99e 100644 --- a/themes/shinkai.yaml +++ b/themes/shinkai.yaml @@ -2,7 +2,7 @@ name: "Shinkai" source: marketplace_id: "TobiasTimm.umi" version: "1.1.2" - installs: 2886 + installs: 2887 author: "Tobias Timm" repo: "https://github.com/tobiastimm/umi" url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.umi" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 258 + pair: null contrast: fg: 79.8 black: 30.8 diff --git a/themes/shirotelin.yaml b/themes/shirotelin.yaml index f7745127..43b018e0 100644 --- a/themes/shirotelin.yaml +++ b/themes/shirotelin.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/shrek-contrast.yaml b/themes/shrek-contrast.yaml index 53403daf..60e074a6 100644 --- a/themes/shrek-contrast.yaml +++ b/themes/shrek-contrast.yaml @@ -1,11 +1,11 @@ name: "shrek-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#000000" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/shrek-light.yaml b/themes/shrek-light.yaml index 43765f6a..18af432f 100644 --- a/themes/shrek-light.yaml +++ b/themes/shrek-light.yaml @@ -1,11 +1,11 @@ name: "shrek-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#222222" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.9 black: 0 diff --git a/themes/shrek.yaml b/themes/shrek.yaml index bf67f0d0..d481f9ef 100644 --- a/themes/shrek.yaml +++ b/themes/shrek.yaml @@ -1,49 +1,50 @@ -name: "Shrek" +name: "shrek" source: - marketplace_id: "jeooo.shrekk" - version: "0.0.2" - installs: 295 - author: "jeooo`" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=jeooo.shrekk" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: - bg: "#B0C400" - fg: "#523213" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" + bg: "#222222" + fg: "#FFFFFF" + black: "#2F2F2F" + red: "#BA0E2E" + green: "#B2DE62" + yellow: "#857A5E" + blue: "#F0F2EB" + magenta: "#BFB59B" + cyan: "#B2DE62" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#F03E5F" + brightGreen: "#DBF0B6" + brightYellow: "#B4AB95" + brightBlue: "#FFFFFF" + brightMagenta: "#E7E3D9" + brightCyan: "#DBF0B6" + brightWhite: "#FFFFFF" meta: - mode: "light" - accent: "pink" - hue: 117 + mode: "dark" + accent: "orange" + hue: null + pair: null contrast: - fg: 56.8 - black: 66.5 - red: 34.5 - green: 9.7 - yellow: 18.4 - blue: 46.5 - magenta: 35.1 - cyan: 21.1 - white: 46.4 - brightBlack: 39.2 - brightRed: 34.5 - brightGreen: 0 - brightYellow: 0 - brightBlue: 46.5 - brightMagenta: 35.1 - brightCyan: 21.1 - brightWhite: 8.9 + fg: 105.5 + black: 0 + red: 19.1 + green: 75.4 + yellow: 29.9 + blue: 96.3 + magenta: 60.2 + cyan: 75.4 + white: 105.5 + brightBlack: 13.7 + brightRed: 35.4 + brightGreen: 90.6 + brightYellow: 54.7 + brightBlue: 105.5 + brightMagenta: 87.4 + brightCyan: 90.6 + brightWhite: 105.5 diff --git a/themes/shuri-midnight.yaml b/themes/shuri-midnight.yaml index bf602781..9c4b96e1 100644 --- a/themes/shuri-midnight.yaml +++ b/themes/shuri-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 19 + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/siberia.yaml b/themes/siberia.yaml index 72f97319..7d3b4c0b 100644 --- a/themes/siberia.yaml +++ b/themes/siberia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 271 + pair: null contrast: fg: 50.3 black: 26.7 diff --git a/themes/side-punk-sql.yaml b/themes/side-punk-sql.yaml index a6bf813d..d7d15f61 100644 --- a/themes/side-punk-sql.yaml +++ b/themes/side-punk-sql.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 271 + pair: null contrast: fg: 99.9 black: 8.7 diff --git a/themes/sidev-monokai-dim-ts.yaml b/themes/sidev-monokai-dim-ts.yaml index fae6b88f..a6b89055 100644 --- a/themes/sidev-monokai-dim-ts.yaml +++ b/themes/sidev-monokai-dim-ts.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 70.1 black: 0 diff --git a/themes/siemor.yaml b/themes/siemor.yaml index d3d656fc..3988fa8a 100644 --- a/themes/siemor.yaml +++ b/themes/siemor.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 258 + pair: null contrast: fg: 63.1 black: 0 diff --git a/themes/sign-theme-v3.yaml b/themes/sign-theme-v3.yaml index 66aa0bad..6d5532b4 100644 --- a/themes/sign-theme-v3.yaml +++ b/themes/sign-theme-v3.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 93.3 black: 0 diff --git a/themes/sign-theme-v4.yaml b/themes/sign-theme-v4.yaml index dd6f12b9..623514f1 100644 --- a/themes/sign-theme-v4.yaml +++ b/themes/sign-theme-v4.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 71.6 black: 0 diff --git a/themes/silent-code.yaml b/themes/silent-code.yaml index 67ff8e35..93b01949 100644 --- a/themes/silent-code.yaml +++ b/themes/silent-code.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 81.4 black: 0 diff --git a/themes/silot-dark-classic.yaml b/themes/silot-dark-classic.yaml index 1f23f1a7..641c2fc2 100644 --- a/themes/silot-dark-classic.yaml +++ b/themes/silot-dark-classic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 80.8 black: 0 diff --git a/themes/silvermist.yaml b/themes/silvermist.yaml index 7c9b8836..406f5990 100644 --- a/themes/silvermist.yaml +++ b/themes/silvermist.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 251 + pair: null contrast: fg: 82.3 black: 0 diff --git a/themes/simple-3000.yaml b/themes/simple-3000.yaml index 8a851df4..bbca4cea 100644 --- a/themes/simple-3000.yaml +++ b/themes/simple-3000.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 266 + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/simple-calm-dark.yaml b/themes/simple-calm-dark.yaml index 5b2e1939..06000b9b 100644 --- a/themes/simple-calm-dark.yaml +++ b/themes/simple-calm-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 56 black: 0 diff --git a/themes/simple-purple.yaml b/themes/simple-purple.yaml deleted file mode 100644 index 213c9d72..00000000 --- a/themes/simple-purple.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Simple Purple" -source: - marketplace_id: "HenriLima05.a-cup-of-coffee" - version: "0.0.2" - installs: 4677 - author: "Henri Lima" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.a-cup-of-coffee" -colors: - bg: "#1B1B1B" - fg: "#BEBEBE" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 66 - black: 0 - red: 26.3 - green: 52.6 - yellow: 85.2 - blue: 27 - magenta: 29.3 - cyan: 47.1 - white: 89.6 - brightBlack: 21.6 - brightRed: 38.1 - brightGreen: 63.1 - brightYellow: 95.2 - brightBlue: 39.6 - brightMagenta: 44.9 - brightCyan: 54.9 - brightWhite: 89.6 diff --git a/themes/simple-red-dark.yaml b/themes/simple-red-dark.yaml index 10275b23..01758aba 100644 --- a/themes/simple-red-dark.yaml +++ b/themes/simple-red-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 287 + pair: null contrast: fg: 95.2 black: 0 diff --git a/themes/simple-theme.yaml b/themes/simple-theme.yaml index 3c52212e..d88d23db 100644 --- a/themes/simple-theme.yaml +++ b/themes/simple-theme.yaml @@ -2,7 +2,7 @@ name: "Simple Theme" source: marketplace_id: "Fleuquer.simple-theme" version: "1.0.0" - installs: 1154 + installs: 1155 author: "Fleuquer" repo: "https://github.com/fleuquer/simple-theme" url: "https://marketplace.visualstudio.com/items?itemName=Fleuquer.simple-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 94.2 black: 0 diff --git a/themes/simpledark.yaml b/themes/simpledark.yaml index 7870bafa..50cebd4d 100644 --- a/themes/simpledark.yaml +++ b/themes/simpledark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 215 + pair: null contrast: fg: 46.9 black: 0 diff --git a/themes/sinequanone-acid.yaml b/themes/sinequanone-acid.yaml index 2fd224eb..e90164ed 100644 --- a/themes/sinequanone-acid.yaml +++ b/themes/sinequanone-acid.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 288 + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/sinequanone-apple.yaml b/themes/sinequanone-apple.yaml index ebd0b8c2..1a199348 100644 --- a/themes/sinequanone-apple.yaml +++ b/themes/sinequanone-apple.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 79.1 black: 0 diff --git a/themes/sinequanone-brighton.yaml b/themes/sinequanone-brighton.yaml index ccfe8068..4a8df261 100644 --- a/themes/sinequanone-brighton.yaml +++ b/themes/sinequanone-brighton.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 79.1 black: 0 diff --git a/themes/sinequanone-carbon.yaml b/themes/sinequanone-carbon.yaml index c85d1054..b1505160 100644 --- a/themes/sinequanone-carbon.yaml +++ b/themes/sinequanone-carbon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 37.6 black: 0 diff --git a/themes/sinequanone-cerulean.yaml b/themes/sinequanone-cerulean.yaml deleted file mode 100644 index ae540ec5..00000000 --- a/themes/sinequanone-cerulean.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Sinequanone Cerulean" -source: - marketplace_id: "EmmettHintz.sinequanone" - version: "0.12.0" - installs: 48 - author: "Emmett Hintz" - repo: "https://github.com/Sinequanone-Themes/vs-code" - url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" -colors: - bg: "#FAF4ED" - fg: "#575279" - black: "#F2E9E1" - red: "#3E4491" - green: "#C48200" - yellow: "#1A1B4B" - blue: "#3A9EFD" - magenta: "#F600B9" - cyan: "#292A73" - white: "#575279" - brightBlack: "#797593" - brightRed: "#3E4491" - brightGreen: "#C48200" - brightYellow: "#1A1B4B" - brightBlue: "#3A9EFD" - brightMagenta: "#F600B9" - brightCyan: "#292A73" - brightWhite: "#575279" -meta: - mode: "light" - accent: "pink" - hue: null - contrast: - fg: 79.1 - black: 0 - red: 83.2 - green: 52.9 - yellow: 96.8 - blue: 47.4 - magenta: 56.1 - cyan: 92 - white: 79.1 - brightBlack: 64.4 - brightRed: 83.2 - brightGreen: 52.9 - brightYellow: 96.8 - brightBlue: 47.4 - brightMagenta: 56.1 - brightCyan: 92 - brightWhite: 79.1 diff --git a/themes/sinequanone-noir.yaml b/themes/sinequanone-noir.yaml index 53cf3398..aadf9214 100644 --- a/themes/sinequanone-noir.yaml +++ b/themes/sinequanone-noir.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 37.6 black: 0 diff --git a/themes/sinequanone-sunset.yaml b/themes/sinequanone-sunset.yaml index b6bd489b..d3de7ca0 100644 --- a/themes/sinequanone-sunset.yaml +++ b/themes/sinequanone-sunset.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 288 + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/sinequanone-swan.yaml b/themes/sinequanone-swan.yaml deleted file mode 100644 index 4cf34331..00000000 --- a/themes/sinequanone-swan.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Sinequanone Swan" -source: - marketplace_id: "EmmettHintz.sinequanone" - version: "0.12.0" - installs: 48 - author: "Emmett Hintz" - repo: "https://github.com/Sinequanone-Themes/vs-code" - url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" -colors: - bg: "#232136" - fg: "#E7D2C5" - black: "#393552" - red: "#574F7D" - green: "#E0F0EA" - yellow: "#A678D2" - blue: "#95ADBE" - magenta: "#F6E1F4" - cyan: "#B090CE" - white: "#E7D2C5" - brightBlack: "#908CAA" - brightRed: "#574F7D" - brightGreen: "#E0F0EA" - brightYellow: "#A678D2" - brightBlue: "#95ADBE" - brightMagenta: "#F6E1F4" - brightCyan: "#B090CE" - brightWhite: "#E7D2C5" -meta: - mode: "dark" - accent: "magenta" - hue: 288 - contrast: - fg: 78.9 - black: 0 - red: 13.5 - green: 93 - yellow: 38.1 - blue: 53.4 - magenta: 89.7 - cyan: 46.6 - white: 78.9 - brightBlack: 39.6 - brightRed: 13.5 - brightGreen: 93 - brightYellow: 38.1 - brightBlue: 53.4 - brightMagenta: 89.7 - brightCyan: 46.6 - brightWhite: 78.9 diff --git a/themes/sinergyext.yaml b/themes/sinergyext.yaml index 3bf63dba..ed7178d8 100644 --- a/themes/sinergyext.yaml +++ b/themes/sinergyext.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 233 + pair: null contrast: fg: 98.9 black: 0 diff --git a/themes/sirius-astral.yaml b/themes/sirius-astral.yaml index 8225a5b9..cb542e92 100644 --- a/themes/sirius-astral.yaml +++ b/themes/sirius-astral.yaml @@ -2,7 +2,7 @@ name: "Sirius-Astral" source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" - installs: 509 + installs: 512 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 92.7 black: 0 diff --git a/themes/sirius-glow.yaml b/themes/sirius-glow.yaml index e9973bf3..b2a36d00 100644 --- a/themes/sirius-glow.yaml +++ b/themes/sirius-glow.yaml @@ -2,7 +2,7 @@ name: "Sirius-Glow" source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" - installs: 509 + installs: 512 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 258 + pair: null contrast: fg: 95 black: 13.1 diff --git a/themes/sirius-nebula.yaml b/themes/sirius-nebula.yaml index 373187e9..74d56d76 100644 --- a/themes/sirius-nebula.yaml +++ b/themes/sirius-nebula.yaml @@ -2,7 +2,7 @@ name: "Sirius-Nebula" source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" - installs: 509 + installs: 512 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 103.3 black: 0 diff --git a/themes/sirius-pulsar.yaml b/themes/sirius-pulsar.yaml index 537fe975..039d0cc9 100644 --- a/themes/sirius-pulsar.yaml +++ b/themes/sirius-pulsar.yaml @@ -2,7 +2,7 @@ name: "Sirius-Pulsar" source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" - installs: 509 + installs: 512 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 115 + pair: null contrast: fg: 99.6 black: 0 diff --git a/themes/sirius-vesper.yaml b/themes/sirius-vesper.yaml index f6aab875..4d042336 100644 --- a/themes/sirius-vesper.yaml +++ b/themes/sirius-vesper.yaml @@ -2,7 +2,7 @@ name: "Sirius-Vesper" source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" - installs: 509 + installs: 512 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 242 + pair: null contrast: fg: 85.8 black: 0 diff --git a/themes/sirius-vibe.yaml b/themes/sirius-vibe.yaml index 2534895c..92b06e5f 100644 --- a/themes/sirius-vibe.yaml +++ b/themes/sirius-vibe.yaml @@ -2,7 +2,7 @@ name: "Sirius-Vibe" source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" - installs: 509 + installs: 512 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 91.1 black: 0 diff --git a/themes/sirius-vortex.yaml b/themes/sirius-vortex.yaml index 7aaed4c7..ee7a5bfd 100644 --- a/themes/sirius-vortex.yaml +++ b/themes/sirius-vortex.yaml @@ -2,7 +2,7 @@ name: "Sirius-Vortex" source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" - installs: 509 + installs: 512 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 73 + pair: null contrast: fg: 99.7 black: 12.9 diff --git a/themes/sirius-zenith.yaml b/themes/sirius-zenith.yaml index 8254a062..746d1e95 100644 --- a/themes/sirius-zenith.yaml +++ b/themes/sirius-zenith.yaml @@ -2,7 +2,7 @@ name: "Sirius-Zenith" source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" - installs: 509 + installs: 512 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.2 black: 0 diff --git a/themes/sith.yaml b/themes/sith.yaml index 810e4915..68e6305c 100644 --- a/themes/sith.yaml +++ b/themes/sith.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 293 + pair: null contrast: fg: 97.2 black: 0 diff --git a/themes/sizdah-best-of-all.yaml b/themes/sizdah-best-of-all.yaml deleted file mode 100644 index 7164ed31..00000000 --- a/themes/sizdah-best-of-all.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Sizdah - Best of all" -source: - marketplace_id: "AkonMHasib.sizdah" - version: "0.0.5" - installs: 933 - author: "Akon M Hasib" - repo: "https://github.com/HasibX2000/Sizdah-Theme-Collection" - url: "https://marketplace.visualstudio.com/items?itemName=AkonMHasib.sizdah" -colors: - bg: "#1D1D26" - fg: "#B3B3D4" - black: "#2C2C3E" - red: "#FF3399" - green: "#00D364" - yellow: "#FFCC66" - blue: "#00BFFF" - magenta: "#CC66FF" - cyan: "#00CED1" - white: "#FFFFFF" - brightBlack: "#3D3D56" - brightRed: "#FF3399" - brightGreen: "#00D364" - brightYellow: "#FFCC66" - brightBlue: "#00BFFF" - brightMagenta: "#CC66FF" - brightCyan: "#00CED1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 285 - contrast: - fg: 60.9 - black: 0 - red: 40.2 - green: 62.7 - yellow: 78.5 - blue: 59.6 - magenta: 43.4 - cyan: 63.8 - white: 106.1 - brightBlack: 0 - brightRed: 40.2 - brightGreen: 62.7 - brightYellow: 78.5 - brightBlue: 59.6 - brightMagenta: 43.4 - brightCyan: 63.8 - brightWhite: 106.1 diff --git a/themes/sizo-purple.yaml b/themes/sizo-purple.yaml index 516bd0ac..9fc84461 100644 --- a/themes/sizo-purple.yaml +++ b/themes/sizo-purple.yaml @@ -2,7 +2,7 @@ name: "Sizo Purple" source: marketplace_id: "Sizo.sizo-purple" version: "1.0.3" - installs: 47 + installs: 48 author: "Sizo" repo: "https://github.com/sizoroot/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Sizo.sizo-purple" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 74.2 black: 0 diff --git a/themes/sj-pinkish-theme.yaml b/themes/sj-pinkish-theme.yaml index 394716dd..ae6ed34c 100644 --- a/themes/sj-pinkish-theme.yaml +++ b/themes/sj-pinkish-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 288 + pair: null contrast: fg: 106.8 black: 0 diff --git a/themes/sj-theme.yaml b/themes/sj-theme.yaml index b447e4c9..e784290a 100644 --- a/themes/sj-theme.yaml +++ b/themes/sj-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 244 + pair: null contrast: fg: 86.8 black: 0 diff --git a/themes/sk5s-vsgt.yaml b/themes/sk5s-vsgt.yaml index 67be94e5..cdc918d6 100644 --- a/themes/sk5s-vsgt.yaml +++ b/themes/sk5s-vsgt.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 101 black: 0 diff --git a/themes/skeletortheme.yaml b/themes/skeletortheme.yaml index 411aebce..6468ed88 100644 --- a/themes/skeletortheme.yaml +++ b/themes/skeletortheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 280 + pair: null contrast: fg: 105.4 black: 0 diff --git a/themes/sky-at-night.yaml b/themes/sky-at-night.yaml index 7244fa8f..edda63ac 100644 --- a/themes/sky-at-night.yaml +++ b/themes/sky-at-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 75.1 black: 0 diff --git a/themes/sky-blue-tranquility-focus.yaml b/themes/sky-blue-tranquility-focus.yaml index 57f3d760..2af64d77 100644 --- a/themes/sky-blue-tranquility-focus.yaml +++ b/themes/sky-blue-tranquility-focus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 258 + pair: null contrast: fg: 98.8 black: 0 diff --git a/themes/sky-miami-vice.yaml b/themes/sky-miami-vice.yaml index 03899441..ec4cdae2 100644 --- a/themes/sky-miami-vice.yaml +++ b/themes/sky-miami-vice.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 260 + pair: null contrast: fg: 35.7 black: 0 diff --git a/themes/sky-neon.yaml b/themes/sky-neon.yaml index 691a9119..38f11e9c 100644 --- a/themes/sky-neon.yaml +++ b/themes/sky-neon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 286 + pair: null contrast: fg: 35 black: 0 diff --git a/themes/skyline.yaml b/themes/skyline.yaml index 63df2b79..c06c7555 100644 --- a/themes/skyline.yaml +++ b/themes/skyline.yaml @@ -2,7 +2,7 @@ name: "Skyline" source: marketplace_id: "hydralite.hydralite-skyline" version: "0.0.3" - installs: 3715 + installs: 3717 author: "Hydralite" repo: "https://github.com/hydralite/skyline" url: "https://marketplace.visualstudio.com/items?itemName=hydralite.hydralite-skyline" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 106 black: 0 diff --git a/themes/slack-theme-aubergine-dark.yaml b/themes/slack-theme-aubergine-dark.yaml index aa472b32..e9f89c52 100644 --- a/themes/slack-theme-aubergine-dark.yaml +++ b/themes/slack-theme-aubergine-dark.yaml @@ -2,7 +2,7 @@ name: "Slack Theme Aubergine Dark" source: marketplace_id: "felipe-mendes.slack-theme" version: "1.9.17" - installs: 514450 + installs: 514505 author: "Felipe Mendes" repo: "https://github.com/felipemendes/slack-theme" url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 331 + pair: null contrast: fg: 95.4 black: 0 diff --git a/themes/slack-theme-aubergine-new.yaml b/themes/slack-theme-aubergine-new.yaml index fd27fba1..80ee46d2 100644 --- a/themes/slack-theme-aubergine-new.yaml +++ b/themes/slack-theme-aubergine-new.yaml @@ -2,7 +2,7 @@ name: "Slack Theme Aubergine New" source: marketplace_id: "felipe-mendes.slack-theme" version: "1.9.17" - installs: 514450 + installs: 514505 author: "Felipe Mendes" repo: "https://github.com/felipemendes/slack-theme" url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 96.2 black: 106 diff --git a/themes/slack-theme-aubergine.yaml b/themes/slack-theme-aubergine.yaml deleted file mode 100644 index a1aecd98..00000000 --- a/themes/slack-theme-aubergine.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Slack Theme Aubergine" -source: - marketplace_id: "felipe-mendes.slack-theme" - version: "1.9.17" - installs: 514450 - author: "Felipe Mendes" - repo: "https://github.com/felipemendes/slack-theme" - url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#E53935" - green: "#91B859" - yellow: "#FFB62C" - blue: "#6182B8" - magenta: "#7C4DFF" - cyan: "#39ADB5" - white: "#FFFFFF" - brightBlack: "#90A4AE" - brightRed: "#E53935" - brightGreen: "#91B859" - brightYellow: "#FFB62C" - brightBlue: "#6182B8" - brightMagenta: "#7C4DFF" - brightCyan: "#39ADB5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 106 - black: 106 - red: 67.7 - green: 44.9 - yellow: 31.7 - blue: 66.3 - magenta: 72.6 - cyan: 51.8 - white: 0 - brightBlack: 50.6 - brightRed: 67.7 - brightGreen: 44.9 - brightYellow: 31.7 - brightBlue: 66.3 - brightMagenta: 72.6 - brightCyan: 51.8 - brightWhite: 0 diff --git a/themes/slack-theme-dark.yaml b/themes/slack-theme-dark.yaml index 1f2e8bb3..3dce49c5 100644 --- a/themes/slack-theme-dark.yaml +++ b/themes/slack-theme-dark.yaml @@ -2,7 +2,7 @@ name: "Slack Theme Dark" source: marketplace_id: "tanmay.slack-theme" version: "1.0.0" - installs: 5528 + installs: 5530 author: "tanmay" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tanmay.slack-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 303 + pair: null contrast: fg: 107.3 black: 0 diff --git a/themes/slack-theme.yaml b/themes/slack-theme.yaml index e75a886b..85524b57 100644 --- a/themes/slack-theme.yaml +++ b/themes/slack-theme.yaml @@ -2,7 +2,7 @@ name: "slack-theme" source: marketplace_id: "tanmay.slack-theme" version: "1.0.0" - installs: 5528 + installs: 5530 author: "tanmay" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tanmay.slack-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/slate-black.yaml b/themes/slate-black.yaml index bcbf97a4..96d91aaf 100644 --- a/themes/slate-black.yaml +++ b/themes/slate-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78 black: 0 diff --git a/themes/slate-blackish.yaml b/themes/slate-blackish.yaml index 05ed60b2..a1c454f9 100644 --- a/themes/slate-blackish.yaml +++ b/themes/slate-blackish.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 76.9 black: 0 diff --git a/themes/slate-contrast.yaml b/themes/slate-contrast.yaml index 555ce3c6..b170a6e7 100644 --- a/themes/slate-contrast.yaml +++ b/themes/slate-contrast.yaml @@ -1,11 +1,11 @@ name: "slate-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#19191F" fg: "#EBEBF4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 94 black: 0 diff --git a/themes/slate-gray.yaml b/themes/slate-gray.yaml index 4feee058..6e78e3e4 100644 --- a/themes/slate-gray.yaml +++ b/themes/slate-gray.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 76.9 black: 0 diff --git a/themes/slate-light.yaml b/themes/slate-light.yaml deleted file mode 100644 index 4c9f3e90..00000000 --- a/themes/slate-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "slate-light" -source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" -colors: - bg: "#FFFFFF" - fg: "#19191F" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#566981" - yellow: "#89A7B1" - blue: "#9AADA7" - magenta: "#566981" - cyan: "#89A7B1" - white: "#24242D" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#8B9CB2" - brightYellow: "#C6D5DA" - brightBlue: "#D2DBD8" - brightMagenta: "#8B9CB2" - brightCyan: "#C6D5DA" - brightWhite: "#474757" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 104.3 - black: 0 - red: 80.3 - green: 78.1 - yellow: 50 - blue: 46.5 - magenta: 78.1 - cyan: 50 - white: 102.3 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 53.9 - brightYellow: 23.7 - brightBlue: 19.9 - brightMagenta: 53.9 - brightCyan: 23.7 - brightWhite: 91 diff --git a/themes/slate.yaml b/themes/slate.yaml index 2db11d8c..d8b7b799 100644 --- a/themes/slate.yaml +++ b/themes/slate.yaml @@ -1,11 +1,11 @@ name: "slate" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#3D3D4C" fg: "#EBEBF4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 86 black: 0 diff --git a/themes/sleepy-owl-default-beta.yaml b/themes/sleepy-owl-default-beta.yaml index f414eac0..8b0730d2 100644 --- a/themes/sleepy-owl-default-beta.yaml +++ b/themes/sleepy-owl-default-beta.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 70.2 black: 0 diff --git a/themes/sleepy-owl-greenwich-beta.yaml b/themes/sleepy-owl-greenwich-beta.yaml index 01db4c5e..36f9c58f 100644 --- a/themes/sleepy-owl-greenwich-beta.yaml +++ b/themes/sleepy-owl-greenwich-beta.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 69.8 black: 0 diff --git a/themes/sleepy-owl-oak-beta.yaml b/themes/sleepy-owl-oak-beta.yaml index a2a85cc1..3c1c12ca 100644 --- a/themes/sleepy-owl-oak-beta.yaml +++ b/themes/sleepy-owl-oak-beta.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 286 + pair: null contrast: fg: 69.8 black: 0 diff --git a/themes/slime-color-theme.yaml b/themes/slime-color-theme.yaml index aa1fff05..dec54ac4 100644 --- a/themes/slime-color-theme.yaml +++ b/themes/slime-color-theme.yaml @@ -2,7 +2,7 @@ name: "slime-color-theme" source: marketplace_id: "smlombardi.slime" version: "3.2.1" - installs: 129886 + installs: 129894 author: "smlombardi" repo: "https://github.com/smlombardi/theme-slime" url: "https://marketplace.visualstudio.com/items?itemName=smlombardi.slime" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85.4 black: 20.6 diff --git a/themes/slime-contrast.yaml b/themes/slime-contrast.yaml index 17a2e0a6..5df3eac2 100644 --- a/themes/slime-contrast.yaml +++ b/themes/slime-contrast.yaml @@ -1,11 +1,11 @@ name: "slime-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0B0C0D" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/slime-light.yaml b/themes/slime-light.yaml index 00296ec4..2f28236d 100644 --- a/themes/slime-light.yaml +++ b/themes/slime-light.yaml @@ -1,11 +1,11 @@ name: "slime-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#333333" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/slime-solid-color-theme.yaml b/themes/slime-solid-color-theme.yaml index 20a6be57..461c0a0f 100644 --- a/themes/slime-solid-color-theme.yaml +++ b/themes/slime-solid-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 84.4 black: 19.6 diff --git a/themes/slime.yaml b/themes/slime.yaml index 6e4b5a16..87d07b0b 100644 --- a/themes/slime.yaml +++ b/themes/slime.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/slimy-high-contrast.yaml b/themes/slimy-high-contrast.yaml index a16d09ac..5b8858ab 100644 --- a/themes/slimy-high-contrast.yaml +++ b/themes/slimy-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 87.1 black: 0 diff --git a/themes/slimy-light.yaml b/themes/slimy-light.yaml index ee860ad9..cae96436 100644 --- a/themes/slimy-light.yaml +++ b/themes/slimy-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.5 black: 98.5 diff --git a/themes/slimy.yaml b/themes/slimy.yaml index d068cba6..a3a691f1 100644 --- a/themes/slimy.yaml +++ b/themes/slimy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 84.1 black: 0 diff --git a/themes/slinkwave.yaml b/themes/slinkwave.yaml index e6833e4b..e20253bf 100644 --- a/themes/slinkwave.yaml +++ b/themes/slinkwave.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 295 + pair: null contrast: fg: 100 black: 0 diff --git a/themes/sloth-highlander-theme-1.yaml b/themes/sloth-highlander-theme-1.yaml index 1510ebdb..61112a9a 100644 --- a/themes/sloth-highlander-theme-1.yaml +++ b/themes/sloth-highlander-theme-1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/sloth-highlander-theme-2.yaml b/themes/sloth-highlander-theme-2.yaml deleted file mode 100644 index 46a5610f..00000000 --- a/themes/sloth-highlander-theme-2.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "sloth-highlander-theme-2" -source: - marketplace_id: "fernandoncidade1.sloth-highlander-theme-1" - version: "0.0.3" - installs: 79 - author: "fernandoncidade1" - repo: "https://github.com/fernandoncidade/sloth-highlander-theme-1" - url: "https://marketplace.visualstudio.com/items?itemName=fernandoncidade1.sloth-highlander-theme-1" -colors: - bg: "#0D0E14" - fg: "#F8F8F2" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 278 - contrast: - fg: 102.6 - black: 0 - red: 44.1 - green: 85.5 - yellow: 99.2 - blue: 54.3 - magenta: 55.2 - cyan: 84.6 - white: 102.6 - brightBlack: 28.7 - brightRed: 49.5 - brightGreen: 89.7 - brightYellow: 104.2 - brightBlue: 66.8 - brightMagenta: 63.3 - brightCyan: 97.4 - brightWhite: 107.5 diff --git a/themes/smalltheme-carbon-oled.yaml b/themes/smalltheme-carbon-oled.yaml index 3f6bc034..f788cf19 100644 --- a/themes/smalltheme-carbon-oled.yaml +++ b/themes/smalltheme-carbon-oled.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 100.6 black: 0 diff --git a/themes/smettboi-light.yaml b/themes/smettboi-light.yaml index dcad41f3..332c4071 100644 --- a/themes/smettboi-light.yaml +++ b/themes/smettboi-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 89.8 black: 94.8 diff --git a/themes/smithy-bronze.yaml b/themes/smithy-bronze.yaml deleted file mode 100644 index f7afef95..00000000 --- a/themes/smithy-bronze.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Smithy Bronze" -source: - marketplace_id: "michaelassaf.dark-smithy" - version: "0.1.87" - installs: 208 - author: "Michael Assaf" - repo: "https://github.com/smithy-theme/visual-studio-code" - url: "https://marketplace.visualstudio.com/items?itemName=michaelassaf.dark-smithy" -colors: - bg: "#151716" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 106.9 - black: 0 - red: 26.8 - green: 53 - yellow: 85.7 - blue: 27.5 - magenta: 29.8 - cyan: 47.6 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.6 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90.1 diff --git a/themes/smooth-burn-dark-hard.yaml b/themes/smooth-burn-dark-hard.yaml index c669f143..62c7fcb9 100644 --- a/themes/smooth-burn-dark-hard.yaml +++ b/themes/smooth-burn-dark-hard.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 267 + pair: "Smooth Burn Light Hard" contrast: fg: 83 black: 0 diff --git a/themes/smooth-burn-dark-medium.yaml b/themes/smooth-burn-dark-medium.yaml index 3ee09efe..08a7cf0b 100644 --- a/themes/smooth-burn-dark-medium.yaml +++ b/themes/smooth-burn-dark-medium.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 269 + pair: null contrast: fg: 81.1 black: 0 diff --git a/themes/smooth-burn-dark.yaml b/themes/smooth-burn-dark.yaml index 67d9d20b..fe0631bf 100644 --- a/themes/smooth-burn-dark.yaml +++ b/themes/smooth-burn-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 260 + pair: null contrast: fg: 68.2 black: 0 diff --git a/themes/smooth-burn-light-hard.yaml b/themes/smooth-burn-light-hard.yaml index 3ec2a1b9..3f34fcf7 100644 --- a/themes/smooth-burn-light-hard.yaml +++ b/themes/smooth-burn-light-hard.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 90 + pair: "Smooth Burn Dark Hard" contrast: fg: 86.7 black: 0 diff --git a/themes/snakedye-chocolate.yaml b/themes/snakedye-chocolate.yaml index bd413073..46e15e97 100644 --- a/themes/snakedye-chocolate.yaml +++ b/themes/snakedye-chocolate.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 47 black: 0 diff --git a/themes/snappy-contrast.yaml b/themes/snappy-contrast.yaml index 759c1abf..c43a0e53 100644 --- a/themes/snappy-contrast.yaml +++ b/themes/snappy-contrast.yaml @@ -1,11 +1,11 @@ name: "snappy-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0C0C0C" fg: "#E3E2E0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 89 black: 0 diff --git a/themes/snappy-light.yaml b/themes/snappy-light.yaml index e76695f6..c304d901 100644 --- a/themes/snappy-light.yaml +++ b/themes/snappy-light.yaml @@ -1,11 +1,11 @@ name: "snappy-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#555555" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 85.9 black: 0 diff --git a/themes/snappy.yaml b/themes/snappy.yaml deleted file mode 100644 index 34e9cef3..00000000 --- a/themes/snappy.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "snappy" -source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" -colors: - bg: "#393939" - fg: "#E3E2E0" - black: "#464646" - red: "#BA0E2E" - green: "#4EA1DF" - yellow: "#F66153" - blue: "#808DD3" - magenta: "#F66153" - cyan: "#808DD3" - white: "#EFEFED" - brightBlack: "#6C6C6C" - brightRed: "#F03E5F" - brightGreen: "#A4CFEF" - brightYellow: "#FBBAB4" - brightBlue: "#CCD1ED" - brightMagenta: "#FBBAB4" - brightCyan: "#CCD1ED" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 81.6 - black: 0 - red: 13.9 - green: 40.5 - yellow: 36.9 - blue: 35.6 - magenta: 36.9 - cyan: 35.6 - white: 89.7 - brightBlack: 18 - brightRed: 30.2 - brightGreen: 66.7 - brightYellow: 66.9 - brightBlue: 71.8 - brightMagenta: 66.9 - brightCyan: 71.8 - brightWhite: 100.3 diff --git a/themes/snazzy-light.yaml b/themes/snazzy-light.yaml index d2353215..551dba3f 100644 --- a/themes/snazzy-light.yaml +++ b/themes/snazzy-light.yaml @@ -2,7 +2,7 @@ name: "Snazzy Light" source: marketplace_id: "loilo.snazzy-light" version: "1.4.1" - installs: 161513 + installs: 161547 author: "Florian Reuschel" repo: "https://github.com/loilo/vscode-snazzy-light" url: "https://marketplace.visualstudio.com/items?itemName=loilo.snazzy-light" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 81.8 black: 81.8 diff --git a/themes/snazzy-operator-color-theme-dark-italics.yaml b/themes/snazzy-operator-color-theme-dark-italics.yaml deleted file mode 100644 index 97b86f7f..00000000 --- a/themes/snazzy-operator-color-theme-dark-italics.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "snazzy-operator-color-theme-dark-italics" -source: - marketplace_id: "akarlsten.vscode-snazzy-akarlsten" - version: "1.3.1" - installs: 21430 - author: "akarlsten" - repo: "https://github.com/akarlsten/snazzy-plus" - url: "https://marketplace.visualstudio.com/items?itemName=akarlsten.vscode-snazzy-akarlsten" -colors: - bg: "#141622" - fg: "#EFF0EB" - black: "#141622" - red: "#FF5C57" - green: "#5AF78E" - yellow: "#FFBC58" - blue: "#57C7FF" - magenta: "#FF6AC1" - cyan: "#9AEDFE" - white: "#EFF0EB" - brightBlack: "#585A61" - brightRed: "#FF5C57" - brightGreen: "#5AF78E" - brightYellow: "#FFBC58" - brightBlue: "#57C7FF" - brightMagenta: "#FF6AC1" - brightCyan: "#9AEDFE" - brightWhite: "#EFF0EB" -meta: - mode: "dark" - accent: "red" - hue: 277 - contrast: - fg: 96.7 - black: 0 - red: 44.7 - green: 84.1 - yellow: 72.7 - blue: 65.5 - magenta: 50.9 - cyan: 87.1 - white: 96.7 - brightBlack: 17.1 - brightRed: 44.7 - brightGreen: 84.1 - brightYellow: 72.7 - brightBlue: 65.5 - brightMagenta: 50.9 - brightCyan: 87.1 - brightWhite: 96.7 diff --git a/themes/snazzy-operator-color-theme-italics.yaml b/themes/snazzy-operator-color-theme-italics.yaml index 778519f9..efc809cb 100644 --- a/themes/snazzy-operator-color-theme-italics.yaml +++ b/themes/snazzy-operator-color-theme-italics.yaml @@ -1,11 +1,11 @@ name: "snazzy-operator-color-theme-italics" source: - marketplace_id: "akarlsten.vscode-snazzy-akarlsten" - version: "1.3.1" - installs: 21430 - author: "akarlsten" - repo: "https://github.com/akarlsten/snazzy-plus" - url: "https://marketplace.visualstudio.com/items?itemName=akarlsten.vscode-snazzy-akarlsten" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#282A36" fg: "#EFF0EB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 278 + pair: null contrast: fg: 93.7 black: 0 diff --git a/themes/snazzy-operator-natural.yaml b/themes/snazzy-operator-natural.yaml index 6ad4722f..deea330c 100644 --- a/themes/snazzy-operator-natural.yaml +++ b/themes/snazzy-operator-natural.yaml @@ -2,7 +2,7 @@ name: "Snazzy Operator Natural" source: marketplace_id: "BenCai.snazzy-operator-natural" version: "0.0.10" - installs: 2982 + installs: 2983 author: "Ben Cai" repo: "https://github.com/code0312/VSCode-Theme-Snazzy" url: "https://marketplace.visualstudio.com/items?itemName=BenCai.snazzy-operator-natural" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 93.7 black: 0 diff --git a/themes/snazzy-operator-plus-color-theme.yaml b/themes/snazzy-operator-plus-color-theme.yaml deleted file mode 100644 index 529836e7..00000000 --- a/themes/snazzy-operator-plus-color-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "snazzy-operator-plus-color-theme" -source: - marketplace_id: "bsides.snazzy-operator-plus" - version: "1.2.1" - installs: 10002 - author: "bsides" - repo: "https://github.com/bsides/snazzy-operator-plus" - url: "https://marketplace.visualstudio.com/items?itemName=bsides.snazzy-operator-plus" -colors: - bg: "#282A36" - fg: "#EFF0EB" - black: "#282A36" - red: "#FF5C57" - green: "#5AF78E" - yellow: "#F3F99D" - blue: "#57C7FF" - magenta: "#FF6AC1" - cyan: "#9AEDFE" - white: "#EFF0EB" - brightBlack: "#282A36" - brightRed: "#FF5C57" - brightGreen: "#5AF78E" - brightYellow: "#F3F99D" - brightBlue: "#57C7FF" - brightMagenta: "#FF6AC1" - brightCyan: "#9AEDFE" - brightWhite: "#EFF0EB" -meta: - mode: "dark" - accent: "red" - hue: 278 - contrast: - fg: 93.7 - black: 0 - red: 41.7 - green: 81.1 - yellow: 95.8 - blue: 62.5 - magenta: 48 - cyan: 84.1 - white: 93.7 - brightBlack: 0 - brightRed: 41.7 - brightGreen: 81.1 - brightYellow: 95.8 - brightBlue: 62.5 - brightMagenta: 48 - brightCyan: 84.1 - brightWhite: 93.7 diff --git a/themes/snazzy-solaris.yaml b/themes/snazzy-solaris.yaml index a972762c..f8631b36 100644 --- a/themes/snazzy-solaris.yaml +++ b/themes/snazzy-solaris.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 80.5 black: 80.5 diff --git a/themes/snazzy-vs-theme.yaml b/themes/snazzy-vs-theme.yaml index 7ef27abe..1e122de8 100644 --- a/themes/snazzy-vs-theme.yaml +++ b/themes/snazzy-vs-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 278 + pair: null contrast: fg: 93.7 black: 0 diff --git a/themes/snow-theme.yaml b/themes/snow-theme.yaml index 8fb1e56b..f35c5309 100644 --- a/themes/snow-theme.yaml +++ b/themes/snow-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 53.9 black: 66.3 diff --git a/themes/snowflake-dark-theme.yaml b/themes/snowflake-dark-theme.yaml index cf7f458f..3e38d8b8 100644 --- a/themes/snowflake-dark-theme.yaml +++ b/themes/snowflake-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Snowflake-Dark-Theme" source: marketplace_id: "snowflake107.snowflake-dark" version: "1.0.2" - installs: 4869 + installs: 4870 author: "Snowflake Studio ❄" repo: "https://github.com/DevSnowflake/VSCode-Snowflake" url: "https://marketplace.visualstudio.com/items?itemName=snowflake107.snowflake-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 57.6 black: 0 diff --git a/themes/snowflake-darker-theme.yaml b/themes/snowflake-darker-theme.yaml index d7c3f5c3..811f2570 100644 --- a/themes/snowflake-darker-theme.yaml +++ b/themes/snowflake-darker-theme.yaml @@ -2,7 +2,7 @@ name: "Snowflake-Darker-Theme" source: marketplace_id: "snowflake107.snowflake-dark" version: "1.0.2" - installs: 4869 + installs: 4870 author: "Snowflake Studio ❄" repo: "https://github.com/DevSnowflake/VSCode-Snowflake" url: "https://marketplace.visualstudio.com/items?itemName=snowflake107.snowflake-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 268 + pair: null contrast: fg: 58 black: 0 diff --git a/themes/snoword-dark-soft.yaml b/themes/snoword-dark-soft.yaml index ac5a0b18..06d5761a 100644 --- a/themes/snoword-dark-soft.yaml +++ b/themes/snoword-dark-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Snoword Light Soft" contrast: fg: 79.9 black: 0 diff --git a/themes/snoword-dark.yaml b/themes/snoword-dark.yaml index e7f6b833..6f1d9e53 100644 --- a/themes/snoword-dark.yaml +++ b/themes/snoword-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Snoword Light" contrast: fg: 81.7 black: 0 diff --git a/themes/snoword-light-soft.yaml b/themes/snoword-light-soft.yaml index 20ea7f9e..a5e26dfa 100644 --- a/themes/snoword-light-soft.yaml +++ b/themes/snoword-light-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "Snoword Dark Soft" contrast: fg: 87.4 black: 96.2 diff --git a/themes/snoword-light.yaml b/themes/snoword-light.yaml index 684d305f..f58ff14a 100644 --- a/themes/snoword-light.yaml +++ b/themes/snoword-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "Snoword Dark" contrast: fg: 96.5 black: 105.3 diff --git a/themes/snowpiercer.yaml b/themes/snowpiercer.yaml index f2d44a72..17c114eb 100644 --- a/themes/snowpiercer.yaml +++ b/themes/snowpiercer.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 229 + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/sober-afternoon.yaml b/themes/sober-afternoon.yaml index 6fcca75e..b026edb5 100644 --- a/themes/sober-afternoon.yaml +++ b/themes/sober-afternoon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 257 + pair: null contrast: fg: 90.2 black: 0 diff --git a/themes/sober-deepnight.yaml b/themes/sober-deepnight.yaml index f3a69ab0..64d4975d 100644 --- a/themes/sober-deepnight.yaml +++ b/themes/sober-deepnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 254 + pair: null contrast: fg: 89.4 black: 0 diff --git a/themes/sober-midnight.yaml b/themes/sober-midnight.yaml index 3714ce2f..ec392da6 100644 --- a/themes/sober-midnight.yaml +++ b/themes/sober-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 257 + pair: null contrast: fg: 90.9 black: 0 diff --git a/themes/sober.yaml b/themes/sober.yaml index cf7abe9a..27537e57 100644 --- a/themes/sober.yaml +++ b/themes/sober.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 277 + pair: null contrast: fg: 75.7 black: 0 diff --git a/themes/sobrio-light.yaml b/themes/sobrio-light.yaml index 85fb1105..2e280659 100644 --- a/themes/sobrio-light.yaml +++ b/themes/sobrio-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 103.3 black: 43.2 diff --git a/themes/sobrio.yaml b/themes/sobrio.yaml index 530737ab..98f76f28 100644 --- a/themes/sobrio.yaml +++ b/themes/sobrio.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 105.8 black: 0 diff --git a/themes/soct-color-theme.yaml b/themes/soct-color-theme.yaml index f89ed915..9b613984 100644 --- a/themes/soct-color-theme.yaml +++ b/themes/soct-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 107.2 black: 0 diff --git a/themes/soda.yaml b/themes/soda.yaml index ace82f76..5171d880 100644 --- a/themes/soda.yaml +++ b/themes/soda.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 101.8 black: 102.9 diff --git a/themes/soft-colors.yaml b/themes/soft-colors.yaml index e9ff8d6f..67bd6739 100644 --- a/themes/soft-colors.yaml +++ b/themes/soft-colors.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 297 + pair: null contrast: fg: 59.5 black: 0 diff --git a/themes/soft-dark-2.yaml b/themes/soft-dark-2.yaml deleted file mode 100644 index 515228aa..00000000 --- a/themes/soft-dark-2.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Soft Dark 2" -source: - marketplace_id: "Gerrnperl.soft-color-theme" - version: "0.0.2" - installs: 1894 - author: "Gerrnperl" - repo: "https://github.com/Gerrnperl/vscode-soft-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Gerrnperl.soft-color-theme" -colors: - bg: "#252525" - fg: "#E6FFF3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 101.1 - black: 0 - red: 24.8 - green: 51.1 - yellow: 83.7 - blue: 25.5 - magenta: 27.9 - cyan: 45.6 - white: 88.1 - brightBlack: 20.1 - brightRed: 36.7 - brightGreen: 61.6 - brightYellow: 93.7 - brightBlue: 38.1 - brightMagenta: 43.5 - brightCyan: 53.5 - brightWhite: 88.1 diff --git a/themes/soft-era-ellite-edit.yaml b/themes/soft-era-ellite-edit.yaml deleted file mode 100644 index 06a01b8d..00000000 --- a/themes/soft-era-ellite-edit.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "soft era (ellite edit)" -source: - marketplace_id: "ellitedev.soft-era-edit" - version: "1.0.1" - installs: 1594 - author: "ellitedev" - repo: "https://github.com/ellitedev/soft-era-vs-code-edit" - url: "https://marketplace.visualstudio.com/items?itemName=ellitedev.soft-era-edit" -colors: - bg: "#F9F5F5" - fg: "#C29BA3" - black: "#4A4543" - red: "#DB90A7" - green: "#87B6B6" - yellow: "#FFB4B8" - blue: "#32ABDE" - magenta: "#BE88D9" - cyan: "#958AC5" - white: "#F1ECEE" - brightBlack: "#6F5573" - brightRed: "#EEAABE" - brightGreen: "#98C4BA" - brightYellow: "#E7D59A" - brightBlue: "#82B3E2" - brightMagenta: "#CE9AE8" - brightCyan: "#B4ADDF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 43 - black: 86.4 - red: 42.6 - green: 38.5 - yellow: 24.3 - blue: 45.2 - magenta: 47.1 - cyan: 52.8 - white: 0 - brightBlack: 76.8 - brightRed: 30.3 - brightGreen: 31.2 - brightYellow: 16.4 - brightBlue: 38 - brightMagenta: 38.4 - brightCyan: 35.7 - brightWhite: 0 diff --git a/themes/soft-kawaii-theme-1-color-theme.yaml b/themes/soft-kawaii-theme-1-color-theme.yaml index 63fa4be3..3915e283 100644 --- a/themes/soft-kawaii-theme-1-color-theme.yaml +++ b/themes/soft-kawaii-theme-1-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 344 + pair: null contrast: fg: 63.3 black: 0 diff --git a/themes/soft-light-2.yaml b/themes/soft-light-2.yaml deleted file mode 100644 index 74010960..00000000 --- a/themes/soft-light-2.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Soft Light 2" -source: - marketplace_id: "Gerrnperl.soft-color-theme" - version: "0.0.2" - installs: 1894 - author: "Gerrnperl" - repo: "https://github.com/Gerrnperl/vscode-soft-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Gerrnperl.soft-color-theme" -colors: - bg: "#F8FFF3" - fg: "#5A5A5A" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - contrast: - fg: 82.5 - black: 104.7 - red: 72.6 - green: 47.9 - yellow: 56.5 - blue: 84.7 - magenta: 73.2 - cyan: 59.2 - white: 84.5 - brightBlack: 77.4 - brightRed: 72.6 - brightGreen: 39.5 - brightYellow: 39.6 - brightBlue: 84.7 - brightMagenta: 73.2 - brightCyan: 59.2 - brightWhite: 47.1 diff --git a/themes/soft-material.yaml b/themes/soft-material.yaml index 4c22f6c5..ac0dbb79 100644 --- a/themes/soft-material.yaml +++ b/themes/soft-material.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 45 black: 45 diff --git a/themes/soft-midnight.yaml b/themes/soft-midnight.yaml index 2f8208cb..f0d1a4a0 100644 --- a/themes/soft-midnight.yaml +++ b/themes/soft-midnight.yaml @@ -2,7 +2,7 @@ name: "Soft Midnight" source: marketplace_id: "JeanCastle.soft-midnight" version: "0.0.2" - installs: 199 + installs: 200 author: "Jean Castle" repo: "https://github.com/jeangoo/soft-midnight" url: "https://marketplace.visualstudio.com/items?itemName=JeanCastle.soft-midnight" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 280 + pair: null contrast: fg: 81.7 black: 0 diff --git a/themes/soft-mood-theme.yaml b/themes/soft-mood-theme.yaml index 18e6d447..b46104ca 100644 --- a/themes/soft-mood-theme.yaml +++ b/themes/soft-mood-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 207 + pair: null contrast: fg: 71 black: 0 diff --git a/themes/soft-sight.yaml b/themes/soft-sight.yaml index 730648c9..dcfade29 100644 --- a/themes/soft-sight.yaml +++ b/themes/soft-sight.yaml @@ -2,7 +2,7 @@ name: "soft sight" source: marketplace_id: "sajibsrs.soft-sight" version: "0.3.1" - installs: 11777 + installs: 11779 author: "Sajidur Rahman" repo: "https://github.com/sajibsrs/soft-sight" url: "https://marketplace.visualstudio.com/items?itemName=sajibsrs.soft-sight" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 70 black: 0 diff --git a/themes/soft-sunset-dark.yaml b/themes/soft-sunset-dark.yaml index 63d087a9..57b49949 100644 --- a/themes/soft-sunset-dark.yaml +++ b/themes/soft-sunset-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 78 + pair: null contrast: fg: 66.5 black: 0 diff --git a/themes/soft-yellow-light.yaml b/themes/soft-yellow-light.yaml index 64aab81d..9e73ea5b 100644 --- a/themes/soft-yellow-light.yaml +++ b/themes/soft-yellow-light.yaml @@ -2,7 +2,7 @@ name: "Soft Yellow Light" source: marketplace_id: "SwaggyPinguin.soft-yellow-light" version: "0.0.6" - installs: 2281 + installs: 2282 author: "SwaggyPinguin" repo: "https://github.com/SwaggyPinguin/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SwaggyPinguin.soft-yellow-light" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 73 black: 98.9 diff --git a/themes/soho-color-theme.yaml b/themes/soho-color-theme.yaml index 221ff50e..149cfa1e 100644 --- a/themes/soho-color-theme.yaml +++ b/themes/soho-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 88.7 black: 69.8 diff --git a/themes/soil-theme.yaml b/themes/soil-theme.yaml index 848fd7e8..e7b99b5c 100644 --- a/themes/soil-theme.yaml +++ b/themes/soil-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 50.8 black: 0 diff --git a/themes/solar-drift-dark-theme.yaml b/themes/solar-drift-dark-theme.yaml index f14ce6fe..75274343 100644 --- a/themes/solar-drift-dark-theme.yaml +++ b/themes/solar-drift-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 36.3 black: 0 diff --git a/themes/solar-drift-darker-theme.yaml b/themes/solar-drift-darker-theme.yaml index f69042eb..7a231bac 100644 --- a/themes/solar-drift-darker-theme.yaml +++ b/themes/solar-drift-darker-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: null contrast: fg: 37.1 black: 0 diff --git a/themes/solar-flare.yaml b/themes/solar-flare.yaml index 62adbb55..6c688ead 100644 --- a/themes/solar-flare.yaml +++ b/themes/solar-flare.yaml @@ -1,49 +1,50 @@ -name: "Solar Flare" +name: "Solar-Flare" source: - marketplace_id: "CodewithBismillah.chroma-library" - version: "1.2.1" - installs: 358 - author: "Code with Bismillah" - repo: "https://github.com/mubashir1837/Chroma-Library" - url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" colors: - bg: "#1A0A00" - fg: "#FFAA40" - black: "#000000" - red: "#FF4040" - green: "#40FF40" - yellow: "#FFFF40" - blue: "#4040FF" - magenta: "#FF40FF" - cyan: "#40FFFF" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#FF4040" - brightGreen: "#40FF40" - brightYellow: "#FFFF40" - brightBlue: "#4040FF" - brightMagenta: "#FF40FF" - brightCyan: "#40FFFF" - brightWhite: "#FFFFFF" + bg: "#0C0A09" + fg: "#FAFAF9" + black: "#0C0A09" + red: "#DC2626" + green: "#29C3A0" + yellow: "#D29922" + blue: "#EA580C" + magenta: "#EA580C" + cyan: "#29C3A0" + white: "#FAFAF9" + brightBlack: "#0C0A09" + brightRed: "#DC2626" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#EA580C" + brightMagenta: "#EA580C" + brightCyan: "#29C3A0" + brightWhite: "#FAFAF9" meta: mode: "dark" - accent: "pink" - hue: 62 + accent: "orange" + hue: null + pair: null contrast: - fg: 66.3 + fg: 104.4 black: 0 - red: 40.7 - green: 86.9 - yellow: 102.5 - blue: 21.8 - magenta: 48.7 - cyan: 92.4 - white: 107.5 + red: 30 + green: 58.5 + yellow: 52.5 + blue: 39.4 + magenta: 39.4 + cyan: 58.5 + white: 104.4 brightBlack: 0 - brightRed: 40.7 - brightGreen: 86.9 - brightYellow: 102.5 - brightBlue: 21.8 - brightMagenta: 48.7 - brightCyan: 92.4 - brightWhite: 107.5 + brightRed: 30 + brightGreen: 58.5 + brightYellow: 52.5 + brightBlue: 39.4 + brightMagenta: 39.4 + brightCyan: 58.5 + brightWhite: 104.4 diff --git a/themes/solarflare-contrast.yaml b/themes/solarflare-contrast.yaml index ede8b2b7..14108f2d 100644 --- a/themes/solarflare-contrast.yaml +++ b/themes/solarflare-contrast.yaml @@ -1,11 +1,11 @@ name: "solarflare-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#000000" fg: "#E3E2E0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 89.2 black: 0 diff --git a/themes/solarflare-light.yaml b/themes/solarflare-light.yaml index 202bf79e..8a19516b 100644 --- a/themes/solarflare-light.yaml +++ b/themes/solarflare-light.yaml @@ -1,11 +1,11 @@ name: "solarflare-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#222222" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.9 black: 0 diff --git a/themes/solarflare.yaml b/themes/solarflare.yaml index ce5e71f9..ccd348d2 100644 --- a/themes/solarflare.yaml +++ b/themes/solarflare.yaml @@ -1,11 +1,11 @@ name: "solarflare" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#222222" fg: "#E3E2E0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.8 black: 0 diff --git a/themes/solaris.yaml b/themes/solaris.yaml index 8e5d4141..bcbefb59 100644 --- a/themes/solaris.yaml +++ b/themes/solaris.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 28.9 black: 0 diff --git a/themes/solarized-abydos.yaml b/themes/solarized-abydos.yaml deleted file mode 100644 index 50162c83..00000000 --- a/themes/solarized-abydos.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Solarized (Abydos)" -source: - marketplace_id: "fallenwood.theme-solarized-abydos" - version: "0.0.1" - installs: 178 - author: "fallenwood" - repo: "https://github.com/fallenwood/solarized-light-abydos" - url: "https://marketplace.visualstudio.com/items?itemName=fallenwood.theme-solarized-abydos" -colors: - bg: "#FDF6E3" - fg: "#657B83" - black: "#073642" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#002B36" - brightRed: "#CB4B16" - brightGreen: "#586E75" - brightYellow: "#657B83" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#93A1A1" - brightWhite: "#FDF6E3" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 65.7 - black: 93.7 - red: 65.3 - green: 53.8 - yellow: 53.8 - blue: 58.7 - magenta: 65 - cyan: 53.1 - white: 0 - brightBlack: 96.4 - brightRed: 65.8 - brightGreen: 71.6 - brightYellow: 65.7 - brightBlue: 53.5 - brightMagenta: 65 - brightCyan: 46.7 - brightWhite: 0 diff --git a/themes/solarized-complete-dark.yaml b/themes/solarized-complete-dark.yaml index b5b52f85..c2e399aa 100644 --- a/themes/solarized-complete-dark.yaml +++ b/themes/solarized-complete-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: null contrast: fg: 39.5 black: 0 diff --git a/themes/solarized-complete-light.yaml b/themes/solarized-complete-light.yaml index f7f2515f..25b26e67 100644 --- a/themes/solarized-complete-light.yaml +++ b/themes/solarized-complete-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 65.7 black: 0 diff --git a/themes/solarized-custom-dark.yaml b/themes/solarized-custom-dark.yaml index e1d6d219..7c388602 100644 --- a/themes/solarized-custom-dark.yaml +++ b/themes/solarized-custom-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 282 + pair: null contrast: fg: 36.7 black: 0 diff --git a/themes/solarized-custom-light.yaml b/themes/solarized-custom-light.yaml index c66b100a..5e27457b 100644 --- a/themes/solarized-custom-light.yaml +++ b/themes/solarized-custom-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 83 + pair: null contrast: fg: 50.7 black: 0 diff --git a/themes/solarized-dark-theme.yaml b/themes/solarized-dark-theme.yaml index 8c313245..2b4ef563 100644 --- a/themes/solarized-dark-theme.yaml +++ b/themes/solarized-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Solarized Dark Theme" source: marketplace_id: "mjlaufer.vscode-themes" version: "0.1.0" - installs: 1787 + installs: 1788 author: "mjlaufer" repo: "https://github.com/mjlaufer/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=mjlaufer.vscode-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 65.7 black: 0 diff --git a/themes/solarized-dark.yaml b/themes/solarized-dark.yaml index 6cc4eae8..4e1a8206 100644 --- a/themes/solarized-dark.yaml +++ b/themes/solarized-dark.yaml @@ -1,49 +1,50 @@ name: "Solarized (dark)" source: - marketplace_id: "dalen.vscode-oksolar" - version: "0.0.2" - installs: 645 - author: "dalen" - repo: "https://github.com/dalen/vscode-oksolar" - url: "https://marketplace.visualstudio.com/items?itemName=dalen.vscode-oksolar" + marketplace_id: "QuarkQuartet-IRW.doom-solarized" + version: "0.0.1" + installs: 472 + author: "QuarkQuartet" + repo: "https://github.com/quarkquartet/doom-solarized-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=QuarkQuartet-IRW.doom-solarized" colors: - bg: "#002D38" - fg: "#98A8A8" - black: "#093946" - red: "#F23749" - green: "#819500" - yellow: "#AC8300" - blue: "#2B90D8" - magenta: "#DD459D" - cyan: "#259D94" - white: "#F1E9D2" - brightBlack: "#002D38" - brightRed: "#D56500" - brightGreen: "#5B7279" - brightYellow: "#657377" - brightBlue: "#98A8A8" - brightMagenta: "#7D80D1" - brightCyan: "#8FAAAB" - brightWhite: "#F8F5EC" + bg: "#002B36" + fg: "#839496" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" meta: mode: "dark" accent: "orange" - hue: 219 + hue: 220 + pair: null contrast: - fg: 49.6 + fg: 39.5 black: 0 - red: 33.3 - green: 37 - yellow: 35.6 - blue: 36.3 - magenta: 32.7 - cyan: 37.7 - white: 89.9 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 89.5 brightBlack: 0 - brightRed: 34.1 - brightGreen: 22.8 - brightYellow: 23.8 - brightBlue: 49.6 - brightMagenta: 34.7 - brightCyan: 49.7 - brightWhite: 97.5 + brightRed: 27.2 + brightGreen: 21.5 + brightYellow: 27.3 + brightBlue: 39.5 + brightMagenta: 28 + brightCyan: 46.4 + brightWhite: 98.6 diff --git a/themes/solarized-deep.yaml b/themes/solarized-deep.yaml index 35f9b452..2303672d 100644 --- a/themes/solarized-deep.yaml +++ b/themes/solarized-deep.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 222 + pair: null contrast: fg: 49.8 black: 0 diff --git a/themes/solarized-light-functional.yaml b/themes/solarized-light-functional.yaml index 31368705..50dc00bb 100644 --- a/themes/solarized-light-functional.yaml +++ b/themes/solarized-light-functional.yaml @@ -2,7 +2,7 @@ name: "Solarized-light-functional" source: marketplace_id: "veggiemonk.solarized-light-functional" version: "2.0.0" - installs: 3698 + installs: 3699 author: "veggiemonk" repo: "https://github.com/veggiemonk/theme-solarized-light-functional" url: "https://marketplace.visualstudio.com/items?itemName=veggiemonk.solarized-light-functional" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 71.6 black: 93.7 diff --git a/themes/solarized-light-n.yaml b/themes/solarized-light-n.yaml index c2f34a50..f8b70953 100644 --- a/themes/solarized-light-n.yaml +++ b/themes/solarized-light-n.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 53.5 black: 71.6 diff --git a/themes/solarized-light.yaml b/themes/solarized-light.yaml index 9d9b8edf..6e604d6c 100644 --- a/themes/solarized-light.yaml +++ b/themes/solarized-light.yaml @@ -1,14 +1,14 @@ name: "Solarized (light)" source: - marketplace_id: "zicong-zhang1996.theme-diy" - version: "2.0.0" - installs: 99 - author: "zicong-zhang1996" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=zicong-zhang1996.theme-diy" + marketplace_id: "Braver.vscode-solarized" + version: "2.1.0" + installs: 38112 + author: "Koen Lageveen" + repo: "https://github.com/braver/vscode-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=Braver.vscode-solarized" colors: - bg: "#FAF8E8" - fg: "#000000" + bg: "#FDF6E3" + fg: "#657B83" black: "#073642" red: "#DC322F" green: "#859900" @@ -17,33 +17,34 @@ colors: magenta: "#D33682" cyan: "#2AA198" white: "#EEE8D5" - brightBlack: "#586E75" + brightBlack: "#002B36" brightRed: "#CB4B16" brightGreen: "#586E75" brightYellow: "#657B83" brightBlue: "#839496" brightMagenta: "#6C71C4" brightCyan: "#93A1A1" - brightWhite: "#EEE8D5" + brightWhite: "#FDF6E3" meta: mode: "light" accent: "orange" hue: null + pair: null contrast: - fg: 101.5 - black: 94.4 - red: 65.9 - green: 54.5 - yellow: 54.5 - blue: 59.3 - magenta: 65.7 - cyan: 53.7 + fg: 65.7 + black: 93.7 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 white: 0 - brightBlack: 72.2 - brightRed: 66.4 - brightGreen: 72.2 - brightYellow: 66.3 - brightBlue: 54.2 - brightMagenta: 65.6 - brightCyan: 47.4 + brightBlack: 96.4 + brightRed: 65.8 + brightGreen: 71.6 + brightYellow: 65.7 + brightBlue: 53.5 + brightMagenta: 65 + brightCyan: 46.7 brightWhite: 0 diff --git a/themes/solarized-lilac.yaml b/themes/solarized-lilac.yaml index 16bb2f43..b1493119 100644 --- a/themes/solarized-lilac.yaml +++ b/themes/solarized-lilac.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 78.7 black: 78.7 diff --git a/themes/solarized-monokai-dark.yaml b/themes/solarized-monokai-dark.yaml index fc197973..b37e1b03 100644 --- a/themes/solarized-monokai-dark.yaml +++ b/themes/solarized-monokai-dark.yaml @@ -2,7 +2,7 @@ name: "Solarized Monokai (dark)" source: marketplace_id: "linjing.solarized-dark-monokai" version: "1.0.0" - installs: 5 + installs: 6 author: "linjing" repo: "https://github.com/quickmove/solarized-dark-monokai" url: "https://marketplace.visualstudio.com/items?itemName=linjing.solarized-dark-monokai" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 221 + pair: null contrast: fg: 40.2 black: 0 diff --git a/themes/solarized-neue-bright.yaml b/themes/solarized-neue-bright.yaml index 3c972f2f..eaf452fc 100644 --- a/themes/solarized-neue-bright.yaml +++ b/themes/solarized-neue-bright.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 243 + pair: null contrast: fg: 57.8 black: 46.5 diff --git a/themes/solarized-neue.yaml b/themes/solarized-neue.yaml index 21a98934..64603433 100644 --- a/themes/solarized-neue.yaml +++ b/themes/solarized-neue.yaml @@ -7,43 +7,44 @@ source: repo: "https://github.com/pmsaue0/solarized-neue" url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" colors: - bg: "#041E27" + bg: "#042029" fg: "#839496" - black: "#93A1A1" - red: "#DE3D3B" - green: "#08916A" - yellow: "#E0AF02" - blue: "#288ED7" - magenta: "#D6438A" - cyan: "#2AA298" - white: "#212121" - brightBlack: "#93A1A1" - brightRed: "#DE3D3B" - brightGreen: "#08916A" - brightYellow: "#DAAA01" - brightBlue: "#288ED7" - brightMagenta: "#D6438A" - brightCyan: "#2AA298" - brightWhite: "#212121" + black: "#4A4A4A" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "orange" - hue: 224 + accent: "red" + hue: 223 + pair: null contrast: - fg: 41.4 - black: 48.3 - red: 31.4 - green: 33.4 - yellow: 61.4 - blue: 37.6 - magenta: 32.4 - cyan: 42.3 - white: 0 - brightBlack: 48.3 - brightRed: 31.4 - brightGreen: 33.4 - brightYellow: 58.5 - brightBlue: 37.6 - brightMagenta: 32.4 - brightCyan: 42.3 - brightWhite: 0 + fg: 41.2 + black: 10.1 + red: 42.8 + green: 83.4 + yellow: 78.1 + blue: 55.1 + magenta: 52.9 + cyan: 77.4 + white: 106.1 + brightBlack: 10.1 + brightRed: 42.8 + brightGreen: 83.4 + brightYellow: 78.1 + brightBlue: 55.1 + brightMagenta: 52.9 + brightCyan: 77.4 + brightWhite: 106.1 diff --git a/themes/solarized-pro.yaml b/themes/solarized-pro.yaml index 1d8116e8..d8ef3ad7 100644 --- a/themes/solarized-pro.yaml +++ b/themes/solarized-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: null contrast: fg: 39.5 black: 0 diff --git a/themes/solarized-right.yaml b/themes/solarized-right.yaml index bcd62f67..294a8690 100644 --- a/themes/solarized-right.yaml +++ b/themes/solarized-right.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 101.3 black: 69.5 diff --git a/themes/solarized-ss-light.yaml b/themes/solarized-ss-light.yaml index e075b68c..727eced3 100644 --- a/themes/solarized-ss-light.yaml +++ b/themes/solarized-ss-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.6 black: 64.1 diff --git a/themes/solarized-yuki.yaml b/themes/solarized-yuki.yaml index e6fa7e1a..4837657a 100644 --- a/themes/solarized-yuki.yaml +++ b/themes/solarized-yuki.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 93.1 black: 93.1 diff --git a/themes/solarized.yaml b/themes/solarized.yaml index c6b57885..2517a21c 100644 --- a/themes/solarized.yaml +++ b/themes/solarized.yaml @@ -2,7 +2,7 @@ name: "Solarized+" source: marketplace_id: "SzilardLeventeFarkas.solarizedplus" version: "1.0.2" - installs: 4826 + installs: 4827 author: "Szilard Levente Farkas" repo: "https://github.com/CrHasher/SolarizedPlus" url: "https://marketplace.visualstudio.com/items?itemName=SzilardLeventeFarkas.solarizedplus" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: null contrast: fg: 39.5 black: 0 diff --git a/themes/solarus.yaml b/themes/solarus.yaml index e5137939..dd03d086 100644 --- a/themes/solarus.yaml +++ b/themes/solarus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 99 black: 0 diff --git a/themes/solaryss.yaml b/themes/solaryss.yaml index ac7f8d3a..8d842b2b 100644 --- a/themes/solaryss.yaml +++ b/themes/solaryss.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 242 + pair: null contrast: fg: 31.6 black: 0 diff --git a/themes/solavsce-packagera.yaml b/themes/solavsce-packagera.yaml index 36878a9b..0d65128c 100644 --- a/themes/solavsce-packagera.yaml +++ b/themes/solavsce-packagera.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 346 + pair: null contrast: fg: 32 black: 0 diff --git a/themes/solid-dark-theme.yaml b/themes/solid-dark-theme.yaml index 1544e85b..2243533a 100644 --- a/themes/solid-dark-theme.yaml +++ b/themes/solid-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 98.8 black: 27.3 diff --git a/themes/solitude-dark.yaml b/themes/solitude-dark.yaml index 16f2a22c..6a6ead26 100644 --- a/themes/solitude-dark.yaml +++ b/themes/solitude-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 281 + pair: null contrast: fg: 99.7 black: 0 diff --git a/themes/solitude-soft.yaml b/themes/solitude-soft.yaml index ca63a960..8b65fffc 100644 --- a/themes/solitude-soft.yaml +++ b/themes/solitude-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 279 + pair: null contrast: fg: 99.1 black: 0 diff --git a/themes/solo-leveling.yaml b/themes/solo-leveling.yaml index 3e306e8f..cd02f28f 100644 --- a/themes/solo-leveling.yaml +++ b/themes/solo-leveling.yaml @@ -2,7 +2,7 @@ name: "Solo Leveling" source: marketplace_id: "Amanpandey.solo-leveling-theme" version: "0.1.0" - installs: 4005 + installs: 4010 author: "Amanpandey" repo: "https://github.com/losercodes/solo-leveling-theme" url: "https://marketplace.visualstudio.com/items?itemName=Amanpandey.solo-leveling-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 270 + pair: null contrast: fg: 87.7 black: 0 diff --git a/themes/solstice-estival.yaml b/themes/solstice-estival.yaml index 5e075a8a..51107e5d 100644 --- a/themes/solstice-estival.yaml +++ b/themes/solstice-estival.yaml @@ -1,11 +1,11 @@ name: "Solstice Estival" source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1834 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + marketplace_id: "kev1nweng.solstice" + version: "0.4.2" + installs: 38 + author: "小翁同学" + repo: "https://github.com/kev1nweng/solstice" + url: "https://marketplace.visualstudio.com/items?itemName=kev1nweng.solstice" colors: bg: "#F0EEE7" fg: "#1B3C3C" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 87.1 black: 88.9 diff --git a/themes/solstice-hibernal.yaml b/themes/solstice-hibernal.yaml index 7cd7f16a..5e202337 100644 --- a/themes/solstice-hibernal.yaml +++ b/themes/solstice-hibernal.yaml @@ -1,11 +1,11 @@ name: "Solstice Hibernal" source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1834 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + marketplace_id: "kev1nweng.solstice" + version: "0.4.2" + installs: 38 + author: "小翁同学" + repo: "https://github.com/kev1nweng/solstice" + url: "https://marketplace.visualstudio.com/items?itemName=kev1nweng.solstice" colors: bg: "#191D1B" fg: "#C4AAA0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 57.6 black: 0 diff --git a/themes/somber.yaml b/themes/somber.yaml index b32e7bf6..ac42ed43 100644 --- a/themes/somber.yaml +++ b/themes/somber.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 60.7 black: 0 diff --git a/themes/something-theme.yaml b/themes/something-theme.yaml index 286a96fd..d23d0fae 100644 --- a/themes/something-theme.yaml +++ b/themes/something-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.1 black: 0 diff --git a/themes/somewhere-on-a-beach.yaml b/themes/somewhere-on-a-beach.yaml index f16e61c9..4bf274a6 100644 --- a/themes/somewhere-on-a-beach.yaml +++ b/themes/somewhere-on-a-beach.yaml @@ -2,7 +2,7 @@ name: "somewhere on a beach..." source: marketplace_id: "BlakeNoll.somewhere-on-a-beach" version: "1.3.0" - installs: 574 + installs: 575 author: "Blake Noll" repo: "https://github.com/blakenoll/some-where-on-a-beach" url: "https://marketplace.visualstudio.com/items?itemName=BlakeNoll.somewhere-on-a-beach" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/sonokai-andromeda.yaml b/themes/sonokai-andromeda.yaml index a147079b..c1657304 100644 --- a/themes/sonokai-andromeda.yaml +++ b/themes/sonokai-andromeda.yaml @@ -1,11 +1,11 @@ name: "Sonokai Andromeda" source: - marketplace_id: "sainnhe.sonokai" - version: "0.2.9" - installs: 24096 - author: "sainnhe" - repo: "https://github.com/sainnhe/sonokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" + marketplace_id: "slava0135.sonokai-pro" + version: "0.3.0" + installs: 92 + author: "slava0135" + repo: "https://github.com/slava0135/sonokai-pro-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=slava0135.sonokai-pro" colors: bg: "#2B2D3A" fg: "#E1E3E4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 278 + pair: null contrast: fg: 84.9 black: 0 diff --git a/themes/sonokai-atlantis.yaml b/themes/sonokai-atlantis.yaml index 4cd28ae9..3c8121e8 100644 --- a/themes/sonokai-atlantis.yaml +++ b/themes/sonokai-atlantis.yaml @@ -1,11 +1,11 @@ name: "Sonokai Atlantis" source: - marketplace_id: "sainnhe.sonokai" - version: "0.2.9" - installs: 24096 - author: "sainnhe" - repo: "https://github.com/sainnhe/sonokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" + marketplace_id: "slava0135.sonokai-pro" + version: "0.3.0" + installs: 92 + author: "slava0135" + repo: "https://github.com/slava0135/sonokai-pro-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=slava0135.sonokai-pro" colors: bg: "#2A2F38" fg: "#E1E3E4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: null contrast: fg: 84.7 black: 7.3 diff --git a/themes/sonokai-espresso.yaml b/themes/sonokai-espresso.yaml index 7ab975d2..7aa8a2c0 100644 --- a/themes/sonokai-espresso.yaml +++ b/themes/sonokai-espresso.yaml @@ -1,11 +1,11 @@ name: "Sonokai Espresso" source: - marketplace_id: "sainnhe.sonokai" - version: "0.2.9" - installs: 24096 - author: "sainnhe" - repo: "https://github.com/sainnhe/sonokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" + marketplace_id: "slava0135.sonokai-pro" + version: "0.3.0" + installs: 92 + author: "slava0135" + repo: "https://github.com/slava0135/sonokai-pro-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=slava0135.sonokai-pro" colors: bg: "#312C2B" fg: "#E4E3E1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 85.3 black: 0 diff --git a/themes/sonokai-maia.yaml b/themes/sonokai-maia.yaml index 75dc187c..0dec815e 100644 --- a/themes/sonokai-maia.yaml +++ b/themes/sonokai-maia.yaml @@ -1,11 +1,11 @@ name: "Sonokai Maia" source: - marketplace_id: "sainnhe.sonokai" - version: "0.2.9" - installs: 24096 - author: "sainnhe" - repo: "https://github.com/sainnhe/sonokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" + marketplace_id: "slava0135.sonokai-pro" + version: "0.3.0" + installs: 92 + author: "slava0135" + repo: "https://github.com/slava0135/sonokai-pro-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=slava0135.sonokai-pro" colors: bg: "#273136" fg: "#E1E2E3" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 230 + pair: null contrast: fg: 84 black: 0 diff --git a/themes/sonokai-shusia.yaml b/themes/sonokai-shusia.yaml index 1d76f9d9..cf22d463 100644 --- a/themes/sonokai-shusia.yaml +++ b/themes/sonokai-shusia.yaml @@ -1,11 +1,11 @@ name: "Sonokai Shusia" source: - marketplace_id: "sainnhe.sonokai" - version: "0.2.9" - installs: 24096 - author: "sainnhe" - repo: "https://github.com/sainnhe/sonokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" + marketplace_id: "slava0135.sonokai-pro" + version: "0.3.0" + installs: 92 + author: "slava0135" + repo: "https://github.com/slava0135/sonokai-pro-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=slava0135.sonokai-pro" colors: bg: "#2D2A2E" fg: "#E3E1E4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 84.9 black: 0 diff --git a/themes/sonokai.yaml b/themes/sonokai.yaml index 7c546a74..906273cb 100644 --- a/themes/sonokai.yaml +++ b/themes/sonokai.yaml @@ -1,11 +1,11 @@ name: "Sonokai" source: - marketplace_id: "sainnhe.sonokai" - version: "0.2.9" - installs: 24096 - author: "sainnhe" - repo: "https://github.com/sainnhe/sonokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" + marketplace_id: "slava0135.sonokai-pro" + version: "0.3.0" + installs: 92 + author: "slava0135" + repo: "https://github.com/slava0135/sonokai-pro-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=slava0135.sonokai-pro" colors: bg: "#2C2E34" fg: "#E2E2E3" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 271 + pair: null contrast: fg: 84.5 black: 0 diff --git a/themes/sonora-deep-signal-faded.yaml b/themes/sonora-deep-signal-faded.yaml index 3e96054d..0c0374ab 100644 --- a/themes/sonora-deep-signal-faded.yaml +++ b/themes/sonora-deep-signal-faded.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 258 + pair: null contrast: fg: 81.5 black: 8.5 diff --git a/themes/sonora-deep-signal-vibrant.yaml b/themes/sonora-deep-signal-vibrant.yaml index 637ccfce..b6c20453 100644 --- a/themes/sonora-deep-signal-vibrant.yaml +++ b/themes/sonora-deep-signal-vibrant.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 258 + pair: null contrast: fg: 81.5 black: 0 diff --git a/themes/sonora-deep-signal.yaml b/themes/sonora-deep-signal.yaml index 7348cac4..cb61ad7e 100644 --- a/themes/sonora-deep-signal.yaml +++ b/themes/sonora-deep-signal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 258 + pair: null contrast: fg: 81.5 black: 8.5 diff --git a/themes/sonora-tides.yaml b/themes/sonora-tides.yaml index 871bd7e9..f4716491 100644 --- a/themes/sonora-tides.yaml +++ b/themes/sonora-tides.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 80.1 black: 9.3 diff --git a/themes/soothing-dark.yaml b/themes/soothing-dark.yaml index 29f86f68..3c1e2cff 100644 --- a/themes/soothing-dark.yaml +++ b/themes/soothing-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 260 + pair: "Soothing Light" contrast: fg: 70.5 black: 0 diff --git a/themes/soothing-light.yaml b/themes/soothing-light.yaml index 50dcd3a7..078ce73f 100644 --- a/themes/soothing-light.yaml +++ b/themes/soothing-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Soothing Dark" contrast: fg: 92.6 black: 92.6 diff --git a/themes/soothing.yaml b/themes/soothing.yaml index a10648aa..97a5a504 100644 --- a/themes/soothing.yaml +++ b/themes/soothing.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 69.2 black: 0 diff --git a/themes/sorcerer.yaml b/themes/sorcerer.yaml index f0c1b953..4e39c5d8 100644 --- a/themes/sorcerer.yaml +++ b/themes/sorcerer.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 66.9 black: 0 diff --git a/themes/soudev-mega-dark.yaml b/themes/soudev-mega-dark.yaml index f2e43ae4..ea3554fe 100644 --- a/themes/soudev-mega-dark.yaml +++ b/themes/soudev-mega-dark.yaml @@ -2,7 +2,7 @@ name: "Soudev mega dark" source: marketplace_id: "soudev.soudev-theme" version: "1.0.3" - installs: 11535 + installs: 11536 author: "soudev" repo: "https://github.com/jefersonpassos/soudev-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 239 + pair: null contrast: fg: 107.6 black: 0 diff --git a/themes/soudev-purple-andromeda.yaml b/themes/soudev-purple-andromeda.yaml index 8ee067d6..bd6f96c0 100644 --- a/themes/soudev-purple-andromeda.yaml +++ b/themes/soudev-purple-andromeda.yaml @@ -2,7 +2,7 @@ name: "Soudev Purple Andromeda" source: marketplace_id: "soudev.soudev-theme" version: "1.0.3" - installs: 11535 + installs: 11536 author: "soudev" repo: "https://github.com/jefersonpassos/soudev-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 311 + pair: null contrast: fg: 103.9 black: 0 diff --git a/themes/soudev-semi-dark-andromeda.yaml b/themes/soudev-semi-dark-andromeda.yaml index 22d3fe47..b2a3dc1d 100644 --- a/themes/soudev-semi-dark-andromeda.yaml +++ b/themes/soudev-semi-dark-andromeda.yaml @@ -2,7 +2,7 @@ name: "Soudev semi dark Andromeda" source: marketplace_id: "soudev.soudev-theme" version: "1.0.3" - installs: 11535 + installs: 11536 author: "soudev" repo: "https://github.com/jefersonpassos/soudev-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 310 + pair: null contrast: fg: 104.8 black: 0 diff --git a/themes/soul-theme.yaml b/themes/soul-theme.yaml index d7ee9849..13b40758 100644 --- a/themes/soul-theme.yaml +++ b/themes/soul-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 220 + pair: null contrast: fg: 77 black: 0 diff --git a/themes/souls-theme.yaml b/themes/souls-theme.yaml index e799de56..7a2c7e6b 100644 --- a/themes/souls-theme.yaml +++ b/themes/souls-theme.yaml @@ -2,7 +2,7 @@ name: "Souls Theme" source: marketplace_id: "Gussv4z.souls-theme" version: "0.1.3" - installs: 16 + installs: 17 author: "Gussv4z" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Gussv4z.souls-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 115 + pair: null contrast: fg: 87.9 black: 0 diff --git a/themes/soup-contrast.yaml b/themes/soup-contrast.yaml index ef8cd0d1..088a9822 100644 --- a/themes/soup-contrast.yaml +++ b/themes/soup-contrast.yaml @@ -1,11 +1,11 @@ name: "soup-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#17181C" fg: "#9090B2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 42.9 black: 0 diff --git a/themes/soup-light.yaml b/themes/soup-light.yaml index 8a8b9c8b..ff51bfa5 100644 --- a/themes/soup-light.yaml +++ b/themes/soup-light.yaml @@ -1,11 +1,11 @@ name: "soup-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#666A7A" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 76.8 black: 0 diff --git a/themes/soup.yaml b/themes/soup.yaml index d348c099..d0f9dcf8 100644 --- a/themes/soup.yaml +++ b/themes/soup.yaml @@ -1,11 +1,11 @@ name: "soup" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#40424C" fg: "#9090B2" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 277 + pair: null contrast: fg: 33.5 black: 0 diff --git a/themes/sourc.yaml b/themes/sourc.yaml index 954db71c..6265165a 100644 --- a/themes/sourc.yaml +++ b/themes/sourc.yaml @@ -2,7 +2,7 @@ name: "sourc" source: marketplace_id: "vitormalencar.sourc" version: "0.4.0" - installs: 1269 + installs: 1270 author: "Vitor Alencar" repo: "git+https://github.com/vitormalencar/sourc" url: "https://marketplace.visualstudio.com/items?itemName=vitormalencar.sourc" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 227 + pair: null contrast: fg: 65.6 black: 0 diff --git a/themes/sourcerer.yaml b/themes/sourcerer.yaml index 06da7e36..bc7d5819 100644 --- a/themes/sourcerer.yaml +++ b/themes/sourcerer.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 66.6 black: 0 diff --git a/themes/sourlick-contrast.yaml b/themes/sourlick-contrast.yaml index 3af70e27..60c99cf5 100644 --- a/themes/sourlick-contrast.yaml +++ b/themes/sourlick-contrast.yaml @@ -1,11 +1,11 @@ name: "sourlick-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#060606" fg: "#DEDEDE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 86.6 black: 0 diff --git a/themes/sourlick-light.yaml b/themes/sourlick-light.yaml index 45abd83a..20c0b1f2 100644 --- a/themes/sourlick-light.yaml +++ b/themes/sourlick-light.yaml @@ -1,11 +1,11 @@ name: "sourlick-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#333333" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/sourlick.yaml b/themes/sourlick.yaml index ddf51b9c..e5938f80 100644 --- a/themes/sourlick.yaml +++ b/themes/sourlick.yaml @@ -1,11 +1,11 @@ name: "sourlick" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2E2C2B" fg: "#DEDEDE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 82.3 black: 0 diff --git a/themes/south-australia-dark.yaml b/themes/south-australia-dark.yaml index dad3aac4..f98f5526 100644 --- a/themes/south-australia-dark.yaml +++ b/themes/south-australia-dark.yaml @@ -1,7 +1,7 @@ name: "South Australia Dark" source: marketplace_id: "lucidlabs.south-australia-theme" - version: "1.1.0" + version: "1.3.0" installs: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 276 + pair: "South Australia Light" contrast: fg: 95.5 black: 0 diff --git a/themes/south-australia-light.yaml b/themes/south-australia-light.yaml index d4e5a3b5..ddc00735 100644 --- a/themes/south-australia-light.yaml +++ b/themes/south-australia-light.yaml @@ -1,7 +1,7 @@ name: "South Australia Light" source: marketplace_id: "lucidlabs.south-australia-theme" - version: "1.1.0" + version: "1.3.0" installs: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "South Australia Dark" contrast: fg: 105.7 black: 105.7 diff --git a/themes/space-dark.yaml b/themes/space-dark.yaml index 3f7c3b00..ae19c940 100644 --- a/themes/space-dark.yaml +++ b/themes/space-dark.yaml @@ -1,11 +1,11 @@ name: "Space Dark" source: - marketplace_id: "keksiqc.idx-monospace-theme" - version: "1.5.0" - installs: 31573 - author: "Keksi" - repo: "https://github.com/keksiqc/monospace-theme" - url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1840 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" colors: bg: "#1F1F1F" fg: "#E1DFDF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: "Space Light" contrast: fg: 85.5 black: 33.7 diff --git a/themes/space-invader-black.yaml b/themes/space-invader-black.yaml index 97ae6f7b..02ef3ea3 100644 --- a/themes/space-invader-black.yaml +++ b/themes/space-invader-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.4 black: 0 diff --git a/themes/space-invader-darker.yaml b/themes/space-invader-darker.yaml index 13c3c822..2b606ba4 100644 --- a/themes/space-invader-darker.yaml +++ b/themes/space-invader-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 272 + pair: "Space Invader - Light" contrast: fg: 59.6 black: 0 diff --git a/themes/space-invader-light.yaml b/themes/space-invader-light.yaml index 7e0c919f..2d9949d5 100644 --- a/themes/space-invader-light.yaml +++ b/themes/space-invader-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Space Invader - Darker" contrast: fg: 90.8 black: 99.3 diff --git a/themes/space-invader.yaml b/themes/space-invader.yaml index cc16316e..15ca335e 100644 --- a/themes/space-invader.yaml +++ b/themes/space-invader.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 276 + pair: null contrast: fg: 57.2 black: 0 diff --git a/themes/space-light.yaml b/themes/space-light.yaml index 4db66168..713fc97c 100644 --- a/themes/space-light.yaml +++ b/themes/space-light.yaml @@ -1,11 +1,11 @@ name: "Space Light" source: - marketplace_id: "keksiqc.idx-monospace-theme" - version: "1.5.0" - installs: 31573 - author: "Keksi" - repo: "https://github.com/keksiqc/monospace-theme" - url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1840 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" colors: bg: "#FFFFFF" fg: "#292929" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Space Dark" contrast: fg: 101.4 black: 94.8 diff --git a/themes/space-purple-dark.yaml b/themes/space-purple-dark.yaml index 7c7331e9..e1a2b3ef 100644 --- a/themes/space-purple-dark.yaml +++ b/themes/space-purple-dark.yaml @@ -2,7 +2,7 @@ name: "Space Purple Dark" source: marketplace_id: "zzAIMoo.space-purple" version: "0.11.0" - installs: 11289 + installs: 11295 author: "zzAIMoo" repo: "https://github.com/zzAIMoo/space-purple-theme" url: "https://marketplace.visualstudio.com/items?itemName=zzAIMoo.space-purple" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 302 + pair: "Space Purple Light" contrast: fg: 103 black: 0 diff --git a/themes/space-purple-light.yaml b/themes/space-purple-light.yaml index e4f10135..f6a1d7d2 100644 --- a/themes/space-purple-light.yaml +++ b/themes/space-purple-light.yaml @@ -2,7 +2,7 @@ name: "Space Purple Light" source: marketplace_id: "zzAIMoo.space-purple" version: "0.11.0" - installs: 11289 + installs: 11295 author: "zzAIMoo" repo: "https://github.com/zzAIMoo/space-purple-theme" url: "https://marketplace.visualstudio.com/items?itemName=zzAIMoo.space-purple" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 315 + pair: "Space Purple Dark" contrast: fg: 80.1 black: 80.1 diff --git a/themes/space-theme.yaml b/themes/space-theme.yaml index 51f5d9f2..ad5a8156 100644 --- a/themes/space-theme.yaml +++ b/themes/space-theme.yaml @@ -2,7 +2,7 @@ name: "space-theme" source: marketplace_id: "hosana.space-github-theme" version: "1.8.0" - installs: 559 + installs: 561 author: "hosana" repo: "https://github.com/hosanabarcelos/vscode-extension" url: "https://marketplace.visualstudio.com/items?itemName=hosana.space-github-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 258 + pair: null contrast: fg: 77.5 black: 0 diff --git a/themes/space.yaml b/themes/space.yaml index aab094ea..225df5e5 100644 --- a/themes/space.yaml +++ b/themes/space.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 343 + pair: null contrast: fg: 69.3 black: 0 diff --git a/themes/spacecamp.yaml b/themes/spacecamp.yaml index b5b8e83d..342220b1 100644 --- a/themes/spacecamp.yaml +++ b/themes/spacecamp.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 104.8 black: 0 diff --git a/themes/spacedust.yaml b/themes/spacedust.yaml index 7eba4de7..bfeea150 100644 --- a/themes/spacedust.yaml +++ b/themes/spacedust.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: null contrast: fg: 94 black: 16.1 diff --git a/themes/spacegray.yaml b/themes/spacegray.yaml index e03b49ca..7ad9be17 100644 --- a/themes/spacegray.yaml +++ b/themes/spacegray.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 84.3 black: 0 diff --git a/themes/spacegrey.yaml b/themes/spacegrey.yaml index c7a52364..6c9d32a6 100644 --- a/themes/spacegrey.yaml +++ b/themes/spacegrey.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 87.2 black: 98.9 diff --git a/themes/spacemacs-dark.yaml b/themes/spacemacs-dark.yaml index 9428babd..5a42b6fe 100644 --- a/themes/spacemacs-dark.yaml +++ b/themes/spacemacs-dark.yaml @@ -1,11 +1,11 @@ name: "Spacemacs - dark" source: - marketplace_id: "cometeer.spacemacs" - version: "1.1.1" - installs: 69534 - author: "cometeer" - repo: "git+https://github.com/cometeer/spacemacs-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=cometeer.spacemacs" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#292B2E" fg: "#CBC1D5" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Spacemacs - light" contrast: fg: 67.4 black: 56.7 diff --git a/themes/spacemacs-light.yaml b/themes/spacemacs-light.yaml index c59b3b35..d2aef796 100644 --- a/themes/spacemacs-light.yaml +++ b/themes/spacemacs-light.yaml @@ -1,11 +1,11 @@ name: "Spacemacs - light" source: - marketplace_id: "cometeer.spacemacs" - version: "1.1.1" - installs: 69534 - author: "cometeer" - repo: "git+https://github.com/cometeer/spacemacs-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=cometeer.spacemacs" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#FBF8EF" fg: "#655370" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Spacemacs - dark" contrast: fg: 79.8 black: 101.5 diff --git a/themes/spaceoceankitrefined.yaml b/themes/spaceoceankitrefined.yaml index eebe504e..dad9b43a 100644 --- a/themes/spaceoceankitrefined.yaml +++ b/themes/spaceoceankitrefined.yaml @@ -2,7 +2,7 @@ name: "SpaceOceanKitRefined" source: marketplace_id: "space-ocean-kit-refined.space-ocean-kit-refined" version: "0.3.1" - installs: 81263 + installs: 81267 author: "space-ocean-kit-refined" repo: "https://github.com/aichbauer/space-ocean-kit-refined/" url: "https://marketplace.visualstudio.com/items?itemName=space-ocean-kit-refined.space-ocean-kit-refined" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 266 + pair: null contrast: fg: 75.4 black: 0 diff --git a/themes/spacial.yaml b/themes/spacial.yaml index 1d088db4..4f351c9e 100644 --- a/themes/spacial.yaml +++ b/themes/spacial.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 298 + pair: null contrast: fg: 105 black: 0 diff --git a/themes/spades.yaml b/themes/spades.yaml index a58b15a5..c9045da2 100644 --- a/themes/spades.yaml +++ b/themes/spades.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 276 + pair: null contrast: fg: 69.4 black: 24.4 diff --git a/themes/sparkle-theme.yaml b/themes/sparkle-theme.yaml index efbdd8b2..c1cc4c8d 100644 --- a/themes/sparkle-theme.yaml +++ b/themes/sparkle-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 277 + pair: null contrast: fg: 86.1 black: 0 diff --git a/themes/speakeasy.yaml b/themes/speakeasy.yaml index 5c25124b..226dad38 100644 --- a/themes/speakeasy.yaml +++ b/themes/speakeasy.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 69.6 black: 97.6 diff --git a/themes/spearmint-contrast.yaml b/themes/spearmint-contrast.yaml index 789679a3..aafca05f 100644 --- a/themes/spearmint-contrast.yaml +++ b/themes/spearmint-contrast.yaml @@ -1,11 +1,11 @@ name: "spearmint-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#1A2322" fg: "#C9DBD9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 188 + pair: null contrast: fg: 80.1 black: 0 diff --git a/themes/spearmint-light.yaml b/themes/spearmint-light.yaml index fb27d670..add7ef19 100644 --- a/themes/spearmint-light.yaml +++ b/themes/spearmint-light.yaml @@ -1,11 +1,11 @@ name: "spearmint-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#E1F0EE" fg: "#719692" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 187 + pair: null contrast: fg: 48.8 black: 0 diff --git a/themes/spearmint.yaml b/themes/spearmint.yaml index 5f31c36b..207373f7 100644 --- a/themes/spearmint.yaml +++ b/themes/spearmint.yaml @@ -1,11 +1,11 @@ name: "spearmint" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#415654" fg: "#C9DBD9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 189 + pair: null contrast: fg: 66.4 black: 0 diff --git a/themes/spider-man.yaml b/themes/spider-man.yaml deleted file mode 100644 index c11d6066..00000000 --- a/themes/spider-man.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Spider Man" -source: - marketplace_id: "jundat95.spiderman" - version: "0.0.8" - installs: 21649 - author: "jundat95" - repo: "https://github.com/jundat95/vscode-theme-spider-man" - url: "https://marketplace.visualstudio.com/items?itemName=jundat95.spiderman" -colors: - bg: "#282A36" - fg: "#403F53" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 278 - contrast: - fg: 0 - black: 0 - red: 40.4 - green: 81.9 - yellow: 95.6 - blue: 50.7 - magenta: 51.6 - cyan: 81 - white: 99 - brightBlack: 25.1 - brightRed: 45.9 - brightGreen: 86.1 - brightYellow: 100.6 - brightBlue: 63.2 - brightMagenta: 59.7 - brightCyan: 93.8 - brightWhite: 103.9 diff --git a/themes/spiderverse-2099.yaml b/themes/spiderverse-2099.yaml index 5584f74b..e5243577 100644 --- a/themes/spiderverse-2099.yaml +++ b/themes/spiderverse-2099.yaml @@ -2,7 +2,7 @@ name: "SpiderVerse 2099" source: marketplace_id: "GabrielBrown.spider-verse-theme" version: "1.0.1" - installs: 2460 + installs: 2466 author: "Gabriel Brown" repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 266 + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/spiderverse-miles.yaml b/themes/spiderverse-miles.yaml index d10c53f4..d3ccb579 100644 --- a/themes/spiderverse-miles.yaml +++ b/themes/spiderverse-miles.yaml @@ -2,7 +2,7 @@ name: "SpiderVerse Miles" source: marketplace_id: "GabrielBrown.spider-verse-theme" version: "1.0.1" - installs: 2460 + installs: 2466 author: "Gabriel Brown" repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 71.4 black: 0 diff --git a/themes/spiderverse-spider-man.yaml b/themes/spiderverse-spider-man.yaml index 49114ea4..fcd7d8d1 100644 --- a/themes/spiderverse-spider-man.yaml +++ b/themes/spiderverse-spider-man.yaml @@ -2,7 +2,7 @@ name: "SpiderVerse Spider-Man" source: marketplace_id: "GabrielBrown.spider-verse-theme" version: "1.0.1" - installs: 2460 + installs: 2466 author: "Gabriel Brown" repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 19 + pair: null contrast: fg: 77 black: 0 diff --git a/themes/spin-theme.yaml b/themes/spin-theme.yaml index 298873d2..d07b2e4e 100644 --- a/themes/spin-theme.yaml +++ b/themes/spin-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 320 + pair: null contrast: fg: 83.2 black: 0 diff --git a/themes/spirited-night.yaml b/themes/spirited-night.yaml index 3e963cdc..0053a7b7 100644 --- a/themes/spirited-night.yaml +++ b/themes/spirited-night.yaml @@ -2,7 +2,7 @@ name: "Spirited Night" source: marketplace_id: "danibram.ghibli-inspired-theme" version: "1.0.0" - installs: 267 + installs: 274 author: "Daniel Biedma" repo: "https://github.com/danibram/ghibli-theme" url: "https://marketplace.visualstudio.com/items?itemName=danibram.ghibli-inspired-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 307 + pair: null contrast: fg: 88.8 black: 0 diff --git a/themes/spitfire-contrast.yaml b/themes/spitfire-contrast.yaml index 6e450985..c5380717 100644 --- a/themes/spitfire-contrast.yaml +++ b/themes/spitfire-contrast.yaml @@ -1,11 +1,11 @@ name: "spitfire-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#091C19" fg: "#BAD3D0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 182 + pair: null contrast: fg: 75.5 black: 0 diff --git a/themes/spitfire-light.yaml b/themes/spitfire-light.yaml index 33f40fe6..0fee2f38 100644 --- a/themes/spitfire-light.yaml +++ b/themes/spitfire-light.yaml @@ -1,11 +1,11 @@ name: "spitfire-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#24665E" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 82.8 black: 0 diff --git a/themes/spitfire.yaml b/themes/spitfire.yaml index 9877f609..f3c81b60 100644 --- a/themes/spitfire.yaml +++ b/themes/spitfire.yaml @@ -1,11 +1,11 @@ name: "spitfire" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#184540" fg: "#BAD3D0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 185 + pair: null contrast: fg: 67.4 black: 0 diff --git a/themes/splus.yaml b/themes/splus.yaml index 72a5e754..ac8b02f8 100644 --- a/themes/splus.yaml +++ b/themes/splus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 95.2 black: 37.1 diff --git a/themes/spotly-dark.yaml b/themes/spotly-dark.yaml index 4cbdc5b7..0ed5e011 100644 --- a/themes/spotly-dark.yaml +++ b/themes/spotly-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Spotly Light" contrast: fg: 84.2 black: 0 diff --git a/themes/spotly-light.yaml b/themes/spotly-light.yaml index 80298bfb..4308ae2d 100644 --- a/themes/spotly-light.yaml +++ b/themes/spotly-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Spotly Dark" contrast: fg: 103.4 black: 104.3 diff --git a/themes/spring.yaml b/themes/spring.yaml index 3350322e..69505cfb 100644 --- a/themes/spring.yaml +++ b/themes/spring.yaml @@ -2,7 +2,7 @@ name: "Spring" source: marketplace_id: "malinatrash.spring" version: "0.0.2" - installs: 132 + installs: 144 author: "malinatrash" repo: "https://github.com/malinatrash/spring" url: "https://marketplace.visualstudio.com/items?itemName=malinatrash.spring" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 85.5 black: 0 diff --git a/themes/sprinkles-color-theme.yaml b/themes/sprinkles-color-theme.yaml index 45ba3916..753747de 100644 --- a/themes/sprinkles-color-theme.yaml +++ b/themes/sprinkles-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 314 + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/spurlys-theme.yaml b/themes/spurlys-theme.yaml index 7384a86f..4994a171 100644 --- a/themes/spurlys-theme.yaml +++ b/themes/spurlys-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 242 + pair: null contrast: fg: 107.6 black: 0 diff --git a/themes/spyder-theme-light.yaml b/themes/spyder-theme-light.yaml index 6ffee087..01a21050 100644 --- a/themes/spyder-theme-light.yaml +++ b/themes/spyder-theme-light.yaml @@ -2,7 +2,7 @@ name: "spyder-theme-light" source: marketplace_id: "HilsianCapital.spyder-theme" version: "0.0.3" - installs: 6895 + installs: 6902 author: "HilsianCapital" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HilsianCapital.spyder-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 94.3 black: 15.8 diff --git a/themes/sql-dark-pro-high-contrast.yaml b/themes/sql-dark-pro-high-contrast.yaml index 4000ee95..80ca21c1 100644 --- a/themes/sql-dark-pro-high-contrast.yaml +++ b/themes/sql-dark-pro-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 73.8 black: 10.3 diff --git a/themes/squeak.yaml b/themes/squeak.yaml index baedfbac..bbe692e0 100644 --- a/themes/squeak.yaml +++ b/themes/squeak.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/srcery-gagbo.yaml b/themes/srcery-gagbo.yaml index 83d24de7..394ecb53 100644 --- a/themes/srcery-gagbo.yaml +++ b/themes/srcery-gagbo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 92.8 black: 0 diff --git a/themes/srcery.yaml b/themes/srcery.yaml index 6848682b..41576411 100644 --- a/themes/srcery.yaml +++ b/themes/srcery.yaml @@ -2,7 +2,7 @@ name: "Srcery" source: marketplace_id: "srcery-colors.srcery-colors" version: "0.3.8" - installs: 7369 + installs: 7371 author: "srcery-colors" repo: "https://github.com/srcery-colors/srcery-vscode" url: "https://marketplace.visualstudio.com/items?itemName=srcery-colors.srcery-colors" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 92.8 black: 0 diff --git a/themes/stackmeister.yaml b/themes/stackmeister.yaml index 1e2b2aa4..ab4b6d89 100644 --- a/themes/stackmeister.yaml +++ b/themes/stackmeister.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 281 + pair: null contrast: fg: 79.4 black: 0 diff --git a/themes/stained-glass-dark.yaml b/themes/stained-glass-dark.yaml index fd07d3ed..86f3ef5c 100644 --- a/themes/stained-glass-dark.yaml +++ b/themes/stained-glass-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 63.8 black: 0 diff --git a/themes/stannum.yaml b/themes/stannum.yaml index 966c75b1..554811fc 100644 --- a/themes/stannum.yaml +++ b/themes/stannum.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 81.8 black: 23.2 diff --git a/themes/star-night-luna.yaml b/themes/star-night-luna.yaml index 4e921c1f..afede4d2 100644 --- a/themes/star-night-luna.yaml +++ b/themes/star-night-luna.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 71.1 black: 17.6 diff --git a/themes/star-night.yaml b/themes/star-night.yaml index aeef25ec..9060bb22 100644 --- a/themes/star-night.yaml +++ b/themes/star-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 47 black: 0 diff --git a/themes/star-wars-dark-side-theme-global.yaml b/themes/star-wars-dark-side-theme-global.yaml index 760477db..9e2e798c 100644 --- a/themes/star-wars-dark-side-theme-global.yaml +++ b/themes/star-wars-dark-side-theme-global.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 283 + pair: null contrast: fg: 102 black: 0 diff --git a/themes/starboy-theme.yaml b/themes/starboy-theme.yaml index 2fe96576..cd6589c3 100644 --- a/themes/starboy-theme.yaml +++ b/themes/starboy-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 76.5 black: 0 diff --git a/themes/starburst-dark.yaml b/themes/starburst-dark.yaml index 11f7c755..12c461b0 100644 --- a/themes/starburst-dark.yaml +++ b/themes/starburst-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 91.4 black: 91.4 diff --git a/themes/starfield.yaml b/themes/starfield.yaml index e7017847..51506676 100644 --- a/themes/starfield.yaml +++ b/themes/starfield.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 247 + pair: null contrast: fg: 74.2 black: 0 diff --git a/themes/stark-contrast.yaml b/themes/stark-contrast.yaml index abd71e83..bd88eefa 100644 --- a/themes/stark-contrast.yaml +++ b/themes/stark-contrast.yaml @@ -1,11 +1,11 @@ name: "stark-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0B0A0A" fg: "#DEDEDE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/stark-dark.yaml b/themes/stark-dark.yaml index b88d50d0..2aad069b 100644 --- a/themes/stark-dark.yaml +++ b/themes/stark-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 88.6 black: 0 diff --git a/themes/stark-light.yaml b/themes/stark-light.yaml index c87242e8..c1bdec01 100644 --- a/themes/stark-light.yaml +++ b/themes/stark-light.yaml @@ -1,49 +1,50 @@ -name: "Stark Light" +name: "stark-light" source: - marketplace_id: "MTCC.stark-theme" - version: "1.0.2" - installs: 64 - author: "MTCC" - repo: "https://github.com/minhtrungcc/stark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MTCC.stark-theme" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: - bg: "#FDFCFA" - fg: "#3D3A36" - black: "#3D3A36" - red: "#C75A4D" - green: "#5A9A52" - yellow: "#B8943A" - blue: "#5A7CC7" - magenta: "#9B6BB8" - cyan: "#4A9A9A" - white: "#FDFCFA" - brightBlack: "#6B6660" - brightRed: "#E8A59C" - brightGreen: "#A8D4A2" - brightYellow: "#E5CF8A" - brightBlue: "#A5BBE8" - brightMagenta: "#D4B8E8" - brightCyan: "#98D4D4" - brightWhite: "#FFFFFF" + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#FFBB29" + yellow: "#F03113" + blue: "#F03113" + magenta: "#666666" + cyan: "#FFBB29" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FFDB8F" + brightYellow: "#F68573" + brightBlue: "#F68573" + brightMagenta: "#999999" + brightCyan: "#FFDB8F" + brightWhite: "#666666" meta: mode: "light" accent: "orange" hue: null + pair: null contrast: - fg: 94.4 - black: 94.4 - red: 66.6 - green: 59.6 - yellow: 52.9 + fg: 98.7 + black: 0 + red: 80.3 + green: 29.9 + yellow: 66.1 blue: 66.1 - magenta: 65.8 - cyan: 58.3 - white: 0 - brightBlack: 76.7 - brightRed: 37.8 - brightGreen: 27.5 - brightYellow: 23.2 - brightBlue: 35.2 - brightMagenta: 30.9 - brightCyan: 27.1 - brightWhite: 0 + magenta: 78.8 + cyan: 29.9 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 16.2 + brightYellow: 48.1 + brightBlue: 48.1 + brightMagenta: 54.6 + brightCyan: 16.2 + brightWhite: 78.8 diff --git a/themes/stark.yaml b/themes/stark.yaml index 89d32e1b..a35f6cdb 100644 --- a/themes/stark.yaml +++ b/themes/stark.yaml @@ -1,11 +1,11 @@ name: "stark" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2E2C2B" fg: "#DEDEDE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 82.3 black: 0 diff --git a/themes/starlight-daybreak.yaml b/themes/starlight-daybreak.yaml index 152e7839..45e20a4a 100644 --- a/themes/starlight-daybreak.yaml +++ b/themes/starlight-daybreak.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "teal" hue: null + pair: null contrast: fg: 89.6 black: 0 diff --git a/themes/starlight-light.yaml b/themes/starlight-light.yaml index 7a8839fd..f29a6b4d 100644 --- a/themes/starlight-light.yaml +++ b/themes/starlight-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Starlight - Midnight" contrast: fg: 93.8 black: 0 diff --git a/themes/starlight-midnight.yaml b/themes/starlight-midnight.yaml index 35984705..0655f0c4 100644 --- a/themes/starlight-midnight.yaml +++ b/themes/starlight-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 232 + pair: "Starlight - Light" contrast: fg: 83.3 black: 0 diff --git a/themes/starlight-obsidian.yaml b/themes/starlight-obsidian.yaml index 05b073c7..b00b0415 100644 --- a/themes/starlight-obsidian.yaml +++ b/themes/starlight-obsidian.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 83.7 black: 0 diff --git a/themes/starlight-soft-glow.yaml b/themes/starlight-soft-glow.yaml index df2aa701..adbcbf6c 100644 --- a/themes/starlight-soft-glow.yaml +++ b/themes/starlight-soft-glow.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 91 black: 0 diff --git a/themes/starlight.yaml b/themes/starlight.yaml index fa3edbb8..00b9bb3f 100644 --- a/themes/starlight.yaml +++ b/themes/starlight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 311 + pair: null contrast: fg: 90.8 black: 41.3 diff --git a/themes/starry-night.yaml b/themes/starry-night.yaml index 663c52af..fc77a3d3 100644 --- a/themes/starry-night.yaml +++ b/themes/starry-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 281 + pair: null contrast: fg: 48.1 black: 21.6 diff --git a/themes/starry-pillar.yaml b/themes/starry-pillar.yaml index f8cea47c..d6b8ab35 100644 --- a/themes/starry-pillar.yaml +++ b/themes/starry-pillar.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 254 + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/startlite.yaml b/themes/startlite.yaml index 4e30eb53..05a0ee69 100644 --- a/themes/startlite.yaml +++ b/themes/startlite.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 205 + pair: null contrast: fg: 52.7 black: 0 diff --git a/themes/startrail.yaml b/themes/startrail.yaml index 32fdbcfc..2dd86958 100644 --- a/themes/startrail.yaml +++ b/themes/startrail.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 62.1 black: 0 diff --git a/themes/stasis-contrast.yaml b/themes/stasis-contrast.yaml index 033c79ee..223502de 100644 --- a/themes/stasis-contrast.yaml +++ b/themes/stasis-contrast.yaml @@ -1,11 +1,11 @@ name: "stasis-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0E0D0F" fg: "#BBB1C9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 62.1 black: 0 diff --git a/themes/stasis-light.yaml b/themes/stasis-light.yaml index 3bf960ef..4c78e736 100644 --- a/themes/stasis-light.yaml +++ b/themes/stasis-light.yaml @@ -1,11 +1,11 @@ name: "stasis-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#605A68" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 82.9 black: 0 diff --git a/themes/stasis.yaml b/themes/stasis.yaml index 8e254126..5d88e691 100644 --- a/themes/stasis.yaml +++ b/themes/stasis.yaml @@ -1,11 +1,11 @@ name: "stasis" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2F2C33" fg: "#BBB1C9" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 305 + pair: null contrast: fg: 57.9 black: 0 diff --git a/themes/stealth-contrast.yaml b/themes/stealth-contrast.yaml index a58928bf..9e13df38 100644 --- a/themes/stealth-contrast.yaml +++ b/themes/stealth-contrast.yaml @@ -1,11 +1,11 @@ name: "stealth-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0D0E0F" fg: "#5F656D" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 22 black: 0 diff --git a/themes/stealth-light.yaml b/themes/stealth-light.yaml index 1868e89c..74e17463 100644 --- a/themes/stealth-light.yaml +++ b/themes/stealth-light.yaml @@ -1,11 +1,11 @@ name: "stealth-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#CCCCCC" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 27.3 black: 0 diff --git a/themes/stealth.yaml b/themes/stealth.yaml index b8797780..2f4322ef 100644 --- a/themes/stealth.yaml +++ b/themes/stealth.yaml @@ -1,49 +1,50 @@ -name: "stealth" +name: "Stealth" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "ajesh-mishra.stealth" + version: "0.1.1" + installs: 318 + author: "Ajesh Mishra" + repo: "https://github.com/ajesh-mishra/stealth" + url: "https://marketplace.visualstudio.com/items?itemName=ajesh-mishra.stealth" colors: - bg: "#27292B" - fg: "#5F656D" - black: "#333638" - red: "#BA0E2E" - green: "#3C4044" - yellow: "#474C51" - blue: "#545A60" - magenta: "#474C51" - cyan: "#3C4044" - white: "#6B727B" - brightBlack: "#575C60" - brightRed: "#F03E5F" - brightGreen: "#6C737A" - brightYellow: "#777F87" - brightBlue: "#858D95" - brightMagenta: "#777F87" - brightCyan: "#6C737A" - brightWhite: "#9298A0" + bg: "#11100F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: mode: "dark" - accent: "orange" + accent: "pink" hue: null + pair: null contrast: - fg: 18.8 + fg: 80 black: 0 - red: 17.9 - green: 0 - yellow: 8.9 - blue: 14.2 - magenta: 8.9 - cyan: 0 - white: 24.4 - brightBlack: 15 - brightRed: 34.2 - brightGreen: 24.7 - brightYellow: 30.2 - brightBlue: 37 - brightMagenta: 30.2 - brightCyan: 24.7 - brightWhite: 42.8 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/steel-blue-dark.yaml b/themes/steel-blue-dark.yaml index e0fb9fdd..1dfc0240 100644 --- a/themes/steel-blue-dark.yaml +++ b/themes/steel-blue-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 26 black: 0 diff --git a/themes/steel-phantom.yaml b/themes/steel-phantom.yaml index e8724ab8..e044c1c3 100644 --- a/themes/steel-phantom.yaml +++ b/themes/steel-phantom.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 101.9 black: 0 diff --git a/themes/steffula.yaml b/themes/steffula.yaml index 2bffcf88..f66bcfb8 100644 --- a/themes/steffula.yaml +++ b/themes/steffula.yaml @@ -2,7 +2,7 @@ name: "Steffula" source: marketplace_id: "steffo.steffula-code" version: "0.15.2" - installs: 330 + installs: 331 author: "Stefano Pigozzi" repo: "https://forge.steffo.eu/steffo/steffula-code" url: "https://marketplace.visualstudio.com/items?itemName=steffo.steffula-code" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 58.5 black: 0 diff --git a/themes/stella-high-contrast.yaml b/themes/stella-high-contrast.yaml index eddccd72..7dec1c1e 100644 --- a/themes/stella-high-contrast.yaml +++ b/themes/stella-high-contrast.yaml @@ -2,7 +2,7 @@ name: "Stella (High Contrast)" source: marketplace_id: "4S1ght.stella" version: "1.3.6" - installs: 600 + installs: 601 author: "4S1ght" repo: "https://github.com/4S1ght/Stella" url: "https://marketplace.visualstudio.com/items?itemName=4S1ght.stella" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 46.3 black: 0 diff --git a/themes/stella-theme.yaml b/themes/stella-theme.yaml index 312cd3a6..8a6f2a42 100644 --- a/themes/stella-theme.yaml +++ b/themes/stella-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 64.5 black: 0 diff --git a/themes/stella.yaml b/themes/stella.yaml index 2dae4fb3..2671151a 100644 --- a/themes/stella.yaml +++ b/themes/stella.yaml @@ -2,7 +2,7 @@ name: "Stella" source: marketplace_id: "4S1ght.stella" version: "1.3.6" - installs: 600 + installs: 601 author: "4S1ght" repo: "https://github.com/4S1ght/Stella" url: "https://marketplace.visualstudio.com/items?itemName=4S1ght.stella" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 45 black: 0 diff --git a/themes/stellar-void.yaml b/themes/stellar-void.yaml index 499ceaaa..98bbfb10 100644 --- a/themes/stellar-void.yaml +++ b/themes/stellar-void.yaml @@ -2,7 +2,7 @@ name: "Stellar Void" source: marketplace_id: "ryno9341.stellar-void" version: "0.1.0" - installs: 40 + installs: 41 author: "Ryno9341" repo: "https://github.com/ryno9341/stellar-void" url: "https://marketplace.visualstudio.com/items?itemName=ryno9341.stellar-void" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/stellar.yaml b/themes/stellar.yaml index 7b895650..ca9ef214 100644 --- a/themes/stellar.yaml +++ b/themes/stellar.yaml @@ -1,13 +1,13 @@ name: "Stellar" source: - marketplace_id: "StarsTracker.stellar" - version: "1.0.0" - installs: 243 - author: "Stars Tracker" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=StarsTracker.stellar" + marketplace_id: "PuneshBorkar.stellar-galaxy" + version: "1.3.0" + installs: 298 + author: "Punesh Borkar" + repo: "https://github.com/punesh12/stellar-galaxy" + url: "https://marketplace.visualstudio.com/items?itemName=PuneshBorkar.stellar-galaxy" colors: - bg: "#1D1D1D" + bg: "#000F1C" fg: "#D4D4D4" black: "#000000" red: "#CD3131" @@ -28,22 +28,23 @@ colors: meta: mode: "dark" accent: "pink" - hue: null + hue: 241 + pair: null contrast: - fg: 78.8 + fg: 80.1 black: 0 - red: 26 - green: 52.3 - yellow: 84.9 - blue: 26.7 - magenta: 29.1 - cyan: 46.9 - white: 89.3 - brightBlack: 21.3 - brightRed: 37.9 - brightGreen: 62.8 - brightYellow: 94.9 - brightBlue: 39.3 - brightMagenta: 44.7 - brightCyan: 54.7 - brightWhite: 89.3 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/stereo-theme.yaml b/themes/stereo-theme.yaml index d4cd1c09..b76e7ac3 100644 --- a/themes/stereo-theme.yaml +++ b/themes/stereo-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 293 + pair: null contrast: fg: 85.8 black: 0 diff --git a/themes/sto-classic.yaml b/themes/sto-classic.yaml index 8b14f166..78efcbed 100644 --- a/themes/sto-classic.yaml +++ b/themes/sto-classic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 102.4 black: 0 diff --git a/themes/sto-green-dark.yaml b/themes/sto-green-dark.yaml index 4e7ed092..1da7c2c7 100644 --- a/themes/sto-green-dark.yaml +++ b/themes/sto-green-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 95.1 black: 0 diff --git a/themes/sto-green.yaml b/themes/sto-green.yaml index 34388d08..69a5b360 100644 --- a/themes/sto-green.yaml +++ b/themes/sto-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 205 + pair: null contrast: fg: 94.2 black: 0 diff --git a/themes/stonerose.yaml b/themes/stonerose.yaml index b14376fc..2efa02e4 100644 --- a/themes/stonerose.yaml +++ b/themes/stonerose.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 57.1 black: 0 diff --git a/themes/storm-contrast.yaml b/themes/storm-contrast.yaml index eb925158..cfed5d80 100644 --- a/themes/storm-contrast.yaml +++ b/themes/storm-contrast.yaml @@ -1,11 +1,11 @@ name: "storm-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#020B0C" fg: "#BACEDD" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 202 + pair: null contrast: fg: 75 black: 0 diff --git a/themes/storm-dark-pro.yaml b/themes/storm-dark-pro.yaml deleted file mode 100644 index 0e3d077a..00000000 --- a/themes/storm-dark-pro.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Storm Dark Pro" -source: - marketplace_id: "storm066.storm066" - version: "0.0.4" - installs: 2575 - author: "storm066" - repo: "https://github.com/lfontesc/vscode-theme-storm" - url: "https://marketplace.visualstudio.com/items?itemName=storm066.storm066" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "pink" - hue: 264 - contrast: - fg: 56.2 - black: 0 - red: 33.5 - green: 57.2 - yellow: 45.4 - blue: 46.5 - magenta: 35.9 - cyan: 49.3 - white: 87.4 - brightBlack: 12.3 - brightRed: 42.9 - brightGreen: 73.6 - brightYellow: 58 - brightBlue: 60.5 - brightMagenta: 47.1 - brightCyan: 64.6 - brightWhite: 79.8 diff --git a/themes/storm-light.yaml b/themes/storm-light.yaml index 4607950c..3db5d9dd 100644 --- a/themes/storm-light.yaml +++ b/themes/storm-light.yaml @@ -1,11 +1,11 @@ name: "storm-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#DEE4E5" fg: "#092327" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 86.6 black: 0 diff --git a/themes/storm-tracker.yaml b/themes/storm-tracker.yaml index f2cdf2c4..c2d2d950 100644 --- a/themes/storm-tracker.yaml +++ b/themes/storm-tracker.yaml @@ -2,7 +2,7 @@ name: "Storm Tracker" source: marketplace_id: "Dutchorange.space-wars" version: "1.1.7" - installs: 1710 + installs: 1711 author: "Dutchorange" repo: "https://github.com/entropy-glitch/space-wars" url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 87.1 black: 0 diff --git a/themes/storm-uvadark-fork.yaml b/themes/storm-uvadark-fork.yaml index abc11690..37f8d805 100644 --- a/themes/storm-uvadark-fork.yaml +++ b/themes/storm-uvadark-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 96.8 black: 0 diff --git a/themes/storm.yaml b/themes/storm.yaml index 3241cb5d..932801b5 100644 --- a/themes/storm.yaml +++ b/themes/storm.yaml @@ -1,49 +1,50 @@ -name: "storm" +name: "Storm" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "JackdawDev.storm-darktheme" + version: "0.1.3" + installs: 161 + author: "Jackdaw Dev" + repo: "https://github.com/mechatour/storm-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=JackdawDev.storm-darktheme" colors: - bg: "#092327" - fg: "#BACEDD" - black: "#0E363C" - red: "#BA0E2E" - green: "#126D6B" - yellow: "#00A9A5" - blue: "#4E8098" - magenta: "#126D6B" - cyan: "#00A9A5" - white: "#CBDAE5" - brightBlack: "#1C6D7A" - brightRed: "#F03E5F" - brightGreen: "#20C5C1" - brightYellow: "#10FFF9" - brightBlue: "#89B0C3" - brightMagenta: "#20C5C1" - brightCyan: "#10FFF9" - brightWhite: "#FEFFFF" + bg: "#040408" + fg: "#CFCFD4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: mode: "dark" - accent: "orange" - hue: 209 + accent: "pink" + hue: 284 + pair: null contrast: - fg: 73 + fg: 77.7 black: 0 - red: 19.4 - green: 19.5 - yellow: 44.9 - blue: 29.7 - magenta: 19.5 - cyan: 44.9 - white: 80.6 - brightBlack: 20.1 - brightRed: 35.6 - brightGreen: 58.6 - brightYellow: 89.7 - brightBlue: 54.3 - brightMagenta: 58.6 - brightCyan: 89.7 - brightWhite: 105.6 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/stormpetrel.yaml b/themes/stormpetrel.yaml index 4c375ae6..8adc0591 100644 --- a/themes/stormpetrel.yaml +++ b/themes/stormpetrel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 238 + pair: null contrast: fg: 32.7 black: 28.8 diff --git a/themes/strangebrew.yaml b/themes/strangebrew.yaml deleted file mode 100644 index 26832dcd..00000000 --- a/themes/strangebrew.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "StrangeBrew" -source: - marketplace_id: "selfrefactor.StrangeBrew" - version: "0.20.0" - installs: 291 - author: "selfrefactor" - repo: "https://github.com/selfrefactor/niketa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.StrangeBrew" -colors: - bg: "#F5F5F5" - fg: "#192112" - black: "#0F0F14" - red: "#F7768E" - green: "#41A6B5" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#787C99" - brightBlack: "#0F0F14" - brightRed: "#F7768E" - brightGreen: "#41A6B5" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#ACB0D0" -meta: - mode: "light" - accent: "red" - hue: null - contrast: - fg: 97.5 - black: 99.5 - red: 45 - green: 48.5 - yellow: 32.7 - blue: 43.3 - magenta: 39.6 - cyan: 24.7 - white: 62.1 - brightBlack: 99.5 - brightRed: 45 - brightGreen: 48.5 - brightYellow: 32.7 - brightBlue: 43.3 - brightMagenta: 39.6 - brightCyan: 24.7 - brightWhite: 35.7 diff --git a/themes/studio-bio-bio-dark-theme.yaml b/themes/studio-bio-bio-dark-theme.yaml index f4e8fd1c..e533b999 100644 --- a/themes/studio-bio-bio-dark-theme.yaml +++ b/themes/studio-bio-bio-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 276 + pair: null contrast: fg: 74.7 black: 0 diff --git a/themes/stylelight35.yaml b/themes/stylelight35.yaml index 8aaaf751..d9dda640 100644 --- a/themes/stylelight35.yaml +++ b/themes/stylelight35.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 92.6 black: 92.7 diff --git a/themes/subessence.yaml b/themes/subessence.yaml index d70acc92..8abe4ce5 100644 --- a/themes/subessence.yaml +++ b/themes/subessence.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 260 + pair: null contrast: fg: 77.1 black: 0 diff --git a/themes/sublime-breakers.yaml b/themes/sublime-breakers.yaml index 9434f957..63ff51a6 100644 --- a/themes/sublime-breakers.yaml +++ b/themes/sublime-breakers.yaml @@ -2,7 +2,7 @@ name: "Sublime Breakers" source: marketplace_id: "release-candidate.theme-sublime-breakers" version: "0.2.1" - installs: 299 + installs: 300 author: "Release-Candidate" repo: "https://codeberg.org/Release-Candidate/SublimeBreakersTheme" url: "https://marketplace.visualstudio.com/items?itemName=release-candidate.theme-sublime-breakers" diff --git a/themes/sublime-mariana-semantic-colorful.yaml b/themes/sublime-mariana-semantic-colorful.yaml deleted file mode 100644 index 0a03c76e..00000000 --- a/themes/sublime-mariana-semantic-colorful.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Sublime Mariana ⎯ Semantic Colorful" -source: - marketplace_id: "duttdutt.sublime-theme" - version: "1.0.9" - installs: 3900 - author: "duttdutt" - repo: "https://github.com/duttdutt/sublime-theme" - url: "https://marketplace.visualstudio.com/items?itemName=duttdutt.sublime-theme" -colors: - bg: "#2E3842" - fg: "#FFFFFF" - black: "#E6E6E6" - red: "#EE6A6F" - green: "#A3CE9E" - yellow: "#FAB763" - blue: "#6699CC" - magenta: "#C594C5" - cyan: "#6699CC" - white: "#FFFFFF" - brightBlack: "#E6E6E6" - brightRed: "#EE6A6F" - brightGreen: "#A3CE9E" - brightYellow: "#FAB763" - brightBlue: "#6699CC" - brightMagenta: "#C594C5" - brightCyan: "#6699CC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 248 - contrast: - fg: 100.9 - black: 84.7 - red: 38.3 - green: 63.3 - yellow: 64.1 - blue: 38.2 - magenta: 46.1 - cyan: 38.2 - white: 100.9 - brightBlack: 84.7 - brightRed: 38.3 - brightGreen: 63.3 - brightYellow: 64.1 - brightBlue: 38.2 - brightMagenta: 46.1 - brightCyan: 38.2 - brightWhite: 100.9 diff --git a/themes/sublime-mariana-test.yaml b/themes/sublime-mariana-test.yaml index 28eef7ea..8e538210 100644 --- a/themes/sublime-mariana-test.yaml +++ b/themes/sublime-mariana-test.yaml @@ -2,7 +2,7 @@ name: "Sublime Mariana ⎯ Test" source: marketplace_id: "duttdutt.sublime-theme" version: "1.0.9" - installs: 3900 + installs: 3904 author: "duttdutt" repo: "https://github.com/duttdutt/sublime-theme" url: "https://marketplace.visualstudio.com/items?itemName=duttdutt.sublime-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 251 + pair: null contrast: fg: 100.8 black: 84.6 diff --git a/themes/sublime-monokai-color-theme.yaml b/themes/sublime-monokai-color-theme.yaml deleted file mode 100644 index 1857e02e..00000000 --- a/themes/sublime-monokai-color-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "sublime-monokai-color-theme" -source: - marketplace_id: "maximetinu.identical-sublime-monokai-csharp-theme-colorizer" - version: "1.2.3" - installs: 286321 - author: "Maximetinu" - repo: "https://github.com/Maximetinu/Sublime-Text-Monokai-theme-for-Visual-Studio-Code" - url: "https://marketplace.visualstudio.com/items?itemName=maximetinu.identical-sublime-monokai-csharp-theme-colorizer" -colors: - bg: "#272822" - fg: "#F8F8F2" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: 115 - contrast: - fg: 99.6 - black: 0 - red: 22.3 - green: 50.7 - yellow: 55.3 - blue: 32.3 - magenta: 29.9 - cyan: 48.1 - white: 86.2 - brightBlack: 19.7 - brightRed: 35 - brightGreen: 74.7 - brightYellow: 81.6 - brightBlue: 47.5 - brightMagenta: 44.2 - brightCyan: 71.1 - brightWhite: 99.6 diff --git a/themes/sublime-text-3.yaml b/themes/sublime-text-3.yaml index 2775627e..9df46e62 100644 --- a/themes/sublime-text-3.yaml +++ b/themes/sublime-text-3.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 115 + pair: null contrast: fg: 99.5 black: 0 diff --git a/themes/sublime-text-4-theme.yaml b/themes/sublime-text-4-theme.yaml index cb5a1d05..20447fcf 100644 --- a/themes/sublime-text-4-theme.yaml +++ b/themes/sublime-text-4-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 251 + pair: null contrast: fg: 79.3 black: 84.6 diff --git a/themes/sublime-vscode-theme.yaml b/themes/sublime-vscode-theme.yaml index 354fab8e..365e4ea6 100644 --- a/themes/sublime-vscode-theme.yaml +++ b/themes/sublime-vscode-theme.yaml @@ -2,7 +2,7 @@ name: "sublime-vscode-theme" source: marketplace_id: "yurihs.sublime-vscode-theme" version: "1.5.0" - installs: 86323 + installs: 86333 author: "yurihs" repo: "https://github.com/yurihs/sublime-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=yurihs.sublime-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 115 + pair: null contrast: fg: 99.5 black: 0 diff --git a/themes/subliminal-color-theme.yaml b/themes/subliminal-color-theme.yaml index ca158fba..c9e995a9 100644 --- a/themes/subliminal-color-theme.yaml +++ b/themes/subliminal-color-theme.yaml @@ -2,7 +2,7 @@ name: "Subliminal-color-theme" source: marketplace_id: "josefssonrasmus.subliminal-remix" version: "1.0.0" - installs: 397 + installs: 398 author: "Rasmus Josefsson" repo: "https://github.com/gaearon/subliminal" url: "https://marketplace.visualstudio.com/items?itemName=josefssonrasmus.subliminal-remix" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 266 + pair: null contrast: fg: 76.3 black: 11.9 diff --git a/themes/subliminalr-next.yaml b/themes/subliminalr-next.yaml deleted file mode 100644 index 506099d7..00000000 --- a/themes/subliminalr-next.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "SubliminalR - Next" -source: - marketplace_id: "TobiasTimm.subliminalr" - version: "0.3.2" - installs: 2782 - author: "Tobias Timm" - repo: "https://github.com/tobiastimm/subliminalr" - url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.subliminalr" -colors: - bg: "#2A2D37" - fg: "#D4D4D4" - black: "#7F7F7F" - red: "#E15A60" - green: "#99C794" - yellow: "#FFE2A9" - blue: "#6699CC" - magenta: "#C594C5" - cyan: "#5FB3B3" - white: "#D4D4D4" - brightBlack: "#7F7F7F" - brightRed: "#E15A60" - brightGreen: "#99C794" - brightYellow: "#FFE2A9" - brightBlue: "#6699CC" - brightMagenta: "#C594C5" - brightCyan: "#5FB3B3" - brightWhite: "#D4D4D4" -meta: - mode: "dark" - accent: "orange" - hue: 272 - contrast: - fg: 76 - black: 29.8 - red: 34.4 - green: 61.4 - yellow: 86.7 - blue: 40.7 - magenta: 48.5 - cyan: 49.5 - white: 76 - brightBlack: 29.8 - brightRed: 34.4 - brightGreen: 61.4 - brightYellow: 86.7 - brightBlue: 40.7 - brightMagenta: 48.5 - brightCyan: 49.5 - brightWhite: 76 diff --git a/themes/subscribe-color.yaml b/themes/subscribe-color.yaml index d7063685..681defd9 100644 --- a/themes/subscribe-color.yaml +++ b/themes/subscribe-color.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 50.7 black: 50.8 diff --git a/themes/substrata.yaml b/themes/substrata.yaml index d6cc4bbf..07695956 100644 --- a/themes/substrata.yaml +++ b/themes/substrata.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 271 + pair: null contrast: fg: 61.2 black: 0 diff --git a/themes/sufocode.yaml b/themes/sufocode.yaml index da085c47..a6eeba94 100644 --- a/themes/sufocode.yaml +++ b/themes/sufocode.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 228 + pair: null contrast: fg: 93.9 black: 0 diff --git a/themes/sugar-dark-focus.yaml b/themes/sugar-dark-focus.yaml index e5ea3cd3..18f0de5b 100644 --- a/themes/sugar-dark-focus.yaml +++ b/themes/sugar-dark-focus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 82.8 black: 0 diff --git a/themes/sugar-dark-github.yaml b/themes/sugar-dark-github.yaml index 5a1826d3..593ed455 100644 --- a/themes/sugar-dark-github.yaml +++ b/themes/sugar-dark-github.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 79.4 black: 0 diff --git a/themes/sugar-dark-midnight.yaml b/themes/sugar-dark-midnight.yaml index 573abaf7..16d38f15 100644 --- a/themes/sugar-dark-midnight.yaml +++ b/themes/sugar-dark-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 271 + pair: null contrast: fg: 85.5 black: 0 diff --git a/themes/sugar-dark-one.yaml b/themes/sugar-dark-one.yaml index 6d646340..76f4e3bd 100644 --- a/themes/sugar-dark-one.yaml +++ b/themes/sugar-dark-one.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 57.5 black: 0 diff --git a/themes/sugar-dark-vitesse.yaml b/themes/sugar-dark-vitesse.yaml index da0cdcb7..a8783516 100644 --- a/themes/sugar-dark-vitesse.yaml +++ b/themes/sugar-dark-vitesse.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Sugar Light Vitesse" contrast: fg: 72.2 black: 0 diff --git a/themes/sugar-dark-vs.yaml b/themes/sugar-dark-vs.yaml index 962f3968..4f1c13a3 100644 --- a/themes/sugar-dark-vs.yaml +++ b/themes/sugar-dark-vs.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Sugar Light VS" contrast: fg: 81 black: 0 diff --git a/themes/sugar-dark.yaml b/themes/sugar-dark.yaml index 597d4b07..28f538be 100644 --- a/themes/sugar-dark.yaml +++ b/themes/sugar-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Sugar Light" contrast: fg: 75.6 black: 0 diff --git a/themes/sugar-fleet.yaml b/themes/sugar-fleet.yaml index a0a102e2..fd7f0165 100644 --- a/themes/sugar-fleet.yaml +++ b/themes/sugar-fleet.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 65.5 black: 0 diff --git a/themes/sugar-light-vitesse.yaml b/themes/sugar-light-vitesse.yaml index 868c1dec..83c912c5 100644 --- a/themes/sugar-light-vitesse.yaml +++ b/themes/sugar-light-vitesse.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Sugar Dark Vitesse" contrast: fg: 101.5 black: 71.1 diff --git a/themes/sugar-light-vs.yaml b/themes/sugar-light-vs.yaml index 942aca34..a48a336f 100644 --- a/themes/sugar-light-vs.yaml +++ b/themes/sugar-light-vs.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Sugar Dark VS" contrast: fg: 98.7 black: 71.1 diff --git a/themes/sugar-light.yaml b/themes/sugar-light.yaml index 313885e8..eb672b75 100644 --- a/themes/sugar-light.yaml +++ b/themes/sugar-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Sugar Dark" contrast: fg: 91.6 black: 69.3 diff --git a/themes/sukadia-dev-dark.yaml b/themes/sukadia-dev-dark.yaml index 66a2ecea..fd181c92 100644 --- a/themes/sukadia-dev-dark.yaml +++ b/themes/sukadia-dev-dark.yaml @@ -2,7 +2,7 @@ name: "sukadia.dev/dark" source: marketplace_id: "Sukadia.sukadia-dev-dark" version: "1.0.6" - installs: 1606 + installs: 1607 author: "Sukadia" repo: "https://github.com/Sukadia/sukadia.dev-dark" url: "https://marketplace.visualstudio.com/items?itemName=Sukadia.sukadia-dev-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 84.1 black: 0 diff --git a/themes/sulfuric-dark.yaml b/themes/sulfuric-dark.yaml index 1ef98724..0dacaaf2 100644 --- a/themes/sulfuric-dark.yaml +++ b/themes/sulfuric-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 70 black: 25.1 diff --git a/themes/sumiiro.yaml b/themes/sumiiro.yaml index ef7378dc..7193c9c6 100644 --- a/themes/sumiiro.yaml +++ b/themes/sumiiro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 102.9 black: 0 diff --git a/themes/summer-night-gray-high-contrast.yaml b/themes/summer-night-gray-high-contrast.yaml index 0fb2476c..05f7c1b2 100644 --- a/themes/summer-night-gray-high-contrast.yaml +++ b/themes/summer-night-gray-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 55.2 black: 0 diff --git a/themes/summer-night-high-contrast.yaml b/themes/summer-night-high-contrast.yaml index c850ee0a..c8ffdeaf 100644 --- a/themes/summer-night-high-contrast.yaml +++ b/themes/summer-night-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 262 + pair: null contrast: fg: 55.2 black: 0 diff --git a/themes/summer-night.yaml b/themes/summer-night.yaml index 0a3140a0..d0080fa1 100644 --- a/themes/summer-night.yaml +++ b/themes/summer-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 262 + pair: null contrast: fg: 53.7 black: 0 diff --git a/themes/summer-nights-lullaby.yaml b/themes/summer-nights-lullaby.yaml index 765325c5..09916938 100644 --- a/themes/summer-nights-lullaby.yaml +++ b/themes/summer-nights-lullaby.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 78 + pair: null contrast: fg: 57.9 black: 0 diff --git a/themes/summer-nights.yaml b/themes/summer-nights.yaml index bb27560a..a1fce62a 100644 --- a/themes/summer-nights.yaml +++ b/themes/summer-nights.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 95.6 black: 0 diff --git a/themes/summer.yaml b/themes/summer.yaml index 62e329af..cb3a1e57 100644 --- a/themes/summer.yaml +++ b/themes/summer.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 23 + pair: null contrast: fg: 90.4 black: 0 diff --git a/themes/summercamp.yaml b/themes/summercamp.yaml index 0cad8274..ab7b593e 100644 --- a/themes/summercamp.yaml +++ b/themes/summercamp.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 71 + pair: null contrast: fg: 99.6 black: 17 diff --git a/themes/summerrelax.yaml b/themes/summerrelax.yaml index 9d33947e..c3b42d84 100644 --- a/themes/summerrelax.yaml +++ b/themes/summerrelax.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 267 + pair: null contrast: fg: 76.4 black: 0 diff --git a/themes/sunbather.yaml b/themes/sunbather.yaml index 29ed6e52..7210cc45 100644 --- a/themes/sunbather.yaml +++ b/themes/sunbather.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 72 black: 43.5 diff --git a/themes/sunilcode-dark-soothing-blue-light-reduced.yaml b/themes/sunilcode-dark-soothing-blue-light-reduced.yaml index b461b6c9..464a01ec 100644 --- a/themes/sunilcode-dark-soothing-blue-light-reduced.yaml +++ b/themes/sunilcode-dark-soothing-blue-light-reduced.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 270 + pair: null contrast: fg: 71 black: 0 diff --git a/themes/sunny.yaml b/themes/sunny.yaml index 72e020da..e75da8dd 100644 --- a/themes/sunny.yaml +++ b/themes/sunny.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 82.1 black: 0 diff --git a/themes/sunset-beach-dark.yaml b/themes/sunset-beach-dark.yaml index cdd48228..7bd4c11c 100644 --- a/themes/sunset-beach-dark.yaml +++ b/themes/sunset-beach-dark.yaml @@ -1,11 +1,11 @@ name: "Sunset Beach Dark" source: - marketplace_id: "sserafy.ttera-themes" - version: "2.0.7" - installs: 2036 + marketplace_id: "sserafy.ssera-themes" + version: "2.0.2" + installs: 334 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: bg: "#1A1F2E" fg: "#E8F4FD" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 270 + pair: "Sunset Beach Light" contrast: fg: 97.4 black: 0 diff --git a/themes/sunset-beach-light.yaml b/themes/sunset-beach-light.yaml index c0291602..8411a7ad 100644 --- a/themes/sunset-beach-light.yaml +++ b/themes/sunset-beach-light.yaml @@ -1,11 +1,11 @@ name: "Sunset Beach Light" source: - marketplace_id: "sserafy.ttera-themes" - version: "2.0.7" - installs: 2036 + marketplace_id: "sserafy.ssera-themes" + version: "2.0.2" + installs: 334 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: bg: "#FEFCF7" fg: "#2C3E50" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Sunset Beach Dark" contrast: fg: 93.6 black: 93.6 diff --git a/themes/sunset-boulevard.yaml b/themes/sunset-boulevard.yaml index 4b3a7520..3ff045ce 100644 --- a/themes/sunset-boulevard.yaml +++ b/themes/sunset-boulevard.yaml @@ -2,7 +2,7 @@ name: "Sunset Boulevard" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 90.9 black: 81.8 diff --git a/themes/sunset-noir.yaml b/themes/sunset-noir.yaml index 957246ae..3cadfe03 100644 --- a/themes/sunset-noir.yaml +++ b/themes/sunset-noir.yaml @@ -2,7 +2,7 @@ name: "Sunset Noir" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 39 + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/sunset-serenade.yaml b/themes/sunset-serenade.yaml index 1eef2960..a46eb758 100644 --- a/themes/sunset-serenade.yaml +++ b/themes/sunset-serenade.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 102.7 black: 104.7 diff --git a/themes/sunset-theme.yaml b/themes/sunset-theme.yaml index b6586e7e..0778b651 100644 --- a/themes/sunset-theme.yaml +++ b/themes/sunset-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 247 + pair: null contrast: fg: 59.6 black: 0 diff --git a/themes/super-contrast.yaml b/themes/super-contrast.yaml index 07a7a225..4afbbb4f 100644 --- a/themes/super-contrast.yaml +++ b/themes/super-contrast.yaml @@ -1,11 +1,11 @@ name: "super-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#15191D" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 248 + pair: null contrast: fg: 106.7 black: 0 diff --git a/themes/super-dark-cyberpunk-green.yaml b/themes/super-dark-cyberpunk-green.yaml index 44f4afa1..2011ca6e 100644 --- a/themes/super-dark-cyberpunk-green.yaml +++ b/themes/super-dark-cyberpunk-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 145 + pair: null contrast: fg: 99.2 black: 0 diff --git a/themes/super-dark-cyberpunk-grey.yaml b/themes/super-dark-cyberpunk-grey.yaml index 248d9ff6..7e397acb 100644 --- a/themes/super-dark-cyberpunk-grey.yaml +++ b/themes/super-dark-cyberpunk-grey.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 99.2 black: 0 diff --git a/themes/super-dark-cyberpunk-purple.yaml b/themes/super-dark-cyberpunk-purple.yaml index 47d8fb38..7f8e4286 100644 --- a/themes/super-dark-cyberpunk-purple.yaml +++ b/themes/super-dark-cyberpunk-purple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 306 + pair: null contrast: fg: 99.3 black: 0 diff --git a/themes/super-light.yaml b/themes/super-light.yaml index ebdf0108..9cddbac3 100644 --- a/themes/super-light.yaml +++ b/themes/super-light.yaml @@ -1,11 +1,11 @@ name: "super-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#333333" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/super.yaml b/themes/super.yaml index 04c3bfbf..87ab811b 100644 --- a/themes/super.yaml +++ b/themes/super.yaml @@ -1,11 +1,11 @@ name: "super" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2C343D" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 251 + pair: null contrast: fg: 102 black: 0 diff --git a/themes/superbright.yaml b/themes/superbright.yaml index 41ffc416..69cfd9d1 100644 --- a/themes/superbright.yaml +++ b/themes/superbright.yaml @@ -2,7 +2,7 @@ name: "SuperBright" source: marketplace_id: "DIYST.super-bright" version: "1.0.1" - installs: 1021 + installs: 1022 author: "DIYST" repo: "https://github.com/diyst/SuperBrightTheme" url: "https://marketplace.visualstudio.com/items?itemName=DIYST.super-bright" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 307 + pair: null contrast: fg: 107.5 black: 10.8 diff --git a/themes/superman-theme.yaml b/themes/superman-theme.yaml index 4ee2498f..02fdfedb 100644 --- a/themes/superman-theme.yaml +++ b/themes/superman-theme.yaml @@ -2,7 +2,7 @@ name: "Superman Theme" source: marketplace_id: "AndresCespedesMorales.superman-vscode" version: "0.1.0" - installs: 1606 + installs: 1608 author: "Andres Cespedes Morales" repo: "https://github.com/pedes/superman-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndresCespedesMorales.superman-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 230 + pair: null contrast: fg: 100.4 black: 0 diff --git a/themes/supernova.yaml b/themes/supernova.yaml index 7d6f8afa..92d4f07b 100644 --- a/themes/supernova.yaml +++ b/themes/supernova.yaml @@ -1,49 +1,50 @@ -name: "Supernova" +name: "superNova" source: - marketplace_id: "MikeBell.supernova-color-theme" - version: "0.1.6" - installs: 6737 - author: "Mike Bell" - repo: "https://github.com/mikeybell/supernova-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MikeBell.supernova-color-theme" + marketplace_id: "bvgross.supernova-theme" + version: "0.0.2" + installs: 269 + author: "Bruno Ventura Gross" + repo: "https://github.com/bvgross/superNovaTheme.git#master" + url: "https://marketplace.visualstudio.com/items?itemName=bvgross.supernova-theme" colors: - bg: "#202633" - fg: "#D6DEEB" - black: "#202633" - red: "#E97178" - green: "#C3E88D" - yellow: "#F1DC3D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#D6DEEB" - brightBlack: "#575656" - brightRed: "#E97178" - brightGreen: "#C3E88D" - brightYellow: "#F1DC3D" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" + bg: "#282828" + fg: "#CFCFCF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: mode: "dark" - accent: "green" - hue: 265 + accent: "pink" + hue: null + pair: null contrast: - fg: 83.1 + fg: 74 black: 0 - red: 43.1 - green: 82.1 - yellow: 81.3 - blue: 53.8 - magenta: 51.7 - cyan: 76.2 - white: 83.1 - brightBlack: 13.5 - brightRed: 43.1 - brightGreen: 82.1 - brightYellow: 81.3 - brightBlue: 53.8 - brightMagenta: 51.7 - brightCyan: 76.2 - brightWhite: 104.8 + red: 24.3 + green: 50.6 + yellow: 83.2 + blue: 25 + magenta: 27.3 + cyan: 45.1 + white: 87.6 + brightBlack: 19.6 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.6 + brightMagenta: 42.9 + brightCyan: 53 + brightWhite: 87.6 diff --git a/themes/surreal.yaml b/themes/surreal.yaml index 6ddae646..7ac990ae 100644 --- a/themes/surreal.yaml +++ b/themes/surreal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.1 black: 13.8 diff --git a/themes/susuwatari.yaml b/themes/susuwatari.yaml index a0f951f1..cdde6ab2 100644 --- a/themes/susuwatari.yaml +++ b/themes/susuwatari.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 96.5 black: 106 diff --git a/themes/svelte-5-theme.yaml b/themes/svelte-5-theme.yaml index 6381a368..8815475d 100644 --- a/themes/svelte-5-theme.yaml +++ b/themes/svelte-5-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 258 + pair: null contrast: fg: 95 black: 13.1 diff --git a/themes/sveltesse-black.yaml b/themes/sveltesse-black.yaml index 17879998..10f16703 100644 --- a/themes/sveltesse-black.yaml +++ b/themes/sveltesse-black.yaml @@ -2,7 +2,7 @@ name: "Sveltesse Black" source: marketplace_id: "AntonioSarcevic.theme-sveltesse" version: "0.0.1" - installs: 770 + installs: 771 author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Sveltesse Light" contrast: fg: 82.3 black: 0 diff --git a/themes/sveltesse-dark-soft.yaml b/themes/sveltesse-dark-soft.yaml index 56026c2e..a5c58b75 100644 --- a/themes/sveltesse-dark-soft.yaml +++ b/themes/sveltesse-dark-soft.yaml @@ -2,7 +2,7 @@ name: "Sveltesse Dark Soft" source: marketplace_id: "AntonioSarcevic.theme-sveltesse" version: "0.0.1" - installs: 770 + installs: 771 author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Sveltesse Light Soft" contrast: fg: 88 black: 0 diff --git a/themes/sveltesse-dark.yaml b/themes/sveltesse-dark.yaml index b0d65ced..47347812 100644 --- a/themes/sveltesse-dark.yaml +++ b/themes/sveltesse-dark.yaml @@ -2,7 +2,7 @@ name: "Sveltesse Dark" source: marketplace_id: "AntonioSarcevic.theme-sveltesse" version: "0.0.1" - installs: 770 + installs: 771 author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 90.3 black: 0 diff --git a/themes/sveltesse-light-soft.yaml b/themes/sveltesse-light-soft.yaml index 02cfdce9..2de64d72 100644 --- a/themes/sveltesse-light-soft.yaml +++ b/themes/sveltesse-light-soft.yaml @@ -2,7 +2,7 @@ name: "Sveltesse Light Soft" source: marketplace_id: "AntonioSarcevic.theme-sveltesse" version: "0.0.1" - installs: 770 + installs: 771 author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Sveltesse Dark Soft" contrast: fg: 99.8 black: 101 diff --git a/themes/sveltesse-light.yaml b/themes/sveltesse-light.yaml index ffe3df9c..cbbd5c16 100644 --- a/themes/sveltesse-light.yaml +++ b/themes/sveltesse-light.yaml @@ -2,7 +2,7 @@ name: "Sveltesse Light" source: marketplace_id: "AntonioSarcevic.theme-sveltesse" version: "0.0.1" - installs: 770 + installs: 771 author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Sveltesse Black" contrast: fg: 103.1 black: 104.3 diff --git a/themes/sw-tatooine.yaml b/themes/sw-tatooine.yaml index f7291194..79c32cd5 100644 --- a/themes/sw-tatooine.yaml +++ b/themes/sw-tatooine.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 84 + pair: null contrast: fg: 73.6 black: 0 diff --git a/themes/sw61.yaml b/themes/sw61.yaml index 09dc042a..9769baca 100644 --- a/themes/sw61.yaml +++ b/themes/sw61.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 260 + pair: null contrast: fg: 74.8 black: 10.3 diff --git a/themes/swablu.yaml b/themes/swablu.yaml index b882c511..ee28fa23 100644 --- a/themes/swablu.yaml +++ b/themes/swablu.yaml @@ -2,7 +2,7 @@ name: "Swablu" source: marketplace_id: "zaneadix.Swablu" version: "0.0.5" - installs: 943 + installs: 944 author: "Zane Adickes" repo: "https://github.com/zaneadix/swablu-theme" url: "https://marketplace.visualstudio.com/items?itemName=zaneadix.Swablu" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 89.4 black: 90.7 diff --git a/themes/swaminarayan.yaml b/themes/swaminarayan.yaml index ef1f3e0d..b2e696db 100644 --- a/themes/swaminarayan.yaml +++ b/themes/swaminarayan.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 276 + pair: null contrast: fg: 88.3 black: 0 diff --git a/themes/swamp-color-theme.yaml b/themes/swamp-color-theme.yaml index e5d96319..dd8443fa 100644 --- a/themes/swamp-color-theme.yaml +++ b/themes/swamp-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 170 + pair: null contrast: fg: 79.9 black: 0 diff --git a/themes/sweet-lemon.yaml b/themes/sweet-lemon.yaml index 18663abf..fdb7066b 100644 --- a/themes/sweet-lemon.yaml +++ b/themes/sweet-lemon.yaml @@ -2,7 +2,7 @@ name: "Sweet Lemon" source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" - installs: 80 + installs: 81 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.9 black: 23.7 diff --git a/themes/sweet-pascal.yaml b/themes/sweet-pascal.yaml index 56f9ea6a..25d54bc1 100644 --- a/themes/sweet-pascal.yaml +++ b/themes/sweet-pascal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 94.1 black: 0 diff --git a/themes/sweet-vscode.yaml b/themes/sweet-vscode.yaml index b92baeb8..de13a434 100644 --- a/themes/sweet-vscode.yaml +++ b/themes/sweet-vscode.yaml @@ -1,11 +1,11 @@ name: "sweet-vscode" source: - marketplace_id: "EliverLara.sweet-vscode" - version: "1.1.1" - installs: 46712 - author: "Eliver Lara" - repo: "https://github.com/EliverLara/sweet-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=EliverLara.sweet-vscode" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: bg: "#1E1E2E" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 105.8 black: 0 diff --git a/themes/sweetdracula-monokai.yaml b/themes/sweetdracula-monokai.yaml index e25ca3b6..66394757 100644 --- a/themes/sweetdracula-monokai.yaml +++ b/themes/sweetdracula-monokai.yaml @@ -2,7 +2,7 @@ name: "sweetdracula monokai" source: marketplace_id: "lefd.sweetdracula-monokai" version: "1.1.14" - installs: 8143 + installs: 8144 author: "lefd" repo: "https://github.com/LEFD/sweetdracula-monokai" url: "https://marketplace.visualstudio.com/items?itemName=lefd.sweetdracula-monokai" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 273 + pair: null contrast: fg: 101.7 black: 21.8 diff --git a/themes/swnb-palenight-theme.yaml b/themes/swnb-palenight-theme.yaml index cd61ba1c..ec21cb78 100644 --- a/themes/swnb-palenight-theme.yaml +++ b/themes/swnb-palenight-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 57.5 black: 0 diff --git a/themes/syl-black.yaml b/themes/syl-black.yaml index 8f06d7ad..9f8c0b26 100644 --- a/themes/syl-black.yaml +++ b/themes/syl-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72.4 black: 0 diff --git a/themes/syl-chocolate.yaml b/themes/syl-chocolate.yaml index e38c9890..0dc089c4 100644 --- a/themes/syl-chocolate.yaml +++ b/themes/syl-chocolate.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 71 black: 0 diff --git a/themes/syl-forest.yaml b/themes/syl-forest.yaml index e98bf12a..2baea241 100644 --- a/themes/syl-forest.yaml +++ b/themes/syl-forest.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 154 + pair: null contrast: fg: 70.7 black: 0 diff --git a/themes/syl-ice.yaml b/themes/syl-ice.yaml index 1271307f..735bf32c 100644 --- a/themes/syl-ice.yaml +++ b/themes/syl-ice.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 70.3 black: 0 diff --git a/themes/syl-plum.yaml b/themes/syl-plum.yaml index 305a136e..2ef1a16a 100644 --- a/themes/syl-plum.yaml +++ b/themes/syl-plum.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 295 + pair: null contrast: fg: 71.6 black: 0 diff --git a/themes/syl-shadow.yaml b/themes/syl-shadow.yaml index 7a9f4c10..c412bb52 100644 --- a/themes/syl-shadow.yaml +++ b/themes/syl-shadow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 68.2 black: 0 diff --git a/themes/syntax-palette.yaml b/themes/syntax-palette.yaml index a54df426..6cfe4ca8 100644 --- a/themes/syntax-palette.yaml +++ b/themes/syntax-palette.yaml @@ -2,7 +2,7 @@ name: "Syntax Palette" source: marketplace_id: "aqsa.syntax-palette" version: "0.0.5" - installs: 216 + installs: 218 author: "aqsa" repo: "https://github.com/Bacteria007/syntax-palette" url: "https://marketplace.visualstudio.com/items?itemName=aqsa.syntax-palette" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 267 + pair: null contrast: fg: 99.2 black: 0 diff --git a/themes/synthesis.yaml b/themes/synthesis.yaml index 85ffc5ee..150938bf 100644 --- a/themes/synthesis.yaml +++ b/themes/synthesis.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/synthor-dark-fork.yaml b/themes/synthor-dark-fork.yaml index cb135c95..9c621c20 100644 --- a/themes/synthor-dark-fork.yaml +++ b/themes/synthor-dark-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 105.7 black: 0 diff --git a/themes/synthwave-2077.yaml b/themes/synthwave-2077.yaml index 36e72fc2..08fc1071 100644 --- a/themes/synthwave-2077.yaml +++ b/themes/synthwave-2077.yaml @@ -2,7 +2,7 @@ name: "Synthwave 2077" source: marketplace_id: "DangoWeb.synthwave-2077" version: "1.0.1" - installs: 8900 + installs: 8902 author: "Dango Web Solutions" repo: "https://github.com/faisalnjs/Synthwave-2077" url: "https://marketplace.visualstudio.com/items?itemName=DangoWeb.synthwave-2077" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 276 + pair: null contrast: fg: 66.5 black: 66.5 diff --git a/themes/synthwave-84-csav-edition.yaml b/themes/synthwave-84-csav-edition.yaml index 2436daec..50e5e7ff 100644 --- a/themes/synthwave-84-csav-edition.yaml +++ b/themes/synthwave-84-csav-edition.yaml @@ -1,11 +1,11 @@ name: "Synthwave '84 - CSAV edition" source: - marketplace_id: "csdotav.synthwave84-csav-edition" - version: "1.0.1" - installs: 3923 + marketplace_id: "csdotav.synthwave84-monokai-edition" + version: "0.0.1" + installs: 3772 author: "csdotav" - repo: "https://github.com/ArielCalisaya/synthwave84-csdotav" - url: "https://marketplace.visualstudio.com/items?itemName=csdotav.synthwave84-csav-edition" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=csdotav.synthwave84-monokai-edition" colors: bg: "#262335" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 292 + pair: null contrast: fg: 77.5 black: 0 diff --git a/themes/synthwave-84.yaml b/themes/synthwave-84.yaml deleted file mode 100644 index 67866bd7..00000000 --- a/themes/synthwave-84.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Synthwave 84" -source: - marketplace_id: "AgraeonLabs.dev-themes" - version: "0.1.0" - installs: 283 - author: "Agraeon Labs" - repo: "https://github.com/adiagcodelance/VS-Code-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" -colors: - bg: "#241B2F" - fg: "#F7F3FF" - black: "#241B2F" - red: "#FE4450" - green: "#72F1B8" - yellow: "#FEDE5D" - blue: "#03EDF9" - magenta: "#FF7EDB" - cyan: "#36F9F6" - white: "#F7F3FF" - brightBlack: "#241B2F" - brightRed: "#FE4450" - brightGreen: "#72F1B8" - brightYellow: "#FEDE5D" - brightBlue: "#03EDF9" - brightMagenta: "#FF7EDB" - brightCyan: "#36F9F6" - brightWhite: "#F7F3FF" -meta: - mode: "dark" - accent: "orange" - hue: 304 - contrast: - fg: 99.1 - black: 0 - red: 39.6 - green: 82.3 - yellow: 85.7 - blue: 80.7 - magenta: 55.9 - cyan: 87 - white: 99.1 - brightBlack: 0 - brightRed: 39.6 - brightGreen: 82.3 - brightYellow: 85.7 - brightBlue: 80.7 - brightMagenta: 55.9 - brightCyan: 87 - brightWhite: 99.1 diff --git a/themes/synthwave-alpha.yaml b/themes/synthwave-alpha.yaml index 67bf6481..036b18b7 100644 --- a/themes/synthwave-alpha.yaml +++ b/themes/synthwave-alpha.yaml @@ -2,7 +2,7 @@ name: "Synthwave Alpha" source: marketplace_id: "vikpe.synthwave-alpha" version: "0.2.1" - installs: 790 + installs: 791 author: "Viktor Persson" repo: "https://github.com/vikpe/synthwave-alpha-vscode" url: "https://marketplace.visualstudio.com/items?itemName=vikpe.synthwave-alpha" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 303 + pair: null contrast: fg: 96.6 black: 0 diff --git a/themes/synthwave-material-ansi-16.yaml b/themes/synthwave-material-ansi-16.yaml index 8e86a5f0..cc4fd89b 100644 --- a/themes/synthwave-material-ansi-16.yaml +++ b/themes/synthwave-material-ansi-16.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 292 + pair: null contrast: fg: 72.7 black: 24.5 diff --git a/themes/synthwave.yaml b/themes/synthwave.yaml index 82df5294..a2d021b1 100644 --- a/themes/synthwave.yaml +++ b/themes/synthwave.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 334 + pair: null contrast: fg: 70.3 black: 0 diff --git a/themes/synthy.yaml b/themes/synthy.yaml index 3b9af150..aebf5ce7 100644 --- a/themes/synthy.yaml +++ b/themes/synthy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 95.1 black: 0 diff --git a/themes/sypher.yaml b/themes/sypher.yaml index 494f9ff8..cd37a4db 100644 --- a/themes/sypher.yaml +++ b/themes/sypher.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 249 + pair: null contrast: fg: 44.7 black: 0 diff --git a/themes/syrinx.yaml b/themes/syrinx.yaml index c723f64c..2795f7e9 100644 --- a/themes/syrinx.yaml +++ b/themes/syrinx.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 96.5 black: 0 diff --git a/themes/sys1.yaml b/themes/sys1.yaml index af5c6553..91e9c565 100644 --- a/themes/sys1.yaml +++ b/themes/sys1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 98.3 black: 0 diff --git a/themes/sysop.yaml b/themes/sysop.yaml index a5d4139a..5fa7a124 100644 --- a/themes/sysop.yaml +++ b/themes/sysop.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 45.3 black: 0 diff --git a/themes/t-theme.yaml b/themes/t-theme.yaml index 1a2f4741..59a52780 100644 --- a/themes/t-theme.yaml +++ b/themes/t-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 277 + pair: null contrast: fg: 55.9 black: 0 diff --git a/themes/t3nsor-solo-leveling.yaml b/themes/t3nsor-solo-leveling.yaml index 7611b3dd..e257e1e0 100644 --- a/themes/t3nsor-solo-leveling.yaml +++ b/themes/t3nsor-solo-leveling.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 295 + pair: null contrast: fg: 88.4 black: 10.8 diff --git a/themes/tabycord.yaml b/themes/tabycord.yaml deleted file mode 100644 index b26f947b..00000000 --- a/themes/tabycord.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "TabyCord" -source: - marketplace_id: "Tabytac.tabycord" - version: "0.1.3" - installs: 142 - author: "Tabytac" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Tabytac.tabycord" -colors: - bg: "#181818" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 79.4 - black: 0 - red: 26.6 - green: 52.9 - yellow: 85.5 - blue: 27.3 - magenta: 29.6 - cyan: 47.4 - white: 89.9 - brightBlack: 21.9 - brightRed: 38.5 - brightGreen: 63.4 - brightYellow: 95.5 - brightBlue: 39.9 - brightMagenta: 45.3 - brightCyan: 55.3 - brightWhite: 89.9 diff --git a/themes/taco-syntax.yaml b/themes/taco-syntax.yaml index 87e7c580..94064693 100644 --- a/themes/taco-syntax.yaml +++ b/themes/taco-syntax.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 92.4 black: 0 diff --git a/themes/tahigh.yaml b/themes/tahigh.yaml index 87583a3e..aeed790c 100644 --- a/themes/tahigh.yaml +++ b/themes/tahigh.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 44.3 black: 0 diff --git a/themes/taiga.yaml b/themes/taiga.yaml index 45a6b598..2a77143e 100644 --- a/themes/taiga.yaml +++ b/themes/taiga.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 195 + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/tail-dark-theme.yaml b/themes/tail-dark-theme.yaml index 5143aa5a..ff5b3b9c 100644 --- a/themes/tail-dark-theme.yaml +++ b/themes/tail-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Tail Dark Theme" source: marketplace_id: "webldavi.tail-theme" version: "0.0.5" - installs: 2419 + installs: 2420 author: "webldavi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=webldavi.tail-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 68.5 black: 0 diff --git a/themes/tailwind-amber-dark.yaml b/themes/tailwind-amber-dark.yaml index da398f6b..cd92c589 100644 --- a/themes/tailwind-amber-dark.yaml +++ b/themes/tailwind-amber-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 46 + pair: "Tailwind Amber Light" contrast: fg: 86.6 black: 0 diff --git a/themes/tailwind-amber-light.yaml b/themes/tailwind-amber-light.yaml index 06429a45..5881e684 100644 --- a/themes/tailwind-amber-light.yaml +++ b/themes/tailwind-amber-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Amber Dark" contrast: fg: 81.4 black: 87.8 diff --git a/themes/tailwind-blue-dark.yaml b/themes/tailwind-blue-dark.yaml index 031446af..742e8b1f 100644 --- a/themes/tailwind-blue-dark.yaml +++ b/themes/tailwind-blue-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 266 + pair: "Tailwind Blue Light" contrast: fg: 83 black: 0 diff --git a/themes/tailwind-blue-light.yaml b/themes/tailwind-blue-light.yaml index 46529e86..4091c567 100644 --- a/themes/tailwind-blue-light.yaml +++ b/themes/tailwind-blue-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Blue Dark" contrast: fg: 83.3 black: 87.7 diff --git a/themes/tailwind-breeze.yaml b/themes/tailwind-breeze.yaml index 27fa8919..aca5f210 100644 --- a/themes/tailwind-breeze.yaml +++ b/themes/tailwind-breeze.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 103.3 black: 106 diff --git a/themes/tailwind-cyan-dark.yaml b/themes/tailwind-cyan-dark.yaml index 0e83209b..3adcfbcd 100644 --- a/themes/tailwind-cyan-dark.yaml +++ b/themes/tailwind-cyan-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 227 + pair: "Tailwind Cyan Light" contrast: fg: 86.6 black: 0 diff --git a/themes/tailwind-cyan-light.yaml b/themes/tailwind-cyan-light.yaml index f4e4afac..e5b6ef34 100644 --- a/themes/tailwind-cyan-light.yaml +++ b/themes/tailwind-cyan-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Cyan Dark" contrast: fg: 82.1 black: 87.9 diff --git a/themes/tailwind-dark.yaml b/themes/tailwind-dark.yaml index 3f7609d6..ed4ecfd7 100644 --- a/themes/tailwind-dark.yaml +++ b/themes/tailwind-dark.yaml @@ -2,7 +2,7 @@ name: "Tailwind - Dark" source: marketplace_id: "WollaceBuarque.tailwind-theme" version: "0.5.7" - installs: 38182 + installs: 38192 author: "Wollace Buarque" repo: "https://github.com/wollace-buarque/tailwind-theme" url: "https://marketplace.visualstudio.com/items?itemName=WollaceBuarque.tailwind-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 25.1 black: 0 diff --git a/themes/tailwind-darkest.yaml b/themes/tailwind-darkest.yaml index 56905c3d..f66db140 100644 --- a/themes/tailwind-darkest.yaml +++ b/themes/tailwind-darkest.yaml @@ -2,7 +2,7 @@ name: "Tailwind - Darkest" source: marketplace_id: "WollaceBuarque.tailwind-theme" version: "0.5.7" - installs: 38182 + installs: 38192 author: "Wollace Buarque" repo: "https://github.com/wollace-buarque/tailwind-theme" url: "https://marketplace.visualstudio.com/items?itemName=WollaceBuarque.tailwind-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 263 + pair: null contrast: fg: 27.7 black: 0 diff --git a/themes/tailwind-emerald-dark.yaml b/themes/tailwind-emerald-dark.yaml index 7b442787..e8e12c97 100644 --- a/themes/tailwind-emerald-dark.yaml +++ b/themes/tailwind-emerald-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 169 + pair: "Tailwind Emerald Light" contrast: fg: 86.9 black: 0 diff --git a/themes/tailwind-emerald-light.yaml b/themes/tailwind-emerald-light.yaml index 6f011e79..2b923c54 100644 --- a/themes/tailwind-emerald-light.yaml +++ b/themes/tailwind-emerald-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Emerald Dark" contrast: fg: 82.6 black: 88.5 diff --git a/themes/tailwind-fuchsia-dark.yaml b/themes/tailwind-fuchsia-dark.yaml index 0e01806e..01875d63 100644 --- a/themes/tailwind-fuchsia-dark.yaml +++ b/themes/tailwind-fuchsia-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 326 + pair: "Tailwind Fuchsia Light" contrast: fg: 85.1 black: 0 diff --git a/themes/tailwind-fuchsia-light.yaml b/themes/tailwind-fuchsia-light.yaml index 2b2b51da..d4fa1017 100644 --- a/themes/tailwind-fuchsia-light.yaml +++ b/themes/tailwind-fuchsia-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Fuchsia Dark" contrast: fg: 82.1 black: 87.3 diff --git a/themes/tailwind-gray-dark.yaml b/themes/tailwind-gray-dark.yaml index 2e6f508c..2d142b4a 100644 --- a/themes/tailwind-gray-dark.yaml +++ b/themes/tailwind-gray-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 265 + pair: "Tailwind Gray Light" contrast: fg: 99.4 black: 0 diff --git a/themes/tailwind-gray-light.yaml b/themes/tailwind-gray-light.yaml index 6b2b02e1..2c6202dd 100644 --- a/themes/tailwind-gray-light.yaml +++ b/themes/tailwind-gray-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Gray Dark" contrast: fg: 98.4 black: 101.4 diff --git a/themes/tailwind-green-dark.yaml b/themes/tailwind-green-dark.yaml index 8f87388b..a113418a 100644 --- a/themes/tailwind-green-dark.yaml +++ b/themes/tailwind-green-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 153 + pair: "Tailwind Green Light" contrast: fg: 87.9 black: 0 diff --git a/themes/tailwind-green-light.yaml b/themes/tailwind-green-light.yaml index 31365d48..67cba098 100644 --- a/themes/tailwind-green-light.yaml +++ b/themes/tailwind-green-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Green Dark" contrast: fg: 81.2 black: 87.5 diff --git a/themes/tailwind-indigo-dark.yaml b/themes/tailwind-indigo-dark.yaml index 0c1c3522..6869aba4 100644 --- a/themes/tailwind-indigo-dark.yaml +++ b/themes/tailwind-indigo-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 279 + pair: "Tailwind Indigo Light" contrast: fg: 84.3 black: 0 diff --git a/themes/tailwind-indigo-light.yaml b/themes/tailwind-indigo-light.yaml index 1b43c3d2..22307a09 100644 --- a/themes/tailwind-indigo-light.yaml +++ b/themes/tailwind-indigo-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Indigo Dark" contrast: fg: 84.7 black: 88.2 diff --git a/themes/tailwind-lime-dark.yaml b/themes/tailwind-lime-dark.yaml index 7791b719..a3f98552 100644 --- a/themes/tailwind-lime-dark.yaml +++ b/themes/tailwind-lime-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 131 + pair: "Tailwind Lime Light" contrast: fg: 88.1 black: 0 diff --git a/themes/tailwind-lime-light.yaml b/themes/tailwind-lime-light.yaml index 500a9571..c724647e 100644 --- a/themes/tailwind-lime-light.yaml +++ b/themes/tailwind-lime-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Lime Dark" contrast: fg: 81.9 black: 87.4 diff --git a/themes/tailwind-moon-blue.yaml b/themes/tailwind-moon-blue.yaml index e2859bbb..8bb50960 100644 --- a/themes/tailwind-moon-blue.yaml +++ b/themes/tailwind-moon-blue.yaml @@ -2,7 +2,7 @@ name: "Tailwind Moon Blue" source: marketplace_id: "shadowblood.tailwind-moon" version: "3.0.2" - installs: 43876 + installs: 43889 author: "Lucia Lovelace" repo: "https://github.com/luciascarlet/tailwind-moon-vscode" url: "https://marketplace.visualstudio.com/items?itemName=shadowblood.tailwind-moon" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 260 + pair: null contrast: fg: 88.9 black: 0 diff --git a/themes/tailwind-moon-grey.yaml b/themes/tailwind-moon-grey.yaml index 973a952c..06ff528e 100644 --- a/themes/tailwind-moon-grey.yaml +++ b/themes/tailwind-moon-grey.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/tailwind-moon.yaml b/themes/tailwind-moon.yaml index 719daa24..ec36f5aa 100644 --- a/themes/tailwind-moon.yaml +++ b/themes/tailwind-moon.yaml @@ -2,7 +2,7 @@ name: "Tailwind Moon" source: marketplace_id: "shadowblood.tailwind-moon" version: "3.0.2" - installs: 43876 + installs: 43889 author: "Lucia Lovelace" repo: "https://github.com/luciascarlet/tailwind-moon-vscode" url: "https://marketplace.visualstudio.com/items?itemName=shadowblood.tailwind-moon" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 257 + pair: null contrast: fg: 88.7 black: 0 diff --git a/themes/tailwind-neutral-dark.yaml b/themes/tailwind-neutral-dark.yaml index f120f38e..c94e8c8f 100644 --- a/themes/tailwind-neutral-dark.yaml +++ b/themes/tailwind-neutral-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: "Tailwind Neutral Light" contrast: fg: 100.3 black: 0 diff --git a/themes/tailwind-neutral-light.yaml b/themes/tailwind-neutral-light.yaml index 5da59559..3c88bd42 100644 --- a/themes/tailwind-neutral-light.yaml +++ b/themes/tailwind-neutral-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Neutral Dark" contrast: fg: 99.1 black: 101.7 diff --git a/themes/tailwind-orange-dark.yaml b/themes/tailwind-orange-dark.yaml index 9688c26e..5aa3e99e 100644 --- a/themes/tailwind-orange-dark.yaml +++ b/themes/tailwind-orange-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 38 + pair: "Tailwind Orange Light" contrast: fg: 85 black: 0 diff --git a/themes/tailwind-orange-light.yaml b/themes/tailwind-orange-light.yaml index 6ba2d07c..15bbb6c0 100644 --- a/themes/tailwind-orange-light.yaml +++ b/themes/tailwind-orange-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Orange Dark" contrast: fg: 80.3 black: 86.7 diff --git a/themes/tailwind-pink-dark.yaml b/themes/tailwind-pink-dark.yaml index 44ac11bf..785154f5 100644 --- a/themes/tailwind-pink-dark.yaml +++ b/themes/tailwind-pink-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 2 + pair: "Tailwind Pink Light" contrast: fg: 83.3 black: 0 diff --git a/themes/tailwind-pink-light.yaml b/themes/tailwind-pink-light.yaml index 65fc7ee0..c56fc36b 100644 --- a/themes/tailwind-pink-light.yaml +++ b/themes/tailwind-pink-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Pink Dark" contrast: fg: 79.6 black: 84.9 diff --git a/themes/tailwind-purple-dark.yaml b/themes/tailwind-purple-dark.yaml index d08a2a8f..a546116d 100644 --- a/themes/tailwind-purple-dark.yaml +++ b/themes/tailwind-purple-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 305 + pair: "Tailwind Purple Light" contrast: fg: 85.9 black: 0 diff --git a/themes/tailwind-purple-light.yaml b/themes/tailwind-purple-light.yaml index 54ccc1d5..d988dccd 100644 --- a/themes/tailwind-purple-light.yaml +++ b/themes/tailwind-purple-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Purple Dark" contrast: fg: 83.9 black: 89.3 diff --git a/themes/tailwind-red-dark.yaml b/themes/tailwind-red-dark.yaml index d3781c58..2cbd4609 100644 --- a/themes/tailwind-red-dark.yaml +++ b/themes/tailwind-red-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 26 + pair: "Tailwind Red Light" contrast: fg: 81.6 black: 0 diff --git a/themes/tailwind-red-light.yaml b/themes/tailwind-red-light.yaml index 2bdf5c25..1f374020 100644 --- a/themes/tailwind-red-light.yaml +++ b/themes/tailwind-red-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Red Dark" contrast: fg: 80.9 black: 85.8 diff --git a/themes/tailwind-rose-dark.yaml b/themes/tailwind-rose-dark.yaml index 624845be..7b30f006 100644 --- a/themes/tailwind-rose-dark.yaml +++ b/themes/tailwind-rose-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 10 + pair: "Tailwind Rose Light" contrast: fg: 81.5 black: 0 diff --git a/themes/tailwind-rose-light.yaml b/themes/tailwind-rose-light.yaml index b2887f41..e32fdb4b 100644 --- a/themes/tailwind-rose-light.yaml +++ b/themes/tailwind-rose-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Rose Dark" contrast: fg: 79.4 black: 84.1 diff --git a/themes/tailwind-sky-dark.yaml b/themes/tailwind-sky-dark.yaml index 8a37db12..f0abd1cb 100644 --- a/themes/tailwind-sky-dark.yaml +++ b/themes/tailwind-sky-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 241 + pair: "Tailwind Sky Light" contrast: fg: 85.5 black: 0 diff --git a/themes/tailwind-sky-light.yaml b/themes/tailwind-sky-light.yaml index 8d942619..6e9567e8 100644 --- a/themes/tailwind-sky-light.yaml +++ b/themes/tailwind-sky-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Sky Dark" contrast: fg: 81.3 black: 87 diff --git a/themes/tailwind-slate-dark.yaml b/themes/tailwind-slate-dark.yaml index a8b33a04..bc9ed7f0 100644 --- a/themes/tailwind-slate-dark.yaml +++ b/themes/tailwind-slate-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 266 + pair: "Tailwind Slate Light" contrast: fg: 99.8 black: 0 diff --git a/themes/tailwind-slate-light.yaml b/themes/tailwind-slate-light.yaml index d0f8af7f..d8f7c341 100644 --- a/themes/tailwind-slate-light.yaml +++ b/themes/tailwind-slate-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Slate Dark" contrast: fg: 98.2 black: 101.4 diff --git a/themes/tailwind-stone-dark.yaml b/themes/tailwind-stone-dark.yaml index 5e366fea..dfb6ac75 100644 --- a/themes/tailwind-stone-dark.yaml +++ b/themes/tailwind-stone-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: "Tailwind Stone Light" contrast: fg: 100 black: 0 diff --git a/themes/tailwind-stone-light.yaml b/themes/tailwind-stone-light.yaml index b68d940e..fdad2c93 100644 --- a/themes/tailwind-stone-light.yaml +++ b/themes/tailwind-stone-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Stone Dark" contrast: fg: 99 black: 101.3 diff --git a/themes/tailwind-teal-dark.yaml b/themes/tailwind-teal-dark.yaml index e27c6ef6..1832e742 100644 --- a/themes/tailwind-teal-dark.yaml +++ b/themes/tailwind-teal-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 188 + pair: "Tailwind Teal Light" contrast: fg: 87 black: 0 diff --git a/themes/tailwind-teal-light.yaml b/themes/tailwind-teal-light.yaml index 0944270a..ece719d0 100644 --- a/themes/tailwind-teal-light.yaml +++ b/themes/tailwind-teal-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Teal Dark" contrast: fg: 83.1 black: 88.7 diff --git a/themes/tailwind-violet-dark.yaml b/themes/tailwind-violet-dark.yaml index 0e7ae529..7dd8e74a 100644 --- a/themes/tailwind-violet-dark.yaml +++ b/themes/tailwind-violet-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 294 + pair: "Tailwind Violet Light" contrast: fg: 85.6 black: 0 diff --git a/themes/tailwind-violet-light.yaml b/themes/tailwind-violet-light.yaml index 8b17619f..338a4858 100644 --- a/themes/tailwind-violet-light.yaml +++ b/themes/tailwind-violet-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Violet Dark" contrast: fg: 83 black: 88 diff --git a/themes/tailwind-yellow-dark.yaml b/themes/tailwind-yellow-dark.yaml index 6ea4dc55..0b6dbc89 100644 --- a/themes/tailwind-yellow-dark.yaml +++ b/themes/tailwind-yellow-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 58 + pair: "Tailwind Yellow Light" contrast: fg: 88.5 black: 0 diff --git a/themes/tailwind-yellow-light.yaml b/themes/tailwind-yellow-light.yaml index 41f3f223..6a2d64ff 100644 --- a/themes/tailwind-yellow-light.yaml +++ b/themes/tailwind-yellow-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Yellow Dark" contrast: fg: 81 black: 87.1 diff --git a/themes/tailwind-zinc-dark.yaml b/themes/tailwind-zinc-dark.yaml index ec8a0219..9b09bc71 100644 --- a/themes/tailwind-zinc-dark.yaml +++ b/themes/tailwind-zinc-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: "Tailwind Zinc Light" contrast: fg: 99.5 black: 0 diff --git a/themes/tailwind-zinc-light.yaml b/themes/tailwind-zinc-light.yaml index 07c94199..1375397a 100644 --- a/themes/tailwind-zinc-light.yaml +++ b/themes/tailwind-zinc-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Tailwind Zinc Dark" contrast: fg: 98.8 black: 101.5 diff --git a/themes/tailwind.yaml b/themes/tailwind.yaml index 75932ce3..a3733616 100644 --- a/themes/tailwind.yaml +++ b/themes/tailwind.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 262 + pair: null contrast: fg: 97.1 black: 0 diff --git a/themes/taipei-night.yaml b/themes/taipei-night.yaml index 1ff9a19b..db504bdf 100644 --- a/themes/taipei-night.yaml +++ b/themes/taipei-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 59.3 black: 10.3 diff --git a/themes/takenawa-modified.yaml b/themes/takenawa-modified.yaml index 84107dd1..005519ab 100644 --- a/themes/takenawa-modified.yaml +++ b/themes/takenawa-modified.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 94 black: 0 diff --git a/themes/takenawa.yaml b/themes/takenawa.yaml index d3134f7c..5c101a53 100644 --- a/themes/takenawa.yaml +++ b/themes/takenawa.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: null contrast: fg: 93.6 black: 0 diff --git a/themes/tame-contrast.yaml b/themes/tame-contrast.yaml index 9502d644..20acef66 100644 --- a/themes/tame-contrast.yaml +++ b/themes/tame-contrast.yaml @@ -1,11 +1,11 @@ name: "tame-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#15191C" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/tame-light.yaml b/themes/tame-light.yaml index fe16302b..d283fa8d 100644 --- a/themes/tame-light.yaml +++ b/themes/tame-light.yaml @@ -1,11 +1,11 @@ name: "tame-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#495760" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 85.9 black: 0 diff --git a/themes/tame.yaml b/themes/tame.yaml index f3304bd1..7510f01c 100644 --- a/themes/tame.yaml +++ b/themes/tame.yaml @@ -1,11 +1,11 @@ name: "tame" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#283035" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 235 + pair: null contrast: fg: 70 black: 0 diff --git a/themes/tamil-nadu-temple-land.yaml b/themes/tamil-nadu-temple-land.yaml index 57d6f292..0da8df49 100644 --- a/themes/tamil-nadu-temple-land.yaml +++ b/themes/tamil-nadu-temple-land.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 56 + pair: null contrast: fg: 92.1 black: 0 diff --git a/themes/tan-jade.yaml b/themes/tan-jade.yaml index 16e4f53f..1329b673 100644 --- a/themes/tan-jade.yaml +++ b/themes/tan-jade.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 195 + pair: null contrast: fg: 63.6 black: 0 diff --git a/themes/tangere-dark.yaml b/themes/tangere-dark.yaml index 94b92f8c..df221ae2 100644 --- a/themes/tangere-dark.yaml +++ b/themes/tangere-dark.yaml @@ -2,7 +2,7 @@ name: "Tangere Dark" source: marketplace_id: "MihailDolghintev.tangere" version: "0.0.4" - installs: 47 + installs: 48 author: "Mihail Dolghintev" repo: "https://github.com/mihaildolghintev/tangere" url: "https://marketplace.visualstudio.com/items?itemName=MihailDolghintev.tangere" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: "Tangere Light" contrast: fg: 101.6 black: 0 diff --git a/themes/tangere-light.yaml b/themes/tangere-light.yaml index 716d237d..7c94587f 100644 --- a/themes/tangere-light.yaml +++ b/themes/tangere-light.yaml @@ -2,7 +2,7 @@ name: "Tangere Light" source: marketplace_id: "MihailDolghintev.tangere" version: "0.0.4" - installs: 47 + installs: 48 author: "Mihail Dolghintev" repo: "https://github.com/mihaildolghintev/tangere" url: "https://marketplace.visualstudio.com/items?itemName=MihailDolghintev.tangere" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Tangere Dark" contrast: fg: 104.7 black: 0 diff --git a/themes/tango-plus.yaml b/themes/tango-plus.yaml index 0231bb25..7ca898ad 100644 --- a/themes/tango-plus.yaml +++ b/themes/tango-plus.yaml @@ -2,7 +2,7 @@ name: "tango-plus" source: marketplace_id: "ludwigkr.emacs-tango-plus" version: "0.2.0" - installs: 725 + installs: 726 author: "ludwigkr" repo: "https://github.com/ludwigkr/vscode-tango-plus-theme" url: "https://marketplace.visualstudio.com/items?itemName=ludwigkr.emacs-tango-plus" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/tango.yaml b/themes/tango.yaml index d45407cb..0975caa1 100644 --- a/themes/tango.yaml +++ b/themes/tango.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/tanuki.yaml b/themes/tanuki.yaml index 4dc89aac..ae69f91d 100644 --- a/themes/tanuki.yaml +++ b/themes/tanuki.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 276 + pair: null contrast: fg: 85.6 black: 0 diff --git a/themes/tao-theme.yaml b/themes/tao-theme.yaml index d5144a92..cdb4a352 100644 --- a/themes/tao-theme.yaml +++ b/themes/tao-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.2 black: 8.8 diff --git a/themes/taquito-darker.yaml b/themes/taquito-darker.yaml index 2eaa3a99..39326a05 100644 --- a/themes/taquito-darker.yaml +++ b/themes/taquito-darker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 275 + pair: null contrast: fg: 43.7 black: 9.3 diff --git a/themes/taquito-lighter.yaml b/themes/taquito-lighter.yaml index 0d32e503..e87a406e 100644 --- a/themes/taquito-lighter.yaml +++ b/themes/taquito-lighter.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 71.5 black: 81.7 diff --git a/themes/tara-theme-carbon-high-contrast.yaml b/themes/tara-theme-carbon-high-contrast.yaml index f3c1c38a..05c5e57b 100644 --- a/themes/tara-theme-carbon-high-contrast.yaml +++ b/themes/tara-theme-carbon-high-contrast.yaml @@ -2,7 +2,7 @@ name: "Tara-Theme-Carbon-High-Contrast" source: marketplace_id: "Taraldinn.nishuuu-themes" version: "4.2.0" - installs: 547 + installs: 548 author: "Taraldinn" repo: "https://github.com/nishuuu/nishuuu-themes" url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83 black: 0 diff --git a/themes/tara-theme-carbon.yaml b/themes/tara-theme-carbon.yaml index 2a22be8c..42c532cb 100644 --- a/themes/tara-theme-carbon.yaml +++ b/themes/tara-theme-carbon.yaml @@ -2,7 +2,7 @@ name: "Tara-Theme-Carbon" source: marketplace_id: "Taraldinn.nishuuu-themes" version: "4.2.0" - installs: 547 + installs: 548 author: "Taraldinn" repo: "https://github.com/nishuuu/nishuuu-themes" url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.4 black: 0 diff --git a/themes/tara-theme-deepforest.yaml b/themes/tara-theme-deepforest.yaml index b6364d48..b639af2f 100644 --- a/themes/tara-theme-deepforest.yaml +++ b/themes/tara-theme-deepforest.yaml @@ -2,7 +2,7 @@ name: "Tara-Theme-Deepforest" source: marketplace_id: "Taraldinn.nishuuu-themes" version: "4.2.0" - installs: 547 + installs: 548 author: "Taraldinn" repo: "https://github.com/nishuuu/nishuuu-themes" url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 176 + pair: null contrast: fg: 86 black: 0 diff --git a/themes/tara-theme-graphene.yaml b/themes/tara-theme-graphene.yaml deleted file mode 100644 index 27fd6c6a..00000000 --- a/themes/tara-theme-graphene.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Tara-Theme-Graphene" -source: - marketplace_id: "Taraldinn.nishuuu-themes" - version: "4.2.0" - installs: 547 - author: "Taraldinn" - repo: "https://github.com/nishuuu/nishuuu-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" -colors: - bg: "#212121" - fg: "#D9D9D9" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#545454" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 81.3 - black: 0 - red: 45.3 - green: 82.9 - yellow: 77.7 - blue: 54.7 - magenta: 52.5 - cyan: 77 - white: 105.6 - brightBlack: 13.5 - brightRed: 45.3 - brightGreen: 82.9 - brightYellow: 77.7 - brightBlue: 54.7 - brightMagenta: 52.5 - brightCyan: 77 - brightWhite: 105.6 diff --git a/themes/tara-theme-ocean.yaml b/themes/tara-theme-ocean.yaml index 8f962309..b28a69c2 100644 --- a/themes/tara-theme-ocean.yaml +++ b/themes/tara-theme-ocean.yaml @@ -2,7 +2,7 @@ name: "Tara-Theme-Ocean" source: marketplace_id: "Taraldinn.nishuuu-themes" version: "4.2.0" - installs: 547 + installs: 548 author: "Taraldinn" repo: "https://github.com/nishuuu/nishuuu-themes" url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 78.6 black: 0 diff --git a/themes/tara-theme-palenight.yaml b/themes/tara-theme-palenight.yaml index 29507edc..354d3897 100644 --- a/themes/tara-theme-palenight.yaml +++ b/themes/tara-theme-palenight.yaml @@ -2,7 +2,7 @@ name: "Tara-Theme-Palenight" source: marketplace_id: "Taraldinn.nishuuu-themes" version: "4.2.0" - installs: 547 + installs: 548 author: "Taraldinn" repo: "https://github.com/nishuuu/nishuuu-themes" url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 74.5 black: 0 diff --git a/themes/tara-theme-teal.yaml b/themes/tara-theme-teal.yaml index ccc2f201..cf917ed4 100644 --- a/themes/tara-theme-teal.yaml +++ b/themes/tara-theme-teal.yaml @@ -2,7 +2,7 @@ name: "Tara-Theme-Teal" source: marketplace_id: "Taraldinn.nishuuu-themes" version: "4.2.0" - installs: 547 + installs: 548 author: "Taraldinn" repo: "https://github.com/nishuuu/nishuuu-themes" url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 230 + pair: null contrast: fg: 81.2 black: 0 diff --git a/themes/taramandal-aurora.yaml b/themes/taramandal-aurora.yaml index 577b56d6..bd35a0a0 100644 --- a/themes/taramandal-aurora.yaml +++ b/themes/taramandal-aurora.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 223 + pair: null contrast: fg: 97.1 black: 0 diff --git a/themes/taramandal-dark.yaml b/themes/taramandal-dark.yaml index abfc8e34..bb9a32ad 100644 --- a/themes/taramandal-dark.yaml +++ b/themes/taramandal-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 249 + pair: null contrast: fg: 98.8 black: 0 diff --git a/themes/taramandal-true-cream.yaml b/themes/taramandal-true-cream.yaml index bbd6ffe4..9585269f 100644 --- a/themes/taramandal-true-cream.yaml +++ b/themes/taramandal-true-cream.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: 82 + pair: null contrast: fg: 84.4 black: 85.2 diff --git a/themes/tasmania-dark.yaml b/themes/tasmania-dark.yaml index 06f5dafd..4874f382 100644 --- a/themes/tasmania-dark.yaml +++ b/themes/tasmania-dark.yaml @@ -1,8 +1,8 @@ name: "Tasmania Dark" source: marketplace_id: "lucidlabs.tasmania-theme" - version: "1.1.0" - installs: 0 + version: "1.3.0" + installs: 2 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.tasmania-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 245 + pair: "Tasmania Light" contrast: fg: 95.2 black: 0 diff --git a/themes/tasmania-light.yaml b/themes/tasmania-light.yaml index 3caba3c1..8c5dbb73 100644 --- a/themes/tasmania-light.yaml +++ b/themes/tasmania-light.yaml @@ -1,8 +1,8 @@ name: "Tasmania Light" source: marketplace_id: "lucidlabs.tasmania-theme" - version: "1.1.0" - installs: 0 + version: "1.3.0" + installs: 2 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.tasmania-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Tasmania Dark" contrast: fg: 105.3 black: 105.3 diff --git a/themes/taurus.yaml b/themes/taurus.yaml index 39d922e3..174a9af9 100644 --- a/themes/taurus.yaml +++ b/themes/taurus.yaml @@ -2,7 +2,7 @@ name: "Taurus" source: marketplace_id: "xyr0z1ne.taurus" version: "0.0.5" - installs: 2808 + installs: 2809 author: "xyr0z1ne" repo: "https://github.com/Xyr0s1gn/Taurus-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=xyr0z1ne.taurus" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 62.1 black: 0 diff --git a/themes/tbs-theme.yaml b/themes/tbs-theme.yaml index de4021ce..1f56f2c5 100644 --- a/themes/tbs-theme.yaml +++ b/themes/tbs-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 54.2 black: 0 diff --git a/themes/tea-leaves.yaml b/themes/tea-leaves.yaml index 2fcac243..d2146329 100644 --- a/themes/tea-leaves.yaml +++ b/themes/tea-leaves.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.6 black: 0 diff --git a/themes/teags.yaml b/themes/teags.yaml index 3fca035b..82d3995e 100644 --- a/themes/teags.yaml +++ b/themes/teags.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 242 + pair: null contrast: fg: 95 black: 13.4 diff --git a/themes/teal-crow-light.yaml b/themes/teal-crow-light.yaml index a7b7f5ea..a08d4e73 100644 --- a/themes/teal-crow-light.yaml +++ b/themes/teal-crow-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 85 + pair: null contrast: fg: 72.5 black: 29.4 diff --git a/themes/teal.yaml b/themes/teal.yaml index 9be344b1..7f42e658 100644 --- a/themes/teal.yaml +++ b/themes/teal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "blue" hue: null + pair: null contrast: fg: 71.5 black: 0 diff --git a/themes/tealicious.yaml b/themes/tealicious.yaml index 4230c027..ebb71203 100644 --- a/themes/tealicious.yaml +++ b/themes/tealicious.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 266 + pair: null contrast: fg: 86.4 black: 0 diff --git a/themes/tealy.yaml b/themes/tealy.yaml index 37459fa4..83b1230b 100644 --- a/themes/tealy.yaml +++ b/themes/tealy.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 167 + pair: null contrast: fg: 97.6 black: 9.7 diff --git a/themes/team-pastel-colors-theme.yaml b/themes/team-pastel-colors-theme.yaml index 04897ece..c75a8e6e 100644 --- a/themes/team-pastel-colors-theme.yaml +++ b/themes/team-pastel-colors-theme.yaml @@ -2,7 +2,7 @@ name: "Team Pastel Colors Theme" source: marketplace_id: "zumba29.team-pastel-colors" version: "0.0.1" - installs: 346 + installs: 347 author: "zumba29" repo: "https://github.com/sahilmtayade/pastel-colors-theme" url: "https://marketplace.visualstudio.com/items?itemName=zumba29.team-pastel-colors" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 94.5 black: 0 diff --git a/themes/tearz.yaml b/themes/tearz.yaml index 1377506f..e2138677 100644 --- a/themes/tearz.yaml +++ b/themes/tearz.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 267 + pair: null contrast: fg: 57.1 black: 0 diff --git a/themes/techrazor-pro.yaml b/themes/techrazor-pro.yaml index 877f3fcb..4ede12fe 100644 --- a/themes/techrazor-pro.yaml +++ b/themes/techrazor-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 306 + pair: null contrast: fg: 98.6 black: 19.5 diff --git a/themes/techswahili-color-theme.yaml b/themes/techswahili-color-theme.yaml index 9e345a17..36f551d0 100644 --- a/themes/techswahili-color-theme.yaml +++ b/themes/techswahili-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 97.4 black: 0 diff --git a/themes/techswahili-deep.yaml b/themes/techswahili-deep.yaml index 7de154d8..142553f3 100644 --- a/themes/techswahili-deep.yaml +++ b/themes/techswahili-deep.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 280 + pair: null contrast: fg: 99 black: 0 diff --git a/themes/techswahili-modern-dark.yaml b/themes/techswahili-modern-dark.yaml index 45dbe182..b9460df3 100644 --- a/themes/techswahili-modern-dark.yaml +++ b/themes/techswahili-modern-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 266 + pair: null contrast: fg: 91.4 black: 0 diff --git a/themes/tecoma-theme.yaml b/themes/tecoma-theme.yaml index 1235c470..e7420ee6 100644 --- a/themes/tecoma-theme.yaml +++ b/themes/tecoma-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 64.9 black: 0 diff --git a/themes/telescope-fork.yaml b/themes/telescope-fork.yaml index 9be245c0..f33bbffb 100644 --- a/themes/telescope-fork.yaml +++ b/themes/telescope-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: null contrast: fg: 68.2 black: 0 diff --git a/themes/telescope.yaml b/themes/telescope.yaml index b944627a..e7be180d 100644 --- a/themes/telescope.yaml +++ b/themes/telescope.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 281 + pair: null contrast: fg: 72.4 black: 0 diff --git a/themes/tema-dark-nero.yaml b/themes/tema-dark-nero.yaml index 4f1b04b4..e01af103 100644 --- a/themes/tema-dark-nero.yaml +++ b/themes/tema-dark-nero.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 103.8 black: 0 diff --git a/themes/tema-dos-cria.yaml b/themes/tema-dos-cria.yaml index 9b6b5c02..6926215b 100644 --- a/themes/tema-dos-cria.yaml +++ b/themes/tema-dos-cria.yaml @@ -2,7 +2,7 @@ name: "Tema dos cria" source: marketplace_id: "nul0.tema-dos-cria" version: "0.0.1" - installs: 924 + installs: 925 author: "nul0" repo: "https://github.com/Nulo0/tema-dos-cria" url: "https://marketplace.visualstudio.com/items?itemName=nul0.tema-dos-cria" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 280 + pair: null contrast: fg: 59.3 black: 0 diff --git a/themes/tema-felipao.yaml b/themes/tema-felipao.yaml index 5fbfcc7c..4abeb50b 100644 --- a/themes/tema-felipao.yaml +++ b/themes/tema-felipao.yaml @@ -1,11 +1,11 @@ name: "tema felipao" source: - marketplace_id: "FelipeGalati.felipaptest" + marketplace_id: "FelipeGalati.felipaotema" version: "0.0.1" - installs: 64 + installs: 54 author: "Felipe Galati" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=FelipeGalati.felipaptest" + url: "https://marketplace.visualstudio.com/items?itemName=FelipeGalati.felipaotema" colors: bg: "#0E0619" fg: "#B2ACBC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 302 + pair: null contrast: fg: 58.5 black: 0 diff --git a/themes/teneblattinus.yaml b/themes/teneblattinus.yaml index 927a909c..9ea3330a 100644 --- a/themes/teneblattinus.yaml +++ b/themes/teneblattinus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 316 + pair: null contrast: fg: 72.1 black: 0 diff --git a/themes/tenebris.yaml b/themes/tenebris.yaml index c030f0c9..6b234eca 100644 --- a/themes/tenebris.yaml +++ b/themes/tenebris.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 53.7 black: 0 diff --git a/themes/terafox.yaml b/themes/terafox.yaml index d696abb4..cba0fad7 100644 --- a/themes/terafox.yaml +++ b/themes/terafox.yaml @@ -2,7 +2,7 @@ name: "Terafox" source: marketplace_id: "keifererikson.nightfox" version: "0.0.14" - installs: 17378 + installs: 17385 author: "Keifer Erikson" repo: "https://github.com/keifererikson/vscode-nightfox" url: "https://marketplace.visualstudio.com/items?itemName=keifererikson.nightfox" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 211 + pair: null contrast: fg: 74.3 black: 0 diff --git a/themes/term.yaml b/themes/term.yaml index e5b0f10e..ec5fb6f0 100644 --- a/themes/term.yaml +++ b/themes/term.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 261 + pair: null contrast: fg: 62.2 black: 13.2 diff --git a/themes/terminal.yaml b/themes/terminal.yaml index 5701aed7..83f53921 100644 --- a/themes/terminal.yaml +++ b/themes/terminal.yaml @@ -1,49 +1,50 @@ name: "Terminal" source: - marketplace_id: "VillageOfGamers.classic-terminal-revisited" - version: "1.0.0" - installs: 347 - author: "Village of Gamers" - repo: "https://github.com/VillageOfGamers/classic-terminal-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=VillageOfGamers.classic-terminal-revisited" + marketplace_id: "YesCode.terminal-theme" + version: "0.0.9" + installs: 9264 + author: "YesCode" + repo: "https://github.com/yesomac/terminal" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.terminal-theme" colors: - bg: "#000000" - fg: "#00FF00" - black: "#555555" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFFF00" - blue: "#0000FF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#555555" - brightRed: "#FF0000" - brightGreen: "#00FF00" - brightYellow: "#FFFF00" - brightBlue: "#0000FF" - brightMagenta: "#FF00FF" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" + bg: "#0A0A0A" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#CFBDFA" + brightYellow: "#E7F0FF" + brightBlue: "#1E8094" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" meta: mode: "dark" - accent: "pink" + accent: "orange" hue: null + pair: null contrast: - fg: 86.5 - black: 16.1 - red: 37.5 - green: 86.5 - yellow: 102.7 - blue: 16.2 - magenta: 46.2 - cyan: 92.2 - white: 107.9 - brightBlack: 16.1 - brightRed: 37.5 - brightGreen: 86.5 - brightYellow: 102.7 - brightBlue: 16.2 - brightMagenta: 46.2 - brightCyan: 92.2 - brightWhite: 107.9 + fg: 105.4 + black: 0 + red: 42.8 + green: 61.8 + yellow: 73.9 + blue: 48.4 + magenta: 20.4 + cyan: 50.3 + white: 48.1 + brightBlack: 19.4 + brightRed: 42.8 + brightGreen: 72.1 + brightYellow: 97.4 + brightBlue: 30 + brightMagenta: 20.4 + brightCyan: 50.3 + brightWhite: 99.7 diff --git a/themes/terracecat.yaml b/themes/terracecat.yaml index f5be8661..4f2110a6 100644 --- a/themes/terracecat.yaml +++ b/themes/terracecat.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 230 + pair: null contrast: fg: 100.4 black: 0 diff --git a/themes/terrarium-minimal-dark.yaml b/themes/terrarium-minimal-dark.yaml index a487fc1f..616418e7 100644 --- a/themes/terrarium-minimal-dark.yaml +++ b/themes/terrarium-minimal-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 90.2 black: 0 diff --git a/themes/terrarium-minimal-light.yaml b/themes/terrarium-minimal-light.yaml index 8140d9a7..11153611 100644 --- a/themes/terrarium-minimal-light.yaml +++ b/themes/terrarium-minimal-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 87.4 black: 87.4 diff --git a/themes/terrorboy-dark.yaml b/themes/terrorboy-dark.yaml index 0d0bb9cf..ade91d20 100644 --- a/themes/terrorboy-dark.yaml +++ b/themes/terrorboy-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.2 black: 0 diff --git a/themes/tesselate.yaml b/themes/tesselate.yaml index 311be888..6f5d5d2b 100644 --- a/themes/tesselate.yaml +++ b/themes/tesselate.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 269 + pair: null contrast: fg: 78.3 black: 8 diff --git a/themes/tesseract-dark.yaml b/themes/tesseract-dark.yaml index 701d257e..f170d2a5 100644 --- a/themes/tesseract-dark.yaml +++ b/themes/tesseract-dark.yaml @@ -2,7 +2,7 @@ name: "Tesseract Dark" source: marketplace_id: "martian.tesseract" version: "1.5.0" - installs: 6300 + installs: 6308 author: "Endurance the Martian 👽" repo: "https://github.com/hendurhance/tesseract" url: "https://marketplace.visualstudio.com/items?itemName=martian.tesseract" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 262 + pair: null contrast: fg: 104.1 black: 0 diff --git a/themes/test.yaml b/themes/test.yaml index bd140f12..dacad03d 100644 --- a/themes/test.yaml +++ b/themes/test.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 107.6 black: 0 diff --git a/themes/tetra-contrast.yaml b/themes/tetra-contrast.yaml index 42ae8331..f7f9396a 100644 --- a/themes/tetra-contrast.yaml +++ b/themes/tetra-contrast.yaml @@ -1,11 +1,11 @@ name: "tetra-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#050F11" fg: "#C9D7DB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 210 + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/tetra-light.yaml b/themes/tetra-light.yaml index 17171a28..6554cf83 100644 --- a/themes/tetra-light.yaml +++ b/themes/tetra-light.yaml @@ -1,11 +1,11 @@ name: "tetra-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#205A68" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 86.6 black: 0 diff --git a/themes/tetra.yaml b/themes/tetra.yaml index f347cbb5..96c9072f 100644 --- a/themes/tetra.yaml +++ b/themes/tetra.yaml @@ -1,11 +1,11 @@ name: "tetra" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#13363F" fg: "#C9D7DB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 217 + pair: null contrast: fg: 75.1 black: 0 diff --git a/themes/teutobourg.yaml b/themes/teutobourg.yaml index 0850ff8a..d8a4dfa3 100644 --- a/themes/teutobourg.yaml +++ b/themes/teutobourg.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 57 + pair: null contrast: fg: 24.2 black: 0 diff --git a/themes/textmate-rstheme.yaml b/themes/textmate-rstheme.yaml index 35fea880..8680ae94 100644 --- a/themes/textmate-rstheme.yaml +++ b/themes/textmate-rstheme.yaml @@ -2,7 +2,7 @@ name: "textmate.rstheme" source: marketplace_id: "nanxstats.textmate-rstheme" version: "2026.1.0" - installs: 2611 + installs: 2612 author: "Nan Xiao" repo: "https://github.com/nanxstats/vscode-textmate-rstheme" url: "https://marketplace.visualstudio.com/items?itemName=nanxstats.textmate-rstheme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 106 black: 101.5 diff --git a/themes/th-me-dark-avril-vert-printemps.yaml b/themes/th-me-dark-avril-vert-printemps.yaml index 609b1f93..ef314064 100644 --- a/themes/th-me-dark-avril-vert-printemps.yaml +++ b/themes/th-me-dark-avril-vert-printemps.yaml @@ -2,7 +2,7 @@ name: "Thème Dark Avril - Vert Printemps" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 95.6 black: 0 diff --git a/themes/th-me-dark-janvier-bleu-fonc.yaml b/themes/th-me-dark-janvier-bleu-fonc.yaml index 1dc7e6f2..ca7bad6b 100644 --- a/themes/th-me-dark-janvier-bleu-fonc.yaml +++ b/themes/th-me-dark-janvier-bleu-fonc.yaml @@ -2,7 +2,7 @@ name: "Thème Dark Janvier - Bleu Foncé" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 251 + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/th-me-dark-juillet-contraste-lev.yaml b/themes/th-me-dark-juillet-contraste-lev.yaml index 4ace9ce3..25e42259 100644 --- a/themes/th-me-dark-juillet-contraste-lev.yaml +++ b/themes/th-me-dark-juillet-contraste-lev.yaml @@ -2,7 +2,7 @@ name: "Thème Dark Juillet - Contraste Élevé" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 242 + pair: null contrast: fg: 97.4 black: 0 diff --git a/themes/th-me-dark-juin-high-contrast.yaml b/themes/th-me-dark-juin-high-contrast.yaml index 0cdadc0d..a04daefd 100644 --- a/themes/th-me-dark-juin-high-contrast.yaml +++ b/themes/th-me-dark-juin-high-contrast.yaml @@ -2,7 +2,7 @@ name: "Thème Dark Juin - High Contrast" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/th-me-dark-septembre-contraste-lev.yaml b/themes/th-me-dark-septembre-contraste-lev.yaml deleted file mode 100644 index 97378391..00000000 --- a/themes/th-me-dark-septembre-contraste-lev.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Thème Dark Septembre - Contraste Élevé" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 821 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFFF00" - blue: "#0000FF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#555555" - brightRed: "#FF5555" - brightGreen: "#55FF55" - brightYellow: "#FFFF55" - brightBlue: "#5555FF" - brightMagenta: "#FF55FF" - brightCyan: "#55FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 107.9 - black: 0 - red: 37.5 - green: 86.5 - yellow: 102.7 - blue: 16.2 - magenta: 46.2 - cyan: 92.2 - white: 107.9 - brightBlack: 16.1 - brightRed: 44.4 - brightGreen: 88.1 - brightYellow: 103.1 - brightBlue: 27.4 - brightMagenta: 51.9 - brightCyan: 93.4 - brightWhite: 107.9 diff --git a/themes/th-me-high-contrast-janvier-r-vis.yaml b/themes/th-me-high-contrast-janvier-r-vis.yaml index 06c4a2de..9b08d90b 100644 --- a/themes/th-me-high-contrast-janvier-r-vis.yaml +++ b/themes/th-me-high-contrast-janvier-r-vis.yaml @@ -2,7 +2,7 @@ name: "Thème High Contrast Janvier - Révisé" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/th-me-sombre-d-automne.yaml b/themes/th-me-sombre-d-automne.yaml index 96bed23d..461ffb56 100644 --- a/themes/th-me-sombre-d-automne.yaml +++ b/themes/th-me-sombre-d-automne.yaml @@ -2,7 +2,7 @@ name: "Thème Sombre d'Automne" source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" - installs: 821 + installs: 822 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 57 + pair: null contrast: fg: 80.9 black: 0 diff --git a/themes/thanatos.yaml b/themes/thanatos.yaml index 3c64e113..e86aa648 100644 --- a/themes/thanatos.yaml +++ b/themes/thanatos.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 83 black: 86.3 diff --git a/themes/thatdatapurple.yaml b/themes/thatdatapurple.yaml index 1201408f..50be8bb9 100644 --- a/themes/thatdatapurple.yaml +++ b/themes/thatdatapurple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 279 + pair: null contrast: fg: 66.4 black: 14.7 diff --git a/themes/the-best-theme-ever.yaml b/themes/the-best-theme-ever.yaml index 63d9d599..9f73880a 100644 --- a/themes/the-best-theme-ever.yaml +++ b/themes/the-best-theme-ever.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 68.4 black: 12.5 diff --git a/themes/the-dark-stove.yaml b/themes/the-dark-stove.yaml index 2b0ec77d..3322b165 100644 --- a/themes/the-dark-stove.yaml +++ b/themes/the-dark-stove.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.9 black: 9.8 diff --git a/themes/the-digital-life.yaml b/themes/the-digital-life.yaml index baf0d764..cab1fb17 100644 --- a/themes/the-digital-life.yaml +++ b/themes/the-digital-life.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 77 black: 0 diff --git a/themes/the-empire.yaml b/themes/the-empire.yaml index d0a25f3a..dc9cccaa 100644 --- a/themes/the-empire.yaml +++ b/themes/the-empire.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 74.1 black: 0 diff --git a/themes/the-end-of-development.yaml b/themes/the-end-of-development.yaml index f86dadf8..31ef7b67 100644 --- a/themes/the-end-of-development.yaml +++ b/themes/the-end-of-development.yaml @@ -2,7 +2,7 @@ name: "The End Of Development" source: marketplace_id: "tecnomazov.evas-code" version: "1.0.0" - installs: 1059 + installs: 1061 author: "TecnoMazov" repo: "https://github.com/JuditKaramazov/TCA-EVASCode" url: "https://marketplace.visualstudio.com/items?itemName=tecnomazov.evas-code" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 83 black: 0 diff --git a/themes/the-flying-dutchman-high-contrast.yaml b/themes/the-flying-dutchman-high-contrast.yaml index 1b4fdc0f..4db8562c 100644 --- a/themes/the-flying-dutchman-high-contrast.yaml +++ b/themes/the-flying-dutchman-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: null contrast: fg: 107.1 black: 0 diff --git a/themes/the-flying-dutchman-soft.yaml b/themes/the-flying-dutchman-soft.yaml index 999acca6..9d951cf1 100644 --- a/themes/the-flying-dutchman-soft.yaml +++ b/themes/the-flying-dutchman-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: null contrast: fg: 77 black: 12.2 diff --git a/themes/the-flying-dutchman.yaml b/themes/the-flying-dutchman.yaml index 60f98f67..e75463fa 100644 --- a/themes/the-flying-dutchman.yaml +++ b/themes/the-flying-dutchman.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 256 + pair: null contrast: fg: 69.3 black: 0 diff --git a/themes/the-gentleman.yaml b/themes/the-gentleman.yaml index 76374a75..80c81abd 100644 --- a/themes/the-gentleman.yaml +++ b/themes/the-gentleman.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/the-one-theme.yaml b/themes/the-one-theme.yaml index c2103fbe..4b843468 100644 --- a/themes/the-one-theme.yaml +++ b/themes/the-one-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 71 + pair: null contrast: fg: 100.5 black: 0 diff --git a/themes/the-only-tolerable-light-theme.yaml b/themes/the-only-tolerable-light-theme.yaml index 32ebe616..6b668748 100644 --- a/themes/the-only-tolerable-light-theme.yaml +++ b/themes/the-only-tolerable-light-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 96.5 black: 96.5 diff --git a/themes/the-orchid-dark.yaml b/themes/the-orchid-dark.yaml index 1482e3dd..673b58c1 100644 --- a/themes/the-orchid-dark.yaml +++ b/themes/the-orchid-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 316 + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/the-orchid-light.yaml b/themes/the-orchid-light.yaml index 7a194ef6..01cfb20e 100644 --- a/themes/the-orchid-light.yaml +++ b/themes/the-orchid-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 95.7 black: 95.7 diff --git a/themes/the-orchid-soft.yaml b/themes/the-orchid-soft.yaml index 1f4a7d83..6890a2ce 100644 --- a/themes/the-orchid-soft.yaml +++ b/themes/the-orchid-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 314 + pair: null contrast: fg: 97.1 black: 0 diff --git a/themes/the-theme.yaml b/themes/the-theme.yaml index 8dd3821e..967427aa 100644 --- a/themes/the-theme.yaml +++ b/themes/the-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 48 black: 0 diff --git a/themes/theaisphere-dark.yaml b/themes/theaisphere-dark.yaml index 720c6a46..568401d9 100644 --- a/themes/theaisphere-dark.yaml +++ b/themes/theaisphere-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 285 + pair: null contrast: fg: 104.1 black: 0 diff --git a/themes/theaisphere-light.yaml b/themes/theaisphere-light.yaml index 2c8b68a7..2deb7fee 100644 --- a/themes/theaisphere-light.yaml +++ b/themes/theaisphere-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 94.6 black: 98 diff --git a/themes/thedarkerone.yaml b/themes/thedarkerone.yaml index a7e6972b..51b57d62 100644 --- a/themes/thedarkerone.yaml +++ b/themes/thedarkerone.yaml @@ -2,7 +2,7 @@ name: "TheDarkerOne" source: marketplace_id: "ozguncagri.thedarkerone" version: "0.0.4" - installs: 334 + installs: 335 author: "Özgün Çağrı AYDIN" repo: "https://github.com/ozguncagri/TheDarkerOne" url: "https://marketplace.visualstudio.com/items?itemName=ozguncagri.thedarkerone" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60 black: 9.5 diff --git a/themes/themarro-dark-contrast.yaml b/themes/themarro-dark-contrast.yaml index bef681cd..a7563126 100644 --- a/themes/themarro-dark-contrast.yaml +++ b/themes/themarro-dark-contrast.yaml @@ -2,7 +2,7 @@ name: "Themarro Dark Contrast" source: marketplace_id: "aelmessaarab.themarro" version: "0.1.2" - installs: 10029 + installs: 10032 author: "aelmessaarab" repo: "https://github.com/adamthecro/Themarro" url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 251 + pair: null contrast: fg: 80.4 black: 8.7 diff --git a/themes/themarro-david-remix.yaml b/themes/themarro-david-remix.yaml index 557334f8..97ed7fab 100644 --- a/themes/themarro-david-remix.yaml +++ b/themes/themarro-david-remix.yaml @@ -2,7 +2,7 @@ name: "Themarro David Remix" source: marketplace_id: "aelmessaarab.themarro" version: "0.1.2" - installs: 10029 + installs: 10032 author: "aelmessaarab" repo: "https://github.com/adamthecro/Themarro" url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 107.6 black: 0 diff --git a/themes/themarro.yaml b/themes/themarro.yaml index 2758f90f..0da38cd4 100644 --- a/themes/themarro.yaml +++ b/themes/themarro.yaml @@ -2,7 +2,7 @@ name: "Themarro" source: marketplace_id: "aelmessaarab.themarro" version: "0.1.2" - installs: 10029 + installs: 10032 author: "aelmessaarab" repo: "https://github.com/adamthecro/Themarro" url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 269 + pair: null contrast: fg: 80.3 black: 8.6 diff --git a/themes/theme-bear.yaml b/themes/theme-bear.yaml index 5d5af8f2..227c7d13 100644 --- a/themes/theme-bear.yaml +++ b/themes/theme-bear.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 58.5 black: 13.6 diff --git a/themes/theme-dark.yaml b/themes/theme-dark.yaml index ea578895..33c7b206 100644 --- a/themes/theme-dark.yaml +++ b/themes/theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 76.1 black: 0 diff --git a/themes/theme-for-codes-dark.yaml b/themes/theme-for-codes-dark.yaml index 3d4290e5..3d44f49e 100644 --- a/themes/theme-for-codes-dark.yaml +++ b/themes/theme-for-codes-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Theme For Codes - Light" contrast: fg: 91.6 black: 0 diff --git a/themes/theme-for-codes-light.yaml b/themes/theme-for-codes-light.yaml index 9bac13e4..2f7045c2 100644 --- a/themes/theme-for-codes-light.yaml +++ b/themes/theme-for-codes-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Theme For Codes - Dark" contrast: fg: 104.3 black: 106 diff --git a/themes/theme-joey.yaml b/themes/theme-joey.yaml index 72ef3940..9234eebc 100644 --- a/themes/theme-joey.yaml +++ b/themes/theme-joey.yaml @@ -2,7 +2,7 @@ name: "theme-joey" source: marketplace_id: "xshapira.joey-theme" version: "3.3.8" - installs: 1134 + installs: 1136 author: "xshapira" repo: "https://github.com/xshapira/joey" url: "https://marketplace.visualstudio.com/items?itemName=xshapira.joey-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 58.5 black: 13.6 diff --git a/themes/theme-mk-1-green.yaml b/themes/theme-mk-1-green.yaml deleted file mode 100644 index 24ac9b65..00000000 --- a/themes/theme-mk-1-green.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "theme-mk 1 green" -source: - marketplace_id: "dev-mk02.theme-mk" - version: "0.6.0" - installs: 36 - author: "mk-02" - repo: "https://github.com/leeminki02/theme-mk" - url: "https://marketplace.visualstudio.com/items?itemName=dev-mk02.theme-mk" -colors: - bg: "#1A1B1E" - fg: "#CDCECE" - black: "#1E232B" - red: "#EA6C73" - green: "#7FD962" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#CDA1FA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAD94C" - brightYellow: "#FFB454" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 75.3 - black: 0 - red: 43.6 - green: 69.6 - yellow: 66.1 - blue: 60.1 - magenta: 60.2 - cyan: 77.4 - white: 71.2 - brightBlack: 22.4 - brightRed: 46.1 - brightGreen: 72.9 - brightYellow: 69.1 - brightBlue: 62.9 - brightMagenta: 62.9 - brightCyan: 80.4 - brightWhite: 106.4 diff --git a/themes/theme-mk-rebuilt.yaml b/themes/theme-mk-rebuilt.yaml index 82d88d5b..ccd836d4 100644 --- a/themes/theme-mk-rebuilt.yaml +++ b/themes/theme-mk-rebuilt.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 75.3 black: 0 diff --git a/themes/theme-nickel.yaml b/themes/theme-nickel.yaml index c350a8de..76cdc996 100644 --- a/themes/theme-nickel.yaml +++ b/themes/theme-nickel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 61.7 black: 0 diff --git a/themes/theme-one.yaml b/themes/theme-one.yaml index ac36be94..03d850c8 100644 --- a/themes/theme-one.yaml +++ b/themes/theme-one.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 106.4 black: 0 diff --git a/themes/theme-stick-green-dark.yaml b/themes/theme-stick-green-dark.yaml index 89dc1df3..50e59279 100644 --- a/themes/theme-stick-green-dark.yaml +++ b/themes/theme-stick-green-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 277 + pair: null contrast: fg: 76 black: 0 diff --git a/themes/theme-y-random.yaml b/themes/theme-y-random.yaml index 28d60063..5fa3c017 100644 --- a/themes/theme-y-random.yaml +++ b/themes/theme-y-random.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 263 + pair: null contrast: fg: 106.9 black: 0 diff --git a/themes/theme.yaml b/themes/theme.yaml index 9a8ac621..8792cb19 100644 --- a/themes/theme.yaml +++ b/themes/theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 284 + pair: null contrast: fg: 106.4 black: 0 diff --git a/themes/themedarker.yaml b/themes/themedarker.yaml index 6b7aaa13..d3f9af41 100644 --- a/themes/themedarker.yaml +++ b/themes/themedarker.yaml @@ -2,7 +2,7 @@ name: "ThemeDarker" source: marketplace_id: "tal7aouy.theme" version: "3.1.0" - installs: 1510124 + installs: 1510543 author: "Mhammed Talhaouy" repo: "https://github.com/tal7aouy/theme" url: "https://marketplace.visualstudio.com/items?itemName=tal7aouy.theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: null contrast: fg: 57.2 black: 0 diff --git a/themes/themeframek.yaml b/themes/themeframek.yaml index eeb39718..89dcdfbc 100644 --- a/themes/themeframek.yaml +++ b/themes/themeframek.yaml @@ -7,7 +7,7 @@ source: repo: "https://github.com/y3mm/ThemeFramework" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.themeframek" colors: - bg: "#141516" + bg: "#121212" fg: "#EEFFFF" black: "#1D2021" red: "#FB543F" @@ -19,7 +19,7 @@ colors: white: "#A89984" brightBlack: "#665C54" brightRed: "#FB543F" - brightGreen: "#60AEF7" + brightGreen: "#FFF2B7" brightYellow: "#E7F0FF" brightBlue: "#0D6678" brightMagenta: "#8F4673" @@ -29,21 +29,22 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: - fg: 104.8 + fg: 105 black: 0 - red: 42.2 - green: 61.2 - yellow: 73.3 - blue: 47.7 - magenta: 19.7 - cyan: 49.6 - white: 47.4 - brightBlack: 18.8 - brightRed: 42.2 - brightGreen: 54.9 - brightYellow: 96.8 - brightBlue: 18.9 - brightMagenta: 19.7 - brightCyan: 49.6 - brightWhite: 99.1 + red: 42.4 + green: 61.4 + yellow: 73.5 + blue: 47.9 + magenta: 19.9 + cyan: 49.9 + white: 47.7 + brightBlack: 19 + brightRed: 42.4 + brightGreen: 98.3 + brightYellow: 97 + brightBlue: 19.2 + brightMagenta: 19.9 + brightCyan: 49.9 + brightWhite: 99.3 diff --git a/themes/themegreen.yaml b/themes/themegreen.yaml index e7b653f8..2c40e878 100644 --- a/themes/themegreen.yaml +++ b/themes/themegreen.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/themename.yaml b/themes/themename.yaml index e85ffbad..83ef5dbb 100644 --- a/themes/themename.yaml +++ b/themes/themename.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 249 + pair: null contrast: fg: 75.7 black: 0 diff --git a/themes/themenis.yaml b/themes/themenis.yaml index 3dd14584..e901678b 100644 --- a/themes/themenis.yaml +++ b/themes/themenis.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 96.1 black: 0 diff --git a/themes/themeo.yaml b/themes/themeo.yaml index 09ae5452..2845f59c 100644 --- a/themes/themeo.yaml +++ b/themes/themeo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/themepurple.yaml b/themes/themepurple.yaml index 2fa09b35..c1978605 100644 --- a/themes/themepurple.yaml +++ b/themes/themepurple.yaml @@ -2,7 +2,7 @@ name: "ThemePurple" source: marketplace_id: "KelsonCarvalho.roxotema" version: "2.0.0" - installs: 1035 + installs: 1039 author: "Kelson Carvalho" repo: "https://github.com/NoslekCode/VsCode_Tema_Roxo_Dark" url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.roxotema" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 333 + pair: null contrast: fg: 79 black: 0 diff --git a/themes/themer-dark.yaml b/themes/themer-dark.yaml index 5371ff95..fff73028 100644 --- a/themes/themer-dark.yaml +++ b/themes/themer-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "indigo" hue: 283 + pair: null contrast: fg: 57.1 black: 0 diff --git a/themes/themer-light.yaml b/themes/themer-light.yaml index 05c689f2..1dd8fc5e 100644 --- a/themes/themer-light.yaml +++ b/themes/themer-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 103.4 black: 0 diff --git a/themes/themin-mint.yaml b/themes/themin-mint.yaml index b627c71b..65d788b8 100644 --- a/themes/themin-mint.yaml +++ b/themes/themin-mint.yaml @@ -2,7 +2,7 @@ name: "Themin - Mint" source: marketplace_id: "Homerotto.themin" version: "3.0.1" - installs: 2229 + installs: 2230 author: "Homerotto" repo: "https://github.com/FredMSJ/themin" url: "https://marketplace.visualstudio.com/items?itemName=Homerotto.themin" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 87.7 black: 0 diff --git a/themes/theo-swarg-dark.yaml b/themes/theo-swarg-dark.yaml index 122ea18e..c15ab88f 100644 --- a/themes/theo-swarg-dark.yaml +++ b/themes/theo-swarg-dark.yaml @@ -2,7 +2,7 @@ name: "Theo-Swarg-Dark" source: marketplace_id: "Theoraclenyt.theo-swarg-dark" version: "0.1.2" - installs: 49 + installs: 50 author: "Theoraclenyt" repo: "https://github.com/Ishesensei/theo-swarg-dark" url: "https://marketplace.visualstudio.com/items?itemName=Theoraclenyt.theo-swarg-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 282 + pair: null contrast: fg: 98.9 black: 42.4 diff --git a/themes/theta.yaml b/themes/theta.yaml index 72f8fe38..d8f8bc27 100644 --- a/themes/theta.yaml +++ b/themes/theta.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 84.4 black: 12.7 diff --git a/themes/thinkstorm.yaml b/themes/thinkstorm.yaml index ac91c087..cb134f71 100644 --- a/themes/thinkstorm.yaml +++ b/themes/thinkstorm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 40.6 black: 0 diff --git a/themes/thore-blue.yaml b/themes/thore-blue.yaml index 8afbc6bb..6c569bac 100644 --- a/themes/thore-blue.yaml +++ b/themes/thore-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 67.1 black: 0 diff --git a/themes/thorn.yaml b/themes/thorn.yaml index a4a560a0..93e8372f 100644 --- a/themes/thorn.yaml +++ b/themes/thorn.yaml @@ -1,11 +1,11 @@ name: "Thorn" source: - marketplace_id: "jpwol.thorn" - version: "1.0.0" - installs: 107 - author: "jpwol" + marketplace_id: "synapse42.thorn-variant" + version: "0.1.1" + installs: 11 + author: "synapse_42" repo: "https://github.com/jpwol/thorn-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jpwol.thorn" + url: "https://marketplace.visualstudio.com/items?itemName=synapse42.thorn-variant" colors: bg: "#1D282F" fg: "#DBD0C6" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 236 + pair: null contrast: fg: 75.9 black: 0 diff --git a/themes/thoughtworks-style-theme.yaml b/themes/thoughtworks-style-theme.yaml index 9849f010..1c6639a2 100644 --- a/themes/thoughtworks-style-theme.yaml +++ b/themes/thoughtworks-style-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 225 + pair: null contrast: fg: 90.7 black: 0 diff --git a/themes/thra.yaml b/themes/thra.yaml index 4f39a5bf..40f3e02a 100644 --- a/themes/thra.yaml +++ b/themes/thra.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 326 + pair: null contrast: fg: 37.2 black: 0 diff --git a/themes/threedark.yaml b/themes/threedark.yaml index 604a4009..9c2b8d47 100644 --- a/themes/threedark.yaml +++ b/themes/threedark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 259 + pair: null contrast: fg: 105.2 black: 0 diff --git a/themes/thunder-focus.yaml b/themes/thunder-focus.yaml index a94014ea..f5ca964a 100644 --- a/themes/thunder-focus.yaml +++ b/themes/thunder-focus.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 247 + pair: null contrast: fg: 75.8 black: 0 diff --git a/themes/thunder-remains-unseen.yaml b/themes/thunder-remains-unseen.yaml index 7002b70d..463b4a7f 100644 --- a/themes/thunder-remains-unseen.yaml +++ b/themes/thunder-remains-unseen.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 93.6 black: 0 diff --git a/themes/thxdude-theme.yaml b/themes/thxdude-theme.yaml index 1b794097..400c2482 100644 --- a/themes/thxdude-theme.yaml +++ b/themes/thxdude-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 60.8 black: 0 diff --git a/themes/thyme21g.yaml b/themes/thyme21g.yaml index 745acc25..dfeb13d1 100644 --- a/themes/thyme21g.yaml +++ b/themes/thyme21g.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 80 black: 9.3 diff --git a/themes/thynaptic-dark-base.yaml b/themes/thynaptic-dark-base.yaml index 1affb287..733f3239 100644 --- a/themes/thynaptic-dark-base.yaml +++ b/themes/thynaptic-dark-base.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 104.4 black: 0 diff --git a/themes/thynaptic-dim-base.yaml b/themes/thynaptic-dim-base.yaml index bc4d7322..3b16da95 100644 --- a/themes/thynaptic-dim-base.yaml +++ b/themes/thynaptic-dim-base.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 93.8 black: 0 diff --git a/themes/thynaptic-pro.yaml b/themes/thynaptic-pro.yaml index 0dba7c82..ba065e47 100644 --- a/themes/thynaptic-pro.yaml +++ b/themes/thynaptic-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 104.5 black: 0 diff --git a/themes/thynaptic-sand-base.yaml b/themes/thynaptic-sand-base.yaml index 99beeced..54e32cd8 100644 --- a/themes/thynaptic-sand-base.yaml +++ b/themes/thynaptic-sand-base.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.5 black: 96.5 diff --git a/themes/thynaptic-sand-dark.yaml b/themes/thynaptic-sand-dark.yaml index 666018c9..ab62cb92 100644 --- a/themes/thynaptic-sand-dark.yaml +++ b/themes/thynaptic-sand-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 88.8 black: 0 diff --git a/themes/tickle-contrast.yaml b/themes/tickle-contrast.yaml index 435f16cb..19991c01 100644 --- a/themes/tickle-contrast.yaml +++ b/themes/tickle-contrast.yaml @@ -1,11 +1,11 @@ name: "tickle-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#181819" fg: "#C1C1C1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 68.1 black: 0 diff --git a/themes/tickle-light.yaml b/themes/tickle-light.yaml index f751e931..ce9c503e 100644 --- a/themes/tickle-light.yaml +++ b/themes/tickle-light.yaml @@ -1,11 +1,11 @@ name: "tickle-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#444444" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/tickle-refresh.yaml b/themes/tickle-refresh.yaml index 43a05ea5..5ba77acd 100644 --- a/themes/tickle-refresh.yaml +++ b/themes/tickle-refresh.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 67.5 black: 0 diff --git a/themes/tickle.yaml b/themes/tickle.yaml index 78e14fc9..8f4ad73a 100644 --- a/themes/tickle.yaml +++ b/themes/tickle.yaml @@ -1,11 +1,11 @@ name: "tickle" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#39393A" fg: "#C1C1C1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 61.6 black: 0 diff --git a/themes/tidelight-contrast-light.yaml b/themes/tidelight-contrast-light.yaml index 8272fbc6..c4087756 100644 --- a/themes/tidelight-contrast-light.yaml +++ b/themes/tidelight-contrast-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 105.9 black: 105.9 diff --git a/themes/tidelight-contrast.yaml b/themes/tidelight-contrast.yaml index 4562cd42..d01c80fc 100644 --- a/themes/tidelight-contrast.yaml +++ b/themes/tidelight-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 104.3 black: 0 diff --git a/themes/tidelight-dawn.yaml b/themes/tidelight-dawn.yaml index 03f87046..522e82ff 100644 --- a/themes/tidelight-dawn.yaml +++ b/themes/tidelight-dawn.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "Tidelight Midnight" contrast: fg: 101.4 black: 101.4 diff --git a/themes/tidelight-daybreak.yaml b/themes/tidelight-daybreak.yaml index 9350ffb8..9f50c6b3 100644 --- a/themes/tidelight-daybreak.yaml +++ b/themes/tidelight-daybreak.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 105.2 black: 105.2 diff --git a/themes/tidelight-deep.yaml b/themes/tidelight-deep.yaml index 8b9a6471..b8bc3275 100644 --- a/themes/tidelight-deep.yaml +++ b/themes/tidelight-deep.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 263 + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/tidelight-dusk.yaml b/themes/tidelight-dusk.yaml index 413108e8..b0d7b558 100644 --- a/themes/tidelight-dusk.yaml +++ b/themes/tidelight-dusk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 266 + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/tidelight-fog.yaml b/themes/tidelight-fog.yaml index 19415a37..bdc9f763 100644 --- a/themes/tidelight-fog.yaml +++ b/themes/tidelight-fog.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 257 + pair: null contrast: fg: 88.7 black: 0 diff --git a/themes/tidelight-high-noon.yaml b/themes/tidelight-high-noon.yaml index bd478cfe..2a4709ef 100644 --- a/themes/tidelight-high-noon.yaml +++ b/themes/tidelight-high-noon.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 101.7 black: 101.7 diff --git a/themes/tidelight-midnight.yaml b/themes/tidelight-midnight.yaml index 4c126736..979a43a4 100644 --- a/themes/tidelight-midnight.yaml +++ b/themes/tidelight-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: "Tidelight Dawn" contrast: fg: 92.3 black: 0 diff --git a/themes/tidelight-shore.yaml b/themes/tidelight-shore.yaml index be9c15ba..d61b6dc4 100644 --- a/themes/tidelight-shore.yaml +++ b/themes/tidelight-shore.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 98.3 black: 98.3 diff --git a/themes/tiktok.yaml b/themes/tiktok.yaml index f54c5a7d..bc98e791 100644 --- a/themes/tiktok.yaml +++ b/themes/tiktok.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/tim-s-experiments-dark.yaml b/themes/tim-s-experiments-dark.yaml index 69386914..d0d39abf 100644 --- a/themes/tim-s-experiments-dark.yaml +++ b/themes/tim-s-experiments-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 85.7 black: 99.9 diff --git a/themes/timir.yaml b/themes/timir.yaml index e3178a4e..3135139e 100644 --- a/themes/timir.yaml +++ b/themes/timir.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 265 + pair: null contrast: fg: 53.3 black: 0 diff --git a/themes/timu-macos-dark-theme.yaml b/themes/timu-macos-dark-theme.yaml index 03fa79b8..7fa52927 100644 --- a/themes/timu-macos-dark-theme.yaml +++ b/themes/timu-macos-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Timu macOS light Theme" contrast: fg: 105.3 black: 0 diff --git a/themes/timu-macos-light-theme.yaml b/themes/timu-macos-light-theme.yaml index cfd80ab8..2f193cf3 100644 --- a/themes/timu-macos-light-theme.yaml +++ b/themes/timu-macos-light-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Timu macOS dark Theme" contrast: fg: 102.7 black: 102.7 diff --git a/themes/timu-spacegrey-theme.yaml b/themes/timu-spacegrey-theme.yaml index fd8760d3..3633070d 100644 --- a/themes/timu-spacegrey-theme.yaml +++ b/themes/timu-spacegrey-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 260 + pair: null contrast: fg: 67.9 black: 0 diff --git a/themes/tinacious-design-syntax.yaml b/themes/tinacious-design-syntax.yaml index 723bdd47..bb0e8cf3 100644 --- a/themes/tinacious-design-syntax.yaml +++ b/themes/tinacious-design-syntax.yaml @@ -2,7 +2,7 @@ name: "Tinacious Design Syntax" source: marketplace_id: "Prabodhan.blush" version: "2.0.2" - installs: 1075 + installs: 1076 author: "Prabodhan" repo: "https://github.com/Prabodhan29/vscode-theme-blush" url: "https://marketplace.visualstudio.com/items?itemName=Prabodhan.blush" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 60.9 black: 0 diff --git a/themes/tiniri-dark.yaml b/themes/tiniri-dark.yaml index 8790da78..fb649b28 100644 --- a/themes/tiniri-dark.yaml +++ b/themes/tiniri-dark.yaml @@ -2,7 +2,7 @@ name: "Tiniri Dark" source: marketplace_id: "vladstudio.vlad-studio-tiniri" version: "0.0.73" - installs: 1911 + installs: 1915 author: "Vlad.studio" repo: "https://github.com/vladstudio/tiniri-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=vladstudio.vlad-studio-tiniri" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Tiniri Light" contrast: fg: 90.2 black: 0 diff --git a/themes/tiniri-light.yaml b/themes/tiniri-light.yaml index 2d26ecff..0395199b 100644 --- a/themes/tiniri-light.yaml +++ b/themes/tiniri-light.yaml @@ -2,7 +2,7 @@ name: "Tiniri Light" source: marketplace_id: "vladstudio.vlad-studio-tiniri" version: "0.0.73" - installs: 1911 + installs: 1915 author: "Vlad.studio" repo: "https://github.com/vladstudio/tiniri-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=vladstudio.vlad-studio-tiniri" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Tiniri Dark" contrast: fg: 102 black: 92.8 diff --git a/themes/tiny-light.yaml b/themes/tiny-light.yaml index 84090f45..28af2491 100644 --- a/themes/tiny-light.yaml +++ b/themes/tiny-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 62.1 black: 103.4 diff --git a/themes/titillating-midnight.yaml b/themes/titillating-midnight.yaml index b84bdae9..e53a7cb0 100644 --- a/themes/titillating-midnight.yaml +++ b/themes/titillating-midnight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 264 + pair: null contrast: fg: 70.8 black: 0 diff --git a/themes/titillating-sunset.yaml b/themes/titillating-sunset.yaml index 3e6ede39..0a73ef60 100644 --- a/themes/titillating-sunset.yaml +++ b/themes/titillating-sunset.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 69 black: 0 diff --git a/themes/tlapalli-00-obsidian.yaml b/themes/tlapalli-00-obsidian.yaml index baa1d335..283ebce4 100644 --- a/themes/tlapalli-00-obsidian.yaml +++ b/themes/tlapalli-00-obsidian.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 54.6 black: 0 diff --git a/themes/tlapalli-01-gold.yaml b/themes/tlapalli-01-gold.yaml index ca0ae558..a7fe2461 100644 --- a/themes/tlapalli-01-gold.yaml +++ b/themes/tlapalli-01-gold.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 56.7 black: 0 diff --git a/themes/tlapalli-02-turquoise.yaml b/themes/tlapalli-02-turquoise.yaml index 32c4abd3..14765304 100644 --- a/themes/tlapalli-02-turquoise.yaml +++ b/themes/tlapalli-02-turquoise.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "cyan" hue: null + pair: null contrast: fg: 51.7 black: 0 diff --git a/themes/tlapalli-03-quartz.yaml b/themes/tlapalli-03-quartz.yaml index 13860186..7aae2ac1 100644 --- a/themes/tlapalli-03-quartz.yaml +++ b/themes/tlapalli-03-quartz.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 333 + pair: null contrast: fg: 58.1 black: 0 diff --git a/themes/tlapalli-04-lapis-lazuli.yaml b/themes/tlapalli-04-lapis-lazuli.yaml index a00f9d9c..e81e289d 100644 --- a/themes/tlapalli-04-lapis-lazuli.yaml +++ b/themes/tlapalli-04-lapis-lazuli.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 61.8 black: 0 diff --git a/themes/tlapalli-05-amethyst.yaml b/themes/tlapalli-05-amethyst.yaml index 52ffc701..86d675bb 100644 --- a/themes/tlapalli-05-amethyst.yaml +++ b/themes/tlapalli-05-amethyst.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 316 + pair: null contrast: fg: 39.2 black: 0 diff --git a/themes/tlapalli-06-jade.yaml b/themes/tlapalli-06-jade.yaml index 192bd883..4ca550cf 100644 --- a/themes/tlapalli-06-jade.yaml +++ b/themes/tlapalli-06-jade.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 50.6 black: 0 diff --git a/themes/tlapalli-07-fire-opal.yaml b/themes/tlapalli-07-fire-opal.yaml index cd71581b..96624724 100644 --- a/themes/tlapalli-07-fire-opal.yaml +++ b/themes/tlapalli-07-fire-opal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 40.1 black: 0 diff --git a/themes/tlapalli-l-00-obsidian-light.yaml b/themes/tlapalli-l-00-obsidian-light.yaml index 8c2725de..71e01252 100644 --- a/themes/tlapalli-l-00-obsidian-light.yaml +++ b/themes/tlapalli-l-00-obsidian-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 87.2 black: 0 diff --git a/themes/tlapalli-l-01-gold-light.yaml b/themes/tlapalli-l-01-gold-light.yaml index 07aa22f4..53bbf42a 100644 --- a/themes/tlapalli-l-01-gold-light.yaml +++ b/themes/tlapalli-l-01-gold-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 75.9 black: 0 diff --git a/themes/tlapalli-l-02-turquoise-light.yaml b/themes/tlapalli-l-02-turquoise-light.yaml index 73edba2a..3b19ebac 100644 --- a/themes/tlapalli-l-02-turquoise-light.yaml +++ b/themes/tlapalli-l-02-turquoise-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "cyan" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/tlapalli-l-03-quartz-light.yaml b/themes/tlapalli-l-03-quartz-light.yaml index 238b9078..0df4d827 100644 --- a/themes/tlapalli-l-03-quartz-light.yaml +++ b/themes/tlapalli-l-03-quartz-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 89.2 black: 0 diff --git a/themes/tlapalli-l-04-lapis-lazuli-light.yaml b/themes/tlapalli-l-04-lapis-lazuli-light.yaml index 8bb63f99..2a48ddce 100644 --- a/themes/tlapalli-l-04-lapis-lazuli-light.yaml +++ b/themes/tlapalli-l-04-lapis-lazuli-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "indigo" hue: null + pair: null contrast: fg: 85 black: 0 diff --git a/themes/tlapalli-l-05-amethyst-light.yaml b/themes/tlapalli-l-05-amethyst-light.yaml index 5eb12c5f..6c0d4b9f 100644 --- a/themes/tlapalli-l-05-amethyst-light.yaml +++ b/themes/tlapalli-l-05-amethyst-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 85 black: 0 diff --git a/themes/tlapalli-l-06-jade-light.yaml b/themes/tlapalli-l-06-jade-light.yaml index c54ac85c..b90c5645 100644 --- a/themes/tlapalli-l-06-jade-light.yaml +++ b/themes/tlapalli-l-06-jade-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 73.5 black: 0 diff --git a/themes/tlapalli-l-07-fire-opal-light.yaml b/themes/tlapalli-l-07-fire-opal-light.yaml index 0120e6b2..8520cade 100644 --- a/themes/tlapalli-l-07-fire-opal-light.yaml +++ b/themes/tlapalli-l-07-fire-opal-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/tm2rd3.yaml b/themes/tm2rd3.yaml index 05675229..57c24e4b 100644 --- a/themes/tm2rd3.yaml +++ b/themes/tm2rd3.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 266 + pair: null contrast: fg: 67.7 black: 0 diff --git a/themes/tnove-dark-theme.yaml b/themes/tnove-dark-theme.yaml index 28dc899b..35218a0c 100644 --- a/themes/tnove-dark-theme.yaml +++ b/themes/tnove-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: null contrast: fg: 60.5 black: 0 diff --git a/themes/tobirama-water-style.yaml b/themes/tobirama-water-style.yaml index 06f0c7c2..4ee58af1 100644 --- a/themes/tobirama-water-style.yaml +++ b/themes/tobirama-water-style.yaml @@ -2,7 +2,7 @@ name: "Tobirama Water Style" source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" - installs: 429 + installs: 434 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 251 + pair: null contrast: fg: 97.8 black: 0 diff --git a/themes/tokito-inspired.yaml b/themes/tokito-inspired.yaml index 47687ab1..9b884cd8 100644 --- a/themes/tokito-inspired.yaml +++ b/themes/tokito-inspired.yaml @@ -2,7 +2,7 @@ name: "Tokito Inspired" source: marketplace_id: "devLocifer.hashira-code-theme" version: "0.0.1" - installs: 738 + installs: 739 author: "devLocifer" repo: "https://github.com/diazdjul19/hashira-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 260 + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/tokv7.yaml b/themes/tokv7.yaml index 6fb8aad6..4c4a78e8 100644 --- a/themes/tokv7.yaml +++ b/themes/tokv7.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/tokyo-dark.yaml b/themes/tokyo-dark.yaml deleted file mode 100644 index cc65bf5e..00000000 --- a/themes/tokyo-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Tokyo Dark" -source: - marketplace_id: "smnatale.tokyodark" - version: "1.0.4" - installs: 1954 - author: "smnatale" - repo: "https://github.com/smnatale/tokyodark-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=smnatale.tokyodark" -colors: - bg: "#090B10" - fg: "#A9B1D6" - black: "#363B54" - red: "#F7768E" - green: "#73DACA" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#787C99" - brightBlack: "#363B54" - brightRed: "#F7768E" - brightGreen: "#73DACA" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#ACB0D0" -meta: - mode: "dark" - accent: "red" - hue: 268 - contrast: - fg: 60.7 - black: 0 - red: 50.7 - green: 73.6 - yellow: 63.6 - blue: 52.5 - magenta: 56.4 - cyan: 71.9 - white: 33.4 - brightBlack: 0 - brightRed: 50.7 - brightGreen: 73.6 - brightYellow: 63.6 - brightBlue: 52.5 - brightMagenta: 56.4 - brightCyan: 71.9 - brightWhite: 60.3 diff --git a/themes/tokyo-dive.yaml b/themes/tokyo-dive.yaml index c6ddcb68..3ae4108d 100644 --- a/themes/tokyo-dive.yaml +++ b/themes/tokyo-dive.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 82.5 black: 0 diff --git a/themes/tokyo-ghosts-dark.yaml b/themes/tokyo-ghosts-dark.yaml index 8641d236..ab100486 100644 --- a/themes/tokyo-ghosts-dark.yaml +++ b/themes/tokyo-ghosts-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 278 + pair: "Tokyo Ghosts Light" contrast: fg: 84.7 black: 0 diff --git a/themes/tokyo-ghosts-light.yaml b/themes/tokyo-ghosts-light.yaml index b4ea35f5..3885d6b3 100644 --- a/themes/tokyo-ghosts-light.yaml +++ b/themes/tokyo-ghosts-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Tokyo Ghosts Dark" contrast: fg: 91.9 black: 91.9 diff --git a/themes/tokyo-gogh-alt.yaml b/themes/tokyo-gogh-alt.yaml index 167fc07b..1da01a27 100644 --- a/themes/tokyo-gogh-alt.yaml +++ b/themes/tokyo-gogh-alt.yaml @@ -2,7 +2,7 @@ name: "Tokyo Gogh Alt" source: marketplace_id: "Avetis.tokyo-night" version: "1.0.2" - installs: 110908 + installs: 110968 author: "Avetis" repo: "https://github.com/AvetisDN/tokyo-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.tokyo-night" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 73.8 black: 0 diff --git a/themes/tokyo-gogh.yaml b/themes/tokyo-gogh.yaml index aa6306b9..f2e820ff 100644 --- a/themes/tokyo-gogh.yaml +++ b/themes/tokyo-gogh.yaml @@ -2,7 +2,7 @@ name: "Tokyo Gogh" source: marketplace_id: "Avetis.tokyo-night" version: "1.0.2" - installs: 110908 + installs: 110968 author: "Avetis" repo: "https://github.com/AvetisDN/tokyo-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.tokyo-night" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 275 + pair: null contrast: fg: 71.7 black: 0 diff --git a/themes/tokyo-light.yaml b/themes/tokyo-light.yaml index 4cfef5b4..a3d93b37 100644 --- a/themes/tokyo-light.yaml +++ b/themes/tokyo-light.yaml @@ -2,7 +2,7 @@ name: "Tokyo (Light)" source: marketplace_id: "akil-s.tokyo-light" version: "0.0.4" - installs: 7302 + installs: 7308 author: "akil-s" repo: "https://github.com/Salah-Akil/tokyo-vscode-light" url: "https://marketplace.visualstudio.com/items?itemName=akil-s.tokyo-light" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.5 black: 102.2 diff --git a/themes/tokyo-lights.yaml b/themes/tokyo-lights.yaml index 7347760c..d7d1822f 100644 --- a/themes/tokyo-lights.yaml +++ b/themes/tokyo-lights.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 59.3 black: 10.3 diff --git a/themes/tokyo-midnight.yaml b/themes/tokyo-midnight.yaml index e3262acc..df58d7e3 100644 --- a/themes/tokyo-midnight.yaml +++ b/themes/tokyo-midnight.yaml @@ -2,7 +2,7 @@ name: "Tokyo Midnight" source: marketplace_id: "nacholaciar.tokyo-midnight" version: "0.1.9" - installs: 14438 + installs: 14443 author: "nacholaciar" repo: "https://github.com/nacholaciar/tokyo-midnight" url: "https://marketplace.visualstudio.com/items?itemName=nacholaciar.tokyo-midnight" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 59.1 black: 7.6 diff --git a/themes/tokyo-modern.yaml b/themes/tokyo-modern.yaml index 54f7a93b..04e8ced7 100644 --- a/themes/tokyo-modern.yaml +++ b/themes/tokyo-modern.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 288 + pair: null contrast: fg: 70.1 black: 0 diff --git a/themes/tokyo-night-blackout.yaml b/themes/tokyo-night-blackout.yaml index 4c498566..79f0ce01 100644 --- a/themes/tokyo-night-blackout.yaml +++ b/themes/tokyo-night-blackout.yaml @@ -2,7 +2,7 @@ name: "Tokyo Night Blackout" source: marketplace_id: "EdmundYong.tokyo-night-blackout" version: "0.0.1" - installs: 1987 + installs: 1991 author: "Edmund Yong" repo: null url: "https://marketplace.visualstudio.com/items?itemName=EdmundYong.tokyo-night-blackout" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 60.9 black: 0 diff --git a/themes/tokyo-night-bright.yaml b/themes/tokyo-night-bright.yaml index 80b1c584..ad9a2ccb 100644 --- a/themes/tokyo-night-bright.yaml +++ b/themes/tokyo-night-bright.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 280 + pair: null contrast: fg: 73.8 black: 0 diff --git a/themes/tokyo-night-dark.yaml b/themes/tokyo-night-dark.yaml index a3b95916..938474ed 100644 --- a/themes/tokyo-night-dark.yaml +++ b/themes/tokyo-night-dark.yaml @@ -2,7 +2,7 @@ name: "Tokyo Night Dark" source: marketplace_id: "drewxs.tokyo-night-dark" version: "0.3.3" - installs: 76424 + installs: 76477 author: "Andrew X. Shah" repo: "https://github.com/kito0/tokyo-night-dark" url: "https://marketplace.visualstudio.com/items?itemName=drewxs.tokyo-night-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Tokyo Night Light" contrast: fg: 60.7 black: 0 diff --git a/themes/tokyo-night-equalizer.yaml b/themes/tokyo-night-equalizer.yaml index bc9b73c6..6e1ade82 100644 --- a/themes/tokyo-night-equalizer.yaml +++ b/themes/tokyo-night-equalizer.yaml @@ -2,7 +2,7 @@ name: "Tokyo Night Equalizer" source: marketplace_id: "ni3rav.andromeda-night" version: "0.0.7" - installs: 1259 + installs: 1263 author: "ni3rav" repo: "https://github.com/ni3rav/andromeda-night" url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.andromeda-night" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 47.6 black: 13.3 diff --git a/themes/tokyo-night-light.yaml b/themes/tokyo-night-light.yaml index c14195be..30b487b7 100644 --- a/themes/tokyo-night-light.yaml +++ b/themes/tokyo-night-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: "Tokyo Night Dark" contrast: fg: 59.4 black: 69.5 diff --git a/themes/tokyo-night-nv.yaml b/themes/tokyo-night-nv.yaml index cb1d9e22..69f4e899 100644 --- a/themes/tokyo-night-nv.yaml +++ b/themes/tokyo-night-nv.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 280 + pair: null contrast: fg: 73.8 black: 0 diff --git a/themes/tokyo-night-pure.yaml b/themes/tokyo-night-pure.yaml index 86e90a68..ef4f3342 100644 --- a/themes/tokyo-night-pure.yaml +++ b/themes/tokyo-night-pure.yaml @@ -2,7 +2,7 @@ name: "Tokyo Night Pure" source: marketplace_id: "nishantg96.tokyo-night-pure" version: "0.0.3" - installs: 1743 + installs: 1744 author: "Nishant Gajjar" repo: "https://github.com/nishantg96/Tokyo-Night-Pure-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=nishantg96.tokyo-night-pure" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 72.8 black: 0 diff --git a/themes/tokyo-night-storm.yaml b/themes/tokyo-night-storm.yaml deleted file mode 100644 index ca631468..00000000 --- a/themes/tokyo-night-storm.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Tokyo Night Storm" -source: - marketplace_id: "PojokCode.pcode-theme" - version: "0.0.1038" - installs: 1397 - author: "Pojok Code" - repo: "https://github.com/pojokcodeid/pcode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=PojokCode.pcode-theme" -colors: - bg: "#24283B" - fg: "#A9B1D6" - black: "#414868" - red: "#F7768E" - green: "#73DACA" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#7982A9" - brightBlack: "#414868" - brightRed: "#F7768E" - brightGreen: "#73DACA" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#A9B1D6" -meta: - mode: "dark" - accent: "red" - hue: 275 - contrast: - fg: 57.2 - black: 8.2 - red: 47.3 - green: 70.1 - yellow: 60.1 - blue: 49 - magenta: 52.9 - cyan: 68.4 - white: 32.8 - brightBlack: 8.2 - brightRed: 47.3 - brightGreen: 70.1 - brightYellow: 60.1 - brightBlue: 49 - brightMagenta: 52.9 - brightCyan: 68.4 - brightWhite: 57.2 diff --git a/themes/tokyo-night-void.yaml b/themes/tokyo-night-void.yaml index 529011fb..57605a6b 100644 --- a/themes/tokyo-night-void.yaml +++ b/themes/tokyo-night-void.yaml @@ -2,7 +2,7 @@ name: "Tokyo Night Void" source: marketplace_id: "SatoruCode.tokyo-night-void" version: "0.0.1" - installs: 418 + installs: 419 author: "Satoru Code" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SatoruCode.tokyo-night-void" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 60.9 black: 0 diff --git a/themes/tokyo-night.yaml b/themes/tokyo-night.yaml deleted file mode 100644 index 59698c10..00000000 --- a/themes/tokyo-night.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Tokyo Night" -source: - marketplace_id: "AgraeonLabs.dev-themes" - version: "0.1.0" - installs: 283 - author: "Agraeon Labs" - repo: "https://github.com/adiagcodelance/VS-Code-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" -colors: - bg: "#1A1B26" - fg: "#C0CAF5" - black: "#1A1B26" - red: "#F7768E" - green: "#9ECE6A" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#C0CAF5" - brightBlack: "#1A1B26" - brightRed: "#F7768E" - brightGreen: "#9ECE6A" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#C0CAF5" -meta: - mode: "dark" - accent: "red" - hue: 280 - contrast: - fg: 73.8 - black: 0 - red: 49.4 - green: 66.9 - yellow: 62.2 - blue: 51.1 - magenta: 55 - cyan: 70.5 - white: 73.8 - brightBlack: 0 - brightRed: 49.4 - brightGreen: 66.9 - brightYellow: 62.2 - brightBlue: 51.1 - brightMagenta: 55 - brightCyan: 70.5 - brightWhite: 73.8 diff --git a/themes/tokyo-panda.yaml b/themes/tokyo-panda.yaml index bc11e62c..155034b8 100644 --- a/themes/tokyo-panda.yaml +++ b/themes/tokyo-panda.yaml @@ -2,7 +2,7 @@ name: "Tokyo Panda" source: marketplace_id: "effordDev.tokyo-panda-theme" version: "1.12.0" - installs: 8329 + installs: 8334 author: "effordDev" repo: "https://github.com/effordDev/tokyo-panda-theme" url: "https://marketplace.visualstudio.com/items?itemName=effordDev.tokyo-panda-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 280 + pair: null contrast: fg: 59.3 black: 0 diff --git a/themes/tokyo.yaml b/themes/tokyo.yaml index 3afeb0a9..585b9401 100644 --- a/themes/tokyo.yaml +++ b/themes/tokyo.yaml @@ -2,7 +2,7 @@ name: "Tokyo" source: marketplace_id: "Avetis.codeme-theme" version: "0.1.1" - installs: 8079 + installs: 8080 author: "Avetis" repo: "https://github.com/AvetisDN/codeme-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 279 + pair: null contrast: fg: 83.8 black: 0 diff --git a/themes/tokyonight-moon-lazy.yaml b/themes/tokyonight-moon-lazy.yaml index 58ba0f17..f5e48ba9 100644 --- a/themes/tokyonight-moon-lazy.yaml +++ b/themes/tokyonight-moon-lazy.yaml @@ -2,7 +2,7 @@ name: "TokyoNight Moon (Lazy)" source: marketplace_id: "gyro-uyt.lazy-themes" version: "0.1.5" - installs: 17 + installs: 18 author: "Uday Thakur" repo: "https://github.com/gyro-uyt/lazy-themes" url: "https://marketplace.visualstudio.com/items?itemName=gyro-uyt.lazy-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 77.2 black: 0 diff --git a/themes/tokyonight.yaml b/themes/tokyonight.yaml index b46e3ee4..ffe0a6a4 100644 --- a/themes/tokyonight.yaml +++ b/themes/tokyonight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 107 black: 0 diff --git a/themes/tol.yaml b/themes/tol.yaml index 7b6bad93..bcbb7043 100644 --- a/themes/tol.yaml +++ b/themes/tol.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 274 + pair: null contrast: fg: 64.4 black: 0 diff --git a/themes/tomorrow-night-bright-r-classic.yaml b/themes/tomorrow-night-bright-r-classic.yaml index 4a169a87..afc3139e 100644 --- a/themes/tomorrow-night-bright-r-classic.yaml +++ b/themes/tomorrow-night-bright-r-classic.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 86.6 black: 13.6 diff --git a/themes/tomorrow-night-ij.yaml b/themes/tomorrow-night-ij.yaml index 5e2b81c2..b07f2af5 100644 --- a/themes/tomorrow-night-ij.yaml +++ b/themes/tomorrow-night-ij.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 70.9 black: 0 diff --git a/themes/tomorrowmyst.yaml b/themes/tomorrowmyst.yaml index 2146be93..316bb5d5 100644 --- a/themes/tomorrowmyst.yaml +++ b/themes/tomorrowmyst.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72.1 black: 0 diff --git a/themes/tonic-contrast.yaml b/themes/tonic-contrast.yaml index 21fb54f4..1e3723b2 100644 --- a/themes/tonic-contrast.yaml +++ b/themes/tonic-contrast.yaml @@ -1,11 +1,11 @@ name: "tonic-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#111314" fg: "#EEEEEE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 96.1 black: 0 diff --git a/themes/tonic-light.yaml b/themes/tonic-light.yaml index dbffb40c..3b444129 100644 --- a/themes/tonic-light.yaml +++ b/themes/tonic-light.yaml @@ -1,11 +1,11 @@ name: "tonic-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#EEEEEE" fg: "#2A2F31" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 90 black: 0 diff --git a/themes/tonic.yaml b/themes/tonic.yaml index 6ff5618a..7704e8cd 100644 --- a/themes/tonic.yaml +++ b/themes/tonic.yaml @@ -1,11 +1,11 @@ name: "tonic" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2A2F31" fg: "#EEEEEE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 92.1 black: 0 diff --git a/themes/toodark.yaml b/themes/toodark.yaml index 8cd4a3c6..6c1f255f 100644 --- a/themes/toodark.yaml +++ b/themes/toodark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 72.6 black: 0 diff --git a/themes/topic-the-leader.yaml b/themes/topic-the-leader.yaml index 12a767b0..d3800c65 100644 --- a/themes/topic-the-leader.yaml +++ b/themes/topic-the-leader.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 100.8 black: 22.7 diff --git a/themes/tora.yaml b/themes/tora.yaml index 4abff797..a9765e1b 100644 --- a/themes/tora.yaml +++ b/themes/tora.yaml @@ -1,11 +1,11 @@ name: "Tora" source: - marketplace_id: "sserafy.ttera-themes" - version: "2.0.7" - installs: 2036 + marketplace_id: "sserafy.ssera-themes" + version: "2.0.2" + installs: 334 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: bg: "#0D0B08" fg: "#E6D7C3" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 83.3 black: 0 diff --git a/themes/torque.yaml b/themes/torque.yaml index 6116cded..3429d573 100644 --- a/themes/torque.yaml +++ b/themes/torque.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 244 + pair: null contrast: fg: 107 black: 0 diff --git a/themes/torte-vim.yaml b/themes/torte-vim.yaml index 29dc830e..bbfa2ada 100644 --- a/themes/torte-vim.yaml +++ b/themes/torte-vim.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 73.9 black: 0 diff --git a/themes/total-lunar-eclipse.yaml b/themes/total-lunar-eclipse.yaml index 83ae6386..72768611 100644 --- a/themes/total-lunar-eclipse.yaml +++ b/themes/total-lunar-eclipse.yaml @@ -2,7 +2,7 @@ name: "Total Lunar Eclipse" source: marketplace_id: "ginfuru.lunar-eclipse" version: "0.1.4" - installs: 10309 + installs: 10316 author: "Ed Heltzel" repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 59.5 black: 32.6 diff --git a/themes/totow-s-th-me.yaml b/themes/totow-s-th-me.yaml index f94572e0..31892946 100644 --- a/themes/totow-s-th-me.yaml +++ b/themes/totow-s-th-me.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.1 black: 0 diff --git a/themes/toxic-color-theme.yaml b/themes/toxic-color-theme.yaml index 0bc30b2f..c69a295d 100644 --- a/themes/toxic-color-theme.yaml +++ b/themes/toxic-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 287 + pair: null contrast: fg: 76.3 black: 8.4 diff --git a/themes/toxic-waste.yaml b/themes/toxic-waste.yaml index bce64897..05b59ffc 100644 --- a/themes/toxic-waste.yaml +++ b/themes/toxic-waste.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 144 + pair: null contrast: fg: 89.8 black: 0 diff --git a/themes/toy-chest.yaml b/themes/toy-chest.yaml index 1a3203d1..dbe60bc3 100644 --- a/themes/toy-chest.yaml +++ b/themes/toy-chest.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 251 + pair: null contrast: fg: 57 black: 0 diff --git a/themes/tranquillity-theme.yaml b/themes/tranquillity-theme.yaml index aeb5db0e..2f2ec8b8 100644 --- a/themes/tranquillity-theme.yaml +++ b/themes/tranquillity-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 58.1 black: 7.6 diff --git a/themes/trans-pride-light-naomi.yaml b/themes/trans-pride-light-naomi.yaml index 55ff51eb..a805d41f 100644 --- a/themes/trans-pride-light-naomi.yaml +++ b/themes/trans-pride-light-naomi.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 50.8 black: 0 diff --git a/themes/transylvania.yaml b/themes/transylvania.yaml index b91209a6..cdc7672a 100644 --- a/themes/transylvania.yaml +++ b/themes/transylvania.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 289 + pair: null contrast: fg: 98.6 black: 0 diff --git a/themes/triad-dragon.yaml b/themes/triad-dragon.yaml index 92f738a8..94e02f9f 100644 --- a/themes/triad-dragon.yaml +++ b/themes/triad-dragon.yaml @@ -2,7 +2,7 @@ name: "Triad Dragon" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 20 + pair: null contrast: fg: 99.8 black: 0 diff --git a/themes/tribal-contrast.yaml b/themes/tribal-contrast.yaml index db26f9af..112f9b65 100644 --- a/themes/tribal-contrast.yaml +++ b/themes/tribal-contrast.yaml @@ -1,11 +1,11 @@ name: "tribal-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#19191D" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 106.6 black: 0 diff --git a/themes/tribal-light.yaml b/themes/tribal-light.yaml index 24c6b863..8f2b959e 100644 --- a/themes/tribal-light.yaml +++ b/themes/tribal-light.yaml @@ -1,11 +1,11 @@ name: "tribal-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#444444" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/tribal.yaml b/themes/tribal.yaml index 97851d98..eda7593b 100644 --- a/themes/tribal.yaml +++ b/themes/tribal.yaml @@ -1,11 +1,11 @@ name: "tribal" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#393942" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 286 + pair: null contrast: fg: 100.1 black: 0 diff --git a/themes/trioptimized.yaml b/themes/trioptimized.yaml deleted file mode 100644 index babdaa4d..00000000 --- a/themes/trioptimized.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "TriOptimized" -source: - marketplace_id: "NuttshellMan.trioptimized-vs-code-theme" - version: "0.2.5" - installs: 38 - author: "Nuttshell_Man" - repo: "https://github.com/NuttshellDevelopment/trioptimized-vs-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=NuttshellMan.trioptimized-vs-code-theme" -colors: - bg: "#141414" - fg: "#CCCCCC" - black: "#515961" - red: "#EB4758" - green: "#37D25B" - yellow: "#FFEA7F" - blue: "#248AFF" - magenta: "#A075F0" - cyan: "#39C5CF" - white: "#D5D8DD" - brightBlack: "#959DA5" - brightRed: "#FB606F" - brightGreen: "#85E89D" - brightYellow: "#FFEA7F" - brightBlue: "#61ABFF" - brightMagenta: "#A075F0" - brightCyan: "#56D4DD" - brightWhite: "#FAFBFC" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 74.9 - black: 16.6 - red: 36.9 - green: 63.6 - yellow: 93 - blue: 40 - magenta: 40.5 - cyan: 61.1 - white: 82 - brightBlack: 48 - brightRed: 45.3 - brightGreen: 79.4 - brightYellow: 93 - brightBlue: 54.4 - brightMagenta: 40.5 - brightCyan: 69.7 - brightWhite: 104.4 diff --git a/themes/triumph-v2.yaml b/themes/triumph-v2.yaml index 12f62632..b9ca6033 100644 --- a/themes/triumph-v2.yaml +++ b/themes/triumph-v2.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 100.4 black: 0 diff --git a/themes/triumph.yaml b/themes/triumph.yaml index 822958f0..50a051e3 100644 --- a/themes/triumph.yaml +++ b/themes/triumph.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 100.3 black: 0 diff --git a/themes/tron-ares.yaml b/themes/tron-ares.yaml index d48259fe..89f66037 100644 --- a/themes/tron-ares.yaml +++ b/themes/tron-ares.yaml @@ -2,7 +2,7 @@ name: "Tron-Ares" source: marketplace_id: "AdibKhondoker.tron-ares-theme" version: "0.1.5" - installs: 364 + installs: 365 author: "Adib Khondoker" repo: "https://github.com/adib82302/tron-ares-theme" url: "https://marketplace.visualstudio.com/items?itemName=AdibKhondoker.tron-ares-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 17.3 black: 0 diff --git a/themes/tron-contrast.yaml b/themes/tron-contrast.yaml index 7ee2817a..490efb67 100644 --- a/themes/tron-contrast.yaml +++ b/themes/tron-contrast.yaml @@ -1,11 +1,11 @@ name: "tron-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#07090B" fg: "#AEC2E0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 68.8 black: 0 diff --git a/themes/tron-light.yaml b/themes/tron-light.yaml index c25c08b3..0226c60b 100644 --- a/themes/tron-light.yaml +++ b/themes/tron-light.yaml @@ -1,11 +1,11 @@ name: "tron-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#D7E5ED" fg: "#222222" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 233 + pair: null contrast: fg: 86.2 black: 0 diff --git a/themes/tron.yaml b/themes/tron.yaml index e03148b8..0a0bef03 100644 --- a/themes/tron.yaml +++ b/themes/tron.yaml @@ -1,11 +1,11 @@ name: "tron" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#14191F" fg: "#AEC2E0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 253 + pair: null contrast: fg: 67.7 black: 0 diff --git a/themes/trsm-night-eyes.yaml b/themes/trsm-night-eyes.yaml index a527bcdc..3c760c20 100644 --- a/themes/trsm-night-eyes.yaml +++ b/themes/trsm-night-eyes.yaml @@ -2,7 +2,7 @@ name: "trsm-night-eyes" source: marketplace_id: "Trsm.trsm-night-eyes" version: "0.0.4" - installs: 43 + installs: 44 author: "Tiago Machado" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Trsm.trsm-night-eyes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 229 + pair: null contrast: fg: 71.7 black: 0 diff --git a/themes/true-dark.yaml b/themes/true-dark.yaml deleted file mode 100644 index f5b2a18c..00000000 --- a/themes/true-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "True Dark" -source: - marketplace_id: "Jaron.true-dark" - version: "1.0.3" - installs: 3329 - author: "Jaron" - repo: "https://github.com/jaronpate/true-dark" - url: "https://marketplace.visualstudio.com/items?itemName=Jaron.true-dark" -colors: - bg: "#141414" - fg: "#D6DEEB" - black: "#111111" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ADDB67" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: null - contrast: - fg: 85.5 - black: 0 - red: 39.6 - green: 67.5 - yellow: 75.2 - blue: 56.2 - magenta: 54 - cyan: 60 - white: 107.1 - brightBlack: 15.9 - brightRed: 39.6 - brightGreen: 67.5 - brightYellow: 94 - brightBlue: 56.2 - brightMagenta: 54 - brightCyan: 74.3 - brightWhite: 107.1 diff --git a/themes/trueamber.yaml b/themes/trueamber.yaml index 5f26a305..7493f764 100644 --- a/themes/trueamber.yaml +++ b/themes/trueamber.yaml @@ -2,7 +2,7 @@ name: "trueAmber" source: marketplace_id: "headintheclout.trueamber" version: "1.0.9" - installs: 2797 + installs: 2798 author: "headintheclout" repo: "https://github.com/headintheclout/trueAmber" url: "https://marketplace.visualstudio.com/items?itemName=headintheclout.trueamber" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 55 + pair: null contrast: fg: 66.5 black: 36.9 diff --git a/themes/tsuki.yaml b/themes/tsuki.yaml index bfcd591d..bdef222a 100644 --- a/themes/tsuki.yaml +++ b/themes/tsuki.yaml @@ -2,7 +2,7 @@ name: "Tsuki" source: marketplace_id: "re1san.tsuki" version: "1.0.0" - installs: 2173 + installs: 2174 author: "Aniketto" repo: "https://github.com/re1san/Tsuki" url: "https://marketplace.visualstudio.com/items?itemName=re1san.tsuki" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 85.5 black: 0 diff --git a/themes/tsukiroku-dark.yaml b/themes/tsukiroku-dark.yaml index b1113662..acc34c54 100644 --- a/themes/tsukiroku-dark.yaml +++ b/themes/tsukiroku-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 55.7 black: 0 diff --git a/themes/tsukuyomi-light.yaml b/themes/tsukuyomi-light.yaml index 61de0ea0..24a86c4e 100644 --- a/themes/tsukuyomi-light.yaml +++ b/themes/tsukuyomi-light.yaml @@ -2,7 +2,7 @@ name: "Tsukuyomi (Light)" source: marketplace_id: "developerayo.Tsukuyomi" version: "1.2.7" - installs: 12459 + installs: 12461 author: "Shodipo Ayomide" repo: "https://github.com/Developerayo/tsukuyomi-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=developerayo.Tsukuyomi" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 90 black: 90 diff --git a/themes/tsukuyomi-no-italics.yaml b/themes/tsukuyomi-no-italics.yaml deleted file mode 100644 index 7da7e325..00000000 --- a/themes/tsukuyomi-no-italics.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Tsukuyomi (No Italics)" -source: - marketplace_id: "developerayo.Tsukuyomi" - version: "1.2.7" - installs: 12459 - author: "Shodipo Ayomide" - repo: "https://github.com/Developerayo/tsukuyomi-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=developerayo.Tsukuyomi" -colors: - bg: "#1A1E23" - fg: "#D4D9E4" - black: "#1A1F1A" - red: "#F07178" - green: "#BBD99E" - yellow: "#E5C07B" - blue: "#89DDFF" - magenta: "#BB80FF" - cyan: "#89DDFF" - white: "#D4D7D6" - brightBlack: "#5D6963" - brightRed: "#F07178" - brightGreen: "#BBD99E" - brightYellow: "#FFCC66" - brightBlue: "#7DCFFF" - brightMagenta: "#BB80FF" - brightCyan: "#7DCFFF" - brightWhite: "#D4D7D6" -meta: - mode: "dark" - accent: "magenta" - hue: 254 - contrast: - fg: 81.6 - black: 0 - red: 45.8 - green: 76 - yellow: 69.8 - blue: 77.5 - magenta: 47.2 - cyan: 77.5 - white: 80.1 - brightBlack: 21.3 - brightRed: 45.8 - brightGreen: 76 - brightYellow: 78.5 - brightBlue: 70.3 - brightMagenta: 47.2 - brightCyan: 70.3 - brightWhite: 80.1 diff --git a/themes/tsumiki-theme.yaml b/themes/tsumiki-theme.yaml index 9d612708..2cf5271d 100644 --- a/themes/tsumiki-theme.yaml +++ b/themes/tsumiki-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/ttheme.yaml b/themes/ttheme.yaml deleted file mode 100644 index e66cf2d1..00000000 --- a/themes/ttheme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "tTheme" -source: - marketplace_id: "ThejasRP.ttheme" - version: "2.0.0" - installs: 250 - author: "Thejas" - repo: "https://github.com/ThejasRP/tTheme" - url: "https://marketplace.visualstudio.com/items?itemName=ThejasRP.ttheme" -colors: - bg: "#171717" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 79.5 - black: 0 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 90 - brightBlack: 22 - brightRed: 38.6 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90 diff --git a/themes/tudoroxo.yaml b/themes/tudoroxo.yaml index 2ffaa621..6cf41485 100644 --- a/themes/tudoroxo.yaml +++ b/themes/tudoroxo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 292 + pair: null contrast: fg: 68.3 black: 0 diff --git a/themes/tundra-dusk.yaml b/themes/tundra-dusk.yaml index 84863c30..40ff956f 100644 --- a/themes/tundra-dusk.yaml +++ b/themes/tundra-dusk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 265 + pair: null contrast: fg: 85.6 black: 0 diff --git a/themes/turbo-c-3-0-borland-style.yaml b/themes/turbo-c-3-0-borland-style.yaml index bf58089d..80246e4a 100644 --- a/themes/turbo-c-3-0-borland-style.yaml +++ b/themes/turbo-c-3-0-borland-style.yaml @@ -2,7 +2,7 @@ name: "Turbo C 3.0 Borland Style" source: marketplace_id: "WatkinsLabs.turboc-3-0-theme" version: "0.0.1" - installs: 1306 + installs: 1308 author: "Watkins Labs" repo: "https://github.com/chris17453/vscode-turboc3.0-theme" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.turboc-3-0-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 84.7 black: 0 diff --git a/themes/turbo.yaml b/themes/turbo.yaml index 2a2b2b2d..de75325f 100644 --- a/themes/turbo.yaml +++ b/themes/turbo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 264 + pair: null contrast: fg: 101.3 black: 0 diff --git a/themes/turnip-contrast.yaml b/themes/turnip-contrast.yaml index 8ea4bb31..38f6ac31 100644 --- a/themes/turnip-contrast.yaml +++ b/themes/turnip-contrast.yaml @@ -1,11 +1,11 @@ name: "turnip-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#080809" fg: "#EDE0CE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 88.8 black: 0 diff --git a/themes/turnip-light.yaml b/themes/turnip-light.yaml index b9206050..57ab99b2 100644 --- a/themes/turnip-light.yaml +++ b/themes/turnip-light.yaml @@ -1,11 +1,11 @@ name: "turnip-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#444444" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/turnip.yaml b/themes/turnip.yaml index 5e2af6f8..b0c7f2e9 100644 --- a/themes/turnip.yaml +++ b/themes/turnip.yaml @@ -1,11 +1,11 @@ name: "turnip" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#1A1B1D" fg: "#EDE0CE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 87.5 black: 0 diff --git a/themes/turquesa-bege.yaml b/themes/turquesa-bege.yaml index c7762fd0..7f67c076 100644 --- a/themes/turquesa-bege.yaml +++ b/themes/turquesa-bege.yaml @@ -2,7 +2,7 @@ name: "Turquesa/bege" source: marketplace_id: "srtakennedy.turquesa" version: "0.0.4" - installs: 222 + installs: 224 author: "srtakennedy" repo: "https://github.com/SrtaKennedy" url: "https://marketplace.visualstudio.com/items?itemName=srtakennedy.turquesa" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.8 black: 0 diff --git a/themes/tutilabs-theme.yaml b/themes/tutilabs-theme.yaml index 95e3b0c8..e006fe97 100644 --- a/themes/tutilabs-theme.yaml +++ b/themes/tutilabs-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 281 + pair: null contrast: fg: 70.1 black: 17.2 diff --git a/themes/tw40-gigi.yaml b/themes/tw40-gigi.yaml index 0d16a72d..f7e475d2 100644 --- a/themes/tw40-gigi.yaml +++ b/themes/tw40-gigi.yaml @@ -2,7 +2,7 @@ name: "TW40 - Gigi" source: marketplace_id: "chrsolr.rose-pine-nvchad-theme" version: "0.0.3" - installs: 6735 + installs: 6739 author: "Christian Soler" repo: "https://github.com/chrsolr/rose-pine-nvchad-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=chrsolr.rose-pine-nvchad-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 288 + pair: null contrast: fg: 29.3 black: 0 diff --git a/themes/tweed-contrast.yaml b/themes/tweed-contrast.yaml index 45ed81a3..e2bcb1ac 100644 --- a/themes/tweed-contrast.yaml +++ b/themes/tweed-contrast.yaml @@ -1,11 +1,11 @@ name: "tweed-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#1E2026" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 271 + pair: null contrast: fg: 105.7 black: 0 diff --git a/themes/tweed-light.yaml b/themes/tweed-light.yaml index 4ed16845..2c6e0130 100644 --- a/themes/tweed-light.yaml +++ b/themes/tweed-light.yaml @@ -1,11 +1,11 @@ name: "tweed-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#585E6D" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 82.2 black: 0 diff --git a/themes/tweed.yaml b/themes/tweed.yaml index d96bef1f..be02d0fc 100644 --- a/themes/tweed.yaml +++ b/themes/tweed.yaml @@ -1,11 +1,11 @@ name: "tweed" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#3B3F4C" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 272 + pair: null contrast: fg: 98.3 black: 0 diff --git a/themes/twentyfour.yaml b/themes/twentyfour.yaml index bfc3d710..5fc02132 100644 --- a/themes/twentyfour.yaml +++ b/themes/twentyfour.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 85.8 black: 0 diff --git a/themes/twilight-cosmos.yaml b/themes/twilight-cosmos.yaml index f9a7069c..70f18fd7 100644 --- a/themes/twilight-cosmos.yaml +++ b/themes/twilight-cosmos.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 298 + pair: null contrast: fg: 90.3 black: 0 diff --git a/themes/twilight-pro.yaml b/themes/twilight-pro.yaml index 1cced2d7..ed0b5467 100644 --- a/themes/twilight-pro.yaml +++ b/themes/twilight-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 102.5 black: 0 diff --git a/themes/twilight-sage.yaml b/themes/twilight-sage.yaml index 42e57641..ed4728f9 100644 --- a/themes/twilight-sage.yaml +++ b/themes/twilight-sage.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 40.3 black: 0 diff --git a/themes/twilight.yaml b/themes/twilight.yaml index db02fb13..d6e437c5 100644 --- a/themes/twilight.yaml +++ b/themes/twilight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 243 + pair: null contrast: fg: 85.4 black: 0 diff --git a/themes/twilightsparkle.yaml b/themes/twilightsparkle.yaml index e95dc796..8b532053 100644 --- a/themes/twilightsparkle.yaml +++ b/themes/twilightsparkle.yaml @@ -2,7 +2,7 @@ name: "TwilightSparkle" source: marketplace_id: "nanoparsec.twilightsparkle" version: "0.1.0" - installs: 557 + installs: 558 author: "nanoparsec" repo: "https://github.com/nanoparsec/twilightsparkle-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nanoparsec.twilightsparkle" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 301 + pair: null contrast: fg: 73.9 black: 22.9 diff --git a/themes/twilite-darker.yaml b/themes/twilite-darker.yaml index f4458c03..7a8f77a7 100644 --- a/themes/twilite-darker.yaml +++ b/themes/twilite-darker.yaml @@ -2,7 +2,7 @@ name: "Twilite (Darker)" source: marketplace_id: "vegcom.twilite" version: "0.0.3" - installs: 29 + installs: 30 author: "vegcom" repo: "https://github.com/vegcom/VSCode-Twilite" url: "https://marketplace.visualstudio.com/items?itemName=vegcom.twilite" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 297 + pair: null contrast: fg: 102 black: 0 diff --git a/themes/twilite.yaml b/themes/twilite.yaml index ce9f35c5..b3e1c7d1 100644 --- a/themes/twilite.yaml +++ b/themes/twilite.yaml @@ -2,7 +2,7 @@ name: "Twilite" source: marketplace_id: "vegcom.twilite" version: "0.0.3" - installs: 29 + installs: 30 author: "vegcom" repo: "https://github.com/vegcom/VSCode-Twilite" url: "https://marketplace.visualstudio.com/items?itemName=vegcom.twilite" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 292 + pair: null contrast: fg: 101.3 black: 0 diff --git a/themes/twin-black.yaml b/themes/twin-black.yaml index 8d9facfd..ebec1c7d 100644 --- a/themes/twin-black.yaml +++ b/themes/twin-black.yaml @@ -2,7 +2,7 @@ name: "Twin Black" source: marketplace_id: "twin-themes.twin-vsc" version: "1.0.5" - installs: 892 + installs: 893 author: "Twin Themes" repo: "https://github.com/twin-themes/vscode" url: "https://marketplace.visualstudio.com/items?itemName=twin-themes.twin-vsc" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 64.4 black: 21.5 diff --git a/themes/twin-blue.yaml b/themes/twin-blue.yaml index ae5dd3de..87d6ed2c 100644 --- a/themes/twin-blue.yaml +++ b/themes/twin-blue.yaml @@ -2,7 +2,7 @@ name: "Twin Blue" source: marketplace_id: "twin-themes.twin-vsc" version: "1.0.5" - installs: 892 + installs: 893 author: "Twin Themes" repo: "https://github.com/twin-themes/vscode" url: "https://marketplace.visualstudio.com/items?itemName=twin-themes.twin-vsc" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 256 + pair: null contrast: fg: 66.2 black: 10.4 diff --git a/themes/two-firewatch.yaml b/themes/two-firewatch.yaml index 56e04681..fd931398 100644 --- a/themes/two-firewatch.yaml +++ b/themes/two-firewatch.yaml @@ -2,7 +2,7 @@ name: "Two Firewatch" source: marketplace_id: "hehk.two-firewatch" version: "0.0.1" - installs: 257 + installs: 258 author: "hehk" repo: "https://github.com/Hehk/two-firewatch" url: "https://marketplace.visualstudio.com/items?itemName=hehk.two-firewatch" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 71.7 black: 96.6 diff --git a/themes/twodark.yaml b/themes/twodark.yaml index 5d56d659..27e0f510 100644 --- a/themes/twodark.yaml +++ b/themes/twodark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 271 + pair: null contrast: fg: 88.7 black: 0 diff --git a/themes/tycho-crater.yaml b/themes/tycho-crater.yaml index b6316379..d9e0828a 100644 --- a/themes/tycho-crater.yaml +++ b/themes/tycho-crater.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 45.2 black: 77.6 diff --git a/themes/tyh-theme-dark.yaml b/themes/tyh-theme-dark.yaml index 3688b710..368e57ab 100644 --- a/themes/tyh-theme-dark.yaml +++ b/themes/tyh-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.3 black: 0 diff --git a/themes/typedark-magenta.yaml b/themes/typedark-magenta.yaml index e69a248f..46ad034c 100644 --- a/themes/typedark-magenta.yaml +++ b/themes/typedark-magenta.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 94.2 black: 0 diff --git a/themes/typedark-yellow.yaml b/themes/typedark-yellow.yaml deleted file mode 100644 index faa24243..00000000 --- a/themes/typedark-yellow.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "TypeDark Yellow" -source: - marketplace_id: "BonnyAD9.typedark" - version: "1.1.27" - installs: 374 - author: "BonnyAD9" - repo: "https://github.com/BonnyAD9/TypeDark" - url: "https://marketplace.visualstudio.com/items?itemName=BonnyAD9.typedark" -colors: - bg: "#222222" - fg: "#EEEEEE" - black: "#000000" - red: "#883333" - green: "#338833" - yellow: "#888833" - blue: "#5566EE" - magenta: "#884488" - cyan: "#338888" - white: "#CCCCCC" - brightBlack: "#777777" - brightRed: "#FF5555" - brightGreen: "#23D16A" - brightYellow: "#FFFF55" - brightBlue: "#308EEA" - brightMagenta: "#FF77FF" - brightCyan: "#66CCCC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 94.3 - black: 0 - red: 12.1 - green: 28.6 - yellow: 34.4 - blue: 27.4 - magenta: 17.6 - cyan: 30.6 - white: 73.2 - brightBlack: 28.1 - brightRed: 42 - brightGreen: 61.4 - brightYellow: 100.7 - brightBlue: 38.3 - brightMagenta: 56 - brightCyan: 64.2 - brightWhite: 105.5 diff --git a/themes/tyrell-corporation.yaml b/themes/tyrell-corporation.yaml index 7e31b509..b1f9be47 100644 --- a/themes/tyrell-corporation.yaml +++ b/themes/tyrell-corporation.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 68.4 black: 68.4 diff --git a/themes/tyrian-night.yaml b/themes/tyrian-night.yaml index bd099794..9985343f 100644 --- a/themes/tyrian-night.yaml +++ b/themes/tyrian-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 75.2 black: 0 diff --git a/themes/tyrone-neon-24k-gold.yaml b/themes/tyrone-neon-24k-gold.yaml deleted file mode 100644 index d57dfc8f..00000000 --- a/themes/tyrone-neon-24k-gold.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Tyrone Neon - 24K Gold" -source: - marketplace_id: "tyronejosee.tyrone-neon" - version: "2.0.0" - installs: 157 - author: "tyronejosee" - repo: "https://github.com/tyronejosee/theme_tyrone_neon" - url: "https://marketplace.visualstudio.com/items?itemName=tyronejosee.tyrone-neon" -colors: - bg: "#000000" - fg: "#E5E5E5" - black: "#484F58" - red: "#FF4757" - green: "#00FF87" - yellow: "#FFFA65" - blue: "#00D9FF" - magenta: "#FF6B9D" - cyan: "#00FFCC" - white: "#E5E5E5" - brightBlack: "#7D8590" - brightRed: "#FF6B6B" - brightGreen: "#5EFFA3" - brightYellow: "#FFFF80" - brightBlue: "#40E0FF" - brightMagenta: "#FF8FC7" - brightCyan: "#80FFE6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: null - contrast: - fg: 91 - black: 13.6 - red: 42.3 - green: 87.7 - yellow: 100.9 - blue: 73.3 - magenta: 50.6 - cyan: 89.8 - white: 91 - brightBlack: 36.8 - brightRed: 49.1 - brightGreen: 90 - brightYellow: 103.7 - brightBlue: 77.3 - brightMagenta: 61.5 - brightCyan: 94.1 - brightWhite: 107.9 diff --git a/themes/ui.yaml b/themes/ui.yaml index ec2bc6e6..580dbfcb 100644 --- a/themes/ui.yaml +++ b/themes/ui.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 176 + pair: null contrast: fg: 86.7 black: 21.9 diff --git a/themes/ukiyo-e-aged-manuscript.yaml b/themes/ukiyo-e-aged-manuscript.yaml index f5049fe6..dbbdd04e 100644 --- a/themes/ukiyo-e-aged-manuscript.yaml +++ b/themes/ukiyo-e-aged-manuscript.yaml @@ -2,7 +2,7 @@ name: "Ukiyo-e Aged Manuscript" source: marketplace_id: "sserafy.ttera-themes" version: "2.0.7" - installs: 2036 + installs: 2044 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: 87 + pair: null contrast: fg: 68.8 black: 68.8 diff --git a/themes/ukiyo-e-manuscript.yaml b/themes/ukiyo-e-manuscript.yaml index aeb18ae3..62c958e1 100644 --- a/themes/ukiyo-e-manuscript.yaml +++ b/themes/ukiyo-e-manuscript.yaml @@ -1,11 +1,11 @@ name: "Ukiyo-e Manuscript" source: - marketplace_id: "sserafy.naturefy-themes" + marketplace_id: "sserafy.ssera-themes" version: "2.0.2" - installs: 1655 + installs: 334 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.naturefy-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" colors: bg: "#F5F0E8" fg: "#1A1614" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.1 black: 96.1 diff --git a/themes/ukiyo-tone-asahi-morning-sun.yaml b/themes/ukiyo-tone-asahi-morning-sun.yaml index 12d91db6..a21effb0 100644 --- a/themes/ukiyo-tone-asahi-morning-sun.yaml +++ b/themes/ukiyo-tone-asahi-morning-sun.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 87.5 black: 87.5 diff --git a/themes/ukiyo-tone-kachi-iro-victory-color.yaml b/themes/ukiyo-tone-kachi-iro-victory-color.yaml index fd2bfcc2..49fbcc31 100644 --- a/themes/ukiyo-tone-kachi-iro-victory-color.yaml +++ b/themes/ukiyo-tone-kachi-iro-victory-color.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 258 + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/ukiyo-tone-karesansui-dry-landscape.yaml b/themes/ukiyo-tone-karesansui-dry-landscape.yaml index b0ed8f63..eda11591 100644 --- a/themes/ukiyo-tone-karesansui-dry-landscape.yaml +++ b/themes/ukiyo-tone-karesansui-dry-landscape.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: 137 + pair: null contrast: fg: 76.7 black: 76.7 diff --git a/themes/ukiyo-tone-koke-dera-moss-temple.yaml b/themes/ukiyo-tone-koke-dera-moss-temple.yaml index 21b10c3c..0032b7ce 100644 --- a/themes/ukiyo-tone-koke-dera-moss-temple.yaml +++ b/themes/ukiyo-tone-koke-dera-moss-temple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 181 + pair: null contrast: fg: 84.4 black: 0 diff --git a/themes/ukiyo-tone-kuro-sumi-black-ink.yaml b/themes/ukiyo-tone-kuro-sumi-black-ink.yaml index 576ebdc2..66928266 100644 --- a/themes/ukiyo-tone-kuro-sumi-black-ink.yaml +++ b/themes/ukiyo-tone-kuro-sumi-black-ink.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.8 black: 0 diff --git a/themes/ukiyo-tone-tasogare-twilight.yaml b/themes/ukiyo-tone-tasogare-twilight.yaml index 880cd87f..967c1202 100644 --- a/themes/ukiyo-tone-tasogare-twilight.yaml +++ b/themes/ukiyo-tone-tasogare-twilight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 256 + pair: null contrast: fg: 56 black: 0 diff --git a/themes/ukiyo.yaml b/themes/ukiyo.yaml index 2663e3ed..93191aa7 100644 --- a/themes/ukiyo.yaml +++ b/themes/ukiyo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.3 black: 22.5 diff --git a/themes/ultima-gwz.yaml b/themes/ultima-gwz.yaml index 41c3f996..7b2a067e 100644 --- a/themes/ultima-gwz.yaml +++ b/themes/ultima-gwz.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 81.8 black: 0 diff --git a/themes/ultima.yaml b/themes/ultima.yaml index 575f12ce..87578366 100644 --- a/themes/ultima.yaml +++ b/themes/ultima.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 86.7 black: 0 diff --git a/themes/ultra-instinct-mastered-light.yaml b/themes/ultra-instinct-mastered-light.yaml index f0c00adf..a35b918e 100644 --- a/themes/ultra-instinct-mastered-light.yaml +++ b/themes/ultra-instinct-mastered-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 90.9 black: 102.9 diff --git a/themes/ultra-instinct-mastered.yaml b/themes/ultra-instinct-mastered.yaml index 918e4615..dd03b2a5 100644 --- a/themes/ultra-instinct-mastered.yaml +++ b/themes/ultra-instinct-mastered.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 304 + pair: null contrast: fg: 61.6 black: 0 diff --git a/themes/ultra-instinct-sign.yaml b/themes/ultra-instinct-sign.yaml index ede8ac21..a2340ab1 100644 --- a/themes/ultra-instinct-sign.yaml +++ b/themes/ultra-instinct-sign.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 267 + pair: null contrast: fg: 61.8 black: 0 diff --git a/themes/umbra.yaml b/themes/umbra.yaml index 00b6d66d..f30519c6 100644 --- a/themes/umbra.yaml +++ b/themes/umbra.yaml @@ -2,7 +2,7 @@ name: "umbra" source: marketplace_id: "greven.umbra" version: "1.4.10" - installs: 17301 + installs: 17302 author: "greven" repo: "https://github.com/greven/umbra-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=greven.umbra" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 74.9 black: 0 diff --git a/themes/umi.yaml b/themes/umi.yaml index ddb3151d..84b4ce5f 100644 --- a/themes/umi.yaml +++ b/themes/umi.yaml @@ -2,7 +2,7 @@ name: "Umi" source: marketplace_id: "TobiasTimm.umi" version: "1.1.2" - installs: 2886 + installs: 2887 author: "Tobias Timm" repo: "https://github.com/tobiastimm/umi" url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.umi" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 261 + pair: null contrast: fg: 76.4 black: 27.4 diff --git a/themes/ump-45-leva.yaml b/themes/ump-45-leva.yaml index fbd12486..3afded00 100644 --- a/themes/ump-45-leva.yaml +++ b/themes/ump-45-leva.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 86.2 black: 0 diff --git a/themes/unbluelievable.yaml b/themes/unbluelievable.yaml index d47e7c87..90852546 100644 --- a/themes/unbluelievable.yaml +++ b/themes/unbluelievable.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 289 + pair: null contrast: fg: 63.2 black: 18.7 diff --git a/themes/undefined.yaml b/themes/undefined.yaml index ea69cdfa..04df92b6 100644 --- a/themes/undefined.yaml +++ b/themes/undefined.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 79.2 black: 0 diff --git a/themes/underdark-fork.yaml b/themes/underdark-fork.yaml index e637a622..871f72ff 100644 --- a/themes/underdark-fork.yaml +++ b/themes/underdark-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 49.2 black: 0 diff --git a/themes/underdark-v2.yaml b/themes/underdark-v2.yaml index 55c3ab1e..548ce970 100644 --- a/themes/underdark-v2.yaml +++ b/themes/underdark-v2.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 83.3 black: 7.3 diff --git a/themes/understated-no-italics.yaml b/themes/understated-no-italics.yaml deleted file mode 100644 index 31e81d5c..00000000 --- a/themes/understated-no-italics.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Understated (no-italics)" -source: - marketplace_id: "hnrchrdl.understated-theme-vscode" - version: "0.1.2" - installs: 1017 - author: "hnrchrdl" - repo: "https://github.com/hnrchrdl/understated-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=hnrchrdl.understated-theme-vscode" -colors: - bg: "#2F3640" - fg: "#F5F6FA" - black: "#353B48" - red: "#E84118" - green: "#44BD32" - yellow: "#FBC531" - blue: "#40739E" - magenta: "#9C88FF" - cyan: "#00A8FF" - white: "#F5F6FA" - brightBlack: "#718093" - brightRed: "#E84118" - brightGreen: "#00A8FF" - brightYellow: "#FBC531" - brightBlue: "#00A8FF" - brightMagenta: "#9C88FF" - brightCyan: "#487EB0" - brightWhite: "#F5F6FA" -meta: - mode: "dark" - accent: "orange" - hue: 257 - contrast: - fg: 95.5 - black: 0 - red: 28.9 - green: 47.7 - yellow: 69.6 - blue: 20.5 - magenta: 40.9 - cyan: 45.2 - white: 95.5 - brightBlack: 27.5 - brightRed: 28.9 - brightGreen: 45.2 - brightYellow: 69.6 - brightBlue: 45.2 - brightMagenta: 40.9 - brightCyan: 25.6 - brightWhite: 95.5 diff --git a/themes/unicorn-dark.yaml b/themes/unicorn-dark.yaml index d071e926..5e5441bd 100644 --- a/themes/unicorn-dark.yaml +++ b/themes/unicorn-dark.yaml @@ -2,7 +2,7 @@ name: "Unicorn dark" source: marketplace_id: "MarfahTechnologies.unicorn-dark" version: "1.0.0" - installs: 215 + installs: 216 author: "Marfah Technologies" repo: "https://github.com/FahadQasim283/unicorn-theme" url: "https://marketplace.visualstudio.com/items?itemName=MarfahTechnologies.unicorn-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.9 black: 65.2 diff --git a/themes/unicorn.yaml b/themes/unicorn.yaml index a2a5de25..f4bfabb7 100644 --- a/themes/unicorn.yaml +++ b/themes/unicorn.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/unicornio-dark.yaml b/themes/unicornio-dark.yaml index d79260d4..cf143851 100644 --- a/themes/unicornio-dark.yaml +++ b/themes/unicornio-dark.yaml @@ -2,7 +2,7 @@ name: "unicornio dark" source: marketplace_id: "unicorniodev.unicornio-dark" version: "1.1.0" - installs: 229 + installs: 230 author: "FlorLuzDuarte" repo: "https://github.com/unicorniodev/unicornio-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=unicorniodev.unicornio-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/unieye.yaml b/themes/unieye.yaml index a1b4550f..94cfe816 100644 --- a/themes/unieye.yaml +++ b/themes/unieye.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 292 + pair: null contrast: fg: 72.4 black: 0 diff --git a/themes/uniquezhd.yaml b/themes/uniquezhd.yaml index 3107db43..804bb86c 100644 --- a/themes/uniquezhd.yaml +++ b/themes/uniquezhd.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 283 + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/unitsmash.yaml b/themes/unitsmash.yaml index 22c684b1..601baa74 100644 --- a/themes/unitsmash.yaml +++ b/themes/unitsmash.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 78.8 black: 0 diff --git a/themes/unity-theme.yaml b/themes/unity-theme.yaml index 46b80514..77ef1c58 100644 --- a/themes/unity-theme.yaml +++ b/themes/unity-theme.yaml @@ -2,7 +2,7 @@ name: "Unity Theme" source: marketplace_id: "TallesSouza.Unity-theme" version: "1.1.0" - installs: 1389 + installs: 1392 author: "Talles Souza" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TallesSouza.Unity-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.6 black: 15.5 diff --git a/themes/universe-gray-italic.yaml b/themes/universe-gray-italic.yaml deleted file mode 100644 index e12ef471..00000000 --- a/themes/universe-gray-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Universe Gray Italic" -source: - marketplace_id: "MatiasOlivera.universe" - version: "1.9.0" - installs: 20196 - author: "Matías Olivera" - repo: "https://github.com/MatiasOlivera/universe-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MatiasOlivera.universe" -colors: - bg: "#1A1A1A" - fg: "#DDDDDD" - black: "#373737" - red: "#FFA2A2" - green: "#BBD99E" - yellow: "#E6D791" - blue: "#9AC6F2" - magenta: "#C1A2FF" - cyan: "#92D8E6" - white: "#DDDDDD" - brightBlack: "#4C4C4C" - brightRed: "#FFB3B3" - brightGreen: "#C9E2AF" - brightYellow: "#ECE0A5" - brightBlue: "#ACD1F5" - brightMagenta: "#CCB3FF" - brightCyan: "#A5E0EC" - brightWhite: "#F2F2F2" -meta: - mode: "dark" - accent: "magenta" - hue: null - contrast: - fg: 84.7 - black: 0 - red: 64.7 - green: 76.4 - yellow: 80.6 - blue: 68.3 - magenta: 59.3 - cyan: 74.9 - white: 84.7 - brightBlack: 11.4 - brightRed: 71.2 - brightGreen: 82.7 - brightYellow: 86 - brightBlue: 74.9 - brightMagenta: 67 - brightCyan: 80.5 - brightWhite: 98 diff --git a/themes/universe-italic.yaml b/themes/universe-italic.yaml index e0ff0597..946d7def 100644 --- a/themes/universe-italic.yaml +++ b/themes/universe-italic.yaml @@ -2,7 +2,7 @@ name: "Universe Italic" source: marketplace_id: "MatiasOlivera.universe" version: "1.9.0" - installs: 20196 + installs: 20199 author: "Matías Olivera" repo: "https://github.com/MatiasOlivera/universe-theme" url: "https://marketplace.visualstudio.com/items?itemName=MatiasOlivera.universe" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 263 + pair: null contrast: fg: 82.4 black: 0 diff --git a/themes/universe-purple-italic.yaml b/themes/universe-purple-italic.yaml deleted file mode 100644 index fdd3d176..00000000 --- a/themes/universe-purple-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Universe Purple Italic" -source: - marketplace_id: "MatiasOlivera.universe" - version: "1.9.0" - installs: 20196 - author: "Matías Olivera" - repo: "https://github.com/MatiasOlivera/universe-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MatiasOlivera.universe" -colors: - bg: "#150E29" - fg: "#D8D5DF" - black: "#362E4D" - red: "#FFA2A2" - green: "#BBD99E" - yellow: "#E6D791" - blue: "#9AC6F2" - magenta: "#C1A2FF" - cyan: "#92D8E6" - white: "#D8D5DF" - brightBlack: "#463D5F" - brightRed: "#FFB3B3" - brightGreen: "#C9E2AF" - brightYellow: "#ECE0A5" - brightBlue: "#ACD1F5" - brightMagenta: "#CCB3FF" - brightCyan: "#A5E0EC" - brightWhite: "#F2F2F2" -meta: - mode: "dark" - accent: "magenta" - hue: 293 - contrast: - fg: 81.2 - black: 0 - red: 65.3 - green: 77 - yellow: 81.3 - blue: 68.9 - magenta: 59.9 - cyan: 75.6 - white: 81.2 - brightBlack: 8.5 - brightRed: 71.8 - brightGreen: 83.3 - brightYellow: 86.7 - brightBlue: 75.5 - brightMagenta: 67.6 - brightCyan: 81.2 - brightWhite: 98.6 diff --git a/themes/universe.yaml b/themes/universe.yaml index 8286f9f1..ce978887 100644 --- a/themes/universe.yaml +++ b/themes/universe.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 351 + pair: null contrast: fg: 57.6 black: 0 diff --git a/themes/unlight-v-2.yaml b/themes/unlight-v-2.yaml index 9edf0c92..d1d74340 100644 --- a/themes/unlight-v-2.yaml +++ b/themes/unlight-v-2.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 54.5 black: 7.3 diff --git a/themes/untitled-fork-fork.yaml b/themes/untitled-fork-fork.yaml index bdca9a54..10c0a7a2 100644 --- a/themes/untitled-fork-fork.yaml +++ b/themes/untitled-fork-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 225 + pair: null contrast: fg: 79.5 black: 29.1 diff --git a/themes/untitled-fork.yaml b/themes/untitled-fork.yaml index cb17a943..d28adce9 100644 --- a/themes/untitled-fork.yaml +++ b/themes/untitled-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 124 + pair: null contrast: fg: 97.9 black: 10.1 diff --git a/themes/untitled.yaml b/themes/untitled.yaml index b9f270ab..847fe032 100644 --- a/themes/untitled.yaml +++ b/themes/untitled.yaml @@ -2,7 +2,7 @@ name: "Untitled" source: marketplace_id: "invillia.Code-Like-A-Rainbow" version: "0.3.0" - installs: 10472 + installs: 10478 author: "invillia" repo: null url: "https://marketplace.visualstudio.com/items?itemName=invillia.Code-Like-A-Rainbow" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 38.9 black: 0 diff --git a/themes/unyodusk.yaml b/themes/unyodusk.yaml index 67c28059..c865c521 100644 --- a/themes/unyodusk.yaml +++ b/themes/unyodusk.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 58.7 black: 0 diff --git a/themes/updog-light.yaml b/themes/updog-light.yaml index bacee8a8..b0b5239e 100644 --- a/themes/updog-light.yaml +++ b/themes/updog-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 286 + pair: null contrast: fg: 92.2 black: 95.7 diff --git a/themes/updog.yaml b/themes/updog.yaml index eb12cec9..5961c422 100644 --- a/themes/updog.yaml +++ b/themes/updog.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 89 black: 0 diff --git a/themes/upward-dark-focus-border-on.yaml b/themes/upward-dark-focus-border-on.yaml deleted file mode 100644 index b676401c..00000000 --- a/themes/upward-dark-focus-border-on.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Upward Dark (Focus Border On)" -source: - marketplace_id: "upward-solutions.upward-theme" - version: "3.1.0" - installs: 123 - author: "Upward Solutions" - repo: "https://github.com/Upward-Solutions-Agency/VS-Code-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=upward-solutions.upward-theme" -colors: - bg: "#000000" - fg: "#C5C5C5" - black: "#707070" - red: "#E56C7C" - green: "#439D49" - yellow: "#DDAA3C" - blue: "#45B0DE" - magenta: "#D161D1" - cyan: "#1FB2B2" - white: "#E8E8E8" - brightBlack: "#ACABAB" - brightRed: "#EA8A97" - brightGreen: "#86EA8C" - brightYellow: "#E6C070" - brightBlue: "#81CAE9" - brightMagenta: "#EEA0EE" - brightCyan: "#52E0E0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 71.5 - black: 27.4 - red: 44.3 - green: 40.4 - yellow: 60.8 - blue: 53.8 - magenta: 41.8 - cyan: 51.6 - white: 92.9 - brightBlack: 56.9 - brightRed: 54.1 - brightGreen: 80.7 - brightYellow: 71.5 - brightBlue: 68.8 - brightMagenta: 65.7 - brightCyan: 76.1 - brightWhite: 107.9 diff --git a/themes/upward-dark-legacy-focus-border-on.yaml b/themes/upward-dark-legacy-focus-border-on.yaml deleted file mode 100644 index 585e7087..00000000 --- a/themes/upward-dark-legacy-focus-border-on.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Upward Dark Legacy (Focus Border On)" -source: - marketplace_id: "upward-solutions.upward-theme" - version: "3.1.0" - installs: 123 - author: "Upward Solutions" - repo: "https://github.com/Upward-Solutions-Agency/VS-Code-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=upward-solutions.upward-theme" -colors: - bg: "#000000" - fg: "#949494" - black: "#6D6D6D" - red: "#CD3131" - green: "#0DBC79" - yellow: "#BE8F00" - blue: "#1C72D1" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#C9C9C9" - brightBlack: "#8A8A8A" - brightRed: "#FF6767" - brightGreen: "#33FFAD" - brightYellow: "#FFCB33" - brightBlue: "#62ADFF" - brightMagenta: "#FF86FF" - brightCyan: "#32D7FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 44.6 - black: 26.1 - red: 27.7 - green: 54 - yellow: 46.1 - blue: 29 - magenta: 30.8 - cyan: 48.6 - white: 73.9 - brightBlack: 39.6 - brightRed: 48.2 - brightGreen: 89.1 - brightYellow: 79.3 - brightBlue: 56 - brightMagenta: 62.2 - brightCyan: 72.7 - brightWhite: 107.9 diff --git a/themes/urara.yaml b/themes/urara.yaml index 0616dbd6..1fc20210 100644 --- a/themes/urara.yaml +++ b/themes/urara.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 302 + pair: null contrast: fg: 76.5 black: 0 diff --git a/themes/urban-couple.yaml b/themes/urban-couple.yaml index 2697fd2d..e81f2bd3 100644 --- a/themes/urban-couple.yaml +++ b/themes/urban-couple.yaml @@ -2,7 +2,7 @@ name: "Urban Couple" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 40 + pair: null contrast: fg: 86 black: 0 diff --git a/themes/urban-forge.yaml b/themes/urban-forge.yaml index 95ea5acf..1d91c360 100644 --- a/themes/urban-forge.yaml +++ b/themes/urban-forge.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 276 + pair: null contrast: fg: 68.4 black: 0 diff --git a/themes/urban-glow.yaml b/themes/urban-glow.yaml index 921dd18b..2b494bfd 100644 --- a/themes/urban-glow.yaml +++ b/themes/urban-glow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86 black: 0 diff --git a/themes/user160.yaml b/themes/user160.yaml index 0891d643..f4fba091 100644 --- a/themes/user160.yaml +++ b/themes/user160.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 255 + pair: null contrast: fg: 77.9 black: 13.4 diff --git a/themes/userscape-contrast.yaml b/themes/userscape-contrast.yaml index d39e2cf2..c05525e7 100644 --- a/themes/userscape-contrast.yaml +++ b/themes/userscape-contrast.yaml @@ -1,11 +1,11 @@ name: "userscape-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#15181C" fg: "#DCE2E8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 87.5 black: 0 diff --git a/themes/userscape-light.yaml b/themes/userscape-light.yaml index 36acf822..63f8c597 100644 --- a/themes/userscape-light.yaml +++ b/themes/userscape-light.yaml @@ -1,11 +1,11 @@ name: "userscape-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#F5F8FC" fg: "#879BB0" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 50.4 black: 0 diff --git a/themes/userscape.yaml b/themes/userscape.yaml index 0aef438a..9ecaf9b3 100644 --- a/themes/userscape.yaml +++ b/themes/userscape.yaml @@ -1,11 +1,11 @@ name: "userscape" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#323A42" fg: "#DCE2E8" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 248 + pair: null contrast: fg: 81 black: 0 diff --git a/themes/utheme.yaml b/themes/utheme.yaml index f2f17933..5908d890 100644 --- a/themes/utheme.yaml +++ b/themes/utheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 319 + pair: null contrast: fg: 73 black: 0 diff --git a/themes/utopia.yaml b/themes/utopia.yaml index 226f6a3e..380f0dd9 100644 --- a/themes/utopia.yaml +++ b/themes/utopia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 87 black: 0 diff --git a/themes/uvadark-rahul-fork.yaml b/themes/uvadark-rahul-fork.yaml index 86991a47..9796f333 100644 --- a/themes/uvadark-rahul-fork.yaml +++ b/themes/uvadark-rahul-fork.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 49.5 black: 0 diff --git a/themes/v-id-contrast.yaml b/themes/v-id-contrast.yaml index e60cbf5a..f1f9207f 100644 --- a/themes/v-id-contrast.yaml +++ b/themes/v-id-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 52.5 black: 0 diff --git a/themes/v-id-soft.yaml b/themes/v-id-soft.yaml index b5c051a6..2c9088e7 100644 --- a/themes/v-id-soft.yaml +++ b/themes/v-id-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 279 + pair: null contrast: fg: 33.4 black: 0 diff --git a/themes/v01d-theme-alternative.yaml b/themes/v01d-theme-alternative.yaml index 17880bb5..dabf7096 100644 --- a/themes/v01d-theme-alternative.yaml +++ b/themes/v01d-theme-alternative.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 293 + pair: null contrast: fg: 66.3 black: 0 diff --git a/themes/v01d-theme.yaml b/themes/v01d-theme.yaml index 1e8b0898..eee1c6f3 100644 --- a/themes/v01d-theme.yaml +++ b/themes/v01d-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 293 + pair: null contrast: fg: 53.5 black: 0 diff --git a/themes/v7.yaml b/themes/v7.yaml index 117f0dd1..871ba204 100644 --- a/themes/v7.yaml +++ b/themes/v7.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 64 black: 0 diff --git a/themes/vaatu.yaml b/themes/vaatu.yaml index 633142ee..76363bf9 100644 --- a/themes/vaatu.yaml +++ b/themes/vaatu.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/vagalume-dev.yaml b/themes/vagalume-dev.yaml index 66b554af..7b9c7739 100644 --- a/themes/vagalume-dev.yaml +++ b/themes/vagalume-dev.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 71.7 black: 7.4 diff --git a/themes/vagruvboxtheme-color-theme.yaml b/themes/vagruvboxtheme-color-theme.yaml index 2ddb741f..297ccb38 100644 --- a/themes/vagruvboxtheme-color-theme.yaml +++ b/themes/vagruvboxtheme-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.3 black: 0 diff --git a/themes/vague-neovim-theme-extended-light.yaml b/themes/vague-neovim-theme-extended-light.yaml index 2d571efd..ef499886 100644 --- a/themes/vague-neovim-theme-extended-light.yaml +++ b/themes/vague-neovim-theme-extended-light.yaml @@ -2,7 +2,7 @@ name: "Vague neovim Theme Extended Light" source: marketplace_id: "EmmettHintz.Kanagawa-Vague" version: "0.1.6" - installs: 1197 + installs: 1199 author: "Emmett Hintz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.Kanagawa-Vague" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 103.9 black: 100.9 diff --git a/themes/vague-neovim-theme-extended.yaml b/themes/vague-neovim-theme-extended.yaml index dc3403dc..119820eb 100644 --- a/themes/vague-neovim-theme-extended.yaml +++ b/themes/vague-neovim-theme-extended.yaml @@ -2,7 +2,7 @@ name: "Vague neovim Theme Extended" source: marketplace_id: "EmmettHintz.Kanagawa-Vague" version: "0.1.6" - installs: 1197 + installs: 1199 author: "Emmett Hintz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.Kanagawa-Vague" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 75.5 black: 0 diff --git a/themes/valary.yaml b/themes/valary.yaml index 1f0b6c86..74e2bb80 100644 --- a/themes/valary.yaml +++ b/themes/valary.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 25.6 black: 22.7 diff --git a/themes/valkthor-dark-theme.yaml b/themes/valkthor-dark-theme.yaml index 3b84db70..bdf192c2 100644 --- a/themes/valkthor-dark-theme.yaml +++ b/themes/valkthor-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 97.5 black: 0 diff --git a/themes/valley-italic.yaml b/themes/valley-italic.yaml deleted file mode 100644 index 5fe4a78e..00000000 --- a/themes/valley-italic.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Valley Italic" -source: - marketplace_id: "TimGrochowski.valley-vscode" - version: "0.4.0" - installs: 4889 - author: "Tim Grochowski" - repo: "https://github.com/TimGr/valley-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=TimGrochowski.valley-vscode" -colors: - bg: "#1E1E1F" - fg: "#BFC7CF" - black: "#282829" - red: "#D66A81" - green: "#78B98A" - yellow: "#D8C67E" - blue: "#5B89DB" - magenta: "#DF91CA" - cyan: "#57B6CD" - white: "#FAFAFA" - brightBlack: "#656567" - brightRed: "#F59EB1" - brightGreen: "#A0E4B2" - brightYellow: "#F5E8B2" - brightBlue: "#91B7F8" - brightMagenta: "#FACCEE" - brightCyan: "#84DCF0" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 70.2 - black: 0 - red: 39.2 - green: 54.9 - yellow: 70.3 - blue: 37.7 - magenta: 54.6 - cyan: 54.3 - white: 102.7 - brightBlack: 20.8 - brightRed: 61.5 - brightGreen: 79 - brightYellow: 90.8 - brightBlue: 61 - brightMagenta: 82 - brightCyan: 75.8 - brightWhite: 102.7 diff --git a/themes/valorant-theme-darker.yaml b/themes/valorant-theme-darker.yaml index ffcc7200..acbe6ee6 100644 --- a/themes/valorant-theme-darker.yaml +++ b/themes/valorant-theme-darker.yaml @@ -2,7 +2,7 @@ name: "Valorant Theme - Darker" source: marketplace_id: "TasnimulHasan.valorant-theme" version: "4.2.4" - installs: 8379 + installs: 8382 author: "Tasnimul Hasan" repo: "https://github.com/Tasnimul-Hasan/valorant-theme" url: "https://marketplace.visualstudio.com/items?itemName=TasnimulHasan.valorant-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: null contrast: fg: 84.6 black: 27.7 diff --git a/themes/valorant-theme-remasterd.yaml b/themes/valorant-theme-remasterd.yaml index 43ba6ff5..84469578 100644 --- a/themes/valorant-theme-remasterd.yaml +++ b/themes/valorant-theme-remasterd.yaml @@ -2,7 +2,7 @@ name: "Valorant Theme - Remasterd" source: marketplace_id: "TasnimulHasan.valorant-theme" version: "4.2.4" - installs: 8379 + installs: 8382 author: "Tasnimul Hasan" repo: "https://github.com/Tasnimul-Hasan/valorant-theme" url: "https://marketplace.visualstudio.com/items?itemName=TasnimulHasan.valorant-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: null contrast: fg: 79.1 black: 30.3 diff --git a/themes/vampurr.yaml b/themes/vampurr.yaml index 8a89f0ad..ad900157 100644 --- a/themes/vampurr.yaml +++ b/themes/vampurr.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 285 + pair: null contrast: fg: 100.6 black: 0 diff --git a/themes/van-gogh-theme.yaml b/themes/van-gogh-theme.yaml index fb2f5baf..3e40c38e 100644 --- a/themes/van-gogh-theme.yaml +++ b/themes/van-gogh-theme.yaml @@ -2,7 +2,7 @@ name: "Van Gogh Theme" source: marketplace_id: "kyawzinhtet.van-gogh" version: "0.0.8" - installs: 8 + installs: 9 author: "Kyaw Zin Htet" repo: "https://github.com/kyawzinhtett/Van-Gogh-Theme" url: "https://marketplace.visualstudio.com/items?itemName=kyawzinhtet.van-gogh" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 258 + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/vanilla-jade.yaml b/themes/vanilla-jade.yaml index 56db7059..14797899 100644 --- a/themes/vanilla-jade.yaml +++ b/themes/vanilla-jade.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.9 black: 99 diff --git a/themes/vanilla.yaml b/themes/vanilla.yaml index 0fb60107..e7474d86 100644 --- a/themes/vanilla.yaml +++ b/themes/vanilla.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.1 black: 97.2 diff --git a/themes/vapor.yaml b/themes/vapor.yaml index 71c1ca03..96b9d2bd 100644 --- a/themes/vapor.yaml +++ b/themes/vapor.yaml @@ -1,49 +1,50 @@ -name: "vapor" +name: "Vapor" source: - marketplace_id: "Swerve.vapor-color-theme" - version: "0.0.1" - installs: 2 - author: "Swerve" + marketplace_id: "SushyDev.vapor-theme" + version: "0.0.3" + installs: 1106 + author: "SushyDev" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Swerve.vapor-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SushyDev.vapor-theme" colors: - bg: "#070825" - fg: "#46BDFF" - black: "#181A1F" - red: "#FF16B0" - green: "#848BBD" - yellow: "#FCEE54" - blue: "#46BDFF" - magenta: "#FF92DF" - cyan: "#DF81FC" - white: "#FFFFFF" - brightBlack: "#FF16B0" - brightRed: "#F85353" - brightGreen: "#FCEE54" - brightYellow: "#FFFFFF" - brightBlue: "#46BDFF" - brightMagenta: "#FF92DF" - brightCyan: "#FF901F" + bg: "#121212" + fg: "#D4D4D4" + black: "#000000" + red: "#E53935" + green: "#43A047" + yellow: "#FFEB3B" + blue: "#1E88E5" + magenta: "#8E24AA" + cyan: "#00ACC1" + white: "#DEDEDE" + brightBlack: "#666666" + brightRed: "#E57373" + brightGreen: "#81C784" + brightYellow: "#FFF176" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#00BCD4" brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "red" - hue: 275 + accent: "orange" + hue: null + pair: null contrast: - fg: 61.2 + fg: 79.9 black: 0 - red: 41.2 - green: 41.3 - yellow: 94.2 - blue: 61.2 - magenta: 63.3 - cyan: 54.5 - white: 107.6 - brightBlack: 41.2 - brightRed: 42.1 - brightGreen: 94.2 - brightYellow: 107.6 - brightBlue: 61.2 - brightMagenta: 63.3 - brightCyan: 57.6 - brightWhite: 107.6 + red: 33.4 + green: 41 + yellow: 92.8 + blue: 37.3 + magenta: 18.2 + cyan: 49 + white: 86.1 + brightBlack: 22.5 + brightRed: 45.2 + brightGreen: 62.9 + brightYellow: 96.3 + brightBlue: 58.2 + brightMagenta: 38.3 + brightCyan: 56.9 + brightWhite: 107.3 diff --git a/themes/vaporizer-alice-dark.yaml b/themes/vaporizer-alice-dark.yaml index 360676ae..962d9062 100644 --- a/themes/vaporizer-alice-dark.yaml +++ b/themes/vaporizer-alice-dark.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Alice Dark" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Vaporizer Alice Light" contrast: fg: 65.7 black: 10.2 diff --git a/themes/vaporizer-alice-light.yaml b/themes/vaporizer-alice-light.yaml index 091be252..3552679d 100644 --- a/themes/vaporizer-alice-light.yaml +++ b/themes/vaporizer-alice-light.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Alice Light" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Vaporizer Alice Dark" contrast: fg: 27.1 black: 106 diff --git a/themes/vaporizer-ava-light.yaml b/themes/vaporizer-ava-light.yaml index eaa7413e..e5fabdd1 100644 --- a/themes/vaporizer-ava-light.yaml +++ b/themes/vaporizer-ava-light.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Ava Light" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 28.1 black: 106 diff --git a/themes/vaporizer-batman-dark-2022.yaml b/themes/vaporizer-batman-dark-2022.yaml index f5c2a8a6..ee324516 100644 --- a/themes/vaporizer-batman-dark-2022.yaml +++ b/themes/vaporizer-batman-dark-2022.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Batman Dark 2022" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/vaporizer-batman-dark-night.yaml b/themes/vaporizer-batman-dark-night.yaml index e5062bdd..662c92d5 100644 --- a/themes/vaporizer-batman-dark-night.yaml +++ b/themes/vaporizer-batman-dark-night.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Batman Dark Night" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79 black: 0 diff --git a/themes/vaporizer-cloudy-light.yaml b/themes/vaporizer-cloudy-light.yaml index 6e0ced6f..ba13316e 100644 --- a/themes/vaporizer-cloudy-light.yaml +++ b/themes/vaporizer-cloudy-light.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Cloudy Light" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "teal" hue: null + pair: null contrast: fg: 23.9 black: 88.4 diff --git a/themes/vaporizer-cobalt-dark.yaml b/themes/vaporizer-cobalt-dark.yaml index 00532902..4df666b2 100644 --- a/themes/vaporizer-cobalt-dark.yaml +++ b/themes/vaporizer-cobalt-dark.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Cobalt Dark" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 217 + pair: null contrast: fg: 40.6 black: 0 diff --git a/themes/vaporizer-crescent-dark.yaml b/themes/vaporizer-crescent-dark.yaml index aea8cbf3..591f4c31 100644 --- a/themes/vaporizer-crescent-dark.yaml +++ b/themes/vaporizer-crescent-dark.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Crescent Dark" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 47 black: 0 diff --git a/themes/vaporizer-dark-blue-green.yaml b/themes/vaporizer-dark-blue-green.yaml deleted file mode 100644 index 3a8ab4e6..00000000 --- a/themes/vaporizer-dark-blue-green.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Vaporizer Dark Blue Green" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35736 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#1D2024" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#8E7F7F" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 105.8 - black: 0 - red: 25.6 - green: 51.9 - yellow: 84.5 - blue: 26.4 - magenta: 28.7 - cyan: 46.5 - white: 33.8 - brightBlack: 21 - brightRed: 37.5 - brightGreen: 62.5 - brightYellow: 94.6 - brightBlue: 38.9 - brightMagenta: 44.3 - brightCyan: 54.3 - brightWhite: 105.8 diff --git a/themes/vaporizer-dark-cherry.yaml b/themes/vaporizer-dark-cherry.yaml index 40f7a8da..341bf538 100644 --- a/themes/vaporizer-dark-cherry.yaml +++ b/themes/vaporizer-dark-cherry.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Cherry" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 24.5 black: 0 diff --git a/themes/vaporizer-dark-coffee.yaml b/themes/vaporizer-dark-coffee.yaml index c8978deb..3a775297 100644 --- a/themes/vaporizer-dark-coffee.yaml +++ b/themes/vaporizer-dark-coffee.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Coffee" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 77.2 black: 0 diff --git a/themes/vaporizer-dark-cool-1.yaml b/themes/vaporizer-dark-cool-1.yaml index d69e71e2..67c51b4a 100644 --- a/themes/vaporizer-dark-cool-1.yaml +++ b/themes/vaporizer-dark-cool-1.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Cool 1" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 269 + pair: null contrast: fg: 64.4 black: 0 diff --git a/themes/vaporizer-dark-cool-2.yaml b/themes/vaporizer-dark-cool-2.yaml index 0704f417..451954ce 100644 --- a/themes/vaporizer-dark-cool-2.yaml +++ b/themes/vaporizer-dark-cool-2.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Cool 2" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 61.6 black: 0 diff --git a/themes/vaporizer-dark-cop.yaml b/themes/vaporizer-dark-cop.yaml index f5e8da0e..d1c7df78 100644 --- a/themes/vaporizer-dark-cop.yaml +++ b/themes/vaporizer-dark-cop.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Cop" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 76.9 black: 0 diff --git a/themes/vaporizer-dark-cyber-neon-1.yaml b/themes/vaporizer-dark-cyber-neon-1.yaml index a443ed00..848434d7 100644 --- a/themes/vaporizer-dark-cyber-neon-1.yaml +++ b/themes/vaporizer-dark-cyber-neon-1.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Cyber Neon 1" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 354 + pair: null contrast: fg: 57.7 black: 0 diff --git a/themes/vaporizer-dark-cyber-neon-2.yaml b/themes/vaporizer-dark-cyber-neon-2.yaml index 2ef50480..b8925510 100644 --- a/themes/vaporizer-dark-cyber-neon-2.yaml +++ b/themes/vaporizer-dark-cyber-neon-2.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Cyber Neon 2" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 358 + pair: null contrast: fg: 57.5 black: 0 diff --git a/themes/vaporizer-dark-cyber-neon-3.yaml b/themes/vaporizer-dark-cyber-neon-3.yaml index 02cf41aa..109bbb6d 100644 --- a/themes/vaporizer-dark-cyber-neon-3.yaml +++ b/themes/vaporizer-dark-cyber-neon-3.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Cyber Neon 3" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 320 + pair: null contrast: fg: 57.5 black: 36.7 diff --git a/themes/vaporizer-dark-ivy.yaml b/themes/vaporizer-dark-ivy.yaml index 22e296d4..170e8969 100644 --- a/themes/vaporizer-dark-ivy.yaml +++ b/themes/vaporizer-dark-ivy.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Ivy" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 249 + pair: null contrast: fg: 31.3 black: 0 diff --git a/themes/vaporizer-dark-joker.yaml b/themes/vaporizer-dark-joker.yaml index c7f353bf..1203f852 100644 --- a/themes/vaporizer-dark-joker.yaml +++ b/themes/vaporizer-dark-joker.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Joker" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/vaporizer-dark-matrix-1.yaml b/themes/vaporizer-dark-matrix-1.yaml deleted file mode 100644 index 6d3f0f00..00000000 --- a/themes/vaporizer-dark-matrix-1.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Vaporizer Dark Matrix 1" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35736 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#000201" - fg: "#D2FFC2" - black: "#86F500" - red: "#58AB05" - green: "#009232" - yellow: "#488A07" - blue: "#1F7D1D" - magenta: "#0EE261" - cyan: "#50A322" - white: "#E5E5E5" - brightBlack: "#AAF26D" - brightRed: "#447134" - brightGreen: "#009F20" - brightYellow: "#60E814" - brightBlue: "#69BC67" - brightMagenta: "#82D670" - brightCyan: "#9ED586" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: 165 - contrast: - fg: 99.6 - black: 84.9 - red: 46.9 - green: 34.5 - yellow: 32.4 - blue: 26.2 - magenta: 71.9 - cyan: 43.1 - white: 91 - brightBlack: 86.9 - brightRed: 23.2 - brightGreen: 39.8 - brightYellow: 76.1 - brightBlue: 56.2 - brightMagenta: 70 - brightCyan: 72.3 - brightWhite: 91 diff --git a/themes/vaporizer-dark-monterey.yaml b/themes/vaporizer-dark-monterey.yaml index 1bebec8b..0371b634 100644 --- a/themes/vaporizer-dark-monterey.yaml +++ b/themes/vaporizer-dark-monterey.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Monterey" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 302 + pair: null contrast: fg: 28.9 black: 0 diff --git a/themes/vaporizer-dark-painting.yaml b/themes/vaporizer-dark-painting.yaml index 6434989f..b066e4fc 100644 --- a/themes/vaporizer-dark-painting.yaml +++ b/themes/vaporizer-dark-painting.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Painting" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 9.6 black: 0 diff --git a/themes/vaporizer-dark-pansy.yaml b/themes/vaporizer-dark-pansy.yaml index 2d7ef639..34dd786a 100644 --- a/themes/vaporizer-dark-pansy.yaml +++ b/themes/vaporizer-dark-pansy.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Pansy" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 294 + pair: null contrast: fg: 9.8 black: 0 diff --git a/themes/vaporizer-dark-stabilo.yaml b/themes/vaporizer-dark-stabilo.yaml index 63b400e8..09307eb4 100644 --- a/themes/vaporizer-dark-stabilo.yaml +++ b/themes/vaporizer-dark-stabilo.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Stabilo" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 19.8 black: 0 diff --git a/themes/vaporizer-dark-turquoise.yaml b/themes/vaporizer-dark-turquoise.yaml index 700b4c1f..408b19c3 100644 --- a/themes/vaporizer-dark-turquoise.yaml +++ b/themes/vaporizer-dark-turquoise.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Dark Turquoise" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: "Vaporizer Turquoise Light" contrast: fg: 64.8 black: 0 diff --git a/themes/vaporizer-epic-red-dark.yaml b/themes/vaporizer-epic-red-dark.yaml index 93cadc8a..94f2b776 100644 --- a/themes/vaporizer-epic-red-dark.yaml +++ b/themes/vaporizer-epic-red-dark.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Epic Red Dark" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 105.3 black: 15.2 diff --git a/themes/vaporizer-fonc-dark.yaml b/themes/vaporizer-fonc-dark.yaml index 0530300b..32f3abe4 100644 --- a/themes/vaporizer-fonc-dark.yaml +++ b/themes/vaporizer-fonc-dark.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Foncé Dark" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 85.4 black: 0 diff --git a/themes/vaporizer-frozen-dark.yaml b/themes/vaporizer-frozen-dark.yaml index cb71c7f7..fede74a8 100644 --- a/themes/vaporizer-frozen-dark.yaml +++ b/themes/vaporizer-frozen-dark.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Frozen Dark " source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 37.7 black: 33.6 diff --git a/themes/vaporizer-golgi-dark.yaml b/themes/vaporizer-golgi-dark.yaml index e8fec0af..0050e8b6 100644 --- a/themes/vaporizer-golgi-dark.yaml +++ b/themes/vaporizer-golgi-dark.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Golgi Dark" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 74.3 black: 28.6 diff --git a/themes/vaporizer-half-moon-dark.yaml b/themes/vaporizer-half-moon-dark.yaml index 1428d7aa..21a8a8dd 100644 --- a/themes/vaporizer-half-moon-dark.yaml +++ b/themes/vaporizer-half-moon-dark.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Half-Moon Dark" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 268 + pair: null contrast: fg: 79.6 black: 45.9 diff --git a/themes/vaporizer-lemonade-light.yaml b/themes/vaporizer-lemonade-light.yaml index 7b7f7884..bfc9380e 100644 --- a/themes/vaporizer-lemonade-light.yaml +++ b/themes/vaporizer-lemonade-light.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Lemonade Light" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "teal" hue: null + pair: null contrast: fg: 12.7 black: 84.8 diff --git a/themes/vaporizer-lemonade-solarized-light.yaml b/themes/vaporizer-lemonade-solarized-light.yaml index 96a6ae1e..00f97c9d 100644 --- a/themes/vaporizer-lemonade-solarized-light.yaml +++ b/themes/vaporizer-lemonade-solarized-light.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Lemonade Solarized Light" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "teal" hue: null + pair: null contrast: fg: 12.2 black: 84.2 diff --git a/themes/vaporizer-milk-light.yaml b/themes/vaporizer-milk-light.yaml index e8018695..99a7131f 100644 --- a/themes/vaporizer-milk-light.yaml +++ b/themes/vaporizer-milk-light.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Milk Light" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 76.6 black: 103.9 diff --git a/themes/vaporizer-mini-blue-light.yaml b/themes/vaporizer-mini-blue-light.yaml index ee513559..47d340ec 100644 --- a/themes/vaporizer-mini-blue-light.yaml +++ b/themes/vaporizer-mini-blue-light.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Mini Blue Light" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 26.1 black: 102.7 diff --git a/themes/vaporizer-minimalism-light.yaml b/themes/vaporizer-minimalism-light.yaml index bd1601a8..47d72a89 100644 --- a/themes/vaporizer-minimalism-light.yaml +++ b/themes/vaporizer-minimalism-light.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Minimalism Light" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "teal" hue: null + pair: null contrast: fg: 42.2 black: 84.2 diff --git a/themes/vaporizer-modern-light.yaml b/themes/vaporizer-modern-light.yaml index 3c12ea55..15a92ad4 100644 --- a/themes/vaporizer-modern-light.yaml +++ b/themes/vaporizer-modern-light.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Modern Light" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "teal" hue: null + pair: null contrast: fg: 39.3 black: 82.1 diff --git a/themes/vaporizer-moon-light-dark.yaml b/themes/vaporizer-moon-light-dark.yaml index ba706e1a..a7907127 100644 --- a/themes/vaporizer-moon-light-dark.yaml +++ b/themes/vaporizer-moon-light-dark.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Moon-Light Dark" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 265 + pair: null contrast: fg: 77.9 black: 44.2 diff --git a/themes/vaporizer-phosphoric-blue.yaml b/themes/vaporizer-phosphoric-blue.yaml index eea1bd79..586cc463 100644 --- a/themes/vaporizer-phosphoric-blue.yaml +++ b/themes/vaporizer-phosphoric-blue.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Phosphoric Blue" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 46.1 black: 93.6 diff --git a/themes/vaporizer-purple-gray-dark.yaml b/themes/vaporizer-purple-gray-dark.yaml index 1f804c18..a8faca4c 100644 --- a/themes/vaporizer-purple-gray-dark.yaml +++ b/themes/vaporizer-purple-gray-dark.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Purple Gray Dark" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 25.9 black: 0 diff --git a/themes/vaporizer-soft-light.yaml b/themes/vaporizer-soft-light.yaml index c5c57632..a5dd3ec9 100644 --- a/themes/vaporizer-soft-light.yaml +++ b/themes/vaporizer-soft-light.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Soft Light" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 35.2 black: 49.3 diff --git a/themes/vaporizer-splash-dark.yaml b/themes/vaporizer-splash-dark.yaml index 302fe914..cdd1be82 100644 --- a/themes/vaporizer-splash-dark.yaml +++ b/themes/vaporizer-splash-dark.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Splash Dark" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 321 + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/vaporizer-turquoise-light.yaml b/themes/vaporizer-turquoise-light.yaml index 14e0249e..09f81945 100644 --- a/themes/vaporizer-turquoise-light.yaml +++ b/themes/vaporizer-turquoise-light.yaml @@ -2,7 +2,7 @@ name: "Vaporizer Turquoise Light" source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" - installs: 35736 + installs: 35746 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "Vaporizer Dark Turquoise" contrast: fg: 29.3 black: 98.9 diff --git a/themes/vaquita.yaml b/themes/vaquita.yaml index bc254966..19fdc511 100644 --- a/themes/vaquita.yaml +++ b/themes/vaquita.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 101.8 black: 0 diff --git a/themes/varlet-dark.yaml b/themes/varlet-dark.yaml index 010c8d9b..dba69b32 100644 --- a/themes/varlet-dark.yaml +++ b/themes/varlet-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/vase-with-twelve-sunflowers.yaml b/themes/vase-with-twelve-sunflowers.yaml index 71b108a1..af8ae408 100644 --- a/themes/vase-with-twelve-sunflowers.yaml +++ b/themes/vase-with-twelve-sunflowers.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: 138 + pair: null contrast: fg: 48.2 black: 0 diff --git a/themes/vasses-tricolor-theme.yaml b/themes/vasses-tricolor-theme.yaml index 5faed960..1fb9efbf 100644 --- a/themes/vasses-tricolor-theme.yaml +++ b/themes/vasses-tricolor-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 45.8 black: 0 diff --git a/themes/vcoldtheme.yaml b/themes/vcoldtheme.yaml index 64b46b2a..d80d02d6 100644 --- a/themes/vcoldtheme.yaml +++ b/themes/vcoldtheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 271 + pair: null contrast: fg: 93.7 black: 0 diff --git a/themes/vegas-night-details-theme.yaml b/themes/vegas-night-details-theme.yaml index 037fb78b..d78f89f9 100644 --- a/themes/vegas-night-details-theme.yaml +++ b/themes/vegas-night-details-theme.yaml @@ -2,7 +2,7 @@ name: "Vegas Night Details Theme" source: marketplace_id: "robpco.vegas-night-details-theme" version: "0.2.2" - installs: 1016 + installs: 1017 author: "robpco" repo: "https://github.com/robertpeteuil/vegas-night-details-theme" url: "https://marketplace.visualstudio.com/items?itemName=robpco.vegas-night-details-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 75 black: 0 diff --git a/themes/vegetable-contrast.yaml b/themes/vegetable-contrast.yaml index 0196fa42..43f7ed82 100644 --- a/themes/vegetable-contrast.yaml +++ b/themes/vegetable-contrast.yaml @@ -1,11 +1,11 @@ name: "vegetable-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#161314" fg: "#E2DCDD" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85.5 black: 0 diff --git a/themes/vegetable-light.yaml b/themes/vegetable-light.yaml index 949f43cb..dd3dde41 100644 --- a/themes/vegetable-light.yaml +++ b/themes/vegetable-light.yaml @@ -1,11 +1,11 @@ name: "vegetable-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#E2DCDD" fg: "#514547" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 71.4 black: 0 diff --git a/themes/vegetable.yaml b/themes/vegetable.yaml deleted file mode 100644 index a760c620..00000000 --- a/themes/vegetable.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "vegetable" -source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" -colors: - bg: "#2D2627" - fg: "#E2DCDD" - black: "#3B3233" - red: "#BA0E2E" - green: "#F0A56C" - yellow: "#689D81" - blue: "#D8CA96" - magenta: "#F0A56C" - cyan: "#689D81" - white: "#EEEAEB" - brightBlack: "#645557" - brightRed: "#F03E5F" - brightGreen: "#F9DEC9" - brightYellow: "#A6C5B5" - brightBlue: "#F4F0E0" - brightMagenta: "#F9DEC9" - brightCyan: "#A6C5B5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 8 - contrast: - fg: 82.9 - black: 0 - red: 18.1 - green: 59.5 - yellow: 40.2 - blue: 71.1 - magenta: 59.5 - cyan: 40.2 - white: 91.4 - brightBlack: 14.1 - brightRed: 34.4 - brightGreen: 86.2 - brightYellow: 64 - brightBlue: 94.5 - brightMagenta: 86.2 - brightCyan: 64 - brightWhite: 104.5 diff --git a/themes/vegetation.yaml b/themes/vegetation.yaml index 3ebb3293..ff477de2 100644 --- a/themes/vegetation.yaml +++ b/themes/vegetation.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 24.4 black: 0 diff --git a/themes/veiled.yaml b/themes/veiled.yaml index c20b31eb..127cc61b 100644 --- a/themes/veiled.yaml +++ b/themes/veiled.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80 black: 0 diff --git a/themes/veist.yaml b/themes/veist.yaml index 63f3765d..8387e2e9 100644 --- a/themes/veist.yaml +++ b/themes/veist.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 105.1 black: 0 diff --git a/themes/vela-spectrum-colorblind-light.yaml b/themes/vela-spectrum-colorblind-light.yaml index d8b12d67..154e357f 100644 --- a/themes/vela-spectrum-colorblind-light.yaml +++ b/themes/vela-spectrum-colorblind-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 101.7 black: 101 diff --git a/themes/vela-spectrum-dark-colorblind.yaml b/themes/vela-spectrum-dark-colorblind.yaml index e1ee43b6..60145404 100644 --- a/themes/vela-spectrum-dark-colorblind.yaml +++ b/themes/vela-spectrum-dark-colorblind.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 258 + pair: null contrast: fg: 102.6 black: 0 diff --git a/themes/vela-spectrum-dark-dimmed.yaml b/themes/vela-spectrum-dark-dimmed.yaml index 86c53883..b6f903cb 100644 --- a/themes/vela-spectrum-dark-dimmed.yaml +++ b/themes/vela-spectrum-dark-dimmed.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 258 + pair: null contrast: fg: 102.6 black: 0 diff --git a/themes/vela-spectrum-dark-tritanopia.yaml b/themes/vela-spectrum-dark-tritanopia.yaml index f92095a9..2339995e 100644 --- a/themes/vela-spectrum-dark-tritanopia.yaml +++ b/themes/vela-spectrum-dark-tritanopia.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 258 + pair: null contrast: fg: 102.6 black: 0 diff --git a/themes/vela-spectrum-dark.yaml b/themes/vela-spectrum-dark.yaml index 83e0afb1..cea64ccb 100644 --- a/themes/vela-spectrum-dark.yaml +++ b/themes/vela-spectrum-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 258 + pair: null contrast: fg: 102.6 black: 0 diff --git a/themes/vela-spectrum-dimmed-light.yaml b/themes/vela-spectrum-dimmed-light.yaml index 76cb7ba5..193515cd 100644 --- a/themes/vela-spectrum-dimmed-light.yaml +++ b/themes/vela-spectrum-dimmed-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 101.7 black: 101 diff --git a/themes/vela-spectrum-high-contrast-light.yaml b/themes/vela-spectrum-high-contrast-light.yaml index 9cffb9b9..5eb2bcea 100644 --- a/themes/vela-spectrum-high-contrast-light.yaml +++ b/themes/vela-spectrum-high-contrast-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 101.7 black: 101 diff --git a/themes/vela-spectrum-high-contrast.yaml b/themes/vela-spectrum-high-contrast.yaml index e92419ac..d7d69cdc 100644 --- a/themes/vela-spectrum-high-contrast.yaml +++ b/themes/vela-spectrum-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 258 + pair: null contrast: fg: 102.6 black: 0 diff --git a/themes/vela-spectrum-light-tritanopia.yaml b/themes/vela-spectrum-light-tritanopia.yaml index eeb5854f..262bcfca 100644 --- a/themes/vela-spectrum-light-tritanopia.yaml +++ b/themes/vela-spectrum-light-tritanopia.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 101.7 black: 101 diff --git a/themes/vela-spectrum-light.yaml b/themes/vela-spectrum-light.yaml index ee22f497..5ffc2df3 100644 --- a/themes/vela-spectrum-light.yaml +++ b/themes/vela-spectrum-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 101.7 black: 101 diff --git a/themes/velourous.yaml b/themes/velourous.yaml index d0072abe..5905aba8 100644 --- a/themes/velourous.yaml +++ b/themes/velourous.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 115 + pair: null contrast: fg: 99.6 black: 0 diff --git a/themes/velvet-chrome.yaml b/themes/velvet-chrome.yaml index 198e8534..ff9866dd 100644 --- a/themes/velvet-chrome.yaml +++ b/themes/velvet-chrome.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 94.3 black: 0 diff --git a/themes/velvet-thunder.yaml b/themes/velvet-thunder.yaml index a4186a4a..396a08f0 100644 --- a/themes/velvet-thunder.yaml +++ b/themes/velvet-thunder.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/venice-beach-sky.yaml b/themes/venice-beach-sky.yaml index 3dcf31ef..f0ed13f1 100644 --- a/themes/venice-beach-sky.yaml +++ b/themes/venice-beach-sky.yaml @@ -2,7 +2,7 @@ name: "Venice Beach Sky" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 87.4 black: 75.9 diff --git a/themes/venom-theme.yaml b/themes/venom-theme.yaml index eb90fbc8..b209641c 100644 --- a/themes/venom-theme.yaml +++ b/themes/venom-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 273 + pair: null contrast: fg: 96.4 black: 7.5 diff --git a/themes/vercel-light.yaml b/themes/vercel-light.yaml index 64055bec..f68745f1 100644 --- a/themes/vercel-light.yaml +++ b/themes/vercel-light.yaml @@ -1,8 +1,8 @@ name: "Vercel Light" source: marketplace_id: "aurorascharff.vercel-docs-theme" - version: "0.3.1" - installs: 24 + version: "0.4.0" + installs: 31 author: "aurorascharff" repo: "https://github.com/aurorascharff/vercel-vscode-docs-theme" url: "https://marketplace.visualstudio.com/items?itemName=aurorascharff.vercel-docs-theme" diff --git a/themes/vercel.yaml b/themes/vercel.yaml index 2242a076..ea2f971d 100644 --- a/themes/vercel.yaml +++ b/themes/vercel.yaml @@ -1,17 +1,17 @@ name: "Vercel" source: - marketplace_id: "aurorascharff.vercel-docs-theme" - version: "0.3.1" - installs: 24 - author: "aurorascharff" - repo: "https://github.com/aurorascharff/vercel-vscode-docs-theme" - url: "https://marketplace.visualstudio.com/items?itemName=aurorascharff.vercel-docs-theme" + marketplace_id: "natemcgrady.vercel-vscode-theme" + version: "1.0.2" + installs: 379 + author: "natemcgrady" + repo: "https://github.com/sotan8/vercel-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=natemcgrady.vercel-vscode-theme" colors: bg: "#000000" fg: "#EEEEEE" black: "#000000" red: "#FF4D8D" - green: "#3ECF6E" + green: "#00CB50" yellow: "#FFCC47" blue: "#47A8FF" magenta: "#C473FC" @@ -19,7 +19,7 @@ colors: white: "#EEEEEE" brightBlack: "#666666" brightRed: "#FF4D8D" - brightGreen: "#3ECF6E" + brightGreen: "#00CB50" brightYellow: "#FFCC47" brightBlue: "#47A8FF" brightMagenta: "#C473FC" @@ -29,11 +29,12 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 96.8 black: 0 red: 44.6 - green: 63.4 + green: 60.3 yellow: 79.9 blue: 52.8 magenta: 46.7 @@ -41,7 +42,7 @@ meta: white: 96.8 brightBlack: 23 brightRed: 44.6 - brightGreen: 63.4 + brightGreen: 60.3 brightYellow: 79.9 brightBlue: 52.8 brightMagenta: 46.7 diff --git a/themes/verdantium.yaml b/themes/verdantium.yaml index 97cc0be5..4e32f7d7 100644 --- a/themes/verdantium.yaml +++ b/themes/verdantium.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 83.2 black: 0 diff --git a/themes/verdure.yaml b/themes/verdure.yaml index 6b4aaa0c..b357f2c6 100644 --- a/themes/verdure.yaml +++ b/themes/verdure.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/version-1-0-5.yaml b/themes/version-1-0-5.yaml index 1d6c6ce6..d389cb43 100644 --- a/themes/version-1-0-5.yaml +++ b/themes/version-1-0-5.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 91.1 black: 0 diff --git a/themes/very-blue.yaml b/themes/very-blue.yaml index 6b4e2617..9b465647 100644 --- a/themes/very-blue.yaml +++ b/themes/very-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 66.6 black: 0 diff --git a/themes/very-fast-theme.yaml b/themes/very-fast-theme.yaml index 0e20a6e6..dabe616b 100644 --- a/themes/very-fast-theme.yaml +++ b/themes/very-fast-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 25 + pair: null contrast: fg: 87 black: 12.2 diff --git a/themes/vesper-golden.yaml b/themes/vesper-golden.yaml index a89dfbb7..2d284fc1 100644 --- a/themes/vesper-golden.yaml +++ b/themes/vesper-golden.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 107.8 black: 0 diff --git a/themes/vesper-purple-dark.yaml b/themes/vesper-purple-dark.yaml index 8855a090..9af6acca 100644 --- a/themes/vesper-purple-dark.yaml +++ b/themes/vesper-purple-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "Vesper Purple Light" contrast: fg: 82.2 black: 0 diff --git a/themes/vesper-purple-light.yaml b/themes/vesper-purple-light.yaml index 10ddd62a..f9b20671 100644 --- a/themes/vesper-purple-light.yaml +++ b/themes/vesper-purple-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Vesper Purple Dark" contrast: fg: 93 black: 99.9 diff --git a/themes/vesper.yaml b/themes/vesper.yaml index 6c2a7936..ce66eb66 100644 --- a/themes/vesper.yaml +++ b/themes/vesper.yaml @@ -2,7 +2,7 @@ name: "Vesper ++" source: marketplace_id: "opedrodev.vesper-pp-lighter" version: "1.0.1" - installs: 1465 + installs: 1467 author: "opedrodev" repo: "https://github.com/opedrodev/vesper" url: "https://marketplace.visualstudio.com/items?itemName=opedrodev.vesper-pp-lighter" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107 black: 0 diff --git a/themes/vhs80.yaml b/themes/vhs80.yaml index b7386b31..f3186650 100644 --- a/themes/vhs80.yaml +++ b/themes/vhs80.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 93.6 black: 0 diff --git a/themes/vi-dark.yaml b/themes/vi-dark.yaml index 184e95eb..7edcc49c 100644 --- a/themes/vi-dark.yaml +++ b/themes/vi-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 188 + pair: null contrast: fg: 105.4 black: 0 diff --git a/themes/vibe-dark-legacy.yaml b/themes/vibe-dark-legacy.yaml index 8886e6a7..560379b0 100644 --- a/themes/vibe-dark-legacy.yaml +++ b/themes/vibe-dark-legacy.yaml @@ -2,7 +2,7 @@ name: "Vibe Dark Legacy" source: marketplace_id: "yondav.vibe" version: "2.0.1" - installs: 1540 + installs: 1541 author: "yondav" repo: "https://github.com/yondav-configs/vibe" url: "https://marketplace.visualstudio.com/items?itemName=yondav.vibe" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 95.1 black: 0 diff --git a/themes/vibecolors-corporate-light.yaml b/themes/vibecolors-corporate-light.yaml index c7884b64..91530f6e 100644 --- a/themes/vibecolors-corporate-light.yaml +++ b/themes/vibecolors-corporate-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 95.4 black: 62.4 diff --git a/themes/vibecolors-dark.yaml b/themes/vibecolors-dark.yaml index 456f6731..0e4d7438 100644 --- a/themes/vibecolors-dark.yaml +++ b/themes/vibecolors-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: "VibeColors Light" contrast: fg: 73.8 black: 10.3 diff --git a/themes/vibecolors-dynamic-dark.yaml b/themes/vibecolors-dynamic-dark.yaml index 80fd8118..212a92f3 100644 --- a/themes/vibecolors-dynamic-dark.yaml +++ b/themes/vibecolors-dynamic-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 298 + pair: "VibeColors Dynamic Light" contrast: fg: 84.7 black: 16.9 diff --git a/themes/vibecolors-dynamic-light.yaml b/themes/vibecolors-dynamic-light.yaml index 37230d8f..6649495d 100644 --- a/themes/vibecolors-dynamic-light.yaml +++ b/themes/vibecolors-dynamic-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "VibeColors Dynamic Dark" contrast: fg: 89.3 black: 60.6 diff --git a/themes/vibecolors-light.yaml b/themes/vibecolors-light.yaml index cfc0b427..69388d7d 100644 --- a/themes/vibecolors-light.yaml +++ b/themes/vibecolors-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "VibeColors Dark" contrast: fg: 101.5 black: 81.7 diff --git a/themes/vibecolors-minimal-light.yaml b/themes/vibecolors-minimal-light.yaml index 9d5195cd..22ab67fa 100644 --- a/themes/vibecolors-minimal-light.yaml +++ b/themes/vibecolors-minimal-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 95.7 black: 75.8 diff --git a/themes/vibecolors-neon-dark.yaml b/themes/vibecolors-neon-dark.yaml index 8c740368..325e2de6 100644 --- a/themes/vibecolors-neon-dark.yaml +++ b/themes/vibecolors-neon-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 258 + pair: null contrast: fg: 95 black: 13.1 diff --git a/themes/vibecolors-ocean-dark.yaml b/themes/vibecolors-ocean-dark.yaml index 6be998a2..82fad5e8 100644 --- a/themes/vibecolors-ocean-dark.yaml +++ b/themes/vibecolors-ocean-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 240 + pair: null contrast: fg: 98 black: 0 diff --git a/themes/vibecolors-pastel-light.yaml b/themes/vibecolors-pastel-light.yaml index 09162ab9..3eecff91 100644 --- a/themes/vibecolors-pastel-light.yaml +++ b/themes/vibecolors-pastel-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 80.3 black: 66.2 diff --git a/themes/vibecolors-retro-dark.yaml b/themes/vibecolors-retro-dark.yaml index 509b11de..b6660daf 100644 --- a/themes/vibecolors-retro-dark.yaml +++ b/themes/vibecolors-retro-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 272 + pair: null contrast: fg: 86.2 black: 14.1 diff --git a/themes/vibecolors-soft-dark.yaml b/themes/vibecolors-soft-dark.yaml index 0f461d06..2a9e9a69 100644 --- a/themes/vibecolors-soft-dark.yaml +++ b/themes/vibecolors-soft-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.8 black: 13.9 diff --git a/themes/vibecolors-sunset-light.yaml b/themes/vibecolors-sunset-light.yaml index e5c48bf9..e20bcb30 100644 --- a/themes/vibecolors-sunset-light.yaml +++ b/themes/vibecolors-sunset-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.2 black: 84.3 diff --git a/themes/vibes.yaml b/themes/vibes.yaml index f21b2ed5..3054213d 100644 --- a/themes/vibes.yaml +++ b/themes/vibes.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 327 + pair: null contrast: fg: 78.8 black: 0 diff --git a/themes/vibra.yaml b/themes/vibra.yaml index f17fbf1f..b49f31b7 100644 --- a/themes/vibra.yaml +++ b/themes/vibra.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.9 black: 49.3 diff --git a/themes/vibrant-abyss-vscode.yaml b/themes/vibrant-abyss-vscode.yaml index dd054909..2ad50165 100644 --- a/themes/vibrant-abyss-vscode.yaml +++ b/themes/vibrant-abyss-vscode.yaml @@ -2,7 +2,7 @@ name: "vibrant-abyss-vscode" source: marketplace_id: "noelhorvath.vibrant-abyss" version: "0.4.13" - installs: 1574 + installs: 1576 author: "Noel Horváth" repo: "https://github.com/noelhorvath/vibrant-abyss" url: "https://marketplace.visualstudio.com/items?itemName=noelhorvath.vibrant-abyss" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 86.6 black: 0 diff --git a/themes/vibrant-dark.yaml b/themes/vibrant-dark.yaml index d8493ee5..22f75e17 100644 --- a/themes/vibrant-dark.yaml +++ b/themes/vibrant-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 59 black: 0 diff --git a/themes/vibrant-max.yaml b/themes/vibrant-max.yaml index 6ba6f1a7..f3198252 100644 --- a/themes/vibrant-max.yaml +++ b/themes/vibrant-max.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 276 + pair: null contrast: fg: 56.4 black: 0 diff --git a/themes/vice-city-noir.yaml b/themes/vice-city-noir.yaml index 46eb5efb..750efe26 100644 --- a/themes/vice-city-noir.yaml +++ b/themes/vice-city-noir.yaml @@ -2,7 +2,7 @@ name: "Vice City Noir" source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" - installs: 402 + installs: 403 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 251 + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/vicious.yaml b/themes/vicious.yaml index 6061259b..ac52d841 100644 --- a/themes/vicious.yaml +++ b/themes/vicious.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 275 + pair: null contrast: fg: 105.6 black: 14.1 diff --git a/themes/victoria-dark.yaml b/themes/victoria-dark.yaml index 33d03a41..cf80e0ea 100644 --- a/themes/victoria-dark.yaml +++ b/themes/victoria-dark.yaml @@ -1,8 +1,8 @@ name: "Victoria Dark" source: marketplace_id: "lucidlabs.victoria-theme" - version: "1.1.0" - installs: 0 + version: "1.3.0" + installs: 3 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.victoria-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: "Victoria Light" contrast: fg: 95.4 black: 0 diff --git a/themes/victoria-light.yaml b/themes/victoria-light.yaml index 061a6499..ce3f8c1a 100644 --- a/themes/victoria-light.yaml +++ b/themes/victoria-light.yaml @@ -1,8 +1,8 @@ name: "Victoria Light" source: marketplace_id: "lucidlabs.victoria-theme" - version: "1.1.0" - installs: 0 + version: "1.3.0" + installs: 3 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.victoria-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Victoria Dark" contrast: fg: 105.6 black: 105.6 diff --git a/themes/video-contrast.yaml b/themes/video-contrast.yaml index 825ed817..c4078a84 100644 --- a/themes/video-contrast.yaml +++ b/themes/video-contrast.yaml @@ -2,7 +2,7 @@ name: "Video-Contrast" source: marketplace_id: "valentinesamuel.fallout-dark" version: "0.0.1" - installs: 2242 + installs: 2243 author: "valentine samuel" repo: "https://github.com/valentinesamuel/themes" url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/vigerdark.yaml b/themes/vigerdark.yaml deleted file mode 100644 index 5c4612a5..00000000 --- a/themes/vigerdark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "VigerDark" -source: - marketplace_id: "BigTreeWorld.vigerdark" - version: "0.0.2" - installs: 54 - author: "Big Tree World" - repo: "https://github.com/rameezv/vigerdark-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=BigTreeWorld.vigerdark" -colors: - bg: "#0A0A0A" - fg: "#ABB2BF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 60.3 - black: 0 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.3 - magenta: 30.6 - cyan: 48.4 - white: 90.9 - brightBlack: 22.9 - brightRed: 39.4 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.9 - brightMagenta: 46.2 - brightCyan: 56.3 - brightWhite: 90.9 diff --git a/themes/vigikai.yaml b/themes/vigikai.yaml index 36c37e94..a02159a2 100644 --- a/themes/vigikai.yaml +++ b/themes/vigikai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/viii-iii-mmv.yaml b/themes/viii-iii-mmv.yaml index 8b70aa7d..ef4fd7f0 100644 --- a/themes/viii-iii-mmv.yaml +++ b/themes/viii-iii-mmv.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 93.1 black: 0 diff --git a/themes/vikkie-dark.yaml b/themes/vikkie-dark.yaml index a3f53985..68c090e8 100644 --- a/themes/vikkie-dark.yaml +++ b/themes/vikkie-dark.yaml @@ -2,7 +2,7 @@ name: "Vikkie!!! Dark" source: marketplace_id: "atomicnumberphi.vikkie-theme" version: "1.0.3" - installs: 97 + installs: 98 author: "Kaleidosium" repo: "https://github.com/Kaleidosium/vikkie-theme" url: "https://marketplace.visualstudio.com/items?itemName=atomicnumberphi.vikkie-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 302 + pair: "Vikkie!!! Light" contrast: fg: 84.6 black: 0 diff --git a/themes/vikkie-light.yaml b/themes/vikkie-light.yaml index 0e79a3d8..5f795fb3 100644 --- a/themes/vikkie-light.yaml +++ b/themes/vikkie-light.yaml @@ -2,7 +2,7 @@ name: "Vikkie!!! Light" source: marketplace_id: "atomicnumberphi.vikkie-theme" version: "1.0.3" - installs: 97 + installs: 98 author: "Kaleidosium" repo: "https://github.com/Kaleidosium/vikkie-theme" url: "https://marketplace.visualstudio.com/items?itemName=atomicnumberphi.vikkie-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "Vikkie!!! Dark" contrast: fg: 97.3 black: 97.3 diff --git a/themes/villain-dark.yaml b/themes/villain-dark.yaml index dd20b920..1e9a63f2 100644 --- a/themes/villain-dark.yaml +++ b/themes/villain-dark.yaml @@ -2,7 +2,7 @@ name: "villain-dark" source: marketplace_id: "sahilkumardev.villan-theam" version: "0.0.2" - installs: 558 + installs: 561 author: "sahil kumar dev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sahilkumardev.villan-theam" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 104.4 black: 0 diff --git a/themes/villain-light.yaml b/themes/villain-light.yaml index 5792073b..0e2ca66f 100644 --- a/themes/villain-light.yaml +++ b/themes/villain-light.yaml @@ -2,7 +2,7 @@ name: "villain-light" source: marketplace_id: "sahilkumardev.villan-theam" version: "0.0.2" - installs: 558 + installs: 561 author: "sahil kumar dev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sahilkumardev.villan-theam" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 106 black: 93.9 diff --git a/themes/vim-dar11sdasdasd.yaml b/themes/vim-dar11sdasdasd.yaml index 9f15aa02..3c0383ce 100644 --- a/themes/vim-dar11sdasdasd.yaml +++ b/themes/vim-dar11sdasdasd.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 42 + pair: null contrast: fg: 63 black: 0 diff --git a/themes/vim-dark-hard.yaml b/themes/vim-dark-hard.yaml deleted file mode 100644 index 817f79b7..00000000 --- a/themes/vim-dark-hard.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Vim Dark Hard" -source: - marketplace_id: "AndreaCombette.SweetWood" - version: "0.5.5" - installs: 249 - author: "AndreaCombette" - repo: "https://github.com/Chatr0uge/SweetWood-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.SweetWood" -colors: - bg: "#241914" - fg: "#D6DFEE" - black: "#3D2D27" - red: "#975F0E" - green: "#B5761A" - yellow: "#D0850D" - blue: "#5D768F" - magenta: "#767A7E" - cyan: "#767A7E" - white: "#8294A7" - brightBlack: "#767A7E" - brightRed: "#D0850D" - brightGreen: "#D3923F" - brightYellow: "#D3923F" - brightBlue: "#8294A7" - brightMagenta: "#96A8BF" - brightCyan: "#8294A7" - brightWhite: "#D6DFEE" -meta: - mode: "dark" - accent: "yellow" - hue: 46 - contrast: - fg: 85.3 - black: 0 - red: 24.1 - green: 35.2 - yellow: 44.2 - blue: 27.4 - magenta: 30.2 - cyan: 30.2 - white: 42.1 - brightBlack: 30.2 - brightRed: 44.2 - brightGreen: 49.2 - brightYellow: 49.2 - brightBlue: 42.1 - brightMagenta: 52.7 - brightCyan: 42.1 - brightWhite: 85.3 diff --git a/themes/vim-dark-medium.yaml b/themes/vim-dark-medium.yaml index 6c0564d8..97f20179 100644 --- a/themes/vim-dark-medium.yaml +++ b/themes/vim-dark-medium.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 43 + pair: null contrast: fg: 83.7 black: 0 diff --git a/themes/vim-dark-soft.yaml b/themes/vim-dark-soft.yaml index 7e5c8a7f..38e33275 100644 --- a/themes/vim-dark-soft.yaml +++ b/themes/vim-dark-soft.yaml @@ -2,7 +2,7 @@ name: "Vim Dark Soft" source: marketplace_id: "HarryHopkinson.vim-theme" version: "1.1.8" - installs: 181121 + installs: 181189 author: "HarryHopkinson" repo: "https://github.com/Harry-Hopkinson/vim-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=HarryHopkinson.vim-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Vim Light Soft" contrast: fg: 80.2 black: 0 diff --git a/themes/vim-light-1.yaml b/themes/vim-light-1.yaml index 45f01f89..0eb088f5 100644 --- a/themes/vim-light-1.yaml +++ b/themes/vim-light-1.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 93 + pair: null contrast: fg: 81.3 black: 7.8 diff --git a/themes/vim-light-2.yaml b/themes/vim-light-2.yaml index 4be167f1..f7d98c28 100644 --- a/themes/vim-light-2.yaml +++ b/themes/vim-light-2.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 92 + pair: null contrast: fg: 77 black: 0 diff --git a/themes/vim-light-3b.yaml b/themes/vim-light-3b.yaml deleted file mode 100644 index 5678eff3..00000000 --- a/themes/vim-light-3b.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Vim Light 3b" -source: - marketplace_id: "theprogrammergary.atom-themes" - version: "2.1.9" - installs: 614 - author: "theprogrammergary" - repo: "https://github.com/gary-ix/Gary-VS-Code-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=theprogrammergary.atom-themes" -colors: - bg: "#F7F3E6" - fg: "#3C3836" - black: "#DED3B0" - red: "#CC241D" - green: "#98971A" - yellow: "#CF8900" - blue: "#32302F" - magenta: "#B16286" - cyan: "#689D6A" - white: "#7C6F64" - brightBlack: "#928374" - brightRed: "#9D0006" - brightGreen: "#79740E" - brightYellow: "#B57614" - brightBlue: "#076678" - brightMagenta: "#8F3F71" - brightCyan: "#427B58" - brightWhite: "#3C3836" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 89.5 - black: 16 - red: 68.3 - green: 50.6 - yellow: 47.8 - blue: 92.3 - magenta: 61.8 - cyan: 51.6 - white: 66.6 - brightBlack: 57.1 - brightRed: 79.8 - brightGreen: 66.4 - brightYellow: 57.8 - brightBlue: 75 - brightMagenta: 75.5 - brightCyan: 67.2 - brightWhite: 89.5 diff --git a/themes/vim-light-hard.yaml b/themes/vim-light-hard.yaml deleted file mode 100644 index 5a34315a..00000000 --- a/themes/vim-light-hard.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Vim Light Hard" -source: - marketplace_id: "AndreaCombette.SweetWood" - version: "0.5.5" - installs: 249 - author: "AndreaCombette" - repo: "https://github.com/Chatr0uge/SweetWood-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.SweetWood" -colors: - bg: "#D6DFEE" - fg: "#3D2D27" - black: "#D6DFEE" - red: "#975F0E" - green: "#B5761A" - yellow: "#D0850D" - blue: "#5D768F" - magenta: "#767A7E" - cyan: "#767A7E" - white: "#656A6B" - brightBlack: "#767A7E" - brightRed: "#794115" - brightGreen: "#975F0E" - brightYellow: "#B5761A" - brightBlue: "#495D65" - brightMagenta: "#855D44" - brightCyan: "#495D65" - brightWhite: "#3D2D27" -meta: - mode: "light" - accent: "yellow" - hue: 261 - contrast: - fg: 80.1 - black: 0 - red: 56.9 - green: 45.7 - yellow: 36.9 - blue: 53.5 - magenta: 50.8 - cyan: 50.8 - white: 58.2 - brightBlack: 50.8 - brightRed: 68.6 - brightGreen: 56.9 - brightYellow: 45.7 - brightBlue: 64.7 - brightMagenta: 59.5 - brightCyan: 64.7 - brightWhite: 80.1 diff --git a/themes/vim-light-medium.yaml b/themes/vim-light-medium.yaml deleted file mode 100644 index 2a880f63..00000000 --- a/themes/vim-light-medium.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Vim Light Medium" -source: - marketplace_id: "HarryHopkinson.vim-theme" - version: "1.1.8" - installs: 181121 - author: "HarryHopkinson" - repo: "https://github.com/Harry-Hopkinson/vim-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=HarryHopkinson.vim-theme" -colors: - bg: "#FBF1C7" - fg: "#3C3836" - black: "#EBDBB2" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#7C6F64" - brightBlack: "#928374" - brightRed: "#9D0006" - brightGreen: "#79740E" - brightYellow: "#B57614" - brightBlue: "#076678" - brightMagenta: "#8F3F71" - brightCyan: "#427B58" - brightWhite: "#3C3836" -meta: - mode: "light" - accent: "orange" - hue: null - contrast: - fg: 88.1 - black: 9.5 - red: 66.8 - green: 49.2 - yellow: 39.9 - blue: 60.5 - magenta: 60.3 - cyan: 50.2 - white: 65.1 - brightBlack: 55.7 - brightRed: 78.4 - brightGreen: 65 - brightYellow: 56.3 - brightBlue: 73.6 - brightMagenta: 74.1 - brightCyan: 65.8 - brightWhite: 88.1 diff --git a/themes/vim-light-soft.yaml b/themes/vim-light-soft.yaml index 97262ede..78bf7db1 100644 --- a/themes/vim-light-soft.yaml +++ b/themes/vim-light-soft.yaml @@ -1,49 +1,50 @@ name: "Vim Light Soft" source: - marketplace_id: "HarryHopkinson.vim-theme" - version: "1.1.8" - installs: 181121 - author: "HarryHopkinson" - repo: "https://github.com/Harry-Hopkinson/vim-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=HarryHopkinson.vim-theme" + marketplace_id: "AndreaCombette.SweetWood" + version: "0.5.5" + installs: 249 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/SweetWood-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.SweetWood" colors: - bg: "#F2E5BC" - fg: "#3C3836" - black: "#EBDBB2" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#7C6F64" - brightBlack: "#928374" - brightRed: "#9D0006" - brightGreen: "#79740E" - brightYellow: "#B57614" - brightBlue: "#076678" - brightMagenta: "#8F3F71" - brightCyan: "#427B58" - brightWhite: "#3C3836" + bg: "#D6DFEE" + fg: "#3D2D27" + black: "#D6DFEE" + red: "#975F0E" + green: "#B5761A" + yellow: "#D0850D" + blue: "#5D768F" + magenta: "#767A7E" + cyan: "#767A7E" + white: "#656A6B" + brightBlack: "#767A7E" + brightRed: "#794115" + brightGreen: "#975F0E" + brightYellow: "#B5761A" + brightBlue: "#495D65" + brightMagenta: "#855D44" + brightCyan: "#495D65" + brightWhite: "#3D2D27" meta: mode: "light" - accent: "orange" - hue: 93 + accent: "yellow" + hue: 261 + pair: "Vim Dark Soft" contrast: - fg: 81.5 + fg: 80.1 black: 0 - red: 60.3 - green: 42.6 - yellow: 33.3 - blue: 53.9 - magenta: 53.8 - cyan: 43.6 - white: 58.6 - brightBlack: 49.1 - brightRed: 71.8 - brightGreen: 58.4 - brightYellow: 49.8 - brightBlue: 67 - brightMagenta: 67.5 - brightCyan: 59.2 - brightWhite: 81.5 + red: 56.9 + green: 45.7 + yellow: 36.9 + blue: 53.5 + magenta: 50.8 + cyan: 50.8 + white: 58.2 + brightBlack: 50.8 + brightRed: 68.6 + brightGreen: 56.9 + brightYellow: 45.7 + brightBlue: 64.7 + brightMagenta: 59.5 + brightCyan: 64.7 + brightWhite: 80.1 diff --git a/themes/vim-night.yaml b/themes/vim-night.yaml index b904c11b..78ec5fb8 100644 --- a/themes/vim-night.yaml +++ b/themes/vim-night.yaml @@ -1,11 +1,11 @@ name: "Vim Night" source: - marketplace_id: "Rasla.rassotheme" - version: "0.5.0" - installs: 74 + marketplace_id: "Rasla.vimnight" + version: "0.4.0" + installs: 4326 author: "Rasla" repo: "https://github.com/0xrasla/rassotheme" - url: "https://marketplace.visualstudio.com/items?itemName=Rasla.rassotheme" + url: "https://marketplace.visualstudio.com/items?itemName=Rasla.vimnight" colors: bg: "#000000" fg: "#7436B1" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 17.6 black: 0 diff --git a/themes/vin-theme.yaml b/themes/vin-theme.yaml index 37622bf3..c0e831bd 100644 --- a/themes/vin-theme.yaml +++ b/themes/vin-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 69 black: 0 diff --git a/themes/vintage-rust-theme.yaml b/themes/vintage-rust-theme.yaml index f1b08d05..6a94a623 100644 --- a/themes/vintage-rust-theme.yaml +++ b/themes/vintage-rust-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/vintage-serene.yaml b/themes/vintage-serene.yaml index 94de5c1c..d5e0a9f5 100644 --- a/themes/vintage-serene.yaml +++ b/themes/vintage-serene.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 81.1 black: 0 diff --git a/themes/vintage.yaml b/themes/vintage.yaml index 03e166e3..bdf69954 100644 --- a/themes/vintage.yaml +++ b/themes/vintage.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 48.1 black: 105.1 diff --git a/themes/vinyl.yaml b/themes/vinyl.yaml index a0e2d2c2..11a6920c 100644 --- a/themes/vinyl.yaml +++ b/themes/vinyl.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 80.1 black: 14.6 diff --git a/themes/violaceous-contrast.yaml b/themes/violaceous-contrast.yaml index 82c4d98b..3011f49d 100644 --- a/themes/violaceous-contrast.yaml +++ b/themes/violaceous-contrast.yaml @@ -1,11 +1,11 @@ name: "violaceous-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0B0A11" fg: "#BDB2F7" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 291 + pair: null contrast: fg: 65.3 black: 0 diff --git a/themes/violaceous-light.yaml b/themes/violaceous-light.yaml index a8e3c8ea..2577b2ed 100644 --- a/themes/violaceous-light.yaml +++ b/themes/violaceous-light.yaml @@ -1,11 +1,11 @@ name: "violaceous-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#E5E3EF" fg: "#444349" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 294 + pair: null contrast: fg: 77 black: 7.8 diff --git a/themes/violaceous.yaml b/themes/violaceous.yaml index f7beece2..bbd7bb05 100644 --- a/themes/violaceous.yaml +++ b/themes/violaceous.yaml @@ -1,11 +1,11 @@ name: "violaceous" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#242038" fg: "#BDB2F7" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 291 + pair: null contrast: fg: 62.8 black: 0 diff --git a/themes/violet-dream.yaml b/themes/violet-dream.yaml index b84ad97f..2013cb9a 100644 --- a/themes/violet-dream.yaml +++ b/themes/violet-dream.yaml @@ -2,7 +2,7 @@ name: "Violet Dream" source: marketplace_id: "AlexandreFPGoncalves.violet-dream" version: "1.0.3" - installs: 5422 + installs: 5431 author: "AlexandreFPGoncalves" repo: "https://github.com/AlexandreFPGoncalves/violet-dream" url: "https://marketplace.visualstudio.com/items?itemName=AlexandreFPGoncalves.violet-dream" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 89.8 black: 0 diff --git a/themes/violet-night.yaml b/themes/violet-night.yaml index a8bd2f79..79416843 100644 --- a/themes/violet-night.yaml +++ b/themes/violet-night.yaml @@ -2,7 +2,7 @@ name: "Violet Night" source: marketplace_id: "MaryamRezaee.violet-night-theme" version: "0.2.0" - installs: 449 + installs: 450 author: "Maryam Rezaee" repo: "https://github.com/msmrexe/violet-night-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=MaryamRezaee.violet-night-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 88.4 black: 9.4 diff --git a/themes/violet-nova.yaml b/themes/violet-nova.yaml index c0069f0c..d663a8f7 100644 --- a/themes/violet-nova.yaml +++ b/themes/violet-nova.yaml @@ -2,7 +2,7 @@ name: "Violet Nova" source: marketplace_id: "ZCNXS.violet-nova-theme" version: "1.0.4" - installs: 111 + installs: 112 author: "ZCNXS" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ZCNXS.violet-nova-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 300 + pair: null contrast: fg: 94.9 black: 0 diff --git a/themes/viora.yaml b/themes/viora.yaml index 62fe6849..f4ad036d 100644 --- a/themes/viora.yaml +++ b/themes/viora.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/viper-theme.yaml b/themes/viper-theme.yaml index b2926228..cfb2881a 100644 --- a/themes/viper-theme.yaml +++ b/themes/viper-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 314 + pair: null contrast: fg: 96.7 black: 0 diff --git a/themes/vishwakarma-sunset-glow.yaml b/themes/vishwakarma-sunset-glow.yaml index ca9b3f2e..992a478e 100644 --- a/themes/vishwakarma-sunset-glow.yaml +++ b/themes/vishwakarma-sunset-glow.yaml @@ -1,11 +1,11 @@ name: "Vishwakarma Sunset Glow" source: - marketplace_id: "VishwakarmaIndustries0abhishek.vishwakarma-theme" - version: "1.0.0" - installs: 872 + marketplace_id: "VishwakarmaIndustries.vishwa" + version: "0.0.1" + installs: 25 author: "Vishwakarma Industries" - repo: "https://github.com/vishwakarma-industries/vishwakarma-theme" - url: "https://marketplace.visualstudio.com/items?itemName=VishwakarmaIndustries0abhishek.vishwakarma-theme" + repo: "https://github.com/vishwakarma-industries/vishwa" + url: "https://marketplace.visualstudio.com/items?itemName=VishwakarmaIndustries.vishwa" colors: bg: "#FAF8F5" fg: "#2D2A26" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 97 black: 97.4 diff --git a/themes/vision-colorblind.yaml b/themes/vision-colorblind.yaml index 233ca62a..fa4c1a03 100644 --- a/themes/vision-colorblind.yaml +++ b/themes/vision-colorblind.yaml @@ -1,11 +1,11 @@ name: "vision-colorblind" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#000000" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/vision-light-colorblind.yaml b/themes/vision-light-colorblind.yaml index 87b18e7c..52f24727 100644 --- a/themes/vision-light-colorblind.yaml +++ b/themes/vision-light-colorblind.yaml @@ -1,11 +1,11 @@ name: "vision-light-colorblind" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#000000" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 0 diff --git a/themes/visual-studio-code-dark-theme.yaml b/themes/visual-studio-code-dark-theme.yaml index 28faec8a..ccb5bb20 100644 --- a/themes/visual-studio-code-dark-theme.yaml +++ b/themes/visual-studio-code-dark-theme.yaml @@ -2,7 +2,7 @@ name: "Visual Studio Code Dark Theme" source: marketplace_id: "mdmarufsarker.maruf-sarker" version: "0.1.1" - installs: 29145 + installs: 29154 author: "Md. Maruf Sarker" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 245 + pair: null contrast: fg: 79.4 black: 0 diff --git a/themes/visual-studio-github-light-plus.yaml b/themes/visual-studio-github-light-plus.yaml index bcba373c..f1ad23bd 100644 --- a/themes/visual-studio-github-light-plus.yaml +++ b/themes/visual-studio-github-light-plus.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 106 black: 93.9 diff --git a/themes/visualos.yaml b/themes/visualos.yaml index 420ab24b..dce45565 100644 --- a/themes/visualos.yaml +++ b/themes/visualos.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.3 black: 0 diff --git a/themes/vitepress-theme-vite-dark.yaml b/themes/vitepress-theme-vite-dark.yaml index bbb182cb..e69c2436 100644 --- a/themes/vitepress-theme-vite-dark.yaml +++ b/themes/vitepress-theme-vite-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 105.6 black: 0 diff --git a/themes/vitesse-black.yaml b/themes/vitesse-black.yaml deleted file mode 100644 index 34fc2231..00000000 --- a/themes/vitesse-black.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Vitesse Black" -source: - marketplace_id: "antfu.theme-vitesse" - version: "1.0.1" - installs: 108742 - author: "Anthony Fu" - repo: "https://github.com/antfu/vscode-theme-vitesse" - url: "https://marketplace.visualstudio.com/items?itemName=antfu.theme-vitesse" -colors: - bg: "#000000" - fg: "#DBD7CA" - black: "#393A34" - red: "#CB7676" - green: "#4D9375" - yellow: "#E6CC77" - blue: "#6394BF" - magenta: "#D9739F" - cyan: "#5EAAB5" - white: "#DBD7CA" - brightBlack: "#777777" - brightRed: "#CB7676" - brightGreen: "#4D9375" - brightYellow: "#E6CC77" - brightBlue: "#6394BF" - brightMagenta: "#D9739F" - brightCyan: "#5EAAB5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 82.3 - black: 0 - red: 41.8 - green: 37.7 - yellow: 76.6 - blue: 42.4 - magenta: 44.9 - cyan: 50.3 - white: 82.3 - brightBlack: 30.6 - brightRed: 41.8 - brightGreen: 37.7 - brightYellow: 76.6 - brightBlue: 42.4 - brightMagenta: 44.9 - brightCyan: 50.3 - brightWhite: 107.9 diff --git a/themes/vitesse-dark-custom.yaml b/themes/vitesse-dark-custom.yaml index 4da3db60..61e59663 100644 --- a/themes/vitesse-dark-custom.yaml +++ b/themes/vitesse-dark-custom.yaml @@ -2,7 +2,7 @@ name: "Vitesse Dark Custom" source: marketplace_id: "fxzer.theme-vitesse-dark-custom" version: "0.2.1" - installs: 1325 + installs: 1326 author: "Vitesse Theme Custom" repo: "https://github.com/fxzer/theme-vitesse-dark-custom" url: "https://marketplace.visualstudio.com/items?itemName=fxzer.theme-vitesse-dark-custom" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 64.6 black: 64.6 diff --git a/themes/vitesse-dark-soft.yaml b/themes/vitesse-dark-soft.yaml index 23efd742..55da5189 100644 --- a/themes/vitesse-dark-soft.yaml +++ b/themes/vitesse-dark-soft.yaml @@ -1,11 +1,11 @@ name: "Vitesse Dark Soft" source: - marketplace_id: "antfu.theme-vitesse" - version: "1.0.1" - installs: 108742 - author: "Anthony Fu" - repo: "https://github.com/antfu/vscode-theme-vitesse" - url: "https://marketplace.visualstudio.com/items?itemName=antfu.theme-vitesse" + marketplace_id: "5ett.motion-blue" + version: "0.0.7" + installs: 534 + author: "5ett" + repo: "https://github.com/5ett/motion-blue" + url: "https://marketplace.visualstudio.com/items?itemName=5ett.motion-blue" colors: bg: "#222222" fg: "#DBD7CA" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 79.9 black: 0 diff --git a/themes/vitesse-dark.yaml b/themes/vitesse-dark.yaml deleted file mode 100644 index 7d5a7413..00000000 --- a/themes/vitesse-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Vitesse Dark" -source: - marketplace_id: "vguegan.vicos-theme" - version: "1.0.1" - installs: 408 - author: "Victor Guegan" - repo: "https://github.com/GueganVictor/vicos-theme" - url: "https://marketplace.visualstudio.com/items?itemName=vguegan.vicos-theme" -colors: - bg: "#191919" - fg: "#DBD7CA" - black: "#393A34" - red: "#CB7676" - green: "#4D9375" - yellow: "#E6CC77" - blue: "#6394BF" - magenta: "#DB889A" - cyan: "#5EAAB5" - white: "#FFFFFF" - brightBlack: "#393A34" - brightRed: "#CB7676" - brightGreen: "#4D9375" - brightYellow: "#E6CC77" - brightBlue: "#6394BF" - brightMagenta: "#DB889A" - brightCyan: "#5EAAB5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 81.1 - black: 0 - red: 40.6 - green: 36.5 - yellow: 75.4 - blue: 41.1 - magenta: 49.7 - cyan: 49.1 - white: 106.7 - brightBlack: 0 - brightRed: 40.6 - brightGreen: 36.5 - brightYellow: 75.4 - brightBlue: 41.1 - brightMagenta: 49.7 - brightCyan: 49.1 - brightWhite: 106.7 diff --git a/themes/vitesse-dragon-dark.yaml b/themes/vitesse-dragon-dark.yaml index 13704a0b..ceeda154 100644 --- a/themes/vitesse-dragon-dark.yaml +++ b/themes/vitesse-dragon-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 67 black: 8.3 diff --git a/themes/vitesse-dragon.yaml b/themes/vitesse-dragon.yaml index d60270b3..54cd2c4f 100644 --- a/themes/vitesse-dragon.yaml +++ b/themes/vitesse-dragon.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 89.6 black: 101.2 diff --git a/themes/vitesse-green-theme.yaml b/themes/vitesse-green-theme.yaml index e4545ced..1ea4108e 100644 --- a/themes/vitesse-green-theme.yaml +++ b/themes/vitesse-green-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 92.5 black: 101.3 diff --git a/themes/vitesse-light-soft.yaml b/themes/vitesse-light-soft.yaml deleted file mode 100644 index 1cc513e2..00000000 --- a/themes/vitesse-light-soft.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Vitesse Light Soft" -source: - marketplace_id: "antfu.theme-vitesse" - version: "1.0.1" - installs: 108742 - author: "Anthony Fu" - repo: "https://github.com/antfu/vscode-theme-vitesse" - url: "https://marketplace.visualstudio.com/items?itemName=antfu.theme-vitesse" -colors: - bg: "#F1F0E9" - fg: "#393A34" - black: "#121212" - red: "#AB5959" - green: "#1E754F" - yellow: "#BDA437" - blue: "#296AA3" - magenta: "#A13865" - cyan: "#2993A3" - white: "#DBD7CA" - brightBlack: "#AAAAAA" - brightRed: "#AB5959" - brightGreen: "#1E754F" - brightYellow: "#BDA437" - brightBlue: "#296AA3" - brightMagenta: "#A13865" - brightCyan: "#2993A3" - brightWhite: "#DDDDDD" -meta: - mode: "light" - accent: "red" - hue: null - contrast: - fg: 87.4 - black: 96.2 - red: 64.4 - green: 68.8 - yellow: 39.2 - blue: 69.1 - magenta: 72 - cyan: 54.4 - white: 12 - brightBlack: 36.7 - brightRed: 64.4 - brightGreen: 68.8 - brightYellow: 39.2 - brightBlue: 69.1 - brightMagenta: 72 - brightCyan: 54.4 - brightWhite: 8.5 diff --git a/themes/vitesse-light.yaml b/themes/vitesse-light.yaml deleted file mode 100644 index 802414c5..00000000 --- a/themes/vitesse-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Vitesse Light" -source: - marketplace_id: "mashirozx.theme-biu" - version: "0.1.14" - installs: 203 - author: "Mashiro" - repo: "https://github.com/mashirozx/vscode-theme-biu" - url: "https://marketplace.visualstudio.com/items?itemName=mashirozx.theme-biu" -colors: - bg: "#FFFFFF" - fg: "#393A34" - black: "#121212" - red: "#AB5959" - green: "#1C6B48" - yellow: "#BDA437" - blue: "#296AA3" - magenta: "#B05A78" - cyan: "#2993A3" - white: "#DBD7CA" - brightBlack: "#AAAAAA" - brightRed: "#AB5959" - brightGreen: "#1C6B48" - brightYellow: "#BDA437" - brightBlue: "#296AA3" - brightMagenta: "#B05A78" - brightCyan: "#2993A3" - brightWhite: "#DBD7CA" -meta: - mode: "light" - accent: "green" - hue: null - contrast: - fg: 96.5 - black: 105.3 - red: 73.5 - green: 81.8 - yellow: 48.3 - blue: 78.2 - magenta: 71.5 - cyan: 63.5 - white: 21.1 - brightBlack: 45.8 - brightRed: 73.5 - brightGreen: 81.8 - brightYellow: 48.3 - brightBlue: 78.2 - brightMagenta: 71.5 - brightCyan: 63.5 - brightWhite: 21.1 diff --git a/themes/vitesse-webstorm-dark.yaml b/themes/vitesse-webstorm-dark.yaml index b05aff37..caa186d1 100644 --- a/themes/vitesse-webstorm-dark.yaml +++ b/themes/vitesse-webstorm-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 105.9 black: 0 diff --git a/themes/vitrioleuse.yaml b/themes/vitrioleuse.yaml index 80daeef6..e185d72a 100644 --- a/themes/vitrioleuse.yaml +++ b/themes/vitrioleuse.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/vivid-blue.yaml b/themes/vivid-blue.yaml index bcd9cb48..06dfd1d0 100644 --- a/themes/vivid-blue.yaml +++ b/themes/vivid-blue.yaml @@ -1,11 +1,11 @@ name: "Vivid Blue" source: - marketplace_id: "WelkerArantes.sweet-code-theme" - version: "1.0.0" - installs: 4062 + marketplace_id: "WelkerArantes.sweet-candy-theme" + version: "0.0.2" + installs: 3156 author: "Welker Arantes" - repo: "https://github.com/taikio/sweet-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=WelkerArantes.sweet-code-theme" + repo: "https://github.com/taikio/sweet-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=WelkerArantes.sweet-candy-theme" colors: bg: "#333333" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 74.6 black: 0 diff --git a/themes/vividnord.yaml b/themes/vividnord.yaml index f525d67c..fb3c72dc 100644 --- a/themes/vividnord.yaml +++ b/themes/vividnord.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 62.5 black: 9.6 diff --git a/themes/vivido-theme.yaml b/themes/vivido-theme.yaml index 5660b7bf..85bdf2ba 100644 --- a/themes/vivido-theme.yaml +++ b/themes/vivido-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 100.1 black: 0 diff --git a/themes/vkt-theme.yaml b/themes/vkt-theme.yaml index 4ffa50df..2ab0c2e7 100644 --- a/themes/vkt-theme.yaml +++ b/themes/vkt-theme.yaml @@ -2,7 +2,7 @@ name: "vkt-theme" source: marketplace_id: "PedroMakaveli.VktTheme" version: "1.0.0" - installs: 3214 + installs: 3216 author: "Pedro Makaveli" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PedroMakaveli.VktTheme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 298 + pair: null contrast: fg: 93.6 black: 89.8 diff --git a/themes/void-iris.yaml b/themes/void-iris.yaml index 0624c61c..5a457b76 100644 --- a/themes/void-iris.yaml +++ b/themes/void-iris.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 87.6 black: 0 diff --git a/themes/void-script.yaml b/themes/void-script.yaml deleted file mode 100644 index ac0c689a..00000000 --- a/themes/void-script.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Void Script" -source: - marketplace_id: "adamsmithdev.void-script" - version: "0.0.6" - installs: 72 - author: "adamsmithdev" - repo: "https://github.com/adamsmithdev/void-script-theme" - url: "https://marketplace.visualstudio.com/items?itemName=adamsmithdev.void-script" -colors: - bg: "#212121" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 78.2 - black: 0 - red: 25.4 - green: 51.7 - yellow: 84.4 - blue: 26.2 - magenta: 28.5 - cyan: 46.3 - white: 88.8 - brightBlack: 20.8 - brightRed: 37.3 - brightGreen: 62.3 - brightYellow: 94.4 - brightBlue: 38.7 - brightMagenta: 44.1 - brightCyan: 54.1 - brightWhite: 88.8 diff --git a/themes/void.yaml b/themes/void.yaml index 9a67892a..6bf3108a 100644 --- a/themes/void.yaml +++ b/themes/void.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 70.7 black: 0 diff --git a/themes/voidbloom-quazar.yaml b/themes/voidbloom-quazar.yaml index a80354b9..9fb4597d 100644 --- a/themes/voidbloom-quazar.yaml +++ b/themes/voidbloom-quazar.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 93 black: 83.5 diff --git a/themes/voidbloom-singularity.yaml b/themes/voidbloom-singularity.yaml index 8a26200c..bfc17bf9 100644 --- a/themes/voidbloom-singularity.yaml +++ b/themes/voidbloom-singularity.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 299 + pair: null contrast: fg: 96.5 black: 54.1 diff --git a/themes/voidwalker.yaml b/themes/voidwalker.yaml index d1497e8f..16b0c80b 100644 --- a/themes/voidwalker.yaml +++ b/themes/voidwalker.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.7 black: 0 diff --git a/themes/volatile-contrast.yaml b/themes/volatile-contrast.yaml index b7db5206..dd11de4b 100644 --- a/themes/volatile-contrast.yaml +++ b/themes/volatile-contrast.yaml @@ -1,11 +1,11 @@ name: "volatile-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#141619" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 74 black: 0 diff --git a/themes/volatile-light.yaml b/themes/volatile-light.yaml index 5f5a35df..58ce14ef 100644 --- a/themes/volatile-light.yaml +++ b/themes/volatile-light.yaml @@ -1,11 +1,11 @@ name: "volatile-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#474F56" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 88.8 black: 0 diff --git a/themes/volatile.yaml b/themes/volatile.yaml index 52bfcfa1..71eacb9e 100644 --- a/themes/volatile.yaml +++ b/themes/volatile.yaml @@ -1,11 +1,11 @@ name: "volatile" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#32373D" fg: "#C0CCDB" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 253 + pair: null contrast: fg: 68 black: 0 diff --git a/themes/volcanofr.yaml b/themes/volcanofr.yaml index e3110843..60eafa7b 100644 --- a/themes/volcanofr.yaml +++ b/themes/volcanofr.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 80 black: 0 diff --git a/themes/volskaya.yaml b/themes/volskaya.yaml index 524c32dc..d9d6358e 100644 --- a/themes/volskaya.yaml +++ b/themes/volskaya.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/volt-dark.yaml b/themes/volt-dark.yaml index cf4f1eeb..7a2a9bcb 100644 --- a/themes/volt-dark.yaml +++ b/themes/volt-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/voodoo.yaml b/themes/voodoo.yaml index 5270ce93..815ef05c 100644 --- a/themes/voodoo.yaml +++ b/themes/voodoo.yaml @@ -2,7 +2,7 @@ name: "Voodoo" source: marketplace_id: "liamsheppard.voodoo" version: "0.10.0" - installs: 6341 + installs: 6343 author: "liamsheppard" repo: "https://github.com/liamsheppard/voodoo-theme" url: "https://marketplace.visualstudio.com/items?itemName=liamsheppard.voodoo" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 279 + pair: null contrast: fg: 77 black: 15.1 diff --git a/themes/voraes.yaml b/themes/voraes.yaml index cbe15c12..a1056254 100644 --- a/themes/voraes.yaml +++ b/themes/voraes.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 86.3 black: 0 diff --git a/themes/voyager.yaml b/themes/voyager.yaml index 9d3e09ed..23f4929e 100644 --- a/themes/voyager.yaml +++ b/themes/voyager.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 60.4 black: 0 diff --git a/themes/vs-code-deep-f-lux-fork-fork.yaml b/themes/vs-code-deep-f-lux-fork-fork.yaml index 19642422..cd72464e 100644 --- a/themes/vs-code-deep-f-lux-fork-fork.yaml +++ b/themes/vs-code-deep-f-lux-fork-fork.yaml @@ -2,7 +2,7 @@ name: "VS Code Deep F.lux - Fork - Fork" source: marketplace_id: "valentinesamuel.fallout-dark" version: "0.0.1" - installs: 2242 + installs: 2243 author: "valentine samuel" repo: "https://github.com/valentinesamuel/themes" url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 82 + pair: null contrast: fg: 79.1 black: 79.1 diff --git a/themes/vs-code-deep-f-lux.yaml b/themes/vs-code-deep-f-lux.yaml index ec7386f3..8537ebb0 100644 --- a/themes/vs-code-deep-f-lux.yaml +++ b/themes/vs-code-deep-f-lux.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 85 + pair: null contrast: fg: 74.9 black: 81.4 diff --git a/themes/vs-code-next-js.yaml b/themes/vs-code-next-js.yaml index 29971423..2351de76 100644 --- a/themes/vs-code-next-js.yaml +++ b/themes/vs-code-next-js.yaml @@ -1,11 +1,11 @@ name: "VS Code Next.Js" source: - marketplace_id: "ShayanAliJalbani.nextjs-theme" + marketplace_id: "ShayanAliJalbani.vs-nextjs" version: "0.0.1" - installs: 12564 + installs: 1748 author: "Shayan Ali Jalbani" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=ShayanAliJalbani.nextjs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ShayanAliJalbani.vs-nextjs" colors: bg: "#0A0A0A" fg: "#EDEDED" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 96 black: 0 diff --git a/themes/vs-fleet.yaml b/themes/vs-fleet.yaml index 419f0afa..ab848675 100644 --- a/themes/vs-fleet.yaml +++ b/themes/vs-fleet.yaml @@ -2,7 +2,7 @@ name: "vs-fleet" source: marketplace_id: "anto.vs-fleet" version: "2.0.1" - installs: 2759 + installs: 2760 author: "anto" repo: null url: "https://marketplace.visualstudio.com/items?itemName=anto.vs-fleet" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.2 black: 0 diff --git a/themes/vs-ghoul.yaml b/themes/vs-ghoul.yaml index 8b75518a..d98803b2 100644 --- a/themes/vs-ghoul.yaml +++ b/themes/vs-ghoul.yaml @@ -2,7 +2,7 @@ name: "VS Ghoul" source: marketplace_id: "NathanInbar.vs-ghoul" version: "0.0.3" - installs: 2474 + installs: 2476 author: "Nathan Inbar" repo: "https://github.com/NathanInbar/vs-ghoul" url: "https://marketplace.visualstudio.com/items?itemName=NathanInbar.vs-ghoul" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 55.1 black: 0 diff --git a/themes/vsblue.yaml b/themes/vsblue.yaml index f71b71ea..b7c92a0b 100644 --- a/themes/vsblue.yaml +++ b/themes/vsblue.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 91.9 black: 93.1 diff --git a/themes/vsc-blue-theme.yaml b/themes/vsc-blue-theme.yaml index 8c579cef..ef129455 100644 --- a/themes/vsc-blue-theme.yaml +++ b/themes/vsc-blue-theme.yaml @@ -2,7 +2,7 @@ name: "Vsc-Blue-theme" source: marketplace_id: "Mdb05.vsc-theme" version: "1.0.1" - installs: 667 + installs: 668 author: "Mdb05" repo: "https://github.com/Mdb05/Vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mdb05.vsc-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.2 black: 0 diff --git a/themes/vsc-military-style.yaml b/themes/vsc-military-style.yaml index d76d22c2..e077dae8 100644 --- a/themes/vsc-military-style.yaml +++ b/themes/vsc-military-style.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 145 + pair: null contrast: fg: 47.6 black: 0 diff --git a/themes/vsc-minimalist-theme-oak.yaml b/themes/vsc-minimalist-theme-oak.yaml index 7d787300..4823e06d 100644 --- a/themes/vsc-minimalist-theme-oak.yaml +++ b/themes/vsc-minimalist-theme-oak.yaml @@ -2,7 +2,7 @@ name: "vsc-minimalist-theme-oak" source: marketplace_id: "MuhammadMohsen.vsc-minimalist-theme" version: "1.5.4" - installs: 1321 + installs: 1322 author: "Muhammad Mohsen" repo: "https://github.com/Muhammad-Mohsen/vsc-minimalist-theme" url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMohsen.vsc-minimalist-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.8 black: 16.6 diff --git a/themes/vsc-minimalist-theme-obsidian.yaml b/themes/vsc-minimalist-theme-obsidian.yaml index 6e77f3a3..c3eb78e9 100644 --- a/themes/vsc-minimalist-theme-obsidian.yaml +++ b/themes/vsc-minimalist-theme-obsidian.yaml @@ -2,7 +2,7 @@ name: "vsc-minimalist-theme-obsidian" source: marketplace_id: "MuhammadMohsen.vsc-minimalist-theme" version: "1.5.4" - installs: 1321 + installs: 1322 author: "Muhammad Mohsen" repo: "https://github.com/Muhammad-Mohsen/vsc-minimalist-theme" url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMohsen.vsc-minimalist-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.4 black: 15.2 diff --git a/themes/vsc-minimalist-theme-odp.yaml b/themes/vsc-minimalist-theme-odp.yaml index 3fb83d3f..e4d4ba20 100644 --- a/themes/vsc-minimalist-theme-odp.yaml +++ b/themes/vsc-minimalist-theme-odp.yaml @@ -2,7 +2,7 @@ name: "vsc-minimalist-theme-odp" source: marketplace_id: "MuhammadMohsen.vsc-minimalist-theme" version: "1.5.4" - installs: 1321 + installs: 1322 author: "Muhammad Mohsen" repo: "https://github.com/Muhammad-Mohsen/vsc-minimalist-theme" url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMohsen.vsc-minimalist-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.6 black: 0 diff --git a/themes/vsc-solarized-light.yaml b/themes/vsc-solarized-light.yaml index b28e8913..8096ba01 100644 --- a/themes/vsc-solarized-light.yaml +++ b/themes/vsc-solarized-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 65.7 black: 93.7 diff --git a/themes/vscode-material-ui.yaml b/themes/vscode-material-ui.yaml index d925e8a1..a0542b56 100644 --- a/themes/vscode-material-ui.yaml +++ b/themes/vscode-material-ui.yaml @@ -2,7 +2,7 @@ name: "vscode-material-ui" source: marketplace_id: "nxt3.vscode-material-ui" version: "1.2.0" - installs: 30110 + installs: 30118 author: "nxt3" repo: "https://github.com/Nxt3/vscode-material-ui" url: "https://marketplace.visualstudio.com/items?itemName=nxt3.vscode-material-ui" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 94.5 black: 0 diff --git a/themes/vscode-nofrils-dark.yaml b/themes/vscode-nofrils-dark.yaml index ad8ee2bc..6dcbbe5a 100644 --- a/themes/vscode-nofrils-dark.yaml +++ b/themes/vscode-nofrils-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "VSCode Nofrils Light" contrast: fg: 89.8 black: 0 diff --git a/themes/vscode-nofrils-github-light.yaml b/themes/vscode-nofrils-github-light.yaml index 5d3be83e..9681815c 100644 --- a/themes/vscode-nofrils-github-light.yaml +++ b/themes/vscode-nofrils-github-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.5 black: 101.5 diff --git a/themes/vscode-nofrils-gruvbox-dark.yaml b/themes/vscode-nofrils-gruvbox-dark.yaml index 30d3313c..cf115537 100644 --- a/themes/vscode-nofrils-gruvbox-dark.yaml +++ b/themes/vscode-nofrils-gruvbox-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: "VSCode Nofrils Gruvbox Light" contrast: fg: 77.9 black: 77.9 diff --git a/themes/vscode-nofrils-gruvbox-light.yaml b/themes/vscode-nofrils-gruvbox-light.yaml index 9f8c0122..441061ab 100644 --- a/themes/vscode-nofrils-gruvbox-light.yaml +++ b/themes/vscode-nofrils-gruvbox-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "VSCode Nofrils Gruvbox Dark" contrast: fg: 93 black: 93 diff --git a/themes/vscode-nofrils-light.yaml b/themes/vscode-nofrils-light.yaml index 76cd249a..404b3349 100644 --- a/themes/vscode-nofrils-light.yaml +++ b/themes/vscode-nofrils-light.yaml @@ -1,11 +1,11 @@ name: "VSCode Nofrils Light" source: - marketplace_id: "batteajd.vscode-nofrils-light" - version: "1.1.1" - installs: 7 + marketplace_id: "batteajd.vscode-nofrils" + version: "2.2.0" + installs: 102 author: "Jonathan Batteas" - repo: "https://github.com/urld/vscode-nofrils" - url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils-light" + repo: "https://github.com/sosukeinu/vscode-nofrils" + url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" colors: bg: "#DADADA" fg: "#000000" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "VSCode Nofrils Dark" contrast: fg: 84.4 black: 84.4 diff --git a/themes/vscode-nofrils-one-dark.yaml b/themes/vscode-nofrils-one-dark.yaml index 3883f535..28624ee9 100644 --- a/themes/vscode-nofrils-one-dark.yaml +++ b/themes/vscode-nofrils-one-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: "VSCode Nofrils One Light" contrast: fg: 56.2 black: 0 diff --git a/themes/vscode-nofrils-one-light.yaml b/themes/vscode-nofrils-one-light.yaml index 75cd0097..4b72a1d1 100644 --- a/themes/vscode-nofrils-one-light.yaml +++ b/themes/vscode-nofrils-one-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "VSCode Nofrils One Dark" contrast: fg: 93.2 black: 93.2 diff --git a/themes/vscode-nofrils-sepia.yaml b/themes/vscode-nofrils-sepia.yaml index 06d92cd7..b27c2f00 100644 --- a/themes/vscode-nofrils-sepia.yaml +++ b/themes/vscode-nofrils-sepia.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 83.7 black: 83.7 diff --git a/themes/vscode-nofrils-tokyo-night.yaml b/themes/vscode-nofrils-tokyo-night.yaml index 23d3725c..37e391cf 100644 --- a/themes/vscode-nofrils-tokyo-night.yaml +++ b/themes/vscode-nofrils-tokyo-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: null contrast: fg: 73.8 black: 0 diff --git a/themes/vscode-pink-and-puple-theme.yaml b/themes/vscode-pink-and-puple-theme.yaml index 531cec98..3d202505 100644 --- a/themes/vscode-pink-and-puple-theme.yaml +++ b/themes/vscode-pink-and-puple-theme.yaml @@ -2,7 +2,7 @@ name: "vscode-pink-and-puple-theme" source: marketplace_id: "KelsonCarvalho.vscode-pink-and-puple-theme" version: "2.0.0" - installs: 1126 + installs: 1129 author: "Kelson Carvalho" repo: "https://github.com/NoslekCode/vscode-pink-and-puple-theme" url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.vscode-pink-and-puple-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 318 + pair: null contrast: fg: 69.7 black: 26.6 diff --git a/themes/vscode-theme.yaml b/themes/vscode-theme.yaml index 738b188c..31d26a2c 100644 --- a/themes/vscode-theme.yaml +++ b/themes/vscode-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 106.9 black: 0 diff --git a/themes/vscyberpunk-2077.yaml b/themes/vscyberpunk-2077.yaml deleted file mode 100644 index ffb9a5af..00000000 --- a/themes/vscyberpunk-2077.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "VSCyberpunk 2077" -source: - marketplace_id: "spicyhek.visual-studio-cyberpunk-2077" - version: "0.1.1" - installs: 224 - author: "spicyhek" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=spicyhek.visual-studio-cyberpunk-2077" -colors: - bg: "#160000" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 29 - contrast: - fg: 80.3 - black: 0 - red: 27.5 - green: 53.8 - yellow: 86.4 - blue: 28.2 - magenta: 30.6 - cyan: 48.4 - white: 90.8 - brightBlack: 22.8 - brightRed: 39.4 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.8 - brightMagenta: 46.2 - brightCyan: 56.2 - brightWhite: 90.8 diff --git a/themes/vsmuted-color-theme.yaml b/themes/vsmuted-color-theme.yaml index 23701757..7f243888 100644 --- a/themes/vsmuted-color-theme.yaml +++ b/themes/vsmuted-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/vstheme-no-italics.yaml b/themes/vstheme-no-italics.yaml index db44a2b4..90e6a214 100644 --- a/themes/vstheme-no-italics.yaml +++ b/themes/vstheme-no-italics.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 253 + pair: null contrast: fg: 79.7 black: 0 diff --git a/themes/vstoolkit-theme-dark.yaml b/themes/vstoolkit-theme-dark.yaml index 5f92776b..eb458b75 100644 --- a/themes/vstoolkit-theme-dark.yaml +++ b/themes/vstoolkit-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 248 + pair: null contrast: fg: 86.2 black: 0 diff --git a/themes/vuejs-theme.yaml b/themes/vuejs-theme.yaml index 2a4a87ad..fbb8408d 100644 --- a/themes/vuejs-theme.yaml +++ b/themes/vuejs-theme.yaml @@ -2,7 +2,7 @@ name: "VueJS Theme" source: marketplace_id: "leonardoleal202.vuejs-theme" version: "2.0.0" - installs: 12754 + installs: 12760 author: "leonardoleal202" repo: "https://github.com/Leozhr/VueJS-Theme" url: "https://marketplace.visualstudio.com/items?itemName=leonardoleal202.vuejs-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 65.7 black: 0 diff --git a/themes/vulpotheme.yaml b/themes/vulpotheme.yaml deleted file mode 100644 index 207759b5..00000000 --- a/themes/vulpotheme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "VulpoTheme" -source: - marketplace_id: "VulpoTheDev.vulpotheme" - version: "1.0.0" - installs: 84 - author: "Jason" - repo: "https://github.com/VulpoTheDev/vulpotheme" - url: "https://marketplace.visualstudio.com/items?itemName=VulpoTheDev.vulpotheme" -colors: - bg: "#131313" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 79.8 - black: 0 - red: 27.1 - green: 53.4 - yellow: 86 - blue: 27.8 - magenta: 30.1 - cyan: 47.9 - white: 90.4 - brightBlack: 22.4 - brightRed: 38.9 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.4 - brightMagenta: 45.7 - brightCyan: 55.8 - brightWhite: 90.4 diff --git a/themes/vxcode-blush.yaml b/themes/vxcode-blush.yaml index 6a3da859..3ef2fd11 100644 --- a/themes/vxcode-blush.yaml +++ b/themes/vxcode-blush.yaml @@ -2,7 +2,7 @@ name: "vxcode blush" source: marketplace_id: "evertjunior.vxcode-theme" version: "0.0.15" - installs: 3237 + installs: 3239 author: "Evert Junior" repo: "https://github.com/evertjr/vxcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 65 + pair: null contrast: fg: 80.8 black: 68 diff --git a/themes/vxcode-cream.yaml b/themes/vxcode-cream.yaml index 4eeb4477..bfc50e23 100644 --- a/themes/vxcode-cream.yaml +++ b/themes/vxcode-cream.yaml @@ -2,7 +2,7 @@ name: "vxcode cream" source: marketplace_id: "evertjunior.vxcode-theme" version: "0.0.15" - installs: 3237 + installs: 3239 author: "Evert Junior" repo: "https://github.com/evertjr/vxcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 91.7 black: 78.9 diff --git a/themes/vxcode-dark.yaml b/themes/vxcode-dark.yaml index 84a1a231..dc9508ef 100644 --- a/themes/vxcode-dark.yaml +++ b/themes/vxcode-dark.yaml @@ -2,7 +2,7 @@ name: "vxcode dark" source: marketplace_id: "evertjunior.vxcode-theme" version: "0.0.15" - installs: 3237 + installs: 3239 author: "Evert Junior" repo: "https://github.com/evertjr/vxcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 286 + pair: null contrast: fg: 85.8 black: 0 diff --git a/themes/vxcode-darker.yaml b/themes/vxcode-darker.yaml index a00a7b95..1c7a65cb 100644 --- a/themes/vxcode-darker.yaml +++ b/themes/vxcode-darker.yaml @@ -2,7 +2,7 @@ name: "vxcode darker" source: marketplace_id: "evertjunior.vxcode-theme" version: "0.0.15" - installs: 3237 + installs: 3239 author: "Evert Junior" repo: "https://github.com/evertjr/vxcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 89.6 black: 0 diff --git a/themes/vxcode-lavender.yaml b/themes/vxcode-lavender.yaml index f337786c..17157277 100644 --- a/themes/vxcode-lavender.yaml +++ b/themes/vxcode-lavender.yaml @@ -2,7 +2,7 @@ name: "vxcode lavender" source: marketplace_id: "evertjunior.vxcode-theme" version: "0.0.15" - installs: 3237 + installs: 3239 author: "Evert Junior" repo: "https://github.com/evertjr/vxcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 321 + pair: null contrast: fg: 83.2 black: 70.5 diff --git a/themes/vxcode-lime.yaml b/themes/vxcode-lime.yaml index 89808268..eab0fbfb 100644 --- a/themes/vxcode-lime.yaml +++ b/themes/vxcode-lime.yaml @@ -2,7 +2,7 @@ name: "vxcode lime" source: marketplace_id: "evertjunior.vxcode-theme" version: "0.0.15" - installs: 3237 + installs: 3239 author: "Evert Junior" repo: "https://github.com/evertjr/vxcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 159 + pair: null contrast: fg: 87.9 black: 75.2 diff --git a/themes/vxcode-oled.yaml b/themes/vxcode-oled.yaml index 22309ef2..8dbd8630 100644 --- a/themes/vxcode-oled.yaml +++ b/themes/vxcode-oled.yaml @@ -2,7 +2,7 @@ name: "vxcode OLED" source: marketplace_id: "evertjunior.vxcode-theme" version: "0.0.15" - installs: 3237 + installs: 3239 author: "Evert Junior" repo: "https://github.com/evertjr/vxcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 89.8 black: 0 diff --git a/themes/w30.yaml b/themes/w30.yaml deleted file mode 100644 index d7794f32..00000000 --- a/themes/w30.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "W30" -source: - marketplace_id: "heikopanjas.berlin-postal-themes" - version: "2.0.2" - installs: 38 - author: "Heiko Panjas" - repo: "https://github.com/heikopanjas/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=heikopanjas.berlin-postal-themes" -colors: - bg: "#010409" - fg: "#C9D1D9" - black: "#484F58" - red: "#EC8E2C" - green: "#58A6FF" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FDAC54" - brightGreen: "#79C0FF" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 248 - contrast: - fg: 78 - black: 13.5 - red: 53.7 - green: 52.7 - yellow: 52.7 - blue: 52.7 - magenta: 52.7 - cyan: 61.9 - white: 64.5 - brightBlack: 29.7 - brightRed: 67.3 - brightGreen: 65.2 - brightYellow: 65.2 - brightBlue: 65.2 - brightMagenta: 65.1 - brightCyan: 70.4 - brightWhite: 107.9 diff --git a/themes/w40-theme.yaml b/themes/w40-theme.yaml index c02fe995..7a34ed23 100644 --- a/themes/w40-theme.yaml +++ b/themes/w40-theme.yaml @@ -2,7 +2,7 @@ name: "w40 Theme" source: marketplace_id: "emersonsm.pinkcode-theme" version: "1.3.4" - installs: 698 + installs: 702 author: "emersonsm" repo: "https://github.com/emersonsm/pinkcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=emersonsm.pinkcode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 89.5 black: 0 diff --git a/themes/wallbash.yaml b/themes/wallbash.yaml index d87f092a..2294faba 100644 --- a/themes/wallbash.yaml +++ b/themes/wallbash.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 18 + pair: null contrast: fg: 104.7 black: 104.7 diff --git a/themes/walloco-light-theme.yaml b/themes/walloco-light-theme.yaml index a99d204f..d9fe8c75 100644 --- a/themes/walloco-light-theme.yaml +++ b/themes/walloco-light-theme.yaml @@ -2,7 +2,7 @@ name: "Walloco Light Theme" source: marketplace_id: "StevenWaller.walloco-light-theme" version: "0.0.1" - installs: 74 + installs: 75 author: "Steven Waller" repo: "https://github.com/stevenwaller/walloco-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=StevenWaller.walloco-light-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 88.9 black: 106 diff --git a/themes/walls-fill.yaml b/themes/walls-fill.yaml index ae4f4b21..866bb196 100644 --- a/themes/walls-fill.yaml +++ b/themes/walls-fill.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 36.4 black: 0 diff --git a/themes/wandering-mercenary.yaml b/themes/wandering-mercenary.yaml index 7ed41760..0a655e18 100644 --- a/themes/wandering-mercenary.yaml +++ b/themes/wandering-mercenary.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 89.5 black: 0 diff --git a/themes/wangyj-bright-black.yaml b/themes/wangyj-bright-black.yaml index 8e24e013..cabd32ae 100644 --- a/themes/wangyj-bright-black.yaml +++ b/themes/wangyj-bright-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 81.7 black: 0 diff --git a/themes/wangyj-contrast-black.yaml b/themes/wangyj-contrast-black.yaml deleted file mode 100644 index 24d76984..00000000 --- a/themes/wangyj-contrast-black.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Wangyj Contrast Black" -source: - marketplace_id: "wangyjhh.nice-vscode-extension" - version: "0.9.1" - installs: 39 - author: "wyj" - repo: "https://github.com/wangyjhh/nice_vscode_extension" - url: "https://marketplace.visualstudio.com/items?itemName=wangyjhh.nice-vscode-extension" -colors: - bg: "#000000" - fg: "#DBD7CA" - black: "#393A34" - red: "#CB7676" - green: "#3AA675" - yellow: "#E6CC77" - blue: "#6394BF" - magenta: "#D9739F" - cyan: "#5EAAB5" - white: "#DBD7CA" - brightBlack: "#777777" - brightRed: "#CB7676" - brightGreen: "#3AA675" - brightYellow: "#E6CC77" - brightBlue: "#6394BF" - brightMagenta: "#D9739F" - brightCyan: "#5EAAB5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 82.3 - black: 0 - red: 41.8 - green: 44.8 - yellow: 76.6 - blue: 42.4 - magenta: 44.9 - cyan: 50.3 - white: 82.3 - brightBlack: 30.6 - brightRed: 41.8 - brightGreen: 44.8 - brightYellow: 76.6 - brightBlue: 42.4 - brightMagenta: 44.9 - brightCyan: 50.3 - brightWhite: 107.9 diff --git a/themes/wangyj-film-black.yaml b/themes/wangyj-film-black.yaml index 9fd021d0..8129510b 100644 --- a/themes/wangyj-film-black.yaml +++ b/themes/wangyj-film-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 78.6 black: 25.4 diff --git a/themes/wangyj-film-light.yaml b/themes/wangyj-film-light.yaml index 4f94eabf..ac5135e5 100644 --- a/themes/wangyj-film-light.yaml +++ b/themes/wangyj-film-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: 89 + pair: null contrast: fg: 79 black: 77.5 diff --git a/themes/warlock-contrast.yaml b/themes/warlock-contrast.yaml index 2c3da92b..6a1d695d 100644 --- a/themes/warlock-contrast.yaml +++ b/themes/warlock-contrast.yaml @@ -1,11 +1,11 @@ name: "warlock-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#171123" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 298 + pair: null contrast: fg: 107.1 black: 0 diff --git a/themes/warlock-light.yaml b/themes/warlock-light.yaml index af4b3ec4..82b80802 100644 --- a/themes/warlock-light.yaml +++ b/themes/warlock-light.yaml @@ -1,11 +1,11 @@ name: "warlock-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#4B4060" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.1 black: 0 diff --git a/themes/warlock.yaml b/themes/warlock.yaml index dd9f2230..3b6ad26f 100644 --- a/themes/warlock.yaml +++ b/themes/warlock.yaml @@ -1,11 +1,11 @@ name: "warlock" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#4B4060" fg: "#FFFFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 300 + pair: null contrast: fg: 96.3 black: 0 diff --git a/themes/warm-black.yaml b/themes/warm-black.yaml index 8adc2e50..0881988c 100644 --- a/themes/warm-black.yaml +++ b/themes/warm-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85.4 black: 0 diff --git a/themes/warm-burnout-dark.yaml b/themes/warm-burnout-dark.yaml index 42001774..c0a631a5 100644 --- a/themes/warm-burnout-dark.yaml +++ b/themes/warm-burnout-dark.yaml @@ -2,7 +2,7 @@ name: "warm-burnout-dark" source: marketplace_id: "felip3fdl.warm-burnout" version: "0.1.6" - installs: 14 + installs: 15 author: "Felipe F Lima" repo: "https://github.com/felipefdl/warm-burnout" url: "https://marketplace.visualstudio.com/items?itemName=felip3fdl.warm-burnout" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 67 + pair: null contrast: fg: 65.9 black: 0 diff --git a/themes/warm-burnout-light.yaml b/themes/warm-burnout-light.yaml index 252cb19d..1e08ed18 100644 --- a/themes/warm-burnout-light.yaml +++ b/themes/warm-burnout-light.yaml @@ -2,7 +2,7 @@ name: "warm-burnout-light" source: marketplace_id: "felip3fdl.warm-burnout" version: "0.1.6" - installs: 14 + installs: 15 author: "Felipe F Lima" repo: "https://github.com/felipefdl/warm-burnout" url: "https://marketplace.visualstudio.com/items?itemName=felip3fdl.warm-burnout" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 80 + pair: null contrast: fg: 87.3 black: 87.3 diff --git a/themes/warm-orange-enthusiasm-creativity.yaml b/themes/warm-orange-enthusiasm-creativity.yaml index 722f3aa7..22112307 100644 --- a/themes/warm-orange-enthusiasm-creativity.yaml +++ b/themes/warm-orange-enthusiasm-creativity.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 65 + pair: null contrast: fg: 100.3 black: 0 diff --git a/themes/warm-orange-theme.yaml b/themes/warm-orange-theme.yaml index 5ad70201..96242469 100644 --- a/themes/warm-orange-theme.yaml +++ b/themes/warm-orange-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 84.8 black: 91 diff --git a/themes/warmkai-pro.yaml b/themes/warmkai-pro.yaml index 51ec52c9..7bf75674 100644 --- a/themes/warmkai-pro.yaml +++ b/themes/warmkai-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.3 black: 0 diff --git a/themes/waste-contrast.yaml b/themes/waste-contrast.yaml index 3e7cf65e..35bec5ff 100644 --- a/themes/waste-contrast.yaml +++ b/themes/waste-contrast.yaml @@ -1,11 +1,11 @@ name: "waste-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#081011" fg: "#B1C7CC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 206 + pair: null contrast: fg: 70 black: 0 diff --git a/themes/waste-light.yaml b/themes/waste-light.yaml index 56024892..d9b042c5 100644 --- a/themes/waste-light.yaml +++ b/themes/waste-light.yaml @@ -1,11 +1,11 @@ name: "waste-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#444444" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/waste.yaml b/themes/waste.yaml index 49f2c3ed..96c33c7b 100644 --- a/themes/waste.yaml +++ b/themes/waste.yaml @@ -1,11 +1,11 @@ name: "waste" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#1B353A" fg: "#B1C7CC" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 211 + pair: null contrast: fg: 64.9 black: 0 diff --git a/themes/water-grape.yaml b/themes/water-grape.yaml index 045f1519..12d4294c 100644 --- a/themes/water-grape.yaml +++ b/themes/water-grape.yaml @@ -2,7 +2,7 @@ name: "Water Grape" source: marketplace_id: "qfilip.watergrape-theme" version: "0.0.2" - installs: 5217 + installs: 5218 author: "qfilip" repo: "https://github.com/qfilip/watergrape-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=qfilip.watergrape-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.8 black: 0 diff --git a/themes/waterbyte-classic-2022-light.yaml b/themes/waterbyte-classic-2022-light.yaml index 2e4c9532..341c5da6 100644 --- a/themes/waterbyte-classic-2022-light.yaml +++ b/themes/waterbyte-classic-2022-light.yaml @@ -2,7 +2,7 @@ name: "Waterbyte - Classic 2022 Light" source: marketplace_id: "ungarmichael.wbyt-theme" version: "0.2.3" - installs: 239 + installs: 240 author: "Michael Ungar" repo: "https://github.com/ungarmichael/wbyt-theme" url: "https://marketplace.visualstudio.com/items?itemName=ungarmichael.wbyt-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 90.4 black: 106 diff --git a/themes/watermelon.yaml b/themes/watermelon.yaml index 7fc11c0c..80724f16 100644 --- a/themes/watermelon.yaml +++ b/themes/watermelon.yaml @@ -2,7 +2,7 @@ name: "Watermelon" source: marketplace_id: "mlkywy.watermelon-theme" version: "0.3.0" - installs: 2753 + installs: 2754 author: "mlkywy" repo: "https://github.com/alshei/vscode-watermelon" url: "https://marketplace.visualstudio.com/items?itemName=mlkywy.watermelon-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.2 black: 0 diff --git a/themes/wavefire.yaml b/themes/wavefire.yaml index 32ba6e0a..16350b75 100644 --- a/themes/wavefire.yaml +++ b/themes/wavefire.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 58.4 black: 7.8 diff --git a/themes/waves.yaml b/themes/waves.yaml deleted file mode 100644 index 6b833082..00000000 --- a/themes/waves.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Waves" -source: - marketplace_id: "xlqrrw.ultrafocus-dark" - version: "0.0.1" - installs: 737 - author: "xlqrrw" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=xlqrrw.ultrafocus-dark" -colors: - bg: "#000000" - fg: "#B2B2B2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#6F6F6F" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 60.7 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 27 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/wdark-theme.yaml b/themes/wdark-theme.yaml index 5b3f4fb3..4b1f7d36 100644 --- a/themes/wdark-theme.yaml +++ b/themes/wdark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 56.2 black: 9.9 diff --git a/themes/webc-dark.yaml b/themes/webc-dark.yaml index d4202305..438c4397 100644 --- a/themes/webc-dark.yaml +++ b/themes/webc-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 92.5 black: 0 diff --git a/themes/webstorm-darcula-dark-theme.yaml b/themes/webstorm-darcula-dark-theme.yaml index 812cd13c..76749cfc 100644 --- a/themes/webstorm-darcula-dark-theme.yaml +++ b/themes/webstorm-darcula-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 59.8 black: 0 diff --git a/themes/webstorm-intellij-darcula-theme.yaml b/themes/webstorm-intellij-darcula-theme.yaml index a6c2d640..9773abe8 100644 --- a/themes/webstorm-intellij-darcula-theme.yaml +++ b/themes/webstorm-intellij-darcula-theme.yaml @@ -2,7 +2,7 @@ name: "Webstorm IntelliJ Darcula Theme" source: marketplace_id: "xr0master.webstorm-intellij-darcula-theme" version: "1.1.1" - installs: 131586 + installs: 131610 author: "Sergey Khomushin" repo: "https://github.com/xr0master/vscode-intellij-darcula-theme" url: "https://marketplace.visualstudio.com/items?itemName=xr0master.webstorm-intellij-darcula-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 58.5 black: 103.8 diff --git a/themes/webstorm-monokai.yaml b/themes/webstorm-monokai.yaml index 92cb84fb..b96cf82d 100644 --- a/themes/webstorm-monokai.yaml +++ b/themes/webstorm-monokai.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 118 + pair: null contrast: fg: 60.5 black: 105.9 diff --git a/themes/weiting-candycolor.yaml b/themes/weiting-candycolor.yaml index 89c4e83e..ed9442df 100644 --- a/themes/weiting-candycolor.yaml +++ b/themes/weiting-candycolor.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 29 + pair: null contrast: fg: 82.3 black: 98.1 diff --git a/themes/west-bengal-cultural-hub.yaml b/themes/west-bengal-cultural-hub.yaml index 73594b5f..cbe4f0de 100644 --- a/themes/west-bengal-cultural-hub.yaml +++ b/themes/west-bengal-cultural-hub.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 356 + pair: null contrast: fg: 93.9 black: 0 diff --git a/themes/what-the-hell.yaml b/themes/what-the-hell.yaml index b40e3f6b..a9a56583 100644 --- a/themes/what-the-hell.yaml +++ b/themes/what-the-hell.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 136 + pair: null contrast: fg: 39 black: 45.9 diff --git a/themes/wheel-color-theme.yaml b/themes/wheel-color-theme.yaml index 0395ce05..a08f701d 100644 --- a/themes/wheel-color-theme.yaml +++ b/themes/wheel-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 162 + pair: null contrast: fg: 80.7 black: 0 diff --git a/themes/wheel-light-color-theme.yaml b/themes/wheel-light-color-theme.yaml index c1abbfcb..45bd7c12 100644 --- a/themes/wheel-light-color-theme.yaml +++ b/themes/wheel-light-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 151 + pair: null contrast: fg: 0 black: 84.6 diff --git a/themes/whiskey-coder-dark.yaml b/themes/whiskey-coder-dark.yaml index 9ad3223c..8d3a4941 100644 --- a/themes/whiskey-coder-dark.yaml +++ b/themes/whiskey-coder-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 45 + pair: "Whiskey Coder Light" contrast: fg: 81.2 black: 0 diff --git a/themes/whiskey-coder-light.yaml b/themes/whiskey-coder-light.yaml index 2cfcc284..591b5686 100644 --- a/themes/whiskey-coder-light.yaml +++ b/themes/whiskey-coder-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Whiskey Coder Dark" contrast: fg: 96.1 black: 101.1 diff --git a/themes/white-color-theme.yaml b/themes/white-color-theme.yaml deleted file mode 100644 index 89746879..00000000 --- a/themes/white-color-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "White-color-theme" -source: - marketplace_id: "arthurwhite.white" - version: "1.3.6" - installs: 100961 - author: "Arthur White" - repo: "https://github.com/arthurwhite/white-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=arthurwhite.white" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#FF0032" - green: "#00FF68" - yellow: "#FFCA00" - blue: "#004BFF" - magenta: "#7D46FC" - cyan: "#00D2FF" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#FF0032" - brightGreen: "#00FF68" - brightYellow: "#FFCA00" - brightBlue: "#004BFF" - brightMagenta: "#7D46FC" - brightCyan: "#00D2FF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "purple" - hue: null - contrast: - fg: 106 - black: 106 - red: 63.9 - green: 16.5 - yellow: 24.4 - blue: 78.9 - magenta: 74 - cyan: 32.7 - white: 0 - brightBlack: 106 - brightRed: 63.9 - brightGreen: 16.5 - brightYellow: 24.4 - brightBlue: 78.9 - brightMagenta: 74 - brightCyan: 32.7 - brightWhite: 0 diff --git a/themes/white-night-color-theme.yaml b/themes/white-night-color-theme.yaml deleted file mode 100644 index 3362837b..00000000 --- a/themes/white-night-color-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "White-Night-color-theme" -source: - marketplace_id: "arthurwhite.white" - version: "1.3.6" - installs: 100961 - author: "Arthur White" - repo: "https://github.com/arthurwhite/white-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=arthurwhite.white" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#FFFFFF" - red: "#FF0032" - green: "#00FF68" - yellow: "#FFCA00" - blue: "#004BFF" - magenta: "#7D46FC" - cyan: "#00D2FF" - white: "#FFFFFF" - brightBlack: "#FFFFFF" - brightRed: "#FF0032" - brightGreen: "#00FF68" - brightYellow: "#FFCA00" - brightBlue: "#004BFF" - brightMagenta: "#7D46FC" - brightCyan: "#00D2FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: null - contrast: - fg: 107.9 - black: 107.9 - red: 37.7 - green: 87.2 - yellow: 78.8 - blue: 22.9 - magenta: 27.7 - cyan: 70 - white: 107.9 - brightBlack: 107.9 - brightRed: 37.7 - brightGreen: 87.2 - brightYellow: 78.8 - brightBlue: 22.9 - brightMagenta: 27.7 - brightCyan: 70 - brightWhite: 107.9 diff --git a/themes/white-shade-color.yaml b/themes/white-shade-color.yaml index 78c91bf3..4f2935a7 100644 --- a/themes/white-shade-color.yaml +++ b/themes/white-shade-color.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 41.8 black: 106 diff --git a/themes/white-winter.yaml b/themes/white-winter.yaml index 58d87251..5eb68213 100644 --- a/themes/white-winter.yaml +++ b/themes/white-winter.yaml @@ -2,7 +2,7 @@ name: "White Winter" source: marketplace_id: "jker.white-winter" version: "1.0.1" - installs: 12430 + installs: 12433 author: "jker" repo: "https://github.com/guidolee/jker-white-winter" url: "https://marketplace.visualstudio.com/items?itemName=jker.white-winter" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 106 black: 67.4 diff --git a/themes/whiteboard.yaml b/themes/whiteboard.yaml index 3454d5b8..05c11f1c 100644 --- a/themes/whiteboard.yaml +++ b/themes/whiteboard.yaml @@ -2,7 +2,7 @@ name: "Whiteboard" source: marketplace_id: "jsm-dev.whiteboard-theme" version: "1.0.1" - installs: 244 + installs: 245 author: "jsm" repo: "https://github.com/jsm04/whiteboard-theme" url: "https://marketplace.visualstudio.com/items?itemName=jsm-dev.whiteboard-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 104.2 black: 97 diff --git a/themes/whitespace.yaml b/themes/whitespace.yaml index 30870873..0d0ae418 100644 --- a/themes/whitespace.yaml +++ b/themes/whitespace.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 100.5 black: 99.1 diff --git a/themes/wick.yaml b/themes/wick.yaml index 7cc2fb09..c46c59f1 100644 --- a/themes/wick.yaml +++ b/themes/wick.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 258 + pair: null contrast: fg: 57.5 black: 0 diff --git a/themes/wicked.yaml b/themes/wicked.yaml index ba6def67..e9a65283 100644 --- a/themes/wicked.yaml +++ b/themes/wicked.yaml @@ -1,49 +1,50 @@ name: "Wicked" source: - marketplace_id: "RoxasKi.positively-wicked" - version: "1.0.5" - installs: 27 - author: "RoxasKi" - repo: "https://github.com/Roxaski/positively-wicked" - url: "https://marketplace.visualstudio.com/items?itemName=RoxasKi.positively-wicked" + marketplace_id: "heartfeltdreamofbeing.wicked" + version: "0.1.1" + installs: 37 + author: "heartfeltdreamofbeing" + repo: "git:https://github.com/heartfeltdreamofbeing/wicked" + url: "https://marketplace.visualstudio.com/items?itemName=heartfeltdreamofbeing.wicked" colors: - bg: "#1A1A1A" - fg: "#E8E6E3" - black: "#1A1A1A" - red: "#7A4A2E" - green: "#52A249" - yellow: "#359816" - blue: "#4A7C59" - magenta: "#5D7C5D" - cyan: "#3D8B6B" - white: "#C9C6C6" - brightBlack: "#4E6E4A" - brightRed: "#8B5A3C" - brightGreen: "#6BC95D" - brightYellow: "#3FBB19" - brightBlue: "#5C9670" - brightMagenta: "#739973" - brightCyan: "#4DA882" - brightWhite: "#F1F0EE" + bg: "#001713" + fg: "#FF008F" + black: "#FFFFFF" + red: "#C40000" + green: "#036D00" + yellow: "#D94800" + blue: "#0010FF" + magenta: "#B8005E" + cyan: "#006D68" + white: "#000000" + brightBlack: "#EBF7FF" + brightRed: "#FF0000" + brightGreen: "#0EB400" + brightYellow: "#FF6C00" + brightBlue: "#3248FF" + brightMagenta: "#FF0083" + brightCyan: "#00AD95" + brightWhite: "#242424" meta: mode: "dark" - accent: "green" - hue: null + accent: "purple" + hue: 181 + pair: null contrast: - fg: 90.5 - black: 0 - red: 15.3 - green: 41.8 - yellow: 36.1 - blue: 26.7 - magenta: 28 - cyan: 32.3 - white: 71.2 - brightBlack: 21.7 - brightRed: 21.6 - brightGreen: 60.8 - brightYellow: 51.7 - brightBlue: 38.2 - brightMagenta: 41 - brightCyan: 45.4 - brightWhite: 96.8 + fg: 39 + black: 107.1 + red: 22.6 + green: 19.2 + yellow: 32.3 + blue: 15.6 + magenta: 21.1 + cyan: 20.7 + white: 0 + brightBlack: 100.6 + brightRed: 36.8 + brightGreen: 48.3 + brightYellow: 47.5 + brightBlue: 22.2 + brightMagenta: 38.6 + brightCyan: 47.3 + brightWhite: 0 diff --git a/themes/wiity-green-eye-friendly.yaml b/themes/wiity-green-eye-friendly.yaml index 4c3215c7..4380ba66 100644 --- a/themes/wiity-green-eye-friendly.yaml +++ b/themes/wiity-green-eye-friendly.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 145 + pair: null contrast: fg: 92.1 black: 0 diff --git a/themes/wiity-green.yaml b/themes/wiity-green.yaml index 314b9ee1..baa227b2 100644 --- a/themes/wiity-green.yaml +++ b/themes/wiity-green.yaml @@ -22,13 +22,14 @@ colors: brightGreen: "#33FF00" brightYellow: "#EEFF00" brightBlue: "#00E1FF" - brightMagenta: "#FF00FF" + brightMagenta: "#33FF00" brightCyan: "#00FFF7" brightWhite: "#BBFFAC" meta: mode: "dark" - accent: "pink" + accent: "green" hue: 145 + pair: null contrast: fg: 88.7 black: 0 @@ -44,6 +45,6 @@ meta: brightGreen: 86.6 brightYellow: 100.1 brightBlue: 76.8 - brightMagenta: 45.9 + brightMagenta: 86.6 brightCyan: 91.5 brightWhite: 96.3 diff --git a/themes/wild-flower.yaml b/themes/wild-flower.yaml index 2613c09f..a5ed4801 100644 --- a/themes/wild-flower.yaml +++ b/themes/wild-flower.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 35.1 black: 0 diff --git a/themes/wildtype.yaml b/themes/wildtype.yaml index 3cf7585d..339ef84a 100644 --- a/themes/wildtype.yaml +++ b/themes/wildtype.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 241 + pair: null contrast: fg: 73.1 black: 47.7 diff --git a/themes/wildwest.yaml b/themes/wildwest.yaml index e3afbfcf..138a4686 100644 --- a/themes/wildwest.yaml +++ b/themes/wildwest.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 235 + pair: null contrast: fg: 60.7 black: 0 diff --git a/themes/will-o-wisp-theme.yaml b/themes/will-o-wisp-theme.yaml index 2231d56b..52ddcbce 100644 --- a/themes/will-o-wisp-theme.yaml +++ b/themes/will-o-wisp-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 58.5 black: 21.9 diff --git a/themes/willasm-emerald-sky.yaml b/themes/willasm-emerald-sky.yaml index 80804acb..9806507d 100644 --- a/themes/willasm-emerald-sky.yaml +++ b/themes/willasm-emerald-sky.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 161 + pair: null contrast: fg: 80.2 black: 0 diff --git a/themes/willi-style-darker.yaml b/themes/willi-style-darker.yaml deleted file mode 100644 index dae88e57..00000000 --- a/themes/willi-style-darker.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Willi-Style Darker" -source: - marketplace_id: "wq.willi-style" - version: "0.0.4" - installs: 434 - author: "wQ" - repo: "https://github.com/iamstrawberry/willi-style" - url: "https://marketplace.visualstudio.com/items?itemName=wq.willi-style" -colors: - bg: "#111111" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 80 - black: 0 - red: 27.2 - green: 53.5 - yellow: 86.1 - blue: 27.9 - magenta: 30.3 - cyan: 48.1 - white: 90.5 - brightBlack: 22.5 - brightRed: 39.1 - brightGreen: 64 - brightYellow: 96.1 - brightBlue: 40.5 - brightMagenta: 45.9 - brightCyan: 55.9 - brightWhite: 90.5 diff --git a/themes/willi-style-darkest.yaml b/themes/willi-style-darkest.yaml deleted file mode 100644 index abd0ca11..00000000 --- a/themes/willi-style-darkest.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Willi-Style Darkest" -source: - marketplace_id: "wq.willi-style" - version: "0.0.4" - installs: 434 - author: "wQ" - repo: "https://github.com/iamstrawberry/willi-style" - url: "https://marketplace.visualstudio.com/items?itemName=wq.willi-style" -colors: - bg: "#000000" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 80.5 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/willi-style-dracula-flavour.yaml b/themes/willi-style-dracula-flavour.yaml index c1c97a96..e3cf6171 100644 --- a/themes/willi-style-dracula-flavour.yaml +++ b/themes/willi-style-dracula-flavour.yaml @@ -2,7 +2,7 @@ name: "Willi-Style Dracula flavour" source: marketplace_id: "wq.willi-style" version: "0.0.4" - installs: 434 + installs: 436 author: "wQ" repo: "https://github.com/iamstrawberry/willi-style" url: "https://marketplace.visualstudio.com/items?itemName=wq.willi-style" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 76.5 black: 0 diff --git a/themes/willow.yaml b/themes/willow.yaml index 03ae762f..a5d95808 100644 --- a/themes/willow.yaml +++ b/themes/willow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/win-xp-luna.yaml b/themes/win-xp-luna.yaml index 644bf172..b33d4499 100644 --- a/themes/win-xp-luna.yaml +++ b/themes/win-xp-luna.yaml @@ -2,7 +2,7 @@ name: "Win XP Luna" source: marketplace_id: "sinedied.vscode-windows-xp-theme" version: "0.1.5" - installs: 28277 + installs: 28284 author: "Yohan Lasorsa" repo: "https://github.com/sinedied/vscode-win-xp-theme" url: "https://marketplace.visualstudio.com/items?itemName=sinedied.vscode-windows-xp-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 59.1 diff --git a/themes/win10.yaml b/themes/win10.yaml index d33ffd39..ddd0e2af 100644 --- a/themes/win10.yaml +++ b/themes/win10.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 257 + pair: null contrast: fg: 107.2 black: 0 diff --git a/themes/winclassic.yaml b/themes/winclassic.yaml index b42400c9..2a7f5726 100644 --- a/themes/winclassic.yaml +++ b/themes/winclassic.yaml @@ -2,7 +2,7 @@ name: "WinClassic" source: marketplace_id: "disk0.win-classic-theme" version: "0.0.23" - installs: 5037 + installs: 5038 author: "disk0" repo: "https://github.com/disco0/win-classic-theme" url: "https://marketplace.visualstudio.com/items?itemName=disk0.win-classic-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 96.5 black: 96.5 diff --git a/themes/wind-dark-slate.yaml b/themes/wind-dark-slate.yaml index aebc33f2..aa860dd7 100644 --- a/themes/wind-dark-slate.yaml +++ b/themes/wind-dark-slate.yaml @@ -2,7 +2,7 @@ name: "Wind Dark Slate" source: marketplace_id: "calvinludwig.wind-theme" version: "1.0.0" - installs: 1681 + installs: 1682 author: "Calvin Ludwig" repo: "https://github.com/calvinludwig/wind-theme" url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 266 + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/wind-dark-zinc.yaml b/themes/wind-dark-zinc.yaml index d89f1cd2..ea11e9df 100644 --- a/themes/wind-dark-zinc.yaml +++ b/themes/wind-dark-zinc.yaml @@ -2,7 +2,7 @@ name: "Wind Dark Zinc" source: marketplace_id: "calvinludwig.wind-theme" version: "1.0.0" - installs: 1681 + installs: 1682 author: "Calvin Ludwig" repo: "https://github.com/calvinludwig/wind-theme" url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/wind.yaml b/themes/wind.yaml index 15e55f0f..fd5e232f 100644 --- a/themes/wind.yaml +++ b/themes/wind.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 267 + pair: null contrast: fg: 72.5 black: 0 diff --git a/themes/windows-95-theme.yaml b/themes/windows-95-theme.yaml index 65ae94a1..806b0fc2 100644 --- a/themes/windows-95-theme.yaml +++ b/themes/windows-95-theme.yaml @@ -2,7 +2,7 @@ name: "Windows 95 Theme" source: marketplace_id: "samwnr.Windows-95-Theme" version: "0.0.1" - installs: 2419 + installs: 2420 author: "samwnr" repo: null url: "https://marketplace.visualstudio.com/items?itemName=samwnr.Windows-95-Theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/windows-nt.yaml b/themes/windows-nt.yaml index 92ec6914..570ab8cb 100644 --- a/themes/windows-nt.yaml +++ b/themes/windows-nt.yaml @@ -2,7 +2,7 @@ name: "Windows NT" source: marketplace_id: "wassimdev.windows-nt-vscode-theme" version: "0.0.12" - installs: 26383 + installs: 26397 author: "Wassim Chegham" repo: "https://github.com/manekinekko/windows-nt-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=wassimdev.windows-nt-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/windows-xp-dark-luna.yaml b/themes/windows-xp-dark-luna.yaml index 10e80f74..e7bbff22 100644 --- a/themes/windows-xp-dark-luna.yaml +++ b/themes/windows-xp-dark-luna.yaml @@ -2,7 +2,7 @@ name: "Windows Xp Dark Luna" source: marketplace_id: "mssjim.windows-xp-dark" version: "1.0.1" - installs: 3362 + installs: 3366 author: "Mssjim" repo: "https://github.com/Mssjim/windows-xp-dark" url: "https://marketplace.visualstudio.com/items?itemName=mssjim.windows-xp-dark" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.2 black: 40.3 diff --git a/themes/windu.yaml b/themes/windu.yaml index 21e3beac..a3b6cf2f 100644 --- a/themes/windu.yaml +++ b/themes/windu.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 270 + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/windwaker.yaml b/themes/windwaker.yaml index 1fb47ad6..f1e08534 100644 --- a/themes/windwaker.yaml +++ b/themes/windwaker.yaml @@ -2,7 +2,7 @@ name: "Windwaker" source: marketplace_id: "endg4me.windwaker" version: "1.0.3" - installs: 182 + installs: 183 author: "Endg4me_" repo: "https://github.com/Endg4meZer0/Windwaker-VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=endg4me.windwaker" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 88.9 black: 0 diff --git a/themes/wine-garden.yaml b/themes/wine-garden.yaml index 0a7771e3..4293faca 100644 --- a/themes/wine-garden.yaml +++ b/themes/wine-garden.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 262 + pair: null contrast: fg: 57.1 black: 0 diff --git a/themes/winter-pearl.yaml b/themes/winter-pearl.yaml index 80d778cf..5b3ceb63 100644 --- a/themes/winter-pearl.yaml +++ b/themes/winter-pearl.yaml @@ -2,7 +2,7 @@ name: "Winter Pearl" source: marketplace_id: "suryashanm.winter-pearl-theme" version: "1.0.0" - installs: 2356 + installs: 2357 author: "suryashanm" repo: "https://github.com/suryashanm/winter-pearl" url: "https://marketplace.visualstudio.com/items?itemName=suryashanm.winter-pearl-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 88.4 black: 0 diff --git a/themes/winter.yaml b/themes/winter.yaml index c1611f64..42e31a7a 100644 --- a/themes/winter.yaml +++ b/themes/winter.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 268 + pair: null contrast: fg: 67.9 black: 0 diff --git a/themes/winteriscoding-gift.yaml b/themes/winteriscoding-gift.yaml index 412ce6b6..ccfcda5b 100644 --- a/themes/winteriscoding-gift.yaml +++ b/themes/winteriscoding-gift.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 106.8 black: 0 diff --git a/themes/winteriscoding.yaml b/themes/winteriscoding.yaml index 9963802e..02267658 100644 --- a/themes/winteriscoding.yaml +++ b/themes/winteriscoding.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 106.5 black: 0 diff --git a/themes/wired-lighter.yaml b/themes/wired-lighter.yaml index a9c6f0bb..22f93d3e 100644 --- a/themes/wired-lighter.yaml +++ b/themes/wired-lighter.yaml @@ -2,7 +2,7 @@ name: "wired lighter" source: marketplace_id: "minako.wired" version: "2.0.5" - installs: 4867 + installs: 4868 author: "minako" repo: "https://github.com/kayliese/wired" url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 267 + pair: null contrast: fg: 62 black: 0 diff --git a/themes/wired.yaml b/themes/wired.yaml index 963303b5..0d03a190 100644 --- a/themes/wired.yaml +++ b/themes/wired.yaml @@ -2,7 +2,7 @@ name: "wired" source: marketplace_id: "minako.wired" version: "2.0.5" - installs: 4867 + installs: 4868 author: "minako" repo: "https://github.com/kayliese/wired" url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 62.2 black: 0 diff --git a/themes/wise-owl-material-high-contrast.yaml b/themes/wise-owl-material-high-contrast.yaml index d88220ee..2ca18b40 100644 --- a/themes/wise-owl-material-high-contrast.yaml +++ b/themes/wise-owl-material-high-contrast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 86.2 black: 0 diff --git a/themes/wise-owl-material-light.yaml b/themes/wise-owl-material-light.yaml index add98085..869b022e 100644 --- a/themes/wise-owl-material-light.yaml +++ b/themes/wise-owl-material-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 92.7 black: 92.7 diff --git a/themes/wise-owl-material.yaml b/themes/wise-owl-material.yaml index f17674c5..46b605d0 100644 --- a/themes/wise-owl-material.yaml +++ b/themes/wise-owl-material.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 244 + pair: null contrast: fg: 85.3 black: 0 diff --git a/themes/wisteria.yaml b/themes/wisteria.yaml index f2fb212c..80992c90 100644 --- a/themes/wisteria.yaml +++ b/themes/wisteria.yaml @@ -2,7 +2,7 @@ name: "Wisteria" source: marketplace_id: "raleigh-hansen.wisteria-vscode" version: "1.0.1" - installs: 935 + installs: 936 author: "Raleigh Hansen" repo: "https://github.com/raleighsedona/wisteria-vscode" url: "https://marketplace.visualstudio.com/items?itemName=raleigh-hansen.wisteria-vscode" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 292 + pair: null contrast: fg: 60.4 black: 24.7 diff --git a/themes/witch-elaina.yaml b/themes/witch-elaina.yaml index 5440dc62..55647fbe 100644 --- a/themes/witch-elaina.yaml +++ b/themes/witch-elaina.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 305 + pair: null contrast: fg: 91.3 black: 0 diff --git a/themes/witcher.yaml b/themes/witcher.yaml index 789c269b..d903aac0 100644 --- a/themes/witcher.yaml +++ b/themes/witcher.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 258 + pair: null contrast: fg: 104.5 black: 14.3 diff --git a/themes/witchy-dark.yaml b/themes/witchy-dark.yaml index 8073f61a..edcb3064 100644 --- a/themes/witchy-dark.yaml +++ b/themes/witchy-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 331 + pair: null contrast: fg: 84.5 black: 0 diff --git a/themes/wl-acid-wash.yaml b/themes/wl-acid-wash.yaml index 56b9bd1b..5e9c4461 100644 --- a/themes/wl-acid-wash.yaml +++ b/themes/wl-acid-wash.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: 328 + pair: null contrast: fg: 39.5 black: 48.5 diff --git a/themes/wl-amber-monitor.yaml b/themes/wl-amber-monitor.yaml index e2dbb710..5c8ac1b8 100644 --- a/themes/wl-amber-monitor.yaml +++ b/themes/wl-amber-monitor.yaml @@ -2,7 +2,7 @@ name: "WL-Amber Monitor" source: marketplace_id: "WatkinsLabs.amber-monitor" version: "1.0.1" - installs: 125 + installs: 126 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.amber-monitor" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 104 black: 0 diff --git a/themes/wl-chrome-dreams.yaml b/themes/wl-chrome-dreams.yaml index 68374feb..a793ab94 100644 --- a/themes/wl-chrome-dreams.yaml +++ b/themes/wl-chrome-dreams.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 279 + pair: null contrast: fg: 92.4 black: 0 diff --git a/themes/wl-cosmic-drift.yaml b/themes/wl-cosmic-drift.yaml index be27f974..fd0d988f 100644 --- a/themes/wl-cosmic-drift.yaml +++ b/themes/wl-cosmic-drift.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 304 + pair: null contrast: fg: 78 black: 0 diff --git a/themes/wl-crystal-cave.yaml b/themes/wl-crystal-cave.yaml index 078e1caf..99f18403 100644 --- a/themes/wl-crystal-cave.yaml +++ b/themes/wl-crystal-cave.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 249 + pair: null contrast: fg: 92.5 black: 0 diff --git a/themes/wl-cyber-punk.yaml b/themes/wl-cyber-punk.yaml index 38b77fbc..d25861fa 100644 --- a/themes/wl-cyber-punk.yaml +++ b/themes/wl-cyber-punk.yaml @@ -2,7 +2,7 @@ name: "WL-Cyber Punk" source: marketplace_id: "WatkinsLabs.cyber-punk" version: "1.0.1" - installs: 457 + installs: 458 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.cyber-punk" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 285 + pair: null contrast: fg: 64.8 black: 0 diff --git a/themes/wl-data-stream.yaml b/themes/wl-data-stream.yaml index 3d50c6e0..8daae4ad 100644 --- a/themes/wl-data-stream.yaml +++ b/themes/wl-data-stream.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 264 + pair: null contrast: fg: 90.7 black: 18.2 diff --git a/themes/wl-disco-ball.yaml b/themes/wl-disco-ball.yaml index d0f3f9fd..cf1f56f6 100644 --- a/themes/wl-disco-ball.yaml +++ b/themes/wl-disco-ball.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/wl-electric-dreams.yaml b/themes/wl-electric-dreams.yaml index 75fb5fa0..3eea24d8 100644 --- a/themes/wl-electric-dreams.yaml +++ b/themes/wl-electric-dreams.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 283 + pair: null contrast: fg: 105.2 black: 0 diff --git a/themes/wl-electric-sunset.yaml b/themes/wl-electric-sunset.yaml index 3ec99be8..f41c5b7e 100644 --- a/themes/wl-electric-sunset.yaml +++ b/themes/wl-electric-sunset.yaml @@ -2,7 +2,7 @@ name: "WL-Electric Sunset" source: marketplace_id: "WatkinsLabs.electric-sunset" version: "1.0.1" - installs: 45 + installs: 46 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.electric-sunset" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 300 + pair: null contrast: fg: 63.4 black: 0 diff --git a/themes/wl-fusion-core.yaml b/themes/wl-fusion-core.yaml index c99980b9..0268da2d 100644 --- a/themes/wl-fusion-core.yaml +++ b/themes/wl-fusion-core.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 43.8 black: 0 diff --git a/themes/wl-graffiti-wall.yaml b/themes/wl-graffiti-wall.yaml index f8c1ffff..2ebf22c6 100644 --- a/themes/wl-graffiti-wall.yaml +++ b/themes/wl-graffiti-wall.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 284 + pair: null contrast: fg: 100.8 black: 0 diff --git a/themes/wl-hyper-drive.yaml b/themes/wl-hyper-drive.yaml index d91c7445..596328e2 100644 --- a/themes/wl-hyper-drive.yaml +++ b/themes/wl-hyper-drive.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 276 + pair: null contrast: fg: 100.7 black: 0 diff --git a/themes/wl-ink-splash.yaml b/themes/wl-ink-splash.yaml index fd5ec729..b4905467 100644 --- a/themes/wl-ink-splash.yaml +++ b/themes/wl-ink-splash.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/wl-jade-temple.yaml b/themes/wl-jade-temple.yaml index 11b2de93..ce4c6bba 100644 --- a/themes/wl-jade-temple.yaml +++ b/themes/wl-jade-temple.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 149 + pair: null contrast: fg: 83.9 black: 9 diff --git a/themes/wl-laser-grid.yaml b/themes/wl-laser-grid.yaml index 3d9722ea..b35c78c7 100644 --- a/themes/wl-laser-grid.yaml +++ b/themes/wl-laser-grid.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 285 + pair: null contrast: fg: 78 black: 0 diff --git a/themes/wl-lava-lamp.yaml b/themes/wl-lava-lamp.yaml index 506da311..cb12ad4d 100644 --- a/themes/wl-lava-lamp.yaml +++ b/themes/wl-lava-lamp.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 63 + pair: null contrast: fg: 68.7 black: 94.4 diff --git a/themes/wl-mainframe-blue.yaml b/themes/wl-mainframe-blue.yaml index 44405d41..e3730992 100644 --- a/themes/wl-mainframe-blue.yaml +++ b/themes/wl-mainframe-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 218 + pair: null contrast: fg: 104.2 black: 0 diff --git a/themes/wl-midnight-drive.yaml b/themes/wl-midnight-drive.yaml index 145998e7..a529be1b 100644 --- a/themes/wl-midnight-drive.yaml +++ b/themes/wl-midnight-drive.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/wl-misty-mountain.yaml b/themes/wl-misty-mountain.yaml index db47e4ab..238d78d8 100644 --- a/themes/wl-misty-mountain.yaml +++ b/themes/wl-misty-mountain.yaml @@ -2,7 +2,7 @@ name: "WL-Misty Mountain" source: marketplace_id: "WatkinsLabs.misty-mountain" version: "1.0.1" - installs: 30 + installs: 31 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.misty-mountain" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 149 + pair: null contrast: fg: 97.9 black: 0 diff --git a/themes/wl-moon-phase.yaml b/themes/wl-moon-phase.yaml index 55f558b0..27384cfe 100644 --- a/themes/wl-moon-phase.yaml +++ b/themes/wl-moon-phase.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 284 + pair: null contrast: fg: 81.9 black: 0 diff --git a/themes/wl-neon-cascade.yaml b/themes/wl-neon-cascade.yaml index 40dc22e7..06177a66 100644 --- a/themes/wl-neon-cascade.yaml +++ b/themes/wl-neon-cascade.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 91.5 black: 0 diff --git a/themes/wl-neon-sign.yaml b/themes/wl-neon-sign.yaml index 5dd5fcff..d581e21a 100644 --- a/themes/wl-neon-sign.yaml +++ b/themes/wl-neon-sign.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/wl-neon-tokyo.yaml b/themes/wl-neon-tokyo.yaml index 05de8a5d..2afd3a1c 100644 --- a/themes/wl-neon-tokyo.yaml +++ b/themes/wl-neon-tokyo.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 283 + pair: null contrast: fg: 86.3 black: 0 diff --git a/themes/wl-nova-burst.yaml b/themes/wl-nova-burst.yaml index 9738574c..e75bb880 100644 --- a/themes/wl-nova-burst.yaml +++ b/themes/wl-nova-burst.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/wl-pixel-punch.yaml b/themes/wl-pixel-punch.yaml index 073c2162..9770769f 100644 --- a/themes/wl-pixel-punch.yaml +++ b/themes/wl-pixel-punch.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/wl-plasma-storm.yaml b/themes/wl-plasma-storm.yaml index 8a6b64fb..30bef273 100644 --- a/themes/wl-plasma-storm.yaml +++ b/themes/wl-plasma-storm.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 317 + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/wl-pulse-wave.yaml b/themes/wl-pulse-wave.yaml index 66a5ca4b..f865ffa8 100644 --- a/themes/wl-pulse-wave.yaml +++ b/themes/wl-pulse-wave.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 280 + pair: null contrast: fg: 105.2 black: 0 diff --git a/themes/wl-retro-arcade.yaml b/themes/wl-retro-arcade.yaml index 4e0846e2..af83cd49 100644 --- a/themes/wl-retro-arcade.yaml +++ b/themes/wl-retro-arcade.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 244 + pair: null contrast: fg: 94.3 black: 0 diff --git a/themes/wl-retro-future.yaml b/themes/wl-retro-future.yaml index 3420f9c0..8751737a 100644 --- a/themes/wl-retro-future.yaml +++ b/themes/wl-retro-future.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 256 + pair: null contrast: fg: 54.9 black: 0 diff --git a/themes/wl-signal-wave.yaml b/themes/wl-signal-wave.yaml index d7d290b1..db8cfaac 100644 --- a/themes/wl-signal-wave.yaml +++ b/themes/wl-signal-wave.yaml @@ -2,7 +2,7 @@ name: "WL-Signal Wave" source: marketplace_id: "WatkinsLabs.signal-wave" version: "1.0.1" - installs: 40 + installs: 41 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.signal-wave" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 89.6 black: 0 diff --git a/themes/wl-silk-road.yaml b/themes/wl-silk-road.yaml index bd61565c..e8fdb634 100644 --- a/themes/wl-silk-road.yaml +++ b/themes/wl-silk-road.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 69 + pair: null contrast: fg: 60.5 black: 80.4 diff --git a/themes/wl-tape-deck.yaml b/themes/wl-tape-deck.yaml index 78dcc5d9..944e1d9f 100644 --- a/themes/wl-tape-deck.yaml +++ b/themes/wl-tape-deck.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 64 + pair: null contrast: fg: 69.3 black: 12 diff --git a/themes/wl-terminal-green.yaml b/themes/wl-terminal-green.yaml index 8aec98ff..840c22c4 100644 --- a/themes/wl-terminal-green.yaml +++ b/themes/wl-terminal-green.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/wl-vacuum-glow.yaml b/themes/wl-vacuum-glow.yaml index 87c4c04d..3934defe 100644 --- a/themes/wl-vacuum-glow.yaml +++ b/themes/wl-vacuum-glow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 63 + pair: null contrast: fg: 60 black: 0 diff --git a/themes/wl-velvet-night.yaml b/themes/wl-velvet-night.yaml index 12f6213c..77f6c40f 100644 --- a/themes/wl-velvet-night.yaml +++ b/themes/wl-velvet-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 300 + pair: null contrast: fg: 106.2 black: 0 diff --git a/themes/wl-volt-surge.yaml b/themes/wl-volt-surge.yaml index 7207da4a..4bdb99da 100644 --- a/themes/wl-volt-surge.yaml +++ b/themes/wl-volt-surge.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/wl-zen-twilight.yaml b/themes/wl-zen-twilight.yaml index c2216b8d..ed42d0e3 100644 --- a/themes/wl-zen-twilight.yaml +++ b/themes/wl-zen-twilight.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 60 + pair: null contrast: fg: 74.5 black: 22.2 diff --git a/themes/wolves-league-dark.yaml b/themes/wolves-league-dark.yaml index 7f7ac095..2aad037a 100644 --- a/themes/wolves-league-dark.yaml +++ b/themes/wolves-league-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 67 black: 0 diff --git a/themes/woodsmoke.yaml b/themes/woodsmoke.yaml index c3d13e07..d3003e43 100644 --- a/themes/woodsmoke.yaml +++ b/themes/woodsmoke.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 101.9 black: 0 diff --git a/themes/wookie.yaml b/themes/wookie.yaml index 6f513771..19b83534 100644 --- a/themes/wookie.yaml +++ b/themes/wookie.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 43.1 black: 0 diff --git a/themes/word-color-theme.yaml b/themes/word-color-theme.yaml index 470070cc..e37e75cc 100644 --- a/themes/word-color-theme.yaml +++ b/themes/word-color-theme.yaml @@ -2,7 +2,7 @@ name: "word-color-theme" source: marketplace_id: "coastermcgee.word-theme" version: "1.3.6" - installs: 54117 + installs: 54172 author: "Coaster McGee" repo: "https://github.com/coastermcgee/vscode-word-theme" url: "https://marketplace.visualstudio.com/items?itemName=coastermcgee.word-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 100.3 black: 0 diff --git a/themes/word-dark-theme.yaml b/themes/word-dark-theme.yaml index f50fc2ec..f8dfb97c 100644 --- a/themes/word-dark-theme.yaml +++ b/themes/word-dark-theme.yaml @@ -1,17 +1,17 @@ name: "word-dark-theme" source: - marketplace_id: "simen.theme-simen" - version: "1.2.0" - installs: 54 - author: "simen" - repo: "https://github.com/microsoft/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=simen.theme-simen" + marketplace_id: "huacat.office-theme" + version: "1.4.1" + installs: 75529 + author: "huacat" + repo: "https://github.com/huacat1017/huacat.office-theme" + url: "https://marketplace.visualstudio.com/items?itemName=huacat.office-theme" colors: bg: "#262626" fg: "#F6F6F6" black: "#000000" red: "#ED7D31" - green: "#FFFFFF" + green: "#70AD47" yellow: "#FFC000" blue: "#7FA5F9" magenta: "#C19DEC" @@ -29,11 +29,12 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 98.9 black: 0 red: 45.8 - green: 104.8 + green: 46.5 yellow: 71.7 blue: 51.3 magenta: 54.6 diff --git a/themes/wordsmith-dark.yaml b/themes/wordsmith-dark.yaml index 70b58208..7b7b3225 100644 --- a/themes/wordsmith-dark.yaml +++ b/themes/wordsmith-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "blue" hue: null + pair: "Wordsmith Light" contrast: fg: 74.3 black: 0 diff --git a/themes/wordsmith-light.yaml b/themes/wordsmith-light.yaml index c0cbb32f..aa29799c 100644 --- a/themes/wordsmith-light.yaml +++ b/themes/wordsmith-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Wordsmith Dark" contrast: fg: 99.5 black: 0 diff --git a/themes/wuthering-waves-aemeath-dark.yaml b/themes/wuthering-waves-aemeath-dark.yaml index 688fb562..5f8ddcda 100644 --- a/themes/wuthering-waves-aemeath-dark.yaml +++ b/themes/wuthering-waves-aemeath-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Aemeath (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 338 + pair: null contrast: fg: 95.6 black: 0 diff --git a/themes/wuthering-waves-aemeath.yaml b/themes/wuthering-waves-aemeath.yaml index 17b05458..2821d57b 100644 --- a/themes/wuthering-waves-aemeath.yaml +++ b/themes/wuthering-waves-aemeath.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Aemeath" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 97 black: 97 diff --git a/themes/wuthering-waves-augusta-dark.yaml b/themes/wuthering-waves-augusta-dark.yaml index d8910ed4..b388ceb1 100644 --- a/themes/wuthering-waves-augusta-dark.yaml +++ b/themes/wuthering-waves-augusta-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Augusta (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 96.9 black: 0 diff --git a/themes/wuthering-waves-augusta.yaml b/themes/wuthering-waves-augusta.yaml index a94e2b89..1df66440 100644 --- a/themes/wuthering-waves-augusta.yaml +++ b/themes/wuthering-waves-augusta.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Augusta" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.3 black: 101.3 diff --git a/themes/wuthering-waves-baizhi-dark.yaml b/themes/wuthering-waves-baizhi-dark.yaml index a3225848..e17ee7cb 100644 --- a/themes/wuthering-waves-baizhi-dark.yaml +++ b/themes/wuthering-waves-baizhi-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Baizhi (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 96.1 black: 0 diff --git a/themes/wuthering-waves-baizhi.yaml b/themes/wuthering-waves-baizhi.yaml index 596610f0..ad9d0496 100644 --- a/themes/wuthering-waves-baizhi.yaml +++ b/themes/wuthering-waves-baizhi.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Baizhi" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.9 black: 102.9 diff --git a/themes/wuthering-waves-brant-dark.yaml b/themes/wuthering-waves-brant-dark.yaml index bded9304..fc16863e 100644 --- a/themes/wuthering-waves-brant-dark.yaml +++ b/themes/wuthering-waves-brant-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Brant (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 270 + pair: null contrast: fg: 82.4 black: 0 diff --git a/themes/wuthering-waves-brant.yaml b/themes/wuthering-waves-brant.yaml index 9406bc6e..4eb5843f 100644 --- a/themes/wuthering-waves-brant.yaml +++ b/themes/wuthering-waves-brant.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Brant" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 101.5 black: 101.5 diff --git a/themes/wuthering-waves-cantarella-dark.yaml b/themes/wuthering-waves-cantarella-dark.yaml index 73dbbd99..b45313b0 100644 --- a/themes/wuthering-waves-cantarella-dark.yaml +++ b/themes/wuthering-waves-cantarella-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Cantarella (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 283 + pair: null contrast: fg: 69 black: 0 diff --git a/themes/wuthering-waves-cantarella.yaml b/themes/wuthering-waves-cantarella.yaml index 0f6f8a6e..de620424 100644 --- a/themes/wuthering-waves-cantarella.yaml +++ b/themes/wuthering-waves-cantarella.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Cantarella" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 90.6 black: 90.6 diff --git a/themes/wuthering-waves-carlotta-dark.yaml b/themes/wuthering-waves-carlotta-dark.yaml index 081b34e0..4fdacd58 100644 --- a/themes/wuthering-waves-carlotta-dark.yaml +++ b/themes/wuthering-waves-carlotta-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Carlotta (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 348 + pair: null contrast: fg: 91 black: 0 diff --git a/themes/wuthering-waves-carlotta.yaml b/themes/wuthering-waves-carlotta.yaml index 74ddfd61..0895cde0 100644 --- a/themes/wuthering-waves-carlotta.yaml +++ b/themes/wuthering-waves-carlotta.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Carlotta" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 103.5 black: 103.5 diff --git a/themes/wuthering-waves-cartethyia-dark.yaml b/themes/wuthering-waves-cartethyia-dark.yaml index 0d038fb3..b6833757 100644 --- a/themes/wuthering-waves-cartethyia-dark.yaml +++ b/themes/wuthering-waves-cartethyia-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Cartethyia (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 246 + pair: null contrast: fg: 90.4 black: 0 diff --git a/themes/wuthering-waves-cartethyia.yaml b/themes/wuthering-waves-cartethyia.yaml index f5b0244e..21ee7b3f 100644 --- a/themes/wuthering-waves-cartethyia.yaml +++ b/themes/wuthering-waves-cartethyia.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Cartethyia" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 95.3 black: 95.3 diff --git a/themes/wuthering-waves-changli-dark.yaml b/themes/wuthering-waves-changli-dark.yaml index 1b465557..8ce4c334 100644 --- a/themes/wuthering-waves-changli-dark.yaml +++ b/themes/wuthering-waves-changli-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Changli (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 93.6 black: 0 diff --git a/themes/wuthering-waves-changli.yaml b/themes/wuthering-waves-changli.yaml index 3bd4dfec..2e6e9f52 100644 --- a/themes/wuthering-waves-changli.yaml +++ b/themes/wuthering-waves-changli.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Changli" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.8 black: 97.3 diff --git a/themes/wuthering-waves-chisa-dark.yaml b/themes/wuthering-waves-chisa-dark.yaml index 6e6c16f0..94786676 100644 --- a/themes/wuthering-waves-chisa-dark.yaml +++ b/themes/wuthering-waves-chisa-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Chisa (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 97.4 black: 0 diff --git a/themes/wuthering-waves-chisa.yaml b/themes/wuthering-waves-chisa.yaml index c0b29e8f..e55d8bfe 100644 --- a/themes/wuthering-waves-chisa.yaml +++ b/themes/wuthering-waves-chisa.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Chisa" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 100.4 black: 100.4 diff --git a/themes/wuthering-waves-galbrena-dark.yaml b/themes/wuthering-waves-galbrena-dark.yaml index 833705aa..f891f56f 100644 --- a/themes/wuthering-waves-galbrena-dark.yaml +++ b/themes/wuthering-waves-galbrena-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Galbrena (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 96.5 black: 0 diff --git a/themes/wuthering-waves-galbrena.yaml b/themes/wuthering-waves-galbrena.yaml index 03830e9a..a8ea60d3 100644 --- a/themes/wuthering-waves-galbrena.yaml +++ b/themes/wuthering-waves-galbrena.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Galbrena" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "indigo" hue: null + pair: null contrast: fg: 102.4 black: 102.4 diff --git a/themes/wuthering-waves-iuno-dark.yaml b/themes/wuthering-waves-iuno-dark.yaml index 1169c043..dfdd3131 100644 --- a/themes/wuthering-waves-iuno-dark.yaml +++ b/themes/wuthering-waves-iuno-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Iuno (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 87.4 black: 0 diff --git a/themes/wuthering-waves-iuno.yaml b/themes/wuthering-waves-iuno.yaml index e245a7cf..f5e6960f 100644 --- a/themes/wuthering-waves-iuno.yaml +++ b/themes/wuthering-waves-iuno.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Iuno" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.5 black: 99.5 diff --git a/themes/wuthering-waves-jinhsi.yaml b/themes/wuthering-waves-jinhsi.yaml index 336645c4..b45c3a4e 100644 --- a/themes/wuthering-waves-jinhsi.yaml +++ b/themes/wuthering-waves-jinhsi.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Jinhsi" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.4 black: 98.4 diff --git a/themes/wuthering-waves-lynae-dark.yaml b/themes/wuthering-waves-lynae-dark.yaml index 90c3bc7f..b2dbc8d4 100644 --- a/themes/wuthering-waves-lynae-dark.yaml +++ b/themes/wuthering-waves-lynae-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Lynae (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 269 + pair: null contrast: fg: 82.3 black: 0 diff --git a/themes/wuthering-waves-lynae.yaml b/themes/wuthering-waves-lynae.yaml index db143ae8..b7ec5168 100644 --- a/themes/wuthering-waves-lynae.yaml +++ b/themes/wuthering-waves-lynae.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Lynae" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 94.9 black: 94.9 diff --git a/themes/wuthering-waves-mornye-dark.yaml b/themes/wuthering-waves-mornye-dark.yaml index 4e6a755b..5c057498 100644 --- a/themes/wuthering-waves-mornye-dark.yaml +++ b/themes/wuthering-waves-mornye-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Mornye (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 305 + pair: null contrast: fg: 99.2 black: 0 diff --git a/themes/wuthering-waves-mornye.yaml b/themes/wuthering-waves-mornye.yaml index b73ef213..645a20cd 100644 --- a/themes/wuthering-waves-mornye.yaml +++ b/themes/wuthering-waves-mornye.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Mornye" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 100.8 black: 100.8 diff --git a/themes/wuthering-waves-roccia-dark.yaml b/themes/wuthering-waves-roccia-dark.yaml index 06511b1f..09657336 100644 --- a/themes/wuthering-waves-roccia-dark.yaml +++ b/themes/wuthering-waves-roccia-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Roccia (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 326 + pair: null contrast: fg: 95.6 black: 0 diff --git a/themes/wuthering-waves-roccia.yaml b/themes/wuthering-waves-roccia.yaml index a3200955..f1430dd8 100644 --- a/themes/wuthering-waves-roccia.yaml +++ b/themes/wuthering-waves-roccia.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Roccia" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 102.6 black: 102.6 diff --git a/themes/wuthering-waves-rover.yaml b/themes/wuthering-waves-rover.yaml index 2d43e035..e18c4275 100644 --- a/themes/wuthering-waves-rover.yaml +++ b/themes/wuthering-waves-rover.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Rover" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 100.3 black: 100.3 diff --git a/themes/wuthering-waves-sanhua-dark.yaml b/themes/wuthering-waves-sanhua-dark.yaml index df076721..b05cdf02 100644 --- a/themes/wuthering-waves-sanhua-dark.yaml +++ b/themes/wuthering-waves-sanhua-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Sanhua (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 96.6 black: 0 diff --git a/themes/wuthering-waves-sanhua.yaml b/themes/wuthering-waves-sanhua.yaml index e3da3bac..1abf37b1 100644 --- a/themes/wuthering-waves-sanhua.yaml +++ b/themes/wuthering-waves-sanhua.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Sanhua" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.9 black: 102.9 diff --git a/themes/wuthering-waves-scar-dark.yaml b/themes/wuthering-waves-scar-dark.yaml index dff89699..9a35a05a 100644 --- a/themes/wuthering-waves-scar-dark.yaml +++ b/themes/wuthering-waves-scar-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Scar (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.6 black: 0 diff --git a/themes/wuthering-waves-scar.yaml b/themes/wuthering-waves-scar.yaml index 44b86145..41899808 100644 --- a/themes/wuthering-waves-scar.yaml +++ b/themes/wuthering-waves-scar.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Scar" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.7 black: 97.7 diff --git a/themes/wuthering-waves-taoqi.yaml b/themes/wuthering-waves-taoqi.yaml index 0f4d9633..aaf97fe6 100644 --- a/themes/wuthering-waves-taoqi.yaml +++ b/themes/wuthering-waves-taoqi.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Taoqi" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 101.4 black: 101.4 diff --git a/themes/wuthering-waves-the-shorekeeper-dark.yaml b/themes/wuthering-waves-the-shorekeeper-dark.yaml index 1ea428d9..dc92dd0c 100644 --- a/themes/wuthering-waves-the-shorekeeper-dark.yaml +++ b/themes/wuthering-waves-the-shorekeeper-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : The Shorekeeper (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 248 + pair: null contrast: fg: 91.3 black: 0 diff --git a/themes/wuthering-waves-the-shorekeeper.yaml b/themes/wuthering-waves-the-shorekeeper.yaml index cfc9d470..7207cfb4 100644 --- a/themes/wuthering-waves-the-shorekeeper.yaml +++ b/themes/wuthering-waves-the-shorekeeper.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : The Shorekeeper" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 80.6 black: 80.6 diff --git a/themes/wuthering-waves-verina-dark.yaml b/themes/wuthering-waves-verina-dark.yaml index ef3fc2c6..85668bea 100644 --- a/themes/wuthering-waves-verina-dark.yaml +++ b/themes/wuthering-waves-verina-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Verina (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 98.7 black: 0 diff --git a/themes/wuthering-waves-verina.yaml b/themes/wuthering-waves-verina.yaml index 90f0c45d..a7e49e9c 100644 --- a/themes/wuthering-waves-verina.yaml +++ b/themes/wuthering-waves-verina.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Verina" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 100.4 black: 100.4 diff --git a/themes/wuthering-waves-yinlin-dark.yaml b/themes/wuthering-waves-yinlin-dark.yaml index 173c0b61..30546bdb 100644 --- a/themes/wuthering-waves-yinlin-dark.yaml +++ b/themes/wuthering-waves-yinlin-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Yinlin (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 315 + pair: null contrast: fg: 94.9 black: 0 diff --git a/themes/wuthering-waves-yinlin.yaml b/themes/wuthering-waves-yinlin.yaml index 2fde89d9..d9d9374f 100644 --- a/themes/wuthering-waves-yinlin.yaml +++ b/themes/wuthering-waves-yinlin.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Yinlin" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.6 black: 102.6 diff --git a/themes/wuthering-waves-zhezhi-dark.yaml b/themes/wuthering-waves-zhezhi-dark.yaml index 5b44c4fa..6572e127 100644 --- a/themes/wuthering-waves-zhezhi-dark.yaml +++ b/themes/wuthering-waves-zhezhi-dark.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Zhezhi (Dark)" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 99.7 black: 0 diff --git a/themes/wuthering-waves-zhezhi.yaml b/themes/wuthering-waves-zhezhi.yaml index 474be683..d60c1fdd 100644 --- a/themes/wuthering-waves-zhezhi.yaml +++ b/themes/wuthering-waves-zhezhi.yaml @@ -2,7 +2,7 @@ name: "Wuthering Waves : Zhezhi" source: marketplace_id: "frostmoon-dev.wuwa-themes" version: "1.0.7" - installs: 120 + installs: 123 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/wuwa-themes" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 102.1 black: 102.1 diff --git a/themes/wye-black.yaml b/themes/wye-black.yaml index eff8f543..8abce39f 100644 --- a/themes/wye-black.yaml +++ b/themes/wye-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Wye Light" contrast: fg: 91 black: 0 diff --git a/themes/wye-dark-soft.yaml b/themes/wye-dark-soft.yaml index 5bb139fd..f89a51b3 100644 --- a/themes/wye-dark-soft.yaml +++ b/themes/wye-dark-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Wye Light Soft" contrast: fg: 88.6 black: 0 diff --git a/themes/wye-dark.yaml b/themes/wye-dark.yaml index 4366dfe6..497ef674 100644 --- a/themes/wye-dark.yaml +++ b/themes/wye-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 90.2 black: 0 diff --git a/themes/wye-light-soft.yaml b/themes/wye-light-soft.yaml index 5687ce70..9fa3baf0 100644 --- a/themes/wye-light-soft.yaml +++ b/themes/wye-light-soft.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "Wye Dark Soft" contrast: fg: 87.4 black: 95.9 diff --git a/themes/wye-light.yaml b/themes/wye-light.yaml index 6c5bd936..a98a752d 100644 --- a/themes/wye-light.yaml +++ b/themes/wye-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: "Wye Black" contrast: fg: 96.5 black: 104.9 diff --git a/themes/xaeon-dark.yaml b/themes/xaeon-dark.yaml index c31564fe..ecaed26f 100644 --- a/themes/xaeon-dark.yaml +++ b/themes/xaeon-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 287 + pair: null contrast: fg: 41 black: 0 diff --git a/themes/xaidozy-color.yaml b/themes/xaidozy-color.yaml index a9349586..a5289a60 100644 --- a/themes/xaidozy-color.yaml +++ b/themes/xaidozy-color.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 86 black: 0 diff --git a/themes/xanthron-light.yaml b/themes/xanthron-light.yaml index 7a7a58b5..198d6c6a 100644 --- a/themes/xanthron-light.yaml +++ b/themes/xanthron-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 103.1 black: 103.1 diff --git a/themes/xava-color-theme.yaml b/themes/xava-color-theme.yaml index 68b3dba9..9b36c5b0 100644 --- a/themes/xava-color-theme.yaml +++ b/themes/xava-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 104.5 black: 0 diff --git a/themes/xceodark.yaml b/themes/xceodark.yaml index 88873efc..cff5729e 100644 --- a/themes/xceodark.yaml +++ b/themes/xceodark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 77.3 black: 0 diff --git a/themes/xcode-dark.yaml b/themes/xcode-dark.yaml index 83c8622b..3645944e 100644 --- a/themes/xcode-dark.yaml +++ b/themes/xcode-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 57.6 black: 0 diff --git a/themes/xecoy-dark.yaml b/themes/xecoy-dark.yaml index ac6d8100..d464627d 100644 --- a/themes/xecoy-dark.yaml +++ b/themes/xecoy-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: "Xecoy Light" contrast: fg: 73.7 black: 0 diff --git a/themes/xecoy-light.yaml b/themes/xecoy-light.yaml index a823308e..504a10b0 100644 --- a/themes/xecoy-light.yaml +++ b/themes/xecoy-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: "Xecoy Dark" contrast: fg: 98.7 black: 0 diff --git a/themes/xiali-vintage-rose-dark.yaml b/themes/xiali-vintage-rose-dark.yaml index c2143945..1a5b7c6e 100644 --- a/themes/xiali-vintage-rose-dark.yaml +++ b/themes/xiali-vintage-rose-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 5 + pair: "Xiali Vintage Rose Light" contrast: fg: 77 black: 0 diff --git a/themes/xiali-vintage-rose-light.yaml b/themes/xiali-vintage-rose-light.yaml index ee3adb72..c6d35432 100644 --- a/themes/xiali-vintage-rose-light.yaml +++ b/themes/xiali-vintage-rose-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Xiali Vintage Rose Dark" contrast: fg: 95.4 black: 95.4 diff --git a/themes/xis-one.yaml b/themes/xis-one.yaml index 1314d7e4..d271c777 100644 --- a/themes/xis-one.yaml +++ b/themes/xis-one.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 58.1 black: 7.6 diff --git a/themes/xk-dark-catppuccin-mocha.yaml b/themes/xk-dark-catppuccin-mocha.yaml index 568fa420..15b8aadb 100644 --- a/themes/xk-dark-catppuccin-mocha.yaml +++ b/themes/xk-dark-catppuccin-mocha.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 80 black: 0 diff --git a/themes/xk-dark-dracula.yaml b/themes/xk-dark-dracula.yaml index f714cb78..a86616a0 100644 --- a/themes/xk-dark-dracula.yaml +++ b/themes/xk-dark-dracula.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 278 + pair: null contrast: fg: 99 black: 0 diff --git a/themes/xk-dark-gruvbox.yaml b/themes/xk-dark-gruvbox.yaml index 48a9583b..90241749 100644 --- a/themes/xk-dark-gruvbox.yaml +++ b/themes/xk-dark-gruvbox.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.3 black: 0 diff --git a/themes/xk-dark-monokai-pro.yaml b/themes/xk-dark-monokai-pro.yaml index 1f4ec35a..e0190309 100644 --- a/themes/xk-dark-monokai-pro.yaml +++ b/themes/xk-dark-monokai-pro.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.8 black: 0 diff --git a/themes/xk-dark-tokyo-night.yaml b/themes/xk-dark-tokyo-night.yaml index e1bcc145..6fa66518 100644 --- a/themes/xk-dark-tokyo-night.yaml +++ b/themes/xk-dark-tokyo-night.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 281 + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/xk-light-catppuccin-latte.yaml b/themes/xk-light-catppuccin-latte.yaml index 8c25d477..9c838d07 100644 --- a/themes/xk-light-catppuccin-latte.yaml +++ b/themes/xk-light-catppuccin-latte.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 85.5 black: 97.6 diff --git a/themes/xk-light-github.yaml b/themes/xk-light-github.yaml index f63976aa..1a3ace57 100644 --- a/themes/xk-light-github.yaml +++ b/themes/xk-light-github.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 102.8 black: 106 diff --git a/themes/xk-light-one.yaml b/themes/xk-light-one.yaml index f2355be0..7d15747f 100644 --- a/themes/xk-light-one.yaml +++ b/themes/xk-light-one.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 97.7 black: 103 diff --git a/themes/xk-light-ros-pine.yaml b/themes/xk-light-ros-pine.yaml index 0cbb3501..83153246 100644 --- a/themes/xk-light-ros-pine.yaml +++ b/themes/xk-light-ros-pine.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 89.4 black: 100 diff --git a/themes/xk-light-solarized.yaml b/themes/xk-light-solarized.yaml index c45d0318..4d4818af 100644 --- a/themes/xk-light-solarized.yaml +++ b/themes/xk-light-solarized.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 93.7 black: 100.8 diff --git a/themes/xlumielvscodetheme.yaml b/themes/xlumielvscodetheme.yaml index af86e408..a94dc87f 100644 --- a/themes/xlumielvscodetheme.yaml +++ b/themes/xlumielvscodetheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 44 black: 0 diff --git a/themes/xochil.yaml b/themes/xochil.yaml index c7e5e324..337175c7 100644 --- a/themes/xochil.yaml +++ b/themes/xochil.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 249 + pair: null contrast: fg: 78 black: 0 diff --git a/themes/xotopio.yaml b/themes/xotopio.yaml index 9bd9a99a..7cb5d836 100644 --- a/themes/xotopio.yaml +++ b/themes/xotopio.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.3 black: 88 diff --git a/themes/xpyjs-black.yaml b/themes/xpyjs-black.yaml index f9337ce4..674158aa 100644 --- a/themes/xpyjs-black.yaml +++ b/themes/xpyjs-black.yaml @@ -2,7 +2,7 @@ name: "Xpyjs Black" source: marketplace_id: "xpyjs.xpyjs-theme" version: "0.0.3" - installs: 34 + installs: 35 author: "xpyjs" repo: "https://github.com/xpyjs/vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=xpyjs.xpyjs-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 82.3 black: 0 diff --git a/themes/xresources-bordered-dark.yaml b/themes/xresources-bordered-dark.yaml deleted file mode 100644 index 2b5efd30..00000000 --- a/themes/xresources-bordered-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "xresources_bordered_dark" -source: - marketplace_id: "NekkiNeks.xresources-theme-plus" - version: "2.0.1" - installs: 22 - author: "NekkiNeks" - repo: "https://github.com/NekkiNeks/xresources-theme-plus" - url: "https://marketplace.visualstudio.com/items?itemName=NekkiNeks.xresources-theme-plus" -colors: - bg: "#000000" - fg: "#EAEAEA" - black: "#232323" - red: "#B30303" - green: "#8AB800" - yellow: "#DC4904" - blue: "#2527CE" - magenta: "#B20B6D" - cyan: "#277890" - white: "#AFAFAF" - brightBlack: "#4D4D4D" - brightRed: "#FF0100" - brightGreen: "#BAF602" - brightYellow: "#FD6C13" - brightBlue: "#2E31FC" - brightMagenta: "#F01294" - brightCyan: "#3BB1D4" - brightWhite: "#D6D6D6" -meta: - mode: "dark" - accent: "purple" - hue: null - contrast: - fg: 94.2 - black: 0 - red: 19.7 - green: 56 - yellow: 33.9 - blue: 12.4 - magenta: 21.1 - cyan: 27.2 - white: 59 - brightBlack: 13.1 - brightRed: 37.5 - brightGreen: 89.7 - brightYellow: 47.9 - brightBlue: 19 - brightMagenta: 36.5 - brightCyan: 53.4 - brightWhite: 81.7 diff --git a/themes/xresources-bordered-mixed.yaml b/themes/xresources-bordered-mixed.yaml deleted file mode 100644 index e494edbb..00000000 --- a/themes/xresources-bordered-mixed.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "xresources_bordered_mixed" -source: - marketplace_id: "NekkiNeks.xresources-theme-plus" - version: "2.0.1" - installs: 22 - author: "NekkiNeks" - repo: "https://github.com/NekkiNeks/xresources-theme-plus" - url: "https://marketplace.visualstudio.com/items?itemName=NekkiNeks.xresources-theme-plus" -colors: - bg: "#000000" - fg: "#EAEAEA" - black: "#000000" - red: "#B30303" - green: "#8AB800" - yellow: "#DC4904" - blue: "#2527CE" - magenta: "#B20B6D" - cyan: "#277890" - white: "#AFAFAF" - brightBlack: "#4D4D4D" - brightRed: "#FF0100" - brightGreen: "#BAF602" - brightYellow: "#FD6C13" - brightBlue: "#2E31FC" - brightMagenta: "#F01294" - brightCyan: "#3BB1D4" - brightWhite: "#D6D6D6" -meta: - mode: "dark" - accent: "purple" - hue: null - contrast: - fg: 94.2 - black: 0 - red: 19.7 - green: 56 - yellow: 33.9 - blue: 12.4 - magenta: 21.1 - cyan: 27.2 - white: 59 - brightBlack: 13.1 - brightRed: 37.5 - brightGreen: 89.7 - brightYellow: 47.9 - brightBlue: 19 - brightMagenta: 36.5 - brightCyan: 53.4 - brightWhite: 81.7 diff --git a/themes/xresources-bordered.yaml b/themes/xresources-bordered.yaml index 5ee0c762..282bd903 100644 --- a/themes/xresources-bordered.yaml +++ b/themes/xresources-bordered.yaml @@ -1,49 +1,50 @@ -name: "xresources-bordered" +name: "xresources_bordered" source: - marketplace_id: "JackVandergriff.xresources-theme" - version: "1.1.0" - installs: 1524 - author: "Jack Vandergriff" - repo: "https://github.com/JackVandergriff/vscode-xresources-theme" - url: "https://marketplace.visualstudio.com/items?itemName=JackVandergriff.xresources-theme" + marketplace_id: "NekkiNeks.xresources-theme-plus" + version: "2.0.1" + installs: 22 + author: "NekkiNeks" + repo: "https://github.com/NekkiNeks/xresources-theme-plus" + url: "https://marketplace.visualstudio.com/items?itemName=NekkiNeks.xresources-theme-plus" colors: - bg: "#2F2C2B" - fg: "#C9C8C8" - black: "#272524" - red: "#F4ADFC" - green: "#185D8E" - yellow: "#7270A0" - blue: "#7996AA" - magenta: "#5989AA" - cyan: "#D0C29F" - white: "#C9C8C8" - brightBlack: "#5D5B5A" - brightRed: "#F4FCAD" - brightGreen: "#185D8E" - brightYellow: "#7270A0" - brightBlue: "#7996AA" - brightMagenta: "#5989AA" - brightCyan: "#D0C29F" - brightWhite: "#C9C8C8" + bg: "#000000" + fg: "#EAEAEA" + black: "#000000" + red: "#B30303" + green: "#8AB800" + yellow: "#DC4904" + blue: "#2527CE" + magenta: "#B20B6D" + cyan: "#277890" + white: "#AFAFAF" + brightBlack: "#4D4D4D" + brightRed: "#FF0100" + brightGreen: "#BAF602" + brightYellow: "#FD6C13" + brightBlue: "#2E31FC" + brightMagenta: "#F01294" + brightCyan: "#3BB1D4" + brightWhite: "#D6D6D6" meta: mode: "dark" - accent: "pink" + accent: "purple" hue: null + pair: null contrast: - fg: 69.1 + fg: 94.2 black: 0 - red: 67.6 - green: 13.7 - yellow: 25.2 - blue: 39.3 - magenta: 32.2 - cyan: 65.9 - white: 69.1 - brightBlack: 14.3 - brightRed: 97.4 - brightGreen: 13.7 - brightYellow: 25.2 - brightBlue: 39.3 - brightMagenta: 32.2 - brightCyan: 65.9 - brightWhite: 69.1 + red: 19.7 + green: 56 + yellow: 33.9 + blue: 12.4 + magenta: 21.1 + cyan: 27.2 + white: 59 + brightBlack: 13.1 + brightRed: 37.5 + brightGreen: 89.7 + brightYellow: 47.9 + brightBlue: 19 + brightMagenta: 36.5 + brightCyan: 53.4 + brightWhite: 81.7 diff --git a/themes/xresources.yaml b/themes/xresources.yaml index 44061726..2b7a5247 100644 --- a/themes/xresources.yaml +++ b/themes/xresources.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 70.4 black: 0 diff --git a/themes/xrodev.yaml b/themes/xrodev.yaml index 99daf078..0b19aa9a 100644 --- a/themes/xrodev.yaml +++ b/themes/xrodev.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 300 + pair: null contrast: fg: 95.9 black: 0 diff --git a/themes/xs.yaml b/themes/xs.yaml index 4f2c0dc6..12be50d1 100644 --- a/themes/xs.yaml +++ b/themes/xs.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 80.8 black: 105.2 diff --git a/themes/xstheme.yaml b/themes/xstheme.yaml index 12930f20..85a1f636 100644 --- a/themes/xstheme.yaml +++ b/themes/xstheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 73.8 black: 0 diff --git a/themes/xtree-gold.yaml b/themes/xtree-gold.yaml index d9fc05a9..bba396bc 100644 --- a/themes/xtree-gold.yaml +++ b/themes/xtree-gold.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 265 + pair: null contrast: fg: 99.7 black: 8 diff --git a/themes/xviewdark.yaml b/themes/xviewdark.yaml index aea4b2db..a940f4d6 100644 --- a/themes/xviewdark.yaml +++ b/themes/xviewdark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.2 black: 0 diff --git a/themes/xxhtml.yaml b/themes/xxhtml.yaml index ac2d1174..71a78547 100644 --- a/themes/xxhtml.yaml +++ b/themes/xxhtml.yaml @@ -1,11 +1,11 @@ name: "XxHTML" source: - marketplace_id: "xxhtml.xxhtml-themes" - version: "0.0.15" - installs: 1165 + marketplace_id: "xxhtml.xxhtml-theme" + version: "0.0.3" + installs: 2 author: "Isaac" repo: "https://github.com/XxHTMLStudios/xxhtml-theme" - url: "https://marketplace.visualstudio.com/items?itemName=xxhtml.xxhtml-themes" + url: "https://marketplace.visualstudio.com/items?itemName=xxhtml.xxhtml-theme" colors: bg: "#282828" fg: "#C0C0C0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 65.2 black: 0 diff --git a/themes/xxtereshko-light.yaml b/themes/xxtereshko-light.yaml index b4a5a0dd..d9e297bf 100644 --- a/themes/xxtereshko-light.yaml +++ b/themes/xxtereshko-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 101.5 black: 101.5 diff --git a/themes/xzadudu179.yaml b/themes/xzadudu179.yaml index ae748cfa..9acca96f 100644 --- a/themes/xzadudu179.yaml +++ b/themes/xzadudu179.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 78 black: 0 diff --git a/themes/y3m.yaml b/themes/y3m.yaml index 8a095823..d36a9092 100644 --- a/themes/y3m.yaml +++ b/themes/y3m.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 105.6 black: 0 diff --git a/themes/yaast.yaml b/themes/yaast.yaml index 854cef9a..87851e43 100644 --- a/themes/yaast.yaml +++ b/themes/yaast.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 271 + pair: null contrast: fg: 80.8 black: 0 diff --git a/themes/yagnesh.yaml b/themes/yagnesh.yaml index 1864ae57..51ec7521 100644 --- a/themes/yagnesh.yaml +++ b/themes/yagnesh.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 211 + pair: null contrast: fg: 45.8 black: 0 diff --git a/themes/yagomaia-theme.yaml b/themes/yagomaia-theme.yaml deleted file mode 100644 index 4bc750c2..00000000 --- a/themes/yagomaia-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "yagomaia-theme" -source: - marketplace_id: "YagoMaia.maia-theme-purple" - version: "1.1.0" - installs: 1947 - author: "YagoMaia" - repo: "https://github.com/YagoMaia/Maia-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=YagoMaia.maia-theme-purple" -colors: - bg: "#020A17" - fg: "#F8F8F2" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#A179FB" - brightGreen: "#66FFB4" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: 253 - contrast: - fg: 102.8 - black: 0 - red: 25.4 - green: 53.8 - yellow: 58.5 - blue: 35.5 - magenta: 33 - cyan: 51.3 - white: 89.3 - brightBlack: 22.9 - brightRed: 43.1 - brightGreen: 90.7 - brightYellow: 84.7 - brightBlue: 50.7 - brightMagenta: 47.4 - brightCyan: 74.2 - brightWhite: 102.8 diff --git a/themes/yami-blue.yaml b/themes/yami-blue.yaml index 4c7c765d..2f39d6f6 100644 --- a/themes/yami-blue.yaml +++ b/themes/yami-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 269 + pair: null contrast: fg: 80.4 black: 0 diff --git a/themes/yanbaru-shadow.yaml b/themes/yanbaru-shadow.yaml index 85a190af..61910c21 100644 --- a/themes/yanbaru-shadow.yaml +++ b/themes/yanbaru-shadow.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 161 + pair: null contrast: fg: 87 black: 0 diff --git a/themes/yarra-valley.yaml b/themes/yarra-valley.yaml index d5bcdf69..a19d7f0c 100644 --- a/themes/yarra-valley.yaml +++ b/themes/yarra-valley.yaml @@ -2,7 +2,7 @@ name: "Yarra Valley" source: marketplace_id: "dustypomerleau.yarra-valley" version: "0.29.14" - installs: 10151 + installs: 10152 author: "Dusty Pomerleau" repo: "https://github.com/dustypomerleau/yarra-valley" url: "https://marketplace.visualstudio.com/items?itemName=dustypomerleau.yarra-valley" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 274 + pair: null contrast: fg: 64.4 black: 0 diff --git a/themes/yaru-dark-grape.yaml b/themes/yaru-dark-grape.yaml deleted file mode 100644 index 22687302..00000000 --- a/themes/yaru-dark-grape.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Yaru Dark Grape" -source: - marketplace_id: "AdsonCicilioti.yaru-vscode" - version: "0.1.3" - installs: 20214 - author: "AdsonCicilioti" - repo: "https://github.com/AdsonCicilioti/yaru-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AdsonCicilioti.yaru-vscode" -colors: - bg: "#222222" - fg: "#FDFDFD" - black: "#222222" - red: "#FF794A" - green: "#52D866" - yellow: "#FFDC98" - blue: "#EE80D6" - magenta: "#FF9D88" - cyan: "#60D4FD" - white: "#FDFDFD" - brightBlack: "#928986" - brightRed: "#FF6D4C" - brightGreen: "#69FF94" - brightYellow: "#FFF5BC" - brightBlue: "#FFA2EB" - brightMagenta: "#FFAEA0" - brightCyan: "#98E4FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: null - contrast: - fg: 104.1 - black: 0 - red: 49.4 - green: 65.8 - yellow: 85.7 - blue: 52.4 - magenta: 61.1 - cyan: 70.2 - white: 104.1 - brightBlack: 37.6 - brightRed: 46.6 - brightGreen: 87.6 - brightYellow: 98 - brightBlue: 66.8 - brightMagenta: 67.6 - brightCyan: 81.2 - brightWhite: 105.5 diff --git a/themes/yaru-dark.yaml b/themes/yaru-dark.yaml index f166599e..6b492707 100644 --- a/themes/yaru-dark.yaml +++ b/themes/yaru-dark.yaml @@ -1,49 +1,50 @@ name: "Yaru Dark" source: - marketplace_id: "rdnlsmith.linux-themes" - version: "1.3.0" - installs: 41699 - author: "rdnlsmith" - repo: "https://github.com/rdnlsmith/vscode-arc-theme" - url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" colors: - bg: "#2F2F2F" - fg: "#FFFFFF" - black: "#000000" - red: "#AA0000" - green: "#00AA00" - yellow: "#AA5500" - blue: "#0000AA" - magenta: "#AA00AA" - cyan: "#00AAAA" - white: "#AAAAAA" - brightBlack: "#555555" - brightRed: "#FF5555" - brightGreen: "#55FF55" - brightYellow: "#FFFF55" - brightBlue: "#5555FF" - brightMagenta: "#FF55FF" - brightCyan: "#55FFFF" + bg: "#222222" + fg: "#FDFDFD" + black: "#222222" + red: "#FF794A" + green: "#52D866" + yellow: "#FFDC98" + blue: "#EE80D6" + magenta: "#FF9D88" + cyan: "#60D4FD" + white: "#FDFDFD" + brightBlack: "#928986" + brightRed: "#FF6D4C" + brightGreen: "#69FF94" + brightYellow: "#FFF5BC" + brightBlue: "#FFA2EB" + brightMagenta: "#FFAEA0" + brightCyan: "#98E4FF" brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "pink" + accent: "teal" hue: null + pair: null contrast: - fg: 103 + fg: 104.1 black: 0 - red: 12.9 - green: 39.6 - yellow: 21.4 - blue: 0 - magenta: 17.6 - cyan: 42.8 - white: 51.3 - brightBlack: 11.2 - brightRed: 39.5 - brightGreen: 83.2 - brightYellow: 98.2 - brightBlue: 22.5 - brightMagenta: 47 - brightCyan: 88.5 - brightWhite: 103 + red: 49.4 + green: 65.8 + yellow: 85.7 + blue: 52.4 + magenta: 61.1 + cyan: 70.2 + white: 104.1 + brightBlack: 37.6 + brightRed: 46.6 + brightGreen: 87.6 + brightYellow: 98 + brightBlue: 66.8 + brightMagenta: 67.6 + brightCyan: 81.2 + brightWhite: 105.5 diff --git a/themes/yaru.yaml b/themes/yaru.yaml index d0e799b8..da8afd34 100644 --- a/themes/yaru.yaml +++ b/themes/yaru.yaml @@ -2,7 +2,7 @@ name: "Yaru" source: marketplace_id: "rdnlsmith.linux-themes" version: "1.3.0" - installs: 41699 + installs: 41712 author: "rdnlsmith" repo: "https://github.com/rdnlsmith/vscode-arc-theme" url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 105.4 black: 106 diff --git a/themes/yaruna-aurora.yaml b/themes/yaruna-aurora.yaml index 62fd6b5b..c87e7763 100644 --- a/themes/yaruna-aurora.yaml +++ b/themes/yaruna-aurora.yaml @@ -2,7 +2,7 @@ name: "Yaruna Aurora" source: marketplace_id: "daniel-duc.daniel-yaruna-theme" version: "1.3.2" - installs: 254 + installs: 255 author: "Daniel Duc" repo: "https://github.com/binhduc1211/daniel-yaruna-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 81.8 black: 0 diff --git a/themes/yaruna-forest.yaml b/themes/yaruna-forest.yaml index 4f1a96ef..65e64c3f 100644 --- a/themes/yaruna-forest.yaml +++ b/themes/yaruna-forest.yaml @@ -2,7 +2,7 @@ name: "Yaruna Forest" source: marketplace_id: "daniel-duc.daniel-yaruna-theme" version: "1.3.2" - installs: 254 + installs: 255 author: "Daniel Duc" repo: "https://github.com/binhduc1211/daniel-yaruna-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: 171 + pair: null contrast: fg: 85.2 black: 0 diff --git a/themes/yaruna-midnight.yaml b/themes/yaruna-midnight.yaml index 860ff2e2..00b69793 100644 --- a/themes/yaruna-midnight.yaml +++ b/themes/yaruna-midnight.yaml @@ -2,7 +2,7 @@ name: "Yaruna Midnight" source: marketplace_id: "daniel-duc.daniel-yaruna-theme" version: "1.3.2" - installs: 254 + installs: 255 author: "Daniel Duc" repo: "https://github.com/binhduc1211/daniel-yaruna-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 258 + pair: null contrast: fg: 77.5 black: 0 diff --git a/themes/yaruna-nova.yaml b/themes/yaruna-nova.yaml index 4f6959c8..97273acb 100644 --- a/themes/yaruna-nova.yaml +++ b/themes/yaruna-nova.yaml @@ -2,7 +2,7 @@ name: "Yaruna Nova" source: marketplace_id: "daniel-duc.daniel-yaruna-theme" version: "1.3.2" - installs: 254 + installs: 255 author: "Daniel Duc" repo: "https://github.com/binhduc1211/daniel-yaruna-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 98.6 black: 0 diff --git a/themes/yaruna-palenight.yaml b/themes/yaruna-palenight.yaml deleted file mode 100644 index 8dac9ad2..00000000 --- a/themes/yaruna-palenight.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Yaruna Palenight" -source: - marketplace_id: "daniel-duc.daniel-yaruna-theme" - version: "1.3.2" - installs: 254 - author: "Daniel Duc" - repo: "https://github.com/binhduc1211/daniel-yaruna-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" -colors: - bg: "#292D3E" - fg: "#BABED8" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 274 - contrast: - fg: 63.5 - black: 0 - red: 43 - green: 80.6 - yellow: 75.3 - blue: 52.3 - magenta: 50.1 - cyan: 74.6 - white: 103.3 - brightBlack: 22.8 - brightRed: 43 - brightGreen: 80.6 - brightYellow: 75.3 - brightBlue: 52.3 - brightMagenta: 50.1 - brightCyan: 74.6 - brightWhite: 103.3 diff --git a/themes/yazbi.yaml b/themes/yazbi.yaml deleted file mode 100644 index 4a17f906..00000000 --- a/themes/yazbi.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "yazbi" -source: - marketplace_id: "Roby195.biendark" - version: "2.0.1" - installs: 66 - author: "Mimassi Joseph" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Roby195.biendark" -colors: - bg: "#171616" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#0969FF" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "purple" - hue: null - contrast: - fg: 106.9 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.7 - blue: 29.2 - magenta: 29.8 - cyan: 47.6 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.6 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.4 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/yd-dark.yaml b/themes/yd-dark.yaml index dd1e2ecd..1ae17755 100644 --- a/themes/yd-dark.yaml +++ b/themes/yd-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 217 + pair: "YD Light" contrast: fg: 91.8 black: 0 diff --git a/themes/yd-light.yaml b/themes/yd-light.yaml index 31536cd7..d5b2bd7e 100644 --- a/themes/yd-light.yaml +++ b/themes/yd-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: "YD Dark" contrast: fg: 100.6 black: 0 diff --git a/themes/ydrgzm-light-theme.yaml b/themes/ydrgzm-light-theme.yaml index 08646763..10719b4f 100644 --- a/themes/ydrgzm-light-theme.yaml +++ b/themes/ydrgzm-light-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 103 black: 61 diff --git a/themes/yelan.yaml b/themes/yelan.yaml index bb102a0e..c8ddf673 100644 --- a/themes/yelan.yaml +++ b/themes/yelan.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 269 + pair: null contrast: fg: 61.3 black: 0 diff --git a/themes/yellow-beryl.yaml b/themes/yellow-beryl.yaml index c50a45ea..f9de1bf2 100644 --- a/themes/yellow-beryl.yaml +++ b/themes/yellow-beryl.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 106.9 black: 0 diff --git a/themes/yellow-green-blue-theme.yaml b/themes/yellow-green-blue-theme.yaml index 8b2994d8..479bd46e 100644 --- a/themes/yellow-green-blue-theme.yaml +++ b/themes/yellow-green-blue-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 81 + pair: null contrast: fg: 73.8 black: 0 diff --git a/themes/yellow-purple-theme.yaml b/themes/yellow-purple-theme.yaml index d6e26c72..9f7a7e8a 100644 --- a/themes/yellow-purple-theme.yaml +++ b/themes/yellow-purple-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 306 + pair: null contrast: fg: 104.6 black: 0 diff --git a/themes/yellowed.yaml b/themes/yellowed.yaml index 3c656396..66ba73e4 100644 --- a/themes/yellowed.yaml +++ b/themes/yellowed.yaml @@ -2,7 +2,7 @@ name: "Yellowed" source: marketplace_id: "gael-lopes-da-silva.yellowed" version: "2.4.0" - installs: 2756 + installs: 2757 author: "Gaël Lopes Da Silva" repo: "https://github.com/Gael-Lopes-Da-Silva/YellowedVSCode" url: "https://marketplace.visualstudio.com/items?itemName=gael-lopes-da-silva.yellowed" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 105.1 black: 0 diff --git a/themes/yerba.yaml b/themes/yerba.yaml index c8de7b45..fc4e3757 100644 --- a/themes/yerba.yaml +++ b/themes/yerba.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 65.2 black: 0 diff --git a/themes/yet-another-solarized-theme-dark.yaml b/themes/yet-another-solarized-theme-dark.yaml index 470bbafb..ca78d921 100644 --- a/themes/yet-another-solarized-theme-dark.yaml +++ b/themes/yet-another-solarized-theme-dark.yaml @@ -2,7 +2,7 @@ name: "Yet Another Solarized Theme (Dark)" source: marketplace_id: "JulianSchelb.yet-another-solarized-theme" version: "1.0.5" - installs: 2704 + installs: 2705 author: "Julian Schelb" repo: "https://github.com/julianschelb/vscode-theme-solarized" url: "https://marketplace.visualstudio.com/items?itemName=JulianSchelb.yet-another-solarized-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 263 + pair: null contrast: fg: 74.4 black: 0 diff --git a/themes/yet-another-solarized-theme-light.yaml b/themes/yet-another-solarized-theme-light.yaml index c7bc0a9f..a2fa6336 100644 --- a/themes/yet-another-solarized-theme-light.yaml +++ b/themes/yet-another-solarized-theme-light.yaml @@ -1,11 +1,11 @@ name: "Yet Another Solarized Theme (Light)" source: - marketplace_id: "JulianSchelb.yet-another-solarized-theme" - version: "1.0.5" - installs: 2704 - author: "Julian Schelb" - repo: "https://github.com/julianschelb/vscode-theme-solarized" - url: "https://marketplace.visualstudio.com/items?itemName=JulianSchelb.yet-another-solarized-theme" + marketplace_id: "beigeowl.wrapped-owl" + version: "1.1.0" + installs: 885 + author: "beigeowl" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=beigeowl.wrapped-owl" colors: bg: "#F9F6EF" fg: "#193F49" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 90.8 black: 100.8 diff --git a/themes/yharnizedtheme.yaml b/themes/yharnizedtheme.yaml index b86ff339..35f49acd 100644 --- a/themes/yharnizedtheme.yaml +++ b/themes/yharnizedtheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 88.5 black: 0 diff --git a/themes/yinloonga-python.yaml b/themes/yinloonga-python.yaml deleted file mode 100644 index 2c512809..00000000 --- a/themes/yinloonga-python.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "yinloonga_python" -source: - marketplace_id: "yinloonga.solarized-dark-cpp" - version: "1.48.0" - installs: 1779 - author: "yinloonga" - repo: "https://github.com/torvalds/linux" - url: "https://marketplace.visualstudio.com/items?itemName=yinloonga.solarized-dark-cpp" -colors: - bg: "#23272E" - fg: "#B8C0CC" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: 262 - contrast: - fg: 65 - black: 0 - red: 22.4 - green: 50.8 - yellow: 55.4 - blue: 32.4 - magenta: 30 - cyan: 48.2 - white: 86.3 - brightBlack: 19.8 - brightRed: 35.1 - brightGreen: 74.8 - brightYellow: 81.7 - brightBlue: 47.6 - brightMagenta: 44.3 - brightCyan: 71.2 - brightWhite: 99.8 diff --git a/themes/yitzchok-contrast.yaml b/themes/yitzchok-contrast.yaml index 0958c012..67d8a82d 100644 --- a/themes/yitzchok-contrast.yaml +++ b/themes/yitzchok-contrast.yaml @@ -1,11 +1,11 @@ name: "yitzchok-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#101316" fg: "#AFB7BF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 62.2 black: 0 diff --git a/themes/yitzchok-light.yaml b/themes/yitzchok-light.yaml index 51f6d1b1..299346ed 100644 --- a/themes/yitzchok-light.yaml +++ b/themes/yitzchok-light.yaml @@ -1,11 +1,11 @@ name: "yitzchok-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#6A7684" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 72.2 black: 0 diff --git a/themes/yitzchok.yaml b/themes/yitzchok.yaml index cefa1e39..eb0b64fb 100644 --- a/themes/yitzchok.yaml +++ b/themes/yitzchok.yaml @@ -1,11 +1,11 @@ name: "yitzchok" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#252C33" fg: "#AFB7BF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 248 + pair: null contrast: fg: 58.8 black: 0 diff --git a/themes/ylw-dark-theme.yaml b/themes/ylw-dark-theme.yaml index 26c70625..72e55518 100644 --- a/themes/ylw-dark-theme.yaml +++ b/themes/ylw-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 78.9 black: 8.3 diff --git a/themes/yoda-mystical-force.yaml b/themes/yoda-mystical-force.yaml index fb062be4..32055cc1 100644 --- a/themes/yoda-mystical-force.yaml +++ b/themes/yoda-mystical-force.yaml @@ -2,7 +2,7 @@ name: "Yoda - Mystical Force" source: marketplace_id: "Dutchorange.space-wars" version: "1.1.7" - installs: 1710 + installs: 1711 author: "Dutchorange" repo: "https://github.com/entropy-glitch/space-wars" url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: 256 + pair: null contrast: fg: 91.8 black: 0 diff --git a/themes/yoda.yaml b/themes/yoda.yaml index 7df577cd..651b0f27 100644 --- a/themes/yoda.yaml +++ b/themes/yoda.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 52.7 black: 0 diff --git a/themes/yodart.yaml b/themes/yodart.yaml deleted file mode 100644 index e944af55..00000000 --- a/themes/yodart.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Yodart" -source: - marketplace_id: "Yodart.yodart-theme" - version: "0.1.0" - installs: 210 - author: "Yodart" - repo: "https://github.com/Yodart/yodart-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Yodart.yodart-theme" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 107.9 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/yohualli-eclipse.yaml b/themes/yohualli-eclipse.yaml index 04d4098a..70ebd326 100644 --- a/themes/yohualli-eclipse.yaml +++ b/themes/yohualli-eclipse.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 303 + pair: null contrast: fg: 75.2 black: 0 diff --git a/themes/yohualli-lunaris.yaml b/themes/yohualli-lunaris.yaml index 10da54a0..81d11272 100644 --- a/themes/yohualli-lunaris.yaml +++ b/themes/yohualli-lunaris.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 303 + pair: null contrast: fg: 61.3 black: 0 diff --git a/themes/yohualli-nebulune.yaml b/themes/yohualli-nebulune.yaml index 26c2996e..6015d65e 100644 --- a/themes/yohualli-nebulune.yaml +++ b/themes/yohualli-nebulune.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 303 + pair: null contrast: fg: 69 black: 0 diff --git a/themes/yohualli-penumbra.yaml b/themes/yohualli-penumbra.yaml index fb75992c..ac39a545 100644 --- a/themes/yohualli-penumbra.yaml +++ b/themes/yohualli-penumbra.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 303 + pair: null contrast: fg: 57 black: 0 diff --git a/themes/yonc.yaml b/themes/yonc.yaml index e969d955..9ce1a64c 100644 --- a/themes/yonc.yaml +++ b/themes/yonc.yaml @@ -1,11 +1,11 @@ name: "Yoncé" source: - marketplace_id: "minamarkham.yonce-theme" - version: "0.1.0" - installs: 19006 - author: "minamarkham" - repo: "https://github.com/minamarkham/yonce-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=minamarkham.yonce-theme" + marketplace_id: "Gixo.yue-theme" + version: "1.0.2" + installs: 686 + author: "Gixo" + repo: "https://github.com/thegixo/yue-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Gixo.yue-theme" colors: bg: "#1C1C1C" fg: "#D4D4D4" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/yotei.yaml b/themes/yotei.yaml index d0ef37bd..dc63ce25 100644 --- a/themes/yotei.yaml +++ b/themes/yotei.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 314 + pair: null contrast: fg: 102.4 black: 0 diff --git a/themes/yoth-theme-dark.yaml b/themes/yoth-theme-dark.yaml index 93d82ad9..8cc54adb 100644 --- a/themes/yoth-theme-dark.yaml +++ b/themes/yoth-theme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/ystheme.yaml b/themes/ystheme.yaml index fc603cf3..a71433c6 100644 --- a/themes/ystheme.yaml +++ b/themes/ystheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 292 + pair: null contrast: fg: 94.9 black: 0 diff --git a/themes/ytheme-dark.yaml b/themes/ytheme-dark.yaml index e1e03071..bc012cbb 100644 --- a/themes/ytheme-dark.yaml +++ b/themes/ytheme-dark.yaml @@ -2,7 +2,7 @@ name: "YTheme Dark" source: marketplace_id: "czfadmin.ytheme" version: "1.3.21" - installs: 1127 + installs: 1128 author: "czfadmin" repo: "https://github.com/czfadmin/Atom-One-Dark-Pro" url: "https://marketplace.visualstudio.com/items?itemName=czfadmin.ytheme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 286 + pair: null contrast: fg: 72.9 black: 0 diff --git a/themes/yue-theme.yaml b/themes/yue-theme.yaml index 76534dec..43799d6d 100644 --- a/themes/yue-theme.yaml +++ b/themes/yue-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 63.3 black: 0 diff --git a/themes/yukinord.yaml b/themes/yukinord.yaml index 6a153525..1d9866df 100644 --- a/themes/yukinord.yaml +++ b/themes/yukinord.yaml @@ -2,7 +2,7 @@ name: "Yukinord" source: marketplace_id: "yukina.yukinord" version: "0.0.65" - installs: 1364 + installs: 1367 author: "Yukina" repo: "https://github.com/yukina3230/yukinord" url: "https://marketplace.visualstudio.com/items?itemName=yukina.yukinord" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 84.1 black: 0 diff --git a/themes/yule-contrast.yaml b/themes/yule-contrast.yaml index 0b661d3d..960795a6 100644 --- a/themes/yule-contrast.yaml +++ b/themes/yule-contrast.yaml @@ -1,11 +1,11 @@ name: "yule-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#0C0C0B" fg: "#EDE0CE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 88.7 black: 0 diff --git a/themes/yule-light.yaml b/themes/yule-light.yaml index e5b29681..82c2142b 100644 --- a/themes/yule-light.yaml +++ b/themes/yule-light.yaml @@ -1,11 +1,11 @@ name: "yule-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#444444" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/yule.yaml b/themes/yule.yaml index 1ba5a27c..63828b1d 100644 --- a/themes/yule.yaml +++ b/themes/yule.yaml @@ -1,11 +1,11 @@ name: "yule" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#2B2A27" fg: "#EDE0CE" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 85.1 black: 0 diff --git a/themes/yulon.yaml b/themes/yulon.yaml index c7c3b8e3..a1350121 100644 --- a/themes/yulon.yaml +++ b/themes/yulon.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "teal" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/yum.yaml b/themes/yum.yaml index 0b6d9013..2f0b6afd 100644 --- a/themes/yum.yaml +++ b/themes/yum.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 72.4 black: 0 diff --git a/themes/yurei-dark-theme.yaml b/themes/yurei-dark-theme.yaml index bb8b4d46..05eaa64c 100644 --- a/themes/yurei-dark-theme.yaml +++ b/themes/yurei-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 61 black: 12.9 diff --git a/themes/yuru-black.yaml b/themes/yuru-black.yaml index e8e06047..0e12c275 100644 --- a/themes/yuru-black.yaml +++ b/themes/yuru-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 75.5 black: 22.2 diff --git a/themes/yuru.yaml b/themes/yuru.yaml index 35dbcb02..523cbd2e 100644 --- a/themes/yuru.yaml +++ b/themes/yuru.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 82.1 black: 0 diff --git a/themes/yuyuko-vscode-ocean.yaml b/themes/yuyuko-vscode-ocean.yaml index 8c2befea..55211b43 100644 --- a/themes/yuyuko-vscode-ocean.yaml +++ b/themes/yuyuko-vscode-ocean.yaml @@ -2,7 +2,7 @@ name: "yuyuko.vscode ocean" source: marketplace_id: "hylwxqwq.yuyuko-vim-vsc" version: "0.2.1" - installs: 6332 + installs: 6339 author: "hylwxqwq" repo: "https://github.com/hylwxqwq/yuyuko-vim-vsc" url: "https://marketplace.visualstudio.com/items?itemName=hylwxqwq.yuyuko-vim-vsc" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 105 black: 0 diff --git a/themes/yuyuko-vscode.yaml b/themes/yuyuko-vscode.yaml index 1cda51a2..44bcc1d9 100644 --- a/themes/yuyuko-vscode.yaml +++ b/themes/yuyuko-vscode.yaml @@ -2,7 +2,7 @@ name: "yuyuko.vscode" source: marketplace_id: "hylwxqwq.yuyuko-vim-vsc" version: "0.2.1" - installs: 6332 + installs: 6339 author: "hylwxqwq" repo: "https://github.com/hylwxqwq/yuyuko-vim-vsc" url: "https://marketplace.visualstudio.com/items?itemName=hylwxqwq.yuyuko-vim-vsc" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.3 black: 0 diff --git a/themes/z-darktheme.yaml b/themes/z-darktheme.yaml index 5f5f09ee..31f19192 100644 --- a/themes/z-darktheme.yaml +++ b/themes/z-darktheme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 309 + pair: null contrast: fg: 102.9 black: 0 diff --git a/themes/z3r0.yaml b/themes/z3r0.yaml index 8bb8a1e9..1351caea 100644 --- a/themes/z3r0.yaml +++ b/themes/z3r0.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.3 black: 0 diff --git a/themes/zach-s-blue-theme.yaml b/themes/zach-s-blue-theme.yaml index 8b359516..970dbee3 100644 --- a/themes/zach-s-blue-theme.yaml +++ b/themes/zach-s-blue-theme.yaml @@ -2,7 +2,7 @@ name: "Zach's Blue Theme" source: marketplace_id: "ZachFauser.ZachsBlueTheme" version: "9.0.1" - installs: 1738 + installs: 1740 author: "Zach Fauser" repo: "https://github.com/Zfauser/Zachs-BLUE-vs-code" url: "https://marketplace.visualstudio.com/items?itemName=ZachFauser.ZachsBlueTheme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 242 + pair: null contrast: fg: 78 black: 0 diff --git a/themes/zacks-contrast.yaml b/themes/zacks-contrast.yaml index 63fbac85..d6d27abb 100644 --- a/themes/zacks-contrast.yaml +++ b/themes/zacks-contrast.yaml @@ -1,11 +1,11 @@ name: "zacks-contrast" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#000000" fg: "#F0F0F0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 98.1 black: 0 diff --git a/themes/zacks-light.yaml b/themes/zacks-light.yaml index 07faadde..4b08d9f1 100644 --- a/themes/zacks-light.yaml +++ b/themes/zacks-light.yaml @@ -1,11 +1,11 @@ name: "zacks-light" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#FFFFFF" fg: "#444444" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/zacks.yaml b/themes/zacks.yaml index 5bf12553..e3fa2792 100644 --- a/themes/zacks.yaml +++ b/themes/zacks.yaml @@ -1,11 +1,11 @@ name: "zacks" source: - marketplace_id: "daylerees.rainglow" - version: "1.5.2" - installs: 527899 - author: "Dayle Rees" - repo: "https://github.com/rainglow/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: bg: "#222222" fg: "#F0F0F0" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 95.6 black: 0 diff --git a/themes/zaher-color-theme.yaml b/themes/zaher-color-theme.yaml index c5370c37..734b9f8b 100644 --- a/themes/zaher-color-theme.yaml +++ b/themes/zaher-color-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 41.1 black: 0 diff --git a/themes/zan.yaml b/themes/zan.yaml index df44cbcc..b677b5a8 100644 --- a/themes/zan.yaml +++ b/themes/zan.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 30.2 black: 8.6 diff --git a/themes/zandromeda.yaml b/themes/zandromeda.yaml deleted file mode 100644 index 260bb170..00000000 --- a/themes/zandromeda.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Zandromeda" -source: - marketplace_id: "tommalitz.simplethemes" - version: "0.0.10" - installs: 65 - author: "tommalitz" - repo: "https://github.com/TomMalitz/zedromeda" - url: "https://marketplace.visualstudio.com/items?itemName=tommalitz.simplethemes" -colors: - bg: "#171717" - fg: "#F7F7F8" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 101.6 - black: 0 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 90 - brightBlack: 22 - brightRed: 38.6 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90 diff --git a/themes/zap.yaml b/themes/zap.yaml index 77fed835..eb2fb27f 100644 --- a/themes/zap.yaml +++ b/themes/zap.yaml @@ -2,7 +2,7 @@ name: "zap" source: marketplace_id: "giovanicavila.zap-theme" version: "0.0.10" - installs: 106 + installs: 108 author: "Giovani Avila" repo: "https://github.com/giovanicavila/Zap" url: "https://marketplace.visualstudio.com/items?itemName=giovanicavila.zap-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 142 + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/zathura.yaml b/themes/zathura.yaml deleted file mode 100644 index 316d9cf1..00000000 --- a/themes/zathura.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Zathura" -source: - marketplace_id: "TeneBris.zathura" - version: "0.0.3" - installs: 150 - author: "TeneBris" - repo: "https://github.com/yaksh1/zathura_vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=TeneBris.zathura" -colors: - bg: "#0F0F0F" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 80.1 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28.1 - magenta: 30.4 - cyan: 48.2 - white: 90.6 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/zbra-dark.yaml b/themes/zbra-dark.yaml index 8f626dcf..4a31270f 100644 --- a/themes/zbra-dark.yaml +++ b/themes/zbra-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 75.5 black: 0 diff --git a/themes/zeal.yaml b/themes/zeal.yaml index 23012bc7..3efa45ee 100644 --- a/themes/zeal.yaml +++ b/themes/zeal.yaml @@ -2,7 +2,7 @@ name: "Zeal" source: marketplace_id: "kqadem.zeal-theme" version: "1.1.0" - installs: 2762 + installs: 2763 author: "kq.adem" repo: "https://github.com/kqadem/zeal" url: "https://marketplace.visualstudio.com/items?itemName=kqadem.zeal-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 230 + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/zednostheme-v1.yaml b/themes/zednostheme-v1.yaml index d4ce13ac..22c69a8b 100644 --- a/themes/zednostheme-v1.yaml +++ b/themes/zednostheme-v1.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 213 + pair: null contrast: fg: 52.3 black: 0 diff --git a/themes/zemarcolortheme.yaml b/themes/zemarcolortheme.yaml index 8ba01639..e72ee6f7 100644 --- a/themes/zemarcolortheme.yaml +++ b/themes/zemarcolortheme.yaml @@ -1,11 +1,11 @@ name: "ZemarColorTheme" source: - marketplace_id: "ZColorTheme.ZColorThemeV2" + marketplace_id: "ZColorTheme.ct" version: "0.0.1" - installs: 1803 + installs: 106 author: "ZColorTheme" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=ZColorTheme.ZColorThemeV2" + repo: "https://github.com/ZacZemar/ZColorTheme" + url: "https://marketplace.visualstudio.com/items?itemName=ZColorTheme.ct" colors: bg: "#080E21" fg: "#00CFFF" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 268 + pair: null contrast: fg: 68.2 black: 0 diff --git a/themes/zemizer-grey.yaml b/themes/zemizer-grey.yaml index 80ac4aca..101b1042 100644 --- a/themes/zemizer-grey.yaml +++ b/themes/zemizer-grey.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 248 + pair: null contrast: fg: 86.7 black: 0 diff --git a/themes/zen-dark.yaml b/themes/zen-dark.yaml index ec41e9fb..8dbcf540 100644 --- a/themes/zen-dark.yaml +++ b/themes/zen-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 63.9 black: 0 diff --git a/themes/zen-mono.yaml b/themes/zen-mono.yaml index d3c29f79..57a0926d 100644 --- a/themes/zen-mono.yaml +++ b/themes/zen-mono.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 267 + pair: null contrast: fg: 84.6 black: 0 diff --git a/themes/zen-sakura-cherry-blossom.yaml b/themes/zen-sakura-cherry-blossom.yaml index 1cfef1b8..302772ad 100644 --- a/themes/zen-sakura-cherry-blossom.yaml +++ b/themes/zen-sakura-cherry-blossom.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 63.9 black: 0 diff --git a/themes/zenbones-dark-stark.yaml b/themes/zenbones-dark-stark.yaml index ccdf2ad8..bb6ed202 100644 --- a/themes/zenbones-dark-stark.yaml +++ b/themes/zenbones-dark-stark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Dark Stark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 65.4 black: 0 diff --git a/themes/zenbones-dark-warm.yaml b/themes/zenbones-dark-warm.yaml index a4874e43..2ebda45f 100644 --- a/themes/zenbones-dark-warm.yaml +++ b/themes/zenbones-dark-warm.yaml @@ -2,7 +2,7 @@ name: "Zenbones Dark Warm" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 64 black: 0 diff --git a/themes/zenbones-dark.yaml b/themes/zenbones-dark.yaml index 3d2cc0b2..e6c12809 100644 --- a/themes/zenbones-dark.yaml +++ b/themes/zenbones-dark.yaml @@ -1,11 +1,11 @@ name: "Zenbones Dark" source: - marketplace_id: "vinitkme.zenbones-redux" - version: "1.0.1" - installs: 9 - author: "Gotchacode" - repo: "https://github.com/vinitkumar/zenbones" - url: "https://marketplace.visualstudio.com/items?itemName=vinitkme.zenbones-redux" + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2701 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" colors: bg: "#1C1917" fg: "#B4BDC3" @@ -17,18 +17,19 @@ colors: magenta: "#B279A7" cyan: "#66A5AD" white: "#B4BDC3" - brightBlack: "#5B514A" + brightBlack: "#403833" brightRed: "#E8838F" brightGreen: "#8BAE68" brightYellow: "#D68C67" brightBlue: "#61ABDA" brightMagenta: "#CF86C1" brightCyan: "#65B8C1" - brightWhite: "#C4CACF" + brightWhite: "#888F94" meta: mode: "dark" accent: "red" hue: null + pair: "Zenbones Light" contrast: fg: 64.8 black: 0 @@ -39,11 +40,11 @@ meta: magenta: 39.1 cyan: 47 white: 64.8 - brightBlack: 14 + brightBlack: 0 brightRed: 50.2 brightGreen: 51.4 brightYellow: 48.6 brightBlue: 51.5 brightMagenta: 48.7 brightCyan: 55.9 - brightWhite: 72.7 + brightWhite: 40.3 diff --git a/themes/zenbones-duckbones-dark-stark.yaml b/themes/zenbones-duckbones-dark-stark.yaml index b7a7930d..456d2e24 100644 --- a/themes/zenbones-duckbones-dark-stark.yaml +++ b/themes/zenbones-duckbones-dark-stark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Duckbones Dark Stark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 277 + pair: null contrast: fg: 94.9 black: 0 diff --git a/themes/zenbones-duckbones-dark-warm.yaml b/themes/zenbones-duckbones-dark-warm.yaml index e823c974..f3d12a49 100644 --- a/themes/zenbones-duckbones-dark-warm.yaml +++ b/themes/zenbones-duckbones-dark-warm.yaml @@ -2,7 +2,7 @@ name: "Zenbones Duckbones Dark Warm" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 276 + pair: null contrast: fg: 93.9 black: 0 diff --git a/themes/zenbones-duckbones-dark.yaml b/themes/zenbones-duckbones-dark.yaml index 01619749..06d6846b 100644 --- a/themes/zenbones-duckbones-dark.yaml +++ b/themes/zenbones-duckbones-dark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Duckbones Dark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 94.5 black: 0 diff --git a/themes/zenbones-forestbones-dark-stark.yaml b/themes/zenbones-forestbones-dark-stark.yaml index 2357ef1c..673bceea 100644 --- a/themes/zenbones-forestbones-dark-stark.yaml +++ b/themes/zenbones-forestbones-dark-stark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Forestbones Dark Stark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 242 + pair: null contrast: fg: 81.7 black: 0 diff --git a/themes/zenbones-forestbones-dark-warm.yaml b/themes/zenbones-forestbones-dark-warm.yaml index 6aaf9614..7ef1b45e 100644 --- a/themes/zenbones-forestbones-dark-warm.yaml +++ b/themes/zenbones-forestbones-dark-warm.yaml @@ -2,7 +2,7 @@ name: "Zenbones Forestbones Dark Warm" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 240 + pair: null contrast: fg: 78.3 black: 0 diff --git a/themes/zenbones-forestbones-dark.yaml b/themes/zenbones-forestbones-dark.yaml index 274b17cd..51f75fde 100644 --- a/themes/zenbones-forestbones-dark.yaml +++ b/themes/zenbones-forestbones-dark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Forestbones Dark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 240 + pair: "Zenbones Forestbones Light" contrast: fg: 80.1 black: 0 diff --git a/themes/zenbones-forestbones-light-bright.yaml b/themes/zenbones-forestbones-light-bright.yaml index 1f3aaf5b..4b8c7633 100644 --- a/themes/zenbones-forestbones-light-bright.yaml +++ b/themes/zenbones-forestbones-light-bright.yaml @@ -2,7 +2,7 @@ name: "Zenbones Forestbones Light Bright" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 82.5 black: 0 diff --git a/themes/zenbones-forestbones-light-dim.yaml b/themes/zenbones-forestbones-light-dim.yaml index 783daa9e..75b19bc0 100644 --- a/themes/zenbones-forestbones-light-dim.yaml +++ b/themes/zenbones-forestbones-light-dim.yaml @@ -2,7 +2,7 @@ name: "Zenbones Forestbones Light Dim" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: 92 + pair: null contrast: fg: 72.5 black: 0 diff --git a/themes/zenbones-forestbones-light.yaml b/themes/zenbones-forestbones-light.yaml index a4e0885a..ad869a31 100644 --- a/themes/zenbones-forestbones-light.yaml +++ b/themes/zenbones-forestbones-light.yaml @@ -2,7 +2,7 @@ name: "Zenbones Forestbones Light" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: "Zenbones Forestbones Dark" contrast: fg: 77.2 black: 0 diff --git a/themes/zenbones-kanagawabones-dark-stark.yaml b/themes/zenbones-kanagawabones-dark-stark.yaml index 7c7703f5..c9711576 100644 --- a/themes/zenbones-kanagawabones-dark-stark.yaml +++ b/themes/zenbones-kanagawabones-dark-stark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Kanagawabones Dark Stark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 284 + pair: null contrast: fg: 81.2 black: 0 diff --git a/themes/zenbones-kanagawabones-dark-warm.yaml b/themes/zenbones-kanagawabones-dark-warm.yaml index b382bf36..93e461d9 100644 --- a/themes/zenbones-kanagawabones-dark-warm.yaml +++ b/themes/zenbones-kanagawabones-dark-warm.yaml @@ -2,7 +2,7 @@ name: "Zenbones Kanagawabones Dark Warm" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 79.4 black: 0 diff --git a/themes/zenbones-kanagawabones-dark.yaml b/themes/zenbones-kanagawabones-dark.yaml index 369250c8..efd01258 100644 --- a/themes/zenbones-kanagawabones-dark.yaml +++ b/themes/zenbones-kanagawabones-dark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Kanagawabones Dark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/zenbones-light-bright.yaml b/themes/zenbones-light-bright.yaml index 8b4968e1..e1254f17 100644 --- a/themes/zenbones-light-bright.yaml +++ b/themes/zenbones-light-bright.yaml @@ -2,7 +2,7 @@ name: "Zenbones Light Bright" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 93 black: 0 diff --git a/themes/zenbones-light-dim.yaml b/themes/zenbones-light-dim.yaml index ad67f516..2b84d1bb 100644 --- a/themes/zenbones-light-dim.yaml +++ b/themes/zenbones-light-dim.yaml @@ -2,7 +2,7 @@ name: "Zenbones Light Dim" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 82.7 black: 0 diff --git a/themes/zenbones-light.yaml b/themes/zenbones-light.yaml index 22048ddd..156414ed 100644 --- a/themes/zenbones-light.yaml +++ b/themes/zenbones-light.yaml @@ -1,49 +1,50 @@ name: "Zenbones Light" source: - marketplace_id: "vinitkme.zenbones-redux" - version: "1.0.1" - installs: 9 - author: "Gotchacode" - repo: "https://github.com/vinitkumar/zenbones" - url: "https://marketplace.visualstudio.com/items?itemName=vinitkme.zenbones-redux" + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2701 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" colors: bg: "#F0EDEC" fg: "#2C363C" - black: "#2C363C" + black: "#F0EDEC" red: "#A8334C" green: "#4F6C31" yellow: "#944927" blue: "#286486" magenta: "#88507D" cyan: "#3B8992" - white: "#F0EDEC" - brightBlack: "#9B948F" + white: "#2C363C" + brightBlack: "#CFC1BA" brightRed: "#94253E" brightGreen: "#3F5A22" brightYellow: "#803D1C" brightBlue: "#1D5573" brightMagenta: "#7B3B70" brightCyan: "#2B747C" - brightWhite: "#DEDAD8" + brightWhite: "#4F5E68" meta: mode: "light" accent: "red" hue: null + pair: "Zenbones Dark" contrast: fg: 87.8 - black: 87.8 + black: 0 red: 70.8 green: 69.4 yellow: 71.3 blue: 71.4 magenta: 69.5 cyan: 57.2 - white: 0 - brightBlack: 46.2 + white: 87.8 + brightBlack: 21.6 brightRed: 76.5 brightGreen: 76.6 brightYellow: 77.1 brightBlue: 77.4 brightMagenta: 76.3 brightCyan: 66.3 - brightWhite: 8.5 + brightWhite: 72.7 diff --git a/themes/zenbones-neobones-dark-stark.yaml b/themes/zenbones-neobones-dark-stark.yaml index 0e30a087..0c6509ec 100644 --- a/themes/zenbones-neobones-dark-stark.yaml +++ b/themes/zenbones-neobones-dark-stark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Neobones Dark Stark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 233 + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/zenbones-neobones-dark-warm.yaml b/themes/zenbones-neobones-dark-warm.yaml index f6ee8bf2..670fe873 100644 --- a/themes/zenbones-neobones-dark-warm.yaml +++ b/themes/zenbones-neobones-dark-warm.yaml @@ -2,7 +2,7 @@ name: "Zenbones Neobones Dark Warm" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 235 + pair: null contrast: fg: 77.2 black: 0 diff --git a/themes/zenbones-neobones-dark.yaml b/themes/zenbones-neobones-dark.yaml index 19a6101b..0bf5d2a4 100644 --- a/themes/zenbones-neobones-dark.yaml +++ b/themes/zenbones-neobones-dark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Neobones Dark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: 235 + pair: "Zenbones Neobones Light" contrast: fg: 77.9 black: 0 diff --git a/themes/zenbones-neobones-light-bright.yaml b/themes/zenbones-neobones-light-bright.yaml index 60935cbf..f2f60c37 100644 --- a/themes/zenbones-neobones-light-bright.yaml +++ b/themes/zenbones-neobones-light-bright.yaml @@ -2,7 +2,7 @@ name: "Zenbones Neobones Light Bright" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 94.1 black: 0 diff --git a/themes/zenbones-neobones-light-dim.yaml b/themes/zenbones-neobones-light-dim.yaml index 4dbf06ee..3f198e1a 100644 --- a/themes/zenbones-neobones-light-dim.yaml +++ b/themes/zenbones-neobones-light-dim.yaml @@ -2,7 +2,7 @@ name: "Zenbones Neobones Light Dim" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: 148 + pair: null contrast: fg: 84.1 black: 0 diff --git a/themes/zenbones-neobones-light.yaml b/themes/zenbones-neobones-light.yaml index 5952f6fd..dd2c1c83 100644 --- a/themes/zenbones-neobones-light.yaml +++ b/themes/zenbones-neobones-light.yaml @@ -2,7 +2,7 @@ name: "Zenbones Neobones Light" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: 149 + pair: "Zenbones Neobones Dark" contrast: fg: 89.1 black: 0 diff --git a/themes/zenbones-nordbones-dark-stark.yaml b/themes/zenbones-nordbones-dark-stark.yaml index b96cee3b..4a124988 100644 --- a/themes/zenbones-nordbones-dark-stark.yaml +++ b/themes/zenbones-nordbones-dark-stark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Nordbones Dark Stark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 91.9 black: 0 diff --git a/themes/zenbones-nordbones-dark-warm.yaml b/themes/zenbones-nordbones-dark-warm.yaml index 8656bd8a..77546bf0 100644 --- a/themes/zenbones-nordbones-dark-warm.yaml +++ b/themes/zenbones-nordbones-dark-warm.yaml @@ -2,7 +2,7 @@ name: "Zenbones Nordbones Dark Warm" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 267 + pair: null contrast: fg: 88.4 black: 0 diff --git a/themes/zenbones-nordbones-dark.yaml b/themes/zenbones-nordbones-dark.yaml index 93488879..54a18da4 100644 --- a/themes/zenbones-nordbones-dark.yaml +++ b/themes/zenbones-nordbones-dark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Nordbones Dark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 90.2 black: 0 diff --git a/themes/zenbones-rosebones-dark-stark.yaml b/themes/zenbones-rosebones-dark-stark.yaml index 1c5d0e83..bbe938b3 100644 --- a/themes/zenbones-rosebones-dark-stark.yaml +++ b/themes/zenbones-rosebones-dark-stark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Rosebones Dark Stark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 292 + pair: null contrast: fg: 81.6 black: 0 diff --git a/themes/zenbones-rosebones-dark-warm.yaml b/themes/zenbones-rosebones-dark-warm.yaml index f6d369f3..6430d793 100644 --- a/themes/zenbones-rosebones-dark-warm.yaml +++ b/themes/zenbones-rosebones-dark-warm.yaml @@ -2,7 +2,7 @@ name: "Zenbones Rosebones Dark Warm" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 287 + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/zenbones-rosebones-dark.yaml b/themes/zenbones-rosebones-dark.yaml index 887b2290..dbff3d39 100644 --- a/themes/zenbones-rosebones-dark.yaml +++ b/themes/zenbones-rosebones-dark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Rosebones Dark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 291 + pair: "Zenbones Rosebones Light" contrast: fg: 80.9 black: 0 diff --git a/themes/zenbones-rosebones-light-bright.yaml b/themes/zenbones-rosebones-light-bright.yaml index 27b5edf5..979eb8ba 100644 --- a/themes/zenbones-rosebones-light-bright.yaml +++ b/themes/zenbones-rosebones-light-bright.yaml @@ -2,7 +2,7 @@ name: "Zenbones Rosebones Light Bright" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/zenbones-rosebones-light-dim.yaml b/themes/zenbones-rosebones-light-dim.yaml index ff5ff437..10a6ba1a 100644 --- a/themes/zenbones-rosebones-light-dim.yaml +++ b/themes/zenbones-rosebones-light-dim.yaml @@ -2,7 +2,7 @@ name: "Zenbones Rosebones Light Dim" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: 70 + pair: null contrast: fg: 77.4 black: 0 diff --git a/themes/zenbones-rosebones-light.yaml b/themes/zenbones-rosebones-light.yaml index a9345226..7c144641 100644 --- a/themes/zenbones-rosebones-light.yaml +++ b/themes/zenbones-rosebones-light.yaml @@ -2,7 +2,7 @@ name: "Zenbones Rosebones Light" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "yellow" hue: null + pair: "Zenbones Rosebones Dark" contrast: fg: 82.9 black: 0 diff --git a/themes/zenbones-seoulbones-dark-stark.yaml b/themes/zenbones-seoulbones-dark-stark.yaml index d26c001c..9c2d1724 100644 --- a/themes/zenbones-seoulbones-dark-stark.yaml +++ b/themes/zenbones-seoulbones-dark-stark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Seoulbones Dark Stark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 5 + pair: null contrast: fg: 74.7 black: 0 diff --git a/themes/zenbones-seoulbones-dark-warm.yaml b/themes/zenbones-seoulbones-dark-warm.yaml index 37f2c491..8e7f0c2a 100644 --- a/themes/zenbones-seoulbones-dark-warm.yaml +++ b/themes/zenbones-seoulbones-dark-warm.yaml @@ -2,7 +2,7 @@ name: "Zenbones Seoulbones Dark Warm" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 70 black: 0 diff --git a/themes/zenbones-seoulbones-dark.yaml b/themes/zenbones-seoulbones-dark.yaml index 2dc71c8f..5a8e8aa8 100644 --- a/themes/zenbones-seoulbones-dark.yaml +++ b/themes/zenbones-seoulbones-dark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Seoulbones Dark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Zenbones Seoulbones Light" contrast: fg: 72.5 black: 0 diff --git a/themes/zenbones-seoulbones-light-bright.yaml b/themes/zenbones-seoulbones-light-bright.yaml index bbe590c7..c3ec7323 100644 --- a/themes/zenbones-seoulbones-light-bright.yaml +++ b/themes/zenbones-seoulbones-light-bright.yaml @@ -2,7 +2,7 @@ name: "Zenbones Seoulbones Light Bright" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 73.8 black: 0 diff --git a/themes/zenbones-seoulbones-light-dim.yaml b/themes/zenbones-seoulbones-light-dim.yaml index 39c640c1..a5d29452 100644 --- a/themes/zenbones-seoulbones-light-dim.yaml +++ b/themes/zenbones-seoulbones-light-dim.yaml @@ -2,7 +2,7 @@ name: "Zenbones Seoulbones Light Dim" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 64.3 black: 0 diff --git a/themes/zenbones-seoulbones-light.yaml b/themes/zenbones-seoulbones-light.yaml index be2f8f38..6623bbf1 100644 --- a/themes/zenbones-seoulbones-light.yaml +++ b/themes/zenbones-seoulbones-light.yaml @@ -2,7 +2,7 @@ name: "Zenbones Seoulbones Light" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Zenbones Seoulbones Dark" contrast: fg: 68.9 black: 0 diff --git a/themes/zenbones-tokyobones-dark-stark.yaml b/themes/zenbones-tokyobones-dark-stark.yaml index 10939095..86bc4fe7 100644 --- a/themes/zenbones-tokyobones-dark-stark.yaml +++ b/themes/zenbones-tokyobones-dark-stark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Tokyobones Dark Stark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 277 + pair: null contrast: fg: 74.5 black: 0 diff --git a/themes/zenbones-tokyobones-dark-warm.yaml b/themes/zenbones-tokyobones-dark-warm.yaml index 9dded78d..bfe2bcd8 100644 --- a/themes/zenbones-tokyobones-dark-warm.yaml +++ b/themes/zenbones-tokyobones-dark-warm.yaml @@ -2,7 +2,7 @@ name: "Zenbones Tokyobones Dark Warm" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 275 + pair: null contrast: fg: 71.5 black: 0 diff --git a/themes/zenbones-tokyobones-dark.yaml b/themes/zenbones-tokyobones-dark.yaml index bd606427..de489075 100644 --- a/themes/zenbones-tokyobones-dark.yaml +++ b/themes/zenbones-tokyobones-dark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Tokyobones Dark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 280 + pair: "Zenbones Tokyobones Light" contrast: fg: 73.8 black: 0 diff --git a/themes/zenbones-tokyobones-light-bright.yaml b/themes/zenbones-tokyobones-light-bright.yaml index aaf921a3..c41c630a 100644 --- a/themes/zenbones-tokyobones-light-bright.yaml +++ b/themes/zenbones-tokyobones-light-bright.yaml @@ -2,7 +2,7 @@ name: "Zenbones Tokyobones Light Bright" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 77.1 black: 0 diff --git a/themes/zenbones-tokyobones-light-dim.yaml b/themes/zenbones-tokyobones-light-dim.yaml index b37fa48e..233c0825 100644 --- a/themes/zenbones-tokyobones-light-dim.yaml +++ b/themes/zenbones-tokyobones-light-dim.yaml @@ -2,7 +2,7 @@ name: "Zenbones Tokyobones Light Dim" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 67.8 black: 0 diff --git a/themes/zenbones-tokyobones-light.yaml b/themes/zenbones-tokyobones-light.yaml index 1982d32f..0aec3a50 100644 --- a/themes/zenbones-tokyobones-light.yaml +++ b/themes/zenbones-tokyobones-light.yaml @@ -2,7 +2,7 @@ name: "Zenbones Tokyobones Light" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Zenbones Tokyobones Dark" contrast: fg: 72.5 black: 0 diff --git a/themes/zenbones-vimbones-light-bright.yaml b/themes/zenbones-vimbones-light-bright.yaml index 6f0456b6..c5ab0ccc 100644 --- a/themes/zenbones-vimbones-light-bright.yaml +++ b/themes/zenbones-vimbones-light-bright.yaml @@ -2,7 +2,7 @@ name: "Zenbones Vimbones Light Bright" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 92.7 black: 0 diff --git a/themes/zenbones-vimbones-light-dim.yaml b/themes/zenbones-vimbones-light-dim.yaml index 5eb3c8f6..56aad4b1 100644 --- a/themes/zenbones-vimbones-light-dim.yaml +++ b/themes/zenbones-vimbones-light-dim.yaml @@ -2,7 +2,7 @@ name: "Zenbones Vimbones Light Dim" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: 107 + pair: null contrast: fg: 82.6 black: 0 diff --git a/themes/zenbones-vimbones-light.yaml b/themes/zenbones-vimbones-light.yaml index 79aa8fb1..e09e3225 100644 --- a/themes/zenbones-vimbones-light.yaml +++ b/themes/zenbones-vimbones-light.yaml @@ -2,7 +2,7 @@ name: "Zenbones Vimbones Light" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: 107 + pair: null contrast: fg: 87.6 black: 0 diff --git a/themes/zenbones-zenburned-dark-stark.yaml b/themes/zenbones-zenburned-dark-stark.yaml index 92bc7966..1f116521 100644 --- a/themes/zenbones-zenburned-dark-stark.yaml +++ b/themes/zenbones-zenburned-dark-stark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Zenburned Dark Stark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 11 + pair: null contrast: fg: 83.4 black: 0 diff --git a/themes/zenbones-zenburned-dark-warm.yaml b/themes/zenbones-zenburned-dark-warm.yaml index 92e02565..65d92d09 100644 --- a/themes/zenbones-zenburned-dark-warm.yaml +++ b/themes/zenbones-zenburned-dark-warm.yaml @@ -2,7 +2,7 @@ name: "Zenbones Zenburned Dark Warm" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.1 black: 0 diff --git a/themes/zenbones-zenburned-dark.yaml b/themes/zenbones-zenburned-dark.yaml index 261b50f2..5b49e7bf 100644 --- a/themes/zenbones-zenburned-dark.yaml +++ b/themes/zenbones-zenburned-dark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Zenburned Dark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 81.4 black: 0 diff --git a/themes/zenbones-zenwritten-dark-stark.yaml b/themes/zenbones-zenwritten-dark-stark.yaml index babb3fca..77819f86 100644 --- a/themes/zenbones-zenwritten-dark-stark.yaml +++ b/themes/zenbones-zenwritten-dark-stark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Zenwritten Dark Stark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 65.1 black: 0 diff --git a/themes/zenbones-zenwritten-dark-warm.yaml b/themes/zenbones-zenwritten-dark-warm.yaml index 6d05ec67..443053f5 100644 --- a/themes/zenbones-zenwritten-dark-warm.yaml +++ b/themes/zenbones-zenwritten-dark-warm.yaml @@ -2,7 +2,7 @@ name: "Zenbones Zenwritten Dark Warm" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 63.8 black: 0 diff --git a/themes/zenbones-zenwritten-dark.yaml b/themes/zenbones-zenwritten-dark.yaml index 15869192..6b81df9b 100644 --- a/themes/zenbones-zenwritten-dark.yaml +++ b/themes/zenbones-zenwritten-dark.yaml @@ -2,7 +2,7 @@ name: "Zenbones Zenwritten Dark" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "Zenbones Zenwritten Light" contrast: fg: 64.5 black: 0 diff --git a/themes/zenbones-zenwritten-light-bright.yaml b/themes/zenbones-zenwritten-light-bright.yaml index b26d1a58..20a6633e 100644 --- a/themes/zenbones-zenwritten-light-bright.yaml +++ b/themes/zenbones-zenwritten-light-bright.yaml @@ -2,7 +2,7 @@ name: "Zenbones Zenwritten Light Bright" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 92.8 black: 0 diff --git a/themes/zenbones-zenwritten-light-dim.yaml b/themes/zenbones-zenwritten-light-dim.yaml index fd253053..1bf3af1d 100644 --- a/themes/zenbones-zenwritten-light-dim.yaml +++ b/themes/zenbones-zenwritten-light-dim.yaml @@ -2,7 +2,7 @@ name: "Zenbones Zenwritten Light Dim" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 82.7 black: 0 diff --git a/themes/zenbones-zenwritten-light.yaml b/themes/zenbones-zenwritten-light.yaml index 62d48152..11a9838e 100644 --- a/themes/zenbones-zenwritten-light.yaml +++ b/themes/zenbones-zenwritten-light.yaml @@ -2,7 +2,7 @@ name: "Zenbones Zenwritten Light" source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" - installs: 2700 + installs: 2701 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "Zenbones Zenwritten Dark" contrast: fg: 87.9 black: 0 diff --git a/themes/zenburn.yaml b/themes/zenburn.yaml index b01c01dd..1086176b 100644 --- a/themes/zenburn.yaml +++ b/themes/zenburn.yaml @@ -2,7 +2,7 @@ name: "Zenburn" source: marketplace_id: "swashata.beautiful-ui" version: "1.7.0" - installs: 121085 + installs: 121108 author: "swashata" repo: "https://github.com/swashata/vscode-beautiful-ui" url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/zene-dark-theme.yaml b/themes/zene-dark-theme.yaml index e43a148a..0315532a 100644 --- a/themes/zene-dark-theme.yaml +++ b/themes/zene-dark-theme.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 284 + pair: "Zene Light Theme" contrast: fg: 78.4 black: 0 diff --git a/themes/zeneth.yaml b/themes/zeneth.yaml index 4736abd3..51287eb9 100644 --- a/themes/zeneth.yaml +++ b/themes/zeneth.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 59.4 black: 0 diff --git a/themes/zenflow-noir.yaml b/themes/zenflow-noir.yaml index 6d0f7994..cb2ede83 100644 --- a/themes/zenflow-noir.yaml +++ b/themes/zenflow-noir.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 88.1 black: 0 diff --git a/themes/zenith-aurora.yaml b/themes/zenith-aurora.yaml index 12b859e5..8f7c5679 100644 --- a/themes/zenith-aurora.yaml +++ b/themes/zenith-aurora.yaml @@ -2,7 +2,7 @@ name: "Zenith Aurora" source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" - installs: 108 + installs: 109 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: 258 + pair: null contrast: fg: 87.7 black: 0 diff --git a/themes/zenith-dawn.yaml b/themes/zenith-dawn.yaml index 725c0c1f..c2b137fb 100644 --- a/themes/zenith-dawn.yaml +++ b/themes/zenith-dawn.yaml @@ -2,7 +2,7 @@ name: "Zenith Dawn" source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" - installs: 108 + installs: 109 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: "Zenith Midnight" contrast: fg: 79.3 black: 0 diff --git a/themes/zenith-dusk.yaml b/themes/zenith-dusk.yaml index cec9f8b8..416b7951 100644 --- a/themes/zenith-dusk.yaml +++ b/themes/zenith-dusk.yaml @@ -2,7 +2,7 @@ name: "Zenith Dusk" source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" - installs: 108 + installs: 109 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 284 + pair: null contrast: fg: 85.8 black: 0 diff --git a/themes/zenith-forest.yaml b/themes/zenith-forest.yaml index 07d92f20..3e48fd4a 100644 --- a/themes/zenith-forest.yaml +++ b/themes/zenith-forest.yaml @@ -2,7 +2,7 @@ name: "Zenith Forest" source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" - installs: 108 + installs: 109 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 153 + pair: null contrast: fg: 94.8 black: 0 diff --git a/themes/zenith-midnight.yaml b/themes/zenith-midnight.yaml index 277dce3d..9f72b9ae 100644 --- a/themes/zenith-midnight.yaml +++ b/themes/zenith-midnight.yaml @@ -2,7 +2,7 @@ name: "Zenith Midnight" source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" - installs: 108 + installs: 109 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: 285 + pair: "Zenith Dawn" contrast: fg: 92.9 black: 0 diff --git a/themes/zenith-neutral.yaml b/themes/zenith-neutral.yaml index 996a0400..f8d851ec 100644 --- a/themes/zenith-neutral.yaml +++ b/themes/zenith-neutral.yaml @@ -2,7 +2,7 @@ name: "Zenith Neutral" source: marketplace_id: "britown.vscode-theme-zenith" version: "0.0.23" - installs: 577 + installs: 578 author: "Britown" repo: "https://github.com/bkuzmanoski/vscode-theme-zenith" url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-zenith" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 64.5 black: 0 diff --git a/themes/zenith-ocean.yaml b/themes/zenith-ocean.yaml index 7b7f9696..94a9ceb9 100644 --- a/themes/zenith-ocean.yaml +++ b/themes/zenith-ocean.yaml @@ -2,7 +2,7 @@ name: "Zenith Ocean" source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" - installs: 108 + installs: 109 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "indigo" hue: 253 + pair: null contrast: fg: 90.1 black: 0 diff --git a/themes/zenith-ros.yaml b/themes/zenith-ros.yaml index e40c26c6..0b380391 100644 --- a/themes/zenith-ros.yaml +++ b/themes/zenith-ros.yaml @@ -2,7 +2,7 @@ name: "Zenith Rosé" source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" - installs: 108 + installs: 109 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "yellow" hue: null + pair: null contrast: fg: 87.4 black: 0 diff --git a/themes/zenith-zen.yaml b/themes/zenith-zen.yaml index 6bfc038e..8d957026 100644 --- a/themes/zenith-zen.yaml +++ b/themes/zenith-zen.yaml @@ -2,7 +2,7 @@ name: "Zenith Zen" source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" - installs: 108 + installs: 109 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 92.2 black: 0 diff --git a/themes/zenith.yaml b/themes/zenith.yaml index 2bb3850c..550cb835 100644 --- a/themes/zenith.yaml +++ b/themes/zenith.yaml @@ -2,7 +2,7 @@ name: "Zenith" source: marketplace_id: "britown.vscode-theme-zenith" version: "0.0.23" - installs: 577 + installs: 578 author: "Britown" repo: "https://github.com/bkuzmanoski/vscode-theme-zenith" url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-zenith" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 63.9 black: 0 diff --git a/themes/zenitria-amoled.yaml b/themes/zenitria-amoled.yaml index c38d5bb6..be0bb84d 100644 --- a/themes/zenitria-amoled.yaml +++ b/themes/zenitria-amoled.yaml @@ -2,7 +2,7 @@ name: "Zenitria AMOLED" source: marketplace_id: "Zenitria.zenitria-amoled" version: "1.0.2" - installs: 2551 + installs: 2553 author: "Zenitria" repo: "https://github.com/Zenitria/zenitria-amoled-vsc" url: "https://marketplace.visualstudio.com/items?itemName=Zenitria.zenitria-amoled" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 47.2 black: 0 diff --git a/themes/zero-wip.yaml b/themes/zero-wip.yaml index 860159c0..4b77c064 100644 --- a/themes/zero-wip.yaml +++ b/themes/zero-wip.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 56.2 black: 0 diff --git a/themes/zeus-turquoise.yaml b/themes/zeus-turquoise.yaml index 566c618d..b8678ba9 100644 --- a/themes/zeus-turquoise.yaml +++ b/themes/zeus-turquoise.yaml @@ -2,7 +2,7 @@ name: "Zeus Turquoise" source: marketplace_id: "UllasKunder.zeus-vscode-theme" version: "0.0.1" - installs: 694 + installs: 696 author: "Ullas Kunder" repo: "https://github.com/ullaskunder3/zeus-theme" url: "https://marketplace.visualstudio.com/items?itemName=UllasKunder.zeus-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 244 + pair: null contrast: fg: 77.4 black: 13 diff --git a/themes/zeus-yelo.yaml b/themes/zeus-yelo.yaml index a974ad2e..473ecaa2 100644 --- a/themes/zeus-yelo.yaml +++ b/themes/zeus-yelo.yaml @@ -2,7 +2,7 @@ name: "Zeus Yelo" source: marketplace_id: "UllasKunder.zeus-vscode-theme" version: "0.0.1" - installs: 694 + installs: 696 author: "Ullas Kunder" repo: "https://github.com/ullaskunder3/zeus-theme" url: "https://marketplace.visualstudio.com/items?itemName=UllasKunder.zeus-vscode-theme" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "magenta" hue: 284 + pair: null contrast: fg: 76.9 black: 12.4 diff --git a/themes/zhangpengtao-black.yaml b/themes/zhangpengtao-black.yaml index 6bb4ff04..5b4d0e5f 100644 --- a/themes/zhangpengtao-black.yaml +++ b/themes/zhangpengtao-black.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 105.6 black: 13.6 diff --git a/themes/zhe-qi.yaml b/themes/zhe-qi.yaml deleted file mode 100644 index b762aaf6..00000000 --- a/themes/zhe-qi.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "zhe-qi" -source: - marketplace_id: "zhe-qi.zheqi-theme" - version: "0.0.2" - installs: 67 - author: "zhe-qi" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=zhe-qi.zheqi-theme" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#8F8F8F" - red: "#F82A5D" - green: "#98D800" - yellow: "#E7DC60" - blue: "#5CCAEF" - magenta: "#F57F00" - cyan: "#A57FFF" - white: "#F1F1F1" - brightBlack: "#8F8F8F" - brightRed: "#F82A5D" - brightGreen: "#98D800" - brightYellow: "#E7DC60" - brightBlue: "#5CCAEF" - brightMagenta: "#F57F00" - brightCyan: "#A57FFF" - brightWhite: "#F1F1F1" -meta: - mode: "dark" - accent: "red" - hue: null - contrast: - fg: 107.9 - black: 42.1 - red: 37.8 - green: 71.8 - yellow: 83.4 - blue: 67 - magenta: 50.9 - cyan: 45.8 - white: 98.7 - brightBlack: 42.1 - brightRed: 37.8 - brightGreen: 71.8 - brightYellow: 83.4 - brightBlue: 67 - brightMagenta: 50.9 - brightCyan: 45.8 - brightWhite: 98.7 diff --git a/themes/zhongli.yaml b/themes/zhongli.yaml index ecae2245..c9f8fdf8 100644 --- a/themes/zhongli.yaml +++ b/themes/zhongli.yaml @@ -2,7 +2,7 @@ name: "Zhongli" source: marketplace_id: "jeooo.lapis-dei" version: "1.0.1" - installs: 1685 + installs: 1686 author: "jeooo`" repo: "https://github.com/jeoooo/zhongli-theme" url: "https://marketplace.visualstudio.com/items?itemName=jeooo.lapis-dei" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 24 + pair: null contrast: fg: 74.9 black: 0 diff --git a/themes/zhxo-lt.yaml b/themes/zhxo-lt.yaml index f787ca08..ab9b043e 100644 --- a/themes/zhxo-lt.yaml +++ b/themes/zhxo-lt.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 65.7 black: 100.7 diff --git a/themes/zhxo-red-experimental.yaml b/themes/zhxo-red-experimental.yaml deleted file mode 100644 index d68e0e4a..00000000 --- a/themes/zhxo-red-experimental.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "zhxo'red (experimental)" -source: - marketplace_id: "shwuy.zhxo-themes" - version: "2.0.1" - installs: 1481 - author: "shwuy" - repo: "https://github.com/sxhk0/.theme" - url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" -colors: - bg: "#1A1A1D" - fg: "#ABABAB" - black: "#3B3B3B" - red: "#E03C3C" - green: "#22CD8B" - yellow: "#EEC051" - blue: "#668BE2" - magenta: "#A34BB0" - cyan: "#10CCD5" - white: "#CBCBCB" - brightBlack: "#66676F" - brightRed: "#F08359" - brightGreen: "#3FE6A3" - brightYellow: "#FBFB7B" - brightBlue: "#81A6FD" - brightMagenta: "#C970D6" - brightCyan: "#4DEAEA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - contrast: - fg: 55.4 - black: 0 - red: 31.9 - green: 61.2 - yellow: 70.9 - blue: 40.1 - magenta: 26.2 - cyan: 63.5 - white: 73.7 - brightBlack: 22.3 - brightRed: 50.3 - brightGreen: 74.7 - brightYellow: 99.7 - brightBlue: 53.8 - brightMagenta: 42.8 - brightCyan: 80 - brightWhite: 106.5 diff --git a/themes/zhxo-st.yaml b/themes/zhxo-st.yaml index 794a31ca..bfddaf5a 100644 --- a/themes/zhxo-st.yaml +++ b/themes/zhxo-st.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 65.8 black: 0 diff --git a/themes/zhxo-yll.yaml b/themes/zhxo-yll.yaml index 9f22fcc9..d02bc215 100644 --- a/themes/zhxo-yll.yaml +++ b/themes/zhxo-yll.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 65.7 black: 0 diff --git a/themes/zinc.yaml b/themes/zinc.yaml index bc332bd8..76182ebc 100644 --- a/themes/zinc.yaml +++ b/themes/zinc.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 74.4 black: 8.6 diff --git a/themes/zokugun-obsidium.yaml b/themes/zokugun-obsidium.yaml index 99076f64..a2d8dafb 100644 --- a/themes/zokugun-obsidium.yaml +++ b/themes/zokugun-obsidium.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 84.2 black: 0 diff --git a/themes/zoren-breeze.yaml b/themes/zoren-breeze.yaml index a2544ea3..aa6a3a17 100644 --- a/themes/zoren-breeze.yaml +++ b/themes/zoren-breeze.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "orange" hue: 258 + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/ztok.yaml b/themes/ztok.yaml index a547113f..944511be 100644 --- a/themes/ztok.yaml +++ b/themes/ztok.yaml @@ -2,7 +2,7 @@ name: "Ztok" source: marketplace_id: "KrlosDev.ztok" version: "1.0.5" - installs: 885 + installs: 886 author: "KrlosDev" repo: "https://github.com/KrlosDev/ztok" url: "https://marketplace.visualstudio.com/items?itemName=KrlosDev.ztok" @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 58 black: 0 diff --git a/themes/zux-purple-minimal.yaml b/themes/zux-purple-minimal.yaml index d9ac6a7a..b9b07076 100644 --- a/themes/zux-purple-minimal.yaml +++ b/themes/zux-purple-minimal.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.5 black: 9.9 diff --git a/themes/zwel.yaml b/themes/zwel.yaml index 3b4134b6..7164e3b6 100644 --- a/themes/zwel.yaml +++ b/themes/zwel.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 186 + pair: null contrast: fg: 59.3 black: 0 diff --git a/themes/zxxn.yaml b/themes/zxxn.yaml index 2f88ca26..0a81cba6 100644 --- a/themes/zxxn.yaml +++ b/themes/zxxn.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: 262 + pair: null contrast: fg: 59.3 black: 0 diff --git a/themes/zygomatic-blue.yaml b/themes/zygomatic-blue.yaml index 302bc31f..f79185a8 100644 --- a/themes/zygomatic-blue.yaml +++ b/themes/zygomatic-blue.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.2 black: 35.4 diff --git a/themes/zyrotec.yaml b/themes/zyrotec.yaml index 3ea23753..b1ca5d9f 100644 --- a/themes/zyrotec.yaml +++ b/themes/zyrotec.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 106.9 black: 0 diff --git a/themes/zzhtheme-dark.yaml b/themes/zzhtheme-dark.yaml index bbd7c672..fe708a23 100644 --- a/themes/zzhtheme-dark.yaml +++ b/themes/zzhtheme-dark.yaml @@ -29,6 +29,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: "ZzhTheme Light" contrast: fg: 102 black: 0 diff --git a/themes/zzhtheme-light.yaml b/themes/zzhtheme-light.yaml index a98ad443..851e221d 100644 --- a/themes/zzhtheme-light.yaml +++ b/themes/zzhtheme-light.yaml @@ -29,6 +29,7 @@ meta: mode: "light" accent: "red" hue: null + pair: "ZzhTheme Dark" contrast: fg: 95.1 black: 99.7 From 70f7fbd5d04161c2b7be19a9b1a6d0a76d133a77 Mon Sep 17 00:00:00 2001 From: Ismael Canal Date: Wed, 18 Mar 2026 23:16:25 +0100 Subject: [PATCH 04/21] feat: add dedup and pair-themes pipeline scripts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - scripts/dedup-themes.ts: removes exact color duplicates, keeps highest installs - scripts/pair-themes.ts: links dark/light variants via meta.pair field - scrape-themes.ts: removed inline dedup (now a separate step) Pipeline: scrape → dedup → pair Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- scripts/dedup-themes.ts | 132 ++++++++++++++++++++++ scripts/pair-themes.ts | 241 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 373 insertions(+) create mode 100644 scripts/dedup-themes.ts create mode 100644 scripts/pair-themes.ts diff --git a/scripts/dedup-themes.ts b/scripts/dedup-themes.ts new file mode 100644 index 00000000..47192307 --- /dev/null +++ b/scripts/dedup-themes.ts @@ -0,0 +1,132 @@ +/** + * Theme Deduplication Script + * + * Finds themes with identical color palettes (by MD5 fingerprint), + * keeps the best one based on installs → rating → name length, + * and removes the rest. + * + * Usage: bun run scripts/dedup-themes.ts [--dry-run] + */ + +import { readFileSync, readdirSync, unlinkSync, writeFileSync } from 'node:fs'; +import { join } from 'node:path'; +import { createHash } from 'node:crypto'; +import { parseThemeYAML, ANSI_KEYS, type ThemeYAML, type ThemeColors } from '../cli/src/theme-schema'; + +const THEMES_DIR = join(import.meta.dir, '..', 'themes'); +const DRY_RUN = process.argv.includes('--dry-run'); + +// ── Fingerprint ── + +function colorFingerprint(colors: ThemeColors): string { + const values = [colors.bg, colors.fg, ...ANSI_KEYS.map(k => colors[k as keyof ThemeColors])]; + return createHash('md5').update(values.join(',')).digest('hex'); +} + +// ── Scoring ── +// Higher is better — installs dominate, then shorter name (original vs fork) + +function score(theme: ThemeYAML): number { + const installs = theme.source?.installs || 0; + const namePenalty = theme.name.length; // shorter names are more likely the original + return installs * 1000 - namePenalty; +} + +// ── Main ── + +function main() { + console.log('🧹 Theme Deduplication Script\n'); + + const files = readdirSync(THEMES_DIR).filter(f => f.endsWith('.yaml')); + console.log(` Loaded ${files.length} theme files`); + + // Group by color fingerprint + const groups = new Map(); + + let parseErrors = 0; + for (const filename of files) { + try { + const raw = readFileSync(join(THEMES_DIR, filename), 'utf8'); + const theme = parseThemeYAML(raw); + const fp = colorFingerprint(theme.colors); + + if (!groups.has(fp)) groups.set(fp, []); + groups.get(fp)!.push({ filename, theme }); + } catch { + parseErrors++; + } + } + + if (parseErrors > 0) { + console.log(` ⚠️ ${parseErrors} files failed to parse (skipped)`); + } + + // Find duplicates + const dupGroups = [...groups.entries()].filter(([, g]) => g.length > 1); + const totalDups = dupGroups.reduce((sum, [, g]) => sum + g.length - 1, 0); + + console.log(` ${groups.size} unique color fingerprints`); + console.log(` ${dupGroups.length} groups with duplicates (${totalDups} removals)\n`); + + if (DRY_RUN) { + console.log(' (dry run — no files modified)\n'); + } + + // Process each group: keep best, remove rest + let removed = 0; + const removedNames: string[] = []; + const index: Record = JSON.parse( + readFileSync(join(THEMES_DIR, 'index.json'), 'utf8') + ); + + let examples = 0; + for (const [, group] of dupGroups) { + // Sort by score descending — best first + group.sort((a, b) => score(b.theme) - score(a.theme)); + + const keeper = group[0]; + const dupes = group.slice(1); + + if (examples < 20) { + const keepInfo = `${keeper.theme.name} (${keeper.theme.source?.installs || 0} installs)`; + const dupeNames = dupes.map(d => d.theme.name).join(', '); + console.log(` ✅ Keep: ${keepInfo}`); + console.log(` ❌ Drop: ${dupeNames}`); + console.log(''); + examples++; + } + + for (const dupe of dupes) { + removedNames.push(dupe.theme.name); + + // Remove from index + delete index[dupe.theme.name]; + + if (!DRY_RUN) { + // Delete file + try { + unlinkSync(join(THEMES_DIR, dupe.filename)); + } catch {} + } + removed++; + } + } + + if (examples < dupGroups.length) { + console.log(` ... and ${dupGroups.length - examples} more groups\n`); + } + + // Write updated index + if (!DRY_RUN) { + const sortedIndex = Object.fromEntries( + Object.entries(index).sort((a, b) => a[0].localeCompare(b[0])) + ); + writeFileSync(join(THEMES_DIR, 'index.json'), JSON.stringify(sortedIndex, null, 2) + '\n', 'utf8'); + } + + console.log(`📊 Done!`); + console.log(` Removed: ${removed} duplicate themes`); + console.log(` Remaining: ${Object.keys(index).length} themes in index`); +} + +main(); diff --git a/scripts/pair-themes.ts b/scripts/pair-themes.ts new file mode 100644 index 00000000..1eb4ad2e --- /dev/null +++ b/scripts/pair-themes.ts @@ -0,0 +1,241 @@ +/** + * Theme Pairing Script + * + * Matches dark/light theme pairs by name similarity and same publisher. + * Writes `meta.pair` into each YAML file pointing to its counterpart. + * + * Usage: bun run scripts/pair-themes.ts [--dry-run] + */ + +import { readFileSync, writeFileSync, readdirSync } from 'fs'; +import { join } from 'path'; +import { parseThemeYAML, serializeThemeYAML, type ThemeYAML } from '../cli/src/theme-schema'; + +const THEMES_DIR = join(import.meta.dir, '..', 'themes'); +const DRY_RUN = process.argv.includes('--dry-run'); + +// ── Name normalization ── + +// Suffixes that indicate dark/light mode in theme names +const DARK_TOKENS = ['dark', 'night', 'midnight', 'noir', 'black', 'darker', 'deep', 'dim', 'dimmed']; +const LIGHT_TOKENS = ['light', 'day', 'dawn', 'morning', 'bright', 'lighter']; +const ALL_MODE_TOKENS = [...DARK_TOKENS, ...LIGHT_TOKENS]; + +// Patterns that separate the "base name" from the mode indicator +// e.g. "Gruvbox Dark Medium" → base: "Gruvbox Medium", mode suffix: "Dark" +// e.g. "Tokyo Night Light" → base: "Tokyo Night", mode suffix: "Light" (but "Night" is also part of the name) +function extractBaseName(name: string): { base: string; modeToken: string | null } { + const words = name.split(/\s+/); + + // Try removing a single mode token from the end first + const lastWord = words[words.length - 1].toLowerCase(); + if (ALL_MODE_TOKENS.includes(lastWord) && words.length > 1) { + return { + base: words.slice(0, -1).join(' '), + modeToken: lastWord, + }; + } + + // Try removing from the middle/start — find the last mode token + for (let i = words.length - 1; i >= 0; i--) { + const lower = words[i].toLowerCase(); + if (ALL_MODE_TOKENS.includes(lower) && words.length > 1) { + const remaining = [...words.slice(0, i), ...words.slice(i + 1)]; + return { + base: remaining.join(' '), + modeToken: lower, + }; + } + } + + return { base: name, modeToken: null }; +} + +function isOppositeMode(tokenA: string, tokenB: string): boolean { + const aIsDark = DARK_TOKENS.includes(tokenA); + const aIsLight = LIGHT_TOKENS.includes(tokenA); + const bIsDark = DARK_TOKENS.includes(tokenB); + const bIsLight = LIGHT_TOKENS.includes(tokenB); + return (aIsDark && bIsLight) || (aIsLight && bIsDark); +} + +function normalizeForComparison(s: string): string { + return s.toLowerCase().replace(/[^a-z0-9]/g, ''); +} + +// ── Load themes ── + +interface ThemeEntry { + filename: string; + theme: ThemeYAML; + base: string; + baseNorm: string; + modeToken: string | null; +} + +function loadAllThemes(): ThemeEntry[] { + const files = readdirSync(THEMES_DIR).filter(f => f.endsWith('.yaml')); + const entries: ThemeEntry[] = []; + + for (const filename of files) { + try { + const raw = readFileSync(join(THEMES_DIR, filename), 'utf8'); + const theme = parseThemeYAML(raw); + const { base, modeToken } = extractBaseName(theme.name); + entries.push({ + filename, + theme, + base, + baseNorm: normalizeForComparison(base), + modeToken, + }); + } catch { + // Skip unparseable files + } + } + + return entries; +} + +// ── Pairing logic ── + +function findPairs(entries: ThemeEntry[]): Map { + // Group by normalized base name + const groups = new Map(); + for (const entry of entries) { + if (!entry.modeToken) continue; // No mode indicator — can't pair + const key = entry.baseNorm; + if (!groups.has(key)) groups.set(key, []); + groups.get(key)!.push(entry); + } + + const pairs = new Map(); // theme name → paired theme name + + for (const [, group] of groups) { + if (group.length < 2) continue; + + // Separate into dark and light candidates + const darks = group.filter(e => e.modeToken && DARK_TOKENS.includes(e.modeToken)); + const lights = group.filter(e => e.modeToken && LIGHT_TOKENS.includes(e.modeToken)); + + if (darks.length === 0 || lights.length === 0) continue; + + // Same publisher gets priority — pair within publisher first + const pairedDarks = new Set(); + const pairedLights = new Set(); + + // Pass 1: Same publisher exact matches + for (const dark of darks) { + for (const light of lights) { + if (pairedDarks.has(dark.theme.name) || pairedLights.has(light.theme.name)) continue; + + const samePublisher = dark.theme.source.marketplace_id.split('.')[0] === + light.theme.source.marketplace_id.split('.')[0]; + + if (samePublisher && dark.modeToken && light.modeToken + && isOppositeMode(dark.modeToken, light.modeToken) + && dark.theme.meta.mode !== light.theme.meta.mode) { + pairs.set(dark.theme.name, light.theme.name); + pairs.set(light.theme.name, dark.theme.name); + pairedDarks.add(dark.theme.name); + pairedLights.add(light.theme.name); + } + } + } + + // Pass 2: Cross-publisher (only if unpaired and bases match exactly) + for (const dark of darks) { + if (pairedDarks.has(dark.theme.name)) continue; + for (const light of lights) { + if (pairedLights.has(light.theme.name)) continue; + if (dark.baseNorm === light.baseNorm && dark.modeToken && light.modeToken + && isOppositeMode(dark.modeToken, light.modeToken) + && dark.theme.meta.mode !== light.theme.meta.mode) { + pairs.set(dark.theme.name, light.theme.name); + pairs.set(light.theme.name, dark.theme.name); + pairedDarks.add(dark.theme.name); + pairedLights.add(light.theme.name); + break; + } + } + } + } + + return pairs; +} + +// ── Main ── + +function main() { + console.log('🔗 Theme Pairing Script\n'); + + const entries = loadAllThemes(); + console.log(` Loaded ${entries.length} themes`); + + const withMode = entries.filter(e => e.modeToken !== null); + console.log(` ${withMode.length} have a mode token (dark/light/night/day/...)`); + + const pairs = findPairs(entries); + console.log(` ${pairs.size / 2} pairs found\n`); + + if (DRY_RUN) { + console.log(' (dry run — no files modified)\n'); + } + + // Apply pairs + let updated = 0; + const entryMap = new Map(entries.map(e => [e.theme.name, e])); + + for (const [themeName, pairedWith] of pairs) { + const entry = entryMap.get(themeName); + if (!entry) continue; + + const currentPair = entry.theme.meta?.pair || null; + if (currentPair === pairedWith) continue; // Already set + + entry.theme.meta.pair = pairedWith; + + if (!DRY_RUN) { + const yaml = serializeThemeYAML(entry.theme); + writeFileSync(join(THEMES_DIR, entry.filename), yaml, 'utf8'); + } + + updated++; + } + + // Clear stale pairs (themes that had a pair but no longer match) + let cleared = 0; + for (const entry of entries) { + if (entry.theme.meta?.pair && !pairs.has(entry.theme.name)) { + entry.theme.meta.pair = null; + if (!DRY_RUN) { + const yaml = serializeThemeYAML(entry.theme); + writeFileSync(join(THEMES_DIR, entry.filename), yaml, 'utf8'); + } + cleared++; + } + } + + // Print some example pairs + const shown = new Set(); + let examples = 0; + for (const [name, paired] of pairs) { + if (shown.has(paired)) continue; + shown.add(name); + const a = entryMap.get(name)!; + const b = entryMap.get(paired)!; + console.log(` 🌗 ${a.theme.name} (${a.theme.meta.mode}) ↔ ${b.theme.name} (${b.theme.meta.mode})`); + examples++; + if (examples >= 30) { + console.log(` ... and ${pairs.size / 2 - 30} more`); + break; + } + } + + console.log(`\n📊 Done!`); + console.log(` Updated: ${updated} files`); + console.log(` Cleared: ${cleared} stale pairs`); + console.log(` Total pairs: ${pairs.size / 2}`); +} + +main(); From 588062697be5f7971c080e6a0b6b4d4e5da821e6 Mon Sep 17 00:00:00 2001 From: Ismael Canal Date: Wed, 18 Mar 2026 23:16:32 +0100 Subject: [PATCH 05/21] feat: multi-sort for theme list + rating fields in schema - theme list: --sort supports name, installs, rating, ratings, mode - chain multiple: --sort rating --sort installs (primary then tiebreaker) - ThemeSource: added rating and ratings fields - scrape-themes: stores averagerating and ratingcount from marketplace - removed inline dedup from scraper (use dedup-themes.ts instead) - fixed themes dir resolution for compiled binaries Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- cli/src/theme.ts | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/cli/src/theme.ts b/cli/src/theme.ts index 9bd777db..1428b364 100644 --- a/cli/src/theme.ts +++ b/cli/src/theme.ts @@ -67,7 +67,7 @@ ${bold}OPTIONS${reset} ${cyan}--show${reset} ${dim}Print theme colors and metadata${reset} ${cyan}--dry-run${reset} ${dim}Print generated output without writing file${reset} ${cyan}--all${reset} ${dim}Show all themes (list shows 100 by default)${reset} - ${cyan}--sort ${reset} ${dim}Sort by: name (default), installs, mode${reset} + ${cyan}--sort ${reset} ${dim}Sort by: name (default), installs, rating, ratings, mode. Chain multiple: --sort rating --sort installs${reset} ${cyan}--local${reset} ${dim}Use local themes/ directory instead of fetching from GitHub${reset} ${cyan}-h, --help${reset} ${dim}Show this help${reset} @@ -292,15 +292,12 @@ async function listThemes(local: boolean, all: boolean, sorts: SortOption[]): Pr for (const [name, filename] of entries) { try { const raw = readFileSync(join(themesDir, filename), 'utf8'); - const installsMatch = raw.match(/^\s*installs:\s*(\d+)/m); - const ratingMatch = raw.match(/^\s*rating:\s*([\d.]+)/m); - const ratingsMatch = raw.match(/^\s*ratings:\s*(\d+)/m); - const modeMatch = raw.match(/^\s*mode:\s*"?(dark|light)"?/m); + const theme = parseThemeYAML(raw); meta.set(name, { - installs: installsMatch ? parseInt(installsMatch[1]) : 0, - rating: ratingMatch ? parseFloat(ratingMatch[1]) : 0, - ratings: ratingsMatch ? parseInt(ratingsMatch[1]) : 0, - mode: modeMatch ? modeMatch[1] : 'dark', + installs: theme.source?.installs || 0, + rating: theme.source?.rating || 0, + ratings: theme.source?.ratings || 0, + mode: theme.meta?.mode || 'dark', }); } catch { meta.set(name, { installs: 0, rating: 0, ratings: 0, mode: 'dark' }); From 85324102bfea6590393dd8539d14f458c269a533 Mon Sep 17 00:00:00 2001 From: Ismael Canal Date: Wed, 18 Mar 2026 23:35:24 +0100 Subject: [PATCH 06/21] =?UTF-8?q?feat:=20theme=20--preview=20command=20?= =?UTF-8?q?=E2=80=94=20browser=20preview=20via=20Bun.serve?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - rampa theme "Tokyo Night" --preview --local - Spins up localhost:7432 serving the full Sarela-style preview page - Injects CSS vars + JS themes override for the selected theme - Loads paired theme (dark/light) if meta.pair is set - Footer shows theme author with link to marketplace - Template embedded as TS const — works in compiled binaries - scripts/embed-preview-template.js regenerates the embed after HTML edits Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- cli/src/theme-preview-template.html | 1875 ++++++++++++++++++++++++++ cli/src/theme-preview-template.ts | 1877 +++++++++++++++++++++++++++ cli/src/theme.ts | 192 ++- scripts/embed-preview-template.js | 14 + 4 files changed, 3956 insertions(+), 2 deletions(-) create mode 100644 cli/src/theme-preview-template.html create mode 100644 cli/src/theme-preview-template.ts create mode 100644 scripts/embed-preview-template.js diff --git a/cli/src/theme-preview-template.html b/cli/src/theme-preview-template.html new file mode 100644 index 00000000..749e53a2 --- /dev/null +++ b/cli/src/theme-preview-template.html @@ -0,0 +1,1875 @@ + + + + + + + + + + + + + + + Sarela — Bloom Colors + + + + +
+ + +
+ + + + +
+
+
📷 Extracted from photographs
+

Sarela

+

sarela /saˈɾela/

+

Warm earth tones meet vivid accents — colors born from real photographs

+
+ +

+ this palette was extracted from a collection of photographs using rampa's palette engine — k-means++ clustering on 50,000 sampled pixels per image, pooling ANSI-classified colors across 7 diverse shots. the result is a set of hues that feel grounded and natural because they literally come from nature. every color earned its place through frequency, chroma, and perceptual balance. +

+

– built with rampa

+ +
+ + +

Background & Foreground

+
+
+ Background + #1a1714 +
+
+ Foreground + #d5d0c8 +
+
+ +
+ + +
+
+

Colors

+
+ + + +
+
+ + +
+

Standard

+
+
+
+
Red
Vivid crimson
+
+
+
+
Green
Forest green
+
+
+
+
Blue
Deep cobalt
+
+
+
+
Yellow
Olive gold
+
+
+
+
Magenta
Warm orchid
+
+
+
+
Cyan
Deep teal
+
+
+

Bright

+
+
+
+
Bright Red
Coral flame
+
+
+
+
Bright Green
Spring leaf
+
+
+
+
Bright Blue
Sky blue
+
+
+
+
Bright Yellow
Lemon grass
+
+
+
+
Bright Magenta
Pink lavender
+
+
+
+
Bright Cyan
Seafoam
+
+
+
+ + +
+
+
+ + +
+
+
+
+ +
+ + +
+

Harmony

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+ + +
+
+

Previews

+
+ + + + +
+
+ + +
+
+
+
+
+
+
+
+
# Sarela Night
+
❯ cat palette.ts
+
 
+
import { palette, color } from "@basiclines/rampa-sdk"
+
 
+
const colors = palette("photo.jpg")
+
  .ansi({ count: 15 })
+
  .sortBy("L")
+
 
+
for (const c of colors) {
+
  console.log(color(c.hex).oklch)
+
}
+
# → { l: 0.58, c: 0.218, h: 18 }
+
+
+
+ + +
+
+
+
JavaScript
+
+const theme = { + name: 'Sarela Night', + colors: 16, +}; + +function applyTheme(el) { + const bg = getColor('bg'); + el.style.background = bg; + return theme; +} +
+
+
+
HTML / CSS
+
+<div class="sarela"> + <h1>Sarela</h1> +</div> + +<style> +.sarela { + background: #1a1714; + color: #d5d0c8; + font-family: Georgia; +} +</style> +
+
+
+
Python
+
+from dataclasses import dataclass + +# colors from photographs +@dataclass +class Theme: + name: str = "Sarela" + bg: str = "#1a1714" + fg: str = "#d5d0c8" +
+
+
+
Rust
+
+use serde::{Deserialize}; + +// photo-derived palette +#[derive(Deserialize)] +struct Palette { + bg: String, + fg: String, + colors: Vec<Color>, +} +
+
+
+
+ + +
+
+
+

Buttons

+
+ + + + + +
+
+ +
+

Badges & Tags

+
+ Stable + Beta + Deprecated + New + Theme + v1.0 +
+
+ +
+

Form Inputs

+
+ + +
+
+ +
+

Typography

+
+

Heading in Sarela

+

Body text with a link and some inline code to show how the palette works in real content.

+
+
+ +
+

Alerts

+
+ ✓ Theme applied successfully +
+
+ ✕ Invalid hex value +
+
+ ℹ 16 colors available +
+
+ +
+

Status

+
+
+
+ Terminal Active +
+
+
+ Editor Loading +
+
+
+ Linter Error +
+
+
+ Git sync Synced +
+
+
+
+
+ + +
+
+
+
+
Color theme · 16 colors · Night & Day
+
Sarela
+
photo-derived palette
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
"warm earth tones meet vivid accents — colors born from real photographs"
+
built with rampa by @basiclines
+
+
+
+
+ +
+ + +
+
+

Export

+
+
+ + +
+ +
+ + + + + + + +
+
+
+
+ +
+
+
+
+

+ Built with rampa by @basiclines + · + Colors extracted from photographs using k-means++ clustering +

+
+ +
Copied!
+ + + + diff --git a/cli/src/theme-preview-template.ts b/cli/src/theme-preview-template.ts new file mode 100644 index 00000000..9922ba5a --- /dev/null +++ b/cli/src/theme-preview-template.ts @@ -0,0 +1,1877 @@ +// Auto-generated — do not edit. Run: node scripts/embed-preview-template.js +export const PREVIEW_TEMPLATE = ` + + + + + + + + + + + + + + Sarela — Bloom Colors + + + + +
+ + +
+ + + + +
+
+
📷 Extracted from photographs
+

Sarela

+

sarela /saˈɾela/

+

Warm earth tones meet vivid accents — colors born from real photographs

+
+ +

+ this palette was extracted from a collection of photographs using rampa's palette engine — k-means++ clustering on 50,000 sampled pixels per image, pooling ANSI-classified colors across 7 diverse shots. the result is a set of hues that feel grounded and natural because they literally come from nature. every color earned its place through frequency, chroma, and perceptual balance. +

+

– built with rampa

+ +
+ + +

Background & Foreground

+
+
+ Background + #1a1714 +
+
+ Foreground + #d5d0c8 +
+
+ +
+ + +
+
+

Colors

+
+ + + +
+
+ + +
+

Standard

+
+
+
+
Red
Vivid crimson
+
+
+
+
Green
Forest green
+
+
+
+
Blue
Deep cobalt
+
+
+
+
Yellow
Olive gold
+
+
+
+
Magenta
Warm orchid
+
+
+
+
Cyan
Deep teal
+
+
+

Bright

+
+
+
+
Bright Red
Coral flame
+
+
+
+
Bright Green
Spring leaf
+
+
+
+
Bright Blue
Sky blue
+
+
+
+
Bright Yellow
Lemon grass
+
+
+
+
Bright Magenta
Pink lavender
+
+
+
+
Bright Cyan
Seafoam
+
+
+
+ + +
+
+
+ + +
+
+
+
+ +
+ + +
+

Harmony

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+ + +
+
+

Previews

+
+ + + + +
+
+ + +
+
+
+
+
+
+
+
+
# Sarela Night
+
❯ cat palette.ts
+
 
+
import { palette, color } from "@basiclines/rampa-sdk"
+
 
+
const colors = palette("photo.jpg")
+
  .ansi({ count: 15 })
+
  .sortBy("L")
+
 
+
for (const c of colors) {
+
  console.log(color(c.hex).oklch)
+
}
+
# → { l: 0.58, c: 0.218, h: 18 }
+
+
+
+ + +
+
+
+
JavaScript
+
+const theme = { + name: 'Sarela Night', + colors: 16, +}; + +function applyTheme(el) { + const bg = getColor('bg'); + el.style.background = bg; + return theme; +} +
+
+
+
HTML / CSS
+
+<div class="sarela"> + <h1>Sarela</h1> +</div> + +<style> +.sarela { + background: #1a1714; + color: #d5d0c8; + font-family: Georgia; +} +</style> +
+
+
+
Python
+
+from dataclasses import dataclass + +# colors from photographs +@dataclass +class Theme: + name: str = "Sarela" + bg: str = "#1a1714" + fg: str = "#d5d0c8" +
+
+
+
Rust
+
+use serde::{Deserialize}; + +// photo-derived palette +#[derive(Deserialize)] +struct Palette { + bg: String, + fg: String, + colors: Vec<Color>, +} +
+
+
+
+ + +
+
+
+

Buttons

+
+ + + + + +
+
+ +
+

Badges & Tags

+
+ Stable + Beta + Deprecated + New + Theme + v1.0 +
+
+ +
+

Form Inputs

+
+ + +
+
+ +
+

Typography

+
+

Heading in Sarela

+

Body text with a link and some inline code to show how the palette works in real content.

+
+
+ +
+

Alerts

+
+ ✓ Theme applied successfully +
+
+ ✕ Invalid hex value +
+
+ ℹ 16 colors available +
+
+ +
+

Status

+
+
+
+ Terminal Active +
+
+
+ Editor Loading +
+
+
+ Linter Error +
+
+
+ Git sync Synced +
+
+
+
+
+ + +
+
+
+
+
Color theme · 16 colors · Night & Day
+
Sarela
+
photo-derived palette
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
"warm earth tones meet vivid accents — colors born from real photographs"
+
built with rampa by @basiclines
+
+
+
+
+ +
+ + +
+
+

Export

+
+
+ + +
+ +
+ + + + + + + +
+
+
+
+ +
+
+
+
+

+ Built with rampa by @basiclines + · + Colors extracted from photographs using k-means++ clustering +

+
+ +
Copied!
+ + + + +`; diff --git a/cli/src/theme.ts b/cli/src/theme.ts index 1428b364..aece7847 100644 --- a/cli/src/theme.ts +++ b/cli/src/theme.ts @@ -12,9 +12,11 @@ import { readFileSync, writeFileSync, mkdirSync, existsSync, readdirSync } from 'node:fs'; import { join, resolve, dirname } from 'node:path'; import { homedir, platform } from 'node:os'; +import { spawnSync } from 'node:child_process'; import { parseThemeYAML, type ThemeYAML } from './theme-schema'; import { generators, SUPPORTED_APPS, themeFileName } from './theme-generators/index'; import { supportsTruecolor } from './utils/terminal-colors'; +import { PREVIEW_TEMPLATE } from './theme-preview-template'; function hexToRgbTuple(hex: string): [number, number, number] { const h = hex.replace('#', ''); @@ -35,7 +37,7 @@ const GITHUB_RAW_BASE = 'https://raw.githubusercontent.com/basiclines/rampa-stud type SortOption = 'name' | 'installs' | 'rating' | 'ratings' | 'mode'; interface ThemeArgs { - command: 'list' | 'show' | 'install'; + command: 'list' | 'show' | 'install' | 'preview'; name: string; app: string; dryRun: boolean; @@ -65,6 +67,7 @@ ${bold}SUPPORTED APPS${reset} ${bold}OPTIONS${reset} ${cyan}--install ${reset} ${dim}Target app to generate theme for${reset} ${cyan}--show${reset} ${dim}Print theme colors and metadata${reset} + ${cyan}--preview${reset} ${dim}Open interactive browser preview${reset} ${cyan}--dry-run${reset} ${dim}Print generated output without writing file${reset} ${cyan}--all${reset} ${dim}Show all themes (list shows 100 by default)${reset} ${cyan}--sort ${reset} ${dim}Sort by: name (default), installs, rating, ratings, mode. Chain multiple: --sort rating --sort installs${reset} @@ -132,6 +135,12 @@ export function parseThemeArgs(argv: string[]): ThemeArgs { continue; } + if (arg === '--preview') { + args.command = 'preview'; + i++; + continue; + } + if (arg === '--sort' && argv[i + 1]) { const val = argv[++i] as SortOption; if (['name', 'installs', 'rating', 'ratings', 'mode'].includes(val)) { @@ -485,7 +494,178 @@ function suggestSimilar(query: string, names: string[]): void { } } -// ── Main ── +// ── Preview ── + +function buildThemeJS(theme: ThemeYAML, mode: 'dark' | 'light'): string { + const c = theme.colors; + const contrast = theme.meta.contrast; + const makeDescs = () => { + const result: Record = { + bg: `mode: ${theme.meta.mode}`, + fg: `Lc ${contrast.fg}`, + }; + for (const k of ['black','red','green','yellow','blue','magenta','cyan','white', + 'brightBlack','brightRed','brightGreen','brightYellow', + 'brightBlue','brightMagenta','brightCyan','brightWhite']) { + result[k] = `Lc ${contrast[k as keyof typeof contrast]}`; + } + return result; + }; + + return JSON.stringify({ + name: theme.name, + variant: mode === 'dark' ? 'Dark' : 'Light', + subtitle: [ + `${theme.meta.mode} mode`, + theme.meta.accent ? `accent: ${theme.meta.accent}` : null, + theme.meta.hue !== null ? `hue: ${theme.meta.hue}°` : null, + theme.source?.installs ? `${theme.source.installs.toLocaleString()} installs` : null, + ].filter(Boolean).join(' · '), + terminalComment: `# ${theme.name}`, + bg: c.bg, fg: c.fg, + black: c.black, white: c.white, + black_bright: c.brightBlack, white_bright: c.brightWhite, + colors: { + red: c.red, green: c.green, blue: c.blue, yellow: c.yellow, + magenta: c.magenta, cyan: c.cyan, + red_bright: c.brightRed, green_bright: c.brightGreen, + blue_bright: c.brightBlue, yellow_bright: c.brightYellow, + magenta_bright: c.brightMagenta, cyan_bright: c.brightCyan, + }, + descs: makeDescs(), + }); +} + +function buildCSSVars(theme: ThemeYAML, selector: string): string { + const c = theme.colors; + const isLight = theme.meta.mode === 'light'; + const cardBg = isLight ? '#ffffff' : adjustHex(c.bg, 8); + const muted = isLight + ? `rgba(${hexToRgbTuple(c.fg).join(',')}, 0.5)` + : `rgba(${hexToRgbTuple(c.fg).join(',')}, 0.45)`; + return ` ${selector} { + --bg: ${c.bg}; + --fg: ${c.fg}; + --card-bg: ${cardBg}; + --card-border: rgba(${hexToRgbTuple(c.fg).join(',')}, 0.08); + --card-shadow: rgba(0,0,0,0.25); + --card-shadow-hover: rgba(0,0,0,0.4); + --muted: ${muted}; + --terminal-bg: ${c.bg}; + --terminal-fg: ${c.fg}; + --terminal-bar: rgba(${isLight ? '0,0,0,0.06' : '255,255,255,0.06'}); + --red: ${c.red}; + --green: ${c.green}; + --blue: ${c.blue}; + --yellow: ${c.yellow}; + --magenta: ${c.magenta}; + --cyan: ${c.cyan}; + --red-bright: ${c.brightRed}; + --green-bright: ${c.brightGreen}; + --blue-bright: ${c.brightBlue}; + --yellow-bright: ${c.brightYellow}; + --magenta-bright: ${c.brightMagenta}; + --cyan-bright: ${c.brightCyan}; + }`; +} + +function adjustHex(hex: string, amount: number): string { + const [r, g, b] = hexToRgbTuple(hex); + const clamp = (v: number) => Math.max(0, Math.min(255, v)); + return `#${[r, g, b].map(v => clamp(v + amount).toString(16).padStart(2, '0')).join('')}`; +} + +async function previewTheme(name: string, local: boolean): Promise { + const index = await fetchIndex(local); + const file = findTheme(index, name); + if (!file) { + console.error(`Theme not found: "${name}"`); + suggestSimilar(name, Object.keys(index)); + process.exit(1); + } + + const theme = await fetchTheme(file, local); + let pairTheme: ThemeYAML | null = null; + + if (theme.meta.pair) { + const pairFile = findTheme(index, theme.meta.pair); + if (pairFile) { + try { pairTheme = await fetchTheme(pairFile, local); } catch {} + } + } + + // Determine which is dark and which is light + const darkTheme = theme.meta.mode === 'dark' ? theme : (pairTheme?.meta.mode === 'dark' ? pairTheme : theme); + const lightTheme = theme.meta.mode === 'light' ? theme : (pairTheme?.meta.mode === 'light' ? pairTheme : null); + + // Load template — embedded at build time for compiled binary support + let html = PREVIEW_TEMPLATE; + + // Inject override + `; + + html = html.replace('', injected + '\n'); + + // Replace exact footer content + const footerOld = `Built with rampa by @basiclines + · + Colors extracted from photographs using k-means++ clustering`; + const authorLine = theme.source?.author + ? `Theme by ${theme.source.author}  ·  ` + : ''; + const footerNew = `${authorLine}Built with rampa — theme preview`; + html = html.replace(footerOld, footerNew); + + // Serve with Bun + const PORT = 7432; + const server = Bun.serve({ + port: PORT, + fetch() { + return new Response(html, { headers: { 'Content-Type': 'text/html; charset=utf-8' } }); + }, + }); + + const url = `http://localhost:${PORT}`; + console.log(`\n 🎨 Previewing: ${theme.name}`); + if (pairTheme) console.log(` 🔗 Paired with: ${pairTheme.name}`); + console.log(` ${url}\n`); + console.log(` Press Ctrl+C to stop\n`); + + // Open browser + const opener = platform() === 'darwin' ? 'open' : platform() === 'win32' ? 'start' : 'xdg-open'; + spawnSync(opener, [url]); + + // Keep server alive — setInterval prevents the process from exiting + await new Promise((resolve) => { + const interval = setInterval(() => { + if (!server.url) { clearInterval(interval); resolve(); } + }, 1000); + process.on('SIGINT', () => { clearInterval(interval); server.stop(); resolve(); }); + process.on('SIGTERM', () => { clearInterval(interval); server.stop(); resolve(); }); + }); +} export async function runTheme(argv: string[]): Promise { const args = parseThemeArgs(argv); @@ -515,5 +695,13 @@ export async function runTheme(argv: string[]): Promise { } await installTheme(args.name, args.app, args.dryRun, args.local); break; + + case 'preview': + if (!args.name) { + console.error('Usage: rampa theme --preview'); + process.exit(1); + } + await previewTheme(args.name, args.local); + break; } } diff --git a/scripts/embed-preview-template.js b/scripts/embed-preview-template.js new file mode 100644 index 00000000..3f81fcae --- /dev/null +++ b/scripts/embed-preview-template.js @@ -0,0 +1,14 @@ +#!/usr/bin/env node +/** + * Embeds cli/src/theme-preview-template.html into a TS const for compiled binary support. + * Run after editing the HTML template: node scripts/embed-preview-template.js + */ +const fs = require('fs'); +const path = require('path'); + +const root = path.join(__dirname, '..'); +const html = fs.readFileSync(path.join(root, 'cli/src/theme-preview-template.html'), 'utf8'); +const escaped = html.replace(/\\/g, '\\\\').replace(/`/g, '\\`').replace(/\${/g, '\\${'); +const ts = `// Auto-generated — do not edit. Run: node scripts/embed-preview-template.js\nexport const PREVIEW_TEMPLATE = \`${escaped}\`;\n`; +fs.writeFileSync(path.join(root, 'cli/src/theme-preview-template.ts'), ts); +console.log(`✅ Embedded ${html.length} chars → cli/src/theme-preview-template.ts`); From c0c3173fb8848f39c16bd5ba0bc8a2a3475679f4 Mon Sep 17 00:00:00 2001 From: Ismael Canal Date: Wed, 18 Mar 2026 23:45:13 +0100 Subject: [PATCH 07/21] feat: polish --preview UI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Hide dark/light toggle when theme has no pair - Default color view to list mode - APCA contrast shown in color list desc column - Banner: theme name, hide romanji/tagline, proper poster-meta - origin-badge repurposed for accent · author · repo chips - Export section replaced with Install command (OS-filtered app select + copy) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- cli/src/theme.ts | 168 +++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 164 insertions(+), 4 deletions(-) diff --git a/cli/src/theme.ts b/cli/src/theme.ts index aece7847..a64535f7 100644 --- a/cli/src/theme.ts +++ b/cli/src/theme.ts @@ -504,10 +504,16 @@ function buildThemeJS(theme: ThemeYAML, mode: 'dark' | 'light'): string { bg: `mode: ${theme.meta.mode}`, fg: `Lc ${contrast.fg}`, }; - for (const k of ['black','red','green','yellow','blue','magenta','cyan','white', - 'brightBlack','brightRed','brightGreen','brightYellow', - 'brightBlue','brightMagenta','brightCyan','brightWhite']) { - result[k] = `Lc ${contrast[k as keyof typeof contrast]}`; + // Map to underscore keys used by the template's colorMeta array + const keyMap: Record = { + black: 'black', red: 'red', green: 'green', yellow: 'yellow', + blue: 'blue', magenta: 'magenta', cyan: 'cyan', white: 'white', + brightBlack: 'black_bright', brightRed: 'red_bright', brightGreen: 'green_bright', + brightYellow: 'yellow_bright', brightBlue: 'blue_bright', + brightMagenta: 'magenta_bright', brightCyan: 'cyan_bright', brightWhite: 'white_bright', + }; + for (const [k, mapped] of Object.entries(keyMap)) { + result[mapped] = `Lc ${contrast[k as keyof typeof contrast]}`; } return result; }; @@ -616,12 +622,166 @@ async function previewTheme(name: string, local: boolean): Promise { /* ── Theme override: ${theme.name} ── */ ${darkCSS} ${lightCSS} + /* ── Install section styles ── */ + .install-section { margin-top: 1rem; } + .install-row { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; } + .install-select { + background: var(--card-bg); color: var(--fg); + border: 1px solid var(--card-border); border-radius: 8px; + padding: 0.4rem 0.75rem; font-size: 0.85rem; font-family: inherit; + cursor: pointer; outline: none; + } + .install-select:focus { border-color: var(--fg); } + .install-cmd { + flex: 1; min-width: 0; + background: var(--card-bg); border: 1px solid var(--card-border); + border-radius: 8px; padding: 0.6rem 1rem; + font-family: 'SFMono-Regular', 'Consolas', monospace; font-size: 0.85rem; + color: var(--fg); white-space: nowrap; overflow-x: auto; + display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; + } + .install-cmd code { flex: 1; } + .install-cmd .cl-key { color: var(--fg); } + .install-cmd .cl-value { color: var(--magenta); font-weight: 600; } + .install-copy { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.8rem; padding: 0; flex-shrink: 0; } + .install-copy:hover { color: var(--fg); } `; From 4f7e339a8e0b19ce8896750fea812cea0b301156 Mon Sep 17 00:00:00 2001 From: Ismael Canal Date: Wed, 18 Mar 2026 23:49:12 +0100 Subject: [PATCH 08/21] chore: run dedup + pair pipeline on full theme dataset - Removed 34 exact color duplicates (kept highest installs) - Linked 373 dark/light pairs via meta.pair field - Updated index.json to reflect removed duplicates Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- themes/07-dark.yaml | 2 + themes/07-light.yaml | 2 + themes/0a515-dark.yaml | 2 + themes/0x96f-theme.yaml | 2 + themes/1.yaml | 12 +-- themes/10004ok-dark.yaml | 52 +++++++++++ themes/10x-dark-theme.yaml | 2 + themes/1977.yaml | 2 + themes/1989.yaml | 2 + themes/19th-century.yaml | 2 + themes/1dark-poncho-hc.yaml | 2 + themes/1mm-dracula.yaml | 2 + themes/2-colors.yaml | 2 + themes/2077.yaml | 2 + themes/24.yaml | 2 + themes/25-blue.yaml | 50 +++++++++++ themes/2am.yaml | 2 + themes/365-6-coder-theme.yaml | 2 + themes/365-day-october-dark.yaml | 2 + themes/3xay.yaml | 2 + themes/4-colours.yaml | 2 + themes/404-flat.yaml | 2 + themes/404-muted.yaml | 50 +++++++++++ themes/42nd.yaml | 2 + themes/4am-session-aqua.yaml | 2 + themes/4am-session-blue.yaml | 2 + themes/4am-session-green.yaml | 2 + themes/4am-session-orange.yaml | 2 + themes/4am-session-red.yaml | 2 + themes/4am-session-yellow.yaml | 2 + themes/6szn.yaml | 2 + themes/73nko-dark.yaml | 50 +++++++++++ themes/73nko-light.yaml | 50 +++++++++++ themes/7lou-theme.yaml | 2 + themes/8-bit-dark.yaml | 2 + themes/8-bit-light-high-contrast.yaml | 3 + themes/8-bit-light.yaml | 2 + themes/8-bit-theme.yaml | 2 + themes/80-neon-vibes-fluor.yaml | 2 + themes/80-neon-vibes.yaml | 2 + themes/808s-heartbreak-theme.yaml | 2 + themes/8v.yaml | 2 + themes/8x8-dark-fork.yaml | 2 + themes/8x8-darker.yaml | 2 + themes/8x8-fork.yaml | 52 +++++++++++ themes/9-way-ticket.yaml | 2 + themes/a-2-theme.yaml | 2 + themes/a-cup-of-coffee.yaml | 2 + themes/a-github-dark-dimmed-1-red.yaml | 2 + themes/a-github-dark-dimmed-2-orange.yaml | 2 + themes/a-github-dark-dimmed-3-green.yaml | 2 + themes/a-github-dark-dimmed-4-blue.yaml | 2 + themes/a-github-dark-dimmed-5-purple.yaml | 2 + themes/a-github-dark-dimmed-brown.yaml | 2 + themes/a-github-dark-dimmed-muted.yaml | 2 + themes/a-github-dark-dimmed-vampire.yaml | 2 + themes/a-github-dark-high-contrast-1-red.yaml | 2 + .../a-github-dark-high-contrast-2-orange.yaml | 2 + .../a-github-dark-high-contrast-3-green.yaml | 2 + .../a-github-dark-high-contrast-4-blue.yaml | 2 + .../a-github-dark-high-contrast-5-purple.yaml | 2 + themes/a-github-dark-muted.yaml | 2 + themes/a-github-dark-vampire.yaml | 2 + themes/a-github-light-1-red.yaml | 2 + themes/a-github-light-2-orange.yaml | 2 + themes/a-github-light-3-green.yaml | 2 + themes/a-github-light-4-blue.yaml | 2 + themes/a-github-light-5-purple.yaml | 2 + themes/a-green-cat-dimmed.yaml | 2 + themes/a-green-cat.yaml | 52 +++++++++++ themes/a-j-light.yaml | 52 +++++++++++ themes/aauu.yaml | 2 + themes/ab-dark.yaml | 2 + themes/abcdef.yaml | 2 + themes/abe-land.yaml | 2 + themes/abissal.yaml | 2 + themes/aboc.yaml | 2 + themes/abolkog-dark.yaml | 2 + themes/abolkog-light.yaml | 2 + themes/absent-contrast.yaml | 2 + themes/absent-light.yaml | 2 + themes/absent.yaml | 2 + themes/abstract-mh.yaml | 2 + themes/abys-zora-dark.yaml | 52 +++++++++++ themes/abysal-marble.yaml | 52 +++++++++++ themes/abysal-obsidian.yaml | 52 +++++++++++ themes/abyskai.yaml | 2 + themes/abyss.yaml | 2 + themes/abyssal-anime.yaml | 52 +++++++++++ themes/abyssal-black.yaml | 52 +++++++++++ themes/abyssal-blue.yaml | 52 +++++++++++ themes/abyssal-catppuccin.yaml | 52 +++++++++++ themes/abyssal-dark.yaml | 52 +++++++++++ themes/abyssal-dracula.yaml | 52 +++++++++++ themes/abyssal-e-ink.yaml | 52 +++++++++++ themes/abyssal-everforest.yaml | 52 +++++++++++ themes/abyssal-gruvbox.yaml | 52 +++++++++++ themes/abyssal-hacker.yaml | 52 +++++++++++ themes/abyssal-latte.yaml | 52 +++++++++++ themes/abyssal-mirage.yaml | 52 +++++++++++ themes/abyssal-nord.yaml | 52 +++++++++++ themes/abyssal-tokyo-night.yaml | 52 +++++++++++ themes/acario.yaml | 2 + themes/access-color-theme.yaml | 52 +++++++++++ themes/ace-palenight.yaml | 52 +++++++++++ themes/acekaizen-code-theme.yaml | 52 +++++++++++ themes/acequartz.yaml | 2 + themes/acid-trip.yaml | 52 +++++++++++ themes/aclear-dark.yaml | 2 + themes/acme.yaml | 2 + themes/aconitum.yaml | 52 +++++++++++ themes/acs-cozy-dark.yaml | 2 + themes/adapt-dark.yaml | 2 + themes/adark.yaml | 2 + themes/adeol.yaml | 3 + themes/adey-coder-deep-dark.yaml | 2 + themes/adey-coder.yaml | 2 + themes/adonis.yaml | 2 + themes/advancedbat.yaml | 2 + themes/adventuresinparadise.yaml | 52 +++++++++++ themes/aelmouny11-theme.yaml | 2 + themes/aeridia.yaml | 2 + themes/aesir-theme.yaml | 2 + themes/aesthetic-dark.yaml | 2 + themes/aesthetic.yaml | 2 + themes/aether-abyss.yaml | 2 + themes/aether-abyssal.yaml | 2 + themes/aether-arctic.yaml | 2 + themes/aether-atlantis.yaml | 2 + themes/aether-aurora.yaml | 2 + themes/aether-borealis.yaml | 2 + themes/aether-carbon.yaml | 2 + themes/aether-clarity.yaml | 2 + themes/aether-coffee-dark.yaml | 2 + themes/aether-coffee.yaml | 2 + themes/aether-cosmos.yaml | 2 + themes/aether-dark-space.yaml | 2 + themes/aether-dark.yaml | 2 + themes/aether-dawn.yaml | 2 + themes/aether-deep-ocean.yaml | 2 + themes/aether-depths.yaml | 2 + themes/aether-dusk.yaml | 2 + themes/aether-emerald.yaml | 2 + themes/aether-forest.yaml | 2 + themes/aether-glass.yaml | 2 + themes/aether-light.yaml | 2 + themes/aether-mariana.yaml | 2 + themes/aether-matrix.yaml | 2 + themes/aether-midnight.yaml | 2 + themes/aether-nautilus.yaml | 2 + themes/aether-nebula.yaml | 2 + themes/aether-neon.yaml | 2 + themes/aether-neptune.yaml | 2 + themes/aether-oceanic.yaml | 2 + themes/aether-quantum.yaml | 2 + themes/aether-reef.yaml | 2 + themes/aether-stellar.yaml | 2 + themes/aether-tempest.yaml | 2 + themes/aether-tidal.yaml | 2 + themes/aether-trench-contrast.yaml | 2 + themes/aether-twilight.yaml | 2 + themes/aether-void.yaml | 2 + themes/aether-zen.yaml | 2 + themes/afro.yaml | 52 +++++++++++ themes/afterglow-fade.yaml | 52 +++++++++++ themes/afternoon-delight-subtle.yaml | 2 + themes/afterpurple.yaml | 2 + themes/agathist-dark.yaml | 2 + themes/agen-theme.yaml | 2 + themes/ahoy-theme.yaml | 2 + themes/ahroun.yaml | 2 + themes/aka-kuro-light.yaml | 2 + themes/akagami-dark.yaml | 2 + themes/akagami-light.yaml | 2 + themes/akari-dawn.yaml | 2 + themes/akari-night.yaml | 2 + themes/akihabara.yaml | 2 + themes/aklesky-golden-river.yaml | 52 +++++++++++ themes/aklesky-mist-of-mint.yaml | 52 +++++++++++ themes/ako-theme.yaml | 3 + themes/aksin.yaml | 2 + themes/akumanomi-theme.yaml | 2 + themes/akurdor.yaml | 2 + themes/al-theme-official.yaml | 52 +++++++++++ themes/alabaster-dark.yaml | 2 + themes/alchemist-s-orchid-dark.yaml | 2 + themes/alchemist-s-orchid-light.yaml | 2 + themes/alchemist-s-orchid-sepia.yaml | 2 + themes/alchemy-theme.yaml | 2 + themes/aldrico-s-gruvbox.yaml | 2 + themes/alec-teal-theme.yaml | 3 + themes/alice-s-theme.yaml | 52 +++++++++++ themes/aliceblue-theme.yaml | 52 +++++++++++ themes/alien-blood.yaml | 2 + themes/alien-terminal-nostromo-amber.yaml | 2 + themes/alien-terminal-nostromo-green.yaml | 2 + themes/alien-terminal-sevastopol-link.yaml | 2 + ...rker-italic.yaml => alignment-darker.yaml} | 5 +- .../{alignment-italic.yaml => alignment.yaml} | 5 +- themes/all-black.yaml | 2 + themes/all-blue.yaml | 2 + themes/all-nighter-theme.yaml | 2 + themes/alligator-light.yaml | 2 + themes/alligator-solarized-dark.yaml | 2 + themes/alligator-solarized-light.yaml | 2 + themes/allomancer.yaml | 2 + themes/allure-contrast.yaml | 2 + themes/allure-light.yaml | 2 + themes/allure.yaml | 2 + themes/alma-sakura-theme.yaml | 2 + themes/almond-cream.yaml | 2 + themes/aloe.yaml | 3 + themes/alpha.yaml | 2 + themes/alpine-warm.yaml | 2 + themes/alpine.yaml | 2 + themes/altearn.yaml | 2 + themes/altered-matter-dopamin-owl.yaml | 2 + themes/alternight.yaml | 2 + themes/altin-s-love-symphony.yaml | 2 + themes/alucard-sotn.yaml | 2 + themes/alx-theme-classic.yaml | 2 + themes/alx-theme-toxic.yaml | 52 +++++++++++ themes/amadeus-dark-cobalt.yaml | 2 + themes/amadeus-dark-pastel.yaml | 2 + themes/amadeus-dark.yaml | 2 + themes/amazon-jungle.yaml | 52 +++++++++++ themes/amazonfrog.yaml | 2 + themes/ambar-for-vscode.yaml | 3 + themes/amber-delight.yaml | 52 +++++++++++ themes/amber-red-light.yaml | 52 +++++++++++ themes/amber-red.yaml | 52 +++++++++++ themes/ambient.yaml | 2 + themes/amethyst-dreams.yaml | 3 + themes/amethyst-kiss-dark-kiss-mode.yaml | 52 +++++++++++ themes/amethyst-kiss-light-kiss-mode.yaml | 52 +++++++++++ themes/amethyst-stone.yaml | 52 +++++++++++ themes/amethyst-theme.yaml | 2 + themes/amminial.yaml | 52 +++++++++++ themes/amoled-dark-theme.yaml | 2 + themes/amoledtest-fork-fork.yaml | 2 + themes/amora.yaml | 2 + themes/amozonia.yaml | 2 + themes/amp-dark.yaml | 2 + themes/amp-light.yaml | 2 + themes/an-bis.yaml | 2 + themes/anakmun.yaml | 2 + themes/analog-dream-beige-terminal.yaml | 2 + themes/analog-dream-magnetic-night.yaml | 2 + themes/anasdev.yaml | 3 + themes/anastasia.yaml | 2 + themes/andromeda-custom.yaml | 2 + themes/andromeda-light-italic-bordered.yaml | 2 + themes/andromeda-night.yaml | 52 +++++++++++ themes/andromeda-zed.yaml | 2 + themes/andromeda.yaml | 2 + themes/anemones.yaml | 2 + themes/angelnature2.yaml | 3 + themes/angrboda-dark.yaml | 2 + themes/angrboda-light.yaml | 2 + themes/angular-dark-theme.yaml | 6 +- themes/animatrix.yaml | 2 + themes/animetheme.yaml | 2 + themes/anisochromatic.yaml | 2 + themes/ano-theme-dark.yaml | 2 + themes/anoldhope.yaml | 2 + themes/another-acid-trip.yaml | 52 +++++++++++ themes/anquyx.yaml | 52 +++++++++++ themes/anthropic-dark.yaml | 2 + themes/anthropic-light.yaml | 2 + themes/anthropic.yaml | 2 + themes/anthropocene.yaml | 5 +- themes/anti-glare-moonlit.yaml | 2 + themes/anti-glare-nebula.yaml | 2 + themes/anti-glare-official.yaml | 2 + themes/anti-gravity-pink.yaml | 2 + themes/antidote.yaml | 2 + themes/antimaterial.yaml | 2 + themes/anubis-dark-theme.yaml | 2 + themes/anubis-dark.yaml | 2 + themes/anubis-light.yaml | 2 + themes/anufemist-dark.yaml | 3 + themes/apathy-experimental.yaml | 2 + themes/apathy.yaml | 2 + themes/apex-carbon.yaml | 52 +++++++++++ themes/apex-ember.yaml | 52 +++++++++++ themes/apex-frost.yaml | 52 +++++++++++ themes/apex-neon.yaml | 52 +++++++++++ themes/apex-pastel.yaml | 52 +++++++++++ themes/apex-steel.yaml | 52 +++++++++++ themes/apex.yaml | 2 + themes/apollo-dark.yaml | 2 + themes/apollo-light.yaml | 2 + themes/app-netlify-com.yaml | 52 +++++++++++ themes/apparently-purple.yaml | 2 + themes/apple-dancheong-minimal-light.yaml | 2 + themes/apprentice.yaml | 2 + themes/april-dark-theme.yaml | 2 + themes/aqua-glacier.yaml | 52 +++++++++++ themes/aquamain.yaml | 2 + themes/aquanova.yaml | 2 + themes/arabian-nights.yaml | 2 + themes/arabian-theme.yaml | 2 + themes/arc-dark.yaml | 2 + themes/arcadia-theme-dark.yaml | 2 + themes/arcadia-theme-storm.yaml | 2 + themes/arcaea.yaml | 2 + themes/archangel-dusk.yaml | 2 + themes/archangel.yaml | 2 + themes/archie-dark-color-theme.yaml | 2 + themes/architect-dark-fork.yaml | 2 + themes/arctic-depth.yaml | 2 + themes/arctis-dark.yaml | 2 + themes/arctis-high-contrast.yaml | 2 + themes/arctis-light.yaml | 2 + themes/arctis-moon.yaml | 2 + themes/arctis-night.yaml | 2 + themes/arctis.yaml | 2 + themes/arencio-argos-dark.yaml | 52 +++++++++++ themes/ares-tron-legacy.yaml | 2 + themes/arete-theme.yaml | 2 + themes/argo.yaml | 52 +++++++++++ themes/argonaut.yaml | 2 + themes/argprocolor.yaml | 2 + themes/ariake-sands.yaml | 2 + themes/ariake-sun.yaml | 2 + themes/aries-darker-high-contrast.yaml | 52 +++++++++++ themes/aries-darker.yaml | 52 +++++++++++ themes/aries-default.yaml | 52 +++++++++++ themes/aries-lighter-high-contrast.yaml | 52 +++++++++++ themes/aries-lighter.yaml | 52 +++++++++++ themes/aries-ocean.yaml | 52 +++++++++++ themes/aries-palenight.yaml | 52 +++++++++++ themes/aries.yaml | 2 + themes/arkaios-theme.yaml | 2 + themes/arkinetictheme.yaml | 2 + themes/armada.yaml | 2 + themes/aromantic.yaml | 2 + themes/arrakis-day.yaml | 2 + themes/arrakis-night.yaml | 2 + themes/arrpee.yaml | 2 + themes/arstotzka-contrast.yaml | 2 + themes/arstotzka-light.yaml | 2 + themes/arstotzka.yaml | 2 + themes/artinpixel-turquoise-theme-dark.yaml | 2 + themes/artinpixel-turquoise-theme.yaml | 2 + themes/artisan-theme.yaml | 2 + themes/arunika.yaml | 2 + themes/arwinux-galaxy.yaml | 3 + themes/as-theme.yaml | 2 + themes/asdfasdfuntitled.yaml | 2 + themes/asexual.yaml | 2 + themes/asgtheme.yaml | 2 + themes/ash-ember.yaml | 2 + themes/ash-lumen-light.yaml | 2 + themes/ash-lumen.yaml | 2 + themes/ash.yaml | 86 +++++++++--------- themes/ashao-color-theme.yaml | 3 + themes/ashen-darker.yaml | 3 + themes/ashen.yaml | 3 + themes/ashineui.yaml | 2 + themes/aspiesoft-intellij-theme.yaml | 2 + themes/assam-tea-gardens.yaml | 2 + themes/aster-dark-theme.yaml | 52 +++++++++++ themes/asteria.yaml | 2 + themes/astigmatism-theme.yaml | 2 + themes/astra-themedark.yaml | 3 + themes/astra.yaml | 2 + themes/astral-theme.yaml | 2 + themes/astral.yaml | 52 +++++++++++ themes/astro-dark.yaml | 2 + themes/astro-kanagawa.yaml | 2 + themes/astro-light.yaml | 2 + themes/astrofunk-dark.yaml | 2 + themes/astronaut.yaml | 2 + themes/astrus-midnight.yaml | 2 + themes/astrus-nebula.yaml | 2 + themes/astrus-standard.yaml | 2 + themes/asuka-theme-light.yaml | 2 + themes/asuka-theme.yaml | 2 + themes/athabasca-light.yaml | 2 + themes/athabasca.yaml | 2 + themes/atilio.yaml | 2 + themes/atlantu.yaml | 2 + themes/atom-homepage-fork.yaml | 2 + themes/atom-material-theme.yaml | 2 + themes/atom-one-dark-coal.yaml | 2 + themes/atom-one-dark-cyan.yaml | 2 + themes/atom-one-light-cyan.yaml | 2 + themes/atom-one-light-modern.yaml | 2 + themes/atomax-colorblind-light.yaml | 2 + themes/atomax-dark-colorblind.yaml | 52 +++++++++++ themes/atomax-dark-dimmed.yaml | 2 + themes/atomax-dark-tritanopia.yaml | 2 + themes/atomax-dark.yaml | 2 + themes/atomax-high-contrast-light.yaml | 52 +++++++++++ themes/atomax-high-contrast.yaml | 2 + themes/atomax-light-tritanopia.yaml | 2 + themes/atomax-light.yaml | 2 + themes/atomicc.yaml | 2 + themes/atomify.yaml | 2 + themes/atomized-theme.yaml | 2 + themes/atomizer-dark-island.yaml | 2 + themes/atomwave.yaml | 52 +++++++++++ .../attack-on-titan-eren-s-determination.yaml | 2 + themes/attentio-flow.yaml | 2 + themes/attentio-pulse.yaml | 2 + themes/attica.yaml | 2 + themes/aube.yaml | 2 + themes/august-ariake-dark.yaml | 2 + themes/august-arstotzka-darker.yaml | 52 +++++++++++ themes/august-arstotzka-lighter.yaml | 2 + themes/august-arstotzka.yaml | 52 +++++++++++ .../august-beardedtheme-oceanic-reversed.yaml | 2 + ...ust-beardedtheme-surprising-blueberry.yaml | 2 + themes/august-catppuccin.yaml | 2 + themes/august-city-lights-darker.yaml | 2 + themes/august-city-lights.yaml | 2 + themes/august-dark-theme.yaml | 2 + themes/august-drawbridge-darker.yaml | 2 + themes/august-drawbridge.yaml | 2 + themes/august-gruvbox-darker.yaml | 2 + themes/august-gruvbox.yaml | 52 +++++++++++ themes/august-kanagawa-darker.yaml | 2 + themes/august-kanagawa.yaml | 52 +++++++++++ themes/august-material-ocean.yaml | 52 +++++++++++ themes/august-material-palenight.yaml | 2 + themes/august-night-owl-darker.yaml | 2 + themes/august-night-owl.yaml | 2 + themes/august-nord-darker.yaml | 2 + themes/august-nord.yaml | 2 + themes/august-radical-2.yaml | 2 + themes/august-radical.yaml | 2 + themes/aura-dark-soft-text.yaml | 2 + themes/aura-dark.yaml | 2 + themes/aura-dracula-spirit-soft.yaml | 2 + themes/aura-dracula-spirit-synthwave.yaml | 2 + themes/aura-dracula-spirit.yaml | 2 + themes/aura-soft-dark-soft-text.yaml | 2 + themes/aura-soft-dark.yaml | 2 + themes/aurbis-dark.yaml | 2 + themes/aurelconstellation.yaml | 2 + themes/aurora-borealis-theme-dark.yaml | 2 + themes/aurora-borealis-theme.yaml | 2 + themes/aurora.yaml | 2 + themes/aurorabloom.yaml | 5 +- themes/aurorain.yaml | 2 + themes/aurorasynth-dark.yaml | 2 + themes/aurorasynth-light.yaml | 2 + themes/australian-food-fibre-dark.yaml | 2 + themes/australian-food-fibre-light.yaml | 2 + themes/autu-dark-theme.yaml | 52 +++++++++++ themes/autumn-fork-contrast.yaml | 2 + themes/autumn-fork.yaml | 2 + themes/autumn.yaml | 2 + themes/awesome-dark.yaml | 2 + themes/awesome-theme.yaml | 2 + themes/awesome-vscode-dark.yaml | 2 + themes/awork-dark.yaml | 3 + themes/axiomatic-dark.yaml | 2 + themes/axiomatic-light.yaml | 2 + themes/axis-ultra-dark.yaml | 3 + themes/aya-dark.yaml | 52 +++++++++++ themes/aya-light.yaml | 52 +++++++++++ themes/ayame.yaml | 2 + themes/ayanokoji.yaml | 2 + themes/aylin.yaml | 2 + .../ayu-darkvenom-transparent-borderless.yaml | 52 +++++++++++ themes/ayu-enhanced.yaml | 2 + themes/ayu-one-dark-pro-dark-bordered.yaml | 52 +++++++++++ themes/ayu-one-dark-pro-mirage-bordered.yaml | 52 +++++++++++ themes/ayu-one-dark-pro-mirage.yaml | 52 +++++++++++ themes/ayu-owl.yaml | 2 + themes/ayudark.yaml | 2 + themes/ayuloco-dark-bordered.yaml | 2 + themes/ayuloco-mirage-bordered.yaml | 2 + themes/ayuloco-mirage.yaml | 2 + themes/ayutokyo-color-theme.yaml | 2 + themes/ayyour.yaml | 46 +++++----- themes/az0ox-theme-shadesofblue.yaml | 2 + themes/azathoth.yaml | 2 + themes/azeny-cutimaru.yaml | 2 + themes/azeny-inveny.yaml | 2 + themes/azeny-okano.yaml | 2 + themes/azeny.yaml | 2 + themes/azerite-dark-soft.yaml | 3 + themes/azerite-dark.yaml | 3 + themes/azul.yaml | 2 + themes/azure-contrast.yaml | 2 + themes/azure-dark-teal.yaml | 2 + themes/azure-iris-dark.yaml | 2 + themes/azure-iris-light.yaml | 2 + themes/azure-light.yaml | 2 + themes/azure-noir.yaml | 2 + themes/azure.yaml | 2 + themes/b-nt.yaml | 2 + themes/b150-dark.yaml | 2 + themes/b150-light.yaml | 2 + themes/b2b-edge-light.yaml | 2 + ...b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml | 2 + ...9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml | 2 + themes/backspace-dark-glass.yaml | 2 + themes/backspace-dark-vibe-coder.yaml | 2 + themes/backspace-dark-winter.yaml | 2 + themes/backspace-dark.yaml | 2 + themes/backspace-light.yaml | 2 + themes/baculum-color-minimal-2.yaml | 2 + themes/baculum-color-vantablack.yaml | 52 +++++++++++ themes/baculum-color.yaml | 52 +++++++++++ themes/baculum-dark-color.yaml | 2 + themes/badbird.yaml | 2 + themes/baig.yaml | 3 + themes/baitul-hikmah-professional.yaml | 2 + themes/baiyuechu.yaml | 49 ---------- themes/bakaneo.yaml | 2 + ...ance-pink-colorblind-compassion-focus.yaml | 2 + themes/balance-pink-compassion-focus.yaml | 2 + ...e-pink-high-contrast-compassion-focus.yaml | 2 + .../balance-pink-light-compassion-focus.yaml | 2 + ...-ocean-sands.yaml => bali-crepuscule.yaml} | 14 +-- themes/ballerini-theme.yaml | 2 + themes/bam.yaml | 2 + themes/bamboo-green.yaml | 2 + themes/bamboo.yaml | 2 + themes/ban-light.yaml | 2 + themes/ban-night.yaml | 2 + themes/ban-typhoon.yaml | 2 + themes/banjo-loans-dark.yaml | 52 +++++++++++ themes/banjo-loans-light.yaml | 52 +++++++++++ themes/banner-contrast.yaml | 2 + themes/banner-light.yaml | 2 + themes/banner.yaml | 2 + themes/barbenheimer-bunker.yaml | 2 + themes/barbenheimer-dreamhouse.yaml | 2 + themes/barbenheimer-nuclear-sunrise.yaml | 2 + themes/barbie-light.yaml | 2 + themes/barbie-theme.yaml | 2 + themes/barbie.yaml | 2 + themes/barito.yaml | 52 +++++++++++ themes/barlume.yaml | 3 + themes/barney-pro.yaml | 2 + themes/base-color-theme.yaml | 2 + themes/base16-3024-dark.yaml | 2 + themes/base16-3024-light.yaml | 2 + themes/base16-apathy-dark.yaml | 2 + themes/base16-apathy-light.yaml | 2 + themes/base16-ashes-dark.yaml | 2 + themes/base16-ashes-light.yaml | 2 + themes/base16-bespin-dark.yaml | 2 + themes/base16-bespin-light.yaml | 2 + themes/base16-brewer-dark.yaml | 2 + themes/base16-brewer-light.yaml | 2 + themes/base16-bright-dark.yaml | 2 + themes/base16-bright-light.yaml | 2 + themes/base16-codeschool-dark.yaml | 2 + themes/base16-codeschool-light.yaml | 2 + themes/base16-default-dark.yaml | 2 + themes/base16-default-light.yaml | 2 + themes/base16-eighties-dark.yaml | 2 + themes/base16-eighties-light.yaml | 2 + themes/base16-embers-dark.yaml | 2 + themes/base16-embers-light.yaml | 2 + themes/base16-flat-dark.yaml | 2 + themes/base16-flat-light.yaml | 2 + themes/base16-google-dark.yaml | 2 + themes/base16-google-light.yaml | 2 + themes/base16-grayscale-dark.yaml | 2 + themes/base16-grayscale-light.yaml | 2 + themes/base16-green-screen-dark.yaml | 2 + themes/base16-green-screen-light.yaml | 2 + themes/base16-harmonic16-dark.yaml | 2 + themes/base16-harmonic16-light.yaml | 2 + themes/base16-isotope-dark.yaml | 2 + themes/base16-isotope-light.yaml | 2 + themes/base16-marrakesh-dark.yaml | 2 + themes/base16-marrakesh-light.yaml | 2 + themes/base16-mocha-dark.yaml | 2 + themes/base16-mocha-light.yaml | 2 + themes/base16-monokai-dark.yaml | 2 + themes/base16-monokai-light.yaml | 2 + themes/base16-ocean-dark.yaml | 2 + themes/base16-ocean-light.yaml | 2 + themes/base16-oceanicnext-dark.yaml | 2 + themes/base16-oceanicnext-light.yaml | 2 + themes/base16-paraiso-dark.yaml | 2 + themes/base16-paraiso-light.yaml | 2 + themes/base16-pop-dark.yaml | 2 + themes/base16-pop-light.yaml | 2 + themes/base16-railscasts-dark.yaml | 2 + themes/base16-railscasts-light.yaml | 2 + themes/base16-shapeshifter-dark.yaml | 2 + themes/base16-shapeshifter-light.yaml | 2 + themes/base16-solarized-dark.yaml | 2 + themes/base16-solarized-light.yaml | 2 + themes/base16-summerfruit-dark.yaml | 2 + themes/base16-summerfruit-light.yaml | 2 + themes/base16-tomorrow-dark.yaml | 2 + themes/base16-tomorrow-light.yaml | 2 + themes/base16-twilight-dark.yaml | 2 + themes/base16-twilight-light.yaml | 2 + themes/base16-unikitty-dark.yaml | 2 + themes/base16-unikitty-light.yaml | 2 + themes/base16-woodland-dark.yaml | 2 + themes/basic-black.yaml | 2 + themes/basic-blue.yaml | 2 + themes/basterdized.yaml | 3 + themes/bat.yaml | 2 + themes/batcave.yaml | 52 +++++++++++ themes/batsignal-light-color-theme.yaml | 2 + themes/battutu.yaml | 52 +++++++++++ themes/bazmatheme.yaml | 3 + themes/bazutya.yaml | 2 + themes/bbbalabamasuntan.yaml | 2 + themes/bbbdark.yaml | 2 + themes/bbbhotdogstand.yaml | 2 + themes/bbogdanov-dark.yaml | 2 + themes/bbogdanov-light.yaml | 2 + themes/bc-theme.yaml | 2 + themes/beach-vibes.yaml | 3 + themes/beacrisg.yaml | 2 + themes/bearhugs.yaml | 52 +++++++++++ themes/becolors.yaml | 3 + themes/bedarx-obsidian.yaml | 2 + themes/bedarx-onyx.yaml | 2 + themes/bedarx-pearl.yaml | 2 + themes/bedarx-sapphire.yaml | 2 + themes/bee-theme-color-theme-tow.yaml | 2 + themes/bee-theme.yaml | 2 + themes/beerish.yaml | 2 + themes/beesystemtheme.yaml | 52 +++++++++++ themes/beginner-theme.yaml | 52 +++++++++++ themes/behavai-vitesse.yaml | 2 + themes/behavai.yaml | 2 + themes/belch-fork.yaml | 52 +++++++++++ themes/bellair.yaml | 52 +++++++++++ themes/beloco.yaml | 52 +++++++++++ themes/benpai-theme-dark.yaml | 3 + themes/benty-dark.yaml | 52 +++++++++++ themes/benty.yaml | 52 +++++++++++ themes/berkeley.yaml | 2 + themes/bernadoque-theme.yaml | 2 + themes/berry-blast-theme.yaml | 2 + themes/berry-latte-light.yaml | 2 + themes/bersk.yaml | 2 + themes/bertax.yaml | 52 +++++++++++ themes/bertdark.yaml | 52 +++++++++++ themes/beru.yaml | 2 + themes/best-themes-one-monokai.yaml | 2 + themes/better-coding-dark.yaml | 2 + themes/better-light.yaml | 3 + themes/better-selenized-dark.yaml | 2 + themes/better-solarized-dark-italic.yaml | 2 + themes/better-solarized-dark.yaml | 2 + themes/betu-dark.yaml | 3 + themes/betu-light.yaml | 3 + themes/betweentts.yaml | 52 +++++++++++ themes/bhwm715-even-darker.yaml | 2 + themes/bianconero.yaml | 2 + themes/biddeew.yaml | 2 + themes/bifr-st.yaml | 3 + themes/bigsur-gtk-theme-dark-blue.yaml | 2 + themes/bini-theme.yaml | 2 + themes/bird.yaml | 2 + themes/bit-intense.yaml | 2 + themes/bit-soft.yaml | 2 + themes/bit.yaml | 2 + themes/bitpurp-dark.yaml | 2 + themes/bits-theme-green-light.yaml | 2 + themes/bits-theme-green.yaml | 2 + themes/bits-theme-light.yaml | 2 + themes/bits-theme-purple-light.yaml | 2 + themes/bits-theme-purple.yaml | 2 + themes/bits-theme.yaml | 2 + themes/bl-nk.yaml | 2 + themes/black-and-red.yaml | 3 + themes/black-and-white-tv.yaml | 52 +++++++++++ themes/black-back-dark-e-theme.yaml | 2 + themes/black-beauty.yaml | 52 +++++++++++ themes/black-color-theme.yaml | 2 + themes/black-ocean.yaml | 2 + themes/black-on-gray.yaml | 2 + themes/black-panther-theme.yaml | 52 +++++++++++ themes/black-pink-rose.yaml | 2 + themes/black-punk-77.yaml | 5 +- themes/black-rose.yaml | 2 + themes/black-theme.yaml | 2 + themes/black-velvet-luxe.yaml | 52 +++++++++++ themes/blackai-theme.yaml | 2 + themes/blackamp.yaml | 3 + themes/blackberry.yaml | 2 + themes/blackbird-dusk.yaml | 2 + themes/blackbird-midnight.yaml | 2 + themes/blackboard-plus.yaml | 2 + themes/blackcoffeedark.yaml | 2 + themes/blackdot.yaml | 2 + themes/blackhighcontrast.yaml | 3 + themes/blacklite.yaml | 2 + themes/blackout.yaml | 2 + themes/blackpink.yaml | 2 + themes/blackroulette.yaml | 2 + themes/blackula-theme.yaml | 2 + themes/blacky.yaml | 3 + themes/blackzombie-color-theme.yaml | 52 +++++++++++ themes/bladerunner-light.yaml | 2 + themes/bladerunner.yaml | 2 + themes/blah-dark.yaml | 2 + themes/blahajtheme.yaml | 3 + themes/blank-ghibli.yaml | 2 + themes/blank-monochrome.yaml | 2 + themes/blank-moonlight.yaml | 2 + themes/blank-s-theme-reborn.yaml | 2 + themes/blank-uchiha.yaml | 2 + themes/blazing.yaml | 52 +++++++++++ themes/blender-mojo-theme.yaml | 52 +++++++++++ themes/blinds-dark.yaml | 2 + themes/blink-contrast.yaml | 2 + themes/blink-light.yaml | 2 + themes/blink.yaml | 2 + themes/bloody-pie.yaml | 2 + themes/bloom-1-1-0.yaml | 2 + themes/bloostring.yaml | 3 + themes/blowington.yaml | 2 + themes/blube-dark-light.yaml | 2 + themes/blue-cheese.yaml | 2 + themes/blue-collection.yaml | 3 + themes/blue-color-theme.yaml | 2 + themes/blue-dark-theme.yaml | 2 + themes/blue-day.yaml | 2 + themes/blue-faded.yaml | 2 + themes/blue-green-theme.yaml | 2 + themes/blue-hacker-theme.yaml | 2 + themes/blue-jeans.yaml | 3 + themes/blue-light-filter-dark.yaml | 3 + themes/blue-light-filter-warm-dark.yaml | 3 + themes/blue-light-theme.yaml | 2 + themes/blue-melon.yaml | 3 + themes/blue-moves-color-theme.yaml | 2 + themes/blue-moves-darker-color-theme.yaml | 2 + themes/blue-night.yaml | 2 + themes/blue.yaml | 2 + themes/blueberry-dark-theme.yaml | 2 + themes/blueberry-futuristic-theme-fork.yaml | 3 + themes/blueberry-theme.yaml | 2 + themes/blueberry.yaml | 52 +++++++++++ themes/bluebracket-theme.yaml | 2 + themes/bluedark.yaml | 2 + themes/bluegreenspace.yaml | 2 + themes/bluelili-color-theme.yaml | 2 + themes/blueorange.yaml | 2 + themes/blueprint-grid.yaml | 52 +++++++++++ themes/blueprint.yaml | 52 +++++++++++ themes/bluered-theme.yaml | 2 + themes/bluesea.yaml | 2 + themes/blueslate.yaml | 52 +++++++++++ themes/bluespace-s.yaml | 2 + themes/bluespace.yaml | 52 +++++------ themes/bluespexter.yaml | 3 + themes/blueyonedark.yaml | 2 + themes/blufftheme.yaml | 52 +++++++++++ themes/bluloco-dark-italic.yaml | 2 + themes/bluloco-dark.yaml | 2 + themes/bluloco-light-italic.yaml | 2 + themes/blush-pink-enhanced-premium.yaml | 2 + themes/blve.yaml | 2 + themes/bobascheme.yaml | 3 + themes/bobojojo.yaml | 52 +++++++++++ themes/bocenago-pradei.yaml | 2 + themes/bogem-s-night-owl.yaml | 2 + themes/bohemian-dark.yaml | 2 + themes/bohemian-light.yaml | 2 + themes/bold-contrast.yaml | 2 + themes/bold-light.yaml | 2 + themes/bold.yaml | 2 + themes/bolsonaro-theme.yaml | 2 + themes/bombyx-light.yaml | 2 + themes/bombyx.yaml | 2 + themes/bonfire.yaml | 52 +++++++++++ themes/boo-color-theme.yaml | 3 + themes/boo.yaml | 2 + themes/boogel.yaml | 2 + themes/booklike.yaml | 2 + themes/bootstrap-dark.yaml | 2 + themes/bootstrap-light.yaml | 2 + themes/borderless-tokyo-night.yaml | 52 +++++++++++ themes/borders-blue.yaml | 2 + themes/borders-dark.yaml | 2 + themes/borders-darker.yaml | 2 + themes/borealis.yaml | 2 + themes/borealsharp.yaml | 2 + themes/bot2b.yaml | 3 + themes/botany-color-theme.yaml | 2 + themes/botany.yaml | 2 + themes/bougainvillea.yaml | 2 + themes/boundless.yaml | 2 + themes/bouquet.yaml | 2 + themes/boxlang-dark-neon.yaml | 3 + themes/boxuk-contrast.yaml | 2 + themes/boxuk-light.yaml | 2 + themes/boxuk.yaml | 2 + themes/brackethive-theme.yaml | 2 + themes/brave-contrast.yaml | 2 + themes/brave-light.yaml | 2 + themes/brave.yaml | 2 + themes/breath2ripoff.yaml | 2 + themes/breeze.yaml | 2 + themes/brew-theme.yaml | 2 + themes/brid-purple-garden-dark.yaml | 2 + themes/brid-purple-garden-light.yaml | 2 + themes/briggitehelm.yaml | 2 + themes/bright-colors-blue.yaml | 2 + themes/bright-lights.yaml | 2 + themes/britecore.yaml | 2 + themes/brogrammer-plus.yaml | 2 + themes/bromium.yaml | 2 + themes/brownhu.yaml | 2 + themes/brownista.yaml | 2 + themes/bruno-s-wet-dream.yaml | 5 +- themes/brutalcode.yaml | 3 + themes/bts-borahae.yaml | 2 + themes/btv-dark.yaml | 2 + themes/bubba-kush-v1.yaml | 3 + themes/bubble-theme.yaml | 2 + themes/bubblegum-color-theme.yaml | 2 + themes/bubblegum-milkshake.yaml | 2 + themes/bubblegum.yaml | 2 + themes/bubblegumtheme.yaml | 2 + ...ddha-a-super-minimal-theme-for-vscode.yaml | 2 + themes/budha.yaml | 2 + themes/budokan.yaml | 2 + themes/bugged-gpu.yaml | 2 + themes/buhtig.yaml | 2 + themes/bullish-theme.yaml | 2 + themes/bumblebee.yaml | 52 +++++++++++ themes/burnt-chestnut.yaml | 2 + themes/burple-dark.yaml | 2 + themes/busbyvscode.yaml | 2 + themes/bushland.yaml | 2 + themes/butrin-theme.yaml | 2 + themes/butter-green-fork.yaml | 2 + themes/buttercawfee.yaml | 2 + themes/bynawers.yaml | 2 + themes/byteglow.yaml | 2 + themes/bytenight.yaml | 3 + themes/c-c-theme.yaml | 2 + themes/c-carbon-6.yaml | 52 +++++++++++ themes/c-dracula.yaml | 2 + themes/c-e-o.yaml | 50 +++++++++++ themes/c0v3r.yaml | 2 + themes/cadet-dark-gray.yaml | 2 + themes/cadet-medium-gray.yaml | 52 +++++++++++ themes/caf-warmth.yaml | 2 + themes/cafelle.yaml | 52 +++++++++++ themes/caffe-crema-dark.yaml | 2 + themes/caffe-crema-light.yaml | 2 + themes/caffeinated-rust.yaml | 2 + themes/cal-4700.yaml | 3 + themes/calabaza.yaml | 50 +++++++++++ themes/calm-dark.yaml | 2 + themes/calm-days-sober-nights-day-sky.yaml | 52 +++++++++++ themes/calm-days-sober-nights-day.yaml | 52 +++++++++++ themes/calm-days-sober-nights-night-sky.yaml | 52 +++++++++++ themes/calm-days-sober-nights-night.yaml | 52 +++++++++++ themes/calm-down-color-theme.yaml | 2 + themes/calm-light.yaml | 2 + themes/calm-ocean.yaml | 2 + themes/calm-teal-balance-clarity.yaml | 52 +++++++++++ ...lm-teal-high-contrast-balance-clarity.yaml | 2 + themes/calm-teal-light-balance-clarity.yaml | 2 + themes/calm-vision.yaml | 50 +++++++++++ themes/calming-coding-dark-theme.yaml | 3 + themes/calming-theme.yaml | 2 + themes/calmnight.yaml | 52 +++++++++++ themes/calmppuccin-frappe.yaml | 2 + themes/calmppuccin-latte.yaml | 2 + themes/calmppuccin-macchiato.yaml | 2 + themes/calmppuccin-mocha.yaml | 2 + themes/calmppuccin-nitro-cold-brew.yaml | 2 + themes/calmppuccin-oledppuccin.yaml | 2 + themes/calmshade.yaml | 50 +++++++++++ themes/camo-dark.yaml | 52 +++++++++++ themes/candle-theme.yaml | 2 + themes/candy-pine.yaml | 2 + themes/candy-red.yaml | 2 + themes/candy-shop-eclipse.yaml | 2 + themes/canonic-theme.yaml | 2 + themes/cape-town-nights.yaml | 2 + themes/capitola.yaml | 2 + themes/capy-ui.yaml | 2 + themes/caramel.yaml | 52 +++++++++++ themes/carbon-candy-anthracite.yaml | 2 + themes/carbon-candy-aurora.yaml | 52 +++++++++++ themes/carbon-candy-bee.yaml | 52 +++++++++++ themes/carbon-candy-carbon.yaml | 52 +++++++++++ themes/carbon-candy-dark.yaml | 52 +++++++++++ themes/carbon-candy-obsidian.yaml | 52 +++++++++++ themes/carbon-candy-palenight.yaml | 2 + themes/carbon-code-amber-dark.yaml | 2 + themes/carbon-code-amber-light.yaml | 2 + themes/carbon-code-crimson-dark.yaml | 2 + themes/carbon-code-crimson-light.yaml | 2 + themes/carbon-code-dark.yaml | 2 + themes/carbon-code-emerald-dark.yaml | 2 + themes/carbon-code-emerald-light.yaml | 2 + themes/carbon-code-light.yaml | 2 + themes/carbon-code-rose-dark.yaml | 2 + themes/carbon-code-rose-light.yaml | 2 + themes/carbon-design-system-theme.yaml | 2 + themes/carbon-one.yaml | 3 + .../carbon-react-color-theme-maya-black.yaml | 2 + themes/carbon-react-color-theme-maya.yaml | 2 + themes/carbon-react-color-theme.yaml | 2 + themes/carbon.yaml | 86 +++++++++--------- themes/carbonfox.yaml | 2 + themes/carbonight-contrast.yaml | 2 + themes/carbonight-dusk.yaml | 2 + themes/carbonight-light.yaml | 2 + themes/carbonight-midnight.yaml | 2 + themes/carbonight.yaml | 2 + themes/caret-light.yaml | 3 + themes/carex-dark.yaml | 2 + themes/carex-high-contrast-dark.yaml | 2 + themes/carex-light.yaml | 2 + themes/casa.yaml | 3 + themes/casino-royal.yaml | 2 + themes/cassieye-dark.yaml | 52 +++++++++++ themes/cassieye-light.yaml | 52 +++++++++++ themes/cat-pink.yaml | 2 + themes/cat-pulper.yaml | 52 +++++++++++ themes/cat-sleep-color-theme.yaml | 2 + themes/catalyst-light.yaml | 2 + themes/catalyst.yaml | 86 +++++++++--------- themes/catppuccin-dark-pro.yaml | 52 +++++++++++ themes/catppuccin-dark.yaml | 2 + themes/catppuccin-frapp.yaml | 2 + themes/catppuccin-latte.yaml | 2 + themes/catppuccin-macchiato.yaml | 2 + themes/catppuccin-mocha.yaml | 2 + themes/catppuccin-monokai-frappe.yaml | 2 + themes/catppuccin-monokai-latte.yaml | 2 + themes/catppuccin-monokai-macchiato.yaml | 2 + themes/catppuccin-monokai-mocha.yaml | 2 + themes/catthode.yaml | 3 + themes/ccat.yaml | 52 +++++++++++ themes/cebola-theme.yaml | 2 + themes/celadon-theme.yaml | 2 + themes/celestial-charm-theme.yaml | 2 + themes/celestial.yaml | 52 +++++++++++ themes/ceramic-space.yaml | 52 +++++++++++ themes/cha-thai.yaml | 52 +++++++++++ themes/chai-light.yaml | 2 + themes/chainroot.yaml | 52 +++++++++++ themes/chalk.yaml | 2 + themes/charcoal.yaml | 2 + themes/charli-health-dark.yaml | 6 +- themes/charli-health-light.yaml | 6 +- themes/charmed-dark.yaml | 52 +++++++++++ themes/cheese-n-all.yaml | 2 + themes/cheesewaffle-blue.yaml | 2 + themes/cheetha-green.yaml | 2 + themes/chelsea-pride-away.yaml | 52 +++++++++++ themes/chelsea-pride.yaml | 52 +++++++++++ themes/cherry-blossom-airy.yaml | 2 + themes/cherry-blossom-breeze.yaml | 2 + themes/cherry-blossom-dark-reflection.yaml | 2 + themes/cherry-blossom-dark-vivid.yaml | 2 + themes/cherry-blossom-dark.yaml | 2 + themes/cherry-blossom-dimmed-dusk.yaml | 2 + themes/cherry-blossom-dimmed.yaml | 2 + themes/cherry-blossom-night-harmony.yaml | 2 + themes/cherry-blossom-night.yaml | 2 + themes/cherry-blossom-osaka-light.yaml | 2 + themes/cherry-blossom-osaka.yaml | 2 + themes/cherry-blossom-sky-vibrant.yaml | 2 + themes/cherry-blossom-spring.yaml | 2 + themes/cherry-blossom-twilight.yaml | 2 + themes/cherry-blossom-warm.yaml | 2 + themes/cherry-midnight.yaml | 2 + themes/cherry-wild-theme.yaml | 2 + themes/cherry.yaml | 2 + themes/cherryblossom.yaml | 2 + themes/chiclete-de-uva-theme.yaml | 2 + themes/chilaquiles-rojos-dark.yaml | 52 +++++++++++ themes/chilaquiles-rojos-light.yaml | 52 +++++++++++ themes/chilaquiles-verdes-dark.yaml | 52 +++++++++++ themes/chilaquiles-verdes-light.yaml | 52 +++++++++++ themes/chill-night-mode.yaml | 3 + themes/chinolor-light.yaml | 2 + themes/chinolor.yaml | 2 + themes/chocolate-contrast.yaml | 2 + themes/chocolate-dessert-theme.yaml | 2 + themes/chocolate-light.yaml | 2 + themes/chocolate.yaml | 2 + themes/chpastel-dark.yaml | 52 +++++++++++ themes/chpastel-light.yaml | 52 +++++++++++ themes/chpastel.yaml | 2 + themes/chris-light.yaml | 52 +++++++++++ themes/chriscoding.yaml | 3 + themes/christmas.yaml | 2 + themes/chromahin-amoled.yaml | 2 + themes/chromahin-dark.yaml | 2 + themes/chromahin-multi-color.yaml | 2 + themes/chromahin-soft.yaml | 2 + themes/chromatic-dark.yaml | 2 + themes/chromatic-light.yaml | 2 + themes/chrome-devtools.yaml | 2 + themes/chrome-green.yaml | 52 +++++++++++ themes/chromodusk-classic.yaml | 2 + themes/chronica-pink.yaml | 52 +++++++++++ themes/chronokai.yaml | 3 + themes/cielo.yaml | 2 + themes/cinnamon.yaml | 2 + themes/cinnamonroll.yaml | 2 + themes/citric-secret.yaml | 2 + themes/city-fog.yaml | 2 + themes/ckai-color-theme.yaml | 52 +++++++++++ themes/clairvoyance-theme-alt.yaml | 2 + themes/clairvoyance-theme-grape.yaml | 2 + themes/clairvoyance-theme-pinkish.yaml | 2 + themes/clairvoyance-theme.yaml | 2 + themes/clarity-design-system-dark.yaml | 2 + themes/clarity-design-system-light.yaml | 2 + themes/claro.yaml | 2 + themes/classic-essential-colors-blue.yaml | 52 +++++++++++ themes/classic-terminal.yaml | 2 + themes/claude-code-dark-high-contrast.yaml | 2 + themes/claude-code-dark.yaml | 52 +++++++++++ themes/claude-code-light-high-contrast.yaml | 2 + themes/claude-code-light.yaml | 52 +++++++++++ themes/claude-dark-anthropic.yaml | 2 + themes/claude-dark-high-contrast.yaml | 52 +++++++++++ themes/claude-dark-italic.yaml | 2 + themes/claude-dark.yaml | 2 + themes/claude-light.yaml | 2 + themes/claude-mode-dark.yaml | 2 + themes/claude-mode-light.yaml | 2 + themes/claude-velvet-dark.yaml | 2 + themes/claude-velvet-light.yaml | 2 + themes/claude-vscode-dark-brand.yaml | 52 +++++++++++ themes/claude-vscode-light-brand.yaml | 52 +++++++++++ themes/claude-warm-light.yaml | 2 + themes/clean-white.yaml | 2 + themes/clear-dark.yaml | 2 + themes/cleo.yaml | 2 + themes/clorest.yaml | 52 +++++++++++ themes/cloudmint-night.yaml | 2 + themes/clrsync.yaml | 2 + themes/clu-tron-legacy.yaml | 2 + themes/clubcleaver-functional-matrix.yaml | 2 + ...clymate-monochrome-vsdark-color-theme.yaml | 2 + .../clymate-pop-neon-vsdark-color-theme.yaml | 2 + .../clymate-vintage-vsdark-color-theme.yaml | 2 + themes/clymate-vsdark-color-theme.yaml | 2 + themes/cmyk-colourrrs.yaml | 2 + themes/coal.yaml | 3 + themes/cobalt-ice.yaml | 52 +++++++++++ themes/cobalt-next-dark.yaml | 2 + themes/cobalt-next.yaml | 14 +-- themes/cobalt3dark.yaml | 2 + themes/cobalt9.yaml | 2 + themes/coco-theme-au-palette.yaml | 2 + themes/coco-theme-ca-palette.yaml | 2 + themes/coco-theme-coco-palette.yaml | 2 + themes/coco-theme-coconut-palette.yaml | 2 + themes/coco-theme-de-palette.yaml | 2 + themes/coco-theme-es-palette.yaml | 2 + themes/coco-theme-fr-palette.yaml | 2 + themes/coco-theme-gb-palette.yaml | 2 + themes/coco-theme-in-palette.yaml | 2 + themes/coco-theme-personnal-palette.yaml | 2 + themes/coco-theme-se-palette.yaml | 2 + themes/coco-theme-tr-palette.yaml | 2 + themes/coco-theme-v1-palette.yaml | 2 + themes/coco-theme.yaml | 2 + themes/coco.yaml | 2 + themes/cocoa.yaml | 5 +- themes/coconut-dark.yaml | 2 + themes/coconut.yaml | 2 + themes/code-dadi-dark.yaml | 2 + themes/code-dadi-lighter.yaml | 2 + themes/code-glasses-vision-pro.yaml | 52 +++++++++++ themes/code-hunter-magnum-purple.yaml | 2 + themes/code-hunter-spruce-wind.yaml | 2 + themes/code-kraken-theme.yaml | 2 + themes/code-like-a-rainbow.yaml | 2 + themes/code-muse-light.yaml | 52 +++++++++++ themes/code-red.yaml | 2 + themes/code-sandbox-tribute.yaml | 49 ++++++++++ .../code-with-colors-pro-midnight-purple.yaml | 2 + themes/code33.yaml | 2 + themes/codeastro-dark.yaml | 3 + themes/codebabel-theme-dark.yaml | 2 + themes/codecourse-contrast.yaml | 2 + themes/codecourse-light.yaml | 2 + themes/codecourse.yaml | 2 + themes/codeify-dark-berry-color-theme.yaml | 2 + themes/codeitlive-light.yaml | 2 + themes/codeitlive.yaml | 2 + themes/codelabs-inspired.yaml | 2 + themes/codellsby-nightowl.yaml | 2 + themes/codely-dark-theme.yaml | 2 + themes/codeme.yaml | 2 + themes/codeo-light.yaml | 2 + themes/codeo.yaml | 2 + themes/codepdia.yaml | 2 + themes/codepen-nights.yaml | 2 + themes/codepixel-modern-dark.yaml | 2 + themes/coder-coder-dark-redefined.yaml | 2 + themes/coder-vai-forest.yaml | 2 + themes/coder-vai-light.yaml | 2 + themes/coder-vai-ocean.yaml | 2 + themes/coder-vai-purple-haze.yaml | 2 + themes/coder30.yaml | 2 + themes/codesandbox-theme.yaml | 14 +-- themes/codeschool2-minimal.yaml | 2 + themes/codesso-unison-beta.yaml | 2 + themes/codetest.yaml | 2 + themes/codethread-black.yaml | 2 + themes/codeuccino.yaml | 2 + themes/codevibe-epic-theme.yaml | 2 + themes/codewithme-codex.yaml | 3 + themes/codewithme-dark-cmyk.yaml | 3 + themes/codewithsg-dark-theme.yaml | 3 + themes/codexflow-themes.yaml | 2 + themes/codiefy-optimas-prime-color-theme.yaml | 2 + themes/coding-light-theme.yaml | 2 + themes/codingwish.yaml | 49 ++++++++++ themes/cods.yaml | 2 + themes/coelhin-smooth.yaml | 3 + themes/coelhin-violet.yaml | 3 + themes/coffee-contrast.yaml | 2 + themes/coffee-light.yaml | 2 + themes/coffee.yaml | 2 + themes/coffeespace.yaml | 2 + themes/coffeyscript-theme.yaml | 5 +- themes/cognac.yaml | 2 + themes/coimbrox-minimalist-panda.yaml | 3 + themes/coimbroxthmedark.yaml | 2 + themes/cold-night.yaml | 2 + themes/cold-python-theme.yaml | 2 + themes/coldark-cold.yaml | 2 + themes/coldark-dark.yaml | 2 + themes/collapse.yaml | 2 + themes/color-coffee-dark.yaml | 2 + themes/color-contrast.yaml | 52 +++++++++++ themes/color-sea-blue.yaml | 3 + themes/color-sea-gray.yaml | 3 + themes/color-sea-green.yaml | 3 + themes/color-sea-orange.yaml | 3 + themes/color-sea-purple.yaml | 3 + themes/color-sea-red.yaml | 3 + themes/color-sea-yellow.yaml | 3 + themes/colora.yaml | 2 + themes/colorbars-blue.yaml | 2 + themes/colorbars-green.yaml | 2 + themes/colorbars-orange.yaml | 2 + themes/colorbars-purple.yaml | 2 + themes/colored-desert.yaml | 49 ++++++++++ themes/colorful-carbon-dark-knight.yaml | 2 + themes/colorful-carbon.yaml | 2 + themes/colorful-dark-fork.yaml | 2 + themes/colorful-dark-theme.yaml | 2 + themes/colorful-light.yaml | 2 + themes/colorizer.yaml | 2 + themes/colors-color-theme.yaml | 2 + themes/colors.yaml | 2 + themes/colorshift-material-pro-evening.yaml | 2 + themes/colorshift-material-pro-morning.yaml | 2 + themes/colorshift-material-pro.yaml | 2 + themes/colorways-cheers-soft.yaml | 2 + themes/columbina-dark.yaml | 52 +++++++++++ themes/columbina-high-contrast.yaml | 2 + themes/comfy-monokai.yaml | 2 + themes/comfyeyes.yaml | 3 + themes/commadoor-dark.yaml | 3 + themes/commadoor.yaml | 3 + themes/commentsareimportant.yaml | 3 + themes/common.yaml | 2 + themes/compline.yaml | 2 + themes/component.yaml | 2 + themes/comrade-contrast.yaml | 14 +-- themes/comrade-light.yaml | 30 ++++--- themes/comrade.yaml | 22 ++--- themes/concoctis-dark-hard.yaml | 2 + themes/concoctis-dark-soft.yaml | 2 + themes/concoctis-light-hard.yaml | 2 + themes/concoctis-light-soft.yaml | 2 + themes/concrete-theme.yaml | 2 + themes/concrete.yaml | 2 + themes/conifer-theme.yaml | 2 + themes/contrast-kai.yaml | 2 + themes/cool-panda.yaml | 2 + themes/cool-with-a-c.yaml | 2 + themes/cooland.yaml | 2 + themes/coolshine.yaml | 2 + themes/copper-dark.yaml | 2 + themes/corallike.yaml | 2 + themes/corduroy.yaml | 2 + themes/corgidarkpastel2.yaml | 2 + themes/corgidarkpastel3.yaml | 2 + themes/cortex-theme.yaml | 52 +++++++++++ themes/cosmic-dark.yaml | 52 +++++++++++ themes/cosmic-decay.yaml | 2 + themes/cosmic-gleam-darkest.yaml | 2 + themes/cosmic-iris.yaml | 2 + themes/cosmic-purple.yaml | 2 + themes/cosmic-sea.yaml | 2 + themes/cosmic.yaml | 2 + themes/cosmical.yaml | 2 + themes/cosmico.yaml | 2 + themes/cosmicsarthak-dark.yaml | 2 + themes/cosmicsarthak-neon.yaml | 2 + themes/cosmicsarthak-night-owl.yaml | 2 + themes/cosmicsarthak-red.yaml | 2 + themes/cosmo.yaml | 2 + themes/cosmos-theme.yaml | 2 + themes/cosmos.yaml | 2 + themes/coucou-theme.yaml | 3 + themes/couldpeak.yaml | 2 + themes/cowboy-theme.yaml | 2 + themes/cozy-evenings.yaml | 2 + themes/cozy-mornings.yaml | 2 + themes/cozyspace.yaml | 52 +++++++++++ themes/cpa-lions.yaml | 3 + themes/cr0wn-gh0ul.yaml | 52 +++++++++++ themes/crackpot-contrast.yaml | 2 + themes/crackpot-light.yaml | 2 + themes/crackpot.yaml | 2 + ...k-contrast.yaml => crafty-theme-dark.yaml} | 5 +- themes/cream-charcoal.yaml | 2 + ...reative-purple-innovation-imagination.yaml | 52 +++++++++++ ...e-purple-light-innovation-imagination.yaml | 2 + themes/crema.yaml | 2 + themes/crf-flamengo.yaml | 2 + themes/crimson-sunset.yaml | 2 + themes/crisp-contrast.yaml | 2 + themes/crisp-light.yaml | 2 + themes/crisp.yaml | 2 + themes/crow-dark.yaml | 2 + themes/crowveil-ayu.yaml | 2 + themes/crt-64.yaml | 2 + themes/crt-alt.yaml | 2 + themes/crt-amber.yaml | 2 + themes/crt-apple.yaml | 2 + themes/crt-appleiic.yaml | 2 + themes/crt-blue.yaml | 2 + themes/crt-green.yaml | 2 + themes/crt-green1.yaml | 2 + themes/crt-green2.yaml | 2 + themes/crt-red.yaml | 2 + themes/crypto.yaml | 2 + themes/crystal-quartz.yaml | 52 +++++++++++ themes/crystaltine-s-crystalline-4-1.yaml | 2 + themes/crystaltine-s-crystalline-5-0.yaml | 2 + themes/cs50-light-theme.yaml | 2 + themes/css-battle.yaml | 2 + themes/cucumber-dark.yaml | 2 + themes/cucumber-light.yaml | 2 + themes/curry-dark.yaml | 2 + themes/cursor-dark-anysphere-v0-0-1.yaml | 2 + themes/cursor-less-dark.yaml | 2 + themes/cursor-light.yaml | 2 + themes/cursor-night-theme-soft.yaml | 2 + themes/cursor-night-theme.yaml | 2 + themes/cursor-theme.yaml | 2 + themes/custom-theme.yaml | 2 + themes/custommarktheme.yaml | 2 + themes/cyan-dark.yaml | 2 + themes/cyber-dark.yaml | 2 + themes/cyber-industrial.yaml | 52 +++++++++++ themes/cyber-light-soft.yaml | 2 + themes/cyber-light-warm.yaml | 2 + themes/cyber-light.yaml | 2 + themes/cyber-pastel-violet.yaml | 2 + themes/cyber-pop.yaml | 52 +++++++++++ themes/cyber-purple-77.yaml | 2 + themes/cyberblue.yaml | 2 + themes/cyberdude-black.yaml | 2 + themes/cyberdyne-ghostty.yaml | 2 + themes/cybereternals-vscode-theme.yaml | 2 + themes/cyberlite-fork.yaml | 5 +- themes/cybermoon.yaml | 2 + themes/cyberpink-137-theme.yaml | 2 + themes/cyberpunk-2077-reloaded.yaml | 2 + themes/cyberpunk-2077.yaml | 2 + themes/cyberpunk.yaml | 74 +++++++-------- themes/cyberpunkcygnus-clear-grid.yaml | 2 + themes/cyberpunkcygnus-neon-pulse.yaml | 2 + themes/cyberpunkcygnus-solace-flare.yaml | 2 + themes/cybersec-pro.yaml | 50 +++++++++++ themes/cyberspace.yaml | 52 +++++++++++ themes/cybertrauma-s-dark-theme.yaml | 2 + themes/cybertrauma-s.yaml | 2 + themes/cybertronix.yaml | 3 + themes/cyberui.yaml | 5 +- themes/cynical-color-theme.yaml | 2 + themes/cyperpunkrebecca.yaml | 3 + themes/d2t-dark-clean.yaml | 2 + themes/d2t-dark.yaml | 2 + themes/da3m0ns-dark-italic.yaml | 2 + themes/daet.yaml | 52 +++++++++++ themes/dafault.yaml | 2 + themes/dak-v1.yaml | 3 + themes/dalailahner-dark.yaml | 2 + themes/dalton.yaml | 2 + themes/dan-light-work.yaml | 2 + themes/dan-react-theme.yaml | 2 + themes/dang-jedi.yaml | 2 + themes/dangergray-v2.yaml | 2 + themes/dango-theme.yaml | 2 + themes/daniel-material-palenight-theme.yaml | 52 +++++++++++ themes/danmo.yaml | 3 + themes/dante-color-theme.yaml | 52 +++++++++++ themes/dantes-theme.yaml | 2 + themes/dantetheme.yaml | 2 + themes/darcula-contrast-min.yaml | 2 + themes/darcula-contrast.yaml | 2 + themes/darcula-dark-theme.yaml | 2 + themes/darcula-port.yaml | 52 +++++++++++ themes/darcula-solid-color-theme.yaml | 2 + themes/darcula-void.yaml | 2 + themes/darcula.yaml | 2 + themes/darculacode.yaml | 2 + themes/dare-contrast.yaml | 2 + themes/dare-light.yaml | 2 + themes/dare.yaml | 2 + themes/dark-1.yaml | 52 +++++++++++ themes/dark-abyss.yaml | 2 + themes/dark-amethyst.yaml | 2 + themes/dark-army.yaml | 2 + themes/dark-aura.yaml | 2 + themes/dark-black-developer.yaml | 2 + themes/dark-blood.yaml | 52 +++++++++++ themes/dark-blue-theme.yaml | 2 + themes/dark-bqueiroz.yaml | 2 + themes/dark-brown-theme.yaml | 2 + themes/dark-brown.yaml | 2 + themes/dark-cherry-ice-cream-subtle.yaml | 52 +++++++++++ themes/dark-cherry-ice-cream.yaml | 52 +++++++++++ themes/dark-clean.yaml | 2 + themes/dark-code-fork.yaml | 2 + themes/dark-codely-theme.yaml | 2 + themes/dark-coffee.yaml | 2 + themes/dark-cool-theme.yaml | 2 + themes/dark-crimson.yaml | 52 +++++++++++ themes/dark-decay.yaml | 2 + themes/dark-dev-theme.yaml | 49 ++++++++++ themes/dark-discord-vscode.yaml | 2 + themes/dark-dust-pro.yaml | 2 + themes/dark-flow.yaml | 2 + themes/{darkforest.yaml => dark-forest.yaml} | 14 +-- themes/dark-frost-midnight.yaml | 2 + themes/dark-frost.yaml | 2 + themes/dark-fury.yaml | 2 + themes/dark-future-cyberpunk-2077.yaml | 2 + themes/dark-future-outrun.yaml | 52 +++++++++++ themes/dark-green-energy.yaml | 2 + themes/dark-green-jungle.yaml | 2 + themes/dark-green-minimalist-theme.yaml | 2 + themes/dark-green.yaml | 2 + themes/dark-grey-theme.yaml | 2 + themes/dark-ink-and-red-accents.yaml | 3 + themes/dark-ink-brighter.yaml | 3 + themes/dark-ink-brightest.yaml | 3 + themes/dark-ink-lighter.yaml | 3 + themes/dark-ink.yaml | 3 + themes/dark-jade.yaml | 2 + themes/dark-juice-bordered.yaml | 52 +++++++++++ themes/dark-lavender-black.yaml | 2 + themes/dark-lavender-soft.yaml | 2 + themes/dark-lavender-tailwind-soft.yaml | 2 + themes/dark-lavender-tailwind.yaml | 2 + themes/dark-lavender.yaml | 2 + themes/dark-legibility.yaml | 2 + themes/dark-leocode-theme.yaml | 2 + themes/dark-lime-flat.yaml | 2 + themes/dark-magic-dracula.yaml | 2 + themes/dark-magic-frankenstein.yaml | 2 + themes/dark-magic-light.yaml | 2 + themes/dark-magic-night.yaml | 2 + themes/dark-magic-nord.yaml | 2 + themes/dark-magic-tokyo.yaml | 2 + themes/dark-magic.yaml | 2 + themes/dark-matter-code-neptune-medium.yaml | 2 + themes/dark-minimal-lime-theme.yaml | 2 + themes/dark-minimal-theme-sm.yaml | 2 + themes/dark-mode-lover-wasp.yaml | 3 + themes/dark-mode-lover.yaml | 3 + themes/dark-mode-vs.yaml | 2 + themes/dark-mode.yaml | 2 + themes/dark-modern-one-without-italics.yaml | 2 + themes/dark-modern-yuriyprogg.yaml | 3 + themes/dark-molokai.yaml | 2 + themes/dark-mono.yaml | 2 + themes/dark-monokai.yaml | 3 + themes/dark-moonlight.yaml | 52 +++++++++++ themes/dark-mosqueta.yaml | 50 +++++++++++ themes/dark-mute.yaml | 2 + themes/dark-nebula.yaml | 2 + themes/dark-neon-theme-sm.yaml | 2 + themes/dark-night-pro.yaml | 2 + themes/dark-night.yaml | 2 + themes/dark-ocean.yaml | 2 + themes/dark-ohnagi-2020.yaml | 2 + themes/dark-orange-flat.yaml | 52 +++++++++++ themes/dark-owl-darker-no-italics.yaml | 52 +++++++++++ themes/dark-owl-darker.yaml | 2 + themes/dark-pastel-pink.yaml | 2 + themes/dark-pastel.yaml | 2 + themes/dark-pie-deep-dark.yaml | 2 + themes/dark-pink-theme.yaml | 2 + themes/dark-plus-chocolate.yaml | 2 + themes/dark-plus-moon-lite.yaml | 2 + themes/dark-plus-oled-dim-100.yaml | 2 + themes/dark-plus-oled-dim-75.yaml | 2 + themes/dark-plus-oled-dim-80.yaml | 2 + themes/dark-plus-oled-dim-85.yaml | 2 + themes/dark-plus-oled-dim-90.yaml | 2 + themes/dark-plus-oled-dim-95.yaml | 2 + themes/dark-plus-syntax.yaml | 2 + themes/dark-purple-flat.yaml | 2 + ...lack-purple.yaml => dark-purple-fork.yaml} | 16 ++-- themes/dark-purple.yaml | 2 + themes/dark-purpled-theme.yaml | 52 +++++++++++ themes/dark-rainbow.yaml | 2 + themes/dark-reader-dark.yaml | 52 +++++++++++ themes/dark-reader-light.yaml | 2 + themes/dark-readin-5.yaml | 2 + themes/dark-red-theme-vs-code.yaml | 2 + themes/dark-red-theme.yaml | 52 +++++++++++ themes/dark-remix-nord.yaml | 2 + themes/dark-remix-one-dark.yaml | 2 + themes/dark-sand-theme.yaml | 2 + themes/dark-sea-green.yaml | 2 + themes/dark-sky-fork-fork.yaml | 2 + themes/dark-soft-theme-sm.yaml | 2 + themes/dark-solarin-2021.yaml | 52 +++++++++++ themes/dark-springbok.yaml | 2 + themes/dark-terminal-pro.yaml | 2 + themes/dark-theme-blue.yaml | 2 + themes/dark-theme-by-sanan.yaml | 2 + themes/dark-theme-new.yaml | 2 + themes/dark-theme-v2.yaml | 3 + themes/dark-theme.yaml | 2 + themes/dark-v3.yaml | 2 + themes/dark-vibes.yaml | 2 + themes/dark-visual-studio.yaml | 3 + themes/dark-with-blue.yaml | 49 ++++++++++ themes/dark-wolf.yaml | 2 + themes/dark-yellow-flat.yaml | 2 + themes/dark.yaml | 2 + themes/darka.yaml | 2 + themes/darkalchemy-basic.yaml | 2 + themes/darkasp.yaml | 2 + themes/darkblue-theme-official.yaml | 49 ++++++++++ themes/darkblue-theme.yaml | 2 + themes/darkbubble.yaml | 2 + themes/darkbutter.yaml | 2 + themes/darkdarkdark.yaml | 3 + themes/darker-b.yaml | 52 +++++++++++ themes/darker-monokai-gold.yaml | 52 +++++++++++ themes/darker-solarized.yaml | 2 + themes/darker-than-black.yaml | 2 + themes/darkest.yaml | 2 + themes/darkestside-theme.yaml | 2 + themes/darkfontenelestheme.yaml | 3 + themes/darkfusion.yaml | 3 + themes/darkheist.yaml | 2 + themes/darkish.yaml | 2 + themes/darkit-astral.yaml | 2 + themes/darkj.yaml | 2 + themes/darkknight.yaml | 2 + themes/darklimeteal.yaml | 2 + themes/darklover.yaml | 2 + themes/darkly-theme.yaml | 2 + themes/darkly.yaml | 2 + themes/darkness-color-theme.yaml | 2 + themes/darkness-of-my-soul.yaml | 2 + themes/darkoo.yaml | 2 + themes/darkorange.yaml | 2 + themes/darkpinkpro.yaml | 2 + themes/darkplastic.yaml | 2 + themes/darkpurple.yaml | 2 + themes/darkquark.yaml | 2 + themes/darkr-green.yaml | 2 + themes/darkred.yaml | 2 + themes/darkroom.yaml | 2 + themes/darkroy-night.yaml | 2 + themes/darkroy.yaml | 2 + themes/darkrr-green.yaml | 2 + themes/darkrrr-green.yaml | 2 + themes/darkrrrr-green.yaml | 2 + themes/darkrrrrr-green.yaml | 2 + themes/darksian-theme.yaml | 52 +++++++++++ themes/darkside-contrast.yaml | 2 + themes/darkside-light.yaml | 2 + themes/darkside.yaml | 2 + themes/darkspace.yaml | 50 ++++++----- themes/darkstar.yaml | 2 + themes/darkstash.yaml | 2 + themes/darktra.yaml | 2 + themes/darkula.yaml | 2 + themes/darkuto.yaml | 2 + themes/darkvoid-ocean.yaml | 2 + themes/darkvoid.yaml | 2 + themes/darkwaves-ashen-core.yaml | 2 + themes/darkwaves-celestial-mist.yaml | 2 + themes/darkwaves-cloud-lands.yaml | 2 + themes/darkwaves-driftwood.yaml | 2 + themes/darkwaves-forge.yaml | 2 + themes/darkwaves-gray-elegance.yaml | 2 + themes/darkwaves-nebula.yaml | 2 + themes/darkwaves-obsidian.yaml | 2 + themes/darkwaves-spectrum.yaml | 2 + themes/darkwind-default.yaml | 2 + themes/darky-purple-storm.yaml | 2 + themes/darky-purple.yaml | 2 + themes/darkyamaris.yaml | 3 + themes/darth-insidious.yaml | 2 + themes/darth-invader.yaml | 2 + themes/darthbuddy.yaml | 2 + themes/dartpad.yaml | 52 +++++++++++ themes/daru.yaml | 2 + themes/darwin.yaml | 2 + themes/dashxe.yaml | 2 + themes/davi-lacerda-dark.yaml | 2 + themes/davi-lacerda-light.yaml | 2 + themes/david.yaml | 2 + themes/daviontheme.yaml | 2 + themes/dawnblush.yaml | 3 + themes/day-n-nite.yaml | 2 + themes/day.yaml | 2 + themes/dayfox.yaml | 2 + themes/daysofwineandroses.yaml | 2 + themes/dbt-dark-theme.yaml | 52 +++++++++++ themes/dbt-fusion.yaml | 2 + themes/dbt-light-theme.yaml | 52 +++++++++++ themes/dc-dark-theme.yaml | 50 +++++++++++ themes/dcdevthemered.yaml | 2 + themes/dead-club-city.yaml | 52 +++++++++++ themes/deadbeef.yaml | 2 + themes/deadmura.yaml | 52 +++++++++++ themes/deadpool.yaml | 2 + themes/deaving-theme.yaml | 3 + themes/decayce.yaml | 2 + themes/deeold.yaml | 2 + themes/deep-dark-blue.yaml | 52 +++++++++++ themes/deep-dark-purple.yaml | 52 +++++++++++ themes/deep-dark-teal.yaml | 52 +++++++++++ themes/deep-dark.yaml | 2 + themes/deep-indigo-wisdom-intuition.yaml | 2 + themes/deep-ocean.yaml | 50 ----------- themes/deep-purple-fork-fork.yaml | 3 + themes/deep-purple-fork.yaml | 52 +++++++++++ themes/deep-purple-theme.yaml | 2 + themes/deep-purple.yaml | 2 + themes/deep-rainforest.yaml | 2 + themes/deep-sea-navigator.yaml | 52 +++++++++++ themes/deep-space-dark.yaml | 2 + themes/deep-teal.yaml | 52 +++++++++++ themes/deep-void.yaml | 52 +++++++++++ themes/deepslime.yaml | 52 +++++++++++ themes/deepwave.yaml | 2 + themes/deepwoods-autumn-needles.yaml | 50 +++++++++++ themes/deepwoods-frosted-pines.yaml | 50 +++++++++++ themes/deepwoods-high-canopy.yaml | 50 +++++++++++ themes/deepwoods-spring-thaw.yaml | 50 +++++++++++ themes/default-enhanced.yaml | 2 + themes/defaults.yaml | 2 + themes/defdo-base.yaml | 2 + themes/defdo-halloween.yaml | 2 + themes/definetely-not-github-s-theme.yaml | 2 + themes/definition-theme2023.yaml | 2 + themes/dejaypiii.yaml | 2 + themes/dekirisu-s-rust-theme.yaml | 2 + themes/delowar-dark-pro.yaml | 52 +++++++++++ themes/delowar-monokai-pro.yaml | 52 +++++++++++ themes/delowar-ocean-blue.yaml | 52 +++++++++++ themes/demon-dark-pro.yaml | 2 + themes/demon-light-pro.yaml | 2 + themes/demon-slayer-light-theme.yaml | 2 + themes/demon.yaml | 52 +++++++++++ themes/desert-night.yaml | 52 +++++++++++ themes/desert-tide.yaml | 52 +++++++++++ themes/desert.yaml | 2 + themes/designcourse-theme.yaml | 2 + themes/designonev2.yaml | 3 + themes/dessert.yaml | 2 + themes/deus-ex-md-dark.yaml | 2 + themes/dev-code-theme-color-theme.yaml | 52 +++++++++++ themes/dev-dark-fork-fork.yaml | 2 + themes/dev-dev-color-theme.yaml | 52 +++++++++++ themes/dev-tachgurbanov.yaml | 3 + themes/dev-theme-pro-nebula-mist.yaml | 2 + themes/dev-theme-pro-nebula-void.yaml | 2 + themes/dev-theme-pro-ocean-mist.yaml | 2 + themes/dev-theme-pro-ocean-void.yaml | 2 + themes/dev-theme.yaml | 3 + themes/devcode.yaml | 2 + themes/devdojo-seppuku.yaml | 3 + themes/developer-friendly-dark.yaml | 52 +++++++++++ themes/developers-theme-fork.yaml | 2 + themes/devhaven-dracula.yaml | 52 +++++++++++ themes/devjam-dark.yaml | 49 ++++++++++ themes/devmedia-dark-modern.yaml | 3 + themes/devmedia-dark.yaml | 2 + themes/devmedia-light.yaml | 2 + themes/devoption-light.yaml | 52 +++++++++++ themes/devr.yaml | 2 + themes/devsena-ultra-dark.yaml | 8 +- themes/devtheme.yaml | 60 +++++++------ themes/devx-dark.yaml | 2 + themes/dew-grey.yaml | 2 + themes/dewart.yaml | 52 +++++++++++ themes/dfp-idle.yaml | 2 + themes/dhamma-dark.yaml | 2 + themes/dhamma-light.yaml | 2 + themes/dharam-gfx-anthracite.yaml | 2 + themes/dharam-gfx-arc-blueberry.yaml | 2 + themes/dharam-gfx-arc-eggplant.yaml | 2 + themes/dharam-gfx-arc-reversed.yaml | 2 + themes/dharam-gfx-gold.yaml | 52 +++++++++++ themes/dharam-gfx-hacker-theme.yaml | 2 + themes/dharam-gfx-hight-contrast.yaml | 2 + themes/dharam-gfx-webdevcody.yaml | 2 + themes/diabo-theme.yaml | 2 + themes/diamond-theme.yaml | 2 + themes/digitaliss-light.yaml | 52 +++++++++++ themes/digitaliss-pastel.yaml | 52 +++++++++++ themes/digitaliss.yaml | 52 +++++++++++ themes/dimi-theme-dark.yaml | 2 + themes/dimi-theme-darker.yaml | 2 + themes/dimmed-theme.yaml | 2 + themes/dimmed.yaml | 2 + themes/dioximo-dark.yaml | 2 + themes/dioximo-light.yaml | 2 + themes/discord-onyx.yaml | 3 + themes/discord-theme.yaml | 2 + themes/dislexic.yaml | 2 + themes/div-s-theme.yaml | 2 + themes/dive-bar.yaml | 2 + themes/division-group-dark-theme.yaml | 52 +++++++++++ themes/dj-s-purple.yaml | 2 + themes/djolof.yaml | 2 + ...ntrast.yaml => dk-dark-high-contrast.yaml} | 16 ++-- themes/dna-helix.yaml | 2 + themes/dodimmed-dark.yaml | 2 + themes/doems-sunset.yaml | 52 +++++++++++ themes/doli-soft-green.yaml | 52 +++++++++++ themes/doli-universal.yaml | 2 + themes/doli-visual-studio.yaml | 2 + themes/dominator-paralyzer.yaml | 2 + themes/domtheme.yaml | 2 + themes/doom-one-dark.yaml | 2 + themes/doom-one-light.yaml | 2 + themes/doom-one.yaml | 2 + themes/dooshtheme.yaml | 2 + themes/dork.yaml | 3 + themes/dorkmode.yaml | 2 + themes/dot-developer-dark.yaml | 2 + themes/dotportal.yaml | 3 + themes/dove.yaml | 52 +++++++++++ themes/downpour-contrast.yaml | 2 + themes/downpour-light.yaml | 2 + themes/downpour.yaml | 2 + themes/doyoubleed.yaml | 2 + themes/dqn.yaml | 52 +++++++++++ themes/dr-jones.yaml | 2 + themes/draco-dark.yaml | 2 + themes/draconica.yaml | 2 + themes/dracula-2022.yaml | 52 +++++++++++ themes/dracula-at-dusk.yaml | 2 + themes/dracula-at-night.yaml | 2 + themes/dracula-dark.yaml | 52 +++++++++++ themes/dracula-dimmed-color-theme.yaml | 2 + themes/dracula-falcon.yaml | 2 + themes/dracula-gray.yaml | 2 + themes/dracula-high-contract.yaml | 2 + themes/dracula-light.yaml | 2 + themes/dracula-midnight.yaml | 2 + themes/dracula-min-light-darker-theme.yaml | 2 + themes/dracula-min-light-theme.yaml | 2 + themes/dracula-min-white-darker-theme.yaml | 2 + themes/dracula-min-white-theme.yaml | 2 + themes/dracula-pro-black.yaml | 2 + themes/dracula-pro.yaml | 52 +++++++++++ themes/dracula.yaml | 2 + themes/draculight.yaml | 2 + themes/draculish.yaml | 2 + themes/dragn-dark-color-theme.yaml | 2 + themes/dragon.yaml | 2 + themes/dragonfly.yaml | 2 + themes/dragonight.yaml | 2 + themes/drake.yaml | 52 +++++++++++ themes/drakkar.yaml | 3 + themes/drasing-dark.yaml | 3 + themes/dreadbots-fork.yaml | 2 + themes/dreamer-theme.yaml | 3 + themes/dribbble-theme-light.yaml | 2 + themes/drifter.yaml | 2 + themes/drk.yaml | 2 + themes/drukalu.yaml | 52 +++++++++++ themes/drukyul-dark.yaml | 2 + themes/drukyul-light.yaml | 2 + themes/drux-theme.yaml | 3 + themes/ds-rose.yaml | 2 + themes/dsekon-theme.yaml | 52 +++++++++++ themes/duck-in-the-dream.yaml | 2 + themes/duck-in-the-lake.yaml | 2 + themes/duck-story.yaml | 3 + themes/duckcash.yaml | 2 + themes/duckdevlabs.yaml | 2 + themes/duckeys-blurple.yaml | 2 + themes/ducky-light.yaml | 2 + themes/dukemonokai-color-theme.yaml | 2 + themes/dull-sun-dark.yaml | 2 + themes/dull-sun-light.yaml | 2 + themes/dull-sun.yaml | 2 + themes/dumdum-theme.yaml | 2 + themes/dune-arrakis-incandescent.yaml | 2 + themes/dune-bene-gesserit.yaml | 2 + themes/dune-caladan-storm.yaml | 2 + themes/dune-fremen-sietch.yaml | 2 + themes/dune-giedi-prime.yaml | 2 + themes/dune-guild-navigator.yaml | 2 + themes/dune-harkonnen.yaml | 2 + themes/dune-house-atreides.yaml | 2 + themes/dune-ix-technology.yaml | 2 + themes/dune-kaitain.yaml | 2 + themes/dune-mentat.yaml | 2 + themes/dune-muad-dib.yaml | 2 + themes/dune-salusa-secundus.yaml | 2 + themes/dune-sandworm.yaml | 2 + themes/dune-sardaukar-imperial.yaml | 2 + themes/dune-spacing-guild.yaml | 2 + themes/dune-spice-vision.yaml | 2 + themes/dune-water-of-life.yaml | 2 + themes/duomage.yaml | 2 + themes/durgonix-dark.yaml | 2 + themes/dusk-rider.yaml | 2 + themes/dusk.yaml | 2 + themes/duskfox.yaml | 2 + themes/dutchtheme.yaml | 2 + themes/dyno-cute.yaml | 2 + themes/dyno.yaml | 2 + themes/dzsolarized-dark.yaml | 2 + themes/dzsolarized.yaml | 2 + themes/earl-grey.yaml | 2 + themes/early-bird.yaml | 52 +++++++++++ themes/earth-brown-stability-grounding.yaml | 2 + themes/earth-collection.yaml | 3 + themes/earthsong-contrast.yaml | 2 + themes/earthsong-light.yaml | 2 + themes/earthsong.yaml | 2 + themes/easter.yaml | 52 +++++++++++ themes/easy-eye.yaml | 2 + themes/easy-eyes-color-theme.yaml | 2 + themes/easy-light.yaml | 2 + themes/ecatheme.yaml | 52 +++++++++++ themes/eclipsa.yaml | 2 + themes/eclipse-dark-darker.yaml | 2 + themes/eclipse-dark-flat.yaml | 2 + themes/eclipse-dawn.yaml | 52 +++++++++++ themes/eclipse-flare.yaml | 2 + themes/eclipse-optics.yaml | 2 + themes/eclipse-penumbra.yaml | 2 + themes/eclipse-umbra.yaml | 2 + themes/ecogest-solarized-light.yaml | 52 +++++++++++ themes/edge-dark-aura.yaml | 2 + themes/edge-dark-neon.yaml | 2 + themes/edge-dark.yaml | 2 + themes/edge-light.yaml | 2 + themes/edgerunner.yaml | 2 + themes/editor.yaml | 2 + themes/edu4dev-vscode-theme-color.yaml | 2 + themes/eezoterial-dark.yaml | 2 + themes/eezoterial-light.yaml | 2 + themes/ef-arbutus.yaml | 3 + themes/ef-autumn.yaml | 3 + themes/ef-bio.yaml | 3 + themes/ef-cherie.yaml | 3 + themes/ef-cyprus.yaml | 3 + themes/ef-dark.yaml | 2 + themes/ef-day.yaml | 2 + themes/ef-deuteranopia-dark.yaml | 2 + themes/ef-deuteranopia-light.yaml | 2 + themes/ef-dream.yaml | 3 + themes/ef-duo-dark.yaml | 2 + themes/ef-duo-light.yaml | 2 + themes/ef-eagle.yaml | 3 + themes/ef-elea-dark.yaml | 2 + themes/ef-elea-light.yaml | 2 + themes/ef-frost.yaml | 3 + themes/ef-kassio.yaml | 3 + themes/ef-light.yaml | 2 + themes/ef-maris-dark.yaml | 2 + themes/ef-maris-light.yaml | 2 + themes/ef-melissa-dark.yaml | 2 + themes/ef-melissa-light.yaml | 2 + themes/ef-night.yaml | 2 + themes/ef-owl.yaml | 3 + themes/ef-reverie.yaml | 3 + themes/ef-rosa.yaml | 3 + themes/ef-spring.yaml | 3 + themes/ef-summer.yaml | 3 + themes/ef-symbiosis.yaml | 3 + themes/ef-trio-dark.yaml | 2 + themes/ef-trio-light.yaml | 2 + themes/ef-tritanopia-dark.yaml | 2 + themes/ef-tritanopia-light.yaml | 2 + themes/ef-winter.yaml | 3 + themes/eggsplo1t.yaml | 2 + themes/eidolon-less-dark.yaml | 2 + themes/eidolon.yaml | 52 +++++++++++ themes/eigen-color-theme.yaml | 2 + themes/eiji-otieno-theme.yaml | 52 +++++++++++ themes/eink.yaml | 2 + themes/ekim.yaml | 2 + themes/eldar1984.yaml | 2 + themes/elderberry.yaml | 2 + themes/eldritch-dark.yaml | 2 + themes/eldritch.yaml | 2 + themes/electric-blue.yaml | 2 + themes/electric-dreams.yaml | 2 + themes/electric-ice-darker.yaml | 52 +++++++++++ themes/electric-ice.yaml | 52 +++++++++++ themes/electric-night.yaml | 3 + themes/electric-sheep.yaml | 2 + themes/electric-violet-fork.yaml | 2 + themes/electron-highlighter.yaml | 2 + themes/electron-vue.yaml | 2 + .../electronic-moonlight-theme-borders.yaml | 2 + themes/elegant-black.yaml | 2 + themes/elegant-red.yaml | 2 + themes/eleganterror404.yaml | 2 + themes/elementary.yaml | 2 + themes/elementowl.yaml | 2 + themes/elements.yaml | 10 ++- themes/elf-dream.yaml | 2 + themes/elhassan-neon-cyan.yaml | 2 + themes/elhassan-neon-dark-professional.yaml | 2 + themes/elhassan-neon-light-professional.yaml | 2 + themes/elhassan-neon-magenta.yaml | 2 + themes/elhassan-neon-purple.yaml | 2 + themes/elixir-theme-no-italics.yaml | 2 + ...elixir-theme-with-italics-less-dark-2.yaml | 52 +++++++++++ themes/elly.yaml | 2 + themes/elypink-dark-faded.yaml | 2 + themes/elypink-dark.yaml | 2 + themes/elypink-light-diamond.yaml | 2 + themes/elypink-light-faded.yaml | 2 + themes/elypink-light-spring.yaml | 2 + themes/elypink-light-summer.yaml | 2 + themes/elypink-light.yaml | 2 + themes/ember-glow.yaml | 52 +++++++++++ themes/ember.yaml | 2 + themes/emberstone-dark-theme.yaml | 2 + themes/emberstone.yaml | 2 + themes/emberwood.yaml | 52 +++++++++++ themes/emerald-fork.yaml | 2 + themes/emerald-matrix.yaml | 2 + themes/emerald.yaml | 2 + themes/emeralds.yaml | 2 + themes/emi-theme.yaml | 2 + themes/emmess-periglaciar.yaml | 52 +++++++++++ themes/empire-monokai-dark.yaml | 52 +++++++++++ themes/empire-monokai-light.yaml | 52 +++++++++++ themes/enchant-high-contrast.yaml | 2 + themes/enchant.yaml | 2 + themes/encom.yaml | 2 + themes/end-color-theme.yaml | 2 + themes/endeavouros-breeze-dark.yaml | 48 +++++----- themes/endeavouros-dark-high-contrast.yaml | 2 + themes/endeavouros-dark-night-shift.yaml | 2 + themes/endless-iris.yaml | 2 + .../energy-red-light-passion-alertness.yaml | 2 + themes/energy-red-passion-alertness.yaml | 52 +++++++++++ themes/energy-theme.yaml | 52 +++++++++++ themes/enhanced-hubspot-theme.yaml | 2 + themes/enhanced-material-batman.yaml | 2 + themes/enhanced-material-fork.yaml | 2 + themes/enhanced-material.yaml | 52 +++++++++++ themes/enigma.yaml | 50 +++++++++++ themes/enki-night-owl.yaml | 2 + themes/enki-rainbow.yaml | 52 +++++++++++ themes/enki-red.yaml | 2 + themes/enki.yaml | 2 + themes/enlightened-ifission.yaml | 52 +++++++++++ themes/enough.yaml | 2 + themes/enova.yaml | 2 + themes/eon-react.yaml | 2 + themes/eon-theme-second.yaml | 2 + themes/eon-theme-v4.yaml | 2 + themes/eon-theme.yaml | 2 + themes/epsilon.yaml | 2 + themes/equinox-dark.yaml | 2 + themes/equinox-light.yaml | 2 + themes/eralith.yaml | 2 + themes/erikwdevtheme-color-theme.yaml | 2 + themes/eritbh-s-theme.yaml | 2 + themes/errordark.yaml | 2 + themes/errrrrm.yaml | 2 + themes/escook-theme-light.yaml | 2 + themes/eskey-theme.yaml | 50 +++++++++++ themes/espresso-dark-theme.yaml | 2 + themes/espresso-dark.yaml | 2 + themes/espresso-high.yaml | 52 +++++++++++ themes/etec-pfa-light.yaml | 2 + themes/eternal-autumn.yaml | 2 + themes/eternal-summer.yaml | 2 + themes/eternals-no-italic.yaml | 2 + themes/ethanli-turquoise-dark.yaml | 2 + themes/ethereal.yaml | 2 + themes/ethereum-dark-blue-theme.yaml | 2 + themes/ethereum-dark-grey-theme.yaml | 2 + themes/eva-01-berserk-theme.yaml | 2 + themes/eva-01.yaml | 2 + themes/eva-theme.yaml | 50 +++++++++++ ...-02-theme-enhanced-red-grey-variation.yaml | 2 + themes/evans-dark-theme.yaml | 2 + themes/evans.yaml | 3 + themes/eve.yaml | 2 + themes/evening-sky.yaml | 2 + themes/everforest-dark.yaml | 52 +++++++++++ themes/everforest-night-hard.yaml | 50 +++++++++++ themes/everforest-night-light-hard.yaml | 50 +++++++++++ themes/everforest-night-light-medium.yaml | 50 +++++++++++ themes/everforest-night-light-soft.yaml | 50 +++++++++++ themes/everforest-night-medium.yaml | 50 +++++++++++ themes/everforest-night-soft.yaml | 50 +++++++++++ themes/everforest-pro-dark-cozy.yaml | 2 + themes/everforest-pro-dark-vibrant.yaml | 2 + themes/everforest-pro-dark.yaml | 52 +++++++++++ themes/everforest-pro-light-cozy.yaml | 2 + themes/everforest-pro-light-vibrant.yaml | 2 + themes/everforest-pro-light.yaml | 52 +++++++++++ themes/everforest-soft.yaml | 2 + themes/evergarden-winter-light.yaml | 2 + themes/evergarden-winter.yaml | 2 + themes/evergarden.yaml | 2 + themes/evernex.yaml | 2 + themes/evondev-tailwind-theme.yaml | 2 + themes/evro-dark.yaml | 2 + themes/evro-darker-flat.yaml | 2 + themes/exalanddark.yaml | 3 + themes/execlabs.yaml | 2 + themes/executive-level.yaml | 52 +++++++++++ themes/exias-theme-forest.yaml | 52 +++++++++++ themes/exias-theme-town.yaml | 2 + themes/exile.yaml | 3 + themes/exovoid-purple-better-c.yaml | 50 +++++++++++ themes/exploit.yaml | 2 + themes/eye-care-dark.yaml | 2 + themes/eye-care-light.yaml | 2 + themes/eye-care-owl-light.yaml | 52 +++++++++++ themes/eye-care-owl.yaml | 52 +++++++++++ themes/eye-care.yaml | 2 + themes/eye-comfort-light.yaml | 2 + themes/eyecooler.yaml | 2 + themes/eyeguard.yaml | 2 + themes/eyehealth-dark.yaml | 2 + themes/eyehealth-plus-light.yaml | 2 + themes/eyera.yaml | 2 + themes/eyesore.yaml | 2 + themes/ezcord-highcontrast.yaml | 2 + themes/ezcord-light.yaml | 2 + themes/ezcord-pastel.yaml | 2 + themes/ezcord.yaml | 2 + themes/ezgiturali-halloween.yaml | 2 + themes/ezra.yaml | 2 + themes/fabi.yaml | 2 + themes/fady-ehab-amer-dark-theme.yaml | 2 + themes/fae.yaml | 52 +++++++++++ themes/faerie-online.yaml | 2 + themes/fakedonald-s.yaml | 2 + themes/falcon.yaml | 2 + themes/famous-dev-light.yaml | 14 +-- themes/famous-dev-midnight.yaml | 14 +-- themes/fanuc-karel.yaml | 2 + themes/fcode.yaml | 2 + themes/fearless-dark.yaml | 2 + themes/feefoolec-2-0.yaml | 2 + themes/feels-like-progress-light.yaml | 3 + themes/felina.yaml | 2 + themes/feline-color-theme.yaml | 2 + themes/feline-theme.yaml | 3 + themes/felixo-green-contrast.yaml | 2 + themes/felixo-green-light.yaml | 2 + themes/felixo-green.yaml | 2 + themes/felixo-orange-contrast.yaml | 2 + themes/felixo-orange-light.yaml | 2 + themes/felixo-orange.yaml | 2 + themes/feliz-dark.yaml | 2 + themes/ferra.yaml | 2 + themes/feta.yaml | 2 + themes/fiestas.yaml | 5 +- themes/fifties.yaml | 2 + themes/fifty-shades-of-grape.yaml | 2 + themes/fig.yaml | 50 +++++++++++ themes/filter-turbo-color-theme.yaml | 52 +++++++++++ themes/filtered.yaml | 2 + themes/finalbossjeff.yaml | 2 + themes/firefly.yaml | 2 + themes/firefox-dark.yaml | 2 + themes/firelight.yaml | 2 + themes/fireside.yaml | 52 +++++++++++ themes/firewatch.yaml | 2 + themes/flamelabs-fire.yaml | 2 + themes/flamelabs-plasma.yaml | 2 + themes/flamingo-nebula.yaml | 52 +++++++++++ themes/flash-green-dark.yaml | 52 +++++++++++ themes/flat-light.yaml | 2 + themes/flat-ui-immersed.yaml | 2 + themes/flat-ui-one-dark.yaml | 2 + themes/flatcap.yaml | 2 + themes/flatland-monokai-improved.yaml | 52 +++++++++++ themes/flatuiexp.yaml | 3 + themes/flavia.yaml | 2 + themes/fleetheme.yaml | 52 +++++++++++ themes/fleeting-theme-modern.yaml | 52 +++++++++++ themes/fleetish.yaml | 2 + themes/fleetonedark.yaml | 2 + themes/fleety.yaml | 2 + themes/fleex-theme-dark.yaml | 2 + themes/fleex-theme-forest-dark.yaml | 2 + themes/fleex-theme-forest-light.yaml | 2 + themes/fleex-theme-light.yaml | 2 + themes/fleex-theme-mist-dark.yaml | 2 + themes/fleex-theme-mist-light.yaml | 2 + themes/fleex-theme-ocean-dark.yaml | 2 + themes/fleex-theme-ocean-light.yaml | 2 + themes/fleex-theme-plum-dark.yaml | 2 + themes/fleex-theme-plum-light.yaml | 2 + themes/fleex-theme-rose-dark.yaml | 2 + themes/fleex-theme-rose-light.yaml | 2 + themes/fleex-theme-sand-dark.yaml | 2 + themes/fleex-theme-sand-light.yaml | 2 + themes/fleex-theme-warm-dark.yaml | 2 + themes/fleex-theme-warm-light.yaml | 2 + themes/fleury-theme.yaml | 2 + themes/flex-appeal.yaml | 2 + themes/flexoki.yaml | 2 + themes/flippidippi-light.yaml | 52 +++++++++++ themes/flora.yaml | 2 + themes/florence.yaml | 2 + themes/floriamaris.yaml | 2 + themes/florist-dark.yaml | 2 + themes/florist-light.yaml | 2 + themes/flow-better-theme.yaml | 3 + themes/fluentblue.yaml | 52 +++++++++++ themes/fluffy-dark-theme.yaml | 2 + themes/fluffy-theme.yaml | 2 + themes/fluid-light-theme.yaml | 2 + themes/fluminense.yaml | 2 + themes/fluorite-theme.yaml | 2 + themes/flutter-dark.yaml | 2 + themes/flutter-theme-dark.yaml | 2 + themes/flux-dark.yaml | 2 + themes/flux-dawn.yaml | 2 + themes/flux-daylight.yaml | 2 + themes/flux-night.yaml | 2 + themes/flux-twilight.yaml | 2 + themes/flux.yaml | 3 + themes/foco-1-0-0.yaml | 2 + ...s-blue-colorblind-concentration-trust.yaml | 2 + themes/focus-blue-concentration-trust.yaml | 2 + ...lue-high-contrast-concentration-trust.yaml | 2 + .../focus-blue-light-concentration-trust.yaml | 2 + themes/focus-colors.yaml | 2 + themes/focus-dark-fork-fork.yaml | 2 + themes/focusoncoding.yaml | 2 + themes/fodder-contrast.yaml | 2 + themes/fodder-light.yaml | 2 + themes/fodder.yaml | 2 + themes/fog-hazy.yaml | 3 + themes/foggy-forest-v1.yaml | 2 + themes/foggy-minimal.yaml | 3 + themes/forest-color-theme.yaml | 2 + themes/forest-green-vitality-connection.yaml | 2 + themes/forest-green.yaml | 2 + themes/forest-light.yaml | 4 +- themes/forest-night-ethereal-magic.yaml | 2 + themes/forest-night-italic-serenade.yaml | 2 + themes/forest-night-serenade.yaml | 2 + themes/forest-night.yaml | 2 + themes/forest-rose.yaml | 3 + themes/forest-tech.yaml | 52 +++++++++++ themes/forest-violet.yaml | 2 + themes/forestfly-dark-hard.yaml | 2 + themes/forestfly-dark.yaml | 2 + themes/forestfly-light-hard.yaml | 2 + themes/forestlook.yaml | 2 + themes/forge-dark.yaml | 2 + themes/forge-light.yaml | 2 + themes/formal.yaml | 3 + themes/formosa-dark-ipanema-blue.yaml | 2 + themes/formosa-dark-night-green.yaml | 2 + themes/formosa-light-ipanema-blue.yaml | 2 + themes/formosa-light-night-green.yaml | 2 + themes/forventone.yaml | 2 + themes/forxtu.yaml | 2 + themes/foundyn-dev.yaml | 2 + themes/foxdracula-color-theme.yaml | 2 + themes/foxnett-nexus-theme.yaml | 52 +++++++++++ themes/frankenstein.yaml | 2 + themes/frantic-contrast.yaml | 2 + themes/frantic-light.yaml | 2 + themes/frantic.yaml | 2 + themes/french-rose.yaml | 2 + themes/fresh-green-color-theme.yaml | 52 +++++++++++ themes/fresh-start.yaml | 2 + themes/freshcut-contrast.yaml | 2 + themes/freshcut-light.yaml | 2 + themes/freshcut.yaml | 2 + themes/fretefy.yaml | 3 + themes/friction-contrast.yaml | 2 + themes/friction-light.yaml | 2 + themes/friction.yaml | 2 + themes/fridge.yaml | 3 + themes/friendly.yaml | 3 + themes/frog-terminal.yaml | 52 +++++++++++ themes/front-matter-cms-theme.yaml | 52 +++++++++++ themes/frontend-galaxy.yaml | 2 + themes/frontier-contrast.yaml | 2 + themes/frontier-light.yaml | 2 + themes/frontier.yaml | 2 + themes/frost-spark-dark.yaml | 52 +++++++++++ themes/frozen-deep.yaml | 52 +++++++++++ themes/frubilar.yaml | 52 +++++++++++ themes/fruitbasket-dark.yaml | 52 +++++++++++ themes/fruitbasket-light.yaml | 52 +++++++++++ ...k-all-these-vscode-custom-ugly-themes.yaml | 2 + themes/funchosa-dark-theme.yaml | 3 + themes/funcode.yaml | 52 +++++++++++ themes/functional.yaml | 52 +++++++++++ themes/furnace.yaml | 2 + themes/furukawa-pop-theme.yaml | 2 + themes/futuremotion-light.yaml | 2 + themes/futuristic-green.yaml | 2 + themes/futuristt.yaml | 2 + themes/g-dark-blue-whale.yaml | 2 + themes/g-dark-jacksons-purple.yaml | 2 + themes/g-dark-light-alice-blue.yaml | 2 + themes/g-dark-light-glitter.yaml | 2 + themes/g-dark-light-hint-of-red.yaml | 2 + themes/g-dark-minimal-2-astronaut-blue.yaml | 2 + themes/g-dark-minimal-3-oxford-blue.yaml | 2 + themes/g-dark-minimal-midnight.yaml | 2 + themes/g-dark-one-love-black-pearl.yaml | 2 + themes/g-dark-one-love.yaml | 2 + .../g-dark-shader-h-ck3r-midnight-moss.yaml | 2 + themes/g-dark-shader-haiti.yaml | 2 + themes/g-dark-shader-mirage.yaml | 2 + themes/g-dark-shift-midnight-moss.yaml | 2 + themes/g-dark-shift-vulcan.yaml | 2 + themes/g-dark-valhalla.yaml | 2 + themes/g-i-reaper.yaml | 3 + themes/g-i-seraph.yaml | 3 + themes/gagarin-theme.yaml | 2 + themes/galactic-flavored.yaml | 3 + themes/galaxia.yaml | 2 + themes/galaxian.yaml | 52 +++++++++++ themes/galaxytheme.yaml | 2 + themes/game-mode.yaml | 2 + themes/gameboy-classic-dark.yaml | 2 + themes/gameboy-classic-light.yaml | 2 + themes/gamma-fork.yaml | 2 + themes/gamma.yaml | 2 + themes/ganbaru-blue.yaml | 2 + themes/ganbaru-dark.yaml | 2 + themes/gantheory-dark.yaml | 2 + themes/ganyu-theme.yaml | 2 + themes/gapstyle-vs-dark-modern.yaml | 2 + themes/gapstyle-vs.yaml | 2 + themes/garbage-oracle-dark.yaml | 2 + themes/garbage-oracle-light.yaml | 2 + themes/gatito-next-theme.yaml | 2 + themes/gatito-nightly-red.yaml | 2 + themes/gatito-theme.yaml | 2 + themes/gatomontesdark2.yaml | 2 + themes/gauss-thetheme.yaml | 52 +++++++++++ themes/gckn.yaml | 52 +++++++++++ themes/gdscript35.yaml | 3 + themes/gekkou.yaml | 50 +++++++++++ themes/gelap.yaml | 52 +++++++++++ themes/gelato.yaml | 2 + themes/gelgel.yaml | 2 + themes/gems-theme-default.yaml | 2 + themes/gems-theme-light.yaml | 2 + themes/generated-color-theme.yaml | 3 + themes/genshin-impact-chiori-dark.yaml | 2 + themes/genshin-impact-chiori.yaml | 2 + themes/genshin-impact-citlali-dark.yaml | 2 + themes/genshin-impact-citlali.yaml | 2 + themes/genshin-impact-columbina.yaml | 2 + themes/genshin-impact-furina-dark.yaml | 2 + themes/genshin-impact-furina.yaml | 2 + themes/genshin-impact-ganyu-dark.yaml | 2 + .../genshin-impact-ganyu-high-contrast.yaml | 2 + themes/genshin-impact-ganyu-light.yaml | 2 + themes/genshin-impact-il-dottore-dark.yaml | 2 + themes/genshin-impact-il-dottore.yaml | 2 + .../genshin-impact-kamisato-ayaka-dark.yaml | 2 + themes/genshin-impact-kamisato-ayaka.yaml | 2 + themes/genshin-impact-layla-dark.yaml | 2 + themes/genshin-impact-layla.yaml | 2 + themes/genshin-impact-sandrone-dark.yaml | 2 + themes/genshin-impact-sandrone.yaml | 2 + themes/genshin-impact-scaramouche-dark.yaml | 2 + themes/genshin-impact-scaramouche.yaml | 2 + themes/genshin-impact-skirk-dark.yaml | 2 + themes/genshin-impact-skirk.yaml | 2 + themes/genshin-impact-wanderer-dark.yaml | 2 + themes/genshin-impact-wanderer.yaml | 2 + themes/genshin-impact-yae-miko-dark.yaml | 2 + themes/genshin-impact-yae-miko.yaml | 2 + ...genshin-impact-yumemizuki-mizuki-dark.yaml | 2 + ...mpact-yumemizuki-mizuki-high-contrast.yaml | 2 + ...enshin-impact-yumemizuki-mizuki-light.yaml | 2 + themes/gentil-dark.yaml | 2 + themes/gentle-builder.yaml | 2 + themes/gentle-clean-light.yaml | 2 + themes/gentle-clean-monokai.yaml | 2 + themes/gentle-dark-warm.yaml | 2 + themes/gentle-dark.yaml | 2 + themes/gentle-light-warmer.yaml | 2 + themes/gentle-light.yaml | 2 + themes/gentle-midnight-warm.yaml | 2 + themes/gentle-midnight.yaml | 2 + themes/gentleblack.yaml | 2 + themes/gfx.yaml | 2 + themes/gg-djaja-darken.yaml | 2 + themes/gg-djaja-default.yaml | 2 + themes/gg-djaja-light.yaml | 2 + themes/ghibli-day.yaml | 2 + themes/ghibli-forest-dark.yaml | 2 + themes/ghibli-night.yaml | 2 + themes/ghibli-sky-light.yaml | 2 + themes/ghost-louise.yaml | 2 + themes/ghostgrey.yaml | 2 + themes/ghostty-default-styledark.yaml | 2 + themes/ghostty-synthwave.yaml | 2 + themes/gigaaa.yaml | 2 + themes/gineticustheme.yaml | 2 + themes/ginseng.yaml | 2 + themes/girls-theme.yaml | 2 + themes/github-blue-dark.yaml | 2 + themes/github-blue-darkest.yaml | 2 + themes/github-catppuccin-dark-mix.yaml | 2 + themes/github-catppuccin-dark.yaml | 2 + themes/github-colorblind.yaml | 52 +++++++++++ themes/github-contrast-theme.yaml | 2 + themes/github-contrast.yaml | 2 + themes/github-dank-dimmed.yaml | 2 + themes/github-dark-colorblind-grayscale.yaml | 2 + themes/github-dark-default-grayscale.yaml | 2 + themes/github-dark-default.yaml | 2 + themes/github-dark-dimmed-grayscale.yaml | 2 + themes/github-dark-dimmed.yaml | 2 + .../github-dark-high-contrast-grayscale.yaml | 2 + themes/github-dark-mode.yaml | 2 + themes/github-dark-palenight.yaml | 2 + themes/github-dark-theme.yaml | 52 +++++++++++ themes/github-dark-tritanopia.yaml | 2 + themes/github-light-default.yaml | 2 + themes/github-light-theme.yaml | 52 +++++++++++ themes/github-minimal.yaml | 2 + themes/github-revamp.yaml | 52 +++++++++++ themes/github-theme-by-humamafif.yaml | 2 + themes/github.yaml | 2 + themes/gitlab-dark-grey.yaml | 2 + themes/gitlab-dark.yaml | 2 + themes/gitlab-light.yaml | 2 + themes/gitlab.yaml | 2 + themes/giyu-tomioka.yaml | 2 + themes/giza.yaml | 2 + themes/glacier-blue.yaml | 52 +++++++++++ themes/glance-contrast.yaml | 2 + themes/glance-light.yaml | 2 + themes/glance.yaml | 2 + themes/glassonion.yaml | 52 +++++++++++ themes/gleam-theme-minimal-dark.yaml | 2 + themes/glitchly-green.yaml | 2 + themes/gloam.yaml | 2 + themes/globe.yaml | 2 + themes/gloom-contrast.yaml | 2 + themes/gloom-light.yaml | 2 + themes/gloom.yaml | 2 + themes/glowfish-contrast.yaml | 2 + themes/glowfish-light.yaml | 2 + themes/glowfish.yaml | 2 + themes/glowing-sun.yaml | 2 + themes/glowing-yellow.yaml | 2 + themes/glu-dark-lighter.yaml | 2 + themes/glu-dark.yaml | 2 + themes/glv-s-theme.yaml | 2 + themes/gms2.yaml | 2 + themes/gnome-base16.yaml | 2 + themes/go-playground.yaml | 2 + themes/go-source.yaml | 2 + themes/goa-beach-paradise.yaml | 2 + themes/god-theme.yaml | 2 + themes/godot-4.yaml | 2 + themes/gogh.yaml | 52 +++++++++++ themes/gojo-infinity-dark.yaml | 2 + ...oku-code-dragon-ball-z-power-eye-safe.yaml | 2 + themes/gold.yaml | 2 + themes/golden-blue-color-theme.yaml | 2 + themes/golden-dracula.yaml | 2 + themes/golden-dullahan.yaml | 49 ++++++++++ themes/golden-era.yaml | 2 + themes/golden-eye.yaml | 2 + themes/golden-rain.yaml | 52 +++++++++++ themes/golden-sky.yaml | 2 + themes/golden-sunset.yaml | 2 + themes/golden-wave.yaml | 2 + themes/goldentheme.yaml | 2 + themes/goldfish-contrast.yaml | 2 + themes/goldfish-light.yaml | 2 + themes/goldfish.yaml | 2 + themes/goldream.yaml | 2 + themes/good-purple.yaml | 2 + themes/goodmonokai-color-theme.yaml | 3 + themes/goodnight-classic.yaml | 2 + themes/goodnight.yaml | 2 + themes/gooey-theme.yaml | 88 +++++++++--------- themes/googledark.yaml | 2 + themes/goolou.yaml | 2 + themes/goose.yaml | 2 + themes/goosebumps.yaml | 2 + themes/gopher.yaml | 2 + themes/gorfius-orange.yaml | 2 + themes/gorfius-peace-forest.yaml | 2 + themes/gorg.yaml | 2 + themes/got-beyond-the-wall.yaml | 52 +++++++++++ themes/got-house-baratheon.yaml | 52 +++++++++++ themes/got-house-greyjoy.yaml | 52 +++++++++++ themes/got-house-lannister.yaml | 52 +++++++++++ themes/got-house-martell.yaml | 52 +++++++++++ themes/got-house-stark.yaml | 52 +++++++++++ themes/got-house-targaryen.yaml | 52 +++++++++++ themes/got-night-s-watch.yaml | 52 +++++++++++ themes/got-the-iron-throne.yaml | 52 +++++++++++ themes/gotham.yaml | 2 + themes/gothic-absinthe.yaml | 2 + themes/gothic-amber-fog.yaml | 2 + themes/gothic-blood-moon.yaml | 2 + themes/gothic-cathedral.yaml | 2 + themes/gothic-cemetery.yaml | 2 + themes/gothic-dark.yaml | 2 + themes/gothic-emerald-crypt.yaml | 2 + themes/gothic-jester.yaml | 2 + themes/gothic-light.yaml | 52 +++++++++++ themes/gothic-midnight-rose.yaml | 2 + themes/gothic-qaddy.yaml | 2 + themes/gothic-raven.yaml | 2 + themes/gothic-spider-lily.yaml | 2 + themes/gothic-twilight-forest.yaml | 2 + themes/gothic-vampire.yaml | 2 + themes/gothic-victorian-mourning.yaml | 2 + themes/gourd.yaml | 2 + themes/gptheme-dark.yaml | 2 + themes/gptheme.yaml | 2 + themes/gracefulbear.yaml | 2 + themes/grandblue-pastel.yaml | 2 + themes/grandblue-soft.yaml | 2 + themes/grandblue.yaml | 2 + themes/grank-blackout.yaml | 2 + themes/grank.yaml | 52 +++++++++++ themes/grapered.yaml | 2 + themes/grapevine.yaml | 2 + themes/graphlinq-dark.yaml | 2 + themes/grassrivers-sunset.yaml | 2 + themes/gravel-pit.yaml | 2 + themes/graveyard-fork-fork.yaml | 52 +++++++++++ themes/graveyard.yaml | 2 + themes/gravity.yaml | 2 + themes/gray-matter.yaml | 2 + themes/gray-pastel.yaml | 2 + themes/graygraygray.yaml | 2 + themes/graymium-theme.yaml | 2 + themes/grayscale301-light.yaml | 2 + themes/great-white-bloodloss.yaml | 2 + themes/great-white-dark.yaml | 2 + themes/great-white-frost.yaml | 2 + themes/great-white-high-contrast-dark.yaml | 2 + themes/great-white-high-contrast-light.yaml | 2 + themes/great-white-light.yaml | 2 + themes/great-white-storm.yaml | 2 + themes/great-white.yaml | 2 + themes/greblue.yaml | 2 + themes/greeeeen.yaml | 2 + themes/green-coffee.yaml | 2 + themes/green-geek.yaml | 2 + themes/green-hacker.yaml | 52 +++++++++++ themes/green-kingdom.yaml | 2 + themes/green-low-contrast.yaml | 2 + themes/green-papper.yaml | 2 + themes/green-theme.yaml | 2 + themes/green-tree.yaml | 2 + themes/green-valley-forest.yaml | 2 + themes/green-valley-matrix.yaml | 2 + themes/green-valley-midnight.yaml | 2 + themes/green-valley-mint.yaml | 2 + themes/green-valley-neo.yaml | 2 + themes/green-water.yaml | 2 + themes/green.yaml | 2 + themes/green500.yaml | 3 + themes/greenbreeze-dark.yaml | 2 + themes/greenbreeze-light.yaml | 2 + themes/greenbyte-dark.yaml | 2 + themes/greencloud.yaml | 2 + themes/greeney-v2.yaml | 2 + themes/greeney.yaml | 2 + themes/greenish.yaml | 50 +++++++++++ themes/greenmachine.yaml | 2 + themes/greenspace.yaml | 2 + themes/grewee-colorscheme.yaml | 2 + themes/greygull.yaml | 2 + themes/greyout.yaml | 2 + themes/greystillplays.yaml | 2 + themes/grimoire-nox.yaml | 2 + themes/grimoire.yaml | 2 + themes/grove-street-noir.yaml | 2 + themes/gru-black.yaml | 2 + themes/gruber-blue.yaml | 2 + themes/grumbra.yaml | 14 +-- themes/grunboxtheme.yaml | 2 + themes/grunge-contrast.yaml | 2 + themes/grunge-light.yaml | 2 + themes/grunge.yaml | 2 + themes/grusper.yaml | 2 + ...-medium.yaml => gruvbox-dark-anhoder.yaml} | 6 +- themes/gruvbox-dark-soft.yaml | 50 ----------- themes/gruvbox-drakenlords-dark-draken.yaml | 2 + themes/gruvbox-drakenlords-dark.yaml | 2 + themes/gruvbox-drakenlords-grey.yaml | 2 + themes/gruvbox-drakenlords-semi-dark.yaml | 2 + themes/gruvbox-ish-dark-hard.yaml | 2 + themes/gruvbox-ish-dark-medium.yaml | 2 + themes/gruvbox-ish-dark-soft.yaml | 2 + themes/gruvbox-light-medium.yaml | 52 +++++++++++ themes/gruvbox-light-soft.yaml | 52 +++++++++++ .../gruvbox-material-dark-claude-hybrid.yaml | 2 + themes/gruvbox-material-dark.yaml | 52 +++++++++++ themes/gruvbox-material-flat-dark.yaml | 2 + themes/gruvbox-material-flat-light.yaml | 2 + themes/gruvbox-material-light.yaml | 52 +++++++++++ themes/gruvbox-material-mix.yaml | 3 + themes/gruvbox-minor-dark-hard.yaml | 2 + themes/gruvbox-minor-dark-medium.yaml | 2 + themes/gruvbox-minor-dark-soft.yaml | 2 + themes/gruvbox-minor-light-hard.yaml | 2 + themes/gruvbox-minor-light-medium.yaml | 2 + themes/gruvbox-minor-light-soft.yaml | 2 + themes/gruvchad.yaml | 2 + themes/gruvdark-gbm.yaml | 2 + themes/gruvdark-tokyo.yaml | 2 + themes/gruvdark.yaml | 52 +++++++++++ themes/gruvvy-watermelon.yaml | 50 +++++++++++ themes/guezwhoz.yaml | 2 + themes/guisaldanha-light.yaml | 2 + themes/gujarat-vibrant-culture.yaml | 2 + themes/gum.yaml | 2 + themes/gumua.yaml | 2 + themes/gunivers.yaml | 2 + themes/gustavoglins.yaml | 2 + themes/gusuku-limestone.yaml | 2 + themes/guttenbergovitz.yaml | 52 +++++++++++ themes/gvalley.yaml | 3 + themes/gyomei-himejima.yaml | 2 + themes/h1-dark-fork.yaml | 2 + themes/h1-light-fork.yaml | 2 + themes/haavyz.yaml | 2 + themes/habamax.yaml | 2 + themes/habamix.yaml | 2 + themes/hachiko.yaml | 2 + themes/hack-and-lima.yaml | 2 + themes/hack-electron.yaml | 2 + themes/hack-minor.yaml | 52 +++++++++++ themes/hackage-theme.yaml | 2 + themes/hacker-blue.yaml | 2 + themes/hacker-pink.yaml | 2 + themes/hacker-x.yaml | 2 + themes/hacker.yaml | 2 + themes/hackish.yaml | 2 + themes/hackpot-batman-vs-joker-dark.yaml | 2 + themes/hackpot-batman-vs-joker.yaml | 2 + themes/hackpot-dark-knight.yaml | 2 + themes/hackpot-darker-knight.yaml | 2 + themes/hackpot-garden-dark.yaml | 2 + themes/hackpot-garden-of-atlantis.yaml | 2 + themes/hackpot-garden-purple-haze.yaml | 2 + themes/hackpot-garden.yaml | 2 + themes/hackpot-muddy-garden.yaml | 2 + themes/hackpot-poisoned-garden.yaml | 2 + themes/hadar.yaml | 2 + themes/haidark-two.yaml | 2 + themes/halcyon.yaml | 2 + themes/half-gray.yaml | 2 + themes/halflife-contrast.yaml | 2 + themes/halflife-light.yaml | 2 + themes/halflife.yaml | 2 + themes/halloween-theme.yaml | 50 +++++++++++ themes/halloween.yaml | 2 + themes/hallucination.yaml | 2 + themes/hamidthedev-professional.yaml | 2 + themes/hammerhead.yaml | 52 +++++++++++ themes/hams-uno.yaml | 52 +++++++++++ themes/han.yaml | 2 + themes/happy-dark.yaml | 2 + themes/happy-heart-1-dark-classic.yaml | 2 + themes/happy-heart-10-forest-green.yaml | 2 + themes/happy-heart-11-emerald-green.yaml | 2 + themes/happy-heart-12-midnight-purple.yaml | 2 + themes/happy-heart-13-royal-purple.yaml | 2 + themes/happy-heart-14-rose-gold.yaml | 2 + themes/happy-heart-15-chilli-paper.yaml | 2 + themes/happy-heart-16-grey.yaml | 2 + themes/happy-heart-17-yellow.yaml | 2 + themes/happy-heart-2-dark-orange.yaml | 2 + themes/happy-heart-3-dark-purple.yaml | 2 + themes/happy-heart-4-dark-green.yaml | 2 + themes/happy-heart-5-deep-blue.yaml | 2 + themes/happy-heart-6-ocean-blue.yaml | 2 + themes/happy-heart-7-navy-blue.yaml | 2 + themes/happy-heart-8-bright-light.yaml | 2 + themes/happy-heart-9-smooth-light.yaml | 2 + themes/hapsida.yaml | 2 + themes/hard-hacker-darker.yaml | 2 + themes/hard-hacker-light.yaml | 52 +++++++++++ themes/hard-hacker.yaml | 52 +++++++++++ themes/harddark.yaml | 2 + themes/hardwired-arctic-blue.yaml | 2 + themes/hardwired-electric-lime.yaml | 2 + themes/hardwired-purple.yaml | 2 + themes/hare-omagari.yaml | 52 +++++++++++ themes/harley-quinn-theme.yaml | 2 + themes/harmonized-dark.yaml | 2 + themes/harmonized-light-hc.yaml | 2 + themes/harmonized-light.yaml | 2 + themes/harmony-pulse.yaml | 52 +++++++++++ themes/harriet.yaml | 2 + themes/harrys.yaml | 2 + themes/harshaddevpro.yaml | 3 + themes/hashirama-senju-god-of-shinobi.yaml | 2 + themes/hawaii-contrast.yaml | 2 + themes/hawaii-light.yaml | 2 + themes/hawaii.yaml | 2 + themes/hc-zenburn.yaml | 2 + themes/hearth-dark.yaml | 52 +++++++++++ themes/hearth-light.yaml | 52 +++++++++++ themes/hecker-boy.yaml | 2 + themes/held.yaml | 2 + themes/helion.yaml | 2 + themes/helios-solarized-dark.yaml | 2 + themes/helios-solarized-light.yaml | 2 + themes/helix.yaml | 2 + themes/hell-pine.yaml | 2 + themes/hellfire.yaml | 2 + themes/hello-world-theme.yaml | 2 + themes/hendrikkels-dark.yaml | 2 + themes/hendrikkels-light.yaml | 2 + themes/heptapod.yaml | 2 + themes/herakles.yaml | 52 +++++++++++ themes/herbal.yaml | 2 + themes/hereafter.yaml | 2 + themes/hero-dark.yaml | 52 +++++++++++ themes/heroku-contrast.yaml | 2 + themes/heroku-light.yaml | 2 + themes/heroku.yaml | 2 + themes/herzha-dark.yaml | 2 + themes/herzha-flux.yaml | 2 + themes/herzha-vanta.yaml | 2 + themes/hfa-theme.yaml | 2 + themes/hhp1614.yaml | 2 + themes/hi-dark.yaml | 2 + themes/hi-light.yaml | 2 + themes/hibiscus.yaml | 2 + themes/high-alert-crimson.yaml | 52 +++++++++++ themes/high-contrast-april-light-theme.yaml | 2 + themes/high-contrast-april-theme.yaml | 2 + themes/high-contrast-august-light-theme.yaml | 2 + themes/high-contrast-february-dark-theme.yaml | 2 + ...trast-february-light-theme-accessible.yaml | 2 + ...gh-contrast-february-theme-accessible.yaml | 2 + themes/high-contrast-july-light-theme.yaml | 2 + themes/high-contrast-june-light-theme.yaml | 2 + ...-contrast-march-dark-theme-accessible.yaml | 2 + themes/high-contrast-march-dark-theme.yaml | 2 + ...contrast-march-light-theme-accessible.yaml | 2 + .../high-contrast-march-theme-accessible.yaml | 2 + themes/high-contrast-may-light-theme.yaml | 2 + .../high-contrast-september-light-theme.yaml | 2 + themes/high-contrast-sunset.yaml | 2 + themes/high-tea.yaml | 2 + themes/highflyer.yaml | 2 + themes/highgruv.yaml | 2 + themes/highland-winter.yaml | 2 + themes/himalaya-dark.yaml | 2 + themes/hinode.yaml | 2 + themes/hirakata.yaml | 52 +++++++++++ themes/hive-contrast.yaml | 2 + themes/hive-light.yaml | 2 + themes/hive.yaml | 2 + themes/hobbyist-goth.yaml | 2 + themes/hoccacas.yaml | 2 + themes/hocsinhnghiemtuc.yaml | 2 + themes/holdesher-dark.yaml | 2 + .../holo-s-wisdom-spice-and-wolf-theme.yaml | 52 +++++++++++ themes/hologram-night.yaml | 52 +++++++++++ themes/holy-bible.yaml | 2 + themes/homebrew.yaml | 2 + themes/homecooked-theme.yaml | 2 + themes/homer.yaml | 2 + themes/homey.yaml | 2 + themes/honeycode.yaml | 3 + themes/honkai-star-rail-aventurine-dark.yaml | 2 + themes/honkai-star-rail-aventurine.yaml | 2 + themes/honkai-star-rail-cyrene-dark.yaml | 2 + themes/honkai-star-rail-cyrene.yaml | 2 + themes/honkai-star-rail-dan-heng-dark.yaml | 2 + themes/honkai-star-rail-dan-heng.yaml | 2 + themes/honkai-star-rail-firefly-dark.yaml | 2 + themes/honkai-star-rail-firefly.yaml | 2 + themes/honkai-star-rail-kafka-dark.yaml | 2 + themes/honkai-star-rail-kafka.yaml | 2 + themes/honkai-star-rail-march-7th-dark.yaml | 2 + themes/honkai-star-rail-march-7th.yaml | 2 + themes/honkai-star-rail-robin-dark.yaml | 2 + themes/honkai-star-rail-robin-light-soft.yaml | 2 + themes/honkai-star-rail-ruan-mei-dark.yaml | 2 + themes/honkai-star-rail-ruan-mei.yaml | 2 + themes/horimura.yaml | 52 +++++++++++ themes/horizon-contrast.yaml | 2 + themes/horizon-extended.yaml | 2 + themes/horizon-laker-theme.yaml | 2 + themes/horizon-light.yaml | 2 + themes/horizon.yaml | 2 + themes/horizondark.yaml | 2 + themes/horus.yaml | 2 + themes/hot-pink-theme.yaml | 2 + themes/house-of-the-dragon-team-greens.yaml | 52 +++++++++++ themes/houston.yaml | 2 + themes/hq-pink-blue.yaml | 50 +++++++++++ themes/htvodp.yaml | 2 + themes/huacat-pink-dark.yaml | 2 + themes/hub-light.yaml | 2 + themes/hub.yaml | 2 + themes/hugodvlp.yaml | 2 + themes/hulcu.yaml | 2 + themes/hulky.yaml | 52 +++++++++++ themes/human-dark.yaml | 2 + themes/human-high-contrast.yaml | 2 + themes/human-light.yaml | 2 + themes/human-low-light.yaml | 2 + themes/human-soft.yaml | 2 + themes/human-warm.yaml | 2 + themes/human.yaml | 2 + themes/hundred-oceans.yaml | 2 + themes/hush-dark.yaml | 2 + themes/hush-light.yaml | 2 + themes/hutaotheme.yaml | 2 + themes/hybrid-dim.yaml | 2 + themes/hybrid-next-gray-background.yaml | 2 + themes/hybrid-theme.yaml | 2 + themes/hydr-theme.yaml | 2 + themes/hydra-night.yaml | 2 + themes/hydra-storm.yaml | 2 + themes/hydro-sea.yaml | 52 +++++++++++ themes/hydro-soft.yaml | 52 +++++++++++ themes/hydro.yaml | 52 +++++++++++ themes/hygge-kyst-dark.yaml | 50 +++++++++++ themes/hyle-color-theme.yaml | 2 + themes/hyle-night-night-color-theme.yaml | 2 + themes/hyped-down-fork.yaml | 2 + themes/hyped-down-theme.yaml | 2 + themes/hyper-ctrl-theme.yaml | 2 + themes/hyper.yaml | 2 + themes/hyperdark-theme.yaml | 2 + .../hyperrail-theme-hyper-syntax-colors.yaml | 2 + themes/hypersubatomic.yaml | 2 + themes/hypervoxel.yaml | 2 + themes/hyprluna.yaml | 2 + themes/hyrule-contrast.yaml | 2 + themes/hyrule-light.yaml | 2 + themes/hyrule.yaml | 2 + themes/i-don-t-know.yaml | 2 + themes/i-light-color-theme.yaml | 52 +++++++++++ themes/i-night-color-theme.yaml | 52 +++++++++++ themes/i-solarised-color-theme.yaml | 2 + themes/i3-dark-custom-ii.yaml | 52 +++++++++++ themes/i3-dark-github-dark.yaml | 52 +++++++++++ themes/i3-panda-custom-iii.yaml | 52 +++++++++++ themes/i3-panda-custom.yaml | 52 +++++++++++ themes/ian.yaml | 2 + themes/ibm-carbon-gray-10.yaml | 52 +++++++++++ themes/ibm-carbon-gray-100.yaml | 52 +++++++++++ themes/ibm-carbon-gray-90.yaml | 52 +++++++++++ themes/ibm-carbon-white.yaml | 52 +++++++++++ themes/icaria.yaml | 2 + themes/icattheme.yaml | 2 + themes/icc-light-theme.yaml | 2 + themes/ice.yaml | 2 + themes/iceberg-contrast.yaml | 2 + themes/iceberg-light.yaml | 2 + themes/iceberg.yaml | 2 + themes/iceland.yaml | 3 + themes/icolordarkblue.yaml | 3 + themes/icolordarkcyan.yaml | 3 + themes/icolordarkgeekblue.yaml | 3 + themes/icolordarkgold.yaml | 3 + themes/icolordarkgreen.yaml | 3 + themes/icolordarklime.yaml | 3 + themes/icolordarkmagenta.yaml | 3 + themes/icolordarkorgane.yaml | 3 + themes/icolordarkpurple.yaml | 3 + themes/icolordarkred.yaml | 3 + themes/icolordarkvolcano.yaml | 3 + themes/icolordarkyellow.yaml | 3 + themes/icolorlightblue.yaml | 3 + themes/icolorlightcyan.yaml | 3 + themes/icolorlightgeekblue.yaml | 3 + themes/icolorlightgold.yaml | 3 + themes/icolorlightgreen.yaml | 3 + themes/icolorlightlime.yaml | 3 + themes/icolorlightmagenta.yaml | 3 + themes/icolorlightorgane.yaml | 3 + themes/icolorlightpurple.yaml | 3 + themes/icolorlightred.yaml | 3 + themes/icolorlightvolcano.yaml | 3 + themes/icolorlightyellow.yaml | 3 + themes/icon-group-dark.yaml | 52 +++++++++++ themes/icon-group-light.yaml | 52 +++++++++++ themes/idea-islands-dark.yaml | 2 + themes/idk.yaml | 8 +- themes/idle-dark.yaml | 50 +++++++++++ themes/idle-light.yaml | 50 +++++++++++ themes/idx-theme-dark.yaml | 2 + themes/idx-xcode-dark-improved.yaml | 14 +-- themes/ikaros-white.yaml | 2 + themes/ikaros.yaml | 2 + themes/ikki-vscode-dark-theme.yaml | 2 + themes/ikki-vscode-light-theme.yaml | 2 + themes/ikshana.yaml | 2 + themes/illuminate.yaml | 50 +++++++++++ themes/illusion.yaml | 52 +++++++++++ themes/iloveagents-azure-ai-foundry-dark.yaml | 2 + .../iloveagents-azure-ai-foundry-light.yaml | 2 + themes/iloveagents-dark.yaml | 2 + themes/iloveagents-light.yaml | 2 + themes/ilyat-poimandres.yaml | 52 +++++++++++ themes/imba-dark.yaml | 2 + themes/imexoodeex.yaml | 2 + themes/in-bed-by-7pm.yaml | 2 + themes/in-darkest-night.yaml | 2 + themes/in-his-earthy-elements.yaml | 2 + themes/in-rainbows-dark.yaml | 52 +++++++++++ themes/in-the-fog-dark.yaml | 2 + themes/index.json | 70 ++++++++++----- themes/index.yaml | 2 + themes/indie-dev.yaml | 52 +++++++++++ themes/indielayer.yaml | 2 + themes/indigo-and-amaranth.yaml | 2 + themes/indigo-ice.yaml | 2 + themes/indique-theme.yaml | 52 +++++++++++ themes/industry.yaml | 2 + themes/infatuation.yaml | 2 + themes/inferius.yaml | 2 + themes/infinitus.yaml | 2 + ...finity-64-blackboard-by-shingo-murata.yaml | 2 + ...finity-64-whiteboard-by-shingo-murata.yaml | 2 + themes/infinity-dark-contrast.yaml | 2 + themes/infinity.yaml | 2 + themes/ingeni.yaml | 2 + themes/inheritance.yaml | 2 + themes/inkpot.yaml | 2 + themes/inksea-dank.yaml | 2 + themes/inksea-dark.yaml | 2 + themes/inksea-dracula.yaml | 2 + themes/inksea-hacker.yaml | 2 + themes/inksea-midnight.yaml | 2 + themes/inksea-oceanic.yaml | 2 + themes/inksea-sea-monkey.yaml | 2 + themes/inksea.yaml | 2 + themes/inkstained.yaml | 2 + themes/inovando-theme.yaml | 2 + themes/insane.yaml | 2 + themes/insight.yaml | 2 + themes/inspiration.yaml | 2 + themes/instamuch.yaml | 2 + themes/intellij-dark-color-theme.yaml | 2 + themes/intellij-idea-islands-dark.yaml | 2 + themes/intellij-idea-islands-light.yaml | 2 + themes/intellij-idea-new-ui.yaml | 2 + themes/intellij-light-color-theme.yaml | 52 +++++++++++ themes/intellij-light-deaft.yaml | 2 + themes/intelliyay-color-theme.yaml | 2 + themes/intergalactic.yaml | 2 + themes/interstellar-blue-ii.yaml | 2 + themes/interstellar-blue.yaml | 2 + themes/interstellar.yaml | 2 + themes/intility-bifrost-theme.yaml | 2 + themes/into-the-unknow-fork.yaml | 2 + themes/intrepid-darkness-light.yaml | 3 + themes/intrepid-darkness.yaml | 3 + themes/invi.yaml | 2 + themes/ionztorm-theme.yaml | 2 + themes/iris-pink.yaml | 3 + themes/irishbruse-s-color-theme.yaml | 2 + themes/ironhellrider.yaml | 2 + themes/ironman-theme-dark.yaml | 2 + themes/ironman-theme-light.yaml | 2 + themes/irrus-float.yaml | 52 +++++++++++ themes/is-them-tears-bro.yaml | 2 + themes/isatoru.yaml | 52 +++++++++++ themes/islands-dark.yaml | 2 + themes/islands-light.yaml | 2 + themes/isotope-contrast.yaml | 2 + themes/isotope-light.yaml | 2 + themes/isotope.yaml | 2 + themes/itsnp-dark-cyan.yaml | 2 + themes/itsnp-dark-pink.yaml | 2 + themes/itsnp-dark.yaml | 2 + themes/itsnp-night-blue.yaml | 2 + themes/itsnp-yellow.yaml | 2 + themes/iv-spade.yaml | 2 + themes/ivalo-color-theme.yaml | 2 + themes/iwa-s-code-theme.yaml | 2 + themes/j-cinco-da-manh.yaml | 2 + themes/j-theme.yaml | 2 + themes/jabrms.yaml | 2 + themes/jacaranda-theme.yaml | 3 + themes/jackhammar.yaml | 2 + themes/jaga-theme.yaml | 2 + themes/jammy-jellyfish.yaml | 2 + themes/jamuntheme.yaml | 2 + themes/jannchie-black.yaml | 2 + themes/jannchie-dark-soft.yaml | 2 + themes/jannchie-dark.yaml | 2 + themes/jannchie-light-soft.yaml | 2 + themes/jannchie-light.yaml | 2 + themes/janus-light.yaml | 3 + themes/japanese-breakfast.yaml | 2 + themes/jartur.yaml | 2 + themes/jarvis-3d.yaml | 2 + themes/jarvis.yaml | 2 + themes/jasmine.yaml | 2 + themes/java-dark-theme.yaml | 2 + themes/javascript-modern-dark.yaml | 2 + themes/javascript-neon-dark.yaml | 2 + themes/javascript-vibrant-dark.yaml | 2 + themes/jaytheme.yaml | 3 + themes/jazari-dark.yaml | 2 + themes/jazari-light.yaml | 2 + themes/jbpc.yaml | 52 +++++++++++ themes/jcardenas.yaml | 2 + themes/jcsoftiablack.yaml | 2 + themes/jcsoftiadark.yaml | 2 + themes/jcsoftiadarkblue.yaml | 2 + themes/jcsoftiadarkred.yaml | 2 + themes/jd-s-abyss.yaml | 2 + themes/jdarkmaterial-v2.yaml | 2 + themes/jdh.yaml | 78 ++++++++-------- themes/jehuty-dark.yaml | 2 + themes/jehuty-light.yaml | 2 + themes/jelly-theme.yaml | 2 + themes/jelly.yaml | 2 + themes/jellybeans-extended.yaml | 52 +++++++++++ themes/jellybeans-theme.yaml | 2 + themes/jellybeans.yaml | 2 + themes/jellyfish.yaml | 2 + themes/jeng-light.yaml | 2 + themes/jetbrain-fleet-color.yaml | 64 ++++++------- themes/jetbrains-dark-theme.yaml | 2 + themes/jetbrains-deep-dark-theme.yaml | 2 + themes/jetbrains-ide-dark-theme.yaml | 2 + themes/jetcode.yaml | 2 + themes/jetdark.yaml | 2 + themes/jetvibe-darcula.yaml | 52 +++++++++++ themes/jewel-contrast.yaml | 2 + themes/jewel-light.yaml | 2 + themes/jewel.yaml | 2 + themes/jg-vsc.yaml | 2 + themes/jingle-contrast.yaml | 2 + themes/jingle-light.yaml | 2 + themes/jingle.yaml | 2 + themes/jinglecode.yaml | 2 + themes/jinshi-dark-theme.yaml | 2 + themes/jinshi-light-theme.yaml | 2 + themes/jinx.yaml | 2 + themes/jk.yaml | 2 + themes/jker-purple-wave.yaml | 2 + themes/jngl.yaml | 2 + themes/jo-o-campos-theme.yaml | 50 +++++++++++ themes/jocelyn.yaml | 52 +++++++++++ themes/jojobii-s-colors.yaml | 2 + themes/jokejoke.yaml | 2 + themes/jokenkai.yaml | 3 + themes/jokenpo-obscure.yaml | 3 + themes/joker-contrast.yaml | 2 + themes/joker-light.yaml | 2 + themes/joker-neon.yaml | 2 + themes/joker.yaml | 2 + themes/jollifake.yaml | 2 + themes/jolly-light.yaml | 2 + themes/jone-light.yaml | 2 + themes/josi.yaml | 3 + themes/jott4c-dark.yaml | 3 + themes/joyboy.yaml | 2 + themes/joyful-fork-fork.yaml | 52 +++++++++++ themes/js-dark-theme.yaml | 2 + themes/jtvscode-dark.yaml | 2 + themes/jtvscode-light.yaml | 2 + themes/jugal13-theme.yaml | 2 + themes/juicy-contrast.yaml | 2 + themes/juicy-light.yaml | 2 + themes/juicy.yaml | 2 + themes/july-summer-vibes-dark-theme.yaml | 2 + themes/jumper-contrast.yaml | 2 + themes/jumper-light.yaml | 2 + themes/jumper.yaml | 2 + themes/jungle.yaml | 2 + themes/juniorcoder.yaml | 2 + themes/just-code-already-fork.yaml | 2 + themes/jwrdark.yaml | 2 + themes/k-relaxed.yaml | 2 + themes/kabukich.yaml | 2 + themes/kadaxi-colors.yaml | 52 +++++++++++ themes/kadoku.yaml | 2 + themes/kai-garbage.yaml | 2 + themes/kai-sa-white-fork.yaml | 2 + themes/kai.yaml | 2 + themes/kailash-shaw-dark-theme.yaml | 2 + themes/kaimandres.yaml | 2 + themes/kaiokenkolors.yaml | 2 + themes/kaique-theme.yaml | 2 + themes/kaisa-dark.yaml | 2 + themes/kali-linux-theme.yaml | 2 + themes/kalia.yaml | 2 + themes/kalidozza.yaml | 2 + themes/kalisi.yaml | 2 + themes/kalmia-high-contrast.yaml | 2 + themes/kalmia.yaml | 2 + themes/kami-theme.yaml | 2 + themes/kanagawa-dragon.yaml | 2 + themes/kanagawa-light.yaml | 2 + themes/kanagawa-lotus.yaml | 2 + themes/kanagawa-night.yaml | 2 + themes/kanagawa-paper.yaml | 2 + themes/kanagawa-wave-light.yaml | 2 + themes/kanagawa-wave.yaml | 2 + themes/kanamin-dark.yaml | 2 + themes/kanao.yaml | 2 + themes/kanso-ink.yaml | 2 + themes/kanso-mist.yaml | 2 + themes/kanso-pearl.yaml | 2 + themes/kaolin-light-theme-alt.yaml | 2 + themes/kaolin-light-theme.yaml | 2 + themes/kaplan-dark.yaml | 50 +++++++++++ themes/kara.yaml | 2 + themes/karam-theme-darker.yaml | 3 + themes/karma.yaml | 2 + themes/karnataka-sandalwood-state.yaml | 2 + themes/karou-noir.yaml | 2 + themes/karou-theme.yaml | 2 + themes/karrot-theme-classic.yaml | 2 + themes/karry-color-golang.yaml | 52 +++++++++++ themes/kary-pro-colors-dark.yaml | 2 + themes/kary-pro-colors-light.yaml | 2 + themes/{kashi-night.yaml => kashi.yaml} | 5 +- themes/kastorcode-dark-orange-theme.yaml | 2 + themes/kastorcode-dark-purple-theme.yaml | 2 + themes/katagawatheme.yaml | 2 + themes/kato.yaml | 2 + themes/kayhan.yaml | 2 + themes/kblue-minimal.yaml | 2 + themes/kdshade-darkbg.yaml | 52 +++++++++++ themes/keen-contrast.yaml | 2 + themes/keen-light.yaml | 2 + themes/keen.yaml | 2 + themes/kenobi-dark-theme.yaml | 2 + themes/kerala-god-s-own-country.yaml | 2 + themes/kerama-deep.yaml | 2 + themes/kermit-fork.yaml | 2 + themes/kesteren.yaml | 52 +++++++++++ themes/kh-gold-subtle.yaml | 52 +++++++++++ themes/kh-silver-subtle.yaml | 52 +++++++++++ themes/khoaneostyle.yaml | 50 +++++++++++ themes/kiiro-dark.yaml | 2 + themes/killer-dark.yaml | 2 + themes/kindfeeling.yaml | 2 + themes/kingfisher-fishing.yaml | 2 + themes/kinn.yaml | 52 +++++++++++ themes/kinnitchi-neon-dark-modern.yaml | 2 + themes/kintsugi-dark.yaml | 2 + themes/kintsugi-light.yaml | 2 + themes/kiona.yaml | 2 + themes/kira-theme.yaml | 2 + themes/kiranord.yaml | 50 +++++++++++ themes/kismat-default-colors.yaml | 2 + themes/kiss.yaml | 2 + themes/kite-dark.yaml | 2 + themes/kite-darker.yaml | 2 + themes/kite-light.yaml | 2 + themes/kitty-catty.yaml | 2 + themes/kitty-night.yaml | 2 + themes/kittypower.yaml | 2 + themes/kiwi-contrast.yaml | 2 + themes/kiwi-light.yaml | 2 + themes/kiwi.yaml | 88 +++++++++--------- themes/kiwisoup-fork.yaml | 2 + themes/kjs-officials-electric-lime.yaml | 52 +++++++++++ themes/knapsack.yaml | 2 + themes/knfocus-alt.yaml | 2 + themes/knfocus-base.yaml | 2 + themes/knight-vscode.yaml | 52 +++++++++++ themes/knoctal-dark.yaml | 2 + themes/knoctal-darker.yaml | 2 + themes/knowit-dark.yaml | 2 + themes/koala-codes-theme.yaml | 2 + themes/kod-purple.yaml | 2 + themes/kodex-arctic.yaml | 2 + themes/kodex.yaml | 2 + themes/koffee-kreme.yaml | 2 + themes/koi-noir-lan-theme.yaml | 2 + themes/koi-noir-theme.yaml | 2 + themes/koi-pond-dark.yaml | 2 + themes/koi-pond-light.yaml | 2 + themes/kokatheme.yaml | 2 + themes/koki-dark.yaml | 2 + themes/kokubo.yaml | 2 + themes/kolada.yaml | 2 + themes/kong-light.yaml | 52 +++++++++++ themes/kopo-theme.yaml | 2 + themes/korbit.yaml | 2 + themes/korean-dancheong-dark.yaml | 2 + themes/korsr-theme.yaml | 2 + themes/kotama-otose.yaml | 52 +++++++++++ themes/kozy-darker.yaml | 2 + themes/kozy.yaml | 2 + themes/kpurple.yaml | 2 + themes/kradeno.yaml | 2 + themes/krb-blue.yaml | 52 +++++++++++ themes/krb-violet.yaml | 50 ++++++----- themes/kripton.yaml | 2 + themes/krishna-dark-elegant.yaml | 2 + themes/krishna-default-dark-theme.yaml | 3 + themes/krone.yaml | 2 + themes/krow-t.yaml | 2 + themes/kryptonite-theme.yaml | 2 + themes/ktrz-monokai.yaml | 2 + themes/kubesong.yaml | 2 + themes/kultist-v2.yaml | 2 + themes/kurdish-vibrant-theme.yaml | 2 + themes/kurdor-light.yaml | 2 + themes/kuro-sakura.yaml | 52 +++++++++++ themes/kuro-theme-color-theme.yaml | 2 + themes/kuro.yaml | 2 + themes/kurodake-green.yaml | 50 +++++++++++ themes/kuroir-dark-01-crimson.yaml | 2 + themes/kuroir-dark-02-vermilion.yaml | 2 + themes/kuroir-dark-03-amber.yaml | 52 +++++++++++ themes/kuroir-dark-04-goldenrod.yaml | 2 + themes/kuroir-dark-06-chartreuse.yaml | 2 + themes/kuroir-dark-07-fern.yaml | 2 + themes/kuroir-dark-08-emerald.yaml | 2 + themes/kuroir-dark-09-jade.yaml | 2 + themes/kuroir-dark-11-aqua.yaml | 52 +++++++++++ themes/kuroir-dark-14-cerulean.yaml | 52 +++++++++++ themes/kuroir-dark-15-sky.yaml | 52 +++++++++++ themes/kuroir-dark-18-indigo.yaml | 2 + themes/kuroir-dark-20-amethyst.yaml | 2 + themes/kuroir-dark-21-magenta.yaml | 2 + themes/kuroir-dark-22-fuchsia.yaml | 2 + themes/kuroir-dark-23-rose.yaml | 2 + themes/kuroir-dark-24-coral.yaml | 2 + themes/kuroir-light-03-amber.yaml | 52 +++++++++++ themes/kuroir-light-07-fern.yaml | 2 + themes/kuroir-light-09-jade.yaml | 2 + themes/kuroir-light-12-teal.yaml | 52 +++++++++++ themes/kuroir-light-15-sky.yaml | 2 + themes/kuroir-light-18-indigo.yaml | 2 + themes/kuroir-light-19-violet.yaml | 2 + themes/kuroir-light-23-rose.yaml | 2 + themes/kuroir-light-24-coral.yaml | 52 +++++++++++ themes/kyanite.yaml | 2 + themes/kybern.yaml | 2 + themes/kybik-dark.yaml | 2 + themes/kybik.yaml | 2 + themes/kyngo-s-theme.yaml | 2 + themes/kyojuro-rengoku.yaml | 2 + themes/kyorazo-dark-theme.yaml | 2 + themes/lackluster-dark.yaml | 2 + themes/lackluster.yaml | 52 +++++++++++ themes/ladyluck-color-theme.yaml | 2 + themes/lanten-color-theme-dark.yaml | 2 + themes/lapis-dark.yaml | 52 +++++++++++ themes/lapis-light.yaml | 52 +++++++++++ themes/lapis.yaml | 52 +++++++++++ themes/lapres99.yaml | 52 +++++++++++ themes/laracasts-contrast.yaml | 2 + themes/laracasts-light.yaml | 2 + themes/laracasts.yaml | 2 + themes/laradocs.yaml | 3 + themes/laravel-contrast.yaml | 2 + themes/laravel-light.yaml | 2 + themes/laravel.yaml | 2 + themes/lascavo-classic-contrast.yaml | 49 ++++++++++ themes/lascavo-classic.yaml | 49 ++++++++++ themes/lascavo-cold.yaml | 49 ++++++++++ themes/laserkai.yaml | 2 + themes/late-night.yaml | 2 + themes/lauds.yaml | 2 + themes/lavalink.yaml | 2 + themes/lavanda.yaml | 2 + themes/lavender-dark-theme.yaml | 2 + themes/lavender-light-theme.yaml | 2 + themes/lavender-light.yaml | 2 + themes/lavender.yaml | 2 + themes/lazuli.yaml | 2 + themes/lazy-yellow-lemon.yaml | 2 + themes/lazzaretti-plenatech.yaml | 2 + themes/lazzaretti-win11.yaml | 2 + themes/lc.yaml | 2 + themes/lcars.yaml | 2 + themes/le-moderne.yaml | 2 + themes/leaf-black.yaml | 52 +++++++++++ themes/leaf-dark-soft.yaml | 2 + themes/leaf-dark.yaml | 2 + themes/lean-coders-dark.yaml | 2 + themes/learn-with-sumit-theme.yaml | 2 + themes/lebannen-theme.yaml | 52 +++++++++++ themes/leehxd.yaml | 50 +++++++++++ themes/leftish.yaml | 2 + themes/legacy-contrast.yaml | 2 + themes/legacy-light.yaml | 2 + themes/legacy-solarized-dark-color-theme.yaml | 2 + .../legacy-solarized-light-color-theme.yaml | 2 + themes/legendary-attack-of-blue.yaml | 52 +++++++++++ themes/legendary-dark.yaml | 2 + themes/legends-theme-night-fymhr-special.yaml | 2 + themes/legends-theme-night.yaml | 2 + themes/leios.yaml | 2 + themes/lemon.yaml | 2 + themes/lemonade.yaml | 2 + themes/leon-arantes.yaml | 2 + themes/leon.yaml | 2 + themes/leonida-keys-ocean.yaml | 2 + themes/lesbian.yaml | 2 + themes/lesser.yaml | 84 ++++++++--------- themes/let-s-code.yaml | 2 + themes/leviosa-theme.yaml | 2 + themes/levuaska.yaml | 2 + themes/lht.yaml | 2 + themes/liangliang-one-monokai.yaml | 2 + themes/lichen-contrast.yaml | 2 + themes/lichen-light.yaml | 2 + themes/lichen.yaml | 2 + themes/liddlelabtheme.yaml | 52 +++++++++++ themes/liftoff.yaml | 52 +++++++++++ themes/lig-dark-soft.yaml | 52 +++++++++++ themes/lig-dark.yaml | 52 +++++++++++ themes/lig-light-soft.yaml | 52 +++++++++++ themes/lig-light.yaml | 52 +++++++++++ themes/light-brown.yaml | 2 + themes/light-code-with-bars.yaml | 2 + themes/light-decay.yaml | 2 + themes/light-gruvdark-mono.yaml | 2 + themes/light-gruvdark-tokyo.yaml | 2 + themes/light-gruvdark.yaml | 2 + themes/light-jade.yaml | 52 +++++++++++ themes/light-mosqueta.yaml | 50 +++++++++++ themes/light-print.yaml | 2 + themes/light-springbok.yaml | 2 + themes/light-theme.yaml | 2 + themes/light.yaml | 2 + themes/lightblack.yaml | 2 + themes/lightdelight.yaml | 2 + themes/lighter-a-theme-for-light-coders.yaml | 2 + themes/lightestlighttheme.yaml | 2 + themes/lighthaus.yaml | 2 + themes/lightning-dark.yaml | 2 + themes/lightning-light.yaml | 52 +++++++++++ themes/lightning-material-day.yaml | 2 + themes/lightning-material-evening.yaml | 2 + themes/lightning-material-midnight.yaml | 2 + themes/lightning-material-soft.yaml | 2 + themes/lightning-soft-dark.yaml | 2 + themes/lightning-soft.yaml | 2 + themes/lightning-theme.yaml | 2 + themes/lightning.yaml | 2 + themes/ligiapink.yaml | 2 + themes/lilac-dreams.yaml | 2 + themes/lilac-grove.yaml | 2 + themes/lilac.yaml | 52 +++++++++++ themes/lima-theme.yaml | 2 + themes/limpo-dark.yaml | 2 + themes/limpo-darker.yaml | 2 + themes/linear-dark.yaml | 2 + themes/linear-light.yaml | 2 + themes/linkarzu-vscode-theme.yaml | 2 + themes/lino-dark-ruby.yaml | 2 + themes/lino.yaml | 52 +++++++++++ themes/lion.yaml | 50 +++++++++++ themes/liquid-dark.yaml | 2 + themes/liquid-ochre.yaml | 2 + themes/liquid-ray-light.yaml | 2 + themes/liquid-ray-soft-pink.yaml | 52 +++++++++++ themes/liquid-ray.yaml | 2 + themes/liquor-theme.yaml | 2 + themes/liquorice.yaml | 2 + themes/little-league-dark.yaml | 2 + themes/little-league-darker.yaml | 2 + themes/little-league-light.yaml | 2 + themes/lives.yaml | 2 + themes/living-twilight.yaml | 2 + themes/lofi.yaml | 2 + themes/loki-official-classic.yaml | 2 + themes/loki-official-kang-edition.yaml | 2 + themes/loki-theme-contrast.yaml | 2 + themes/loki-theme.yaml | 2 + themes/loki.yaml | 52 +++++++++++ themes/lolo.yaml | 2 + themes/london-underground.yaml | 52 +++++++++++ themes/lone-wolf-dark.yaml | 2 + themes/lonely.yaml | 2 + themes/lonus-dark.yaml | 2 + themes/lookify-dark-mode.yaml | 2 + themes/lookify-light-mode.yaml | 2 + themes/looped.yaml | 2 + themes/lordmorphy.yaml | 52 +++++++++++ themes/lore.yaml | 2 + themes/lotus-dark.yaml | 2 + themes/lotus-flat-dusk.yaml | 2 + themes/lotus-flat-midnight.yaml | 2 + themes/lotus-light.yaml | 2 + themes/lovepurple.yaml | 2 + themes/lowlvl.yaml | 2 + themes/loyal-contrast.yaml | 2 + themes/loyal-light.yaml | 2 + themes/loyal.yaml | 2 + themes/luanslaslatheme.yaml | 2 + themes/luau-starlit.yaml | 2 + themes/lucario.yaml | 2 + themes/lucid-labs-dark.yaml | 2 + themes/lucid-labs-light.yaml | 2 + .../lucifer-terminal-dark-hacker-edition.yaml | 2 + themes/{punk-runner.yaml => lucky-green.yaml} | 18 ++-- themes/luckyhub.yaml | 2 + themes/lui.yaml | 2 + themes/luiz-dark-theme.yaml | 2 + themes/luiz.yaml | 52 +++++++++++ themes/luke-skywriter.yaml | 2 + themes/lull.yaml | 2 + themes/lulutheme.yaml | 2 + themes/lumen-dark.yaml | 52 +++++++++++ themes/lumenrift.yaml | 2 + themes/lumin.yaml | 2 + themes/lumina.yaml | 2 + themes/luminara-void.yaml | 2 + themes/luminarca-crep-sculo.yaml | 3 + themes/luminarca-luz.yaml | 3 + themes/luminarca-trevas.yaml | 3 + themes/luminashade-amethyst.yaml | 2 + themes/lumineclipse.yaml | 52 +++++++++++ themes/luminescence-theme.yaml | 2 + themes/lumon-theme.yaml | 2 + themes/lumos-black.yaml | 2 + themes/lumos-dark-soft.yaml | 2 + themes/lumos-dark.yaml | 2 + themes/lumos-light-soft.yaml | 52 +++++++++++ themes/lunar-eclipse-golden-hour.yaml | 2 + themes/lunar-eclipse-light.yaml | 2 + themes/lunar-eclipse.yaml | 2 + themes/lunar-pink-satellite.yaml | 2 + themes/lunar-pink.yaml | 2 + themes/lunar-theme.yaml | 2 + themes/lunar-vscode.yaml | 2 + themes/lunar.yaml | 2 + themes/lunaria.yaml | 2 + themes/lunna-dark.yaml | 2 + themes/lupine.yaml | 2 + themes/lupus.yaml | 2 + themes/luxark.yaml | 52 +++++++++++ themes/luxeforest.yaml | 2 + themes/lyra-s-vega.yaml | 2 + themes/lztheme.yaml | 2 + themes/m-jtgzc.yaml | 52 +++++++++++ themes/m-unity-s-custom-vscode-theme.yaml | 2 + themes/m.yaml | 52 +++++++++++ themes/m2d-fork.yaml | 2 + themes/mac-theme.yaml | 2 + themes/mach1-theme.yaml | 52 +++++++++++ themes/machine.yaml | 2 + themes/macho-man.yaml | 2 + themes/macos.yaml | 2 + themes/macrodata-refiners-classic.yaml | 2 + themes/macrodata-refiners-cold-harbor.yaml | 2 + themes/macrodata-refiners-defiant-jazz.yaml | 2 + themes/macrodata-refiners-ortbo.yaml | 2 + themes/macrodata-refiners-sweet-vitriol.yaml | 2 + themes/madak17z-darkmode-testing.yaml | 2 + themes/madness.yaml | 2 + themes/madnight.yaml | 2 + themes/madrid-night.yaml | 2 + themes/magenta-one-dark-pro.yaml | 2 + themes/magic-mushroom-theme.yaml | 2 + themes/magicuser-bases.yaml | 2 + themes/magicuser-book.yaml | 2 + themes/magicuser-camouflage-light.yaml | 2 + themes/magicuser-camouflage.yaml | 2 + themes/magicuser-day.yaml | 2 + themes/magicuser-light-blue.yaml | 2 + themes/magicuser-light-gray.yaml | 2 + themes/magicuser-light-green.yaml | 2 + themes/magicuser-light-orange.yaml | 2 + themes/magicuser-light-purple.yaml | 2 + themes/magicuser-light.yaml | 2 + themes/magicuser-neblina.yaml | 2 + themes/magicuser-night-neblina.yaml | 2 + themes/magicuser-night.yaml | 2 + themes/magicuser-paladin.yaml | 2 + themes/magicuser-path.yaml | 2 + themes/magicuser-power.yaml | 2 + themes/magicuser-purple-night.yaml | 2 + themes/magicuser-purple.yaml | 2 + themes/magicuser-room-lamp.yaml | 2 + themes/magicuser-sea.yaml | 2 + themes/magicuser-space.yaml | 2 + themes/magicuser-specialist.yaml | 2 + themes/magicuser-staff.yaml | 2 + themes/magicuser-sun.yaml | 2 + themes/magicuser-talisman.yaml | 2 + themes/magicuser-teal-night.yaml | 2 + themes/magicuser-teal.yaml | 2 + themes/magicuser-veteran-blue.yaml | 2 + themes/magicuser-veteran-purple.yaml | 2 + themes/magicuser-veteran.yaml | 2 + themes/magicuser-wand-blue.yaml | 2 + themes/magicuser.yaml | 2 + themes/magnolia.yaml | 2 + themes/magnus-dark-theme.yaml | 2 + themes/maguh.yaml | 2 + themes/maharashtra-land-of-warriors.yaml | 2 + themes/mahiro.yaml | 2 + themes/mainframe-terminal.yaml | 52 +++++++++++ themes/maisum-xcode-dark.yaml | 2 + themes/mak1na-theme.yaml | 2 + themes/make-apps.yaml | 2 + themes/maki-konuri.yaml | 52 +++++++++++ themes/malachite.yaml | 2 + themes/maldi-dark.yaml | 2 + themes/malibu-sunset.yaml | 2 + themes/malibun-sunrise.yaml | 2 + themes/malte.yaml | 3 + themes/man-dark-stone.yaml | 2 + themes/manatee.yaml | 2 + themes/mandacaru-syntax-theme.yaml | 2 + themes/manhld-theme.yaml | 2 + themes/manjaro-owl.yaml | 2 + themes/manners.yaml | 2 + themes/manoshi.yaml | 50 +++++++++++ themes/mantissa-dark.yaml | 2 + themes/mantissa-light.yaml | 2 + themes/maomao-dark-theme.yaml | 2 + themes/maomao-light-theme.yaml | 2 + themes/maple-dark.yaml | 2 + themes/maple-light.yaml | 2 + themes/marble-dark.yaml | 2 + themes/marci1.yaml | 2 + themes/marcial-theme.yaml | 2 + themes/marcosven.yaml | 2 + themes/mariana-light.yaml | 2 + themes/mariana-pro.yaml | 2 + themes/mariana-refined.yaml | 2 + themes/mariana.yaml | 2 + themes/marigold-night.yaml | 2 + themes/mario-theme.yaml | 2 + themes/marnic1505.yaml | 2 + themes/maroza-cyber-chill.yaml | 2 + themes/maroza-dark-theme.yaml | 2 + themes/maroza-light-theme.yaml | 2 + themes/maroza-soothing-aqua.yaml | 2 + themes/maroza-zen-pro.yaml | 2 + themes/mars.yaml | 2 + themes/marshmallow.yaml | 2 + themes/marsidark.yaml | 2 + themes/marstree.yaml | 2 + themes/marwen-labidi-theme.yaml | 2 + themes/matcha-pink.yaml | 3 + themes/matcha.yaml | 2 + themes/matchalk.yaml | 2 + themes/matchanaa.yaml | 2 + themes/matchaneco.yaml | 52 +++++++++++ themes/matchati.yaml | 2 + themes/material-color-theme.yaml | 2 + themes/material-community-ansi-16.yaml | 2 + themes/material-dark-color-theme.yaml | 2 + themes/material-midnight.yaml | 2 + themes/material-monokai-high-contrast.yaml | 2 + themes/material-neutral.yaml | 52 +++++++++++ themes/material-pure-dark.yaml | 52 +++++++++++ themes/material-rainbow.yaml | 2 + themes/material-theme-dark.yaml | 2 + ...heme-dhc-mix-in-pycharm-darcula-theme.yaml | 52 +++++++++++ ...material-theme-twilight-wave-ocean-ui.yaml | 2 + themes/material.yaml | 2 + themes/material1.yaml | 2 + themes/materialdarker-monokaist3.yaml | 2 + themes/materialdarkplus.yaml | 2 + themes/matey.yaml | 2 + themes/matitheme-gotham.yaml | 2 + themes/matitheme.yaml | 2 + themes/matrix-hacking-dark-theme.yaml | 2 + themes/matrix-mint.yaml | 3 + themes/matrix-reloaded-locked.yaml | 50 +++++++++++ themes/matrix-reloaded.yaml | 50 +++++++++++ themes/matrix.yaml | 2 + themes/matronator-s-theme.yaml | 2 + themes/matte-light-theme.yaml | 2 + themes/matteblack.yaml | 2 + themes/matter.yaml | 12 +-- themes/matteric-dark-default.yaml | 2 + themes/mauriceplus.yaml | 50 +++++++++++ themes/maus-dark.yaml | 52 +++++++++++ themes/mauve-contrast.yaml | 2 + themes/mauve-light.yaml | 2 + themes/mauve.yaml | 2 + themes/mavaia.yaml | 2 + themes/max2.yaml | 2 + themes/maxsumon.yaml | 2 + themes/mayukai.yaml | 2 + themes/mazda-rx7-theme.yaml | 2 + themes/mbp.yaml | 2 + themes/mcdark-theme.yaml | 2 + themes/mcdonalds-theme.yaml | 2 + themes/md-abdur-rakib.yaml | 2 + themes/meadow-whisper.yaml | 52 +++++++++++ themes/meaow-dark.yaml | 2 + themes/mecha-01.yaml | 2 + themes/medium-dark.yaml | 3 + themes/mega-green.yaml | 2 + themes/meinanziiii.yaml | 52 +++++++++++ themes/meitnerium-theme.yaml | 2 + themes/mel.yaml | 2 + themes/melancholy.yaml | 2 + themes/melange-redux-dark.yaml | 52 +++++++++++ themes/melange-redux-light.yaml | 2 + themes/melcr.yaml | 2 + themes/melee-island.yaml | 2 + themes/melinoe.yaml | 3 + themes/mellow-contrast.yaml | 2 + themes/mellow-light.yaml | 2 + themes/mellow.yaml | 2 + themes/melokai.yaml | 2 + themes/melyon-blue.yaml | 2 + themes/melyon.yaml | 2 + themes/menelik.yaml | 2 + themes/meoceanemerald.yaml | 52 +++++++++++ themes/meoceangray.yaml | 2 + themes/meridian-neutral.yaml | 52 +++++++++++ themes/meridian.yaml | 52 +++++++++++ themes/merlot.yaml | 3 + themes/mesalvo-cortex.yaml | 2 + themes/meshvoid-light.yaml | 2 + themes/meshvoid.yaml | 2 + themes/metagrama.yaml | 3 + themes/meteora.yaml | 2 + themes/metropolis-light.yaml | 2 + themes/metropolis-sky-scape.yaml | 52 +++++++++++ themes/metropolis.yaml | 2 + themes/mgldvd-theme.yaml | 2 + themes/mh-theme.yaml | 2 + themes/mhfeizi.yaml | 2 + themes/mi4uokai.yaml | 2 + themes/miami-nights.yaml | 3 + themes/miami-vice.yaml | 2 + themes/miami-wind.yaml | 2 + themes/miasma-color-theme.yaml | 2 + themes/mibtema.yaml | 2 + themes/michota.yaml | 52 +++++++++++ themes/micky-dark-black.yaml | 2 + themes/micky-dark-lite-black.yaml | 2 + themes/micky-dark-lite.yaml | 2 + themes/microhouse.yaml | 52 +++++++++++ themes/midas-touch-light.yaml | 2 + themes/midas-touch.yaml | 2 + themes/midcentury.yaml | 2 + themes/middle-field-canvas.yaml | 52 +++++++++++ themes/midight-sun.yaml | 2 + themes/midnight-blueprint.yaml | 2 + themes/midnight-breeze.yaml | 2 + themes/midnight-candy.yaml | 2 + themes/midnight-city.yaml | 2 + themes/midnight-color-theme.yaml | 2 + themes/midnight-dark.yaml | 52 +++++++++++ themes/midnight-darker.yaml | 2 + themes/midnight-dracula.yaml | 2 + themes/midnight-embers.yaml | 2 + themes/midnight-emerald.yaml | 52 +++++++++++ themes/midnight-forest.yaml | 52 +++++++++++ themes/midnight-fusion.yaml | 2 + themes/midnight-gambler.yaml | 2 + themes/midnight-grove.yaml | 2 + themes/midnight-guest.yaml | 2 + themes/midnight-high-contrast-dark.yaml | 52 +++++++++++ themes/midnight-high-contrast-light.yaml | 52 +++++++++++ themes/midnight-koi.yaml | 52 +++++++++++ themes/midnight-lake.yaml | 2 + themes/midnight-light.yaml | 52 +++++++++++ themes/midnight-marina.yaml | 2 + themes/midnight-mirage.yaml | 2 + themes/midnight-monochrome.yaml | 52 +++++++++++ themes/midnight-monokai.yaml | 2 + themes/midnight-moon-eclipse.yaml | 2 + themes/midnight-moon-ukiyo.yaml | 2 + themes/midnight-moon.yaml | 2 + themes/midnight-ocean.yaml | 52 +++++++++++ themes/midnight-pastel.yaml | 2 + themes/midnight-pro.yaml | 2 + themes/midnight-purple-deep.yaml | 2 + themes/midnight-purple.yaml | 2 + themes/midnight-rainbow.yaml | 2 + themes/midnight-rose-theme.yaml | 2 + themes/midnight-sapphire.yaml | 2 + themes/midnight-shadow-fork.yaml | 52 +++++++++++ themes/midnight-soft.yaml | 52 +++++++++++ themes/midnight-theme-light-soft.yaml | 2 + themes/midnight-theme-light.yaml | 2 + themes/midnight-theme.yaml | 2 + themes/midnight-ukiyo.yaml | 2 + themes/midnight-z.yaml | 2 + themes/midnightglow.yaml | 2 + themes/midt.yaml | 2 + themes/midwinter-light.yaml | 52 +++++++++++ themes/mihari-bordered.yaml | 2 + themes/mihari.yaml | 2 + themes/mike-sources-green-crt.yaml | 2 + themes/mike-sources-hacker.yaml | 52 +++++++++++ themes/mike-sources-yellowstone.yaml | 2 + themes/mikes-vscode-theme-1.yaml | 2 + ...ited-gulajavaministudio-mayukai-theme.yaml | 52 +++++++++++ themes/miku-code-fusion-light.yaml | 2 + themes/miku-code-light.yaml | 2 + themes/miku-code.yaml | 2 + themes/milianor-theme.yaml | 2 + themes/military-fork.yaml | 2 + themes/milkyway.yaml | 2 + themes/mimesis-dark.yaml | 2 + themes/mimesis-light.yaml | 2 + themes/min-gruvbox.yaml | 2 + themes/minai.yaml | 52 +++++++++++ themes/mincom.yaml | 2 + themes/mineral-forest.yaml | 52 +++++++++++ themes/minimal-44-pro.yaml | 2 + themes/minimal-44.yaml | 2 + themes/minimal-dark-fork.yaml | 2 + themes/minimal-dark.yaml | 2 + themes/minimal-green.yaml | 2 + themes/minimal-monochrome-light.yaml | 50 +++++++++++ ...mal-pastel-dark-vibrant-softer-yellow.yaml | 2 + themes/minimal-theme.yaml | 2 + themes/minimal-wave-floral-dark.yaml | 2 + themes/minimal-wave-floral-light.yaml | 2 + themes/minimal.yaml | 84 ++++++++--------- themes/minimalblue.yaml | 50 +++++++++++ themes/minimalesque.yaml | 2 + themes/minimalgold.yaml | 52 +++++++++++ themes/minimalist.yaml | 2 + themes/minimalistic-dark-theme.yaml | 2 + themes/minimalisticdarktheme.yaml | 2 + themes/minimalistik.yaml | 2 + themes/minimalred.yaml | 2 + themes/miniml-dusk.yaml | 2 + themes/miniml-light.yaml | 2 + themes/miniml-midnight.yaml | 2 + themes/minimus.yaml | 2 + themes/minitheme.yaml | 2 + themes/mink-dark-theme.yaml | 2 + themes/minokai-kalel.yaml | 2 + themes/minone.yaml | 2 + themes/mint-chocolate.yaml | 2 + themes/mint-dark.yaml | 2 + themes/mintchoc-contrast.yaml | 2 + themes/mintchoc-light.yaml | 2 + themes/mintchoc.yaml | 2 + themes/mintdark.yaml | 2 + themes/minty-dark.yaml | 2 + themes/mirai.yaml | 2 + themes/mirajdev.yaml | 52 +++++++++++ themes/miramare.yaml | 2 + themes/mist-theme.yaml | 2 + themes/mist.yaml | 2 + themes/misterioso.yaml | 2 + themes/misty-blue.yaml | 2 + themes/mitaverse.yaml | 2 + themes/mitsuri-kanroji.yaml | 2 + themes/mitsuri.yaml | 52 +++++++++++ themes/mixed-solarized-light.yaml | 2 + themes/mk-iceblack.yaml | 2 + themes/mk-mono-dark.yaml | 2 + themes/mkanet.yaml | 68 +++++++------- themes/mkdeveloper-theme.yaml | 2 + themes/mlv60-vintage-dark.yaml | 52 +++++++++++ themes/mocaccino-light.yaml | 2 + themes/moderate-dimm.yaml | 2 + themes/modern-dracula-white.yaml | 52 +++++++++++ themes/modern-dracula.yaml | 2 + themes/modern-retro.yaml | 52 +++++++++++ themes/moderneclipse.yaml | 2 + themes/modernui-fork.yaml | 14 +-- themes/modernui.yaml | 52 +++++++++++ themes/modest-pink.yaml | 2 + themes/modified-darker-material-theme.yaml | 2 + themes/modus-vivendi-tinted.yaml | 74 +++++++-------- themes/moegi-black-zen.yaml | 2 + themes/moegi-black.yaml | 2 + themes/moegi-dark.yaml | 2 + themes/moegi-dawn.yaml | 2 + themes/moegi-iris.yaml | 2 + themes/moegi-light.yaml | 2 + themes/moegi-space.yaml | 2 + themes/moin-acme.yaml | 2 + themes/moin-dark.yaml | 2 + themes/moin-light.yaml | 2 + themes/moin-soft-dark.yaml | 2 + themes/mojito-pro-dark.yaml | 2 + themes/mojito-pro.yaml | 2 + themes/mokka-fork-darken-blue.yaml | 2 + themes/mokka.yaml | 2 + themes/mol-lurity-theme-soft-fixed.yaml | 2 + themes/mol-lurity-theme.yaml | 2 + themes/molarity-washed.yaml | 2 + themes/molineux.yaml | 2 + themes/moloch.yaml | 2 + themes/molokai-darker.yaml | 2 + themes/molten-aurora.yaml | 2 + themes/monaco-paulsevere-color-theme.yaml | 2 + themes/monet-impressionism.yaml | 52 +++++++++++ themes/monfika.yaml | 2 + themes/mono-atom.yaml | 2 + themes/mono-bw.yaml | 2 + themes/mono-cl.yaml | 2 + themes/mono-dark.yaml | 52 +++++++++++ themes/mono-next.yaml | 52 +++++++++++ themes/mono-white.yaml | 52 +++++++++++ themes/monochai-dark.yaml | 2 + themes/monochromator-dark-plain.yaml | 2 + themes/monochromator-light-plain.yaml | 2 + themes/monochrome-dark-amplified.yaml | 2 + themes/monochrome-dark-cool-gray.yaml | 2 + themes/monochrome-dark-gray.yaml | 2 + themes/monochrome-dark-indigo.yaml | 2 + themes/monochrome-dark-neutral.yaml | 2 + themes/monochrome-dark-slate.yaml | 2 + themes/monochrome-dark-stone.yaml | 2 + themes/monochrome-dark-subtle.yaml | 2 + themes/monochrome-dark-zinc.yaml | 2 + themes/monochrome-dark.yaml | 2 + themes/monochrome-github-edition.yaml | 2 + themes/monochrome-light-amplified.yaml | 2 + themes/monochrome-light-cool-gray.yaml | 2 + themes/monochrome-light-gray.yaml | 2 + themes/monochrome-light-indigo.yaml | 2 + themes/monochrome-light-neutral.yaml | 2 + themes/monochrome-light-slate.yaml | 2 + themes/monochrome-light-stone.yaml | 2 + themes/monochrome-light-subtle.yaml | 2 + themes/monochrome-light-zinc.yaml | 2 + themes/monochrome-light.yaml | 2 + themes/monochrome.yaml | 2 + themes/monocious-color-theme.yaml | 3 + themes/monoclean-light.yaml | 2 + themes/monocr.yaml | 2 + themes/monocraft.yaml | 2 + themes/monoeye.yaml | 2 + themes/monokai-classic.yaml | 52 +++++++++++ themes/monokai-color-theme-1.yaml | 2 + themes/monokai-dark-green.yaml | 2 + themes/monokai-dark.yaml | 2 + themes/monokai-deep-dark.yaml | 2 + themes/monokai-deep-ocean.yaml | 2 + themes/monokai-drizzle.yaml | 2 + themes/monokai-extended.yaml | 2 + themes/monokai-faded.yaml | 2 + themes/monokai-flow.yaml | 2 + themes/monokai-grey.yaml | 2 + themes/monokai-grs.yaml | 2 + themes/monokai-hc-color-theme.yaml | 2 + themes/monokai-japan-color-theme.yaml | 2 + themes/monokai-midnight.yaml | 2 + themes/monokai-minimal.yaml | 52 +++++++++++ themes/monokai-night-z-blue.yaml | 2 + themes/monokai-ocean-color-theme.yaml | 2 + themes/monokai-octagon.yaml | 2 + themes/monokai-okean.yaml | 2 + themes/monokai-original-sublime-theme.yaml | 2 + themes/monokai-prime.yaml | 2 + themes/monokai-pro.yaml | 2 + themes/monokai-rain.yaml | 2 + themes/monokai-red.yaml | 52 +++++++++++ themes/monokai-semantic.yaml | 52 +++++++++++ themes/monokai-seti-dark.yaml | 2 + themes/monokai-seti-light.yaml | 2 + themes/monokai-sharp.yaml | 2 + themes/monokai-soda-darker.yaml | 2 + themes/monokai-storm.yaml | 2 + themes/monokai-supersaturated.yaml | 2 + themes/monokai-tornado.yaml | 2 + themes/monokai-underdark-mk.yaml | 2 + themes/monokai-underdark.yaml | 2 + themes/monokai-unified.yaml | 2 + themes/monokai22.yaml | 2 + themes/monokaiju.yaml | 2 + themes/monokaisgq.yaml | 2 + themes/monokaizen.yaml | 2 + themes/monokard.yaml | 2 + themes/monokong.yaml | 2 + themes/monokuro-amber.yaml | 2 + themes/monolite.yaml | 2 + themes/monos-blac.yaml | 2 + themes/monospace-dark.yaml | 2 + themes/monospace-light.yaml | 2 + themes/monove-fork.yaml | 52 +++++++++++ themes/monrch-darc.yaml | 2 + themes/montana.yaml | 2 + themes/monte-cristo-theme.yaml | 52 +++++++++++ themes/monza-dark.yaml | 3 + themes/monzo-contrast.yaml | 2 + themes/monzo-light.yaml | 2 + themes/monzo.yaml | 2 + themes/moon-light-theme.yaml | 2 + themes/moon-night.yaml | 2 + themes/moon-purple.yaml | 2 + themes/moon-violet-dark-plus.yaml | 2 + themes/moonbloom-theme-official.yaml | 2 + themes/moonerized-dark.yaml | 2 + themes/moonerized-light.yaml | 2 + themes/moonfly.yaml | 3 + themes/moongate-theme-dark.yaml | 2 + themes/moongate-theme-light.yaml | 2 + themes/moonkai.yaml | 2 + themes/moonlight-ii.yaml | 2 + themes/moonlight.yaml | 2 + themes/moonokai.yaml | 2 + themes/moonspell-northern-lights.yaml | 3 + themes/morass-contrast.yaml | 2 + themes/morass-light.yaml | 2 + themes/morass.yaml | 2 + themes/more-purple.yaml | 2 + themes/morgan-codes.yaml | 2 + themes/mori-keycaps.yaml | 2 + themes/morita.yaml | 52 +++++++++++ themes/morning-mist.yaml | 2 + themes/morning-mocha.yaml | 2 + themes/mosaic.yaml | 2 + themes/mosmmy.yaml | 2 + themes/mossframe-light.yaml | 2 + themes/mossframe-neon-darker-legacy.yaml | 52 +++++++++++ themes/mossframe-neon-legacy.yaml | 52 +++++++++++ themes/mossframe.yaml | 2 + themes/mother-stretch-my-hands.yaml | 50 +++++++++++ themes/motion-blue.yaml | 52 +++++++++++ themes/motiv8der-s-theme.yaml | 3 + themes/mount-kalaga-noir.yaml | 2 + themes/mountain-theme.yaml | 2 + themes/mountains-and-rivers.yaml | 3 + themes/mourning.yaml | 2 + themes/mowgli.yaml | 2 + themes/mr-code-black.yaml | 2 + themes/mr-code-gunmetal.yaml | 2 + themes/ms-dev-theme.yaml | 2 + themes/msquare-dark.yaml | 52 +++++++++++ themes/mud-contrast.yaml | 2 + themes/mud-light.yaml | 2 + themes/mud-theme.yaml | 2 + themes/mud.yaml | 2 + themes/murasaki-theme.yaml | 3 + themes/muromachi.yaml | 2 + themes/murora-light-lite.yaml | 2 + themes/murtadapy-green.yaml | 2 + themes/mushroomsynth.yaml | 3 + themes/muted-mirage.yaml | 2 + themes/mutenight.yaml | 2 + themes/mwone-dark.yaml | 2 + themes/my-custom-theme.yaml | 2 + themes/my-dark-theme-refined-updated.yaml | 2 + themes/my-first-visual-studio-theme.yaml | 2 + themes/my-hero-academia-deku-plus-ultra.yaml | 2 + themes/my-light-theme-blue-dark.yaml | 2 + themes/my-light-theme-blue.yaml | 2 + ...-light-theme-light-green-fork-updated.yaml | 2 + ...ight-theme-light-green-paperblue-fork.yaml | 2 + ...t-theme-light-green-papermint-updated.yaml | 2 + ...theme-mint-sand-updated-fork-bluesand.yaml | 2 + themes/my-light-theme-mint-sand-updated.yaml | 2 + themes/my-light-theme.yaml | 52 +++++++++++ themes/my-monokai.yaml | 2 + themes/my-ocean-theme.yaml | 52 +++++++++++ themes/my-oceanic.yaml | 2 + themes/my-theme.yaml | 2 + themes/my-zu.yaml | 2 + themes/mycode-dark.yaml | 52 +++++++++++ themes/mygo.yaml | 2 + themes/mynthra.yaml | 2 + themes/myoptic-v2.yaml | 2 + themes/myoptic.yaml | 2 + themes/myrteal.yaml | 2 + themes/mystic-moonshadow.yaml | 2 + themes/mystic.yaml | 2 + themes/mystico-c64-pepto-ntsc-sony.yaml | 2 + themes/mystico-c64-pepto-pal.yaml | 2 + themes/mystico-c64.yaml | 2 + themes/mystico-deep-purple.yaml | 2 + themes/mystico-forest-ocean.yaml | 2 + themes/mystico-mint.yaml | 2 + themes/mystico-plum.yaml | 3 + themes/myvscode.yaml | 2 + themes/mz-light-grey-sharp.yaml | 52 +++++++++++ themes/n-darktheme.yaml | 2 + themes/n0m4d.yaml | 2 + themes/n7-lilac.yaml | 2 + themes/n7-maya.yaml | 2 + themes/n7-night-vision.yaml | 2 + themes/n7-purple-green.yaml | 2 + themes/n7-red-flare.yaml | 2 + themes/n7-soft-pink.yaml | 2 + themes/nachop-dark.yaml | 52 +++++++++++ themes/nachop-light-bordered.yaml | 52 +++++++++++ themes/nachop-light.yaml | 52 +++++++++++ themes/nada-theme.yaml | 2 + themes/nairobi-dark.yaml | 2 + themes/nanami-madobe-theme.yaml | 52 +++++++++++ themes/nanowise.yaml | 2 + themes/narasimha-fearless-dark-theme.yaml | 3 + themes/narixius-one-dark.yaml | 52 +++++++++++ themes/narunika.yaml | 2 + themes/naruto-akatsuki.yaml | 2 + .../naruto-hinata-hyuga-byakugan-vision.yaml | 2 + themes/naruto-hokage-dawn.yaml | 2 + themes/naruto-hokage-orange.yaml | 2 + ...uto-itachi-uchiha-tsukuyomi-dimension.yaml | 2 + themes/naruto-jiraiya-gallant-toad-sage.yaml | 2 + themes/naruto-kakashi-copy-ninja.yaml | 2 + themes/naruto-kurama-nine-tails.yaml | 2 + ...hina-uzumaki-red-hot-blooded-habanero.yaml | 2 + ...might-guy-gate-of-death-madara-battle.yaml | 2 + themes/naruto-might-guy-gates-of-youth.yaml | 2 + .../naruto-minato-namikaze-yellow-flash.yaml | 2 + themes/naruto-pain-nagato-rinnegan-god.yaml | 2 + themes/naruto-sage-mode.yaml | 2 + ...to-sakura-haruno-cherry-blossom-storm.yaml | 2 + themes/naruto-sasuke-uchiha-sharingan.yaml | 2 + ...ruto-shikamaru-nara-shadow-possession.yaml | 2 + themes/naruto-shinobi-night.yaml | 2 + themes/natasha-theme.yaml | 2 + themes/natto-theme-2.yaml | 2 + themes/natural-faded-dark.yaml | 2 + themes/natural-green-growth-harmony.yaml | 52 +++++++++++ .../natural-green-light-growth-harmony.yaml | 2 + themes/nature-color-theme.yaml | 2 + themes/nature-green-growth-harmony.yaml | 52 +++++++++++ themes/nature-green-light-growth-harmony.yaml | 2 + themes/nature.yaml | 2 + themes/nautilus.yaml | 2 + themes/naver.yaml | 2 + themes/navy-flat.yaml | 2 + themes/navy-nights-theme.yaml | 2 + themes/navy-theme.yaml | 2 + themes/navy.yaml | 2 + themes/nb-monochrome-dark.yaml | 2 + themes/nebula-color-theme.yaml | 2 + ...-dark-vibrant-fabo-it-and-media-group.yaml | 2 + themes/nebula-nights.yaml | 2 + themes/nebula-pro-dark.yaml | 2 + themes/nebula-surge.yaml | 2 + themes/nebula-symphony-dark-pro.yaml | 2 + themes/nebula-symphony-dark.yaml | 2 + themes/nebula-symphony-light.yaml | 2 + themes/nebula.yaml | 2 + themes/nebular-theme.yaml | 2 + themes/nebularomantic.yaml | 2 + themes/nebulous-luna.yaml | 2 + themes/necessity-aaa-light.yaml | 2 + themes/necessity-aaa.yaml | 2 + themes/negative-theme.yaml | 2 + themes/neil-s-theme-dark.yaml | 2 + themes/neil-s-theme.yaml | 2 + themes/nekhbet.yaml | 2 + themes/neki.yaml | 2 + themes/neo-hacker-soft-premium.yaml | 2 + themes/neo-nuxt-matte.yaml | 2 + themes/neo-seoul-dark.yaml | 2 + themes/neo-seoul-light.yaml | 2 + themes/neo-vscode-theme.yaml | 2 + themes/neofusion.yaml | 2 + themes/neogenesis.yaml | 2 + themes/neon-black.yaml | 2 + themes/neon-color-dark-theme.yaml | 2 + themes/neon-cyber.yaml | 2 + themes/neon-cyberpunk.yaml | 2 + themes/neon-dream-code.yaml | 2 + themes/neon-dreams.yaml | 52 +++++++++++ themes/neon-dusk.yaml | 2 + themes/neon-forest.yaml | 2 + themes/neon-glow.yaml | 2 + themes/neon-green-light.yaml | 2 + themes/neon-green-midnight.yaml | 2 + themes/neon-matrix.yaml | 2 + themes/neon-noir.yaml | 2 + themes/neon-ocean.yaml | 2 + themes/neon-palette-themes-red.yaml | 52 +++++++++++ themes/neon-shimmer-amethyst-core.yaml | 2 + themes/neon-shimmer-bubblegum-punk.yaml | 2 + themes/neon-shimmer-crimson-drive.yaml | 2 + themes/neon-shimmer.yaml | 2 + themes/neon-side.yaml | 2 + themes/neon-sunset.yaml | 2 + themes/neon-synthwave.yaml | 2 + themes/neon-theme.yaml | 2 + themes/neon-trench-theme.yaml | 2 + themes/neon-violet.yaml | 2 + themes/neonaska.yaml | 2 + themes/neonite.yaml | 2 + themes/neonmist.yaml | 2 + themes/neorose-vimpine.yaml | 2 + themes/neovim-sp.yaml | 2 + themes/neovim-theme.yaml | 2 + themes/nephtis-dark.yaml | 2 + themes/nephtis-light.yaml | 2 + themes/nerc-one-dark-a.yaml | 3 + themes/nerc-one-dark-b.yaml | 3 + themes/nerd-light.yaml | 2 + themes/nero.yaml | 2 + themes/nestjs-codes.yaml | 2 + themes/netbeans-harmonized.yaml | 2 + themes/netbilla-blue.yaml | 2 + themes/netlify-theme.yaml | 2 + themes/netlify.yaml | 2 + themes/netrunnaz.yaml | 2 + themes/netstack.yaml | 2 + themes/nettsi-monokai-darker.yaml | 2 + themes/netuno.yaml | 2 + themes/neumatter-night.yaml | 2 + themes/neuraltone.yaml | 2 + themes/neutral-gray-minimalism-focus.yaml | 2 + themes/neutral.yaml | 2 + themes/neutralvi.yaml | 2 + themes/neutron.yaml | 2 + themes/nevada.yaml | 2 + themes/nevejestvo-theme.yaml | 50 +++++++++++ themes/never-be-lost-day.yaml | 2 + themes/never-be-lost-night.yaml | 2 + themes/nevermore.yaml | 2 + themes/neverwhere.yaml | 2 + themes/nevo-black.yaml | 2 + themes/nevo-comfy.yaml | 2 + themes/nevo-pro.yaml | 52 +++++++++++ themes/nevo.yaml | 2 + themes/new-england-light-theme.yaml | 2 + themes/new-moon.yaml | 2 + themes/new-owl.yaml | 2 + themes/new-retro.yaml | 2 + themes/new-south-wales-dark.yaml | 2 + themes/new-south-wales-light.yaml | 2 + themes/new-sphere.yaml | 2 + themes/new-theme.yaml | 2 + themes/new-wave-theme.yaml | 52 +++++++++++ themes/newdarktheme.yaml | 2 + themes/newera-dark-theme.yaml | 2 + themes/newrailscasts.yaml | 2 + themes/newspaperlike.yaml | 2 + themes/newsprint-invert.yaml | 2 + themes/newsprint-so.yaml | 2 + themes/newsprint.yaml | 52 +++++++++++ themes/newton-contrast.yaml | 2 + themes/newton-light.yaml | 2 + themes/newton-next-official.yaml | 2 + themes/newton.yaml | 2 + themes/newx-light.yaml | 2 + themes/next-theme.yaml | 2 + themes/nextcode.yaml | 2 + themes/nextgen-terminal.yaml | 50 +++++++++++ themes/nexus-dark.yaml | 3 + themes/nexus.yaml | 2 + themes/ngc-aurora-dawn.yaml | 2 + themes/ngc-aurora-night.yaml | 2 + themes/ngc-forest-retreat.yaml | 2 + themes/ngc-midnight-base.yaml | 2 + themes/ngoding-bro.yaml | 2 + themes/nibelung-dark.yaml | 2 + themes/nibelung.yaml | 2 + themes/nice-dark.yaml | 2 + themes/nicedark-fork.yaml | 2 + themes/nicedark.yaml | 2 + themes/nicely-neon.yaml | 2 + themes/nier-automata-light-theme.yaml | 2 + themes/nier-automata-theme.yaml | 2 + themes/night-aurora.yaml | 2 + themes/night-blossom.yaml | 2 + themes/night-blue-high.yaml | 2 + themes/night-city.yaml | 2 + themes/night-cyan.yaml | 2 + themes/night-dragon.yaml | 2 + themes/night-fae-theme.yaml | 2 + themes/night-howl.yaml | 52 +++++++++++ themes/night-market.yaml | 2 + themes/night-owl-oled-dim-100.yaml | 2 + themes/night-owl-oled-dim-75.yaml | 2 + themes/night-owl-oled-dim-80.yaml | 2 + themes/night-owl-oled-dim-85.yaml | 2 + themes/night-owl-oled-dim-90.yaml | 2 + themes/night-owl-oled-dim-95.yaml | 2 + themes/night-pink.yaml | 2 + themes/night-raccoon.yaml | 2 + themes/night-rainbow-darker.yaml | 2 + themes/night-rainbow-purple-haze.yaml | 2 + themes/night-rainbow.yaml | 2 + themes/night-stack-amber-crt.yaml | 2 + themes/night-stack-amber-dark.yaml | 2 + themes/night-stack-arctic-night.yaml | 2 + themes/night-stack-aurora.yaml | 2 + themes/night-stack-carbon-green.yaml | 2 + themes/night-stack-carbon.yaml | 2 + themes/night-stack-circuit.yaml | 2 + themes/night-stack-copper-dark.yaml | 2 + themes/night-stack-crimson-dark.yaml | 2 + themes/night-stack-deep-work.yaml | 2 + themes/night-stack-desert-dusk.yaml | 2 + themes/night-stack-dos-blue.yaml | 2 + themes/night-stack-ember-dark.yaml | 2 + themes/night-stack-eyestrain-green.yaml | 2 + themes/night-stack-forest-night.yaml | 2 + themes/night-stack-frost.yaml | 2 + themes/night-stack-graphite.yaml | 2 + themes/night-stack-green-neon.yaml | 2 + themes/night-stack-hacker-soft.yaml | 2 + themes/night-stack-hologram.yaml | 2 + themes/night-stack-indigo-dark.yaml | 2 + themes/night-stack-ion.yaml | 2 + themes/night-stack-low-contrast-pro.yaml | 2 + themes/night-stack-midnight-blue.yaml | 2 + themes/night-stack-mono-focus.yaml | 2 + themes/night-stack-neo-tokyo.yaml | 2 + themes/night-stack-night-city.yaml | 2 + themes/night-stack-noir.yaml | 2 + themes/night-stack-obsidian-glass.yaml | 2 + themes/night-stack-obsidian.yaml | 2 + themes/night-stack-ocean-abyss.yaml | 2 + themes/night-stack-onyx.yaml | 2 + themes/night-stack-phosphor-green.yaml | 2 + themes/night-stack-plasma.yaml | 2 + themes/night-stack-pure-hacker.yaml | 2 + themes/night-stack-quantum.yaml | 2 + themes/night-stack-retro-wave.yaml | 2 + themes/night-stack-slate.yaml | 2 + themes/night-stack-street-grid.yaml | 2 + themes/night-stack-teal-dark.yaml | 2 + themes/night-stack-titanium.yaml | 2 + themes/night-stack-violet-dark.yaml | 2 + themes/night-stack-zen-dark.yaml | 2 + themes/night-storm.yaml | 2 + themes/night-watchers.yaml | 3 + themes/night-wind-theme.yaml | 3 + themes/night-yellow.yaml | 2 + themes/night-zen.yaml | 2 + themes/night.yaml | 2 + themes/nightblue-1.yaml | 2 + themes/nightblue-oled-beta.yaml | 2 + themes/nightcall.yaml | 52 +++++++++++ themes/nightcode.yaml | 2 + themes/nightdream-monokai.yaml | 2 + themes/nightdream.yaml | 2 + themes/nightfly.yaml | 2 + themes/nightfox.yaml | 2 + themes/nighthawk.yaml | 2 + themes/nightlife.yaml | 2 + themes/nightly-code.yaml | 2 + themes/nightmare.yaml | 2 + themes/nightnode.yaml | 2 + themes/nightshade-venom.yaml | 52 +++++++++++ themes/nightshade.yaml | 2 + themes/nightshift-lobo-dawn.yaml | 3 + themes/nightshiftlobo-obsidian.yaml | 3 + themes/nightshiftlobo-shadow.yaml | 3 + themes/nightshiftlobo.yaml | 3 + themes/nightsky.yaml | 2 + themes/nightswell.yaml | 2 + themes/nightwing.yaml | 2 + themes/nighty-bordered.yaml | 52 +++++++++++ themes/nighty-purple-color-theme.yaml | 2 + themes/nigthwolf-color-theme.yaml | 2 + themes/nihil.yaml | 52 +++++++++++ themes/nihilleaf-theme.yaml | 2 + themes/niketa-pop-dark.yaml | 2 + themes/niketa-pop-light.yaml | 2 + themes/niketaoasis.yaml | 2 + themes/niketaplus.yaml | 2 + themes/niketaprettier.yaml | 2 + themes/niko-s-techlabs-dark.yaml | 2 + themes/nikso-vscode-theme-dark.yaml | 2 + themes/nil-ui.yaml | 2 + themes/nimbus-mint-light.yaml | 2 + themes/ninjadark.yaml | 2 + themes/nitrous-theme-dark.yaml | 2 + themes/nivtheme.yaml | 2 + themes/nix.yaml | 2 + themes/nkalai-dark.yaml | 2 + themes/nkalai-light.yaml | 2 + themes/nloo-theme.yaml | 2 + .../no-not-the-lava-it-burns-ahhh-fork.yaml | 2 + themes/no-pixie-blue-dark.yaml | 2 + themes/no-pixie-blue-light.yaml | 2 + themes/no-pixie-dark-high-contrast.yaml | 2 + themes/no-pixie-dark.yaml | 2 + themes/no-pixie-light-high-contrast.yaml | 2 + themes/no-pixie-light.yaml | 2 + themes/no-pixie-yellow-dark.yaml | 2 + themes/no-pixie-yellow-light.yaml | 2 + themes/noah-theme.yaml | 2 + themes/noctaliatheme.yaml | 2 + themes/noctilux.yaml | 2 + themes/noctis-high-contrast.yaml | 2 + themes/noctis-lilac.yaml | 2 + themes/noctis-lux-ansi-16.yaml | 2 + themes/noctis-lux-dean-s-version.yaml | 2 + themes/noctis-red-flow.yaml | 2 + themes/noctua-black-rose.yaml | 2 + themes/noctua-dark-leaf.yaml | 2 + themes/noctua-grass.yaml | 2 + themes/noctua-hidden-sky.yaml | 2 + themes/nocturnal.yaml | 2 + themes/nodr-cocoa.yaml | 2 + themes/nodr-plum.yaml | 2 + themes/noe.yaml | 52 +++++++++++ themes/noel.yaml | 2 + themes/noir-dark.yaml | 2 + themes/noir-dracula.yaml | 2 + themes/noir-essence-dark.yaml | 52 +++++++++++ themes/noir-essence-light.yaml | 2 + themes/noir-light.yaml | 2 + themes/noir-outrun.yaml | 2 + themes/noir-owl.yaml | 2 + themes/noir-poimandres-black.yaml | 2 + themes/noir-poimandres-dark.yaml | 2 + themes/noir-poimandres-darker.yaml | 2 + themes/noir-poimandres.yaml | 2 + themes/noir-ros-pine-grey.yaml | 2 + themes/noir-ros-pine-moon-grey.yaml | 2 + themes/noir-tokyo-night-black.yaml | 2 + themes/noir-tokyo-night.yaml | 2 + themes/noirex.yaml | 2 + themes/noirzen.yaml | 2 + themes/nokion-clean.yaml | 2 + themes/noll-tta.yaml | 2 + themes/non-arbitrary-colors-theme.yaml | 2 + themes/noname-ui-next.yaml | 2 + themes/noname-ui.yaml | 2 + themes/noori.yaml | 2 + themes/noparanoia.yaml | 2 + themes/nora-dark.yaml | 2 + themes/nora-light-bordered.yaml | 2 + themes/nord-bunker.yaml | 2 + themes/nord-dark-contrast.yaml | 2 + themes/nord-dark-pro.yaml | 2 + themes/nord-deep.yaml | 2 + themes/nord-fountain.yaml | 52 +++++++++++ themes/nord-jujoco.yaml | 2 + themes/nord-light.yaml | 50 +++++++++++ themes/nord-midnight.yaml | 2 + themes/nord-native.yaml | 2 + themes/nord-operator-theme.yaml | 2 + themes/nord-palette.yaml | 2 + themes/nord-zero.yaml | 2 + themes/nord.yaml | 2 + themes/nordark.yaml | 52 +++++++++++ themes/nordfox.yaml | 2 + themes/nordic-dark.yaml | 2 + themes/nordic-electric-ai-nocturne.yaml | 2 + themes/nordic.yaml | 2 + themes/nordicbox.yaml | 2 + themes/nordicdark.yaml | 2 + themes/nordico.yaml | 2 + themes/nordishcocoa.yaml | 2 + themes/nordstone.yaml | 50 +++++++++++ themes/northeirn.yaml | 2 + themes/northern-territory-dark.yaml | 2 + themes/northern-territory-light.yaml | 2 + themes/nosk-theme.yaml | 2 + themes/nostromo.yaml | 2 + themes/not-so-simple.yaml | 2 + themes/notchy-dark.yaml | 2 + themes/notesocean-vs-code-theme.yaml | 2 + themes/notflask-theme-light.yaml | 2 + themes/nothing-dark.yaml | 2 + themes/nothing-light.yaml | 2 + themes/nothing-os-dark.yaml | 2 + themes/nothing-os-gray.yaml | 2 + themes/notion-code-theme.yaml | 2 + themes/notionliketheme.yaml | 2 + themes/notthevimguytheme.yaml | 2 + themes/nova-dark.yaml | 52 +++++++++++ themes/nova-light.yaml | 52 +++++++++++ themes/nova.yaml | 2 + themes/novadust.yaml | 2 + themes/november-theme-black.yaml | 2 + themes/november-theme-darkblue.yaml | 2 + themes/nox.yaml | 2 + themes/noxis-light.yaml | 2 + themes/noxis.yaml | 2 + themes/noxus.yaml | 2 + themes/npp-color-dark-hard.yaml | 2 + themes/npp-color-light-hard.yaml | 2 + .../nstlgy-dark-josh-w-comeau-inspired.yaml | 2 + themes/nudark.yaml | 2 + themes/nuitp-le-theme.yaml | 2 + themes/null-theme-absolute-black.yaml | 2 + themes/null-theme-electric-enhanced.yaml | 2 + themes/null-theme-midnight-enhanced.yaml | 2 + themes/null-theme-muted.yaml | 2 + themes/null-theme-near-black.yaml | 2 + themes/null-theme-pastel.yaml | 2 + themes/null-theme-synthwave.yaml | 2 + themes/null-theme-vivid.yaml | 2 + themes/nultramarine.yaml | 2 + themes/nulzo-relax.yaml | 2 + themes/nulzo-winter-light.yaml | 2 + themes/nur-dark.yaml | 2 + themes/nur-light.yaml | 2 + themes/nushu-classic.yaml | 2 + themes/nushu-dark.yaml | 2 + themes/nushu-light.yaml | 2 + themes/nutheme.yaml | 2 + themes/nutty-dark-theme.yaml | 2 + themes/nutty-light-theme.yaml | 2 + themes/nuuvo-space-max.yaml | 50 +++++++++++ themes/nuxt-blend-bleach-color-theme.yaml | 2 + themes/nuxt-blend.yaml | 2 + themes/nuxtian-deep-space.yaml | 2 + themes/nuxtian-light.yaml | 2 + themes/nuxtian-nitro.yaml | 2 + themes/nuxtian.yaml | 2 + themes/nuxtiansololevel.yaml | 2 + themes/nuxtvite.yaml | 2 + themes/nuxtvoid.yaml | 2 + themes/nw21.yaml | 2 + themes/ny-city-lights-theme.yaml | 2 + themes/nyctophilia.yaml | 2 + themes/nyrkes.yaml | 52 +++++++++++ themes/oa515.yaml | 2 + themes/oak-dark.yaml | 2 + themes/oak.yaml | 2 + themes/obanai-iguro.yaml | 2 + themes/obito-akatsuki-theme.yaml | 2 + themes/oblivion.yaml | 2 + themes/oboro.yaml | 2 + themes/obsidian-dark.yaml | 2 + themes/obsidian-ember.yaml | 2 + themes/obsidian-gold.yaml | 52 +++++++++++ themes/obsidian-light.yaml | 2 + themes/obsidian-nova.yaml | 2 + themes/obsidian-pro-dark-blue-purple.yaml | 2 + themes/obsidian-pro-dark-pink-purple.yaml | 2 + themes/obsidian-pro-dark-purple-neon.yaml | 2 + themes/obsidian-pro-dark-purple-pastel.yaml | 2 + themes/obsidian-pro-dark-purple.yaml | 2 + themes/obsidian-pro-dark.yaml | 2 + themes/obsidian-pro-white-purple.yaml | 2 + themes/obsidian-pro-white.yaml | 2 + themes/obsidian-pulse-light-theme.yaml | 2 + themes/obsidian-pulse-theme.yaml | 2 + themes/obsidian-sea.yaml | 2 + themes/obsidian-sunset.yaml | 2 + themes/obsidian-void.yaml | 2 + themes/obsidian-wine.yaml | 52 +++++++++++ themes/obsidian.yaml | 2 + themes/obsidianite-amoled.yaml | 4 +- themes/obsidianite.yaml | 4 +- themes/oc-7-light.yaml | 2 + themes/ocean-blue-theme.yaml | 2 + themes/ocean-breeze.yaml | 2 + themes/ocean-color-theme.yaml | 2 + themes/ocean-deep-depth-stability.yaml | 2 + themes/ocean-eyes-medium.yaml | 2 + themes/ocean-eyes.yaml | 2 + themes/ocean-high-contrast.yaml | 2 + themes/ocean-mist-light.yaml | 2 + themes/ocean-mist.yaml | 2 + themes/ocean-night.yaml | 2 + themes/ocean-theme.yaml | 2 + themes/ocean.yaml | 2 + themes/oceana.yaml | 2 + themes/oceanic-gradient.yaml | 52 +++++++++++ themes/oceanic-primal-color-theme.yaml | 50 +++++++++++ themes/oceanic-solitude.yaml | 2 + themes/oceanic-sunset.yaml | 52 +++++++++++ themes/oceanic-wind-cool.yaml | 2 + themes/oceanic-wind-warm.yaml | 2 + themes/oceanic-wind.yaml | 2 + themes/oceans-of-andromeda.yaml | 2 + themes/ochre-dark-midnight.yaml | 2 + themes/ochre-dark.yaml | 2 + themes/ochre-light-snow.yaml | 2 + themes/ochre-light.yaml | 2 + themes/octalide.yaml | 2 + themes/octo-dark-one.yaml | 2 + themes/octo-light.yaml | 2 + themes/octopus-theme.yaml | 2 + themes/odyssey-night.yaml | 2 + themes/office-dark.yaml | 52 +++++++++++ themes/office-light.yaml | 2 + themes/office-paper.yaml | 52 +++++++++++ themes/ogone.yaml | 2 + themes/oh-dark-pro.yaml | 2 + themes/ohiostate-fork.yaml | 2 + themes/ohled-aliceblue.yaml | 2 + themes/ohled-antiquewhite.yaml | 2 + themes/ohled-aquamarine.yaml | 2 + themes/ohled-azure.yaml | 2 + themes/ohled-beige.yaml | 2 + themes/ohled-bisque.yaml | 2 + themes/ohled-blanchedalmond.yaml | 2 + themes/ohled-blue.yaml | 2 + themes/ohled-blueviolet.yaml | 2 + themes/ohled-brown.yaml | 2 + themes/ohled-burlywood.yaml | 2 + themes/ohled-cadetblue.yaml | 2 + themes/ohled-chartreuse.yaml | 2 + themes/ohled-chocolate.yaml | 2 + themes/ohled-coral.yaml | 2 + themes/ohled-cornflowerblue.yaml | 2 + themes/ohled-cornsilk.yaml | 2 + themes/ohled-crimson.yaml | 2 + themes/ohled-cyan.yaml | 52 +++++++++++ themes/ohled-darkblue.yaml | 2 + themes/ohled-darkcyan.yaml | 2 + themes/ohled-darkgoldenrod.yaml | 2 + themes/ohled-darkgray.yaml | 2 + themes/ohled-darkgreen.yaml | 2 + themes/ohled-darkkhaki.yaml | 2 + themes/ohled-darkmagenta.yaml | 2 + themes/ohled-darkolivegreen.yaml | 2 + themes/ohled-darkorange.yaml | 2 + themes/ohled-darkorchid.yaml | 2 + themes/ohled-darkred.yaml | 2 + themes/ohled-darksalmon.yaml | 2 + themes/ohled-darkseagreen.yaml | 2 + themes/ohled-darkslateblue.yaml | 2 + themes/ohled-darkslategray.yaml | 2 + themes/ohled-darkturquoise.yaml | 2 + themes/ohled-darkviolet.yaml | 2 + themes/ohled-deeppink.yaml | 2 + themes/ohled-deepskyblue.yaml | 2 + themes/ohled-dimgray.yaml | 2 + themes/ohled-dodgerblue.yaml | 2 + themes/ohled-firebrick.yaml | 2 + themes/ohled-forestgreen.yaml | 2 + themes/ohled-gainsboro.yaml | 2 + themes/ohled-ghostwhite.yaml | 2 + themes/ohled-gold.yaml | 2 + themes/ohled-goldenrod.yaml | 2 + themes/ohled-gray.yaml | 2 + themes/ohled-green.yaml | 2 + themes/ohled-greenyellow.yaml | 2 + themes/ohled-honeydew.yaml | 2 + themes/ohled-hotpink.yaml | 2 + themes/ohled-indianred.yaml | 2 + themes/ohled-indigo.yaml | 2 + themes/ohled-ivory.yaml | 2 + themes/ohled-khaki.yaml | 2 + themes/ohled-lavender.yaml | 2 + themes/ohled-lavenderblush.yaml | 2 + themes/ohled-lawngreen.yaml | 2 + themes/ohled-lemonchiffon.yaml | 2 + themes/ohled-lightblue.yaml | 2 + themes/ohled-lightcoral.yaml | 2 + themes/ohled-lightcyan.yaml | 2 + themes/ohled-lightgoldenrodyellow.yaml | 2 + themes/ohled-lightgray.yaml | 2 + themes/ohled-lightgreen.yaml | 2 + themes/ohled-lightpink.yaml | 2 + themes/ohled-lightsalmon.yaml | 2 + themes/ohled-lightseagreen.yaml | 2 + themes/ohled-lightskyblue.yaml | 2 + themes/ohled-lightslategray.yaml | 2 + themes/ohled-lightsteelblue.yaml | 2 + themes/ohled-lightyellow.yaml | 2 + themes/ohled-lime.yaml | 2 + themes/ohled-limegreen.yaml | 2 + themes/ohled-linen.yaml | 2 + themes/ohled-magenta.yaml | 52 +++++++++++ themes/ohled-maroon.yaml | 2 + themes/ohled-mediumaquamarine.yaml | 2 + themes/ohled-mediumblue.yaml | 2 + themes/ohled-mediumorchid.yaml | 2 + themes/ohled-mediumpurple.yaml | 2 + themes/ohled-mediumseagreen.yaml | 2 + themes/ohled-mediumslateblue.yaml | 2 + themes/ohled-mediumspringgreen.yaml | 2 + themes/ohled-mediumturquoise.yaml | 2 + themes/ohled-mediumvioletred.yaml | 2 + themes/ohled-midnightblue.yaml | 2 + themes/ohled-mintcream.yaml | 2 + themes/ohled-mistyrose.yaml | 2 + themes/ohled-moccasin.yaml | 2 + themes/ohled-navajowhite.yaml | 2 + themes/ohled-navy.yaml | 2 + themes/ohled-oldlace.yaml | 2 + themes/ohled-olive.yaml | 2 + themes/ohled-olivedrab.yaml | 2 + themes/ohled-orange.yaml | 2 + themes/ohled-orangered.yaml | 2 + themes/ohled-orchid.yaml | 2 + themes/ohled-palegoldenrod.yaml | 2 + themes/ohled-palegreen.yaml | 2 + themes/ohled-paleturquoise.yaml | 2 + themes/ohled-palevioletred.yaml | 2 + themes/ohled-papayawhip.yaml | 2 + themes/ohled-peachpuff.yaml | 2 + themes/ohled-peru.yaml | 2 + themes/ohled-pink.yaml | 2 + themes/ohled-plum.yaml | 2 + themes/ohled-powderblue.yaml | 2 + themes/ohled-purple.yaml | 2 + themes/ohled-rebeccapurple.yaml | 2 + themes/ohled-red.yaml | 2 + themes/ohled-rosybrown.yaml | 2 + themes/ohled-royalblue.yaml | 2 + themes/ohled-saddlebrown.yaml | 2 + themes/ohled-salmon.yaml | 2 + themes/ohled-sandybrown.yaml | 2 + themes/ohled-seagreen.yaml | 2 + themes/ohled-seashell.yaml | 2 + themes/ohled-sienna.yaml | 2 + themes/ohled-silver.yaml | 2 + themes/ohled-skyblue.yaml | 2 + themes/ohled-slateblue.yaml | 2 + themes/ohled-slategray.yaml | 2 + themes/ohled-snow.yaml | 2 + themes/ohled-springgreen.yaml | 2 + themes/ohled-steelblue.yaml | 2 + themes/ohled-tan.yaml | 2 + themes/ohled-teal.yaml | 2 + themes/ohled-thistle.yaml | 2 + themes/ohled-tomato.yaml | 2 + themes/ohled-turquoise.yaml | 2 + themes/ohled-violet.yaml | 2 + themes/ohled-wheat.yaml | 2 + themes/ohled-white.yaml | 2 + themes/ohled-whitesmoke.yaml | 2 + themes/ohled-yellow.yaml | 2 + themes/ohled-yellowgreen.yaml | 2 + themes/ohled-yelloworange.yaml | 2 + themes/ohled-yellowpink.yaml | 2 + themes/ohled-yellowpurple.yaml | 2 + themes/okas-theme.yaml | 2 + themes/oldschool-terminal-green.yaml | 2 + themes/oldworld.yaml | 2 + themes/oledge.yaml | 50 +++++++++++ themes/olive-dark.yaml | 2 + themes/olive-light.yaml | 2 + themes/omega.yaml | 2 + themes/omni-customized-dark.yaml | 2 + themes/omni-customized.yaml | 2 + themes/omni-dracula-dark.yaml | 2 + ...ni-dracula-theme-tradicional-contrast.yaml | 2 + themes/omni-dracula-theme-tradicional.yaml | 52 +++++++++++ themes/omni-dracula-theme.yaml | 2 + .../omni-dracula-wine-theme-tradicional.yaml | 2 + themes/omni-monokai-dark.yaml | 2 + themes/omni-pro.yaml | 2 + themes/omni.yaml | 2 + themes/omnisexual.yaml | 2 + themes/omnitrix-code.yaml | 2 + themes/omo-theme.yaml | 2 + themes/one-ai-theme.yaml | 2 + themes/one-dark-cloud-theme.yaml | 2 + themes/one-dark-code.yaml | 2 + themes/one-dark-darker-vivid.yaml | 2 + themes/one-dark-darker.yaml | 2 + themes/one-dark-modern-pro.yaml | 2 + themes/one-dark-night-blue-boy.yaml | 2 + themes/one-dark-night-eye-care.yaml | 2 + themes/one-dark-night-minimalist.yaml | 2 + themes/one-dark-night-professional.yaml | 2 + themes/one-dark-nx.yaml | 2 + themes/one-dark-orange.yaml | 52 +++++++++++ themes/one-dark-pro-theme.yaml | 2 + themes/one-dark-pro-var-night.yaml | 2 + themes/one-dark-pro.yaml | 2 + themes/one-dark-vibrant-theme.yaml | 2 + themes/one-dark.yaml | 2 + themes/one-darker-pro.yaml | 2 + themes/one-darkpuccin-night.yaml | 52 +++++++++++ themes/one-darkpuccin-vivid.yaml | 52 +++++++++++ themes/one-hunter-theme.yaml | 2 + themes/one-light-italic.yaml | 52 +++++++++++ themes/one-light-pro.yaml | 2 + themes/one-material.yaml | 2 + themes/one-midnight.yaml | 2 + themes/one-monokai-darker.yaml | 2 + themes/one-monokai-forked.yaml | 2 + themes/one-monokai-light.yaml | 52 +++++++++++ themes/one-monokai-michota.yaml | 2 + themes/one-monokai-python-flat.yaml | 52 +++++++++++ themes/one-monokai-shadow.yaml | 2 + themes/one-monokai1.yaml | 2 + themes/one-moon.yaml | 2 + themes/one-more-dark.yaml | 2 + themes/one-pauintxi-blue.yaml | 52 +++++++++++ themes/one-piece-dark.yaml | 2 + themes/one-piece-high-contrast.yaml | 2 + themes/one-piece-light.yaml | 2 + themes/one-piece-straw-hat-red.yaml | 2 + themes/onebitcode-theme.yaml | 2 + themes/onebitcode.yaml | 2 + themes/onecalm.yaml | 2 + themes/onedark-nvim.yaml | 2 + themes/onedark-pro-suhayb-s-version-v2.yaml | 2 + themes/onedark-vibrant.yaml | 52 +++++++++++ themes/oneiroi-caffeine.yaml | 2 + themes/oneiroi-dream.yaml | 2 + themes/oneiroi-melatonin.yaml | 2 + themes/onemonokai80s.yaml | 2 + themes/onemonokai80sog.yaml | 2 + themes/onenv.yaml | 2 + themes/onething.yaml | 52 +++++++++++ themes/oni-theme.yaml | 2 + themes/onlydark.yaml | 46 +++++----- themes/onlydarklight.yaml | 50 +++++++++++ themes/onora.yaml | 2 + themes/onyx-core.yaml | 2 + themes/onyx-ghost.yaml | 2 + themes/onyx-theme-color.yaml | 2 + themes/onyx.yaml | 84 ++++++++--------- themes/oolory-color-theme.yaml | 52 +++++++++++ themes/oolory-dark-color-theme.yaml | 2 + themes/openbase.yaml | 2 + themes/openspace-dark-flat.yaml | 2 + themes/openspace-dark.yaml | 2 + themes/openspace.yaml | 2 + themes/opmono-odarkp.yaml | 52 +++++++++++ themes/optimus-dark.yaml | 2 + themes/oracle-vision.yaml | 52 +++++++++++ themes/oradia.yaml | 2 + themes/oragethemedark.yaml | 2 + themes/orange-coral.yaml | 2 + themes/orange-dark.yaml | 2 + themes/orange-ocean.yaml | 52 +++++++++++ themes/orange.yaml | 2 + themes/orangefox-dark.yaml | 4 +- themes/orangefox-light.yaml | 4 +- themes/orangelemon.yaml | 3 + themes/orangey-darker-1.yaml | 2 + themes/orangey-darker-2.yaml | 2 + themes/orangey-lighter-1.yaml | 2 + themes/orangey-lighter-2.yaml | 2 + themes/orangey.yaml | 2 + themes/orbi-blue.yaml | 2 + themes/orbi-red.yaml | 52 +++++++++++ themes/orca.yaml | 2 + themes/origami-theme.yaml | 2 + themes/origamid.yaml | 2 + themes/original-theme.yaml | 3 + themes/orion-black-fork.yaml | 52 +++++++++++ themes/orpheux.yaml | 3 + themes/orw.yaml | 52 +++++++++++ themes/orwellian-nightmare.yaml | 2 + themes/osaka-solarized-pro-dark.yaml | 2 + themes/osaka-solarized-pro-light.yaml | 2 + themes/osaka-solarized-pro-monokai-storm.yaml | 2 + themes/osean-boy.yaml | 52 +++++++++++ themes/oslo-dark.yaml | 2 + themes/osmoz-dark.yaml | 2 + themes/osx9.yaml | 2 + themes/otakon-contrast.yaml | 2 + themes/otakon-light.yaml | 2 + themes/otakon.yaml | 2 + themes/outer-spacemacs.yaml | 52 +++++++++++ themes/outrun-dark.yaml | 2 + themes/overflow-contrast.yaml | 2 + themes/overflow-light.yaml | 2 + themes/overflow.yaml | 2 + themes/overload.yaml | 2 + themes/overnight.yaml | 52 +++++++++++ themes/owlet-default.yaml | 2 + themes/owlet-material.yaml | 2 + themes/owlet-mono.yaml | 2 + themes/owlet-outrun.yaml | 2 + themes/owlet-solarized.yaml | 2 + themes/owokai-hard.yaml | 2 + themes/owokai.yaml | 2 + themes/oxocarbon-5.yaml | 2 + themes/oxocarbon-dark.yaml | 52 +++++++++++ themes/oxocarbon-monochrom.yaml | 52 +++++++++++ ...xocarbon-oled-monochrom-compatibility.yaml | 2 + themes/oxocarbon-oled-monochrom.yaml | 2 + themes/oxocarbon-oled.yaml | 52 +++++++++++ themes/oxocarbon-port.yaml | 2 + themes/oxocarbonix-dark-theme.yaml | 2 + themes/ozurac.yaml | 3 + themes/ozzy.yaml | 2 + themes/p-nk.yaml | 3 + themes/p-upright-black.yaml | 52 +++++++++++ themes/p-upright-citadel.yaml | 52 +++++++++++ themes/p-upright-crimson.yaml | 52 +++++++++++ themes/p-upright-dark.yaml | 52 +++++++++++ themes/p-upright-eggplant.yaml | 52 +++++++++++ themes/p-upright-emerald.yaml | 52 +++++++++++ themes/p-upright-eucalyptus.yaml | 52 +++++++++++ themes/p-upright-floresta.yaml | 52 +++++++++++ themes/p-upright-frost.yaml | 52 +++++++++++ themes/p-upright-genmaicha.yaml | 52 +++++++++++ themes/p-upright-grizzly.yaml | 52 +++++++++++ themes/p-upright-haze.yaml | 52 +++++++++++ themes/p-upright-inkstone.yaml | 52 +++++++++++ themes/p-upright-leipzig.yaml | 52 +++++++++++ themes/p-upright-light.yaml | 52 +++++++++++ themes/p-upright-machine.yaml | 52 +++++++++++ themes/p-upright-mist.yaml | 52 +++++++++++ themes/p-upright-neptune.yaml | 52 +++++++++++ themes/p-upright-ornithopter.yaml | 52 +++++++++++ themes/p-upright-ox.yaml | 52 +++++++++++ themes/p-upright-terabyte.yaml | 52 +++++++++++ themes/p-upright-ultramarine.yaml | 52 +++++++++++ themes/p-upright-wolf.yaml | 52 +++++++++++ themes/p-upright-yesterday.yaml | 52 +++++++++++ themes/p-upright-zenith.yaml | 52 +++++++++++ themes/p-yesterday.yaml | 2 + themes/p33t.yaml | 2 + themes/pace-dark.yaml | 2 + themes/pace-light.yaml | 2 + themes/padrepio.yaml | 2 + themes/paigio.yaml | 2 + themes/pale-blue.yaml | 2 + themes/pale-boreal-dark.yaml | 2 + themes/palenight-italic.yaml | 52 +++++++++++ themes/palenight-material.yaml | 2 + ...ed-on-olaolu-olaywuyi-for-code-server.yaml | 52 +++++++++++ themes/palenight-theme.yaml | 52 +++++++++++ themes/palestorm-x.yaml | 2 + themes/palestorm.yaml | 2 + themes/palette.yaml | 2 + themes/pall-theme.yaml | 2 + themes/panda-dark.yaml | 2 + themes/pandai.yaml | 52 +++++++++++ themes/pandju.yaml | 52 +++++++++++ themes/papaya.yaml | 2 + themes/para-so-dark.yaml | 52 +++++++++++ themes/paradise.yaml | 2 + themes/parakeet-theme.yaml | 2 + themes/parchment-candlelight-color-theme.yaml | 2 + themes/parchment-codex-color-theme.yaml | 2 + themes/parchment-digitized-color-theme.yaml | 2 + themes/parchment-starlight-color-theme.yaml | 2 + themes/parchment.yaml | 2 + themes/pare-colors-theme.yaml | 2 + themes/parkside-light.yaml | 2 + themes/paro-paro-solarized-dark-theme.yaml | 16 ++-- themes/pastel-contrast.yaml | 2 + themes/pastel-inu.yaml | 2 + themes/pastel-light.yaml | 2 + themes/pastel-sorbet.yaml | 52 +++++++++++ themes/pastel.yaml | 2 + themes/pastelefull.yaml | 2 + themes/pastelfairy.yaml | 2 + themes/pastellize-dark-muted.yaml | 2 + themes/patina-colors.yaml | 2 + themes/patr-theme.yaml | 2 + themes/patricklimax.yaml | 2 + themes/patriot-contrast.yaml | 2 + themes/patriot-light.yaml | 2 + themes/patriot.yaml | 2 + themes/paulera-s-dark-monokai.yaml | 2 + themes/paulera-s-lyo.yaml | 2 + themes/paztels.yaml | 2 + themes/peace-of-the-eye-dracula-version.yaml | 52 +++++++++++ themes/peachy-dolphin.yaml | 2 + themes/peachy.yaml | 2 + themes/peacock-contrast.yaml | 2 + themes/peacock-light.yaml | 2 + themes/peacock.yaml | 2 + themes/peacocks-in-space-contrast.yaml | 2 + themes/peacocks-in-space-light.yaml | 2 + themes/peacocks-in-space.yaml | 2 + themes/peel-contrast.yaml | 2 + themes/peel-light.yaml | 2 + themes/peel.yaml | 2 + themes/penitent-contrast.yaml | 2 + themes/penitent-light.yaml | 2 + themes/penitent.yaml | 2 + themes/penumbra-dark-contrast.yaml | 2 + themes/penumbra-dark.yaml | 2 + themes/penumbra-light.yaml | 2 + themes/perf-pink.yaml | 2 + themes/perfect-dark.yaml | 2 + themes/perfect-grey-pf-dark.yaml | 2 + themes/perfect-grey-pf-light.yaml | 2 + themes/perfection-fresh-dark.yaml | 52 +++++++++++ themes/perfection-fresh-light.yaml | 52 +++++++++++ themes/periwinkle-color-theme.yaml | 2 + themes/periwinkle-soft-dark.yaml | 2 + themes/perplexity.yaml | 2 + themes/perry-the-platypus.yaml | 2 + themes/petrel.yaml | 2 + themes/pg-aqualung.yaml | 3 + themes/pg-blue-moon.yaml | 3 + themes/pg-forest.yaml | 3 + themes/pg-may-be-concrete.yaml | 3 + themes/pg-mud-puddle.yaml | 3 + themes/pg-plum-great.yaml | 3 + themes/pg-plum-groovy.yaml | 3 + themes/pg-punkin-spice.yaml | 3 + themes/pg-red-clay.yaml | 3 + themes/pg-ridgeline.yaml | 3 + themes/pg-ruby-clay.yaml | 3 + themes/pg-ruby-soho.yaml | 3 + themes/pg-slax.yaml | 3 + themes/pg-steely-daniel.yaml | 3 + themes/pglight.yaml | 2 + themes/phantom.yaml | 3 + themes/phocus.yaml | 2 + themes/phonebook-dark.yaml | 2 + themes/phonebook-light.yaml | 2 + themes/phosphor-amber-night.yaml | 3 + themes/phosphor-aurora.yaml | 3 + themes/phosphor-dark.yaml | 2 + themes/phosphor-dreams.yaml | 3 + themes/phosphor-event-horizon.yaml | 3 + themes/phosphor-forest.yaml | 3 + themes/phosphor-neon-noir.yaml | 3 + themes/phosphor-violet-dusk.yaml | 3 + themes/phosphorus-minor.yaml | 2 + themes/photonica-dark.yaml | 2 + themes/photonica-light.yaml | 2 + themes/photophore.yaml | 2 + themes/piattro.yaml | 2 + themes/pierre-dark.yaml | 2 + themes/pierre-light.yaml | 2 + themes/piggy-bordered.yaml | 52 +++++++++++ themes/piggy-contrast.yaml | 2 + themes/piggy-light.yaml | 2 + themes/piggy.yaml | 2 + themes/pillirioen.yaml | 52 +++++++++++ themes/pine-blue.yaml | 52 +++++++++++ themes/pine-cone-theme.yaml | 2 + themes/pine-editor-dark.yaml | 52 +++++++++++ themes/pine-editor-light-bold.yaml | 52 +++++++++++ themes/pine-forest-green-dark.yaml | 2 + themes/pine-forest.yaml | 2 + themes/pine-frizz.yaml | 2 + themes/pine-grey.yaml | 52 +++++++++++ themes/pine-theme-original-dark-extend.yaml | 2 + themes/pineapple.yaml | 2 + themes/pines.yaml | 2 + themes/pingocho-dark.yaml | 2 + themes/pink-candy-dark-warm.yaml | 2 + themes/pink-candy-dark.yaml | 2 + themes/pink-candy-light.yaml | 2 + themes/pink-flower.yaml | 2 + themes/pink-high-contrast.yaml | 52 +++++++++++ themes/pink-theme.yaml | 2 + themes/pink.yaml | 2 + themes/pinkandgreen.yaml | 2 + themes/pinkandwhite.yaml | 2 + themes/pinkcodes-pink.yaml | 2 + themes/pinkdark.yaml | 2 + themes/pinkdopeybug-primordial-origin.yaml | 3 + themes/pinkmare.yaml | 2 + themes/pinkppuccin.yaml | 2 + themes/pinky-promise-dark.yaml | 2 + themes/pinky-promise-light.yaml | 2 + themes/pinkyboo.yaml | 2 + themes/pinot-gris.yaml | 2 + themes/pinya-theme.yaml | 2 + themes/pipboy-theme.yaml | 2 + themes/pirate-flat-theme.yaml | 52 +++++++++++ themes/pirulug-dark.yaml | 2 + themes/pirulug-ligt.yaml | 2 + themes/pistachio-madness.yaml | 2 + themes/pitaya-smoothie.yaml | 2 + themes/pittaya-theme-light.yaml | 2 + themes/pittaya-theme.yaml | 2 + themes/pittcsc-theme.yaml | 2 + themes/pk-vscode-theme.yaml | 52 +++++++++++ themes/plane.yaml | 2 + themes/plantillathemes.yaml | 2 + themes/plasma-pink.yaml | 2 + themes/plasticine.yaml | 2 + themes/plasticman.yaml | 5 +- themes/platzi-theme.yaml | 2 + themes/playground-theme-dark.yaml | 3 + themes/playground-theme.yaml | 2 + themes/playground.yaml | 2 + themes/pleasure-contrast.yaml | 2 + themes/pleasure-light.yaml | 2 + themes/pleasure.yaml | 2 + themes/plotka-amethyst.yaml | 2 + themes/plurpelvsc.yaml | 2 + themes/pluto-dark.yaml | 2 + themes/po.yaml | 2 + ...imandres-darker-theme-ghostty-palette.yaml | 52 +++++++++++ themes/poison-serpent.yaml | 52 +++++++++++ themes/polar-black-cherry-blossom.yaml | 2 + themes/polar-black-green-cactus.yaml | 2 + themes/polar-black-ice.yaml | 2 + themes/polar-black-less-black-smoke.yaml | 2 + themes/polar-black-light.yaml | 2 + themes/polar-black-red.yaml | 2 + themes/polar-black-savanna.yaml | 2 + themes/polar-black.yaml | 2 + themes/polar-ice-dark.yaml | 2 + themes/polar-ice-light.yaml | 2 + themes/polar-light.yaml | 2 + themes/polar-midnight.yaml | 2 + themes/polar-night.yaml | 2 + themes/polish.yaml | 2 + themes/polychrome-dark.yaml | 2 + themes/polychrome-light.yaml | 2 + themes/polygopher-theme.yaml | 2 + themes/polykai.yaml | 2 + themes/polymer-flow.yaml | 52 +++++++++++ themes/pookie-dark.yaml | 3 + themes/poolside.yaml | 2 + themes/pop-os-cosmic.yaml | 2 + themes/popipa.yaml | 2 + themes/popping-and-locking-mod.yaml | 2 + themes/popping-and-locking.yaml | 2 + themes/popsicle-color-theme.yaml | 44 ++++----- themes/port-gellhorn-noir.yaml | 2 + themes/posh.yaml | 2 + themes/posterpole.yaml | 3 + themes/potpourri-contrast.yaml | 2 + themes/potpourri-light.yaml | 2 + themes/potpourri.yaml | 2 + themes/powder.yaml | 2 + themes/power-dark.yaml | 2 + themes/power-low-purple-theme.yaml | 2 + themes/poznajkubernetes.yaml | 2 + themes/ppy-like.yaml | 2 + themes/pr-theme-obsidian.yaml | 2 + themes/pr-theme-premium.yaml | 2 + themes/pr-theme.yaml | 2 + themes/pre.yaml | 2 + themes/prescient.yaml | 2 + themes/pretentious-name.yaml | 2 + themes/pretty-dark-theme.yaml | 2 + themes/pributan.yaml | 2 + themes/prime-contrast.yaml | 2 + themes/prime-light.yaml | 2 + themes/prime.yaml | 2 + themes/primer-light.yaml | 2 + themes/prism-dark.yaml | 2 + themes/prism-light.yaml | 2 + themes/prisma.yaml | 2 + themes/prismapixel-studios-dark-theme.yaml | 2 + themes/prismatic-dark.yaml | 2 + themes/prismatic-light.yaml | 2 + themes/prismatic-void.yaml | 2 + themes/prismmagic.yaml | 2 + themes/pro-coding.yaml | 3 + themes/professional-dark.yaml | 2 + themes/progenesis-dark.yaml | 52 +++++++++++ themes/progenesis-light.yaml | 52 +++++++++++ themes/programmer.yaml | 2 + themes/progress-dark.yaml | 3 + themes/progress.yaml | 2 + themes/project-dark-theme-soft.yaml | 2 + themes/prom-wiki.yaml | 2 + themes/pronight.yaml | 3 + themes/proper-dracula.yaml | 2 + themes/proper-pure.yaml | 2 + themes/proper-theme-alternate-2.yaml | 2 + themes/proper-theme-alternate-fork.yaml | 2 + themes/proper-theme-fork.yaml | 2 + themes/proper-up-for-what.yaml | 2 + themes/proper.yaml | 2 + themes/propurple.yaml | 2 + themes/protheme-dark-2.yaml | 50 +++++++++++ themes/protheme-dark.yaml | 50 +++++++++++ themes/ps-dark.yaml | 2 + themes/ps-light.yaml | 2 + themes/ps-mid-blue.yaml | 2 + themes/ps-syntax.yaml | 2 + themes/pudding-dark-caramel-beta.yaml | 2 + themes/pudding-dark-christmas.yaml | 2 + themes/pudding-dark.yaml | 2 + themes/pudding-light-jk.yaml | 2 + themes/pudding-light.yaml | 2 + themes/pulpy-orange.yaml | 2 + themes/pulsar.yaml | 2 + themes/pulse-balanced-purple.yaml | 2 + themes/pulse-comfort-light.yaml | 2 + themes/pulse-soft-purple.yaml | 2 + themes/pumpkin.yaml | 2 + themes/punjab-land-of-five-rivers.yaml | 2 + themes/punkfut.yaml | 50 +++++++++++ themes/pur-theme-v1.yaml | 2 + themes/purble-0-0-2-fork-fork.yaml | 2 + themes/purddy.yaml | 2 + themes/pure-black-monokai-inspired.yaml | 50 +++++++++++ themes/pure-black.yaml | 2 + themes/pure-dark.yaml | 2 + themes/pure-light.yaml | 2 + themes/pure-monochrome.yaml | 50 +++++++++++ themes/pureblack.yaml | 2 + themes/purgle-dark-purple.yaml | 50 +++++++++++ themes/puri-twilite.yaml | 2 + themes/purple-cake.yaml | 2 + themes/purple-cloud-minimal.yaml | 2 + themes/purple-cloud-theme.yaml | 2 + themes/purple-codain.yaml | 2 + themes/purple-cyan.yaml | 3 + themes/purple-dark-black.yaml | 2 + themes/purple-dark-theme-unicode.yaml | 2 + themes/purple-dark.yaml | 2 + themes/purple-deep-black-fork.yaml | 2 + themes/purple-deep-black.yaml | 2 + themes/purple-dream.yaml | 2 + themes/purple-galaxy.yaml | 52 +++++++++++ themes/purple-ish-dimmed.yaml | 52 +++++++++++ themes/purple-ish.yaml | 2 + themes/purple-royal.yaml | 2 + themes/purple-theme.yaml | 2 + themes/purple-twist.yaml | 2 + themes/purple-void.yaml | 2 + themes/purple.yaml | 2 + themes/purpleandblack.yaml | 2 + themes/purplechan.yaml | 2 + themes/purplecrystal.yaml | 2 + themes/purplefy.yaml | 3 + themes/purplephantom.yaml | 2 + themes/purpler.yaml | 2 + themes/purplespace.yaml | 2 + themes/purplexed-magic.yaml | 2 + themes/purplexed-theme.yaml | 2 + themes/purplezera.yaml | 2 + themes/purplish-fork.yaml | 2 + themes/purply-dark.yaml | 2 + themes/purply-light.yaml | 2 + themes/purppy.yaml | 2 + themes/purps.yaml | 2 + themes/purr-light.yaml | 52 +++++++++++ .../purrfect-marshmallow-lavender-night.yaml | 2 + themes/purrfect-marshmallow-pastel-pink.yaml | 2 + themes/purstel.yaml | 3 + themes/purupiu-theme.yaml | 2 + themes/pushkin-is-white.yaml | 2 + themes/pussdev-pink-theme.yaml | 2 + themes/pvdk-theme.yaml | 2 + themes/pycharm-theme.yaml | 2 + themes/python-bright-colors-theme.yaml | 2 + themes/qara.yaml | 2 + themes/qerz-theme.yaml | 3 + themes/qihui-tech-light.yaml | 52 +++++++++++ themes/qihui-tech-night.yaml | 52 +++++++++++ themes/qihui-tech.yaml | 52 +++++++++++ themes/qii-theme-dark-shallow.yaml | 2 + themes/qii-theme-dark.yaml | 2 + themes/qii-theme-light.yaml | 2 + themes/qoder-dark.yaml | 2 + themes/qqqoid-light-color.yaml | 2 + themes/qt-creator-like-dark-theme.yaml | 2 + themes/qtz-theme.yaml | 2 + themes/quantum-blue-dark.yaml | 2 + themes/quantum-dark.yaml | 52 +++++++++++ themes/quantum-fluidity.yaml | 52 +++++++++++ themes/quantum-flux.yaml | 50 +++++++++++ themes/quantum-green.yaml | 2 + themes/quantum-material-theme-dark.yaml | 50 +++++++++++ themes/quantum-material-theme-light.yaml | 50 +++++++++++ themes/quantum-material-theme-void.yaml | 50 +++++++++++ themes/quantum-mirage.yaml | 52 +++++++++++ themes/quantum-night.yaml | 2 + themes/quantum-synthwave.yaml | 2 + themes/quantum.yaml | 52 +++++++++++ themes/quantumqubic.yaml | 3 + themes/quantxz.yaml | 2 + themes/quarkus-dark-theme.yaml | 2 + themes/quartzium-theme-dark.yaml | 52 +++++++++++ themes/quartzium-theme-darker.yaml | 52 +++++++++++ themes/quartzium-theme-deepforest.yaml | 52 +++++++++++ themes/quartzium-theme-default.yaml | 52 +++++++++++ themes/quartzium-theme-lighter.yaml | 52 +++++++++++ themes/quasar.yaml | 2 + themes/qubik-dark.yaml | 2 + themes/qubik-light.yaml | 2 + themes/queensland-dark.yaml | 2 + themes/queensland-light.yaml | 2 + themes/quiet-canvas.yaml | 2 + themes/quiet-hacker.yaml | 2 + themes/quietude.yaml | 2 + themes/quinno-darkness.yaml | 52 +++++++++++ themes/quirky-contrast-theme.yaml | 2 + themes/qutheme.yaml | 2 + themes/r-dark-pro-filter-coolnight.yaml | 2 + themes/r-dark-pro-filter-dark-pro.yaml | 2 + themes/r-dark-pro-filter-nightblack.yaml | 52 +++++++++++ themes/r-dark-pro-filter-nightfall.yaml | 2 + themes/r-dark-pro-filter-nightgrey.yaml | 2 + themes/r-dark-pro-filter-nightlate.yaml | 2 + themes/r-e-m.yaml | 2 + themes/r-h-zero-monokai.yaml | 2 + themes/rabbit.yaml | 2 + themes/radiant-noir.yaml | 2 + themes/radium.yaml | 2 + themes/ragequit.yaml | 3 + themes/ragnarok.yaml | 2 + themes/raij-dark.yaml | 52 +++++++++++ themes/raij.yaml | 52 +++++++++++ themes/rain-city-theme.yaml | 2 + themes/rain.yaml | 2 + themes/rainbow-light.yaml | 2 + themes/rainbow-material-theme.yaml | 2 + themes/rainbow-pastel-theme.yaml | 2 + themes/rainbow.yaml | 2 + themes/rainbowdrops-dark.yaml | 2 + themes/rainforest-dark.yaml | 2 + themes/rainx0r.yaml | 2 + themes/rainy-hydrangea.yaml | 2 + themes/raiyanplanet-dark-knight.yaml | 2 + themes/raiyanplanet-darkest.yaml | 2 + themes/raiyanplanet-purple-world.yaml | 2 + themes/rajasthan-land-of-kings.yaml | 2 + themes/rajoyish.yaml | 2 + themes/rakkii-theme.yaml | 2 + themes/ramage.yaml | 2 + themes/ramazzotti-80s.yaml | 2 + themes/ramazzotti-flexobi.yaml | 2 + themes/ramazzotti-gruvbox.yaml | 2 + themes/ramuda.yaml | 2 + themes/rapture.yaml | 2 + themes/rasengan-glacier.yaml | 52 +++++++++++ themes/rat-beach.yaml | 52 +++++++++++ themes/rate-dark-cold.yaml | 2 + themes/rate-dark.yaml | 2 + themes/rate-light-soft.yaml | 2 + themes/rate-light.yaml | 2 + themes/ravenwood-dark.yaml | 2 + themes/ravenwood-light.yaml | 2 + themes/rayleigh.yaml | 52 +++++++++++ themes/rb-s-desaturated.yaml | 3 + themes/rbe-matrix-skin-theme.yaml | 2 + themes/rblx-lua-non-italic.yaml | 52 +++++++++++ themes/rcw-120-v1.yaml | 52 +++++++++++ themes/rdcd.yaml | 2 + themes/re-dark.yaml | 52 +++++++++++ themes/re-eclipse-old-school.yaml | 2 + themes/re-eclipse.yaml | 2 + themes/re-vision.yaml | 2 + themes/react-italic-theme.yaml | 52 +++++++++++ themes/react-theme.yaml | 2 + themes/rebellion-contrast.yaml | 2 + themes/rebellion-light.yaml | 2 + themes/rebellion.yaml | 2 + themes/recats-classic-dark.yaml | 2 + themes/recats-nova-dark.yaml | 2 + themes/recotheme.yaml | 2 + themes/red-black-white-dark.yaml | 2 + themes/red-black-white-light.yaml | 2 + themes/red-black-white.yaml | 52 +++++++++++ themes/red-color-theme.yaml | 52 +++++++++++ themes/red-grey.yaml | 2 + themes/red-one-dark-pro-dark.yaml | 2 + themes/red-vintage.yaml | 2 + themes/red.yaml | 52 +++++++++++ themes/reddark.yaml | 2 + themes/reddit-dark-based-theme-updated.yaml | 2 + themes/rediohead-theme.yaml | 2 + themes/redorainbow.yaml | 2 + themes/redpro-dark.yaml | 2 + themes/redpro-light.yaml | 2 + themes/redspecter.yaml | 3 + themes/refined-charcoal.yaml | 2 + themes/refined-default.yaml | 2 + themes/refined-dracula.yaml | 2 + themes/refined-espresso.yaml | 2 + themes/refined-matcha.yaml | 2 + themes/refined-mocha.yaml | 2 + themes/refined-night-owl.yaml | 2 + themes/refined-oceanic-next.yaml | 2 + themes/refined-one.yaml | 2 + themes/refined-palenight.yaml | 2 + themes/refined-purple.yaml | 2 + themes/refined-slate.yaml | 2 + themes/regard.yaml | 2 + themes/relaxed-theme-dark-focus.yaml | 2 + themes/relaxed-theme-day-light.yaml | 2 + themes/relaxed-theme-night-warm.yaml | 2 + themes/relaxed-theme.yaml | 2 + themes/remedy-bright-tilted.yaml | 2 + themes/remedy-dark-tilted.yaml | 2 + themes/remedyish-bright.yaml | 50 +++++++++++ themes/remedyish-dark.yaml | 50 +++++++++++ themes/replicant.yaml | 2 + themes/replt-it.yaml | 2 + themes/resknow-dark.yaml | 2 + themes/retina.yaml | 2 + themes/retro-arcade.yaml | 52 +++++++++++ themes/retro-cathode-ray-minimal-theme.yaml | 2 + themes/retro-green.yaml | 2 + themes/retro-hacker-amber.yaml | 2 + themes/retro-hacker-blue.yaml | 2 + themes/retro-hacker-green-subtle.yaml | 2 + themes/retro-hacker-green.yaml | 2 + themes/retro-hacker-magenta.yaml | 2 + themes/retro-keyboard-dark.yaml | 2 + themes/retro-keyboard-light.yaml | 2 + themes/retro-pastel-color-theme.yaml | 2 + themes/retro-vibes.yaml | 2 + themes/retro.yaml | 2 + themes/retrocoders.yaml | 2 + themes/retronica-amber-terminal.yaml | 2 + themes/retronica-neon-nights.yaml | 2 + themes/retronica-pastel-arcade.yaml | 2 + themes/retronica-phosphor-green.yaml | 2 + themes/retronica-vintage-computing.yaml | 2 + themes/retropunk.yaml | 2 + themes/retroscope.yaml | 2 + themes/retrox.yaml | 2 + themes/reui-ii-dark.yaml | 52 +++++++++++ themes/reui-mirage.yaml | 52 +++++++++++ themes/reui.yaml | 52 +++++++++++ themes/revelation-contrast.yaml | 2 + themes/revelation-light.yaml | 2 + themes/revelation.yaml | 2 + themes/revisual-assist-color-theme.yaml | 2 + themes/revisualassist.yaml | 2 + themes/rextax-bright-fork.yaml | 2 + themes/rey.yaml | 52 +++++++++++ themes/rezaul360-blue-velvet-theme.yaml | 52 +++++++++++ themes/rezaul360-professional-theme.yaml | 52 +++++++++++ themes/rezaul360-simple-as-light.yaml | 52 +++++++++++ themes/rg-htmllessons-io.yaml | 52 +++++++++++ themes/rhodes-dark.yaml | 2 + themes/rhodes-light.yaml | 2 + themes/rhodium-dark.yaml | 52 +++++++++++ themes/rich-black-no-highlighting.yaml | 52 +++++++++++ themes/rich-black-theme.yaml | 52 +++++++++++ themes/rider-dark-darcula.yaml | 52 +++++++++++ themes/rider-dark-new-ui.yaml | 52 +++++++++++ themes/rider-melon-night.yaml | 2 + themes/rider.yaml | 2 + themes/rigel.yaml | 2 + themes/rimber.yaml | 2 + themes/riskified-dark.yaml | 2 + themes/rito.yaml | 2 + themes/rivendell.yaml | 2 + themes/riviera-theme.yaml | 52 +++++++++++ themes/rizz-focused.yaml | 2 + themes/rizz-neutral.yaml | 2 + themes/rm-dark-theme.yaml | 2 + themes/rmondesilva-contrast.yaml | 52 +++++++++++ themes/roblox-stylized-dark-theme.yaml | 2 + themes/robodark.yaml | 2 + themes/robolaunch.yaml | 2 + themes/robot-framework-material-dark.yaml | 52 +++++++++++ themes/rocinante.yaml | 2 + themes/rocklee.yaml | 52 +++++++++++ themes/rocko-s-modern-theme.yaml | 2 + themes/rogue-squadron.yaml | 2 + themes/rohit-kudalkar-dark-theme.yaml | 3 + themes/rohit.yaml | 52 +++++++++++ themes/ronin-darker.yaml | 2 + themes/ronin.yaml | 2 + themes/root-bear.yaml | 2 + themes/root-dark-mode-theme-v0-1.yaml | 2 + themes/ros-pine-dawn-no-italics.yaml | 52 +++++++++++ themes/ros-pine-moon.yaml | 52 +++++++++++ themes/ros-pine-no-italics.yaml | 52 +++++++++++ themes/ros-pine.yaml | 2 + themes/rose-paradise.yaml | 2 + themes/rosefall-black.yaml | 2 + themes/rosefall-midnight.yaml | 2 + themes/roselia-orbital-eden-pastel.yaml | 2 + themes/roselia.yaml | 2 + themes/rouge.yaml | 52 +++++++++++ themes/roxo-theme.yaml | 2 + themes/royal.yaml | 2 + themes/royalty-theme.yaml | 50 +++++++++++ themes/rozen.yaml | 2 + themes/rs-dark.yaml | 2 + themes/rsikified-dark-purple.yaml | 2 + themes/rubecula.yaml | 2 + themes/rubi-theme.yaml | 2 + themes/ruby-nights-garnet-midnight.yaml | 2 + themes/ruby-nights-garnet.yaml | 2 + themes/ruby-nights-ruby-midnight.yaml | 2 + themes/ruby-nights-ruby.yaml | 2 + themes/ruby-sea.yaml | 2 + ...udydev-theme-edited-tokyo-night-storm.yaml | 2 + themes/rufendev-green-purple.yaml | 50 +++++++++++ themes/rui-cobalt.yaml | 2 + themes/rui-sapphire.yaml | 2 + themes/rumba-dark.yaml | 52 +++++++++++ themes/runic-minimal.yaml | 2 + themes/running-wires.yaml | 52 +++++++++++ themes/ruru-marijuana.yaml | 2 + themes/ruru-moon.yaml | 2 + themes/rust-brown.yaml | 2 + themes/rustacean.yaml | 2 + themes/ryb.yaml | 2 + themes/rypjaws.yaml | 2 + themes/s-kill.yaml | 2 + themes/s-o-paulo-night.yaml | 2 + themes/sabbir-theme-3.yaml | 52 +++++++++++ themes/sacred.yaml | 49 ++++++++++ themes/sadhu.yaml | 52 +++++++++++ themes/safari-midnight.yaml | 2 + themes/safe-dark-theme.yaml | 52 +++++++++++ themes/safira.yaml | 2 + themes/saga-nordic-v1-2.yaml | 2 + themes/saga-oceania-v1-2.yaml | 2 + themes/sage-of-light-color-theme.yaml | 2 + themes/sage-professional.yaml | 3 + themes/sage-siren-theme.yaml | 2 + themes/sage.yaml | 50 +++++++++++ themes/sailor-at-sea.yaml | 2 + themes/sakai-theme-jupiter.yaml | 2 + themes/sakai-theme-moon.yaml | 2 + themes/sakai-theme-saturn.yaml | 2 + themes/sakura-blossom-midnight.yaml | 2 + themes/sakura-blossom-theme.yaml | 2 + themes/sakura-dreams-dark.yaml | 2 + themes/sakura-dreams.yaml | 2 + themes/sakura-theme.yaml | 2 + themes/sakura-v2-by-leroiadib.yaml | 2 + themes/sakura.yaml | 86 +++++++++--------- themes/sakya-dorje.yaml | 2 + themes/samacaca.yaml | 2 + themes/samgido-theme-dark.yaml | 2 + themes/samito-nest-graphql-theme.yaml | 2 + themes/samito-nest-theme.yaml | 2 + themes/samito-next-theme.yaml | 52 +++++++++++ themes/samurai.yaml | 2 + themes/samyak-bumb.yaml | 2 + themes/sanam-dark-pro.yaml | 2 + themes/sandcastle.yaml | 2 + themes/sanded.yaml | 2 + themes/sandstorm.yaml | 2 + themes/sanemi-shinazugawa.yaml | 2 + themes/sanrio.yaml | 2 + themes/sapporo.yaml | 3 + themes/saransk-night.yaml | 2 + themes/saraswati-cool-light-theme.yaml | 3 + themes/sarcastic-white.yaml | 2 + themes/sargam.yaml | 2 + themes/satoru-gojo-blue.yaml | 2 + themes/satoru-gojo-white.yaml | 2 + themes/satoshi-nakamoto-theme.yaml | 2 + themes/satsoomahhh.yaml | 3 + themes/satu.yaml | 2 + themes/saturated-dark-terminal.yaml | 2 + themes/saturn-moonlight.yaml | 2 + themes/sauna-theme.yaml | 2 + themes/saunf.yaml | 2 + themes/sauve.yaml | 2 + themes/savannah-dawn.yaml | 2 + themes/savannah-sunset.yaml | 2 + themes/save-my-eyes.yaml | 2 + themes/savetemin.yaml | 2 + themes/sazardev.yaml | 2 + themes/scarlet-witch-dark.yaml | 52 +++++++++++ themes/scarlet-witch-light.yaml | 52 +++++++++++ themes/scarlet.yaml | 2 + themes/sceanic-dark-gray.yaml | 2 + themes/sceanic-gray.yaml | 2 + themes/sceanic.yaml | 2 + themes/schoero-dark.yaml | 3 + themes/schooltheme.yaml | 12 +-- themes/schwifty-atom-one-dark.yaml | 2 + themes/schwifty-one-dark.yaml | 52 +++++++++++ themes/schwifty.yaml | 2 + themes/scooby-dooby-dark.yaml | 2 + themes/scorch-contrast.yaml | 2 + themes/scorch-light.yaml | 2 + themes/scorch.yaml | 2 + themes/scorpion-theme.yaml | 2 + themes/scuba.yaml | 2 + themes/sea-glass.yaml | 2 + themes/sea-urchin.yaml | 2 + themes/seabrook-dark-italic.yaml | 2 + themes/seabrook-light-italic.yaml | 2 + themes/seaci-base.yaml | 52 +++++++++++ themes/seaci-dark.yaml | 52 +++++++++++ themes/seafarer.yaml | 3 + themes/seafoam.yaml | 3 + themes/seagull.yaml | 2 + themes/sebostien-theme.yaml | 50 +++++++++++ themes/secret-spring.yaml | 3 + themes/section-9-hacker.yaml | 52 +++++++++++ themes/section-9-major.yaml | 52 +++++++++++ themes/section-9-ranger.yaml | 52 +++++++++++ themes/section-9.yaml | 52 +++++++++++ themes/secunda.yaml | 2 + themes/secuoyas-code.yaml | 2 + themes/sedona.yaml | 2 + themes/seed7-tokyo-night-dark.yaml | 2 + themes/seekode-light.yaml | 2 + themes/seilacolor-2.yaml | 52 +++++++++++ themes/seilacolor.yaml | 52 +++++++++++ themes/selene-selenized-dark.yaml | 2 + themes/selene-selenized-light.yaml | 2 + themes/selenitic-color-theme.yaml | 2 + themes/sema.yaml | 2 + themes/semantic-noctis-lux.yaml | 2 + themes/semi-dark-theme-in-yellow.yaml | 2 + themes/senkorange.yaml | 2 + themes/senna-dark-black-theme.yaml | 2 + themes/seoul-dancheong.yaml | 2 + themes/seoul-morning.yaml | 2 + themes/seoul-night.yaml | 2 + themes/september-dark-theme.yaml | 2 + themes/sequoia-monochrome.yaml | 2 + themes/sequoia-moonlight.yaml | 2 + themes/sequoia-retro.yaml | 2 + themes/seral-dark-github-stripe.yaml | 2 + themes/seral-light-github-stripe.yaml | 2 + themes/serein-dark-soft.yaml | 52 +++++++++++ themes/serein-dark.yaml | 52 +++++++++++ themes/serein-light-soft.yaml | 52 +++++++++++ themes/serein-light.yaml | 52 +++++++++++ themes/serendipity-midnight-electric.yaml | 2 + themes/serendipity-midnight-v1.yaml | 2 + themes/serendipity-midnight.yaml | 2 + themes/serendipity-morning-v1.yaml | 2 + themes/serendipity-morning.yaml | 2 + themes/serendipity-sunset-v1.yaml | 2 + themes/serendipity-sunset.yaml | 2 + themes/serene-dawn.yaml | 52 +++++++++++ themes/serene.yaml | 2 + themes/serenity-light.yaml | 50 +++++++++++ themes/serenity-moon.yaml | 50 +++++++++++ themes/serenity-noir.yaml | 50 +++++++++++ themes/service-contrast.yaml | 2 + themes/service-light.yaml | 2 + themes/service.yaml | 2 + themes/seti-classic-vscode.yaml | 2 + themes/seti.yaml | 2 + themes/sewayaki-dark.yaml | 2 + themes/shaan-s.yaml | 2 + themes/shaant-shakti-mystic-roast.yaml | 2 + themes/shaant-shakti-sand-storm.yaml | 2 + themes/shaant-shakti-soul-drift.yaml | 2 + themes/shaant-shakti-spfx-sanctuary.yaml | 2 + themes/shaant-shakti.yaml | 2 + themes/shadcn-blue-light.yaml | 3 + themes/shadcn-green-dark.yaml | 2 + themes/shadcn-green-light.yaml | 2 + themes/shadcn-neutral-dark.yaml | 2 + themes/shadcn-neutral-light.yaml | 2 + themes/shadcn-orange-dark.yaml | 2 + themes/shadcn-orange-light.yaml | 2 + themes/shadcn-red-dark.yaml | 2 + themes/shadcn-red-light.yaml | 2 + themes/shadcn-rose-dark.yaml | 2 + themes/shadcn-rose-light.yaml | 2 + themes/shadcn-violet-dark.yaml | 2 + themes/shadcn-violet-light.yaml | 2 + themes/shadcn-vivid.yaml | 2 + themes/shadcn-yellow-dark.yaml | 2 + themes/shadcn-yellow-light.yaml | 2 + themes/shaddy-lighta.yaml | 2 + themes/shaddy.yaml | 2 + themes/shade-theme.yaml | 3 + themes/shades-of-blue.yaml | 2 + themes/shades-of-cyan-theme.yaml | 2 + themes/shades-of-gravy.yaml | 2 + themes/shades-of-life-light.yaml | 2 + themes/shades-of-life.yaml | 2 + .../shades-of-midnight-blue-dark-theme.yaml | 2 + themes/shades-of-violet.yaml | 2 + themes/shades.yaml | 2 + themes/shadowborn.yaml | 2 + themes/shadowscape.yaml | 3 + themes/shadowspectrum.yaml | 2 + themes/shale.yaml | 52 +++++++++++ themes/shamrock.yaml | 2 + themes/sharkdark-theme.yaml | 2 + themes/sharpblue.yaml | 2 + themes/shaughnessy-nanite-theme.yaml | 52 +++++++++++ themes/sheme.yaml | 2 + themes/shibainu-dark.yaml | 2 + themes/shibuya.yaml | 2 + themes/shifting-sands.yaml | 2 + themes/shiina.yaml | 2 + themes/shinjuku.yaml | 52 +++++++++++ themes/shinkai.yaml | 2 + themes/shinobu-kocho.yaml | 52 +++++++++++ themes/shion.yaml | 52 +++++++++++ themes/ship-dark.yaml | 3 + themes/ship-light.yaml | 3 + themes/shiro-sakura-light.yaml | 52 +++++++++++ themes/shirotelin.yaml | 2 + themes/shiv-vscode-theme.yaml | 3 + themes/shivam.yaml | 3 + themes/shoxwave.yaml | 3 + themes/shrek-contrast.yaml | 2 + themes/shrek-light.yaml | 2 + themes/shrek.yaml | 2 + themes/shuri-midnight.yaml | 2 + themes/shuvitheme.yaml | 52 +++++++++++ themes/shydl3.yaml | 52 +++++++++++ themes/siberia.yaml | 2 + themes/side-punk-sql.yaml | 2 + themes/sidev-monokai-dim-ts.yaml | 2 + themes/siemor.yaml | 2 + themes/siksnis-dev.yaml | 52 +++++++++++ themes/silent-code.yaml | 12 +-- themes/silicon-dark.yaml | 52 +++++++++++ themes/silk-petal.yaml | 52 +++++++++++ themes/silo.yaml | 52 +++++++++++ themes/silot-dark-classic.yaml | 2 + themes/silvermist.yaml | 2 + themes/silverwolf.yaml | 3 + themes/simble.yaml | 52 +++++++++++ themes/simple-3000.yaml | 2 + themes/simple-calm-dark.yaml | 2 + themes/simple-muted-dark.yaml | 52 +++++++++++ themes/simple-muted-light.yaml | 52 +++++++++++ themes/simple-red-dark.yaml | 2 + themes/simpledark.yaml | 2 + themes/sinergyext.yaml | 2 + themes/sirius-astral.yaml | 2 + themes/sirius-glow.yaml | 2 + themes/sirius-nebula.yaml | 2 + themes/sirius-pulsar.yaml | 2 + themes/sirius-vesper.yaml | 2 + themes/sirius-vibe.yaml | 2 + themes/sirius-vortex.yaml | 2 + themes/sirius-zenith.yaml | 2 + themes/sissi-ga.yaml | 52 +++++++++++ themes/sith.yaml | 2 + themes/sj-pinkish-theme.yaml | 2 + themes/sj-theme.yaml | 2 + themes/sk5s-vsgt.yaml | 2 + themes/skeswa-s-noctis-azureus.yaml | 52 +++++++++++ themes/skeswa-s-noctis-bordo.yaml | 52 +++++++++++ themes/skeswa-s-noctis-hibernus.yaml | 52 +++++++++++ themes/skeswa-s-noctis-lilac.yaml | 52 +++++++++++ themes/skeswa-s-noctis-lux.yaml | 52 +++++++++++ themes/skeswa-s-noctis-minimus.yaml | 52 +++++++++++ themes/skeswa-s-noctis-obscuro.yaml | 52 +++++++++++ themes/skeswa-s-noctis-sereno.yaml | 52 +++++++++++ themes/skeswa-s-noctis-uva.yaml | 52 +++++++++++ themes/skeswa-s-noctis-viola.yaml | 52 +++++++++++ themes/skeswa-s-noctis.yaml | 52 +++++++++++ themes/sky-at-night.yaml | 2 + themes/sky-blue-tranquility-focus.yaml | 2 + themes/sky-miami-vice.yaml | 2 + themes/sky-neon.yaml | 2 + themes/sky-real-abyss.yaml | 52 +++++++++++ themes/skye-wind-light.yaml | 3 + themes/skye-wind.yaml | 3 + themes/skyline.yaml | 2 + themes/slack-theme-aubergine-dark.yaml | 2 + themes/slack-theme-aubergine-new.yaml | 2 + themes/slack-theme-dark.yaml | 2 + themes/slack-theme-hoth.yaml | 52 +++++++++++ themes/slack-theme.yaml | 2 + themes/slate-blue.yaml | 52 +++++++++++ themes/slate-contrast.yaml | 2 + themes/slate-light.yaml | 52 +++++++++++ themes/slate-neon.yaml | 52 +++++++++++ themes/slate.yaml | 2 + themes/sleepy-nights.yaml | 52 +++++++++++ themes/sleepy-owl-default-beta.yaml | 2 + themes/sleepy-owl-greenwich-beta.yaml | 2 + themes/sleepy-owl-oak-beta.yaml | 2 + themes/slime-color-theme.yaml | 2 + themes/slime-contrast.yaml | 2 + themes/slime-light.yaml | 2 + themes/slime-solid-color-theme.yaml | 2 + themes/slime.yaml | 2 + themes/slimy-high-contrast.yaml | 2 + themes/slimy-light.yaml | 2 + themes/slimy.yaml | 2 + themes/slinkwave.yaml | 2 + themes/sloth-highlander-theme-3.yaml | 50 +++++++++++ themes/smalltheme-carbon-oled.yaml | 2 + themes/smettboi-light.yaml | 2 + themes/smit-amber-monochrome.yaml | 52 +++++++++++ themes/smit-arctic-cyan.yaml | 52 +++++++++++ themes/smit-black-slate.yaml | 52 +++++++++++ themes/smit-coffee.yaml | 52 +++++++++++ themes/smit-crimson-red.yaml | 52 +++++++++++ themes/smit-dark.yaml | 52 +++++++++++ themes/smit-deep-ocean.yaml | 52 +++++++++++ themes/smit-forest-green.yaml | 52 +++++++++++ themes/smit-gruvbox-inspired.yaml | 52 +++++++++++ themes/smit-high-contrast.yaml | 52 +++++++++++ themes/smit-low-light.yaml | 52 +++++++++++ themes/smit-matrix.yaml | 52 +++++++++++ themes/smit-midnight-purple.yaml | 52 +++++++++++ themes/smit-minimal-dark.yaml | 52 +++++++++++ themes/smit-monokai-inspired.yaml | 52 +++++++++++ themes/smit-neon-cyberpunk.yaml | 52 +++++++++++ themes/smit-soft-dark.yaml | 52 +++++++++++ themes/smit-sunset-orange.yaml | 52 +++++++++++ themes/smit-synthwave.yaml | 52 +++++++++++ themes/smithy-iron.yaml | 52 +++++++++++ themes/smoldering-ember.yaml | 52 +++++++++++ themes/smooth-burn-dark-hard.yaml | 2 + themes/smooth-burn-dark-medium.yaml | 2 + themes/smooth-burn-dark.yaml | 2 + themes/smooth-burn-light-hard.yaml | 2 + themes/smooth-dark.yaml | 50 +++++++++++ themes/smooth-light.yaml | 50 +++++++++++ themes/smoothity-dark.yaml | 3 + themes/smooththeme.yaml | 52 +++++++++++ themes/snakedye-chocolate.yaml | 2 + themes/snap-light.yaml | 50 +++++++++++ themes/snappier.yaml | 52 +++++++++++ themes/snappy-contrast.yaml | 2 + themes/snappy-light.yaml | 2 + themes/snazzy-light.yaml | 2 + themes/snazzy-operator-color-theme-dark.yaml | 52 +++++++++++ .../snazzy-operator-color-theme-italics.yaml | 2 + themes/snazzy-operator-color-theme.yaml | 52 +++++++++++ themes/snazzy-operator-natural.yaml | 2 + themes/snazzy-solaris.yaml | 2 + themes/snazzy-vs-theme.yaml | 2 + themes/snazzy.yaml | 52 +++++++++++ themes/snazzyfied.yaml | 52 +++++++++++ themes/snow-theme.yaml | 2 + themes/snowflake-dark-theme.yaml | 2 + themes/snowflake-darker-theme.yaml | 2 + themes/snoword-dark-soft.yaml | 2 + themes/snoword-dark.yaml | 2 + themes/snoword-light-soft.yaml | 2 + themes/snoword-light.yaml | 2 + themes/snowpiercer.yaml | 2 + themes/snowy-mint.yaml | 3 + themes/sober-afternoon.yaml | 2 + themes/sober-deepnight.yaml | 2 + themes/sober-midnight.yaml | 2 + themes/sober.yaml | 2 + themes/sobrio-light.yaml | 2 + themes/sobrio.yaml | 2 + themes/soct-color-theme.yaml | 2 + themes/soda.yaml | 2 + themes/soft-colors.yaml | 2 + themes/soft-dark.yaml | 52 +++++++++++ themes/soft-era.yaml | 52 +++++++++++ themes/soft-kawaii-theme-1-color-theme.yaml | 2 + themes/soft-light.yaml | 52 +++++++++++ themes/soft-material.yaml | 2 + themes/soft-midnight.yaml | 2 + themes/soft-mood-theme.yaml | 2 + themes/soft-sight.yaml | 2 + themes/soft-sunset-dark.yaml | 2 + themes/soft-yellow-light.yaml | 2 + themes/softie-theme.yaml | 52 +++++++++++ themes/soho-color-theme.yaml | 2 + themes/soil-theme.yaml | 2 + themes/solar-flare.yaml | 2 + themes/solarflare-contrast.yaml | 2 + themes/solarflare-light.yaml | 2 + themes/solarflare.yaml | 2 + themes/solaris.yaml | 2 + themes/solarized-complete-dark.yaml | 2 + themes/solarized-complete-light.yaml | 2 + themes/solarized-custom-dark.yaml | 2 + themes/solarized-custom-light.yaml | 2 + themes/solarized-dark-theme.yaml | 2 + themes/solarized-dark.yaml | 2 + themes/solarized-deep.yaml | 2 + themes/solarized-light-functional.yaml | 2 + themes/solarized-light-n.yaml | 2 + themes/solarized-light.yaml | 2 + themes/solarized-lilac.yaml | 2 + themes/solarized-neue-bright.yaml | 2 + themes/solarized-neue.yaml | 2 + themes/solarized-next.yaml | 52 +++++++++++ themes/solarized-pro.yaml | 2 + themes/solarized-right.yaml | 22 ++--- themes/solarized-simon.yaml | 52 +++++++++++ themes/solarized-ss-light.yaml | 2 + themes/solarized-yuki.yaml | 2 + themes/solarized.yaml | 2 + themes/solarus.yaml | 2 + themes/solaryss.yaml | 2 + themes/solitude-dark.yaml | 2 + themes/solitude-soft.yaml | 2 + themes/solo-leveling.yaml | 2 + themes/solstice-estival.yaml | 2 + themes/solstice-heat.yaml | 52 +++++++++++ themes/solstice-hibernal.yaml | 2 + themes/somber.yaml | 2 + themes/something-different.yaml | 52 +++++++++++ themes/something-theme.yaml | 2 + themes/somewhere-on-a-beach.yaml | 2 + themes/sonic-pulse.yaml | 52 +++++++++++ themes/sonokai-andromeda.yaml | 12 +-- themes/sonokai-atlantis.yaml | 12 +-- themes/sonokai-espresso.yaml | 12 +-- themes/sonokai-maia.yaml | 12 +-- themes/sonokai-shusia.yaml | 12 +-- themes/sonokai.yaml | 12 +-- themes/sonora-deep-signal-faded.yaml | 2 + themes/sonora-deep-signal-vibrant.yaml | 2 + themes/sonora-deep-signal.yaml | 2 + themes/sonora-tides.yaml | 2 + themes/soothing-dark.yaml | 2 + themes/soothing-light.yaml | 2 + themes/soothing.yaml | 2 + themes/sorbet-swirl.yaml | 52 +++++++++++ themes/sorcerer.yaml | 2 + themes/soudev-mega-dark.yaml | 2 + themes/soudev-purple-andromeda.yaml | 2 + themes/soudev-semi-dark-andromeda.yaml | 2 + themes/souei.yaml | 52 +++++++++++ themes/soul-theme.yaml | 2 + themes/soup-contrast.yaml | 2 + themes/soup-light.yaml | 2 + themes/soup.yaml | 2 + themes/sourc.yaml | 2 + themes/sourcerer.yaml | 2 + themes/sourlick-contrast.yaml | 2 + themes/sourlick-light.yaml | 2 + themes/sourlick.yaml | 2 + themes/south-australia-dark.yaml | 2 + themes/south-australia-light.yaml | 2 + themes/space-dark.yaml | 2 + themes/space-invader-black.yaml | 2 + themes/space-invader-darker.yaml | 2 + themes/space-invader-light.yaml | 2 + themes/space-invader.yaml | 2 + themes/space-light.yaml | 2 + themes/space-purple-dark.yaml | 2 + themes/space-purple-light.yaml | 2 + themes/space-theme.yaml | 2 + themes/space.yaml | 2 + themes/spacecamp.yaml | 2 + themes/spacedust.yaml | 2 + themes/spacegray.yaml | 2 + themes/spacegrey.yaml | 2 + themes/spacemacs-dark.yaml | 2 + themes/spacemacs-light.yaml | 2 + themes/spaceoceankitrefined.yaml | 2 + themes/spacial.yaml | 2 + themes/spades.yaml | 2 + themes/sparkle-theme.yaml | 2 + themes/speakeasy.yaml | 2 + themes/spearmint-contrast.yaml | 2 + themes/spearmint-light.yaml | 2 + themes/spearmint.yaml | 2 + themes/spiderverse-2099.yaml | 2 + themes/spiderverse-miles.yaml | 2 + themes/spiderverse-spider-man.yaml | 2 + themes/spin-theme.yaml | 2 + themes/spiral.yaml | 3 + themes/spirited-night.yaml | 2 + themes/spitfire-contrast.yaml | 2 + themes/spitfire-light.yaml | 2 + themes/spitfire.yaml | 2 + themes/splash-theme.yaml | 3 + themes/splus.yaml | 2 + themes/spotly-dark.yaml | 2 + themes/spotly-light.yaml | 2 + themes/spring-breeze-theme.yaml | 52 +++++++++++ themes/spring.yaml | 12 +-- themes/sprinkles-color-theme.yaml | 2 + themes/spurlys-theme.yaml | 2 + themes/spyder-theme-light.yaml | 2 + .../{simple-theme.yaml => squash-theme.yaml} | 20 +++-- themes/squeak.yaml | 2 + themes/srcery-gagbo.yaml | 2 + themes/srcery.yaml | 2 + themes/st-borg.yaml | 52 +++++++++++ themes/st-lcars.yaml | 52 +++++++++++ themes/stackmeister.yaml | 2 + themes/stained-glass-dark.yaml | 2 + themes/stannum.yaml | 2 + themes/star-night-luna.yaml | 2 + themes/star-night.yaml | 2 + themes/star-wars-dark-side-theme-global.yaml | 2 + themes/starboy-theme.yaml | 2 + themes/starburst-dark.yaml | 2 + themes/starfield.yaml | 2 + themes/stark-contrast.yaml | 2 + themes/stark-dark.yaml | 2 + themes/stark-light.yaml | 2 + themes/stark.yaml | 2 + themes/starlight-daybreak.yaml | 2 + themes/starlight-light.yaml | 2 + themes/starlight-midnight.yaml | 2 + themes/starlight-obsidian.yaml | 2 + themes/starlight-soft-glow.yaml | 2 + themes/starlight.yaml | 2 + themes/starry-night.yaml | 2 + themes/starry-pillar.yaml | 2 + themes/startlite.yaml | 2 + themes/startrail.yaml | 2 + themes/stasis-contrast.yaml | 2 + themes/stasis-light.yaml | 2 + themes/stasis.yaml | 2 + themes/stealth-contrast.yaml | 2 + themes/stealth-light.yaml | 2 + themes/stealth.yaml | 2 + themes/steel-blue-dark.yaml | 2 + themes/steel-phantom.yaml | 2 + themes/steelbore.yaml | 52 +++++++++++ themes/steffula.yaml | 2 + themes/stella-high-contrast.yaml | 2 + themes/stella-theme.yaml | 2 + themes/stella.yaml | 2 + themes/stellar-void.yaml | 2 + themes/stellar.yaml | 2 + themes/stereo-theme.yaml | 2 + themes/stilla.yaml | 52 +++++++++++ themes/sto-classic.yaml | 2 + themes/sto-green-dark.yaml | 2 + themes/sto-green.yaml | 2 + themes/stonerose.yaml | 2 + themes/storm-contrast.yaml | 2 + themes/storm-light.yaml | 2 + themes/storm-tracker.yaml | 2 + themes/storm-uvadark-fork.yaml | 2 + themes/storm.yaml | 2 + themes/stormpetrel.yaml | 2 + themes/stranger-theme-dimension-x.yaml | 52 +++++++++++ themes/stranger-theme-hawkins.yaml | 52 +++++++++++ themes/stranger-theme-starcourt.yaml | 52 +++++++++++ themes/stranger-theme-the-lab.yaml | 52 +++++++++++ themes/stranger-theme-tigers.yaml | 52 +++++++++++ themes/stranger-theme-upside-down.yaml | 52 +++++++++++ themes/studio-apartment.yaml | 52 +++++++++++ themes/studio-bio-bio-dark-theme.yaml | 2 + themes/styledark18.yaml | 52 +++++++++++ themes/styledark28.yaml | 52 +++++++++++ themes/stylelight33.yaml | 52 +++++++++++ themes/stylelight35.yaml | 2 + themes/stypt-aether.yaml | 49 ++++++++++ themes/subessence.yaml | 2 + themes/sublette.yaml | 3 + themes/sublime-breakers.yaml | 3 + themes/sublime-mariana-semantic.yaml | 52 +++++++++++ themes/sublime-mariana-test.yaml | 2 + themes/sublime-monokai-color-theme.yaml | 52 +++++++++++ themes/sublime-text-3.yaml | 2 + themes/sublime-text-4-theme.yaml | 2 + themes/sublime-vscode-theme.yaml | 2 + themes/subliminal-color-theme.yaml | 2 + themes/subliminal-nightfall.yaml | 52 +++++++++++ themes/subliminalr.yaml | 52 +++++++++++ themes/subscribe-color.yaml | 2 + themes/substrata.yaml | 2 + themes/sucrose.yaml | 52 +++++++++++ themes/sufocode.yaml | 2 + themes/sugar-dark-focus.yaml | 2 + themes/sugar-dark-github.yaml | 2 + themes/sugar-dark-midnight.yaml | 2 + themes/sugar-dark-one.yaml | 2 + themes/sugar-dark-vitesse.yaml | 2 + themes/sugar-dark-vs.yaml | 2 + themes/sugar-dark.yaml | 2 + themes/sugar-fleet.yaml | 2 + themes/sugar-light-vitesse.yaml | 2 + themes/sugar-light-vs.yaml | 2 + themes/sugar-light.yaml | 2 + themes/sukadia-dev-dark.yaml | 2 + themes/sulfuric-dark.yaml | 2 + themes/sumiiro.yaml | 2 + themes/summer-night-gray-high-contrast.yaml | 2 + themes/summer-night-high-contrast.yaml | 2 + themes/summer-night.yaml | 2 + themes/summer-nights-lullaby.yaml | 2 + themes/summer-nights.yaml | 2 + themes/summer-palenight.yaml | 3 + themes/summer.yaml | 90 ++++++++++--------- themes/summercamp.yaml | 2 + themes/summerrelax.yaml | 2 + themes/sunbather.yaml | 2 + ...code-dark-soothing-blue-light-reduced.yaml | 2 + themes/sunset-beach-dark.yaml | 2 + themes/sunset-beach-light.yaml | 2 + themes/sunset-boulevard.yaml | 2 + themes/sunset-noir.yaml | 2 + themes/sunset-serenade.yaml | 2 + themes/sunset-theme.yaml | 2 + themes/sunsplash-monodark.yaml | 3 + themes/supa.yaml | 50 +++++++++++ themes/super-contrast.yaml | 2 + themes/super-dark-cyberpunk-green.yaml | 2 + themes/super-dark-cyberpunk-grey.yaml | 2 + themes/super-dark-cyberpunk-purple.yaml | 2 + themes/super-light.yaml | 2 + themes/super.yaml | 2 + themes/superbright.yaml | 2 + themes/superdark.yaml | 52 +++++++++++ themes/supergreatmonokai.yaml | 52 +++++++++++ themes/superman-theme.yaml | 2 + themes/supernova.yaml | 2 + themes/surreal.yaml | 2 + themes/susuwatari.yaml | 2 + themes/svelte-5-theme.yaml | 2 + themes/sveltesse-black.yaml | 2 + themes/sveltesse-dark-soft.yaml | 2 + themes/sveltesse-dark.yaml | 2 + themes/sveltesse-light-soft.yaml | 2 + themes/sveltesse-light.yaml | 2 + themes/sw-tatooine.yaml | 2 + themes/sw61.yaml | 2 + themes/swablu.yaml | 2 + themes/swaminarayan.yaml | 2 + themes/swamp-color-theme.yaml | 2 + themes/sweet-lemon.yaml | 2 + themes/sweet-pascal.yaml | 2 + themes/sweet-vscode.yaml | 2 + themes/sweetdracula-monokai.yaml | 2 + themes/swnb-palenight-theme.yaml | 2 + themes/syl-black.yaml | 2 + themes/syl-chocolate.yaml | 2 + themes/syl-forest.yaml | 2 + themes/syl-ice.yaml | 2 + themes/syl-plum.yaml | 2 + themes/syl-shadow.yaml | 2 + themes/syntax-palette.yaml | 2 + themes/synthesis.yaml | 2 + themes/synthwave-2077.yaml | 2 + themes/synthwave-84-csav-edition.yaml | 2 + themes/synthwave-alpha.yaml | 2 + themes/synthwave-material-ansi-16.yaml | 2 + themes/synthwave-neon.yaml | 52 +++++++++++ themes/synthwave.yaml | 2 + themes/synthy.yaml | 2 + themes/syrinx.yaml | 2 + themes/sys1.yaml | 2 + themes/sysop.yaml | 2 + themes/t-on-no-c-digo.yaml | 52 +++++++++++ themes/t-theme.yaml | 2 + themes/t3nsor-solo-leveling.yaml | 2 + themes/taco-syntax.yaml | 2 + themes/tactical-ops.yaml | 52 +++++++++++ themes/tahigh.yaml | 2 + themes/taiga.yaml | 2 + themes/tail-dark-theme.yaml | 2 + themes/tailwind-breeze.yaml | 2 + themes/tailwind-dark.yaml | 2 + themes/tailwind-darkest.yaml | 2 + themes/tailwind-moon-blue.yaml | 2 + themes/tailwind-moon-grey.yaml | 2 + themes/tailwind-moon.yaml | 2 + themes/tailwind.yaml | 2 + themes/taipei-night.yaml | 2 + themes/takenawa.yaml | 2 + themes/tame-contrast.yaml | 2 + themes/tame-light.yaml | 2 + themes/tame.yaml | 2 + themes/tamil-nadu-temple-land.yaml | 2 + themes/tan-jade.yaml | 2 + themes/tangere-dark.yaml | 2 + themes/tangere-light.yaml | 2 + themes/tango-plus.yaml | 2 + themes/tango.yaml | 2 + themes/tanuki.yaml | 2 + themes/tao-theme.yaml | 2 + themes/tara-theme-carbon-high-contrast.yaml | 2 + themes/tara-theme-carbon.yaml | 2 + themes/tara-theme-deepforest.yaml | 2 + themes/tara-theme-ocean.yaml | 2 + themes/tara-theme-palenight.yaml | 2 + themes/tara-theme-teal.yaml | 2 + themes/taramandal-aurora.yaml | 2 + themes/taramandal-dark.yaml | 2 + themes/taramandal-true-cream.yaml | 2 + themes/tarbooz-dark.yaml | 52 +++++++++++ themes/tarbooz-light.yaml | 52 +++++++++++ themes/tarbooz-underripe.yaml | 52 +++++++++++ themes/tasmania-dark.yaml | 2 + themes/tasmania-light.yaml | 2 + themes/taurus.yaml | 2 + themes/tbs-theme.yaml | 2 + themes/tea-leaves.yaml | 2 + themes/teags.yaml | 2 + themes/teal-abyss.yaml | 50 +++++++++++ themes/teal-crow-light.yaml | 2 + themes/teal.yaml | 2 + themes/tealicious.yaml | 2 + themes/team-pastel-colors-theme.yaml | 2 + ...-of-the-kingdom-minimal-dark-midnight.yaml | 50 +++++++++++ themes/tears-of-the-kingdom-minimal-dark.yaml | 50 +++++++++++ themes/techrazor-pro.yaml | 2 + themes/techset.yaml | 50 +++++++++++ themes/techstudent10.yaml | 3 + themes/techswahili-color-theme.yaml | 2 + themes/techswahili-deep.yaml | 2 + themes/techswahili-modern-dark.yaml | 2 + themes/tecoma-theme.yaml | 2 + themes/telescope-fork.yaml | 2 + themes/telescope.yaml | 88 +++++++++--------- themes/tema-dark-nero.yaml | 2 + themes/tema-dos-cria.yaml | 2 + themes/teneblattinus.yaml | 2 + themes/tenebris.yaml | 2 + themes/terafox.yaml | 2 + themes/term.yaml | 2 + themes/terminal-fork.yaml | 52 +++++++++++ themes/terminal.yaml | 2 + themes/terracecat.yaml | 2 + themes/terrarium-minimal-dark.yaml | 2 + themes/terrarium-minimal-light.yaml | 2 + themes/tesselate.yaml | 2 + themes/tesseract-dark.yaml | 2 + themes/test.yaml | 2 + themes/tetra-contrast.yaml | 2 + themes/tetra-light.yaml | 2 + themes/tetra.yaml | 2 + themes/textmate-rstheme.yaml | 2 + themes/th-me-dark-aout-contraste-lev.yaml | 52 +++++++++++ themes/th-me-dark-avril-vert-printemps.yaml | 2 + themes/th-me-dark-janvier-bleu-fonc.yaml | 2 + themes/th-me-dark-juillet-contraste-lev.yaml | 2 + themes/th-me-dark-juin-high-contrast.yaml | 2 + themes/th-me-high-contrast-janvier-r-vis.yaml | 2 + themes/th-me-sombre-d-automne.yaml | 2 + themes/thanatos.yaml | 2 + themes/thatdatapurple.yaml | 2 + themes/the-best-vscode-theme-ever-light.yaml | 52 +++++++++++ themes/the-dark-stove.yaml | 2 + themes/the-digital-life.yaml | 2 + themes/the-druid.yaml | 3 + themes/the-empire.yaml | 2 + themes/the-end-of-development.yaml | 2 + themes/the-flying-dutchman-high-contrast.yaml | 2 + themes/the-flying-dutchman-soft.yaml | 2 + themes/the-flying-dutchman.yaml | 2 + themes/the-gentleman.yaml | 2 + themes/the-occult.yaml | 3 + themes/the-one-theme.yaml | 2 + themes/the-orchid-dark.yaml | 2 + themes/the-orchid-light.yaml | 2 + themes/the-orchid-soft.yaml | 2 + themes/the-theme.yaml | 2 + themes/theaisphere-dark.yaml | 2 + themes/theaisphere-light.yaml | 2 + themes/thebear-dark.yaml | 52 +++++++++++ themes/thecodedoctor.yaml | 52 +++++++++++ themes/thedarkerone.yaml | 2 + themes/themarro-dark-contrast.yaml | 2 + themes/themarro-david-remix.yaml | 2 + themes/themarro.yaml | 2 + themes/theme-bear.yaml | 2 + themes/theme-dark.yaml | 2 + themes/theme-for-codes-dark.yaml | 2 + themes/theme-for-codes-light.yaml | 2 + themes/theme-joey.yaml | 2 + themes/theme-mk-black.yaml | 52 +++++++++++ themes/theme-mk-rebuilt.yaml | 2 + themes/theme-nickel.yaml | 2 + themes/theme-one.yaml | 2 + themes/theme-stick-green-dark.yaml | 2 + themes/theme-y-random.yaml | 2 + themes/theme.yaml | 2 + themes/theme1.yaml | 52 +++++++++++ themes/themedarker.yaml | 2 + themes/themeframek.yaml | 2 + themes/themegreen.yaml | 2 + themes/themello.yaml | 50 +++++++++++ themes/thememix.yaml | 52 +++++++++++ themes/themename.yaml | 2 + themes/themeo.yaml | 2 + themes/themepurple.yaml | 2 + themes/themer-dark.yaml | 2 + themes/themer-light.yaml | 2 + themes/themin-mint.yaml | 2 + themes/thepurple.yaml | 52 +++++++++++ themes/theta.yaml | 2 + themes/thinkstorm.yaml | 2 + themes/thore-blue.yaml | 2 + themes/thorn.yaml | 2 + themes/thoughtworks-style-theme.yaml | 2 + themes/thra.yaml | 2 + themes/threedark.yaml | 2 + themes/thunder-focus.yaml | 2 + themes/thunder-remains-unseen.yaml | 2 + themes/thxdude-theme.yaml | 2 + themes/thyme21g.yaml | 2 + themes/thynaptic-dark-base.yaml | 2 + themes/thynaptic-dim-base.yaml | 2 + themes/thynaptic-pro.yaml | 2 + themes/thynaptic-sand-base.yaml | 2 + themes/thynaptic-sand-dark.yaml | 2 + themes/tickle-contrast.yaml | 2 + themes/tickle-light.yaml | 2 + themes/tickle-refresh.yaml | 2 + themes/tickle.yaml | 2 + themes/tidelight-contrast-light.yaml | 2 + themes/tidelight-contrast.yaml | 2 + themes/tidelight-dawn.yaml | 2 + themes/tidelight-daybreak.yaml | 2 + themes/tidelight-deep.yaml | 2 + themes/tidelight-dusk.yaml | 2 + themes/tidelight-fog.yaml | 2 + themes/tidelight-high-noon.yaml | 2 + themes/tidelight-midnight.yaml | 2 + themes/tidelight-shore.yaml | 2 + themes/tiktok.yaml | 2 + themes/tim-s-experiments-dark.yaml | 2 + themes/timir.yaml | 2 + themes/timu-macos-dark-theme.yaml | 2 + themes/timu-macos-light-theme.yaml | 2 + themes/timu-spacegrey-theme.yaml | 2 + themes/tinacious-design-syntax.yaml | 2 + themes/tiniri-dark.yaml | 2 + themes/tiniri-light.yaml | 2 + themes/tiny-light.yaml | 2 + themes/titillating-midnight.yaml | 2 + themes/titillating-sunset.yaml | 2 + themes/tlapalli-00-obsidian.yaml | 2 + themes/tlapalli-01-gold.yaml | 2 + themes/tlapalli-02-turquoise.yaml | 2 + themes/tlapalli-03-quartz.yaml | 2 + themes/tlapalli-04-lapis-lazuli.yaml | 2 + themes/tlapalli-05-amethyst.yaml | 2 + themes/tlapalli-06-jade.yaml | 2 + themes/tlapalli-07-fire-opal.yaml | 2 + themes/tlapalli-l-00-obsidian-light.yaml | 2 + themes/tlapalli-l-01-gold-light.yaml | 2 + themes/tlapalli-l-02-turquoise-light.yaml | 2 + themes/tlapalli-l-03-quartz-light.yaml | 2 + themes/tlapalli-l-04-lapis-lazuli-light.yaml | 2 + themes/tlapalli-l-05-amethyst-light.yaml | 2 + themes/tlapalli-l-06-jade-light.yaml | 2 + themes/tlapalli-l-07-fire-opal-light.yaml | 2 + themes/tm2rd3.yaml | 2 + themes/tmnt-dark-theme.yaml | 52 +++++++++++ themes/tnove-dark-theme.yaml | 2 + themes/tobirama-water-style.yaml | 2 + themes/todepond-theme.yaml | 52 +++++++++++ themes/tokito-inspired.yaml | 2 + themes/tokv7.yaml | 2 + themes/tokyo-dark.yaml | 52 +++++++++++ themes/tokyo-dive.yaml | 2 + themes/tokyo-ghosts-dark.yaml | 2 + themes/tokyo-ghosts-light.yaml | 2 + themes/tokyo-gogh-alt.yaml | 2 + themes/tokyo-gogh.yaml | 2 + themes/tokyo-light.yaml | 2 + themes/tokyo-lights.yaml | 2 + themes/tokyo-midnight.yaml | 2 + themes/tokyo-modern.yaml | 2 + themes/tokyo-night-blackout.yaml | 2 + themes/tokyo-night-bright.yaml | 2 + themes/tokyo-night-dark.yaml | 2 + themes/tokyo-night-equalizer.yaml | 2 + themes/tokyo-night-light.yaml | 2 + themes/tokyo-night-nv.yaml | 2 + themes/tokyo-night-pure.yaml | 2 + themes/tokyo-night-theme.yaml | 52 +++++++++++ themes/tokyo-night-void.yaml | 2 + themes/tokyo-panda.yaml | 2 + themes/tokyo.yaml | 2 + themes/tokyogo.yaml | 52 +++++++++++ themes/tokyonight-moon-lazy.yaml | 2 + themes/tokyonight.yaml | 2 + themes/tol.yaml | 2 + themes/tomorrow-night-vs.yaml | 3 + themes/tomorrowmyst.yaml | 2 + themes/tonic-contrast.yaml | 2 + themes/tonic-light.yaml | 2 + themes/tonic.yaml | 2 + themes/toodark.yaml | 2 + themes/topic-the-leader.yaml | 2 + themes/tora.yaml | 2 + themes/torque.yaml | 2 + themes/torte-vim.yaml | 2 + themes/total-black-theme.yaml | 3 + themes/total-lunar-eclipse.yaml | 2 + themes/totow-s-th-me.yaml | 2 + themes/toxic-color-theme.yaml | 2 + themes/toxic-waste.yaml | 2 + themes/toy-chest.yaml | 2 + themes/tranquillity-theme.yaml | 2 + themes/trans-pride-light-naomi.yaml | 2 + themes/transylvania.yaml | 2 + themes/tree-hugger.yaml | 52 +++++++++++ themes/triad-dragon.yaml | 2 + themes/tribal-contrast.yaml | 2 + themes/tribal-light.yaml | 2 + themes/tribal.yaml | 2 + themes/triumph-v2.yaml | 2 + themes/triumph.yaml | 2 + themes/tron-ares.yaml | 86 +++++++++--------- themes/tron-contrast.yaml | 2 + themes/tron-light.yaml | 2 + themes/tron.yaml | 2 + themes/trsm-night-eyes.yaml | 2 + themes/trueamber.yaml | 2 + themes/tsoding-daily-2024.yaml | 52 +++++++++++ themes/tsuki.yaml | 2 + themes/tsukiroku-dark.yaml | 2 + themes/tsukuyomi-light.yaml | 2 + themes/tsukuyomi.yaml | 52 +++++++++++ themes/tudoroxo.yaml | 2 + themes/tulin-design.yaml | 52 +++++++++++ themes/tundra-dusk.yaml | 12 +-- themes/turbo-c-3-0-borland-style.yaml | 2 + themes/turbo.yaml | 2 + themes/turnip-contrast.yaml | 2 + themes/turnip-light.yaml | 2 + themes/turnip.yaml | 2 + themes/turnstyle-darker.yaml | 52 +++++++++++ themes/turnstyle.yaml | 52 +++++++++++ themes/tw40-gigi.yaml | 2 + themes/tweed-contrast.yaml | 2 + themes/tweed-light.yaml | 2 + themes/tweed.yaml | 2 + themes/twilight-bloom.yaml | 52 +++++++++++ themes/twilight-pro.yaml | 2 + themes/twilight.yaml | 2 + themes/twilightsparkle.yaml | 2 + themes/twin-black.yaml | 2 + themes/twin-blue.yaml | 2 + themes/two-firewatch.yaml | 2 + themes/two-monokai-darker.yaml | 52 +++++++++++ themes/two-monokai.yaml | 52 +++++++++++ themes/twodark.yaml | 2 + themes/tycho-crater.yaml | 2 + themes/tyh-theme-dark.yaml | 2 + themes/typedark-cyan.yaml | 52 +++++++++++ themes/typedark-magenta.yaml | 2 + themes/tyrell-corporation.yaml | 2 + themes/tyrian-night.yaml | 2 + themes/tyrone-neon-red.yaml | 52 +++++++++++ themes/udt-eclipse-light.yaml | 52 +++++++++++ themes/ui-color.yaml | 3 + themes/ui.yaml | 2 + themes/ukiyo-e-aged-manuscript.yaml | 2 + themes/ukiyo-e-manuscript.yaml | 2 + themes/ukiyo-tone-asahi-morning-sun.yaml | 2 + .../ukiyo-tone-kachi-iro-victory-color.yaml | 2 + .../ukiyo-tone-karesansui-dry-landscape.yaml | 2 + themes/ukiyo-tone-koke-dera-moss-temple.yaml | 2 + themes/ukiyo-tone-kuro-sumi-black-ink.yaml | 2 + themes/ukiyo-tone-tasogare-twilight.yaml | 2 + themes/ukiyo.yaml | 2 + themes/ultima-gwz.yaml | 2 + themes/ultima.yaml | 2 + themes/ultra-instinct-mastered-light.yaml | 2 + themes/ultra-instinct-mastered.yaml | 2 + themes/ultra-instinct-sign.yaml | 2 + themes/ultrafocus-fork-fork.yaml | 52 +++++++++++ themes/umbra.yaml | 2 + themes/umi.yaml | 2 + themes/ump-45-leva.yaml | 2 + themes/unbluelievable.yaml | 2 + themes/undefined.yaml | 2 + themes/under-theme.yaml | 3 + themes/underdark-fork.yaml | 2 + themes/understated.yaml | 52 +++++++++++ themes/unicorn-dark.yaml | 2 + themes/unicorn.yaml | 2 + themes/unicornio-dark.yaml | 2 + themes/unieye.yaml | 2 + themes/unity-theme.yaml | 2 + ...niverse-italic.yaml => universe-gray.yaml} | 48 +++++----- themes/universe-purple.yaml | 52 +++++++++++ themes/universe.yaml | 86 +++++++++--------- themes/unlight-v-2.yaml | 2 + themes/untitled-fork-fork.yaml | 2 + themes/untitled-fork.yaml | 2 + themes/untitled.yaml | 2 + themes/unyodusk.yaml | 2 + themes/updog-light.yaml | 2 + themes/updog.yaml | 2 + themes/upward-dark-legacy.yaml | 52 +++++++++++ themes/upward-dark.yaml | 52 +++++++++++ themes/urara.yaml | 2 + themes/urban-couple.yaml | 2 + themes/urban-forge.yaml | 2 + themes/urban-glow.yaml | 2 + themes/urbanjungle.yaml | 52 +++++++++++ themes/ursa.yaml | 52 +++++++++++ themes/user160.yaml | 2 + themes/userscape-contrast.yaml | 2 + themes/userscape-light.yaml | 2 + themes/userscape.yaml | 2 + themes/utheme.yaml | 2 + themes/utopia.yaml | 2 + themes/uvadark-rahul-fork.yaml | 2 + themes/v-id-contrast.yaml | 2 + themes/v-id-soft.yaml | 2 + themes/v01d-theme-alternative.yaml | 2 + themes/v01d-theme.yaml | 2 + themes/v7.yaml | 2 + themes/vaatu.yaml | 2 + themes/vagalume-dev.yaml | 2 + themes/vagruvboxtheme-color-theme.yaml | 2 + themes/vague-neovim-theme-extended-light.yaml | 2 + themes/vague-neovim-theme-extended.yaml | 2 + themes/vague.yaml | 52 +++++++++++ themes/valary.yaml | 2 + themes/valkthor-dark-theme.yaml | 2 + themes/valley.yaml | 52 +++++++++++ themes/valorant-theme-darker.yaml | 2 + themes/valorant-theme-remasterd.yaml | 2 + themes/vampurr.yaml | 2 + themes/van-gogh-theme.yaml | 2 + themes/vanguard-strike.yaml | 52 +++++++++++ themes/vanilla-jade.yaml | 2 + themes/vanilla.yaml | 2 + themes/vapor.yaml | 84 ++++++++--------- themes/vaporizer-alice-dark.yaml | 2 + themes/vaporizer-alice-light.yaml | 2 + themes/vaporizer-ava-light.yaml | 2 + themes/vaporizer-batman-dark-2022.yaml | 2 + themes/vaporizer-batman-dark-night.yaml | 2 + themes/vaporizer-cloudy-light.yaml | 2 + themes/vaporizer-cobalt-dark.yaml | 2 + themes/vaporizer-crescent-dark.yaml | 2 + themes/vaporizer-dark-cherry.yaml | 2 + themes/vaporizer-dark-coffee.yaml | 2 + themes/vaporizer-dark-cool-1.yaml | 2 + themes/vaporizer-dark-cool-2.yaml | 2 + themes/vaporizer-dark-cop.yaml | 2 + themes/vaporizer-dark-cyber-neon-1.yaml | 2 + themes/vaporizer-dark-cyber-neon-2.yaml | 2 + themes/vaporizer-dark-cyber-neon-3.yaml | 2 + themes/vaporizer-dark-ivy.yaml | 2 + themes/vaporizer-dark-joker.yaml | 2 + themes/vaporizer-dark-matrix-2.yaml | 52 +++++++++++ themes/vaporizer-dark-monterey.yaml | 2 + themes/vaporizer-dark-painting.yaml | 2 + themes/vaporizer-dark-pansy.yaml | 2 + themes/vaporizer-dark-red.yaml | 52 +++++++++++ themes/vaporizer-dark-stabilo.yaml | 2 + themes/vaporizer-dark-turquoise.yaml | 2 + themes/vaporizer-epic-red-dark.yaml | 2 + themes/vaporizer-fonc-dark.yaml | 2 + themes/vaporizer-frozen-dark.yaml | 2 + themes/vaporizer-golgi-dark.yaml | 2 + themes/vaporizer-half-moon-dark.yaml | 2 + themes/vaporizer-lemonade-light.yaml | 2 + .../vaporizer-lemonade-solarized-light.yaml | 2 + themes/vaporizer-milk-light.yaml | 2 + themes/vaporizer-mini-blue-light.yaml | 2 + themes/vaporizer-minimalism-light.yaml | 2 + themes/vaporizer-modern-light.yaml | 2 + themes/vaporizer-moon-light-dark.yaml | 2 + themes/vaporizer-phosphoric-blue.yaml | 2 + themes/vaporizer-purple-gray-dark.yaml | 2 + themes/vaporizer-soft-light.yaml | 2 + themes/vaporizer-splash-dark.yaml | 2 + themes/vaporizer-turquoise-light.yaml | 2 + themes/vaporwave.yaml | 3 + themes/vaquita.yaml | 2 + themes/varlet-dark.yaml | 2 + themes/vase-with-twelve-sunflowers.yaml | 2 + themes/vasses-tricolor-theme.yaml | 2 + themes/vd.yaml | 52 +++++++++++ themes/vegas-night-details-theme.yaml | 2 + themes/vegetable-contrast.yaml | 2 + themes/vegetable-light.yaml | 2 + themes/vegetation.yaml | 2 + themes/veil.yaml | 3 + themes/veiled.yaml | 2 + themes/veist.yaml | 2 + themes/vela-spectrum-colorblind-light.yaml | 2 + themes/vela-spectrum-dark-colorblind.yaml | 2 + themes/vela-spectrum-dark-dimmed.yaml | 2 + themes/vela-spectrum-dark-tritanopia.yaml | 2 + themes/vela-spectrum-dark.yaml | 2 + themes/vela-spectrum-dimmed-light.yaml | 2 + themes/vela-spectrum-high-contrast-light.yaml | 2 + themes/vela-spectrum-high-contrast.yaml | 2 + themes/vela-spectrum-light-tritanopia.yaml | 2 + themes/vela-spectrum-light.yaml | 2 + themes/velourous.yaml | 2 + themes/velvet-chrome.yaml | 2 + themes/velvet-thunder.yaml | 2 + themes/venice-beach-sky.yaml | 2 + themes/venom-theme.yaml | 2 + themes/vercel.yaml | 2 + themes/verdant.yaml | 50 +++++++++++ themes/verdantium.yaml | 2 + themes/verner.yaml | 52 +++++++++++ themes/version-1-0-5.yaml | 2 + themes/very-blue.yaml | 2 + themes/very-fast-theme.yaml | 2 + themes/vesper-golden.yaml | 2 + themes/vesper-purple-dark.yaml | 2 + themes/vesper-purple-light.yaml | 2 + themes/vesper.yaml | 2 + themes/vhs80.yaml | 2 + themes/vi-dark.yaml | 2 + themes/vibe-dark-legacy.yaml | 2 + themes/vibecolors-corporate-light.yaml | 2 + themes/vibecolors-dark.yaml | 2 + themes/vibecolors-dynamic-dark.yaml | 2 + themes/vibecolors-dynamic-light.yaml | 2 + themes/vibecolors-light.yaml | 2 + themes/vibecolors-minimal-light.yaml | 2 + themes/vibecolors-neon-dark.yaml | 2 + themes/vibecolors-ocean-dark.yaml | 2 + themes/vibecolors-pastel-light.yaml | 2 + themes/vibecolors-retro-dark.yaml | 2 + themes/vibecolors-soft-dark.yaml | 2 + themes/vibecolors-sunset-light.yaml | 2 + themes/vibes.yaml | 2 + themes/vibra.yaml | 2 + themes/vibrant-abyss-vscode.yaml | 2 + themes/vibrant-dark.yaml | 2 + themes/vibrant-max.yaml | 2 + themes/vice-city-noir.yaml | 2 + themes/vicious.yaml | 2 + themes/victoria-dark.yaml | 2 + themes/victoria-light.yaml | 2 + themes/video-contrast.yaml | 2 + themes/vigikai.yaml | 2 + themes/viii-iii-mmv.yaml | 2 + themes/vikkie-dark.yaml | 2 + themes/vikkie-light.yaml | 2 + themes/villain-dark.yaml | 2 + themes/villain-light.yaml | 2 + themes/vim-dar11sdasdasd.yaml | 2 + themes/vim-dark-medium.yaml | 2 + themes/vim-dark-soft.yaml | 2 + themes/vim-light-1.yaml | 2 + themes/vim-light-2.yaml | 2 + themes/vim-light-3.yaml | 52 +++++++++++ themes/vim-light-soft.yaml | 2 + themes/vim-night.yaml | 2 + themes/vin-theme.yaml | 2 + themes/vintage-heritage.yaml | 52 +++++++++++ themes/vintage-rust-theme.yaml | 2 + themes/vintage-serene.yaml | 2 + themes/vintage.yaml | 2 + themes/vinyl.yaml | 2 + themes/violaceous-contrast.yaml | 2 + themes/violaceous-light.yaml | 2 + themes/violaceous.yaml | 2 + themes/violet-dream.yaml | 2 + themes/violet-night.yaml | 2 + themes/violet-nova.yaml | 2 + themes/viora.yaml | 2 + themes/viper-theme.yaml | 2 + themes/vishwakarma-sunset-glow.yaml | 2 + themes/vision-colorblind.yaml | 2 + themes/vision-light-colorblind.yaml | 2 + themes/visual-studio-code-dark-theme.yaml | 2 + themes/visual-studio-dark-2019.yaml | 52 +++++++++++ themes/visual-studio-dark-2026.yaml | 52 +++++++++++ themes/visual-studio-github-light-plus.yaml | 2 + themes/visualos.yaml | 2 + themes/vitepress-theme-vite-dark.yaml | 2 + themes/vitesse-dark-custom.yaml | 2 + themes/vitesse-dark-soft.yaml | 2 + themes/vitesse-dragon-dark.yaml | 2 + themes/vitesse-dragon.yaml | 2 + themes/vitesse-green-theme.yaml | 2 + themes/vitesse-webstorm-dark.yaml | 2 + themes/vitrioleuse.yaml | 2 + themes/vitruvian.yaml | 52 +++++++++++ themes/vivid-blue.yaml | 2 + themes/vividnord.yaml | 2 + themes/vivido-theme.yaml | 2 + themes/vixn-dark.yaml | 50 +++++++++++ themes/vkt-theme.yaml | 2 + themes/void-iris.yaml | 2 + themes/void-nebula.yaml | 52 +++++++++++ themes/void.yaml | 2 + themes/voidbloom-quazar.yaml | 2 + themes/voidbloom-singularity.yaml | 2 + themes/voidwalker.yaml | 2 + themes/volatile-contrast.yaml | 2 + themes/volatile-light.yaml | 2 + themes/volatile.yaml | 2 + themes/volcanofr.yaml | 2 + themes/volskaya.yaml | 2 + themes/volt-dark.yaml | 2 + themes/voodoo.yaml | 2 + themes/voraes.yaml | 2 + themes/vortex.yaml | 3 + themes/voyager.yaml | 2 + themes/vs-code-deep-f-lux-fork-fork.yaml | 2 + themes/vs-code-deep-f-lux.yaml | 2 + themes/vs-code-next-js.yaml | 2 + themes/vs-fleet.yaml | 2 + themes/vs-ghoul.yaml | 2 + themes/vsblue.yaml | 2 + themes/vsc-blue-theme.yaml | 2 + .../vsc-cyberpunk2077-theme-color-theme.yaml | 50 +++++++++++ themes/vsc-military-style.yaml | 2 + themes/vsc-minimalist-theme-flat.yaml | 52 +++++++++++ themes/vsc-minimalist-theme-oak.yaml | 2 + themes/vsc-minimalist-theme-obsidian.yaml | 2 + themes/vsc-minimalist-theme-odp.yaml | 2 + themes/vsc-solarized-light.yaml | 2 + themes/vscode-epic-color-theme.yaml | 50 +++++++++++ themes/vscode-forest-pro-chartreuse.yaml | 52 +++++++++++ themes/vscode-forest-pro-dark-green.yaml | 52 +++++++++++ ...pro-enterprise-accessibility-enhanced.yaml | 52 +++++++++++ .../vscode-forest-pro-enterprise-light.yaml | 52 +++++++++++ themes/vscode-forest-pro-enterprise.yaml | 52 +++++++++++ themes/vscode-forest-pro-hunter-green.yaml | 52 +++++++++++ themes/vscode-forest-pro-jade.yaml | 52 +++++++++++ themes/vscode-forest-pro-kelly-green.yaml | 52 +++++++++++ themes/vscode-forest-pro-mint-green.yaml | 52 +++++++++++ themes/vscode-forest-pro-moss-green.yaml | 52 +++++++++++ themes/vscode-forest-pro-olive.yaml | 52 +++++++++++ themes/vscode-forest-pro-pale-green.yaml | 52 +++++++++++ themes/vscode-forest-pro-pine-green.yaml | 52 +++++++++++ themes/vscode-forest-pro-sea-green.yaml | 52 +++++++++++ themes/vscode-forest-pro-shamrock.yaml | 52 +++++++++++ themes/vscode-forest-pro-spring-green.yaml | 52 +++++++++++ themes/vscode-forest-pro-tea-green.yaml | 52 +++++++++++ themes/vscode-material-ui.yaml | 2 + themes/vscode-nofrils-dark.yaml | 2 + themes/vscode-nofrils-github-light.yaml | 2 + themes/vscode-nofrils-gruvbox-dark.yaml | 2 + themes/vscode-nofrils-gruvbox-light.yaml | 2 + themes/vscode-nofrils-light.yaml | 2 + themes/vscode-nofrils-one-dark.yaml | 2 + themes/vscode-nofrils-one-light.yaml | 2 + themes/vscode-nofrils-sepia.yaml | 2 + themes/vscode-nofrils-tokyo-night.yaml | 2 + themes/vscode-pink-and-puple-theme.yaml | 2 + themes/vscode-sublime-ish.yaml | 3 + themes/vscode-theme.yaml | 2 + themes/vsmuted-color-theme.yaml | 2 + themes/vstheme-no-italics.yaml | 2 + themes/vstoolkit-theme-dark.yaml | 2 + themes/vuejs-theme.yaml | 2 + themes/vxcode-blush.yaml | 2 + themes/vxcode-cream.yaml | 2 + themes/vxcode-dark.yaml | 2 + themes/vxcode-darker.yaml | 2 + themes/vxcode-lavender.yaml | 2 + themes/vxcode-lime.yaml | 2 + themes/vxcode-oled.yaml | 2 + themes/w40-theme.yaml | 2 + themes/wallbash.yaml | 2 + themes/walloco-light-theme.yaml | 2 + themes/walls-fill.yaml | 2 + themes/wandering-mercenary.yaml | 2 + themes/wangyj-black.yaml | 52 +++++++++++ themes/wangyj-bright-black.yaml | 2 + themes/wangyj-film-black.yaml | 2 + themes/wangyj-film-light.yaml | 2 + themes/warlock-contrast.yaml | 2 + themes/warlock-light.yaml | 2 + themes/warlock.yaml | 2 + themes/warm-black.yaml | 2 + themes/warm-burnout-dark.yaml | 2 + themes/warm-burnout-light.yaml | 2 + themes/warm-orange-enthusiasm-creativity.yaml | 2 + themes/warm-orange-theme.yaml | 2 + themes/warmkai-pro.yaml | 2 + themes/waste-contrast.yaml | 2 + themes/waste-light.yaml | 2 + themes/waste.yaml | 2 + themes/water-grape.yaml | 2 + themes/waterbyte-classic-2022-light.yaml | 2 + themes/watercourse.yaml | 50 +++++++++++ themes/watermelon.yaml | 2 + themes/wave-delight-vs-dark-cool.yaml | 52 +++++++++++ themes/wavefire.yaml | 2 + themes/wawdog-dark.yaml | 50 +++++++++++ themes/wdark-theme.yaml | 2 + themes/webc-dark.yaml | 2 + themes/webstorm-darcula-dark-theme.yaml | 2 + themes/webstorm-intellij-darcula-theme.yaml | 2 + themes/webstorm-monokai.yaml | 2 + themes/weiting-candycolor.yaml | 2 + themes/weitingcoder.yaml | 50 +++++++++++ themes/west-bengal-cultural-hub.yaml | 2 + themes/westmont-dark.yaml | 52 +++++++++++ themes/what-the-hell.yaml | 2 + themes/wheel-color-theme.yaml | 2 + themes/wheel-light-color-theme.yaml | 2 + themes/whiskey-coder-dark.yaml | 2 + themes/whiskey-coder-light.yaml | 2 + themes/white-shade-color.yaml | 2 + themes/white-winter.yaml | 2 + themes/whitespace.yaml | 2 + themes/wick.yaml | 2 + themes/wicked.yaml | 88 +++++++++--------- themes/wiity-green-eye-friendly.yaml | 2 + themes/wiity-green.yaml | 2 + themes/wild-flower.yaml | 2 + themes/wildcat.yaml | 3 + themes/wildtype.yaml | 2 + themes/wildwest.yaml | 2 + themes/will-o-wisp-theme.yaml | 2 + themes/willasm-emerald-sky.yaml | 2 + themes/willi-style-dracula-flavour.yaml | 2 + themes/willow.yaml | 2 + themes/win-xp-luna.yaml | 2 + themes/win10.yaml | 2 + themes/winclassic.yaml | 2 + themes/wind-dark-slate.yaml | 2 + themes/wind-dark-zinc.yaml | 2 + themes/wind-light-neutral.yaml | 52 +++++++++++ themes/wind.yaml | 2 + themes/windows-95-theme.yaml | 2 + themes/windows-nt.yaml | 2 + themes/windows-xp-dark-luna.yaml | 2 + themes/windu.yaml | 2 + themes/windwaker.yaml | 2 + themes/wine-garden.yaml | 2 + themes/winter-pearl.yaml | 2 + themes/winter.yaml | 2 + themes/winteriscoding-gift.yaml | 2 + themes/winteriscoding.yaml | 2 + themes/winternacht-dark.yaml | 52 +++++++++++ themes/winternacht-light.yaml | 52 +++++++++++ themes/wired-lighter.yaml | 2 + themes/wired.yaml | 2 + themes/wise-owl-material-high-contrast.yaml | 2 + themes/wise-owl-material-light.yaml | 2 + themes/wise-owl-material.yaml | 2 + themes/wisteria.yaml | 2 + themes/witch-elaina.yaml | 2 + themes/witcher.yaml | 2 + themes/witchy-dark.yaml | 2 + themes/wl-acid-wash.yaml | 2 + themes/wl-amber-monitor.yaml | 2 + themes/wl-aurora-glow.yaml | 52 +++++++++++ themes/wl-chrome-dreams.yaml | 2 + themes/wl-chrome-noir.yaml | 52 +++++++++++ themes/wl-cyber-rain.yaml | 52 +++++++++++ themes/wl-data-stream.yaml | 2 + themes/wl-dial-tone.yaml | 52 +++++++++++ themes/wl-electric-dreams.yaml | 2 + themes/wl-fusion-core.yaml | 2 + themes/wl-graffiti-wall.yaml | 2 + themes/wl-hyper-drive.yaml | 2 + themes/wl-ink-splash.yaml | 2 + themes/wl-jade-temple.yaml | 2 + themes/wl-laser-grid.yaml | 2 + themes/wl-lava-lamp.yaml | 2 + themes/wl-mainframe-blue.yaml | 2 + themes/wl-misty-mountain.yaml | 2 + themes/wl-moon-phase.yaml | 2 + themes/wl-neon-cascade.yaml | 2 + themes/wl-neon-sign.yaml | 2 + themes/wl-neon-tokyo.yaml | 2 + themes/wl-nova-burst.yaml | 2 + themes/wl-pixel-punch.yaml | 2 + themes/wl-plasma-storm.yaml | 2 + themes/wl-punch-tape.yaml | 3 + themes/wl-retro-arcade.yaml | 2 + themes/wl-retro-future.yaml | 2 + themes/wl-silk-road.yaml | 2 + themes/wl-terminal-green.yaml | 2 + themes/wl-turbo-boost.yaml | 52 +++++++++++ themes/wl-vacuum-glow.yaml | 2 + themes/wl-velvet-night.yaml | 2 + themes/wl-volt-surge.yaml | 2 + themes/wl-zen-twilight.yaml | 2 + themes/wolftheme.yaml | 52 +++++++++++ themes/wolves-league-dark.yaml | 2 + themes/woods.yaml | 52 +++++++++++ themes/woodsmoke.yaml | 2 + themes/wookie.yaml | 2 + themes/word-color-theme.yaml | 2 + themes/word-dark-theme.yaml | 18 ++-- themes/wordsmith-dark.yaml | 2 + themes/wordsmith-light.yaml | 2 + themes/workplace-chatter.yaml | 52 +++++++++++ themes/wow.yaml | 50 +++++++++++ themes/wrkspace-theme.yaml | 3 + themes/wye-black.yaml | 2 + themes/wye-dark-soft.yaml | 2 + themes/wye-dark.yaml | 2 + themes/wye-light-soft.yaml | 2 + themes/wye-light.yaml | 2 + themes/x.yaml | 52 +++++++++++ themes/xaeon-dark.yaml | 2 + themes/xava-color-theme.yaml | 2 + themes/xceodark.yaml | 2 + themes/xcode-dark.yaml | 2 + themes/xecoy-dark.yaml | 2 + themes/xecoy-light.yaml | 2 + themes/xenon.yaml | 52 +++++++++++ themes/xerobi-dark-theme.yaml | 52 +++++++++++ themes/xerobi-light-theme.yaml | 52 +++++++++++ themes/xiali-vintage-rose-dark.yaml | 2 + themes/xiali-vintage-rose-light.yaml | 2 + themes/xikreti.yaml | 52 +++++++++++ themes/xis-one.yaml | 2 + themes/xlumielvscodetheme.yaml | 2 + themes/xotocode-dark.yaml | 3 + themes/xotopio.yaml | 2 + themes/xpyjs-black.yaml | 2 + themes/xresources-bordered.yaml | 86 +++++++++--------- themes/xresources-normal-dark.yaml | 50 +++++++++++ themes/xresources.yaml | 2 + themes/xrodev.yaml | 2 + themes/xs.yaml | 2 + themes/xstheme.yaml | 2 + themes/xthemis-cyan.yaml | 3 + themes/xtree-gold.yaml | 2 + themes/xviewdark.yaml | 2 + themes/xxhtml.yaml | 2 + themes/xzadudu179.yaml | 2 + themes/y3m.yaml | 2 + themes/yaast.yaml | 2 + themes/yagnesh.yaml | 2 + themes/yalpha-dark-eris.yaml | 3 + themes/yami-blue.yaml | 2 + themes/yanbaru-shadow.yaml | 2 + themes/yanus.yaml | 52 +++++++++++ themes/yarra-valley.yaml | 2 + themes/yaru-dark.yaml | 2 + themes/yaru.yaml | 2 + themes/yaruna-aurora.yaml | 2 + themes/yaruna-forest.yaml | 2 + themes/yaruna-midnight.yaml | 2 + themes/yaruna-nova.yaml | 2 + themes/yd-dark.yaml | 2 + themes/yd-light.yaml | 2 + themes/ydrgzm-light-theme.yaml | 2 + themes/yelan.yaml | 2 + themes/yell.yaml | 52 +++++++++++ themes/yellow-beryl.yaml | 2 + themes/yellow-green-blue-theme.yaml | 2 + themes/yellow-ish.yaml | 3 + themes/yellow-purple-theme.yaml | 2 + themes/yellowed.yaml | 2 + themes/yerba.yaml | 2 + themes/yet-another-solarized-theme-dark.yaml | 2 + themes/yet-another-solarized-theme-light.yaml | 2 + themes/yinloonga-c.yaml | 52 +++++++++++ themes/yitzchok-contrast.yaml | 2 + themes/yitzchok-light.yaml | 2 + themes/yitzchok.yaml | 2 + themes/ylw-dark-theme.yaml | 2 + themes/yoda-mystical-force.yaml | 2 + themes/yoda.yaml | 2 + themes/yohualli-eclipse.yaml | 2 + themes/yohualli-lunaris.yaml | 2 + themes/yohualli-nebulune.yaml | 2 + themes/yohualli-penumbra.yaml | 2 + themes/yonc.yaml | 2 + themes/yondog-dark.yaml | 3 + themes/yotei.yaml | 2 + themes/yoth-theme-dark.yaml | 2 + themes/yoyo-theme-green.yaml | 3 + themes/yoyo-theme.yaml | 3 + themes/ystheme.yaml | 2 + themes/ytheme-dark.yaml | 2 + themes/yttrium-dark.yaml | 50 +++++++++++ themes/yttrium-light.yaml | 50 +++++++++++ themes/yue-theme.yaml | 2 + themes/yukinord.yaml | 2 + themes/yule-contrast.yaml | 2 + themes/yule-light.yaml | 2 + themes/yule.yaml | 2 + themes/yulon.yaml | 2 + themes/yum.yaml | 2 + themes/yurei-dark-theme.yaml | 2 + themes/yuru-black.yaml | 2 + themes/yuru.yaml | 2 + themes/yuuyake-dark.yaml | 52 +++++++++++ themes/yuyuko-vscode-ocean.yaml | 2 + themes/yuyuko-vscode.yaml | 2 + themes/z-darktheme.yaml | 2 + themes/z3r0.yaml | 2 + themes/zach-s-blue-theme.yaml | 2 + themes/zacharywilliamson.yaml | 52 +++++++++++ themes/zacks-contrast.yaml | 2 + themes/zacks-light.yaml | 2 + themes/zacks.yaml | 2 + themes/zaeri-dark.yaml | 52 +++++++++++ themes/zaher-color-theme.yaml | 2 + themes/zan.yaml | 2 + themes/zandromeda.yaml | 52 +++++++++++ themes/zappts.yaml | 52 +++++++++++ themes/zbra-dark.yaml | 2 + themes/zeal.yaml | 2 + themes/zednostheme-v1.yaml | 2 + themes/zelda-dark.yaml | 5 +- themes/zelzea.yaml | 3 + themes/zemarcolortheme.yaml | 2 + themes/zemizer-grey.yaml | 2 + themes/zen-dark.yaml | 2 + themes/zen-mono.yaml | 2 + themes/zen-sakura-cherry-blossom.yaml | 2 + themes/zen-theme.yaml | 3 + themes/zen.yaml | 5 +- themes/zenbones-dark-stark.yaml | 2 + themes/zenbones-dark-warm.yaml | 2 + themes/zenbones-dark.yaml | 22 ++--- themes/zenbones-duckbones-dark-stark.yaml | 2 + themes/zenbones-duckbones-dark-warm.yaml | 2 + themes/zenbones-duckbones-dark.yaml | 2 + themes/zenbones-forestbones-dark-stark.yaml | 2 + themes/zenbones-forestbones-dark-warm.yaml | 2 + themes/zenbones-forestbones-dark.yaml | 2 + themes/zenbones-forestbones-light-bright.yaml | 2 + themes/zenbones-forestbones-light-dim.yaml | 2 + themes/zenbones-forestbones-light.yaml | 2 + themes/zenbones-kanagawabones-dark-stark.yaml | 2 + themes/zenbones-kanagawabones-dark-warm.yaml | 2 + themes/zenbones-kanagawabones-dark.yaml | 2 + themes/zenbones-light-bright.yaml | 2 + themes/zenbones-light-dim.yaml | 2 + themes/zenbones-light.yaml | 30 ++++--- themes/zenbones-neobones-dark-stark.yaml | 2 + themes/zenbones-neobones-dark-warm.yaml | 2 + themes/zenbones-neobones-dark.yaml | 2 + themes/zenbones-neobones-light-bright.yaml | 2 + themes/zenbones-neobones-light-dim.yaml | 2 + themes/zenbones-neobones-light.yaml | 2 + themes/zenbones-nordbones-dark-stark.yaml | 2 + themes/zenbones-nordbones-dark-warm.yaml | 2 + themes/zenbones-nordbones-dark.yaml | 2 + themes/zenbones-rosebones-dark-stark.yaml | 2 + themes/zenbones-rosebones-dark-warm.yaml | 2 + themes/zenbones-rosebones-dark.yaml | 2 + themes/zenbones-rosebones-light-bright.yaml | 2 + themes/zenbones-rosebones-light-dim.yaml | 2 + themes/zenbones-rosebones-light.yaml | 2 + themes/zenbones-seoulbones-dark-stark.yaml | 2 + themes/zenbones-seoulbones-dark-warm.yaml | 2 + themes/zenbones-seoulbones-dark.yaml | 2 + themes/zenbones-seoulbones-light-bright.yaml | 2 + themes/zenbones-seoulbones-light-dim.yaml | 2 + themes/zenbones-seoulbones-light.yaml | 2 + themes/zenbones-tokyobones-dark-stark.yaml | 2 + themes/zenbones-tokyobones-dark-warm.yaml | 2 + themes/zenbones-tokyobones-dark.yaml | 2 + themes/zenbones-tokyobones-light-bright.yaml | 2 + themes/zenbones-tokyobones-light-dim.yaml | 2 + themes/zenbones-tokyobones-light.yaml | 2 + themes/zenbones-vimbones-light-bright.yaml | 2 + themes/zenbones-vimbones-light-dim.yaml | 2 + themes/zenbones-vimbones-light.yaml | 2 + themes/zenbones-zenburned-dark-stark.yaml | 2 + themes/zenbones-zenburned-dark-warm.yaml | 2 + themes/zenbones-zenburned-dark.yaml | 2 + themes/zenbones-zenwritten-dark-stark.yaml | 2 + themes/zenbones-zenwritten-dark-warm.yaml | 2 + themes/zenbones-zenwritten-dark.yaml | 2 + themes/zenbones-zenwritten-light-bright.yaml | 2 + themes/zenbones-zenwritten-light-dim.yaml | 2 + themes/zenbones-zenwritten-light.yaml | 2 + ...book-ux534ftc-white-gold-v1-full-dark.yaml | 3 + .../zenbook-ux534ftc-white-gold-v2-1-95.yaml | 3 + themes/zenburn.yaml | 2 + themes/zene-dark-theme.yaml | 2 + themes/zene-light-theme.yaml | 52 +++++++++++ themes/zeneth.yaml | 2 + themes/zenflow-noir.yaml | 2 + themes/zenith-aurora.yaml | 2 + themes/zenith-dawn.yaml | 2 + themes/zenith-dusk.yaml | 2 + themes/zenith-forest.yaml | 2 + themes/zenith-midnight.yaml | 2 + themes/zenith-neutral.yaml | 2 + themes/zenith-ocean.yaml | 2 + themes/zenith-ros.yaml | 2 + themes/zenith-zen.yaml | 2 + themes/zenith.yaml | 2 + themes/zenitria-amoled.yaml | 2 + themes/zenml.yaml | 3 + themes/zero-s-solarized.yaml | 3 + themes/zero-wip.yaml | 2 + themes/zeus-turquoise.yaml | 2 + themes/zeus-yelo.yaml | 2 + themes/zhongli.yaml | 2 + themes/zhxo-lt.yaml | 2 + themes/zhxo-red.yaml | 52 +++++++++++ themes/zhxo-st.yaml | 2 + themes/zhxo-yll.yaml | 2 + themes/zinc.yaml | 2 + themes/zokugun-obsidium.yaml | 2 + themes/zora-mirage-green.yaml | 52 +++++++++++ themes/zora-mirage.yaml | 52 +++++++++++ themes/zoradark.yaml | 52 +++++++++++ themes/zordon-colors.yaml | 3 + themes/zoren-breeze.yaml | 2 + themes/ztheme.yaml | 3 + themes/ztok.yaml | 2 + themes/zunda-dark.yaml | 3 + themes/zux-purple-minimal.yaml | 2 + themes/zwel.yaml | 2 + themes/zxxn.yaml | 2 + themes/zygomatic-blue.yaml | 2 + themes/zyrotec.yaml | 2 + themes/zzc-dark.yaml | 52 +++++++++++ themes/zzc-light.yaml | 52 +++++++++++ themes/zzhtheme-dark.yaml | 2 + themes/zzhtheme-light.yaml | 2 + 6786 files changed, 62846 insertions(+), 1494 deletions(-) create mode 100644 themes/10004ok-dark.yaml create mode 100644 themes/25-blue.yaml create mode 100644 themes/404-muted.yaml create mode 100644 themes/73nko-dark.yaml create mode 100644 themes/73nko-light.yaml create mode 100644 themes/8x8-fork.yaml create mode 100644 themes/a-green-cat.yaml create mode 100644 themes/a-j-light.yaml create mode 100644 themes/abys-zora-dark.yaml create mode 100644 themes/abysal-marble.yaml create mode 100644 themes/abysal-obsidian.yaml create mode 100644 themes/abyssal-anime.yaml create mode 100644 themes/abyssal-black.yaml create mode 100644 themes/abyssal-blue.yaml create mode 100644 themes/abyssal-catppuccin.yaml create mode 100644 themes/abyssal-dark.yaml create mode 100644 themes/abyssal-dracula.yaml create mode 100644 themes/abyssal-e-ink.yaml create mode 100644 themes/abyssal-everforest.yaml create mode 100644 themes/abyssal-gruvbox.yaml create mode 100644 themes/abyssal-hacker.yaml create mode 100644 themes/abyssal-latte.yaml create mode 100644 themes/abyssal-mirage.yaml create mode 100644 themes/abyssal-nord.yaml create mode 100644 themes/abyssal-tokyo-night.yaml create mode 100644 themes/access-color-theme.yaml create mode 100644 themes/ace-palenight.yaml create mode 100644 themes/acekaizen-code-theme.yaml create mode 100644 themes/acid-trip.yaml create mode 100644 themes/aconitum.yaml create mode 100644 themes/adventuresinparadise.yaml create mode 100644 themes/afro.yaml create mode 100644 themes/afterglow-fade.yaml create mode 100644 themes/aklesky-golden-river.yaml create mode 100644 themes/aklesky-mist-of-mint.yaml create mode 100644 themes/al-theme-official.yaml create mode 100644 themes/alice-s-theme.yaml create mode 100644 themes/aliceblue-theme.yaml rename themes/{alignment-darker-italic.yaml => alignment-darker.yaml} (94%) rename themes/{alignment-italic.yaml => alignment.yaml} (94%) create mode 100644 themes/alx-theme-toxic.yaml create mode 100644 themes/amazon-jungle.yaml create mode 100644 themes/amber-delight.yaml create mode 100644 themes/amber-red-light.yaml create mode 100644 themes/amber-red.yaml create mode 100644 themes/amethyst-kiss-dark-kiss-mode.yaml create mode 100644 themes/amethyst-kiss-light-kiss-mode.yaml create mode 100644 themes/amethyst-stone.yaml create mode 100644 themes/amminial.yaml create mode 100644 themes/andromeda-night.yaml create mode 100644 themes/another-acid-trip.yaml create mode 100644 themes/anquyx.yaml create mode 100644 themes/apex-carbon.yaml create mode 100644 themes/apex-ember.yaml create mode 100644 themes/apex-frost.yaml create mode 100644 themes/apex-neon.yaml create mode 100644 themes/apex-pastel.yaml create mode 100644 themes/apex-steel.yaml create mode 100644 themes/app-netlify-com.yaml create mode 100644 themes/aqua-glacier.yaml create mode 100644 themes/arencio-argos-dark.yaml create mode 100644 themes/argo.yaml create mode 100644 themes/aries-darker-high-contrast.yaml create mode 100644 themes/aries-darker.yaml create mode 100644 themes/aries-default.yaml create mode 100644 themes/aries-lighter-high-contrast.yaml create mode 100644 themes/aries-lighter.yaml create mode 100644 themes/aries-ocean.yaml create mode 100644 themes/aries-palenight.yaml create mode 100644 themes/aster-dark-theme.yaml create mode 100644 themes/astral.yaml create mode 100644 themes/atomax-dark-colorblind.yaml create mode 100644 themes/atomax-high-contrast-light.yaml create mode 100644 themes/atomwave.yaml create mode 100644 themes/august-arstotzka-darker.yaml create mode 100644 themes/august-arstotzka.yaml create mode 100644 themes/august-gruvbox.yaml create mode 100644 themes/august-kanagawa.yaml create mode 100644 themes/august-material-ocean.yaml create mode 100644 themes/autu-dark-theme.yaml create mode 100644 themes/aya-dark.yaml create mode 100644 themes/aya-light.yaml create mode 100644 themes/ayu-darkvenom-transparent-borderless.yaml create mode 100644 themes/ayu-one-dark-pro-dark-bordered.yaml create mode 100644 themes/ayu-one-dark-pro-mirage-bordered.yaml create mode 100644 themes/ayu-one-dark-pro-mirage.yaml create mode 100644 themes/baculum-color-vantablack.yaml create mode 100644 themes/baculum-color.yaml delete mode 100644 themes/baiyuechu.yaml rename themes/{dark-ocean-sands.yaml => bali-crepuscule.yaml} (80%) create mode 100644 themes/banjo-loans-dark.yaml create mode 100644 themes/banjo-loans-light.yaml create mode 100644 themes/barito.yaml create mode 100644 themes/batcave.yaml create mode 100644 themes/battutu.yaml create mode 100644 themes/bearhugs.yaml create mode 100644 themes/beesystemtheme.yaml create mode 100644 themes/beginner-theme.yaml create mode 100644 themes/belch-fork.yaml create mode 100644 themes/bellair.yaml create mode 100644 themes/beloco.yaml create mode 100644 themes/benty-dark.yaml create mode 100644 themes/benty.yaml create mode 100644 themes/bertax.yaml create mode 100644 themes/bertdark.yaml create mode 100644 themes/betweentts.yaml create mode 100644 themes/black-and-white-tv.yaml create mode 100644 themes/black-beauty.yaml create mode 100644 themes/black-panther-theme.yaml create mode 100644 themes/black-velvet-luxe.yaml create mode 100644 themes/blackzombie-color-theme.yaml create mode 100644 themes/blazing.yaml create mode 100644 themes/blender-mojo-theme.yaml create mode 100644 themes/blueberry.yaml create mode 100644 themes/blueprint-grid.yaml create mode 100644 themes/blueprint.yaml create mode 100644 themes/blueslate.yaml create mode 100644 themes/blufftheme.yaml create mode 100644 themes/bobojojo.yaml create mode 100644 themes/bonfire.yaml create mode 100644 themes/borderless-tokyo-night.yaml create mode 100644 themes/bumblebee.yaml create mode 100644 themes/c-carbon-6.yaml create mode 100644 themes/c-e-o.yaml create mode 100644 themes/cadet-medium-gray.yaml create mode 100644 themes/cafelle.yaml create mode 100644 themes/calabaza.yaml create mode 100644 themes/calm-days-sober-nights-day-sky.yaml create mode 100644 themes/calm-days-sober-nights-day.yaml create mode 100644 themes/calm-days-sober-nights-night-sky.yaml create mode 100644 themes/calm-days-sober-nights-night.yaml create mode 100644 themes/calm-teal-balance-clarity.yaml create mode 100644 themes/calm-vision.yaml create mode 100644 themes/calmnight.yaml create mode 100644 themes/calmshade.yaml create mode 100644 themes/camo-dark.yaml create mode 100644 themes/caramel.yaml create mode 100644 themes/carbon-candy-aurora.yaml create mode 100644 themes/carbon-candy-bee.yaml create mode 100644 themes/carbon-candy-carbon.yaml create mode 100644 themes/carbon-candy-dark.yaml create mode 100644 themes/carbon-candy-obsidian.yaml create mode 100644 themes/cassieye-dark.yaml create mode 100644 themes/cassieye-light.yaml create mode 100644 themes/cat-pulper.yaml create mode 100644 themes/catppuccin-dark-pro.yaml create mode 100644 themes/ccat.yaml create mode 100644 themes/celestial.yaml create mode 100644 themes/ceramic-space.yaml create mode 100644 themes/cha-thai.yaml create mode 100644 themes/chainroot.yaml create mode 100644 themes/charmed-dark.yaml create mode 100644 themes/chelsea-pride-away.yaml create mode 100644 themes/chelsea-pride.yaml create mode 100644 themes/chilaquiles-rojos-dark.yaml create mode 100644 themes/chilaquiles-rojos-light.yaml create mode 100644 themes/chilaquiles-verdes-dark.yaml create mode 100644 themes/chilaquiles-verdes-light.yaml create mode 100644 themes/chpastel-dark.yaml create mode 100644 themes/chpastel-light.yaml create mode 100644 themes/chris-light.yaml create mode 100644 themes/chrome-green.yaml create mode 100644 themes/chronica-pink.yaml create mode 100644 themes/ckai-color-theme.yaml create mode 100644 themes/classic-essential-colors-blue.yaml create mode 100644 themes/claude-code-dark.yaml create mode 100644 themes/claude-code-light.yaml create mode 100644 themes/claude-dark-high-contrast.yaml create mode 100644 themes/claude-vscode-dark-brand.yaml create mode 100644 themes/claude-vscode-light-brand.yaml create mode 100644 themes/clorest.yaml create mode 100644 themes/cobalt-ice.yaml create mode 100644 themes/code-glasses-vision-pro.yaml create mode 100644 themes/code-muse-light.yaml create mode 100644 themes/code-sandbox-tribute.yaml create mode 100644 themes/codingwish.yaml create mode 100644 themes/color-contrast.yaml create mode 100644 themes/colored-desert.yaml create mode 100644 themes/columbina-dark.yaml create mode 100644 themes/cortex-theme.yaml create mode 100644 themes/cosmic-dark.yaml create mode 100644 themes/cozyspace.yaml create mode 100644 themes/cr0wn-gh0ul.yaml rename themes/{crafty-theme-dark-contrast.yaml => crafty-theme-dark.yaml} (94%) create mode 100644 themes/creative-purple-innovation-imagination.yaml create mode 100644 themes/crystal-quartz.yaml create mode 100644 themes/cyber-industrial.yaml create mode 100644 themes/cyber-pop.yaml create mode 100644 themes/cybersec-pro.yaml create mode 100644 themes/cyberspace.yaml create mode 100644 themes/daet.yaml create mode 100644 themes/daniel-material-palenight-theme.yaml create mode 100644 themes/dante-color-theme.yaml create mode 100644 themes/darcula-port.yaml create mode 100644 themes/dark-1.yaml create mode 100644 themes/dark-blood.yaml create mode 100644 themes/dark-cherry-ice-cream-subtle.yaml create mode 100644 themes/dark-cherry-ice-cream.yaml create mode 100644 themes/dark-crimson.yaml create mode 100644 themes/dark-dev-theme.yaml rename themes/{darkforest.yaml => dark-forest.yaml} (83%) create mode 100644 themes/dark-future-outrun.yaml create mode 100644 themes/dark-juice-bordered.yaml create mode 100644 themes/dark-moonlight.yaml create mode 100644 themes/dark-mosqueta.yaml create mode 100644 themes/dark-orange-flat.yaml create mode 100644 themes/dark-owl-darker-no-italics.yaml rename themes/{black-purple.yaml => dark-purple-fork.yaml} (74%) create mode 100644 themes/dark-purpled-theme.yaml create mode 100644 themes/dark-reader-dark.yaml create mode 100644 themes/dark-red-theme.yaml create mode 100644 themes/dark-solarin-2021.yaml create mode 100644 themes/dark-with-blue.yaml create mode 100644 themes/darkblue-theme-official.yaml create mode 100644 themes/darker-b.yaml create mode 100644 themes/darker-monokai-gold.yaml create mode 100644 themes/darksian-theme.yaml create mode 100644 themes/dartpad.yaml create mode 100644 themes/dbt-dark-theme.yaml create mode 100644 themes/dbt-light-theme.yaml create mode 100644 themes/dc-dark-theme.yaml create mode 100644 themes/dead-club-city.yaml create mode 100644 themes/deadmura.yaml create mode 100644 themes/deep-dark-blue.yaml create mode 100644 themes/deep-dark-purple.yaml create mode 100644 themes/deep-dark-teal.yaml delete mode 100644 themes/deep-ocean.yaml create mode 100644 themes/deep-purple-fork.yaml create mode 100644 themes/deep-sea-navigator.yaml create mode 100644 themes/deep-teal.yaml create mode 100644 themes/deep-void.yaml create mode 100644 themes/deepslime.yaml create mode 100644 themes/deepwoods-autumn-needles.yaml create mode 100644 themes/deepwoods-frosted-pines.yaml create mode 100644 themes/deepwoods-high-canopy.yaml create mode 100644 themes/deepwoods-spring-thaw.yaml create mode 100644 themes/delowar-dark-pro.yaml create mode 100644 themes/delowar-monokai-pro.yaml create mode 100644 themes/delowar-ocean-blue.yaml create mode 100644 themes/demon.yaml create mode 100644 themes/desert-night.yaml create mode 100644 themes/desert-tide.yaml create mode 100644 themes/dev-code-theme-color-theme.yaml create mode 100644 themes/dev-dev-color-theme.yaml create mode 100644 themes/developer-friendly-dark.yaml create mode 100644 themes/devhaven-dracula.yaml create mode 100644 themes/devjam-dark.yaml create mode 100644 themes/devoption-light.yaml create mode 100644 themes/dewart.yaml create mode 100644 themes/dharam-gfx-gold.yaml create mode 100644 themes/digitaliss-light.yaml create mode 100644 themes/digitaliss-pastel.yaml create mode 100644 themes/digitaliss.yaml create mode 100644 themes/division-group-dark-theme.yaml rename themes/{github-dark-high-contrast.yaml => dk-dark-high-contrast.yaml} (70%) create mode 100644 themes/doems-sunset.yaml create mode 100644 themes/doli-soft-green.yaml create mode 100644 themes/dove.yaml create mode 100644 themes/dqn.yaml create mode 100644 themes/dracula-2022.yaml create mode 100644 themes/dracula-dark.yaml create mode 100644 themes/dracula-pro.yaml create mode 100644 themes/drake.yaml create mode 100644 themes/drukalu.yaml create mode 100644 themes/dsekon-theme.yaml create mode 100644 themes/early-bird.yaml create mode 100644 themes/easter.yaml create mode 100644 themes/ecatheme.yaml create mode 100644 themes/eclipse-dawn.yaml create mode 100644 themes/ecogest-solarized-light.yaml create mode 100644 themes/eidolon.yaml create mode 100644 themes/eiji-otieno-theme.yaml create mode 100644 themes/electric-ice-darker.yaml create mode 100644 themes/electric-ice.yaml create mode 100644 themes/elixir-theme-with-italics-less-dark-2.yaml create mode 100644 themes/ember-glow.yaml create mode 100644 themes/emberwood.yaml create mode 100644 themes/emmess-periglaciar.yaml create mode 100644 themes/empire-monokai-dark.yaml create mode 100644 themes/empire-monokai-light.yaml create mode 100644 themes/energy-red-passion-alertness.yaml create mode 100644 themes/energy-theme.yaml create mode 100644 themes/enhanced-material.yaml create mode 100644 themes/enigma.yaml create mode 100644 themes/enki-rainbow.yaml create mode 100644 themes/enlightened-ifission.yaml create mode 100644 themes/eskey-theme.yaml create mode 100644 themes/espresso-high.yaml create mode 100644 themes/eva-theme.yaml create mode 100644 themes/everforest-dark.yaml create mode 100644 themes/everforest-night-hard.yaml create mode 100644 themes/everforest-night-light-hard.yaml create mode 100644 themes/everforest-night-light-medium.yaml create mode 100644 themes/everforest-night-light-soft.yaml create mode 100644 themes/everforest-night-medium.yaml create mode 100644 themes/everforest-night-soft.yaml create mode 100644 themes/everforest-pro-dark.yaml create mode 100644 themes/everforest-pro-light.yaml create mode 100644 themes/executive-level.yaml create mode 100644 themes/exias-theme-forest.yaml create mode 100644 themes/exovoid-purple-better-c.yaml create mode 100644 themes/eye-care-owl-light.yaml create mode 100644 themes/eye-care-owl.yaml create mode 100644 themes/fae.yaml create mode 100644 themes/fig.yaml create mode 100644 themes/filter-turbo-color-theme.yaml create mode 100644 themes/fireside.yaml create mode 100644 themes/flamingo-nebula.yaml create mode 100644 themes/flash-green-dark.yaml create mode 100644 themes/flatland-monokai-improved.yaml create mode 100644 themes/fleetheme.yaml create mode 100644 themes/fleeting-theme-modern.yaml create mode 100644 themes/flippidippi-light.yaml create mode 100644 themes/fluentblue.yaml create mode 100644 themes/forest-tech.yaml create mode 100644 themes/foxnett-nexus-theme.yaml create mode 100644 themes/fresh-green-color-theme.yaml create mode 100644 themes/frog-terminal.yaml create mode 100644 themes/front-matter-cms-theme.yaml create mode 100644 themes/frost-spark-dark.yaml create mode 100644 themes/frozen-deep.yaml create mode 100644 themes/frubilar.yaml create mode 100644 themes/fruitbasket-dark.yaml create mode 100644 themes/fruitbasket-light.yaml create mode 100644 themes/funcode.yaml create mode 100644 themes/functional.yaml create mode 100644 themes/galaxian.yaml create mode 100644 themes/gauss-thetheme.yaml create mode 100644 themes/gckn.yaml create mode 100644 themes/gekkou.yaml create mode 100644 themes/gelap.yaml create mode 100644 themes/github-colorblind.yaml create mode 100644 themes/github-dark-theme.yaml create mode 100644 themes/github-light-theme.yaml create mode 100644 themes/github-revamp.yaml create mode 100644 themes/glacier-blue.yaml create mode 100644 themes/glassonion.yaml create mode 100644 themes/gogh.yaml create mode 100644 themes/golden-dullahan.yaml create mode 100644 themes/golden-rain.yaml create mode 100644 themes/got-beyond-the-wall.yaml create mode 100644 themes/got-house-baratheon.yaml create mode 100644 themes/got-house-greyjoy.yaml create mode 100644 themes/got-house-lannister.yaml create mode 100644 themes/got-house-martell.yaml create mode 100644 themes/got-house-stark.yaml create mode 100644 themes/got-house-targaryen.yaml create mode 100644 themes/got-night-s-watch.yaml create mode 100644 themes/got-the-iron-throne.yaml create mode 100644 themes/gothic-light.yaml create mode 100644 themes/grank.yaml create mode 100644 themes/graveyard-fork-fork.yaml create mode 100644 themes/green-hacker.yaml create mode 100644 themes/greenish.yaml rename themes/{gruvbox-dark-medium.yaml => gruvbox-dark-anhoder.yaml} (93%) delete mode 100644 themes/gruvbox-dark-soft.yaml create mode 100644 themes/gruvbox-light-medium.yaml create mode 100644 themes/gruvbox-light-soft.yaml create mode 100644 themes/gruvbox-material-dark.yaml create mode 100644 themes/gruvbox-material-light.yaml create mode 100644 themes/gruvdark.yaml create mode 100644 themes/gruvvy-watermelon.yaml create mode 100644 themes/guttenbergovitz.yaml create mode 100644 themes/hack-minor.yaml create mode 100644 themes/halloween-theme.yaml create mode 100644 themes/hammerhead.yaml create mode 100644 themes/hams-uno.yaml create mode 100644 themes/hard-hacker-light.yaml create mode 100644 themes/hard-hacker.yaml create mode 100644 themes/hare-omagari.yaml create mode 100644 themes/harmony-pulse.yaml create mode 100644 themes/hearth-dark.yaml create mode 100644 themes/hearth-light.yaml create mode 100644 themes/herakles.yaml create mode 100644 themes/hero-dark.yaml create mode 100644 themes/high-alert-crimson.yaml create mode 100644 themes/hirakata.yaml create mode 100644 themes/holo-s-wisdom-spice-and-wolf-theme.yaml create mode 100644 themes/hologram-night.yaml create mode 100644 themes/horimura.yaml create mode 100644 themes/house-of-the-dragon-team-greens.yaml create mode 100644 themes/hq-pink-blue.yaml create mode 100644 themes/hulky.yaml create mode 100644 themes/hydro-sea.yaml create mode 100644 themes/hydro-soft.yaml create mode 100644 themes/hydro.yaml create mode 100644 themes/hygge-kyst-dark.yaml create mode 100644 themes/i-light-color-theme.yaml create mode 100644 themes/i-night-color-theme.yaml create mode 100644 themes/i3-dark-custom-ii.yaml create mode 100644 themes/i3-dark-github-dark.yaml create mode 100644 themes/i3-panda-custom-iii.yaml create mode 100644 themes/i3-panda-custom.yaml create mode 100644 themes/ibm-carbon-gray-10.yaml create mode 100644 themes/ibm-carbon-gray-100.yaml create mode 100644 themes/ibm-carbon-gray-90.yaml create mode 100644 themes/ibm-carbon-white.yaml create mode 100644 themes/icon-group-dark.yaml create mode 100644 themes/icon-group-light.yaml create mode 100644 themes/idle-dark.yaml create mode 100644 themes/idle-light.yaml create mode 100644 themes/illuminate.yaml create mode 100644 themes/illusion.yaml create mode 100644 themes/ilyat-poimandres.yaml create mode 100644 themes/in-rainbows-dark.yaml create mode 100644 themes/indie-dev.yaml create mode 100644 themes/indique-theme.yaml create mode 100644 themes/intellij-light-color-theme.yaml create mode 100644 themes/irrus-float.yaml create mode 100644 themes/isatoru.yaml create mode 100644 themes/jbpc.yaml create mode 100644 themes/jellybeans-extended.yaml create mode 100644 themes/jetvibe-darcula.yaml create mode 100644 themes/jo-o-campos-theme.yaml create mode 100644 themes/jocelyn.yaml create mode 100644 themes/joyful-fork-fork.yaml create mode 100644 themes/kadaxi-colors.yaml create mode 100644 themes/kaplan-dark.yaml create mode 100644 themes/karry-color-golang.yaml rename themes/{kashi-night.yaml => kashi.yaml} (94%) create mode 100644 themes/kdshade-darkbg.yaml create mode 100644 themes/kesteren.yaml create mode 100644 themes/kh-gold-subtle.yaml create mode 100644 themes/kh-silver-subtle.yaml create mode 100644 themes/khoaneostyle.yaml create mode 100644 themes/kinn.yaml create mode 100644 themes/kiranord.yaml create mode 100644 themes/kjs-officials-electric-lime.yaml create mode 100644 themes/knight-vscode.yaml create mode 100644 themes/kong-light.yaml create mode 100644 themes/kotama-otose.yaml create mode 100644 themes/krb-blue.yaml create mode 100644 themes/kuro-sakura.yaml create mode 100644 themes/kurodake-green.yaml create mode 100644 themes/kuroir-dark-03-amber.yaml create mode 100644 themes/kuroir-dark-11-aqua.yaml create mode 100644 themes/kuroir-dark-14-cerulean.yaml create mode 100644 themes/kuroir-dark-15-sky.yaml create mode 100644 themes/kuroir-light-03-amber.yaml create mode 100644 themes/kuroir-light-12-teal.yaml create mode 100644 themes/kuroir-light-24-coral.yaml create mode 100644 themes/lackluster.yaml create mode 100644 themes/lapis-dark.yaml create mode 100644 themes/lapis-light.yaml create mode 100644 themes/lapis.yaml create mode 100644 themes/lapres99.yaml create mode 100644 themes/lascavo-classic-contrast.yaml create mode 100644 themes/lascavo-classic.yaml create mode 100644 themes/lascavo-cold.yaml create mode 100644 themes/leaf-black.yaml create mode 100644 themes/lebannen-theme.yaml create mode 100644 themes/leehxd.yaml create mode 100644 themes/legendary-attack-of-blue.yaml create mode 100644 themes/liddlelabtheme.yaml create mode 100644 themes/liftoff.yaml create mode 100644 themes/lig-dark-soft.yaml create mode 100644 themes/lig-dark.yaml create mode 100644 themes/lig-light-soft.yaml create mode 100644 themes/lig-light.yaml create mode 100644 themes/light-jade.yaml create mode 100644 themes/light-mosqueta.yaml create mode 100644 themes/lightning-light.yaml create mode 100644 themes/lilac.yaml create mode 100644 themes/lino.yaml create mode 100644 themes/lion.yaml create mode 100644 themes/liquid-ray-soft-pink.yaml create mode 100644 themes/loki.yaml create mode 100644 themes/london-underground.yaml create mode 100644 themes/lordmorphy.yaml rename themes/{punk-runner.yaml => lucky-green.yaml} (75%) create mode 100644 themes/luiz.yaml create mode 100644 themes/lumen-dark.yaml create mode 100644 themes/lumineclipse.yaml create mode 100644 themes/lumos-light-soft.yaml create mode 100644 themes/luxark.yaml create mode 100644 themes/m-jtgzc.yaml create mode 100644 themes/m.yaml create mode 100644 themes/mach1-theme.yaml create mode 100644 themes/mainframe-terminal.yaml create mode 100644 themes/maki-konuri.yaml create mode 100644 themes/manoshi.yaml create mode 100644 themes/matchaneco.yaml create mode 100644 themes/material-neutral.yaml create mode 100644 themes/material-pure-dark.yaml create mode 100644 themes/material-theme-dhc-mix-in-pycharm-darcula-theme.yaml create mode 100644 themes/matrix-reloaded-locked.yaml create mode 100644 themes/matrix-reloaded.yaml create mode 100644 themes/mauriceplus.yaml create mode 100644 themes/maus-dark.yaml create mode 100644 themes/meadow-whisper.yaml create mode 100644 themes/meinanziiii.yaml create mode 100644 themes/melange-redux-dark.yaml create mode 100644 themes/meoceanemerald.yaml create mode 100644 themes/meridian-neutral.yaml create mode 100644 themes/meridian.yaml create mode 100644 themes/metropolis-sky-scape.yaml create mode 100644 themes/michota.yaml create mode 100644 themes/microhouse.yaml create mode 100644 themes/middle-field-canvas.yaml create mode 100644 themes/midnight-dark.yaml create mode 100644 themes/midnight-emerald.yaml create mode 100644 themes/midnight-forest.yaml create mode 100644 themes/midnight-high-contrast-dark.yaml create mode 100644 themes/midnight-high-contrast-light.yaml create mode 100644 themes/midnight-koi.yaml create mode 100644 themes/midnight-light.yaml create mode 100644 themes/midnight-monochrome.yaml create mode 100644 themes/midnight-ocean.yaml create mode 100644 themes/midnight-shadow-fork.yaml create mode 100644 themes/midnight-soft.yaml create mode 100644 themes/midwinter-light.yaml create mode 100644 themes/mike-sources-hacker.yaml create mode 100644 themes/mikestheme-edited-gulajavaministudio-mayukai-theme.yaml create mode 100644 themes/minai.yaml create mode 100644 themes/mineral-forest.yaml create mode 100644 themes/minimal-monochrome-light.yaml create mode 100644 themes/minimalblue.yaml create mode 100644 themes/minimalgold.yaml create mode 100644 themes/mirajdev.yaml create mode 100644 themes/mitsuri.yaml create mode 100644 themes/mlv60-vintage-dark.yaml create mode 100644 themes/modern-dracula-white.yaml create mode 100644 themes/modern-retro.yaml create mode 100644 themes/modernui.yaml create mode 100644 themes/monet-impressionism.yaml create mode 100644 themes/mono-dark.yaml create mode 100644 themes/mono-next.yaml create mode 100644 themes/mono-white.yaml create mode 100644 themes/monokai-classic.yaml create mode 100644 themes/monokai-minimal.yaml create mode 100644 themes/monokai-red.yaml create mode 100644 themes/monokai-semantic.yaml create mode 100644 themes/monove-fork.yaml create mode 100644 themes/monte-cristo-theme.yaml create mode 100644 themes/morita.yaml create mode 100644 themes/mossframe-neon-darker-legacy.yaml create mode 100644 themes/mossframe-neon-legacy.yaml create mode 100644 themes/mother-stretch-my-hands.yaml create mode 100644 themes/motion-blue.yaml create mode 100644 themes/msquare-dark.yaml create mode 100644 themes/my-light-theme.yaml create mode 100644 themes/my-ocean-theme.yaml create mode 100644 themes/mycode-dark.yaml create mode 100644 themes/mz-light-grey-sharp.yaml create mode 100644 themes/nachop-dark.yaml create mode 100644 themes/nachop-light-bordered.yaml create mode 100644 themes/nachop-light.yaml create mode 100644 themes/nanami-madobe-theme.yaml create mode 100644 themes/narixius-one-dark.yaml create mode 100644 themes/natural-green-growth-harmony.yaml create mode 100644 themes/nature-green-growth-harmony.yaml create mode 100644 themes/neon-dreams.yaml create mode 100644 themes/neon-palette-themes-red.yaml create mode 100644 themes/nevejestvo-theme.yaml create mode 100644 themes/nevo-pro.yaml create mode 100644 themes/new-wave-theme.yaml create mode 100644 themes/newsprint.yaml create mode 100644 themes/nextgen-terminal.yaml create mode 100644 themes/night-howl.yaml create mode 100644 themes/nightcall.yaml create mode 100644 themes/nightshade-venom.yaml create mode 100644 themes/nighty-bordered.yaml create mode 100644 themes/nihil.yaml create mode 100644 themes/noe.yaml create mode 100644 themes/noir-essence-dark.yaml create mode 100644 themes/nord-fountain.yaml create mode 100644 themes/nord-light.yaml create mode 100644 themes/nordark.yaml create mode 100644 themes/nordstone.yaml create mode 100644 themes/nova-dark.yaml create mode 100644 themes/nova-light.yaml create mode 100644 themes/nuuvo-space-max.yaml create mode 100644 themes/nyrkes.yaml create mode 100644 themes/obsidian-gold.yaml create mode 100644 themes/obsidian-wine.yaml create mode 100644 themes/oceanic-gradient.yaml create mode 100644 themes/oceanic-primal-color-theme.yaml create mode 100644 themes/oceanic-sunset.yaml create mode 100644 themes/office-dark.yaml create mode 100644 themes/office-paper.yaml create mode 100644 themes/ohled-cyan.yaml create mode 100644 themes/ohled-magenta.yaml create mode 100644 themes/oledge.yaml create mode 100644 themes/omni-dracula-theme-tradicional.yaml create mode 100644 themes/one-dark-orange.yaml create mode 100644 themes/one-darkpuccin-night.yaml create mode 100644 themes/one-darkpuccin-vivid.yaml create mode 100644 themes/one-light-italic.yaml create mode 100644 themes/one-monokai-light.yaml create mode 100644 themes/one-monokai-python-flat.yaml create mode 100644 themes/one-pauintxi-blue.yaml create mode 100644 themes/onedark-vibrant.yaml create mode 100644 themes/onething.yaml create mode 100644 themes/onlydarklight.yaml create mode 100644 themes/oolory-color-theme.yaml create mode 100644 themes/opmono-odarkp.yaml create mode 100644 themes/oracle-vision.yaml create mode 100644 themes/orange-ocean.yaml create mode 100644 themes/orbi-red.yaml create mode 100644 themes/orion-black-fork.yaml create mode 100644 themes/orw.yaml create mode 100644 themes/osean-boy.yaml create mode 100644 themes/outer-spacemacs.yaml create mode 100644 themes/overnight.yaml create mode 100644 themes/oxocarbon-dark.yaml create mode 100644 themes/oxocarbon-monochrom.yaml create mode 100644 themes/oxocarbon-oled.yaml create mode 100644 themes/p-upright-black.yaml create mode 100644 themes/p-upright-citadel.yaml create mode 100644 themes/p-upright-crimson.yaml create mode 100644 themes/p-upright-dark.yaml create mode 100644 themes/p-upright-eggplant.yaml create mode 100644 themes/p-upright-emerald.yaml create mode 100644 themes/p-upright-eucalyptus.yaml create mode 100644 themes/p-upright-floresta.yaml create mode 100644 themes/p-upright-frost.yaml create mode 100644 themes/p-upright-genmaicha.yaml create mode 100644 themes/p-upright-grizzly.yaml create mode 100644 themes/p-upright-haze.yaml create mode 100644 themes/p-upright-inkstone.yaml create mode 100644 themes/p-upright-leipzig.yaml create mode 100644 themes/p-upright-light.yaml create mode 100644 themes/p-upright-machine.yaml create mode 100644 themes/p-upright-mist.yaml create mode 100644 themes/p-upright-neptune.yaml create mode 100644 themes/p-upright-ornithopter.yaml create mode 100644 themes/p-upright-ox.yaml create mode 100644 themes/p-upright-terabyte.yaml create mode 100644 themes/p-upright-ultramarine.yaml create mode 100644 themes/p-upright-wolf.yaml create mode 100644 themes/p-upright-yesterday.yaml create mode 100644 themes/p-upright-zenith.yaml create mode 100644 themes/palenight-italic.yaml create mode 100644 themes/palenight-theme-based-on-olaolu-olaywuyi-for-code-server.yaml create mode 100644 themes/palenight-theme.yaml create mode 100644 themes/pandai.yaml create mode 100644 themes/pandju.yaml create mode 100644 themes/para-so-dark.yaml create mode 100644 themes/pastel-sorbet.yaml create mode 100644 themes/peace-of-the-eye-dracula-version.yaml create mode 100644 themes/perfection-fresh-dark.yaml create mode 100644 themes/perfection-fresh-light.yaml create mode 100644 themes/piggy-bordered.yaml create mode 100644 themes/pillirioen.yaml create mode 100644 themes/pine-blue.yaml create mode 100644 themes/pine-editor-dark.yaml create mode 100644 themes/pine-editor-light-bold.yaml create mode 100644 themes/pine-grey.yaml create mode 100644 themes/pink-high-contrast.yaml create mode 100644 themes/pirate-flat-theme.yaml create mode 100644 themes/pk-vscode-theme.yaml create mode 100644 themes/poimandres-darker-theme-ghostty-palette.yaml create mode 100644 themes/poison-serpent.yaml create mode 100644 themes/polymer-flow.yaml create mode 100644 themes/progenesis-dark.yaml create mode 100644 themes/progenesis-light.yaml create mode 100644 themes/protheme-dark-2.yaml create mode 100644 themes/protheme-dark.yaml create mode 100644 themes/punkfut.yaml create mode 100644 themes/pure-black-monokai-inspired.yaml create mode 100644 themes/pure-monochrome.yaml create mode 100644 themes/purgle-dark-purple.yaml create mode 100644 themes/purple-galaxy.yaml create mode 100644 themes/purple-ish-dimmed.yaml create mode 100644 themes/purr-light.yaml create mode 100644 themes/qihui-tech-light.yaml create mode 100644 themes/qihui-tech-night.yaml create mode 100644 themes/qihui-tech.yaml create mode 100644 themes/quantum-dark.yaml create mode 100644 themes/quantum-fluidity.yaml create mode 100644 themes/quantum-flux.yaml create mode 100644 themes/quantum-material-theme-dark.yaml create mode 100644 themes/quantum-material-theme-light.yaml create mode 100644 themes/quantum-material-theme-void.yaml create mode 100644 themes/quantum-mirage.yaml create mode 100644 themes/quantum.yaml create mode 100644 themes/quartzium-theme-dark.yaml create mode 100644 themes/quartzium-theme-darker.yaml create mode 100644 themes/quartzium-theme-deepforest.yaml create mode 100644 themes/quartzium-theme-default.yaml create mode 100644 themes/quartzium-theme-lighter.yaml create mode 100644 themes/quinno-darkness.yaml create mode 100644 themes/r-dark-pro-filter-nightblack.yaml create mode 100644 themes/raij-dark.yaml create mode 100644 themes/raij.yaml create mode 100644 themes/rasengan-glacier.yaml create mode 100644 themes/rat-beach.yaml create mode 100644 themes/rayleigh.yaml create mode 100644 themes/rblx-lua-non-italic.yaml create mode 100644 themes/rcw-120-v1.yaml create mode 100644 themes/re-dark.yaml create mode 100644 themes/react-italic-theme.yaml create mode 100644 themes/red-black-white.yaml create mode 100644 themes/red-color-theme.yaml create mode 100644 themes/red.yaml create mode 100644 themes/remedyish-bright.yaml create mode 100644 themes/remedyish-dark.yaml create mode 100644 themes/retro-arcade.yaml create mode 100644 themes/reui-ii-dark.yaml create mode 100644 themes/reui-mirage.yaml create mode 100644 themes/reui.yaml create mode 100644 themes/rey.yaml create mode 100644 themes/rezaul360-blue-velvet-theme.yaml create mode 100644 themes/rezaul360-professional-theme.yaml create mode 100644 themes/rezaul360-simple-as-light.yaml create mode 100644 themes/rg-htmllessons-io.yaml create mode 100644 themes/rhodium-dark.yaml create mode 100644 themes/rich-black-no-highlighting.yaml create mode 100644 themes/rich-black-theme.yaml create mode 100644 themes/rider-dark-darcula.yaml create mode 100644 themes/rider-dark-new-ui.yaml create mode 100644 themes/riviera-theme.yaml create mode 100644 themes/rmondesilva-contrast.yaml create mode 100644 themes/robot-framework-material-dark.yaml create mode 100644 themes/rocklee.yaml create mode 100644 themes/rohit.yaml create mode 100644 themes/ros-pine-dawn-no-italics.yaml create mode 100644 themes/ros-pine-moon.yaml create mode 100644 themes/ros-pine-no-italics.yaml create mode 100644 themes/rouge.yaml create mode 100644 themes/royalty-theme.yaml create mode 100644 themes/rufendev-green-purple.yaml create mode 100644 themes/rumba-dark.yaml create mode 100644 themes/running-wires.yaml create mode 100644 themes/sabbir-theme-3.yaml create mode 100644 themes/sacred.yaml create mode 100644 themes/sadhu.yaml create mode 100644 themes/safe-dark-theme.yaml create mode 100644 themes/sage.yaml create mode 100644 themes/samito-next-theme.yaml create mode 100644 themes/scarlet-witch-dark.yaml create mode 100644 themes/scarlet-witch-light.yaml create mode 100644 themes/schwifty-one-dark.yaml create mode 100644 themes/seaci-base.yaml create mode 100644 themes/seaci-dark.yaml create mode 100644 themes/sebostien-theme.yaml create mode 100644 themes/section-9-hacker.yaml create mode 100644 themes/section-9-major.yaml create mode 100644 themes/section-9-ranger.yaml create mode 100644 themes/section-9.yaml create mode 100644 themes/seilacolor-2.yaml create mode 100644 themes/seilacolor.yaml create mode 100644 themes/serein-dark-soft.yaml create mode 100644 themes/serein-dark.yaml create mode 100644 themes/serein-light-soft.yaml create mode 100644 themes/serein-light.yaml create mode 100644 themes/serene-dawn.yaml create mode 100644 themes/serenity-light.yaml create mode 100644 themes/serenity-moon.yaml create mode 100644 themes/serenity-noir.yaml create mode 100644 themes/shale.yaml create mode 100644 themes/shaughnessy-nanite-theme.yaml create mode 100644 themes/shinjuku.yaml create mode 100644 themes/shinobu-kocho.yaml create mode 100644 themes/shion.yaml create mode 100644 themes/shiro-sakura-light.yaml create mode 100644 themes/shuvitheme.yaml create mode 100644 themes/shydl3.yaml create mode 100644 themes/siksnis-dev.yaml create mode 100644 themes/silicon-dark.yaml create mode 100644 themes/silk-petal.yaml create mode 100644 themes/silo.yaml create mode 100644 themes/simble.yaml create mode 100644 themes/simple-muted-dark.yaml create mode 100644 themes/simple-muted-light.yaml create mode 100644 themes/sissi-ga.yaml create mode 100644 themes/skeswa-s-noctis-azureus.yaml create mode 100644 themes/skeswa-s-noctis-bordo.yaml create mode 100644 themes/skeswa-s-noctis-hibernus.yaml create mode 100644 themes/skeswa-s-noctis-lilac.yaml create mode 100644 themes/skeswa-s-noctis-lux.yaml create mode 100644 themes/skeswa-s-noctis-minimus.yaml create mode 100644 themes/skeswa-s-noctis-obscuro.yaml create mode 100644 themes/skeswa-s-noctis-sereno.yaml create mode 100644 themes/skeswa-s-noctis-uva.yaml create mode 100644 themes/skeswa-s-noctis-viola.yaml create mode 100644 themes/skeswa-s-noctis.yaml create mode 100644 themes/sky-real-abyss.yaml create mode 100644 themes/slack-theme-hoth.yaml create mode 100644 themes/slate-blue.yaml create mode 100644 themes/slate-light.yaml create mode 100644 themes/slate-neon.yaml create mode 100644 themes/sleepy-nights.yaml create mode 100644 themes/sloth-highlander-theme-3.yaml create mode 100644 themes/smit-amber-monochrome.yaml create mode 100644 themes/smit-arctic-cyan.yaml create mode 100644 themes/smit-black-slate.yaml create mode 100644 themes/smit-coffee.yaml create mode 100644 themes/smit-crimson-red.yaml create mode 100644 themes/smit-dark.yaml create mode 100644 themes/smit-deep-ocean.yaml create mode 100644 themes/smit-forest-green.yaml create mode 100644 themes/smit-gruvbox-inspired.yaml create mode 100644 themes/smit-high-contrast.yaml create mode 100644 themes/smit-low-light.yaml create mode 100644 themes/smit-matrix.yaml create mode 100644 themes/smit-midnight-purple.yaml create mode 100644 themes/smit-minimal-dark.yaml create mode 100644 themes/smit-monokai-inspired.yaml create mode 100644 themes/smit-neon-cyberpunk.yaml create mode 100644 themes/smit-soft-dark.yaml create mode 100644 themes/smit-sunset-orange.yaml create mode 100644 themes/smit-synthwave.yaml create mode 100644 themes/smithy-iron.yaml create mode 100644 themes/smoldering-ember.yaml create mode 100644 themes/smooth-dark.yaml create mode 100644 themes/smooth-light.yaml create mode 100644 themes/smooththeme.yaml create mode 100644 themes/snap-light.yaml create mode 100644 themes/snappier.yaml create mode 100644 themes/snazzy-operator-color-theme-dark.yaml create mode 100644 themes/snazzy-operator-color-theme.yaml create mode 100644 themes/snazzy.yaml create mode 100644 themes/snazzyfied.yaml create mode 100644 themes/soft-dark.yaml create mode 100644 themes/soft-era.yaml create mode 100644 themes/soft-light.yaml create mode 100644 themes/softie-theme.yaml create mode 100644 themes/solarized-next.yaml create mode 100644 themes/solarized-simon.yaml create mode 100644 themes/solstice-heat.yaml create mode 100644 themes/something-different.yaml create mode 100644 themes/sonic-pulse.yaml create mode 100644 themes/sorbet-swirl.yaml create mode 100644 themes/souei.yaml create mode 100644 themes/spring-breeze-theme.yaml rename themes/{simple-theme.yaml => squash-theme.yaml} (72%) create mode 100644 themes/st-borg.yaml create mode 100644 themes/st-lcars.yaml create mode 100644 themes/steelbore.yaml create mode 100644 themes/stilla.yaml create mode 100644 themes/stranger-theme-dimension-x.yaml create mode 100644 themes/stranger-theme-hawkins.yaml create mode 100644 themes/stranger-theme-starcourt.yaml create mode 100644 themes/stranger-theme-the-lab.yaml create mode 100644 themes/stranger-theme-tigers.yaml create mode 100644 themes/stranger-theme-upside-down.yaml create mode 100644 themes/studio-apartment.yaml create mode 100644 themes/styledark18.yaml create mode 100644 themes/styledark28.yaml create mode 100644 themes/stylelight33.yaml create mode 100644 themes/stypt-aether.yaml create mode 100644 themes/sublime-mariana-semantic.yaml create mode 100644 themes/sublime-monokai-color-theme.yaml create mode 100644 themes/subliminal-nightfall.yaml create mode 100644 themes/subliminalr.yaml create mode 100644 themes/sucrose.yaml create mode 100644 themes/supa.yaml create mode 100644 themes/superdark.yaml create mode 100644 themes/supergreatmonokai.yaml create mode 100644 themes/synthwave-neon.yaml create mode 100644 themes/t-on-no-c-digo.yaml create mode 100644 themes/tactical-ops.yaml create mode 100644 themes/tarbooz-dark.yaml create mode 100644 themes/tarbooz-light.yaml create mode 100644 themes/tarbooz-underripe.yaml create mode 100644 themes/teal-abyss.yaml create mode 100644 themes/tears-of-the-kingdom-minimal-dark-midnight.yaml create mode 100644 themes/tears-of-the-kingdom-minimal-dark.yaml create mode 100644 themes/techset.yaml create mode 100644 themes/terminal-fork.yaml create mode 100644 themes/th-me-dark-aout-contraste-lev.yaml create mode 100644 themes/the-best-vscode-theme-ever-light.yaml create mode 100644 themes/thebear-dark.yaml create mode 100644 themes/thecodedoctor.yaml create mode 100644 themes/theme-mk-black.yaml create mode 100644 themes/theme1.yaml create mode 100644 themes/themello.yaml create mode 100644 themes/thememix.yaml create mode 100644 themes/thepurple.yaml create mode 100644 themes/tmnt-dark-theme.yaml create mode 100644 themes/todepond-theme.yaml create mode 100644 themes/tokyo-dark.yaml create mode 100644 themes/tokyo-night-theme.yaml create mode 100644 themes/tokyogo.yaml create mode 100644 themes/tree-hugger.yaml create mode 100644 themes/tsoding-daily-2024.yaml create mode 100644 themes/tsukuyomi.yaml create mode 100644 themes/tulin-design.yaml create mode 100644 themes/turnstyle-darker.yaml create mode 100644 themes/turnstyle.yaml create mode 100644 themes/twilight-bloom.yaml create mode 100644 themes/two-monokai-darker.yaml create mode 100644 themes/two-monokai.yaml create mode 100644 themes/typedark-cyan.yaml create mode 100644 themes/tyrone-neon-red.yaml create mode 100644 themes/udt-eclipse-light.yaml create mode 100644 themes/ultrafocus-fork-fork.yaml create mode 100644 themes/understated.yaml rename themes/{universe-italic.yaml => universe-gray.yaml} (58%) create mode 100644 themes/universe-purple.yaml create mode 100644 themes/upward-dark-legacy.yaml create mode 100644 themes/upward-dark.yaml create mode 100644 themes/urbanjungle.yaml create mode 100644 themes/ursa.yaml create mode 100644 themes/vague.yaml create mode 100644 themes/valley.yaml create mode 100644 themes/vanguard-strike.yaml create mode 100644 themes/vaporizer-dark-matrix-2.yaml create mode 100644 themes/vaporizer-dark-red.yaml create mode 100644 themes/vd.yaml create mode 100644 themes/verdant.yaml create mode 100644 themes/verner.yaml create mode 100644 themes/vim-light-3.yaml create mode 100644 themes/vintage-heritage.yaml create mode 100644 themes/visual-studio-dark-2019.yaml create mode 100644 themes/visual-studio-dark-2026.yaml create mode 100644 themes/vitruvian.yaml create mode 100644 themes/vixn-dark.yaml create mode 100644 themes/void-nebula.yaml create mode 100644 themes/vsc-cyberpunk2077-theme-color-theme.yaml create mode 100644 themes/vsc-minimalist-theme-flat.yaml create mode 100644 themes/vscode-epic-color-theme.yaml create mode 100644 themes/vscode-forest-pro-chartreuse.yaml create mode 100644 themes/vscode-forest-pro-dark-green.yaml create mode 100644 themes/vscode-forest-pro-enterprise-accessibility-enhanced.yaml create mode 100644 themes/vscode-forest-pro-enterprise-light.yaml create mode 100644 themes/vscode-forest-pro-enterprise.yaml create mode 100644 themes/vscode-forest-pro-hunter-green.yaml create mode 100644 themes/vscode-forest-pro-jade.yaml create mode 100644 themes/vscode-forest-pro-kelly-green.yaml create mode 100644 themes/vscode-forest-pro-mint-green.yaml create mode 100644 themes/vscode-forest-pro-moss-green.yaml create mode 100644 themes/vscode-forest-pro-olive.yaml create mode 100644 themes/vscode-forest-pro-pale-green.yaml create mode 100644 themes/vscode-forest-pro-pine-green.yaml create mode 100644 themes/vscode-forest-pro-sea-green.yaml create mode 100644 themes/vscode-forest-pro-shamrock.yaml create mode 100644 themes/vscode-forest-pro-spring-green.yaml create mode 100644 themes/vscode-forest-pro-tea-green.yaml create mode 100644 themes/wangyj-black.yaml create mode 100644 themes/watercourse.yaml create mode 100644 themes/wave-delight-vs-dark-cool.yaml create mode 100644 themes/wawdog-dark.yaml create mode 100644 themes/weitingcoder.yaml create mode 100644 themes/westmont-dark.yaml create mode 100644 themes/wind-light-neutral.yaml create mode 100644 themes/winternacht-dark.yaml create mode 100644 themes/winternacht-light.yaml create mode 100644 themes/wl-aurora-glow.yaml create mode 100644 themes/wl-chrome-noir.yaml create mode 100644 themes/wl-cyber-rain.yaml create mode 100644 themes/wl-dial-tone.yaml create mode 100644 themes/wl-turbo-boost.yaml create mode 100644 themes/wolftheme.yaml create mode 100644 themes/woods.yaml create mode 100644 themes/workplace-chatter.yaml create mode 100644 themes/wow.yaml create mode 100644 themes/x.yaml create mode 100644 themes/xenon.yaml create mode 100644 themes/xerobi-dark-theme.yaml create mode 100644 themes/xerobi-light-theme.yaml create mode 100644 themes/xikreti.yaml create mode 100644 themes/xresources-normal-dark.yaml create mode 100644 themes/yanus.yaml create mode 100644 themes/yell.yaml create mode 100644 themes/yinloonga-c.yaml create mode 100644 themes/yttrium-dark.yaml create mode 100644 themes/yttrium-light.yaml create mode 100644 themes/yuuyake-dark.yaml create mode 100644 themes/zacharywilliamson.yaml create mode 100644 themes/zaeri-dark.yaml create mode 100644 themes/zandromeda.yaml create mode 100644 themes/zappts.yaml create mode 100644 themes/zene-light-theme.yaml create mode 100644 themes/zhxo-red.yaml create mode 100644 themes/zora-mirage-green.yaml create mode 100644 themes/zora-mirage.yaml create mode 100644 themes/zoradark.yaml create mode 100644 themes/zzc-dark.yaml create mode 100644 themes/zzc-light.yaml diff --git a/themes/07-dark.yaml b/themes/07-dark.yaml index 104ba582..f77fe7ba 100644 --- a/themes/07-dark.yaml +++ b/themes/07-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "flower607.07Theme" version: "1.0.0" installs: 290 + rating: 5 + ratings: 1 author: "flower607" repo: "https://github.com/flower-dc/07Theme" url: "https://marketplace.visualstudio.com/items?itemName=flower607.07Theme" diff --git a/themes/07-light.yaml b/themes/07-light.yaml index 59386a15..686ab447 100644 --- a/themes/07-light.yaml +++ b/themes/07-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "flower607.07Theme" version: "1.0.0" installs: 290 + rating: 5 + ratings: 1 author: "flower607" repo: "https://github.com/flower-dc/07Theme" url: "https://marketplace.visualstudio.com/items?itemName=flower607.07Theme" diff --git a/themes/0a515-dark.yaml b/themes/0a515-dark.yaml index 48c89c95..ad0dc5de 100644 --- a/themes/0a515-dark.yaml +++ b/themes/0a515-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kingllama.oa515" version: "1.2.0" installs: 95 + rating: 5 + ratings: 2 author: "kingllama" repo: "https://github.com/kingllama/vscode-OA515" url: "https://marketplace.visualstudio.com/items?itemName=kingllama.oa515" diff --git a/themes/0x96f-theme.yaml b/themes/0x96f-theme.yaml index 7090cbc1..5d7a43ee 100644 --- a/themes/0x96f-theme.yaml +++ b/themes/0x96f-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "filipjane.0x96f-vscode-theme" version: "0.2.0" installs: 625 + rating: 0 + ratings: 0 author: "Filip" repo: "https://github.com/filipjanevski/0x96f-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=filipjane.0x96f-vscode-theme" diff --git a/themes/1.yaml b/themes/1.yaml index 7ee4f1cb..e7908bf6 100644 --- a/themes/1.yaml +++ b/themes/1.yaml @@ -1,11 +1,13 @@ name: "1️⃣" source: - marketplace_id: "PhanTriVietHoang.theme4anyone" - version: "1.0.3" - installs: 6 + marketplace_id: "PhanTriVietHoang.viethoang" + version: "0.0.4" + installs: 4 + rating: 0 + ratings: 0 author: "PhanTriVietHoang" - repo: "https://github.com/phantriviethoang/theme4anyone" - url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.theme4anyone" + repo: "https://github.com/phantriviethoang/vh-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.viethoang" colors: bg: "#282C34" fg: "#ABB2BF" diff --git a/themes/10004ok-dark.yaml b/themes/10004ok-dark.yaml new file mode 100644 index 00000000..d4114347 --- /dev/null +++ b/themes/10004ok-dark.yaml @@ -0,0 +1,52 @@ +name: "10004ok-dark" +source: + marketplace_id: "hyezoprk.10004ok" + version: "0.0.9" + installs: 37 + rating: 0 + ratings: 0 + author: "hyezoprk" + repo: "https://github.com/10004ok/10004ok-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hyezoprk.10004ok" +colors: + bg: "#1E293B" + fg: "#D6D6D6" + black: "#000000" + red: "#CD3131" + green: "#51E1A5" + yellow: "#51E1A5" + blue: "#C7ADFB" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 78.1 + black: 0 + red: 24.1 + green: 70.6 + yellow: 70.6 + blue: 61.5 + magenta: 27.2 + cyan: 45 + white: 87.4 + brightBlack: 19.4 + brightRed: 36 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/10x-dark-theme.yaml b/themes/10x-dark-theme.yaml index a19af184..74164ce6 100644 --- a/themes/10x-dark-theme.yaml +++ b/themes/10x-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gutenfries.10x-dark-theme" version: "1.1.1" installs: 422 + rating: 0 + ratings: 0 author: "Mark Gutenberger" repo: "https://github.com/gutenfries/10x-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=gutenfries.10x-dark-theme" diff --git a/themes/1977.yaml b/themes/1977.yaml index bffbe0cd..d7b701a1 100644 --- a/themes/1977.yaml +++ b/themes/1977.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BrianYuen.1977" version: "0.0.3" installs: 610 + rating: 0 + ratings: 0 author: "Brian Yuen" repo: "https://github.com/brianyuen/vscode-1977" url: "https://marketplace.visualstudio.com/items?itemName=BrianYuen.1977" diff --git a/themes/1989.yaml b/themes/1989.yaml index ca886130..e026b780 100644 --- a/themes/1989.yaml +++ b/themes/1989.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dereje.1989" version: "1.0.1" installs: 98 + rating: 0 + ratings: 0 author: "dereje" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dereje.1989" diff --git a/themes/19th-century.yaml b/themes/19th-century.yaml index f5992cc5..f9a11be8 100644 --- a/themes/19th-century.yaml +++ b/themes/19th-century.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SkylarCoelho.nineteenth-century-engineer" version: "0.2.0" installs: 9 + rating: 0 + ratings: 0 author: "Skylar Coelho" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SkylarCoelho.nineteenth-century-engineer" diff --git a/themes/1dark-poncho-hc.yaml b/themes/1dark-poncho-hc.yaml index 72df74fa..ff2d6e97 100644 --- a/themes/1dark-poncho-hc.yaml +++ b/themes/1dark-poncho-hc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ginfuru.ginfuru-onedark-raincoat-theme" version: "0.9.9" installs: 24975 + rating: 5 + ratings: 7 author: "Ed Heltzel" repo: "https://github.com/ginfuru/vscode-1dark-raincoat" url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.ginfuru-onedark-raincoat-theme" diff --git a/themes/1mm-dracula.yaml b/themes/1mm-dracula.yaml index 780c1da5..44fae00f 100644 --- a/themes/1mm-dracula.yaml +++ b/themes/1mm-dracula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "joytrekker.1mm-themes" version: "0.0.1" installs: 37036 + rating: 5 + ratings: 3 author: "joytrekker" repo: "https://github.com/joytrekker/1mm-themes" url: "https://marketplace.visualstudio.com/items?itemName=joytrekker.1mm-themes" diff --git a/themes/2-colors.yaml b/themes/2-colors.yaml index b9e17636..96a1bba8 100644 --- a/themes/2-colors.yaml +++ b/themes/2-colors.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AC34.vscode-night-cruise" version: "0.1.0" installs: 1011 + rating: 0 + ratings: 0 author: "AC34" repo: "https://github.com/AC34/VSCode-Night-Cruise" url: "https://marketplace.visualstudio.com/items?itemName=AC34.vscode-night-cruise" diff --git a/themes/2077.yaml b/themes/2077.yaml index cef4eca1..f744b595 100644 --- a/themes/2077.yaml +++ b/themes/2077.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KvS.kvs-2077" version: "0.0.4" installs: 104 + rating: 5 + ratings: 1 author: "KvS" repo: "https://github.com/notKvS/2077-theme" url: "https://marketplace.visualstudio.com/items?itemName=KvS.kvs-2077" diff --git a/themes/24.yaml b/themes/24.yaml index 98740ecd..59c07bc4 100644 --- a/themes/24.yaml +++ b/themes/24.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.24" version: "0.0.12" installs: 79 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/y3mm/24" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.24" diff --git a/themes/25-blue.yaml b/themes/25-blue.yaml new file mode 100644 index 00000000..966cde3f --- /dev/null +++ b/themes/25-blue.yaml @@ -0,0 +1,50 @@ +name: "25時、ナイトコードで。Blue" +source: + marketplace_id: "renhartoz.25-ji-nightcord-blue" + version: "1.0.2" + installs: 20 + author: "renhartoz" + repo: "https://github.com/renhartoz/25ji-nightcord-blue" + url: "https://marketplace.visualstudio.com/items?itemName=renhartoz.25-ji-nightcord-blue" +colors: + bg: "#0E0E1A" + fg: "#E5F4FF" + black: "#060610" + red: "#BD6A8B" + green: "#137A7F" + yellow: "#CEAE8E" + blue: "#7289DA" + magenta: "#DDAACC" + cyan: "#86CECB" + white: "#A6B2FF" + brightBlack: "#5F6A89" + brightRed: "#BD6A8B" + brightGreen: "#137A7F" + brightYellow: "#CEAE8E" + brightBlue: "#7289DA" + brightMagenta: "#DDAACC" + brightCyan: "#86CECB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 283 + pair: null + contrast: + fg: 98.8 + black: 0 + red: 36.5 + green: 26.6 + yellow: 61.1 + blue: 40.7 + magenta: 64.2 + cyan: 69.1 + white: 63 + brightBlack: 24.6 + brightRed: 36.5 + brightGreen: 26.6 + brightYellow: 61.1 + brightBlue: 40.7 + brightMagenta: 64.2 + brightCyan: 69.1 + brightWhite: 107.5 diff --git a/themes/2am.yaml b/themes/2am.yaml index 4b0a82f8..c8c72a1a 100644 --- a/themes/2am.yaml +++ b/themes/2am.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "33p.2am" version: "0.3.2" installs: 1139 + rating: 5 + ratings: 1 author: "33p" repo: "https://github.com/33p/2am" url: "https://marketplace.visualstudio.com/items?itemName=33p.2am" diff --git a/themes/365-6-coder-theme.yaml b/themes/365-6-coder-theme.yaml index ce1dc7e0..2490216b 100644 --- a/themes/365-6-coder-theme.yaml +++ b/themes/365-6-coder-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dheeraj-kumar-rao.365-6--coder--theme" version: "0.3.0" installs: 86 + rating: 5 + ratings: 1 author: "dheeraj-kumar-rao" repo: "https://github.com/rao123dk/365.6-Coder-theme" url: "https://marketplace.visualstudio.com/items?itemName=dheeraj-kumar-rao.365-6--coder--theme" diff --git a/themes/365-day-october-dark.yaml b/themes/365-day-october-dark.yaml index de4eb9f6..16f0ce87 100644 --- a/themes/365-day-october-dark.yaml +++ b/themes/365-day-october-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/3xay.yaml b/themes/3xay.yaml index 441f19ec..b224efef 100644 --- a/themes/3xay.yaml +++ b/themes/3xay.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "3XAY.3xay-dark" version: "1.0.0" installs: 41 + rating: 0 + ratings: 0 author: "3XAY" repo: "https://github.com/3XAY/3xay-dark" url: "https://marketplace.visualstudio.com/items?itemName=3XAY.3xay-dark" diff --git a/themes/4-colours.yaml b/themes/4-colours.yaml index 3d367f1f..4a9aa93b 100644 --- a/themes/4-colours.yaml +++ b/themes/4-colours.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gpem.4-colours" version: "1.1.27" installs: 4651 + rating: 4 + ratings: 1 author: "gpem" repo: "https://github.com/Germain-Gadel/4-colours" url: "https://marketplace.visualstudio.com/items?itemName=gpem.4-colours" diff --git a/themes/404-flat.yaml b/themes/404-flat.yaml index 4d47c86b..76b98132 100644 --- a/themes/404-flat.yaml +++ b/themes/404-flat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arthur404dev.theme-404" version: "0.2.0" installs: 2447 + rating: 0 + ratings: 0 author: "Arthur 404 dev" repo: "https://github.com/404-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=arthur404dev.theme-404" diff --git a/themes/404-muted.yaml b/themes/404-muted.yaml new file mode 100644 index 00000000..a99a945d --- /dev/null +++ b/themes/404-muted.yaml @@ -0,0 +1,50 @@ +name: "404 - Muted" +source: + marketplace_id: "404mat.404muted" + version: "1.0.0" + installs: 140 + author: "404mat" + repo: "https://github.com/404mat/404muted" + url: "https://marketplace.visualstudio.com/items?itemName=404mat.404muted" +colors: + bg: "#000815" + fg: "#FBE179" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 248 + pair: null + contrast: + fg: 88.9 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/42nd.yaml b/themes/42nd.yaml index 8f97158f..f6013dd8 100644 --- a/themes/42nd.yaml +++ b/themes/42nd.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fawkes42.42nd" version: "0.0.15" installs: 118 + rating: 0 + ratings: 0 author: "fawkes42" repo: "https://github.com/fawkes42/42nd" url: "https://marketplace.visualstudio.com/items?itemName=fawkes42.42nd" diff --git a/themes/4am-session-aqua.yaml b/themes/4am-session-aqua.yaml index 4691637e..dc43b95f 100644 --- a/themes/4am-session-aqua.yaml +++ b/themes/4am-session-aqua.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "4Themes.4am-session-theme" version: "1.0.0" installs: 270 + rating: 0 + ratings: 0 author: "4Themes" repo: "https://github.com/4-themes/4am-session-theme" url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" diff --git a/themes/4am-session-blue.yaml b/themes/4am-session-blue.yaml index e1dbcf8a..28502a90 100644 --- a/themes/4am-session-blue.yaml +++ b/themes/4am-session-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "4Themes.4am-session-theme" version: "1.0.0" installs: 270 + rating: 0 + ratings: 0 author: "4Themes" repo: "https://github.com/4-themes/4am-session-theme" url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" diff --git a/themes/4am-session-green.yaml b/themes/4am-session-green.yaml index 4dfb2420..bee98cf1 100644 --- a/themes/4am-session-green.yaml +++ b/themes/4am-session-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "4Themes.4am-session-theme" version: "1.0.0" installs: 270 + rating: 0 + ratings: 0 author: "4Themes" repo: "https://github.com/4-themes/4am-session-theme" url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" diff --git a/themes/4am-session-orange.yaml b/themes/4am-session-orange.yaml index 50ed732e..f985d8b1 100644 --- a/themes/4am-session-orange.yaml +++ b/themes/4am-session-orange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "4Themes.4am-session-theme" version: "1.0.0" installs: 270 + rating: 0 + ratings: 0 author: "4Themes" repo: "https://github.com/4-themes/4am-session-theme" url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" diff --git a/themes/4am-session-red.yaml b/themes/4am-session-red.yaml index f467df80..0de17a0d 100644 --- a/themes/4am-session-red.yaml +++ b/themes/4am-session-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "4Themes.4am-session-theme" version: "1.0.0" installs: 270 + rating: 0 + ratings: 0 author: "4Themes" repo: "https://github.com/4-themes/4am-session-theme" url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" diff --git a/themes/4am-session-yellow.yaml b/themes/4am-session-yellow.yaml index 275ae30d..694ec20e 100644 --- a/themes/4am-session-yellow.yaml +++ b/themes/4am-session-yellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "4Themes.4am-session-theme" version: "1.0.0" installs: 270 + rating: 0 + ratings: 0 author: "4Themes" repo: "https://github.com/4-themes/4am-session-theme" url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" diff --git a/themes/6szn.yaml b/themes/6szn.yaml index bb417544..6e7edcae 100644 --- a/themes/6szn.yaml +++ b/themes/6szn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6.6szn-dark" version: "1.11.0" installs: 358 + rating: 5 + ratings: 1 author: "6" repo: "https://github.com/exeDavid/6szn-Theme" url: "https://marketplace.visualstudio.com/items?itemName=6.6szn-dark" diff --git a/themes/73nko-dark.yaml b/themes/73nko-dark.yaml new file mode 100644 index 00000000..4dee7a26 --- /dev/null +++ b/themes/73nko-dark.yaml @@ -0,0 +1,50 @@ +name: "73nko Dark" +source: + marketplace_id: "73nko.73nko-theme" + version: "1.0.0" + installs: 20 + author: "73nko" + repo: "https://github.com/73nko/73nko-theme" + url: "https://marketplace.visualstudio.com/items?itemName=73nko.73nko-theme" +colors: + bg: "#1F0A32" + fg: "#EDE5F2" + black: "#1F0A32" + red: "#E54258" + green: "#8AABDD" + yellow: "#E87A7D" + blue: "#8DA4BB" + magenta: "#A565A0" + cyan: "#E299BB" + white: "#EDE5F2" + brightBlack: "#7A5F8A" + brightRed: "#D64570" + brightGreen: "#8AABDD" + brightYellow: "#E87A7D" + brightBlue: "#C9C3E8" + brightMagenta: "#E299BB" + brightCyan: "#A565A0" + brightWhite: "#EDE5F2" +meta: + mode: "dark" + accent: "orange" + hue: 305 + pair: "73nko Light" + contrast: + fg: 91.7 + black: 0 + red: 34.6 + green: 54.8 + yellow: 47.4 + blue: 50.6 + magenta: 31.7 + cyan: 57.8 + white: 91.7 + brightBlack: 23.4 + brightRed: 32.3 + brightGreen: 54.8 + brightYellow: 47.4 + brightBlue: 71.9 + brightMagenta: 57.8 + brightCyan: 31.7 + brightWhite: 91.7 diff --git a/themes/73nko-light.yaml b/themes/73nko-light.yaml new file mode 100644 index 00000000..fcaf25a6 --- /dev/null +++ b/themes/73nko-light.yaml @@ -0,0 +1,50 @@ +name: "73nko Light" +source: + marketplace_id: "73nko.73nko-theme" + version: "1.0.0" + installs: 20 + author: "73nko" + repo: "https://github.com/73nko/73nko-theme" + url: "https://marketplace.visualstudio.com/items?itemName=73nko.73nko-theme" +colors: + bg: "#F5F2F7" + fg: "#2A1040" + black: "#2A1040" + red: "#C73D52" + green: "#5A88C7" + yellow: "#CC5F62" + blue: "#7A6B95" + magenta: "#8A5A90" + cyan: "#C2487A" + white: "#F5F2F7" + brightBlack: "#9B8AAA" + brightRed: "#B83D5F" + brightGreen: "#5A88C7" + brightYellow: "#CC5F62" + brightBlue: "#5D4575" + brightMagenta: "#C2487A" + brightCyan: "#8A5A90" + brightWhite: "#F5F2F7" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "73nko Dark" + contrast: + fg: 96.3 + black: 96.3 + red: 66.2 + green: 56.6 + yellow: 58.8 + blue: 66.2 + magenta: 69.2 + cyan: 64.5 + white: 0 + brightBlack: 51.8 + brightRed: 69 + brightGreen: 56.6 + brightYellow: 58.8 + brightBlue: 81 + brightMagenta: 64.5 + brightCyan: 69.2 + brightWhite: 0 diff --git a/themes/7lou-theme.yaml b/themes/7lou-theme.yaml index 55b5f4a9..bb487311 100644 --- a/themes/7lou-theme.yaml +++ b/themes/7lou-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bachiramiri.7lou-vscode" version: "0.1.1" installs: 2004 + rating: 5 + ratings: 1 author: "Bachir Amiri" repo: "https://github.com/BachirAmiri/7lou-vscode" url: "https://marketplace.visualstudio.com/items?itemName=bachiramiri.7lou-vscode" diff --git a/themes/8-bit-dark.yaml b/themes/8-bit-dark.yaml index 76422f15..bbd5c93e 100644 --- a/themes/8-bit-dark.yaml +++ b/themes/8-bit-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "handsomeone.8bit" version: "0.2.3" installs: 29600 + rating: 4.75 + ratings: 12 author: "Zhou Qi" repo: "https://github.com/HandsomeOne/8bit" url: "https://marketplace.visualstudio.com/items?itemName=handsomeone.8bit" diff --git a/themes/8-bit-light-high-contrast.yaml b/themes/8-bit-light-high-contrast.yaml index da81ae22..198d57e3 100644 --- a/themes/8-bit-light-high-contrast.yaml +++ b/themes/8-bit-light-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pbower.8-bit-high-contrast" version: "0.0.1" installs: 248 + rating: 0 + ratings: 0 author: "pbower" repo: "https://github.com/pbower/8-Bit-High-Contrast" url: "https://marketplace.visualstudio.com/items?itemName=pbower.8-bit-high-contrast" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 106 black: 0 diff --git a/themes/8-bit-light.yaml b/themes/8-bit-light.yaml index c20af95d..584be5b7 100644 --- a/themes/8-bit-light.yaml +++ b/themes/8-bit-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "handsomeone.8bit" version: "0.2.3" installs: 29600 + rating: 4.75 + ratings: 12 author: "Zhou Qi" repo: "https://github.com/HandsomeOne/8bit" url: "https://marketplace.visualstudio.com/items?itemName=handsomeone.8bit" diff --git a/themes/8-bit-theme.yaml b/themes/8-bit-theme.yaml index f977645c..453721b6 100644 --- a/themes/8-bit-theme.yaml +++ b/themes/8-bit-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cicero-lino.cicero-lino-theme" version: "1.0.1" installs: 9 + rating: 0 + ratings: 0 author: "cicero-lino" repo: "https://github.com/CiceroLino/cicero-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=cicero-lino.cicero-lino-theme" diff --git a/themes/80-neon-vibes-fluor.yaml b/themes/80-neon-vibes-fluor.yaml index 24b6b087..293183ee 100644 --- a/themes/80-neon-vibes-fluor.yaml +++ b/themes/80-neon-vibes-fluor.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "caiqueex.neon-beat" version: "0.0.5" installs: 1204 + rating: 4 + ratings: 1 author: "Caique Lourenço" repo: "https://github.com/caiqueex/neon-beat-vscode" url: "https://marketplace.visualstudio.com/items?itemName=caiqueex.neon-beat" diff --git a/themes/80-neon-vibes.yaml b/themes/80-neon-vibes.yaml index d793c712..e4bcae24 100644 --- a/themes/80-neon-vibes.yaml +++ b/themes/80-neon-vibes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "caiqueex.neon-beat" version: "0.0.5" installs: 1204 + rating: 4 + ratings: 1 author: "Caique Lourenço" repo: "https://github.com/caiqueex/neon-beat-vscode" url: "https://marketplace.visualstudio.com/items?itemName=caiqueex.neon-beat" diff --git a/themes/808s-heartbreak-theme.yaml b/themes/808s-heartbreak-theme.yaml index 22ee202a..df9fc93d 100644 --- a/themes/808s-heartbreak-theme.yaml +++ b/themes/808s-heartbreak-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chrisnevers.808s-and-heartbreak-theme" version: "0.7.0" installs: 463 + rating: 5 + ratings: 1 author: "Chris Nevers" repo: "http://github.com/chrisnevers/808s-and-heartbreak-theme" url: "https://marketplace.visualstudio.com/items?itemName=chrisnevers.808s-and-heartbreak-theme" diff --git a/themes/8v.yaml b/themes/8v.yaml index 6cf9a37f..31c91ae8 100644 --- a/themes/8v.yaml +++ b/themes/8v.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Voithila.8V" version: "0.0.8" installs: 150 + rating: 0 + ratings: 0 author: "Voithila" repo: "https://github.com/voithila/8v-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Voithila.8V" diff --git a/themes/8x8-dark-fork.yaml b/themes/8x8-dark-fork.yaml index 2a4fc1a3..a79d41b4 100644 --- a/themes/8x8-dark-fork.yaml +++ b/themes/8x8-dark-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xynny.dullgrey-theme" version: "0.0.1" installs: 1816 + rating: 0 + ratings: 0 author: "xynny" repo: "https://github.com/xynnylol/vsthemes" url: "https://marketplace.visualstudio.com/items?itemName=xynny.dullgrey-theme" diff --git a/themes/8x8-darker.yaml b/themes/8x8-darker.yaml index 3dc8371e..100de8d7 100644 --- a/themes/8x8-darker.yaml +++ b/themes/8x8-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "keepflying.csr-blue" version: "0.0.22" installs: 180 + rating: 0 + ratings: 0 author: "keepflying" repo: null url: "https://marketplace.visualstudio.com/items?itemName=keepflying.csr-blue" diff --git a/themes/8x8-fork.yaml b/themes/8x8-fork.yaml new file mode 100644 index 00000000..97fb80f1 --- /dev/null +++ b/themes/8x8-fork.yaml @@ -0,0 +1,52 @@ +name: "8x8 - Fork" +source: + marketplace_id: "keepflying.8x8theme" + version: "0.0.1" + installs: 457 + rating: 0 + ratings: 0 + author: "keepflying" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=keepflying.8x8theme" +colors: + bg: "#F0F0F0" + fg: "#000000" + black: "#29343D" + red: "#F8961E" + green: "#8EFF38" + yellow: "#F3722C" + blue: "#577590" + magenta: "#F9C74F" + cyan: "#43AA8B" + white: "#555555" + brightBlack: "#394956" + brightRed: "#F8961E" + brightGreen: "#90BE6D" + brightYellow: "#F3722C" + brightBlue: "#577590" + brightMagenta: "#F9C74F" + brightCyan: "#43AA8B" + brightWhite: "#ABABAB" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 97.1 + black: 89.8 + red: 34.8 + green: 0 + yellow: 45.6 + blue: 64.5 + magenta: 17.2 + cyan: 45.5 + white: 77 + brightBlack: 82.5 + brightRed: 34.8 + brightGreen: 33.2 + brightYellow: 45.6 + brightBlue: 64.5 + brightMagenta: 17.2 + brightCyan: 45.5 + brightWhite: 36.4 diff --git a/themes/9-way-ticket.yaml b/themes/9-way-ticket.yaml index 9b8cc258..3c46686c 100644 --- a/themes/9-way-ticket.yaml +++ b/themes/9-way-ticket.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "flover.fromis-day" version: "0.0.5" installs: 198 + rating: 0 + ratings: 0 author: "flover" repo: null url: "https://marketplace.visualstudio.com/items?itemName=flover.fromis-day" diff --git a/themes/a-2-theme.yaml b/themes/a-2-theme.yaml index 026c7f96..8020ce82 100644 --- a/themes/a-2-theme.yaml +++ b/themes/a-2-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AmitGupta60600.a2-theme" version: "0.0.3" installs: 83 + rating: 5 + ratings: 2 author: "Amit.Gupta" repo: "https://github.com/Amit7976/A.2-Theme" url: "https://marketplace.visualstudio.com/items?itemName=AmitGupta60600.a2-theme" diff --git a/themes/a-cup-of-coffee.yaml b/themes/a-cup-of-coffee.yaml index ab67a796..dfe7f8ee 100644 --- a/themes/a-cup-of-coffee.yaml +++ b/themes/a-cup-of-coffee.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HenriLima05.a-cup-of-coffee" version: "0.0.2" installs: 4677 + rating: 5 + ratings: 3 author: "Henri Lima" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.a-cup-of-coffee" diff --git a/themes/a-github-dark-dimmed-1-red.yaml b/themes/a-github-dark-dimmed-1-red.yaml index 3fb77a4c..2f6dd78c 100644 --- a/themes/a-github-dark-dimmed-1-red.yaml +++ b/themes/a-github-dark-dimmed-1-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-dark-dimmed-2-orange.yaml b/themes/a-github-dark-dimmed-2-orange.yaml index cfb61651..ce611682 100644 --- a/themes/a-github-dark-dimmed-2-orange.yaml +++ b/themes/a-github-dark-dimmed-2-orange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-dark-dimmed-3-green.yaml b/themes/a-github-dark-dimmed-3-green.yaml index a57be47e..ce7fb671 100644 --- a/themes/a-github-dark-dimmed-3-green.yaml +++ b/themes/a-github-dark-dimmed-3-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-dark-dimmed-4-blue.yaml b/themes/a-github-dark-dimmed-4-blue.yaml index 156ee6d7..50032773 100644 --- a/themes/a-github-dark-dimmed-4-blue.yaml +++ b/themes/a-github-dark-dimmed-4-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-dark-dimmed-5-purple.yaml b/themes/a-github-dark-dimmed-5-purple.yaml index 45277f25..195384d7 100644 --- a/themes/a-github-dark-dimmed-5-purple.yaml +++ b/themes/a-github-dark-dimmed-5-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-dark-dimmed-brown.yaml b/themes/a-github-dark-dimmed-brown.yaml index 0ae8edaa..b96b5e34 100644 --- a/themes/a-github-dark-dimmed-brown.yaml +++ b/themes/a-github-dark-dimmed-brown.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-dark-dimmed-muted.yaml b/themes/a-github-dark-dimmed-muted.yaml index 87af81f6..3b0b2026 100644 --- a/themes/a-github-dark-dimmed-muted.yaml +++ b/themes/a-github-dark-dimmed-muted.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-dark-dimmed-vampire.yaml b/themes/a-github-dark-dimmed-vampire.yaml index 6aefc7ef..44749aa3 100644 --- a/themes/a-github-dark-dimmed-vampire.yaml +++ b/themes/a-github-dark-dimmed-vampire.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-dark-high-contrast-1-red.yaml b/themes/a-github-dark-high-contrast-1-red.yaml index 3fded4f5..a7c5b649 100644 --- a/themes/a-github-dark-high-contrast-1-red.yaml +++ b/themes/a-github-dark-high-contrast-1-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-dark-high-contrast-2-orange.yaml b/themes/a-github-dark-high-contrast-2-orange.yaml index e7ebafd1..509468fa 100644 --- a/themes/a-github-dark-high-contrast-2-orange.yaml +++ b/themes/a-github-dark-high-contrast-2-orange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-dark-high-contrast-3-green.yaml b/themes/a-github-dark-high-contrast-3-green.yaml index 8b5bc567..a0b2f07c 100644 --- a/themes/a-github-dark-high-contrast-3-green.yaml +++ b/themes/a-github-dark-high-contrast-3-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-dark-high-contrast-4-blue.yaml b/themes/a-github-dark-high-contrast-4-blue.yaml index b19eefb9..465c98b6 100644 --- a/themes/a-github-dark-high-contrast-4-blue.yaml +++ b/themes/a-github-dark-high-contrast-4-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-dark-high-contrast-5-purple.yaml b/themes/a-github-dark-high-contrast-5-purple.yaml index e4bb2c82..ceffcce6 100644 --- a/themes/a-github-dark-high-contrast-5-purple.yaml +++ b/themes/a-github-dark-high-contrast-5-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-dark-muted.yaml b/themes/a-github-dark-muted.yaml index fbc59e96..ca736c00 100644 --- a/themes/a-github-dark-muted.yaml +++ b/themes/a-github-dark-muted.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-dark-vampire.yaml b/themes/a-github-dark-vampire.yaml index b331fe52..5c4788b9 100644 --- a/themes/a-github-dark-vampire.yaml +++ b/themes/a-github-dark-vampire.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-light-1-red.yaml b/themes/a-github-light-1-red.yaml index a04a36ef..5d9d63d9 100644 --- a/themes/a-github-light-1-red.yaml +++ b/themes/a-github-light-1-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-light-2-orange.yaml b/themes/a-github-light-2-orange.yaml index 8845665d..6c843e54 100644 --- a/themes/a-github-light-2-orange.yaml +++ b/themes/a-github-light-2-orange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-light-3-green.yaml b/themes/a-github-light-3-green.yaml index 3f24c5b6..913856a7 100644 --- a/themes/a-github-light-3-green.yaml +++ b/themes/a-github-light-3-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-light-4-blue.yaml b/themes/a-github-light-4-blue.yaml index 32fe924b..e28917d6 100644 --- a/themes/a-github-light-4-blue.yaml +++ b/themes/a-github-light-4-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-github-light-5-purple.yaml b/themes/a-github-light-5-purple.yaml index f8c120e6..53e22a85 100644 --- a/themes/a-github-light-5-purple.yaml +++ b/themes/a-github-light-5-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markmiro.colorful-github-vscode-theme" version: "6.8.0" installs: 893 + rating: 5 + ratings: 1 author: "Mark Miro" repo: "https://github.com/markmiro/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" diff --git a/themes/a-green-cat-dimmed.yaml b/themes/a-green-cat-dimmed.yaml index cad036eb..723e0ef1 100644 --- a/themes/a-green-cat-dimmed.yaml +++ b/themes/a-green-cat-dimmed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "agreencat.a-green-cat-theme" version: "1.0.3" installs: 369 + rating: 5 + ratings: 1 author: "a_green_cat" repo: "https://github.com/KiraGreifeneder/a-green-cat-theme" url: "https://marketplace.visualstudio.com/items?itemName=agreencat.a-green-cat-theme" diff --git a/themes/a-green-cat.yaml b/themes/a-green-cat.yaml new file mode 100644 index 00000000..81fbb6b3 --- /dev/null +++ b/themes/a-green-cat.yaml @@ -0,0 +1,52 @@ +name: "a_green_cat" +source: + marketplace_id: "agreencat.a-green-cat-theme" + version: "1.0.3" + installs: 369 + rating: 5 + ratings: 1 + author: "a_green_cat" + repo: "https://github.com/KiraGreifeneder/a-green-cat-theme" + url: "https://marketplace.visualstudio.com/items?itemName=agreencat.a-green-cat-theme" +colors: + bg: "#101010" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/a-j-light.yaml b/themes/a-j-light.yaml new file mode 100644 index 00000000..1856753a --- /dev/null +++ b/themes/a-j-light.yaml @@ -0,0 +1,52 @@ +name: "A/J Light" +source: + marketplace_id: "Earendel.apple-jazz-theme" + version: "0.1.0" + installs: 576 + rating: 5 + ratings: 1 + author: "Earendel" + repo: "https://github.com/shoguncoffee/apple-jazz" + url: "https://marketplace.visualstudio.com/items?itemName=Earendel.apple-jazz-theme" +colors: + bg: "#FFFFFF" + fg: "#1F2328" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 102.8 + black: 101.5 + red: 74.8 + green: 85.2 + yellow: 98 + blue: 74.9 + magenta: 74.3 + cyan: 73.8 + white: 71.6 + brightBlack: 81.8 + brightRed: 85.2 + brightGreen: 74.6 + brightYellow: 92 + brightBlue: 60.7 + brightMagenta: 59.3 + brightCyan: 63.3 + brightWhite: 57.2 diff --git a/themes/aauu.yaml b/themes/aauu.yaml index b92eb5e8..689d67b8 100644 --- a/themes/aauu.yaml +++ b/themes/aauu.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "blackblackcat.vscode-flow" version: "0.1.4" installs: 1464 + rating: 0 + ratings: 0 author: "black_black_cat" repo: "https://github.com/black-black-cat/vscode-firefox-flow" url: "https://marketplace.visualstudio.com/items?itemName=blackblackcat.vscode-flow" diff --git a/themes/ab-dark.yaml b/themes/ab-dark.yaml index 0230090d..2080ce28 100644 --- a/themes/ab-dark.yaml +++ b/themes/ab-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ABABIL.ab-dark" version: "1.1.0" installs: 50 + rating: 5 + ratings: 1 author: "ABABIL" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ABABIL.ab-dark" diff --git a/themes/abcdef.yaml b/themes/abcdef.yaml index b49004e4..a0cc06ec 100644 --- a/themes/abcdef.yaml +++ b/themes/abcdef.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jxne00.abcdef" version: "0.2.3" installs: 145 + rating: 0 + ratings: 0 author: "jxne00" repo: "https://github.com/jxne00/abcdef-theme" url: "https://marketplace.visualstudio.com/items?itemName=jxne00.abcdef" diff --git a/themes/abe-land.yaml b/themes/abe-land.yaml index 43abd68d..167f2dce 100644 --- a/themes/abe-land.yaml +++ b/themes/abe-land.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "abesoftware.abeland" version: "0.0.1" installs: 49 + rating: 0 + ratings: 0 author: "abesoftware" repo: "https://github.com/ablardo/abeland" url: "https://marketplace.visualstudio.com/items?itemName=abesoftware.abeland" diff --git a/themes/abissal.yaml b/themes/abissal.yaml index 38219cb3..67c7543f 100644 --- a/themes/abissal.yaml +++ b/themes/abissal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Henriquehnnm.abissal" version: "1.2.1" installs: 76 + rating: 0 + ratings: 0 author: "Henrique" repo: "https://github.com/Henriquehnnm/abissal-theme" url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.abissal" diff --git a/themes/aboc.yaml b/themes/aboc.yaml index db7c2fd8..1084f68f 100644 --- a/themes/aboc.yaml +++ b/themes/aboc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aboc.aboc" version: "0.0.4" installs: 94 + rating: 0 + ratings: 0 author: "aboc" repo: null url: "https://marketplace.visualstudio.com/items?itemName=aboc.aboc" diff --git a/themes/abolkog-dark.yaml b/themes/abolkog-dark.yaml index eb1b4409..a1fafd9a 100644 --- a/themes/abolkog-dark.yaml +++ b/themes/abolkog-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "abolkog.vscode-abolkog-light" version: "1.1.0" installs: 2730 + rating: 5 + ratings: 1 author: "Khalid Elshafie" repo: "https://github.com/abolkog/vscode-abolkog-theme" url: "https://marketplace.visualstudio.com/items?itemName=abolkog.vscode-abolkog-light" diff --git a/themes/abolkog-light.yaml b/themes/abolkog-light.yaml index 6f75866c..8d4e4d3f 100644 --- a/themes/abolkog-light.yaml +++ b/themes/abolkog-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "abolkog.vscode-abolkog-light" version: "1.1.0" installs: 2730 + rating: 5 + ratings: 1 author: "Khalid Elshafie" repo: "https://github.com/abolkog/vscode-abolkog-theme" url: "https://marketplace.visualstudio.com/items?itemName=abolkog.vscode-abolkog-light" diff --git a/themes/absent-contrast.yaml b/themes/absent-contrast.yaml index fe2c3b17..a7132fa9 100644 --- a/themes/absent-contrast.yaml +++ b/themes/absent-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/absent-light.yaml b/themes/absent-light.yaml index bfe86a6b..da03d545 100644 --- a/themes/absent-light.yaml +++ b/themes/absent-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/absent.yaml b/themes/absent.yaml index e4abf7b0..deb96422 100644 --- a/themes/absent.yaml +++ b/themes/absent.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/abstract-mh.yaml b/themes/abstract-mh.yaml index 63c916cd..25192f32 100644 --- a/themes/abstract-mh.yaml +++ b/themes/abstract-mh.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MiguelHP.Abstract-MH" version: "1.0.0" installs: 620 + rating: 5 + ratings: 1 author: "Miguel HP" repo: "https://github.com/MHP24/vsc-abstract-theme" url: "https://marketplace.visualstudio.com/items?itemName=MiguelHP.Abstract-MH" diff --git a/themes/abys-zora-dark.yaml b/themes/abys-zora-dark.yaml new file mode 100644 index 00000000..37d3e1f7 --- /dev/null +++ b/themes/abys-zora-dark.yaml @@ -0,0 +1,52 @@ +name: "Abys Zora Dark" +source: + marketplace_id: "haris.zoradark" + version: "0.7.0" + installs: 171 + rating: 0 + ratings: 0 + author: "haris" + repo: "https://github.com/Elhary/Zora" + url: "https://marketplace.visualstudio.com/items?itemName=haris.zoradark" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#454545" + red: "#D96767" + green: "#70C7A5" + yellow: "#C9C96F" + blue: "#2D91FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#DE7474" + brightGreen: "#6DB699" + brightYellow: "#D7B86E" + brightBlue: "#4AA0FF" + brightMagenta: "#D670D6" + brightCyan: "#75CCE2" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 10.2 + red: 40.2 + green: 63.3 + yellow: 71.1 + blue: 43.3 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 44.7 + brightGreen: 55.1 + brightYellow: 66 + brightBlue: 49.8 + brightMagenta: 46.4 + brightCyan: 68.6 + brightWhite: 91 diff --git a/themes/abysal-marble.yaml b/themes/abysal-marble.yaml new file mode 100644 index 00000000..07388d84 --- /dev/null +++ b/themes/abysal-marble.yaml @@ -0,0 +1,52 @@ +name: "Abysal Marble" +source: + marketplace_id: "Andr3xDev.abysal-theme" + version: "1.0.0" + installs: 15 + rating: 0 + ratings: 0 + author: "Andr3xDev" + repo: "https://github.com/your-user/abysal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Andr3xDev.abysal-theme" +colors: + bg: "#DCDCDC" + fg: "#2F2F2F" + black: "#2F2F2F" + red: "#A8474A" + green: "#2C9279" + yellow: "#947635" + blue: "#365CA8" + magenta: "#824699" + cyan: "#2C9279" + white: "#2F2F2F" + brightBlack: "#AAAAAA" + brightRed: "#A8474A" + brightGreen: "#2C9279" + brightYellow: "#947635" + brightBlue: "#365CA8" + brightMagenta: "#824699" + brightCyan: "#2C9279" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.3 + black: 79.3 + red: 57.5 + green: 44.9 + yellow: 49 + blue: 61.2 + magenta: 60.9 + cyan: 44.9 + white: 79.3 + brightBlack: 25.3 + brightRed: 57.5 + brightGreen: 44.9 + brightYellow: 49 + brightBlue: 61.2 + brightMagenta: 60.9 + brightCyan: 44.9 + brightWhite: 0 diff --git a/themes/abysal-obsidian.yaml b/themes/abysal-obsidian.yaml new file mode 100644 index 00000000..a8d42a33 --- /dev/null +++ b/themes/abysal-obsidian.yaml @@ -0,0 +1,52 @@ +name: "Abysal Obsidian" +source: + marketplace_id: "Andr3xDev.abysal-theme" + version: "1.0.0" + installs: 15 + rating: 0 + ratings: 0 + author: "Andr3xDev" + repo: "https://github.com/your-user/abysal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Andr3xDev.abysal-theme" +colors: + bg: "#1C1C1C" + fg: "#D4D4D4" + black: "#1C1C1C" + red: "#D47779" + green: "#52C9B0" + yellow: "#D1B171" + blue: "#6B92E3" + magenta: "#B87BCE" + cyan: "#52C9B0" + white: "#D4D4D4" + brightBlack: "#777777" + brightRed: "#D47779" + brightGreen: "#52C9B0" + brightYellow: "#D1B171" + brightBlue: "#6B92E3" + brightMagenta: "#B87BCE" + brightCyan: "#52C9B0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.9 + black: 0 + red: 42.2 + green: 61.6 + yellow: 60.8 + blue: 42.8 + magenta: 42.3 + cyan: 61.6 + white: 78.9 + brightBlack: 29 + brightRed: 42.2 + brightGreen: 61.6 + brightYellow: 60.8 + brightBlue: 42.8 + brightMagenta: 42.3 + brightCyan: 61.6 + brightWhite: 106.3 diff --git a/themes/abyskai.yaml b/themes/abyskai.yaml index ee752e9d..dc0e8c83 100644 --- a/themes/abyskai.yaml +++ b/themes/abyskai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jamiesmiths.abyski" version: "0.0.15" installs: 2358 + rating: 5 + ratings: 2 author: "jamiesmiths" repo: "https://github.com/jsmithdev/abyski" url: "https://marketplace.visualstudio.com/items?itemName=jamiesmiths.abyski" diff --git a/themes/abyss.yaml b/themes/abyss.yaml index 114d9e30..ee04bd51 100644 --- a/themes/abyss.yaml +++ b/themes/abyss.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tommy-tang.custom-abyss-theme" version: "0.0.1" installs: 68 + rating: 0 + ratings: 0 author: "Tommytang111" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tommy-tang.custom-abyss-theme" diff --git a/themes/abyssal-anime.yaml b/themes/abyssal-anime.yaml new file mode 100644 index 00000000..bde56403 --- /dev/null +++ b/themes/abyssal-anime.yaml @@ -0,0 +1,52 @@ +name: "Abyssal-Anime" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 42 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" +colors: + bg: "#14110F" + fg: "#E6DFD6" + black: "#14110F" + red: "#E07A5F" + green: "#A3B18A" + yellow: "#E6B566" + blue: "#7DAEA3" + magenta: "#B48EAD" + cyan: "#89B0AE" + white: "#E6DFD6" + brightBlack: "#8F867C" + brightRed: "#E07A5F" + brightGreen: "#A3B18A" + brightYellow: "#E6B566" + brightBlue: "#7DAEA3" + brightMagenta: "#B48EAD" + brightCyan: "#89B0AE" + brightWhite: "#E6DFD6" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.3 + black: 0 + red: 45.6 + green: 56.6 + yellow: 66.4 + blue: 52.7 + magenta: 46.9 + cyan: 54.9 + white: 87.3 + brightBlack: 37.7 + brightRed: 45.6 + brightGreen: 56.6 + brightYellow: 66.4 + brightBlue: 52.7 + brightMagenta: 46.9 + brightCyan: 54.9 + brightWhite: 87.3 diff --git a/themes/abyssal-black.yaml b/themes/abyssal-black.yaml new file mode 100644 index 00000000..725b6d49 --- /dev/null +++ b/themes/abyssal-black.yaml @@ -0,0 +1,52 @@ +name: "Abyssal-Black" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 42 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" +colors: + bg: "#0D0D0D" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#A4A4A4" + green: "#B6B6B6" + yellow: "#CECECE" + blue: "#8D8D8D" + magenta: "#9B9B9B" + cyan: "#B0B0B0" + white: "#FFFFFF" + brightBlack: "#8D8D8D" + brightRed: "#A4A4A4" + brightGreen: "#B6B6B6" + brightYellow: "#CECECE" + brightBlue: "#8D8D8D" + brightMagenta: "#9B9B9B" + brightCyan: "#B0B0B0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 107.6 + black: 0 + red: 52.7 + green: 62.6 + yellow: 76.6 + blue: 40.8 + magenta: 48 + cyan: 59.3 + white: 107.6 + brightBlack: 40.8 + brightRed: 52.7 + brightGreen: 62.6 + brightYellow: 76.6 + brightBlue: 40.8 + brightMagenta: 48 + brightCyan: 59.3 + brightWhite: 107.6 diff --git a/themes/abyssal-blue.yaml b/themes/abyssal-blue.yaml new file mode 100644 index 00000000..88b7613c --- /dev/null +++ b/themes/abyssal-blue.yaml @@ -0,0 +1,52 @@ +name: "Abyssal Blue" +source: + marketplace_id: "Krisada-3131.serpentine-syntax" + version: "0.0.3" + installs: 38 + rating: 0 + ratings: 0 + author: "Krisada-3131" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Krisada-3131.serpentine-syntax" +colors: + bg: "#05090D" + fg: "#CED9E4" + black: "#0B70D5" + red: "#397FC5" + green: "#1664B3" + yellow: "#1B7ADA" + blue: "#2C76C0" + magenta: "#457DB6" + cyan: "#1A6FC4" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#549EE9" + brightGreen: "#2C7AC8" + brightYellow: "#4C9CEC" + brightBlue: "#4492E1" + brightMagenta: "#75A3D1" + brightCyan: "#3282D2" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "indigo" + hue: 243 + pair: null + contrast: + fg: 82.6 + black: 28.4 + red: 33 + green: 22.3 + yellow: 32.1 + blue: 29.3 + magenta: 31.9 + cyan: 26.9 + white: 107.8 + brightBlack: 22.9 + brightRed: 47.8 + brightGreen: 31.1 + brightYellow: 46.9 + brightBlue: 42 + brightMagenta: 50.2 + brightCyan: 34.7 + brightWhite: 90.9 diff --git a/themes/abyssal-catppuccin.yaml b/themes/abyssal-catppuccin.yaml new file mode 100644 index 00000000..2c22f6ce --- /dev/null +++ b/themes/abyssal-catppuccin.yaml @@ -0,0 +1,52 @@ +name: "Abyssal-Catppuccin" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 42 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#1E1E2E" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#CDD6F4" + brightBlack: "#6C7086" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#94E2D5" + brightWhite: "#CDD6F4" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 80 + black: 0 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 76.7 + cyan: 78.2 + white: 80 + brightBlack: 25.8 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 88.4 + brightBlue: 59.1 + brightMagenta: 76.7 + brightCyan: 78.2 + brightWhite: 80 diff --git a/themes/abyssal-dark.yaml b/themes/abyssal-dark.yaml new file mode 100644 index 00000000..0c69059d --- /dev/null +++ b/themes/abyssal-dark.yaml @@ -0,0 +1,52 @@ +name: "Abyssal-Dark" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 42 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" +colors: + bg: "#061115" + fg: "#D9D7D6" + black: "#061115" + red: "#DF5B61" + green: "#78B892" + yellow: "#ECD28B" + blue: "#6791C9" + magenta: "#C488EC" + cyan: "#7ACFE4" + white: "#D9D7D6" + brightBlack: "#455054" + brightRed: "#DF5B61" + brightGreen: "#78B892" + brightYellow: "#ECD28B" + brightBlue: "#5A84BC" + brightMagenta: "#C488EC" + brightCyan: "#7ACFE4" + brightWhite: "#D9D7D6" +meta: + mode: "dark" + accent: "orange" + hue: 222 + pair: null + contrast: + fg: 82.1 + black: 0 + red: 38.2 + green: 56.1 + yellow: 80.1 + blue: 41.6 + magenta: 50.9 + cyan: 69.9 + white: 82.1 + brightBlack: 13.1 + brightRed: 38.2 + brightGreen: 56.1 + brightYellow: 80.1 + brightBlue: 35.4 + brightMagenta: 50.9 + brightCyan: 69.9 + brightWhite: 82.1 diff --git a/themes/abyssal-dracula.yaml b/themes/abyssal-dracula.yaml new file mode 100644 index 00000000..b6e88793 --- /dev/null +++ b/themes/abyssal-dracula.yaml @@ -0,0 +1,52 @@ +name: "Abyssal-Dracula" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 42 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#282A36" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#6272A4" + magenta: "#BD93F9" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#6272A4" + brightMagenta: "#BD93F9" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: null + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 25.1 + magenta: 50.7 + cyan: 81 + white: 99 + brightBlack: 25.1 + brightRed: 40.4 + brightGreen: 81.9 + brightYellow: 95.6 + brightBlue: 25.1 + brightMagenta: 50.7 + brightCyan: 81 + brightWhite: 99 diff --git a/themes/abyssal-e-ink.yaml b/themes/abyssal-e-ink.yaml new file mode 100644 index 00000000..74269e63 --- /dev/null +++ b/themes/abyssal-e-ink.yaml @@ -0,0 +1,52 @@ +name: "Abyssal-E-Ink" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 42 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#2A2A2A" + green: "#3A3A3A" + yellow: "#4A4A4A" + blue: "#1A1A1A" + magenta: "#2E2E2E" + cyan: "#3E3E3E" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#2A2A2A" + brightGreen: "#3A3A3A" + brightYellow: "#4A4A4A" + brightBlue: "#1A1A1A" + brightMagenta: "#2E2E2E" + brightCyan: "#3E3E3E" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 101.1 + green: 96.3 + yellow: 90.3 + blue: 104.3 + magenta: 100.1 + cyan: 94.8 + white: 0 + brightBlack: 90.3 + brightRed: 101.1 + brightGreen: 96.3 + brightYellow: 90.3 + brightBlue: 104.3 + brightMagenta: 100.1 + brightCyan: 94.8 + brightWhite: 0 diff --git a/themes/abyssal-everforest.yaml b/themes/abyssal-everforest.yaml new file mode 100644 index 00000000..98dafcf8 --- /dev/null +++ b/themes/abyssal-everforest.yaml @@ -0,0 +1,52 @@ +name: "Abyssal-Everforest" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 42 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" +colors: + bg: "#2D353B" + fg: "#D3C6AA" + black: "#2D353B" + red: "#E67E80" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#83C092" + white: "#D3C6AA" + brightBlack: "#606B6F" + brightRed: "#E67E80" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#7FBBB3" + brightMagenta: "#D699B6" + brightCyan: "#83C092" + brightWhite: "#D3C6AA" +meta: + mode: "dark" + accent: "orange" + hue: 240 + pair: null + contrast: + fg: 66.6 + black: 0 + red: 43.1 + green: 57.5 + yellow: 62.4 + blue: 53.4 + magenta: 50.5 + cyan: 54.7 + white: 66.6 + brightBlack: 18.3 + brightRed: 43.1 + brightGreen: 57.5 + brightYellow: 62.4 + brightBlue: 53.4 + brightMagenta: 50.5 + brightCyan: 54.7 + brightWhite: 66.6 diff --git a/themes/abyssal-gruvbox.yaml b/themes/abyssal-gruvbox.yaml new file mode 100644 index 00000000..f1e1ef06 --- /dev/null +++ b/themes/abyssal-gruvbox.yaml @@ -0,0 +1,52 @@ +name: "Abyssal-Gruvbox" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 42 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" +colors: + bg: "#282828" + fg: "#D4BE98" + black: "#282828" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#7C6F64" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#D4BE98" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.6 + black: 0 + red: 40.5 + green: 55.6 + yellow: 55.4 + blue: 49.8 + magenta: 45.5 + cyan: 52.2 + white: 65.6 + brightBlack: 24.5 + brightRed: 40.5 + brightGreen: 55.6 + brightYellow: 55.4 + brightBlue: 49.8 + brightMagenta: 45.5 + brightCyan: 52.2 + brightWhite: 65.6 diff --git a/themes/abyssal-hacker.yaml b/themes/abyssal-hacker.yaml new file mode 100644 index 00000000..2256af1f --- /dev/null +++ b/themes/abyssal-hacker.yaml @@ -0,0 +1,52 @@ +name: "Abyssal-Hacker" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 42 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" +colors: + bg: "#0B0C16" + fg: "#DDF7FF" + black: "#0B0C16" + red: "#50F872" + green: "#4FE88F" + yellow: "#50F7D4" + blue: "#829DD4" + magenta: "#86A7DF" + cyan: "#7CF8F7" + white: "#DDF7FF" + brightBlack: "#6A6E95" + brightRed: "#50F872" + brightGreen: "#4FE88F" + brightYellow: "#50F7D4" + brightBlue: "#829DD4" + brightMagenta: "#86A7DF" + brightCyan: "#7CF8F7" + brightWhite: "#DDF7FF" +meta: + mode: "dark" + accent: "green" + hue: 279 + pair: null + contrast: + fg: 99.3 + black: 0 + red: 84.4 + green: 76.7 + yellow: 86.8 + blue: 49 + magenta: 53.8 + cyan: 90.8 + white: 99.3 + brightBlack: 27.4 + brightRed: 84.4 + brightGreen: 76.7 + brightYellow: 86.8 + brightBlue: 49 + brightMagenta: 53.8 + brightCyan: 90.8 + brightWhite: 99.3 diff --git a/themes/abyssal-latte.yaml b/themes/abyssal-latte.yaml new file mode 100644 index 00000000..42cfa359 --- /dev/null +++ b/themes/abyssal-latte.yaml @@ -0,0 +1,52 @@ +name: "Abyssal-Latte" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 42 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" +colors: + bg: "#EFF1F5" + fg: "#4C4F69" + black: "#4C4F69" + red: "#D20F39" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#EA76CB" + cyan: "#179299" + white: "#EFF1F5" + brightBlack: "#6C6F85" + brightRed: "#D20F39" + brightGreen: "#40A02B" + brightYellow: "#DF8E1D" + brightBlue: "#1E66F5" + brightMagenta: "#EA76CB" + brightCyan: "#179299" + brightWhite: "#EFF1F5" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 79.3 + black: 79.3 + red: 66.3 + green: 52.1 + yellow: 42.3 + blue: 64.8 + magenta: 42.6 + cyan: 56.1 + white: 0 + brightBlack: 65.8 + brightRed: 66.3 + brightGreen: 52.1 + brightYellow: 42.3 + brightBlue: 64.8 + brightMagenta: 42.6 + brightCyan: 56.1 + brightWhite: 0 diff --git a/themes/abyssal-mirage.yaml b/themes/abyssal-mirage.yaml new file mode 100644 index 00000000..83cceb08 --- /dev/null +++ b/themes/abyssal-mirage.yaml @@ -0,0 +1,52 @@ +name: "Abyssal Mirage" +source: + marketplace_id: "Krisada-3131.serpentine-syntax" + version: "0.0.3" + installs: 38 + rating: 0 + ratings: 0 + author: "Krisada-3131" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Krisada-3131.serpentine-syntax" +colors: + bg: "#0D050B" + fg: "#CFE3D1" + black: "#CBCF11" + red: "#3DC169" + green: "#A81AAF" + yellow: "#2099D5" + blue: "#BC3044" + magenta: "#8FB348" + cyan: "#BF1F6A" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#58E587" + brightGreen: "#BA30C4" + brightYellow: "#50B5E8" + brightBlue: "#DD485D" + brightMagenta: "#B1CE78" + brightCyan: "#CE367D" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 335 + pair: null + contrast: + fg: 86.4 + black: 73.1 + red: 56.6 + green: 22.9 + yellow: 43 + blue: 24.2 + magenta: 54.6 + cyan: 24.4 + white: 107.8 + brightBlack: 23 + brightRed: 75.5 + brightGreen: 29.1 + brightYellow: 56.9 + brightBlue: 34.7 + brightMagenta: 70.6 + brightCyan: 30.1 + brightWhite: 90.9 diff --git a/themes/abyssal-nord.yaml b/themes/abyssal-nord.yaml new file mode 100644 index 00000000..be09431a --- /dev/null +++ b/themes/abyssal-nord.yaml @@ -0,0 +1,52 @@ +name: "Abyssal-Nord" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 42 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" +colors: + bg: "#2E3440" + fg: "#D8DEE9" + black: "#2E3440" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#ECEFF4" + brightBlack: "#616E88" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 80.3 + black: 0 + red: 27.9 + green: 56.6 + yellow: 71.3 + blue: 43.6 + magenta: 41.4 + cyan: 57.6 + white: 91.2 + brightBlack: 20.3 + brightRed: 27.9 + brightGreen: 56.6 + brightYellow: 71.3 + brightBlue: 43.6 + brightMagenta: 41.4 + brightCyan: 57.6 + brightWhite: 91.2 diff --git a/themes/abyssal-tokyo-night.yaml b/themes/abyssal-tokyo-night.yaml new file mode 100644 index 00000000..a3751c61 --- /dev/null +++ b/themes/abyssal-tokyo-night.yaml @@ -0,0 +1,52 @@ +name: "Abyssal-Tokyo-Night" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 42 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#1A1B26" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#AD8EE6" + cyan: "#449DAB" + white: "#A9B1D6" + brightBlack: "#565F89" + brightRed: "#F7768E" + brightGreen: "#9ECE6A" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#AD8EE6" + brightCyan: "#449DAB" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 59.3 + black: 0 + red: 49.4 + green: 66.9 + yellow: 62.2 + blue: 51.1 + magenta: 48.1 + cyan: 41.8 + white: 59.3 + brightBlack: 19.5 + brightRed: 49.4 + brightGreen: 66.9 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 48.1 + brightCyan: 41.8 + brightWhite: 73.8 diff --git a/themes/acario.yaml b/themes/acario.yaml index ebcaf448..0113d8ec 100644 --- a/themes/acario.yaml +++ b/themes/acario.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gagbo.acario" version: "0.0.1" installs: 506 + rating: 0 + ratings: 0 author: "gagbo" repo: "https://github.com/gagbo/acario-vscode" url: "https://marketplace.visualstudio.com/items?itemName=gagbo.acario" diff --git a/themes/access-color-theme.yaml b/themes/access-color-theme.yaml new file mode 100644 index 00000000..1a017071 --- /dev/null +++ b/themes/access-color-theme.yaml @@ -0,0 +1,52 @@ +name: "access-color-theme" +source: + marketplace_id: "huacat.office-theme" + version: "1.4.1" + installs: 75529 + rating: 4.9 + ratings: 10 + author: "huacat" + repo: "https://github.com/huacat1017/huacat.office-theme" + url: "https://marketplace.visualstudio.com/items?itemName=huacat.office-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#F4B183" + green: "#A8D08D" + yellow: "#FFC000" + blue: "#8EAADB" + magenta: "#B2A1C7" + cyan: "#9CC3E5" + white: "#A5A5A5" + brightBlack: "#808080" + brightRed: "#C0504D" + brightGreen: "#70AD47" + brightYellow: "#E0A903" + brightBlue: "#4472C4" + brightMagenta: "#8064A2" + brightCyan: "#5B9BD5" + brightWhite: "#C9C9C9" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 34.2 + green: 31.6 + yellow: 28.2 + blue: 46.4 + magenta: 46.9 + cyan: 34.8 + white: 48.5 + brightBlack: 66.9 + brightRed: 71.8 + brightGreen: 52.3 + brightYellow: 41.6 + brightBlue: 72.5 + brightMagenta: 74 + brightCyan: 56 + brightWhite: 29 diff --git a/themes/ace-palenight.yaml b/themes/ace-palenight.yaml new file mode 100644 index 00000000..9e5f7c52 --- /dev/null +++ b/themes/ace-palenight.yaml @@ -0,0 +1,52 @@ +name: "Ace Palenight" +source: + marketplace_id: "acestojanoski.ace-palenight" + version: "1.0.2" + installs: 33273 + rating: 5 + ratings: 3 + author: "Aleksandar Stojanoski" + repo: "https://github.com/acestojanoski/ace-palenight" + url: "https://marketplace.visualstudio.com/items?itemName=acestojanoski.ace-palenight" +colors: + bg: "#282C35" + fg: "#D4D4D4" + black: "#7F7F7F" + red: "#E15A60" + green: "#99C794" + yellow: "#FFE2A9" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#7F7F7F" + brightRed: "#E15A60" + brightGreen: "#99C794" + brightYellow: "#FFE2A9" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 266 + pair: null + contrast: + fg: 76.3 + black: 30.1 + red: 34.6 + green: 61.6 + yellow: 87 + blue: 40.9 + magenta: 48.8 + cyan: 49.8 + white: 76.3 + brightBlack: 30.1 + brightRed: 34.6 + brightGreen: 61.6 + brightYellow: 87 + brightBlue: 40.9 + brightMagenta: 48.8 + brightCyan: 49.8 + brightWhite: 76.3 diff --git a/themes/acekaizen-code-theme.yaml b/themes/acekaizen-code-theme.yaml new file mode 100644 index 00000000..836ca2f3 --- /dev/null +++ b/themes/acekaizen-code-theme.yaml @@ -0,0 +1,52 @@ +name: "AceKaizen Code Theme" +source: + marketplace_id: "AryanKashyap.theme-acekaizen-code" + version: "1.1.1" + installs: 455 + rating: 5 + ratings: 3 + author: "Aryan Kashyap" + repo: "https://github.com/aryankashyap7/AceKaizen-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=AryanKashyap.theme-acekaizen-code" +colors: + bg: "#141414" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#B8B8B8" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFF9F9" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.1 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 63.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 104 diff --git a/themes/acequartz.yaml b/themes/acequartz.yaml index b7186ebc..3a6d46ef 100644 --- a/themes/acequartz.yaml +++ b/themes/acequartz.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AceSardonyx.darkrose-quartz-theme" version: "1.0.8" installs: 1170 + rating: 5 + ratings: 1 author: "Kai" repo: "https://github.com/Teakuutarts/VSC-Quartz-Theme" url: "https://marketplace.visualstudio.com/items?itemName=AceSardonyx.darkrose-quartz-theme" diff --git a/themes/acid-trip.yaml b/themes/acid-trip.yaml new file mode 100644 index 00000000..acb80148 --- /dev/null +++ b/themes/acid-trip.yaml @@ -0,0 +1,52 @@ +name: "Acid-Trip" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#252525" + fg: "#FBFBFB" + black: "#252525" + red: "#DC2828" + green: "#29C3A0" + yellow: "#D29922" + blue: "#AFEC46" + magenta: "#AFEC46" + cyan: "#29C3A0" + white: "#FBFBFB" + brightBlack: "#252525" + brightRed: "#DC2828" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#AFEC46" + brightMagenta: "#AFEC46" + brightCyan: "#29C3A0" + brightWhite: "#FBFBFB" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.3 + black: 0 + red: 27.3 + green: 55.7 + yellow: 49.8 + blue: 81 + magenta: 81 + cyan: 55.7 + white: 102.3 + brightBlack: 0 + brightRed: 27.3 + brightGreen: 55.7 + brightYellow: 49.8 + brightBlue: 81 + brightMagenta: 81 + brightCyan: 55.7 + brightWhite: 102.3 diff --git a/themes/aclear-dark.yaml b/themes/aclear-dark.yaml index 980247a9..ebd48310 100644 --- a/themes/aclear-dark.yaml +++ b/themes/aclear-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrewaclear.aclear" version: "0.1.3" installs: 1003 + rating: 5 + ratings: 1 author: "Andrew D'Amario" repo: "https://github.com/andrewaclear/aclear-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewaclear.aclear" diff --git a/themes/acme.yaml b/themes/acme.yaml index f9ab272d..c97885dd 100644 --- a/themes/acme.yaml +++ b/themes/acme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aaqaIshtyaq.themes-go-acme" version: "0.0.5" installs: 2247 + rating: 0 + ratings: 0 author: "Aaqa Ishtyaq" repo: "https://github.com/aaqaishtyaq/themes-go-acme" url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.themes-go-acme" diff --git a/themes/aconitum.yaml b/themes/aconitum.yaml new file mode 100644 index 00000000..0d1e966f --- /dev/null +++ b/themes/aconitum.yaml @@ -0,0 +1,52 @@ +name: "Aconitum" +source: + marketplace_id: "ArturGuedx.Aconitum" + version: "0.0.2" + installs: 173 + rating: 0 + ratings: 0 + author: "ArturGuedx" + repo: "https://github.com/ArturGuedes/Aconitum" + url: "https://marketplace.visualstudio.com/items?itemName=ArturGuedx.Aconitum" +colors: + bg: "#212121" + fg: "#707E8A" + black: "#000000" + red: "#FF8B92" + green: "#9EE1BF" + yellow: "#FFC475" + blue: "#5B3CBE" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#ABBECF" + brightBlack: "#666666" + brightRed: "#FF525C" + brightGreen: "#66FFB1" + brightYellow: "#FFAD3F" + brightBlue: "#6D7DFE" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 30.7 + black: 0 + red: 56 + green: 77.5 + yellow: 75 + blue: 14.6 + magenta: 28.5 + cyan: 46.3 + white: 63.8 + brightBlack: 20.8 + brightRed: 41.8 + brightGreen: 88.5 + brightYellow: 65.5 + brightBlue: 37.2 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/acs-cozy-dark.yaml b/themes/acs-cozy-dark.yaml index b7d2063f..75e8991c 100644 --- a/themes/acs-cozy-dark.yaml +++ b/themes/acs-cozy-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ACSPL.acsplext" version: "0.30.0" installs: 509 + rating: 0 + ratings: 0 author: "ACSPL" repo: "https://github.com/BarPupko/ACSPL-vscode-Extenstion" url: "https://marketplace.visualstudio.com/items?itemName=ACSPL.acsplext" diff --git a/themes/adapt-dark.yaml b/themes/adapt-dark.yaml index f621cf51..bf171fda 100644 --- a/themes/adapt-dark.yaml +++ b/themes/adapt-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Tone.adapt-vscode-colors" version: "0.9.2" installs: 19 + rating: 0 + ratings: 0 author: "Tone" repo: "https://github.com/ToneAr/adapt-vscode-colors" url: "https://marketplace.visualstudio.com/items?itemName=Tone.adapt-vscode-colors" diff --git a/themes/adark.yaml b/themes/adark.yaml index 15070db0..93a76880 100644 --- a/themes/adark.yaml +++ b/themes/adark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AmoghAgarwal.adark" version: "1.0.0" installs: 483 + rating: 5 + ratings: 4 author: "AmoghAgarwal" repo: "https://github.com/agarwalamogh/Adark_vscode_theme/tree/master/ADark" url: "https://marketplace.visualstudio.com/items?itemName=AmoghAgarwal.adark" diff --git a/themes/adeol.yaml b/themes/adeol.yaml index cfa323b3..4c246dc0 100644 --- a/themes/adeol.yaml +++ b/themes/adeol.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "darcula-as-start.darcula-as-start" version: "0.0.1" installs: 28 + rating: 0 + ratings: 0 author: "Darcula As Start" repo: null url: "https://marketplace.visualstudio.com/items?itemName=darcula-as-start.darcula-as-start" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 73.9 black: 0 diff --git a/themes/adey-coder-deep-dark.yaml b/themes/adey-coder-deep-dark.yaml index 72c9bc26..7a2d5412 100644 --- a/themes/adey-coder-deep-dark.yaml +++ b/themes/adey-coder-deep-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AdeyCoder.adey-coder-dark" version: "1.0.3" installs: 1787 + rating: 5 + ratings: 1 author: "Adey Coder" repo: "https://github.com/yohanstesfaye/adey-coder-dark" url: "https://marketplace.visualstudio.com/items?itemName=AdeyCoder.adey-coder-dark" diff --git a/themes/adey-coder.yaml b/themes/adey-coder.yaml index 0578d245..252ad365 100644 --- a/themes/adey-coder.yaml +++ b/themes/adey-coder.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AdeyCoder.adey-coder-dark" version: "1.0.3" installs: 1787 + rating: 5 + ratings: 1 author: "Adey Coder" repo: "https://github.com/yohanstesfaye/adey-coder-dark" url: "https://marketplace.visualstudio.com/items?itemName=AdeyCoder.adey-coder-dark" diff --git a/themes/adonis.yaml b/themes/adonis.yaml index 4befaf80..2e7872b4 100644 --- a/themes/adonis.yaml +++ b/themes/adonis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "saeed-nazari.adonis-theme" version: "5.1.0" installs: 17283 + rating: 5 + ratings: 8 author: "Saeed Nazari" repo: "https://github.com/saeed-nazari/vsc-theme-adonis" url: "https://marketplace.visualstudio.com/items?itemName=saeed-nazari.adonis-theme" diff --git a/themes/advancedbat.yaml b/themes/advancedbat.yaml index 19007382..b9f24e51 100644 --- a/themes/advancedbat.yaml +++ b/themes/advancedbat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "selfrefactor.AdvancedBatNiketa" version: "1.3.5" installs: 186 + rating: 0 + ratings: 0 author: "selfrefactor" repo: "https://github.com/selfrefactor/niketa-themes" url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.AdvancedBatNiketa" diff --git a/themes/adventuresinparadise.yaml b/themes/adventuresinparadise.yaml new file mode 100644 index 00000000..04488b7b --- /dev/null +++ b/themes/adventuresinparadise.yaml @@ -0,0 +1,52 @@ +name: "AdventuresinParadise" +source: + marketplace_id: "graciew1125.advpara" + version: "0.0.1" + installs: 79 + rating: 0 + ratings: 0 + author: "graciew1125" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=graciew1125.advpara" +colors: + bg: "#CFEAEA" + fg: "#4F6A8F" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#FFEAFF" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#F0D689" +meta: + mode: "light" + accent: "pink" + hue: 197 + pair: null + contrast: + fg: 62.1 + black: 90.5 + red: 58.4 + green: 33.7 + yellow: 42.4 + blue: 70.5 + magenta: 59 + cyan: 45 + white: 0 + brightBlack: 63.2 + brightRed: 58.4 + brightGreen: 25.4 + brightYellow: 25.4 + brightBlue: 70.5 + brightMagenta: 59 + brightCyan: 45 + brightWhite: 0 diff --git a/themes/aelmouny11-theme.yaml b/themes/aelmouny11-theme.yaml index f92a8bce..8852a468 100644 --- a/themes/aelmouny11-theme.yaml +++ b/themes/aelmouny11-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aelmouny11.aelmouny11" version: "0.0.1" installs: 94 + rating: 0 + ratings: 0 author: "Azddine ELMOUMNY" repo: "https://github.com/Aelmouny11/vscode_theme" url: "https://marketplace.visualstudio.com/items?itemName=aelmouny11.aelmouny11" diff --git a/themes/aeridia.yaml b/themes/aeridia.yaml index d554182b..8930d13c 100644 --- a/themes/aeridia.yaml +++ b/themes/aeridia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Be-njamin.aeridia" version: "0.0.7" installs: 226 + rating: 5 + ratings: 1 author: "Benjamin Vasquez" repo: "https://github.com/Be-njamin/aeridia" url: "https://marketplace.visualstudio.com/items?itemName=Be-njamin.aeridia" diff --git a/themes/aesir-theme.yaml b/themes/aesir-theme.yaml index 6054f8ba..e0a92067 100644 --- a/themes/aesir-theme.yaml +++ b/themes/aesir-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tomgobich.aesir-theme" version: "1.0.3" installs: 1738 + rating: 0 + ratings: 0 author: "tomgobich" repo: "https://github.com/tomgobich/aesir-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=tomgobich.aesir-theme" diff --git a/themes/aesthetic-dark.yaml b/themes/aesthetic-dark.yaml index 914b3278..c57d5bd9 100644 --- a/themes/aesthetic-dark.yaml +++ b/themes/aesthetic-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "manojjoshi.aesthetic" version: "3.0.0" installs: 8072 + rating: 4.75 + ratings: 4 author: "manoj joshi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=manojjoshi.aesthetic" diff --git a/themes/aesthetic.yaml b/themes/aesthetic.yaml index 65976020..b1a2e3ca 100644 --- a/themes/aesthetic.yaml +++ b/themes/aesthetic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sophtli.cute-aesthetic" version: "1.1.4" installs: 4505 + rating: 0 + ratings: 0 author: "Sophtli" repo: "https://github.com/Sophtli/cute-aesthetic" url: "https://marketplace.visualstudio.com/items?itemName=sophtli.cute-aesthetic" diff --git a/themes/aether-abyss.yaml b/themes/aether-abyss.yaml index 7f0f857d..f07e3b0e 100644 --- a/themes/aether-abyss.yaml +++ b/themes/aether-abyss.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-abyssal.yaml b/themes/aether-abyssal.yaml index 137323a5..add87bc1 100644 --- a/themes/aether-abyssal.yaml +++ b/themes/aether-abyssal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-arctic.yaml b/themes/aether-arctic.yaml index 585938eb..65a36959 100644 --- a/themes/aether-arctic.yaml +++ b/themes/aether-arctic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-atlantis.yaml b/themes/aether-atlantis.yaml index 99c6efb4..7776de4b 100644 --- a/themes/aether-atlantis.yaml +++ b/themes/aether-atlantis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-aurora.yaml b/themes/aether-aurora.yaml index 6c1df688..70593417 100644 --- a/themes/aether-aurora.yaml +++ b/themes/aether-aurora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-borealis.yaml b/themes/aether-borealis.yaml index 87257f5c..4627e911 100644 --- a/themes/aether-borealis.yaml +++ b/themes/aether-borealis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-carbon.yaml b/themes/aether-carbon.yaml index 686e3d21..91dc9c48 100644 --- a/themes/aether-carbon.yaml +++ b/themes/aether-carbon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-clarity.yaml b/themes/aether-clarity.yaml index dc7f906c..ce29d5e0 100644 --- a/themes/aether-clarity.yaml +++ b/themes/aether-clarity.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-coffee-dark.yaml b/themes/aether-coffee-dark.yaml index 803c42ad..145cec68 100644 --- a/themes/aether-coffee-dark.yaml +++ b/themes/aether-coffee-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diogo-aether.aether-dark" version: "1.4.0" installs: 203 + rating: 5 + ratings: 1 author: "Diogo Pereira" repo: "https://github.com/Diiipereira/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" diff --git a/themes/aether-coffee.yaml b/themes/aether-coffee.yaml index 2a4d8ec5..069fc07f 100644 --- a/themes/aether-coffee.yaml +++ b/themes/aether-coffee.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diogo-aether.aether-dark" version: "1.4.0" installs: 203 + rating: 5 + ratings: 1 author: "Diogo Pereira" repo: "https://github.com/Diiipereira/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" diff --git a/themes/aether-cosmos.yaml b/themes/aether-cosmos.yaml index ed9f3d02..28db1a68 100644 --- a/themes/aether-cosmos.yaml +++ b/themes/aether-cosmos.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-dark-space.yaml b/themes/aether-dark-space.yaml index e039afc5..5ea05a6e 100644 --- a/themes/aether-dark-space.yaml +++ b/themes/aether-dark-space.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diogo-aether.aether-dark" version: "1.4.0" installs: 203 + rating: 5 + ratings: 1 author: "Diogo Pereira" repo: "https://github.com/Diiipereira/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" diff --git a/themes/aether-dark.yaml b/themes/aether-dark.yaml index c53ce9c5..dacefe2a 100644 --- a/themes/aether-dark.yaml +++ b/themes/aether-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diogo-aether.aether-dark" version: "1.4.0" installs: 203 + rating: 5 + ratings: 1 author: "Diogo Pereira" repo: "https://github.com/Diiipereira/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" diff --git a/themes/aether-dawn.yaml b/themes/aether-dawn.yaml index c77f12d2..11628c50 100644 --- a/themes/aether-dawn.yaml +++ b/themes/aether-dawn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-deep-ocean.yaml b/themes/aether-deep-ocean.yaml index 6672361b..e03d9f54 100644 --- a/themes/aether-deep-ocean.yaml +++ b/themes/aether-deep-ocean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-depths.yaml b/themes/aether-depths.yaml index bef48c05..5d1a3db8 100644 --- a/themes/aether-depths.yaml +++ b/themes/aether-depths.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-dusk.yaml b/themes/aether-dusk.yaml index d30a859d..2d63adae 100644 --- a/themes/aether-dusk.yaml +++ b/themes/aether-dusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-emerald.yaml b/themes/aether-emerald.yaml index 2e744896..85516d2d 100644 --- a/themes/aether-emerald.yaml +++ b/themes/aether-emerald.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diogo-aether.aether-dark" version: "1.4.0" installs: 203 + rating: 5 + ratings: 1 author: "Diogo Pereira" repo: "https://github.com/Diiipereira/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" diff --git a/themes/aether-forest.yaml b/themes/aether-forest.yaml index d3187d92..23162c8b 100644 --- a/themes/aether-forest.yaml +++ b/themes/aether-forest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-glass.yaml b/themes/aether-glass.yaml index 36d04cdc..7e572594 100644 --- a/themes/aether-glass.yaml +++ b/themes/aether-glass.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-light.yaml b/themes/aether-light.yaml index 18e609a9..e3c04089 100644 --- a/themes/aether-light.yaml +++ b/themes/aether-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diogo-aether.aether-dark" version: "1.4.0" installs: 203 + rating: 5 + ratings: 1 author: "Diogo Pereira" repo: "https://github.com/Diiipereira/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" diff --git a/themes/aether-mariana.yaml b/themes/aether-mariana.yaml index 0d3dcc30..7a6b552a 100644 --- a/themes/aether-mariana.yaml +++ b/themes/aether-mariana.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-matrix.yaml b/themes/aether-matrix.yaml index 45452f7a..67d34cf6 100644 --- a/themes/aether-matrix.yaml +++ b/themes/aether-matrix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-midnight.yaml b/themes/aether-midnight.yaml index 52bbeee1..0d89aa8a 100644 --- a/themes/aether-midnight.yaml +++ b/themes/aether-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-nautilus.yaml b/themes/aether-nautilus.yaml index 942499b4..848d893a 100644 --- a/themes/aether-nautilus.yaml +++ b/themes/aether-nautilus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-nebula.yaml b/themes/aether-nebula.yaml index edb15984..9d83ffb4 100644 --- a/themes/aether-nebula.yaml +++ b/themes/aether-nebula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-neon.yaml b/themes/aether-neon.yaml index e4c67eb3..ea3180bb 100644 --- a/themes/aether-neon.yaml +++ b/themes/aether-neon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-neptune.yaml b/themes/aether-neptune.yaml index e045df8c..30326a25 100644 --- a/themes/aether-neptune.yaml +++ b/themes/aether-neptune.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-oceanic.yaml b/themes/aether-oceanic.yaml index 976cf84e..e25bee26 100644 --- a/themes/aether-oceanic.yaml +++ b/themes/aether-oceanic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-quantum.yaml b/themes/aether-quantum.yaml index 2ac98b52..4d9f1b3f 100644 --- a/themes/aether-quantum.yaml +++ b/themes/aether-quantum.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-reef.yaml b/themes/aether-reef.yaml index ed86495b..f5420b52 100644 --- a/themes/aether-reef.yaml +++ b/themes/aether-reef.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-stellar.yaml b/themes/aether-stellar.yaml index 6395a557..b35464de 100644 --- a/themes/aether-stellar.yaml +++ b/themes/aether-stellar.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-tempest.yaml b/themes/aether-tempest.yaml index 64c2d54c..8a4283fe 100644 --- a/themes/aether-tempest.yaml +++ b/themes/aether-tempest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-tidal.yaml b/themes/aether-tidal.yaml index 48a26650..1e823d8f 100644 --- a/themes/aether-tidal.yaml +++ b/themes/aether-tidal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-trench-contrast.yaml b/themes/aether-trench-contrast.yaml index 71230db6..dacd926b 100644 --- a/themes/aether-trench-contrast.yaml +++ b/themes/aether-trench-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-twilight.yaml b/themes/aether-twilight.yaml index 665e03f3..4a6263e0 100644 --- a/themes/aether-twilight.yaml +++ b/themes/aether-twilight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-void.yaml b/themes/aether-void.yaml index 31bb25ea..60290769 100644 --- a/themes/aether-void.yaml +++ b/themes/aether-void.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/aether-zen.yaml b/themes/aether-zen.yaml index 41215849..da21efe2 100644 --- a/themes/aether-zen.yaml +++ b/themes/aether-zen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YonasValentinMougaardKristensen.aether-theme" version: "1.9.3" installs: 366 + rating: 5 + ratings: 1 author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" diff --git a/themes/afro.yaml b/themes/afro.yaml new file mode 100644 index 00000000..886480b1 --- /dev/null +++ b/themes/afro.yaml @@ -0,0 +1,52 @@ +name: "Afro" +source: + marketplace_id: "Hebraic.afro" + version: "0.1.2" + installs: 55 + rating: 0 + ratings: 0 + author: "Hebraic" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Hebraic.afro" +colors: + bg: "#362B25" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 50 + pair: null + contrast: + fg: 103.4 + black: 0 + red: 23.2 + green: 49.5 + yellow: 82.1 + blue: 23.9 + magenta: 26.3 + cyan: 44.1 + white: 86.5 + brightBlack: 18.5 + brightRed: 35.1 + brightGreen: 60 + brightYellow: 92.1 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.5 diff --git a/themes/afterglow-fade.yaml b/themes/afterglow-fade.yaml new file mode 100644 index 00000000..3d09f9ac --- /dev/null +++ b/themes/afterglow-fade.yaml @@ -0,0 +1,52 @@ +name: "Afterglow-Fade" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#2C2025" + fg: "#F1E9E5" + black: "#2C2025" + red: "#E63745" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FF8163" + magenta: "#FF8163" + cyan: "#29C3A0" + white: "#F1E9E5" + brightBlack: "#2C2025" + brightRed: "#E63745" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FF8163" + brightMagenta: "#FF8163" + brightCyan: "#29C3A0" + brightWhite: "#F1E9E5" +meta: + mode: "dark" + accent: "orange" + hue: 352 + pair: null + contrast: + fg: 91.8 + black: 0 + red: 31.6 + green: 56 + yellow: 50.1 + blue: 51.7 + magenta: 51.7 + cyan: 56 + white: 91.8 + brightBlack: 0 + brightRed: 31.6 + brightGreen: 56 + brightYellow: 50.1 + brightBlue: 51.7 + brightMagenta: 51.7 + brightCyan: 56 + brightWhite: 91.8 diff --git a/themes/afternoon-delight-subtle.yaml b/themes/afternoon-delight-subtle.yaml index 11c999a8..c0054beb 100644 --- a/themes/afternoon-delight-subtle.yaml +++ b/themes/afternoon-delight-subtle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnush.afternoon-delight" version: "2.0.2" installs: 349 + rating: 5 + ratings: 1 author: "Magnus Hvidtfeldt" repo: "https://github.com/mch-sg/afternoon-delight" url: "https://marketplace.visualstudio.com/items?itemName=magnush.afternoon-delight" diff --git a/themes/afterpurple.yaml b/themes/afterpurple.yaml index cc95ed29..e683856a 100644 --- a/themes/afterpurple.yaml +++ b/themes/afterpurple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lukearch.after-purple" version: "0.0.1" installs: 1 + rating: 0 + ratings: 0 author: "lukearch" repo: null url: "https://marketplace.visualstudio.com/items?itemName=lukearch.after-purple" diff --git a/themes/agathist-dark.yaml b/themes/agathist-dark.yaml index 958fd102..6814798f 100644 --- a/themes/agathist-dark.yaml +++ b/themes/agathist-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "agathist.agathist-vscode-themes" version: "0.1.3" installs: 939 + rating: 0 + ratings: 0 author: "Agathist" repo: "https://github.com/agathist/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=agathist.agathist-vscode-themes" diff --git a/themes/agen-theme.yaml b/themes/agen-theme.yaml index db0dbbb2..a2ec03be 100644 --- a/themes/agen-theme.yaml +++ b/themes/agen-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "maxxborer.agen-theme" version: "2.0.1" installs: 638 + rating: 5 + ratings: 1 author: "Maxx Borer" repo: "https://github.com/maxxborer/agen-theme" url: "https://marketplace.visualstudio.com/items?itemName=maxxborer.agen-theme" diff --git a/themes/ahoy-theme.yaml b/themes/ahoy-theme.yaml index a0301c60..2dcccfbc 100644 --- a/themes/ahoy-theme.yaml +++ b/themes/ahoy-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alexNeto.ahoy-theme" version: "0.0.4" installs: 872 + rating: 5 + ratings: 1 author: "alexNeto" repo: "https://github.com/alexNeto/ahoy-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=alexNeto.ahoy-theme" diff --git a/themes/ahroun.yaml b/themes/ahroun.yaml index 1a558aac..e2800a2f 100644 --- a/themes/ahroun.yaml +++ b/themes/ahroun.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DiegoBrocanelli.ahroun-theme" version: "0.0.5" installs: 122 + rating: 5 + ratings: 1 author: "Diego Brocanelli" repo: "https://github.com/Diego-Brocanelli/ahroun-theme" url: "https://marketplace.visualstudio.com/items?itemName=DiegoBrocanelli.ahroun-theme" diff --git a/themes/aka-kuro-light.yaml b/themes/aka-kuro-light.yaml index a39d1f21..a4394674 100644 --- a/themes/aka-kuro-light.yaml +++ b/themes/aka-kuro-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NoaHeutz.akakuro-theme" version: "7.7.7" installs: 915 + rating: 0 + ratings: 0 author: "Noa Heutz" repo: "https://github.com/Nah-Nova/akakuro-theme" url: "https://marketplace.visualstudio.com/items?itemName=NoaHeutz.akakuro-theme" diff --git a/themes/akagami-dark.yaml b/themes/akagami-dark.yaml index 8a87fe8c..bd75b10a 100644 --- a/themes/akagami-dark.yaml +++ b/themes/akagami-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nicholasXue.akagami-theme" version: "0.0.2" installs: 515 + rating: 5 + ratings: 1 author: "nicholasXue" repo: "https://github.com/nicholasxjy/akagami-theme" url: "https://marketplace.visualstudio.com/items?itemName=nicholasXue.akagami-theme" diff --git a/themes/akagami-light.yaml b/themes/akagami-light.yaml index da0a498a..32495c36 100644 --- a/themes/akagami-light.yaml +++ b/themes/akagami-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nicholasXue.akagami-theme" version: "0.0.2" installs: 515 + rating: 5 + ratings: 1 author: "nicholasXue" repo: "https://github.com/nicholasxjy/akagami-theme" url: "https://marketplace.visualstudio.com/items?itemName=nicholasXue.akagami-theme" diff --git a/themes/akari-dawn.yaml b/themes/akari-dawn.yaml index 28ff48c8..d59f6aec 100644 --- a/themes/akari-dawn.yaml +++ b/themes/akari-dawn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cappyzawa.akari-theme" version: "1.18.0" installs: 58 + rating: 0 + ratings: 0 author: "Shu Kutsuzawa" repo: "https://github.com/cappyzawa/akari-theme" url: "https://marketplace.visualstudio.com/items?itemName=cappyzawa.akari-theme" diff --git a/themes/akari-night.yaml b/themes/akari-night.yaml index 9a6e0ecd..9a542e60 100644 --- a/themes/akari-night.yaml +++ b/themes/akari-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cappyzawa.akari-theme" version: "1.18.0" installs: 58 + rating: 0 + ratings: 0 author: "Shu Kutsuzawa" repo: "https://github.com/cappyzawa/akari-theme" url: "https://marketplace.visualstudio.com/items?itemName=cappyzawa.akari-theme" diff --git a/themes/akihabara.yaml b/themes/akihabara.yaml index 05ba7f5b..7137fb0b 100644 --- a/themes/akihabara.yaml +++ b/themes/akihabara.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "justin-lavi.akihabara" version: "4.8.8" installs: 1296 + rating: 0 + ratings: 0 author: "Justin Lavi" repo: "https://github.com/justinlavi/Akihabara" url: "https://marketplace.visualstudio.com/items?itemName=justin-lavi.akihabara" diff --git a/themes/aklesky-golden-river.yaml b/themes/aklesky-golden-river.yaml new file mode 100644 index 00000000..52ae2bdb --- /dev/null +++ b/themes/aklesky-golden-river.yaml @@ -0,0 +1,52 @@ +name: "Aklesky Golden River" +source: + marketplace_id: "aklesky.aklesky-flat-dark-theme" + version: "1.3.0" + installs: 112 + rating: 0 + ratings: 0 + author: "aklesky" + repo: "https://github.com/aklesky/aklesky-theme" + url: "https://marketplace.visualstudio.com/items?itemName=aklesky.aklesky-flat-dark-theme" +colors: + bg: "#1F2430" + fg: "#FFFFFF" + black: "#1F2430" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 267 + pair: null + contrast: + fg: 105.1 + black: 0 + red: 41.9 + green: 82.4 + yellow: 77.2 + blue: 54.2 + magenta: 52 + cyan: 76.5 + white: 105.1 + brightBlack: 22.1 + brightRed: 41.9 + brightGreen: 82.4 + brightYellow: 77.2 + brightBlue: 54.2 + brightMagenta: 52 + brightCyan: 76.5 + brightWhite: 105.1 diff --git a/themes/aklesky-mist-of-mint.yaml b/themes/aklesky-mist-of-mint.yaml new file mode 100644 index 00000000..1b053c66 --- /dev/null +++ b/themes/aklesky-mist-of-mint.yaml @@ -0,0 +1,52 @@ +name: "Aklesky Mist of Mint" +source: + marketplace_id: "aklesky.aklesky-flat-dark-theme" + version: "1.3.0" + installs: 112 + rating: 0 + ratings: 0 + author: "aklesky" + repo: "https://github.com/aklesky/aklesky-theme" + url: "https://marketplace.visualstudio.com/items?itemName=aklesky.aklesky-flat-dark-theme" +colors: + bg: "#1F2430" + fg: "#FFFFFF" + black: "#1F2430" + red: "#E06C75" + green: "#68B57B" + yellow: "#D4AF73" + blue: "#72C6E8" + magenta: "#C96EEA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#B1FFCF" + brightYellow: "#E5C07B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 267 + pair: null + contrast: + fg: 105.1 + black: 0 + red: 40.3 + green: 50.7 + yellow: 59.3 + blue: 63.3 + magenta: 42.2 + cyan: 76.5 + white: 105.1 + brightBlack: 22.1 + brightRed: 41.9 + brightGreen: 94 + brightYellow: 68.8 + brightBlue: 54.2 + brightMagenta: 52 + brightCyan: 76.5 + brightWhite: 105.1 diff --git a/themes/ako-theme.yaml b/themes/ako-theme.yaml index 67cb5edf..d1948d28 100644 --- a/themes/ako-theme.yaml +++ b/themes/ako-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wxn0brP.wxn0brp-ako-theme" version: "0.0.1" installs: 1 + rating: 0 + ratings: 0 author: "wxn0brP" repo: "https://github.com/wxn0brP/ako-theme" url: "https://marketplace.visualstudio.com/items?itemName=wxn0brP.wxn0brp-ako-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/aksin.yaml b/themes/aksin.yaml index 686a25a1..9b9f2565 100644 --- a/themes/aksin.yaml +++ b/themes/aksin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Akshayindraganti.Indraganti-Akshay" version: "1.0.0" installs: 89 + rating: 5 + ratings: 1 author: "Akshayindraganti" repo: "https://github.com/AkshayIndraganti/Aksin-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Akshayindraganti.Indraganti-Akshay" diff --git a/themes/akumanomi-theme.yaml b/themes/akumanomi-theme.yaml index ee86a473..8e3e80c6 100644 --- a/themes/akumanomi-theme.yaml +++ b/themes/akumanomi-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IngridLiana.akumanomi-theme" version: "0.1.4" installs: 2726 + rating: 0 + ratings: 0 author: "Ingrid Liana" repo: null url: "https://marketplace.visualstudio.com/items?itemName=IngridLiana.akumanomi-theme" diff --git a/themes/akurdor.yaml b/themes/akurdor.yaml index 0015b49b..561e0ec5 100644 --- a/themes/akurdor.yaml +++ b/themes/akurdor.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rashidfarhad.kurdor" version: "1.4.1" installs: 27 + rating: 5 + ratings: 1 author: "KurdorTheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rashidfarhad.kurdor" diff --git a/themes/al-theme-official.yaml b/themes/al-theme-official.yaml new file mode 100644 index 00000000..431afdea --- /dev/null +++ b/themes/al-theme-official.yaml @@ -0,0 +1,52 @@ +name: "AL Theme - Official" +source: + marketplace_id: "AlSiam.altheme" + version: "1.9.0" + installs: 1950 + rating: 5 + ratings: 1 + author: "Al Siam" + repo: "https://github.com/alsiam/altheme" + url: "https://marketplace.visualstudio.com/items?itemName=AlSiam.altheme" +colors: + bg: "#101E2C" + fg: "#BDD2E7" + black: "#000000" + red: "#FF7878" + green: "#AAE682" + yellow: "#FFDC96" + blue: "#00B1FF" + magenta: "#00D991" + cyan: "#00DCDC" + white: "#BDD2E7" + brightBlack: "#5F82A5" + brightRed: "#FF7878" + brightGreen: "#AAE682" + brightYellow: "#FFDC96" + brightBlue: "#00B1FF" + brightMagenta: "#00D991" + brightCyan: "#00DCDC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 249 + pair: null + contrast: + fg: 76 + black: 0 + red: 50.7 + green: 79.7 + yellow: 86.3 + blue: 53.7 + magenta: 66.7 + cyan: 71 + white: 76 + brightBlack: 32.5 + brightRed: 50.7 + brightGreen: 79.7 + brightYellow: 86.3 + brightBlue: 53.7 + brightMagenta: 66.7 + brightCyan: 71 + brightWhite: 106.1 diff --git a/themes/alabaster-dark.yaml b/themes/alabaster-dark.yaml index 3f9ccf9b..897a841e 100644 --- a/themes/alabaster-dark.yaml +++ b/themes/alabaster-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lao-liang.vscode-theme-alabaster-dark" version: "0.0.2" installs: 207 + rating: 5 + ratings: 1 author: "LaoLiang" repo: "https://github.com/liangpengyv/vscode-theme-alabaster-dark" url: "https://marketplace.visualstudio.com/items?itemName=lao-liang.vscode-theme-alabaster-dark" diff --git a/themes/alchemist-s-orchid-dark.yaml b/themes/alchemist-s-orchid-dark.yaml index ac13e7de..d5d63180 100644 --- a/themes/alchemist-s-orchid-dark.yaml +++ b/themes/alchemist-s-orchid-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rynaro.alchemists-orchid" version: "0.1.2" installs: 111 + rating: 5 + ratings: 1 author: "Rynaro" repo: "https://github.com/Rynaro/alchemists-orchid" url: "https://marketplace.visualstudio.com/items?itemName=Rynaro.alchemists-orchid" diff --git a/themes/alchemist-s-orchid-light.yaml b/themes/alchemist-s-orchid-light.yaml index b1302e03..dd11fb06 100644 --- a/themes/alchemist-s-orchid-light.yaml +++ b/themes/alchemist-s-orchid-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rynaro.alchemists-orchid" version: "0.1.2" installs: 111 + rating: 5 + ratings: 1 author: "Rynaro" repo: "https://github.com/Rynaro/alchemists-orchid" url: "https://marketplace.visualstudio.com/items?itemName=Rynaro.alchemists-orchid" diff --git a/themes/alchemist-s-orchid-sepia.yaml b/themes/alchemist-s-orchid-sepia.yaml index ee933a6d..71b88c55 100644 --- a/themes/alchemist-s-orchid-sepia.yaml +++ b/themes/alchemist-s-orchid-sepia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rynaro.alchemists-orchid" version: "0.1.2" installs: 111 + rating: 5 + ratings: 1 author: "Rynaro" repo: "https://github.com/Rynaro/alchemists-orchid" url: "https://marketplace.visualstudio.com/items?itemName=Rynaro.alchemists-orchid" diff --git a/themes/alchemy-theme.yaml b/themes/alchemy-theme.yaml index 9b60d623..7b28c93d 100644 --- a/themes/alchemy-theme.yaml +++ b/themes/alchemy-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thgmhz.alchemy" version: "1.1.0" installs: 426 + rating: 0 + ratings: 0 author: "thgmhz" repo: "https://github.com/thgmhz/alchemy-theme" url: "https://marketplace.visualstudio.com/items?itemName=thgmhz.alchemy" diff --git a/themes/aldrico-s-gruvbox.yaml b/themes/aldrico-s-gruvbox.yaml index 67ff70b5..2357164d 100644 --- a/themes/aldrico-s-gruvbox.yaml +++ b/themes/aldrico-s-gruvbox.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HeavenAldrico.aldrico-s-gruvbox" version: "0.2.3" installs: 4290 + rating: 5 + ratings: 2 author: "Heaven Aldrico" repo: "https://github.com/ldriko/gruvbox-in-black" url: "https://marketplace.visualstudio.com/items?itemName=HeavenAldrico.aldrico-s-gruvbox" diff --git a/themes/alec-teal-theme.yaml b/themes/alec-teal-theme.yaml index 24585e6e..073ac912 100644 --- a/themes/alec-teal-theme.yaml +++ b/themes/alec-teal-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alecvision.alecvision-themes" version: "0.0.1" installs: 264 + rating: 0 + ratings: 0 author: "AlecVision" repo: "https://github.com/AlecVision/themes" url: "https://marketplace.visualstudio.com/items?itemName=alecvision.alecvision-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 244 + pair: null contrast: fg: 63.8 black: 0 diff --git a/themes/alice-s-theme.yaml b/themes/alice-s-theme.yaml new file mode 100644 index 00000000..d782333b --- /dev/null +++ b/themes/alice-s-theme.yaml @@ -0,0 +1,52 @@ +name: "Alice's Theme" +source: + marketplace_id: "CadeteSinx.alices-theme" + version: "1.0.0" + installs: 33 + rating: 0 + ratings: 0 + author: "CadeteSinx" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CadeteSinx.alices-theme" +colors: + bg: "#0F0F0F" + fg: "#FF5C2A" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 44.8 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/aliceblue-theme.yaml b/themes/aliceblue-theme.yaml new file mode 100644 index 00000000..1c429365 --- /dev/null +++ b/themes/aliceblue-theme.yaml @@ -0,0 +1,52 @@ +name: "Aliceblue-Theme" +source: + marketplace_id: "YornQiu.vsc-aliceblue-theme" + version: "0.3.2" + installs: 319 + rating: 0 + ratings: 0 + author: "YornQiu" + repo: "https://github.com/YornQiu/vsc-aliceblue-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YornQiu.vsc-aliceblue-theme" +colors: + bg: "#FFFFFF" + fg: "#90A4AE" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#E2931D" + blue: "#6182B8" + magenta: "#9C3EDA" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#E2931D" + brightBlue: "#6182B8" + brightMagenta: "#9C3EDA" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 50.6 + black: 106 + red: 67.7 + green: 44.9 + yellow: 48.6 + blue: 66.3 + magenta: 74.3 + cyan: 51.8 + white: 0 + brightBlack: 50.6 + brightRed: 67.7 + brightGreen: 44.9 + brightYellow: 48.6 + brightBlue: 66.3 + brightMagenta: 74.3 + brightCyan: 51.8 + brightWhite: 0 diff --git a/themes/alien-blood.yaml b/themes/alien-blood.yaml index 041f668e..e443ab5e 100644 --- a/themes/alien-blood.yaml +++ b/themes/alien-blood.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ThomasBishop.alien-blood" version: "1.7.3" installs: 2384 + rating: 5 + ratings: 5 author: "Thomas Bishop" repo: "https://github.com/thomasabishop/alien-blood-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ThomasBishop.alien-blood" diff --git a/themes/alien-terminal-nostromo-amber.yaml b/themes/alien-terminal-nostromo-amber.yaml index 6c49978e..f497f35b 100644 --- a/themes/alien-terminal-nostromo-amber.yaml +++ b/themes/alien-terminal-nostromo-amber.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ericson-willians.uscss-nostromo-theme" version: "1.0.0" installs: 596 + rating: 0 + ratings: 0 author: "Ericson Willians Rocha Pires" repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" diff --git a/themes/alien-terminal-nostromo-green.yaml b/themes/alien-terminal-nostromo-green.yaml index 4bb96e06..18beb174 100644 --- a/themes/alien-terminal-nostromo-green.yaml +++ b/themes/alien-terminal-nostromo-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ericson-willians.uscss-nostromo-theme" version: "1.0.0" installs: 596 + rating: 0 + ratings: 0 author: "Ericson Willians Rocha Pires" repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" diff --git a/themes/alien-terminal-sevastopol-link.yaml b/themes/alien-terminal-sevastopol-link.yaml index fb33d1cb..52c352fa 100644 --- a/themes/alien-terminal-sevastopol-link.yaml +++ b/themes/alien-terminal-sevastopol-link.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ericson-willians.uscss-nostromo-theme" version: "1.0.0" installs: 596 + rating: 0 + ratings: 0 author: "Ericson Willians Rocha Pires" repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" diff --git a/themes/alignment-darker-italic.yaml b/themes/alignment-darker.yaml similarity index 94% rename from themes/alignment-darker-italic.yaml rename to themes/alignment-darker.yaml index 386cdab2..79765035 100644 --- a/themes/alignment-darker-italic.yaml +++ b/themes/alignment-darker.yaml @@ -1,8 +1,10 @@ -name: "Alignment darker (italic)" +name: "Alignment darker" source: marketplace_id: "natixco.alignment-theme-vsc" version: "0.0.1" installs: 117 + rating: 0 + ratings: 0 author: "natixco" repo: "https://github.com/natixco/alignment-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=natixco.alignment-theme-vsc" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 87.1 black: 0 diff --git a/themes/alignment-italic.yaml b/themes/alignment.yaml similarity index 94% rename from themes/alignment-italic.yaml rename to themes/alignment.yaml index 5ee99e72..d37a051e 100644 --- a/themes/alignment-italic.yaml +++ b/themes/alignment.yaml @@ -1,8 +1,10 @@ -name: "Alignment (italic)" +name: "Alignment" source: marketplace_id: "natixco.alignment-theme-vsc" version: "0.0.1" installs: 117 + rating: 0 + ratings: 0 author: "natixco" repo: "https://github.com/natixco/alignment-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=natixco.alignment-theme-vsc" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 86.1 black: 0 diff --git a/themes/all-black.yaml b/themes/all-black.yaml index 243a805b..fad31f03 100644 --- a/themes/all-black.yaml +++ b/themes/all-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xiaobai.all-black" version: "0.6.4" installs: 5847 + rating: 5 + ratings: 1 author: "xiaobai" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xiaobai.all-black" diff --git a/themes/all-blue.yaml b/themes/all-blue.yaml index 5bddddb2..8b702fa9 100644 --- a/themes/all-blue.yaml +++ b/themes/all-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "njshockey.all-blue" version: "1.2.0" installs: 360 + rating: 0 + ratings: 0 author: "njshockey" repo: "https://github.com/njshockey/all-blue-theme" url: "https://marketplace.visualstudio.com/items?itemName=njshockey.all-blue" diff --git a/themes/all-nighter-theme.yaml b/themes/all-nighter-theme.yaml index f11d3ac0..346db173 100644 --- a/themes/all-nighter-theme.yaml +++ b/themes/all-nighter-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aaa1.all-nighter-italic" version: "1.0.1" installs: 2155 + rating: 5 + ratings: 1 author: "Martin Enzinger" repo: "https://github.com/martinenzinger/allnighter" url: "https://marketplace.visualstudio.com/items?itemName=aaa1.all-nighter-italic" diff --git a/themes/alligator-light.yaml b/themes/alligator-light.yaml index 236107fe..6e78d30f 100644 --- a/themes/alligator-light.yaml +++ b/themes/alligator-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alligator-vscode-color-theme.alligator" version: "1.3.2" installs: 1108 + rating: 5 + ratings: 1 author: "alligator-vscode-color-theme" repo: "https://github.com/lianghx-319/Alligator-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=alligator-vscode-color-theme.alligator" diff --git a/themes/alligator-solarized-dark.yaml b/themes/alligator-solarized-dark.yaml index 63bbe5c3..0ee36b48 100644 --- a/themes/alligator-solarized-dark.yaml +++ b/themes/alligator-solarized-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alligator-vscode-color-theme.alligator" version: "1.3.2" installs: 1108 + rating: 5 + ratings: 1 author: "alligator-vscode-color-theme" repo: "https://github.com/lianghx-319/Alligator-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=alligator-vscode-color-theme.alligator" diff --git a/themes/alligator-solarized-light.yaml b/themes/alligator-solarized-light.yaml index 866540d3..baeee87c 100644 --- a/themes/alligator-solarized-light.yaml +++ b/themes/alligator-solarized-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alligator-vscode-color-theme.alligator" version: "1.3.2" installs: 1108 + rating: 5 + ratings: 1 author: "alligator-vscode-color-theme" repo: "https://github.com/lianghx-319/Alligator-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=alligator-vscode-color-theme.alligator" diff --git a/themes/allomancer.yaml b/themes/allomancer.yaml index 109b77ee..722327e5 100644 --- a/themes/allomancer.yaml +++ b/themes/allomancer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "maneeshJohn.allomancer-vscode" version: "1.0.1" installs: 489 + rating: 5 + ratings: 1 author: "Maneesh John" repo: "https://github.com/maneeshjohn/allomancer-vscode" url: "https://marketplace.visualstudio.com/items?itemName=maneeshJohn.allomancer-vscode" diff --git a/themes/allure-contrast.yaml b/themes/allure-contrast.yaml index 51596168..c4241ca7 100644 --- a/themes/allure-contrast.yaml +++ b/themes/allure-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/allure-light.yaml b/themes/allure-light.yaml index 45d3c918..993595cf 100644 --- a/themes/allure-light.yaml +++ b/themes/allure-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/allure.yaml b/themes/allure.yaml index 73f83564..2590aa47 100644 --- a/themes/allure.yaml +++ b/themes/allure.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/alma-sakura-theme.yaml b/themes/alma-sakura-theme.yaml index b9e0d6f7..69237c10 100644 --- a/themes/alma-sakura-theme.yaml +++ b/themes/alma-sakura-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hoshinokanade.alma-sakura" version: "0.1.2" installs: 9217 + rating: 5 + ratings: 3 author: "hoshinokanade" repo: "https://github.com/as-alma/Alma-Sakura" url: "https://marketplace.visualstudio.com/items?itemName=hoshinokanade.alma-sakura" diff --git a/themes/almond-cream.yaml b/themes/almond-cream.yaml index b9953ad8..7df1714b 100644 --- a/themes/almond-cream.yaml +++ b/themes/almond-cream.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.cocoa-butter" version: "0.1.4" installs: 1141 + rating: 5 + ratings: 1 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/cocoabutter" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.cocoa-butter" diff --git a/themes/aloe.yaml b/themes/aloe.yaml index 21f0b211..f0f86f91 100644 --- a/themes/aloe.yaml +++ b/themes/aloe.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Lab829.aloe" version: "0.0.5" installs: 98 + rating: 0 + ratings: 0 author: "Lab829" repo: "https://github.com/lab829/aloe" url: "https://marketplace.visualstudio.com/items?itemName=Lab829.aloe" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 90.4 black: 0 diff --git a/themes/alpha.yaml b/themes/alpha.yaml index ccbe590f..7650c31a 100644 --- a/themes/alpha.yaml +++ b/themes/alpha.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slepe.topl-theme" version: "1.0.1" installs: 824 + rating: 0 + ratings: 0 author: "Slepe" repo: "https://github.com/slepe/topl-theme" url: "https://marketplace.visualstudio.com/items?itemName=slepe.topl-theme" diff --git a/themes/alpine-warm.yaml b/themes/alpine-warm.yaml index 4fdd1855..496ef7cd 100644 --- a/themes/alpine-warm.yaml +++ b/themes/alpine-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Hyperbolic-Labs.Alpine-Warm" version: "0.0.1" installs: 788 + rating: 0 + ratings: 0 author: "Hyperbolic-Labs" repo: "https://github.com/Hyperbolic-Labs/alpine-theme" url: "https://marketplace.visualstudio.com/items?itemName=Hyperbolic-Labs.Alpine-Warm" diff --git a/themes/alpine.yaml b/themes/alpine.yaml index 6d38dd72..7b8eed6e 100644 --- a/themes/alpine.yaml +++ b/themes/alpine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "snapperito.alpine" version: "0.0.1" installs: 3297 + rating: 0 + ratings: 0 author: "snapper" repo: null url: "https://marketplace.visualstudio.com/items?itemName=snapperito.alpine" diff --git a/themes/altearn.yaml b/themes/altearn.yaml index 220ab8bf..7d6b0f8b 100644 --- a/themes/altearn.yaml +++ b/themes/altearn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Leirof.gunivers-theme" version: "0.0.23" installs: 568 + rating: 5 + ratings: 2 author: "Leirof" repo: "https://github.com/Gunivers/VSC-theme" url: "https://marketplace.visualstudio.com/items?itemName=Leirof.gunivers-theme" diff --git a/themes/altered-matter-dopamin-owl.yaml b/themes/altered-matter-dopamin-owl.yaml index e32544d2..86266f30 100644 --- a/themes/altered-matter-dopamin-owl.yaml +++ b/themes/altered-matter-dopamin-owl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "techwithcarlos.cyberpunk-2021" version: "1.8.5" installs: 31486 + rating: 5 + ratings: 3 author: "techwithcarlos" repo: "https://github.com/CarlosTaubeler/cyberpunk-2021" url: "https://marketplace.visualstudio.com/items?itemName=techwithcarlos.cyberpunk-2021" diff --git a/themes/alternight.yaml b/themes/alternight.yaml index 0110076a..1e5a5d27 100644 --- a/themes/alternight.yaml +++ b/themes/alternight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "spaceinvadev.alternight" version: "3.0.0" installs: 12495 + rating: 5 + ratings: 4 author: "Mauro Paternina" repo: "https://github.com/spaceinvadev/alternight-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=spaceinvadev.alternight" diff --git a/themes/altin-s-love-symphony.yaml b/themes/altin-s-love-symphony.yaml index 59375793..722c5adb 100644 --- a/themes/altin-s-love-symphony.yaml +++ b/themes/altin-s-love-symphony.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slumbersage.slumbersage" version: "0.0.1" installs: 852 + rating: 5 + ratings: 1 author: "slumbersage" repo: null url: "https://marketplace.visualstudio.com/items?itemName=slumbersage.slumbersage" diff --git a/themes/alucard-sotn.yaml b/themes/alucard-sotn.yaml index 587473ac..c4dfa964 100644 --- a/themes/alucard-sotn.yaml +++ b/themes/alucard-sotn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DanielDlc.alucardsotn" version: "4.0.0" installs: 1501 + rating: 5 + ratings: 1 author: "Alucard Sotn" repo: "https://github.com/DanielDlc/Alucard-theme" url: "https://marketplace.visualstudio.com/items?itemName=DanielDlc.alucardsotn" diff --git a/themes/alx-theme-classic.yaml b/themes/alx-theme-classic.yaml index 2e3ce3c0..8b4b1045 100644 --- a/themes/alx-theme-classic.yaml +++ b/themes/alx-theme-classic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ALX-ZMN.alx-theme-color-theme" version: "8.9.0" installs: 1246 + rating: 5 + ratings: 2 author: "ALX_ZMN" repo: "https://github.com/revivalver/VScodeTHEME" url: "https://marketplace.visualstudio.com/items?itemName=ALX-ZMN.alx-theme-color-theme" diff --git a/themes/alx-theme-toxic.yaml b/themes/alx-theme-toxic.yaml new file mode 100644 index 00000000..159ab128 --- /dev/null +++ b/themes/alx-theme-toxic.yaml @@ -0,0 +1,52 @@ +name: "ALX_THEME_TOXIC" +source: + marketplace_id: "ALX-ZMN.alx-theme-color-theme" + version: "8.9.0" + installs: 1246 + rating: 5 + ratings: 2 + author: "ALX_ZMN" + repo: "https://github.com/revivalver/VScodeTHEME" + url: "https://marketplace.visualstudio.com/items?itemName=ALX-ZMN.alx-theme-color-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#686868" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C77878" + brightBlack: "#A5A5A5" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 23.9 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 41.7 + brightBlack: 53.5 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/amadeus-dark-cobalt.yaml b/themes/amadeus-dark-cobalt.yaml index a7ea5650..51a1eede 100644 --- a/themes/amadeus-dark-cobalt.yaml +++ b/themes/amadeus-dark-cobalt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gbrachetta.amadeus-dark-theme" version: "0.0.17" installs: 1760 + rating: 3.5 + ratings: 2 author: "gbrachetta" repo: "https://github.com/GBrachetta/amadeus-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=gbrachetta.amadeus-dark-theme" diff --git a/themes/amadeus-dark-pastel.yaml b/themes/amadeus-dark-pastel.yaml index 5047d9f0..4541ab99 100644 --- a/themes/amadeus-dark-pastel.yaml +++ b/themes/amadeus-dark-pastel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gbrachetta.amadeus-dark-theme" version: "0.0.17" installs: 1760 + rating: 3.5 + ratings: 2 author: "gbrachetta" repo: "https://github.com/GBrachetta/amadeus-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=gbrachetta.amadeus-dark-theme" diff --git a/themes/amadeus-dark.yaml b/themes/amadeus-dark.yaml index d96947bb..6b14c2cf 100644 --- a/themes/amadeus-dark.yaml +++ b/themes/amadeus-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gbrachetta.amadeus-dark-theme" version: "0.0.17" installs: 1760 + rating: 3.5 + ratings: 2 author: "gbrachetta" repo: "https://github.com/GBrachetta/amadeus-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=gbrachetta.amadeus-dark-theme" diff --git a/themes/amazon-jungle.yaml b/themes/amazon-jungle.yaml new file mode 100644 index 00000000..b30c4ec5 --- /dev/null +++ b/themes/amazon-jungle.yaml @@ -0,0 +1,52 @@ +name: "Amazon-Jungle" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#0C0A09" + fg: "#F2F2F2" + black: "#0C0A09" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#22C55E" + magenta: "#22C55E" + cyan: "#29C3A0" + white: "#F2F2F2" + brightBlack: "#0C0A09" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#22C55E" + brightMagenta: "#22C55E" + brightCyan: "#29C3A0" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 99.2 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.5 + blue: 57.6 + magenta: 57.6 + cyan: 58.5 + white: 99.2 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.5 + brightBlue: 57.6 + brightMagenta: 57.6 + brightCyan: 58.5 + brightWhite: 99.2 diff --git a/themes/amazonfrog.yaml b/themes/amazonfrog.yaml index f9b7e0db..281ec189 100644 --- a/themes/amazonfrog.yaml +++ b/themes/amazonfrog.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TiagoMarcial.AmazonFrog" version: "0.1.8" installs: 310 + rating: 5 + ratings: 1 author: "Tiago Marcial" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TiagoMarcial.AmazonFrog" diff --git a/themes/ambar-for-vscode.yaml b/themes/ambar-for-vscode.yaml index e16a62e4..11035bef 100644 --- a/themes/ambar-for-vscode.yaml +++ b/themes/ambar-for-vscode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guimar10dev.amber-for-vscode" version: "0.3.1" installs: 481 + rating: 0 + ratings: 0 author: "guimar10_dev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=guimar10dev.amber-for-vscode" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 44 + pair: null contrast: fg: 77.8 black: 0 diff --git a/themes/amber-delight.yaml b/themes/amber-delight.yaml new file mode 100644 index 00000000..354bf85d --- /dev/null +++ b/themes/amber-delight.yaml @@ -0,0 +1,52 @@ +name: "Amber Delight" +source: + marketplace_id: "PrimalSkill.amber-delight" + version: "1.0.2" + installs: 333 + rating: 0 + ratings: 0 + author: "Primal Skill" + repo: "https://github.com/primalskill/amber-delight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PrimalSkill.amber-delight" +colors: + bg: "#000000" + fg: "#E4E4E4" + black: "#734915" + red: "#E35B00" + green: "#5CAB96" + yellow: "#E3CD7B" + blue: "#0F548B" + magenta: "#E35B00" + cyan: "#06AFC7" + white: "#CBCBCB" + brightBlack: "#8E5814" + brightRed: "#FF8A3A" + brightGreen: "#AECAB8" + brightYellow: "#FFC878" + brightBlue: "#67A0CE" + brightMagenta: "#FF8A3A" + brightCyan: "#83A7B4" + brightWhite: "#FEFFF1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 90.4 + black: 15.3 + red: 38.6 + green: 49.3 + yellow: 76.7 + blue: 15.2 + magenta: 38.6 + cyan: 51.2 + white: 75.1 + brightBlack: 22.6 + brightRed: 56.3 + brightGreen: 70.5 + brightYellow: 79 + brightBlue: 48 + brightMagenta: 56.3 + brightCyan: 51.6 + brightWhite: 107.1 diff --git a/themes/amber-red-light.yaml b/themes/amber-red-light.yaml new file mode 100644 index 00000000..682d0914 --- /dev/null +++ b/themes/amber-red-light.yaml @@ -0,0 +1,52 @@ +name: "Amber-Red-Light" +source: + marketplace_id: "HantigoZore.amber-studio" + version: "1.2.0" + installs: 77 + rating: 5 + ratings: 1 + author: "HantigoZore" + repo: "https://github.com/HantigoZore/AmberStudio" + url: "https://marketplace.visualstudio.com/items?itemName=HantigoZore.amber-studio" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#C8C8C8" + red: "#E05561" + green: "#98C379" + yellow: "#F69D50" + blue: "#4AA5F0" + magenta: "#C792EA" + cyan: "#82AAFF" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 98.7 + black: 29.5 + red: 63.9 + green: 39.1 + yellow: 41.5 + blue: 51.2 + magenta: 47.3 + cyan: 45.2 + white: 12.3 + brightBlack: 85.6 + brightRed: 54.7 + brightGreen: 25.3 + brightYellow: 40.1 + brightBlue: 37.7 + brightMagenta: 50.7 + brightCyan: 33.8 + brightWhite: 19.4 diff --git a/themes/amber-red.yaml b/themes/amber-red.yaml new file mode 100644 index 00000000..a22fd1c7 --- /dev/null +++ b/themes/amber-red.yaml @@ -0,0 +1,52 @@ +name: "Amber-Red" +source: + marketplace_id: "HantigoZore.amber-studio" + version: "1.2.0" + installs: 77 + rating: 5 + ratings: 1 + author: "HantigoZore" + repo: "https://github.com/HantigoZore/AmberStudio" + url: "https://marketplace.visualstudio.com/items?itemName=HantigoZore.amber-studio" +colors: + bg: "#000000" + fg: "#E1E4E8" + black: "#3F4451" + red: "#E05561" + green: "#98C379" + yellow: "#F69D50" + blue: "#4AA5F0" + magenta: "#C792EA" + cyan: "#82AAFF" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 90.2 + black: 9.9 + red: 37.7 + green: 63.3 + yellow: 60.7 + blue: 50.7 + magenta: 54.8 + cyan: 56.9 + white: 91.7 + brightBlack: 16.5 + brightRed: 47.1 + brightGreen: 77.8 + brightYellow: 62.2 + brightBlue: 64.7 + brightMagenta: 51.3 + brightCyan: 68.8 + brightWhite: 84 diff --git a/themes/ambient.yaml b/themes/ambient.yaml index 3286b83e..cc79cf15 100644 --- a/themes/ambient.yaml +++ b/themes/ambient.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.twodark" version: "0.4.3" installs: 444 + rating: 5 + ratings: 1 author: "Avetis" repo: "https://github.com/AvetisDN/twodark-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.twodark" diff --git a/themes/amethyst-dreams.yaml b/themes/amethyst-dreams.yaml index 84f0eeff..aa927a3f 100644 --- a/themes/amethyst-dreams.yaml +++ b/themes/amethyst-dreams.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sniffin.amethyst-dreams" version: "1.1.1" installs: 263 + rating: 0 + ratings: 0 author: "Sniffin" repo: "https://github.com/Sniffin3083/amethyst-dreams" url: "https://marketplace.visualstudio.com/items?itemName=Sniffin.amethyst-dreams" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 318 + pair: null contrast: fg: 79.5 black: 0 diff --git a/themes/amethyst-kiss-dark-kiss-mode.yaml b/themes/amethyst-kiss-dark-kiss-mode.yaml new file mode 100644 index 00000000..3a542133 --- /dev/null +++ b/themes/amethyst-kiss-dark-kiss-mode.yaml @@ -0,0 +1,52 @@ +name: "Amethyst Kiss Dark(Kiss Mode)" +source: + marketplace_id: "MahdiBehkar.amethyst-kiss" + version: "0.1.0" + installs: 641 + rating: 0 + ratings: 0 + author: "MahdiBehkar" + repo: "https://github.com/Behkar/amethyst_kiss_theme" + url: "https://marketplace.visualstudio.com/items?itemName=MahdiBehkar.amethyst-kiss" +colors: + bg: "#373E4D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 265 + pair: null + contrast: + fg: 71.4 + black: 9 + red: 18.6 + green: 44.9 + yellow: 77.5 + blue: 19.3 + magenta: 21.7 + cyan: 39.5 + white: 81.9 + brightBlack: 13.9 + brightRed: 30.5 + brightGreen: 55.4 + brightYellow: 87.5 + brightBlue: 31.9 + brightMagenta: 37.3 + brightCyan: 47.3 + brightWhite: 81.9 diff --git a/themes/amethyst-kiss-light-kiss-mode.yaml b/themes/amethyst-kiss-light-kiss-mode.yaml new file mode 100644 index 00000000..b3360dc0 --- /dev/null +++ b/themes/amethyst-kiss-light-kiss-mode.yaml @@ -0,0 +1,52 @@ +name: "Amethyst Kiss Light(Kiss Mode)" +source: + marketplace_id: "MahdiBehkar.amethyst-kiss" + version: "0.1.0" + installs: 641 + rating: 0 + ratings: 0 + author: "MahdiBehkar" + repo: "https://github.com/Behkar/amethyst_kiss_theme" + url: "https://marketplace.visualstudio.com/items?itemName=MahdiBehkar.amethyst-kiss" +colors: + bg: "#F9F9F9" + fg: "#29343D" + black: "#29343D" + red: "#F8961E" + green: "#90BE6D" + yellow: "#F3722C" + blue: "#577590" + magenta: "#F9C74F" + cyan: "#43AA8B" + white: "#555555" + brightBlack: "#394956" + brightRed: "#F8961E" + brightGreen: "#90BE6D" + brightYellow: "#F3722C" + brightBlue: "#577590" + brightMagenta: "#F9C74F" + brightCyan: "#43AA8B" + brightWhite: "#ABABAB" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 95.2 + black: 95.2 + red: 40.1 + green: 38.5 + yellow: 51 + blue: 69.8 + magenta: 22.5 + cyan: 50.8 + white: 82.3 + brightBlack: 87.8 + brightRed: 40.1 + brightGreen: 38.5 + brightYellow: 51 + brightBlue: 69.8 + brightMagenta: 22.5 + brightCyan: 50.8 + brightWhite: 41.7 diff --git a/themes/amethyst-stone.yaml b/themes/amethyst-stone.yaml new file mode 100644 index 00000000..d61f17b1 --- /dev/null +++ b/themes/amethyst-stone.yaml @@ -0,0 +1,52 @@ +name: "Amethyst-Stone" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#030712" + fg: "#F9FAFB" + black: "#030712" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#6D28D9" + magenta: "#6D28D9" + cyan: "#29C3A0" + white: "#F9FAFB" + brightBlack: "#030712" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#6D28D9" + brightMagenta: "#6D28D9" + brightCyan: "#29C3A0" + brightWhite: "#F9FAFB" +meta: + mode: "dark" + accent: "magenta" + hue: 262 + pair: null + contrast: + fg: 104.4 + black: 0 + red: 10.3 + green: 58.6 + yellow: 52.6 + blue: 18.5 + magenta: 18.5 + cyan: 58.6 + white: 104.4 + brightBlack: 0 + brightRed: 10.3 + brightGreen: 58.6 + brightYellow: 52.6 + brightBlue: 18.5 + brightMagenta: 18.5 + brightCyan: 58.6 + brightWhite: 104.4 diff --git a/themes/amethyst-theme.yaml b/themes/amethyst-theme.yaml index 9e0b3c52..1c724964 100644 --- a/themes/amethyst-theme.yaml +++ b/themes/amethyst-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JuanILlaberia.amethyst-dark-theme" version: "1.0.0" installs: 1330 + rating: 5 + ratings: 1 author: "Juan I. Llaberia" repo: "https://github.com/JuaniLlaberia/Amethyst" url: "https://marketplace.visualstudio.com/items?itemName=JuanILlaberia.amethyst-dark-theme" diff --git a/themes/amminial.yaml b/themes/amminial.yaml new file mode 100644 index 00000000..e007aa47 --- /dev/null +++ b/themes/amminial.yaml @@ -0,0 +1,52 @@ +name: "amMinial" +source: + marketplace_id: "abdirrahman.amminimal" + version: "0.5.0" + installs: 38 + rating: 0 + ratings: 0 + author: "abdirrahman" + repo: "https://github.com/Abdirrahman/vsc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=abdirrahman.amminimal" +colors: + bg: "#1B1C1E" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.3 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.5 diff --git a/themes/amoled-dark-theme.yaml b/themes/amoled-dark-theme.yaml index c6aa89d7..85ebc285 100644 --- a/themes/amoled-dark-theme.yaml +++ b/themes/amoled-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rendinjast.amoled-black" version: "0.1.0" installs: 58362 + rating: 4.4 + ratings: 5 author: "Erfan khadivar" repo: "https://github.com/rendinjast/amoled-black" url: "https://marketplace.visualstudio.com/items?itemName=rendinjast.amoled-black" diff --git a/themes/amoledtest-fork-fork.yaml b/themes/amoledtest-fork-fork.yaml index ddb8a748..ac3f8783 100644 --- a/themes/amoledtest-fork-fork.yaml +++ b/themes/amoledtest-fork-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DanielLucario.Mitternacht" version: "1.0.0" installs: 17 + rating: 0 + ratings: 0 author: "Daniel Lucario" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DanielLucario.Mitternacht" diff --git a/themes/amora.yaml b/themes/amora.yaml index 394e92c9..69a74088 100644 --- a/themes/amora.yaml +++ b/themes/amora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "securisec.hapsida-securisec" version: "0.0.30" installs: 226 + rating: 5 + ratings: 1 author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" diff --git a/themes/amozonia.yaml b/themes/amozonia.yaml index 86bb27eb..68c247e8 100644 --- a/themes/amozonia.yaml +++ b/themes/amozonia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VueComputedTheme.styldev" version: "0.0.2" installs: 189 + rating: 5 + ratings: 1 author: "VueComputed Theme" repo: "https://github.com/rafa4dev/styldev" url: "https://marketplace.visualstudio.com/items?itemName=VueComputedTheme.styldev" diff --git a/themes/amp-dark.yaml b/themes/amp-dark.yaml index 341059f6..10edcf92 100644 --- a/themes/amp-dark.yaml +++ b/themes/amp-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hrose.amp-theme" version: "0.1.0" installs: 495 + rating: 5 + ratings: 2 author: "Hanna Rose" repo: "https://codeberg.org/hanna/amp-theme#vscode" url: "https://marketplace.visualstudio.com/items?itemName=hrose.amp-theme" diff --git a/themes/amp-light.yaml b/themes/amp-light.yaml index dd235fab..3c0107b6 100644 --- a/themes/amp-light.yaml +++ b/themes/amp-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hrose.amp-theme" version: "0.1.0" installs: 495 + rating: 5 + ratings: 2 author: "Hanna Rose" repo: "https://codeberg.org/hanna/amp-theme#vscode" url: "https://marketplace.visualstudio.com/items?itemName=hrose.amp-theme" diff --git a/themes/an-bis.yaml b/themes/an-bis.yaml index 053bdae4..4ac1ccba 100644 --- a/themes/an-bis.yaml +++ b/themes/an-bis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "felipe-bergamaschi.anubis-theme" version: "1.0.3" installs: 142 + rating: 0 + ratings: 0 author: "Felipe Bergamaschi" repo: "https://github.com/felipe-bergamaschi/anubis-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=felipe-bergamaschi.anubis-theme" diff --git a/themes/anakmun.yaml b/themes/anakmun.yaml index 6adf29e0..d4a9b633 100644 --- a/themes/anakmun.yaml +++ b/themes/anakmun.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "louiscavalcante.theme-anakmun" version: "3.5.0" installs: 472 + rating: 5 + ratings: 1 author: "Luiz Cavalcante" repo: "https://github.com/louiscavalcante/theme-anakmun" url: "https://marketplace.visualstudio.com/items?itemName=louiscavalcante.theme-anakmun" diff --git a/themes/analog-dream-beige-terminal.yaml b/themes/analog-dream-beige-terminal.yaml index b6a86415..04aa21aa 100644 --- a/themes/analog-dream-beige-terminal.yaml +++ b/themes/analog-dream-beige-terminal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "taotao7.cassette-futurism" version: "0.0.1" installs: 33 + rating: 0 + ratings: 0 author: "taotao7" repo: "https://github.com/taotao7/cassette-futurism" url: "https://marketplace.visualstudio.com/items?itemName=taotao7.cassette-futurism" diff --git a/themes/analog-dream-magnetic-night.yaml b/themes/analog-dream-magnetic-night.yaml index bc37de13..64a3084f 100644 --- a/themes/analog-dream-magnetic-night.yaml +++ b/themes/analog-dream-magnetic-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "taotao7.cassette-futurism" version: "0.0.1" installs: 33 + rating: 0 + ratings: 0 author: "taotao7" repo: "https://github.com/taotao7/cassette-futurism" url: "https://marketplace.visualstudio.com/items?itemName=taotao7.cassette-futurism" diff --git a/themes/anasdev.yaml b/themes/anasdev.yaml index af182d2a..91e81d2a 100644 --- a/themes/anasdev.yaml +++ b/themes/anasdev.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anasdev.meza-theme" version: "0.0.9" installs: 75 + rating: 0 + ratings: 0 author: "anasdev" repo: "https://github.com/MezaStudio/Meza-Theme" url: "https://marketplace.visualstudio.com/items?itemName=anasdev.meza-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 79.2 black: 0 diff --git a/themes/anastasia.yaml b/themes/anastasia.yaml index 2f8920f3..6986b65d 100644 --- a/themes/anastasia.yaml +++ b/themes/anastasia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ShayanMukherjee.anastasia" version: "1.0.3" installs: 19 + rating: 5 + ratings: 1 author: "Sayanjit Mukherjee" repo: "https://github.com/Thedrogon/anastasia" url: "https://marketplace.visualstudio.com/items?itemName=ShayanMukherjee.anastasia" diff --git a/themes/andromeda-custom.yaml b/themes/andromeda-custom.yaml index 535eb7ce..4f73ec93 100644 --- a/themes/andromeda-custom.yaml +++ b/themes/andromeda-custom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "canhabil.andromeda-custom" version: "0.0.1" installs: 898 + rating: 0 + ratings: 0 author: "canhabil" repo: "https://github.com/Khoalah/Andromeda-custom" url: "https://marketplace.visualstudio.com/items?itemName=canhabil.andromeda-custom" diff --git a/themes/andromeda-light-italic-bordered.yaml b/themes/andromeda-light-italic-bordered.yaml index dfa2018c..53662cbe 100644 --- a/themes/andromeda-light-italic-bordered.yaml +++ b/themes/andromeda-light-italic-bordered.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kailoklum.perseus" version: "1.0.0" installs: 220 + rating: 0 + ratings: 0 author: "kailoklum" repo: "https://github.com/kailoklum/Perseus" url: "https://marketplace.visualstudio.com/items?itemName=kailoklum.perseus" diff --git a/themes/andromeda-night.yaml b/themes/andromeda-night.yaml new file mode 100644 index 00000000..fd56ffcd --- /dev/null +++ b/themes/andromeda-night.yaml @@ -0,0 +1,52 @@ +name: "Andromeda Night" +source: + marketplace_id: "ni3rav.andromeda-night" + version: "0.0.7" + installs: 1263 + rating: 0 + ratings: 0 + author: "ni3rav" + repo: "https://github.com/ni3rav/andromeda-night" + url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.andromeda-night" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 59.3 + black: 0 + red: 49.4 + green: 72.2 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 32.1 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 72.2 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 59 diff --git a/themes/andromeda-zed.yaml b/themes/andromeda-zed.yaml index 306964e4..860a9cd2 100644 --- a/themes/andromeda-zed.yaml +++ b/themes/andromeda-zed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AdrienLeloup.andromeda-zed" version: "0.0.1" installs: 2130 + rating: 5 + ratings: 1 author: "Adrien Leloup" repo: "https://github.com/voidgraphics/andromeda-zed-vs-code" url: "https://marketplace.visualstudio.com/items?itemName=AdrienLeloup.andromeda-zed" diff --git a/themes/andromeda.yaml b/themes/andromeda.yaml index b5bcd9df..7b0a7a58 100644 --- a/themes/andromeda.yaml +++ b/themes/andromeda.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "apoorvkhare07.andromeda-vscode" version: "1.1.0" installs: 35973 + rating: 5 + ratings: 2 author: "apoorvkhare07" repo: "https://github.com/apoorvkhare07/andromeda" url: "https://marketplace.visualstudio.com/items?itemName=apoorvkhare07.andromeda-vscode" diff --git a/themes/anemones.yaml b/themes/anemones.yaml index 9b45288d..1323778a 100644 --- a/themes/anemones.yaml +++ b/themes/anemones.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anemones.anemone-colors" version: "0.0.2" installs: 378 + rating: 0 + ratings: 0 author: "anemones" repo: "https://github.com/radio-alice/anemone-colors" url: "https://marketplace.visualstudio.com/items?itemName=anemones.anemone-colors" diff --git a/themes/angelnature2.yaml b/themes/angelnature2.yaml index 067e0da5..b843a403 100644 --- a/themes/angelnature2.yaml +++ b/themes/angelnature2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "angelcontreras.angelnature2" version: "0.3.0" installs: 25 + rating: 0 + ratings: 0 author: "angelcontreras" repo: "https://github.com/username/repository" url: "https://marketplace.visualstudio.com/items?itemName=angelcontreras.angelnature2" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 56 + pair: null contrast: fg: 88.1 black: 0 diff --git a/themes/angrboda-dark.yaml b/themes/angrboda-dark.yaml index 67d52365..ebd7bf54 100644 --- a/themes/angrboda-dark.yaml +++ b/themes/angrboda-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carlssonloke.angrboda" version: "1.3.1" installs: 363 + rating: 0 + ratings: 0 author: "carlssonloke" repo: "https://github.com/lokecarlsson/Angrboda" url: "https://marketplace.visualstudio.com/items?itemName=carlssonloke.angrboda" diff --git a/themes/angrboda-light.yaml b/themes/angrboda-light.yaml index be834f12..82c14049 100644 --- a/themes/angrboda-light.yaml +++ b/themes/angrboda-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carlssonloke.angrboda" version: "1.3.1" installs: 363 + rating: 0 + ratings: 0 author: "carlssonloke" repo: "https://github.com/lokecarlsson/Angrboda" url: "https://marketplace.visualstudio.com/items?itemName=carlssonloke.angrboda" diff --git a/themes/angular-dark-theme.yaml b/themes/angular-dark-theme.yaml index c16944d6..4b017731 100644 --- a/themes/angular-dark-theme.yaml +++ b/themes/angular-dark-theme.yaml @@ -1,8 +1,10 @@ name: "Angular Dark Theme" source: marketplace_id: "MichaellAlavedraMunayco.angular-theme" - version: "7.1.1" - installs: 16338 + version: "7.1.2" + installs: 16339 + rating: 5 + ratings: 1 author: "Michaell Alavedra" repo: "https://github.com/gitchaell/angular-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=MichaellAlavedraMunayco.angular-theme" diff --git a/themes/animatrix.yaml b/themes/animatrix.yaml index 5f1f4f84..75848452 100644 --- a/themes/animatrix.yaml +++ b/themes/animatrix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KurtDunn.animatrix" version: "0.0.4" installs: 6174 + rating: 0 + ratings: 0 author: "Animatrix" repo: "https://github.com/kurtisdunn/animatrix" url: "https://marketplace.visualstudio.com/items?itemName=KurtDunn.animatrix" diff --git a/themes/animetheme.yaml b/themes/animetheme.yaml index bccedca5..2cab7f81 100644 --- a/themes/animetheme.yaml +++ b/themes/animetheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "animetheme.animetheme" version: "0.0.2" installs: 3932 + rating: 0 + ratings: 0 author: "animetheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=animetheme.animetheme" diff --git a/themes/anisochromatic.yaml b/themes/anisochromatic.yaml index 36d57966..15491130 100644 --- a/themes/anisochromatic.yaml +++ b/themes/anisochromatic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "isomorph-research.anisochromatic" version: "0.0.14" installs: 424 + rating: 5 + ratings: 1 author: "Isomorph Research Laboratories" repo: "https://github.com/isomorph-research/anisochromatic-vscode" url: "https://marketplace.visualstudio.com/items?itemName=isomorph-research.anisochromatic" diff --git a/themes/ano-theme-dark.yaml b/themes/ano-theme-dark.yaml index 6b5a2ef2..efc2aeb9 100644 --- a/themes/ano-theme-dark.yaml +++ b/themes/ano-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MaksymMarholin.ano-theme" version: "0.1.26" installs: 1166 + rating: 5 + ratings: 1 author: "Maksym Marholin" repo: "https://github.com/delafin/AnoTheme" url: "https://marketplace.visualstudio.com/items?itemName=MaksymMarholin.ano-theme" diff --git a/themes/anoldhope.yaml b/themes/anoldhope.yaml index 8b7b60f2..9b4e275f 100644 --- a/themes/anoldhope.yaml +++ b/themes/anoldhope.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dustinsanders.an-old-hope-theme-vscode" version: "4.4.0" installs: 102957 + rating: 4.79 + ratings: 24 author: "Dustin Sanders" repo: "https://github.com/git@github.com:dustinsanders/an-old-hope-theme-vscode.git" url: "https://marketplace.visualstudio.com/items?itemName=dustinsanders.an-old-hope-theme-vscode" diff --git a/themes/another-acid-trip.yaml b/themes/another-acid-trip.yaml new file mode 100644 index 00000000..ef7b35ab --- /dev/null +++ b/themes/another-acid-trip.yaml @@ -0,0 +1,52 @@ +name: "Another-Acid-Trip" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#020817" + fg: "#F8FAFC" + black: "#020817" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#A4ED2C" + magenta: "#A4ED2C" + cyan: "#29C3A0" + white: "#F8FAFC" + brightBlack: "#020817" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#A4ED2C" + brightMagenta: "#A4ED2C" + brightCyan: "#29C3A0" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "green" + hue: 259 + pair: null + contrast: + fg: 104.3 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.6 + blue: 83.1 + magenta: 83.1 + cyan: 58.5 + white: 104.3 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 83.1 + brightMagenta: 83.1 + brightCyan: 58.5 + brightWhite: 104.3 diff --git a/themes/anquyx.yaml b/themes/anquyx.yaml new file mode 100644 index 00000000..664aa0a4 --- /dev/null +++ b/themes/anquyx.yaml @@ -0,0 +1,52 @@ +name: "anquyx" +source: + marketplace_id: "julisales.anquyx-theme" + version: "2.0.0" + installs: 39 + rating: 5 + ratings: 1 + author: "julisales" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=julisales.anquyx-theme" +colors: + bg: "#1A1727" + fg: "#FFFBFB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#B8B8B8" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 292 + pair: null + contrast: + fg: 104.5 + black: 0 + red: 26.5 + green: 52.7 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 62.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.8 diff --git a/themes/anthropic-dark.yaml b/themes/anthropic-dark.yaml index 5ebc5c4c..f3e19525 100644 --- a/themes/anthropic-dark.yaml +++ b/themes/anthropic-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TeoVoss.antzed-theme" version: "1.1.1" installs: 136 + rating: 0 + ratings: 0 author: "TeoVoss" repo: "https://github.com/TeoVoss/antzed-theme" url: "https://marketplace.visualstudio.com/items?itemName=TeoVoss.antzed-theme" diff --git a/themes/anthropic-light.yaml b/themes/anthropic-light.yaml index 2265ae1b..cc0a2f86 100644 --- a/themes/anthropic-light.yaml +++ b/themes/anthropic-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TeoVoss.antzed-theme" version: "1.1.1" installs: 136 + rating: 0 + ratings: 0 author: "TeoVoss" repo: "https://github.com/TeoVoss/antzed-theme" url: "https://marketplace.visualstudio.com/items?itemName=TeoVoss.antzed-theme" diff --git a/themes/anthropic.yaml b/themes/anthropic.yaml index df034892..c2cccd54 100644 --- a/themes/anthropic.yaml +++ b/themes/anthropic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bryanr.anthropic-theme" version: "0.0.1" installs: 970 + rating: 0 + ratings: 0 author: "Bryan Russett" repo: "https://github.com/od0/anthropic-theme" url: "https://marketplace.visualstudio.com/items?itemName=bryanr.anthropic-theme" diff --git a/themes/anthropocene.yaml b/themes/anthropocene.yaml index 1c7d95f5..4827664e 100644 --- a/themes/anthropocene.yaml +++ b/themes/anthropocene.yaml @@ -2,7 +2,9 @@ name: "anthropocene" source: marketplace_id: "ridamu.anthropocene" version: "0.0.1" - installs: 150 + installs: 151 + rating: 0 + ratings: 0 author: "ridamu" repo: "https://github.com/rdmulford/anthropocene" url: "https://marketplace.visualstudio.com/items?itemName=ridamu.anthropocene" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 95.3 black: 0 diff --git a/themes/anti-glare-moonlit.yaml b/themes/anti-glare-moonlit.yaml index 5d945e8d..f6731033 100644 --- a/themes/anti-glare-moonlit.yaml +++ b/themes/anti-glare-moonlit.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "azmarifdev.anti-glare-theme" version: "1.7.0" installs: 759 + rating: 5 + ratings: 3 author: "A. Z. M. Arif" repo: "https://github.com/azmarifdev/anti-glare-theme" url: "https://marketplace.visualstudio.com/items?itemName=azmarifdev.anti-glare-theme" diff --git a/themes/anti-glare-nebula.yaml b/themes/anti-glare-nebula.yaml index 28afabd0..aa334d4e 100644 --- a/themes/anti-glare-nebula.yaml +++ b/themes/anti-glare-nebula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "azmarifdev.anti-glare-theme" version: "1.7.0" installs: 759 + rating: 5 + ratings: 3 author: "A. Z. M. Arif" repo: "https://github.com/azmarifdev/anti-glare-theme" url: "https://marketplace.visualstudio.com/items?itemName=azmarifdev.anti-glare-theme" diff --git a/themes/anti-glare-official.yaml b/themes/anti-glare-official.yaml index 14ece3b3..3b520b4a 100644 --- a/themes/anti-glare-official.yaml +++ b/themes/anti-glare-official.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "azmarifdev.anti-glare-theme" version: "1.7.0" installs: 759 + rating: 5 + ratings: 3 author: "A. Z. M. Arif" repo: "https://github.com/azmarifdev/anti-glare-theme" url: "https://marketplace.visualstudio.com/items?itemName=azmarifdev.anti-glare-theme" diff --git a/themes/anti-gravity-pink.yaml b/themes/anti-gravity-pink.yaml index 9a3fe1a7..9ba26773 100644 --- a/themes/anti-gravity-pink.yaml +++ b/themes/anti-gravity-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hap4114.antigravity-pink" version: "0.1.0" installs: 134 + rating: 5 + ratings: 1 author: "Himani Anil Patil" repo: "https://github.com/hap4114/antigravity-pink" url: "https://marketplace.visualstudio.com/items?itemName=hap4114.antigravity-pink" diff --git a/themes/antidote.yaml b/themes/antidote.yaml index 150de7af..9fb6bfbd 100644 --- a/themes/antidote.yaml +++ b/themes/antidote.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "philecker.antidote" version: "2.0.1" installs: 884 + rating: 5 + ratings: 2 author: "Phil Ecker" repo: "https://github.com/philecker/antidote" url: "https://marketplace.visualstudio.com/items?itemName=philecker.antidote" diff --git a/themes/antimaterial.yaml b/themes/antimaterial.yaml index 00b5c181..0d251e14 100644 --- a/themes/antimaterial.yaml +++ b/themes/antimaterial.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tatyshev.vscode-antimaterial" version: "2.2.0" installs: 1032 + rating: 0 + ratings: 0 author: "tatyshev" repo: "https://github.com/tatyshev/vscode-antimaterial" url: "https://marketplace.visualstudio.com/items?itemName=tatyshev.vscode-antimaterial" diff --git a/themes/anubis-dark-theme.yaml b/themes/anubis-dark-theme.yaml index c1df110c..fbf40913 100644 --- a/themes/anubis-dark-theme.yaml +++ b/themes/anubis-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MoAli.anubis-dark-theme" version: "0.0.1" installs: 265 + rating: 5 + ratings: 1 author: "Mo Ali" repo: "https://github.com/devMoAli/AnubisDarkTheme" url: "https://marketplace.visualstudio.com/items?itemName=MoAli.anubis-dark-theme" diff --git a/themes/anubis-dark.yaml b/themes/anubis-dark.yaml index 9f3d20ee..552bf2a9 100644 --- a/themes/anubis-dark.yaml +++ b/themes/anubis-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Meastblue.orbital-frame" version: "2.2.0" installs: 66 + rating: 0 + ratings: 0 author: "Meastblue" repo: "https://github.com/meastblue/orbital-frame-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" diff --git a/themes/anubis-light.yaml b/themes/anubis-light.yaml index a698947f..7c46b266 100644 --- a/themes/anubis-light.yaml +++ b/themes/anubis-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Meastblue.orbital-frame" version: "2.2.0" installs: 66 + rating: 0 + ratings: 0 author: "Meastblue" repo: "https://github.com/meastblue/orbital-frame-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" diff --git a/themes/anufemist-dark.yaml b/themes/anufemist-dark.yaml index eed4e874..aee84466 100644 --- a/themes/anufemist-dark.yaml +++ b/themes/anufemist-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Anufemist.anufemist-dark" version: "2.1.0" installs: 50 + rating: 0 + ratings: 0 author: "Anufemist" repo: "https://github.com/anufemist/vscode-theme-anufemist-dark" url: "https://marketplace.visualstudio.com/items?itemName=Anufemist.anufemist-dark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 85.2 black: 0 diff --git a/themes/apathy-experimental.yaml b/themes/apathy-experimental.yaml index a5010edd..3f6c3d5f 100644 --- a/themes/apathy-experimental.yaml +++ b/themes/apathy-experimental.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CooperMaruyama.apathy-theme" version: "2.3.0" installs: 263 + rating: 5 + ratings: 2 author: "Cooper Maruyama" repo: "https://github.com/coopmoney/apathy-theme" url: "https://marketplace.visualstudio.com/items?itemName=CooperMaruyama.apathy-theme" diff --git a/themes/apathy.yaml b/themes/apathy.yaml index b58fe0e3..3f62a32a 100644 --- a/themes/apathy.yaml +++ b/themes/apathy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CooperMaruyama.apathy-theme" version: "2.3.0" installs: 263 + rating: 5 + ratings: 2 author: "Cooper Maruyama" repo: "https://github.com/coopmoney/apathy-theme" url: "https://marketplace.visualstudio.com/items?itemName=CooperMaruyama.apathy-theme" diff --git a/themes/apex-carbon.yaml b/themes/apex-carbon.yaml new file mode 100644 index 00000000..ec6078de --- /dev/null +++ b/themes/apex-carbon.yaml @@ -0,0 +1,52 @@ +name: "Apex Carbon++" +source: + marketplace_id: "Gasrulle.gasrulle-theme" + version: "0.6.7" + installs: 5 + rating: 0 + ratings: 0 + author: "Gasrulle" + repo: "https://github.com/gasrulle/gasrulle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" +colors: + bg: "#1F1F1F" + fg: "#C2C2C2" + black: "#1F1F1F" + red: "#E07070" + green: "#9AD68A" + yellow: "#D9B086" + blue: "#78C8F0" + magenta: "#E68CA5" + cyan: "#66CACA" + white: "#C2C2C2" + brightBlack: "#6E6E6E" + brightRed: "#E88080" + brightGreen: "#9CD48C" + brightYellow: "#D4B090" + brightBlue: "#80C8F0" + brightMagenta: "#E898B0" + brightCyan: "#68C8C8" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 67.8 + black: 0 + red: 42 + green: 70.6 + yellow: 61.7 + blue: 65.8 + magenta: 52.5 + cyan: 63.6 + white: 67.8 + brightBlack: 24.5 + brightRed: 48.2 + brightGreen: 69.8 + brightYellow: 61.3 + brightBlue: 66.3 + brightMagenta: 57.1 + brightCyan: 62.7 + brightWhite: 90.9 diff --git a/themes/apex-ember.yaml b/themes/apex-ember.yaml new file mode 100644 index 00000000..ede179ad --- /dev/null +++ b/themes/apex-ember.yaml @@ -0,0 +1,52 @@ +name: "Apex Ember++" +source: + marketplace_id: "Gasrulle.gasrulle-theme" + version: "0.6.7" + installs: 5 + rating: 0 + ratings: 0 + author: "Gasrulle" + repo: "https://github.com/gasrulle/gasrulle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" +colors: + bg: "#1B1C2E" + fg: "#B6BCCE" + black: "#1B1C2E" + red: "#F38BA8" + green: "#A6D189" + yellow: "#F9E2AF" + blue: "#8CAAEE" + magenta: "#C9A0F5" + cyan: "#81C8BE" + white: "#B6BCCE" + brightBlack: "#60647A" + brightRed: "#F5A0B8" + brightGreen: "#B5DDA0" + brightYellow: "#FAEAC0" + brightBlue: "#A0BDF2" + brightMagenta: "#D4B3F7" + brightCyan: "#96D4CA" + brightWhite: "#DCE1F0" +meta: + mode: "dark" + accent: "red" + hue: 281 + pair: null + contrast: + fg: 64.6 + black: 0 + red: 54.9 + green: 69.5 + yellow: 88.7 + blue: 54.8 + magenta: 58.6 + cyan: 64.1 + white: 64.6 + brightBlack: 20.8 + brightRed: 62.5 + brightGreen: 77.2 + brightYellow: 93 + brightBlue: 64.6 + brightMagenta: 67.1 + brightCyan: 71.7 + brightWhite: 86.8 diff --git a/themes/apex-frost.yaml b/themes/apex-frost.yaml new file mode 100644 index 00000000..ca8f9fac --- /dev/null +++ b/themes/apex-frost.yaml @@ -0,0 +1,52 @@ +name: "Apex Frost++" +source: + marketplace_id: "Gasrulle.gasrulle-theme" + version: "0.6.7" + installs: 5 + rating: 0 + ratings: 0 + author: "Gasrulle" + repo: "https://github.com/gasrulle/gasrulle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" +colors: + bg: "#1A1D30" + fg: "#B0B4C4" + black: "#1A1D30" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#B0B4C4" + brightBlack: "#586390" + brightRed: "#FF899B" + brightGreen: "#B0D982" + brightYellow: "#EBC380" + brightBlue: "#8EB5F9" + brightMagenta: "#C9AAF9" + brightCyan: "#93D9FF" + brightWhite: "#C4C8D6" +meta: + mode: "dark" + accent: "red" + hue: 276 + pair: null + contrast: + fg: 60.1 + black: 0 + red: 49 + green: 66.6 + yellow: 61.8 + blue: 50.8 + magenta: 54.7 + cyan: 70.2 + white: 60.1 + brightBlack: 20.8 + brightRed: 56.1 + brightGreen: 73.9 + brightYellow: 71.9 + brightBlue: 60 + brightMagenta: 62.3 + brightCyan: 76.3 + brightWhite: 71.5 diff --git a/themes/apex-neon.yaml b/themes/apex-neon.yaml new file mode 100644 index 00000000..935442d3 --- /dev/null +++ b/themes/apex-neon.yaml @@ -0,0 +1,52 @@ +name: "Apex Neon++" +source: + marketplace_id: "Gasrulle.gasrulle-theme" + version: "0.6.7" + installs: 5 + rating: 0 + ratings: 0 + author: "Gasrulle" + repo: "https://github.com/gasrulle/gasrulle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" +colors: + bg: "#1B1B34" + fg: "#C2C2CA" + black: "#1B1B34" + red: "#FF5555" + green: "#61E984" + yellow: "#E9F096" + blue: "#BE9BF1" + magenta: "#EE8AC3" + cyan: "#98E1F0" + white: "#C2C2CA" + brightBlack: "#566698" + brightRed: "#FF6E6E" + brightGreen: "#7CEC9C" + brightYellow: "#F5FCA0" + brightBlue: "#CAA3F2" + brightMagenta: "#F1A0CE" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 282 + pair: null + contrast: + fg: 68.3 + black: 0 + red: 42.6 + green: 76.1 + yellow: 92.1 + blue: 55.1 + magenta: 54.8 + cyan: 79.6 + white: 68.3 + brightBlack: 22 + brightRed: 48 + brightGreen: 79.6 + brightYellow: 99.7 + brightBlue: 59.6 + brightMagenta: 62.7 + brightCyan: 96 + brightWhite: 106.1 diff --git a/themes/apex-pastel.yaml b/themes/apex-pastel.yaml new file mode 100644 index 00000000..1f5c326f --- /dev/null +++ b/themes/apex-pastel.yaml @@ -0,0 +1,52 @@ +name: "Apex Pastel++" +source: + marketplace_id: "Gasrulle.gasrulle-theme" + version: "0.6.7" + installs: 5 + rating: 0 + ratings: 0 + author: "Gasrulle" + repo: "https://github.com/gasrulle/gasrulle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" +colors: + bg: "#1F1F1F" + fg: "#BEBBBD" + black: "#1F1F1F" + red: "#E098A8" + green: "#97BF93" + yellow: "#D8C890" + blue: "#8CBDC6" + magenta: "#AA8BC1" + cyan: "#8EBFAB" + white: "#BEBBBD" + brightBlack: "#6E6A6C" + brightRed: "#E8A8B4" + brightGreen: "#A8CCA0" + brightYellow: "#E0D4A0" + brightBlue: "#A0CDD2" + brightMagenta: "#BB9BD0" + brightCyan: "#A0D0B8" + brightWhite: "#DCCCD2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 64.2 + black: 0 + red: 55.4 + green: 60.2 + yellow: 71.5 + blue: 60.3 + magenta: 44.1 + cyan: 60.2 + white: 64.2 + brightBlack: 23.2 + brightRed: 62.7 + brightGreen: 67.9 + brightYellow: 78.2 + brightBlue: 69.6 + brightMagenta: 52.6 + brightCyan: 69.8 + brightWhite: 76.1 diff --git a/themes/apex-steel.yaml b/themes/apex-steel.yaml new file mode 100644 index 00000000..4f67eb4d --- /dev/null +++ b/themes/apex-steel.yaml @@ -0,0 +1,52 @@ +name: "Apex Steel++" +source: + marketplace_id: "Gasrulle.gasrulle-theme" + version: "0.6.7" + installs: 5 + rating: 0 + ratings: 0 + author: "Gasrulle" + repo: "https://github.com/gasrulle/gasrulle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" +colors: + bg: "#1B1E25" + fg: "#ABB2BF" + black: "#1B1E25" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5B6270" + brightRed: "#E88389" + brightGreen: "#A9D18A" + brightYellow: "#EDCE8E" + brightBlue: "#74BAF2" + brightMagenta: "#D48BE8" + brightCyan: "#6AC4CF" + brightWhite: "#C8CDD5" +meta: + mode: "dark" + accent: "pink" + hue: 267 + pair: null + contrast: + fg: 58.6 + black: 0 + red: 41.2 + green: 61.4 + yellow: 69.7 + blue: 53.8 + magenta: 44.3 + cyan: 53.7 + white: 58.6 + brightBlack: 19.4 + brightRed: 49.4 + brightGreen: 69.8 + brightYellow: 77.2 + brightBlue: 59.7 + brightMagenta: 52.6 + brightCyan: 61.5 + brightWhite: 74.2 diff --git a/themes/apex.yaml b/themes/apex.yaml index 7843a79c..ff419cc9 100644 --- a/themes/apex.yaml +++ b/themes/apex.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FluffyBear1111.apex-theme" version: "1.0.0" installs: 161 + rating: 5 + ratings: 1 author: "FluffyBear" repo: null url: "https://marketplace.visualstudio.com/items?itemName=FluffyBear1111.apex-theme" diff --git a/themes/apollo-dark.yaml b/themes/apollo-dark.yaml index b8cf7e75..846bd873 100644 --- a/themes/apollo-dark.yaml +++ b/themes/apollo-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lufutu.apollo-theme" version: "1.0.0" installs: 149 + rating: 0 + ratings: 0 author: "lufutu" repo: "https://github.com/lufutu/apollo-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lufutu.apollo-theme" diff --git a/themes/apollo-light.yaml b/themes/apollo-light.yaml index d9c568e7..5595a132 100644 --- a/themes/apollo-light.yaml +++ b/themes/apollo-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lufutu.apollo-theme" version: "1.0.0" installs: 149 + rating: 0 + ratings: 0 author: "lufutu" repo: "https://github.com/lufutu/apollo-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lufutu.apollo-theme" diff --git a/themes/app-netlify-com.yaml b/themes/app-netlify-com.yaml new file mode 100644 index 00000000..ef0630af --- /dev/null +++ b/themes/app-netlify-com.yaml @@ -0,0 +1,52 @@ +name: "app.netlify.com" +source: + marketplace_id: "chee.chee-vscode-themes" + version: "1.0.0" + installs: 104 + rating: 0 + ratings: 0 + author: "chee" + repo: "https://github.com/chee/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=chee.chee-vscode-themes" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#3B434C" + red: "#FE4E5C" + green: "#3AC364" + yellow: "#FBB13D" + blue: "#316BF4" + magenta: "#EF7FEB" + cyan: "#04A29F" + white: "#BBBBBB" + brightBlack: "#4D565F" + brightRed: "#FE8382" + brightGreen: "#93F5A5" + brightYellow: "#FACD6F" + brightBlue: "#80ABFA" + brightMagenta: "#F3A8EE" + brightCyan: "#32E6E2" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 106 + black: 93.3 + red: 58.6 + green: 44.7 + yellow: 34.1 + blue: 71.5 + magenta: 46.1 + cyan: 57.9 + white: 36.7 + brightBlack: 86 + brightRed: 46.7 + brightGreen: 15.9 + brightYellow: 23.2 + brightBlue: 45.3 + brightMagenta: 33.4 + brightCyan: 24.8 + brightWhite: 0 diff --git a/themes/apparently-purple.yaml b/themes/apparently-purple.yaml index c3405bb0..5ba03833 100644 --- a/themes/apparently-purple.yaml +++ b/themes/apparently-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ApparentlyStudio.apparently-purple" version: "1.0.3" installs: 4455 + rating: 4 + ratings: 1 author: "Apparently Studio" repo: "https://github.com/apparently-studio/apparently-purple" url: "https://marketplace.visualstudio.com/items?itemName=ApparentlyStudio.apparently-purple" diff --git a/themes/apple-dancheong-minimal-light.yaml b/themes/apple-dancheong-minimal-light.yaml index 9bff43a3..42ce7602 100644 --- a/themes/apple-dancheong-minimal-light.yaml +++ b/themes/apple-dancheong-minimal-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "weston0713.korean-dancheong-light" version: "1.1.0" installs: 73 + rating: 0 + ratings: 0 author: "weston0713" repo: "https://github.com/HC-kang/korean-dancheong-light" url: "https://marketplace.visualstudio.com/items?itemName=weston0713.korean-dancheong-light" diff --git a/themes/apprentice.yaml b/themes/apprentice.yaml index d3f6b061..42348820 100644 --- a/themes/apprentice.yaml +++ b/themes/apprentice.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arzg.apprentice" version: "1.3.0" installs: 660 + rating: 1 + ratings: 1 author: "arzg" repo: "https://github.com/arzg/apprentice-vscode" url: "https://marketplace.visualstudio.com/items?itemName=arzg.apprentice" diff --git a/themes/april-dark-theme.yaml b/themes/april-dark-theme.yaml index 6d61b028..4058f888 100644 --- a/themes/april-dark-theme.yaml +++ b/themes/april-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/aqua-glacier.yaml b/themes/aqua-glacier.yaml new file mode 100644 index 00000000..caae6ba5 --- /dev/null +++ b/themes/aqua-glacier.yaml @@ -0,0 +1,52 @@ +name: "Aqua-Glacier" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#252525" + fg: "#FBFBFB" + black: "#252525" + red: "#DC2828" + green: "#29C3A0" + yellow: "#D29922" + blue: "#1ADBF9" + magenta: "#1ADBF9" + cyan: "#29C3A0" + white: "#FBFBFB" + brightBlack: "#252525" + brightRed: "#DC2828" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#1ADBF9" + brightMagenta: "#1ADBF9" + brightCyan: "#29C3A0" + brightWhite: "#FBFBFB" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.3 + black: 0 + red: 27.3 + green: 55.7 + yellow: 49.8 + blue: 71 + magenta: 71 + cyan: 55.7 + white: 102.3 + brightBlack: 0 + brightRed: 27.3 + brightGreen: 55.7 + brightYellow: 49.8 + brightBlue: 71 + brightMagenta: 71 + brightCyan: 55.7 + brightWhite: 102.3 diff --git a/themes/aquamain.yaml b/themes/aquamain.yaml index 81f874d1..a96d948c 100644 --- a/themes/aquamain.yaml +++ b/themes/aquamain.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JohnnyBoySou.aqua-main" version: "0.0.9" installs: 1650 + rating: 0 + ratings: 0 author: "JohnnyBoySou" repo: "https://github.com/JohnnyBoySou/aqua-main" url: "https://marketplace.visualstudio.com/items?itemName=JohnnyBoySou.aqua-main" diff --git a/themes/aquanova.yaml b/themes/aquanova.yaml index 0632ad4a..3dee72a5 100644 --- a/themes/aquanova.yaml +++ b/themes/aquanova.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AarMagic.aquanova" version: "0.0.5" installs: 232 + rating: 5 + ratings: 2 author: "AarWeb" repo: "https://github.com/aarweb/aquanova" url: "https://marketplace.visualstudio.com/items?itemName=AarMagic.aquanova" diff --git a/themes/arabian-nights.yaml b/themes/arabian-nights.yaml index 0ba98cac..b70890f4 100644 --- a/themes/arabian-nights.yaml +++ b/themes/arabian-nights.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrejkoller.arabian-nights-theme" version: "1.0.4" installs: 134 + rating: 5 + ratings: 1 author: "andrejkoller" repo: "https://github.com/andrejkoller/arabian-nights-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrejkoller.arabian-nights-theme" diff --git a/themes/arabian-theme.yaml b/themes/arabian-theme.yaml index 2dbb1b03..2e5551b4 100644 --- a/themes/arabian-theme.yaml +++ b/themes/arabian-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevangTomar.vscode-diverse-dye" version: "1.3.0" installs: 2595 + rating: 5 + ratings: 3 author: "Devang Tomar ⭐" repo: "https://github.com/devangtomar/vscode-diverse-dye" url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" diff --git a/themes/arc-dark.yaml b/themes/arc-dark.yaml index 52fac91e..5dbe858b 100644 --- a/themes/arc-dark.yaml +++ b/themes/arc-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rdnlsmith.linux-themes" version: "1.3.0" installs: 41712 + rating: 4.75 + ratings: 4 author: "rdnlsmith" repo: "https://github.com/rdnlsmith/vscode-arc-theme" url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" diff --git a/themes/arcadia-theme-dark.yaml b/themes/arcadia-theme-dark.yaml index f931f977..226ab582 100644 --- a/themes/arcadia-theme-dark.yaml +++ b/themes/arcadia-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kodi.kuiro-theme" version: "1.3.2" installs: 59 + rating: 0 + ratings: 0 author: "Moti" repo: "https://github.com/motidev/kuiro-theme" url: "https://marketplace.visualstudio.com/items?itemName=Kodi.kuiro-theme" diff --git a/themes/arcadia-theme-storm.yaml b/themes/arcadia-theme-storm.yaml index 71b20ecf..fb33f5f0 100644 --- a/themes/arcadia-theme-storm.yaml +++ b/themes/arcadia-theme-storm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kodi.kuiro-theme" version: "1.3.2" installs: 59 + rating: 0 + ratings: 0 author: "Moti" repo: "https://github.com/motidev/kuiro-theme" url: "https://marketplace.visualstudio.com/items?itemName=Kodi.kuiro-theme" diff --git a/themes/arcaea.yaml b/themes/arcaea.yaml index fe7a6d4e..d87b5495 100644 --- a/themes/arcaea.yaml +++ b/themes/arcaea.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ayatough.arcaea-theme" version: "0.1.2" installs: 2253 + rating: 5 + ratings: 4 author: "ayatough" repo: "https://github.com/ayatough/vscode-arcaea-theme" url: "https://marketplace.visualstudio.com/items?itemName=ayatough.arcaea-theme" diff --git a/themes/archangel-dusk.yaml b/themes/archangel-dusk.yaml index 9c55342d..813b83c1 100644 --- a/themes/archangel-dusk.yaml +++ b/themes/archangel-dusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "allam-se.archangel" version: "3.1.0" installs: 505 + rating: 5 + ratings: 1 author: "Allam" repo: "https://github.com/allam-se/archangel" url: "https://marketplace.visualstudio.com/items?itemName=allam-se.archangel" diff --git a/themes/archangel.yaml b/themes/archangel.yaml index 8732e0e0..5793dede 100644 --- a/themes/archangel.yaml +++ b/themes/archangel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "allam-se.archangel" version: "3.1.0" installs: 505 + rating: 5 + ratings: 1 author: "Allam" repo: "https://github.com/allam-se/archangel" url: "https://marketplace.visualstudio.com/items?itemName=allam-se.archangel" diff --git a/themes/archie-dark-color-theme.yaml b/themes/archie-dark-color-theme.yaml index 5c9e92e4..191c00e4 100644 --- a/themes/archie-dark-color-theme.yaml +++ b/themes/archie-dark-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SahilKumar115.archie-dark-custom" version: "1.0.0" installs: 92 + rating: 0 + ratings: 0 author: "Sahil_Kumar_115" repo: "https://github.com/Sahiljangra115/Archie-dark-custom-theme" url: "https://marketplace.visualstudio.com/items?itemName=SahilKumar115.archie-dark-custom" diff --git a/themes/architect-dark-fork.yaml b/themes/architect-dark-fork.yaml index 59bbd29a..667a05f0 100644 --- a/themes/architect-dark-fork.yaml +++ b/themes/architect-dark-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "valentinesamuel.fallout-dark" version: "0.0.1" installs: 2243 + rating: 0 + ratings: 0 author: "valentine samuel" repo: "https://github.com/valentinesamuel/themes" url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" diff --git a/themes/arctic-depth.yaml b/themes/arctic-depth.yaml index 6e50defa..02e78d6a 100644 --- a/themes/arctic-depth.yaml +++ b/themes/arctic-depth.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MarvellinusVincent.arctic-depth" version: "1.0.11" installs: 395 + rating: 5 + ratings: 2 author: "Marvellinus Vincent" repo: "https://github.com/MarvellinusVincent/Arctic-Depth" url: "https://marketplace.visualstudio.com/items?itemName=MarvellinusVincent.arctic-depth" diff --git a/themes/arctis-dark.yaml b/themes/arctis-dark.yaml index 2b5731f3..67b89666 100644 --- a/themes/arctis-dark.yaml +++ b/themes/arctis-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/arctis-high-contrast.yaml b/themes/arctis-high-contrast.yaml index 4086bc7c..0a598c1b 100644 --- a/themes/arctis-high-contrast.yaml +++ b/themes/arctis-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/arctis-light.yaml b/themes/arctis-light.yaml index 4ef7f97e..d14dff91 100644 --- a/themes/arctis-light.yaml +++ b/themes/arctis-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/arctis-moon.yaml b/themes/arctis-moon.yaml index f35bca3d..e6b8906f 100644 --- a/themes/arctis-moon.yaml +++ b/themes/arctis-moon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/arctis-night.yaml b/themes/arctis-night.yaml index d9b717d2..1b5585db 100644 --- a/themes/arctis-night.yaml +++ b/themes/arctis-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/arctis.yaml b/themes/arctis.yaml index 8ea680b9..149c635e 100644 --- a/themes/arctis.yaml +++ b/themes/arctis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/arencio-argos-dark.yaml b/themes/arencio-argos-dark.yaml new file mode 100644 index 00000000..0ecf5b42 --- /dev/null +++ b/themes/arencio-argos-dark.yaml @@ -0,0 +1,52 @@ +name: "Arencio Argos Dark" +source: + marketplace_id: "DanyaalMajid.arencio-vibrant-dark" + version: "1.1.0" + installs: 75 + rating: 0 + ratings: 0 + author: "Danyaal Majid" + repo: "https://github.com/DanyaalMajid/arencio-vibrant-dark" + url: "https://marketplace.visualstudio.com/items?itemName=DanyaalMajid.arencio-vibrant-dark" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#434343" + red: "#C82424" + green: "#24C83E" + yellow: "#C8A724" + blue: "#2472C8" + magenta: "#C824C5" + cyan: "#59F0C6" + white: "#E8E8E8" + brightBlack: "#888888" + brightRed: "#FB6B6B" + brightGreen: "#63FB7B" + brightYellow: "#FBDE6B" + brightBlue: "#62ACFF" + brightMagenta: "#FF67FC" + brightCyan: "#59F0C6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 9.5 + red: 25.4 + green: 58.8 + yellow: 56.3 + blue: 28.4 + magenta: 31.1 + cyan: 83.2 + white: 92.9 + brightBlack: 38.6 + brightRed: 48.2 + brightGreen: 87.1 + brightYellow: 87.4 + brightBlue: 55.6 + brightMagenta: 54.8 + brightCyan: 83.2 + brightWhite: 107.9 diff --git a/themes/ares-tron-legacy.yaml b/themes/ares-tron-legacy.yaml index bd2058e6..aec27a52 100644 --- a/themes/ares-tron-legacy.yaml +++ b/themes/ares-tron-legacy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rubenzn.encom-tron-legacy" version: "1.0.0" installs: 61 + rating: 5 + ratings: 1 author: "rubenzn" repo: "https://github.com/ruben-cxtx/best-tron-legacy-theme" url: "https://marketplace.visualstudio.com/items?itemName=rubenzn.encom-tron-legacy" diff --git a/themes/arete-theme.yaml b/themes/arete-theme.yaml index 231750d1..e6692cfd 100644 --- a/themes/arete-theme.yaml +++ b/themes/arete-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PlatoArete.arete-theme" version: "0.0.5" installs: 24 + rating: 0 + ratings: 0 author: "PlatoArete" repo: "https://github.com/PlatoArete/arete-theme" url: "https://marketplace.visualstudio.com/items?itemName=PlatoArete.arete-theme" diff --git a/themes/argo.yaml b/themes/argo.yaml new file mode 100644 index 00000000..ba1f9b05 --- /dev/null +++ b/themes/argo.yaml @@ -0,0 +1,52 @@ +name: "Argo" +source: + marketplace_id: "smir45.argo" + version: "1.0.0" + installs: 779 + rating: 4 + ratings: 4 + author: "Samir Mishra" + repo: "https://github.com/smir45/argo-theme-source-code" + url: "https://marketplace.visualstudio.com/items?itemName=smir45.argo" +colors: + bg: "#191919" + fg: "#D4D4D4" + black: "#808080" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.3 + black: 33.5 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/argonaut.yaml b/themes/argonaut.yaml index bb180d6c..58a62b79 100644 --- a/themes/argonaut.yaml +++ b/themes/argonaut.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "securisec.hapsida-securisec" version: "0.0.30" installs: 226 + rating: 5 + ratings: 1 author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" diff --git a/themes/argprocolor.yaml b/themes/argprocolor.yaml index d0efb60b..59946ccf 100644 --- a/themes/argprocolor.yaml +++ b/themes/argprocolor.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AnkurGoyal.argprocolor" version: "3.3.0" installs: 183 + rating: 5 + ratings: 1 author: "Ankur Goyal" repo: "https://github.com/argankur/argprocolor" url: "https://marketplace.visualstudio.com/items?itemName=AnkurGoyal.argprocolor" diff --git a/themes/ariake-sands.yaml b/themes/ariake-sands.yaml index 65862ad4..f1d8224a 100644 --- a/themes/ariake-sands.yaml +++ b/themes/ariake-sands.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "radiolevity.ariake-sands" version: "1.1.3" installs: 6042 + rating: 0 + ratings: 0 author: "Finn James" repo: "https://github.com/radiolevity/ariake-sands" url: "https://marketplace.visualstudio.com/items?itemName=radiolevity.ariake-sands" diff --git a/themes/ariake-sun.yaml b/themes/ariake-sun.yaml index 0e6a69b6..a6086df6 100644 --- a/themes/ariake-sun.yaml +++ b/themes/ariake-sun.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "radiolevity.ariake-sands" version: "1.1.3" installs: 6042 + rating: 0 + ratings: 0 author: "Finn James" repo: "https://github.com/radiolevity/ariake-sands" url: "https://marketplace.visualstudio.com/items?itemName=radiolevity.ariake-sands" diff --git a/themes/aries-darker-high-contrast.yaml b/themes/aries-darker-high-contrast.yaml new file mode 100644 index 00000000..520cfb63 --- /dev/null +++ b/themes/aries-darker-high-contrast.yaml @@ -0,0 +1,52 @@ +name: "aries-Darker-High-Contrast" +source: + marketplace_id: "aries.aries" + version: "1.4.6" + installs: 19487 + rating: 0 + ratings: 0 + author: "aries" + repo: "https://github.com/MohamadMostafaee/ariesTheme" + url: "https://marketplace.visualstudio.com/items?itemName=aries.aries" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 42.4 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 9.7 + brightRed: 42.4 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/aries-darker.yaml b/themes/aries-darker.yaml new file mode 100644 index 00000000..d89afb17 --- /dev/null +++ b/themes/aries-darker.yaml @@ -0,0 +1,52 @@ +name: "aries-Darker" +source: + marketplace_id: "aries.aries" + version: "1.4.6" + installs: 19487 + rating: 0 + ratings: 0 + author: "aries" + repo: "https://github.com/MohamadMostafaee/ariesTheme" + url: "https://marketplace.visualstudio.com/items?itemName=aries.aries" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#545454" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 42.4 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 13.5 + brightRed: 42.4 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/aries-default.yaml b/themes/aries-default.yaml new file mode 100644 index 00000000..f77d0596 --- /dev/null +++ b/themes/aries-default.yaml @@ -0,0 +1,52 @@ +name: "aries-Default" +source: + marketplace_id: "aries.aries" + version: "1.4.6" + installs: 19487 + rating: 0 + ratings: 0 + author: "aries" + repo: "https://github.com/MohamadMostafaee/ariesTheme" + url: "https://marketplace.visualstudio.com/items?itemName=aries.aries" +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 230 + pair: null + contrast: + fg: 100.4 + black: 0 + red: 39.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 102.7 + brightBlack: 19.7 + brightRed: 39.4 + brightGreen: 80 + brightYellow: 74.7 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/aries-lighter-high-contrast.yaml b/themes/aries-lighter-high-contrast.yaml new file mode 100644 index 00000000..cdfd81bb --- /dev/null +++ b/themes/aries-lighter-high-contrast.yaml @@ -0,0 +1,52 @@ +name: "aries-Lighter-High-Contrast" +source: + marketplace_id: "aries.aries" + version: "1.4.6" + installs: 19487 + rating: 0 + ratings: 0 + author: "aries" + repo: "https://github.com/MohamadMostafaee/ariesTheme" + url: "https://marketplace.visualstudio.com/items?itemName=aries.aries" +colors: + bg: "#FFFFFF" + fg: "#90A4AE" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 50.6 + black: 106 + red: 67.7 + green: 44.9 + yellow: 31.7 + blue: 66.3 + magenta: 72.6 + cyan: 51.8 + white: 0 + brightBlack: 50.6 + brightRed: 67.7 + brightGreen: 44.9 + brightYellow: 31.7 + brightBlue: 66.3 + brightMagenta: 72.6 + brightCyan: 51.8 + brightWhite: 0 diff --git a/themes/aries-lighter.yaml b/themes/aries-lighter.yaml new file mode 100644 index 00000000..069cd2cd --- /dev/null +++ b/themes/aries-lighter.yaml @@ -0,0 +1,52 @@ +name: "aries-Lighter" +source: + marketplace_id: "aries.aries" + version: "1.4.6" + installs: 19487 + rating: 0 + ratings: 0 + author: "aries" + repo: "https://github.com/MohamadMostafaee/ariesTheme" + url: "https://marketplace.visualstudio.com/items?itemName=aries.aries" +colors: + bg: "#FAFAFA" + fg: "#90A4AE" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 47.6 + black: 103 + red: 64.7 + green: 41.9 + yellow: 28.7 + blue: 63.3 + magenta: 69.6 + cyan: 48.8 + white: 0 + brightBlack: 47.6 + brightRed: 64.7 + brightGreen: 41.9 + brightYellow: 28.7 + brightBlue: 63.3 + brightMagenta: 69.6 + brightCyan: 48.8 + brightWhite: 0 diff --git a/themes/aries-ocean.yaml b/themes/aries-ocean.yaml new file mode 100644 index 00000000..d1f84259 --- /dev/null +++ b/themes/aries-ocean.yaml @@ -0,0 +1,52 @@ +name: "aries-Ocean" +source: + marketplace_id: "aries.aries" + version: "1.4.6" + installs: 19487 + rating: 0 + ratings: 0 + author: "aries" + repo: "https://github.com/MohamadMostafaee/ariesTheme" + url: "https://marketplace.visualstudio.com/items?itemName=aries.aries" +colors: + bg: "#0F111A" + fg: "#8F93A2" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + pair: null + contrast: + fg: 43.7 + black: 0 + red: 44.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 44.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/aries-palenight.yaml b/themes/aries-palenight.yaml new file mode 100644 index 00000000..93345b06 --- /dev/null +++ b/themes/aries-palenight.yaml @@ -0,0 +1,52 @@ +name: "aries-Palenight" +source: + marketplace_id: "aries.aries" + version: "1.4.6" + installs: 19487 + rating: 0 + ratings: 0 + author: "aries" + repo: "https://github.com/MohamadMostafaee/ariesTheme" + url: "https://marketplace.visualstudio.com/items?itemName=aries.aries" +colors: + bg: "#292D3E" + fg: "#A6ACCD" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + pair: null + contrast: + fg: 53.5 + black: 0 + red: 40 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 40 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/aries.yaml b/themes/aries.yaml index 3342c8d1..e5c172f0 100644 --- a/themes/aries.yaml +++ b/themes/aries.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ariebird.aries-pink-theme" version: "0.0.1" installs: 1913 + rating: 0 + ratings: 0 author: "Aries Russin" repo: "https://github.com/adragonqc/aries-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=ariebird.aries-pink-theme" diff --git a/themes/arkaios-theme.yaml b/themes/arkaios-theme.yaml index e81a3cd5..041aa160 100644 --- a/themes/arkaios-theme.yaml +++ b/themes/arkaios-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vilela.theme-arkaios" version: "1.0.8" installs: 411 + rating: 5 + ratings: 1 author: "Vilela" repo: "https://github.com/vilelagit/Arkaios_Theme" url: "https://marketplace.visualstudio.com/items?itemName=vilela.theme-arkaios" diff --git a/themes/arkinetictheme.yaml b/themes/arkinetictheme.yaml index ef389705..3a4b1a74 100644 --- a/themes/arkinetictheme.yaml +++ b/themes/arkinetictheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Arkinetic.com-arkinetic-theme" version: "0.0.1" installs: 289 + rating: 5 + ratings: 1 author: "Arkinetic" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Arkinetic.com-arkinetic-theme" diff --git a/themes/armada.yaml b/themes/armada.yaml index 5a2d1dc6..96921162 100644 --- a/themes/armada.yaml +++ b/themes/armada.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DavidSeptimus.armada-theme" version: "1.0.1" installs: 295 + rating: 0 + ratings: 0 author: "DavidSeptimus" repo: "https://github.com/DavidSeptimus/armada-theme-vscode-extension" url: "https://marketplace.visualstudio.com/items?itemName=DavidSeptimus.armada-theme" diff --git a/themes/aromantic.yaml b/themes/aromantic.yaml index 0b9db603..b392a35c 100644 --- a/themes/aromantic.yaml +++ b/themes/aromantic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ElizaMuss.elizas-pride-themes" version: "1.0.2" installs: 848 + rating: 0 + ratings: 0 author: "Eliza Muss" repo: "https://github.com/The-Gamer69/elizas-pride-themes" url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" diff --git a/themes/arrakis-day.yaml b/themes/arrakis-day.yaml index 7ee6abac..48de8094 100644 --- a/themes/arrakis-day.yaml +++ b/themes/arrakis-day.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anvell.arrakis-theme" version: "1.6.0" installs: 522 + rating: 5 + ratings: 1 author: "Anvell" repo: "https://github.com/Anvell/vscode-arrakis-theme" url: "https://marketplace.visualstudio.com/items?itemName=anvell.arrakis-theme" diff --git a/themes/arrakis-night.yaml b/themes/arrakis-night.yaml index d3136e60..056a26fc 100644 --- a/themes/arrakis-night.yaml +++ b/themes/arrakis-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anvell.arrakis-theme" version: "1.6.0" installs: 522 + rating: 5 + ratings: 1 author: "Anvell" repo: "https://github.com/Anvell/vscode-arrakis-theme" url: "https://marketplace.visualstudio.com/items?itemName=anvell.arrakis-theme" diff --git a/themes/arrpee.yaml b/themes/arrpee.yaml index 5ef9a399..d0baf6ea 100644 --- a/themes/arrpee.yaml +++ b/themes/arrpee.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Arrpee.arrpee-theme" version: "0.1.2" installs: 176 + rating: 0 + ratings: 0 author: "Arrpee" repo: "https://github.com/arrpee/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Arrpee.arrpee-theme" diff --git a/themes/arstotzka-contrast.yaml b/themes/arstotzka-contrast.yaml index 6a8019d6..67b3e6e7 100644 --- a/themes/arstotzka-contrast.yaml +++ b/themes/arstotzka-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/arstotzka-light.yaml b/themes/arstotzka-light.yaml index 24697a5e..0608af04 100644 --- a/themes/arstotzka-light.yaml +++ b/themes/arstotzka-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/arstotzka.yaml b/themes/arstotzka.yaml index 78708892..73a8c74a 100644 --- a/themes/arstotzka.yaml +++ b/themes/arstotzka.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/artinpixel-turquoise-theme-dark.yaml b/themes/artinpixel-turquoise-theme-dark.yaml index 75c50a2a..60c4b8c7 100644 --- a/themes/artinpixel-turquoise-theme-dark.yaml +++ b/themes/artinpixel-turquoise-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anselmodev.artinpixel-turquoise-master" version: "0.1.4" installs: 684 + rating: 0 + ratings: 0 author: "Anselmo Lima" repo: "https://github.com/anselmodev/artinpixel-turquoise-master" url: "https://marketplace.visualstudio.com/items?itemName=anselmodev.artinpixel-turquoise-master" diff --git a/themes/artinpixel-turquoise-theme.yaml b/themes/artinpixel-turquoise-theme.yaml index 51f32d93..8aecf80e 100644 --- a/themes/artinpixel-turquoise-theme.yaml +++ b/themes/artinpixel-turquoise-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anselmodev.artinpixel-turquoise-master" version: "0.1.4" installs: 684 + rating: 0 + ratings: 0 author: "Anselmo Lima" repo: "https://github.com/anselmodev/artinpixel-turquoise-master" url: "https://marketplace.visualstudio.com/items?itemName=anselmodev.artinpixel-turquoise-master" diff --git a/themes/artisan-theme.yaml b/themes/artisan-theme.yaml index c53ea4a0..21534e34 100644 --- a/themes/artisan-theme.yaml +++ b/themes/artisan-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VheissuLabs.artisan-theme" version: "0.1.0" installs: 39 + rating: 0 + ratings: 0 author: "VheissuLabs" repo: "https://github.com/VheissuLabs/artisan-theme" url: "https://marketplace.visualstudio.com/items?itemName=VheissuLabs.artisan-theme" diff --git a/themes/arunika.yaml b/themes/arunika.yaml index b56068d3..33b52d57 100644 --- a/themes/arunika.yaml +++ b/themes/arunika.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ansandi.arunika" version: "4.0.5" installs: 80 + rating: 0 + ratings: 0 author: "ansandi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ansandi.arunika" diff --git a/themes/arwinux-galaxy.yaml b/themes/arwinux-galaxy.yaml index 87ececcc..987962a4 100644 --- a/themes/arwinux-galaxy.yaml +++ b/themes/arwinux-galaxy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arwinux.arwinux-galaxy" version: "0.2.0" installs: 87 + rating: 0 + ratings: 0 author: "arwinux" repo: "https://github.com/arwinux/arwinux-galaxy" url: "https://marketplace.visualstudio.com/items?itemName=arwinux.arwinux-galaxy" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 115 + pair: null contrast: fg: 102.2 black: 0 diff --git a/themes/as-theme.yaml b/themes/as-theme.yaml index 66d7acf5..5d896622 100644 --- a/themes/as-theme.yaml +++ b/themes/as-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ArpitTheme.as-theme" version: "1.0.3" installs: 111 + rating: 5 + ratings: 1 author: "Arpit Shukla" repo: "https://github.com/arpitshukla9/AS-VsCode-Theme-dark" url: "https://marketplace.visualstudio.com/items?itemName=ArpitTheme.as-theme" diff --git a/themes/asdfasdfuntitled.yaml b/themes/asdfasdfuntitled.yaml index 42a950c3..0de65825 100644 --- a/themes/asdfasdfuntitled.yaml +++ b/themes/asdfasdfuntitled.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vulfpeck.pastellize" version: "0.0.3" installs: 656 + rating: 5 + ratings: 1 author: "vulfpeck" repo: "https://github.com/Vulfpeck/pastellize" url: "https://marketplace.visualstudio.com/items?itemName=vulfpeck.pastellize" diff --git a/themes/asexual.yaml b/themes/asexual.yaml index 2d1594ef..b80e1223 100644 --- a/themes/asexual.yaml +++ b/themes/asexual.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ElizaMuss.elizas-pride-themes" version: "1.0.2" installs: 848 + rating: 0 + ratings: 0 author: "Eliza Muss" repo: "https://github.com/The-Gamer69/elizas-pride-themes" url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" diff --git a/themes/asgtheme.yaml b/themes/asgtheme.yaml index 7dc94614..58c2d531 100644 --- a/themes/asgtheme.yaml +++ b/themes/asgtheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "asgthedev.asgthemes" version: "0.1.1" installs: 38 + rating: 0 + ratings: 0 author: "ASGTheDev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=asgthedev.asgthemes" diff --git a/themes/ash-ember.yaml b/themes/ash-ember.yaml index 0d511c06..89db1e5a 100644 --- a/themes/ash-ember.yaml +++ b/themes/ash-ember.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "InnaSodri.ash-ember-theme" version: "0.0.3" installs: 129 + rating: 0 + ratings: 0 author: "Inna Sodri" repo: "https://example.com/inna/ash-ember-theme" url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.ash-ember-theme" diff --git a/themes/ash-lumen-light.yaml b/themes/ash-lumen-light.yaml index 3d378981..923b3a65 100644 --- a/themes/ash-lumen-light.yaml +++ b/themes/ash-lumen-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "edfl.ash-lumen" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "edfl" repo: "https://github.com/emersxw/edfl" url: "https://marketplace.visualstudio.com/items?itemName=edfl.ash-lumen" diff --git a/themes/ash-lumen.yaml b/themes/ash-lumen.yaml index d34a3326..f353d8ce 100644 --- a/themes/ash-lumen.yaml +++ b/themes/ash-lumen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "edfl.ash-lumen" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "edfl" repo: "https://github.com/emersxw/edfl" url: "https://marketplace.visualstudio.com/items?itemName=edfl.ash-lumen" diff --git a/themes/ash.yaml b/themes/ash.yaml index f0f80746..815e541b 100644 --- a/themes/ash.yaml +++ b/themes/ash.yaml @@ -1,50 +1,52 @@ name: "Ash" source: - marketplace_id: "Avetis.codeme-theme" - version: "0.1.1" - installs: 8080 - author: "Avetis" - repo: "https://github.com/AvetisDN/codeme-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" + marketplace_id: "Priyaank.ether" + version: "2.0.1" + installs: 55 + rating: 0 + ratings: 0 + author: "Priyaank" + repo: "https://github.com/PRIYAANK2510/Ether" + url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.ether" colors: - bg: "#20242D" - fg: "#B4BAC4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" + bg: "#1F1F1F" + fg: "#656565" + black: "#181818" + red: "#B09388" + green: "#91BB96" + yellow: "#AF89A8" + blue: "#81A1BC" + magenta: "#947DB9" + cyan: "#909090" + white: "#DFDFDF" + brightBlack: "#656565" + brightRed: "#C5A89A" + brightGreen: "#A5CBA8" + brightYellow: "#C29BBA" + brightBlue: "#95B3CA" + brightMagenta: "#A891C7" + brightCyan: "#A8A8A8" + brightWhite: "#F0F0F0" meta: mode: "dark" - accent: "pink" - hue: 266 + accent: "magenta" + hue: null pair: null contrast: - fg: 62.1 + fg: 20.6 black: 0 - red: 25 - green: 51.3 - yellow: 83.9 - blue: 25.7 - magenta: 28 - cyan: 45.8 - white: 88.3 - brightBlack: 20.3 - brightRed: 36.8 - brightGreen: 61.8 - brightYellow: 93.9 - brightBlue: 38.3 - brightMagenta: 43.6 - brightCyan: 53.7 - brightWhite: 88.3 + red: 45.3 + green: 58 + yellow: 43 + blue: 47.4 + magenta: 36.5 + cyan: 40.6 + white: 85.3 + brightBlack: 20.6 + brightRed: 56.4 + brightGreen: 67.5 + brightYellow: 52.5 + brightBlue: 57.1 + brightMagenta: 46.2 + brightCyan: 53.2 + brightWhite: 96.1 diff --git a/themes/ashao-color-theme.yaml b/themes/ashao-color-theme.yaml index 7f685777..7cec1815 100644 --- a/themes/ashao-color-theme.yaml +++ b/themes/ashao-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ashao.theme-ashao" version: "1.0.0" installs: 52 + rating: 0 + ratings: 0 author: "ashao" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ashao.theme-ashao" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 68.8 black: 0 diff --git a/themes/ashen-darker.yaml b/themes/ashen-darker.yaml index 97ebc9d2..ab2fd6b6 100644 --- a/themes/ashen-darker.yaml +++ b/themes/ashen-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "derder.ashen-theme" version: "1.0.3" installs: 188 + rating: 0 + ratings: 0 author: "Der Der" repo: null url: "https://marketplace.visualstudio.com/items?itemName=derder.ashen-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 61.5 black: 0 diff --git a/themes/ashen.yaml b/themes/ashen.yaml index 8e2d85f6..2907130f 100644 --- a/themes/ashen.yaml +++ b/themes/ashen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "derder.ashen-theme" version: "1.0.3" installs: 188 + rating: 0 + ratings: 0 author: "Der Der" repo: null url: "https://marketplace.visualstudio.com/items?itemName=derder.ashen-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 61.2 black: 0 diff --git a/themes/ashineui.yaml b/themes/ashineui.yaml index 0c3c208b..78793806 100644 --- a/themes/ashineui.yaml +++ b/themes/ashineui.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Morgheas.ashine-ui-theme" version: "0.1.0" installs: 10 + rating: 0 + ratings: 0 author: "Morgheas" repo: "https://github.com/Akumuuu/AShineUI" url: "https://marketplace.visualstudio.com/items?itemName=Morgheas.ashine-ui-theme" diff --git a/themes/aspiesoft-intellij-theme.yaml b/themes/aspiesoft-intellij-theme.yaml index 7fc918bd..5fba198b 100644 --- a/themes/aspiesoft-intellij-theme.yaml +++ b/themes/aspiesoft-intellij-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AspieSoft.aspiesoft-intellij-theme" version: "1.0.3" installs: 3791 + rating: 0 + ratings: 0 author: "AspieSoft" repo: "https://github.com/aspiesoft/vscode-intellij-theme" url: "https://marketplace.visualstudio.com/items?itemName=AspieSoft.aspiesoft-intellij-theme" diff --git a/themes/assam-tea-gardens.yaml b/themes/assam-tea-gardens.yaml index e68829cc..34b3f15f 100644 --- a/themes/assam-tea-gardens.yaml +++ b/themes/assam-tea-gardens.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ProudIndian.colors-of-india-themes" version: "1.0.1" installs: 37 + rating: 5 + ratings: 1 author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" diff --git a/themes/aster-dark-theme.yaml b/themes/aster-dark-theme.yaml new file mode 100644 index 00000000..1a111e52 --- /dev/null +++ b/themes/aster-dark-theme.yaml @@ -0,0 +1,52 @@ +name: "Aster Dark Theme" +source: + marketplace_id: "jtheol.aster-dark" + version: "0.1.0" + installs: 37 + rating: 0 + ratings: 0 + author: "jtheol" + repo: "https://github.com/jtheol/aster-dark" + url: "https://marketplace.visualstudio.com/items?itemName=jtheol.aster-dark" +colors: + bg: "#000000" + fg: "#E0E0E0" + black: "#282828" + red: "#D4A090" + green: "#8FB573" + yellow: "#D6C998" + blue: "#6F8BBB" + magenta: "#C6BDA0" + cyan: "#8BA0B0" + white: "#D0D0D0" + brightBlack: "#555555" + brightRed: "#E2B0A0" + brightGreen: "#C7DBB5" + brightYellow: "#FEF9C3" + brightBlue: "#D6B681" + brightMagenta: "#D4CBA8" + brightCyan: "#A8B8C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 87.9 + black: 0 + red: 57.3 + green: 56.2 + yellow: 73.9 + blue: 39.7 + magenta: 66.9 + cyan: 49.4 + white: 78.1 + brightBlack: 16.1 + brightRed: 65.9 + brightGreen: 80.8 + brightYellow: 102.4 + brightBlue: 65.5 + brightMagenta: 74.9 + brightCyan: 62.9 + brightWhite: 107.9 diff --git a/themes/asteria.yaml b/themes/asteria.yaml index 203d3b73..9c194bc0 100644 --- a/themes/asteria.yaml +++ b/themes/asteria.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "spaceinvadev.asteria" version: "0.2.0" installs: 699 + rating: 0 + ratings: 0 author: "Mauro Paternina" repo: "https://github.com/spaceinvadev/asteria" url: "https://marketplace.visualstudio.com/items?itemName=spaceinvadev.asteria" diff --git a/themes/astigmatism-theme.yaml b/themes/astigmatism-theme.yaml index 0d7d8f0a..7cbaf695 100644 --- a/themes/astigmatism-theme.yaml +++ b/themes/astigmatism-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GabrielFacioni.astigmatism-theme" version: "1.0.3" installs: 261 + rating: 5 + ratings: 2 author: "GabrielFacioni" repo: "https://github.com/GabrielMMC/astigmatism-theme" url: "https://marketplace.visualstudio.com/items?itemName=GabrielFacioni.astigmatism-theme" diff --git a/themes/astra-themedark.yaml b/themes/astra-themedark.yaml index 46277563..75aa3427 100644 --- a/themes/astra-themedark.yaml +++ b/themes/astra-themedark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AstraVirtual.astra-theme-dark" version: "0.0.1" installs: 6 + rating: 0 + ratings: 0 author: "AstraVirtual" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AstraVirtual.astra-theme-dark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72.4 black: 0 diff --git a/themes/astra.yaml b/themes/astra.yaml index 8feb08ae..cd8425bf 100644 --- a/themes/astra.yaml +++ b/themes/astra.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fulin.astra" version: "1.0.1" installs: 1587 + rating: 0 + ratings: 0 author: "Giovanni Fu Lin" repo: "https://github.com/aeither/vscode-astra-theme" url: "https://marketplace.visualstudio.com/items?itemName=fulin.astra" diff --git a/themes/astral-theme.yaml b/themes/astral-theme.yaml index 24896226..715d61ee 100644 --- a/themes/astral-theme.yaml +++ b/themes/astral-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ArthurBottcher.astral-theme" version: "0.0.1" installs: 32 + rating: 0 + ratings: 0 author: "Arthur Bottcher" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ArthurBottcher.astral-theme" diff --git a/themes/astral.yaml b/themes/astral.yaml new file mode 100644 index 00000000..0030345d --- /dev/null +++ b/themes/astral.yaml @@ -0,0 +1,52 @@ +name: "Astral" +source: + marketplace_id: "lusignan.astral" + version: "0.0.2" + installs: 370 + rating: 0 + ratings: 0 + author: "Zac de Lusignan" + repo: "https://github.com/lusignan/astral-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=lusignan.astral" +colors: + bg: "#282938" + fg: "#A3A7D8" + black: "#000000" + red: "#F7B7CF" + green: "#B8E4FF" + yellow: "#FFE1A1" + blue: "#A1C3FF" + magenta: "#DCB9FF" + cyan: "#A1C3FF" + white: "#D2DCFF" + brightBlack: "#464B5D" + brightRed: "#F7B7CF" + brightGreen: "#B8E4FF" + brightYellow: "#FFE1A1" + brightBlue: "#A1C3FF" + brightMagenta: "#DCB9FF" + brightCyan: "#A1C3FF" + brightWhite: "#D2DCFF" +meta: + mode: "dark" + accent: "magenta" + hue: 282 + pair: null + contrast: + fg: 52.6 + black: 0 + red: 69.9 + green: 82.7 + yellow: 86.7 + blue: 65.9 + magenta: 68.9 + cyan: 65.9 + white: 82 + brightBlack: 8.7 + brightRed: 69.9 + brightGreen: 82.7 + brightYellow: 86.7 + brightBlue: 65.9 + brightMagenta: 68.9 + brightCyan: 65.9 + brightWhite: 82 diff --git a/themes/astro-dark.yaml b/themes/astro-dark.yaml index 5fe6783c..f4c00d4d 100644 --- a/themes/astro-dark.yaml +++ b/themes/astro-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.astro-theme" version: "0.9.7" installs: 5255 + rating: 5 + ratings: 1 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/astro-theme" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.astro-theme" diff --git a/themes/astro-kanagawa.yaml b/themes/astro-kanagawa.yaml index 157c1a8b..20676531 100644 --- a/themes/astro-kanagawa.yaml +++ b/themes/astro-kanagawa.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "panquequelol.astro-kanagawa" version: "0.0.4" installs: 3865 + rating: 5 + ratings: 1 author: "panquequelol" repo: "https://github.com/panquequelol/astro-kanagawa" url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.astro-kanagawa" diff --git a/themes/astro-light.yaml b/themes/astro-light.yaml index 1d15a5bd..f8a4ffef 100644 --- a/themes/astro-light.yaml +++ b/themes/astro-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.astro-theme" version: "0.9.7" installs: 5255 + rating: 5 + ratings: 1 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/astro-theme" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.astro-theme" diff --git a/themes/astrofunk-dark.yaml b/themes/astrofunk-dark.yaml index 9eb646d7..08dce31a 100644 --- a/themes/astrofunk-dark.yaml +++ b/themes/astrofunk-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JamesGulland.astrofunk-dark-theme" version: "0.1.0" installs: 35 + rating: 0 + ratings: 0 author: "James Gulland" repo: "https://github.com/james-gulland/astrofunk-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.astrofunk-dark-theme" diff --git a/themes/astronaut.yaml b/themes/astronaut.yaml index 4235ae38..6874f6d2 100644 --- a/themes/astronaut.yaml +++ b/themes/astronaut.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "larabeatriz32.theme-astronaut" version: "1.0.1" installs: 2473 + rating: 5 + ratings: 1 author: "larabeatriz32" repo: "https://github.com/larabeatrizms/astronaut-theme" url: "https://marketplace.visualstudio.com/items?itemName=larabeatriz32.theme-astronaut" diff --git a/themes/astrus-midnight.yaml b/themes/astrus-midnight.yaml index 62e0de0a..31a75074 100644 --- a/themes/astrus-midnight.yaml +++ b/themes/astrus-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shailesh43.astrus" version: "1.0.1" installs: 170 + rating: 5 + ratings: 2 author: "Shailesh Sathe" repo: "https://github.com/shailesh43/Astrus" url: "https://marketplace.visualstudio.com/items?itemName=shailesh43.astrus" diff --git a/themes/astrus-nebula.yaml b/themes/astrus-nebula.yaml index eaebcffe..360f1b13 100644 --- a/themes/astrus-nebula.yaml +++ b/themes/astrus-nebula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shailesh43.astrus" version: "1.0.1" installs: 170 + rating: 5 + ratings: 2 author: "Shailesh Sathe" repo: "https://github.com/shailesh43/Astrus" url: "https://marketplace.visualstudio.com/items?itemName=shailesh43.astrus" diff --git a/themes/astrus-standard.yaml b/themes/astrus-standard.yaml index 97f24c3a..5da38c1d 100644 --- a/themes/astrus-standard.yaml +++ b/themes/astrus-standard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shailesh43.astrus" version: "1.0.1" installs: 170 + rating: 5 + ratings: 2 author: "Shailesh Sathe" repo: "https://github.com/shailesh43/Astrus" url: "https://marketplace.visualstudio.com/items?itemName=shailesh43.astrus" diff --git a/themes/asuka-theme-light.yaml b/themes/asuka-theme-light.yaml index df5838f1..fc94a2d4 100644 --- a/themes/asuka-theme-light.yaml +++ b/themes/asuka-theme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MennyfSoryu.asuka-theme" version: "0.1.1" installs: 4079 + rating: 5 + ratings: 1 author: "MennyfSoryu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MennyfSoryu.asuka-theme" diff --git a/themes/asuka-theme.yaml b/themes/asuka-theme.yaml index 9db04a56..b9636953 100644 --- a/themes/asuka-theme.yaml +++ b/themes/asuka-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MennyfSoryu.asuka-theme" version: "0.1.1" installs: 4079 + rating: 5 + ratings: 1 author: "MennyfSoryu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MennyfSoryu.asuka-theme" diff --git a/themes/athabasca-light.yaml b/themes/athabasca-light.yaml index 2c432e4c..39138305 100644 --- a/themes/athabasca-light.yaml +++ b/themes/athabasca-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ianlord.athabasca" version: "0.0.3" installs: 638 + rating: 5 + ratings: 1 author: "Ian Lord" repo: "https://github.com/ianlord/athabasca" url: "https://marketplace.visualstudio.com/items?itemName=ianlord.athabasca" diff --git a/themes/athabasca.yaml b/themes/athabasca.yaml index 619efe5d..9c836e66 100644 --- a/themes/athabasca.yaml +++ b/themes/athabasca.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ianlord.athabasca" version: "0.0.3" installs: 638 + rating: 5 + ratings: 1 author: "Ian Lord" repo: "https://github.com/ianlord/athabasca" url: "https://marketplace.visualstudio.com/items?itemName=ianlord.athabasca" diff --git a/themes/atilio.yaml b/themes/atilio.yaml index 3ada94a3..74ff21a2 100644 --- a/themes/atilio.yaml +++ b/themes/atilio.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pingocho.atilio" version: "1.0.0" installs: 36 + rating: 0 + ratings: 0 author: "Leo Marello" repo: "https://github.com/lmarello/atilio-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=pingocho.atilio" diff --git a/themes/atlantu.yaml b/themes/atlantu.yaml index f35cd48b..385c866a 100644 --- a/themes/atlantu.yaml +++ b/themes/atlantu.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yradex.atlantu" version: "1.4.2" installs: 355 + rating: 0 + ratings: 0 author: "yradex" repo: "https://github.com/Yradex/Atlantu" url: "https://marketplace.visualstudio.com/items?itemName=yradex.atlantu" diff --git a/themes/atom-homepage-fork.yaml b/themes/atom-homepage-fork.yaml index 050c1066..9945ea20 100644 --- a/themes/atom-homepage-fork.yaml +++ b/themes/atom-homepage-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xynny.atom-theme" version: "0.0.1" installs: 1062 + rating: 0 + ratings: 0 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.atom-theme" diff --git a/themes/atom-material-theme.yaml b/themes/atom-material-theme.yaml index 473b13a0..619582c1 100644 --- a/themes/atom-material-theme.yaml +++ b/themes/atom-material-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "waseemakhter028.wise-owl-material-theme" version: "1.0.0" installs: 31 + rating: 5 + ratings: 1 author: "WaseemAkhter" repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" diff --git a/themes/atom-one-dark-coal.yaml b/themes/atom-one-dark-coal.yaml index ff5d22ac..82d1ba25 100644 --- a/themes/atom-one-dark-coal.yaml +++ b/themes/atom-one-dark-coal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shiftybody.atom-one-dark-coal" version: "1.5.0" installs: 10668 + rating: 5 + ratings: 3 author: "shiftybody" repo: "https://github.com/shiftybody/atom-one-dark-coal" url: "https://marketplace.visualstudio.com/items?itemName=shiftybody.atom-one-dark-coal" diff --git a/themes/atom-one-dark-cyan.yaml b/themes/atom-one-dark-cyan.yaml index e65e5cbd..4f7b7b61 100644 --- a/themes/atom-one-dark-cyan.yaml +++ b/themes/atom-one-dark-cyan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kq996.atom-one-cyan" version: "1.2.0" installs: 300 + rating: 5 + ratings: 1 author: "kq996" repo: "https://github.com/keqing996/vscode-atom-one-cyan" url: "https://marketplace.visualstudio.com/items?itemName=kq996.atom-one-cyan" diff --git a/themes/atom-one-light-cyan.yaml b/themes/atom-one-light-cyan.yaml index 785ca411..b22e6058 100644 --- a/themes/atom-one-light-cyan.yaml +++ b/themes/atom-one-light-cyan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kq996.atom-one-cyan" version: "1.2.0" installs: 300 + rating: 5 + ratings: 1 author: "kq996" repo: "https://github.com/keqing996/vscode-atom-one-cyan" url: "https://marketplace.visualstudio.com/items?itemName=kq996.atom-one-cyan" diff --git a/themes/atom-one-light-modern.yaml b/themes/atom-one-light-modern.yaml index 2eb364f1..be3e8971 100644 --- a/themes/atom-one-light-modern.yaml +++ b/themes/atom-one-light-modern.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mani-sh-reddy.atom-one-light-modern" version: "1.0.5" installs: 2195 + rating: 5 + ratings: 1 author: "Manish Reddy" repo: "https://github.com/mani-sh-reddy/atom-one-light-modern" url: "https://marketplace.visualstudio.com/items?itemName=mani-sh-reddy.atom-one-light-modern" diff --git a/themes/atomax-colorblind-light.yaml b/themes/atomax-colorblind-light.yaml index 82a43ec4..fe8dbd17 100644 --- a/themes/atomax-colorblind-light.yaml +++ b/themes/atomax-colorblind-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.atomaax-theme" version: "0.3.1" installs: 305 + rating: 5 + ratings: 1 author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" diff --git a/themes/atomax-dark-colorblind.yaml b/themes/atomax-dark-colorblind.yaml new file mode 100644 index 00000000..bbfde5e1 --- /dev/null +++ b/themes/atomax-dark-colorblind.yaml @@ -0,0 +1,52 @@ +name: "AtomAx Dark+ Colorblind" +source: + marketplace_id: "telianedward.atomaax-theme" + version: "0.3.1" + installs: 305 + rating: 5 + ratings: 1 + author: "Vela Inc" + repo: "https://github.com/telianedward/AtomaxAxTheme" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" +colors: + bg: "#010409" + fg: "#C9D1D9" + black: "#484F58" + red: "#EC8E2C" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FDAC54" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 248 + pair: null + contrast: + fg: 78 + black: 13.5 + red: 53.7 + green: 52.7 + yellow: 52.7 + blue: 52.7 + magenta: 52.7 + cyan: 61.9 + white: 64.5 + brightBlack: 29.7 + brightRed: 67.3 + brightGreen: 65.2 + brightYellow: 65.2 + brightBlue: 65.2 + brightMagenta: 65.1 + brightCyan: 70.4 + brightWhite: 107.9 diff --git a/themes/atomax-dark-dimmed.yaml b/themes/atomax-dark-dimmed.yaml index 80a7af20..b98b02e2 100644 --- a/themes/atomax-dark-dimmed.yaml +++ b/themes/atomax-dark-dimmed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.atomaax-theme" version: "0.3.1" installs: 305 + rating: 5 + ratings: 1 author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" diff --git a/themes/atomax-dark-tritanopia.yaml b/themes/atomax-dark-tritanopia.yaml index 69283076..c936510f 100644 --- a/themes/atomax-dark-tritanopia.yaml +++ b/themes/atomax-dark-tritanopia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.atomaax-theme" version: "0.3.1" installs: 305 + rating: 5 + ratings: 1 author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" diff --git a/themes/atomax-dark.yaml b/themes/atomax-dark.yaml index 3f366e45..318ecf4c 100644 --- a/themes/atomax-dark.yaml +++ b/themes/atomax-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.atomaax-theme" version: "0.3.1" installs: 305 + rating: 5 + ratings: 1 author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" diff --git a/themes/atomax-high-contrast-light.yaml b/themes/atomax-high-contrast-light.yaml new file mode 100644 index 00000000..76ffce6a --- /dev/null +++ b/themes/atomax-high-contrast-light.yaml @@ -0,0 +1,52 @@ +name: "AtomAx High Contrast Light" +source: + marketplace_id: "telianedward.atomaax-theme" + version: "0.3.1" + installs: 305 + rating: 5 + ratings: 1 + author: "Vela Inc" + repo: "https://github.com/telianedward/AtomaxAxTheme" + url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" +colors: + bg: "#FFFFFF" + fg: "#0E1116" + black: "#0E1116" + red: "#A0111F" + green: "#024C1A" + yellow: "#3F2200" + blue: "#0349B4" + magenta: "#622CBC" + cyan: "#1B7C83" + white: "#66707B" + brightBlack: "#4B535D" + brightRed: "#86061D" + brightGreen: "#055D20" + brightYellow: "#4E2C00" + brightBlue: "#1168E3" + brightMagenta: "#844AE7" + brightCyan: "#3192AA" + brightWhite: "#88929D" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 105.4 + black: 105.4 + red: 86.1 + green: 93.2 + yellow: 101.1 + blue: 86.9 + magenta: 86.9 + cyan: 73.8 + white: 74.8 + brightBlack: 87.1 + brightRed: 91.6 + brightGreen: 87.5 + brightYellow: 98 + brightBlue: 74.4 + brightMagenta: 74.5 + brightCyan: 63.3 + brightWhite: 58.7 diff --git a/themes/atomax-high-contrast.yaml b/themes/atomax-high-contrast.yaml index c3ad236c..5f6d4567 100644 --- a/themes/atomax-high-contrast.yaml +++ b/themes/atomax-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.atomaax-theme" version: "0.3.1" installs: 305 + rating: 5 + ratings: 1 author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" diff --git a/themes/atomax-light-tritanopia.yaml b/themes/atomax-light-tritanopia.yaml index 0dcaab0e..51c04cbf 100644 --- a/themes/atomax-light-tritanopia.yaml +++ b/themes/atomax-light-tritanopia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.atomaax-theme" version: "0.3.1" installs: 305 + rating: 5 + ratings: 1 author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" diff --git a/themes/atomax-light.yaml b/themes/atomax-light.yaml index db4fc01f..89622569 100644 --- a/themes/atomax-light.yaml +++ b/themes/atomax-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.atomaax-theme" version: "0.3.1" installs: 305 + rating: 5 + ratings: 1 author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" diff --git a/themes/atomicc.yaml b/themes/atomicc.yaml index 8c057379..8313eda2 100644 --- a/themes/atomicc.yaml +++ b/themes/atomicc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carlowisse.atomicc" version: "2.0.0" installs: 682 + rating: 5 + ratings: 1 author: "carlowisse" repo: "https://github.com/carlowisse/atomicc-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlowisse.atomicc" diff --git a/themes/atomify.yaml b/themes/atomify.yaml index 9a7e7da9..47c9cf3b 100644 --- a/themes/atomify.yaml +++ b/themes/atomify.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SwayamRabari.atomify" version: "1.0.9" installs: 650 + rating: 5 + ratings: 1 author: "Swayam Rabari" repo: "https://github.com/SwayamRabari/atomify" url: "https://marketplace.visualstudio.com/items?itemName=SwayamRabari.atomify" diff --git a/themes/atomized-theme.yaml b/themes/atomized-theme.yaml index 8ef6c4b9..d3028f36 100644 --- a/themes/atomized-theme.yaml +++ b/themes/atomized-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "excalith.atomized-theme" version: "1.1.4" installs: 12098 + rating: 5 + ratings: 1 author: "excalith" repo: "https://github.com/excalith/Atomized-Theme/" url: "https://marketplace.visualstudio.com/items?itemName=excalith.atomized-theme" diff --git a/themes/atomizer-dark-island.yaml b/themes/atomizer-dark-island.yaml index 074ee1e2..72aa69d1 100644 --- a/themes/atomizer-dark-island.yaml +++ b/themes/atomizer-dark-island.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "riipandi.vscode-atomizer-theme" version: "3.1.3" installs: 6584 + rating: 5 + ratings: 1 author: "Aris Ripandi" repo: "https://github.com/riipandi/vscode-atomizer-theme" url: "https://marketplace.visualstudio.com/items?itemName=riipandi.vscode-atomizer-theme" diff --git a/themes/atomwave.yaml b/themes/atomwave.yaml new file mode 100644 index 00000000..70901883 --- /dev/null +++ b/themes/atomwave.yaml @@ -0,0 +1,52 @@ +name: "Atomwave" +source: + marketplace_id: "NuttshellMan.atomwave-vs-code-theme" + version: "0.3.0" + installs: 67 + rating: 5 + ratings: 1 + author: "Nuttshell_Man" + repo: "https://github.com/NuttshellDevelopment/atomwave-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NuttshellMan.atomwave-vs-code-theme" +colors: + bg: "#141414" + fg: "#CCCCCC" + black: "#515961" + red: "#EB4758" + green: "#37D25B" + yellow: "#FFEA7F" + blue: "#248AFF" + magenta: "#A075F0" + cyan: "#39C5CF" + white: "#D5D8DD" + brightBlack: "#959DA5" + brightRed: "#FB606F" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#61ABFF" + brightMagenta: "#A075F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 74.9 + black: 16.6 + red: 36.9 + green: 63.6 + yellow: 93 + blue: 40 + magenta: 40.5 + cyan: 61.1 + white: 82 + brightBlack: 48 + brightRed: 45.3 + brightGreen: 79.4 + brightYellow: 93 + brightBlue: 54.4 + brightMagenta: 40.5 + brightCyan: 69.7 + brightWhite: 104.4 diff --git a/themes/attack-on-titan-eren-s-determination.yaml b/themes/attack-on-titan-eren-s-determination.yaml index f3826554..972b4d6e 100644 --- a/themes/attack-on-titan-eren-s-determination.yaml +++ b/themes/attack-on-titan-eren-s-determination.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LunaCode.anime-theme" version: "0.0.3" installs: 377 + rating: 5 + ratings: 3 author: "LunaCode" repo: "https://github.com/BuildXO/anime-theme-pack" url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" diff --git a/themes/attentio-flow.yaml b/themes/attentio-flow.yaml index e528a0a3..36de392e 100644 --- a/themes/attentio-flow.yaml +++ b/themes/attentio-flow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shadz-dev.attentio" version: "1.1.4" installs: 250 + rating: 5 + ratings: 2 author: "Shaditya Kinlekar" repo: "https://github.com/Shaditya-Kinlekar/Attentio-Theme" url: "https://marketplace.visualstudio.com/items?itemName=shadz-dev.attentio" diff --git a/themes/attentio-pulse.yaml b/themes/attentio-pulse.yaml index f020f79d..1425584e 100644 --- a/themes/attentio-pulse.yaml +++ b/themes/attentio-pulse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shadz-dev.attentio" version: "1.1.4" installs: 250 + rating: 5 + ratings: 2 author: "Shaditya Kinlekar" repo: "https://github.com/Shaditya-Kinlekar/Attentio-Theme" url: "https://marketplace.visualstudio.com/items?itemName=shadz-dev.attentio" diff --git a/themes/attica.yaml b/themes/attica.yaml index 25ca4daa..62e68a26 100644 --- a/themes/attica.yaml +++ b/themes/attica.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Alekzandriia.attica" version: "0.4.0" installs: 220 + rating: 0 + ratings: 0 author: "Alekzandriia" repo: "https://github.com/alekzandria/attica" url: "https://marketplace.visualstudio.com/items?itemName=Alekzandriia.attica" diff --git a/themes/aube.yaml b/themes/aube.yaml index e7e5e12b..655c5a44 100644 --- a/themes/aube.yaml +++ b/themes/aube.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fatekkl.aube" version: "1.0.5" installs: 43 + rating: 0 + ratings: 0 author: "fatekkl" repo: "https://github.com/fatekkl/Aube" url: "https://marketplace.visualstudio.com/items?itemName=fatekkl.aube" diff --git a/themes/august-ariake-dark.yaml b/themes/august-ariake-dark.yaml index d835d2b0..c70bbda4 100644 --- a/themes/august-ariake-dark.yaml +++ b/themes/august-ariake-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-arstotzka-darker.yaml b/themes/august-arstotzka-darker.yaml new file mode 100644 index 00000000..13c3bfbd --- /dev/null +++ b/themes/august-arstotzka-darker.yaml @@ -0,0 +1,52 @@ +name: "August - Arstotzka (Darker)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146457 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#050404" + fg: "#556955" + black: "#050404" + red: "#A62828" + green: "#85A4B1" + yellow: "#B19600" + blue: "#85A4B1" + magenta: "#837485" + cyan: "#9CB5AA" + white: "#A2A797" + brightBlack: "#565656" + brightRed: "#A62828" + brightGreen: "#678813" + brightYellow: "#B19600" + brightBlue: "#9CB5AA" + brightMagenta: "#837485" + brightCyan: "#9CB5AA" + brightWhite: "#A2A797" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 22.1 + black: 0 + red: 18.6 + green: 50.4 + yellow: 46.6 + blue: 50.4 + magenta: 31.3 + cyan: 59.1 + white: 53.4 + brightBlack: 16.5 + brightRed: 18.6 + brightGreen: 33.6 + brightYellow: 46.6 + brightBlue: 59.1 + brightMagenta: 31.3 + brightCyan: 59.1 + brightWhite: 53.4 diff --git a/themes/august-arstotzka-lighter.yaml b/themes/august-arstotzka-lighter.yaml index 0643b305..1dd45136 100644 --- a/themes/august-arstotzka-lighter.yaml +++ b/themes/august-arstotzka-lighter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-arstotzka.yaml b/themes/august-arstotzka.yaml new file mode 100644 index 00000000..d5ae03bf --- /dev/null +++ b/themes/august-arstotzka.yaml @@ -0,0 +1,52 @@ +name: "August - Arstotzka" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146457 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#0F0B0B" + fg: "#556955" + black: "#0F0B0B" + red: "#A62828" + green: "#85A4B1" + yellow: "#B19600" + blue: "#85A4B1" + magenta: "#837485" + cyan: "#9CB5AA" + white: "#A2A797" + brightBlack: "#565656" + brightRed: "#A62828" + brightGreen: "#678813" + brightYellow: "#B19600" + brightBlue: "#9CB5AA" + brightMagenta: "#837485" + brightCyan: "#9CB5AA" + brightWhite: "#A2A797" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 21.9 + black: 0 + red: 18.4 + green: 50.2 + yellow: 46.4 + blue: 50.2 + magenta: 31.1 + cyan: 58.9 + white: 53.2 + brightBlack: 16.3 + brightRed: 18.4 + brightGreen: 33.4 + brightYellow: 46.4 + brightBlue: 58.9 + brightMagenta: 31.1 + brightCyan: 58.9 + brightWhite: 53.2 diff --git a/themes/august-beardedtheme-oceanic-reversed.yaml b/themes/august-beardedtheme-oceanic-reversed.yaml index 4229c020..6f282be8 100644 --- a/themes/august-beardedtheme-oceanic-reversed.yaml +++ b/themes/august-beardedtheme-oceanic-reversed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-beardedtheme-surprising-blueberry.yaml b/themes/august-beardedtheme-surprising-blueberry.yaml index d7f94d99..7eee2de0 100644 --- a/themes/august-beardedtheme-surprising-blueberry.yaml +++ b/themes/august-beardedtheme-surprising-blueberry.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-catppuccin.yaml b/themes/august-catppuccin.yaml index 04df8a4d..779e256b 100644 --- a/themes/august-catppuccin.yaml +++ b/themes/august-catppuccin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SofiDev.sofidev" version: "6.1.9" installs: 591 + rating: 5 + ratings: 2 author: "SofiDev" repo: "https://github.com/SofiDevO/sofidev-theme" url: "https://marketplace.visualstudio.com/items?itemName=SofiDev.sofidev" diff --git a/themes/august-city-lights-darker.yaml b/themes/august-city-lights-darker.yaml index abd986c5..7ccd5ed5 100644 --- a/themes/august-city-lights-darker.yaml +++ b/themes/august-city-lights-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-city-lights.yaml b/themes/august-city-lights.yaml index c09b2615..ff12a252 100644 --- a/themes/august-city-lights.yaml +++ b/themes/august-city-lights.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-dark-theme.yaml b/themes/august-dark-theme.yaml index 52889715..d7b58f12 100644 --- a/themes/august-dark-theme.yaml +++ b/themes/august-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/august-drawbridge-darker.yaml b/themes/august-drawbridge-darker.yaml index 3b03c3e6..37d3183a 100644 --- a/themes/august-drawbridge-darker.yaml +++ b/themes/august-drawbridge-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-drawbridge.yaml b/themes/august-drawbridge.yaml index c4fd51cd..5f66cb7c 100644 --- a/themes/august-drawbridge.yaml +++ b/themes/august-drawbridge.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-gruvbox-darker.yaml b/themes/august-gruvbox-darker.yaml index 9ec6adde..c97f2a4e 100644 --- a/themes/august-gruvbox-darker.yaml +++ b/themes/august-gruvbox-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-gruvbox.yaml b/themes/august-gruvbox.yaml new file mode 100644 index 00000000..dd88236c --- /dev/null +++ b/themes/august-gruvbox.yaml @@ -0,0 +1,52 @@ +name: "August - Gruvbox" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146457 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#1D2021" + fg: "#EBDBB2" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.3 + black: 0 + red: 24.2 + green: 41.9 + yellow: 51.5 + blue: 30.5 + magenta: 30.7 + cyan: 40.9 + white: 46.2 + brightBlack: 35.3 + brightRed: 39.1 + brightGreen: 60.1 + brightYellow: 70.8 + brightBlue: 47.6 + brightMagenta: 46.9 + brightCyan: 59.1 + brightWhite: 83.3 diff --git a/themes/august-kanagawa-darker.yaml b/themes/august-kanagawa-darker.yaml index 1bc2f022..7f5edaf7 100644 --- a/themes/august-kanagawa-darker.yaml +++ b/themes/august-kanagawa-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-kanagawa.yaml b/themes/august-kanagawa.yaml new file mode 100644 index 00000000..ea99f367 --- /dev/null +++ b/themes/august-kanagawa.yaml @@ -0,0 +1,52 @@ +name: "August - Kanagawa" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146457 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#1F1F28" + fg: "#DCD7BA" + black: "#1F1F28" + red: "#E82424" + green: "#76946A" + yellow: "#FF9E3B" + blue: "#658594" + magenta: "#957FB8" + cyan: "#9CABCA" + white: "#DCD7BA" + brightBlack: "#2A2A37" + brightRed: "#FF5D62" + brightGreen: "#98BB6C" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#D27E99" + brightCyan: "#A3D4D5" + brightWhite: "#DCD7BA" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 79.7 + black: 0 + red: 30.7 + green: 38.4 + yellow: 60.5 + blue: 32.8 + magenta: 37.1 + cyan: 54.4 + white: 79.7 + brightBlack: 0 + brightRed: 44 + brightGreen: 57.4 + brightYellow: 71.1 + brightBlue: 55.5 + brightMagenta: 44.3 + brightCyan: 73 + brightWhite: 79.7 diff --git a/themes/august-material-ocean.yaml b/themes/august-material-ocean.yaml new file mode 100644 index 00000000..9730dc92 --- /dev/null +++ b/themes/august-material-ocean.yaml @@ -0,0 +1,52 @@ +name: "August - Material Ocean" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146457 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" +colors: + bg: "#0F111A" + fg: "#A6ACCD" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + pair: null + contrast: + fg: 57.6 + black: 0 + red: 47.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 47.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/august-material-palenight.yaml b/themes/august-material-palenight.yaml index a1c824ea..6c7e3b5b 100644 --- a/themes/august-material-palenight.yaml +++ b/themes/august-material-palenight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-night-owl-darker.yaml b/themes/august-night-owl-darker.yaml index 3a209de3..568f6ee8 100644 --- a/themes/august-night-owl-darker.yaml +++ b/themes/august-night-owl-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-night-owl.yaml b/themes/august-night-owl.yaml index e56db7f6..ca17a396 100644 --- a/themes/august-night-owl.yaml +++ b/themes/august-night-owl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-nord-darker.yaml b/themes/august-nord-darker.yaml index af3da7de..ff9d37c9 100644 --- a/themes/august-nord-darker.yaml +++ b/themes/august-nord-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-nord.yaml b/themes/august-nord.yaml index 465a24d6..ed9cdb0b 100644 --- a/themes/august-nord.yaml +++ b/themes/august-nord.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-radical-2.yaml b/themes/august-radical-2.yaml index fcb2c820..14bdc1ec 100644 --- a/themes/august-radical-2.yaml +++ b/themes/august-radical-2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/august-radical.yaml b/themes/august-radical.yaml index 82082c75..528ef28a 100644 --- a/themes/august-radical.yaml +++ b/themes/august-radical.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inci-august.august-themes" version: "2.8.0" installs: 146457 + rating: 5 + ratings: 8 author: "inci-august" repo: "https://github.com/inci-august/august-themes" url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" diff --git a/themes/aura-dark-soft-text.yaml b/themes/aura-dark-soft-text.yaml index da5eba10..22098ab2 100644 --- a/themes/aura-dark-soft-text.yaml +++ b/themes/aura-dark-soft-text.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/aura-dark.yaml b/themes/aura-dark.yaml index 5d1c20e2..c5d34264 100644 --- a/themes/aura-dark.yaml +++ b/themes/aura-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/aura-dracula-spirit-soft.yaml b/themes/aura-dracula-spirit-soft.yaml index 3c9d5248..2c1cb4b1 100644 --- a/themes/aura-dracula-spirit-soft.yaml +++ b/themes/aura-dracula-spirit-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JoseMurilloc.aura-spirit-dracula" version: "0.1.10" installs: 70920 + rating: 5 + ratings: 7 author: "JoseMurilloc" repo: "https://github.com/josemurilloc/aura-spirit-dracula" url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" diff --git a/themes/aura-dracula-spirit-synthwave.yaml b/themes/aura-dracula-spirit-synthwave.yaml index 3e6dd978..e2bb8a4c 100644 --- a/themes/aura-dracula-spirit-synthwave.yaml +++ b/themes/aura-dracula-spirit-synthwave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JoseMurilloc.aura-spirit-dracula" version: "0.1.10" installs: 70920 + rating: 5 + ratings: 7 author: "JoseMurilloc" repo: "https://github.com/josemurilloc/aura-spirit-dracula" url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" diff --git a/themes/aura-dracula-spirit.yaml b/themes/aura-dracula-spirit.yaml index ec007591..cacf948a 100644 --- a/themes/aura-dracula-spirit.yaml +++ b/themes/aura-dracula-spirit.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JoseMurilloc.aura-spirit-dracula" version: "0.1.10" installs: 70920 + rating: 5 + ratings: 7 author: "JoseMurilloc" repo: "https://github.com/josemurilloc/aura-spirit-dracula" url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" diff --git a/themes/aura-soft-dark-soft-text.yaml b/themes/aura-soft-dark-soft-text.yaml index 15b242e5..126fc470 100644 --- a/themes/aura-soft-dark-soft-text.yaml +++ b/themes/aura-soft-dark-soft-text.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/aura-soft-dark.yaml b/themes/aura-soft-dark.yaml index 0a60d842..75e9deaa 100644 --- a/themes/aura-soft-dark.yaml +++ b/themes/aura-soft-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/aurbis-dark.yaml b/themes/aurbis-dark.yaml index f6f534b1..c868d014 100644 --- a/themes/aurbis-dark.yaml +++ b/themes/aurbis-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dara.aurbis-theme" version: "0.2.0" installs: 29 + rating: 5 + ratings: 1 author: "dara" repo: "https://github.com/azuradara/aurbis-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=dara.aurbis-theme" diff --git a/themes/aurelconstellation.yaml b/themes/aurelconstellation.yaml index 75c5d4d5..746e8833 100644 --- a/themes/aurelconstellation.yaml +++ b/themes/aurelconstellation.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Pierminator.aurelion-constellation" version: "0.0.1" installs: 61 + rating: 0 + ratings: 0 author: "Pierminator" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Pierminator.aurelion-constellation" diff --git a/themes/aurora-borealis-theme-dark.yaml b/themes/aurora-borealis-theme-dark.yaml index c9974883..432c6166 100644 --- a/themes/aurora-borealis-theme-dark.yaml +++ b/themes/aurora-borealis-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mister-gold.aurora-borealis-theme" version: "1.5.0" installs: 637 + rating: 0 + ratings: 0 author: "Anton Zolotukhin" repo: "https://github.com/bandantonio/aurora-borealis-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mister-gold.aurora-borealis-theme" diff --git a/themes/aurora-borealis-theme.yaml b/themes/aurora-borealis-theme.yaml index c6396045..7fc83276 100644 --- a/themes/aurora-borealis-theme.yaml +++ b/themes/aurora-borealis-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mister-gold.aurora-borealis-theme" version: "1.5.0" installs: 637 + rating: 0 + ratings: 0 author: "Anton Zolotukhin" repo: "https://github.com/bandantonio/aurora-borealis-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mister-gold.aurora-borealis-theme" diff --git a/themes/aurora.yaml b/themes/aurora.yaml index a1f2f1d9..7d8a8d26 100644 --- a/themes/aurora.yaml +++ b/themes/aurora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "b4v1n4t0r.material-aurora" version: "0.0.1" installs: 78 + rating: 4 + ratings: 1 author: "b4v1n4t0r" repo: "https://github.com/sjbavier/aurora" url: "https://marketplace.visualstudio.com/items?itemName=b4v1n4t0r.material-aurora" diff --git a/themes/aurorabloom.yaml b/themes/aurorabloom.yaml index 8e28f90a..bc368854 100644 --- a/themes/aurorabloom.yaml +++ b/themes/aurorabloom.yaml @@ -2,7 +2,9 @@ name: "AuroraBloom" source: marketplace_id: "R-404.aurorabloom" version: "0.0.1" - installs: 51 + installs: 52 + rating: 0 + ratings: 0 author: "R-404" repo: "https://github.com/Meharab-Islam/Aurorabloom" url: "https://marketplace.visualstudio.com/items?itemName=R-404.aurorabloom" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 234 + pair: null contrast: fg: 104.3 black: 0 diff --git a/themes/aurorain.yaml b/themes/aurorain.yaml index 462df236..b8280a72 100644 --- a/themes/aurorain.yaml +++ b/themes/aurorain.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MostafaGh.aurorain" version: "1.0.2" installs: 537 + rating: 5 + ratings: 3 author: "Mostafa-Gholami" repo: "https://github.com/Mostafa229Gh/Aurorain" url: "https://marketplace.visualstudio.com/items?itemName=MostafaGh.aurorain" diff --git a/themes/aurorasynth-dark.yaml b/themes/aurorasynth-dark.yaml index c35bd7fe..86487099 100644 --- a/themes/aurorasynth-dark.yaml +++ b/themes/aurorasynth-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "0xK4GE.aurorasynth" version: "0.0.2" installs: 136 + rating: 0 + ratings: 0 author: "0xK4GE" repo: "https://github.com/Ayushvishwakarma04/AuroraSynth" url: "https://marketplace.visualstudio.com/items?itemName=0xK4GE.aurorasynth" diff --git a/themes/aurorasynth-light.yaml b/themes/aurorasynth-light.yaml index c6bc9b63..5ac5a61e 100644 --- a/themes/aurorasynth-light.yaml +++ b/themes/aurorasynth-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "0xK4GE.aurorasynth" version: "0.0.2" installs: 136 + rating: 0 + ratings: 0 author: "0xK4GE" repo: "https://github.com/Ayushvishwakarma04/AuroraSynth" url: "https://marketplace.visualstudio.com/items?itemName=0xK4GE.aurorasynth" diff --git a/themes/australian-food-fibre-dark.yaml b/themes/australian-food-fibre-dark.yaml index 0b039c2f..77ce6736 100644 --- a/themes/australian-food-fibre-dark.yaml +++ b/themes/australian-food-fibre-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.australian-food-fibre-theme" version: "1.4.0" installs: 8 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.australian-food-fibre-theme" diff --git a/themes/australian-food-fibre-light.yaml b/themes/australian-food-fibre-light.yaml index f749e06f..27a543b6 100644 --- a/themes/australian-food-fibre-light.yaml +++ b/themes/australian-food-fibre-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.australian-food-fibre-theme" version: "1.4.0" installs: 8 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.australian-food-fibre-theme" diff --git a/themes/autu-dark-theme.yaml b/themes/autu-dark-theme.yaml new file mode 100644 index 00000000..d4229ad0 --- /dev/null +++ b/themes/autu-dark-theme.yaml @@ -0,0 +1,52 @@ +name: "Autu Dark Theme" +source: + marketplace_id: "zddq.autu-theme" + version: "0.0.1" + installs: 27 + rating: 0 + ratings: 0 + author: "zddq" + repo: "https://github.com/zddq/autu-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zddq.autu-theme" +colors: + bg: "#000000" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 60.4 + black: 9.9 + red: 37.7 + green: 61.4 + yellow: 49.6 + blue: 50.7 + magenta: 40.1 + cyan: 53.5 + white: 84 + brightBlack: 16.5 + brightRed: 47.1 + brightGreen: 77.8 + brightYellow: 62.2 + brightBlue: 64.7 + brightMagenta: 51.3 + brightCyan: 68.8 + brightWhite: 91.7 diff --git a/themes/autumn-fork-contrast.yaml b/themes/autumn-fork-contrast.yaml index c88a559f..d2af971e 100644 --- a/themes/autumn-fork-contrast.yaml +++ b/themes/autumn-fork-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brinklju.jb-autumn" version: "0.4.0" installs: 293 + rating: 5 + ratings: 1 author: "brinklju" repo: null url: "https://marketplace.visualstudio.com/items?itemName=brinklju.jb-autumn" diff --git a/themes/autumn-fork.yaml b/themes/autumn-fork.yaml index 0b8adada..68a1378d 100644 --- a/themes/autumn-fork.yaml +++ b/themes/autumn-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jonothankh.dyslexia-autumn-theme" version: "0.0.1" installs: 1550 + rating: 0 + ratings: 0 author: "Jonothan Hunt" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jonothankh.dyslexia-autumn-theme" diff --git a/themes/autumn.yaml b/themes/autumn.yaml index 1a96f164..b013a962 100644 --- a/themes/autumn.yaml +++ b/themes/autumn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "den-swe.autumn-theme-light" version: "1.6.0" installs: 123 + rating: 0 + ratings: 0 author: "Denniz Ege" repo: "https://github.com/den-swe/autumn-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=den-swe.autumn-theme-light" diff --git a/themes/awesome-dark.yaml b/themes/awesome-dark.yaml index e15b8678..e385513d 100644 --- a/themes/awesome-dark.yaml +++ b/themes/awesome-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iSSamQa.awesome-dark-theme" version: "0.2.1" installs: 1946 + rating: 5 + ratings: 3 author: "iSSam Qa" repo: "https://github.com/iSSamQa/vscode-awesome-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=iSSamQa.awesome-dark-theme" diff --git a/themes/awesome-theme.yaml b/themes/awesome-theme.yaml index 3b62e8a6..1e47e41b 100644 --- a/themes/awesome-theme.yaml +++ b/themes/awesome-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ast2kg.awesome-theme" version: "0.0.1" installs: 110 + rating: 5 + ratings: 1 author: "AshishK" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ast2kg.awesome-theme" diff --git a/themes/awesome-vscode-dark.yaml b/themes/awesome-vscode-dark.yaml index 27f46ea0..bfb2707e 100644 --- a/themes/awesome-vscode-dark.yaml +++ b/themes/awesome-vscode-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SatyamTripathi-codehouse.awesome-vscode-dark" version: "0.0.1" installs: 26 + rating: 0 + ratings: 0 author: "Satyam Tripathi6212" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SatyamTripathi-codehouse.awesome-vscode-dark" diff --git a/themes/awork-dark.yaml b/themes/awork-dark.yaml index 3562ed98..d473a494 100644 --- a/themes/awork-dark.yaml +++ b/themes/awork-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sils.awork-dark" version: "0.0.9" installs: 22 + rating: 0 + ratings: 0 author: "Sil's" repo: "https://github.com/silvandiepen/awork-theme" url: "https://marketplace.visualstudio.com/items?itemName=sils.awork-dark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 277 + pair: null contrast: fg: 78.8 black: 0 diff --git a/themes/axiomatic-dark.yaml b/themes/axiomatic-dark.yaml index 6abd2195..6997ba48 100644 --- a/themes/axiomatic-dark.yaml +++ b/themes/axiomatic-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xcuzalex.axiomatic" version: "0.5.0" installs: 42 + rating: 5 + ratings: 1 author: "xcuzalex" repo: "https://github.com/xcuzalex/axiomatic-theme" url: "https://marketplace.visualstudio.com/items?itemName=xcuzalex.axiomatic" diff --git a/themes/axiomatic-light.yaml b/themes/axiomatic-light.yaml index fd3ee8c1..ee631139 100644 --- a/themes/axiomatic-light.yaml +++ b/themes/axiomatic-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xcuzalex.axiomatic" version: "0.5.0" installs: 42 + rating: 5 + ratings: 1 author: "xcuzalex" repo: "https://github.com/xcuzalex/axiomatic-theme" url: "https://marketplace.visualstudio.com/items?itemName=xcuzalex.axiomatic" diff --git a/themes/axis-ultra-dark.yaml b/themes/axis-ultra-dark.yaml index c4d0db56..8c156394 100644 --- a/themes/axis-ultra-dark.yaml +++ b/themes/axis-ultra-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "utreras.axis-ultra-dark" version: "3.0.0" installs: 112 + rating: 0 + ratings: 0 author: "Ignacio Utreras Urrutia" repo: "https://github.com/utreras/axis-ultra-dark" url: "https://marketplace.visualstudio.com/items?itemName=utreras.axis-ultra-dark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 88.3 black: 0 diff --git a/themes/aya-dark.yaml b/themes/aya-dark.yaml new file mode 100644 index 00000000..2209824a --- /dev/null +++ b/themes/aya-dark.yaml @@ -0,0 +1,52 @@ +name: "Aya Dark" +source: + marketplace_id: "vincent-the-gamer.aya" + version: "0.1.5" + installs: 485 + rating: 0 + ratings: 0 + author: "vincent-the-gamer" + repo: "https://github.com/Vincent-the-gamer/vscode-theme-aya" + url: "https://marketplace.visualstudio.com/items?itemName=vincent-the-gamer.aya" +colors: + bg: "#E7F5D1" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 87.4 + black: 96.2 + red: 64.4 + green: 68.9 + yellow: 39.2 + blue: 69.1 + magenta: 72 + cyan: 54.4 + white: 12 + brightBlack: 36.8 + brightRed: 64.4 + brightGreen: 68.9 + brightYellow: 39.2 + brightBlue: 69.1 + brightMagenta: 72 + brightCyan: 54.4 + brightWhite: 8.5 diff --git a/themes/aya-light.yaml b/themes/aya-light.yaml new file mode 100644 index 00000000..ec9f5439 --- /dev/null +++ b/themes/aya-light.yaml @@ -0,0 +1,52 @@ +name: "Aya Light" +source: + marketplace_id: "vincent-the-gamer.aya" + version: "0.1.5" + installs: 485 + rating: 0 + ratings: 0 + author: "vincent-the-gamer" + repo: "https://github.com/Vincent-the-gamer/vscode-theme-aya" + url: "https://marketplace.visualstudio.com/items?itemName=vincent-the-gamer.aya" +colors: + bg: "#E3FFE5" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 92.1 + black: 100.8 + red: 69 + green: 73.5 + yellow: 43.9 + blue: 73.8 + magenta: 76.7 + cyan: 59 + white: 16.6 + brightBlack: 41.4 + brightRed: 69 + brightGreen: 73.5 + brightYellow: 43.9 + brightBlue: 73.8 + brightMagenta: 76.7 + brightCyan: 59 + brightWhite: 13.1 diff --git a/themes/ayame.yaml b/themes/ayame.yaml index 40cd8b54..391e7c5b 100644 --- a/themes/ayame.yaml +++ b/themes/ayame.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Nurdoidz.ayame" version: "1.1.2" installs: 302 + rating: 0 + ratings: 0 author: "Nurdoidz" repo: "https://github.com/AyameTheme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=Nurdoidz.ayame" diff --git a/themes/ayanokoji.yaml b/themes/ayanokoji.yaml index ad112c6e..98b2f343 100644 --- a/themes/ayanokoji.yaml +++ b/themes/ayanokoji.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Pratik1107.ayanokoji-theme" version: "2.0.1" installs: 91 + rating: 5 + ratings: 3 author: "Pratik1107" repo: "https://github.com/yourusername/ayanokoji-theme" url: "https://marketplace.visualstudio.com/items?itemName=Pratik1107.ayanokoji-theme" diff --git a/themes/aylin.yaml b/themes/aylin.yaml index 972053e0..ec9546f1 100644 --- a/themes/aylin.yaml +++ b/themes/aylin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AhmedAbdulrahman.aylin" version: "1.13.0" installs: 9805 + rating: 5 + ratings: 6 author: "Ahmed Abdulrahman" repo: "https://github.com/AhmedAbdulrahman/aylin-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=AhmedAbdulrahman.aylin" diff --git a/themes/ayu-darkvenom-transparent-borderless.yaml b/themes/ayu-darkvenom-transparent-borderless.yaml new file mode 100644 index 00000000..17bf3721 --- /dev/null +++ b/themes/ayu-darkvenom-transparent-borderless.yaml @@ -0,0 +1,52 @@ +name: "Ayu Darkvenom Transparent - borderless" +source: + marketplace_id: "SHipServer.vscode-transparent-themes-collection" + version: "0.0.2" + installs: 2853 + rating: 0 + ratings: 0 + author: "ReFleXzZ" + repo: "https://github.com/ReFleXzZ/transparent-themes-collection" + url: "https://marketplace.visualstudio.com/items?itemName=SHipServer.vscode-transparent-themes-collection" +colors: + bg: "#0B0E14" + fg: "#BFBDB6" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 66.5 + black: 0 + red: 44.7 + green: 70.7 + yellow: 67.3 + blue: 61.3 + magenta: 61.3 + cyan: 78.6 + white: 72.4 + brightBlack: 23.6 + brightRed: 47.3 + brightGreen: 74 + brightYellow: 70.3 + brightBlue: 64 + brightMagenta: 64.1 + brightCyan: 81.6 + brightWhite: 107.6 diff --git a/themes/ayu-enhanced.yaml b/themes/ayu-enhanced.yaml index 1ed73e28..d3652fce 100644 --- a/themes/ayu-enhanced.yaml +++ b/themes/ayu-enhanced.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jonaqhan.jonaqhan" version: "4.8.0" installs: 753 + rating: 0 + ratings: 0 author: "Jonaqhan" repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" diff --git a/themes/ayu-one-dark-pro-dark-bordered.yaml b/themes/ayu-one-dark-pro-dark-bordered.yaml new file mode 100644 index 00000000..ff4652d5 --- /dev/null +++ b/themes/ayu-one-dark-pro-dark-bordered.yaml @@ -0,0 +1,52 @@ +name: "Ayu One Dark Pro | Dark Bordered" +source: + marketplace_id: "smeagolem.ayu-one-dark-pro" + version: "1.7.2" + installs: 73628 + rating: 0 + ratings: 0 + author: "smeagolem" + repo: "https://github.com/smeagolem/ayu-one-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=smeagolem.ayu-one-dark-pro" +colors: + bg: "#0D1016" + fg: "#B3B1AD" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 59.7 + black: 0 + red: 44.6 + green: 54.8 + yellow: 67.2 + blue: 61.2 + magenta: 92.6 + cyan: 78.4 + white: 72.3 + brightBlack: 23.5 + brightRed: 47.2 + brightGreen: 76.5 + brightYellow: 70.1 + brightBlue: 63.9 + brightMagenta: 95.8 + brightCyan: 81.4 + brightWhite: 107.4 diff --git a/themes/ayu-one-dark-pro-mirage-bordered.yaml b/themes/ayu-one-dark-pro-mirage-bordered.yaml new file mode 100644 index 00000000..9927b48f --- /dev/null +++ b/themes/ayu-one-dark-pro-mirage-bordered.yaml @@ -0,0 +1,52 @@ +name: "Ayu One Dark Pro | Mirage Bordered" +source: + marketplace_id: "smeagolem.ayu-one-dark-pro" + version: "1.7.2" + installs: 73628 + rating: 0 + ratings: 0 + author: "smeagolem" + repo: "https://github.com/smeagolem/ayu-one-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=smeagolem.ayu-one-dark-pro" +colors: + bg: "#232834" + fg: "#CBCCC6" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#6DCBFA" + magenta: "#CFBAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#73D0FF" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + pair: null + contrast: + fg: 71.8 + black: 0 + red: 47.9 + green: 65 + yellow: 78 + blue: 65.5 + magenta: 67.6 + cyan: 75.4 + white: 69.2 + brightBlack: 20.4 + brightRed: 50.4 + brightGreen: 79.5 + brightYellow: 81.1 + brightBlue: 68.4 + brightMagenta: 70.5 + brightCyan: 78.4 + brightWhite: 104.4 diff --git a/themes/ayu-one-dark-pro-mirage.yaml b/themes/ayu-one-dark-pro-mirage.yaml new file mode 100644 index 00000000..87db8407 --- /dev/null +++ b/themes/ayu-one-dark-pro-mirage.yaml @@ -0,0 +1,52 @@ +name: "Ayu One Dark Pro | Mirage" +source: + marketplace_id: "smeagolem.ayu-one-dark-pro" + version: "1.7.2" + installs: 73628 + rating: 0 + ratings: 0 + author: "smeagolem" + repo: "https://github.com/smeagolem/ayu-one-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=smeagolem.ayu-one-dark-pro" +colors: + bg: "#1F2430" + fg: "#CBCCC6" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#6DCBFA" + magenta: "#CFBAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#73D0FF" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + pair: null + contrast: + fg: 72.5 + black: 0 + red: 48.6 + green: 65.7 + yellow: 78.7 + blue: 66.2 + magenta: 68.3 + cyan: 76.1 + white: 69.9 + brightBlack: 21.1 + brightRed: 51.1 + brightGreen: 80.2 + brightYellow: 81.8 + brightBlue: 69.1 + brightMagenta: 71.2 + brightCyan: 79.1 + brightWhite: 105.1 diff --git a/themes/ayu-owl.yaml b/themes/ayu-owl.yaml index d721ecf3..a9b990e6 100644 --- a/themes/ayu-owl.yaml +++ b/themes/ayu-owl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dermohamad.ayu-owl" version: "0.5.0" installs: 17994 + rating: 5 + ratings: 2 author: "dermohamad" repo: "https://github.com/mo-develop/ayu-owl" url: "https://marketplace.visualstudio.com/items?itemName=dermohamad.ayu-owl" diff --git a/themes/ayudark.yaml b/themes/ayudark.yaml index aff5a861..3febb22c 100644 --- a/themes/ayudark.yaml +++ b/themes/ayudark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.codeme-theme" version: "0.1.1" installs: 8080 + rating: 0 + ratings: 0 author: "Avetis" repo: "https://github.com/AvetisDN/codeme-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" diff --git a/themes/ayuloco-dark-bordered.yaml b/themes/ayuloco-dark-bordered.yaml index 20b8e24b..dd31c6fd 100644 --- a/themes/ayuloco-dark-bordered.yaml +++ b/themes/ayuloco-dark-bordered.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dpaulos6.ayuloco-theme" version: "2.0.3" installs: 1465 + rating: 5 + ratings: 1 author: "dpaulos6" repo: "https://github.com/dpaulos6/ayuloco-theme" url: "https://marketplace.visualstudio.com/items?itemName=dpaulos6.ayuloco-theme" diff --git a/themes/ayuloco-mirage-bordered.yaml b/themes/ayuloco-mirage-bordered.yaml index e9e4e72f..dc7e64d5 100644 --- a/themes/ayuloco-mirage-bordered.yaml +++ b/themes/ayuloco-mirage-bordered.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dpaulos6.ayuloco-theme" version: "2.0.3" installs: 1465 + rating: 5 + ratings: 1 author: "dpaulos6" repo: "https://github.com/dpaulos6/ayuloco-theme" url: "https://marketplace.visualstudio.com/items?itemName=dpaulos6.ayuloco-theme" diff --git a/themes/ayuloco-mirage.yaml b/themes/ayuloco-mirage.yaml index f153d41a..f3e9880b 100644 --- a/themes/ayuloco-mirage.yaml +++ b/themes/ayuloco-mirage.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dpaulos6.ayuloco-theme" version: "2.0.3" installs: 1465 + rating: 5 + ratings: 1 author: "dpaulos6" repo: "https://github.com/dpaulos6/ayuloco-theme" url: "https://marketplace.visualstudio.com/items?itemName=dpaulos6.ayuloco-theme" diff --git a/themes/ayutokyo-color-theme.yaml b/themes/ayutokyo-color-theme.yaml index 7672ccae..340b856b 100644 --- a/themes/ayutokyo-color-theme.yaml +++ b/themes/ayutokyo-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LudoLoops.ayutokyo" version: "0.2.1" installs: 21449 + rating: 5 + ratings: 2 author: "LudoLoops" repo: "https://github.com/neuroloops/ayutokyo" url: "https://marketplace.visualstudio.com/items?itemName=LudoLoops.ayutokyo" diff --git a/themes/ayyour.yaml b/themes/ayyour.yaml index b81fb941..2fe0e579 100644 --- a/themes/ayyour.yaml +++ b/themes/ayyour.yaml @@ -1,13 +1,15 @@ name: "Ayyour" source: - marketplace_id: "akil-s.tahiti-retro" - version: "0.0.2" - installs: 611 + marketplace_id: "akil-s.ayyour" + version: "0.0.1" + installs: 195 + rating: 0 + ratings: 0 author: "akil-s" repo: "https://github.com/Salah-Akil/ayyour-theme" - url: "https://marketplace.visualstudio.com/items?itemName=akil-s.tahiti-retro" + url: "https://marketplace.visualstudio.com/items?itemName=akil-s.ayyour" colors: - bg: "#DCDAD7" + bg: "#EAE7E1" fg: "#323435" black: "#232627" red: "#BF0C0C" @@ -31,20 +33,20 @@ meta: hue: null pair: null contrast: - fg: 76.9 - black: 80.6 - red: 57.9 - green: 43.7 - yellow: 29.6 - blue: 39.5 - magenta: 45.2 - cyan: 27.3 - white: 72.2 - brightBlack: 67.8 - brightRed: 55.3 - brightGreen: 38.1 - brightYellow: 52.7 - brightBlue: 27.8 - brightMagenta: 57.3 - brightCyan: 38.1 - brightWhite: 61.5 + fg: 84.4 + black: 88.1 + red: 65.4 + green: 51.2 + yellow: 37.1 + blue: 47 + magenta: 52.6 + cyan: 34.8 + white: 79.6 + brightBlack: 75.3 + brightRed: 62.8 + brightGreen: 45.5 + brightYellow: 60.2 + brightBlue: 35.3 + brightMagenta: 64.7 + brightCyan: 45.6 + brightWhite: 69 diff --git a/themes/az0ox-theme-shadesofblue.yaml b/themes/az0ox-theme-shadesofblue.yaml index 2604857c..3a8cf638 100644 --- a/themes/az0ox-theme-shadesofblue.yaml +++ b/themes/az0ox-theme-shadesofblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NathanEcht.az0ox-theme-ShadesOfBlue" version: "0.0.2" installs: 143 + rating: 0 + ratings: 0 author: "Nathan_Echt" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NathanEcht.az0ox-theme-ShadesOfBlue" diff --git a/themes/azathoth.yaml b/themes/azathoth.yaml index 10a614e9..5b296815 100644 --- a/themes/azathoth.yaml +++ b/themes/azathoth.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chocolatemoles.theme-azathoth-vscode" version: "1.0.3" installs: 213 + rating: 0 + ratings: 0 author: "chocolate_moles" repo: null url: "https://marketplace.visualstudio.com/items?itemName=chocolatemoles.theme-azathoth-vscode" diff --git a/themes/azeny-cutimaru.yaml b/themes/azeny-cutimaru.yaml index 1dd9c201..1a7eb330 100644 --- a/themes/azeny-cutimaru.yaml +++ b/themes/azeny-cutimaru.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Azeny.azeny" version: "0.1.11" installs: 684 + rating: 5 + ratings: 3 author: "Azeny" repo: "https://github.com/joaopedroaats/azeny-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Azeny.azeny" diff --git a/themes/azeny-inveny.yaml b/themes/azeny-inveny.yaml index 55fcf0ad..7b61b25f 100644 --- a/themes/azeny-inveny.yaml +++ b/themes/azeny-inveny.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Azeny.azeny" version: "0.1.11" installs: 684 + rating: 5 + ratings: 3 author: "Azeny" repo: "https://github.com/joaopedroaats/azeny-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Azeny.azeny" diff --git a/themes/azeny-okano.yaml b/themes/azeny-okano.yaml index 42e68c71..fcfdaeb6 100644 --- a/themes/azeny-okano.yaml +++ b/themes/azeny-okano.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Azeny.azeny" version: "0.1.11" installs: 684 + rating: 5 + ratings: 3 author: "Azeny" repo: "https://github.com/joaopedroaats/azeny-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Azeny.azeny" diff --git a/themes/azeny.yaml b/themes/azeny.yaml index fe879a0b..c247ee3d 100644 --- a/themes/azeny.yaml +++ b/themes/azeny.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Azeny.azeny" version: "0.1.11" installs: 684 + rating: 5 + ratings: 3 author: "Azeny" repo: "https://github.com/joaopedroaats/azeny-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Azeny.azeny" diff --git a/themes/azerite-dark-soft.yaml b/themes/azerite-dark-soft.yaml index 11a9d6fe..6833980b 100644 --- a/themes/azerite-dark-soft.yaml +++ b/themes/azerite-dark-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wistb.azerite-dark" version: "0.0.7" installs: 248 + rating: 0 + ratings: 0 author: "wistb" repo: null url: "https://marketplace.visualstudio.com/items?itemName=wistb.azerite-dark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 266 + pair: null contrast: fg: 65.1 black: 26 diff --git a/themes/azerite-dark.yaml b/themes/azerite-dark.yaml index 813015bb..c2b0d8a0 100644 --- a/themes/azerite-dark.yaml +++ b/themes/azerite-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wistb.azerite-dark" version: "0.0.7" installs: 248 + rating: 0 + ratings: 0 author: "wistb" repo: null url: "https://marketplace.visualstudio.com/items?itemName=wistb.azerite-dark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 272 + pair: null contrast: fg: 66.2 black: 27.2 diff --git a/themes/azul.yaml b/themes/azul.yaml index ef5f582d..da2d0acb 100644 --- a/themes/azul.yaml +++ b/themes/azul.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.arcobow" version: "0.0.3" installs: 232 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/yesomac/Arcobow" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.arcobow" diff --git a/themes/azure-contrast.yaml b/themes/azure-contrast.yaml index b5dd6679..ed8d9d2a 100644 --- a/themes/azure-contrast.yaml +++ b/themes/azure-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/azure-dark-teal.yaml b/themes/azure-dark-teal.yaml index e44c5e3a..ef11c724 100644 --- a/themes/azure-dark-teal.yaml +++ b/themes/azure-dark-teal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diamo-Bachar.azure-teal" version: "0.0.1" installs: 1062 + rating: 0 + ratings: 0 author: "Diamo Bachar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Diamo-Bachar.azure-teal" diff --git a/themes/azure-iris-dark.yaml b/themes/azure-iris-dark.yaml index 5e045948..a1bb5db0 100644 --- a/themes/azure-iris-dark.yaml +++ b/themes/azure-iris-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Codetown-3.azure-iris-theme" version: "0.0.39" installs: 110 + rating: 0 + ratings: 0 author: "Lielisk" repo: "https://github.com/your-username/azure-iris-theme" url: "https://marketplace.visualstudio.com/items?itemName=Codetown-3.azure-iris-theme" diff --git a/themes/azure-iris-light.yaml b/themes/azure-iris-light.yaml index 6eba2328..463b8194 100644 --- a/themes/azure-iris-light.yaml +++ b/themes/azure-iris-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Codetown-3.azure-iris-theme" version: "0.0.39" installs: 110 + rating: 0 + ratings: 0 author: "Lielisk" repo: "https://github.com/your-username/azure-iris-theme" url: "https://marketplace.visualstudio.com/items?itemName=Codetown-3.azure-iris-theme" diff --git a/themes/azure-light.yaml b/themes/azure-light.yaml index 32267bba..641a084b 100644 --- a/themes/azure-light.yaml +++ b/themes/azure-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/azure-noir.yaml b/themes/azure-noir.yaml index 05240a61..37d97436 100644 --- a/themes/azure-noir.yaml +++ b/themes/azure-noir.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" installs: 81 + rating: 5 + ratings: 2 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" diff --git a/themes/azure.yaml b/themes/azure.yaml index 0136e82e..94237b30 100644 --- a/themes/azure.yaml +++ b/themes/azure.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/b-nt.yaml b/themes/b-nt.yaml index ddc2739e..e8e52a8f 100644 --- a/themes/b-nt.yaml +++ b/themes/b-nt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GD-alt.black--n-turquoise" version: "1.0.0" installs: 1950 + rating: 0 + ratings: 0 author: "GD-alt" repo: null url: "https://marketplace.visualstudio.com/items?itemName=GD-alt.black--n-turquoise" diff --git a/themes/b150-dark.yaml b/themes/b150-dark.yaml index 28c31ebb..c1d8d0c5 100644 --- a/themes/b150-dark.yaml +++ b/themes/b150-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "B150.b150-theme" version: "1.0.0" installs: 16 + rating: 0 + ratings: 0 author: "B150" repo: "https://github.com/b150/b150-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=B150.b150-theme" diff --git a/themes/b150-light.yaml b/themes/b150-light.yaml index 20548692..15cbb569 100644 --- a/themes/b150-light.yaml +++ b/themes/b150-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "B150.b150-theme" version: "1.0.0" installs: 16 + rating: 0 + ratings: 0 author: "B150" repo: "https://github.com/b150/b150-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=B150.b150-theme" diff --git a/themes/b2b-edge-light.yaml b/themes/b2b-edge-light.yaml index 8ed3f459..74e5780c 100644 --- a/themes/b2b-edge-light.yaml +++ b/themes/b2b-edge-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "B2BEdge.b2b-edge-light" version: "0.1.2" installs: 185 + rating: 5 + ratings: 1 author: "B2B Edge" repo: "https://github.com/b2bedge/b2bedge-theme-light" url: "https://marketplace.visualstudio.com/items?itemName=B2BEdge.b2b-edge-light" diff --git a/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml index 26547866..15f2558e 100644 --- a/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml +++ b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shahabkhalvati.b9f36bcf530f3d6b5c9cf39d2e260a99" version: "0.1.6" installs: 255 + rating: 0 + ratings: 0 author: "Shahab Khalvati" repo: "https://github.com/shahabkhalvati/b9f36bcf530f3d6b5c9cf39d2e260a99" url: "https://marketplace.visualstudio.com/items?itemName=shahabkhalvati.b9f36bcf530f3d6b5c9cf39d2e260a99" diff --git a/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml index 986d8648..95d46209 100644 --- a/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml +++ b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shahabkhalvati.b9f36bcf530f3d6b5c9cf39d2e260a99" version: "0.1.6" installs: 255 + rating: 0 + ratings: 0 author: "Shahab Khalvati" repo: "https://github.com/shahabkhalvati/b9f36bcf530f3d6b5c9cf39d2e260a99" url: "https://marketplace.visualstudio.com/items?itemName=shahabkhalvati.b9f36bcf530f3d6b5c9cf39d2e260a99" diff --git a/themes/backspace-dark-glass.yaml b/themes/backspace-dark-glass.yaml index 8fa6d1d6..d507b650 100644 --- a/themes/backspace-dark-glass.yaml +++ b/themes/backspace-dark-glass.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SamiurRahmanMukul.backspace-theme" version: "0.2.0" installs: 289 + rating: 5 + ratings: 2 author: "SamiurRahmanMukul" repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" diff --git a/themes/backspace-dark-vibe-coder.yaml b/themes/backspace-dark-vibe-coder.yaml index 1a4799db..721fce73 100644 --- a/themes/backspace-dark-vibe-coder.yaml +++ b/themes/backspace-dark-vibe-coder.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SamiurRahmanMukul.backspace-theme" version: "0.2.0" installs: 289 + rating: 5 + ratings: 2 author: "SamiurRahmanMukul" repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" diff --git a/themes/backspace-dark-winter.yaml b/themes/backspace-dark-winter.yaml index 51f77830..8ede5213 100644 --- a/themes/backspace-dark-winter.yaml +++ b/themes/backspace-dark-winter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SamiurRahmanMukul.backspace-theme" version: "0.2.0" installs: 289 + rating: 5 + ratings: 2 author: "SamiurRahmanMukul" repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" diff --git a/themes/backspace-dark.yaml b/themes/backspace-dark.yaml index 41753143..6d2cfbe2 100644 --- a/themes/backspace-dark.yaml +++ b/themes/backspace-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SamiurRahmanMukul.backspace-theme" version: "0.2.0" installs: 289 + rating: 5 + ratings: 2 author: "SamiurRahmanMukul" repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" diff --git a/themes/backspace-light.yaml b/themes/backspace-light.yaml index db877da7..215701bf 100644 --- a/themes/backspace-light.yaml +++ b/themes/backspace-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SamiurRahmanMukul.backspace-theme" version: "0.2.0" installs: 289 + rating: 5 + ratings: 2 author: "SamiurRahmanMukul" repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" diff --git a/themes/baculum-color-minimal-2.yaml b/themes/baculum-color-minimal-2.yaml index 2563c922..d95baee9 100644 --- a/themes/baculum-color-minimal-2.yaml +++ b/themes/baculum-color-minimal-2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "oneplus1000.baculum-color" version: "0.0.27" installs: 144 + rating: 5 + ratings: 1 author: "oneplus1000" repo: "https://github.com/oneplus1000/baculum-color" url: "https://marketplace.visualstudio.com/items?itemName=oneplus1000.baculum-color" diff --git a/themes/baculum-color-vantablack.yaml b/themes/baculum-color-vantablack.yaml new file mode 100644 index 00000000..0543f7b3 --- /dev/null +++ b/themes/baculum-color-vantablack.yaml @@ -0,0 +1,52 @@ +name: "Baculum Color Vantablack" +source: + marketplace_id: "oneplus1000.baculum-color" + version: "0.0.27" + installs: 144 + rating: 5 + ratings: 1 + author: "oneplus1000" + repo: "https://github.com/oneplus1000/baculum-color" + url: "https://marketplace.visualstudio.com/items?itemName=oneplus1000.baculum-color" +colors: + bg: "#020202" + fg: "#D4D4D4" + black: "#020202" + red: "#FC4384" + green: "#98E342" + yellow: "#E6DB74" + blue: "#00A7AA" + magenta: "#FFB1F2" + cyan: "#37E5E7" + white: "#D4D4D4" + brightBlack: "#555555" + brightRed: "#FC4384" + brightGreen: "#98E342" + brightYellow: "#E6DB74" + brightBlue: "#00A7AA" + brightMagenta: "#FFB1F2" + brightCyan: "#37E5E7" + brightWhite: "#F1F1EF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 80.5 + black: 0 + red: 42.2 + green: 77.4 + yellow: 83.1 + blue: 46.4 + magenta: 74.7 + cyan: 78.2 + white: 80.5 + brightBlack: 16.1 + brightRed: 42.2 + brightGreen: 77.4 + brightYellow: 83.1 + brightBlue: 46.4 + brightMagenta: 74.7 + brightCyan: 78.2 + brightWhite: 98.6 diff --git a/themes/baculum-color.yaml b/themes/baculum-color.yaml new file mode 100644 index 00000000..b033bcde --- /dev/null +++ b/themes/baculum-color.yaml @@ -0,0 +1,52 @@ +name: "Baculum Color" +source: + marketplace_id: "oneplus1000.baculum-color" + version: "0.0.27" + installs: 144 + rating: 5 + ratings: 1 + author: "oneplus1000" + repo: "https://github.com/oneplus1000/baculum-color" + url: "https://marketplace.visualstudio.com/items?itemName=oneplus1000.baculum-color" +colors: + bg: "#272821" + fg: "#D4D4D4" + black: "#272821" + red: "#FC4384" + green: "#98E342" + yellow: "#E6DB74" + blue: "#00A7AA" + magenta: "#FFB1F2" + cyan: "#37E5E7" + white: "#D4D4D4" + brightBlack: "#555555" + brightRed: "#FC4384" + brightGreen: "#98E342" + brightYellow: "#E6DB74" + brightBlue: "#00A7AA" + brightMagenta: "#FFB1F2" + brightCyan: "#37E5E7" + brightWhite: "#F1F1EF" +meta: + mode: "dark" + accent: "red" + hue: 114 + pair: null + contrast: + fg: 77.2 + black: 0 + red: 38.9 + green: 74.1 + yellow: 79.8 + blue: 43 + magenta: 71.4 + cyan: 74.9 + white: 77.2 + brightBlack: 12.8 + brightRed: 38.9 + brightGreen: 74.1 + brightYellow: 79.8 + brightBlue: 43 + brightMagenta: 71.4 + brightCyan: 74.9 + brightWhite: 95.3 diff --git a/themes/baculum-dark-color.yaml b/themes/baculum-dark-color.yaml index ec23a357..6f00cda4 100644 --- a/themes/baculum-dark-color.yaml +++ b/themes/baculum-dark-color.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "oneplus1000.baculum-color" version: "0.0.27" installs: 144 + rating: 5 + ratings: 1 author: "oneplus1000" repo: "https://github.com/oneplus1000/baculum-color" url: "https://marketplace.visualstudio.com/items?itemName=oneplus1000.baculum-color" diff --git a/themes/badbird.yaml b/themes/badbird.yaml index a1105bb5..71f7c093 100644 --- a/themes/badbird.yaml +++ b/themes/badbird.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dullptr.badbird" version: "0.1.0" installs: 1375 + rating: 5 + ratings: 2 author: "dullptr" repo: "https://github.com/PatrickTorgerson/badbird" url: "https://marketplace.visualstudio.com/items?itemName=dullptr.badbird" diff --git a/themes/baig.yaml b/themes/baig.yaml index 70a7565c..4279f282 100644 --- a/themes/baig.yaml +++ b/themes/baig.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shohelranabaig.Baig" version: "1.0.4" installs: 62 + rating: 0 + ratings: 0 author: "shohelranabaig" repo: "https://github.com/Shohelrana63/vscodebaigtheme" url: "https://marketplace.visualstudio.com/items?itemName=shohelranabaig.Baig" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 74.4 black: 46.6 diff --git a/themes/baitul-hikmah-professional.yaml b/themes/baitul-hikmah-professional.yaml index d9835c81..1268c4a4 100644 --- a/themes/baitul-hikmah-professional.yaml +++ b/themes/baitul-hikmah-professional.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ShahriyarHosen.baitul-hikmah-dark" version: "3.2.6" installs: 570 + rating: 5 + ratings: 4 author: "Shahriyar Hosen" repo: "https://github.com/Shahriyar-Hosen/Baitul-Hikmah-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ShahriyarHosen.baitul-hikmah-dark" diff --git a/themes/baiyuechu.yaml b/themes/baiyuechu.yaml deleted file mode 100644 index 9eabf305..00000000 --- a/themes/baiyuechu.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Baiyuechu" -source: - marketplace_id: "DongFangBaiYue.DongFangBai" - version: "4.5.6" - installs: 2 - author: "Dong Fang Bai Yue" - repo: "https://github.com/xiaowu-d3" - url: "https://marketplace.visualstudio.com/items?itemName=DongFangBaiYue.DongFangBai" -colors: - bg: "#181B28" - fg: "#8D8E8E" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#528BFF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: 274 - contrast: - fg: 39.9 - black: 0 - red: 41.6 - green: 61.7 - yellow: 70 - blue: 40.9 - magenta: 44.6 - cyan: 54 - white: 82.5 - brightBlack: 35 - brightRed: 37.9 - brightGreen: 61.7 - brightYellow: 70 - brightBlue: 40.9 - brightMagenta: 12.2 - brightCyan: 54 - brightWhite: 82.5 diff --git a/themes/bakaneo.yaml b/themes/bakaneo.yaml index 7aa0c0a9..e5bf0b88 100644 --- a/themes/bakaneo.yaml +++ b/themes/bakaneo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "coelhomarcus.bakaneo" version: "1.1.7" installs: 114 + rating: 5 + ratings: 2 author: "Marcus Coelho" repo: "https://github.com/coelhomarcus/bakaneo-theme" url: "https://marketplace.visualstudio.com/items?itemName=coelhomarcus.bakaneo" diff --git a/themes/balance-pink-colorblind-compassion-focus.yaml b/themes/balance-pink-colorblind-compassion-focus.yaml index 96614f5f..4ea530e7 100644 --- a/themes/balance-pink-colorblind-compassion-focus.yaml +++ b/themes/balance-pink-colorblind-compassion-focus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/balance-pink-compassion-focus.yaml b/themes/balance-pink-compassion-focus.yaml index 4f9b0228..05d90913 100644 --- a/themes/balance-pink-compassion-focus.yaml +++ b/themes/balance-pink-compassion-focus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/balance-pink-high-contrast-compassion-focus.yaml b/themes/balance-pink-high-contrast-compassion-focus.yaml index 032b1f37..e85589fb 100644 --- a/themes/balance-pink-high-contrast-compassion-focus.yaml +++ b/themes/balance-pink-high-contrast-compassion-focus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/balance-pink-light-compassion-focus.yaml b/themes/balance-pink-light-compassion-focus.yaml index 78d00ad7..0f171c02 100644 --- a/themes/balance-pink-light-compassion-focus.yaml +++ b/themes/balance-pink-light-compassion-focus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/dark-ocean-sands.yaml b/themes/bali-crepuscule.yaml similarity index 80% rename from themes/dark-ocean-sands.yaml rename to themes/bali-crepuscule.yaml index 9028dcf9..a02baa43 100644 --- a/themes/dark-ocean-sands.yaml +++ b/themes/bali-crepuscule.yaml @@ -1,11 +1,13 @@ -name: "Dark Ocean Sands" +name: "Bali crepuscule" source: - marketplace_id: "laurentlahmy.dark-ocean-sands" - version: "0.0.5" - installs: 154 + marketplace_id: "laurentlahmy.bali-crepuscule" + version: "0.0.6" + installs: 238 + rating: 0 + ratings: 0 author: "laurent lahmy" - repo: "https://github.com/laurentlahmy/tokyo-nights-dark-pro-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=laurentlahmy.dark-ocean-sands" + repo: "https://github.com/alphablend-dev/theme" + url: "https://marketplace.visualstudio.com/items?itemName=laurentlahmy.bali-crepuscule" colors: bg: "#0F121C" fg: "#ABB2BF" diff --git a/themes/ballerini-theme.yaml b/themes/ballerini-theme.yaml index f92c6db5..77b6fd5c 100644 --- a/themes/ballerini-theme.yaml +++ b/themes/ballerini-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BalleriniServer.ballerini-theme" version: "1.2.4" installs: 55189 + rating: 5 + ratings: 13 author: "Ballerini Theme" repo: "https://github.com/Ballerini-Server/Ballerini-theme" url: "https://marketplace.visualstudio.com/items?itemName=BalleriniServer.ballerini-theme" diff --git a/themes/bam.yaml b/themes/bam.yaml index 844a7097..3011d896 100644 --- a/themes/bam.yaml +++ b/themes/bam.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mark-cummins.bam-dark-theme" version: "0.1.0" installs: 244 + rating: 0 + ratings: 0 author: "Mark Cummins" repo: "https://github.com/markcummins/Bam" url: "https://marketplace.visualstudio.com/items?itemName=mark-cummins.bam-dark-theme" diff --git a/themes/bamboo-green.yaml b/themes/bamboo-green.yaml index ceccbb3a..d43e8b15 100644 --- a/themes/bamboo-green.yaml +++ b/themes/bamboo-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "exoad.bamboo-light-green-color-theme" version: "0.0.5" installs: 3990 + rating: 0 + ratings: 0 author: "exoad" repo: "https://github.com/exoad/bamboo-light-green-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=exoad.bamboo-light-green-color-theme" diff --git a/themes/bamboo.yaml b/themes/bamboo.yaml index 535bd9c1..0f8eb1c1 100644 --- a/themes/bamboo.yaml +++ b/themes/bamboo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TiltShift.bamboo" version: "0.0.6" installs: 601 + rating: 1 + ratings: 1 author: "Tilt Shift" repo: "https://github.com/chrisdrackett/bamboo-vs" url: "https://marketplace.visualstudio.com/items?itemName=TiltShift.bamboo" diff --git a/themes/ban-light.yaml b/themes/ban-light.yaml index aea4cef9..b81063b3 100644 --- a/themes/ban-light.yaml +++ b/themes/ban-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "drujban.ban-theme" version: "0.1.1" installs: 62 + rating: 5 + ratings: 1 author: "drujban" repo: "https://github.com/drujbanjo/ban-theme-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=drujban.ban-theme" diff --git a/themes/ban-night.yaml b/themes/ban-night.yaml index 3679cd68..d5463d69 100644 --- a/themes/ban-night.yaml +++ b/themes/ban-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "drujban.ban-theme" version: "0.1.1" installs: 62 + rating: 5 + ratings: 1 author: "drujban" repo: "https://github.com/drujbanjo/ban-theme-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=drujban.ban-theme" diff --git a/themes/ban-typhoon.yaml b/themes/ban-typhoon.yaml index 2f1a378e..cc44c0ae 100644 --- a/themes/ban-typhoon.yaml +++ b/themes/ban-typhoon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "drujban.ban-theme" version: "0.1.1" installs: 62 + rating: 5 + ratings: 1 author: "drujban" repo: "https://github.com/drujbanjo/ban-theme-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=drujban.ban-theme" diff --git a/themes/banjo-loans-dark.yaml b/themes/banjo-loans-dark.yaml new file mode 100644 index 00000000..2f8e8e7e --- /dev/null +++ b/themes/banjo-loans-dark.yaml @@ -0,0 +1,52 @@ +name: "Banjo Loans Dark" +source: + marketplace_id: "lucidlabs.banjo-loans-theme" + version: "1.4.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.banjo-loans-theme" +colors: + bg: "#1A1024" + fg: "#E8E4F0" + black: "#0A0610" + red: "#E06050" + green: "#7ABF5B" + yellow: "#D8A06C" + blue: "#3D7AF5" + magenta: "#C06BDA" + cyan: "#5BB8BF" + white: "#E8E4F0" + brightBlack: "#999999" + brightRed: "#E87272" + brightGreen: "#90D470" + brightYellow: "#E8C070" + brightBlue: "#6B9BFF" + brightMagenta: "#D898E8" + brightCyan: "#78D0D4" + brightWhite: "#F0ECF8" +meta: + mode: "dark" + accent: "purple" + hue: 306 + pair: "Banjo Loans Light" + contrast: + fg: 90.7 + black: 0 + red: 38.8 + green: 57.6 + yellow: 56.2 + blue: 34.4 + magenta: 40.9 + cyan: 55.7 + white: 90.7 + brightBlack: 46.4 + brightRed: 45.3 + brightGreen: 69.3 + brightYellow: 71 + brightBlue: 48.8 + brightMagenta: 58.4 + brightCyan: 69 + brightWhite: 95.8 diff --git a/themes/banjo-loans-light.yaml b/themes/banjo-loans-light.yaml new file mode 100644 index 00000000..bb03280b --- /dev/null +++ b/themes/banjo-loans-light.yaml @@ -0,0 +1,52 @@ +name: "Banjo Loans Light" +source: + marketplace_id: "lucidlabs.banjo-loans-theme" + version: "1.4.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.banjo-loans-theme" +colors: + bg: "#FFFFFF" + fg: "#111111" + black: "#111111" + red: "#D43030" + green: "#2E8B30" + yellow: "#A85020" + blue: "#0039F6" + magenta: "#8B30A8" + cyan: "#1B7264" + white: "#FFFFFF" + brightBlack: "#636363" + brightRed: "#E04040" + brightGreen: "#3AA040" + brightYellow: "#B86020" + brightBlue: "#1050FF" + brightMagenta: "#A040C0" + brightCyan: "#20887A" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + pair: "Banjo Loans Dark" + contrast: + fg: 105.4 + black: 105.4 + red: 72.5 + green: 69.6 + yellow: 76.8 + blue: 83.2 + magenta: 82.6 + cyan: 78.5 + white: 0 + brightBlack: 80.1 + brightRed: 67.8 + brightGreen: 60.5 + brightYellow: 70.3 + brightBlue: 77.8 + brightMagenta: 75.4 + brightCyan: 69.5 + brightWhite: 0 diff --git a/themes/banner-contrast.yaml b/themes/banner-contrast.yaml index 1565e9ec..52a34511 100644 --- a/themes/banner-contrast.yaml +++ b/themes/banner-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/banner-light.yaml b/themes/banner-light.yaml index 55917221..bd6be4fe 100644 --- a/themes/banner-light.yaml +++ b/themes/banner-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/banner.yaml b/themes/banner.yaml index 9874619c..a4202d23 100644 --- a/themes/banner.yaml +++ b/themes/banner.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/barbenheimer-bunker.yaml b/themes/barbenheimer-bunker.yaml index a1290b02..23c0efc9 100644 --- a/themes/barbenheimer-bunker.yaml +++ b/themes/barbenheimer-bunker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jayvicsanantonio.barbenheimer" version: "1.0.0" installs: 4072 + rating: 5 + ratings: 2 author: "Jayvic San Antonio" repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" diff --git a/themes/barbenheimer-dreamhouse.yaml b/themes/barbenheimer-dreamhouse.yaml index f485f4c7..cb3d4476 100644 --- a/themes/barbenheimer-dreamhouse.yaml +++ b/themes/barbenheimer-dreamhouse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jayvicsanantonio.barbenheimer" version: "1.0.0" installs: 4072 + rating: 5 + ratings: 2 author: "Jayvic San Antonio" repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" diff --git a/themes/barbenheimer-nuclear-sunrise.yaml b/themes/barbenheimer-nuclear-sunrise.yaml index e180081c..d694cda9 100644 --- a/themes/barbenheimer-nuclear-sunrise.yaml +++ b/themes/barbenheimer-nuclear-sunrise.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jayvicsanantonio.barbenheimer" version: "1.0.0" installs: 4072 + rating: 5 + ratings: 2 author: "Jayvic San Antonio" repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" diff --git a/themes/barbie-light.yaml b/themes/barbie-light.yaml index acd9d109..8b7a9ade 100644 --- a/themes/barbie-light.yaml +++ b/themes/barbie-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LuanKisaki.barbie-light-theme" version: "1.0.0" installs: 3038 + rating: 5 + ratings: 1 author: "Luan Kisaki" repo: "https://github.com/LuanKisaki/barbie-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=LuanKisaki.barbie-light-theme" diff --git a/themes/barbie-theme.yaml b/themes/barbie-theme.yaml index d1c1bec1..790d8101 100644 --- a/themes/barbie-theme.yaml +++ b/themes/barbie-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mihtoa.barbie-theme" version: "0.0.2" installs: 10608 + rating: 5 + ratings: 1 author: "Milene Toazza" repo: "https://github.com/mihtoa/barbie-theme" url: "https://marketplace.visualstudio.com/items?itemName=mihtoa.barbie-theme" diff --git a/themes/barbie.yaml b/themes/barbie.yaml index a4e6bda4..b037b302 100644 --- a/themes/barbie.yaml +++ b/themes/barbie.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Miraz007.Barbie" version: "0.0.2" installs: 5936 + rating: 0 + ratings: 0 author: "Miraz" repo: "https://github.com/PiyushYadav007/Barbie-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Miraz007.Barbie" diff --git a/themes/barito.yaml b/themes/barito.yaml new file mode 100644 index 00000000..7e5a63f5 --- /dev/null +++ b/themes/barito.yaml @@ -0,0 +1,52 @@ +name: "Barito" +source: + marketplace_id: "levensspel.barito" + version: "1.2.0" + installs: 31 + rating: 0 + ratings: 0 + author: "Levensspel" + repo: "https://github.com/levensspel/barito-theme-vsce" + url: "https://marketplace.visualstudio.com/items?itemName=levensspel.barito" +colors: + bg: "#003030" + fg: "#008C8C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#E0C223" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 195 + pair: null + contrast: + fg: 30 + black: 0 + red: 23.6 + green: 49.9 + yellow: 82.5 + blue: 24.3 + magenta: 26.6 + cyan: 44.4 + white: 86.9 + brightBlack: 18.9 + brightRed: 35.4 + brightGreen: 66.4 + brightYellow: 92.5 + brightBlue: 36.9 + brightMagenta: 42.3 + brightCyan: 52.3 + brightWhite: 86.9 diff --git a/themes/barlume.yaml b/themes/barlume.yaml index a44504fa..423d1b4b 100644 --- a/themes/barlume.yaml +++ b/themes/barlume.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gnkz.barlume" version: "1.3.0" installs: 279 + rating: 0 + ratings: 0 author: "gionkez" repo: "https://github.com/dellarosciagiorgio/barlume" url: "https://marketplace.visualstudio.com/items?itemName=gnkz.barlume" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 97.8 black: 104.2 diff --git a/themes/barney-pro.yaml b/themes/barney-pro.yaml index b12686d9..b208b8cb 100644 --- a/themes/barney-pro.yaml +++ b/themes/barney-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "barney-pro-one.barney-pro" version: "0.0.1" installs: 1282 + rating: 5 + ratings: 1 author: "barney-pro-one" repo: "https://github.com/armando10rafael10/theme-barney-pro" url: "https://marketplace.visualstudio.com/items?itemName=barney-pro-one.barney-pro" diff --git a/themes/base-color-theme.yaml b/themes/base-color-theme.yaml index 83639381..2f855dea 100644 --- a/themes/base-color-theme.yaml +++ b/themes/base-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "electricduck.elementary-theme" version: "1.51.2" installs: 4187 + rating: 4 + ratings: 4 author: "Ducky" repo: "https://github.com/electricduck/vscode-elementary-theme" url: "https://marketplace.visualstudio.com/items?itemName=electricduck.elementary-theme" diff --git a/themes/base16-3024-dark.yaml b/themes/base16-3024-dark.yaml index 6c3fb80f..df5e56f4 100644 --- a/themes/base16-3024-dark.yaml +++ b/themes/base16-3024-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-3024-light.yaml b/themes/base16-3024-light.yaml index 980c1940..40bab8e7 100644 --- a/themes/base16-3024-light.yaml +++ b/themes/base16-3024-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-apathy-dark.yaml b/themes/base16-apathy-dark.yaml index abfc5936..9bc1d0df 100644 --- a/themes/base16-apathy-dark.yaml +++ b/themes/base16-apathy-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-apathy-light.yaml b/themes/base16-apathy-light.yaml index 87ec7efa..4fa9c0cf 100644 --- a/themes/base16-apathy-light.yaml +++ b/themes/base16-apathy-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-ashes-dark.yaml b/themes/base16-ashes-dark.yaml index b1e6481c..0f712788 100644 --- a/themes/base16-ashes-dark.yaml +++ b/themes/base16-ashes-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-ashes-light.yaml b/themes/base16-ashes-light.yaml index 6f2f1908..982671ba 100644 --- a/themes/base16-ashes-light.yaml +++ b/themes/base16-ashes-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-bespin-dark.yaml b/themes/base16-bespin-dark.yaml index d64a7d81..f9393373 100644 --- a/themes/base16-bespin-dark.yaml +++ b/themes/base16-bespin-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-bespin-light.yaml b/themes/base16-bespin-light.yaml index 3010b3b5..87aa167f 100644 --- a/themes/base16-bespin-light.yaml +++ b/themes/base16-bespin-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-brewer-dark.yaml b/themes/base16-brewer-dark.yaml index 184ee54e..f6e4b4b2 100644 --- a/themes/base16-brewer-dark.yaml +++ b/themes/base16-brewer-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-brewer-light.yaml b/themes/base16-brewer-light.yaml index 398356f7..e9790c4e 100644 --- a/themes/base16-brewer-light.yaml +++ b/themes/base16-brewer-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-bright-dark.yaml b/themes/base16-bright-dark.yaml index 0eec176c..b1256483 100644 --- a/themes/base16-bright-dark.yaml +++ b/themes/base16-bright-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-bright-light.yaml b/themes/base16-bright-light.yaml index ceab43e5..2c50c511 100644 --- a/themes/base16-bright-light.yaml +++ b/themes/base16-bright-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-codeschool-dark.yaml b/themes/base16-codeschool-dark.yaml index a5385e09..e78f41b8 100644 --- a/themes/base16-codeschool-dark.yaml +++ b/themes/base16-codeschool-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-codeschool-light.yaml b/themes/base16-codeschool-light.yaml index a2c0b6b0..fde86bac 100644 --- a/themes/base16-codeschool-light.yaml +++ b/themes/base16-codeschool-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-default-dark.yaml b/themes/base16-default-dark.yaml index e26f758f..095f6142 100644 --- a/themes/base16-default-dark.yaml +++ b/themes/base16-default-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-default-light.yaml b/themes/base16-default-light.yaml index 14873a21..8fbaf868 100644 --- a/themes/base16-default-light.yaml +++ b/themes/base16-default-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-eighties-dark.yaml b/themes/base16-eighties-dark.yaml index a2fe2a06..5e5674ed 100644 --- a/themes/base16-eighties-dark.yaml +++ b/themes/base16-eighties-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-eighties-light.yaml b/themes/base16-eighties-light.yaml index 66b39e8d..9fcb5ea4 100644 --- a/themes/base16-eighties-light.yaml +++ b/themes/base16-eighties-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-embers-dark.yaml b/themes/base16-embers-dark.yaml index 57f8157c..ec278973 100644 --- a/themes/base16-embers-dark.yaml +++ b/themes/base16-embers-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-embers-light.yaml b/themes/base16-embers-light.yaml index 9db9bdc3..96d12323 100644 --- a/themes/base16-embers-light.yaml +++ b/themes/base16-embers-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-flat-dark.yaml b/themes/base16-flat-dark.yaml index 2ca56352..6bae35f7 100644 --- a/themes/base16-flat-dark.yaml +++ b/themes/base16-flat-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-flat-light.yaml b/themes/base16-flat-light.yaml index 2d88888c..a546ed33 100644 --- a/themes/base16-flat-light.yaml +++ b/themes/base16-flat-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-google-dark.yaml b/themes/base16-google-dark.yaml index 686f0228..20a1616e 100644 --- a/themes/base16-google-dark.yaml +++ b/themes/base16-google-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-google-light.yaml b/themes/base16-google-light.yaml index 1bf1f81e..40459583 100644 --- a/themes/base16-google-light.yaml +++ b/themes/base16-google-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-grayscale-dark.yaml b/themes/base16-grayscale-dark.yaml index 4410096e..c6ad60b6 100644 --- a/themes/base16-grayscale-dark.yaml +++ b/themes/base16-grayscale-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-grayscale-light.yaml b/themes/base16-grayscale-light.yaml index 9c05d42e..51fd208d 100644 --- a/themes/base16-grayscale-light.yaml +++ b/themes/base16-grayscale-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-green-screen-dark.yaml b/themes/base16-green-screen-dark.yaml index 2941ad7f..9f988251 100644 --- a/themes/base16-green-screen-dark.yaml +++ b/themes/base16-green-screen-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-green-screen-light.yaml b/themes/base16-green-screen-light.yaml index f6f47684..4b685d56 100644 --- a/themes/base16-green-screen-light.yaml +++ b/themes/base16-green-screen-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-harmonic16-dark.yaml b/themes/base16-harmonic16-dark.yaml index deee5c5f..16bb1905 100644 --- a/themes/base16-harmonic16-dark.yaml +++ b/themes/base16-harmonic16-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-harmonic16-light.yaml b/themes/base16-harmonic16-light.yaml index 23848810..20919191 100644 --- a/themes/base16-harmonic16-light.yaml +++ b/themes/base16-harmonic16-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-isotope-dark.yaml b/themes/base16-isotope-dark.yaml index 879b7c50..e1a8e628 100644 --- a/themes/base16-isotope-dark.yaml +++ b/themes/base16-isotope-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-isotope-light.yaml b/themes/base16-isotope-light.yaml index 50992326..df61c22f 100644 --- a/themes/base16-isotope-light.yaml +++ b/themes/base16-isotope-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-marrakesh-dark.yaml b/themes/base16-marrakesh-dark.yaml index b68053cb..677baa15 100644 --- a/themes/base16-marrakesh-dark.yaml +++ b/themes/base16-marrakesh-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-marrakesh-light.yaml b/themes/base16-marrakesh-light.yaml index d8d8ba6f..704f88c1 100644 --- a/themes/base16-marrakesh-light.yaml +++ b/themes/base16-marrakesh-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-mocha-dark.yaml b/themes/base16-mocha-dark.yaml index f6e00b45..7ed47bf0 100644 --- a/themes/base16-mocha-dark.yaml +++ b/themes/base16-mocha-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-mocha-light.yaml b/themes/base16-mocha-light.yaml index 38533a75..c7300560 100644 --- a/themes/base16-mocha-light.yaml +++ b/themes/base16-mocha-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-monokai-dark.yaml b/themes/base16-monokai-dark.yaml index 8dd33aeb..34fd1269 100644 --- a/themes/base16-monokai-dark.yaml +++ b/themes/base16-monokai-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-monokai-light.yaml b/themes/base16-monokai-light.yaml index 80788f21..f967d063 100644 --- a/themes/base16-monokai-light.yaml +++ b/themes/base16-monokai-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-ocean-dark.yaml b/themes/base16-ocean-dark.yaml index fa94b17a..02dd249d 100644 --- a/themes/base16-ocean-dark.yaml +++ b/themes/base16-ocean-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-ocean-light.yaml b/themes/base16-ocean-light.yaml index 386f793e..1bbff8c3 100644 --- a/themes/base16-ocean-light.yaml +++ b/themes/base16-ocean-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-oceanicnext-dark.yaml b/themes/base16-oceanicnext-dark.yaml index fa0d6e50..6bb2cbdb 100644 --- a/themes/base16-oceanicnext-dark.yaml +++ b/themes/base16-oceanicnext-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-oceanicnext-light.yaml b/themes/base16-oceanicnext-light.yaml index 0d2bd070..0c45c2b1 100644 --- a/themes/base16-oceanicnext-light.yaml +++ b/themes/base16-oceanicnext-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-paraiso-dark.yaml b/themes/base16-paraiso-dark.yaml index 843f18f2..99709710 100644 --- a/themes/base16-paraiso-dark.yaml +++ b/themes/base16-paraiso-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-paraiso-light.yaml b/themes/base16-paraiso-light.yaml index a711543c..d295d296 100644 --- a/themes/base16-paraiso-light.yaml +++ b/themes/base16-paraiso-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-pop-dark.yaml b/themes/base16-pop-dark.yaml index 74eefefc..4d04a8ca 100644 --- a/themes/base16-pop-dark.yaml +++ b/themes/base16-pop-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-pop-light.yaml b/themes/base16-pop-light.yaml index 367a07ac..6e7b9589 100644 --- a/themes/base16-pop-light.yaml +++ b/themes/base16-pop-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-railscasts-dark.yaml b/themes/base16-railscasts-dark.yaml index 622cb200..cc0e7c55 100644 --- a/themes/base16-railscasts-dark.yaml +++ b/themes/base16-railscasts-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-railscasts-light.yaml b/themes/base16-railscasts-light.yaml index ad481f55..faee296e 100644 --- a/themes/base16-railscasts-light.yaml +++ b/themes/base16-railscasts-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-shapeshifter-dark.yaml b/themes/base16-shapeshifter-dark.yaml index 7e2ff41b..31bb6358 100644 --- a/themes/base16-shapeshifter-dark.yaml +++ b/themes/base16-shapeshifter-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-shapeshifter-light.yaml b/themes/base16-shapeshifter-light.yaml index 8658690d..587a8a82 100644 --- a/themes/base16-shapeshifter-light.yaml +++ b/themes/base16-shapeshifter-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-solarized-dark.yaml b/themes/base16-solarized-dark.yaml index 7450baaa..db799188 100644 --- a/themes/base16-solarized-dark.yaml +++ b/themes/base16-solarized-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-solarized-light.yaml b/themes/base16-solarized-light.yaml index 41b1d08e..79b7a8be 100644 --- a/themes/base16-solarized-light.yaml +++ b/themes/base16-solarized-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-summerfruit-dark.yaml b/themes/base16-summerfruit-dark.yaml index ebc2ea86..86dcfed1 100644 --- a/themes/base16-summerfruit-dark.yaml +++ b/themes/base16-summerfruit-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-summerfruit-light.yaml b/themes/base16-summerfruit-light.yaml index d02c2540..dbd4cec4 100644 --- a/themes/base16-summerfruit-light.yaml +++ b/themes/base16-summerfruit-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-tomorrow-dark.yaml b/themes/base16-tomorrow-dark.yaml index 1dec8836..ac5cda04 100644 --- a/themes/base16-tomorrow-dark.yaml +++ b/themes/base16-tomorrow-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-tomorrow-light.yaml b/themes/base16-tomorrow-light.yaml index 2629cab8..4bfb6e4a 100644 --- a/themes/base16-tomorrow-light.yaml +++ b/themes/base16-tomorrow-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-twilight-dark.yaml b/themes/base16-twilight-dark.yaml index 07fb1346..43f28c80 100644 --- a/themes/base16-twilight-dark.yaml +++ b/themes/base16-twilight-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-twilight-light.yaml b/themes/base16-twilight-light.yaml index dfa0d9f7..b0c6730b 100644 --- a/themes/base16-twilight-light.yaml +++ b/themes/base16-twilight-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-unikitty-dark.yaml b/themes/base16-unikitty-dark.yaml index fd1db6a7..26c748d9 100644 --- a/themes/base16-unikitty-dark.yaml +++ b/themes/base16-unikitty-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-unikitty-light.yaml b/themes/base16-unikitty-light.yaml index e6ec9c8d..c4dcdde0 100644 --- a/themes/base16-unikitty-light.yaml +++ b/themes/base16-unikitty-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/base16-woodland-dark.yaml b/themes/base16-woodland-dark.yaml index addd419a..37fa7237 100644 --- a/themes/base16-woodland-dark.yaml +++ b/themes/base16-woodland-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrsDC.base16-themes" version: "1.4.5" installs: 159110 + rating: 4.29 + ratings: 7 author: "AndrsDC" repo: "https://github.com/AndrsDC/base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" diff --git a/themes/basic-black.yaml b/themes/basic-black.yaml index 1a4eb622..1ba7ca43 100644 --- a/themes/basic-black.yaml +++ b/themes/basic-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Alencar26.dk-bee" version: "0.0.2" installs: 817 + rating: 0 + ratings: 0 author: "André Alencar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Alencar26.dk-bee" diff --git a/themes/basic-blue.yaml b/themes/basic-blue.yaml index a02efc6b..ba53175a 100644 --- a/themes/basic-blue.yaml +++ b/themes/basic-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guicastro13.onebitcode-theme" version: "0.0.5" installs: 2293 + rating: 5 + ratings: 2 author: "guicastro13" repo: "https://github.com/guicastro13/onebitcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" diff --git a/themes/basterdized.yaml b/themes/basterdized.yaml index 8ec4adac..278280cb 100644 --- a/themes/basterdized.yaml +++ b/themes/basterdized.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nashpatty.basterdized" version: "1.0.0" installs: 115 + rating: 0 + ratings: 0 author: "nashpatty" repo: "https://github.com/nashpatty/vs-code-basterdized" url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.basterdized" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 41 black: 0 diff --git a/themes/bat.yaml b/themes/bat.yaml index e712b205..a0f0ea66 100644 --- a/themes/bat.yaml +++ b/themes/bat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JohannesFreutel.bat" version: "0.0.12" installs: 3384 + rating: 0 + ratings: 0 author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.bat" diff --git a/themes/batcave.yaml b/themes/batcave.yaml new file mode 100644 index 00000000..62bf6c56 --- /dev/null +++ b/themes/batcave.yaml @@ -0,0 +1,52 @@ +name: "Batcave" +source: + marketplace_id: "mertdeveci.batcave-theme" + version: "1.0.2" + installs: 81 + rating: 0 + ratings: 0 + author: "Mert Deveci" + repo: "https://github.com/mertdeveci/batcave-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mertdeveci.batcave-theme" +colors: + bg: "#0A0A0F" + fg: "#C5D0E6" + black: "#1A1A2E" + red: "#FF3333" + green: "#00FF88" + yellow: "#FFB000" + blue: "#00B8D9" + magenta: "#A855F7" + cyan: "#0A8A8A" + white: "#C5D0E6" + brightBlack: "#2D2D44" + brightRed: "#FF6666" + brightGreen: "#66FFAA" + brightYellow: "#FFCC00" + brightBlue: "#00D9FF" + brightMagenta: "#C084FC" + brightCyan: "#00D9D9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 77.6 + black: 0 + red: 39.5 + green: 87.6 + yellow: 68.5 + blue: 55.9 + magenta: 35.3 + cyan: 33.2 + white: 77.6 + brightBlack: 0 + brightRed: 47.8 + brightGreen: 90.4 + brightYellow: 79.4 + brightBlue: 73.1 + brightMagenta: 50.5 + brightCyan: 71 + brightWhite: 107.7 diff --git a/themes/batsignal-light-color-theme.yaml b/themes/batsignal-light-color-theme.yaml index d10d4a00..5433d29b 100644 --- a/themes/batsignal-light-color-theme.yaml +++ b/themes/batsignal-light-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tamagui.batsignal" version: "0.0.9" installs: 2046 + rating: 0 + ratings: 0 author: "tamagui" repo: "https://github.com/natew/batsignal" url: "https://marketplace.visualstudio.com/items?itemName=tamagui.batsignal" diff --git a/themes/battutu.yaml b/themes/battutu.yaml new file mode 100644 index 00000000..e3502833 --- /dev/null +++ b/themes/battutu.yaml @@ -0,0 +1,52 @@ +name: "Battutu" +source: + marketplace_id: "AmiraChaabane.battutu" + version: "0.3.0" + installs: 61 + rating: 0 + ratings: 0 + author: "Amira Chaabane" + repo: "https://github.com/Amira-Chaabne/battutu-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AmiraChaabane.battutu" +colors: + bg: "#0A151D" + fg: "#B8A2C2" + black: "#000000" + red: "#A4161A" + green: "#0DBC79" + yellow: "#F5CC00" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#CD2C30" + brightGreen: "#23D18B" + brightYellow: "#FFE252" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 241 + pair: null + contrast: + fg: 55.2 + black: 0 + red: 16.2 + green: 53.3 + yellow: 77.2 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 26.5 + brightGreen: 63.8 + brightYellow: 88.7 + brightBlue: 40.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/bazmatheme.yaml b/themes/bazmatheme.yaml index ecf58c2f..75073029 100644 --- a/themes/bazmatheme.yaml +++ b/themes/bazmatheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bayupriyambada.bazma-theme" version: "0.0.1" installs: 49 + rating: 0 + ratings: 0 author: "bayu priyambada" repo: null url: "https://marketplace.visualstudio.com/items?itemName=bayupriyambada.bazma-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 39.7 black: 0 diff --git a/themes/bazutya.yaml b/themes/bazutya.yaml index 4b127d95..3399d3f1 100644 --- a/themes/bazutya.yaml +++ b/themes/bazutya.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bazutya.bazutya" version: "0.0.5" installs: 692 + rating: 5 + ratings: 1 author: "Bazutya" repo: "https://github.com/kotuck/bazutya" url: "https://marketplace.visualstudio.com/items?itemName=bazutya.bazutya" diff --git a/themes/bbbalabamasuntan.yaml b/themes/bbbalabamasuntan.yaml index 03258d12..e8002794 100644 --- a/themes/bbbalabamasuntan.yaml +++ b/themes/bbbalabamasuntan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cmjchrisjones1.bbbthemes" version: "0.1.9" installs: 351 + rating: 5 + ratings: 1 author: "cmjchrisjones" repo: "https://github.com/cmjchrisjones/BBBThemes" url: "https://marketplace.visualstudio.com/items?itemName=cmjchrisjones1.bbbthemes" diff --git a/themes/bbbdark.yaml b/themes/bbbdark.yaml index f698bbd0..60125afa 100644 --- a/themes/bbbdark.yaml +++ b/themes/bbbdark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cmjchrisjones1.bbbthemes" version: "0.1.9" installs: 351 + rating: 5 + ratings: 1 author: "cmjchrisjones" repo: "https://github.com/cmjchrisjones/BBBThemes" url: "https://marketplace.visualstudio.com/items?itemName=cmjchrisjones1.bbbthemes" diff --git a/themes/bbbhotdogstand.yaml b/themes/bbbhotdogstand.yaml index dad28d42..32c78f6c 100644 --- a/themes/bbbhotdogstand.yaml +++ b/themes/bbbhotdogstand.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cmjchrisjones1.bbbthemes" version: "0.1.9" installs: 351 + rating: 5 + ratings: 1 author: "cmjchrisjones" repo: "https://github.com/cmjchrisjones/BBBThemes" url: "https://marketplace.visualstudio.com/items?itemName=cmjchrisjones1.bbbthemes" diff --git a/themes/bbogdanov-dark.yaml b/themes/bbogdanov-dark.yaml index c24cc424..10f487ae 100644 --- a/themes/bbogdanov-dark.yaml +++ b/themes/bbogdanov-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BBogdanov.bbogdanov-color-themes" version: "1.0.1" installs: 679 + rating: 0 + ratings: 0 author: "BBogdanov" repo: "https://github.com/bbogdanov/bbogdanov-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=BBogdanov.bbogdanov-color-themes" diff --git a/themes/bbogdanov-light.yaml b/themes/bbogdanov-light.yaml index e14da7dd..2486ad11 100644 --- a/themes/bbogdanov-light.yaml +++ b/themes/bbogdanov-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BBogdanov.bbogdanov-color-themes" version: "1.0.1" installs: 679 + rating: 0 + ratings: 0 author: "BBogdanov" repo: "https://github.com/bbogdanov/bbogdanov-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=BBogdanov.bbogdanov-color-themes" diff --git a/themes/bc-theme.yaml b/themes/bc-theme.yaml index e16ffbc6..a9828c1b 100644 --- a/themes/bc-theme.yaml +++ b/themes/bc-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodeWithMitch.bc-code-theme" version: "0.0.1" installs: 187 + rating: 5 + ratings: 1 author: "CodeWithMitch" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CodeWithMitch.bc-code-theme" diff --git a/themes/beach-vibes.yaml b/themes/beach-vibes.yaml index fd783fc5..3a02e3ca 100644 --- a/themes/beach-vibes.yaml +++ b/themes/beach-vibes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dward1502.beach-vibes" version: "0.0.1" installs: 358 + rating: 0 + ratings: 0 author: "dward1502" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dward1502.beach-vibes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 273 + pair: null contrast: fg: 34.2 black: 0 diff --git a/themes/beacrisg.yaml b/themes/beacrisg.yaml index e83de66e..311d5fe8 100644 --- a/themes/beacrisg.yaml +++ b/themes/beacrisg.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BeatrizGoncalves.bia-goncalves-theme" version: "0.0.5" installs: 36 + rating: 0 + ratings: 0 author: "BeatrizGoncalves" repo: "https://github.com/robianchini/biacrisg-theme" url: "https://marketplace.visualstudio.com/items?itemName=BeatrizGoncalves.bia-goncalves-theme" diff --git a/themes/bearhugs.yaml b/themes/bearhugs.yaml new file mode 100644 index 00000000..211c2d7f --- /dev/null +++ b/themes/bearhugs.yaml @@ -0,0 +1,52 @@ +name: "Bearhugs" +source: + marketplace_id: "NelDev.bearhugs-theme" + version: "0.1.0" + installs: 344 + rating: 0 + ratings: 0 + author: "NelDev" + repo: "https://github.com/NelJulgan/bearhugs" + url: "https://marketplace.visualstudio.com/items?itemName=NelDev.bearhugs-theme" +colors: + bg: "#1F2023" + fg: "#BCB28D" + black: "#2C5A65" + red: "#E03C8A" + green: "#24936E" + yellow: "#E6844F" + blue: "#58B2DC" + magenta: "#E03C8A" + cyan: "#69B0AC" + white: "#EEE8D5" + brightBlack: "#666666" + brightRed: "#E6844F" + brightGreen: "#5C8490" + brightYellow: "#657B83" + brightBlue: "#58B2DC" + brightMagenta: "#646695" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 58.5 + black: 13.6 + red: 33.1 + green: 34.1 + yellow: 47.7 + blue: 53.2 + magenta: 33.1 + cyan: 50.9 + white: 90.8 + brightBlack: 20.9 + brightRed: 47.7 + brightGreen: 31.7 + brightYellow: 28.6 + brightBlue: 53.2 + brightMagenta: 22.6 + brightCyan: 47.8 + brightWhite: 100 diff --git a/themes/becolors.yaml b/themes/becolors.yaml index 8c57f880..7bf8a7d2 100644 --- a/themes/becolors.yaml +++ b/themes/becolors.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "goodhartsmusic.becolour" version: "1.0.1" installs: 17 + rating: 0 + ratings: 0 author: "goodhartsmusic" repo: null url: "https://marketplace.visualstudio.com/items?itemName=goodhartsmusic.becolour" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 0 black: 0 diff --git a/themes/bedarx-obsidian.yaml b/themes/bedarx-obsidian.yaml index 9c684a31..bd90a209 100644 --- a/themes/bedarx-obsidian.yaml +++ b/themes/bedarx-obsidian.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "saqibbedar.bedarx-pro" version: "2.0.0" installs: 137 + rating: 5 + ratings: 1 author: "saqibbedar" repo: "https://github.com/saqibbedar/BedarX-Pro" url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" diff --git a/themes/bedarx-onyx.yaml b/themes/bedarx-onyx.yaml index b564d42a..a2f39598 100644 --- a/themes/bedarx-onyx.yaml +++ b/themes/bedarx-onyx.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "saqibbedar.bedarx-pro" version: "2.0.0" installs: 137 + rating: 5 + ratings: 1 author: "saqibbedar" repo: "https://github.com/saqibbedar/BedarX-Pro" url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" diff --git a/themes/bedarx-pearl.yaml b/themes/bedarx-pearl.yaml index d3616bb3..42b47cc8 100644 --- a/themes/bedarx-pearl.yaml +++ b/themes/bedarx-pearl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "saqibbedar.bedarx-pro" version: "2.0.0" installs: 137 + rating: 5 + ratings: 1 author: "saqibbedar" repo: "https://github.com/saqibbedar/BedarX-Pro" url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" diff --git a/themes/bedarx-sapphire.yaml b/themes/bedarx-sapphire.yaml index 06e46561..7d82bc03 100644 --- a/themes/bedarx-sapphire.yaml +++ b/themes/bedarx-sapphire.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "saqibbedar.bedarx-pro" version: "2.0.0" installs: 137 + rating: 5 + ratings: 1 author: "saqibbedar" repo: "https://github.com/saqibbedar/BedarX-Pro" url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" diff --git a/themes/bee-theme-color-theme-tow.yaml b/themes/bee-theme-color-theme-tow.yaml index 810c722a..5dbac8d6 100644 --- a/themes/bee-theme-color-theme-tow.yaml +++ b/themes/bee-theme-color-theme-tow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "eulukasthyago.bee-theme" version: "2.0.0" installs: 1470 + rating: 5 + ratings: 2 author: "Lucas Tiago" repo: "https://github.com/webcolmeia/bee-theme" url: "https://marketplace.visualstudio.com/items?itemName=eulukasthyago.bee-theme" diff --git a/themes/bee-theme.yaml b/themes/bee-theme.yaml index a9fc594f..1ac81a91 100644 --- a/themes/bee-theme.yaml +++ b/themes/bee-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "eulukasthyago.bee-theme" version: "2.0.0" installs: 1470 + rating: 5 + ratings: 2 author: "Lucas Tiago" repo: "https://github.com/webcolmeia/bee-theme" url: "https://marketplace.visualstudio.com/items?itemName=eulukasthyago.bee-theme" diff --git a/themes/beerish.yaml b/themes/beerish.yaml index 3a50b51d..5565e2d5 100644 --- a/themes/beerish.yaml +++ b/themes/beerish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sjsepan.sjsepan-beerish" version: "0.0.1" installs: 36 + rating: 0 + ratings: 0 author: "sjsepan" repo: "https://gitlab.com/sjsepan/sjsepan-beerish" url: "https://marketplace.visualstudio.com/items?itemName=sjsepan.sjsepan-beerish" diff --git a/themes/beesystemtheme.yaml b/themes/beesystemtheme.yaml new file mode 100644 index 00000000..85acd568 --- /dev/null +++ b/themes/beesystemtheme.yaml @@ -0,0 +1,52 @@ +name: "BeeSystemTheme" +source: + marketplace_id: "WeenXTheme.beesystemtheme" + version: "0.0.5" + installs: 60 + rating: 5 + ratings: 1 + author: "WeenXTheme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=WeenXTheme.beesystemtheme" +colors: + bg: "#282D3C" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + pair: null + contrast: + fg: 103.4 + black: 0 + red: 23.2 + green: 49.5 + yellow: 82.1 + blue: 23.9 + magenta: 26.2 + cyan: 44 + white: 86.5 + brightBlack: 18.5 + brightRed: 35 + brightGreen: 60 + brightYellow: 92.1 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.5 diff --git a/themes/beginner-theme.yaml b/themes/beginner-theme.yaml new file mode 100644 index 00000000..df6ca548 --- /dev/null +++ b/themes/beginner-theme.yaml @@ -0,0 +1,52 @@ +name: "Beginner Theme" +source: + marketplace_id: "eternalbeginner.beginner-theme" + version: "1.0.0" + installs: 277 + rating: 5 + ratings: 1 + author: "eternalbeginner" + repo: "https://github.com/eternalbeginner/theme-beginner-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eternalbeginner.beginner-theme" +colors: + bg: "#1A0038" + fg: "#CFCFCF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 298 + pair: null + contrast: + fg: 76.6 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/behavai-vitesse.yaml b/themes/behavai-vitesse.yaml index cb061803..3085dcca 100644 --- a/themes/behavai-vitesse.yaml +++ b/themes/behavai-vitesse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "4536251.behavai" version: "0.1.0" installs: 109 + rating: 5 + ratings: 1 author: "Voar" repo: "https://github.com/EnchantedJoy/Behavai" url: "https://marketplace.visualstudio.com/items?itemName=4536251.behavai" diff --git a/themes/behavai.yaml b/themes/behavai.yaml index 849961be..fa391d23 100644 --- a/themes/behavai.yaml +++ b/themes/behavai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "4536251.behavai" version: "0.1.0" installs: 109 + rating: 5 + ratings: 1 author: "Voar" repo: "https://github.com/EnchantedJoy/Behavai" url: "https://marketplace.visualstudio.com/items?itemName=4536251.behavai" diff --git a/themes/belch-fork.yaml b/themes/belch-fork.yaml new file mode 100644 index 00000000..570c5f9e --- /dev/null +++ b/themes/belch-fork.yaml @@ -0,0 +1,52 @@ +name: "BELCH - Fork" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29917 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" +colors: + bg: "#1D0038" + fg: "#D4D4D4" + black: "#9A00E0" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: 301 + pair: null + contrast: + fg: 79.5 + black: 22.9 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 106.9 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/bellair.yaml b/themes/bellair.yaml new file mode 100644 index 00000000..28570eba --- /dev/null +++ b/themes/bellair.yaml @@ -0,0 +1,52 @@ +name: "Bellair" +source: + marketplace_id: "codyloyd.bellair-theme" + version: "0.12.0" + installs: 189 + rating: 5 + ratings: 1 + author: "Cody Loyd" + repo: "https://github.com/codyloyd/bellair-theme" + url: "https://marketplace.visualstudio.com/items?itemName=codyloyd.bellair-theme" +colors: + bg: "#0E0F18" + fg: "#DEE6EE" + black: "#000000" + red: "#FF5370" + green: "#5ADF86" + yellow: "#FCBC5B" + blue: "#3D87FF" + magenta: "#FB94FF" + cyan: "#89DDFF" + white: "#DEE6EE" + brightBlack: "#0050A4" + brightRed: "#FF5370" + brightGreen: "#5ADF86" + brightYellow: "#FCBC5B" + brightBlue: "#3D87FF" + brightMagenta: "#FB94FF" + brightCyan: "#89DDFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "red" + hue: 279 + pair: null + contrast: + fg: 90.6 + black: 0 + red: 44.2 + green: 72.3 + yellow: 72.8 + blue: 39.8 + magenta: 64.9 + cyan: 78.8 + white: 90.6 + brightBlack: 15.2 + brightRed: 44.2 + brightGreen: 72.3 + brightYellow: 72.8 + brightBlue: 39.8 + brightMagenta: 64.9 + brightCyan: 78.8 + brightWhite: 0 diff --git a/themes/beloco.yaml b/themes/beloco.yaml new file mode 100644 index 00000000..3fb04c58 --- /dev/null +++ b/themes/beloco.yaml @@ -0,0 +1,52 @@ +name: "Beloco" +source: + marketplace_id: "needcoder.theme-beloco-dark" + version: "1.0.1" + installs: 164 + rating: 5 + ratings: 1 + author: "needcoder" + repo: "https://github.com/needcoder/beloco" + url: "https://marketplace.visualstudio.com/items?itemName=needcoder.theme-beloco-dark" +colors: + bg: "#282C34" + fg: "#A6B6B4" + black: "#42444D" + red: "#FC2E51" + green: "#25A45C" + yellow: "#FF9369" + blue: "#3375FE" + magenta: "#9F7EFE" + cyan: "#4483AA" + white: "#CDD3E0" + brightBlack: "#8F9AAE" + brightRed: "#FF637F" + brightGreen: "#3FC56A" + brightYellow: "#F9C858" + brightBlue: "#10B0FE" + brightMagenta: "#FF78F8" + brightCyan: "#5FB9BC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 56.8 + black: 0 + red: 34.6 + green: 38.7 + yellow: 55.5 + blue: 29.9 + magenta: 40.5 + cyan: 29.2 + white: 75.5 + brightBlack: 43.2 + brightRed: 43.7 + brightGreen: 54.4 + brightYellow: 73.2 + brightBlue: 50.8 + brightMagenta: 54 + brightCyan: 52.8 + brightWhite: 103.7 diff --git a/themes/benpai-theme-dark.yaml b/themes/benpai-theme-dark.yaml index 948b4309..b38823be 100644 --- a/themes/benpai-theme-dark.yaml +++ b/themes/benpai-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "theRealBenpai.benpai-theme" version: "1.1.0" installs: 89 + rating: 0 + ratings: 0 author: "Sparty182020" repo: null url: "https://marketplace.visualstudio.com/items?itemName=theRealBenpai.benpai-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 107.1 black: 0 diff --git a/themes/benty-dark.yaml b/themes/benty-dark.yaml new file mode 100644 index 00000000..0dd60e11 --- /dev/null +++ b/themes/benty-dark.yaml @@ -0,0 +1,52 @@ +name: "Benty Dark" +source: + marketplace_id: "Benty.benty-vscode" + version: "1.0.5" + installs: 104 + rating: 0 + ratings: 0 + author: "Benty" + repo: "https://github.com/Benty/benty-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Benty.benty-vscode" +colors: + bg: "#0C1A23" + fg: "#FFFFFF" + black: "#000D16" + red: "#EBFF00" + green: "#0093FE" + yellow: "#FFDD00" + blue: "#0BD69F" + magenta: "#C678DD" + cyan: "#80FF82" + white: "#FFFFFF" + brightBlack: "#818891" + brightRed: "#EBFF00" + brightGreen: "#0093FE" + brightYellow: "#FFDD00" + brightBlue: "#0BD69F" + brightMagenta: "#C678DD" + brightCyan: "#80FF82" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 238 + pair: null + contrast: + fg: 106.7 + black: 0 + red: 98.7 + green: 42.4 + yellow: 85.7 + blue: 66.2 + magenta: 44.9 + cyan: 89.6 + white: 106.7 + brightBlack: 37 + brightRed: 98.7 + brightGreen: 42.4 + brightYellow: 85.7 + brightBlue: 66.2 + brightMagenta: 44.9 + brightCyan: 89.6 + brightWhite: 106.7 diff --git a/themes/benty.yaml b/themes/benty.yaml new file mode 100644 index 00000000..782300b1 --- /dev/null +++ b/themes/benty.yaml @@ -0,0 +1,52 @@ +name: "Benty" +source: + marketplace_id: "Benty.benty-vscode" + version: "1.0.5" + installs: 104 + rating: 0 + ratings: 0 + author: "Benty" + repo: "https://github.com/Benty/benty-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Benty.benty-vscode" +colors: + bg: "#21374A" + fg: "#FFFFFF" + black: "#1A2B3C" + red: "#EBFF00" + green: "#0093FE" + yellow: "#FFDD00" + blue: "#0BD69F" + magenta: "#C678DD" + cyan: "#80FF82" + white: "#FFFFFF" + brightBlack: "#818891" + brightRed: "#EBFF00" + brightGreen: "#0093FE" + brightYellow: "#FFDD00" + brightBlue: "#0BD69F" + brightMagenta: "#C678DD" + brightCyan: "#80FF82" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 246 + pair: null + contrast: + fg: 101.4 + black: 0 + red: 93.5 + green: 37.1 + yellow: 80.4 + blue: 60.9 + magenta: 39.7 + cyan: 84.4 + white: 101.4 + brightBlack: 31.8 + brightRed: 93.5 + brightGreen: 37.1 + brightYellow: 80.4 + brightBlue: 60.9 + brightMagenta: 39.7 + brightCyan: 84.4 + brightWhite: 101.4 diff --git a/themes/berkeley.yaml b/themes/berkeley.yaml index 7b582c0c..08a20392 100644 --- a/themes/berkeley.yaml +++ b/themes/berkeley.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ocat.berkeley-theme" version: "1.0.6" installs: 322 + rating: 5 + ratings: 1 author: "ocat" repo: "https://github.com/Coordinate-Cat/berkeley-theme" url: "https://marketplace.visualstudio.com/items?itemName=ocat.berkeley-theme" diff --git a/themes/bernadoque-theme.yaml b/themes/bernadoque-theme.yaml index 9c311980..a0c1d897 100644 --- a/themes/bernadoque-theme.yaml +++ b/themes/bernadoque-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WesleyBernadoque.bernadoque-theme" version: "0.0.8" installs: 48 + rating: 5 + ratings: 1 author: "Wesley Bernadoque" repo: "https://github.com/WesleyBernadoque/bernadoque-theme" url: "https://marketplace.visualstudio.com/items?itemName=WesleyBernadoque.bernadoque-theme" diff --git a/themes/berry-blast-theme.yaml b/themes/berry-blast-theme.yaml index 9b666fba..dc7a501b 100644 --- a/themes/berry-blast-theme.yaml +++ b/themes/berry-blast-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevangTomar.vscode-diverse-dye" version: "1.3.0" installs: 2595 + rating: 5 + ratings: 3 author: "Devang Tomar ⭐" repo: "https://github.com/devangtomar/vscode-diverse-dye" url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" diff --git a/themes/berry-latte-light.yaml b/themes/berry-latte-light.yaml index fd36b64a..d8d31be1 100644 --- a/themes/berry-latte-light.yaml +++ b/themes/berry-latte-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "goncin.berry-latte-light-theme" version: "1.3.0" installs: 2486 + rating: 5 + ratings: 4 author: "Fausto Cintra" repo: "https://github.com/faustocintra/vscode-berry-latte-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=goncin.berry-latte-light-theme" diff --git a/themes/bersk.yaml b/themes/bersk.yaml index 9b75575c..bcdfcee3 100644 --- a/themes/bersk.yaml +++ b/themes/bersk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Bersk.bersk" version: "1.5.0" installs: 1545 + rating: 5 + ratings: 2 author: "Bersk Dark Theme for VS Code" repo: "https://github.com/gbaierski/bersk-theme" url: "https://marketplace.visualstudio.com/items?itemName=Bersk.bersk" diff --git a/themes/bertax.yaml b/themes/bertax.yaml new file mode 100644 index 00000000..301f4b74 --- /dev/null +++ b/themes/bertax.yaml @@ -0,0 +1,52 @@ +name: "bertax" +source: + marketplace_id: "MelihOzdemir.jatgozic" + version: "0.0.3" + installs: 69 + rating: 0 + ratings: 0 + author: "Melih Ozdemir" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MelihOzdemir.jatgozic" +colors: + bg: "#1E1C28" + fg: "#0CFBCE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 292 + pair: null + contrast: + fg: 86 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.7 + magenta: 29 + cyan: 46.8 + white: 89.2 + brightBlack: 21.3 + brightRed: 37.8 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/bertdark.yaml b/themes/bertdark.yaml new file mode 100644 index 00000000..6140cd1e --- /dev/null +++ b/themes/bertdark.yaml @@ -0,0 +1,52 @@ +name: "BertDark" +source: + marketplace_id: "yupanqui.bertdark" + version: "0.0.1" + installs: 88 + rating: 0 + ratings: 0 + author: "yupanqui" + repo: "https://github.com/Hyupanqui/BertDark" + url: "https://marketplace.visualstudio.com/items?itemName=yupanqui.bertdark" +colors: + bg: "#263238" + fg: "#F1FFEE" + black: "#171B24" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#FFD173" + brightBlue: "#73D0FF" + brightMagenta: "#DFBFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 230 + pair: null + contrast: + fg: 100 + black: 0 + red: 46.2 + green: 66.6 + yellow: 74.4 + blue: 63.8 + magenta: 67.4 + cyan: 73.7 + white: 67.5 + brightBlack: 18.7 + brightRed: 48.7 + brightGreen: 93 + brightYellow: 77.4 + brightBlue: 66.7 + brightMagenta: 70.3 + brightCyan: 76.7 + brightWhite: 102.7 diff --git a/themes/beru.yaml b/themes/beru.yaml index 400eb131..b17d6a35 100644 --- a/themes/beru.yaml +++ b/themes/beru.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FullDev.beru-theme" version: "1.0.3" installs: 239 + rating: 5 + ratings: 3 author: "FullDev" repo: "https://github.com/getBeru/beru-theme" url: "https://marketplace.visualstudio.com/items?itemName=FullDev.beru-theme" diff --git a/themes/best-themes-one-monokai.yaml b/themes/best-themes-one-monokai.yaml index 55d03f96..1a738b03 100644 --- a/themes/best-themes-one-monokai.yaml +++ b/themes/best-themes-one-monokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EstevamSouza.the-best-themes-for-programmers" version: "1.1.0" installs: 4137 + rating: 0 + ratings: 0 author: "Estevam Souza" repo: "https://github.com/estevam5s/extensions" url: "https://marketplace.visualstudio.com/items?itemName=EstevamSouza.the-best-themes-for-programmers" diff --git a/themes/better-coding-dark.yaml b/themes/better-coding-dark.yaml index e447dbfb..17520dfe 100644 --- a/themes/better-coding-dark.yaml +++ b/themes/better-coding-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nicovy.better-coding-theme" version: "2.44.0" installs: 538 + rating: 5 + ratings: 1 author: "Nicolas V." repo: "https://github.com/nicovy/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=nicovy.better-coding-theme" diff --git a/themes/better-light.yaml b/themes/better-light.yaml index 0431abe8..8a1513fa 100644 --- a/themes/better-light.yaml +++ b/themes/better-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ShizamDaGeek.better-light" version: "0.0.6" installs: 43 + rating: 0 + ratings: 0 author: "ShizamDa_Geek" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ShizamDaGeek.better-light" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: 267 + pair: null contrast: fg: 89.4 black: 47.4 diff --git a/themes/better-selenized-dark.yaml b/themes/better-selenized-dark.yaml index bc012b1f..a3755098 100644 --- a/themes/better-selenized-dark.yaml +++ b/themes/better-selenized-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "joelsantos.darkerized-better-solarized-dark-theme" version: "0.10.11" installs: 566 + rating: 0 + ratings: 0 author: "joelsantos" repo: "https://github.com/joelsantosjunior/vscode-better-solarized" url: "https://marketplace.visualstudio.com/items?itemName=joelsantos.darkerized-better-solarized-dark-theme" diff --git a/themes/better-solarized-dark-italic.yaml b/themes/better-solarized-dark-italic.yaml index f6a49055..e4698f23 100644 --- a/themes/better-solarized-dark-italic.yaml +++ b/themes/better-solarized-dark-italic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "joelsantos.darkerized-better-solarized-dark-theme" version: "0.10.11" installs: 566 + rating: 0 + ratings: 0 author: "joelsantos" repo: "https://github.com/joelsantosjunior/vscode-better-solarized" url: "https://marketplace.visualstudio.com/items?itemName=joelsantos.darkerized-better-solarized-dark-theme" diff --git a/themes/better-solarized-dark.yaml b/themes/better-solarized-dark.yaml index 1180ebc1..69bd7fa5 100644 --- a/themes/better-solarized-dark.yaml +++ b/themes/better-solarized-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "joelsantos.darkerized-better-solarized-dark-theme" version: "0.10.11" installs: 566 + rating: 0 + ratings: 0 author: "joelsantos" repo: "https://github.com/joelsantosjunior/vscode-better-solarized" url: "https://marketplace.visualstudio.com/items?itemName=joelsantos.darkerized-better-solarized-dark-theme" diff --git a/themes/betu-dark.yaml b/themes/betu-dark.yaml index a925a014..c3ca0f6e 100644 --- a/themes/betu-dark.yaml +++ b/themes/betu-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Betu55.betu-dark-theme" version: "1.6.1" installs: 142 + rating: 0 + ratings: 0 author: "Betu55" repo: "https://github.com/betu55/Betu-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Betu55.betu-dark-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 64.2 black: 0 diff --git a/themes/betu-light.yaml b/themes/betu-light.yaml index a744f51c..843d81f5 100644 --- a/themes/betu-light.yaml +++ b/themes/betu-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Betu55.betu-light-theme" version: "1.2.0" installs: 168 + rating: 0 + ratings: 0 author: "Betu55" repo: "https://github.com/betu55/Betu-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=Betu55.betu-light-theme" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 71.1 black: 92.4 diff --git a/themes/betweentts.yaml b/themes/betweentts.yaml new file mode 100644 index 00000000..15fb7010 --- /dev/null +++ b/themes/betweentts.yaml @@ -0,0 +1,52 @@ +name: "betweenTTs" +source: + marketplace_id: "betweenTTs.betweentts" + version: "0.0.1" + installs: 76 + rating: 0 + ratings: 0 + author: "betweenTTs" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=betweenTTs.betweentts" +colors: + bg: "#242C34" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 248 + pair: null + contrast: + fg: 76.4 + black: 0 + red: 23.7 + green: 49.9 + yellow: 82.6 + blue: 24.4 + magenta: 26.7 + cyan: 44.5 + white: 87 + brightBlack: 19 + brightRed: 35.5 + brightGreen: 60.5 + brightYellow: 92.6 + brightBlue: 36.9 + brightMagenta: 42.3 + brightCyan: 52.3 + brightWhite: 87 diff --git a/themes/bhwm715-even-darker.yaml b/themes/bhwm715-even-darker.yaml index 04504ef6..30f24788 100644 --- a/themes/bhwm715-even-darker.yaml +++ b/themes/bhwm715-even-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brian-local.b715xyz" version: "0.1.0" installs: 51 + rating: 0 + ratings: 0 author: "brian-local" repo: "https://github.com/brian715/b715xyz" url: "https://marketplace.visualstudio.com/items?itemName=brian-local.b715xyz" diff --git a/themes/bianconero.yaml b/themes/bianconero.yaml index 0c229238..3982048b 100644 --- a/themes/bianconero.yaml +++ b/themes/bianconero.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "spaceinvadev.bianconero" version: "0.2.1" installs: 1474 + rating: 0 + ratings: 0 author: "Mauro Paternina" repo: "https://github.com/spaceinvadev/bianconero" url: "https://marketplace.visualstudio.com/items?itemName=spaceinvadev.bianconero" diff --git a/themes/biddeew.yaml b/themes/biddeew.yaml index 9f613633..bfb32c38 100644 --- a/themes/biddeew.yaml +++ b/themes/biddeew.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daoodaba975.taaru" version: "3.0.0" installs: 1693 + rating: 5 + ratings: 3 author: "Daooda" repo: "https://github.com/daoodaba975/taaru" url: "https://marketplace.visualstudio.com/items?itemName=daoodaba975.taaru" diff --git a/themes/bifr-st.yaml b/themes/bifr-st.yaml index 81037ab5..1ebb8c19 100644 --- a/themes/bifr-st.yaml +++ b/themes/bifr-st.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheCodeTherapy.bitfrost-code-theme" version: "1.0.2" installs: 58 + rating: 0 + ratings: 0 author: "TheCodeTherapy" repo: "https://github.com/TheCodeTherapy/bifrost" url: "https://marketplace.visualstudio.com/items?itemName=TheCodeTherapy.bitfrost-code-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 281 + pair: null contrast: fg: 58.8 black: 8.3 diff --git a/themes/bigsur-gtk-theme-dark-blue.yaml b/themes/bigsur-gtk-theme-dark-blue.yaml index 48cc24ce..19320e7c 100644 --- a/themes/bigsur-gtk-theme-dark-blue.yaml +++ b/themes/bigsur-gtk-theme-dark-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zeriax.bigsurgtk-blue" version: "0.0.2" installs: 1249 + rating: 0 + ratings: 0 author: "zeriax" repo: "https://github.com/zeriaxdev/bigsurgtk-blue" url: "https://marketplace.visualstudio.com/items?itemName=zeriax.bigsurgtk-blue" diff --git a/themes/bini-theme.yaml b/themes/bini-theme.yaml index bb2a0183..243a5a63 100644 --- a/themes/bini-theme.yaml +++ b/themes/bini-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "warengonzaga.bini-theme" version: "0.0.4" installs: 595 + rating: 5 + ratings: 1 author: "Waren Gonzaga" repo: "https://github.com/warengonzaga/bini-theme" url: "https://marketplace.visualstudio.com/items?itemName=warengonzaga.bini-theme" diff --git a/themes/bird.yaml b/themes/bird.yaml index ccb82ebf..8796a255 100644 --- a/themes/bird.yaml +++ b/themes/bird.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "indigo.warm" version: "1.0.1" installs: 2593 + rating: 4 + ratings: 1 author: "indigo" repo: "https://github.com/gabriela-tomazzi/warm-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=indigo.warm" diff --git a/themes/bit-intense.yaml b/themes/bit-intense.yaml index 62dbd181..fdaca17c 100644 --- a/themes/bit-intense.yaml +++ b/themes/bit-intense.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bit-theme.bit-theme" version: "1.0.4" installs: 1062 + rating: 5 + ratings: 1 author: "Bit Theme" repo: "https://github.com/bit-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=bit-theme.bit-theme" diff --git a/themes/bit-soft.yaml b/themes/bit-soft.yaml index ee449c16..55f17d62 100644 --- a/themes/bit-soft.yaml +++ b/themes/bit-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bit-theme.bit-theme" version: "1.0.4" installs: 1062 + rating: 5 + ratings: 1 author: "Bit Theme" repo: "https://github.com/bit-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=bit-theme.bit-theme" diff --git a/themes/bit.yaml b/themes/bit.yaml index c7e95432..65ab924b 100644 --- a/themes/bit.yaml +++ b/themes/bit.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bit-theme.bit-theme" version: "1.0.4" installs: 1062 + rating: 5 + ratings: 1 author: "Bit Theme" repo: "https://github.com/bit-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=bit-theme.bit-theme" diff --git a/themes/bitpurp-dark.yaml b/themes/bitpurp-dark.yaml index d12976d2..d68898d5 100644 --- a/themes/bitpurp-dark.yaml +++ b/themes/bitpurp-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bit3301.bitpurp" version: "0.1.0" installs: 15 + rating: 0 + ratings: 0 author: "bit3301" repo: "https://github.com/bit3301/bitpurp" url: "https://marketplace.visualstudio.com/items?itemName=bit3301.bitpurp" diff --git a/themes/bits-theme-green-light.yaml b/themes/bits-theme-green-light.yaml index 0dcce957..88f278da 100644 --- a/themes/bits-theme-green-light.yaml +++ b/themes/bits-theme-green-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Joabits.bits-dark-theme" version: "0.0.15" installs: 85 + rating: 0 + ratings: 0 author: "Joabits" repo: "https://github.com/Joabits/bits-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" diff --git a/themes/bits-theme-green.yaml b/themes/bits-theme-green.yaml index f8e842ec..36cfaf3d 100644 --- a/themes/bits-theme-green.yaml +++ b/themes/bits-theme-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Joabits.bits-dark-theme" version: "0.0.15" installs: 85 + rating: 0 + ratings: 0 author: "Joabits" repo: "https://github.com/Joabits/bits-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" diff --git a/themes/bits-theme-light.yaml b/themes/bits-theme-light.yaml index 36678aa9..2654202a 100644 --- a/themes/bits-theme-light.yaml +++ b/themes/bits-theme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Joabits.bits-dark-theme" version: "0.0.15" installs: 85 + rating: 0 + ratings: 0 author: "Joabits" repo: "https://github.com/Joabits/bits-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" diff --git a/themes/bits-theme-purple-light.yaml b/themes/bits-theme-purple-light.yaml index e56f1ba3..ad698c8c 100644 --- a/themes/bits-theme-purple-light.yaml +++ b/themes/bits-theme-purple-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Joabits.bits-dark-theme" version: "0.0.15" installs: 85 + rating: 0 + ratings: 0 author: "Joabits" repo: "https://github.com/Joabits/bits-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" diff --git a/themes/bits-theme-purple.yaml b/themes/bits-theme-purple.yaml index a3d24134..07bba8d8 100644 --- a/themes/bits-theme-purple.yaml +++ b/themes/bits-theme-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Joabits.bits-dark-theme" version: "0.0.15" installs: 85 + rating: 0 + ratings: 0 author: "Joabits" repo: "https://github.com/Joabits/bits-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" diff --git a/themes/bits-theme.yaml b/themes/bits-theme.yaml index 8a119d8d..64405013 100644 --- a/themes/bits-theme.yaml +++ b/themes/bits-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Joabits.bits-dark-theme" version: "0.0.15" installs: 85 + rating: 0 + ratings: 0 author: "Joabits" repo: "https://github.com/Joabits/bits-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" diff --git a/themes/bl-nk.yaml b/themes/bl-nk.yaml index 3859d2b2..fc83106e 100644 --- a/themes/bl-nk.yaml +++ b/themes/bl-nk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "the-unknown.blink" version: "0.0.1" installs: 697 + rating: 0 + ratings: 0 author: "the-unknown" repo: "https://github.com/the-unknown/blink-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=the-unknown.blink" diff --git a/themes/black-and-red.yaml b/themes/black-and-red.yaml index 1590bd3f..8e96bf98 100644 --- a/themes/black-and-red.yaml +++ b/themes/black-and-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PRUFT.theme-black" version: "1.1.0" installs: 10 + rating: 0 + ratings: 0 author: "PRUFT" repo: "https://github.com/microsoft/vscode" url: "https://marketplace.visualstudio.com/items?itemName=PRUFT.theme-black" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.9 black: 0 diff --git a/themes/black-and-white-tv.yaml b/themes/black-and-white-tv.yaml new file mode 100644 index 00000000..dbc0fcac --- /dev/null +++ b/themes/black-and-white-tv.yaml @@ -0,0 +1,52 @@ +name: "Black and White TV" +source: + marketplace_id: "moondevaa.BlackandWhiteTV" + version: "0.1.1" + installs: 2956 + rating: 0 + ratings: 0 + author: "moondevaa" + repo: "https://github.com/AaBbdev29/Black-and-White-TV" + url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.BlackandWhiteTV" +colors: + bg: "#0A0A0A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.3 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/black-back-dark-e-theme.yaml b/themes/black-back-dark-e-theme.yaml index 15bdbabc..e5966629 100644 --- a/themes/black-back-dark-e-theme.yaml +++ b/themes/black-back-dark-e-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Eray.black-back-dark-e-theme" version: "0.0.1" installs: 872 + rating: 0 + ratings: 0 author: "Eray" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Eray.black-back-dark-e-theme" diff --git a/themes/black-beauty.yaml b/themes/black-beauty.yaml new file mode 100644 index 00000000..30551f43 --- /dev/null +++ b/themes/black-beauty.yaml @@ -0,0 +1,52 @@ +name: "Black Beauty" +source: + marketplace_id: "Mandy.black-beauty" + version: "0.0.5" + installs: 5691 + rating: 5 + ratings: 1 + author: "Mandy" + repo: "https://github.com/MandipShah" + url: "https://marketplace.visualstudio.com/items?itemName=Mandy.black-beauty" +colors: + bg: "#0C0A20" + fg: "#F2F3F7" + black: "#283034" + red: "#FF2E97" + green: "#62A9CF" + yellow: "#FFD400" + blue: "#42C6FF" + magenta: "#FF2AFC" + cyan: "#42C6FF" + white: "#D9E0E9" + brightBlack: "#435056" + brightRed: "#FF2E97" + brightGreen: "#ADD0E5" + brightYellow: "#FFD400" + brightBlue: "#42C6FF" + brightMagenta: "#FF2AFC" + brightCyan: "#42C6FF" + brightWhite: "#F4F6F9" +meta: + mode: "dark" + accent: "pink" + hue: 284 + pair: null + contrast: + fg: 99.7 + black: 0 + red: 41.2 + green: 51.1 + yellow: 82.6 + blue: 65 + magenta: 46.7 + cyan: 65 + white: 87.1 + brightBlack: 13.1 + brightRed: 41.2 + brightGreen: 74.7 + brightYellow: 82.6 + brightBlue: 65 + brightMagenta: 46.7 + brightCyan: 65 + brightWhite: 101.5 diff --git a/themes/black-color-theme.yaml b/themes/black-color-theme.yaml index 2bfaea7e..ebfe856a 100644 --- a/themes/black-color-theme.yaml +++ b/themes/black-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ctf0.seti-ux" version: "0.1.7" installs: 1554 + rating: 5 + ratings: 1 author: "ctf0" repo: "https://github.com/ctf0/Seti_UX-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ctf0.seti-ux" diff --git a/themes/black-ocean.yaml b/themes/black-ocean.yaml index 0a7d7d44..5ffb279d 100644 --- a/themes/black-ocean.yaml +++ b/themes/black-ocean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zamerick.black-ocean" version: "1.1.3" installs: 87742 + rating: 5 + ratings: 12 author: "zamerick" repo: "https://github.com/Zamerick/black-ocean" url: "https://marketplace.visualstudio.com/items?itemName=zamerick.black-ocean" diff --git a/themes/black-on-gray.yaml b/themes/black-on-gray.yaml index c9622971..8129ace6 100644 --- a/themes/black-on-gray.yaml +++ b/themes/black-on-gray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KramLololo.black-on-gray" version: "1.0.3" installs: 429 + rating: 0 + ratings: 0 author: "Kram Lololo" repo: "https://github.com/KramLololo/theme-black-on-gray" url: "https://marketplace.visualstudio.com/items?itemName=KramLololo.black-on-gray" diff --git a/themes/black-panther-theme.yaml b/themes/black-panther-theme.yaml new file mode 100644 index 00000000..72b1674a --- /dev/null +++ b/themes/black-panther-theme.yaml @@ -0,0 +1,52 @@ +name: "Black panther theme" +source: + marketplace_id: "Shriprasanna.blue-dark-theme" + version: "1.2.4" + installs: 757 + rating: 4 + ratings: 1 + author: "Shriprasanna" + repo: "https://github.com/shrix1/shri-blue-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Shriprasanna.blue-dark-theme" +colors: + bg: "#0A0A0A" + fg: "#FFFFFF" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.7 + black: 7.3 + red: 39.5 + green: 87 + yellow: 92.2 + blue: 38.3 + magenta: 46.1 + cyan: 77 + white: 52.3 + brightBlack: 22.9 + brightRed: 48 + brightGreen: 93.4 + brightYellow: 80.3 + brightBlue: 72.4 + brightMagenta: 67.7 + brightCyan: 90.5 + brightWhite: 73.7 diff --git a/themes/black-pink-rose.yaml b/themes/black-pink-rose.yaml index 578ac611..72294a24 100644 --- a/themes/black-pink-rose.yaml +++ b/themes/black-pink-rose.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "abenavidesh.theme-blackpink" version: "0.0.5" installs: 3278 + rating: 0 + ratings: 0 author: "abenavidesh" repo: "https://github.com/abenavidesh/vs-blackpink-theme" url: "https://marketplace.visualstudio.com/items?itemName=abenavidesh.theme-blackpink" diff --git a/themes/black-punk-77.yaml b/themes/black-punk-77.yaml index dba3afde..5c69a028 100644 --- a/themes/black-punk-77.yaml +++ b/themes/black-punk-77.yaml @@ -2,7 +2,9 @@ name: "Black punk 77" source: marketplace_id: "PlutonicVoid.black-punk-77" version: "1.0.1" - installs: 115 + installs: 116 + rating: 0 + ratings: 0 author: "PlutonicVoid" repo: "https://gitlab.com/peter_thesequel/black-punk-77" url: "https://marketplace.visualstudio.com/items?itemName=PlutonicVoid.black-punk-77" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 68.8 black: 0 diff --git a/themes/black-rose.yaml b/themes/black-rose.yaml index 6516ac2f..c083cb91 100644 --- a/themes/black-rose.yaml +++ b/themes/black-rose.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Dananjaya.black-rose" version: "0.3.0" installs: 1725 + rating: 4 + ratings: 1 author: "Dananjaya" repo: "https://github.com/dananjaya6005/Black_rose-theme" url: "https://marketplace.visualstudio.com/items?itemName=Dananjaya.black-rose" diff --git a/themes/black-theme.yaml b/themes/black-theme.yaml index eef6cc1d..1ab42f4b 100644 --- a/themes/black-theme.yaml +++ b/themes/black-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PriyankarPal.darkthemeforvscode" version: "2.13.0" installs: 767 + rating: 5 + ratings: 1 author: "Priyankar Pal" repo: "https://github.com/priyankarpal/DarkThemeVsCode" url: "https://marketplace.visualstudio.com/items?itemName=PriyankarPal.darkthemeforvscode" diff --git a/themes/black-velvet-luxe.yaml b/themes/black-velvet-luxe.yaml new file mode 100644 index 00000000..773a49dc --- /dev/null +++ b/themes/black-velvet-luxe.yaml @@ -0,0 +1,52 @@ +name: "Black-Velvet-Luxe" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#1E1916" + fg: "#F5F5F5" + black: "#1E1916" + red: "#F14444" + green: "#29C3A0" + yellow: "#D29922" + blue: "#BA1F1E" + magenta: "#BA1F1E" + cyan: "#29C3A0" + white: "#F5F5F5" + brightBlack: "#1E1916" + brightRed: "#F14444" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#BA1F1E" + brightMagenta: "#BA1F1E" + brightCyan: "#29C3A0" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100 + black: 0 + red: 37 + green: 57.3 + yellow: 51.4 + blue: 20.7 + magenta: 20.7 + cyan: 57.3 + white: 100 + brightBlack: 0 + brightRed: 37 + brightGreen: 57.3 + brightYellow: 51.4 + brightBlue: 20.7 + brightMagenta: 20.7 + brightCyan: 57.3 + brightWhite: 100 diff --git a/themes/blackai-theme.yaml b/themes/blackai-theme.yaml index fadfa53e..54ca396c 100644 --- a/themes/blackai-theme.yaml +++ b/themes/blackai-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "asilverio.blackai-visual-studio-code" version: "0.1.9" installs: 51216 + rating: 4.9 + ratings: 10 author: "asilverio" repo: "https://github.com/slipnox/blackai-theme" url: "https://marketplace.visualstudio.com/items?itemName=asilverio.blackai-visual-studio-code" diff --git a/themes/blackamp.yaml b/themes/blackamp.yaml index cf8e6bd8..6d893b8a 100644 --- a/themes/blackamp.yaml +++ b/themes/blackamp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KevinTerry.blackamp" version: "0.2.1" installs: 29 + rating: 0 + ratings: 0 author: "Kevin Terry" repo: "https://github.com/kevinjterry/blackamp-theme" url: "https://marketplace.visualstudio.com/items?itemName=KevinTerry.blackamp" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 82 black: 18.2 diff --git a/themes/blackberry.yaml b/themes/blackberry.yaml index 538aa97d..462f1658 100644 --- a/themes/blackberry.yaml +++ b/themes/blackberry.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "indigo.blackberry" version: "1.0.0" installs: 108 + rating: 0 + ratings: 0 author: "indigo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=indigo.blackberry" diff --git a/themes/blackbird-dusk.yaml b/themes/blackbird-dusk.yaml index 550f4f51..2dc6cc0c 100644 --- a/themes/blackbird-dusk.yaml +++ b/themes/blackbird-dusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MattGleich.theme-blackbird" version: "6.0.1" installs: 10037 + rating: 5 + ratings: 5 author: "Matt Gleich" repo: "https://github.com/blackbirdtheme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=MattGleich.theme-blackbird" diff --git a/themes/blackbird-midnight.yaml b/themes/blackbird-midnight.yaml index bd389ae1..cec143ed 100644 --- a/themes/blackbird-midnight.yaml +++ b/themes/blackbird-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MattGleich.theme-blackbird" version: "6.0.1" installs: 10037 + rating: 5 + ratings: 5 author: "Matt Gleich" repo: "https://github.com/blackbirdtheme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=MattGleich.theme-blackbird" diff --git a/themes/blackboard-plus.yaml b/themes/blackboard-plus.yaml index 362b13d3..2a7dafb3 100644 --- a/themes/blackboard-plus.yaml +++ b/themes/blackboard-plus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "huacnlee.theme-blackboard-plus" version: "1.0.2" installs: 7459 + rating: 0 + ratings: 0 author: "Jason Lee" repo: "https://github.com/huacnlee/vscode-blackboard-plus.theme" url: "https://marketplace.visualstudio.com/items?itemName=huacnlee.theme-blackboard-plus" diff --git a/themes/blackcoffeedark.yaml b/themes/blackcoffeedark.yaml index 618d70de..2cd48012 100644 --- a/themes/blackcoffeedark.yaml +++ b/themes/blackcoffeedark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MalikAhmadRasheed.coffeecode" version: "0.0.2" installs: 38 + rating: 5 + ratings: 1 author: "Malik Ahmad Rasheed" repo: "https://github.com/ahmaddii/BlackCoffeeDark" url: "https://marketplace.visualstudio.com/items?itemName=MalikAhmadRasheed.coffeecode" diff --git a/themes/blackdot.yaml b/themes/blackdot.yaml index 4d3d7999..ef305d5b 100644 --- a/themes/blackdot.yaml +++ b/themes/blackdot.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ignaprados.blackdot" version: "1.6.0" installs: 1713 + rating: 5 + ratings: 3 author: "Ignacio Prados" repo: "https://github.com/IgnacioPrados/Blackdot" url: "https://marketplace.visualstudio.com/items?itemName=ignaprados.blackdot" diff --git a/themes/blackhighcontrast.yaml b/themes/blackhighcontrast.yaml index 90c4bd62..51cb80c3 100644 --- a/themes/blackhighcontrast.yaml +++ b/themes/blackhighcontrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sHellWalker.blackhighcontrast-theme" version: "0.0.2" installs: 98 + rating: 0 + ratings: 0 author: "sHellWalker" repo: "https://github.com/abstractParm/BlackHighContrast-Theme" url: "https://marketplace.visualstudio.com/items?itemName=sHellWalker.blackhighcontrast-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 95.5 black: 0 diff --git a/themes/blacklite.yaml b/themes/blacklite.yaml index e7c7c42b..d2cafe64 100644 --- a/themes/blacklite.yaml +++ b/themes/blacklite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LiamRalph.blacklite" version: "1.0.9" installs: 27 + rating: 5 + ratings: 1 author: "LiamRalph" repo: "https://github.com/Liam-Ralph/blacklite" url: "https://marketplace.visualstudio.com/items?itemName=LiamRalph.blacklite" diff --git a/themes/blackout.yaml b/themes/blackout.yaml index 788a0a9a..71505eb8 100644 --- a/themes/blackout.yaml +++ b/themes/blackout.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "agustinduarte.blackout-theme" version: "0.0.72" installs: 1014 + rating: 5 + ratings: 1 author: "Agustin Duarte" repo: "https://github.com/agustinduarte/blackout-theme" url: "https://marketplace.visualstudio.com/items?itemName=agustinduarte.blackout-theme" diff --git a/themes/blackpink.yaml b/themes/blackpink.yaml index f5b1390a..ee30b95e 100644 --- a/themes/blackpink.yaml +++ b/themes/blackpink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "banebo.black-pink-theme" version: "0.0.1" installs: 3836 + rating: 0 + ratings: 0 author: "banebo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=banebo.black-pink-theme" diff --git a/themes/blackroulette.yaml b/themes/blackroulette.yaml index 4da66269..23119cdf 100644 --- a/themes/blackroulette.yaml +++ b/themes/blackroulette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "j-schneble.blackroulette-theme" version: "0.2.0" installs: 165 + rating: 5 + ratings: 1 author: "j-schneble" repo: null url: "https://marketplace.visualstudio.com/items?itemName=j-schneble.blackroulette-theme" diff --git a/themes/blackula-theme.yaml b/themes/blackula-theme.yaml index 57040225..ac3005cb 100644 --- a/themes/blackula-theme.yaml +++ b/themes/blackula-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "crsayen.blackula-theme" version: "0.0.4" installs: 269 + rating: 5 + ratings: 2 author: "Chris Sayen" repo: "https://github.com/crsayen/blackula-theme" url: "https://marketplace.visualstudio.com/items?itemName=crsayen.blackula-theme" diff --git a/themes/blacky.yaml b/themes/blacky.yaml index ed566d3d..9062fc61 100644 --- a/themes/blacky.yaml +++ b/themes/blacky.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KumarAshishRanjan.blacky" version: "0.0.2" installs: 110 + rating: 0 + ratings: 0 author: "Kumar Ashish Ranjan" repo: "https://github.com/dev-AshishRanjan/Blackie" url: "https://marketplace.visualstudio.com/items?itemName=KumarAshishRanjan.blacky" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 39.7 black: 0 diff --git a/themes/blackzombie-color-theme.yaml b/themes/blackzombie-color-theme.yaml new file mode 100644 index 00000000..78bd63fc --- /dev/null +++ b/themes/blackzombie-color-theme.yaml @@ -0,0 +1,52 @@ +name: "blackzombie-color-theme" +source: + marketplace_id: "RaMeZ.theme-blackzombie" + version: "1.0.3" + installs: 115 + rating: 0 + ratings: 0 + author: "RaMeZ" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RaMeZ.theme-blackzombie" +colors: + bg: "#1D1D1D" + fg: "#BDBDBD" + black: "#363537" + red: "#FC618D" + green: "#7BD88F" + yellow: "#FCE566" + blue: "#FD9353" + magenta: "#948AE3" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#FCE566" + brightBlue: "#FD9353" + brightMagenta: "#948AE3" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 65.2 + black: 0 + red: 45.6 + green: 69.5 + yellow: 88.9 + blue: 57.2 + magenta: 43.5 + cyan: 69.3 + white: 98.5 + brightBlack: 22.1 + brightRed: 45.6 + brightGreen: 69.5 + brightYellow: 88.9 + brightBlue: 57.2 + brightMagenta: 43.5 + brightCyan: 69.3 + brightWhite: 98.5 diff --git a/themes/bladerunner-light.yaml b/themes/bladerunner-light.yaml index b40126d3..34a1e97c 100644 --- a/themes/bladerunner-light.yaml +++ b/themes/bladerunner-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NeilSchroeder.vscode-theme-bladerunner" version: "0.3.1" installs: 214 + rating: 0 + ratings: 0 author: "Neil Schroeder" repo: "https://github.com/neilSchroeder/vscode-theme-bladerunner" url: "https://marketplace.visualstudio.com/items?itemName=NeilSchroeder.vscode-theme-bladerunner" diff --git a/themes/bladerunner.yaml b/themes/bladerunner.yaml index 3d528daa..e2660e82 100644 --- a/themes/bladerunner.yaml +++ b/themes/bladerunner.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NeilSchroeder.vscode-theme-bladerunner" version: "0.3.1" installs: 214 + rating: 0 + ratings: 0 author: "Neil Schroeder" repo: "https://github.com/neilSchroeder/vscode-theme-bladerunner" url: "https://marketplace.visualstudio.com/items?itemName=NeilSchroeder.vscode-theme-bladerunner" diff --git a/themes/blah-dark.yaml b/themes/blah-dark.yaml index d66603bb..e1ac2403 100644 --- a/themes/blah-dark.yaml +++ b/themes/blah-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "amila.blah" version: "2.1.0" installs: 207 + rating: 0 + ratings: 0 author: "Amila Nirmal" repo: "https://github.com/Y-AmilaNirmal/blah" url: "https://marketplace.visualstudio.com/items?itemName=amila.blah" diff --git a/themes/blahajtheme.yaml b/themes/blahajtheme.yaml index 5c9f7b70..354839e5 100644 --- a/themes/blahajtheme.yaml +++ b/themes/blahajtheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PratyushRaj.Blahajcode" version: "0.0.1" installs: 158 + rating: 0 + ratings: 0 author: "Pratyush Raj" repo: "https://github.com/rajpratyush/BlahajCode" url: "https://marketplace.visualstudio.com/items?itemName=PratyushRaj.Blahajcode" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 74.3 black: 0 diff --git a/themes/blank-ghibli.yaml b/themes/blank-ghibli.yaml index 6b8f64ea..f5eb575c 100644 --- a/themes/blank-ghibli.yaml +++ b/themes/blank-ghibli.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kiritocode1.blank-theme" version: "1.0.3" installs: 420 + rating: 5 + ratings: 4 author: "kiritocode1" repo: "https://github.com/kiritocode1/Blank-Theme" url: "https://marketplace.visualstudio.com/items?itemName=kiritocode1.blank-theme" diff --git a/themes/blank-monochrome.yaml b/themes/blank-monochrome.yaml index f78042b7..1944531d 100644 --- a/themes/blank-monochrome.yaml +++ b/themes/blank-monochrome.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kiritocode1.blank-theme" version: "1.0.3" installs: 420 + rating: 5 + ratings: 4 author: "kiritocode1" repo: "https://github.com/kiritocode1/Blank-Theme" url: "https://marketplace.visualstudio.com/items?itemName=kiritocode1.blank-theme" diff --git a/themes/blank-moonlight.yaml b/themes/blank-moonlight.yaml index 737bef80..cae07ebb 100644 --- a/themes/blank-moonlight.yaml +++ b/themes/blank-moonlight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kiritocode1.blank-theme" version: "1.0.3" installs: 420 + rating: 5 + ratings: 4 author: "kiritocode1" repo: "https://github.com/kiritocode1/Blank-Theme" url: "https://marketplace.visualstudio.com/items?itemName=kiritocode1.blank-theme" diff --git a/themes/blank-s-theme-reborn.yaml b/themes/blank-s-theme-reborn.yaml index 883177b3..f82613b3 100644 --- a/themes/blank-s-theme-reborn.yaml +++ b/themes/blank-s-theme-reborn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "QuidqueStudio.blank-s-theme-reborn" version: "1.0.1" installs: 17 + rating: 0 + ratings: 0 author: "Quidque Studio" repo: "https://github.com/Quidque-Studio/Blank-s-Theme-Reborn" url: "https://marketplace.visualstudio.com/items?itemName=QuidqueStudio.blank-s-theme-reborn" diff --git a/themes/blank-uchiha.yaml b/themes/blank-uchiha.yaml index b09e2970..36269cc4 100644 --- a/themes/blank-uchiha.yaml +++ b/themes/blank-uchiha.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kiritocode1.blank-theme" version: "1.0.3" installs: 420 + rating: 5 + ratings: 4 author: "kiritocode1" repo: "https://github.com/kiritocode1/Blank-Theme" url: "https://marketplace.visualstudio.com/items?itemName=kiritocode1.blank-theme" diff --git a/themes/blazing.yaml b/themes/blazing.yaml new file mode 100644 index 00000000..7df477fe --- /dev/null +++ b/themes/blazing.yaml @@ -0,0 +1,52 @@ +name: "Blazing" +source: + marketplace_id: "AryanAhire.blazing-vscode" + version: "0.0.2" + installs: 133 + rating: 0 + ratings: 0 + author: "Aryan Ahire" + repo: "https://github.com/def-SpaceWar/blazing-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AryanAhire.blazing-vscode" +colors: + bg: "#252920" + fg: "#EFFFFF" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 127 + pair: null + contrast: + fg: 102.3 + black: 0 + red: 22.2 + green: 50.6 + yellow: 55.3 + blue: 32.3 + magenta: 29.8 + cyan: 48.1 + white: 86.1 + brightBlack: 19.7 + brightRed: 34.9 + brightGreen: 74.6 + brightYellow: 81.5 + brightBlue: 47.5 + brightMagenta: 44.2 + brightCyan: 71 + brightWhite: 99.6 diff --git a/themes/blender-mojo-theme.yaml b/themes/blender-mojo-theme.yaml new file mode 100644 index 00000000..0cf645b5 --- /dev/null +++ b/themes/blender-mojo-theme.yaml @@ -0,0 +1,52 @@ +name: "Blender Mojo theme" +source: + marketplace_id: "rubbietheone.blender-mojo-theme" + version: "0.0.1" + installs: 406 + rating: 0 + ratings: 0 + author: "Rubbie Kelvin" + repo: "https://github.com/rubbieKelvin/blender-mojo-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rubbietheone.blender-mojo-theme" +colors: + bg: "#2A2A2A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 104 + black: 0 + red: 23.9 + green: 50.2 + yellow: 82.8 + blue: 24.6 + magenta: 26.9 + cyan: 44.7 + white: 87.2 + brightBlack: 19.2 + brightRed: 35.7 + brightGreen: 60.7 + brightYellow: 92.8 + brightBlue: 37.2 + brightMagenta: 42.5 + brightCyan: 52.6 + brightWhite: 87.2 diff --git a/themes/blinds-dark.yaml b/themes/blinds-dark.yaml index 1124b66c..1d6b8c72 100644 --- a/themes/blinds-dark.yaml +++ b/themes/blinds-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tankashing.blinds-theme" version: "8.0.0" installs: 4027 + rating: 5 + ratings: 4 author: "Tan Ka-Shing" repo: "https://github.com/orbulant/blinds-theme" url: "https://marketplace.visualstudio.com/items?itemName=tankashing.blinds-theme" diff --git a/themes/blink-contrast.yaml b/themes/blink-contrast.yaml index 2e0b2e1b..70b67c8f 100644 --- a/themes/blink-contrast.yaml +++ b/themes/blink-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/blink-light.yaml b/themes/blink-light.yaml index 1bd280c9..fbcd8530 100644 --- a/themes/blink-light.yaml +++ b/themes/blink-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/blink.yaml b/themes/blink.yaml index 5a3a840d..8cb4295c 100644 --- a/themes/blink.yaml +++ b/themes/blink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/bloody-pie.yaml b/themes/bloody-pie.yaml index afbb58f7..64fd8ded 100644 --- a/themes/bloody-pie.yaml +++ b/themes/bloody-pie.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wrobeljakub.bloody-pie" version: "1.0.0" installs: 1301 + rating: 0 + ratings: 0 author: "wrobeljakub" repo: "https://github.com/wrobeljakub/bloody-pie-vscode" url: "https://marketplace.visualstudio.com/items?itemName=wrobeljakub.bloody-pie" diff --git a/themes/bloom-1-1-0.yaml b/themes/bloom-1-1-0.yaml index c2b4697a..1ca19be8 100644 --- a/themes/bloom-1-1-0.yaml +++ b/themes/bloom-1-1-0.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "avago24.bloom" version: "1.1.0" installs: 312 + rating: 0 + ratings: 0 author: "avago24" repo: null url: "https://marketplace.visualstudio.com/items?itemName=avago24.bloom" diff --git a/themes/bloostring.yaml b/themes/bloostring.yaml index 10f9241b..1bbe5a6c 100644 --- a/themes/bloostring.yaml +++ b/themes/bloostring.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AdrianFung.bloo-string" version: "1.1.0" installs: 27 + rating: 0 + ratings: 0 author: "Adrian Fung" repo: "https://github.com/TheHatttMan/bloo-string" url: "https://marketplace.visualstudio.com/items?itemName=AdrianFung.bloo-string" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 102 black: 0 diff --git a/themes/blowington.yaml b/themes/blowington.yaml index 6aed1523..a132a771 100644 --- a/themes/blowington.yaml +++ b/themes/blowington.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "treuks.blowington-theme" version: "1.1.0" installs: 429 + rating: 0 + ratings: 0 author: "treuks" repo: "https://github.com/treuks/blowington-theme" url: "https://marketplace.visualstudio.com/items?itemName=treuks.blowington-theme" diff --git a/themes/blube-dark-light.yaml b/themes/blube-dark-light.yaml index 75d83d52..b26ef271 100644 --- a/themes/blube-dark-light.yaml +++ b/themes/blube-dark-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BlueBe.blube-dark" version: "0.0.3" installs: 314 + rating: 5 + ratings: 1 author: "BlueBe" repo: "https://github.com/rafaspdev/blube-dark" url: "https://marketplace.visualstudio.com/items?itemName=BlueBe.blube-dark" diff --git a/themes/blue-cheese.yaml b/themes/blue-cheese.yaml index 63cb6bb7..6fb5dfb0 100644 --- a/themes/blue-cheese.yaml +++ b/themes/blue-cheese.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "N-l1.blue-cheese" version: "2021.2.6" installs: 2043 + rating: 5 + ratings: 2 author: "N-l1" repo: "https://github.com/N-l1/blue-cheese" url: "https://marketplace.visualstudio.com/items?itemName=N-l1.blue-cheese" diff --git a/themes/blue-collection.yaml b/themes/blue-collection.yaml index 12bd47c1..5b0a1dda 100644 --- a/themes/blue-collection.yaml +++ b/themes/blue-collection.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RLabsInc.rlabs-theme-collection" version: "0.1.4" installs: 181 + rating: 0 + ratings: 0 author: "RLabs Inc." repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 271 + pair: null contrast: fg: 101.2 black: 0 diff --git a/themes/blue-color-theme.yaml b/themes/blue-color-theme.yaml index 4953f650..2614ca6f 100644 --- a/themes/blue-color-theme.yaml +++ b/themes/blue-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ctf0.seti-ux" version: "0.1.7" installs: 1554 + rating: 5 + ratings: 1 author: "ctf0" repo: "https://github.com/ctf0/Seti_UX-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ctf0.seti-ux" diff --git a/themes/blue-dark-theme.yaml b/themes/blue-dark-theme.yaml index 7320a470..80092223 100644 --- a/themes/blue-dark-theme.yaml +++ b/themes/blue-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "william-piron.night-dark-theme" version: "0.0.55" installs: 393 + rating: 5 + ratings: 1 author: "William PIRON" repo: "https://github.com/wpiron10/night-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=william-piron.night-dark-theme" diff --git a/themes/blue-day.yaml b/themes/blue-day.yaml index c7dce089..5c775903 100644 --- a/themes/blue-day.yaml +++ b/themes/blue-day.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thiagobessimo.bluenight" version: "1.0.1" installs: 1348 + rating: 0 + ratings: 0 author: "Thiago P B Bessimo" repo: "https://github.com/thiagobessimo/bluenight" url: "https://marketplace.visualstudio.com/items?itemName=thiagobessimo.bluenight" diff --git a/themes/blue-faded.yaml b/themes/blue-faded.yaml index ff514577..4413ace1 100644 --- a/themes/blue-faded.yaml +++ b/themes/blue-faded.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aztechcorps.monday-blues" version: "0.0.2" installs: 134 + rating: 0 + ratings: 0 author: "AztechCorps" repo: "https://github.com/subhamayd2/monday-blues-theme" url: "https://marketplace.visualstudio.com/items?itemName=aztechcorps.monday-blues" diff --git a/themes/blue-green-theme.yaml b/themes/blue-green-theme.yaml index 3b29a905..cc7f8b57 100644 --- a/themes/blue-green-theme.yaml +++ b/themes/blue-green-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "agungandre687.blue-green-theme" version: "0.0.1" installs: 1471 + rating: 0 + ratings: 0 author: "agungandre687" repo: "https://github.com/Andndre/blue-green" url: "https://marketplace.visualstudio.com/items?itemName=agungandre687.blue-green-theme" diff --git a/themes/blue-hacker-theme.yaml b/themes/blue-hacker-theme.yaml index c12731fe..d7869bd5 100644 --- a/themes/blue-hacker-theme.yaml +++ b/themes/blue-hacker-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nguyenhauweb.blue-dark-themb" version: "0.0.39" installs: 109 + rating: 5 + ratings: 1 author: "Nguyễn Thanh Hậu" repo: "https://github.com/z1001st/blue-dark-themb" url: "https://marketplace.visualstudio.com/items?itemName=nguyenhauweb.blue-dark-themb" diff --git a/themes/blue-jeans.yaml b/themes/blue-jeans.yaml index ba34c510..f085210a 100644 --- a/themes/blue-jeans.yaml +++ b/themes/blue-jeans.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "victorseara.blue-jeans" version: "0.0.1" installs: 198 + rating: 0 + ratings: 0 author: "victorseara" repo: "https://github.com/victorseara/blue-jeans-theme" url: "https://marketplace.visualstudio.com/items?itemName=victorseara.blue-jeans" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 290 + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/blue-light-filter-dark.yaml b/themes/blue-light-filter-dark.yaml index 5a656853..3a32d117 100644 --- a/themes/blue-light-filter-dark.yaml +++ b/themes/blue-light-filter-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SakshamYadav.blue-light-filter-theme" version: "1.0.0" installs: 156 + rating: 0 + ratings: 0 author: "Saksham Yadav" repo: "https://github.com/Sakshamyadav15/GitCode" url: "https://marketplace.visualstudio.com/items?itemName=SakshamYadav.blue-light-filter-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 53 + pair: null contrast: fg: 65.8 black: 0 diff --git a/themes/blue-light-filter-warm-dark.yaml b/themes/blue-light-filter-warm-dark.yaml index e9416854..dd08d4bf 100644 --- a/themes/blue-light-filter-warm-dark.yaml +++ b/themes/blue-light-filter-warm-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SakshamYadav.blue-light-filter-theme" version: "1.0.0" installs: 156 + rating: 0 + ratings: 0 author: "Saksham Yadav" repo: "https://github.com/Sakshamyadav15/GitCode" url: "https://marketplace.visualstudio.com/items?itemName=SakshamYadav.blue-light-filter-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 60 + pair: null contrast: fg: 66.5 black: 0 diff --git a/themes/blue-light-theme.yaml b/themes/blue-light-theme.yaml index 20af6dc9..497c2e54 100644 --- a/themes/blue-light-theme.yaml +++ b/themes/blue-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "msnilshartmann.blue-light" version: "0.6.4" installs: 94971 + rating: 5 + ratings: 2 author: "Nils Hartmann" repo: "https://github.com/nilshartmann/vscode-blue-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=msnilshartmann.blue-light" diff --git a/themes/blue-melon.yaml b/themes/blue-melon.yaml index 816c875b..50d7feb1 100644 --- a/themes/blue-melon.yaml +++ b/themes/blue-melon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JamesGulland.blue-melon" version: "1.9.0" installs: 102 + rating: 0 + ratings: 0 author: "James Gulland" repo: "https://github.com/james-gulland/blue-melon" url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.blue-melon" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 269 + pair: null contrast: fg: 57.1 black: 0 diff --git a/themes/blue-moves-color-theme.yaml b/themes/blue-moves-color-theme.yaml index 0f1f620a..d5cc2196 100644 --- a/themes/blue-moves-color-theme.yaml +++ b/themes/blue-moves-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Synth1983GreenWave.blue-moves-theme" version: "2.0.1" installs: 366 + rating: 5 + ratings: 1 author: "🧪 ovct 🧪" repo: "https://github.com/Octaviocossy/blue-moves-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Synth1983GreenWave.blue-moves-theme" diff --git a/themes/blue-moves-darker-color-theme.yaml b/themes/blue-moves-darker-color-theme.yaml index bdda647e..e392c803 100644 --- a/themes/blue-moves-darker-color-theme.yaml +++ b/themes/blue-moves-darker-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Synth1983GreenWave.blue-moves-theme" version: "2.0.1" installs: 366 + rating: 5 + ratings: 1 author: "🧪 ovct 🧪" repo: "https://github.com/Octaviocossy/blue-moves-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Synth1983GreenWave.blue-moves-theme" diff --git a/themes/blue-night.yaml b/themes/blue-night.yaml index ababe16a..7422a64a 100644 --- a/themes/blue-night.yaml +++ b/themes/blue-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thiagobessimo.bluenight" version: "1.0.1" installs: 1348 + rating: 0 + ratings: 0 author: "Thiago P B Bessimo" repo: "https://github.com/thiagobessimo/bluenight" url: "https://marketplace.visualstudio.com/items?itemName=thiagobessimo.bluenight" diff --git a/themes/blue.yaml b/themes/blue.yaml index 89b84560..e9e76a79 100644 --- a/themes/blue.yaml +++ b/themes/blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "natecrow.consonance-themes" version: "1.2.0" installs: 317 + rating: 0 + ratings: 0 author: "natecrow" repo: "https://github.com/natecrow/consonance-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" diff --git a/themes/blueberry-dark-theme.yaml b/themes/blueberry-dark-theme.yaml index e256fccd..9d6bd0fb 100644 --- a/themes/blueberry-dark-theme.yaml +++ b/themes/blueberry-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kachick.blueberry-brackets-dark-theme" version: "1.2.0" installs: 554 + rating: 0 + ratings: 0 author: "Kenichi Kamiya" repo: "https://github.com/kachick/vscode-blueberry-brackets-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=kachick.blueberry-brackets-dark-theme" diff --git a/themes/blueberry-futuristic-theme-fork.yaml b/themes/blueberry-futuristic-theme-fork.yaml index 29e5167d..4e0d5902 100644 --- a/themes/blueberry-futuristic-theme-fork.yaml +++ b/themes/blueberry-futuristic-theme-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andyluisilva.BlueTheme-andy" version: "0.0.0" installs: 165 + rating: 0 + ratings: 0 author: "andyluisilva" repo: null url: "https://marketplace.visualstudio.com/items?itemName=andyluisilva.BlueTheme-andy" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 251 + pair: null contrast: fg: 21.1 black: 0 diff --git a/themes/blueberry-theme.yaml b/themes/blueberry-theme.yaml index c7bb4bf0..eac92c96 100644 --- a/themes/blueberry-theme.yaml +++ b/themes/blueberry-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sylten.strawberry-theme" version: "1.0.5" installs: 8899 + rating: 5 + ratings: 4 author: "Jonas Siltamäki Håkansson" repo: "https://github.com/sylten/strawberry-theme" url: "https://marketplace.visualstudio.com/items?itemName=sylten.strawberry-theme" diff --git a/themes/blueberry.yaml b/themes/blueberry.yaml new file mode 100644 index 00000000..94a5f561 --- /dev/null +++ b/themes/blueberry.yaml @@ -0,0 +1,52 @@ +name: "Blueberry" +source: + marketplace_id: "vscode-blur.vscode-blueberry" + version: "0.1.1" + installs: 89 + rating: 0 + ratings: 0 + author: "vscode-blur" + repo: "https://github.com/slapxxi/vscode-blueberry" + url: "https://marketplace.visualstudio.com/items?itemName=vscode-blur.vscode-blueberry" +colors: + bg: "#0E0E12" + fg: "#A7B2D5" + black: "#0E0E12" + red: "#EB4A47" + green: "#B0F547" + yellow: "#FFC82A" + blue: "#1166FF" + magenta: "#C792EA" + cyan: "#19C4E6" + white: "#F5F7FF" + brightBlack: "#575656" + brightRed: "#EB4A47" + brightGreen: "#18DC6A" + brightYellow: "#FFC82A" + brightBlue: "#1166FF" + brightMagenta: "#C792EA" + brightCyan: "#19C4E6" + brightWhite: "#F5F7FF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 60.7 + black: 0 + red: 37.5 + green: 88.2 + yellow: 77.7 + blue: 29 + magenta: 54.4 + cyan: 61.8 + white: 102.4 + brightBlack: 16.2 + brightRed: 37.5 + brightGreen: 68.8 + brightYellow: 77.7 + brightBlue: 29 + brightMagenta: 54.4 + brightCyan: 61.8 + brightWhite: 102.4 diff --git a/themes/bluebracket-theme.yaml b/themes/bluebracket-theme.yaml index 4f494879..be14ae19 100644 --- a/themes/bluebracket-theme.yaml +++ b/themes/bluebracket-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebracket.bluebracket-material" version: "1.6.0" installs: 3654 + rating: 5 + ratings: 1 author: "bluebracket" repo: "https://github.com/ppozniak/bluebracket-material-vsc" url: "https://marketplace.visualstudio.com/items?itemName=bluebracket.bluebracket-material" diff --git a/themes/bluedark.yaml b/themes/bluedark.yaml index 4599209e..cd6a5b85 100644 --- a/themes/bluedark.yaml +++ b/themes/bluedark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Drakencord.blue-dark" version: "0.0.1" installs: 818 + rating: 0 + ratings: 0 author: "Drakencord" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Drakencord.blue-dark" diff --git a/themes/bluegreenspace.yaml b/themes/bluegreenspace.yaml index d3738671..8adabee7 100644 --- a/themes/bluegreenspace.yaml +++ b/themes/bluegreenspace.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.inspiration" version: "0.0.19" installs: 1076 + rating: 5 + ratings: 1 author: "YesCode" repo: "https://github.com/yesomac/inspiration_themevsc" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" diff --git a/themes/bluelili-color-theme.yaml b/themes/bluelili-color-theme.yaml index 3e935003..f519dcb1 100644 --- a/themes/bluelili-color-theme.yaml +++ b/themes/bluelili-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daniloBrayann.blue-theme-dark" version: "0.0.37" installs: 454 + rating: 5 + ratings: 1 author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.blue-theme-dark" diff --git a/themes/blueorange.yaml b/themes/blueorange.yaml index 9dae7a47..ce03befb 100644 --- a/themes/blueorange.yaml +++ b/themes/blueorange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "paul-hansen.blueorange" version: "1.0.0" installs: 490 + rating: 5 + ratings: 1 author: "Paul Hansen" repo: null url: "https://marketplace.visualstudio.com/items?itemName=paul-hansen.blueorange" diff --git a/themes/blueprint-grid.yaml b/themes/blueprint-grid.yaml new file mode 100644 index 00000000..9d2a9a52 --- /dev/null +++ b/themes/blueprint-grid.yaml @@ -0,0 +1,52 @@ +name: "Blueprint-Grid" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FFFFFF" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FF6364" + magenta: "#FF6364" + cyan: "#29C3A0" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FFFFFF" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FF6364" + brightMagenta: "#FF6364" + brightCyan: "#29C3A0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 107.9 + green: 58.7 + yellow: 52.7 + blue: 47.3 + magenta: 47.3 + cyan: 58.7 + white: 107.9 + brightBlack: 0 + brightRed: 107.9 + brightGreen: 58.7 + brightYellow: 52.7 + brightBlue: 47.3 + brightMagenta: 47.3 + brightCyan: 58.7 + brightWhite: 107.9 diff --git a/themes/blueprint.yaml b/themes/blueprint.yaml new file mode 100644 index 00000000..8b502bb4 --- /dev/null +++ b/themes/blueprint.yaml @@ -0,0 +1,52 @@ +name: "Blueprint" +source: + marketplace_id: "talovskx.blueprint-theme" + version: "0.0.1" + installs: 109 + rating: 0 + ratings: 0 + author: "talovskx" + repo: "https://github.com/talovski/blueprint" + url: "https://marketplace.visualstudio.com/items?itemName=talovskx.blueprint-theme" +colors: + bg: "#212744" + fg: "#C9CCD3" + black: "#212744" + red: "#652B1C" + green: "#514927" + yellow: "#5E4525" + blue: "#2E4561" + magenta: "#48343D" + cyan: "#2D4D5D" + white: "#F5F7FE" + brightBlack: "#212744" + brightRed: "#652B1C" + brightGreen: "#514927" + brightYellow: "#5E4525" + brightBlue: "#2E4561" + brightMagenta: "#48343D" + brightCyan: "#2D4D5D" + brightWhite: "#F5F7FE" +meta: + mode: "dark" + accent: "orange" + hue: 274 + pair: null + contrast: + fg: 72 + black: 0 + red: 0 + green: 8 + yellow: 8.3 + blue: 0 + magenta: 0 + cyan: 8 + white: 99 + brightBlack: 0 + brightRed: 0 + brightGreen: 8 + brightYellow: 8.3 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 8 + brightWhite: 99 diff --git a/themes/bluered-theme.yaml b/themes/bluered-theme.yaml index 5a93eca2..b32d69c8 100644 --- a/themes/bluered-theme.yaml +++ b/themes/bluered-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KelsonCarvalho.bluered-theme" version: "2.0.0" installs: 112 + rating: 0 + ratings: 0 author: "Kelson Carvalho" repo: "https://github.com/NoslekCode/bluered-theme" url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.bluered-theme" diff --git a/themes/bluesea.yaml b/themes/bluesea.yaml index a5bfa0d8..25ee7127 100644 --- a/themes/bluesea.yaml +++ b/themes/bluesea.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.morita" version: "0.0.18" installs: 228 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/yesomac/MyThemes" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" diff --git a/themes/blueslate.yaml b/themes/blueslate.yaml new file mode 100644 index 00000000..35626763 --- /dev/null +++ b/themes/blueslate.yaml @@ -0,0 +1,52 @@ +name: "BlueSlate" +source: + marketplace_id: "NikhilThorat.blueslate" + version: "0.2.0" + installs: 219 + rating: 0 + ratings: 0 + author: "Nikhil Thorat" + repo: "https://github.com/Nixt4523/blueslate" + url: "https://marketplace.visualstudio.com/items?itemName=NikhilThorat.blueslate" +colors: + bg: "#030712" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 262 + pair: null + contrast: + fg: 80.4 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/bluespace-s.yaml b/themes/bluespace-s.yaml index 2297547f..eee92161 100644 --- a/themes/bluespace-s.yaml +++ b/themes/bluespace-s.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.bluespace" version: "0.0.22" installs: 208 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/yesomac/BlueSpaceVSC" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.bluespace" diff --git a/themes/bluespace.yaml b/themes/bluespace.yaml index 4ea768f6..ff387a4d 100644 --- a/themes/bluespace.yaml +++ b/themes/bluespace.yaml @@ -1,14 +1,16 @@ name: "BlueSpace" source: - marketplace_id: "YesCode.only-dark-theme" - version: "0.0.16" - installs: 383 + marketplace_id: "YesCode.bluespace" + version: "0.0.22" + installs: 208 + rating: 0 + ratings: 0 author: "YesCode" - repo: "https://github.com/yesomac/only_dark" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" + repo: "https://github.com/yesomac/BlueSpaceVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.bluespace" colors: - bg: "#1A1A1A" - fg: "#DDDDDD" + bg: "#02031D" + fg: "#FFFFFF" black: "#1D211D" red: "#FB543F" green: "#95C085" @@ -20,7 +22,7 @@ colors: brightBlack: "#665C54" brightRed: "#FB543F" brightGreen: "#8F8EDA" - brightYellow: "#FF8080" + brightYellow: "#FFCC80" brightBlue: "#0D6678" brightMagenta: "#8F4673" brightCyan: "#8BA59B" @@ -28,23 +30,23 @@ colors: meta: mode: "dark" accent: "green" - hue: null + hue: 271 pair: null contrast: - fg: 84.7 + fg: 107.7 black: 0 - red: 41.6 - green: 60.6 - yellow: 72.7 - blue: 82.5 - magenta: 19.2 - cyan: 49.1 - white: 46.9 - brightBlack: 18.3 - brightRed: 41.6 - brightGreen: 44.1 - brightYellow: 53.4 - brightBlue: 18.4 - brightMagenta: 19.2 - brightCyan: 49.1 - brightWhite: 98.5 + red: 42.8 + green: 61.8 + yellow: 73.9 + blue: 83.7 + magenta: 20.4 + cyan: 50.3 + white: 48.1 + brightBlack: 19.5 + brightRed: 42.8 + brightGreen: 45.3 + brightYellow: 80.6 + brightBlue: 19.6 + brightMagenta: 20.4 + brightCyan: 50.3 + brightWhite: 99.7 diff --git a/themes/bluespexter.yaml b/themes/bluespexter.yaml index d9e1b008..26f8f0ec 100644 --- a/themes/bluespexter.yaml +++ b/themes/bluespexter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jefffree22.BluespEXTER" version: "0.0.1" installs: 42 + rating: 0 + ratings: 0 author: "jeff free 22" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jefffree22.BluespEXTER" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 224 + pair: null contrast: fg: 107.8 black: 0 diff --git a/themes/blueyonedark.yaml b/themes/blueyonedark.yaml index 047f287d..f30e321d 100644 --- a/themes/blueyonedark.yaml +++ b/themes/blueyonedark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BlueyThemes.blueymonokai" version: "1.4.0" installs: 116 + rating: 0 + ratings: 0 author: "BlueyThemes" repo: null url: "https://marketplace.visualstudio.com/items?itemName=BlueyThemes.blueymonokai" diff --git a/themes/blufftheme.yaml b/themes/blufftheme.yaml new file mode 100644 index 00000000..f29a0f61 --- /dev/null +++ b/themes/blufftheme.yaml @@ -0,0 +1,52 @@ +name: "Blufftheme" +source: + marketplace_id: "bluff.blufftheme" + version: "0.0.3" + installs: 51 + rating: 0 + ratings: 0 + author: "bluff" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=bluff.blufftheme" +colors: + bg: "#0F0F0F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.5 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/bluloco-dark-italic.yaml b/themes/bluloco-dark-italic.yaml index 41761bb3..c3f94a30 100644 --- a/themes/bluloco-dark-italic.yaml +++ b/themes/bluloco-dark-italic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/bluloco-dark.yaml b/themes/bluloco-dark.yaml index 4d09f9a2..ba3ded8f 100644 --- a/themes/bluloco-dark.yaml +++ b/themes/bluloco-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "W77.bluloco-dark-muted-theme-w77" version: "0.0.2" installs: 699 + rating: 0 + ratings: 0 author: "W77" repo: "https://github.com/wojtek77/bluloco-dark-muted-theme-w77" url: "https://marketplace.visualstudio.com/items?itemName=W77.bluloco-dark-muted-theme-w77" diff --git a/themes/bluloco-light-italic.yaml b/themes/bluloco-light-italic.yaml index a4a14c31..8aead2e3 100644 --- a/themes/bluloco-light-italic.yaml +++ b/themes/bluloco-light-italic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "uloco.theme-bluloco-light" version: "3.7.5" installs: 485005 + rating: 4.92 + ratings: 39 author: "Umut Topuzoğlu" repo: "https://github.com/uloco/theme-bluloco-light" url: "https://marketplace.visualstudio.com/items?itemName=uloco.theme-bluloco-light" diff --git a/themes/blush-pink-enhanced-premium.yaml b/themes/blush-pink-enhanced-premium.yaml index 8a05d28d..04326665 100644 --- a/themes/blush-pink-enhanced-premium.yaml +++ b/themes/blush-pink-enhanced-premium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/blve.yaml b/themes/blve.yaml index 1df5bfbb..19ec9d55 100644 --- a/themes/blve.yaml +++ b/themes/blve.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YMG.blve-theme" version: "1.1.0" installs: 514 + rating: 0 + ratings: 0 author: "YMG" repo: "https://github.com/0xymg/blve_vscode_theme" url: "https://marketplace.visualstudio.com/items?itemName=YMG.blve-theme" diff --git a/themes/bobascheme.yaml b/themes/bobascheme.yaml index 0cfd98dd..30a68944 100644 --- a/themes/bobascheme.yaml +++ b/themes/bobascheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bbaovanc.bobascheme" version: "0.0.3" installs: 35 + rating: 0 + ratings: 0 author: "BBaoVanC" repo: "https://github.com/BBaoVanC/bobascheme" url: "https://marketplace.visualstudio.com/items?itemName=bbaovanc.bobascheme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "indigo" hue: null + pair: null contrast: fg: 80 black: 0 diff --git a/themes/bobojojo.yaml b/themes/bobojojo.yaml new file mode 100644 index 00000000..35b23d31 --- /dev/null +++ b/themes/bobojojo.yaml @@ -0,0 +1,52 @@ +name: "bobojojo" +source: + marketplace_id: "richiebzzzt.bobojojo" + version: "0.4.3" + installs: 134 + rating: 0 + ratings: 0 + author: "Richie Lee" + repo: "https://github.com/RichieBzzzt/bobojojo" + url: "https://marketplace.visualstudio.com/items?itemName=richiebzzzt.bobojojo" +colors: + bg: "#FBFBFB" + fg: "#1C2833" + black: "#FBFBFB" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#DB0A5B" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 99.5 + black: 0 + red: 71.6 + green: 45.6 + yellow: 14.6 + blue: 70.9 + magenta: 68.5 + cyan: 50.9 + white: 10.5 + brightBlack: 69.7 + brightRed: 59.7 + brightGreen: 35.5 + brightYellow: 0 + brightBlue: 58.3 + brightMagenta: 53 + brightCyan: 43.3 + brightWhite: 10.5 diff --git a/themes/bocenago-pradei.yaml b/themes/bocenago-pradei.yaml index 654a0aec..ad80bcc7 100644 --- a/themes/bocenago-pradei.yaml +++ b/themes/bocenago-pradei.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "einar-hjortdal.bocenago-themes" version: "3.0.2" installs: 39 + rating: 0 + ratings: 0 author: "Einar Hjortdal" repo: "https://github.com/einar-hjortdal/Bocenago" url: "https://marketplace.visualstudio.com/items?itemName=einar-hjortdal.bocenago-themes" diff --git a/themes/bogem-s-night-owl.yaml b/themes/bogem-s-night-owl.yaml index 173434e9..3e62f025 100644 --- a/themes/bogem-s-night-owl.yaml +++ b/themes/bogem-s-night-owl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bogem.bogems-night-owl" version: "1.2.0" installs: 18240 + rating: 0 + ratings: 0 author: "Albert Nigmatzianov" repo: "https://github.com/bogem/bogems-night-owl-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=bogem.bogems-night-owl" diff --git a/themes/bohemian-dark.yaml b/themes/bohemian-dark.yaml index 1e354623..5b9b9f12 100644 --- a/themes/bohemian-dark.yaml +++ b/themes/bohemian-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Alastair908.bohemian-theme" version: "1.2.0" installs: 309 + rating: 0 + ratings: 0 author: "Alastair908" repo: "https://github.com/Alastair908/BohemianTheme" url: "https://marketplace.visualstudio.com/items?itemName=Alastair908.bohemian-theme" diff --git a/themes/bohemian-light.yaml b/themes/bohemian-light.yaml index 260745eb..b1a92225 100644 --- a/themes/bohemian-light.yaml +++ b/themes/bohemian-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Alastair908.bohemian-theme" version: "1.2.0" installs: 309 + rating: 0 + ratings: 0 author: "Alastair908" repo: "https://github.com/Alastair908/BohemianTheme" url: "https://marketplace.visualstudio.com/items?itemName=Alastair908.bohemian-theme" diff --git a/themes/bold-contrast.yaml b/themes/bold-contrast.yaml index d0d59ef3..5f7bef17 100644 --- a/themes/bold-contrast.yaml +++ b/themes/bold-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/bold-light.yaml b/themes/bold-light.yaml index 25186145..b639ba1f 100644 --- a/themes/bold-light.yaml +++ b/themes/bold-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/bold.yaml b/themes/bold.yaml index 33692d1e..c9c34ec8 100644 --- a/themes/bold.yaml +++ b/themes/bold.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/bolsonaro-theme.yaml b/themes/bolsonaro-theme.yaml index 669c4d32..b77fbc0d 100644 --- a/themes/bolsonaro-theme.yaml +++ b/themes/bolsonaro-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "higordevv.bolsonarodarktheme" version: "0.0.1" installs: 1823 + rating: 5 + ratings: 3 author: "Higor Devkkkjj" repo: null url: "https://marketplace.visualstudio.com/items?itemName=higordevv.bolsonarodarktheme" diff --git a/themes/bombyx-light.yaml b/themes/bombyx-light.yaml index de4e0591..feeb04f3 100644 --- a/themes/bombyx-light.yaml +++ b/themes/bombyx-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "y6nH.bombyx" version: "0.4.1" installs: 599 + rating: 0 + ratings: 0 author: "y6nH" repo: "https://github.com/y6nH/bombyx" url: "https://marketplace.visualstudio.com/items?itemName=y6nH.bombyx" diff --git a/themes/bombyx.yaml b/themes/bombyx.yaml index f7f24c6b..d4212e8c 100644 --- a/themes/bombyx.yaml +++ b/themes/bombyx.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "y6nH.bombyx" version: "0.4.1" installs: 599 + rating: 0 + ratings: 0 author: "y6nH" repo: "https://github.com/y6nH/bombyx" url: "https://marketplace.visualstudio.com/items?itemName=y6nH.bombyx" diff --git a/themes/bonfire.yaml b/themes/bonfire.yaml new file mode 100644 index 00000000..e2fbb04e --- /dev/null +++ b/themes/bonfire.yaml @@ -0,0 +1,52 @@ +name: "bonfire" +source: + marketplace_id: "cozybonfire.bonfire" + version: "0.2.0" + installs: 310 + rating: 0 + ratings: 0 + author: "cozybonfire" + repo: "https://github.com/cozybonfire/bonfire" + url: "https://marketplace.visualstudio.com/items?itemName=cozybonfire.bonfire" +colors: + bg: "#123F4A" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 217 + pair: null + contrast: + fg: 95 + black: 0 + red: 17.6 + green: 46 + yellow: 50.7 + blue: 27.6 + magenta: 25.2 + cyan: 43.4 + white: 81.5 + brightBlack: 15 + brightRed: 30.3 + brightGreen: 70 + brightYellow: 76.9 + brightBlue: 42.9 + brightMagenta: 39.5 + brightCyan: 66.4 + brightWhite: 95 diff --git a/themes/boo-color-theme.yaml b/themes/boo-color-theme.yaml index 653f121d..b1fc2aac 100644 --- a/themes/boo-color-theme.yaml +++ b/themes/boo-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JohannesFreutel.boo-color-theme" version: "0.0.1" installs: 35 + rating: 0 + ratings: 0 author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.boo-color-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 43.3 black: 0 diff --git a/themes/boo.yaml b/themes/boo.yaml index e3d6277a..49a160b1 100644 --- a/themes/boo.yaml +++ b/themes/boo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ene-ne.mio" version: "0.1.0" installs: 101 + rating: 0 + ratings: 0 author: "ene-ne" repo: "https://github.com/ene-ne/mio" url: "https://marketplace.visualstudio.com/items?itemName=ene-ne.mio" diff --git a/themes/boogel.yaml b/themes/boogel.yaml index 7d747fa2..f33c83cf 100644 --- a/themes/boogel.yaml +++ b/themes/boogel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ArmOwOn.Boogel" version: "0.0.1" installs: 25 + rating: 0 + ratings: 0 author: "ArmOwOn" repo: "https://github.com/ArmOwOn/Boogel" url: "https://marketplace.visualstudio.com/items?itemName=ArmOwOn.Boogel" diff --git a/themes/booklike.yaml b/themes/booklike.yaml index 702edd66..3c0b7599 100644 --- a/themes/booklike.yaml +++ b/themes/booklike.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mervyn.booklike" version: "0.0.1" installs: 921 + rating: 0 + ratings: 0 author: "mervyn" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mervyn.booklike" diff --git a/themes/bootstrap-dark.yaml b/themes/bootstrap-dark.yaml index b0fb2ede..fe724935 100644 --- a/themes/bootstrap-dark.yaml +++ b/themes/bootstrap-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Bootstrap.bootstrap-vscode-theme" version: "0.0.9" installs: 73 + rating: 0 + ratings: 0 author: "Bootstrap" repo: "https://github.com/twbs/bootstrap-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Bootstrap.bootstrap-vscode-theme" diff --git a/themes/bootstrap-light.yaml b/themes/bootstrap-light.yaml index 8bec8fcd..aba3ec70 100644 --- a/themes/bootstrap-light.yaml +++ b/themes/bootstrap-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Bootstrap.bootstrap-vscode-theme" version: "0.0.9" installs: 73 + rating: 0 + ratings: 0 author: "Bootstrap" repo: "https://github.com/twbs/bootstrap-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Bootstrap.bootstrap-vscode-theme" diff --git a/themes/borderless-tokyo-night.yaml b/themes/borderless-tokyo-night.yaml new file mode 100644 index 00000000..508db02c --- /dev/null +++ b/themes/borderless-tokyo-night.yaml @@ -0,0 +1,52 @@ +name: "Borderless Tokyo Night" +source: + marketplace_id: "gusvasconcelos.borderless-tokyonight" + version: "1.0.5" + installs: 1327 + rating: 0 + ratings: 0 + author: "Gus Vasconcelos" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gusvasconcelos.borderless-tokyonight" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 59.3 + black: 0 + red: 49.4 + green: 72.2 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 32.1 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 45.8 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 59 diff --git a/themes/borders-blue.yaml b/themes/borders-blue.yaml index 8341b76b..8d21ac6d 100644 --- a/themes/borders-blue.yaml +++ b/themes/borders-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bloumbs.borders-dark" version: "1.7.0" installs: 4683 + rating: 0 + ratings: 0 author: "Bloumbs" repo: "https://github.com/Bloumbs/Borders-Dark" url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" diff --git a/themes/borders-dark.yaml b/themes/borders-dark.yaml index 5bf2a08e..feade423 100644 --- a/themes/borders-dark.yaml +++ b/themes/borders-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bloumbs.borders-dark" version: "1.7.0" installs: 4683 + rating: 0 + ratings: 0 author: "Bloumbs" repo: "https://github.com/Bloumbs/Borders-Dark" url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" diff --git a/themes/borders-darker.yaml b/themes/borders-darker.yaml index e0d22223..7df933c7 100644 --- a/themes/borders-darker.yaml +++ b/themes/borders-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bloumbs.borders-dark" version: "1.7.0" installs: 4683 + rating: 0 + ratings: 0 author: "Bloumbs" repo: "https://github.com/Bloumbs/Borders-Dark" url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" diff --git a/themes/borealis.yaml b/themes/borealis.yaml index 8c0d7e79..6e5bcc7c 100644 --- a/themes/borealis.yaml +++ b/themes/borealis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlejandroMejia.borealis-vscode-theme" version: "1.0.2" installs: 823 + rating: 5 + ratings: 1 author: "Alejandro Mejia" repo: "https://github.com/HX-AQuintero/awesome-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlejandroMejia.borealis-vscode-theme" diff --git a/themes/borealsharp.yaml b/themes/borealsharp.yaml index 8d79692e..2b2afb3a 100644 --- a/themes/borealsharp.yaml +++ b/themes/borealsharp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sullyvan.borealsharp" version: "0.0.1" installs: 172 + rating: 0 + ratings: 0 author: "Sullyvan" repo: "https://github.com/SullyvanBoulanger/borealsharp" url: "https://marketplace.visualstudio.com/items?itemName=Sullyvan.borealsharp" diff --git a/themes/bot2b.yaml b/themes/bot2b.yaml index 93491035..d4bef855 100644 --- a/themes/bot2b.yaml +++ b/themes/bot2b.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lenglounh.BOT2B" version: "0.0.2" installs: 85 + rating: 0 + ratings: 0 author: "lenglounh" repo: "https://github.com/lenglounh/BOT2B" url: "https://marketplace.visualstudio.com/items?itemName=lenglounh.BOT2B" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 67.6 black: 0 diff --git a/themes/botany-color-theme.yaml b/themes/botany-color-theme.yaml index e46487cd..4c8e75db 100644 --- a/themes/botany-color-theme.yaml +++ b/themes/botany-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "prabinpanta0.theme-botany" version: "1.0.2" installs: 78 + rating: 0 + ratings: 0 author: "Prabin Panta" repo: "https://github.com/prabinpanta0/theme-botany" url: "https://marketplace.visualstudio.com/items?itemName=prabinpanta0.theme-botany" diff --git a/themes/botany.yaml b/themes/botany.yaml index f2b4b43f..4f6c8272 100644 --- a/themes/botany.yaml +++ b/themes/botany.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ssera-themes" version: "2.0.2" installs: 334 + rating: 0 + ratings: 0 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" diff --git a/themes/bougainvillea.yaml b/themes/bougainvillea.yaml index 223fb86f..7a90b829 100644 --- a/themes/bougainvillea.yaml +++ b/themes/bougainvillea.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kitvex.bougainvillea" version: "0.0.1" installs: 96 + rating: 0 + ratings: 0 author: "kitvex" repo: "https://github.com/kitvex/bougainvillea" url: "https://marketplace.visualstudio.com/items?itemName=kitvex.bougainvillea" diff --git a/themes/boundless.yaml b/themes/boundless.yaml index fa03802a..52c129a2 100644 --- a/themes/boundless.yaml +++ b/themes/boundless.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bakrimoharram.boundless" version: "0.0.2" installs: 104 + rating: 0 + ratings: 0 author: "bakrimoharram" repo: "https://github.com/bakrimoharram/boundless-theme" url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.boundless" diff --git a/themes/bouquet.yaml b/themes/bouquet.yaml index 81abfa00..48a9e831 100644 --- a/themes/bouquet.yaml +++ b/themes/bouquet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "richiebzzzt.bouquet" version: "1.407.7" installs: 69 + rating: 0 + ratings: 0 author: "Richie Lee" repo: "https://github.com/richiebzzzt/bouquet" url: "https://marketplace.visualstudio.com/items?itemName=richiebzzzt.bouquet" diff --git a/themes/boxlang-dark-neon.yaml b/themes/boxlang-dark-neon.yaml index 321da723..cf84e18e 100644 --- a/themes/boxlang-dark-neon.yaml +++ b/themes/boxlang-dark-neon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ortus-solutions.vscode-boxlang-theme" version: "1.1.0" installs: 276 + rating: 0 + ratings: 0 author: "Ortus Solutions" repo: "https://github.com/ortus-boxlang/vscode-boxlang-theme" url: "https://marketplace.visualstudio.com/items?itemName=ortus-solutions.vscode-boxlang-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 99.3 black: 0 diff --git a/themes/boxuk-contrast.yaml b/themes/boxuk-contrast.yaml index 371cc08f..0a3303f6 100644 --- a/themes/boxuk-contrast.yaml +++ b/themes/boxuk-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/boxuk-light.yaml b/themes/boxuk-light.yaml index 63bc5862..eb71e6b8 100644 --- a/themes/boxuk-light.yaml +++ b/themes/boxuk-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/boxuk.yaml b/themes/boxuk.yaml index 4440284d..4e2c8ccc 100644 --- a/themes/boxuk.yaml +++ b/themes/boxuk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/brackethive-theme.yaml b/themes/brackethive-theme.yaml index 620214c0..d809b438 100644 --- a/themes/brackethive-theme.yaml +++ b/themes/brackethive-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BracketHive.brackethive-theme" version: "1.0.0" installs: 111 + rating: 0 + ratings: 0 author: "BracketHive" repo: "https://github.com/BracketHive/BracketHiveVSCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=BracketHive.brackethive-theme" diff --git a/themes/brave-contrast.yaml b/themes/brave-contrast.yaml index a6a6d57d..4c370333 100644 --- a/themes/brave-contrast.yaml +++ b/themes/brave-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/brave-light.yaml b/themes/brave-light.yaml index ccfb1ae8..efdde936 100644 --- a/themes/brave-light.yaml +++ b/themes/brave-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/brave.yaml b/themes/brave.yaml index 26f3ee0b..4ff65ad2 100644 --- a/themes/brave.yaml +++ b/themes/brave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/breath2ripoff.yaml b/themes/breath2ripoff.yaml index 8c428524..574e9dbc 100644 --- a/themes/breath2ripoff.yaml +++ b/themes/breath2ripoff.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HORSE.breath2ripoff" version: "1.0.2" installs: 917 + rating: 5 + ratings: 1 author: "H___O___R___S___E" repo: "https://github.com/MuazAlhaidar/Breath2Ripoff_VSCodeVersion" url: "https://marketplace.visualstudio.com/items?itemName=HORSE.breath2ripoff" diff --git a/themes/breeze.yaml b/themes/breeze.yaml index 29404e56..12ec4f05 100644 --- a/themes/breeze.yaml +++ b/themes/breeze.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BreezeTheme.BreezeTheme" version: "0.0.1" installs: 165 + rating: 5 + ratings: 1 author: "Breeze Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=BreezeTheme.BreezeTheme" diff --git a/themes/brew-theme.yaml b/themes/brew-theme.yaml index 1d012883..d7cac501 100644 --- a/themes/brew-theme.yaml +++ b/themes/brew-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "turtlehq.brew-theme" version: "1.0.5" installs: 795 + rating: 0 + ratings: 0 author: "Turtle Labs LLC" repo: "https://github.com/trentbrew/brew-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=turtlehq.brew-theme" diff --git a/themes/brid-purple-garden-dark.yaml b/themes/brid-purple-garden-dark.yaml index 705c2bbe..5c0b5de9 100644 --- a/themes/brid-purple-garden-dark.yaml +++ b/themes/brid-purple-garden-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "layon-extensions.brid-purple-garden" version: "1.0.0" installs: 10 + rating: 0 + ratings: 0 author: "layon-extensions" repo: "https://github.com/Fernando-Leon/theme-brid" url: "https://marketplace.visualstudio.com/items?itemName=layon-extensions.brid-purple-garden" diff --git a/themes/brid-purple-garden-light.yaml b/themes/brid-purple-garden-light.yaml index 66bf3122..591cbbf2 100644 --- a/themes/brid-purple-garden-light.yaml +++ b/themes/brid-purple-garden-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "layon-extensions.brid-purple-garden" version: "1.0.0" installs: 10 + rating: 0 + ratings: 0 author: "layon-extensions" repo: "https://github.com/Fernando-Leon/theme-brid" url: "https://marketplace.visualstudio.com/items?itemName=layon-extensions.brid-purple-garden" diff --git a/themes/briggitehelm.yaml b/themes/briggitehelm.yaml index 044b3f33..06ac8904 100644 --- a/themes/briggitehelm.yaml +++ b/themes/briggitehelm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ColonelMoutarde.mammoth-color-theme" version: "1.0.1" installs: 101 + rating: 0 + ratings: 0 author: "Colonel Moutarde" repo: "https://github.com/Karakoukie/mammoth-vs-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=ColonelMoutarde.mammoth-color-theme" diff --git a/themes/bright-colors-blue.yaml b/themes/bright-colors-blue.yaml index 1e92a83b..69c94ded 100644 --- a/themes/bright-colors-blue.yaml +++ b/themes/bright-colors-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nikhil2007.Bright-Color" version: "1.4.2" installs: 17810 + rating: 5 + ratings: 2 author: "Nikhil Nath Jha" repo: "https://github.com/jhanikhilnath/bright_colors_theme" url: "https://marketplace.visualstudio.com/items?itemName=nikhil2007.Bright-Color" diff --git a/themes/bright-lights.yaml b/themes/bright-lights.yaml index a762054f..f79aa59e 100644 --- a/themes/bright-lights.yaml +++ b/themes/bright-lights.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hittero.bright-lights" version: "0.1.0" installs: 38 + rating: 0 + ratings: 0 author: "Hittero" repo: "https://github.com/joaodanilo123/bright-lights-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=hittero.bright-lights" diff --git a/themes/britecore.yaml b/themes/britecore.yaml index 75fdb3d5..58fce580 100644 --- a/themes/britecore.yaml +++ b/themes/britecore.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "z3by.vscode-theme-britecore" version: "0.0.1" installs: 866 + rating: 5 + ratings: 1 author: "z3by" repo: "https://github.com/z3by/vscode-theme-britecore" url: "https://marketplace.visualstudio.com/items?itemName=z3by.vscode-theme-britecore" diff --git a/themes/brogrammer-plus.yaml b/themes/brogrammer-plus.yaml index 2fcede9f..03fbd594 100644 --- a/themes/brogrammer-plus.yaml +++ b/themes/brogrammer-plus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jackjyq.brogrammer-plus" version: "1.0.1" installs: 8958 + rating: 5 + ratings: 3 author: "Jack Jiang" repo: "https://github.com/jackjyq/vscode-theme-brogrammer-plus" url: "https://marketplace.visualstudio.com/items?itemName=jackjyq.brogrammer-plus" diff --git a/themes/bromium.yaml b/themes/bromium.yaml index a3a2d893..fe8c8d63 100644 --- a/themes/bromium.yaml +++ b/themes/bromium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheBromo.bromium" version: "0.1.4" installs: 2047 + rating: 5 + ratings: 1 author: "TheBromo" repo: "https://github.com/TheBromo/bromium" url: "https://marketplace.visualstudio.com/items?itemName=TheBromo.bromium" diff --git a/themes/brownhu.yaml b/themes/brownhu.yaml index 4a3f6ad3..0727afe6 100644 --- a/themes/brownhu.yaml +++ b/themes/brownhu.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Brownhu.duang" version: "0.1.2" installs: 1860 + rating: 5 + ratings: 1 author: "Brownhu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Brownhu.duang" diff --git a/themes/brownista.yaml b/themes/brownista.yaml index bea5646f..21a39804 100644 --- a/themes/brownista.yaml +++ b/themes/brownista.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hubaldium.brownista-hubaldium" version: "0.0.1" installs: 70 + rating: 0 + ratings: 0 author: "Brownista" repo: "https://github.com/theBoss-png/brownista-hubaldium" url: "https://marketplace.visualstudio.com/items?itemName=hubaldium.brownista-hubaldium" diff --git a/themes/bruno-s-wet-dream.yaml b/themes/bruno-s-wet-dream.yaml index 8e346559..607db9a0 100644 --- a/themes/bruno-s-wet-dream.yaml +++ b/themes/bruno-s-wet-dream.yaml @@ -2,7 +2,9 @@ name: "bruno's wet dream" source: marketplace_id: "massoladb.brunos-wet-dream" version: "0.3.0" - installs: 190 + installs: 191 + rating: 0 + ratings: 0 author: "Felipe Massola" repo: "https://github.com/massoladb/brunos-wet-dream" url: "https://marketplace.visualstudio.com/items?itemName=massoladb.brunos-wet-dream" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 323 + pair: null contrast: fg: 105.7 black: 0 diff --git a/themes/brutalcode.yaml b/themes/brutalcode.yaml index 45d00ce1..017a04e2 100644 --- a/themes/brutalcode.yaml +++ b/themes/brutalcode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WaiYanMinLwin.brutal-code" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Wai Yan Min Lwin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=WaiYanMinLwin.brutal-code" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 104.4 black: 0 diff --git a/themes/bts-borahae.yaml b/themes/bts-borahae.yaml index 0879c41c..c372045e 100644 --- a/themes/bts-borahae.yaml +++ b/themes/bts-borahae.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sooj.btsborahae-dark" version: "1.0.3" installs: 1798 + rating: 5 + ratings: 1 author: "sooj" repo: "https://github.com/cloudycatt/btsborahae-dark" url: "https://marketplace.visualstudio.com/items?itemName=sooj.btsborahae-dark" diff --git a/themes/btv-dark.yaml b/themes/btv-dark.yaml index ffc9d3f1..1407c369 100644 --- a/themes/btv-dark.yaml +++ b/themes/btv-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BrandonVout.btv-themes" version: "0.13.0" installs: 34 + rating: 0 + ratings: 0 author: "Brandon Vout" repo: "https://github.com/brandonvout/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=BrandonVout.btv-themes" diff --git a/themes/bubba-kush-v1.yaml b/themes/bubba-kush-v1.yaml index 22a5e01d..4d95fc28 100644 --- a/themes/bubba-kush-v1.yaml +++ b/themes/bubba-kush-v1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "astergabe.bubba-kush-theme" version: "0.0.6" installs: 132 + rating: 5 + ratings: 1 author: "Gabriel Fernandes" repo: null url: "https://marketplace.visualstudio.com/items?itemName=astergabe.bubba-kush-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.7 black: 0 diff --git a/themes/bubble-theme.yaml b/themes/bubble-theme.yaml index 25345bbe..1d8411f8 100644 --- a/themes/bubble-theme.yaml +++ b/themes/bubble-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NiltonPontes.bubble-theme" version: "1.2.0" installs: 480 + rating: 5 + ratings: 2 author: "Nilton Pontes" repo: "https://github.com/niltoneapontes/bubble-theme" url: "https://marketplace.visualstudio.com/items?itemName=NiltonPontes.bubble-theme" diff --git a/themes/bubblegum-color-theme.yaml b/themes/bubblegum-color-theme.yaml index 68108d6b..281f99a4 100644 --- a/themes/bubblegum-color-theme.yaml +++ b/themes/bubblegum-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wavebeem.theme-unoduetre" version: "5.11.1" installs: 4290 + rating: 5 + ratings: 5 author: "Sage Fennel" repo: "https://github.com/wavebeem/vscode-theme-unoduetre" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" diff --git a/themes/bubblegum-milkshake.yaml b/themes/bubblegum-milkshake.yaml index 45ad74f1..7c0e1278 100644 --- a/themes/bubblegum-milkshake.yaml +++ b/themes/bubblegum-milkshake.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "persocon.bubblegum-milkshake" version: "0.0.2" installs: 1499 + rating: 0 + ratings: 0 author: "persocon" repo: "https://github.com/persocon/bubblegum-milkshake" url: "https://marketplace.visualstudio.com/items?itemName=persocon.bubblegum-milkshake" diff --git a/themes/bubblegum.yaml b/themes/bubblegum.yaml index 37ec68f0..434f4b7c 100644 --- a/themes/bubblegum.yaml +++ b/themes/bubblegum.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AdrianTriS.bubblegum-theme" version: "1.0.0" installs: 58 + rating: 0 + ratings: 0 author: "AdrianTriS" repo: "https://github.com/AdrianTriSetiawan/Bubblegums-theme" url: "https://marketplace.visualstudio.com/items?itemName=AdrianTriS.bubblegum-theme" diff --git a/themes/bubblegumtheme.yaml b/themes/bubblegumtheme.yaml index f25b784e..e0afef07 100644 --- a/themes/bubblegumtheme.yaml +++ b/themes/bubblegumtheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MarioFernndezEstvez.bubblegumtheme" version: "0.0.2" installs: 463 + rating: 0 + ratings: 0 author: "Mario Fernández Estévez" repo: "https://github.com/mariof99/bubbleGumTheme" url: "https://marketplace.visualstudio.com/items?itemName=MarioFernndezEstvez.bubblegumtheme" diff --git a/themes/buddha-a-super-minimal-theme-for-vscode.yaml b/themes/buddha-a-super-minimal-theme-for-vscode.yaml index 2506ee98..ac68ab97 100644 --- a/themes/buddha-a-super-minimal-theme-for-vscode.yaml +++ b/themes/buddha-a-super-minimal-theme-for-vscode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AnupJha.buddha-a-super-minimal-theme-for-vscode" version: "0.0.1" installs: 1036 + rating: 4 + ratings: 2 author: "Anup Jha" repo: "https://github.com/anupjha/buddha-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=AnupJha.buddha-a-super-minimal-theme-for-vscode" diff --git a/themes/budha.yaml b/themes/budha.yaml index 9ee39e76..21b2166d 100644 --- a/themes/budha.yaml +++ b/themes/budha.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "overfl0w.budha" version: "0.0.1" installs: 75 + rating: 0 + ratings: 0 author: "overfl0w" repo: null url: "https://marketplace.visualstudio.com/items?itemName=overfl0w.budha" diff --git a/themes/budokan.yaml b/themes/budokan.yaml index 0d21ce68..01ee15d1 100644 --- a/themes/budokan.yaml +++ b/themes/budokan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "matheusfunil.budokan-theme" version: "1.1.3" installs: 666 + rating: 5 + ratings: 1 author: "Matheus Gabriel" repo: "https://github.com/matheusfnl/budokan-theme" url: "https://marketplace.visualstudio.com/items?itemName=matheusfunil.budokan-theme" diff --git a/themes/bugged-gpu.yaml b/themes/bugged-gpu.yaml index c4d367f5..ae4693c1 100644 --- a/themes/bugged-gpu.yaml +++ b/themes/bugged-gpu.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BuggedGpuTheme.darker-high-contrast-bugged-gpu" version: "1.0.0" installs: 156 + rating: 5 + ratings: 2 author: "Bugged Gpu Theme" repo: "https://github.com/jguigo/bugged-gpu-theme" url: "https://marketplace.visualstudio.com/items?itemName=BuggedGpuTheme.darker-high-contrast-bugged-gpu" diff --git a/themes/buhtig.yaml b/themes/buhtig.yaml index 0431cde2..ca240884 100644 --- a/themes/buhtig.yaml +++ b/themes/buhtig.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NeoWees.onebadass-theme-neowees" version: "0.6.0" installs: 109 + rating: 0 + ratings: 0 author: "Neo Wees" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NeoWees.onebadass-theme-neowees" diff --git a/themes/bullish-theme.yaml b/themes/bullish-theme.yaml index c207cf8c..952a5ad1 100644 --- a/themes/bullish-theme.yaml +++ b/themes/bullish-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zhiking.bullish-theme" version: "0.0.4" installs: 454 + rating: 5 + ratings: 1 author: "zhiking" repo: "https://github.com/zyj1022/vscode-bullish-theme" url: "https://marketplace.visualstudio.com/items?itemName=zhiking.bullish-theme" diff --git a/themes/bumblebee.yaml b/themes/bumblebee.yaml new file mode 100644 index 00000000..74d5f5a2 --- /dev/null +++ b/themes/bumblebee.yaml @@ -0,0 +1,52 @@ +name: "Bumblebee" +source: + marketplace_id: "IbrahimDirar.bumblebee" + version: "1.3.0" + installs: 1341 + rating: 0 + ratings: 0 + author: "Ibrahim Dirar" + repo: "https://github.com/ibrahimdirar/bumblebee-theme" + url: "https://marketplace.visualstudio.com/items?itemName=IbrahimDirar.bumblebee" +colors: + bg: "#0A0A0A" + fg: "#B3B8C5" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 63.9 + black: 0 + red: 44.9 + green: 55.1 + yellow: 67.4 + blue: 61.5 + magenta: 92.9 + cyan: 78.7 + white: 72.6 + brightBlack: 23.8 + brightRed: 47.5 + brightGreen: 76.8 + brightYellow: 70.4 + brightBlue: 64.2 + brightMagenta: 96 + brightCyan: 81.7 + brightWhite: 107.7 diff --git a/themes/burnt-chestnut.yaml b/themes/burnt-chestnut.yaml index 5bf231c0..593792c1 100644 --- a/themes/burnt-chestnut.yaml +++ b/themes/burnt-chestnut.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.cocoa-butter" version: "0.1.4" installs: 1141 + rating: 5 + ratings: 1 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/cocoabutter" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.cocoa-butter" diff --git a/themes/burple-dark.yaml b/themes/burple-dark.yaml index 23ba9aed..dd17e878 100644 --- a/themes/burple-dark.yaml +++ b/themes/burple-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vencordthemer.burple" version: "1.0.4" installs: 79 + rating: 0 + ratings: 0 author: "Vencordthemer" repo: "https://github.com/vencordthemer/burple" url: "https://marketplace.visualstudio.com/items?itemName=Vencordthemer.burple" diff --git a/themes/busbyvscode.yaml b/themes/busbyvscode.yaml index 2c678932..23d3bd10 100644 --- a/themes/busbyvscode.yaml +++ b/themes/busbyvscode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MikeBusby.busbyvscode" version: "0.0.3" installs: 132 + rating: 0 + ratings: 0 author: "MikeBusby" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MikeBusby.busbyvscode" diff --git a/themes/bushland.yaml b/themes/bushland.yaml index f2efa7bf..862644ff 100644 --- a/themes/bushland.yaml +++ b/themes/bushland.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.bushland" version: "0.4.8" installs: 1430 + rating: 5 + ratings: 1 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/bushland" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.bushland" diff --git a/themes/butrin-theme.yaml b/themes/butrin-theme.yaml index 16ed2a92..1abae836 100644 --- a/themes/butrin-theme.yaml +++ b/themes/butrin-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "stormedx.butrin-theme" version: "0.0.4" installs: 1312 + rating: 5 + ratings: 3 author: "stormed" repo: "https://github.com/stormedx/butrin-theme" url: "https://marketplace.visualstudio.com/items?itemName=stormedx.butrin-theme" diff --git a/themes/butter-green-fork.yaml b/themes/butter-green-fork.yaml index fe6f568e..6fef1ad1 100644 --- a/themes/butter-green-fork.yaml +++ b/themes/butter-green-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xynny.delightfulgreen" version: "0.0.1" installs: 534 + rating: 0 + ratings: 0 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.delightfulgreen" diff --git a/themes/buttercawfee.yaml b/themes/buttercawfee.yaml index 0172a1e8..3bf1b796 100644 --- a/themes/buttercawfee.yaml +++ b/themes/buttercawfee.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shurj0.buttercawfee" version: "1.1.5" installs: 10 + rating: 0 + ratings: 0 author: "shurj0" repo: "https://github.com/shurj0/Buttercawfee" url: "https://marketplace.visualstudio.com/items?itemName=shurj0.buttercawfee" diff --git a/themes/bynawers.yaml b/themes/bynawers.yaml index 562f8999..94dc9b11 100644 --- a/themes/bynawers.yaml +++ b/themes/bynawers.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Bynawers.manjaro-bynawers-theme" version: "0.0.1" installs: 770 + rating: 5 + ratings: 1 author: "Bynawers" repo: "https://github.com/Bynawers/vscode-manjaro-theme" url: "https://marketplace.visualstudio.com/items?itemName=Bynawers.manjaro-bynawers-theme" diff --git a/themes/byteglow.yaml b/themes/byteglow.yaml index cca148df..04e44940 100644 --- a/themes/byteglow.yaml +++ b/themes/byteglow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ByteLoom.byteglow-theme" version: "1.0.1" installs: 36 + rating: 5 + ratings: 1 author: "AMITRAJIT SARKAR" repo: "https://github.com/Amitrajit007/ByteGlow" url: "https://marketplace.visualstudio.com/items?itemName=ByteLoom.byteglow-theme" diff --git a/themes/bytenight.yaml b/themes/bytenight.yaml index a9c3c12e..346f9612 100644 --- a/themes/bytenight.yaml +++ b/themes/bytenight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AmirPhilAdam.bytenighttheme" version: "1.0.0" installs: 27 + rating: 5 + ratings: 1 author: "Amir Phil Adam" repo: "https://github.com/amirphiladam2/ByteNight" url: "https://marketplace.visualstudio.com/items?itemName=AmirPhilAdam.bytenighttheme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "magenta" hue: 264 + pair: null contrast: fg: 92.5 black: 0 diff --git a/themes/c-c-theme.yaml b/themes/c-c-theme.yaml index 78fc9bd4..13be97ab 100644 --- a/themes/c-c-theme.yaml +++ b/themes/c-c-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Xen.ccpp-theme" version: "0.3.4" installs: 18877 + rating: 5 + ratings: 2 author: "Xen" repo: "https://github.com/xenkuo/ccpp_theme" url: "https://marketplace.visualstudio.com/items?itemName=Xen.ccpp-theme" diff --git a/themes/c-carbon-6.yaml b/themes/c-carbon-6.yaml new file mode 100644 index 00000000..484b5290 --- /dev/null +++ b/themes/c-carbon-6.yaml @@ -0,0 +1,52 @@ +name: "C-Carbon-6" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#09090B" + fg: "#FAFAFA" + black: "#0A0A0A" + red: "#E54D4D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#3D8FD1" + magenta: "#B369DD" + cyan: "#29C3A0" + white: "#FAFAFA" + brightBlack: "#0A0A0A" + brightRed: "#E54D4D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#3D8FD1" + brightMagenta: "#B369DD" + brightCyan: "#29C3A0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.5 + black: 0 + red: 36.9 + green: 58.5 + yellow: 52.6 + blue: 39.6 + magenta: 39.3 + cyan: 58.5 + white: 104.5 + brightBlack: 0 + brightRed: 36.9 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 39.6 + brightMagenta: 39.3 + brightCyan: 58.5 + brightWhite: 104.5 diff --git a/themes/c-dracula.yaml b/themes/c-dracula.yaml index a78bf9ae..ef3bdc34 100644 --- a/themes/c-dracula.yaml +++ b/themes/c-dracula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Gabrieldp-dev.reduc-csharp-dracula" version: "1.0.2" installs: 9012 + rating: 5 + ratings: 2 author: "Gabriel-dp" repo: "https://github.com/gabrieldp23/sBotics_Snippets_vscode" url: "https://marketplace.visualstudio.com/items?itemName=Gabrieldp-dev.reduc-csharp-dracula" diff --git a/themes/c-e-o.yaml b/themes/c-e-o.yaml new file mode 100644 index 00000000..169ccfad --- /dev/null +++ b/themes/c-e-o.yaml @@ -0,0 +1,50 @@ +name: "c.e.o" +source: + marketplace_id: "ceo.c-e-o" + version: "1.0.2" + installs: 94 + author: "ceo" + repo: "https://github.com/Ceo-Sammarco/c.e.o" + url: "https://marketplace.visualstudio.com/items?itemName=ceo.c-e-o" +colors: + bg: "#1C1C21" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.9 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.1 + cyan: 46.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 37.9 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/c0v3r.yaml b/themes/c0v3r.yaml index 504c65b1..0c01dd57 100644 --- a/themes/c0v3r.yaml +++ b/themes/c0v3r.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LiamLoughty.c0v3r" version: "0.0.1" installs: 99 + rating: 0 + ratings: 0 author: "Liam Loughty" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LiamLoughty.c0v3r" diff --git a/themes/cadet-dark-gray.yaml b/themes/cadet-dark-gray.yaml index 6d4cfbbb..cfc0d136 100644 --- a/themes/cadet-dark-gray.yaml +++ b/themes/cadet-dark-gray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SethCox.cadet" version: "0.0.4" installs: 2440 + rating: 5 + ratings: 2 author: "Seth Cox" repo: "https://github.com/sethaddison/Cadet-Vscode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SethCox.cadet" diff --git a/themes/cadet-medium-gray.yaml b/themes/cadet-medium-gray.yaml new file mode 100644 index 00000000..8e064b8c --- /dev/null +++ b/themes/cadet-medium-gray.yaml @@ -0,0 +1,52 @@ +name: "Cadet Medium Gray" +source: + marketplace_id: "SethCox.cadet" + version: "0.0.4" + installs: 2440 + rating: 5 + ratings: 2 + author: "Seth Cox" + repo: "https://github.com/sethaddison/Cadet-Vscode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=SethCox.cadet" +colors: + bg: "#1F2937" + fg: "#FFF9F1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + pair: null + contrast: + fg: 100.9 + black: 0 + red: 24.2 + green: 50.5 + yellow: 83.1 + blue: 24.9 + magenta: 27.2 + cyan: 45 + white: 87.5 + brightBlack: 19.5 + brightRed: 36 + brightGreen: 61 + brightYellow: 93.1 + brightBlue: 37.5 + brightMagenta: 42.8 + brightCyan: 52.9 + brightWhite: 87.5 diff --git a/themes/caf-warmth.yaml b/themes/caf-warmth.yaml index c7e8dd39..44738f1d 100644 --- a/themes/caf-warmth.yaml +++ b/themes/caf-warmth.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Icycoldveins.verum-monokai-themes" version: "1.2.1" installs: 46 + rating: 5 + ratings: 1 author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" diff --git a/themes/cafelle.yaml b/themes/cafelle.yaml new file mode 100644 index 00000000..bdc04c41 --- /dev/null +++ b/themes/cafelle.yaml @@ -0,0 +1,52 @@ +name: "Cafelle" +source: + marketplace_id: "JacobClarey.cafelle-light" + version: "1.0.4" + installs: 130 + rating: 0 + ratings: 0 + author: "Jacob Clarey" + repo: "https://github.com/jakeclarey/cafelle-light" + url: "https://marketplace.visualstudio.com/items?itemName=JacobClarey.cafelle-light" +colors: + bg: "#FEDE9D" + fg: "#5A5A5A" + black: "#324A4D" + red: "#E66533" + green: "#52B852" + yellow: "#328F6E" + blue: "#2E4AEB" + magenta: "#CF6363" + cyan: "#49D6E9" + white: "#5A5A5A" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#82BEE4" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "light" + accent: "purple" + hue: 85 + pair: null + contrast: + fg: 66.6 + black: 74.6 + red: 42.9 + green: 31.8 + yellow: 49.5 + blue: 63.4 + magenta: 47.2 + cyan: 14 + white: 66.6 + brightBlack: 63 + brightRed: 37.8 + brightGreen: 0 + brightYellow: 29.9 + brightBlue: 21.7 + brightMagenta: 25.9 + brightCyan: 10.8 + brightWhite: 7.6 diff --git a/themes/caffe-crema-dark.yaml b/themes/caffe-crema-dark.yaml index eabe0980..5816cf45 100644 --- a/themes/caffe-crema-dark.yaml +++ b/themes/caffe-crema-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MonicaVilla.caffe-crema-theme" version: "1.0.1" installs: 301 + rating: 0 + ratings: 0 author: "Mónica Villarroel" repo: "https://github.com/MonicaVillap/CaffeCremaTheme" url: "https://marketplace.visualstudio.com/items?itemName=MonicaVilla.caffe-crema-theme" diff --git a/themes/caffe-crema-light.yaml b/themes/caffe-crema-light.yaml index 8f4a4d9b..c77af482 100644 --- a/themes/caffe-crema-light.yaml +++ b/themes/caffe-crema-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MonicaVilla.caffe-crema-theme" version: "1.0.1" installs: 301 + rating: 0 + ratings: 0 author: "Mónica Villarroel" repo: "https://github.com/MonicaVillap/CaffeCremaTheme" url: "https://marketplace.visualstudio.com/items?itemName=MonicaVilla.caffe-crema-theme" diff --git a/themes/caffeinated-rust.yaml b/themes/caffeinated-rust.yaml index 6d65721a..d7f292fa 100644 --- a/themes/caffeinated-rust.yaml +++ b/themes/caffeinated-rust.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CaffeinatedMinds.caffeinated-rust-dark" version: "0.1.0" installs: 140 + rating: 0 + ratings: 0 author: "Caffeinated Minds" repo: "https://github.com/caffeinated-minds/caffeinated-rust" url: "https://marketplace.visualstudio.com/items?itemName=CaffeinatedMinds.caffeinated-rust-dark" diff --git a/themes/cal-4700.yaml b/themes/cal-4700.yaml index 7e515d05..1305034a 100644 --- a/themes/cal-4700.yaml +++ b/themes/cal-4700.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheOsmosianOrderofPlainEnglishProgrammers.cal-4700-theme" version: "0.0.1" installs: 197 + rating: 0 + ratings: 0 author: "The Osmosian Order of Plain English Programmers" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TheOsmosianOrderofPlainEnglishProgrammers.cal-4700-theme" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 87.2 black: 87.2 diff --git a/themes/calabaza.yaml b/themes/calabaza.yaml new file mode 100644 index 00000000..bae71ad6 --- /dev/null +++ b/themes/calabaza.yaml @@ -0,0 +1,50 @@ +name: "calabaza" +source: + marketplace_id: "calabaza.calabaza" + version: "0.0.1" + installs: 34 + author: "calabaza" + repo: "https://github.com/Yoad-rg/calabaza" + url: "https://marketplace.visualstudio.com/items?itemName=calabaza.calabaza" +colors: + bg: "#FFFFFF" + fg: "#070007" + black: "#2C2C3E" + red: "#FF3399" + green: "#00B253" + yellow: "#FFAA00" + blue: "#01A9E1" + magenta: "#CC66FF" + cyan: "#00CED1" + white: "#FFFFFF" + brightBlack: "#3D3D56" + brightRed: "#FF3399" + brightGreen: "#00B253" + brightYellow: "#FFAA00" + brightBlue: "#01A9E1" + brightMagenta: "#CC66FF" + brightCyan: "#00CED1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 106 + black: 100.2 + red: 59.7 + green: 53.2 + yellow: 36 + blue: 51.8 + magenta: 56.6 + cyan: 36.9 + white: 0 + brightBlack: 94.4 + brightRed: 59.7 + brightGreen: 53.2 + brightYellow: 36 + brightBlue: 51.8 + brightMagenta: 56.6 + brightCyan: 36.9 + brightWhite: 0 diff --git a/themes/calm-dark.yaml b/themes/calm-dark.yaml index ee4cc367..3bc8566d 100644 --- a/themes/calm-dark.yaml +++ b/themes/calm-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/calm-days-sober-nights-day-sky.yaml b/themes/calm-days-sober-nights-day-sky.yaml new file mode 100644 index 00000000..65535385 --- /dev/null +++ b/themes/calm-days-sober-nights-day-sky.yaml @@ -0,0 +1,52 @@ +name: "Calm Days, Sober Nights - Day (Sky)" +source: + marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" + version: "7.1.6" + installs: 6373 + rating: 5 + ratings: 4 + author: "Giovani Cascaes" + repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" +colors: + bg: "#FFFFFF" + fg: "#687082" + black: "#000000" + red: "#EB6C81" + green: "#00B342" + yellow: "#EDC045" + blue: "#2EA0D1" + magenta: "#B375C7" + cyan: "#46ACBA" + white: "#C5CDE0" + brightBlack: "#929BB0" + brightRed: "#F07186" + brightGreen: "#00B342" + brightYellow: "#F2C549" + brightBlue: "#36A6D6" + brightMagenta: "#B87ACC" + brightCyan: "#4CB2BF" + brightWhite: "#DAE1F0" +meta: + mode: "light" + accent: "green" + hue: null + pair: "Calm Days, Sober Nights - Night (Sky)" + contrast: + fg: 74.4 + black: 106 + red: 56.1 + green: 53 + yellow: 30.8 + blue: 55.9 + magenta: 60.6 + cyan: 51.6 + white: 26.8 + brightBlack: 53.7 + brightRed: 53.8 + brightGreen: 53 + brightYellow: 28 + brightBlue: 53.1 + brightMagenta: 58.2 + brightCyan: 48.7 + brightWhite: 15.4 diff --git a/themes/calm-days-sober-nights-day.yaml b/themes/calm-days-sober-nights-day.yaml new file mode 100644 index 00000000..69b163b7 --- /dev/null +++ b/themes/calm-days-sober-nights-day.yaml @@ -0,0 +1,52 @@ +name: "Calm Days, Sober Nights - Day" +source: + marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" + version: "7.1.6" + installs: 6373 + rating: 5 + ratings: 4 + author: "Giovani Cascaes" + repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" +colors: + bg: "#F0F4F7" + fg: "#6B7682" + black: "#000000" + red: "#EB6C81" + green: "#00B342" + yellow: "#EDC045" + blue: "#2EA0D1" + magenta: "#B375C7" + cyan: "#46ACBA" + white: "#C7D4E0" + brightBlack: "#94A2B0" + brightRed: "#F07186" + brightGreen: "#00B342" + brightYellow: "#F2C549" + brightBlue: "#36A6D6" + brightMagenta: "#B87ACC" + brightCyan: "#4CB2BF" + brightWhite: "#DDE7F0" +meta: + mode: "light" + accent: "green" + hue: null + pair: "Calm Days, Sober Nights - Night" + contrast: + fg: 65.2 + black: 99.1 + red: 49.2 + green: 46 + yellow: 23.8 + blue: 49 + magenta: 53.7 + cyan: 44.7 + white: 16.8 + brightBlack: 44 + brightRed: 46.9 + brightGreen: 46 + brightYellow: 21.1 + brightBlue: 46.1 + brightMagenta: 51.3 + brightCyan: 41.8 + brightWhite: 0 diff --git a/themes/calm-days-sober-nights-night-sky.yaml b/themes/calm-days-sober-nights-night-sky.yaml new file mode 100644 index 00000000..89d9fcf5 --- /dev/null +++ b/themes/calm-days-sober-nights-night-sky.yaml @@ -0,0 +1,52 @@ +name: "Calm Days, Sober Nights - Night (Sky)" +source: + marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" + version: "7.1.6" + installs: 6373 + rating: 5 + ratings: 4 + author: "Giovani Cascaes" + repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" +colors: + bg: "#192030" + fg: "#D3DAE8" + black: "#000000" + red: "#ED7480" + green: "#70CC92" + yellow: "#F2D988" + blue: "#6ED0FA" + magenta: "#EAB9FA" + cyan: "#90D7E0" + white: "#D2DDFA" + brightBlack: "#63708C" + brightRed: "#F27985" + brightGreen: "#70CC92" + brightYellow: "#F7DD8D" + brightBlue: "#73D5FF" + brightMagenta: "#EFBFFF" + brightCyan: "#95DDE6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 266 + pair: "Calm Days, Sober Nights - Day (Sky)" + contrast: + fg: 81.7 + black: 0 + red: 45.8 + green: 62.8 + yellow: 82.2 + blue: 69.1 + magenta: 72.4 + cyan: 73.2 + white: 83.9 + brightBlack: 25.2 + brightRed: 48.2 + brightGreen: 62.8 + brightYellow: 84.8 + brightBlue: 72 + brightMagenta: 75.8 + brightCyan: 76.7 + brightWhite: 105.7 diff --git a/themes/calm-days-sober-nights-night.yaml b/themes/calm-days-sober-nights-night.yaml new file mode 100644 index 00000000..65254121 --- /dev/null +++ b/themes/calm-days-sober-nights-night.yaml @@ -0,0 +1,52 @@ +name: "Calm Days, Sober Nights - Night" +source: + marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" + version: "7.1.6" + installs: 6373 + rating: 5 + ratings: 4 + author: "Giovani Cascaes" + repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" +colors: + bg: "#232530" + fg: "#D3D6E8" + black: "#000000" + red: "#ED7480" + green: "#70CC92" + yellow: "#F2D988" + blue: "#6ED0FA" + magenta: "#EAB9FA" + cyan: "#90D7E0" + white: "#DFE3FA" + brightBlack: "#6A708C" + brightRed: "#F27985" + brightGreen: "#70CC92" + brightYellow: "#F7DD8D" + brightBlue: "#73D5FF" + brightMagenta: "#EFBFFF" + brightCyan: "#95DDE6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 277 + pair: "Calm Days, Sober Nights - Day" + contrast: + fg: 79.2 + black: 0 + red: 44.9 + green: 62 + yellow: 81.4 + blue: 68.3 + magenta: 71.6 + cyan: 72.3 + white: 87.3 + brightBlack: 24.9 + brightRed: 47.4 + brightGreen: 62 + brightYellow: 84 + brightBlue: 71.1 + brightMagenta: 74.9 + brightCyan: 75.8 + brightWhite: 104.9 diff --git a/themes/calm-down-color-theme.yaml b/themes/calm-down-color-theme.yaml index fb78ecef..dcd67e3b 100644 --- a/themes/calm-down-color-theme.yaml +++ b/themes/calm-down-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DanielEichwald.vscode-calm-down-theme" version: "1.1.0" installs: 220 + rating: 5 + ratings: 1 author: "Daniel Eichwald" repo: "https://github.com/DE-Danloc/vscode-calm-down-theme/blob/master/README.md" url: "https://marketplace.visualstudio.com/items?itemName=DanielEichwald.vscode-calm-down-theme" diff --git a/themes/calm-light.yaml b/themes/calm-light.yaml index c270ecb6..caaf0c07 100644 --- a/themes/calm-light.yaml +++ b/themes/calm-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/calm-ocean.yaml b/themes/calm-ocean.yaml index 228abd4a..f0790491 100644 --- a/themes/calm-ocean.yaml +++ b/themes/calm-ocean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tlolkema.natural-indigo" version: "0.0.3" installs: 511 + rating: 5 + ratings: 2 author: "tlolkema" repo: "https://github.com/tlolkema/natural-indigo.git#master" url: "https://marketplace.visualstudio.com/items?itemName=tlolkema.natural-indigo" diff --git a/themes/calm-teal-balance-clarity.yaml b/themes/calm-teal-balance-clarity.yaml new file mode 100644 index 00000000..5cd137eb --- /dev/null +++ b/themes/calm-teal-balance-clarity.yaml @@ -0,0 +1,52 @@ +name: "Calm Teal - Balance & Clarity" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + rating: 5 + ratings: 1 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#0D1A1A" + fg: "#E0F2F1" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 196 + pair: null + contrast: + fg: 95.8 + black: 0 + red: 37.6 + green: 47.5 + yellow: 92.2 + blue: 42.9 + magenta: 32.5 + cyan: 56.4 + white: 96 + brightBlack: 9 + brightRed: 42.7 + brightGreen: 81.9 + brightYellow: 101.6 + brightBlue: 40.4 + brightMagenta: 41.3 + brightCyan: 91.1 + brightWhite: 106.8 diff --git a/themes/calm-teal-high-contrast-balance-clarity.yaml b/themes/calm-teal-high-contrast-balance-clarity.yaml index 028b15fb..8ee12cbb 100644 --- a/themes/calm-teal-high-contrast-balance-clarity.yaml +++ b/themes/calm-teal-high-contrast-balance-clarity.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/calm-teal-light-balance-clarity.yaml b/themes/calm-teal-light-balance-clarity.yaml index 6adf4724..cb4b342c 100644 --- a/themes/calm-teal-light-balance-clarity.yaml +++ b/themes/calm-teal-light-balance-clarity.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/calm-vision.yaml b/themes/calm-vision.yaml new file mode 100644 index 00000000..72b24c23 --- /dev/null +++ b/themes/calm-vision.yaml @@ -0,0 +1,50 @@ +name: "Calm Vision" +source: + marketplace_id: "huoshanxue.calm-vision-theme" + version: "1.0.1" + installs: 83 + author: "huoshanxue" + repo: "https://github.com/huoshanxue/calm-vision-theme" + url: "https://marketplace.visualstudio.com/items?itemName=huoshanxue.calm-vision-theme" +colors: + bg: "#E6EFE5" + fg: "#3C3D4C" + black: "#3C3D4C" + red: "#FF0000" + green: "#2DAE58" + yellow: "#CF9C00" + blue: "#09A1ED" + magenta: "#F767BB" + cyan: "#0CA7A4" + white: "#FAFBF9" + brightBlack: "#75798F" + brightRed: "#FFAEAC" + brightGreen: "#35CF68" + brightYellow: "#F5B900" + brightBlue: "#14B1FF" + brightMagenta: "#FF94D2" + brightCyan: "#0CA7A4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: 143 + pair: null + contrast: + fg: 83.8 + black: 83.8 + red: 53.1 + green: 43.5 + yellow: 37.7 + blue: 43.1 + magenta: 41.5 + cyan: 44.6 + white: 0 + brightBlack: 58.7 + brightRed: 21.2 + brightGreen: 28.3 + brightYellow: 21.4 + brightBlue: 35.6 + brightMagenta: 27.8 + brightCyan: 44.6 + brightWhite: 10 diff --git a/themes/calming-coding-dark-theme.yaml b/themes/calming-coding-dark-theme.yaml index d60e9152..c60c8bc4 100644 --- a/themes/calming-coding-dark-theme.yaml +++ b/themes/calming-coding-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CalmingCoding.calming-coding" version: "1.0.2" installs: 58 + rating: 0 + ratings: 0 author: "Calming Coding" repo: "https://github.com/tianrodez/calming-coding" url: "https://marketplace.visualstudio.com/items?itemName=CalmingCoding.calming-coding" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 71.6 black: 0 diff --git a/themes/calming-theme.yaml b/themes/calming-theme.yaml index 5d68f1e5..ad86f169 100644 --- a/themes/calming-theme.yaml +++ b/themes/calming-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diff001a.calming-theme" version: "1.0.1" installs: 4037 + rating: 5 + ratings: 4 author: "diff001a" repo: "https://github.com/diff001a/CalmingTheme" url: "https://marketplace.visualstudio.com/items?itemName=diff001a.calming-theme" diff --git a/themes/calmnight.yaml b/themes/calmnight.yaml new file mode 100644 index 00000000..78b4e611 --- /dev/null +++ b/themes/calmnight.yaml @@ -0,0 +1,52 @@ +name: "calmnight" +source: + marketplace_id: "anvi.calmnight" + version: "0.2.4" + installs: 91 + rating: 0 + ratings: 0 + author: "anvi" + repo: "https://github.com/andreasgylche/calmnight" + url: "https://marketplace.visualstudio.com/items?itemName=anvi.calmnight" +colors: + bg: "#141619" + fg: "#A9B7C6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2162A9" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 61.6 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 20.4 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/calmppuccin-frappe.yaml b/themes/calmppuccin-frappe.yaml index 1bd71246..643aab50 100644 --- a/themes/calmppuccin-frappe.yaml +++ b/themes/calmppuccin-frappe.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kenan-salar.calmppuccin-vscode" version: "1.9.9" installs: 6413 + rating: 5 + ratings: 4 author: "Kenan Salar" repo: "https://github.com/KenanSalar/calmppuccin-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" diff --git a/themes/calmppuccin-latte.yaml b/themes/calmppuccin-latte.yaml index b030840f..789f7ee1 100644 --- a/themes/calmppuccin-latte.yaml +++ b/themes/calmppuccin-latte.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kenan-salar.calmppuccin-vscode" version: "1.9.9" installs: 6413 + rating: 5 + ratings: 4 author: "Kenan Salar" repo: "https://github.com/KenanSalar/calmppuccin-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" diff --git a/themes/calmppuccin-macchiato.yaml b/themes/calmppuccin-macchiato.yaml index 7a3ab685..6988a2a0 100644 --- a/themes/calmppuccin-macchiato.yaml +++ b/themes/calmppuccin-macchiato.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kenan-salar.calmppuccin-vscode" version: "1.9.9" installs: 6413 + rating: 5 + ratings: 4 author: "Kenan Salar" repo: "https://github.com/KenanSalar/calmppuccin-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" diff --git a/themes/calmppuccin-mocha.yaml b/themes/calmppuccin-mocha.yaml index 7ca670e0..6de6c9a4 100644 --- a/themes/calmppuccin-mocha.yaml +++ b/themes/calmppuccin-mocha.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kenan-salar.calmppuccin-vscode" version: "1.9.9" installs: 6413 + rating: 5 + ratings: 4 author: "Kenan Salar" repo: "https://github.com/KenanSalar/calmppuccin-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" diff --git a/themes/calmppuccin-nitro-cold-brew.yaml b/themes/calmppuccin-nitro-cold-brew.yaml index 140c3ca2..e6203443 100644 --- a/themes/calmppuccin-nitro-cold-brew.yaml +++ b/themes/calmppuccin-nitro-cold-brew.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kenan-salar.calmppuccin-vscode" version: "1.9.9" installs: 6413 + rating: 5 + ratings: 4 author: "Kenan Salar" repo: "https://github.com/KenanSalar/calmppuccin-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" diff --git a/themes/calmppuccin-oledppuccin.yaml b/themes/calmppuccin-oledppuccin.yaml index d6122cd6..cb91610d 100644 --- a/themes/calmppuccin-oledppuccin.yaml +++ b/themes/calmppuccin-oledppuccin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kenan-salar.calmppuccin-vscode" version: "1.9.9" installs: 6413 + rating: 5 + ratings: 4 author: "Kenan Salar" repo: "https://github.com/KenanSalar/calmppuccin-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" diff --git a/themes/calmshade.yaml b/themes/calmshade.yaml new file mode 100644 index 00000000..369bb6ee --- /dev/null +++ b/themes/calmshade.yaml @@ -0,0 +1,50 @@ +name: "Calmshade" +source: + marketplace_id: "MichaelVolakis.calmshade" + version: "0.1.8" + installs: 88 + author: "Michael Volakis" + repo: "https://github.com/mihavo/Calmshade" + url: "https://marketplace.visualstudio.com/items?itemName=MichaelVolakis.calmshade" +colors: + bg: "#1F1F1F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.5 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/camo-dark.yaml b/themes/camo-dark.yaml new file mode 100644 index 00000000..b2a119b8 --- /dev/null +++ b/themes/camo-dark.yaml @@ -0,0 +1,52 @@ +name: "camo dark" +source: + marketplace_id: "jonahseguin.camo" + version: "0.0.1" + installs: 61 + rating: 0 + ratings: 0 + author: "Jonah Seguin" + repo: "https://github.com/jonahseguin/camo" + url: "https://marketplace.visualstudio.com/items?itemName=jonahseguin.camo" +colors: + bg: "#121217" + fg: "#F0F6FA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + pair: null + contrast: + fg: 100.7 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.2 + cyan: 48 + white: 90.4 + brightBlack: 22.4 + brightRed: 39 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/candle-theme.yaml b/themes/candle-theme.yaml index 33ce1c6d..dec9c880 100644 --- a/themes/candle-theme.yaml +++ b/themes/candle-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "creasty.vscode-candle-theme" version: "0.0.3" installs: 1855 + rating: 5 + ratings: 1 author: "Creasty" repo: "https://github.com/creasty/vscode-candle-theme" url: "https://marketplace.visualstudio.com/items?itemName=creasty.vscode-candle-theme" diff --git a/themes/candy-pine.yaml b/themes/candy-pine.yaml index 2f45bd50..cfd1d134 100644 --- a/themes/candy-pine.yaml +++ b/themes/candy-pine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yuschick.candy-pine" version: "0.2.5" installs: 1596 + rating: 5 + ratings: 2 author: "Yuschick" repo: "https://github.com/candy-pine/vscode" url: "https://marketplace.visualstudio.com/items?itemName=yuschick.candy-pine" diff --git a/themes/candy-red.yaml b/themes/candy-red.yaml index 54fbd597..1766515f 100644 --- a/themes/candy-red.yaml +++ b/themes/candy-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xynny.candy-red" version: "1.0.0" installs: 3494 + rating: 0 + ratings: 0 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.candy-red" diff --git a/themes/candy-shop-eclipse.yaml b/themes/candy-shop-eclipse.yaml index bf62bea1..8fa36ac3 100644 --- a/themes/candy-shop-eclipse.yaml +++ b/themes/candy-shop-eclipse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ErfanFathalizadeh.Candy-Shop-Eclipse" version: "2.1.0" installs: 1100 + rating: 0 + ratings: 0 author: "Erfan Fathalizadeh" repo: "https://github.com/ErfanFathalizadeh/VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ErfanFathalizadeh.Candy-Shop-Eclipse" diff --git a/themes/canonic-theme.yaml b/themes/canonic-theme.yaml index 8b1044bb..42919923 100644 --- a/themes/canonic-theme.yaml +++ b/themes/canonic-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucodifier.canonic-theme" version: "1.2.1" installs: 84 + rating: 5 + ratings: 1 author: "lucodifier" repo: "https://github.com/lucodifier/canonic-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucodifier.canonic-theme" diff --git a/themes/cape-town-nights.yaml b/themes/cape-town-nights.yaml index fcb7c1af..2201cbb9 100644 --- a/themes/cape-town-nights.yaml +++ b/themes/cape-town-nights.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WalterHahn.cape-town-nights" version: "1.0.1" installs: 282 + rating: 5 + ratings: 1 author: "Walter Hahn" repo: "https://github.com/WalterHahn/cape-town-nights" url: "https://marketplace.visualstudio.com/items?itemName=WalterHahn.cape-town-nights" diff --git a/themes/capitola.yaml b/themes/capitola.yaml index b8f8aa10..342e19eb 100644 --- a/themes/capitola.yaml +++ b/themes/capitola.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vitornovictor.capitola" version: "1.0.2" installs: 693 + rating: 0 + ratings: 0 author: "Vitor Nunes" repo: "https://github.com/vitornovictor/capitola" url: "https://marketplace.visualstudio.com/items?itemName=vitornovictor.capitola" diff --git a/themes/capy-ui.yaml b/themes/capy-ui.yaml index 1e2b2850..a9ff0ed0 100644 --- a/themes/capy-ui.yaml +++ b/themes/capy-ui.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PatrickBoyd.capy-ui-theme" version: "1.0.3" installs: 30 + rating: 0 + ratings: 0 author: "Patrick Boyd" repo: "https://github.com/yourusername/capy-ui-theme" url: "https://marketplace.visualstudio.com/items?itemName=PatrickBoyd.capy-ui-theme" diff --git a/themes/caramel.yaml b/themes/caramel.yaml new file mode 100644 index 00000000..5f13ac5c --- /dev/null +++ b/themes/caramel.yaml @@ -0,0 +1,52 @@ +name: "Caramel" +source: + marketplace_id: "syshock.caramel" + version: "0.0.2" + installs: 898 + rating: 0 + ratings: 0 + author: "SyShock" + repo: "https://github.com/SyShock/caramel-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=syshock.caramel" +colors: + bg: "#1B1B1B" + fg: "#CDCDCD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 74.8 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/carbon-candy-anthracite.yaml b/themes/carbon-candy-anthracite.yaml index 6068c107..daa76995 100644 --- a/themes/carbon-candy-anthracite.yaml +++ b/themes/carbon-candy-anthracite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "viral-team.carbon-candy" version: "0.2.9" installs: 842 + rating: 5 + ratings: 1 author: "Viral Team Theme" repo: "https://github.com/viral-team/carbon-candy-theme" url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" diff --git a/themes/carbon-candy-aurora.yaml b/themes/carbon-candy-aurora.yaml new file mode 100644 index 00000000..aef98583 --- /dev/null +++ b/themes/carbon-candy-aurora.yaml @@ -0,0 +1,52 @@ +name: "carbon-candy-aurora" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 842 + rating: 5 + ratings: 1 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" +colors: + bg: "#1A1A1A" + fg: "#E8E8E8" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#5A5A5A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.6 + black: 0 + red: 46.3 + green: 83.9 + yellow: 78.6 + blue: 55.6 + magenta: 53.4 + cyan: 77.9 + white: 106.5 + brightBlack: 16.7 + brightRed: 46.3 + brightGreen: 83.9 + brightYellow: 78.6 + brightBlue: 55.6 + brightMagenta: 53.4 + brightCyan: 77.9 + brightWhite: 106.5 diff --git a/themes/carbon-candy-bee.yaml b/themes/carbon-candy-bee.yaml new file mode 100644 index 00000000..6aabb006 --- /dev/null +++ b/themes/carbon-candy-bee.yaml @@ -0,0 +1,52 @@ +name: "carbon-candy-bee" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 842 + rating: 5 + ratings: 1 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" +colors: + bg: "#212121" + fg: "#D9D9D9" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#545454" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 81.3 + black: 0 + red: 45.3 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 13.5 + brightRed: 45.3 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/carbon-candy-carbon.yaml b/themes/carbon-candy-carbon.yaml new file mode 100644 index 00000000..2d86cdc7 --- /dev/null +++ b/themes/carbon-candy-carbon.yaml @@ -0,0 +1,52 @@ +name: "carbon-candy-carbon" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 842 + rating: 5 + ratings: 1 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" +colors: + bg: "#1A1A1A" + fg: "#D4D4D4" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#424242" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.2 + black: 0 + red: 46.3 + green: 83.9 + yellow: 78.6 + blue: 55.6 + magenta: 53.4 + cyan: 77.9 + white: 106.5 + brightBlack: 7.8 + brightRed: 46.3 + brightGreen: 83.9 + brightYellow: 78.6 + brightBlue: 55.6 + brightMagenta: 53.4 + brightCyan: 77.9 + brightWhite: 106.5 diff --git a/themes/carbon-candy-dark.yaml b/themes/carbon-candy-dark.yaml new file mode 100644 index 00000000..c627c81f --- /dev/null +++ b/themes/carbon-candy-dark.yaml @@ -0,0 +1,52 @@ +name: "carbon-candy-dark" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 842 + rating: 5 + ratings: 1 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" +colors: + bg: "#161616" + fg: "#CCCCCC" + black: "#262626" + red: "#EE5396" + green: "#42BE65" + yellow: "#FDDC68" + blue: "#78A9FF" + magenta: "#BE95FF" + cyan: "#08BDBA" + white: "#F2F4F8" + brightBlack: "#525252" + brightRed: "#FF7EB6" + brightGreen: "#44E070" + brightYellow: "#FDE593" + brightBlue: "#33B1FF" + brightMagenta: "#FF7EB6" + brightCyan: "#3DDBD9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 74.8 + black: 0 + red: 41.1 + green: 54.4 + yellow: 85.9 + blue: 54.9 + magenta: 54.9 + cyan: 55.8 + white: 99.6 + brightBlack: 14 + brightRed: 55.2 + brightGreen: 71 + brightYellow: 90.7 + brightBlue: 55 + brightMagenta: 55.2 + brightCyan: 71.9 + brightWhite: 107 diff --git a/themes/carbon-candy-obsidian.yaml b/themes/carbon-candy-obsidian.yaml new file mode 100644 index 00000000..1385e20c --- /dev/null +++ b/themes/carbon-candy-obsidian.yaml @@ -0,0 +1,52 @@ +name: "carbon-candy-obsidian" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 842 + rating: 5 + ratings: 1 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" +colors: + bg: "#0F0F0F" + fg: "#D8D8D8" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#363636" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.6 + black: 0 + red: 47.2 + green: 84.8 + yellow: 79.6 + blue: 56.6 + magenta: 54.4 + cyan: 78.9 + white: 107.5 + brightBlack: 0 + brightRed: 47.2 + brightGreen: 84.8 + brightYellow: 79.6 + brightBlue: 56.6 + brightMagenta: 54.4 + brightCyan: 78.9 + brightWhite: 107.5 diff --git a/themes/carbon-candy-palenight.yaml b/themes/carbon-candy-palenight.yaml index d812968b..3a6a9ba8 100644 --- a/themes/carbon-candy-palenight.yaml +++ b/themes/carbon-candy-palenight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "viral-team.carbon-candy" version: "0.2.9" installs: 842 + rating: 5 + ratings: 1 author: "Viral Team Theme" repo: "https://github.com/viral-team/carbon-candy-theme" url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" diff --git a/themes/carbon-code-amber-dark.yaml b/themes/carbon-code-amber-dark.yaml index b7ff6c99..0df491ef 100644 --- a/themes/carbon-code-amber-dark.yaml +++ b/themes/carbon-code-amber-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sazardev.carbon-code-theme" version: "1.2.0" installs: 903 + rating: 5 + ratings: 1 author: "sazardev" repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" diff --git a/themes/carbon-code-amber-light.yaml b/themes/carbon-code-amber-light.yaml index 110f8085..629a0414 100644 --- a/themes/carbon-code-amber-light.yaml +++ b/themes/carbon-code-amber-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sazardev.carbon-code-theme" version: "1.2.0" installs: 903 + rating: 5 + ratings: 1 author: "sazardev" repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" diff --git a/themes/carbon-code-crimson-dark.yaml b/themes/carbon-code-crimson-dark.yaml index 1b275460..383ee827 100644 --- a/themes/carbon-code-crimson-dark.yaml +++ b/themes/carbon-code-crimson-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sazardev.carbon-code-theme" version: "1.2.0" installs: 903 + rating: 5 + ratings: 1 author: "sazardev" repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" diff --git a/themes/carbon-code-crimson-light.yaml b/themes/carbon-code-crimson-light.yaml index 0c81bf54..035f0c2d 100644 --- a/themes/carbon-code-crimson-light.yaml +++ b/themes/carbon-code-crimson-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sazardev.carbon-code-theme" version: "1.2.0" installs: 903 + rating: 5 + ratings: 1 author: "sazardev" repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" diff --git a/themes/carbon-code-dark.yaml b/themes/carbon-code-dark.yaml index a624ef42..ba0cfddf 100644 --- a/themes/carbon-code-dark.yaml +++ b/themes/carbon-code-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sazardev.carbon-code-theme" version: "1.2.0" installs: 903 + rating: 5 + ratings: 1 author: "sazardev" repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" diff --git a/themes/carbon-code-emerald-dark.yaml b/themes/carbon-code-emerald-dark.yaml index e0947eb1..bdb744c8 100644 --- a/themes/carbon-code-emerald-dark.yaml +++ b/themes/carbon-code-emerald-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sazardev.carbon-code-theme" version: "1.2.0" installs: 903 + rating: 5 + ratings: 1 author: "sazardev" repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" diff --git a/themes/carbon-code-emerald-light.yaml b/themes/carbon-code-emerald-light.yaml index 5bc45361..59571ca1 100644 --- a/themes/carbon-code-emerald-light.yaml +++ b/themes/carbon-code-emerald-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sazardev.carbon-code-theme" version: "1.2.0" installs: 903 + rating: 5 + ratings: 1 author: "sazardev" repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" diff --git a/themes/carbon-code-light.yaml b/themes/carbon-code-light.yaml index 107a4788..ddf8a7bf 100644 --- a/themes/carbon-code-light.yaml +++ b/themes/carbon-code-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sazardev.carbon-code-theme" version: "1.2.0" installs: 903 + rating: 5 + ratings: 1 author: "sazardev" repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" diff --git a/themes/carbon-code-rose-dark.yaml b/themes/carbon-code-rose-dark.yaml index a3fb57bb..3d839f84 100644 --- a/themes/carbon-code-rose-dark.yaml +++ b/themes/carbon-code-rose-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sazardev.carbon-code-theme" version: "1.2.0" installs: 903 + rating: 5 + ratings: 1 author: "sazardev" repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" diff --git a/themes/carbon-code-rose-light.yaml b/themes/carbon-code-rose-light.yaml index 1571a55d..aa2ca51c 100644 --- a/themes/carbon-code-rose-light.yaml +++ b/themes/carbon-code-rose-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sazardev.carbon-code-theme" version: "1.2.0" installs: 903 + rating: 5 + ratings: 1 author: "sazardev" repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" diff --git a/themes/carbon-design-system-theme.yaml b/themes/carbon-design-system-theme.yaml index 68751c98..69164c0d 100644 --- a/themes/carbon-design-system-theme.yaml +++ b/themes/carbon-design-system-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "taotao7.ibm-carbon-theme" version: "1.0.0" installs: 130 + rating: 0 + ratings: 0 author: "taotao7" repo: "https://github.com/taotao7/carbon-theme" url: "https://marketplace.visualstudio.com/items?itemName=taotao7.ibm-carbon-theme" diff --git a/themes/carbon-one.yaml b/themes/carbon-one.yaml index 6795ceac..0286266b 100644 --- a/themes/carbon-one.yaml +++ b/themes/carbon-one.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Gerardo-Tordoya.carbon-one" version: "2.0.0" installs: 53 + rating: 0 + ratings: 0 author: "Gerardo Tordoya" repo: "https://github.com/zherar7ordoya/carbon-one" url: "https://marketplace.visualstudio.com/items?itemName=Gerardo-Tordoya.carbon-one" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 98.3 black: 99.2 diff --git a/themes/carbon-react-color-theme-maya-black.yaml b/themes/carbon-react-color-theme-maya-black.yaml index de749065..f3eccd75 100644 --- a/themes/carbon-react-color-theme-maya-black.yaml +++ b/themes/carbon-react-color-theme-maya-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yathink3.carbon-react-color-theme" version: "1.4.5" installs: 6741 + rating: 5 + ratings: 5 author: "yathink3" repo: "https://github.com/yathink3/carbon-react-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" diff --git a/themes/carbon-react-color-theme-maya.yaml b/themes/carbon-react-color-theme-maya.yaml index f7bb1be2..bf7af343 100644 --- a/themes/carbon-react-color-theme-maya.yaml +++ b/themes/carbon-react-color-theme-maya.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yathink3.carbon-react-color-theme" version: "1.4.5" installs: 6741 + rating: 5 + ratings: 5 author: "yathink3" repo: "https://github.com/yathink3/carbon-react-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" diff --git a/themes/carbon-react-color-theme.yaml b/themes/carbon-react-color-theme.yaml index 55ff46fe..a3be9b68 100644 --- a/themes/carbon-react-color-theme.yaml +++ b/themes/carbon-react-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yathink3.carbon-react-color-theme" version: "1.4.5" installs: 6741 + rating: 5 + ratings: 5 author: "yathink3" repo: "https://github.com/yathink3/carbon-react-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" diff --git a/themes/carbon.yaml b/themes/carbon.yaml index 89c5dd65..39f1eace 100644 --- a/themes/carbon.yaml +++ b/themes/carbon.yaml @@ -1,50 +1,52 @@ name: "Carbon" source: - marketplace_id: "PhanTriVietHoang.theme4anyone" - version: "1.0.3" - installs: 6 - author: "PhanTriVietHoang" - repo: "https://github.com/phantriviethoang/theme4anyone" - url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.theme4anyone" + marketplace_id: "OscarNewman.carbon-theme-dark" + version: "0.0.1" + installs: 3316 + rating: 5 + ratings: 1 + author: "Oscar Newman" + repo: "https://github.com/oscarnewman/carbon-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=OscarNewman.carbon-theme-dark" colors: - bg: "#172030" - fg: "#C9CCCD" - black: "#172030" - red: "#FF8A7A" - green: "#5AF78E" - yellow: "#F3F99D" - blue: "#94D0FF" - magenta: "#FF85B8" - cyan: "#9AEDFE" - white: "#F1F1F0" - brightBlack: "#686868" - brightRed: "#FF8A7A" - brightGreen: "#5AF78E" - brightYellow: "#F3F99D" - brightBlue: "#94D0FF" - brightMagenta: "#FF85B8" - brightCyan: "#9AEDFE" - brightWhite: "#EEFFFF" + bg: "#152031" + fg: "#BAC8CB" + black: "#000000" + red: "#FF4262" + green: "#9CDE65" + yellow: "#E1E797" + blue: "#65B7EC" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CDD3D3" + brightBlack: "#666666" + brightRed: "#FF4262" + brightGreen: "#9CDE65" + brightYellow: "#D8DE90" + brightBlue: "#65B7EC" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: mode: "dark" - accent: "teal" - hue: 262 + accent: "orange" + hue: 259 pair: null contrast: - fg: 73.2 + fg: 69.6 black: 0 - red: 55.2 - green: 82.9 - yellow: 97.6 - blue: 72.1 - magenta: 55.9 - cyan: 85.9 - white: 96.5 - brightBlack: 21.8 - brightRed: 55.2 - brightGreen: 82.9 - brightYellow: 97.6 - brightBlue: 72.1 - brightMagenta: 55.9 - brightCyan: 85.9 - brightWhite: 103.4 + red: 39.8 + green: 73.6 + yellow: 86.5 + blue: 56.9 + magenta: 28.7 + cyan: 46.5 + white: 77 + brightBlack: 20.9 + brightRed: 39.8 + brightGreen: 73.6 + brightYellow: 81 + brightBlue: 56.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/carbonfox.yaml b/themes/carbonfox.yaml index e6828251..8d2954d8 100644 --- a/themes/carbonfox.yaml +++ b/themes/carbonfox.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "letrieu.tornado-themes" version: "0.0.7" installs: 356 + rating: 0 + ratings: 0 author: "Le Trieu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=letrieu.tornado-themes" diff --git a/themes/carbonight-contrast.yaml b/themes/carbonight-contrast.yaml index 95cc4921..8cac5f86 100644 --- a/themes/carbonight-contrast.yaml +++ b/themes/carbonight-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/carbonight-dusk.yaml b/themes/carbonight-dusk.yaml index f330f1e1..3d185495 100644 --- a/themes/carbonight-dusk.yaml +++ b/themes/carbonight-dusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Erfannsb.carbonight" version: "1.0.0" installs: 83 + rating: 0 + ratings: 0 author: "Erfan Nasibi" repo: "https://github.com/erfannsb/carbonight" url: "https://marketplace.visualstudio.com/items?itemName=Erfannsb.carbonight" diff --git a/themes/carbonight-light.yaml b/themes/carbonight-light.yaml index 970e15d9..66c32907 100644 --- a/themes/carbonight-light.yaml +++ b/themes/carbonight-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/carbonight-midnight.yaml b/themes/carbonight-midnight.yaml index dcf5c332..5554c376 100644 --- a/themes/carbonight-midnight.yaml +++ b/themes/carbonight-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Erfannsb.carbonight" version: "1.0.0" installs: 83 + rating: 0 + ratings: 0 author: "Erfan Nasibi" repo: "https://github.com/erfannsb/carbonight" url: "https://marketplace.visualstudio.com/items?itemName=Erfannsb.carbonight" diff --git a/themes/carbonight.yaml b/themes/carbonight.yaml index 71945635..5c9ee62a 100644 --- a/themes/carbonight.yaml +++ b/themes/carbonight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Erfannsb.carbonight" version: "1.0.0" installs: 83 + rating: 0 + ratings: 0 author: "Erfan Nasibi" repo: "https://github.com/erfannsb/carbonight" url: "https://marketplace.visualstudio.com/items?itemName=Erfannsb.carbonight" diff --git a/themes/caret-light.yaml b/themes/caret-light.yaml index fb4f5dca..f3ada3c3 100644 --- a/themes/caret-light.yaml +++ b/themes/caret-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bjornarhagen.caret-theme" version: "0.1.1" installs: 416 + rating: 5 + ratings: 1 author: "Bjørnar Hagen" repo: "https://github.com/bjornarhagen/caret-theme" url: "https://marketplace.visualstudio.com/items?itemName=bjornarhagen.caret-theme" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: 124 + pair: null contrast: fg: 74.8 black: 80.2 diff --git a/themes/carex-dark.yaml b/themes/carex-dark.yaml index 7bfba1b4..48db8b63 100644 --- a/themes/carex-dark.yaml +++ b/themes/carex-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OMERBABACO.carex-theme" version: "2.0.0" installs: 45 + rating: 0 + ratings: 0 author: "OMERBABACO" repo: "https://github.com/babajoeltdsti/carex-theme" url: "https://marketplace.visualstudio.com/items?itemName=OMERBABACO.carex-theme" diff --git a/themes/carex-high-contrast-dark.yaml b/themes/carex-high-contrast-dark.yaml index 75e6b203..71eb4b2c 100644 --- a/themes/carex-high-contrast-dark.yaml +++ b/themes/carex-high-contrast-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OMERBABACO.carex-theme" version: "2.0.0" installs: 45 + rating: 0 + ratings: 0 author: "OMERBABACO" repo: "https://github.com/babajoeltdsti/carex-theme" url: "https://marketplace.visualstudio.com/items?itemName=OMERBABACO.carex-theme" diff --git a/themes/carex-light.yaml b/themes/carex-light.yaml index 4de13f08..192c690e 100644 --- a/themes/carex-light.yaml +++ b/themes/carex-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OMERBABACO.carex-theme" version: "2.0.0" installs: 45 + rating: 0 + ratings: 0 author: "OMERBABACO" repo: "https://github.com/babajoeltdsti/carex-theme" url: "https://marketplace.visualstudio.com/items?itemName=OMERBABACO.carex-theme" diff --git a/themes/casa.yaml b/themes/casa.yaml index 2be2aa88..ce54a9ae 100644 --- a/themes/casa.yaml +++ b/themes/casa.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FenFex.Casa" version: "0.0.1" installs: 23 + rating: 0 + ratings: 0 author: "FenFex" repo: null url: "https://marketplace.visualstudio.com/items?itemName=FenFex.Casa" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 231 + pair: null contrast: fg: 99.6 black: 8.1 diff --git a/themes/casino-royal.yaml b/themes/casino-royal.yaml index 7d543cbe..47236816 100644 --- a/themes/casino-royal.yaml +++ b/themes/casino-royal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/cassieye-dark.yaml b/themes/cassieye-dark.yaml new file mode 100644 index 00000000..0f67675a --- /dev/null +++ b/themes/cassieye-dark.yaml @@ -0,0 +1,52 @@ +name: "Cassieye Dark" +source: + marketplace_id: "Cassieye-azuretools.Cassieye-Theme" + version: "0.5.0" + installs: 2080 + rating: 5 + ratings: 3 + author: "Cassieye" + repo: "https://github.com/cassie-ye/Cassieye-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Cassieye-azuretools.Cassieye-Theme" +colors: + bg: "#121212" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: "Cassieye Light" + contrast: + fg: 81.7 + black: 0 + red: 41.2 + green: 37.1 + yellow: 76 + blue: 41.8 + magenta: 44.3 + cyan: 49.7 + white: 81.7 + brightBlack: 30 + brightRed: 41.2 + brightGreen: 37.1 + brightYellow: 76 + brightBlue: 41.8 + brightMagenta: 44.3 + brightCyan: 49.7 + brightWhite: 107.3 diff --git a/themes/cassieye-light.yaml b/themes/cassieye-light.yaml new file mode 100644 index 00000000..f097afda --- /dev/null +++ b/themes/cassieye-light.yaml @@ -0,0 +1,52 @@ +name: "Cassieye Light" +source: + marketplace_id: "Cassieye-azuretools.Cassieye-Theme" + version: "0.5.0" + installs: 2080 + rating: 5 + ratings: 3 + author: "Cassieye" + repo: "https://github.com/cassie-ye/Cassieye-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Cassieye-azuretools.Cassieye-Theme" +colors: + bg: "#FFFFFF" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + pair: "Cassieye Dark" + contrast: + fg: 96.5 + black: 105.3 + red: 73.5 + green: 77.9 + yellow: 48.3 + blue: 78.2 + magenta: 81.1 + cyan: 63.5 + white: 21.1 + brightBlack: 45.8 + brightRed: 73.5 + brightGreen: 77.9 + brightYellow: 48.3 + brightBlue: 78.2 + brightMagenta: 81.1 + brightCyan: 63.5 + brightWhite: 17.6 diff --git a/themes/cat-pink.yaml b/themes/cat-pink.yaml index 8e881c2f..2c128391 100644 --- a/themes/cat-pink.yaml +++ b/themes/cat-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daniloBrayann.cat-sleep" version: "0.0.6" installs: 2880 + rating: 0 + ratings: 0 author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.cat-sleep" diff --git a/themes/cat-pulper.yaml b/themes/cat-pulper.yaml new file mode 100644 index 00000000..3f78c812 --- /dev/null +++ b/themes/cat-pulper.yaml @@ -0,0 +1,52 @@ +name: "Cat_Pulper" +source: + marketplace_id: "daniloBrayann.cat-sleep" + version: "0.0.6" + installs: 2880 + rating: 0 + ratings: 0 + author: "daniloBrayann" + repo: "https://github.com/danilobrayann/dev-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.cat-sleep" +colors: + bg: "#171131" + fg: "#C7BFE8" + black: "#171131" + red: "#D62C2C" + green: "#42DD76" + yellow: "#FFB638" + blue: "#28A9FF" + magenta: "#E66DFF" + cyan: "#14E5D4" + white: "#C7BFE8" + brightBlack: "#382B78" + brightRed: "#FC0606" + brightGreen: "#21FE6B" + brightYellow: "#FFB638" + brightBlue: "#28A9FF" + brightMagenta: "#E66DFF" + brightCyan: "#00F9E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 288 + pair: null + contrast: + fg: 70 + black: 0 + red: 28.2 + green: 69.5 + yellow: 70 + blue: 51.4 + magenta: 50.3 + cyan: 75.9 + white: 70 + brightBlack: 0 + brightRed: 35.8 + brightGreen: 85.8 + brightYellow: 70 + brightBlue: 51.4 + brightMagenta: 50.3 + brightCyan: 86.8 + brightWhite: 106.9 diff --git a/themes/cat-sleep-color-theme.yaml b/themes/cat-sleep-color-theme.yaml index ed1affe0..222d613e 100644 --- a/themes/cat-sleep-color-theme.yaml +++ b/themes/cat-sleep-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daniloBrayann.cat-sleep" version: "0.0.6" installs: 2880 + rating: 0 + ratings: 0 author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.cat-sleep" diff --git a/themes/catalyst-light.yaml b/themes/catalyst-light.yaml index ef660e5d..b545b2ea 100644 --- a/themes/catalyst-light.yaml +++ b/themes/catalyst-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hyphenzero.catalyst-theme" version: "2.0.1" installs: 992 + rating: 5 + ratings: 1 author: "Jasper Gorchov" repo: "https://github.com/hyphenzero/tailwind-catalyst-theme" url: "https://marketplace.visualstudio.com/items?itemName=hyphenzero.catalyst-theme" diff --git a/themes/catalyst.yaml b/themes/catalyst.yaml index 151779c6..d21a361b 100644 --- a/themes/catalyst.yaml +++ b/themes/catalyst.yaml @@ -1,50 +1,52 @@ name: "Catalyst" source: - marketplace_id: "Priyaank.catalystirony" - version: "0.0.2" - installs: 140 - author: "Priyaank" - repo: "https://github.com/PRIYAANK2510/Catalyst-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.catalystirony" + marketplace_id: "hyphenzero.catalyst-theme" + version: "2.0.1" + installs: 992 + rating: 5 + ratings: 1 + author: "Jasper Gorchov" + repo: "https://github.com/hyphenzero/tailwind-catalyst-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hyphenzero.catalyst-theme" colors: - bg: "#252525" - fg: "#63716A" - black: "#444444" - red: "#A35043" - green: "#38773B" - yellow: "#A79A4B" - blue: "#558BAA" - magenta: "#8A4C8C" - cyan: "#0B828A" - white: "#BBBBBB" - brightBlack: "#666666" - brightRed: "#EE6752" - brightGreen: "#62BA6B" - brightYellow: "#DED07A" - brightBlue: "#67B1D9" - brightMagenta: "#B66ABA" - brightCyan: "#4FC8D1" - brightWhite: "#DDDDDD" + bg: "#09090B" + fg: "#F9FAFB" + black: "#FFFFFF" + red: "#FB7185" + green: "#34D399" + yellow: "#FBBF24" + blue: "#3B82F6" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#CBD5E1" + brightBlack: "#94A3B8" + brightRed: "#FB7185" + brightGreen: "#6EE7B7" + brightYellow: "#FCD34D" + brightBlue: "#60A5FA" + brightMagenta: "#D8B4FE" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "orange" + accent: "purple" hue: null pair: null contrast: - fg: 23.5 - black: 0 - red: 21.6 - green: 22 - yellow: 44.3 - blue: 34.2 - magenta: 19.2 - cyan: 27.4 - white: 62.8 - brightBlack: 20.1 - brightRed: 41.1 - brightGreen: 52.1 - brightYellow: 74.3 - brightBlue: 52.6 - brightMagenta: 35 - brightCyan: 61.1 - brightWhite: 83.1 + fg: 104.4 + black: 107.8 + red: 50.2 + green: 66.1 + yellow: 73.6 + blue: 37.7 + magenta: 50.6 + cyan: 69.5 + white: 80.3 + brightBlack: 51.6 + brightRed: 50.2 + brightGreen: 78.9 + brightYellow: 82.3 + brightBlue: 52.3 + brightMagenta: 70.2 + brightCyan: 82.1 + brightWhite: 107.8 diff --git a/themes/catppuccin-dark-pro.yaml b/themes/catppuccin-dark-pro.yaml new file mode 100644 index 00000000..04f22ee7 --- /dev/null +++ b/themes/catppuccin-dark-pro.yaml @@ -0,0 +1,52 @@ +name: "Catppuccin Dark Pro" +source: + marketplace_id: "SharifdotG.catppuccin-dark-pro" + version: "1.1.0" + installs: 5119 + rating: 0 + ratings: 0 + author: "Sharif Md. Yousuf" + repo: "https://github.com/SharifdotG/Catppuccin-Dark-Pro" + url: "https://marketplace.visualstudio.com/items?itemName=SharifdotG.catppuccin-dark-pro" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#BAC2DE" + brightBlack: "#585B70" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#94E2D5" + brightWhite: "#A6ADC8" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 80 + black: 9.3 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 76.7 + cyan: 78.2 + white: 68.1 + brightBlack: 16.9 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 88.4 + brightBlue: 59.1 + brightMagenta: 76.7 + brightCyan: 78.2 + brightWhite: 56.2 diff --git a/themes/catppuccin-dark.yaml b/themes/catppuccin-dark.yaml index d87d2917..e076a601 100644 --- a/themes/catppuccin-dark.yaml +++ b/themes/catppuccin-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codelogix.catppuccin-darker-vsc" version: "0.0.3" installs: 1329 + rating: 0 + ratings: 0 author: "Carl Weis" repo: "https://github.com/carlweis/catppuccin-dark" url: "https://marketplace.visualstudio.com/items?itemName=codelogix.catppuccin-darker-vsc" diff --git a/themes/catppuccin-frapp.yaml b/themes/catppuccin-frapp.yaml index b8fc4824..110ce76b 100644 --- a/themes/catppuccin-frapp.yaml +++ b/themes/catppuccin-frapp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codelogix.catppuccin-darker-vsc" version: "0.0.3" installs: 1329 + rating: 0 + ratings: 0 author: "Carl Weis" repo: "https://github.com/carlweis/catppuccin-dark" url: "https://marketplace.visualstudio.com/items?itemName=codelogix.catppuccin-darker-vsc" diff --git a/themes/catppuccin-latte.yaml b/themes/catppuccin-latte.yaml index 86ca0b2f..4caa734e 100644 --- a/themes/catppuccin-latte.yaml +++ b/themes/catppuccin-latte.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codelogix.catppuccin-darker-vsc" version: "0.0.3" installs: 1329 + rating: 0 + ratings: 0 author: "Carl Weis" repo: "https://github.com/carlweis/catppuccin-dark" url: "https://marketplace.visualstudio.com/items?itemName=codelogix.catppuccin-darker-vsc" diff --git a/themes/catppuccin-macchiato.yaml b/themes/catppuccin-macchiato.yaml index 47b01a0a..0e1c7607 100644 --- a/themes/catppuccin-macchiato.yaml +++ b/themes/catppuccin-macchiato.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codelogix.catppuccin-darker-vsc" version: "0.0.3" installs: 1329 + rating: 0 + ratings: 0 author: "Carl Weis" repo: "https://github.com/carlweis/catppuccin-dark" url: "https://marketplace.visualstudio.com/items?itemName=codelogix.catppuccin-darker-vsc" diff --git a/themes/catppuccin-mocha.yaml b/themes/catppuccin-mocha.yaml index 691f3f9a..218b9c20 100644 --- a/themes/catppuccin-mocha.yaml +++ b/themes/catppuccin-mocha.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "skyrocket-qy.whisper" version: "0.1.3" installs: 578 + rating: 0 + ratings: 0 author: "skyrocket-qy" repo: "https://github.com/skyrocket-qy/Whisper" url: "https://marketplace.visualstudio.com/items?itemName=skyrocket-qy.whisper" diff --git a/themes/catppuccin-monokai-frappe.yaml b/themes/catppuccin-monokai-frappe.yaml index b55421e9..a1340566 100644 --- a/themes/catppuccin-monokai-frappe.yaml +++ b/themes/catppuccin-monokai-frappe.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dooez.catppuccin-monokai-vsc" version: "2.7.1" installs: 28 + rating: 0 + ratings: 0 author: "dooez" repo: "https://github.com/Dooez/catppuccin-monokai-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dooez.catppuccin-monokai-vsc" diff --git a/themes/catppuccin-monokai-latte.yaml b/themes/catppuccin-monokai-latte.yaml index c924e710..e4433751 100644 --- a/themes/catppuccin-monokai-latte.yaml +++ b/themes/catppuccin-monokai-latte.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dooez.catppuccin-monokai-vsc" version: "2.7.1" installs: 28 + rating: 0 + ratings: 0 author: "dooez" repo: "https://github.com/Dooez/catppuccin-monokai-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dooez.catppuccin-monokai-vsc" diff --git a/themes/catppuccin-monokai-macchiato.yaml b/themes/catppuccin-monokai-macchiato.yaml index 7865bd87..60526f7c 100644 --- a/themes/catppuccin-monokai-macchiato.yaml +++ b/themes/catppuccin-monokai-macchiato.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dooez.catppuccin-monokai-vsc" version: "2.7.1" installs: 28 + rating: 0 + ratings: 0 author: "dooez" repo: "https://github.com/Dooez/catppuccin-monokai-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dooez.catppuccin-monokai-vsc" diff --git a/themes/catppuccin-monokai-mocha.yaml b/themes/catppuccin-monokai-mocha.yaml index 3c042d0a..31bfcecf 100644 --- a/themes/catppuccin-monokai-mocha.yaml +++ b/themes/catppuccin-monokai-mocha.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dooez.catppuccin-monokai-vsc" version: "2.7.1" installs: 28 + rating: 0 + ratings: 0 author: "dooez" repo: "https://github.com/Dooez/catppuccin-monokai-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dooez.catppuccin-monokai-vsc" diff --git a/themes/catthode.yaml b/themes/catthode.yaml index d186ca3c..e4475cab 100644 --- a/themes/catthode.yaml +++ b/themes/catthode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Catthode.catthode" version: "0.1.1" installs: 64 + rating: 5 + ratings: 1 author: "Catthode" repo: "https://github.com/catthode/vscode" url: "https://marketplace.visualstudio.com/items?itemName=Catthode.catthode" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/ccat.yaml b/themes/ccat.yaml new file mode 100644 index 00000000..2101bf6a --- /dev/null +++ b/themes/ccat.yaml @@ -0,0 +1,52 @@ +name: "ccat" +source: + marketplace_id: "lvchencheng.theme-ckai" + version: "1.3.0" + installs: 91 + rating: 0 + ratings: 0 + author: "lvchencheng" + repo: "https://gitee.com/lu-chencheng/ckai" + url: "https://marketplace.visualstudio.com/items?itemName=lvchencheng.theme-ckai" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#A6ADC8" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#89DCEB" + white: "#BAC2DE" + brightBlack: "#585B70" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#89DCEB" + brightWhite: "#45475A" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 80 + black: 56.2 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 76.7 + cyan: 75.6 + white: 68.1 + brightBlack: 16.9 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 88.4 + brightBlue: 59.1 + brightMagenta: 76.7 + brightCyan: 75.6 + brightWhite: 9.3 diff --git a/themes/cebola-theme.yaml b/themes/cebola-theme.yaml index 5dba11b5..1c5b3846 100644 --- a/themes/cebola-theme.yaml +++ b/themes/cebola-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thomasluizon.thomasluizon" version: "0.3.0" installs: 47 + rating: 0 + ratings: 0 author: "thomasluizon" repo: "https://github.com/thomasluizon/cebola-theme" url: "https://marketplace.visualstudio.com/items?itemName=thomasluizon.thomasluizon" diff --git a/themes/celadon-theme.yaml b/themes/celadon-theme.yaml index 949a0ce0..6425e385 100644 --- a/themes/celadon-theme.yaml +++ b/themes/celadon-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alif-naufal.celadon-theme" version: "0.0.11" installs: 7 + rating: 0 + ratings: 0 author: "Alif Naufal" repo: "https://github.com/alif898/celadon-theme" url: "https://marketplace.visualstudio.com/items?itemName=alif-naufal.celadon-theme" diff --git a/themes/celestial-charm-theme.yaml b/themes/celestial-charm-theme.yaml index fa738282..38357ab8 100644 --- a/themes/celestial-charm-theme.yaml +++ b/themes/celestial-charm-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevangTomar.vscode-diverse-dye" version: "1.3.0" installs: 2595 + rating: 5 + ratings: 3 author: "Devang Tomar ⭐" repo: "https://github.com/devangtomar/vscode-diverse-dye" url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" diff --git a/themes/celestial.yaml b/themes/celestial.yaml new file mode 100644 index 00000000..1e1da2d6 --- /dev/null +++ b/themes/celestial.yaml @@ -0,0 +1,52 @@ +name: "Celestial" +source: + marketplace_id: "Letsmoe.celestial-themes" + version: "0.0.2" + installs: 193 + rating: 0 + ratings: 0 + author: "Letsmoe" + repo: "https://github.com/Letsmoe/celestial-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Letsmoe.celestial-themes" +colors: + bg: "#F7F7FF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.6 + black: 101.6 + red: 69.6 + green: 44.8 + yellow: 53.5 + blue: 81.6 + magenta: 70.1 + cyan: 56.2 + white: 81.5 + brightBlack: 74.3 + brightRed: 69.6 + brightGreen: 36.5 + brightYellow: 36.5 + brightBlue: 81.6 + brightMagenta: 70.1 + brightCyan: 56.2 + brightWhite: 44 diff --git a/themes/ceramic-space.yaml b/themes/ceramic-space.yaml new file mode 100644 index 00000000..82393c48 --- /dev/null +++ b/themes/ceramic-space.yaml @@ -0,0 +1,52 @@ +name: "Ceramic Space" +source: + marketplace_id: "tiredkangaroo.ceramic-space-vscode-theme" + version: "0.0.2" + installs: 1 + rating: 0 + ratings: 0 + author: "tiredkangaroo" + repo: "https://github.com/tiredkangaroo/ceramic-space" + url: "https://marketplace.visualstudio.com/items?itemName=tiredkangaroo.ceramic-space-vscode-theme" +colors: + bg: "#282B36" + fg: "#FFFADF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 273 + pair: null + contrast: + fg: 100 + black: 0 + red: 23.6 + green: 49.9 + yellow: 82.5 + blue: 24.3 + magenta: 26.7 + cyan: 44.5 + white: 86.9 + brightBlack: 18.9 + brightRed: 35.5 + brightGreen: 60.4 + brightYellow: 92.5 + brightBlue: 36.9 + brightMagenta: 42.3 + brightCyan: 52.3 + brightWhite: 86.9 diff --git a/themes/cha-thai.yaml b/themes/cha-thai.yaml new file mode 100644 index 00000000..2445df2d --- /dev/null +++ b/themes/cha-thai.yaml @@ -0,0 +1,52 @@ +name: "Cha Thai" +source: + marketplace_id: "pargornru.cha-thai" + version: "0.0.3" + installs: 134 + rating: 0 + ratings: 0 + author: "pargorn.ru" + repo: "https://github.com/xNewz/cha-thai" + url: "https://marketplace.visualstudio.com/items?itemName=pargornru.cha-thai" +colors: + bg: "#F9EFE5" + fg: "#5A2A00" + black: "#000000" + red: "#D75A4A" + green: "#448C27" + yellow: "#D4A017" + blue: "#7A3E9D" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#C97135" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 88.1 + black: 97.4 + red: 56.6 + green: 59.9 + yellow: 37.9 + blue: 75.1 + magenta: 65.9 + cyan: 52 + white: 77.3 + brightBlack: 70.1 + brightRed: 65.3 + brightGreen: 32.3 + brightYellow: 32.3 + brightBlue: 54.2 + brightMagenta: 65.9 + brightCyan: 52 + brightWhite: 39.8 diff --git a/themes/chai-light.yaml b/themes/chai-light.yaml index 06af5123..d581f31f 100644 --- a/themes/chai-light.yaml +++ b/themes/chai-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vs-code-theme.FantasyTheme" version: "0.1.4" installs: 565 + rating: 0 + ratings: 0 author: "PradeepSahu" repo: "https://github.com/PradeepSahhu/vscode-theme-blue" url: "https://marketplace.visualstudio.com/items?itemName=vs-code-theme.FantasyTheme" diff --git a/themes/chainroot.yaml b/themes/chainroot.yaml new file mode 100644 index 00000000..bdb43a23 --- /dev/null +++ b/themes/chainroot.yaml @@ -0,0 +1,52 @@ +name: "Chainroot" +source: + marketplace_id: "ArefEghbali.chainroot-theme" + version: "1.0.0" + installs: 211 + rating: 0 + ratings: 0 + author: "Aref Eghbali" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ArefEghbali.chainroot-theme" +colors: + bg: "#0D111C" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + pair: null + contrast: + fg: 80 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.8 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/chalk.yaml b/themes/chalk.yaml index d15df209..f0eea02e 100644 --- a/themes/chalk.yaml +++ b/themes/chalk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "emmakrause.chalk" version: "1.0.0" installs: 3044 + rating: 5 + ratings: 2 author: "Emma Krause" repo: "https://github.com/emkrause14/chalk-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=emmakrause.chalk" diff --git a/themes/charcoal.yaml b/themes/charcoal.yaml index 293c9dea..84b67cc6 100644 --- a/themes/charcoal.yaml +++ b/themes/charcoal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tobiasalthoff.charcoal" version: "1.0.4" installs: 1134 + rating: 5 + ratings: 1 author: "Tobias Althoff" repo: "https://github.com/tobiasalthoff/vscode-charcoal-theme" url: "https://marketplace.visualstudio.com/items?itemName=tobiasalthoff.charcoal" diff --git a/themes/charli-health-dark.yaml b/themes/charli-health-dark.yaml index b037e28f..6c46c081 100644 --- a/themes/charli-health-dark.yaml +++ b/themes/charli-health-dark.yaml @@ -1,8 +1,10 @@ name: "CHARLI Health Dark" source: marketplace_id: "lucidlabs.charli-health-theme" - version: "1.2.0" - installs: 14 + version: "1.5.0" + installs: 15 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.charli-health-theme" diff --git a/themes/charli-health-light.yaml b/themes/charli-health-light.yaml index 59a2bb3f..fda07288 100644 --- a/themes/charli-health-light.yaml +++ b/themes/charli-health-light.yaml @@ -1,8 +1,10 @@ name: "CHARLI Health Light" source: marketplace_id: "lucidlabs.charli-health-theme" - version: "1.2.0" - installs: 14 + version: "1.5.0" + installs: 15 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.charli-health-theme" diff --git a/themes/charmed-dark.yaml b/themes/charmed-dark.yaml new file mode 100644 index 00000000..238f8227 --- /dev/null +++ b/themes/charmed-dark.yaml @@ -0,0 +1,52 @@ +name: "Charmed Dark" +source: + marketplace_id: "mikhail-kirsanov.charmed-dark" + version: "1.0.1" + installs: 13 + rating: 0 + ratings: 0 + author: "Mikhail Kirsanov" + repo: "https://github.com/m-kirsanov/charmed-dark-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=mikhail-kirsanov.charmed-dark" +colors: + bg: "#11151D" + fg: "#F0EFB7" + black: "#191A27" + red: "#FF074B" + green: "#45FF69" + yellow: "#FFCC00" + blue: "#82AAFF" + magenta: "#B175DC" + cyan: "#4EE7FF" + white: "#F0EFB7" + brightBlack: "#4E5579" + brightRed: "#F74A4A" + brightGreen: "#45FF69" + brightYellow: "#FFCC00" + brightBlue: "#82AAFF" + brightMagenta: "#A482FF" + brightCyan: "#4EE7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 94.5 + black: 0 + red: 37.2 + green: 87.1 + yellow: 78.8 + blue: 56.1 + magenta: 41.3 + cyan: 80.2 + white: 94.5 + brightBlack: 16.1 + brightRed: 39.8 + brightGreen: 87.1 + brightYellow: 78.8 + brightBlue: 56.1 + brightMagenta: 45.7 + brightCyan: 80.2 + brightWhite: 107.1 diff --git a/themes/cheese-n-all.yaml b/themes/cheese-n-all.yaml index 98379bbd..5c3a082e 100644 --- a/themes/cheese-n-all.yaml +++ b/themes/cheese-n-all.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jejunum.8008" version: "0.0.1" installs: 991 + rating: 0 + ratings: 0 author: "Jejunum" repo: "https://github.com/Nathan-Hu-2/8008-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Jejunum.8008" diff --git a/themes/cheesewaffle-blue.yaml b/themes/cheesewaffle-blue.yaml index de79a6bb..6b271b46 100644 --- a/themes/cheesewaffle-blue.yaml +++ b/themes/cheesewaffle-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Cheesewaffle.cheesewaffle-color-theme" version: "1.2.2" installs: 84 + rating: 0 + ratings: 0 author: "Cheesewaffle" repo: "https://github.com/aldenluthfi/cheesecolortheme" url: "https://marketplace.visualstudio.com/items?itemName=Cheesewaffle.cheesewaffle-color-theme" diff --git a/themes/cheetha-green.yaml b/themes/cheetha-green.yaml index 9f1b1c9a..397bfaca 100644 --- a/themes/cheetha-green.yaml +++ b/themes/cheetha-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CheethaCoder.cheethatheme" version: "0.0.1" installs: 39 + rating: 0 + ratings: 0 author: "Cheetha Coder" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CheethaCoder.cheethatheme" diff --git a/themes/chelsea-pride-away.yaml b/themes/chelsea-pride-away.yaml new file mode 100644 index 00000000..ecc5e3ab --- /dev/null +++ b/themes/chelsea-pride-away.yaml @@ -0,0 +1,52 @@ +name: "Chelsea Pride Away" +source: + marketplace_id: "ranojoy.chelsea-pride-theme" + version: "1.2.6" + installs: 189 + rating: 0 + ratings: 0 + author: "noobster" + repo: "https://github.com/ballack96/chelsea-pride-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ranojoy.chelsea-pride-theme" +colors: + bg: "#F7F9FC" + fg: "#1D1D1F" + black: "#F7F9FC" + red: "#EE242C" + green: "#17C964" + yellow: "#DBA111" + blue: "#007FA6" + magenta: "#FF6B00" + cyan: "#00BFFF" + white: "#1D1D1F" + brightBlack: "#F7F9FC" + brightRed: "#EE242C" + brightGreen: "#17C964" + brightYellow: "#DBA111" + brightBlue: "#007FA6" + brightMagenta: "#FF6B00" + brightCyan: "#00BFFF" + brightWhite: "#1D1D1F" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100.1 + black: 0 + red: 63.6 + green: 38.8 + yellow: 41.4 + blue: 67.5 + magenta: 50 + cyan: 37.2 + white: 100.1 + brightBlack: 0 + brightRed: 63.6 + brightGreen: 38.8 + brightYellow: 41.4 + brightBlue: 67.5 + brightMagenta: 50 + brightCyan: 37.2 + brightWhite: 100.1 diff --git a/themes/chelsea-pride.yaml b/themes/chelsea-pride.yaml new file mode 100644 index 00000000..8db0cae5 --- /dev/null +++ b/themes/chelsea-pride.yaml @@ -0,0 +1,52 @@ +name: "Chelsea Pride" +source: + marketplace_id: "ranojoy.chelsea-pride-theme" + version: "1.2.6" + installs: 189 + rating: 0 + ratings: 0 + author: "noobster" + repo: "https://github.com/ballack96/chelsea-pride-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ranojoy.chelsea-pride-theme" +colors: + bg: "#0A0B3B" + fg: "#FFFFFF" + black: "#0A0B3B" + red: "#FF3B30" + green: "#17C964" + yellow: "#DBAA11" + blue: "#1E90FF" + magenta: "#FF6B00" + cyan: "#00BFFF" + white: "#FFFFFF" + brightBlack: "#0A0B3B" + brightRed: "#FF3B30" + brightGreen: "#17C964" + brightYellow: "#DBAA11" + brightBlue: "#1E90FF" + brightMagenta: "#FF6B00" + brightCyan: "#00BFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 273 + pair: null + contrast: + fg: 107 + black: 0 + red: 39.5 + green: 58.8 + yellow: 59.4 + blue: 41.9 + magenta: 47.2 + cyan: 60.5 + white: 107 + brightBlack: 0 + brightRed: 39.5 + brightGreen: 58.8 + brightYellow: 59.4 + brightBlue: 41.9 + brightMagenta: 47.2 + brightCyan: 60.5 + brightWhite: 107 diff --git a/themes/cherry-blossom-airy.yaml b/themes/cherry-blossom-airy.yaml index 287a393e..6ec82e19 100644 --- a/themes/cherry-blossom-airy.yaml +++ b/themes/cherry-blossom-airy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-blossom-breeze.yaml b/themes/cherry-blossom-breeze.yaml index 52193d63..76882911 100644 --- a/themes/cherry-blossom-breeze.yaml +++ b/themes/cherry-blossom-breeze.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-blossom-dark-reflection.yaml b/themes/cherry-blossom-dark-reflection.yaml index 7aecfd73..c28e2324 100644 --- a/themes/cherry-blossom-dark-reflection.yaml +++ b/themes/cherry-blossom-dark-reflection.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-blossom-dark-vivid.yaml b/themes/cherry-blossom-dark-vivid.yaml index 125e31c6..96fb0ab0 100644 --- a/themes/cherry-blossom-dark-vivid.yaml +++ b/themes/cherry-blossom-dark-vivid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-blossom-dark.yaml b/themes/cherry-blossom-dark.yaml index 00f566b1..48578bc2 100644 --- a/themes/cherry-blossom-dark.yaml +++ b/themes/cherry-blossom-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-blossom-dimmed-dusk.yaml b/themes/cherry-blossom-dimmed-dusk.yaml index 81f7585c..91e135ba 100644 --- a/themes/cherry-blossom-dimmed-dusk.yaml +++ b/themes/cherry-blossom-dimmed-dusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-blossom-dimmed.yaml b/themes/cherry-blossom-dimmed.yaml index 40940451..85bc97c9 100644 --- a/themes/cherry-blossom-dimmed.yaml +++ b/themes/cherry-blossom-dimmed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-blossom-night-harmony.yaml b/themes/cherry-blossom-night-harmony.yaml index 70e6f88a..07452e2f 100644 --- a/themes/cherry-blossom-night-harmony.yaml +++ b/themes/cherry-blossom-night-harmony.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-blossom-night.yaml b/themes/cherry-blossom-night.yaml index c7f088ee..5c4e6d5a 100644 --- a/themes/cherry-blossom-night.yaml +++ b/themes/cherry-blossom-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-blossom-osaka-light.yaml b/themes/cherry-blossom-osaka-light.yaml index e71cefeb..82ab858b 100644 --- a/themes/cherry-blossom-osaka-light.yaml +++ b/themes/cherry-blossom-osaka-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-blossom-osaka.yaml b/themes/cherry-blossom-osaka.yaml index c5d8771f..f1f76c66 100644 --- a/themes/cherry-blossom-osaka.yaml +++ b/themes/cherry-blossom-osaka.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-blossom-sky-vibrant.yaml b/themes/cherry-blossom-sky-vibrant.yaml index 4954fd58..d841102e 100644 --- a/themes/cherry-blossom-sky-vibrant.yaml +++ b/themes/cherry-blossom-sky-vibrant.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-blossom-spring.yaml b/themes/cherry-blossom-spring.yaml index e204c06b..cfe32c2a 100644 --- a/themes/cherry-blossom-spring.yaml +++ b/themes/cherry-blossom-spring.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-blossom-twilight.yaml b/themes/cherry-blossom-twilight.yaml index 0e51d9f6..b22fe2bb 100644 --- a/themes/cherry-blossom-twilight.yaml +++ b/themes/cherry-blossom-twilight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-blossom-warm.yaml b/themes/cherry-blossom-warm.yaml index 0cbcf36d..c11f33f7 100644 --- a/themes/cherry-blossom-warm.yaml +++ b/themes/cherry-blossom-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daitsuku.cherry-blossom-vscode-theme" version: "1.2.1" installs: 2131 + rating: 0 + ratings: 0 author: "daitsuku" repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" diff --git a/themes/cherry-midnight.yaml b/themes/cherry-midnight.yaml index e299cb5c..162b1b36 100644 --- a/themes/cherry-midnight.yaml +++ b/themes/cherry-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nullxception.cherry-theme" version: "0.2.7" installs: 8307 + rating: 5 + ratings: 2 author: "Nauval Rizky" repo: "https://github.com/nullxception/cherry-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nullxception.cherry-theme" diff --git a/themes/cherry-wild-theme.yaml b/themes/cherry-wild-theme.yaml index d74463ee..18dafedc 100644 --- a/themes/cherry-wild-theme.yaml +++ b/themes/cherry-wild-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yyynnn.cherry-wild-theme" version: "1.2.0" installs: 731 + rating: 0 + ratings: 0 author: "yyynnn" repo: "https://github.com/yyynnn/cherry-wild-vscode" url: "https://marketplace.visualstudio.com/items?itemName=yyynnn.cherry-wild-theme" diff --git a/themes/cherry.yaml b/themes/cherry.yaml index 7817805c..ccd54ee8 100644 --- a/themes/cherry.yaml +++ b/themes/cherry.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nullxception.cherry-theme" version: "0.2.7" installs: 8307 + rating: 5 + ratings: 2 author: "Nauval Rizky" repo: "https://github.com/nullxception/cherry-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nullxception.cherry-theme" diff --git a/themes/cherryblossom.yaml b/themes/cherryblossom.yaml index 07a1abc0..81fcca7b 100644 --- a/themes/cherryblossom.yaml +++ b/themes/cherryblossom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NaClara117.cherryblossom" version: "0.0.1" installs: 2234 + rating: 4 + ratings: 2 author: "NaClara" repo: "https://github.com/AnaXP/cherryBlossom" url: "https://marketplace.visualstudio.com/items?itemName=NaClara117.cherryblossom" diff --git a/themes/chiclete-de-uva-theme.yaml b/themes/chiclete-de-uva-theme.yaml index a2a98fe6..af5d5b62 100644 --- a/themes/chiclete-de-uva-theme.yaml +++ b/themes/chiclete-de-uva-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BiancaPereira.chiclete-de-uva-theme" version: "2.1.6" installs: 555 + rating: 0 + ratings: 0 author: "Bianca Pereira" repo: "https://github.com/BiancaPereira/chiclete-de-uva-theme" url: "https://marketplace.visualstudio.com/items?itemName=BiancaPereira.chiclete-de-uva-theme" diff --git a/themes/chilaquiles-rojos-dark.yaml b/themes/chilaquiles-rojos-dark.yaml new file mode 100644 index 00000000..6c46cfce --- /dev/null +++ b/themes/chilaquiles-rojos-dark.yaml @@ -0,0 +1,52 @@ +name: "Chilaquiles Rojos (Dark)" +source: + marketplace_id: "agzertuche.chilaquiles-theme" + version: "1.0.0" + installs: 16 + rating: 0 + ratings: 0 + author: "Arturo De la Garza Zertuche" + repo: "https://github.com/agzertuche/chilaquiles-theme" + url: "https://marketplace.visualstudio.com/items?itemName=agzertuche.chilaquiles-theme" +colors: + bg: "#1A1008" + fg: "#F5F1E8" + black: "#2A1C10" + red: "#C44536" + green: "#2E7D32" + yellow: "#D4A017" + blue: "#5B9BD5" + magenta: "#B23A2B" + cyan: "#3A8F85" + white: "#F5F1E8" + brightBlack: "#8B6355" + brightRed: "#E05C4B" + brightGreen: "#4CAF50" + brightYellow: "#E8B84B" + brightBlue: "#7AB3E0" + brightMagenta: "#C44536" + brightCyan: "#5BB5AB" + brightWhite: "#FDF8F0" +meta: + mode: "dark" + accent: "orange" + hue: 60 + pair: null + contrast: + fg: 98.2 + black: 0 + red: 27.8 + green: 26.1 + yellow: 54.9 + blue: 45.2 + magenta: 22.5 + cyan: 35.3 + white: 98.2 + brightBlack: 25.2 + brightRed: 38.1 + brightGreen: 48 + brightYellow: 67.5 + brightBlue: 57.4 + brightMagenta: 27.8 + brightCyan: 53.8 + brightWhite: 103 diff --git a/themes/chilaquiles-rojos-light.yaml b/themes/chilaquiles-rojos-light.yaml new file mode 100644 index 00000000..779919ed --- /dev/null +++ b/themes/chilaquiles-rojos-light.yaml @@ -0,0 +1,52 @@ +name: "Chilaquiles Rojos (Light)" +source: + marketplace_id: "agzertuche.chilaquiles-theme" + version: "1.0.0" + installs: 16 + rating: 0 + ratings: 0 + author: "Arturo De la Garza Zertuche" + repo: "https://github.com/agzertuche/chilaquiles-theme" + url: "https://marketplace.visualstudio.com/items?itemName=agzertuche.chilaquiles-theme" +colors: + bg: "#FFFBF5" + fg: "#2A1810" + black: "#2A1810" + red: "#8C1D35" + green: "#1B5E20" + yellow: "#7A5C00" + blue: "#2471A3" + magenta: "#8C1D35" + cyan: "#1A6B62" + white: "#EDE4D4" + brightBlack: "#7A5547" + brightRed: "#C0392B" + brightGreen: "#2E7D32" + brightYellow: "#A0720A" + brightBlue: "#2E86C1" + brightMagenta: "#B03020" + brightCyan: "#1F8B80" + brightWhite: "#FFFBF5" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.7 + black: 101.7 + red: 87.1 + green: 84.8 + yellow: 78.8 + blue: 73.8 + magenta: 87.1 + cyan: 79 + white: 10.8 + brightBlack: 80.1 + brightRed: 73.8 + brightGreen: 72.9 + brightYellow: 67.2 + brightBlue: 64.5 + brightMagenta: 78.3 + brightCyan: 66 + brightWhite: 0 diff --git a/themes/chilaquiles-verdes-dark.yaml b/themes/chilaquiles-verdes-dark.yaml new file mode 100644 index 00000000..0cab2dbd --- /dev/null +++ b/themes/chilaquiles-verdes-dark.yaml @@ -0,0 +1,52 @@ +name: "Chilaquiles Verdes (Dark)" +source: + marketplace_id: "agzertuche.chilaquiles-theme" + version: "1.0.0" + installs: 16 + rating: 0 + ratings: 0 + author: "Arturo De la Garza Zertuche" + repo: "https://github.com/agzertuche/chilaquiles-theme" + url: "https://marketplace.visualstudio.com/items?itemName=agzertuche.chilaquiles-theme" +colors: + bg: "#141614" + fg: "#F5F1E8" + black: "#1C201C" + red: "#E05C4B" + green: "#4CAF50" + yellow: "#D4A017" + blue: "#5B9BD5" + magenta: "#C97DB5" + cyan: "#3A8F85" + white: "#F5F1E8" + brightBlack: "#556857" + brightRed: "#E8725F" + brightGreen: "#6FAF5A" + brightYellow: "#E8B84B" + brightBlue: "#7AB3E0" + brightMagenta: "#D99DC8" + brightCyan: "#5BB5AB" + brightWhite: "#FDF8F0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98 + black: 0 + red: 37.8 + green: 47.7 + yellow: 54.6 + blue: 44.9 + magenta: 44.9 + cyan: 35 + white: 98 + brightBlack: 21 + brightRed: 44.8 + brightGreen: 49.8 + brightYellow: 67.2 + brightBlue: 57.1 + brightMagenta: 58.4 + brightCyan: 53.5 + brightWhite: 102.7 diff --git a/themes/chilaquiles-verdes-light.yaml b/themes/chilaquiles-verdes-light.yaml new file mode 100644 index 00000000..ebe6ea6a --- /dev/null +++ b/themes/chilaquiles-verdes-light.yaml @@ -0,0 +1,52 @@ +name: "Chilaquiles Verdes (Light)" +source: + marketplace_id: "agzertuche.chilaquiles-theme" + version: "1.0.0" + installs: 16 + rating: 0 + ratings: 0 + author: "Arturo De la Garza Zertuche" + repo: "https://github.com/agzertuche/chilaquiles-theme" + url: "https://marketplace.visualstudio.com/items?itemName=agzertuche.chilaquiles-theme" +colors: + bg: "#E8EDE8" + fg: "#1C2A1C" + black: "#1C2A1C" + red: "#C0392B" + green: "#2A7530" + yellow: "#A0720A" + blue: "#2471A3" + magenta: "#8E3A65" + cyan: "#1A6B62" + white: "#DFE6DF" + brightBlack: "#4A7050" + brightRed: "#E05C4B" + brightGreen: "#4CAF50" + brightYellow: "#8C6200" + brightBlue: "#2E86C1" + brightMagenta: "#853678" + brightCyan: "#1F8B80" + brightWhite: "#E8EDE8" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 90.4 + black: 90.4 + red: 64.4 + green: 66.7 + yellow: 57.8 + blue: 64.5 + magenta: 72.7 + cyan: 69.6 + white: 0 + brightBlack: 66.6 + brightRed: 51.5 + brightGreen: 41.8 + brightYellow: 65.3 + brightBlue: 55.1 + brightMagenta: 74 + brightCyan: 56.6 + brightWhite: 0 diff --git a/themes/chill-night-mode.yaml b/themes/chill-night-mode.yaml index 296572ad..43dd42e1 100644 --- a/themes/chill-night-mode.yaml +++ b/themes/chill-night-mode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Moth-Coder.chillnightmode" version: "1.0.1" installs: 20 + rating: 0 + ratings: 0 author: "Moth-Coder" repo: "https://github.com/M-Renberg/chill-night-mode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Moth-Coder.chillnightmode" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 54 black: 0 diff --git a/themes/chinolor-light.yaml b/themes/chinolor-light.yaml index 961037e5..b7aa428c 100644 --- a/themes/chinolor-light.yaml +++ b/themes/chinolor-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iwyvi.chinolor" version: "0.2.19" installs: 36140 + rating: 5 + ratings: 24 author: "iwyvi" repo: "https://github.com/iwyvi/chinolor" url: "https://marketplace.visualstudio.com/items?itemName=iwyvi.chinolor" diff --git a/themes/chinolor.yaml b/themes/chinolor.yaml index b7d22b40..0a6960ed 100644 --- a/themes/chinolor.yaml +++ b/themes/chinolor.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iwyvi.chinolor" version: "0.2.19" installs: 36140 + rating: 5 + ratings: 24 author: "iwyvi" repo: "https://github.com/iwyvi/chinolor" url: "https://marketplace.visualstudio.com/items?itemName=iwyvi.chinolor" diff --git a/themes/chocolate-contrast.yaml b/themes/chocolate-contrast.yaml index 5209279f..e29456e1 100644 --- a/themes/chocolate-contrast.yaml +++ b/themes/chocolate-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/chocolate-dessert-theme.yaml b/themes/chocolate-dessert-theme.yaml index 568c4eea..e6dcb86e 100644 --- a/themes/chocolate-dessert-theme.yaml +++ b/themes/chocolate-dessert-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevangTomar.vscode-diverse-dye" version: "1.3.0" installs: 2595 + rating: 5 + ratings: 3 author: "Devang Tomar ⭐" repo: "https://github.com/devangtomar/vscode-diverse-dye" url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" diff --git a/themes/chocolate-light.yaml b/themes/chocolate-light.yaml index 06cabdd7..a7190e03 100644 --- a/themes/chocolate-light.yaml +++ b/themes/chocolate-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/chocolate.yaml b/themes/chocolate.yaml index 0f792b27..b40857d5 100644 --- a/themes/chocolate.yaml +++ b/themes/chocolate.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/chpastel-dark.yaml b/themes/chpastel-dark.yaml new file mode 100644 index 00000000..5599183e --- /dev/null +++ b/themes/chpastel-dark.yaml @@ -0,0 +1,52 @@ +name: "CHPastel Dark" +source: + marketplace_id: "JakubGawlik.chpastel-vscode" + version: "4.0.2" + installs: 285 + rating: 0 + ratings: 0 + author: "Jakub Gawlik" + repo: "https://github.com/caasi-dev/chpastel-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=JakubGawlik.chpastel-vscode" +colors: + bg: "#0F1C1F" + fg: "#898576" + black: "#0F1C1F" + red: "#814B49" + green: "#416644" + yellow: "#806731" + blue: "#326777" + magenta: "#6A4771" + cyan: "#326777" + white: "#898576" + brightBlack: "#0F1C1F" + brightRed: "#814B49" + brightGreen: "#416644" + brightYellow: "#806731" + brightBlue: "#326777" + brightMagenta: "#6A4771" + brightCyan: "#326777" + brightWhite: "#898576" +meta: + mode: "dark" + accent: "pink" + hue: 214 + pair: "CHPastel Light" + contrast: + fg: 35.7 + black: 0 + red: 16.9 + green: 18.2 + yellow: 23.6 + blue: 19.4 + magenta: 14.3 + cyan: 19.4 + white: 35.7 + brightBlack: 0 + brightRed: 16.9 + brightGreen: 18.2 + brightYellow: 23.6 + brightBlue: 19.4 + brightMagenta: 14.3 + brightCyan: 19.4 + brightWhite: 35.7 diff --git a/themes/chpastel-light.yaml b/themes/chpastel-light.yaml new file mode 100644 index 00000000..7c1cbbcb --- /dev/null +++ b/themes/chpastel-light.yaml @@ -0,0 +1,52 @@ +name: "CHPastel Light" +source: + marketplace_id: "JakubGawlik.chpastel-vscode" + version: "4.0.2" + installs: 285 + rating: 0 + ratings: 0 + author: "Jakub Gawlik" + repo: "https://github.com/caasi-dev/chpastel-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=JakubGawlik.chpastel-vscode" +colors: + bg: "#EEE8D5" + fg: "#898576" + black: "#EEE8D5" + red: "#814B49" + green: "#416644" + yellow: "#806731" + blue: "#326777" + magenta: "#6A4771" + cyan: "#326777" + white: "#898576" + brightBlack: "#EEE8D5" + brightRed: "#814B49" + brightGreen: "#416644" + brightYellow: "#806731" + brightBlue: "#326777" + brightMagenta: "#6A4771" + brightCyan: "#326777" + brightWhite: "#898576" +meta: + mode: "light" + accent: "pink" + hue: 92 + pair: "CHPastel Dark" + contrast: + fg: 51 + black: 0 + red: 70.1 + green: 68.7 + yellow: 63.1 + blue: 67.5 + magenta: 72.8 + cyan: 67.5 + white: 51 + brightBlack: 0 + brightRed: 70.1 + brightGreen: 68.7 + brightYellow: 63.1 + brightBlue: 67.5 + brightMagenta: 72.8 + brightCyan: 67.5 + brightWhite: 51 diff --git a/themes/chpastel.yaml b/themes/chpastel.yaml index 7d9841ba..4e8e11b1 100644 --- a/themes/chpastel.yaml +++ b/themes/chpastel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "caasi.chpastel-vscode" version: "3.1.3" installs: 803 + rating: 5 + ratings: 1 author: "Jakub Gawlik" repo: "https://github.com/caasi-dev/chpastel-vscode" url: "https://marketplace.visualstudio.com/items?itemName=caasi.chpastel-vscode" diff --git a/themes/chris-light.yaml b/themes/chris-light.yaml new file mode 100644 index 00000000..747dc2e3 --- /dev/null +++ b/themes/chris-light.yaml @@ -0,0 +1,52 @@ +name: "Chris Light" +source: + marketplace_id: "ckkark-color.ckkark-dark-theme" + version: "0.0.9" + installs: 12 + rating: 0 + ratings: 0 + author: "ckkark-color" + repo: "https://github.com/ckark/color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ckkark-color.ckkark-dark-theme" +colors: + bg: "#FFFFFF" + fg: "#1C1C1C" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 104 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/chriscoding.yaml b/themes/chriscoding.yaml index c9e19688..b6757a96 100644 --- a/themes/chriscoding.yaml +++ b/themes/chriscoding.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ChrisK.chriscoding" version: "0.0.1" installs: 165 + rating: 0 + ratings: 0 author: "ChrisK" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ChrisK.chriscoding" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 253 + pair: null contrast: fg: 80.1 black: 0 diff --git a/themes/christmas.yaml b/themes/christmas.yaml index 742d7de4..0d2c42ef 100644 --- a/themes/christmas.yaml +++ b/themes/christmas.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "csesztii.white-christmas-theme" version: "0.1.0" installs: 102 + rating: 5 + ratings: 2 author: "csesztii" repo: "https://github.com/csesztii/white-christmas-theme" url: "https://marketplace.visualstudio.com/items?itemName=csesztii.white-christmas-theme" diff --git a/themes/chromahin-amoled.yaml b/themes/chromahin-amoled.yaml index b5caad1c..dd6a9a18 100644 --- a/themes/chromahin-amoled.yaml +++ b/themes/chromahin-amoled.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mahin-ltd.chromahin" version: "1.0.0" installs: 52 + rating: 5 + ratings: 1 author: "Mahin Ltd" repo: "https://github.com/mahinltd/chromahin" url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" diff --git a/themes/chromahin-dark.yaml b/themes/chromahin-dark.yaml index 2dd269db..bd88f2bd 100644 --- a/themes/chromahin-dark.yaml +++ b/themes/chromahin-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mahin-ltd.chromahin" version: "1.0.0" installs: 52 + rating: 5 + ratings: 1 author: "Mahin Ltd" repo: "https://github.com/mahinltd/chromahin" url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" diff --git a/themes/chromahin-multi-color.yaml b/themes/chromahin-multi-color.yaml index 67173189..72251293 100644 --- a/themes/chromahin-multi-color.yaml +++ b/themes/chromahin-multi-color.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mahin-ltd.chromahin" version: "1.0.0" installs: 52 + rating: 5 + ratings: 1 author: "Mahin Ltd" repo: "https://github.com/mahinltd/chromahin" url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" diff --git a/themes/chromahin-soft.yaml b/themes/chromahin-soft.yaml index c7c26128..1fa991a3 100644 --- a/themes/chromahin-soft.yaml +++ b/themes/chromahin-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mahin-ltd.chromahin" version: "1.0.0" installs: 52 + rating: 5 + ratings: 1 author: "Mahin Ltd" repo: "https://github.com/mahinltd/chromahin" url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" diff --git a/themes/chromatic-dark.yaml b/themes/chromatic-dark.yaml index ee16c1e9..76476d0a 100644 --- a/themes/chromatic-dark.yaml +++ b/themes/chromatic-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chromatictheme.chromatic" version: "1.1.2" installs: 111 + rating: 0 + ratings: 0 author: "cakeray" repo: "https://github.com/cakeray/chromatic" url: "https://marketplace.visualstudio.com/items?itemName=chromatictheme.chromatic" diff --git a/themes/chromatic-light.yaml b/themes/chromatic-light.yaml index 978bf8e5..926b1187 100644 --- a/themes/chromatic-light.yaml +++ b/themes/chromatic-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chromatictheme.chromatic" version: "1.1.2" installs: 111 + rating: 0 + ratings: 0 author: "cakeray" repo: "https://github.com/cakeray/chromatic" url: "https://marketplace.visualstudio.com/items?itemName=chromatictheme.chromatic" diff --git a/themes/chrome-devtools.yaml b/themes/chrome-devtools.yaml index d578dcf4..54854a0c 100644 --- a/themes/chrome-devtools.yaml +++ b/themes/chrome-devtools.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nicmeriano.chrome-devtools-theme-dark" version: "0.0.1" installs: 496 + rating: 0 + ratings: 0 author: "nicmeriano" repo: "https://github.com/nicmeriano/chrome-devtools-theme" url: "https://marketplace.visualstudio.com/items?itemName=nicmeriano.chrome-devtools-theme-dark" diff --git a/themes/chrome-green.yaml b/themes/chrome-green.yaml new file mode 100644 index 00000000..c6782248 --- /dev/null +++ b/themes/chrome-green.yaml @@ -0,0 +1,52 @@ +name: "chrome-green" +source: + marketplace_id: "Suntechnic.green-papper" + version: "0.4.1" + installs: 1082 + rating: 0 + ratings: 0 + author: "Александр Маджугин" + repo: "https://github.com/Suntechnic/green-papper" + url: "https://marketplace.visualstudio.com/items?itemName=Suntechnic.green-papper" +colors: + bg: "#F8FBF1" + fg: "#222222" + black: "#000000" + red: "#F51818" + green: "#43B244" + yellow: "#F2AE49" + blue: "#E4ECDC" + magenta: "#A37ACC" + cyan: "#207F4C" + white: "#6C7880" + brightBlack: "#6C7680" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#FF9940" + brightBlue: "#55B4D4" + brightMagenta: "#FE76FF" + brightCyan: "#39CBCC" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.7 + black: 102.8 + red: 63.1 + green: 49.3 + yellow: 33.4 + blue: 0 + magenta: 58 + cyan: 71 + white: 68.3 + brightBlack: 68.9 + brightRed: 51.2 + brightGreen: 45.3 + brightYellow: 38.1 + brightBlue: 43.3 + brightMagenta: 40.9 + brightCyan: 34.7 + brightWhite: 102.8 diff --git a/themes/chromodusk-classic.yaml b/themes/chromodusk-classic.yaml index 047bd09c..370e36d8 100644 --- a/themes/chromodusk-classic.yaml +++ b/themes/chromodusk-classic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pluumenbrownie.chromodynamics-v4" version: "1.0.1" installs: 133 + rating: 0 + ratings: 0 author: "pluumenbrownie" repo: "https://github.com/pluumenbrownie/Chromodusk-Classic-V4" url: "https://marketplace.visualstudio.com/items?itemName=pluumenbrownie.chromodynamics-v4" diff --git a/themes/chronica-pink.yaml b/themes/chronica-pink.yaml new file mode 100644 index 00000000..b4d0b97e --- /dev/null +++ b/themes/chronica-pink.yaml @@ -0,0 +1,52 @@ +name: "Chronica Pink" +source: + marketplace_id: "finn-schwarz.chronica-theme" + version: "1.2.1" + installs: 153 + rating: 0 + ratings: 0 + author: "Finn Schwarz" + repo: "https://github.com/fnschwarz/vscode-chronica-theme" + url: "https://marketplace.visualstudio.com/items?itemName=finn-schwarz.chronica-theme" +colors: + bg: "#1B0915" + fg: "#EEEEEE" + black: "#000000" + red: "#E6596E" + green: "#78E27F" + yellow: "#F7EA7A" + blue: "#558BC4" + magenta: "#E961A9" + cyan: "#5DB6CC" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#ED8796" + brightGreen: "#ACE6B0" + brightYellow: "#F7EEA2" + brightBlue: "#91B0E5" + brightMagenta: "#8EC3F1" + brightCyan: "#9CDEEC" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: 341 + pair: null + contrast: + fg: 96.3 + black: 0 + red: 39.6 + green: 75.1 + yellow: 92 + blue: 38 + magenta: 43.9 + cyan: 55.9 + white: 90.6 + brightBlack: 22.6 + brightRed: 53.3 + brightGreen: 82.4 + brightYellow: 94.8 + brightBlue: 58.4 + brightMagenta: 66.8 + brightCyan: 79.7 + brightWhite: 90.6 diff --git a/themes/chronokai.yaml b/themes/chronokai.yaml index 6965cf95..01bc4910 100644 --- a/themes/chronokai.yaml +++ b/themes/chronokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ChrisNewland.chronokai" version: "0.0.1" installs: 161 + rating: 0 + ratings: 0 author: "Chris Newland" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ChrisNewland.chronokai" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 101.8 black: 0 diff --git a/themes/cielo.yaml b/themes/cielo.yaml index e78bc055..c315936c 100644 --- a/themes/cielo.yaml +++ b/themes/cielo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PeterAhlgren.cielo-theme" version: "1.0.0" installs: 20 + rating: 5 + ratings: 1 author: "Peter Ahlgren" repo: "https://github.com/ahlgren1234/cielo-theme" url: "https://marketplace.visualstudio.com/items?itemName=PeterAhlgren.cielo-theme" diff --git a/themes/cinnamon.yaml b/themes/cinnamon.yaml index cb3b942d..9f86531d 100644 --- a/themes/cinnamon.yaml +++ b/themes/cinnamon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "imran.cinnamon" version: "0.4.0" installs: 714 + rating: 5 + ratings: 1 author: "imran" repo: "https://github.com/strongSoda/cinnamon-vscode" url: "https://marketplace.visualstudio.com/items?itemName=imran.cinnamon" diff --git a/themes/cinnamonroll.yaml b/themes/cinnamonroll.yaml index e9f2c2c2..a7b858bb 100644 --- a/themes/cinnamonroll.yaml +++ b/themes/cinnamonroll.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dango.cinnamonroll-theme" version: "1.0.3" installs: 1201 + rating: 5 + ratings: 1 author: "Daniel Radosa" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dango.cinnamonroll-theme" diff --git a/themes/citric-secret.yaml b/themes/citric-secret.yaml index fe0944fd..05948b88 100644 --- a/themes/citric-secret.yaml +++ b/themes/citric-secret.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Shayan-Chakraborty.citric-secret-theme" version: "1.0.0" installs: 94 + rating: 5 + ratings: 1 author: "Shayan-Chakraborty" repo: "https://github.com/shayan-chakraborty/citric-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Shayan-Chakraborty.citric-secret-theme" diff --git a/themes/city-fog.yaml b/themes/city-fog.yaml index 3ca5addc..caa8c7be 100644 --- a/themes/city-fog.yaml +++ b/themes/city-fog.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "metalloriff.city-fog-dawn" version: "0.0.1" installs: 1182 + rating: 5 + ratings: 1 author: "Metalloriff" repo: "https://github.com/Metalloriff/city-fog-dawn-vscode" url: "https://marketplace.visualstudio.com/items?itemName=metalloriff.city-fog-dawn" diff --git a/themes/ckai-color-theme.yaml b/themes/ckai-color-theme.yaml new file mode 100644 index 00000000..e3497abe --- /dev/null +++ b/themes/ckai-color-theme.yaml @@ -0,0 +1,52 @@ +name: "ckai-color-theme" +source: + marketplace_id: "lvchencheng.theme-ckai" + version: "1.3.0" + installs: 91 + rating: 0 + ratings: 0 + author: "lvchencheng" + repo: "https://gitee.com/lu-chencheng/ckai" + url: "https://marketplace.visualstudio.com/items?itemName=lvchencheng.theme-ckai" +colors: + bg: "#292929" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 99.3 + black: 0 + red: 22 + green: 50.4 + yellow: 55 + blue: 32 + magenta: 29.6 + cyan: 47.8 + white: 85.9 + brightBlack: 19.4 + brightRed: 34.7 + brightGreen: 74.4 + brightYellow: 81.3 + brightBlue: 47.2 + brightMagenta: 43.9 + brightCyan: 70.8 + brightWhite: 99.3 diff --git a/themes/clairvoyance-theme-alt.yaml b/themes/clairvoyance-theme-alt.yaml index da93111c..5350c8ce 100644 --- a/themes/clairvoyance-theme-alt.yaml +++ b/themes/clairvoyance-theme-alt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dnlcorona.clairvoyance-theme" version: "1.2.0" installs: 147 + rating: 5 + ratings: 1 author: "dnlcorona" repo: "https://github.com/dnlcorona/clairvoyance-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=dnlcorona.clairvoyance-theme" diff --git a/themes/clairvoyance-theme-grape.yaml b/themes/clairvoyance-theme-grape.yaml index 580acc56..ca7cbe13 100644 --- a/themes/clairvoyance-theme-grape.yaml +++ b/themes/clairvoyance-theme-grape.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dnlcorona.clairvoyance-theme" version: "1.2.0" installs: 147 + rating: 5 + ratings: 1 author: "dnlcorona" repo: "https://github.com/dnlcorona/clairvoyance-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=dnlcorona.clairvoyance-theme" diff --git a/themes/clairvoyance-theme-pinkish.yaml b/themes/clairvoyance-theme-pinkish.yaml index 2b501122..3a462f5e 100644 --- a/themes/clairvoyance-theme-pinkish.yaml +++ b/themes/clairvoyance-theme-pinkish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dnlcorona.clairvoyance-theme" version: "1.2.0" installs: 147 + rating: 5 + ratings: 1 author: "dnlcorona" repo: "https://github.com/dnlcorona/clairvoyance-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=dnlcorona.clairvoyance-theme" diff --git a/themes/clairvoyance-theme.yaml b/themes/clairvoyance-theme.yaml index 5907f43f..94575297 100644 --- a/themes/clairvoyance-theme.yaml +++ b/themes/clairvoyance-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dnlcorona.clairvoyance-theme" version: "1.2.0" installs: 147 + rating: 5 + ratings: 1 author: "dnlcorona" repo: "https://github.com/dnlcorona/clairvoyance-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=dnlcorona.clairvoyance-theme" diff --git a/themes/clarity-design-system-dark.yaml b/themes/clarity-design-system-dark.yaml index 1bc39e12..10768185 100644 --- a/themes/clarity-design-system-dark.yaml +++ b/themes/clarity-design-system-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BBogdanov.cds-color-theme" version: "0.0.6" installs: 432 + rating: 0 + ratings: 0 author: "BBogdanov" repo: "https://github.com/bbogdanov/cds-code-themes" url: "https://marketplace.visualstudio.com/items?itemName=BBogdanov.cds-color-theme" diff --git a/themes/clarity-design-system-light.yaml b/themes/clarity-design-system-light.yaml index 71684af6..32db2b46 100644 --- a/themes/clarity-design-system-light.yaml +++ b/themes/clarity-design-system-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BBogdanov.cds-color-theme" version: "0.0.6" installs: 432 + rating: 0 + ratings: 0 author: "BBogdanov" repo: "https://github.com/bbogdanov/cds-code-themes" url: "https://marketplace.visualstudio.com/items?itemName=BBogdanov.cds-color-theme" diff --git a/themes/claro.yaml b/themes/claro.yaml index 59dcaa88..cc88be69 100644 --- a/themes/claro.yaml +++ b/themes/claro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JosafaMarengo.foco" version: "0.2.0" installs: 139 + rating: 0 + ratings: 0 author: "Josafá Marengo" repo: "https://github.com/josafamarengo/VSCode-Foco-Theme" url: "https://marketplace.visualstudio.com/items?itemName=JosafaMarengo.foco" diff --git a/themes/classic-essential-colors-blue.yaml b/themes/classic-essential-colors-blue.yaml new file mode 100644 index 00000000..957880fb --- /dev/null +++ b/themes/classic-essential-colors-blue.yaml @@ -0,0 +1,52 @@ +name: "Classic Essential Colors (Blue)" +source: + marketplace_id: "balsa.vscode-theme-classic-essential-colors-blue" + version: "1.2.2" + installs: 395 + rating: 0 + ratings: 0 + author: "balsa" + repo: "https://github.com/makesomesparks/vscode-theme-classic-essential-colors-blue" + url: "https://marketplace.visualstudio.com/items?itemName=balsa.vscode-theme-classic-essential-colors-blue" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#FF0000" + green: "#008A1C" + yellow: "#F8FF00" + blue: "#0000FF" + magenta: "#BC05BC" + cyan: "#00CDFF" + white: "#A7A7A7" + brightBlack: "#474747" + brightRed: "#FF4141" + brightGreen: "#00FF34" + brightYellow: "#FCFF95" + brightBlue: "#4040FF" + brightMagenta: "#BC05BC" + brightCyan: "#64E0FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 64.1 + green: 70.6 + yellow: 0 + blue: 85.8 + magenta: 74.6 + cyan: 34.9 + white: 47.4 + brightBlack: 91.5 + brightRed: 60.5 + brightGreen: 17 + brightYellow: 0 + brightBlue: 79.6 + brightMagenta: 74.6 + brightCyan: 24.6 + brightWhite: 0 diff --git a/themes/classic-terminal.yaml b/themes/classic-terminal.yaml index 38ef4029..7f10397d 100644 --- a/themes/classic-terminal.yaml +++ b/themes/classic-terminal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.inspiration" version: "0.0.19" installs: 1076 + rating: 5 + ratings: 1 author: "YesCode" repo: "https://github.com/yesomac/inspiration_themevsc" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" diff --git a/themes/claude-code-dark-high-contrast.yaml b/themes/claude-code-dark-high-contrast.yaml index e977dc18..a31dd698 100644 --- a/themes/claude-code-dark-high-contrast.yaml +++ b/themes/claude-code-dark-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ashwingopalsamy.claude-code-theme" version: "1.2.2" installs: 913 + rating: 5 + ratings: 2 author: "Ashwin Gopalsamy" repo: "https://github.com/ashwingopalsamy/claude-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" diff --git a/themes/claude-code-dark.yaml b/themes/claude-code-dark.yaml new file mode 100644 index 00000000..9c3de6b0 --- /dev/null +++ b/themes/claude-code-dark.yaml @@ -0,0 +1,52 @@ +name: "Claude Code Dark" +source: + marketplace_id: "ashwingopalsamy.claude-code-theme" + version: "1.2.2" + installs: 913 + rating: 5 + ratings: 2 + author: "Ashwin Gopalsamy" + repo: "https://github.com/ashwingopalsamy/claude-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" +colors: + bg: "#141413" + fg: "#EAE7DF" + black: "#1A1917" + red: "#D47563" + green: "#9ACA86" + yellow: "#E8C96B" + blue: "#61AAF2" + magenta: "#9B87F5" + cyan: "#8CC4FF" + white: "#D9D5CC" + brightBlack: "#6B665F" + brightRed: "#F09884" + brightGreen: "#B6E0A5" + brightYellow: "#F2D98F" + brightBlue: "#A2D2FF" + brightMagenta: "#C9BCFF" + brightCyan: "#BDE0FF" + brightWhite: "#F5F2E9" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: "Claude Code Light" + contrast: + fg: 91.6 + black: 0 + red: 41.9 + green: 66.2 + yellow: 74.7 + blue: 53.1 + magenta: 45.5 + cyan: 67.6 + white: 80.5 + brightBlack: 22.6 + brightRed: 58.3 + brightGreen: 79.9 + brightYellow: 83.8 + brightBlue: 75.6 + brightMagenta: 70.6 + brightCyan: 84.5 + brightWhite: 98.6 diff --git a/themes/claude-code-light-high-contrast.yaml b/themes/claude-code-light-high-contrast.yaml index 16e08468..fbd08c57 100644 --- a/themes/claude-code-light-high-contrast.yaml +++ b/themes/claude-code-light-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ashwingopalsamy.claude-code-theme" version: "1.2.2" installs: 913 + rating: 5 + ratings: 2 author: "Ashwin Gopalsamy" repo: "https://github.com/ashwingopalsamy/claude-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" diff --git a/themes/claude-code-light.yaml b/themes/claude-code-light.yaml new file mode 100644 index 00000000..cce2e3a4 --- /dev/null +++ b/themes/claude-code-light.yaml @@ -0,0 +1,52 @@ +name: "Claude Code Light" +source: + marketplace_id: "ashwingopalsamy.claude-code-theme" + version: "1.2.2" + installs: 913 + rating: 5 + ratings: 2 + author: "Ashwin Gopalsamy" + repo: "https://github.com/ashwingopalsamy/claude-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" +colors: + bg: "#FAF9F5" + fg: "#1A1917" + black: "#1A1917" + red: "#A84B3A" + green: "#2E7C4C" + yellow: "#8A6220" + blue: "#207FDE" + magenta: "#6A5BCC" + cyan: "#2E5F99" + white: "#746E64" + brightBlack: "#8D877D" + brightRed: "#C45F4A" + brightGreen: "#5E8F6D" + brightYellow: "#9C7A39" + brightBlue: "#4F79A8" + brightMagenta: "#6D5DBD" + brightCyan: "#45809E" + brightWhite: "#4A473F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Claude Code Dark" + contrast: + fg: 100.8 + black: 100.8 + red: 73.9 + green: 71.4 + yellow: 73.4 + blue: 63.8 + magenta: 72.3 + cyan: 78.5 + white: 71.3 + brightBlack: 59.6 + brightRed: 64.3 + brightGreen: 61.2 + brightYellow: 63.5 + brightBlue: 67.7 + brightMagenta: 72.6 + brightCyan: 66.3 + brightWhite: 87.8 diff --git a/themes/claude-dark-anthropic.yaml b/themes/claude-dark-anthropic.yaml index 8d110181..d20de22c 100644 --- a/themes/claude-dark-anthropic.yaml +++ b/themes/claude-dark-anthropic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "duca.claude-anthropic-theme" version: "1.0.0" installs: 39 + rating: 0 + ratings: 0 author: "duca" repo: "https://github.com/igorfelipeduca/claude-theme" url: "https://marketplace.visualstudio.com/items?itemName=duca.claude-anthropic-theme" diff --git a/themes/claude-dark-high-contrast.yaml b/themes/claude-dark-high-contrast.yaml new file mode 100644 index 00000000..edb27bf0 --- /dev/null +++ b/themes/claude-dark-high-contrast.yaml @@ -0,0 +1,52 @@ +name: "Claude Dark High Contrast" +source: + marketplace_id: "AlvinUnreal.claude-vscode-theme" + version: "1.2.0" + installs: 2148 + rating: 5 + ratings: 1 + author: "Alvin Unreal" + repo: "https://github.com/alvinunreal/awesome-claude" + url: "https://marketplace.visualstudio.com/items?itemName=AlvinUnreal.claude-vscode-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#FF8A8A" + green: "#8FE99F" + yellow: "#FFE066" + blue: "#82C7FF" + magenta: "#C49BFF" + cyan: "#66E8FF" + white: "#B8B8B8" + brightBlack: "#5A5A5A" + brightRed: "#FFAAAA" + brightGreen: "#AAFFBB" + brightYellow: "#FFF099" + brightBlue: "#AADDFF" + brightMagenta: "#DDBBFF" + brightCyan: "#99FFFF" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 57.8 + green: 81.3 + yellow: 88.8 + blue: 68.9 + magenta: 58.7 + cyan: 82.5 + white: 64 + brightBlack: 18.1 + brightRed: 69 + brightGreen: 95.4 + brightYellow: 97.1 + brightBlue: 82 + brightMagenta: 73.7 + brightCyan: 96.9 + brightWhite: 98.1 diff --git a/themes/claude-dark-italic.yaml b/themes/claude-dark-italic.yaml index 944444f0..9845c71d 100644 --- a/themes/claude-dark-italic.yaml +++ b/themes/claude-dark-italic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlvinUnreal.claude-vscode-theme" version: "1.2.0" installs: 2148 + rating: 5 + ratings: 1 author: "Alvin Unreal" repo: "https://github.com/alvinunreal/awesome-claude" url: "https://marketplace.visualstudio.com/items?itemName=AlvinUnreal.claude-vscode-theme" diff --git a/themes/claude-dark.yaml b/themes/claude-dark.yaml index b1994919..2ab644e1 100644 --- a/themes/claude-dark.yaml +++ b/themes/claude-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SamiHindi.claude-theme-sami-hindi" version: "0.0.1" installs: 1293 + rating: 0 + ratings: 0 author: "Sami Hindi" repo: "https://github.com/FujiwaraChoki/claude-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamiHindi.claude-theme-sami-hindi" diff --git a/themes/claude-light.yaml b/themes/claude-light.yaml index 0ca57ba4..56ff87d3 100644 --- a/themes/claude-light.yaml +++ b/themes/claude-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SamiHindi.claude-theme-sami-hindi" version: "0.0.1" installs: 1293 + rating: 0 + ratings: 0 author: "Sami Hindi" repo: "https://github.com/FujiwaraChoki/claude-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamiHindi.claude-theme-sami-hindi" diff --git a/themes/claude-mode-dark.yaml b/themes/claude-mode-dark.yaml index b56b8ea5..fc6e2a1f 100644 --- a/themes/claude-mode-dark.yaml +++ b/themes/claude-mode-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheWebDev.claude-mode" version: "1.1.0" installs: 60 + rating: 0 + ratings: 0 author: "TheWebDev" repo: "https://github.com/stevie2codes/claude-mode" url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.claude-mode" diff --git a/themes/claude-mode-light.yaml b/themes/claude-mode-light.yaml index d5294296..f5d1d8dc 100644 --- a/themes/claude-mode-light.yaml +++ b/themes/claude-mode-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheWebDev.claude-mode" version: "1.1.0" installs: 60 + rating: 0 + ratings: 0 author: "TheWebDev" repo: "https://github.com/stevie2codes/claude-mode" url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.claude-mode" diff --git a/themes/claude-velvet-dark.yaml b/themes/claude-velvet-dark.yaml index 9b486792..421256b6 100644 --- a/themes/claude-velvet-dark.yaml +++ b/themes/claude-velvet-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheWebDev.claude-mode" version: "1.1.0" installs: 60 + rating: 0 + ratings: 0 author: "TheWebDev" repo: "https://github.com/stevie2codes/claude-mode" url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.claude-mode" diff --git a/themes/claude-velvet-light.yaml b/themes/claude-velvet-light.yaml index 7b50f76a..91282ac2 100644 --- a/themes/claude-velvet-light.yaml +++ b/themes/claude-velvet-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheWebDev.claude-mode" version: "1.1.0" installs: 60 + rating: 0 + ratings: 0 author: "TheWebDev" repo: "https://github.com/stevie2codes/claude-mode" url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.claude-mode" diff --git a/themes/claude-vscode-dark-brand.yaml b/themes/claude-vscode-dark-brand.yaml new file mode 100644 index 00000000..cb194cd7 --- /dev/null +++ b/themes/claude-vscode-dark-brand.yaml @@ -0,0 +1,52 @@ +name: "Claude VSCode Dark Brand" +source: + marketplace_id: "jmramos.claude-ui-theme" + version: "1.0.3" + installs: 38 + rating: 0 + ratings: 0 + author: "jmramos" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jmramos.claude-ui-theme" +colors: + bg: "#262624" + fg: "#F1F1EF" + black: "#1B1B19" + red: "#D97757" + green: "#B7B5A9" + yellow: "#B26842" + blue: "#61AAF2" + magenta: "#C3DDF7" + cyan: "#C3C0B6" + white: "#F1F1EF" + brightBlack: "#52514A" + brightRed: "#B26842" + brightGreen: "#C3C0B6" + brightYellow: "#D97757" + brightBlue: "#61AAF2" + brightMagenta: "#C3DDF7" + brightCyan: "#B7B5A9" + brightWhite: "#FAF9F5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Claude VSCode Light Brand" + contrast: + fg: 95.5 + black: 0 + red: 40.8 + green: 59 + yellow: 29.6 + blue: 50.8 + magenta: 81.1 + cyan: 65.5 + white: 95.5 + brightBlack: 11.4 + brightRed: 29.6 + brightGreen: 65.5 + brightYellow: 40.8 + brightBlue: 50.8 + brightMagenta: 81.1 + brightCyan: 59 + brightWhite: 100.8 diff --git a/themes/claude-vscode-light-brand.yaml b/themes/claude-vscode-light-brand.yaml new file mode 100644 index 00000000..dadd04ed --- /dev/null +++ b/themes/claude-vscode-light-brand.yaml @@ -0,0 +1,52 @@ +name: "Claude VSCode Light Brand" +source: + marketplace_id: "jmramos.claude-ui-theme" + version: "1.0.3" + installs: 38 + rating: 0 + ratings: 0 + author: "jmramos" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jmramos.claude-ui-theme" +colors: + bg: "#FAF9F5" + fg: "#3D3929" + black: "#3D3929" + red: "#CC785C" + green: "#535146" + yellow: "#B26842" + blue: "#61AAF2" + magenta: "#C3DDF7" + cyan: "#6E6D68" + white: "#FAF9F5" + brightBlack: "#6E6D68" + brightRed: "#B26842" + brightGreen: "#3D3929" + brightYellow: "#CC785C" + brightBlue: "#61AAF2" + brightMagenta: "#C3DDF7" + brightCyan: "#535146" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "indigo" + hue: null + pair: "Claude VSCode Dark Brand" + contrast: + fg: 93 + black: 93 + red: 56.2 + green: 84 + yellow: 65.4 + blue: 44.5 + magenta: 15.7 + cyan: 72.1 + white: 0 + brightBlack: 72.1 + brightRed: 65.4 + brightGreen: 93 + brightYellow: 56.2 + brightBlue: 44.5 + brightMagenta: 15.7 + brightCyan: 84 + brightWhite: 0 diff --git a/themes/claude-warm-light.yaml b/themes/claude-warm-light.yaml index 5235c3b9..98ff6612 100644 --- a/themes/claude-warm-light.yaml +++ b/themes/claude-warm-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nghiavo.claude-warm-light" version: "0.2.5" installs: 48 + rating: 5 + ratings: 2 author: "Nghia SDET" repo: "https://github.com/vodainghia/claude-warm-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=nghiavo.claude-warm-light" diff --git a/themes/clean-white.yaml b/themes/clean-white.yaml index 8d3ba46f..2043f13f 100644 --- a/themes/clean-white.yaml +++ b/themes/clean-white.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nanakon.clear" version: "1.1.1" installs: 1252 + rating: 0 + ratings: 0 author: "nana_kon" repo: "https://github.com/va1kio/clear-white" url: "https://marketplace.visualstudio.com/items?itemName=nanakon.clear" diff --git a/themes/clear-dark.yaml b/themes/clear-dark.yaml index 011bc5b6..83aa6bcf 100644 --- a/themes/clear-dark.yaml +++ b/themes/clear-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nanakon.clear" version: "1.1.1" installs: 1252 + rating: 0 + ratings: 0 author: "nana_kon" repo: "https://github.com/va1kio/clear-white" url: "https://marketplace.visualstudio.com/items?itemName=nanakon.clear" diff --git a/themes/cleo.yaml b/themes/cleo.yaml index 0c1deb2f..7f1a822f 100644 --- a/themes/cleo.yaml +++ b/themes/cleo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Cleo.cleo" version: "0.1.7" installs: 1576 + rating: 3.25 + ratings: 4 author: "Cleo" repo: "https://github.com/FabioKaelin/cleo-vscode-extension" url: "https://marketplace.visualstudio.com/items?itemName=Cleo.cleo" diff --git a/themes/clorest.yaml b/themes/clorest.yaml new file mode 100644 index 00000000..dc9e7924 --- /dev/null +++ b/themes/clorest.yaml @@ -0,0 +1,52 @@ +name: "Clorest" +source: + marketplace_id: "avysridhar.clorest" + version: "0.0.3" + installs: 165 + rating: 0 + ratings: 0 + author: "Avinash Sridhar" + repo: "https://github.com/dionysus98/clorest" + url: "https://marketplace.visualstudio.com/items?itemName=avysridhar.clorest" +colors: + bg: "#1E1E1E" + fg: "#ADBAC7" + black: "#545D68" + red: "#539BF5" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 62.4 + black: 17.1 + red: 45.7 + green: 45.6 + yellow: 45.9 + blue: 45.7 + magenta: 45.4 + cyan: 60 + white: 46.6 + brightBlack: 24.2 + brightRed: 58.6 + brightGreen: 58.2 + brightYellow: 58.5 + brightBlue: 58.4 + brightMagenta: 72.3 + brightCyan: 68.6 + brightWhite: 80.7 diff --git a/themes/cloudmint-night.yaml b/themes/cloudmint-night.yaml index 17ab828e..93200732 100644 --- a/themes/cloudmint-night.yaml +++ b/themes/cloudmint-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/clrsync.yaml b/themes/clrsync.yaml index 3b382acf..c903655d 100644 --- a/themes/clrsync.yaml +++ b/themes/clrsync.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "obsqrbtz.clrsync" version: "1.0.2" installs: 13 + rating: 0 + ratings: 0 author: "obsqrbtz" repo: "https://github.com/obsqrbtz/clrsync-vscode" url: "https://marketplace.visualstudio.com/items?itemName=obsqrbtz.clrsync" diff --git a/themes/clu-tron-legacy.yaml b/themes/clu-tron-legacy.yaml index 73d53b67..b87c38cb 100644 --- a/themes/clu-tron-legacy.yaml +++ b/themes/clu-tron-legacy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rubenzn.encom-tron-legacy" version: "1.0.0" installs: 61 + rating: 5 + ratings: 1 author: "rubenzn" repo: "https://github.com/ruben-cxtx/best-tron-legacy-theme" url: "https://marketplace.visualstudio.com/items?itemName=rubenzn.encom-tron-legacy" diff --git a/themes/clubcleaver-functional-matrix.yaml b/themes/clubcleaver-functional-matrix.yaml index 46a7e46f..b8c06aea 100644 --- a/themes/clubcleaver-functional-matrix.yaml +++ b/themes/clubcleaver-functional-matrix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "clubcleaver.functional-matrix" version: "1.0.1" installs: 517 + rating: 5 + ratings: 1 author: "clubcleaver" repo: "https://github.com/clubcleaver/functional-matrix" url: "https://marketplace.visualstudio.com/items?itemName=clubcleaver.functional-matrix" diff --git a/themes/clymate-monochrome-vsdark-color-theme.yaml b/themes/clymate-monochrome-vsdark-color-theme.yaml index 2de5f7a5..62166678 100644 --- a/themes/clymate-monochrome-vsdark-color-theme.yaml +++ b/themes/clymate-monochrome-vsdark-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "clydedsouza.clymate-themes-vscode" version: "1.0.0" installs: 2726 + rating: 0 + ratings: 0 author: "Clyde D'Souza" repo: "https://github.com/ClydeDz/clymate-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=clydedsouza.clymate-themes-vscode" diff --git a/themes/clymate-pop-neon-vsdark-color-theme.yaml b/themes/clymate-pop-neon-vsdark-color-theme.yaml index ccda6f1c..0c2e6cd7 100644 --- a/themes/clymate-pop-neon-vsdark-color-theme.yaml +++ b/themes/clymate-pop-neon-vsdark-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "clydedsouza.clymate-themes-vscode" version: "1.0.0" installs: 2726 + rating: 0 + ratings: 0 author: "Clyde D'Souza" repo: "https://github.com/ClydeDz/clymate-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=clydedsouza.clymate-themes-vscode" diff --git a/themes/clymate-vintage-vsdark-color-theme.yaml b/themes/clymate-vintage-vsdark-color-theme.yaml index c5bcc34b..f85993d2 100644 --- a/themes/clymate-vintage-vsdark-color-theme.yaml +++ b/themes/clymate-vintage-vsdark-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "clydedsouza.clymate-themes-vscode" version: "1.0.0" installs: 2726 + rating: 0 + ratings: 0 author: "Clyde D'Souza" repo: "https://github.com/ClydeDz/clymate-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=clydedsouza.clymate-themes-vscode" diff --git a/themes/clymate-vsdark-color-theme.yaml b/themes/clymate-vsdark-color-theme.yaml index 50c3753b..26acffa2 100644 --- a/themes/clymate-vsdark-color-theme.yaml +++ b/themes/clymate-vsdark-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "clydedsouza.clymate-themes-vscode" version: "1.0.0" installs: 2726 + rating: 0 + ratings: 0 author: "Clyde D'Souza" repo: "https://github.com/ClydeDz/clymate-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=clydedsouza.clymate-themes-vscode" diff --git a/themes/cmyk-colourrrs.yaml b/themes/cmyk-colourrrs.yaml index ef28de0e..0f333c92 100644 --- a/themes/cmyk-colourrrs.yaml +++ b/themes/cmyk-colourrrs.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "techygrrrl.techygrrrl-cmyk-colourrrs" version: "0.2.2" installs: 1383 + rating: 5 + ratings: 1 author: "techygrrrl" repo: "https://github.com/techygrrrl/techygrrrl-cmyk-colourrrs-vscode" url: "https://marketplace.visualstudio.com/items?itemName=techygrrrl.techygrrrl-cmyk-colourrrs" diff --git a/themes/coal.yaml b/themes/coal.yaml index 37a9fcbe..ad86d3a6 100644 --- a/themes/coal.yaml +++ b/themes/coal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tfeak2.coal" version: "0.0.1" installs: 335 + rating: 0 + ratings: 0 author: "tfeak2" repo: "https://github.com/tfeak2/coal" url: "https://marketplace.visualstudio.com/items?itemName=tfeak2.coal" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "magenta" hue: 286 + pair: null contrast: fg: 77.3 black: 0 diff --git a/themes/cobalt-ice.yaml b/themes/cobalt-ice.yaml new file mode 100644 index 00000000..7360d203 --- /dev/null +++ b/themes/cobalt-ice.yaml @@ -0,0 +1,52 @@ +name: "Cobalt-Ice" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#020817" + fg: "#F8FAFC" + black: "#020817" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#3B82F6" + magenta: "#3B82F6" + cyan: "#29C3A0" + white: "#F8FAFC" + brightBlack: "#020817" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#3B82F6" + brightMagenta: "#3B82F6" + brightCyan: "#29C3A0" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "purple" + hue: 259 + pair: null + contrast: + fg: 104.3 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.6 + blue: 37.6 + magenta: 37.6 + cyan: 58.5 + white: 104.3 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 37.6 + brightMagenta: 37.6 + brightCyan: 58.5 + brightWhite: 104.3 diff --git a/themes/cobalt-next-dark.yaml b/themes/cobalt-next-dark.yaml index 798f9424..ea6595aa 100644 --- a/themes/cobalt-next-dark.yaml +++ b/themes/cobalt-next-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dline.CobaltNext" version: "0.4.5" installs: 125787 + rating: 4.87 + ratings: 15 author: "David Leininger" repo: "https://github.com/davidleininger/cobaltnext-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dline.CobaltNext" diff --git a/themes/cobalt-next.yaml b/themes/cobalt-next.yaml index 7dba75fd..968f46f8 100644 --- a/themes/cobalt-next.yaml +++ b/themes/cobalt-next.yaml @@ -1,11 +1,13 @@ name: "Cobalt Next" source: - marketplace_id: "dline.CobaltNext" - version: "0.4.5" - installs: 125787 - author: "David Leininger" - repo: "https://github.com/davidleininger/cobaltnext-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=dline.CobaltNext" + marketplace_id: "samhinshaw.daark" + version: "0.0.1" + installs: 300 + rating: 0 + ratings: 0 + author: "Sam Hinshaw" + repo: "https://github.com/samhinshaw/daark" + url: "https://marketplace.visualstudio.com/items?itemName=samhinshaw.daark" colors: bg: "#1B2B34" fg: "#FFFFFF" diff --git a/themes/cobalt3dark.yaml b/themes/cobalt3dark.yaml index f49056e0..7265888d 100644 --- a/themes/cobalt3dark.yaml +++ b/themes/cobalt3dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hendrikbeutlin.Cobalt3Dark" version: "0.5.0" installs: 1522 + rating: 0 + ratings: 0 author: "hendrikbeutlin" repo: "https://github.com/hendrikbeutlin/Cobalt3Dark" url: "https://marketplace.visualstudio.com/items?itemName=hendrikbeutlin.Cobalt3Dark" diff --git a/themes/cobalt9.yaml b/themes/cobalt9.yaml index d7fe2f63..ea92e035 100644 --- a/themes/cobalt9.yaml +++ b/themes/cobalt9.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pydemia.cobalt9" version: "1.4.2" installs: 7246 + rating: 4.83 + ratings: 6 author: "Youngju Jaden Kim" repo: "https://github.com/pydemia/pydemia-vscode-syntax/cobalt9" url: "https://marketplace.visualstudio.com/items?itemName=pydemia.cobalt9" diff --git a/themes/coco-theme-au-palette.yaml b/themes/coco-theme-au-palette.yaml index 3329a152..b0b2817d 100644 --- a/themes/coco-theme-au-palette.yaml +++ b/themes/coco-theme-au-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/coco-theme-ca-palette.yaml b/themes/coco-theme-ca-palette.yaml index 7d053069..a0f1a776 100644 --- a/themes/coco-theme-ca-palette.yaml +++ b/themes/coco-theme-ca-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/coco-theme-coco-palette.yaml b/themes/coco-theme-coco-palette.yaml index 55be98da..ea211ef7 100644 --- a/themes/coco-theme-coco-palette.yaml +++ b/themes/coco-theme-coco-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/coco-theme-coconut-palette.yaml b/themes/coco-theme-coconut-palette.yaml index 098a843c..646f0447 100644 --- a/themes/coco-theme-coconut-palette.yaml +++ b/themes/coco-theme-coconut-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/coco-theme-de-palette.yaml b/themes/coco-theme-de-palette.yaml index 9ad29e2f..c0cab746 100644 --- a/themes/coco-theme-de-palette.yaml +++ b/themes/coco-theme-de-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/coco-theme-es-palette.yaml b/themes/coco-theme-es-palette.yaml index bb1b93e0..98b492b1 100644 --- a/themes/coco-theme-es-palette.yaml +++ b/themes/coco-theme-es-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/coco-theme-fr-palette.yaml b/themes/coco-theme-fr-palette.yaml index 90beb55c..b0897c61 100644 --- a/themes/coco-theme-fr-palette.yaml +++ b/themes/coco-theme-fr-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/coco-theme-gb-palette.yaml b/themes/coco-theme-gb-palette.yaml index eb1b2d0a..af4fe35a 100644 --- a/themes/coco-theme-gb-palette.yaml +++ b/themes/coco-theme-gb-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/coco-theme-in-palette.yaml b/themes/coco-theme-in-palette.yaml index fa926e56..e0cda933 100644 --- a/themes/coco-theme-in-palette.yaml +++ b/themes/coco-theme-in-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/coco-theme-personnal-palette.yaml b/themes/coco-theme-personnal-palette.yaml index 2f7e9dfb..7e9c0a6e 100644 --- a/themes/coco-theme-personnal-palette.yaml +++ b/themes/coco-theme-personnal-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/coco-theme-se-palette.yaml b/themes/coco-theme-se-palette.yaml index fcd8240e..08ec7b6a 100644 --- a/themes/coco-theme-se-palette.yaml +++ b/themes/coco-theme-se-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/coco-theme-tr-palette.yaml b/themes/coco-theme-tr-palette.yaml index 2f5434d8..f0dfe063 100644 --- a/themes/coco-theme-tr-palette.yaml +++ b/themes/coco-theme-tr-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/coco-theme-v1-palette.yaml b/themes/coco-theme-v1-palette.yaml index 23f965f3..5cdda00c 100644 --- a/themes/coco-theme-v1-palette.yaml +++ b/themes/coco-theme-v1-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/coco-theme.yaml b/themes/coco-theme.yaml index 7ad5e2a3..6e3a7e1f 100644 --- a/themes/coco-theme.yaml +++ b/themes/coco-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/coco.yaml b/themes/coco.yaml index 8ce33f53..49de1b75 100644 --- a/themes/coco.yaml +++ b/themes/coco.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/cocoa.yaml b/themes/cocoa.yaml index 05210f40..85e41ec1 100644 --- a/themes/cocoa.yaml +++ b/themes/cocoa.yaml @@ -2,7 +2,9 @@ name: "cocoa" source: marketplace_id: "akirco.cocoa-theme" version: "0.0.4" - installs: 130 + installs: 131 + rating: 0 + ratings: 0 author: "akirco" repo: "https://github.com/akirco/vscode-theme-cocoa" url: "https://marketplace.visualstudio.com/items?itemName=akirco.cocoa-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 276 + pair: null contrast: fg: 62.1 black: 34.1 diff --git a/themes/coconut-dark.yaml b/themes/coconut-dark.yaml index f82ce84d..3903d453 100644 --- a/themes/coconut-dark.yaml +++ b/themes/coconut-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "coconut.coconut-vscode-theme" version: "0.0.4" installs: 227 + rating: 5 + ratings: 1 author: "coconut" repo: null url: "https://marketplace.visualstudio.com/items?itemName=coconut.coconut-vscode-theme" diff --git a/themes/coconut.yaml b/themes/coconut.yaml index fdefca61..e273a983 100644 --- a/themes/coconut.yaml +++ b/themes/coconut.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kifzuka.coco" version: "16.1.2" installs: 651 + rating: 5 + ratings: 1 author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" diff --git a/themes/code-dadi-dark.yaml b/themes/code-dadi-dark.yaml index 8c4b9921..0ef571e9 100644 --- a/themes/code-dadi-dark.yaml +++ b/themes/code-dadi-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodeDadi.code-dadi-dark" version: "1.1.1" installs: 139 + rating: 0 + ratings: 0 author: "Code Dadi" repo: "https://github.com/4rexdadi/code-dadi-dark" url: "https://marketplace.visualstudio.com/items?itemName=CodeDadi.code-dadi-dark" diff --git a/themes/code-dadi-lighter.yaml b/themes/code-dadi-lighter.yaml index 11e55c5e..0289f306 100644 --- a/themes/code-dadi-lighter.yaml +++ b/themes/code-dadi-lighter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodeDadi.code-dadi-dark" version: "1.1.1" installs: 139 + rating: 0 + ratings: 0 author: "Code Dadi" repo: "https://github.com/4rexdadi/code-dadi-dark" url: "https://marketplace.visualstudio.com/items?itemName=CodeDadi.code-dadi-dark" diff --git a/themes/code-glasses-vision-pro.yaml b/themes/code-glasses-vision-pro.yaml new file mode 100644 index 00000000..c6c9f013 --- /dev/null +++ b/themes/code-glasses-vision-pro.yaml @@ -0,0 +1,52 @@ +name: "Code Glasses - Vision Pro" +source: + marketplace_id: "shaant-shakti.code-glasses" + version: "0.0.3" + installs: 153 + rating: 0 + ratings: 0 + author: "Aadityaa" + repo: "https://github.com/Aditya-Ace/Code-Glasses" + url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.code-glasses" +colors: + bg: "#0D0D0D" + fg: "#EADBCF" + black: "#1A1A1A" + red: "#C75D4E" + green: "#A7C484" + yellow: "#FBC154" + blue: "#8A8AA1" + magenta: "#C75D4E" + cyan: "#A7C484" + white: "#EADBCF" + brightBlack: "#6B6B7F" + brightRed: "#E57373" + brightGreen: "#C5E1A5" + brightYellow: "#FFF176" + brightBlue: "#B39DDB" + brightMagenta: "#F06292" + brightCyan: "#80CBC4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 86.1 + black: 0 + red: 33.7 + green: 65.2 + yellow: 74.6 + blue: 40.2 + magenta: 33.7 + cyan: 65.2 + white: 86.1 + brightBlack: 25.6 + brightRed: 45.5 + brightGreen: 82.5 + brightYellow: 96.6 + brightBlue: 54.6 + brightMagenta: 44.8 + brightCyan: 67.1 + brightWhite: 107.6 diff --git a/themes/code-hunter-magnum-purple.yaml b/themes/code-hunter-magnum-purple.yaml index 492a23e7..f3bcf722 100644 --- a/themes/code-hunter-magnum-purple.yaml +++ b/themes/code-hunter-magnum-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodeHunterBD.code-hunter-theme" version: "4.5.1" installs: 1088 + rating: 5 + ratings: 3 author: "Code Hunter" repo: "https://github.com/Code-Hunter-OfficialBD/code-hunter-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=CodeHunterBD.code-hunter-theme" diff --git a/themes/code-hunter-spruce-wind.yaml b/themes/code-hunter-spruce-wind.yaml index 1f21d022..868a69f3 100644 --- a/themes/code-hunter-spruce-wind.yaml +++ b/themes/code-hunter-spruce-wind.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodeHunterBD.code-hunter-theme" version: "4.5.1" installs: 1088 + rating: 5 + ratings: 3 author: "Code Hunter" repo: "https://github.com/Code-Hunter-OfficialBD/code-hunter-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=CodeHunterBD.code-hunter-theme" diff --git a/themes/code-kraken-theme.yaml b/themes/code-kraken-theme.yaml index 2a14b929..c0a87a83 100644 --- a/themes/code-kraken-theme.yaml +++ b/themes/code-kraken-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheCodeKraken.code-kraken-theme" version: "1.0.1" installs: 230 + rating: 5 + ratings: 1 author: "The Code Kraken" repo: "https://github.com/officialcodekraken/code-kraken-theme" url: "https://marketplace.visualstudio.com/items?itemName=TheCodeKraken.code-kraken-theme" diff --git a/themes/code-like-a-rainbow.yaml b/themes/code-like-a-rainbow.yaml index 056a64bf..b7093500 100644 --- a/themes/code-like-a-rainbow.yaml +++ b/themes/code-like-a-rainbow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "invillia.Code-Like-A-Rainbow" version: "0.3.0" installs: 10478 + rating: 4 + ratings: 5 author: "invillia" repo: null url: "https://marketplace.visualstudio.com/items?itemName=invillia.Code-Like-A-Rainbow" diff --git a/themes/code-muse-light.yaml b/themes/code-muse-light.yaml new file mode 100644 index 00000000..b15e64bd --- /dev/null +++ b/themes/code-muse-light.yaml @@ -0,0 +1,52 @@ +name: "Code Muse Light" +source: + marketplace_id: "rajankur.code-muse-light-theme" + version: "1.0.4" + installs: 151 + rating: 0 + ratings: 0 + author: "Raj Ankur" + repo: "https://github.com/rajankur/code-muse-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rajankur.code-muse-light-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#24292E" + red: "#D73A49" + green: "#28A745" + yellow: "#F66A0A" + blue: "#0366D6" + magenta: "#EA4AAA" + cyan: "#39D353" + white: "#6A737D" + brightBlack: "#6A737D" + brightRed: "#D73A49" + brightGreen: "#28A745" + brightYellow: "#F66A0A" + brightBlue: "#2188FF" + brightMagenta: "#EA4AAA" + brightCyan: "#39D353" + brightWhite: "#D1D5DA" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 106 + black: 101.5 + red: 70.4 + green: 57.9 + yellow: 55.9 + blue: 76.2 + magenta: 61.1 + cyan: 37.7 + white: 73.4 + brightBlack: 73.4 + brightRed: 70.4 + brightGreen: 57.9 + brightYellow: 55.9 + brightBlue: 61.7 + brightMagenta: 61.1 + brightCyan: 37.7 + brightWhite: 22.4 diff --git a/themes/code-red.yaml b/themes/code-red.yaml index 4ecc9242..b4f2ddfc 100644 --- a/themes/code-red.yaml +++ b/themes/code-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Noqs.darkstack" version: "1.1.1" installs: 2842 + rating: 0 + ratings: 0 author: "Noqs" repo: "https://github.com/NoxQ/Darkstack" url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" diff --git a/themes/code-sandbox-tribute.yaml b/themes/code-sandbox-tribute.yaml new file mode 100644 index 00000000..424fedd4 --- /dev/null +++ b/themes/code-sandbox-tribute.yaml @@ -0,0 +1,49 @@ +name: "Code Sandbox Tribute" +source: + marketplace_id: "paraform.codesandbox-tribute" + version: "0.0.1" + installs: 84 + author: "Paraform" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=paraform.codesandbox-tribute" +colors: + bg: "#0E0E0E" + fg: "#797979" + black: "#1B1B1B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E59C10" + blue: "#2472C8" + magenta: "#7F4ED7" + cyan: "#11A8CD" + white: "#C9C9C9" + brightBlack: "#3B3B3B" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5EA43" + brightBlue: "#3B8EEA" + brightMagenta: "#AC4ED7" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + contrast: + fg: 31.2 + black: 0 + red: 27.4 + green: 53.7 + yellow: 56.6 + blue: 28.1 + magenta: 25.7 + cyan: 48.2 + white: 73.6 + brightBlack: 0 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 91.1 + brightBlue: 40.7 + brightMagenta: 31.9 + brightCyan: 56.1 + brightWhite: 107.6 diff --git a/themes/code-with-colors-pro-midnight-purple.yaml b/themes/code-with-colors-pro-midnight-purple.yaml index bf3db684..23978cf8 100644 --- a/themes/code-with-colors-pro-midnight-purple.yaml +++ b/themes/code-with-colors-pro-midnight-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "veduishu1257.code-with-colors-pro" version: "2.3.0" installs: 18 + rating: 5 + ratings: 1 author: "veduishu" repo: "https://github.com/vishal-s-reddy/code-with-colors" url: "https://marketplace.visualstudio.com/items?itemName=veduishu1257.code-with-colors-pro" diff --git a/themes/code33.yaml b/themes/code33.yaml index 2b974cea..ea98e6fb 100644 --- a/themes/code33.yaml +++ b/themes/code33.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "StephenFuchs.code33" version: "1.0.3" installs: 121 + rating: 0 + ratings: 0 author: "Stephen Fuchs" repo: "https://github.com/stephenfuchs/code33-theme" url: "https://marketplace.visualstudio.com/items?itemName=StephenFuchs.code33" diff --git a/themes/codeastro-dark.yaml b/themes/codeastro-dark.yaml index 0a52d82f..aa6a7b33 100644 --- a/themes/codeastro-dark.yaml +++ b/themes/codeastro-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codeastro.codeastro-vscode-themes" version: "0.0.1" installs: 137 + rating: 0 + ratings: 0 author: "Codeastro" repo: "https://github.com/zaryabdev/codeastro-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=codeastro.codeastro-vscode-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 266 + pair: null contrast: fg: 91.4 black: 0 diff --git a/themes/codebabel-theme-dark.yaml b/themes/codebabel-theme-dark.yaml index 5a606a3b..28922090 100644 --- a/themes/codebabel-theme-dark.yaml +++ b/themes/codebabel-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodeBabel.codebabel-theme-drk" version: "0.0.3" installs: 222 + rating: 5 + ratings: 1 author: "CodeBabel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CodeBabel.codebabel-theme-drk" diff --git a/themes/codecourse-contrast.yaml b/themes/codecourse-contrast.yaml index 31b250f3..478778a8 100644 --- a/themes/codecourse-contrast.yaml +++ b/themes/codecourse-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/codecourse-light.yaml b/themes/codecourse-light.yaml index 4ccc746d..ff358978 100644 --- a/themes/codecourse-light.yaml +++ b/themes/codecourse-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/codecourse.yaml b/themes/codecourse.yaml index c0f77c85..77c4bbd2 100644 --- a/themes/codecourse.yaml +++ b/themes/codecourse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/codeify-dark-berry-color-theme.yaml b/themes/codeify-dark-berry-color-theme.yaml index 9e4aea61..ff3ae74a 100644 --- a/themes/codeify-dark-berry-color-theme.yaml +++ b/themes/codeify-dark-berry-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "siyam.Codeify" version: "1.1.2" installs: 2981 + rating: 5 + ratings: 4 author: "siyam" repo: "https://github.com/SISIYAM/codiefy-color-theme-vs-code-extension" url: "https://marketplace.visualstudio.com/items?itemName=siyam.Codeify" diff --git a/themes/codeitlive-light.yaml b/themes/codeitlive-light.yaml index 3bfcbd20..0a032c47 100644 --- a/themes/codeitlive-light.yaml +++ b/themes/codeitlive-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EdCharbeneau.codeitlivetheme" version: "2.0.0" installs: 576 + rating: 5 + ratings: 2 author: "Ed Charbeneau" repo: "https://github.com/EdCharbeneau/CodeItLive-vstheme" url: "https://marketplace.visualstudio.com/items?itemName=EdCharbeneau.codeitlivetheme" diff --git a/themes/codeitlive.yaml b/themes/codeitlive.yaml index 72d888f9..8d8003c4 100644 --- a/themes/codeitlive.yaml +++ b/themes/codeitlive.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EdCharbeneau.codeitlivetheme" version: "2.0.0" installs: 576 + rating: 5 + ratings: 2 author: "Ed Charbeneau" repo: "https://github.com/EdCharbeneau/CodeItLive-vstheme" url: "https://marketplace.visualstudio.com/items?itemName=EdCharbeneau.codeitlivetheme" diff --git a/themes/codelabs-inspired.yaml b/themes/codelabs-inspired.yaml index 597a0f68..98e61e92 100644 --- a/themes/codelabs-inspired.yaml +++ b/themes/codelabs-inspired.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SiriusPal.codelabs-inspired" version: "0.0.5" installs: 558 + rating: 0 + ratings: 0 author: "Sirius Pal" repo: "https://github.com/siriuspal/codelabs-inspired" url: "https://marketplace.visualstudio.com/items?itemName=SiriusPal.codelabs-inspired" diff --git a/themes/codellsby-nightowl.yaml b/themes/codellsby-nightowl.yaml index 35aafd41..7f01ccc7 100644 --- a/themes/codellsby-nightowl.yaml +++ b/themes/codellsby-nightowl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codellsby.codellsby-nightowl-vscode" version: "0.0.1" installs: 1191 + rating: 0 + ratings: 0 author: "Codellsby" repo: null url: "https://marketplace.visualstudio.com/items?itemName=codellsby.codellsby-nightowl-vscode" diff --git a/themes/codely-dark-theme.yaml b/themes/codely-dark-theme.yaml index ddee1c23..18554b52 100644 --- a/themes/codely-dark-theme.yaml +++ b/themes/codely-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rupesh9369.Themess" version: "0.5.0" installs: 150 + rating: 0 + ratings: 0 author: "Rupesh9369" repo: "https://github.com/Rupesh9369/Codely-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Rupesh9369.Themess" diff --git a/themes/codeme.yaml b/themes/codeme.yaml index 6d79f6d5..df8d9cad 100644 --- a/themes/codeme.yaml +++ b/themes/codeme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.codeme-theme" version: "0.1.1" installs: 8080 + rating: 0 + ratings: 0 author: "Avetis" repo: "https://github.com/AvetisDN/codeme-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" diff --git a/themes/codeo-light.yaml b/themes/codeo-light.yaml index b990f031..6cf9e978 100644 --- a/themes/codeo-light.yaml +++ b/themes/codeo-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JithinVijayan.codeo" version: "1.2.0" installs: 127 + rating: 5 + ratings: 2 author: "Jithin Vijayan" repo: "https://github.com/itsmeJithin/codeo" url: "https://marketplace.visualstudio.com/items?itemName=JithinVijayan.codeo" diff --git a/themes/codeo.yaml b/themes/codeo.yaml index c9095493..6d2aa454 100644 --- a/themes/codeo.yaml +++ b/themes/codeo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JithinVijayan.codeo" version: "1.2.0" installs: 127 + rating: 5 + ratings: 2 author: "Jithin Vijayan" repo: "https://github.com/itsmeJithin/codeo" url: "https://marketplace.visualstudio.com/items?itemName=JithinVijayan.codeo" diff --git a/themes/codepdia.yaml b/themes/codepdia.yaml index 034faac3..b0b47472 100644 --- a/themes/codepdia.yaml +++ b/themes/codepdia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codepedia.codepedia" version: "2.3.0" installs: 89 + rating: 0 + ratings: 0 author: "codepedia" repo: "https://github.com/codepediair/codepediatheme" url: "https://marketplace.visualstudio.com/items?itemName=codepedia.codepedia" diff --git a/themes/codepen-nights.yaml b/themes/codepen-nights.yaml index ae132edd..4041088f 100644 --- a/themes/codepen-nights.yaml +++ b/themes/codepen-nights.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "klarefrank.codepen-nights" version: "0.0.5" installs: 5259 + rating: 5 + ratings: 2 author: "Klare" repo: "https://github.com/kfrank/CodePen-Nights" url: "https://marketplace.visualstudio.com/items?itemName=klarefrank.codepen-nights" diff --git a/themes/codepixel-modern-dark.yaml b/themes/codepixel-modern-dark.yaml index dc3ea725..a6301c5c 100644 --- a/themes/codepixel-modern-dark.yaml +++ b/themes/codepixel-modern-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AmirPhilipAdam.codepixelmodern" version: "0.0.4" installs: 43 + rating: 5 + ratings: 1 author: "Amir Philip Adam" repo: "https://github.com/amirphiladam2/CoderPixel" url: "https://marketplace.visualstudio.com/items?itemName=AmirPhilipAdam.codepixelmodern" diff --git a/themes/coder-coder-dark-redefined.yaml b/themes/coder-coder-dark-redefined.yaml index 4e5ed421..11bea61e 100644 --- a/themes/coder-coder-dark-redefined.yaml +++ b/themes/coder-coder-dark-redefined.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "moondevaa.codercoderdarkredefined" version: "0.1.2" installs: 1534 + rating: 5 + ratings: 1 author: "moondevaa" repo: "https://github.com/AaBbdev29/Redefined-coder" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.codercoderdarkredefined" diff --git a/themes/coder-vai-forest.yaml b/themes/coder-vai-forest.yaml index 9fd82fe6..9afa6eac 100644 --- a/themes/coder-vai-forest.yaml +++ b/themes/coder-vai-forest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "umorfaruksupto.coder-vai" version: "1.0.0" installs: 429 + rating: 0 + ratings: 0 author: "umorfaruksupto" repo: "https://github.com/umorfaruksupto/coder-vai" url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" diff --git a/themes/coder-vai-light.yaml b/themes/coder-vai-light.yaml index a10b165f..eea3526a 100644 --- a/themes/coder-vai-light.yaml +++ b/themes/coder-vai-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "umorfaruksupto.coder-vai" version: "1.0.0" installs: 429 + rating: 0 + ratings: 0 author: "umorfaruksupto" repo: "https://github.com/umorfaruksupto/coder-vai" url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" diff --git a/themes/coder-vai-ocean.yaml b/themes/coder-vai-ocean.yaml index 2b3d4973..71e574bf 100644 --- a/themes/coder-vai-ocean.yaml +++ b/themes/coder-vai-ocean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "umorfaruksupto.coder-vai" version: "1.0.0" installs: 429 + rating: 0 + ratings: 0 author: "umorfaruksupto" repo: "https://github.com/umorfaruksupto/coder-vai" url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" diff --git a/themes/coder-vai-purple-haze.yaml b/themes/coder-vai-purple-haze.yaml index 3a72791a..f81595f3 100644 --- a/themes/coder-vai-purple-haze.yaml +++ b/themes/coder-vai-purple-haze.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "umorfaruksupto.coder-vai" version: "1.0.0" installs: 429 + rating: 0 + ratings: 0 author: "umorfaruksupto" repo: "https://github.com/umorfaruksupto/coder-vai" url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" diff --git a/themes/coder30.yaml b/themes/coder30.yaml index badabd1f..fa42e1a9 100644 --- a/themes/coder30.yaml +++ b/themes/coder30.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NitishRoy7033.Coder30" version: "1.0.0" installs: 445 + rating: 5 + ratings: 1 author: "Rishi Kumar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NitishRoy7033.Coder30" diff --git a/themes/codesandbox-theme.yaml b/themes/codesandbox-theme.yaml index 873450c6..a4a09d1c 100644 --- a/themes/codesandbox-theme.yaml +++ b/themes/codesandbox-theme.yaml @@ -1,11 +1,13 @@ name: "CodeSandbox Theme" source: - marketplace_id: "isneru.codesandbox-theme-neru" - version: "1.1.0" - installs: 621 - author: "Diogo neru Nogueira" - repo: "https://github.com/isneru/codesandbox-theme" - url: "https://marketplace.visualstudio.com/items?itemName=isneru.codesandbox-theme-neru" + marketplace_id: "nerudevs.codesandbox-unofficial" + version: "1.0.2" + installs: 459 + rating: 0 + ratings: 0 + author: "neru devs" + repo: "https://github.com/isneru/vsc-themes.git#main" + url: "https://marketplace.visualstudio.com/items?itemName=nerudevs.codesandbox-unofficial" colors: bg: "#151515" fg: "#999999" diff --git a/themes/codeschool2-minimal.yaml b/themes/codeschool2-minimal.yaml index 615754d0..6db050ce 100644 --- a/themes/codeschool2-minimal.yaml +++ b/themes/codeschool2-minimal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gargakshit.theme-alabaster-dark" version: "0.1.3" installs: 4225 + rating: 0 + ratings: 0 author: "Akshit Garg" repo: "https://github.com/gargakshit/vscode-theme-alabaster-dark" url: "https://marketplace.visualstudio.com/items?itemName=gargakshit.theme-alabaster-dark" diff --git a/themes/codesso-unison-beta.yaml b/themes/codesso-unison-beta.yaml index ab162e81..2a49ce90 100644 --- a/themes/codesso-unison-beta.yaml +++ b/themes/codesso-unison-beta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "elvados.codesso" version: "1.4.1" installs: 1049 + rating: 5 + ratings: 4 author: "vadyapan" repo: "https://github.com/vadyapan/theme-codesso" url: "https://marketplace.visualstudio.com/items?itemName=elvados.codesso" diff --git a/themes/codetest.yaml b/themes/codetest.yaml index 6ea27a82..8537b690 100644 --- a/themes/codetest.yaml +++ b/themes/codetest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ArturGuedx.agx-code" version: "0.0.1" installs: 48 + rating: 0 + ratings: 0 author: "ArturGuedx" repo: "https://github.com/ArturGuedes/test" url: "https://marketplace.visualstudio.com/items?itemName=ArturGuedx.agx-code" diff --git a/themes/codethread-black.yaml b/themes/codethread-black.yaml index 7df44d3b..e014d634 100644 --- a/themes/codethread-black.yaml +++ b/themes/codethread-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JayantRohila.codethread-black" version: "2.2.6" installs: 2180 + rating: 5 + ratings: 1 author: "Jayant Rohila" repo: "https://github.com/jayantrohila57/codethread-black" url: "https://marketplace.visualstudio.com/items?itemName=JayantRohila.codethread-black" diff --git a/themes/codeuccino.yaml b/themes/codeuccino.yaml index 6af952f4..3bc6f989 100644 --- a/themes/codeuccino.yaml +++ b/themes/codeuccino.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HariVajja.codeuccino" version: "0.0.1" installs: 74 + rating: 0 + ratings: 0 author: "Hari Vajja" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HariVajja.codeuccino" diff --git a/themes/codevibe-epic-theme.yaml b/themes/codevibe-epic-theme.yaml index 35f58a4b..52f5def3 100644 --- a/themes/codevibe-epic-theme.yaml +++ b/themes/codevibe-epic-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "noyonalways.codevibe-themes" version: "0.0.4" installs: 644 + rating: 0 + ratings: 0 author: "Noyon Rahman" repo: "https://github.com/noyonalways/codevibe-themes" url: "https://marketplace.visualstudio.com/items?itemName=noyonalways.codevibe-themes" diff --git a/themes/codewithme-codex.yaml b/themes/codewithme-codex.yaml index 7bcc567b..b70ca0b7 100644 --- a/themes/codewithme-codex.yaml +++ b/themes/codewithme-codex.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithme224.codewithme224" version: "0.0.3" installs: 88 + rating: 0 + ratings: 0 author: "Emmanuel Abraham Jones" repo: "https://github.com/codewithme224/codewithme-theme" url: "https://marketplace.visualstudio.com/items?itemName=codewithme224.codewithme224" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 243 + pair: null contrast: fg: 79.3 black: 0 diff --git a/themes/codewithme-dark-cmyk.yaml b/themes/codewithme-dark-cmyk.yaml index c0100991..984ec9ed 100644 --- a/themes/codewithme-dark-cmyk.yaml +++ b/themes/codewithme-dark-cmyk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithme224.codewithme224" version: "0.0.3" installs: 88 + rating: 0 + ratings: 0 author: "Emmanuel Abraham Jones" repo: "https://github.com/codewithme224/codewithme-theme" url: "https://marketplace.visualstudio.com/items?itemName=codewithme224.codewithme224" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 285 + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/codewithsg-dark-theme.yaml b/themes/codewithsg-dark-theme.yaml index 303490a3..0d1a5877 100644 --- a/themes/codewithsg-dark-theme.yaml +++ b/themes/codewithsg-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.codewithsgdark" version: "0.0.1" installs: 12 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/codewithsgDark" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.codewithsgdark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 95.5 black: 81.9 diff --git a/themes/codexflow-themes.yaml b/themes/codexflow-themes.yaml index 8658ff49..2ae958b7 100644 --- a/themes/codexflow-themes.yaml +++ b/themes/codexflow-themes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodeXFlow.codexflow-themes" version: "0.0.3" installs: 36 + rating: 5 + ratings: 1 author: "CodeXFlow" repo: "https://github.com/CodeXFlow/CodeXFlow-Themes-VS-Codes" url: "https://marketplace.visualstudio.com/items?itemName=CodeXFlow.codexflow-themes" diff --git a/themes/codiefy-optimas-prime-color-theme.yaml b/themes/codiefy-optimas-prime-color-theme.yaml index 896cfa89..aa30ed13 100644 --- a/themes/codiefy-optimas-prime-color-theme.yaml +++ b/themes/codiefy-optimas-prime-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "siyam.Codeify" version: "1.1.2" installs: 2981 + rating: 5 + ratings: 4 author: "siyam" repo: "https://github.com/SISIYAM/codiefy-color-theme-vs-code-extension" url: "https://marketplace.visualstudio.com/items?itemName=siyam.Codeify" diff --git a/themes/coding-light-theme.yaml b/themes/coding-light-theme.yaml index e92f3a0e..dad1b65b 100644 --- a/themes/coding-light-theme.yaml +++ b/themes/coding-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sgtcoder.developer-coding-theme" version: "2.0.4" installs: 308 + rating: 0 + ratings: 0 author: "SgtCoder" repo: "https://github.com/sgtcoder/vscode-developer-coding-theme" url: "https://marketplace.visualstudio.com/items?itemName=sgtcoder.developer-coding-theme" diff --git a/themes/codingwish.yaml b/themes/codingwish.yaml new file mode 100644 index 00000000..c1c64676 --- /dev/null +++ b/themes/codingwish.yaml @@ -0,0 +1,49 @@ +name: "CodingWish" +source: + marketplace_id: "CodingWish.codingwish-theme" + version: "1.0.0" + installs: 86 + author: "CodingWish" + repo: "https://github.com/codingwish/codingwish-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CodingWish.codingwish-theme" +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#484F58" + red: "#569CD6" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#01CFFF" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#01CFFF" + brightCyan: "#56D4DD" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "green" + hue: 258 + contrast: + fg: 77.5 + black: 13.1 + red: 45.5 + green: 52.1 + yellow: 52.2 + blue: 52.2 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 29.3 + brightRed: 68.1 + brightGreen: 65.5 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 68.1 + brightCyan: 69.9 + brightWhite: 100.9 diff --git a/themes/cods.yaml b/themes/cods.yaml index 9baf8aea..50efb890 100644 --- a/themes/cods.yaml +++ b/themes/cods.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "emet.cods" version: "0.0.1" installs: 3780 + rating: 5 + ratings: 3 author: "emet" repo: null url: "https://marketplace.visualstudio.com/items?itemName=emet.cods" diff --git a/themes/coelhin-smooth.yaml b/themes/coelhin-smooth.yaml index 0b5a30ec..f59b488a 100644 --- a/themes/coelhin-smooth.yaml +++ b/themes/coelhin-smooth.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "coelhiN.coelhiN-theme" version: "2.0.0" installs: 145 + rating: 0 + ratings: 0 author: "coelhiN" repo: "https://github.com/coelhiN77/coelhiN-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=coelhiN.coelhiN-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77.7 black: 0 diff --git a/themes/coelhin-violet.yaml b/themes/coelhin-violet.yaml index fc5c48f3..05663d7c 100644 --- a/themes/coelhin-violet.yaml +++ b/themes/coelhin-violet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "coelhiN.coelhiN-theme" version: "2.0.0" installs: 145 + rating: 0 + ratings: 0 author: "coelhiN" repo: "https://github.com/coelhiN77/coelhiN-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=coelhiN.coelhiN-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 99.7 black: 0 diff --git a/themes/coffee-contrast.yaml b/themes/coffee-contrast.yaml index 1a6bde84..6141cc44 100644 --- a/themes/coffee-contrast.yaml +++ b/themes/coffee-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/coffee-light.yaml b/themes/coffee-light.yaml index 1b43e7c9..132d16c8 100644 --- a/themes/coffee-light.yaml +++ b/themes/coffee-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/coffee.yaml b/themes/coffee.yaml index a5f7ba98..8b12c6df 100644 --- a/themes/coffee.yaml +++ b/themes/coffee.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/coffeespace.yaml b/themes/coffeespace.yaml index bcb26dee..0bd2a469 100644 --- a/themes/coffeespace.yaml +++ b/themes/coffeespace.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.morita" version: "0.0.18" installs: 228 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/yesomac/MyThemes" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" diff --git a/themes/coffeyscript-theme.yaml b/themes/coffeyscript-theme.yaml index ea59d7b1..ca7b0b35 100644 --- a/themes/coffeyscript-theme.yaml +++ b/themes/coffeyscript-theme.yaml @@ -2,7 +2,9 @@ name: "CoffeyScript Theme" source: marketplace_id: "MichaelCoffeyMint.coffeyscript-theme" version: "0.0.5" - installs: 299 + installs: 300 + rating: 0 + ratings: 0 author: "Michael Coffey Mint" repo: "https://github.com/MichaelCoffey6/CoffeyScript-VSC-Theme" url: "https://marketplace.visualstudio.com/items?itemName=MichaelCoffeyMint.coffeyscript-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 25 + pair: null contrast: fg: 77 black: 0 diff --git a/themes/cognac.yaml b/themes/cognac.yaml index c73eeddf..3b0a8b11 100644 --- a/themes/cognac.yaml +++ b/themes/cognac.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ArtSabintsev.cognac" version: "0.1.0" installs: 553 + rating: 4 + ratings: 1 author: "ArtSabintsev" repo: "git://github.com/ArtSabintsev/Cognac-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=ArtSabintsev.cognac" diff --git a/themes/coimbrox-minimalist-panda.yaml b/themes/coimbrox-minimalist-panda.yaml index e80b8a64..dcce6c6a 100644 --- a/themes/coimbrox-minimalist-panda.yaml +++ b/themes/coimbrox-minimalist-panda.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GabrielCoimbra.coimbrox-panda-theme" version: "0.0.2" installs: 64 + rating: 0 + ratings: 0 author: "Gabriel Coimbra" repo: "https://github.com/coimbrox/CoimbroxMinimalistPandaTheme" url: "https://marketplace.visualstudio.com/items?itemName=GabrielCoimbra.coimbrox-panda-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 89.8 black: 0 diff --git a/themes/coimbroxthmedark.yaml b/themes/coimbroxthmedark.yaml index 2bc326e4..244ac1e4 100644 --- a/themes/coimbroxthmedark.yaml +++ b/themes/coimbroxthmedark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Coimbrox.coimbrox-theme" version: "0.0.4" installs: 1869 + rating: 5 + ratings: 2 author: "Coimbrox" repo: "https://github.com/coimbrox/coimbrox-theme" url: "https://marketplace.visualstudio.com/items?itemName=Coimbrox.coimbrox-theme" diff --git a/themes/cold-night.yaml b/themes/cold-night.yaml index fbe885c2..b3e8ba1a 100644 --- a/themes/cold-night.yaml +++ b/themes/cold-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MarkZaky.cold-night" version: "1.2.1" installs: 4763 + rating: 5 + ratings: 3 author: "MarkZaky" repo: "https://github.com/MarkZaki/cold-night-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=MarkZaky.cold-night" diff --git a/themes/cold-python-theme.yaml b/themes/cold-python-theme.yaml index 5449c35e..ae10f1d5 100644 --- a/themes/cold-python-theme.yaml +++ b/themes/cold-python-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nparamonov.cold-python-theme" version: "1.14.1" installs: 31709 + rating: 5 + ratings: 9 author: "nparamonov" repo: "https://github.com/nparamonov/vscode-cold-python-theme" url: "https://marketplace.visualstudio.com/items?itemName=nparamonov.cold-python-theme" diff --git a/themes/coldark-cold.yaml b/themes/coldark-cold.yaml index 9b551742..e02a3b30 100644 --- a/themes/coldark-cold.yaml +++ b/themes/coldark-cold.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ArmandPhilippot.coldark" version: "1.2.11" installs: 6471 + rating: 5 + ratings: 1 author: "Armand Philippot" repo: "https://github.com/ArmandPhilippot/coldark-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ArmandPhilippot.coldark" diff --git a/themes/coldark-dark.yaml b/themes/coldark-dark.yaml index dbdbc135..cb0f5e3a 100644 --- a/themes/coldark-dark.yaml +++ b/themes/coldark-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ArmandPhilippot.coldark" version: "1.2.11" installs: 6471 + rating: 5 + ratings: 1 author: "Armand Philippot" repo: "https://github.com/ArmandPhilippot/coldark-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ArmandPhilippot.coldark" diff --git a/themes/collapse.yaml b/themes/collapse.yaml index dcf433d3..9d1e705a 100644 --- a/themes/collapse.yaml +++ b/themes/collapse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shwuy.zhxo-themes" version: "2.0.1" installs: 1481 + rating: 5 + ratings: 4 author: "shwuy" repo: "https://github.com/sxhk0/.theme" url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" diff --git a/themes/color-coffee-dark.yaml b/themes/color-coffee-dark.yaml index c80d406a..5db83101 100644 --- a/themes/color-coffee-dark.yaml +++ b/themes/color-coffee-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "color-syntax.coffee-color-dark" version: "0.4.1" installs: 4125 + rating: 5 + ratings: 3 author: "SkyRider" repo: "https://github.com/FredPizarro/coffee-color-dark-syntax" url: "https://marketplace.visualstudio.com/items?itemName=color-syntax.coffee-color-dark" diff --git a/themes/color-contrast.yaml b/themes/color-contrast.yaml new file mode 100644 index 00000000..79e4bd81 --- /dev/null +++ b/themes/color-contrast.yaml @@ -0,0 +1,52 @@ +name: "Color contrast" +source: + marketplace_id: "HironTez.color-contrast-theme" + version: "0.0.1" + installs: 3763 + rating: 0 + ratings: 0 + author: "Hiron Tez" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HironTez.color-contrast-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#8F8F8F" + red: "#F82A5D" + green: "#98D800" + yellow: "#E7DC60" + blue: "#5CCAEF" + magenta: "#F57F00" + cyan: "#A57FFF" + white: "#F1F1F1" + brightBlack: "#8F8F8F" + brightRed: "#F82A5D" + brightGreen: "#98D800" + brightYellow: "#E7DC60" + brightBlue: "#5CCAEF" + brightMagenta: "#F57F00" + brightCyan: "#A57FFF" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 107.9 + black: 42.1 + red: 37.8 + green: 71.8 + yellow: 83.4 + blue: 67 + magenta: 50.9 + cyan: 45.8 + white: 98.7 + brightBlack: 42.1 + brightRed: 37.8 + brightGreen: 71.8 + brightYellow: 83.4 + brightBlue: 67 + brightMagenta: 50.9 + brightCyan: 45.8 + brightWhite: 98.7 diff --git a/themes/color-sea-blue.yaml b/themes/color-sea-blue.yaml index e50587a7..3b254f92 100644 --- a/themes/color-sea-blue.yaml +++ b/themes/color-sea-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Danesed.color-sea" version: "1.0.0" installs: 16 + rating: 0 + ratings: 0 author: "Danesed" repo: "https://github.com/danesed/colorsea-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 260 + pair: null contrast: fg: 53.6 black: 8.5 diff --git a/themes/color-sea-gray.yaml b/themes/color-sea-gray.yaml index 2297329f..160f8b05 100644 --- a/themes/color-sea-gray.yaml +++ b/themes/color-sea-gray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Danesed.color-sea" version: "1.0.0" installs: 16 + rating: 0 + ratings: 0 author: "Danesed" repo: "https://github.com/danesed/colorsea-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 273 + pair: null contrast: fg: 54.4 black: 8.2 diff --git a/themes/color-sea-green.yaml b/themes/color-sea-green.yaml index f28506ec..09ef08a3 100644 --- a/themes/color-sea-green.yaml +++ b/themes/color-sea-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Danesed.color-sea" version: "1.0.0" installs: 16 + rating: 0 + ratings: 0 author: "Danesed" repo: "https://github.com/danesed/colorsea-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 205 + pair: null contrast: fg: 56.7 black: 12 diff --git a/themes/color-sea-orange.yaml b/themes/color-sea-orange.yaml index 45288f1c..a40c4447 100644 --- a/themes/color-sea-orange.yaml +++ b/themes/color-sea-orange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Danesed.color-sea" version: "1.0.0" installs: 16 + rating: 0 + ratings: 0 author: "Danesed" repo: "https://github.com/danesed/colorsea-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 53 + pair: null contrast: fg: 56.9 black: 10.3 diff --git a/themes/color-sea-purple.yaml b/themes/color-sea-purple.yaml index 99306a56..a95910fd 100644 --- a/themes/color-sea-purple.yaml +++ b/themes/color-sea-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Danesed.color-sea" version: "1.0.0" installs: 16 + rating: 0 + ratings: 0 author: "Danesed" repo: "https://github.com/danesed/colorsea-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 295 + pair: null contrast: fg: 54.4 black: 8 diff --git a/themes/color-sea-red.yaml b/themes/color-sea-red.yaml index 66e7fadb..b332172a 100644 --- a/themes/color-sea-red.yaml +++ b/themes/color-sea-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Danesed.color-sea" version: "1.0.0" installs: 16 + rating: 0 + ratings: 0 author: "Danesed" repo: "https://github.com/danesed/colorsea-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 359 + pair: null contrast: fg: 54.3 black: 8.5 diff --git a/themes/color-sea-yellow.yaml b/themes/color-sea-yellow.yaml index 3a947a4d..8f51a372 100644 --- a/themes/color-sea-yellow.yaml +++ b/themes/color-sea-yellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Danesed.color-sea" version: "1.0.0" installs: 16 + rating: 0 + ratings: 0 author: "Danesed" repo: "https://github.com/danesed/colorsea-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 74 + pair: null contrast: fg: 58.4 black: 11.5 diff --git a/themes/colora.yaml b/themes/colora.yaml index 12326758..1efeca19 100644 --- a/themes/colora.yaml +++ b/themes/colora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "abcdHg.colora-theme" version: "0.0.1" installs: 345 + rating: 4 + ratings: 1 author: "Harshika Gurav" repo: "https://github.com/harshika07/colora-theme" url: "https://marketplace.visualstudio.com/items?itemName=abcdHg.colora-theme" diff --git a/themes/colorbars-blue.yaml b/themes/colorbars-blue.yaml index fa0a6359..b49a4e07 100644 --- a/themes/colorbars-blue.yaml +++ b/themes/colorbars-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Spring.color-bars" version: "0.0.1" installs: 523 + rating: 0 + ratings: 0 author: "Spring" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" diff --git a/themes/colorbars-green.yaml b/themes/colorbars-green.yaml index 1ec0a0d5..adb50d8d 100644 --- a/themes/colorbars-green.yaml +++ b/themes/colorbars-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Spring.color-bars" version: "0.0.1" installs: 523 + rating: 0 + ratings: 0 author: "Spring" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" diff --git a/themes/colorbars-orange.yaml b/themes/colorbars-orange.yaml index 58c17834..9cee30d7 100644 --- a/themes/colorbars-orange.yaml +++ b/themes/colorbars-orange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Spring.color-bars" version: "0.0.1" installs: 523 + rating: 0 + ratings: 0 author: "Spring" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" diff --git a/themes/colorbars-purple.yaml b/themes/colorbars-purple.yaml index 3bdd268f..b9326f75 100644 --- a/themes/colorbars-purple.yaml +++ b/themes/colorbars-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Spring.color-bars" version: "0.0.1" installs: 523 + rating: 0 + ratings: 0 author: "Spring" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" diff --git a/themes/colored-desert.yaml b/themes/colored-desert.yaml new file mode 100644 index 00000000..69e81824 --- /dev/null +++ b/themes/colored-desert.yaml @@ -0,0 +1,49 @@ +name: "Colored Desert" +source: + marketplace_id: "DevAnorak.colored-desert" + version: "0.0.14" + installs: 55 + author: "DevAnorak" + repo: "https://github.com/SirSouza/Colored-Desert-VScode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DevAnorak.colored-desert" +colors: + bg: "#504945" + fg: "#504945" + black: "#000000" + red: "#FF0000" + green: "#00BC00" + yellow: "#F8FF00" + blue: "#337BCB" + magenta: "#FF00FF" + cyan: "#10AED5" + white: "#FFFFFF" + brightBlack: "#929090" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#F8FF00" + brightBlue: "#0084F9" + brightMagenta: "#FF00FF" + brightCyan: "#00CDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 52 + contrast: + fg: 0 + black: 13.8 + red: 24.3 + green: 39.5 + yellow: 88.5 + blue: 18.7 + magenta: 33 + cyan: 38.3 + white: 94.7 + brightBlack: 29.6 + brightRed: 24.3 + brightGreen: 73.3 + brightYellow: 88.5 + brightBlue: 24.7 + brightMagenta: 33 + brightCyan: 54.4 + brightWhite: 94.7 diff --git a/themes/colorful-carbon-dark-knight.yaml b/themes/colorful-carbon-dark-knight.yaml index 20cdca35..cbaf0c69 100644 --- a/themes/colorful-carbon-dark-knight.yaml +++ b/themes/colorful-carbon-dark-knight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sonali-Sharma.colorful-carbon" version: "2.0.5" installs: 202 + rating: 5 + ratings: 2 author: "Sonali Sharma" repo: "https://github.com/Sonali-Sharma-tech/colorful-carbon-extension" url: "https://marketplace.visualstudio.com/items?itemName=Sonali-Sharma.colorful-carbon" diff --git a/themes/colorful-carbon.yaml b/themes/colorful-carbon.yaml index d7bb9bfa..1396541b 100644 --- a/themes/colorful-carbon.yaml +++ b/themes/colorful-carbon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sonali-Sharma.colorful-carbon" version: "2.0.5" installs: 202 + rating: 5 + ratings: 2 author: "Sonali Sharma" repo: "https://github.com/Sonali-Sharma-tech/colorful-carbon-extension" url: "https://marketplace.visualstudio.com/items?itemName=Sonali-Sharma.colorful-carbon" diff --git a/themes/colorful-dark-fork.yaml b/themes/colorful-dark-fork.yaml index e4a8004d..6ef73176 100644 --- a/themes/colorful-dark-fork.yaml +++ b/themes/colorful-dark-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "asant930.pop" version: "0.0.1" installs: 621 + rating: 0 + ratings: 0 author: "asant930" repo: null url: "https://marketplace.visualstudio.com/items?itemName=asant930.pop" diff --git a/themes/colorful-dark-theme.yaml b/themes/colorful-dark-theme.yaml index 71234808..ed9aeebb 100644 --- a/themes/colorful-dark-theme.yaml +++ b/themes/colorful-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leonex16.colorful-theme" version: "1.1.4" installs: 3554 + rating: 5 + ratings: 1 author: "Leonel Espinoza Sotelo" repo: "https://github.com/leonex16/colorful-theme" url: "https://marketplace.visualstudio.com/items?itemName=leonex16.colorful-theme" diff --git a/themes/colorful-light.yaml b/themes/colorful-light.yaml index 019cfb04..279fdc5d 100644 --- a/themes/colorful-light.yaml +++ b/themes/colorful-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Huka.light-purple" version: "0.0.2" installs: 2552 + rating: 0 + ratings: 0 author: "Huka" repo: "https://github.com/hukacode/vscode-light-purple" url: "https://marketplace.visualstudio.com/items?itemName=Huka.light-purple" diff --git a/themes/colorizer.yaml b/themes/colorizer.yaml index be72350e..3016209b 100644 --- a/themes/colorizer.yaml +++ b/themes/colorizer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MohammedShalabi.colorizer" version: "0.0.2" installs: 12129 + rating: 5 + ratings: 2 author: "Mohammed Shalabi" repo: "https://github.com/M-Shalabi/Colorizer" url: "https://marketplace.visualstudio.com/items?itemName=MohammedShalabi.colorizer" diff --git a/themes/colors-color-theme.yaml b/themes/colors-color-theme.yaml index c48c30b2..69f0749f 100644 --- a/themes/colors-color-theme.yaml +++ b/themes/colors-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sissel.material-potion" version: "0.1.1" installs: 1206 + rating: 5 + ratings: 1 author: "panoply" repo: "https://github.com/panoply/vscode-potion-theme" url: "https://marketplace.visualstudio.com/items?itemName=sissel.material-potion" diff --git a/themes/colors.yaml b/themes/colors.yaml index 9aa46207..b145c8ca 100644 --- a/themes/colors.yaml +++ b/themes/colors.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RedFoxxo.rfxtheme" version: "1.1.1" installs: 436 + rating: 5 + ratings: 1 author: "RedFoxxo" repo: "https://github.com/RedFoxxo/RFXTheme" url: "https://marketplace.visualstudio.com/items?itemName=RedFoxxo.rfxtheme" diff --git a/themes/colorshift-material-pro-evening.yaml b/themes/colorshift-material-pro-evening.yaml index 0bb34caf..456b0b1f 100644 --- a/themes/colorshift-material-pro-evening.yaml +++ b/themes/colorshift-material-pro-evening.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ColorShift.colorshift-material-pro" version: "1.0.0" installs: 56 + rating: 5 + ratings: 1 author: "ColorShift" repo: "https://github.com/colorshift/colorshift-material-pro" url: "https://marketplace.visualstudio.com/items?itemName=ColorShift.colorshift-material-pro" diff --git a/themes/colorshift-material-pro-morning.yaml b/themes/colorshift-material-pro-morning.yaml index 54b5c3ca..5d668caa 100644 --- a/themes/colorshift-material-pro-morning.yaml +++ b/themes/colorshift-material-pro-morning.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ColorShift.colorshift-material-pro" version: "1.0.0" installs: 56 + rating: 5 + ratings: 1 author: "ColorShift" repo: "https://github.com/colorshift/colorshift-material-pro" url: "https://marketplace.visualstudio.com/items?itemName=ColorShift.colorshift-material-pro" diff --git a/themes/colorshift-material-pro.yaml b/themes/colorshift-material-pro.yaml index a6b3897d..dcf0ea16 100644 --- a/themes/colorshift-material-pro.yaml +++ b/themes/colorshift-material-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ColorShift.colorshift-material-pro" version: "1.0.0" installs: 56 + rating: 5 + ratings: 1 author: "ColorShift" repo: "https://github.com/colorshift/colorshift-material-pro" url: "https://marketplace.visualstudio.com/items?itemName=ColorShift.colorshift-material-pro" diff --git a/themes/colorways-cheers-soft.yaml b/themes/colorways-cheers-soft.yaml index f57fdd76..5988e97b 100644 --- a/themes/colorways-cheers-soft.yaml +++ b/themes/colorways-cheers-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Franthormel.colorways" version: "0.2.1" installs: 1012 + rating: 0 + ratings: 0 author: "Franthormel" repo: "https://github.com/franthormel/colorways-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Franthormel.colorways" diff --git a/themes/columbina-dark.yaml b/themes/columbina-dark.yaml new file mode 100644 index 00000000..8a4e8277 --- /dev/null +++ b/themes/columbina-dark.yaml @@ -0,0 +1,52 @@ +name: "Columbina - Dark" +source: + marketplace_id: "frostmoon-dev.columbina-theme" + version: "0.0.2" + installs: 235 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/columbina-theme" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.columbina-theme" +colors: + bg: "#1A171D" + fg: "#E8F4FB" + black: "#1A171D" + red: "#E87A95" + green: "#6FBEC0" + yellow: "#F0C89F" + blue: "#90CCEA" + magenta: "#E091CA" + cyan: "#A8DCF5" + white: "#C3C8ED" + brightBlack: "#4A4552" + brightRed: "#FF91AB" + brightGreen: "#85D8DA" + brightYellow: "#FFD8B5" + brightBlue: "#A8DCF5" + brightMagenta: "#F5A7E0" + brightCyan: "#C0E8FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 308 + pair: null + contrast: + fg: 98.2 + black: 0 + red: 48 + green: 59.2 + yellow: 76.3 + blue: 69.8 + magenta: 55.5 + cyan: 79.7 + white: 73.3 + brightBlack: 9.8 + brightRed: 59.8 + brightGreen: 73.6 + brightYellow: 86.1 + brightBlue: 79.7 + brightMagenta: 67.4 + brightCyan: 88.1 + brightWhite: 106.7 diff --git a/themes/columbina-high-contrast.yaml b/themes/columbina-high-contrast.yaml index 8b1a5686..5e26399d 100644 --- a/themes/columbina-high-contrast.yaml +++ b/themes/columbina-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "frostmoon-dev.columbina-theme" version: "0.0.2" installs: 235 + rating: 0 + ratings: 0 author: "⏾ frostmoon" repo: "https://github.com/frostmoon-dev/columbina-theme" url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.columbina-theme" diff --git a/themes/comfy-monokai.yaml b/themes/comfy-monokai.yaml index f90488b4..1daf1225 100644 --- a/themes/comfy-monokai.yaml +++ b/themes/comfy-monokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "afarwind.comfy-monokai-theme" version: "1.0.3" installs: 2420 + rating: 5 + ratings: 1 author: "chase chou" repo: "https://github.com/afarwind/comfy-monokai" url: "https://marketplace.visualstudio.com/items?itemName=afarwind.comfy-monokai-theme" diff --git a/themes/comfyeyes.yaml b/themes/comfyeyes.yaml index 428f416c..0c87f3a1 100644 --- a/themes/comfyeyes.yaml +++ b/themes/comfyeyes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LukasFend.comfyeyes-theme" version: "0.0.1" installs: 192 + rating: 0 + ratings: 0 author: "Lukas Fend" repo: "https://github.com/lukasfend/comfyeyes-theme" url: "https://marketplace.visualstudio.com/items?itemName=LukasFend.comfyeyes-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 62.3 black: 0 diff --git a/themes/commadoor-dark.yaml b/themes/commadoor-dark.yaml index 82dc15fd..4825a151 100644 --- a/themes/commadoor-dark.yaml +++ b/themes/commadoor-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CommadoorBooks.commadoor-theme" version: "1.0.1" installs: 36 + rating: 0 + ratings: 0 author: "Commadoor Books" repo: "https://github.com/commadoor/commadoor-theme" url: "https://marketplace.visualstudio.com/items?itemName=CommadoorBooks.commadoor-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 88 + pair: null contrast: fg: 54 black: 0 diff --git a/themes/commadoor.yaml b/themes/commadoor.yaml index 39c935e3..76de73a6 100644 --- a/themes/commadoor.yaml +++ b/themes/commadoor.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CommadoorBooks.commadoor-theme" version: "1.0.1" installs: 36 + rating: 0 + ratings: 0 author: "Commadoor Books" repo: "https://github.com/commadoor/commadoor-theme" url: "https://marketplace.visualstudio.com/items?itemName=CommadoorBooks.commadoor-theme" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: 66 + pair: null contrast: fg: 80.2 black: 80.2 diff --git a/themes/commentsareimportant.yaml b/themes/commentsareimportant.yaml index 7d7df115..9a919a7e 100644 --- a/themes/commentsareimportant.yaml +++ b/themes/commentsareimportant.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pluveto.comments-are-important" version: "0.0.1" installs: 144 + rating: 0 + ratings: 0 author: "Zhang Zijing (Pluveto)" repo: "https://github.com/pluveto/comments-are-important" url: "https://marketplace.visualstudio.com/items?itemName=pluveto.comments-are-important" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 304 + pair: null contrast: fg: 80.5 black: 0 diff --git a/themes/common.yaml b/themes/common.yaml index 0be89216..d9c3132a 100644 --- a/themes/common.yaml +++ b/themes/common.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IVSoftware.nononsense" version: "0.0.2" installs: 36 + rating: 0 + ratings: 0 author: "IV Software" repo: "https://github.com/JackShort/nononsense" url: "https://marketplace.visualstudio.com/items?itemName=IVSoftware.nononsense" diff --git a/themes/compline.yaml b/themes/compline.yaml index 32dc564b..ba1826b1 100644 --- a/themes/compline.yaml +++ b/themes/compline.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rivethorn.compline" version: "1.0.1" installs: 548 + rating: 5 + ratings: 1 author: "Rivethorn" repo: "https://github.com/jblais493/compline" url: "https://marketplace.visualstudio.com/items?itemName=rivethorn.compline" diff --git a/themes/component.yaml b/themes/component.yaml index 9ce02a0f..99fadf0a 100644 --- a/themes/component.yaml +++ b/themes/component.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AkashK.frame" version: "0.0.2" installs: 1100 + rating: 0 + ratings: 0 author: "Akash K" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AkashK.frame" diff --git a/themes/comrade-contrast.yaml b/themes/comrade-contrast.yaml index dabce1f4..e2cd369d 100644 --- a/themes/comrade-contrast.yaml +++ b/themes/comrade-contrast.yaml @@ -1,11 +1,13 @@ name: "comrade-contrast" source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" + marketplace_id: "ztaylor.comradeyuri" + version: "0.0.9" + installs: 177 + rating: 0 + ratings: 0 + author: "Zachary Taylor" + repo: "https://github.com/thezacharytaylor/comradeyuri" + url: "https://marketplace.visualstudio.com/items?itemName=ztaylor.comradeyuri" colors: bg: "#121414" fg: "#D6DBDB" diff --git a/themes/comrade-light.yaml b/themes/comrade-light.yaml index c2b8dab9..3eba958c 100644 --- a/themes/comrade-light.yaml +++ b/themes/comrade-light.yaml @@ -1,21 +1,23 @@ name: "comrade-light" source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" + marketplace_id: "ztaylor.comradeyuri" + version: "0.0.9" + installs: 177 + rating: 0 + ratings: 0 + author: "Zachary Taylor" + repo: "https://github.com/thezacharytaylor/comradeyuri" + url: "https://marketplace.visualstudio.com/items?itemName=ztaylor.comradeyuri" colors: bg: "#D6DBDB" fg: "#343939" black: "#E4E7E7" red: "#BA0E2E" - green: "#C24E4B" - yellow: "#7F9689" + green: "#BE1704" + yellow: "#4A6656" blue: "#343939" - magenta: "#7F9689" - cyan: "#C24E4B" + magenta: "#4A6656" + cyan: "#BE1704" white: "#404646" brightBlack: "#FFFFFF" brightRed: "#F03E5F" @@ -34,11 +36,11 @@ meta: fg: 75.3 black: 0 red: 58.7 - green: 50.1 - yellow: 37.1 + green: 57.7 + yellow: 59.7 blue: 75.3 - magenta: 37.1 - cyan: 50.1 + magenta: 59.7 + cyan: 57.7 white: 70.6 brightBlack: 22.1 brightRed: 42.2 diff --git a/themes/comrade.yaml b/themes/comrade.yaml index 6fdbefd5..ba161aad 100644 --- a/themes/comrade.yaml +++ b/themes/comrade.yaml @@ -1,21 +1,23 @@ name: "comrade" source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" + marketplace_id: "ztaylor.comradeyuri" + version: "0.0.9" + installs: 177 + rating: 0 + ratings: 0 + author: "Zachary Taylor" + repo: "https://github.com/thezacharytaylor/comradeyuri" + url: "https://marketplace.visualstudio.com/items?itemName=ztaylor.comradeyuri" colors: bg: "#343939" fg: "#D6DBDB" black: "#404646" red: "#BA0E2E" - green: "#C24E4B" + green: "#FB4934" yellow: "#9BB7A7" blue: "#F9F7F1" magenta: "#9BB7A7" - cyan: "#C24E4B" + cyan: "#FB4934" white: "#E4E7E7" brightBlack: "#656E6E" brightRed: "#F03E5F" @@ -34,11 +36,11 @@ meta: fg: 76.8 black: 0 red: 14.2 - green: 22.6 + green: 33.9 yellow: 52.5 blue: 95.3 magenta: 52.5 - cyan: 22.6 + cyan: 33.9 white: 84.6 brightBlack: 18.4 brightRed: 30.5 diff --git a/themes/concoctis-dark-hard.yaml b/themes/concoctis-dark-hard.yaml index 63de7140..efa46d68 100644 --- a/themes/concoctis-dark-hard.yaml +++ b/themes/concoctis-dark-hard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" version: "10.30.27" installs: 74058 + rating: 5 + ratings: 10 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" diff --git a/themes/concoctis-dark-soft.yaml b/themes/concoctis-dark-soft.yaml index 02722ee0..2ba25e38 100644 --- a/themes/concoctis-dark-soft.yaml +++ b/themes/concoctis-dark-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" version: "10.30.27" installs: 74058 + rating: 5 + ratings: 10 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" diff --git a/themes/concoctis-light-hard.yaml b/themes/concoctis-light-hard.yaml index c68ddb6c..e11954b9 100644 --- a/themes/concoctis-light-hard.yaml +++ b/themes/concoctis-light-hard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" version: "10.30.27" installs: 74058 + rating: 5 + ratings: 10 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" diff --git a/themes/concoctis-light-soft.yaml b/themes/concoctis-light-soft.yaml index 97f72ab3..84198a0a 100644 --- a/themes/concoctis-light-soft.yaml +++ b/themes/concoctis-light-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" version: "10.30.27" installs: 74058 + rating: 5 + ratings: 10 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" diff --git a/themes/concrete-theme.yaml b/themes/concrete-theme.yaml index b8b5530c..2db51818 100644 --- a/themes/concrete-theme.yaml +++ b/themes/concrete-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HaiderNadeem.concrete-theme" version: "0.0.2" installs: 1105 + rating: 5 + ratings: 2 author: "Haider Nadeem" repo: "https://github.com/HaiderNadeem/Concrete-Theme" url: "https://marketplace.visualstudio.com/items?itemName=HaiderNadeem.concrete-theme" diff --git a/themes/concrete.yaml b/themes/concrete.yaml index 72f58d70..ef092293 100644 --- a/themes/concrete.yaml +++ b/themes/concrete.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bezbac.concrete-vscode" version: "0.3.0" installs: 1232 + rating: 0 + ratings: 0 author: "bezbac" repo: "https://github.com/bezbac/concrete" url: "https://marketplace.visualstudio.com/items?itemName=bezbac.concrete-vscode" diff --git a/themes/conifer-theme.yaml b/themes/conifer-theme.yaml index 42cdc824..a3d84b01 100644 --- a/themes/conifer-theme.yaml +++ b/themes/conifer-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "imalbert.conifer-theme" version: "2.4.3" installs: 1380 + rating: 5 + ratings: 3 author: "imalbert" repo: "https://github.com/imalbert/conifer-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=imalbert.conifer-theme" diff --git a/themes/contrast-kai.yaml b/themes/contrast-kai.yaml index 463ec804..fb1f2b0e 100644 --- a/themes/contrast-kai.yaml +++ b/themes/contrast-kai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MartinPalomaresGarcia.dark-kai" version: "0.7.0" installs: 1009 + rating: 5 + ratings: 3 author: "Martin Palomares Garcia" repo: "https://github.com/MartinPaGarcia/contrast-kai" url: "https://marketplace.visualstudio.com/items?itemName=MartinPalomaresGarcia.dark-kai" diff --git a/themes/cool-panda.yaml b/themes/cool-panda.yaml index 42d3d98a..633618bb 100644 --- a/themes/cool-panda.yaml +++ b/themes/cool-panda.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MatthewJustice.cool-panda" version: "1.0.18" installs: 1588 + rating: 0 + ratings: 0 author: "Matthew Justice" repo: "https://github.com/JusticeMatthew/cool-panda" url: "https://marketplace.visualstudio.com/items?itemName=MatthewJustice.cool-panda" diff --git a/themes/cool-with-a-c.yaml b/themes/cool-with-a-c.yaml index 2f7b5cfe..dd69d6fc 100644 --- a/themes/cool-with-a-c.yaml +++ b/themes/cool-with-a-c.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LucasNovaes94.cool-with-a-c" version: "0.0.1" installs: 825 + rating: 0 + ratings: 0 author: "Lucas Novaes" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LucasNovaes94.cool-with-a-c" diff --git a/themes/cooland.yaml b/themes/cooland.yaml index 3fca0dea..ecd03f30 100644 --- a/themes/cooland.yaml +++ b/themes/cooland.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samuelbran.cooland" version: "0.0.2" installs: 1494 + rating: 0 + ratings: 0 author: "Samuel Bran" repo: "https://github.com/samuelbran/Cooland" url: "https://marketplace.visualstudio.com/items?itemName=samuelbran.cooland" diff --git a/themes/coolshine.yaml b/themes/coolshine.yaml index 96876477..c064e061 100644 --- a/themes/coolshine.yaml +++ b/themes/coolshine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Daiki.coolshine" version: "0.0.1" installs: 33 + rating: 0 + ratings: 0 author: "Daiki" repo: "https://github.com/Daiki48/CoolShine" url: "https://marketplace.visualstudio.com/items?itemName=Daiki.coolshine" diff --git a/themes/copper-dark.yaml b/themes/copper-dark.yaml index 5270432a..09f1cf15 100644 --- a/themes/copper-dark.yaml +++ b/themes/copper-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/corallike.yaml b/themes/corallike.yaml index cf1c568c..511f955a 100644 --- a/themes/corallike.yaml +++ b/themes/corallike.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JoaquinMartinez.corallike" version: "0.11.2" installs: 208 + rating: 5 + ratings: 1 author: "Joaquin Martinez" repo: "https://github.com/Joaquinuriel/coral-theme" url: "https://marketplace.visualstudio.com/items?itemName=JoaquinMartinez.corallike" diff --git a/themes/corduroy.yaml b/themes/corduroy.yaml index f66cfea1..176e5453 100644 --- a/themes/corduroy.yaml +++ b/themes/corduroy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TaylorSattenfield.corduroy-theme-vscode" version: "1.2.3" installs: 861 + rating: 5 + ratings: 3 author: "taysatte" repo: "https://github.com/taysatte/corduroy-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TaylorSattenfield.corduroy-theme-vscode" diff --git a/themes/corgidarkpastel2.yaml b/themes/corgidarkpastel2.yaml index f9a4c5a2..b0a2195a 100644 --- a/themes/corgidarkpastel2.yaml +++ b/themes/corgidarkpastel2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ermeneses.corgidarkpastel" version: "0.0.91" installs: 254 + rating: 5 + ratings: 1 author: "ermeneses" repo: "git remote add origin https://github.com/ermeneses/VsThemes" url: "https://marketplace.visualstudio.com/items?itemName=ermeneses.corgidarkpastel" diff --git a/themes/corgidarkpastel3.yaml b/themes/corgidarkpastel3.yaml index 434bf114..1e1f4b99 100644 --- a/themes/corgidarkpastel3.yaml +++ b/themes/corgidarkpastel3.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ermeneses.corgidarkpastel" version: "0.0.91" installs: 254 + rating: 5 + ratings: 1 author: "ermeneses" repo: "git remote add origin https://github.com/ermeneses/VsThemes" url: "https://marketplace.visualstudio.com/items?itemName=ermeneses.corgidarkpastel" diff --git a/themes/cortex-theme.yaml b/themes/cortex-theme.yaml new file mode 100644 index 00000000..0311589b --- /dev/null +++ b/themes/cortex-theme.yaml @@ -0,0 +1,52 @@ +name: "Cortex-theme" +source: + marketplace_id: "Cortex-theme.cortex-theme" + version: "1.0.1" + installs: 482 + rating: 0 + ratings: 0 + author: "Cortex-theme" + repo: "https://github.com/Migxt/Cortex-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Cortex-theme.cortex-theme" +colors: + bg: "#0C0C0C" + fg: "#6D6D6D" + black: "#2A2A2A" + red: "#FF3370" + green: "#0DBC79" + yellow: "#FFAC4D" + blue: "#29CAE4" + magenta: "#BC3FBC" + cyan: "#33FFC2" + white: "#C0C0C0" + brightBlack: "#666666" + brightRed: "#FF3370" + brightGreen: "#23D18B" + brightYellow: "#FFAC4D" + brightBlue: "#29CAE4" + brightMagenta: "#D670D6" + brightCyan: "#33FFC2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 25.8 + black: 0 + red: 40.4 + green: 53.8 + yellow: 67.3 + blue: 64.7 + magenta: 30.5 + cyan: 89.6 + white: 68.4 + brightBlack: 22.8 + brightRed: 40.4 + brightGreen: 64.3 + brightYellow: 67.3 + brightBlue: 64.7 + brightMagenta: 46.2 + brightCyan: 89.6 + brightWhite: 107.7 diff --git a/themes/cosmic-dark.yaml b/themes/cosmic-dark.yaml new file mode 100644 index 00000000..a759306c --- /dev/null +++ b/themes/cosmic-dark.yaml @@ -0,0 +1,52 @@ +name: "Cosmic Dark" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1840 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" +colors: + bg: "#010107" + fg: "#BECFDA" + black: "#28353E" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#AEC3D0" + brightBlack: "#475E6C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#BECFDA" +meta: + mode: "dark" + accent: "orange" + hue: 278 + pair: null + contrast: + fg: 75.9 + black: 0 + red: 41.5 + green: 78 + yellow: 68 + blue: 53 + magenta: 46.6 + cyan: 71.5 + white: 68.5 + brightBlack: 18.5 + brightRed: 46.8 + brightGreen: 80.2 + brightYellow: 54.9 + brightBlue: 58.3 + brightMagenta: 59 + brightCyan: 74.9 + brightWhite: 75.9 diff --git a/themes/cosmic-decay.yaml b/themes/cosmic-decay.yaml index c7e908ca..8682b5ae 100644 --- a/themes/cosmic-decay.yaml +++ b/themes/cosmic-decay.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "decaycs.decay" version: "1.0.9" installs: 37708 + rating: 5 + ratings: 3 author: "decaycs" repo: "https://github.com/decaycs/vscode" url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" diff --git a/themes/cosmic-gleam-darkest.yaml b/themes/cosmic-gleam-darkest.yaml index 27c034ff..c9591f76 100644 --- a/themes/cosmic-gleam-darkest.yaml +++ b/themes/cosmic-gleam-darkest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "srshah.cosmic-gleam" version: "4.4.0" installs: 1417 + rating: 5 + ratings: 4 author: "Snehil Shah" repo: "https://github.com/snehilshah/cosmic-gleam" url: "https://marketplace.visualstudio.com/items?itemName=srshah.cosmic-gleam" diff --git a/themes/cosmic-iris.yaml b/themes/cosmic-iris.yaml index 3c6fac3c..91c2e4bb 100644 --- a/themes/cosmic-iris.yaml +++ b/themes/cosmic-iris.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shravaninikam.cosmic-iris" version: "0.1.0" installs: 827 + rating: 5 + ratings: 1 author: "Shravani Nikam" repo: "https://github.com/shravaninikam/Cosmic-Iris" url: "https://marketplace.visualstudio.com/items?itemName=shravaninikam.cosmic-iris" diff --git a/themes/cosmic-purple.yaml b/themes/cosmic-purple.yaml index ea39305d..68f944d2 100644 --- a/themes/cosmic-purple.yaml +++ b/themes/cosmic-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codeM.mystic-dark-collection" version: "0.1.0" installs: 86 + rating: 0 + ratings: 0 author: "Mustafa Özdemir" repo: null url: "https://marketplace.visualstudio.com/items?itemName=codeM.mystic-dark-collection" diff --git a/themes/cosmic-sea.yaml b/themes/cosmic-sea.yaml index abd64a71..69e769d1 100644 --- a/themes/cosmic-sea.yaml +++ b/themes/cosmic-sea.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ssera-themes" version: "2.0.2" installs: 334 + rating: 0 + ratings: 0 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" diff --git a/themes/cosmic.yaml b/themes/cosmic.yaml index 6175a49a..199a79c8 100644 --- a/themes/cosmic.yaml +++ b/themes/cosmic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carmelopullara.vscode-cosmic" version: "0.0.4" installs: 3991 + rating: 4.5 + ratings: 2 author: "Carmelo Pullara" repo: "https://github.com/carmelopullara/vscode-cosmic" url: "https://marketplace.visualstudio.com/items?itemName=carmelopullara.vscode-cosmic" diff --git a/themes/cosmical.yaml b/themes/cosmical.yaml index 6633708b..2213b184 100644 --- a/themes/cosmical.yaml +++ b/themes/cosmical.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jorgemrtr.cosmical" version: "0.5.0" installs: 1081 + rating: 5 + ratings: 1 author: "jorgemrtr" repo: "https://github.com/jorgemrtr/cosmical-theme" url: "https://marketplace.visualstudio.com/items?itemName=jorgemrtr.cosmical" diff --git a/themes/cosmico.yaml b/themes/cosmico.yaml index caeabc12..31d4a4e0 100644 --- a/themes/cosmico.yaml +++ b/themes/cosmico.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MarianoIbarra.cosmico" version: "0.3.0" installs: 744 + rating: 0 + ratings: 0 author: "Mariano Ibarra" repo: "https://github.com/marianoibarra/cosmico-theme" url: "https://marketplace.visualstudio.com/items?itemName=MarianoIbarra.cosmico" diff --git a/themes/cosmicsarthak-dark.yaml b/themes/cosmicsarthak-dark.yaml index b073863d..857abd7d 100644 --- a/themes/cosmicsarthak-dark.yaml +++ b/themes/cosmicsarthak-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" version: "4.4.7" installs: 24458 + rating: 5 + ratings: 4 author: "cosmicsarthak" repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" diff --git a/themes/cosmicsarthak-neon.yaml b/themes/cosmicsarthak-neon.yaml index b2ab880e..42e05342 100644 --- a/themes/cosmicsarthak-neon.yaml +++ b/themes/cosmicsarthak-neon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" version: "4.4.7" installs: 24458 + rating: 5 + ratings: 4 author: "cosmicsarthak" repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" diff --git a/themes/cosmicsarthak-night-owl.yaml b/themes/cosmicsarthak-night-owl.yaml index 33ebd6cc..8ac3e099 100644 --- a/themes/cosmicsarthak-night-owl.yaml +++ b/themes/cosmicsarthak-night-owl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" version: "4.4.7" installs: 24458 + rating: 5 + ratings: 4 author: "cosmicsarthak" repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" diff --git a/themes/cosmicsarthak-red.yaml b/themes/cosmicsarthak-red.yaml index 4c9d38dc..179dba04 100644 --- a/themes/cosmicsarthak-red.yaml +++ b/themes/cosmicsarthak-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" version: "4.4.7" installs: 24458 + rating: 5 + ratings: 4 author: "cosmicsarthak" repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" diff --git a/themes/cosmo.yaml b/themes/cosmo.yaml index 18437af2..cfd8e731 100644 --- a/themes/cosmo.yaml +++ b/themes/cosmo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sociale11.cosmo" version: "0.1.4" installs: 40 + rating: 5 + ratings: 1 author: "Sociale11" repo: "https://github.com/sociale11/vscode-cosmo" url: "https://marketplace.visualstudio.com/items?itemName=sociale11.cosmo" diff --git a/themes/cosmos-theme.yaml b/themes/cosmos-theme.yaml index 75da219a..d41418c7 100644 --- a/themes/cosmos-theme.yaml +++ b/themes/cosmos-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vinisaveg.cosmos-theme" version: "1.0.4" installs: 870 + rating: 0 + ratings: 0 author: "Vinicius Savegnago" repo: "https://github.com/vinisaveg/cosmos-theme" url: "https://marketplace.visualstudio.com/items?itemName=vinisaveg.cosmos-theme" diff --git a/themes/cosmos.yaml b/themes/cosmos.yaml index df701dc3..a8b761ec 100644 --- a/themes/cosmos.yaml +++ b/themes/cosmos.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ark-Platforms-Inc.galaxyum-theme-arkcorporation" version: "0.0.1" installs: 303 + rating: 5 + ratings: 2 author: "Ark Platforms" repo: "https://github.com/ArkCorporation/Cosmic" url: "https://marketplace.visualstudio.com/items?itemName=Ark-Platforms-Inc.galaxyum-theme-arkcorporation" diff --git a/themes/coucou-theme.yaml b/themes/coucou-theme.yaml index 544061c9..c63bead4 100644 --- a/themes/coucou-theme.yaml +++ b/themes/coucou-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jsmith.coucou-theme" version: "1.0.0" installs: 123 + rating: 5 + ratings: 1 author: "jsmith" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jsmith.coucou-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 67 + pair: null contrast: fg: 105.2 black: 0 diff --git a/themes/couldpeak.yaml b/themes/couldpeak.yaml index 2cfb00ec..8e9ec113 100644 --- a/themes/couldpeak.yaml +++ b/themes/couldpeak.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkMe.Couldpeak" version: "1.0.0" installs: 20 + rating: 0 + ratings: 0 author: "DarkMe" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DarkMe.Couldpeak" diff --git a/themes/cowboy-theme.yaml b/themes/cowboy-theme.yaml index 3f83e770..19eed903 100644 --- a/themes/cowboy-theme.yaml +++ b/themes/cowboy-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lulu-rijpkema.cool-cowboy-theme" version: "0.2.0" installs: 896 + rating: 5 + ratings: 3 author: "LRijpkema" repo: "https://github.com/LRijpkema/cool-cowboy-theme" url: "https://marketplace.visualstudio.com/items?itemName=lulu-rijpkema.cool-cowboy-theme" diff --git a/themes/cozy-evenings.yaml b/themes/cozy-evenings.yaml index 417ed860..1eeecdb0 100644 --- a/themes/cozy-evenings.yaml +++ b/themes/cozy-evenings.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Naous.cozy-coding" version: "0.0.3" installs: 634 + rating: 0 + ratings: 0 author: "Naous" repo: "https://github.com/Naawa/cozy-coding" url: "https://marketplace.visualstudio.com/items?itemName=Naous.cozy-coding" diff --git a/themes/cozy-mornings.yaml b/themes/cozy-mornings.yaml index 3d8481f9..8a5d431c 100644 --- a/themes/cozy-mornings.yaml +++ b/themes/cozy-mornings.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Naous.cozy-coding" version: "0.0.3" installs: 634 + rating: 0 + ratings: 0 author: "Naous" repo: "https://github.com/Naawa/cozy-coding" url: "https://marketplace.visualstudio.com/items?itemName=Naous.cozy-coding" diff --git a/themes/cozyspace.yaml b/themes/cozyspace.yaml new file mode 100644 index 00000000..eb688b89 --- /dev/null +++ b/themes/cozyspace.yaml @@ -0,0 +1,52 @@ +name: "CozySpace" +source: + marketplace_id: "GabrielSanjuliano.cozyspace" + version: "1.0.1" + installs: 307 + rating: 0 + ratings: 0 + author: "Gabriel Sanjuliano" + repo: "https://github.com/GabrielSanjuliano/CozySpace" + url: "https://marketplace.visualstudio.com/items?itemName=GabrielSanjuliano.cozyspace" +colors: + bg: "#1F2937" + fg: "#FCFCFA" + black: "#111827" + red: "#FB7185" + green: "#34D399" + yellow: "#FFD866" + blue: "#FB923C" + magenta: "#818CF8" + cyan: "#7DD3FC" + white: "#FCFCFA" + brightBlack: "#727072" + brightRed: "#FB7185" + brightGreen: "#34D399" + brightYellow: "#FFD866" + brightBlue: "#FB923C" + brightMagenta: "#818CF8" + brightCyan: "#7DD3FC" + brightWhite: "#FCFCFA" +meta: + mode: "dark" + accent: "red" + hue: 257 + pair: null + contrast: + fg: 102.3 + black: 0 + red: 46.7 + green: 62.6 + yellow: 81.8 + blue: 54.4 + magenta: 42 + cyan: 70.1 + white: 102.3 + brightBlack: 24.1 + brightRed: 46.7 + brightGreen: 62.6 + brightYellow: 81.8 + brightBlue: 54.4 + brightMagenta: 42 + brightCyan: 70.1 + brightWhite: 102.3 diff --git a/themes/cpa-lions.yaml b/themes/cpa-lions.yaml index f6efef41..80473fc8 100644 --- a/themes/cpa-lions.yaml +++ b/themes/cpa-lions.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cmbell715.cpa-theme" version: "1.0.0" installs: 32 + rating: 0 + ratings: 0 author: "cmbell715" repo: "https://github.com/cmbell715/" url: "https://marketplace.visualstudio.com/items?itemName=cmbell715.cpa-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 289 + pair: null contrast: fg: 48.5 black: 9 diff --git a/themes/cr0wn-gh0ul.yaml b/themes/cr0wn-gh0ul.yaml new file mode 100644 index 00000000..404124f0 --- /dev/null +++ b/themes/cr0wn-gh0ul.yaml @@ -0,0 +1,52 @@ +name: "Cr0wn_Gh0ul" +source: + marketplace_id: "Cr0wnGh0ul.cr0wn-gh0ul" + version: "0.3.0" + installs: 40 + rating: 0 + ratings: 0 + author: "Cr0wn_Gh0ul" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Cr0wnGh0ul.cr0wn-gh0ul" +colors: + bg: "#0F0F0F" + fg: "#ECECEC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 95.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/crackpot-contrast.yaml b/themes/crackpot-contrast.yaml index b6d0a605..7c479aaa 100644 --- a/themes/crackpot-contrast.yaml +++ b/themes/crackpot-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/crackpot-light.yaml b/themes/crackpot-light.yaml index 3434c449..b2fb5d11 100644 --- a/themes/crackpot-light.yaml +++ b/themes/crackpot-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/crackpot.yaml b/themes/crackpot.yaml index b7ff79b1..a845ee26 100644 --- a/themes/crackpot.yaml +++ b/themes/crackpot.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/crafty-theme-dark-contrast.yaml b/themes/crafty-theme-dark.yaml similarity index 94% rename from themes/crafty-theme-dark-contrast.yaml rename to themes/crafty-theme-dark.yaml index ff1fbef8..3bda4e53 100644 --- a/themes/crafty-theme-dark-contrast.yaml +++ b/themes/crafty-theme-dark.yaml @@ -1,8 +1,10 @@ -name: "Crafty Theme Dark Contrast" +name: "Crafty Theme Dark" source: marketplace_id: "MarkRyan.crafty-theme-dark" version: "0.0.47" installs: 114 + rating: 0 + ratings: 0 author: "Mark Ryan" repo: "https://github.com/mk-ryan1988/crafty-pro" url: "https://marketplace.visualstudio.com/items?itemName=MarkRyan.crafty-theme-dark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 105.5 black: 0 diff --git a/themes/cream-charcoal.yaml b/themes/cream-charcoal.yaml index c6765523..4dfbc651 100644 --- a/themes/cream-charcoal.yaml +++ b/themes/cream-charcoal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Icycoldveins.verum-monokai-themes" version: "1.2.1" installs: 46 + rating: 5 + ratings: 1 author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" diff --git a/themes/creative-purple-innovation-imagination.yaml b/themes/creative-purple-innovation-imagination.yaml new file mode 100644 index 00000000..873b8a85 --- /dev/null +++ b/themes/creative-purple-innovation-imagination.yaml @@ -0,0 +1,52 @@ +name: "Creative Purple - Innovation & Imagination" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + rating: 5 + ratings: 1 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#1A0D1A" + fg: "#F3E5F5" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 327 + pair: null + contrast: + fg: 93.1 + black: 0 + red: 38.1 + green: 48 + yellow: 92.8 + blue: 43.5 + magenta: 33.1 + cyan: 56.9 + white: 96.5 + brightBlack: 9.5 + brightRed: 43.3 + brightGreen: 82.4 + brightYellow: 102.1 + brightBlue: 41 + brightMagenta: 41.9 + brightCyan: 91.6 + brightWhite: 107.3 diff --git a/themes/creative-purple-light-innovation-imagination.yaml b/themes/creative-purple-light-innovation-imagination.yaml index cb75de5b..47321e02 100644 --- a/themes/creative-purple-light-innovation-imagination.yaml +++ b/themes/creative-purple-light-innovation-imagination.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/crema.yaml b/themes/crema.yaml index e0c81e0e..5428ace6 100644 --- a/themes/crema.yaml +++ b/themes/crema.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Le-BlitzZz.vscode-crema-theme" version: "7.0.0" installs: 124 + rating: 0 + ratings: 0 author: "Le-BlitzZz" repo: "https://github.com/Le-BlitzZz/vscode-crema-theme" url: "https://marketplace.visualstudio.com/items?itemName=Le-BlitzZz.vscode-crema-theme" diff --git a/themes/crf-flamengo.yaml b/themes/crf-flamengo.yaml index 340bce80..2ec6e5c3 100644 --- a/themes/crf-flamengo.yaml +++ b/themes/crf-flamengo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "crf-flamengo-theme.crf-flamengo-theme" version: "0.0.1" installs: 258 + rating: 5 + ratings: 1 author: "crf-flamengo-theme" repo: "https://keoxcoelho@dev.azure.com/keoxcoelho/VSC_Themes/_git/VSC_Themes" url: "https://marketplace.visualstudio.com/items?itemName=crf-flamengo-theme.crf-flamengo-theme" diff --git a/themes/crimson-sunset.yaml b/themes/crimson-sunset.yaml index 74a126fc..506ea2fc 100644 --- a/themes/crimson-sunset.yaml +++ b/themes/crimson-sunset.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/crisp-contrast.yaml b/themes/crisp-contrast.yaml index f3c27d21..7715b3e7 100644 --- a/themes/crisp-contrast.yaml +++ b/themes/crisp-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/crisp-light.yaml b/themes/crisp-light.yaml index c9bff12a..b2743406 100644 --- a/themes/crisp-light.yaml +++ b/themes/crisp-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/crisp.yaml b/themes/crisp.yaml index f2a5dc29..67479fda 100644 --- a/themes/crisp.yaml +++ b/themes/crisp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/crow-dark.yaml b/themes/crow-dark.yaml index 128ea51b..99a83087 100644 --- a/themes/crow-dark.yaml +++ b/themes/crow-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codejockie.crow" version: "0.1.1" installs: 1139 + rating: 5 + ratings: 3 author: "John Kennedy" repo: "https://github.com/codejockie/crow-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=codejockie.crow" diff --git a/themes/crowveil-ayu.yaml b/themes/crowveil-ayu.yaml index 2de2c50e..1e8952cc 100644 --- a/themes/crowveil-ayu.yaml +++ b/themes/crowveil-ayu.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Arch-Darker.Arch-Darker" version: "1.1.1" installs: 143 + rating: 5 + ratings: 1 author: "Crowveil" repo: "https://github.com/m4wi/Arch-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Arch-Darker.Arch-Darker" diff --git a/themes/crt-64.yaml b/themes/crt-64.yaml index 5ea82fea..c6ae0111 100644 --- a/themes/crt-64.yaml +++ b/themes/crt-64.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/crt-alt.yaml b/themes/crt-alt.yaml index acb119ea..eba87313 100644 --- a/themes/crt-alt.yaml +++ b/themes/crt-alt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leandro-rodrigues.crt-vscode" version: "0.1.0" installs: 6563 + rating: 5 + ratings: 3 author: "Leandro Rodrigues" repo: "https://github.com/TheOld/legacy-term" url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" diff --git a/themes/crt-amber.yaml b/themes/crt-amber.yaml index 5ea7adc6..e3068547 100644 --- a/themes/crt-amber.yaml +++ b/themes/crt-amber.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/crt-apple.yaml b/themes/crt-apple.yaml index a9336648..e3d263a9 100644 --- a/themes/crt-apple.yaml +++ b/themes/crt-apple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leandro-rodrigues.crt-vscode" version: "0.1.0" installs: 6563 + rating: 5 + ratings: 3 author: "Leandro Rodrigues" repo: "https://github.com/TheOld/legacy-term" url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" diff --git a/themes/crt-appleiic.yaml b/themes/crt-appleiic.yaml index cb6a462f..da1188c8 100644 --- a/themes/crt-appleiic.yaml +++ b/themes/crt-appleiic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leandro-rodrigues.crt-vscode" version: "0.1.0" installs: 6563 + rating: 5 + ratings: 3 author: "Leandro Rodrigues" repo: "https://github.com/TheOld/legacy-term" url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" diff --git a/themes/crt-blue.yaml b/themes/crt-blue.yaml index 6701a73d..fc930d82 100644 --- a/themes/crt-blue.yaml +++ b/themes/crt-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/crt-green.yaml b/themes/crt-green.yaml index ae569d50..cfc79fe9 100644 --- a/themes/crt-green.yaml +++ b/themes/crt-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/crt-green1.yaml b/themes/crt-green1.yaml index 980657a4..e444e2c3 100644 --- a/themes/crt-green1.yaml +++ b/themes/crt-green1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leandro-rodrigues.crt-vscode" version: "0.1.0" installs: 6563 + rating: 5 + ratings: 3 author: "Leandro Rodrigues" repo: "https://github.com/TheOld/legacy-term" url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" diff --git a/themes/crt-green2.yaml b/themes/crt-green2.yaml index bec13aa0..66276d39 100644 --- a/themes/crt-green2.yaml +++ b/themes/crt-green2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leandro-rodrigues.crt-vscode" version: "0.1.0" installs: 6563 + rating: 5 + ratings: 3 author: "Leandro Rodrigues" repo: "https://github.com/TheOld/legacy-term" url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" diff --git a/themes/crt-red.yaml b/themes/crt-red.yaml index d4ce2854..c31a4295 100644 --- a/themes/crt-red.yaml +++ b/themes/crt-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/crypto.yaml b/themes/crypto.yaml index f7bce36a..a94ec893 100644 --- a/themes/crypto.yaml +++ b/themes/crypto.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/crystal-quartz.yaml b/themes/crystal-quartz.yaml new file mode 100644 index 00000000..7160ce7d --- /dev/null +++ b/themes/crystal-quartz.yaml @@ -0,0 +1,52 @@ +name: "Crystal-Quartz" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#0C0A09" + fg: "#F2F2F2" + black: "#0C0A09" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#E11D48" + magenta: "#E11D48" + cyan: "#29C3A0" + white: "#F2F2F2" + brightBlack: "#0C0A09" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#E11D48" + brightMagenta: "#E11D48" + brightCyan: "#29C3A0" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.2 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.5 + blue: 31 + magenta: 31 + cyan: 58.5 + white: 99.2 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.5 + brightBlue: 31 + brightMagenta: 31 + brightCyan: 58.5 + brightWhite: 99.2 diff --git a/themes/crystaltine-s-crystalline-4-1.yaml b/themes/crystaltine-s-crystalline-4-1.yaml index 0e5160d3..691609e8 100644 --- a/themes/crystaltine-s-crystalline-4-1.yaml +++ b/themes/crystaltine-s-crystalline-4-1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nonagon.crystalline-theme" version: "5.0.10" installs: 1894 + rating: 5 + ratings: 2 author: "crystaltine" repo: "https://github.com/crystaltine/Crystalline-Theme" url: "https://marketplace.visualstudio.com/items?itemName=nonagon.crystalline-theme" diff --git a/themes/crystaltine-s-crystalline-5-0.yaml b/themes/crystaltine-s-crystalline-5-0.yaml index d0384a27..ea0e2a40 100644 --- a/themes/crystaltine-s-crystalline-5-0.yaml +++ b/themes/crystaltine-s-crystalline-5-0.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nonagon.crystalline-theme" version: "5.0.10" installs: 1894 + rating: 5 + ratings: 2 author: "crystaltine" repo: "https://github.com/crystaltine/Crystalline-Theme" url: "https://marketplace.visualstudio.com/items?itemName=nonagon.crystalline-theme" diff --git a/themes/cs50-light-theme.yaml b/themes/cs50-light-theme.yaml index fcd34376..83a7689c 100644 --- a/themes/cs50-light-theme.yaml +++ b/themes/cs50-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "whitehat4u.cs50-theme-harvard" version: "1.1.0" installs: 4452 + rating: 0 + ratings: 0 author: "juan santos" repo: "https://github.com/juanpumpkinpie/cs50-theme-harvard" url: "https://marketplace.visualstudio.com/items?itemName=whitehat4u.cs50-theme-harvard" diff --git a/themes/css-battle.yaml b/themes/css-battle.yaml index d7cc7f66..55e394d2 100644 --- a/themes/css-battle.yaml +++ b/themes/css-battle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JamesGulland.solar-storm-dark-theme" version: "0.1.0" installs: 179 + rating: 0 + ratings: 0 author: "James Gulland" repo: "https://github.com/james-gulland/solar-storm-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.solar-storm-dark-theme" diff --git a/themes/cucumber-dark.yaml b/themes/cucumber-dark.yaml index 5ceb4ebf..eabe496a 100644 --- a/themes/cucumber-dark.yaml +++ b/themes/cucumber-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jbird.cucumber-color-theme" version: "0.0.1" installs: 41 + rating: 0 + ratings: 0 author: "Jason Hulbert" repo: "https://github.com/jasonhulbert/cucumber-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=jbird.cucumber-color-theme" diff --git a/themes/cucumber-light.yaml b/themes/cucumber-light.yaml index c7da210a..0f51bcca 100644 --- a/themes/cucumber-light.yaml +++ b/themes/cucumber-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jbird.cucumber-color-theme" version: "0.0.1" installs: 41 + rating: 0 + ratings: 0 author: "Jason Hulbert" repo: "https://github.com/jasonhulbert/cucumber-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=jbird.cucumber-color-theme" diff --git a/themes/curry-dark.yaml b/themes/curry-dark.yaml index e8279961..7f37a01a 100644 --- a/themes/curry-dark.yaml +++ b/themes/curry-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CoderCurry.curry-theme" version: "0.0.3" installs: 117 + rating: 0 + ratings: 0 author: "CoderCurry" repo: "https://github.com/learnsomesome/curry-theme" url: "https://marketplace.visualstudio.com/items?itemName=CoderCurry.curry-theme" diff --git a/themes/cursor-dark-anysphere-v0-0-1.yaml b/themes/cursor-dark-anysphere-v0-0-1.yaml index 87694526..8f53f225 100644 --- a/themes/cursor-dark-anysphere-v0-0-1.yaml +++ b/themes/cursor-dark-anysphere-v0-0-1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mpulido.cursor-dark-origin" version: "0.0.2" installs: 248 + rating: 0 + ratings: 0 author: "Michael Pulido" repo: "https://github.com/michaeljpulido/cursor-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=mpulido.cursor-dark-origin" diff --git a/themes/cursor-less-dark.yaml b/themes/cursor-less-dark.yaml index c64ead2f..e3cae48c 100644 --- a/themes/cursor-less-dark.yaml +++ b/themes/cursor-less-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cedricverlinden.cursor-dark" version: "2.2.0" installs: 18735 + rating: 5 + ratings: 3 author: "Cédric Verlinden" repo: "https://github.com/CedricVerlinden/cursor-dark" url: "https://marketplace.visualstudio.com/items?itemName=cedricverlinden.cursor-dark" diff --git a/themes/cursor-light.yaml b/themes/cursor-light.yaml index 85354f82..00b112cb 100644 --- a/themes/cursor-light.yaml +++ b/themes/cursor-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MohdZaid.vscode-cursor-theme" version: "0.0.1" installs: 2750 + rating: 5 + ratings: 1 author: "Mohd Zaid" repo: "https://github.com/BioHazard786/cursor-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=MohdZaid.vscode-cursor-theme" diff --git a/themes/cursor-night-theme-soft.yaml b/themes/cursor-night-theme-soft.yaml index 273312c2..7573196a 100644 --- a/themes/cursor-night-theme-soft.yaml +++ b/themes/cursor-night-theme-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DiegoMontejano.cursor-night-theme" version: "1.0.0" installs: 1013 + rating: 5 + ratings: 1 author: "Diego Montejano" repo: "https://github.com/diegomontejano/cursor-night-theme" url: "https://marketplace.visualstudio.com/items?itemName=DiegoMontejano.cursor-night-theme" diff --git a/themes/cursor-night-theme.yaml b/themes/cursor-night-theme.yaml index 49b670c5..6a421fba 100644 --- a/themes/cursor-night-theme.yaml +++ b/themes/cursor-night-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DiegoMontejano.cursor-night-theme" version: "1.0.0" installs: 1013 + rating: 5 + ratings: 1 author: "Diego Montejano" repo: "https://github.com/diegomontejano/cursor-night-theme" url: "https://marketplace.visualstudio.com/items?itemName=DiegoMontejano.cursor-night-theme" diff --git a/themes/cursor-theme.yaml b/themes/cursor-theme.yaml index 91510511..90a2ec7c 100644 --- a/themes/cursor-theme.yaml +++ b/themes/cursor-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ManitejaPratha.cursor-midnight-theme" version: "0.0.3" installs: 5048 + rating: 5 + ratings: 1 author: "Maniteja Pratha" repo: "https://github.com/Manitej66/cursor-theme-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ManitejaPratha.cursor-midnight-theme" diff --git a/themes/custom-theme.yaml b/themes/custom-theme.yaml index 8ed69471..c47c542b 100644 --- a/themes/custom-theme.yaml +++ b/themes/custom-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "suleymanozkeskin.dark-theme-s" version: "0.0.1" installs: 47 + rating: 0 + ratings: 0 author: "suleymanozkeskin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=suleymanozkeskin.dark-theme-s" diff --git a/themes/custommarktheme.yaml b/themes/custommarktheme.yaml index 0ff99830..c754961d 100644 --- a/themes/custommarktheme.yaml +++ b/themes/custommarktheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Meuid3.headfox-theme" version: "1.0.1" installs: 281 + rating: 0 + ratings: 0 author: "meuid3" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Meuid3.headfox-theme" diff --git a/themes/cyan-dark.yaml b/themes/cyan-dark.yaml index 43e9d63e..7d53520c 100644 --- a/themes/cyan-dark.yaml +++ b/themes/cyan-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ceciljacob.code-color-theme" version: "1.0.0" installs: 22125 + rating: 5 + ratings: 1 author: "Cecil Jacob" repo: "https://github.com/ceciljacob/code-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=ceciljacob.code-color-theme" diff --git a/themes/cyber-dark.yaml b/themes/cyber-dark.yaml index 79b8c232..7f0b1348 100644 --- a/themes/cyber-dark.yaml +++ b/themes/cyber-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tryToDEv.cyber-qoder-themes" version: "1.2.0" installs: 15 + rating: 0 + ratings: 0 author: "tryToDEv" repo: "https://github.com/shivam20/cyber-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" diff --git a/themes/cyber-industrial.yaml b/themes/cyber-industrial.yaml new file mode 100644 index 00000000..218479c6 --- /dev/null +++ b/themes/cyber-industrial.yaml @@ -0,0 +1,52 @@ +name: "Cyber-Industrial" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#222730" + fg: "#EDEDED" + black: "#222730" + red: "#7C1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#00ADB3" + magenta: "#00ADB3" + cyan: "#29C3A0" + white: "#EDEDED" + brightBlack: "#222730" + brightRed: "#7C1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#00ADB3" + brightMagenta: "#00ADB3" + brightCyan: "#29C3A0" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "yellow" + hue: 262 + pair: null + contrast: + fg: 92.9 + black: 0 + red: 0 + green: 55.4 + yellow: 49.5 + blue: 46.1 + magenta: 46.1 + cyan: 55.4 + white: 92.9 + brightBlack: 0 + brightRed: 0 + brightGreen: 55.4 + brightYellow: 49.5 + brightBlue: 46.1 + brightMagenta: 46.1 + brightCyan: 55.4 + brightWhite: 92.9 diff --git a/themes/cyber-light-soft.yaml b/themes/cyber-light-soft.yaml index d33f37df..48838860 100644 --- a/themes/cyber-light-soft.yaml +++ b/themes/cyber-light-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tryToDEv.cyber-qoder-themes" version: "1.2.0" installs: 15 + rating: 0 + ratings: 0 author: "tryToDEv" repo: "https://github.com/shivam20/cyber-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" diff --git a/themes/cyber-light-warm.yaml b/themes/cyber-light-warm.yaml index 9c820dd0..6b26ff90 100644 --- a/themes/cyber-light-warm.yaml +++ b/themes/cyber-light-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tryToDEv.cyber-qoder-themes" version: "1.2.0" installs: 15 + rating: 0 + ratings: 0 author: "tryToDEv" repo: "https://github.com/shivam20/cyber-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" diff --git a/themes/cyber-light.yaml b/themes/cyber-light.yaml index 7fb6ee58..f8e0d1be 100644 --- a/themes/cyber-light.yaml +++ b/themes/cyber-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tryToDEv.cyber-qoder-themes" version: "1.2.0" installs: 15 + rating: 0 + ratings: 0 author: "tryToDEv" repo: "https://github.com/shivam20/cyber-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" diff --git a/themes/cyber-pastel-violet.yaml b/themes/cyber-pastel-violet.yaml index 2f9d5a79..9699c429 100644 --- a/themes/cyber-pastel-violet.yaml +++ b/themes/cyber-pastel-violet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cyber-pastel-themes.cyber-pastel-theme-pack" version: "1.0.0" installs: 425 + rating: 5 + ratings: 2 author: "cyber-pastel-themes" repo: "https://github.com/your-username/cyber-pastel-theme-pack" url: "https://marketplace.visualstudio.com/items?itemName=cyber-pastel-themes.cyber-pastel-theme-pack" diff --git a/themes/cyber-pop.yaml b/themes/cyber-pop.yaml new file mode 100644 index 00000000..f820dc79 --- /dev/null +++ b/themes/cyber-pop.yaml @@ -0,0 +1,52 @@ +name: "Cyber-Pop" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#0D0D0D" + fg: "#FAFAFA" + black: "#0D0D0D" + red: "#F26E21" + green: "#29C3A0" + yellow: "#D29922" + blue: "#0DD9D9" + magenta: "#0DD9D9" + cyan: "#29C3A0" + white: "#FAFAFA" + brightBlack: "#0D0D0D" + brightRed: "#F26E21" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#0DD9D9" + brightMagenta: "#0DD9D9" + brightCyan: "#29C3A0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 104.3 + black: 0 + red: 45.8 + green: 58.4 + yellow: 52.4 + blue: 70.9 + magenta: 70.9 + cyan: 58.4 + white: 104.3 + brightBlack: 0 + brightRed: 45.8 + brightGreen: 58.4 + brightYellow: 52.4 + brightBlue: 70.9 + brightMagenta: 70.9 + brightCyan: 58.4 + brightWhite: 104.3 diff --git a/themes/cyber-purple-77.yaml b/themes/cyber-purple-77.yaml index d6ab7891..58eae3db 100644 --- a/themes/cyber-purple-77.yaml +++ b/themes/cyber-purple-77.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "flep.cyber-purple-77" version: "1.2.1" installs: 4865 + rating: 5 + ratings: 2 author: "flep" repo: "https://github.com/fleps/cyber-purple-77-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=flep.cyber-purple-77" diff --git a/themes/cyberblue.yaml b/themes/cyberblue.yaml index 20ac21de..fae67bc3 100644 --- a/themes/cyberblue.yaml +++ b/themes/cyberblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Noqs.darkstack" version: "1.1.1" installs: 2842 + rating: 0 + ratings: 0 author: "Noqs" repo: "https://github.com/NoxQ/Darkstack" url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" diff --git a/themes/cyberdude-black.yaml b/themes/cyberdude-black.yaml index a9be64e2..ca6931c9 100644 --- a/themes/cyberdude-black.yaml +++ b/themes/cyberdude-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AnbuselvanRocky.cyberdude-theme" version: "0.1.4" installs: 4908 + rating: 5 + ratings: 3 author: "Anbuselvan Rocky" repo: "https://github.com/anburocky3/vscode-cyberdude-theme" url: "https://marketplace.visualstudio.com/items?itemName=AnbuselvanRocky.cyberdude-theme" diff --git a/themes/cyberdyne-ghostty.yaml b/themes/cyberdyne-ghostty.yaml index 6ef8d992..52bea9d6 100644 --- a/themes/cyberdyne-ghostty.yaml +++ b/themes/cyberdyne-ghostty.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "m0-hassan.cyberdyne" version: "0.1.3" installs: 136 + rating: 5 + ratings: 1 author: "m0-hassan" repo: "https://github.com/m0-hassan/cyberdyne" url: "https://marketplace.visualstudio.com/items?itemName=m0-hassan.cyberdyne" diff --git a/themes/cybereternals-vscode-theme.yaml b/themes/cybereternals-vscode-theme.yaml index bc97896f..d5735ad2 100644 --- a/themes/cybereternals-vscode-theme.yaml +++ b/themes/cybereternals-vscode-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CyberEternal.cybereternals-vscode-theme" version: "1.0.8" installs: 527 + rating: 5 + ratings: 1 author: "CyberEternal" repo: "https://github.com/cyber-eternal/cybereternals-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=CyberEternal.cybereternals-vscode-theme" diff --git a/themes/cyberlite-fork.yaml b/themes/cyberlite-fork.yaml index 5b3be147..db8b5a7f 100644 --- a/themes/cyberlite-fork.yaml +++ b/themes/cyberlite-fork.yaml @@ -2,7 +2,9 @@ name: "Cyberlite - Fork" source: marketplace_id: "ACO-626-theme.cyberlite" version: "0.0.1" - installs: 120 + installs: 121 + rating: 0 + ratings: 0 author: "ACO-626-theme" repo: "https://github.com/ACO-626/Cyberlite-Visual-Studio-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ACO-626-theme.cyberlite" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 39.6 diff --git a/themes/cybermoon.yaml b/themes/cybermoon.yaml index 25c43ba7..ccd299fe 100644 --- a/themes/cybermoon.yaml +++ b/themes/cybermoon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JulianoVentola.cybermoon-theme" version: "1.2.3" installs: 1002 + rating: 5 + ratings: 1 author: "Juliano Ventola" repo: "https://github.com/julianoventola/cybermoon" url: "https://marketplace.visualstudio.com/items?itemName=JulianoVentola.cybermoon-theme" diff --git a/themes/cyberpink-137-theme.yaml b/themes/cyberpink-137-theme.yaml index 4112723f..75f72b53 100644 --- a/themes/cyberpink-137-theme.yaml +++ b/themes/cyberpink-137-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/cyberpunk-2077-reloaded.yaml b/themes/cyberpunk-2077-reloaded.yaml index b23526f7..c83bee9e 100644 --- a/themes/cyberpunk-2077-reloaded.yaml +++ b/themes/cyberpunk-2077-reloaded.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andre-s-nascimento.cyberpunk-reloaded-theme" version: "1.0.3" installs: 2792 + rating: 0 + ratings: 0 author: "André Soares Nascimento" repo: "https://github.com/andre-s-nascimento/cyberpunk-reloaded-theme" url: "https://marketplace.visualstudio.com/items?itemName=andre-s-nascimento.cyberpunk-reloaded-theme" diff --git a/themes/cyberpunk-2077.yaml b/themes/cyberpunk-2077.yaml index e161d53f..249fb396 100644 --- a/themes/cyberpunk-2077.yaml +++ b/themes/cyberpunk-2077.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AshutoshPunia7109.cyberpunk-2077" version: "0.1.0" installs: 3145 + rating: 5 + ratings: 1 author: "As" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AshutoshPunia7109.cyberpunk-2077" diff --git a/themes/cyberpunk.yaml b/themes/cyberpunk.yaml index d377caa4..8fc9c738 100644 --- a/themes/cyberpunk.yaml +++ b/themes/cyberpunk.yaml @@ -1,50 +1,52 @@ name: "Cyberpunk" source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" + marketplace_id: "mbektas.cyberpunk-theme-mb" + version: "1.0.0" + installs: 11 + rating: 0 + ratings: 0 + author: "mbektas" + repo: "https://github.com/yourusername/cyberpunk-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mbektas.cyberpunk-theme-mb" colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#FF007F" - green: "#39FF14" + bg: "#0D0D1E" + fg: "#E0E0FF" + black: "#1A1A2E" + red: "#FF0055" + green: "#00FF88" yellow: "#FFFF00" - blue: "#1B03A3" - magenta: "#8A2BE2" + blue: "#0088FF" + magenta: "#FF00FF" cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#333333" - brightRed: "#FF3399" - brightGreen: "#66FF33" + white: "#E0E0FF" + brightBlack: "#3A3A5E" + brightRed: "#FF3377" + brightGreen: "#33FFAA" brightYellow: "#FFFF66" - brightBlue: "#3366FF" - brightMagenta: "#CC66FF" + brightBlue: "#33AAFF" + brightMagenta: "#FF66FF" brightCyan: "#66FFFF" brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "green" - hue: null + accent: "pink" + hue: 282 pair: null contrast: - fg: 107.9 + fg: 89 black: 0 - red: 39.2 - green: 87 - yellow: 102.7 - blue: 0 - magenta: 23.3 - cyan: 92.2 - white: 107.9 + red: 37.8 + green: 87.4 + yellow: 102.3 + blue: 39.4 + magenta: 45.8 + cyan: 91.8 + white: 89 brightBlack: 0 - brightRed: 42 - brightGreen: 88.5 - brightYellow: 103.3 - brightBlue: 29.9 - brightMagenta: 45.2 - brightCyan: 94 - brightWhite: 107.9 + brightRed: 40.5 + brightGreen: 88.6 + brightYellow: 102.9 + brightBlue: 52.6 + brightMagenta: 54.4 + brightCyan: 93.6 + brightWhite: 107.5 diff --git a/themes/cyberpunkcygnus-clear-grid.yaml b/themes/cyberpunkcygnus-clear-grid.yaml index 5c6263f0..a66100b7 100644 --- a/themes/cyberpunkcygnus-clear-grid.yaml +++ b/themes/cyberpunkcygnus-clear-grid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ai-acc.cyberpunkcygnus" version: "0.2.17" installs: 454 + rating: 0 + ratings: 0 author: "AI Acc" repo: "https://github.com/sascharo/" url: "https://marketplace.visualstudio.com/items?itemName=ai-acc.cyberpunkcygnus" diff --git a/themes/cyberpunkcygnus-neon-pulse.yaml b/themes/cyberpunkcygnus-neon-pulse.yaml index 5eb4a99a..9d578a9c 100644 --- a/themes/cyberpunkcygnus-neon-pulse.yaml +++ b/themes/cyberpunkcygnus-neon-pulse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ai-acc.cyberpunkcygnus" version: "0.2.17" installs: 454 + rating: 0 + ratings: 0 author: "AI Acc" repo: "https://github.com/sascharo/" url: "https://marketplace.visualstudio.com/items?itemName=ai-acc.cyberpunkcygnus" diff --git a/themes/cyberpunkcygnus-solace-flare.yaml b/themes/cyberpunkcygnus-solace-flare.yaml index 81b710a5..4e5502ac 100644 --- a/themes/cyberpunkcygnus-solace-flare.yaml +++ b/themes/cyberpunkcygnus-solace-flare.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ai-acc.cyberpunkcygnus" version: "0.2.17" installs: 454 + rating: 0 + ratings: 0 author: "AI Acc" repo: "https://github.com/sascharo/" url: "https://marketplace.visualstudio.com/items?itemName=ai-acc.cyberpunkcygnus" diff --git a/themes/cybersec-pro.yaml b/themes/cybersec-pro.yaml new file mode 100644 index 00000000..4b8e4568 --- /dev/null +++ b/themes/cybersec-pro.yaml @@ -0,0 +1,50 @@ +name: "CyberSec Pro" +source: + marketplace_id: "nextgencode.nextgen-terminal" + version: "1.2.1" + installs: 105 + author: "NextGenCode" + repo: "https://github.com/Mattzey/nextgen-terminal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#484F58" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFC107" + blue: "#2196F3" + magenta: "#9C27B0" + cyan: "#00BCD4" + white: "#B1BAC4" + brightBlack: "#6A737D" + brightRed: "#FF5252" + brightGreen: "#66BB6A" + brightYellow: "#FFCA28" + brightBlue: "#42A5F5" + brightMagenta: "#AB47BC" + brightCyan: "#26C6DA" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "orange" + hue: 258 + pair: null + contrast: + fg: 77.5 + black: 13.1 + red: 38.2 + green: 48.1 + yellow: 74.6 + blue: 43.5 + magenta: 21.2 + cyan: 57 + white: 64 + brightBlack: 27.8 + brightRed: 43.4 + brightGreen: 55.2 + brightYellow: 78.3 + brightBlue: 50.2 + brightMagenta: 28.5 + brightCyan: 62.1 + brightWhite: 100.9 diff --git a/themes/cyberspace.yaml b/themes/cyberspace.yaml new file mode 100644 index 00000000..661d32e1 --- /dev/null +++ b/themes/cyberspace.yaml @@ -0,0 +1,52 @@ +name: "cyberspace" +source: + marketplace_id: "OmegaDawn.cyberspace" + version: "2.1.5" + installs: 489 + rating: 0 + ratings: 0 + author: "OmegaDawn" + repo: "https://github.com/OmegaDawn/cyberspace_color_theme" + url: "https://marketplace.visualstudio.com/items?itemName=OmegaDawn.cyberspace" +colors: + bg: "#202020" + fg: "#B2C4C4" + black: "#000000" + red: "#E01240" + green: "#00D382" + yellow: "#D1D117" + blue: "#0094E2" + magenta: "#E200D7" + cyan: "#00D0D0" + white: "#DADADA" + brightBlack: "#202020" + brightRed: "#F5002B" + brightGreen: "#00FF80" + brightYellow: "#FFFF00" + brightBlue: "#1869FF" + brightMagenta: "#DD00D5" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 66.7 + black: 0 + red: 28.3 + green: 63 + yellow: 72.7 + blue: 39.8 + magenta: 34.7 + cyan: 64.3 + white: 82 + brightBlack: 0 + brightRed: 33 + brightGreen: 85.5 + brightYellow: 100.6 + brightBlue: 28.1 + brightMagenta: 33.5 + brightCyan: 90.1 + brightWhite: 105.8 diff --git a/themes/cybertrauma-s-dark-theme.yaml b/themes/cybertrauma-s-dark-theme.yaml index 41ef6913..1fffdc72 100644 --- a/themes/cybertrauma-s-dark-theme.yaml +++ b/themes/cybertrauma-s-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CyberTrauma.cybertrauma-s-dark-theme" version: "0.1.11" installs: 2109 + rating: 5 + ratings: 3 author: "CyberTrauma" repo: "https://github.com/siddarthreddygsr/CyberTrauma-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=CyberTrauma.cybertrauma-s-dark-theme" diff --git a/themes/cybertrauma-s.yaml b/themes/cybertrauma-s.yaml index 2f814b0d..78e12135 100644 --- a/themes/cybertrauma-s.yaml +++ b/themes/cybertrauma-s.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CyberTrauma.cybertrauma" version: "0.0.4" installs: 1676 + rating: 5 + ratings: 1 author: "CyberTrauma" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CyberTrauma.cybertrauma" diff --git a/themes/cybertronix.yaml b/themes/cybertronix.yaml index 9271a0e5..c5d5d5e9 100644 --- a/themes/cybertronix.yaml +++ b/themes/cybertronix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GEISERBIT.cybertronix-theme" version: "0.2.2" installs: 69 + rating: 0 + ratings: 0 author: "GEISERBIT" repo: null url: "https://marketplace.visualstudio.com/items?itemName=GEISERBIT.cybertronix-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 53.8 black: 7.4 diff --git a/themes/cyberui.yaml b/themes/cyberui.yaml index 9984b92c..0a8db265 100644 --- a/themes/cyberui.yaml +++ b/themes/cyberui.yaml @@ -2,7 +2,9 @@ name: "cyberui" source: marketplace_id: "AarMagic.cyberui" version: "1.4.0" - installs: 349 + installs: 351 + rating: 5 + ratings: 1 author: "AarWeb" repo: "https://github.com/aarweb/cyberui" url: "https://marketplace.visualstudio.com/items?itemName=AarMagic.cyberui" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 80.6 black: 0 diff --git a/themes/cynical-color-theme.yaml b/themes/cynical-color-theme.yaml index 3c4998be..c53264ec 100644 --- a/themes/cynical-color-theme.yaml +++ b/themes/cynical-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheRepoClub.theme-mangayo" version: "1.0.1" installs: 645 + rating: 0 + ratings: 0 author: "TheRepoClub" repo: "https://github.com/TheCynicalTeam/vscode-theme-cynical" url: "https://marketplace.visualstudio.com/items?itemName=TheRepoClub.theme-mangayo" diff --git a/themes/cyperpunkrebecca.yaml b/themes/cyperpunkrebecca.yaml index df6997c5..321b7a4a 100644 --- a/themes/cyperpunkrebecca.yaml +++ b/themes/cyperpunkrebecca.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LazzyE.cyberpunk-rebecca-color-theme" version: "0.0.5" installs: 26 + rating: 5 + ratings: 1 author: "LazzyE" repo: "https://github.com/ErliCai/cyberpunk-rebecca-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=LazzyE.cyberpunk-rebecca-color-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 218 + pair: null contrast: fg: 99.3 black: 0 diff --git a/themes/d2t-dark-clean.yaml b/themes/d2t-dark-clean.yaml index 09bdd92e..0764f60b 100644 --- a/themes/d2t-dark-clean.yaml +++ b/themes/d2t-dark-clean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dthanhtoan.d2t-colorful-theme" version: "0.4.0" installs: 1925 + rating: 4.5 + ratings: 2 author: "dthanhtoan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dthanhtoan.d2t-colorful-theme" diff --git a/themes/d2t-dark.yaml b/themes/d2t-dark.yaml index e1d72eda..68f1d5ad 100644 --- a/themes/d2t-dark.yaml +++ b/themes/d2t-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dthanhtoan.d2t-colorful-theme" version: "0.4.0" installs: 1925 + rating: 4.5 + ratings: 2 author: "dthanhtoan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dthanhtoan.d2t-colorful-theme" diff --git a/themes/da3m0ns-dark-italic.yaml b/themes/da3m0ns-dark-italic.yaml index 1d2198ce..5ef08df2 100644 --- a/themes/da3m0ns-dark-italic.yaml +++ b/themes/da3m0ns-dark-italic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mrknown404.daemons" version: "0.1.5" installs: 262 + rating: 5 + ratings: 2 author: "mrknown404" repo: "https://github.com/TheShiveshNetwork/vscode-da3m0ns" url: "https://marketplace.visualstudio.com/items?itemName=mrknown404.daemons" diff --git a/themes/daet.yaml b/themes/daet.yaml new file mode 100644 index 00000000..a8f27a32 --- /dev/null +++ b/themes/daet.yaml @@ -0,0 +1,52 @@ +name: "daet" +source: + marketplace_id: "vscodethemes.dear" + version: "0.0.1" + installs: 43 + rating: 0 + ratings: 0 + author: "vs code themes" + repo: "https://github.com/mxsim/dear" + url: "https://marketplace.visualstudio.com/items?itemName=vscodethemes.dear" +colors: + bg: "#0F0F11" + fg: "#717171" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 27.5 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/dafault.yaml b/themes/dafault.yaml index cb8ce133..35ef228f 100644 --- a/themes/dafault.yaml +++ b/themes/dafault.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AurinoGeraldo.auri-theme" version: "3.1.2" installs: 190 + rating: 0 + ratings: 0 author: "Aurino Geraldo" repo: "https://github.com/AurinoJunior/vscode-extensions.git#main" url: "https://marketplace.visualstudio.com/items?itemName=AurinoGeraldo.auri-theme" diff --git a/themes/dak-v1.yaml b/themes/dak-v1.yaml index 5259e548..83761df2 100644 --- a/themes/dak-v1.yaml +++ b/themes/dak-v1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "d-kito.theme-dak-running-red-lights" version: "1.0.1" installs: 32 + rating: 0 + ratings: 0 author: "dakito" repo: "https://github.com/d-kito/dak-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=d-kito.theme-dak-running-red-lights" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 14.6 black: 0 diff --git a/themes/dalailahner-dark.yaml b/themes/dalailahner-dark.yaml index c14fc05c..185bf047 100644 --- a/themes/dalailahner-dark.yaml +++ b/themes/dalailahner-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dalailahner.dalailahner-dark" version: "2.0.1" installs: 118 + rating: 0 + ratings: 0 author: "dalailahner" repo: "https://github.com/dalailahner/dalailahner-dark" url: "https://marketplace.visualstudio.com/items?itemName=dalailahner.dalailahner-dark" diff --git a/themes/dalton.yaml b/themes/dalton.yaml index d234177f..3bd8c8b5 100644 --- a/themes/dalton.yaml +++ b/themes/dalton.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "edersonferreira.dalton" version: "1.0.1" installs: 413 + rating: 0 + ratings: 0 author: "ederson ferreira" repo: "https://github.com/edersonferreira/dalton-vscode" url: "https://marketplace.visualstudio.com/items?itemName=edersonferreira.dalton" diff --git a/themes/dan-light-work.yaml b/themes/dan-light-work.yaml index 2b9f60bd..548dcfa5 100644 --- a/themes/dan-light-work.yaml +++ b/themes/dan-light-work.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Theme-xp-javascript-dark.danlightworktheme" version: "1.0.3" installs: 67 + rating: 0 + ratings: 0 author: "Theme-xp-javascript-dark" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Theme-xp-javascript-dark.danlightworktheme" diff --git a/themes/dan-react-theme.yaml b/themes/dan-react-theme.yaml index 6c064ac5..feb0745d 100644 --- a/themes/dan-react-theme.yaml +++ b/themes/dan-react-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carrie999.dan-react-theme" version: "0.0.4" installs: 2651 + rating: 0 + ratings: 0 author: "carrie999" repo: "https://github.com/Carrie999/dan-react-theme" url: "https://marketplace.visualstudio.com/items?itemName=carrie999.dan-react-theme" diff --git a/themes/dang-jedi.yaml b/themes/dang-jedi.yaml index 834e75f6..0547dab4 100644 --- a/themes/dang-jedi.yaml +++ b/themes/dang-jedi.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aaqaIshtyaq.dang-theme-vscode" version: "1.0.4" installs: 3302 + rating: 0 + ratings: 0 author: "Aaqa Ishtyaq" repo: "https://github.com/aaqaishtyaq/dang-vscode" url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.dang-theme-vscode" diff --git a/themes/dangergray-v2.yaml b/themes/dangergray-v2.yaml index 16f8f4fc..adfb44b8 100644 --- a/themes/dangergray-v2.yaml +++ b/themes/dangergray-v2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jynfairchild.dangerdark-theme" version: "0.1.0" installs: 613 + rating: 5 + ratings: 1 author: "jynfairchild" repo: "https://github.com/jpfairchild/dangergrey-theme" url: "https://marketplace.visualstudio.com/items?itemName=jynfairchild.dangerdark-theme" diff --git a/themes/dango-theme.yaml b/themes/dango-theme.yaml index 0e9b3a0f..13d27f5d 100644 --- a/themes/dango-theme.yaml +++ b/themes/dango-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "teloru.dango-theme" version: "0.2.0" installs: 933 + rating: 5 + ratings: 5 author: "teloru" repo: "https://gitlab.com/Astrid-Beyer/dango-vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=teloru.dango-theme" diff --git a/themes/daniel-material-palenight-theme.yaml b/themes/daniel-material-palenight-theme.yaml new file mode 100644 index 00000000..a9698973 --- /dev/null +++ b/themes/daniel-material-palenight-theme.yaml @@ -0,0 +1,52 @@ +name: "Daniel Material Palenight Theme" +source: + marketplace_id: "daniel-duc.daniel-material-palenight-theme" + version: "1.3.0" + installs: 576 + rating: 5 + ratings: 1 + author: "Daniel Duc" + repo: "https://github.com/binhduc1211/daniel-material-palenight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-material-palenight-theme" +colors: + bg: "#292D3E" + fg: "#BABED8" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + pair: null + contrast: + fg: 63.5 + black: 0 + red: 43 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 43 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/danmo.yaml b/themes/danmo.yaml index 57f3cae8..8171da44 100644 --- a/themes/danmo.yaml +++ b/themes/danmo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rach0101.danmo-theme" version: "0.0.3" installs: 44 + rating: 0 + ratings: 0 author: "tianxiang24" repo: "https://github.com/randomVariable2000/danmo-theme" url: "https://marketplace.visualstudio.com/items?itemName=Rach0101.danmo-theme" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/dante-color-theme.yaml b/themes/dante-color-theme.yaml new file mode 100644 index 00000000..d6f9eb09 --- /dev/null +++ b/themes/dante-color-theme.yaml @@ -0,0 +1,52 @@ +name: "Dante-Color-Theme" +source: + marketplace_id: "DanteH.dantes-color-theme" + version: "0.0.1" + installs: 23 + rating: 0 + ratings: 0 + author: "DanteH" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=DanteH.dantes-color-theme" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E4E4E4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFF5F5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 90.4 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 102.7 diff --git a/themes/dantes-theme.yaml b/themes/dantes-theme.yaml index 0dcb71b0..02108b90 100644 --- a/themes/dantes-theme.yaml +++ b/themes/dantes-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dantes.dantes" version: "2.1.1" installs: 156 + rating: 0 + ratings: 0 author: "Dantes" repo: "https://github.com/dantestheme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=dantes.dantes" diff --git a/themes/dantetheme.yaml b/themes/dantetheme.yaml index dd920bb3..a43b820b 100644 --- a/themes/dantetheme.yaml +++ b/themes/dantetheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DanteTheme.dantetheme" version: "0.0.9" installs: 204 + rating: 5 + ratings: 1 author: "DanteTheme" repo: "https://github.com/peidrao/DanteTheme" url: "https://marketplace.visualstudio.com/items?itemName=DanteTheme.dantetheme" diff --git a/themes/darcula-contrast-min.yaml b/themes/darcula-contrast-min.yaml index 16b0a045..cfad2232 100644 --- a/themes/darcula-contrast-min.yaml +++ b/themes/darcula-contrast-min.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nashpatty.darculacontrast" version: "1.3.1" installs: 1842 + rating: 0 + ratings: 0 author: "nashpatty" repo: "https://github.com/nashpatty/vscode-darcula" url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.darculacontrast" diff --git a/themes/darcula-contrast.yaml b/themes/darcula-contrast.yaml index 13ecc5aa..0038c17e 100644 --- a/themes/darcula-contrast.yaml +++ b/themes/darcula-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nashpatty.darculacontrast" version: "1.3.1" installs: 1842 + rating: 0 + ratings: 0 author: "nashpatty" repo: "https://github.com/nashpatty/vscode-darcula" url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.darculacontrast" diff --git a/themes/darcula-dark-theme.yaml b/themes/darcula-dark-theme.yaml index 1501beed..0ca28f44 100644 --- a/themes/darcula-dark-theme.yaml +++ b/themes/darcula-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CyrilLeblanc.amoled-darcula" version: "1.0.1" installs: 3275 + rating: 5 + ratings: 1 author: "CyrilLeblanc" repo: "https://github.com/CyrilLeblanc/vscode-amoled-darcula-theme" url: "https://marketplace.visualstudio.com/items?itemName=CyrilLeblanc.amoled-darcula" diff --git a/themes/darcula-port.yaml b/themes/darcula-port.yaml new file mode 100644 index 00000000..3424f594 --- /dev/null +++ b/themes/darcula-port.yaml @@ -0,0 +1,52 @@ +name: "darcula-port" +source: + marketplace_id: "tockn.darcula-port" + version: "1.0.1" + installs: 446 + rating: 0 + ratings: 0 + author: "tockn" + repo: "https://github.com/tockn/darcula-port" + url: "https://marketplace.visualstudio.com/items?itemName=tockn.darcula-port" +colors: + bg: "#2B2B2B" + fg: "#A9B7C6" + black: "#000000" + red: "#FF6B68" + green: "#629755" + yellow: "#FFC66D" + blue: "#6897BB" + magenta: "#9876AA" + cyan: "#6A8759" + white: "#A9B7C6" + brightBlack: "#606366" + brightRed: "#FF6B68" + brightGreen: "#629755" + brightYellow: "#FFC66D" + brightBlue: "#6897BB" + brightMagenta: "#9876AA" + brightCyan: "#6A8759" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 58.5 + black: 0 + red: 45 + green: 35.7 + yellow: 73.9 + blue: 39.6 + magenta: 32 + cyan: 30.2 + white: 58.5 + brightBlack: 17.6 + brightRed: 45 + brightGreen: 35.7 + brightYellow: 73.9 + brightBlue: 39.6 + brightMagenta: 32 + brightCyan: 30.2 + brightWhite: 103.8 diff --git a/themes/darcula-solid-color-theme.yaml b/themes/darcula-solid-color-theme.yaml index c79c24f8..f375a0a2 100644 --- a/themes/darcula-solid-color-theme.yaml +++ b/themes/darcula-solid-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jussiemion.darcula-solid" version: "1.2.1" installs: 3516 + rating: 5 + ratings: 5 author: "jussiemion" repo: "https://github.com/jussiemion/darcula-solid" url: "https://marketplace.visualstudio.com/items?itemName=jussiemion.darcula-solid" diff --git a/themes/darcula-void.yaml b/themes/darcula-void.yaml index bb4b4017..a1e49f25 100644 --- a/themes/darcula-void.yaml +++ b/themes/darcula-void.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sjlex.vscode-theme-darcula-void" version: "1.1.0" installs: 909 + rating: 5 + ratings: 1 author: "sjlex" repo: "https://github.com/sjlex/vscode-theme-darcula-void" url: "https://marketplace.visualstudio.com/items?itemName=sjlex.vscode-theme-darcula-void" diff --git a/themes/darcula.yaml b/themes/darcula.yaml index d886212c..352c8127 100644 --- a/themes/darcula.yaml +++ b/themes/darcula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ItsSunnyMonster.sm-bunker" version: "1.1.7" installs: 1773 + rating: 0 + ratings: 0 author: "ItsSunnyMonster" repo: "https://github.com/ItsSunnyMonster/dobri-next-theme" url: "https://marketplace.visualstudio.com/items?itemName=ItsSunnyMonster.sm-bunker" diff --git a/themes/darculacode.yaml b/themes/darculacode.yaml index 2811f5e4..ac1ba40b 100644 --- a/themes/darculacode.yaml +++ b/themes/darculacode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nejcbw.darcula-code" version: "1.0.9" installs: 1115 + rating: 5 + ratings: 1 author: "Nejc Brelih-Wasowski" repo: "https://github.com/nejcbw/darcula-code" url: "https://marketplace.visualstudio.com/items?itemName=nejcbw.darcula-code" diff --git a/themes/dare-contrast.yaml b/themes/dare-contrast.yaml index feff39c4..004ee025 100644 --- a/themes/dare-contrast.yaml +++ b/themes/dare-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/dare-light.yaml b/themes/dare-light.yaml index 826fb4dc..e407d5dc 100644 --- a/themes/dare-light.yaml +++ b/themes/dare-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/dare.yaml b/themes/dare.yaml index 92e33229..96c3aafb 100644 --- a/themes/dare.yaml +++ b/themes/dare.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/dark-1.yaml b/themes/dark-1.yaml new file mode 100644 index 00000000..deac6d84 --- /dev/null +++ b/themes/dark-1.yaml @@ -0,0 +1,52 @@ +name: "Dark_1" +source: + marketplace_id: "goacmola.vsthemes" + version: "0.0.1" + installs: 108 + rating: 0 + ratings: 0 + author: "goacmola" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=goacmola.vsthemes" +colors: + bg: "#1B1B1B" + fg: "#F5E500" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D3D3D3" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 87.5 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 78.4 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/dark-abyss.yaml b/themes/dark-abyss.yaml index 413c9cd0..6a634ca4 100644 --- a/themes/dark-abyss.yaml +++ b/themes/dark-abyss.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MatongoMulindi.abyss" version: "0.1.2" installs: 10346 + rating: 4.75 + ratings: 4 author: "Matongo Mulindi" repo: "https://github.com/mmatongo/vscode-abyss" url: "https://marketplace.visualstudio.com/items?itemName=MatongoMulindi.abyss" diff --git a/themes/dark-amethyst.yaml b/themes/dark-amethyst.yaml index 6629478f..0f09a29c 100644 --- a/themes/dark-amethyst.yaml +++ b/themes/dark-amethyst.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Munz.dark-amethyst" version: "1.1.0" installs: 61 + rating: 0 + ratings: 0 author: "Munz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Munz.dark-amethyst" diff --git a/themes/dark-army.yaml b/themes/dark-army.yaml index 23220182..a63d315c 100644 --- a/themes/dark-army.yaml +++ b/themes/dark-army.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BhaskarNeogi.dark-army" version: "0.1.0" installs: 498 + rating: 5 + ratings: 1 author: "Bhaskar Neogi" repo: "https://github.com/Ellipse404/Dark-Army-Theme[VS Code]" url: "https://marketplace.visualstudio.com/items?itemName=BhaskarNeogi.dark-army" diff --git a/themes/dark-aura.yaml b/themes/dark-aura.yaml index 2cc1ff45..ed62d8f3 100644 --- a/themes/dark-aura.yaml +++ b/themes/dark-aura.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Furqan.dark-aura-theme" version: "1.0.0" installs: 850 + rating: 5 + ratings: 1 author: "Furqan" repo: "https://github.com/furqanistic/darkaura" url: "https://marketplace.visualstudio.com/items?itemName=Furqan.dark-aura-theme" diff --git a/themes/dark-black-developer.yaml b/themes/dark-black-developer.yaml index 4b91630c..4b838ea5 100644 --- a/themes/dark-black-developer.yaml +++ b/themes/dark-black-developer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Harshil-Kaneria.dark-black-developer" version: "0.0.2" installs: 1402 + rating: 0 + ratings: 0 author: "Harshil-Kaneria" repo: "https://github.com/Harshil-Kaneria/VS-Code-Dark-Black-Developer-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Harshil-Kaneria.dark-black-developer" diff --git a/themes/dark-blood.yaml b/themes/dark-blood.yaml new file mode 100644 index 00000000..cf3dfb98 --- /dev/null +++ b/themes/dark-blood.yaml @@ -0,0 +1,52 @@ +name: "dark blood" +source: + marketplace_id: "LUIZDARKTHEME.luiz-dark-theme" + version: "0.0.8" + installs: 2946 + rating: 5 + ratings: 1 + author: "LUIZ DARK THEME" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LUIZDARKTHEME.luiz-dark-theme" +colors: + bg: "#131415" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.2 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/dark-blue-theme.yaml b/themes/dark-blue-theme.yaml index 5884f602..cbe3f9f7 100644 --- a/themes/dark-blue-theme.yaml +++ b/themes/dark-blue-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ceciljacob.overcast-code-theme" version: "1.1.0" installs: 768 + rating: 5 + ratings: 1 author: "Cecil Jacob" repo: "https://github.com/ceciljacob/overcast-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=ceciljacob.overcast-code-theme" diff --git a/themes/dark-bqueiroz.yaml b/themes/dark-bqueiroz.yaml index 426a7dc5..d8117c5b 100644 --- a/themes/dark-bqueiroz.yaml +++ b/themes/dark-bqueiroz.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dark-bqueiroz.dark-bqueiroz" version: "0.0.11" installs: 2406 + rating: 5 + ratings: 1 author: "dark-bqueiroz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dark-bqueiroz.dark-bqueiroz" diff --git a/themes/dark-brown-theme.yaml b/themes/dark-brown-theme.yaml index 61501feb..9a999db4 100644 --- a/themes/dark-brown-theme.yaml +++ b/themes/dark-brown-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ceciljacob.overcast-code-theme" version: "1.1.0" installs: 768 + rating: 5 + ratings: 1 author: "Cecil Jacob" repo: "https://github.com/ceciljacob/overcast-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=ceciljacob.overcast-code-theme" diff --git a/themes/dark-brown.yaml b/themes/dark-brown.yaml index d626cbf9..c8d23729 100644 --- a/themes/dark-brown.yaml +++ b/themes/dark-brown.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "blono.dark-brown" version: "0.0.1" installs: 4047 + rating: 5 + ratings: 1 author: "blono" repo: "https://github.com/blono/vscode-theme-dark-brown" url: "https://marketplace.visualstudio.com/items?itemName=blono.dark-brown" diff --git a/themes/dark-cherry-ice-cream-subtle.yaml b/themes/dark-cherry-ice-cream-subtle.yaml new file mode 100644 index 00000000..aedd8a64 --- /dev/null +++ b/themes/dark-cherry-ice-cream-subtle.yaml @@ -0,0 +1,52 @@ +name: "Dark Cherry Ice-Cream Subtle" +source: + marketplace_id: "JamesGulland.dark-cherry-ice-cream" + version: "2.0.0" + installs: 223 + rating: 0 + ratings: 0 + author: "James Gulland" + repo: "https://github.com/james-gulland/dark-cherry-ice-cream-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.dark-cherry-ice-cream" +colors: + bg: "#23272E" + fg: "#D7D0DB" + black: "#23272E" + red: "#D97E83" + green: "#BF9FE5" + yellow: "#FEF795" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#D7D0DB" + brightRed: "#D97E83" + brightGreen: "#BF9FE5" + brightYellow: "#FEF795" + brightBlue: "#98D1EF" + brightMagenta: "#F087BD" + brightCyan: "#98D1EF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 262 + pair: null + contrast: + fg: 76.3 + black: 0 + red: 43.6 + green: 54.5 + yellow: 96.9 + blue: 76 + magenta: 52.7 + cyan: 76 + white: 104.7 + brightBlack: 76.3 + brightRed: 43.6 + brightGreen: 54.5 + brightYellow: 96.9 + brightBlue: 70.8 + brightMagenta: 52.7 + brightCyan: 70.8 + brightWhite: 104.7 diff --git a/themes/dark-cherry-ice-cream.yaml b/themes/dark-cherry-ice-cream.yaml new file mode 100644 index 00000000..12e45ce3 --- /dev/null +++ b/themes/dark-cherry-ice-cream.yaml @@ -0,0 +1,52 @@ +name: "Dark Cherry Ice-Cream" +source: + marketplace_id: "JamesGulland.dark-cherry-ice-cream" + version: "2.0.0" + installs: 223 + rating: 0 + ratings: 0 + author: "James Gulland" + repo: "https://github.com/james-gulland/dark-cherry-ice-cream-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.dark-cherry-ice-cream" +colors: + bg: "#1D1921" + fg: "#D2C7E1" + black: "#1D1921" + red: "#F36C6C" + green: "#96D0BB" + yellow: "#FFCB6B" + blue: "#BAA4ED" + magenta: "#89B4FA" + cyan: "#94E2D5" + white: "#D2C7E1" + brightBlack: "#362D3D" + brightRed: "#F07178" + brightGreen: "#96D0BB" + brightYellow: "#FFCB6B" + brightBlue: "#BAA4ED" + brightMagenta: "#89B4FA" + brightCyan: "#94E2D5" + brightWhite: "#F9F8FB" +meta: + mode: "dark" + accent: "orange" + hue: 308 + pair: null + contrast: + fg: 73.9 + black: 0 + red: 45.3 + green: 69.6 + yellow: 78.5 + blue: 57.9 + magenta: 59.7 + cyan: 78.9 + white: 73.9 + brightBlack: 0 + brightRed: 46.2 + brightGreen: 69.6 + brightYellow: 78.5 + brightBlue: 57.9 + brightMagenta: 59.7 + brightCyan: 78.9 + brightWhite: 102.1 diff --git a/themes/dark-clean.yaml b/themes/dark-clean.yaml index 1862a5a2..a5b36b61 100644 --- a/themes/dark-clean.yaml +++ b/themes/dark-clean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Veccy-vec.cleardarktheme" version: "1.1.2" installs: 827 + rating: 0 + ratings: 0 author: "Veccy" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Veccy-vec.cleardarktheme" diff --git a/themes/dark-code-fork.yaml b/themes/dark-code-fork.yaml index 0aa99f6e..ed1e7ab3 100644 --- a/themes/dark-code-fork.yaml +++ b/themes/dark-code-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" version: "9.0.1" installs: 29917 + rating: 4.6 + ratings: 10 author: "Hasibur R" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" diff --git a/themes/dark-codely-theme.yaml b/themes/dark-codely-theme.yaml index 88bb7f56..abdb4a33 100644 --- a/themes/dark-codely-theme.yaml +++ b/themes/dark-codely-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codely.codely-theme" version: "0.0.1" installs: 23888 + rating: 4.5 + ratings: 10 author: "Codely" repo: "https://github.com/CodelyTV/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=codely.codely-theme" diff --git a/themes/dark-coffee.yaml b/themes/dark-coffee.yaml index 82a619d9..49ddda21 100644 --- a/themes/dark-coffee.yaml +++ b/themes/dark-coffee.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sentientcoffee.dark-coffee-theme" version: "0.0.40" installs: 1397 + rating: 0 + ratings: 0 author: "sentientcoffee" repo: "https://github.com/SentientCoffee/DarkCoffeeTheme_VSCode" url: "https://marketplace.visualstudio.com/items?itemName=sentientcoffee.dark-coffee-theme" diff --git a/themes/dark-cool-theme.yaml b/themes/dark-cool-theme.yaml index eeb1ec95..ea7718ac 100644 --- a/themes/dark-cool-theme.yaml +++ b/themes/dark-cool-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "emintoklu.dark-cool-theme" version: "0.1.2" installs: 212 + rating: 0 + ratings: 0 author: "Emin Toklu" repo: "https://github.com/emintokluu/codefor-green-theme" url: "https://marketplace.visualstudio.com/items?itemName=emintoklu.dark-cool-theme" diff --git a/themes/dark-crimson.yaml b/themes/dark-crimson.yaml new file mode 100644 index 00000000..170d6679 --- /dev/null +++ b/themes/dark-crimson.yaml @@ -0,0 +1,52 @@ +name: "Dark-Crimson" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#0A0A0A" + fg: "#FAFAFA" + black: "#0A0A0A" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#DC2626" + magenta: "#DC2626" + cyan: "#29C3A0" + white: "#FAFAFA" + brightBlack: "#0A0A0A" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#DC2626" + brightMagenta: "#DC2626" + brightCyan: "#29C3A0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.4 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.6 + blue: 30 + magenta: 30 + cyan: 58.5 + white: 104.4 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 30 + brightMagenta: 30 + brightCyan: 58.5 + brightWhite: 104.4 diff --git a/themes/dark-decay.yaml b/themes/dark-decay.yaml index df426d15..1f14da3c 100644 --- a/themes/dark-decay.yaml +++ b/themes/dark-decay.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nishantg96.dark-decay-pro" version: "1.0.0" installs: 299 + rating: 0 + ratings: 0 author: "Nishant Gajjar" repo: "https://github.com/nishantg96/Dark-Decay-Pro-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=nishantg96.dark-decay-pro" diff --git a/themes/dark-dev-theme.yaml b/themes/dark-dev-theme.yaml new file mode 100644 index 00000000..784a476b --- /dev/null +++ b/themes/dark-dev-theme.yaml @@ -0,0 +1,49 @@ +name: "Dark-Dev Theme" +source: + marketplace_id: "KunalRathore.dark-dev-theme" + version: "1.0.0" + installs: 92 + author: "Kunal Rathore" + repo: "https://github.com/kunal-rathore-111/dark-dev-theme" + url: "https://marketplace.visualstudio.com/items?itemName=KunalRathore.dark-dev-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#3A3A3A" + red: "#F90086" + green: "#44B6FC" + yellow: "#FFF900" + blue: "#54D4FF" + magenta: "#F90086" + cyan: "#54D4FF" + white: "#FFFFFF" + brightBlack: "#3A3A3A" + brightRed: "#F90086" + brightGreen: "#44B6FC" + brightYellow: "#FFF900" + brightBlue: "#54D4FF" + brightMagenta: "#F90086" + brightCyan: "#54D4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + contrast: + fg: 107.9 + black: 0 + red: 38 + green: 58.2 + yellow: 99.8 + blue: 72.2 + magenta: 38 + cyan: 72.2 + white: 107.9 + brightBlack: 0 + brightRed: 38 + brightGreen: 58.2 + brightYellow: 99.8 + brightBlue: 72.2 + brightMagenta: 38 + brightCyan: 72.2 + brightWhite: 107.9 diff --git a/themes/dark-discord-vscode.yaml b/themes/dark-discord-vscode.yaml index 1049f3cc..f99dd887 100644 --- a/themes/dark-discord-vscode.yaml +++ b/themes/dark-discord-vscode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akis.dark-discord-vscode" version: "2.0.3" installs: 2730 + rating: 3 + ratings: 2 author: "akisblack" repo: "https://github.com/akisblack/dark-discord-vscode" url: "https://marketplace.visualstudio.com/items?itemName=akis.dark-discord-vscode" diff --git a/themes/dark-dust-pro.yaml b/themes/dark-dust-pro.yaml index 1d9ae6ae..ee153446 100644 --- a/themes/dark-dust-pro.yaml +++ b/themes/dark-dust-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "snelusha.dark-dust" version: "1.0.0" installs: 725 + rating: 5 + ratings: 2 author: "snelusha" repo: "https://github.com/SNelusha/dark-dust-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=snelusha.dark-dust" diff --git a/themes/dark-flow.yaml b/themes/dark-flow.yaml index 9bdf7b79..2a2405ae 100644 --- a/themes/dark-flow.yaml +++ b/themes/dark-flow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MauroBalades.dark-flow-vscode" version: "1.0.1" installs: 260 + rating: 0 + ratings: 0 author: "Mauro Balades" repo: "https://github.com/dark-flow/vscode" url: "https://marketplace.visualstudio.com/items?itemName=MauroBalades.dark-flow-vscode" diff --git a/themes/darkforest.yaml b/themes/dark-forest.yaml similarity index 83% rename from themes/darkforest.yaml rename to themes/dark-forest.yaml index 9b63e52f..4e12549d 100644 --- a/themes/darkforest.yaml +++ b/themes/dark-forest.yaml @@ -1,11 +1,13 @@ -name: "DarkForest" +name: "Dark Forest" source: - marketplace_id: "JavierdeMarco.darkforest" - version: "0.0.1" - installs: 79 + marketplace_id: "JavierdeMarco.dark-forest-vsc" + version: "0.0.2" + installs: 412 + rating: 0 + ratings: 0 author: "Javier de Marco" repo: "https://github.com/javierdemarco/dark-forest-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=JavierdeMarco.darkforest" + url: "https://marketplace.visualstudio.com/items?itemName=JavierdeMarco.dark-forest-vsc" colors: bg: "#20282F" fg: "#C5CDD9" @@ -29,7 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 245 - pair: null + pair: "forest light" contrast: fg: 72.5 black: 0 diff --git a/themes/dark-frost-midnight.yaml b/themes/dark-frost-midnight.yaml index f44e4466..1e9a1f04 100644 --- a/themes/dark-frost-midnight.yaml +++ b/themes/dark-frost-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sprovo.dark-frost" version: "2.0.0" installs: 2470 + rating: 5 + ratings: 3 author: "Sandrico Provo" repo: "https://github.com/sandricoprovo/dark-frost-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sprovo.dark-frost" diff --git a/themes/dark-frost.yaml b/themes/dark-frost.yaml index 91493fde..7d23b5ba 100644 --- a/themes/dark-frost.yaml +++ b/themes/dark-frost.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sprovo.dark-frost" version: "2.0.0" installs: 2470 + rating: 5 + ratings: 3 author: "Sandrico Provo" repo: "https://github.com/sandricoprovo/dark-frost-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sprovo.dark-frost" diff --git a/themes/dark-fury.yaml b/themes/dark-fury.yaml index 92fd7c01..9dd2e034 100644 --- a/themes/dark-fury.yaml +++ b/themes/dark-fury.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alive-ninja.dark-fury-theme" version: "1.0.13" installs: 153 + rating: 5 + ratings: 1 author: "alive ninja" repo: null url: "https://marketplace.visualstudio.com/items?itemName=alive-ninja.dark-fury-theme" diff --git a/themes/dark-future-cyberpunk-2077.yaml b/themes/dark-future-cyberpunk-2077.yaml index c4e919f7..4bcfa713 100644 --- a/themes/dark-future-cyberpunk-2077.yaml +++ b/themes/dark-future-cyberpunk-2077.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SashaPetrenko.dark-future" version: "0.0.17" installs: 2064 + rating: 5 + ratings: 1 author: "Sasha Petrenko" repo: "https://github.com/AP6YC/dark-future" url: "https://marketplace.visualstudio.com/items?itemName=SashaPetrenko.dark-future" diff --git a/themes/dark-future-outrun.yaml b/themes/dark-future-outrun.yaml new file mode 100644 index 00000000..1f3e61be --- /dev/null +++ b/themes/dark-future-outrun.yaml @@ -0,0 +1,52 @@ +name: "Dark Future Outrun" +source: + marketplace_id: "SashaPetrenko.dark-future" + version: "0.0.17" + installs: 2064 + rating: 5 + ratings: 1 + author: "Sasha Petrenko" + repo: "https://github.com/AP6YC/dark-future" + url: "https://marketplace.visualstudio.com/items?itemName=SashaPetrenko.dark-future" +colors: + bg: "#030D22" + fg: "#FDFEFF" + black: "#3A1B75" + red: "#EE1682" + green: "#06AD00" + yellow: "#FFD400" + blue: "#3787D6" + magenta: "#EA00D9" + cyan: "#0AB2FA" + white: "#F2F8FF" + brightBlack: "#5C6D75" + brightRed: "#FF2E97" + brightGreen: "#3DD69C" + brightYellow: "#FFD400" + brightBlue: "#5994CE" + brightMagenta: "#EA00D9" + brightCyan: "#4BC5FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 106.7 + black: 0 + red: 35.1 + green: 45.5 + yellow: 82.6 + blue: 36.6 + magenta: 38.3 + cyan: 55.1 + white: 102.4 + brightBlack: 24.5 + brightRed: 41.2 + brightGreen: 67.5 + brightYellow: 82.6 + brightBlue: 42.2 + brightMagenta: 38.3 + brightCyan: 64.4 + brightWhite: 107.5 diff --git a/themes/dark-green-energy.yaml b/themes/dark-green-energy.yaml index 85674b7f..432bb92a 100644 --- a/themes/dark-green-energy.yaml +++ b/themes/dark-green-energy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rambo1558.dark-and-green-my-first-theme" version: "2.3.0" installs: 149 + rating: 5 + ratings: 1 author: "Rambo1558" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Rambo1558.dark-and-green-my-first-theme" diff --git a/themes/dark-green-jungle.yaml b/themes/dark-green-jungle.yaml index 25c963f2..bea49fd1 100644 --- a/themes/dark-green-jungle.yaml +++ b/themes/dark-green-jungle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/dark-green-minimalist-theme.yaml b/themes/dark-green-minimalist-theme.yaml index 3269159e..905a26fe 100644 --- a/themes/dark-green-minimalist-theme.yaml +++ b/themes/dark-green-minimalist-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "drifaro-theme.dark-green-minimalist-theme" version: "0.0.1" installs: 2308 + rating: 5 + ratings: 1 author: "drifaro-theme" repo: "https://github.com/drifaro/theme-vscode-dark-green-minimalist" url: "https://marketplace.visualstudio.com/items?itemName=drifaro-theme.dark-green-minimalist-theme" diff --git a/themes/dark-green.yaml b/themes/dark-green.yaml index c2f8f31b..463e563e 100644 --- a/themes/dark-green.yaml +++ b/themes/dark-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bakrimoharram.dark-green" version: "0.0.2" installs: 1855 + rating: 0 + ratings: 0 author: "bakrimoharram" repo: "https://github.com/bakrimoharram/dark-green" url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.dark-green" diff --git a/themes/dark-grey-theme.yaml b/themes/dark-grey-theme.yaml index 7920961e..64579691 100644 --- a/themes/dark-grey-theme.yaml +++ b/themes/dark-grey-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkMannn.dark-grey-theme" version: "0.0.1" installs: 817 + rating: 0 + ratings: 0 author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-grey-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-grey-theme" diff --git a/themes/dark-ink-and-red-accents.yaml b/themes/dark-ink-and-red-accents.yaml index b96cbacd..22d9c029 100644 --- a/themes/dark-ink-and-red-accents.yaml +++ b/themes/dark-ink-and-red-accents.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkMannn.dark-ink-theme" version: "0.0.9" installs: 413 + rating: 0 + ratings: 0 author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 32.2 black: 9.5 diff --git a/themes/dark-ink-brighter.yaml b/themes/dark-ink-brighter.yaml index aca621d8..1c438dce 100644 --- a/themes/dark-ink-brighter.yaml +++ b/themes/dark-ink-brighter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkMannn.dark-ink-theme" version: "0.0.9" installs: 413 + rating: 0 + ratings: 0 author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 38.4 black: 14.3 diff --git a/themes/dark-ink-brightest.yaml b/themes/dark-ink-brightest.yaml index 1b7f9543..654d4191 100644 --- a/themes/dark-ink-brightest.yaml +++ b/themes/dark-ink-brightest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkMannn.dark-ink-theme" version: "0.0.9" installs: 413 + rating: 0 + ratings: 0 author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 46.5 black: 14.3 diff --git a/themes/dark-ink-lighter.yaml b/themes/dark-ink-lighter.yaml index b761d344..24c7dcfe 100644 --- a/themes/dark-ink-lighter.yaml +++ b/themes/dark-ink-lighter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkMannn.dark-ink-theme" version: "0.0.9" installs: 413 + rating: 0 + ratings: 0 author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 83.4 black: 104.8 diff --git a/themes/dark-ink.yaml b/themes/dark-ink.yaml index 74a1e295..4ec7f55f 100644 --- a/themes/dark-ink.yaml +++ b/themes/dark-ink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkMannn.dark-ink-theme" version: "0.0.9" installs: 413 + rating: 0 + ratings: 0 author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 32.2 black: 9.5 diff --git a/themes/dark-jade.yaml b/themes/dark-jade.yaml index 906289db..68a05351 100644 --- a/themes/dark-jade.yaml +++ b/themes/dark-jade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "edca-jadetheme.jade" version: "0.0.2" installs: 1054 + rating: 5 + ratings: 1 author: "ErikDCAlmeida" repo: "https://github.com/ErikDCAlmeida/jade-theme" url: "https://marketplace.visualstudio.com/items?itemName=edca-jadetheme.jade" diff --git a/themes/dark-juice-bordered.yaml b/themes/dark-juice-bordered.yaml new file mode 100644 index 00000000..345bf456 --- /dev/null +++ b/themes/dark-juice-bordered.yaml @@ -0,0 +1,52 @@ +name: "Dark Juice Bordered" +source: + marketplace_id: "nachop51.nachop-theme" + version: "2.0.0" + installs: 303 + rating: 5 + ratings: 1 + author: "Nachop Peralta" + repo: "https://github.com/nachop51/nachop-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nachop51.nachop-theme" +colors: + bg: "#0B0E14" + fg: "#DCDFEB" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#F0C758" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#FFEC80" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 87.1 + black: 9.5 + red: 37.4 + green: 61 + yellow: 75.2 + blue: 50.3 + magenta: 39.7 + cyan: 53.2 + white: 83.7 + brightBlack: 16.1 + brightRed: 46.8 + brightGreen: 77.5 + brightYellow: 94.4 + brightBlue: 64.4 + brightMagenta: 50.9 + brightCyan: 68.5 + brightWhite: 91.3 diff --git a/themes/dark-lavender-black.yaml b/themes/dark-lavender-black.yaml index e443b4e1..49c46b44 100644 --- a/themes/dark-lavender-black.yaml +++ b/themes/dark-lavender-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "t7yang.dark-lavender" version: "6.2.1" installs: 8090 + rating: 5 + ratings: 6 author: "t7yang" repo: "https://github.com/t7yang/dark-lavender" url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" diff --git a/themes/dark-lavender-soft.yaml b/themes/dark-lavender-soft.yaml index 3eea5929..f5f60101 100644 --- a/themes/dark-lavender-soft.yaml +++ b/themes/dark-lavender-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "t7yang.dark-lavender" version: "6.2.1" installs: 8090 + rating: 5 + ratings: 6 author: "t7yang" repo: "https://github.com/t7yang/dark-lavender" url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" diff --git a/themes/dark-lavender-tailwind-soft.yaml b/themes/dark-lavender-tailwind-soft.yaml index ca6184a8..d7799dc0 100644 --- a/themes/dark-lavender-tailwind-soft.yaml +++ b/themes/dark-lavender-tailwind-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "t7yang.dark-lavender" version: "6.2.1" installs: 8090 + rating: 5 + ratings: 6 author: "t7yang" repo: "https://github.com/t7yang/dark-lavender" url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" diff --git a/themes/dark-lavender-tailwind.yaml b/themes/dark-lavender-tailwind.yaml index ba09273e..015082df 100644 --- a/themes/dark-lavender-tailwind.yaml +++ b/themes/dark-lavender-tailwind.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "t7yang.dark-lavender" version: "6.2.1" installs: 8090 + rating: 5 + ratings: 6 author: "t7yang" repo: "https://github.com/t7yang/dark-lavender" url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" diff --git a/themes/dark-lavender.yaml b/themes/dark-lavender.yaml index bed365b2..d53b3aeb 100644 --- a/themes/dark-lavender.yaml +++ b/themes/dark-lavender.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "t7yang.dark-lavender" version: "6.2.1" installs: 8090 + rating: 5 + ratings: 6 author: "t7yang" repo: "https://github.com/t7yang/dark-lavender" url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" diff --git a/themes/dark-legibility.yaml b/themes/dark-legibility.yaml index 304730d9..3c211139 100644 --- a/themes/dark-legibility.yaml +++ b/themes/dark-legibility.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jamers.jamestheme" version: "0.0.4" installs: 12 + rating: 0 + ratings: 0 author: "Jamers" repo: "https://github.com/kokjp1/jamestheme" url: "https://marketplace.visualstudio.com/items?itemName=Jamers.jamestheme" diff --git a/themes/dark-leocode-theme.yaml b/themes/dark-leocode-theme.yaml index f7109d05..deb9f567 100644 --- a/themes/dark-leocode-theme.yaml +++ b/themes/dark-leocode-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LeonardoEspinosaCassales.dark-leocode-theme" version: "0.0.1" installs: 42 + rating: 5 + ratings: 1 author: "Leonardo Espinosa Cassales" repo: "https://github.com/leointhecode/lionleo-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=LeonardoEspinosaCassales.dark-leocode-theme" diff --git a/themes/dark-lime-flat.yaml b/themes/dark-lime-flat.yaml index d565379f..76d22c10 100644 --- a/themes/dark-lime-flat.yaml +++ b/themes/dark-lime-flat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jannisberndt.dark-orange" version: "0.4.0" installs: 21524 + rating: 5 + ratings: 1 author: "Jannis Berndt" repo: "https://github.com/jb3rndt/dark-orange" url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" diff --git a/themes/dark-magic-dracula.yaml b/themes/dark-magic-dracula.yaml index 67b543d6..bc487d58 100644 --- a/themes/dark-magic-dracula.yaml +++ b/themes/dark-magic-dracula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AbdoGhonim.ghonim-dark-themes" version: "0.0.2" installs: 138 + rating: 5 + ratings: 1 author: "Abdo Ghonim" repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" diff --git a/themes/dark-magic-frankenstein.yaml b/themes/dark-magic-frankenstein.yaml index 1f203af9..4e78832d 100644 --- a/themes/dark-magic-frankenstein.yaml +++ b/themes/dark-magic-frankenstein.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AbdoGhonim.ghonim-dark-themes" version: "0.0.2" installs: 138 + rating: 5 + ratings: 1 author: "Abdo Ghonim" repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" diff --git a/themes/dark-magic-light.yaml b/themes/dark-magic-light.yaml index 2af44fdb..c86e2454 100644 --- a/themes/dark-magic-light.yaml +++ b/themes/dark-magic-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DavidMorais.dark-magic-themes" version: "0.3.1" installs: 47330 + rating: 5 + ratings: 6 author: "David Morais" repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" diff --git a/themes/dark-magic-night.yaml b/themes/dark-magic-night.yaml index 225b3d45..cfb2af54 100644 --- a/themes/dark-magic-night.yaml +++ b/themes/dark-magic-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AbdoGhonim.ghonim-dark-themes" version: "0.0.2" installs: 138 + rating: 5 + ratings: 1 author: "Abdo Ghonim" repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" diff --git a/themes/dark-magic-nord.yaml b/themes/dark-magic-nord.yaml index 02a57fd9..45bd348c 100644 --- a/themes/dark-magic-nord.yaml +++ b/themes/dark-magic-nord.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AbdoGhonim.ghonim-dark-themes" version: "0.0.2" installs: 138 + rating: 5 + ratings: 1 author: "Abdo Ghonim" repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" diff --git a/themes/dark-magic-tokyo.yaml b/themes/dark-magic-tokyo.yaml index a1356e4d..a3270dad 100644 --- a/themes/dark-magic-tokyo.yaml +++ b/themes/dark-magic-tokyo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AbdoGhonim.ghonim-dark-themes" version: "0.0.2" installs: 138 + rating: 5 + ratings: 1 author: "Abdo Ghonim" repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" diff --git a/themes/dark-magic.yaml b/themes/dark-magic.yaml index d1f78912..c06ece78 100644 --- a/themes/dark-magic.yaml +++ b/themes/dark-magic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AbdoGhonim.ghonim-dark-themes" version: "0.0.2" installs: 138 + rating: 5 + ratings: 1 author: "Abdo Ghonim" repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" diff --git a/themes/dark-matter-code-neptune-medium.yaml b/themes/dark-matter-code-neptune-medium.yaml index 480bfcd4..ddc1ce5b 100644 --- a/themes/dark-matter-code-neptune-medium.yaml +++ b/themes/dark-matter-code-neptune-medium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AmiraliBeigi.dark-matter-code" version: "0.0.6" installs: 97 + rating: 5 + ratings: 2 author: "Amirali Beigi" repo: "https://github.com/amiralibg/dark-coder-theme" url: "https://marketplace.visualstudio.com/items?itemName=AmiraliBeigi.dark-matter-code" diff --git a/themes/dark-minimal-lime-theme.yaml b/themes/dark-minimal-lime-theme.yaml index 2a541fe8..2e98b03f 100644 --- a/themes/dark-minimal-lime-theme.yaml +++ b/themes/dark-minimal-lime-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BeanZ.dark-minimal-matte-theme" version: "0.2.2" installs: 557 + rating: 0 + ratings: 0 author: "BeanZ" repo: null url: "https://marketplace.visualstudio.com/items?itemName=BeanZ.dark-minimal-matte-theme" diff --git a/themes/dark-minimal-theme-sm.yaml b/themes/dark-minimal-theme-sm.yaml index 41aab25d..dc97bc40 100644 --- a/themes/dark-minimal-theme-sm.yaml +++ b/themes/dark-minimal-theme-sm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SIRILMP.dark-theme-sm" version: "3.11.3" installs: 21087 + rating: 5 + ratings: 2 author: "SIRIL M P" repo: "https://github.com/sirilmp/dark-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" diff --git a/themes/dark-mode-lover-wasp.yaml b/themes/dark-mode-lover-wasp.yaml index 65df7912..9c925484 100644 --- a/themes/dark-mode-lover-wasp.yaml +++ b/themes/dark-mode-lover-wasp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Lovervoid.dark-mode-lover" version: "0.8.31" installs: 25 + rating: 0 + ratings: 0 author: "Lovervoid" repo: "https://github.com/Kailuss/dark-mode-lover" url: "https://marketplace.visualstudio.com/items?itemName=Lovervoid.dark-mode-lover" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "indigo" hue: 280 + pair: null contrast: fg: 47.7 black: 0 diff --git a/themes/dark-mode-lover.yaml b/themes/dark-mode-lover.yaml index b7ac81c5..92692cb2 100644 --- a/themes/dark-mode-lover.yaml +++ b/themes/dark-mode-lover.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Lovervoid.dark-mode-lover" version: "0.8.31" installs: 25 + rating: 0 + ratings: 0 author: "Lovervoid" repo: "https://github.com/Kailuss/dark-mode-lover" url: "https://marketplace.visualstudio.com/items?itemName=Lovervoid.dark-mode-lover" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "indigo" hue: 280 + pair: null contrast: fg: 58.8 black: 0 diff --git a/themes/dark-mode-vs.yaml b/themes/dark-mode-vs.yaml index 550fd4f2..4c399603 100644 --- a/themes/dark-mode-vs.yaml +++ b/themes/dark-mode-vs.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkModeVS.dark-mode-vs" version: "1.3.0" installs: 2690 + rating: 4.33 + ratings: 3 author: "Dark Mode VS" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DarkModeVS.dark-mode-vs" diff --git a/themes/dark-mode.yaml b/themes/dark-mode.yaml index 1712e6ac..6549d423 100644 --- a/themes/dark-mode.yaml +++ b/themes/dark-mode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "philsinatra.macos-dark-mode-theme" version: "1.1.3" installs: 60756 + rating: 3.75 + ratings: 4 author: "Phil Sinatra" repo: "https://github.com/philsinatra/macos-dark-mode-theme" url: "https://marketplace.visualstudio.com/items?itemName=philsinatra.macos-dark-mode-theme" diff --git a/themes/dark-modern-one-without-italics.yaml b/themes/dark-modern-one-without-italics.yaml index 28dcbfbe..366bfb33 100644 --- a/themes/dark-modern-one-without-italics.yaml +++ b/themes/dark-modern-one-without-italics.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nicolaerario.dark-modern-one" version: "0.3.1" installs: 3342 + rating: 5 + ratings: 7 author: "Nicola Erario" repo: "https://github.com/nicolaerario/dark-modern-one" url: "https://marketplace.visualstudio.com/items?itemName=nicolaerario.dark-modern-one" diff --git a/themes/dark-modern-yuriyprogg.yaml b/themes/dark-modern-yuriyprogg.yaml index 86d7737a..73714857 100644 --- a/themes/dark-modern-yuriyprogg.yaml +++ b/themes/dark-modern-yuriyprogg.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yuriyProgg.yuriyprogg-theme" version: "1.0.0" installs: 114 + rating: 0 + ratings: 0 author: "YuriyProgg" repo: "https://github.com/yuriyProgg/yuriyprogg-theme" url: "https://marketplace.visualstudio.com/items?itemName=yuriyProgg.yuriyprogg-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 47.4 black: 0 diff --git a/themes/dark-molokai.yaml b/themes/dark-molokai.yaml index 93eaec9d..719efe62 100644 --- a/themes/dark-molokai.yaml +++ b/themes/dark-molokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nonylene.dark-molokai-theme" version: "1.0.10" installs: 33285 + rating: 5 + ratings: 3 author: "nonylene" repo: "https://github.com/nonylene/vscode-dark-molokai-theme" url: "https://marketplace.visualstudio.com/items?itemName=nonylene.dark-molokai-theme" diff --git a/themes/dark-mono.yaml b/themes/dark-mono.yaml index f8c77cb9..a8fb2225 100644 --- a/themes/dark-mono.yaml +++ b/themes/dark-mono.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leonardoleal202.dark-mono" version: "1.1.0" installs: 6606 + rating: 5 + ratings: 1 author: "leonardoleal202" repo: null url: "https://marketplace.visualstudio.com/items?itemName=leonardoleal202.dark-mono" diff --git a/themes/dark-monokai.yaml b/themes/dark-monokai.yaml index 57feeb6d..63961d48 100644 --- a/themes/dark-monokai.yaml +++ b/themes/dark-monokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yuriyProgg.yuriyprogg-theme" version: "1.0.0" installs: 114 + rating: 0 + ratings: 0 author: "YuriyProgg" repo: "https://github.com/yuriyProgg/yuriyprogg-theme" url: "https://marketplace.visualstudio.com/items?itemName=yuriyProgg.yuriyprogg-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.7 black: 0 diff --git a/themes/dark-moonlight.yaml b/themes/dark-moonlight.yaml new file mode 100644 index 00000000..d572fb54 --- /dev/null +++ b/themes/dark-moonlight.yaml @@ -0,0 +1,52 @@ +name: "Dark Moonlight" +source: + marketplace_id: "Monika-dev.dark-moonlight-theme" + version: "1.0.6" + installs: 107 + rating: 0 + ratings: 0 + author: "Monika-dev" + repo: "https://github.com/MonikaSt12/dark-moonlight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Monika-dev.dark-moonlight-theme" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#E0E6F0" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#E0E6F0" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 89.5 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 89.5 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/dark-mosqueta.yaml b/themes/dark-mosqueta.yaml new file mode 100644 index 00000000..47977de3 --- /dev/null +++ b/themes/dark-mosqueta.yaml @@ -0,0 +1,50 @@ +name: "dark_mosqueta" +source: + marketplace_id: "Paku.mosqueta" + version: "1.0.0" + installs: 141 + author: "Paku" + repo: "https://github.com/pa-ku/mosqueta_vstheme" + url: "https://marketplace.visualstudio.com/items?itemName=Paku.mosqueta" +colors: + bg: "#232834" + fg: "#CCCAC2" + black: "#2A3243" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#FDA2F1" + brightBlue: "#73D0FF" + brightMagenta: "#DFBFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + pair: null + contrast: + fg: 70.9 + black: 0 + red: 47.9 + green: 68.3 + yellow: 76.1 + blue: 65.5 + magenta: 69.1 + cyan: 75.4 + white: 69.2 + brightBlack: 20.4 + brightRed: 50.4 + brightGreen: 94.8 + brightYellow: 65.7 + brightBlue: 68.4 + brightMagenta: 72.1 + brightCyan: 78.4 + brightWhite: 104.4 diff --git a/themes/dark-mute.yaml b/themes/dark-mute.yaml index 5a086085..89908d79 100644 --- a/themes/dark-mute.yaml +++ b/themes/dark-mute.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EugeneGhanizadehKhoub.dark-mute" version: "1.0.0" installs: 309 + rating: 0 + ratings: 0 author: "Eugene Ghanizadeh Khoub" repo: "https://github.com/loreanvictor/vscode-darkmute-theme" url: "https://marketplace.visualstudio.com/items?itemName=EugeneGhanizadehKhoub.dark-mute" diff --git a/themes/dark-nebula.yaml b/themes/dark-nebula.yaml index 45849dc2..ee278bd1 100644 --- a/themes/dark-nebula.yaml +++ b/themes/dark-nebula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KaydenNolin.darknebula" version: "0.0.1" installs: 669 + rating: 0 + ratings: 0 author: "Nebula" repo: null url: "https://marketplace.visualstudio.com/items?itemName=KaydenNolin.darknebula" diff --git a/themes/dark-neon-theme-sm.yaml b/themes/dark-neon-theme-sm.yaml index 16c4c509..209334b5 100644 --- a/themes/dark-neon-theme-sm.yaml +++ b/themes/dark-neon-theme-sm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SIRILMP.dark-theme-sm" version: "3.11.3" installs: 21087 + rating: 5 + ratings: 2 author: "SIRIL M P" repo: "https://github.com/sirilmp/dark-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" diff --git a/themes/dark-night-pro.yaml b/themes/dark-night-pro.yaml index e908e23d..6a1bebc9 100644 --- a/themes/dark-night-pro.yaml +++ b/themes/dark-night-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ErickSosa.dark-night-pro" version: "1.0.4" installs: 759 + rating: 5 + ratings: 1 author: "Erick Sosa" repo: "https://github.com/buttercubz/dark-night-pro" url: "https://marketplace.visualstudio.com/items?itemName=ErickSosa.dark-night-pro" diff --git a/themes/dark-night.yaml b/themes/dark-night.yaml index fb7621d9..fa2ad327 100644 --- a/themes/dark-night.yaml +++ b/themes/dark-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SumitSaha.learn-with-sumit-theme" version: "12.1.0" installs: 157511 + rating: 4.97 + ratings: 595 author: "Learn with Sumit" repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" diff --git a/themes/dark-ocean.yaml b/themes/dark-ocean.yaml index 12e45229..c00435ae 100644 --- a/themes/dark-ocean.yaml +++ b/themes/dark-ocean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "patricklopes33.theme-dark-ocean" version: "1.0.7" installs: 4534 + rating: 5 + ratings: 3 author: "patricklopes33" repo: "https://github.com/patlopes/vscode-dark-ocean" url: "https://marketplace.visualstudio.com/items?itemName=patricklopes33.theme-dark-ocean" diff --git a/themes/dark-ohnagi-2020.yaml b/themes/dark-ohnagi-2020.yaml index a401b6e1..072cf353 100644 --- a/themes/dark-ohnagi-2020.yaml +++ b/themes/dark-ohnagi-2020.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "koprodev.devpro" version: "1.1.2" installs: 729 + rating: 0 + ratings: 0 author: "koprodev" repo: "https://github.com/koprodev/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=koprodev.devpro" diff --git a/themes/dark-orange-flat.yaml b/themes/dark-orange-flat.yaml new file mode 100644 index 00000000..d79f948a --- /dev/null +++ b/themes/dark-orange-flat.yaml @@ -0,0 +1,52 @@ +name: "Dark Orange Flat" +source: + marketplace_id: "jannisberndt.dark-orange" + version: "0.4.0" + installs: 21524 + rating: 5 + ratings: 1 + author: "Jannis Berndt" + repo: "https://github.com/jb3rndt/dark-orange" + url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" +colors: + bg: "#24292E" + fg: "#E1E4E8" + black: "#3F4451" + red: "#E05561" + green: "#98C379" + yellow: "#F69D50" + blue: "#4AA5F0" + magenta: "#C792EA" + cyan: "#82AAFF" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 248 + pair: null + contrast: + fg: 86.7 + black: 0 + red: 34.2 + green: 59.8 + yellow: 57.2 + blue: 47.1 + magenta: 51.2 + cyan: 53.4 + white: 88.1 + brightBlack: 12.9 + brightRed: 43.6 + brightGreen: 74.3 + brightYellow: 58.7 + brightBlue: 61.2 + brightMagenta: 47.7 + brightCyan: 65.3 + brightWhite: 80.5 diff --git a/themes/dark-owl-darker-no-italics.yaml b/themes/dark-owl-darker-no-italics.yaml new file mode 100644 index 00000000..068bae61 --- /dev/null +++ b/themes/dark-owl-darker-no-italics.yaml @@ -0,0 +1,52 @@ +name: "Dark Owl Darker (No Italics)" +source: + marketplace_id: "hmseeb.dark-owl" + version: "2.2.6" + installs: 4452 + rating: 5 + ratings: 2 + author: "hmseeb" + repo: "https://github.com/hmseeb/dark-owl" + url: "https://marketplace.visualstudio.com/items?itemName=hmseeb.dark-owl" +colors: + bg: "#181B28" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + pair: null + contrast: + fg: 78.3 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/dark-owl-darker.yaml b/themes/dark-owl-darker.yaml index 8571b84f..e74348a7 100644 --- a/themes/dark-owl-darker.yaml +++ b/themes/dark-owl-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hmseeb.dark-owl" version: "2.2.6" installs: 4452 + rating: 5 + ratings: 2 author: "hmseeb" repo: "https://github.com/hmseeb/dark-owl" url: "https://marketplace.visualstudio.com/items?itemName=hmseeb.dark-owl" diff --git a/themes/dark-pastel-pink.yaml b/themes/dark-pastel-pink.yaml index cc16b5cb..b1fabb43 100644 --- a/themes/dark-pastel-pink.yaml +++ b/themes/dark-pastel-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Pand.dark-pastels" version: "1.0.0" installs: 211 + rating: 0 + ratings: 0 author: "Pand" repo: "https://github.com/pandirel/dark-pastels" url: "https://marketplace.visualstudio.com/items?itemName=Pand.dark-pastels" diff --git a/themes/dark-pastel.yaml b/themes/dark-pastel.yaml index ea2df4b7..2d961ba1 100644 --- a/themes/dark-pastel.yaml +++ b/themes/dark-pastel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Pand.dark-pastels" version: "1.0.0" installs: 211 + rating: 0 + ratings: 0 author: "Pand" repo: "https://github.com/pandirel/dark-pastels" url: "https://marketplace.visualstudio.com/items?itemName=Pand.dark-pastels" diff --git a/themes/dark-pie-deep-dark.yaml b/themes/dark-pie-deep-dark.yaml index c7b1cfdd..7dd3831e 100644 --- a/themes/dark-pie-deep-dark.yaml +++ b/themes/dark-pie-deep-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AT-mAh.dark-pie" version: "1.0.24" installs: 537 + rating: 5 + ratings: 2 author: "Abu Taher Muhammad" repo: "https://github.com/abutahermuhammad/Dark-Pie" url: "https://marketplace.visualstudio.com/items?itemName=AT-mAh.dark-pie" diff --git a/themes/dark-pink-theme.yaml b/themes/dark-pink-theme.yaml index cc9ecb15..21c85a79 100644 --- a/themes/dark-pink-theme.yaml +++ b/themes/dark-pink-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MartinaTorce.beautiful-theme" version: "0.3.0" installs: 5766 + rating: 5 + ratings: 1 author: "Martina Torcè" repo: "https://github.com/martina-torce/vscode-theme-dp" url: "https://marketplace.visualstudio.com/items?itemName=MartinaTorce.beautiful-theme" diff --git a/themes/dark-plus-chocolate.yaml b/themes/dark-plus-chocolate.yaml index c8239549..cb14b770 100644 --- a/themes/dark-plus-chocolate.yaml +++ b/themes/dark-plus-chocolate.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/dark-plus-moon-lite.yaml b/themes/dark-plus-moon-lite.yaml index 659fe04a..31d674d7 100644 --- a/themes/dark-plus-moon-lite.yaml +++ b/themes/dark-plus-moon-lite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "moondevaa.darkplusmoonlite" version: "0.8.7" installs: 15882 + rating: 5 + ratings: 1 author: "moondevaa" repo: "https://github.com/AaBbdev29/Darkplusmoonlite" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.darkplusmoonlite" diff --git a/themes/dark-plus-oled-dim-100.yaml b/themes/dark-plus-oled-dim-100.yaml index 8f9d810f..27fe7007 100644 --- a/themes/dark-plus-oled-dim-100.yaml +++ b/themes/dark-plus-oled-dim-100.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WeiyuWang.dark-plus-oled" version: "0.0.1" installs: 2223 + rating: 5 + ratings: 1 author: "Weiyu Wang" repo: "https://github.com/wwang1110/dark-plus-oled" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" diff --git a/themes/dark-plus-oled-dim-75.yaml b/themes/dark-plus-oled-dim-75.yaml index 08bca1d9..e95da0f2 100644 --- a/themes/dark-plus-oled-dim-75.yaml +++ b/themes/dark-plus-oled-dim-75.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WeiyuWang.dark-plus-oled" version: "0.0.1" installs: 2223 + rating: 5 + ratings: 1 author: "Weiyu Wang" repo: "https://github.com/wwang1110/dark-plus-oled" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" diff --git a/themes/dark-plus-oled-dim-80.yaml b/themes/dark-plus-oled-dim-80.yaml index 411e66f2..45f5b244 100644 --- a/themes/dark-plus-oled-dim-80.yaml +++ b/themes/dark-plus-oled-dim-80.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WeiyuWang.dark-plus-oled" version: "0.0.1" installs: 2223 + rating: 5 + ratings: 1 author: "Weiyu Wang" repo: "https://github.com/wwang1110/dark-plus-oled" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" diff --git a/themes/dark-plus-oled-dim-85.yaml b/themes/dark-plus-oled-dim-85.yaml index 4e6ef7ba..5eeff841 100644 --- a/themes/dark-plus-oled-dim-85.yaml +++ b/themes/dark-plus-oled-dim-85.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WeiyuWang.dark-plus-oled" version: "0.0.1" installs: 2223 + rating: 5 + ratings: 1 author: "Weiyu Wang" repo: "https://github.com/wwang1110/dark-plus-oled" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" diff --git a/themes/dark-plus-oled-dim-90.yaml b/themes/dark-plus-oled-dim-90.yaml index cda2fa9c..69a39b1c 100644 --- a/themes/dark-plus-oled-dim-90.yaml +++ b/themes/dark-plus-oled-dim-90.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WeiyuWang.dark-plus-oled" version: "0.0.1" installs: 2223 + rating: 5 + ratings: 1 author: "Weiyu Wang" repo: "https://github.com/wwang1110/dark-plus-oled" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" diff --git a/themes/dark-plus-oled-dim-95.yaml b/themes/dark-plus-oled-dim-95.yaml index 31af74fa..e84b981b 100644 --- a/themes/dark-plus-oled-dim-95.yaml +++ b/themes/dark-plus-oled-dim-95.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WeiyuWang.dark-plus-oled" version: "0.0.1" installs: 2223 + rating: 5 + ratings: 1 author: "Weiyu Wang" repo: "https://github.com/wwang1110/dark-plus-oled" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" diff --git a/themes/dark-plus-syntax.yaml b/themes/dark-plus-syntax.yaml index 1c80ca44..248541c6 100644 --- a/themes/dark-plus-syntax.yaml +++ b/themes/dark-plus-syntax.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dunstontc-org.dark-plus-syntax" version: "0.0.165" installs: 448 + rating: 0 + ratings: 0 author: "dunstontc-org" repo: "https://github.com/dunstontc/dark-plus-syntax" url: "https://marketplace.visualstudio.com/items?itemName=dunstontc-org.dark-plus-syntax" diff --git a/themes/dark-purple-flat.yaml b/themes/dark-purple-flat.yaml index 9101a55c..63b5a7e9 100644 --- a/themes/dark-purple-flat.yaml +++ b/themes/dark-purple-flat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jannisberndt.dark-orange" version: "0.4.0" installs: 21524 + rating: 5 + ratings: 1 author: "Jannis Berndt" repo: "https://github.com/jb3rndt/dark-orange" url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" diff --git a/themes/black-purple.yaml b/themes/dark-purple-fork.yaml similarity index 74% rename from themes/black-purple.yaml rename to themes/dark-purple-fork.yaml index 263850fb..5d68508d 100644 --- a/themes/black-purple.yaml +++ b/themes/dark-purple-fork.yaml @@ -1,11 +1,13 @@ -name: "Black Purple" +name: "Dark/Purple - Fork" source: - marketplace_id: "VishalMaurya.zenith-ui" - version: "0.2.4" - installs: 191 - author: "Vishal Maurya" - repo: "https://github.com/maurya-07/zenith-ui" - url: "https://marketplace.visualstudio.com/items?itemName=VishalMaurya.zenith-ui" + marketplace_id: "Daniel-caires.askfree-theme" + version: "0.0.1" + installs: 181 + rating: 0 + ratings: 0 + author: "Daniel-caires" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Daniel-caires.askfree-theme" colors: bg: "#000000" fg: "#E1E1E0" diff --git a/themes/dark-purple.yaml b/themes/dark-purple.yaml index 75c7cd82..e902bd65 100644 --- a/themes/dark-purple.yaml +++ b/themes/dark-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ThemeOne.themeone" version: "1.0.3" installs: 51 + rating: 4 + ratings: 1 author: "Theme One" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ThemeOne.themeone" diff --git a/themes/dark-purpled-theme.yaml b/themes/dark-purpled-theme.yaml new file mode 100644 index 00000000..5e949e1e --- /dev/null +++ b/themes/dark-purpled-theme.yaml @@ -0,0 +1,52 @@ +name: "Dark Purpled Theme" +source: + marketplace_id: "harryrardy.dark-purpled-theme" + version: "0.0.8" + installs: 163 + rating: 0 + ratings: 0 + author: "harryrardy" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=harryrardy.dark-purpled-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#232323" + red: "#FF000F" + green: "#8CE10B" + yellow: "#FFB900" + blue: "#008DF8" + magenta: "#6D43A6" + cyan: "#00D8EB" + white: "#FFFFFF" + brightBlack: "#444444" + brightRed: "#FF2740" + brightGreen: "#ABE15B" + brightYellow: "#FFD242" + brightBlue: "#0092FF" + brightMagenta: "#9A5FEB" + brightCyan: "#67FFF0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 37.6 + green: 75.2 + yellow: 72 + blue: 40.9 + magenta: 18.1 + cyan: 71.6 + white: 107.9 + brightBlack: 9.8 + brightRed: 38.9 + brightGreen: 78.4 + brightYellow: 82.3 + brightBlue: 43.3 + brightMagenta: 34.5 + brightCyan: 93.3 + brightWhite: 107.9 diff --git a/themes/dark-rainbow.yaml b/themes/dark-rainbow.yaml index 9a046d8a..81b9e2ec 100644 --- a/themes/dark-rainbow.yaml +++ b/themes/dark-rainbow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkRainbow.darkrainbow" version: "2.0.0" installs: 3281 + rating: 5 + ratings: 1 author: "Dark Rainbow" repo: "https://github.com/Gabrielvt14/dark-rainbow-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkRainbow.darkrainbow" diff --git a/themes/dark-reader-dark.yaml b/themes/dark-reader-dark.yaml new file mode 100644 index 00000000..c1fd5987 --- /dev/null +++ b/themes/dark-reader-dark.yaml @@ -0,0 +1,52 @@ +name: "Dark Reader (Dark)" +source: + marketplace_id: "akil-s.dark-reader-dark" + version: "0.0.5" + installs: 1380 + rating: 0 + ratings: 0 + author: "akil-s" + repo: "https://github.com/Salah-Akil/illas-theme" + url: "https://marketplace.visualstudio.com/items?itemName=akil-s.dark-reader-dark" +colors: + bg: "#181A1B" + fg: "#D6D3CD" + black: "#232627" + red: "#BF0C0C" + green: "#AFD613" + yellow: "#F6AC00" + blue: "#00E4D1" + magenta: "#AA62C8" + cyan: "#1ABC9C" + white: "#51504E" + brightBlack: "#7F8C8D" + brightRed: "#CA1111" + brightGreen: "#7F990D" + brightYellow: "#FDBC4B" + brightBlue: "#00CBBA" + brightMagenta: "#8E44AD" + brightCyan: "#16A085" + brightWhite: "#82807D" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 21.1 + green: 71.8 + yellow: 64.3 + blue: 74.9 + magenta: 33.7 + cyan: 53.8 + white: 12.9 + brightBlack: 38 + brightRed: 23.6 + brightGreen: 40.8 + brightYellow: 71.9 + brightBlue: 61.8 + brightMagenta: 21.7 + brightCyan: 40.8 + brightWhite: 33.6 diff --git a/themes/dark-reader-light.yaml b/themes/dark-reader-light.yaml index e0d31918..6be5a2b1 100644 --- a/themes/dark-reader-light.yaml +++ b/themes/dark-reader-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akil-s.dark-reader-light" version: "0.0.4" installs: 608 + rating: 0 + ratings: 0 author: "akil-s" repo: "https://github.com/Salah-Akil/darkreader-vscode-light" url: "https://marketplace.visualstudio.com/items?itemName=akil-s.dark-reader-light" diff --git a/themes/dark-readin-5.yaml b/themes/dark-readin-5.yaml index b1ec74c3..af583781 100644 --- a/themes/dark-readin-5.yaml +++ b/themes/dark-readin-5.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GuilhermeFalco.Dark-Redin" version: "1.1.9" installs: 295 + rating: 0 + ratings: 0 author: "GuilhermeFalco" repo: null url: "https://marketplace.visualstudio.com/items?itemName=GuilhermeFalco.Dark-Redin" diff --git a/themes/dark-red-theme-vs-code.yaml b/themes/dark-red-theme-vs-code.yaml index 132ac602..60705c40 100644 --- a/themes/dark-red-theme-vs-code.yaml +++ b/themes/dark-red-theme-vs-code.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vscode-dark-red-theme.vscode-dark-red-theme" version: "0.30.0" installs: 2742 + rating: 5 + ratings: 2 author: "Kailash Shaw" repo: "https://github.com/kailash-shaw/vscode-dark-red-theme" url: "https://marketplace.visualstudio.com/items?itemName=vscode-dark-red-theme.vscode-dark-red-theme" diff --git a/themes/dark-red-theme.yaml b/themes/dark-red-theme.yaml new file mode 100644 index 00000000..26c04ed8 --- /dev/null +++ b/themes/dark-red-theme.yaml @@ -0,0 +1,52 @@ +name: "Dark Red Theme" +source: + marketplace_id: "Dark-Red-Theme.Red-Dark-Theme" + version: "0.0.5" + installs: 1222 + rating: 0 + ratings: 0 + author: "Dark-Red-Theme" + repo: "https://github.com/Dilson24/Dark-Red-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Dark-Red-Theme.Red-Dark-Theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 107.9 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/dark-remix-nord.yaml b/themes/dark-remix-nord.yaml index 19c57de4..fe5c10b4 100644 --- a/themes/dark-remix-nord.yaml +++ b/themes/dark-remix-nord.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daydev.dark-pastels-remix" version: "0.2.0" installs: 2455 + rating: 5 + ratings: 1 author: "daydev" repo: "https://github.com/daydev/vscode-dark-remix" url: "https://marketplace.visualstudio.com/items?itemName=daydev.dark-pastels-remix" diff --git a/themes/dark-remix-one-dark.yaml b/themes/dark-remix-one-dark.yaml index 30521d45..5cf6d2e0 100644 --- a/themes/dark-remix-one-dark.yaml +++ b/themes/dark-remix-one-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daydev.dark-pastels-remix" version: "0.2.0" installs: 2455 + rating: 5 + ratings: 1 author: "daydev" repo: "https://github.com/daydev/vscode-dark-remix" url: "https://marketplace.visualstudio.com/items?itemName=daydev.dark-pastels-remix" diff --git a/themes/dark-sand-theme.yaml b/themes/dark-sand-theme.yaml index 66b79f33..8cfbc6fa 100644 --- a/themes/dark-sand-theme.yaml +++ b/themes/dark-sand-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkMannn.dark-sand-color-theme" version: "0.0.4" installs: 1415 + rating: 0 + ratings: 0 author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-sand-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-sand-color-theme" diff --git a/themes/dark-sea-green.yaml b/themes/dark-sea-green.yaml index e253043b..1b83c42b 100644 --- a/themes/dark-sea-green.yaml +++ b/themes/dark-sea-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Dadoux.Dadoux" version: "0.0.3" installs: 2684 + rating: 0 + ratings: 0 author: "Dadoux" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Dadoux.Dadoux" diff --git a/themes/dark-sky-fork-fork.yaml b/themes/dark-sky-fork-fork.yaml index a9d8bb2a..03a7dbb5 100644 --- a/themes/dark-sky-fork-fork.yaml +++ b/themes/dark-sky-fork-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HarryL.harry-dark-5" version: "1.0.2" installs: 48 + rating: 0 + ratings: 0 author: "HarryL" repo: "https://github.com/harrylynchh/my-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=HarryL.harry-dark-5" diff --git a/themes/dark-soft-theme-sm.yaml b/themes/dark-soft-theme-sm.yaml index fb1a9c8b..61340aaf 100644 --- a/themes/dark-soft-theme-sm.yaml +++ b/themes/dark-soft-theme-sm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SIRILMP.dark-theme-sm" version: "3.11.3" installs: 21087 + rating: 5 + ratings: 2 author: "SIRIL M P" repo: "https://github.com/sirilmp/dark-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" diff --git a/themes/dark-solarin-2021.yaml b/themes/dark-solarin-2021.yaml new file mode 100644 index 00000000..c02fc922 --- /dev/null +++ b/themes/dark-solarin-2021.yaml @@ -0,0 +1,52 @@ +name: "dark-solarin-2021" +source: + marketplace_id: "kevboutin.dark-solarin-3" + version: "1.0.2" + installs: 37 + rating: 0 + ratings: 0 + author: "Kevin Boutin" + repo: "https://github.com/kevboutin/vscode-theme-dark-solarin-3" + url: "https://marketplace.visualstudio.com/items?itemName=kevboutin.dark-solarin-3" +colors: + bg: "#1E1E1E" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 73.8 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/dark-springbok.yaml b/themes/dark-springbok.yaml index 726a469a..be9707da 100644 --- a/themes/dark-springbok.yaml +++ b/themes/dark-springbok.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chrp.springbok-theme" version: "0.12.0" installs: 621 + rating: 5 + ratings: 1 author: "chrp" repo: "https://github.com/christophehurpeau/springbok-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=chrp.springbok-theme" diff --git a/themes/dark-terminal-pro.yaml b/themes/dark-terminal-pro.yaml index 7a7061e5..eac5578e 100644 --- a/themes/dark-terminal-pro.yaml +++ b/themes/dark-terminal-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xnjf33ubs66n5cynckwm42bn6akv3z5er2a4zcrgtdlgc4cfi6qa.dark-theme-pro" version: "0.0.1" installs: 241 + rating: 0 + ratings: 0 author: "theme-dark" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xnjf33ubs66n5cynckwm42bn6akv3z5er2a4zcrgtdlgc4cfi6qa.dark-theme-pro" diff --git a/themes/dark-theme-blue.yaml b/themes/dark-theme-blue.yaml index 6c0add35..4e73e67d 100644 --- a/themes/dark-theme-blue.yaml +++ b/themes/dark-theme-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gthbccnt.dark-theme-blue" version: "1.0.8" installs: 277 + rating: 0 + ratings: 0 author: "gthbccnt" repo: "https://github.com/gthbccnt/gthbccnt.dark-theme-blue" url: "https://marketplace.visualstudio.com/items?itemName=gthbccnt.dark-theme-blue" diff --git a/themes/dark-theme-by-sanan.yaml b/themes/dark-theme-by-sanan.yaml index 710e6855..ec536b8d 100644 --- a/themes/dark-theme-by-sanan.yaml +++ b/themes/dark-theme-by-sanan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sanan4li.dark-theme-by-sanan" version: "3.0.1" installs: 2104 + rating: 5 + ratings: 5 author: "Sanan Ali" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Sanan4li.dark-theme-by-sanan" diff --git a/themes/dark-theme-new.yaml b/themes/dark-theme-new.yaml index bb70dbad..398d2900 100644 --- a/themes/dark-theme-new.yaml +++ b/themes/dark-theme-new.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AstrayYouth.dark-theme-new" version: "1.0.0" installs: 34 + rating: 5 + ratings: 1 author: "Astray Youth" repo: "https://github.com/AstrayYouth/dark-theme-new" url: "https://marketplace.visualstudio.com/items?itemName=AstrayYouth.dark-theme-new" diff --git a/themes/dark-theme-v2.yaml b/themes/dark-theme-v2.yaml index 813abc23..b2ffed92 100644 --- a/themes/dark-theme-v2.yaml +++ b/themes/dark-theme-v2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yuriyProgg.yuriyprogg-theme" version: "1.0.0" installs: 114 + rating: 0 + ratings: 0 author: "YuriyProgg" repo: "https://github.com/yuriyProgg/yuriyprogg-theme" url: "https://marketplace.visualstudio.com/items?itemName=yuriyProgg.yuriyprogg-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 56 black: 0 diff --git a/themes/dark-theme.yaml b/themes/dark-theme.yaml index 30963e0f..0521f488 100644 --- a/themes/dark-theme.yaml +++ b/themes/dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MarceloSoares.marcelo" version: "0.3.0" installs: 939 + rating: 0 + ratings: 0 author: "Marcelo Soares" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MarceloSoares.marcelo" diff --git a/themes/dark-v3.yaml b/themes/dark-v3.yaml index 09e54d45..ad30b97a 100644 --- a/themes/dark-v3.yaml +++ b/themes/dark-v3.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jan-PhilippDiesler.darkV3" version: "0.0.4" installs: 359 + rating: 0 + ratings: 0 author: "Jan-Philipp Diesler" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Jan-PhilippDiesler.darkV3" diff --git a/themes/dark-vibes.yaml b/themes/dark-vibes.yaml index 0cfe0de9..3be3481c 100644 --- a/themes/dark-vibes.yaml +++ b/themes/dark-vibes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rishabkumar.dark-vibes-theme" version: "0.1.3" installs: 81 + rating: 0 + ratings: 0 author: "Rishab Kumar" repo: "https://github.com/rishabkumar7/dark-vibes" url: "https://marketplace.visualstudio.com/items?itemName=rishabkumar.dark-vibes-theme" diff --git a/themes/dark-visual-studio.yaml b/themes/dark-visual-studio.yaml index 77459c52..ccf931a0 100644 --- a/themes/dark-visual-studio.yaml +++ b/themes/dark-visual-studio.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yuriyProgg.yuriyprogg-theme" version: "1.0.0" installs: 114 + rating: 0 + ratings: 0 author: "YuriyProgg" repo: "https://github.com/yuriyProgg/yuriyprogg-theme" url: "https://marketplace.visualstudio.com/items?itemName=yuriyProgg.yuriyprogg-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 54.9 black: 0 diff --git a/themes/dark-with-blue.yaml b/themes/dark-with-blue.yaml new file mode 100644 index 00000000..8913d1b6 --- /dev/null +++ b/themes/dark-with-blue.yaml @@ -0,0 +1,49 @@ +name: "dark-with-blue" +source: + marketplace_id: "nicolaslimaaaa.dark-with-blue" + version: "0.0.1" + installs: 118 + author: "nicolaslimaaaa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=nicolaslimaaaa.dark-with-blue" +colors: + bg: "#000203" + fg: "#0EA5E9" + black: "#565454" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#B0B0B0" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 219 + contrast: + fg: 49 + black: 15.9 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 59.5 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/dark-wolf.yaml b/themes/dark-wolf.yaml index 65aa8361..d39cf9c4 100644 --- a/themes/dark-wolf.yaml +++ b/themes/dark-wolf.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ThiagoSaytson.dark-wolf" version: "1.0.1" installs: 1366 + rating: 0 + ratings: 0 author: "Thiago Saytson" repo: "https://github.com/TSaytson/Dark-Wolf-theme" url: "https://marketplace.visualstudio.com/items?itemName=ThiagoSaytson.dark-wolf" diff --git a/themes/dark-yellow-flat.yaml b/themes/dark-yellow-flat.yaml index 753cdaf4..ef607969 100644 --- a/themes/dark-yellow-flat.yaml +++ b/themes/dark-yellow-flat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jannisberndt.dark-orange" version: "0.4.0" installs: 21524 + rating: 5 + ratings: 1 author: "Jannis Berndt" repo: "https://github.com/jb3rndt/dark-orange" url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" diff --git a/themes/dark.yaml b/themes/dark.yaml index 68abc5ef..f2fb2654 100644 --- a/themes/dark.yaml +++ b/themes/dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Cleo.cleo" version: "0.1.7" installs: 1576 + rating: 3.25 + ratings: 4 author: "Cleo" repo: "https://github.com/FabioKaelin/cleo-vscode-extension" url: "https://marketplace.visualstudio.com/items?itemName=Cleo.cleo" diff --git a/themes/darka.yaml b/themes/darka.yaml index 6f737c83..d8f3089b 100644 --- a/themes/darka.yaml +++ b/themes/darka.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ManuCodes.bits" version: "1.0.3" installs: 1500 + rating: 5 + ratings: 1 author: "Manu Codes" repo: "https://github.com/manudevcode/bits-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ManuCodes.bits" diff --git a/themes/darkalchemy-basic.yaml b/themes/darkalchemy-basic.yaml index 9de8d587..0852726d 100644 --- a/themes/darkalchemy-basic.yaml +++ b/themes/darkalchemy-basic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkAlchemy.darkalchemy" version: "0.0.3" installs: 576 + rating: 5 + ratings: 2 author: "Dark Alchemy" repo: "https://github.com/dark-alchemy/darkalchemy-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkAlchemy.darkalchemy" diff --git a/themes/darkasp.yaml b/themes/darkasp.yaml index ebeadaf1..0dd6ceb6 100644 --- a/themes/darkasp.yaml +++ b/themes/darkasp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aspeditor.asp-language-editor-dlv2" version: "0.1.5" installs: 2189 + rating: 5 + ratings: 1 author: "aspeditor" repo: "https://github.com/pierpaolosestito-dev/ASPEditorPlugin" url: "https://marketplace.visualstudio.com/items?itemName=aspeditor.asp-language-editor-dlv2" diff --git a/themes/darkblue-theme-official.yaml b/themes/darkblue-theme-official.yaml new file mode 100644 index 00000000..72c5edd1 --- /dev/null +++ b/themes/darkblue-theme-official.yaml @@ -0,0 +1,49 @@ +name: "DarkBlue Theme Official" +source: + marketplace_id: "sanferreira.sanferreira-theme-dark-blue" + version: "1.0.1" + installs: 76 + author: "sanferreira" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sanferreira.sanferreira-theme-dark-blue" +colors: + bg: "#0C202A" + fg: "#CF7A40" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 232 + contrast: + fg: 40.7 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.2 diff --git a/themes/darkblue-theme.yaml b/themes/darkblue-theme.yaml index 63abac77..bd9f90f4 100644 --- a/themes/darkblue-theme.yaml +++ b/themes/darkblue-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guicastro13.onebitcode-theme" version: "0.0.5" installs: 2293 + rating: 5 + ratings: 2 author: "guicastro13" repo: "https://github.com/guicastro13/onebitcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" diff --git a/themes/darkbubble.yaml b/themes/darkbubble.yaml index 7e4c5f4a..ede3ccdc 100644 --- a/themes/darkbubble.yaml +++ b/themes/darkbubble.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rwbyc.darkbubble" version: "0.0.2" installs: 37 + rating: 0 + ratings: 0 author: "rwbyc" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rwbyc.darkbubble" diff --git a/themes/darkbutter.yaml b/themes/darkbutter.yaml index 7751c930..843dd061 100644 --- a/themes/darkbutter.yaml +++ b/themes/darkbutter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SaiRohith.DarkButter" version: "0.0.8" installs: 2977 + rating: 5 + ratings: 2 author: "SaiRohith" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SaiRohith.DarkButter" diff --git a/themes/darkdarkdark.yaml b/themes/darkdarkdark.yaml index 7c3089c6..4fca814d 100644 --- a/themes/darkdarkdark.yaml +++ b/themes/darkdarkdark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nicolelele.darkdarkdark" version: "1.0.5" installs: 21 + rating: 5 + ratings: 1 author: "nicolelele" repo: "https://github.com/npcnicolelele/darkdarkdark-theme" url: "https://marketplace.visualstudio.com/items?itemName=nicolelele.darkdarkdark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 78.4 black: 0 diff --git a/themes/darker-b.yaml b/themes/darker-b.yaml new file mode 100644 index 00000000..2635a0cc --- /dev/null +++ b/themes/darker-b.yaml @@ -0,0 +1,52 @@ +name: "Darker-B" +source: + marketplace_id: "zarkooi.darker-b" + version: "0.0.3" + installs: 378 + rating: 0 + ratings: 0 + author: "Joao Pedro Lima Pereira" + repo: "https://github.com/JoaoPDeveloper/darkerstHours-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zarkooi.darker-b" +colors: + bg: "#151432" + fg: "#00FF28" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 282 + pair: null + contrast: + fg: 85.4 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 106.7 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/darker-monokai-gold.yaml b/themes/darker-monokai-gold.yaml new file mode 100644 index 00000000..90873e9a --- /dev/null +++ b/themes/darker-monokai-gold.yaml @@ -0,0 +1,52 @@ +name: "Darker + Monokai (Gold)" +source: + marketplace_id: "kylesgl.dark-monokai" + version: "2.0.4" + installs: 1289 + rating: 0 + ratings: 0 + author: "kylesgl" + repo: "https://github.com/kylesgl/dark-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=kylesgl.dark-monokai" +colors: + bg: "#1B1B1B" + fg: "#CECECE" + black: "#000000" + red: "#FF7878" + green: "#AAE682" + yellow: "#FFDC96" + blue: "#00B1FF" + magenta: "#FF50FF" + cyan: "#00DCDC" + white: "#CECECE" + brightBlack: "#7C7C7C" + brightRed: "#FF7878" + brightGreen: "#AAE682" + brightYellow: "#FFDC96" + brightBlue: "#00B1FF" + brightMagenta: "#FF50FF" + brightCyan: "#00DCDC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 75.4 + black: 0 + red: 51 + green: 80 + yellow: 86.6 + blue: 54 + magenta: 49.7 + cyan: 71.3 + white: 75.4 + brightBlack: 31.4 + brightRed: 51 + brightGreen: 80 + brightYellow: 86.6 + brightBlue: 54 + brightMagenta: 49.7 + brightCyan: 71.3 + brightWhite: 106.4 diff --git a/themes/darker-solarized.yaml b/themes/darker-solarized.yaml index c053e6e6..5e278a56 100644 --- a/themes/darker-solarized.yaml +++ b/themes/darker-solarized.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "soklaysam.darker-solarized" version: "1.0.0" installs: 1324 + rating: 5 + ratings: 1 author: "SokLay Sam" repo: "https://github.com/soklaysam/vscode-darker-solarized" url: "https://marketplace.visualstudio.com/items?itemName=soklaysam.darker-solarized" diff --git a/themes/darker-than-black.yaml b/themes/darker-than-black.yaml index af80538e..ada802a4 100644 --- a/themes/darker-than-black.yaml +++ b/themes/darker-than-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" installs: 81 + rating: 5 + ratings: 2 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" diff --git a/themes/darkest.yaml b/themes/darkest.yaml index e08ffbfe..267ba11f 100644 --- a/themes/darkest.yaml +++ b/themes/darkest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RakeshKannaS.darkest-theme" version: "0.0.2" installs: 441 + rating: 0 + ratings: 0 author: "Rakesh Kanna S" repo: "https://github.com/rakeshkanna-rk/darkest" url: "https://marketplace.visualstudio.com/items?itemName=RakeshKannaS.darkest-theme" diff --git a/themes/darkestside-theme.yaml b/themes/darkestside-theme.yaml index f6afa729..80429d35 100644 --- a/themes/darkestside-theme.yaml +++ b/themes/darkestside-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YousefAyash.DarkestSide" version: "1.0.2" installs: 251 + rating: 0 + ratings: 0 author: "Yousef Ayash" repo: "https://github.com/Yousef-Ayash/Darkestside" url: "https://marketplace.visualstudio.com/items?itemName=YousefAyash.DarkestSide" diff --git a/themes/darkfontenelestheme.yaml b/themes/darkfontenelestheme.yaml index e39127e8..0bde81ac 100644 --- a/themes/darkfontenelestheme.yaml +++ b/themes/darkfontenelestheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HenriqueDark.henriquedark" version: "0.0.1" installs: 100 + rating: 0 + ratings: 0 author: "HenriqueDark" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HenriqueDark.henriquedark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 74.4 black: 0 diff --git a/themes/darkfusion.yaml b/themes/darkfusion.yaml index 4d200a40..5a70005f 100644 --- a/themes/darkfusion.yaml +++ b/themes/darkfusion.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sahilmondal.dark-fusion-theme" version: "1.0.0" installs: 121 + rating: 0 + ratings: 0 author: "Sahil Mondal" repo: "https://github.com/sahilmondal/darkFusion-vscode" url: "https://marketplace.visualstudio.com/items?itemName=sahilmondal.dark-fusion-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "purple" hue: 280 + pair: null contrast: fg: 55.4 black: 0 diff --git a/themes/darkheist.yaml b/themes/darkheist.yaml index 7592b248..41c15282 100644 --- a/themes/darkheist.yaml +++ b/themes/darkheist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EliHeist.darkheist" version: "0.0.1" installs: 58 + rating: 0 + ratings: 0 author: "Eli Heist" repo: null url: "https://marketplace.visualstudio.com/items?itemName=EliHeist.darkheist" diff --git a/themes/darkish.yaml b/themes/darkish.yaml index 2f28101a..cb62a46d 100644 --- a/themes/darkish.yaml +++ b/themes/darkish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SylvioRandrianarisata.darkish-gray" version: "0.0.1" installs: 781 + rating: 0 + ratings: 0 author: "Sylvio Randrianarisata" repo: "https://github.com/Microsoft/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=SylvioRandrianarisata.darkish-gray" diff --git a/themes/darkit-astral.yaml b/themes/darkit-astral.yaml index eed10aec..4aa3ea1a 100644 --- a/themes/darkit-astral.yaml +++ b/themes/darkit-astral.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mrheio.darkit" version: "27.0.1" installs: 310 + rating: 5 + ratings: 1 author: "mrheio" repo: "https://github.com/mrheio/vsc-theme-darkit" url: "https://marketplace.visualstudio.com/items?itemName=mrheio.darkit" diff --git a/themes/darkj.yaml b/themes/darkj.yaml index e393644a..0313670c 100644 --- a/themes/darkj.yaml +++ b/themes/darkj.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diego-gh.darkj" version: "0.0.1" installs: 328 + rating: 0 + ratings: 0 author: "Diego-gh" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Diego-gh.darkj" diff --git a/themes/darkknight.yaml b/themes/darkknight.yaml index bf051917..e639ff1b 100644 --- a/themes/darkknight.yaml +++ b/themes/darkknight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PyJOJO.pycodejojo" version: "2025.11.13" installs: 121 + rating: 0 + ratings: 0 author: "PyJOJO" repo: "https://github.com/SakuraMYK/PyCodeJOJO" url: "https://marketplace.visualstudio.com/items?itemName=PyJOJO.pycodejojo" diff --git a/themes/darklimeteal.yaml b/themes/darklimeteal.yaml index 1670fa26..96c0739f 100644 --- a/themes/darklimeteal.yaml +++ b/themes/darklimeteal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ReubenMarcBraganca.darklimeteal" version: "0.0.6" installs: 20 + rating: 0 + ratings: 0 author: "ReubenMarcBraganca" repo: "https://github.com/ReubenMarc/theme" url: "https://marketplace.visualstudio.com/items?itemName=ReubenMarcBraganca.darklimeteal" diff --git a/themes/darklover.yaml b/themes/darklover.yaml index 4cfaf7cb..0e3a87ae 100644 --- a/themes/darklover.yaml +++ b/themes/darklover.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rayan2228.darkLover" version: "1.0.0" installs: 341 + rating: 5 + ratings: 2 author: "rayan2228" repo: "https://github.com/rayan2228/darkLover" url: "https://marketplace.visualstudio.com/items?itemName=rayan2228.darkLover" diff --git a/themes/darkly-theme.yaml b/themes/darkly-theme.yaml index 24f588a3..f82a97a1 100644 --- a/themes/darkly-theme.yaml +++ b/themes/darkly-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YoussefMoussaoui.darkly" version: "1.1.8" installs: 164 + rating: 0 + ratings: 0 author: "Youssef Moussaoui" repo: "https://github.com/youssefm/darkly-theme" url: "https://marketplace.visualstudio.com/items?itemName=YoussefMoussaoui.darkly" diff --git a/themes/darkly.yaml b/themes/darkly.yaml index 376dc97f..5ff78b4f 100644 --- a/themes/darkly.yaml +++ b/themes/darkly.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AyushL.darkly-theme" version: "1.1.8" installs: 927 + rating: 5 + ratings: 1 author: "Ayush Lal" repo: "https://github.com/ayush-lal/darkly-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=AyushL.darkly-theme" diff --git a/themes/darkness-color-theme.yaml b/themes/darkness-color-theme.yaml index 24445de5..98dca309 100644 --- a/themes/darkness-color-theme.yaml +++ b/themes/darkness-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "digitalspacestudio.digitalspacestdio-darkness" version: "0.0.7" installs: 135 + rating: 0 + ratings: 0 author: "digitalspacestudio" repo: "https://github.com/digitalspacestdio/vscode-darkness-theme" url: "https://marketplace.visualstudio.com/items?itemName=digitalspacestudio.digitalspacestdio-darkness" diff --git a/themes/darkness-of-my-soul.yaml b/themes/darkness-of-my-soul.yaml index 80a57ec2..ea742e14 100644 --- a/themes/darkness-of-my-soul.yaml +++ b/themes/darkness-of-my-soul.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rnmazouz.darkness-of-my-soul" version: "1.1.0" installs: 127 + rating: 5 + ratings: 1 author: "rnmazouz" repo: "https://github.com/rayan-mazouz/darkness_of_my_soul" url: "https://marketplace.visualstudio.com/items?itemName=rnmazouz.darkness-of-my-soul" diff --git a/themes/darkoo.yaml b/themes/darkoo.yaml index 1019dc6f..c32a2980 100644 --- a/themes/darkoo.yaml +++ b/themes/darkoo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bambooyuh.darkoo" version: "0.3.8" installs: 55 + rating: 0 + ratings: 0 author: "bambooyuh" repo: "https://github.com/roachj9/darkoo" url: "https://marketplace.visualstudio.com/items?itemName=bambooyuh.darkoo" diff --git a/themes/darkorange.yaml b/themes/darkorange.yaml index 966524b2..de40554a 100644 --- a/themes/darkorange.yaml +++ b/themes/darkorange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BasitTahir.DarkOrange" version: "1.0.1" installs: 72 + rating: 0 + ratings: 0 author: "Abdul Basit" repo: null url: "https://marketplace.visualstudio.com/items?itemName=BasitTahir.DarkOrange" diff --git a/themes/darkpinkpro.yaml b/themes/darkpinkpro.yaml index ab52b4e8..a7ece380 100644 --- a/themes/darkpinkpro.yaml +++ b/themes/darkpinkpro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AhmedSaid.darkpinkpro" version: "0.3.4" installs: 12754 + rating: 4.9 + ratings: 10 author: "Ahmed Said" repo: "https://github.com/AhmeddSaid/darkpinkpro" url: "https://marketplace.visualstudio.com/items?itemName=AhmedSaid.darkpinkpro" diff --git a/themes/darkplastic.yaml b/themes/darkplastic.yaml index 15089e90..c91cc5bd 100644 --- a/themes/darkplastic.yaml +++ b/themes/darkplastic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "StefanRemberg.darkplastic-vc" version: "1.1.3" installs: 285 + rating: 5 + ratings: 3 author: "Stefan Remberg" repo: "https://github.com/remberg/DarkPlastik-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=StefanRemberg.darkplastic-vc" diff --git a/themes/darkpurple.yaml b/themes/darkpurple.yaml index 9b2d184e..3447237e 100644 --- a/themes/darkpurple.yaml +++ b/themes/darkpurple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bakrimoharram.purple-dark-theme" version: "0.0.4" installs: 150 + rating: 0 + ratings: 0 author: "bakrimoharram" repo: "https://github.com/bakrimoharram/darkpurple-theme" url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.purple-dark-theme" diff --git a/themes/darkquark.yaml b/themes/darkquark.yaml index 847ea289..55a8224f 100644 --- a/themes/darkquark.yaml +++ b/themes/darkquark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SatyamRana.the-prime-themes" version: "1.0.2" installs: 130 + rating: 0 + ratings: 0 author: "Satyam Rana" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SatyamRana.the-prime-themes" diff --git a/themes/darkr-green.yaml b/themes/darkr-green.yaml index 65f417dd..3f56881f 100644 --- a/themes/darkr-green.yaml +++ b/themes/darkr-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RyanCraigMartin.darkr" version: "0.0.5" installs: 69 + rating: 5 + ratings: 1 author: "Ryan Craig Martin" repo: "https://github.com/ryancraigmartin/Darkr" url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" diff --git a/themes/darkred.yaml b/themes/darkred.yaml index 96489556..f4b0e967 100644 --- a/themes/darkred.yaml +++ b/themes/darkred.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xXkkmXx.DarkPinkRed" version: "0.0.1" installs: 10 + rating: 0 + ratings: 0 author: "xXkkmXx" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xXkkmXx.DarkPinkRed" diff --git a/themes/darkroom.yaml b/themes/darkroom.yaml index 35893a6f..218a1eca 100644 --- a/themes/darkroom.yaml +++ b/themes/darkroom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LokeshKavisth.darkroom" version: "0.0.6" installs: 597 + rating: 0 + ratings: 0 author: "Lokesh Kavisth" repo: "https://github.com/lokeshkavisth/darkroom" url: "https://marketplace.visualstudio.com/items?itemName=LokeshKavisth.darkroom" diff --git a/themes/darkroy-night.yaml b/themes/darkroy-night.yaml index 26fec736..4831da1e 100644 --- a/themes/darkroy-night.yaml +++ b/themes/darkroy-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Royce.darkroy" version: "0.0.2" installs: 135 + rating: 0 + ratings: 0 author: "Royce" repo: "https://github.com/royshemtov13/DarkRoy" url: "https://marketplace.visualstudio.com/items?itemName=Royce.darkroy" diff --git a/themes/darkroy.yaml b/themes/darkroy.yaml index b520864e..679a1848 100644 --- a/themes/darkroy.yaml +++ b/themes/darkroy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Royce.darkroy" version: "0.0.2" installs: 135 + rating: 0 + ratings: 0 author: "Royce" repo: "https://github.com/royshemtov13/DarkRoy" url: "https://marketplace.visualstudio.com/items?itemName=Royce.darkroy" diff --git a/themes/darkrr-green.yaml b/themes/darkrr-green.yaml index c9b582ac..a9a57aad 100644 --- a/themes/darkrr-green.yaml +++ b/themes/darkrr-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RyanCraigMartin.darkr" version: "0.0.5" installs: 69 + rating: 5 + ratings: 1 author: "Ryan Craig Martin" repo: "https://github.com/ryancraigmartin/Darkr" url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" diff --git a/themes/darkrrr-green.yaml b/themes/darkrrr-green.yaml index e7d0e08b..580d121c 100644 --- a/themes/darkrrr-green.yaml +++ b/themes/darkrrr-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RyanCraigMartin.darkr" version: "0.0.5" installs: 69 + rating: 5 + ratings: 1 author: "Ryan Craig Martin" repo: "https://github.com/ryancraigmartin/Darkr" url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" diff --git a/themes/darkrrrr-green.yaml b/themes/darkrrrr-green.yaml index 243abc5d..b47b0415 100644 --- a/themes/darkrrrr-green.yaml +++ b/themes/darkrrrr-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RyanCraigMartin.darkr" version: "0.0.5" installs: 69 + rating: 5 + ratings: 1 author: "Ryan Craig Martin" repo: "https://github.com/ryancraigmartin/Darkr" url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" diff --git a/themes/darkrrrrr-green.yaml b/themes/darkrrrrr-green.yaml index 491c1eaa..9db11329 100644 --- a/themes/darkrrrrr-green.yaml +++ b/themes/darkrrrrr-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RyanCraigMartin.darkr" version: "0.0.5" installs: 69 + rating: 5 + ratings: 1 author: "Ryan Craig Martin" repo: "https://github.com/ryancraigmartin/Darkr" url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" diff --git a/themes/darksian-theme.yaml b/themes/darksian-theme.yaml new file mode 100644 index 00000000..cfb36855 --- /dev/null +++ b/themes/darksian-theme.yaml @@ -0,0 +1,52 @@ +name: "Darksian-Theme" +source: + marketplace_id: "Ruan-Amorim.darksian-theme" + version: "0.0.2" + installs: 71 + rating: 0 + ratings: 0 + author: "Ruan Amorim" + repo: "https://github.com/ruanamorimc/darksian-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Ruan-Amorim.darksian-theme" +colors: + bg: "#191A1F" + fg: "#FFE9EF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 95.6 + black: 0 + red: 26.4 + green: 52.6 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.7 diff --git a/themes/darkside-contrast.yaml b/themes/darkside-contrast.yaml index 487b7006..19233c85 100644 --- a/themes/darkside-contrast.yaml +++ b/themes/darkside-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/darkside-light.yaml b/themes/darkside-light.yaml index 57a11101..8aa9a9c2 100644 --- a/themes/darkside-light.yaml +++ b/themes/darkside-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/darkside.yaml b/themes/darkside.yaml index 879f1447..42bd113f 100644 --- a/themes/darkside.yaml +++ b/themes/darkside.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/darkspace.yaml b/themes/darkspace.yaml index 882bfdb8..40b5f0f0 100644 --- a/themes/darkspace.yaml +++ b/themes/darkspace.yaml @@ -1,13 +1,15 @@ name: "DarkSpace" source: - marketplace_id: "YesCode.only-dark-theme" - version: "0.0.16" - installs: 383 + marketplace_id: "YesCode.grayspace" + version: "0.0.23" + installs: 768 + rating: 0 + ratings: 0 author: "YesCode" - repo: "https://github.com/yesomac/only_dark" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" + repo: "https://github.com/yesomac/platzi_theme" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.grayspace" colors: - bg: "#04060A" + bg: "#212121" fg: "#EEFFFF" black: "#1D2021" red: "#FB543F" @@ -19,7 +21,7 @@ colors: white: "#A89984" brightBlack: "#665C54" brightRed: "#FB543F" - brightGreen: "#A2F1F7" + brightGreen: "#C1A2F7" brightYellow: "#FFCC80" brightBlue: "#0D6678" brightMagenta: "#8F4673" @@ -28,23 +30,23 @@ colors: meta: mode: "dark" accent: "orange" - hue: 259 + hue: null pair: null contrast: - fg: 105.5 + fg: 103.3 black: 0 - red: 42.9 - green: 61.9 - yellow: 74 - blue: 48.5 - magenta: 20.5 - cyan: 50.4 - white: 48.2 - brightBlack: 19.5 - brightRed: 42.9 - brightGreen: 90.2 - brightYellow: 80.7 - brightBlue: 19.7 - brightMagenta: 20.5 - brightCyan: 50.4 - brightWhite: 99.8 + red: 40.7 + green: 59.7 + yellow: 71.8 + blue: 46.2 + magenta: 18.3 + cyan: 48.2 + white: 46 + brightBlack: 17.3 + brightRed: 40.7 + brightGreen: 57.9 + brightYellow: 78.5 + brightBlue: 17.5 + brightMagenta: 18.3 + brightCyan: 48.2 + brightWhite: 97.6 diff --git a/themes/darkstar.yaml b/themes/darkstar.yaml index 20608ae0..af6e7384 100644 --- a/themes/darkstar.yaml +++ b/themes/darkstar.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkStar.darkstar" version: "0.0.5" installs: 1167 + rating: 5 + ratings: 1 author: "DarkStar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DarkStar.darkstar" diff --git a/themes/darkstash.yaml b/themes/darkstash.yaml index 68a03847..7cab57cb 100644 --- a/themes/darkstash.yaml +++ b/themes/darkstash.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HurrellT.theme-darkstash" version: "1.0.0" installs: 14 + rating: 0 + ratings: 0 author: "Tomas Hurrell" repo: "https://github.com/HurrellT/theme-darkstash" url: "https://marketplace.visualstudio.com/items?itemName=HurrellT.theme-darkstash" diff --git a/themes/darktra.yaml b/themes/darktra.yaml index 7b4d59e2..dc93a9d2 100644 --- a/themes/darktra.yaml +++ b/themes/darktra.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fajismohd.darktra" version: "1.4.0" installs: 922 + rating: 5 + ratings: 1 author: "fajis mohd" repo: "https://github.com/fajismohd/Darktra" url: "https://marketplace.visualstudio.com/items?itemName=fajismohd.darktra" diff --git a/themes/darkula.yaml b/themes/darkula.yaml index 76e78d07..efbf7a6f 100644 --- a/themes/darkula.yaml +++ b/themes/darkula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JorgeDorio.darkula-theme" version: "0.0.1" installs: 3699 + rating: 0 + ratings: 0 author: "Jorge Dorio" repo: "https://github.com/JorgeDorio/darkula" url: "https://marketplace.visualstudio.com/items?itemName=JorgeDorio.darkula-theme" diff --git a/themes/darkuto.yaml b/themes/darkuto.yaml index f7b474e7..08ab0476 100644 --- a/themes/darkuto.yaml +++ b/themes/darkuto.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AmreshMaurya1234.darkuto-theme" version: "0.0.1" installs: 197 + rating: 0 + ratings: 0 author: "ursamresh" repo: "https://github.com/ursamresh/darkuto" url: "https://marketplace.visualstudio.com/items?itemName=AmreshMaurya1234.darkuto-theme" diff --git a/themes/darkvoid-ocean.yaml b/themes/darkvoid-ocean.yaml index 4d9f119a..d04149d2 100644 --- a/themes/darkvoid-ocean.yaml +++ b/themes/darkvoid-ocean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Aliqyan-21.darkvoid" version: "2.1.1" installs: 517 + rating: 5 + ratings: 1 author: "darkvoid" repo: "https://github.com/darkvoid-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=Aliqyan-21.darkvoid" diff --git a/themes/darkvoid.yaml b/themes/darkvoid.yaml index 9707cd6e..6a283a4e 100644 --- a/themes/darkvoid.yaml +++ b/themes/darkvoid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Aliqyan-21.darkvoid" version: "2.1.1" installs: 517 + rating: 5 + ratings: 1 author: "darkvoid" repo: "https://github.com/darkvoid-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=Aliqyan-21.darkvoid" diff --git a/themes/darkwaves-ashen-core.yaml b/themes/darkwaves-ashen-core.yaml index 9274fd4b..329c7e72 100644 --- a/themes/darkwaves-ashen-core.yaml +++ b/themes/darkwaves-ashen-core.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" installs: 678 + rating: 5 + ratings: 3 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" diff --git a/themes/darkwaves-celestial-mist.yaml b/themes/darkwaves-celestial-mist.yaml index f1eb612a..2c0e5abb 100644 --- a/themes/darkwaves-celestial-mist.yaml +++ b/themes/darkwaves-celestial-mist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" installs: 678 + rating: 5 + ratings: 3 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" diff --git a/themes/darkwaves-cloud-lands.yaml b/themes/darkwaves-cloud-lands.yaml index 835bdc4b..ea2be4f3 100644 --- a/themes/darkwaves-cloud-lands.yaml +++ b/themes/darkwaves-cloud-lands.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" installs: 678 + rating: 5 + ratings: 3 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" diff --git a/themes/darkwaves-driftwood.yaml b/themes/darkwaves-driftwood.yaml index af5300fb..9ea6caac 100644 --- a/themes/darkwaves-driftwood.yaml +++ b/themes/darkwaves-driftwood.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" installs: 678 + rating: 5 + ratings: 3 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" diff --git a/themes/darkwaves-forge.yaml b/themes/darkwaves-forge.yaml index f9a73e65..4b188b92 100644 --- a/themes/darkwaves-forge.yaml +++ b/themes/darkwaves-forge.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" installs: 678 + rating: 5 + ratings: 3 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" diff --git a/themes/darkwaves-gray-elegance.yaml b/themes/darkwaves-gray-elegance.yaml index 93327760..b355eea6 100644 --- a/themes/darkwaves-gray-elegance.yaml +++ b/themes/darkwaves-gray-elegance.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" installs: 678 + rating: 5 + ratings: 3 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" diff --git a/themes/darkwaves-nebula.yaml b/themes/darkwaves-nebula.yaml index 14753b0b..3b388a56 100644 --- a/themes/darkwaves-nebula.yaml +++ b/themes/darkwaves-nebula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" installs: 678 + rating: 5 + ratings: 3 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" diff --git a/themes/darkwaves-obsidian.yaml b/themes/darkwaves-obsidian.yaml index 6f352256..d51dbfd9 100644 --- a/themes/darkwaves-obsidian.yaml +++ b/themes/darkwaves-obsidian.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" installs: 678 + rating: 5 + ratings: 3 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" diff --git a/themes/darkwaves-spectrum.yaml b/themes/darkwaves-spectrum.yaml index 4077baf5..927cbae8 100644 --- a/themes/darkwaves-spectrum.yaml +++ b/themes/darkwaves-spectrum.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "spacelaxy.spacelaxy-darkwaves" version: "0.0.8" installs: 678 + rating: 5 + ratings: 3 author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" diff --git a/themes/darkwind-default.yaml b/themes/darkwind-default.yaml index c6d99c04..8c1779fa 100644 --- a/themes/darkwind-default.yaml +++ b/themes/darkwind-default.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BlakeDev.darkwind" version: "1.0.1" installs: 632 + rating: 5 + ratings: 1 author: "BlakeDev" repo: "https://github.com/BlakeCampbells/Darkwind" url: "https://marketplace.visualstudio.com/items?itemName=BlakeDev.darkwind" diff --git a/themes/darky-purple-storm.yaml b/themes/darky-purple-storm.yaml index fdf4e1a2..bc92ce88 100644 --- a/themes/darky-purple-storm.yaml +++ b/themes/darky-purple-storm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexanderAlekseenko.darky-purple-theme" version: "1.4.0" installs: 11700 + rating: 5 + ratings: 1 author: "Alexander Alekseenko" repo: "https://github.com/Akaike0/vsc-darky-purple-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.darky-purple-theme" diff --git a/themes/darky-purple.yaml b/themes/darky-purple.yaml index 050e9a5c..543b549e 100644 --- a/themes/darky-purple.yaml +++ b/themes/darky-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexanderAlekseenko.darky-purple-theme" version: "1.4.0" installs: 11700 + rating: 5 + ratings: 1 author: "Alexander Alekseenko" repo: "https://github.com/Akaike0/vsc-darky-purple-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.darky-purple-theme" diff --git a/themes/darkyamaris.yaml b/themes/darkyamaris.yaml index 90f364bb..92ef0499 100644 --- a/themes/darkyamaris.yaml +++ b/themes/darkyamaris.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "indiamaris.darkyamaris" version: "0.0.1" installs: 20 + rating: 0 + ratings: 0 author: "indiamaris" repo: null url: "https://marketplace.visualstudio.com/items?itemName=indiamaris.darkyamaris" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 43.6 black: 0 diff --git a/themes/darth-insidious.yaml b/themes/darth-insidious.yaml index 1e710751..436b3827 100644 --- a/themes/darth-insidious.yaml +++ b/themes/darth-insidious.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Dutchorange.space-wars" version: "1.1.7" installs: 1711 + rating: 5 + ratings: 3 author: "Dutchorange" repo: "https://github.com/entropy-glitch/space-wars" url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" diff --git a/themes/darth-invader.yaml b/themes/darth-invader.yaml index 1c1cfebb..00473beb 100644 --- a/themes/darth-invader.yaml +++ b/themes/darth-invader.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Dutchorange.space-wars" version: "1.1.7" installs: 1711 + rating: 5 + ratings: 3 author: "Dutchorange" repo: "https://github.com/entropy-glitch/space-wars" url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" diff --git a/themes/darthbuddy.yaml b/themes/darthbuddy.yaml index c8450873..4f50ac35 100644 --- a/themes/darthbuddy.yaml +++ b/themes/darthbuddy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "darthp87.darthbuddy" version: "1.0.0" installs: 64 + rating: 0 + ratings: 0 author: "darthp87" repo: null url: "https://marketplace.visualstudio.com/items?itemName=darthp87.darthbuddy" diff --git a/themes/dartpad.yaml b/themes/dartpad.yaml new file mode 100644 index 00000000..be7eb304 --- /dev/null +++ b/themes/dartpad.yaml @@ -0,0 +1,52 @@ +name: "DartPad" +source: + marketplace_id: "Alejandro-FA.vscode-theme-dartpad" + version: "0.5.4" + installs: 5315 + rating: 5 + ratings: 1 + author: "Alejandro-FA" + repo: "https://github.com/Alejandro-FA/vscode-theme-dartpad" + url: "https://marketplace.visualstudio.com/items?itemName=Alejandro-FA.vscode-theme-dartpad" +colors: + bg: "#0E161F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 252 + pair: null + contrast: + fg: 107 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.2 diff --git a/themes/daru.yaml b/themes/daru.yaml index 9afef56d..c58d0af3 100644 --- a/themes/daru.yaml +++ b/themes/daru.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daruhan.daru" version: "0.0.1" installs: 138 + rating: 0 + ratings: 0 author: "daruhan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=daruhan.daru" diff --git a/themes/darwin.yaml b/themes/darwin.yaml index 8718abf3..81c75e0e 100644 --- a/themes/darwin.yaml +++ b/themes/darwin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chriskseidel.darwin" version: "1.5.1" installs: 12800 + rating: 4.86 + ratings: 7 author: "Chris K. Seidel" repo: "https://chriskseidel.visualstudio.com/_git/Darwin" url: "https://marketplace.visualstudio.com/items?itemName=chriskseidel.darwin" diff --git a/themes/dashxe.yaml b/themes/dashxe.yaml index 24369998..e3648702 100644 --- a/themes/dashxe.yaml +++ b/themes/dashxe.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EmilAndersson.dashxe" version: "0.0.1" installs: 186 + rating: 0 + ratings: 0 author: "Emil Andersson" repo: "https://github.com/emilanderss0n/dashxe-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=EmilAndersson.dashxe" diff --git a/themes/davi-lacerda-dark.yaml b/themes/davi-lacerda-dark.yaml index 11fb40d2..b42c113e 100644 --- a/themes/davi-lacerda-dark.yaml +++ b/themes/davi-lacerda-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DaviLacerda.davi-lacerda-themes" version: "0.2.1" installs: 124 + rating: 0 + ratings: 0 author: "Davi Lacerda" repo: "https://github.com/davilacerda/davi-lacerda-themes" url: "https://marketplace.visualstudio.com/items?itemName=DaviLacerda.davi-lacerda-themes" diff --git a/themes/davi-lacerda-light.yaml b/themes/davi-lacerda-light.yaml index 4389ff6c..c53cb165 100644 --- a/themes/davi-lacerda-light.yaml +++ b/themes/davi-lacerda-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DaviLacerda.davi-lacerda-themes" version: "0.2.1" installs: 124 + rating: 0 + ratings: 0 author: "Davi Lacerda" repo: "https://github.com/davilacerda/davi-lacerda-themes" url: "https://marketplace.visualstudio.com/items?itemName=DaviLacerda.davi-lacerda-themes" diff --git a/themes/david.yaml b/themes/david.yaml index 86aa2ff2..29d15b4c 100644 --- a/themes/david.yaml +++ b/themes/david.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "batdavid70.david" version: "0.0.1" installs: 234 + rating: 0 + ratings: 0 author: "batdavid70" repo: null url: "https://marketplace.visualstudio.com/items?itemName=batdavid70.david" diff --git a/themes/daviontheme.yaml b/themes/daviontheme.yaml index d27844c9..43bf3d69 100644 --- a/themes/daviontheme.yaml +++ b/themes/daviontheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MahdiAlavitabar.daviontheme" version: "1.1.4" installs: 104 + rating: 5 + ratings: 3 author: "Mahdi Alavitabar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MahdiAlavitabar.daviontheme" diff --git a/themes/dawnblush.yaml b/themes/dawnblush.yaml index 9de3e861..78cb3e75 100644 --- a/themes/dawnblush.yaml +++ b/themes/dawnblush.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shurj0.dawnblush-code" version: "1.0.5" installs: 76 + rating: 0 + ratings: 0 author: "shurj0" repo: "https://github.com/shurj0/DawnBlush-code" url: "https://marketplace.visualstudio.com/items?itemName=shurj0.dawnblush-code" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/day-n-nite.yaml b/themes/day-n-nite.yaml index 598de37d..268f07be 100644 --- a/themes/day-n-nite.yaml +++ b/themes/day-n-nite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BrunoKawka.day-n-nite" version: "0.0.1" installs: 145 + rating: 0 + ratings: 0 author: "Bruno Kawka" repo: "https://github.com/letelete/day-n-nite-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BrunoKawka.day-n-nite" diff --git a/themes/day.yaml b/themes/day.yaml index 4c81a7a6..f2e505ab 100644 --- a/themes/day.yaml +++ b/themes/day.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AninhaPardini.coffee-break-theme" version: "1.5.0" installs: 835 + rating: 5 + ratings: 2 author: "Aninha Pardini" repo: "https://github.com/AninhaPardini/coffee-break-theme" url: "https://marketplace.visualstudio.com/items?itemName=AninhaPardini.coffee-break-theme" diff --git a/themes/dayfox.yaml b/themes/dayfox.yaml index ac6c2cad..5322a1fe 100644 --- a/themes/dayfox.yaml +++ b/themes/dayfox.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "michalpopek.dayfox-vsc" version: "0.1.0" installs: 1936 + rating: 5 + ratings: 2 author: "Michał Popek" repo: "https://github.com/michalpopek/dayfox-vsc" url: "https://marketplace.visualstudio.com/items?itemName=michalpopek.dayfox-vsc" diff --git a/themes/daysofwineandroses.yaml b/themes/daysofwineandroses.yaml index 6b82b3cd..4e314b8b 100644 --- a/themes/daysofwineandroses.yaml +++ b/themes/daysofwineandroses.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JohannesFreutel.daysofwineandroses" version: "1.0.5" installs: 38 + rating: 0 + ratings: 0 author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.daysofwineandroses" diff --git a/themes/dbt-dark-theme.yaml b/themes/dbt-dark-theme.yaml new file mode 100644 index 00000000..8779edc5 --- /dev/null +++ b/themes/dbt-dark-theme.yaml @@ -0,0 +1,52 @@ +name: "dbt dark theme" +source: + marketplace_id: "dbtLabsInc.dbt" + version: "0.54.0" + installs: 76805 + rating: 4.19 + ratings: 27 + author: "dbt Labs Inc" + repo: "https://github.com/dbt-labs/dbt-fusion" + url: "https://marketplace.visualstudio.com/items?itemName=dbtLabsInc.dbt" +colors: + bg: "#161514" + fg: "#F6F6F6" + black: "#2F2D2C" + red: "#F64B44" + green: "#31A753" + yellow: "#D47500" + blue: "#1894F8" + magenta: "#F83D75" + cyan: "#0BA58B" + white: "#EBE9E9" + brightBlack: "#736D6C" + brightRed: "#FF866F" + brightGreen: "#45D170" + brightYellow: "#F79900" + brightBlue: "#6AB8FF" + brightMagenta: "#FF82A1" + brightCyan: "#38CCB2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: "dbt light theme" + contrast: + fg: 101.1 + black: 0 + red: 39.6 + green: 43.4 + yellow: 40.9 + blue: 42.7 + magenta: 39.3 + cyan: 43.5 + white: 93 + brightBlack: 25.8 + brightRed: 55.1 + brightGreen: 63.8 + brightYellow: 58.3 + brightBlue: 60.1 + brightMagenta: 55.5 + brightCyan: 63 + brightWhite: 107 diff --git a/themes/dbt-fusion.yaml b/themes/dbt-fusion.yaml index 4be23bc0..bb199fc2 100644 --- a/themes/dbt-fusion.yaml +++ b/themes/dbt-fusion.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dbtLabsInc.dbt" version: "0.54.0" installs: 76805 + rating: 4.19 + ratings: 27 author: "dbt Labs Inc" repo: "https://github.com/dbt-labs/dbt-fusion" url: "https://marketplace.visualstudio.com/items?itemName=dbtLabsInc.dbt" diff --git a/themes/dbt-light-theme.yaml b/themes/dbt-light-theme.yaml new file mode 100644 index 00000000..19edf3e5 --- /dev/null +++ b/themes/dbt-light-theme.yaml @@ -0,0 +1,52 @@ +name: "dbt light theme" +source: + marketplace_id: "dbtLabsInc.dbt" + version: "0.54.0" + installs: 76805 + rating: 4.19 + ratings: 27 + author: "dbt Labs Inc" + repo: "https://github.com/dbt-labs/dbt-fusion" + url: "https://marketplace.visualstudio.com/items?itemName=dbtLabsInc.dbt" +colors: + bg: "#FDFDFD" + fg: "#1C1A19" + black: "#1C1A19" + red: "#8D0D10" + green: "#105A20" + yellow: "#AB5100" + blue: "#004895" + magenta: "#8B0839" + cyan: "#105748" + white: "#CFCDCC" + brightBlack: "#4E4A49" + brightRed: "#C42C28" + brightGreen: "#188435" + brightYellow: "#D47500" + brightBlue: "#006DCE" + brightMagenta: "#CA0356" + brightCyan: "#17806C" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: "dbt dark theme" + contrast: + fg: 103 + black: 103 + red: 89 + green: 87.3 + yellow: 74.9 + blue: 88.4 + magenta: 89 + cyan: 87.6 + white: 25.3 + brightBlack: 88.8 + brightRed: 75.3 + brightGreen: 71.5 + brightYellow: 58.8 + brightBlue: 73.5 + brightMagenta: 75 + brightCyan: 71.9 + brightWhite: 0 diff --git a/themes/dc-dark-theme.yaml b/themes/dc-dark-theme.yaml new file mode 100644 index 00000000..0fea0b2b --- /dev/null +++ b/themes/dc-dark-theme.yaml @@ -0,0 +1,50 @@ +name: "DC Dark Theme" +source: + marketplace_id: "DonavanCarvalho.dc-dark-theme" + version: "0.0.1" + installs: 315 + author: "Donavan Carvalho" + repo: "https://github.com/donavancarvalho/dc-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DonavanCarvalho.dc-dark-theme" +colors: + bg: "#292B3F" + fg: "#FFFFFF" + black: "#000000" + red: "#FF4545" + green: "#00C08A" + yellow: "#F9F985" + blue: "#1566C0" + magenta: "#FB39C1" + cyan: "#00B5E2" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FDA5A5" + brightGreen: "#76FDD7" + brightYellow: "#FDFDC7" + brightBlue: "#5DAAFF" + brightMagenta: "#FF83B7" + brightCyan: "#97EBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 280 + pair: null + contrast: + fg: 103.5 + black: 0 + red: 37.4 + green: 52 + yellow: 95.7 + blue: 19.6 + magenta: 39.2 + cyan: 50.9 + white: 103.5 + brightBlack: 18.7 + brightRed: 62.4 + brightGreen: 87.5 + brightYellow: 100 + brightBlue: 50.2 + brightMagenta: 53.1 + brightCyan: 82.6 + brightWhite: 103.5 diff --git a/themes/dcdevthemered.yaml b/themes/dcdevthemered.yaml index 0039ae2c..985d7a12 100644 --- a/themes/dcdevthemered.yaml +++ b/themes/dcdevthemered.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DcDevThemeRed.DcDevThemeRed" version: "0.0.1" installs: 260 + rating: 5 + ratings: 2 author: "DcDevThemeRed" repo: "https://github.com/DcDevRep/dcdevthemered" url: "https://marketplace.visualstudio.com/items?itemName=DcDevThemeRed.DcDevThemeRed" diff --git a/themes/dead-club-city.yaml b/themes/dead-club-city.yaml new file mode 100644 index 00000000..de8eb2ac --- /dev/null +++ b/themes/dead-club-city.yaml @@ -0,0 +1,52 @@ +name: "Dead Club City" +source: + marketplace_id: "kenziebottoms.dead-club-city" + version: "1.3.0" + installs: 25 + rating: 0 + ratings: 0 + author: "Kenzie Bottoms" + repo: "https://github.com/kenziebottoms/vscode-theme-dead-club-city" + url: "https://marketplace.visualstudio.com/items?itemName=kenziebottoms.dead-club-city" +colors: + bg: "#20101A" + fg: "#E0CCBD" + black: "#A6948C" + red: "#D24B03" + green: "#649D8B" + yellow: "#DEB58D" + blue: "#649D8B" + magenta: "#8E649C" + cyan: "#E48911" + white: "#E0CCBD" + brightBlack: "#A6948C" + brightRed: "#D24B03" + brightGreen: "#649D8B" + brightYellow: "#DEB58D" + brightBlue: "#E48911" + brightMagenta: "#C45D26" + brightCyan: "#E48911" + brightWhite: "#E0CCBD" +meta: + mode: "dark" + accent: "orange" + hue: 342 + pair: null + contrast: + fg: 76.9 + black: 45.6 + red: 31.2 + green: 42.8 + yellow: 65.7 + blue: 42.8 + magenta: 28.2 + cyan: 49.6 + white: 76.9 + brightBlack: 45.6 + brightRed: 31.2 + brightGreen: 42.8 + brightYellow: 65.7 + brightBlue: 49.6 + brightMagenta: 32 + brightCyan: 49.6 + brightWhite: 76.9 diff --git a/themes/deadbeef.yaml b/themes/deadbeef.yaml index f80a74ef..d7cf3e4a 100644 --- a/themes/deadbeef.yaml +++ b/themes/deadbeef.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Prelly95.deadbeef" version: "1.1.0" installs: 306 + rating: 5 + ratings: 1 author: "Prelly95" repo: "https://github.com/Prelly95/deadbeef" url: "https://marketplace.visualstudio.com/items?itemName=Prelly95.deadbeef" diff --git a/themes/deadmura.yaml b/themes/deadmura.yaml new file mode 100644 index 00000000..778ca2bb --- /dev/null +++ b/themes/deadmura.yaml @@ -0,0 +1,52 @@ +name: "Deadmura" +source: + marketplace_id: "pra1rie.deadmura" + version: "0.0.1" + installs: 69 + rating: 0 + ratings: 0 + author: "Rumi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=pra1rie.deadmura" +colors: + bg: "#101010" + fg: "#EEEEEE" + black: "#101010" + red: "#FBA0C0" + green: "#666666" + yellow: "#FBA0C0" + blue: "#FBA0C0" + magenta: "#FBA0C0" + cyan: "#666666" + white: "#EEEEEE" + brightBlack: "#101010" + brightRed: "#FBA0C0" + brightGreen: "#666666" + brightYellow: "#FBA0C0" + brightBlue: "#FBA0C0" + brightMagenta: "#FBA0C0" + brightCyan: "#666666" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 96.3 + black: 0 + red: 65.3 + green: 22.6 + yellow: 65.3 + blue: 65.3 + magenta: 65.3 + cyan: 22.6 + white: 96.3 + brightBlack: 0 + brightRed: 65.3 + brightGreen: 22.6 + brightYellow: 65.3 + brightBlue: 65.3 + brightMagenta: 65.3 + brightCyan: 22.6 + brightWhite: 96.3 diff --git a/themes/deadpool.yaml b/themes/deadpool.yaml index 2c28a42d..51bad4c8 100644 --- a/themes/deadpool.yaml +++ b/themes/deadpool.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MukeshJoshi.dodopool" version: "0.0.6" installs: 1805 + rating: 5 + ratings: 1 author: "Mukesh Joshi" repo: "https://github.com/orangepreneur/dodopool" url: "https://marketplace.visualstudio.com/items?itemName=MukeshJoshi.dodopool" diff --git a/themes/deaving-theme.yaml b/themes/deaving-theme.yaml index 0d082966..8f2d922c 100644 --- a/themes/deaving-theme.yaml +++ b/themes/deaving-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "deaving.deaving-theme" version: "0.0.1" installs: 22 + rating: 0 + ratings: 0 author: "deaving" repo: null url: "https://marketplace.visualstudio.com/items?itemName=deaving.deaving-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 100.6 black: 0 diff --git a/themes/decayce.yaml b/themes/decayce.yaml index cac20a37..7003f71a 100644 --- a/themes/decayce.yaml +++ b/themes/decayce.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "decaycs.decay" version: "1.0.9" installs: 37708 + rating: 5 + ratings: 3 author: "decaycs" repo: "https://github.com/decaycs/vscode" url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" diff --git a/themes/deeold.yaml b/themes/deeold.yaml index c1ca69ec..1f7d6de4 100644 --- a/themes/deeold.yaml +++ b/themes/deeold.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xyr0z1ne.deeold" version: "0.0.3" installs: 1859 + rating: 0 + ratings: 0 author: "xyr0z1ne" repo: "https://github.com/Xyr0s1gn/deeold" url: "https://marketplace.visualstudio.com/items?itemName=xyr0z1ne.deeold" diff --git a/themes/deep-dark-blue.yaml b/themes/deep-dark-blue.yaml new file mode 100644 index 00000000..79cb96d1 --- /dev/null +++ b/themes/deep-dark-blue.yaml @@ -0,0 +1,52 @@ +name: "Deep Dark Blue" +source: + marketplace_id: "manuabi.deep-dark-color" + version: "1.1.0" + installs: 492 + rating: 0 + ratings: 0 + author: "manuabi" + repo: "https://github.com/mafte/vscode-deep-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=manuabi.deep-dark-color" +colors: + bg: "#152238" + fg: "#969696" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 43.2 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 88.6 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 88.6 diff --git a/themes/deep-dark-purple.yaml b/themes/deep-dark-purple.yaml new file mode 100644 index 00000000..9e938ae7 --- /dev/null +++ b/themes/deep-dark-purple.yaml @@ -0,0 +1,52 @@ +name: "Deep Dark Purple" +source: + marketplace_id: "manuabi.deep-dark-color" + version: "1.1.0" + installs: 492 + rating: 0 + ratings: 0 + author: "manuabi" + repo: "https://github.com/mafte/vscode-deep-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=manuabi.deep-dark-color" +colors: + bg: "#221538" + fg: "#969696" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 298 + pair: null + contrast: + fg: 43.9 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/deep-dark-teal.yaml b/themes/deep-dark-teal.yaml new file mode 100644 index 00000000..7edb3c35 --- /dev/null +++ b/themes/deep-dark-teal.yaml @@ -0,0 +1,52 @@ +name: "Deep Dark Teal" +source: + marketplace_id: "manuabi.deep-dark-color" + version: "1.1.0" + installs: 492 + rating: 0 + ratings: 0 + author: "manuabi" + repo: "https://github.com/mafte/vscode-deep-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=manuabi.deep-dark-color" +colors: + bg: "#152E38" + fg: "#969696" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 226 + pair: null + contrast: + fg: 41.6 + black: 0 + red: 23.6 + green: 49.9 + yellow: 82.5 + blue: 24.3 + magenta: 26.7 + cyan: 44.5 + white: 86.9 + brightBlack: 19 + brightRed: 35.5 + brightGreen: 60.5 + brightYellow: 92.6 + brightBlue: 36.9 + brightMagenta: 42.3 + brightCyan: 52.3 + brightWhite: 86.9 diff --git a/themes/deep-dark.yaml b/themes/deep-dark.yaml index c1947915..a87943a8 100644 --- a/themes/deep-dark.yaml +++ b/themes/deep-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrey2620.andrey2620-theme" version: "1.0.0" installs: 8 + rating: 0 + ratings: 0 author: "andrey2620" repo: "https://github.com/andrey2620/andrey2620-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrey2620.andrey2620-theme" diff --git a/themes/deep-indigo-wisdom-intuition.yaml b/themes/deep-indigo-wisdom-intuition.yaml index e1f2325c..738f4eee 100644 --- a/themes/deep-indigo-wisdom-intuition.yaml +++ b/themes/deep-indigo-wisdom-intuition.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/deep-ocean.yaml b/themes/deep-ocean.yaml deleted file mode 100644 index 4fb7202d..00000000 --- a/themes/deep-ocean.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Deep Ocean" -source: - marketplace_id: "codeM.mystic-dark-collection" - version: "0.1.0" - installs: 86 - author: "Mustafa Özdemir" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=codeM.mystic-dark-collection" -colors: - bg: "#0A1A2A" - fg: "#E0F7FA" - black: "#0A1A2A" - red: "#FF4757" - green: "#48D1CC" - yellow: "#FFA726" - blue: "#4169E1" - magenta: "#FF6B6B" - cyan: "#40E0D0" - white: "#E0F7FA" - brightBlack: "#1A2F3F" - brightRed: "#FF6B6B" - brightGreen: "#66D9EF" - brightYellow: "#FFCC02" - brightBlue: "#6495ED" - brightMagenta: "#FF8A80" - brightCyan: "#48D1CC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 250 - pair: null - contrast: - fg: 98.4 - black: 0 - red: 41 - green: 66.4 - yellow: 64.2 - blue: 27.2 - magenta: 47.8 - cyan: 73.6 - white: 98.4 - brightBlack: 0 - brightRed: 47.8 - brightGreen: 73.1 - brightYellow: 78.3 - brightBlue: 44.4 - brightMagenta: 56.2 - brightCyan: 66.4 - brightWhite: 106.6 diff --git a/themes/deep-purple-fork-fork.yaml b/themes/deep-purple-fork-fork.yaml index 7d45de30..dc09ff88 100644 --- a/themes/deep-purple-fork-fork.yaml +++ b/themes/deep-purple-fork-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "stackdevlopr.sd-deep-purple-theme" version: "1.1.0" installs: 146 + rating: 0 + ratings: 0 author: "stackdevlopr" repo: null url: "https://marketplace.visualstudio.com/items?itemName=stackdevlopr.sd-deep-purple-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 36.1 black: 0 diff --git a/themes/deep-purple-fork.yaml b/themes/deep-purple-fork.yaml new file mode 100644 index 00000000..e26bc53b --- /dev/null +++ b/themes/deep-purple-fork.yaml @@ -0,0 +1,52 @@ +name: "Deep Purple - Fork" +source: + marketplace_id: "MrudulMistri.mystic-fusion-theme" + version: "1.0.18" + installs: 74 + rating: 5 + ratings: 1 + author: "Mrudul Mistri" + repo: "https://github.com/Mrudul1234/mystic-fusion-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MrudulMistri.mystic-fusion-theme" +colors: + bg: "#16111B" + fg: "#E4EEF0" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 307 + pair: null + contrast: + fg: 94.9 + black: 0 + red: 27.1 + green: 53.3 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.4 diff --git a/themes/deep-purple-theme.yaml b/themes/deep-purple-theme.yaml index 99d5d390..e0a1bcdd 100644 --- a/themes/deep-purple-theme.yaml +++ b/themes/deep-purple-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "miles-crighton.deep-purple" version: "0.0.15" installs: 1 + rating: 0 + ratings: 0 author: "miles-crighton" repo: "https://github.com/miles-crighton/deep-purple-vscode" url: "https://marketplace.visualstudio.com/items?itemName=miles-crighton.deep-purple" diff --git a/themes/deep-purple.yaml b/themes/deep-purple.yaml index 0b064665..8a845d67 100644 --- a/themes/deep-purple.yaml +++ b/themes/deep-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HGlennon.raisin" version: "1.0.6" installs: 26 + rating: 0 + ratings: 0 author: "HGlennon" repo: "https://github.com/HGlennon/Raisin" url: "https://marketplace.visualstudio.com/items?itemName=HGlennon.raisin" diff --git a/themes/deep-rainforest.yaml b/themes/deep-rainforest.yaml index c8b431da..b2b6ca1d 100644 --- a/themes/deep-rainforest.yaml +++ b/themes/deep-rainforest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yeskunall.deep-rainforest" version: "0.3.0" installs: 647 + rating: 0 + ratings: 0 author: "Kunall Banerjee" repo: "https://github.com/yeskunall/deep-rainforest" url: "https://marketplace.visualstudio.com/items?itemName=yeskunall.deep-rainforest" diff --git a/themes/deep-sea-navigator.yaml b/themes/deep-sea-navigator.yaml new file mode 100644 index 00000000..6f16b169 --- /dev/null +++ b/themes/deep-sea-navigator.yaml @@ -0,0 +1,52 @@ +name: "Deep-Sea-Navigator" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#011D23" + fg: "#EEF5F6" + black: "#011D23" + red: "#7C1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#258FA7" + magenta: "#258FA7" + cyan: "#29C3A0" + white: "#EEF5F6" + brightBlack: "#011D23" + brightRed: "#7C1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#258FA7" + brightMagenta: "#258FA7" + brightCyan: "#29C3A0" + brightWhite: "#EEF5F6" +meta: + mode: "dark" + accent: "yellow" + hue: 214 + pair: null + contrast: + fg: 99 + black: 0 + red: 8.4 + green: 57.2 + yellow: 51.3 + blue: 35.3 + magenta: 35.3 + cyan: 57.2 + white: 99 + brightBlack: 0 + brightRed: 8.4 + brightGreen: 57.2 + brightYellow: 51.3 + brightBlue: 35.3 + brightMagenta: 35.3 + brightCyan: 57.2 + brightWhite: 99 diff --git a/themes/deep-space-dark.yaml b/themes/deep-space-dark.yaml index 7cc6ccad..5bac2b8b 100644 --- a/themes/deep-space-dark.yaml +++ b/themes/deep-space-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/deep-teal.yaml b/themes/deep-teal.yaml new file mode 100644 index 00000000..d8e58f2a --- /dev/null +++ b/themes/deep-teal.yaml @@ -0,0 +1,52 @@ +name: "Deep-Teal" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#0D0D0D" + fg: "#EDF3F2" + black: "#0D0D0D" + red: "#7C1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#36BFB1" + magenta: "#36BFB1" + cyan: "#29C3A0" + white: "#EDF3F2" + brightBlack: "#0D0D0D" + brightRed: "#7C1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#36BFB1" + brightMagenta: "#36BFB1" + brightCyan: "#29C3A0" + brightWhite: "#EDF3F2" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 98.9 + black: 0 + red: 9.6 + green: 58.4 + yellow: 52.4 + blue: 57.5 + magenta: 57.5 + cyan: 58.4 + white: 98.9 + brightBlack: 0 + brightRed: 9.6 + brightGreen: 58.4 + brightYellow: 52.4 + brightBlue: 57.5 + brightMagenta: 57.5 + brightCyan: 58.4 + brightWhite: 98.9 diff --git a/themes/deep-void.yaml b/themes/deep-void.yaml new file mode 100644 index 00000000..3bc4f480 --- /dev/null +++ b/themes/deep-void.yaml @@ -0,0 +1,52 @@ +name: "Deep-Void" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#020817" + fg: "#EFF6FF" + black: "#020817" + red: "#DC2626" + green: "#29C3A0" + yellow: "#D29922" + blue: "#1E40AF" + magenta: "#1E40AF" + cyan: "#29C3A0" + white: "#000000" + brightBlack: "#020817" + brightRed: "#DC2626" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#1E40AF" + brightMagenta: "#1E40AF" + brightCyan: "#29C3A0" + brightWhite: "#000000" +meta: + mode: "dark" + accent: "orange" + hue: 259 + pair: null + contrast: + fg: 101.3 + black: 0 + red: 30 + green: 58.5 + yellow: 52.6 + blue: 12.9 + magenta: 12.9 + cyan: 58.5 + white: 0 + brightBlack: 0 + brightRed: 30 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 12.9 + brightMagenta: 12.9 + brightCyan: 58.5 + brightWhite: 0 diff --git a/themes/deepslime.yaml b/themes/deepslime.yaml new file mode 100644 index 00000000..e36c3e56 --- /dev/null +++ b/themes/deepslime.yaml @@ -0,0 +1,52 @@ +name: "Deepslime" +source: + marketplace_id: "KatherineAurelia.deepslime-theme" + version: "1.1.3" + installs: 55 + rating: 0 + ratings: 0 + author: "Katherine Aurelia" + repo: "https://github.com/wintryKat/vsc-theme-deepslime" + url: "https://marketplace.visualstudio.com/items?itemName=KatherineAurelia.deepslime-theme" +colors: + bg: "#060110" + fg: "#E0E0E0" + black: "#0D0416" + red: "#C05050" + green: "#50C050" + yellow: "#C0A050" + blue: "#5080C0" + magenta: "#A050C0" + cyan: "#50B0B0" + white: "#B0B0B0" + brightBlack: "#606060" + brightRed: "#E06060" + brightGreen: "#60E060" + brightYellow: "#E0C060" + brightBlue: "#60A0E0" + brightMagenta: "#C060E0" + brightCyan: "#60D0D0" + brightWhite: "#D0D0D0" +meta: + mode: "dark" + accent: "green" + hue: 301 + pair: null + contrast: + fg: 87.8 + black: 0 + red: 29.9 + green: 56.4 + yellow: 52.9 + blue: 34.1 + magenta: 29 + cyan: 51.9 + white: 59.5 + brightBlack: 20.5 + brightRed: 39.8 + brightGreen: 72.6 + brightYellow: 70.3 + brightBlue: 48.7 + brightMagenta: 39.6 + brightCyan: 68.3 + brightWhite: 78 diff --git a/themes/deepwave.yaml b/themes/deepwave.yaml index b5522721..9198e810 100644 --- a/themes/deepwave.yaml +++ b/themes/deepwave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NelsonDJCR.deepwave" version: "0.0.1" installs: 10 + rating: 0 + ratings: 0 author: "NelsonDJCR" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NelsonDJCR.deepwave" diff --git a/themes/deepwoods-autumn-needles.yaml b/themes/deepwoods-autumn-needles.yaml new file mode 100644 index 00000000..57b60300 --- /dev/null +++ b/themes/deepwoods-autumn-needles.yaml @@ -0,0 +1,50 @@ +name: "Deepwoods Autumn Needles" +source: + marketplace_id: "just-spliff.frosty-pine" + version: "1.1.4" + installs: 63 + author: "just-spliff" + repo: "https://github.com/just-spliff/frosty-pine" + url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" +colors: + bg: "#090806" + fg: "#FFF8F0" + black: "#15100C" + red: "#E36B5F" + green: "#8AA37C" + yellow: "#E9A86C" + blue: "#A49B8F" + magenta: "#BF8A82" + cyan: "#C2D2B7" + white: "#FFF8F0" + brightBlack: "#43372D" + brightRed: "#F18977" + brightGreen: "#B6C79B" + brightYellow: "#F4C98D" + brightBlue: "#C0B7AA" + brightMagenta: "#D9A496" + brightCyan: "#E4F0DE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.8 + black: 0 + red: 42.8 + green: 48.5 + yellow: 62.6 + blue: 48.8 + magenta: 46.1 + cyan: 76.1 + white: 103.8 + brightBlack: 0 + brightRed: 54.1 + brightGreen: 69 + brightYellow: 77.9 + brightBlue: 64 + brightMagenta: 59.6 + brightCyan: 95.6 + brightWhite: 107.8 diff --git a/themes/deepwoods-frosted-pines.yaml b/themes/deepwoods-frosted-pines.yaml new file mode 100644 index 00000000..faa1bd28 --- /dev/null +++ b/themes/deepwoods-frosted-pines.yaml @@ -0,0 +1,50 @@ +name: "Deepwoods Frosted Pines" +source: + marketplace_id: "just-spliff.frosty-pine" + version: "1.1.4" + installs: 63 + author: "just-spliff" + repo: "https://github.com/just-spliff/frosty-pine" + url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" +colors: + bg: "#05070B" + fg: "#F5FAFF" + black: "#11151C" + red: "#E38A9E" + green: "#7CB4A0" + yellow: "#CFE7C0" + blue: "#8FA7C7" + magenta: "#B6ABD8" + cyan: "#A5DFF9" + white: "#F5FAFF" + brightBlack: "#3B4652" + brightRed: "#F2A3B5" + brightGreen: "#AEE6C7" + brightYellow: "#E5F5D8" + brightBlue: "#B9CBE4" + brightMagenta: "#D2C5F0" + brightCyan: "#CDEBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 260 + pair: null + contrast: + fg: 104.1 + black: 0 + red: 53 + green: 55.5 + yellow: 87.6 + blue: 53.5 + magenta: 60.1 + cyan: 82 + white: 104.1 + brightBlack: 10.1 + brightRed: 64.6 + brightGreen: 83.8 + brightYellow: 97.8 + brightBlue: 74 + brightMagenta: 75.2 + brightCyan: 92 + brightWhite: 107.8 diff --git a/themes/deepwoods-high-canopy.yaml b/themes/deepwoods-high-canopy.yaml new file mode 100644 index 00000000..81a8b9a4 --- /dev/null +++ b/themes/deepwoods-high-canopy.yaml @@ -0,0 +1,50 @@ +name: "Deepwoods High Canopy" +source: + marketplace_id: "just-spliff.frosty-pine" + version: "1.1.4" + installs: 63 + author: "just-spliff" + repo: "https://github.com/just-spliff/frosty-pine" + url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" +colors: + bg: "#050807" + fg: "#F7FFF5" + black: "#11160F" + red: "#F28B82" + green: "#8EDC73" + yellow: "#CFEA8A" + blue: "#9BAE97" + magenta: "#B59F8E" + cyan: "#B7F1C5" + white: "#F7FFF5" + brightBlack: "#3D493C" + brightRed: "#F7A395" + brightGreen: "#B7F171" + brightYellow: "#E6FFD2" + brightBlue: "#C0D1BF" + brightMagenta: "#D0BBA6" + brightCyan: "#E0FFE9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 106.2 + black: 0 + red: 55.2 + green: 73.8 + yellow: 87.4 + blue: 55.4 + magenta: 52.4 + cyan: 89.9 + white: 106.2 + brightBlack: 10.4 + brightRed: 64.4 + brightGreen: 87.7 + brightYellow: 102.5 + brightBlue: 75.8 + brightMagenta: 67.6 + brightCyan: 102.7 + brightWhite: 107.8 diff --git a/themes/deepwoods-spring-thaw.yaml b/themes/deepwoods-spring-thaw.yaml new file mode 100644 index 00000000..1a88f6e1 --- /dev/null +++ b/themes/deepwoods-spring-thaw.yaml @@ -0,0 +1,50 @@ +name: "Deepwoods Spring Thaw" +source: + marketplace_id: "just-spliff.frosty-pine" + version: "1.1.4" + installs: 63 + author: "just-spliff" + repo: "https://github.com/just-spliff/frosty-pine" + url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" +colors: + bg: "#060809" + fg: "#F5F8F6" + black: "#101414" + red: "#4E7D5A" + green: "#8FD39A" + yellow: "#CBEA96" + blue: "#A8B3AE" + magenta: "#A8B3AE" + cyan: "#E0F8E6" + white: "#F5F8F6" + brightBlack: "#3A4440" + brightRed: "#6BA874" + brightGreen: "#CBEA96" + brightYellow: "#E0F8E6" + brightBlue: "#D0DDDA" + brightMagenta: "#D0DDDA" + brightCyan: "#F5F8F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 102.7 + black: 0 + red: 28.6 + green: 70.6 + yellow: 87.2 + blue: 59.7 + magenta: 59.7 + cyan: 99.2 + white: 102.7 + brightBlack: 9 + brightRed: 47.9 + brightGreen: 87.2 + brightYellow: 99.2 + brightBlue: 84.2 + brightMagenta: 84.2 + brightCyan: 102.7 + brightWhite: 107.8 diff --git a/themes/default-enhanced.yaml b/themes/default-enhanced.yaml index ec6b2c47..d2be05a9 100644 --- a/themes/default-enhanced.yaml +++ b/themes/default-enhanced.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jonaqhan.jonaqhan" version: "4.8.0" installs: 753 + rating: 0 + ratings: 0 author: "Jonaqhan" repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" diff --git a/themes/defaults.yaml b/themes/defaults.yaml index 0ec51eac..e829ca5d 100644 --- a/themes/defaults.yaml +++ b/themes/defaults.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "drzix.hc-zenburn-vscode" version: "0.3.0" installs: 7768 + rating: 5 + ratings: 1 author: "Kyeongmin Cho" repo: "https://github.com/drzix/hc-zenburn-vscode" url: "https://marketplace.visualstudio.com/items?itemName=drzix.hc-zenburn-vscode" diff --git a/themes/defdo-base.yaml b/themes/defdo-base.yaml index 3934e424..9d17c206 100644 --- a/themes/defdo-base.yaml +++ b/themes/defdo-base.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "defdo.defdo-themes" version: "0.0.15" installs: 1255 + rating: 5 + ratings: 1 author: "defdo" repo: "https://github.com/defdo-dev/defdo-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=defdo.defdo-themes" diff --git a/themes/defdo-halloween.yaml b/themes/defdo-halloween.yaml index 93fc69eb..c98f24eb 100644 --- a/themes/defdo-halloween.yaml +++ b/themes/defdo-halloween.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "defdo.defdo-themes" version: "0.0.15" installs: 1255 + rating: 5 + ratings: 1 author: "defdo" repo: "https://github.com/defdo-dev/defdo-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=defdo.defdo-themes" diff --git a/themes/definetely-not-github-s-theme.yaml b/themes/definetely-not-github-s-theme.yaml index d089e986..8dfdbbbc 100644 --- a/themes/definetely-not-github-s-theme.yaml +++ b/themes/definetely-not-github-s-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vhespanha.dngh-vscode" version: "0.2.2" installs: 139 + rating: 5 + ratings: 1 author: "vhespanha" repo: "https://github.com/vhespanha/dngh-vscode" url: "https://marketplace.visualstudio.com/items?itemName=vhespanha.dngh-vscode" diff --git a/themes/definition-theme2023.yaml b/themes/definition-theme2023.yaml index 81d21760..cbe038d0 100644 --- a/themes/definition-theme2023.yaml +++ b/themes/definition-theme2023.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mainframeai.dfn2023theme" version: "0.4.5" installs: 196 + rating: 0 + ratings: 0 author: "Mainframeai" repo: "https://github.com/mainframeai/mainframai.neon-verdigris-plus-theme-main" url: "https://marketplace.visualstudio.com/items?itemName=Mainframeai.dfn2023theme" diff --git a/themes/dejaypiii.yaml b/themes/dejaypiii.yaml index fea03664..e96bd045 100644 --- a/themes/dejaypiii.yaml +++ b/themes/dejaypiii.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dejaypiii.dejaypiii-theme" version: "0.1.0" installs: 42 + rating: 0 + ratings: 0 author: "Johann-Peter Duchon" repo: "https://github.com/dejaypiii/dejaypiii-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dejaypiii.dejaypiii-theme" diff --git a/themes/dekirisu-s-rust-theme.yaml b/themes/dekirisu-s-rust-theme.yaml index 52392df3..3bd74df8 100644 --- a/themes/dekirisu-s-rust-theme.yaml +++ b/themes/dekirisu-s-rust-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dekirisu.dekirisu-rust-themes" version: "0.0.1" installs: 3898 + rating: 5 + ratings: 3 author: "Dekirisu" repo: "https://github.com/dekirisu/vscode-rust-themes" url: "https://marketplace.visualstudio.com/items?itemName=dekirisu.dekirisu-rust-themes" diff --git a/themes/delowar-dark-pro.yaml b/themes/delowar-dark-pro.yaml new file mode 100644 index 00000000..8a92a867 --- /dev/null +++ b/themes/delowar-dark-pro.yaml @@ -0,0 +1,52 @@ +name: "Delowar Dark Pro" +source: + marketplace_id: "DelowarHossain.compiled-thought-themes" + version: "3.1.0" + installs: 97 + rating: 5 + ratings: 1 + author: "Delowar Hossain" + repo: "https://github.com/mdhossain-2437/open-source-the-compiled-thought-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DelowarHossain.compiled-thought-themes" +colors: + bg: "#0D1117" + fg: "#E6EDF3" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#484F58" + brightRed: "#FF7B72" + brightGreen: "#3FB950" + brightYellow: "#D29922" + brightBlue: "#58A6FF" + brightMagenta: "#BC8CFF" + brightCyan: "#39C5CF" + brightWhite: "#B1BAC4" +meta: + mode: "dark" + accent: "green" + hue: 258 + pair: null + contrast: + fg: 95 + black: 13.1 + red: 52.6 + green: 52.1 + yellow: 52.2 + blue: 52.2 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 13.1 + brightRed: 52.6 + brightGreen: 52.1 + brightYellow: 52.2 + brightBlue: 52.2 + brightMagenta: 52.2 + brightCyan: 61.4 + brightWhite: 64 diff --git a/themes/delowar-monokai-pro.yaml b/themes/delowar-monokai-pro.yaml new file mode 100644 index 00000000..cd6d92cc --- /dev/null +++ b/themes/delowar-monokai-pro.yaml @@ -0,0 +1,52 @@ +name: "Delowar Monokai Pro" +source: + marketplace_id: "DelowarHossain.compiled-thought-themes" + version: "3.1.0" + installs: 97 + rating: 5 + ratings: 1 + author: "Delowar Hossain" + repo: "https://github.com/mdhossain-2437/open-source-the-compiled-thought-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DelowarHossain.compiled-thought-themes" +colors: + bg: "#2D2A2E" + fg: "#FCFCFA" + black: "#2D2A2E" + red: "#FF6188" + green: "#A9DC76" + yellow: "#FFD866" + blue: "#78DCE8" + magenta: "#AB9DF2" + cyan: "#78DCE8" + white: "#FCFCFA" + brightBlack: "#2D2A2E" + brightRed: "#FF6188" + brightGreen: "#A9DC76" + brightYellow: "#FFD866" + brightBlue: "#78DCE8" + brightMagenta: "#AB9DF2" + brightCyan: "#78DCE8" + brightWhite: "#FCFCFA" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 101.8 + black: 0 + red: 43.8 + green: 72.3 + yellow: 81.3 + blue: 72.4 + magenta: 51.2 + cyan: 72.4 + white: 101.8 + brightBlack: 0 + brightRed: 43.8 + brightGreen: 72.3 + brightYellow: 81.3 + brightBlue: 72.4 + brightMagenta: 51.2 + brightCyan: 72.4 + brightWhite: 101.8 diff --git a/themes/delowar-ocean-blue.yaml b/themes/delowar-ocean-blue.yaml new file mode 100644 index 00000000..b37b1a24 --- /dev/null +++ b/themes/delowar-ocean-blue.yaml @@ -0,0 +1,52 @@ +name: "Delowar Ocean Blue" +source: + marketplace_id: "DelowarHossain.compiled-thought-themes" + version: "3.1.0" + installs: 97 + rating: 5 + ratings: 1 + author: "Delowar Hossain" + repo: "https://github.com/mdhossain-2437/open-source-the-compiled-thought-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DelowarHossain.compiled-thought-themes" +colors: + bg: "#0F1419" + fg: "#BFDBFE" + black: "#334155" + red: "#EF4444" + green: "#22C55E" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#E2E8F0" + brightBlack: "#334155" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "magenta" + hue: 249 + pair: null + contrast: + fg: 82.5 + black: 7.8 + red: 37.1 + green: 57.1 + yellow: 59.8 + blue: 37.1 + magenta: 34.7 + cyan: 54.2 + white: 91.8 + brightBlack: 7.8 + brightRed: 37.1 + brightGreen: 57.1 + brightYellow: 59.8 + brightBlue: 37.1 + brightMagenta: 34.7 + brightCyan: 54.2 + brightWhite: 91.8 diff --git a/themes/demon-dark-pro.yaml b/themes/demon-dark-pro.yaml index dda2d461..cc3db1c9 100644 --- a/themes/demon-dark-pro.yaml +++ b/themes/demon-dark-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mrsiddharthsolanki.demon-dark-pro-theme" version: "2.6.7" installs: 141 + rating: 5 + ratings: 2 author: "mrsiddharthsolanki" repo: "https://github.com/mrsiddharthsolanki/demon-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=mrsiddharthsolanki.demon-dark-pro-theme" diff --git a/themes/demon-light-pro.yaml b/themes/demon-light-pro.yaml index 0fc51aa7..26b556a7 100644 --- a/themes/demon-light-pro.yaml +++ b/themes/demon-light-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mrsiddharthsolanki.demon-dark-pro-theme" version: "2.6.7" installs: 141 + rating: 5 + ratings: 2 author: "mrsiddharthsolanki" repo: "https://github.com/mrsiddharthsolanki/demon-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=mrsiddharthsolanki.demon-dark-pro-theme" diff --git a/themes/demon-slayer-light-theme.yaml b/themes/demon-slayer-light-theme.yaml index b285fc65..3a491096 100644 --- a/themes/demon-slayer-light-theme.yaml +++ b/themes/demon-slayer-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TeteDeCactus.demon-slayer-light-theme" version: "0.0.1" installs: 8489 + rating: 0 + ratings: 0 author: "TeteDeCactus" repo: "https://github.com/tetedecactus/VScode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=TeteDeCactus.demon-slayer-light-theme" diff --git a/themes/demon.yaml b/themes/demon.yaml new file mode 100644 index 00000000..72c8b0b8 --- /dev/null +++ b/themes/demon.yaml @@ -0,0 +1,52 @@ +name: "Demon" +source: + marketplace_id: "Jmenabc.Demon-Hunter" + version: "0.0.1" + installs: 236 + rating: 0 + ratings: 0 + author: "Jmenabc" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Jmenabc.Demon-Hunter" +colors: + bg: "#111111" + fg: "#7D85FF" + black: "#545454" + red: "#CD3131" + green: "#31C089" + yellow: "#E5E510" + blue: "#277AD5" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A1A1A1" + brightBlack: "#777777" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 42.9 + black: 15.2 + red: 27.2 + green: 56.2 + yellow: 86.1 + blue: 31.5 + magenta: 30.3 + cyan: 48.1 + white: 50.9 + brightBlack: 30.1 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/desert-night.yaml b/themes/desert-night.yaml new file mode 100644 index 00000000..57bb1517 --- /dev/null +++ b/themes/desert-night.yaml @@ -0,0 +1,52 @@ +name: "Desert-Night" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#141415" + fg: "#EBEBD0" + black: "#141415" + red: "#811D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#629DAC" + magenta: "#629DAC" + cyan: "#29C3A0" + white: "#EBEBD0" + brightBlack: "#141415" + brightRed: "#811D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#629DAC" + brightMagenta: "#629DAC" + brightCyan: "#29C3A0" + brightWhite: "#EBEBD0" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 92.9 + black: 0 + red: 10 + green: 57.9 + yellow: 52 + blue: 44.1 + magenta: 44.1 + cyan: 57.9 + white: 92.9 + brightBlack: 0 + brightRed: 10 + brightGreen: 57.9 + brightYellow: 52 + brightBlue: 44.1 + brightMagenta: 44.1 + brightCyan: 57.9 + brightWhite: 92.9 diff --git a/themes/desert-tide.yaml b/themes/desert-tide.yaml new file mode 100644 index 00000000..148ae67f --- /dev/null +++ b/themes/desert-tide.yaml @@ -0,0 +1,52 @@ +name: "Desert Tide" +source: + marketplace_id: "Krisada-3131.serpentine-syntax" + version: "0.0.3" + installs: 38 + rating: 0 + ratings: 0 + author: "Krisada-3131" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Krisada-3131.serpentine-syntax" +colors: + bg: "#344B52" + fg: "#DEC583" + black: "#9A00E0" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: 219 + pair: null + contrast: + fg: 60.5 + black: 11.6 + red: 15.4 + green: 41.7 + yellow: 74.3 + blue: 16.2 + magenta: 18.5 + cyan: 36.3 + white: 95.6 + brightBlack: 10.8 + brightRed: 27.3 + brightGreen: 52.3 + brightYellow: 84.4 + brightBlue: 28.7 + brightMagenta: 34.1 + brightCyan: 44.1 + brightWhite: 78.7 diff --git a/themes/desert.yaml b/themes/desert.yaml index 7fae5cf4..a2f5ff9d 100644 --- a/themes/desert.yaml +++ b/themes/desert.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AFLO.desert-vim" version: "1.0.6" installs: 791 + rating: 0 + ratings: 0 author: "AFLO" repo: "https://github.com/Ayoobf/desert-vim" url: "https://marketplace.visualstudio.com/items?itemName=AFLO.desert-vim" diff --git a/themes/designcourse-theme.yaml b/themes/designcourse-theme.yaml index 14f1a7c1..f81351e4 100644 --- a/themes/designcourse-theme.yaml +++ b/themes/designcourse-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DesignCourse.designcourse" version: "0.0.1" installs: 3418 + rating: 5 + ratings: 2 author: "DesignCourse" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DesignCourse.designcourse" diff --git a/themes/designonev2.yaml b/themes/designonev2.yaml index 70adcbc5..607a5899 100644 --- a/themes/designonev2.yaml +++ b/themes/designonev2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "danilamdesign.designone-v2" version: "0.0.1" installs: 65 + rating: 0 + ratings: 0 author: "danilamdesign" repo: null url: "https://marketplace.visualstudio.com/items?itemName=danilamdesign.designone-v2" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 40.1 black: 0 diff --git a/themes/dessert.yaml b/themes/dessert.yaml index ecc7890c..05519714 100644 --- a/themes/dessert.yaml +++ b/themes/dessert.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "curtisj44.dessert" version: "1.0.6" installs: 208 + rating: 0 + ratings: 0 author: "curtisj44" repo: "https://github.com/curtisj44/dessert-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=curtisj44.dessert" diff --git a/themes/deus-ex-md-dark.yaml b/themes/deus-ex-md-dark.yaml index 27fef5e5..dd541788 100644 --- a/themes/deus-ex-md-dark.yaml +++ b/themes/deus-ex-md-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NosAve.nosave" version: "0.0.1" installs: 718 + rating: 0 + ratings: 0 author: "NosAve" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NosAve.nosave" diff --git a/themes/dev-code-theme-color-theme.yaml b/themes/dev-code-theme-color-theme.yaml new file mode 100644 index 00000000..5a000536 --- /dev/null +++ b/themes/dev-code-theme-color-theme.yaml @@ -0,0 +1,52 @@ +name: "Dev-Code-Theme-color-theme" +source: + marketplace_id: "daniloBrayann.dev-code-theme" + version: "0.0.29" + installs: 238 + rating: 0 + ratings: 0 + author: "daniloBrayann" + repo: "https://github.com/danilobrayann/dev-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.dev-code-theme" +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#9AA09A" + yellow: "#0236FA" + blue: "#1E90FF" + magenta: "#6A9955" + cyan: "#EDCF18" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#1E90FF" + brightYellow: "#DCDCAA" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#6A9955" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 278 + pair: null + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 46 + yellow: 14.8 + blue: 38.8 + magenta: 37.1 + cyan: 74 + white: 99 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 38.8 + brightYellow: 79.5 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 37.1 + brightWhite: 103.9 diff --git a/themes/dev-dark-fork-fork.yaml b/themes/dev-dark-fork-fork.yaml index 948223f9..a208081f 100644 --- a/themes/dev-dark-fork-fork.yaml +++ b/themes/dev-dark-fork-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Thzin.Thzin-theme" version: "1.0.2" installs: 2034 + rating: 0 + ratings: 0 author: "Thzin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Thzin.Thzin-theme" diff --git a/themes/dev-dev-color-theme.yaml b/themes/dev-dev-color-theme.yaml new file mode 100644 index 00000000..5c36a994 --- /dev/null +++ b/themes/dev-dev-color-theme.yaml @@ -0,0 +1,52 @@ +name: "Dev-Dev-color-theme" +source: + marketplace_id: "daniloBrayann.dev-code-theme" + version: "0.0.29" + installs: 238 + rating: 0 + ratings: 0 + author: "daniloBrayann" + repo: "https://github.com/danilobrayann/dev-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.dev-code-theme" +colors: + bg: "#282A36" + fg: "#E6E6E6" + black: "#21222C" + red: "#FF5555" + green: "#02FA8D" + yellow: "#02FA8D" + blue: "#00FF9E" + magenta: "#D9FF02" + cyan: "#0B33EE" + white: "#FFFFFF" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 278 + pair: null + contrast: + fg: 87.7 + black: 0 + red: 40.4 + green: 81.3 + yellow: 81.3 + blue: 84.4 + magenta: 93.7 + cyan: 13 + white: 103.9 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/dev-tachgurbanov.yaml b/themes/dev-tachgurbanov.yaml index a3cafad8..a8945d86 100644 --- a/themes/dev-tachgurbanov.yaml +++ b/themes/dev-tachgurbanov.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dark-devtachgurbanov.dark-dev-tachgurbanov" version: "0.0.3" installs: 83 + rating: 5 + ratings: 1 author: "dark - dev.tachgurbanov" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dark-devtachgurbanov.dark-dev-tachgurbanov" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 281 + pair: null contrast: fg: 78.4 black: 0 diff --git a/themes/dev-theme-pro-nebula-mist.yaml b/themes/dev-theme-pro-nebula-mist.yaml index d678b3c9..98731fd2 100644 --- a/themes/dev-theme-pro-nebula-mist.yaml +++ b/themes/dev-theme-pro-nebula-mist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FaizanAshiq.dev-theme-pro" version: "0.5.7" installs: 70 + rating: 5 + ratings: 5 author: "Faizan Ashiq" repo: "https://github.com/FaizanAshiq/dev-theme-pro" url: "https://marketplace.visualstudio.com/items?itemName=FaizanAshiq.dev-theme-pro" diff --git a/themes/dev-theme-pro-nebula-void.yaml b/themes/dev-theme-pro-nebula-void.yaml index c635657e..7c1cc4a6 100644 --- a/themes/dev-theme-pro-nebula-void.yaml +++ b/themes/dev-theme-pro-nebula-void.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FaizanAshiq.dev-theme-pro" version: "0.5.7" installs: 70 + rating: 5 + ratings: 5 author: "Faizan Ashiq" repo: "https://github.com/FaizanAshiq/dev-theme-pro" url: "https://marketplace.visualstudio.com/items?itemName=FaizanAshiq.dev-theme-pro" diff --git a/themes/dev-theme-pro-ocean-mist.yaml b/themes/dev-theme-pro-ocean-mist.yaml index 15a07544..1541936d 100644 --- a/themes/dev-theme-pro-ocean-mist.yaml +++ b/themes/dev-theme-pro-ocean-mist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FaizanAshiq.dev-theme-pro" version: "0.5.7" installs: 70 + rating: 5 + ratings: 5 author: "Faizan Ashiq" repo: "https://github.com/FaizanAshiq/dev-theme-pro" url: "https://marketplace.visualstudio.com/items?itemName=FaizanAshiq.dev-theme-pro" diff --git a/themes/dev-theme-pro-ocean-void.yaml b/themes/dev-theme-pro-ocean-void.yaml index 6fc87472..e75bb8ed 100644 --- a/themes/dev-theme-pro-ocean-void.yaml +++ b/themes/dev-theme-pro-ocean-void.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FaizanAshiq.dev-theme-pro" version: "0.5.7" installs: 70 + rating: 5 + ratings: 5 author: "Faizan Ashiq" repo: "https://github.com/FaizanAshiq/dev-theme-pro" url: "https://marketplace.visualstudio.com/items?itemName=FaizanAshiq.dev-theme-pro" diff --git a/themes/dev-theme.yaml b/themes/dev-theme.yaml index bab813e6..5c346f74 100644 --- a/themes/dev-theme.yaml +++ b/themes/dev-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "naqvi.dev-theme" version: "1.0.0" installs: 138 + rating: 0 + ratings: 0 author: "naqvi" repo: "https://github.com/nrcool/vscode-theme-dev-theme" url: "https://marketplace.visualstudio.com/items?itemName=naqvi.dev-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.5 black: 107.9 diff --git a/themes/devcode.yaml b/themes/devcode.yaml index 6e10c787..e7d0886b 100644 --- a/themes/devcode.yaml +++ b/themes/devcode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mokudjinn.devcodeplus" version: "1.4.4" installs: 157 + rating: 5 + ratings: 1 author: "Mokudjinn" repo: "https://github.com/Mokudjinn/DevCode-Plus" url: "https://marketplace.visualstudio.com/items?itemName=Mokudjinn.devcodeplus" diff --git a/themes/devdojo-seppuku.yaml b/themes/devdojo-seppuku.yaml index 2c7fd8e4..7972e664 100644 --- a/themes/devdojo-seppuku.yaml +++ b/themes/devdojo-seppuku.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JSSamurai.devdojoseppuku" version: "0.1.0" installs: 213 + rating: 0 + ratings: 0 author: "A. Jay Chambers" repo: "https://github.com/JSSamurai/DevDojoSeppuku" url: "https://marketplace.visualstudio.com/items?itemName=JSSamurai.devdojoseppuku" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 247 + pair: null contrast: fg: 70.3 black: 0 diff --git a/themes/developer-friendly-dark.yaml b/themes/developer-friendly-dark.yaml new file mode 100644 index 00000000..bd04aa00 --- /dev/null +++ b/themes/developer-friendly-dark.yaml @@ -0,0 +1,52 @@ +name: "Developer Friendly Dark" +source: + marketplace_id: "DevMamudulsetup.devmamudulsetup" + version: "0.0.2" + installs: 2 + rating: 0 + ratings: 0 + author: "DevMamudulsetup" + repo: "https://github.com/mamudulislam/devmamudulsetup" + url: "https://marketplace.visualstudio.com/items?itemName=DevMamudulsetup.devmamudulsetup" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#CDD6F4" + brightBlack: "#6C7086" + brightRed: "#EBA0AC" + brightGreen: "#94E2D5" + brightYellow: "#F2CDCD" + brightBlue: "#89DCEB" + brightMagenta: "#F5E0DE" + brightCyan: "#A6E3A1" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 80 + black: 9.3 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 76.7 + cyan: 78.2 + white: 80 + brightBlack: 25.8 + brightRed: 60 + brightGreen: 78.2 + brightYellow: 79.4 + brightBlue: 75.6 + brightMagenta: 88.7 + brightCyan: 78.3 + brightWhite: 68.1 diff --git a/themes/developers-theme-fork.yaml b/themes/developers-theme-fork.yaml index 6a4cc8e0..5fc16ea4 100644 --- a/themes/developers-theme-fork.yaml +++ b/themes/developers-theme-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rajeshwaran.developer-theme-dark" version: "5.0.0" installs: 162179 + rating: 5 + ratings: 4 author: "Rajeshwaran" repo: "https://github.com/Rajeshwaran2001/developer-theme-dark" url: "https://marketplace.visualstudio.com/items?itemName=Rajeshwaran.developer-theme-dark" diff --git a/themes/devhaven-dracula.yaml b/themes/devhaven-dracula.yaml new file mode 100644 index 00000000..e61fc935 --- /dev/null +++ b/themes/devhaven-dracula.yaml @@ -0,0 +1,52 @@ +name: "DevHaven (Dracula)" +source: + marketplace_id: "DevHaven.devhaven" + version: "0.0.3" + installs: 217 + rating: 0 + ratings: 0 + author: "DevHaven" + repo: "https://github.com/BlankRiser/DevHaven" + url: "https://marketplace.visualstudio.com/items?itemName=DevHaven.devhaven" +colors: + bg: "#052529" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 207 + pair: null + contrast: + fg: 83.8 + black: 0 + red: 37.9 + green: 65.9 + yellow: 80.7 + blue: 54.5 + magenta: 52.4 + cyan: 58.3 + white: 105.5 + brightBlack: 14.2 + brightRed: 37.9 + brightGreen: 65.9 + brightYellow: 92.3 + brightBlue: 54.5 + brightMagenta: 52.4 + brightCyan: 72.6 + brightWhite: 105.5 diff --git a/themes/devjam-dark.yaml b/themes/devjam-dark.yaml new file mode 100644 index 00000000..bf6eaae7 --- /dev/null +++ b/themes/devjam-dark.yaml @@ -0,0 +1,49 @@ +name: "DevJam Dark" +source: + marketplace_id: "alisonsantosofc.devjam-theme" + version: "0.0.5" + installs: 163 + author: "alisonsantosofc" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=alisonsantosofc.devjam-theme" +colors: + bg: "#131724" + fg: "#F2F2F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 271 + contrast: + fg: 98.3 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.6 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 90 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 90 diff --git a/themes/devmedia-dark-modern.yaml b/themes/devmedia-dark-modern.yaml index 40355ec1..8eca0a16 100644 --- a/themes/devmedia-dark-modern.yaml +++ b/themes/devmedia-dark-modern.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "joaomjbraga.devmedia-theme" version: "1.1.0" installs: 138 + rating: 0 + ratings: 0 author: "João M J Braga" repo: "https://github.com/joaomjbraga/devmedia-theme" url: "https://marketplace.visualstudio.com/items?itemName=joaomjbraga.devmedia-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: 254 + pair: null contrast: fg: 92.9 black: 0 diff --git a/themes/devmedia-dark.yaml b/themes/devmedia-dark.yaml index 6d8b7362..71fd3061 100644 --- a/themes/devmedia-dark.yaml +++ b/themes/devmedia-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "joaomjbraga.devmedia-theme" version: "1.1.0" installs: 138 + rating: 0 + ratings: 0 author: "João M J Braga" repo: "https://github.com/joaomjbraga/devmedia-theme" url: "https://marketplace.visualstudio.com/items?itemName=joaomjbraga.devmedia-theme" diff --git a/themes/devmedia-light.yaml b/themes/devmedia-light.yaml index c43652db..c23ac393 100644 --- a/themes/devmedia-light.yaml +++ b/themes/devmedia-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "joaomjbraga.devmedia-theme" version: "1.1.0" installs: 138 + rating: 0 + ratings: 0 author: "João M J Braga" repo: "https://github.com/joaomjbraga/devmedia-theme" url: "https://marketplace.visualstudio.com/items?itemName=joaomjbraga.devmedia-theme" diff --git a/themes/devoption-light.yaml b/themes/devoption-light.yaml new file mode 100644 index 00000000..b8082600 --- /dev/null +++ b/themes/devoption-light.yaml @@ -0,0 +1,52 @@ +name: "DevOption Light" +source: + marketplace_id: "DevOption.devoption-theme" + version: "0.0.5" + installs: 304 + rating: 0 + ratings: 0 + author: "DevOption" + repo: "git+https://github.com/devoption/vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DevOption.devoption-theme" +colors: + bg: "#F1F5F8" + fg: "#3D4852" + black: "#3D4852" + red: "#D32F2F" + green: "#009688" + yellow: "#FFA000" + blue: "#1976D2" + magenta: "#C2185B" + cyan: "#B2EBF2" + white: "#F1F5F8" + brightBlack: "#3D4852" + brightRed: "#D32F2F" + brightGreen: "#009688" + brightYellow: "#FFA000" + brightBlue: "#1976D2" + brightMagenta: "#C2185B" + brightCyan: "#B2EBF2" + brightWhite: "#F1F5F8" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 85.3 + black: 85.3 + red: 66.5 + green: 57.4 + yellow: 33 + blue: 65.1 + magenta: 71.1 + cyan: 8.8 + white: 0 + brightBlack: 85.3 + brightRed: 66.5 + brightGreen: 57.4 + brightYellow: 33 + brightBlue: 65.1 + brightMagenta: 71.1 + brightCyan: 8.8 + brightWhite: 0 diff --git a/themes/devr.yaml b/themes/devr.yaml index 486f6743..d8eb18fa 100644 --- a/themes/devr.yaml +++ b/themes/devr.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevR.monokai-dark" version: "0.0.4" installs: 2924 + rating: 0 + ratings: 0 author: "DevR" repo: "https://github.com/ratul-devR/Monokai-Dark" url: "https://marketplace.visualstudio.com/items?itemName=DevR.monokai-dark" diff --git a/themes/devsena-ultra-dark.yaml b/themes/devsena-ultra-dark.yaml index ab7be301..3b5d99d4 100644 --- a/themes/devsena-ultra-dark.yaml +++ b/themes/devsena-ultra-dark.yaml @@ -1,11 +1,13 @@ name: "DevSena (ultra dark)" source: - marketplace_id: "AsutoshSahoo.devsena-dark" + marketplace_id: "AsutoshSahoo.code-in-dark" version: "0.0.1" - installs: 29 + installs: 21 + rating: 0 + ratings: 0 author: "Asutosh Sahoo" repo: "https://github.com/DearAsutosh/DevSena-vsCode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=AsutoshSahoo.devsena-dark" + url: "https://marketplace.visualstudio.com/items?itemName=AsutoshSahoo.code-in-dark" colors: bg: "#000000" fg: "#CDC9FF" diff --git a/themes/devtheme.yaml b/themes/devtheme.yaml index 7955febf..78263f69 100644 --- a/themes/devtheme.yaml +++ b/themes/devtheme.yaml @@ -1,50 +1,52 @@ -name: "devTheme" +name: "DevTheme" source: - marketplace_id: "devTH.owlTh" - version: "0.3.0" - installs: 3833 - author: "devTH" - repo: "https://github.com/Ajay-308/devTheme" - url: "https://marketplace.visualstudio.com/items?itemName=devTH.owlTh" + marketplace_id: "devTheme.devtheme" + version: "0.0.3" + installs: 75 + rating: 0 + ratings: 0 + author: "devTheme" + repo: "https://github.com/mrgold92/devtheme" + url: "https://marketplace.visualstudio.com/items?itemName=devTheme.devtheme" colors: - bg: "#000000" - fg: "#FFFFFF" + bg: "#353538" + fg: "#D4D4D4" black: "#000000" red: "#CD3131" - green: "#2DE3FF" + green: "#0DBC79" yellow: "#E5E510" blue: "#2472C8" magenta: "#BC3FBC" cyan: "#11A8CD" white: "#E5E5E5" - brightBlack: "#929292" + brightBlack: "#666666" brightRed: "#F14C4C" - brightGreen: "#3EFFF6" + brightGreen: "#23D18B" brightYellow: "#F5F543" brightBlue: "#3B8EEA" brightMagenta: "#D670D6" brightCyan: "#29B8DB" - brightWhite: "#6796D1" + brightWhite: "#E5E5E5" meta: mode: "dark" accent: "pink" hue: null pair: null contrast: - fg: 107.9 + fg: 74 black: 0 - red: 27.7 - green: 78.3 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 43.6 - brightRed: 39.6 - brightGreen: 92.3 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 44.4 + red: 21.2 + green: 47.5 + yellow: 80.1 + blue: 22 + magenta: 24.3 + cyan: 42.1 + white: 84.5 + brightBlack: 16.6 + brightRed: 33.1 + brightGreen: 58.1 + brightYellow: 90.2 + brightBlue: 34.5 + brightMagenta: 39.9 + brightCyan: 49.9 + brightWhite: 84.5 diff --git a/themes/devx-dark.yaml b/themes/devx-dark.yaml index a65420a0..2cd4a26c 100644 --- a/themes/devx-dark.yaml +++ b/themes/devx-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devx-dark-theme.devx-dark-theme" version: "0.0.1" installs: 228 + rating: 5 + ratings: 1 author: "DevX Dark Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=devx-dark-theme.devx-dark-theme" diff --git a/themes/dew-grey.yaml b/themes/dew-grey.yaml index 06d87a8d..14d5f26d 100644 --- a/themes/dew-grey.yaml +++ b/themes/dew-grey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DEW.dew-grey" version: "2.1.0" installs: 1346 + rating: 5 + ratings: 1 author: "DEW" repo: "https://github.com/dewanshDT/DEW-GREY" url: "https://marketplace.visualstudio.com/items?itemName=DEW.dew-grey" diff --git a/themes/dewart.yaml b/themes/dewart.yaml new file mode 100644 index 00000000..98a8d2ca --- /dev/null +++ b/themes/dewart.yaml @@ -0,0 +1,52 @@ +name: "DewArt" +source: + marketplace_id: "DewArt.dewart-color-themes" + version: "0.0.5" + installs: 176 + rating: 0 + ratings: 0 + author: "DewArt" + repo: "https://github.com/DewArt-studio/dewart-color-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DewArt.dewart-color-themes" +colors: + bg: "#0B0B13" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 284 + pair: null + contrast: + fg: 75.5 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/dfp-idle.yaml b/themes/dfp-idle.yaml index 9abc8dc5..ba2bb214 100644 --- a/themes/dfp-idle.yaml +++ b/themes/dfp-idle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anto.dafluffypotato-s-idle-theme" version: "0.0.2" installs: 991 + rating: 0 + ratings: 0 author: "anto" repo: null url: "https://marketplace.visualstudio.com/items?itemName=anto.dafluffypotato-s-idle-theme" diff --git a/themes/dhamma-dark.yaml b/themes/dhamma-dark.yaml index fc453704..f9f5c046 100644 --- a/themes/dhamma-dark.yaml +++ b/themes/dhamma-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tanmaybalwa.dhamma-theme" version: "1.0.0" installs: 16 + rating: 0 + ratings: 0 author: "Tanmay Balwa" repo: "https://github.com/your-username/dhamma-theme" url: "https://marketplace.visualstudio.com/items?itemName=tanmaybalwa.dhamma-theme" diff --git a/themes/dhamma-light.yaml b/themes/dhamma-light.yaml index af3989b9..b0861def 100644 --- a/themes/dhamma-light.yaml +++ b/themes/dhamma-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tanmaybalwa.dhamma-theme" version: "1.0.0" installs: 16 + rating: 0 + ratings: 0 author: "Tanmay Balwa" repo: "https://github.com/your-username/dhamma-theme" url: "https://marketplace.visualstudio.com/items?itemName=tanmaybalwa.dhamma-theme" diff --git a/themes/dharam-gfx-anthracite.yaml b/themes/dharam-gfx-anthracite.yaml index 19c37319..7a1b2daf 100644 --- a/themes/dharam-gfx-anthracite.yaml +++ b/themes/dharam-gfx-anthracite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" version: "0.0.7" installs: 660 + rating: 5 + ratings: 1 author: "dharmendra kumar" repo: "https://github.com/dharam-gfx/dharam-gfx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" diff --git a/themes/dharam-gfx-arc-blueberry.yaml b/themes/dharam-gfx-arc-blueberry.yaml index 3b428259..c94027a8 100644 --- a/themes/dharam-gfx-arc-blueberry.yaml +++ b/themes/dharam-gfx-arc-blueberry.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" version: "0.0.7" installs: 660 + rating: 5 + ratings: 1 author: "dharmendra kumar" repo: "https://github.com/dharam-gfx/dharam-gfx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" diff --git a/themes/dharam-gfx-arc-eggplant.yaml b/themes/dharam-gfx-arc-eggplant.yaml index 9ee23923..6a0f97df 100644 --- a/themes/dharam-gfx-arc-eggplant.yaml +++ b/themes/dharam-gfx-arc-eggplant.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" version: "0.0.7" installs: 660 + rating: 5 + ratings: 1 author: "dharmendra kumar" repo: "https://github.com/dharam-gfx/dharam-gfx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" diff --git a/themes/dharam-gfx-arc-reversed.yaml b/themes/dharam-gfx-arc-reversed.yaml index 17824750..6f8cf915 100644 --- a/themes/dharam-gfx-arc-reversed.yaml +++ b/themes/dharam-gfx-arc-reversed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" version: "0.0.7" installs: 660 + rating: 5 + ratings: 1 author: "dharmendra kumar" repo: "https://github.com/dharam-gfx/dharam-gfx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" diff --git a/themes/dharam-gfx-gold.yaml b/themes/dharam-gfx-gold.yaml new file mode 100644 index 00000000..da9a32a8 --- /dev/null +++ b/themes/dharam-gfx-gold.yaml @@ -0,0 +1,52 @@ +name: "dharam-gfx-gold" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 660 + rating: 5 + ratings: 1 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" +colors: + bg: "#111418" + fg: "#BEC6D0" + black: "#111418" + red: "#E35535" + green: "#00A884" + yellow: "#C7910C" + blue: "#11B7D4" + magenta: "#D46EC0" + cyan: "#38C7BD" + white: "#BEC6D0" + brightBlack: "#3A4551" + brightRed: "#FF4319" + brightGreen: "#00A884" + brightYellow: "#D39600" + brightBlue: "#00C3E5" + brightMagenta: "#F052D1" + brightCyan: "#12EDDE" + brightWhite: "#F9FAFB" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 70.9 + black: 0 + red: 37 + green: 44.7 + yellow: 47.4 + blue: 54.6 + magenta: 43.6 + cyan: 61.2 + white: 70.9 + brightBlack: 9.1 + brightRed: 40.5 + brightGreen: 44.7 + brightYellow: 51 + brightBlue: 60.9 + brightMagenta: 44.4 + brightCyan: 80.6 + brightWhite: 103.8 diff --git a/themes/dharam-gfx-hacker-theme.yaml b/themes/dharam-gfx-hacker-theme.yaml index 7fc4bb18..55cb8ee9 100644 --- a/themes/dharam-gfx-hacker-theme.yaml +++ b/themes/dharam-gfx-hacker-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" version: "0.0.7" installs: 660 + rating: 5 + ratings: 1 author: "dharmendra kumar" repo: "https://github.com/dharam-gfx/dharam-gfx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" diff --git a/themes/dharam-gfx-hight-contrast.yaml b/themes/dharam-gfx-hight-contrast.yaml index a74a3cb5..1e3097d7 100644 --- a/themes/dharam-gfx-hight-contrast.yaml +++ b/themes/dharam-gfx-hight-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" version: "0.0.7" installs: 660 + rating: 5 + ratings: 1 author: "dharmendra kumar" repo: "https://github.com/dharam-gfx/dharam-gfx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" diff --git a/themes/dharam-gfx-webdevcody.yaml b/themes/dharam-gfx-webdevcody.yaml index 88b90bff..c40a2bac 100644 --- a/themes/dharam-gfx-webdevcody.yaml +++ b/themes/dharam-gfx-webdevcody.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" version: "0.0.7" installs: 660 + rating: 5 + ratings: 1 author: "dharmendra kumar" repo: "https://github.com/dharam-gfx/dharam-gfx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" diff --git a/themes/diabo-theme.yaml b/themes/diabo-theme.yaml index b0783d5b..5fa08b27 100644 --- a/themes/diabo-theme.yaml +++ b/themes/diabo-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vinciuscr.diabo" version: "0.0.1" installs: 62 + rating: 0 + ratings: 0 author: "Vinícius Castelani Reck" repo: null url: "https://marketplace.visualstudio.com/items?itemName=vinciuscr.diabo" diff --git a/themes/diamond-theme.yaml b/themes/diamond-theme.yaml index a21d0a34..13a17db8 100644 --- a/themes/diamond-theme.yaml +++ b/themes/diamond-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DiaxManPl.diamondtheme" version: "1.1.3" installs: 417 + rating: 0 + ratings: 0 author: "DiaxManPl" repo: "https://github.com/DiaxManPl/DiamondTheme" url: "https://marketplace.visualstudio.com/items?itemName=DiaxManPl.diamondtheme" diff --git a/themes/digitaliss-light.yaml b/themes/digitaliss-light.yaml new file mode 100644 index 00000000..f1a31176 --- /dev/null +++ b/themes/digitaliss-light.yaml @@ -0,0 +1,52 @@ +name: "digitaliss Light" +source: + marketplace_id: "dgtlss.digitaliss" + version: "2.0.2" + installs: 122 + rating: 0 + ratings: 0 + author: "dgtlss" + repo: "https://github.com/dgtlss/digitaliss" + url: "https://marketplace.visualstudio.com/items?itemName=dgtlss.digitaliss" +colors: + bg: "#FAFAFA" + fg: "#4A4A4A" + black: "#383A42" + red: "#E45649" + green: "#44A14F" + yellow: "#C18401" + blue: "#4078F2" + magenta: "#A626A4" + cyan: "#0997B3" + white: "#F0F0F3" + brightBlack: "#A0A1A7" + brightRed: "#E45649" + brightGreen: "#50A14F" + brightYellow: "#C18401" + brightBlue: "#5589F5" + brightMagenta: "#A626A4" + brightCyan: "#0184BC" + brightWhite: "#383A42" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 87.3 + black: 93.2 + red: 60.4 + green: 56.5 + yellow: 55.8 + blue: 64.3 + magenta: 76.2 + cyan: 58.5 + white: 0 + brightBlack: 47.4 + brightRed: 60.4 + brightGreen: 56 + brightYellow: 55.8 + brightBlue: 57.6 + brightMagenta: 76.2 + brightCyan: 65.1 + brightWhite: 93.2 diff --git a/themes/digitaliss-pastel.yaml b/themes/digitaliss-pastel.yaml new file mode 100644 index 00000000..df732acc --- /dev/null +++ b/themes/digitaliss-pastel.yaml @@ -0,0 +1,52 @@ +name: "digitaliss Pastel" +source: + marketplace_id: "dgtlss.digitaliss" + version: "2.0.2" + installs: 122 + rating: 0 + ratings: 0 + author: "dgtlss" + repo: "https://github.com/dgtlss/digitaliss" + url: "https://marketplace.visualstudio.com/items?itemName=dgtlss.digitaliss" +colors: + bg: "#1E1D2B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 287 + pair: null + contrast: + fg: 78.6 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.7 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/digitaliss.yaml b/themes/digitaliss.yaml new file mode 100644 index 00000000..8030eac2 --- /dev/null +++ b/themes/digitaliss.yaml @@ -0,0 +1,52 @@ +name: "digitaliss" +source: + marketplace_id: "dgtlss.digitaliss" + version: "2.0.2" + installs: 122 + rating: 0 + ratings: 0 + author: "dgtlss" + repo: "https://github.com/dgtlss/digitaliss" + url: "https://marketplace.visualstudio.com/items?itemName=dgtlss.digitaliss" +colors: + bg: "#1A1925" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 288 + pair: null + contrast: + fg: 79.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.6 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/dimi-theme-dark.yaml b/themes/dimi-theme-dark.yaml index e1f741c1..cf1f1323 100644 --- a/themes/dimi-theme-dark.yaml +++ b/themes/dimi-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Dimi.dimi" version: "1.0.9" installs: 2863 + rating: 5 + ratings: 1 author: "Dimi" repo: "https://github.com/Dimi15/dimi-theme" url: "https://marketplace.visualstudio.com/items?itemName=Dimi.dimi" diff --git a/themes/dimi-theme-darker.yaml b/themes/dimi-theme-darker.yaml index b9af9a40..dc01b6a2 100644 --- a/themes/dimi-theme-darker.yaml +++ b/themes/dimi-theme-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Dimi.dimi" version: "1.0.9" installs: 2863 + rating: 5 + ratings: 1 author: "Dimi" repo: "https://github.com/Dimi15/dimi-theme" url: "https://marketplace.visualstudio.com/items?itemName=Dimi.dimi" diff --git a/themes/dimmed-theme.yaml b/themes/dimmed-theme.yaml index f952e8c0..43c2844a 100644 --- a/themes/dimmed-theme.yaml +++ b/themes/dimmed-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AleCaste.dimmed-theme" version: "0.0.16" installs: 1128 + rating: 5 + ratings: 1 author: "AleCaste" repo: "https://github.com/AleCaste/dimmed-theme" url: "https://marketplace.visualstudio.com/items?itemName=AleCaste.dimmed-theme" diff --git a/themes/dimmed.yaml b/themes/dimmed.yaml index 62534f27..012b6280 100644 --- a/themes/dimmed.yaml +++ b/themes/dimmed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shoizz.dimmed" version: "0.0.3" installs: 4853 + rating: 5 + ratings: 1 author: "denis" repo: "https://github.com/Shoizz/vscode-theme-dimmed" url: "https://marketplace.visualstudio.com/items?itemName=shoizz.dimmed" diff --git a/themes/dioximo-dark.yaml b/themes/dioximo-dark.yaml index e4cb91f2..9e9f909f 100644 --- a/themes/dioximo-dark.yaml +++ b/themes/dioximo-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "omisai.dioximo" version: "1.0.3" installs: 32 + rating: 5 + ratings: 1 author: "Omisai Technologies" repo: "https://github.com/omisai-tech/dioximo" url: "https://marketplace.visualstudio.com/items?itemName=omisai.dioximo" diff --git a/themes/dioximo-light.yaml b/themes/dioximo-light.yaml index b05ff7aa..21917140 100644 --- a/themes/dioximo-light.yaml +++ b/themes/dioximo-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "omisai.dioximo" version: "1.0.3" installs: 32 + rating: 5 + ratings: 1 author: "Omisai Technologies" repo: "https://github.com/omisai-tech/dioximo" url: "https://marketplace.visualstudio.com/items?itemName=omisai.dioximo" diff --git a/themes/discord-onyx.yaml b/themes/discord-onyx.yaml index ac682ec2..8cf00f36 100644 --- a/themes/discord-onyx.yaml +++ b/themes/discord-onyx.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zangetsu002.dark-discord-theme" version: "1.0.0" installs: 307 + rating: 0 + ratings: 0 author: "zangetsu002" repo: "https://github.com/zangetsu02/dark-discord-theme" url: "https://marketplace.visualstudio.com/items?itemName=zangetsu002.dark-discord-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 61.8 black: 0 diff --git a/themes/discord-theme.yaml b/themes/discord-theme.yaml index cea6f792..9753451e 100644 --- a/themes/discord-theme.yaml +++ b/themes/discord-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tanmay.discord-theme" version: "1.0.6" installs: 61671 + rating: 4.83 + ratings: 6 author: "tanmay" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tanmay.discord-theme" diff --git a/themes/dislexic.yaml b/themes/dislexic.yaml index 4cab06c1..4faf3668 100644 --- a/themes/dislexic.yaml +++ b/themes/dislexic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SpeedyLom.dislexic-vscode" version: "2.1.0" installs: 2005 + rating: 5 + ratings: 2 author: "SpeedyLom" repo: "https://github.com/SpeedyLom/dislexic-vscode" url: "https://marketplace.visualstudio.com/items?itemName=SpeedyLom.dislexic-vscode" diff --git a/themes/div-s-theme.yaml b/themes/div-s-theme.yaml index 4a76bc95..e02b9943 100644 --- a/themes/div-s-theme.yaml +++ b/themes/div-s-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dec82000.div-s-theme" version: "0.0.4" installs: 1155 + rating: 5 + ratings: 5 author: "Divyansh Jain" repo: "https://github.com/divyansh-gq/div-s-theme" url: "https://marketplace.visualstudio.com/items?itemName=dec82000.div-s-theme" diff --git a/themes/dive-bar.yaml b/themes/dive-bar.yaml index c6762728..740c3642 100644 --- a/themes/dive-bar.yaml +++ b/themes/dive-bar.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mattseddon.vscode-dive-bar-theme" version: "0.1.6" installs: 1288 + rating: 5 + ratings: 2 author: "mattseddon" repo: "https://github.com/mattseddon/vscode-dive-bar-theme" url: "https://marketplace.visualstudio.com/items?itemName=mattseddon.vscode-dive-bar-theme" diff --git a/themes/division-group-dark-theme.yaml b/themes/division-group-dark-theme.yaml new file mode 100644 index 00000000..3d56b176 --- /dev/null +++ b/themes/division-group-dark-theme.yaml @@ -0,0 +1,52 @@ +name: "diVision Group Dark Theme" +source: + marketplace_id: "diVisionGroup.division-group-dark-theme" + version: "0.0.7" + installs: 150 + rating: 0 + ratings: 0 + author: "diVision Group" + repo: "https://github.com/diVision-Group/division-group-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diVisionGroup.division-group-dark-theme" +colors: + bg: "#0D0126" + fg: "#F2F2F2" + black: "#282C34" + red: "#E06C75" + green: "#4CD62B" + yellow: "#E5C07B" + blue: "#1F004E" + magenta: "#D33682" + cyan: "#56B6C2" + white: "#DCDFE4" + brightBlack: "#5A6374" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#DCDFE4" +meta: + mode: "dark" + accent: "green" + hue: 292 + pair: null + contrast: + fg: 99 + black: 0 + red: 42.8 + green: 66.1 + yellow: 71.3 + blue: 0 + magenta: 31.1 + cyan: 55.3 + white: 86.8 + brightBlack: 21.3 + brightRed: 42.8 + brightGreen: 63 + brightYellow: 71.3 + brightBlue: 55.4 + brightMagenta: 45.8 + brightCyan: 55.3 + brightWhite: 86.8 diff --git a/themes/dj-s-purple.yaml b/themes/dj-s-purple.yaml index c2523f00..da7b22df 100644 --- a/themes/dj-s-purple.yaml +++ b/themes/dj-s-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GroganSoft.djpurple" version: "1.1.3" installs: 121 + rating: 0 + ratings: 0 author: "GroganSoft" repo: "https://dev.azure.com/grogansoft/DJPurple%20VS%20Code%20Theme/" url: "https://marketplace.visualstudio.com/items?itemName=GroganSoft.djpurple" diff --git a/themes/djolof.yaml b/themes/djolof.yaml index 66356ef2..3520d02a 100644 --- a/themes/djolof.yaml +++ b/themes/djolof.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daoodaba975.taaru" version: "3.0.0" installs: 1693 + rating: 5 + ratings: 3 author: "Daooda" repo: "https://github.com/daoodaba975/taaru" url: "https://marketplace.visualstudio.com/items?itemName=daoodaba975.taaru" diff --git a/themes/github-dark-high-contrast.yaml b/themes/dk-dark-high-contrast.yaml similarity index 70% rename from themes/github-dark-high-contrast.yaml rename to themes/dk-dark-high-contrast.yaml index dece49f8..7bbf653e 100644 --- a/themes/github-dark-high-contrast.yaml +++ b/themes/dk-dark-high-contrast.yaml @@ -1,11 +1,13 @@ -name: "GitHub Dark High Contrast" +name: "DK Dark High Contrast" source: - marketplace_id: "AnasFiguigui.dark-reign-theme" - version: "1.0.4" - installs: 24 - author: "AnasFiguigui" - repo: "https://github.com/AnasFiguigui/dark-reign-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AnasFiguigui.dark-reign-theme" + marketplace_id: "devendrakanojiya.devendrakanojiya" + version: "0.0.3" + installs: 168 + rating: 0 + ratings: 0 + author: "Devendra Kanojiya" + repo: "https://github.com/devendrakanojiya/codension" + url: "https://marketplace.visualstudio.com/items?itemName=devendrakanojiya.devendrakanojiya" colors: bg: "#0A0C10" fg: "#F0F3F6" diff --git a/themes/dna-helix.yaml b/themes/dna-helix.yaml index 73f8e23b..84f9015a 100644 --- a/themes/dna-helix.yaml +++ b/themes/dna-helix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodewithBismillah.chroma-library" version: "1.2.1" installs: 358 + rating: 5 + ratings: 1 author: "Code with Bismillah" repo: "https://github.com/mubashir1837/Chroma-Library" url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" diff --git a/themes/dodimmed-dark.yaml b/themes/dodimmed-dark.yaml index 3f7b153c..74decdf1 100644 --- a/themes/dodimmed-dark.yaml +++ b/themes/dodimmed-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "doolooper.do-dimmed" version: "0.1.0" installs: 558 + rating: 0 + ratings: 0 author: "Mahdi Harati" repo: "https://github.com/Doolooper/DoDimmed" url: "https://marketplace.visualstudio.com/items?itemName=doolooper.do-dimmed" diff --git a/themes/doems-sunset.yaml b/themes/doems-sunset.yaml new file mode 100644 index 00000000..fd86b357 --- /dev/null +++ b/themes/doems-sunset.yaml @@ -0,0 +1,52 @@ +name: "Doems Sunset" +source: + marketplace_id: "doemsdagding.doems-sunset-theme" + version: "1.0.0" + installs: 18 + rating: 0 + ratings: 0 + author: "doemsdagding" + repo: "https://github.com/doems/doems-sunset-theme" + url: "https://marketplace.visualstudio.com/items?itemName=doemsdagding.doems-sunset-theme" +colors: + bg: "#191B24" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + pair: null + contrast: + fg: 79 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.3 + cyan: 47.1 + white: 89.5 + brightBlack: 21.5 + brightRed: 38.1 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/doli-soft-green.yaml b/themes/doli-soft-green.yaml new file mode 100644 index 00000000..536f478f --- /dev/null +++ b/themes/doli-soft-green.yaml @@ -0,0 +1,52 @@ +name: "Doli Soft Green" +source: + marketplace_id: "LQYld.doli-theme" + version: "0.2.3" + installs: 124 + rating: 0 + ratings: 0 + author: "LQYld" + repo: "https://github.com/LQYld/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LQYld.doli-theme" +colors: + bg: "#FFFAE8" + fg: "#222222" + black: "#000000" + red: "#F51818" + green: "#43B244" + yellow: "#F2AE49" + blue: "#EEE8D5" + magenta: "#A37ACC" + cyan: "#207F4C" + white: "#6C7880" + brightBlack: "#6C7680" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#FF9940" + brightBlue: "#55B4D4" + brightMagenta: "#FE76FF" + brightCyan: "#39CBCC" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.8 + black: 103 + red: 63.2 + green: 49.4 + yellow: 33.5 + blue: 8 + magenta: 58.1 + cyan: 71.1 + white: 68.4 + brightBlack: 69.1 + brightRed: 51.3 + brightGreen: 45.4 + brightYellow: 38.2 + brightBlue: 43.4 + brightMagenta: 41 + brightCyan: 34.8 + brightWhite: 103 diff --git a/themes/doli-universal.yaml b/themes/doli-universal.yaml index d7bcec33..051b3860 100644 --- a/themes/doli-universal.yaml +++ b/themes/doli-universal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EthanLi.ethan-li-cyber-glow-theme" version: "1.0.3" installs: 58 + rating: 0 + ratings: 0 author: "EthanLi" repo: "https://github.com/LQYld/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=EthanLi.ethan-li-cyber-glow-theme" diff --git a/themes/doli-visual-studio.yaml b/themes/doli-visual-studio.yaml index 41c121c5..039c96c4 100644 --- a/themes/doli-visual-studio.yaml +++ b/themes/doli-visual-studio.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EthanLi.ethan-li-cyber-glow-theme" version: "1.0.3" installs: 58 + rating: 0 + ratings: 0 author: "EthanLi" repo: "https://github.com/LQYld/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=EthanLi.ethan-li-cyber-glow-theme" diff --git a/themes/dominator-paralyzer.yaml b/themes/dominator-paralyzer.yaml index 8f768168..2fc4d9ad 100644 --- a/themes/dominator-paralyzer.yaml +++ b/themes/dominator-paralyzer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tomocy.dominator" version: "0.7.0" installs: 1228 + rating: 5 + ratings: 3 author: "tomocy" repo: "https://github.com/tomocy/dominator-vscode" url: "https://marketplace.visualstudio.com/items?itemName=tomocy.dominator" diff --git a/themes/domtheme.yaml b/themes/domtheme.yaml index 08fe1de2..1655d8eb 100644 --- a/themes/domtheme.yaml +++ b/themes/domtheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DomTheme.DomTheme" version: "0.0.1" installs: 2262 + rating: 0 + ratings: 0 author: "DomTheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DomTheme.DomTheme" diff --git a/themes/doom-one-dark.yaml b/themes/doom-one-dark.yaml index cb96dd85..c5edfa2a 100644 --- a/themes/doom-one-dark.yaml +++ b/themes/doom-one-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lroolle.doom-themes" version: "1.2.1" installs: 513 + rating: 0 + ratings: 0 author: "lroolle" repo: "https://github.com/lroolle/doom-one-theme" url: "https://marketplace.visualstudio.com/items?itemName=lroolle.doom-themes" diff --git a/themes/doom-one-light.yaml b/themes/doom-one-light.yaml index c261215c..82561828 100644 --- a/themes/doom-one-light.yaml +++ b/themes/doom-one-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lroolle.doom-themes" version: "1.2.1" installs: 513 + rating: 0 + ratings: 0 author: "lroolle" repo: "https://github.com/lroolle/doom-one-theme" url: "https://marketplace.visualstudio.com/items?itemName=lroolle.doom-themes" diff --git a/themes/doom-one.yaml b/themes/doom-one.yaml index 0a89c5c0..b94aad2b 100644 --- a/themes/doom-one.yaml +++ b/themes/doom-one.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "L-Nafaryus.doom-one-theme" version: "0.1.1" installs: 2628 + rating: 5 + ratings: 1 author: "L-Nafaryus" repo: "https://github.com/L-Nafaryus/doom-one-theme" url: "https://marketplace.visualstudio.com/items?itemName=L-Nafaryus.doom-one-theme" diff --git a/themes/dooshtheme.yaml b/themes/dooshtheme.yaml index 53d2758d..a22b54a1 100644 --- a/themes/dooshtheme.yaml +++ b/themes/dooshtheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dooshii.dooshtheme" version: "0.0.1" installs: 16 + rating: 0 + ratings: 0 author: "dooshii" repo: "https://github.com/dooshiifox/dotfiles" url: "https://marketplace.visualstudio.com/items?itemName=dooshii.dooshtheme" diff --git a/themes/dork.yaml b/themes/dork.yaml index 380bce85..56a65c0e 100644 --- a/themes/dork.yaml +++ b/themes/dork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "goldyflakes.dork" version: "0.0.1" installs: 117 + rating: 0 + ratings: 0 author: "goldyflakes" repo: "https://github.com/goldyflakes/dork-vscode" url: "https://marketplace.visualstudio.com/items?itemName=goldyflakes.dork" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 299 + pair: null contrast: fg: 86.7 black: 9.6 diff --git a/themes/dorkmode.yaml b/themes/dorkmode.yaml index 59a72ef8..acfc3689 100644 --- a/themes/dorkmode.yaml +++ b/themes/dorkmode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DomGiarrusso.dorkmode" version: "1.0.6" installs: 93 + rating: 0 + ratings: 0 author: "Dom Giarrusso" repo: "https://github.com/DomGiarrusso/Dorkmode" url: "https://marketplace.visualstudio.com/items?itemName=DomGiarrusso.dorkmode" diff --git a/themes/dot-developer-dark.yaml b/themes/dot-developer-dark.yaml index ec954fba..29cd169f 100644 --- a/themes/dot-developer-dark.yaml +++ b/themes/dot-developer-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "n-devs.vscode-dot-developer" version: "1.1.9" installs: 797 + rating: 5 + ratings: 1 author: "n-devs" repo: "https://github.com/n-devs/vscode-dot-developer" url: "https://marketplace.visualstudio.com/items?itemName=n-devs.vscode-dot-developer" diff --git a/themes/dotportal.yaml b/themes/dotportal.yaml index 83a616f2..43372173 100644 --- a/themes/dotportal.yaml +++ b/themes/dotportal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dotPortal.just-a-theme" version: "1.0.4" installs: 256 + rating: 0 + ratings: 0 author: "dotPortal" repo: "https://github.com/dotportal/just-a-theme" url: "https://marketplace.visualstudio.com/items?itemName=dotPortal.just-a-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77.7 black: 0 diff --git a/themes/dove.yaml b/themes/dove.yaml new file mode 100644 index 00000000..63882de5 --- /dev/null +++ b/themes/dove.yaml @@ -0,0 +1,52 @@ +name: "Dove" +source: + marketplace_id: "meyash.dove" + version: "0.0.1" + installs: 461 + rating: 5 + ratings: 1 + author: "Yashwant" + repo: "https://github.com/meyash/dove-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=meyash.dove" +colors: + bg: "#0E0B16" + fg: "#A2AABC" + black: "#26213B" + red: "#CD5360" + green: "#00FF00" + yellow: "#00FF7F" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#CD5360" + brightGreen: "#00FF00" + brightYellow: "#00FF7F" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "green" + hue: 296 + pair: null + contrast: + fg: 55.8 + black: 0 + red: 33.2 + green: 86.2 + yellow: 87.3 + blue: 68.6 + magenta: 62.1 + cyan: 68.6 + white: 55.8 + brightBlack: 11.9 + brightRed: 33.2 + brightGreen: 86.2 + brightYellow: 87.3 + brightBlue: 68.6 + brightMagenta: 62.1 + brightCyan: 68.6 + brightWhite: 55.8 diff --git a/themes/downpour-contrast.yaml b/themes/downpour-contrast.yaml index f14c9b8b..9c78b294 100644 --- a/themes/downpour-contrast.yaml +++ b/themes/downpour-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/downpour-light.yaml b/themes/downpour-light.yaml index afe57ae7..76fb343d 100644 --- a/themes/downpour-light.yaml +++ b/themes/downpour-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/downpour.yaml b/themes/downpour.yaml index 984317ae..29a9b4fb 100644 --- a/themes/downpour.yaml +++ b/themes/downpour.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/doyoubleed.yaml b/themes/doyoubleed.yaml index 5b448227..6bbbb65e 100644 --- a/themes/doyoubleed.yaml +++ b/themes/doyoubleed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GeoBrodas.geobrodas-theme-red-doyoubleed" version: "1.0.2" installs: 351 + rating: 5 + ratings: 1 author: "GeoBrodas" repo: "https://github.com/GeoBrodas/doyoubleed" url: "https://marketplace.visualstudio.com/items?itemName=GeoBrodas.geobrodas-theme-red-doyoubleed" diff --git a/themes/dqn.yaml b/themes/dqn.yaml new file mode 100644 index 00000000..195f53b6 --- /dev/null +++ b/themes/dqn.yaml @@ -0,0 +1,52 @@ +name: "dqn" +source: + marketplace_id: "dqn.dqn" + version: "0.0.6" + installs: 13 + rating: 0 + ratings: 0 + author: "dqn" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dqn.dqn" +colors: + bg: "#1A1F2E" + fg: "#E8F4F8" + black: "#0F141F" + red: "#E74C3C" + green: "#30D5C8" + yellow: "#FFEDA1" + blue: "#5DADE2" + magenta: "#17A2B8" + cyan: "#30D5C8" + white: "#E8F4F8" + brightBlack: "#4A5568" + brightRed: "#FF7F73" + brightGreen: "#5FF3E2" + brightYellow: "#FFF6C2" + brightBlue: "#85C1E9" + brightMagenta: "#C8A8E9" + brightCyan: "#66E5FF" + brightWhite: "#F6FBFF" +meta: + mode: "dark" + accent: "orange" + hue: 270 + pair: null + contrast: + fg: 97.2 + black: 0 + red: 35 + green: 66.8 + yellow: 93.9 + blue: 51.8 + magenta: 43 + cyan: 66.8 + white: 97.2 + brightBlack: 13.9 + brightRed: 52.1 + brightGreen: 84.1 + brightYellow: 99.1 + brightBlue: 63.1 + brightMagenta: 60.3 + brightCyan: 79 + brightWhite: 102.7 diff --git a/themes/dr-jones.yaml b/themes/dr-jones.yaml index 636ad722..0aad4433 100644 --- a/themes/dr-jones.yaml +++ b/themes/dr-jones.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rachael.rachaels-themes" version: "0.0.2" installs: 1170 + rating: 0 + ratings: 0 author: "Rachael" repo: "https://github.com/rbouissey/rachaelsthemes" url: "https://marketplace.visualstudio.com/items?itemName=Rachael.rachaels-themes" diff --git a/themes/draco-dark.yaml b/themes/draco-dark.yaml index f4bd9d56..464b533f 100644 --- a/themes/draco-dark.yaml +++ b/themes/draco-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Draco.draco-dark" version: "0.0.3" installs: 6845 + rating: 5 + ratings: 1 author: "Draco" repo: "https://github.com/PR7JW7L/vsc-draco-dark" url: "https://marketplace.visualstudio.com/items?itemName=Draco.draco-dark" diff --git a/themes/draconica.yaml b/themes/draconica.yaml index afa54d37..9832e6a4 100644 --- a/themes/draconica.yaml +++ b/themes/draconica.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daniloBrayann.blue-theme-dark" version: "0.0.37" installs: 454 + rating: 5 + ratings: 1 author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.blue-theme-dark" diff --git a/themes/dracula-2022.yaml b/themes/dracula-2022.yaml new file mode 100644 index 00000000..ba4b849d --- /dev/null +++ b/themes/dracula-2022.yaml @@ -0,0 +1,52 @@ +name: "Dracula-2022" +source: + marketplace_id: "dantevelli.stormdracula2022" + version: "0.2.0" + installs: 69 + rating: 0 + ratings: 0 + author: "dantevelli" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dantevelli.stormdracula2022" +colors: + bg: "#232525" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 77.6 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.8 + blue: 25.6 + magenta: 27.9 + cyan: 45.7 + white: 88.2 + brightBlack: 20.2 + brightRed: 36.7 + brightGreen: 61.7 + brightYellow: 93.8 + brightBlue: 38.2 + brightMagenta: 43.5 + brightCyan: 53.6 + brightWhite: 88.2 diff --git a/themes/dracula-at-dusk.yaml b/themes/dracula-at-dusk.yaml index 096d0000..e773106b 100644 --- a/themes/dracula-at-dusk.yaml +++ b/themes/dracula-at-dusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Telokis.theme-dracula-at-dusk" version: "1.0.6" installs: 12064 + rating: 0 + ratings: 0 author: "Telokis" repo: "https://gitlab.com/Telokis/dracula-at-dusk" url: "https://marketplace.visualstudio.com/items?itemName=Telokis.theme-dracula-at-dusk" diff --git a/themes/dracula-at-night.yaml b/themes/dracula-at-night.yaml index 34ccb6e0..873b1f4c 100644 --- a/themes/dracula-at-night.yaml +++ b/themes/dracula-at-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/dracula-dark.yaml b/themes/dracula-dark.yaml new file mode 100644 index 00000000..fa2b3f08 --- /dev/null +++ b/themes/dracula-dark.yaml @@ -0,0 +1,52 @@ +name: "Dracula Dark" +source: + marketplace_id: "f-hossen.dracula-theme-light-dark" + version: "0.0.2" + installs: 1099 + rating: 0 + ratings: 0 + author: "Farhad H." + repo: "https://github.com/f-hossen/dracula-theme-light-dark" + url: "https://marketplace.visualstudio.com/items?itemName=f-hossen.dracula-theme-light-dark" +colors: + bg: "#282A36" + fg: "#F6F6F4" + black: "#262626" + red: "#EE6666" + green: "#62E884" + yellow: "#E7EE98" + blue: "#BF9EEE" + magenta: "#F286C4" + cyan: "#97E1F1" + white: "#F6F6F4" + brightBlack: "#7B7F8B" + brightRed: "#F07C7C" + brightGreen: "#78F09A" + brightYellow: "#F6F6AE" + brightBlue: "#D6B4F7" + brightMagenta: "#F49DDA" + brightCyan: "#ADF6F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: "Dracula Light" + contrast: + fg: 97.9 + black: 0 + red: 40.3 + green: 73.5 + yellow: 88.8 + blue: 53.9 + magenta: 52.4 + cyan: 77.5 + white: 97.9 + brightBlack: 30.4 + brightRed: 46.5 + brightGreen: 79.2 + brightYellow: 95.2 + brightBlue: 65.6 + brightMagenta: 60.8 + brightCyan: 89.7 + brightWhite: 103.9 diff --git a/themes/dracula-dimmed-color-theme.yaml b/themes/dracula-dimmed-color-theme.yaml index 2dd05158..525618f8 100644 --- a/themes/dracula-dimmed-color-theme.yaml +++ b/themes/dracula-dimmed-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "scjorge.theme-dracula-dimmed" version: "0.1.1" installs: 2027 + rating: 0 + ratings: 0 author: "Jorge Silva" repo: "https://github.com/scjorge/dracula-dimmed" url: "https://marketplace.visualstudio.com/items?itemName=scjorge.theme-dracula-dimmed" diff --git a/themes/dracula-falcon.yaml b/themes/dracula-falcon.yaml index 183f2b3a..2721c9d7 100644 --- a/themes/dracula-falcon.yaml +++ b/themes/dracula-falcon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nandofalcao.dracula-falcon" version: "0.0.71" installs: 3760 + rating: 5 + ratings: 1 author: "Fernando Falcão" repo: null url: "https://marketplace.visualstudio.com/items?itemName=nandofalcao.dracula-falcon" diff --git a/themes/dracula-gray.yaml b/themes/dracula-gray.yaml index 9118cd6e..6dd7f231 100644 --- a/themes/dracula-gray.yaml +++ b/themes/dracula-gray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wivim-dev.graydraculatheme" version: "0.1.14" installs: 325 + rating: 0 + ratings: 0 author: "wivimdavid" repo: "https://github.com/WivimDavid/vscode-gray" url: "https://marketplace.visualstudio.com/items?itemName=wivim-dev.graydraculatheme" diff --git a/themes/dracula-high-contract.yaml b/themes/dracula-high-contract.yaml index 0ade3ddc..19a1a917 100644 --- a/themes/dracula-high-contract.yaml +++ b/themes/dracula-high-contract.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "datvo.theme-monokai-v2" version: "1.0.4" installs: 1745 + rating: 5 + ratings: 1 author: "Dat Vo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=datvo.theme-monokai-v2" diff --git a/themes/dracula-light.yaml b/themes/dracula-light.yaml index 5e0d5f5a..5c69eee9 100644 --- a/themes/dracula-light.yaml +++ b/themes/dracula-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "f-hossen.dracula-theme-light-dark" version: "0.0.2" installs: 1099 + rating: 0 + ratings: 0 author: "Farhad H." repo: "https://github.com/f-hossen/dracula-theme-light-dark" url: "https://marketplace.visualstudio.com/items?itemName=f-hossen.dracula-theme-light-dark" diff --git a/themes/dracula-midnight.yaml b/themes/dracula-midnight.yaml index c64e721f..23afe88f 100644 --- a/themes/dracula-midnight.yaml +++ b/themes/dracula-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "realeinar.theme-dracula-midnight" version: "1.0.0" installs: 673 + rating: 5 + ratings: 1 author: "Einar" repo: "https://github.com/realeinar/dracula-midnight" url: "https://marketplace.visualstudio.com/items?itemName=realeinar.theme-dracula-midnight" diff --git a/themes/dracula-min-light-darker-theme.yaml b/themes/dracula-min-light-darker-theme.yaml index 8f191947..35331297 100644 --- a/themes/dracula-min-light-darker-theme.yaml +++ b/themes/dracula-min-light-darker-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ashrafhadden.dracula-dot-min" version: "2.1.1" installs: 12878 + rating: 5 + ratings: 5 author: "Ashraf Hadden" repo: "https://github.com/ashrafhadden/dracula.min" url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" diff --git a/themes/dracula-min-light-theme.yaml b/themes/dracula-min-light-theme.yaml index 73107d75..15d02bdc 100644 --- a/themes/dracula-min-light-theme.yaml +++ b/themes/dracula-min-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ashrafhadden.dracula-dot-min" version: "2.1.1" installs: 12878 + rating: 5 + ratings: 5 author: "Ashraf Hadden" repo: "https://github.com/ashrafhadden/dracula.min" url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" diff --git a/themes/dracula-min-white-darker-theme.yaml b/themes/dracula-min-white-darker-theme.yaml index c91fba55..d2233f61 100644 --- a/themes/dracula-min-white-darker-theme.yaml +++ b/themes/dracula-min-white-darker-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ashrafhadden.dracula-dot-min" version: "2.1.1" installs: 12878 + rating: 5 + ratings: 5 author: "Ashraf Hadden" repo: "https://github.com/ashrafhadden/dracula.min" url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" diff --git a/themes/dracula-min-white-theme.yaml b/themes/dracula-min-white-theme.yaml index 212d0dd1..e1037131 100644 --- a/themes/dracula-min-white-theme.yaml +++ b/themes/dracula-min-white-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ashrafhadden.dracula-dot-min" version: "2.1.1" installs: 12878 + rating: 5 + ratings: 5 author: "Ashraf Hadden" repo: "https://github.com/ashrafhadden/dracula.min" url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" diff --git a/themes/dracula-pro-black.yaml b/themes/dracula-pro-black.yaml index 6305270a..8a808910 100644 --- a/themes/dracula-pro-black.yaml +++ b/themes/dracula-pro-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "caiovellani.dracula-pro-free" version: "1.2.0" installs: 448 + rating: 5 + ratings: 1 author: "caiovellani" repo: "https://github.com/caiovellani/dracula-pro" url: "https://marketplace.visualstudio.com/items?itemName=caiovellani.dracula-pro-free" diff --git a/themes/dracula-pro.yaml b/themes/dracula-pro.yaml new file mode 100644 index 00000000..ef52f139 --- /dev/null +++ b/themes/dracula-pro.yaml @@ -0,0 +1,52 @@ +name: "Dracula Pro" +source: + marketplace_id: "caiovellani.dracula-pro-free" + version: "1.2.0" + installs: 448 + rating: 5 + ratings: 1 + author: "caiovellani" + repo: "https://github.com/caiovellani/dracula-pro" + url: "https://marketplace.visualstudio.com/items?itemName=caiovellani.dracula-pro-free" +colors: + bg: "#22212C" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF9580" + green: "#8AFF80" + yellow: "#FFFF80" + blue: "#9580FF" + magenta: "#FF80BF" + cyan: "#80FFEA" + white: "#F8F8F2" + brightBlack: "#7970A9" + brightRed: "#FFBFB3" + brightGreen: "#B9FFB3" + brightYellow: "#FFFFB3" + brightBlue: "#BFB3FF" + brightMagenta: "#FFB3D9" + brightCyan: "#B3FFF2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 289 + pair: null + contrast: + fg: 100.5 + black: 0 + red: 58.3 + green: 89 + yellow: 101.3 + blue: 41.8 + magenta: 54.6 + cyan: 91.8 + white: 100.5 + brightBlack: 28.3 + brightRed: 74.6 + brightGreen: 94.1 + brightYellow: 102.5 + brightBlue: 64.2 + brightMagenta: 71.7 + brightCyan: 96 + brightWhite: 105.4 diff --git a/themes/dracula.yaml b/themes/dracula.yaml index 2a20a28d..f97a537c 100644 --- a/themes/dracula.yaml +++ b/themes/dracula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "titouan.theme-dracula" version: "2.18.0" installs: 15187 + rating: 1.8 + ratings: 5 author: "Titouan CREACH" repo: "https://github.com/dracula/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=titouan.theme-dracula" diff --git a/themes/draculight.yaml b/themes/draculight.yaml index 09b949f5..88f315dd 100644 --- a/themes/draculight.yaml +++ b/themes/draculight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Nevyk.draculight" version: "1.1.0" installs: 1985 + rating: 5 + ratings: 1 author: "Nevyk" repo: "https://github.com/nevyk/draculight" url: "https://marketplace.visualstudio.com/items?itemName=Nevyk.draculight" diff --git a/themes/draculish.yaml b/themes/draculish.yaml index 7391dd83..cbc73f77 100644 --- a/themes/draculish.yaml +++ b/themes/draculish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gndf5000.dracul-ish" version: "1.0.1" installs: 901 + rating: 0 + ratings: 0 author: "gndf5000" repo: "https://github.com/GNDF5000/draculish" url: "https://marketplace.visualstudio.com/items?itemName=gndf5000.dracul-ish" diff --git a/themes/dragn-dark-color-theme.yaml b/themes/dragn-dark-color-theme.yaml index 29f28a54..0f693b19 100644 --- a/themes/dragn-dark-color-theme.yaml +++ b/themes/dragn-dark-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Miladfathy.dragan-color-theme" version: "2.0.8" installs: 69767 + rating: 5 + ratings: 9 author: "Milad Fathy" repo: "https://github.com/miladfathy" url: "https://marketplace.visualstudio.com/items?itemName=Miladfathy.dragan-color-theme" diff --git a/themes/dragon.yaml b/themes/dragon.yaml index b81a0878..2f9cedd8 100644 --- a/themes/dragon.yaml +++ b/themes/dragon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ttera-themes" version: "2.0.7" installs: 2044 + rating: 5 + ratings: 1 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" diff --git a/themes/dragonfly.yaml b/themes/dragonfly.yaml index 79cda355..65939352 100644 --- a/themes/dragonfly.yaml +++ b/themes/dragonfly.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thelayeredmind.dragonfly-theme" version: "1.0.1" installs: 1885 + rating: 0 + ratings: 0 author: "thelayeredmind" repo: "https://github.com/thelayeredmind/dragonfly-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thelayeredmind.dragonfly-theme" diff --git a/themes/dragonight.yaml b/themes/dragonight.yaml index 34e837f9..45f55667 100644 --- a/themes/dragonight.yaml +++ b/themes/dragonight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "teamdragonight.dragonight" version: "0.0.7" installs: 4065 + rating: 0 + ratings: 0 author: "teamdragonight" repo: "https://github.com/Akshaykumar2908/The-Dragonight" url: "https://marketplace.visualstudio.com/items?itemName=teamdragonight.dragonight" diff --git a/themes/drake.yaml b/themes/drake.yaml new file mode 100644 index 00000000..5582d207 --- /dev/null +++ b/themes/drake.yaml @@ -0,0 +1,52 @@ +name: "Drake" +source: + marketplace_id: "roogodev.drake-theme" + version: "0.0.3" + installs: 172 + rating: 5 + ratings: 1 + author: "rogodev" + repo: "https://github.com/rogodev/drake-theme" + url: "https://marketplace.visualstudio.com/items?itemName=roogodev.drake-theme" +colors: + bg: "#262A35" + fg: "#FEFEFE" + black: "#000000" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 269 + pair: null + contrast: + fg: 103.4 + black: 0 + red: 40.5 + green: 82 + yellow: 95.7 + blue: 50.8 + magenta: 51.7 + cyan: 81.1 + white: 99.1 + brightBlack: 25.2 + brightRed: 46 + brightGreen: 86.2 + brightYellow: 100.7 + brightBlue: 63.3 + brightMagenta: 59.7 + brightCyan: 93.9 + brightWhite: 104 diff --git a/themes/drakkar.yaml b/themes/drakkar.yaml index 05216ec0..71a4bdca 100644 --- a/themes/drakkar.yaml +++ b/themes/drakkar.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ubbeck.drakkar" version: "1.1.2" installs: 266 + rating: 0 + ratings: 0 author: "ubbeck" repo: "https://github.com/ubbeck/drakkar.theme" url: "https://marketplace.visualstudio.com/items?itemName=ubbeck.drakkar" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 248 + pair: null contrast: fg: 86.7 black: 0 diff --git a/themes/drasing-dark.yaml b/themes/drasing-dark.yaml index a3800a30..9f213324 100644 --- a/themes/drasing-dark.yaml +++ b/themes/drasing-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "drasing.drasing-dark-theme" version: "0.0.6" installs: 13 + rating: 0 + ratings: 0 author: "drasing" repo: "https://github.com/thiagoboize/drasing-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=drasing.drasing-dark-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/dreadbots-fork.yaml b/themes/dreadbots-fork.yaml index 817e9bd8..bae86ffd 100644 --- a/themes/dreadbots-fork.yaml +++ b/themes/dreadbots-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xynny.blazing-red" version: "0.0.1" installs: 7924 + rating: 0 + ratings: 0 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.blazing-red" diff --git a/themes/dreamer-theme.yaml b/themes/dreamer-theme.yaml index 0a4ccc3e..920e6752 100644 --- a/themes/dreamer-theme.yaml +++ b/themes/dreamer-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "onlyadaydreamer.dreamer-theme" version: "0.0.2" installs: 134 + rating: 0 + ratings: 0 author: "onlyadaydreamer" repo: null url: "https://marketplace.visualstudio.com/items?itemName=onlyadaydreamer.dreamer-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 59.6 black: 9 diff --git a/themes/dribbble-theme-light.yaml b/themes/dribbble-theme-light.yaml index 26895bc4..aaf50f5e 100644 --- a/themes/dribbble-theme-light.yaml +++ b/themes/dribbble-theme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MarvinSernee.dribbble-theme" version: "1.0.0" installs: 707 + rating: 5 + ratings: 1 author: "Marvin Sernee" repo: "https://github.com/MarvinMichel/dribbble-theme" url: "https://marketplace.visualstudio.com/items?itemName=MarvinSernee.dribbble-theme" diff --git a/themes/drifter.yaml b/themes/drifter.yaml index b9bf36cd..665b2356 100644 --- a/themes/drifter.yaml +++ b/themes/drifter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dhruvkoli.drifter" version: "0.0.1" installs: 44 + rating: 5 + ratings: 1 author: "DhruvKoli" repo: "https://github.com/dask-58/turbocodertheme" url: "https://marketplace.visualstudio.com/items?itemName=dhruvkoli.drifter" diff --git a/themes/drk.yaml b/themes/drk.yaml index 0030ebfa..46a6a4b6 100644 --- a/themes/drk.yaml +++ b/themes/drk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "u29dc.set" version: "2.0.7" installs: 1570 + rating: 0 + ratings: 0 author: "iinfin" repo: "https://github.com/u29dc/set-vscode" url: "https://marketplace.visualstudio.com/items?itemName=u29dc.set" diff --git a/themes/drukalu.yaml b/themes/drukalu.yaml new file mode 100644 index 00000000..61b292a1 --- /dev/null +++ b/themes/drukalu.yaml @@ -0,0 +1,52 @@ +name: "Drukalu" +source: + marketplace_id: "PhanTriVietHoang.vh-theme" + version: "0.0.4" + installs: 3 + rating: 0 + ratings: 0 + author: "PhanTriVietHoang" + repo: "https://github.com/phantriviethoang/vh-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.vh-theme" +colors: + bg: "#242530" + fg: "#EEFFFF" + black: "#242530" + red: "#FF8A7A" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#94D0FF" + magenta: "#FF85B8" + cyan: "#9AEDFE" + white: "#F1F1F0" + brightBlack: "#686868" + brightRed: "#FF8A7A" + brightGreen: "#5AF78E" + brightYellow: "#F3F99D" + brightBlue: "#94D0FF" + brightMagenta: "#FF85B8" + brightCyan: "#9AEDFE" + brightWhite: "#EEFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 281 + pair: null + contrast: + fg: 102.5 + black: 0 + red: 54.3 + green: 82 + yellow: 96.7 + blue: 71.2 + magenta: 55 + cyan: 85 + white: 95.6 + brightBlack: 20.9 + brightRed: 54.3 + brightGreen: 82 + brightYellow: 96.7 + brightBlue: 71.2 + brightMagenta: 55 + brightCyan: 85 + brightWhite: 102.5 diff --git a/themes/drukyul-dark.yaml b/themes/drukyul-dark.yaml index c91d4af4..c09472a3 100644 --- a/themes/drukyul-dark.yaml +++ b/themes/drukyul-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kashgurung.drukyul-themes" version: "1.1.0" installs: 529 + rating: 5 + ratings: 2 author: "Bikash Gurung" repo: "https://github.com/kashgurung/drukyul-themes" url: "https://marketplace.visualstudio.com/items?itemName=kashgurung.drukyul-themes" diff --git a/themes/drukyul-light.yaml b/themes/drukyul-light.yaml index 7d7266fb..67e10768 100644 --- a/themes/drukyul-light.yaml +++ b/themes/drukyul-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kashgurung.drukyul-themes" version: "1.1.0" installs: 529 + rating: 5 + ratings: 2 author: "Bikash Gurung" repo: "https://github.com/kashgurung/drukyul-themes" url: "https://marketplace.visualstudio.com/items?itemName=kashgurung.drukyul-themes" diff --git a/themes/drux-theme.yaml b/themes/drux-theme.yaml index f49d18ca..23c2da41 100644 --- a/themes/drux-theme.yaml +++ b/themes/drux-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DruxTech.drux-theme" version: "1.0.1" installs: 70 + rating: 0 + ratings: 0 author: "DruxTech" repo: "https://gitlab.com/khaniuk/drux-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=DruxTech.drux-theme" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 86.5 black: 0 diff --git a/themes/ds-rose.yaml b/themes/ds-rose.yaml index 115f199f..55241acf 100644 --- a/themes/ds-rose.yaml +++ b/themes/ds-rose.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MKDev.ds-rose" version: "0.2.0" installs: 770 + rating: 5 + ratings: 1 author: "MKDev" repo: "https://github.com/Martin-Kristensen-WD/DS-Rose" url: "https://marketplace.visualstudio.com/items?itemName=MKDev.ds-rose" diff --git a/themes/dsekon-theme.yaml b/themes/dsekon-theme.yaml new file mode 100644 index 00000000..db1ecacb --- /dev/null +++ b/themes/dsekon-theme.yaml @@ -0,0 +1,52 @@ +name: "DSekon Theme" +source: + marketplace_id: "DSekon.dsekon-theme" + version: "0.0.1" + installs: 18 + rating: 0 + ratings: 0 + author: "DSekon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=DSekon.dsekon-theme" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#4A505D" + red: "#F81141" + green: "#23974A" + yellow: "#FD7E57" + blue: "#285BFF" + magenta: "#8C62FD" + cyan: "#3A8AB2" + white: "#CCD5E5" + brightBlack: "#61697A" + brightRed: "#FC4A6D" + brightGreen: "#37BD58" + brightYellow: "#F6BE48" + brightBlue: "#199FFD" + brightMagenta: "#FC58F6" + brightCyan: "#50ACAE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 9.9 + red: 32.1 + green: 32.8 + yellow: 48.7 + blue: 22.6 + magenta: 30.8 + cyan: 31.8 + white: 76.5 + brightBlack: 20 + brightRed: 38.3 + brightGreen: 50.1 + brightYellow: 68.5 + brightBlue: 43.9 + brightMagenta: 46.9 + brightCyan: 45.9 + brightWhite: 103.7 diff --git a/themes/duck-in-the-dream.yaml b/themes/duck-in-the-dream.yaml index 9beaeaf4..7ae6730b 100644 --- a/themes/duck-in-the-dream.yaml +++ b/themes/duck-in-the-dream.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MEvesalTR.duck-mode-vscode" version: "0.9.7" installs: 2138 + rating: 5 + ratings: 1 author: "MEvesalTR" repo: "https://github.com/MEvesalTR/duck-mode" url: "https://marketplace.visualstudio.com/items?itemName=MEvesalTR.duck-mode-vscode" diff --git a/themes/duck-in-the-lake.yaml b/themes/duck-in-the-lake.yaml index 23db5a1f..3fbba8b1 100644 --- a/themes/duck-in-the-lake.yaml +++ b/themes/duck-in-the-lake.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MEvesalTR.duck-mode-vscode" version: "0.9.7" installs: 2138 + rating: 5 + ratings: 1 author: "MEvesalTR" repo: "https://github.com/MEvesalTR/duck-mode" url: "https://marketplace.visualstudio.com/items?itemName=MEvesalTR.duck-mode-vscode" diff --git a/themes/duck-story.yaml b/themes/duck-story.yaml index 3b55fe1e..c639d59d 100644 --- a/themes/duck-story.yaml +++ b/themes/duck-story.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andzhr.duck-story" version: "1.0.0" installs: 438 + rating: 0 + ratings: 0 author: "Andrey Zakharov" repo: "https://github.com/andzhr/duck-story-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andzhr.duck-story" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.8 black: 0 diff --git a/themes/duckcash.yaml b/themes/duckcash.yaml index 807b24fd..2ab58915 100644 --- a/themes/duckcash.yaml +++ b/themes/duckcash.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "duckcash.duckcash" version: "0.3.1" installs: 102 + rating: 0 + ratings: 0 author: "duckcash" repo: null url: "https://marketplace.visualstudio.com/items?itemName=duckcash.duckcash" diff --git a/themes/duckdevlabs.yaml b/themes/duckdevlabs.yaml index b050d808..f072f343 100644 --- a/themes/duckdevlabs.yaml +++ b/themes/duckdevlabs.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DuckDevbyAllanRamos.duckdevlabs" version: "0.3.0" installs: 118 + rating: 5 + ratings: 1 author: "DuckDev by Allan Ramos" repo: "https://github.com/allansrc/duckdevlabs-theme" url: "https://marketplace.visualstudio.com/items?itemName=DuckDevbyAllanRamos.duckdevlabs" diff --git a/themes/duckeys-blurple.yaml b/themes/duckeys-blurple.yaml index 9adb9a84..abb508b7 100644 --- a/themes/duckeys-blurple.yaml +++ b/themes/duckeys-blurple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BlurpleTheme.blurpletheme" version: "0.2.0" installs: 604 + rating: 0 + ratings: 0 author: "BlurpleTheme" repo: "https://github.com/Nova-develoment-team/Blurpled" url: "https://marketplace.visualstudio.com/items?itemName=BlurpleTheme.blurpletheme" diff --git a/themes/ducky-light.yaml b/themes/ducky-light.yaml index 189004fc..3650f576 100644 --- a/themes/ducky-light.yaml +++ b/themes/ducky-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "utsavgupta.theme-ducky-light" version: "0.0.4" installs: 1307 + rating: 0 + ratings: 0 author: "Utsav Gupta" repo: "https://github.com/utsavgupta/ducky-light" url: "https://marketplace.visualstudio.com/items?itemName=utsavgupta.theme-ducky-light" diff --git a/themes/dukemonokai-color-theme.yaml b/themes/dukemonokai-color-theme.yaml index cf08214e..f6c620d4 100644 --- a/themes/dukemonokai-color-theme.yaml +++ b/themes/dukemonokai-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cafeduke.dukemonokai" version: "0.0.2" installs: 436 + rating: 0 + ratings: 0 author: "cafeduke" repo: "https://github.com/cafeduke/vscode-dukemonokai-theme" url: "https://marketplace.visualstudio.com/items?itemName=cafeduke.dukemonokai" diff --git a/themes/dull-sun-dark.yaml b/themes/dull-sun-dark.yaml index 68e22216..edb703cd 100644 --- a/themes/dull-sun-dark.yaml +++ b/themes/dull-sun-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DullSun.dull-sun" version: "0.0.3" installs: 521 + rating: 0 + ratings: 0 author: "Dull Sun" repo: "https://github.com/leutzed/Dull-Sun-Theme" url: "https://marketplace.visualstudio.com/items?itemName=DullSun.dull-sun" diff --git a/themes/dull-sun-light.yaml b/themes/dull-sun-light.yaml index b63dac3b..0ce332ef 100644 --- a/themes/dull-sun-light.yaml +++ b/themes/dull-sun-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DullSun.dull-sun" version: "0.0.3" installs: 521 + rating: 0 + ratings: 0 author: "Dull Sun" repo: "https://github.com/leutzed/Dull-Sun-Theme" url: "https://marketplace.visualstudio.com/items?itemName=DullSun.dull-sun" diff --git a/themes/dull-sun.yaml b/themes/dull-sun.yaml index 26e38510..7cee3f87 100644 --- a/themes/dull-sun.yaml +++ b/themes/dull-sun.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DullSun.dull-sun" version: "0.0.3" installs: 521 + rating: 0 + ratings: 0 author: "Dull Sun" repo: "https://github.com/leutzed/Dull-Sun-Theme" url: "https://marketplace.visualstudio.com/items?itemName=DullSun.dull-sun" diff --git a/themes/dumdum-theme.yaml b/themes/dumdum-theme.yaml index a4536c61..8af46f45 100644 --- a/themes/dumdum-theme.yaml +++ b/themes/dumdum-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jstmax.dumdum-theme" version: "1.0.0" installs: 216 + rating: 5 + ratings: 1 author: "jstmax! - ceez2exst" repo: "https://github.com/jstmaxlol/dumdum-theme" url: "https://marketplace.visualstudio.com/items?itemName=jstmax.dumdum-theme" diff --git a/themes/dune-arrakis-incandescent.yaml b/themes/dune-arrakis-incandescent.yaml index 87af42ba..0e0afca4 100644 --- a/themes/dune-arrakis-incandescent.yaml +++ b/themes/dune-arrakis-incandescent.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-bene-gesserit.yaml b/themes/dune-bene-gesserit.yaml index be437589..b819f44f 100644 --- a/themes/dune-bene-gesserit.yaml +++ b/themes/dune-bene-gesserit.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-caladan-storm.yaml b/themes/dune-caladan-storm.yaml index 63d23556..98377cad 100644 --- a/themes/dune-caladan-storm.yaml +++ b/themes/dune-caladan-storm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-fremen-sietch.yaml b/themes/dune-fremen-sietch.yaml index 9e682eee..b6eb2f34 100644 --- a/themes/dune-fremen-sietch.yaml +++ b/themes/dune-fremen-sietch.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-giedi-prime.yaml b/themes/dune-giedi-prime.yaml index 915d86b2..b07447ab 100644 --- a/themes/dune-giedi-prime.yaml +++ b/themes/dune-giedi-prime.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-guild-navigator.yaml b/themes/dune-guild-navigator.yaml index e1298a00..daa9c6c0 100644 --- a/themes/dune-guild-navigator.yaml +++ b/themes/dune-guild-navigator.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-harkonnen.yaml b/themes/dune-harkonnen.yaml index a0663a2a..9ab1dfe7 100644 --- a/themes/dune-harkonnen.yaml +++ b/themes/dune-harkonnen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-house-atreides.yaml b/themes/dune-house-atreides.yaml index 084d2c00..b8749849 100644 --- a/themes/dune-house-atreides.yaml +++ b/themes/dune-house-atreides.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-ix-technology.yaml b/themes/dune-ix-technology.yaml index 10d3c37e..58479ddc 100644 --- a/themes/dune-ix-technology.yaml +++ b/themes/dune-ix-technology.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-kaitain.yaml b/themes/dune-kaitain.yaml index 2939f62a..c50feb6c 100644 --- a/themes/dune-kaitain.yaml +++ b/themes/dune-kaitain.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-mentat.yaml b/themes/dune-mentat.yaml index d8923d64..5591ad9b 100644 --- a/themes/dune-mentat.yaml +++ b/themes/dune-mentat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-muad-dib.yaml b/themes/dune-muad-dib.yaml index 7cbaa5a9..3fc6794e 100644 --- a/themes/dune-muad-dib.yaml +++ b/themes/dune-muad-dib.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-salusa-secundus.yaml b/themes/dune-salusa-secundus.yaml index a97c5734..6c937bac 100644 --- a/themes/dune-salusa-secundus.yaml +++ b/themes/dune-salusa-secundus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-sandworm.yaml b/themes/dune-sandworm.yaml index 1e18d4ac..65474522 100644 --- a/themes/dune-sandworm.yaml +++ b/themes/dune-sandworm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-sardaukar-imperial.yaml b/themes/dune-sardaukar-imperial.yaml index 5e50c9cd..ca8b990f 100644 --- a/themes/dune-sardaukar-imperial.yaml +++ b/themes/dune-sardaukar-imperial.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-spacing-guild.yaml b/themes/dune-spacing-guild.yaml index aea86194..1f434ece 100644 --- a/themes/dune-spacing-guild.yaml +++ b/themes/dune-spacing-guild.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-spice-vision.yaml b/themes/dune-spice-vision.yaml index 0f268461..a38501f9 100644 --- a/themes/dune-spice-vision.yaml +++ b/themes/dune-spice-vision.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/dune-water-of-life.yaml b/themes/dune-water-of-life.yaml index e4a5f485..e6695f59 100644 --- a/themes/dune-water-of-life.yaml +++ b/themes/dune-water-of-life.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FedaykinDev.fedaykin-themes" version: "1.0.2" installs: 237 + rating: 0 + ratings: 0 author: "FedaykinDev" repo: "https://github.com/btriapitsyn/fedaykin-themes" url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" diff --git a/themes/duomage.yaml b/themes/duomage.yaml index 334cf2e8..dad84004 100644 --- a/themes/duomage.yaml +++ b/themes/duomage.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "neacsustefan14.duomage" version: "0.0.2" installs: 2141 + rating: 5 + ratings: 2 author: "Neacsu Stefan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=neacsustefan14.duomage" diff --git a/themes/durgonix-dark.yaml b/themes/durgonix-dark.yaml index 6a562046..d9ae4f21 100644 --- a/themes/durgonix-dark.yaml +++ b/themes/durgonix-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "i8o8i.durgonix-dark-theme" version: "1.0.6" installs: 23 + rating: 0 + ratings: 0 author: "i8o8i" repo: "https://github.com/i8o8i-Developer/Durgonix-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=i8o8i.durgonix-dark-theme" diff --git a/themes/dusk-rider.yaml b/themes/dusk-rider.yaml index 0ee4c507..c339a4f8 100644 --- a/themes/dusk-rider.yaml +++ b/themes/dusk-rider.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/dusk.yaml b/themes/dusk.yaml index c7803a7b..77fcc2e5 100644 --- a/themes/dusk.yaml +++ b/themes/dusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leelhn2345.chromodynamics-v3-theme" version: "0.4.7" installs: 612 + rating: 0 + ratings: 0 author: "leelhn2345" repo: "https://github.com/leelhn2345/chromodynamics-v3-theme" url: "https://marketplace.visualstudio.com/items?itemName=leelhn2345.chromodynamics-v3-theme" diff --git a/themes/duskfox.yaml b/themes/duskfox.yaml index e3e96819..0fa06784 100644 --- a/themes/duskfox.yaml +++ b/themes/duskfox.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "keifererikson.nightfox" version: "0.0.14" installs: 17385 + rating: 5 + ratings: 3 author: "Keifer Erikson" repo: "https://github.com/keifererikson/vscode-nightfox" url: "https://marketplace.visualstudio.com/items?itemName=keifererikson.nightfox" diff --git a/themes/dutchtheme.yaml b/themes/dutchtheme.yaml index 5ba7b90e..bb9017cb 100644 --- a/themes/dutchtheme.yaml +++ b/themes/dutchtheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gnrfilipe04.dutchtheme" version: "0.0.1" installs: 46 + rating: 0 + ratings: 0 author: "gnrfilipe04" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gnrfilipe04.dutchtheme" diff --git a/themes/dyno-cute.yaml b/themes/dyno-cute.yaml index fb765177..8c83625d 100644 --- a/themes/dyno-cute.yaml +++ b/themes/dyno-cute.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dyno-nguyen.dyno-dark-mode" version: "1.2.4" installs: 193 + rating: 0 + ratings: 0 author: "Dyno Nguyen (Legacy)" repo: "https://github.com/TuanNguyen2504/my-devtools-config.git#main" url: "https://marketplace.visualstudio.com/items?itemName=dyno-nguyen.dyno-dark-mode" diff --git a/themes/dyno.yaml b/themes/dyno.yaml index 47b96c13..911b3d2e 100644 --- a/themes/dyno.yaml +++ b/themes/dyno.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dyno-nguyen.dyno-dark-mode" version: "1.2.4" installs: 193 + rating: 0 + ratings: 0 author: "Dyno Nguyen (Legacy)" repo: "https://github.com/TuanNguyen2504/my-devtools-config.git#main" url: "https://marketplace.visualstudio.com/items?itemName=dyno-nguyen.dyno-dark-mode" diff --git a/themes/dzsolarized-dark.yaml b/themes/dzsolarized-dark.yaml index 3711fa04..da02538f 100644 --- a/themes/dzsolarized-dark.yaml +++ b/themes/dzsolarized-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ChrisDzombak.dzsolarized" version: "0.0.18" installs: 18 + rating: 0 + ratings: 0 author: "Chris Dzombak" repo: "https://github.com/cdzombak/dzsolarized-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ChrisDzombak.dzsolarized" diff --git a/themes/dzsolarized.yaml b/themes/dzsolarized.yaml index 493cb582..a4644e36 100644 --- a/themes/dzsolarized.yaml +++ b/themes/dzsolarized.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ChrisDzombak.dzsolarized" version: "0.0.18" installs: 18 + rating: 0 + ratings: 0 author: "Chris Dzombak" repo: "https://github.com/cdzombak/dzsolarized-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ChrisDzombak.dzsolarized" diff --git a/themes/earl-grey.yaml b/themes/earl-grey.yaml index f0c7df48..ffbf1827 100644 --- a/themes/earl-grey.yaml +++ b/themes/earl-grey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EarlGrey.earl-grey" version: "1.0.1" installs: 3414 + rating: 5 + ratings: 1 author: "Earl Grey" repo: "https://github.com/earl-grey-theme/earl-grey-vsc" url: "https://marketplace.visualstudio.com/items?itemName=EarlGrey.earl-grey" diff --git a/themes/early-bird.yaml b/themes/early-bird.yaml new file mode 100644 index 00000000..cd8b8f4a --- /dev/null +++ b/themes/early-bird.yaml @@ -0,0 +1,52 @@ +name: "early-bird" +source: + marketplace_id: "mpchow.early-bird" + version: "0.0.1" + installs: 329 + rating: 0 + ratings: 0 + author: "mpchow" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mpchow.early-bird" +colors: + bg: "#FAFAFA" + fg: "#575F66" + black: "#000000" + red: "#EA6C6D" + green: "#99BF4D" + yellow: "#ECA944" + blue: "#3199E1" + magenta: "#9E75C7" + cyan: "#46BA94" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#F2AE49" + brightBlue: "#399EE6" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 79.2 + black: 103 + red: 53.9 + green: 38.4 + yellow: 36.3 + blue: 54.6 + magenta: 60.5 + cyan: 44.2 + white: 27.1 + brightBlack: 74.9 + brightRed: 51.4 + brightGreen: 45.5 + brightYellow: 33.6 + brightBlue: 52.1 + brightMagenta: 58.2 + brightCyan: 41.6 + brightWhite: 21.5 diff --git a/themes/earth-brown-stability-grounding.yaml b/themes/earth-brown-stability-grounding.yaml index d52a493e..54f3bbee 100644 --- a/themes/earth-brown-stability-grounding.yaml +++ b/themes/earth-brown-stability-grounding.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/earth-collection.yaml b/themes/earth-collection.yaml index 0bc1a897..7aa0e659 100644 --- a/themes/earth-collection.yaml +++ b/themes/earth-collection.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RLabsInc.rlabs-theme-collection" version: "0.1.4" installs: 181 + rating: 0 + ratings: 0 author: "RLabs Inc." repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 101.3 black: 0 diff --git a/themes/earthsong-contrast.yaml b/themes/earthsong-contrast.yaml index 24cf9b33..9e9f6d0b 100644 --- a/themes/earthsong-contrast.yaml +++ b/themes/earthsong-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/earthsong-light.yaml b/themes/earthsong-light.yaml index eaee4cfe..b282e686 100644 --- a/themes/earthsong-light.yaml +++ b/themes/earthsong-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/earthsong.yaml b/themes/earthsong.yaml index 726a78c5..a785e704 100644 --- a/themes/earthsong.yaml +++ b/themes/earthsong.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/easter.yaml b/themes/easter.yaml new file mode 100644 index 00000000..b29eaea6 --- /dev/null +++ b/themes/easter.yaml @@ -0,0 +1,52 @@ +name: "Easter" +source: + marketplace_id: "RJShoemaker55.easter" + version: "0.1.0" + installs: 150 + rating: 0 + ratings: 0 + author: "RJ Shoemaker" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RJShoemaker55.easter" +colors: + bg: "#FFD7D0" + fg: "#FF0909" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 30 + pair: null + contrast: + fg: 45.8 + black: 87.8 + red: 55.7 + green: 31 + yellow: 39.6 + blue: 67.8 + magenta: 56.3 + cyan: 42.3 + white: 67.6 + brightBlack: 60.5 + brightRed: 55.7 + brightGreen: 22.6 + brightYellow: 22.7 + brightBlue: 67.8 + brightMagenta: 56.3 + brightCyan: 42.3 + brightWhite: 30.2 diff --git a/themes/easy-eye.yaml b/themes/easy-eye.yaml index ad377f96..b219e3f7 100644 --- a/themes/easy-eye.yaml +++ b/themes/easy-eye.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SufficientDaikon.sufficentdaikon-darkpp" version: "1.3.5" installs: 699 + rating: 0 + ratings: 0 author: "SufficientDaikon" repo: "https://github.com/SufficientDaikon/Black-Void_VSCode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SufficientDaikon.sufficentdaikon-darkpp" diff --git a/themes/easy-eyes-color-theme.yaml b/themes/easy-eyes-color-theme.yaml index cfbafa0c..143a1644 100644 --- a/themes/easy-eyes-color-theme.yaml +++ b/themes/easy-eyes-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vvhg1.theme-easy-eyes" version: "1.2.1" installs: 5656 + rating: 5 + ratings: 2 author: "vvhg1" repo: "https://github.com/vvhg1/easyeyes" url: "https://marketplace.visualstudio.com/items?itemName=vvhg1.theme-easy-eyes" diff --git a/themes/easy-light.yaml b/themes/easy-light.yaml index d25d211f..5e60dbb3 100644 --- a/themes/easy-light.yaml +++ b/themes/easy-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sean-Chaplin.easy-light-theme" version: "0.0.3" installs: 256 + rating: 0 + ratings: 0 author: "Sean Chaplin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Sean-Chaplin.easy-light-theme" diff --git a/themes/ecatheme.yaml b/themes/ecatheme.yaml new file mode 100644 index 00000000..79580a7a --- /dev/null +++ b/themes/ecatheme.yaml @@ -0,0 +1,52 @@ +name: "Ecatheme" +source: + marketplace_id: "ecavscodetheme.ecatheme" + version: "0.0.1" + installs: 26 + rating: 0 + ratings: 0 + author: "ecavscodetheme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ecavscodetheme.ecatheme" +colors: + bg: "#1C1C1C" + fg: "#DBFB96" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 95.9 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/eclipsa.yaml b/themes/eclipsa.yaml index 86721d21..e2c7a422 100644 --- a/themes/eclipsa.yaml +++ b/themes/eclipsa.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yumma-css.eclipsa" version: "0.0.14" installs: 251 + rating: 5 + ratings: 1 author: "Yumma CSS" repo: "https://github.com/yummacss/eclipsa" url: "https://marketplace.visualstudio.com/items?itemName=yumma-css.eclipsa" diff --git a/themes/eclipse-dark-darker.yaml b/themes/eclipse-dark-darker.yaml index a7b88477..5e2410a1 100644 --- a/themes/eclipse-dark-darker.yaml +++ b/themes/eclipse-dark-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NoahLezama.eclipse-dark" version: "0.0.8" installs: 137 + rating: 5 + ratings: 1 author: "Noah Lezama" repo: "https://github.com/A5TUT0/Eclipse" url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" diff --git a/themes/eclipse-dark-flat.yaml b/themes/eclipse-dark-flat.yaml index 9db418e2..22263d55 100644 --- a/themes/eclipse-dark-flat.yaml +++ b/themes/eclipse-dark-flat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NoahLezama.eclipse-dark" version: "0.0.8" installs: 137 + rating: 5 + ratings: 1 author: "Noah Lezama" repo: "https://github.com/A5TUT0/Eclipse" url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" diff --git a/themes/eclipse-dawn.yaml b/themes/eclipse-dawn.yaml new file mode 100644 index 00000000..ba892f76 --- /dev/null +++ b/themes/eclipse-dawn.yaml @@ -0,0 +1,52 @@ +name: "Eclipse Dawn" +source: + marketplace_id: "Eclipse-Theme.eclipse-theme-midnight" + version: "0.3.5" + installs: 149 + rating: 0 + ratings: 0 + author: "Eclipse-Theme" + repo: "https://github.com/eclipse-themes/Eclipse-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Eclipse-Theme.eclipse-theme-midnight" +colors: + bg: "#1A1825" + fg: "#F0F0F7" + black: "#1A1825" + red: "#FF7D95" + green: "#8EFFD9" + yellow: "#FFA874" + blue: "#8AB2FF" + magenta: "#C5A7FF" + cyan: "#8DD9FF" + white: "#F0F0F7" + brightBlack: "#7D7B95" + brightRed: "#FF95A9" + brightGreen: "#A1FFE4" + brightYellow: "#FFB88F" + brightBlue: "#A5B8FF" + brightMagenta: "#D2BFFF" + brightCyan: "#A5DFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 291 + pair: null + contrast: + fg: 97.1 + black: 0 + red: 53.3 + green: 93.1 + yellow: 65.5 + blue: 59.4 + magenta: 61.6 + cyan: 76.4 + white: 97.1 + brightBlack: 32.3 + brightRed: 60.8 + brightGreen: 95 + brightYellow: 71.9 + brightBlue: 64.3 + brightMagenta: 72.4 + brightCyan: 81.1 + brightWhite: 106.6 diff --git a/themes/eclipse-flare.yaml b/themes/eclipse-flare.yaml index 68880fda..80647e62 100644 --- a/themes/eclipse-flare.yaml +++ b/themes/eclipse-flare.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NoahLezama.eclipse-dark" version: "0.0.8" installs: 137 + rating: 5 + ratings: 1 author: "Noah Lezama" repo: "https://github.com/A5TUT0/Eclipse" url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" diff --git a/themes/eclipse-optics.yaml b/themes/eclipse-optics.yaml index f95bc2c6..020935f3 100644 --- a/themes/eclipse-optics.yaml +++ b/themes/eclipse-optics.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NoahLezama.eclipse-dark" version: "0.0.8" installs: 137 + rating: 5 + ratings: 1 author: "Noah Lezama" repo: "https://github.com/A5TUT0/Eclipse" url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" diff --git a/themes/eclipse-penumbra.yaml b/themes/eclipse-penumbra.yaml index 04fddff7..03f8386a 100644 --- a/themes/eclipse-penumbra.yaml +++ b/themes/eclipse-penumbra.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NoahLezama.eclipse-dark" version: "0.0.8" installs: 137 + rating: 5 + ratings: 1 author: "Noah Lezama" repo: "https://github.com/A5TUT0/Eclipse" url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" diff --git a/themes/eclipse-umbra.yaml b/themes/eclipse-umbra.yaml index f24ba88b..41d6bbcf 100644 --- a/themes/eclipse-umbra.yaml +++ b/themes/eclipse-umbra.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NoahLezama.eclipse-dark" version: "0.0.8" installs: 137 + rating: 5 + ratings: 1 author: "Noah Lezama" repo: "https://github.com/A5TUT0/Eclipse" url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" diff --git a/themes/ecogest-solarized-light.yaml b/themes/ecogest-solarized-light.yaml new file mode 100644 index 00000000..cdf637fc --- /dev/null +++ b/themes/ecogest-solarized-light.yaml @@ -0,0 +1,52 @@ +name: "ecogest-solarized-light" +source: + marketplace_id: "ecogest.ecogest-theme" + version: "0.0.5" + installs: 68 + rating: 0 + ratings: 0 + author: "ecogest" + repo: "https://github.com/ecogest/vscode-ecogest-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ecogest.ecogest-theme" +colors: + bg: "#FDF6E3" + fg: "#586E75" + black: "#EEE8D5" + red: "#B4637A" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#6C71C4" + cyan: "#2AA198" + white: "#575279" + brightBlack: "#CCBFA3" + brightRed: "#DE8C88" + brightGreen: "#629F81" + brightYellow: "#AF8700" + brightBlue: "#3393BA" + brightMagenta: "#9A80B9" + brightCyan: "#00AFAF" + brightWhite: "#5F5695" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 71.6 + black: 0 + red: 63.4 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 80 + brightBlack: 28.7 + brightRed: 44.6 + brightGreen: 52.5 + brightYellow: 55.3 + brightBlue: 56.9 + brightMagenta: 56.3 + brightCyan: 46.6 + brightWhite: 76.7 diff --git a/themes/edge-dark-aura.yaml b/themes/edge-dark-aura.yaml index 99bb9703..b2ed076a 100644 --- a/themes/edge-dark-aura.yaml +++ b/themes/edge-dark-aura.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sainnhe.edge" version: "0.1.8" installs: 20560 + rating: 5 + ratings: 2 author: "sainnhe" repo: "https://github.com/sainnhe/edge-vscode" url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" diff --git a/themes/edge-dark-neon.yaml b/themes/edge-dark-neon.yaml index b6ba88c7..55a7fad6 100644 --- a/themes/edge-dark-neon.yaml +++ b/themes/edge-dark-neon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sainnhe.edge" version: "0.1.8" installs: 20560 + rating: 5 + ratings: 2 author: "sainnhe" repo: "https://github.com/sainnhe/edge-vscode" url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" diff --git a/themes/edge-dark.yaml b/themes/edge-dark.yaml index e1c0b334..1699d49e 100644 --- a/themes/edge-dark.yaml +++ b/themes/edge-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sainnhe.edge" version: "0.1.8" installs: 20560 + rating: 5 + ratings: 2 author: "sainnhe" repo: "https://github.com/sainnhe/edge-vscode" url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" diff --git a/themes/edge-light.yaml b/themes/edge-light.yaml index d0be4e47..39793ff7 100644 --- a/themes/edge-light.yaml +++ b/themes/edge-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sainnhe.edge" version: "0.1.8" installs: 20560 + rating: 5 + ratings: 2 author: "sainnhe" repo: "https://github.com/sainnhe/edge-vscode" url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" diff --git a/themes/edgerunner.yaml b/themes/edgerunner.yaml index 21a0b909..8154d508 100644 --- a/themes/edgerunner.yaml +++ b/themes/edgerunner.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Noqs.darkstack" version: "1.1.1" installs: 2842 + rating: 0 + ratings: 0 author: "Noqs" repo: "https://github.com/NoxQ/Darkstack" url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" diff --git a/themes/editor.yaml b/themes/editor.yaml index d50aa4aa..56d69189 100644 --- a/themes/editor.yaml +++ b/themes/editor.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Didier.editor-theme" version: "0.7.5" installs: 603 + rating: 5 + ratings: 1 author: "Didier" repo: "https://github.com/didier/editor-theme" url: "https://marketplace.visualstudio.com/items?itemName=Didier.editor-theme" diff --git a/themes/edu4dev-vscode-theme-color.yaml b/themes/edu4dev-vscode-theme-color.yaml index b3974e03..61e6bdd6 100644 --- a/themes/edu4dev-vscode-theme-color.yaml +++ b/themes/edu4dev-vscode-theme-color.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Edu4Dev.vscode-edu4dev-color-theme" version: "1.0.5" installs: 370 + rating: 5 + ratings: 1 author: "Edu4Dev" repo: "https://github.com/nuktpls/vscode-edu4dev-theme-color" url: "https://marketplace.visualstudio.com/items?itemName=Edu4Dev.vscode-edu4dev-color-theme" diff --git a/themes/eezoterial-dark.yaml b/themes/eezoterial-dark.yaml index 65b88f17..e4d4d269 100644 --- a/themes/eezoterial-dark.yaml +++ b/themes/eezoterial-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "unic0rn.theme-eezoterial" version: "0.0.1" installs: 500 + rating: 0 + ratings: 0 author: "unic0rn" repo: "https://github.com/unic0rn/eezoterial" url: "https://marketplace.visualstudio.com/items?itemName=unic0rn.theme-eezoterial" diff --git a/themes/eezoterial-light.yaml b/themes/eezoterial-light.yaml index 19f36a01..218a2f86 100644 --- a/themes/eezoterial-light.yaml +++ b/themes/eezoterial-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "unic0rn.theme-eezoterial" version: "0.0.1" installs: 500 + rating: 0 + ratings: 0 author: "unic0rn" repo: "https://github.com/unic0rn/eezoterial" url: "https://marketplace.visualstudio.com/items?itemName=unic0rn.theme-eezoterial" diff --git a/themes/ef-arbutus.yaml b/themes/ef-arbutus.yaml index 59203b04..78d73e69 100644 --- a/themes/ef-arbutus.yaml +++ b/themes/ef-arbutus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: 63 + pair: null contrast: fg: 87.9 black: 87.9 diff --git a/themes/ef-autumn.yaml b/themes/ef-autumn.yaml index 67fa383f..c2f888a3 100644 --- a/themes/ef-autumn.yaml +++ b/themes/ef-autumn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: 102 + pair: null contrast: fg: 68.4 black: 68.4 diff --git a/themes/ef-bio.yaml b/themes/ef-bio.yaml index 90d834c9..6d5580e7 100644 --- a/themes/ef-bio.yaml +++ b/themes/ef-bio.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 84.3 black: 84.3 diff --git a/themes/ef-cherie.yaml b/themes/ef-cherie.yaml index 5ab62379..dd79079f 100644 --- a/themes/ef-cherie.yaml +++ b/themes/ef-cherie.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 359 + pair: null contrast: fg: 77.6 black: 77.6 diff --git a/themes/ef-cyprus.yaml b/themes/ef-cyprus.yaml index 87b331ef..a7bd96ce 100644 --- a/themes/ef-cyprus.yaml +++ b/themes/ef-cyprus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.9 black: 97.9 diff --git a/themes/ef-dark.yaml b/themes/ef-dark.yaml index c217559d..cd8f8fdf 100644 --- a/themes/ef-dark.yaml +++ b/themes/ef-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-day.yaml b/themes/ef-day.yaml index b248fd92..e6aed243 100644 --- a/themes/ef-day.yaml +++ b/themes/ef-day.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-deuteranopia-dark.yaml b/themes/ef-deuteranopia-dark.yaml index 6e1a8b79..cdd31ab2 100644 --- a/themes/ef-deuteranopia-dark.yaml +++ b/themes/ef-deuteranopia-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-deuteranopia-light.yaml b/themes/ef-deuteranopia-light.yaml index 318ef7d9..6e1a7150 100644 --- a/themes/ef-deuteranopia-light.yaml +++ b/themes/ef-deuteranopia-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-dream.yaml b/themes/ef-dream.yaml index a0f59249..33829646 100644 --- a/themes/ef-dream.yaml +++ b/themes/ef-dream.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 312 + pair: null contrast: fg: 81.8 black: 81.8 diff --git a/themes/ef-duo-dark.yaml b/themes/ef-duo-dark.yaml index 83b50ece..c560f93e 100644 --- a/themes/ef-duo-dark.yaml +++ b/themes/ef-duo-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-duo-light.yaml b/themes/ef-duo-light.yaml index 51652019..88e1fad2 100644 --- a/themes/ef-duo-light.yaml +++ b/themes/ef-duo-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-eagle.yaml b/themes/ef-eagle.yaml index 24ced7a6..1e85e04a 100644 --- a/themes/ef-eagle.yaml +++ b/themes/ef-eagle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "orange" hue: 99 + pair: null contrast: fg: 92.1 black: 92.1 diff --git a/themes/ef-elea-dark.yaml b/themes/ef-elea-dark.yaml index e7bf7a12..eaab3674 100644 --- a/themes/ef-elea-dark.yaml +++ b/themes/ef-elea-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-elea-light.yaml b/themes/ef-elea-light.yaml index 61a974db..42d82e12 100644 --- a/themes/ef-elea-light.yaml +++ b/themes/ef-elea-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-frost.yaml b/themes/ef-frost.yaml index 8be06083..e67232b9 100644 --- a/themes/ef-frost.yaml +++ b/themes/ef-frost.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 102.3 black: 102.3 diff --git a/themes/ef-kassio.yaml b/themes/ef-kassio.yaml index 2084812a..11db2f1b 100644 --- a/themes/ef-kassio.yaml +++ b/themes/ef-kassio.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 99.2 black: 99.2 diff --git a/themes/ef-light.yaml b/themes/ef-light.yaml index 65bfad65..7f042c6c 100644 --- a/themes/ef-light.yaml +++ b/themes/ef-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-maris-dark.yaml b/themes/ef-maris-dark.yaml index eb11b57f..74c365b5 100644 --- a/themes/ef-maris-dark.yaml +++ b/themes/ef-maris-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-maris-light.yaml b/themes/ef-maris-light.yaml index 74e7c230..cd8c81b7 100644 --- a/themes/ef-maris-light.yaml +++ b/themes/ef-maris-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-melissa-dark.yaml b/themes/ef-melissa-dark.yaml index 24458cb3..83959861 100644 --- a/themes/ef-melissa-dark.yaml +++ b/themes/ef-melissa-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-melissa-light.yaml b/themes/ef-melissa-light.yaml index 1cc8ee10..a7af786a 100644 --- a/themes/ef-melissa-light.yaml +++ b/themes/ef-melissa-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-night.yaml b/themes/ef-night.yaml index b9d8b6ba..1ab51223 100644 --- a/themes/ef-night.yaml +++ b/themes/ef-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-owl.yaml b/themes/ef-owl.yaml index fdb20d71..fe008c00 100644 --- a/themes/ef-owl.yaml +++ b/themes/ef-owl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 73.9 black: 73.9 diff --git a/themes/ef-reverie.yaml b/themes/ef-reverie.yaml index 2a1589d4..ac1c9153 100644 --- a/themes/ef-reverie.yaml +++ b/themes/ef-reverie.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "orange" hue: 88 + pair: null contrast: fg: 87.9 black: 87.9 diff --git a/themes/ef-rosa.yaml b/themes/ef-rosa.yaml index 6fbfd042..010c74fe 100644 --- a/themes/ef-rosa.yaml +++ b/themes/ef-rosa.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 8 + pair: null contrast: fg: 79.9 black: 79.9 diff --git a/themes/ef-spring.yaml b/themes/ef-spring.yaml index 04150e6e..0f5fb5d6 100644 --- a/themes/ef-spring.yaml +++ b/themes/ef-spring.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 90.7 black: 90.7 diff --git a/themes/ef-summer.yaml b/themes/ef-summer.yaml index e0478771..af6c2628 100644 --- a/themes/ef-summer.yaml +++ b/themes/ef-summer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 84.8 black: 84.8 diff --git a/themes/ef-symbiosis.yaml b/themes/ef-symbiosis.yaml index ad908386..097e912b 100644 --- a/themes/ef-symbiosis.yaml +++ b/themes/ef-symbiosis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: 334 + pair: null contrast: fg: 77.8 black: 77.8 diff --git a/themes/ef-trio-dark.yaml b/themes/ef-trio-dark.yaml index 5fe3210f..5b692c12 100644 --- a/themes/ef-trio-dark.yaml +++ b/themes/ef-trio-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-trio-light.yaml b/themes/ef-trio-light.yaml index bb2cf8ce..6a795b02 100644 --- a/themes/ef-trio-light.yaml +++ b/themes/ef-trio-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-tritanopia-dark.yaml b/themes/ef-tritanopia-dark.yaml index ba1eda78..a3825413 100644 --- a/themes/ef-tritanopia-dark.yaml +++ b/themes/ef-tritanopia-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-tritanopia-light.yaml b/themes/ef-tritanopia-light.yaml index a3a49d9b..7b576812 100644 --- a/themes/ef-tritanopia-light.yaml +++ b/themes/ef-tritanopia-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" diff --git a/themes/ef-winter.yaml b/themes/ef-winter.yaml index c21f95f3..f9a8b5cb 100644 --- a/themes/ef-winter.yaml +++ b/themes/ef-winter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bzy-debug.ef-themes" version: "0.0.4" installs: 60 + rating: 0 + ratings: 0 author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: 302 + pair: null contrast: fg: 70.9 black: 70.9 diff --git a/themes/eggsplo1t.yaml b/themes/eggsplo1t.yaml index 04989ec3..15d59a52 100644 --- a/themes/eggsplo1t.yaml +++ b/themes/eggsplo1t.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ExPlo1t-php.eggsplo1t" version: "0.0.2" installs: 308 + rating: 5 + ratings: 1 author: "ExPlo1t-php" repo: "https://github.com/ExPlo1t-php/eggsplo1t-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ExPlo1t-php.eggsplo1t" diff --git a/themes/eidolon-less-dark.yaml b/themes/eidolon-less-dark.yaml index 04bb3737..acf168b8 100644 --- a/themes/eidolon-less-dark.yaml +++ b/themes/eidolon-less-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "eidolon.eidolon-theme" version: "4.0.8" installs: 110 + rating: 0 + ratings: 0 author: "Eurico Magalhães Neto" repo: "https://github.com/Eurico77/eidolon-theme" url: "https://marketplace.visualstudio.com/items?itemName=eidolon.eidolon-theme" diff --git a/themes/eidolon.yaml b/themes/eidolon.yaml new file mode 100644 index 00000000..aa327433 --- /dev/null +++ b/themes/eidolon.yaml @@ -0,0 +1,52 @@ +name: "Eidolon" +source: + marketplace_id: "eidolon.eidolon-theme" + version: "4.0.8" + installs: 110 + rating: 0 + ratings: 0 + author: "Eurico Magalhães Neto" + repo: "https://github.com/Eurico77/eidolon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eidolon.eidolon-theme" +colors: + bg: "#12121F" + fg: "#DADDFF" + black: "#1D1D2F" + red: "#BD4277" + green: "#74D2B7" + yellow: "#E5DCA4" + blue: "#87BFF7" + magenta: "#9486E4" + cyan: "#9BE9F8" + white: "#D4D7FF" + brightBlack: "#4F5071" + brightRed: "#BF4A7F" + brightGreen: "#7ED7C0" + brightYellow: "#ECDFAC" + brightBlue: "#8FC8FA" + brightMagenta: "#9F95E9" + brightCyan: "#AAECF8" + brightWhite: "#DADDFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 86.6 + black: 0 + red: 27.4 + green: 68.6 + yellow: 83.9 + blue: 64.6 + magenta: 43.3 + cyan: 85.2 + white: 83.2 + brightBlack: 14.6 + brightRed: 29.3 + brightGreen: 71.9 + brightYellow: 86.4 + brightBlue: 69.3 + brightMagenta: 49.8 + brightCyan: 87.9 + brightWhite: 86.6 diff --git a/themes/eigen-color-theme.yaml b/themes/eigen-color-theme.yaml index 692136e8..051a108c 100644 --- a/themes/eigen-color-theme.yaml +++ b/themes/eigen-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "eesov.eigengrau" version: "0.0.3" installs: 4123 + rating: 5 + ratings: 1 author: "Igor Sotsugov" repo: "https://github.com/sotsugov/eigengrau" url: "https://marketplace.visualstudio.com/items?itemName=eesov.eigengrau" diff --git a/themes/eiji-otieno-theme.yaml b/themes/eiji-otieno-theme.yaml new file mode 100644 index 00000000..8bc9f1a5 --- /dev/null +++ b/themes/eiji-otieno-theme.yaml @@ -0,0 +1,52 @@ +name: "eiji-otieno-theme" +source: + marketplace_id: "EijiOtieno1699.eiji-otieno-theme" + version: "0.0.2" + installs: 35 + rating: 0 + ratings: 0 + author: "Eiji Otieno" + repo: "https://github.com/eiji-otieno/eiji-otieno-theme" + url: "https://marketplace.visualstudio.com/items?itemName=EijiOtieno1699.eiji-otieno-theme" +colors: + bg: "#141414" + fg: "#FFFFFF" + black: "#000000" + red: "#FF002B" + green: "#99FF00" + yellow: "#FFA600" + blue: "#0051FF" + magenta: "#9900FF" + cyan: "#00B7FF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF002B" + brightGreen: "#707070" + brightYellow: "#FFA600" + brightBlue: "#00E1FF" + brightMagenta: "#9900FF" + brightCyan: "#00B7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 107.1 + black: 0 + red: 36.9 + green: 90.7 + yellow: 64.3 + blue: 23.4 + magenta: 26 + cyan: 57.2 + white: 107.1 + brightBlack: 11.2 + brightRed: 36.9 + brightGreen: 26.7 + brightYellow: 64.3 + brightBlue: 76.4 + brightMagenta: 26 + brightCyan: 57.2 + brightWhite: 107.1 diff --git a/themes/eink.yaml b/themes/eink.yaml index 51bf45b4..74a1dafd 100644 --- a/themes/eink.yaml +++ b/themes/eink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "henderjon.eink" version: "0.0.5" installs: 350 + rating: 5 + ratings: 1 author: "henderjon" repo: "https://github.com/henderjon/eink" url: "https://marketplace.visualstudio.com/items?itemName=henderjon.eink" diff --git a/themes/ekim.yaml b/themes/ekim.yaml index a76f07d7..92f94b3b 100644 --- a/themes/ekim.yaml +++ b/themes/ekim.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mjpeppersdev.ekim" version: "0.0.1" installs: 57 + rating: 0 + ratings: 0 author: "mjpeppersdev" repo: "https://github.com/MJPeppersdev/ekim-theme" url: "https://marketplace.visualstudio.com/items?itemName=mjpeppersdev.ekim" diff --git a/themes/eldar1984.yaml b/themes/eldar1984.yaml index c15d6e8e..92927bf9 100644 --- a/themes/eldar1984.yaml +++ b/themes/eldar1984.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Eldar1984.eldar1984" version: "1.0.1" installs: 1501 + rating: 5 + ratings: 2 author: "Eldar1984" repo: "https://github.com/eldare/Eldar1984_VSCodeColorTheme" url: "https://marketplace.visualstudio.com/items?itemName=Eldar1984.eldar1984" diff --git a/themes/elderberry.yaml b/themes/elderberry.yaml index 8ca97a4c..b9d940d7 100644 --- a/themes/elderberry.yaml +++ b/themes/elderberry.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IronGeek.vscode-theme-elderberry" version: "0.2.0" installs: 23 + rating: 0 + ratings: 0 author: "Jakka Prihatna" repo: "https://github.com/IronGeek/vscode-theme-elderberry" url: "https://marketplace.visualstudio.com/items?itemName=IronGeek.vscode-theme-elderberry" diff --git a/themes/eldritch-dark.yaml b/themes/eldritch-dark.yaml index b28e7547..01f06628 100644 --- a/themes/eldritch-dark.yaml +++ b/themes/eldritch-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Eldritch.eldritch" version: "1.1.1" installs: 1478 + rating: 0 + ratings: 0 author: "Eldritch" repo: "https://github.com/eldritch-theme/eldritch" url: "https://marketplace.visualstudio.com/items?itemName=Eldritch.eldritch" diff --git a/themes/eldritch.yaml b/themes/eldritch.yaml index d21df55f..7769e6b1 100644 --- a/themes/eldritch.yaml +++ b/themes/eldritch.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Eldritch.eldritch" version: "1.1.1" installs: 1478 + rating: 0 + ratings: 0 author: "Eldritch" repo: "https://github.com/eldritch-theme/eldritch" url: "https://marketplace.visualstudio.com/items?itemName=Eldritch.eldritch" diff --git a/themes/electric-blue.yaml b/themes/electric-blue.yaml index 6d052817..b078ad63 100644 --- a/themes/electric-blue.yaml +++ b/themes/electric-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodewithBismillah.chroma-library" version: "1.2.1" installs: 358 + rating: 5 + ratings: 1 author: "Code with Bismillah" repo: "https://github.com/mubashir1837/Chroma-Library" url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" diff --git a/themes/electric-dreams.yaml b/themes/electric-dreams.yaml index 7d748cca..ab7b78ee 100644 --- a/themes/electric-dreams.yaml +++ b/themes/electric-dreams.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nylanalyn.electric-dreams-neon" version: "1.0.0" installs: 133 + rating: 0 + ratings: 0 author: "nylan cat" repo: "https://github.com/nylanalyn/electric-dreams-theme" url: "https://marketplace.visualstudio.com/items?itemName=nylanalyn.electric-dreams-neon" diff --git a/themes/electric-ice-darker.yaml b/themes/electric-ice-darker.yaml new file mode 100644 index 00000000..06c873a4 --- /dev/null +++ b/themes/electric-ice-darker.yaml @@ -0,0 +1,52 @@ +name: "Electric Ice Darker" +source: + marketplace_id: "jennydeath.electric-ice-Theme" + version: "1.20.0" + installs: 327 + rating: 0 + ratings: 0 + author: "jenny_death" + repo: "https://github.com/blackpill0w/Electric-Ice-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=jennydeath.electric-ice-Theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#808080" + green: "#4D4D4D" + yellow: "#D7DAE1" + blue: "#111333" + magenta: "#999999" + cyan: "#666666" + white: "#CCCCCC" + brightBlack: "#1A1A1A" + brightRed: "#808080" + brightGreen: "#4D4D4D" + brightYellow: "#D7DAE1" + brightBlue: "#000CB8" + brightMagenta: "#1D00C0" + brightCyan: "#666666" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 34.8 + green: 13.1 + yellow: 84.1 + blue: 0 + magenta: 47.2 + cyan: 23 + white: 75.7 + brightBlack: 0 + brightRed: 34.8 + brightGreen: 13.1 + brightYellow: 84.1 + brightBlue: 7.8 + brightMagenta: 8.8 + brightCyan: 23 + brightWhite: 107.9 diff --git a/themes/electric-ice.yaml b/themes/electric-ice.yaml new file mode 100644 index 00000000..40c99875 --- /dev/null +++ b/themes/electric-ice.yaml @@ -0,0 +1,52 @@ +name: "Electric Ice" +source: + marketplace_id: "jennydeath.electric-ice-Theme" + version: "1.20.0" + installs: 327 + rating: 0 + ratings: 0 + author: "jenny_death" + repo: "https://github.com/blackpill0w/Electric-Ice-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=jennydeath.electric-ice-Theme" +colors: + bg: "#0D1016" + fg: "#FFFFFF" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#95E6CB" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#95E6CB" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 107.4 + black: 0 + red: 44.6 + green: 54.8 + yellow: 67.2 + blue: 81.4 + magenta: 92.6 + cyan: 78.4 + white: 72.3 + brightBlack: 23.5 + brightRed: 47.2 + brightGreen: 76.5 + brightYellow: 70.1 + brightBlue: 81.4 + brightMagenta: 95.8 + brightCyan: 81.4 + brightWhite: 107.4 diff --git a/themes/electric-night.yaml b/themes/electric-night.yaml index d4c61f3c..b529f557 100644 --- a/themes/electric-night.yaml +++ b/themes/electric-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nlarew.electric-night-theme" version: "1.1.0" installs: 20 + rating: 0 + ratings: 0 author: "nlarew" repo: "https://github.com/nlarew/electric-night-theme" url: "https://marketplace.visualstudio.com/items?itemName=nlarew.electric-night-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 97.6 black: 0 diff --git a/themes/electric-sheep.yaml b/themes/electric-sheep.yaml index 833d9e15..a61759f4 100644 --- a/themes/electric-sheep.yaml +++ b/themes/electric-sheep.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JMWeeks.electric-sheep" version: "0.1.2" installs: 224 + rating: 5 + ratings: 1 author: "JMWeeks" repo: "https://github.com/cyanitol/Theme.VSCode.ElectricSheep" url: "https://marketplace.visualstudio.com/items?itemName=JMWeeks.electric-sheep" diff --git a/themes/electric-violet-fork.yaml b/themes/electric-violet-fork.yaml index 790c6a04..a42b7418 100644 --- a/themes/electric-violet-fork.yaml +++ b/themes/electric-violet-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" version: "9.0.1" installs: 29917 + rating: 4.6 + ratings: 10 author: "Hasibur R" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" diff --git a/themes/electron-highlighter.yaml b/themes/electron-highlighter.yaml index 3d52b2e5..f67bac51 100644 --- a/themes/electron-highlighter.yaml +++ b/themes/electron-highlighter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "drg.electron-highlighter-remake" version: "1.4.0" installs: 936 + rating: 0 + ratings: 0 author: "drg" repo: "https://github.com/DrgOv/vscode-electron-highlighter" url: "https://marketplace.visualstudio.com/items?itemName=drg.electron-highlighter-remake" diff --git a/themes/electron-vue.yaml b/themes/electron-vue.yaml index fec01c7b..711985eb 100644 --- a/themes/electron-vue.yaml +++ b/themes/electron-vue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/electronic-moonlight-theme-borders.yaml b/themes/electronic-moonlight-theme-borders.yaml index 92405c54..72bf464d 100644 --- a/themes/electronic-moonlight-theme-borders.yaml +++ b/themes/electronic-moonlight-theme-borders.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "purpleblack.electronic-moonlight-theme-borders" version: "0.5.0" installs: 1356 + rating: 0 + ratings: 0 author: "purpleblack" repo: "https://github.com/goodideagiver/electronic-moonlight-theme" url: "https://marketplace.visualstudio.com/items?itemName=purpleblack.electronic-moonlight-theme-borders" diff --git a/themes/elegant-black.yaml b/themes/elegant-black.yaml index 46b57cbe..d2b9e26f 100644 --- a/themes/elegant-black.yaml +++ b/themes/elegant-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iamjazzar.elegant-black" version: "0.1.2" installs: 3038 + rating: 5 + ratings: 3 author: "iamjazzar" repo: "https://github.com/iamjazzar/elegant-black" url: "https://marketplace.visualstudio.com/items?itemName=iamjazzar.elegant-black" diff --git a/themes/elegant-red.yaml b/themes/elegant-red.yaml index 4439d2f1..a2e3826c 100644 --- a/themes/elegant-red.yaml +++ b/themes/elegant-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hudadamar21.monokai-red-moon" version: "1.0.0" installs: 2319 + rating: 0 + ratings: 0 author: "hudadamar21" repo: "https://themes.vscode.one/theme/hudadamar21/29medjnT" url: "https://marketplace.visualstudio.com/items?itemName=hudadamar21.monokai-red-moon" diff --git a/themes/eleganterror404.yaml b/themes/eleganterror404.yaml index 80984bc7..3b7b673d 100644 --- a/themes/eleganterror404.yaml +++ b/themes/eleganterror404.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JuanSantosError404.elegantthemeerror404" version: "0.0.1" installs: 229 + rating: 0 + ratings: 0 author: "JuanSantosError404" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JuanSantosError404.elegantthemeerror404" diff --git a/themes/elementary.yaml b/themes/elementary.yaml index 2b0e3f52..be23e13d 100644 --- a/themes/elementary.yaml +++ b/themes/elementary.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rdnlsmith.linux-themes" version: "1.3.0" installs: 41712 + rating: 4.75 + ratings: 4 author: "rdnlsmith" repo: "https://github.com/rdnlsmith/vscode-arc-theme" url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" diff --git a/themes/elementowl.yaml b/themes/elementowl.yaml index f013cd94..84a6a202 100644 --- a/themes/elementowl.yaml +++ b/themes/elementowl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dre1080.elementowl" version: "0.1.2" installs: 922 + rating: 0 + ratings: 0 author: "ando" repo: "https://github.com/dre1080/elementowl-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=dre1080.elementowl" diff --git a/themes/elements.yaml b/themes/elements.yaml index 11a77e3f..0f4cb2f7 100644 --- a/themes/elements.yaml +++ b/themes/elements.yaml @@ -1,11 +1,13 @@ name: "Elements" source: - marketplace_id: "gordonhch.elements" - version: "0.0.1" - installs: 1 + marketplace_id: "gordonhch.elements-vscode-theme" + version: "1.0.2" + installs: 6037 + rating: 5 + ratings: 1 author: "Gordon Ho" repo: "https://github.com/gordonhch/elements-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=gordonhch.elements" + url: "https://marketplace.visualstudio.com/items?itemName=gordonhch.elements-vscode-theme" colors: bg: "#0E151B" fg: "#D6DEEB" diff --git a/themes/elf-dream.yaml b/themes/elf-dream.yaml index ca51244a..82b79fb3 100644 --- a/themes/elf-dream.yaml +++ b/themes/elf-dream.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" installs: 81 + rating: 5 + ratings: 2 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" diff --git a/themes/elhassan-neon-cyan.yaml b/themes/elhassan-neon-cyan.yaml index e75f737f..ba92304b 100644 --- a/themes/elhassan-neon-cyan.yaml +++ b/themes/elhassan-neon-cyan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "elhassan-dev.elhassan-neon-themes" version: "1.1.2" installs: 44 + rating: 5 + ratings: 2 author: "elhassan-dev" repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" diff --git a/themes/elhassan-neon-dark-professional.yaml b/themes/elhassan-neon-dark-professional.yaml index 7d171b4f..dc227d83 100644 --- a/themes/elhassan-neon-dark-professional.yaml +++ b/themes/elhassan-neon-dark-professional.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "elhassan-dev.elhassan-neon-themes" version: "1.1.2" installs: 44 + rating: 5 + ratings: 2 author: "elhassan-dev" repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" diff --git a/themes/elhassan-neon-light-professional.yaml b/themes/elhassan-neon-light-professional.yaml index 7bd6f840..f251fc14 100644 --- a/themes/elhassan-neon-light-professional.yaml +++ b/themes/elhassan-neon-light-professional.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "elhassan-dev.elhassan-neon-themes" version: "1.1.2" installs: 44 + rating: 5 + ratings: 2 author: "elhassan-dev" repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" diff --git a/themes/elhassan-neon-magenta.yaml b/themes/elhassan-neon-magenta.yaml index 5d2edc16..fc7c6915 100644 --- a/themes/elhassan-neon-magenta.yaml +++ b/themes/elhassan-neon-magenta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "elhassan-dev.elhassan-neon-themes" version: "1.1.2" installs: 44 + rating: 5 + ratings: 2 author: "elhassan-dev" repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" diff --git a/themes/elhassan-neon-purple.yaml b/themes/elhassan-neon-purple.yaml index 9a792df8..4754ae80 100644 --- a/themes/elhassan-neon-purple.yaml +++ b/themes/elhassan-neon-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "elhassan-dev.elhassan-neon-themes" version: "1.1.2" installs: 44 + rating: 5 + ratings: 2 author: "elhassan-dev" repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" diff --git a/themes/elixir-theme-no-italics.yaml b/themes/elixir-theme-no-italics.yaml index 05407e5e..b1956bc1 100644 --- a/themes/elixir-theme-no-italics.yaml +++ b/themes/elixir-theme-no-italics.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "maiquitome.elixir-theme" version: "0.12.0" installs: 9237 + rating: 5 + ratings: 1 author: "Maiqui Tomé" repo: "https://github.com/maiquitome/vscode_elixir_theme" url: "https://marketplace.visualstudio.com/items?itemName=maiquitome.elixir-theme" diff --git a/themes/elixir-theme-with-italics-less-dark-2.yaml b/themes/elixir-theme-with-italics-less-dark-2.yaml new file mode 100644 index 00000000..4e50454b --- /dev/null +++ b/themes/elixir-theme-with-italics-less-dark-2.yaml @@ -0,0 +1,52 @@ +name: "elixir-theme-with-italics-less-dark-2" +source: + marketplace_id: "maiquitome.elixir-theme" + version: "0.12.0" + installs: 9237 + rating: 5 + ratings: 1 + author: "Maiqui Tomé" + repo: "https://github.com/maiquitome/vscode_elixir_theme" + url: "https://marketplace.visualstudio.com/items?itemName=maiquitome.elixir-theme" +colors: + bg: "#201B2D" + fg: "#8F93A2" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 296 + pair: null + contrast: + fg: 42.4 + black: 0 + red: 42.8 + green: 83.4 + yellow: 78.1 + blue: 55.1 + magenta: 52.9 + cyan: 77.4 + white: 106.1 + brightBlack: 10.7 + brightRed: 42.8 + brightGreen: 83.4 + brightYellow: 78.1 + brightBlue: 55.1 + brightMagenta: 52.9 + brightCyan: 77.4 + brightWhite: 106.1 diff --git a/themes/elly.yaml b/themes/elly.yaml index cc2d60f6..01fa9423 100644 --- a/themes/elly.yaml +++ b/themes/elly.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ulwlu.elly" version: "1.0.4" installs: 790 + rating: 5 + ratings: 2 author: "ulwlu" repo: "https://github.com/ulwlu/elly-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ulwlu.elly" diff --git a/themes/elypink-dark-faded.yaml b/themes/elypink-dark-faded.yaml index d2055f2a..46af2146 100644 --- a/themes/elypink-dark-faded.yaml +++ b/themes/elypink-dark-faded.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "barineco.elypink-theme" version: "0.6.0" installs: 38 + rating: 5 + ratings: 2 author: "barineco" repo: "https://github.com/barineco/elypink-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" diff --git a/themes/elypink-dark.yaml b/themes/elypink-dark.yaml index 89ee06e4..bce3e310 100644 --- a/themes/elypink-dark.yaml +++ b/themes/elypink-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "barineco.elypink-theme" version: "0.6.0" installs: 38 + rating: 5 + ratings: 2 author: "barineco" repo: "https://github.com/barineco/elypink-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" diff --git a/themes/elypink-light-diamond.yaml b/themes/elypink-light-diamond.yaml index 4e505a6e..c251c5de 100644 --- a/themes/elypink-light-diamond.yaml +++ b/themes/elypink-light-diamond.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "barineco.elypink-theme" version: "0.6.0" installs: 38 + rating: 5 + ratings: 2 author: "barineco" repo: "https://github.com/barineco/elypink-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" diff --git a/themes/elypink-light-faded.yaml b/themes/elypink-light-faded.yaml index a6f18af7..3df8bcfb 100644 --- a/themes/elypink-light-faded.yaml +++ b/themes/elypink-light-faded.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "barineco.elypink-theme" version: "0.6.0" installs: 38 + rating: 5 + ratings: 2 author: "barineco" repo: "https://github.com/barineco/elypink-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" diff --git a/themes/elypink-light-spring.yaml b/themes/elypink-light-spring.yaml index 4f0f8b3b..7d48c076 100644 --- a/themes/elypink-light-spring.yaml +++ b/themes/elypink-light-spring.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "barineco.elypink-theme" version: "0.6.0" installs: 38 + rating: 5 + ratings: 2 author: "barineco" repo: "https://github.com/barineco/elypink-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" diff --git a/themes/elypink-light-summer.yaml b/themes/elypink-light-summer.yaml index b4d8e421..d48ef5ae 100644 --- a/themes/elypink-light-summer.yaml +++ b/themes/elypink-light-summer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "barineco.elypink-theme" version: "0.6.0" installs: 38 + rating: 5 + ratings: 2 author: "barineco" repo: "https://github.com/barineco/elypink-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" diff --git a/themes/elypink-light.yaml b/themes/elypink-light.yaml index c9f0d605..c1fa1592 100644 --- a/themes/elypink-light.yaml +++ b/themes/elypink-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "barineco.elypink-theme" version: "0.6.0" installs: 38 + rating: 5 + ratings: 2 author: "barineco" repo: "https://github.com/barineco/elypink-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" diff --git a/themes/ember-glow.yaml b/themes/ember-glow.yaml new file mode 100644 index 00000000..00feb607 --- /dev/null +++ b/themes/ember-glow.yaml @@ -0,0 +1,52 @@ +name: "Ember Glow" +source: + marketplace_id: "camfleety.ember-glow" + version: "1.0.0" + installs: 17 + rating: 0 + ratings: 0 + author: "camfleety" + repo: "https://github.com/camfleety/ember-glow" + url: "https://marketplace.visualstudio.com/items?itemName=camfleety.ember-glow" +colors: + bg: "#1E1B18" + fg: "#E2D9D0" + black: "#302B28" + red: "#D35D4C" + green: "#A3B38C" + yellow: "#D4A656" + blue: "#7A9EC2" + magenta: "#C9856A" + cyan: "#7EB8A8" + white: "#E2D9D0" + brightBlack: "#635850" + brightRed: "#E8834A" + brightGreen: "#B8C9A0" + brightYellow: "#E8C078" + brightBlue: "#9BB8D8" + brightMagenta: "#DAA090" + brightCyan: "#98D0C0" + brightWhite: "#F0E8E0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.9 + black: 0 + red: 34.7 + green: 56.5 + yellow: 56.7 + blue: 46.5 + magenta: 44 + cyan: 56.2 + white: 82.9 + brightBlack: 16.6 + brightRed: 48.4 + brightGreen: 68.8 + brightYellow: 70.5 + brightBlue: 60.9 + brightMagenta: 56.8 + brightCyan: 69.9 + brightWhite: 92.2 diff --git a/themes/ember.yaml b/themes/ember.yaml index 52317f16..f2d8561d 100644 --- a/themes/ember.yaml +++ b/themes/ember.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jgibson.ember-color-theme" version: "0.0.1" installs: 718 + rating: 0 + ratings: 0 author: "jgibson" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jgibson.ember-color-theme" diff --git a/themes/emberstone-dark-theme.yaml b/themes/emberstone-dark-theme.yaml index 775743b7..83ec4a8f 100644 --- a/themes/emberstone-dark-theme.yaml +++ b/themes/emberstone-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Emberstonetheme.emberstone" version: "0.0.6" installs: 205 + rating: 5 + ratings: 1 author: "Emberstone theme" repo: "https://github.com/Emberstone-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=Emberstonetheme.emberstone" diff --git a/themes/emberstone.yaml b/themes/emberstone.yaml index 1722d6d2..176a5f1b 100644 --- a/themes/emberstone.yaml +++ b/themes/emberstone.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dfmknz.emberstone-theme-vscode" version: "0.1.1" installs: 66 + rating: 0 + ratings: 0 author: "dfmknz" repo: "https://github.com/dfmknz/emberstone-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=dfmknz.emberstone-theme-vscode" diff --git a/themes/emberwood.yaml b/themes/emberwood.yaml new file mode 100644 index 00000000..66d50eb4 --- /dev/null +++ b/themes/emberwood.yaml @@ -0,0 +1,52 @@ +name: "Emberwood" +source: + marketplace_id: "Lucpc.emberwood-theme" + version: "0.0.2" + installs: 47 + rating: 0 + ratings: 0 + author: "Lucas Pinheiro Caldas" + repo: "https://github.com/lucpc/emberwood-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Lucpc.emberwood-theme" +colors: + bg: "#171C1A" + fg: "#FFB86C" + black: "#141917" + red: "#FF5572" + green: "#86CEA4" + yellow: "#F5E3A6" + blue: "#8D9E97" + magenta: "#D3B5D6" + cyan: "#A1D9B9" + white: "#E0E5E3" + brightBlack: "#5A6964" + brightRed: "#FF8095" + brightGreen: "#A1D9B9" + brightYellow: "#F8EEBD" + brightBlue: "#A3B1AB" + brightMagenta: "#E0CCE2" + brightCyan: "#B3E6D1" + brightWhite: "#F1F6F8" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 71 + black: 0 + red: 43.6 + green: 66.5 + yellow: 88.6 + blue: 46.3 + magenta: 66.3 + cyan: 74.6 + white: 88.8 + brightBlack: 21.5 + brightRed: 53.9 + brightGreen: 74.6 + brightYellow: 94.8 + brightBlue: 56.8 + brightMagenta: 77.9 + brightCyan: 83.3 + brightWhite: 99.9 diff --git a/themes/emerald-fork.yaml b/themes/emerald-fork.yaml index 4ee1a7d1..8a86ea3a 100644 --- a/themes/emerald-fork.yaml +++ b/themes/emerald-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" version: "9.0.1" installs: 29917 + rating: 4.6 + ratings: 10 author: "Hasibur R" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" diff --git a/themes/emerald-matrix.yaml b/themes/emerald-matrix.yaml index 231f07b8..3c439164 100644 --- a/themes/emerald-matrix.yaml +++ b/themes/emerald-matrix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/emerald.yaml b/themes/emerald.yaml index b2f0296f..5e129656 100644 --- a/themes/emerald.yaml +++ b/themes/emerald.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zecuse.emerald-theme" version: "1.0.2" installs: 491 + rating: 0 + ratings: 0 author: "zecuse" repo: "https://github.com/zecuse/emerald-theme" url: "https://marketplace.visualstudio.com/items?itemName=zecuse.emerald-theme" diff --git a/themes/emeralds.yaml b/themes/emeralds.yaml index 8e3d1b99..b5ddee62 100644 --- a/themes/emeralds.yaml +++ b/themes/emeralds.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KelsonCarvalho.emerald-kc" version: "2.0.0" installs: 291 + rating: 0 + ratings: 0 author: "Kelson Carvalho" repo: "https://github.com/NoslekCode/emeralds_Theme_VsCode" url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.emerald-kc" diff --git a/themes/emi-theme.yaml b/themes/emi-theme.yaml index 4c9b012c..76ef2a3d 100644 --- a/themes/emi-theme.yaml +++ b/themes/emi-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "denianszz.emi-theme" version: "0.0.5" installs: 714 + rating: 0 + ratings: 0 author: "Denian" repo: null url: "https://marketplace.visualstudio.com/items?itemName=denianszz.emi-theme" diff --git a/themes/emmess-periglaciar.yaml b/themes/emmess-periglaciar.yaml new file mode 100644 index 00000000..1efbc3b3 --- /dev/null +++ b/themes/emmess-periglaciar.yaml @@ -0,0 +1,52 @@ +name: "emmess-Periglaciar" +source: + marketplace_id: "emmess.emmess-periglaciar" + version: "1.0.2" + installs: 39 + rating: 0 + ratings: 0 + author: "emmess" + repo: "https://github.com/mihocsaszilard/emmess-periglaciar" + url: "https://marketplace.visualstudio.com/items?itemName=emmess.emmess-periglaciar" +colors: + bg: "#E0F3E3" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#E8E8E8" +meta: + mode: "light" + accent: "pink" + hue: 150 + pair: null + contrast: + fg: 95.9 + black: 95.9 + red: 63.9 + green: 39.1 + yellow: 47.8 + blue: 76 + magenta: 64.5 + cyan: 50.5 + white: 8.9 + brightBlack: 68.7 + brightRed: 63.9 + brightGreen: 30.8 + brightYellow: 30.9 + brightBlue: 76 + brightMagenta: 64.5 + brightCyan: 50.5 + brightWhite: 0 diff --git a/themes/empire-monokai-dark.yaml b/themes/empire-monokai-dark.yaml new file mode 100644 index 00000000..18412192 --- /dev/null +++ b/themes/empire-monokai-dark.yaml @@ -0,0 +1,52 @@ +name: "empire-monokai-dark" +source: + marketplace_id: "herohiralal.empire-vscode-themepack" + version: "0.8.6" + installs: 373 + rating: 0 + ratings: 0 + author: "herohiralal" + repo: "https://github.com/herohiralal/empire-vscode-themepack" + url: "https://marketplace.visualstudio.com/items?itemName=herohiralal.empire-vscode-themepack" +colors: + bg: "#16191D" + fg: "#ABB2BF" + black: "#16191D" + red: "#FB6496" + green: "#6CD9AB" + yellow: "#E3CB4E" + blue: "#444AFD" + magenta: "#AF98E6" + cyan: "#3BC4DA" + white: "#D7D7D7" + brightBlack: "#A5AAC9" + brightRed: "#FB6496" + brightGreen: "#6CD9AB" + brightYellow: "#E3CB4E" + brightBlue: "#FDA044" + brightMagenta: "#AF98E6" + brightCyan: "#3BC4DA" + brightWhite: "#D7D7D7" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 59.2 + black: 0 + red: 46.8 + green: 70.5 + yellow: 73.9 + blue: 22.7 + magenta: 52.1 + cyan: 60.8 + white: 81.1 + brightBlack: 55.9 + brightRed: 46.8 + brightGreen: 70.5 + brightYellow: 73.9 + brightBlue: 61.7 + brightMagenta: 52.1 + brightCyan: 60.8 + brightWhite: 81.1 diff --git a/themes/empire-monokai-light.yaml b/themes/empire-monokai-light.yaml new file mode 100644 index 00000000..fa4e86ee --- /dev/null +++ b/themes/empire-monokai-light.yaml @@ -0,0 +1,52 @@ +name: "empire-monokai-light" +source: + marketplace_id: "herohiralal.empire-vscode-themepack" + version: "0.8.6" + installs: 373 + rating: 0 + ratings: 0 + author: "herohiralal" + repo: "https://github.com/herohiralal/empire-vscode-themepack" + url: "https://marketplace.visualstudio.com/items?itemName=herohiralal.empire-vscode-themepack" +colors: + bg: "#E1E1E1" + fg: "#000000" + black: "#BDBDBD" + red: "#970032" + green: "#067647" + yellow: "#887300" + blue: "#984C00" + magenta: "#330F8A" + cyan: "#007183" + white: "#000000" + brightBlack: "#121A45" + brightRed: "#970032" + brightGreen: "#067647" + brightYellow: "#887300" + brightBlue: "#984C00" + brightMagenta: "#330F8A" + brightCyan: "#007183" + brightWhite: "#000000" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 88.4 + black: 18 + red: 70.3 + green: 60.3 + yellow: 54.6 + blue: 62.9 + magenta: 80.8 + cyan: 60.3 + white: 88.4 + brightBlack: 85.8 + brightRed: 70.3 + brightGreen: 60.3 + brightYellow: 54.6 + brightBlue: 62.9 + brightMagenta: 80.8 + brightCyan: 60.3 + brightWhite: 88.4 diff --git a/themes/enchant-high-contrast.yaml b/themes/enchant-high-contrast.yaml index 21ebeaed..1b55620c 100644 --- a/themes/enchant-high-contrast.yaml +++ b/themes/enchant-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ansub.enchant" version: "0.3.4" installs: 1032 + rating: 5 + ratings: 4 author: "Ansub" repo: "https://github.com/ansub/enchant" url: "https://marketplace.visualstudio.com/items?itemName=Ansub.enchant" diff --git a/themes/enchant.yaml b/themes/enchant.yaml index c79af007..173c33d7 100644 --- a/themes/enchant.yaml +++ b/themes/enchant.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ansub.enchant" version: "0.3.4" installs: 1032 + rating: 5 + ratings: 4 author: "Ansub" repo: "https://github.com/ansub/enchant" url: "https://marketplace.visualstudio.com/items?itemName=Ansub.enchant" diff --git a/themes/encom.yaml b/themes/encom.yaml index ab894fc3..b8b168fe 100644 --- a/themes/encom.yaml +++ b/themes/encom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "emeraldio.encom" version: "0.0.3" installs: 677 + rating: 5 + ratings: 1 author: "emerald.io" repo: "https://github.com/emeraldio/encom" url: "https://marketplace.visualstudio.com/items?itemName=emeraldio.encom" diff --git a/themes/end-color-theme.yaml b/themes/end-color-theme.yaml index cca5ca21..5f3cff55 100644 --- a/themes/end-color-theme.yaml +++ b/themes/end-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hzao.theme-end" version: "0.3.0" installs: 3158 + rating: 5 + ratings: 2 author: "hzao" repo: "https://github.com/hezeao/theme-end" url: "https://marketplace.visualstudio.com/items?itemName=hzao.theme-end" diff --git a/themes/endeavouros-breeze-dark.yaml b/themes/endeavouros-breeze-dark.yaml index a2227851..cf76245d 100644 --- a/themes/endeavouros-breeze-dark.yaml +++ b/themes/endeavouros-breeze-dark.yaml @@ -1,15 +1,17 @@ name: "EndeavourOS Breeze Dark" source: - marketplace_id: "jordojordo.endeavouros-dark-vscode-theme" - version: "0.1.0" - installs: 10 + marketplace_id: "jordojordo.endeavouros-dark" + version: "0.1.2" + installs: 272 + rating: 5 + ratings: 1 author: "Jordon Leach" repo: "https://github.com/jordojordo/endeavouros-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jordojordo.endeavouros-dark-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jordojordo.endeavouros-dark" colors: - bg: "#08042A" + bg: "#222529" fg: "#E3E3EA" - black: "#08042A" + black: "#222529" red: "#FF7F7F" green: "#27AE60" yellow: "#F67400" @@ -28,23 +30,23 @@ colors: meta: mode: "dark" accent: "red" - hue: 279 + hue: null pair: null contrast: - fg: 89.7 + fg: 87.2 black: 0 - red: 54.1 - green: 47 - yellow: 47.9 - blue: 62.8 - magenta: 29.8 - cyan: 21 - white: 89.7 - brightBlack: 97.6 - brightRed: 54.1 - brightGreen: 47 - brightYellow: 47.9 - brightBlue: 41.4 - brightMagenta: 29.8 - brightCyan: 21 - brightWhite: 107.5 + red: 51.6 + green: 44.5 + yellow: 45.4 + blue: 60.3 + magenta: 27.3 + cyan: 18.5 + white: 87.2 + brightBlack: 95.1 + brightRed: 51.6 + brightGreen: 44.5 + brightYellow: 45.4 + brightBlue: 38.8 + brightMagenta: 27.3 + brightCyan: 18.5 + brightWhite: 105 diff --git a/themes/endeavouros-dark-high-contrast.yaml b/themes/endeavouros-dark-high-contrast.yaml index 710f4794..9ebdbf9f 100644 --- a/themes/endeavouros-dark-high-contrast.yaml +++ b/themes/endeavouros-dark-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jordojordo.endeavouros-dark" version: "0.1.2" installs: 272 + rating: 5 + ratings: 1 author: "Jordon Leach" repo: "https://github.com/jordojordo/endeavouros-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jordojordo.endeavouros-dark" diff --git a/themes/endeavouros-dark-night-shift.yaml b/themes/endeavouros-dark-night-shift.yaml index 10720d52..e96d74b2 100644 --- a/themes/endeavouros-dark-night-shift.yaml +++ b/themes/endeavouros-dark-night-shift.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jordojordo.endeavouros-dark" version: "0.1.2" installs: 272 + rating: 5 + ratings: 1 author: "Jordon Leach" repo: "https://github.com/jordojordo/endeavouros-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jordojordo.endeavouros-dark" diff --git a/themes/endless-iris.yaml b/themes/endless-iris.yaml index 7a8126b1..39db37b6 100644 --- a/themes/endless-iris.yaml +++ b/themes/endless-iris.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Dikroll.void-iris-theme" version: "1.1.1" installs: 141 + rating: 5 + ratings: 1 author: "Dikroll" repo: "https://github.com/Dikroll/Void-Iris" url: "https://marketplace.visualstudio.com/items?itemName=Dikroll.void-iris-theme" diff --git a/themes/energy-red-light-passion-alertness.yaml b/themes/energy-red-light-passion-alertness.yaml index bb86692f..fff14323 100644 --- a/themes/energy-red-light-passion-alertness.yaml +++ b/themes/energy-red-light-passion-alertness.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/energy-red-passion-alertness.yaml b/themes/energy-red-passion-alertness.yaml new file mode 100644 index 00000000..89d5168c --- /dev/null +++ b/themes/energy-red-passion-alertness.yaml @@ -0,0 +1,52 @@ +name: "Energy Red - Passion & Alertness" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + rating: 5 + ratings: 1 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#1A0505" + fg: "#FFEBEE" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#D32F2F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "red" + hue: 23 + pair: null + contrast: + fg: 97.5 + black: 0 + red: 38.4 + green: 48.3 + yellow: 93 + blue: 43.7 + magenta: 33.3 + cyan: 57.2 + white: 96.8 + brightBlack: 28.5 + brightRed: 43.5 + brightGreen: 82.7 + brightYellow: 102.4 + brightBlue: 41.2 + brightMagenta: 42.1 + brightCyan: 91.9 + brightWhite: 96.4 diff --git a/themes/energy-theme.yaml b/themes/energy-theme.yaml new file mode 100644 index 00000000..bbb832ee --- /dev/null +++ b/themes/energy-theme.yaml @@ -0,0 +1,52 @@ +name: "energy-theme" +source: + marketplace_id: "visual-interpretation-of-technology.energy-theme" + version: "1.0.1" + installs: 17 + rating: 0 + ratings: 0 + author: "Visual Interpretation of Technology (VIT)" + repo: "https://github.com/Zarnovitch/energy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=visual-interpretation-of-technology.energy-theme" +colors: + bg: "#222635" + fg: "#BABED8" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 273 + pair: null + contrast: + fg: 65 + black: 0 + red: 44.4 + green: 82 + yellow: 76.7 + blue: 53.7 + magenta: 51.6 + cyan: 76.1 + white: 104.7 + brightBlack: 24.2 + brightRed: 44.4 + brightGreen: 82 + brightYellow: 76.7 + brightBlue: 53.7 + brightMagenta: 51.6 + brightCyan: 76.1 + brightWhite: 104.7 diff --git a/themes/enhanced-hubspot-theme.yaml b/themes/enhanced-hubspot-theme.yaml index 2f441090..f1d53aa4 100644 --- a/themes/enhanced-hubspot-theme.yaml +++ b/themes/enhanced-hubspot-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NicolasMendes.enhanced-canvas-theme" version: "2.2.2" installs: 1553 + rating: 5 + ratings: 3 author: "Nicolas Mendes" repo: "https://github.com/DreamDevourer/Enhanced-HubSpot-VScode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=NicolasMendes.enhanced-canvas-theme" diff --git a/themes/enhanced-material-batman.yaml b/themes/enhanced-material-batman.yaml index 6cb56564..dbbf82b7 100644 --- a/themes/enhanced-material-batman.yaml +++ b/themes/enhanced-material-batman.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RonnyFX.enhanced-material-batman" version: "0.0.1" installs: 1039 + rating: 0 + ratings: 0 author: "RonnyFX" repo: "https://github.com/ronnyf/enhanced-material-batman" url: "https://marketplace.visualstudio.com/items?itemName=RonnyFX.enhanced-material-batman" diff --git a/themes/enhanced-material-fork.yaml b/themes/enhanced-material-fork.yaml index 3eee136e..a3a73513 100644 --- a/themes/enhanced-material-fork.yaml +++ b/themes/enhanced-material-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Leak.leak-theme" version: "0.0.0" installs: 24 + rating: 0 + ratings: 0 author: "Leak" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Leak.leak-theme" diff --git a/themes/enhanced-material.yaml b/themes/enhanced-material.yaml new file mode 100644 index 00000000..72d42095 --- /dev/null +++ b/themes/enhanced-material.yaml @@ -0,0 +1,52 @@ +name: "Enhanced Material" +source: + marketplace_id: "aviksaikat.material-tweaked" + version: "0.0.1" + installs: 109 + rating: 0 + ratings: 0 + author: "avik_saikat" + repo: "https://github.com/Aviksaikat/Vscode-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=aviksaikat.material-tweaked" +colors: + bg: "#292C3E" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + pair: null + contrast: + fg: 103.4 + black: 0 + red: 23.3 + green: 49.5 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.6 diff --git a/themes/enigma.yaml b/themes/enigma.yaml new file mode 100644 index 00000000..2abbb95b --- /dev/null +++ b/themes/enigma.yaml @@ -0,0 +1,50 @@ +name: "Enigma" +source: + marketplace_id: "Priyaank.enigmax" + version: "0.0.1" + installs: 161 + author: "Priyaank" + repo: "https://github.com/PRIYAANK2510/Enigma" + url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.enigmax" +colors: + bg: "#18181F" + fg: "#70708F" + black: "#262626" + red: "#C03D3D" + green: "#27923B" + yellow: "#BE8939" + blue: "#2A70BC" + magenta: "#9F399F" + cyan: "#2D9EBA" + white: "#A9A9A9" + brightBlack: "#383838" + brightRed: "#E64343" + brightGreen: "#30B649" + brightYellow: "#E4A546" + brightBlue: "#338BEA" + brightMagenta: "#BE47BE" + brightCyan: "#38C0E2" + brightWhite: "#C0C0C0" +meta: + mode: "dark" + accent: "pink" + hue: 285 + pair: null + contrast: + fg: 27.4 + black: 0 + red: 25.3 + green: 33.7 + yellow: 43.1 + blue: 25.9 + magenta: 21.9 + cyan: 42.6 + white: 54.5 + brightBlack: 0 + brightRed: 34.5 + brightGreen: 49.6 + brightYellow: 59 + brightBlue: 38.5 + brightMagenta: 31.2 + brightCyan: 59.4 + brightWhite: 67.4 diff --git a/themes/enki-night-owl.yaml b/themes/enki-night-owl.yaml index 45d19338..26ef3dfd 100644 --- a/themes/enki-night-owl.yaml +++ b/themes/enki-night-owl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "enkia.enki-vscode-theme" version: "0.5.0" installs: 12063 + rating: 4 + ratings: 4 author: "enkia" repo: "https://github.com/enkia/enki-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" diff --git a/themes/enki-rainbow.yaml b/themes/enki-rainbow.yaml new file mode 100644 index 00000000..04a21a2d --- /dev/null +++ b/themes/enki-rainbow.yaml @@ -0,0 +1,52 @@ +name: "Enki Rainbow" +source: + marketplace_id: "enkia.enki-vscode-theme" + version: "0.5.0" + installs: 12063 + rating: 4 + ratings: 4 + author: "enkia" + repo: "https://github.com/enkia/enki-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" +colors: + bg: "#19191F" + fg: "#9699A8" + black: "#595D78" + red: "#C33C4A" + green: "#0F8976" + yellow: "#CA9B55" + blue: "#50B4E6" + magenta: "#6D3B66" + cyan: "#7ED6F9" + white: "#707386" + brightBlack: "#595D78" + brightRed: "#C33C4A" + brightGreen: "#0F8976" + brightYellow: "#CA9B55" + brightBlue: "#6582AF" + brightMagenta: "#9D599D" + brightCyan: "#7ED6F9" + brightWhite: "#707386" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 46.2 + black: 18.6 + red: 25.9 + green: 31 + yellow: 51.4 + blue: 55.1 + magenta: 11.9 + cyan: 73.7 + white: 27.9 + brightBlack: 18.6 + brightRed: 25.9 + brightGreen: 31 + brightYellow: 51.4 + brightBlue: 33.9 + brightMagenta: 27.2 + brightCyan: 73.7 + brightWhite: 27.9 diff --git a/themes/enki-red.yaml b/themes/enki-red.yaml index 950ae80e..85374a99 100644 --- a/themes/enki-red.yaml +++ b/themes/enki-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "enkia.enki-vscode-theme" version: "0.5.0" installs: 12063 + rating: 4 + ratings: 4 author: "enkia" repo: "https://github.com/enkia/enki-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" diff --git a/themes/enki.yaml b/themes/enki.yaml index 541a16c6..eb98d91a 100644 --- a/themes/enki.yaml +++ b/themes/enki.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "enkia.enki-vscode-theme" version: "0.5.0" installs: 12063 + rating: 4 + ratings: 4 author: "enkia" repo: "https://github.com/enkia/enki-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" diff --git a/themes/enlightened-ifission.yaml b/themes/enlightened-ifission.yaml new file mode 100644 index 00000000..1e12f0dc --- /dev/null +++ b/themes/enlightened-ifission.yaml @@ -0,0 +1,52 @@ +name: "enlightened-ifission" +source: + marketplace_id: "ifission.enlightened-ifission" + version: "0.0.6" + installs: 91 + rating: 0 + ratings: 0 + author: "ifission" + repo: "https://github.com/iFission/enlightened-ifission" + url: "https://marketplace.visualstudio.com/items?itemName=ifission.enlightened-ifission" +colors: + bg: "#000000" + fg: "#F8F8F2" + black: "#002111" + red: "#0074B4" + green: "#00C200" + yellow: "#C7C400" + blue: "#C4E810" + magenta: "#C930C7" + cyan: "#00C5C7" + white: "#C7C7C7" + brightBlack: "#002111" + brightRed: "#0074B4" + brightGreen: "#00C200" + brightYellow: "#C7C400" + brightBlue: "#C4E810" + brightMagenta: "#C930C7" + brightCyan: "#00C5C7" + brightWhite: "#C7C7C7" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 103 + black: 0 + red: 27.5 + green: 55.5 + yellow: 67.8 + blue: 83.9 + magenta: 32.3 + cyan: 60.9 + white: 72.7 + brightBlack: 0 + brightRed: 27.5 + brightGreen: 55.5 + brightYellow: 67.8 + brightBlue: 83.9 + brightMagenta: 32.3 + brightCyan: 60.9 + brightWhite: 72.7 diff --git a/themes/enough.yaml b/themes/enough.yaml index b4d6a92d..6e600fa6 100644 --- a/themes/enough.yaml +++ b/themes/enough.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "marcusolsson.enough-visual-studio-code" version: "1.0.0" installs: 886 + rating: 5 + ratings: 1 author: "Marcus Olsson" repo: "https://github.com/marcusolsson/vscode-theme-enough" url: "https://marketplace.visualstudio.com/items?itemName=marcusolsson.enough-visual-studio-code" diff --git a/themes/enova.yaml b/themes/enova.yaml index f5814406..7a799760 100644 --- a/themes/enova.yaml +++ b/themes/enova.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shekhars0940054.enova" version: "0.0.1" installs: 116 + rating: 0 + ratings: 0 author: "shekhars0940054" repo: null url: "https://marketplace.visualstudio.com/items?itemName=shekhars0940054.enova" diff --git a/themes/eon-react.yaml b/themes/eon-react.yaml index 9bd6ed19..4580f0df 100644 --- a/themes/eon-react.yaml +++ b/themes/eon-react.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mrkumar.Eon-theme" version: "1.2.6" installs: 447 + rating: 5 + ratings: 1 author: "Mr.kumar" repo: "https://github.com/Cod-Kumar/Cod-kumar-vs-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mrkumar.Eon-theme" diff --git a/themes/eon-theme-second.yaml b/themes/eon-theme-second.yaml index 8cee5a8e..2b94435d 100644 --- a/themes/eon-theme-second.yaml +++ b/themes/eon-theme-second.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mrkumar.Eon-theme" version: "1.2.6" installs: 447 + rating: 5 + ratings: 1 author: "Mr.kumar" repo: "https://github.com/Cod-Kumar/Cod-kumar-vs-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mrkumar.Eon-theme" diff --git a/themes/eon-theme-v4.yaml b/themes/eon-theme-v4.yaml index d210a78f..80fa6c20 100644 --- a/themes/eon-theme-v4.yaml +++ b/themes/eon-theme-v4.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mrkumar.Eon-theme" version: "1.2.6" installs: 447 + rating: 5 + ratings: 1 author: "Mr.kumar" repo: "https://github.com/Cod-Kumar/Cod-kumar-vs-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mrkumar.Eon-theme" diff --git a/themes/eon-theme.yaml b/themes/eon-theme.yaml index f08b0391..c5d8185c 100644 --- a/themes/eon-theme.yaml +++ b/themes/eon-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mrkumar.Eon-theme" version: "1.2.6" installs: 447 + rating: 5 + ratings: 1 author: "Mr.kumar" repo: "https://github.com/Cod-Kumar/Cod-kumar-vs-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mrkumar.Eon-theme" diff --git a/themes/epsilon.yaml b/themes/epsilon.yaml index 051b4f09..9bd2c573 100644 --- a/themes/epsilon.yaml +++ b/themes/epsilon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mzafram2001.epsilon" version: "0.0.18" installs: 69 + rating: 5 + ratings: 1 author: "mzafram2001" repo: "https://github.com/mzafram2001/Epsilon" url: "https://marketplace.visualstudio.com/items?itemName=mzafram2001.epsilon" diff --git a/themes/equinox-dark.yaml b/themes/equinox-dark.yaml index 6734205f..d527bd78 100644 --- a/themes/equinox-dark.yaml +++ b/themes/equinox-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xAlvzx.equinox-theme" version: "1.0.4" installs: 45 + rating: 0 + ratings: 0 author: "xAlvzx" repo: "https://github.com/xAlvzx/equinox-theme" url: "https://marketplace.visualstudio.com/items?itemName=xAlvzx.equinox-theme" diff --git a/themes/equinox-light.yaml b/themes/equinox-light.yaml index 530470c8..24607997 100644 --- a/themes/equinox-light.yaml +++ b/themes/equinox-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xAlvzx.equinox-theme" version: "1.0.4" installs: 45 + rating: 0 + ratings: 0 author: "xAlvzx" repo: "https://github.com/xAlvzx/equinox-theme" url: "https://marketplace.visualstudio.com/items?itemName=xAlvzx.equinox-theme" diff --git a/themes/eralith.yaml b/themes/eralith.yaml index ff832738..49bd2ae0 100644 --- a/themes/eralith.yaml +++ b/themes/eralith.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "eralith-theme.eralith-theme" version: "1.0.3" installs: 114 + rating: 0 + ratings: 0 author: "Eralith Theme" repo: "https://github.com/Danrley-Ruan-Saquetti/Eralith-Theme" url: "https://marketplace.visualstudio.com/items?itemName=eralith-theme.eralith-theme" diff --git a/themes/erikwdevtheme-color-theme.yaml b/themes/erikwdevtheme-color-theme.yaml index 10562d52..5aeeaf6a 100644 --- a/themes/erikwdevtheme-color-theme.yaml +++ b/themes/erikwdevtheme-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ErikWDev.erikwdevtheme" version: "1.2.2" installs: 152 + rating: 5 + ratings: 1 author: "ErikWDev" repo: "https://www.github.com/ErikWDev/ErikWDevTheme" url: "https://marketplace.visualstudio.com/items?itemName=ErikWDev.erikwdevtheme" diff --git a/themes/eritbh-s-theme.yaml b/themes/eritbh-s-theme.yaml index c1c067f9..d72c3b38 100644 --- a/themes/eritbh-s-theme.yaml +++ b/themes/eritbh-s-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "eritbh.eritbh-theme" version: "1.2.6" installs: 149 + rating: 0 + ratings: 0 author: "eritbh" repo: "https://github.com/eritbh/eritbh-theme" url: "https://marketplace.visualstudio.com/items?itemName=eritbh.eritbh-theme" diff --git a/themes/errordark.yaml b/themes/errordark.yaml index c16d21ef..b3346948 100644 --- a/themes/errordark.yaml +++ b/themes/errordark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Fukumi.friendly-dark" version: "2.2.27" installs: 2075 + rating: 5 + ratings: 1 author: "Satou Fukumi" repo: "https://github.com/satoufukumi/friendly-dark" url: "https://marketplace.visualstudio.com/items?itemName=Fukumi.friendly-dark" diff --git a/themes/errrrrm.yaml b/themes/errrrrm.yaml index d20a416d..34f09ab2 100644 --- a/themes/errrrrm.yaml +++ b/themes/errrrrm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "red-theme.red-vscode-theme" version: "0.0.3" installs: 69 + rating: 0 + ratings: 0 author: "red-theme" repo: "https://github.com/ddertaliss/vscode-red-theme.git#main" url: "https://marketplace.visualstudio.com/items?itemName=red-theme.red-vscode-theme" diff --git a/themes/escook-theme-light.yaml b/themes/escook-theme-light.yaml index 76042478..51f5396e 100644 --- a/themes/escook-theme-light.yaml +++ b/themes/escook-theme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Eternity.Eternity" version: "0.0.1" installs: 180 + rating: 0 + ratings: 0 author: "Eternity" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Eternity.Eternity" diff --git a/themes/eskey-theme.yaml b/themes/eskey-theme.yaml new file mode 100644 index 00000000..ab26f836 --- /dev/null +++ b/themes/eskey-theme.yaml @@ -0,0 +1,50 @@ +name: "Eskey Theme" +source: + marketplace_id: "Eskeyz.eskey-theme" + version: "0.0.2" + installs: 124 + author: "Eskeyz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Eskeyz.eskey-theme" +colors: + bg: "#303030" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 102.8 + black: 0 + red: 22.6 + green: 48.9 + yellow: 81.5 + blue: 23.3 + magenta: 25.6 + cyan: 43.4 + white: 75.4 + brightBlack: 17.9 + brightRed: 34.4 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.9 + brightMagenta: 41.3 + brightCyan: 51.3 + brightWhite: 85.9 diff --git a/themes/espresso-dark-theme.yaml b/themes/espresso-dark-theme.yaml index 10c5f13e..99581aff 100644 --- a/themes/espresso-dark-theme.yaml +++ b/themes/espresso-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/espresso-dark.yaml b/themes/espresso-dark.yaml index 9f6ed465..d60c4892 100644 --- a/themes/espresso-dark.yaml +++ b/themes/espresso-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/espresso-high.yaml b/themes/espresso-high.yaml new file mode 100644 index 00000000..43324341 --- /dev/null +++ b/themes/espresso-high.yaml @@ -0,0 +1,52 @@ +name: "Espresso-High" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#121212" + fg: "#EEEEEE" + black: "#121212" + red: "#E55031" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FCDFC2" + magenta: "#FCDFC2" + cyan: "#29C3A0" + white: "#EEEEEE" + brightBlack: "#121212" + brightRed: "#E55031" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FCDFC2" + brightMagenta: "#FCDFC2" + brightCyan: "#29C3A0" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.2 + black: 0 + red: 36.6 + green: 58.1 + yellow: 52.1 + blue: 89.7 + magenta: 89.7 + cyan: 58.1 + white: 96.2 + brightBlack: 0 + brightRed: 36.6 + brightGreen: 58.1 + brightYellow: 52.1 + brightBlue: 89.7 + brightMagenta: 89.7 + brightCyan: 58.1 + brightWhite: 96.2 diff --git a/themes/etec-pfa-light.yaml b/themes/etec-pfa-light.yaml index f9168414..1dbf27c4 100644 --- a/themes/etec-pfa-light.yaml +++ b/themes/etec-pfa-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Gustavo2022003.cps-theme" version: "0.1.3" installs: 1033 + rating: 0 + ratings: 0 author: "Gustavo2022003" repo: "https://github.com/Gustavo2022003/CPS-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Gustavo2022003.cps-theme" diff --git a/themes/eternal-autumn.yaml b/themes/eternal-autumn.yaml index fcbf5b0c..13627127 100644 --- a/themes/eternal-autumn.yaml +++ b/themes/eternal-autumn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devkvlt.eternal" version: "0.0.2" installs: 116 + rating: 5 + ratings: 1 author: "devkvlt" repo: "https://github.com/devkvlt/eternal.vscode" url: "https://marketplace.visualstudio.com/items?itemName=devkvlt.eternal" diff --git a/themes/eternal-summer.yaml b/themes/eternal-summer.yaml index e6a3882f..bfcba707 100644 --- a/themes/eternal-summer.yaml +++ b/themes/eternal-summer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devkvlt.eternal" version: "0.0.2" installs: 116 + rating: 5 + ratings: 1 author: "devkvlt" repo: "https://github.com/devkvlt/eternal.vscode" url: "https://marketplace.visualstudio.com/items?itemName=devkvlt.eternal" diff --git a/themes/eternals-no-italic.yaml b/themes/eternals-no-italic.yaml index 1a0cbf9b..71cb5953 100644 --- a/themes/eternals-no-italic.yaml +++ b/themes/eternals-no-italic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SurajNarsale.eternals" version: "0.0.4" installs: 332 + rating: 4.5 + ratings: 2 author: "Suraj Narsale" repo: "https://github.com/surajnarsale/eternals-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SurajNarsale.eternals" diff --git a/themes/ethanli-turquoise-dark.yaml b/themes/ethanli-turquoise-dark.yaml index 55cddcbd..fde1a6fe 100644 --- a/themes/ethanli-turquoise-dark.yaml +++ b/themes/ethanli-turquoise-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EthanLi.ethan-li-cyber-glow-theme" version: "1.0.3" installs: 58 + rating: 0 + ratings: 0 author: "EthanLi" repo: "https://github.com/LQYld/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=EthanLi.ethan-li-cyber-glow-theme" diff --git a/themes/ethereal.yaml b/themes/ethereal.yaml index 633b1ae3..a23e19a7 100644 --- a/themes/ethereal.yaml +++ b/themes/ethereal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brandonkong.ethereal" version: "0.1.2" installs: 388 + rating: 5 + ratings: 2 author: "Brandon Kong" repo: "https://github.com/brandon-kong/ethereal" url: "https://marketplace.visualstudio.com/items?itemName=brandonkong.ethereal" diff --git a/themes/ethereum-dark-blue-theme.yaml b/themes/ethereum-dark-blue-theme.yaml index 71ad35fe..bd36d32e 100644 --- a/themes/ethereum-dark-blue-theme.yaml +++ b/themes/ethereum-dark-blue-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "karolk.ethereum-dark" version: "1.8.15" installs: 4737 + rating: 5 + ratings: 4 author: "karolk" repo: "https://github.com/karolkozer/one-dark-ethereum-theme" url: "https://marketplace.visualstudio.com/items?itemName=karolk.ethereum-dark" diff --git a/themes/ethereum-dark-grey-theme.yaml b/themes/ethereum-dark-grey-theme.yaml index ecebfcb8..131e484c 100644 --- a/themes/ethereum-dark-grey-theme.yaml +++ b/themes/ethereum-dark-grey-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "karolk.ethereum-dark" version: "1.8.15" installs: 4737 + rating: 5 + ratings: 4 author: "karolk" repo: "https://github.com/karolkozer/one-dark-ethereum-theme" url: "https://marketplace.visualstudio.com/items?itemName=karolk.ethereum-dark" diff --git a/themes/eva-01-berserk-theme.yaml b/themes/eva-01-berserk-theme.yaml index 88b34b4f..cb7dd1d7 100644 --- a/themes/eva-01-berserk-theme.yaml +++ b/themes/eva-01-berserk-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "engr.eva-unit-01-berserk-theme" version: "0.1.0" installs: 591 + rating: 0 + ratings: 0 author: "engr" repo: "https://github.com/engrx0/eva-unit01-berserk-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=engr.eva-unit-01-berserk-theme" diff --git a/themes/eva-01.yaml b/themes/eva-01.yaml index 2a4b087b..daa7d19c 100644 --- a/themes/eva-01.yaml +++ b/themes/eva-01.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kvx.evangelion-unit-eva-01-theme" version: "0.1.2" installs: 751 + rating: 0 + ratings: 0 author: "kvx" repo: "https://github.com/luqezr/eva-01-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kvx.evangelion-unit-eva-01-theme" diff --git a/themes/eva-theme.yaml b/themes/eva-theme.yaml new file mode 100644 index 00000000..9614af7b --- /dev/null +++ b/themes/eva-theme.yaml @@ -0,0 +1,50 @@ +name: "Eva Theme" +source: + marketplace_id: "Sigmabudanov.vs-code-eva-theme" + version: "1.1.1" + installs: 153 + author: "Sigma budanov" + repo: "https://github.com/Spark4444/VsCodeEvangelionTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Sigmabudanov.vs-code-eva-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#BE0000" + green: "#00BC74" + yellow: "#B0B000" + blue: "#0059BC" + magenta: "#A700A7" + cyan: "#0088A9" + white: "#D4D4D4" + brightBlack: "#8E8E8E" + brightRed: "#FF0000" + brightGreen: "#00FF98" + brightYellow: "#FFFF00" + brightBlue: "#0079FF" + brightMagenta: "#FF00FF" + brightCyan: "#00CDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 22.1 + green: 53.9 + yellow: 56.6 + blue: 19.8 + magenta: 21.8 + cyan: 33.9 + white: 80.5 + brightBlack: 41.6 + brightRed: 37.5 + brightGreen: 88.2 + brightYellow: 102.7 + brightBlue: 34.8 + brightMagenta: 46.2 + brightCyan: 67.7 + brightWhite: 107.9 diff --git a/themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml b/themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml index e4419dae..24d5a183 100644 --- a/themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml +++ b/themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "engr.neon-genesis-evangelion-themes" version: "0.3.0" installs: 1739 + rating: 5 + ratings: 3 author: "engr" repo: "https://github.com/engrx0/neon-genesis-evangelion-vscode-theme-extension" url: "https://marketplace.visualstudio.com/items?itemName=engr.neon-genesis-evangelion-themes" diff --git a/themes/evans-dark-theme.yaml b/themes/evans-dark-theme.yaml index c6cf4db1..52308be5 100644 --- a/themes/evans-dark-theme.yaml +++ b/themes/evans-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AnilBeesetti.evans-dark-theme" version: "1.1.0" installs: 7733 + rating: 5 + ratings: 1 author: "AnilBeesetti" repo: "https://github.com/attitudeanil/Evans-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=AnilBeesetti.evans-dark-theme" diff --git a/themes/evans.yaml b/themes/evans.yaml index 731e0b67..bf6ba921 100644 --- a/themes/evans.yaml +++ b/themes/evans.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Evans.awesome-vscode-theme" version: "0.0.1" installs: 200 + rating: 0 + ratings: 0 author: "Evans" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Evans.awesome-vscode-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 88.7 black: 0 diff --git a/themes/eve.yaml b/themes/eve.yaml index 48a7e57c..35acf618 100644 --- a/themes/eve.yaml +++ b/themes/eve.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ItsSunnyMonster.sm-bunker" version: "1.1.7" installs: 1773 + rating: 0 + ratings: 0 author: "ItsSunnyMonster" repo: "https://github.com/ItsSunnyMonster/dobri-next-theme" url: "https://marketplace.visualstudio.com/items?itemName=ItsSunnyMonster.sm-bunker" diff --git a/themes/evening-sky.yaml b/themes/evening-sky.yaml index 4372e819..c1a6561d 100644 --- a/themes/evening-sky.yaml +++ b/themes/evening-sky.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SunSpot.evening-sky-theme" version: "1.1.0" installs: 1030 + rating: 0 + ratings: 0 author: "Sun Spot" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SunSpot.evening-sky-theme" diff --git a/themes/everforest-dark.yaml b/themes/everforest-dark.yaml new file mode 100644 index 00000000..1c60c0a8 --- /dev/null +++ b/themes/everforest-dark.yaml @@ -0,0 +1,52 @@ +name: "Everforest Dark" +source: + marketplace_id: "johnull.blackforest" + version: "0.0.2" + installs: 1527 + rating: 5 + ratings: 1 + author: "johnull" + repo: "https://github.com/johnull/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=johnull.blackforest" +colors: + bg: "#000000" + fg: "#D3C6AA" + black: "#343F44" + red: "#E67E80" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#83C092" + white: "#D3C6AA" + brightBlack: "#859289" + brightRed: "#E67E80" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#7FBBB3" + brightMagenta: "#D699B6" + brightCyan: "#83C092" + brightWhite: "#D3C6AA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 72.7 + black: 7.5 + red: 49.2 + green: 63.6 + yellow: 68.5 + blue: 59.5 + magenta: 56.6 + cyan: 60.8 + white: 72.7 + brightBlack: 42 + brightRed: 49.2 + brightGreen: 63.6 + brightYellow: 68.5 + brightBlue: 59.5 + brightMagenta: 56.6 + brightCyan: 60.8 + brightWhite: 72.7 diff --git a/themes/everforest-night-hard.yaml b/themes/everforest-night-hard.yaml new file mode 100644 index 00000000..7a58697f --- /dev/null +++ b/themes/everforest-night-hard.yaml @@ -0,0 +1,50 @@ +name: "Everforest Night Hard" +source: + marketplace_id: "jarith.everforest-night-vscode" + version: "1.2.1" + installs: 165 + author: "jarith" + repo: "https://github.com/jarith/everforest-night-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=jarith.everforest-night-vscode" +colors: + bg: "#2A3339" + fg: "#D8CAAC" + black: "#333E44" + red: "#EDA0A1" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#86BFB7" + magenta: "#DBA5BF" + cyan: "#83C092" + white: "#D8CAAC" + brightBlack: "#AEB6B0" + brightRed: "#EDA0A1" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#86BFB7" + brightMagenta: "#DBA5BF" + brightCyan: "#83C092" + brightWhite: "#D8CAAC" +meta: + mode: "dark" + accent: "orange" + hue: 237 + pair: null + contrast: + fg: 69.6 + black: 0 + red: 56.5 + green: 58.1 + yellow: 63 + blue: 56.4 + magenta: 56.4 + cyan: 55.3 + white: 69.6 + brightBlack: 56.2 + brightRed: 56.5 + brightGreen: 58.1 + brightYellow: 63 + brightBlue: 56.4 + brightMagenta: 56.4 + brightCyan: 55.3 + brightWhite: 69.6 diff --git a/themes/everforest-night-light-hard.yaml b/themes/everforest-night-light-hard.yaml new file mode 100644 index 00000000..0ce181ee --- /dev/null +++ b/themes/everforest-night-light-hard.yaml @@ -0,0 +1,50 @@ +name: "Everforest Night Light Hard" +source: + marketplace_id: "jarith.everforest-night-vscode" + version: "1.2.1" + installs: 165 + author: "jarith" + repo: "https://github.com/jarith/everforest-night-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=jarith.everforest-night-vscode" +colors: + bg: "#F3EBD2" + fg: "#4F5B62" + black: "#DED4BB" + red: "#AD3B4A" + green: "#47661B" + yellow: "#8C5A00" + blue: "#2E7099" + magenta: "#8F537F" + cyan: "#2C7459" + white: "#4F5B62" + brightBlack: "#525B50" + brightRed: "#AD3B4A" + brightGreen: "#47661B" + brightYellow: "#8C5A00" + brightBlue: "#2E7099" + brightMagenta: "#8F537F" + brightCyan: "#2C7459" + brightWhite: "#4F5B62" +meta: + mode: "light" + accent: "orange" + hue: 92 + pair: null + contrast: + fg: 72.4 + black: 10.6 + red: 67.3 + green: 70.7 + yellow: 67.2 + blue: 64.8 + magenta: 66.3 + cyan: 65.9 + white: 72.4 + brightBlack: 72.7 + brightRed: 67.3 + brightGreen: 70.7 + brightYellow: 67.2 + brightBlue: 64.8 + brightMagenta: 66.3 + brightCyan: 65.9 + brightWhite: 72.4 diff --git a/themes/everforest-night-light-medium.yaml b/themes/everforest-night-light-medium.yaml new file mode 100644 index 00000000..eb8a2391 --- /dev/null +++ b/themes/everforest-night-light-medium.yaml @@ -0,0 +1,50 @@ +name: "Everforest Night Light Medium" +source: + marketplace_id: "jarith.everforest-night-vscode" + version: "1.2.1" + installs: 165 + author: "jarith" + repo: "https://github.com/jarith/everforest-night-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=jarith.everforest-night-vscode" +colors: + bg: "#F9F3DF" + fg: "#4F5B62" + black: "#E4DBC3" + red: "#AD3B4A" + green: "#47661B" + yellow: "#8C5A00" + blue: "#2E7099" + magenta: "#8F537F" + cyan: "#2C7459" + white: "#4F5B62" + brightBlack: "#545D52" + brightRed: "#AD3B4A" + brightGreen: "#47661B" + brightYellow: "#8C5A00" + brightBlue: "#2E7099" + brightMagenta: "#8F537F" + brightCyan: "#2C7459" + brightWhite: "#4F5B62" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 77 + black: 11.3 + red: 71.9 + green: 75.3 + yellow: 71.9 + blue: 69.4 + magenta: 70.9 + cyan: 70.6 + white: 77 + brightBlack: 76.5 + brightRed: 71.9 + brightGreen: 75.3 + brightYellow: 71.9 + brightBlue: 69.4 + brightMagenta: 70.9 + brightCyan: 70.6 + brightWhite: 77 diff --git a/themes/everforest-night-light-soft.yaml b/themes/everforest-night-light-soft.yaml new file mode 100644 index 00000000..08bd91b3 --- /dev/null +++ b/themes/everforest-night-light-soft.yaml @@ -0,0 +1,50 @@ +name: "Everforest Night Light Soft" +source: + marketplace_id: "jarith.everforest-night-vscode" + version: "1.2.1" + installs: 165 + author: "jarith" + repo: "https://github.com/jarith/everforest-night-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=jarith.everforest-night-vscode" +colors: + bg: "#FFF9E8" + fg: "#4F5B62" + black: "#ECE7D2" + red: "#AD3B4A" + green: "#47661B" + yellow: "#8C5A00" + blue: "#2E7099" + magenta: "#8F537F" + cyan: "#2C7459" + white: "#4F5B62" + brightBlack: "#566054" + brightRed: "#AD3B4A" + brightGreen: "#47661B" + brightYellow: "#8C5A00" + brightBlue: "#2E7099" + brightMagenta: "#8F537F" + brightCyan: "#2C7459" + brightWhite: "#4F5B62" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 80.7 + black: 8.4 + red: 75.6 + green: 79 + yellow: 75.5 + blue: 73.1 + magenta: 74.6 + cyan: 74.2 + white: 80.7 + brightBlack: 79 + brightRed: 75.6 + brightGreen: 79 + brightYellow: 75.5 + brightBlue: 73.1 + brightMagenta: 74.6 + brightCyan: 74.2 + brightWhite: 80.7 diff --git a/themes/everforest-night-medium.yaml b/themes/everforest-night-medium.yaml new file mode 100644 index 00000000..61b88883 --- /dev/null +++ b/themes/everforest-night-medium.yaml @@ -0,0 +1,50 @@ +name: "Everforest Night Medium" +source: + marketplace_id: "jarith.everforest-night-vscode" + version: "1.2.1" + installs: 165 + author: "jarith" + repo: "https://github.com/jarith/everforest-night-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=jarith.everforest-night-vscode" +colors: + bg: "#323D43" + fg: "#D8CAAC" + black: "#3C474D" + red: "#EDA0A1" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#86BFB7" + magenta: "#DBA5BF" + cyan: "#83C092" + white: "#D8CAAC" + brightBlack: "#AEB6B0" + brightRed: "#EDA0A1" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#86BFB7" + brightMagenta: "#DBA5BF" + brightCyan: "#83C092" + brightWhite: "#D8CAAC" +meta: + mode: "dark" + accent: "orange" + hue: 232 + pair: null + contrast: + fg: 66.9 + black: 0 + red: 53.7 + green: 55.3 + yellow: 60.2 + blue: 53.6 + magenta: 53.6 + cyan: 52.5 + white: 66.9 + brightBlack: 53.4 + brightRed: 53.7 + brightGreen: 55.3 + brightYellow: 60.2 + brightBlue: 53.6 + brightMagenta: 53.6 + brightCyan: 52.5 + brightWhite: 66.9 diff --git a/themes/everforest-night-soft.yaml b/themes/everforest-night-soft.yaml new file mode 100644 index 00000000..5a6607bf --- /dev/null +++ b/themes/everforest-night-soft.yaml @@ -0,0 +1,50 @@ +name: "Everforest Night Soft" +source: + marketplace_id: "jarith.everforest-night-vscode" + version: "1.2.1" + installs: 165 + author: "jarith" + repo: "https://github.com/jarith/everforest-night-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=jarith.everforest-night-vscode" +colors: + bg: "#3C474D" + fg: "#D8CAAC" + black: "#465258" + red: "#EDA0A1" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#86BFB7" + magenta: "#DBA5BF" + cyan: "#83C092" + white: "#D8CAAC" + brightBlack: "#AEB6B0" + brightRed: "#EDA0A1" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#86BFB7" + brightMagenta: "#DBA5BF" + brightCyan: "#83C092" + brightWhite: "#D8CAAC" +meta: + mode: "dark" + accent: "orange" + hue: 232 + pair: null + contrast: + fg: 63.6 + black: 0 + red: 50.5 + green: 52.1 + yellow: 57 + blue: 50.4 + magenta: 50.4 + cyan: 49.3 + white: 63.6 + brightBlack: 50.2 + brightRed: 50.5 + brightGreen: 52.1 + brightYellow: 57 + brightBlue: 50.4 + brightMagenta: 50.4 + brightCyan: 49.3 + brightWhite: 63.6 diff --git a/themes/everforest-pro-dark-cozy.yaml b/themes/everforest-pro-dark-cozy.yaml index 38312399..74d12aa7 100644 --- a/themes/everforest-pro-dark-cozy.yaml +++ b/themes/everforest-pro-dark-cozy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndreiLucaci.everforest-pro" version: "2.0.0" installs: 2489 + rating: 5 + ratings: 2 author: "Andrei Lucaci" repo: "https://github.com/AndreiLucaci/everforest-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" diff --git a/themes/everforest-pro-dark-vibrant.yaml b/themes/everforest-pro-dark-vibrant.yaml index fb7a7c00..6f950607 100644 --- a/themes/everforest-pro-dark-vibrant.yaml +++ b/themes/everforest-pro-dark-vibrant.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndreiLucaci.everforest-pro" version: "2.0.0" installs: 2489 + rating: 5 + ratings: 2 author: "Andrei Lucaci" repo: "https://github.com/AndreiLucaci/everforest-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" diff --git a/themes/everforest-pro-dark.yaml b/themes/everforest-pro-dark.yaml new file mode 100644 index 00000000..3040f885 --- /dev/null +++ b/themes/everforest-pro-dark.yaml @@ -0,0 +1,52 @@ +name: "Everforest Pro Dark" +source: + marketplace_id: "AndreiLucaci.everforest-pro" + version: "2.0.0" + installs: 2489 + rating: 5 + ratings: 2 + author: "Andrei Lucaci" + repo: "https://github.com/AndreiLucaci/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" +colors: + bg: "#2D353B" + fg: "#D3C6AA" + black: "#343F44" + red: "#E67E80" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#83C092" + white: "#D3C6AA" + brightBlack: "#859289" + brightRed: "#E67E80" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#7FBBB3" + brightMagenta: "#D699B6" + brightCyan: "#83C092" + brightWhite: "#D3C6AA" +meta: + mode: "dark" + accent: "orange" + hue: 240 + pair: "Everforest Pro Light" + contrast: + fg: 66.6 + black: 0 + red: 43.1 + green: 57.5 + yellow: 62.4 + blue: 53.4 + magenta: 50.5 + cyan: 54.7 + white: 66.6 + brightBlack: 35.9 + brightRed: 43.1 + brightGreen: 57.5 + brightYellow: 62.4 + brightBlue: 53.4 + brightMagenta: 50.5 + brightCyan: 54.7 + brightWhite: 66.6 diff --git a/themes/everforest-pro-light-cozy.yaml b/themes/everforest-pro-light-cozy.yaml index 123ec383..142d5341 100644 --- a/themes/everforest-pro-light-cozy.yaml +++ b/themes/everforest-pro-light-cozy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndreiLucaci.everforest-pro" version: "2.0.0" installs: 2489 + rating: 5 + ratings: 2 author: "Andrei Lucaci" repo: "https://github.com/AndreiLucaci/everforest-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" diff --git a/themes/everforest-pro-light-vibrant.yaml b/themes/everforest-pro-light-vibrant.yaml index 613c14f8..ee2e557d 100644 --- a/themes/everforest-pro-light-vibrant.yaml +++ b/themes/everforest-pro-light-vibrant.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndreiLucaci.everforest-pro" version: "2.0.0" installs: 2489 + rating: 5 + ratings: 2 author: "Andrei Lucaci" repo: "https://github.com/AndreiLucaci/everforest-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" diff --git a/themes/everforest-pro-light.yaml b/themes/everforest-pro-light.yaml new file mode 100644 index 00000000..22c99902 --- /dev/null +++ b/themes/everforest-pro-light.yaml @@ -0,0 +1,52 @@ +name: "Everforest Pro Light" +source: + marketplace_id: "AndreiLucaci.everforest-pro" + version: "2.0.0" + installs: 2489 + rating: 5 + ratings: 2 + author: "Andrei Lucaci" + repo: "https://github.com/AndreiLucaci/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" +colors: + bg: "#FDF6E3" + fg: "#5C6A72" + black: "#5C6A72" + red: "#F85552" + green: "#8DA101" + yellow: "#DFA000" + blue: "#3A94C5" + magenta: "#DF69BA" + cyan: "#35A77C" + white: "#939F91" + brightBlack: "#5C6A72" + brightRed: "#F85552" + brightGreen: "#8DA101" + brightYellow: "#DFA000" + brightBlue: "#3A94C5" + brightMagenta: "#DF69BA" + brightCyan: "#35A77C" + brightWhite: "#F4F0D9" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Everforest Pro Dark" + contrast: + fg: 72.7 + black: 72.7 + red: 53.8 + green: 49.9 + yellow: 39.6 + blue: 55.7 + magenta: 51.7 + cyan: 51.3 + white: 48.1 + brightBlack: 72.7 + brightRed: 53.8 + brightGreen: 49.9 + brightYellow: 39.6 + brightBlue: 55.7 + brightMagenta: 51.7 + brightCyan: 51.3 + brightWhite: 0 diff --git a/themes/everforest-soft.yaml b/themes/everforest-soft.yaml index 94bf0bb9..428d8d55 100644 --- a/themes/everforest-soft.yaml +++ b/themes/everforest-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MrMartian.everforest-moist" version: "0.0.2" installs: 4414 + rating: 5 + ratings: 1 author: "MrMartian" repo: "https://github.com/CraigglesO/everforest-moist-vscode" url: "https://marketplace.visualstudio.com/items?itemName=MrMartian.everforest-moist" diff --git a/themes/evergarden-winter-light.yaml b/themes/evergarden-winter-light.yaml index e646d6b7..4958b3a9 100644 --- a/themes/evergarden-winter-light.yaml +++ b/themes/evergarden-winter-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "concatenateline.evergarden-winter-vscode" version: "1.0.0" installs: 39 + rating: 0 + ratings: 0 author: "concatenateline" repo: "https://github.com/ConcatenateLine/evergarden-winter-vscode-1.0.0" url: "https://marketplace.visualstudio.com/items?itemName=concatenateline.evergarden-winter-vscode" diff --git a/themes/evergarden-winter.yaml b/themes/evergarden-winter.yaml index 0664c237..8bf4fb0a 100644 --- a/themes/evergarden-winter.yaml +++ b/themes/evergarden-winter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "concatenateline.evergarden-winter-vscode" version: "1.0.0" installs: 39 + rating: 0 + ratings: 0 author: "concatenateline" repo: "https://github.com/ConcatenateLine/evergarden-winter-vscode-1.0.0" url: "https://marketplace.visualstudio.com/items?itemName=concatenateline.evergarden-winter-vscode" diff --git a/themes/evergarden.yaml b/themes/evergarden.yaml index fec462f4..fec8cffb 100644 --- a/themes/evergarden.yaml +++ b/themes/evergarden.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "icarrera.evergarden-theme" version: "1.3.0" installs: 759 + rating: 0 + ratings: 0 author: "Ignacio Carrera" repo: "https://github.com/nachokb/vscode-evergarden-theme" url: "https://marketplace.visualstudio.com/items?itemName=icarrera.evergarden-theme" diff --git a/themes/evernex.yaml b/themes/evernex.yaml index 5ee59724..ca2b504b 100644 --- a/themes/evernex.yaml +++ b/themes/evernex.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/evondev-tailwind-theme.yaml b/themes/evondev-tailwind-theme.yaml index aa3617e7..aff2bc55 100644 --- a/themes/evondev-tailwind-theme.yaml +++ b/themes/evondev-tailwind-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "evondev.evondev-tailwind-theme" version: "0.0.38" installs: 4791 + rating: 5 + ratings: 3 author: "evondev" repo: "https://github.com/evondev/evondev-tailwind-theme" url: "https://marketplace.visualstudio.com/items?itemName=evondev.evondev-tailwind-theme" diff --git a/themes/evro-dark.yaml b/themes/evro-dark.yaml index 3a7ef44c..8c7327f6 100644 --- a/themes/evro-dark.yaml +++ b/themes/evro-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EvroHQ.evro-dark" version: "1.9.8" installs: 3673 + rating: 5 + ratings: 5 author: "EvroHQ" repo: "https://github.com/evrohq/EvroDark" url: "https://marketplace.visualstudio.com/items?itemName=EvroHQ.evro-dark" diff --git a/themes/evro-darker-flat.yaml b/themes/evro-darker-flat.yaml index bcc80e78..4e37194d 100644 --- a/themes/evro-darker-flat.yaml +++ b/themes/evro-darker-flat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EvroHQ.evro-dark" version: "1.9.8" installs: 3673 + rating: 5 + ratings: 5 author: "EvroHQ" repo: "https://github.com/evrohq/EvroDark" url: "https://marketplace.visualstudio.com/items?itemName=EvroHQ.evro-dark" diff --git a/themes/exalanddark.yaml b/themes/exalanddark.yaml index a202ecd2..250be986 100644 --- a/themes/exalanddark.yaml +++ b/themes/exalanddark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Exaland.exaland-darktheme" version: "0.0.3" installs: 8 + rating: 5 + ratings: 2 author: "Exaland" repo: "https://github.com/exaland/exaland-darktheme" url: "https://marketplace.visualstudio.com/items?itemName=Exaland.exaland-darktheme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 256 + pair: null contrast: fg: 85.5 black: 0 diff --git a/themes/execlabs.yaml b/themes/execlabs.yaml index 14299258..676b088e 100644 --- a/themes/execlabs.yaml +++ b/themes/execlabs.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ExecLabs.execlabs" version: "0.0.3" installs: 1511 + rating: 5 + ratings: 2 author: "ExecLabs" repo: "https://github.com/mkuchak/execlabs-theme" url: "https://marketplace.visualstudio.com/items?itemName=ExecLabs.execlabs" diff --git a/themes/executive-level.yaml b/themes/executive-level.yaml new file mode 100644 index 00000000..701ca82e --- /dev/null +++ b/themes/executive-level.yaml @@ -0,0 +1,52 @@ +name: "Executive-Level" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#1C2433" + fg: "#E4E8EF" + black: "#1C2433" + red: "#F14444" + green: "#29C3A0" + yellow: "#D29922" + blue: "#0265FD" + magenta: "#0265FD" + cyan: "#29C3A0" + white: "#E4E8EF" + brightBlack: "#1C2433" + brightRed: "#F14444" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#0265FD" + brightMagenta: "#0265FD" + brightCyan: "#29C3A0" + brightWhite: "#E4E8EF" +meta: + mode: "dark" + accent: "purple" + hue: 263 + pair: null + contrast: + fg: 90 + black: 0 + red: 35.6 + green: 55.9 + yellow: 50 + blue: 26.1 + magenta: 26.1 + cyan: 55.9 + white: 90 + brightBlack: 0 + brightRed: 35.6 + brightGreen: 55.9 + brightYellow: 50 + brightBlue: 26.1 + brightMagenta: 26.1 + brightCyan: 55.9 + brightWhite: 90 diff --git a/themes/exias-theme-forest.yaml b/themes/exias-theme-forest.yaml new file mode 100644 index 00000000..9fb88db4 --- /dev/null +++ b/themes/exias-theme-forest.yaml @@ -0,0 +1,52 @@ +name: "Exias Theme (Forest)" +source: + marketplace_id: "AldiiX.exias-theme" + version: "1.2.140" + installs: 115 + rating: 0 + ratings: 0 + author: "AldiiX" + repo: "https://github.com/AldiiX/Exias-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=AldiiX.exias-theme" +colors: + bg: "#13161B" + fg: "#9FADC2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + pair: null + contrast: + fg: 56.3 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/exias-theme-town.yaml b/themes/exias-theme-town.yaml index 01a7a9c3..9741ee42 100644 --- a/themes/exias-theme-town.yaml +++ b/themes/exias-theme-town.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AldiiX.exias-theme" version: "1.2.140" installs: 115 + rating: 0 + ratings: 0 author: "AldiiX" repo: "https://github.com/AldiiX/Exias-Theme" url: "https://marketplace.visualstudio.com/items?itemName=AldiiX.exias-theme" diff --git a/themes/exile.yaml b/themes/exile.yaml index 807c6303..6dc95cbe 100644 --- a/themes/exile.yaml +++ b/themes/exile.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "johnull.exilebeans" version: "0.1.1" installs: 13 + rating: 0 + ratings: 0 author: "johnull" repo: null url: "https://marketplace.visualstudio.com/items?itemName=johnull.exilebeans" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 76.9 black: 0 diff --git a/themes/exovoid-purple-better-c.yaml b/themes/exovoid-purple-better-c.yaml new file mode 100644 index 00000000..ef3537a7 --- /dev/null +++ b/themes/exovoid-purple-better-c.yaml @@ -0,0 +1,50 @@ +name: "EXOVOID Purple Better C++" +source: + marketplace_id: "GinoPioLoco.exovoid" + version: "1.3.0" + installs: 50 + author: "Gino Pio Loco" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GinoPioLoco.exovoid" +colors: + bg: "#080707" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.8 + black: 0 + red: 27.7 + green: 53.9 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 91 diff --git a/themes/exploit.yaml b/themes/exploit.yaml index 56c2116f..5b2d992b 100644 --- a/themes/exploit.yaml +++ b/themes/exploit.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sevnth.exploit" version: "1.0.1" installs: 360 + rating: 5 + ratings: 1 author: "sevnth" repo: "https://github.com/sevnth/exploit-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sevnth.exploit" diff --git a/themes/eye-care-dark.yaml b/themes/eye-care-dark.yaml index 7c46164d..6261929f 100644 --- a/themes/eye-care-dark.yaml +++ b/themes/eye-care-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lynnjinjie.vscode-happy-theme" version: "0.2.1" installs: 218 + rating: 5 + ratings: 1 author: "lynnjinjie" repo: "https://github.com/lynnjinjie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lynnjinjie.vscode-happy-theme" diff --git a/themes/eye-care-light.yaml b/themes/eye-care-light.yaml index 27f2e426..6f032432 100644 --- a/themes/eye-care-light.yaml +++ b/themes/eye-care-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lynnjinjie.vscode-happy-theme" version: "0.2.1" installs: 218 + rating: 5 + ratings: 1 author: "lynnjinjie" repo: "https://github.com/lynnjinjie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lynnjinjie.vscode-happy-theme" diff --git a/themes/eye-care-owl-light.yaml b/themes/eye-care-owl-light.yaml new file mode 100644 index 00000000..4eec7fcc --- /dev/null +++ b/themes/eye-care-owl-light.yaml @@ -0,0 +1,52 @@ +name: "Eye Care Owl Light" +source: + marketplace_id: "lzwme.lzwme-eye-care" + version: "1.0.2" + installs: 11168 + rating: 3.67 + ratings: 3 + author: "lzwme" + repo: "https://github.com/lzwme/eye-care-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lzwme.lzwme-eye-care" +colors: + bg: "#FBFBFB" + fg: "#403F53" + black: "#403F53" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2AA298" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.3 + black: 91.3 + red: 66.3 + green: 64.2 + yellow: 37 + blue: 60.1 + magenta: 65.3 + cyan: 55.5 + white: 0 + brightBlack: 91.3 + brightRed: 66.3 + brightGreen: 64.2 + brightYellow: 39.7 + brightBlue: 60.1 + brightMagenta: 65.3 + brightCyan: 55.5 + brightWhite: 0 diff --git a/themes/eye-care-owl.yaml b/themes/eye-care-owl.yaml new file mode 100644 index 00000000..87fab6e1 --- /dev/null +++ b/themes/eye-care-owl.yaml @@ -0,0 +1,52 @@ +name: "eye-care-owl" +source: + marketplace_id: "lzwme.lzwme-eye-care" + version: "1.0.2" + installs: 11168 + rating: 3.67 + ratings: 3 + author: "lzwme" + repo: "https://github.com/lzwme/eye-care-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lzwme.lzwme-eye-care" +colors: + bg: "#011627" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ADDB67" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 244 + pair: null + contrast: + fg: 85.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 75 + blue: 56 + magenta: 53.8 + cyan: 59.8 + white: 107 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 107 diff --git a/themes/eye-care.yaml b/themes/eye-care.yaml index c86b9cb5..606e79b3 100644 --- a/themes/eye-care.yaml +++ b/themes/eye-care.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NazmusSayad.one-eye-care" version: "1.0.0" installs: 648 + rating: 5 + ratings: 1 author: "Nazmus Sayad" repo: "git+github.com:nazmussayad/vscode-theme.onnokicu--" url: "https://marketplace.visualstudio.com/items?itemName=NazmusSayad.one-eye-care" diff --git a/themes/eye-comfort-light.yaml b/themes/eye-comfort-light.yaml index 6780af57..a670487f 100644 --- a/themes/eye-comfort-light.yaml +++ b/themes/eye-comfort-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SaikatDas.eye-comfort-themes" version: "1.0.1" installs: 1298 + rating: 0 + ratings: 0 author: "Saikat Das" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SaikatDas.eye-comfort-themes" diff --git a/themes/eyecooler.yaml b/themes/eyecooler.yaml index 75252790..59426796 100644 --- a/themes/eyecooler.yaml +++ b/themes/eyecooler.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thedevtechub.eyecooler" version: "0.3.11" installs: 117 + rating: 5 + ratings: 1 author: "TheDevTecHub" repo: "https://github.com/devendew/eyecooler" url: "https://marketplace.visualstudio.com/items?itemName=thedevtechub.eyecooler" diff --git a/themes/eyeguard.yaml b/themes/eyeguard.yaml index 3bdd23fd..df7d61f8 100644 --- a/themes/eyeguard.yaml +++ b/themes/eyeguard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ImamHossainRoni.EyeGuard" version: "0.0.1" installs: 355 + rating: 5 + ratings: 3 author: "Imam Hossain Roni" repo: "https://github.com/ImamHossainRoni/eye-guard" url: "https://marketplace.visualstudio.com/items?itemName=ImamHossainRoni.EyeGuard" diff --git a/themes/eyehealth-dark.yaml b/themes/eyehealth-dark.yaml index 52db77a9..820bd2a5 100644 --- a/themes/eyehealth-dark.yaml +++ b/themes/eyehealth-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jonathanhild.eyehealth" version: "0.3.0" installs: 5036 + rating: 5 + ratings: 2 author: "Jonathan Hildenbrand" repo: "https://github.com/jonathanhild/eyehealth" url: "https://marketplace.visualstudio.com/items?itemName=jonathanhild.eyehealth" diff --git a/themes/eyehealth-plus-light.yaml b/themes/eyehealth-plus-light.yaml index 4c7b689f..d1e13570 100644 --- a/themes/eyehealth-plus-light.yaml +++ b/themes/eyehealth-plus-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jonathanhild.eyehealth" version: "0.3.0" installs: 5036 + rating: 5 + ratings: 2 author: "Jonathan Hildenbrand" repo: "https://github.com/jonathanhild/eyehealth" url: "https://marketplace.visualstudio.com/items?itemName=jonathanhild.eyehealth" diff --git a/themes/eyera.yaml b/themes/eyera.yaml index b7b3f070..817e8560 100644 --- a/themes/eyera.yaml +++ b/themes/eyera.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Eyera.eyera" version: "1.0.2" installs: 1 + rating: 0 + ratings: 0 author: "Eyera" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Eyera.eyera" diff --git a/themes/eyesore.yaml b/themes/eyesore.yaml index ec198a89..862e15d7 100644 --- a/themes/eyesore.yaml +++ b/themes/eyesore.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "joonaskivikunnas.eyesore" version: "1.1.0" installs: 1343 + rating: 0 + ratings: 0 author: "Joonas Kivikunnas" repo: "https://github.com/joonaskoo/eyesore" url: "https://marketplace.visualstudio.com/items?itemName=joonaskivikunnas.eyesore" diff --git a/themes/ezcord-highcontrast.yaml b/themes/ezcord-highcontrast.yaml index 98676af3..6c31e836 100644 --- a/themes/ezcord-highcontrast.yaml +++ b/themes/ezcord-highcontrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zkawiy.ezcord-theme" version: "1.1.1" installs: 46 + rating: 5 + ratings: 4 author: "zkawiy" repo: "https://github.com/Nico4devv/ezcord-theme" url: "https://marketplace.visualstudio.com/items?itemName=zkawiy.ezcord-theme" diff --git a/themes/ezcord-light.yaml b/themes/ezcord-light.yaml index cd388d82..950e0688 100644 --- a/themes/ezcord-light.yaml +++ b/themes/ezcord-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zkawiy.ezcord-theme" version: "1.1.1" installs: 46 + rating: 5 + ratings: 4 author: "zkawiy" repo: "https://github.com/Nico4devv/ezcord-theme" url: "https://marketplace.visualstudio.com/items?itemName=zkawiy.ezcord-theme" diff --git a/themes/ezcord-pastel.yaml b/themes/ezcord-pastel.yaml index 5ad4f37b..5a4601a8 100644 --- a/themes/ezcord-pastel.yaml +++ b/themes/ezcord-pastel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zkawiy.ezcord-theme" version: "1.1.1" installs: 46 + rating: 5 + ratings: 4 author: "zkawiy" repo: "https://github.com/Nico4devv/ezcord-theme" url: "https://marketplace.visualstudio.com/items?itemName=zkawiy.ezcord-theme" diff --git a/themes/ezcord.yaml b/themes/ezcord.yaml index 08f7aef4..d9b8daad 100644 --- a/themes/ezcord.yaml +++ b/themes/ezcord.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zkawiy.ezcord-theme" version: "1.1.1" installs: 46 + rating: 5 + ratings: 4 author: "zkawiy" repo: "https://github.com/Nico4devv/ezcord-theme" url: "https://marketplace.visualstudio.com/items?itemName=zkawiy.ezcord-theme" diff --git a/themes/ezgiturali-halloween.yaml b/themes/ezgiturali-halloween.yaml index c08d14aa..057b1ea9 100644 --- a/themes/ezgiturali-halloween.yaml +++ b/themes/ezgiturali-halloween.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ezgiturali.ezgiturali-halloween" version: "0.6.0" installs: 240 + rating: 0 + ratings: 0 author: "ezgiturali" repo: "https://github.com/ezgiturali/vscode-halloween-theme" url: "https://marketplace.visualstudio.com/items?itemName=ezgiturali.ezgiturali-halloween" diff --git a/themes/ezra.yaml b/themes/ezra.yaml index c4cef9cc..cb0cb538 100644 --- a/themes/ezra.yaml +++ b/themes/ezra.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AleksandarCugurovic.ezra" version: "1.0.0" installs: 154 + rating: 0 + ratings: 0 author: "Aleksandar Cugurovic" repo: "https://github.com/choogoor/ezra" url: "https://marketplace.visualstudio.com/items?itemName=AleksandarCugurovic.ezra" diff --git a/themes/fabi.yaml b/themes/fabi.yaml index 7b6ea65c..db5be95f 100644 --- a/themes/fabi.yaml +++ b/themes/fabi.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Fabius.fa" version: "0.0.3" installs: 195 + rating: 1 + ratings: 1 author: "Fabius" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Fabius.fa" diff --git a/themes/fady-ehab-amer-dark-theme.yaml b/themes/fady-ehab-amer-dark-theme.yaml index c8c9a91f..dac208a6 100644 --- a/themes/fady-ehab-amer-dark-theme.yaml +++ b/themes/fady-ehab-amer-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FADYEHABAMER.FADYEHABAMER" version: "1.1.2" installs: 207 + rating: 5 + ratings: 1 author: "FADY EHAB AMER" repo: "https://github.com/fadyehabamer/VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=FADYEHABAMER.FADYEHABAMER" diff --git a/themes/fae.yaml b/themes/fae.yaml new file mode 100644 index 00000000..53313c63 --- /dev/null +++ b/themes/fae.yaml @@ -0,0 +1,52 @@ +name: "Fae" +source: + marketplace_id: "suddenlyeva.fae-color-theme" + version: "0.0.3" + installs: 201 + rating: 0 + ratings: 0 + author: "suddenlyeva" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=suddenlyeva.fae-color-theme" +colors: + bg: "#212121" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.2 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/faerie-online.yaml b/themes/faerie-online.yaml index fa21d398..56c8b063 100644 --- a/themes/faerie-online.yaml +++ b/themes/faerie-online.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FaerieOnline.faerie-online" version: "1.0.0" installs: 48 + rating: 0 + ratings: 0 author: "Faerie.Online" repo: "https://github.com/lunatisenpai/faerie-online" url: "https://marketplace.visualstudio.com/items?itemName=FaerieOnline.faerie-online" diff --git a/themes/fakedonald-s.yaml b/themes/fakedonald-s.yaml index 8f7d11a9..cc91d362 100644 --- a/themes/fakedonald-s.yaml +++ b/themes/fakedonald-s.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SamuelePignone.fakedonalds" version: "0.0.1" installs: 11836 + rating: 5 + ratings: 5 author: "Samuele Pignone" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SamuelePignone.fakedonalds" diff --git a/themes/falcon.yaml b/themes/falcon.yaml index 2a3db515..d034ca74 100644 --- a/themes/falcon.yaml +++ b/themes/falcon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "robfalken.falcon" version: "0.0.12" installs: 537 + rating: 0 + ratings: 0 author: "Rob Falken" repo: null url: "https://marketplace.visualstudio.com/items?itemName=robfalken.falcon" diff --git a/themes/famous-dev-light.yaml b/themes/famous-dev-light.yaml index 2f7a10e1..859c22d6 100644 --- a/themes/famous-dev-light.yaml +++ b/themes/famous-dev-light.yaml @@ -1,11 +1,13 @@ name: "Famous Dev Light" source: - marketplace_id: "SurajPrasad.jetverse-theme" - version: "0.0.9" - installs: 60 - author: "Suraj Prasad" - repo: "https://github.com/SurajPrasaad/jetverse-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SurajPrasad.jetverse-theme" + marketplace_id: "GausAlMunirTushar.famous-dev-theme" + version: "1.4.0" + installs: 221 + rating: 0 + ratings: 0 + author: "Gaus Al Munir Tushar" + repo: "https://github.com/GausAlMunirTushar/famous-dev-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GausAlMunirTushar.famous-dev-theme" colors: bg: "#FFFFFF" fg: "#2D323C" diff --git a/themes/famous-dev-midnight.yaml b/themes/famous-dev-midnight.yaml index 0dc3220d..6eca1ecf 100644 --- a/themes/famous-dev-midnight.yaml +++ b/themes/famous-dev-midnight.yaml @@ -1,11 +1,13 @@ name: "Famous Dev Midnight" source: - marketplace_id: "SurajPrasad.jetverse-theme" - version: "0.0.9" - installs: 60 - author: "Suraj Prasad" - repo: "https://github.com/SurajPrasaad/jetverse-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SurajPrasad.jetverse-theme" + marketplace_id: "GausAlMunirTushar.famous-dev-theme" + version: "1.4.0" + installs: 221 + rating: 0 + ratings: 0 + author: "Gaus Al Munir Tushar" + repo: "https://github.com/GausAlMunirTushar/famous-dev-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GausAlMunirTushar.famous-dev-theme" colors: bg: "#0F0F17" fg: "#C0C5CE" diff --git a/themes/fanuc-karel.yaml b/themes/fanuc-karel.yaml index 9b0fc714..b0f87f05 100644 --- a/themes/fanuc-karel.yaml +++ b/themes/fanuc-karel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HunterTruba1022.fanuc-karel" version: "1.0.0" installs: 1108 + rating: 5 + ratings: 2 author: "HunterTruba1022" repo: "https://github.com/HunterTruba/Fanuc-Karel" url: "https://marketplace.visualstudio.com/items?itemName=HunterTruba1022.fanuc-karel" diff --git a/themes/fcode.yaml b/themes/fcode.yaml index e1a01145..b96ed227 100644 --- a/themes/fcode.yaml +++ b/themes/fcode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "flanggut.fcode-theme" version: "0.0.2" installs: 80 + rating: 0 + ratings: 0 author: "flanggut" repo: "https://github.com/flanggut/fcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=flanggut.fcode-theme" diff --git a/themes/fearless-dark.yaml b/themes/fearless-dark.yaml index 3e87c149..0134188d 100644 --- a/themes/fearless-dark.yaml +++ b/themes/fearless-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kevinhaube.fearless-color-theme" version: "0.1.2" installs: 326 + rating: 0 + ratings: 0 author: "kevinhaube" repo: "https://github.com/kevinhaube/fearless-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=kevinhaube.fearless-color-theme" diff --git a/themes/feefoolec-2-0.yaml b/themes/feefoolec-2-0.yaml index 15ff224a..1129e784 100644 --- a/themes/feefoolec-2-0.yaml +++ b/themes/feefoolec-2-0.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Feefoolec.feefoolec-2-vscode-theme" version: "2.0.0" installs: 54 + rating: 0 + ratings: 0 author: "Feefoolec" repo: "https://github.com/FilipKajetaniak/feefoolec-theme-2.0" url: "https://marketplace.visualstudio.com/items?itemName=Feefoolec.feefoolec-2-vscode-theme" diff --git a/themes/feels-like-progress-light.yaml b/themes/feels-like-progress-light.yaml index e93f0c88..19010cb4 100644 --- a/themes/feels-like-progress-light.yaml +++ b/themes/feels-like-progress-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PhilippComans.feels-like-progress" version: "1.0.0" installs: 29 + rating: 0 + ratings: 0 author: "Philipp Comans" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PhilippComans.feels-like-progress" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "teal" hue: null + pair: null contrast: fg: 98.7 black: 101.1 diff --git a/themes/felina.yaml b/themes/felina.yaml index 27703fcb..10d450bf 100644 --- a/themes/felina.yaml +++ b/themes/felina.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "veoper.felina" version: "0.0.2" installs: 211 + rating: 5 + ratings: 2 author: "veoper" repo: "https://github.com/veoper/felina-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=veoper.felina" diff --git a/themes/feline-color-theme.yaml b/themes/feline-color-theme.yaml index ccce97cb..b35dce80 100644 --- a/themes/feline-color-theme.yaml +++ b/themes/feline-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "feline-color-theme.feline-color-theme" version: "0.0.1" installs: 119 + rating: 0 + ratings: 0 author: "Feline Color Theme" repo: "https://github.com/thailanelopes/Meu_tema_VsCode" url: "https://marketplace.visualstudio.com/items?itemName=feline-color-theme.feline-color-theme" diff --git a/themes/feline-theme.yaml b/themes/feline-theme.yaml index 3ced90b7..1c7abf9e 100644 --- a/themes/feline-theme.yaml +++ b/themes/feline-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "feline-theme.feline-theme" version: "0.0.1" installs: 1 + rating: 0 + ratings: 0 author: "Feline Theme" repo: "https://github.com/thailanelopes/Meu_tema_VsCode" url: "https://marketplace.visualstudio.com/items?itemName=feline-theme.feline-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 78.7 black: 35.7 diff --git a/themes/felixo-green-contrast.yaml b/themes/felixo-green-contrast.yaml index e962a24f..59833fe4 100644 --- a/themes/felixo-green-contrast.yaml +++ b/themes/felixo-green-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "waroi.felixo" version: "1.0.0" installs: 846 + rating: 5 + ratings: 3 author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" diff --git a/themes/felixo-green-light.yaml b/themes/felixo-green-light.yaml index bc68e647..da0ce42c 100644 --- a/themes/felixo-green-light.yaml +++ b/themes/felixo-green-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "waroi.felixo" version: "1.0.0" installs: 846 + rating: 5 + ratings: 3 author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" diff --git a/themes/felixo-green.yaml b/themes/felixo-green.yaml index 3a961acf..d883ae46 100644 --- a/themes/felixo-green.yaml +++ b/themes/felixo-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "waroi.felixo" version: "1.0.0" installs: 846 + rating: 5 + ratings: 3 author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" diff --git a/themes/felixo-orange-contrast.yaml b/themes/felixo-orange-contrast.yaml index 46676db3..84d44b23 100644 --- a/themes/felixo-orange-contrast.yaml +++ b/themes/felixo-orange-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "waroi.felixo" version: "1.0.0" installs: 846 + rating: 5 + ratings: 3 author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" diff --git a/themes/felixo-orange-light.yaml b/themes/felixo-orange-light.yaml index 827202c1..f7773484 100644 --- a/themes/felixo-orange-light.yaml +++ b/themes/felixo-orange-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "waroi.felixo" version: "1.0.0" installs: 846 + rating: 5 + ratings: 3 author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" diff --git a/themes/felixo-orange.yaml b/themes/felixo-orange.yaml index 2076fc49..de113f61 100644 --- a/themes/felixo-orange.yaml +++ b/themes/felixo-orange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "waroi.felixo" version: "1.0.0" installs: 846 + rating: 5 + ratings: 3 author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" diff --git a/themes/feliz-dark.yaml b/themes/feliz-dark.yaml index 98e83350..ae5bdc07 100644 --- a/themes/feliz-dark.yaml +++ b/themes/feliz-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Feliz.feliz-dark" version: "1.1.0" installs: 144 + rating: 0 + ratings: 0 author: "Feliz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Feliz.feliz-dark" diff --git a/themes/ferra.yaml b/themes/ferra.yaml index 31fe67ee..6d3c5946 100644 --- a/themes/ferra.yaml +++ b/themes/ferra.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "neptotech.redocs-ferra-theme" version: "1.0.1" installs: 55 + rating: 0 + ratings: 0 author: "redoc" repo: "https://github.com/neptotech/redocs-ferra-theme" url: "https://marketplace.visualstudio.com/items?itemName=neptotech.redocs-ferra-theme" diff --git a/themes/feta.yaml b/themes/feta.yaml index 74f51a76..ff7b7270 100644 --- a/themes/feta.yaml +++ b/themes/feta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hasparus.feta" version: "0.0.4" installs: 183 + rating: 0 + ratings: 0 author: "hasparus" repo: "https://github.com/hasparus/feta" url: "https://marketplace.visualstudio.com/items?itemName=hasparus.feta" diff --git a/themes/fiestas.yaml b/themes/fiestas.yaml index ed8f4ec2..13d85179 100644 --- a/themes/fiestas.yaml +++ b/themes/fiestas.yaml @@ -2,7 +2,9 @@ name: "Fiestas" source: marketplace_id: "AdrielZarate.fiestas-vscode" version: "0.2.0" - installs: 26 + installs: 27 + rating: 0 + ratings: 0 author: "Adriel Zarate" repo: "https://github.com/adrielzarate/fiestas-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=AdrielZarate.fiestas-vscode" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 148 + pair: null contrast: fg: 106.4 black: 0 diff --git a/themes/fifties.yaml b/themes/fifties.yaml index 6525038c..a8cf3e2d 100644 --- a/themes/fifties.yaml +++ b/themes/fifties.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fifties.fifties" version: "0.0.5" installs: 1060 + rating: 5 + ratings: 1 author: "fifties" repo: "https://github.com/unmade/fifties" url: "https://marketplace.visualstudio.com/items?itemName=fifties.fifties" diff --git a/themes/fifty-shades-of-grape.yaml b/themes/fifty-shades-of-grape.yaml index e214c9de..29f73153 100644 --- a/themes/fifty-shades-of-grape.yaml +++ b/themes/fifty-shades-of-grape.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ChenYefet.fifty-shades-of-grape" version: "0.56.0" installs: 1235 + rating: 0 + ratings: 0 author: "Chen Yefet" repo: "https://github.com/ChenYefet/fifty-shades-of-grape" url: "https://marketplace.visualstudio.com/items?itemName=ChenYefet.fifty-shades-of-grape" diff --git a/themes/fig.yaml b/themes/fig.yaml new file mode 100644 index 00000000..bac48141 --- /dev/null +++ b/themes/fig.yaml @@ -0,0 +1,50 @@ +name: "Fig" +source: + marketplace_id: "FigTheme.fig-theme" + version: "0.0.7" + installs: 142 + author: "Fig Theme" + repo: "https://github.com/khevin/fig-theme" + url: "https://marketplace.visualstudio.com/items?itemName=FigTheme.fig-theme" +colors: + bg: "#181818" + fg: "#E4E4E4" + black: "#242424" + red: "#FC6B83" + green: "#3FA266" + yellow: "#D2943E" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E4E4E4" + brightBlack: "#E4E4E4" + brightRed: "#FC6B83" + brightGreen: "#70B489" + brightYellow: "#F1B467" + brightBlue: "#87A6C4" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 89.3 + black: 0 + red: 47.9 + green: 41.8 + yellow: 50.1 + blue: 48.5 + magenta: 46.4 + cyan: 62.6 + white: 89.3 + brightBlack: 89.3 + brightRed: 47.9 + brightGreen: 52.8 + brightYellow: 67.3 + brightBlue: 51.2 + brightMagenta: 46.4 + brightCyan: 62.6 + brightWhite: 89.3 diff --git a/themes/filter-turbo-color-theme.yaml b/themes/filter-turbo-color-theme.yaml new file mode 100644 index 00000000..7cfcdc8b --- /dev/null +++ b/themes/filter-turbo-color-theme.yaml @@ -0,0 +1,52 @@ +name: "filter-turbo-color-theme" +source: + marketplace_id: "Rezky.r-dark-pro" + version: "0.0.44" + installs: 3273 + rating: 5 + ratings: 1 + author: "Rezky P. Budihartono" + repo: "https://github.com/rezkycodes/rdark.pro" + url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" +colors: + bg: "#191B22" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 273 + pair: null + contrast: + fg: 58.9 + black: 8.4 + red: 36.2 + green: 59.9 + yellow: 48.1 + blue: 49.2 + magenta: 38.6 + cyan: 52 + white: 82.6 + brightBlack: 15 + brightRed: 45.6 + brightGreen: 76.3 + brightYellow: 60.8 + brightBlue: 63.3 + brightMagenta: 49.8 + brightCyan: 67.3 + brightWhite: 90.2 diff --git a/themes/filtered.yaml b/themes/filtered.yaml index 364a2f9b..f273cb00 100644 --- a/themes/filtered.yaml +++ b/themes/filtered.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "katcodes.filtered" version: "1.0.6" installs: 385 + rating: 0 + ratings: 0 author: "Katie Walker" repo: "https://github.com/Kat-Codes/filtered-vscode" url: "https://marketplace.visualstudio.com/items?itemName=katcodes.filtered" diff --git a/themes/finalbossjeff.yaml b/themes/finalbossjeff.yaml index 4b75c434..b758cb65 100644 --- a/themes/finalbossjeff.yaml +++ b/themes/finalbossjeff.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MyintMyatThura.finalbossjeff" version: "0.0.1" installs: 49 + rating: 0 + ratings: 0 author: "Myint Myat Thura" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MyintMyatThura.finalbossjeff" diff --git a/themes/firefly.yaml b/themes/firefly.yaml index 803c4447..6e0085b2 100644 --- a/themes/firefly.yaml +++ b/themes/firefly.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/firefox-dark.yaml b/themes/firefox-dark.yaml index eeaf42e2..2a6d23ac 100644 --- a/themes/firefox-dark.yaml +++ b/themes/firefox-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shaobeichen.gradient-theme" version: "1.19.0" installs: 24140 + rating: 4.71 + ratings: 7 author: "shaobeichen" repo: "https://github.com/shaobeichen/gradient-theme" url: "https://marketplace.visualstudio.com/items?itemName=shaobeichen.gradient-theme" diff --git a/themes/firelight.yaml b/themes/firelight.yaml index b8c00bf1..4721bc7c 100644 --- a/themes/firelight.yaml +++ b/themes/firelight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "camcgreen.firelight-vscode" version: "0.0.4" installs: 1588 + rating: 0 + ratings: 0 author: "Cam Green" repo: "https://github.com/camcgreen/firelight-vscode" url: "https://marketplace.visualstudio.com/items?itemName=camcgreen.firelight-vscode" diff --git a/themes/fireside.yaml b/themes/fireside.yaml new file mode 100644 index 00000000..0e7269e5 --- /dev/null +++ b/themes/fireside.yaml @@ -0,0 +1,52 @@ +name: "Fireside" +source: + marketplace_id: "cipher-shad0w.fireside" + version: "1.0.0" + installs: 62 + rating: 5 + ratings: 1 + author: "cipher-shad0w" + repo: "https://github.com/cipher-shad0w/fireside-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=cipher-shad0w.fireside" +colors: + bg: "#0A1220" + fg: "#F0F2F5" + black: "#0A1220" + red: "#E06B58" + green: "#889889" + yellow: "#B8B5A2" + blue: "#B8B8B6" + magenta: "#E48B7A" + cyan: "#D0CAC7" + white: "#F0F2F5" + brightBlack: "#555C65" + brightRed: "#E06B58" + brightGreen: "#9EACA1" + brightYellow: "#C8C3B8" + brightBlue: "#CDCBC9" + brightMagenta: "#F0A19A" + brightCyan: "#E3DDDA" + brightWhite: "#F0F2F5" +meta: + mode: "dark" + accent: "orange" + hue: 261 + pair: null + contrast: + fg: 98.6 + black: 0 + red: 41.6 + green: 43.9 + yellow: 61.4 + blue: 63.3 + magenta: 51.8 + cyan: 74.5 + white: 98.6 + brightBlack: 18 + brightRed: 41.6 + brightGreen: 54.8 + brightYellow: 69.9 + brightBlue: 74.6 + brightMagenta: 62 + brightCyan: 86.1 + brightWhite: 98.6 diff --git a/themes/firewatch.yaml b/themes/firewatch.yaml index 943c3f5e..5b8d7c5d 100644 --- a/themes/firewatch.yaml +++ b/themes/firewatch.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gmtstephane.firewatch" version: "0.0.1" installs: 917 + rating: 0 + ratings: 0 author: "gmtstephane" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gmtstephane.firewatch" diff --git a/themes/flamelabs-fire.yaml b/themes/flamelabs-fire.yaml index 98fbf1f2..e54016ec 100644 --- a/themes/flamelabs-fire.yaml +++ b/themes/flamelabs-fire.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Congram.flamelabs" version: "1.3.0" installs: 353 + rating: 0 + ratings: 0 author: "Congram" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Congram.flamelabs" diff --git a/themes/flamelabs-plasma.yaml b/themes/flamelabs-plasma.yaml index 58bacb31..52659dcd 100644 --- a/themes/flamelabs-plasma.yaml +++ b/themes/flamelabs-plasma.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Congram.flamelabs" version: "1.3.0" installs: 353 + rating: 0 + ratings: 0 author: "Congram" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Congram.flamelabs" diff --git a/themes/flamingo-nebula.yaml b/themes/flamingo-nebula.yaml new file mode 100644 index 00000000..249e1c08 --- /dev/null +++ b/themes/flamingo-nebula.yaml @@ -0,0 +1,52 @@ +name: "Flamingo Nebula" +source: + marketplace_id: "kgrubb.flamingo-nebula" + version: "0.0.3" + installs: 2901 + rating: 0 + ratings: 0 + author: "kgrubb" + repo: "https://github.com/kgrubb/flamingo-nebula" + url: "https://marketplace.visualstudio.com/items?itemName=kgrubb.flamingo-nebula" +colors: + bg: "#263647" + fg: "#FFFFFF" + black: "#000000" + red: "#FD6E72" + green: "#1DBB9B" + yellow: "#FEF035" + blue: "#69AFF8" + magenta: "#A665A6" + cyan: "#1DAFEC" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#FDA0A0" + brightGreen: "#3CC5AA" + brightYellow: "#FFFC67" + brightBlue: "#69AFF8" + brightMagenta: "#EE70A9" + brightCyan: "#478DC8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 251 + pair: null + contrast: + fg: 101.5 + black: 0 + red: 43.2 + green: 48.3 + yellow: 89.2 + blue: 50.4 + magenta: 26.8 + cyan: 47.1 + white: 66.4 + brightBlack: 17.6 + brightRed: 58.5 + brightGreen: 54 + brightYellow: 95.5 + brightBlue: 50.4 + brightMagenta: 42.3 + brightCyan: 32.5 + brightWhite: 101.5 diff --git a/themes/flash-green-dark.yaml b/themes/flash-green-dark.yaml new file mode 100644 index 00000000..1f157397 --- /dev/null +++ b/themes/flash-green-dark.yaml @@ -0,0 +1,52 @@ +name: "Flash Green Dark" +source: + marketplace_id: "YoubaImkf.flash-green-dark" + version: "0.4.0" + installs: 429 + rating: 0 + ratings: 0 + author: "YoubaImkf" + repo: "https://github.com/YoubaImkf/flash-green-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YoubaImkf.flash-green-dark" +colors: + bg: "#0F0E0E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#C9FC0C" + blue: "#5588CB" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 80.2 + black: 0 + red: 27.4 + green: 53.7 + yellow: 94 + blue: 37.5 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/flat-light.yaml b/themes/flat-light.yaml index 725557ce..7181a9a4 100644 --- a/themes/flat-light.yaml +++ b/themes/flat-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gungorn.themes-by-gungorn" version: "1.0.7" installs: 151 + rating: 0 + ratings: 0 author: "gungorn" repo: "https://github.com/gungorn/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=gungorn.themes-by-gungorn" diff --git a/themes/flat-ui-immersed.yaml b/themes/flat-ui-immersed.yaml index e589c117..02a65820 100644 --- a/themes/flat-ui-immersed.yaml +++ b/themes/flat-ui-immersed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lkytal.FlatUI" version: "1.4.9" installs: 264006 + rating: 4.93 + ratings: 28 author: "Kaiyuan Liu" repo: "https://github.com/lkytal/vscode-theme-flatui" url: "https://marketplace.visualstudio.com/items?itemName=lkytal.FlatUI" diff --git a/themes/flat-ui-one-dark.yaml b/themes/flat-ui-one-dark.yaml index 1470f3f0..496db237 100644 --- a/themes/flat-ui-one-dark.yaml +++ b/themes/flat-ui-one-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BowserV2.FlatUiOneDark" version: "1.2.0" installs: 2009 + rating: 5 + ratings: 1 author: "Bowser V2" repo: "https://github.com/Jazzmoon/FlatUiOneDark" url: "https://marketplace.visualstudio.com/items?itemName=BowserV2.FlatUiOneDark" diff --git a/themes/flatcap.yaml b/themes/flatcap.yaml index 665fbf58..427fc193 100644 --- a/themes/flatcap.yaml +++ b/themes/flatcap.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cheycron.flatcap-theme" version: "1.1.0" installs: 117 + rating: 0 + ratings: 0 author: "cheycron" repo: "https://github.com/cheycron/flatcap-vscode" url: "https://marketplace.visualstudio.com/items?itemName=cheycron.flatcap-theme" diff --git a/themes/flatland-monokai-improved.yaml b/themes/flatland-monokai-improved.yaml new file mode 100644 index 00000000..f6bcf01e --- /dev/null +++ b/themes/flatland-monokai-improved.yaml @@ -0,0 +1,52 @@ +name: "Flatland Monokai Improved" +source: + marketplace_id: "meirbon.flatland-monokai-improved" + version: "0.1.5" + installs: 5699 + rating: 4.5 + ratings: 2 + author: "Mèir Noordermeer" + repo: "https://github.com/MeirBon/flatland-monokai-improved" + url: "https://marketplace.visualstudio.com/items?itemName=meirbon.flatland-monokai-improved" +colors: + bg: "#26292C" + fg: "#F8F8F2" + black: "#1F1F1F" + red: "#DD454D" + green: "#82DD4D" + yellow: "#F7C054" + blue: "#36A3D9" + magenta: "#E79AFF" + cyan: "#9BFFFA" + white: "#E2E2E2" + brightBlack: "#4B4B4B" + brightRed: "#EC141F" + brightGreen: "#5EFF00" + brightYellow: "#FFD82B" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#56FFF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 99.4 + black: 0 + red: 30.5 + green: 69.3 + yellow: 70.2 + blue: 44.2 + magenta: 60.1 + cyan: 93.3 + white: 85.6 + brightBlack: 8.8 + brightRed: 29.5 + brightGreen: 84.5 + brightYellow: 81.2 + brightBlue: 32.1 + brightMagenta: 54.9 + brightCyan: 89.4 + brightWhite: 104.3 diff --git a/themes/flatuiexp.yaml b/themes/flatuiexp.yaml index 24a1c42a..b9bfb60c 100644 --- a/themes/flatuiexp.yaml +++ b/themes/flatuiexp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "timmain.flatuibased-v1" version: "0.3.0" installs: 69 + rating: 0 + ratings: 0 author: "timmain" repo: null url: "https://marketplace.visualstudio.com/items?itemName=timmain.flatuibased-v1" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 46.3 black: 0 diff --git a/themes/flavia.yaml b/themes/flavia.yaml index 301ba01d..d283eefd 100644 --- a/themes/flavia.yaml +++ b/themes/flavia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ShahAbulKalam.flavia-dark" version: "1.0.0" installs: 106 + rating: 5 + ratings: 1 author: "Shah Abul Kalam" repo: "https://github.com/DanishQ1011/Flavia-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ShahAbulKalam.flavia-dark" diff --git a/themes/fleetheme.yaml b/themes/fleetheme.yaml new file mode 100644 index 00000000..8f74b0cf --- /dev/null +++ b/themes/fleetheme.yaml @@ -0,0 +1,52 @@ +name: "Fleetheme" +source: + marketplace_id: "abdelposada.wissar-fleetheme" + version: "1.0.1" + installs: 1032 + rating: 0 + ratings: 0 + author: "Abdel Posada" + repo: "https://github.com/abdelposada/wissar-fleetheme" + url: "https://marketplace.visualstudio.com/items?itemName=abdelposada.wissar-fleetheme" +colors: + bg: "#181818" + fg: "#D6D6DD" + black: "#676767" + red: "#F14C4C" + green: "#15AC91" + yellow: "#E5B95C" + blue: "#4C9DF3" + magenta: "#E567DC" + cyan: "#75D3BA" + white: "#D6D6DD" + brightBlack: "#676767" + brightRed: "#F14C4C" + brightGreen: "#15AC91" + brightYellow: "#E5B95C" + brightBlue: "#4C9DF3" + brightMagenta: "#E567DC" + brightCyan: "#75D3BA" + brightWhite: "#D6D6DD" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.9 + black: 22.4 + red: 38.5 + green: 46.5 + yellow: 67.1 + blue: 46.7 + magenta: 46.4 + cyan: 68.8 + white: 80.9 + brightBlack: 22.4 + brightRed: 38.5 + brightGreen: 46.5 + brightYellow: 67.1 + brightBlue: 46.7 + brightMagenta: 46.4 + brightCyan: 68.8 + brightWhite: 80.9 diff --git a/themes/fleeting-theme-modern.yaml b/themes/fleeting-theme-modern.yaml new file mode 100644 index 00000000..04a187c2 --- /dev/null +++ b/themes/fleeting-theme-modern.yaml @@ -0,0 +1,52 @@ +name: "Fleeting Theme Modern" +source: + marketplace_id: "fleeting-sound.fleeting-theme" + version: "0.1.6" + installs: 470 + rating: 5 + ratings: 1 + author: "fleeting-sound" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=fleeting-sound.fleeting-theme" +colors: + bg: "#1E232C" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 262 + pair: null + contrast: + fg: 57.8 + black: 0 + red: 40.5 + green: 60.7 + yellow: 69 + blue: 39.9 + magenta: 43.6 + cyan: 53 + white: 81.5 + brightBlack: 34 + brightRed: 36.9 + brightGreen: 60.7 + brightYellow: 69 + brightBlue: 39.9 + brightMagenta: 11.2 + brightCyan: 53 + brightWhite: 81.5 diff --git a/themes/fleetish.yaml b/themes/fleetish.yaml index 9e69844a..daa98138 100644 --- a/themes/fleetish.yaml +++ b/themes/fleetish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "k8r.fleetish" version: "0.1.0" installs: 4031 + rating: 5 + ratings: 5 author: "k8r" repo: "https://github.com/krfl/fleetish-vscode" url: "https://marketplace.visualstudio.com/items?itemName=k8r.fleetish" diff --git a/themes/fleetonedark.yaml b/themes/fleetonedark.yaml index 53bdafd9..baabd452 100644 --- a/themes/fleetonedark.yaml +++ b/themes/fleetonedark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DominikGawlik.fleetonedark" version: "0.0.1" installs: 18 + rating: 0 + ratings: 0 author: "Dominik Gawlik" repo: "https://github.com/dgawlik/FleetOneDark" url: "https://marketplace.visualstudio.com/items?itemName=DominikGawlik.fleetonedark" diff --git a/themes/fleety.yaml b/themes/fleety.yaml index ff6ab74f..3fc369fe 100644 --- a/themes/fleety.yaml +++ b/themes/fleety.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wilmarj.fleety" version: "0.1.0" installs: 4183 + rating: 4.75 + ratings: 4 author: "wilmarj" repo: "https://github.com/wilmarjongkind/fleety" url: "https://marketplace.visualstudio.com/items?itemName=wilmarj.fleety" diff --git a/themes/fleex-theme-dark.yaml b/themes/fleex-theme-dark.yaml index bbdd3367..3c8e8433 100644 --- a/themes/fleex-theme-dark.yaml +++ b/themes/fleex-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-forest-dark.yaml b/themes/fleex-theme-forest-dark.yaml index 2344b092..fb89e673 100644 --- a/themes/fleex-theme-forest-dark.yaml +++ b/themes/fleex-theme-forest-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-forest-light.yaml b/themes/fleex-theme-forest-light.yaml index cea492f1..5106c715 100644 --- a/themes/fleex-theme-forest-light.yaml +++ b/themes/fleex-theme-forest-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-light.yaml b/themes/fleex-theme-light.yaml index f80c217d..776a7389 100644 --- a/themes/fleex-theme-light.yaml +++ b/themes/fleex-theme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-mist-dark.yaml b/themes/fleex-theme-mist-dark.yaml index 0ee1c28a..960b79f4 100644 --- a/themes/fleex-theme-mist-dark.yaml +++ b/themes/fleex-theme-mist-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-mist-light.yaml b/themes/fleex-theme-mist-light.yaml index 884722cc..415910a9 100644 --- a/themes/fleex-theme-mist-light.yaml +++ b/themes/fleex-theme-mist-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-ocean-dark.yaml b/themes/fleex-theme-ocean-dark.yaml index 9521d90e..786d0e28 100644 --- a/themes/fleex-theme-ocean-dark.yaml +++ b/themes/fleex-theme-ocean-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-ocean-light.yaml b/themes/fleex-theme-ocean-light.yaml index 63198183..5942d308 100644 --- a/themes/fleex-theme-ocean-light.yaml +++ b/themes/fleex-theme-ocean-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-plum-dark.yaml b/themes/fleex-theme-plum-dark.yaml index bccd7602..314c8af2 100644 --- a/themes/fleex-theme-plum-dark.yaml +++ b/themes/fleex-theme-plum-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-plum-light.yaml b/themes/fleex-theme-plum-light.yaml index d17f6f63..b211e43f 100644 --- a/themes/fleex-theme-plum-light.yaml +++ b/themes/fleex-theme-plum-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-rose-dark.yaml b/themes/fleex-theme-rose-dark.yaml index 20db2f4d..2bb5986f 100644 --- a/themes/fleex-theme-rose-dark.yaml +++ b/themes/fleex-theme-rose-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-rose-light.yaml b/themes/fleex-theme-rose-light.yaml index 31408131..226b5749 100644 --- a/themes/fleex-theme-rose-light.yaml +++ b/themes/fleex-theme-rose-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-sand-dark.yaml b/themes/fleex-theme-sand-dark.yaml index 51fe7553..dd6a4ceb 100644 --- a/themes/fleex-theme-sand-dark.yaml +++ b/themes/fleex-theme-sand-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-sand-light.yaml b/themes/fleex-theme-sand-light.yaml index c87fc3db..6067e2e9 100644 --- a/themes/fleex-theme-sand-light.yaml +++ b/themes/fleex-theme-sand-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-warm-dark.yaml b/themes/fleex-theme-warm-dark.yaml index 42d3a71f..768c97d9 100644 --- a/themes/fleex-theme-warm-dark.yaml +++ b/themes/fleex-theme-warm-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleex-theme-warm-light.yaml b/themes/fleex-theme-warm-light.yaml index f717ce8b..007cdd11 100644 --- a/themes/fleex-theme-warm-light.yaml +++ b/themes/fleex-theme-warm-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bluebone.fleex-theme" version: "0.1.9" installs: 100 + rating: 5 + ratings: 1 author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" diff --git a/themes/fleury-theme.yaml b/themes/fleury-theme.yaml index 737a15ab..76e9fb86 100644 --- a/themes/fleury-theme.yaml +++ b/themes/fleury-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jonesnc.fleury-theme" version: "1.0.0" installs: 30 + rating: 0 + ratings: 0 author: "jonesnc" repo: "https://github.com/jonesnc/fleury-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jonesnc.fleury-theme" diff --git a/themes/flex-appeal.yaml b/themes/flex-appeal.yaml index 45ff1cde..b02a011b 100644 --- a/themes/flex-appeal.yaml +++ b/themes/flex-appeal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lotterleben.flex-appeal" version: "0.0.1" installs: 2956 + rating: 5 + ratings: 2 author: "lotterleben" repo: "https://github.com/Lotterleben/flex-appeal" url: "https://marketplace.visualstudio.com/items?itemName=lotterleben.flex-appeal" diff --git a/themes/flexoki.yaml b/themes/flexoki.yaml index 44f79d7e..a4871870 100644 --- a/themes/flexoki.yaml +++ b/themes/flexoki.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sglza.flexoki" version: "0.0.3" installs: 2614 + rating: 5 + ratings: 2 author: "sglza" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sglza.flexoki" diff --git a/themes/flippidippi-light.yaml b/themes/flippidippi-light.yaml new file mode 100644 index 00000000..8badb739 --- /dev/null +++ b/themes/flippidippi-light.yaml @@ -0,0 +1,52 @@ +name: "flippidippi light" +source: + marketplace_id: "flippidippi.flippidippi-theme" + version: "0.0.8" + installs: 9945 + rating: 5 + ratings: 4 + author: "flippidippi" + repo: "https://gitlab.com/flippidippi/flippidippi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=flippidippi.flippidippi-theme" +colors: + bg: "#F9F5D7" + fg: "#3C3836" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 90.1 + black: 11.5 + red: 68.8 + green: 51.2 + yellow: 41.8 + blue: 62.4 + magenta: 62.3 + cyan: 52.1 + white: 67.1 + brightBlack: 57.7 + brightRed: 80.4 + brightGreen: 67 + brightYellow: 58.3 + brightBlue: 75.6 + brightMagenta: 76.1 + brightCyan: 67.8 + brightWhite: 90.1 diff --git a/themes/flora.yaml b/themes/flora.yaml index 73656648..70975a61 100644 --- a/themes/flora.yaml +++ b/themes/flora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "merle.flora" version: "1.1.2" installs: 541 + rating: 0 + ratings: 0 author: "mmerle" repo: "https://github.com/mmerle/flora" url: "https://marketplace.visualstudio.com/items?itemName=merle.flora" diff --git a/themes/florence.yaml b/themes/florence.yaml index 87366910..feeefbf1 100644 --- a/themes/florence.yaml +++ b/themes/florence.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "felipeymn.florence" version: "1.0.2" installs: 59 + rating: 0 + ratings: 0 author: "felipeymn" repo: "https://github.com/felipeymn/florence-vscode" url: "https://marketplace.visualstudio.com/items?itemName=felipeymn.florence" diff --git a/themes/floriamaris.yaml b/themes/floriamaris.yaml index aefaa61a..ea7e48e5 100644 --- a/themes/floriamaris.yaml +++ b/themes/floriamaris.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "indiamaris.floriamaris" version: "0.0.1" installs: 33 + rating: 0 + ratings: 0 author: "indiamaris" repo: null url: "https://marketplace.visualstudio.com/items?itemName=indiamaris.floriamaris" diff --git a/themes/florist-dark.yaml b/themes/florist-dark.yaml index 01f49625..e7d03120 100644 --- a/themes/florist-dark.yaml +++ b/themes/florist-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnush.florist-theme" version: "0.1.5" installs: 1125 + rating: 5 + ratings: 2 author: "Magnus Hvidtfeldt" repo: "https://github.com/mch-sg/florist-theme" url: "https://marketplace.visualstudio.com/items?itemName=magnush.florist-theme" diff --git a/themes/florist-light.yaml b/themes/florist-light.yaml index b1c88127..82ae671f 100644 --- a/themes/florist-light.yaml +++ b/themes/florist-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnush.florist-theme" version: "0.1.5" installs: 1125 + rating: 5 + ratings: 2 author: "Magnus Hvidtfeldt" repo: "https://github.com/mch-sg/florist-theme" url: "https://marketplace.visualstudio.com/items?itemName=magnush.florist-theme" diff --git a/themes/flow-better-theme.yaml b/themes/flow-better-theme.yaml index 2ab66a78..4f9a522d 100644 --- a/themes/flow-better-theme.yaml +++ b/themes/flow-better-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Cha0sGeiger.flow-better-theme" version: "0.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Cha0sGeiger" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Cha0sGeiger.flow-better-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 249 + pair: null contrast: fg: 72.4 black: 0 diff --git a/themes/fluentblue.yaml b/themes/fluentblue.yaml new file mode 100644 index 00000000..d6ca8c3a --- /dev/null +++ b/themes/fluentblue.yaml @@ -0,0 +1,52 @@ +name: "FluentBlue" +source: + marketplace_id: "Maltarouti.fluentblue" + version: "0.0.1" + installs: 157 + rating: 5 + ratings: 1 + author: "Maltarouti" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Maltarouti.fluentblue" +colors: + bg: "#222328" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 105.3 + black: 0 + red: 25.1 + green: 51.4 + yellow: 84 + blue: 25.8 + magenta: 28.2 + cyan: 46 + white: 88.4 + brightBlack: 20.4 + brightRed: 37 + brightGreen: 61.9 + brightYellow: 94 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/fluffy-dark-theme.yaml b/themes/fluffy-dark-theme.yaml index 30c07c40..20c058c2 100644 --- a/themes/fluffy-dark-theme.yaml +++ b/themes/fluffy-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ayakoSky.fluffy-dark-theme" version: "0.0.6" installs: 16564 + rating: 5 + ratings: 5 author: "ayako" repo: "https://github.com/ayako02/fluff-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=ayakoSky.fluffy-dark-theme" diff --git a/themes/fluffy-theme.yaml b/themes/fluffy-theme.yaml index 39f4a575..cf943692 100644 --- a/themes/fluffy-theme.yaml +++ b/themes/fluffy-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ayakoSky.fluffy-theme" version: "0.0.10" installs: 14347 + rating: 5 + ratings: 6 author: "ayako" repo: "https://github.com/ayako02/fluffy-theme" url: "https://marketplace.visualstudio.com/items?itemName=ayakoSky.fluffy-theme" diff --git a/themes/fluid-light-theme.yaml b/themes/fluid-light-theme.yaml index 9bd8ee58..73514661 100644 --- a/themes/fluid-light-theme.yaml +++ b/themes/fluid-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.fluid-theme" version: "0.0.7" installs: 845 + rating: 0 + ratings: 0 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/fluid-theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.fluid-theme" diff --git a/themes/fluminense.yaml b/themes/fluminense.yaml index d8941c30..0855e3bf 100644 --- a/themes/fluminense.yaml +++ b/themes/fluminense.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ViniciusReisch.Fluminense-Theme" version: "2.5.0" installs: 343 + rating: 5 + ratings: 1 author: "ViniciusReisch" repo: "https://github.com/Flyinng/Fluminense-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ViniciusReisch.Fluminense-Theme" diff --git a/themes/fluorite-theme.yaml b/themes/fluorite-theme.yaml index 53e82ac3..525dbbcf 100644 --- a/themes/fluorite-theme.yaml +++ b/themes/fluorite-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rnbsov.fluorite-theme" version: "1.2.6" installs: 1602 + rating: 5 + ratings: 7 author: "Rnbsov" repo: "https://github.com/Rnbsov/fluorite-theme" url: "https://marketplace.visualstudio.com/items?itemName=rnbsov.fluorite-theme" diff --git a/themes/flutter-dark.yaml b/themes/flutter-dark.yaml index 27890fd7..e90bd54c 100644 --- a/themes/flutter-dark.yaml +++ b/themes/flutter-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vmcgon.flutter-theme" version: "0.0.1" installs: 3704 + rating: 4 + ratings: 1 author: "vmcgon" repo: null url: "https://marketplace.visualstudio.com/items?itemName=vmcgon.flutter-theme" diff --git a/themes/flutter-theme-dark.yaml b/themes/flutter-theme-dark.yaml index 28d1cb11..13aff795 100644 --- a/themes/flutter-theme-dark.yaml +++ b/themes/flutter-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "idmarcosc.Flutter-Theme-Dark" version: "1.0.2" installs: 3232 + rating: 1 + ratings: 1 author: "Marcos Silva" repo: null url: "https://marketplace.visualstudio.com/items?itemName=idmarcosc.Flutter-Theme-Dark" diff --git a/themes/flux-dark.yaml b/themes/flux-dark.yaml index 159fefb7..501a39f9 100644 --- a/themes/flux-dark.yaml +++ b/themes/flux-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6233c1c4-89f3-48cf-8c88-156b07876860.flux-dark-theme" version: "1.0.0" installs: 38 + rating: 0 + ratings: 0 author: "YasserElgammal" repo: "https://github.com/YasserElgammal/flux-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=6233c1c4-89f3-48cf-8c88-156b07876860.flux-dark-theme" diff --git a/themes/flux-dawn.yaml b/themes/flux-dawn.yaml index a8695de5..6189c35a 100644 --- a/themes/flux-dawn.yaml +++ b/themes/flux-dawn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "danilrez.flux-theme" version: "2.5.1" installs: 261 + rating: 5 + ratings: 2 author: "Danil Reznichenko " repo: "https://github.com/danilrez/flux-theme" url: "https://marketplace.visualstudio.com/items?itemName=danilrez.flux-theme" diff --git a/themes/flux-daylight.yaml b/themes/flux-daylight.yaml index ad17b6e5..498fda3f 100644 --- a/themes/flux-daylight.yaml +++ b/themes/flux-daylight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "danilrez.flux-theme" version: "2.5.1" installs: 261 + rating: 5 + ratings: 2 author: "Danil Reznichenko " repo: "https://github.com/danilrez/flux-theme" url: "https://marketplace.visualstudio.com/items?itemName=danilrez.flux-theme" diff --git a/themes/flux-night.yaml b/themes/flux-night.yaml index c51eb41d..5c96e83b 100644 --- a/themes/flux-night.yaml +++ b/themes/flux-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "danilrez.flux-theme" version: "2.5.1" installs: 261 + rating: 5 + ratings: 2 author: "Danil Reznichenko " repo: "https://github.com/danilrez/flux-theme" url: "https://marketplace.visualstudio.com/items?itemName=danilrez.flux-theme" diff --git a/themes/flux-twilight.yaml b/themes/flux-twilight.yaml index 39b35129..f272c3c6 100644 --- a/themes/flux-twilight.yaml +++ b/themes/flux-twilight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "danilrez.flux-theme" version: "2.5.1" installs: 261 + rating: 5 + ratings: 2 author: "Danil Reznichenko " repo: "https://github.com/danilrez/flux-theme" url: "https://marketplace.visualstudio.com/items?itemName=danilrez.flux-theme" diff --git a/themes/flux.yaml b/themes/flux.yaml index 15d2248f..f949b3fd 100644 --- a/themes/flux.yaml +++ b/themes/flux.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Priyaank.ether" version: "2.0.1" installs: 55 + rating: 0 + ratings: 0 author: "Priyaank" repo: "https://github.com/PRIYAANK2510/Ether" url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.ether" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 33.9 black: 0 diff --git a/themes/foco-1-0-0.yaml b/themes/foco-1-0-0.yaml index 81d1310f..9c56e80e 100644 --- a/themes/foco-1-0-0.yaml +++ b/themes/foco-1-0-0.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JosafaMarengo.foco-light" version: "0.2.1" installs: 925 + rating: 0 + ratings: 0 author: "Josafá Marengo" repo: "https://github.com/josafamarengo/focus" url: "https://marketplace.visualstudio.com/items?itemName=JosafaMarengo.foco-light" diff --git a/themes/focus-blue-colorblind-concentration-trust.yaml b/themes/focus-blue-colorblind-concentration-trust.yaml index 47d91b4b..72a1549c 100644 --- a/themes/focus-blue-colorblind-concentration-trust.yaml +++ b/themes/focus-blue-colorblind-concentration-trust.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/focus-blue-concentration-trust.yaml b/themes/focus-blue-concentration-trust.yaml index d174b0e7..e5b2122d 100644 --- a/themes/focus-blue-concentration-trust.yaml +++ b/themes/focus-blue-concentration-trust.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/focus-blue-high-contrast-concentration-trust.yaml b/themes/focus-blue-high-contrast-concentration-trust.yaml index 66582109..f586cbc6 100644 --- a/themes/focus-blue-high-contrast-concentration-trust.yaml +++ b/themes/focus-blue-high-contrast-concentration-trust.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/focus-blue-light-concentration-trust.yaml b/themes/focus-blue-light-concentration-trust.yaml index 203d3ea1..d0d16619 100644 --- a/themes/focus-blue-light-concentration-trust.yaml +++ b/themes/focus-blue-light-concentration-trust.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/focus-colors.yaml b/themes/focus-colors.yaml index 2417e2bd..b3b1f938 100644 --- a/themes/focus-colors.yaml +++ b/themes/focus-colors.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wellington-A.omni-dracula-dark" version: "1.0.7" installs: 4766 + rating: 0 + ratings: 0 author: "Wellington-A" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" diff --git a/themes/focus-dark-fork-fork.yaml b/themes/focus-dark-fork-fork.yaml index d3b12236..0e71e95c 100644 --- a/themes/focus-dark-fork-fork.yaml +++ b/themes/focus-dark-fork-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SagarHarsora.synace" version: "0.0.4" installs: 17 + rating: 0 + ratings: 0 author: "Sagar Harsora" repo: "https://github.com/sagarrh/Synace" url: "https://marketplace.visualstudio.com/items?itemName=SagarHarsora.synace" diff --git a/themes/focusoncoding.yaml b/themes/focusoncoding.yaml index 3fe9b32b..f164134f 100644 --- a/themes/focusoncoding.yaml +++ b/themes/focusoncoding.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "stephenaalonzo.focusoncoding" version: "1.0.4" installs: 134 + rating: 0 + ratings: 0 author: "Stephen A. Alonzo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=stephenaalonzo.focusoncoding" diff --git a/themes/fodder-contrast.yaml b/themes/fodder-contrast.yaml index 1e83d103..7b34f750 100644 --- a/themes/fodder-contrast.yaml +++ b/themes/fodder-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/fodder-light.yaml b/themes/fodder-light.yaml index e218c638..c7b23f8e 100644 --- a/themes/fodder-light.yaml +++ b/themes/fodder-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/fodder.yaml b/themes/fodder.yaml index 04a86800..f07eb0fb 100644 --- a/themes/fodder.yaml +++ b/themes/fodder.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/fog-hazy.yaml b/themes/fog-hazy.yaml index 0a3648aa..bdc0d693 100644 --- a/themes/fog-hazy.yaml +++ b/themes/fog-hazy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "goldenchao.fog-hazy" version: "0.0.6" installs: 39 + rating: 0 + ratings: 0 author: "goldenchao" repo: "https://github.com/GoldSept/theme-fog-hazy" url: "https://marketplace.visualstudio.com/items?itemName=goldenchao.fog-hazy" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 105.6 black: 25.6 diff --git a/themes/foggy-forest-v1.yaml b/themes/foggy-forest-v1.yaml index 7cadf6ad..8afa83d3 100644 --- a/themes/foggy-forest-v1.yaml +++ b/themes/foggy-forest-v1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xinkechen.foggy-forest-theme" version: "0.2.0" installs: 532 + rating: 0 + ratings: 0 author: "xinkechen" repo: "https://github.com/xinkecf35/foggy-forest-theme" url: "https://marketplace.visualstudio.com/items?itemName=xinkechen.foggy-forest-theme" diff --git a/themes/foggy-minimal.yaml b/themes/foggy-minimal.yaml index 8cf10ed0..773e28ea 100644 --- a/themes/foggy-minimal.yaml +++ b/themes/foggy-minimal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ninjaqwert-2239-indie.foggy-min" version: "0.0.6" installs: 147 + rating: 0 + ratings: 0 author: "ninjaqwert" repo: "https://github.com/eerieA/vscode-foggy-min-theme" url: "https://marketplace.visualstudio.com/items?itemName=ninjaqwert-2239-indie.foggy-min" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 82.9 black: 103.6 diff --git a/themes/forest-color-theme.yaml b/themes/forest-color-theme.yaml index c3605b17..bc50953f 100644 --- a/themes/forest-color-theme.yaml +++ b/themes/forest-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "feb19.theme-forest" version: "0.1.1" installs: 3192 + rating: 5 + ratings: 1 author: "feb19" repo: "https://github.com/feb19/theme-forest" url: "https://marketplace.visualstudio.com/items?itemName=feb19.theme-forest" diff --git a/themes/forest-green-vitality-connection.yaml b/themes/forest-green-vitality-connection.yaml index de8766e9..50fe025a 100644 --- a/themes/forest-green-vitality-connection.yaml +++ b/themes/forest-green-vitality-connection.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/forest-green.yaml b/themes/forest-green.yaml index e7d20cf4..0ead1c9a 100644 --- a/themes/forest-green.yaml +++ b/themes/forest-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codeM.mystic-dark-collection" version: "0.1.0" installs: 86 + rating: 0 + ratings: 0 author: "Mustafa Özdemir" repo: null url: "https://marketplace.visualstudio.com/items?itemName=codeM.mystic-dark-collection" diff --git a/themes/forest-light.yaml b/themes/forest-light.yaml index 2b124b37..7a5a93b1 100644 --- a/themes/forest-light.yaml +++ b/themes/forest-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "charst4r.forest-light" version: "0.0.3" installs: 83 + rating: 0 + ratings: 0 author: "charst4r" repo: "https://github.com/charst4r/forest-light-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=charst4r.forest-light" @@ -29,7 +31,7 @@ meta: mode: "light" accent: "pink" hue: null - pair: "Midnight Forest" + pair: "Dark Forest" contrast: fg: 87.3 black: 87.3 diff --git a/themes/forest-night-ethereal-magic.yaml b/themes/forest-night-ethereal-magic.yaml index 599ef036..a0be941f 100644 --- a/themes/forest-night-ethereal-magic.yaml +++ b/themes/forest-night-ethereal-magic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "forrest-knight.forest-night-theme" version: "1.0.3" installs: 2766 + rating: 5 + ratings: 3 author: "Forrest Knight" repo: "https://github.com/ForrestKnight/forest-night-theme" url: "https://marketplace.visualstudio.com/items?itemName=forrest-knight.forest-night-theme" diff --git a/themes/forest-night-italic-serenade.yaml b/themes/forest-night-italic-serenade.yaml index 03d667c9..c033a32d 100644 --- a/themes/forest-night-italic-serenade.yaml +++ b/themes/forest-night-italic-serenade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rul3r.forest-night-serenade" version: "0.1.9" installs: 2140 + rating: 5 + ratings: 1 author: "rul3r" repo: "https://github.com/rul3rst4/forest-night-vscode" url: "https://marketplace.visualstudio.com/items?itemName=rul3r.forest-night-serenade" diff --git a/themes/forest-night-serenade.yaml b/themes/forest-night-serenade.yaml index dbf17420..f9f9eacd 100644 --- a/themes/forest-night-serenade.yaml +++ b/themes/forest-night-serenade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rul3r.forest-night-serenade" version: "0.1.9" installs: 2140 + rating: 5 + ratings: 1 author: "rul3r" repo: "https://github.com/rul3rst4/forest-night-vscode" url: "https://marketplace.visualstudio.com/items?itemName=rul3r.forest-night-serenade" diff --git a/themes/forest-night.yaml b/themes/forest-night.yaml index 2c3481b3..e76e49f4 100644 --- a/themes/forest-night.yaml +++ b/themes/forest-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ThemePlanet-Verdant.themeplanet-verdant" version: "1.0.0" installs: 47 + rating: 0 + ratings: 0 author: "ThemePlanet - Verdant" repo: "https://github.com/Ukt01/themeplanet-verdant" url: "https://marketplace.visualstudio.com/items?itemName=ThemePlanet-Verdant.themeplanet-verdant" diff --git a/themes/forest-rose.yaml b/themes/forest-rose.yaml index b54b79fb..739d600d 100644 --- a/themes/forest-rose.yaml +++ b/themes/forest-rose.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hongtrapt.pink-angel-themes" version: "0.0.2" installs: 273 + rating: 5 + ratings: 1 author: "hongtrapt" repo: "https://github.com/hongtra1311/pink-angel-themes" url: "https://marketplace.visualstudio.com/items?itemName=hongtrapt.pink-angel-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: null contrast: fg: 94.3 black: 0 diff --git a/themes/forest-tech.yaml b/themes/forest-tech.yaml new file mode 100644 index 00000000..1fc1b76e --- /dev/null +++ b/themes/forest-tech.yaml @@ -0,0 +1,52 @@ +name: "Forest-Tech" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#012441" + fg: "#B4FDC6" + black: "#012441" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#04DC3A" + magenta: "#04DC3A" + cyan: "#29C3A0" + white: "#B4FDC6" + brightBlack: "#012441" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#04DC3A" + brightMagenta: "#04DC3A" + brightCyan: "#29C3A0" + brightWhite: "#B4FDC6" +meta: + mode: "dark" + accent: "green" + hue: 248 + pair: null + contrast: + fg: 92.9 + black: 0 + red: 7.6 + green: 55.9 + yellow: 49.9 + blue: 65.6 + magenta: 65.6 + cyan: 55.9 + white: 92.9 + brightBlack: 0 + brightRed: 7.6 + brightGreen: 55.9 + brightYellow: 49.9 + brightBlue: 65.6 + brightMagenta: 65.6 + brightCyan: 55.9 + brightWhite: 92.9 diff --git a/themes/forest-violet.yaml b/themes/forest-violet.yaml index 782ebca8..1008d1aa 100644 --- a/themes/forest-violet.yaml +++ b/themes/forest-violet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "InnaSodri.lilac-grove-bundle" version: "0.0.1" installs: 231 + rating: 0 + ratings: 0 author: "Inna Sodri" repo: "https://example.com/inna/lilac-grove-bundle" url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.lilac-grove-bundle" diff --git a/themes/forestfly-dark-hard.yaml b/themes/forestfly-dark-hard.yaml index 6ffdfc6e..765ae276 100644 --- a/themes/forestfly-dark-hard.yaml +++ b/themes/forestfly-dark-hard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndreaCombette.FOREST-FLY" version: "0.3.1" installs: 802 + rating: 0 + ratings: 0 author: "AndreaCombette" repo: "https://github.com/Chatr0uge/ForestFly-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.FOREST-FLY" diff --git a/themes/forestfly-dark.yaml b/themes/forestfly-dark.yaml index 43e8579f..3d0ecc10 100644 --- a/themes/forestfly-dark.yaml +++ b/themes/forestfly-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndreaCombette.FOREST-FLY" version: "0.3.1" installs: 802 + rating: 0 + ratings: 0 author: "AndreaCombette" repo: "https://github.com/Chatr0uge/ForestFly-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.FOREST-FLY" diff --git a/themes/forestfly-light-hard.yaml b/themes/forestfly-light-hard.yaml index 55ce6130..37440f8d 100644 --- a/themes/forestfly-light-hard.yaml +++ b/themes/forestfly-light-hard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndreaCombette.FOREST-FLY" version: "0.3.1" installs: 802 + rating: 0 + ratings: 0 author: "AndreaCombette" repo: "https://github.com/Chatr0uge/ForestFly-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.FOREST-FLY" diff --git a/themes/forestlook.yaml b/themes/forestlook.yaml index 79139593..c773f851 100644 --- a/themes/forestlook.yaml +++ b/themes/forestlook.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Th3SmiL3y.forestlook" version: "1.1.5" installs: 1044 + rating: 5 + ratings: 1 author: "Th3SmiL3y" repo: "https://github.com/Th3SmiL3y/forestlook-theme-dark" url: "https://marketplace.visualstudio.com/items?itemName=Th3SmiL3y.forestlook" diff --git a/themes/forge-dark.yaml b/themes/forge-dark.yaml index 874aad49..0b6322a0 100644 --- a/themes/forge-dark.yaml +++ b/themes/forge-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FollowUpBoss.forge-vscode-theme" version: "0.0.2" installs: 898 + rating: 0 + ratings: 0 author: "Follow Up Boss" repo: "https://github.com/FollowUpBoss/fub-spa" url: "https://marketplace.visualstudio.com/items?itemName=FollowUpBoss.forge-vscode-theme" diff --git a/themes/forge-light.yaml b/themes/forge-light.yaml index ce10cf68..24b69e59 100644 --- a/themes/forge-light.yaml +++ b/themes/forge-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FollowUpBoss.forge-vscode-theme" version: "0.0.2" installs: 898 + rating: 0 + ratings: 0 author: "Follow Up Boss" repo: "https://github.com/FollowUpBoss/fub-spa" url: "https://marketplace.visualstudio.com/items?itemName=FollowUpBoss.forge-vscode-theme" diff --git a/themes/formal.yaml b/themes/formal.yaml index dfd53694..04b80f85 100644 --- a/themes/formal.yaml +++ b/themes/formal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Lemz42.Formal" version: "0.0.3" installs: 17 + rating: 0 + ratings: 0 author: "Lemz42" repo: "https://github.com/AM4730/Formal-VSC-theme" url: "https://marketplace.visualstudio.com/items?itemName=Lemz42.Formal" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 106 black: 106 diff --git a/themes/formosa-dark-ipanema-blue.yaml b/themes/formosa-dark-ipanema-blue.yaml index 355eaf24..a4babf28 100644 --- a/themes/formosa-dark-ipanema-blue.yaml +++ b/themes/formosa-dark-ipanema-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TakeshiYu.formosa-theme" version: "1.0.0" installs: 46 + rating: 0 + ratings: 0 author: "Takeshi Yu" repo: "https://github.com/takeshiyu/formosa-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=TakeshiYu.formosa-theme" diff --git a/themes/formosa-dark-night-green.yaml b/themes/formosa-dark-night-green.yaml index 9f7ea708..541fbca4 100644 --- a/themes/formosa-dark-night-green.yaml +++ b/themes/formosa-dark-night-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TakeshiYu.formosa-theme" version: "1.0.0" installs: 46 + rating: 0 + ratings: 0 author: "Takeshi Yu" repo: "https://github.com/takeshiyu/formosa-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=TakeshiYu.formosa-theme" diff --git a/themes/formosa-light-ipanema-blue.yaml b/themes/formosa-light-ipanema-blue.yaml index 5eb40389..cd82ddd6 100644 --- a/themes/formosa-light-ipanema-blue.yaml +++ b/themes/formosa-light-ipanema-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TakeshiYu.formosa-theme" version: "1.0.0" installs: 46 + rating: 0 + ratings: 0 author: "Takeshi Yu" repo: "https://github.com/takeshiyu/formosa-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=TakeshiYu.formosa-theme" diff --git a/themes/formosa-light-night-green.yaml b/themes/formosa-light-night-green.yaml index 07b45f5e..f05fa03c 100644 --- a/themes/formosa-light-night-green.yaml +++ b/themes/formosa-light-night-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TakeshiYu.formosa-theme" version: "1.0.0" installs: 46 + rating: 0 + ratings: 0 author: "Takeshi Yu" repo: "https://github.com/takeshiyu/formosa-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=TakeshiYu.formosa-theme" diff --git a/themes/forventone.yaml b/themes/forventone.yaml index a7a027e3..056a870e 100644 --- a/themes/forventone.yaml +++ b/themes/forventone.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Forventone.forventone-theme" version: "0.0.1" installs: 20 + rating: 0 + ratings: 0 author: "Forventone" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Forventone.forventone-theme" diff --git a/themes/forxtu.yaml b/themes/forxtu.yaml index 6d4da021..862be1ea 100644 --- a/themes/forxtu.yaml +++ b/themes/forxtu.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "forxtu.forxtu-vscode-theme" version: "0.2.1" installs: 1551 + rating: 5 + ratings: 3 author: "forxtu" repo: "https://github.com/forxtu/forxtu-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=forxtu.forxtu-vscode-theme" diff --git a/themes/foundyn-dev.yaml b/themes/foundyn-dev.yaml index fd09cf41..4e879916 100644 --- a/themes/foundyn-dev.yaml +++ b/themes/foundyn-dev.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Foundyn.foundyn-dev" version: "1.1.0" installs: 799 + rating: 5 + ratings: 2 author: "Foundyn" repo: "https://github.com/Foundyn/Foundyn-Dev" url: "https://marketplace.visualstudio.com/items?itemName=Foundyn.foundyn-dev" diff --git a/themes/foxdracula-color-theme.yaml b/themes/foxdracula-color-theme.yaml index 777d2d10..f5f4f843 100644 --- a/themes/foxdracula-color-theme.yaml +++ b/themes/foxdracula-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daniloBrayann.foxdracula" version: "0.0.12" installs: 149 + rating: 5 + ratings: 1 author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.foxdracula" diff --git a/themes/foxnett-nexus-theme.yaml b/themes/foxnett-nexus-theme.yaml new file mode 100644 index 00000000..0f545bcc --- /dev/null +++ b/themes/foxnett-nexus-theme.yaml @@ -0,0 +1,52 @@ +name: "foxnett-nexus-theme" +source: + marketplace_id: "FoxnettNexus.foxnett-nexus-theme" + version: "1.0.1" + installs: 23 + rating: 5 + ratings: 1 + author: "Foxnett Nexus" + repo: "https://github.com/foxnett/foxnett-nexus-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=FoxnettNexus.foxnett-nexus-theme" +colors: + bg: "#0A0B0F" + fg: "#F0F6FC" + black: "#0F1117" + red: "#F87171" + green: "#10B981" + yellow: "#FBBF24" + blue: "#60A5FA" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#CBD5E1" + brightBlack: "#475569" + brightRed: "#FCA5A5" + brightGreen: "#34D399" + brightYellow: "#FCD34D" + brightBlue: "#93C5FD" + brightMagenta: "#D8B4FE" + brightCyan: "#67E8F9" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 101.2 + black: 0 + red: 48.9 + green: 52.7 + yellow: 73.5 + blue: 52.2 + magenta: 50.5 + cyan: 69.4 + white: 80.2 + brightBlack: 15.6 + brightRed: 66.4 + brightGreen: 66 + brightYellow: 82.2 + brightBlue: 69 + brightMagenta: 70.1 + brightCyan: 82 + brightWhite: 104.2 diff --git a/themes/frankenstein.yaml b/themes/frankenstein.yaml index 45cad5ee..caa12596 100644 --- a/themes/frankenstein.yaml +++ b/themes/frankenstein.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "synxty.frankenstein" version: "1.0.3" installs: 2250 + rating: 5 + ratings: 1 author: "Synxty" repo: "https://github.com/synxty/frankenstein" url: "https://marketplace.visualstudio.com/items?itemName=synxty.frankenstein" diff --git a/themes/frantic-contrast.yaml b/themes/frantic-contrast.yaml index 8ccbbecb..822ec54d 100644 --- a/themes/frantic-contrast.yaml +++ b/themes/frantic-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/frantic-light.yaml b/themes/frantic-light.yaml index 7f00f99c..682068bb 100644 --- a/themes/frantic-light.yaml +++ b/themes/frantic-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/frantic.yaml b/themes/frantic.yaml index fa11ac76..9f093326 100644 --- a/themes/frantic.yaml +++ b/themes/frantic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/french-rose.yaml b/themes/french-rose.yaml index 14cb3266..b9aa532e 100644 --- a/themes/french-rose.yaml +++ b/themes/french-rose.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "french-rose-theme.french-rose-theme" version: "1.0.0" installs: 3808 + rating: 5 + ratings: 1 author: "French Rose Theme" repo: "https://github.com/denizozturk/french-rose-theme" url: "https://marketplace.visualstudio.com/items?itemName=french-rose-theme.french-rose-theme" diff --git a/themes/fresh-green-color-theme.yaml b/themes/fresh-green-color-theme.yaml new file mode 100644 index 00000000..0118ee83 --- /dev/null +++ b/themes/fresh-green-color-theme.yaml @@ -0,0 +1,52 @@ +name: "fresh-green-color-theme" +source: + marketplace_id: "wavebeem.fresh-green-vscode" + version: "1.0.0" + installs: 318 + rating: 0 + ratings: 0 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/fresh-green-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.fresh-green-vscode" +colors: + bg: "#FFFFFF" + fg: "#161616" + black: "#2E2E2E" + red: "#D2004F" + green: "#007C1F" + yellow: "#845B00" + blue: "#7700FF" + magenta: "#C3009B" + cyan: "#00718F" + white: "#FFFFFF" + brightBlack: "#2E2E2E" + brightRed: "#D2004F" + brightGreen: "#007C1F" + brightYellow: "#845B00" + brightBlue: "#7700FF" + brightMagenta: "#C3009B" + brightCyan: "#00718F" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 104.8 + black: 100.1 + red: 74.5 + green: 76.1 + yellow: 79.9 + blue: 79.5 + magenta: 75.1 + cyan: 77.3 + white: 0 + brightBlack: 100.1 + brightRed: 74.5 + brightGreen: 76.1 + brightYellow: 79.9 + brightBlue: 79.5 + brightMagenta: 75.1 + brightCyan: 77.3 + brightWhite: 0 diff --git a/themes/fresh-start.yaml b/themes/fresh-start.yaml index 8382e9cc..111278b9 100644 --- a/themes/fresh-start.yaml +++ b/themes/fresh-start.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BrihiIlyesImad.fresh-start" version: "2.0.0" installs: 28 + rating: 5 + ratings: 1 author: "Brihi Ilyes Imad" repo: "https://github.com/ilyesBrihi/fresh-start" url: "https://marketplace.visualstudio.com/items?itemName=BrihiIlyesImad.fresh-start" diff --git a/themes/freshcut-contrast.yaml b/themes/freshcut-contrast.yaml index b98195b3..e729b504 100644 --- a/themes/freshcut-contrast.yaml +++ b/themes/freshcut-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/freshcut-light.yaml b/themes/freshcut-light.yaml index bc76ea06..2d426e93 100644 --- a/themes/freshcut-light.yaml +++ b/themes/freshcut-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/freshcut.yaml b/themes/freshcut.yaml index db95451f..3475f7a4 100644 --- a/themes/freshcut.yaml +++ b/themes/freshcut.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/fretefy.yaml b/themes/fretefy.yaml index fae98788..115b4022 100644 --- a/themes/fretefy.yaml +++ b/themes/fretefy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Fretefy.fretefy-theme" version: "0.0.2" installs: 43 + rating: 0 + ratings: 0 author: "Fretefy" repo: "https://github.com/fretefy/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Fretefy.fretefy-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: 242 + pair: null contrast: fg: 89.7 black: 0 diff --git a/themes/friction-contrast.yaml b/themes/friction-contrast.yaml index 18c79d7d..465da2b9 100644 --- a/themes/friction-contrast.yaml +++ b/themes/friction-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/friction-light.yaml b/themes/friction-light.yaml index af4301bb..0e056ca7 100644 --- a/themes/friction-light.yaml +++ b/themes/friction-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/friction.yaml b/themes/friction.yaml index 1ce57a25..b36350d4 100644 --- a/themes/friction.yaml +++ b/themes/friction.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/fridge.yaml b/themes/fridge.yaml index f7bab831..dec2c6a9 100644 --- a/themes/fridge.yaml +++ b/themes/fridge.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mcMineyC.gruvboxical-vscode-theme" version: "6.3.4" installs: 205 + rating: 0 + ratings: 0 author: "mcMineyC" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mcMineyC.gruvboxical-vscode-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 60.4 black: 0 diff --git a/themes/friendly.yaml b/themes/friendly.yaml index 145e92e2..113b9207 100644 --- a/themes/friendly.yaml +++ b/themes/friendly.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Emad-W.Friendly-DarkTheme" version: "0.0.1" installs: 438 + rating: 0 + ratings: 0 author: "Emad-W" repo: "https://github.com/Emad-W/Friendly-DarkTheme" url: "https://marketplace.visualstudio.com/items?itemName=Emad-W.Friendly-DarkTheme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 75.8 black: 0 diff --git a/themes/frog-terminal.yaml b/themes/frog-terminal.yaml new file mode 100644 index 00000000..799627da --- /dev/null +++ b/themes/frog-terminal.yaml @@ -0,0 +1,52 @@ +name: "Frog Terminal" +source: + marketplace_id: "cobalt-frog.frog-terminal" + version: "0.0.2" + installs: 78 + rating: 0 + ratings: 0 + author: "Cobalt Frog" + repo: "https://github.com/CobaltFrog/frog-terminal" + url: "https://marketplace.visualstudio.com/items?itemName=cobalt-frog.frog-terminal" +colors: + bg: "#000000" + fg: "#52A535" + black: "#000000" + red: "#AA0000" + green: "#00AA00" + yellow: "#FFAA00" + blue: "#0000AA" + magenta: "#AA00AA" + cyan: "#00AAAA" + white: "#AAAAAA" + brightBlack: "#555555" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#F5F543" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 44.2 + black: 0 + red: 17.8 + green: 44.5 + yellow: 66.5 + blue: 0 + magenta: 22.5 + cyan: 47.6 + white: 56.2 + brightBlack: 16.1 + brightRed: 44.4 + brightGreen: 88.1 + brightYellow: 96.6 + brightBlue: 27.4 + brightMagenta: 51.9 + brightCyan: 93.4 + brightWhite: 107.9 diff --git a/themes/front-matter-cms-theme.yaml b/themes/front-matter-cms-theme.yaml new file mode 100644 index 00000000..86e1cb06 --- /dev/null +++ b/themes/front-matter-cms-theme.yaml @@ -0,0 +1,52 @@ +name: "Front Matter CMS Theme" +source: + marketplace_id: "eliostruyf.vscode-frontmatter-theme" + version: "0.0.7" + installs: 235 + rating: 0 + ratings: 0 + author: "Elio Struyf" + repo: "https://github.com/estruyf/vscode-frontmatter-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-frontmatter-theme" +colors: + bg: "#FFFFFF" + fg: "#0E131F" + black: "#141C2D" + red: "#FE4A49" + green: "#11FFC6" + yellow: "#F5CC00" + blue: "#46A1F0" + magenta: "#ED1292" + cyan: "#0ACCD6" + white: "#6A737D" + brightBlack: "#676965" + brightRed: "#FE6362" + brightGreen: "#44FFD2" + brightYellow: "#FFE45E" + brightBlue: "#5EADF2" + brightMagenta: "#F141A8" + brightCyan: "#15C2CB" + brightWhite: "#D1D5DA" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 105.1 + black: 103.9 + red: 59.5 + green: 14.2 + yellow: 25.1 + blue: 52.9 + magenta: 65.9 + cyan: 37.5 + white: 73.4 + brightBlack: 77.7 + brightRed: 54.8 + brightGreen: 13.1 + brightYellow: 13.4 + brightBlue: 47.1 + brightMagenta: 60.9 + brightCyan: 42.4 + brightWhite: 22.4 diff --git a/themes/frontend-galaxy.yaml b/themes/frontend-galaxy.yaml index 788f4bb5..11acb737 100644 --- a/themes/frontend-galaxy.yaml +++ b/themes/frontend-galaxy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.frontend-galaxy" version: "0.0.2" installs: 1429 + rating: 0 + ratings: 0 author: "Avetis" repo: "https://github.com/AvetisDN/frontend-galaxy" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.frontend-galaxy" diff --git a/themes/frontier-contrast.yaml b/themes/frontier-contrast.yaml index cb4948bc..ce119900 100644 --- a/themes/frontier-contrast.yaml +++ b/themes/frontier-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/frontier-light.yaml b/themes/frontier-light.yaml index 4b3d396e..6f758b8c 100644 --- a/themes/frontier-light.yaml +++ b/themes/frontier-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/frontier.yaml b/themes/frontier.yaml index ef0e7392..0d6bc98d 100644 --- a/themes/frontier.yaml +++ b/themes/frontier.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/frost-spark-dark.yaml b/themes/frost-spark-dark.yaml new file mode 100644 index 00000000..09d20857 --- /dev/null +++ b/themes/frost-spark-dark.yaml @@ -0,0 +1,52 @@ +name: "frost-spark-dark" +source: + marketplace_id: "pbarnum.frost-spark-theme" + version: "1.1.0" + installs: 83 + rating: 0 + ratings: 0 + author: "pbarnum" + repo: "https://github.com/pbarnum/frost-spark-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pbarnum.frost-spark-theme" +colors: + bg: "#07161B" + fg: "#CFCFCF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 221 + pair: null + contrast: + fg: 76.7 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.2 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/frozen-deep.yaml b/themes/frozen-deep.yaml new file mode 100644 index 00000000..22d21d87 --- /dev/null +++ b/themes/frozen-deep.yaml @@ -0,0 +1,52 @@ +name: "Frozen-Deep" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#1D292F" + fg: "#BDE1FA" + black: "#1D292F" + red: "#7C1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#BDE1FA" + magenta: "#BDE1FA" + cyan: "#29C3A0" + white: "#BDE1FA" + brightBlack: "#1D292F" + brightRed: "#7C1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#BDE1FA" + brightMagenta: "#BDE1FA" + brightCyan: "#29C3A0" + brightWhite: "#BDE1FA" +meta: + mode: "dark" + accent: "yellow" + hue: 230 + pair: null + contrast: + fg: 82.1 + black: 0 + red: 0 + green: 55.3 + yellow: 49.4 + blue: 82.1 + magenta: 82.1 + cyan: 55.3 + white: 82.1 + brightBlack: 0 + brightRed: 0 + brightGreen: 55.3 + brightYellow: 49.4 + brightBlue: 82.1 + brightMagenta: 82.1 + brightCyan: 55.3 + brightWhite: 82.1 diff --git a/themes/frubilar.yaml b/themes/frubilar.yaml new file mode 100644 index 00000000..37028515 --- /dev/null +++ b/themes/frubilar.yaml @@ -0,0 +1,52 @@ +name: "frubilar" +source: + marketplace_id: "estefano.frubilar" + version: "0.0.1" + installs: 34 + rating: 0 + ratings: 0 + author: "estefano" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=estefano.frubilar" +colors: + bg: "#260542" + fg: "#F8F8F8" + black: "#A2021A" + red: "#000000" + green: "#000000" + yellow: "#000000" + blue: "#000000" + magenta: "#000000" + cyan: "#000000" + white: "#FFFE9A" + brightBlack: "#000000" + brightRed: "#000000" + brightGreen: "#000000" + brightYellow: "#000000" + brightBlue: "#000000" + brightMagenta: "#000000" + brightCyan: "#000000" + brightWhite: "#FFFE9A" +meta: + mode: "dark" + accent: "orange" + hue: 303 + pair: null + contrast: + fg: 101.7 + black: 14.6 + red: 0 + green: 0 + yellow: 0 + blue: 0 + magenta: 0 + cyan: 0 + white: 102.2 + brightBlack: 0 + brightRed: 0 + brightGreen: 0 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 102.2 diff --git a/themes/fruitbasket-dark.yaml b/themes/fruitbasket-dark.yaml new file mode 100644 index 00000000..45e30d08 --- /dev/null +++ b/themes/fruitbasket-dark.yaml @@ -0,0 +1,52 @@ +name: "fruitbasket-dark" +source: + marketplace_id: "charlotte-dev.fruitbasket-theme" + version: "1.0.5" + installs: 124 + rating: 5 + ratings: 1 + author: "charlotte-dev" + repo: "https://git.charlotte.sh/lotte/fruitbasket" + url: "https://marketplace.visualstudio.com/items?itemName=charlotte-dev.fruitbasket-theme" +colors: + bg: "#1E1A1D" + fg: "#E5E5E5" + black: "#2A1F24" + red: "#D23B80" + green: "#6A9A6C" + yellow: "#E0BD6C" + blue: "#8CAFF0" + magenta: "#DC548F" + cyan: "#4DACB8" + white: "#E5E5E5" + brightBlack: "#7A7A7A" + brightRed: "#FF8AC8" + brightGreen: "#8AB68C" + brightYellow: "#F0CB7A" + brightBlue: "#7A9FE8" + brightMagenta: "#FFB8D9" + brightCyan: "#7ACAD5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 89.6 + black: 0 + red: 30.2 + green: 40.5 + yellow: 67.8 + blue: 57.3 + magenta: 36.6 + cyan: 49 + white: 89.6 + brightBlack: 30.5 + brightRed: 58.7 + brightGreen: 55.4 + brightYellow: 76.3 + brightBlue: 49.1 + brightMagenta: 74.5 + brightCyan: 65.8 + brightWhite: 106.4 diff --git a/themes/fruitbasket-light.yaml b/themes/fruitbasket-light.yaml new file mode 100644 index 00000000..8da5f426 --- /dev/null +++ b/themes/fruitbasket-light.yaml @@ -0,0 +1,52 @@ +name: "fruitbasket-light" +source: + marketplace_id: "charlotte-dev.fruitbasket-theme" + version: "1.0.5" + installs: 124 + rating: 5 + ratings: 1 + author: "charlotte-dev" + repo: "https://git.charlotte.sh/lotte/fruitbasket" + url: "https://marketplace.visualstudio.com/items?itemName=charlotte-dev.fruitbasket-theme" +colors: + bg: "#FEF9FB" + fg: "#2A1F24" + black: "#2A1F24" + red: "#C01C65" + green: "#3F6841" + yellow: "#9A6800" + blue: "#3057B0" + magenta: "#DC548F" + cyan: "#1A7884" + white: "#EEEEEE" + brightBlack: "#666666" + brightRed: "#FF8AC8" + brightGreen: "#83AF85" + brightYellow: "#E0BD6C" + brightBlue: "#7A9FE8" + brightMagenta: "#FFB8D9" + brightCyan: "#7ACAD5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 100 + black: 100 + red: 74.6 + green: 79 + yellow: 70.3 + blue: 80 + magenta: 60.7 + cyan: 72.4 + white: 0 + brightBlack: 75.9 + brightRed: 39.2 + brightGreen: 46 + brightYellow: 30.5 + brightBlue: 48.5 + brightMagenta: 24.2 + brightCyan: 32.4 + brightWhite: 0 diff --git a/themes/fuck-all-these-vscode-custom-ugly-themes.yaml b/themes/fuck-all-these-vscode-custom-ugly-themes.yaml index ac69abe2..142394cc 100644 --- a/themes/fuck-all-these-vscode-custom-ugly-themes.yaml +++ b/themes/fuck-all-these-vscode-custom-ugly-themes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "clowzed.none" version: "0.2.0" installs: 702 + rating: 5 + ratings: 1 author: "clowzed" repo: "https://github.com/clowzed/none" url: "https://marketplace.visualstudio.com/items?itemName=clowzed.none" diff --git a/themes/funchosa-dark-theme.yaml b/themes/funchosa-dark-theme.yaml index b122e1bc..732ae8ea 100644 --- a/themes/funchosa-dark-theme.yaml +++ b/themes/funchosa-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "funchosa.funchosa-dark" version: "1.0.4" installs: 37 + rating: 0 + ratings: 0 author: "Funchosa" repo: "https://github.com/FunChosa/funchosa-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=funchosa.funchosa-dark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: 289 + pair: null contrast: fg: 86 black: 0 diff --git a/themes/funcode.yaml b/themes/funcode.yaml new file mode 100644 index 00000000..3ab29734 --- /dev/null +++ b/themes/funcode.yaml @@ -0,0 +1,52 @@ +name: "FunCode" +source: + marketplace_id: "beccauwu.funcode" + version: "0.0.2" + installs: 344 + rating: 0 + ratings: 0 + author: "beccauwu" + repo: "https://github.com/beccauwu/FunCode" + url: "https://marketplace.visualstudio.com/items?itemName=beccauwu.funcode" +colors: + bg: "#1B1B1B" + fg: "#FFBBF1" + black: "#000000" + red: "#C21818" + green: "#21D792" + yellow: "#CDCD0B" + blue: "#0F77EA" + magenta: "#D725D7" + cyan: "#29B5D7" + white: "#D3D3D3" + brightBlack: "#777777" + brightRed: "#FF0000" + brightGreen: "#00FF98" + brightYellow: "#FFFF00" + brightBlue: "#4EA2FF" + brightMagenta: "#FF00FF" + brightCyan: "#00CDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 76.8 + black: 0 + red: 21.9 + green: 66.2 + yellow: 71.1 + blue: 30.9 + magenta: 33.9 + cyan: 53.4 + white: 78.4 + brightBlack: 29.1 + brightRed: 36.1 + brightGreen: 86.7 + brightYellow: 101.3 + brightBlue: 49.2 + brightMagenta: 44.8 + brightCyan: 66.2 + brightWhite: 106.4 diff --git a/themes/functional.yaml b/themes/functional.yaml new file mode 100644 index 00000000..0c27def6 --- /dev/null +++ b/themes/functional.yaml @@ -0,0 +1,52 @@ +name: "functional" +source: + marketplace_id: "BataTesting.functional-vscode-theme" + version: "0.0.1" + installs: 11 + rating: 0 + ratings: 0 + author: "Bata Testing" + repo: "https://github.com/1eyewonder/functional-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BataTesting.functional-vscode-theme" +colors: + bg: "#222222" + fg: "#DDDCDC" + black: "#5F5F5F" + red: "#F9A1A0" + green: "#B7DAB9" + yellow: "#FEDB8F" + blue: "#8BBADC" + magenta: "#DEBDDD" + cyan: "#8BBADC" + white: "#DDDCDC" + brightBlack: "#787878" + brightRed: "#F9A1A0" + brightGreen: "#B7DAB9" + brightYellow: "#FEDB8F" + brightBlue: "#8BBADC" + brightMagenta: "#DEBDDD" + brightCyan: "#8BBADC" + brightWhite: "#DDDCDC" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.1 + black: 17.7 + red: 62.1 + green: 76.2 + yellow: 84.9 + blue: 59.6 + magenta: 70.3 + cyan: 59.6 + white: 83.1 + brightBlack: 28.6 + brightRed: 62.1 + brightGreen: 76.2 + brightYellow: 84.9 + brightBlue: 59.6 + brightMagenta: 70.3 + brightCyan: 59.6 + brightWhite: 83.1 diff --git a/themes/furnace.yaml b/themes/furnace.yaml index e66046e7..d9b01b4c 100644 --- a/themes/furnace.yaml +++ b/themes/furnace.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "solomonsscott.furnace" version: "1.0.2" installs: 2266 + rating: 5 + ratings: 1 author: "solomonsscott" repo: "https://github.com/SolomonSScott/furnace-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=solomonsscott.furnace" diff --git a/themes/furukawa-pop-theme.yaml b/themes/furukawa-pop-theme.yaml index 6f7db650..d33ede87 100644 --- a/themes/furukawa-pop-theme.yaml +++ b/themes/furukawa-pop-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "superfurukawa.furukawa-theme" version: "1.1.3" installs: 100 + rating: 0 + ratings: 0 author: "superfurukawa" repo: "https://github.com/superfurukawa/vscode-furukawa-theme" url: "https://marketplace.visualstudio.com/items?itemName=superfurukawa.furukawa-theme" diff --git a/themes/futuremotion-light.yaml b/themes/futuremotion-light.yaml index 4bd4a83d..b7482b37 100644 --- a/themes/futuremotion-light.yaml +++ b/themes/futuremotion-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "futuremotion.futuremotion-light" version: "1.1.1" installs: 157 + rating: 0 + ratings: 0 author: "Futuremotion" repo: "https://github.com/futuremotiondev/vscode-futuremotion-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=futuremotion.futuremotion-light" diff --git a/themes/futuristic-green.yaml b/themes/futuristic-green.yaml index 2608ead7..dbe8cec0 100644 --- a/themes/futuristic-green.yaml +++ b/themes/futuristic-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Deepak-Bhardwaj.futuristic" version: "0.5.2" installs: 1285 + rating: 0 + ratings: 0 author: "Deepak Bhardwaj" repo: "https://github.com/deepak-bhardwaj-ps/VSCode-Theme-Futuristic" url: "https://marketplace.visualstudio.com/items?itemName=Deepak-Bhardwaj.futuristic" diff --git a/themes/futuristt.yaml b/themes/futuristt.yaml index a2ddf5ab..7445b509 100644 --- a/themes/futuristt.yaml +++ b/themes/futuristt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carlowisse.futuristt" version: "1.6.0" installs: 5358 + rating: 5 + ratings: 1 author: "carlowisse" repo: "https://github.com/carlowisse/futuristt-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlowisse.futuristt" diff --git a/themes/g-dark-blue-whale.yaml b/themes/g-dark-blue-whale.yaml index f0f41e98..7ba9c260 100644 --- a/themes/g-dark-blue-whale.yaml +++ b/themes/g-dark-blue-whale.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-jacksons-purple.yaml b/themes/g-dark-jacksons-purple.yaml index cd07b7e9..2dd44aef 100644 --- a/themes/g-dark-jacksons-purple.yaml +++ b/themes/g-dark-jacksons-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-light-alice-blue.yaml b/themes/g-dark-light-alice-blue.yaml index 5b6d4d79..e7065201 100644 --- a/themes/g-dark-light-alice-blue.yaml +++ b/themes/g-dark-light-alice-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-light-glitter.yaml b/themes/g-dark-light-glitter.yaml index 237291ac..0a6576e1 100644 --- a/themes/g-dark-light-glitter.yaml +++ b/themes/g-dark-light-glitter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-light-hint-of-red.yaml b/themes/g-dark-light-hint-of-red.yaml index 51edfc94..80bfe7dd 100644 --- a/themes/g-dark-light-hint-of-red.yaml +++ b/themes/g-dark-light-hint-of-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-minimal-2-astronaut-blue.yaml b/themes/g-dark-minimal-2-astronaut-blue.yaml index 9fc84f33..088cafe3 100644 --- a/themes/g-dark-minimal-2-astronaut-blue.yaml +++ b/themes/g-dark-minimal-2-astronaut-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-minimal-3-oxford-blue.yaml b/themes/g-dark-minimal-3-oxford-blue.yaml index 67df05dc..8075eaad 100644 --- a/themes/g-dark-minimal-3-oxford-blue.yaml +++ b/themes/g-dark-minimal-3-oxford-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-minimal-midnight.yaml b/themes/g-dark-minimal-midnight.yaml index da3b4c32..4545d0f2 100644 --- a/themes/g-dark-minimal-midnight.yaml +++ b/themes/g-dark-minimal-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-one-love-black-pearl.yaml b/themes/g-dark-one-love-black-pearl.yaml index 92132800..51493695 100644 --- a/themes/g-dark-one-love-black-pearl.yaml +++ b/themes/g-dark-one-love-black-pearl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-one-love.yaml b/themes/g-dark-one-love.yaml index 03e517ac..4cf6ea58 100644 --- a/themes/g-dark-one-love.yaml +++ b/themes/g-dark-one-love.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-shader-h-ck3r-midnight-moss.yaml b/themes/g-dark-shader-h-ck3r-midnight-moss.yaml index d37714a1..0cd3fe9c 100644 --- a/themes/g-dark-shader-h-ck3r-midnight-moss.yaml +++ b/themes/g-dark-shader-h-ck3r-midnight-moss.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-shader-haiti.yaml b/themes/g-dark-shader-haiti.yaml index 9abe3c77..8ef80fe2 100644 --- a/themes/g-dark-shader-haiti.yaml +++ b/themes/g-dark-shader-haiti.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-shader-mirage.yaml b/themes/g-dark-shader-mirage.yaml index e2612247..f68298c7 100644 --- a/themes/g-dark-shader-mirage.yaml +++ b/themes/g-dark-shader-mirage.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-shift-midnight-moss.yaml b/themes/g-dark-shift-midnight-moss.yaml index 48ea6eeb..50a40613 100644 --- a/themes/g-dark-shift-midnight-moss.yaml +++ b/themes/g-dark-shift-midnight-moss.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-shift-vulcan.yaml b/themes/g-dark-shift-vulcan.yaml index 44107d57..c4c3c3d8 100644 --- a/themes/g-dark-shift-vulcan.yaml +++ b/themes/g-dark-shift-vulcan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-dark-valhalla.yaml b/themes/g-dark-valhalla.yaml index dd3c115f..09e32ca8 100644 --- a/themes/g-dark-valhalla.yaml +++ b/themes/g-dark-valhalla.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Stonec0der.g-dark-theme" version: "5.0.1" installs: 10984 + rating: 5 + ratings: 3 author: "stonecoder" repo: "https://github.com/stoneC0der/g-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" diff --git a/themes/g-i-reaper.yaml b/themes/g-i-reaper.yaml index 7974456e..f164e55a 100644 --- a/themes/g-i-reaper.yaml +++ b/themes/g-i-reaper.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gengence.gi-themes" version: "0.2.0" installs: 36 + rating: 0 + ratings: 0 author: "General Intelligence" repo: "https://github.com/gengence/themes" url: "https://marketplace.visualstudio.com/items?itemName=gengence.gi-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "magenta" hue: 261 + pair: null contrast: fg: 62.5 black: 0 diff --git a/themes/g-i-seraph.yaml b/themes/g-i-seraph.yaml index 156936c8..48b269f3 100644 --- a/themes/g-i-seraph.yaml +++ b/themes/g-i-seraph.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gengence.gi-themes" version: "0.2.0" installs: 36 + rating: 0 + ratings: 0 author: "General Intelligence" repo: "https://github.com/gengence/themes" url: "https://marketplace.visualstudio.com/items?itemName=gengence.gi-themes" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 102.5 black: 101.2 diff --git a/themes/gagarin-theme.yaml b/themes/gagarin-theme.yaml index f5ddf440..14d56643 100644 --- a/themes/gagarin-theme.yaml +++ b/themes/gagarin-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GagarinTheme.gagarin" version: "0.0.9" installs: 36 + rating: 0 + ratings: 0 author: "Gagarin Theme" repo: "https://github.com/yuricplus/gagarintheme" url: "https://marketplace.visualstudio.com/items?itemName=GagarinTheme.gagarin" diff --git a/themes/galactic-flavored.yaml b/themes/galactic-flavored.yaml index ac7f657d..0e3e01a9 100644 --- a/themes/galactic-flavored.yaml +++ b/themes/galactic-flavored.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "voit.galactic-flavored" version: "1.0.0" installs: 88 + rating: 0 + ratings: 0 author: "voit" repo: "https://github.com/voitaraujo/galactic-flavored" url: "https://marketplace.visualstudio.com/items?itemName=voit.galactic-flavored" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 99.1 black: 0 diff --git a/themes/galaxia.yaml b/themes/galaxia.yaml index ff1e089e..e12bdd83 100644 --- a/themes/galaxia.yaml +++ b/themes/galaxia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LucasBandeira.galaxia" version: "0.1.1" installs: 294 + rating: 0 + ratings: 0 author: "Lucas Bandeira" repo: "https://github.com/LucasBandeira-MJ/Galaxia-Theme" url: "https://marketplace.visualstudio.com/items?itemName=LucasBandeira.galaxia" diff --git a/themes/galaxian.yaml b/themes/galaxian.yaml new file mode 100644 index 00000000..c5dcd6f5 --- /dev/null +++ b/themes/galaxian.yaml @@ -0,0 +1,52 @@ +name: "Galaxian" +source: + marketplace_id: "evprkr.galaxian-vs" + version: "0.0.2" + installs: 246 + rating: 0 + ratings: 0 + author: "evprkr" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=evprkr.galaxian-vs" +colors: + bg: "#1C1C22" + fg: "#F1F1F1" + black: "#000000" + red: "#EF476F" + green: "#07C566" + yellow: "#FFCE5C" + blue: "#0197F4" + magenta: "#9F59C5" + cyan: "#04AEAD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#EF476F" + brightGreen: "#07C566" + brightYellow: "#FFCE5C" + brightBlue: "#0197F4" + brightMagenta: "#9F59C5" + brightCyan: "#04AEAD" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: 285 + pair: null + contrast: + fg: 97.1 + black: 0 + red: 37.5 + green: 56.1 + yellow: 79.3 + blue: 42.7 + magenta: 29.5 + cyan: 47.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 37.5 + brightGreen: 56.1 + brightYellow: 79.3 + brightBlue: 42.7 + brightMagenta: 29.5 + brightCyan: 47.9 + brightWhite: 89.4 diff --git a/themes/galaxytheme.yaml b/themes/galaxytheme.yaml index b1bb3676..9a08cf6f 100644 --- a/themes/galaxytheme.yaml +++ b/themes/galaxytheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JoaoBatistaJr.GalaxyTheme" version: "1.0.3" installs: 1292 + rating: 5 + ratings: 2 author: "JoaoBatistaJr" repo: "https://github.com/JoaoBatistaJr/GalaxyTheme" url: "https://marketplace.visualstudio.com/items?itemName=JoaoBatistaJr.GalaxyTheme" diff --git a/themes/game-mode.yaml b/themes/game-mode.yaml index 2e042802..3bdc73c0 100644 --- a/themes/game-mode.yaml +++ b/themes/game-mode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sfkmt.game-mode-theme" version: "1.0.4" installs: 856 + rating: 0 + ratings: 0 author: "sfkmt" repo: "https://github.com/sfkmt/gamemode" url: "https://marketplace.visualstudio.com/items?itemName=sfkmt.game-mode-theme" diff --git a/themes/gameboy-classic-dark.yaml b/themes/gameboy-classic-dark.yaml index 132c2b62..76eca733 100644 --- a/themes/gameboy-classic-dark.yaml +++ b/themes/gameboy-classic-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sanchodelniglo.gameboy-classic-theme" version: "0.0.4" installs: 835 + rating: 0 + ratings: 0 author: "sanchodelniglo" repo: "https://github.com/Sanchodelniglo/gameboy-classic-theme" url: "https://marketplace.visualstudio.com/items?itemName=sanchodelniglo.gameboy-classic-theme" diff --git a/themes/gameboy-classic-light.yaml b/themes/gameboy-classic-light.yaml index 74e8e5be..f9ddcbee 100644 --- a/themes/gameboy-classic-light.yaml +++ b/themes/gameboy-classic-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sanchodelniglo.gameboy-classic-theme" version: "0.0.4" installs: 835 + rating: 0 + ratings: 0 author: "sanchodelniglo" repo: "https://github.com/Sanchodelniglo/gameboy-classic-theme" url: "https://marketplace.visualstudio.com/items?itemName=sanchodelniglo.gameboy-classic-theme" diff --git a/themes/gamma-fork.yaml b/themes/gamma-fork.yaml index 3e2e8f1b..7b427c3f 100644 --- a/themes/gamma-fork.yaml +++ b/themes/gamma-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xynny.gamma-theme" version: "0.0.1" installs: 242 + rating: 0 + ratings: 0 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.gamma-theme" diff --git a/themes/gamma.yaml b/themes/gamma.yaml index 28387fbb..e925549b 100644 --- a/themes/gamma.yaml +++ b/themes/gamma.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VenkataramanaSuryanarayanan.gamma" version: "1.0.0" installs: 2348 + rating: 5 + ratings: 1 author: "Venkataramana Suryanarayanan" repo: "https://github.com/HardCodeProgrammer/gamma-theme" url: "https://marketplace.visualstudio.com/items?itemName=VenkataramanaSuryanarayanan.gamma" diff --git a/themes/ganbaru-blue.yaml b/themes/ganbaru-blue.yaml index 38de4642..85471d9d 100644 --- a/themes/ganbaru-blue.yaml +++ b/themes/ganbaru-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Marlodev.ganbaru" version: "1.0.0" installs: 1850 + rating: 5 + ratings: 1 author: "Marlodev" repo: "https://github.com/marlodevhub/ganbaru" url: "https://marketplace.visualstudio.com/items?itemName=Marlodev.ganbaru" diff --git a/themes/ganbaru-dark.yaml b/themes/ganbaru-dark.yaml index da3b0b0a..e7bb1a78 100644 --- a/themes/ganbaru-dark.yaml +++ b/themes/ganbaru-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Marlodev.ganbaru" version: "1.0.0" installs: 1850 + rating: 5 + ratings: 1 author: "Marlodev" repo: "https://github.com/marlodevhub/ganbaru" url: "https://marketplace.visualstudio.com/items?itemName=Marlodev.ganbaru" diff --git a/themes/gantheory-dark.yaml b/themes/gantheory-dark.yaml index e300f128..75f6897e 100644 --- a/themes/gantheory-dark.yaml +++ b/themes/gantheory-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gantheory.theme-gantheory" version: "0.0.2" installs: 4724 + rating: 5 + ratings: 1 author: "gantheory" repo: "https://github.com/gantheory/vscode-theme-gantheory" url: "https://marketplace.visualstudio.com/items?itemName=gantheory.theme-gantheory" diff --git a/themes/ganyu-theme.yaml b/themes/ganyu-theme.yaml index 900a2613..b8ea9bbc 100644 --- a/themes/ganyu-theme.yaml +++ b/themes/ganyu-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jeooo.ganyu-theme" version: "1.0.1" installs: 1601 + rating: 0 + ratings: 0 author: "jeooo`" repo: "https://github.com/jeoooo/ganyu-theme" url: "https://marketplace.visualstudio.com/items?itemName=jeooo.ganyu-theme" diff --git a/themes/gapstyle-vs-dark-modern.yaml b/themes/gapstyle-vs-dark-modern.yaml index b017fb9c..8d768790 100644 --- a/themes/gapstyle-vs-dark-modern.yaml +++ b/themes/gapstyle-vs-dark-modern.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gaplo917.gapstylevs" version: "2.2.0" installs: 8666 + rating: 5 + ratings: 6 author: "Gary Lo" repo: "https://github.com/gaplo917/GapStyle" url: "https://marketplace.visualstudio.com/items?itemName=gaplo917.gapstylevs" diff --git a/themes/gapstyle-vs.yaml b/themes/gapstyle-vs.yaml index 2764709d..5af0384a 100644 --- a/themes/gapstyle-vs.yaml +++ b/themes/gapstyle-vs.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gaplo917.gapstylevs" version: "2.2.0" installs: 8666 + rating: 5 + ratings: 6 author: "Gary Lo" repo: "https://github.com/gaplo917/GapStyle" url: "https://marketplace.visualstudio.com/items?itemName=gaplo917.gapstylevs" diff --git a/themes/garbage-oracle-dark.yaml b/themes/garbage-oracle-dark.yaml index 5c94e7f1..30be5334 100644 --- a/themes/garbage-oracle-dark.yaml +++ b/themes/garbage-oracle-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sansbrina.garbage-oracle" version: "0.1.0" installs: 1599 + rating: 0 + ratings: 0 author: "sansbrina" repo: "https://github.com/sansbrina/garbage-oracle-themes" url: "https://marketplace.visualstudio.com/items?itemName=sansbrina.garbage-oracle" diff --git a/themes/garbage-oracle-light.yaml b/themes/garbage-oracle-light.yaml index c8b1c56c..c7a462c3 100644 --- a/themes/garbage-oracle-light.yaml +++ b/themes/garbage-oracle-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sansbrina.garbage-oracle" version: "0.1.0" installs: 1599 + rating: 0 + ratings: 0 author: "sansbrina" repo: "https://github.com/sansbrina/garbage-oracle-themes" url: "https://marketplace.visualstudio.com/items?itemName=sansbrina.garbage-oracle" diff --git a/themes/gatito-next-theme.yaml b/themes/gatito-next-theme.yaml index bf2fc1df..ed1ae3aa 100644 --- a/themes/gatito-next-theme.yaml +++ b/themes/gatito-next-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kevinsperrine.gatito-next-theme" version: "1.1.2" installs: 1301 + rating: 0 + ratings: 0 author: "Kevin S Perrine" repo: "https://github.com/kevinsperrine/gatito-next-theme" url: "https://marketplace.visualstudio.com/items?itemName=kevinsperrine.gatito-next-theme" diff --git a/themes/gatito-nightly-red.yaml b/themes/gatito-nightly-red.yaml index 1f10792c..7740fe83 100644 --- a/themes/gatito-nightly-red.yaml +++ b/themes/gatito-nightly-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TaouMou.gatito-nightly" version: "1.3.3" installs: 1652 + rating: 5 + ratings: 1 author: "TaouMou" repo: "https://github.com/TaouMou/gatito-nightly" url: "https://marketplace.visualstudio.com/items?itemName=TaouMou.gatito-nightly" diff --git a/themes/gatito-theme.yaml b/themes/gatito-theme.yaml index 2af649d4..09c96b6a 100644 --- a/themes/gatito-theme.yaml +++ b/themes/gatito-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pawelgrzybek.gatito-theme" version: "0.2.3" installs: 139147 + rating: 4.97 + ratings: 29 author: "Paweł Grzybek" repo: "https://github.com/pawelgrzybek/gatito-theme" url: "https://marketplace.visualstudio.com/items?itemName=pawelgrzybek.gatito-theme" diff --git a/themes/gatomontesdark2.yaml b/themes/gatomontesdark2.yaml index e78ef687..38320ab9 100644 --- a/themes/gatomontesdark2.yaml +++ b/themes/gatomontesdark2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GatomontesRoseIII.gatomontes" version: "1.0.0" installs: 601 + rating: 0 + ratings: 0 author: "GatomontesRoseIII" repo: "https://github.com/ramirezherreranoeelvis/gatitomontes" url: "https://marketplace.visualstudio.com/items?itemName=GatomontesRoseIII.gatomontes" diff --git a/themes/gauss-thetheme.yaml b/themes/gauss-thetheme.yaml new file mode 100644 index 00000000..539451ea --- /dev/null +++ b/themes/gauss-thetheme.yaml @@ -0,0 +1,52 @@ +name: "Gauss-TheTheme" +source: + marketplace_id: "GaussTheTheme.Gauss-TheTheme" + version: "0.0.8" + installs: 352 + rating: 5 + ratings: 1 + author: "Gauss-TheTheme" + repo: "https://github.com/torresdiegoal/Gauss-TheTheme" + url: "https://marketplace.visualstudio.com/items?itemName=GaussTheTheme.Gauss-TheTheme" +colors: + bg: "#1E1E1E" + fg: "#EBDBB2" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.6 + black: 0 + red: 24.4 + green: 42.1 + yellow: 51.7 + blue: 30.8 + magenta: 30.9 + cyan: 41.1 + white: 46.4 + brightBlack: 35.5 + brightRed: 39.3 + brightGreen: 60.3 + brightYellow: 71 + brightBlue: 47.8 + brightMagenta: 47.1 + brightCyan: 59.3 + brightWhite: 83.6 diff --git a/themes/gckn.yaml b/themes/gckn.yaml new file mode 100644 index 00000000..13ee99c7 --- /dev/null +++ b/themes/gckn.yaml @@ -0,0 +1,52 @@ +name: "gckn" +source: + marketplace_id: "noxaled.gck-theme" + version: "0.5.1" + installs: 6866 + rating: 0 + ratings: 0 + author: "noxaled" + repo: "https://github.com/getCodingKnowledge/vsc-gck-theme" + url: "https://marketplace.visualstudio.com/items?itemName=noxaled.gck-theme" +colors: + bg: "#16181A" + fg: "#C7D0D9" + black: "#222528" + red: "#BA0E2E" + green: "#B3CC57" + yellow: "#EF746F" + blue: "#FFBE40" + magenta: "#3FB4C5" + cyan: "#F86F50" + white: "#D6DDE3" + brightBlack: "#454B51" + brightRed: "#F03E5F" + brightGreen: "#D6E4A5" + brightYellow: "#F9CDCB" + brightBlue: "#FFE1A6" + brightMagenta: "#8DD3DD" + brightCyan: "#FCC0B2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 76.3 + black: 0 + red: 20.4 + green: 68.3 + yellow: 46.8 + blue: 73.1 + magenta: 52.9 + cyan: 46.9 + white: 84.3 + brightBlack: 11 + brightRed: 36.7 + brightGreen: 85.1 + brightYellow: 81.4 + brightBlue: 89.6 + brightMagenta: 72.1 + brightCyan: 75.8 + brightWhite: 106.8 diff --git a/themes/gdscript35.yaml b/themes/gdscript35.yaml index 18dc91a6..ca371f28 100644 --- a/themes/gdscript35.yaml +++ b/themes/gdscript35.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "backlight3281.gdscript35" version: "0.0.1" installs: 200 + rating: 5 + ratings: 1 author: "backlight3281" repo: null url: "https://marketplace.visualstudio.com/items?itemName=backlight3281.gdscript35" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 267 + pair: null contrast: fg: 77.6 black: 0 diff --git a/themes/gekkou.yaml b/themes/gekkou.yaml new file mode 100644 index 00000000..3e8edbbc --- /dev/null +++ b/themes/gekkou.yaml @@ -0,0 +1,50 @@ +name: "Gekkou" +source: + marketplace_id: "niuez.gekkou-theme" + version: "0.0.1" + installs: 123 + author: "niuez" + repo: "https://github.com/niuez/vscode-gekkou-theme" + url: "https://marketplace.visualstudio.com/items?itemName=niuez.gekkou-theme" +colors: + bg: "#2A3030" + fg: "#79889C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 33.1 + black: 0 + red: 22.9 + green: 49.2 + yellow: 81.8 + blue: 23.6 + magenta: 25.9 + cyan: 43.7 + white: 86.2 + brightBlack: 18.2 + brightRed: 34.7 + brightGreen: 59.7 + brightYellow: 91.8 + brightBlue: 36.2 + brightMagenta: 41.5 + brightCyan: 51.6 + brightWhite: 86.2 diff --git a/themes/gelap.yaml b/themes/gelap.yaml new file mode 100644 index 00000000..68e3f75b --- /dev/null +++ b/themes/gelap.yaml @@ -0,0 +1,52 @@ +name: "Gelap" +source: + marketplace_id: "RyanAdhi.gelap" + version: "0.3.0" + installs: 230 + rating: 0 + ratings: 0 + author: "Ryan Adhi" + repo: "https://github.com/ryanadhi/gelap" + url: "https://marketplace.visualstudio.com/items?itemName=RyanAdhi.gelap" +colors: + bg: "#000A14" + fg: "#9EA7FA" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#6473F7" +meta: + mode: "dark" + accent: "pink" + hue: 239 + pair: null + contrast: + fg: 57.8 + black: 9.7 + red: 37.6 + green: 61.2 + yellow: 49.4 + blue: 50.5 + magenta: 39.9 + cyan: 53.4 + white: 91.5 + brightBlack: 16.3 + brightRed: 46.9 + brightGreen: 77.6 + brightYellow: 62.1 + brightBlue: 64.6 + brightMagenta: 51.1 + brightCyan: 68.7 + brightWhite: 35.1 diff --git a/themes/gelato.yaml b/themes/gelato.yaml index ab090125..074bb3de 100644 --- a/themes/gelato.yaml +++ b/themes/gelato.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "walele993.fable-code-theme" version: "1.2.0" installs: 46 + rating: 0 + ratings: 0 author: "Gabriele Meucci" repo: "https://github.com/walele993/fable_a_vsc_theme" url: "https://marketplace.visualstudio.com/items?itemName=walele993.fable-code-theme" diff --git a/themes/gelgel.yaml b/themes/gelgel.yaml index b0ec72ea..42f0fce7 100644 --- a/themes/gelgel.yaml +++ b/themes/gelgel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LanceWilhelm.gelgel" version: "0.0.4" installs: 165 + rating: 5 + ratings: 1 author: "Lance Wilhelm" repo: "https://github.com/lancewilhelm/gelgel" url: "https://marketplace.visualstudio.com/items?itemName=LanceWilhelm.gelgel" diff --git a/themes/gems-theme-default.yaml b/themes/gems-theme-default.yaml index 3c6ab993..7bc8e8fb 100644 --- a/themes/gems-theme-default.yaml +++ b/themes/gems-theme-default.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mikaleb.gems-theme" version: "0.4.0" installs: 635 + rating: 5 + ratings: 1 author: "Mikaleb" repo: "https://github.com/Mikaleb/Gems-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Mikaleb.gems-theme" diff --git a/themes/gems-theme-light.yaml b/themes/gems-theme-light.yaml index 2a047e8b..c301496c 100644 --- a/themes/gems-theme-light.yaml +++ b/themes/gems-theme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mikaleb.gems-theme" version: "0.4.0" installs: 635 + rating: 5 + ratings: 1 author: "Mikaleb" repo: "https://github.com/Mikaleb/Gems-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Mikaleb.gems-theme" diff --git a/themes/generated-color-theme.yaml b/themes/generated-color-theme.yaml index 81f88284..9a760850 100644 --- a/themes/generated-color-theme.yaml +++ b/themes/generated-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RLabsInc.rlabs-theme-collection" version: "0.1.4" installs: 181 + rating: 0 + ratings: 0 author: "RLabs Inc." repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 96.1 black: 0 diff --git a/themes/genshin-impact-chiori-dark.yaml b/themes/genshin-impact-chiori-dark.yaml index a8b4c821..50b5fc32 100644 --- a/themes/genshin-impact-chiori-dark.yaml +++ b/themes/genshin-impact-chiori-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-chiori.yaml b/themes/genshin-impact-chiori.yaml index ac5cda10..ca91c63b 100644 --- a/themes/genshin-impact-chiori.yaml +++ b/themes/genshin-impact-chiori.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-citlali-dark.yaml b/themes/genshin-impact-citlali-dark.yaml index 09704f4b..34d6462a 100644 --- a/themes/genshin-impact-citlali-dark.yaml +++ b/themes/genshin-impact-citlali-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-citlali.yaml b/themes/genshin-impact-citlali.yaml index 8b27d44c..44f3c579 100644 --- a/themes/genshin-impact-citlali.yaml +++ b/themes/genshin-impact-citlali.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-columbina.yaml b/themes/genshin-impact-columbina.yaml index 93ee3477..1e7cc3c2 100644 --- a/themes/genshin-impact-columbina.yaml +++ b/themes/genshin-impact-columbina.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-furina-dark.yaml b/themes/genshin-impact-furina-dark.yaml index 900460bd..6b807c6e 100644 --- a/themes/genshin-impact-furina-dark.yaml +++ b/themes/genshin-impact-furina-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-furina.yaml b/themes/genshin-impact-furina.yaml index 43b542c8..85018774 100644 --- a/themes/genshin-impact-furina.yaml +++ b/themes/genshin-impact-furina.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-ganyu-dark.yaml b/themes/genshin-impact-ganyu-dark.yaml index 26116e70..0b30e9c1 100644 --- a/themes/genshin-impact-ganyu-dark.yaml +++ b/themes/genshin-impact-ganyu-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-ganyu-high-contrast.yaml b/themes/genshin-impact-ganyu-high-contrast.yaml index d9d84226..4298eb00 100644 --- a/themes/genshin-impact-ganyu-high-contrast.yaml +++ b/themes/genshin-impact-ganyu-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-ganyu-light.yaml b/themes/genshin-impact-ganyu-light.yaml index a2fee765..51d127de 100644 --- a/themes/genshin-impact-ganyu-light.yaml +++ b/themes/genshin-impact-ganyu-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-il-dottore-dark.yaml b/themes/genshin-impact-il-dottore-dark.yaml index 0027a65c..0b60f3e1 100644 --- a/themes/genshin-impact-il-dottore-dark.yaml +++ b/themes/genshin-impact-il-dottore-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-il-dottore.yaml b/themes/genshin-impact-il-dottore.yaml index 0cc36e5a..0fe5481a 100644 --- a/themes/genshin-impact-il-dottore.yaml +++ b/themes/genshin-impact-il-dottore.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-kamisato-ayaka-dark.yaml b/themes/genshin-impact-kamisato-ayaka-dark.yaml index 8c5b105b..c700d9e3 100644 --- a/themes/genshin-impact-kamisato-ayaka-dark.yaml +++ b/themes/genshin-impact-kamisato-ayaka-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-kamisato-ayaka.yaml b/themes/genshin-impact-kamisato-ayaka.yaml index 80fe2eeb..bb4ae90e 100644 --- a/themes/genshin-impact-kamisato-ayaka.yaml +++ b/themes/genshin-impact-kamisato-ayaka.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-layla-dark.yaml b/themes/genshin-impact-layla-dark.yaml index dd38a208..4abd98d6 100644 --- a/themes/genshin-impact-layla-dark.yaml +++ b/themes/genshin-impact-layla-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-layla.yaml b/themes/genshin-impact-layla.yaml index e88c4a0a..40cb7b24 100644 --- a/themes/genshin-impact-layla.yaml +++ b/themes/genshin-impact-layla.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-sandrone-dark.yaml b/themes/genshin-impact-sandrone-dark.yaml index 5f3a8e8b..5fda881f 100644 --- a/themes/genshin-impact-sandrone-dark.yaml +++ b/themes/genshin-impact-sandrone-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-sandrone.yaml b/themes/genshin-impact-sandrone.yaml index 163102af..3f517484 100644 --- a/themes/genshin-impact-sandrone.yaml +++ b/themes/genshin-impact-sandrone.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-scaramouche-dark.yaml b/themes/genshin-impact-scaramouche-dark.yaml index 31f7a66c..9c7af039 100644 --- a/themes/genshin-impact-scaramouche-dark.yaml +++ b/themes/genshin-impact-scaramouche-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-scaramouche.yaml b/themes/genshin-impact-scaramouche.yaml index 6e73b644..d257a414 100644 --- a/themes/genshin-impact-scaramouche.yaml +++ b/themes/genshin-impact-scaramouche.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-skirk-dark.yaml b/themes/genshin-impact-skirk-dark.yaml index 1c16cacd..f2c560cc 100644 --- a/themes/genshin-impact-skirk-dark.yaml +++ b/themes/genshin-impact-skirk-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-skirk.yaml b/themes/genshin-impact-skirk.yaml index ef96760f..d875aae6 100644 --- a/themes/genshin-impact-skirk.yaml +++ b/themes/genshin-impact-skirk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-wanderer-dark.yaml b/themes/genshin-impact-wanderer-dark.yaml index 8a1ace3b..770a3fae 100644 --- a/themes/genshin-impact-wanderer-dark.yaml +++ b/themes/genshin-impact-wanderer-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-wanderer.yaml b/themes/genshin-impact-wanderer.yaml index ad06a71a..67bb9472 100644 --- a/themes/genshin-impact-wanderer.yaml +++ b/themes/genshin-impact-wanderer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-yae-miko-dark.yaml b/themes/genshin-impact-yae-miko-dark.yaml index d66757ea..3cf66497 100644 --- a/themes/genshin-impact-yae-miko-dark.yaml +++ b/themes/genshin-impact-yae-miko-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-yae-miko.yaml b/themes/genshin-impact-yae-miko.yaml index c42ac0a3..08631e1a 100644 --- a/themes/genshin-impact-yae-miko.yaml +++ b/themes/genshin-impact-yae-miko.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-yumemizuki-mizuki-dark.yaml b/themes/genshin-impact-yumemizuki-mizuki-dark.yaml index 50a5a793..5192e160 100644 --- a/themes/genshin-impact-yumemizuki-mizuki-dark.yaml +++ b/themes/genshin-impact-yumemizuki-mizuki-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml b/themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml index 78154ed7..9b4c3e7e 100644 --- a/themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml +++ b/themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/genshin-impact-yumemizuki-mizuki-light.yaml b/themes/genshin-impact-yumemizuki-mizuki-light.yaml index 63b36c4b..413d1749 100644 --- a/themes/genshin-impact-yumemizuki-mizuki-light.yaml +++ b/themes/genshin-impact-yumemizuki-mizuki-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/gentil-dark.yaml b/themes/gentil-dark.yaml index 46e7a34a..94500ad5 100644 --- a/themes/gentil-dark.yaml +++ b/themes/gentil-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucgnl.gentil-dark-theme" version: "1.2.0" installs: 184 + rating: 0 + ratings: 0 author: "Lucgnl" repo: "https://github.com/Lucgnl/gentil-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucgnl.gentil-dark-theme" diff --git a/themes/gentle-builder.yaml b/themes/gentle-builder.yaml index bcef21cc..c66a0312 100644 --- a/themes/gentle-builder.yaml +++ b/themes/gentle-builder.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lukeocodes.gentle-themes" version: "0.0.6" installs: 4472 + rating: 5 + ratings: 1 author: "lukeocodes" repo: "https://github.com/lukeocodes/gentle-themes" url: "https://marketplace.visualstudio.com/items?itemName=lukeocodes.gentle-themes" diff --git a/themes/gentle-clean-light.yaml b/themes/gentle-clean-light.yaml index 24bd12be..021fa959 100644 --- a/themes/gentle-clean-light.yaml +++ b/themes/gentle-clean-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kricsleo.gentle-clean" version: "1.0.4" installs: 1711 + rating: 5 + ratings: 1 author: "kricsleo" repo: "https://github.com/kricsleo/vscode-theme-gentle-clean" url: "https://marketplace.visualstudio.com/items?itemName=kricsleo.gentle-clean" diff --git a/themes/gentle-clean-monokai.yaml b/themes/gentle-clean-monokai.yaml index 67302abf..e0db37ea 100644 --- a/themes/gentle-clean-monokai.yaml +++ b/themes/gentle-clean-monokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kricsleo.gentle-clean" version: "1.0.4" installs: 1711 + rating: 5 + ratings: 1 author: "kricsleo" repo: "https://github.com/kricsleo/vscode-theme-gentle-clean" url: "https://marketplace.visualstudio.com/items?itemName=kricsleo.gentle-clean" diff --git a/themes/gentle-dark-warm.yaml b/themes/gentle-dark-warm.yaml index b1c381a0..eb75d94a 100644 --- a/themes/gentle-dark-warm.yaml +++ b/themes/gentle-dark-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carlossalguero.gentle-theme" version: "1.0.0" installs: 109 + rating: 5 + ratings: 1 author: "carlossalguero" repo: "https://github.com/salgue441/gentle-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" diff --git a/themes/gentle-dark.yaml b/themes/gentle-dark.yaml index 7b3ac388..a7988ad1 100644 --- a/themes/gentle-dark.yaml +++ b/themes/gentle-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carlossalguero.gentle-theme" version: "1.0.0" installs: 109 + rating: 5 + ratings: 1 author: "carlossalguero" repo: "https://github.com/salgue441/gentle-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" diff --git a/themes/gentle-light-warmer.yaml b/themes/gentle-light-warmer.yaml index 24e7911b..f4ca1e11 100644 --- a/themes/gentle-light-warmer.yaml +++ b/themes/gentle-light-warmer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carlossalguero.gentle-theme" version: "1.0.0" installs: 109 + rating: 5 + ratings: 1 author: "carlossalguero" repo: "https://github.com/salgue441/gentle-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" diff --git a/themes/gentle-light.yaml b/themes/gentle-light.yaml index 58f159be..f144a399 100644 --- a/themes/gentle-light.yaml +++ b/themes/gentle-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carlossalguero.gentle-theme" version: "1.0.0" installs: 109 + rating: 5 + ratings: 1 author: "carlossalguero" repo: "https://github.com/salgue441/gentle-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" diff --git a/themes/gentle-midnight-warm.yaml b/themes/gentle-midnight-warm.yaml index 2fec2ee2..d7a3c203 100644 --- a/themes/gentle-midnight-warm.yaml +++ b/themes/gentle-midnight-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carlossalguero.gentle-theme" version: "1.0.0" installs: 109 + rating: 5 + ratings: 1 author: "carlossalguero" repo: "https://github.com/salgue441/gentle-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" diff --git a/themes/gentle-midnight.yaml b/themes/gentle-midnight.yaml index a959f520..54052116 100644 --- a/themes/gentle-midnight.yaml +++ b/themes/gentle-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carlossalguero.gentle-theme" version: "1.0.0" installs: 109 + rating: 5 + ratings: 1 author: "carlossalguero" repo: "https://github.com/salgue441/gentle-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" diff --git a/themes/gentleblack.yaml b/themes/gentleblack.yaml index f0181f79..d3fb0f67 100644 --- a/themes/gentleblack.yaml +++ b/themes/gentleblack.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yanglixin.gentleblack" version: "0.0.1" installs: 162 + rating: 5 + ratings: 1 author: "yanglixin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=yanglixin.gentleblack" diff --git a/themes/gfx.yaml b/themes/gfx.yaml index d49c4631..fc19aa05 100644 --- a/themes/gfx.yaml +++ b/themes/gfx.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JRENG.gfx" version: "0.0.18" installs: 894 + rating: 5 + ratings: 1 author: "JRENG!" repo: "https://github.com/jrengmusic/Code-gfx" url: "https://marketplace.visualstudio.com/items?itemName=JRENG.gfx" diff --git a/themes/gg-djaja-darken.yaml b/themes/gg-djaja-darken.yaml index 09c05b26..12cb0664 100644 --- a/themes/gg-djaja-darken.yaml +++ b/themes/gg-djaja-darken.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bedeute.gg-djaja" version: "0.3.61" installs: 145 + rating: 5 + ratings: 1 author: "bedeute" repo: "https://github.com/bedeute/gg-djaja-theme" url: "https://marketplace.visualstudio.com/items?itemName=bedeute.gg-djaja" diff --git a/themes/gg-djaja-default.yaml b/themes/gg-djaja-default.yaml index 34d6edfc..fdc42d78 100644 --- a/themes/gg-djaja-default.yaml +++ b/themes/gg-djaja-default.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bedeute.gg-djaja" version: "0.3.61" installs: 145 + rating: 5 + ratings: 1 author: "bedeute" repo: "https://github.com/bedeute/gg-djaja-theme" url: "https://marketplace.visualstudio.com/items?itemName=bedeute.gg-djaja" diff --git a/themes/gg-djaja-light.yaml b/themes/gg-djaja-light.yaml index 817a1988..4f22dbe2 100644 --- a/themes/gg-djaja-light.yaml +++ b/themes/gg-djaja-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bedeute.gg-djaja" version: "0.3.61" installs: 145 + rating: 5 + ratings: 1 author: "bedeute" repo: "https://github.com/bedeute/gg-djaja-theme" url: "https://marketplace.visualstudio.com/items?itemName=bedeute.gg-djaja" diff --git a/themes/ghibli-day.yaml b/themes/ghibli-day.yaml index 9740ada2..6e262376 100644 --- a/themes/ghibli-day.yaml +++ b/themes/ghibli-day.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ghiblistuff.ghibli-theme" version: "1.0.0" installs: 404 + rating: 0 + ratings: 0 author: "ghiblistuff" repo: "https://github.com/champi-dev/vscode_ghibli_theme" url: "https://marketplace.visualstudio.com/items?itemName=ghiblistuff.ghibli-theme" diff --git a/themes/ghibli-forest-dark.yaml b/themes/ghibli-forest-dark.yaml index 61c98cc6..748e2348 100644 --- a/themes/ghibli-forest-dark.yaml +++ b/themes/ghibli-forest-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "danibram.ghibli-inspired-theme" version: "1.0.0" installs: 274 + rating: 0 + ratings: 0 author: "Daniel Biedma" repo: "https://github.com/danibram/ghibli-theme" url: "https://marketplace.visualstudio.com/items?itemName=danibram.ghibli-inspired-theme" diff --git a/themes/ghibli-night.yaml b/themes/ghibli-night.yaml index 4f9f143a..7895d015 100644 --- a/themes/ghibli-night.yaml +++ b/themes/ghibli-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ghiblistuff.ghibli-theme" version: "1.0.0" installs: 404 + rating: 0 + ratings: 0 author: "ghiblistuff" repo: "https://github.com/champi-dev/vscode_ghibli_theme" url: "https://marketplace.visualstudio.com/items?itemName=ghiblistuff.ghibli-theme" diff --git a/themes/ghibli-sky-light.yaml b/themes/ghibli-sky-light.yaml index ba30fa04..145ff9a6 100644 --- a/themes/ghibli-sky-light.yaml +++ b/themes/ghibli-sky-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "danibram.ghibli-inspired-theme" version: "1.0.0" installs: 274 + rating: 0 + ratings: 0 author: "Daniel Biedma" repo: "https://github.com/danibram/ghibli-theme" url: "https://marketplace.visualstudio.com/items?itemName=danibram.ghibli-inspired-theme" diff --git a/themes/ghost-louise.yaml b/themes/ghost-louise.yaml index 10304187..5a527b64 100644 --- a/themes/ghost-louise.yaml +++ b/themes/ghost-louise.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zazcdev.ghostlouise" version: "0.0.7" installs: 146 + rating: 0 + ratings: 0 author: "zazc" repo: "https://github.com/zazcc" url: "https://marketplace.visualstudio.com/items?itemName=zazcdev.ghostlouise" diff --git a/themes/ghostgrey.yaml b/themes/ghostgrey.yaml index 08fd0b8b..93be4a42 100644 --- a/themes/ghostgrey.yaml +++ b/themes/ghostgrey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gtocaia.theme-ghost" version: "1.0.0" installs: 678 + rating: 0 + ratings: 0 author: "gtocaia" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gtocaia.theme-ghost" diff --git a/themes/ghostty-default-styledark.yaml b/themes/ghostty-default-styledark.yaml index 50eb67c1..f52f8680 100644 --- a/themes/ghostty-default-styledark.yaml +++ b/themes/ghostty-default-styledark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hnagato.ghostty-dark" version: "1.0.1" installs: 283 + rating: 5 + ratings: 1 author: "hnagato" repo: "https://github.com/hnagato/vscode-ghostty-theme" url: "https://marketplace.visualstudio.com/items?itemName=hnagato.ghostty-dark" diff --git a/themes/ghostty-synthwave.yaml b/themes/ghostty-synthwave.yaml index 4546e6df..ca852dad 100644 --- a/themes/ghostty-synthwave.yaml +++ b/themes/ghostty-synthwave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "closji.ghostty-synthwave" version: "0.0.7" installs: 71 + rating: 0 + ratings: 0 author: "closji" repo: "https://github.com/carlosejimenez/ghostty-synthwave" url: "https://marketplace.visualstudio.com/items?itemName=closji.ghostty-synthwave" diff --git a/themes/gigaaa.yaml b/themes/gigaaa.yaml index 113cdbb5..8b60c799 100644 --- a/themes/gigaaa.yaml +++ b/themes/gigaaa.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sneed1337.giga" version: "0.0.2" installs: 92 + rating: 5 + ratings: 2 author: "sneed" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sneed1337.giga" diff --git a/themes/gineticustheme.yaml b/themes/gineticustheme.yaml index 5622bc95..18c345c0 100644 --- a/themes/gineticustheme.yaml +++ b/themes/gineticustheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Gineticus.gineticus-theme" version: "0.0.12" installs: 57 + rating: 5 + ratings: 1 author: "Gineticus" repo: "https://github.com/Gineticus/gineticus-theme" url: "https://marketplace.visualstudio.com/items?itemName=Gineticus.gineticus-theme" diff --git a/themes/ginseng.yaml b/themes/ginseng.yaml index 74218ede..04517941 100644 --- a/themes/ginseng.yaml +++ b/themes/ginseng.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hassan-k1.vscode-theme-ginseng" version: "2.1.1" installs: 888 + rating: 0 + ratings: 0 author: "hassan-k1" repo: "https://github.com/Ha55an-k1/vscode-theme-ginseng" url: "https://marketplace.visualstudio.com/items?itemName=hassan-k1.vscode-theme-ginseng" diff --git a/themes/girls-theme.yaml b/themes/girls-theme.yaml index fdf42fbd..7ca2dc46 100644 --- a/themes/girls-theme.yaml +++ b/themes/girls-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kuromesi.kuromesi-theme" version: "0.0.1" installs: 92 + rating: 0 + ratings: 0 author: "Kuromesi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kuromesi.kuromesi-theme" diff --git a/themes/github-blue-dark.yaml b/themes/github-blue-dark.yaml index d69cb0fc..28e37eaa 100644 --- a/themes/github-blue-dark.yaml +++ b/themes/github-blue-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nguyenhauweb.blue-dark-themb" version: "0.0.39" installs: 109 + rating: 5 + ratings: 1 author: "Nguyễn Thanh Hậu" repo: "https://github.com/z1001st/blue-dark-themb" url: "https://marketplace.visualstudio.com/items?itemName=nguyenhauweb.blue-dark-themb" diff --git a/themes/github-blue-darkest.yaml b/themes/github-blue-darkest.yaml index 74825204..1e0c9daa 100644 --- a/themes/github-blue-darkest.yaml +++ b/themes/github-blue-darkest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nguyenhauweb.blue-dark-themb" version: "0.0.39" installs: 109 + rating: 5 + ratings: 1 author: "Nguyễn Thanh Hậu" repo: "https://github.com/z1001st/blue-dark-themb" url: "https://marketplace.visualstudio.com/items?itemName=nguyenhauweb.blue-dark-themb" diff --git a/themes/github-catppuccin-dark-mix.yaml b/themes/github-catppuccin-dark-mix.yaml index 6b92bd13..3705d485 100644 --- a/themes/github-catppuccin-dark-mix.yaml +++ b/themes/github-catppuccin-dark-mix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevGauravJatt.github-catppuccin-dark" version: "1.0.0" installs: 4015 + rating: 5 + ratings: 1 author: "Dev Gaurav Jatt" repo: "https://github.com/devgauravjatt/github-catppuccin-dark" url: "https://marketplace.visualstudio.com/items?itemName=DevGauravJatt.github-catppuccin-dark" diff --git a/themes/github-catppuccin-dark.yaml b/themes/github-catppuccin-dark.yaml index 36e2f811..82d2d7da 100644 --- a/themes/github-catppuccin-dark.yaml +++ b/themes/github-catppuccin-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevGauravJatt.github-catppuccin-dark" version: "1.0.0" installs: 4015 + rating: 5 + ratings: 1 author: "Dev Gaurav Jatt" repo: "https://github.com/devgauravjatt/github-catppuccin-dark" url: "https://marketplace.visualstudio.com/items?itemName=DevGauravJatt.github-catppuccin-dark" diff --git a/themes/github-colorblind.yaml b/themes/github-colorblind.yaml new file mode 100644 index 00000000..04162a4b --- /dev/null +++ b/themes/github-colorblind.yaml @@ -0,0 +1,52 @@ +name: "github-colorblind" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 660 + rating: 5 + ratings: 1 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#484F58" + red: "#EC8E2C" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FDAC54" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + pair: null + contrast: + fg: 77.5 + black: 13.1 + red: 53.2 + green: 52.2 + yellow: 52.2 + blue: 52.2 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 29.3 + brightRed: 66.8 + brightGreen: 64.7 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 107.4 diff --git a/themes/github-contrast-theme.yaml b/themes/github-contrast-theme.yaml index 4d82a1a4..d262a5f8 100644 --- a/themes/github-contrast-theme.yaml +++ b/themes/github-contrast-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guillem-ps.obsidian-breeze" version: "1.1.3" installs: 122 + rating: 0 + ratings: 0 author: "guillem-ps" repo: "https://github.com/guillem-ps/.dotfiles" url: "https://marketplace.visualstudio.com/items?itemName=guillem-ps.obsidian-breeze" diff --git a/themes/github-contrast.yaml b/themes/github-contrast.yaml index a50f5fef..b2f25067 100644 --- a/themes/github-contrast.yaml +++ b/themes/github-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/github-dank-dimmed.yaml b/themes/github-dank-dimmed.yaml index 046390ed..022e3777 100644 --- a/themes/github-dank-dimmed.yaml +++ b/themes/github-dank-dimmed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Zytesas.github-dank-dimmed" version: "0.0.5" installs: 4514 + rating: 5 + ratings: 1 author: "Zytesas" repo: "https://github.com/zytesas/GithubDankDimmed" url: "https://marketplace.visualstudio.com/items?itemName=Zytesas.github-dank-dimmed" diff --git a/themes/github-dark-colorblind-grayscale.yaml b/themes/github-dark-colorblind-grayscale.yaml index b872bf23..76f34916 100644 --- a/themes/github-dark-colorblind-grayscale.yaml +++ b/themes/github-dark-colorblind-grayscale.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kontheocharis.github-vscode-theme-grayscale" version: "1.0.1" installs: 26 + rating: 0 + ratings: 0 author: "kontheocharis" repo: "https://github.com/kontheocharis/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=kontheocharis.github-vscode-theme-grayscale" diff --git a/themes/github-dark-default-grayscale.yaml b/themes/github-dark-default-grayscale.yaml index 134de361..d2e574c5 100644 --- a/themes/github-dark-default-grayscale.yaml +++ b/themes/github-dark-default-grayscale.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kontheocharis.github-vscode-theme-grayscale" version: "1.0.1" installs: 26 + rating: 0 + ratings: 0 author: "kontheocharis" repo: "https://github.com/kontheocharis/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=kontheocharis.github-vscode-theme-grayscale" diff --git a/themes/github-dark-default.yaml b/themes/github-dark-default.yaml index 66b89f36..11c23c5d 100644 --- a/themes/github-dark-default.yaml +++ b/themes/github-dark-default.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "agavram.github-vscode-theme-minimal" version: "4.1.3" installs: 5970 + rating: 3.67 + ratings: 3 author: "Adrian Avram" repo: "https://github.com/agavram/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=agavram.github-vscode-theme-minimal" diff --git a/themes/github-dark-dimmed-grayscale.yaml b/themes/github-dark-dimmed-grayscale.yaml index 237d4c1a..6c784137 100644 --- a/themes/github-dark-dimmed-grayscale.yaml +++ b/themes/github-dark-dimmed-grayscale.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kontheocharis.github-vscode-theme-grayscale" version: "1.0.1" installs: 26 + rating: 0 + ratings: 0 author: "kontheocharis" repo: "https://github.com/kontheocharis/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=kontheocharis.github-vscode-theme-grayscale" diff --git a/themes/github-dark-dimmed.yaml b/themes/github-dark-dimmed.yaml index a7074d74..be277b6d 100644 --- a/themes/github-dark-dimmed.yaml +++ b/themes/github-dark-dimmed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "agavram.github-vscode-theme-minimal" version: "4.1.3" installs: 5970 + rating: 3.67 + ratings: 3 author: "Adrian Avram" repo: "https://github.com/agavram/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=agavram.github-vscode-theme-minimal" diff --git a/themes/github-dark-high-contrast-grayscale.yaml b/themes/github-dark-high-contrast-grayscale.yaml index 824aa668..9113e6dd 100644 --- a/themes/github-dark-high-contrast-grayscale.yaml +++ b/themes/github-dark-high-contrast-grayscale.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kontheocharis.github-vscode-theme-grayscale" version: "1.0.1" installs: 26 + rating: 0 + ratings: 0 author: "kontheocharis" repo: "https://github.com/kontheocharis/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=kontheocharis.github-vscode-theme-grayscale" diff --git a/themes/github-dark-mode.yaml b/themes/github-dark-mode.yaml index 7b7f8920..13d4516e 100644 --- a/themes/github-dark-mode.yaml +++ b/themes/github-dark-mode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markusylisiurunen.githubdarkmode" version: "0.1.6" installs: 37591 + rating: 5 + ratings: 3 author: "markusylisiurunen" repo: "https://github.com/markusylisiurunen/github-dark-mode" url: "https://marketplace.visualstudio.com/items?itemName=markusylisiurunen.githubdarkmode" diff --git a/themes/github-dark-palenight.yaml b/themes/github-dark-palenight.yaml index 346f825b..dd16fe75 100644 --- a/themes/github-dark-palenight.yaml +++ b/themes/github-dark-palenight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ConnorAbbas.github-dark-palenight" version: "1.7.1" installs: 3533 + rating: 5 + ratings: 3 author: "Connor Abbas" repo: "https://github.com/connorabbas/github-dark-palenight" url: "https://marketplace.visualstudio.com/items?itemName=ConnorAbbas.github-dark-palenight" diff --git a/themes/github-dark-theme.yaml b/themes/github-dark-theme.yaml new file mode 100644 index 00000000..f6a586a1 --- /dev/null +++ b/themes/github-dark-theme.yaml @@ -0,0 +1,52 @@ +name: "github-dark-theme" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 660 + rating: 5 + ratings: 1 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" +colors: + bg: "#24292E" + fg: "#E1E4E8" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D1D5DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: 248 + pair: null + contrast: + fg: 86.7 + black: 16.6 + red: 34.4 + green: 59.7 + yellow: 90.2 + blue: 36.4 + magenta: 48.9 + cyan: 58.4 + white: 77.3 + brightBlack: 45.2 + brightRed: 47.2 + brightGreen: 76.6 + brightYellow: 90.2 + brightBlue: 58.3 + brightMagenta: 48.9 + brightCyan: 66.9 + brightWhite: 101.6 diff --git a/themes/github-dark-tritanopia.yaml b/themes/github-dark-tritanopia.yaml index 743c0e1e..6c6485c9 100644 --- a/themes/github-dark-tritanopia.yaml +++ b/themes/github-dark-tritanopia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zanaty.github-dark-tritanopia" version: "0.0.5" installs: 63 + rating: 5 + ratings: 1 author: "zanaty" repo: "https://github.com/moelzanaty3/github-dark-tritanopia" url: "https://marketplace.visualstudio.com/items?itemName=zanaty.github-dark-tritanopia" diff --git a/themes/github-light-default.yaml b/themes/github-light-default.yaml index 8630e8ec..4020b34c 100644 --- a/themes/github-light-default.yaml +++ b/themes/github-light-default.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "agavram.github-vscode-theme-minimal" version: "4.1.3" installs: 5970 + rating: 3.67 + ratings: 3 author: "Adrian Avram" repo: "https://github.com/agavram/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=agavram.github-vscode-theme-minimal" diff --git a/themes/github-light-theme.yaml b/themes/github-light-theme.yaml new file mode 100644 index 00000000..a9935071 --- /dev/null +++ b/themes/github-light-theme.yaml @@ -0,0 +1,52 @@ +name: "github-light-theme" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 660 + rating: 5 + ratings: 1 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" +colors: + bg: "#FFFFFF" + fg: "#24292F" + black: "#24292F" + red: "#B35900" + green: "#0550AE" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#8A4600" + brightGreen: "#0969DA" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 101.5 + black: 101.5 + red: 72.9 + green: 85.6 + yellow: 98 + blue: 74.9 + magenta: 74.3 + cyan: 73.8 + white: 71.6 + brightBlack: 81.8 + brightRed: 84.1 + brightGreen: 74.9 + brightYellow: 92 + brightBlue: 60.7 + brightMagenta: 59.3 + brightCyan: 63.3 + brightWhite: 57.2 diff --git a/themes/github-minimal.yaml b/themes/github-minimal.yaml index 3f17ae20..f02b6dcb 100644 --- a/themes/github-minimal.yaml +++ b/themes/github-minimal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dominicegginton.github-minimal-vscode-theme" version: "0.3.0" installs: 4511 + rating: 5 + ratings: 2 author: "Dominic Egginton" repo: "git+https://github.com/dominicegginton/github-minimal-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=dominicegginton.github-minimal-vscode-theme" diff --git a/themes/github-revamp.yaml b/themes/github-revamp.yaml new file mode 100644 index 00000000..c0a6c149 --- /dev/null +++ b/themes/github-revamp.yaml @@ -0,0 +1,52 @@ +name: "GitHub Revamp" +source: + marketplace_id: "Avetis.github-revamp" + version: "0.0.4" + installs: 1168 + rating: 0 + ratings: 0 + author: "Avetis" + repo: "https://github.com/AvetisDN/github-revamp" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.github-revamp" +colors: + bg: "#202426" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 77.9 + black: 0 + red: 25.1 + green: 51.4 + yellow: 84 + blue: 25.8 + magenta: 28.1 + cyan: 45.9 + white: 88.4 + brightBlack: 20.4 + brightRed: 36.9 + brightGreen: 61.9 + brightYellow: 94 + brightBlue: 38.4 + brightMagenta: 43.7 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/github-theme-by-humamafif.yaml b/themes/github-theme-by-humamafif.yaml index 8143ff01..c53795d4 100644 --- a/themes/github-theme-by-humamafif.yaml +++ b/themes/github-theme-by-humamafif.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humamafif.github-theme-by-humamafif" version: "0.0.3" installs: 179 + rating: 5 + ratings: 1 author: "humamafif" repo: "https://github.com/humamafif/my-github-theme" url: "https://marketplace.visualstudio.com/items?itemName=humamafif.github-theme-by-humamafif" diff --git a/themes/github.yaml b/themes/github.yaml index 7e4e3ca9..3296f7f8 100644 --- a/themes/github.yaml +++ b/themes/github.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/gitlab-dark-grey.yaml b/themes/gitlab-dark-grey.yaml index 5bf964ed..a5f6e817 100644 --- a/themes/gitlab-dark-grey.yaml +++ b/themes/gitlab-dark-grey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlbertoRestifo.gitlab-webide-theme" version: "1.0.1" installs: 5712 + rating: 0 + ratings: 0 author: "Alberto Restifo" repo: "https://github.com/albertorestifo/gitlab-webide-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" diff --git a/themes/gitlab-dark.yaml b/themes/gitlab-dark.yaml index 85c77764..8523fbbc 100644 --- a/themes/gitlab-dark.yaml +++ b/themes/gitlab-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlbertoRestifo.gitlab-webide-theme" version: "1.0.1" installs: 5712 + rating: 0 + ratings: 0 author: "Alberto Restifo" repo: "https://github.com/albertorestifo/gitlab-webide-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" diff --git a/themes/gitlab-light.yaml b/themes/gitlab-light.yaml index 0a426577..c8f59ffb 100644 --- a/themes/gitlab-light.yaml +++ b/themes/gitlab-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlbertoRestifo.gitlab-webide-theme" version: "1.0.1" installs: 5712 + rating: 0 + ratings: 0 author: "Alberto Restifo" repo: "https://github.com/albertorestifo/gitlab-webide-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" diff --git a/themes/gitlab.yaml b/themes/gitlab.yaml index 050b7e8a..7c90f10f 100644 --- a/themes/gitlab.yaml +++ b/themes/gitlab.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RedstoneWizard08.gitlab" version: "0.2.0" installs: 37853 + rating: 5 + ratings: 3 author: "RedstoneWizard08" repo: null url: "https://marketplace.visualstudio.com/items?itemName=RedstoneWizard08.gitlab" diff --git a/themes/giyu-tomioka.yaml b/themes/giyu-tomioka.yaml index 67f78a4f..39f9025b 100644 --- a/themes/giyu-tomioka.yaml +++ b/themes/giyu-tomioka.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devLocifer.hashira-code-theme" version: "0.0.1" installs: 739 + rating: 5 + ratings: 1 author: "devLocifer" repo: "https://github.com/diazdjul19/hashira-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" diff --git a/themes/giza.yaml b/themes/giza.yaml index 375de748..1f1763c5 100644 --- a/themes/giza.yaml +++ b/themes/giza.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "svygzhryr.inei" version: "0.0.3" installs: 53 + rating: 0 + ratings: 0 author: "Pavel Mihailov" repo: "https://github.com/Svygzhryr/Inei" url: "https://marketplace.visualstudio.com/items?itemName=svygzhryr.inei" diff --git a/themes/glacier-blue.yaml b/themes/glacier-blue.yaml new file mode 100644 index 00000000..79540dd4 --- /dev/null +++ b/themes/glacier-blue.yaml @@ -0,0 +1,52 @@ +name: "Glacier-Blue" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#012B3C" + fg: "#DBF5FA" + black: "#012B3C" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#049BD7" + magenta: "#049BD7" + cyan: "#29C3A0" + white: "#DBF5FA" + brightBlack: "#012B3C" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#049BD7" + brightMagenta: "#049BD7" + brightCyan: "#29C3A0" + brightWhite: "#DBF5FA" +meta: + mode: "dark" + accent: "yellow" + hue: 231 + pair: null + contrast: + fg: 94.6 + black: 0 + red: 0 + green: 55.1 + yellow: 49.1 + blue: 40.3 + magenta: 40.3 + cyan: 55.1 + white: 94.6 + brightBlack: 0 + brightRed: 0 + brightGreen: 55.1 + brightYellow: 49.1 + brightBlue: 40.3 + brightMagenta: 40.3 + brightCyan: 55.1 + brightWhite: 94.6 diff --git a/themes/glance-contrast.yaml b/themes/glance-contrast.yaml index 771f709e..882409ee 100644 --- a/themes/glance-contrast.yaml +++ b/themes/glance-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/glance-light.yaml b/themes/glance-light.yaml index 06a36b1d..18c5c73c 100644 --- a/themes/glance-light.yaml +++ b/themes/glance-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/glance.yaml b/themes/glance.yaml index 6d3f1488..6325fc55 100644 --- a/themes/glance.yaml +++ b/themes/glance.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/glassonion.yaml b/themes/glassonion.yaml new file mode 100644 index 00000000..f56ed15b --- /dev/null +++ b/themes/glassonion.yaml @@ -0,0 +1,52 @@ +name: "GlassOnion" +source: + marketplace_id: "selfrefactor.GlassOnion" + version: "0.20.0" + installs: 1342 + rating: 0 + ratings: 0 + author: "selfrefactor" + repo: "https://github.com/selfrefactor/niketa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.GlassOnion" +colors: + bg: "#F5F5F5" + fg: "#192112" + black: "#0F0F14" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#0F0F14" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 97.5 + black: 99.5 + red: 45 + green: 48.5 + yellow: 32.7 + blue: 43.3 + magenta: 39.6 + cyan: 24.7 + white: 62.1 + brightBlack: 99.5 + brightRed: 45 + brightGreen: 48.5 + brightYellow: 32.7 + brightBlue: 43.3 + brightMagenta: 39.6 + brightCyan: 24.7 + brightWhite: 35.7 diff --git a/themes/gleam-theme-minimal-dark.yaml b/themes/gleam-theme-minimal-dark.yaml index 8e855da4..b590f3f7 100644 --- a/themes/gleam-theme-minimal-dark.yaml +++ b/themes/gleam-theme-minimal-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nicklasxyz.gleam-themes" version: "0.0.3" installs: 3220 + rating: 0 + ratings: 0 author: "nicklasxyz" repo: "https://github.com/NicklasXYZ/vscode-gleam-themes" url: "https://marketplace.visualstudio.com/items?itemName=nicklasxyz.gleam-themes" diff --git a/themes/glitchly-green.yaml b/themes/glitchly-green.yaml index 41d52020..7e644bc7 100644 --- a/themes/glitchly-green.yaml +++ b/themes/glitchly-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FossFreaks.weird-theme" version: "1.0.2" installs: 514 + rating: 4.5 + ratings: 2 author: "FossFreaks" repo: "https://github.com/fossfreaks/Weird-Theme" url: "https://marketplace.visualstudio.com/items?itemName=FossFreaks.weird-theme" diff --git a/themes/gloam.yaml b/themes/gloam.yaml index 20cb1194..cd6ec353 100644 --- a/themes/gloam.yaml +++ b/themes/gloam.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "exthitblast.gloam" version: "1.2.2" installs: 285 + rating: 0 + ratings: 0 author: "hitblast_" repo: "https://github.com/hitblast/Gloam" url: "https://marketplace.visualstudio.com/items?itemName=exthitblast.gloam" diff --git a/themes/globe.yaml b/themes/globe.yaml index 4708b8e4..e3114bd3 100644 --- a/themes/globe.yaml +++ b/themes/globe.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GlobeTheme.globe-theme" version: "0.0.2" installs: 368 + rating: 5 + ratings: 1 author: "Aritro Sana" repo: "https://github.com/AritrSana/globe-theme" url: "https://marketplace.visualstudio.com/items?itemName=GlobeTheme.globe-theme" diff --git a/themes/gloom-contrast.yaml b/themes/gloom-contrast.yaml index 7d0e2331..d9c16e8a 100644 --- a/themes/gloom-contrast.yaml +++ b/themes/gloom-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/gloom-light.yaml b/themes/gloom-light.yaml index 778db831..30982db9 100644 --- a/themes/gloom-light.yaml +++ b/themes/gloom-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/gloom.yaml b/themes/gloom.yaml index 01d0b0d3..c59b4db1 100644 --- a/themes/gloom.yaml +++ b/themes/gloom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/glowfish-contrast.yaml b/themes/glowfish-contrast.yaml index fbbc9f1a..acd9859f 100644 --- a/themes/glowfish-contrast.yaml +++ b/themes/glowfish-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/glowfish-light.yaml b/themes/glowfish-light.yaml index 75edb346..f6a5dbb6 100644 --- a/themes/glowfish-light.yaml +++ b/themes/glowfish-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/glowfish.yaml b/themes/glowfish.yaml index 4f0659d0..90e43560 100644 --- a/themes/glowfish.yaml +++ b/themes/glowfish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/glowing-sun.yaml b/themes/glowing-sun.yaml index 0478b990..31a8dcab 100644 --- a/themes/glowing-sun.yaml +++ b/themes/glowing-sun.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ProGamer.pro-ggamer" version: "0.0.7" installs: 670 + rating: 5 + ratings: 1 author: "Pro Gamer" repo: "https://github.com/Pro-The-Dev-Op/Pro-s-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ProGamer.pro-ggamer" diff --git a/themes/glowing-yellow.yaml b/themes/glowing-yellow.yaml index 3b05cf80..99aeba83 100644 --- a/themes/glowing-yellow.yaml +++ b/themes/glowing-yellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JFeser.darkercolor" version: "2.1.0" installs: 13 + rating: 0 + ratings: 0 author: "J. Feser" repo: "https://github.com/redo7370/darkercolors" url: "https://marketplace.visualstudio.com/items?itemName=JFeser.darkercolor" diff --git a/themes/glu-dark-lighter.yaml b/themes/glu-dark-lighter.yaml index 746b869c..a414e9b0 100644 --- a/themes/glu-dark-lighter.yaml +++ b/themes/glu-dark-lighter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gabilungu.glu-dark-theme" version: "0.0.1" installs: 104 + rating: 0 + ratings: 0 author: "Gabriel Lungu" repo: "https://gabilungu@dev.azure.com/gabilungu/Glu%20dark%20theme/_git/Glu%20dark%20theme" url: "https://marketplace.visualstudio.com/items?itemName=gabilungu.glu-dark-theme" diff --git a/themes/glu-dark.yaml b/themes/glu-dark.yaml index 760f7438..e1577cb0 100644 --- a/themes/glu-dark.yaml +++ b/themes/glu-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gabilungu.glu-dark-theme" version: "0.0.1" installs: 104 + rating: 0 + ratings: 0 author: "Gabriel Lungu" repo: "https://gabilungu@dev.azure.com/gabilungu/Glu%20dark%20theme/_git/Glu%20dark%20theme" url: "https://marketplace.visualstudio.com/items?itemName=gabilungu.glu-dark-theme" diff --git a/themes/glv-s-theme.yaml b/themes/glv-s-theme.yaml index 3ba6b32b..d8e71379 100644 --- a/themes/glv-s-theme.yaml +++ b/themes/glv-s-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rodrigomessias.glv-dark" version: "1.0.0" installs: 202 + rating: 0 + ratings: 0 author: "Rodrigo Messias" repo: "https://github.com/rodrigomessias/glv-vscode-dark" url: "https://marketplace.visualstudio.com/items?itemName=rodrigomessias.glv-dark" diff --git a/themes/gms2.yaml b/themes/gms2.yaml index fb3d1a3e..f6a72b6b 100644 --- a/themes/gms2.yaml +++ b/themes/gms2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "347Online.gms2-theme" version: "0.0.1" installs: 357 + rating: 4 + ratings: 1 author: "347Online" repo: null url: "https://marketplace.visualstudio.com/items?itemName=347Online.gms2-theme" diff --git a/themes/gnome-base16.yaml b/themes/gnome-base16.yaml index db80b191..a067669f 100644 --- a/themes/gnome-base16.yaml +++ b/themes/gnome-base16.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kesmarag.adwaita-base16" version: "0.0.2" installs: 7555 + rating: 0 + ratings: 0 author: "Costas Smaragdakis" repo: "https://github.com/kesmarag/adwaita-base16-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kesmarag.adwaita-base16" diff --git a/themes/go-playground.yaml b/themes/go-playground.yaml index 1b31c5f1..c028b78c 100644 --- a/themes/go-playground.yaml +++ b/themes/go-playground.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aaqaIshtyaq.themes-go-acme" version: "0.0.5" installs: 2247 + rating: 0 + ratings: 0 author: "Aaqa Ishtyaq" repo: "https://github.com/aaqaishtyaq/themes-go-acme" url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.themes-go-acme" diff --git a/themes/go-source.yaml b/themes/go-source.yaml index 552eafec..f7e3568e 100644 --- a/themes/go-source.yaml +++ b/themes/go-source.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aaqaIshtyaq.themes-go-acme" version: "0.0.5" installs: 2247 + rating: 0 + ratings: 0 author: "Aaqa Ishtyaq" repo: "https://github.com/aaqaishtyaq/themes-go-acme" url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.themes-go-acme" diff --git a/themes/goa-beach-paradise.yaml b/themes/goa-beach-paradise.yaml index 7b1f9cff..8a028300 100644 --- a/themes/goa-beach-paradise.yaml +++ b/themes/goa-beach-paradise.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ProudIndian.colors-of-india-themes" version: "1.0.1" installs: 37 + rating: 5 + ratings: 1 author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" diff --git a/themes/god-theme.yaml b/themes/god-theme.yaml index e77a2888..4692ef7d 100644 --- a/themes/god-theme.yaml +++ b/themes/god-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sarang56625.god-theme" version: "0.0.1" installs: 506 + rating: 5 + ratings: 1 author: "sarang parre" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sarang56625.god-theme" diff --git a/themes/godot-4.yaml b/themes/godot-4.yaml index 4abe6f12..2c51ce57 100644 --- a/themes/godot-4.yaml +++ b/themes/godot-4.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mariodebono.godot-4-vscode-theme" version: "1.0.2" installs: 907 + rating: 5 + ratings: 1 author: "Mario Debono" repo: "https://github.com/mariodebono/godot-4-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mariodebono.godot-4-vscode-theme" diff --git a/themes/gogh.yaml b/themes/gogh.yaml new file mode 100644 index 00000000..fd134903 --- /dev/null +++ b/themes/gogh.yaml @@ -0,0 +1,52 @@ +name: "Gogh" +source: + marketplace_id: "Avetis.gogh-theme" + version: "0.0.3" + installs: 1963 + rating: 5 + ratings: 1 + author: "Avetis" + repo: "https://github.com/AvetisDN/gogh-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.gogh-theme" +colors: + bg: "#272B3C" + fg: "#EFEDEE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + pair: null + contrast: + fg: 92.2 + black: 0 + red: 23.5 + green: 49.8 + yellow: 82.4 + blue: 24.2 + magenta: 26.6 + cyan: 44.4 + white: 86.8 + brightBlack: 18.8 + brightRed: 35.4 + brightGreen: 60.3 + brightYellow: 92.4 + brightBlue: 36.8 + brightMagenta: 42.2 + brightCyan: 52.2 + brightWhite: 86.8 diff --git a/themes/gojo-infinity-dark.yaml b/themes/gojo-infinity-dark.yaml index de520275..ccb9c769 100644 --- a/themes/gojo-infinity-dark.yaml +++ b/themes/gojo-infinity-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Shams.anime-theme-collection" version: "2.0.0" installs: 407 + rating: 5 + ratings: 5 author: "Shams" repo: "https://github.com/shams909/AnimeThemeCollection" url: "https://marketplace.visualstudio.com/items?itemName=Shams.anime-theme-collection" diff --git a/themes/goku-code-dragon-ball-z-power-eye-safe.yaml b/themes/goku-code-dragon-ball-z-power-eye-safe.yaml index 4f0aa36a..95fc3bf6 100644 --- a/themes/goku-code-dragon-ball-z-power-eye-safe.yaml +++ b/themes/goku-code-dragon-ball-z-power-eye-safe.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.theme-icon-pack" version: "1.0.4" installs: 906 + rating: 0 + ratings: 0 author: "SecureDev" repo: "https://github.com/codewithevilxd/theme-icon-pack" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.theme-icon-pack" diff --git a/themes/gold.yaml b/themes/gold.yaml index b65b72ee..cb38605f 100644 --- a/themes/gold.yaml +++ b/themes/gold.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "natecrow.consonance-themes" version: "1.2.0" installs: 317 + rating: 0 + ratings: 0 author: "natecrow" repo: "https://github.com/natecrow/consonance-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" diff --git a/themes/golden-blue-color-theme.yaml b/themes/golden-blue-color-theme.yaml index 7876c1fb..692b33cc 100644 --- a/themes/golden-blue-color-theme.yaml +++ b/themes/golden-blue-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BrunoDaSilvaThemes.golden-blue" version: "0.0.8" installs: 2492 + rating: 5 + ratings: 1 author: "Bruno DaSilva" repo: "https://github.com/Brunno-DaSilva/golden-blue-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=BrunoDaSilvaThemes.golden-blue" diff --git a/themes/golden-dracula.yaml b/themes/golden-dracula.yaml index 250925bd..de9cd8cd 100644 --- a/themes/golden-dracula.yaml +++ b/themes/golden-dracula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mnxn.theme-golden-dracula" version: "1.2.8" installs: 13338 + rating: 5 + ratings: 2 author: "mnxn" repo: "https://github.com/mnxn/Golden-Dracula" url: "https://marketplace.visualstudio.com/items?itemName=mnxn.theme-golden-dracula" diff --git a/themes/golden-dullahan.yaml b/themes/golden-dullahan.yaml new file mode 100644 index 00000000..6c07a0f4 --- /dev/null +++ b/themes/golden-dullahan.yaml @@ -0,0 +1,49 @@ +name: "Golden Dullahan" +source: + marketplace_id: "PunGrumpy.dullahan-vscode-theme" + version: "1.2.4" + installs: 201 + author: "PunGrumpy" + repo: "https://github.com/PunGrumpy/dullahan-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PunGrumpy.dullahan-vscode-theme" +colors: + bg: "#1D1D1D" + fg: "#D1D1D1" + black: "#000000" + red: "#A52AFF" + green: "#7129FF" + yellow: "#3D2AFF" + blue: "#2B4FFF" + magenta: "#2883FF" + cyan: "#28B9FF" + white: "#CFCFCF" + brightBlack: "#2F2F2F" + brightRed: "#BA5AFF" + brightGreen: "#905AFF" + brightYellow: "#685AFF" + brightBlue: "#FFB000" + brightMagenta: "#5EA2FF" + brightCyan: "#5AC8FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + contrast: + fg: 77 + black: 0 + red: 28.3 + green: 21.4 + yellow: 17.5 + blue: 22.5 + magenta: 36.7 + cyan: 57.3 + white: 75.8 + brightBlack: 0 + brightRed: 38.1 + brightGreen: 32.2 + brightYellow: 28.1 + brightBlue: 66.9 + brightMagenta: 49.8 + brightCyan: 65.3 + brightWhite: 106.2 diff --git a/themes/golden-era.yaml b/themes/golden-era.yaml index 8f1e79f1..f42ac7f1 100644 --- a/themes/golden-era.yaml +++ b/themes/golden-era.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodrJatin.golden-era" version: "0.6.0" installs: 1698 + rating: 5 + ratings: 1 author: "Codr Jatin" repo: "https://github.com/CodrJatin/vscode-Golden-Era" url: "https://marketplace.visualstudio.com/items?itemName=CodrJatin.golden-era" diff --git a/themes/golden-eye.yaml b/themes/golden-eye.yaml index b7b819b3..eb75e274 100644 --- a/themes/golden-eye.yaml +++ b/themes/golden-eye.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ProphezAI.golden-eye" version: "1.0.3" installs: 1033 + rating: 5 + ratings: 2 author: "ProphezAI" repo: "https://github.com/ProphezAI/golden-eye" url: "https://marketplace.visualstudio.com/items?itemName=ProphezAI.golden-eye" diff --git a/themes/golden-rain.yaml b/themes/golden-rain.yaml new file mode 100644 index 00000000..ec9d05de --- /dev/null +++ b/themes/golden-rain.yaml @@ -0,0 +1,52 @@ +name: "Golden Rain" +source: + marketplace_id: "hauseyo.hauseyo-style" + version: "1.3.7" + installs: 102 + rating: 5 + ratings: 1 + author: "hauseyo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=hauseyo.hauseyo-style" +colors: + bg: "#1A1D34" + fg: "#EEFFFF" + black: "#141527" + red: "#FF7B72" + green: "#58A6FF" + yellow: "#F85149" + blue: "#E9D07D" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "orange" + hue: 277 + pair: null + contrast: + fg: 103.6 + black: 0 + red: 51.1 + green: 50.7 + yellow: 39.9 + blue: 76.9 + magenta: 50.7 + cyan: 59.9 + white: 62.6 + brightBlack: 27.8 + brightRed: 63.4 + brightGreen: 64 + brightYellow: 63.2 + brightBlue: 63.3 + brightMagenta: 63.1 + brightCyan: 68.4 + brightWhite: 99.4 diff --git a/themes/golden-sky.yaml b/themes/golden-sky.yaml index d76c04cc..ed5a7391 100644 --- a/themes/golden-sky.yaml +++ b/themes/golden-sky.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/golden-sunset.yaml b/themes/golden-sunset.yaml index b6c9e010..8e31e09f 100644 --- a/themes/golden-sunset.yaml +++ b/themes/golden-sunset.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Icycoldveins.verum-monokai-themes" version: "1.2.1" installs: 46 + rating: 5 + ratings: 1 author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" diff --git a/themes/golden-wave.yaml b/themes/golden-wave.yaml index 6c379f56..25b2246e 100644 --- a/themes/golden-wave.yaml +++ b/themes/golden-wave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ssera-themes" version: "2.0.2" installs: 334 + rating: 0 + ratings: 0 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" diff --git a/themes/goldentheme.yaml b/themes/goldentheme.yaml index 355caa11..09c993ff 100644 --- a/themes/goldentheme.yaml +++ b/themes/goldentheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EnzoCoding.zozovscode-custom" version: "0.0.6" installs: 430 + rating: 5 + ratings: 1 author: "EnzoCoding" repo: "https://github.com/Enzo91080/GoldenZo" url: "https://marketplace.visualstudio.com/items?itemName=EnzoCoding.zozovscode-custom" diff --git a/themes/goldfish-contrast.yaml b/themes/goldfish-contrast.yaml index a588293c..41425fa8 100644 --- a/themes/goldfish-contrast.yaml +++ b/themes/goldfish-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/goldfish-light.yaml b/themes/goldfish-light.yaml index 20cbb082..afe7b32b 100644 --- a/themes/goldfish-light.yaml +++ b/themes/goldfish-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/goldfish.yaml b/themes/goldfish.yaml index 9d504a94..332427f1 100644 --- a/themes/goldfish.yaml +++ b/themes/goldfish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/goldream.yaml b/themes/goldream.yaml index f2450567..2d595dd0 100644 --- a/themes/goldream.yaml +++ b/themes/goldream.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "J4CK-98.goldream-theme" version: "0.0.1" installs: 79 + rating: 0 + ratings: 0 author: "J4CK-98" repo: null url: "https://marketplace.visualstudio.com/items?itemName=J4CK-98.goldream-theme" diff --git a/themes/good-purple.yaml b/themes/good-purple.yaml index 5c9b58d8..22d0f7e0 100644 --- a/themes/good-purple.yaml +++ b/themes/good-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YanBystrikov.good-purple" version: "1.4.0" installs: 211 + rating: 0 + ratings: 0 author: "YanBystrikov" repo: "https://github.com/YanBystrik/good-purple" url: "https://marketplace.visualstudio.com/items?itemName=YanBystrikov.good-purple" diff --git a/themes/goodmonokai-color-theme.yaml b/themes/goodmonokai-color-theme.yaml index 17882a69..935bd1de 100644 --- a/themes/goodmonokai-color-theme.yaml +++ b/themes/goodmonokai-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Joyphy.goodmonokai" version: "0.0.1" installs: 236 + rating: 5 + ratings: 1 author: "Joyphy" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Joyphy.goodmonokai" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 115 + pair: null contrast: fg: 61.6 black: 0 diff --git a/themes/goodnight-classic.yaml b/themes/goodnight-classic.yaml index cbd6bb17..01212ccd 100644 --- a/themes/goodnight-classic.yaml +++ b/themes/goodnight-classic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MatheusPiovezan.Goodnight" version: "0.0.7" installs: 2770 + rating: 0 + ratings: 0 author: "Matheus Piovezan" repo: "https://github.com/MatheusPiovezan/vscode-theme-goodnight" url: "https://marketplace.visualstudio.com/items?itemName=MatheusPiovezan.Goodnight" diff --git a/themes/goodnight.yaml b/themes/goodnight.yaml index 0f09f8c4..3a9c4019 100644 --- a/themes/goodnight.yaml +++ b/themes/goodnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MatheusPiovezan.Goodnight" version: "0.0.7" installs: 2770 + rating: 0 + ratings: 0 author: "Matheus Piovezan" repo: "https://github.com/MatheusPiovezan/vscode-theme-goodnight" url: "https://marketplace.visualstudio.com/items?itemName=MatheusPiovezan.Goodnight" diff --git a/themes/gooey-theme.yaml b/themes/gooey-theme.yaml index 76be5945..09252165 100644 --- a/themes/gooey-theme.yaml +++ b/themes/gooey-theme.yaml @@ -1,50 +1,52 @@ -name: "Gooey-Theme" +name: "Gooey Theme" source: - marketplace_id: "Gooey.gooeyvsctheme" - version: "0.0.1" - installs: 139 - author: "Gooey" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Gooey.gooeyvsctheme" + marketplace_id: "TheMartes.GooeyTheme" + version: "0.0.2" + installs: 5201 + rating: 0 + ratings: 0 + author: "TheMartes" + repo: "https://github.com/TheMartes/Gooey-VSCodeTheme" + url: "https://marketplace.visualstudio.com/items?itemName=TheMartes.GooeyTheme" colors: - bg: "#171922" - fg: "#BABABA" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" + bg: "#101218" + fg: "#D1D4E0" + black: "#252936" + red: "#EE829F" + green: "#A5FFE1" + yellow: "#F99170" + blue: "#97BBF7" + magenta: "#C0B7F9" + cyan: "#97E0FF" + white: "#C9CCDB" + brightBlack: "#7780A1" + brightRed: "#EE829F" + brightGreen: "#A5FFE1" + brightYellow: "#FFEFCC" + brightBlue: "#97BBF7" + brightMagenta: "#C0B7F9" + brightCyan: "#97E0FF" + brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "pink" - hue: 275 + accent: "red" + hue: 271 pair: null contrast: - fg: 63.9 + fg: 80.1 black: 0 - red: 26.4 - green: 52.7 - yellow: 85.4 - blue: 27.2 - magenta: 29.5 - cyan: 47.3 - white: 89.8 - brightBlack: 21.8 - brightRed: 38.3 - brightGreen: 63.3 - brightYellow: 95.4 - brightBlue: 39.7 - brightMagenta: 45.1 - brightCyan: 55.1 - brightWhite: 89.8 + red: 52.3 + green: 95.9 + yellow: 57.4 + blue: 64.4 + magenta: 67.3 + cyan: 81.1 + white: 75.4 + brightBlack: 34.7 + brightRed: 52.3 + brightGreen: 95.9 + brightYellow: 97.6 + brightBlue: 64.4 + brightMagenta: 67.3 + brightCyan: 81.1 + brightWhite: 107.3 diff --git a/themes/googledark.yaml b/themes/googledark.yaml index fca03bd3..86190ffb 100644 --- a/themes/googledark.yaml +++ b/themes/googledark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.codeme-theme" version: "0.1.1" installs: 8080 + rating: 0 + ratings: 0 author: "Avetis" repo: "https://github.com/AvetisDN/codeme-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" diff --git a/themes/goolou.yaml b/themes/goolou.yaml index 1f56cee8..9ee4db86 100644 --- a/themes/goolou.yaml +++ b/themes/goolou.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sndp124.goolou" version: "2.0.1" installs: 282 + rating: 0 + ratings: 0 author: "sndp124" repo: "https://github.com/Sandip124/goolou" url: "https://marketplace.visualstudio.com/items?itemName=sndp124.goolou" diff --git a/themes/goose.yaml b/themes/goose.yaml index 59edc5a2..75c0bb78 100644 --- a/themes/goose.yaml +++ b/themes/goose.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hgooseVSC.GoosePlusPlus" version: "0.4.9" installs: 197 + rating: 0 + ratings: 0 author: "hgooseVSC" repo: "https://github.com/hgoose/GoosePlusPlus" url: "https://marketplace.visualstudio.com/items?itemName=hgooseVSC.GoosePlusPlus" diff --git a/themes/goosebumps.yaml b/themes/goosebumps.yaml index 9489c429..cd43b5f4 100644 --- a/themes/goosebumps.yaml +++ b/themes/goosebumps.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "roxcelic.goosebumps" version: "1.0.5" installs: 104 + rating: 0 + ratings: 0 author: "roxcelic" repo: "https://github.com/roxcelic/themes.git#goosebumps" url: "https://marketplace.visualstudio.com/items?itemName=roxcelic.goosebumps" diff --git a/themes/gopher.yaml b/themes/gopher.yaml index bbfc0407..93a7ff1c 100644 --- a/themes/gopher.yaml +++ b/themes/gopher.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mnxn.gopher-theme" version: "0.1.2" installs: 504 + rating: 0 + ratings: 0 author: "mnxn" repo: "https://github.com/mnxn/vscode-gopher-theme" url: "https://marketplace.visualstudio.com/items?itemName=mnxn.gopher-theme" diff --git a/themes/gorfius-orange.yaml b/themes/gorfius-orange.yaml index 0bb32971..d2829157 100644 --- a/themes/gorfius-orange.yaml +++ b/themes/gorfius-orange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GorIvanov.gorfius-smoke" version: "0.1.0" installs: 85 + rating: 0 + ratings: 0 author: "Gor Ivanov" repo: null url: "https://marketplace.visualstudio.com/items?itemName=GorIvanov.gorfius-smoke" diff --git a/themes/gorfius-peace-forest.yaml b/themes/gorfius-peace-forest.yaml index 20578454..0f8076ca 100644 --- a/themes/gorfius-peace-forest.yaml +++ b/themes/gorfius-peace-forest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GorIvanov.gorfius-smoke" version: "0.1.0" installs: 85 + rating: 0 + ratings: 0 author: "Gor Ivanov" repo: null url: "https://marketplace.visualstudio.com/items?itemName=GorIvanov.gorfius-smoke" diff --git a/themes/gorg.yaml b/themes/gorg.yaml index db1652ad..9a1f0361 100644 --- a/themes/gorg.yaml +++ b/themes/gorg.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "adpawr.gorg" version: "0.0.4" installs: 52 + rating: 0 + ratings: 0 author: "adpawr" repo: "https://github.com/adpawr/gorg-vscode" url: "https://marketplace.visualstudio.com/items?itemName=adpawr.gorg" diff --git a/themes/got-beyond-the-wall.yaml b/themes/got-beyond-the-wall.yaml new file mode 100644 index 00000000..6dcf3f9d --- /dev/null +++ b/themes/got-beyond-the-wall.yaml @@ -0,0 +1,52 @@ +name: "GOT: Beyond the Wall" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 21 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" +colors: + bg: "#000408" + fg: "#E0F0FF" + black: "#000204" + red: "#FF4444" + green: "#00FF7F" + yellow: "#FFD700" + blue: "#007FFF" + magenta: "#AA44FF" + cyan: "#00CED1" + white: "#5A9AC0" + brightBlack: "#1A3A5A" + brightRed: "#FF8888" + brightGreen: "#7FFFAA" + brightYellow: "#FFFF00" + brightBlue: "#00BFFF" + brightMagenta: "#CC88FF" + brightCyan: "#00FFFF" + brightWhite: "#E0F0FF" +meta: + mode: "dark" + accent: "magenta" + hue: 234 + pair: null + contrast: + fg: 96.7 + black: 0 + red: 41.6 + green: 87.6 + yellow: 84.2 + blue: 36.7 + magenta: 33.6 + cyan: 65.6 + white: 44.2 + brightBlack: 0 + brightRed: 57.1 + brightGreen: 91.8 + brightYellow: 102.7 + brightBlue: 61.4 + brightMagenta: 53.8 + brightCyan: 92.2 + brightWhite: 96.7 diff --git a/themes/got-house-baratheon.yaml b/themes/got-house-baratheon.yaml new file mode 100644 index 00000000..344318f7 --- /dev/null +++ b/themes/got-house-baratheon.yaml @@ -0,0 +1,52 @@ +name: "GOT: House Baratheon" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 21 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" +colors: + bg: "#0E0E10" + fg: "#D0C8B8" + black: "#08080A" + red: "#8B3030" + green: "#5A8A3A" + yellow: "#B8960C" + blue: "#4A5A7A" + magenta: "#6A4A6A" + cyan: "#4A6A7A" + white: "#8A8070" + brightBlack: "#3A3A42" + brightRed: "#CC5050" + brightGreen: "#7ABA5A" + brightYellow: "#DAA520" + brightBlue: "#7A8AAA" + brightMagenta: "#9A7A9A" + brightCyan: "#7A9AAA" + brightWhite: "#D0C8B8" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.4 + black: 0 + red: 14.3 + green: 33.4 + yellow: 47.3 + blue: 17.7 + magenta: 15.7 + cyan: 22.6 + white: 35 + brightBlack: 0 + brightRed: 32 + brightGreen: 55.9 + brightYellow: 58 + brightBlue: 39.1 + brightMagenta: 36.5 + brightCyan: 45 + brightWhite: 73.4 diff --git a/themes/got-house-greyjoy.yaml b/themes/got-house-greyjoy.yaml new file mode 100644 index 00000000..6374f04d --- /dev/null +++ b/themes/got-house-greyjoy.yaml @@ -0,0 +1,52 @@ +name: "GOT: House Greyjoy" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 21 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" +colors: + bg: "#080C10" + fg: "#B0C4D8" + black: "#040810" + red: "#8A3030" + green: "#3A8A5A" + yellow: "#8A8A20" + blue: "#2A5A8A" + magenta: "#5A4A7A" + cyan: "#2A7A8A" + white: "#6A8A9A" + brightBlack: "#2A4050" + brightRed: "#CC5555" + brightGreen: "#5ABA7A" + brightYellow: "#BABA40" + brightBlue: "#5A8ABA" + brightMagenta: "#8A7AAA" + brightCyan: "#5AAABA" + brightWhite: "#B0C4D8" +meta: + mode: "dark" + accent: "orange" + hue: 248 + pair: null + contrast: + fg: 69.3 + black: 0 + red: 14.2 + green: 32.5 + yellow: 37.4 + blue: 17.1 + magenta: 14.9 + cyan: 27.5 + white: 37.1 + brightBlack: 7.5 + brightRed: 33.2 + brightGreen: 54.7 + brightYellow: 62 + brightBlue: 37.6 + brightMagenta: 35.4 + brightCyan: 50.1 + brightWhite: 69.3 diff --git a/themes/got-house-lannister.yaml b/themes/got-house-lannister.yaml new file mode 100644 index 00000000..8ed9ce47 --- /dev/null +++ b/themes/got-house-lannister.yaml @@ -0,0 +1,52 @@ +name: "GOT: House Lannister" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 21 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" +colors: + bg: "#14100A" + fg: "#F0E0C0" + black: "#0D0A05" + red: "#CC0000" + green: "#557A00" + yellow: "#B8960C" + blue: "#5577AA" + magenta: "#884488" + cyan: "#557799" + white: "#C9A840" + brightBlack: "#5A4A20" + brightRed: "#FF4444" + brightGreen: "#88BB00" + brightYellow: "#FFD700" + brightBlue: "#88AADD" + brightMagenta: "#BB77BB" + brightCyan: "#88AACC" + brightWhite: "#F0E0C0" +meta: + mode: "dark" + accent: "orange" + hue: 78 + pair: null + contrast: + fg: 88.3 + black: 0 + red: 24.7 + green: 26.7 + yellow: 47.1 + blue: 29.6 + magenta: 19.5 + cyan: 28.7 + white: 56.5 + brightBlack: 12.2 + brightRed: 41.1 + brightGreen: 56.7 + brightYellow: 83.8 + brightBlue: 54.8 + brightMagenta: 41.7 + brightCyan: 53.9 + brightWhite: 88.3 diff --git a/themes/got-house-martell.yaml b/themes/got-house-martell.yaml new file mode 100644 index 00000000..c06db62d --- /dev/null +++ b/themes/got-house-martell.yaml @@ -0,0 +1,52 @@ +name: "GOT: House Martell" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 21 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" +colors: + bg: "#14100C" + fg: "#E0D0B0" + black: "#0D0A08" + red: "#CC3333" + green: "#7AAA3A" + yellow: "#D2691E" + blue: "#5A7A9A" + magenta: "#9A5A5A" + cyan: "#5A8A7A" + white: "#B09060" + brightBlack: "#4A3828" + brightRed: "#FF5555" + brightGreen: "#AADA5A" + brightYellow: "#FF8C00" + brightBlue: "#8AAABB" + brightMagenta: "#CC8888" + brightCyan: "#8ABAAA" + brightWhite: "#E0D0B0" +meta: + mode: "dark" + accent: "orange" + hue: 67 + pair: null + contrast: + fg: 78.5 + black: 0 + red: 27.2 + green: 48.4 + yellow: 37.8 + blue: 30.1 + magenta: 25.3 + cyan: 34.6 + white: 44.7 + brightBlack: 0 + brightRed: 43.9 + brightGreen: 74.5 + brightYellow: 56.2 + brightBlue: 53.2 + brightMagenta: 47.3 + brightCyan: 59.1 + brightWhite: 78.5 diff --git a/themes/got-house-stark.yaml b/themes/got-house-stark.yaml new file mode 100644 index 00000000..00859d8e --- /dev/null +++ b/themes/got-house-stark.yaml @@ -0,0 +1,52 @@ +name: "GOT: House Stark" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 21 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" +colors: + bg: "#0E1319" + fg: "#CBD5E1" + black: "#080C12" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#388BFD" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#8096AB" + brightBlack: "#3A4F62" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79B8FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#CBD5E1" +meta: + mode: "dark" + accent: "green" + hue: 253 + pair: null + contrast: + fg: 79.8 + black: 0 + red: 52.4 + green: 52 + yellow: 52.1 + blue: 40.7 + magenta: 52.1 + cyan: 61.3 + white: 43.7 + brightBlack: 12.4 + brightRed: 64.7 + brightGreen: 65.3 + brightYellow: 64.6 + brightBlue: 61.2 + brightMagenta: 64.5 + brightCyan: 69.8 + brightWhite: 79.8 diff --git a/themes/got-house-targaryen.yaml b/themes/got-house-targaryen.yaml new file mode 100644 index 00000000..33d16233 --- /dev/null +++ b/themes/got-house-targaryen.yaml @@ -0,0 +1,52 @@ +name: "GOT: House Targaryen" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 21 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" +colors: + bg: "#110808" + fg: "#F0C8B8" + black: "#0A0404" + red: "#8B0000" + green: "#3D6B00" + yellow: "#B8640C" + blue: "#1A3A6B" + magenta: "#6B0050" + cyan: "#1A4A5A" + white: "#C07060" + brightBlack: "#5A2020" + brightRed: "#FF4500" + brightGreen: "#5FD700" + brightYellow: "#FF8C00" + brightBlue: "#4D7FCC" + brightMagenta: "#CC0099" + brightCyan: "#4D99B0" + brightWhite: "#F0C8B8" +meta: + mode: "dark" + accent: "pink" + hue: 19 + pair: null + contrast: + fg: 78.1 + black: 0 + red: 11.4 + green: 20.3 + yellow: 32.1 + blue: 0 + magenta: 0 + cyan: 10 + white: 37.5 + brightBlack: 0 + brightRed: 41.2 + brightGreen: 67.4 + brightYellow: 56.5 + brightBlue: 34.2 + brightMagenta: 28.2 + brightCyan: 42.2 + brightWhite: 78.1 diff --git a/themes/got-night-s-watch.yaml b/themes/got-night-s-watch.yaml new file mode 100644 index 00000000..b1d0b965 --- /dev/null +++ b/themes/got-night-s-watch.yaml @@ -0,0 +1,52 @@ +name: "GOT: Night's Watch" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 21 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" +colors: + bg: "#050505" + fg: "#A8A8A8" + black: "#020202" + red: "#800000" + green: "#2A5A2A" + yellow: "#5A5A00" + blue: "#1A2A4A" + magenta: "#4A1A4A" + cyan: "#1A3A4A" + white: "#606060" + brightBlack: "#303030" + brightRed: "#CC2222" + brightGreen: "#4A9A4A" + brightYellow: "#9A9A00" + brightBlue: "#3A5A8A" + brightMagenta: "#7A3A7A" + brightCyan: "#3A6A7A" + brightWhite: "#A8A8A8" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 55.1 + black: 0 + red: 9.5 + green: 14.3 + yellow: 17 + blue: 0 + magenta: 0 + cyan: 0 + white: 20.5 + brightBlack: 0 + brightRed: 26.1 + brightGreen: 39.4 + brightYellow: 45.2 + brightBlue: 17.9 + brightMagenta: 15.6 + brightCyan: 22.1 + brightWhite: 55.1 diff --git a/themes/got-the-iron-throne.yaml b/themes/got-the-iron-throne.yaml new file mode 100644 index 00000000..0ed63335 --- /dev/null +++ b/themes/got-the-iron-throne.yaml @@ -0,0 +1,52 @@ +name: "GOT: The Iron Throne" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 21 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" +colors: + bg: "#141414" + fg: "#D4C5A9" + black: "#0D0D0D" + red: "#8B0000" + green: "#1E8449" + yellow: "#9A7D0A" + blue: "#1F618D" + magenta: "#6C3483" + cyan: "#1A5276" + white: "#A09070" + brightBlack: "#3D3D3D" + brightRed: "#C0392B" + brightGreen: "#2ECC71" + brightYellow: "#CFB53B" + brightBlue: "#A8D8EA" + brightMagenta: "#9B59B6" + brightCyan: "#5DADE2" + brightWhite: "#D4C5A9" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 71.7 + black: 0 + red: 10.8 + green: 28.6 + yellow: 34.2 + blue: 18.6 + magenta: 12.5 + cyan: 12.9 + white: 42.7 + brightBlack: 0 + brightRed: 25.1 + brightGreen: 60.9 + brightYellow: 62.2 + brightBlue: 77.7 + brightMagenta: 28.8 + brightCyan: 53.1 + brightWhite: 71.7 diff --git a/themes/gotham.yaml b/themes/gotham.yaml index ccf3f8cf..f05d7c77 100644 --- a/themes/gotham.yaml +++ b/themes/gotham.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MichalJach.gotham" version: "0.1.2" installs: 2296 + rating: 3.5 + ratings: 2 author: "Michal Jach" repo: "https://github.com/michaljach/gotham-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=MichalJach.gotham" diff --git a/themes/gothic-absinthe.yaml b/themes/gothic-absinthe.yaml index 20b4e27a..08db1e14 100644 --- a/themes/gothic-absinthe.yaml +++ b/themes/gothic-absinthe.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" installs: 1129 + rating: 5 + ratings: 1 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" diff --git a/themes/gothic-amber-fog.yaml b/themes/gothic-amber-fog.yaml index 2dac7df9..f54ec9cd 100644 --- a/themes/gothic-amber-fog.yaml +++ b/themes/gothic-amber-fog.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" installs: 1129 + rating: 5 + ratings: 1 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" diff --git a/themes/gothic-blood-moon.yaml b/themes/gothic-blood-moon.yaml index 30d61d9b..06514bdb 100644 --- a/themes/gothic-blood-moon.yaml +++ b/themes/gothic-blood-moon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" installs: 1129 + rating: 5 + ratings: 1 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" diff --git a/themes/gothic-cathedral.yaml b/themes/gothic-cathedral.yaml index 3e34ae09..257e0ef3 100644 --- a/themes/gothic-cathedral.yaml +++ b/themes/gothic-cathedral.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" installs: 1129 + rating: 5 + ratings: 1 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" diff --git a/themes/gothic-cemetery.yaml b/themes/gothic-cemetery.yaml index c60c4c8a..9cd96901 100644 --- a/themes/gothic-cemetery.yaml +++ b/themes/gothic-cemetery.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" installs: 1129 + rating: 5 + ratings: 1 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" diff --git a/themes/gothic-dark.yaml b/themes/gothic-dark.yaml index b87a26bf..5b3dc260 100644 --- a/themes/gothic-dark.yaml +++ b/themes/gothic-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rama-3572.gothic" version: "0.0.2" installs: 503 + rating: 0 + ratings: 0 author: "Rama" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rama-3572.gothic" diff --git a/themes/gothic-emerald-crypt.yaml b/themes/gothic-emerald-crypt.yaml index 9e3a84c9..9d8bbf1c 100644 --- a/themes/gothic-emerald-crypt.yaml +++ b/themes/gothic-emerald-crypt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" installs: 1129 + rating: 5 + ratings: 1 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" diff --git a/themes/gothic-jester.yaml b/themes/gothic-jester.yaml index e7093399..cdda1150 100644 --- a/themes/gothic-jester.yaml +++ b/themes/gothic-jester.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" installs: 1129 + rating: 5 + ratings: 1 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" diff --git a/themes/gothic-light.yaml b/themes/gothic-light.yaml new file mode 100644 index 00000000..7ebc64bf --- /dev/null +++ b/themes/gothic-light.yaml @@ -0,0 +1,52 @@ +name: "Gothic Light" +source: + marketplace_id: "rama-3572.gothic" + version: "0.0.2" + installs: 503 + rating: 0 + ratings: 0 + author: "Rama" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=rama-3572.gothic" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#000000" + green: "#000000" + yellow: "#000000" + blue: "#000000" + magenta: "#000000" + cyan: "#000000" + white: "#000000" + brightBlack: "#000000" + brightRed: "#000000" + brightGreen: "#000000" + brightYellow: "#000000" + brightBlue: "#000000" + brightMagenta: "#000000" + brightCyan: "#000000" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + pair: "Gothic Dark" + contrast: + fg: 106 + black: 106 + red: 106 + green: 106 + yellow: 106 + blue: 106 + magenta: 106 + cyan: 106 + white: 106 + brightBlack: 106 + brightRed: 106 + brightGreen: 106 + brightYellow: 106 + brightBlue: 106 + brightMagenta: 106 + brightCyan: 106 + brightWhite: 106 diff --git a/themes/gothic-midnight-rose.yaml b/themes/gothic-midnight-rose.yaml index cc0ab138..8443be05 100644 --- a/themes/gothic-midnight-rose.yaml +++ b/themes/gothic-midnight-rose.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" installs: 1129 + rating: 5 + ratings: 1 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" diff --git a/themes/gothic-qaddy.yaml b/themes/gothic-qaddy.yaml index 8d7a5205..64a41d56 100644 --- a/themes/gothic-qaddy.yaml +++ b/themes/gothic-qaddy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" installs: 1129 + rating: 5 + ratings: 1 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" diff --git a/themes/gothic-raven.yaml b/themes/gothic-raven.yaml index 79e20bc2..a41ebd65 100644 --- a/themes/gothic-raven.yaml +++ b/themes/gothic-raven.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" installs: 1129 + rating: 5 + ratings: 1 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" diff --git a/themes/gothic-spider-lily.yaml b/themes/gothic-spider-lily.yaml index 57c9ead2..d75793e3 100644 --- a/themes/gothic-spider-lily.yaml +++ b/themes/gothic-spider-lily.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" installs: 1129 + rating: 5 + ratings: 1 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" diff --git a/themes/gothic-twilight-forest.yaml b/themes/gothic-twilight-forest.yaml index 93b15624..580f36cf 100644 --- a/themes/gothic-twilight-forest.yaml +++ b/themes/gothic-twilight-forest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" installs: 1129 + rating: 5 + ratings: 1 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" diff --git a/themes/gothic-vampire.yaml b/themes/gothic-vampire.yaml index 1f9aabd7..beb85af1 100644 --- a/themes/gothic-vampire.yaml +++ b/themes/gothic-vampire.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ssera-themes" version: "2.0.2" installs: 334 + rating: 0 + ratings: 0 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" diff --git a/themes/gothic-victorian-mourning.yaml b/themes/gothic-victorian-mourning.yaml index bec57b09..dbe48fd2 100644 --- a/themes/gothic-victorian-mourning.yaml +++ b/themes/gothic-victorian-mourning.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Diyllan.midnight-coven-themes" version: "1.0.1" installs: 1129 + rating: 5 + ratings: 1 author: "Diyllan" repo: "https://github.com/diyllan/midnight-coven-themes" url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" diff --git a/themes/gourd.yaml b/themes/gourd.yaml index 3db19111..c9246fe3 100644 --- a/themes/gourd.yaml +++ b/themes/gourd.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Zorbn.gourd-theme" version: "1.0.7" installs: 1704 + rating: 5 + ratings: 3 author: "Zorbn" repo: "https://github.com/Zorbn/gourd" url: "https://marketplace.visualstudio.com/items?itemName=Zorbn.gourd-theme" diff --git a/themes/gptheme-dark.yaml b/themes/gptheme-dark.yaml index d79d31ff..f710466b 100644 --- a/themes/gptheme-dark.yaml +++ b/themes/gptheme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pedro-b-n.gptheme" version: "4.0.0" installs: 1258 + rating: 5 + ratings: 1 author: "pedro-b-n" repo: "https://github.com/pedro-b-n/GPTheme" url: "https://marketplace.visualstudio.com/items?itemName=pedro-b-n.gptheme" diff --git a/themes/gptheme.yaml b/themes/gptheme.yaml index c0825fe8..2cb7085d 100644 --- a/themes/gptheme.yaml +++ b/themes/gptheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LudovicPeysson.nekogpttocolortheme" version: "0.0.1" installs: 27 + rating: 0 + ratings: 0 author: "LudovicPeysson" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LudovicPeysson.nekogpttocolortheme" diff --git a/themes/gracefulbear.yaml b/themes/gracefulbear.yaml index e25d1630..a6ba3f69 100644 --- a/themes/gracefulbear.yaml +++ b/themes/gracefulbear.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GracefulBear.gracefulbear" version: "0.0.1" installs: 968 + rating: 5 + ratings: 2 author: "GracefulBear" repo: "https://github.com/GracefulBearTheme/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=GracefulBear.gracefulbear" diff --git a/themes/grandblue-pastel.yaml b/themes/grandblue-pastel.yaml index e495b597..f1683c36 100644 --- a/themes/grandblue-pastel.yaml +++ b/themes/grandblue-pastel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jojihatzz.grandblue" version: "0.0.4" installs: 100 + rating: 0 + ratings: 0 author: "jojihatzz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jojihatzz.grandblue" diff --git a/themes/grandblue-soft.yaml b/themes/grandblue-soft.yaml index 447fe7e9..91a9cf64 100644 --- a/themes/grandblue-soft.yaml +++ b/themes/grandblue-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jojihatzz.grandblue" version: "0.0.4" installs: 100 + rating: 0 + ratings: 0 author: "jojihatzz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jojihatzz.grandblue" diff --git a/themes/grandblue.yaml b/themes/grandblue.yaml index e2a69853..549d5f4b 100644 --- a/themes/grandblue.yaml +++ b/themes/grandblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jojihatzz.grandblue" version: "0.0.4" installs: 100 + rating: 0 + ratings: 0 author: "jojihatzz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jojihatzz.grandblue" diff --git a/themes/grank-blackout.yaml b/themes/grank-blackout.yaml index f8f8474b..8ef328ab 100644 --- a/themes/grank-blackout.yaml +++ b/themes/grank-blackout.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samuraikitts.grank" version: "0.0.4" installs: 48 + rating: 5 + ratings: 2 author: "Emmanuel Akala" repo: "https://github.com/sambabib/grank-vscode" url: "https://marketplace.visualstudio.com/items?itemName=samuraikitts.grank" diff --git a/themes/grank.yaml b/themes/grank.yaml new file mode 100644 index 00000000..bbf2cd44 --- /dev/null +++ b/themes/grank.yaml @@ -0,0 +1,52 @@ +name: "Grank" +source: + marketplace_id: "samuraikitts.grank" + version: "0.0.4" + installs: 48 + rating: 5 + ratings: 2 + author: "Emmanuel Akala" + repo: "https://github.com/sambabib/grank-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=samuraikitts.grank" +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#F44747" + green: "#4EC9B0" + yellow: "#CE9178" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#9CDCFE" + white: "#D4D4D4" + brightBlack: "#2D2D2D" + brightRed: "#FF6B6B" + brightGreen: "#6FCFB0" + brightYellow: "#DCDCAA" + brightBlue: "#6FB9FF" + brightMagenta: "#D7BAFF" + brightCyan: "#B5DCFE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 37.6 + green: 61.1 + yellow: 48.7 + blue: 44.2 + magenta: 46.5 + cyan: 78.4 + white: 78.7 + brightBlack: 0 + brightRed: 47.3 + brightGreen: 65.5 + brightYellow: 81.7 + brightBlue: 59.8 + brightMagenta: 70.6 + brightCyan: 80.7 + brightWhite: 106 diff --git a/themes/grapered.yaml b/themes/grapered.yaml index 580f7420..e4e1e6c5 100644 --- a/themes/grapered.yaml +++ b/themes/grapered.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheGrapeking.GrapeRed" version: "1.0.1" installs: 26 + rating: 0 + ratings: 0 author: "The_Grape_king" repo: "https://github.com/TheGrapeking/Coolred" url: "https://marketplace.visualstudio.com/items?itemName=TheGrapeking.GrapeRed" diff --git a/themes/grapevine.yaml b/themes/grapevine.yaml index ba925872..c8335710 100644 --- a/themes/grapevine.yaml +++ b/themes/grapevine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rautenbergf.grapevine" version: "1.0.0" installs: 1603 + rating: 5 + ratings: 1 author: "rautenbergf" repo: "https://github.com/rautenbergf/grapevine" url: "https://marketplace.visualstudio.com/items?itemName=rautenbergf.grapevine" diff --git a/themes/graphlinq-dark.yaml b/themes/graphlinq-dark.yaml index 017206e1..494b56a5 100644 --- a/themes/graphlinq-dark.yaml +++ b/themes/graphlinq-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GraphLinq.graphlinq-vscode-theme" version: "0.2.1" installs: 677 + rating: 5 + ratings: 2 author: "GraphLinq" repo: "https://github.com/GraphLinq/GraphLinq.VSCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=GraphLinq.graphlinq-vscode-theme" diff --git a/themes/grassrivers-sunset.yaml b/themes/grassrivers-sunset.yaml index 116cef0c..ff718f70 100644 --- a/themes/grassrivers-sunset.yaml +++ b/themes/grassrivers-sunset.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/gravel-pit.yaml b/themes/gravel-pit.yaml index 38245186..7569692e 100644 --- a/themes/gravel-pit.yaml +++ b/themes/gravel-pit.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BeatScherrer.gravel-pit" version: "0.48.0" installs: 325 + rating: 0 + ratings: 0 author: "Beat Scherrer" repo: null url: "https://marketplace.visualstudio.com/items?itemName=BeatScherrer.gravel-pit" diff --git a/themes/graveyard-fork-fork.yaml b/themes/graveyard-fork-fork.yaml new file mode 100644 index 00000000..1393ed04 --- /dev/null +++ b/themes/graveyard-fork-fork.yaml @@ -0,0 +1,52 @@ +name: "Graveyard - Fork - Fork" +source: + marketplace_id: "TioAurelion.fullblack" + version: "0.0.1" + installs: 140 + rating: 0 + ratings: 0 + author: "TioAurelion" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TioAurelion.fullblack" +colors: + bg: "#000000" + fg: "#F61D6F" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 37 + black: 7.5 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/graveyard.yaml b/themes/graveyard.yaml index 46b01318..caf10933 100644 --- a/themes/graveyard.yaml +++ b/themes/graveyard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RolandoTaipe.Underdark" version: "0.1.15" installs: 7905 + rating: 5 + ratings: 1 author: "Rolando Taipe" repo: null url: "https://marketplace.visualstudio.com/items?itemName=RolandoTaipe.Underdark" diff --git a/themes/gravity.yaml b/themes/gravity.yaml index e72b8344..eec78888 100644 --- a/themes/gravity.yaml +++ b/themes/gravity.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jesztar.gravity" version: "0.0.1" installs: 1322 + rating: 0 + ratings: 0 author: "Jesztar" repo: "https://github.com/a-jesztar/Gravity-for-Visual-Studio-Code" url: "https://marketplace.visualstudio.com/items?itemName=Jesztar.gravity" diff --git a/themes/gray-matter.yaml b/themes/gray-matter.yaml index 28ab0739..83e98512 100644 --- a/themes/gray-matter.yaml +++ b/themes/gray-matter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Priyaank.radiancexx" version: "1.1.0" installs: 68 + rating: 0 + ratings: 0 author: "Priyaank" repo: "https://github.com/PRIYAANK2510/Radiance" url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.radiancexx" diff --git a/themes/gray-pastel.yaml b/themes/gray-pastel.yaml index 2893de27..fda92f97 100644 --- a/themes/gray-pastel.yaml +++ b/themes/gray-pastel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Falyssa.gray-pastel-theme" version: "0.0.7" installs: 70 + rating: 0 + ratings: 0 author: "Falyssa" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Falyssa.gray-pastel-theme" diff --git a/themes/graygraygray.yaml b/themes/graygraygray.yaml index 107ffc51..65521c5d 100644 --- a/themes/graygraygray.yaml +++ b/themes/graygraygray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kendama1980.graygraygray" version: "0.0.1" installs: 9406 + rating: 5 + ratings: 6 author: "kendama1980" repo: "https://github.com/kendama1980/graygraygray" url: "https://marketplace.visualstudio.com/items?itemName=kendama1980.graygraygray" diff --git a/themes/graymium-theme.yaml b/themes/graymium-theme.yaml index 1712be37..d59a63c5 100644 --- a/themes/graymium-theme.yaml +++ b/themes/graymium-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "olegfedak.graymium-vscode" version: "0.2.8" installs: 1031 + rating: 0 + ratings: 0 author: "olegfedak" repo: "https://github.com/olegfedak/graymium" url: "https://marketplace.visualstudio.com/items?itemName=olegfedak.graymium-vscode" diff --git a/themes/grayscale301-light.yaml b/themes/grayscale301-light.yaml index 782a03c9..6046a6fc 100644 --- a/themes/grayscale301-light.yaml +++ b/themes/grayscale301-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CameronScofield.grayscale301" version: "0.0.1" installs: 176 + rating: 0 + ratings: 0 author: "Cameron Scofield" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CameronScofield.grayscale301" diff --git a/themes/great-white-bloodloss.yaml b/themes/great-white-bloodloss.yaml index 47a26d00..70f5cb14 100644 --- a/themes/great-white-bloodloss.yaml +++ b/themes/great-white-bloodloss.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shark-labs.shark-labs-great-white-theme" version: "0.6.3" installs: 22 + rating: 0 + ratings: 0 author: "theSharkArtist" repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" diff --git a/themes/great-white-dark.yaml b/themes/great-white-dark.yaml index de48b703..84e5d1e4 100644 --- a/themes/great-white-dark.yaml +++ b/themes/great-white-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shark-labs.shark-labs-great-white-theme" version: "0.6.3" installs: 22 + rating: 0 + ratings: 0 author: "theSharkArtist" repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" diff --git a/themes/great-white-frost.yaml b/themes/great-white-frost.yaml index a550f40a..967ee66e 100644 --- a/themes/great-white-frost.yaml +++ b/themes/great-white-frost.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shark-labs.shark-labs-great-white-theme" version: "0.6.3" installs: 22 + rating: 0 + ratings: 0 author: "theSharkArtist" repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" diff --git a/themes/great-white-high-contrast-dark.yaml b/themes/great-white-high-contrast-dark.yaml index 0f533f8c..4016e6d1 100644 --- a/themes/great-white-high-contrast-dark.yaml +++ b/themes/great-white-high-contrast-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shark-labs.shark-labs-great-white-theme" version: "0.6.3" installs: 22 + rating: 0 + ratings: 0 author: "theSharkArtist" repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" diff --git a/themes/great-white-high-contrast-light.yaml b/themes/great-white-high-contrast-light.yaml index 42f32918..30d8c80c 100644 --- a/themes/great-white-high-contrast-light.yaml +++ b/themes/great-white-high-contrast-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shark-labs.shark-labs-great-white-theme" version: "0.6.3" installs: 22 + rating: 0 + ratings: 0 author: "theSharkArtist" repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" diff --git a/themes/great-white-light.yaml b/themes/great-white-light.yaml index 9527f2ea..8f974c9e 100644 --- a/themes/great-white-light.yaml +++ b/themes/great-white-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shark-labs.shark-labs-great-white-theme" version: "0.6.3" installs: 22 + rating: 0 + ratings: 0 author: "theSharkArtist" repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" diff --git a/themes/great-white-storm.yaml b/themes/great-white-storm.yaml index 82373abe..e3d3b9a8 100644 --- a/themes/great-white-storm.yaml +++ b/themes/great-white-storm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shark-labs.shark-labs-great-white-theme" version: "0.6.3" installs: 22 + rating: 0 + ratings: 0 author: "theSharkArtist" repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" diff --git a/themes/great-white.yaml b/themes/great-white.yaml index 0993341f..9c002ab5 100644 --- a/themes/great-white.yaml +++ b/themes/great-white.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thehedgefrog.greatwhite" version: "1.0.0" installs: 5910 + rating: 5 + ratings: 2 author: "thehedgefrog" repo: "https://github.com/thehedgefrog/great-white-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thehedgefrog.greatwhite" diff --git a/themes/greblue.yaml b/themes/greblue.yaml index a3ef3cc2..09a13d64 100644 --- a/themes/greblue.yaml +++ b/themes/greblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AXENOX.greblue" version: "0.0.2" installs: 57 + rating: 0 + ratings: 0 author: "AXENOX" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AXENOX.greblue" diff --git a/themes/greeeeen.yaml b/themes/greeeeen.yaml index 4eb06cc6..ac93df60 100644 --- a/themes/greeeeen.yaml +++ b/themes/greeeeen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kakamotobi.greeeeen" version: "1.0.0" installs: 44 + rating: 0 + ratings: 0 author: "Kakamotobi" repo: "https://github.com/Kakamotobi/Greeeeen" url: "https://marketplace.visualstudio.com/items?itemName=Kakamotobi.greeeeen" diff --git a/themes/green-coffee.yaml b/themes/green-coffee.yaml index 2455b656..f90aaf9a 100644 --- a/themes/green-coffee.yaml +++ b/themes/green-coffee.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rajeshwaran.developer-theme-dark" version: "5.0.0" installs: 162179 + rating: 5 + ratings: 4 author: "Rajeshwaran" repo: "https://github.com/Rajeshwaran2001/developer-theme-dark" url: "https://marketplace.visualstudio.com/items?itemName=Rajeshwaran.developer-theme-dark" diff --git a/themes/green-geek.yaml b/themes/green-geek.yaml index 70abe5a6..228632e6 100644 --- a/themes/green-geek.yaml +++ b/themes/green-geek.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "blackfur.green-geeko" version: "0.0.1" installs: 548 + rating: 0 + ratings: 0 author: "Blackfur" repo: "https://github.com/DasBlackfur/green-geeko" url: "https://marketplace.visualstudio.com/items?itemName=blackfur.green-geeko" diff --git a/themes/green-hacker.yaml b/themes/green-hacker.yaml new file mode 100644 index 00000000..2463cda5 --- /dev/null +++ b/themes/green-hacker.yaml @@ -0,0 +1,52 @@ +name: "Green Hacker" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#1E272E" + fg: "#E4E4E4" + black: "#000000" + red: "#FF5E57" + green: "#05C46B" + yellow: "#FFA801" + blue: "#575FCF" + magenta: "#EF5777" + cyan: "#00D8D6" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF3F34" + brightGreen: "#0BE881" + brightYellow: "#FFD32A" + brightBlue: "#0FBCF9" + brightMagenta: "#F53B57" + brightCyan: "#34E7E4" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 242 + pair: null + contrast: + fg: 87.3 + black: 0 + red: 43 + green: 54.3 + yellow: 62.7 + blue: 22.5 + magenta: 38.8 + cyan: 67.5 + white: 87.9 + brightBlack: 20 + brightRed: 37.8 + brightGreen: 72.5 + brightYellow: 79.5 + brightBlue: 56.6 + brightMagenta: 35.4 + brightCyan: 75.9 + brightWhite: 87.9 diff --git a/themes/green-kingdom.yaml b/themes/green-kingdom.yaml index 1a34744e..4b337b23 100644 --- a/themes/green-kingdom.yaml +++ b/themes/green-kingdom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.morita" version: "0.0.18" installs: 228 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/yesomac/MyThemes" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" diff --git a/themes/green-low-contrast.yaml b/themes/green-low-contrast.yaml index 76f60560..8ca0b986 100644 --- a/themes/green-low-contrast.yaml +++ b/themes/green-low-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cyberSpice.green-low-contrast" version: "0.26.0" installs: 1726 + rating: 5 + ratings: 1 author: "cyberSpice" repo: "https://github.com/alxspice/green-low-contrast-theme" url: "https://marketplace.visualstudio.com/items?itemName=cyberSpice.green-low-contrast" diff --git a/themes/green-papper.yaml b/themes/green-papper.yaml index 71a4dd4b..bc72b102 100644 --- a/themes/green-papper.yaml +++ b/themes/green-papper.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Suntechnic.green-papper" version: "0.4.1" installs: 1082 + rating: 0 + ratings: 0 author: "Александр Маджугин" repo: "https://github.com/Suntechnic/green-papper" url: "https://marketplace.visualstudio.com/items?itemName=Suntechnic.green-papper" diff --git a/themes/green-theme.yaml b/themes/green-theme.yaml index 037e4ed1..923ed345 100644 --- a/themes/green-theme.yaml +++ b/themes/green-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "flyyn2.green-theme" version: "1.0.2" installs: 2722 + rating: 5 + ratings: 1 author: "flyyn2" repo: null url: "https://marketplace.visualstudio.com/items?itemName=flyyn2.green-theme" diff --git a/themes/green-tree.yaml b/themes/green-tree.yaml index 92f3d382..73dac788 100644 --- a/themes/green-tree.yaml +++ b/themes/green-tree.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "stevennyang.green-tree" version: "1.2.1" installs: 5716 + rating: 5 + ratings: 1 author: "Steven N. Yang" repo: "https://github.com/snyang/vscode-theme-green-tree" url: "https://marketplace.visualstudio.com/items?itemName=stevennyang.green-tree" diff --git a/themes/green-valley-forest.yaml b/themes/green-valley-forest.yaml index 52ac72ec..e10b52f1 100644 --- a/themes/green-valley-forest.yaml +++ b/themes/green-valley-forest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "helciopenha.green-valley" version: "1.0.1" installs: 774 + rating: 5 + ratings: 1 author: "Helcio Penha" repo: "https://github.com/helciopenha/green-valley-vscode" url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" diff --git a/themes/green-valley-matrix.yaml b/themes/green-valley-matrix.yaml index a4af627f..dd709eaf 100644 --- a/themes/green-valley-matrix.yaml +++ b/themes/green-valley-matrix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "helciopenha.green-valley" version: "1.0.1" installs: 774 + rating: 5 + ratings: 1 author: "Helcio Penha" repo: "https://github.com/helciopenha/green-valley-vscode" url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" diff --git a/themes/green-valley-midnight.yaml b/themes/green-valley-midnight.yaml index 898ee33f..890859a4 100644 --- a/themes/green-valley-midnight.yaml +++ b/themes/green-valley-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "helciopenha.green-valley" version: "1.0.1" installs: 774 + rating: 5 + ratings: 1 author: "Helcio Penha" repo: "https://github.com/helciopenha/green-valley-vscode" url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" diff --git a/themes/green-valley-mint.yaml b/themes/green-valley-mint.yaml index d5eb11f2..77b5b01c 100644 --- a/themes/green-valley-mint.yaml +++ b/themes/green-valley-mint.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "helciopenha.green-valley" version: "1.0.1" installs: 774 + rating: 5 + ratings: 1 author: "Helcio Penha" repo: "https://github.com/helciopenha/green-valley-vscode" url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" diff --git a/themes/green-valley-neo.yaml b/themes/green-valley-neo.yaml index c040c1b3..70ef4785 100644 --- a/themes/green-valley-neo.yaml +++ b/themes/green-valley-neo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "helciopenha.green-valley" version: "1.0.1" installs: 774 + rating: 5 + ratings: 1 author: "Helcio Penha" repo: "https://github.com/helciopenha/green-valley-vscode" url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" diff --git a/themes/green-water.yaml b/themes/green-water.yaml index bf7ace97..c11e14f7 100644 --- a/themes/green-water.yaml +++ b/themes/green-water.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Green-Water-Theme.green-water" version: "0.0.1" installs: 1157 + rating: 0 + ratings: 0 author: "Green-Water-Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Green-Water-Theme.green-water" diff --git a/themes/green.yaml b/themes/green.yaml index 2dd81e72..1832671f 100644 --- a/themes/green.yaml +++ b/themes/green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "natecrow.consonance-themes" version: "1.2.0" installs: 317 + rating: 0 + ratings: 0 author: "natecrow" repo: "https://github.com/natecrow/consonance-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" diff --git a/themes/green500.yaml b/themes/green500.yaml index 48de12b4..ca0bbe1d 100644 --- a/themes/green500.yaml +++ b/themes/green500.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ArturGuedx.green500" version: "0.0.5" installs: 364 + rating: 0 + ratings: 0 author: "ArturGuedx" repo: "https://github.com/ArturGuedes/green500" url: "https://marketplace.visualstudio.com/items?itemName=ArturGuedx.green500" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 101.3 black: 0 diff --git a/themes/greenbreeze-dark.yaml b/themes/greenbreeze-dark.yaml index 79fa5cd0..4e4078af 100644 --- a/themes/greenbreeze-dark.yaml +++ b/themes/greenbreeze-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "icy9ptcl.greenbreeze-dark" version: "0.0.1" installs: 237 + rating: 0 + ratings: 0 author: "icy9ptcl" repo: "https://github.com/Icy9ptcl/GreenBreeze-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=icy9ptcl.greenbreeze-dark" diff --git a/themes/greenbreeze-light.yaml b/themes/greenbreeze-light.yaml index f8c6c067..79452ed7 100644 --- a/themes/greenbreeze-light.yaml +++ b/themes/greenbreeze-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "icy9ptcl.greenbreeze-light" version: "0.0.4" installs: 701 + rating: 0 + ratings: 0 author: "icy9ptcl" repo: "https://github.com/Icy9ptcl/GreenBreeze-Light-Theme" url: "https://marketplace.visualstudio.com/items?itemName=icy9ptcl.greenbreeze-light" diff --git a/themes/greenbyte-dark.yaml b/themes/greenbyte-dark.yaml index c31c7d83..42b20ea4 100644 --- a/themes/greenbyte-dark.yaml +++ b/themes/greenbyte-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mmnalaka.greenbyte" version: "0.2.0" installs: 12 + rating: 0 + ratings: 0 author: "mmnalaka" repo: "https://github.com/mmNalaka/greenbyte" url: "https://marketplace.visualstudio.com/items?itemName=mmnalaka.greenbyte" diff --git a/themes/greencloud.yaml b/themes/greencloud.yaml index 18877ab2..de11949a 100644 --- a/themes/greencloud.yaml +++ b/themes/greencloud.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GauravSinha.greencloud" version: "2.0.6" installs: 713 + rating: 5 + ratings: 1 author: "Gaurav Sinha" repo: "https://github.com/gauravsinhaweb/greencloud" url: "https://marketplace.visualstudio.com/items?itemName=GauravSinha.greencloud" diff --git a/themes/greeney-v2.yaml b/themes/greeney-v2.yaml index 80eb4aca..107cdd4f 100644 --- a/themes/greeney-v2.yaml +++ b/themes/greeney-v2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LakshayBhushan.greeney-theme" version: "2.0.0" installs: 1647 + rating: 5 + ratings: 4 author: "Lakshay Bhushan" repo: "https://github.com/lakshaybhushan/greeney-theme" url: "https://marketplace.visualstudio.com/items?itemName=LakshayBhushan.greeney-theme" diff --git a/themes/greeney.yaml b/themes/greeney.yaml index b3113d1f..b95ace02 100644 --- a/themes/greeney.yaml +++ b/themes/greeney.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LakshayBhushan.greeney-theme" version: "2.0.0" installs: 1647 + rating: 5 + ratings: 4 author: "Lakshay Bhushan" repo: "https://github.com/lakshaybhushan/greeney-theme" url: "https://marketplace.visualstudio.com/items?itemName=LakshayBhushan.greeney-theme" diff --git a/themes/greenish.yaml b/themes/greenish.yaml new file mode 100644 index 00000000..32bb44ad --- /dev/null +++ b/themes/greenish.yaml @@ -0,0 +1,50 @@ +name: "Greenish" +source: + marketplace_id: "nickmarsaw.greenish-color-theme" + version: "0.0.1" + installs: 256 + author: "nickmarsaw" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=nickmarsaw.greenish-color-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD2020" + green: "#0BA506" + yellow: "#C0C007" + blue: "#0656B0" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#20FF00" + brightYellow: "#FFFF00" + brightBlue: "#0070FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFDB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 26.3 + green: 42.4 + yellow: 65.2 + blue: 18.1 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 37.5 + brightGreen: 86.6 + brightYellow: 102.7 + brightBlue: 32.1 + brightMagenta: 46.2 + brightCyan: 90.5 + brightWhite: 91 diff --git a/themes/greenmachine.yaml b/themes/greenmachine.yaml index 59b439c9..c9527367 100644 --- a/themes/greenmachine.yaml +++ b/themes/greenmachine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ablazingeboy.greenmachine" version: "0.0.1" installs: 669 + rating: 0 + ratings: 0 author: "ABlazingEBoy" repo: "https://github.com/GreenMachine-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=ablazingeboy.greenmachine" diff --git a/themes/greenspace.yaml b/themes/greenspace.yaml index d8328f87..d3a63a94 100644 --- a/themes/greenspace.yaml +++ b/themes/greenspace.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.bluespace" version: "0.0.22" installs: 208 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/yesomac/BlueSpaceVSC" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.bluespace" diff --git a/themes/grewee-colorscheme.yaml b/themes/grewee-colorscheme.yaml index 47b0b5e1..05a79097 100644 --- a/themes/grewee-colorscheme.yaml +++ b/themes/grewee-colorscheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Salledelavage.grewee" version: "0.0.1" installs: 66 + rating: 0 + ratings: 0 author: "Salledelavage" repo: "https://github.com/grosheth/grewee-colorsheme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Salledelavage.grewee" diff --git a/themes/greygull.yaml b/themes/greygull.yaml index 7bf8b8fd..015b9040 100644 --- a/themes/greygull.yaml +++ b/themes/greygull.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bbrakenhoff.seabird" version: "0.0.4" installs: 754 + rating: 4.5 + ratings: 2 author: "bbrakenhoff" repo: "https://github.com/bbrakenhoff/seabird-vscode" url: "https://marketplace.visualstudio.com/items?itemName=bbrakenhoff.seabird" diff --git a/themes/greyout.yaml b/themes/greyout.yaml index 0d9c012a..b17d2091 100644 --- a/themes/greyout.yaml +++ b/themes/greyout.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Eses.greyout" version: "0.0.6" installs: 2034 + rating: 4.5 + ratings: 2 author: "Eses" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Eses.greyout" diff --git a/themes/greystillplays.yaml b/themes/greystillplays.yaml index b1a2fe75..e3c9cfe9 100644 --- a/themes/greystillplays.yaml +++ b/themes/greystillplays.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jaredbest.greystillplays-vscode" version: "0.0.2" installs: 5742 + rating: 0 + ratings: 0 author: "Jared Best" repo: "https://github.com/jaredbest/greystillplays-vscode" url: "https://marketplace.visualstudio.com/items?itemName=jaredbest.greystillplays-vscode" diff --git a/themes/grimoire-nox.yaml b/themes/grimoire-nox.yaml index deed447d..519c9f98 100644 --- a/themes/grimoire-nox.yaml +++ b/themes/grimoire-nox.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NathanEdwards.grimoire" version: "0.1.0" installs: 1037 + rating: 5 + ratings: 2 author: "Nathan Edwards" repo: "https://github.com/nathan-edwards/grimoire" url: "https://marketplace.visualstudio.com/items?itemName=NathanEdwards.grimoire" diff --git a/themes/grimoire.yaml b/themes/grimoire.yaml index a7a446a9..0f397a66 100644 --- a/themes/grimoire.yaml +++ b/themes/grimoire.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "walele993.fable-code-theme" version: "1.2.0" installs: 46 + rating: 0 + ratings: 0 author: "Gabriele Meucci" repo: "https://github.com/walele993/fable_a_vsc_theme" url: "https://marketplace.visualstudio.com/items?itemName=walele993.fable-code-theme" diff --git a/themes/grove-street-noir.yaml b/themes/grove-street-noir.yaml index 017be8ba..5f8a7366 100644 --- a/themes/grove-street-noir.yaml +++ b/themes/grove-street-noir.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/gru-black.yaml b/themes/gru-black.yaml index 714aa85a..3a47c501 100644 --- a/themes/gru-black.yaml +++ b/themes/gru-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Silitonix.gru" version: "0.1.1" installs: 924 + rating: 5 + ratings: 2 author: "Silitonix" repo: "https://github.com/Silitonix/GruTheme" url: "https://marketplace.visualstudio.com/items?itemName=Silitonix.gru" diff --git a/themes/gruber-blue.yaml b/themes/gruber-blue.yaml index 9f80c510..bab46239 100644 --- a/themes/gruber-blue.yaml +++ b/themes/gruber-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Hazem.gruber-blue" version: "0.0.6" installs: 38 + rating: 0 + ratings: 0 author: "Hazem" repo: "https://github.com/Hazem-BenAbdelhafidh/Gruber-blue" url: "https://marketplace.visualstudio.com/items?itemName=Hazem.gruber-blue" diff --git a/themes/grumbra.yaml b/themes/grumbra.yaml index fe4dfdc5..7373c832 100644 --- a/themes/grumbra.yaml +++ b/themes/grumbra.yaml @@ -1,11 +1,13 @@ name: "grumbra" source: - marketplace_id: "entis-cydo.grumbra" - version: "0.3.4" - installs: 215 - author: "Cydo Entis" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=entis-cydo.grumbra" + marketplace_id: "Cydo.re-theme" + version: "3.0.0" + installs: 696 + rating: 0 + ratings: 0 + author: "Cydo" + repo: "https://github.com/CydoEntis/reThemes" + url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" colors: bg: "#1B1B1B" fg: "#CCCCCC" diff --git a/themes/grunboxtheme.yaml b/themes/grunboxtheme.yaml index 45b55f33..4e78264e 100644 --- a/themes/grunboxtheme.yaml +++ b/themes/grunboxtheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ransh.ransh" version: "0.0.1" installs: 50567 + rating: 3 + ratings: 2 author: "Ransh" repo: "https://github.com/1466690577/gruvbox_theme_for_vscode" url: "https://marketplace.visualstudio.com/items?itemName=Ransh.ransh" diff --git a/themes/grunge-contrast.yaml b/themes/grunge-contrast.yaml index eff2d43f..79c612d0 100644 --- a/themes/grunge-contrast.yaml +++ b/themes/grunge-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/grunge-light.yaml b/themes/grunge-light.yaml index 0bc3a5d7..ddc67af3 100644 --- a/themes/grunge-light.yaml +++ b/themes/grunge-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/grunge.yaml b/themes/grunge.yaml index ac20cbdb..6ba8996d 100644 --- a/themes/grunge.yaml +++ b/themes/grunge.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/grusper.yaml b/themes/grusper.yaml index 214a0e48..8752031e 100644 --- a/themes/grusper.yaml +++ b/themes/grusper.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "T450.grusper-theme" version: "1.1.0" installs: 33 + rating: 0 + ratings: 0 author: "Edward" repo: "https://github.com/T-450/grusper-vscode" url: "https://marketplace.visualstudio.com/items?itemName=T450.grusper-theme" diff --git a/themes/gruvbox-dark-medium.yaml b/themes/gruvbox-dark-anhoder.yaml similarity index 93% rename from themes/gruvbox-dark-medium.yaml rename to themes/gruvbox-dark-anhoder.yaml index 55225be2..08f68b3b 100644 --- a/themes/gruvbox-dark-medium.yaml +++ b/themes/gruvbox-dark-anhoder.yaml @@ -1,8 +1,10 @@ -name: "Gruvbox Dark Medium" +name: "Gruvbox Dark Anhoder" source: marketplace_id: "anhoder.gruvbox-anhoder" version: "1.8.6" installs: 3783 + rating: 5 + ratings: 1 author: "anhoder" repo: "https://github.com/anhoder/vscode-theme-gruvbox" url: "https://marketplace.visualstudio.com/items?itemName=anhoder.gruvbox-anhoder" @@ -29,7 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null - pair: "Gruvbox Light Medium" + pair: null contrast: fg: 81.9 black: 0 diff --git a/themes/gruvbox-dark-soft.yaml b/themes/gruvbox-dark-soft.yaml deleted file mode 100644 index cb84bb1f..00000000 --- a/themes/gruvbox-dark-soft.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Gruvbox Dark Soft" -source: - marketplace_id: "MrMartian.gruvbox-dark-moist" - version: "0.0.1" - installs: 897 - author: "MrMartian" - repo: "https://github.com/CraigglesO/gruvbox-dark-moist-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=MrMartian.gruvbox-dark-moist" -colors: - bg: "#2C3338" - fg: "#CABFA4" - black: "#3C3836" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#DC7B7C" - brightGreen: "#9BB37A" - brightYellow: "#D4B77C" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#9DB579" - brightWhite: "#CABFA4" -meta: - mode: "dark" - accent: "orange" - hue: 239 - pair: "Gruvbox Light Soft" - contrast: - fg: 62.8 - black: 0 - red: 20.7 - green: 38.3 - yellow: 47.9 - blue: 27 - magenta: 27.1 - cyan: 37.3 - white: 42.6 - brightBlack: 31.8 - brightRed: 40.8 - brightGreen: 51.1 - brightYellow: 59.8 - brightBlue: 44 - brightMagenta: 43.4 - brightCyan: 52.1 - brightWhite: 62.8 diff --git a/themes/gruvbox-drakenlords-dark-draken.yaml b/themes/gruvbox-drakenlords-dark-draken.yaml index b72534f9..0dea6bad 100644 --- a/themes/gruvbox-drakenlords-dark-draken.yaml +++ b/themes/gruvbox-drakenlords-dark-draken.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DrakenLords.gruvbox-draken-lords" version: "1.5.5" installs: 8900 + rating: 5 + ratings: 1 author: "DrakenLords" repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" diff --git a/themes/gruvbox-drakenlords-dark.yaml b/themes/gruvbox-drakenlords-dark.yaml index 986eaf94..cd4b5539 100644 --- a/themes/gruvbox-drakenlords-dark.yaml +++ b/themes/gruvbox-drakenlords-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RickIsGone.rickisgone-gruvbox" version: "1.0.4" installs: 66 + rating: 0 + ratings: 0 author: "RickIsGone" repo: "https://github.com/RickIsGone/Gruvbox" url: "https://marketplace.visualstudio.com/items?itemName=RickIsGone.rickisgone-gruvbox" diff --git a/themes/gruvbox-drakenlords-grey.yaml b/themes/gruvbox-drakenlords-grey.yaml index 723b2f84..eefcf3f9 100644 --- a/themes/gruvbox-drakenlords-grey.yaml +++ b/themes/gruvbox-drakenlords-grey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DrakenLords.gruvbox-draken-lords" version: "1.5.5" installs: 8900 + rating: 5 + ratings: 1 author: "DrakenLords" repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" diff --git a/themes/gruvbox-drakenlords-semi-dark.yaml b/themes/gruvbox-drakenlords-semi-dark.yaml index 74199b5d..fea07a0c 100644 --- a/themes/gruvbox-drakenlords-semi-dark.yaml +++ b/themes/gruvbox-drakenlords-semi-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DrakenLords.gruvbox-draken-lords" version: "1.5.5" installs: 8900 + rating: 5 + ratings: 1 author: "DrakenLords" repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" diff --git a/themes/gruvbox-ish-dark-hard.yaml b/themes/gruvbox-ish-dark-hard.yaml index 5ca3eeb2..9f6ae4bb 100644 --- a/themes/gruvbox-ish-dark-hard.yaml +++ b/themes/gruvbox-ish-dark-hard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GracefulPotato.gruvbox-ish" version: "0.8.0" installs: 14935 + rating: 5 + ratings: 3 author: "GracefulPotato" repo: "https://github.com/graceful-potato/gruvbox-ish" url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" diff --git a/themes/gruvbox-ish-dark-medium.yaml b/themes/gruvbox-ish-dark-medium.yaml index 1d05d032..d3318868 100644 --- a/themes/gruvbox-ish-dark-medium.yaml +++ b/themes/gruvbox-ish-dark-medium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GracefulPotato.gruvbox-ish" version: "0.8.0" installs: 14935 + rating: 5 + ratings: 3 author: "GracefulPotato" repo: "https://github.com/graceful-potato/gruvbox-ish" url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" diff --git a/themes/gruvbox-ish-dark-soft.yaml b/themes/gruvbox-ish-dark-soft.yaml index 5a347d07..860d6450 100644 --- a/themes/gruvbox-ish-dark-soft.yaml +++ b/themes/gruvbox-ish-dark-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GracefulPotato.gruvbox-ish" version: "0.8.0" installs: 14935 + rating: 5 + ratings: 3 author: "GracefulPotato" repo: "https://github.com/graceful-potato/gruvbox-ish" url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" diff --git a/themes/gruvbox-light-medium.yaml b/themes/gruvbox-light-medium.yaml new file mode 100644 index 00000000..0373aa66 --- /dev/null +++ b/themes/gruvbox-light-medium.yaml @@ -0,0 +1,52 @@ +name: "Gruvbox Light Medium" +source: + marketplace_id: "capturedsun.CapturedSunTheme" + version: "1.0.1" + installs: 422 + rating: 0 + ratings: 0 + author: "Captured Sun" + repo: "https://github.com/capturedsun/gruvbox" + url: "https://marketplace.visualstudio.com/items?itemName=capturedsun.CapturedSunTheme" +colors: + bg: "#FBF1C7" + fg: "#3C3836" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 88.1 + black: 9.5 + red: 66.8 + green: 49.2 + yellow: 39.9 + blue: 60.5 + magenta: 60.3 + cyan: 50.2 + white: 65.1 + brightBlack: 55.7 + brightRed: 78.4 + brightGreen: 65 + brightYellow: 56.3 + brightBlue: 73.6 + brightMagenta: 74.1 + brightCyan: 65.8 + brightWhite: 88.1 diff --git a/themes/gruvbox-light-soft.yaml b/themes/gruvbox-light-soft.yaml new file mode 100644 index 00000000..8490dca5 --- /dev/null +++ b/themes/gruvbox-light-soft.yaml @@ -0,0 +1,52 @@ +name: "Gruvbox Light Soft" +source: + marketplace_id: "capturedsun.CapturedSunTheme" + version: "1.0.1" + installs: 422 + rating: 0 + ratings: 0 + author: "Captured Sun" + repo: "https://github.com/capturedsun/gruvbox" + url: "https://marketplace.visualstudio.com/items?itemName=capturedsun.CapturedSunTheme" +colors: + bg: "#F2E5BC" + fg: "#3C3836" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: 93 + pair: null + contrast: + fg: 81.5 + black: 0 + red: 60.3 + green: 42.6 + yellow: 33.3 + blue: 53.9 + magenta: 53.8 + cyan: 43.6 + white: 58.6 + brightBlack: 49.1 + brightRed: 71.8 + brightGreen: 58.4 + brightYellow: 49.8 + brightBlue: 67 + brightMagenta: 67.5 + brightCyan: 59.2 + brightWhite: 81.5 diff --git a/themes/gruvbox-material-dark-claude-hybrid.yaml b/themes/gruvbox-material-dark-claude-hybrid.yaml index 44c63e2f..4fe06c6f 100644 --- a/themes/gruvbox-material-dark-claude-hybrid.yaml +++ b/themes/gruvbox-material-dark-claude-hybrid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Icycoldveins.verum-monokai-themes" version: "1.2.1" installs: 46 + rating: 5 + ratings: 1 author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" diff --git a/themes/gruvbox-material-dark.yaml b/themes/gruvbox-material-dark.yaml new file mode 100644 index 00000000..c6588400 --- /dev/null +++ b/themes/gruvbox-material-dark.yaml @@ -0,0 +1,52 @@ +name: "Gruvbox Material Dark" +source: + marketplace_id: "sainnhe.gruvbox-material" + version: "6.5.2" + installs: 328140 + rating: 4.92 + ratings: 39 + author: "sainnhe" + repo: "https://github.com/sainnhe/gruvbox-material-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.gruvbox-material" +colors: + bg: "#292828" + fg: "#D4BE98" + black: "#32302F" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Gruvbox Material Light" + contrast: + fg: 65.5 + black: 0 + red: 40.5 + green: 55.5 + yellow: 55.3 + blue: 49.7 + magenta: 45.5 + cyan: 52.2 + white: 65.5 + brightBlack: 33.9 + brightRed: 40.5 + brightGreen: 55.5 + brightYellow: 55.3 + brightBlue: 49.7 + brightMagenta: 45.5 + brightCyan: 52.2 + brightWhite: 70.8 diff --git a/themes/gruvbox-material-flat-dark.yaml b/themes/gruvbox-material-flat-dark.yaml index 3f8b8f4f..e8057c02 100644 --- a/themes/gruvbox-material-flat-dark.yaml +++ b/themes/gruvbox-material-flat-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GrzegorzKozub.gruvbox-material-flat" version: "0.2.8" installs: 687 + rating: 0 + ratings: 0 author: "greg" repo: "https://github.com/GrzegorzKozub/gruvbox-material-flat" url: "https://marketplace.visualstudio.com/items?itemName=GrzegorzKozub.gruvbox-material-flat" diff --git a/themes/gruvbox-material-flat-light.yaml b/themes/gruvbox-material-flat-light.yaml index 5ff28300..f8c57787 100644 --- a/themes/gruvbox-material-flat-light.yaml +++ b/themes/gruvbox-material-flat-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GrzegorzKozub.gruvbox-material-flat" version: "0.2.8" installs: 687 + rating: 0 + ratings: 0 author: "greg" repo: "https://github.com/GrzegorzKozub/gruvbox-material-flat" url: "https://marketplace.visualstudio.com/items?itemName=GrzegorzKozub.gruvbox-material-flat" diff --git a/themes/gruvbox-material-light.yaml b/themes/gruvbox-material-light.yaml new file mode 100644 index 00000000..e79ebcf3 --- /dev/null +++ b/themes/gruvbox-material-light.yaml @@ -0,0 +1,52 @@ +name: "Gruvbox Material Light" +source: + marketplace_id: "sainnhe.gruvbox-material" + version: "6.5.2" + installs: 328140 + rating: 4.92 + ratings: 39 + author: "sainnhe" + repo: "https://github.com/sainnhe/gruvbox-material-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.gruvbox-material" +colors: + bg: "#FBF1C7" + fg: "#654735" + black: "#4F3829" + red: "#C14A4A" + green: "#6C782E" + yellow: "#B47109" + blue: "#45707A" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#654735" + brightRed: "#C14A4A" + brightGreen: "#6C782E" + brightYellow: "#B47109" + brightBlue: "#45707A" + brightMagenta: "#945E80" + brightCyan: "#4C7A5D" + brightWhite: "#F2E5BC" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Gruvbox Material Dark" + contrast: + fg: 80.2 + black: 86.5 + red: 64.1 + green: 64.7 + yellow: 58 + blue: 68.5 + magenta: 66 + cyan: 65.5 + white: 55.7 + brightBlack: 80.2 + brightRed: 64.1 + brightGreen: 64.7 + brightYellow: 58 + brightBlue: 68.5 + brightMagenta: 66 + brightCyan: 65.5 + brightWhite: 0 diff --git a/themes/gruvbox-material-mix.yaml b/themes/gruvbox-material-mix.yaml index bae13c1a..c066fa19 100644 --- a/themes/gruvbox-material-mix.yaml +++ b/themes/gruvbox-material-mix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nd2204.gruvbox-material-mix" version: "0.4.6" installs: 465 + rating: 0 + ratings: 0 author: "nd2204" repo: "https://github.com/nd2204/vscode-gruvbox" url: "https://marketplace.visualstudio.com/items?itemName=nd2204.gruvbox-material-mix" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 84.3 black: 0 diff --git a/themes/gruvbox-minor-dark-hard.yaml b/themes/gruvbox-minor-dark-hard.yaml index 36f7a213..fb5872e8 100644 --- a/themes/gruvbox-minor-dark-hard.yaml +++ b/themes/gruvbox-minor-dark-hard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sagaban.dark-gruvbox-with-italics" version: "0.0.4" installs: 2296 + rating: 0 + ratings: 0 author: "Santiago Bandiera" repo: "https://github.com/sagaban/dark-gruvbox-with-italics" url: "https://marketplace.visualstudio.com/items?itemName=sagaban.dark-gruvbox-with-italics" diff --git a/themes/gruvbox-minor-dark-medium.yaml b/themes/gruvbox-minor-dark-medium.yaml index af4fb9e9..05e53092 100644 --- a/themes/gruvbox-minor-dark-medium.yaml +++ b/themes/gruvbox-minor-dark-medium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/gruvbox-minor-dark-soft.yaml b/themes/gruvbox-minor-dark-soft.yaml index b9cff809..b8d0fe1b 100644 --- a/themes/gruvbox-minor-dark-soft.yaml +++ b/themes/gruvbox-minor-dark-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/gruvbox-minor-light-hard.yaml b/themes/gruvbox-minor-light-hard.yaml index 066f2695..4db3fa1b 100644 --- a/themes/gruvbox-minor-light-hard.yaml +++ b/themes/gruvbox-minor-light-hard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/gruvbox-minor-light-medium.yaml b/themes/gruvbox-minor-light-medium.yaml index 53badfbb..56856ab9 100644 --- a/themes/gruvbox-minor-light-medium.yaml +++ b/themes/gruvbox-minor-light-medium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/gruvbox-minor-light-soft.yaml b/themes/gruvbox-minor-light-soft.yaml index c3f27c8e..07007bc3 100644 --- a/themes/gruvbox-minor-light-soft.yaml +++ b/themes/gruvbox-minor-light-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/gruvchad.yaml b/themes/gruvchad.yaml index aa050c2e..cd2027a3 100644 --- a/themes/gruvchad.yaml +++ b/themes/gruvchad.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Koujir.gruvchad" version: "0.0.1" installs: 3463 + rating: 0 + ratings: 0 author: "Koujir" repo: "https://github.com/long-nc/gruvchad-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Koujir.gruvchad" diff --git a/themes/gruvdark-gbm.yaml b/themes/gruvdark-gbm.yaml index 85ade247..73202a7c 100644 --- a/themes/gruvdark-gbm.yaml +++ b/themes/gruvdark-gbm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "darianmorat.darian-theme" version: "2.1.6" installs: 3178 + rating: 5 + ratings: 1 author: "Darian Toledo" repo: "https://github.com/darianmorat/gruvdark-theme" url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" diff --git a/themes/gruvdark-tokyo.yaml b/themes/gruvdark-tokyo.yaml index 5189513e..f80f139b 100644 --- a/themes/gruvdark-tokyo.yaml +++ b/themes/gruvdark-tokyo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "darianmorat.darian-theme" version: "2.1.6" installs: 3178 + rating: 5 + ratings: 1 author: "Darian Toledo" repo: "https://github.com/darianmorat/gruvdark-theme" url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" diff --git a/themes/gruvdark.yaml b/themes/gruvdark.yaml new file mode 100644 index 00000000..aaaabce9 --- /dev/null +++ b/themes/gruvdark.yaml @@ -0,0 +1,52 @@ +name: "GruvDark" +source: + marketplace_id: "darianmorat.darian-theme" + version: "2.1.6" + installs: 3178 + rating: 5 + ratings: 1 + author: "Darian Toledo" + repo: "https://github.com/darianmorat/gruvdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" +colors: + bg: "#202020" + fg: "#CDC5B8" + black: "#2B2B2B" + red: "#DB6A6A" + green: "#76B568" + yellow: "#D19F66" + blue: "#5B98C9" + magenta: "#CD60B9" + cyan: "#4DB0BD" + white: "#CDC5B8" + brightBlack: "#4F4F4F" + brightRed: "#DB6A6A" + brightGreen: "#76B568" + brightYellow: "#D19F66" + brightBlue: "#5B98C9" + brightMagenta: "#CD60B9" + brightCyan: "#4DB0BD" + brightWhite: "#CDC5B8" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 69.9 + black: 0 + red: 39.2 + green: 51.8 + yellow: 53.3 + blue: 41.8 + magenta: 37.3 + cyan: 50.3 + white: 69.9 + brightBlack: 11.7 + brightRed: 39.2 + brightGreen: 51.8 + brightYellow: 53.3 + brightBlue: 41.8 + brightMagenta: 37.3 + brightCyan: 50.3 + brightWhite: 69.9 diff --git a/themes/gruvvy-watermelon.yaml b/themes/gruvvy-watermelon.yaml new file mode 100644 index 00000000..eb4a9a12 --- /dev/null +++ b/themes/gruvvy-watermelon.yaml @@ -0,0 +1,50 @@ +name: "Gruvvy Watermelon" +source: + marketplace_id: "ZaccCharvolin.gruvvy-watermelon" + version: "1.5.12" + installs: 300 + author: "Zacc Charvolin" + repo: "https://github.com/zacccharv/gruvvyWatermelon" + url: "https://marketplace.visualstudio.com/items?itemName=ZaccCharvolin.gruvvy-watermelon" +colors: + bg: "#202727" + fg: "#E9F2F1" + black: "#273030" + red: "#FF647D" + green: "#4FB094" + yellow: "#F1BCAC" + blue: "#A1EDE0" + magenta: "#FFB8EC" + cyan: "#71CCBF" + white: "#A2C4BA" + brightBlack: "#5C7F76" + brightRed: "#FF5A76" + brightGreen: "#47C5A1" + brightYellow: "#FFBAA4" + brightBlue: "#7EE0D6" + brightMagenta: "#FE97E3" + brightCyan: "#71CCBF" + brightWhite: "#B6D2CA" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 95.1 + black: 0 + red: 45 + green: 47.8 + yellow: 70.2 + blue: 84.1 + magenta: 73.9 + cyan: 63.6 + white: 63.7 + brightBlack: 28 + brightRed: 42.9 + brightGreen: 57.3 + brightYellow: 71.6 + brightBlue: 74.8 + brightMagenta: 62.1 + brightCyan: 63.6 + brightWhite: 72.6 diff --git a/themes/guezwhoz.yaml b/themes/guezwhoz.yaml index cadb88c0..7e3e9fbe 100644 --- a/themes/guezwhoz.yaml +++ b/themes/guezwhoz.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guezwhoz-schema.guezwhoz-vscode-theme" version: "1.2.0" installs: 586 + rating: 0 + ratings: 0 author: "Egor Lem" repo: "https://github.com/guesswhozzz/guezwhoz-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=guezwhoz-schema.guezwhoz-vscode-theme" diff --git a/themes/guisaldanha-light.yaml b/themes/guisaldanha-light.yaml index 49cfc8fc..29351046 100644 --- a/themes/guisaldanha-light.yaml +++ b/themes/guisaldanha-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guisaldanha.guisaldanha-light" version: "1.0.9" installs: 534 + rating: 0 + ratings: 0 author: "Guilherme Saldanha" repo: "https://github.com/guisaldanha/vscode-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=guisaldanha.guisaldanha-light" diff --git a/themes/gujarat-vibrant-culture.yaml b/themes/gujarat-vibrant-culture.yaml index a1070798..2fdefeaa 100644 --- a/themes/gujarat-vibrant-culture.yaml +++ b/themes/gujarat-vibrant-culture.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ProudIndian.colors-of-india-themes" version: "1.0.1" installs: 37 + rating: 5 + ratings: 1 author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" diff --git a/themes/gum.yaml b/themes/gum.yaml index 0b3f629c..031fb577 100644 --- a/themes/gum.yaml +++ b/themes/gum.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RobinBandi.cherry-gum-v2" version: "0.19.0" installs: 394 + rating: 0 + ratings: 0 author: "Robin Bandi" repo: "https://github.com/robbandi/Cherry-Gum" url: "https://marketplace.visualstudio.com/items?itemName=RobinBandi.cherry-gum-v2" diff --git a/themes/gumua.yaml b/themes/gumua.yaml index 08727992..9959f746 100644 --- a/themes/gumua.yaml +++ b/themes/gumua.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GopherTheme.gumua-gopher-theme" version: "0.0.9" installs: 1137 + rating: 5 + ratings: 1 author: "Gopher Theme" repo: "https://github.com/KhwanNon/golang-theme" url: "https://marketplace.visualstudio.com/items?itemName=GopherTheme.gumua-gopher-theme" diff --git a/themes/gunivers.yaml b/themes/gunivers.yaml index 70eec08a..e7e9abcb 100644 --- a/themes/gunivers.yaml +++ b/themes/gunivers.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Leirof.gunivers-theme" version: "0.0.23" installs: 568 + rating: 5 + ratings: 2 author: "Leirof" repo: "https://github.com/Gunivers/VSC-theme" url: "https://marketplace.visualstudio.com/items?itemName=Leirof.gunivers-theme" diff --git a/themes/gustavoglins.yaml b/themes/gustavoglins.yaml index 9bd491e5..f04f0326 100644 --- a/themes/gustavoglins.yaml +++ b/themes/gustavoglins.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GustavoLins05.gustavoglins-theme" version: "22.1.1" installs: 40 + rating: 5 + ratings: 1 author: "Gustavo Lins" repo: null url: "https://marketplace.visualstudio.com/items?itemName=GustavoLins05.gustavoglins-theme" diff --git a/themes/gusuku-limestone.yaml b/themes/gusuku-limestone.yaml index b653bd28..f157cf57 100644 --- a/themes/gusuku-limestone.yaml +++ b/themes/gusuku-limestone.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ky12228121.okinawan-themes" version: "0.0.1" installs: 10 + rating: 0 + ratings: 0 author: "Keny Yahat" repo: "https://github.com/ky12228121/okinawan" url: "https://marketplace.visualstudio.com/items?itemName=ky12228121.okinawan-themes" diff --git a/themes/guttenbergovitz.yaml b/themes/guttenbergovitz.yaml new file mode 100644 index 00000000..cb20ad12 --- /dev/null +++ b/themes/guttenbergovitz.yaml @@ -0,0 +1,52 @@ +name: "Guttenbergovitz" +source: + marketplace_id: "guttenbergovitz.guttenbergovitz" + version: "0.0.3" + installs: 181 + rating: 0 + ratings: 0 + author: "Guttenbergovitz" + repo: "https://github.com/guttenbergovitz/guttenbergovitz-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guttenbergovitz.guttenbergovitz" +colors: + bg: "#232326" + fg: "#D4BE98" + black: "#1D1D20" + red: "#A96B69" + green: "#89A87D" + yellow: "#D6B986" + blue: "#D79969" + magenta: "#A96B69" + cyan: "#89A87D" + white: "#D4BE98" + brightBlack: "#7C7C7C" + brightRed: "#A96B69" + brightGreen: "#89A87D" + brightYellow: "#D6B986" + brightBlue: "#D79969" + brightMagenta: "#A96B69" + brightCyan: "#89A87D" + brightWhite: "#D4BE98" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 66.4 + black: 0 + red: 30.2 + green: 47.9 + yellow: 64.2 + blue: 51.7 + magenta: 30.2 + cyan: 47.9 + white: 66.4 + brightBlack: 30.3 + brightRed: 30.2 + brightGreen: 47.9 + brightYellow: 64.2 + brightBlue: 51.7 + brightMagenta: 30.2 + brightCyan: 47.9 + brightWhite: 66.4 diff --git a/themes/gvalley.yaml b/themes/gvalley.yaml index 63b3d58a..c096b875 100644 --- a/themes/gvalley.yaml +++ b/themes/gvalley.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sam01.Gvalley" version: "0.0.1" installs: 98 + rating: 0 + ratings: 0 author: "sam" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sam01.Gvalley" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 86.2 black: 0 diff --git a/themes/gyomei-himejima.yaml b/themes/gyomei-himejima.yaml index a6fc881e..d6e0a57d 100644 --- a/themes/gyomei-himejima.yaml +++ b/themes/gyomei-himejima.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devLocifer.hashira-code-theme" version: "0.0.1" installs: 739 + rating: 5 + ratings: 1 author: "devLocifer" repo: "https://github.com/diazdjul19/hashira-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" diff --git a/themes/h1-dark-fork.yaml b/themes/h1-dark-fork.yaml index 5b098e64..b4a0c6fc 100644 --- a/themes/h1-dark-fork.yaml +++ b/themes/h1-dark-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Hacker0x01.HackerOne-VS-Code-Theme" version: "1.1.2" installs: 5438 + rating: 5 + ratings: 1 author: "Hacker0x01" repo: "https://github.com/Hacker0x01/HackerOne-VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Hacker0x01.HackerOne-VS-Code-Theme" diff --git a/themes/h1-light-fork.yaml b/themes/h1-light-fork.yaml index 5c4361b2..5dbc46d2 100644 --- a/themes/h1-light-fork.yaml +++ b/themes/h1-light-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Hacker0x01.HackerOne-VS-Code-Theme" version: "1.1.2" installs: 5438 + rating: 5 + ratings: 1 author: "Hacker0x01" repo: "https://github.com/Hacker0x01/HackerOne-VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Hacker0x01.HackerOne-VS-Code-Theme" diff --git a/themes/haavyz.yaml b/themes/haavyz.yaml index 8488bc00..ef573167 100644 --- a/themes/haavyz.yaml +++ b/themes/haavyz.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Haavyz.Haavyz" version: "1.0.9" installs: 22 + rating: 5 + ratings: 1 author: "Haavyz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Haavyz.Haavyz" diff --git a/themes/habamax.yaml b/themes/habamax.yaml index f17677ba..e284c9fc 100644 --- a/themes/habamax.yaml +++ b/themes/habamax.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codelogix.habamax" version: "0.0.1" installs: 858 + rating: 0 + ratings: 0 author: "Carl Weis" repo: "https://github.com/carlweis/vscode-habamax-theme" url: "https://marketplace.visualstudio.com/items?itemName=codelogix.habamax" diff --git a/themes/habamix.yaml b/themes/habamix.yaml index c3a72df9..79571074 100644 --- a/themes/habamix.yaml +++ b/themes/habamix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dpdpdp.habamix" version: "0.2.0" installs: 672 + rating: 5 + ratings: 1 author: "dpdpdp" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dpdpdp.habamix" diff --git a/themes/hachiko.yaml b/themes/hachiko.yaml index a24d6687..65376029 100644 --- a/themes/hachiko.yaml +++ b/themes/hachiko.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "charlottielove.kitty-hachiko" version: "0.0.1" installs: 20 + rating: 0 + ratings: 0 author: "charlottielove" repo: null url: "https://marketplace.visualstudio.com/items?itemName=charlottielove.kitty-hachiko" diff --git a/themes/hack-and-lima.yaml b/themes/hack-and-lima.yaml index c6582c45..a6059025 100644 --- a/themes/hack-and-lima.yaml +++ b/themes/hack-and-lima.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EmeAim.aim" version: "0.0.8" installs: 1797 + rating: 5 + ratings: 1 author: "EmeAim" repo: "https://github.com/EmePin/aim-themes" url: "https://marketplace.visualstudio.com/items?itemName=EmeAim.aim" diff --git a/themes/hack-electron.yaml b/themes/hack-electron.yaml index 1b037e4d..e7c6f410 100644 --- a/themes/hack-electron.yaml +++ b/themes/hack-electron.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheVoidsteppers.hack-electron" version: "0.0.3" installs: 2205 + rating: 0 + ratings: 0 author: "TheVoidsteppers" repo: "https://github.com/TheVoidsteppers/hack-electron" url: "https://marketplace.visualstudio.com/items?itemName=TheVoidsteppers.hack-electron" diff --git a/themes/hack-minor.yaml b/themes/hack-minor.yaml new file mode 100644 index 00000000..66533c9d --- /dev/null +++ b/themes/hack-minor.yaml @@ -0,0 +1,52 @@ +name: "Hack Minor" +source: + marketplace_id: "adamsome.vscode-theme-phosphorus-minor" + version: "1.1.3" + installs: 421 + rating: 5 + ratings: 1 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-phosphorus-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-phosphorus-minor" +colors: + bg: "#000000" + fg: "#A8A29E" + black: "#000000" + red: "#DC2626" + green: "#7E9E83" + yellow: "#A09B4E" + blue: "#55757F" + magenta: "#DC2626" + cyan: "#60A2A3" + white: "#292524" + brightBlack: "#120F0E" + brightRed: "#F87171" + brightGreen: "#B8D3BB" + brightYellow: "#D9D385" + brightBlue: "#93A7AF" + brightMagenta: "#F87171" + brightCyan: "#9AD7D8" + brightWhite: "#1C1917" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 52.5 + black: 0 + red: 30.1 + green: 45.7 + yellow: 46.8 + blue: 27.4 + magenta: 30.1 + cyan: 46.3 + white: 0 + brightBlack: 0 + brightRed: 49.1 + brightGreen: 75.7 + brightYellow: 78.1 + brightBlue: 52.8 + brightMagenta: 49.1 + brightCyan: 75.8 + brightWhite: 0 diff --git a/themes/hackage-theme.yaml b/themes/hackage-theme.yaml index a2f0a3b0..54f50ddb 100644 --- a/themes/hackage-theme.yaml +++ b/themes/hackage-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dmarticus.hackage-theme" version: "0.0.3" installs: 1465 + rating: 5 + ratings: 2 author: "dmarticus" repo: "https://github.com/dmarticus/hackage-theme" url: "https://marketplace.visualstudio.com/items?itemName=dmarticus.hackage-theme" diff --git a/themes/hacker-blue.yaml b/themes/hacker-blue.yaml index 7ef4d191..36eebca9 100644 --- a/themes/hacker-blue.yaml +++ b/themes/hacker-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chausen.hacker-blue" version: "1.0.0" installs: 19475 + rating: 5 + ratings: 1 author: "chausen" repo: "https://github.com/chausen/hacker-blue" url: "https://marketplace.visualstudio.com/items?itemName=chausen.hacker-blue" diff --git a/themes/hacker-pink.yaml b/themes/hacker-pink.yaml index f4f0ff58..504b8a75 100644 --- a/themes/hacker-pink.yaml +++ b/themes/hacker-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xynny.hacker-pink" version: "1.0.0" installs: 4967 + rating: 5 + ratings: 1 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.hacker-pink" diff --git a/themes/hacker-x.yaml b/themes/hacker-x.yaml index d210bcfd..1b04fd17 100644 --- a/themes/hacker-x.yaml +++ b/themes/hacker-x.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" version: "9.0.1" installs: 29917 + rating: 4.6 + ratings: 10 author: "Hasibur R" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" diff --git a/themes/hacker.yaml b/themes/hacker.yaml index 5b376a3c..16caf6f5 100644 --- a/themes/hacker.yaml +++ b/themes/hacker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brenix.hacker-theme" version: "0.0.6" installs: 69285 + rating: 5 + ratings: 3 author: "brenix" repo: "https://github.com/brenix/vscode-hacker" url: "https://marketplace.visualstudio.com/items?itemName=brenix.hacker-theme" diff --git a/themes/hackish.yaml b/themes/hackish.yaml index 1ea9826f..58fe0dae 100644 --- a/themes/hackish.yaml +++ b/themes/hackish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "valbmig.hackish" version: "1.0.0" installs: 756 + rating: 5 + ratings: 1 author: "valb.mig" repo: "https://github.com/valb-mig/valbmig.hackish-theme" url: "https://marketplace.visualstudio.com/items?itemName=valbmig.hackish" diff --git a/themes/hackpot-batman-vs-joker-dark.yaml b/themes/hackpot-batman-vs-joker-dark.yaml index 2c414d0e..25f71ad0 100644 --- a/themes/hackpot-batman-vs-joker-dark.yaml +++ b/themes/hackpot-batman-vs-joker-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" installs: 24357 + rating: 5 + ratings: 5 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" diff --git a/themes/hackpot-batman-vs-joker.yaml b/themes/hackpot-batman-vs-joker.yaml index b0ed087b..d9bdf7ed 100644 --- a/themes/hackpot-batman-vs-joker.yaml +++ b/themes/hackpot-batman-vs-joker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" installs: 24357 + rating: 5 + ratings: 5 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" diff --git a/themes/hackpot-dark-knight.yaml b/themes/hackpot-dark-knight.yaml index ea70c6e0..64118f59 100644 --- a/themes/hackpot-dark-knight.yaml +++ b/themes/hackpot-dark-knight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" installs: 24357 + rating: 5 + ratings: 5 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" diff --git a/themes/hackpot-darker-knight.yaml b/themes/hackpot-darker-knight.yaml index cc2df1c9..c17c02f4 100644 --- a/themes/hackpot-darker-knight.yaml +++ b/themes/hackpot-darker-knight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" installs: 24357 + rating: 5 + ratings: 5 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" diff --git a/themes/hackpot-garden-dark.yaml b/themes/hackpot-garden-dark.yaml index 0b710e20..0c271247 100644 --- a/themes/hackpot-garden-dark.yaml +++ b/themes/hackpot-garden-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" installs: 24357 + rating: 5 + ratings: 5 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" diff --git a/themes/hackpot-garden-of-atlantis.yaml b/themes/hackpot-garden-of-atlantis.yaml index 3dade596..da98db92 100644 --- a/themes/hackpot-garden-of-atlantis.yaml +++ b/themes/hackpot-garden-of-atlantis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" installs: 24357 + rating: 5 + ratings: 5 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" diff --git a/themes/hackpot-garden-purple-haze.yaml b/themes/hackpot-garden-purple-haze.yaml index 83ffc68d..94163eb9 100644 --- a/themes/hackpot-garden-purple-haze.yaml +++ b/themes/hackpot-garden-purple-haze.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" installs: 24357 + rating: 5 + ratings: 5 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" diff --git a/themes/hackpot-garden.yaml b/themes/hackpot-garden.yaml index 9a5bdbeb..dc746e09 100644 --- a/themes/hackpot-garden.yaml +++ b/themes/hackpot-garden.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" installs: 24357 + rating: 5 + ratings: 5 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" diff --git a/themes/hackpot-muddy-garden.yaml b/themes/hackpot-muddy-garden.yaml index 01e034b6..95cfd4f4 100644 --- a/themes/hackpot-muddy-garden.yaml +++ b/themes/hackpot-muddy-garden.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" installs: 24357 + rating: 5 + ratings: 5 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" diff --git a/themes/hackpot-poisoned-garden.yaml b/themes/hackpot-poisoned-garden.yaml index 98ea232a..cab84850 100644 --- a/themes/hackpot-poisoned-garden.yaml +++ b/themes/hackpot-poisoned-garden.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wwmyers.hackpot" version: "3.0.0" installs: 24357 + rating: 5 + ratings: 5 author: "wwmyers" repo: "https://github.com/wwmyers/hackpot" url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" diff --git a/themes/hadar.yaml b/themes/hadar.yaml index f2fccc92..eb323960 100644 --- a/themes/hadar.yaml +++ b/themes/hadar.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cristianvasquez.hadar-theme" version: "1.0.0" installs: 49 + rating: 5 + ratings: 1 author: "Cristian Vásquez" repo: "https://github.com/cristianvasquezc/hadar-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=cristianvasquez.hadar-theme" diff --git a/themes/haidark-two.yaml b/themes/haidark-two.yaml index b5178c30..f9a54d20 100644 --- a/themes/haidark-two.yaml +++ b/themes/haidark-two.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "phongtranhai.haidark" version: "0.0.3" installs: 117 + rating: 5 + ratings: 1 author: "Huu Nhan Tran" repo: "https://github.com/thnhan1/haidark-theme" url: "https://marketplace.visualstudio.com/items?itemName=phongtranhai.haidark" diff --git a/themes/halcyon.yaml b/themes/halcyon.yaml index 2b478663..947bdfde 100644 --- a/themes/halcyon.yaml +++ b/themes/halcyon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PhillipGreen.cyberdev" version: "0.0.4" installs: 577 + rating: 0 + ratings: 0 author: "Phillip Green" repo: "https://github.com/PhilGreen-Dev/cyberdev-vscode" url: "https://marketplace.visualstudio.com/items?itemName=PhillipGreen.cyberdev" diff --git a/themes/half-gray.yaml b/themes/half-gray.yaml index 23da22d0..d6eb2b87 100644 --- a/themes/half-gray.yaml +++ b/themes/half-gray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MarcosBatisaldo.half-gray-theme" version: "1.0.1" installs: 757 + rating: 5 + ratings: 1 author: "Marcos Batisaldo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MarcosBatisaldo.half-gray-theme" diff --git a/themes/halflife-contrast.yaml b/themes/halflife-contrast.yaml index b0b656b3..94d41c13 100644 --- a/themes/halflife-contrast.yaml +++ b/themes/halflife-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/halflife-light.yaml b/themes/halflife-light.yaml index 02d75e2e..de07344e 100644 --- a/themes/halflife-light.yaml +++ b/themes/halflife-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/halflife.yaml b/themes/halflife.yaml index c61e221f..a3e4d0cb 100644 --- a/themes/halflife.yaml +++ b/themes/halflife.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/halloween-theme.yaml b/themes/halloween-theme.yaml new file mode 100644 index 00000000..df054fdf --- /dev/null +++ b/themes/halloween-theme.yaml @@ -0,0 +1,50 @@ +name: "Halloween Theme" +source: + marketplace_id: "Joeel56.halloween-theme-color-theme" + version: "1.0.1" + installs: 57 + author: "Joeel56" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Joeel56.halloween-theme-color-theme" +colors: + bg: "#201D31" + fg: "#7770A3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 290 + pair: null + contrast: + fg: 28.1 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 88.9 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/halloween.yaml b/themes/halloween.yaml index 7e16171a..3c45ecf3 100644 --- a/themes/halloween.yaml +++ b/themes/halloween.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "swordensen.halloween-theme" version: "0.0.2" installs: 4661 + rating: 0 + ratings: 0 author: "swordensen" repo: "https://github.com/Mikkal24/VSCodeHalloweenTheme" url: "https://marketplace.visualstudio.com/items?itemName=swordensen.halloween-theme" diff --git a/themes/hallucination.yaml b/themes/hallucination.yaml index 52fce300..c0b5089c 100644 --- a/themes/hallucination.yaml +++ b/themes/hallucination.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "matheusdearaujo.hallucination" version: "2.2.1" installs: 463 + rating: 5 + ratings: 1 author: "matheusdearaujo" repo: "https://github.com/matheusdearaujo/hallucination-theme" url: "https://marketplace.visualstudio.com/items?itemName=matheusdearaujo.hallucination" diff --git a/themes/hamidthedev-professional.yaml b/themes/hamidthedev-professional.yaml index 7c932a43..eb943b5d 100644 --- a/themes/hamidthedev-professional.yaml +++ b/themes/hamidthedev-professional.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HamidTheDev.hamidthedev" version: "6.0.0" installs: 924 + rating: 5 + ratings: 1 author: "HamidTheDev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HamidTheDev.hamidthedev" diff --git a/themes/hammerhead.yaml b/themes/hammerhead.yaml new file mode 100644 index 00000000..be69cb44 --- /dev/null +++ b/themes/hammerhead.yaml @@ -0,0 +1,52 @@ +name: "Hammerhead" +source: + marketplace_id: "thehedgefrog.hammerhead" + version: "1.1.2" + installs: 470 + rating: 5 + ratings: 1 + author: "thehedgefrog" + repo: "https://github.com/thehedgefrog/hammerhead-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thehedgefrog.hammerhead" +colors: + bg: "#031F30" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 239 + pair: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/hams-uno.yaml b/themes/hams-uno.yaml new file mode 100644 index 00000000..a0b46a38 --- /dev/null +++ b/themes/hams-uno.yaml @@ -0,0 +1,52 @@ +name: "hams-uno" +source: + marketplace_id: "CoreyHamren.hams-uno" + version: "0.0.1" + installs: 163 + rating: 0 + ratings: 0 + author: "Corey Hamren" + repo: "https://github.com/TheHamhams/hams-uno" + url: "https://marketplace.visualstudio.com/items?itemName=CoreyHamren.hams-uno" +colors: + bg: "#1D1D1D" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.2 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/han.yaml b/themes/han.yaml index ddd2d5e2..53c8413c 100644 --- a/themes/han.yaml +++ b/themes/han.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nathanwu.han-vscode" version: "0.3.2" installs: 564 + rating: 5 + ratings: 2 author: "Nathan Wu" repo: "https://github.com/na-wu/project-han" url: "https://marketplace.visualstudio.com/items?itemName=nathanwu.han-vscode" diff --git a/themes/happy-dark.yaml b/themes/happy-dark.yaml index 41ee3dd1..19f5e66a 100644 --- a/themes/happy-dark.yaml +++ b/themes/happy-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lynnjinjie.vscode-happy-theme" version: "0.2.1" installs: 218 + rating: 5 + ratings: 1 author: "lynnjinjie" repo: "https://github.com/lynnjinjie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lynnjinjie.vscode-happy-theme" diff --git a/themes/happy-heart-1-dark-classic.yaml b/themes/happy-heart-1-dark-classic.yaml index 5bd4e683..e57c0550 100644 --- a/themes/happy-heart-1-dark-classic.yaml +++ b/themes/happy-heart-1-dark-classic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-10-forest-green.yaml b/themes/happy-heart-10-forest-green.yaml index 16813f9d..cef77dcd 100644 --- a/themes/happy-heart-10-forest-green.yaml +++ b/themes/happy-heart-10-forest-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-11-emerald-green.yaml b/themes/happy-heart-11-emerald-green.yaml index be47f4d8..778d1755 100644 --- a/themes/happy-heart-11-emerald-green.yaml +++ b/themes/happy-heart-11-emerald-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-12-midnight-purple.yaml b/themes/happy-heart-12-midnight-purple.yaml index 86ffb229..6693cc3c 100644 --- a/themes/happy-heart-12-midnight-purple.yaml +++ b/themes/happy-heart-12-midnight-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-13-royal-purple.yaml b/themes/happy-heart-13-royal-purple.yaml index 3625205c..13250a9a 100644 --- a/themes/happy-heart-13-royal-purple.yaml +++ b/themes/happy-heart-13-royal-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-14-rose-gold.yaml b/themes/happy-heart-14-rose-gold.yaml index 3e7f0d14..013aba52 100644 --- a/themes/happy-heart-14-rose-gold.yaml +++ b/themes/happy-heart-14-rose-gold.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-15-chilli-paper.yaml b/themes/happy-heart-15-chilli-paper.yaml index 96e8cc81..218424b4 100644 --- a/themes/happy-heart-15-chilli-paper.yaml +++ b/themes/happy-heart-15-chilli-paper.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-16-grey.yaml b/themes/happy-heart-16-grey.yaml index bc675abc..af9bca52 100644 --- a/themes/happy-heart-16-grey.yaml +++ b/themes/happy-heart-16-grey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-17-yellow.yaml b/themes/happy-heart-17-yellow.yaml index e0412455..1cfc4dec 100644 --- a/themes/happy-heart-17-yellow.yaml +++ b/themes/happy-heart-17-yellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-2-dark-orange.yaml b/themes/happy-heart-2-dark-orange.yaml index a9e58fdf..78fe7c9b 100644 --- a/themes/happy-heart-2-dark-orange.yaml +++ b/themes/happy-heart-2-dark-orange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-3-dark-purple.yaml b/themes/happy-heart-3-dark-purple.yaml index 0c7801b9..2ef15096 100644 --- a/themes/happy-heart-3-dark-purple.yaml +++ b/themes/happy-heart-3-dark-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-4-dark-green.yaml b/themes/happy-heart-4-dark-green.yaml index 828c5016..aea7b61c 100644 --- a/themes/happy-heart-4-dark-green.yaml +++ b/themes/happy-heart-4-dark-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-5-deep-blue.yaml b/themes/happy-heart-5-deep-blue.yaml index bca039a4..1547cd2c 100644 --- a/themes/happy-heart-5-deep-blue.yaml +++ b/themes/happy-heart-5-deep-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-6-ocean-blue.yaml b/themes/happy-heart-6-ocean-blue.yaml index 70a1e09c..008595b4 100644 --- a/themes/happy-heart-6-ocean-blue.yaml +++ b/themes/happy-heart-6-ocean-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-7-navy-blue.yaml b/themes/happy-heart-7-navy-blue.yaml index f7e1a4e3..27563ecd 100644 --- a/themes/happy-heart-7-navy-blue.yaml +++ b/themes/happy-heart-7-navy-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-8-bright-light.yaml b/themes/happy-heart-8-bright-light.yaml index 9e759d08..61fcec55 100644 --- a/themes/happy-heart-8-bright-light.yaml +++ b/themes/happy-heart-8-bright-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/happy-heart-9-smooth-light.yaml b/themes/happy-heart-9-smooth-light.yaml index 4f2d4682..51364dae 100644 --- a/themes/happy-heart-9-smooth-light.yaml +++ b/themes/happy-heart-9-smooth-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Khushdil380.happy-heart" version: "1.0.1" installs: 129 + rating: 0 + ratings: 0 author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" diff --git a/themes/hapsida.yaml b/themes/hapsida.yaml index 3f4cda6e..5e70ad8b 100644 --- a/themes/hapsida.yaml +++ b/themes/hapsida.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "securisec.hapsida-securisec" version: "0.0.30" installs: 226 + rating: 5 + ratings: 1 author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" diff --git a/themes/hard-hacker-darker.yaml b/themes/hard-hacker-darker.yaml index 341ade6a..32471c35 100644 --- a/themes/hard-hacker-darker.yaml +++ b/themes/hard-hacker-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HardHacker.hard-hacker-theme" version: "0.2.3" installs: 12849 + rating: 5 + ratings: 7 author: "Hard Hacker" repo: "https://github.com/hardhackerlabs/theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" diff --git a/themes/hard-hacker-light.yaml b/themes/hard-hacker-light.yaml new file mode 100644 index 00000000..f62a8950 --- /dev/null +++ b/themes/hard-hacker-light.yaml @@ -0,0 +1,52 @@ +name: "Hard Hacker Light" +source: + marketplace_id: "HardHacker.hard-hacker-theme" + version: "0.2.3" + installs: 12849 + rating: 5 + ratings: 7 + author: "Hard Hacker" + repo: "https://github.com/hardhackerlabs/theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" +colors: + bg: "#FBFAFC" + fg: "#282433" + black: "#282433" + red: "#B33974" + green: "#3C8032" + yellow: "#A86200" + blue: "#5663B8" + magenta: "#832294" + cyan: "#23758C" + white: "#FBFAFC" + brightBlack: "#756F8C" + brightRed: "#B33974" + brightGreen: "#3C8032" + brightYellow: "#A86200" + brightBlue: "#5663B8" + brightMagenta: "#832294" + brightCyan: "#23758C" + brightWhite: "#FBFAFC" +meta: + mode: "light" + accent: "pink" + hue: null + pair: "Hard Hacker Darker" + contrast: + fg: 99.2 + black: 99.2 + red: 74.2 + green: 70.6 + yellow: 69.8 + blue: 74.1 + magenta: 83.8 + cyan: 73 + white: 0 + brightBlack: 70.3 + brightRed: 74.2 + brightGreen: 70.6 + brightYellow: 69.8 + brightBlue: 74.1 + brightMagenta: 83.8 + brightCyan: 73 + brightWhite: 0 diff --git a/themes/hard-hacker.yaml b/themes/hard-hacker.yaml new file mode 100644 index 00000000..41683c19 --- /dev/null +++ b/themes/hard-hacker.yaml @@ -0,0 +1,52 @@ +name: "Hard Hacker" +source: + marketplace_id: "HardHacker.hard-hacker-theme" + version: "0.2.3" + installs: 12849 + rating: 5 + ratings: 7 + author: "Hard Hacker" + repo: "https://github.com/hardhackerlabs/theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" +colors: + bg: "#282433" + fg: "#EEE9FC" + black: "#282433" + red: "#E965A5" + green: "#B1F2A7" + yellow: "#EBDE76" + blue: "#B1BAF4" + magenta: "#E192EF" + cyan: "#B3F4F3" + white: "#EEE9FC" + brightBlack: "#938AAD" + brightRed: "#E965A5" + brightGreen: "#B1F2A7" + brightYellow: "#EBDE76" + brightBlue: "#B1BAF4" + brightMagenta: "#E192EF" + brightCyan: "#B3F4F3" + brightWhite: "#EEE9FC" +meta: + mode: "dark" + accent: "red" + hue: 297 + pair: null + contrast: + fg: 92 + black: 0 + red: 41.9 + green: 85.8 + yellow: 82.1 + blue: 63.9 + magenta: 56 + cyan: 89.9 + white: 92 + brightBlack: 38.9 + brightRed: 41.9 + brightGreen: 85.8 + brightYellow: 82.1 + brightBlue: 63.9 + brightMagenta: 56 + brightCyan: 89.9 + brightWhite: 92 diff --git a/themes/harddark.yaml b/themes/harddark.yaml index a5011065..55c92420 100644 --- a/themes/harddark.yaml +++ b/themes/harddark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hardxs.hardxs" version: "0.0.1" installs: 40 + rating: 0 + ratings: 0 author: "hardxs" repo: null url: "https://marketplace.visualstudio.com/items?itemName=hardxs.hardxs" diff --git a/themes/hardwired-arctic-blue.yaml b/themes/hardwired-arctic-blue.yaml index 675c97d1..085e0d24 100644 --- a/themes/hardwired-arctic-blue.yaml +++ b/themes/hardwired-arctic-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thwilson3.hardwired-color-theme" version: "0.0.1" installs: 625 + rating: 0 + ratings: 0 author: "thwilson3" repo: "https://github.com/thwilson3/hardwired-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thwilson3.hardwired-color-theme" diff --git a/themes/hardwired-electric-lime.yaml b/themes/hardwired-electric-lime.yaml index 8fd0c1b1..eaad93c6 100644 --- a/themes/hardwired-electric-lime.yaml +++ b/themes/hardwired-electric-lime.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thwilson3.hardwired-color-theme" version: "0.0.1" installs: 625 + rating: 0 + ratings: 0 author: "thwilson3" repo: "https://github.com/thwilson3/hardwired-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thwilson3.hardwired-color-theme" diff --git a/themes/hardwired-purple.yaml b/themes/hardwired-purple.yaml index a84bb776..07b13449 100644 --- a/themes/hardwired-purple.yaml +++ b/themes/hardwired-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thwilson3.hardwired-color-theme" version: "0.0.1" installs: 625 + rating: 0 + ratings: 0 author: "thwilson3" repo: "https://github.com/thwilson3/hardwired-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thwilson3.hardwired-color-theme" diff --git a/themes/hare-omagari.yaml b/themes/hare-omagari.yaml new file mode 100644 index 00000000..8be767a6 --- /dev/null +++ b/themes/hare-omagari.yaml @@ -0,0 +1,52 @@ +name: "Hare Omagari" +source: + marketplace_id: "hashpp.veritas-code" + version: "1.0.1" + installs: 234 + rating: 0 + ratings: 0 + author: "hashpp" + repo: "https://github.com/hash112/veritas-code" + url: "https://marketplace.visualstudio.com/items?itemName=hashpp.veritas-code" +colors: + bg: "#18202C" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 258 + pair: null + contrast: + fg: 105.8 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 88.9 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/harley-quinn-theme.yaml b/themes/harley-quinn-theme.yaml index 2eceb4ec..b73c74e0 100644 --- a/themes/harley-quinn-theme.yaml +++ b/themes/harley-quinn-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NyctibiusVII.descomplica-theme" version: "1.4.18" installs: 387 + rating: 5 + ratings: 2 author: "NyctibiusVII" repo: "https://github.com/Descomplica-ADS/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.descomplica-theme" diff --git a/themes/harmonized-dark.yaml b/themes/harmonized-dark.yaml index 49c4e49e..f0326e5a 100644 --- a/themes/harmonized-dark.yaml +++ b/themes/harmonized-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wheredoesyourmindgo.harmonized-vscode-theme" version: "0.8.7" installs: 823 + rating: 5 + ratings: 1 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/harmonized-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.harmonized-vscode-theme" diff --git a/themes/harmonized-light-hc.yaml b/themes/harmonized-light-hc.yaml index 31947719..702d943b 100644 --- a/themes/harmonized-light-hc.yaml +++ b/themes/harmonized-light-hc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wheredoesyourmindgo.harmonized-vscode-theme" version: "0.8.7" installs: 823 + rating: 5 + ratings: 1 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/harmonized-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.harmonized-vscode-theme" diff --git a/themes/harmonized-light.yaml b/themes/harmonized-light.yaml index f55d7aea..f343bbee 100644 --- a/themes/harmonized-light.yaml +++ b/themes/harmonized-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wheredoesyourmindgo.harmonized-vscode-theme" version: "0.8.7" installs: 823 + rating: 5 + ratings: 1 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/harmonized-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.harmonized-vscode-theme" diff --git a/themes/harmony-pulse.yaml b/themes/harmony-pulse.yaml new file mode 100644 index 00000000..c0816006 --- /dev/null +++ b/themes/harmony-pulse.yaml @@ -0,0 +1,52 @@ +name: "Harmony Pulse" +source: + marketplace_id: "HarmonyCodes.harmony-pulse" + version: "1.0.0" + installs: 320 + rating: 5 + ratings: 1 + author: "Harmony Codes" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HarmonyCodes.harmony-pulse" +colors: + bg: "#1C1719" + fg: "#EFECED" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 94.8 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/harriet.yaml b/themes/harriet.yaml index af09b6a8..99c61b71 100644 --- a/themes/harriet.yaml +++ b/themes/harriet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MatthewCocker.focal" version: "1.0.0" installs: 119 + rating: 0 + ratings: 0 author: "Matthew Cocker" repo: "https://github.com/matthewcocker/focal" url: "https://marketplace.visualstudio.com/items?itemName=MatthewCocker.focal" diff --git a/themes/harrys.yaml b/themes/harrys.yaml index f58c3531..d0993fe9 100644 --- a/themes/harrys.yaml +++ b/themes/harrys.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "harryharry.harry-harry-dark" version: "0.0.1" installs: 214 + rating: 0 + ratings: 0 author: "harry harry" repo: null url: "https://marketplace.visualstudio.com/items?itemName=harryharry.harry-harry-dark" diff --git a/themes/harshaddevpro.yaml b/themes/harshaddevpro.yaml index 60753758..062cdee4 100644 --- a/themes/harshaddevpro.yaml +++ b/themes/harshaddevpro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithharshad.codewithharshad" version: "0.0.4" installs: 19 + rating: 0 + ratings: 0 author: "codewithharshad" repo: null url: "https://marketplace.visualstudio.com/items?itemName=codewithharshad.codewithharshad" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 101.1 black: 0 diff --git a/themes/hashirama-senju-god-of-shinobi.yaml b/themes/hashirama-senju-god-of-shinobi.yaml index bd3d05bb..a94ae9ab 100644 --- a/themes/hashirama-senju-god-of-shinobi.yaml +++ b/themes/hashirama-senju-god-of-shinobi.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/hawaii-contrast.yaml b/themes/hawaii-contrast.yaml index 885954f8..5c965ebd 100644 --- a/themes/hawaii-contrast.yaml +++ b/themes/hawaii-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/hawaii-light.yaml b/themes/hawaii-light.yaml index cb311496..bba3dcac 100644 --- a/themes/hawaii-light.yaml +++ b/themes/hawaii-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/hawaii.yaml b/themes/hawaii.yaml index a997ed35..826fec0e 100644 --- a/themes/hawaii.yaml +++ b/themes/hawaii.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/hc-zenburn.yaml b/themes/hc-zenburn.yaml index 653907e9..8a873584 100644 --- a/themes/hc-zenburn.yaml +++ b/themes/hc-zenburn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "drzix.hc-zenburn-vscode" version: "0.3.0" installs: 7768 + rating: 5 + ratings: 1 author: "Kyeongmin Cho" repo: "https://github.com/drzix/hc-zenburn-vscode" url: "https://marketplace.visualstudio.com/items?itemName=drzix.hc-zenburn-vscode" diff --git a/themes/hearth-dark.yaml b/themes/hearth-dark.yaml new file mode 100644 index 00000000..ebd16631 --- /dev/null +++ b/themes/hearth-dark.yaml @@ -0,0 +1,52 @@ +name: "Hearth Dark" +source: + marketplace_id: "hearth-code.hearth-theme" + version: "1.0.1" + installs: 3 + rating: 0 + ratings: 0 + author: "HearthCode" + repo: "https://github.com/TypeFusion/HearthTheme" + url: "https://marketplace.visualstudio.com/items?itemName=hearth-code.hearth-theme" +colors: + bg: "#1E1A12" + fg: "#D0C4AA" + black: "#2C2618" + red: "#C06050" + green: "#80A068" + yellow: "#C8A850" + blue: "#6888A8" + magenta: "#B89070" + cyan: "#78A898" + white: "#D0C4AA" + brightBlack: "#4A4030" + brightRed: "#D07060" + brightGreen: "#98B880" + brightYellow: "#D8B870" + brightBlue: "#88A0C0" + brightMagenta: "#C8A880" + brightCyan: "#90B8A8" + brightWhite: "#E8DCC8" +meta: + mode: "dark" + accent: "orange" + hue: 84 + pair: "Hearth Light" + contrast: + fg: 70.1 + black: 0 + red: 32 + green: 44.6 + yellow: 55.7 + blue: 35.7 + magenta: 45.3 + cyan: 48.6 + white: 70.1 + brightBlack: 7.5 + brightRed: 39.1 + brightGreen: 57.3 + brightYellow: 64.8 + brightBlue: 48.4 + brightMagenta: 56.6 + brightCyan: 57.8 + brightWhite: 84.8 diff --git a/themes/hearth-light.yaml b/themes/hearth-light.yaml new file mode 100644 index 00000000..7a4033e8 --- /dev/null +++ b/themes/hearth-light.yaml @@ -0,0 +1,52 @@ +name: "Hearth Light" +source: + marketplace_id: "hearth-code.hearth-theme" + version: "1.0.1" + installs: 3 + rating: 0 + ratings: 0 + author: "HearthCode" + repo: "https://github.com/TypeFusion/HearthTheme" + url: "https://marketplace.visualstudio.com/items?itemName=hearth-code.hearth-theme" +colors: + bg: "#F8F2E8" + fg: "#2C1C08" + black: "#3A3020" + red: "#903020" + green: "#385820" + yellow: "#806000" + blue: "#2A5070" + magenta: "#784418" + cyan: "#2A6050" + white: "#6A5030" + brightBlack: "#8A7860" + brightRed: "#A04030" + brightGreen: "#486828" + brightYellow: "#907010" + brightBlue: "#3A6080" + brightMagenta: "#885428" + brightCyan: "#3A7060" + brightWhite: "#2C1C08" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Hearth Dark" + contrast: + fg: 95.9 + black: 91.7 + red: 79.4 + green: 80.6 + yellow: 71.6 + blue: 81.6 + magenta: 79.9 + cyan: 77.7 + white: 78.6 + brightBlack: 62 + brightRed: 73.8 + brightGreen: 74.3 + brightYellow: 64.8 + brightBlue: 75.3 + brightMagenta: 73.6 + brightCyan: 71.1 + brightWhite: 95.9 diff --git a/themes/hecker-boy.yaml b/themes/hecker-boy.yaml index 3c71f91b..d7e97f37 100644 --- a/themes/hecker-boy.yaml +++ b/themes/hecker-boy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sreehari521.hecker-boy" version: "0.0.1" installs: 897 + rating: 5 + ratings: 1 author: "Sreehari521" repo: "https://github.com/Sreehari521/Hecker-Boy" url: "https://marketplace.visualstudio.com/items?itemName=Sreehari521.hecker-boy" diff --git a/themes/held.yaml b/themes/held.yaml index ad2e675e..39b0990a 100644 --- a/themes/held.yaml +++ b/themes/held.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "techwithcarlos.Held" version: "1.1.0" installs: 1597 + rating: 5 + ratings: 5 author: "techwithcarlos" repo: "https://github.com/CarlosTaubeler/Held" url: "https://marketplace.visualstudio.com/items?itemName=techwithcarlos.Held" diff --git a/themes/helion.yaml b/themes/helion.yaml index 83ecd618..c26c9f8f 100644 --- a/themes/helion.yaml +++ b/themes/helion.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BrandonGandy.helion" version: "1.0.1" installs: 37 + rating: 0 + ratings: 0 author: "Brandon Gandy" repo: "https://github.com/brandongandy/vscode-helion" url: "https://marketplace.visualstudio.com/items?itemName=BrandonGandy.helion" diff --git a/themes/helios-solarized-dark.yaml b/themes/helios-solarized-dark.yaml index 9bbbfac9..1090b567 100644 --- a/themes/helios-solarized-dark.yaml +++ b/themes/helios-solarized-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "santoso-wijaya.helios-selene" version: "0.3.18" installs: 3055 + rating: 5 + ratings: 4 author: "Santoso Wijaya" repo: "https://github.com/santoso-wijaya/vscode-helios-selene" url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" diff --git a/themes/helios-solarized-light.yaml b/themes/helios-solarized-light.yaml index 756c941f..56a60c63 100644 --- a/themes/helios-solarized-light.yaml +++ b/themes/helios-solarized-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "santoso-wijaya.helios-selene" version: "0.3.18" installs: 3055 + rating: 5 + ratings: 4 author: "Santoso Wijaya" repo: "https://github.com/santoso-wijaya/vscode-helios-selene" url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" diff --git a/themes/helix.yaml b/themes/helix.yaml index ece1b492..2af096e6 100644 --- a/themes/helix.yaml +++ b/themes/helix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewonders.helix" version: "0.1.0" installs: 3406 + rating: 5 + ratings: 1 author: "Adenekan Wonderful" repo: "git+https://github.com/adenekan41/Helix" url: "https://marketplace.visualstudio.com/items?itemName=codewonders.helix" diff --git a/themes/hell-pine.yaml b/themes/hell-pine.yaml index eecc527b..61e0fe77 100644 --- a/themes/hell-pine.yaml +++ b/themes/hell-pine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ABX.hell-pine" version: "0.0.3" installs: 722 + rating: 5 + ratings: 1 author: "ABX" repo: "https://github.com/AbiXnash/hell-pine" url: "https://marketplace.visualstudio.com/items?itemName=ABX.hell-pine" diff --git a/themes/hellfire.yaml b/themes/hellfire.yaml index 44a10f1c..324136bc 100644 --- a/themes/hellfire.yaml +++ b/themes/hellfire.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexCharbonneau.hellfire-theme" version: "1.0.5" installs: 23 + rating: 0 + ratings: 0 author: "Alex Charbonneau" repo: "https://github.com/alexandrec90/hellfire_theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexCharbonneau.hellfire-theme" diff --git a/themes/hello-world-theme.yaml b/themes/hello-world-theme.yaml index f4d39623..821de0cb 100644 --- a/themes/hello-world-theme.yaml +++ b/themes/hello-world-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HelloWorld01.HelloWorld-Theme" version: "1.0.0" installs: 29 + rating: 0 + ratings: 0 author: "HelloWorld!" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HelloWorld01.HelloWorld-Theme" diff --git a/themes/hendrikkels-dark.yaml b/themes/hendrikkels-dark.yaml index 791b6a1c..4d1cbd4f 100644 --- a/themes/hendrikkels-dark.yaml +++ b/themes/hendrikkels-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hendrikkels.hendrikkels" version: "1.4.7" installs: 460 + rating: 5 + ratings: 1 author: "hendrikkels" repo: "https://github.com/hendrikkels/hendrikkels-theme" url: "https://marketplace.visualstudio.com/items?itemName=hendrikkels.hendrikkels" diff --git a/themes/hendrikkels-light.yaml b/themes/hendrikkels-light.yaml index d61b4ac2..567c5685 100644 --- a/themes/hendrikkels-light.yaml +++ b/themes/hendrikkels-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hendrikkels.hendrikkels" version: "1.4.7" installs: 460 + rating: 5 + ratings: 1 author: "hendrikkels" repo: "https://github.com/hendrikkels/hendrikkels-theme" url: "https://marketplace.visualstudio.com/items?itemName=hendrikkels.hendrikkels" diff --git a/themes/heptapod.yaml b/themes/heptapod.yaml index 745e8bc0..10dfb649 100644 --- a/themes/heptapod.yaml +++ b/themes/heptapod.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kenziebottoms.heptapod" version: "2.0.1" installs: 431 + rating: 0 + ratings: 0 author: "Kenzie Bottoms" repo: "git+https://github.com/kenziebottoms/vscode-theme-heptapod" url: "https://marketplace.visualstudio.com/items?itemName=kenziebottoms.heptapod" diff --git a/themes/herakles.yaml b/themes/herakles.yaml new file mode 100644 index 00000000..4ba8c0e1 --- /dev/null +++ b/themes/herakles.yaml @@ -0,0 +1,52 @@ +name: "Herakles" +source: + marketplace_id: "MatanCohen.herakles" + version: "0.0.7" + installs: 219 + rating: 5 + ratings: 2 + author: "Matan Cohen" + repo: "https://github.com/comatan96/Herakles-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MatanCohen.herakles" +colors: + bg: "#151C1D" + fg: "#CBCFAE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 207 + pair: null + contrast: + fg: 74.2 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/herbal.yaml b/themes/herbal.yaml index 9480ad24..50b872a3 100644 --- a/themes/herbal.yaml +++ b/themes/herbal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Lotli.herbal-theme" version: "0.0.2" installs: 22 + rating: 5 + ratings: 1 author: "Lotli" repo: "https://github.com/Lotli/herbal-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Lotli.herbal-theme" diff --git a/themes/hereafter.yaml b/themes/hereafter.yaml index 3d0823c7..7c5a9915 100644 --- a/themes/hereafter.yaml +++ b/themes/hereafter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cyar-ika.hereafter" version: "0.0.1" installs: 414 + rating: 0 + ratings: 0 author: "cyarika" repo: "https://github.com/cyareka/hereafter" url: "https://marketplace.visualstudio.com/items?itemName=cyar-ika.hereafter" diff --git a/themes/hero-dark.yaml b/themes/hero-dark.yaml new file mode 100644 index 00000000..8c8e11ed --- /dev/null +++ b/themes/hero-dark.yaml @@ -0,0 +1,52 @@ +name: "Hero Dark" +source: + marketplace_id: "jhdcruz.hero-theme" + version: "1.1.1" + installs: 14 + rating: 0 + ratings: 0 + author: "Joshua Hero" + repo: "https://github.com/jhdcruz/hero-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jhdcruz.hero-theme" +colors: + bg: "#151515" + fg: "#D1D1D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 77.9 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/heroku-contrast.yaml b/themes/heroku-contrast.yaml index 8fdf8354..df4a3d95 100644 --- a/themes/heroku-contrast.yaml +++ b/themes/heroku-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/heroku-light.yaml b/themes/heroku-light.yaml index 406259fd..15c27215 100644 --- a/themes/heroku-light.yaml +++ b/themes/heroku-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/heroku.yaml b/themes/heroku.yaml index 359eca04..daeb4afd 100644 --- a/themes/heroku.yaml +++ b/themes/heroku.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/herzha-dark.yaml b/themes/herzha-dark.yaml index 6c88137f..6f0d45d2 100644 --- a/themes/herzha-dark.yaml +++ b/themes/herzha-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "madhanmaaz.vscode-herzha-theme" version: "0.0.1" installs: 18 + rating: 0 + ratings: 0 author: "madhanmaaz" repo: "https://github.com/madhanmaaz/herzha-theme" url: "https://marketplace.visualstudio.com/items?itemName=madhanmaaz.vscode-herzha-theme" diff --git a/themes/herzha-flux.yaml b/themes/herzha-flux.yaml index f70e2d2a..28719397 100644 --- a/themes/herzha-flux.yaml +++ b/themes/herzha-flux.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "madhanmaaz.vscode-herzha-theme" version: "0.0.1" installs: 18 + rating: 0 + ratings: 0 author: "madhanmaaz" repo: "https://github.com/madhanmaaz/herzha-theme" url: "https://marketplace.visualstudio.com/items?itemName=madhanmaaz.vscode-herzha-theme" diff --git a/themes/herzha-vanta.yaml b/themes/herzha-vanta.yaml index 33e477f9..718dc9a4 100644 --- a/themes/herzha-vanta.yaml +++ b/themes/herzha-vanta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "madhanmaaz.vscode-herzha-theme" version: "0.0.1" installs: 18 + rating: 0 + ratings: 0 author: "madhanmaaz" repo: "https://github.com/madhanmaaz/herzha-theme" url: "https://marketplace.visualstudio.com/items?itemName=madhanmaaz.vscode-herzha-theme" diff --git a/themes/hfa-theme.yaml b/themes/hfa-theme.yaml index 4bd53c9c..9d8f9e0f 100644 --- a/themes/hfa-theme.yaml +++ b/themes/hfa-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HFA-NYC.hani-dark-pro" version: "0.0.1" installs: 42 + rating: 5 + ratings: 1 author: "HFA-NYC" repo: "https://github.com/hfa-ny/vscode-theme-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=HFA-NYC.hani-dark-pro" diff --git a/themes/hhp1614.yaml b/themes/hhp1614.yaml index 6d4279e3..c305a749 100644 --- a/themes/hhp1614.yaml +++ b/themes/hhp1614.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hhp1614.green-soft-theme" version: "0.0.4" installs: 1740 + rating: 4 + ratings: 1 author: "hhp1614" repo: "https://github.com/hhp1614/vscode-green-soft-theme" url: "https://marketplace.visualstudio.com/items?itemName=hhp1614.green-soft-theme" diff --git a/themes/hi-dark.yaml b/themes/hi-dark.yaml index fa426d52..9777365d 100644 --- a/themes/hi-dark.yaml +++ b/themes/hi-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jiakun-zhao.vscode-theme-hi" version: "0.0.17" installs: 275 + rating: 5 + ratings: 1 author: "Jiakun Zhao" repo: "https://github.com/jiakun-zhao/vscode-theme-hi" url: "https://marketplace.visualstudio.com/items?itemName=jiakun-zhao.vscode-theme-hi" diff --git a/themes/hi-light.yaml b/themes/hi-light.yaml index af1291a7..dca648ed 100644 --- a/themes/hi-light.yaml +++ b/themes/hi-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jiakun-zhao.vscode-theme-hi" version: "0.0.17" installs: 275 + rating: 5 + ratings: 1 author: "Jiakun Zhao" repo: "https://github.com/jiakun-zhao/vscode-theme-hi" url: "https://marketplace.visualstudio.com/items?itemName=jiakun-zhao.vscode-theme-hi" diff --git a/themes/hibiscus.yaml b/themes/hibiscus.yaml index 2ae072fa..e211bc59 100644 --- a/themes/hibiscus.yaml +++ b/themes/hibiscus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sarfaraz.Bahej" version: "1.0.1" installs: 102 + rating: 0 + ratings: 0 author: "Sarfaraz" repo: "https://github.com/Muhammad-Sarfaraz/Bahej" url: "https://marketplace.visualstudio.com/items?itemName=Sarfaraz.Bahej" diff --git a/themes/high-alert-crimson.yaml b/themes/high-alert-crimson.yaml new file mode 100644 index 00000000..65a0dfa7 --- /dev/null +++ b/themes/high-alert-crimson.yaml @@ -0,0 +1,52 @@ +name: "High-Alert-Crimson" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#070A0D" + fg: "#FAFAFA" + black: "#070A0D" + red: "#410101" + green: "#29C3A0" + yellow: "#D29922" + blue: "#F23D2C" + magenta: "#F23D2C" + cyan: "#29C3A0" + white: "#FAFAFA" + brightBlack: "#070A0D" + brightRed: "#410101" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#F23D2C" + brightMagenta: "#F23D2C" + brightCyan: "#29C3A0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.4 + black: 0 + red: 0 + green: 58.5 + yellow: 52.6 + blue: 37.3 + magenta: 37.3 + cyan: 58.5 + white: 104.4 + brightBlack: 0 + brightRed: 0 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 37.3 + brightMagenta: 37.3 + brightCyan: 58.5 + brightWhite: 104.4 diff --git a/themes/high-contrast-april-light-theme.yaml b/themes/high-contrast-april-light-theme.yaml index 92b69b6b..93ee71da 100644 --- a/themes/high-contrast-april-light-theme.yaml +++ b/themes/high-contrast-april-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/high-contrast-april-theme.yaml b/themes/high-contrast-april-theme.yaml index b8bd896f..446e34ff 100644 --- a/themes/high-contrast-april-theme.yaml +++ b/themes/high-contrast-april-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/high-contrast-august-light-theme.yaml b/themes/high-contrast-august-light-theme.yaml index fa5d3c6e..5630cd23 100644 --- a/themes/high-contrast-august-light-theme.yaml +++ b/themes/high-contrast-august-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/high-contrast-february-dark-theme.yaml b/themes/high-contrast-february-dark-theme.yaml index 0f24f02d..3ec0e38b 100644 --- a/themes/high-contrast-february-dark-theme.yaml +++ b/themes/high-contrast-february-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/high-contrast-february-light-theme-accessible.yaml b/themes/high-contrast-february-light-theme-accessible.yaml index 08ec5de7..f5870a9d 100644 --- a/themes/high-contrast-february-light-theme-accessible.yaml +++ b/themes/high-contrast-february-light-theme-accessible.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/high-contrast-february-theme-accessible.yaml b/themes/high-contrast-february-theme-accessible.yaml index bd67eb03..b46f5aa0 100644 --- a/themes/high-contrast-february-theme-accessible.yaml +++ b/themes/high-contrast-february-theme-accessible.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/high-contrast-july-light-theme.yaml b/themes/high-contrast-july-light-theme.yaml index 06743261..c6a5863c 100644 --- a/themes/high-contrast-july-light-theme.yaml +++ b/themes/high-contrast-july-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/high-contrast-june-light-theme.yaml b/themes/high-contrast-june-light-theme.yaml index e88d52a0..8d901aca 100644 --- a/themes/high-contrast-june-light-theme.yaml +++ b/themes/high-contrast-june-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/high-contrast-march-dark-theme-accessible.yaml b/themes/high-contrast-march-dark-theme-accessible.yaml index e034ff21..869a9041 100644 --- a/themes/high-contrast-march-dark-theme-accessible.yaml +++ b/themes/high-contrast-march-dark-theme-accessible.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/high-contrast-march-dark-theme.yaml b/themes/high-contrast-march-dark-theme.yaml index bd53ab21..48b59b59 100644 --- a/themes/high-contrast-march-dark-theme.yaml +++ b/themes/high-contrast-march-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/high-contrast-march-light-theme-accessible.yaml b/themes/high-contrast-march-light-theme-accessible.yaml index fb7bbfbe..a172aa20 100644 --- a/themes/high-contrast-march-light-theme-accessible.yaml +++ b/themes/high-contrast-march-light-theme-accessible.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/high-contrast-march-theme-accessible.yaml b/themes/high-contrast-march-theme-accessible.yaml index 968ce498..a27b39c0 100644 --- a/themes/high-contrast-march-theme-accessible.yaml +++ b/themes/high-contrast-march-theme-accessible.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/high-contrast-may-light-theme.yaml b/themes/high-contrast-may-light-theme.yaml index b22c5664..9014c910 100644 --- a/themes/high-contrast-may-light-theme.yaml +++ b/themes/high-contrast-may-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/high-contrast-september-light-theme.yaml b/themes/high-contrast-september-light-theme.yaml index a41ea626..f633ef07 100644 --- a/themes/high-contrast-september-light-theme.yaml +++ b/themes/high-contrast-september-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/high-contrast-sunset.yaml b/themes/high-contrast-sunset.yaml index 91b576be..bb145d13 100644 --- a/themes/high-contrast-sunset.yaml +++ b/themes/high-contrast-sunset.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "krishnakumarmehta.high-contrast-sunset" version: "1.0.2" installs: 10 + rating: 0 + ratings: 0 author: "Krishna Kumar Mehta" repo: null url: "https://marketplace.visualstudio.com/items?itemName=krishnakumarmehta.high-contrast-sunset" diff --git a/themes/high-tea.yaml b/themes/high-tea.yaml index 14e41748..6193d136 100644 --- a/themes/high-tea.yaml +++ b/themes/high-tea.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rachael.rachaels-themes" version: "0.0.2" installs: 1170 + rating: 0 + ratings: 0 author: "Rachael" repo: "https://github.com/rbouissey/rachaelsthemes" url: "https://marketplace.visualstudio.com/items?itemName=Rachael.rachaels-themes" diff --git a/themes/highflyer.yaml b/themes/highflyer.yaml index 2a860567..1e5e9147 100644 --- a/themes/highflyer.yaml +++ b/themes/highflyer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "highflyer910.highflyer" version: "0.0.1" installs: 121 + rating: 5 + ratings: 1 author: "highflyer910" repo: "https://github.com/highflyer910/highflyer_vscode_theme" url: "https://marketplace.visualstudio.com/items?itemName=highflyer910.highflyer" diff --git a/themes/highgruv.yaml b/themes/highgruv.yaml index 11d3fae5..bd5ea187 100644 --- a/themes/highgruv.yaml +++ b/themes/highgruv.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bullptr.highgruv" version: "1.0.1" installs: 48 + rating: 5 + ratings: 1 author: "bullptr" repo: "https://github.com/bullptr/highgruv" url: "https://marketplace.visualstudio.com/items?itemName=bullptr.highgruv" diff --git a/themes/highland-winter.yaml b/themes/highland-winter.yaml index 683038c0..5f6f8f55 100644 --- a/themes/highland-winter.yaml +++ b/themes/highland-winter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "merithayan.highland-winter" version: "0.0.6" installs: 1493 + rating: 5 + ratings: 1 author: "Tim Hull" repo: "https://www.github.com/mtyn/highland-winter" url: "https://marketplace.visualstudio.com/items?itemName=merithayan.highland-winter" diff --git a/themes/himalaya-dark.yaml b/themes/himalaya-dark.yaml index 55337dee..1b1f9b20 100644 --- a/themes/himalaya-dark.yaml +++ b/themes/himalaya-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leonardomartelli.himalaya-theme" version: "0.0.2" installs: 446 + rating: 5 + ratings: 1 author: "Leonardo Martelli Oliveira" repo: "https://github.com/leonardomartelli/himalaya-theme" url: "https://marketplace.visualstudio.com/items?itemName=leonardomartelli.himalaya-theme" diff --git a/themes/hinode.yaml b/themes/hinode.yaml index 5f995036..9e52d0d5 100644 --- a/themes/hinode.yaml +++ b/themes/hinode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aimof.hinode" version: "0.0.7" installs: 242 + rating: 5 + ratings: 1 author: "aimof" repo: "https://github.com/aimof/hinode" url: "https://marketplace.visualstudio.com/items?itemName=aimof.hinode" diff --git a/themes/hirakata.yaml b/themes/hirakata.yaml new file mode 100644 index 00000000..268b23c8 --- /dev/null +++ b/themes/hirakata.yaml @@ -0,0 +1,52 @@ +name: "Hirakata" +source: + marketplace_id: "wisdom.hirakata" + version: "0.1.0" + installs: 16 + rating: 0 + ratings: 0 + author: "wisdom" + repo: "https://github.com/wisdom-plus/vscode-theme-hirakata" + url: "https://marketplace.visualstudio.com/items?itemName=wisdom.hirakata" +colors: + bg: "#2F3542" + fg: "#BDC2CC" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#5E81AC" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E4E9F1" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#5E81AC" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#E4E9F1" +meta: + mode: "dark" + accent: "orange" + hue: 266 + pair: null + contrast: + fg: 63.2 + black: 0 + red: 27.6 + green: 56.3 + yellow: 71 + blue: 27.8 + magenta: 41.1 + cyan: 57.3 + white: 86.9 + brightBlack: 10 + brightRed: 27.6 + brightGreen: 56.3 + brightYellow: 71 + brightBlue: 27.8 + brightMagenta: 41.1 + brightCyan: 57.3 + brightWhite: 86.9 diff --git a/themes/hive-contrast.yaml b/themes/hive-contrast.yaml index e21be091..f8ac792a 100644 --- a/themes/hive-contrast.yaml +++ b/themes/hive-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/hive-light.yaml b/themes/hive-light.yaml index 4ca57f37..64ab725f 100644 --- a/themes/hive-light.yaml +++ b/themes/hive-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/hive.yaml b/themes/hive.yaml index f1ad1fca..be09f8aa 100644 --- a/themes/hive.yaml +++ b/themes/hive.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/hobbyist-goth.yaml b/themes/hobbyist-goth.yaml index 485819f5..7045cfa8 100644 --- a/themes/hobbyist-goth.yaml +++ b/themes/hobbyist-goth.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "timmyha.hobbyist-goth" version: "0.0.3" installs: 1577 + rating: 0 + ratings: 0 author: "timhansher" repo: "https://github.com/timmyha/hobbyist-goth" url: "https://marketplace.visualstudio.com/items?itemName=timmyha.hobbyist-goth" diff --git a/themes/hoccacas.yaml b/themes/hoccacas.yaml index 7cf48141..98084046 100644 --- a/themes/hoccacas.yaml +++ b/themes/hoccacas.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ThiagoAndreazza.hoccacas" version: "0.3.6" installs: 262 + rating: 5 + ratings: 1 author: "Thiago Andreazza" repo: "https://github.com/olathiago/hoccacas" url: "https://marketplace.visualstudio.com/items?itemName=ThiagoAndreazza.hoccacas" diff --git a/themes/hocsinhnghiemtuc.yaml b/themes/hocsinhnghiemtuc.yaml index 5561c0b9..59d69511 100644 --- a/themes/hocsinhnghiemtuc.yaml +++ b/themes/hocsinhnghiemtuc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hocsinhnghiemtuc.intellij-light-flutter" version: "0.0.2" installs: 2010 + rating: 0 + ratings: 0 author: "Hoang Trung Hieu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=hocsinhnghiemtuc.intellij-light-flutter" diff --git a/themes/holdesher-dark.yaml b/themes/holdesher-dark.yaml index b3708742..900f4f25 100644 --- a/themes/holdesher-dark.yaml +++ b/themes/holdesher-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kah3vich.holdesher" version: "0.0.20" installs: 10333 + rating: 0 + ratings: 0 author: "Nik Zolkin" repo: "https://github.com/Holdesher/theme" url: "https://marketplace.visualstudio.com/items?itemName=kah3vich.holdesher" diff --git a/themes/holo-s-wisdom-spice-and-wolf-theme.yaml b/themes/holo-s-wisdom-spice-and-wolf-theme.yaml new file mode 100644 index 00000000..5c8f8693 --- /dev/null +++ b/themes/holo-s-wisdom-spice-and-wolf-theme.yaml @@ -0,0 +1,52 @@ +name: "Holo's Wisdom - Spice and Wolf Theme" +source: + marketplace_id: "yeshuarey.holos-wisdom-spice-and-wolf" + version: "1.1.8" + installs: 9 + rating: 0 + ratings: 0 + author: "yeshua_rey" + repo: "https://github.com/yeshuarey/HoloTheme" + url: "https://marketplace.visualstudio.com/items?itemName=yeshuarey.holos-wisdom-spice-and-wolf" +colors: + bg: "#1A0F08" + fg: "#D9CFC4" + black: "#1A0F08" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#7D6B5D" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D9CFC4" + brightBlack: "#7D6B5D" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#F5F5DC" +meta: + mode: "dark" + accent: "pink" + hue: 54 + pair: null + contrast: + fg: 77.8 + black: 0 + red: 27.2 + green: 53.4 + yellow: 86.1 + blue: 26.1 + magenta: 30.2 + cyan: 48 + white: 77.8 + brightBlack: 26.1 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 99.6 diff --git a/themes/hologram-night.yaml b/themes/hologram-night.yaml new file mode 100644 index 00000000..47cf3042 --- /dev/null +++ b/themes/hologram-night.yaml @@ -0,0 +1,52 @@ +name: "Hologram Night" +source: + marketplace_id: "orcheink.hologram-night-theme" + version: "0.0.1" + installs: 38 + rating: 0 + ratings: 0 + author: "orcheink" + repo: "https://github.com/OrcheInk/vscode-theme-hologram-night" + url: "https://marketplace.visualstudio.com/items?itemName=orcheink.hologram-night-theme" +colors: + bg: "#1C1E27" + fg: "#D8DEE9" + black: "#3B4052" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#6A737D" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#D8DEE9" +meta: + mode: "dark" + accent: "pink" + hue: 275 + pair: null + contrast: + fg: 84.5 + black: 0 + red: 41.2 + green: 61.4 + yellow: 69.7 + blue: 53.8 + magenta: 44.3 + cyan: 53.7 + white: 58.5 + brightBlack: 26.4 + brightRed: 41.2 + brightGreen: 61.4 + brightYellow: 69.7 + brightBlue: 53.8 + brightMagenta: 44.3 + brightCyan: 53.7 + brightWhite: 84.5 diff --git a/themes/holy-bible.yaml b/themes/holy-bible.yaml index 8599b114..ecf4d8ed 100644 --- a/themes/holy-bible.yaml +++ b/themes/holy-bible.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KynardCorp.my-custom-theme" version: "0.0.11" installs: 57 + rating: 0 + ratings: 0 author: "KynardCorp" repo: null url: "https://marketplace.visualstudio.com/items?itemName=KynardCorp.my-custom-theme" diff --git a/themes/homebrew.yaml b/themes/homebrew.yaml index 85c2100d..82b3a12f 100644 --- a/themes/homebrew.yaml +++ b/themes/homebrew.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/homecooked-theme.yaml b/themes/homecooked-theme.yaml index b1795f11..61c130a2 100644 --- a/themes/homecooked-theme.yaml +++ b/themes/homecooked-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MohammedAmaan.homecooked" version: "2.0.1" installs: 224 + rating: 5 + ratings: 1 author: "Mohammed Amaan" repo: "https://github.com/amaanmohd047/homecooked-theme" url: "https://marketplace.visualstudio.com/items?itemName=MohammedAmaan.homecooked" diff --git a/themes/homer.yaml b/themes/homer.yaml index f344848a..dc5d1100 100644 --- a/themes/homer.yaml +++ b/themes/homer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dustinsanders.homer-theme-vscode" version: "1.0.0" installs: 736 + rating: 0 + ratings: 0 author: "Dustin Sanders" repo: "https://github.com/dustinsanders/homer-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dustinsanders.homer-theme-vscode" diff --git a/themes/homey.yaml b/themes/homey.yaml index 718aa04c..f5d1c397 100644 --- a/themes/homey.yaml +++ b/themes/homey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kepler0.homey-theme" version: "0.0.1" installs: 2507 + rating: 5 + ratings: 1 author: "kepler0" repo: "https://github.com/notAlaanor/homey-theme" url: "https://marketplace.visualstudio.com/items?itemName=kepler0.homey-theme" diff --git a/themes/honeycode.yaml b/themes/honeycode.yaml index 5f9f6e70..f103a3a1 100644 --- a/themes/honeycode.yaml +++ b/themes/honeycode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yubiDev.yoobdev" version: "0.0.7" installs: 195 + rating: 0 + ratings: 0 author: "yoobdev" repo: "https://github.com/kimkom369/VSCode-Theme-Pack" url: "https://marketplace.visualstudio.com/items?itemName=yubiDev.yoobdev" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: 81 + pair: null contrast: fg: 59.4 black: 66.4 diff --git a/themes/honkai-star-rail-aventurine-dark.yaml b/themes/honkai-star-rail-aventurine-dark.yaml index c27bd9cb..4197534a 100644 --- a/themes/honkai-star-rail-aventurine-dark.yaml +++ b/themes/honkai-star-rail-aventurine-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-aventurine.yaml b/themes/honkai-star-rail-aventurine.yaml index 1b631493..3c665c7d 100644 --- a/themes/honkai-star-rail-aventurine.yaml +++ b/themes/honkai-star-rail-aventurine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-cyrene-dark.yaml b/themes/honkai-star-rail-cyrene-dark.yaml index c0ba89d0..4b1c3b8e 100644 --- a/themes/honkai-star-rail-cyrene-dark.yaml +++ b/themes/honkai-star-rail-cyrene-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-cyrene.yaml b/themes/honkai-star-rail-cyrene.yaml index c1fc4856..84246351 100644 --- a/themes/honkai-star-rail-cyrene.yaml +++ b/themes/honkai-star-rail-cyrene.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-dan-heng-dark.yaml b/themes/honkai-star-rail-dan-heng-dark.yaml index 26e8f545..54d1097b 100644 --- a/themes/honkai-star-rail-dan-heng-dark.yaml +++ b/themes/honkai-star-rail-dan-heng-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-dan-heng.yaml b/themes/honkai-star-rail-dan-heng.yaml index 30ca2f46..1fd020a3 100644 --- a/themes/honkai-star-rail-dan-heng.yaml +++ b/themes/honkai-star-rail-dan-heng.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-firefly-dark.yaml b/themes/honkai-star-rail-firefly-dark.yaml index 07c173a6..57574939 100644 --- a/themes/honkai-star-rail-firefly-dark.yaml +++ b/themes/honkai-star-rail-firefly-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-firefly.yaml b/themes/honkai-star-rail-firefly.yaml index ad577906..0332c73d 100644 --- a/themes/honkai-star-rail-firefly.yaml +++ b/themes/honkai-star-rail-firefly.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-kafka-dark.yaml b/themes/honkai-star-rail-kafka-dark.yaml index be96d34b..1dd3f1f7 100644 --- a/themes/honkai-star-rail-kafka-dark.yaml +++ b/themes/honkai-star-rail-kafka-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-kafka.yaml b/themes/honkai-star-rail-kafka.yaml index 938de3f1..e344b7b2 100644 --- a/themes/honkai-star-rail-kafka.yaml +++ b/themes/honkai-star-rail-kafka.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-march-7th-dark.yaml b/themes/honkai-star-rail-march-7th-dark.yaml index 0f6f85e0..1200daf3 100644 --- a/themes/honkai-star-rail-march-7th-dark.yaml +++ b/themes/honkai-star-rail-march-7th-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-march-7th.yaml b/themes/honkai-star-rail-march-7th.yaml index abcfdb0f..4527a4fd 100644 --- a/themes/honkai-star-rail-march-7th.yaml +++ b/themes/honkai-star-rail-march-7th.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-robin-dark.yaml b/themes/honkai-star-rail-robin-dark.yaml index 6276abb1..c6de1abb 100644 --- a/themes/honkai-star-rail-robin-dark.yaml +++ b/themes/honkai-star-rail-robin-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-robin-light-soft.yaml b/themes/honkai-star-rail-robin-light-soft.yaml index 6be3ca65..7050825b 100644 --- a/themes/honkai-star-rail-robin-light-soft.yaml +++ b/themes/honkai-star-rail-robin-light-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-ruan-mei-dark.yaml b/themes/honkai-star-rail-ruan-mei-dark.yaml index fc412fea..91d11925 100644 --- a/themes/honkai-star-rail-ruan-mei-dark.yaml +++ b/themes/honkai-star-rail-ruan-mei-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/honkai-star-rail-ruan-mei.yaml b/themes/honkai-star-rail-ruan-mei.yaml index aee8347a..d0f9d83b 100644 --- a/themes/honkai-star-rail-ruan-mei.yaml +++ b/themes/honkai-star-rail-ruan-mei.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "horizon-core.horizon-theme" version: "3.6.1" installs: 79 + rating: 5 + ratings: 1 author: "Horizon" repo: "https://github.com/Abdelrahman968/horizon-theme" url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" diff --git a/themes/horimura.yaml b/themes/horimura.yaml new file mode 100644 index 00000000..7967c929 --- /dev/null +++ b/themes/horimura.yaml @@ -0,0 +1,52 @@ +name: "Horimura" +source: + marketplace_id: "pra1rie.horimura" + version: "0.0.2" + installs: 93 + rating: 0 + ratings: 0 + author: "Rumi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=pra1rie.horimura" +colors: + bg: "#242430" + fg: "#FAFAFA" + black: "#000000" + red: "#FF8A78" + green: "#C0FBA0" + yellow: "#FFB48A" + blue: "#CCEEF6" + magenta: "#E0B4F0" + cyan: "#CCEEF6" + white: "#CCCCCC" + brightBlack: "#696969" + brightRed: "#FBA0C0" + brightGreen: "#C0FBA0" + brightYellow: "#FFB48A" + brightBlue: "#CCEEF6" + brightMagenta: "#E0B4F0" + brightCyan: "#CCEEF6" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 101.6 + black: 0 + red: 54.4 + green: 91.7 + yellow: 68.7 + blue: 90 + magenta: 67.7 + cyan: 90 + white: 72.7 + brightBlack: 21.4 + brightRed: 62.8 + brightGreen: 91.7 + brightYellow: 68.7 + brightBlue: 90 + brightMagenta: 67.7 + brightCyan: 90 + brightWhite: 101.6 diff --git a/themes/horizon-contrast.yaml b/themes/horizon-contrast.yaml index 17780e7a..e4968608 100644 --- a/themes/horizon-contrast.yaml +++ b/themes/horizon-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/horizon-extended.yaml b/themes/horizon-extended.yaml index 1adb8fca..f9fdd547 100644 --- a/themes/horizon-extended.yaml +++ b/themes/horizon-extended.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LanceWilhelm.horizon-extended" version: "1.1.1" installs: 25390 + rating: 4.8 + ratings: 10 author: "Lance Wilhelm" repo: "https://github.com/lancewilhelm/horizon-extended" url: "https://marketplace.visualstudio.com/items?itemName=LanceWilhelm.horizon-extended" diff --git a/themes/horizon-laker-theme.yaml b/themes/horizon-laker-theme.yaml index abd5cd56..e3a8d563 100644 --- a/themes/horizon-laker-theme.yaml +++ b/themes/horizon-laker-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "julienquennehen.horizon-laker-theme" version: "0.0.8" installs: 512 + rating: 0 + ratings: 0 author: "julienquennehen" repo: "https://github.com/JulienQNN/vscode-horizon-laker-theme" url: "https://marketplace.visualstudio.com/items?itemName=julienquennehen.horizon-laker-theme" diff --git a/themes/horizon-light.yaml b/themes/horizon-light.yaml index fa882038..0701e214 100644 --- a/themes/horizon-light.yaml +++ b/themes/horizon-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/horizon.yaml b/themes/horizon.yaml index 618adfae..765d0d0e 100644 --- a/themes/horizon.yaml +++ b/themes/horizon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/horizondark.yaml b/themes/horizondark.yaml index f07fc074..ad1e630e 100644 --- a/themes/horizondark.yaml +++ b/themes/horizondark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.horizon-dark" version: "0.0.2" installs: 1684 + rating: 0 + ratings: 0 author: "Avetis" repo: "https://github.com/AvetisDN/horizon-dark" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.horizon-dark" diff --git a/themes/horus.yaml b/themes/horus.yaml index 8cc7272c..8d5f4a29 100644 --- a/themes/horus.yaml +++ b/themes/horus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OnlyF0uR.horus" version: "1.1.0" installs: 148 + rating: 0 + ratings: 0 author: "OnlyF0uR" repo: "https://github.com/OnlyF0uR/horus" url: "https://marketplace.visualstudio.com/items?itemName=OnlyF0uR.horus" diff --git a/themes/hot-pink-theme.yaml b/themes/hot-pink-theme.yaml index c515c945..c92a861e 100644 --- a/themes/hot-pink-theme.yaml +++ b/themes/hot-pink-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevangTomar.vscode-diverse-dye" version: "1.3.0" installs: 2595 + rating: 5 + ratings: 3 author: "Devang Tomar ⭐" repo: "https://github.com/devangtomar/vscode-diverse-dye" url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" diff --git a/themes/house-of-the-dragon-team-greens.yaml b/themes/house-of-the-dragon-team-greens.yaml new file mode 100644 index 00000000..2d438047 --- /dev/null +++ b/themes/house-of-the-dragon-team-greens.yaml @@ -0,0 +1,52 @@ +name: "House of the Dragon: Team Greens" +source: + marketplace_id: "RamanMohammed.house-of-the-dragons-blacks-vs-greens" + version: "0.0.3" + installs: 362 + rating: 5 + ratings: 1 + author: "RamanMohammed" + repo: "https://github.com/RaymondSWE/vscode-theme-house-of-dragon" + url: "https://marketplace.visualstudio.com/items?itemName=RamanMohammed.house-of-the-dragons-blacks-vs-greens" +colors: + bg: "#0A0A0A" + fg: "#D1D1D1" + black: "#0A0A0A" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#D1D1D1" + brightBlack: "#4D4D4D" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92D0" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 78.5 + black: 0 + red: 44.3 + green: 85.7 + yellow: 99.4 + blue: 54.5 + magenta: 55.4 + cyan: 84.8 + white: 78.5 + brightBlack: 12.9 + brightRed: 49.7 + brightGreen: 89.9 + brightYellow: 104.4 + brightBlue: 67 + brightMagenta: 62.7 + brightCyan: 97.6 + brightWhite: 107.7 diff --git a/themes/houston.yaml b/themes/houston.yaml index 1d824745..d08b3a73 100644 --- a/themes/houston.yaml +++ b/themes/houston.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/hq-pink-blue.yaml b/themes/hq-pink-blue.yaml new file mode 100644 index 00000000..f3d0fcae --- /dev/null +++ b/themes/hq-pink-blue.yaml @@ -0,0 +1,50 @@ +name: "HQ_PINK+BLUE" +source: + marketplace_id: "djbohl.hq-pink-blue" + version: "0.0.2" + installs: 21 + author: "djbohl" + repo: "https://github.com/djbohl/hq-pink-blu-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=djbohl.hq-pink-blue" +colors: + bg: "#1D1D1D" + fg: "#FFFAFE" + black: "#000000" + red: "#E53935" + green: "#43A047" + yellow: "#FFEB3B" + blue: "#1E88E5" + magenta: "#8E24AA" + cyan: "#00ACC1" + white: "#DEDEDE" + brightBlack: "#666666" + brightRed: "#E57373" + brightGreen: "#81C784" + brightYellow: "#FFF176" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#00BCD4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.8 + black: 0 + red: 32.3 + green: 39.9 + yellow: 91.7 + blue: 36.2 + magenta: 17.1 + cyan: 47.9 + white: 84.9 + brightBlack: 21.3 + brightRed: 44 + brightGreen: 61.7 + brightYellow: 95.1 + brightBlue: 57.1 + brightMagenta: 37.2 + brightCyan: 55.8 + brightWhite: 106.2 diff --git a/themes/htvodp.yaml b/themes/htvodp.yaml index 2d54c50b..b68fbcb9 100644 --- a/themes/htvodp.yaml +++ b/themes/htvodp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MaouShimazu.hackthevividonedarkpro" version: "0.0.1" installs: 1278 + rating: 0 + ratings: 0 author: "Maou Shimazu" repo: "https://github.com/Maou-Shimazu/HTVODP" url: "https://marketplace.visualstudio.com/items?itemName=MaouShimazu.hackthevividonedarkpro" diff --git a/themes/huacat-pink-dark.yaml b/themes/huacat-pink-dark.yaml index c425288e..1fbd37b8 100644 --- a/themes/huacat-pink-dark.yaml +++ b/themes/huacat-pink-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "huacat.pink-theme" version: "1.1.2" installs: 71499 + rating: 5 + ratings: 12 author: "huacat" repo: "https://github.com/huacat1017/huacat.pink-theme" url: "https://marketplace.visualstudio.com/items?itemName=huacat.pink-theme" diff --git a/themes/hub-light.yaml b/themes/hub-light.yaml index 3c3f53e4..1e95b389 100644 --- a/themes/hub-light.yaml +++ b/themes/hub-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/hub.yaml b/themes/hub.yaml index e8bb3710..fb2d3f4f 100644 --- a/themes/hub.yaml +++ b/themes/hub.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/hugodvlp.yaml b/themes/hugodvlp.yaml index d3d41fd2..04594cea 100644 --- a/themes/hugodvlp.yaml +++ b/themes/hugodvlp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Hugodvlpr.hugodvlpr-theme" version: "0.3.0" installs: 2289 + rating: 5 + ratings: 1 author: "Hugo" repo: "https://github.com/hugos/hugodvlpr-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Hugodvlpr.hugodvlpr-theme" diff --git a/themes/hulcu.yaml b/themes/hulcu.yaml index e97d0356..5d2dd3c8 100644 --- a/themes/hulcu.yaml +++ b/themes/hulcu.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slobodan-zivanovic.hulcu" version: "1.0.0" installs: 77 + rating: 0 + ratings: 0 author: "Slobodan Živanović" repo: "https://github.com/slobodanzivanovic/hulcu.vscode" url: "https://marketplace.visualstudio.com/items?itemName=slobodan-zivanovic.hulcu" diff --git a/themes/hulky.yaml b/themes/hulky.yaml new file mode 100644 index 00000000..ced80139 --- /dev/null +++ b/themes/hulky.yaml @@ -0,0 +1,52 @@ +name: "Hulky" +source: + marketplace_id: "AkashK.Hulky" + version: "0.0.4" + installs: 208 + rating: 0 + ratings: 0 + author: "Akash K" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AkashK.Hulky" +colors: + bg: "#232323" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 105.3 + black: 0 + red: 25.1 + green: 51.4 + yellow: 84 + blue: 25.8 + magenta: 28.2 + cyan: 46 + white: 88.4 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/human-dark.yaml b/themes/human-dark.yaml index 91420aed..ba5875bd 100644 --- a/themes/human-dark.yaml +++ b/themes/human-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TomHall.human-theme" version: "1.1.1" installs: 95 + rating: 0 + ratings: 0 author: "Tom Hall" repo: "https://github.com/tom-f-hall/human-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" diff --git a/themes/human-high-contrast.yaml b/themes/human-high-contrast.yaml index 4da1dada..2fafa2e4 100644 --- a/themes/human-high-contrast.yaml +++ b/themes/human-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TomHall.human-theme" version: "1.1.1" installs: 95 + rating: 0 + ratings: 0 author: "Tom Hall" repo: "https://github.com/tom-f-hall/human-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" diff --git a/themes/human-light.yaml b/themes/human-light.yaml index ace23503..4f955963 100644 --- a/themes/human-light.yaml +++ b/themes/human-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TomHall.human-theme" version: "1.1.1" installs: 95 + rating: 0 + ratings: 0 author: "Tom Hall" repo: "https://github.com/tom-f-hall/human-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" diff --git a/themes/human-low-light.yaml b/themes/human-low-light.yaml index 02201ae6..93f4b5f0 100644 --- a/themes/human-low-light.yaml +++ b/themes/human-low-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TomHall.human-theme" version: "1.1.1" installs: 95 + rating: 0 + ratings: 0 author: "Tom Hall" repo: "https://github.com/tom-f-hall/human-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" diff --git a/themes/human-soft.yaml b/themes/human-soft.yaml index 90a8233a..abcaa5e8 100644 --- a/themes/human-soft.yaml +++ b/themes/human-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TomHall.human-theme" version: "1.1.1" installs: 95 + rating: 0 + ratings: 0 author: "Tom Hall" repo: "https://github.com/tom-f-hall/human-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" diff --git a/themes/human-warm.yaml b/themes/human-warm.yaml index 04a7fc3d..8f5fd1b5 100644 --- a/themes/human-warm.yaml +++ b/themes/human-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TomHall.human-theme" version: "1.1.1" installs: 95 + rating: 0 + ratings: 0 author: "Tom Hall" repo: "https://github.com/tom-f-hall/human-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" diff --git a/themes/human.yaml b/themes/human.yaml index 49038121..97d415e2 100644 --- a/themes/human.yaml +++ b/themes/human.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fielding.human-plus-plus" version: "1.5.0" installs: 18 + rating: 5 + ratings: 1 author: "fielding" repo: "https://github.com/fielding/human-plus-plus" url: "https://marketplace.visualstudio.com/items?itemName=fielding.human-plus-plus" diff --git a/themes/hundred-oceans.yaml b/themes/hundred-oceans.yaml index b9063356..0b250d83 100644 --- a/themes/hundred-oceans.yaml +++ b/themes/hundred-oceans.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MikeCluck.hundred-oceans-theme" version: "1.0.0" installs: 1430 + rating: 5 + ratings: 2 author: "Mike Cluck" repo: "https://github.com/MCluck90/vscode-hundred-oceans-theme" url: "https://marketplace.visualstudio.com/items?itemName=MikeCluck.hundred-oceans-theme" diff --git a/themes/hush-dark.yaml b/themes/hush-dark.yaml index eafc6ab6..c1f89832 100644 --- a/themes/hush-dark.yaml +++ b/themes/hush-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nobilissimum.hush-theme" version: "1.8.0" installs: 221 + rating: 5 + ratings: 1 author: "Nobilissimum" repo: "https://github.com/nobilissimum/hush-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nobilissimum.hush-theme" diff --git a/themes/hush-light.yaml b/themes/hush-light.yaml index 00549101..09149a0d 100644 --- a/themes/hush-light.yaml +++ b/themes/hush-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nobilissimum.hush-theme" version: "1.8.0" installs: 221 + rating: 5 + ratings: 1 author: "Nobilissimum" repo: "https://github.com/nobilissimum/hush-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nobilissimum.hush-theme" diff --git a/themes/hutaotheme.yaml b/themes/hutaotheme.yaml index fca78773..365d5697 100644 --- a/themes/hutaotheme.yaml +++ b/themes/hutaotheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "agomizi1cm.hutao-theme" version: "1.1.3" installs: 963 + rating: 0 + ratings: 0 author: "agomizi1cm" repo: "https://github.com/agomizi1cm/HuTaoTheme" url: "https://marketplace.visualstudio.com/items?itemName=agomizi1cm.hutao-theme" diff --git a/themes/hybrid-dim.yaml b/themes/hybrid-dim.yaml index acc35216..ad629de4 100644 --- a/themes/hybrid-dim.yaml +++ b/themes/hybrid-dim.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "meronz.hybrid-dim" version: "0.0.3" installs: 1551 + rating: 4 + ratings: 1 author: "meronz" repo: "https://github.com/meronz/hybrid-dim" url: "https://marketplace.visualstudio.com/items?itemName=meronz.hybrid-dim" diff --git a/themes/hybrid-next-gray-background.yaml b/themes/hybrid-next-gray-background.yaml index 55688520..0db171b2 100644 --- a/themes/hybrid-next-gray-background.yaml +++ b/themes/hybrid-next-gray-background.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wyze.theme-hybrid-next" version: "2.4.0" installs: 6849 + rating: 5 + ratings: 2 author: "Neil Kistner" repo: "https://github.com/wyze/vscode-hybrid-next" url: "https://marketplace.visualstudio.com/items?itemName=wyze.theme-hybrid-next" diff --git a/themes/hybrid-theme.yaml b/themes/hybrid-theme.yaml index 84815f69..cb9ed48f 100644 --- a/themes/hybrid-theme.yaml +++ b/themes/hybrid-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "black23eep.a-hybrid-theme" version: "0.9.9" installs: 151 + rating: 0 + ratings: 0 author: "black23eep" repo: null url: "https://marketplace.visualstudio.com/items?itemName=black23eep.a-hybrid-theme" diff --git a/themes/hydr-theme.yaml b/themes/hydr-theme.yaml index abb800f7..b9c98c4d 100644 --- a/themes/hydr-theme.yaml +++ b/themes/hydr-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hydr.hydr-theme" version: "2.0.5" installs: 2603 + rating: 5 + ratings: 3 author: "hydr" repo: null url: "https://marketplace.visualstudio.com/items?itemName=hydr.hydr-theme" diff --git a/themes/hydra-night.yaml b/themes/hydra-night.yaml index 4152e65c..2ca41c64 100644 --- a/themes/hydra-night.yaml +++ b/themes/hydra-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CupizeiroBR.Hydra-Theme" version: "1.0.0" installs: 705 + rating: 0 + ratings: 0 author: "Phoenix-141" repo: "https://github.com/Phoenix-141/Hydra-Theme" url: "https://marketplace.visualstudio.com/items?itemName=CupizeiroBR.Hydra-Theme" diff --git a/themes/hydra-storm.yaml b/themes/hydra-storm.yaml index d9287949..89349b8f 100644 --- a/themes/hydra-storm.yaml +++ b/themes/hydra-storm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CupizeiroBR.Hydra-Theme" version: "1.0.0" installs: 705 + rating: 0 + ratings: 0 author: "Phoenix-141" repo: "https://github.com/Phoenix-141/Hydra-Theme" url: "https://marketplace.visualstudio.com/items?itemName=CupizeiroBR.Hydra-Theme" diff --git a/themes/hydro-sea.yaml b/themes/hydro-sea.yaml new file mode 100644 index 00000000..82f2abe9 --- /dev/null +++ b/themes/hydro-sea.yaml @@ -0,0 +1,52 @@ +name: "Hydro Sea" +source: + marketplace_id: "Henriquehnnm.hydro-theme" + version: "1.0.8" + installs: 20 + rating: 0 + ratings: 0 + author: "Henrique" + repo: "https://github.com/Henriquehnnm/Hydro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.hydro-theme" +colors: + bg: "#020617" + fg: "#F8FAFC" + black: "#1C293D" + red: "#FF8585" + green: "#85FFAD" + yellow: "#FFBE85" + blue: "#85ADFF" + magenta: "#AD85FF" + cyan: "#85FFFF" + white: "#90A1B9" + brightBlack: "#90A1B9" + brightRed: "#FF8585" + brightGreen: "#85FFAD" + brightYellow: "#FFD9B3" + brightBlue: "#85ADFF" + brightMagenta: "#F585ED" + brightCyan: "#85FFFF" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "pink" + hue: 265 + pair: null + contrast: + fg: 104.3 + black: 0 + red: 56.1 + green: 92.1 + yellow: 75.2 + blue: 58.2 + magenta: 48.5 + cyan: 95.5 + white: 50.5 + brightBlack: 50.5 + brightRed: 56.1 + brightGreen: 92.1 + brightYellow: 87.5 + brightBlue: 58.2 + brightMagenta: 58.7 + brightCyan: 95.5 + brightWhite: 104.3 diff --git a/themes/hydro-soft.yaml b/themes/hydro-soft.yaml new file mode 100644 index 00000000..505f3551 --- /dev/null +++ b/themes/hydro-soft.yaml @@ -0,0 +1,52 @@ +name: "Hydro Soft" +source: + marketplace_id: "Henriquehnnm.hydro-theme" + version: "1.0.8" + installs: 20 + rating: 0 + ratings: 0 + author: "Henrique" + repo: "https://github.com/Henriquehnnm/Hydro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.hydro-theme" +colors: + bg: "#171717" + fg: "#FAFAFA" + black: "#262626" + red: "#FF8585" + green: "#85FFAD" + yellow: "#FFBE85" + blue: "#85ADFF" + magenta: "#AD85FF" + cyan: "#85FFFF" + white: "#D4D4D4" + brightBlack: "#A1A1A1" + brightRed: "#FF8585" + brightGreen: "#85FFAD" + brightYellow: "#FFD9B3" + brightBlue: "#85ADFF" + brightMagenta: "#F585ED" + brightCyan: "#85FFFF" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 103.6 + black: 0 + red: 55.2 + green: 91.2 + yellow: 74.3 + blue: 57.3 + magenta: 47.6 + cyan: 94.6 + white: 79.5 + brightBlack: 50.4 + brightRed: 55.2 + brightGreen: 91.2 + brightYellow: 86.6 + brightBlue: 57.3 + brightMagenta: 57.8 + brightCyan: 94.6 + brightWhite: 103.6 diff --git a/themes/hydro.yaml b/themes/hydro.yaml new file mode 100644 index 00000000..96aeec20 --- /dev/null +++ b/themes/hydro.yaml @@ -0,0 +1,52 @@ +name: "Hydro" +source: + marketplace_id: "Henriquehnnm.hydro-theme" + version: "1.0.8" + installs: 20 + rating: 0 + ratings: 0 + author: "Henrique" + repo: "https://github.com/Henriquehnnm/Hydro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.hydro-theme" +colors: + bg: "#0A0A0A" + fg: "#FAFAFA" + black: "#171717" + red: "#FF8585" + green: "#85FFAD" + yellow: "#FFBE85" + blue: "#85ADFF" + magenta: "#AD85FF" + cyan: "#85FFFF" + white: "#A1A1A1" + brightBlack: "#737373" + brightRed: "#FF8585" + brightGreen: "#85FFAD" + brightYellow: "#FFD9B3" + brightBlue: "#85ADFF" + brightMagenta: "#F585ED" + brightCyan: "#85FFFF" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 104.4 + black: 0 + red: 56.1 + green: 92.1 + yellow: 75.1 + blue: 58.2 + magenta: 48.4 + cyan: 95.4 + white: 51.2 + brightBlack: 28.6 + brightRed: 56.1 + brightGreen: 92.1 + brightYellow: 87.5 + brightBlue: 58.2 + brightMagenta: 58.7 + brightCyan: 95.4 + brightWhite: 104.4 diff --git a/themes/hygge-kyst-dark.yaml b/themes/hygge-kyst-dark.yaml new file mode 100644 index 00000000..dd1e2b17 --- /dev/null +++ b/themes/hygge-kyst-dark.yaml @@ -0,0 +1,50 @@ +name: "Hygge Kyst Dark" +source: + marketplace_id: "ostahl.hygge-kyst-dark" + version: "1.0.0" + installs: 26 + author: "Ole Stahl" + repo: "https://github.com/ostahl8/hygge-kyst" + url: "https://marketplace.visualstudio.com/items?itemName=ostahl.hygge-kyst-dark" +colors: + bg: "#191920" + fg: "#E0E0E8" + black: "#2A2A35" + red: "#F08080" + green: "#A8D8B8" + yellow: "#E8B080" + blue: "#9AC0D8" + magenta: "#DCB8D8" + cyan: "#98D8D0" + white: "#E0E0E8" + brightBlack: "#6A6A78" + brightRed: "#FFA0A0" + brightGreen: "#C0F0D0" + brightYellow: "#F8D0A0" + brightBlue: "#B8D8F0" + brightMagenta: "#F0D0F0" + brightCyan: "#B8F0E8" + brightWhite: "#F8F8FF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 87 + black: 0 + red: 50.4 + green: 74.9 + yellow: 64.6 + blue: 64.3 + magenta: 69 + cyan: 74.4 + white: 87 + brightBlack: 23.9 + brightRed: 64 + brightGreen: 89.6 + brightYellow: 80.8 + brightBlue: 79 + brightMagenta: 82.7 + brightCyan: 89.8 + brightWhite: 102.3 diff --git a/themes/hyle-color-theme.yaml b/themes/hyle-color-theme.yaml index 3b28294d..2bd79327 100644 --- a/themes/hyle-color-theme.yaml +++ b/themes/hyle-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kaosc.hyle" version: "0.4.2" installs: 190 + rating: 0 + ratings: 0 author: "Kaosc" repo: "https://github.com/Kaosc/Hyle" url: "https://marketplace.visualstudio.com/items?itemName=Kaosc.hyle" diff --git a/themes/hyle-night-night-color-theme.yaml b/themes/hyle-night-night-color-theme.yaml index 7e60324d..886c556d 100644 --- a/themes/hyle-night-night-color-theme.yaml +++ b/themes/hyle-night-night-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kaosc.hyle" version: "0.4.2" installs: 190 + rating: 0 + ratings: 0 author: "Kaosc" repo: "https://github.com/Kaosc/Hyle" url: "https://marketplace.visualstudio.com/items?itemName=Kaosc.hyle" diff --git a/themes/hyped-down-fork.yaml b/themes/hyped-down-fork.yaml index 74101855..30a15676 100644 --- a/themes/hyped-down-fork.yaml +++ b/themes/hyped-down-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" version: "9.0.1" installs: 29917 + rating: 4.6 + ratings: 10 author: "Hasibur R" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" diff --git a/themes/hyped-down-theme.yaml b/themes/hyped-down-theme.yaml index fffd8e31..476451e3 100644 --- a/themes/hyped-down-theme.yaml +++ b/themes/hyped-down-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevangTomar.vscode-diverse-dye" version: "1.3.0" installs: 2595 + rating: 5 + ratings: 3 author: "Devang Tomar ⭐" repo: "https://github.com/devangtomar/vscode-diverse-dye" url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" diff --git a/themes/hyper-ctrl-theme.yaml b/themes/hyper-ctrl-theme.yaml index 0ff18b15..9d0c8001 100644 --- a/themes/hyper-ctrl-theme.yaml +++ b/themes/hyper-ctrl-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bprabhus.hyper-ctrl-theme" version: "0.4.0" installs: 609 + rating: 0 + ratings: 0 author: "Bharath Prabhuswamy" repo: "https://github.com/bprabhus/hyper-ctrl-theme" url: "https://marketplace.visualstudio.com/items?itemName=bprabhus.hyper-ctrl-theme" diff --git a/themes/hyper.yaml b/themes/hyper.yaml index 30d2ae37..b0128cd8 100644 --- a/themes/hyper.yaml +++ b/themes/hyper.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jack-curtis.hyper" version: "1.3.0" installs: 1817 + rating: 0 + ratings: 0 author: "jack-curtis" repo: "https://github.com/Jack-Curtis/hyper-VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=jack-curtis.hyper" diff --git a/themes/hyperdark-theme.yaml b/themes/hyperdark-theme.yaml index 313d0938..e2064889 100644 --- a/themes/hyperdark-theme.yaml +++ b/themes/hyperdark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "voidfaithnull.hypedown-theme" version: "1.5.0" installs: 3361 + rating: 5 + ratings: 2 author: "wxgrzr" repo: "https://github.com/wgrzr/hypedown-theme" url: "https://marketplace.visualstudio.com/items?itemName=voidfaithnull.hypedown-theme" diff --git a/themes/hyperrail-theme-hyper-syntax-colors.yaml b/themes/hyperrail-theme-hyper-syntax-colors.yaml index 47e22e4e..50ae65a6 100644 --- a/themes/hyperrail-theme-hyper-syntax-colors.yaml +++ b/themes/hyperrail-theme-hyper-syntax-colors.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nikola-turudija.hyperrail-theme" version: "1.0.0" installs: 77 + rating: 0 + ratings: 0 author: "Nikola Turudija" repo: null url: "https://marketplace.visualstudio.com/items?itemName=nikola-turudija.hyperrail-theme" diff --git a/themes/hypersubatomic.yaml b/themes/hypersubatomic.yaml index 254d9ef8..be443204 100644 --- a/themes/hypersubatomic.yaml +++ b/themes/hypersubatomic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "neilpanchal.hypersubatomic" version: "0.1.5" installs: 6115 + rating: 5 + ratings: 2 author: "Neil Panchal" repo: "https://github.com/neilpanchal/hypersubatomic-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=neilpanchal.hypersubatomic" diff --git a/themes/hypervoxel.yaml b/themes/hypervoxel.yaml index 9771450c..59903c7f 100644 --- a/themes/hypervoxel.yaml +++ b/themes/hypervoxel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MohamedAfraz.hypervoxel" version: "1.6.3" installs: 141 + rating: 5 + ratings: 1 author: "Mohamed Afraz" repo: "https://github.com/MohamedAfraz/HyperVoxel" url: "https://marketplace.visualstudio.com/items?itemName=MohamedAfraz.hypervoxel" diff --git a/themes/hyprluna.yaml b/themes/hyprluna.yaml index 285f3336..f328ea35 100644 --- a/themes/hyprluna.yaml +++ b/themes/hyprluna.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HyprLuna.hyprluna-theme" version: "1.0.2" installs: 1279 + rating: 5 + ratings: 1 author: "HyprLuna" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HyprLuna.hyprluna-theme" diff --git a/themes/hyrule-contrast.yaml b/themes/hyrule-contrast.yaml index b5cc6382..e34ace86 100644 --- a/themes/hyrule-contrast.yaml +++ b/themes/hyrule-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/hyrule-light.yaml b/themes/hyrule-light.yaml index c3f175a1..abf97a94 100644 --- a/themes/hyrule-light.yaml +++ b/themes/hyrule-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/hyrule.yaml b/themes/hyrule.yaml index 2b90061f..401c2dea 100644 --- a/themes/hyrule.yaml +++ b/themes/hyrule.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/i-don-t-know.yaml b/themes/i-don-t-know.yaml index 46a43640..7c573d9a 100644 --- a/themes/i-don-t-know.yaml +++ b/themes/i-don-t-know.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Pixl02.i-dont-know" version: "1.0.2" installs: 114 + rating: 0 + ratings: 0 author: "Pixl02" repo: "https://github.com/farhankhalid-dev/idk-VsCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Pixl02.i-dont-know" diff --git a/themes/i-light-color-theme.yaml b/themes/i-light-color-theme.yaml new file mode 100644 index 00000000..44f41ed6 --- /dev/null +++ b/themes/i-light-color-theme.yaml @@ -0,0 +1,52 @@ +name: "i-light-color-theme" +source: + marketplace_id: "ctrlplusb.i-minimal-theme" + version: "1.1.5" + installs: 10233 + rating: 5 + ratings: 3 + author: "ctrlplusb" + repo: "https://github.com/ctrlplusb/i-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ctrlplusb.i-minimal-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#FF0032" + green: "#00FF68" + yellow: "#FFCA00" + blue: "#004BFF" + magenta: "#7D46FC" + cyan: "#00D2FF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0032" + brightGreen: "#00FF68" + brightYellow: "#FFCA00" + brightBlue: "#004BFF" + brightMagenta: "#7D46FC" + brightCyan: "#00D2FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 63.9 + green: 16.5 + yellow: 24.4 + blue: 78.9 + magenta: 74 + cyan: 32.7 + white: 0 + brightBlack: 106 + brightRed: 63.9 + brightGreen: 16.5 + brightYellow: 24.4 + brightBlue: 78.9 + brightMagenta: 74 + brightCyan: 32.7 + brightWhite: 0 diff --git a/themes/i-night-color-theme.yaml b/themes/i-night-color-theme.yaml new file mode 100644 index 00000000..7fe7b09d --- /dev/null +++ b/themes/i-night-color-theme.yaml @@ -0,0 +1,52 @@ +name: "i-night-color-theme" +source: + marketplace_id: "ctrlplusb.i-minimal-theme" + version: "1.1.5" + installs: 10233 + rating: 5 + ratings: 3 + author: "ctrlplusb" + repo: "https://github.com/ctrlplusb/i-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ctrlplusb.i-minimal-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#FF0032" + green: "#00FF68" + yellow: "#FFCA00" + blue: "#004BFF" + magenta: "#7D46FC" + cyan: "#00D2FF" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#FF0032" + brightGreen: "#00FF68" + brightYellow: "#FFCA00" + brightBlue: "#004BFF" + brightMagenta: "#7D46FC" + brightCyan: "#00D2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 107.9 + black: 107.9 + red: 37.7 + green: 87.2 + yellow: 78.8 + blue: 22.9 + magenta: 27.7 + cyan: 70 + white: 107.9 + brightBlack: 107.9 + brightRed: 37.7 + brightGreen: 87.2 + brightYellow: 78.8 + brightBlue: 22.9 + brightMagenta: 27.7 + brightCyan: 70 + brightWhite: 107.9 diff --git a/themes/i-solarised-color-theme.yaml b/themes/i-solarised-color-theme.yaml index d4138a4e..7bac1aef 100644 --- a/themes/i-solarised-color-theme.yaml +++ b/themes/i-solarised-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ctrlplusb.i-minimal-theme" version: "1.1.5" installs: 10233 + rating: 5 + ratings: 3 author: "ctrlplusb" repo: "https://github.com/ctrlplusb/i-theme" url: "https://marketplace.visualstudio.com/items?itemName=ctrlplusb.i-minimal-theme" diff --git a/themes/i3-dark-custom-ii.yaml b/themes/i3-dark-custom-ii.yaml new file mode 100644 index 00000000..8c96cc7f --- /dev/null +++ b/themes/i3-dark-custom-ii.yaml @@ -0,0 +1,52 @@ +name: "i3 - Dark+ - Custom II" +source: + marketplace_id: "i3acksp4ce.tokyo-night-default-dark" + version: "0.6.62" + installs: 6251 + rating: 5 + ratings: 2 + author: "i3acksp4ce" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" +colors: + bg: "#18191B" + fg: "#F3F3F4" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 98.8 + black: 12.3 + red: 51.9 + green: 51.4 + yellow: 51.5 + blue: 51.5 + magenta: 51.5 + cyan: 60.7 + white: 63.3 + brightBlack: 28.5 + brightRed: 64.1 + brightGreen: 64.7 + brightYellow: 64 + brightBlue: 64 + brightMagenta: 63.9 + brightCyan: 69.2 + brightWhite: 106.7 diff --git a/themes/i3-dark-github-dark.yaml b/themes/i3-dark-github-dark.yaml new file mode 100644 index 00000000..3631135e --- /dev/null +++ b/themes/i3-dark-github-dark.yaml @@ -0,0 +1,52 @@ +name: "i3 - Dark+ - Github Dark" +source: + marketplace_id: "i3acksp4ce.tokyo-night-default-dark" + version: "0.6.62" + installs: 6251 + rating: 5 + ratings: 2 + author: "i3acksp4ce" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" +colors: + bg: "#0D1117" + fg: "#E6EDF3" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 258 + pair: null + contrast: + fg: 95 + black: 13.1 + red: 52.6 + green: 52.1 + yellow: 52.2 + blue: 52.2 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 29.3 + brightRed: 64.8 + brightGreen: 65.5 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 107.4 diff --git a/themes/i3-panda-custom-iii.yaml b/themes/i3-panda-custom-iii.yaml new file mode 100644 index 00000000..1f7cd93a --- /dev/null +++ b/themes/i3-panda-custom-iii.yaml @@ -0,0 +1,52 @@ +name: "i3 - Panda - Custom III" +source: + marketplace_id: "i3acksp4ce.tokyo-night-default-dark" + version: "0.6.62" + installs: 6251 + rating: 5 + ratings: 2 + author: "i3acksp4ce" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" +colors: + bg: "#011627" + fg: "#F1F2F3" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 244 + pair: null + contrast: + fg: 98.3 + black: 12.6 + red: 52.2 + green: 51.7 + yellow: 51.8 + blue: 51.8 + magenta: 51.8 + cyan: 61 + white: 63.6 + brightBlack: 28.8 + brightRed: 64.4 + brightGreen: 65 + brightYellow: 64.3 + brightBlue: 64.3 + brightMagenta: 64.2 + brightCyan: 69.5 + brightWhite: 107 diff --git a/themes/i3-panda-custom.yaml b/themes/i3-panda-custom.yaml new file mode 100644 index 00000000..20e83917 --- /dev/null +++ b/themes/i3-panda-custom.yaml @@ -0,0 +1,52 @@ +name: "i3 - Panda - Custom" +source: + marketplace_id: "i3acksp4ce.tokyo-night-default-dark" + version: "0.6.62" + installs: 6251 + rating: 5 + ratings: 2 + author: "i3acksp4ce" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" +colors: + bg: "#141C24" + fg: "#F0F4F7" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 249 + pair: null + contrast: + fg: 98.7 + black: 12.1 + red: 51.6 + green: 51.1 + yellow: 51.2 + blue: 51.2 + magenta: 51.2 + cyan: 60.4 + white: 63 + brightBlack: 28.3 + brightRed: 63.8 + brightGreen: 64.5 + brightYellow: 63.7 + brightBlue: 63.7 + brightMagenta: 63.6 + brightCyan: 68.9 + brightWhite: 106.4 diff --git a/themes/ian.yaml b/themes/ian.yaml index 6ba27c11..5155fae4 100644 --- a/themes/ian.yaml +++ b/themes/ian.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iansergio.Dark-theme-ian" version: "0.0.1" installs: 76 + rating: 0 + ratings: 0 author: "Ian Sergio H." repo: null url: "https://marketplace.visualstudio.com/items?itemName=iansergio.Dark-theme-ian" diff --git a/themes/ibm-carbon-gray-10.yaml b/themes/ibm-carbon-gray-10.yaml new file mode 100644 index 00000000..40574c0f --- /dev/null +++ b/themes/ibm-carbon-gray-10.yaml @@ -0,0 +1,52 @@ +name: "IBM Carbon Gray 10" +source: + marketplace_id: "achkasov.ibm-carbon-design-system-theme" + version: "1.1.0" + installs: 675 + rating: 0 + ratings: 0 + author: "achkasov" + repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" +colors: + bg: "#F4F4F4" + fg: "#161616" + black: "#525252" + red: "#DA1E28" + green: "#24A148" + yellow: "#FF832B" + blue: "#4589FF" + magenta: "#A56EFF" + cyan: "#009D9A" + white: "#FFFFFF" + brightBlack: "#525252" + brightRed: "#F14C4C" + brightGreen: "#A7F0BA" + brightYellow: "#F1C21B" + brightBlue: "#D0E2FF" + brightMagenta: "#E8DAFF" + brightCyan: "#9EF0F0" + brightWhite: "#F4F4F4" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.3 + black: 80.6 + red: 65.9 + green: 53.9 + yellow: 41.2 + blue: 53.9 + magenta: 54 + cyan: 53.6 + white: 0 + brightBlack: 80.6 + brightRed: 55.6 + brightGreen: 9.5 + brightYellow: 23.1 + brightBlue: 8.9 + brightMagenta: 9.3 + brightCyan: 8.1 + brightWhite: 0 diff --git a/themes/ibm-carbon-gray-100.yaml b/themes/ibm-carbon-gray-100.yaml new file mode 100644 index 00000000..22028dd7 --- /dev/null +++ b/themes/ibm-carbon-gray-100.yaml @@ -0,0 +1,52 @@ +name: "IBM Carbon Gray 100" +source: + marketplace_id: "achkasov.ibm-carbon-design-system-theme" + version: "1.1.0" + installs: 675 + rating: 0 + ratings: 0 + author: "achkasov" + repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" +colors: + bg: "#161616" + fg: "#F4F4F4" + black: "#262626" + red: "#DA1E28" + green: "#24A148" + yellow: "#FF832B" + blue: "#4589FF" + magenta: "#A56EFF" + cyan: "#009D9A" + white: "#C6C6C6" + brightBlack: "#525252" + brightRed: "#F14C4C" + brightGreen: "#A7F0BA" + brightYellow: "#F1C21B" + brightBlue: "#D0E2FF" + brightMagenta: "#E8DAFF" + brightCyan: "#9EF0F0" + brightWhite: "#F4F4F4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.7 + black: 0 + red: 28.3 + green: 40.3 + yellow: 53.3 + blue: 40.3 + magenta: 40.3 + cyan: 40.6 + white: 71.2 + brightBlack: 14 + brightRed: 38.7 + brightGreen: 86.7 + brightYellow: 72.3 + brightBlue: 87.4 + brightMagenta: 87 + brightCyan: 88.2 + brightWhite: 99.7 diff --git a/themes/ibm-carbon-gray-90.yaml b/themes/ibm-carbon-gray-90.yaml new file mode 100644 index 00000000..1290c537 --- /dev/null +++ b/themes/ibm-carbon-gray-90.yaml @@ -0,0 +1,52 @@ +name: "IBM Carbon Gray 90" +source: + marketplace_id: "achkasov.ibm-carbon-design-system-theme" + version: "1.1.0" + installs: 675 + rating: 0 + ratings: 0 + author: "achkasov" + repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" +colors: + bg: "#262626" + fg: "#F4F4F4" + black: "#262626" + red: "#DA1E28" + green: "#24A148" + yellow: "#FF832B" + blue: "#4589FF" + magenta: "#A56EFF" + cyan: "#009D9A" + white: "#C6C6C6" + brightBlack: "#525252" + brightRed: "#F14C4C" + brightGreen: "#A7F0BA" + brightYellow: "#F1C21B" + brightBlue: "#D0E2FF" + brightMagenta: "#E8DAFF" + brightCyan: "#9EF0F0" + brightWhite: "#F4F4F4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97.6 + black: 0 + red: 26.1 + green: 38.2 + yellow: 51.1 + blue: 38.1 + magenta: 38.1 + cyan: 38.4 + white: 69 + brightBlack: 11.9 + brightRed: 36.5 + brightGreen: 84.5 + brightYellow: 70.1 + brightBlue: 85.2 + brightMagenta: 84.8 + brightCyan: 86 + brightWhite: 97.6 diff --git a/themes/ibm-carbon-white.yaml b/themes/ibm-carbon-white.yaml new file mode 100644 index 00000000..76210ee5 --- /dev/null +++ b/themes/ibm-carbon-white.yaml @@ -0,0 +1,52 @@ +name: "IBM Carbon White" +source: + marketplace_id: "achkasov.ibm-carbon-design-system-theme" + version: "1.1.0" + installs: 675 + rating: 0 + ratings: 0 + author: "achkasov" + repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" +colors: + bg: "#FFFFFF" + fg: "#161616" + black: "#525252" + red: "#DA1E28" + green: "#24A148" + yellow: "#FF832B" + blue: "#4589FF" + magenta: "#A56EFF" + cyan: "#009D9A" + white: "#F4F4F4" + brightBlack: "#525252" + brightRed: "#F14C4C" + brightGreen: "#A7F0BA" + brightYellow: "#F1C21B" + brightBlue: "#D0E2FF" + brightMagenta: "#E8DAFF" + brightCyan: "#9EF0F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.8 + black: 87.2 + red: 72.5 + green: 60.5 + yellow: 47.8 + blue: 60.5 + magenta: 60.5 + cyan: 60.2 + white: 0 + brightBlack: 87.2 + brightRed: 62.1 + brightGreen: 16.1 + brightYellow: 29.6 + brightBlue: 15.4 + brightMagenta: 15.8 + brightCyan: 14.7 + brightWhite: 0 diff --git a/themes/icaria.yaml b/themes/icaria.yaml index ad3a63e7..5b377a1c 100644 --- a/themes/icaria.yaml +++ b/themes/icaria.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheIcariaWorld.icaro" version: "0.0.1" installs: 211 + rating: 0 + ratings: 0 author: "icaro" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TheIcariaWorld.icaro" diff --git a/themes/icattheme.yaml b/themes/icattheme.yaml index dce77e22..7bdc61fc 100644 --- a/themes/icattheme.yaml +++ b/themes/icattheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ahmeticat.icat-dark-theme" version: "0.0.11" installs: 5291 + rating: 5 + ratings: 4 author: "ahmeticat" repo: "https://github.com/ahmeticat/Icat-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ahmeticat.icat-dark-theme" diff --git a/themes/icc-light-theme.yaml b/themes/icc-light-theme.yaml index 204b662f..439dfaec 100644 --- a/themes/icc-light-theme.yaml +++ b/themes/icc-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "icatalina.vscode-icc-theme" version: "1.1.1" installs: 706 + rating: 0 + ratings: 0 author: "icatalina" repo: "https://github.com/icatalina/vscode-icc-theme" url: "https://marketplace.visualstudio.com/items?itemName=icatalina.vscode-icc-theme" diff --git a/themes/ice.yaml b/themes/ice.yaml index 9414cbad..414167d6 100644 --- a/themes/ice.yaml +++ b/themes/ice.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" installs: 81 + rating: 5 + ratings: 2 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" diff --git a/themes/iceberg-contrast.yaml b/themes/iceberg-contrast.yaml index 99610f3d..13471a07 100644 --- a/themes/iceberg-contrast.yaml +++ b/themes/iceberg-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/iceberg-light.yaml b/themes/iceberg-light.yaml index 4aedaee3..e6f6f96b 100644 --- a/themes/iceberg-light.yaml +++ b/themes/iceberg-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/iceberg.yaml b/themes/iceberg.yaml index 5b7822c1..50eda545 100644 --- a/themes/iceberg.yaml +++ b/themes/iceberg.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iAldo80.basic-themes" version: "1.5.1" installs: 425 + rating: 0 + ratings: 0 author: "Aldo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=iAldo80.basic-themes" diff --git a/themes/iceland.yaml b/themes/iceland.yaml index b3dc7172..ad79e605 100644 --- a/themes/iceland.yaml +++ b/themes/iceland.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bcwsea.theme-iceland" version: "0.0.1" installs: 9 + rating: 0 + ratings: 0 author: "bcwsea" repo: "https://github.com/bcwdev/theme-iceland" url: "https://marketplace.visualstudio.com/items?itemName=bcwsea.theme-iceland" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 235 + pair: null contrast: fg: 53.9 black: 11.6 diff --git a/themes/icolordarkblue.yaml b/themes/icolordarkblue.yaml index 3a3dc9df..e58c7a69 100644 --- a/themes/icolordarkblue.yaml +++ b/themes/icolordarkblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 63.5 black: 0 diff --git a/themes/icolordarkcyan.yaml b/themes/icolordarkcyan.yaml index a469e859..5cd16175 100644 --- a/themes/icolordarkcyan.yaml +++ b/themes/icolordarkcyan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 72.8 black: 0 diff --git a/themes/icolordarkgeekblue.yaml b/themes/icolordarkgeekblue.yaml index 35099238..bb23499b 100644 --- a/themes/icolordarkgeekblue.yaml +++ b/themes/icolordarkgeekblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 54.5 black: 0 diff --git a/themes/icolordarkgold.yaml b/themes/icolordarkgold.yaml index 4380f8a9..602a71ab 100644 --- a/themes/icolordarkgold.yaml +++ b/themes/icolordarkgold.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 83.7 black: 0 diff --git a/themes/icolordarkgreen.yaml b/themes/icolordarkgreen.yaml index 127c61c8..77bfd2dc 100644 --- a/themes/icolordarkgreen.yaml +++ b/themes/icolordarkgreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 74.4 black: 0 diff --git a/themes/icolordarklime.yaml b/themes/icolordarklime.yaml index 9056621e..d92251d9 100644 --- a/themes/icolordarklime.yaml +++ b/themes/icolordarklime.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 90.3 black: 0 diff --git a/themes/icolordarkmagenta.yaml b/themes/icolordarkmagenta.yaml index d1931d44..1ba7d583 100644 --- a/themes/icolordarkmagenta.yaml +++ b/themes/icolordarkmagenta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 57.7 black: 0 diff --git a/themes/icolordarkorgane.yaml b/themes/icolordarkorgane.yaml index 8ab89f23..98d03740 100644 --- a/themes/icolordarkorgane.yaml +++ b/themes/icolordarkorgane.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 74.8 black: 0 diff --git a/themes/icolordarkpurple.yaml b/themes/icolordarkpurple.yaml index ca191370..6a242ebd 100644 --- a/themes/icolordarkpurple.yaml +++ b/themes/icolordarkpurple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 45.4 black: 0 diff --git a/themes/icolordarkred.yaml b/themes/icolordarkred.yaml index 6b253b47..bf5151f5 100644 --- a/themes/icolordarkred.yaml +++ b/themes/icolordarkred.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 51.6 black: 0 diff --git a/themes/icolordarkvolcano.yaml b/themes/icolordarkvolcano.yaml index a872d7ae..b5155471 100644 --- a/themes/icolordarkvolcano.yaml +++ b/themes/icolordarkvolcano.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 61.9 black: 0 diff --git a/themes/icolordarkyellow.yaml b/themes/icolordarkyellow.yaml index 3c8f6e6e..5d08e30e 100644 --- a/themes/icolordarkyellow.yaml +++ b/themes/icolordarkyellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 97.7 black: 0 diff --git a/themes/icolorlightblue.yaml b/themes/icolorlightblue.yaml index cdf93905..39a8fca4 100644 --- a/themes/icolorlightblue.yaml +++ b/themes/icolorlightblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 32.2 black: 92.7 diff --git a/themes/icolorlightcyan.yaml b/themes/icolorlightcyan.yaml index 5e619af5..56e6b1bb 100644 --- a/themes/icolorlightcyan.yaml +++ b/themes/icolorlightcyan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 23.4 black: 92.7 diff --git a/themes/icolorlightgeekblue.yaml b/themes/icolorlightgeekblue.yaml index bba812f9..15787f0e 100644 --- a/themes/icolorlightgeekblue.yaml +++ b/themes/icolorlightgeekblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 40.8 black: 92.7 diff --git a/themes/icolorlightgold.yaml b/themes/icolorlightgold.yaml index 6c9c5a59..c223ef04 100644 --- a/themes/icolorlightgold.yaml +++ b/themes/icolorlightgold.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 13 black: 92.7 diff --git a/themes/icolorlightgreen.yaml b/themes/icolorlightgreen.yaml index 685d0fba..7c82decc 100644 --- a/themes/icolorlightgreen.yaml +++ b/themes/icolorlightgreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 21.8 black: 92.7 diff --git a/themes/icolorlightlime.yaml b/themes/icolorlightlime.yaml index 8eefc4fa..f34cc5d9 100644 --- a/themes/icolorlightlime.yaml +++ b/themes/icolorlightlime.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 0 black: 92.7 diff --git a/themes/icolorlightmagenta.yaml b/themes/icolorlightmagenta.yaml index f8abb9a4..14613b0d 100644 --- a/themes/icolorlightmagenta.yaml +++ b/themes/icolorlightmagenta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 37.8 black: 92.7 diff --git a/themes/icolorlightorgane.yaml b/themes/icolorlightorgane.yaml index 9ea51c10..db4b8915 100644 --- a/themes/icolorlightorgane.yaml +++ b/themes/icolorlightorgane.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 21.5 black: 92.7 diff --git a/themes/icolorlightpurple.yaml b/themes/icolorlightpurple.yaml index da7ee400..b7e23a9f 100644 --- a/themes/icolorlightpurple.yaml +++ b/themes/icolorlightpurple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 49.6 black: 92.7 diff --git a/themes/icolorlightred.yaml b/themes/icolorlightred.yaml index 2dfa9b1a..e38f4816 100644 --- a/themes/icolorlightred.yaml +++ b/themes/icolorlightred.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 43.6 black: 92.7 diff --git a/themes/icolorlightvolcano.yaml b/themes/icolorlightvolcano.yaml index 300ff657..1afc42d1 100644 --- a/themes/icolorlightvolcano.yaml +++ b/themes/icolorlightvolcano.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 33.7 black: 92.7 diff --git a/themes/icolorlightyellow.yaml b/themes/icolorlightyellow.yaml index e097835f..9110a768 100644 --- a/themes/icolorlightyellow.yaml +++ b/themes/icolorlightyellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "magnesium-007.i-colors" version: "0.0.16" installs: 156 + rating: 0 + ratings: 0 author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 0 black: 92.7 diff --git a/themes/icon-group-dark.yaml b/themes/icon-group-dark.yaml new file mode 100644 index 00000000..2e17c7c7 --- /dev/null +++ b/themes/icon-group-dark.yaml @@ -0,0 +1,52 @@ +name: "Icon Group Dark" +source: + marketplace_id: "lucidlabs.icon-group-theme" + version: "1.5.0" + installs: 0 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.icon-group-theme" +colors: + bg: "#0E2A4A" + fg: "#E0E8F0" + black: "#05101A" + red: "#E8635A" + green: "#4CAF7D" + yellow: "#FDBD10" + blue: "#4DA6E8" + magenta: "#9B6FCF" + cyan: "#00B09B" + white: "#E0E8F0" + brightBlack: "#8098AD" + brightRed: "#F07A72" + brightGreen: "#6AD89A" + brightYellow: "#FFD04A" + brightBlue: "#6DBCF0" + brightMagenta: "#B48EE0" + brightCyan: "#33C4B0" + brightWhite: "#F0F4F8" +meta: + mode: "dark" + accent: "yellow" + hue: 254 + pair: "Icon Group Light" + contrast: + fg: 88.4 + black: 0 + red: 38.2 + green: 45.6 + yellow: 69.3 + blue: 46.8 + magenta: 32.7 + cyan: 45.8 + white: 88.4 + brightBlack: 41.3 + brightRed: 45.8 + brightGreen: 66.7 + brightYellow: 77.7 + brightBlue: 58 + brightMagenta: 46.3 + brightCyan: 56 + brightWhite: 96.4 diff --git a/themes/icon-group-light.yaml b/themes/icon-group-light.yaml new file mode 100644 index 00000000..b2d16755 --- /dev/null +++ b/themes/icon-group-light.yaml @@ -0,0 +1,52 @@ +name: "Icon Group Light" +source: + marketplace_id: "lucidlabs.icon-group-theme" + version: "1.5.0" + installs: 0 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.icon-group-theme" +colors: + bg: "#FFFFFF" + fg: "#15406F" + black: "#05101A" + red: "#D63B30" + green: "#009572" + yellow: "#B8860B" + blue: "#15406F" + magenta: "#7C4399" + cyan: "#00897B" + white: "#FFFFFF" + brightBlack: "#6B7D8E" + brightRed: "#E74C3C" + brightGreen: "#2ECC71" + brightYellow: "#F39C12" + brightBlue: "#006FB9" + brightMagenta: "#9B59B6" + brightCyan: "#009572" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Icon Group Dark" + contrast: + fg: 94.1 + black: 105.5 + red: 70.9 + green: 64.8 + yellow: 59.6 + blue: 94.1 + magenta: 82.8 + cyan: 69.3 + white: 0 + brightBlack: 69.3 + brightRed: 64.6 + brightGreen: 40.6 + brightYellow: 42.8 + brightBlue: 75.6 + brightMagenta: 72.1 + brightCyan: 64.8 + brightWhite: 0 diff --git a/themes/idea-islands-dark.yaml b/themes/idea-islands-dark.yaml index 028883eb..c7e3fa0f 100644 --- a/themes/idea-islands-dark.yaml +++ b/themes/idea-islands-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "idea-islands-dark-plus.idea-islands-dark-plus" version: "0.0.1" installs: 211 + rating: 5 + ratings: 1 author: "idea-islands-dark-plus by ruiming qian" repo: "https://github.com/yourusername/idea-islands-dark-plus" url: "https://marketplace.visualstudio.com/items?itemName=idea-islands-dark-plus.idea-islands-dark-plus" diff --git a/themes/idk.yaml b/themes/idk.yaml index 7df30542..8daa41d7 100644 --- a/themes/idk.yaml +++ b/themes/idk.yaml @@ -1,11 +1,13 @@ name: "idk" source: - marketplace_id: "Kuuhaku.idkidkidk69966996" + marketplace_id: "Kuuhaku.idkidkidk699669969" version: "1.0.1" - installs: 116 + installs: 117 + rating: 0 + ratings: 0 author: "Kuuhaku" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Kuuhaku.idkidkidk69966996" + url: "https://marketplace.visualstudio.com/items?itemName=Kuuhaku.idkidkidk699669969" colors: bg: "#09020A" fg: "#D4D4D4" diff --git a/themes/idle-dark.yaml b/themes/idle-dark.yaml new file mode 100644 index 00000000..8ef2cc1d --- /dev/null +++ b/themes/idle-dark.yaml @@ -0,0 +1,50 @@ +name: "Idle Dark" +source: + marketplace_id: "luojiahai.idle-theme" + version: "0.0.3" + installs: 48 + author: "luojiahai" + repo: "https://github.com/idlegram/idle-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=luojiahai.idle-theme" +colors: + bg: "#0F0F0F" + fg: "#CCD6DB" + black: "#35393B" + red: "#BF6073" + green: "#4D9974" + yellow: "#BFAC60" + blue: "#5996B3" + magenta: "#BF73AC" + cyan: "#4D9999" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#BF6073" + brightGreen: "#4D9974" + brightYellow: "#BFAC60" + brightBlue: "#5996B3" + brightMagenta: "#BF73AC" + brightCyan: "#4D9999" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: "Idle Light" + contrast: + fg: 80.3 + black: 0 + red: 33.6 + green: 39.7 + yellow: 57.2 + blue: 41.5 + magenta: 40.6 + cyan: 40.9 + white: 81.9 + brightBlack: 30.2 + brightRed: 33.6 + brightGreen: 39.7 + brightYellow: 57.2 + brightBlue: 41.5 + brightMagenta: 40.6 + brightCyan: 40.9 + brightWhite: 107.5 diff --git a/themes/idle-light.yaml b/themes/idle-light.yaml new file mode 100644 index 00000000..bbbe7663 --- /dev/null +++ b/themes/idle-light.yaml @@ -0,0 +1,50 @@ +name: "Idle Light" +source: + marketplace_id: "luojiahai.idle-theme" + version: "0.0.3" + installs: 48 + author: "luojiahai" + repo: "https://github.com/idlegram/idle-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=luojiahai.idle-theme" +colors: + bg: "#FFFFFF" + fg: "#35393B" + black: "#0F0F0F" + red: "#A65363" + green: "#408061" + yellow: "#A69553" + blue: "#4D8199" + magenta: "#A66395" + cyan: "#408080" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#A65363" + brightGreen: "#408061" + brightYellow: "#A69553" + brightBlue: "#4D8199" + brightMagenta: "#A66395" + brightCyan: "#408080" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + pair: "Idle Dark" + contrast: + fg: 96.9 + black: 105.5 + red: 75.4 + green: 72.4 + yellow: 56.4 + blue: 69.4 + magenta: 69.8 + cyan: 71.4 + white: 21.1 + brightBlack: 45.8 + brightRed: 75.4 + brightGreen: 72.4 + brightYellow: 56.4 + brightBlue: 69.4 + brightMagenta: 69.8 + brightCyan: 71.4 + brightWhite: 17.6 diff --git a/themes/idx-theme-dark.yaml b/themes/idx-theme-dark.yaml index 076d22ed..54b3ead7 100644 --- a/themes/idx-theme-dark.yaml +++ b/themes/idx-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PabitraBanerjee.idx-dark-theme" version: "1.0.0" installs: 6273 + rating: 5 + ratings: 2 author: "Pabitra Banerjee" repo: "https://github.com/PB2204/IDX-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=PabitraBanerjee.idx-dark-theme" diff --git a/themes/idx-xcode-dark-improved.yaml b/themes/idx-xcode-dark-improved.yaml index db960c5e..36052ee2 100644 --- a/themes/idx-xcode-dark-improved.yaml +++ b/themes/idx-xcode-dark-improved.yaml @@ -1,11 +1,13 @@ name: "idx-xcode-dark-improved" source: - marketplace_id: "AstralHorse17.charmcode" - version: "0.0.2" - installs: 33 - author: "AstralHorse17" - repo: "https://github.com/https://github.com/AstralHorse17/CharmCode" - url: "https://marketplace.visualstudio.com/items?itemName=AstralHorse17.charmcode" + marketplace_id: "CreevekCZ.idx-xcode" + version: "0.0.4" + installs: 955 + rating: 5 + ratings: 2 + author: "Jan Kožnárek" + repo: "https://github.com/CreevekCZ/idx-xcode-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CreevekCZ.idx-xcode" colors: bg: "#171F2B" fg: "#D9DFE7" diff --git a/themes/ikaros-white.yaml b/themes/ikaros-white.yaml index 2a4b8629..e9501765 100644 --- a/themes/ikaros-white.yaml +++ b/themes/ikaros-white.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HantigoZore.amber-studio" version: "1.2.0" installs: 77 + rating: 5 + ratings: 1 author: "HantigoZore" repo: "https://github.com/HantigoZore/AmberStudio" url: "https://marketplace.visualstudio.com/items?itemName=HantigoZore.amber-studio" diff --git a/themes/ikaros.yaml b/themes/ikaros.yaml index f1931458..d0280b6b 100644 --- a/themes/ikaros.yaml +++ b/themes/ikaros.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HantigoZore.amber-studio" version: "1.2.0" installs: 77 + rating: 5 + ratings: 1 author: "HantigoZore" repo: "https://github.com/HantigoZore/AmberStudio" url: "https://marketplace.visualstudio.com/items?itemName=HantigoZore.amber-studio" diff --git a/themes/ikki-vscode-dark-theme.yaml b/themes/ikki-vscode-dark-theme.yaml index 3812dd28..d5b88bf5 100644 --- a/themes/ikki-vscode-dark-theme.yaml +++ b/themes/ikki-vscode-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IKKI2000.ikki-vscode-dark-theme" version: "1.88.1" installs: 3765 + rating: 5 + ratings: 2 author: "IKKI" repo: "https://github.com/IKKI2000/IKKI-VSCode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=IKKI2000.ikki-vscode-dark-theme" diff --git a/themes/ikki-vscode-light-theme.yaml b/themes/ikki-vscode-light-theme.yaml index fcc99e0d..6e2814dc 100644 --- a/themes/ikki-vscode-light-theme.yaml +++ b/themes/ikki-vscode-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IKKI2000.ikki-vscode-light-theme" version: "1.88.1" installs: 4733 + rating: 5 + ratings: 2 author: "IKKI" repo: "https://github.com/IKKI2000/IKKI-VSCode-Light-Theme" url: "https://marketplace.visualstudio.com/items?itemName=IKKI2000.ikki-vscode-light-theme" diff --git a/themes/ikshana.yaml b/themes/ikshana.yaml index 24ba3177..497b3b02 100644 --- a/themes/ikshana.yaml +++ b/themes/ikshana.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "imabhinavdev.ikshana" version: "0.1.0" installs: 118 + rating: 5 + ratings: 1 author: "imabhinav.dev" repo: "https://github.com/imabhinavdev/ikshana-theme" url: "https://marketplace.visualstudio.com/items?itemName=imabhinavdev.ikshana" diff --git a/themes/illuminate.yaml b/themes/illuminate.yaml new file mode 100644 index 00000000..f561add2 --- /dev/null +++ b/themes/illuminate.yaml @@ -0,0 +1,50 @@ +name: "Illuminate" +source: + marketplace_id: "rookiepsi.illuminate" + version: "1.1.0" + installs: 314 + author: "psi​" + repo: "https://github.com/rookiepsi/illuminate" + url: "https://marketplace.visualstudio.com/items?itemName=rookiepsi.illuminate" +colors: + bg: "#373A40" + fg: "#DCDDDE" + black: "#606369" + red: "#FF6060" + green: "#70FFB8" + yellow: "#FFD860" + blue: "#60D8FF" + magenta: "#D080FF" + cyan: "#60FFFF" + white: "#DCDDDE" + brightBlack: "#404349" + brightRed: "#FF4040" + brightGreen: "#50FFA8" + brightYellow: "#FFD040" + brightBlue: "#40D0FF" + brightMagenta: "#B840FF" + brightCyan: "#40FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 264 + pair: null + contrast: + fg: 78.1 + black: 13.9 + red: 38.7 + green: 83.6 + yellow: 77.4 + blue: 66.7 + magenta: 44.4 + cyan: 85.9 + white: 78.1 + brightBlack: 0 + brightRed: 33.2 + brightGreen: 81.8 + brightYellow: 73.6 + brightBlue: 61.9 + brightMagenta: 27.4 + brightCyan: 84.9 + brightWhite: 100 diff --git a/themes/illusion.yaml b/themes/illusion.yaml new file mode 100644 index 00000000..05631259 --- /dev/null +++ b/themes/illusion.yaml @@ -0,0 +1,52 @@ +name: "Illusion" +source: + marketplace_id: "rwietter.Illusion" + version: "1.0.0" + installs: 13838 + rating: 0 + ratings: 0 + author: "Maurício Witter" + repo: "https://github.com/rwietter/illusion-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rwietter.Illusion" +colors: + bg: "#1E1D22" + fg: "#FEFEFE" + black: "#1E1D22" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#5F5076" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 105.4 + black: 0 + red: 42.6 + green: 84.1 + yellow: 97.8 + blue: 52.9 + magenta: 53.8 + cyan: 83.2 + white: 101.2 + brightBlack: 15.1 + brightRed: 48.1 + brightGreen: 88.3 + brightYellow: 102.8 + brightBlue: 65.3 + brightMagenta: 61.8 + brightCyan: 96 + brightWhite: 106.1 diff --git a/themes/iloveagents-azure-ai-foundry-dark.yaml b/themes/iloveagents-azure-ai-foundry-dark.yaml index f180aa5a..b440475f 100644 --- a/themes/iloveagents-azure-ai-foundry-dark.yaml +++ b/themes/iloveagents-azure-ai-foundry-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" version: "0.5.3" installs: 161 + rating: 5 + ratings: 1 author: "iLoveAgents" repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" diff --git a/themes/iloveagents-azure-ai-foundry-light.yaml b/themes/iloveagents-azure-ai-foundry-light.yaml index 9a5b105a..43523413 100644 --- a/themes/iloveagents-azure-ai-foundry-light.yaml +++ b/themes/iloveagents-azure-ai-foundry-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" version: "0.5.3" installs: 161 + rating: 5 + ratings: 1 author: "iLoveAgents" repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" diff --git a/themes/iloveagents-dark.yaml b/themes/iloveagents-dark.yaml index 949a3a5e..95c7490f 100644 --- a/themes/iloveagents-dark.yaml +++ b/themes/iloveagents-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" version: "0.5.3" installs: 161 + rating: 5 + ratings: 1 author: "iLoveAgents" repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" diff --git a/themes/iloveagents-light.yaml b/themes/iloveagents-light.yaml index 0fc859bd..c408f72f 100644 --- a/themes/iloveagents-light.yaml +++ b/themes/iloveagents-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" version: "0.5.3" installs: 161 + rating: 5 + ratings: 1 author: "iLoveAgents" repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" diff --git a/themes/ilyat-poimandres.yaml b/themes/ilyat-poimandres.yaml new file mode 100644 index 00000000..26be8987 --- /dev/null +++ b/themes/ilyat-poimandres.yaml @@ -0,0 +1,52 @@ +name: "Ilyat Poimandres" +source: + marketplace_id: "LJWhite-WV.ilyat-vscode" + version: "0.2.0" + installs: 918 + rating: 5 + ratings: 1 + author: "LJ White" + repo: "https://github.com/theljwhite/ilyat" + url: "https://marketplace.visualstudio.com/items?itemName=LJWhite-WV.ilyat-vscode" +colors: + bg: "#252B37" + fg: "#A6ACCD" + black: "#252B37" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 264 + pair: null + contrast: + fg: 54.1 + black: 0 + red: 36.2 + green: 73.4 + yellow: 99 + blue: 75.3 + magenta: 51.9 + cyan: 75.3 + white: 103.9 + brightBlack: 54.1 + brightRed: 36.2 + brightGreen: 73.4 + brightYellow: 99 + brightBlue: 75.5 + brightMagenta: 51.9 + brightCyan: 75.5 + brightWhite: 103.9 diff --git a/themes/imba-dark.yaml b/themes/imba-dark.yaml index e769604b..d6e47aa6 100644 --- a/themes/imba-dark.yaml +++ b/themes/imba-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "scrimba.vsimba" version: "4.2.3" installs: 5039 + rating: 5 + ratings: 4 author: "Scrimba" repo: "https://github.com/imba/imba" url: "https://marketplace.visualstudio.com/items?itemName=scrimba.vsimba" diff --git a/themes/imexoodeex.yaml b/themes/imexoodeex.yaml index 12a9784f..a013327e 100644 --- a/themes/imexoodeex.yaml +++ b/themes/imexoodeex.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "imexoodeex.neonjet" version: "1.1.0" installs: 2732 + rating: 5 + ratings: 1 author: "imexoodeex" repo: null url: "https://marketplace.visualstudio.com/items?itemName=imexoodeex.neonjet" diff --git a/themes/in-bed-by-7pm.yaml b/themes/in-bed-by-7pm.yaml index 491d2307..4ea10e31 100644 --- a/themes/in-bed-by-7pm.yaml +++ b/themes/in-bed-by-7pm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sdras.inbedby7pm" version: "0.4.0" installs: 47506 + rating: 4.93 + ratings: 14 author: "sarah.drasner" repo: "https://github.com/sdras/inbedby7pm" url: "https://marketplace.visualstudio.com/items?itemName=sdras.inbedby7pm" diff --git a/themes/in-darkest-night.yaml b/themes/in-darkest-night.yaml index e7f8f523..32bc2de6 100644 --- a/themes/in-darkest-night.yaml +++ b/themes/in-darkest-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jerky676.indarkestnight" version: "1.1.0" installs: 350 + rating: 0 + ratings: 0 author: "jerky676" repo: "https://github.com/jerky676/InDarkestNight" url: "https://marketplace.visualstudio.com/items?itemName=jerky676.indarkestnight" diff --git a/themes/in-his-earthy-elements.yaml b/themes/in-his-earthy-elements.yaml index 2769d705..a3a9f82f 100644 --- a/themes/in-his-earthy-elements.yaml +++ b/themes/in-his-earthy-elements.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chiefyangga.in-his-earthy-elements" version: "0.2.0" installs: 429 + rating: 5 + ratings: 1 author: "chiefyangga" repo: "https://github.com/chiefyangga/in-his-earthy-elements" url: "https://marketplace.visualstudio.com/items?itemName=chiefyangga.in-his-earthy-elements" diff --git a/themes/in-rainbows-dark.yaml b/themes/in-rainbows-dark.yaml new file mode 100644 index 00000000..10422009 --- /dev/null +++ b/themes/in-rainbows-dark.yaml @@ -0,0 +1,52 @@ +name: "In Rainbows Dark" +source: + marketplace_id: "joaostephan.in-rainbows-theme" + version: "0.0.2" + installs: 132 + rating: 0 + ratings: 0 + author: "João Stephan" + repo: "TODO" + url: "https://marketplace.visualstudio.com/items?itemName=joaostephan.in-rainbows-theme" +colors: + bg: "#16161D" + fg: "#E6E6F0" + black: "#8B8B99" + red: "#FE0000" + green: "#55B64F" + yellow: "#FCF050" + blue: "#A2E7FA" + magenta: "#4091DA" + cyan: "#EA6135" + white: "#C8C8D4" + brightBlack: "#B4B4C0" + brightRed: "#FE0000" + brightGreen: "#55B64F" + brightYellow: "#FCF050" + brightBlue: "#A2E7FA" + brightMagenta: "#4091DA" + brightCyan: "#EA6135" + brightWhite: "#F5F5FF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 91.2 + black: 39.7 + red: 36.3 + green: 51.1 + yellow: 94.4 + blue: 84.7 + magenta: 40.2 + cyan: 40.6 + white: 72.9 + brightBlack: 61.3 + brightRed: 36.3 + brightGreen: 51.1 + brightYellow: 94.4 + brightBlue: 84.7 + brightMagenta: 40.2 + brightCyan: 40.6 + brightWhite: 100.8 diff --git a/themes/in-the-fog-dark.yaml b/themes/in-the-fog-dark.yaml index 17a94904..3b1a8264 100644 --- a/themes/in-the-fog-dark.yaml +++ b/themes/in-the-fog-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ganevru.in-the-fog-theme" version: "0.3.1" installs: 3367 + rating: 5 + ratings: 3 author: "ganevru" repo: "https://github.com/ganevru/in-the-fog-theme" url: "https://marketplace.visualstudio.com/items?itemName=ganevru.in-the-fog-theme" diff --git a/themes/index.json b/themes/index.json index 170ba8b9..a09ad775 100644 --- a/themes/index.json +++ b/themes/index.json @@ -72,6 +72,7 @@ "808s & Heartbreak Theme": "808s-heartbreak-theme.yaml", "8V": "8v.yaml", "8x8 - Darker": "8x8-darker.yaml", + "8x8 - Fork": "8x8-fork.yaml", "8x8_dark - Fork": "8x8-dark-fork.yaml", "9 Way Ticket": "9-way-ticket.yaml", "90s Digital Dawning": "90s-digital-dawning.yaml", @@ -233,8 +234,8 @@ "Alien Terminal Nostromo Amber": "alien-terminal-nostromo-amber.yaml", "Alien Terminal Nostromo Green": "alien-terminal-nostromo-green.yaml", "Alien Terminal Sevastopol Link": "alien-terminal-sevastopol-link.yaml", - "Alignment (italic)": "alignment-italic.yaml", - "Alignment darker (italic)": "alignment-darker-italic.yaml", + "Alignment": "alignment.yaml", + "Alignment darker": "alignment-darker.yaml", "All Blue": "all-blue.yaml", "all-black": "all-black.yaml", "all-nighter Theme": "all-nighter-theme.yaml", @@ -561,12 +562,12 @@ "badbird": "badbird.yaml", "Baig": "baig.yaml", "Baitul Hikmah Professional": "baitul-hikmah-professional.yaml", - "Baiyuechu": "baiyuechu.yaml", "BakaNeo": "bakaneo.yaml", "Balance Pink - Compassion & Focus": "balance-pink-compassion-focus.yaml", "Balance Pink Colorblind - Compassion & Focus": "balance-pink-colorblind-compassion-focus.yaml", "Balance Pink High Contrast - Compassion & Focus": "balance-pink-high-contrast-compassion-focus.yaml", "Balance Pink Light - Compassion & Focus": "balance-pink-light-compassion-focus.yaml", + "Bali crepuscule": "bali-crepuscule.yaml", "Ballerini Theme": "ballerini-theme.yaml", "Bam": "bam.yaml", "bamboo": "bamboo.yaml", @@ -576,6 +577,8 @@ "Ban Typhoon": "ban-typhoon.yaml", "bananalight": "bananalight.yaml", "BandMeUp": "bandmeup.yaml", + "Banjo Loans Dark": "banjo-loans-dark.yaml", + "Banjo Loans Light": "banjo-loans-light.yaml", "banner": "banner.yaml", "banner-contrast": "banner-contrast.yaml", "banner-light": "banner-light.yaml", @@ -658,6 +661,7 @@ "basic_black": "basic-black.yaml", "Basterdized": "basterdized.yaml", "bat": "bat.yaml", + "Batcave": "batcave.yaml", "Batsignal-light-color-theme": "batsignal-light-color-theme.yaml", "Battutu": "battutu.yaml", "BazmaTheme": "bazmatheme.yaml", @@ -670,6 +674,7 @@ "BC-Theme": "bc-theme.yaml", "Beach Vibes": "beach-vibes.yaml", "Beacrisg": "beacrisg.yaml", + "Bearhugs": "bearhugs.yaml", "becolors": "becolors.yaml", "BedarX Obsidian": "bedarx-obsidian.yaml", "BedarX Onyx": "bedarx-onyx.yaml", @@ -687,6 +692,8 @@ "Beloco": "beloco.yaml", "BenLaTheme Azure": "benlatheme-azure.yaml", "Benpai Theme (Dark)": "benpai-theme-dark.yaml", + "Benty": "benty.yaml", + "Benty Dark": "benty-dark.yaml", "Berg": "berg.yaml", "Berkeley": "berkeley.yaml", "Bernadoque Theme": "bernadoque-theme.yaml", @@ -694,6 +701,7 @@ "berry-blast-theme": "berry-blast-theme.yaml", "Bersk": "bersk.yaml", "bertax": "bertax.yaml", + "BertDark": "bertdark.yaml", "Beru": "beru.yaml", "Best Themes - One Monokai": "best-themes-one-monokai.yaml", "Better Coding Dark": "better-coding-dark.yaml", @@ -803,13 +811,16 @@ "BlueGreenSpace": "bluegreenspace.yaml", "Bluelili-color-theme": "bluelili-color-theme.yaml", "BlueOrange": "blueorange.yaml", + "Blueprint": "blueprint.yaml", "Blueprint-Grid": "blueprint-grid.yaml", "bluered-theme": "bluered-theme.yaml", "BlueSea": "bluesea.yaml", + "BlueSlate": "blueslate.yaml", "BlueSpace": "bluespace.yaml", "BlueSpace S": "bluespace-s.yaml", "BluespEXTER": "bluespexter.yaml", "BlueyOneDark": "blueyonedark.yaml", + "Blufftheme": "blufftheme.yaml", "Bluish": "bluish.yaml", "Bluloco Dark": "bluloco-dark.yaml", "Bluloco Dark Italic": "bluloco-dark-italic.yaml", @@ -817,6 +828,7 @@ "Blush Pink Enhanced Premium": "blush-pink-enhanced-premium.yaml", "Blve": "blve.yaml", "bobascheme": "bobascheme.yaml", + "bobojojo": "bobojojo.yaml", "Bocenago: Pradei": "bocenago-pradei.yaml", "Bogem's Night Owl": "bogem-s-night-owl.yaml", "Bogster": "bogster.yaml", @@ -828,6 +840,7 @@ "bolsonaro theme": "bolsonaro-theme.yaml", "Bombyx": "bombyx.yaml", "Bombyx Light": "bombyx-light.yaml", + "bonfire": "bonfire.yaml", "boo": "boo.yaml", "boo-color-theme": "boo-color-theme.yaml", "Boogel": "boogel.yaml", @@ -936,6 +949,7 @@ "Calmppuccin Nitro-cold-brew": "calmppuccin-nitro-cold-brew.yaml", "Calmppuccin Oledppuccin": "calmppuccin-oledppuccin.yaml", "Calmshade": "calmshade.yaml", + "camo dark": "camo-dark.yaml", "campbell": "campbell.yaml", "Camula": "camula.yaml", "Camula Moon": "camula-moon.yaml", @@ -1010,7 +1024,9 @@ "ccat": "ccat.yaml", "cebola-theme": "cebola-theme.yaml", "Celadon Theme": "celadon-theme.yaml", + "Celestial": "celestial.yaml", "celestial-charm-theme": "celestial-charm-theme.yaml", + "Ceramic Space": "ceramic-space.yaml", "cerydra": "cerydra.yaml", "cfl-one": "cfl-one.yaml", "Cha Thai": "cha-thai.yaml", @@ -1106,6 +1122,8 @@ "Claude Mode Light": "claude-mode-light.yaml", "Claude Velvet Dark": "claude-velvet-dark.yaml", "Claude Velvet Light": "claude-velvet-light.yaml", + "Claude VSCode Dark Brand": "claude-vscode-dark-brand.yaml", + "Claude VSCode Light Brand": "claude-vscode-light-brand.yaml", "Claude Warm Light": "claude-warm-light.yaml", "Clean Theme Halloween": "clean-theme-halloween.yaml", "Clean White": "clean-white.yaml", @@ -1256,10 +1274,8 @@ "comrade-contrast": "comrade-contrast.yaml", "comrade-light": "comrade-light.yaml", "Concoctis - Dark : Hard": "concoctis-dark-hard.yaml", - "Concoctis - Dark : Medium": "concoctis-dark-medium.yaml", "Concoctis - Dark : Soft": "concoctis-dark-soft.yaml", "Concoctis - Light : Hard": "concoctis-light-hard.yaml", - "Concoctis - Light : Medium": "concoctis-light-medium.yaml", "Concoctis - Light : Soft": "concoctis-light-soft.yaml", "Concrete": "concrete.yaml", "Concrete Theme": "concrete-theme.yaml", @@ -1307,7 +1323,7 @@ "crackpot": "crackpot.yaml", "crackpot-contrast": "crackpot-contrast.yaml", "crackpot-light": "crackpot-light.yaml", - "Crafty Theme Dark Contrast": "crafty-theme-dark-contrast.yaml", + "Crafty Theme Dark": "crafty-theme-dark.yaml", "CrazyDark": "crazydark.yaml", "Cream Charcoal": "cream-charcoal.yaml", "Creative Purple - Innovation & Imagination": "creative-purple-innovation-imagination.yaml", @@ -1435,6 +1451,7 @@ "Dark Discord VSCode": "dark-discord-vscode.yaml", "Dark Dust Pro": "dark-dust-pro.yaml", "Dark Edit+": "dark-edit.yaml", + "Dark Forest": "dark-forest.yaml", "Dark Frost": "dark-frost.yaml", "Dark Frost Midnight": "dark-frost-midnight.yaml", "Dark Fury": "dark-fury.yaml", @@ -1481,9 +1498,9 @@ "Dark Neon Theme(SM)": "dark-neon-theme-sm.yaml", "Dark Night": "dark-night.yaml", "Dark Ocean": "dark-ocean.yaml", - "Dark Ocean Sands": "dark-ocean-sands.yaml", "Dark Orange Flat": "dark-orange-flat.yaml", "Dark Owl Darker": "dark-owl-darker.yaml", + "Dark Owl Darker (No Italics)": "dark-owl-darker-no-italics.yaml", "Dark Pastel": "dark-pastel.yaml", "Dark Pastel Pink": "dark-pastel-pink.yaml", "Dark Petrol - Dev": "dark-petrol-dev.yaml", @@ -1540,6 +1557,7 @@ "Dark-Wolf": "dark-wolf.yaml", "dark.codely-theme": "dark-codely-theme.yaml", "Dark/Purple": "dark-purple.yaml", + "Dark/Purple - Fork": "dark-purple-fork.yaml", "Dark&Green energy": "dark-green-energy.yaml", "Dark#": "dark.yaml", "Dark+ Remix (Nord)": "dark-remix-nord.yaml", @@ -1562,7 +1580,6 @@ "darkEST": "darkest.yaml", "DarkestSide theme": "darkestside-theme.yaml", "DarkFontenelesTheme": "darkfontenelestheme.yaml", - "DarkForest": "darkforest.yaml", "DarkFusion": "darkfusion.yaml", "DarkGreen": "darkgreen.yaml", "DarkHeist": "darkheist.yaml", @@ -1655,6 +1672,7 @@ "Deep ocean": "deep-ocean.yaml", "Deep Ocean": "deep-ocean.yaml", "Deep Purple": "deep-purple.yaml", + "Deep Purple - Fork": "deep-purple-fork.yaml", "Deep Purple - Fork - Fork": "deep-purple-fork-fork.yaml", "Deep Rainforest": "deep-rainforest.yaml", "Deep Space Dark": "deep-space-dark.yaml", @@ -1714,7 +1732,6 @@ "DevMedia Light": "devmedia-light.yaml", "DevOption Light": "devoption-light.yaml", "DevR": "devr.yaml", - "DevR Dark Theme - Fork": "devr-dark-theme-fork.yaml", "DevSena (ultra dark)": "devsena-ultra-dark.yaml", "devTheme": "devtheme.yaml", "DevTheme": "devtheme.yaml", @@ -1752,8 +1769,11 @@ "diVision Group Dark Theme": "division-group-dark-theme.yaml", "DJ's Purple": "dj-s-purple.yaml", "Djolof": "djolof.yaml", + "DK Dark High Contrast": "dk-dark-high-contrast.yaml", "DNA Helix": "dna-helix.yaml", "DoDimmed Dark": "dodimmed-dark.yaml", + "Doems Sunset": "doems-sunset.yaml", + "Doli Soft Green": "doli-soft-green.yaml", "Doli Universal": "doli-universal.yaml", "Doli Visual Studio": "doli-visual-studio.yaml", "Dominator Paralyzer": "dominator-paralyzer.yaml", @@ -1812,6 +1832,7 @@ "Dribbble Theme - Light": "dribbble-theme-light.yaml", "Drifter": "drifter.yaml", "drk": "drk.yaml", + "Drukalu": "drukalu.yaml", "Drukyul Dark": "drukyul-dark.yaml", "Drukyul Light": "drukyul-light.yaml", "Drux Theme": "drux-theme.yaml", @@ -1998,6 +2019,7 @@ "Energy Red Light - Passion & Alertness": "energy-red-light-passion-alertness.yaml", "energy-theme": "energy-theme.yaml", "Enhanced HubSpot Theme": "enhanced-hubspot-theme.yaml", + "Enhanced Material": "enhanced-material.yaml", "Enhanced Material - Batman": "enhanced-material-batman.yaml", "Enhanced Material - Fork": "enhanced-material-fork.yaml", "Enigma": "enigma.yaml", @@ -2043,6 +2065,8 @@ "evans-dark-theme": "evans-dark-theme.yaml", "Eve": "eve.yaml", "Evening Sky": "evening-sky.yaml", + "Everforest Dark": "everforest-dark.yaml", + "Everforest Light": "everforest-light.yaml", "Everforest Night Hard": "everforest-night-hard.yaml", "Everforest Night Light Hard": "everforest-night-light-hard.yaml", "Everforest Night Light Medium": "everforest-night-light-medium.yaml", @@ -2056,7 +2080,6 @@ "Everforest Pro Light Cozy": "everforest-pro-light-cozy.yaml", "Everforest Pro Light Vibrant": "everforest-pro-light-vibrant.yaml", "Everforest Soft": "everforest-soft.yaml", - "everforest-light": "everforest-light.yaml", "Evergarden": "evergarden.yaml", "Evergarden Winter": "evergarden-winter.yaml", "Evergarden Winter Light": "evergarden-winter-light.yaml", @@ -2272,7 +2295,6 @@ "Fruity Loops": "fruity-loops.yaml", "ftrblue.": "ftrblue.yaml", "fuck-all-these-vscode-custom-ugly-themes": "fuck-all-these-vscode-custom-ugly-themes.yaml", - "FullDark-vscode": "fulldark-vscode.yaml", "Funchosa Dark Theme": "funchosa-dark-theme.yaml", "FunCode": "funcode.yaml", "functional": "functional.yaml", @@ -2305,6 +2327,7 @@ "Galactic Flavored": "galactic-flavored.yaml", "galactus": "galactus.yaml", "Galaxia": "galaxia.yaml", + "Galaxian": "galaxian.yaml", "GalaxyTheme+": "galaxytheme.yaml", "Galizur": "galizur.yaml", "GAME MODE": "game-mode.yaml", @@ -2330,6 +2353,7 @@ "gdscript35": "gdscript35.yaml", "GearTheme": "geartheme.yaml", "Gekkou": "gekkou.yaml", + "Gelap": "gelap.yaml", "Gelato": "gelato.yaml", "GelGel": "gelgel.yaml", "Gems-Theme-Default": "gems-theme-default.yaml", @@ -2424,7 +2448,6 @@ "GitHub Dark Default (Grayscale)": "github-dark-default-grayscale.yaml", "GitHub Dark Dimmed": "github-dark-dimmed.yaml", "GitHub Dark Dimmed (Grayscale)": "github-dark-dimmed-grayscale.yaml", - "GitHub Dark High Contrast": "github-dark-high-contrast.yaml", "GitHub Dark High Contrast (Grayscale)": "github-dark-high-contrast-grayscale.yaml", "GitHub Dark Mode": "github-dark-mode.yaml", "GitHub Dark Palenight": "github-dark-palenight.yaml", @@ -2612,8 +2635,7 @@ "Grusper": "grusper.yaml", "Gruvalized Dark": "gruvalized-dark.yaml", "Gruvalized Light": "gruvalized-light.yaml", - "Gruvbox Dark Medium": "gruvbox-dark-medium.yaml", - "Gruvbox Dark Soft": "gruvbox-dark-soft.yaml", + "Gruvbox Dark Anhoder": "gruvbox-dark-anhoder.yaml", "Gruvbox DrakenLords Dark": "gruvbox-drakenlords-dark.yaml", "Gruvbox DrakenLords Dark Draken": "gruvbox-drakenlords-dark-draken.yaml", "Gruvbox DrakenLords Grey": "gruvbox-drakenlords-grey.yaml", @@ -2623,9 +2645,11 @@ "Gruvbox ish Dark Soft": "gruvbox-ish-dark-soft.yaml", "Gruvbox Light Medium": "gruvbox-light-medium.yaml", "Gruvbox Light Soft": "gruvbox-light-soft.yaml", + "Gruvbox Material Dark": "gruvbox-material-dark.yaml", "Gruvbox Material Dark - Claude Hybrid": "gruvbox-material-dark-claude-hybrid.yaml", "Gruvbox Material Flat Dark": "gruvbox-material-flat-dark.yaml", "Gruvbox Material Flat Light": "gruvbox-material-flat-light.yaml", + "Gruvbox Material Light": "gruvbox-material-light.yaml", "Gruvbox Material Mix": "gruvbox-material-mix.yaml", "Gruvbox Minor Dark Hard": "gruvbox-minor-dark-hard.yaml", "Gruvbox Minor Dark Medium": "gruvbox-minor-dark-medium.yaml", @@ -2856,7 +2880,6 @@ "Hydro": "hydro.yaml", "Hydro Sea": "hydro-sea.yaml", "Hydro Soft": "hydro-soft.yaml", - "Hydrokarbon": "hydrokarbon.yaml", "Hygge Kyst Dark": "hygge-kyst-dark.yaml", "hyle-color-theme": "hyle-color-theme.yaml", "hyle-night-night-color-theme": "hyle-night-night-color-theme.yaml", @@ -3118,7 +3141,6 @@ "juicy": "juicy.yaml", "juicy-contrast": "juicy-contrast.yaml", "juicy-light": "juicy-light.yaml", - "julia-monokai-classic-color-theme": "julia-monokai-classic-color-theme.yaml", "July Summer Vibes Dark Theme": "july-summer-vibes-dark-theme.yaml", "jummidark": "jummidark.yaml", "jummilight": "jummilight.yaml", @@ -3177,7 +3199,7 @@ "Karry Color Golang": "karry-color-golang.yaml", "Kary Pro Colors - Dark": "kary-pro-colors-dark.yaml", "Kary Pro Colors - Light": "kary-pro-colors-light.yaml", - "Kashi Night": "kashi-night.yaml", + "Kashi": "kashi.yaml", "KastorCode Dark Orange Theme": "kastorcode-dark-orange-theme.yaml", "KastorCode Dark Purple Theme": "kastorcode-dark-purple-theme.yaml", "KatagawaTheme": "katagawatheme.yaml", @@ -3273,6 +3295,7 @@ "Kurdish Vibrant Theme": "kurdish-vibrant-theme.yaml", "kurdor-light": "kurdor-light.yaml", "Kuro": "kuro.yaml", + "Kuro Sakura": "kuro-sakura.yaml", "kuro_theme-color-theme": "kuro-theme-color-theme.yaml", "kurodake-green": "kurodake-green.yaml", "Kuroir Dark 01 Crimson": "kuroir-dark-01-crimson.yaml", @@ -4557,7 +4580,6 @@ "NW21": "nw21.yaml", "NY City Lights Theme": "ny-city-lights-theme.yaml", "Nyctophilia": "nyctophilia.yaml", - "nyqron": "nyqron.yaml", "Nyrkes": "nyrkes.yaml", "OA515": "oa515.yaml", "Oak": "oak.yaml", @@ -4957,8 +4979,10 @@ "Pale Blue": "pale-blue.yaml", "Pale Boreal Dark": "pale-boreal-dark.yaml", "Palenight": "palenight.yaml", + "Palenight Italic": "palenight-italic.yaml", "Palenight Material": "palenight-material.yaml", "Palenight Pro": "palenight-pro.yaml", + "Palenight Theme": "palenight-theme.yaml", "Palenight Theme based on Olaolu Olaywuyi for Code Server": "palenight-theme-based-on-olaolu-olaywuyi-for-code-server.yaml", "palespring": "palespring.yaml", "Palestorm": "palestorm.yaml", @@ -5440,7 +5464,6 @@ "Pulse Soft Purple": "pulse-soft-purple.yaml", "Pumpkin": "pumpkin.yaml", "Punjab - Land of Five Rivers": "punjab-land-of-five-rivers.yaml", - "punk-runner": "punk-runner.yaml", "PunkFut": "punkfut.yaml", "Pur+ Theme V1": "pur-theme-v1.yaml", "purble 0.0.2 - Fork - Fork": "purble-0-0-2-fork-fork.yaml", @@ -5756,6 +5779,7 @@ "Rui Sapphire": "rui-sapphire.yaml", "Rumba Dark": "rumba-dark.yaml", "Runic Minimal": "runic-minimal.yaml", + "Running Wires": "running-wires.yaml", "ruru marijuana": "ruru-marijuana.yaml", "ruru moon": "ruru-moon.yaml", "Rust & Brown": "rust-brown.yaml", @@ -5795,6 +5819,7 @@ "samgido-theme-dark": "samgido-theme-dark.yaml", "Samito Nest Theme": "samito-nest-theme.yaml", "Samito Nest-GraphQL Theme": "samito-nest-graphql-theme.yaml", + "Samito Next Theme": "samito-next-theme.yaml", "Samurai": "samurai.yaml", "Samyak Bumb": "samyak-bumb.yaml", "sanam-dark-pro": "sanam-dark-pro.yaml", @@ -5957,6 +5982,7 @@ "Shion": "shion.yaml", "SHIP-dark": "ship-dark.yaml", "SHIP-light": "ship-light.yaml", + "Shiro Sakura (Light": "shiro-sakura-light.yaml", "shirotelin": "shirotelin.yaml", "shiv-vscode-theme": "shiv-vscode-theme.yaml", "SHIVAM": "shivam.yaml", @@ -5986,7 +6012,6 @@ "Simple Muted - Dark": "simple-muted-dark.yaml", "Simple Muted - Light": "simple-muted-light.yaml", "Simple Red Dark": "simple-red-dark.yaml", - "Simple Theme": "simple-theme.yaml", "simple-3000": "simple-3000.yaml", "simple-calm-dark": "simple-calm-dark.yaml", "SimpleDark": "simpledark.yaml", @@ -6323,6 +6348,7 @@ "Sublime Mariana ⎯ Test": "sublime-mariana-test.yaml", "Sublime Text 3": "sublime-text-3.yaml", "Sublime Text 4 Theme": "sublime-text-4-theme.yaml", + "sublime-monokai-color-theme": "sublime-monokai-color-theme.yaml", "sublime-vscode-theme": "sublime-vscode-theme.yaml", "Subliminal Nightfall": "subliminal-nightfall.yaml", "Subliminal-color-theme": "subliminal-color-theme.yaml", @@ -6745,6 +6771,7 @@ "Tron-Ares": "tron-ares.yaml", "tron-contrast": "tron-contrast.yaml", "tron-light": "tron-light.yaml", + "Tron: Ares": "tron-ares.yaml", "trsm-night-eyes": "trsm-night-eyes.yaml", "True Dark": "true-dark.yaml", "trueAmber": "trueamber.yaml", @@ -6828,7 +6855,6 @@ "Unity Theme": "unity-theme.yaml", "Universe": "universe.yaml", "Universe Gray": "universe-gray.yaml", - "Universe Italic": "universe-italic.yaml", "Universe Purple": "universe-purple.yaml", "Unlight v.2": "unlight-v-2.yaml", "Untitled": "untitled.yaml", @@ -6949,6 +6975,7 @@ "verdant": "verdant.yaml", "Verdantium": "verdantium.yaml", "Verdure": "verdure.yaml", + "Verner": "verner.yaml", "version 1.0.5": "version-1-0-5.yaml", "Very Blue": "very-blue.yaml", "very fast theme": "very-fast-theme.yaml", @@ -7423,6 +7450,7 @@ "Zaeri Dark": "zaeri-dark.yaml", "zaher-color-theme": "zaher-color-theme.yaml", "Zan": "zan.yaml", + "Zandromeda": "zandromeda.yaml", "zap": "zap.yaml", "Zappts": "zappts.yaml", "ZBRA Dark": "zbra-dark.yaml", diff --git a/themes/index.yaml b/themes/index.yaml index 0c93827c..20e1baab 100644 --- a/themes/index.yaml +++ b/themes/index.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sudoaugustin.vslook" version: "0.3.2" installs: 10351 + rating: 4.33 + ratings: 6 author: "Augustin Joseph" repo: "https://github.com/sudoaugustin/vslook" url: "https://marketplace.visualstudio.com/items?itemName=sudoaugustin.vslook" diff --git a/themes/indie-dev.yaml b/themes/indie-dev.yaml new file mode 100644 index 00000000..56e0166c --- /dev/null +++ b/themes/indie-dev.yaml @@ -0,0 +1,52 @@ +name: "Indie Dev" +source: + marketplace_id: "Lucwx.indie-dev" + version: "0.0.2" + installs: 2539 + rating: 5 + ratings: 1 + author: "Lucwx" + repo: "https://github.com/lucwx/indie-dev" + url: "https://marketplace.visualstudio.com/items?itemName=Lucwx.indie-dev" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 59.3 + black: 0 + red: 49.4 + green: 45.8 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 32.1 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 45.8 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 59 diff --git a/themes/indielayer.yaml b/themes/indielayer.yaml index 2f2ee840..a3b604d2 100644 --- a/themes/indielayer.yaml +++ b/themes/indielayer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Indielayer.vscode-indielayer-theme" version: "1.1.2" installs: 230 + rating: 0 + ratings: 0 author: "Indielayer" repo: "https://github.com/indielayer/vscode-indielayer-theme" url: "https://marketplace.visualstudio.com/items?itemName=Indielayer.vscode-indielayer-theme" diff --git a/themes/indigo-and-amaranth.yaml b/themes/indigo-and-amaranth.yaml index acc443e8..3c021e0b 100644 --- a/themes/indigo-and-amaranth.yaml +++ b/themes/indigo-and-amaranth.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "es-purple-theme-help.better-purple-theme" version: "0.0.2" installs: 98 + rating: 0 + ratings: 0 author: "es-purple-theme-help" repo: null url: "https://marketplace.visualstudio.com/items?itemName=es-purple-theme-help.better-purple-theme" diff --git a/themes/indigo-ice.yaml b/themes/indigo-ice.yaml index 351aad85..66ec4c74 100644 --- a/themes/indigo-ice.yaml +++ b/themes/indigo-ice.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shariemakesart.indigo-ice-theme" version: "0.1.1" installs: 1032 + rating: 5 + ratings: 1 author: "shariemakesart" repo: "https://github.com/SharieRhea/Indigo_Ice" url: "https://marketplace.visualstudio.com/items?itemName=shariemakesart.indigo-ice-theme" diff --git a/themes/indique-theme.yaml b/themes/indique-theme.yaml new file mode 100644 index 00000000..ecb32d30 --- /dev/null +++ b/themes/indique-theme.yaml @@ -0,0 +1,52 @@ +name: "Indique Theme" +source: + marketplace_id: "IDNQ.indique-theme" + version: "1.1.0" + installs: 42 + rating: 0 + ratings: 0 + author: "IDNQ" + repo: "https://github.com/IDNQ/indique-theme" + url: "https://marketplace.visualstudio.com/items?itemName=IDNQ.indique-theme" +colors: + bg: "#16191D" + fg: "#E1E4E8" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D1D5DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 89 + black: 19 + red: 36.7 + green: 62.1 + yellow: 92.6 + blue: 38.8 + magenta: 51.2 + cyan: 60.7 + white: 79.6 + brightBlack: 47.5 + brightRed: 49.6 + brightGreen: 78.9 + brightYellow: 92.6 + brightBlue: 60.7 + brightMagenta: 51.2 + brightCyan: 69.2 + brightWhite: 103.9 diff --git a/themes/industry.yaml b/themes/industry.yaml index e0bef179..7726383a 100644 --- a/themes/industry.yaml +++ b/themes/industry.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SGS.industry-theme" version: "1.2.4" installs: 88 + rating: 0 + ratings: 0 author: "SGS" repo: "https://github.com/sgsks/pj_industry_vscode_theme" url: "https://marketplace.visualstudio.com/items?itemName=SGS.industry-theme" diff --git a/themes/infatuation.yaml b/themes/infatuation.yaml index c9fb0b1b..b196acd2 100644 --- a/themes/infatuation.yaml +++ b/themes/infatuation.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yuna495.pinklily" version: "1.0.6" installs: 114 + rating: 0 + ratings: 0 author: "yuna495" repo: "https://github.com/yuna495/PinkLily" url: "https://marketplace.visualstudio.com/items?itemName=yuna495.pinklily" diff --git a/themes/inferius.yaml b/themes/inferius.yaml index 45014e32..3d39866e 100644 --- a/themes/inferius.yaml +++ b/themes/inferius.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inferigang.inferius" version: "1.0.1" installs: 216 + rating: 0 + ratings: 0 author: "inferigang" repo: null url: "https://marketplace.visualstudio.com/items?itemName=inferigang.inferius" diff --git a/themes/infinitus.yaml b/themes/infinitus.yaml index ed63fef2..c956cf4e 100644 --- a/themes/infinitus.yaml +++ b/themes/infinitus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jayavelrajan.infinitus-dark" version: "0.1.0" installs: 239 + rating: 5 + ratings: 1 author: "Jaya Vel Rajan" repo: "https://github.com/Jayavelrajan/Infinitus-vscode-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=jayavelrajan.infinitus-dark" diff --git a/themes/infinity-64-blackboard-by-shingo-murata.yaml b/themes/infinity-64-blackboard-by-shingo-murata.yaml index 13351e6a..3d2792ae 100644 --- a/themes/infinity-64-blackboard-by-shingo-murata.yaml +++ b/themes/infinity-64-blackboard-by-shingo-murata.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markusrafferty.infinity-64-theme" version: "5.0.0" installs: 52 + rating: 0 + ratings: 0 author: "Markus Rafferty" repo: "https://github.com/markusrafferty/infinity-64-theme" url: "https://marketplace.visualstudio.com/items?itemName=markusrafferty.infinity-64-theme" diff --git a/themes/infinity-64-whiteboard-by-shingo-murata.yaml b/themes/infinity-64-whiteboard-by-shingo-murata.yaml index 553eb0b5..a80419c5 100644 --- a/themes/infinity-64-whiteboard-by-shingo-murata.yaml +++ b/themes/infinity-64-whiteboard-by-shingo-murata.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markusrafferty.infinity-64-theme" version: "5.0.0" installs: 52 + rating: 0 + ratings: 0 author: "Markus Rafferty" repo: "https://github.com/markusrafferty/infinity-64-theme" url: "https://marketplace.visualstudio.com/items?itemName=markusrafferty.infinity-64-theme" diff --git a/themes/infinity-dark-contrast.yaml b/themes/infinity-dark-contrast.yaml index ea30532a..8501cb9b 100644 --- a/themes/infinity-dark-contrast.yaml +++ b/themes/infinity-dark-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arthur404dev.thanos-theme" version: "0.0.6" installs: 6550 + rating: 5 + ratings: 3 author: "Arthur 404 dev" repo: "https://github.com/thanos-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=arthur404dev.thanos-theme" diff --git a/themes/infinity.yaml b/themes/infinity.yaml index 59594da3..fe0802e0 100644 --- a/themes/infinity.yaml +++ b/themes/infinity.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "satvikvirmani.infinity-theme" version: "0.0.1" installs: 1035 + rating: 0 + ratings: 0 author: "Satvik Virmani" repo: "https://github.com/satvikvirmani/infinity-theme" url: "https://marketplace.visualstudio.com/items?itemName=satvikvirmani.infinity-theme" diff --git a/themes/ingeni.yaml b/themes/ingeni.yaml index 9f828f82..60eee8de 100644 --- a/themes/ingeni.yaml +++ b/themes/ingeni.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodeiusZ.ingeni" version: "0.0.1" installs: 140 + rating: 0 + ratings: 0 author: "CodeiusZ" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CodeiusZ.ingeni" diff --git a/themes/inheritance.yaml b/themes/inheritance.yaml index e4decf0f..92d452df 100644 --- a/themes/inheritance.yaml +++ b/themes/inheritance.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "icao.inheritance" version: "0.3.0" installs: 3311 + rating: 5 + ratings: 2 author: "icao" repo: "https://github.com/icao/inheritance" url: "https://marketplace.visualstudio.com/items?itemName=icao.inheritance" diff --git a/themes/inkpot.yaml b/themes/inkpot.yaml index 6ddaebf8..e634cf09 100644 --- a/themes/inkpot.yaml +++ b/themes/inkpot.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ast3r0id.inkpot" version: "0.0.1" installs: 833 + rating: 0 + ratings: 0 author: "Ast3r0id" repo: "https://github.com/et3r/inkpot" url: "https://marketplace.visualstudio.com/items?itemName=Ast3r0id.inkpot" diff --git a/themes/inksea-dank.yaml b/themes/inksea-dank.yaml index a8d3e73c..5954ca4b 100644 --- a/themes/inksea-dank.yaml +++ b/themes/inksea-dank.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inksea.inksea-theme" version: "3.3.0" installs: 12188 + rating: 5 + ratings: 3 author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" diff --git a/themes/inksea-dark.yaml b/themes/inksea-dark.yaml index e9472539..ab7461f3 100644 --- a/themes/inksea-dark.yaml +++ b/themes/inksea-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inksea.inksea-theme" version: "3.3.0" installs: 12188 + rating: 5 + ratings: 3 author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" diff --git a/themes/inksea-dracula.yaml b/themes/inksea-dracula.yaml index 8bc93527..0502411b 100644 --- a/themes/inksea-dracula.yaml +++ b/themes/inksea-dracula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inksea.inksea-theme" version: "3.3.0" installs: 12188 + rating: 5 + ratings: 3 author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" diff --git a/themes/inksea-hacker.yaml b/themes/inksea-hacker.yaml index fcb9f00e..b1d628e9 100644 --- a/themes/inksea-hacker.yaml +++ b/themes/inksea-hacker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inksea.inksea-theme" version: "3.3.0" installs: 12188 + rating: 5 + ratings: 3 author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" diff --git a/themes/inksea-midnight.yaml b/themes/inksea-midnight.yaml index e5d87b96..bce68d09 100644 --- a/themes/inksea-midnight.yaml +++ b/themes/inksea-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inksea.inksea-theme" version: "3.3.0" installs: 12188 + rating: 5 + ratings: 3 author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" diff --git a/themes/inksea-oceanic.yaml b/themes/inksea-oceanic.yaml index a62e0d8f..e0ce03aa 100644 --- a/themes/inksea-oceanic.yaml +++ b/themes/inksea-oceanic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inksea.inksea-theme" version: "3.3.0" installs: 12188 + rating: 5 + ratings: 3 author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" diff --git a/themes/inksea-sea-monkey.yaml b/themes/inksea-sea-monkey.yaml index 50bbdec6..c951013c 100644 --- a/themes/inksea-sea-monkey.yaml +++ b/themes/inksea-sea-monkey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inksea.inksea-theme" version: "3.3.0" installs: 12188 + rating: 5 + ratings: 3 author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" diff --git a/themes/inksea.yaml b/themes/inksea.yaml index 65a6f5f8..5956895c 100644 --- a/themes/inksea.yaml +++ b/themes/inksea.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inksea.inksea-theme" version: "3.3.0" installs: 12188 + rating: 5 + ratings: 3 author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" diff --git a/themes/inkstained.yaml b/themes/inkstained.yaml index 7cec6c49..bd3eee4c 100644 --- a/themes/inkstained.yaml +++ b/themes/inkstained.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bfulop.inkstained" version: "0.1.5" installs: 358 + rating: 5 + ratings: 1 author: "Balint Fulop" repo: "https://github.com/bfulop/inkstained" url: "https://marketplace.visualstudio.com/items?itemName=bfulop.inkstained" diff --git a/themes/inovando-theme.yaml b/themes/inovando-theme.yaml index 9d84350b..33fa3bfd 100644 --- a/themes/inovando-theme.yaml +++ b/themes/inovando-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Inovando.inovando-theme" version: "1.0.2" installs: 630 + rating: 0 + ratings: 0 author: "Inovando" repo: "https://github.com/joaorodrs/inovando-theme" url: "https://marketplace.visualstudio.com/items?itemName=Inovando.inovando-theme" diff --git a/themes/insane.yaml b/themes/insane.yaml index 47a856eb..28c32978 100644 --- a/themes/insane.yaml +++ b/themes/insane.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VitorRubimPassos.insane-dark-theme" version: "2.0.1" installs: 823 + rating: 5 + ratings: 2 author: "Vitor Rubim Passos" repo: "https://github.com/vitorrubim1/insane-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=VitorRubimPassos.insane-dark-theme" diff --git a/themes/insight.yaml b/themes/insight.yaml index ca7e0175..96e50979 100644 --- a/themes/insight.yaml +++ b/themes/insight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "InsightTheme.insight" version: "0.0.5" installs: 1338 + rating: 5 + ratings: 2 author: "Insight Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=InsightTheme.insight" diff --git a/themes/inspiration.yaml b/themes/inspiration.yaml index 8a871295..0f4176c1 100644 --- a/themes/inspiration.yaml +++ b/themes/inspiration.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.inspiration" version: "0.0.19" installs: 1076 + rating: 5 + ratings: 1 author: "YesCode" repo: "https://github.com/yesomac/inspiration_themevsc" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" diff --git a/themes/instamuch.yaml b/themes/instamuch.yaml index 53f6b5c8..7ddccc41 100644 --- a/themes/instamuch.yaml +++ b/themes/instamuch.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "uditiarora.instamuch-vscode" version: "1.0.0" installs: 744 + rating: 0 + ratings: 0 author: "uditiarora" repo: "https://github.com/uditiarora/InstaMuch-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=uditiarora.instamuch-vscode" diff --git a/themes/intellij-dark-color-theme.yaml b/themes/intellij-dark-color-theme.yaml index 5f46eb55..6a08226e 100644 --- a/themes/intellij-dark-color-theme.yaml +++ b/themes/intellij-dark-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zerodind.familiar-java-themes" version: "0.1.7" installs: 58663 + rating: 5 + ratings: 13 author: "0dinD" repo: "https://gitlab.com/zerodind/familiar-java-themes" url: "https://marketplace.visualstudio.com/items?itemName=zerodind.familiar-java-themes" diff --git a/themes/intellij-idea-islands-dark.yaml b/themes/intellij-idea-islands-dark.yaml index 6eea91a5..c5a25927 100644 --- a/themes/intellij-idea-islands-dark.yaml +++ b/themes/intellij-idea-islands-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OleksandrHavrysh.vscode-intellij-theme" version: "1.1.1" installs: 2852 + rating: 5 + ratings: 2 author: "Oleksandr Havrysh" repo: "https://github.com/a-havrysh/vscode-intellij-theme" url: "https://marketplace.visualstudio.com/items?itemName=OleksandrHavrysh.vscode-intellij-theme" diff --git a/themes/intellij-idea-islands-light.yaml b/themes/intellij-idea-islands-light.yaml index c290c424..94cf14e5 100644 --- a/themes/intellij-idea-islands-light.yaml +++ b/themes/intellij-idea-islands-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OleksandrHavrysh.vscode-intellij-theme" version: "1.1.1" installs: 2852 + rating: 5 + ratings: 2 author: "Oleksandr Havrysh" repo: "https://github.com/a-havrysh/vscode-intellij-theme" url: "https://marketplace.visualstudio.com/items?itemName=OleksandrHavrysh.vscode-intellij-theme" diff --git a/themes/intellij-idea-new-ui.yaml b/themes/intellij-idea-new-ui.yaml index 6d7d13ee..152155bd 100644 --- a/themes/intellij-idea-new-ui.yaml +++ b/themes/intellij-idea-new-ui.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AnandaBibekRay.intellij-idea-new-ui-theme" version: "1.0.5" installs: 23361 + rating: 4 + ratings: 4 author: "Ananda Bibek Ray" repo: "https://github.com/anandbibek/vscode-intellij-new-ui-theme" url: "https://marketplace.visualstudio.com/items?itemName=AnandaBibekRay.intellij-idea-new-ui-theme" diff --git a/themes/intellij-light-color-theme.yaml b/themes/intellij-light-color-theme.yaml new file mode 100644 index 00000000..33f018c3 --- /dev/null +++ b/themes/intellij-light-color-theme.yaml @@ -0,0 +1,52 @@ +name: "intellij-light-color-theme" +source: + marketplace_id: "zerodind.familiar-java-themes" + version: "0.1.7" + installs: 58663 + rating: 5 + ratings: 13 + author: "0dinD" + repo: "https://gitlab.com/zerodind/familiar-java-themes" + url: "https://marketplace.visualstudio.com/items?itemName=zerodind.familiar-java-themes" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD0000" + green: "#00CD00" + yellow: "#C4A000" + blue: "#0000EE" + magenta: "#CD00CD" + cyan: "#00CCCC" + white: "#AAAAAA" + brightBlack: "#555555" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#EAEA00" + brightBlue: "#5C5CFF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 76.3 + green: 41.4 + yellow: 49 + blue: 88.1 + magenta: 70 + cyan: 38 + white: 45.8 + brightBlack: 85.9 + brightRed: 64.1 + brightGreen: 17.1 + brightYellow: 14.2 + brightBlue: 72.3 + brightMagenta: 55.6 + brightCyan: 11.8 + brightWhite: 0 diff --git a/themes/intellij-light-deaft.yaml b/themes/intellij-light-deaft.yaml index 596fee91..b211f268 100644 --- a/themes/intellij-light-deaft.yaml +++ b/themes/intellij-light-deaft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nejcbw.darcula-code" version: "1.0.9" installs: 1115 + rating: 5 + ratings: 1 author: "Nejc Brelih-Wasowski" repo: "https://github.com/nejcbw/darcula-code" url: "https://marketplace.visualstudio.com/items?itemName=nejcbw.darcula-code" diff --git a/themes/intelliyay-color-theme.yaml b/themes/intelliyay-color-theme.yaml index 41d80bfb..0000928a 100644 --- a/themes/intelliyay-color-theme.yaml +++ b/themes/intelliyay-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ale-ferrero.intelliyay-theme" version: "0.0.4" installs: 196 + rating: 0 + ratings: 0 author: "Alejandro Ferrero" repo: "https://github.com/aleferrero98/IntelliYay-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ale-ferrero.intelliyay-theme" diff --git a/themes/intergalactic.yaml b/themes/intergalactic.yaml index 76d71618..1fab12ee 100644 --- a/themes/intergalactic.yaml +++ b/themes/intergalactic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ssera-themes" version: "2.0.2" installs: 334 + rating: 0 + ratings: 0 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" diff --git a/themes/interstellar-blue-ii.yaml b/themes/interstellar-blue-ii.yaml index 5630a72a..18ca9b5c 100644 --- a/themes/interstellar-blue-ii.yaml +++ b/themes/interstellar-blue-ii.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JavRedstone.interstellar-blue" version: "0.5.0" installs: 1005 + rating: 5 + ratings: 1 author: "JavRedstone" repo: "https://github.com/JavRedstone/interstellar-blue-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JavRedstone.interstellar-blue" diff --git a/themes/interstellar-blue.yaml b/themes/interstellar-blue.yaml index 557a3584..88e2855f 100644 --- a/themes/interstellar-blue.yaml +++ b/themes/interstellar-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JavRedstone.interstellar-blue" version: "0.5.0" installs: 1005 + rating: 5 + ratings: 1 author: "JavRedstone" repo: "https://github.com/JavRedstone/interstellar-blue-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JavRedstone.interstellar-blue" diff --git a/themes/interstellar.yaml b/themes/interstellar.yaml index af184ef9..43659d21 100644 --- a/themes/interstellar.yaml +++ b/themes/interstellar.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NikhilKumar.interstellar-theme" version: "0.0.3" installs: 636 + rating: 5 + ratings: 2 author: "Nikhil Kumar" repo: "https://github.com/nikumar1206/Interstellar---VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=NikhilKumar.interstellar-theme" diff --git a/themes/intility-bifrost-theme.yaml b/themes/intility-bifrost-theme.yaml index 59dd2721..9daeb7f7 100644 --- a/themes/intility-bifrost-theme.yaml +++ b/themes/intility-bifrost-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "augigauki.intility-bifrost-theme" version: "0.1.7" installs: 309 + rating: 5 + ratings: 2 author: "August Gaukstad" repo: "https://github.com/Intility/bifrost-skins" url: "https://marketplace.visualstudio.com/items?itemName=augigauki.intility-bifrost-theme" diff --git a/themes/into-the-unknow-fork.yaml b/themes/into-the-unknow-fork.yaml index ab28ef7b..d4ae69cf 100644 --- a/themes/into-the-unknow-fork.yaml +++ b/themes/into-the-unknow-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" version: "9.0.1" installs: 29917 + rating: 4.6 + ratings: 10 author: "Hasibur R" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" diff --git a/themes/intrepid-darkness-light.yaml b/themes/intrepid-darkness-light.yaml index ec0b3602..36cbc13a 100644 --- a/themes/intrepid-darkness-light.yaml +++ b/themes/intrepid-darkness-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KeineAhnung.intepriddarkness" version: "1.9.2" installs: 218 + rating: 5 + ratings: 1 author: "KeineAhnung" repo: "https://github.com/TheKeineAhnung/Intrepid-Darkness" url: "https://marketplace.visualstudio.com/items?itemName=KeineAhnung.intepriddarkness" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 97.2 black: 0 diff --git a/themes/intrepid-darkness.yaml b/themes/intrepid-darkness.yaml index 15df7e56..412aa5ff 100644 --- a/themes/intrepid-darkness.yaml +++ b/themes/intrepid-darkness.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KeineAhnung.intepriddarkness" version: "1.9.2" installs: 218 + rating: 5 + ratings: 1 author: "KeineAhnung" repo: "https://github.com/TheKeineAhnung/Intrepid-Darkness" url: "https://marketplace.visualstudio.com/items?itemName=KeineAhnung.intepriddarkness" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 97.7 black: 0 diff --git a/themes/invi.yaml b/themes/invi.yaml index 435d8d9a..70d6d61f 100644 --- a/themes/invi.yaml +++ b/themes/invi.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Siris.invi" version: "0.2.2" installs: 635 + rating: 0 + ratings: 0 author: "Siris" repo: "https://github.com/Siris01/invi-vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=Siris.invi" diff --git a/themes/ionztorm-theme.yaml b/themes/ionztorm-theme.yaml index 17605148..b52297f6 100644 --- a/themes/ionztorm-theme.yaml +++ b/themes/ionztorm-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ionztorm.ionztorm-theme" version: "0.3.19" installs: 228 + rating: 5 + ratings: 1 author: "ionztorm" repo: "https://github.com/ionztorm/ionztorm-theme" url: "https://marketplace.visualstudio.com/items?itemName=ionztorm.ionztorm-theme" diff --git a/themes/iris-pink.yaml b/themes/iris-pink.yaml index 273cf3b8..dd06f6fa 100644 --- a/themes/iris-pink.yaml +++ b/themes/iris-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hongtrapt.pink-angel-themes" version: "0.0.2" installs: 273 + rating: 5 + ratings: 1 author: "hongtrapt" repo: "https://github.com/hongtra1311/pink-angel-themes" url: "https://marketplace.visualstudio.com/items?itemName=hongtrapt.pink-angel-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 304 + pair: null contrast: fg: 87.5 black: 0 diff --git a/themes/irishbruse-s-color-theme.yaml b/themes/irishbruse-s-color-theme.yaml index 87b8a9fb..19846cc0 100644 --- a/themes/irishbruse-s-color-theme.yaml +++ b/themes/irishbruse-s-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IrishBruse.dark-theme" version: "1.6.2" installs: 808 + rating: 0 + ratings: 0 author: "Ethan Conneely" repo: "https://github.com/IrishBruse/IrishBruse-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=IrishBruse.dark-theme" diff --git a/themes/ironhellrider.yaml b/themes/ironhellrider.yaml index cdcffb2a..85f5e939 100644 --- a/themes/ironhellrider.yaml +++ b/themes/ironhellrider.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ironhellrider.ironhellrider" version: "0.0.5" installs: 92 + rating: 0 + ratings: 0 author: "ironhellrider" repo: "https://bitbucket.org/Nikolay_Balkandzhiyski/ironhellrider_material_theme" url: "https://marketplace.visualstudio.com/items?itemName=ironhellrider.ironhellrider" diff --git a/themes/ironman-theme-dark.yaml b/themes/ironman-theme-dark.yaml index 99329179..62dccc94 100644 --- a/themes/ironman-theme-dark.yaml +++ b/themes/ironman-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rohit-chouhan.ironman-theme" version: "1.0.6" installs: 3739 + rating: 5 + ratings: 2 author: "Rohit Chouhan" repo: "https://github.com/rohit-chouhan/" url: "https://marketplace.visualstudio.com/items?itemName=rohit-chouhan.ironman-theme" diff --git a/themes/ironman-theme-light.yaml b/themes/ironman-theme-light.yaml index 65ceeccf..ea484dcd 100644 --- a/themes/ironman-theme-light.yaml +++ b/themes/ironman-theme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rohit-chouhan.ironman-theme" version: "1.0.6" installs: 3739 + rating: 5 + ratings: 2 author: "Rohit Chouhan" repo: "https://github.com/rohit-chouhan/" url: "https://marketplace.visualstudio.com/items?itemName=rohit-chouhan.ironman-theme" diff --git a/themes/irrus-float.yaml b/themes/irrus-float.yaml new file mode 100644 index 00000000..9f9f80f2 --- /dev/null +++ b/themes/irrus-float.yaml @@ -0,0 +1,52 @@ +name: "irrus-Float" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#1B1B1B" + fg: "#F2F5FC" + black: "#1B1B1B" + red: "#FF6364" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FF96CB" + magenta: "#FF96CB" + cyan: "#29C3A0" + white: "#F2F5FC" + brightBlack: "#1B1B1B" + brightRed: "#FF6364" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FF96CB" + brightMagenta: "#FF96CB" + brightCyan: "#29C3A0" + brightWhite: "#F2F5FC" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.8 + black: 0 + red: 45.8 + green: 57.2 + yellow: 51.2 + blue: 62.3 + magenta: 62.3 + cyan: 57.2 + white: 99.8 + brightBlack: 0 + brightRed: 45.8 + brightGreen: 57.2 + brightYellow: 51.2 + brightBlue: 62.3 + brightMagenta: 62.3 + brightCyan: 57.2 + brightWhite: 99.8 diff --git a/themes/is-them-tears-bro.yaml b/themes/is-them-tears-bro.yaml index 9c105c35..568b31d0 100644 --- a/themes/is-them-tears-bro.yaml +++ b/themes/is-them-tears-bro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "benji011.isthemtearsbro" version: "0.0.7" installs: 1332 + rating: 5 + ratings: 2 author: "benji011" repo: "https://github.com/benji011/is-them-tears-bro-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=benji011.isthemtearsbro" diff --git a/themes/isatoru.yaml b/themes/isatoru.yaml new file mode 100644 index 00000000..97335aad --- /dev/null +++ b/themes/isatoru.yaml @@ -0,0 +1,52 @@ +name: "isatoru" +source: + marketplace_id: "golden.isatoru" + version: "1.0.0" + installs: 22 + rating: 0 + ratings: 0 + author: "golden" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=golden.isatoru" +colors: + bg: "#1B1B1B" + fg: "#D3D3D3" + black: "#000000" + red: "#EC2929" + green: "#0DBC79" + yellow: "#DBFF00" + blue: "#2472C8" + magenta: "#C03FFD" + cyan: "#11A8CD" + white: "#D9D9D9" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#EDFF7E" + brightBlue: "#3B8EEA" + brightMagenta: "#DB8EFF" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 78.4 + black: 0 + red: 32.7 + green: 52.6 + yellow: 96.5 + blue: 27 + magenta: 34.9 + cyan: 47.1 + white: 82.1 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 99.7 + brightBlue: 39.6 + brightMagenta: 56.5 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/islands-dark.yaml b/themes/islands-dark.yaml index 096ffabb..353f00e0 100644 --- a/themes/islands-dark.yaml +++ b/themes/islands-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PhanTriVietHoang.island" version: "1.0.1" installs: 85 + rating: 0 + ratings: 0 author: "PhanTriVietHoang" repo: "https://github.com/phantriviethoang/wip" url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.island" diff --git a/themes/islands-light.yaml b/themes/islands-light.yaml index dfb02fe4..c615b564 100644 --- a/themes/islands-light.yaml +++ b/themes/islands-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kangsou.islands-theme" version: "1.0.5" installs: 2889 + rating: 5 + ratings: 1 author: "kangsou" repo: "https://github.com/guxiaohui/islands-theme" url: "https://marketplace.visualstudio.com/items?itemName=kangsou.islands-theme" diff --git a/themes/isotope-contrast.yaml b/themes/isotope-contrast.yaml index 41b0d84e..18e029c1 100644 --- a/themes/isotope-contrast.yaml +++ b/themes/isotope-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/isotope-light.yaml b/themes/isotope-light.yaml index fa43a3d6..746b4aa5 100644 --- a/themes/isotope-light.yaml +++ b/themes/isotope-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/isotope.yaml b/themes/isotope.yaml index b4169d13..8e278513 100644 --- a/themes/isotope.yaml +++ b/themes/isotope.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/itsnp-dark-cyan.yaml b/themes/itsnp-dark-cyan.yaml index fba8ddbc..e0215113 100644 --- a/themes/itsnp-dark-cyan.yaml +++ b/themes/itsnp-dark-cyan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sachit.itsnp-theme" version: "0.1.2" installs: 358 + rating: 5 + ratings: 2 author: "Sachit" repo: "https://github.com/ASACHIT/itsnp-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" diff --git a/themes/itsnp-dark-pink.yaml b/themes/itsnp-dark-pink.yaml index 36d4ab79..5c163bab 100644 --- a/themes/itsnp-dark-pink.yaml +++ b/themes/itsnp-dark-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sachit.itsnp-theme" version: "0.1.2" installs: 358 + rating: 5 + ratings: 2 author: "Sachit" repo: "https://github.com/ASACHIT/itsnp-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" diff --git a/themes/itsnp-dark.yaml b/themes/itsnp-dark.yaml index b2a31263..6edcbc3f 100644 --- a/themes/itsnp-dark.yaml +++ b/themes/itsnp-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sachit.itsnp-theme" version: "0.1.2" installs: 358 + rating: 5 + ratings: 2 author: "Sachit" repo: "https://github.com/ASACHIT/itsnp-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" diff --git a/themes/itsnp-night-blue.yaml b/themes/itsnp-night-blue.yaml index afacb838..7f4c34a3 100644 --- a/themes/itsnp-night-blue.yaml +++ b/themes/itsnp-night-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sachit.itsnp-theme" version: "0.1.2" installs: 358 + rating: 5 + ratings: 2 author: "Sachit" repo: "https://github.com/ASACHIT/itsnp-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" diff --git a/themes/itsnp-yellow.yaml b/themes/itsnp-yellow.yaml index 3ab8e683..8f4ce5c4 100644 --- a/themes/itsnp-yellow.yaml +++ b/themes/itsnp-yellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sachit.itsnp-theme" version: "0.1.2" installs: 358 + rating: 5 + ratings: 2 author: "Sachit" repo: "https://github.com/ASACHIT/itsnp-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" diff --git a/themes/iv-spade.yaml b/themes/iv-spade.yaml index 43b89df1..26bdf552 100644 --- a/themes/iv-spade.yaml +++ b/themes/iv-spade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "riyuzenn.iv" version: "0.0.3" installs: 1278 + rating: 5 + ratings: 2 author: "riyuzenn" repo: "https://github.com/riyuzenn/vscode" url: "https://marketplace.visualstudio.com/items?itemName=riyuzenn.iv" diff --git a/themes/ivalo-color-theme.yaml b/themes/ivalo-color-theme.yaml index 7e81f479..98ab7c01 100644 --- a/themes/ivalo-color-theme.yaml +++ b/themes/ivalo-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "naethiel.ivalo" version: "0.1.0" installs: 1566 + rating: 5 + ratings: 2 author: "Naethiel" repo: "https://github.com/naethiel/ivalo" url: "https://marketplace.visualstudio.com/items?itemName=naethiel.ivalo" diff --git a/themes/iwa-s-code-theme.yaml b/themes/iwa-s-code-theme.yaml index a4ba602f..76fd7553 100644 --- a/themes/iwa-s-code-theme.yaml +++ b/themes/iwa-s-code-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iwa.iwa-code-theme" version: "0.1.3" installs: 29 + rating: 0 + ratings: 0 author: "iwa" repo: "https://github.com/iwa/iwa-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=iwa.iwa-code-theme" diff --git a/themes/j-cinco-da-manh.yaml b/themes/j-cinco-da-manh.yaml index f5832ad4..ec5aa5f5 100644 --- a/themes/j-cinco-da-manh.yaml +++ b/themes/j-cinco-da-manh.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "euclidesgc.ja-eh-5-da-manha" version: "0.0.4" installs: 28 + rating: 0 + ratings: 0 author: "euclidesgc" repo: "https://github.com/euclidesgc/ja-eh-5-da-manha" url: "https://marketplace.visualstudio.com/items?itemName=euclidesgc.ja-eh-5-da-manha" diff --git a/themes/j-theme.yaml b/themes/j-theme.yaml index 1c812e84..2cb0134e 100644 --- a/themes/j-theme.yaml +++ b/themes/j-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JamesLoyd.jtheme" version: "0.0.1" installs: 137 + rating: 0 + ratings: 0 author: "JamesLoyd" repo: "https://github.com/JamesLoyd/JTheme" url: "https://marketplace.visualstudio.com/items?itemName=JamesLoyd.jtheme" diff --git a/themes/jabrms.yaml b/themes/jabrms.yaml index 32a89f29..5d4e45d9 100644 --- a/themes/jabrms.yaml +++ b/themes/jabrms.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jabrms.jabrms-color-theme" version: "0.0.1" installs: 265 + rating: 0 + ratings: 0 author: "jabrms" repo: "https://github.com/jabrms/vsc-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=jabrms.jabrms-color-theme" diff --git a/themes/jacaranda-theme.yaml b/themes/jacaranda-theme.yaml index 2be65889..98a94bae 100644 --- a/themes/jacaranda-theme.yaml +++ b/themes/jacaranda-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlejandroHernandez.jacarandatheme" version: "0.1.8" installs: 164 + rating: 0 + ratings: 0 author: "Alejandro Hernandez" repo: "https://github.com/josuebautista/JacarandaTheme" url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.jacarandatheme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "magenta" hue: 261 + pair: null contrast: fg: 77.8 black: 13.7 diff --git a/themes/jackhammar.yaml b/themes/jackhammar.yaml index 29ecd470..0380b5dd 100644 --- a/themes/jackhammar.yaml +++ b/themes/jackhammar.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "minako.wired" version: "2.0.5" installs: 4868 + rating: 0 + ratings: 0 author: "minako" repo: "https://github.com/kayliese/wired" url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" diff --git a/themes/jaga-theme.yaml b/themes/jaga-theme.yaml index c45d2cdd..53ee7c52 100644 --- a/themes/jaga-theme.yaml +++ b/themes/jaga-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sayam.jaga-theme" version: "1.0.3" installs: 63 + rating: 0 + ratings: 0 author: "Sayam" repo: "https://github.com/sayampradhan/jaga-theme" url: "https://marketplace.visualstudio.com/items?itemName=Sayam.jaga-theme" diff --git a/themes/jammy-jellyfish.yaml b/themes/jammy-jellyfish.yaml index 52385a61..9282097c 100644 --- a/themes/jammy-jellyfish.yaml +++ b/themes/jammy-jellyfish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kevinnorman.jammy-jellyfish-color-theme" version: "1.1.1" installs: 7085 + rating: 0 + ratings: 0 author: "Kevin Norman" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kevinnorman.jammy-jellyfish-color-theme" diff --git a/themes/jamuntheme.yaml b/themes/jamuntheme.yaml index 55de9f66..877e0385 100644 --- a/themes/jamuntheme.yaml +++ b/themes/jamuntheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mohitUpadhyayRohitUpadhyayAnujUpadhyay.jamunTheme" version: "0.3.0" installs: 139 + rating: 4.5 + ratings: 2 author: "mohitUpadhyayRohitUpadhyayAnujUpadhyay" repo: "https://github.com/Mohit5Upadhyay/vscode-jamunDarkTheme" url: "https://marketplace.visualstudio.com/items?itemName=mohitUpadhyayRohitUpadhyayAnujUpadhyay.jamunTheme" diff --git a/themes/jannchie-black.yaml b/themes/jannchie-black.yaml index 92a66bab..0cdf9e45 100644 --- a/themes/jannchie-black.yaml +++ b/themes/jannchie-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jannchie.theme-jannchie" version: "1.1.0" installs: 78 + rating: 5 + ratings: 1 author: "Jannchie" repo: "https://github.com/jannchie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" diff --git a/themes/jannchie-dark-soft.yaml b/themes/jannchie-dark-soft.yaml index 6dcd603c..638e2145 100644 --- a/themes/jannchie-dark-soft.yaml +++ b/themes/jannchie-dark-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jannchie.theme-jannchie" version: "1.1.0" installs: 78 + rating: 5 + ratings: 1 author: "Jannchie" repo: "https://github.com/jannchie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" diff --git a/themes/jannchie-dark.yaml b/themes/jannchie-dark.yaml index 42393ce2..cb4db854 100644 --- a/themes/jannchie-dark.yaml +++ b/themes/jannchie-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jannchie.theme-jannchie" version: "1.1.0" installs: 78 + rating: 5 + ratings: 1 author: "Jannchie" repo: "https://github.com/jannchie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" diff --git a/themes/jannchie-light-soft.yaml b/themes/jannchie-light-soft.yaml index 6cb2b83d..3e884db0 100644 --- a/themes/jannchie-light-soft.yaml +++ b/themes/jannchie-light-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jannchie.theme-jannchie" version: "1.1.0" installs: 78 + rating: 5 + ratings: 1 author: "Jannchie" repo: "https://github.com/jannchie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" diff --git a/themes/jannchie-light.yaml b/themes/jannchie-light.yaml index 2f8db185..d9f24fc9 100644 --- a/themes/jannchie-light.yaml +++ b/themes/jannchie-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jannchie.theme-jannchie" version: "1.1.0" installs: 78 + rating: 5 + ratings: 1 author: "Jannchie" repo: "https://github.com/jannchie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" diff --git a/themes/janus-light.yaml b/themes/janus-light.yaml index c6fdfa80..47a17c6f 100644 --- a/themes/janus-light.yaml +++ b/themes/janus-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Janus.janus-light" version: "0.2.4" installs: 119 + rating: 0 + ratings: 0 author: "Janus" repo: "https://github.com/Janus1984/janus-light" url: "https://marketplace.visualstudio.com/items?itemName=Janus.janus-light" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 98.5 black: 105.9 diff --git a/themes/japanese-breakfast.yaml b/themes/japanese-breakfast.yaml index 8721b483..e1a99d3b 100644 --- a/themes/japanese-breakfast.yaml +++ b/themes/japanese-breakfast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bigboi.legally-blind" version: "0.1.7" installs: 971 + rating: 5 + ratings: 3 author: "bigboi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=bigboi.legally-blind" diff --git a/themes/jartur.yaml b/themes/jartur.yaml index e51ce650..60e5ac83 100644 --- a/themes/jartur.yaml +++ b/themes/jartur.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jartur.j-artur-theme" version: "0.10.7" installs: 220 + rating: 0 + ratings: 0 author: "Jartur" repo: "https://github.com/j-artur/j-artur-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jartur.j-artur-theme" diff --git a/themes/jarvis-3d.yaml b/themes/jarvis-3d.yaml index 5dc99299..fdbc8632 100644 --- a/themes/jarvis-3d.yaml +++ b/themes/jarvis-3d.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nextgencode.jarvis-3d-theme" version: "1.1.0" installs: 77 + rating: 0 + ratings: 0 author: "NextGenCode" repo: "https://github.com/Mattzey/jarvis-3d-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.jarvis-3d-theme" diff --git a/themes/jarvis.yaml b/themes/jarvis.yaml index 7073769b..cf3d2037 100644 --- a/themes/jarvis.yaml +++ b/themes/jarvis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ArmandoChaparro.jarvisdarktheme" version: "1.6.0" installs: 1758 + rating: 5 + ratings: 1 author: "Armando Chaparro" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ArmandoChaparro.jarvisdarktheme" diff --git a/themes/jasmine.yaml b/themes/jasmine.yaml index 550f2a60..53ff327b 100644 --- a/themes/jasmine.yaml +++ b/themes/jasmine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "maneeshaindrachapa.jasmine" version: "0.0.2" installs: 2898 + rating: 5 + ratings: 3 author: "Maneesha Indrachapa" repo: "https://github.com/maneeshaindrachapa/jasmine-vscode" url: "https://marketplace.visualstudio.com/items?itemName=maneeshaindrachapa.jasmine" diff --git a/themes/java-dark-theme.yaml b/themes/java-dark-theme.yaml index e85aac19..3b8101f1 100644 --- a/themes/java-dark-theme.yaml +++ b/themes/java-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Heejunnet.java-dark-theme" version: "1.0.8" installs: 28 + rating: 0 + ratings: 0 author: "Heejun.net" repo: "https://github.com/popul9/java-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Heejunnet.java-dark-theme" diff --git a/themes/javascript-modern-dark.yaml b/themes/javascript-modern-dark.yaml index 04ce6c46..4464bca3 100644 --- a/themes/javascript-modern-dark.yaml +++ b/themes/javascript-modern-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tryToDEv.cyber-qoder-themes" version: "1.2.0" installs: 15 + rating: 0 + ratings: 0 author: "tryToDEv" repo: "https://github.com/shivam20/cyber-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" diff --git a/themes/javascript-neon-dark.yaml b/themes/javascript-neon-dark.yaml index 83090880..8a4c8f27 100644 --- a/themes/javascript-neon-dark.yaml +++ b/themes/javascript-neon-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tryToDEv.cyber-qoder-themes" version: "1.2.0" installs: 15 + rating: 0 + ratings: 0 author: "tryToDEv" repo: "https://github.com/shivam20/cyber-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" diff --git a/themes/javascript-vibrant-dark.yaml b/themes/javascript-vibrant-dark.yaml index ba8e8047..c85e0ba0 100644 --- a/themes/javascript-vibrant-dark.yaml +++ b/themes/javascript-vibrant-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tryToDEv.cyber-qoder-themes" version: "1.2.0" installs: 15 + rating: 0 + ratings: 0 author: "tryToDEv" repo: "https://github.com/shivam20/cyber-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" diff --git a/themes/jaytheme.yaml b/themes/jaytheme.yaml index ed6841d2..e4e1af27 100644 --- a/themes/jaytheme.yaml +++ b/themes/jaytheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jaywxl.jaytheme" version: "0.0.6" installs: 53 + rating: 0 + ratings: 0 author: "Jaywxl" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Jaywxl.jaytheme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 215 + pair: null contrast: fg: 70.6 black: 27.5 diff --git a/themes/jazari-dark.yaml b/themes/jazari-dark.yaml index 19d73b2f..a09ed4a3 100644 --- a/themes/jazari-dark.yaml +++ b/themes/jazari-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aala.jazari" version: "1.2.1" installs: 22 + rating: 0 + ratings: 0 author: "AALA IT Solutions" repo: "https://github.com/aalasolutions/vscode-jazari" url: "https://marketplace.visualstudio.com/items?itemName=aala.jazari" diff --git a/themes/jazari-light.yaml b/themes/jazari-light.yaml index 205aab4c..b2fd0321 100644 --- a/themes/jazari-light.yaml +++ b/themes/jazari-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aala.jazari" version: "1.2.1" installs: 22 + rating: 0 + ratings: 0 author: "AALA IT Solutions" repo: "https://github.com/aalasolutions/vscode-jazari" url: "https://marketplace.visualstudio.com/items?itemName=aala.jazari" diff --git a/themes/jbpc.yaml b/themes/jbpc.yaml new file mode 100644 index 00000000..b05a4341 --- /dev/null +++ b/themes/jbpc.yaml @@ -0,0 +1,52 @@ +name: "jbpc" +source: + marketplace_id: "infi.jbpc" + version: "0.0.2" + installs: 7454 + rating: 5 + ratings: 1 + author: "Infi" + repo: "https://github.com/infi/jbpc" + url: "https://marketplace.visualstudio.com/items?itemName=infi.jbpc" +colors: + bg: "#000000" + fg: "#8F93A2" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 44.3 + black: 0 + red: 44.6 + green: 85.2 + yellow: 79.9 + blue: 56.9 + magenta: 54.8 + cyan: 79.3 + white: 107.9 + brightBlack: 12.5 + brightRed: 44.6 + brightGreen: 85.2 + brightYellow: 79.9 + brightBlue: 56.9 + brightMagenta: 54.8 + brightCyan: 79.3 + brightWhite: 107.9 diff --git a/themes/jcardenas.yaml b/themes/jcardenas.yaml index 01c8d2f8..41106979 100644 --- a/themes/jcardenas.yaml +++ b/themes/jcardenas.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JCardenas.j-cardenas" version: "0.0.1" installs: 133 + rating: 0 + ratings: 0 author: "JCardenas" repo: "https://github.com/Car-png/jcardenas-theme" url: "https://marketplace.visualstudio.com/items?itemName=JCardenas.j-cardenas" diff --git a/themes/jcsoftiablack.yaml b/themes/jcsoftiablack.yaml index 21666440..5f3e7cb6 100644 --- a/themes/jcsoftiablack.yaml +++ b/themes/jcsoftiablack.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JCsoftIA.JCsoftIA" version: "1.5.3" installs: 8461 + rating: 5 + ratings: 2 author: "Dark Black Theme jcsoftia" repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" diff --git a/themes/jcsoftiadark.yaml b/themes/jcsoftiadark.yaml index 23fa8e21..aa330372 100644 --- a/themes/jcsoftiadark.yaml +++ b/themes/jcsoftiadark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JCsoftIA.JCsoftIA" version: "1.5.3" installs: 8461 + rating: 5 + ratings: 2 author: "Dark Black Theme jcsoftia" repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" diff --git a/themes/jcsoftiadarkblue.yaml b/themes/jcsoftiadarkblue.yaml index cc3c8c92..20f30812 100644 --- a/themes/jcsoftiadarkblue.yaml +++ b/themes/jcsoftiadarkblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JCsoftIA.JCsoftIA" version: "1.5.3" installs: 8461 + rating: 5 + ratings: 2 author: "Dark Black Theme jcsoftia" repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" diff --git a/themes/jcsoftiadarkred.yaml b/themes/jcsoftiadarkred.yaml index b324c81a..c6bf844d 100644 --- a/themes/jcsoftiadarkred.yaml +++ b/themes/jcsoftiadarkred.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JCsoftIA.JCsoftIA" version: "1.5.3" installs: 8461 + rating: 5 + ratings: 2 author: "Dark Black Theme jcsoftia" repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" diff --git a/themes/jd-s-abyss.yaml b/themes/jd-s-abyss.yaml index a0ce1d4b..e62b7597 100644 --- a/themes/jd-s-abyss.yaml +++ b/themes/jd-s-abyss.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jdboivin.jd-abyss" version: "2025.1.14" installs: 103 + rating: 0 + ratings: 0 author: "Jean-Denis Boivin" repo: "https://github.com/starburst997/jd-abyss" url: "https://marketplace.visualstudio.com/items?itemName=jdboivin.jd-abyss" diff --git a/themes/jdarkmaterial-v2.yaml b/themes/jdarkmaterial-v2.yaml index d14725a0..b6c44c0a 100644 --- a/themes/jdarkmaterial-v2.yaml +++ b/themes/jdarkmaterial-v2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jijin.jin-themes" version: "1.0.5" installs: 326 + rating: 5 + ratings: 1 author: "Jijin" repo: "https://github.com/JijinJayakumar/jin-themes" url: "https://marketplace.visualstudio.com/items?itemName=Jijin.jin-themes" diff --git a/themes/jdh.yaml b/themes/jdh.yaml index 64cb6a01..b6843801 100644 --- a/themes/jdh.yaml +++ b/themes/jdh.yaml @@ -1,50 +1,52 @@ name: "jdh" source: - marketplace_id: "starnumber.jdh-vimrc" + marketplace_id: "TopTickTom.jdh" version: "0.0.1" - installs: 465 - author: "StarNumber" + installs: 331 + rating: 5 + ratings: 1 + author: "TopTickTom" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=starnumber.jdh-vimrc" + url: "https://marketplace.visualstudio.com/items?itemName=TopTickTom.jdh" colors: - bg: "#262626" - fg: "#6C6C6C" - black: "#0C0C0C" - red: "#C50F1F" - green: "#178713" - yellow: "#C19C00" - blue: "#0037DA" - magenta: "#B4009E" - cyan: "#3B78FF" - white: "#C1C1C1" - brightBlack: "#585858" - brightRed: "#E74856" - brightGreen: "#16C60C" - brightYellow: "#F9F1A5" - brightBlue: "#3767D1" - brightMagenta: "#FF5F87" - brightCyan: "#61D6D6" - brightWhite: "#AFAFAF" + bg: "#202020" + fg: "#CFCFCF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#C49476" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5B289" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: mode: "dark" - accent: "purple" + accent: "pink" hue: null pair: null contrast: - fg: 22.5 + fg: 75.3 black: 0 - red: 20.7 - green: 26.9 - yellow: 48 - blue: 12.2 - magenta: 20.6 - cyan: 32.3 - white: 66.1 - brightBlack: 14.2 - brightRed: 33.8 - brightGreen: 54.4 - brightYellow: 93.9 - brightBlue: 23.2 + red: 25.6 + green: 51.9 + yellow: 47.8 + blue: 26.3 + magenta: 28.6 + cyan: 46.4 + white: 88.9 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 67 + brightBlue: 38.9 brightMagenta: 44.3 - brightCyan: 68.4 - brightWhite: 55.9 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/jehuty-dark.yaml b/themes/jehuty-dark.yaml index 38c6e8d8..2adf113f 100644 --- a/themes/jehuty-dark.yaml +++ b/themes/jehuty-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Meastblue.orbital-frame" version: "2.2.0" installs: 66 + rating: 0 + ratings: 0 author: "Meastblue" repo: "https://github.com/meastblue/orbital-frame-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" diff --git a/themes/jehuty-light.yaml b/themes/jehuty-light.yaml index 871c9821..cd386eca 100644 --- a/themes/jehuty-light.yaml +++ b/themes/jehuty-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Meastblue.orbital-frame" version: "2.2.0" installs: 66 + rating: 0 + ratings: 0 author: "Meastblue" repo: "https://github.com/meastblue/orbital-frame-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" diff --git a/themes/jelly-theme.yaml b/themes/jelly-theme.yaml index ca633034..72d90c74 100644 --- a/themes/jelly-theme.yaml +++ b/themes/jelly-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NemanjaManojlovic.jelly" version: "0.0.5" installs: 20209 + rating: 5 + ratings: 3 author: "Nemanja Manojlovic" repo: "https://github.com/Manojlovic1998/vscode-jelly-theme" url: "https://marketplace.visualstudio.com/items?itemName=NemanjaManojlovic.jelly" diff --git a/themes/jelly.yaml b/themes/jelly.yaml index 209e6280..73987c78 100644 --- a/themes/jelly.yaml +++ b/themes/jelly.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kylethebaker.jelly-theme" version: "0.0.4" installs: 21823 + rating: 0 + ratings: 0 author: "kylethebaker" repo: "https://github.com/kylethebaker/jelly-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kylethebaker.jelly-theme" diff --git a/themes/jellybeans-extended.yaml b/themes/jellybeans-extended.yaml new file mode 100644 index 00000000..fdf77c25 --- /dev/null +++ b/themes/jellybeans-extended.yaml @@ -0,0 +1,52 @@ +name: "Jellybeans Extended" +source: + marketplace_id: "YoonhoLee.jellybeans-extended" + version: "1.1.0" + installs: 9 + rating: 0 + ratings: 0 + author: "YoonhoLee" + repo: "https://github.com/yoonholee/jellybeans-extended" + url: "https://marketplace.visualstudio.com/items?itemName=YoonhoLee.jellybeans-extended" +colors: + bg: "#151515" + fg: "#E8E8D3" + black: "#333333" + red: "#CF6A4C" + green: "#99AD6A" + yellow: "#FAD07A" + blue: "#8197BF" + magenta: "#B267E6" + cyan: "#8FBFDC" + white: "#E8E8D3" + brightBlack: "#555555" + brightRed: "#E07060" + brightGreen: "#A9BD7A" + brightYellow: "#FFE08A" + brightBlue: "#91A7CF" + brightMagenta: "#C277F6" + brightCyan: "#9FCFEC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 91.2 + black: 0 + red: 37.6 + green: 52.8 + yellow: 80.6 + blue: 44.9 + magenta: 38.6 + cyan: 63.6 + white: 91.2 + brightBlack: 15.3 + brightRed: 42.7 + brightGreen: 61.6 + brightYellow: 88.7 + brightBlue: 53.3 + brightMagenta: 46.1 + brightCyan: 72.8 + brightWhite: 107.1 diff --git a/themes/jellybeans-theme.yaml b/themes/jellybeans-theme.yaml index 6cbbdb35..2f8d2a0d 100644 --- a/themes/jellybeans-theme.yaml +++ b/themes/jellybeans-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DimitarNonov.jellybeans-theme" version: "1.14.1" installs: 13628 + rating: 5 + ratings: 2 author: "Dimitar Nonov" repo: "https://github.com/DNonov/jellybeans-code" url: "https://marketplace.visualstudio.com/items?itemName=DimitarNonov.jellybeans-theme" diff --git a/themes/jellybeans.yaml b/themes/jellybeans.yaml index e5f1cb0a..51ad6c9c 100644 --- a/themes/jellybeans.yaml +++ b/themes/jellybeans.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sdwn.jellybeans-vscode-sdwn" version: "0.0.2" installs: 13 + rating: 0 + ratings: 0 author: "sdwn" repo: "https://github.com/sdawn29/jellybeans-vscode" url: "https://marketplace.visualstudio.com/items?itemName=sdwn.jellybeans-vscode-sdwn" diff --git a/themes/jellyfish.yaml b/themes/jellyfish.yaml index d372dbad..bfea9232 100644 --- a/themes/jellyfish.yaml +++ b/themes/jellyfish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ssera-themes" version: "2.0.2" installs: 334 + rating: 0 + ratings: 0 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" diff --git a/themes/jeng-light.yaml b/themes/jeng-light.yaml index 62210a16..f227a509 100644 --- a/themes/jeng-light.yaml +++ b/themes/jeng-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jeng.jeng-theme-light" version: "1.0.5" installs: 17376 + rating: 5 + ratings: 2 author: "jeng" repo: "https://github.com/jengjeng/jeng-theme-light" url: "https://marketplace.visualstudio.com/items?itemName=jeng.jeng-theme-light" diff --git a/themes/jetbrain-fleet-color.yaml b/themes/jetbrain-fleet-color.yaml index 7d5d9c95..b1985184 100644 --- a/themes/jetbrain-fleet-color.yaml +++ b/themes/jetbrain-fleet-color.yaml @@ -1,14 +1,16 @@ name: "Jetbrain-Fleet color" source: - marketplace_id: "verteres1001.anysphere-dark-greener" - version: "1.1.2" - installs: 785 - author: "verteres" - repo: "https://github.com/JohanTiniusSkjelberg/anysphere-greener" - url: "https://marketplace.visualstudio.com/items?itemName=verteres1001.anysphere-dark-greener" + marketplace_id: "madspace.echo-theme" + version: "1.0.0" + installs: 278 + rating: 0 + ratings: 0 + author: "madspace" + repo: "https://github.com/madspace/madspace-echo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=madspace.echo-theme" colors: - bg: "#181818" - fg: "#D6D6DD" + bg: "#0A0A0A" + fg: "#606060" black: "#676767" red: "#F14C4C" green: "#15AC91" @@ -16,35 +18,35 @@ colors: blue: "#4C9DF3" magenta: "#E567DC" cyan: "#75D3BA" - white: "#D6D6DD" + white: "#606060" brightBlack: "#676767" - brightRed: "#F14C4C" - brightGreen: "#69AF83" - brightYellow: "#E5B95C" - brightBlue: "#3993B1" + brightRed: "#994141" + brightGreen: "#15AC91" + brightYellow: "#9C7B35" + brightBlue: "#4C9DF3" brightMagenta: "#E567DC" brightCyan: "#75D3BA" - brightWhite: "#D6D6DD" + brightWhite: "#606060" meta: mode: "dark" accent: "pink" hue: null pair: null contrast: - fg: 80.9 - black: 22.4 - red: 38.5 - green: 46.5 - yellow: 67.1 - blue: 46.7 - magenta: 46.4 - cyan: 68.8 - white: 80.9 - brightBlack: 22.4 - brightRed: 38.5 - brightGreen: 50.1 - brightYellow: 67.1 - brightBlue: 38.2 - brightMagenta: 46.4 - brightCyan: 68.8 - brightWhite: 80.9 + fg: 20.4 + black: 23.3 + red: 39.4 + green: 47.5 + yellow: 68.1 + blue: 47.7 + magenta: 47.3 + cyan: 69.8 + white: 20.4 + brightBlack: 23.3 + brightRed: 19.7 + brightGreen: 47.5 + brightYellow: 34.6 + brightBlue: 47.7 + brightMagenta: 47.3 + brightCyan: 69.8 + brightWhite: 20.4 diff --git a/themes/jetbrains-dark-theme.yaml b/themes/jetbrains-dark-theme.yaml index f02259ef..bdbfbac8 100644 --- a/themes/jetbrains-dark-theme.yaml +++ b/themes/jetbrains-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kenethriera.jb-theme" version: "1.0.27" installs: 5693 + rating: 5 + ratings: 4 author: "Keneth Riera" repo: "https://github.com/rierarizzo/jetbrains-theme" url: "https://marketplace.visualstudio.com/items?itemName=kenethriera.jb-theme" diff --git a/themes/jetbrains-deep-dark-theme.yaml b/themes/jetbrains-deep-dark-theme.yaml index c17a034b..ecd585ce 100644 --- a/themes/jetbrains-deep-dark-theme.yaml +++ b/themes/jetbrains-deep-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kenethriera.jb-theme" version: "1.0.27" installs: 5693 + rating: 5 + ratings: 4 author: "Keneth Riera" repo: "https://github.com/rierarizzo/jetbrains-theme" url: "https://marketplace.visualstudio.com/items?itemName=kenethriera.jb-theme" diff --git a/themes/jetbrains-ide-dark-theme.yaml b/themes/jetbrains-ide-dark-theme.yaml index 72c5314b..5091de35 100644 --- a/themes/jetbrains-ide-dark-theme.yaml +++ b/themes/jetbrains-ide-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mdmarufsarker.maruf-sarker" version: "0.1.1" installs: 29154 + rating: 5 + ratings: 6 author: "Md. Maruf Sarker" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" diff --git a/themes/jetcode.yaml b/themes/jetcode.yaml index 8d572252..92fe28ef 100644 --- a/themes/jetcode.yaml +++ b/themes/jetcode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "justanotherbyte.jetcode" version: "0.0.3" installs: 652 + rating: 5 + ratings: 1 author: "justanotherbyte" repo: "https://github.com/justanotherbyte/jetcode" url: "https://marketplace.visualstudio.com/items?itemName=justanotherbyte.jetcode" diff --git a/themes/jetdark.yaml b/themes/jetdark.yaml index 3279930d..0239b1df 100644 --- a/themes/jetdark.yaml +++ b/themes/jetdark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexanderAlekseenko.jetdark" version: "1.2.0" installs: 2126 + rating: 5 + ratings: 2 author: "Alexander Alekseenko" repo: "https://github.com/Akaike/vsc-jetdark-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.jetdark" diff --git a/themes/jetvibe-darcula.yaml b/themes/jetvibe-darcula.yaml new file mode 100644 index 00000000..315d478d --- /dev/null +++ b/themes/jetvibe-darcula.yaml @@ -0,0 +1,52 @@ +name: "JetVibe Darcula" +source: + marketplace_id: "igorhaf.jetvibe" + version: "0.1.11" + installs: 80 + rating: 0 + ratings: 0 + author: "Igor Herson" + repo: "https://github.com/igorhaf/jetvibe" + url: "https://marketplace.visualstudio.com/items?itemName=igorhaf.jetvibe" +colors: + bg: "#1E1F22" + fg: "#E2E8F0" + black: "#000000" + red: "#CC6666" + green: "#6A8759" + yellow: "#C2C277" + blue: "#6699CC" + magenta: "#B77DBA" + cyan: "#5FB3B3" + white: "#A9B7C6" + brightBlack: "#5B5B5B" + brightRed: "#FF6B68" + brightGreen: "#8DCB6C" + brightYellow: "#E6E677" + brightBlue: "#7CA7D8" + brightMagenta: "#CFA0D4" + brightCyan: "#7FCFCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 90.5 + black: 0 + red: 35.5 + green: 32.2 + yellow: 65.4 + blue: 43.2 + magenta: 41.2 + cyan: 52.1 + white: 60.5 + brightBlack: 16.5 + brightRed: 47.1 + brightGreen: 63.7 + brightYellow: 86.2 + brightBlue: 50.8 + brightMagenta: 57.4 + brightCyan: 67.7 + brightWhite: 105.9 diff --git a/themes/jewel-contrast.yaml b/themes/jewel-contrast.yaml index 7821ef37..4a345f31 100644 --- a/themes/jewel-contrast.yaml +++ b/themes/jewel-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/jewel-light.yaml b/themes/jewel-light.yaml index cce8c2b9..007e1b28 100644 --- a/themes/jewel-light.yaml +++ b/themes/jewel-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/jewel.yaml b/themes/jewel.yaml index 0cff99b2..719b4672 100644 --- a/themes/jewel.yaml +++ b/themes/jewel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/jg-vsc.yaml b/themes/jg-vsc.yaml index 9fd2df17..2c01719b 100644 --- a/themes/jg-vsc.yaml +++ b/themes/jg-vsc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JasonGuro.jg-vsc" version: "0.0.2" installs: 665 + rating: 0 + ratings: 0 author: "Jason Guro" repo: "https://github.com/jay-guro/jg-vsc" url: "https://marketplace.visualstudio.com/items?itemName=JasonGuro.jg-vsc" diff --git a/themes/jingle-contrast.yaml b/themes/jingle-contrast.yaml index 9d5f6564..75f077b5 100644 --- a/themes/jingle-contrast.yaml +++ b/themes/jingle-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/jingle-light.yaml b/themes/jingle-light.yaml index 90b2bf43..a35da7bf 100644 --- a/themes/jingle-light.yaml +++ b/themes/jingle-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/jingle.yaml b/themes/jingle.yaml index 4f3d1a98..945b7016 100644 --- a/themes/jingle.yaml +++ b/themes/jingle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/jinglecode.yaml b/themes/jinglecode.yaml index 58e40227..3b1ba65a 100644 --- a/themes/jinglecode.yaml +++ b/themes/jinglecode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ayyucedemirbas.jinglecode" version: "0.0.1" installs: 56 + rating: 0 + ratings: 0 author: "ayyucedemirbas" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ayyucedemirbas.jinglecode" diff --git a/themes/jinshi-dark-theme.yaml b/themes/jinshi-dark-theme.yaml index 5a4297d6..1a01a3be 100644 --- a/themes/jinshi-dark-theme.yaml +++ b/themes/jinshi-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "apothecary-diary-theme.apothecary-diary-theme" version: "0.1.0" installs: 59 + rating: 0 + ratings: 0 author: "Matheus Montemurro" repo: "https://github.com/montemurro19/apothecary-diary-theme" url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" diff --git a/themes/jinshi-light-theme.yaml b/themes/jinshi-light-theme.yaml index 41986c26..d86662b2 100644 --- a/themes/jinshi-light-theme.yaml +++ b/themes/jinshi-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "apothecary-diary-theme.apothecary-diary-theme" version: "0.1.0" installs: 59 + rating: 0 + ratings: 0 author: "Matheus Montemurro" repo: "https://github.com/montemurro19/apothecary-diary-theme" url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" diff --git a/themes/jinx.yaml b/themes/jinx.yaml index 0073fd08..2836badc 100644 --- a/themes/jinx.yaml +++ b/themes/jinx.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Volskaya.irrelevant" version: "0.0.2" installs: 33 + rating: 0 + ratings: 0 author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" diff --git a/themes/jk.yaml b/themes/jk.yaml index 15ccf1f7..69cb7765 100644 --- a/themes/jk.yaml +++ b/themes/jk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JsonKody.jk" version: "0.0.2" installs: 85 + rating: 0 + ratings: 0 author: "JsonKody" repo: "https://github.com/JsonKody/jk-theme" url: "https://marketplace.visualstudio.com/items?itemName=JsonKody.jk" diff --git a/themes/jker-purple-wave.yaml b/themes/jker-purple-wave.yaml index 7941e1e9..607f387a 100644 --- a/themes/jker-purple-wave.yaml +++ b/themes/jker-purple-wave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jker.purple-wave" version: "1.0.1" installs: 8191 + rating: 0 + ratings: 0 author: "jker" repo: "https://github.com/guidolee/jker-purple-wave" url: "https://marketplace.visualstudio.com/items?itemName=jker.purple-wave" diff --git a/themes/jngl.yaml b/themes/jngl.yaml index b3a2c5fe..71c0fd02 100644 --- a/themes/jngl.yaml +++ b/themes/jngl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jrnxf.jngl" version: "0.0.10" installs: 17 + rating: 0 + ratings: 0 author: "jrnxf" repo: "https://github.com/jrnxf/jngl" url: "https://marketplace.visualstudio.com/items?itemName=jrnxf.jngl" diff --git a/themes/jo-o-campos-theme.yaml b/themes/jo-o-campos-theme.yaml new file mode 100644 index 00000000..dd34b6f1 --- /dev/null +++ b/themes/jo-o-campos-theme.yaml @@ -0,0 +1,50 @@ +name: "João Campos Theme" +source: + marketplace_id: "JooCampos.joao-campos-dark-theme" + version: "0.0.6" + installs: 28 + author: "João Campos" + repo: "https://github.com/joaonevescampos/joao-campos-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JooCampos.joao-campos-dark-theme" +colors: + bg: "#141D2E" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 263 + pair: null + contrast: + fg: 106.1 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29 + cyan: 46.8 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.8 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.6 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/jocelyn.yaml b/themes/jocelyn.yaml new file mode 100644 index 00000000..1062bf81 --- /dev/null +++ b/themes/jocelyn.yaml @@ -0,0 +1,52 @@ +name: "Jocelyn" +source: + marketplace_id: "sspantz.jocelyn" + version: "0.1.1" + installs: 214 + rating: 0 + ratings: 0 + author: "sspantz" + repo: "https://github.com/sspantz/jocelyn-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sspantz.jocelyn" +colors: + bg: "#2A2A2E" + fg: "#B1B1B3" + black: "#2A2A2E" + red: "#CC3D3D" + green: "#86DE74" + yellow: "#FCE2A1" + blue: "#6B89FF" + magenta: "#FF1493" + cyan: "#FF1493" + white: "#FFFFFF" + brightBlack: "#0C0C0D" + brightRed: "#CC3D3D" + brightGreen: "#76EE00" + brightYellow: "#FCE2A1" + brightBlue: "#6B89FF" + brightMagenta: "#FF1493" + brightCyan: "#FF1493" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 56.3 + black: 0 + red: 25.1 + green: 70.4 + yellow: 86.6 + blue: 39.4 + magenta: 36.3 + cyan: 36.3 + white: 104 + brightBlack: 0 + brightRed: 25.1 + brightGreen: 76.4 + brightYellow: 86.6 + brightBlue: 39.4 + brightMagenta: 36.3 + brightCyan: 36.3 + brightWhite: 104 diff --git a/themes/jojobii-s-colors.yaml b/themes/jojobii-s-colors.yaml index 9b177563..6bf5247e 100644 --- a/themes/jojobii-s-colors.yaml +++ b/themes/jojobii-s-colors.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jojobii.jojobii-vscode-colors" version: "0.1.0" installs: 253 + rating: 0 + ratings: 0 author: "jojobii" repo: "https://github.com/jojobii-arks/jojobii-arks" url: "https://marketplace.visualstudio.com/items?itemName=jojobii.jojobii-vscode-colors" diff --git a/themes/jokejoke.yaml b/themes/jokejoke.yaml index 563cbe27..66898166 100644 --- a/themes/jokejoke.yaml +++ b/themes/jokejoke.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodeBabel.codebabel-theme-jok" version: "0.0.0" installs: 170 + rating: 5 + ratings: 1 author: "CodeBabel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CodeBabel.codebabel-theme-jok" diff --git a/themes/jokenkai.yaml b/themes/jokenkai.yaml index da6cc4a1..22551fcc 100644 --- a/themes/jokenkai.yaml +++ b/themes/jokenkai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EduardoAlmeida.jokenpo-theme" version: "0.2.1" installs: 151 + rating: 0 + ratings: 0 author: "Eduardo Almeida" repo: "https://github.com/JoKenPo/jokenpo-theme" url: "https://marketplace.visualstudio.com/items?itemName=EduardoAlmeida.jokenpo-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 86.3 black: 0 diff --git a/themes/jokenpo-obscure.yaml b/themes/jokenpo-obscure.yaml index 26d2b103..5d491ca6 100644 --- a/themes/jokenpo-obscure.yaml +++ b/themes/jokenpo-obscure.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EduardoAlmeida.jokenpo-theme" version: "0.2.1" installs: 151 + rating: 0 + ratings: 0 author: "Eduardo Almeida" repo: "https://github.com/JoKenPo/jokenpo-theme" url: "https://marketplace.visualstudio.com/items?itemName=EduardoAlmeida.jokenpo-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: 296 + pair: null contrast: fg: 87.6 black: 0 diff --git a/themes/joker-contrast.yaml b/themes/joker-contrast.yaml index 5b91463e..04e3c28f 100644 --- a/themes/joker-contrast.yaml +++ b/themes/joker-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/joker-light.yaml b/themes/joker-light.yaml index 88613dad..2773fa20 100644 --- a/themes/joker-light.yaml +++ b/themes/joker-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/joker-neon.yaml b/themes/joker-neon.yaml index 25fae071..9c1e784a 100644 --- a/themes/joker-neon.yaml +++ b/themes/joker-neon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fidelp27.joker-neon-theme" version: "1.0.1" installs: 271 + rating: 0 + ratings: 0 author: "fidelp27" repo: "https://github.com/fidelp27/joker-neon-theme" url: "https://marketplace.visualstudio.com/items?itemName=fidelp27.joker-neon-theme" diff --git a/themes/joker.yaml b/themes/joker.yaml index d5280482..4af4a37c 100644 --- a/themes/joker.yaml +++ b/themes/joker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/jollifake.yaml b/themes/jollifake.yaml index 837bc844..bda26022 100644 --- a/themes/jollifake.yaml +++ b/themes/jollifake.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jeooo.jollifake" version: "1.0.0" installs: 1038 + rating: 0 + ratings: 0 author: "jeooo`" repo: "https://github.com/jeoooo/jollifake" url: "https://marketplace.visualstudio.com/items?itemName=jeooo.jollifake" diff --git a/themes/jolly-light.yaml b/themes/jolly-light.yaml index 98df143b..fbc44eea 100644 --- a/themes/jolly-light.yaml +++ b/themes/jolly-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SeanBrynjolfsson.jolly" version: "1.0.2" installs: 10 + rating: 0 + ratings: 0 author: "Sean Brynjolfsson" repo: "https://github.com/jolfss/jolly-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SeanBrynjolfsson.jolly" diff --git a/themes/jone-light.yaml b/themes/jone-light.yaml index 9f97b304..1dd20686 100644 --- a/themes/jone-light.yaml +++ b/themes/jone-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jonxie.jone-theme" version: "0.3.2" installs: 1041 + rating: 0 + ratings: 0 author: "Jone Xie" repo: "https://github.com/Jefxie/jone-theme" url: "https://marketplace.visualstudio.com/items?itemName=jonxie.jone-theme" diff --git a/themes/josi.yaml b/themes/josi.yaml index 416c461c..6afd66de 100644 --- a/themes/josi.yaml +++ b/themes/josi.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fabioruicci.josi" version: "0.3.1" installs: 255 + rating: 0 + ratings: 0 author: "Fabio Ruicci" repo: "git://github.com/fabioruicci/josi-theme" url: "https://marketplace.visualstudio.com/items?itemName=fabioruicci.josi" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 72.1 black: 23.2 diff --git a/themes/jott4c-dark.yaml b/themes/jott4c-dark.yaml index 47b5eb10..0759f750 100644 --- a/themes/jott4c-dark.yaml +++ b/themes/jott4c-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jott4c.jott4c-dark" version: "0.0.1" installs: 49 + rating: 0 + ratings: 0 author: "junior alencar da cunha" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jott4c.jott4c-dark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 104.5 black: 0 diff --git a/themes/joyboy.yaml b/themes/joyboy.yaml index 12ee6ea1..b2a10034 100644 --- a/themes/joyboy.yaml +++ b/themes/joyboy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AdityaPrasad.joyboy-vscode-theme" version: "1.0.0" installs: 30 + rating: 0 + ratings: 0 author: "Aditya Prasad" repo: "https://github.com/AdityaP183/joyboy" url: "https://marketplace.visualstudio.com/items?itemName=AdityaPrasad.joyboy-vscode-theme" diff --git a/themes/joyful-fork-fork.yaml b/themes/joyful-fork-fork.yaml new file mode 100644 index 00000000..a7f25128 --- /dev/null +++ b/themes/joyful-fork-fork.yaml @@ -0,0 +1,52 @@ +name: "Joyful - Fork - Fork" +source: + marketplace_id: "EmeAim.aim" + version: "0.0.8" + installs: 1797 + rating: 5 + ratings: 1 + author: "EmeAim" + repo: "https://github.com/EmePin/aim-themes" + url: "https://marketplace.visualstudio.com/items?itemName=EmeAim.aim" +colors: + bg: "#373E4D" + fg: "#F9F9F9" + black: "#000000" + red: "#FA5AA4" + green: "#2BE491" + yellow: "#FA946E" + blue: "#89CCF7" + magenta: "#CF8EF4" + cyan: "#63C5EA" + white: "#F9F9F9" + brightBlack: "#666666" + brightRed: "#FA74B2" + brightGreen: "#44EB9F" + brightYellow: "#FAA687" + brightBlue: "#A1D5F7" + brightMagenta: "#D8A6F4" + brightCyan: "#7ACBEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 265 + pair: null + contrast: + fg: 94.8 + black: 9 + red: 37.3 + green: 65.1 + yellow: 50 + blue: 62 + magenta: 46.3 + cyan: 55.8 + white: 94.8 + brightBlack: 13.9 + brightRed: 43.3 + brightGreen: 69.5 + brightYellow: 56.5 + brightBlue: 68 + brightMagenta: 55.5 + brightCyan: 59.7 + brightWhite: 98.8 diff --git a/themes/js-dark-theme.yaml b/themes/js-dark-theme.yaml index 2c9b93f8..f12aa598 100644 --- a/themes/js-dark-theme.yaml +++ b/themes/js-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AbdulnasirOlcan.js-dark-theme" version: "1.1.3" installs: 2215 + rating: 5 + ratings: 3 author: "Abdulnasir Olcan" repo: "https://github.com/jsdeveloperr/JS-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=AbdulnasirOlcan.js-dark-theme" diff --git a/themes/jtvscode-dark.yaml b/themes/jtvscode-dark.yaml index 398fb3eb..494e4ec6 100644 --- a/themes/jtvscode-dark.yaml +++ b/themes/jtvscode-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "javiertdev.jtvscode" version: "1.0.0" installs: 18 + rating: 0 + ratings: 0 author: "javiert.dev" repo: "https://github.com/javiertdev/jtVSCode" url: "https://marketplace.visualstudio.com/items?itemName=javiertdev.jtvscode" diff --git a/themes/jtvscode-light.yaml b/themes/jtvscode-light.yaml index 4c772488..8800b6b3 100644 --- a/themes/jtvscode-light.yaml +++ b/themes/jtvscode-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "javiertdev.jtvscode" version: "1.0.0" installs: 18 + rating: 0 + ratings: 0 author: "javiert.dev" repo: "https://github.com/javiertdev/jtVSCode" url: "https://marketplace.visualstudio.com/items?itemName=javiertdev.jtvscode" diff --git a/themes/jugal13-theme.yaml b/themes/jugal13-theme.yaml index a0c73bc5..5495dc43 100644 --- a/themes/jugal13-theme.yaml +++ b/themes/jugal13-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jugal13.jugal13-theme" version: "1.1.4" installs: 169 + rating: 5 + ratings: 1 author: "Jugal" repo: "https://github.com/jugalw13/jugal13-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jugal13.jugal13-theme" diff --git a/themes/juicy-contrast.yaml b/themes/juicy-contrast.yaml index b6b14bff..47fe5b0a 100644 --- a/themes/juicy-contrast.yaml +++ b/themes/juicy-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/juicy-light.yaml b/themes/juicy-light.yaml index 840a9c5c..8499132d 100644 --- a/themes/juicy-light.yaml +++ b/themes/juicy-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/juicy.yaml b/themes/juicy.yaml index 0837828e..bf2693dd 100644 --- a/themes/juicy.yaml +++ b/themes/juicy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/july-summer-vibes-dark-theme.yaml b/themes/july-summer-vibes-dark-theme.yaml index b1348651..2379bc38 100644 --- a/themes/july-summer-vibes-dark-theme.yaml +++ b/themes/july-summer-vibes-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/jumper-contrast.yaml b/themes/jumper-contrast.yaml index 925606c1..8b853eee 100644 --- a/themes/jumper-contrast.yaml +++ b/themes/jumper-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/jumper-light.yaml b/themes/jumper-light.yaml index 5e14c5fa..5817a036 100644 --- a/themes/jumper-light.yaml +++ b/themes/jumper-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/jumper.yaml b/themes/jumper.yaml index 1760a3ed..0038eac7 100644 --- a/themes/jumper.yaml +++ b/themes/jumper.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/jungle.yaml b/themes/jungle.yaml index 13a1a904..06d9dd69 100644 --- a/themes/jungle.yaml +++ b/themes/jungle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nerudevs.jungle-scenario" version: "1.0.1" installs: 415 + rating: 5 + ratings: 1 author: "neru devs" repo: "https://github.com/isneru/vsc-themes.git#main" url: "https://marketplace.visualstudio.com/items?itemName=nerudevs.jungle-scenario" diff --git a/themes/juniorcoder.yaml b/themes/juniorcoder.yaml index ac6ccc92..2daf0719 100644 --- a/themes/juniorcoder.yaml +++ b/themes/juniorcoder.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JuniorCoder.juniorcoders-theme" version: "1.0.1" installs: 106 + rating: 0 + ratings: 0 author: "JuniorCoder" repo: "https://github.com/juniorcoder2008/theme" url: "https://marketplace.visualstudio.com/items?itemName=JuniorCoder.juniorcoders-theme" diff --git a/themes/just-code-already-fork.yaml b/themes/just-code-already-fork.yaml index 5a77e9ad..771cf5db 100644 --- a/themes/just-code-already-fork.yaml +++ b/themes/just-code-already-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FaustVI00.FaustVI00" version: "0.0.1" installs: 79 + rating: 5 + ratings: 1 author: "FaustVI00" repo: null url: "https://marketplace.visualstudio.com/items?itemName=FaustVI00.FaustVI00" diff --git a/themes/jwrdark.yaml b/themes/jwrdark.yaml index a845644b..c14191de 100644 --- a/themes/jwrdark.yaml +++ b/themes/jwrdark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "oloier.jwrdark" version: "0.2.0" installs: 160 + rating: 0 + ratings: 0 author: "oloier" repo: "https://github.com/oloier/jwrdark-theme" url: "https://marketplace.visualstudio.com/items?itemName=oloier.jwrdark" diff --git a/themes/k-relaxed.yaml b/themes/k-relaxed.yaml index dd54fdcf..d828b505 100644 --- a/themes/k-relaxed.yaml +++ b/themes/k-relaxed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tarikkavaz.k-relaxed" version: "1.0.0" installs: 15 + rating: 0 + ratings: 0 author: "Tarik Kavaz" repo: "https://github.com/tarikkavaz/K-Relaxed-VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=tarikkavaz.k-relaxed" diff --git a/themes/kabukich.yaml b/themes/kabukich.yaml index 82215e76..a9aa5925 100644 --- a/themes/kabukich.yaml +++ b/themes/kabukich.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VictoriaDrake.kabukicho" version: "0.0.6" installs: 23230 + rating: 4.57 + ratings: 7 author: "Victoria Drake" repo: "https://github.com/victoriadrake/kabukicho-vscode" url: "https://marketplace.visualstudio.com/items?itemName=VictoriaDrake.kabukicho" diff --git a/themes/kadaxi-colors.yaml b/themes/kadaxi-colors.yaml new file mode 100644 index 00000000..cd7ccb7c --- /dev/null +++ b/themes/kadaxi-colors.yaml @@ -0,0 +1,52 @@ +name: "kadaxi colors" +source: + marketplace_id: "kadaxi.kadaxi-dark-theme" + version: "0.1.1" + installs: 83 + rating: 0 + ratings: 0 + author: "kadaxi" + repo: "https://github.com/kadaxi/kadaxi-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kadaxi.kadaxi-dark-theme" +colors: + bg: "#191919" + fg: "#FDFDFD" + black: "#000000" + red: "#A54C3F" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#497099" + magenta: "#C792EA" + cyan: "#68A3A4" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#A54C3F" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#497099" + brightMagenta: "#C792EA" + brightCyan: "#68A3A4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 105.3 + black: 0 + red: 22.7 + green: 84 + yellow: 78.7 + blue: 25 + magenta: 53.5 + cyan: 46 + white: 106.7 + brightBlack: 10.7 + brightRed: 22.7 + brightGreen: 84 + brightYellow: 78.7 + brightBlue: 25 + brightMagenta: 53.5 + brightCyan: 46 + brightWhite: 106.7 diff --git a/themes/kadoku.yaml b/themes/kadoku.yaml index d142f893..19b910b9 100644 --- a/themes/kadoku.yaml +++ b/themes/kadoku.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ktnyt.kadoku" version: "0.0.2" installs: 46 + rating: 0 + ratings: 0 author: "ktnyt" repo: "https://github.com/ktnyt/kadoku" url: "https://marketplace.visualstudio.com/items?itemName=ktnyt.kadoku" diff --git a/themes/kai-garbage.yaml b/themes/kai-garbage.yaml index 6e7f77ec..e858b7b4 100644 --- a/themes/kai-garbage.yaml +++ b/themes/kai-garbage.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kaikaci.dark-garbage-theme" version: "0.0.1" installs: 41 + rating: 0 + ratings: 0 author: "Kai kaci" repo: "https://github.com/Lukalukito/kai.garbage-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=Kaikaci.dark-garbage-theme" diff --git a/themes/kai-sa-white-fork.yaml b/themes/kai-sa-white-fork.yaml index ab4f3732..0654f838 100644 --- a/themes/kai-sa-white-fork.yaml +++ b/themes/kai-sa-white-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EmeAim.aim" version: "0.0.8" installs: 1797 + rating: 5 + ratings: 1 author: "EmeAim" repo: "https://github.com/EmePin/aim-themes" url: "https://marketplace.visualstudio.com/items?itemName=EmeAim.aim" diff --git a/themes/kai.yaml b/themes/kai.yaml index 18998715..00b23753 100644 --- a/themes/kai.yaml +++ b/themes/kai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "igordvlpr.kai-theme" version: "1.0.4" installs: 1614 + rating: 5 + ratings: 3 author: "Igor Dimitrijević" repo: "https://github.com/igorskyflyer/vscode-theme-kai" url: "https://marketplace.visualstudio.com/items?itemName=igordvlpr.kai-theme" diff --git a/themes/kailash-shaw-dark-theme.yaml b/themes/kailash-shaw-dark-theme.yaml index 8746c3ad..1d3f50c1 100644 --- a/themes/kailash-shaw-dark-theme.yaml +++ b/themes/kailash-shaw-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vs-code-red-theme.vs-code-red-theme" version: "0.3.0" installs: 596 + rating: 0 + ratings: 0 author: "vs-code-red-theme" repo: "https://github.com/karmickphp61/vs-code-red-theme" url: "https://marketplace.visualstudio.com/items?itemName=vs-code-red-theme.vs-code-red-theme" diff --git a/themes/kaimandres.yaml b/themes/kaimandres.yaml index b46bf0cd..cc7c73a9 100644 --- a/themes/kaimandres.yaml +++ b/themes/kaimandres.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "martellev.kaimandres-vscode" version: "1.3.1" installs: 66 + rating: 5 + ratings: 1 author: "MartelleV" repo: "https://github.com/MartelleV/kaimandres-vscode" url: "https://marketplace.visualstudio.com/items?itemName=martellev.kaimandres-vscode" diff --git a/themes/kaiokenkolors.yaml b/themes/kaiokenkolors.yaml index f6131696..b36fea30 100644 --- a/themes/kaiokenkolors.yaml +++ b/themes/kaiokenkolors.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gallahaad.kaiokenkolors" version: "0.0.1" installs: 40 + rating: 5 + ratings: 1 author: "Gallahaad" repo: "https://github.com/Gallahaad/KaiokenKolors" url: "https://marketplace.visualstudio.com/items?itemName=gallahaad.kaiokenkolors" diff --git a/themes/kaique-theme.yaml b/themes/kaique-theme.yaml index bcf8173f..d231f558 100644 --- a/themes/kaique-theme.yaml +++ b/themes/kaique-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KaiqueOliveiraSantos.kaique-theme" version: "2.0.2" installs: 36 + rating: 0 + ratings: 0 author: "Kaique Oliveira Santos" repo: null url: "https://marketplace.visualstudio.com/items?itemName=KaiqueOliveiraSantos.kaique-theme" diff --git a/themes/kaisa-dark.yaml b/themes/kaisa-dark.yaml index c5443b6c..6760d4df 100644 --- a/themes/kaisa-dark.yaml +++ b/themes/kaisa-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EmeAim.aim" version: "0.0.8" installs: 1797 + rating: 5 + ratings: 1 author: "EmeAim" repo: "https://github.com/EmePin/aim-themes" url: "https://marketplace.visualstudio.com/items?itemName=EmeAim.aim" diff --git a/themes/kali-linux-theme.yaml b/themes/kali-linux-theme.yaml index 0ac3cdcc..a11555ff 100644 --- a/themes/kali-linux-theme.yaml +++ b/themes/kali-linux-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "minako.wired" version: "2.0.5" installs: 4868 + rating: 0 + ratings: 0 author: "minako" repo: "https://github.com/kayliese/wired" url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" diff --git a/themes/kalia.yaml b/themes/kalia.yaml index b2f860dd..99dc4e5d 100644 --- a/themes/kalia.yaml +++ b/themes/kalia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "krasimir.kalia" version: "1.43.0" installs: 4088 + rating: 5 + ratings: 2 author: "Krasimir Tsonev" repo: "https://github.com/krasimir/kalia" url: "https://marketplace.visualstudio.com/items?itemName=krasimir.kalia" diff --git a/themes/kalidozza.yaml b/themes/kalidozza.yaml index 9e08a434..0df733b2 100644 --- a/themes/kalidozza.yaml +++ b/themes/kalidozza.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "afrolino02.Kalidozza-theme" version: "0.0.1" installs: 30 + rating: 4 + ratings: 1 author: "afrolino02" repo: "https://github.com/Kalidozza-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=afrolino02.Kalidozza-theme" diff --git a/themes/kalisi.yaml b/themes/kalisi.yaml index c7e94c66..64de3fe8 100644 --- a/themes/kalisi.yaml +++ b/themes/kalisi.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "freeo.vscode-kalisi" version: "1.0.2" installs: 706 + rating: 0 + ratings: 0 author: "freeo" repo: "https://github.com/freeo/vscode-kalisi" url: "https://marketplace.visualstudio.com/items?itemName=freeo.vscode-kalisi" diff --git a/themes/kalmia-high-contrast.yaml b/themes/kalmia-high-contrast.yaml index 69f3859f..a953028b 100644 --- a/themes/kalmia-high-contrast.yaml +++ b/themes/kalmia-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "qexat.kalmia" version: "0.1.1" installs: 202 + rating: 5 + ratings: 2 author: "Qexat" repo: "https://github.com/qexat/kalmia" url: "https://marketplace.visualstudio.com/items?itemName=qexat.kalmia" diff --git a/themes/kalmia.yaml b/themes/kalmia.yaml index d15e32aa..99b1a769 100644 --- a/themes/kalmia.yaml +++ b/themes/kalmia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "qexat.kalmia" version: "0.1.1" installs: 202 + rating: 5 + ratings: 2 author: "Qexat" repo: "https://github.com/qexat/kalmia" url: "https://marketplace.visualstudio.com/items?itemName=qexat.kalmia" diff --git a/themes/kami-theme.yaml b/themes/kami-theme.yaml index 8f0dc8fc..ec1e0c24 100644 --- a/themes/kami-theme.yaml +++ b/themes/kami-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ruhan.kami-theme" version: "0.0.1" installs: 109 + rating: 0 + ratings: 0 author: "Ruhan" repo: "https://github.com/Ruhannn/kami-theme" url: "https://marketplace.visualstudio.com/items?itemName=Ruhan.kami-theme" diff --git a/themes/kanagawa-dragon.yaml b/themes/kanagawa-dragon.yaml index 2a23f934..4bfcc579 100644 --- a/themes/kanagawa-dragon.yaml +++ b/themes/kanagawa-dragon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "metaphore.kanagawa-vscode-color-theme" version: "0.5.0" installs: 29588 + rating: 5 + ratings: 6 author: "metapho.re" repo: "https://github.com/metapho-re/kanagawa-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=metaphore.kanagawa-vscode-color-theme" diff --git a/themes/kanagawa-light.yaml b/themes/kanagawa-light.yaml index febf9d6d..1c162969 100644 --- a/themes/kanagawa-light.yaml +++ b/themes/kanagawa-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Icycoldveins.verum-monokai-themes" version: "1.2.1" installs: 46 + rating: 5 + ratings: 1 author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" diff --git a/themes/kanagawa-lotus.yaml b/themes/kanagawa-lotus.yaml index 096d8a23..eb4ebb1c 100644 --- a/themes/kanagawa-lotus.yaml +++ b/themes/kanagawa-lotus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "metaphore.kanagawa-vscode-color-theme" version: "0.5.0" installs: 29588 + rating: 5 + ratings: 6 author: "metapho.re" repo: "https://github.com/metapho-re/kanagawa-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=metaphore.kanagawa-vscode-color-theme" diff --git a/themes/kanagawa-night.yaml b/themes/kanagawa-night.yaml index ed739a29..7661a0d5 100644 --- a/themes/kanagawa-night.yaml +++ b/themes/kanagawa-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.kanagawa-night" version: "1.0.1" installs: 1264 + rating: 0 + ratings: 0 author: "Avetis" repo: "https://github.com/AvetisDN/kanagawa-night" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.kanagawa-night" diff --git a/themes/kanagawa-paper.yaml b/themes/kanagawa-paper.yaml index 2434d71a..d5a00e0b 100644 --- a/themes/kanagawa-paper.yaml +++ b/themes/kanagawa-paper.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SimonHo.kanagawa-paper" version: "1.0.10" installs: 5479 + rating: 5 + ratings: 3 author: "sho-87" repo: "https://github.com/sho-87/kanagawa-paper.vscode" url: "https://marketplace.visualstudio.com/items?itemName=SimonHo.kanagawa-paper" diff --git a/themes/kanagawa-wave-light.yaml b/themes/kanagawa-wave-light.yaml index 7bb1d6d0..a7dc03a3 100644 --- a/themes/kanagawa-wave-light.yaml +++ b/themes/kanagawa-wave-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Icycoldveins.verum-monokai-themes" version: "1.2.1" installs: 46 + rating: 5 + ratings: 1 author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" diff --git a/themes/kanagawa-wave.yaml b/themes/kanagawa-wave.yaml index 4a1da9aa..10cc8dbe 100644 --- a/themes/kanagawa-wave.yaml +++ b/themes/kanagawa-wave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Icycoldveins.verum-monokai-themes" version: "1.2.1" installs: 46 + rating: 5 + ratings: 1 author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" diff --git a/themes/kanamin-dark.yaml b/themes/kanamin-dark.yaml index 6006c19d..77b40e90 100644 --- a/themes/kanamin-dark.yaml +++ b/themes/kanamin-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vladoo.kanamin-theme" version: "2.0.8" installs: 255 + rating: 4 + ratings: 1 author: "vladoo" repo: "https://github.com/vlaadoo/kanamin-theme" url: "https://marketplace.visualstudio.com/items?itemName=vladoo.kanamin-theme" diff --git a/themes/kanao.yaml b/themes/kanao.yaml index f3dbdb15..11e33864 100644 --- a/themes/kanao.yaml +++ b/themes/kanao.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BayuSetiawan.kanao" version: "1.4.0" installs: 1890 + rating: 3.5 + ratings: 2 author: "Bayu Setiawan" repo: "https://github.com/Bayusetiawan45/kanao" url: "https://marketplace.visualstudio.com/items?itemName=BayuSetiawan.kanao" diff --git a/themes/kanso-ink.yaml b/themes/kanso-ink.yaml index 59e1296e..abe57c9c 100644 --- a/themes/kanso-ink.yaml +++ b/themes/kanso-ink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Webhooked.kanso-theme" version: "0.2.3" installs: 3037 + rating: 5 + ratings: 6 author: "Webhooked" repo: "https://github.com/webhooked/kanso-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" diff --git a/themes/kanso-mist.yaml b/themes/kanso-mist.yaml index f03f8016..13c9c3b9 100644 --- a/themes/kanso-mist.yaml +++ b/themes/kanso-mist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Webhooked.kanso-theme" version: "0.2.3" installs: 3037 + rating: 5 + ratings: 6 author: "Webhooked" repo: "https://github.com/webhooked/kanso-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" diff --git a/themes/kanso-pearl.yaml b/themes/kanso-pearl.yaml index de909073..64f3b9de 100644 --- a/themes/kanso-pearl.yaml +++ b/themes/kanso-pearl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Webhooked.kanso-theme" version: "0.2.3" installs: 3037 + rating: 5 + ratings: 6 author: "Webhooked" repo: "https://github.com/webhooked/kanso-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" diff --git a/themes/kaolin-light-theme-alt.yaml b/themes/kaolin-light-theme-alt.yaml index 880c3f31..d2ff5356 100644 --- a/themes/kaolin-light-theme-alt.yaml +++ b/themes/kaolin-light-theme-alt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zed-nait.kaolin-vscode-themes" version: "0.1.0" installs: 4898 + rating: 5 + ratings: 2 author: "zed-nait" repo: "https://github.com/zed-nait/kaolin-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=zed-nait.kaolin-vscode-themes" diff --git a/themes/kaolin-light-theme.yaml b/themes/kaolin-light-theme.yaml index fbb53d22..b5508ffc 100644 --- a/themes/kaolin-light-theme.yaml +++ b/themes/kaolin-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zed-nait.kaolin-vscode-themes" version: "0.1.0" installs: 4898 + rating: 5 + ratings: 2 author: "zed-nait" repo: "https://github.com/zed-nait/kaolin-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=zed-nait.kaolin-vscode-themes" diff --git a/themes/kaplan-dark.yaml b/themes/kaplan-dark.yaml new file mode 100644 index 00000000..98221f91 --- /dev/null +++ b/themes/kaplan-dark.yaml @@ -0,0 +1,50 @@ +name: "Kaplan Dark" +source: + marketplace_id: "Abyadando.kaplan-dark-theme" + version: "0.1.0" + installs: 286 + author: "Abyadando" + repo: "https://github.com/abyadando/kaplan-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Abyadando.kaplan-dark-theme" +colors: + bg: "#1D1D1D" + fg: "#FFD86C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 83.7 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/kara.yaml b/themes/kara.yaml index 33481b4c..e2853498 100644 --- a/themes/kara.yaml +++ b/themes/kara.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "metecan.kara" version: "0.1.2" installs: 223 + rating: 5 + ratings: 2 author: "metecan" repo: "https://github.com/metecan/kara" url: "https://marketplace.visualstudio.com/items?itemName=metecan.kara" diff --git a/themes/karam-theme-darker.yaml b/themes/karam-theme-darker.yaml index 24207cc6..7c058bd1 100644 --- a/themes/karam-theme-darker.yaml +++ b/themes/karam-theme-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KareemReda.karam-theme-darker" version: "0.0.1" installs: 161 + rating: 0 + ratings: 0 author: "Kareem Reda" repo: "https://github.com/DevKareemReda/Karam-Theme" url: "https://marketplace.visualstudio.com/items?itemName=KareemReda.karam-theme-darker" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.8 black: 0 diff --git a/themes/karma.yaml b/themes/karma.yaml index 15759ef5..6278ed89 100644 --- a/themes/karma.yaml +++ b/themes/karma.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/karnataka-sandalwood-state.yaml b/themes/karnataka-sandalwood-state.yaml index 2e481de3..4cc8717b 100644 --- a/themes/karnataka-sandalwood-state.yaml +++ b/themes/karnataka-sandalwood-state.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ProudIndian.colors-of-india-themes" version: "1.0.1" installs: 37 + rating: 5 + ratings: 1 author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" diff --git a/themes/karou-noir.yaml b/themes/karou-noir.yaml index 6c6601b5..d2bfdbc2 100644 --- a/themes/karou-noir.yaml +++ b/themes/karou-noir.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HAAZIQ-ALI.karou-theme" version: "3.0.1" installs: 90 + rating: 5 + ratings: 2 author: "HAAZIQ-ALI" repo: "https://github.com/HAAZIQ-ALI/KAROU-Theme" url: "https://marketplace.visualstudio.com/items?itemName=HAAZIQ-ALI.karou-theme" diff --git a/themes/karou-theme.yaml b/themes/karou-theme.yaml index 9d6df469..5529d913 100644 --- a/themes/karou-theme.yaml +++ b/themes/karou-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HAAZIQ-ALI.karou-theme" version: "3.0.1" installs: 90 + rating: 5 + ratings: 2 author: "HAAZIQ-ALI" repo: "https://github.com/HAAZIQ-ALI/KAROU-Theme" url: "https://marketplace.visualstudio.com/items?itemName=HAAZIQ-ALI.karou-theme" diff --git a/themes/karrot-theme-classic.yaml b/themes/karrot-theme-classic.yaml index 6f503cd2..22c0913e 100644 --- a/themes/karrot-theme-classic.yaml +++ b/themes/karrot-theme-classic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ooAkira.Karrot" version: "0.0.7" installs: 2628 + rating: 4.83 + ratings: 6 author: "ooAkira" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ooAkira.Karrot" diff --git a/themes/karry-color-golang.yaml b/themes/karry-color-golang.yaml new file mode 100644 index 00000000..2137f87e --- /dev/null +++ b/themes/karry-color-golang.yaml @@ -0,0 +1,52 @@ +name: "Karry Color Golang" +source: + marketplace_id: "fcunhaneto.karry-color-golang-theme" + version: "0.1.0" + installs: 14482 + rating: 0 + ratings: 0 + author: "fcunhaneto" + repo: "git+https://github.com/fcunhaneto/vscode-karry-color-golang-theme/" + url: "https://marketplace.visualstudio.com/items?itemName=fcunhaneto.karry-color-golang-theme" +colors: + bg: "#FCE7CD" + fg: "#435E75" + black: "#906F41" + red: "#B80012" + green: "#49A634" + yellow: "#B2891B" + blue: "#00578B" + magenta: "#774673" + cyan: "#008B8B" + white: "#2D485D" + brightBlack: "#B59262" + brightRed: "#E80018" + brightGreen: "#2F8C1C" + brightYellow: "#D5AA38" + brightBlue: "#0071B2" + brightMagenta: "#8D648A" + brightCyan: "#00A8A8" + brightWhite: "#435E75" +meta: + mode: "light" + accent: "orange" + hue: 73 + pair: null + contrast: + fg: 70.9 + black: 59.6 + red: 68.7 + green: 45.1 + yellow: 47 + blue: 73.6 + magenta: 72.4 + cyan: 55.5 + white: 79.6 + brightBlack: 42.8 + brightRed: 57.4 + brightGreen: 56.8 + brightYellow: 30.3 + brightBlue: 62.9 + brightMagenta: 61.2 + brightCyan: 42.7 + brightWhite: 70.9 diff --git a/themes/kary-pro-colors-dark.yaml b/themes/kary-pro-colors-dark.yaml index 98e54fd6..638474b4 100644 --- a/themes/kary-pro-colors-dark.yaml +++ b/themes/kary-pro-colors-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "karyfoundation.theme-karyfoundation-themes" version: "37.0.0" installs: 158331 + rating: 4.81 + ratings: 26 author: "Pouya Kary" repo: "https://github.com/pouyakary/procolors" url: "https://marketplace.visualstudio.com/items?itemName=karyfoundation.theme-karyfoundation-themes" diff --git a/themes/kary-pro-colors-light.yaml b/themes/kary-pro-colors-light.yaml index 042b154d..610e9106 100644 --- a/themes/kary-pro-colors-light.yaml +++ b/themes/kary-pro-colors-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "karyfoundation.theme-karyfoundation-themes" version: "37.0.0" installs: 158331 + rating: 4.81 + ratings: 26 author: "Pouya Kary" repo: "https://github.com/pouyakary/procolors" url: "https://marketplace.visualstudio.com/items?itemName=karyfoundation.theme-karyfoundation-themes" diff --git a/themes/kashi-night.yaml b/themes/kashi.yaml similarity index 94% rename from themes/kashi-night.yaml rename to themes/kashi.yaml index 5026397c..b67efeeb 100644 --- a/themes/kashi-night.yaml +++ b/themes/kashi.yaml @@ -1,8 +1,10 @@ -name: "Kashi Night" +name: "Kashi" source: marketplace_id: "Nikharso.kashi" version: "0.0.4" installs: 42 + rating: 0 + ratings: 0 author: "Nikharso" repo: "https://github.com/nikharso/kashi" url: "https://marketplace.visualstudio.com/items?itemName=Nikharso.kashi" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 71.7 black: 0 diff --git a/themes/kastorcode-dark-orange-theme.yaml b/themes/kastorcode-dark-orange-theme.yaml index 06a71212..251608ce 100644 --- a/themes/kastorcode-dark-orange-theme.yaml +++ b/themes/kastorcode-dark-orange-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kastorcode.kastorcode-dark-orange-theme" version: "1.0.1" installs: 6969 + rating: 5 + ratings: 1 author: "KastorCode" repo: "https://github.com/kastorcode/kastorcode-dark-orange-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kastorcode.kastorcode-dark-orange-theme" diff --git a/themes/kastorcode-dark-purple-theme.yaml b/themes/kastorcode-dark-purple-theme.yaml index 01fd8a2b..4c62e930 100644 --- a/themes/kastorcode-dark-purple-theme.yaml +++ b/themes/kastorcode-dark-purple-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kastorcode.kastorcode-dark-purple-theme" version: "1.0.0" installs: 4413 + rating: 5 + ratings: 1 author: "KastorCode" repo: "https://github.com/kastorcode/kastorcode-dark-purple-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kastorcode.kastorcode-dark-purple-theme" diff --git a/themes/katagawatheme.yaml b/themes/katagawatheme.yaml index c9da40ef..9780dca6 100644 --- a/themes/katagawatheme.yaml +++ b/themes/katagawatheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hikionori.kanagawa-vscode-theme" version: "0.1.0" installs: 6856 + rating: 5 + ratings: 2 author: "hikionori" repo: "https://github.com/hikionori/kanagawa-vscode" url: "https://marketplace.visualstudio.com/items?itemName=hikionori.kanagawa-vscode-theme" diff --git a/themes/kato.yaml b/themes/kato.yaml index c326306f..de76a680 100644 --- a/themes/kato.yaml +++ b/themes/kato.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ghaz.Kato" version: "2.0.0" installs: 74 + rating: 0 + ratings: 0 author: "Ghaz" repo: "https://github.com/GhazanfarShahbaz/Kato-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Ghaz.Kato" diff --git a/themes/kayhan.yaml b/themes/kayhan.yaml index 2bdc16b4..bdec8204 100644 --- a/themes/kayhan.yaml +++ b/themes/kayhan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KazimKayhan.kayhan-color-theme" version: "1.8.0" installs: 167 + rating: 0 + ratings: 0 author: "Kazim Kayhan" repo: "https://github.com/kazim-kayhan/kayhan-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=KazimKayhan.kayhan-color-theme" diff --git a/themes/kblue-minimal.yaml b/themes/kblue-minimal.yaml index f360aaae..810fbcc4 100644 --- a/themes/kblue-minimal.yaml +++ b/themes/kblue-minimal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rodrigokzk12.kblue-minimal" version: "0.0.1" installs: 188 + rating: 5 + ratings: 1 author: "Rodrigo Franca" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rodrigokzk12.kblue-minimal" diff --git a/themes/kdshade-darkbg.yaml b/themes/kdshade-darkbg.yaml new file mode 100644 index 00000000..9a3461ab --- /dev/null +++ b/themes/kdshade-darkbg.yaml @@ -0,0 +1,52 @@ +name: "KDshade-darkBG" +source: + marketplace_id: "kdl.kdshade" + version: "0.0.4" + installs: 207 + rating: 0 + ratings: 0 + author: "kdl" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kdl.kdshade" +colors: + bg: "#111111" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 105.1 + black: 0 + red: 44.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.3 + cyan: 78.8 + white: 107.4 + brightBlack: 11.5 + brightRed: 44.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.3 + brightCyan: 78.8 + brightWhite: 107.4 diff --git a/themes/keen-contrast.yaml b/themes/keen-contrast.yaml index 5e93e836..748471ce 100644 --- a/themes/keen-contrast.yaml +++ b/themes/keen-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/keen-light.yaml b/themes/keen-light.yaml index e61ed06e..23a19dda 100644 --- a/themes/keen-light.yaml +++ b/themes/keen-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/keen.yaml b/themes/keen.yaml index bcc024f9..5eea00a0 100644 --- a/themes/keen.yaml +++ b/themes/keen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/kenobi-dark-theme.yaml b/themes/kenobi-dark-theme.yaml index 984c2786..02b2c3df 100644 --- a/themes/kenobi-dark-theme.yaml +++ b/themes/kenobi-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BrunoDaSilva.kenobi-dark-theme" version: "0.5.3" installs: 512 + rating: 0 + ratings: 0 author: "Bruno DaSilva" repo: "https://github.com/Brunno-DaSilva/Kenobi-dark-vs-code-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=BrunoDaSilva.kenobi-dark-theme" diff --git a/themes/kerala-god-s-own-country.yaml b/themes/kerala-god-s-own-country.yaml index cfec486e..524e5c0e 100644 --- a/themes/kerala-god-s-own-country.yaml +++ b/themes/kerala-god-s-own-country.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ProudIndian.colors-of-india-themes" version: "1.0.1" installs: 37 + rating: 5 + ratings: 1 author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" diff --git a/themes/kerama-deep.yaml b/themes/kerama-deep.yaml index 11b96387..f42c8f47 100644 --- a/themes/kerama-deep.yaml +++ b/themes/kerama-deep.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ky12228121.okinawan-themes" version: "0.0.1" installs: 10 + rating: 0 + ratings: 0 author: "Keny Yahat" repo: "https://github.com/ky12228121/okinawan" url: "https://marketplace.visualstudio.com/items?itemName=ky12228121.okinawan-themes" diff --git a/themes/kermit-fork.yaml b/themes/kermit-fork.yaml index d3e62d9c..c9f9b203 100644 --- a/themes/kermit-fork.yaml +++ b/themes/kermit-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" version: "9.0.1" installs: 29917 + rating: 4.6 + ratings: 10 author: "Hasibur R" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" diff --git a/themes/kesteren.yaml b/themes/kesteren.yaml new file mode 100644 index 00000000..87720b48 --- /dev/null +++ b/themes/kesteren.yaml @@ -0,0 +1,52 @@ +name: "Kesteren" +source: + marketplace_id: "Coachonko.kesteren-theme" + version: "3.1.1" + installs: 310 + rating: 5 + ratings: 1 + author: "Coachonko" + repo: "https://github.com/Coachonko/Kesteren" + url: "https://marketplace.visualstudio.com/items?itemName=Coachonko.kesteren-theme" +colors: + bg: "#1D2021" + fg: "#EBDBB2" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#EBDBB2" + brightBlack: "#665C54" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#FBF1C7" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.3 + black: 0 + red: 24.2 + green: 41.9 + yellow: 51.5 + blue: 30.5 + magenta: 30.7 + cyan: 40.9 + white: 83.3 + brightBlack: 17.5 + brightRed: 39.1 + brightGreen: 60.1 + brightYellow: 70.8 + brightBlue: 47.6 + brightMagenta: 46.9 + brightCyan: 59.1 + brightWhite: 96.3 diff --git a/themes/kh-gold-subtle.yaml b/themes/kh-gold-subtle.yaml new file mode 100644 index 00000000..7bf0df9b --- /dev/null +++ b/themes/kh-gold-subtle.yaml @@ -0,0 +1,52 @@ +name: "KH Gold (Subtle)" +source: + marketplace_id: "emoralesb05.kh-vscode-theme" + version: "0.1.0" + installs: 9 + rating: 0 + ratings: 0 + author: "Ed Morales" + repo: "https://github.com/emoralesb05/kh-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=emoralesb05.kh-vscode-theme" +colors: + bg: "#09070F" + fg: "#F7F1E2" + black: "#0A0F1A" + red: "#FF6B7A" + green: "#8CF0C8" + yellow: "#DAB878" + blue: "#60A5FA" + magenta: "#C9A6FF" + cyan: "#22D3EE" + white: "#ECF4FF" + brightBlack: "#6B7F9E" + brightRed: "#FF9AAA" + brightGreen: "#B9F7DE" + brightYellow: "#FFE9A3" + brightBlue: "#9CC7FF" + brightMagenta: "#DEC9FF" + brightCyan: "#A4EEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 297 + pair: null + contrast: + fg: 98.8 + black: 0 + red: 49.4 + green: 85.9 + yellow: 66.5 + blue: 52.3 + magenta: 63 + cyan: 69.5 + white: 100 + brightBlack: 33.6 + brightRed: 63.6 + brightGreen: 94 + brightYellow: 94.1 + brightBlue: 70.9 + brightMagenta: 79.3 + brightCyan: 89.3 + brightWhite: 107.8 diff --git a/themes/kh-silver-subtle.yaml b/themes/kh-silver-subtle.yaml new file mode 100644 index 00000000..68060a0c --- /dev/null +++ b/themes/kh-silver-subtle.yaml @@ -0,0 +1,52 @@ +name: "KH Silver (Subtle)" +source: + marketplace_id: "emoralesb05.kh-vscode-theme" + version: "0.1.0" + installs: 9 + rating: 0 + ratings: 0 + author: "Ed Morales" + repo: "https://github.com/emoralesb05/kh-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=emoralesb05.kh-vscode-theme" +colors: + bg: "#0C1018" + fg: "#F4F8FF" + black: "#101521" + red: "#FF7F8E" + green: "#A7F0D1" + yellow: "#FFD98A" + blue: "#8EB7FF" + magenta: "#D6C2FF" + cyan: "#8AD8FF" + white: "#EAF0FF" + brightBlack: "#8A98AF" + brightRed: "#FFACB5" + brightGreen: "#CCF9E8" + brightYellow: "#FFE9BD" + brightBlue: "#B8D3FF" + brightMagenta: "#E9DBFF" + brightCyan: "#C9F1FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 264 + pair: null + contrast: + fg: 102.6 + black: 0 + red: 54.4 + green: 88 + yellow: 86 + blue: 62.6 + magenta: 75 + cyan: 76.6 + white: 97.5 + brightBlack: 45.7 + brightRed: 69.7 + brightGreen: 97.1 + brightYellow: 94.5 + brightBlue: 78.5 + brightMagenta: 88 + brightCyan: 94 + brightWhite: 107.4 diff --git a/themes/khoaneostyle.yaml b/themes/khoaneostyle.yaml new file mode 100644 index 00000000..51d0ddf5 --- /dev/null +++ b/themes/khoaneostyle.yaml @@ -0,0 +1,50 @@ +name: "KhoaNeoStyle" +source: + marketplace_id: "wentallout.khoaneostyle" + version: "0.0.2" + installs: 44 + author: "wentallout" + repo: "https://github.com/wentallout/khoaneostyle" + url: "https://marketplace.visualstudio.com/items?itemName=wentallout.khoaneostyle" +colors: + bg: "#191622" + fg: "#E1E1E6" + black: "#201B2D" + red: "#FF79C6" + green: "#67E480" + yellow: "#E7DE79" + blue: "#78D1E1" + magenta: "#988BC7" + cyan: "#A1EFE4" + white: "#E1E1E6" + brightBlack: "#626483" + brightRed: "#ED4556" + brightGreen: "#00F769" + brightYellow: "#E7DE79" + brightBlue: "#78D1E1" + brightMagenta: "#988BC7" + brightCyan: "#A4FFFF" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "green" + hue: 296 + pair: null + contrast: + fg: 87.6 + black: 0 + red: 54.5 + green: 74.5 + yellow: 83.6 + blue: 69.9 + magenta: 43.2 + cyan: 87.2 + white: 87.6 + brightBlack: 22.1 + brightRed: 36.7 + brightGreen: 81.8 + brightYellow: 83.6 + brightBlue: 69.9 + brightMagenta: 43.2 + brightCyan: 96.7 + brightWhite: 101.7 diff --git a/themes/kiiro-dark.yaml b/themes/kiiro-dark.yaml index 52be4163..8c16373c 100644 --- a/themes/kiiro-dark.yaml +++ b/themes/kiiro-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kiiroOvO.kiiro-theme" version: "0.0.3" installs: 181 + rating: 5 + ratings: 2 author: "kiiroOvO" repo: "https://github.com/kiiroOvO/kiiro-theme" url: "https://marketplace.visualstudio.com/items?itemName=kiiroOvO.kiiro-theme" diff --git a/themes/killer-dark.yaml b/themes/killer-dark.yaml index f60b8414..d43c9b69 100644 --- a/themes/killer-dark.yaml +++ b/themes/killer-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AustinBillings.killer-theme" version: "1.0.2" installs: 29 + rating: 0 + ratings: 0 author: "Austin Billings" repo: "https://github.com/austinbillings/killer-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AustinBillings.killer-theme" diff --git a/themes/kindfeeling.yaml b/themes/kindfeeling.yaml index aeaa28c8..6c2d1f3e 100644 --- a/themes/kindfeeling.yaml +++ b/themes/kindfeeling.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Aromatibus.kindfeeling" version: "0.3.19" installs: 3598 + rating: 5 + ratings: 3 author: "Aromatibus" repo: "https://github.com/Aromatibus/vscode-kindfeeling-light" url: "https://marketplace.visualstudio.com/items?itemName=Aromatibus.kindfeeling" diff --git a/themes/kingfisher-fishing.yaml b/themes/kingfisher-fishing.yaml index 7bd6d88e..7be47121 100644 --- a/themes/kingfisher-fishing.yaml +++ b/themes/kingfisher-fishing.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "williamsteffens.kingfisher-fishing-after-dark" version: "0.5.2" installs: 852 + rating: 5 + ratings: 1 author: "williamsteffens" repo: "https://github.com/williamsteffens/vscode-kingfisher-fishing-after-dark-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamsteffens.kingfisher-fishing-after-dark" diff --git a/themes/kinn.yaml b/themes/kinn.yaml new file mode 100644 index 00000000..597ba979 --- /dev/null +++ b/themes/kinn.yaml @@ -0,0 +1,52 @@ +name: "KINN" +source: + marketplace_id: "kinn-theme.kinn-theme-vscode" + version: "0.3.0" + installs: 248 + rating: 0 + ratings: 0 + author: "KINN Theme" + repo: "https://github.com/KChakhalyan/KINN" + url: "https://marketplace.visualstudio.com/items?itemName=kinn-theme.kinn-theme-vscode" +colors: + bg: "#283139" + fg: "#CDCDCD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 245 + pair: null + contrast: + fg: 71.2 + black: 0 + red: 22.6 + green: 48.9 + yellow: 81.5 + blue: 23.3 + magenta: 25.7 + cyan: 43.5 + white: 85.9 + brightBlack: 17.9 + brightRed: 34.5 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.9 + brightMagenta: 41.3 + brightCyan: 51.3 + brightWhite: 85.9 diff --git a/themes/kinnitchi-neon-dark-modern.yaml b/themes/kinnitchi-neon-dark-modern.yaml index 44856aba..a2a92780 100644 --- a/themes/kinnitchi-neon-dark-modern.yaml +++ b/themes/kinnitchi-neon-dark-modern.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kinnitchi.kinnitchi-theme" version: "0.4.0" installs: 1210 + rating: 0 + ratings: 0 author: "Kinnitchi" repo: "https://github.com/Kinnitchi/kinnitchi-theme" url: "https://marketplace.visualstudio.com/items?itemName=Kinnitchi.kinnitchi-theme" diff --git a/themes/kintsugi-dark.yaml b/themes/kintsugi-dark.yaml index f0054dcc..60d8740e 100644 --- a/themes/kintsugi-dark.yaml +++ b/themes/kintsugi-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ahmedhatem.kintsugi" version: "0.1.1" installs: 544 + rating: 5 + ratings: 2 author: "Ahmed Hatem" repo: "https://github.com/ahatem/vscode-kintsugi" url: "https://marketplace.visualstudio.com/items?itemName=ahmedhatem.kintsugi" diff --git a/themes/kintsugi-light.yaml b/themes/kintsugi-light.yaml index 250f40e9..c6bf8435 100644 --- a/themes/kintsugi-light.yaml +++ b/themes/kintsugi-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ahmedhatem.kintsugi" version: "0.1.1" installs: 544 + rating: 5 + ratings: 2 author: "Ahmed Hatem" repo: "https://github.com/ahatem/vscode-kintsugi" url: "https://marketplace.visualstudio.com/items?itemName=ahmedhatem.kintsugi" diff --git a/themes/kiona.yaml b/themes/kiona.yaml index 25d32ab1..522c1632 100644 --- a/themes/kiona.yaml +++ b/themes/kiona.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "isaacgarciavillacres.hue-mans-color-themes" version: "0.0.3" installs: 79 + rating: 5 + ratings: 2 author: "Isaac Garcia Villacres" repo: "https://github.com/isaacgarciavillacres/Hue-mans" url: "https://marketplace.visualstudio.com/items?itemName=isaacgarciavillacres.hue-mans-color-themes" diff --git a/themes/kira-theme.yaml b/themes/kira-theme.yaml index a12dd5b4..9b42dda6 100644 --- a/themes/kira-theme.yaml +++ b/themes/kira-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pnemonic.kira-theme" version: "0.1.1" installs: 133 + rating: 0 + ratings: 0 author: "Christian Romero Oliva" repo: "https://github.com/cromeoli/kira-theme" url: "https://marketplace.visualstudio.com/items?itemName=pnemonic.kira-theme" diff --git a/themes/kiranord.yaml b/themes/kiranord.yaml new file mode 100644 index 00000000..7b082ac5 --- /dev/null +++ b/themes/kiranord.yaml @@ -0,0 +1,50 @@ +name: "Kiranord" +source: + marketplace_id: "kiranojhanp.kiranord" + version: "0.0.3" + installs: 62 + author: "kiranojhanp" + repo: "https://github.com/kiranojhanp/vscode-theme-kiranord" + url: "https://marketplace.visualstudio.com/items?itemName=kiranojhanp.kiranord" +colors: + bg: "#1D2129" + fg: "#D8DEE9" + black: "#292E39" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 84.1 + black: 0 + red: 31.7 + green: 60.4 + yellow: 75.1 + blue: 47.4 + magenta: 45.2 + cyan: 61.4 + white: 91.1 + brightBlack: 14.1 + brightRed: 31.7 + brightGreen: 60.4 + brightYellow: 75.1 + brightBlue: 47.4 + brightMagenta: 45.2 + brightCyan: 59.3 + brightWhite: 95 diff --git a/themes/kismat-default-colors.yaml b/themes/kismat-default-colors.yaml index 71be9828..b3a876ff 100644 --- a/themes/kismat-default-colors.yaml +++ b/themes/kismat-default-colors.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "naren.kismat" version: "0.0.10" installs: 261 + rating: 0 + ratings: 0 author: "Naren" repo: null url: "https://marketplace.visualstudio.com/items?itemName=naren.kismat" diff --git a/themes/kiss.yaml b/themes/kiss.yaml index b3875a33..3ddcaa17 100644 --- a/themes/kiss.yaml +++ b/themes/kiss.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rileytwo.kiss" version: "0.8.6" installs: 1718 + rating: 0 + ratings: 0 author: "rileytwo" repo: "https://github.com/rileytwo/kiss" url: "https://marketplace.visualstudio.com/items?itemName=rileytwo.kiss" diff --git a/themes/kite-dark.yaml b/themes/kite-dark.yaml index f263e7f6..0cfa5005 100644 --- a/themes/kite-dark.yaml +++ b/themes/kite-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Zhouscar.vscode-theme-kite-wcag" version: "0.0.1" installs: 1278 + rating: 0 + ratings: 0 author: "Zhouscar" repo: "https://github.com/Zhouscar/vscode-theme-kite-hc" url: "https://marketplace.visualstudio.com/items?itemName=Zhouscar.vscode-theme-kite-wcag" diff --git a/themes/kite-darker.yaml b/themes/kite-darker.yaml index 4c19e1a3..e0a9d271 100644 --- a/themes/kite-darker.yaml +++ b/themes/kite-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Zhouscar.vscode-theme-kite-wcag" version: "0.0.1" installs: 1278 + rating: 0 + ratings: 0 author: "Zhouscar" repo: "https://github.com/Zhouscar/vscode-theme-kite-hc" url: "https://marketplace.visualstudio.com/items?itemName=Zhouscar.vscode-theme-kite-wcag" diff --git a/themes/kite-light.yaml b/themes/kite-light.yaml index bd1e8331..5748db10 100644 --- a/themes/kite-light.yaml +++ b/themes/kite-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Zhouscar.vscode-theme-kite-wcag" version: "0.0.1" installs: 1278 + rating: 0 + ratings: 0 author: "Zhouscar" repo: "https://github.com/Zhouscar/vscode-theme-kite-hc" url: "https://marketplace.visualstudio.com/items?itemName=Zhouscar.vscode-theme-kite-wcag" diff --git a/themes/kitty-catty.yaml b/themes/kitty-catty.yaml index fecc1b10..1b894c1f 100644 --- a/themes/kitty-catty.yaml +++ b/themes/kitty-catty.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HAAZIQ-ALI.karou-theme" version: "3.0.1" installs: 90 + rating: 5 + ratings: 2 author: "HAAZIQ-ALI" repo: "https://github.com/HAAZIQ-ALI/KAROU-Theme" url: "https://marketplace.visualstudio.com/items?itemName=HAAZIQ-ALI.karou-theme" diff --git a/themes/kitty-night.yaml b/themes/kitty-night.yaml index 15eac00b..34502e23 100644 --- a/themes/kitty-night.yaml +++ b/themes/kitty-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "goldyflakes.kitty-night" version: "3.0.5" installs: 2646 + rating: 5 + ratings: 1 author: "goldyflakes" repo: null url: "https://marketplace.visualstudio.com/items?itemName=goldyflakes.kitty-night" diff --git a/themes/kittypower.yaml b/themes/kittypower.yaml index 98a137a9..a73790c2 100644 --- a/themes/kittypower.yaml +++ b/themes/kittypower.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Eduardo-Escoto.kittypower" version: "0.0.9" installs: 862 + rating: 5 + ratings: 1 author: "Eduardo Escoto" repo: "https://github.com/eduardo-escoto/KittyPower" url: "https://marketplace.visualstudio.com/items?itemName=Eduardo-Escoto.kittypower" diff --git a/themes/kiwi-contrast.yaml b/themes/kiwi-contrast.yaml index fc5bd85f..118609d5 100644 --- a/themes/kiwi-contrast.yaml +++ b/themes/kiwi-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/kiwi-light.yaml b/themes/kiwi-light.yaml index c7e14922..7457045b 100644 --- a/themes/kiwi-light.yaml +++ b/themes/kiwi-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/kiwi.yaml b/themes/kiwi.yaml index f10c01d6..9cf9c7bb 100644 --- a/themes/kiwi.yaml +++ b/themes/kiwi.yaml @@ -1,50 +1,52 @@ -name: "Kiwi" +name: "kiwi" source: - marketplace_id: "Mashadeve.kiwi" - version: "0.0.1" - installs: 0 - author: "Mashadeve" - repo: "https://github.com/Mashadeve/Kiwi" - url: "https://marketplace.visualstudio.com/items?itemName=Mashadeve.kiwi" + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + rating: 0 + ratings: 0 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" colors: - bg: "#303030" - fg: "#0EC043" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#BCBCBC" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" + bg: "#2A3330" + fg: "#EDEBE6" + black: "#36413D" + red: "#BA0E2E" + green: "#229986" + yellow: "#95C72A" + blue: "#0B6D5C" + magenta: "#229986" + cyan: "#95C72A" + white: "#F8F7F5" + brightBlack: "#586B65" + brightRed: "#F03E5F" + brightGreen: "#4AD7C0" + brightYellow: "#BFE275" + brightBlue: "#14CAAA" + brightMagenta: "#4AD7C0" + brightCyan: "#BFE275" + brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "pink" - hue: null + accent: "orange" + hue: 173 pair: null contrast: - fg: 49.8 + fg: 89.5 black: 0 - red: 22.6 - green: 48.9 - yellow: 81.5 - blue: 23.3 - magenta: 25.6 - cyan: 43.4 - white: 61.2 - brightBlack: 17.9 - brightRed: 34.4 - brightGreen: 59.4 - brightYellow: 91.5 - brightBlue: 35.9 - brightMagenta: 41.3 - brightCyan: 51.3 - brightWhite: 85.9 + red: 16.1 + green: 34 + yellow: 58.4 + blue: 15.8 + magenta: 34 + cyan: 58.4 + white: 97.3 + brightBlack: 18.1 + brightRed: 32.4 + brightGreen: 64.7 + brightYellow: 76 + brightBlue: 56.7 + brightMagenta: 64.7 + brightCyan: 76 + brightWhite: 102.5 diff --git a/themes/kiwisoup-fork.yaml b/themes/kiwisoup-fork.yaml index 4c6fad23..40e87534 100644 --- a/themes/kiwisoup-fork.yaml +++ b/themes/kiwisoup-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "0xJariel.chatgp-theme" version: "0.0.5" installs: 2496 + rating: 5 + ratings: 1 author: "0xJariel" repo: "https://github.com/0xJariel/ChatGP-Theme" url: "https://marketplace.visualstudio.com/items?itemName=0xJariel.chatgp-theme" diff --git a/themes/kjs-officials-electric-lime.yaml b/themes/kjs-officials-electric-lime.yaml new file mode 100644 index 00000000..774272c5 --- /dev/null +++ b/themes/kjs-officials-electric-lime.yaml @@ -0,0 +1,52 @@ +name: "KJS-Officials-Electric-Lime" +source: + marketplace_id: "KJS-Officials.kjs-officials----electriclime" + version: "3.3.7" + installs: 195 + rating: 0 + ratings: 0 + author: "KJS - Officials" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=KJS-Officials.kjs-officials----electriclime" +colors: + bg: "#0E0F0B" + fg: "#C9CD9A" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 73.6 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/knapsack.yaml b/themes/knapsack.yaml index a5648285..f73aa95e 100644 --- a/themes/knapsack.yaml +++ b/themes/knapsack.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "versionmaybe.knapsack-theme" version: "0.0.4" installs: 76 + rating: 0 + ratings: 0 author: "VersionMaybe." repo: "https://github.com/VersionMaybe/vs-code-knapsack" url: "https://marketplace.visualstudio.com/items?itemName=versionmaybe.knapsack-theme" diff --git a/themes/knfocus-alt.yaml b/themes/knfocus-alt.yaml index 78d28ed4..1c2a7281 100644 --- a/themes/knfocus-alt.yaml +++ b/themes/knfocus-alt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Knighttower.knfocus" version: "1.4.0" installs: 100 + rating: 0 + ratings: 0 author: "Knighttower" repo: "https://github.com/knighttower/vscode-theme-knfocus" url: "https://marketplace.visualstudio.com/items?itemName=Knighttower.knfocus" diff --git a/themes/knfocus-base.yaml b/themes/knfocus-base.yaml index 16c368b2..eebfdd5f 100644 --- a/themes/knfocus-base.yaml +++ b/themes/knfocus-base.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Knighttower.knfocus" version: "1.4.0" installs: 100 + rating: 0 + ratings: 0 author: "Knighttower" repo: "https://github.com/knighttower/vscode-theme-knfocus" url: "https://marketplace.visualstudio.com/items?itemName=Knighttower.knfocus" diff --git a/themes/knight-vscode.yaml b/themes/knight-vscode.yaml new file mode 100644 index 00000000..d7cf93a7 --- /dev/null +++ b/themes/knight-vscode.yaml @@ -0,0 +1,52 @@ +name: "knight-vscode" +source: + marketplace_id: "Kerogs.knight-vscode" + version: "1.0.8" + installs: 82 + rating: 0 + ratings: 0 + author: "Kerogs" + repo: "https://github.com/kerogs/knight-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Kerogs.knight-vscode" +colors: + bg: "#1C1F26" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 267 + pair: null + contrast: + fg: 78.5 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/knoctal-dark.yaml b/themes/knoctal-dark.yaml index 2c7b7625..17060839 100644 --- a/themes/knoctal-dark.yaml +++ b/themes/knoctal-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "najmiter.knoctal-theme" version: "0.1.13" installs: 81 + rating: 5 + ratings: 1 author: "Knoctal" repo: "https://github.com/najmiter/knoctal-theme" url: "https://marketplace.visualstudio.com/items?itemName=najmiter.knoctal-theme" diff --git a/themes/knoctal-darker.yaml b/themes/knoctal-darker.yaml index 73848ec2..a7e866f6 100644 --- a/themes/knoctal-darker.yaml +++ b/themes/knoctal-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "najmiter.knoctal-theme" version: "0.1.13" installs: 81 + rating: 5 + ratings: 1 author: "Knoctal" repo: "https://github.com/najmiter/knoctal-theme" url: "https://marketplace.visualstudio.com/items?itemName=najmiter.knoctal-theme" diff --git a/themes/knowit-dark.yaml b/themes/knowit-dark.yaml index d57d3e22..6b6b9145 100644 --- a/themes/knowit-dark.yaml +++ b/themes/knowit-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "knowit.knowit-color-theme" version: "1.0.0" installs: 586 + rating: 0 + ratings: 0 author: "KnowIT" repo: "https://github.com/JoseRa-KnowIT/knowit-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=knowit.knowit-color-theme" diff --git a/themes/koala-codes-theme.yaml b/themes/koala-codes-theme.yaml index ee52411f..0850cf26 100644 --- a/themes/koala-codes-theme.yaml +++ b/themes/koala-codes-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VigneshwaranK.koala" version: "0.0.2" installs: 789 + rating: 0 + ratings: 0 author: "Vigneshwaran K" repo: "https://github.com/Vigneshwaran-dev/Koala-Theme" url: "https://marketplace.visualstudio.com/items?itemName=VigneshwaranK.koala" diff --git a/themes/kod-purple.yaml b/themes/kod-purple.yaml index aebfd608..d560d5e2 100644 --- a/themes/kod-purple.yaml +++ b/themes/kod-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrewKodkod.kod-purple-theme" version: "0.0.3" installs: 215 + rating: 0 + ratings: 0 author: "Andrew Kodkod" repo: "https://github.com/akodkod/kod-purple-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndrewKodkod.kod-purple-theme" diff --git a/themes/kodex-arctic.yaml b/themes/kodex-arctic.yaml index e708a0cb..92c935d5 100644 --- a/themes/kodex-arctic.yaml +++ b/themes/kodex-arctic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pnx.kodex" version: "0.4.1" installs: 233 + rating: 5 + ratings: 1 author: "Henrik Hautakoski" repo: "https://github.com/pnx/kodex-vscode" url: "https://marketplace.visualstudio.com/items?itemName=pnx.kodex" diff --git a/themes/kodex.yaml b/themes/kodex.yaml index 3c571dbf..55a7ac39 100644 --- a/themes/kodex.yaml +++ b/themes/kodex.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pnx.kodex" version: "0.4.1" installs: 233 + rating: 5 + ratings: 1 author: "Henrik Hautakoski" repo: "https://github.com/pnx/kodex-vscode" url: "https://marketplace.visualstudio.com/items?itemName=pnx.kodex" diff --git a/themes/koffee-kreme.yaml b/themes/koffee-kreme.yaml index a0806a68..20c1ded6 100644 --- a/themes/koffee-kreme.yaml +++ b/themes/koffee-kreme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AchroDev.koffee-kreme" version: "0.7.5" installs: 520 + rating: 5 + ratings: 1 author: "AchroDev" repo: "https://github.com/AchroDev/koffee-kreme" url: "https://marketplace.visualstudio.com/items?itemName=AchroDev.koffee-kreme" diff --git a/themes/koi-noir-lan-theme.yaml b/themes/koi-noir-lan-theme.yaml index bc7d7161..fb408935 100644 --- a/themes/koi-noir-lan-theme.yaml +++ b/themes/koi-noir-lan-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wangx123.koi-noir-theme" version: "2.0.3" installs: 59 + rating: 5 + ratings: 1 author: "wangx" repo: "https://github.com/wangx7/koi-noir-theme" url: "https://marketplace.visualstudio.com/items?itemName=wangx123.koi-noir-theme" diff --git a/themes/koi-noir-theme.yaml b/themes/koi-noir-theme.yaml index c68d4799..d95815e9 100644 --- a/themes/koi-noir-theme.yaml +++ b/themes/koi-noir-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wangx123.koi-noir-theme" version: "2.0.3" installs: 59 + rating: 5 + ratings: 1 author: "wangx" repo: "https://github.com/wangx7/koi-noir-theme" url: "https://marketplace.visualstudio.com/items?itemName=wangx123.koi-noir-theme" diff --git a/themes/koi-pond-dark.yaml b/themes/koi-pond-dark.yaml index b568415b..cd29f78d 100644 --- a/themes/koi-pond-dark.yaml +++ b/themes/koi-pond-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ssera-themes" version: "2.0.2" installs: 334 + rating: 0 + ratings: 0 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" diff --git a/themes/koi-pond-light.yaml b/themes/koi-pond-light.yaml index 99eb3466..4b1bdf44 100644 --- a/themes/koi-pond-light.yaml +++ b/themes/koi-pond-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ssera-themes" version: "2.0.2" installs: 334 + rating: 0 + ratings: 0 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" diff --git a/themes/kokatheme.yaml b/themes/kokatheme.yaml index e869601d..b9ab649f 100644 --- a/themes/kokatheme.yaml +++ b/themes/kokatheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sabe.koka-theme" version: "0.0.10" installs: 14 + rating: 0 + ratings: 0 author: "Sabe" repo: "https://github.com/SabeDoesThings/Koka-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Sabe.koka-theme" diff --git a/themes/koki-dark.yaml b/themes/koki-dark.yaml index ed2a9f2f..a6543881 100644 --- a/themes/koki-dark.yaml +++ b/themes/koki-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hky.theme-koki" version: "0.0.5" installs: 188 + rating: 0 + ratings: 0 author: "hky" repo: "https://github.com/hky301/vscode-theme-koki" url: "https://marketplace.visualstudio.com/items?itemName=hky.theme-koki" diff --git a/themes/kokubo.yaml b/themes/kokubo.yaml index b03999a5..1f54a348 100644 --- a/themes/kokubo.yaml +++ b/themes/kokubo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kongaloosh.kongaloosh" version: "0.0.1" installs: 34 + rating: 0 + ratings: 0 author: "Kongaloosh" repo: "git push --set-upstream origin main" url: "https://marketplace.visualstudio.com/items?itemName=Kongaloosh.kongaloosh" diff --git a/themes/kolada.yaml b/themes/kolada.yaml index 6e4e4320..ac9ea45e 100644 --- a/themes/kolada.yaml +++ b/themes/kolada.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KaliaHayes.kolada" version: "0.4.0" installs: 7962 + rating: 5 + ratings: 4 author: "Kalia Hayes" repo: "https://github.com/KaliaHayes/Kolada-VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=KaliaHayes.kolada" diff --git a/themes/kong-light.yaml b/themes/kong-light.yaml new file mode 100644 index 00000000..83b447c3 --- /dev/null +++ b/themes/kong-light.yaml @@ -0,0 +1,52 @@ +name: "Kong Light" +source: + marketplace_id: "zeaphoo.kong-vscode-theme" + version: "1.0.10" + installs: 24 + rating: 0 + ratings: 0 + author: "zeaphoo" + repo: "https://github.com/zeaphoo/kong-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zeaphoo.kong-vscode-theme" +colors: + bg: "#F5F5F5" + fg: "#1F2328" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 96.8 + black: 95.5 + red: 68.8 + green: 79.3 + yellow: 92 + blue: 69 + magenta: 68.3 + cyan: 67.8 + white: 65.6 + brightBlack: 75.8 + brightRed: 79.3 + brightGreen: 68.6 + brightYellow: 86.1 + brightBlue: 54.7 + brightMagenta: 53.4 + brightCyan: 57.4 + brightWhite: 51.2 diff --git a/themes/kopo-theme.yaml b/themes/kopo-theme.yaml index 5771421d..0959cf61 100644 --- a/themes/kopo-theme.yaml +++ b/themes/kopo-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Itayon.kopo-theme" version: "1.0.1" installs: 59 + rating: 0 + ratings: 0 author: "Itayon" repo: "https://github.com/KopoCorp/VS-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Itayon.kopo-theme" diff --git a/themes/korbit.yaml b/themes/korbit.yaml index 25dbf27b..211c6e2a 100644 --- a/themes/korbit.yaml +++ b/themes/korbit.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RATIU5DEV.korbit-theme" version: "0.1.2" installs: 981 + rating: 5 + ratings: 1 author: "RATIU5DEV" repo: "https://github.com/RATIU5/korbit" url: "https://marketplace.visualstudio.com/items?itemName=RATIU5DEV.korbit-theme" diff --git a/themes/korean-dancheong-dark.yaml b/themes/korean-dancheong-dark.yaml index b50dc852..b847654a 100644 --- a/themes/korean-dancheong-dark.yaml +++ b/themes/korean-dancheong-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "weston0713.korean-dancheong-dark" version: "1.1.2" installs: 190 + rating: 0 + ratings: 0 author: "weston0713" repo: "https://github.com/HC-kang/korean-dancheong-dark" url: "https://marketplace.visualstudio.com/items?itemName=weston0713.korean-dancheong-dark" diff --git a/themes/korsr-theme.yaml b/themes/korsr-theme.yaml index b248db34..e1e0aa90 100644 --- a/themes/korsr-theme.yaml +++ b/themes/korsr-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Killuox.korsr-theme" version: "0.7.0" installs: 17 + rating: 0 + ratings: 0 author: "Killuox" repo: "https://github.com/killuox/korsr-theme" url: "https://marketplace.visualstudio.com/items?itemName=Killuox.korsr-theme" diff --git a/themes/kotama-otose.yaml b/themes/kotama-otose.yaml new file mode 100644 index 00000000..8eb003c1 --- /dev/null +++ b/themes/kotama-otose.yaml @@ -0,0 +1,52 @@ +name: "Kotama Otose" +source: + marketplace_id: "hashpp.veritas-code" + version: "1.0.1" + installs: 234 + rating: 0 + ratings: 0 + author: "hashpp" + repo: "https://github.com/hash112/veritas-code" + url: "https://marketplace.visualstudio.com/items?itemName=hashpp.veritas-code" +colors: + bg: "#302D2C" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 23.1 + green: 49.4 + yellow: 82 + blue: 23.9 + magenta: 26.2 + cyan: 44 + white: 86.4 + brightBlack: 18.5 + brightRed: 35 + brightGreen: 60 + brightYellow: 92.1 + brightBlue: 36.4 + brightMagenta: 41.8 + brightCyan: 51.8 + brightWhite: 86.4 diff --git a/themes/kozy-darker.yaml b/themes/kozy-darker.yaml index 4c03190c..ee91fea8 100644 --- a/themes/kozy-darker.yaml +++ b/themes/kozy-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Artezio.kozy-theme" version: "2.5.3" installs: 507 + rating: 0 + ratings: 0 author: "Artezio" repo: "https://github.com/Kozy-theme/vscode-cozy" url: "https://marketplace.visualstudio.com/items?itemName=Artezio.kozy-theme" diff --git a/themes/kozy.yaml b/themes/kozy.yaml index a6caab5b..99a34ab9 100644 --- a/themes/kozy.yaml +++ b/themes/kozy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Artezio.kozy-theme" version: "2.5.3" installs: 507 + rating: 0 + ratings: 0 author: "Artezio" repo: "https://github.com/Kozy-theme/vscode-cozy" url: "https://marketplace.visualstudio.com/items?itemName=Artezio.kozy-theme" diff --git a/themes/kpurple.yaml b/themes/kpurple.yaml index 63380ea1..ff31c03e 100644 --- a/themes/kpurple.yaml +++ b/themes/kpurple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ksckaan1.kpurple" version: "1.0.0" installs: 193 + rating: 0 + ratings: 0 author: "Kaan Kuscu" repo: "https://github.com/ksckaan1/kpurple-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ksckaan1.kpurple" diff --git a/themes/kradeno.yaml b/themes/kradeno.yaml index 3bde1e57..2de12546 100644 --- a/themes/kradeno.yaml +++ b/themes/kradeno.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NeoWees.onebadass-theme-neowees" version: "0.6.0" installs: 109 + rating: 0 + ratings: 0 author: "Neo Wees" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NeoWees.onebadass-theme-neowees" diff --git a/themes/krb-blue.yaml b/themes/krb-blue.yaml new file mode 100644 index 00000000..0164246a --- /dev/null +++ b/themes/krb-blue.yaml @@ -0,0 +1,52 @@ +name: "Krb_Blue" +source: + marketplace_id: "KUSHALSAHA.krbblue" + version: "2.0.0" + installs: 241 + rating: 0 + ratings: 0 + author: "KUSHAL SAHA" + repo: "https://github.com/krbfx/krbblue" + url: "https://marketplace.visualstudio.com/items?itemName=KUSHALSAHA.krbblue" +colors: + bg: "#252F32" + fg: "#949494" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 218 + pair: null + contrast: + fg: 40.1 + black: 0 + red: 23.2 + green: 49.5 + yellow: 82.1 + blue: 23.9 + magenta: 26.2 + cyan: 44 + white: 86.5 + brightBlack: 18.5 + brightRed: 35 + brightGreen: 60 + brightYellow: 92.1 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.5 diff --git a/themes/krb-violet.yaml b/themes/krb-violet.yaml index 61283043..1d08cb65 100644 --- a/themes/krb-violet.yaml +++ b/themes/krb-violet.yaml @@ -1,13 +1,15 @@ name: "Krb_Violet" source: - marketplace_id: "KUSHALSAHA.krbviolet" - version: "1.0.2" - installs: 810 + marketplace_id: "KUSHALSAHA.krbblue" + version: "2.0.0" + installs: 241 + rating: 0 + ratings: 0 author: "KUSHAL SAHA" - repo: "https://github.com/krbfx/krbviolet" - url: "https://marketplace.visualstudio.com/items?itemName=KUSHALSAHA.krbviolet" + repo: "https://github.com/krbfx/krbblue" + url: "https://marketplace.visualstudio.com/items?itemName=KUSHALSAHA.krbblue" colors: - bg: "#312A3F" + bg: "#403A4B" fg: "#D4D4D4" black: "#000000" red: "#CD3131" @@ -28,23 +30,23 @@ colors: meta: mode: "dark" accent: "pink" - hue: 299 + hue: 301 pair: null contrast: - fg: 75.9 - black: 0 - red: 23.2 - green: 49.4 - yellow: 73.7 - blue: 23.9 - magenta: 26.2 - cyan: 44 - white: 86.5 - brightBlack: 18.5 - brightRed: 35 - brightGreen: 60 - brightYellow: 98.7 - brightBlue: 36.4 - brightMagenta: 41.8 - brightCyan: 51.8 - brightWhite: 86.5 + fg: 71.7 + black: 8.6 + red: 19 + green: 45.3 + yellow: 69.6 + blue: 19.7 + magenta: 22 + cyan: 39.8 + white: 82.3 + brightBlack: 14.3 + brightRed: 30.8 + brightGreen: 55.8 + brightYellow: 94.5 + brightBlue: 32.3 + brightMagenta: 37.6 + brightCyan: 47.7 + brightWhite: 82.3 diff --git a/themes/kripton.yaml b/themes/kripton.yaml index 22410cdf..a7debe93 100644 --- a/themes/kripton.yaml +++ b/themes/kripton.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IanMuchina.kripton-flat" version: "0.0.2" installs: 1184 + rating: 0 + ratings: 0 author: "Ian Muchina" repo: "https://github.com/ianmuchina/kripton-vscode" url: "https://marketplace.visualstudio.com/items?itemName=IanMuchina.kripton-flat" diff --git a/themes/krishna-dark-elegant.yaml b/themes/krishna-dark-elegant.yaml index 414f07b4..d7cdcf65 100644 --- a/themes/krishna-dark-elegant.yaml +++ b/themes/krishna-dark-elegant.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dcoder.krsna" version: "1.0.4" installs: 103 + rating: 5 + ratings: 1 author: "dcoder" repo: "https://github.com/Dhruv-Arora-Git/Krsna-VS" url: "https://marketplace.visualstudio.com/items?itemName=dcoder.krsna" diff --git a/themes/krishna-default-dark-theme.yaml b/themes/krishna-default-dark-theme.yaml index 93348469..6b68fc9c 100644 --- a/themes/krishna-default-dark-theme.yaml +++ b/themes/krishna-default-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BhootStudio.bhoot-theme" version: "1.0.4" installs: 78 + rating: 0 + ratings: 0 author: "Bhoot Studio" repo: "https://github.com/DebkantaMondal/Bhoot-VS-Theme" url: "https://marketplace.visualstudio.com/items?itemName=BhootStudio.bhoot-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 243 + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/krone.yaml b/themes/krone.yaml index 4d7fc0ee..c70720b7 100644 --- a/themes/krone.yaml +++ b/themes/krone.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Volskaya.irrelevant" version: "0.0.2" installs: 33 + rating: 0 + ratings: 0 author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" diff --git a/themes/krow-t.yaml b/themes/krow-t.yaml index 63315cec..b5b88530 100644 --- a/themes/krow-t.yaml +++ b/themes/krow-t.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DavidosSantosFreitas.krow-t" version: "0.0.3" installs: 516 + rating: 0 + ratings: 0 author: "Davi dos Santos Freitas" repo: "https://github.com/Nasalis/Krow-t-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DavidosSantosFreitas.krow-t" diff --git a/themes/kryptonite-theme.yaml b/themes/kryptonite-theme.yaml index 30440d18..c9f58b1f 100644 --- a/themes/kryptonite-theme.yaml +++ b/themes/kryptonite-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevangTomar.vscode-diverse-dye" version: "1.3.0" installs: 2595 + rating: 5 + ratings: 3 author: "Devang Tomar ⭐" repo: "https://github.com/devangtomar/vscode-diverse-dye" url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" diff --git a/themes/ktrz-monokai.yaml b/themes/ktrz-monokai.yaml index 23ba9797..690702d0 100644 --- a/themes/ktrz-monokai.yaml +++ b/themes/ktrz-monokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ixkaito.ktrz-monokai" version: "0.1.7" installs: 11063 + rating: 5 + ratings: 2 author: "Kite" repo: "https://github.com/ixkaito/ktrz-monokai" url: "https://marketplace.visualstudio.com/items?itemName=ixkaito.ktrz-monokai" diff --git a/themes/kubesong.yaml b/themes/kubesong.yaml index 79388747..3a8fa102 100644 --- a/themes/kubesong.yaml +++ b/themes/kubesong.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kubes.kubesong" version: "1.0.13" installs: 1083 + rating: 5 + ratings: 1 author: "Kubes" repo: "https://github.com/helgelol/kubesong-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Kubes.kubesong" diff --git a/themes/kultist-v2.yaml b/themes/kultist-v2.yaml index 03475e40..1783cf41 100644 --- a/themes/kultist-v2.yaml +++ b/themes/kultist-v2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codekult.kultist-color-theme" version: "1.1.0" installs: 313 + rating: 0 + ratings: 0 author: "codekult" repo: "https://github.com/codekult/kultist-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=codekult.kultist-color-theme" diff --git a/themes/kurdish-vibrant-theme.yaml b/themes/kurdish-vibrant-theme.yaml index 3df79271..c765e6ba 100644 --- a/themes/kurdish-vibrant-theme.yaml +++ b/themes/kurdish-vibrant-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "miladkermanji8639.kurdish-theme" version: "1.1.0" installs: 29 + rating: 5 + ratings: 1 author: "miladkermanji8639" repo: null url: "https://marketplace.visualstudio.com/items?itemName=miladkermanji8639.kurdish-theme" diff --git a/themes/kurdor-light.yaml b/themes/kurdor-light.yaml index 7dcfeb34..b2800546 100644 --- a/themes/kurdor-light.yaml +++ b/themes/kurdor-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rashidfarhad.kurdor" version: "1.4.1" installs: 27 + rating: 5 + ratings: 1 author: "KurdorTheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rashidfarhad.kurdor" diff --git a/themes/kuro-sakura.yaml b/themes/kuro-sakura.yaml new file mode 100644 index 00000000..285166df --- /dev/null +++ b/themes/kuro-sakura.yaml @@ -0,0 +1,52 @@ +name: "Kuro Sakura" +source: + marketplace_id: "cnrxad.sakura-x" + version: "1.0.0" + installs: 181 + rating: 0 + ratings: 0 + author: "cnrxad" + repo: "https://github.com/cnrxad/sakura-x" + url: "https://marketplace.visualstudio.com/items?itemName=cnrxad.sakura-x" +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#1A1B26" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#9D4EDD" + cyan: "#56B6C2" + white: "#C0CAF5" + brightBlack: "#1A1B26" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#9D4EDD" + brightCyan: "#56B6C2" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "magenta" + hue: 280 + pair: null + contrast: + fg: 73.8 + black: 0 + red: 41.5 + green: 61.7 + yellow: 70 + blue: 54.1 + magenta: 28.8 + cyan: 54 + white: 73.8 + brightBlack: 0 + brightRed: 41.5 + brightGreen: 61.7 + brightYellow: 70 + brightBlue: 54.1 + brightMagenta: 28.8 + brightCyan: 54 + brightWhite: 73.8 diff --git a/themes/kuro-theme-color-theme.yaml b/themes/kuro-theme-color-theme.yaml index 25507acd..8e315f65 100644 --- a/themes/kuro-theme-color-theme.yaml +++ b/themes/kuro-theme-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kuroanh.kuro-theme" version: "1.3.2" installs: 343 + rating: 0 + ratings: 0 author: "kuro_anh" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kuroanh.kuro-theme" diff --git a/themes/kuro.yaml b/themes/kuro.yaml index 00d255ab..f88b4d9e 100644 --- a/themes/kuro.yaml +++ b/themes/kuro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TehMatcha.morfonica-theme" version: "1.0.3" installs: 41 + rating: 0 + ratings: 0 author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-morfonica-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.morfonica-theme" diff --git a/themes/kurodake-green.yaml b/themes/kurodake-green.yaml new file mode 100644 index 00000000..a61c7f71 --- /dev/null +++ b/themes/kurodake-green.yaml @@ -0,0 +1,50 @@ +name: "kurodake-green" +source: + marketplace_id: "awesometaro.awesome-green" + version: "0.0.2" + installs: 24 + author: "awesometaro" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=awesometaro.awesome-green" +colors: + bg: "#060A06" + fg: "#55C455" + black: "#060A06" + red: "#31D18F" + green: "#7AF77A" + yellow: "#63E063" + blue: "#55C455" + magenta: "#63E063" + cyan: "#7AF77A" + white: "#E8FFE8" + brightBlack: "#284C28" + brightRed: "#63E063" + brightGreen: "#A0FFA0" + brightYellow: "#A0FFA0" + brightBlue: "#7AF77A" + brightMagenta: "#7AF77A" + brightCyan: "#A0FFA0" + brightWhite: "#B7FFB7" +meta: + mode: "dark" + accent: "green" + hue: 145 + pair: null + contrast: + fg: 58.4 + black: 0 + red: 64.8 + green: 86 + yellow: 72.8 + blue: 58.4 + magenta: 72.8 + cyan: 86 + white: 103.6 + brightBlack: 9.9 + brightRed: 72.8 + brightGreen: 93.7 + brightYellow: 93.7 + brightBlue: 86 + brightMagenta: 86 + brightCyan: 93.7 + brightWhite: 96.4 diff --git a/themes/kuroir-dark-01-crimson.yaml b/themes/kuroir-dark-01-crimson.yaml index e8d6f10d..17bb30d7 100644 --- a/themes/kuroir-dark-01-crimson.yaml +++ b/themes/kuroir-dark-01-crimson.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-dark-02-vermilion.yaml b/themes/kuroir-dark-02-vermilion.yaml index d6bc4d97..a6d4547b 100644 --- a/themes/kuroir-dark-02-vermilion.yaml +++ b/themes/kuroir-dark-02-vermilion.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-dark-03-amber.yaml b/themes/kuroir-dark-03-amber.yaml new file mode 100644 index 00000000..66bdd97a --- /dev/null +++ b/themes/kuroir-dark-03-amber.yaml @@ -0,0 +1,52 @@ +name: "Kuroir Dark 03 Amber" +source: + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 + rating: 5 + ratings: 4 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" +colors: + bg: "#232220" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Kuroir Light 03 Amber" + contrast: + fg: 78.1 + black: 16.5 + red: 45.4 + green: 45.1 + yellow: 45.3 + blue: 45.1 + magenta: 44.9 + cyan: 59.4 + white: 46 + brightBlack: 23.6 + brightRed: 58 + brightGreen: 57.6 + brightYellow: 57.9 + brightBlue: 57.8 + brightMagenta: 71.7 + brightCyan: 68 + brightWhite: 80.2 diff --git a/themes/kuroir-dark-04-goldenrod.yaml b/themes/kuroir-dark-04-goldenrod.yaml index 6ab713ab..84d2c14f 100644 --- a/themes/kuroir-dark-04-goldenrod.yaml +++ b/themes/kuroir-dark-04-goldenrod.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-dark-06-chartreuse.yaml b/themes/kuroir-dark-06-chartreuse.yaml index 31db6cef..e4504fd9 100644 --- a/themes/kuroir-dark-06-chartreuse.yaml +++ b/themes/kuroir-dark-06-chartreuse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-dark-07-fern.yaml b/themes/kuroir-dark-07-fern.yaml index eaa12668..22088ea8 100644 --- a/themes/kuroir-dark-07-fern.yaml +++ b/themes/kuroir-dark-07-fern.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-dark-08-emerald.yaml b/themes/kuroir-dark-08-emerald.yaml index 69db624d..daa4cf18 100644 --- a/themes/kuroir-dark-08-emerald.yaml +++ b/themes/kuroir-dark-08-emerald.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-dark-09-jade.yaml b/themes/kuroir-dark-09-jade.yaml index 0d53ca15..3d5e0fb1 100644 --- a/themes/kuroir-dark-09-jade.yaml +++ b/themes/kuroir-dark-09-jade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-dark-11-aqua.yaml b/themes/kuroir-dark-11-aqua.yaml new file mode 100644 index 00000000..9ac99bc1 --- /dev/null +++ b/themes/kuroir-dark-11-aqua.yaml @@ -0,0 +1,52 @@ +name: "Kuroir Dark 11 Aqua" +source: + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 + rating: 5 + ratings: 4 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" +colors: + bg: "#202222" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.1 + black: 16.6 + red: 45.4 + green: 45.1 + yellow: 45.3 + blue: 45.2 + magenta: 44.9 + cyan: 59.5 + white: 46.1 + brightBlack: 23.6 + brightRed: 58.1 + brightGreen: 57.7 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.7 + brightCyan: 68.1 + brightWhite: 80.2 diff --git a/themes/kuroir-dark-14-cerulean.yaml b/themes/kuroir-dark-14-cerulean.yaml new file mode 100644 index 00000000..24dda8d5 --- /dev/null +++ b/themes/kuroir-dark-14-cerulean.yaml @@ -0,0 +1,52 @@ +name: "Kuroir Dark 14 Cerulean" +source: + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 + rating: 5 + ratings: 4 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" +colors: + bg: "#202122" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.2 + black: 16.7 + red: 45.5 + green: 45.2 + yellow: 45.5 + blue: 45.3 + magenta: 45 + cyan: 59.6 + white: 46.2 + brightBlack: 23.7 + brightRed: 58.2 + brightGreen: 57.8 + brightYellow: 58.1 + brightBlue: 58 + brightMagenta: 71.8 + brightCyan: 68.2 + brightWhite: 80.3 diff --git a/themes/kuroir-dark-15-sky.yaml b/themes/kuroir-dark-15-sky.yaml new file mode 100644 index 00000000..0abbfa87 --- /dev/null +++ b/themes/kuroir-dark-15-sky.yaml @@ -0,0 +1,52 @@ +name: "Kuroir Dark 15 Sky" +source: + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 + rating: 5 + ratings: 4 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" +colors: + bg: "#212122" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Kuroir Light 15 Sky" + contrast: + fg: 78.2 + black: 16.6 + red: 45.5 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.6 + white: 46.2 + brightBlack: 23.7 + brightRed: 58.2 + brightGreen: 57.8 + brightYellow: 58.1 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/kuroir-dark-18-indigo.yaml b/themes/kuroir-dark-18-indigo.yaml index b57b67b7..20f3d3c1 100644 --- a/themes/kuroir-dark-18-indigo.yaml +++ b/themes/kuroir-dark-18-indigo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-dark-20-amethyst.yaml b/themes/kuroir-dark-20-amethyst.yaml index 6686185e..9e2c0d77 100644 --- a/themes/kuroir-dark-20-amethyst.yaml +++ b/themes/kuroir-dark-20-amethyst.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-dark-21-magenta.yaml b/themes/kuroir-dark-21-magenta.yaml index 5647289c..25edec89 100644 --- a/themes/kuroir-dark-21-magenta.yaml +++ b/themes/kuroir-dark-21-magenta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-dark-22-fuchsia.yaml b/themes/kuroir-dark-22-fuchsia.yaml index e5cf16f4..85ddccd4 100644 --- a/themes/kuroir-dark-22-fuchsia.yaml +++ b/themes/kuroir-dark-22-fuchsia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-dark-23-rose.yaml b/themes/kuroir-dark-23-rose.yaml index e9076d76..adc859bd 100644 --- a/themes/kuroir-dark-23-rose.yaml +++ b/themes/kuroir-dark-23-rose.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-dark-24-coral.yaml b/themes/kuroir-dark-24-coral.yaml index aa44a1ae..0fd41262 100644 --- a/themes/kuroir-dark-24-coral.yaml +++ b/themes/kuroir-dark-24-coral.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-light-03-amber.yaml b/themes/kuroir-light-03-amber.yaml new file mode 100644 index 00000000..796d9e56 --- /dev/null +++ b/themes/kuroir-light-03-amber.yaml @@ -0,0 +1,52 @@ +name: "Kuroir Light 03 Amber" +source: + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 + rating: 5 + ratings: 4 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" +colors: + bg: "#FEFDFC" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Kuroir Dark 03 Amber" + contrast: + fg: 104.9 + black: 100.4 + red: 73.7 + green: 84.1 + yellow: 96.9 + blue: 73.8 + magenta: 73.2 + cyan: 72.7 + white: 70.5 + brightBlack: 80.7 + brightRed: 84.1 + brightGreen: 73.5 + brightYellow: 90.9 + brightBlue: 59.6 + brightMagenta: 58.2 + brightCyan: 62.2 + brightWhite: 56.1 diff --git a/themes/kuroir-light-07-fern.yaml b/themes/kuroir-light-07-fern.yaml index 6e6cdc88..ec676f42 100644 --- a/themes/kuroir-light-07-fern.yaml +++ b/themes/kuroir-light-07-fern.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-light-09-jade.yaml b/themes/kuroir-light-09-jade.yaml index a9bd6ed5..874ce053 100644 --- a/themes/kuroir-light-09-jade.yaml +++ b/themes/kuroir-light-09-jade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-light-12-teal.yaml b/themes/kuroir-light-12-teal.yaml new file mode 100644 index 00000000..7ceb9e47 --- /dev/null +++ b/themes/kuroir-light-12-teal.yaml @@ -0,0 +1,52 @@ +name: "Kuroir Light 12 Teal" +source: + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 + rating: 5 + ratings: 4 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" +colors: + bg: "#FDFEFE" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 105.3 + black: 100.8 + red: 74 + green: 84.5 + yellow: 97.2 + blue: 74.2 + magenta: 73.6 + cyan: 73.1 + white: 70.9 + brightBlack: 81.1 + brightRed: 84.5 + brightGreen: 73.9 + brightYellow: 91.3 + brightBlue: 60 + brightMagenta: 58.6 + brightCyan: 62.6 + brightWhite: 56.5 diff --git a/themes/kuroir-light-15-sky.yaml b/themes/kuroir-light-15-sky.yaml index 3e89cdcf..07edb561 100644 --- a/themes/kuroir-light-15-sky.yaml +++ b/themes/kuroir-light-15-sky.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-light-18-indigo.yaml b/themes/kuroir-light-18-indigo.yaml index 9cf36e64..c5cba621 100644 --- a/themes/kuroir-light-18-indigo.yaml +++ b/themes/kuroir-light-18-indigo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-light-19-violet.yaml b/themes/kuroir-light-19-violet.yaml index d1ca0dec..4fdbd2ec 100644 --- a/themes/kuroir-light-19-violet.yaml +++ b/themes/kuroir-light-19-violet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-light-23-rose.yaml b/themes/kuroir-light-23-rose.yaml index a45a8a90..666dc18e 100644 --- a/themes/kuroir-light-23-rose.yaml +++ b/themes/kuroir-light-23-rose.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6o8.kuroir-github-vscode-theme" version: "25.1.11" installs: 235 + rating: 5 + ratings: 4 author: "6o8" repo: null url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" diff --git a/themes/kuroir-light-24-coral.yaml b/themes/kuroir-light-24-coral.yaml new file mode 100644 index 00000000..3d0da81c --- /dev/null +++ b/themes/kuroir-light-24-coral.yaml @@ -0,0 +1,52 @@ +name: "Kuroir Light 24 Coral" +source: + marketplace_id: "6o8.kuroir-github-vscode-theme" + version: "25.1.11" + installs: 235 + rating: 5 + ratings: 4 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" +colors: + bg: "#FFFDFC" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Kuroir Dark 24 Coral" + contrast: + fg: 105.1 + black: 100.5 + red: 73.8 + green: 84.3 + yellow: 97 + blue: 74 + magenta: 73.3 + cyan: 72.8 + white: 70.6 + brightBlack: 80.8 + brightRed: 84.2 + brightGreen: 73.6 + brightYellow: 91.1 + brightBlue: 59.7 + brightMagenta: 58.3 + brightCyan: 62.4 + brightWhite: 56.2 diff --git a/themes/kyanite.yaml b/themes/kyanite.yaml index 0498e78c..d09adf6a 100644 --- a/themes/kyanite.yaml +++ b/themes/kyanite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NyctibiusVII.nyctibiusvii-theme" version: "1.1.4" installs: 254 + rating: 5 + ratings: 1 author: "NyctibiusVII" repo: "https://github.com/NyctibiusVII/nyctibiusvii-theme" url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.nyctibiusvii-theme" diff --git a/themes/kybern.yaml b/themes/kybern.yaml index 255f67d6..61c79ff4 100644 --- a/themes/kybern.yaml +++ b/themes/kybern.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EnzoMourany.kybern" version: "0.1.0" installs: 89 + rating: 0 + ratings: 0 author: "Enzo Mourany" repo: "https://github.com/enzo-mourany/kybern-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=EnzoMourany.kybern" diff --git a/themes/kybik-dark.yaml b/themes/kybik-dark.yaml index c3cb7ed6..27aace4a 100644 --- a/themes/kybik-dark.yaml +++ b/themes/kybik-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kybik.kybik" version: "1.0.0" installs: 49 + rating: 0 + ratings: 0 author: "Kybik" repo: "https://github.com/Kybikcube/Kybik" url: "https://marketplace.visualstudio.com/items?itemName=Kybik.kybik" diff --git a/themes/kybik.yaml b/themes/kybik.yaml index 57b913f1..855720e0 100644 --- a/themes/kybik.yaml +++ b/themes/kybik.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kybik.kybik" version: "1.0.0" installs: 49 + rating: 0 + ratings: 0 author: "Kybik" repo: "https://github.com/Kybikcube/Kybik" url: "https://marketplace.visualstudio.com/items?itemName=Kybik.kybik" diff --git a/themes/kyngo-s-theme.yaml b/themes/kyngo-s-theme.yaml index a042f4be..8c5f2e5b 100644 --- a/themes/kyngo-s-theme.yaml +++ b/themes/kyngo-s-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kyngo.functional-dark" version: "1.0.0" installs: 0 + rating: 0 + ratings: 0 author: "Kyngo" repo: "https://github.com/Kyngo/functional-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=kyngo.functional-dark" diff --git a/themes/kyojuro-rengoku.yaml b/themes/kyojuro-rengoku.yaml index aaacfaf1..8f7043f3 100644 --- a/themes/kyojuro-rengoku.yaml +++ b/themes/kyojuro-rengoku.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devLocifer.hashira-code-theme" version: "0.0.1" installs: 739 + rating: 5 + ratings: 1 author: "devLocifer" repo: "https://github.com/diazdjul19/hashira-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" diff --git a/themes/kyorazo-dark-theme.yaml b/themes/kyorazo-dark-theme.yaml index 30b35a50..a935e9e2 100644 --- a/themes/kyorazo-dark-theme.yaml +++ b/themes/kyorazo-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WilliamKyorazo.kyorazo-theme" version: "1.0.2" installs: 4876 + rating: 0 + ratings: 0 author: "William Kyorazo" repo: "https://github.com/bywilliams/kyorazo_theme_vscode" url: "https://marketplace.visualstudio.com/items?itemName=WilliamKyorazo.kyorazo-theme" diff --git a/themes/lackluster-dark.yaml b/themes/lackluster-dark.yaml index 56b8e8cd..f5cbcc44 100644 --- a/themes/lackluster-dark.yaml +++ b/themes/lackluster-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CoderSauce.lackluster-theme" version: "1.0.0" installs: 217 + rating: 0 + ratings: 0 author: "CoderSauce" repo: "https://github.com/slugbyte/lackluster.nvim" url: "https://marketplace.visualstudio.com/items?itemName=CoderSauce.lackluster-theme" diff --git a/themes/lackluster.yaml b/themes/lackluster.yaml new file mode 100644 index 00000000..45141a81 --- /dev/null +++ b/themes/lackluster.yaml @@ -0,0 +1,52 @@ +name: "Lackluster" +source: + marketplace_id: "CoderSauce.lackluster-theme" + version: "1.0.0" + installs: 217 + rating: 0 + ratings: 0 + author: "CoderSauce" + repo: "https://github.com/slugbyte/lackluster.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=CoderSauce.lackluster-theme" +colors: + bg: "#191919" + fg: "#CCCCCC" + black: "#000000" + red: "#D70000" + green: "#789978" + yellow: "#ABAB77" + blue: "#7788AA" + magenta: "#708090" + cyan: "#DEEEED" + white: "#CCCCCC" + brightBlack: "#444444" + brightRed: "#D70000" + brightGreen: "#789978" + brightYellow: "#ABAB77" + brightBlue: "#7788AA" + brightMagenta: "#708090" + brightCyan: "#DEEEED" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 74.4 + black: 0 + red: 26.5 + green: 41.7 + yellow: 53.9 + blue: 37.2 + magenta: 32.7 + cyan: 93.4 + white: 74.4 + brightBlack: 8.6 + brightRed: 26.5 + brightGreen: 41.7 + brightYellow: 53.9 + brightBlue: 37.2 + brightMagenta: 32.7 + brightCyan: 93.4 + brightWhite: 84.8 diff --git a/themes/ladyluck-color-theme.yaml b/themes/ladyluck-color-theme.yaml index a1a1c460..7d1a1a36 100644 --- a/themes/ladyluck-color-theme.yaml +++ b/themes/ladyluck-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ILadyLuckI.ladyluck-color-theme" version: "0.1.1" installs: 236 + rating: 5 + ratings: 2 author: "ILadyLuckI" repo: "https://github.com/ILadyLuckI/ladyluck-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=ILadyLuckI.ladyluck-color-theme" diff --git a/themes/lanten-color-theme-dark.yaml b/themes/lanten-color-theme-dark.yaml index dc5d4ba6..444dd820 100644 --- a/themes/lanten-color-theme-dark.yaml +++ b/themes/lanten-color-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lanten.lanten-color-theme" version: "0.8.0" installs: 1214 + rating: 0 + ratings: 0 author: "lanten" repo: "https://github.com/lanten/vscode-lanten-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=lanten.lanten-color-theme" diff --git a/themes/lapis-dark.yaml b/themes/lapis-dark.yaml new file mode 100644 index 00000000..89d38320 --- /dev/null +++ b/themes/lapis-dark.yaml @@ -0,0 +1,52 @@ +name: "Lapis Dark" +source: + marketplace_id: "AlexBarnett.lapis-vscode" + version: "1.8.3" + installs: 5590 + rating: 5 + ratings: 5 + author: "Alex Barnett" + repo: "https://github.com/aslbarnett/lapis-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AlexBarnett.lapis-vscode" +colors: + bg: "#15181E" + fg: "#D6E2FF" + black: "#2D3953" + red: "#FC83AB" + green: "#ABFC83" + yellow: "#FCD483" + blue: "#83ABFC" + magenta: "#D483FC" + cyan: "#83FCD4" + white: "#D6E2FF" + brightBlack: "#43547A" + brightRed: "#FC9CBC" + brightGreen: "#BCFC9C" + brightYellow: "#FCDC9C" + brightBlue: "#9CBCFC" + brightMagenta: "#DC9CFC" + brightCyan: "#9CFCDC" + brightWhite: "#D6E2FF" +meta: + mode: "dark" + accent: "magenta" + hue: 264 + pair: "Lapis Light" + contrast: + fg: 87.9 + black: 0 + red: 55.2 + green: 91.4 + yellow: 82.6 + blue: 56.1 + magenta: 52.4 + cyan: 90.8 + white: 87.9 + brightBlack: 14.8 + brightRed: 63.3 + brightGreen: 93.5 + brightYellow: 86.6 + brightBlue: 65.1 + brightMagenta: 61.2 + brightCyan: 92.9 + brightWhite: 87.9 diff --git a/themes/lapis-light.yaml b/themes/lapis-light.yaml new file mode 100644 index 00000000..bb20a654 --- /dev/null +++ b/themes/lapis-light.yaml @@ -0,0 +1,52 @@ +name: "Lapis Light" +source: + marketplace_id: "AlexBarnett.lapis-vscode" + version: "1.8.3" + installs: 5590 + rating: 5 + ratings: 5 + author: "Alex Barnett" + repo: "https://github.com/aslbarnett/lapis-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AlexBarnett.lapis-vscode" +colors: + bg: "#F5F8FF" + fg: "#2D3953" + black: "#7B8FB7" + red: "#CC3366" + green: "#52A329" + yellow: "#CC9933" + blue: "#3366CC" + magenta: "#9933CC" + cyan: "#29A37A" + white: "#2D3953" + brightBlack: "#9FADC6" + brightRed: "#D14775" + brightGreen: "#5CB72E" + brightYellow: "#D1A347" + brightBlue: "#4775D1" + brightMagenta: "#A347D1" + brightCyan: "#2EB789" + brightWhite: "#2D3953" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Lapis Dark" + contrast: + fg: 92.2 + black: 55.6 + red: 68.7 + green: 54.2 + yellow: 45.8 + blue: 72 + magenta: 73.1 + cyan: 54.2 + white: 92.2 + brightBlack: 40.4 + brightRed: 64.7 + brightGreen: 45.2 + brightYellow: 41.4 + brightBlue: 66.2 + brightMagenta: 68.3 + brightCyan: 45.2 + brightWhite: 92.2 diff --git a/themes/lapis.yaml b/themes/lapis.yaml new file mode 100644 index 00000000..7c238d20 --- /dev/null +++ b/themes/lapis.yaml @@ -0,0 +1,52 @@ +name: "Lapis" +source: + marketplace_id: "AlexBarnett.lapis-vscode" + version: "1.8.3" + installs: 5590 + rating: 5 + ratings: 5 + author: "Alex Barnett" + repo: "https://github.com/aslbarnett/lapis-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AlexBarnett.lapis-vscode" +colors: + bg: "#1B1F27" + fg: "#D6E2FF" + black: "#2D3953" + red: "#FC83AB" + green: "#ABFC83" + yellow: "#FCD483" + blue: "#83ABFC" + magenta: "#D483FC" + cyan: "#83FCD4" + white: "#D6E2FF" + brightBlack: "#43547A" + brightRed: "#FC9CBC" + brightGreen: "#BCFC9C" + brightYellow: "#FCDC9C" + brightBlue: "#9CBCFC" + brightMagenta: "#DC9CFC" + brightCyan: "#9CFCDC" + brightWhite: "#D6E2FF" +meta: + mode: "dark" + accent: "magenta" + hue: 264 + pair: null + contrast: + fg: 87.1 + black: 0 + red: 54.4 + green: 90.5 + yellow: 81.7 + blue: 55.2 + magenta: 51.5 + cyan: 90 + white: 87.1 + brightBlack: 14 + brightRed: 62.5 + brightGreen: 92.7 + brightYellow: 85.8 + brightBlue: 64.2 + brightMagenta: 60.4 + brightCyan: 92 + brightWhite: 87.1 diff --git a/themes/lapres99.yaml b/themes/lapres99.yaml new file mode 100644 index 00000000..c8dfef67 --- /dev/null +++ b/themes/lapres99.yaml @@ -0,0 +1,52 @@ +name: "Lapres99" +source: + marketplace_id: "pigeoncodes.lapres" + version: "0.0.7" + installs: 102 + rating: 0 + ratings: 0 + author: "pigeoncodes" + repo: "https://github.com/ppigeoncodes/Lapres" + url: "https://marketplace.visualstudio.com/items?itemName=pigeoncodes.lapres" +colors: + bg: "#112B3C" + fg: "#FFFFFF" + black: "#000000" + red: "#EA2020" + green: "#00965D" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF5A5A" + brightGreen: "#3AE29E" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#C7AAAA" +meta: + mode: "dark" + accent: "orange" + hue: 240 + pair: null + contrast: + fg: 104.2 + black: 0 + red: 29.4 + green: 33.1 + yellow: 83 + blue: 24.8 + magenta: 27.1 + cyan: 44.9 + white: 104.2 + brightBlack: 19.4 + brightRed: 41.7 + brightGreen: 70.2 + brightYellow: 93 + brightBlue: 37.3 + brightMagenta: 42.7 + brightCyan: 52.7 + brightWhite: 56.3 diff --git a/themes/laracasts-contrast.yaml b/themes/laracasts-contrast.yaml index d7a27c43..06efb86a 100644 --- a/themes/laracasts-contrast.yaml +++ b/themes/laracasts-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/laracasts-light.yaml b/themes/laracasts-light.yaml index 2575379e..c3c133b2 100644 --- a/themes/laracasts-light.yaml +++ b/themes/laracasts-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/laracasts.yaml b/themes/laracasts.yaml index d3f88454..0f2324ed 100644 --- a/themes/laracasts.yaml +++ b/themes/laracasts.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/laradocs.yaml b/themes/laradocs.yaml index 21cf35f8..818a2ef3 100644 --- a/themes/laradocs.yaml +++ b/themes/laradocs.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ogoudmane.laradocs-vscode" version: "0.0.1" installs: 249 + rating: 0 + ratings: 0 author: "Goudmane Oualid" repo: "https://github.com/goudmane/LaraDocs" url: "https://marketplace.visualstudio.com/items?itemName=ogoudmane.laradocs-vscode" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 52.2 black: 0 diff --git a/themes/laravel-contrast.yaml b/themes/laravel-contrast.yaml index 5ecc3d2c..a17fa91d 100644 --- a/themes/laravel-contrast.yaml +++ b/themes/laravel-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/laravel-light.yaml b/themes/laravel-light.yaml index cb4c8810..fedafb9c 100644 --- a/themes/laravel-light.yaml +++ b/themes/laravel-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/laravel.yaml b/themes/laravel.yaml index 6b370b4e..974260e3 100644 --- a/themes/laravel.yaml +++ b/themes/laravel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/lascavo-classic-contrast.yaml b/themes/lascavo-classic-contrast.yaml new file mode 100644 index 00000000..490b0191 --- /dev/null +++ b/themes/lascavo-classic-contrast.yaml @@ -0,0 +1,49 @@ +name: "Lascavo Classic contrast" +source: + marketplace_id: "mdrsh.lascavo" + version: "0.2.5" + installs: 146 + author: "mdrsh" + repo: "https://github.com/mdrsh/lascavo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mdrsh.lascavo" +colors: + bg: "#202022" + fg: "#FFFFFF" + black: "#222222" + red: "#FF194F" + green: "#1FE21F" + yellow: "#FFE65B" + blue: "#50A6FF" + magenta: "#FF6EEB" + cyan: "#56E3F5" + white: "#FFFFFF" + brightBlack: "#444444" + brightRed: "#FF962F" + brightGreen: "#67DE67" + brightYellow: "#FFEE9C" + brightBlue: "#8BCFFF" + brightMagenta: "#986EE5" + brightCyan: "#56E3F5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + contrast: + fg: 105.7 + black: 0 + red: 36.3 + green: 69.3 + yellow: 89.2 + blue: 50.2 + magenta: 53 + cyan: 76.7 + white: 105.7 + brightBlack: 7.7 + brightRed: 57.7 + brightGreen: 70 + brightYellow: 94.1 + brightBlue: 70.9 + brightMagenta: 35.3 + brightCyan: 76.7 + brightWhite: 105.7 diff --git a/themes/lascavo-classic.yaml b/themes/lascavo-classic.yaml new file mode 100644 index 00000000..5d147e43 --- /dev/null +++ b/themes/lascavo-classic.yaml @@ -0,0 +1,49 @@ +name: "Lascavo Classic" +source: + marketplace_id: "mdrsh.lascavo" + version: "0.2.5" + installs: 146 + author: "mdrsh" + repo: "https://github.com/mdrsh/lascavo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mdrsh.lascavo" +colors: + bg: "#202022" + fg: "#FFFFFF" + black: "#222222" + red: "#F3395C" + green: "#27AA5B" + yellow: "#D4B35E" + blue: "#60AFEE" + magenta: "#C564B7" + cyan: "#55B8C5" + white: "#FFFFFF" + brightBlack: "#444444" + brightRed: "#E28845" + brightGreen: "#0CABA8" + brightYellow: "#D5C595" + brightBlue: "#609AC2" + brightMagenta: "#595DAB" + brightCyan: "#55B8C5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + contrast: + fg: 105.7 + black: 0 + red: 35.7 + green: 43.4 + yellow: 61.1 + blue: 53.4 + magenta: 36.7 + cyan: 54.4 + white: 105.7 + brightBlack: 7.7 + brightRed: 48 + brightGreen: 45.9 + brightYellow: 69.8 + brightBlue: 42.5 + brightMagenta: 20.5 + brightCyan: 54.4 + brightWhite: 105.7 diff --git a/themes/lascavo-cold.yaml b/themes/lascavo-cold.yaml new file mode 100644 index 00000000..ef803c82 --- /dev/null +++ b/themes/lascavo-cold.yaml @@ -0,0 +1,49 @@ +name: "Lascavo Cold" +source: + marketplace_id: "mdrsh.lascavo" + version: "0.2.5" + installs: 146 + author: "mdrsh" + repo: "https://github.com/mdrsh/lascavo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mdrsh.lascavo" +colors: + bg: "#20272F" + fg: "#FFFFFF" + black: "#222222" + red: "#F3395C" + green: "#27AA5B" + yellow: "#D4B35E" + blue: "#60AFEE" + magenta: "#C564B7" + cyan: "#55B8C5" + white: "#FFFFFF" + brightBlack: "#444444" + brightRed: "#E28845" + brightGreen: "#0CABA8" + brightYellow: "#D5C595" + brightBlue: "#609AC2" + brightMagenta: "#595DAB" + brightCyan: "#55B8C5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 252 + contrast: + fg: 104.7 + black: 0 + red: 34.7 + green: 42.4 + yellow: 60.1 + blue: 52.4 + magenta: 35.7 + cyan: 53.4 + white: 104.7 + brightBlack: 0 + brightRed: 47 + brightGreen: 44.9 + brightYellow: 68.8 + brightBlue: 41.5 + brightMagenta: 19.5 + brightCyan: 53.4 + brightWhite: 104.7 diff --git a/themes/laserkai.yaml b/themes/laserkai.yaml index b6a4828b..ebe98e1a 100644 --- a/themes/laserkai.yaml +++ b/themes/laserkai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsmelion.laserkai" version: "1.4.3" installs: 1936 + rating: 5 + ratings: 1 author: "Christhopher Lion" repo: "https://github.com/itsmelion/laserwave" url: "https://marketplace.visualstudio.com/items?itemName=itsmelion.laserkai" diff --git a/themes/late-night.yaml b/themes/late-night.yaml index c40d3d37..a85c02b3 100644 --- a/themes/late-night.yaml +++ b/themes/late-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ozgurgunes.vscode-late-night-theme" version: "0.3.0" installs: 1878 + rating: 0 + ratings: 0 author: "Özgür Güneş" repo: "https://github.com/ozgurgunes/vscode-late-night-theme" url: "https://marketplace.visualstudio.com/items?itemName=ozgurgunes.vscode-late-night-theme" diff --git a/themes/lauds.yaml b/themes/lauds.yaml index 5e4f54ba..3c0149d8 100644 --- a/themes/lauds.yaml +++ b/themes/lauds.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rivethorn.compline" version: "1.0.1" installs: 548 + rating: 5 + ratings: 1 author: "Rivethorn" repo: "https://github.com/jblais493/compline" url: "https://marketplace.visualstudio.com/items?itemName=rivethorn.compline" diff --git a/themes/lavalink.yaml b/themes/lavalink.yaml index 75e34ce3..59763b96 100644 --- a/themes/lavalink.yaml +++ b/themes/lavalink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iwinsiju.lavalink-color-theme" version: "1.1.1" installs: 115 + rating: 0 + ratings: 0 author: "iwin siju" repo: "https://github.com/XOUT1/Lavalink-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=iwinsiju.lavalink-color-theme" diff --git a/themes/lavanda.yaml b/themes/lavanda.yaml index 9ed95639..d3251c2c 100644 --- a/themes/lavanda.yaml +++ b/themes/lavanda.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheodorLundin.lavanda-color-theme" version: "1.1.0" installs: 138 + rating: 5 + ratings: 1 author: "Theodor Lundin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TheodorLundin.lavanda-color-theme" diff --git a/themes/lavender-dark-theme.yaml b/themes/lavender-dark-theme.yaml index 928ace73..bad33338 100644 --- a/themes/lavender-dark-theme.yaml +++ b/themes/lavender-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LavenderTheme.lavender-code-theme" version: "1.0.1" installs: 1592 + rating: 5 + ratings: 1 author: "Ademir Silva" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LavenderTheme.lavender-code-theme" diff --git a/themes/lavender-light-theme.yaml b/themes/lavender-light-theme.yaml index 8f009687..ef1bb325 100644 --- a/themes/lavender-light-theme.yaml +++ b/themes/lavender-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LavenderTheme.lavender-code-theme" version: "1.0.1" installs: 1592 + rating: 5 + ratings: 1 author: "Ademir Silva" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LavenderTheme.lavender-code-theme" diff --git a/themes/lavender-light.yaml b/themes/lavender-light.yaml index ac21656b..2524c301 100644 --- a/themes/lavender-light.yaml +++ b/themes/lavender-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/lavender.yaml b/themes/lavender.yaml index 0f1f12bf..06855442 100644 --- a/themes/lavender.yaml +++ b/themes/lavender.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/lazuli.yaml b/themes/lazuli.yaml index dd36b0c7..f1eddc0d 100644 --- a/themes/lazuli.yaml +++ b/themes/lazuli.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IanGaunt.lazuli" version: "1.0.1" installs: 253 + rating: 0 + ratings: 0 author: "Ian Gaunt" repo: "https://github.com/i9nn/lazuli" url: "https://marketplace.visualstudio.com/items?itemName=IanGaunt.lazuli" diff --git a/themes/lazy-yellow-lemon.yaml b/themes/lazy-yellow-lemon.yaml index 51c1afdd..e5156de2 100644 --- a/themes/lazy-yellow-lemon.yaml +++ b/themes/lazy-yellow-lemon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arnorhs.lazy-yellow-lemon" version: "0.0.2" installs: 1250 + rating: 0 + ratings: 0 author: "Arnor Heidar Sigurdsson" repo: "https://github.com/arnorhs/lazy-yellow-lemon" url: "https://marketplace.visualstudio.com/items?itemName=arnorhs.lazy-yellow-lemon" diff --git a/themes/lazzaretti-plenatech.yaml b/themes/lazzaretti-plenatech.yaml index 62a17703..e0fdf64f 100644 --- a/themes/lazzaretti-plenatech.yaml +++ b/themes/lazzaretti-plenatech.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IgorLazzaretti.lazzaretti-s-vscode-themes" version: "0.0.2" installs: 37 + rating: 0 + ratings: 0 author: "Igor Lazzaretti" repo: null url: "https://marketplace.visualstudio.com/items?itemName=IgorLazzaretti.lazzaretti-s-vscode-themes" diff --git a/themes/lazzaretti-win11.yaml b/themes/lazzaretti-win11.yaml index 5a562612..8b27a3db 100644 --- a/themes/lazzaretti-win11.yaml +++ b/themes/lazzaretti-win11.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IgorLazzaretti.lazzaretti-s-vscode-themes" version: "0.0.2" installs: 37 + rating: 0 + ratings: 0 author: "Igor Lazzaretti" repo: null url: "https://marketplace.visualstudio.com/items?itemName=IgorLazzaretti.lazzaretti-s-vscode-themes" diff --git a/themes/lc.yaml b/themes/lc.yaml index addfb2db..bdc82616 100644 --- a/themes/lc.yaml +++ b/themes/lc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gronk-droid.lowcontrast" version: "0.2.4" installs: 216 + rating: 0 + ratings: 0 author: "gronk-droid" repo: "https://github.com/gronk-droid/lowcontrast" url: "https://marketplace.visualstudio.com/items?itemName=gronk-droid.lowcontrast" diff --git a/themes/lcars.yaml b/themes/lcars.yaml index 78496073..0868e90d 100644 --- a/themes/lcars.yaml +++ b/themes/lcars.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hayzey.lcars-theme" version: "0.1.2" installs: 1949 + rating: 5 + ratings: 4 author: "hayzey" repo: "https://github.com/hayzey/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=hayzey.lcars-theme" diff --git a/themes/le-moderne.yaml b/themes/le-moderne.yaml index b38f5ca1..16eb6dd6 100644 --- a/themes/le-moderne.yaml +++ b/themes/le-moderne.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "edgaremy.le-moderne" version: "1.0.2" installs: 63 + rating: 5 + ratings: 1 author: "Edgar Remy" repo: "https://github.com/edgaremy/lemoderne-theme" url: "https://marketplace.visualstudio.com/items?itemName=edgaremy.le-moderne" diff --git a/themes/leaf-black.yaml b/themes/leaf-black.yaml new file mode 100644 index 00000000..585e45fe --- /dev/null +++ b/themes/leaf-black.yaml @@ -0,0 +1,52 @@ +name: "Leaf Black" +source: + marketplace_id: "leafphp.leaf-theme" + version: "0.1.1" + installs: 2642 + rating: 4 + ratings: 1 + author: "Leaf PHP" + repo: "https://github.com/mychidarko/vscode-theme-leaf" + url: "https://marketplace.visualstudio.com/items?itemName=leafphp.leaf-theme" +colors: + bg: "#000000" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 82.3 + black: 0 + red: 41.8 + green: 37.7 + yellow: 76.6 + blue: 42.4 + magenta: 44.9 + cyan: 50.3 + white: 82.3 + brightBlack: 30.6 + brightRed: 41.8 + brightGreen: 37.7 + brightYellow: 76.6 + brightBlue: 42.4 + brightMagenta: 44.9 + brightCyan: 50.3 + brightWhite: 107.9 diff --git a/themes/leaf-dark-soft.yaml b/themes/leaf-dark-soft.yaml index 10efa214..bca7b524 100644 --- a/themes/leaf-dark-soft.yaml +++ b/themes/leaf-dark-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leafphp.leaf-theme" version: "0.1.1" installs: 2642 + rating: 4 + ratings: 1 author: "Leaf PHP" repo: "https://github.com/mychidarko/vscode-theme-leaf" url: "https://marketplace.visualstudio.com/items?itemName=leafphp.leaf-theme" diff --git a/themes/leaf-dark.yaml b/themes/leaf-dark.yaml index ab4180dd..8ef963ff 100644 --- a/themes/leaf-dark.yaml +++ b/themes/leaf-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leafphp.leaf-theme" version: "0.1.1" installs: 2642 + rating: 4 + ratings: 1 author: "Leaf PHP" repo: "https://github.com/mychidarko/vscode-theme-leaf" url: "https://marketplace.visualstudio.com/items?itemName=leafphp.leaf-theme" diff --git a/themes/lean-coders-dark.yaml b/themes/lean-coders-dark.yaml index cf2171eb..3156a5e7 100644 --- a/themes/lean-coders-dark.yaml +++ b/themes/lean-coders-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JulianPufler.lean-coders-theme" version: "0.0.2" installs: 428 + rating: 5 + ratings: 1 author: "Julian Pufler" repo: "https://github.com/puf17640/lean-coders-theme" url: "https://marketplace.visualstudio.com/items?itemName=JulianPufler.lean-coders-theme" diff --git a/themes/learn-with-sumit-theme.yaml b/themes/learn-with-sumit-theme.yaml index 39c8d264..5e8f26b5 100644 --- a/themes/learn-with-sumit-theme.yaml +++ b/themes/learn-with-sumit-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SumitSaha.learn-with-sumit-theme" version: "12.1.0" installs: 157511 + rating: 4.97 + ratings: 595 author: "Learn with Sumit" repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" diff --git a/themes/lebannen-theme.yaml b/themes/lebannen-theme.yaml new file mode 100644 index 00000000..91684798 --- /dev/null +++ b/themes/lebannen-theme.yaml @@ -0,0 +1,52 @@ +name: "Lebannen Theme" +source: + marketplace_id: "dorrajmachai.lebannen-theme" + version: "0.0.1" + installs: 20 + rating: 0 + ratings: 0 + author: "dorrajmachai" + repo: "https://github.com/dorrajmachai/vscode-lebannen-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dorrajmachai.lebannen-theme" +colors: + bg: "#0F1019" + fg: "#C6C6C6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 279 + pair: null + contrast: + fg: 71.6 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/leehxd.yaml b/themes/leehxd.yaml new file mode 100644 index 00000000..682b1e4e --- /dev/null +++ b/themes/leehxd.yaml @@ -0,0 +1,50 @@ +name: "LeehXD" +source: + marketplace_id: "LeehXD.LeehXD" + version: "0.0.6" + installs: 295 + author: "leehxd" + repo: "https://github.com/LeehXD/computaria-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LeehXD.LeehXD" +colors: + bg: "#191A28" + fg: "#FFFFFF" + black: "#666666" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#828282" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 281 + pair: null + contrast: + fg: 106.4 + black: 21.6 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.5 + brightBlack: 34.2 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/leftish.yaml b/themes/leftish.yaml index 2689b7e1..03ce9845 100644 --- a/themes/leftish.yaml +++ b/themes/leftish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "unkai.leftish" version: "0.1.2" installs: 117 + rating: 0 + ratings: 0 author: "Philippa Markovics" repo: "https://github.com/philippamarkovics/leftish" url: "https://marketplace.visualstudio.com/items?itemName=unkai.leftish" diff --git a/themes/legacy-contrast.yaml b/themes/legacy-contrast.yaml index facefe58..6df755db 100644 --- a/themes/legacy-contrast.yaml +++ b/themes/legacy-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/legacy-light.yaml b/themes/legacy-light.yaml index e0e1f015..99ac9b64 100644 --- a/themes/legacy-light.yaml +++ b/themes/legacy-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/legacy-solarized-dark-color-theme.yaml b/themes/legacy-solarized-dark-color-theme.yaml index 3d61b43a..e5530921 100644 --- a/themes/legacy-solarized-dark-color-theme.yaml +++ b/themes/legacy-solarized-dark-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ryanolsonx.solarized" version: "3.0.0" installs: 183454 + rating: 4.7 + ratings: 10 author: "Ryan Olson" repo: "https://github.com/ryanolsonx/vscode-solarized-theme" url: "https://marketplace.visualstudio.com/items?itemName=ryanolsonx.solarized" diff --git a/themes/legacy-solarized-light-color-theme.yaml b/themes/legacy-solarized-light-color-theme.yaml index bddcd681..78691466 100644 --- a/themes/legacy-solarized-light-color-theme.yaml +++ b/themes/legacy-solarized-light-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ryanolsonx.solarized" version: "3.0.0" installs: 183454 + rating: 4.7 + ratings: 10 author: "Ryan Olson" repo: "https://github.com/ryanolsonx/vscode-solarized-theme" url: "https://marketplace.visualstudio.com/items?itemName=ryanolsonx.solarized" diff --git a/themes/legendary-attack-of-blue.yaml b/themes/legendary-attack-of-blue.yaml new file mode 100644 index 00000000..41812d3c --- /dev/null +++ b/themes/legendary-attack-of-blue.yaml @@ -0,0 +1,52 @@ +name: "Legendary attack of blue" +source: + marketplace_id: "Akshath.the-legendary-blue" + version: "0.0.1" + installs: 112 + rating: 0 + ratings: 0 + author: "Akshath" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Akshath.the-legendary-blue" +colors: + bg: "#171936" + fg: "#FDFB75" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFFF00" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#00FF10" + brightYellow: "#FFFF67" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#00CDFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: null + contrast: + fg: 99.7 + black: 0 + red: 26.1 + green: 52.4 + yellow: 101.1 + blue: 26.8 + magenta: 29.1 + cyan: 46.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 46.5 + brightGreen: 84.9 + brightYellow: 101.7 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 66 + brightWhite: 89.4 diff --git a/themes/legendary-dark.yaml b/themes/legendary-dark.yaml index 90f0fa94..f194c435 100644 --- a/themes/legendary-dark.yaml +++ b/themes/legendary-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LlewellynPaintsil.legendary-light" version: "1.0.0" installs: 3077 + rating: 5 + ratings: 2 author: "Llewellyn Adonteng Paintsil" repo: "https://github.com/Llewellyn500/legendary-light" url: "https://marketplace.visualstudio.com/items?itemName=LlewellynPaintsil.legendary-light" diff --git a/themes/legends-theme-night-fymhr-special.yaml b/themes/legends-theme-night-fymhr-special.yaml index c906a402..1e571e11 100644 --- a/themes/legends-theme-night-fymhr-special.yaml +++ b/themes/legends-theme-night-fymhr-special.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rameem2003.legends-theme" version: "1.0.0" installs: 93 + rating: 5 + ratings: 1 author: "Mahmood Hassan Rameem" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rameem2003.legends-theme" diff --git a/themes/legends-theme-night.yaml b/themes/legends-theme-night.yaml index 74a0dcd9..edd7ee42 100644 --- a/themes/legends-theme-night.yaml +++ b/themes/legends-theme-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rameem2003.legends-theme" version: "1.0.0" installs: 93 + rating: 5 + ratings: 1 author: "Mahmood Hassan Rameem" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rameem2003.legends-theme" diff --git a/themes/leios.yaml b/themes/leios.yaml index 83f474be..3892cfc3 100644 --- a/themes/leios.yaml +++ b/themes/leios.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JahtominiOgunderu.leios-theme" version: "0.0.3" installs: 247 + rating: 5 + ratings: 1 author: "jahtomini" repo: "https://github.com/jahtomini/leios" url: "https://marketplace.visualstudio.com/items?itemName=JahtominiOgunderu.leios-theme" diff --git a/themes/lemon.yaml b/themes/lemon.yaml index e5fd7e08..447adf56 100644 --- a/themes/lemon.yaml +++ b/themes/lemon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Inductor.lemon" version: "0.0.1" installs: 418 + rating: 5 + ratings: 2 author: "Aditya" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Inductor.lemon" diff --git a/themes/lemonade.yaml b/themes/lemonade.yaml index 52205f1c..bcd39956 100644 --- a/themes/lemonade.yaml +++ b/themes/lemonade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Denner.lemonade-theme" version: "0.0.1" installs: 64 + rating: 5 + ratings: 1 author: "dennerrondinely" repo: "https://github.com/dennerrondinely/lemonade" url: "https://marketplace.visualstudio.com/items?itemName=Denner.lemonade-theme" diff --git a/themes/leon-arantes.yaml b/themes/leon-arantes.yaml index 123486b9..f74dee79 100644 --- a/themes/leon-arantes.yaml +++ b/themes/leon-arantes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Leon-Theme.leon-theme" version: "0.0.1" installs: 24 + rating: 0 + ratings: 0 author: "Leon's Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Leon-Theme.leon-theme" diff --git a/themes/leon.yaml b/themes/leon.yaml index a1ccf608..0e93d627 100644 --- a/themes/leon.yaml +++ b/themes/leon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DavidBell.leon" version: "0.0.4" installs: 264 + rating: 0 + ratings: 0 author: "David Bell" repo: "https://github.com/dtbell99/leon" url: "https://marketplace.visualstudio.com/items?itemName=DavidBell.leon" diff --git a/themes/leonida-keys-ocean.yaml b/themes/leonida-keys-ocean.yaml index d2f37f3d..3058114b 100644 --- a/themes/leonida-keys-ocean.yaml +++ b/themes/leonida-keys-ocean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/lesbian.yaml b/themes/lesbian.yaml index 53dbe025..f77b528a 100644 --- a/themes/lesbian.yaml +++ b/themes/lesbian.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ElizaMuss.elizas-pride-themes" version: "1.0.2" installs: 848 + rating: 0 + ratings: 0 author: "Eliza Muss" repo: "https://github.com/The-Gamer69/elizas-pride-themes" url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" diff --git a/themes/lesser.yaml b/themes/lesser.yaml index 0825d402..c763db7c 100644 --- a/themes/lesser.yaml +++ b/themes/lesser.yaml @@ -1,50 +1,52 @@ -name: "Lesser" +name: "lesser" source: - marketplace_id: "funcdfs.lesser" - version: "1.4.3" - installs: 61 - author: "funcdfs" + marketplace_id: "OvO.konng" + version: "5.0.0" + installs: 1352 + rating: 5 + ratings: 3 + author: "fengwei2002" repo: "https://github.com/funcdfs/vscode-theme-lesser" - url: "https://marketplace.visualstudio.com/items?itemName=funcdfs.lesser" + url: "https://marketplace.visualstudio.com/items?itemName=OvO.konng" colors: - bg: "#1F1F1F" - fg: "#E4E4E4" - black: "#181818" - red: "#E05050" - green: "#5CB85C" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#E4E4E4" - brightBlack: "#6B6B6B" - brightRed: "#F07178" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#61AFEF" - brightMagenta: "#C678DD" - brightCyan: "#56B6C2" - brightWhite: "#FFFFFF" + bg: "#211D25" + fg: "#ABB2BF" + black: "#2A2530" + red: "#FF8080" + green: "#7DD3C0" + yellow: "#FFF2B3" + blue: "#6A9BE8" + magenta: "#AFB6FF" + cyan: "#80FFB5" + white: "#BDC3CF" + brightBlack: "#636D83" + brightRed: "#FF8080" + brightGreen: "#7DD3C0" + brightYellow: "#FFF2B3" + brightBlue: "#6A9BE8" + brightMagenta: "#AFB6FF" + brightCyan: "#80FFB5" + brightWhite: "#EEEEEE" meta: mode: "dark" accent: "orange" - hue: null + hue: 308 pair: null contrast: - fg: 88.4 + fg: 58.5 black: 0 - red: 34.5 - green: 51.5 - yellow: 69.6 - blue: 53.7 - magenta: 44.2 - cyan: 53.6 - white: 88.4 - brightBlack: 23.2 - brightRed: 45.6 - brightGreen: 61.3 - brightYellow: 69.6 - brightBlue: 53.7 - brightMagenta: 44.2 - brightCyan: 53.6 - brightWhite: 105.9 + red: 52.8 + green: 68.8 + yellow: 96.9 + blue: 46 + magenta: 64 + cyan: 90.3 + white: 68.2 + brightBlack: 24.1 + brightRed: 52.8 + brightGreen: 68.8 + brightYellow: 96.9 + brightBlue: 46 + brightMagenta: 64 + brightCyan: 90.3 + brightWhite: 94.8 diff --git a/themes/let-s-code.yaml b/themes/let-s-code.yaml index 0e0376b7..ccd886d0 100644 --- a/themes/let-s-code.yaml +++ b/themes/let-s-code.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ChrisK.welovecoding" version: "0.0.1" installs: 1700 + rating: 5 + ratings: 1 author: "ChrisK" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ChrisK.welovecoding" diff --git a/themes/leviosa-theme.yaml b/themes/leviosa-theme.yaml index 5e2cb931..c682eb2b 100644 --- a/themes/leviosa-theme.yaml +++ b/themes/leviosa-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slatchma.leviosa-theme" version: "1.0.0" installs: 901 + rating: 5 + ratings: 1 author: "slatchma" repo: "https://github.com/slatchma/leviosa-theme" url: "https://marketplace.visualstudio.com/items?itemName=slatchma.leviosa-theme" diff --git a/themes/levuaska.yaml b/themes/levuaska.yaml index 5c67eae1..d4c7a154 100644 --- a/themes/levuaska.yaml +++ b/themes/levuaska.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AidenLeeIthink.levuaska" version: "0.2.0" installs: 117 + rating: 0 + ratings: 0 author: "Aiden Lee I think" repo: "https://github.com/snaapsh0t12/Levuaska" url: "https://marketplace.visualstudio.com/items?itemName=AidenLeeIthink.levuaska" diff --git a/themes/lht.yaml b/themes/lht.yaml index fb3e1245..bb5e93ed 100644 --- a/themes/lht.yaml +++ b/themes/lht.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "u29dc.set" version: "2.0.7" installs: 1570 + rating: 0 + ratings: 0 author: "iinfin" repo: "https://github.com/u29dc/set-vscode" url: "https://marketplace.visualstudio.com/items?itemName=u29dc.set" diff --git a/themes/liangliang-one-monokai.yaml b/themes/liangliang-one-monokai.yaml index 5feb53f3..60ae1da1 100644 --- a/themes/liangliang-one-monokai.yaml +++ b/themes/liangliang-one-monokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "liangliang.liangliang-one-monokai" version: "0.1.1" installs: 270 + rating: 0 + ratings: 0 author: "liangliang" repo: "https://github.com/LiangLiang723/liangliang-one-monokai" url: "https://marketplace.visualstudio.com/items?itemName=liangliang.liangliang-one-monokai" diff --git a/themes/lichen-contrast.yaml b/themes/lichen-contrast.yaml index b0666754..ca52c441 100644 --- a/themes/lichen-contrast.yaml +++ b/themes/lichen-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/lichen-light.yaml b/themes/lichen-light.yaml index 500c87d5..9f4f4733 100644 --- a/themes/lichen-light.yaml +++ b/themes/lichen-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/lichen.yaml b/themes/lichen.yaml index 031117c3..98a1bad2 100644 --- a/themes/lichen.yaml +++ b/themes/lichen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/liddlelabtheme.yaml b/themes/liddlelabtheme.yaml new file mode 100644 index 00000000..e7a1c736 --- /dev/null +++ b/themes/liddlelabtheme.yaml @@ -0,0 +1,52 @@ +name: "LiddleLabTheme" +source: + marketplace_id: "mikeliddle.LiddleLab-Theme" + version: "0.0.4" + installs: 13 + rating: 0 + ratings: 0 + author: "mikeliddle" + repo: "https://github.com/mikeliddle/liddlelab-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mikeliddle.LiddleLab-Theme" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#3F3F3F" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.5 + black: 8.1 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/liftoff.yaml b/themes/liftoff.yaml new file mode 100644 index 00000000..3b9f790c --- /dev/null +++ b/themes/liftoff.yaml @@ -0,0 +1,52 @@ +name: "Liftoff" +source: + marketplace_id: "KevinPek.liftoff" + version: "1.1.0" + installs: 61 + rating: 0 + ratings: 0 + author: "Kevin Pek" + repo: "https://github.com/kevin-pek/liftoff-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=KevinPek.liftoff" +colors: + bg: "#17161F" + fg: "#E0DEF2" + black: "#1E1D2A" + red: "#CE5076" + green: "#66C5AE" + yellow: "#EAAE7E" + blue: "#7BC1E4" + magenta: "#B18CE7" + cyan: "#56CDCB" + white: "#BFBFBF" + brightBlack: "#262432" + brightRed: "#E9678C" + brightGreen: "#5DE4C7" + brightYellow: "#F4C886" + brightBlue: "#8AE3F8" + brightMagenta: "#C9AFF0" + brightCyan: "#A4EEED" + brightWhite: "#D7D7D7" +meta: + mode: "dark" + accent: "red" + hue: 290 + pair: null + contrast: + fg: 86.8 + black: 0 + red: 32.7 + green: 61.1 + yellow: 64.4 + blue: 63.2 + magenta: 48.6 + cyan: 65.3 + white: 67 + brightBlack: 0 + brightRed: 43.4 + brightGreen: 76.4 + brightYellow: 76.4 + brightBlue: 80.7 + brightMagenta: 64.5 + brightCyan: 87.5 + brightWhite: 81.3 diff --git a/themes/lig-dark-soft.yaml b/themes/lig-dark-soft.yaml new file mode 100644 index 00000000..51ec0794 --- /dev/null +++ b/themes/lig-dark-soft.yaml @@ -0,0 +1,52 @@ +name: "LiG Dark Soft" +source: + marketplace_id: "froQ.lig-theme" + version: "0.1.0" + installs: 19 + rating: 0 + ratings: 0 + author: "froQ" + repo: "https://github.com/Fro-Q/vscode-theme-LiG" + url: "https://marketplace.visualstudio.com/items?itemName=froQ.lig-theme" +colors: + bg: "#272828" + fg: "#B7B3B0" + black: "#272828" + red: "#E79A9A" + green: "#69C493" + yellow: "#D7B366" + blue: "#6FA8F0" + magenta: "#B57AA7" + cyan: "#68B7B7" + white: "#FFF9F5" + brightBlack: "#272727" + brightRed: "#A45B5B" + brightGreen: "#387A55" + brightYellow: "#916F3B" + brightBlue: "#3F6496" + brightMagenta: "#774D70" + brightCyan: "#3A7878" + brightWhite: "#FFF9F5" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: "LiG Light Soft" + contrast: + fg: 58.2 + black: 0 + red: 55.3 + green: 57.5 + yellow: 60.4 + blue: 50.4 + magenta: 37.7 + cyan: 53 + white: 101.2 + brightBlack: 0 + brightRed: 24.2 + brightGreen: 23.1 + brightYellow: 26.2 + brightBlue: 18.4 + brightMagenta: 15.1 + brightCyan: 23.4 + brightWhite: 101.2 diff --git a/themes/lig-dark.yaml b/themes/lig-dark.yaml new file mode 100644 index 00000000..23b8636f --- /dev/null +++ b/themes/lig-dark.yaml @@ -0,0 +1,52 @@ +name: "LiG Dark" +source: + marketplace_id: "froQ.lig-theme" + version: "0.1.0" + installs: 19 + rating: 0 + ratings: 0 + author: "froQ" + repo: "https://github.com/Fro-Q/vscode-theme-LiG" + url: "https://marketplace.visualstudio.com/items?itemName=froQ.lig-theme" +colors: + bg: "#0F1010" + fg: "#B7B3B0" + black: "#0F1010" + red: "#E79A9A" + green: "#69C493" + yellow: "#D7B366" + blue: "#6FA8F0" + magenta: "#B57AA7" + cyan: "#68B7B7" + white: "#FFF9F5" + brightBlack: "#272727" + brightRed: "#A45B5B" + brightGreen: "#387A55" + brightYellow: "#916F3B" + brightBlue: "#3F6496" + brightMagenta: "#774D70" + brightCyan: "#3A7878" + brightWhite: "#FFF9F5" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: "LiG Light" + contrast: + fg: 61.2 + black: 0 + red: 58.3 + green: 60.5 + yellow: 63.4 + blue: 53.3 + magenta: 40.7 + cyan: 56 + white: 104.2 + brightBlack: 0 + brightRed: 27.2 + brightGreen: 26 + brightYellow: 29.2 + brightBlue: 21.4 + brightMagenta: 18.1 + brightCyan: 26.4 + brightWhite: 104.2 diff --git a/themes/lig-light-soft.yaml b/themes/lig-light-soft.yaml new file mode 100644 index 00000000..6b70bbf6 --- /dev/null +++ b/themes/lig-light-soft.yaml @@ -0,0 +1,52 @@ +name: "LiG Light Soft" +source: + marketplace_id: "froQ.lig-theme" + version: "0.1.0" + installs: 19 + rating: 0 + ratings: 0 + author: "froQ" + repo: "https://github.com/Fro-Q/vscode-theme-LiG" + url: "https://marketplace.visualstudio.com/items?itemName=froQ.lig-theme" +colors: + bg: "#E6E0DD" + fg: "#575655" + black: "#E6E0DD" + red: "#E79A9A" + green: "#69C493" + yellow: "#D7B366" + blue: "#6FA8F0" + magenta: "#B57AA7" + cyan: "#68B7B7" + white: "#0F1010" + brightBlack: "#E7E2DE" + brightRed: "#F7C7C7" + brightGreen: "#A3E4B8" + brightYellow: "#F1D89B" + brightBlue: "#AACDF7" + brightMagenta: "#E1B9D5" + brightCyan: "#A2E1E1" + brightWhite: "#0F1010" +meta: + mode: "light" + accent: "indigo" + hue: null + pair: "LiG Dark Soft" + contrast: + fg: 67.9 + black: 0 + red: 25.8 + green: 23.7 + yellow: 20.9 + blue: 30.6 + magenta: 43 + cyan: 28 + white: 87.9 + brightBlack: 0 + brightRed: 0 + brightGreen: 0 + brightYellow: 0 + brightBlue: 10.9 + brightMagenta: 13.8 + brightCyan: 0 + brightWhite: 87.9 diff --git a/themes/lig-light.yaml b/themes/lig-light.yaml new file mode 100644 index 00000000..344c1e40 --- /dev/null +++ b/themes/lig-light.yaml @@ -0,0 +1,52 @@ +name: "LiG Light" +source: + marketplace_id: "froQ.lig-theme" + version: "0.1.0" + installs: 19 + rating: 0 + ratings: 0 + author: "froQ" + repo: "https://github.com/Fro-Q/vscode-theme-LiG" + url: "https://marketplace.visualstudio.com/items?itemName=froQ.lig-theme" +colors: + bg: "#FFF9F5" + fg: "#575655" + black: "#FFF9F5" + red: "#E79A9A" + green: "#69C493" + yellow: "#D7B366" + blue: "#6FA8F0" + magenta: "#B57AA7" + cyan: "#68B7B7" + white: "#0F1010" + brightBlack: "#E7E2DE" + brightRed: "#F7C7C7" + brightGreen: "#A3E4B8" + brightYellow: "#F1D89B" + brightBlue: "#AACDF7" + brightMagenta: "#E1B9D5" + brightCyan: "#A2E1E1" + brightWhite: "#0F1010" +meta: + mode: "light" + accent: "indigo" + hue: null + pair: "LiG Dark" + contrast: + fg: 82.5 + black: 0 + red: 40.5 + green: 38.3 + yellow: 35.5 + blue: 45.2 + magenta: 57.6 + cyan: 42.7 + white: 102.5 + brightBlack: 11.2 + brightRed: 20.6 + brightGreen: 18.9 + brightYellow: 16.2 + brightBlue: 25.5 + brightMagenta: 28.5 + brightCyan: 18.8 + brightWhite: 102.5 diff --git a/themes/light-brown.yaml b/themes/light-brown.yaml index 9c4f8d2e..66517ad0 100644 --- a/themes/light-brown.yaml +++ b/themes/light-brown.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bakrimoharram.light-brown" version: "0.0.2" installs: 3615 + rating: 5 + ratings: 1 author: "bakrimoharram" repo: "https://github.com/bakrimoharram/light-brown-theme" url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.light-brown" diff --git a/themes/light-code-with-bars.yaml b/themes/light-code-with-bars.yaml index b297126e..38b51f32 100644 --- a/themes/light-code-with-bars.yaml +++ b/themes/light-code-with-bars.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nicegyuha.light-theme-with-bars" version: "0.1.5" installs: 253 + rating: 0 + ratings: 0 author: "Gyuha Shin" repo: "https://github.com/gyuha/light-theme-with-bars" url: "https://marketplace.visualstudio.com/items?itemName=nicegyuha.light-theme-with-bars" diff --git a/themes/light-decay.yaml b/themes/light-decay.yaml index d2d74626..477695c5 100644 --- a/themes/light-decay.yaml +++ b/themes/light-decay.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "decaycs.decay" version: "1.0.9" installs: 37708 + rating: 5 + ratings: 3 author: "decaycs" repo: "https://github.com/decaycs/vscode" url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" diff --git a/themes/light-gruvdark-mono.yaml b/themes/light-gruvdark-mono.yaml index 0fff8f4d..2cb853e1 100644 --- a/themes/light-gruvdark-mono.yaml +++ b/themes/light-gruvdark-mono.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "darianmorat.darian-theme" version: "2.1.6" installs: 3178 + rating: 5 + ratings: 1 author: "Darian Toledo" repo: "https://github.com/darianmorat/gruvdark-theme" url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" diff --git a/themes/light-gruvdark-tokyo.yaml b/themes/light-gruvdark-tokyo.yaml index 27586c5d..3ff44131 100644 --- a/themes/light-gruvdark-tokyo.yaml +++ b/themes/light-gruvdark-tokyo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "darianmorat.darian-theme" version: "2.1.6" installs: 3178 + rating: 5 + ratings: 1 author: "Darian Toledo" repo: "https://github.com/darianmorat/gruvdark-theme" url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" diff --git a/themes/light-gruvdark.yaml b/themes/light-gruvdark.yaml index fbedd003..7bfe0ad6 100644 --- a/themes/light-gruvdark.yaml +++ b/themes/light-gruvdark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "darianmorat.darian-theme" version: "2.1.6" installs: 3178 + rating: 5 + ratings: 1 author: "Darian Toledo" repo: "https://github.com/darianmorat/gruvdark-theme" url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" diff --git a/themes/light-jade.yaml b/themes/light-jade.yaml new file mode 100644 index 00000000..cdbc329e --- /dev/null +++ b/themes/light-jade.yaml @@ -0,0 +1,52 @@ +name: "Light Jade" +source: + marketplace_id: "edca-jadetheme.jade" + version: "0.0.2" + installs: 1054 + rating: 5 + ratings: 1 + author: "ErikDCAlmeida" + repo: "https://github.com/ErikDCAlmeida/jade-theme" + url: "https://marketplace.visualstudio.com/items?itemName=edca-jadetheme.jade" +colors: + bg: "#FBFBFB" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: "Dark Jade" + contrast: + fg: 103.6 + black: 103.6 + red: 71.6 + green: 46.8 + yellow: 55.5 + blue: 83.7 + magenta: 72.2 + cyan: 58.2 + white: 83.5 + brightBlack: 76.4 + brightRed: 71.6 + brightGreen: 38.5 + brightYellow: 38.5 + brightBlue: 83.7 + brightMagenta: 72.2 + brightCyan: 58.2 + brightWhite: 46.1 diff --git a/themes/light-mosqueta.yaml b/themes/light-mosqueta.yaml new file mode 100644 index 00000000..fc5f7b8e --- /dev/null +++ b/themes/light-mosqueta.yaml @@ -0,0 +1,50 @@ +name: "Light_mosqueta" +source: + marketplace_id: "Paku.mosqueta" + version: "1.0.0" + installs: 141 + author: "Paku" + repo: "https://github.com/pa-ku/mosqueta_vstheme" + url: "https://marketplace.visualstudio.com/items?itemName=Paku.mosqueta" +colors: + bg: "#F8F4F4" + fg: "#90007D" + black: "#2A3243" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#FDA2F1" + brightBlue: "#73D0FF" + brightMagenta: "#DFBFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 80.8 + black: 92.9 + red: 44.5 + green: 24.9 + yellow: 17.6 + blue: 27.6 + magenta: 24.2 + cyan: 18.2 + white: 24 + brightBlack: 71.8 + brightRed: 42.1 + brightGreen: 0 + brightYellow: 27.4 + brightBlue: 24.8 + brightMagenta: 21.4 + brightCyan: 15.4 + brightWhite: 0 diff --git a/themes/light-print.yaml b/themes/light-print.yaml index 956b7bc6..52bf309d 100644 --- a/themes/light-print.yaml +++ b/themes/light-print.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AymanAli.light-print" version: "1.0.1" installs: 252 + rating: 5 + ratings: 1 author: "Ayman Ali" repo: "https://github.com/aymanabuali/light-print" url: "https://marketplace.visualstudio.com/items?itemName=AymanAli.light-print" diff --git a/themes/light-springbok.yaml b/themes/light-springbok.yaml index 785f2867..10cdee9c 100644 --- a/themes/light-springbok.yaml +++ b/themes/light-springbok.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chrp.springbok-theme" version: "0.12.0" installs: 621 + rating: 5 + ratings: 1 author: "chrp" repo: "https://github.com/christophehurpeau/springbok-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=chrp.springbok-theme" diff --git a/themes/light-theme.yaml b/themes/light-theme.yaml index e468efa1..463d9fc5 100644 --- a/themes/light-theme.yaml +++ b/themes/light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/light.yaml b/themes/light.yaml index b2cd0993..37adaf2d 100644 --- a/themes/light.yaml +++ b/themes/light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SatanAlphabet.matugen-vscode" version: "1.2.0" installs: 0 + rating: 0 + ratings: 0 author: "SatanAlphabet" repo: "https://github.com/SatanAlphabet/vscode-matugen" url: "https://marketplace.visualstudio.com/items?itemName=SatanAlphabet.matugen-vscode" diff --git a/themes/lightblack.yaml b/themes/lightblack.yaml index aaca10e1..ced05a29 100644 --- a/themes/lightblack.yaml +++ b/themes/lightblack.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "theboringkid.lightblack" version: "0.1.0" installs: 631 + rating: 0 + ratings: 0 author: "theboringkid" repo: null url: "https://marketplace.visualstudio.com/items?itemName=theboringkid.lightblack" diff --git a/themes/lightdelight.yaml b/themes/lightdelight.yaml index effe1fb2..96feabce 100644 --- a/themes/lightdelight.yaml +++ b/themes/lightdelight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DimitarNonov.lightDelight" version: "1.19.0" installs: 5314 + rating: 5 + ratings: 2 author: "Dimitar Nonov" repo: "https://github.com/DNonov/lightDelight" url: "https://marketplace.visualstudio.com/items?itemName=DimitarNonov.lightDelight" diff --git a/themes/lighter-a-theme-for-light-coders.yaml b/themes/lighter-a-theme-for-light-coders.yaml index d6dbeb6d..d0659168 100644 --- a/themes/lighter-a-theme-for-light-coders.yaml +++ b/themes/lighter-a-theme-for-light-coders.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ProGamer.pro-ggamer" version: "0.0.7" installs: 670 + rating: 5 + ratings: 1 author: "Pro Gamer" repo: "https://github.com/Pro-The-Dev-Op/Pro-s-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ProGamer.pro-ggamer" diff --git a/themes/lightestlighttheme.yaml b/themes/lightestlighttheme.yaml index 32fb41c1..3bbc05bc 100644 --- a/themes/lightestlighttheme.yaml +++ b/themes/lightestlighttheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Shaswot-Dhungana.lightestlighttheme" version: "1.2.1" installs: 226 + rating: 0 + ratings: 0 author: "Shaswot Dhungana" repo: "https://github.com/Shaswot-Dhungana/Lightest-Light-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Shaswot-Dhungana.lightestlighttheme" diff --git a/themes/lighthaus.yaml b/themes/lighthaus.yaml index c7204444..8e78acc6 100644 --- a/themes/lighthaus.yaml +++ b/themes/lighthaus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lighthaus-theme.lighthaus-vscode" version: "1.0.0" installs: 653 + rating: 0 + ratings: 0 author: "Lighthaus" repo: "https://github.com/lighthaus-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=lighthaus-theme.lighthaus-vscode" diff --git a/themes/lightning-dark.yaml b/themes/lightning-dark.yaml index 4a67f9a9..cee0f4fa 100644 --- a/themes/lightning-dark.yaml +++ b/themes/lightning-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zevross.lightning" version: "2.1.1" installs: 891 + rating: 0 + ratings: 0 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" diff --git a/themes/lightning-light.yaml b/themes/lightning-light.yaml new file mode 100644 index 00000000..9d859edc --- /dev/null +++ b/themes/lightning-light.yaml @@ -0,0 +1,52 @@ +name: "Lightning Light" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 891 + rating: 0 + ratings: 0 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" +colors: + bg: "#F1FBFF" + fg: "#3475A2" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#38B2E7" + white: "#C4C6CB" + brightBlack: "#787878" + brightRed: "#FE2B64" + brightGreen: "#2BBA93" + brightYellow: "#FAA630" + brightBlue: "#2680FF" + brightMagenta: "#BC47B2" + brightCyan: "#1C95BE" + brightWhite: "#CEDCDE" +meta: + mode: "light" + accent: "red" + hue: null + pair: "Lightning Dark" + contrast: + fg: 70.8 + black: 102.6 + red: 67.9 + green: 20.6 + yellow: 22.5 + blue: 61 + magenta: 58.4 + cyan: 43.7 + white: 27.2 + brightBlack: 67.2 + brightRed: 58.7 + brightGreen: 44.4 + brightYellow: 34.7 + brightBlue: 60.9 + brightMagenta: 66.9 + brightCyan: 58.1 + brightWhite: 16.3 diff --git a/themes/lightning-material-day.yaml b/themes/lightning-material-day.yaml index 0804747a..2abee3c4 100644 --- a/themes/lightning-material-day.yaml +++ b/themes/lightning-material-day.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zevross.lightning" version: "2.1.1" installs: 891 + rating: 0 + ratings: 0 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" diff --git a/themes/lightning-material-evening.yaml b/themes/lightning-material-evening.yaml index f1ae1fa1..c27e1b40 100644 --- a/themes/lightning-material-evening.yaml +++ b/themes/lightning-material-evening.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zevross.lightning" version: "2.1.1" installs: 891 + rating: 0 + ratings: 0 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" diff --git a/themes/lightning-material-midnight.yaml b/themes/lightning-material-midnight.yaml index 54770bd8..4e5e536e 100644 --- a/themes/lightning-material-midnight.yaml +++ b/themes/lightning-material-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zevross.lightning" version: "2.1.1" installs: 891 + rating: 0 + ratings: 0 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" diff --git a/themes/lightning-material-soft.yaml b/themes/lightning-material-soft.yaml index 70fffbff..249df6f7 100644 --- a/themes/lightning-material-soft.yaml +++ b/themes/lightning-material-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zevross.lightning" version: "2.1.1" installs: 891 + rating: 0 + ratings: 0 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" diff --git a/themes/lightning-soft-dark.yaml b/themes/lightning-soft-dark.yaml index 3468f0a5..8840818d 100644 --- a/themes/lightning-soft-dark.yaml +++ b/themes/lightning-soft-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zevross.lightning" version: "2.1.1" installs: 891 + rating: 0 + ratings: 0 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" diff --git a/themes/lightning-soft.yaml b/themes/lightning-soft.yaml index 7fedffaf..37ba30a4 100644 --- a/themes/lightning-soft.yaml +++ b/themes/lightning-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zevross.lightning" version: "2.1.1" installs: 891 + rating: 0 + ratings: 0 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" diff --git a/themes/lightning-theme.yaml b/themes/lightning-theme.yaml index ab90ed3c..467cdc60 100644 --- a/themes/lightning-theme.yaml +++ b/themes/lightning-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gugahnstn.lightning-theme" version: "0.0.1" installs: 157 + rating: 0 + ratings: 0 author: "Gustavo Nogueira" repo: "https://github.com/Gugahnstn/lightning-theme" url: "https://marketplace.visualstudio.com/items?itemName=gugahnstn.lightning-theme" diff --git a/themes/lightning.yaml b/themes/lightning.yaml index 6c4b67cd..a5709f22 100644 --- a/themes/lightning.yaml +++ b/themes/lightning.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zevross.lightning" version: "2.1.1" installs: 891 + rating: 0 + ratings: 0 author: "Zev Ross" repo: "https://github.com/Zev18/lightning" url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" diff --git a/themes/ligiapink.yaml b/themes/ligiapink.yaml index 6417bee0..f6d77427 100644 --- a/themes/ligiapink.yaml +++ b/themes/ligiapink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodeBabel.codebabel-obscure-pink" version: "0.0.1" installs: 1654 + rating: 0 + ratings: 0 author: "CodeBabel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CodeBabel.codebabel-obscure-pink" diff --git a/themes/lilac-dreams.yaml b/themes/lilac-dreams.yaml index 480d5e75..c57b8487 100644 --- a/themes/lilac-dreams.yaml +++ b/themes/lilac-dreams.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Icycoldveins.verum-monokai-themes" version: "1.2.1" installs: 46 + rating: 5 + ratings: 1 author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" diff --git a/themes/lilac-grove.yaml b/themes/lilac-grove.yaml index baa64d09..c759430e 100644 --- a/themes/lilac-grove.yaml +++ b/themes/lilac-grove.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "InnaSodri.lilac-grove-bundle" version: "0.0.1" installs: 231 + rating: 0 + ratings: 0 author: "Inna Sodri" repo: "https://example.com/inna/lilac-grove-bundle" url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.lilac-grove-bundle" diff --git a/themes/lilac.yaml b/themes/lilac.yaml new file mode 100644 index 00000000..4a765697 --- /dev/null +++ b/themes/lilac.yaml @@ -0,0 +1,52 @@ +name: "lilac" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2595 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" +colors: + bg: "#080709" + fg: "#E0CEED" + black: "#151217" + red: "#BA0E2E" + green: "#A29DFA" + yellow: "#B657FF" + blue: "#F5B0EF" + magenta: "#8E6DA6" + cyan: "#8E69C9" + white: "#ECE1F4" + brightBlack: "#3B3442" + brightRed: "#F03E5F" + brightGreen: "#FEFEFF" + brightYellow: "#E2BDFF" + brightBlue: "#FFFFFF" + brightMagenta: "#BFACCD" + brightCyan: "#C7B4E4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 80.7 + black: 0 + red: 21.4 + green: 54.7 + yellow: 38.5 + blue: 72.4 + magenta: 31.9 + cyan: 32.9 + white: 90.8 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 107.2 + brightYellow: 75.1 + brightBlue: 107.8 + brightMagenta: 61.1 + brightCyan: 66.4 + brightWhite: 107.8 diff --git a/themes/lima-theme.yaml b/themes/lima-theme.yaml index 4861be25..31699f9d 100644 --- a/themes/lima-theme.yaml +++ b/themes/lima-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AdrianoLima.adrianulima-theme" version: "0.6.1" installs: 88 + rating: 0 + ratings: 0 author: "Adriano Lima" repo: "https://github.com/adrianulima/lima-theme" url: "https://marketplace.visualstudio.com/items?itemName=AdrianoLima.adrianulima-theme" diff --git a/themes/limpo-dark.yaml b/themes/limpo-dark.yaml index 3bb08fc3..a3e9a49f 100644 --- a/themes/limpo-dark.yaml +++ b/themes/limpo-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zieu.limpo" version: "1.0.0" installs: 218 + rating: 5 + ratings: 1 author: "zieu" repo: "https://github.com/zieu/limpo" url: "https://marketplace.visualstudio.com/items?itemName=zieu.limpo" diff --git a/themes/limpo-darker.yaml b/themes/limpo-darker.yaml index 159b4810..bead8920 100644 --- a/themes/limpo-darker.yaml +++ b/themes/limpo-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zieu.limpo" version: "1.0.0" installs: 218 + rating: 5 + ratings: 1 author: "zieu" repo: "https://github.com/zieu/limpo" url: "https://marketplace.visualstudio.com/items?itemName=zieu.limpo" diff --git a/themes/linear-dark.yaml b/themes/linear-dark.yaml index 723992e6..3336f928 100644 --- a/themes/linear-dark.yaml +++ b/themes/linear-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "linear-app.linear-app-theme" version: "1.0.0" installs: 1 + rating: 0 + ratings: 0 author: "Linear" repo: "https://github.com/linear/linear-theme" url: "https://marketplace.visualstudio.com/items?itemName=linear-app.linear-app-theme" diff --git a/themes/linear-light.yaml b/themes/linear-light.yaml index 606c7eba..f5b97bfc 100644 --- a/themes/linear-light.yaml +++ b/themes/linear-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "linear-app.linear-app-theme" version: "1.0.0" installs: 1 + rating: 0 + ratings: 0 author: "Linear" repo: "https://github.com/linear/linear-theme" url: "https://marketplace.visualstudio.com/items?itemName=linear-app.linear-app-theme" diff --git a/themes/linkarzu-vscode-theme.yaml b/themes/linkarzu-vscode-theme.yaml index 6b87eac0..6c7294ae 100644 --- a/themes/linkarzu-vscode-theme.yaml +++ b/themes/linkarzu-vscode-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "linkarzu.linkarzu-vscolors" version: "0.7.0" installs: 492 + rating: 5 + ratings: 1 author: "linkarzu" repo: "https://github.com/linkarzu/linkarzu-vscolors" url: "https://marketplace.visualstudio.com/items?itemName=linkarzu.linkarzu-vscolors" diff --git a/themes/lino-dark-ruby.yaml b/themes/lino-dark-ruby.yaml index c7f205fb..03856fc2 100644 --- a/themes/lino-dark-ruby.yaml +++ b/themes/lino-dark-ruby.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Lino.lino-themes" version: "0.0.1" installs: 270 + rating: 0 + ratings: 0 author: "Lino" repo: "https://github.com/AronCodes21/lino-themes" url: "https://marketplace.visualstudio.com/items?itemName=Lino.lino-themes" diff --git a/themes/lino.yaml b/themes/lino.yaml new file mode 100644 index 00000000..7d6d0c0b --- /dev/null +++ b/themes/lino.yaml @@ -0,0 +1,52 @@ +name: "lino" +source: + marketplace_id: "AryanMann.lino-theme" + version: "0.0.2" + installs: 119 + rating: 0 + ratings: 0 + author: "Aryan Mann" + repo: "https://github.com/aryan-mann/lino-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AryanMann.lino-theme" +colors: + bg: "#F7F7F7" + fg: "#89979B" + black: "#46494B" + red: "#D11F30" + green: "#8BBC65" + yellow: "#D79A25" + blue: "#31989D" + magenta: "#B741E2" + cyan: "#3EB893" + white: "#969696" + brightBlack: "#0A0A0A" + brightRed: "#FF0017" + brightGreen: "#70DE59" + brightYellow: "#F9A810" + brightBlue: "#27ACD5" + brightMagenta: "#EC4FF9" + brightCyan: "#2DD5A2" + brightWhite: "#BEBEBE" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 52.1 + black: 86.1 + red: 69.7 + green: 38.8 + yellow: 43.3 + blue: 56.8 + magenta: 64.1 + cyan: 43.5 + white: 51.4 + brightBlack: 101.1 + brightRed: 59.3 + brightGreen: 25.6 + brightYellow: 33 + brightBlue: 46.2 + brightMagenta: 50.5 + brightCyan: 30.4 + brightWhite: 30.3 diff --git a/themes/lion.yaml b/themes/lion.yaml new file mode 100644 index 00000000..3fb65c78 --- /dev/null +++ b/themes/lion.yaml @@ -0,0 +1,50 @@ +name: "Lion" +source: + marketplace_id: "Jesztar.lion" + version: "0.0.1" + installs: 377 + author: "Jesztar" + repo: "https://github.com/a-jesztar/lion" + url: "https://marketplace.visualstudio.com/items?itemName=Jesztar.lion" +colors: + bg: "#181818" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.4 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.5 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/liquid-dark.yaml b/themes/liquid-dark.yaml index 638265e9..53360e6b 100644 --- a/themes/liquid-dark.yaml +++ b/themes/liquid-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dxp611.liquid-white" version: "1.10.0" installs: 1336 + rating: 5 + ratings: 1 author: "Dragos Popa" repo: "https://github.com/dxp611/liquid-white" url: "https://marketplace.visualstudio.com/items?itemName=dxp611.liquid-white" diff --git a/themes/liquid-ochre.yaml b/themes/liquid-ochre.yaml index 5a8c07c5..d5f2f19f 100644 --- a/themes/liquid-ochre.yaml +++ b/themes/liquid-ochre.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dxp611.liquid-white" version: "1.10.0" installs: 1336 + rating: 5 + ratings: 1 author: "Dragos Popa" repo: "https://github.com/dxp611/liquid-white" url: "https://marketplace.visualstudio.com/items?itemName=dxp611.liquid-white" diff --git a/themes/liquid-ray-light.yaml b/themes/liquid-ray-light.yaml index b86d2ae8..8846b223 100644 --- a/themes/liquid-ray-light.yaml +++ b/themes/liquid-ray-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wiidede.liquid-ray" version: "1.4.3" installs: 1903 + rating: 5 + ratings: 2 author: "wiidede" repo: "https://github.com/wiidede/Liquid-Ray" url: "https://marketplace.visualstudio.com/items?itemName=wiidede.liquid-ray" diff --git a/themes/liquid-ray-soft-pink.yaml b/themes/liquid-ray-soft-pink.yaml new file mode 100644 index 00000000..4bfe95a1 --- /dev/null +++ b/themes/liquid-ray-soft-pink.yaml @@ -0,0 +1,52 @@ +name: "Liquid Ray Soft Pink" +source: + marketplace_id: "wiidede.liquid-ray" + version: "1.4.3" + installs: 1903 + rating: 5 + ratings: 2 + author: "wiidede" + repo: "https://github.com/wiidede/Liquid-Ray" + url: "https://marketplace.visualstudio.com/items?itemName=wiidede.liquid-ray" +colors: + bg: "#FDFBF2" + fg: "#606060" + black: "#252526" + red: "#FF7477" + green: "#44D62C" + yellow: "#FFCE0E" + blue: "#00BFFF" + magenta: "#FF2BD3" + cyan: "#00B796" + white: "#ACA79F" + brightBlack: "#AAAAAA" + brightRed: "#FF7477" + brightGreen: "#44D62C" + brightYellow: "#FFCE0E" + brightBlue: "#00BFFF" + brightMagenta: "#FF2BD3" + brightCyan: "#00B796" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.8 + black: 99.7 + red: 47.9 + green: 33.8 + yellow: 20.3 + blue: 38.4 + magenta: 54.9 + cyan: 46.9 + white: 44.6 + brightBlack: 43.3 + brightRed: 47.9 + brightGreen: 33.8 + brightYellow: 20.3 + brightBlue: 38.4 + brightMagenta: 54.9 + brightCyan: 46.9 + brightWhite: 15 diff --git a/themes/liquid-ray.yaml b/themes/liquid-ray.yaml index abd61576..87a11db4 100644 --- a/themes/liquid-ray.yaml +++ b/themes/liquid-ray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wiidede.liquid-ray" version: "1.4.3" installs: 1903 + rating: 5 + ratings: 2 author: "wiidede" repo: "https://github.com/wiidede/Liquid-Ray" url: "https://marketplace.visualstudio.com/items?itemName=wiidede.liquid-ray" diff --git a/themes/liquor-theme.yaml b/themes/liquor-theme.yaml index dfb27e14..5c22b5a7 100644 --- a/themes/liquor-theme.yaml +++ b/themes/liquor-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gen9009.Liquor-Theme" version: "0.0.7" installs: 36 + rating: 0 + ratings: 0 author: "gen9009" repo: "https://github.com/gen9009/Liquor-Theme" url: "https://marketplace.visualstudio.com/items?itemName=gen9009.Liquor-Theme" diff --git a/themes/liquorice.yaml b/themes/liquorice.yaml index 9cf9a99f..8a4591fe 100644 --- a/themes/liquorice.yaml +++ b/themes/liquorice.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "walele993.fable-code-theme" version: "1.2.0" installs: 46 + rating: 0 + ratings: 0 author: "Gabriele Meucci" repo: "https://github.com/walele993/fable_a_vsc_theme" url: "https://marketplace.visualstudio.com/items?itemName=walele993.fable-code-theme" diff --git a/themes/little-league-dark.yaml b/themes/little-league-dark.yaml index dc3c5292..95f07e03 100644 --- a/themes/little-league-dark.yaml +++ b/themes/little-league-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MatthewStrom.little-league" version: "1.3.1" installs: 565 + rating: 0 + ratings: 0 author: "Matthew Ström" repo: "https://github.com/ilikescience/little-league" url: "https://marketplace.visualstudio.com/items?itemName=MatthewStrom.little-league" diff --git a/themes/little-league-darker.yaml b/themes/little-league-darker.yaml index 2ff9ed0e..50f92388 100644 --- a/themes/little-league-darker.yaml +++ b/themes/little-league-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MatthewStrom.little-league" version: "1.3.1" installs: 565 + rating: 0 + ratings: 0 author: "Matthew Ström" repo: "https://github.com/ilikescience/little-league" url: "https://marketplace.visualstudio.com/items?itemName=MatthewStrom.little-league" diff --git a/themes/little-league-light.yaml b/themes/little-league-light.yaml index 724acab9..fb78a455 100644 --- a/themes/little-league-light.yaml +++ b/themes/little-league-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MatthewStrom.little-league" version: "1.3.1" installs: 565 + rating: 0 + ratings: 0 author: "Matthew Ström" repo: "https://github.com/ilikescience/little-league" url: "https://marketplace.visualstudio.com/items?itemName=MatthewStrom.little-league" diff --git a/themes/lives.yaml b/themes/lives.yaml index 90e80b8e..f2ff9893 100644 --- a/themes/lives.yaml +++ b/themes/lives.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devarci.livesignage" version: "0.1.0" installs: 412 + rating: 0 + ratings: 0 author: "Lorenzo Arcidiacono" repo: null url: "https://marketplace.visualstudio.com/items?itemName=devarci.livesignage" diff --git a/themes/living-twilight.yaml b/themes/living-twilight.yaml index 7bd528c8..7dea943b 100644 --- a/themes/living-twilight.yaml +++ b/themes/living-twilight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "illumincrotty.living-twilight" version: "1.0.2" installs: 648 + rating: 0 + ratings: 0 author: "illumincrotty" repo: "https://github.com/illumincrotty/VSCode-Themes" url: "https://marketplace.visualstudio.com/items?itemName=illumincrotty.living-twilight" diff --git a/themes/lofi.yaml b/themes/lofi.yaml index 2b9ac9f0..9ef2cabe 100644 --- a/themes/lofi.yaml +++ b/themes/lofi.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" installs: 81 + rating: 5 + ratings: 2 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" diff --git a/themes/loki-official-classic.yaml b/themes/loki-official-classic.yaml index 88c35d36..89da8014 100644 --- a/themes/loki-official-classic.yaml +++ b/themes/loki-official-classic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SeuFernandez.loki-official-theme" version: "0.1.53" installs: 1880 + rating: 5 + ratings: 4 author: "SeuFernandez" repo: "https://github.com/seufernandez/loki-theme" url: "https://marketplace.visualstudio.com/items?itemName=SeuFernandez.loki-official-theme" diff --git a/themes/loki-official-kang-edition.yaml b/themes/loki-official-kang-edition.yaml index 68b37a42..3d4e2100 100644 --- a/themes/loki-official-kang-edition.yaml +++ b/themes/loki-official-kang-edition.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SeuFernandez.loki-official-theme" version: "0.1.53" installs: 1880 + rating: 5 + ratings: 4 author: "SeuFernandez" repo: "https://github.com/seufernandez/loki-theme" url: "https://marketplace.visualstudio.com/items?itemName=SeuFernandez.loki-official-theme" diff --git a/themes/loki-theme-contrast.yaml b/themes/loki-theme-contrast.yaml index ba6c9c7f..602116f8 100644 --- a/themes/loki-theme-contrast.yaml +++ b/themes/loki-theme-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Outbound.loki-theme" version: "0.1.4" installs: 428 + rating: 0 + ratings: 0 author: "Outbound" repo: "https://github.com/melquisedecfelipe/loki-theme" url: "https://marketplace.visualstudio.com/items?itemName=Outbound.loki-theme" diff --git a/themes/loki-theme.yaml b/themes/loki-theme.yaml index 75b0546c..5598ddbd 100644 --- a/themes/loki-theme.yaml +++ b/themes/loki-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Outbound.loki-theme" version: "0.1.4" installs: 428 + rating: 0 + ratings: 0 author: "Outbound" repo: "https://github.com/melquisedecfelipe/loki-theme" url: "https://marketplace.visualstudio.com/items?itemName=Outbound.loki-theme" diff --git a/themes/loki.yaml b/themes/loki.yaml new file mode 100644 index 00000000..d858ee77 --- /dev/null +++ b/themes/loki.yaml @@ -0,0 +1,52 @@ +name: "Loki" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#252525" + fg: "#FBFBFB" + black: "#252525" + red: "#DC2828" + green: "#29C3A0" + yellow: "#D29922" + blue: "#14E699" + magenta: "#14E699" + cyan: "#29C3A0" + white: "#FBFBFB" + brightBlack: "#252525" + brightRed: "#DC2828" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#14E699" + brightMagenta: "#14E699" + brightCyan: "#29C3A0" + brightWhite: "#FBFBFB" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.3 + black: 0 + red: 27.3 + green: 55.7 + yellow: 49.8 + blue: 72.3 + magenta: 72.3 + cyan: 55.7 + white: 102.3 + brightBlack: 0 + brightRed: 27.3 + brightGreen: 55.7 + brightYellow: 49.8 + brightBlue: 72.3 + brightMagenta: 72.3 + brightCyan: 55.7 + brightWhite: 102.3 diff --git a/themes/lolo.yaml b/themes/lolo.yaml index 1b0c8e8c..8c3ecacb 100644 --- a/themes/lolo.yaml +++ b/themes/lolo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Alencar26.lolo" version: "0.0.2" installs: 12 + rating: 0 + ratings: 0 author: "André Alencar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Alencar26.lolo" diff --git a/themes/london-underground.yaml b/themes/london-underground.yaml new file mode 100644 index 00000000..6a95448b --- /dev/null +++ b/themes/london-underground.yaml @@ -0,0 +1,52 @@ +name: "London Underground" +source: + marketplace_id: "sergeykaplich.london-underground" + version: "0.0.1" + installs: 82 + rating: 0 + ratings: 0 + author: "kaplich" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sergeykaplich.london-underground" +colors: + bg: "#0E1326" + fg: "#E7EAF0" + black: "#0E1326" + red: "#F3A9BC" + green: "#0499D3" + yellow: "#92CEBA" + blue: "#44BEEE" + magenta: "#F3A9BC" + cyan: "#0499D3" + white: "#E7EAF0" + brightBlack: "#0E1326" + brightRed: "#F3A9BC" + brightGreen: "#0499D3" + brightYellow: "#92CEBA" + brightBlue: "#44BEEE" + brightMagenta: "#F3A9BC" + brightCyan: "#0499D3" + brightWhite: "#E7EAF0" +meta: + mode: "dark" + accent: "indigo" + hue: 271 + pair: null + contrast: + fg: 93.3 + black: 0 + red: 66.4 + green: 42 + yellow: 68.9 + blue: 60 + magenta: 66.4 + cyan: 42 + white: 93.3 + brightBlack: 0 + brightRed: 66.4 + brightGreen: 42 + brightYellow: 68.9 + brightBlue: 60 + brightMagenta: 66.4 + brightCyan: 42 + brightWhite: 93.3 diff --git a/themes/lone-wolf-dark.yaml b/themes/lone-wolf-dark.yaml index a9df5fa4..2fcba4aa 100644 --- a/themes/lone-wolf-dark.yaml +++ b/themes/lone-wolf-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sidwebworks.lone-wolf-dark" version: "0.0.1" installs: 741 + rating: 0 + ratings: 0 author: "Sidwebworks" repo: "https://github.com/sidwebworks/lone-wolf-dark" url: "https://marketplace.visualstudio.com/items?itemName=Sidwebworks.lone-wolf-dark" diff --git a/themes/lonely.yaml b/themes/lonely.yaml index ae6f80c0..c04ef12a 100644 --- a/themes/lonely.yaml +++ b/themes/lonely.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rajdeep-Ray.lonely-theme" version: "0.0.2" installs: 1214 + rating: 5 + ratings: 2 author: "Rajdeep Ray" repo: "https://github.com/Rajdeep-Ray/Lonely-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Rajdeep-Ray.lonely-theme" diff --git a/themes/lonus-dark.yaml b/themes/lonus-dark.yaml index 24af671a..31d920a4 100644 --- a/themes/lonus-dark.yaml +++ b/themes/lonus-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Aerglonus.Lonus-dark" version: "1.3.1" installs: 10556 + rating: 0 + ratings: 0 author: "Aerglonus" repo: "https://github.com/Aerglonus/lonus-dark" url: "https://marketplace.visualstudio.com/items?itemName=Aerglonus.Lonus-dark" diff --git a/themes/lookify-dark-mode.yaml b/themes/lookify-dark-mode.yaml index ef63ea91..0cc5c30d 100644 --- a/themes/lookify-dark-mode.yaml +++ b/themes/lookify-dark-mode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "prince.lookify" version: "0.1.0" installs: 641 + rating: 5 + ratings: 4 author: "prince" repo: null url: "https://marketplace.visualstudio.com/items?itemName=prince.lookify" diff --git a/themes/lookify-light-mode.yaml b/themes/lookify-light-mode.yaml index c4afc843..fff76ae6 100644 --- a/themes/lookify-light-mode.yaml +++ b/themes/lookify-light-mode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "prince.lookify" version: "0.1.0" installs: 641 + rating: 5 + ratings: 4 author: "prince" repo: null url: "https://marketplace.visualstudio.com/items?itemName=prince.lookify" diff --git a/themes/looped.yaml b/themes/looped.yaml index 676e93a9..22ee0fad 100644 --- a/themes/looped.yaml +++ b/themes/looped.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RatulMaharaj.nightwind" version: "0.0.6" installs: 827 + rating: 5 + ratings: 1 author: "Ratul Maharaj" repo: "https://github.com/RatulMaharaj/nightwind" url: "https://marketplace.visualstudio.com/items?itemName=RatulMaharaj.nightwind" diff --git a/themes/lordmorphy.yaml b/themes/lordmorphy.yaml new file mode 100644 index 00000000..e982071d --- /dev/null +++ b/themes/lordmorphy.yaml @@ -0,0 +1,52 @@ +name: "lordmorphy" +source: + marketplace_id: "lordmorphy.lordmorphy" + version: "0.0.1" + installs: 90 + rating: 0 + ratings: 0 + author: "lordmorphy" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=lordmorphy.lordmorphy" +colors: + bg: "#1E1E1E" + fg: "#14B8A6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 51.8 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/lore.yaml b/themes/lore.yaml index 6a0e611b..0e17a2dd 100644 --- a/themes/lore.yaml +++ b/themes/lore.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Volskaya.irrelevant" version: "0.0.2" installs: 33 + rating: 0 + ratings: 0 author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" diff --git a/themes/lotus-dark.yaml b/themes/lotus-dark.yaml index 429d01ce..0a4952aa 100644 --- a/themes/lotus-dark.yaml +++ b/themes/lotus-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SkyLiss.lotus-theme" version: "1.1.5" installs: 12514 + rating: 5 + ratings: 3 author: "SkyLissh" repo: "https://github.com/SkyLissh/lotus-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=SkyLiss.lotus-theme" diff --git a/themes/lotus-flat-dusk.yaml b/themes/lotus-flat-dusk.yaml index 758e1611..8e274f88 100644 --- a/themes/lotus-flat-dusk.yaml +++ b/themes/lotus-flat-dusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alewtschuk.lotus-flat-dark-theme" version: "2.0.0" installs: 395 + rating: 0 + ratings: 0 author: "alewtschuk" repo: "https://github.com/alewtschuk/lotus-flat-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=alewtschuk.lotus-flat-dark-theme" diff --git a/themes/lotus-flat-midnight.yaml b/themes/lotus-flat-midnight.yaml index a6a379e3..fabdcc4c 100644 --- a/themes/lotus-flat-midnight.yaml +++ b/themes/lotus-flat-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alewtschuk.lotus-flat-dark-theme" version: "2.0.0" installs: 395 + rating: 0 + ratings: 0 author: "alewtschuk" repo: "https://github.com/alewtschuk/lotus-flat-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=alewtschuk.lotus-flat-dark-theme" diff --git a/themes/lotus-light.yaml b/themes/lotus-light.yaml index 242d90fc..f87b859e 100644 --- a/themes/lotus-light.yaml +++ b/themes/lotus-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SkyLiss.lotus-theme" version: "1.1.5" installs: 12514 + rating: 5 + ratings: 3 author: "SkyLissh" repo: "https://github.com/SkyLissh/lotus-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=SkyLiss.lotus-theme" diff --git a/themes/lovepurple.yaml b/themes/lovepurple.yaml index b346c906..203741c6 100644 --- a/themes/lovepurple.yaml +++ b/themes/lovepurple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MahdiBehkar.lovely-purple-theme" version: "0.0.4" installs: 3149 + rating: 5 + ratings: 1 author: "MahdiBehkar" repo: "https://codeberg.org/behkar/lovely_purple_theme" url: "https://marketplace.visualstudio.com/items?itemName=MahdiBehkar.lovely-purple-theme" diff --git a/themes/lowlvl.yaml b/themes/lowlvl.yaml index 1af9b134..cb61765c 100644 --- a/themes/lowlvl.yaml +++ b/themes/lowlvl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ben-Whitesell.lowlvl" version: "0.3.0" installs: 1104 + rating: 0 + ratings: 0 author: "Ben-Whitesell" repo: "https://github.com/bwhitesell/LowLVL/" url: "https://marketplace.visualstudio.com/items?itemName=Ben-Whitesell.lowlvl" diff --git a/themes/loyal-contrast.yaml b/themes/loyal-contrast.yaml index 067935e7..22ee6a83 100644 --- a/themes/loyal-contrast.yaml +++ b/themes/loyal-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/loyal-light.yaml b/themes/loyal-light.yaml index bbd243ac..bc14a8bd 100644 --- a/themes/loyal-light.yaml +++ b/themes/loyal-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/loyal.yaml b/themes/loyal.yaml index 6e974ebe..5034d83b 100644 --- a/themes/loyal.yaml +++ b/themes/loyal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/luanslaslatheme.yaml b/themes/luanslaslatheme.yaml index 731e3e83..5c4e3503 100644 --- a/themes/luanslaslatheme.yaml +++ b/themes/luanslaslatheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LuanThierry.luanslasla-theme" version: "0.0.0" installs: 766 + rating: 0 + ratings: 0 author: "LuanThierry" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LuanThierry.luanslasla-theme" diff --git a/themes/luau-starlit.yaml b/themes/luau-starlit.yaml index 4fc4c924..0affdd05 100644 --- a/themes/luau-starlit.yaml +++ b/themes/luau-starlit.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "starlit-studios.luaux-starlit" version: "0.1.7" installs: 90 + rating: 0 + ratings: 0 author: "Starlit" repo: "https://github.com/auro67/luaux" url: "https://marketplace.visualstudio.com/items?itemName=starlit-studios.luaux-starlit" diff --git a/themes/lucario.yaml b/themes/lucario.yaml index 06aa32c4..cfd0d16a 100644 --- a/themes/lucario.yaml +++ b/themes/lucario.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ikuyadeu.lucario" version: "0.2.0" installs: 7861 + rating: 5 + ratings: 2 author: "Yuki Ueda" repo: "https://github.com/Ikuyadeu/Lucario-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Ikuyadeu.lucario" diff --git a/themes/lucid-labs-dark.yaml b/themes/lucid-labs-dark.yaml index 6fa0f759..ef30af9f 100644 --- a/themes/lucid-labs-dark.yaml +++ b/themes/lucid-labs-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.lucid-labs-theme" version: "1.9.0" installs: 144 + rating: 5 + ratings: 1 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.lucid-labs-theme" diff --git a/themes/lucid-labs-light.yaml b/themes/lucid-labs-light.yaml index 811cc980..55a23a02 100644 --- a/themes/lucid-labs-light.yaml +++ b/themes/lucid-labs-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.lucid-labs-theme" version: "1.9.0" installs: 144 + rating: 5 + ratings: 1 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.lucid-labs-theme" diff --git a/themes/lucifer-terminal-dark-hacker-edition.yaml b/themes/lucifer-terminal-dark-hacker-edition.yaml index 17d6bda3..ba8b90d3 100644 --- a/themes/lucifer-terminal-dark-hacker-edition.yaml +++ b/themes/lucifer-terminal-dark-hacker-edition.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NishantUnavane.lucifer-dark" version: "1.1.0" installs: 51 + rating: 5 + ratings: 1 author: "Nishant Unavane" repo: "https://github.com/IamNishant51/Lucifer-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=NishantUnavane.lucifer-dark" diff --git a/themes/punk-runner.yaml b/themes/lucky-green.yaml similarity index 75% rename from themes/punk-runner.yaml rename to themes/lucky-green.yaml index c7d61589..5f8ae4e0 100644 --- a/themes/punk-runner.yaml +++ b/themes/lucky-green.yaml @@ -1,14 +1,16 @@ -name: "punk-runner" +name: "Lucky Green" source: - marketplace_id: "TheEdgesofBen.punk-runner" - version: "0.0.5" - installs: 8804 - author: "TheEdgesofBen" + marketplace_id: "J3NGGG26.Greeny" + version: "0.0.1" + installs: 104 + rating: 0 + ratings: 0 + author: "J3NGGG26" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=TheEdgesofBen.punk-runner" + url: "https://marketplace.visualstudio.com/items?itemName=J3NGGG26.Greeny" colors: bg: "#050F0E" - fg: "#F2E6E9" + fg: "#40FF9C" black: "#0F0F0F" red: "#E6274D" green: "#91E673" @@ -31,7 +33,7 @@ meta: hue: 188 pair: null contrast: - fg: 93.2 + fg: 88.6 black: 0 red: 32.7 green: 78.7 diff --git a/themes/luckyhub.yaml b/themes/luckyhub.yaml index 98acd764..1c4daf05 100644 --- a/themes/luckyhub.yaml +++ b/themes/luckyhub.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LuckCGA.lucky-hub" version: "1.0.0" installs: 1278 + rating: 0 + ratings: 0 author: "Lucas Caspirro Gitti Alcaraz" repo: "https://github.com/Luck-CGA/MyTheme" url: "https://marketplace.visualstudio.com/items?itemName=LuckCGA.lucky-hub" diff --git a/themes/lui.yaml b/themes/lui.yaml index f67cb157..f8106f99 100644 --- a/themes/lui.yaml +++ b/themes/lui.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Miu.lui" version: "0.69.0" installs: 85 + rating: 0 + ratings: 0 author: "Miu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Miu.lui" diff --git a/themes/luiz-dark-theme.yaml b/themes/luiz-dark-theme.yaml index 75a578ad..22e1cc8a 100644 --- a/themes/luiz-dark-theme.yaml +++ b/themes/luiz-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LUIZDARKTHEME.luiz-dark-theme" version: "0.0.8" installs: 2946 + rating: 5 + ratings: 1 author: "LUIZ DARK THEME" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LUIZDARKTHEME.luiz-dark-theme" diff --git a/themes/luiz.yaml b/themes/luiz.yaml new file mode 100644 index 00000000..f5ca1957 --- /dev/null +++ b/themes/luiz.yaml @@ -0,0 +1,52 @@ +name: "luiz" +source: + marketplace_id: "Luizneton13.deeptheme" + version: "0.0.1" + installs: 405 + rating: 0 + ratings: 0 + author: "Luizneton13" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Luizneton13.deeptheme" +colors: + bg: "#101019" + fg: "#E0E0E0" + black: "#454545" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 284 + pair: null + contrast: + fg: 87.4 + black: 9.7 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/luke-skywriter.yaml b/themes/luke-skywriter.yaml index fb6704c5..58c27f3a 100644 --- a/themes/luke-skywriter.yaml +++ b/themes/luke-skywriter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Dutchorange.space-wars" version: "1.1.7" installs: 1711 + rating: 5 + ratings: 3 author: "Dutchorange" repo: "https://github.com/entropy-glitch/space-wars" url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" diff --git a/themes/lull.yaml b/themes/lull.yaml index 008baeaf..5576772d 100644 --- a/themes/lull.yaml +++ b/themes/lull.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Lull.lull-theme" version: "0.0.2" installs: 40 + rating: 0 + ratings: 0 author: "Lull" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Lull.lull-theme" diff --git a/themes/lulutheme.yaml b/themes/lulutheme.yaml index 166f2f38..a3b5cb9e 100644 --- a/themes/lulutheme.yaml +++ b/themes/lulutheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LuluAylen00.lulutheme" version: "1.0.0" installs: 219 + rating: 0 + ratings: 0 author: "Aylen Martinez" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LuluAylen00.lulutheme" diff --git a/themes/lumen-dark.yaml b/themes/lumen-dark.yaml new file mode 100644 index 00000000..5c2117fd --- /dev/null +++ b/themes/lumen-dark.yaml @@ -0,0 +1,52 @@ +name: "Lumen Dark" +source: + marketplace_id: "devimicael.lumen-dark" + version: "1.0.5" + installs: 342 + rating: 0 + ratings: 0 + author: "Devimicael" + repo: "https://github.com/devimicael/lumen-dark" + url: "https://marketplace.visualstudio.com/items?itemName=devimicael.lumen-dark" +colors: + bg: "#1A1B1E" + fg: "#E8EAED" + black: "#1E1F22" + red: "#E06B74" + green: "#91C96F" + yellow: "#D4B106" + blue: "#6DB3F2" + magenta: "#C77DBB" + cyan: "#56C8D8" + white: "#DDE1E6" + brightBlack: "#6B7075" + brightRed: "#F07178" + brightGreen: "#A9DC76" + brightYellow: "#E6C547" + brightBlue: "#82B1FF" + brightMagenta: "#E091C7" + brightCyan: "#7DD6E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 41.4 + green: 63.7 + yellow: 60.4 + blue: 56.7 + magenta: 44.3 + cyan: 63.2 + white: 86.8 + brightBlack: 25.6 + brightRed: 46.1 + brightGreen: 74.8 + brightYellow: 71.5 + brightBlue: 58.2 + brightMagenta: 55 + brightCyan: 72.5 + brightWhite: 106.4 diff --git a/themes/lumenrift.yaml b/themes/lumenrift.yaml index c2cffb2d..d159465a 100644 --- a/themes/lumenrift.yaml +++ b/themes/lumenrift.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SatyamRana.the-prime-themes" version: "1.0.2" installs: 130 + rating: 0 + ratings: 0 author: "Satyam Rana" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SatyamRana.the-prime-themes" diff --git a/themes/lumin.yaml b/themes/lumin.yaml index a70bad62..330049d2 100644 --- a/themes/lumin.yaml +++ b/themes/lumin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thisisroi.lumin" version: "1.0.3" installs: 1074 + rating: 5 + ratings: 3 author: "thisisroi" repo: "https://github.com/thisisroi/lumin-theme" url: "https://marketplace.visualstudio.com/items?itemName=thisisroi.lumin" diff --git a/themes/lumina.yaml b/themes/lumina.yaml index b66927a4..90fd3cd1 100644 --- a/themes/lumina.yaml +++ b/themes/lumina.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JohannesFreutel.lumina" version: "0.0.1" installs: 36 + rating: 0 + ratings: 0 author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.lumina" diff --git a/themes/luminara-void.yaml b/themes/luminara-void.yaml index 5757a526..cdfb1e9d 100644 --- a/themes/luminara-void.yaml +++ b/themes/luminara-void.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zaidkhan.novaflux" version: "0.0.1" installs: 40 + rating: 0 + ratings: 0 author: "zaid_khan" repo: "https://github.com/zaidkhan/novaflux-theme" url: "https://marketplace.visualstudio.com/items?itemName=zaidkhan.novaflux" diff --git a/themes/luminarca-crep-sculo.yaml b/themes/luminarca-crep-sculo.yaml index e18e3ac9..2c896c67 100644 --- a/themes/luminarca-crep-sculo.yaml +++ b/themes/luminarca-crep-sculo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ricarthlima.luminarca-theme" version: "1.0.1" installs: 207 + rating: 0 + ratings: 0 author: "Ricarth Lima" repo: "https://github.com/ricarthlima/luminarca-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=ricarthlima.luminarca-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 248 + pair: null contrast: fg: 97.4 black: 0 diff --git a/themes/luminarca-luz.yaml b/themes/luminarca-luz.yaml index 8f25a67d..8a9bc4a4 100644 --- a/themes/luminarca-luz.yaml +++ b/themes/luminarca-luz.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ricarthlima.luminarca-theme" version: "1.0.1" installs: 207 + rating: 0 + ratings: 0 author: "Ricarth Lima" repo: "https://github.com/ricarthlima/luminarca-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=ricarthlima.luminarca-theme" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.1 black: 0 diff --git a/themes/luminarca-trevas.yaml b/themes/luminarca-trevas.yaml index f6dc28dc..2a2d4368 100644 --- a/themes/luminarca-trevas.yaml +++ b/themes/luminarca-trevas.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ricarthlima.luminarca-theme" version: "1.0.1" installs: 207 + rating: 0 + ratings: 0 author: "Ricarth Lima" repo: "https://github.com/ricarthlima/luminarca-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=ricarthlima.luminarca-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 249 + pair: null contrast: fg: 99.4 black: 0 diff --git a/themes/luminashade-amethyst.yaml b/themes/luminashade-amethyst.yaml index b06e29dc..fd2a5e0f 100644 --- a/themes/luminashade-amethyst.yaml +++ b/themes/luminashade-amethyst.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JackPritomSoren.luminashade" version: "1.0.5" installs: 140 + rating: 0 + ratings: 0 author: "Jack Pritom Soren" repo: "https://github.com/jps27CSE/LuminaShade-VSCode-Extension" url: "https://marketplace.visualstudio.com/items?itemName=JackPritomSoren.luminashade" diff --git a/themes/lumineclipse.yaml b/themes/lumineclipse.yaml new file mode 100644 index 00000000..c8627ac2 --- /dev/null +++ b/themes/lumineclipse.yaml @@ -0,0 +1,52 @@ +name: "LuminEclipse" +source: + marketplace_id: "ramonebidhem.lumineclips" + version: "0.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "Mehdi" + repo: "https://github.com/ramonebidhem/LuminEclips" + url: "https://marketplace.visualstudio.com/items?itemName=ramonebidhem.lumineclips" +colors: + bg: "#00141A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 218 + pair: null + contrast: + fg: 107.3 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/luminescence-theme.yaml b/themes/luminescence-theme.yaml index 5299370f..6ebef01d 100644 --- a/themes/luminescence-theme.yaml +++ b/themes/luminescence-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andreluis-oliveira.material-palenight-high-constrast-theme" version: "2.1.11" installs: 2769 + rating: 5 + ratings: 1 author: "andreluis-oliveira" repo: "https://github.com/andreluis-oliveira/vscode-palenight-theme-high-contrast" url: "https://marketplace.visualstudio.com/items?itemName=andreluis-oliveira.material-palenight-high-constrast-theme" diff --git a/themes/lumon-theme.yaml b/themes/lumon-theme.yaml index f561dc82..130edde1 100644 --- a/themes/lumon-theme.yaml +++ b/themes/lumon-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cluzier.lumon" version: "0.0.42" installs: 208 + rating: 5 + ratings: 1 author: "Conner Luzier" repo: "https://github.com/cluzier/lumon" url: "https://marketplace.visualstudio.com/items?itemName=cluzier.lumon" diff --git a/themes/lumos-black.yaml b/themes/lumos-black.yaml index 65b63332..a8acfb1d 100644 --- a/themes/lumos-black.yaml +++ b/themes/lumos-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nyxb.theme-lumos" version: "0.0.12" installs: 874 + rating: 0 + ratings: 0 author: "nyxb" repo: "https://github.com/nyxb/vscode-theme-lumos" url: "https://marketplace.visualstudio.com/items?itemName=nyxb.theme-lumos" diff --git a/themes/lumos-dark-soft.yaml b/themes/lumos-dark-soft.yaml index a1b8cf52..a28cce54 100644 --- a/themes/lumos-dark-soft.yaml +++ b/themes/lumos-dark-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nyxb.theme-lumos" version: "0.0.12" installs: 874 + rating: 0 + ratings: 0 author: "nyxb" repo: "https://github.com/nyxb/vscode-theme-lumos" url: "https://marketplace.visualstudio.com/items?itemName=nyxb.theme-lumos" diff --git a/themes/lumos-dark.yaml b/themes/lumos-dark.yaml index a68a7bba..4a82389f 100644 --- a/themes/lumos-dark.yaml +++ b/themes/lumos-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nyxb.theme-lumos" version: "0.0.12" installs: 874 + rating: 0 + ratings: 0 author: "nyxb" repo: "https://github.com/nyxb/vscode-theme-lumos" url: "https://marketplace.visualstudio.com/items?itemName=nyxb.theme-lumos" diff --git a/themes/lumos-light-soft.yaml b/themes/lumos-light-soft.yaml new file mode 100644 index 00000000..8cc4366e --- /dev/null +++ b/themes/lumos-light-soft.yaml @@ -0,0 +1,52 @@ +name: "Lumos Light Soft" +source: + marketplace_id: "nyxb.theme-lumos" + version: "0.0.12" + installs: 874 + rating: 0 + ratings: 0 + author: "nyxb" + repo: "https://github.com/nyxb/vscode-theme-lumos" + url: "https://marketplace.visualstudio.com/items?itemName=nyxb.theme-lumos" +colors: + bg: "#F1F0E9" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + pair: "Lumos Dark Soft" + contrast: + fg: 87.4 + black: 96.2 + red: 64.4 + green: 68.8 + yellow: 39.2 + blue: 69.1 + magenta: 72 + cyan: 54.4 + white: 12 + brightBlack: 36.7 + brightRed: 64.4 + brightGreen: 68.8 + brightYellow: 39.2 + brightBlue: 69.1 + brightMagenta: 72 + brightCyan: 54.4 + brightWhite: 8.5 diff --git a/themes/lunar-eclipse-golden-hour.yaml b/themes/lunar-eclipse-golden-hour.yaml index f40f61c7..15d4460f 100644 --- a/themes/lunar-eclipse-golden-hour.yaml +++ b/themes/lunar-eclipse-golden-hour.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ginfuru.lunar-eclipse" version: "0.1.4" installs: 10316 + rating: 5 + ratings: 1 author: "Ed Heltzel" repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" diff --git a/themes/lunar-eclipse-light.yaml b/themes/lunar-eclipse-light.yaml index 44b9d4d3..4fff4f88 100644 --- a/themes/lunar-eclipse-light.yaml +++ b/themes/lunar-eclipse-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ginfuru.lunar-eclipse" version: "0.1.4" installs: 10316 + rating: 5 + ratings: 1 author: "Ed Heltzel" repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" diff --git a/themes/lunar-eclipse.yaml b/themes/lunar-eclipse.yaml index 1133d2d2..19ef6fa9 100644 --- a/themes/lunar-eclipse.yaml +++ b/themes/lunar-eclipse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ginfuru.lunar-eclipse" version: "0.1.4" installs: 10316 + rating: 5 + ratings: 1 author: "Ed Heltzel" repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" diff --git a/themes/lunar-pink-satellite.yaml b/themes/lunar-pink-satellite.yaml index 266c1850..ebce57d3 100644 --- a/themes/lunar-pink-satellite.yaml +++ b/themes/lunar-pink-satellite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nicolasdschmidt.lunar-pink" version: "1.4.0" installs: 194473 + rating: 5 + ratings: 11 author: "Nícolas D. Schmidt" repo: "https://github.com/tronfy/lunar-pink" url: "https://marketplace.visualstudio.com/items?itemName=nicolasdschmidt.lunar-pink" diff --git a/themes/lunar-pink.yaml b/themes/lunar-pink.yaml index dedd190b..5cbf79c0 100644 --- a/themes/lunar-pink.yaml +++ b/themes/lunar-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nicolasdschmidt.lunar-pink" version: "1.4.0" installs: 194473 + rating: 5 + ratings: 11 author: "Nícolas D. Schmidt" repo: "https://github.com/tronfy/lunar-pink" url: "https://marketplace.visualstudio.com/items?itemName=nicolasdschmidt.lunar-pink" diff --git a/themes/lunar-theme.yaml b/themes/lunar-theme.yaml index d3c071c1..38d03f94 100644 --- a/themes/lunar-theme.yaml +++ b/themes/lunar-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MarcMarcet.lunar-color-theme" version: "0.2.1" installs: 829 + rating: 0 + ratings: 0 author: "Marc Marcet" repo: "https://github.com/marc-marcet/lunar-theme" url: "https://marketplace.visualstudio.com/items?itemName=MarcMarcet.lunar-color-theme" diff --git a/themes/lunar-vscode.yaml b/themes/lunar-vscode.yaml index 9cee501e..6996611c 100644 --- a/themes/lunar-vscode.yaml +++ b/themes/lunar-vscode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JuniorSchmidt.lunar-vscode-theme" version: "1.0.8" installs: 4286 + rating: 5 + ratings: 2 author: "Junior Schmidt" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JuniorSchmidt.lunar-vscode-theme" diff --git a/themes/lunar.yaml b/themes/lunar.yaml index e5ca7a5c..45a4ac46 100644 --- a/themes/lunar.yaml +++ b/themes/lunar.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alvarosannas.nix" version: "1.4.8" installs: 2950 + rating: 5 + ratings: 1 author: "Alvaro Santana" repo: "https://github.com/alvarosannas/nix" url: "https://marketplace.visualstudio.com/items?itemName=alvarosannas.nix" diff --git a/themes/lunaria.yaml b/themes/lunaria.yaml index 9516f9a7..cba3d4fb 100644 --- a/themes/lunaria.yaml +++ b/themes/lunaria.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.lunaria" version: "0.0.3" installs: 606 + rating: 0 + ratings: 0 author: "Avetis" repo: "https://github.com/AvetisDN/lunaria-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.lunaria" diff --git a/themes/lunna-dark.yaml b/themes/lunna-dark.yaml index e207d7bb..ea4f50c2 100644 --- a/themes/lunna-dark.yaml +++ b/themes/lunna-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ryangustav.lunna-dark-theme" version: "1.0.0" installs: 10 + rating: 0 + ratings: 0 author: "ryangustav" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ryangustav.lunna-dark-theme" diff --git a/themes/lupine.yaml b/themes/lupine.yaml index 180c1fd4..aca36dc7 100644 --- a/themes/lupine.yaml +++ b/themes/lupine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "katie7r.lupine-color-theme" version: "0.0.1" installs: 10 + rating: 0 + ratings: 0 author: "Katie Linero" repo: "https://github.com/katie7r/lupine-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=katie7r.lupine-color-theme" diff --git a/themes/lupus.yaml b/themes/lupus.yaml index b7369558..28a9a8a1 100644 --- a/themes/lupus.yaml +++ b/themes/lupus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jwoelper.lupus" version: "0.0.12" installs: 769 + rating: 5 + ratings: 1 author: "Johann Woelper" repo: "https://github.com/woelper/lupus-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jwoelper.lupus" diff --git a/themes/luxark.yaml b/themes/luxark.yaml new file mode 100644 index 00000000..cf69116d --- /dev/null +++ b/themes/luxark.yaml @@ -0,0 +1,52 @@ +name: "luxark" +source: + marketplace_id: "gnkz.luxark" + version: "3.0.0" + installs: 130 + rating: 5 + ratings: 1 + author: "gionkez" + repo: "https://github.com/dellarosciagiorgio/luxark" + url: "https://marketplace.visualstudio.com/items?itemName=gnkz.luxark" +colors: + bg: "#252525" + fg: "#C0C0C0" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 65.7 + black: 0 + red: 24.8 + green: 49.8 + yellow: 40.9 + blue: 13.1 + magenta: 24.2 + cyan: 38.2 + white: 13.2 + brightBlack: 20.1 + brightRed: 24.8 + brightGreen: 58.4 + brightYellow: 58.4 + brightBlue: 13.1 + brightMagenta: 24.2 + brightCyan: 38.2 + brightWhite: 50.6 diff --git a/themes/luxeforest.yaml b/themes/luxeforest.yaml index 2d745ebe..4dc7313a 100644 --- a/themes/luxeforest.yaml +++ b/themes/luxeforest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gaopow.luxeforest" version: "0.0.5" installs: 6 + rating: 0 + ratings: 0 author: "gaopow" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gaopow.luxeforest" diff --git a/themes/lyra-s-vega.yaml b/themes/lyra-s-vega.yaml index 48b5c45b..60633947 100644 --- a/themes/lyra-s-vega.yaml +++ b/themes/lyra-s-vega.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mubariz.a-pastel-fever-dream" version: "1.0.1" installs: 4449 + rating: 0 + ratings: 0 author: "Mubariz" repo: "https://github.com/Cyna298/a-pastel-fever-dream" url: "https://marketplace.visualstudio.com/items?itemName=Mubariz.a-pastel-fever-dream" diff --git a/themes/lztheme.yaml b/themes/lztheme.yaml index aef075c8..ff2207df 100644 --- a/themes/lztheme.yaml +++ b/themes/lztheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LzTheme.LzTheme" version: "0.0.1" installs: 46 + rating: 0 + ratings: 0 author: "LzTheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LzTheme.LzTheme" diff --git a/themes/m-jtgzc.yaml b/themes/m-jtgzc.yaml new file mode 100644 index 00000000..e5df479f --- /dev/null +++ b/themes/m-jtgzc.yaml @@ -0,0 +1,52 @@ +name: "m-jtgzc" +source: + marketplace_id: "MelihOzdemir.jatgozic" + version: "0.0.3" + installs: 69 + rating: 0 + ratings: 0 + author: "Melih Ozdemir" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MelihOzdemir.jatgozic" +colors: + bg: "#111010" + fg: "#00FFF3" + black: "#545454" + red: "#CD3131" + green: "#31C089" + yellow: "#E5E510" + blue: "#277AD5" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A1A1A1" + brightBlack: "#777777" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 91.1 + black: 15.3 + red: 27.3 + green: 56.2 + yellow: 86.2 + blue: 31.6 + magenta: 30.3 + cyan: 48.1 + white: 50.9 + brightBlack: 30.1 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/m-unity-s-custom-vscode-theme.yaml b/themes/m-unity-s-custom-vscode-theme.yaml index 34056fee..0157ba52 100644 --- a/themes/m-unity-s-custom-vscode-theme.yaml +++ b/themes/m-unity-s-custom-vscode-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "M-UnitySoftware.m-unity-s-custom-vs-code-theme" version: "1.1.0" installs: 92 + rating: 0 + ratings: 0 author: "M-Unity Software" repo: null url: "https://marketplace.visualstudio.com/items?itemName=M-UnitySoftware.m-unity-s-custom-vs-code-theme" diff --git a/themes/m.yaml b/themes/m.yaml new file mode 100644 index 00000000..f17f8f34 --- /dev/null +++ b/themes/m.yaml @@ -0,0 +1,52 @@ +name: "m." +source: + marketplace_id: "deeckardlabs.deeckard-m-theme" + version: "1.0.0" + installs: 81 + rating: 5 + ratings: 1 + author: "deeckard" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=deeckardlabs.deeckard-m-theme" +colors: + bg: "#0F0F0F" + fg: "#515151" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 14.2 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/m2d-fork.yaml b/themes/m2d-fork.yaml index e424e135..fd4c4e2b 100644 --- a/themes/m2d-fork.yaml +++ b/themes/m2d-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VeniceTechnology.venice" version: "1.0.0" installs: 102 + rating: 5 + ratings: 1 author: "Venice Technology" repo: null url: "https://marketplace.visualstudio.com/items?itemName=VeniceTechnology.venice" diff --git a/themes/mac-theme.yaml b/themes/mac-theme.yaml index 1f2e6e31..66c65481 100644 --- a/themes/mac-theme.yaml +++ b/themes/mac-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zmgawr0.rosegoldmac" version: "0.0.7" installs: 442 + rating: 0 + ratings: 0 author: "zmgawr0" repo: null url: "https://marketplace.visualstudio.com/items?itemName=zmgawr0.rosegoldmac" diff --git a/themes/mach1-theme.yaml b/themes/mach1-theme.yaml new file mode 100644 index 00000000..ed6f23ce --- /dev/null +++ b/themes/mach1-theme.yaml @@ -0,0 +1,52 @@ +name: "Mach1 Theme" +source: + marketplace_id: "mach1-theme-color.mach1-theme-color" + version: "1.0.3" + installs: 128 + rating: 5 + ratings: 1 + author: "MACH1-Theme" + repo: "https://github.com/agnos-goncalves/mach1-theme-color-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=mach1-theme-color.mach1-theme-color" +colors: + bg: "#090E3A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 271 + pair: null + contrast: + fg: 79.6 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/machine.yaml b/themes/machine.yaml index b3ecaf3a..4f95de98 100644 --- a/themes/machine.yaml +++ b/themes/machine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rafaelburghausen.rafa-theme" version: "3.0.6" installs: 1204 + rating: 5 + ratings: 1 author: "rafaelburghausen" repo: "https://github.com/marcos-burghausen/Extensao-Rafa" url: "https://marketplace.visualstudio.com/items?itemName=rafaelburghausen.rafa-theme" diff --git a/themes/macho-man.yaml b/themes/macho-man.yaml index c50d7728..931810bd 100644 --- a/themes/macho-man.yaml +++ b/themes/macho-man.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "switchcasebreak.macho-man" version: "1.0.1" installs: 664 + rating: 5 + ratings: 1 author: "Keith Brewster" repo: "https://github.com/brewsterbhg/machoman-vscode" url: "https://marketplace.visualstudio.com/items?itemName=switchcasebreak.macho-man" diff --git a/themes/macos.yaml b/themes/macos.yaml index 33681dd0..38aab931 100644 --- a/themes/macos.yaml +++ b/themes/macos.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sidiousvic.glitch-dark" version: "6.6.693" installs: 6200 + rating: 5 + ratings: 1 author: "sidiousvic" repo: "https://github.com/sidiousvic/glitch-dark-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sidiousvic.glitch-dark" diff --git a/themes/macrodata-refiners-classic.yaml b/themes/macrodata-refiners-classic.yaml index 58766a1d..28c7eb24 100644 --- a/themes/macrodata-refiners-classic.yaml +++ b/themes/macrodata-refiners-classic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guinetik.macrodata-refiners-severance-theme" version: "1.0.3" installs: 140 + rating: 0 + ratings: 0 author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" diff --git a/themes/macrodata-refiners-cold-harbor.yaml b/themes/macrodata-refiners-cold-harbor.yaml index 16e63fd1..a36d7b73 100644 --- a/themes/macrodata-refiners-cold-harbor.yaml +++ b/themes/macrodata-refiners-cold-harbor.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guinetik.macrodata-refiners-severance-theme" version: "1.0.3" installs: 140 + rating: 0 + ratings: 0 author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" diff --git a/themes/macrodata-refiners-defiant-jazz.yaml b/themes/macrodata-refiners-defiant-jazz.yaml index 3bae45d3..552ff6ca 100644 --- a/themes/macrodata-refiners-defiant-jazz.yaml +++ b/themes/macrodata-refiners-defiant-jazz.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guinetik.macrodata-refiners-severance-theme" version: "1.0.3" installs: 140 + rating: 0 + ratings: 0 author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" diff --git a/themes/macrodata-refiners-ortbo.yaml b/themes/macrodata-refiners-ortbo.yaml index 74e15f7e..a54387fe 100644 --- a/themes/macrodata-refiners-ortbo.yaml +++ b/themes/macrodata-refiners-ortbo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guinetik.macrodata-refiners-severance-theme" version: "1.0.3" installs: 140 + rating: 0 + ratings: 0 author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" diff --git a/themes/macrodata-refiners-sweet-vitriol.yaml b/themes/macrodata-refiners-sweet-vitriol.yaml index 737d5999..a97bbf00 100644 --- a/themes/macrodata-refiners-sweet-vitriol.yaml +++ b/themes/macrodata-refiners-sweet-vitriol.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guinetik.macrodata-refiners-severance-theme" version: "1.0.3" installs: 140 + rating: 0 + ratings: 0 author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" diff --git a/themes/madak17z-darkmode-testing.yaml b/themes/madak17z-darkmode-testing.yaml index d919a0a9..011f9e81 100644 --- a/themes/madak17z-darkmode-testing.yaml +++ b/themes/madak17z-darkmode-testing.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MadAk17z.madak17z-darkmode-testing" version: "0.0.4" installs: 43 + rating: 0 + ratings: 0 author: "MadAk17z" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MadAk17z.madak17z-darkmode-testing" diff --git a/themes/madness.yaml b/themes/madness.yaml index 59642c8e..caf96741 100644 --- a/themes/madness.yaml +++ b/themes/madness.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sonia13marker.madness" version: "1.3.0" installs: 70 + rating: 0 + ratings: 0 author: "sonia13marker" repo: "https://github.com/sonia13marker/color-theme-madness" url: "https://marketplace.visualstudio.com/items?itemName=sonia13marker.madness" diff --git a/themes/madnight.yaml b/themes/madnight.yaml index 9f52dcd6..86a41b86 100644 --- a/themes/madnight.yaml +++ b/themes/madnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aakashchndr.madnight" version: "1.0.5" installs: 972 + rating: 5 + ratings: 3 author: "Aakash Chandra" repo: "https://github.com/aakashchndr/MadNight" url: "https://marketplace.visualstudio.com/items?itemName=aakashchndr.madnight" diff --git a/themes/madrid-night.yaml b/themes/madrid-night.yaml index fb38eb79..e803bfa6 100644 --- a/themes/madrid-night.yaml +++ b/themes/madrid-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jonpena.madrid-night-theme" version: "1.0.6" installs: 55 + rating: 0 + ratings: 0 author: "joncode" repo: "https://github.com/jonpena/vscode-madrid-night-theme" url: "https://marketplace.visualstudio.com/items?itemName=jonpena.madrid-night-theme" diff --git a/themes/magenta-one-dark-pro.yaml b/themes/magenta-one-dark-pro.yaml index f6344678..5d7bd45f 100644 --- a/themes/magenta-one-dark-pro.yaml +++ b/themes/magenta-one-dark-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pit00.magenta-one-dark-pro" version: "1.0.0" installs: 3497 + rating: 0 + ratings: 0 author: "Pitu" repo: "https://github.com/pit00/magenta-one-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=pit00.magenta-one-dark-pro" diff --git a/themes/magic-mushroom-theme.yaml b/themes/magic-mushroom-theme.yaml index b4067e1b..c4c2666f 100644 --- a/themes/magic-mushroom-theme.yaml +++ b/themes/magic-mushroom-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BraianVaylet.magic-mushroom" version: "1.1.3" installs: 1276 + rating: 0 + ratings: 0 author: "Braian Vaylet" repo: "https://github.com/BraianVaylet/magic-mushroom-theme" url: "https://marketplace.visualstudio.com/items?itemName=BraianVaylet.magic-mushroom" diff --git a/themes/magicuser-bases.yaml b/themes/magicuser-bases.yaml index 8f7a2ccd..aa471855 100644 --- a/themes/magicuser-bases.yaml +++ b/themes/magicuser-bases.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-book.yaml b/themes/magicuser-book.yaml index 6e783f72..89bdc03f 100644 --- a/themes/magicuser-book.yaml +++ b/themes/magicuser-book.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-camouflage-light.yaml b/themes/magicuser-camouflage-light.yaml index 395ce057..fc8f5c4a 100644 --- a/themes/magicuser-camouflage-light.yaml +++ b/themes/magicuser-camouflage-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-camouflage.yaml b/themes/magicuser-camouflage.yaml index 7e987bdd..1a1990f8 100644 --- a/themes/magicuser-camouflage.yaml +++ b/themes/magicuser-camouflage.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-day.yaml b/themes/magicuser-day.yaml index 35139792..94e9f7b9 100644 --- a/themes/magicuser-day.yaml +++ b/themes/magicuser-day.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-light-blue.yaml b/themes/magicuser-light-blue.yaml index 1143b0f5..1a96da69 100644 --- a/themes/magicuser-light-blue.yaml +++ b/themes/magicuser-light-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-light-gray.yaml b/themes/magicuser-light-gray.yaml index a0702001..d89e4cce 100644 --- a/themes/magicuser-light-gray.yaml +++ b/themes/magicuser-light-gray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-light-green.yaml b/themes/magicuser-light-green.yaml index c5585bd6..89df39f2 100644 --- a/themes/magicuser-light-green.yaml +++ b/themes/magicuser-light-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-light-orange.yaml b/themes/magicuser-light-orange.yaml index 49c6bf4d..7d115eab 100644 --- a/themes/magicuser-light-orange.yaml +++ b/themes/magicuser-light-orange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-light-purple.yaml b/themes/magicuser-light-purple.yaml index 790465ed..98175413 100644 --- a/themes/magicuser-light-purple.yaml +++ b/themes/magicuser-light-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-light.yaml b/themes/magicuser-light.yaml index 5f57a613..85962de0 100644 --- a/themes/magicuser-light.yaml +++ b/themes/magicuser-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-neblina.yaml b/themes/magicuser-neblina.yaml index 253e7fc1..c00ebd74 100644 --- a/themes/magicuser-neblina.yaml +++ b/themes/magicuser-neblina.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-night-neblina.yaml b/themes/magicuser-night-neblina.yaml index 91589c0e..716be8fc 100644 --- a/themes/magicuser-night-neblina.yaml +++ b/themes/magicuser-night-neblina.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-night.yaml b/themes/magicuser-night.yaml index 64755edd..aff58d0c 100644 --- a/themes/magicuser-night.yaml +++ b/themes/magicuser-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-paladin.yaml b/themes/magicuser-paladin.yaml index ca621a63..709463d3 100644 --- a/themes/magicuser-paladin.yaml +++ b/themes/magicuser-paladin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-path.yaml b/themes/magicuser-path.yaml index fbcf5681..4325e474 100644 --- a/themes/magicuser-path.yaml +++ b/themes/magicuser-path.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-power.yaml b/themes/magicuser-power.yaml index e25057e7..cfb17217 100644 --- a/themes/magicuser-power.yaml +++ b/themes/magicuser-power.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-purple-night.yaml b/themes/magicuser-purple-night.yaml index 4f636d41..5427c31d 100644 --- a/themes/magicuser-purple-night.yaml +++ b/themes/magicuser-purple-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-purple.yaml b/themes/magicuser-purple.yaml index 4488dab5..a57c37d8 100644 --- a/themes/magicuser-purple.yaml +++ b/themes/magicuser-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-room-lamp.yaml b/themes/magicuser-room-lamp.yaml index 3402da1e..2879f20e 100644 --- a/themes/magicuser-room-lamp.yaml +++ b/themes/magicuser-room-lamp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-sea.yaml b/themes/magicuser-sea.yaml index e4962056..6a479d9e 100644 --- a/themes/magicuser-sea.yaml +++ b/themes/magicuser-sea.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-space.yaml b/themes/magicuser-space.yaml index 9ddb67e3..5409ff7f 100644 --- a/themes/magicuser-space.yaml +++ b/themes/magicuser-space.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-specialist.yaml b/themes/magicuser-specialist.yaml index 755b11fe..e47159fa 100644 --- a/themes/magicuser-specialist.yaml +++ b/themes/magicuser-specialist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-staff.yaml b/themes/magicuser-staff.yaml index 15a50fda..2ae08599 100644 --- a/themes/magicuser-staff.yaml +++ b/themes/magicuser-staff.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-sun.yaml b/themes/magicuser-sun.yaml index 3124444a..d52fd2e1 100644 --- a/themes/magicuser-sun.yaml +++ b/themes/magicuser-sun.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-talisman.yaml b/themes/magicuser-talisman.yaml index 33a5c093..b401e613 100644 --- a/themes/magicuser-talisman.yaml +++ b/themes/magicuser-talisman.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-teal-night.yaml b/themes/magicuser-teal-night.yaml index c99a62fb..4774afab 100644 --- a/themes/magicuser-teal-night.yaml +++ b/themes/magicuser-teal-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-teal.yaml b/themes/magicuser-teal.yaml index 1ecae40d..cf2d91a9 100644 --- a/themes/magicuser-teal.yaml +++ b/themes/magicuser-teal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-veteran-blue.yaml b/themes/magicuser-veteran-blue.yaml index 63a7e20c..0168cb9e 100644 --- a/themes/magicuser-veteran-blue.yaml +++ b/themes/magicuser-veteran-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-veteran-purple.yaml b/themes/magicuser-veteran-purple.yaml index c2f88b4c..30cdae6f 100644 --- a/themes/magicuser-veteran-purple.yaml +++ b/themes/magicuser-veteran-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-veteran.yaml b/themes/magicuser-veteran.yaml index 5ca9ff55..2d0bca35 100644 --- a/themes/magicuser-veteran.yaml +++ b/themes/magicuser-veteran.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser-wand-blue.yaml b/themes/magicuser-wand-blue.yaml index 4c118d2f..27e9483d 100644 --- a/themes/magicuser-wand-blue.yaml +++ b/themes/magicuser-wand-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magicuser.yaml b/themes/magicuser.yaml index 4912a78e..f9e41056 100644 --- a/themes/magicuser.yaml +++ b/themes/magicuser.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BernardoPires.magicuser-color-themes" version: "8.5.2" installs: 1705 + rating: 5 + ratings: 2 author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" diff --git a/themes/magnolia.yaml b/themes/magnolia.yaml index e411d930..e8a599e2 100644 --- a/themes/magnolia.yaml +++ b/themes/magnolia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" installs: 81 + rating: 5 + ratings: 2 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" diff --git a/themes/magnus-dark-theme.yaml b/themes/magnus-dark-theme.yaml index 6627aff3..5d2e7aee 100644 --- a/themes/magnus-dark-theme.yaml +++ b/themes/magnus-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Magic-Themes.magic-theme" version: "0.0.3" installs: 2571 + rating: 5 + ratings: 1 author: "Magic-Themes" repo: "https://github.com/sonumagnus/Magnet-Theme-VS-Code" url: "https://marketplace.visualstudio.com/items?itemName=Magic-Themes.magic-theme" diff --git a/themes/maguh.yaml b/themes/maguh.yaml index 3b2305c5..eb4ca64f 100644 --- a/themes/maguh.yaml +++ b/themes/maguh.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tassianoalencar.maguh-theme" version: "0.0.13" installs: 540 + rating: 0 + ratings: 0 author: "tassianoalencar" repo: "https://github.com/tassianoalencar/maguh-vscode" url: "https://marketplace.visualstudio.com/items?itemName=tassianoalencar.maguh-theme" diff --git a/themes/maharashtra-land-of-warriors.yaml b/themes/maharashtra-land-of-warriors.yaml index c27afcd0..d487223d 100644 --- a/themes/maharashtra-land-of-warriors.yaml +++ b/themes/maharashtra-land-of-warriors.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ProudIndian.colors-of-india-themes" version: "1.0.1" installs: 37 + rating: 5 + ratings: 1 author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" diff --git a/themes/mahiro.yaml b/themes/mahiro.yaml index 4c6643ba..a1851438 100644 --- a/themes/mahiro.yaml +++ b/themes/mahiro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rynco.mihari" version: "0.4.0" installs: 866 + rating: 5 + ratings: 1 author: "rynco" repo: "https://github.com/01010101lzy/mihari" url: "https://marketplace.visualstudio.com/items?itemName=rynco.mihari" diff --git a/themes/mainframe-terminal.yaml b/themes/mainframe-terminal.yaml new file mode 100644 index 00000000..ccd058e2 --- /dev/null +++ b/themes/mainframe-terminal.yaml @@ -0,0 +1,52 @@ +name: "Mainframe-Terminal" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#0E111B" + fg: "#D8DFE4" + black: "#0E111B" + red: "#FF1648" + green: "#29C3A0" + yellow: "#D29922" + blue: "#26ACF4" + magenta: "#26ACF4" + cyan: "#29C3A0" + white: "#D8DFE4" + brightBlack: "#0E111B" + brightRed: "#FF1648" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#26ACF4" + brightMagenta: "#26ACF4" + brightCyan: "#29C3A0" + brightWhite: "#D8DFE4" +meta: + mode: "dark" + accent: "orange" + hue: 271 + pair: null + contrast: + fg: 86 + black: 0 + red: 37.7 + green: 58.1 + yellow: 52.2 + blue: 52.3 + magenta: 52.3 + cyan: 58.1 + white: 86 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 58.1 + brightYellow: 52.2 + brightBlue: 52.3 + brightMagenta: 52.3 + brightCyan: 58.1 + brightWhite: 86 diff --git a/themes/maisum-xcode-dark.yaml b/themes/maisum-xcode-dark.yaml index e9084ab0..97dc22ee 100644 --- a/themes/maisum-xcode-dark.yaml +++ b/themes/maisum-xcode-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MaisUmDev.maisum-xcode-theme-dark" version: "0.1.1" installs: 2606 + rating: 5 + ratings: 2 author: "Mais Um Dev" repo: "https://github.com/maisumdev/timeflow-theme" url: "https://marketplace.visualstudio.com/items?itemName=MaisUmDev.maisum-xcode-theme-dark" diff --git a/themes/mak1na-theme.yaml b/themes/mak1na-theme.yaml index 3b487da6..f44f0241 100644 --- a/themes/mak1na-theme.yaml +++ b/themes/mak1na-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KevinMancini.palenight-mak1na-theme" version: "0.0.3" installs: 84 + rating: 5 + ratings: 1 author: "Kevin Mancini" repo: "https://github.com/KevinMancini/palenight-mak1na-theme" url: "https://marketplace.visualstudio.com/items?itemName=KevinMancini.palenight-mak1na-theme" diff --git a/themes/make-apps.yaml b/themes/make-apps.yaml index d053a4c8..513b5982 100644 --- a/themes/make-apps.yaml +++ b/themes/make-apps.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dannyconnell.make-apps-theme" version: "1.0.4" installs: 19989 + rating: 5 + ratings: 4 author: "Danny Connell" repo: "https://github.com/dannyconnell/vscode-make-apps-theme" url: "https://marketplace.visualstudio.com/items?itemName=dannyconnell.make-apps-theme" diff --git a/themes/maki-konuri.yaml b/themes/maki-konuri.yaml new file mode 100644 index 00000000..94c0b34c --- /dev/null +++ b/themes/maki-konuri.yaml @@ -0,0 +1,52 @@ +name: "Maki Konuri" +source: + marketplace_id: "hashpp.veritas-code" + version: "1.0.1" + installs: 234 + rating: 0 + ratings: 0 + author: "hashpp" + repo: "https://github.com/hash112/veritas-code" + url: "https://marketplace.visualstudio.com/items?itemName=hashpp.veritas-code" +colors: + bg: "#303048" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 284 + pair: null + contrast: + fg: 102.2 + black: 0 + red: 22 + green: 48.3 + yellow: 80.9 + blue: 22.8 + magenta: 25.1 + cyan: 42.9 + white: 85.3 + brightBlack: 17.4 + brightRed: 33.9 + brightGreen: 58.9 + brightYellow: 91 + brightBlue: 35.3 + brightMagenta: 40.7 + brightCyan: 50.7 + brightWhite: 85.3 diff --git a/themes/malachite.yaml b/themes/malachite.yaml index 8de4a1d4..30b021be 100644 --- a/themes/malachite.yaml +++ b/themes/malachite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Switcheroo.malachite-10" version: "0.0.2" installs: 14 + rating: 0 + ratings: 0 author: "Switch.er.oo" repo: "https://github.com/Switch-er-oo/Malachite-1.0" url: "https://marketplace.visualstudio.com/items?itemName=Switcheroo.malachite-10" diff --git a/themes/maldi-dark.yaml b/themes/maldi-dark.yaml index 6f448600..6ed720a4 100644 --- a/themes/maldi-dark.yaml +++ b/themes/maldi-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "msmaldi.maldi-vscode-theme" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Matheus Maldi" repo: "https://github.com/msmaldi/maldi-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=msmaldi.maldi-vscode-theme" diff --git a/themes/malibu-sunset.yaml b/themes/malibu-sunset.yaml index 853778da..fa7b2a27 100644 --- a/themes/malibu-sunset.yaml +++ b/themes/malibu-sunset.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.malibu" version: "0.12.5" installs: 4079 + rating: 5 + ratings: 2 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/malibutheme" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.malibu" diff --git a/themes/malibun-sunrise.yaml b/themes/malibun-sunrise.yaml index 516f6e40..c0cab8d5 100644 --- a/themes/malibun-sunrise.yaml +++ b/themes/malibun-sunrise.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.malibu" version: "0.12.5" installs: 4079 + rating: 5 + ratings: 2 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/malibutheme" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.malibu" diff --git a/themes/malte.yaml b/themes/malte.yaml index 237a480d..e1ff9c54 100644 --- a/themes/malte.yaml +++ b/themes/malte.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samkaj.malte" version: "0.2.0" installs: 189 + rating: 0 + ratings: 0 author: "samkaj" repo: "https://github.com/samkaj/malte" url: "https://marketplace.visualstudio.com/items?itemName=samkaj.malte" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 95 black: 0 diff --git a/themes/man-dark-stone.yaml b/themes/man-dark-stone.yaml index 8640b06b..fb4ef31e 100644 --- a/themes/man-dark-stone.yaml +++ b/themes/man-dark-stone.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "calvinludwig.wind-theme" version: "1.0.0" installs: 1682 + rating: 5 + ratings: 3 author: "Calvin Ludwig" repo: "https://github.com/calvinludwig/wind-theme" url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" diff --git a/themes/manatee.yaml b/themes/manatee.yaml index fd9e3917..02bdf8eb 100644 --- a/themes/manatee.yaml +++ b/themes/manatee.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anemones.anemone-colors" version: "0.0.2" installs: 378 + rating: 0 + ratings: 0 author: "anemones" repo: "https://github.com/radio-alice/anemone-colors" url: "https://marketplace.visualstudio.com/items?itemName=anemones.anemone-colors" diff --git a/themes/mandacaru-syntax-theme.yaml b/themes/mandacaru-syntax-theme.yaml index 8e65f4f4..0e7b49dc 100644 --- a/themes/mandacaru-syntax-theme.yaml +++ b/themes/mandacaru-syntax-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "oxechicao.mandacaru-syntax-theme" version: "1.2.0" installs: 8 + rating: 0 + ratings: 0 author: "Francisco Thiago" repo: "https://github.com/oxechicao/mandacaru-vs" url: "https://marketplace.visualstudio.com/items?itemName=oxechicao.mandacaru-syntax-theme" diff --git a/themes/manhld-theme.yaml b/themes/manhld-theme.yaml index 1e8bce06..47384556 100644 --- a/themes/manhld-theme.yaml +++ b/themes/manhld-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leducmanh.manhld-theme" version: "0.1.1" installs: 386 + rating: 0 + ratings: 0 author: "Le Manh" repo: "https://github.com/leducmanh120/manhld-theme" url: "https://marketplace.visualstudio.com/items?itemName=leducmanh.manhld-theme" diff --git a/themes/manjaro-owl.yaml b/themes/manjaro-owl.yaml index a0be59cf..08f79adf 100644 --- a/themes/manjaro-owl.yaml +++ b/themes/manjaro-owl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Asapdotid.manjaro-dark" version: "0.0.13" installs: 2467 + rating: 5 + ratings: 1 author: "Asapdotid" repo: "https://github.com/asapdotid/vscode-manjaro-theme" url: "https://marketplace.visualstudio.com/items?itemName=Asapdotid.manjaro-dark" diff --git a/themes/manners.yaml b/themes/manners.yaml index 40a63379..ae72e9a5 100644 --- a/themes/manners.yaml +++ b/themes/manners.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SajanSrikanthan.manners" version: "0.0.3" installs: 65 + rating: 0 + ratings: 0 author: "Sajan Srikanthan" repo: "https://github.com/sajansrikanthan/Manners-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SajanSrikanthan.manners" diff --git a/themes/manoshi.yaml b/themes/manoshi.yaml new file mode 100644 index 00000000..ca900814 --- /dev/null +++ b/themes/manoshi.yaml @@ -0,0 +1,50 @@ +name: "Manoshi" +source: + marketplace_id: "JisanMahmud.Manoshi" + version: "0.0.25444" + installs: 81 + author: "Jisan Mahmud" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JisanMahmud.Manoshi" +colors: + bg: "#011019" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#008A2F" + blue: "#0205B4" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#1BA53E" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#006F21" +meta: + mode: "dark" + accent: "purple" + hue: 233 + pair: null + contrast: + fg: 60 + black: 0 + red: 27.3 + green: 53.6 + yellow: 30.8 + blue: 0 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.2 + brightGreen: 64.1 + brightYellow: 42.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 20.4 diff --git a/themes/mantissa-dark.yaml b/themes/mantissa-dark.yaml index f87ca614..f568f169 100644 --- a/themes/mantissa-dark.yaml +++ b/themes/mantissa-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jhrunnoe.mantissa" version: "0.4.0" installs: 111 + rating: 5 + ratings: 1 author: "jhrunnoe" repo: "https://github.com/jebrunnoe/Mantissa" url: "https://marketplace.visualstudio.com/items?itemName=jhrunnoe.mantissa" diff --git a/themes/mantissa-light.yaml b/themes/mantissa-light.yaml index 7cc24406..99b96152 100644 --- a/themes/mantissa-light.yaml +++ b/themes/mantissa-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jhrunnoe.mantissa" version: "0.4.0" installs: 111 + rating: 5 + ratings: 1 author: "jhrunnoe" repo: "https://github.com/jebrunnoe/Mantissa" url: "https://marketplace.visualstudio.com/items?itemName=jhrunnoe.mantissa" diff --git a/themes/maomao-dark-theme.yaml b/themes/maomao-dark-theme.yaml index 6c6e9ceb..c7093e0a 100644 --- a/themes/maomao-dark-theme.yaml +++ b/themes/maomao-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "apothecary-diary-theme.apothecary-diary-theme" version: "0.1.0" installs: 59 + rating: 0 + ratings: 0 author: "Matheus Montemurro" repo: "https://github.com/montemurro19/apothecary-diary-theme" url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" diff --git a/themes/maomao-light-theme.yaml b/themes/maomao-light-theme.yaml index 1174d5dc..6c66b23d 100644 --- a/themes/maomao-light-theme.yaml +++ b/themes/maomao-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "apothecary-diary-theme.apothecary-diary-theme" version: "0.1.0" installs: 59 + rating: 0 + ratings: 0 author: "Matheus Montemurro" repo: "https://github.com/montemurro19/apothecary-diary-theme" url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" diff --git a/themes/maple-dark.yaml b/themes/maple-dark.yaml index f2c4c7f6..d48cf3f6 100644 --- a/themes/maple-dark.yaml +++ b/themes/maple-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/maple-light.yaml b/themes/maple-light.yaml index 7e87a06c..4d3ae839 100644 --- a/themes/maple-light.yaml +++ b/themes/maple-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "acidev.ac-theme" version: "0.0.51" installs: 207 + rating: 5 + ratings: 1 author: "acidev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=acidev.ac-theme" diff --git a/themes/marble-dark.yaml b/themes/marble-dark.yaml index 56fff85f..7cefe223 100644 --- a/themes/marble-dark.yaml +++ b/themes/marble-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VisaDev.marble-studio-x" version: "2.0.36" installs: 20 + rating: 0 + ratings: 0 author: "Visa_Dev" repo: "https://github.com/vizakan10/Marble-Studio-X" url: "https://marketplace.visualstudio.com/items?itemName=VisaDev.marble-studio-x" diff --git a/themes/marci1.yaml b/themes/marci1.yaml index 6e3c93bb..63beaeb2 100644 --- a/themes/marci1.yaml +++ b/themes/marci1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MarciRibeiro.marci-theme" version: "0.0.5" installs: 900 + rating: 5 + ratings: 1 author: "Marci Ribeiro" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MarciRibeiro.marci-theme" diff --git a/themes/marcial-theme.yaml b/themes/marcial-theme.yaml index f9fabe0c..92e6b692 100644 --- a/themes/marcial-theme.yaml +++ b/themes/marcial-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "martial-theme.martial-theme" version: "0.0.1" installs: 664 + rating: 5 + ratings: 1 author: "Martial Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=martial-theme.martial-theme" diff --git a/themes/marcosven.yaml b/themes/marcosven.yaml index 8457167b..8012c43f 100644 --- a/themes/marcosven.yaml +++ b/themes/marcosven.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "marcoSven.marcosventheme" version: "1.0.4" installs: 482 + rating: 5 + ratings: 1 author: "marcoSven" repo: "https://github.com/marcoSven/masrcoSven_VSCode" url: "https://marketplace.visualstudio.com/items?itemName=marcoSven.marcosventheme" diff --git a/themes/mariana-light.yaml b/themes/mariana-light.yaml index 2ab08302..908ee3b1 100644 --- a/themes/mariana-light.yaml +++ b/themes/mariana-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mani-sh-reddy.mariana-refined" version: "0.1.4" installs: 3261 + rating: 5 + ratings: 3 author: "Manish Reddy" repo: "https://github.com/mani-sh-reddy/mariana-refined" url: "https://marketplace.visualstudio.com/items?itemName=mani-sh-reddy.mariana-refined" diff --git a/themes/mariana-pro.yaml b/themes/mariana-pro.yaml index 1bcf415f..0d883fe9 100644 --- a/themes/mariana-pro.yaml +++ b/themes/mariana-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rickynormandeau.mariana-pro" version: "3.0.12" installs: 48810 + rating: 4.5 + ratings: 8 author: "ricky.normandeau" repo: "https://github.com/n0rmand0/Mariana-Pro-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=rickynormandeau.mariana-pro" diff --git a/themes/mariana-refined.yaml b/themes/mariana-refined.yaml index 7f2bf8f8..34e5cafd 100644 --- a/themes/mariana-refined.yaml +++ b/themes/mariana-refined.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mani-sh-reddy.mariana-refined" version: "0.1.4" installs: 3261 + rating: 5 + ratings: 3 author: "Manish Reddy" repo: "https://github.com/mani-sh-reddy/mariana-refined" url: "https://marketplace.visualstudio.com/items?itemName=mani-sh-reddy.mariana-refined" diff --git a/themes/mariana.yaml b/themes/mariana.yaml index 269ace8e..2277ad63 100644 --- a/themes/mariana.yaml +++ b/themes/mariana.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zwyyy456.mariana-st" version: "0.1.2" installs: 227 + rating: 4 + ratings: 1 author: "zwyyy456" repo: "https://github.com/zwyyy456/vscode-mariana" url: "https://marketplace.visualstudio.com/items?itemName=zwyyy456.mariana-st" diff --git a/themes/marigold-night.yaml b/themes/marigold-night.yaml index ef72fdbc..551f7294 100644 --- a/themes/marigold-night.yaml +++ b/themes/marigold-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Coopert1no.marigold-theme" version: "0.0.1" installs: 72 + rating: 0 + ratings: 0 author: "Coopert1no" repo: "https://github.com/Coopert1no/marigold-theme" url: "https://marketplace.visualstudio.com/items?itemName=Coopert1no.marigold-theme" diff --git a/themes/mario-theme.yaml b/themes/mario-theme.yaml index 3a1425ab..e41a5f03 100644 --- a/themes/mario-theme.yaml +++ b/themes/mario-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alphatr.mario-theme" version: "1.1.1" installs: 5482 + rating: 0 + ratings: 0 author: "alphatr" repo: "https://github.com/alphatr/vscode-mario-theme" url: "https://marketplace.visualstudio.com/items?itemName=alphatr.mario-theme" diff --git a/themes/marnic1505.yaml b/themes/marnic1505.yaml index 30fb8a9c..6a9910dc 100644 --- a/themes/marnic1505.yaml +++ b/themes/marnic1505.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Marnic1505.more-colorful" version: "0.0.1" installs: 760 + rating: 5 + ratings: 2 author: "Marnic1505" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Marnic1505.more-colorful" diff --git a/themes/maroza-cyber-chill.yaml b/themes/maroza-cyber-chill.yaml index fcd89736..ed65129f 100644 --- a/themes/maroza-cyber-chill.yaml +++ b/themes/maroza-cyber-chill.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thirawat27.maroza-theme" version: "1.0.4" installs: 331 + rating: 5 + ratings: 2 author: "thirawat27" repo: "https://github.com/thirawat27/maroza-theme" url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" diff --git a/themes/maroza-dark-theme.yaml b/themes/maroza-dark-theme.yaml index b93b1140..83e67396 100644 --- a/themes/maroza-dark-theme.yaml +++ b/themes/maroza-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thirawat27.maroza-theme" version: "1.0.4" installs: 331 + rating: 5 + ratings: 2 author: "thirawat27" repo: "https://github.com/thirawat27/maroza-theme" url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" diff --git a/themes/maroza-light-theme.yaml b/themes/maroza-light-theme.yaml index 1f5e27ba..272ac98e 100644 --- a/themes/maroza-light-theme.yaml +++ b/themes/maroza-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thirawat27.maroza-theme" version: "1.0.4" installs: 331 + rating: 5 + ratings: 2 author: "thirawat27" repo: "https://github.com/thirawat27/maroza-theme" url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" diff --git a/themes/maroza-soothing-aqua.yaml b/themes/maroza-soothing-aqua.yaml index 3b5f3da4..7088e5cb 100644 --- a/themes/maroza-soothing-aqua.yaml +++ b/themes/maroza-soothing-aqua.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thirawat27.maroza-theme" version: "1.0.4" installs: 331 + rating: 5 + ratings: 2 author: "thirawat27" repo: "https://github.com/thirawat27/maroza-theme" url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" diff --git a/themes/maroza-zen-pro.yaml b/themes/maroza-zen-pro.yaml index 30b4585d..e9ecf642 100644 --- a/themes/maroza-zen-pro.yaml +++ b/themes/maroza-zen-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thirawat27.maroza-theme" version: "1.0.4" installs: 331 + rating: 5 + ratings: 2 author: "thirawat27" repo: "https://github.com/thirawat27/maroza-theme" url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" diff --git a/themes/mars.yaml b/themes/mars.yaml index 5895705a..364a37c8 100644 --- a/themes/mars.yaml +++ b/themes/mars.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LukeBanicevic.mars-theme" version: "0.0.1" installs: 375 + rating: 0 + ratings: 0 author: "Luke Banicevic" repo: "https://github.com/banaboi/Mars" url: "https://marketplace.visualstudio.com/items?itemName=LukeBanicevic.mars-theme" diff --git a/themes/marshmallow.yaml b/themes/marshmallow.yaml index d562a696..c67bcaf0 100644 --- a/themes/marshmallow.yaml +++ b/themes/marshmallow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WhirlingPlumage-studio.marshmallow" version: "0.0.4" installs: 452 + rating: 5 + ratings: 1 author: "WhirlingPlumageStudio" repo: "https://github.com/doctorbetaq/marshmallow-theme-visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=WhirlingPlumage-studio.marshmallow" diff --git a/themes/marsidark.yaml b/themes/marsidark.yaml index e448e662..2499988b 100644 --- a/themes/marsidark.yaml +++ b/themes/marsidark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "marsi.marsidark" version: "1.0.1" installs: 1554 + rating: 5 + ratings: 1 author: "marsi" repo: "https://github.com/marsidev/MarsiDarkTheme" url: "https://marketplace.visualstudio.com/items?itemName=marsi.marsidark" diff --git a/themes/marstree.yaml b/themes/marstree.yaml index d3aaf704..f6c4812c 100644 --- a/themes/marstree.yaml +++ b/themes/marstree.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MARStreeTheme.MARStreeTheme" version: "0.0.3" installs: 76 + rating: 0 + ratings: 0 author: "MARStree Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MARStreeTheme.MARStreeTheme" diff --git a/themes/marwen-labidi-theme.yaml b/themes/marwen-labidi-theme.yaml index 0db2c73e..0d7861f4 100644 --- a/themes/marwen-labidi-theme.yaml +++ b/themes/marwen-labidi-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MarwenLabidi.marwen-labidi-theme" version: "0.0.1" installs: 61 + rating: 5 + ratings: 1 author: "Marwen Labidi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MarwenLabidi.marwen-labidi-theme" diff --git a/themes/matcha-pink.yaml b/themes/matcha-pink.yaml index 88a1460f..bb2ef540 100644 --- a/themes/matcha-pink.yaml +++ b/themes/matcha-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hongtrapt.pink-angel-themes" version: "0.0.2" installs: 273 + rating: 5 + ratings: 1 author: "hongtrapt" repo: "https://github.com/hongtra1311/pink-angel-themes" url: "https://marketplace.visualstudio.com/items?itemName=hongtrapt.pink-angel-themes" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "red" hue: null + pair: null contrast: fg: 76.1 black: 96.8 diff --git a/themes/matcha.yaml b/themes/matcha.yaml index 33e3cf38..f7c3edc7 100644 --- a/themes/matcha.yaml +++ b/themes/matcha.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Falyssa.matcha-pastel-theme" version: "0.1.4" installs: 239 + rating: 5 + ratings: 1 author: "Falyssa" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Falyssa.matcha-pastel-theme" diff --git a/themes/matchalk.yaml b/themes/matchalk.yaml index d963c6de..03ed9efd 100644 --- a/themes/matchalk.yaml +++ b/themes/matchalk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucafalasco.matchalk" version: "0.0.7" installs: 4244 + rating: 3.67 + ratings: 3 author: "Luca Falasco" repo: "https://github.com/lucafalasco/matchalk" url: "https://marketplace.visualstudio.com/items?itemName=lucafalasco.matchalk" diff --git a/themes/matchanaa.yaml b/themes/matchanaa.yaml index dd2dde2f..83f9b6f8 100644 --- a/themes/matchanaa.yaml +++ b/themes/matchanaa.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TehMatcha.roselia-theme" version: "4.4.0" installs: 1278 + rating: 5 + ratings: 2 author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-roselia-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" diff --git a/themes/matchaneco.yaml b/themes/matchaneco.yaml new file mode 100644 index 00000000..cfabf4ae --- /dev/null +++ b/themes/matchaneco.yaml @@ -0,0 +1,52 @@ +name: "MatchaNeco" +source: + marketplace_id: "necosawa.matchaneco" + version: "0.0.5" + installs: 762 + rating: 0 + ratings: 0 + author: "necosawa" + repo: "https://github.com/necosawa/matchaneco" + url: "https://marketplace.visualstudio.com/items?itemName=necosawa.matchaneco" +colors: + bg: "#273136" + fg: "#D1DED3" + black: "#323E45" + red: "#C6A685" + green: "#A4B07E" + yellow: "#C0AE69" + blue: "#7EA4B0" + magenta: "#8A7EB0" + cyan: "#7EB0A3" + white: "#D1DED3" + brightBlack: "#323E45" + brightRed: "#C6A685" + brightGreen: "#A4B07E" + brightYellow: "#C0AE69" + brightBlue: "#7EA4B0" + brightMagenta: "#8A7EB0" + brightCyan: "#7EB0A3" + brightWhite: "#D1DED3" +meta: + mode: "dark" + accent: "green" + hue: 230 + pair: null + contrast: + fg: 79.5 + black: 0 + red: 52.1 + green: 51.5 + yellow: 53.7 + blue: 44.8 + magenta: 32.2 + cyan: 49.1 + white: 79.5 + brightBlack: 0 + brightRed: 52.1 + brightGreen: 51.5 + brightYellow: 53.7 + brightBlue: 44.8 + brightMagenta: 32.2 + brightCyan: 49.1 + brightWhite: 79.5 diff --git a/themes/matchati.yaml b/themes/matchati.yaml index 885c72b6..450222bf 100644 --- a/themes/matchati.yaml +++ b/themes/matchati.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TehMatcha.roselia-theme" version: "4.4.0" installs: 1278 + rating: 5 + ratings: 2 author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-roselia-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" diff --git a/themes/material-color-theme.yaml b/themes/material-color-theme.yaml index 73a03481..c9307cdd 100644 --- a/themes/material-color-theme.yaml +++ b/themes/material-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JonaDuran.my-light-theme" version: "1.1.9" installs: 31519 + rating: 5 + ratings: 5 author: "Jonathan Durán" repo: "https://github.com/JonaDuran/Material-Light-Theme" url: "https://marketplace.visualstudio.com/items?itemName=JonaDuran.my-light-theme" diff --git a/themes/material-community-ansi-16.yaml b/themes/material-community-ansi-16.yaml index b40d1065..6dbfe868 100644 --- a/themes/material-community-ansi-16.yaml +++ b/themes/material-community-ansi-16.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ctenbrinke.ansi16" version: "0.3.8" installs: 824 + rating: 5 + ratings: 1 author: "chtenb" repo: "https://github.com/chtenb/vscode-ansi16" url: "https://marketplace.visualstudio.com/items?itemName=ctenbrinke.ansi16" diff --git a/themes/material-dark-color-theme.yaml b/themes/material-dark-color-theme.yaml index 1eab60db..a95f3ff5 100644 --- a/themes/material-dark-color-theme.yaml +++ b/themes/material-dark-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JonaDuran.my-light-theme" version: "1.1.9" installs: 31519 + rating: 5 + ratings: 5 author: "Jonathan Durán" repo: "https://github.com/JonaDuran/Material-Light-Theme" url: "https://marketplace.visualstudio.com/items?itemName=JonaDuran.my-light-theme" diff --git a/themes/material-midnight.yaml b/themes/material-midnight.yaml index 1617bcd6..16ab69e3 100644 --- a/themes/material-midnight.yaml +++ b/themes/material-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SurajKumar.material-midnight" version: "0.11.0" installs: 215 + rating: 5 + ratings: 1 author: "Suraj Kumar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SurajKumar.material-midnight" diff --git a/themes/material-monokai-high-contrast.yaml b/themes/material-monokai-high-contrast.yaml index 665c5cce..503f8ea2 100644 --- a/themes/material-monokai-high-contrast.yaml +++ b/themes/material-monokai-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Cystee.vceyefriendtheme" version: "1.1.0" installs: 1348 + rating: 5 + ratings: 1 author: "Cystee" repo: "https://github.com/Cystee/VCEyeFriendTheme" url: "https://marketplace.visualstudio.com/items?itemName=Cystee.vceyefriendtheme" diff --git a/themes/material-neutral.yaml b/themes/material-neutral.yaml new file mode 100644 index 00000000..406d6923 --- /dev/null +++ b/themes/material-neutral.yaml @@ -0,0 +1,52 @@ +name: "Material Neutral" +source: + marketplace_id: "bernardodsanderson.theme-material-neutral" + version: "0.9.8" + installs: 60024 + rating: 4.46 + ratings: 13 + author: "bernardodsanderson" + repo: "https://gitlab.com/bernardodsanderson/material-neutral-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bernardodsanderson.theme-material-neutral" +colors: + bg: "#263238" + fg: "#B2CCD6" + black: "#263238" + red: "#FA6981" + green: "#C3E88D" + yellow: "#FFCC00" + blue: "#82AAFF" + magenta: "#F77669" + cyan: "#7FCAC3" + white: "#B2CCD6" + brightBlack: "#65737E" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#FFCC00" + brightBlue: "#82AAFF" + brightMagenta: "#F77669" + brightCyan: "#7FCAC3" + brightWhite: "#B2CCD6" +meta: + mode: "dark" + accent: "red" + hue: 230 + pair: null + contrast: + fg: 67.9 + black: 0 + red: 42.9 + green: 80 + yellow: 74.4 + blue: 51.7 + magenta: 44.7 + cyan: 61.6 + white: 67.9 + brightBlack: 22.7 + brightRed: 28.8 + brightGreen: 57.5 + brightYellow: 74.4 + brightBlue: 51.7 + brightMagenta: 44.7 + brightCyan: 61.6 + brightWhite: 67.9 diff --git a/themes/material-pure-dark.yaml b/themes/material-pure-dark.yaml new file mode 100644 index 00000000..31b61c02 --- /dev/null +++ b/themes/material-pure-dark.yaml @@ -0,0 +1,52 @@ +name: "Material-Pure-Dark" +source: + marketplace_id: "Kasperliu.material-pure-dark" + version: "1.1.0" + installs: 253 + rating: 0 + ratings: 0 + author: "Kasper liu" + repo: "https://github.com/Kasper-Liu/VSC-Material-Pure-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Kasperliu.material-pure-dark" +colors: + bg: "#000000" + fg: "#A6ACCD" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 58.1 + black: 0 + red: 47.6 + green: 85.2 + yellow: 79.9 + blue: 56.9 + magenta: 54.8 + cyan: 79.3 + white: 107.9 + brightBlack: 12.5 + brightRed: 47.6 + brightGreen: 85.2 + brightYellow: 79.9 + brightBlue: 56.9 + brightMagenta: 54.8 + brightCyan: 79.3 + brightWhite: 107.9 diff --git a/themes/material-rainbow.yaml b/themes/material-rainbow.yaml index 47f17be0..de62ec42 100644 --- a/themes/material-rainbow.yaml +++ b/themes/material-rainbow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VitPetrov.material-festoon" version: "1.4.1" installs: 196 + rating: 0 + ratings: 0 author: "VitPetrov" repo: "https://github.com/VitalyPetrov/material-festoon" url: "https://marketplace.visualstudio.com/items?itemName=VitPetrov.material-festoon" diff --git a/themes/material-theme-dark.yaml b/themes/material-theme-dark.yaml index f1945bb3..4b95c296 100644 --- a/themes/material-theme-dark.yaml +++ b/themes/material-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "terrafuture-themes.terrafuture-themes" version: "0.2.3" installs: 1673 + rating: 5 + ratings: 1 author: "Terrafuture Themes" repo: "https://github.com/jdgn94/terrafuture-themes" url: "https://marketplace.visualstudio.com/items?itemName=terrafuture-themes.terrafuture-themes" diff --git a/themes/material-theme-dhc-mix-in-pycharm-darcula-theme.yaml b/themes/material-theme-dhc-mix-in-pycharm-darcula-theme.yaml new file mode 100644 index 00000000..4f91dc92 --- /dev/null +++ b/themes/material-theme-dhc-mix-in-pycharm-darcula-theme.yaml @@ -0,0 +1,52 @@ +name: "Material-Theme-DHC-Mix-In-Pycharm-Darcula-Theme" +source: + marketplace_id: "alexzshl.material-theme-dhc-mix-in-pycharm-darcula-theme" + version: "0.0.8" + installs: 3034 + rating: 0 + ratings: 0 + author: "alexzshl" + repo: "https://github.com/alexzshl/vsc-material-theme-dhc-mix-in-pycharm-darcula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=alexzshl.material-theme-dhc-mix-in-pycharm-darcula-theme" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 45.3 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 9.7 + brightRed: 45.3 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/material-theme-twilight-wave-ocean-ui.yaml b/themes/material-theme-twilight-wave-ocean-ui.yaml index f281dd5d..d1eaf627 100644 --- a/themes/material-theme-twilight-wave-ocean-ui.yaml +++ b/themes/material-theme-twilight-wave-ocean-ui.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZahidNazir.Material-Theme-Twilight-Wave" version: "0.0.3" installs: 2567 + rating: 5 + ratings: 2 author: "Zahid Nazir" repo: "https://github.com/Tactition/Twilight-Wave-VsCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ZahidNazir.Material-Theme-Twilight-Wave" diff --git a/themes/material.yaml b/themes/material.yaml index 99b8f2f6..c71c2b99 100644 --- a/themes/material.yaml +++ b/themes/material.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "swashata.beautiful-ui" version: "1.7.0" installs: 121108 + rating: 4.38 + ratings: 13 author: "swashata" repo: "https://github.com/swashata/vscode-beautiful-ui" url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" diff --git a/themes/material1.yaml b/themes/material1.yaml index 5868f768..e8ac05d8 100644 --- a/themes/material1.yaml +++ b/themes/material1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gungorn.themes-by-gungorn" version: "1.0.7" installs: 151 + rating: 0 + ratings: 0 author: "gungorn" repo: "https://github.com/gungorn/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=gungorn.themes-by-gungorn" diff --git a/themes/materialdarker-monokaist3.yaml b/themes/materialdarker-monokaist3.yaml index 7e475516..823a39d3 100644 --- a/themes/materialdarker-monokaist3.yaml +++ b/themes/materialdarker-monokaist3.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xckomorebi.everythingmonokai" version: "0.1.1" installs: 818 + rating: 0 + ratings: 0 author: "xckomorebi" repo: "https://github.com/xckomorebi/EverythingMonokai" url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.everythingmonokai" diff --git a/themes/materialdarkplus.yaml b/themes/materialdarkplus.yaml index c6de55e1..d44ce648 100644 --- a/themes/materialdarkplus.yaml +++ b/themes/materialdarkplus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SteveSevetS.materialdarkplus" version: "0.0.1" installs: 641 + rating: 0 + ratings: 0 author: "SteveSevetS" repo: "https://github.com/SteveSevetS/materialdarkplus" url: "https://marketplace.visualstudio.com/items?itemName=SteveSevetS.materialdarkplus" diff --git a/themes/matey.yaml b/themes/matey.yaml index 727849e9..971d4646 100644 --- a/themes/matey.yaml +++ b/themes/matey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arickho.matey-vscode" version: "1.2.5" installs: 1979 + rating: 4.5 + ratings: 2 author: "Jordan Garcia" repo: "https://github.com/arickho/matey-vscode" url: "https://marketplace.visualstudio.com/items?itemName=arickho.matey-vscode" diff --git a/themes/matitheme-gotham.yaml b/themes/matitheme-gotham.yaml index 38722e70..6b448365 100644 --- a/themes/matitheme-gotham.yaml +++ b/themes/matitheme-gotham.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Omatita.matitheme" version: "1.0.2" installs: 145 + rating: 5 + ratings: 2 author: "Omatita" repo: "https://github.com/Omatita/matitheme" url: "https://marketplace.visualstudio.com/items?itemName=Omatita.matitheme" diff --git a/themes/matitheme.yaml b/themes/matitheme.yaml index c4258100..c01b44a7 100644 --- a/themes/matitheme.yaml +++ b/themes/matitheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Omatita.matitheme" version: "1.0.2" installs: 145 + rating: 5 + ratings: 2 author: "Omatita" repo: "https://github.com/Omatita/matitheme" url: "https://marketplace.visualstudio.com/items?itemName=Omatita.matitheme" diff --git a/themes/matrix-hacking-dark-theme.yaml b/themes/matrix-hacking-dark-theme.yaml index 465d948d..04b52c27 100644 --- a/themes/matrix-hacking-dark-theme.yaml +++ b/themes/matrix-hacking-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mdmarufsarker.maruf-sarker" version: "0.1.1" installs: 29154 + rating: 5 + ratings: 6 author: "Md. Maruf Sarker" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" diff --git a/themes/matrix-mint.yaml b/themes/matrix-mint.yaml index 9c5670c0..d14c16d5 100644 --- a/themes/matrix-mint.yaml +++ b/themes/matrix-mint.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Barkerbg001.matrix-mint-vscode" version: "1.1.0" installs: 282 + rating: 0 + ratings: 0 author: "Barkerbg001" repo: "https://github.com/barkerbg001/matrix-mint-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Barkerbg001.matrix-mint-vscode" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: 144 + pair: null contrast: fg: 54.6 black: 8.2 diff --git a/themes/matrix-reloaded-locked.yaml b/themes/matrix-reloaded-locked.yaml new file mode 100644 index 00000000..b93cedc9 --- /dev/null +++ b/themes/matrix-reloaded-locked.yaml @@ -0,0 +1,50 @@ +name: "Matrix Reloaded 🔒 LOCKED" +source: + marketplace_id: "nextgencode.nextgen-terminal" + version: "1.2.1" + installs: 105 + author: "NextGenCode" + repo: "https://github.com/Mattzey/nextgen-terminal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" +colors: + bg: "#000000" + fg: "#444444" + black: "#000000" + red: "#FF3333" + green: "#555555" + yellow: "#888888" + blue: "#444444" + magenta: "#555555" + cyan: "#555555" + white: "#555555" + brightBlack: "#222222" + brightRed: "#FF0000" + brightGreen: "#666666" + brightYellow: "#888888" + brightBlue: "#444444" + brightMagenta: "#666666" + brightCyan: "#555555" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 9.8 + black: 0 + red: 39.6 + green: 16.1 + yellow: 38.6 + blue: 9.8 + magenta: 16.1 + cyan: 16.1 + white: 16.1 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 23 + brightYellow: 38.6 + brightBlue: 9.8 + brightMagenta: 23 + brightCyan: 16.1 + brightWhite: 107.9 diff --git a/themes/matrix-reloaded.yaml b/themes/matrix-reloaded.yaml new file mode 100644 index 00000000..08e4f858 --- /dev/null +++ b/themes/matrix-reloaded.yaml @@ -0,0 +1,50 @@ +name: "Matrix Reloaded" +source: + marketplace_id: "nextgencode.nextgen-terminal" + version: "1.2.1" + installs: 105 + author: "NextGenCode" + repo: "https://github.com/Mattzey/nextgen-terminal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" +colors: + bg: "#000000" + fg: "#00CC00" + black: "#000000" + red: "#FF3333" + green: "#00FF00" + yellow: "#CCFF00" + blue: "#00CC44" + magenta: "#00FF66" + cyan: "#66FF00" + white: "#00FF00" + brightBlack: "#004400" + brightRed: "#FF0000" + brightGreen: "#39FF14" + brightYellow: "#CCFF00" + brightBlue: "#00CC00" + brightMagenta: "#98FB98" + brightCyan: "#00FF66" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 60.3 + black: 0 + red: 39.6 + green: 86.5 + yellow: 96.2 + blue: 60.6 + magenta: 87.1 + cyan: 88.4 + white: 86.5 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 87 + brightYellow: 96.2 + brightBlue: 60.3 + brightMagenta: 90.9 + brightCyan: 87.1 + brightWhite: 107.9 diff --git a/themes/matrix.yaml b/themes/matrix.yaml index ce46ed5a..5340b480 100644 --- a/themes/matrix.yaml +++ b/themes/matrix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PabloAndroetto.a-matrix-theme" version: "0.0.3" installs: 1799 + rating: 0 + ratings: 0 author: "Pablo Androetto" repo: "https://github.com/androettop/matrix-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=PabloAndroetto.a-matrix-theme" diff --git a/themes/matronator-s-theme.yaml b/themes/matronator-s-theme.yaml index 0c224f3a..d7750430 100644 --- a/themes/matronator-s-theme.yaml +++ b/themes/matronator-s-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "matronator.mtrtheme" version: "0.0.3" installs: 44 + rating: 0 + ratings: 0 author: "Matronator" repo: "https://github.com/matronator/mtr-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=matronator.mtrtheme" diff --git a/themes/matte-light-theme.yaml b/themes/matte-light-theme.yaml index b794bbcd..eb06d94c 100644 --- a/themes/matte-light-theme.yaml +++ b/themes/matte-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bgmeulem.matte-light" version: "0.1.0" installs: 145 + rating: 5 + ratings: 1 author: "bgmeulem" repo: "https://github.com/bgmeulem/matte-light" url: "https://marketplace.visualstudio.com/items?itemName=bgmeulem.matte-light" diff --git a/themes/matteblack.yaml b/themes/matteblack.yaml index fe794000..790f6269 100644 --- a/themes/matteblack.yaml +++ b/themes/matteblack.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TahaYVR.matteblack" version: "1.0.2" installs: 27912 + rating: 5 + ratings: 1 author: "Taha YVR" repo: "https://github.com/tahayvr/matte-black-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TahaYVR.matteblack" diff --git a/themes/matter.yaml b/themes/matter.yaml index fe01e338..e5a7d946 100644 --- a/themes/matter.yaml +++ b/themes/matter.yaml @@ -1,11 +1,13 @@ name: "matter" source: - marketplace_id: "TobiasTimm.matter" + marketplace_id: "Idzu.matter-brighter" version: "1.0.0" - installs: 2322 - author: "Tobias Timm" - repo: "https://github.com/tobiastimm/vscode-matter-theme" - url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.matter" + installs: 48 + rating: 0 + ratings: 0 + author: "Idzu" + repo: "https://github.com/Idzu/MatterBrighter" + url: "https://marketplace.visualstudio.com/items?itemName=Idzu.matter-brighter" colors: bg: "#14191F" fg: "#E6E6E6" diff --git a/themes/matteric-dark-default.yaml b/themes/matteric-dark-default.yaml index 9d56785b..b04c6f6c 100644 --- a/themes/matteric-dark-default.yaml +++ b/themes/matteric-dark-default.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rodinalex.matteric" version: "1.1.0" installs: 494 + rating: 0 + ratings: 0 author: "Alexey Rodin" repo: "https://github.com/philosatom/vscode-theme-matteric" url: "https://marketplace.visualstudio.com/items?itemName=rodinalex.matteric" diff --git a/themes/mauriceplus.yaml b/themes/mauriceplus.yaml new file mode 100644 index 00000000..f27ebae1 --- /dev/null +++ b/themes/mauriceplus.yaml @@ -0,0 +1,50 @@ +name: "MauricePlus" +source: + marketplace_id: "MauricePreiss.MauricePlus" + version: "1.0.0" + installs: 91 + author: "Maurice Preiss" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MauricePreiss.MauricePlus" +colors: + bg: "#131313" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.8 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/maus-dark.yaml b/themes/maus-dark.yaml new file mode 100644 index 00000000..c8c92fee --- /dev/null +++ b/themes/maus-dark.yaml @@ -0,0 +1,52 @@ +name: "Maus Dark" +source: + marketplace_id: "moonmaus.maus-theme" + version: "0.0.8" + installs: 174 + rating: 0 + ratings: 0 + author: "Moon Maus" + repo: "https://github.com/moonmaus/maus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=moonmaus.maus-theme" +colors: + bg: "#0C0D0F" + fg: "#8F98A3" + black: "#1F2227" + red: "#BA0E2E" + green: "#00A373" + yellow: "#9A6FC4" + blue: "#C5D1E0" + magenta: "#00A373" + cyan: "#9A6FC4" + white: "#D0D9E4" + brightBlack: "#414852" + brightRed: "#F03E5F" + brightGreen: "#19FFBB" + brightYellow: "#C5D1E0" + brightBlue: "#C5D1E0" + brightMagenta: "#19FFBB" + brightCyan: "#CDB7E2" + brightWhite: "#C5D1E0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 45.9 + black: 0 + red: 21.2 + green: 42.5 + yellow: 35.5 + blue: 77.6 + magenta: 42.5 + cyan: 35.5 + white: 82.6 + brightBlack: 10.8 + brightRed: 37.5 + brightGreen: 89 + brightYellow: 77.6 + brightBlue: 77.6 + brightMagenta: 89 + brightCyan: 68 + brightWhite: 77.6 diff --git a/themes/mauve-contrast.yaml b/themes/mauve-contrast.yaml index 169b524d..df4193f6 100644 --- a/themes/mauve-contrast.yaml +++ b/themes/mauve-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/mauve-light.yaml b/themes/mauve-light.yaml index c1a580b3..7c2124e9 100644 --- a/themes/mauve-light.yaml +++ b/themes/mauve-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/mauve.yaml b/themes/mauve.yaml index e5906482..2051f97c 100644 --- a/themes/mauve.yaml +++ b/themes/mauve.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/mavaia.yaml b/themes/mavaia.yaml index 7accbf94..956b7cec 100644 --- a/themes/mavaia.yaml +++ b/themes/mavaia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Thynaptic.thynaptic-color-themes" version: "0.4.0" installs: 26 + rating: 0 + ratings: 0 author: "Thynaptic" repo: "https://github.com/cassianwolfe/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" diff --git a/themes/max2.yaml b/themes/max2.yaml index 4093fa18..8efcb168 100644 --- a/themes/max2.yaml +++ b/themes/max2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AyushGautam.Max2" version: "0.0.1" installs: 55 + rating: 5 + ratings: 1 author: "Ayush Gautam" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AyushGautam.Max2" diff --git a/themes/maxsumon.yaml b/themes/maxsumon.yaml index 90e7bc51..595af4af 100644 --- a/themes/maxsumon.yaml +++ b/themes/maxsumon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Maxsumontheme.Maxsumon" version: "0.0.1" installs: 91 + rating: 5 + ratings: 1 author: "Maxsumon" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Maxsumontheme.Maxsumon" diff --git a/themes/mayukai.yaml b/themes/mayukai.yaml index 027a47d9..d2580da5 100644 --- a/themes/mayukai.yaml +++ b/themes/mayukai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rafaelburghausen.rafa-theme" version: "3.0.6" installs: 1204 + rating: 5 + ratings: 1 author: "rafaelburghausen" repo: "https://github.com/marcos-burghausen/Extensao-Rafa" url: "https://marketplace.visualstudio.com/items?itemName=rafaelburghausen.rafa-theme" diff --git a/themes/mazda-rx7-theme.yaml b/themes/mazda-rx7-theme.yaml index 8dcdcc22..1c4baa53 100644 --- a/themes/mazda-rx7-theme.yaml +++ b/themes/mazda-rx7-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mazda-RX7-Theme.mazda-rx7-theme" version: "1.0.3" installs: 51 + rating: 5 + ratings: 1 author: "Mazda-RX7-Theme" repo: "https://github.com/jklaiven/mazda-rx7-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mazda-RX7-Theme.mazda-rx7-theme" diff --git a/themes/mbp.yaml b/themes/mbp.yaml index d5be2d09..b088e4cf 100644 --- a/themes/mbp.yaml +++ b/themes/mbp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mbp.mbp" version: "1.0.6" installs: 1033 + rating: 0 + ratings: 0 author: "mbp_dsm" repo: "https://github.com/DanielSDM/mbp" url: "https://marketplace.visualstudio.com/items?itemName=mbp.mbp" diff --git a/themes/mcdark-theme.yaml b/themes/mcdark-theme.yaml index 7fd4dd1f..6e1725f6 100644 --- a/themes/mcdark-theme.yaml +++ b/themes/mcdark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mcd005.mcdark-theme" version: "1.0.2" installs: 1185 + rating: 0 + ratings: 0 author: "Jamie McDonald" repo: "https://github.com/mcd005/mcdark-theme" url: "https://marketplace.visualstudio.com/items?itemName=mcd005.mcdark-theme" diff --git a/themes/mcdonalds-theme.yaml b/themes/mcdonalds-theme.yaml index 43a15dbc..eced8084 100644 --- a/themes/mcdonalds-theme.yaml +++ b/themes/mcdonalds-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OttonielMatheus.mcdonalds-theme" version: "0.0.1" installs: 4588 + rating: 5 + ratings: 2 author: "Ottoniel Matheus" repo: null url: "https://marketplace.visualstudio.com/items?itemName=OttonielMatheus.mcdonalds-theme" diff --git a/themes/md-abdur-rakib.yaml b/themes/md-abdur-rakib.yaml index 24a4d251..0a9d8c5d 100644 --- a/themes/md-abdur-rakib.yaml +++ b/themes/md-abdur-rakib.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tscmdabdurrakib.md-abdur-rakib-theme" version: "1.1.3" installs: 1739 + rating: 5 + ratings: 1 author: "Md Abdur Rakib" repo: "https://github.com/tscmdabdurrakib/md-abdur-rakib-theme" url: "https://marketplace.visualstudio.com/items?itemName=tscmdabdurrakib.md-abdur-rakib-theme" diff --git a/themes/meadow-whisper.yaml b/themes/meadow-whisper.yaml new file mode 100644 index 00000000..f3db8971 --- /dev/null +++ b/themes/meadow-whisper.yaml @@ -0,0 +1,52 @@ +name: "Meadow-Whisper" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#1A1512" + fg: "#E9D4B3" + black: "#1A1512" + red: "#F9281D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#8A906D" + magenta: "#8A906D" + cyan: "#29C3A0" + white: "#E9D4B3" + brightBlack: "#1A1512" + brightRed: "#F9281D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#8A906D" + brightMagenta: "#8A906D" + brightCyan: "#29C3A0" + brightWhite: "#E9D4B3" +meta: + mode: "dark" + accent: "orange" + hue: 53 + pair: null + contrast: + fg: 81.2 + black: 0 + red: 36.2 + green: 57.7 + yellow: 51.8 + blue: 40 + magenta: 40 + cyan: 57.7 + white: 81.2 + brightBlack: 0 + brightRed: 36.2 + brightGreen: 57.7 + brightYellow: 51.8 + brightBlue: 40 + brightMagenta: 40 + brightCyan: 57.7 + brightWhite: 81.2 diff --git a/themes/meaow-dark.yaml b/themes/meaow-dark.yaml index 1418e972..b0a6a73a 100644 --- a/themes/meaow-dark.yaml +++ b/themes/meaow-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "meaow-dev.meaow-theme" version: "0.0.1" installs: 7 + rating: 5 + ratings: 1 author: "MeaowDev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=meaow-dev.meaow-theme" diff --git a/themes/mecha-01.yaml b/themes/mecha-01.yaml index 102c7134..8d8f5a56 100644 --- a/themes/mecha-01.yaml +++ b/themes/mecha-01.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Bytemore.mecha-01" version: "0.12.0" installs: 3199 + rating: 4.67 + ratings: 3 author: "Bytemore" repo: "https://github.com/gianmazzoran/mecha-01" url: "https://marketplace.visualstudio.com/items?itemName=Bytemore.mecha-01" diff --git a/themes/medium-dark.yaml b/themes/medium-dark.yaml index 4b86036b..70381435 100644 --- a/themes/medium-dark.yaml +++ b/themes/medium-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chriszo.medium-dark" version: "0.0.2" installs: 173 + rating: 0 + ratings: 0 author: "chriszo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=chriszo.medium-dark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 74.8 black: 0 diff --git a/themes/mega-green.yaml b/themes/mega-green.yaml index a9c7b1d4..a9da2e25 100644 --- a/themes/mega-green.yaml +++ b/themes/mega-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xxhtml.xxhtml-themes" version: "0.0.15" installs: 1165 + rating: 0 + ratings: 0 author: "Isaac" repo: "https://github.com/XxHTMLStudios/xxhtml-theme" url: "https://marketplace.visualstudio.com/items?itemName=xxhtml.xxhtml-themes" diff --git a/themes/meinanziiii.yaml b/themes/meinanziiii.yaml new file mode 100644 index 00000000..50e7e622 --- /dev/null +++ b/themes/meinanziiii.yaml @@ -0,0 +1,52 @@ +name: "MeiNanziiii" +source: + marketplace_id: "MeiNanziiii.mei-pastel" + version: "0.1.0" + installs: 6811 + rating: 0 + ratings: 0 + author: "MeiNanziiii" + repo: "https://github.com/oplotDev/pastel" + url: "https://marketplace.visualstudio.com/items?itemName=MeiNanziiii.mei-pastel" +colors: + bg: "#1E1E1E" + fg: "#909090" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 40.8 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/meitnerium-theme.yaml b/themes/meitnerium-theme.yaml index 124e9d2a..eb4b4765 100644 --- a/themes/meitnerium-theme.yaml +++ b/themes/meitnerium-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "c-jaenicke.meitnerium-theme" version: "0.2.1" installs: 90 + rating: 0 + ratings: 0 author: "c-jaenicke" repo: "https://github.com/c-jaenicke/meitnerium-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=c-jaenicke.meitnerium-theme" diff --git a/themes/mel.yaml b/themes/mel.yaml index 104552cb..9803960e 100644 --- a/themes/mel.yaml +++ b/themes/mel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jakeevans00.arcane" version: "0.0.6" installs: 845 + rating: 5 + ratings: 3 author: "Jake Evans" repo: "https://github.com/jakeevans00/arcane-themes" url: "https://marketplace.visualstudio.com/items?itemName=jakeevans00.arcane" diff --git a/themes/melancholy.yaml b/themes/melancholy.yaml index 5a601cbb..3b680dd3 100644 --- a/themes/melancholy.yaml +++ b/themes/melancholy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JohannesFreutel.melancholy" version: "0.0.6" installs: 22 + rating: 0 + ratings: 0 author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.melancholy" diff --git a/themes/melange-redux-dark.yaml b/themes/melange-redux-dark.yaml new file mode 100644 index 00000000..d5126afd --- /dev/null +++ b/themes/melange-redux-dark.yaml @@ -0,0 +1,52 @@ +name: "Melange Redux: Dark" +source: + marketplace_id: "fostertheweb.melange-redux-iterum" + version: "0.2.7" + installs: 416 + rating: 0 + ratings: 0 + author: "fostertheweb" + repo: "https://github.com/fostertheweb/melange-redux" + url: "https://marketplace.visualstudio.com/items?itemName=fostertheweb.melange-redux-iterum" +colors: + bg: "#292522" + fg: "#ECE1D7" + black: "#C1A78E" + red: "#D47766" + green: "#85B695" + yellow: "#EBC06D" + blue: "#A3A9CE" + magenta: "#B380B0" + cyan: "#89B3B6" + white: "#292522" + brightBlack: "#ECE1D7" + brightRed: "#D47766" + brightGreen: "#85B695" + brightYellow: "#EBC06D" + brightBlue: "#A3A9CE" + brightMagenta: "#B380B0" + brightCyan: "#89B3B6" + brightWhite: "#34302C" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Melange Redux: Light" + contrast: + fg: 86.5 + black: 54 + red: 40.2 + green: 53.7 + yellow: 69.2 + blue: 53.7 + magenta: 40 + cyan: 54 + white: 0 + brightBlack: 86.5 + brightRed: 40.2 + brightGreen: 53.7 + brightYellow: 69.2 + brightBlue: 53.7 + brightMagenta: 40 + brightCyan: 54 + brightWhite: 0 diff --git a/themes/melange-redux-light.yaml b/themes/melange-redux-light.yaml index 743cf243..12c93b4c 100644 --- a/themes/melange-redux-light.yaml +++ b/themes/melange-redux-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fostertheweb.melange-redux-iterum" version: "0.2.7" installs: 416 + rating: 0 + ratings: 0 author: "fostertheweb" repo: "https://github.com/fostertheweb/melange-redux" url: "https://marketplace.visualstudio.com/items?itemName=fostertheweb.melange-redux-iterum" diff --git a/themes/melcr.yaml b/themes/melcr.yaml index 482dd538..a2a4c61b 100644 --- a/themes/melcr.yaml +++ b/themes/melcr.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "melcr.melcr" version: "0.0.1" installs: 14 + rating: 0 + ratings: 0 author: "melcr" repo: null url: "https://marketplace.visualstudio.com/items?itemName=melcr.melcr" diff --git a/themes/melee-island.yaml b/themes/melee-island.yaml index 20463b43..fc9dc19f 100644 --- a/themes/melee-island.yaml +++ b/themes/melee-island.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VictorChirino.monkey-island-theme" version: "0.4.0" installs: 362 + rating: 5 + ratings: 1 author: "Victor Chirino" repo: "https://github.com/vicchirino/monkey-island-theme" url: "https://marketplace.visualstudio.com/items?itemName=VictorChirino.monkey-island-theme" diff --git a/themes/melinoe.yaml b/themes/melinoe.yaml index e2aa1488..84e57a67 100644 --- a/themes/melinoe.yaml +++ b/themes/melinoe.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ltatarev.melinoe" version: "0.0.8" installs: 123 + rating: 0 + ratings: 0 author: "ltatarev" repo: "https://github.com/ltatarev/melinoe-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ltatarev.melinoe" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 312 + pair: null contrast: fg: 74.3 black: 0 diff --git a/themes/mellow-contrast.yaml b/themes/mellow-contrast.yaml index 7a1f6a62..ed86866f 100644 --- a/themes/mellow-contrast.yaml +++ b/themes/mellow-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/mellow-light.yaml b/themes/mellow-light.yaml index ae2a05cd..69fdae7e 100644 --- a/themes/mellow-light.yaml +++ b/themes/mellow-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/mellow.yaml b/themes/mellow.yaml index f93ff7c8..fc1f65c5 100644 --- a/themes/mellow.yaml +++ b/themes/mellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Umi-l.mellow-minimal-theme" version: "0.0.2" installs: 608 + rating: 0 + ratings: 0 author: "Umi-l" repo: "https://github.com/Umi-L/mellow-minimal" url: "https://marketplace.visualstudio.com/items?itemName=Umi-l.mellow-minimal-theme" diff --git a/themes/melokai.yaml b/themes/melokai.yaml index 1614f07d..71674204 100644 --- a/themes/melokai.yaml +++ b/themes/melokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "miller2676.melokai" version: "0.0.2" installs: 1930 + rating: 5 + ratings: 1 author: "miller2676" repo: "https://github.com/mel-miller/melokai-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=miller2676.melokai" diff --git a/themes/melyon-blue.yaml b/themes/melyon-blue.yaml index b0619555..26471070 100644 --- a/themes/melyon-blue.yaml +++ b/themes/melyon-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cair71.melyon-vscode" version: "0.1.4" installs: 895 + rating: 5 + ratings: 3 author: "cair71" repo: "https://github.com/CA1R7/melyon" url: "https://marketplace.visualstudio.com/items?itemName=cair71.melyon-vscode" diff --git a/themes/melyon.yaml b/themes/melyon.yaml index 48afaa1f..cd08d753 100644 --- a/themes/melyon.yaml +++ b/themes/melyon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cair71.melyon-vscode" version: "0.1.4" installs: 895 + rating: 5 + ratings: 3 author: "cair71" repo: "https://github.com/CA1R7/melyon" url: "https://marketplace.visualstudio.com/items?itemName=cair71.melyon-vscode" diff --git a/themes/menelik.yaml b/themes/menelik.yaml index 0a67c368..9466a32c 100644 --- a/themes/menelik.yaml +++ b/themes/menelik.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mansa-muntari.menelik-theme" version: "1.6.0" installs: 212 + rating: 5 + ratings: 1 author: "Mansa Muntari" repo: "https://github.com/Mansa-Muntari/menelik-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=mansa-muntari.menelik-theme" diff --git a/themes/meoceanemerald.yaml b/themes/meoceanemerald.yaml new file mode 100644 index 00000000..488c412b --- /dev/null +++ b/themes/meoceanemerald.yaml @@ -0,0 +1,52 @@ +name: "MeOceanEmerald" +source: + marketplace_id: "JaianeOliveira.meoceanthemes" + version: "0.0.5" + installs: 9236 + rating: 0 + ratings: 0 + author: "Jaiane Oliveira" + repo: "https://github.com/JaianeOliveira/meocean-themes" + url: "https://marketplace.visualstudio.com/items?itemName=JaianeOliveira.meoceanthemes" +colors: + bg: "#1F1F1F" + fg: "#F1F1F1" + black: "#000000" + red: "#E20E4A" + green: "#3FB48D" + yellow: "#E5B010" + blue: "#7066B6" + magenta: "#A469CF" + cyan: "#5AC2D3" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF0C51" + brightGreen: "#57FFC7" + brightYellow: "#FFC71F" + brightBlue: "#8F80FF" + brightMagenta: "#CA82FF" + brightCyan: "#67EAFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.7 + black: 0 + red: 29 + green: 49.8 + yellow: 62.2 + blue: 25.7 + magenta: 34.3 + cyan: 59.9 + white: 89 + brightBlack: 21.1 + brightRed: 36.2 + brightGreen: 88.9 + brightYellow: 75.6 + brightBlue: 41.6 + brightMagenta: 49.8 + brightCyan: 81.5 + brightWhite: 89 diff --git a/themes/meoceangray.yaml b/themes/meoceangray.yaml index dcb05768..2d480ec0 100644 --- a/themes/meoceangray.yaml +++ b/themes/meoceangray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JaianeOliveira.meoceangray" version: "0.0.1" installs: 1 + rating: 0 + ratings: 0 author: "Jaiane Oliveira" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JaianeOliveira.meoceangray" diff --git a/themes/meridian-neutral.yaml b/themes/meridian-neutral.yaml new file mode 100644 index 00000000..0750e580 --- /dev/null +++ b/themes/meridian-neutral.yaml @@ -0,0 +1,52 @@ +name: "Meridian Neutral" +source: + marketplace_id: "britown.vscode-theme-meridian" + version: "0.0.14" + installs: 166 + rating: 0 + ratings: 0 + author: "Britown" + repo: "https://github.com/bkuzmanoski/vscode-theme-meridian" + url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-meridian" +colors: + bg: "#FCFCFC" + fg: "#353535" + black: "#353535" + red: "#B03645" + green: "#446F53" + yellow: "#9F5A38" + blue: "#3378A3" + magenta: "#9F5090" + cyan: "#417B81" + white: "#BBBBBB" + brightBlack: "#8E8E8E" + brightRed: "#DE6E7C" + brightGreen: "#68AE7F" + brightYellow: "#D68C67" + brightBlue: "#61ABDA" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#6E6E6E" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.2 + black: 96.2 + red: 77.5 + green: 76.9 + yellow: 74 + blue: 71.4 + magenta: 73.7 + cyan: 71.4 + white: 34.9 + brightBlack: 58.3 + brightRed: 56.6 + brightGreen: 49.5 + brightYellow: 50.2 + brightBlue: 47.4 + brightMagenta: 50.1 + brightCyan: 43.2 + brightWhite: 73.4 diff --git a/themes/meridian.yaml b/themes/meridian.yaml new file mode 100644 index 00000000..8703f57a --- /dev/null +++ b/themes/meridian.yaml @@ -0,0 +1,52 @@ +name: "Meridian" +source: + marketplace_id: "britown.vscode-theme-meridian" + version: "0.0.14" + installs: 166 + rating: 0 + ratings: 0 + author: "Britown" + repo: "https://github.com/bkuzmanoski/vscode-theme-meridian" + url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-meridian" +colors: + bg: "#FCFCFD" + fg: "#2E363C" + black: "#2E363C" + red: "#B03645" + green: "#446F53" + yellow: "#9F5A38" + blue: "#3378A3" + magenta: "#9F5090" + cyan: "#417B81" + white: "#B4BBC2" + brightBlack: "#839099" + brightRed: "#DE6E7C" + brightGreen: "#68AE7F" + brightYellow: "#D68C67" + brightBlue: "#61ABDA" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#637079" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.3 + black: 96.3 + red: 77.5 + green: 77 + yellow: 74.1 + blue: 71.4 + magenta: 73.8 + cyan: 71.4 + white: 35.5 + brightBlack: 58.3 + brightRed: 56.6 + brightGreen: 49.6 + brightYellow: 50.3 + brightBlue: 47.4 + brightMagenta: 50.2 + brightCyan: 43.2 + brightWhite: 73.4 diff --git a/themes/merlot.yaml b/themes/merlot.yaml index eb86abb5..e68d76e1 100644 --- a/themes/merlot.yaml +++ b/themes/merlot.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yubiDev.yoobdev" version: "0.0.7" installs: 195 + rating: 0 + ratings: 0 author: "yoobdev" repo: "https://github.com/kimkom369/VSCode-Theme-Pack" url: "https://marketplace.visualstudio.com/items?itemName=yubiDev.yoobdev" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: 1 + pair: null contrast: fg: 65.7 black: 23.5 diff --git a/themes/mesalvo-cortex.yaml b/themes/mesalvo-cortex.yaml index a1942c2e..c0e2c3d2 100644 --- a/themes/mesalvo-cortex.yaml +++ b/themes/mesalvo-cortex.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PolGubau.mesalvo" version: "0.0.9" installs: 64 + rating: 5 + ratings: 1 author: "PolGubau" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PolGubau.mesalvo" diff --git a/themes/meshvoid-light.yaml b/themes/meshvoid-light.yaml index fc8fb9bb..6671f675 100644 --- a/themes/meshvoid-light.yaml +++ b/themes/meshvoid-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MeshVoid.theme-meshvoid" version: "1.3.1" installs: 726 + rating: 0 + ratings: 0 author: "MeshVoid" repo: "https://github.com/MeshVoid/VSC_MeshVoid_Theme" url: "https://marketplace.visualstudio.com/items?itemName=MeshVoid.theme-meshvoid" diff --git a/themes/meshvoid.yaml b/themes/meshvoid.yaml index 3784ee8e..52a21c99 100644 --- a/themes/meshvoid.yaml +++ b/themes/meshvoid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MeshVoid.theme-meshvoid" version: "1.3.1" installs: 726 + rating: 0 + ratings: 0 author: "MeshVoid" repo: "https://github.com/MeshVoid/VSC_MeshVoid_Theme" url: "https://marketplace.visualstudio.com/items?itemName=MeshVoid.theme-meshvoid" diff --git a/themes/metagrama.yaml b/themes/metagrama.yaml index faca4680..76df9cb4 100644 --- a/themes/metagrama.yaml +++ b/themes/metagrama.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Zentropia.theme-metagrama" version: "1.0.0" installs: 320 + rating: 0 + ratings: 0 author: "Zentropia" repo: "https://github.com/zentropia/vscode-theme-metagrama" url: "https://marketplace.visualstudio.com/items?itemName=Zentropia.theme-metagrama" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99 black: 99 diff --git a/themes/meteora.yaml b/themes/meteora.yaml index b1db45c7..ac1f5057 100644 --- a/themes/meteora.yaml +++ b/themes/meteora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pjmiravalle.meteora" version: "0.0.1" installs: 848 + rating: 0 + ratings: 0 author: "Patrick Miravalle" repo: "https://github.com/pjmiravalle/meteora-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=pjmiravalle.meteora" diff --git a/themes/metropolis-light.yaml b/themes/metropolis-light.yaml index 22a62821..ad8e68dc 100644 --- a/themes/metropolis-light.yaml +++ b/themes/metropolis-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FabianDeckmann.metropolis" version: "1.0.0" installs: 235 + rating: 4.33 + ratings: 3 author: "Fabian Deckmann" repo: "https://github.com/ffjaervik/metropolis-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=FabianDeckmann.metropolis" diff --git a/themes/metropolis-sky-scape.yaml b/themes/metropolis-sky-scape.yaml new file mode 100644 index 00000000..5fb06817 --- /dev/null +++ b/themes/metropolis-sky-scape.yaml @@ -0,0 +1,52 @@ +name: "Metropolis-Sky-Scape" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#333333" + fg: "#F4F4DD" + black: "#333333" + red: "#FF4400" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FFBE14" + magenta: "#FFBE14" + cyan: "#29C3A0" + white: "#F4F4DD" + brightBlack: "#333333" + brightRed: "#FF4400" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FFBE14" + brightMagenta: "#FFBE14" + brightCyan: "#29C3A0" + brightWhite: "#F4F4DD" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 93.8 + black: 0 + red: 35.4 + green: 52.8 + yellow: 46.8 + blue: 68.1 + magenta: 68.1 + cyan: 52.8 + white: 93.8 + brightBlack: 0 + brightRed: 35.4 + brightGreen: 52.8 + brightYellow: 46.8 + brightBlue: 68.1 + brightMagenta: 68.1 + brightCyan: 52.8 + brightWhite: 93.8 diff --git a/themes/metropolis.yaml b/themes/metropolis.yaml index 5f7fb18e..d1a561cb 100644 --- a/themes/metropolis.yaml +++ b/themes/metropolis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FabianDeckmann.metropolis" version: "1.0.0" installs: 235 + rating: 4.33 + ratings: 3 author: "Fabian Deckmann" repo: "https://github.com/ffjaervik/metropolis-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=FabianDeckmann.metropolis" diff --git a/themes/mgldvd-theme.yaml b/themes/mgldvd-theme.yaml index c81afda0..23384957 100644 --- a/themes/mgldvd-theme.yaml +++ b/themes/mgldvd-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mgldvd.mgldvd" version: "1.4.8" installs: 63 + rating: 0 + ratings: 0 author: "Mgldvd" repo: "https://github.com/mgldvd/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mgldvd.mgldvd" diff --git a/themes/mh-theme.yaml b/themes/mh-theme.yaml index c8d3c049..0664aaee 100644 --- a/themes/mh-theme.yaml +++ b/themes/mh-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PanaMiguel.mh-theme" version: "0.1.1" installs: 828 + rating: 5 + ratings: 3 author: "Pana Miguel" repo: "https://github.com/MHP24/vsc-mh-theme" url: "https://marketplace.visualstudio.com/items?itemName=PanaMiguel.mh-theme" diff --git a/themes/mhfeizi.yaml b/themes/mhfeizi.yaml index 2173755c..c6b0ec9c 100644 --- a/themes/mhfeizi.yaml +++ b/themes/mhfeizi.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mhfeizi.mhfeizi-vscode-theme" version: "0.0.7" installs: 201 + rating: 0 + ratings: 0 author: "mhfeizi" repo: "https://github.com/mhfeizi/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mhfeizi.mhfeizi-vscode-theme" diff --git a/themes/mi4uokai.yaml b/themes/mi4uokai.yaml index 01308f28..e765c317 100644 --- a/themes/mi4uokai.yaml +++ b/themes/mi4uokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Michami4uuLipiski.mi4uokai" version: "0.0.15" installs: 96 + rating: 5 + ratings: 1 author: "Michał mi4uu Lipiński" repo: "https://github.com/mi4uu/mi4uokai-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Michami4uuLipiski.mi4uokai" diff --git a/themes/miami-nights.yaml b/themes/miami-nights.yaml index 3e823cbd..ad065e98 100644 --- a/themes/miami-nights.yaml +++ b/themes/miami-nights.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hater.miami-nights" version: "0.0.2" installs: 71 + rating: 0 + ratings: 0 author: "hater" repo: "https://github.com/Kondor777200/miami-nights" url: "https://marketplace.visualstudio.com/items?itemName=hater.miami-nights" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/miami-vice.yaml b/themes/miami-vice.yaml index 0d2939af..70c71c95 100644 --- a/themes/miami-vice.yaml +++ b/themes/miami-vice.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Noqs.darkstack" version: "1.1.1" installs: 2842 + rating: 0 + ratings: 0 author: "Noqs" repo: "https://github.com/NoxQ/Darkstack" url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" diff --git a/themes/miami-wind.yaml b/themes/miami-wind.yaml index bc9f36dc..b07c5544 100644 --- a/themes/miami-wind.yaml +++ b/themes/miami-wind.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hanakin.miami-wind" version: "0.4.0" installs: 93 + rating: 0 + ratings: 0 author: "hanakin" repo: "https://github.com/hanakin/miami-wind-vscode" url: "https://marketplace.visualstudio.com/items?itemName=hanakin.miami-wind" diff --git a/themes/miasma-color-theme.yaml b/themes/miasma-color-theme.yaml index 17da8f7f..61a1ad1f 100644 --- a/themes/miasma-color-theme.yaml +++ b/themes/miasma-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wavebeem.four-sages-vscode" version: "1.0.0" installs: 208 + rating: 0 + ratings: 0 author: "Sage Fennel" repo: "https://github.com/wavebeem/four-sages-vscode" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.four-sages-vscode" diff --git a/themes/mibtema.yaml b/themes/mibtema.yaml index c89fe347..09f3b6a1 100644 --- a/themes/mibtema.yaml +++ b/themes/mibtema.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MibTema.mib-tema" version: "0.0.45" installs: 989 + rating: 0 + ratings: 0 author: "Mib Tema" repo: "https://github.com/sidicastro/mib-tema" url: "https://marketplace.visualstudio.com/items?itemName=MibTema.mib-tema" diff --git a/themes/michota.yaml b/themes/michota.yaml new file mode 100644 index 00000000..8fd6a6ed --- /dev/null +++ b/themes/michota.yaml @@ -0,0 +1,52 @@ +name: "Michota" +source: + marketplace_id: "michota.Michota" + version: "0.2.8" + installs: 220 + rating: 0 + ratings: 0 + author: "michota" + repo: "https://github.com/Michota/michota-theme" + url: "https://marketplace.visualstudio.com/items?itemName=michota.Michota" +colors: + bg: "#202020" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#FF52A3" + magenta: "#D186D8" + cyan: "#56C2B0" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#FF52A3" + brightMagenta: "#7E0097" + brightCyan: "#56C2B0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 58.3 + black: 0 + red: 41 + green: 61.2 + yellow: 69.5 + blue: 44 + magenta: 49.4 + cyan: 58 + white: 81.9 + brightBlack: 34.4 + brightRed: 37.3 + brightGreen: 61.2 + brightYellow: 69.5 + brightBlue: 44 + brightMagenta: 11.6 + brightCyan: 58 + brightWhite: 81.9 diff --git a/themes/micky-dark-black.yaml b/themes/micky-dark-black.yaml index 9005d5fd..10b8c3ba 100644 --- a/themes/micky-dark-black.yaml +++ b/themes/micky-dark-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Micky.micky-dark" version: "0.2.0" installs: 267 + rating: 0 + ratings: 0 author: "Micky" repo: "https://github.com/meetusadadiya/micky-dark" url: "https://marketplace.visualstudio.com/items?itemName=Micky.micky-dark" diff --git a/themes/micky-dark-lite-black.yaml b/themes/micky-dark-lite-black.yaml index 5dc64ae9..7db180d4 100644 --- a/themes/micky-dark-lite-black.yaml +++ b/themes/micky-dark-lite-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Micky.micky-dark" version: "0.2.0" installs: 267 + rating: 0 + ratings: 0 author: "Micky" repo: "https://github.com/meetusadadiya/micky-dark" url: "https://marketplace.visualstudio.com/items?itemName=Micky.micky-dark" diff --git a/themes/micky-dark-lite.yaml b/themes/micky-dark-lite.yaml index 93260c7b..eb05d0cd 100644 --- a/themes/micky-dark-lite.yaml +++ b/themes/micky-dark-lite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Micky.micky-dark" version: "0.2.0" installs: 267 + rating: 0 + ratings: 0 author: "Micky" repo: "https://github.com/meetusadadiya/micky-dark" url: "https://marketplace.visualstudio.com/items?itemName=Micky.micky-dark" diff --git a/themes/microhouse.yaml b/themes/microhouse.yaml new file mode 100644 index 00000000..f70d04f7 --- /dev/null +++ b/themes/microhouse.yaml @@ -0,0 +1,52 @@ +name: "Microhouse" +source: + marketplace_id: "DiscreteProjects.microhouse" + version: "0.1.3" + installs: 117 + rating: 0 + ratings: 0 + author: "Discrete_Projects" + repo: "https://github.com/discrete-projects/op-one" + url: "https://marketplace.visualstudio.com/items?itemName=DiscreteProjects.microhouse" +colors: + bg: "#0E0C11" + fg: "#E9E9E9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 303 + pair: null + contrast: + fg: 93.3 + black: 0 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/midas-touch-light.yaml b/themes/midas-touch-light.yaml index 63f2610f..d9c2d188 100644 --- a/themes/midas-touch-light.yaml +++ b/themes/midas-touch-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vshakitskiy.midas-touch" version: "1.0.0" installs: 70 + rating: 5 + ratings: 1 author: "vshakitskiy" repo: "https://github.com/vshakitskiy/midas_touch" url: "https://marketplace.visualstudio.com/items?itemName=vshakitskiy.midas-touch" diff --git a/themes/midas-touch.yaml b/themes/midas-touch.yaml index dea1ee83..014a4848 100644 --- a/themes/midas-touch.yaml +++ b/themes/midas-touch.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "skyler.ocrmnav" version: "4.0.196" installs: 325 + rating: 0 + ratings: 0 author: "skyler" repo: "https://github.com/8an3/OCRMNav" url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" diff --git a/themes/midcentury.yaml b/themes/midcentury.yaml index 5ea1c52b..9c4a39e0 100644 --- a/themes/midcentury.yaml +++ b/themes/midcentury.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Atompowered.midcentury" version: "0.0.1" installs: 49 + rating: 0 + ratings: 0 author: "Adam Schuster" repo: "https://github.com/atomicguy/midcentury" url: "https://marketplace.visualstudio.com/items?itemName=Atompowered.midcentury" diff --git a/themes/middle-field-canvas.yaml b/themes/middle-field-canvas.yaml new file mode 100644 index 00000000..d9268fe8 --- /dev/null +++ b/themes/middle-field-canvas.yaml @@ -0,0 +1,52 @@ +name: "Middle-Field-Canvas" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#0A0A0A" + fg: "#FAFAFA" + black: "#0A0A0A" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FAFAFA" + magenta: "#FAFAFA" + cyan: "#29C3A0" + white: "#FAFAFA" + brightBlack: "#0A0A0A" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FAFAFA" + brightMagenta: "#FAFAFA" + brightCyan: "#29C3A0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 104.4 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.6 + blue: 104.4 + magenta: 104.4 + cyan: 58.5 + white: 104.4 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 104.4 + brightMagenta: 104.4 + brightCyan: 58.5 + brightWhite: 104.4 diff --git a/themes/midight-sun.yaml b/themes/midight-sun.yaml index e5ce34ae..398ca06d 100644 --- a/themes/midight-sun.yaml +++ b/themes/midight-sun.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PerfectNkosi.midnight-sun" version: "0.0.1" installs: 408 + rating: 0 + ratings: 0 author: "Perfect Nkosi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PerfectNkosi.midnight-sun" diff --git a/themes/midnight-blueprint.yaml b/themes/midnight-blueprint.yaml index fa7c59bf..9b590238 100644 --- a/themes/midnight-blueprint.yaml +++ b/themes/midnight-blueprint.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GaganGoswami.midnight-blueprint" version: "1.0.0" installs: 64 + rating: 0 + ratings: 0 author: "Gagan Goswami" repo: "https://github.com/GaganGoswami/midnight-blueprint-theme" url: "https://marketplace.visualstudio.com/items?itemName=GaganGoswami.midnight-blueprint" diff --git a/themes/midnight-breeze.yaml b/themes/midnight-breeze.yaml index fb3900ba..7f4aa4cb 100644 --- a/themes/midnight-breeze.yaml +++ b/themes/midnight-breeze.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leandroaps.vscode-theme-midnight-breeze" version: "4.4.2" installs: 99 + rating: 5 + ratings: 1 author: "Leandro Aparecido de Siqueira" repo: "https://github.com/leandroaps/midnight-breeze" url: "https://marketplace.visualstudio.com/items?itemName=leandroaps.vscode-theme-midnight-breeze" diff --git a/themes/midnight-candy.yaml b/themes/midnight-candy.yaml index 6b220854..6ac1d32c 100644 --- a/themes/midnight-candy.yaml +++ b/themes/midnight-candy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RavGoundar.midnight-candy" version: "1.1.1" installs: 148 + rating: 0 + ratings: 0 author: "Rav Goundar" repo: "https://github.com/ravgoundar/midnight_candy" url: "https://marketplace.visualstudio.com/items?itemName=RavGoundar.midnight-candy" diff --git a/themes/midnight-city.yaml b/themes/midnight-city.yaml index ba8cb856..e07bcd86 100644 --- a/themes/midnight-city.yaml +++ b/themes/midnight-city.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/midnight-color-theme.yaml b/themes/midnight-color-theme.yaml index 6454fa3e..6463017b 100644 --- a/themes/midnight-color-theme.yaml +++ b/themes/midnight-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wavebeem.theme-unoduetre" version: "5.11.1" installs: 4290 + rating: 5 + ratings: 5 author: "Sage Fennel" repo: "https://github.com/wavebeem/vscode-theme-unoduetre" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" diff --git a/themes/midnight-dark.yaml b/themes/midnight-dark.yaml new file mode 100644 index 00000000..f998fe24 --- /dev/null +++ b/themes/midnight-dark.yaml @@ -0,0 +1,52 @@ +name: "Midnight Dark" +source: + marketplace_id: "ExtRise.midnight-dark-theme" + version: "1.0.0" + installs: 92 + rating: 0 + ratings: 0 + author: "ExtRise" + repo: "https://github.com/extrise/midnight-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#1A1B26" + red: "#F7768E" + green: "#C3E88D" + yellow: "#E0AF68" + blue: "#89DDFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#C0CAF5" + brightBlack: "#5C6370" + brightRed: "#F7768E" + brightGreen: "#C3E88D" + brightYellow: "#E0AF68" + brightBlue: "#89DDFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: "Midnight Light" + contrast: + fg: 73.8 + black: 0 + red: 49.4 + green: 83.6 + yellow: 62.2 + blue: 77.7 + magenta: 53.2 + cyan: 77.7 + white: 73.8 + brightBlack: 20.1 + brightRed: 49.4 + brightGreen: 83.6 + brightYellow: 62.2 + brightBlue: 77.7 + brightMagenta: 53.2 + brightCyan: 77.7 + brightWhite: 73.8 diff --git a/themes/midnight-darker.yaml b/themes/midnight-darker.yaml index d4fea0a4..d857b185 100644 --- a/themes/midnight-darker.yaml +++ b/themes/midnight-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thewerthon.thewerthon-midnight" version: "1.0.0" installs: 78 + rating: 5 + ratings: 1 author: "Éwerton Ferreira" repo: "https://github.com/thewerthon/midnight" url: "https://marketplace.visualstudio.com/items?itemName=thewerthon.thewerthon-midnight" diff --git a/themes/midnight-dracula.yaml b/themes/midnight-dracula.yaml index 73b10d2a..d1e0c10a 100644 --- a/themes/midnight-dracula.yaml +++ b/themes/midnight-dracula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jvbs.midnight-dracula" version: "0.0.2" installs: 1252 + rating: 5 + ratings: 3 author: "jvbs" repo: "https://github.com/jvbs/midnight-dracula" url: "https://marketplace.visualstudio.com/items?itemName=jvbs.midnight-dracula" diff --git a/themes/midnight-embers.yaml b/themes/midnight-embers.yaml index 4b0a6c96..3561f07d 100644 --- a/themes/midnight-embers.yaml +++ b/themes/midnight-embers.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ShadowSlayer.midnightembers" version: "1.0.0" installs: 159 + rating: 4 + ratings: 1 author: "ShadowSlayer" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ShadowSlayer.midnightembers" diff --git a/themes/midnight-emerald.yaml b/themes/midnight-emerald.yaml new file mode 100644 index 00000000..acb5818c --- /dev/null +++ b/themes/midnight-emerald.yaml @@ -0,0 +1,52 @@ +name: "Midnight Emerald" +source: + marketplace_id: "SaptanshuWanjari.midnight-emerald-theme" + version: "1.1.0" + installs: 24 + rating: 0 + ratings: 0 + author: "SaptanshuWanjari" + repo: "https://github.com/SaptanshuWanjari/Midnight-Emerald" + url: "https://marketplace.visualstudio.com/items?itemName=SaptanshuWanjari.midnight-emerald-theme" +colors: + bg: "#15141B" + fg: "#F8FAFC" + black: "#1F2937" + red: "#EF4444" + green: "#10B981" + yellow: "#06B6D4" + blue: "#3B82F6" + magenta: "#8B5CF6" + cyan: "#06B6D4" + white: "#E4E4E7" + brightBlack: "#1F2937" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#06B6D4" + brightBlue: "#3B82F6" + brightMagenta: "#8B5CF6" + brightCyan: "#06B6D4" + brightWhite: "#E4E4E7" +meta: + mode: "dark" + accent: "magenta" + hue: 292 + pair: null + contrast: + fg: 103.6 + black: 0 + red: 37 + green: 52.1 + yellow: 54.1 + blue: 37 + magenta: 32.1 + cyan: 54.1 + white: 89.7 + brightBlack: 0 + brightRed: 37 + brightGreen: 52.1 + brightYellow: 54.1 + brightBlue: 37 + brightMagenta: 32.1 + brightCyan: 54.1 + brightWhite: 89.7 diff --git a/themes/midnight-forest.yaml b/themes/midnight-forest.yaml new file mode 100644 index 00000000..cc9df33a --- /dev/null +++ b/themes/midnight-forest.yaml @@ -0,0 +1,52 @@ +name: "Midnight Forest" +source: + marketplace_id: "ExtRise.midnight-dark-theme" + version: "1.0.0" + installs: 92 + rating: 0 + ratings: 0 + author: "ExtRise" + repo: "https://github.com/extrise/midnight-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#0D1117" + red: "#F87171" + green: "#22C55E" + yellow: "#FBBF24" + blue: "#7DD3FC" + magenta: "#A78BFA" + cyan: "#06B6D4" + white: "#C9D1D9" + brightBlack: "#6B7280" + brightRed: "#FCA5A5" + brightGreen: "#4ADE80" + brightYellow: "#FCD34D" + brightBlue: "#93C5FD" + brightMagenta: "#C4B5FD" + brightCyan: "#67E8F9" + brightWhite: "#F3F4F6" +meta: + mode: "dark" + accent: "green" + hue: 258 + pair: null + contrast: + fg: 77.5 + black: 0 + red: 48.6 + green: 57.3 + yellow: 73.2 + blue: 73.2 + magenta: 48.8 + cyan: 54.4 + white: 77.5 + brightBlack: 27.7 + brightRed: 66.1 + brightGreen: 71 + brightYellow: 81.9 + brightBlue: 68.7 + brightMagenta: 67.4 + brightCyan: 81.7 + brightWhite: 100.1 diff --git a/themes/midnight-fusion.yaml b/themes/midnight-fusion.yaml index ed5fa5b2..74bb7f0d 100644 --- a/themes/midnight-fusion.yaml +++ b/themes/midnight-fusion.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Abdulrahmansde.midnight-fusion" version: "0.0.1" installs: 78 + rating: 5 + ratings: 1 author: "Abdulrahman" repo: "https://github.com/abdulrehman-codecrafter/Vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Abdulrahmansde.midnight-fusion" diff --git a/themes/midnight-gambler.yaml b/themes/midnight-gambler.yaml index 16f98bba..31771838 100644 --- a/themes/midnight-gambler.yaml +++ b/themes/midnight-gambler.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/midnight-grove.yaml b/themes/midnight-grove.yaml index 9411f673..74016f82 100644 --- a/themes/midnight-grove.yaml +++ b/themes/midnight-grove.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lela.midnight-grove" version: "1.0.1" installs: 13 + rating: 5 + ratings: 1 author: "lela" repo: "https://github.com/lelamanolio/midnight-grove-vstheme" url: "https://marketplace.visualstudio.com/items?itemName=lela.midnight-grove" diff --git a/themes/midnight-guest.yaml b/themes/midnight-guest.yaml index 7cda9a33..bdb826d4 100644 --- a/themes/midnight-guest.yaml +++ b/themes/midnight-guest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "flover.fromis-day" version: "0.0.5" installs: 198 + rating: 0 + ratings: 0 author: "flover" repo: null url: "https://marketplace.visualstudio.com/items?itemName=flover.fromis-day" diff --git a/themes/midnight-high-contrast-dark.yaml b/themes/midnight-high-contrast-dark.yaml new file mode 100644 index 00000000..80915900 --- /dev/null +++ b/themes/midnight-high-contrast-dark.yaml @@ -0,0 +1,52 @@ +name: "Midnight High Contrast Dark" +source: + marketplace_id: "ExtRise.midnight-dark-theme" + version: "1.0.0" + installs: 92 + rating: 0 + ratings: 0 + author: "ExtRise" + repo: "https://github.com/extrise/midnight-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0066FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#FFFF66" + brightBlue: "#6666FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: "Midnight High Contrast Light" + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 29.3 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 23 + brightRed: 47.9 + brightGreen: 89 + brightYellow: 103.3 + brightBlue: 32.6 + brightMagenta: 54.8 + brightCyan: 94 + brightWhite: 107.9 diff --git a/themes/midnight-high-contrast-light.yaml b/themes/midnight-high-contrast-light.yaml new file mode 100644 index 00000000..5d20e49f --- /dev/null +++ b/themes/midnight-high-contrast-light.yaml @@ -0,0 +1,52 @@ +name: "Midnight High Contrast Light" +source: + marketplace_id: "ExtRise.midnight-dark-theme" + version: "1.0.0" + installs: 92 + rating: 0 + ratings: 0 + author: "ExtRise" + repo: "https://github.com/extrise/midnight-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#FF0000" + green: "#008000" + yellow: "#CC6600" + blue: "#0000FF" + magenta: "#800080" + cyan: "#006666" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF6666" + brightGreen: "#66CC66" + brightYellow: "#FFCC66" + brightBlue: "#6666FF" + brightMagenta: "#CC66CC" + brightCyan: "#66CCCC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + pair: "Midnight High Contrast Dark" + contrast: + fg: 106 + black: 106 + red: 64.1 + green: 74.6 + yellow: 65.3 + blue: 85.8 + magenta: 89.6 + cyan: 82.9 + white: 0 + brightBlack: 78.8 + brightRed: 53.9 + brightGreen: 39 + brightYellow: 23 + brightBlue: 69.1 + brightMagenta: 60 + brightCyan: 35.9 + brightWhite: 0 diff --git a/themes/midnight-koi.yaml b/themes/midnight-koi.yaml new file mode 100644 index 00000000..eda6dffd --- /dev/null +++ b/themes/midnight-koi.yaml @@ -0,0 +1,52 @@ +name: "Midnight Koi" +source: + marketplace_id: "scottydotcom.scottydotcom-dark-theme" + version: "0.2.0" + installs: 37 + rating: 0 + ratings: 0 + author: "scottydotcom" + repo: "https://github.com/scottydotcom/midnight-koi" + url: "https://marketplace.visualstudio.com/items?itemName=scottydotcom.scottydotcom-dark-theme" +colors: + bg: "#131419" + fg: "#BBBBBB" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#5BAF96" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#5BAF96" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 276 + pair: null + contrast: + fg: 65 + black: 0 + red: 50.2 + green: 73 + yellow: 63 + blue: 51.9 + magenta: 55.8 + cyan: 50.2 + white: 32.9 + brightBlack: 0 + brightRed: 50.2 + brightGreen: 73 + brightYellow: 63 + brightBlue: 51.9 + brightMagenta: 55.8 + brightCyan: 50.2 + brightWhite: 59.8 diff --git a/themes/midnight-lake.yaml b/themes/midnight-lake.yaml index da40b1cb..482d5a12 100644 --- a/themes/midnight-lake.yaml +++ b/themes/midnight-lake.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Chiramium.midnightlake" version: "0.1.0" installs: 0 + rating: 0 + ratings: 0 author: "Chiramium" repo: "https://github.com/Chiramium/Midnight-Lake" url: "https://marketplace.visualstudio.com/items?itemName=Chiramium.midnightlake" diff --git a/themes/midnight-light.yaml b/themes/midnight-light.yaml new file mode 100644 index 00000000..7bb54e04 --- /dev/null +++ b/themes/midnight-light.yaml @@ -0,0 +1,52 @@ +name: "Midnight Light" +source: + marketplace_id: "ExtRise.midnight-dark-theme" + version: "1.0.0" + installs: 92 + rating: 0 + ratings: 0 + author: "ExtRise" + repo: "https://github.com/extrise/midnight-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" +colors: + bg: "#FAFAFA" + fg: "#2E3440" + black: "#1F2937" + red: "#DC2626" + green: "#059669" + yellow: "#D97706" + blue: "#0EA5E9" + magenta: "#7C3AED" + cyan: "#0891B2" + white: "#F9FAFB" + brightBlack: "#6B7280" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#8B5CF6" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Midnight Dark" + contrast: + fg: 95.4 + black: 98.5 + red: 68.6 + green: 61.6 + yellow: 55.5 + blue: 49.8 + magenta: 74.5 + cyan: 60.8 + white: 0 + brightBlack: 70.6 + brightRed: 60.8 + brightGreen: 46.1 + brightYellow: 38.8 + brightBlue: 60.9 + brightMagenta: 65.7 + brightCyan: 44.2 + brightWhite: 0 diff --git a/themes/midnight-marina.yaml b/themes/midnight-marina.yaml index 53a1e91e..7916ca35 100644 --- a/themes/midnight-marina.yaml +++ b/themes/midnight-marina.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muddyblack.midnight-marina" version: "0.1.2" installs: 125 + rating: 0 + ratings: 0 author: "Muddyblack" repo: "https://github.com/Muddyblack/midnight-marina-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Muddyblack.midnight-marina" diff --git a/themes/midnight-mirage.yaml b/themes/midnight-mirage.yaml index f9beec52..64d8b0dd 100644 --- a/themes/midnight-mirage.yaml +++ b/themes/midnight-mirage.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "puszkarek.midnight-mirage-theme" version: "0.1.6" installs: 565 + rating: 5 + ratings: 1 author: "Puszkarek" repo: "https://github.com/Puszkarek/midnight-mirage-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.midnight-mirage-theme" diff --git a/themes/midnight-monochrome.yaml b/themes/midnight-monochrome.yaml new file mode 100644 index 00000000..2b600b52 --- /dev/null +++ b/themes/midnight-monochrome.yaml @@ -0,0 +1,52 @@ +name: "Midnight Monochrome" +source: + marketplace_id: "ExtRise.midnight-dark-theme" + version: "1.0.0" + installs: 92 + rating: 0 + ratings: 0 + author: "ExtRise" + repo: "https://github.com/extrise/midnight-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" +colors: + bg: "#0D0D0D" + fg: "#E5E5E5" + black: "#0D0D0D" + red: "#CCCCCC" + green: "#D9D9D9" + yellow: "#B3B3B3" + blue: "#999999" + magenta: "#FFFFFF" + cyan: "#E5E5E5" + white: "#FFFFFF" + brightBlack: "#808080" + brightRed: "#CCCCCC" + brightGreen: "#D9D9D9" + brightYellow: "#B3B3B3" + brightBlue: "#999999" + brightMagenta: "#FFFFFF" + brightCyan: "#E5E5E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 90.8 + black: 0 + red: 75.4 + green: 83.3 + yellow: 60.9 + blue: 46.9 + magenta: 107.6 + cyan: 90.8 + white: 107.6 + brightBlack: 34.5 + brightRed: 75.4 + brightGreen: 83.3 + brightYellow: 60.9 + brightBlue: 46.9 + brightMagenta: 107.6 + brightCyan: 90.8 + brightWhite: 107.6 diff --git a/themes/midnight-monokai.yaml b/themes/midnight-monokai.yaml index 0e8bda6d..2723e10f 100644 --- a/themes/midnight-monokai.yaml +++ b/themes/midnight-monokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrewSen.vscode-midnight-monokai" version: "1.0.6" installs: 93 + rating: 0 + ratings: 0 author: "Andrew Sen" repo: "https://github.com/platformer/vscode-midnight-monokai" url: "https://marketplace.visualstudio.com/items?itemName=AndrewSen.vscode-midnight-monokai" diff --git a/themes/midnight-moon-eclipse.yaml b/themes/midnight-moon-eclipse.yaml index 8f327a1e..1426a094 100644 --- a/themes/midnight-moon-eclipse.yaml +++ b/themes/midnight-moon-eclipse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Noxire.midnight-themepack" version: "1.2.0" installs: 544 + rating: 0 + ratings: 0 author: "Noxire" repo: "https://github.com/Noxire-Hash/midnight-theme" url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" diff --git a/themes/midnight-moon-ukiyo.yaml b/themes/midnight-moon-ukiyo.yaml index e4e4cc6a..51918f09 100644 --- a/themes/midnight-moon-ukiyo.yaml +++ b/themes/midnight-moon-ukiyo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Noxire.midnight-themepack" version: "1.2.0" installs: 544 + rating: 0 + ratings: 0 author: "Noxire" repo: "https://github.com/Noxire-Hash/midnight-theme" url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" diff --git a/themes/midnight-moon.yaml b/themes/midnight-moon.yaml index a595d7d0..f62436b3 100644 --- a/themes/midnight-moon.yaml +++ b/themes/midnight-moon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Noxire.midnight-themepack" version: "1.2.0" installs: 544 + rating: 0 + ratings: 0 author: "Noxire" repo: "https://github.com/Noxire-Hash/midnight-theme" url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" diff --git a/themes/midnight-ocean.yaml b/themes/midnight-ocean.yaml new file mode 100644 index 00000000..bdc035ce --- /dev/null +++ b/themes/midnight-ocean.yaml @@ -0,0 +1,52 @@ +name: "Midnight Ocean" +source: + marketplace_id: "ExtRise.midnight-dark-theme" + version: "1.0.0" + installs: 92 + rating: 0 + ratings: 0 + author: "ExtRise" + repo: "https://github.com/extrise/midnight-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" +colors: + bg: "#0F1419" + fg: "#BFDBFE" + black: "#0F1419" + red: "#F87171" + green: "#34D399" + yellow: "#FBBF24" + blue: "#60A5FA" + magenta: "#A78BFA" + cyan: "#22D3EE" + white: "#BFDBFE" + brightBlack: "#64748B" + brightRed: "#FCA5A5" + brightGreen: "#6EE7B7" + brightYellow: "#FCD34D" + brightBlue: "#93C5FD" + brightMagenta: "#C4B5FD" + brightCyan: "#67E8F9" + brightWhite: "#F1F5F9" +meta: + mode: "dark" + accent: "orange" + hue: 249 + pair: null + contrast: + fg: 82.5 + black: 0 + red: 48.4 + green: 65.5 + yellow: 73 + blue: 51.7 + magenta: 48.6 + cyan: 68.9 + white: 82.5 + brightBlack: 28 + brightRed: 65.9 + brightGreen: 78.4 + brightYellow: 81.7 + brightBlue: 68.5 + brightMagenta: 67.2 + brightCyan: 81.5 + brightWhite: 100.2 diff --git a/themes/midnight-pastel.yaml b/themes/midnight-pastel.yaml index 64847ab6..9ee9e7e3 100644 --- a/themes/midnight-pastel.yaml +++ b/themes/midnight-pastel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/midnight-pro.yaml b/themes/midnight-pro.yaml index d52b5390..66a30efc 100644 --- a/themes/midnight-pro.yaml +++ b/themes/midnight-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Noxire.midnight-themepack" version: "1.2.0" installs: 544 + rating: 0 + ratings: 0 author: "Noxire" repo: "https://github.com/Noxire-Hash/midnight-theme" url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" diff --git a/themes/midnight-purple-deep.yaml b/themes/midnight-purple-deep.yaml index 3eab297c..87f8c3ca 100644 --- a/themes/midnight-purple-deep.yaml +++ b/themes/midnight-purple-deep.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bxstars-code.midnight-purple-dark-theme" version: "1.1.3" installs: 20 + rating: 0 + ratings: 0 author: "Barbara_Xavier" repo: "https://github.com/bxstars/midnight-purple-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=bxstars-code.midnight-purple-dark-theme" diff --git a/themes/midnight-purple.yaml b/themes/midnight-purple.yaml index 20af2ed4..0f7d117a 100644 --- a/themes/midnight-purple.yaml +++ b/themes/midnight-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodewithBismillah.chroma-library" version: "1.2.1" installs: 358 + rating: 5 + ratings: 1 author: "Code with Bismillah" repo: "https://github.com/mubashir1837/Chroma-Library" url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" diff --git a/themes/midnight-rainbow.yaml b/themes/midnight-rainbow.yaml index 14b0a814..af85c626 100644 --- a/themes/midnight-rainbow.yaml +++ b/themes/midnight-rainbow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "parallaxshiftdj.midnightrainbow" version: "1.0.11" installs: 2335 + rating: 5 + ratings: 1 author: "Parallax Shift" repo: null url: "https://marketplace.visualstudio.com/items?itemName=parallaxshiftdj.midnightrainbow" diff --git a/themes/midnight-rose-theme.yaml b/themes/midnight-rose-theme.yaml index 5e16aaee..99fd6f38 100644 --- a/themes/midnight-rose-theme.yaml +++ b/themes/midnight-rose-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nathan-dev.midnight-rose-theme" version: "1.1.4" installs: 119 + rating: 5 + ratings: 2 author: "Nathan-extension" repo: "https://github.com/nathan/rose-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=nathan-dev.midnight-rose-theme" diff --git a/themes/midnight-sapphire.yaml b/themes/midnight-sapphire.yaml index 4c56809d..062c1610 100644 --- a/themes/midnight-sapphire.yaml +++ b/themes/midnight-sapphire.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hassancoder1.midnight-sapphire" version: "1.1.0" installs: 597 + rating: 0 + ratings: 0 author: "HassanCoder" repo: "https://github.com/hassancoder1/midnight-sapphire-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=hassancoder1.midnight-sapphire" diff --git a/themes/midnight-shadow-fork.yaml b/themes/midnight-shadow-fork.yaml new file mode 100644 index 00000000..a2b89131 --- /dev/null +++ b/themes/midnight-shadow-fork.yaml @@ -0,0 +1,52 @@ +name: "Midnight Shadow - Fork" +source: + marketplace_id: "Vjecni.Midnight-Shadow" + version: "0.8.0" + installs: 196 + rating: 0 + ratings: 0 + author: "Vjecni" + repo: "https://github.com/Vjecni/midnight-shadow-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vjecni.Midnight-Shadow" +colors: + bg: "#18191D" + fg: "#FFFFFF" + black: "#1A1D25" + red: "#CD3131" + green: "#0DBC79" + yellow: "#9B9B00" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#A9A9A9" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.6 + black: 0 + red: 26.5 + green: 52.8 + yellow: 44.5 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 54.5 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.1 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/midnight-soft.yaml b/themes/midnight-soft.yaml new file mode 100644 index 00000000..3c6890e7 --- /dev/null +++ b/themes/midnight-soft.yaml @@ -0,0 +1,52 @@ +name: "Midnight Soft" +source: + marketplace_id: "ExtRise.midnight-dark-theme" + version: "1.0.0" + installs: 92 + rating: 0 + ratings: 0 + author: "ExtRise" + repo: "https://github.com/extrise/midnight-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#1E1E2E" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#FAB387" + blue: "#89B4FA" + magenta: "#B4BEFE" + cyan: "#74C7EC" + white: "#CDD6F4" + brightBlack: "#6C7086" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#FAB387" + brightBlue: "#89B4FA" + brightMagenta: "#B4BEFE" + brightCyan: "#74C7EC" + brightWhite: "#CDD6F4" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 80 + black: 0 + red: 54.7 + green: 78.3 + yellow: 68.2 + blue: 59.1 + magenta: 67.5 + cyan: 64.7 + white: 80 + brightBlack: 25.8 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 68.2 + brightBlue: 59.1 + brightMagenta: 67.5 + brightCyan: 64.7 + brightWhite: 80 diff --git a/themes/midnight-theme-light-soft.yaml b/themes/midnight-theme-light-soft.yaml index da0ecccf..ea7f8c09 100644 --- a/themes/midnight-theme-light-soft.yaml +++ b/themes/midnight-theme-light-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kaivanwong.vscode-midnight-theme" version: "0.1.3" installs: 842 + rating: 5 + ratings: 1 author: "Kaivan Wong" repo: "https://github.com/kaivanwong/vscode-midnight-theme" url: "https://marketplace.visualstudio.com/items?itemName=kaivanwong.vscode-midnight-theme" diff --git a/themes/midnight-theme-light.yaml b/themes/midnight-theme-light.yaml index 8ee7a593..14e31e13 100644 --- a/themes/midnight-theme-light.yaml +++ b/themes/midnight-theme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kaivanwong.vscode-midnight-theme" version: "0.1.3" installs: 842 + rating: 5 + ratings: 1 author: "Kaivan Wong" repo: "https://github.com/kaivanwong/vscode-midnight-theme" url: "https://marketplace.visualstudio.com/items?itemName=kaivanwong.vscode-midnight-theme" diff --git a/themes/midnight-theme.yaml b/themes/midnight-theme.yaml index 9671c536..6d8e79f0 100644 --- a/themes/midnight-theme.yaml +++ b/themes/midnight-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "khanghy1000.midnight-ray-theme" version: "0.0.24" installs: 275 + rating: 0 + ratings: 0 author: "khanghy1000" repo: "https://github.com/khanghy1000/Midnight-Theme" url: "https://marketplace.visualstudio.com/items?itemName=khanghy1000.midnight-ray-theme" diff --git a/themes/midnight-ukiyo.yaml b/themes/midnight-ukiyo.yaml index 69474674..2c3e9dee 100644 --- a/themes/midnight-ukiyo.yaml +++ b/themes/midnight-ukiyo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Noxire.midnight-themepack" version: "1.2.0" installs: 544 + rating: 0 + ratings: 0 author: "Noxire" repo: "https://github.com/Noxire-Hash/midnight-theme" url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" diff --git a/themes/midnight-z.yaml b/themes/midnight-z.yaml index 95ef73d7..631f3f02 100644 --- a/themes/midnight-z.yaml +++ b/themes/midnight-z.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZachGreen.midnight-z" version: "0.1.1" installs: 290 + rating: 0 + ratings: 0 author: "Zach Green" repo: "https://github.com/git@github.com:zachjamesgreen/Midnight-Z.git" url: "https://marketplace.visualstudio.com/items?itemName=ZachGreen.midnight-z" diff --git a/themes/midnightglow.yaml b/themes/midnightglow.yaml index b6cce478..49d06176 100644 --- a/themes/midnightglow.yaml +++ b/themes/midnightglow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dumildematos.midnight-glow" version: "0.0.3" installs: 501 + rating: 5 + ratings: 1 author: "Dumilde Matos" repo: "https://github.com/dumildematos/midnight-glow" url: "https://marketplace.visualstudio.com/items?itemName=dumildematos.midnight-glow" diff --git a/themes/midt.yaml b/themes/midt.yaml index 7632a504..33accf7f 100644 --- a/themes/midt.yaml +++ b/themes/midt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "marksdk.midt" version: "1.3.2" installs: 135 + rating: 0 + ratings: 0 author: "Mark Hougaard Jensen" repo: "https://github.com/marksdk/theme-midt" url: "https://marketplace.visualstudio.com/items?itemName=marksdk.midt" diff --git a/themes/midwinter-light.yaml b/themes/midwinter-light.yaml new file mode 100644 index 00000000..bb368d05 --- /dev/null +++ b/themes/midwinter-light.yaml @@ -0,0 +1,52 @@ +name: "Midwinter Light" +source: + marketplace_id: "merithayan.midwinter" + version: "0.1.1" + installs: 165 + rating: 0 + ratings: 0 + author: "Tim Hull" + repo: "https://www.github.com/mtyn/midwinter" + url: "https://marketplace.visualstudio.com/items?itemName=merithayan.midwinter" +colors: + bg: "#FFFFFF" + fg: "#303036" + black: "#EEEFF1" + red: "#AF5550" + green: "#79B488" + yellow: "#EBB861" + blue: "#4397C4" + magenta: "#A796BC" + cyan: "#459BA0" + white: "#F4F4F5" + brightBlack: "#E4E4E7" + brightRed: "#AF5550" + brightGreen: "#79B488" + brightYellow: "#EBB861" + brightBlue: "#4397C4" + brightMagenta: "#A796BC" + brightCyan: "#459BA0" + brightWhite: "#E4E4E7" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 99.4 + black: 0 + red: 73.9 + green: 47.5 + yellow: 33.7 + blue: 59.5 + magenta: 52.6 + cyan: 59.7 + white: 0 + brightBlack: 13.4 + brightRed: 73.9 + brightGreen: 47.5 + brightYellow: 33.7 + brightBlue: 59.5 + brightMagenta: 52.6 + brightCyan: 59.7 + brightWhite: 13.4 diff --git a/themes/mihari-bordered.yaml b/themes/mihari-bordered.yaml index 40a7e02d..0f375fa9 100644 --- a/themes/mihari-bordered.yaml +++ b/themes/mihari-bordered.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rynco.mihari" version: "0.4.0" installs: 866 + rating: 5 + ratings: 1 author: "rynco" repo: "https://github.com/01010101lzy/mihari" url: "https://marketplace.visualstudio.com/items?itemName=rynco.mihari" diff --git a/themes/mihari.yaml b/themes/mihari.yaml index fe70b8bc..47a7dfeb 100644 --- a/themes/mihari.yaml +++ b/themes/mihari.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rynco.mihari" version: "0.4.0" installs: 866 + rating: 5 + ratings: 1 author: "rynco" repo: "https://github.com/01010101lzy/mihari" url: "https://marketplace.visualstudio.com/items?itemName=rynco.mihari" diff --git a/themes/mike-sources-green-crt.yaml b/themes/mike-sources-green-crt.yaml index 36418536..998a774a 100644 --- a/themes/mike-sources-green-crt.yaml +++ b/themes/mike-sources-green-crt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mikesources.mike-sources-pack" version: "1.1.1" installs: 325 + rating: 0 + ratings: 0 author: "Mike Sources" repo: "https://github.com/mwfontes/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mikesources.mike-sources-pack" diff --git a/themes/mike-sources-hacker.yaml b/themes/mike-sources-hacker.yaml new file mode 100644 index 00000000..86c30db4 --- /dev/null +++ b/themes/mike-sources-hacker.yaml @@ -0,0 +1,52 @@ +name: "Mike Sources Hacker" +source: + marketplace_id: "mikesources.mike-sources-pack" + version: "1.1.1" + installs: 325 + rating: 0 + ratings: 0 + author: "Mike Sources" + repo: "https://github.com/mwfontes/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mikesources.mike-sources-pack" +colors: + bg: "#000E14" + fg: "#7DF9FF" + black: "#606060" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#C2C2C2" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 222 + pair: null + contrast: + fg: 91.8 + black: 20.2 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 90.7 + brightBlack: 69.5 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/mike-sources-yellowstone.yaml b/themes/mike-sources-yellowstone.yaml index 1e78dce4..8630db85 100644 --- a/themes/mike-sources-yellowstone.yaml +++ b/themes/mike-sources-yellowstone.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mikesources.mike-sources-pack" version: "1.1.1" installs: 325 + rating: 0 + ratings: 0 author: "Mike Sources" repo: "https://github.com/mwfontes/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mikesources.mike-sources-pack" diff --git a/themes/mikes-vscode-theme-1.yaml b/themes/mikes-vscode-theme-1.yaml index 860727a5..a01f8ed9 100644 --- a/themes/mikes-vscode-theme-1.yaml +++ b/themes/mikes-vscode-theme-1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MikeT.Mikes-color-theme" version: "1.0.0" installs: 14 + rating: 0 + ratings: 0 author: "MikeT" repo: "https://github.com/MichaelTitmouse/Mikes-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=MikeT.Mikes-color-theme" diff --git a/themes/mikestheme-edited-gulajavaministudio-mayukai-theme.yaml b/themes/mikestheme-edited-gulajavaministudio-mayukai-theme.yaml new file mode 100644 index 00000000..1c18f256 --- /dev/null +++ b/themes/mikestheme-edited-gulajavaministudio-mayukai-theme.yaml @@ -0,0 +1,52 @@ +name: "mikestheme (edited GulajavaMinistudio Mayukai theme)" +source: + marketplace_id: "mikep.mikestheme" + version: "0.0.1" + installs: 98 + rating: 0 + ratings: 0 + author: "mikep" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mikep.mikestheme" +colors: + bg: "#1A1D25" + fg: "#F5F5DF" + black: "#1E232E" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#95E6CB" + magenta: "#CFBAFA" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#8ADBB7" + brightYellow: "#FFD17A" + brightBlue: "#95E6CB" + brightMagenta: "#CCA0FF" + brightCyan: "#95E6CB" + brightWhite: "#FDFDFD" +meta: + mode: "dark" + accent: "magenta" + hue: 269 + pair: null + contrast: + fg: 98.6 + black: 0 + red: 49.6 + green: 66.8 + yellow: 79.8 + blue: 80.2 + magenta: 69.3 + cyan: 80.2 + white: 71 + brightBlack: 22.2 + brightRed: 52.2 + brightGreen: 73.3 + brightYellow: 81 + brightBlue: 80.2 + brightMagenta: 59.7 + brightCyan: 80.2 + brightWhite: 104.8 diff --git a/themes/miku-code-fusion-light.yaml b/themes/miku-code-fusion-light.yaml index 3b446220..fe477cd0 100644 --- a/themes/miku-code-fusion-light.yaml +++ b/themes/miku-code-fusion-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "biglexj.miku-code" version: "1.3.6" installs: 2157 + rating: 5 + ratings: 1 author: "biglexj" repo: "https://github.com/biglexj/miku-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=biglexj.miku-code" diff --git a/themes/miku-code-light.yaml b/themes/miku-code-light.yaml index 06e55c1a..5812e786 100644 --- a/themes/miku-code-light.yaml +++ b/themes/miku-code-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "biglexj.miku-code" version: "1.3.6" installs: 2157 + rating: 5 + ratings: 1 author: "biglexj" repo: "https://github.com/biglexj/miku-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=biglexj.miku-code" diff --git a/themes/miku-code.yaml b/themes/miku-code.yaml index d5945fec..965d2f92 100644 --- a/themes/miku-code.yaml +++ b/themes/miku-code.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "biglexj.miku-code" version: "1.3.6" installs: 2157 + rating: 5 + ratings: 1 author: "biglexj" repo: "https://github.com/biglexj/miku-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=biglexj.miku-code" diff --git a/themes/milianor-theme.yaml b/themes/milianor-theme.yaml index f4e6ac67..8833ba92 100644 --- a/themes/milianor-theme.yaml +++ b/themes/milianor-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MaxMilianoDelCantoQuezada.milianor-theme" version: "4.0.8" installs: 163 + rating: 0 + ratings: 0 author: "Max Miliano" repo: "https://github.com/maxmx03/milianor-theme" url: "https://marketplace.visualstudio.com/items?itemName=MaxMilianoDelCantoQuezada.milianor-theme" diff --git a/themes/military-fork.yaml b/themes/military-fork.yaml index 44638f57..e2c1c0b1 100644 --- a/themes/military-fork.yaml +++ b/themes/military-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xynny.militrygreen" version: "0.0.1" installs: 726 + rating: 5 + ratings: 1 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.militrygreen" diff --git a/themes/milkyway.yaml b/themes/milkyway.yaml index ea37bf32..336adb6b 100644 --- a/themes/milkyway.yaml +++ b/themes/milkyway.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "motrdevua.milkyway" version: "1.0.0" installs: 845 + rating: 0 + ratings: 0 author: "motrdevua" repo: "https://github.com/motrdevua/MilkyWay" url: "https://marketplace.visualstudio.com/items?itemName=motrdevua.milkyway" diff --git a/themes/mimesis-dark.yaml b/themes/mimesis-dark.yaml index 67a13554..e6d82cfb 100644 --- a/themes/mimesis-dark.yaml +++ b/themes/mimesis-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexanderDyriavin.mimesis" version: "1.2.2" installs: 408 + rating: 0 + ratings: 0 author: "Alexander Dyriavin" repo: "https://github.com/dyriavin/mimesis-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderDyriavin.mimesis" diff --git a/themes/mimesis-light.yaml b/themes/mimesis-light.yaml index 199c6f10..aa243393 100644 --- a/themes/mimesis-light.yaml +++ b/themes/mimesis-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexanderDyriavin.mimesis" version: "1.2.2" installs: 408 + rating: 0 + ratings: 0 author: "Alexander Dyriavin" repo: "https://github.com/dyriavin/mimesis-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderDyriavin.mimesis" diff --git a/themes/min-gruvbox.yaml b/themes/min-gruvbox.yaml index a3de0d38..a8006221 100644 --- a/themes/min-gruvbox.yaml +++ b/themes/min-gruvbox.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cnmorocho.min-gruvbox-theme" version: "0.0.10" installs: 3530 + rating: 5 + ratings: 1 author: "Carlos Nahuel Morocho" repo: "https://github.com/cnmorocho/min-gruvbox-theme" url: "https://marketplace.visualstudio.com/items?itemName=cnmorocho.min-gruvbox-theme" diff --git a/themes/minai.yaml b/themes/minai.yaml new file mode 100644 index 00000000..a70d1398 --- /dev/null +++ b/themes/minai.yaml @@ -0,0 +1,52 @@ +name: "minai" +source: + marketplace_id: "arrow2nd.minai" + version: "0.0.2" + installs: 16 + rating: 0 + ratings: 0 + author: "arrow2nd" + repo: "https://github.com/arrow2nd/minai-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=arrow2nd.minai" +colors: + bg: "#232934" + fg: "#E8E2D6" + black: "#1B1F27" + red: "#C66471" + green: "#BBCACB" + yellow: "#BEBF70" + blue: "#578CAD" + magenta: "#B06E82" + cyan: "#76BFBA" + white: "#E8E2D6" + brightBlack: "#818181" + brightRed: "#C66471" + brightGreen: "#BBCACB" + brightYellow: "#BEBF70" + brightBlue: "#578CAD" + brightMagenta: "#B06E82" + brightCyan: "#76BFBA" + brightWhite: "#E8E2D6" +meta: + mode: "dark" + accent: "red" + hue: 262 + pair: null + contrast: + fg: 85.8 + black: 0 + red: 32.5 + green: 69.1 + yellow: 61.9 + blue: 34.1 + magenta: 31.9 + cyan: 57.3 + white: 85.8 + brightBlack: 31.6 + brightRed: 32.5 + brightGreen: 69.1 + brightYellow: 61.9 + brightBlue: 34.1 + brightMagenta: 31.9 + brightCyan: 57.3 + brightWhite: 85.8 diff --git a/themes/mincom.yaml b/themes/mincom.yaml index 1c27baca..bf5453df 100644 --- a/themes/mincom.yaml +++ b/themes/mincom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brimell.mincom-theme" version: "1.4.4" installs: 186 + rating: 5 + ratings: 1 author: "brimell" repo: null url: "https://marketplace.visualstudio.com/items?itemName=brimell.mincom-theme" diff --git a/themes/mineral-forest.yaml b/themes/mineral-forest.yaml new file mode 100644 index 00000000..9f08abfd --- /dev/null +++ b/themes/mineral-forest.yaml @@ -0,0 +1,52 @@ +name: "Mineral-Forest" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#061409" + fg: "#E7EEEC" + black: "#061409" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#95B2A8" + magenta: "#95B2A8" + cyan: "#29C3A0" + white: "#E7EEEC" + brightBlack: "#061409" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#95B2A8" + brightMagenta: "#95B2A8" + brightCyan: "#29C3A0" + brightWhite: "#E7EEEC" +meta: + mode: "dark" + accent: "yellow" + hue: 150 + pair: null + contrast: + fg: 95.2 + black: 0 + red: 9.8 + green: 58.1 + yellow: 52.2 + blue: 56.6 + magenta: 56.6 + cyan: 58.1 + white: 95.2 + brightBlack: 0 + brightRed: 9.8 + brightGreen: 58.1 + brightYellow: 52.2 + brightBlue: 56.6 + brightMagenta: 56.6 + brightCyan: 58.1 + brightWhite: 95.2 diff --git a/themes/minimal-44-pro.yaml b/themes/minimal-44-pro.yaml index 76265f23..fb2ae1ee 100644 --- a/themes/minimal-44-pro.yaml +++ b/themes/minimal-44-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Yazeed.minimal-44" version: "0.0.4" installs: 321 + rating: 0 + ratings: 0 author: "Yazeed" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Yazeed.minimal-44" diff --git a/themes/minimal-44.yaml b/themes/minimal-44.yaml index cbda89ab..b56a06c7 100644 --- a/themes/minimal-44.yaml +++ b/themes/minimal-44.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Yazeed.minimal-44" version: "0.0.4" installs: 321 + rating: 0 + ratings: 0 author: "Yazeed" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Yazeed.minimal-44" diff --git a/themes/minimal-dark-fork.yaml b/themes/minimal-dark-fork.yaml index 7773c83e..7abcf981 100644 --- a/themes/minimal-dark-fork.yaml +++ b/themes/minimal-dark-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arunim-io.arunim-theme" version: "0.0.2" installs: 30 + rating: 0 + ratings: 0 author: "Mugdha Arunim Ahmed" repo: "https://github.com/arunim-io/arunim-theme" url: "https://marketplace.visualstudio.com/items?itemName=arunim-io.arunim-theme" diff --git a/themes/minimal-dark.yaml b/themes/minimal-dark.yaml index ad06ad27..c8559170 100644 --- a/themes/minimal-dark.yaml +++ b/themes/minimal-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ArturGuedx.minimaldark" version: "0.0.2" installs: 797 + rating: 0 + ratings: 0 author: "ArturGuedx" repo: "https://github.com/ArturGuedes/MinimalDark" url: "https://marketplace.visualstudio.com/items?itemName=ArturGuedx.minimaldark" diff --git a/themes/minimal-green.yaml b/themes/minimal-green.yaml index 6512330c..977b4ce7 100644 --- a/themes/minimal-green.yaml +++ b/themes/minimal-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "moldaz.minimal-green" version: "0.0.7" installs: 11293 + rating: 5 + ratings: 9 author: "moldaz" repo: "https://github.com/mdoyleaz/vs-code-theme-minimal_green" url: "https://marketplace.visualstudio.com/items?itemName=moldaz.minimal-green" diff --git a/themes/minimal-monochrome-light.yaml b/themes/minimal-monochrome-light.yaml new file mode 100644 index 00000000..d0fa627d --- /dev/null +++ b/themes/minimal-monochrome-light.yaml @@ -0,0 +1,50 @@ +name: "Minimal Monochrome Light" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.1" + installs: 168 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" +colors: + bg: "#FCFCFC" + fg: "#000000" + black: "#1A1A1A" + red: "#C97A7D" + green: "#5A9E6F" + yellow: "#B8893A" + blue: "#5A8FB8" + magenta: "#8B6BA8" + cyan: "#4A9EA8" + white: "#D0D0D0" + brightBlack: "#646464" + brightRed: "#B56B6B" + brightGreen: "#4D8B5E" + brightYellow: "#A67830" + brightBlue: "#4A7FA8" + brightMagenta: "#7D5D9A" + brightCyan: "#3D8F99" + brightWhite: "#FCFCFC" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: "Minimal Monochrome Dark" + contrast: + fg: 104.2 + black: 102.5 + red: 57.2 + green: 57.3 + yellow: 56.6 + blue: 60.3 + magenta: 68.7 + cyan: 56.1 + white: 23.2 + brightBlack: 77.8 + brightRed: 65.1 + brightGreen: 65.9 + brightYellow: 64.7 + brightBlue: 67.8 + brightMagenta: 74.9 + brightCyan: 63.1 + brightWhite: 0 diff --git a/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml b/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml index 24cd1483..1944e12a 100644 --- a/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml +++ b/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "amirmajdi.minimal-themes-amirmajdi" version: "1.0.7" installs: 331 + rating: 0 + ratings: 0 author: "Amir Majdi" repo: "https://github.com/Amir-Majdi/minimal-themes" url: "https://marketplace.visualstudio.com/items?itemName=amirmajdi.minimal-themes-amirmajdi" diff --git a/themes/minimal-theme.yaml b/themes/minimal-theme.yaml index a6e1d112..5dd5be7a 100644 --- a/themes/minimal-theme.yaml +++ b/themes/minimal-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "optimizion.vscode-minimal-theme" version: "0.0.2" installs: 1842 + rating: 0 + ratings: 0 author: "optimizion" repo: null url: "https://marketplace.visualstudio.com/items?itemName=optimizion.vscode-minimal-theme" diff --git a/themes/minimal-wave-floral-dark.yaml b/themes/minimal-wave-floral-dark.yaml index 2fd071aa..807131ef 100644 --- a/themes/minimal-wave-floral-dark.yaml +++ b/themes/minimal-wave-floral-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "annalifatou.minimal-wave" version: "0.0.3" installs: 5726 + rating: 0 + ratings: 0 author: "annalifatou" repo: "https://github.com/annalifatou/minimal-wave" url: "https://marketplace.visualstudio.com/items?itemName=annalifatou.minimal-wave" diff --git a/themes/minimal-wave-floral-light.yaml b/themes/minimal-wave-floral-light.yaml index 23fff3d0..0d6aad1a 100644 --- a/themes/minimal-wave-floral-light.yaml +++ b/themes/minimal-wave-floral-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "annalifatou.minimal-wave" version: "0.0.3" installs: 5726 + rating: 0 + ratings: 0 author: "annalifatou" repo: "https://github.com/annalifatou/minimal-wave" url: "https://marketplace.visualstudio.com/items?itemName=annalifatou.minimal-wave" diff --git a/themes/minimal.yaml b/themes/minimal.yaml index 42f6d0d2..0d1abeda 100644 --- a/themes/minimal.yaml +++ b/themes/minimal.yaml @@ -1,50 +1,52 @@ name: "Minimal" source: - marketplace_id: "YesCode.only-dark-theme" - version: "0.0.16" - installs: 383 - author: "YesCode" - repo: "https://github.com/yesomac/only_dark" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" + marketplace_id: "amirmajdi.minimal-themes-amirmajdi" + version: "1.0.7" + installs: 331 + rating: 0 + ratings: 0 + author: "Amir Majdi" + repo: "https://github.com/Amir-Majdi/minimal-themes" + url: "https://marketplace.visualstudio.com/items?itemName=amirmajdi.minimal-themes-amirmajdi" colors: - bg: "#080A0D" - fg: "#EEFFFF" - black: "#1D2021" - red: "#FB543F" - green: "#95C085" - yellow: "#FAC03B" - blue: "#00A1F9" - magenta: "#8F4673" - cyan: "#86EBC4" - white: "#A89984" - brightBlack: "#665C54" - brightRed: "#FB543F" - brightGreen: "#FFC200" - brightYellow: "#E7F0FF" - brightBlue: "#0D6678" - brightMagenta: "#8F4673" - brightCyan: "#8BA59B" - brightWhite: "#FDF4C1" + bg: "#222222" + fg: "#FFFFFF" + black: "#222222" + red: "#E29090" + green: "#B5BD68" + yellow: "#F7DF9B" + blue: "#81A2BE" + magenta: "#B294BB" + cyan: "#8ABEB7" + white: "#FFFFFF" + brightBlack: "#222222" + brightRed: "#E29090" + brightGreen: "#B5BD68" + brightYellow: "#F7DF9B" + brightBlue: "#81A2BE" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "orange" + accent: "green" hue: null pair: null contrast: - fg: 105.4 + fg: 105.5 black: 0 - red: 42.8 - green: 61.8 - yellow: 73.9 - blue: 48.4 - magenta: 20.4 - cyan: 82.8 - white: 48.1 - brightBlack: 19.5 - brightRed: 42.8 - brightGreen: 75.4 - brightYellow: 97.4 - brightBlue: 19.6 - brightMagenta: 20.4 - brightCyan: 50.3 - brightWhite: 99.7 + red: 51.9 + green: 61 + yellow: 85.8 + blue: 47.5 + magenta: 47.5 + cyan: 59.4 + white: 105.5 + brightBlack: 0 + brightRed: 51.9 + brightGreen: 61 + brightYellow: 85.8 + brightBlue: 47.5 + brightMagenta: 47.5 + brightCyan: 59.4 + brightWhite: 105.5 diff --git a/themes/minimalblue.yaml b/themes/minimalblue.yaml new file mode 100644 index 00000000..a56ade4d --- /dev/null +++ b/themes/minimalblue.yaml @@ -0,0 +1,50 @@ +name: "MinimalBlue" +source: + marketplace_id: "MiguelLuisHernandezBrocat.minimalblue" + version: "0.0.1" + installs: 93 + author: "Miguel Luis HernandezBrocat" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MiguelLuisHernandezBrocat.minimalblue" +colors: + bg: "#0D0D19" + fg: "#D5D0D0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 283 + pair: null + contrast: + fg: 78.4 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/minimalesque.yaml b/themes/minimalesque.yaml index ba1aae8c..056e64b7 100644 --- a/themes/minimalesque.yaml +++ b/themes/minimalesque.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "y-software.minimalesque" version: "0.0.4" installs: 66 + rating: 0 + ratings: 0 author: "Yassin Software" repo: "https://github.com/Yassine914/MinimalesqueTheme" url: "https://marketplace.visualstudio.com/items?itemName=y-software.minimalesque" diff --git a/themes/minimalgold.yaml b/themes/minimalgold.yaml new file mode 100644 index 00000000..17038a2e --- /dev/null +++ b/themes/minimalgold.yaml @@ -0,0 +1,52 @@ +name: "MinimalGold" +source: + marketplace_id: "diegoleteliers.minimalgold" + version: "1.0.2" + installs: 38 + rating: 0 + ratings: 0 + author: "Diego Jose Letelier" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=diegoleteliers.minimalgold" +colors: + bg: "#212121" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 58.1 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 78.2 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 105.6 diff --git a/themes/minimalist.yaml b/themes/minimalist.yaml index fd7a635a..d530872f 100644 --- a/themes/minimalist.yaml +++ b/themes/minimalist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bchadwic.minimalist-theme-bchadwic" version: "0.0.2" installs: 253 + rating: 0 + ratings: 0 author: "bchadwic" repo: null url: "https://marketplace.visualstudio.com/items?itemName=bchadwic.minimalist-theme-bchadwic" diff --git a/themes/minimalistic-dark-theme.yaml b/themes/minimalistic-dark-theme.yaml index d97ab607..c0fefd8e 100644 --- a/themes/minimalistic-dark-theme.yaml +++ b/themes/minimalistic-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Lerskk.minimalistic-dark-theme" version: "0.0.11" installs: 240 + rating: 0 + ratings: 0 author: "Lerskk" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Lerskk.minimalistic-dark-theme" diff --git a/themes/minimalisticdarktheme.yaml b/themes/minimalisticdarktheme.yaml index aa1f0037..71cbedca 100644 --- a/themes/minimalisticdarktheme.yaml +++ b/themes/minimalisticdarktheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MiguelLuisHernandezBrocat.minimalisticdarktheme" version: "0.0.1" installs: 254 + rating: 0 + ratings: 0 author: "Miguel Luis HernandezBrocat" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MiguelLuisHernandezBrocat.minimalisticdarktheme" diff --git a/themes/minimalistik.yaml b/themes/minimalistik.yaml index 1e4445ff..76e86e4e 100644 --- a/themes/minimalistik.yaml +++ b/themes/minimalistik.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LeonardoKist.minimalistik-theme" version: "0.0.1" installs: 8437 + rating: 0 + ratings: 0 author: "Leonardo Kist" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LeonardoKist.minimalistik-theme" diff --git a/themes/minimalred.yaml b/themes/minimalred.yaml index f5b94cd7..38d0196b 100644 --- a/themes/minimalred.yaml +++ b/themes/minimalred.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "psykeroe.psykeroe-minimalred-theme" version: "0.0.2" installs: 53 + rating: 0 + ratings: 0 author: "psykeroe" repo: "https://github.com/psykeroe/psykeroe-minimalred-theme" url: "https://marketplace.visualstudio.com/items?itemName=psykeroe.psykeroe-minimalred-theme" diff --git a/themes/miniml-dusk.yaml b/themes/miniml-dusk.yaml index 67f60932..00eeed22 100644 --- a/themes/miniml-dusk.yaml +++ b/themes/miniml-dusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pantherandcub.miniml" version: "4.3.0" installs: 395 + rating: 0 + ratings: 0 author: "pantherandcub" repo: "https://github.com/Panther-Cub/miniml" url: "https://marketplace.visualstudio.com/items?itemName=pantherandcub.miniml" diff --git a/themes/miniml-light.yaml b/themes/miniml-light.yaml index 2a18d1bf..64d6eed5 100644 --- a/themes/miniml-light.yaml +++ b/themes/miniml-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pantherandcub.miniml" version: "4.3.0" installs: 395 + rating: 0 + ratings: 0 author: "pantherandcub" repo: "https://github.com/Panther-Cub/miniml" url: "https://marketplace.visualstudio.com/items?itemName=pantherandcub.miniml" diff --git a/themes/miniml-midnight.yaml b/themes/miniml-midnight.yaml index 259a3e3d..b27483d8 100644 --- a/themes/miniml-midnight.yaml +++ b/themes/miniml-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pantherandcub.miniml" version: "4.3.0" installs: 395 + rating: 0 + ratings: 0 author: "pantherandcub" repo: "https://github.com/Panther-Cub/miniml" url: "https://marketplace.visualstudio.com/items?itemName=pantherandcub.miniml" diff --git a/themes/minimus.yaml b/themes/minimus.yaml index 13dabb37..e334d0c9 100644 --- a/themes/minimus.yaml +++ b/themes/minimus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "spaceinvadev.minimus-theme" version: "0.0.1" installs: 1187 + rating: 0 + ratings: 0 author: "Mauro Paternina" repo: "https://github.com/spaceinvadev/minimus-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=spaceinvadev.minimus-theme" diff --git a/themes/minitheme.yaml b/themes/minitheme.yaml index bf29029c..df07c792 100644 --- a/themes/minitheme.yaml +++ b/themes/minitheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Orobiti.orobiti" version: "1.0.0" installs: 282 + rating: 5 + ratings: 1 author: "Orobiti" repo: "https://github.com/MtheusR/MinimalTheme-Dark-VsCode" url: "https://marketplace.visualstudio.com/items?itemName=Orobiti.orobiti" diff --git a/themes/mink-dark-theme.yaml b/themes/mink-dark-theme.yaml index 7d6494f4..dae40637 100644 --- a/themes/mink-dark-theme.yaml +++ b/themes/mink-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "minken.dark-m-theme" version: "0.2.16" installs: 289 + rating: 0 + ratings: 0 author: "minken" repo: "git://https://github.com/magnushagglund/theme/repository" url: "https://marketplace.visualstudio.com/items?itemName=minken.dark-m-theme" diff --git a/themes/minokai-kalel.yaml b/themes/minokai-kalel.yaml index 6d1d0fcf..d62c946e 100644 --- a/themes/minokai-kalel.yaml +++ b/themes/minokai-kalel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gabrielvictordev.minokai" version: "0.1.0" installs: 77 + rating: 5 + ratings: 1 author: "gabrielvictordev" repo: "https://github.com/gabrielvictorjs/minokai" url: "https://marketplace.visualstudio.com/items?itemName=gabrielvictordev.minokai" diff --git a/themes/minone.yaml b/themes/minone.yaml index ae4b0456..4b27f679 100644 --- a/themes/minone.yaml +++ b/themes/minone.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "miguelravila.minone" version: "0.2.2" installs: 2386 + rating: 5 + ratings: 1 author: "miguelravila" repo: "https://github.com/MiguelRAvila/Minone" url: "https://marketplace.visualstudio.com/items?itemName=miguelravila.minone" diff --git a/themes/mint-chocolate.yaml b/themes/mint-chocolate.yaml index 23858684..05b84349 100644 --- a/themes/mint-chocolate.yaml +++ b/themes/mint-chocolate.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "onulu.mint-chocolate" version: "1.0.1" installs: 579 + rating: 5 + ratings: 1 author: "onulu" repo: "https://github.com/onulu/mint-chocolate-theme" url: "https://marketplace.visualstudio.com/items?itemName=onulu.mint-chocolate" diff --git a/themes/mint-dark.yaml b/themes/mint-dark.yaml index 1e2282e4..5150975c 100644 --- a/themes/mint-dark.yaml +++ b/themes/mint-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "marcbruederlin.mint-theme" version: "0.1.2" installs: 9169 + rating: 5 + ratings: 2 author: "Marc Brüderlin" repo: "https://github.com/marcbruederlin/vscode-mint-theme" url: "https://marketplace.visualstudio.com/items?itemName=marcbruederlin.mint-theme" diff --git a/themes/mintchoc-contrast.yaml b/themes/mintchoc-contrast.yaml index f7b083ae..f106d904 100644 --- a/themes/mintchoc-contrast.yaml +++ b/themes/mintchoc-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/mintchoc-light.yaml b/themes/mintchoc-light.yaml index 01328eb9..4578574c 100644 --- a/themes/mintchoc-light.yaml +++ b/themes/mintchoc-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/mintchoc.yaml b/themes/mintchoc.yaml index dc3a2532..3c0a0701 100644 --- a/themes/mintchoc.yaml +++ b/themes/mintchoc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/mintdark.yaml b/themes/mintdark.yaml index 8c03c036..8ae8b57e 100644 --- a/themes/mintdark.yaml +++ b/themes/mintdark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daniel-lvovsky.mintdark-theme" version: "0.0.1" installs: 2896 + rating: 5 + ratings: 1 author: "Daniel Lvovsky" repo: "https://github.com/DanielLvovsky/MintDark/issues" url: "https://marketplace.visualstudio.com/items?itemName=daniel-lvovsky.mintdark-theme" diff --git a/themes/minty-dark.yaml b/themes/minty-dark.yaml index 0fb28690..d1529b4e 100644 --- a/themes/minty-dark.yaml +++ b/themes/minty-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ShanukaKFernando.Minty" version: "1.0.2" installs: 186 + rating: 5 + ratings: 1 author: "Shanuka Kavinda" repo: "https://github.com/shanukavinda/Minty" url: "https://marketplace.visualstudio.com/items?itemName=ShanukaKFernando.Minty" diff --git a/themes/mirai.yaml b/themes/mirai.yaml index b2ddcbea..ddacb907 100644 --- a/themes/mirai.yaml +++ b/themes/mirai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Volskaya.irrelevant" version: "0.0.2" installs: 33 + rating: 0 + ratings: 0 author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" diff --git a/themes/mirajdev.yaml b/themes/mirajdev.yaml new file mode 100644 index 00000000..5eb131a7 --- /dev/null +++ b/themes/mirajdev.yaml @@ -0,0 +1,52 @@ +name: "mirajdev" +source: + marketplace_id: "mirajdev.mirajdev" + version: "0.0.1" + installs: 250 + rating: 0 + ratings: 0 + author: "mirajdev" + repo: "https://github.com/miraj-2302/mirajdev" + url: "https://marketplace.visualstudio.com/items?itemName=mirajdev.mirajdev" +colors: + bg: "#000000" + fg: "#B311CB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 26.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/miramare.yaml b/themes/miramare.yaml index f6375b8c..505286fc 100644 --- a/themes/miramare.yaml +++ b/themes/miramare.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FranciscoBach.miramare" version: "0.0.2" installs: 619 + rating: 5 + ratings: 3 author: "Francisco Bach" repo: "https://github.com/franbach/miramare-vscode" url: "https://marketplace.visualstudio.com/items?itemName=FranciscoBach.miramare" diff --git a/themes/mist-theme.yaml b/themes/mist-theme.yaml index fcab4e43..23579c8f 100644 --- a/themes/mist-theme.yaml +++ b/themes/mist-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "imalbert.conifer-theme" version: "2.4.3" installs: 1380 + rating: 5 + ratings: 3 author: "imalbert" repo: "https://github.com/imalbert/conifer-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=imalbert.conifer-theme" diff --git a/themes/mist.yaml b/themes/mist.yaml index 6f1ebf92..1e9c0456 100644 --- a/themes/mist.yaml +++ b/themes/mist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "florentrougier.misty" version: "0.1.0" installs: 346 + rating: 0 + ratings: 0 author: "Florent ROUGIER" repo: "https://github.com/Flo-Rougier/misty" url: "https://marketplace.visualstudio.com/items?itemName=florentrougier.misty" diff --git a/themes/misterioso.yaml b/themes/misterioso.yaml index d58f6bf6..febd3b56 100644 --- a/themes/misterioso.yaml +++ b/themes/misterioso.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rkcy.misterioso-theme" version: "0.1.0" installs: 58 + rating: 0 + ratings: 0 author: "Rakesh C" repo: "https://github.com/rkcy/misterioso-theme" url: "https://marketplace.visualstudio.com/items?itemName=rkcy.misterioso-theme" diff --git a/themes/misty-blue.yaml b/themes/misty-blue.yaml index 6c12252f..62770d51 100644 --- a/themes/misty-blue.yaml +++ b/themes/misty-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "d33f2gmbrsg2mlf32hg27to6utjbqm52vmxqbxml6x25odnimcoq.MistyBlue" version: "0.0.6" installs: 2319 + rating: 5 + ratings: 3 author: "Yashwanth Byalla" repo: null url: "https://marketplace.visualstudio.com/items?itemName=d33f2gmbrsg2mlf32hg27to6utjbqm52vmxqbxml6x25odnimcoq.MistyBlue" diff --git a/themes/mitaverse.yaml b/themes/mitaverse.yaml index a41468c7..24740ebc 100644 --- a/themes/mitaverse.yaml +++ b/themes/mitaverse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jipyyes.jipy-mitaverse" version: "0.1.2" installs: 162 + rating: 5 + ratings: 1 author: "Jipy" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Jipyyes.jipy-mitaverse" diff --git a/themes/mitsuri-kanroji.yaml b/themes/mitsuri-kanroji.yaml index ce9e2046..8af386cd 100644 --- a/themes/mitsuri-kanroji.yaml +++ b/themes/mitsuri-kanroji.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devLocifer.hashira-code-theme" version: "0.0.1" installs: 739 + rating: 5 + ratings: 1 author: "devLocifer" repo: "https://github.com/diazdjul19/hashira-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" diff --git a/themes/mitsuri.yaml b/themes/mitsuri.yaml new file mode 100644 index 00000000..474a8539 --- /dev/null +++ b/themes/mitsuri.yaml @@ -0,0 +1,52 @@ +name: "mitsuri" +source: + marketplace_id: "KonvSuu.mitsuri-theme" + version: "0.1.0" + installs: 78 + rating: 0 + ratings: 0 + author: "KonvSuu" + repo: "https://github.com/kovsu/mitsuri" + url: "https://marketplace.visualstudio.com/items?itemName=KonvSuu.mitsuri-theme" +colors: + bg: "#0F0D0E" + fg: "#F9F4DA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C5C5C5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 99.9 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 71.2 + brightBlack: 22.7 + brightRed: 39.3 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/mixed-solarized-light.yaml b/themes/mixed-solarized-light.yaml index b3999756..337096ef 100644 --- a/themes/mixed-solarized-light.yaml +++ b/themes/mixed-solarized-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "imkasen.vscode-solarized-light-enhanced" version: "0.6.3" installs: 52 + rating: 0 + ratings: 0 author: "Kasen" repo: "https://github.com/imkasen/vscode-solarized-light-enhanced" url: "https://marketplace.visualstudio.com/items?itemName=imkasen.vscode-solarized-light-enhanced" diff --git a/themes/mk-iceblack.yaml b/themes/mk-iceblack.yaml index 0fd34afb..a2ee0258 100644 --- a/themes/mk-iceblack.yaml +++ b/themes/mk-iceblack.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dev-mk02.theme-mk" version: "0.6.0" installs: 36 + rating: 0 + ratings: 0 author: "mk-02" repo: "https://github.com/leeminki02/theme-mk" url: "https://marketplace.visualstudio.com/items?itemName=dev-mk02.theme-mk" diff --git a/themes/mk-mono-dark.yaml b/themes/mk-mono-dark.yaml index b0a81e22..9ef6dc53 100644 --- a/themes/mk-mono-dark.yaml +++ b/themes/mk-mono-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mvtkvm.mk-mono" version: "1.0.0" installs: 968 + rating: 0 + ratings: 0 author: "MVTKVM" repo: "https://github.com/matkammusic/mk-mono" url: "https://marketplace.visualstudio.com/items?itemName=mvtkvm.mk-mono" diff --git a/themes/mkanet.yaml b/themes/mkanet.yaml index fb278d6a..b7ae25c1 100644 --- a/themes/mkanet.yaml +++ b/themes/mkanet.yaml @@ -1,30 +1,32 @@ name: "MKANET" source: - marketplace_id: "MKANET.mkanet-theme" - version: "0.1.9" - installs: 437 + marketplace_id: "MKANET.mkanet-theme-v2" + version: "1.0.2" + installs: 461 + rating: 0 + ratings: 0 author: "Michael K. Avanessian" - repo: "https://github.com/mkanet/MKANET-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=MKANET.mkanet-theme" + repo: "https://github.com/mkanet/MKANET-Theme-V2" + url: "https://marketplace.visualstudio.com/items?itemName=MKANET.mkanet-theme-v2" colors: bg: "#C0C0C0" fg: "#464668" black: "#000000" - red: "#C23621" - green: "#25BC24" - yellow: "#ADAD27" - blue: "#492EE1" - magenta: "#D338D3" - cyan: "#33BBC8" - white: "#CBCCCD" - brightBlack: "#818383" - brightRed: "#FC391F" - brightGreen: "#31E722" - brightYellow: "#EAEC23" - brightBlue: "#5833FF" - brightMagenta: "#F935F8" - brightCyan: "#14F0F0" - brightWhite: "#E9EBEB" + red: "#800000" + green: "#008000" + yellow: "#808000" + blue: "#000080" + magenta: "#800080" + cyan: "#008080" + white: "#C0C0C0" + brightBlack: "#808080" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0096FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" meta: mode: "light" accent: "pink" @@ -33,18 +35,18 @@ meta: contrast: fg: 54.5 black: 69.9 - red: 39.8 - green: 12.8 - yellow: 10.8 - blue: 49 - magenta: 29.7 - cyan: 9 + red: 56.8 + green: 38.5 + yellow: 32.6 + blue: 64.8 + magenta: 53.4 + cyan: 36.4 white: 0 - brightBlack: 29.5 - brightRed: 26.2 - brightGreen: 0 - brightYellow: 20.8 - brightBlue: 43.8 + brightBlack: 30.7 + brightRed: 28 + brightGreen: 16.7 + brightYellow: 32.9 + brightBlue: 20.8 brightMagenta: 19.4 - brightCyan: 13.9 - brightWhite: 24.8 + brightCyan: 22.4 + brightWhite: 38.1 diff --git a/themes/mkdeveloper-theme.yaml b/themes/mkdeveloper-theme.yaml index 19a7f334..23420f63 100644 --- a/themes/mkdeveloper-theme.yaml +++ b/themes/mkdeveloper-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mukunthan.mkdeveloper-theme" version: "0.0.1" installs: 145 + rating: 4 + ratings: 1 author: "mukunthan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mukunthan.mkdeveloper-theme" diff --git a/themes/mlv60-vintage-dark.yaml b/themes/mlv60-vintage-dark.yaml new file mode 100644 index 00000000..77c39bab --- /dev/null +++ b/themes/mlv60-vintage-dark.yaml @@ -0,0 +1,52 @@ +name: "mlv60-vintage-dark" +source: + marketplace_id: "mlv60.mlv60-vintage-dark" + version: "1.0.5" + installs: 139 + rating: 0 + ratings: 0 + author: "mlv60" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mlv60.mlv60-vintage-dark" +colors: + bg: "#010004" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 297 + pair: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/mocaccino-light.yaml b/themes/mocaccino-light.yaml index 88b53fb4..80295536 100644 --- a/themes/mocaccino-light.yaml +++ b/themes/mocaccino-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "unbotheredbill.mocaccino-light" version: "1.0.2" installs: 53 + rating: 5 + ratings: 1 author: "unbotheredbill" repo: "https://github.com/unbotheredbill/mocaccino-light" url: "https://marketplace.visualstudio.com/items?itemName=unbotheredbill.mocaccino-light" diff --git a/themes/moderate-dimm.yaml b/themes/moderate-dimm.yaml index e5fc39c3..a7e0c107 100644 --- a/themes/moderate-dimm.yaml +++ b/themes/moderate-dimm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ivnjey.theme-by-ivnjey" version: "0.0.4" installs: 18 + rating: 0 + ratings: 0 author: "Ivnjey" repo: "https://github.com/Ivnjey/theme-by-ivnjey" url: "https://marketplace.visualstudio.com/items?itemName=Ivnjey.theme-by-ivnjey" diff --git a/themes/modern-dracula-white.yaml b/themes/modern-dracula-white.yaml new file mode 100644 index 00000000..063a2124 --- /dev/null +++ b/themes/modern-dracula-white.yaml @@ -0,0 +1,52 @@ +name: "Modern Dracula | White" +source: + marketplace_id: "LucasLomiento.modern-dracula-theme" + version: "1.2.0" + installs: 760 + rating: 5 + ratings: 1 + author: "Lucas Lomiento" + repo: "https://github.com/LucasLomiento/modern-dracula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LucasLomiento.modern-dracula-theme" +colors: + bg: "#101012" + fg: "#F4F0E0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 97.4 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/modern-dracula.yaml b/themes/modern-dracula.yaml index 2e3d9ee3..e0db8b35 100644 --- a/themes/modern-dracula.yaml +++ b/themes/modern-dracula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LucasLomiento.modern-dracula-theme" version: "1.2.0" installs: 760 + rating: 5 + ratings: 1 author: "Lucas Lomiento" repo: "https://github.com/LucasLomiento/modern-dracula-theme" url: "https://marketplace.visualstudio.com/items?itemName=LucasLomiento.modern-dracula-theme" diff --git a/themes/modern-retro.yaml b/themes/modern-retro.yaml new file mode 100644 index 00000000..991c006c --- /dev/null +++ b/themes/modern-retro.yaml @@ -0,0 +1,52 @@ +name: "Modern-Retro" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#151E29" + fg: "#F5F5F5" + black: "#151E29" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FC4F83" + magenta: "#FC4F83" + cyan: "#29C3A0" + white: "#F5F5F5" + brightBlack: "#151E29" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FC4F83" + brightMagenta: "#FC4F83" + brightCyan: "#29C3A0" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "red" + hue: 254 + pair: null + contrast: + fg: 99.5 + black: 0 + red: 8.6 + green: 56.9 + yellow: 50.9 + blue: 42.1 + magenta: 42.1 + cyan: 56.9 + white: 99.5 + brightBlack: 0 + brightRed: 8.6 + brightGreen: 56.9 + brightYellow: 50.9 + brightBlue: 42.1 + brightMagenta: 42.1 + brightCyan: 56.9 + brightWhite: 99.5 diff --git a/themes/moderneclipse.yaml b/themes/moderneclipse.yaml index edb3196f..c5976aad 100644 --- a/themes/moderneclipse.yaml +++ b/themes/moderneclipse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Cydo.moderneclipse" version: "0.1.0" installs: 176 + rating: 0 + ratings: 0 author: "Cydo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Cydo.moderneclipse" diff --git a/themes/modernui-fork.yaml b/themes/modernui-fork.yaml index 39c44660..a3c2a38f 100644 --- a/themes/modernui-fork.yaml +++ b/themes/modernui-fork.yaml @@ -1,11 +1,13 @@ name: "ModernUI - Fork" source: - marketplace_id: "MrDope.mdDark" - version: "1.1.0" - installs: 28 - author: "MrDope" - repo: "https://github.com/DopeeDev/mdDarkTheme" - url: "https://marketplace.visualstudio.com/items?itemName=MrDope.mdDark" + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29917 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" colors: bg: "#171616" fg: "#D9D9D9" diff --git a/themes/modernui.yaml b/themes/modernui.yaml new file mode 100644 index 00000000..0d0ac6d1 --- /dev/null +++ b/themes/modernui.yaml @@ -0,0 +1,52 @@ +name: "ModernUI" +source: + marketplace_id: "gusluz.modernui" + version: "4.20.2" + installs: 154 + rating: 0 + ratings: 0 + author: "gus_luz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gusluz.modernui" +colors: + bg: "#171616" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 106.9 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 29.2 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/modest-pink.yaml b/themes/modest-pink.yaml index 20359174..3828b1df 100644 --- a/themes/modest-pink.yaml +++ b/themes/modest-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GabbyCostlow.modest-pink-theme" version: "0.0.1" installs: 137 + rating: 0 + ratings: 0 author: "Gabby Costlow" repo: "https://github.com/gcostlow/Modest-Pink-Theme" url: "https://marketplace.visualstudio.com/items?itemName=GabbyCostlow.modest-pink-theme" diff --git a/themes/modified-darker-material-theme.yaml b/themes/modified-darker-material-theme.yaml index daf09cd4..a6fc175b 100644 --- a/themes/modified-darker-material-theme.yaml +++ b/themes/modified-darker-material-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "k-r.modified-darker-material-theme" version: "0.0.1" installs: 839 + rating: 0 + ratings: 0 author: "k-r" repo: "https://github.com/KevinRamsunder/material-theme-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=k-r.modified-darker-material-theme" diff --git a/themes/modus-vivendi-tinted.yaml b/themes/modus-vivendi-tinted.yaml index b02d39b9..e806e809 100644 --- a/themes/modus-vivendi-tinted.yaml +++ b/themes/modus-vivendi-tinted.yaml @@ -1,50 +1,52 @@ name: "Modus Vivendi Tinted" source: - marketplace_id: "tukinami-seika.modus-t" - version: "0.0.1" - installs: 87 - author: "月波 清火" - repo: "https://github.com/tukinami/vscode-modus-t" - url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" + marketplace_id: "morokiane.modus-vivendi-tinted" + version: "0.0.5" + installs: 514 + rating: 0 + ratings: 0 + author: "morokiane" + repo: "https://github.com/Morokiane/Modus-Vivendi-Tinted-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=morokiane.modus-vivendi-tinted" colors: bg: "#0D0E1C" fg: "#FFFFFF" black: "#000000" - red: "#FF5F59" - green: "#44BC44" - yellow: "#D0BC00" - blue: "#2FAFFF" - magenta: "#FEACD0" - cyan: "#00D3D0" - white: "#A6A6A6" - brightBlack: "#595959" - brightRed: "#FF6B55" - brightGreen: "#00C06F" - brightYellow: "#FEC43F" - brightBlue: "#79A8FF" - brightMagenta: "#B6A0FF" - brightCyan: "#6AE4B9" - brightWhite: "#FFFFFF" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: mode: "dark" - accent: "orange" + accent: "pink" hue: 280 pair: null contrast: fg: 107.5 black: 0 - red: 45.9 + red: 27.3 green: 53.6 - yellow: 65.3 - blue: 54.6 - magenta: 70.6 - cyan: 67.5 - white: 53.7 - brightBlack: 17.3 - brightRed: 48.3 - brightGreen: 55.2 - brightYellow: 76 - brightBlue: 55.1 - brightMagenta: 58.1 - brightCyan: 77 - brightWhite: 107.5 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.2 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/moegi-black-zen.yaml b/themes/moegi-black-zen.yaml index 4cfc24f6..e083a801 100644 --- a/themes/moegi-black-zen.yaml +++ b/themes/moegi-black-zen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ddiu8081.moegi-theme" version: "0.7.1" installs: 36950 + rating: 5 + ratings: 22 author: "Diu" repo: "https://github.com/moegi-design/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" diff --git a/themes/moegi-black.yaml b/themes/moegi-black.yaml index 4d1248fd..557d83fa 100644 --- a/themes/moegi-black.yaml +++ b/themes/moegi-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ddiu8081.moegi-theme" version: "0.7.1" installs: 36950 + rating: 5 + ratings: 22 author: "Diu" repo: "https://github.com/moegi-design/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" diff --git a/themes/moegi-dark.yaml b/themes/moegi-dark.yaml index 7fc3b4e5..ce385771 100644 --- a/themes/moegi-dark.yaml +++ b/themes/moegi-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ddiu8081.moegi-theme" version: "0.7.1" installs: 36950 + rating: 5 + ratings: 22 author: "Diu" repo: "https://github.com/moegi-design/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" diff --git a/themes/moegi-dawn.yaml b/themes/moegi-dawn.yaml index e7e15920..777dede6 100644 --- a/themes/moegi-dawn.yaml +++ b/themes/moegi-dawn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ddiu8081.moegi-theme" version: "0.7.1" installs: 36950 + rating: 5 + ratings: 22 author: "Diu" repo: "https://github.com/moegi-design/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" diff --git a/themes/moegi-iris.yaml b/themes/moegi-iris.yaml index 88003fe2..b59b6644 100644 --- a/themes/moegi-iris.yaml +++ b/themes/moegi-iris.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ddiu8081.moegi-theme" version: "0.7.1" installs: 36950 + rating: 5 + ratings: 22 author: "Diu" repo: "https://github.com/moegi-design/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" diff --git a/themes/moegi-light.yaml b/themes/moegi-light.yaml index dd0d1249..ef9a5e05 100644 --- a/themes/moegi-light.yaml +++ b/themes/moegi-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ddiu8081.moegi-theme" version: "0.7.1" installs: 36950 + rating: 5 + ratings: 22 author: "Diu" repo: "https://github.com/moegi-design/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" diff --git a/themes/moegi-space.yaml b/themes/moegi-space.yaml index 93313aa9..48ab9584 100644 --- a/themes/moegi-space.yaml +++ b/themes/moegi-space.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ddiu8081.moegi-theme" version: "0.7.1" installs: 36950 + rating: 5 + ratings: 22 author: "Diu" repo: "https://github.com/moegi-design/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" diff --git a/themes/moin-acme.yaml b/themes/moin-acme.yaml index cc5857d9..0133c18d 100644 --- a/themes/moin-acme.yaml +++ b/themes/moin-acme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nwwdles.moin-theme" version: "1.2.2" installs: 1024 + rating: 5 + ratings: 1 author: "nwwdles" repo: "https://gitlab.com/nwwdles/vscode-moin-theme" url: "https://marketplace.visualstudio.com/items?itemName=nwwdles.moin-theme" diff --git a/themes/moin-dark.yaml b/themes/moin-dark.yaml index 97097170..733b8eb0 100644 --- a/themes/moin-dark.yaml +++ b/themes/moin-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nwwdles.moin-theme" version: "1.2.2" installs: 1024 + rating: 5 + ratings: 1 author: "nwwdles" repo: "https://gitlab.com/nwwdles/vscode-moin-theme" url: "https://marketplace.visualstudio.com/items?itemName=nwwdles.moin-theme" diff --git a/themes/moin-light.yaml b/themes/moin-light.yaml index ffebe544..570cf57b 100644 --- a/themes/moin-light.yaml +++ b/themes/moin-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nwwdles.moin-theme" version: "1.2.2" installs: 1024 + rating: 5 + ratings: 1 author: "nwwdles" repo: "https://gitlab.com/nwwdles/vscode-moin-theme" url: "https://marketplace.visualstudio.com/items?itemName=nwwdles.moin-theme" diff --git a/themes/moin-soft-dark.yaml b/themes/moin-soft-dark.yaml index a6284670..d091de5b 100644 --- a/themes/moin-soft-dark.yaml +++ b/themes/moin-soft-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nwwdles.moin-theme" version: "1.2.2" installs: 1024 + rating: 5 + ratings: 1 author: "nwwdles" repo: "https://gitlab.com/nwwdles/vscode-moin-theme" url: "https://marketplace.visualstudio.com/items?itemName=nwwdles.moin-theme" diff --git a/themes/mojito-pro-dark.yaml b/themes/mojito-pro-dark.yaml index 3101d181..910de458 100644 --- a/themes/mojito-pro-dark.yaml +++ b/themes/mojito-pro-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mishatoshi.mojito-pro-vscode-theme" version: "3.1.0" installs: 116 + rating: 5 + ratings: 1 author: "mishatoshi" repo: "https://github.com/mishatoshi/mojito-pro-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mishatoshi.mojito-pro-vscode-theme" diff --git a/themes/mojito-pro.yaml b/themes/mojito-pro.yaml index 3517c403..1ba392ec 100644 --- a/themes/mojito-pro.yaml +++ b/themes/mojito-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mishatoshi.mojito-pro-vscode-theme" version: "3.1.0" installs: 116 + rating: 5 + ratings: 1 author: "mishatoshi" repo: "https://github.com/mishatoshi/mojito-pro-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mishatoshi.mojito-pro-vscode-theme" diff --git a/themes/mokka-fork-darken-blue.yaml b/themes/mokka-fork-darken-blue.yaml index a2f4d629..eed7da52 100644 --- a/themes/mokka-fork-darken-blue.yaml +++ b/themes/mokka-fork-darken-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tsybko22.mokka-fork" version: "1.0.0" installs: 29 + rating: 0 + ratings: 0 author: "Ivan Tsybko" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tsybko22.mokka-fork" diff --git a/themes/mokka.yaml b/themes/mokka.yaml index 90d45710..761b1c94 100644 --- a/themes/mokka.yaml +++ b/themes/mokka.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tsybko22.mokka-fork" version: "1.0.0" installs: 29 + rating: 0 + ratings: 0 author: "Ivan Tsybko" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tsybko22.mokka-fork" diff --git a/themes/mol-lurity-theme-soft-fixed.yaml b/themes/mol-lurity-theme-soft-fixed.yaml index f4664201..f846ad25 100644 --- a/themes/mol-lurity-theme-soft-fixed.yaml +++ b/themes/mol-lurity-theme-soft-fixed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "malvee.molarity-theme" version: "2.0.5" installs: 307 + rating: 5 + ratings: 1 author: "malvee" repo: "https://github.com/0xMALVEE/molarity-theme" url: "https://marketplace.visualstudio.com/items?itemName=malvee.molarity-theme" diff --git a/themes/mol-lurity-theme.yaml b/themes/mol-lurity-theme.yaml index 2c2f6d33..fca8e6b3 100644 --- a/themes/mol-lurity-theme.yaml +++ b/themes/mol-lurity-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "malvee.molarity-theme" version: "2.0.5" installs: 307 + rating: 5 + ratings: 1 author: "malvee" repo: "https://github.com/0xMALVEE/molarity-theme" url: "https://marketplace.visualstudio.com/items?itemName=malvee.molarity-theme" diff --git a/themes/molarity-washed.yaml b/themes/molarity-washed.yaml index 2463ffbe..9c9820cb 100644 --- a/themes/molarity-washed.yaml +++ b/themes/molarity-washed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "malvee.molarity-theme" version: "2.0.5" installs: 307 + rating: 5 + ratings: 1 author: "malvee" repo: "https://github.com/0xMALVEE/molarity-theme" url: "https://marketplace.visualstudio.com/items?itemName=malvee.molarity-theme" diff --git a/themes/molineux.yaml b/themes/molineux.yaml index 0f75dfa8..3968a5cf 100644 --- a/themes/molineux.yaml +++ b/themes/molineux.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "archiehicklin.molineux" version: "0.0.1" installs: 1012 + rating: 0 + ratings: 0 author: "Archie Hicklin" repo: "https://github.com/ArchieHicklin/Molineux-Theme-for-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=archiehicklin.molineux" diff --git a/themes/moloch.yaml b/themes/moloch.yaml index 42133517..58b283dc 100644 --- a/themes/moloch.yaml +++ b/themes/moloch.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CyberBoost.themesmith" version: "0.1.1" installs: 33 + rating: 0 + ratings: 0 author: "CyberBoost" repo: "https://github.com/bernie-gengel/themesmith" url: "https://marketplace.visualstudio.com/items?itemName=CyberBoost.themesmith" diff --git a/themes/molokai-darker.yaml b/themes/molokai-darker.yaml index 60074341..5b05ef9c 100644 --- a/themes/molokai-darker.yaml +++ b/themes/molokai-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gabrielcaussi.molokai-dark" version: "1.1.0" installs: 2808 + rating: 5 + ratings: 1 author: "Gabriel Caussi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gabrielcaussi.molokai-dark" diff --git a/themes/molten-aurora.yaml b/themes/molten-aurora.yaml index 8b55fb7b..b8ea0d5f 100644 --- a/themes/molten-aurora.yaml +++ b/themes/molten-aurora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "InnaSodri.molten-aurora-theme" version: "0.0.4" installs: 37 + rating: 0 + ratings: 0 author: "Inna Sodri" repo: "https://example.com/inna/molten-aurora-theme" url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.molten-aurora-theme" diff --git a/themes/monaco-paulsevere-color-theme.yaml b/themes/monaco-paulsevere-color-theme.yaml index 7c2e7065..c94167b6 100644 --- a/themes/monaco-paulsevere-color-theme.yaml +++ b/themes/monaco-paulsevere-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PaulSevere.paulsevere" version: "0.0.1" installs: 7 + rating: 0 + ratings: 0 author: "Paul Severe" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PaulSevere.paulsevere" diff --git a/themes/monet-impressionism.yaml b/themes/monet-impressionism.yaml new file mode 100644 index 00000000..64fe6dc7 --- /dev/null +++ b/themes/monet-impressionism.yaml @@ -0,0 +1,52 @@ +name: "Monet-Impressionism" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#262626" + fg: "#C3C1BA" + black: "#262626" + red: "#F14444" + green: "#29C3A0" + yellow: "#D29922" + blue: "#D87757" + magenta: "#D87757" + cyan: "#29C3A0" + white: "#C3C1BA" + brightBlack: "#262626" + brightRed: "#F14444" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#D87757" + brightMagenta: "#D87757" + brightCyan: "#29C3A0" + brightWhite: "#C3C1BA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 66.1 + black: 0 + red: 35.2 + green: 55.6 + yellow: 49.6 + blue: 40.6 + magenta: 40.6 + cyan: 55.6 + white: 66.1 + brightBlack: 0 + brightRed: 35.2 + brightGreen: 55.6 + brightYellow: 49.6 + brightBlue: 40.6 + brightMagenta: 40.6 + brightCyan: 55.6 + brightWhite: 66.1 diff --git a/themes/monfika.yaml b/themes/monfika.yaml index 28eecf1f..7147bd8d 100644 --- a/themes/monfika.yaml +++ b/themes/monfika.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "markosmk.monfika-pro" version: "0.0.2" installs: 1771 + rating: 5 + ratings: 1 author: "markosmk" repo: "https://github.com/markosmk/monfika-pro" url: "https://marketplace.visualstudio.com/items?itemName=markosmk.monfika-pro" diff --git a/themes/mono-atom.yaml b/themes/mono-atom.yaml index abf69bf9..18340495 100644 --- a/themes/mono-atom.yaml +++ b/themes/mono-atom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.mono-atom" version: "0.0.3" installs: 14191 + rating: 4 + ratings: 2 author: "Avetis" repo: "https://github.com/AvetisDN/mono-atom-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.mono-atom" diff --git a/themes/mono-bw.yaml b/themes/mono-bw.yaml index 5e23c7f7..446338f4 100644 --- a/themes/mono-bw.yaml +++ b/themes/mono-bw.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anfeket.mono-bw" version: "1.0.0" installs: 679 + rating: 5 + ratings: 1 author: "Anfeket" repo: null url: "https://marketplace.visualstudio.com/items?itemName=anfeket.mono-bw" diff --git a/themes/mono-cl.yaml b/themes/mono-cl.yaml index 4986c3f2..fb30fc66 100644 --- a/themes/mono-cl.yaml +++ b/themes/mono-cl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arx9781.mono-cl" version: "1.0.0" installs: 1680 + rating: 5 + ratings: 1 author: "arx9781" repo: null url: "https://marketplace.visualstudio.com/items?itemName=arx9781.mono-cl" diff --git a/themes/mono-dark.yaml b/themes/mono-dark.yaml new file mode 100644 index 00000000..6cbb3243 --- /dev/null +++ b/themes/mono-dark.yaml @@ -0,0 +1,52 @@ +name: "mono dark" +source: + marketplace_id: "StepanVanzuriak.mono" + version: "0.0.2" + installs: 57812 + rating: 5 + ratings: 2 + author: "Stepan Vanzuriak" + repo: "https://github.com/stepanvanzuriak/mono" + url: "https://marketplace.visualstudio.com/items?itemName=StepanVanzuriak.mono" +colors: + bg: "#111111" + fg: "#BBBBBB" + black: "#BBBBBB" + red: "#8E8E8E" + green: "#999999" + yellow: "#777777" + blue: "#B0B0B0" + magenta: "#A4A4A4" + cyan: "#828282" + white: "#6C6C6C" + brightBlack: "#BBBBBB" + brightRed: "#8E8E8E" + brightGreen: "#999999" + brightYellow: "#777777" + brightBlue: "#B0B0B0" + brightMagenta: "#A4A4A4" + brightCyan: "#828282" + brightWhite: "#6C6C6C" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 65.2 + black: 65.2 + red: 41.1 + green: 46.7 + yellow: 30.1 + blue: 59 + magenta: 52.5 + cyan: 35.2 + white: 25.1 + brightBlack: 65.2 + brightRed: 41.1 + brightGreen: 46.7 + brightYellow: 30.1 + brightBlue: 59 + brightMagenta: 52.5 + brightCyan: 35.2 + brightWhite: 25.1 diff --git a/themes/mono-next.yaml b/themes/mono-next.yaml new file mode 100644 index 00000000..3c571337 --- /dev/null +++ b/themes/mono-next.yaml @@ -0,0 +1,52 @@ +name: "Mono Next" +source: + marketplace_id: "MonoNext.mono-next" + version: "1.0.1" + installs: 1438 + rating: 5 + ratings: 1 + author: "MonoNext" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MonoNext.mono-next" +colors: + bg: "#222222" + fg: "#F7F1FF" + black: "#363537" + red: "#FC618D" + green: "#7BD88F" + yellow: "#FCE566" + blue: "#FD9353" + magenta: "#948AE3" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#FCE566" + brightBlue: "#FD9353" + brightMagenta: "#948AE3" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 97.8 + black: 0 + red: 44.9 + green: 68.8 + yellow: 88.2 + blue: 56.5 + magenta: 42.8 + cyan: 68.6 + white: 97.8 + brightBlack: 21.4 + brightRed: 44.9 + brightGreen: 68.8 + brightYellow: 88.2 + brightBlue: 56.5 + brightMagenta: 42.8 + brightCyan: 68.6 + brightWhite: 97.8 diff --git a/themes/mono-white.yaml b/themes/mono-white.yaml new file mode 100644 index 00000000..52b827f8 --- /dev/null +++ b/themes/mono-white.yaml @@ -0,0 +1,52 @@ +name: "mono white" +source: + marketplace_id: "StepanVanzuriak.mono" + version: "0.0.2" + installs: 57812 + rating: 5 + ratings: 2 + author: "Stepan Vanzuriak" + repo: "https://github.com/stepanvanzuriak/mono" + url: "https://marketplace.visualstudio.com/items?itemName=StepanVanzuriak.mono" +colors: + bg: "#F0F0F0" + fg: "#0F0F0F" + black: "#0F0F0F" + red: "#4B4B4B" + green: "#3C3C3C" + yellow: "#696969" + blue: "#1E1E1E" + magenta: "#2D2D2D" + cyan: "#5A5A5A" + white: "#787878" + brightBlack: "#0F0F0F" + brightRed: "#4B4B4B" + brightGreen: "#3C3C3C" + brightYellow: "#696969" + brightBlue: "#1E1E1E" + brightMagenta: "#2D2D2D" + brightCyan: "#5A5A5A" + brightWhite: "#787878" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 96.6 + black: 96.6 + red: 81 + green: 86.6 + yellow: 68.5 + blue: 94.7 + magenta: 91.4 + cyan: 75 + white: 61.7 + brightBlack: 96.6 + brightRed: 81 + brightGreen: 86.6 + brightYellow: 68.5 + brightBlue: 94.7 + brightMagenta: 91.4 + brightCyan: 75 + brightWhite: 61.7 diff --git a/themes/monochai-dark.yaml b/themes/monochai-dark.yaml index fdd649c7..76f95350 100644 --- a/themes/monochai-dark.yaml +++ b/themes/monochai-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "381181295.monochai" version: "1.0.5" installs: 213 + rating: 0 + ratings: 0 author: "381181295" repo: "https://github.com/381181295/monochai" url: "https://marketplace.visualstudio.com/items?itemName=381181295.monochai" diff --git a/themes/monochromator-dark-plain.yaml b/themes/monochromator-dark-plain.yaml index af48f39c..3dddf588 100644 --- a/themes/monochromator-dark-plain.yaml +++ b/themes/monochromator-dark-plain.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "beem.monochromator" version: "0.31.1" installs: 555 + rating: 5 + ratings: 1 author: "Josias Beem" repo: "https://codeberg.org/beem/monochromator" url: "https://marketplace.visualstudio.com/items?itemName=beem.monochromator" diff --git a/themes/monochromator-light-plain.yaml b/themes/monochromator-light-plain.yaml index 8b54ac6b..d2cfa3c4 100644 --- a/themes/monochromator-light-plain.yaml +++ b/themes/monochromator-light-plain.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "beem.monochromator" version: "0.31.1" installs: 555 + rating: 5 + ratings: 1 author: "Josias Beem" repo: "https://codeberg.org/beem/monochromator" url: "https://marketplace.visualstudio.com/items?itemName=beem.monochromator" diff --git a/themes/monochrome-dark-amplified.yaml b/themes/monochrome-dark-amplified.yaml index e86b206c..20ece3d4 100644 --- a/themes/monochrome-dark-amplified.yaml +++ b/themes/monochrome-dark-amplified.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" installs: 47953 + rating: 4.38 + ratings: 8 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" diff --git a/themes/monochrome-dark-cool-gray.yaml b/themes/monochrome-dark-cool-gray.yaml index 5dab7e09..052ce4d9 100644 --- a/themes/monochrome-dark-cool-gray.yaml +++ b/themes/monochrome-dark-cool-gray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" installs: 47953 + rating: 4.38 + ratings: 8 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" diff --git a/themes/monochrome-dark-gray.yaml b/themes/monochrome-dark-gray.yaml index 32d29589..b7a2754d 100644 --- a/themes/monochrome-dark-gray.yaml +++ b/themes/monochrome-dark-gray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ccssmnn.monochrome-tailwind-colors" version: "1.0.0" installs: 1193 + rating: 0 + ratings: 0 author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" diff --git a/themes/monochrome-dark-indigo.yaml b/themes/monochrome-dark-indigo.yaml index 95cdf960..79bd3ea9 100644 --- a/themes/monochrome-dark-indigo.yaml +++ b/themes/monochrome-dark-indigo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" installs: 47953 + rating: 4.38 + ratings: 8 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" diff --git a/themes/monochrome-dark-neutral.yaml b/themes/monochrome-dark-neutral.yaml index b2467876..836e39b1 100644 --- a/themes/monochrome-dark-neutral.yaml +++ b/themes/monochrome-dark-neutral.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ccssmnn.monochrome-tailwind-colors" version: "1.0.0" installs: 1193 + rating: 0 + ratings: 0 author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" diff --git a/themes/monochrome-dark-slate.yaml b/themes/monochrome-dark-slate.yaml index c825c6c9..a57e9ebc 100644 --- a/themes/monochrome-dark-slate.yaml +++ b/themes/monochrome-dark-slate.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ccssmnn.monochrome-tailwind-colors" version: "1.0.0" installs: 1193 + rating: 0 + ratings: 0 author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" diff --git a/themes/monochrome-dark-stone.yaml b/themes/monochrome-dark-stone.yaml index 9ac1b996..8238dda9 100644 --- a/themes/monochrome-dark-stone.yaml +++ b/themes/monochrome-dark-stone.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ccssmnn.monochrome-tailwind-colors" version: "1.0.0" installs: 1193 + rating: 0 + ratings: 0 author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" diff --git a/themes/monochrome-dark-subtle.yaml b/themes/monochrome-dark-subtle.yaml index b211f941..6177d493 100644 --- a/themes/monochrome-dark-subtle.yaml +++ b/themes/monochrome-dark-subtle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" installs: 47953 + rating: 4.38 + ratings: 8 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" diff --git a/themes/monochrome-dark-zinc.yaml b/themes/monochrome-dark-zinc.yaml index ff7e9b55..3d3a797c 100644 --- a/themes/monochrome-dark-zinc.yaml +++ b/themes/monochrome-dark-zinc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ccssmnn.monochrome-tailwind-colors" version: "1.0.0" installs: 1193 + rating: 0 + ratings: 0 author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" diff --git a/themes/monochrome-dark.yaml b/themes/monochrome-dark.yaml index 4cb0fbbf..378a8bc0 100644 --- a/themes/monochrome-dark.yaml +++ b/themes/monochrome-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" installs: 47953 + rating: 4.38 + ratings: 8 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" diff --git a/themes/monochrome-github-edition.yaml b/themes/monochrome-github-edition.yaml index 78deca4b..35878a9b 100644 --- a/themes/monochrome-github-edition.yaml +++ b/themes/monochrome-github-edition.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "toufiqahmedshr.monochrome-theme" version: "1.1.0" installs: 3264 + rating: 3.33 + ratings: 3 author: "Toufiq Ahmed" repo: "https://github.com/toufiq-ahmed/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=toufiqahmedshr.monochrome-theme" diff --git a/themes/monochrome-light-amplified.yaml b/themes/monochrome-light-amplified.yaml index d873b746..0466df92 100644 --- a/themes/monochrome-light-amplified.yaml +++ b/themes/monochrome-light-amplified.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" installs: 47953 + rating: 4.38 + ratings: 8 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" diff --git a/themes/monochrome-light-cool-gray.yaml b/themes/monochrome-light-cool-gray.yaml index a0089c3c..02be3aa2 100644 --- a/themes/monochrome-light-cool-gray.yaml +++ b/themes/monochrome-light-cool-gray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" installs: 47953 + rating: 4.38 + ratings: 8 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" diff --git a/themes/monochrome-light-gray.yaml b/themes/monochrome-light-gray.yaml index b471aebb..82ab9ade 100644 --- a/themes/monochrome-light-gray.yaml +++ b/themes/monochrome-light-gray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ccssmnn.monochrome-tailwind-colors" version: "1.0.0" installs: 1193 + rating: 0 + ratings: 0 author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" diff --git a/themes/monochrome-light-indigo.yaml b/themes/monochrome-light-indigo.yaml index d29e6e26..84d797ea 100644 --- a/themes/monochrome-light-indigo.yaml +++ b/themes/monochrome-light-indigo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" installs: 47953 + rating: 4.38 + ratings: 8 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" diff --git a/themes/monochrome-light-neutral.yaml b/themes/monochrome-light-neutral.yaml index 368eb864..6aad181c 100644 --- a/themes/monochrome-light-neutral.yaml +++ b/themes/monochrome-light-neutral.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ccssmnn.monochrome-tailwind-colors" version: "1.0.0" installs: 1193 + rating: 0 + ratings: 0 author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" diff --git a/themes/monochrome-light-slate.yaml b/themes/monochrome-light-slate.yaml index 39f9fa20..7541b2f2 100644 --- a/themes/monochrome-light-slate.yaml +++ b/themes/monochrome-light-slate.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ccssmnn.monochrome-tailwind-colors" version: "1.0.0" installs: 1193 + rating: 0 + ratings: 0 author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" diff --git a/themes/monochrome-light-stone.yaml b/themes/monochrome-light-stone.yaml index a2549585..1bac4182 100644 --- a/themes/monochrome-light-stone.yaml +++ b/themes/monochrome-light-stone.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ccssmnn.monochrome-tailwind-colors" version: "1.0.0" installs: 1193 + rating: 0 + ratings: 0 author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" diff --git a/themes/monochrome-light-subtle.yaml b/themes/monochrome-light-subtle.yaml index aa60d81c..0e41ae2b 100644 --- a/themes/monochrome-light-subtle.yaml +++ b/themes/monochrome-light-subtle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" installs: 47953 + rating: 4.38 + ratings: 8 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" diff --git a/themes/monochrome-light-zinc.yaml b/themes/monochrome-light-zinc.yaml index 84b3cfd5..60e925ee 100644 --- a/themes/monochrome-light-zinc.yaml +++ b/themes/monochrome-light-zinc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ccssmnn.monochrome-tailwind-colors" version: "1.0.0" installs: 1193 + rating: 0 + ratings: 0 author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" diff --git a/themes/monochrome-light.yaml b/themes/monochrome-light.yaml index fa4d5803..9c98db9c 100644 --- a/themes/monochrome-light.yaml +++ b/themes/monochrome-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anotherglitchinthematrix.monochrome" version: "2.4.3" installs: 47953 + rating: 4.38 + ratings: 8 author: "glitch" repo: "https://github.com/anotherglitchinthematrix/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" diff --git a/themes/monochrome.yaml b/themes/monochrome.yaml index 0d55fc65..2250d43b 100644 --- a/themes/monochrome.yaml +++ b/themes/monochrome.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "toufiqahmedshr.monochrome-theme" version: "1.1.0" installs: 3264 + rating: 3.33 + ratings: 3 author: "Toufiq Ahmed" repo: "https://github.com/toufiq-ahmed/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=toufiqahmedshr.monochrome-theme" diff --git a/themes/monocious-color-theme.yaml b/themes/monocious-color-theme.yaml index 3bf7328b..54498f78 100644 --- a/themes/monocious-color-theme.yaml +++ b/themes/monocious-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vinihvc.monocious" version: "1.0.0" installs: 84 + rating: 0 + ratings: 0 author: "Vinicius Vicentini" repo: "https://github.com/vinihvc/monocious" url: "https://marketplace.visualstudio.com/items?itemName=vinihvc.monocious" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 106.1 black: 0 diff --git a/themes/monoclean-light.yaml b/themes/monoclean-light.yaml index 151ebcc6..11b93cfd 100644 --- a/themes/monoclean-light.yaml +++ b/themes/monoclean-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "barelyreaper.monoclean" version: "0.1.7" installs: 555 + rating: 0 + ratings: 0 author: "Reaper" repo: "https://github.com/barelyhuman/vscode-monoclean-theme" url: "https://marketplace.visualstudio.com/items?itemName=barelyreaper.monoclean" diff --git a/themes/monocr.yaml b/themes/monocr.yaml index 7ede4634..534e34b3 100644 --- a/themes/monocr.yaml +++ b/themes/monocr.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shwuy.zhxo-themes" version: "2.0.1" installs: 1481 + rating: 5 + ratings: 4 author: "shwuy" repo: "https://github.com/sxhk0/.theme" url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" diff --git a/themes/monocraft.yaml b/themes/monocraft.yaml index 2985710b..98b5bb93 100644 --- a/themes/monocraft.yaml +++ b/themes/monocraft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cdztt.monocraft" version: "2.1.0" installs: 3970 + rating: 0 + ratings: 0 author: "cdztt" repo: "https://github.com/cdztt/monocraft-VSCodeColorTheme" url: "https://marketplace.visualstudio.com/items?itemName=cdztt.monocraft" diff --git a/themes/monoeye.yaml b/themes/monoeye.yaml index a3c896ec..1f121ac0 100644 --- a/themes/monoeye.yaml +++ b/themes/monoeye.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EyemonoRin.monoeye" version: "0.1.6" installs: 667 + rating: 5 + ratings: 2 author: "Eyemono Rin" repo: "https://github.com/eyemono/monoeye-vscode" url: "https://marketplace.visualstudio.com/items?itemName=EyemonoRin.monoeye" diff --git a/themes/monokai-classic.yaml b/themes/monokai-classic.yaml new file mode 100644 index 00000000..97dfe0a9 --- /dev/null +++ b/themes/monokai-classic.yaml @@ -0,0 +1,52 @@ +name: "Monokai Classic" +source: + marketplace_id: "shaobeichen.gradient-theme" + version: "1.19.0" + installs: 24140 + rating: 4.71 + ratings: 7 + author: "shaobeichen" + repo: "https://github.com/shaobeichen/gradient-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shaobeichen.gradient-theme" +colors: + bg: "#272822" + fg: "#FDFFF1" + black: "#3B3C35" + red: "#F92672" + green: "#A6E22E" + yellow: "#E6DB74" + blue: "#FD971F" + magenta: "#AE81FF" + cyan: "#66D9EF" + white: "#FDFFF1" + brightBlack: "#6E7066" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E6DB74" + brightBlue: "#FD971F" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#FDFFF1" +meta: + mode: "dark" + accent: "red" + hue: 115 + pair: null + contrast: + fg: 103.6 + black: 0 + red: 35 + green: 74.7 + yellow: 79.7 + blue: 56.4 + magenta: 44.2 + cyan: 71.1 + white: 103.6 + brightBlack: 23.6 + brightRed: 35 + brightGreen: 74.7 + brightYellow: 79.7 + brightBlue: 56.4 + brightMagenta: 44.2 + brightCyan: 71.1 + brightWhite: 103.6 diff --git a/themes/monokai-color-theme-1.yaml b/themes/monokai-color-theme-1.yaml index e115215d..33a70583 100644 --- a/themes/monokai-color-theme-1.yaml +++ b/themes/monokai-color-theme-1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "datvo.theme-monokai-v2" version: "1.0.4" installs: 1745 + rating: 5 + ratings: 1 author: "Dat Vo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=datvo.theme-monokai-v2" diff --git a/themes/monokai-dark-green.yaml b/themes/monokai-dark-green.yaml index 87528ef0..4ce5a091 100644 --- a/themes/monokai-dark-green.yaml +++ b/themes/monokai-dark-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alvaro-israel-nunes-leite.theme-monokai-dark-green" version: "0.1.4" installs: 4830 + rating: 0 + ratings: 0 author: "Alvaro Israel Nunes Leite" repo: "https://github.com/AlvaroIsrael/monokai-dark-green" url: "https://marketplace.visualstudio.com/items?itemName=alvaro-israel-nunes-leite.theme-monokai-dark-green" diff --git a/themes/monokai-dark.yaml b/themes/monokai-dark.yaml index eb698288..9b578687 100644 --- a/themes/monokai-dark.yaml +++ b/themes/monokai-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Treevel.monokai-dark-theme" version: "0.0.3" installs: 445 + rating: 0 + ratings: 0 author: "Treevel" repo: "https://github.com/treevel/vscode-theme-monokai-dark" url: "https://marketplace.visualstudio.com/items?itemName=Treevel.monokai-dark-theme" diff --git a/themes/monokai-deep-dark.yaml b/themes/monokai-deep-dark.yaml index a03ee470..588a7fd1 100644 --- a/themes/monokai-deep-dark.yaml +++ b/themes/monokai-deep-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JaimishLakhani.superman-theme" version: "1.2.0" installs: 123 + rating: 0 + ratings: 0 author: "Jaimish Lakhani" repo: "https://github.com/jaimishlakhani/superman-theme" url: "https://marketplace.visualstudio.com/items?itemName=JaimishLakhani.superman-theme" diff --git a/themes/monokai-deep-ocean.yaml b/themes/monokai-deep-ocean.yaml index 5a0bf3c2..8128a988 100644 --- a/themes/monokai-deep-ocean.yaml +++ b/themes/monokai-deep-ocean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mimo.monokai-rain" version: "0.4.0" installs: 807 + rating: 5 + ratings: 1 author: "Michelle Mounde" repo: "https://github.com/michellemounde/monokai-rainstorm" url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" diff --git a/themes/monokai-drizzle.yaml b/themes/monokai-drizzle.yaml index af6e52df..18381daa 100644 --- a/themes/monokai-drizzle.yaml +++ b/themes/monokai-drizzle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mimo.monokai-rain" version: "0.4.0" installs: 807 + rating: 5 + ratings: 1 author: "Michelle Mounde" repo: "https://github.com/michellemounde/monokai-rainstorm" url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" diff --git a/themes/monokai-extended.yaml b/themes/monokai-extended.yaml index 5f049bcc..a08cec8a 100644 --- a/themes/monokai-extended.yaml +++ b/themes/monokai-extended.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RajPal.monokai-extended" version: "2.0.0" installs: 228 + rating: 5 + ratings: 1 author: "Raj Pal" repo: null url: "https://marketplace.visualstudio.com/items?itemName=RajPal.monokai-extended" diff --git a/themes/monokai-faded.yaml b/themes/monokai-faded.yaml index 1838a2f0..2dab7326 100644 --- a/themes/monokai-faded.yaml +++ b/themes/monokai-faded.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dionmunk.theme-monokai-faded" version: "1.0.4" installs: 1829 + rating: 5 + ratings: 1 author: "Dion Munk" repo: "https://github.com/dionmunk/vscode-theme-monokai-faded" url: "https://marketplace.visualstudio.com/items?itemName=dionmunk.theme-monokai-faded" diff --git a/themes/monokai-flow.yaml b/themes/monokai-flow.yaml index 38ac2485..8bf80eda 100644 --- a/themes/monokai-flow.yaml +++ b/themes/monokai-flow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MaheshSinghChouhan.monokai-mahesh" version: "0.0.1" installs: 229 + rating: 0 + ratings: 0 author: "Mahesh Singh Chouhan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MaheshSinghChouhan.monokai-mahesh" diff --git a/themes/monokai-grey.yaml b/themes/monokai-grey.yaml index 5a9dc99e..da30a69f 100644 --- a/themes/monokai-grey.yaml +++ b/themes/monokai-grey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LaurentTreguier.monokai-grey" version: "0.2.8" installs: 5164 + rating: 5 + ratings: 1 author: "Laurent Tréguier" repo: "https://github.com/LaurentTreguier/vscode-monokai-grey" url: "https://marketplace.visualstudio.com/items?itemName=LaurentTreguier.monokai-grey" diff --git a/themes/monokai-grs.yaml b/themes/monokai-grs.yaml index 6dc92e0d..8264b424 100644 --- a/themes/monokai-grs.yaml +++ b/themes/monokai-grs.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ChrisFreeze.monokai-grs-elixir" version: "0.1.0" installs: 1 + rating: 0 + ratings: 0 author: "Chris Freeze" repo: "https://github.com/cjfreeze/Monokai-GRS" url: "https://marketplace.visualstudio.com/items?itemName=ChrisFreeze.monokai-grs-elixir" diff --git a/themes/monokai-hc-color-theme.yaml b/themes/monokai-hc-color-theme.yaml index 10cf38db..3a758bfa 100644 --- a/themes/monokai-hc-color-theme.yaml +++ b/themes/monokai-hc-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iZDT.theme-monokai-hc" version: "1.0.1" installs: 5113 + rating: 5 + ratings: 1 author: "iZDT" repo: "https://github.com/Simple-Tools/VSCode-MonokaiHC-theme" url: "https://marketplace.visualstudio.com/items?itemName=iZDT.theme-monokai-hc" diff --git a/themes/monokai-japan-color-theme.yaml b/themes/monokai-japan-color-theme.yaml index 2f5bfc34..afc2c7a6 100644 --- a/themes/monokai-japan-color-theme.yaml +++ b/themes/monokai-japan-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Minorin.theme-monokai-japan" version: "1.0.1" installs: 2921 + rating: 5 + ratings: 1 author: "Minorin" repo: "https://github.com/minorin22/Monokai-Japan" url: "https://marketplace.visualstudio.com/items?itemName=Minorin.theme-monokai-japan" diff --git a/themes/monokai-midnight.yaml b/themes/monokai-midnight.yaml index 7b32a108..f68cf4d3 100644 --- a/themes/monokai-midnight.yaml +++ b/themes/monokai-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "syahrizaldev.monokai-midnight" version: "1.5.2" installs: 314 + rating: 0 + ratings: 0 author: "Syahrizal" repo: "https://github.com/syahrizaldev/monokai-midnight" url: "https://marketplace.visualstudio.com/items?itemName=syahrizaldev.monokai-midnight" diff --git a/themes/monokai-minimal.yaml b/themes/monokai-minimal.yaml new file mode 100644 index 00000000..2e287914 --- /dev/null +++ b/themes/monokai-minimal.yaml @@ -0,0 +1,52 @@ +name: "monokai-minimal" +source: + marketplace_id: "auanK.monokai-minimal" + version: "0.0.0" + installs: 216 + rating: 0 + ratings: 0 + author: "auanK" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=auanK.monokai-minimal" +colors: + bg: "#0F0F0F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/monokai-night-z-blue.yaml b/themes/monokai-night-z-blue.yaml index 931e22f6..6a5718a5 100644 --- a/themes/monokai-night-z-blue.yaml +++ b/themes/monokai-night-z-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZivKaplan.monokai-night-z" version: "1.3.2" installs: 876 + rating: 5 + ratings: 2 author: "Ziv Kaplan" repo: "https://github.com/zivkaplan/monokai-night-z" url: "https://marketplace.visualstudio.com/items?itemName=ZivKaplan.monokai-night-z" diff --git a/themes/monokai-ocean-color-theme.yaml b/themes/monokai-ocean-color-theme.yaml index 1bc32ae8..4091f792 100644 --- a/themes/monokai-ocean-color-theme.yaml +++ b/themes/monokai-ocean-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rofrol.monokai-ocean" version: "1.0.6" installs: 10813 + rating: 4 + ratings: 3 author: "rofrol" repo: "https://github.com/rofrol/monokai-ocean" url: "https://marketplace.visualstudio.com/items?itemName=rofrol.monokai-ocean" diff --git a/themes/monokai-octagon.yaml b/themes/monokai-octagon.yaml index 0b7e84ec..f99e5f68 100644 --- a/themes/monokai-octagon.yaml +++ b/themes/monokai-octagon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mhmdsulimn.msdev-vscode" version: "1.6.0" installs: 457 + rating: 5 + ratings: 2 author: "Mohamed Suliman" repo: "https://github.com/mhmdsulimn/MS-Dev-Theme" url: "https://marketplace.visualstudio.com/items?itemName=mhmdsulimn.msdev-vscode" diff --git a/themes/monokai-okean.yaml b/themes/monokai-okean.yaml index c580e983..4e3a2a2c 100644 --- a/themes/monokai-okean.yaml +++ b/themes/monokai-okean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "grantorino-publisher.theme-ocean-monokai" version: "0.0.3" installs: 936 + rating: 0 + ratings: 0 author: "grantorino" repo: "https://github.com/grantorin/theme-ocean-monokai" url: "https://marketplace.visualstudio.com/items?itemName=grantorino-publisher.theme-ocean-monokai" diff --git a/themes/monokai-original-sublime-theme.yaml b/themes/monokai-original-sublime-theme.yaml index 4aa29dd0..06da90e7 100644 --- a/themes/monokai-original-sublime-theme.yaml +++ b/themes/monokai-original-sublime-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "badrouu-laabed.monokai-original-sublime-theme" version: "1.0.0" installs: 13539 + rating: 5 + ratings: 1 author: "badrouu-laabed" repo: "https://github.com/Badrouu17/monokai-original-sublime-theme" url: "https://marketplace.visualstudio.com/items?itemName=badrouu-laabed.monokai-original-sublime-theme" diff --git a/themes/monokai-prime.yaml b/themes/monokai-prime.yaml index 94a4d7cc..a348fc03 100644 --- a/themes/monokai-prime.yaml +++ b/themes/monokai-prime.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nhoekstra.monokai-prime" version: "0.0.2" installs: 682 + rating: 0 + ratings: 0 author: "Nicholas Hoekstra" repo: "https://github.com/nhoekstra/monokai-prime" url: "https://marketplace.visualstudio.com/items?itemName=nhoekstra.monokai-prime" diff --git a/themes/monokai-pro.yaml b/themes/monokai-pro.yaml index b7564774..3f2f6133 100644 --- a/themes/monokai-pro.yaml +++ b/themes/monokai-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shaobeichen.gradient-theme" version: "1.19.0" installs: 24140 + rating: 4.71 + ratings: 7 author: "shaobeichen" repo: "https://github.com/shaobeichen/gradient-theme" url: "https://marketplace.visualstudio.com/items?itemName=shaobeichen.gradient-theme" diff --git a/themes/monokai-rain.yaml b/themes/monokai-rain.yaml index b70698d3..cad44b1d 100644 --- a/themes/monokai-rain.yaml +++ b/themes/monokai-rain.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mimo.monokai-rain" version: "0.4.0" installs: 807 + rating: 5 + ratings: 1 author: "Michelle Mounde" repo: "https://github.com/michellemounde/monokai-rainstorm" url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" diff --git a/themes/monokai-red.yaml b/themes/monokai-red.yaml new file mode 100644 index 00000000..673678fb --- /dev/null +++ b/themes/monokai-red.yaml @@ -0,0 +1,52 @@ +name: "Monokai +Red" +source: + marketplace_id: "tw.monokai-accent" + version: "0.0.7" + installs: 13334 + rating: 5 + ratings: 4 + author: "tw" + repo: "https://github.com/tw-studio/monokai-accent" + url: "https://marketplace.visualstudio.com/items?itemName=tw.monokai-accent" +colors: + bg: "#242424" + fg: "#F6F6F6" + black: "#222222" + red: "#FC618D" + green: "#7BD88F" + yellow: "#FCE566" + blue: "#FD9353" + magenta: "#948AE3" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#FCE566" + brightBlue: "#FD9353" + brightMagenta: "#948AE3" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 99.2 + black: 0 + red: 44.6 + green: 68.5 + yellow: 87.9 + blue: 56.2 + magenta: 42.5 + cyan: 68.3 + white: 97.5 + brightBlack: 21.1 + brightRed: 44.6 + brightGreen: 68.5 + brightYellow: 87.9 + brightBlue: 56.2 + brightMagenta: 42.5 + brightCyan: 68.3 + brightWhite: 97.5 diff --git a/themes/monokai-semantic.yaml b/themes/monokai-semantic.yaml new file mode 100644 index 00000000..477ce49b --- /dev/null +++ b/themes/monokai-semantic.yaml @@ -0,0 +1,52 @@ +name: "Monokai Semantic" +source: + marketplace_id: "GoliafRS.monokai-semantic" + version: "1.0.0" + installs: 572 + rating: 0 + ratings: 0 + author: "GoliafRS" + repo: "https://github.com/goliafrs/monokai-semantic" + url: "https://marketplace.visualstudio.com/items?itemName=GoliafRS.monokai-semantic" +colors: + bg: "#161616" + fg: "#F0F0F0" + black: "#505050" + red: "#D32F2F" + green: "#388E3C" + yellow: "#FBC02D" + blue: "#1976D2" + magenta: "#7B1FA2" + cyan: "#0097A7" + white: "#F0F0F0" + brightBlack: "#606060" + brightRed: "#FF1744" + brightGreen: "#00E676" + brightYellow: "#FFEA00" + brightBlue: "#2979FF" + brightMagenta: "#D500F9" + brightCyan: "#00E5FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 97.1 + black: 13.3 + red: 27.9 + green: 32.8 + yellow: 73.2 + blue: 29.4 + magenta: 14.1 + cyan: 38.7 + white: 97.1 + brightBlack: 19.6 + brightRed: 37.3 + brightGreen: 73.4 + brightYellow: 91.8 + brightBlue: 34.3 + brightMagenta: 35.8 + brightCyan: 78.1 + brightWhite: 107 diff --git a/themes/monokai-seti-dark.yaml b/themes/monokai-seti-dark.yaml index 595d3cec..6bd3867f 100644 --- a/themes/monokai-seti-dark.yaml +++ b/themes/monokai-seti-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "adityavm.vscode-monokai-seti" version: "0.0.8" installs: 19548 + rating: 5 + ratings: 1 author: "Aditya Mukherjee" repo: "https://github.com/adityavm/vscode-monokai-seti" url: "https://marketplace.visualstudio.com/items?itemName=adityavm.vscode-monokai-seti" diff --git a/themes/monokai-seti-light.yaml b/themes/monokai-seti-light.yaml index a8f3dda5..7ea825c9 100644 --- a/themes/monokai-seti-light.yaml +++ b/themes/monokai-seti-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "adityavm.vscode-monokai-seti" version: "0.0.8" installs: 19548 + rating: 5 + ratings: 1 author: "Aditya Mukherjee" repo: "https://github.com/adityavm/vscode-monokai-seti" url: "https://marketplace.visualstudio.com/items?itemName=adityavm.vscode-monokai-seti" diff --git a/themes/monokai-sharp.yaml b/themes/monokai-sharp.yaml index 4b0103ec..390a26e5 100644 --- a/themes/monokai-sharp.yaml +++ b/themes/monokai-sharp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "0b5vr.theme-monokaisharp" version: "1.1.2" installs: 1757 + rating: 5 + ratings: 2 author: "0b5vr" repo: "https://github.com/0b5vr/vscode-monokai-sharp" url: "https://marketplace.visualstudio.com/items?itemName=0b5vr.theme-monokaisharp" diff --git a/themes/monokai-soda-darker.yaml b/themes/monokai-soda-darker.yaml index 7f11d237..edac900c 100644 --- a/themes/monokai-soda-darker.yaml +++ b/themes/monokai-soda-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carlossantos74.monokai-classic-darker" version: "0.0.6" installs: 6558 + rating: 5 + ratings: 6 author: "Carlos Santos" repo: "https://github.com/carlossantos74/Monokai-Theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossantos74.monokai-classic-darker" diff --git a/themes/monokai-storm.yaml b/themes/monokai-storm.yaml index 8b312882..c4f875ef 100644 --- a/themes/monokai-storm.yaml +++ b/themes/monokai-storm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mimo.monokai-rain" version: "0.4.0" installs: 807 + rating: 5 + ratings: 1 author: "Michelle Mounde" repo: "https://github.com/michellemounde/monokai-rainstorm" url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" diff --git a/themes/monokai-supersaturated.yaml b/themes/monokai-supersaturated.yaml index ec57e2f3..e7287cd1 100644 --- a/themes/monokai-supersaturated.yaml +++ b/themes/monokai-supersaturated.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Limespy.monokai-supersat" version: "1.0.5" installs: 669 + rating: 0 + ratings: 0 author: "Limespy" repo: "https://github.com/Limespy/monokai-supersat" url: "https://marketplace.visualstudio.com/items?itemName=Limespy.monokai-supersat" diff --git a/themes/monokai-tornado.yaml b/themes/monokai-tornado.yaml index 7c92d225..ffa03c7a 100644 --- a/themes/monokai-tornado.yaml +++ b/themes/monokai-tornado.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mimo.monokai-rain" version: "0.4.0" installs: 807 + rating: 5 + ratings: 1 author: "Michelle Mounde" repo: "https://github.com/michellemounde/monokai-rainstorm" url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" diff --git a/themes/monokai-underdark-mk.yaml b/themes/monokai-underdark-mk.yaml index e1277e08..f7d6c897 100644 --- a/themes/monokai-underdark-mk.yaml +++ b/themes/monokai-underdark-mk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "saadmk11.monokai-underdark-mk" version: "0.0.2" installs: 55 + rating: 0 + ratings: 0 author: "Maksudul Haque" repo: "https://github.com/saadmk11/vsc-monokai-underdark-mk-theme" url: "https://marketplace.visualstudio.com/items?itemName=saadmk11.monokai-underdark-mk" diff --git a/themes/monokai-underdark.yaml b/themes/monokai-underdark.yaml index f8192d1a..51286859 100644 --- a/themes/monokai-underdark.yaml +++ b/themes/monokai-underdark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zrthxn.monokai-underdark" version: "0.0.5" installs: 149 + rating: 5 + ratings: 1 author: "zrthxn" repo: "https://github.com/zrthxn/monokai-underdark" url: "https://marketplace.visualstudio.com/items?itemName=zrthxn.monokai-underdark" diff --git a/themes/monokai-unified.yaml b/themes/monokai-unified.yaml index 9b526d03..2c550f54 100644 --- a/themes/monokai-unified.yaml +++ b/themes/monokai-unified.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/monokai22.yaml b/themes/monokai22.yaml index abe1b289..0beb2188 100644 --- a/themes/monokai22.yaml +++ b/themes/monokai22.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "henderjon.monokai22" version: "1.0.7" installs: 150 + rating: 0 + ratings: 0 author: "henderjon" repo: "https://github.com/henderjon/monokai22" url: "https://marketplace.visualstudio.com/items?itemName=henderjon.monokai22" diff --git a/themes/monokaiju.yaml b/themes/monokaiju.yaml index ea3a0d9e..72b1c346 100644 --- a/themes/monokaiju.yaml +++ b/themes/monokaiju.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "konapun.monokaiju" version: "0.3.2" installs: 1215 + rating: 5 + ratings: 1 author: "konapun" repo: "https://github.com/konapun/monokaiju" url: "https://marketplace.visualstudio.com/items?itemName=konapun.monokaiju" diff --git a/themes/monokaisgq.yaml b/themes/monokaisgq.yaml index 837430ca..4d52a04d 100644 --- a/themes/monokaisgq.yaml +++ b/themes/monokaisgq.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "marketideas.monokaisgq" version: "0.0.1" installs: 96 + rating: 0 + ratings: 0 author: "marketideas" repo: "https://github.com/marketideas/MonokaiSGQ" url: "https://marketplace.visualstudio.com/items?itemName=marketideas.monokaisgq" diff --git a/themes/monokaizen.yaml b/themes/monokaizen.yaml index e53a579a..c6b7db46 100644 --- a/themes/monokaizen.yaml +++ b/themes/monokaizen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexanderSanchez.monokaizen" version: "0.2.4" installs: 5 + rating: 0 + ratings: 0 author: "Alexander Sanchez" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AlexanderSanchez.monokaizen" diff --git a/themes/monokard.yaml b/themes/monokard.yaml index 00de27b3..1e85c32e 100644 --- a/themes/monokard.yaml +++ b/themes/monokard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gfrcsd.monokard" version: "2.0.0" installs: 945 + rating: 0 + ratings: 0 author: "gfrcsd" repo: "https://github.com/gfrcsd/vscode-monokard" url: "https://marketplace.visualstudio.com/items?itemName=gfrcsd.monokard" diff --git a/themes/monokong.yaml b/themes/monokong.yaml index ee3ec4e4..e7e456cc 100644 --- a/themes/monokong.yaml +++ b/themes/monokong.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iosuck.monokong" version: "0.0.1" installs: 837 + rating: 0 + ratings: 0 author: "iosuck" repo: null url: "https://marketplace.visualstudio.com/items?itemName=iosuck.monokong" diff --git a/themes/monokuro-amber.yaml b/themes/monokuro-amber.yaml index 4239a6d5..f317ee74 100644 --- a/themes/monokuro-amber.yaml +++ b/themes/monokuro-amber.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hjqInAmood-fiber.hjqTheme" version: "0.1.5" installs: 118 + rating: 5 + ratings: 1 author: "hjqInAmood" repo: null url: "https://marketplace.visualstudio.com/items?itemName=hjqInAmood-fiber.hjqTheme" diff --git a/themes/monolite.yaml b/themes/monolite.yaml index 722ece4f..87f61721 100644 --- a/themes/monolite.yaml +++ b/themes/monolite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "baukeposthuma.monolite" version: "1.1.0" installs: 4415 + rating: 5 + ratings: 4 author: "Bauke Posthuma" repo: "https://github.com/baukeposthuma/monolite" url: "https://marketplace.visualstudio.com/items?itemName=baukeposthuma.monolite" diff --git a/themes/monos-blac.yaml b/themes/monos-blac.yaml index 65714acd..882fac8a 100644 --- a/themes/monos-blac.yaml +++ b/themes/monos-blac.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "0xdhrv.blac" version: "0.0.1" installs: 2175 + rating: 5 + ratings: 1 author: "Dhruv Suthar" repo: "https://github.com/0xdhrv/monos" url: "https://marketplace.visualstudio.com/items?itemName=0xdhrv.blac" diff --git a/themes/monospace-dark.yaml b/themes/monospace-dark.yaml index 9e028a7d..0c4551ce 100644 --- a/themes/monospace-dark.yaml +++ b/themes/monospace-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "keksiqc.idx-monospace-theme" version: "1.5.0" installs: 31590 + rating: 5 + ratings: 9 author: "Keksi" repo: "https://github.com/keksiqc/monospace-theme" url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" diff --git a/themes/monospace-light.yaml b/themes/monospace-light.yaml index fcac9abc..8df7d7f1 100644 --- a/themes/monospace-light.yaml +++ b/themes/monospace-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "keksiqc.idx-monospace-theme" version: "1.5.0" installs: 31590 + rating: 5 + ratings: 9 author: "Keksi" repo: "https://github.com/keksiqc/monospace-theme" url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" diff --git a/themes/monove-fork.yaml b/themes/monove-fork.yaml new file mode 100644 index 00000000..1ad7c0fb --- /dev/null +++ b/themes/monove-fork.yaml @@ -0,0 +1,52 @@ +name: "Monove - Fork" +source: + marketplace_id: "0xdhrv.monove" + version: "0.0.2" + installs: 123 + rating: 0 + ratings: 0 + author: "Dhruv Suthar" + repo: "https://github.com/0xdhrv/monove-vscode-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=0xdhrv.monove" +colors: + bg: "#000000" + fg: "#CDCDCD" + black: "#000000" + red: "#717171" + green: "#4B4B4B" + yellow: "#8F8F8F" + blue: "#3C3C3C" + magenta: "#575757" + cyan: "#444444" + white: "#CDCDCD" + brightBlack: "#3C3C3C" + brightRed: "#909090" + brightGreen: "#575757" + brightYellow: "#8F8F8F" + brightBlue: "#444444" + brightMagenta: "#717171" + brightCyan: "#4B4B4B" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 76.3 + black: 0 + red: 27.8 + green: 12.3 + yellow: 42.1 + blue: 0 + magenta: 16.9 + cyan: 9.8 + white: 76.3 + brightBlack: 0 + brightRed: 42.6 + brightGreen: 16.9 + brightYellow: 42.1 + brightBlue: 9.8 + brightMagenta: 27.8 + brightCyan: 12.3 + brightWhite: 107.9 diff --git a/themes/monrch-darc.yaml b/themes/monrch-darc.yaml index 14d6c71a..efa8c093 100644 --- a/themes/monrch-darc.yaml +++ b/themes/monrch-darc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MonRch.monrch-darc" version: "0.0.16" installs: 78 + rating: 0 + ratings: 0 author: "MonRch" repo: "https://github.com/Rahul-Encoded/MonRchDarc" url: "https://marketplace.visualstudio.com/items?itemName=MonRch.monrch-darc" diff --git a/themes/montana.yaml b/themes/montana.yaml index 2b93d9e1..9d9635b2 100644 --- a/themes/montana.yaml +++ b/themes/montana.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NicotsouThemes.montana" version: "0.3.3" installs: 56 + rating: 0 + ratings: 0 author: "Nicos Tsourektsidis" repo: "https://github.com/nicotsou/montana-theme" url: "https://marketplace.visualstudio.com/items?itemName=NicotsouThemes.montana" diff --git a/themes/monte-cristo-theme.yaml b/themes/monte-cristo-theme.yaml new file mode 100644 index 00000000..b155e189 --- /dev/null +++ b/themes/monte-cristo-theme.yaml @@ -0,0 +1,52 @@ +name: "Monte Cristo Theme" +source: + marketplace_id: "monte-cristo-theme.monte-cristo" + version: "1.1.0" + installs: 142 + rating: 0 + ratings: 0 + author: "Monte Cristo Theme" + repo: "https://github.com/monte-cristos/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=monte-cristo-theme.monte-cristo" +colors: + bg: "#1C1D26" + fg: "#FAFAFA" + black: "#140021" + red: "#FF2E52" + green: "#30F1A0" + yellow: "#FFF94B" + blue: "#0060E0" + magenta: "#FF4396" + cyan: "#42D3F2" + white: "#FAFAFA" + brightBlack: "#00B3F5" + brightRed: "#FF505F" + brightGreen: "#53FEBE" + brightYellow: "#FFEA7F" + brightBlue: "#00B3F5" + brightMagenta: "#FF6BBB" + brightCyan: "#00DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 280 + pair: null + contrast: + fg: 102.8 + black: 0 + red: 37.8 + green: 79.5 + yellow: 98.3 + blue: 22.9 + magenta: 41.8 + cyan: 68.6 + white: 102.8 + brightBlack: 53.8 + brightRed: 42 + brightGreen: 88.1 + brightYellow: 92 + brightBlue: 53.8 + brightMagenta: 50.1 + brightCyan: 73.4 + brightWhite: 106.1 diff --git a/themes/monza-dark.yaml b/themes/monza-dark.yaml index dbe5de5c..01ea0846 100644 --- a/themes/monza-dark.yaml +++ b/themes/monza-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JamesGulland.monza-dark-theme" version: "0.0.1" installs: 50 + rating: 0 + ratings: 0 author: "James Gulland" repo: "https://github.com/james-gulland/monza-dark-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.monza-dark-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 278 + pair: null contrast: fg: 76.5 black: 0 diff --git a/themes/monzo-contrast.yaml b/themes/monzo-contrast.yaml index 6de6d23e..f328a4f3 100644 --- a/themes/monzo-contrast.yaml +++ b/themes/monzo-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/monzo-light.yaml b/themes/monzo-light.yaml index 3d444bdb..7bee5c56 100644 --- a/themes/monzo-light.yaml +++ b/themes/monzo-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/monzo.yaml b/themes/monzo.yaml index e93fbd39..67ef8a44 100644 --- a/themes/monzo.yaml +++ b/themes/monzo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/moon-light-theme.yaml b/themes/moon-light-theme.yaml index ff8fa921..edb0d616 100644 --- a/themes/moon-light-theme.yaml +++ b/themes/moon-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mukunthan.moon-light-theme" version: "0.0.1" installs: 3498 + rating: 5 + ratings: 1 author: "mukunthan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mukunthan.moon-light-theme" diff --git a/themes/moon-night.yaml b/themes/moon-night.yaml index 0d22cc37..af3b1d2e 100644 --- a/themes/moon-night.yaml +++ b/themes/moon-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rahulmhto.rahulmhto" version: "0.0.8" installs: 94 + rating: 5 + ratings: 1 author: "rahulmhto" repo: "https://github.com/rahullm9/rahulmhto-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=rahulmhto.rahulmhto" diff --git a/themes/moon-purple.yaml b/themes/moon-purple.yaml index b68bcb28..7a00c094 100644 --- a/themes/moon-purple.yaml +++ b/themes/moon-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Imagineee.moon-purple" version: "1.0.3" installs: 12916 + rating: 5 + ratings: 3 author: "Imagineee" repo: "https://github.com/imagineeeinc/Moon-Purple" url: "https://marketplace.visualstudio.com/items?itemName=Imagineee.moon-purple" diff --git a/themes/moon-violet-dark-plus.yaml b/themes/moon-violet-dark-plus.yaml index bf2d58e1..03b6a0d4 100644 --- a/themes/moon-violet-dark-plus.yaml +++ b/themes/moon-violet-dark-plus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "moondevaa.moon-violet-dark-plus" version: "0.1.9" installs: 8129 + rating: 5 + ratings: 1 author: "moondevaa" repo: "https://github.com/AaBbdev29/moon-violet-dark-plus" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.moon-violet-dark-plus" diff --git a/themes/moonbloom-theme-official.yaml b/themes/moonbloom-theme-official.yaml index a9b775d8..3ed43a96 100644 --- a/themes/moonbloom-theme-official.yaml +++ b/themes/moonbloom-theme-official.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Moonbloom.moonbloom-theme" version: "1.1.2" installs: 838 + rating: 5 + ratings: 1 author: "Moonbloom" repo: "https://github.com/moonbloom-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=Moonbloom.moonbloom-theme" diff --git a/themes/moonerized-dark.yaml b/themes/moonerized-dark.yaml index d885e7b1..70fdc5f6 100644 --- a/themes/moonerized-dark.yaml +++ b/themes/moonerized-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brodyreid.moonerized-theme" version: "0.1.6" installs: 102 + rating: 5 + ratings: 2 author: "Brody Reid" repo: "https://worktree.ca/bb/moonerized" url: "https://marketplace.visualstudio.com/items?itemName=brodyreid.moonerized-theme" diff --git a/themes/moonerized-light.yaml b/themes/moonerized-light.yaml index ec9757b9..bfede01b 100644 --- a/themes/moonerized-light.yaml +++ b/themes/moonerized-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brodyreid.moonerized-theme" version: "0.1.6" installs: 102 + rating: 5 + ratings: 2 author: "Brody Reid" repo: "https://worktree.ca/bb/moonerized" url: "https://marketplace.visualstudio.com/items?itemName=brodyreid.moonerized-theme" diff --git a/themes/moonfly.yaml b/themes/moonfly.yaml index c2f254a7..33dd6974 100644 --- a/themes/moonfly.yaml +++ b/themes/moonfly.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jgenc.moonfly-vscode-theme" version: "0.1.1" installs: 433 + rating: 0 + ratings: 0 author: "jgenc" repo: "https://github.com/jgenc/moonfly-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jgenc.moonfly-vscode-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/moongate-theme-dark.yaml b/themes/moongate-theme-dark.yaml index ce6080c7..28bb2a97 100644 --- a/themes/moongate-theme-dark.yaml +++ b/themes/moongate-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yuelinghuashu.moongate-theme" version: "2.1.0" installs: 11 + rating: 0 + ratings: 0 author: "yuelinghuashu" repo: "https://github.com/yuelinghuashu/moongate-theme" url: "https://marketplace.visualstudio.com/items?itemName=yuelinghuashu.moongate-theme" diff --git a/themes/moongate-theme-light.yaml b/themes/moongate-theme-light.yaml index 5e1c9614..39577874 100644 --- a/themes/moongate-theme-light.yaml +++ b/themes/moongate-theme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yuelinghuashu.moongate-theme" version: "2.1.0" installs: 11 + rating: 0 + ratings: 0 author: "yuelinghuashu" repo: "https://github.com/yuelinghuashu/moongate-theme" url: "https://marketplace.visualstudio.com/items?itemName=yuelinghuashu.moongate-theme" diff --git a/themes/moonkai.yaml b/themes/moonkai.yaml index 2991ad1c..3b6b38b7 100644 --- a/themes/moonkai.yaml +++ b/themes/moonkai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "halcolo.moonkai" version: "1.1.0" installs: 1669 + rating: 5 + ratings: 2 author: "Halcolo" repo: "https://github.com/halcolo/MoonKai" url: "https://marketplace.visualstudio.com/items?itemName=halcolo.moonkai" diff --git a/themes/moonlight-ii.yaml b/themes/moonlight-ii.yaml index 0d05524d..09a29c48 100644 --- a/themes/moonlight-ii.yaml +++ b/themes/moonlight-ii.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/moonlight.yaml b/themes/moonlight.yaml index 7d5aeadc..6541f4a1 100644 --- a/themes/moonlight.yaml +++ b/themes/moonlight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/moonokai.yaml b/themes/moonokai.yaml index 383a5b14..af1abb5f 100644 --- a/themes/moonokai.yaml +++ b/themes/moonokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mtayllan.moonokai" version: "0.0.4" installs: 1021 + rating: 0 + ratings: 0 author: "mtayllan" repo: "https://github.com/mtayllan/moonokai" url: "https://marketplace.visualstudio.com/items?itemName=mtayllan.moonokai" diff --git a/themes/moonspell-northern-lights.yaml b/themes/moonspell-northern-lights.yaml index be62181c..e24ba6e5 100644 --- a/themes/moonspell-northern-lights.yaml +++ b/themes/moonspell-northern-lights.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Oodri.moonspell-themes" version: "0.1.2" installs: 354 + rating: 5 + ratings: 1 author: "Oodri" repo: "https://github.com/ElvannAbendroth/moonspell-themes" url: "https://marketplace.visualstudio.com/items?itemName=Oodri.moonspell-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "magenta" hue: 261 + pair: null contrast: fg: 37.2 black: 62.8 diff --git a/themes/morass-contrast.yaml b/themes/morass-contrast.yaml index 0d25e2af..b8cf06f8 100644 --- a/themes/morass-contrast.yaml +++ b/themes/morass-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/morass-light.yaml b/themes/morass-light.yaml index 49ad525f..24309b96 100644 --- a/themes/morass-light.yaml +++ b/themes/morass-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/morass.yaml b/themes/morass.yaml index c8d59838..7ce21481 100644 --- a/themes/morass.yaml +++ b/themes/morass.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/more-purple.yaml b/themes/more-purple.yaml index 556d8758..8191449f 100644 --- a/themes/more-purple.yaml +++ b/themes/more-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Immortal.more-purple" version: "0.1.1" installs: 285 + rating: 0 + ratings: 0 author: "Immortal" repo: "https://github.com/ImmortalNameless/more-purple" url: "https://marketplace.visualstudio.com/items?itemName=Immortal.more-purple" diff --git a/themes/morgan-codes.yaml b/themes/morgan-codes.yaml index 03fb9342..870ba4d2 100644 --- a/themes/morgan-codes.yaml +++ b/themes/morgan-codes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "morgan-codes.morgan-codes-vscode-theme" version: "0.0.5" installs: 49380 + rating: 4.64 + ratings: 11 author: "morgan-codes" repo: "https://github.com/morganrmarie/morgancodes-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=morgan-codes.morgan-codes-vscode-theme" diff --git a/themes/mori-keycaps.yaml b/themes/mori-keycaps.yaml index 4d4977e6..fe02c24b 100644 --- a/themes/mori-keycaps.yaml +++ b/themes/mori-keycaps.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Icycoldveins.verum-monokai-themes" version: "1.2.1" installs: 46 + rating: 5 + ratings: 1 author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" diff --git a/themes/morita.yaml b/themes/morita.yaml new file mode 100644 index 00000000..10eee692 --- /dev/null +++ b/themes/morita.yaml @@ -0,0 +1,52 @@ +name: "Morita" +source: + marketplace_id: "YesCode.morita" + version: "0.0.18" + installs: 228 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/MyThemes" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" +colors: + bg: "#0A0012" + fg: "#DDDDDD" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#A39CCA" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: 312 + pair: null + contrast: + fg: 85.9 + black: 0 + red: 42.9 + green: 61.9 + yellow: 74 + blue: 83.7 + magenta: 20.5 + cyan: 50.4 + white: 48.2 + brightBlack: 19.5 + brightRed: 42.9 + brightGreen: 51.5 + brightYellow: 80.7 + brightBlue: 19.7 + brightMagenta: 20.5 + brightCyan: 50.4 + brightWhite: 99.8 diff --git a/themes/morning-mist.yaml b/themes/morning-mist.yaml index ec839e03..3841eff5 100644 --- a/themes/morning-mist.yaml +++ b/themes/morning-mist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ThemePlanet-Verdant.themeplanet-verdant" version: "1.0.0" installs: 47 + rating: 0 + ratings: 0 author: "ThemePlanet - Verdant" repo: "https://github.com/Ukt01/themeplanet-verdant" url: "https://marketplace.visualstudio.com/items?itemName=ThemePlanet-Verdant.themeplanet-verdant" diff --git a/themes/morning-mocha.yaml b/themes/morning-mocha.yaml index b07c3700..0b665f48 100644 --- a/themes/morning-mocha.yaml +++ b/themes/morning-mocha.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "goldenwere.morning-mocha" version: "1.1.0" installs: 1065 + rating: 0 + ratings: 0 author: "Goldenwere" repo: "https://git.goldenwere.com/lightling/lightling" url: "https://marketplace.visualstudio.com/items?itemName=goldenwere.morning-mocha" diff --git a/themes/mosaic.yaml b/themes/mosaic.yaml index 226f7667..5bc51df2 100644 --- a/themes/mosaic.yaml +++ b/themes/mosaic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vitoravelino.mosaic" version: "0.0.1" installs: 11258 + rating: 5 + ratings: 2 author: "vitoravelino" repo: "https://github.com/vitoravelino/vscode-mosaic" url: "https://marketplace.visualstudio.com/items?itemName=vitoravelino.mosaic" diff --git a/themes/mosmmy.yaml b/themes/mosmmy.yaml index 91787664..656c8b7a 100644 --- a/themes/mosmmy.yaml +++ b/themes/mosmmy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "moserjose.mosmmy-theme" version: "1.0.7" installs: 1011 + rating: 5 + ratings: 1 author: "Moser Jose" repo: "https://github.com/moser-jose/mosmmy-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=moserjose.mosmmy-theme" diff --git a/themes/mossframe-light.yaml b/themes/mossframe-light.yaml index b00973ce..db827a2d 100644 --- a/themes/mossframe-light.yaml +++ b/themes/mossframe-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "404mat.mossframe" version: "2.1.2" installs: 299 + rating: 0 + ratings: 0 author: "404mat" repo: "https://github.com/404mat/mossframe" url: "https://marketplace.visualstudio.com/items?itemName=404mat.mossframe" diff --git a/themes/mossframe-neon-darker-legacy.yaml b/themes/mossframe-neon-darker-legacy.yaml new file mode 100644 index 00000000..20888bcc --- /dev/null +++ b/themes/mossframe-neon-darker-legacy.yaml @@ -0,0 +1,52 @@ +name: "MossFrame — Neon Darker (Legacy)" +source: + marketplace_id: "404mat.mossframe" + version: "2.1.2" + installs: 299 + rating: 0 + ratings: 0 + author: "404mat" + repo: "https://github.com/404mat/mossframe" + url: "https://marketplace.visualstudio.com/items?itemName=404mat.mossframe" +colors: + bg: "#0F1114" + fg: "#A6ACCD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 57.6 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/mossframe-neon-legacy.yaml b/themes/mossframe-neon-legacy.yaml new file mode 100644 index 00000000..ba723d3d --- /dev/null +++ b/themes/mossframe-neon-legacy.yaml @@ -0,0 +1,52 @@ +name: "MossFrame — Neon (Legacy)" +source: + marketplace_id: "404mat.mossframe" + version: "2.1.2" + installs: 299 + rating: 0 + ratings: 0 + author: "404mat" + repo: "https://github.com/404mat/mossframe" + url: "https://marketplace.visualstudio.com/items?itemName=404mat.mossframe" +colors: + bg: "#1B1E28" + fg: "#A6ACCD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 272 + pair: null + contrast: + fg: 56.3 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/mossframe.yaml b/themes/mossframe.yaml index 39535a3f..648b7a88 100644 --- a/themes/mossframe.yaml +++ b/themes/mossframe.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "404mat.mossframe" version: "2.1.2" installs: 299 + rating: 0 + ratings: 0 author: "404mat" repo: "https://github.com/404mat/mossframe" url: "https://marketplace.visualstudio.com/items?itemName=404mat.mossframe" diff --git a/themes/mother-stretch-my-hands.yaml b/themes/mother-stretch-my-hands.yaml new file mode 100644 index 00000000..3ebc9b49 --- /dev/null +++ b/themes/mother-stretch-my-hands.yaml @@ -0,0 +1,50 @@ +name: "mother-stretch-my-hands" +source: + marketplace_id: "chiefyangga.bianca" + version: "0.0.2" + installs: 146 + author: "chiefyangga" + repo: "" + url: "https://marketplace.visualstudio.com/items?itemName=chiefyangga.bianca" +colors: + bg: "#141417" + fg: "#C8C8C8" + black: "#141417" + red: "#D62C2C" + green: "#42DD76" + yellow: "#FFB638" + blue: "#C19EFA" + magenta: "#E66DFF" + cyan: "#14E5D4" + white: "#C8C8C8" + brightBlack: "#C19EFA" + brightRed: "#D62C2C" + brightGreen: "#42DD76" + brightYellow: "#FFB638" + brightBlue: "#C19EFA" + brightMagenta: "#E66DFF" + brightCyan: "#14E5D4" + brightWhite: "#C8C8C8" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 72.5 + black: 0 + red: 28.5 + green: 69.8 + yellow: 70.3 + blue: 58.2 + magenta: 50.6 + cyan: 76.1 + white: 72.5 + brightBlack: 58.2 + brightRed: 28.5 + brightGreen: 69.8 + brightYellow: 70.3 + brightBlue: 58.2 + brightMagenta: 50.6 + brightCyan: 76.1 + brightWhite: 72.5 diff --git a/themes/motion-blue.yaml b/themes/motion-blue.yaml new file mode 100644 index 00000000..cecc96c5 --- /dev/null +++ b/themes/motion-blue.yaml @@ -0,0 +1,52 @@ +name: "Motion Blue" +source: + marketplace_id: "5ett.motion-blue" + version: "0.0.7" + installs: 534 + rating: 4 + ratings: 1 + author: "5ett" + repo: "https://github.com/5ett/motion-blue" + url: "https://marketplace.visualstudio.com/items?itemName=5ett.motion-blue" +colors: + bg: "#183752" + fg: "#BBD5ED" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 247 + pair: null + contrast: + fg: 72.6 + black: 0 + red: 21.2 + green: 47.5 + yellow: 80.1 + blue: 21.9 + magenta: 24.2 + cyan: 42 + white: 84.5 + brightBlack: 16.5 + brightRed: 33 + brightGreen: 58 + brightYellow: 90.1 + brightBlue: 34.5 + brightMagenta: 39.8 + brightCyan: 49.9 + brightWhite: 84.5 diff --git a/themes/motiv8der-s-theme.yaml b/themes/motiv8der-s-theme.yaml index cab49a92..0036db1c 100644 --- a/themes/motiv8der-s-theme.yaml +++ b/themes/motiv8der-s-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IntoCode.motiv8der-dark-theme" version: "0.0.1" installs: 18 + rating: 0 + ratings: 0 author: "IntoCode" repo: "https://github.com/Justin-Diner/IntoCode_VSCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=IntoCode.motiv8der-dark-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 96.1 black: 0 diff --git a/themes/mount-kalaga-noir.yaml b/themes/mount-kalaga-noir.yaml index 82168693..ba67f59c 100644 --- a/themes/mount-kalaga-noir.yaml +++ b/themes/mount-kalaga-noir.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/mountain-theme.yaml b/themes/mountain-theme.yaml index 76f2f045..9f19c3d8 100644 --- a/themes/mountain-theme.yaml +++ b/themes/mountain-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevangTomar.vscode-diverse-dye" version: "1.3.0" installs: 2595 + rating: 5 + ratings: 3 author: "Devang Tomar ⭐" repo: "https://github.com/devangtomar/vscode-diverse-dye" url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" diff --git a/themes/mountains-and-rivers.yaml b/themes/mountains-and-rivers.yaml index 13af7272..8864acc6 100644 --- a/themes/mountains-and-rivers.yaml +++ b/themes/mountains-and-rivers.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yshwaker.mountains-and-rivers-theme" version: "2.3.0" installs: 183 + rating: 0 + ratings: 0 author: "yshwaker" repo: "https://github.com/yshwaker/mountains-and-rivers-theme" url: "https://marketplace.visualstudio.com/items?itemName=yshwaker.mountains-and-rivers-theme" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 97.9 black: 100.9 diff --git a/themes/mourning.yaml b/themes/mourning.yaml index 6a79ff70..a2c475b9 100644 --- a/themes/mourning.yaml +++ b/themes/mourning.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zakj.mourning" version: "0.0.5" installs: 1020 + rating: 3.67 + ratings: 3 author: "zakj" repo: "https://github.com/zakj/vscode-mourning" url: "https://marketplace.visualstudio.com/items?itemName=zakj.mourning" diff --git a/themes/mowgli.yaml b/themes/mowgli.yaml index 4cff6119..76c193bd 100644 --- a/themes/mowgli.yaml +++ b/themes/mowgli.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wapenshaw.mowgli" version: "1.1.4" installs: 821 + rating: 0 + ratings: 0 author: "Siddharth Abbineni" repo: "https://github.com/wapenshaw/mowgli/" url: "https://marketplace.visualstudio.com/items?itemName=wapenshaw.mowgli" diff --git a/themes/mr-code-black.yaml b/themes/mr-code-black.yaml index dcff76fd..bd345d7d 100644 --- a/themes/mr-code-black.yaml +++ b/themes/mr-code-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AhmadJubran.mr-code" version: "0.0.1" installs: 1931 + rating: 5 + ratings: 1 author: "Ahmad Jubran" repo: "https://github.com/ahmadjubran/mr-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=AhmadJubran.mr-code" diff --git a/themes/mr-code-gunmetal.yaml b/themes/mr-code-gunmetal.yaml index 7dae6bfd..82bbb694 100644 --- a/themes/mr-code-gunmetal.yaml +++ b/themes/mr-code-gunmetal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AhmadJubran.mr-code" version: "0.0.1" installs: 1931 + rating: 5 + ratings: 1 author: "Ahmad Jubran" repo: "https://github.com/ahmadjubran/mr-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=AhmadJubran.mr-code" diff --git a/themes/ms-dev-theme.yaml b/themes/ms-dev-theme.yaml index 13f41cc5..e03fa5bd 100644 --- a/themes/ms-dev-theme.yaml +++ b/themes/ms-dev-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mhmdsulimn.msdev-vscode" version: "1.6.0" installs: 457 + rating: 5 + ratings: 2 author: "Mohamed Suliman" repo: "https://github.com/mhmdsulimn/MS-Dev-Theme" url: "https://marketplace.visualstudio.com/items?itemName=mhmdsulimn.msdev-vscode" diff --git a/themes/msquare-dark.yaml b/themes/msquare-dark.yaml new file mode 100644 index 00000000..6fe4fbae --- /dev/null +++ b/themes/msquare-dark.yaml @@ -0,0 +1,52 @@ +name: "MSquare Dark" +source: + marketplace_id: "MaranT.m2-theme" + version: "1.0.1" + installs: 1 + rating: 0 + ratings: 0 + author: "MaranT" + repo: "https://github.com/maran-t/m2-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MaranT.m2-theme" +colors: + bg: "#0D1117" + fg: "#E6EDF3" + black: "#0D1117" + red: "#F47067" + green: "#8DDB8C" + yellow: "#F69D50" + blue: "#6CB6FF" + magenta: "#DCBDFB" + cyan: "#76E3EA" + white: "#E6EDF3" + brightBlack: "#484F58" + brightRed: "#FF7A72" + brightGreen: "#A8E6A1" + brightYellow: "#FFD470" + brightBlue: "#A5D6FF" + brightMagenta: "#EACFFF" + brightCyan: "#A5F0F5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 258 + pair: null + contrast: + fg: 95 + black: 0 + red: 47.3 + green: 73.4 + yellow: 60.2 + blue: 59.7 + magenta: 73.6 + cyan: 79.3 + white: 95 + brightBlack: 13.1 + brightRed: 52.3 + brightGreen: 81.5 + brightYellow: 83.3 + brightBlue: 77.9 + brightMagenta: 83 + brightCyan: 89.5 + brightWhite: 107.4 diff --git a/themes/mud-contrast.yaml b/themes/mud-contrast.yaml index f8906925..122c85a7 100644 --- a/themes/mud-contrast.yaml +++ b/themes/mud-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/mud-light.yaml b/themes/mud-light.yaml index 55746240..88654199 100644 --- a/themes/mud-light.yaml +++ b/themes/mud-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/mud-theme.yaml b/themes/mud-theme.yaml index 1e7dc267..fa7e45c7 100644 --- a/themes/mud-theme.yaml +++ b/themes/mud-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkMannn.mud-theme" version: "0.0.6" installs: 1154 + rating: 5 + ratings: 2 author: "DarkMannn" repo: "https://github.com/DarkMannn/mud-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.mud-theme" diff --git a/themes/mud.yaml b/themes/mud.yaml index 59c1d509..4bfd0f8f 100644 --- a/themes/mud.yaml +++ b/themes/mud.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/murasaki-theme.yaml b/themes/murasaki-theme.yaml index dfd5c344..eaf76b47 100644 --- a/themes/murasaki-theme.yaml +++ b/themes/murasaki-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WesleyBarbosa.murasaki-theme" version: "1.2.0" installs: 50 + rating: 0 + ratings: 0 author: "WesleyBarbosa" repo: "https://github.com/Wesley216/murasaki-theme" url: "https://marketplace.visualstudio.com/items?itemName=WesleyBarbosa.murasaki-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "magenta" hue: 292 + pair: null contrast: fg: 94.9 black: 14.6 diff --git a/themes/muromachi.yaml b/themes/muromachi.yaml index 80cfa558..a7ad4a7d 100644 --- a/themes/muromachi.yaml +++ b/themes/muromachi.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Hoodnight.muromachi-deluxe" version: "1.0.8" installs: 861 + rating: 5 + ratings: 1 author: "Charlie Timlock" repo: "https://github.com/ctimlock/muromachi" url: "https://marketplace.visualstudio.com/items?itemName=Hoodnight.muromachi-deluxe" diff --git a/themes/murora-light-lite.yaml b/themes/murora-light-lite.yaml index 8606d935..d1ae8729 100644 --- a/themes/murora-light-lite.yaml +++ b/themes/murora-light-lite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MuhammadMwinchande.murora" version: "0.1.0" installs: 114 + rating: 4 + ratings: 1 author: "Muhammad Mwinchande" repo: "https://github.com/ammwinchande/murora" url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMwinchande.murora" diff --git a/themes/murtadapy-green.yaml b/themes/murtadapy-green.yaml index 6cdde7d0..054daffd 100644 --- a/themes/murtadapy-green.yaml +++ b/themes/murtadapy-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Maltarouti.colored-programmer" version: "1.0.7" installs: 64 + rating: 0 + ratings: 0 author: "Maltarouti" repo: "https://github.com/murtadapy/colored-programmer" url: "https://marketplace.visualstudio.com/items?itemName=Maltarouti.colored-programmer" diff --git a/themes/mushroomsynth.yaml b/themes/mushroomsynth.yaml index b7e86871..1663cab5 100644 --- a/themes/mushroomsynth.yaml +++ b/themes/mushroomsynth.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TjasaZil.mushroomsynth" version: "0.1.0" installs: 48 + rating: 0 + ratings: 0 author: "TjasaZil" repo: "https://github.com/TjasaZil/mushroomsynth" url: "https://marketplace.visualstudio.com/items?itemName=TjasaZil.mushroomsynth" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 265 + pair: null contrast: fg: 82.1 black: 16.7 diff --git a/themes/muted-mirage.yaml b/themes/muted-mirage.yaml index 929b9c0e..48395501 100644 --- a/themes/muted-mirage.yaml +++ b/themes/muted-mirage.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mouhany.muted-mirage" version: "1.0.4" installs: 333 + rating: 0 + ratings: 0 author: "Mouhany" repo: "https://github.com/mouhany/muted-mirage" url: "https://marketplace.visualstudio.com/items?itemName=mouhany.muted-mirage" diff --git a/themes/mutenight.yaml b/themes/mutenight.yaml index 5e1767f3..a6623c3d 100644 --- a/themes/mutenight.yaml +++ b/themes/mutenight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sqwibDev.mutenight" version: "0.0.1" installs: 237 + rating: 0 + ratings: 0 author: "sqwibDev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sqwibDev.mutenight" diff --git a/themes/mwone-dark.yaml b/themes/mwone-dark.yaml index 93ba6bbe..dcc93318 100644 --- a/themes/mwone-dark.yaml +++ b/themes/mwone-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mwone.mwone-dark" version: "0.4.0" installs: 70 + rating: 5 + ratings: 2 author: "Mwone" repo: "https://github.com/FabienLacorre/Mwone-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mwone.mwone-dark" diff --git a/themes/my-custom-theme.yaml b/themes/my-custom-theme.yaml index 5b62f861..e055cfbc 100644 --- a/themes/my-custom-theme.yaml +++ b/themes/my-custom-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daniel-duc.daniel-yaruna-theme" version: "1.3.2" installs: 255 + rating: 5 + ratings: 2 author: "Daniel Duc" repo: "https://github.com/binhduc1211/daniel-yaruna-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" diff --git a/themes/my-dark-theme-refined-updated.yaml b/themes/my-dark-theme-refined-updated.yaml index b9632d5f..f2191d15 100644 --- a/themes/my-dark-theme-refined-updated.yaml +++ b/themes/my-dark-theme-refined-updated.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" version: "4.3.1" installs: 36 + rating: 5 + ratings: 1 author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" diff --git a/themes/my-first-visual-studio-theme.yaml b/themes/my-first-visual-studio-theme.yaml index 1da0ab2b..55ef48f6 100644 --- a/themes/my-first-visual-studio-theme.yaml +++ b/themes/my-first-visual-studio-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Bulbul.bulbul-theme" version: "0.0.1" installs: 40 + rating: 0 + ratings: 0 author: "Bulbul" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Bulbul.bulbul-theme" diff --git a/themes/my-hero-academia-deku-plus-ultra.yaml b/themes/my-hero-academia-deku-plus-ultra.yaml index b5fe1d16..f54779d4 100644 --- a/themes/my-hero-academia-deku-plus-ultra.yaml +++ b/themes/my-hero-academia-deku-plus-ultra.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LunaCode.anime-theme" version: "0.0.3" installs: 377 + rating: 5 + ratings: 3 author: "LunaCode" repo: "https://github.com/BuildXO/anime-theme-pack" url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" diff --git a/themes/my-light-theme-blue-dark.yaml b/themes/my-light-theme-blue-dark.yaml index 2d574ae6..36a50a43 100644 --- a/themes/my-light-theme-blue-dark.yaml +++ b/themes/my-light-theme-blue-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" version: "4.3.1" installs: 36 + rating: 5 + ratings: 1 author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" diff --git a/themes/my-light-theme-blue.yaml b/themes/my-light-theme-blue.yaml index 269d8574..175c747c 100644 --- a/themes/my-light-theme-blue.yaml +++ b/themes/my-light-theme-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" version: "4.3.1" installs: 36 + rating: 5 + ratings: 1 author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" diff --git a/themes/my-light-theme-light-green-fork-updated.yaml b/themes/my-light-theme-light-green-fork-updated.yaml index 13752bcd..85f5cfe6 100644 --- a/themes/my-light-theme-light-green-fork-updated.yaml +++ b/themes/my-light-theme-light-green-fork-updated.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" version: "4.3.1" installs: 36 + rating: 5 + ratings: 1 author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" diff --git a/themes/my-light-theme-light-green-paperblue-fork.yaml b/themes/my-light-theme-light-green-paperblue-fork.yaml index 847029e4..97452831 100644 --- a/themes/my-light-theme-light-green-paperblue-fork.yaml +++ b/themes/my-light-theme-light-green-paperblue-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" version: "4.3.1" installs: 36 + rating: 5 + ratings: 1 author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" diff --git a/themes/my-light-theme-light-green-papermint-updated.yaml b/themes/my-light-theme-light-green-papermint-updated.yaml index a260895a..8f1f84ac 100644 --- a/themes/my-light-theme-light-green-papermint-updated.yaml +++ b/themes/my-light-theme-light-green-papermint-updated.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" version: "4.3.1" installs: 36 + rating: 5 + ratings: 1 author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" diff --git a/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml b/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml index 561ab035..6dded5cb 100644 --- a/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml +++ b/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" version: "4.3.1" installs: 36 + rating: 5 + ratings: 1 author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" diff --git a/themes/my-light-theme-mint-sand-updated.yaml b/themes/my-light-theme-mint-sand-updated.yaml index 5ed7fa14..579d9f12 100644 --- a/themes/my-light-theme-mint-sand-updated.yaml +++ b/themes/my-light-theme-mint-sand-updated.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" version: "4.3.1" installs: 36 + rating: 5 + ratings: 1 author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" diff --git a/themes/my-light-theme.yaml b/themes/my-light-theme.yaml new file mode 100644 index 00000000..708ee2ea --- /dev/null +++ b/themes/my-light-theme.yaml @@ -0,0 +1,52 @@ +name: "My Light Theme" +source: + marketplace_id: "Akilan.akil" + version: "0.0.1" + installs: 5 + rating: 0 + ratings: 0 + author: "Akilan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Akilan.akil" +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#24292F" + red: "#CF222E" + green: "#28A745" + yellow: "#BF8700" + blue: "#0969DA" + magenta: "#5A32A3" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#656D76" + brightRed: "#DA3633" + brightGreen: "#1A7F37" + brightYellow: "#D1242F" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#F6F8FA" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.7 + black: 101.5 + red: 74.8 + green: 57.9 + yellow: 58.2 + blue: 74.9 + magenta: 89.2 + cyan: 73.8 + white: 71.6 + brightBlack: 76.1 + brightRed: 70.5 + brightGreen: 74.6 + brightYellow: 74.2 + brightBlue: 60.7 + brightMagenta: 59.3 + brightCyan: 63.3 + brightWhite: 0 diff --git a/themes/my-monokai.yaml b/themes/my-monokai.yaml index 09b49f57..22d5344f 100644 --- a/themes/my-monokai.yaml +++ b/themes/my-monokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vicobill.my-monokai" version: "1.0.0" installs: 747 + rating: 0 + ratings: 0 author: "vicobill" repo: "https://github.com/vicobll/my-monokai" url: "https://marketplace.visualstudio.com/items?itemName=vicobill.my-monokai" diff --git a/themes/my-ocean-theme.yaml b/themes/my-ocean-theme.yaml new file mode 100644 index 00000000..60fd6451 --- /dev/null +++ b/themes/my-ocean-theme.yaml @@ -0,0 +1,52 @@ +name: "My Ocean Theme" +source: + marketplace_id: "Akilan.akil" + version: "0.0.1" + installs: 5 + rating: 0 + ratings: 0 + author: "Akilan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Akilan.akil" +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#3FB950" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "green" + hue: 258 + pair: null + contrast: + fg: 77.5 + black: 13.1 + red: 52.6 + green: 52.1 + yellow: 52.2 + blue: 52.2 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 29.3 + brightRed: 64.8 + brightGreen: 52.1 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 100.9 diff --git a/themes/my-oceanic.yaml b/themes/my-oceanic.yaml index 6a1b6677..70dfccf3 100644 --- a/themes/my-oceanic.yaml +++ b/themes/my-oceanic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZAndy.my-oceanic-theme" version: "1.0.0" installs: 10 + rating: 0 + ratings: 0 author: "ZAndy" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ZAndy.my-oceanic-theme" diff --git a/themes/my-theme.yaml b/themes/my-theme.yaml index bf86a8eb..c6e8a1d0 100644 --- a/themes/my-theme.yaml +++ b/themes/my-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yanchenliu.lyc-theme" version: "0.0.2" installs: 44 + rating: 0 + ratings: 0 author: "yanchenliu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=yanchenliu.lyc-theme" diff --git a/themes/my-zu.yaml b/themes/my-zu.yaml index 5232a521..e181279c 100644 --- a/themes/my-zu.yaml +++ b/themes/my-zu.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "myuzu-eop.myuzu" version: "0.0.1" installs: 52 + rating: 5 + ratings: 1 author: "Myuzu" repo: "https://github.com/EduardBOP/Myuzu-Theme" url: "https://marketplace.visualstudio.com/items?itemName=myuzu-eop.myuzu" diff --git a/themes/mycode-dark.yaml b/themes/mycode-dark.yaml new file mode 100644 index 00000000..2dddf1e9 --- /dev/null +++ b/themes/mycode-dark.yaml @@ -0,0 +1,52 @@ +name: "MyCode Dark" +source: + marketplace_id: "KorotkovVitaliy.mycode-dark" + version: "0.4.0" + installs: 157 + rating: 0 + ratings: 0 + author: "KorotkovVitaliy" + repo: "https://github.com/korotkovv/mycode-dark" + url: "https://marketplace.visualstudio.com/items?itemName=KorotkovVitaliy.mycode-dark" +colors: + bg: "#171717" + fg: "#D4D4D4" + black: "#565454" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.5 + black: 14.9 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/mygo.yaml b/themes/mygo.yaml index c2068eb4..962a8231 100644 --- a/themes/mygo.yaml +++ b/themes/mygo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TehMatcha.roselia-theme" version: "4.4.0" installs: 1278 + rating: 5 + ratings: 2 author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-roselia-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" diff --git a/themes/mynthra.yaml b/themes/mynthra.yaml index 46730762..499a4290 100644 --- a/themes/mynthra.yaml +++ b/themes/mynthra.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mynthra.mynthra-theme" version: "0.3.0" installs: 42 + rating: 0 + ratings: 0 author: "Mynthra" repo: "https://github.com/hamzakargin/Mynthra" url: "https://marketplace.visualstudio.com/items?itemName=Mynthra.mynthra-theme" diff --git a/themes/myoptic-v2.yaml b/themes/myoptic-v2.yaml index b20899e1..a2247c8f 100644 --- a/themes/myoptic-v2.yaml +++ b/themes/myoptic-v2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "doitalldev.myoptic-Theme-color-theme" version: "2.0.2" installs: 660 + rating: 0 + ratings: 0 author: "doitalldev" repo: "https://github.com/doitalldev/myoptic-Theme" url: "https://marketplace.visualstudio.com/items?itemName=doitalldev.myoptic-Theme-color-theme" diff --git a/themes/myoptic.yaml b/themes/myoptic.yaml index da45f8c3..260583e6 100644 --- a/themes/myoptic.yaml +++ b/themes/myoptic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "refactorthis.myoptic" version: "1.0.6" installs: 213 + rating: 0 + ratings: 0 author: "refactor_this" repo: "https://github.com/refactor-this/myoptic-Theme" url: "https://marketplace.visualstudio.com/items?itemName=refactorthis.myoptic" diff --git a/themes/myrteal.yaml b/themes/myrteal.yaml index ca5904ab..e8c89b06 100644 --- a/themes/myrteal.yaml +++ b/themes/myrteal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "enesozturk.myrteal" version: "0.9.0" installs: 386 + rating: 5 + ratings: 1 author: "enes" repo: "https://github.com/enesozturk/myrteal" url: "https://marketplace.visualstudio.com/items?itemName=enesozturk.myrteal" diff --git a/themes/mystic-moonshadow.yaml b/themes/mystic-moonshadow.yaml index 5f4c6f29..54acf3f2 100644 --- a/themes/mystic-moonshadow.yaml +++ b/themes/mystic-moonshadow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TechArtem.mystic-moonshadow" version: "1.0.9" installs: 715 + rating: 5 + ratings: 1 author: "TechArtem" repo: "https://github.com/Rabbitarts/mystic-moonshadow-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=TechArtem.mystic-moonshadow" diff --git a/themes/mystic.yaml b/themes/mystic.yaml index ac330418..37a54f7f 100644 --- a/themes/mystic.yaml +++ b/themes/mystic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "securisec.hapsida-securisec" version: "0.0.30" installs: 226 + rating: 5 + ratings: 1 author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" diff --git a/themes/mystico-c64-pepto-ntsc-sony.yaml b/themes/mystico-c64-pepto-ntsc-sony.yaml index c6697fbd..7b35fa4e 100644 --- a/themes/mystico-c64-pepto-ntsc-sony.yaml +++ b/themes/mystico-c64-pepto-ntsc-sony.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Chibantichic.mystico-c64" version: "0.16.0" installs: 1459 + rating: 5 + ratings: 2 author: "Chibantichic" repo: "https://github.com/chibanti/mystico-c64-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-c64" diff --git a/themes/mystico-c64-pepto-pal.yaml b/themes/mystico-c64-pepto-pal.yaml index 45789746..814e24ca 100644 --- a/themes/mystico-c64-pepto-pal.yaml +++ b/themes/mystico-c64-pepto-pal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Chibantichic.mystico-c64" version: "0.16.0" installs: 1459 + rating: 5 + ratings: 2 author: "Chibantichic" repo: "https://github.com/chibanti/mystico-c64-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-c64" diff --git a/themes/mystico-c64.yaml b/themes/mystico-c64.yaml index 17f7ba85..e974d7e4 100644 --- a/themes/mystico-c64.yaml +++ b/themes/mystico-c64.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Chibantichic.mystico-c64" version: "0.16.0" installs: 1459 + rating: 5 + ratings: 2 author: "Chibantichic" repo: "https://github.com/chibanti/mystico-c64-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-c64" diff --git a/themes/mystico-deep-purple.yaml b/themes/mystico-deep-purple.yaml index c61efe09..dad67e48 100644 --- a/themes/mystico-deep-purple.yaml +++ b/themes/mystico-deep-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Chibantichic.mystico-deep-purple" version: "0.28.0" installs: 621 + rating: 0 + ratings: 0 author: "Chibantichic" repo: "https://github.com/chibanti/mystico-deep-purple-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-deep-purple" diff --git a/themes/mystico-forest-ocean.yaml b/themes/mystico-forest-ocean.yaml index 84555d28..1936bba5 100644 --- a/themes/mystico-forest-ocean.yaml +++ b/themes/mystico-forest-ocean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Chibantichic.mystico" version: "0.4.0" installs: 443 + rating: 0 + ratings: 0 author: "Chibantichic" repo: "https://github.com/chibanti/mystico-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico" diff --git a/themes/mystico-mint.yaml b/themes/mystico-mint.yaml index 723fa489..b0c53420 100644 --- a/themes/mystico-mint.yaml +++ b/themes/mystico-mint.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Chibantichic.mystico-mint" version: "0.8.0" installs: 533 + rating: 0 + ratings: 0 author: "Chibantichic" repo: "https://github.com/chibanti/mystico-mint-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-mint" diff --git a/themes/mystico-plum.yaml b/themes/mystico-plum.yaml index afbf87e9..8203a46c 100644 --- a/themes/mystico-plum.yaml +++ b/themes/mystico-plum.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Chibantichic.mystico-plum" version: "0.36.0" installs: 225 + rating: 0 + ratings: 0 author: "Chibantichic" repo: "https://github.com/chibanti/mystico-plum-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-plum" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "teal" hue: 338 + pair: null contrast: fg: 97.9 black: 0 diff --git a/themes/myvscode.yaml b/themes/myvscode.yaml index 007ef4de..e69a67a2 100644 --- a/themes/myvscode.yaml +++ b/themes/myvscode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Parth.mycolortheme" version: "0.0.8" installs: 2370 + rating: 5 + ratings: 1 author: "Parth" repo: "https://github.com/parthpanchal123/MyCustomVsTheme" url: "https://marketplace.visualstudio.com/items?itemName=Parth.mycolortheme" diff --git a/themes/mz-light-grey-sharp.yaml b/themes/mz-light-grey-sharp.yaml new file mode 100644 index 00000000..719ddd22 --- /dev/null +++ b/themes/mz-light-grey-sharp.yaml @@ -0,0 +1,52 @@ +name: "MZ Light Grey - Sharp" +source: + marketplace_id: "Malaz-YI.mz-light-grey" + version: "2.1.1" + installs: 3426 + rating: 0 + ratings: 0 + author: "Malaz-YI" + repo: "https://github.com/Malaz-YI/MZ-Light-Grey-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Malaz-YI.mz-light-grey" +colors: + bg: "#EEEEEE" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 95.9 + black: 95.9 + red: 63.9 + green: 39.1 + yellow: 47.8 + blue: 76 + magenta: 64.5 + cyan: 50.5 + white: 75.8 + brightBlack: 68.7 + brightRed: 63.9 + brightGreen: 30.8 + brightYellow: 30.9 + brightBlue: 76 + brightMagenta: 64.5 + brightCyan: 50.5 + brightWhite: 38.4 diff --git a/themes/n-darktheme.yaml b/themes/n-darktheme.yaml index 0be56208..af8428c2 100644 --- a/themes/n-darktheme.yaml +++ b/themes/n-darktheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Akako.n-darktheme" version: "0.3.3" installs: 2113 + rating: 5 + ratings: 2 author: "Akakø" repo: "https://github.com/Akako0/N-darkTheme" url: "https://marketplace.visualstudio.com/items?itemName=Akako.n-darktheme" diff --git a/themes/n0m4d.yaml b/themes/n0m4d.yaml index 25f0658d..9af194d0 100644 --- a/themes/n0m4d.yaml +++ b/themes/n0m4d.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iamnahid.n0m4D" version: "1.1.1" installs: 68 + rating: 0 + ratings: 0 author: "iamnahid" repo: "https://github.com/iamnahid/VS-themes" url: "https://marketplace.visualstudio.com/items?itemName=iamnahid.n0m4D" diff --git a/themes/n7-lilac.yaml b/themes/n7-lilac.yaml index a67656c3..a711e594 100644 --- a/themes/n7-lilac.yaml +++ b/themes/n7-lilac.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "N7n.n7-vscode-themes" version: "1.1.0" installs: 1158 + rating: 5 + ratings: 1 author: "N7n" repo: "https://github.com/NSHoffman/N7-Themes" url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" diff --git a/themes/n7-maya.yaml b/themes/n7-maya.yaml index 7aea13be..9cd642d9 100644 --- a/themes/n7-maya.yaml +++ b/themes/n7-maya.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "N7n.n7-vscode-themes" version: "1.1.0" installs: 1158 + rating: 5 + ratings: 1 author: "N7n" repo: "https://github.com/NSHoffman/N7-Themes" url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" diff --git a/themes/n7-night-vision.yaml b/themes/n7-night-vision.yaml index 22c6001d..c01075e1 100644 --- a/themes/n7-night-vision.yaml +++ b/themes/n7-night-vision.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "N7n.n7-vscode-themes" version: "1.1.0" installs: 1158 + rating: 5 + ratings: 1 author: "N7n" repo: "https://github.com/NSHoffman/N7-Themes" url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" diff --git a/themes/n7-purple-green.yaml b/themes/n7-purple-green.yaml index 3c1d261b..1ca099bf 100644 --- a/themes/n7-purple-green.yaml +++ b/themes/n7-purple-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "N7n.n7-vscode-themes" version: "1.1.0" installs: 1158 + rating: 5 + ratings: 1 author: "N7n" repo: "https://github.com/NSHoffman/N7-Themes" url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" diff --git a/themes/n7-red-flare.yaml b/themes/n7-red-flare.yaml index 4416c4a5..415b20de 100644 --- a/themes/n7-red-flare.yaml +++ b/themes/n7-red-flare.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "N7n.n7-vscode-themes" version: "1.1.0" installs: 1158 + rating: 5 + ratings: 1 author: "N7n" repo: "https://github.com/NSHoffman/N7-Themes" url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" diff --git a/themes/n7-soft-pink.yaml b/themes/n7-soft-pink.yaml index cd3ad544..977c86aa 100644 --- a/themes/n7-soft-pink.yaml +++ b/themes/n7-soft-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "N7n.n7-vscode-themes" version: "1.1.0" installs: 1158 + rating: 5 + ratings: 1 author: "N7n" repo: "https://github.com/NSHoffman/N7-Themes" url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" diff --git a/themes/nachop-dark.yaml b/themes/nachop-dark.yaml new file mode 100644 index 00000000..f872485b --- /dev/null +++ b/themes/nachop-dark.yaml @@ -0,0 +1,52 @@ +name: "Nachop Dark" +source: + marketplace_id: "nachop51.nachop-theme" + version: "2.0.0" + installs: 303 + rating: 5 + ratings: 1 + author: "Nachop Peralta" + repo: "https://github.com/nachop51/nachop-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nachop51.nachop-theme" +colors: + bg: "#191C21" + fg: "#DCDFEB" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#F0C758" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#FFEC80" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 261 + pair: "Nachop Light" + contrast: + fg: 85.9 + black: 8.3 + red: 36.2 + green: 59.8 + yellow: 74 + blue: 49.1 + magenta: 38.5 + cyan: 52 + white: 82.5 + brightBlack: 14.9 + brightRed: 45.5 + brightGreen: 76.2 + brightYellow: 93.2 + brightBlue: 63.2 + brightMagenta: 49.7 + brightCyan: 67.3 + brightWhite: 90.1 diff --git a/themes/nachop-light-bordered.yaml b/themes/nachop-light-bordered.yaml new file mode 100644 index 00000000..466e00b3 --- /dev/null +++ b/themes/nachop-light-bordered.yaml @@ -0,0 +1,52 @@ +name: "Nachop Light Bordered" +source: + marketplace_id: "nachop51.nachop-theme" + version: "2.0.0" + installs: 303 + rating: 5 + ratings: 1 + author: "Nachop Peralta" + repo: "https://github.com/nachop51/nachop-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nachop51.nachop-theme" +colors: + bg: "#F8F4FA" + fg: "#5C6166" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#F0C758" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#FFEC80" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 75.4 + black: 86.8 + red: 58.2 + green: 35.1 + yellow: 21.6 + blue: 45.4 + magenta: 55.8 + cyan: 42.7 + white: 13.6 + brightBlack: 79.8 + brightRed: 48.9 + brightGreen: 19.5 + brightYellow: 0 + brightBlue: 31.9 + brightMagenta: 44.9 + brightCyan: 28 + brightWhite: 0 diff --git a/themes/nachop-light.yaml b/themes/nachop-light.yaml new file mode 100644 index 00000000..59fc49e5 --- /dev/null +++ b/themes/nachop-light.yaml @@ -0,0 +1,52 @@ +name: "Nachop Light" +source: + marketplace_id: "nachop51.nachop-theme" + version: "2.0.0" + installs: 303 + rating: 5 + ratings: 1 + author: "Nachop Peralta" + repo: "https://github.com/nachop51/nachop-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nachop51.nachop-theme" +colors: + bg: "#F5F3F5" + fg: "#5C6166" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#F0C758" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#FFEC80" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "light" + accent: "pink" + hue: null + pair: "Nachop Dark" + contrast: + fg: 74.4 + black: 85.8 + red: 57.1 + green: 34.1 + yellow: 20.6 + blue: 44.4 + magenta: 54.8 + cyan: 41.7 + white: 12.6 + brightBlack: 78.8 + brightRed: 47.9 + brightGreen: 18.5 + brightYellow: 0 + brightBlue: 30.9 + brightMagenta: 43.8 + brightCyan: 27 + brightWhite: 0 diff --git a/themes/nada-theme.yaml b/themes/nada-theme.yaml index 69faf77a..5d58e13d 100644 --- a/themes/nada-theme.yaml +++ b/themes/nada-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nada.nada" version: "1.16.0" installs: 5882 + rating: 5 + ratings: 4 author: "Adan Perez" repo: "https://github.com/adanperez/nada-theme" url: "https://marketplace.visualstudio.com/items?itemName=nada.nada" diff --git a/themes/nairobi-dark.yaml b/themes/nairobi-dark.yaml index e779fda5..acd78abe 100644 --- a/themes/nairobi-dark.yaml +++ b/themes/nairobi-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AmaniJ.nairobi-dark" version: "0.0.1" installs: 390 + rating: 5 + ratings: 1 author: "Amani. J" repo: "https://github.com/amani-joseph/Nairobi-dark-VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=AmaniJ.nairobi-dark" diff --git a/themes/nanami-madobe-theme.yaml b/themes/nanami-madobe-theme.yaml new file mode 100644 index 00000000..64a72d12 --- /dev/null +++ b/themes/nanami-madobe-theme.yaml @@ -0,0 +1,52 @@ +name: "Nanami Madobe Theme" +source: + marketplace_id: "tyvy.nanami-madobe-theme" + version: "2.0.0" + installs: 191 + rating: 5 + ratings: 1 + author: "tyvy" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tyvy.nanami-madobe-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#D9430D" + green: "#00BC00" + yellow: "#F2BC1B" + blue: "#085CA6" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#FF4400" + brightGreen: "#14CE14" + brightYellow: "#FFBF00" + brightBlue: "#004079" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 69.3 + green: 49.2 + yellow: 31.7 + blue: 82.8 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 60.4 + brightGreen: 40.9 + brightYellow: 28.5 + brightBlue: 93.6 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/nanowise.yaml b/themes/nanowise.yaml index 2b75c89c..ec06ba48 100644 --- a/themes/nanowise.yaml +++ b/themes/nanowise.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nanowise.nanowise" version: "1.2.1" installs: 2163 + rating: 5 + ratings: 3 author: "nanowise" repo: "https://github.com/istevkovski/nanowise-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nanowise.nanowise" diff --git a/themes/narasimha-fearless-dark-theme.yaml b/themes/narasimha-fearless-dark-theme.yaml index 4a946191..3a951226 100644 --- a/themes/narasimha-fearless-dark-theme.yaml +++ b/themes/narasimha-fearless-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BhootStudio.bhoot-theme" version: "1.0.4" installs: 78 + rating: 0 + ratings: 0 author: "Bhoot Studio" repo: "https://github.com/DebkantaMondal/Bhoot-VS-Theme" url: "https://marketplace.visualstudio.com/items?itemName=BhootStudio.bhoot-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 102.8 black: 0 diff --git a/themes/narixius-one-dark.yaml b/themes/narixius-one-dark.yaml new file mode 100644 index 00000000..14e56096 --- /dev/null +++ b/themes/narixius-one-dark.yaml @@ -0,0 +1,52 @@ +name: "Narixius One Dark" +source: + marketplace_id: "Narixius.narixius-vscode-theme" + version: "0.0.13" + installs: 121 + rating: 5 + ratings: 1 + author: "Narixius" + repo: "https://github.com/Narixius/narixius-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Narixius.narixius-vscode-theme" +colors: + bg: "#0F1419" + fg: "#BFBAB0" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 249 + pair: null + contrast: + fg: 64.7 + black: 9.2 + red: 37 + green: 60.7 + yellow: 48.9 + blue: 50 + magenta: 39.4 + cyan: 52.8 + white: 83.4 + brightBlack: 15.8 + brightRed: 46.4 + brightGreen: 77.1 + brightYellow: 61.5 + brightBlue: 64.1 + brightMagenta: 50.6 + brightCyan: 68.1 + brightWhite: 91 diff --git a/themes/narunika.yaml b/themes/narunika.yaml index 36222a79..f5eca8d9 100644 --- a/themes/narunika.yaml +++ b/themes/narunika.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sandifa.narunika" version: "4.2.4" installs: 103 + rating: 0 + ratings: 0 author: "sandifa" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sandifa.narunika" diff --git a/themes/naruto-akatsuki.yaml b/themes/naruto-akatsuki.yaml index bce78fdc..0311c4ff 100644 --- a/themes/naruto-akatsuki.yaml +++ b/themes/naruto-akatsuki.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-hinata-hyuga-byakugan-vision.yaml b/themes/naruto-hinata-hyuga-byakugan-vision.yaml index 0aa58f8c..d7817b74 100644 --- a/themes/naruto-hinata-hyuga-byakugan-vision.yaml +++ b/themes/naruto-hinata-hyuga-byakugan-vision.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-hokage-dawn.yaml b/themes/naruto-hokage-dawn.yaml index 3968a106..4fd74960 100644 --- a/themes/naruto-hokage-dawn.yaml +++ b/themes/naruto-hokage-dawn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-hokage-orange.yaml b/themes/naruto-hokage-orange.yaml index 3383d166..565cf38e 100644 --- a/themes/naruto-hokage-orange.yaml +++ b/themes/naruto-hokage-orange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LunaCode.anime-theme" version: "0.0.3" installs: 377 + rating: 5 + ratings: 3 author: "LunaCode" repo: "https://github.com/BuildXO/anime-theme-pack" url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" diff --git a/themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml b/themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml index 8e06395a..0c3a01a0 100644 --- a/themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml +++ b/themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-jiraiya-gallant-toad-sage.yaml b/themes/naruto-jiraiya-gallant-toad-sage.yaml index 1a703171..fad18afc 100644 --- a/themes/naruto-jiraiya-gallant-toad-sage.yaml +++ b/themes/naruto-jiraiya-gallant-toad-sage.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-kakashi-copy-ninja.yaml b/themes/naruto-kakashi-copy-ninja.yaml index ff738933..b39d30ab 100644 --- a/themes/naruto-kakashi-copy-ninja.yaml +++ b/themes/naruto-kakashi-copy-ninja.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-kurama-nine-tails.yaml b/themes/naruto-kurama-nine-tails.yaml index 0a292092..58e6f69b 100644 --- a/themes/naruto-kurama-nine-tails.yaml +++ b/themes/naruto-kurama-nine-tails.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml b/themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml index 398ac535..a2e5f2f8 100644 --- a/themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml +++ b/themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-might-guy-gate-of-death-madara-battle.yaml b/themes/naruto-might-guy-gate-of-death-madara-battle.yaml index 4056b93d..2e16af08 100644 --- a/themes/naruto-might-guy-gate-of-death-madara-battle.yaml +++ b/themes/naruto-might-guy-gate-of-death-madara-battle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-might-guy-gates-of-youth.yaml b/themes/naruto-might-guy-gates-of-youth.yaml index 95d670e6..28511a11 100644 --- a/themes/naruto-might-guy-gates-of-youth.yaml +++ b/themes/naruto-might-guy-gates-of-youth.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-minato-namikaze-yellow-flash.yaml b/themes/naruto-minato-namikaze-yellow-flash.yaml index 7d683852..6c72bec7 100644 --- a/themes/naruto-minato-namikaze-yellow-flash.yaml +++ b/themes/naruto-minato-namikaze-yellow-flash.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-pain-nagato-rinnegan-god.yaml b/themes/naruto-pain-nagato-rinnegan-god.yaml index 1ff22512..931049cf 100644 --- a/themes/naruto-pain-nagato-rinnegan-god.yaml +++ b/themes/naruto-pain-nagato-rinnegan-god.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-sage-mode.yaml b/themes/naruto-sage-mode.yaml index c9bf7fc7..a00620ff 100644 --- a/themes/naruto-sage-mode.yaml +++ b/themes/naruto-sage-mode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-sakura-haruno-cherry-blossom-storm.yaml b/themes/naruto-sakura-haruno-cherry-blossom-storm.yaml index b47f7c6f..802c74a8 100644 --- a/themes/naruto-sakura-haruno-cherry-blossom-storm.yaml +++ b/themes/naruto-sakura-haruno-cherry-blossom-storm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-sasuke-uchiha-sharingan.yaml b/themes/naruto-sasuke-uchiha-sharingan.yaml index 9c5d52f1..734e117b 100644 --- a/themes/naruto-sasuke-uchiha-sharingan.yaml +++ b/themes/naruto-sasuke-uchiha-sharingan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-shikamaru-nara-shadow-possession.yaml b/themes/naruto-shikamaru-nara-shadow-possession.yaml index 534fd943..3ea9d1cd 100644 --- a/themes/naruto-shikamaru-nara-shadow-possession.yaml +++ b/themes/naruto-shikamaru-nara-shadow-possession.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/naruto-shinobi-night.yaml b/themes/naruto-shinobi-night.yaml index b1a9c42c..ce553ed2 100644 --- a/themes/naruto-shinobi-night.yaml +++ b/themes/naruto-shinobi-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/natasha-theme.yaml b/themes/natasha-theme.yaml index 44c7d83b..af9f1e71 100644 --- a/themes/natasha-theme.yaml +++ b/themes/natasha-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LucasAlmeida.natasha-tema" version: "1.6.0" installs: 1805 + rating: 5 + ratings: 1 author: "Lucas Almeida" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LucasAlmeida.natasha-tema" diff --git a/themes/natto-theme-2.yaml b/themes/natto-theme-2.yaml index 40293432..77573941 100644 --- a/themes/natto-theme-2.yaml +++ b/themes/natto-theme-2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nattohen.NaTTo-Theme" version: "1.5.11" installs: 303 + rating: 0 + ratings: 0 author: "nattohen" repo: null url: "https://marketplace.visualstudio.com/items?itemName=nattohen.NaTTo-Theme" diff --git a/themes/natural-faded-dark.yaml b/themes/natural-faded-dark.yaml index 5544ded8..f87c5142 100644 --- a/themes/natural-faded-dark.yaml +++ b/themes/natural-faded-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "null4bl3.natural-faded-dark" version: "0.1.3" installs: 251 + rating: 0 + ratings: 0 author: "null4bl3" repo: "https://github.com/null4bl3/natural-faded-dark" url: "https://marketplace.visualstudio.com/items?itemName=null4bl3.natural-faded-dark" diff --git a/themes/natural-green-growth-harmony.yaml b/themes/natural-green-growth-harmony.yaml new file mode 100644 index 00000000..b783e495 --- /dev/null +++ b/themes/natural-green-growth-harmony.yaml @@ -0,0 +1,52 @@ +name: "Natural Green - Growth & Harmony" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + rating: 5 + ratings: 1 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#0A1A0A" + fg: "#E8F5E9" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 144 + pair: null + contrast: + fg: 98 + black: 0 + red: 37.7 + green: 47.6 + yellow: 92.3 + blue: 43 + magenta: 32.6 + cyan: 56.5 + white: 96.1 + brightBlack: 9.1 + brightRed: 42.8 + brightGreen: 82 + brightYellow: 101.7 + brightBlue: 40.5 + brightMagenta: 41.5 + brightCyan: 91.2 + brightWhite: 106.9 diff --git a/themes/natural-green-light-growth-harmony.yaml b/themes/natural-green-light-growth-harmony.yaml index 4466567a..c9fb4a8b 100644 --- a/themes/natural-green-light-growth-harmony.yaml +++ b/themes/natural-green-light-growth-harmony.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/nature-color-theme.yaml b/themes/nature-color-theme.yaml index 75f89941..bf510fc9 100644 --- a/themes/nature-color-theme.yaml +++ b/themes/nature-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wavebeem.theme-unoduetre" version: "5.11.1" installs: 4290 + rating: 5 + ratings: 5 author: "Sage Fennel" repo: "https://github.com/wavebeem/vscode-theme-unoduetre" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" diff --git a/themes/nature-green-growth-harmony.yaml b/themes/nature-green-growth-harmony.yaml new file mode 100644 index 00000000..43afdaa1 --- /dev/null +++ b/themes/nature-green-growth-harmony.yaml @@ -0,0 +1,52 @@ +name: "Nature Green - Growth & Harmony" +source: + marketplace_id: "akashbadole.dev-ideas-themes" + version: "2.1.1" + installs: 406 + rating: 5 + ratings: 1 + author: "akashbadole" + repo: "https://github.com/akashsbadole/dev-psychology-themes" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" +colors: + bg: "#0D1B0D" + fg: "#E8F5E8" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#2196F3" + magenta: "#E91E63" + cyan: "#00BCD4" + white: "#ECEFF1" + brightBlack: "#37474F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFFF00" + brightBlue: "#448AFF" + brightMagenta: "#FF4081" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 144 + pair: null + contrast: + fg: 97.8 + black: 0 + red: 37.6 + green: 47.4 + yellow: 92.2 + blue: 42.9 + magenta: 32.5 + cyan: 56.4 + white: 96 + brightBlack: 8.9 + brightRed: 42.7 + brightGreen: 81.9 + brightYellow: 101.6 + brightBlue: 40.4 + brightMagenta: 41.3 + brightCyan: 91.1 + brightWhite: 106.8 diff --git a/themes/nature-green-light-growth-harmony.yaml b/themes/nature-green-light-growth-harmony.yaml index 714c3f83..cf180dec 100644 --- a/themes/nature-green-light-growth-harmony.yaml +++ b/themes/nature-green-light-growth-harmony.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/nature.yaml b/themes/nature.yaml index cf56ee47..eb09a83d 100644 --- a/themes/nature.yaml +++ b/themes/nature.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jonaqhan.jonaqhan" version: "4.8.0" installs: 753 + rating: 0 + ratings: 0 author: "Jonaqhan" repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" diff --git a/themes/nautilus.yaml b/themes/nautilus.yaml index a687d205..e5ec5f48 100644 --- a/themes/nautilus.yaml +++ b/themes/nautilus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sammarxz.nautiulus-theme" version: "1.0.0" installs: 2635 + rating: 3.5 + ratings: 2 author: "Sam Marxz" repo: "https://github.com/sammarxz/nautilus-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sammarxz.nautiulus-theme" diff --git a/themes/naver.yaml b/themes/naver.yaml index 270aea0f..ba7836df 100644 --- a/themes/naver.yaml +++ b/themes/naver.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Inticoy.naver-theme" version: "0.0.1" installs: 121 + rating: 0 + ratings: 0 author: "Inticoy" repo: "https://github.com/inticoy/naver-theme" url: "https://marketplace.visualstudio.com/items?itemName=Inticoy.naver-theme" diff --git a/themes/navy-flat.yaml b/themes/navy-flat.yaml index e803b989..cd1b04aa 100644 --- a/themes/navy-flat.yaml +++ b/themes/navy-flat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Willothy.navy-flat" version: "1.0.4" installs: 1016 + rating: 5 + ratings: 1 author: "Willothy" repo: "https://github.com/willothy/navy-flat" url: "https://marketplace.visualstudio.com/items?itemName=Willothy.navy-flat" diff --git a/themes/navy-nights-theme.yaml b/themes/navy-nights-theme.yaml index e5a84e89..2e8e5c66 100644 --- a/themes/navy-nights-theme.yaml +++ b/themes/navy-nights-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevangTomar.vscode-diverse-dye" version: "1.3.0" installs: 2595 + rating: 5 + ratings: 3 author: "Devang Tomar ⭐" repo: "https://github.com/devangtomar/vscode-diverse-dye" url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" diff --git a/themes/navy-theme.yaml b/themes/navy-theme.yaml index 78c7351a..e7f7787c 100644 --- a/themes/navy-theme.yaml +++ b/themes/navy-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "orS.navytheme" version: "0.0.5" installs: 1373 + rating: 0 + ratings: 0 author: "orS" repo: "https://github.com/orshemtov/navy-theme" url: "https://marketplace.visualstudio.com/items?itemName=orS.navytheme" diff --git a/themes/navy.yaml b/themes/navy.yaml index 6f090aec..73ef0d40 100644 --- a/themes/navy.yaml +++ b/themes/navy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "eshiraishi.navy-theme" version: "0.0.16" installs: 343 + rating: 0 + ratings: 0 author: "Enzo Shiraishi" repo: "https://github.com/eshiraishi/navy-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=eshiraishi.navy-theme" diff --git a/themes/nb-monochrome-dark.yaml b/themes/nb-monochrome-dark.yaml index 7ef73d6e..9d168905 100644 --- a/themes/nb-monochrome-dark.yaml +++ b/themes/nb-monochrome-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nicco.n234234" version: "0.2.0" installs: 416 + rating: 5 + ratings: 1 author: "nicco" repo: "https://github.com/nicco-b/n" url: "https://marketplace.visualstudio.com/items?itemName=nicco.n234234" diff --git a/themes/nebula-color-theme.yaml b/themes/nebula-color-theme.yaml index 99efb5f3..f0d70f74 100644 --- a/themes/nebula-color-theme.yaml +++ b/themes/nebula-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml b/themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml index 668d75c2..1a1fa653 100644 --- a/themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml +++ b/themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Fabocode.nebula-dark-theme" version: "1.0.0" installs: 34 + rating: 5 + ratings: 1 author: "Fabocode" repo: "https://github.com/FaboCodeDev/nebula-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Fabocode.nebula-dark-theme" diff --git a/themes/nebula-nights.yaml b/themes/nebula-nights.yaml index 9a30045e..13cc8015 100644 --- a/themes/nebula-nights.yaml +++ b/themes/nebula-nights.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Tom-Fynes.nebula-nights-pastel" version: "1.2.0" installs: 724 + rating: 5 + ratings: 1 author: "Tom-Fynes" repo: "https://github.com/tom-fynes/nebula-nights" url: "https://marketplace.visualstudio.com/items?itemName=Tom-Fynes.nebula-nights-pastel" diff --git a/themes/nebula-pro-dark.yaml b/themes/nebula-pro-dark.yaml index b36895a7..b1645eb8 100644 --- a/themes/nebula-pro-dark.yaml +++ b/themes/nebula-pro-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/nebula-surge.yaml b/themes/nebula-surge.yaml index 655f2d55..b08f4c51 100644 --- a/themes/nebula-surge.yaml +++ b/themes/nebula-surge.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DefinitionGroup.nebula-surge" version: "1.0.0" installs: 8 + rating: 0 + ratings: 0 author: "DefinitionGroup" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DefinitionGroup.nebula-surge" diff --git a/themes/nebula-symphony-dark-pro.yaml b/themes/nebula-symphony-dark-pro.yaml index b03eddd8..501cd05c 100644 --- a/themes/nebula-symphony-dark-pro.yaml +++ b/themes/nebula-symphony-dark-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Keevdev.nebula-symphony" version: "1.0.8" installs: 226 + rating: 5 + ratings: 1 author: "Keevdev" repo: "https://github.com/keeevdev/nebula-symphony" url: "https://marketplace.visualstudio.com/items?itemName=Keevdev.nebula-symphony" diff --git a/themes/nebula-symphony-dark.yaml b/themes/nebula-symphony-dark.yaml index 48892d7f..851b8be5 100644 --- a/themes/nebula-symphony-dark.yaml +++ b/themes/nebula-symphony-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Keevdev.nebula-symphony" version: "1.0.8" installs: 226 + rating: 5 + ratings: 1 author: "Keevdev" repo: "https://github.com/keeevdev/nebula-symphony" url: "https://marketplace.visualstudio.com/items?itemName=Keevdev.nebula-symphony" diff --git a/themes/nebula-symphony-light.yaml b/themes/nebula-symphony-light.yaml index f63a9d47..3d51a2f0 100644 --- a/themes/nebula-symphony-light.yaml +++ b/themes/nebula-symphony-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Keevdev.nebula-symphony" version: "1.0.8" installs: 226 + rating: 5 + ratings: 1 author: "Keevdev" repo: "https://github.com/keeevdev/nebula-symphony" url: "https://marketplace.visualstudio.com/items?itemName=Keevdev.nebula-symphony" diff --git a/themes/nebula.yaml b/themes/nebula.yaml index 8cc6ab6c..6b2ca180 100644 --- a/themes/nebula.yaml +++ b/themes/nebula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KrisSchultz.nova-theme" version: "1.1.0" installs: 85 + rating: 0 + ratings: 0 author: "Kris Schultz" repo: "https://github.com/Krxtopher/vscode-theme-nova" url: "https://marketplace.visualstudio.com/items?itemName=KrisSchultz.nova-theme" diff --git a/themes/nebular-theme.yaml b/themes/nebular-theme.yaml index e38bbca2..152160ec 100644 --- a/themes/nebular-theme.yaml +++ b/themes/nebular-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "obsilab.nebular" version: "1.0.3" installs: 572 + rating: 5 + ratings: 2 author: "Obsilab" repo: "https://github.com/LucasPlacentino/nebular-vscode" url: "https://marketplace.visualstudio.com/items?itemName=obsilab.nebular" diff --git a/themes/nebularomantic.yaml b/themes/nebularomantic.yaml index 4ac3f0e1..6d6d9190 100644 --- a/themes/nebularomantic.yaml +++ b/themes/nebularomantic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ElizaMuss.elizas-pride-themes" version: "1.0.2" installs: 848 + rating: 0 + ratings: 0 author: "Eliza Muss" repo: "https://github.com/The-Gamer69/elizas-pride-themes" url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" diff --git a/themes/nebulous-luna.yaml b/themes/nebulous-luna.yaml index 2a300821..8a521667 100644 --- a/themes/nebulous-luna.yaml +++ b/themes/nebulous-luna.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jtpeller.nebulous-color-themes" version: "0.0.4" installs: 41 + rating: 5 + ratings: 1 author: "jtpeller" repo: "https://github.com/jtpeller/nebulous-color-themes" url: "https://marketplace.visualstudio.com/items?itemName=jtpeller.nebulous-color-themes" diff --git a/themes/necessity-aaa-light.yaml b/themes/necessity-aaa-light.yaml index 9cffcea7..3d0ed76e 100644 --- a/themes/necessity-aaa-light.yaml +++ b/themes/necessity-aaa-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vxint.necessity" version: "1.8.0" installs: 59 + rating: 5 + ratings: 1 author: "Vortex Interactive" repo: "https://github.com/vortexint/Necessity" url: "https://marketplace.visualstudio.com/items?itemName=vxint.necessity" diff --git a/themes/necessity-aaa.yaml b/themes/necessity-aaa.yaml index f93374af..decc2106 100644 --- a/themes/necessity-aaa.yaml +++ b/themes/necessity-aaa.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vxint.necessity" version: "1.8.0" installs: 59 + rating: 5 + ratings: 1 author: "Vortex Interactive" repo: "https://github.com/vortexint/Necessity" url: "https://marketplace.visualstudio.com/items?itemName=vxint.necessity" diff --git a/themes/negative-theme.yaml b/themes/negative-theme.yaml index 0e1ee2f3..6f84c576 100644 --- a/themes/negative-theme.yaml +++ b/themes/negative-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Negative.negative-theme" version: "2.1.3" installs: 3038 + rating: 0 + ratings: 0 author: "Negative" repo: "https://github.com/joaom00/negative-theme" url: "https://marketplace.visualstudio.com/items?itemName=Negative.negative-theme" diff --git a/themes/neil-s-theme-dark.yaml b/themes/neil-s-theme-dark.yaml index f685bfba..012ed75e 100644 --- a/themes/neil-s-theme-dark.yaml +++ b/themes/neil-s-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "njp-anderson.neils-vscode-theme" version: "0.0.3" installs: 15 + rating: 0 + ratings: 0 author: "N Anderson" repo: "https://github.com/njpanderson/neils-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=njp-anderson.neils-vscode-theme" diff --git a/themes/neil-s-theme.yaml b/themes/neil-s-theme.yaml index 10d4a924..9547babf 100644 --- a/themes/neil-s-theme.yaml +++ b/themes/neil-s-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "njp-anderson.neils-vscode-theme" version: "0.0.3" installs: 15 + rating: 0 + ratings: 0 author: "N Anderson" repo: "https://github.com/njpanderson/neils-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=njp-anderson.neils-vscode-theme" diff --git a/themes/nekhbet.yaml b/themes/nekhbet.yaml index 5a375f8b..32739469 100644 --- a/themes/nekhbet.yaml +++ b/themes/nekhbet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "inamdarminaz.nekhbet" version: "1.1.0" installs: 551 + rating: 5 + ratings: 1 author: "inamdarminaz" repo: "https://github.com/inamdarminaz/nekhbet" url: "https://marketplace.visualstudio.com/items?itemName=inamdarminaz.nekhbet" diff --git a/themes/neki.yaml b/themes/neki.yaml index 16898aea..fa79b8e5 100644 --- a/themes/neki.yaml +++ b/themes/neki.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Azelky.neki" version: "1.1.1" installs: 302 + rating: 0 + ratings: 0 author: "Azelky" repo: "https://github.com/azelky/neki-theme" url: "https://marketplace.visualstudio.com/items?itemName=Azelky.neki" diff --git a/themes/neo-hacker-soft-premium.yaml b/themes/neo-hacker-soft-premium.yaml index ef77d048..caad4d7e 100644 --- a/themes/neo-hacker-soft-premium.yaml +++ b/themes/neo-hacker-soft-premium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.theme-icon-pack" version: "1.0.4" installs: 906 + rating: 0 + ratings: 0 author: "SecureDev" repo: "https://github.com/codewithevilxd/theme-icon-pack" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.theme-icon-pack" diff --git a/themes/neo-nuxt-matte.yaml b/themes/neo-nuxt-matte.yaml index 10923945..67debd52 100644 --- a/themes/neo-nuxt-matte.yaml +++ b/themes/neo-nuxt-matte.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CeoDev.neo-nuxt3-blend" version: "3.3.4" installs: 2699 + rating: 5 + ratings: 1 author: "Vantol Bennett" repo: "https://github.com/titan-65/neo-nuxt" url: "https://marketplace.visualstudio.com/items?itemName=CeoDev.neo-nuxt3-blend" diff --git a/themes/neo-seoul-dark.yaml b/themes/neo-seoul-dark.yaml index fd91c98b..4e5a984b 100644 --- a/themes/neo-seoul-dark.yaml +++ b/themes/neo-seoul-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "taotao7.neo-seoul-theme" version: "0.0.3" installs: 251 + rating: 5 + ratings: 1 author: "taotao7" repo: "https://github.com/taotao7/neoseoul-theme" url: "https://marketplace.visualstudio.com/items?itemName=taotao7.neo-seoul-theme" diff --git a/themes/neo-seoul-light.yaml b/themes/neo-seoul-light.yaml index 721a152b..67b786d5 100644 --- a/themes/neo-seoul-light.yaml +++ b/themes/neo-seoul-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "taotao7.neo-seoul-theme" version: "0.0.3" installs: 251 + rating: 5 + ratings: 1 author: "taotao7" repo: "https://github.com/taotao7/neoseoul-theme" url: "https://marketplace.visualstudio.com/items?itemName=taotao7.neo-seoul-theme" diff --git a/themes/neo-vscode-theme.yaml b/themes/neo-vscode-theme.yaml index f287da17..4a2ab66e 100644 --- a/themes/neo-vscode-theme.yaml +++ b/themes/neo-vscode-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "palashmon.theme-neo" version: "1.1.1" installs: 2099 + rating: 5 + ratings: 3 author: "Palash Mondal" repo: "https://github.com/palashmon/neo-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=palashmon.theme-neo" diff --git a/themes/neofusion.yaml b/themes/neofusion.yaml index 6777169b..b722690f 100644 --- a/themes/neofusion.yaml +++ b/themes/neofusion.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diegoulloao.neofusion-theme" version: "1.0.6" installs: 197 + rating: 5 + ratings: 2 author: "diegoulloao" repo: "https://github.com/diegoulloao/neofusion.vscode" url: "https://marketplace.visualstudio.com/items?itemName=diegoulloao.neofusion-theme" diff --git a/themes/neogenesis.yaml b/themes/neogenesis.yaml index 2790b7a1..5343aea9 100644 --- a/themes/neogenesis.yaml +++ b/themes/neogenesis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Neogenesis.neogenesis-theme" version: "0.0.4" installs: 597 + rating: 0 + ratings: 0 author: "Neogenesis" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Neogenesis.neogenesis-theme" diff --git a/themes/neon-black.yaml b/themes/neon-black.yaml index 938bba7e..b2399c9f 100644 --- a/themes/neon-black.yaml +++ b/themes/neon-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ethan04.Neon-Black" version: "0.0.1" installs: 873 + rating: 0 + ratings: 0 author: "Ethan04" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Ethan04.Neon-Black" diff --git a/themes/neon-color-dark-theme.yaml b/themes/neon-color-dark-theme.yaml index 80949719..3f304744 100644 --- a/themes/neon-color-dark-theme.yaml +++ b/themes/neon-color-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mdmarufsarker.maruf-sarker" version: "0.1.1" installs: 29154 + rating: 5 + ratings: 6 author: "Md. Maruf Sarker" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" diff --git a/themes/neon-cyber.yaml b/themes/neon-cyber.yaml index d947b231..16bd79ef 100644 --- a/themes/neon-cyber.yaml +++ b/themes/neon-cyber.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodewithBismillah.chroma-library" version: "1.2.1" installs: 358 + rating: 5 + ratings: 1 author: "Code with Bismillah" repo: "https://github.com/mubashir1837/Chroma-Library" url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" diff --git a/themes/neon-cyberpunk.yaml b/themes/neon-cyberpunk.yaml index bf1bba14..9cbb8b94 100644 --- a/themes/neon-cyberpunk.yaml +++ b/themes/neon-cyberpunk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" version: "1.0.0" installs: 1549 + rating: 0 + ratings: 0 author: "Little Waterfall" repo: "https://github.com/LittleWaterfall/vscode-neon-glow" url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" diff --git a/themes/neon-dream-code.yaml b/themes/neon-dream-code.yaml index b487b803..ecdb679d 100644 --- a/themes/neon-dream-code.yaml +++ b/themes/neon-dream-code.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/neon-dreams.yaml b/themes/neon-dreams.yaml new file mode 100644 index 00000000..19fdd982 --- /dev/null +++ b/themes/neon-dreams.yaml @@ -0,0 +1,52 @@ +name: "Neon Dreams" +source: + marketplace_id: "CursorThemes.neon-dreams-theme" + version: "1.5.0" + installs: 614 + rating: 5 + ratings: 1 + author: "Cursor Themes" + repo: "https://github.com/Cursor-Themes/neon_dreams" + url: "https://marketplace.visualstudio.com/items?itemName=CursorThemes.neon-dreams-theme" +colors: + bg: "#1A0F1A" + fg: "#E8D8E8" + black: "#1A0F1A" + red: "#DD77AA" + green: "#99DDAA" + yellow: "#DDAA77" + blue: "#88CCDD" + magenta: "#DD77DD" + cyan: "#77DDCC" + white: "#E8D8E8" + brightBlack: "#5A4A5A" + brightRed: "#EE88BB" + brightGreen: "#AAEEBB" + brightYellow: "#EEBB88" + brightBlue: "#99DDEE" + brightMagenta: "#EE88EE" + brightCyan: "#88EECC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 327 + pair: null + contrast: + fg: 85.2 + black: 0 + red: 46.5 + green: 76 + yellow: 61 + blue: 68.9 + magenta: 49.1 + cyan: 74.9 + white: 85.2 + brightBlack: 13.2 + brightRed: 55 + brightGreen: 86.3 + brightYellow: 70.7 + brightBlue: 78.9 + brightMagenta: 57.8 + brightCyan: 84.2 + brightWhite: 107.2 diff --git a/themes/neon-dusk.yaml b/themes/neon-dusk.yaml index 5393390a..fb4402ee 100644 --- a/themes/neon-dusk.yaml +++ b/themes/neon-dusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "manufdz19.neon-dusk-theme" version: "0.0.1" installs: 9 + rating: 0 + ratings: 0 author: "manufdz19" repo: "https://github.com/manufdz19/neon-dusk-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=manufdz19.neon-dusk-theme" diff --git a/themes/neon-forest.yaml b/themes/neon-forest.yaml index 763fe8f7..ae39ae19 100644 --- a/themes/neon-forest.yaml +++ b/themes/neon-forest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "maxludden.neon-forest" version: "0.0.1" installs: 803 + rating: 0 + ratings: 0 author: "maxludden" repo: "https://github.com/maxludden/neon-forest" url: "https://marketplace.visualstudio.com/items?itemName=maxludden.neon-forest" diff --git a/themes/neon-glow.yaml b/themes/neon-glow.yaml index 5944cd3b..9bbebe04 100644 --- a/themes/neon-glow.yaml +++ b/themes/neon-glow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" version: "1.0.0" installs: 1549 + rating: 0 + ratings: 0 author: "Little Waterfall" repo: "https://github.com/LittleWaterfall/vscode-neon-glow" url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" diff --git a/themes/neon-green-light.yaml b/themes/neon-green-light.yaml index 106f8d08..e1cde709 100644 --- a/themes/neon-green-light.yaml +++ b/themes/neon-green-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "luongnv89.neon-green-theme" version: "1.2.1" installs: 31 + rating: 0 + ratings: 0 author: "luongnv89" repo: "https://github.com/luongnv89/vscode-theme-neon-green" url: "https://marketplace.visualstudio.com/items?itemName=luongnv89.neon-green-theme" diff --git a/themes/neon-green-midnight.yaml b/themes/neon-green-midnight.yaml index 21e83d48..c5418ab1 100644 --- a/themes/neon-green-midnight.yaml +++ b/themes/neon-green-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "luongnv89.neon-green-theme" version: "1.2.1" installs: 31 + rating: 0 + ratings: 0 author: "luongnv89" repo: "https://github.com/luongnv89/vscode-theme-neon-green" url: "https://marketplace.visualstudio.com/items?itemName=luongnv89.neon-green-theme" diff --git a/themes/neon-matrix.yaml b/themes/neon-matrix.yaml index 113d4cfa..b318f3a5 100644 --- a/themes/neon-matrix.yaml +++ b/themes/neon-matrix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" version: "1.0.0" installs: 1549 + rating: 0 + ratings: 0 author: "Little Waterfall" repo: "https://github.com/LittleWaterfall/vscode-neon-glow" url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" diff --git a/themes/neon-noir.yaml b/themes/neon-noir.yaml index a8cb1f05..24fa8ce8 100644 --- a/themes/neon-noir.yaml +++ b/themes/neon-noir.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codeM.mystic-dark-collection" version: "0.1.0" installs: 86 + rating: 0 + ratings: 0 author: "Mustafa Özdemir" repo: null url: "https://marketplace.visualstudio.com/items?itemName=codeM.mystic-dark-collection" diff --git a/themes/neon-ocean.yaml b/themes/neon-ocean.yaml index d246fb1c..97db3037 100644 --- a/themes/neon-ocean.yaml +++ b/themes/neon-ocean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" version: "1.0.0" installs: 1549 + rating: 0 + ratings: 0 author: "Little Waterfall" repo: "https://github.com/LittleWaterfall/vscode-neon-glow" url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" diff --git a/themes/neon-palette-themes-red.yaml b/themes/neon-palette-themes-red.yaml new file mode 100644 index 00000000..eb873355 --- /dev/null +++ b/themes/neon-palette-themes-red.yaml @@ -0,0 +1,52 @@ +name: "Neon Palette Themes (Red)" +source: + marketplace_id: "Jofa8.neon-palette-themes" + version: "0.0.1" + installs: 1870 + rating: 5 + ratings: 1 + author: "Jofa8" + repo: "https://github.com/Jofa8/neon-palette-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Jofa8.neon-palette-themes" +colors: + bg: "#12130F" + fg: "#D0CCD1" + black: "#000000" + red: "#CD3131" + green: "#7FE960" + yellow: "#FFEC03" + blue: "#03B4FF" + magenta: "#FF5CE4" + cyan: "#02E1D9" + white: "#D0CCD1" + brightBlack: "#8C8C8C" + brightRed: "#FF5E5E" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 75.8 + black: 0 + red: 27.1 + green: 78.3 + yellow: 93 + blue: 56.1 + magenta: 50.6 + cyan: 74.5 + white: 75.8 + brightBlack: 40 + brightRed: 45.6 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/neon-shimmer-amethyst-core.yaml b/themes/neon-shimmer-amethyst-core.yaml index 4cb24137..2ec55ccf 100644 --- a/themes/neon-shimmer-amethyst-core.yaml +++ b/themes/neon-shimmer-amethyst-core.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "piperunner.neon-shimmer" version: "1.2.0" installs: 16857 + rating: 5 + ratings: 2 author: "Pipe Runner" repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" diff --git a/themes/neon-shimmer-bubblegum-punk.yaml b/themes/neon-shimmer-bubblegum-punk.yaml index a23483b3..0e16ca1f 100644 --- a/themes/neon-shimmer-bubblegum-punk.yaml +++ b/themes/neon-shimmer-bubblegum-punk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "piperunner.neon-shimmer" version: "1.2.0" installs: 16857 + rating: 5 + ratings: 2 author: "Pipe Runner" repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" diff --git a/themes/neon-shimmer-crimson-drive.yaml b/themes/neon-shimmer-crimson-drive.yaml index 3b3ae378..ee84fb47 100644 --- a/themes/neon-shimmer-crimson-drive.yaml +++ b/themes/neon-shimmer-crimson-drive.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "piperunner.neon-shimmer" version: "1.2.0" installs: 16857 + rating: 5 + ratings: 2 author: "Pipe Runner" repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" diff --git a/themes/neon-shimmer.yaml b/themes/neon-shimmer.yaml index 2adf9d58..66b3c3eb 100644 --- a/themes/neon-shimmer.yaml +++ b/themes/neon-shimmer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "piperunner.neon-shimmer" version: "1.2.0" installs: 16857 + rating: 5 + ratings: 2 author: "Pipe Runner" repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" diff --git a/themes/neon-side.yaml b/themes/neon-side.yaml index daa3e8cf..72bc4158 100644 --- a/themes/neon-side.yaml +++ b/themes/neon-side.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SebastianHT.fp" version: "0.0.16" installs: 290 + rating: 4 + ratings: 1 author: "Sebastian HT" repo: "https://github.com/sebastian-huamani/Extencion-vs" url: "https://marketplace.visualstudio.com/items?itemName=SebastianHT.fp" diff --git a/themes/neon-sunset.yaml b/themes/neon-sunset.yaml index ecf974b4..c4b003ea 100644 --- a/themes/neon-sunset.yaml +++ b/themes/neon-sunset.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" version: "1.0.0" installs: 1549 + rating: 0 + ratings: 0 author: "Little Waterfall" repo: "https://github.com/LittleWaterfall/vscode-neon-glow" url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" diff --git a/themes/neon-synthwave.yaml b/themes/neon-synthwave.yaml index 73d42f60..2b2123db 100644 --- a/themes/neon-synthwave.yaml +++ b/themes/neon-synthwave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" version: "1.0.0" installs: 1549 + rating: 0 + ratings: 0 author: "Little Waterfall" repo: "https://github.com/LittleWaterfall/vscode-neon-glow" url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" diff --git a/themes/neon-theme.yaml b/themes/neon-theme.yaml index b785a22f..e1db01d1 100644 --- a/themes/neon-theme.yaml +++ b/themes/neon-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevangTomar.vscode-diverse-dye" version: "1.3.0" installs: 2595 + rating: 5 + ratings: 3 author: "Devang Tomar ⭐" repo: "https://github.com/devangtomar/vscode-diverse-dye" url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" diff --git a/themes/neon-trench-theme.yaml b/themes/neon-trench-theme.yaml index 43d78fdf..185be138 100644 --- a/themes/neon-trench-theme.yaml +++ b/themes/neon-trench-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WebCraftID.neontrench" version: "1.0.1" installs: 68 + rating: 0 + ratings: 0 author: "WebCraftID" repo: null url: "https://marketplace.visualstudio.com/items?itemName=WebCraftID.neontrench" diff --git a/themes/neon-violet.yaml b/themes/neon-violet.yaml index 92c250ea..b8645cc0 100644 --- a/themes/neon-violet.yaml +++ b/themes/neon-violet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" version: "1.0.0" installs: 1549 + rating: 0 + ratings: 0 author: "Little Waterfall" repo: "https://github.com/LittleWaterfall/vscode-neon-glow" url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" diff --git a/themes/neonaska.yaml b/themes/neonaska.yaml index 8e5144b3..1f8dbc2a 100644 --- a/themes/neonaska.yaml +++ b/themes/neonaska.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Askka.neon-aska-theme" version: "0.0.3" installs: 93 + rating: 0 + ratings: 0 author: "Askka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Askka.neon-aska-theme" diff --git a/themes/neonite.yaml b/themes/neonite.yaml index 6bfcff7c..a6f66e4e 100644 --- a/themes/neonite.yaml +++ b/themes/neonite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MohamedElsherbiny.neonite-theme" version: "1.3.0" installs: 628 + rating: 5 + ratings: 1 author: "Mohamed Elsherbiny" repo: "https://github.com/MoElsherbiny/vscode-neonite-theme" url: "https://marketplace.visualstudio.com/items?itemName=MohamedElsherbiny.neonite-theme" diff --git a/themes/neonmist.yaml b/themes/neonmist.yaml index 18aab532..198b525a 100644 --- a/themes/neonmist.yaml +++ b/themes/neonmist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "locafe.neonmist" version: "0.0.1" installs: 39 + rating: 0 + ratings: 0 author: "lo.cafe" repo: "https://github.com/neonmist/vscode" url: "https://marketplace.visualstudio.com/items?itemName=locafe.neonmist" diff --git a/themes/neorose-vimpine.yaml b/themes/neorose-vimpine.yaml index e9d1a8a5..26299f05 100644 --- a/themes/neorose-vimpine.yaml +++ b/themes/neorose-vimpine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rexcor.neorose-vimpine" version: "0.3.1" installs: 2723 + rating: 5 + ratings: 3 author: "rexcor" repo: "https://github.com/rexcor/NeoRose-VimPine" url: "https://marketplace.visualstudio.com/items?itemName=rexcor.neorose-vimpine" diff --git a/themes/neovim-sp.yaml b/themes/neovim-sp.yaml index c239e979..e9d0cbc1 100644 --- a/themes/neovim-sp.yaml +++ b/themes/neovim-sp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "suman-pakira.neovim-Sp" version: "4.5.0" installs: 765 + rating: 5 + ratings: 1 author: "suman-pakira" repo: "https://github.com/maxwithbug/myVscodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=suman-pakira.neovim-Sp" diff --git a/themes/neovim-theme.yaml b/themes/neovim-theme.yaml index b4be8620..0ad50f84 100644 --- a/themes/neovim-theme.yaml +++ b/themes/neovim-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GustavoLins05.neovim-theme" version: "4.0.0" installs: 839 + rating: 0 + ratings: 0 author: "Gustavo Lins" repo: null url: "https://marketplace.visualstudio.com/items?itemName=GustavoLins05.neovim-theme" diff --git a/themes/nephtis-dark.yaml b/themes/nephtis-dark.yaml index 0a134e48..61643291 100644 --- a/themes/nephtis-dark.yaml +++ b/themes/nephtis-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Meastblue.orbital-frame" version: "2.2.0" installs: 66 + rating: 0 + ratings: 0 author: "Meastblue" repo: "https://github.com/meastblue/orbital-frame-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" diff --git a/themes/nephtis-light.yaml b/themes/nephtis-light.yaml index 55892022..cf1675c4 100644 --- a/themes/nephtis-light.yaml +++ b/themes/nephtis-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Meastblue.orbital-frame" version: "2.2.0" installs: 66 + rating: 0 + ratings: 0 author: "Meastblue" repo: "https://github.com/meastblue/orbital-frame-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" diff --git a/themes/nerc-one-dark-a.yaml b/themes/nerc-one-dark-a.yaml index 61e927ad..e3aa6d55 100644 --- a/themes/nerc-one-dark-a.yaml +++ b/themes/nerc-one-dark-a.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Nercone.nerc-one-themes" version: "1.6.1" installs: 65 + rating: 0 + ratings: 0 author: "Nercone" repo: "https://github.com/DiamondGotCat/nerc-one-themes" url: "https://marketplace.visualstudio.com/items?itemName=Nercone.nerc-one-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.2 black: 0 diff --git a/themes/nerc-one-dark-b.yaml b/themes/nerc-one-dark-b.yaml index 54d5d7a4..876b797d 100644 --- a/themes/nerc-one-dark-b.yaml +++ b/themes/nerc-one-dark-b.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Nercone.nerc-one-themes" version: "1.6.1" installs: 65 + rating: 0 + ratings: 0 author: "Nercone" repo: "https://github.com/DiamondGotCat/nerc-one-themes" url: "https://marketplace.visualstudio.com/items?itemName=Nercone.nerc-one-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.2 black: 11.7 diff --git a/themes/nerd-light.yaml b/themes/nerd-light.yaml index 90978059..ce98c83d 100644 --- a/themes/nerd-light.yaml +++ b/themes/nerd-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AshinBerish.nerd-theme" version: "2.0.4" installs: 280 + rating: 0 + ratings: 0 author: "Ashin Berish" repo: "https://github.com/ashinberish/nerd-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AshinBerish.nerd-theme" diff --git a/themes/nero.yaml b/themes/nero.yaml index 59fc13ff..2ff43673 100644 --- a/themes/nero.yaml +++ b/themes/nero.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mhirii.nero" version: "0.1.0" installs: 45 + rating: 0 + ratings: 0 author: "Mhirii" repo: "https://github.com/Mhirii/nero-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Mhirii.nero" diff --git a/themes/nestjs-codes.yaml b/themes/nestjs-codes.yaml index 6d5749fb..f7bcc0d8 100644 --- a/themes/nestjs-codes.yaml +++ b/themes/nestjs-codes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EstevamSouza.nestjs-codes-vscode-theme" version: "0.0.4" installs: 10567 + rating: 0 + ratings: 0 author: "Estevam Souza" repo: "https://github.com/estevam5s/nestjs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=EstevamSouza.nestjs-codes-vscode-theme" diff --git a/themes/netbeans-harmonized.yaml b/themes/netbeans-harmonized.yaml index 80b91354..beecd54b 100644 --- a/themes/netbeans-harmonized.yaml +++ b/themes/netbeans-harmonized.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "drkcode.clasic-harmonized-theme" version: "0.0.5" installs: 559 + rating: 0 + ratings: 0 author: "drkcode" repo: null url: "https://marketplace.visualstudio.com/items?itemName=drkcode.clasic-harmonized-theme" diff --git a/themes/netbilla-blue.yaml b/themes/netbilla-blue.yaml index 0136e9f4..31d5cf1f 100644 --- a/themes/netbilla-blue.yaml +++ b/themes/netbilla-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Totoshi.netbilla-vscode-theme-dark" version: "1.2.3" installs: 631 + rating: 5 + ratings: 4 author: "Totoshi" repo: "https://github.com/aryanxxvii/fleet-theme" url: "https://marketplace.visualstudio.com/items?itemName=Totoshi.netbilla-vscode-theme-dark" diff --git a/themes/netlify-theme.yaml b/themes/netlify-theme.yaml index 675b78b6..864bf68d 100644 --- a/themes/netlify-theme.yaml +++ b/themes/netlify-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ohheyjosh.netlify-vscode-theme" version: "1.2.4" installs: 523 + rating: 0 + ratings: 0 author: "ohheyjosh" repo: "https://github.com/ohheyjosh/netlify-theme" url: "https://marketplace.visualstudio.com/items?itemName=ohheyjosh.netlify-vscode-theme" diff --git a/themes/netlify.yaml b/themes/netlify.yaml index ef8c0be4..d42a9754 100644 --- a/themes/netlify.yaml +++ b/themes/netlify.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "austincondiff.netlify-vscode-theme" version: "1.0.4" installs: 4682 + rating: 5 + ratings: 3 author: "Austin Condiff" repo: "https://github.com/austincondiff/netlify-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=austincondiff.netlify-vscode-theme" diff --git a/themes/netrunnaz.yaml b/themes/netrunnaz.yaml index 9913b672..3a4775c5 100644 --- a/themes/netrunnaz.yaml +++ b/themes/netrunnaz.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "netrunnaz.netrunnaz" version: "0.0.1" installs: 106 + rating: 0 + ratings: 0 author: "netrunnaz" repo: "https://github.com/netrunnaz/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=netrunnaz.netrunnaz" diff --git a/themes/netstack.yaml b/themes/netstack.yaml index 71e1b05d..051fe549 100644 --- a/themes/netstack.yaml +++ b/themes/netstack.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "euheimr.netstack" version: "0.1.2" installs: 241 + rating: 0 + ratings: 0 author: "euheimr" repo: "https://github.com/euheimr/netstack-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=euheimr.netstack" diff --git a/themes/nettsi-monokai-darker.yaml b/themes/nettsi-monokai-darker.yaml index fe4e3a74..62b761f9 100644 --- a/themes/nettsi-monokai-darker.yaml +++ b/themes/nettsi-monokai-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "overengineer.nettsi-monokai-dark" version: "0.0.4" installs: 104 + rating: 5 + ratings: 1 author: "overengineer" repo: null url: "https://marketplace.visualstudio.com/items?itemName=overengineer.nettsi-monokai-dark" diff --git a/themes/netuno.yaml b/themes/netuno.yaml index 62ae35a5..ca4ff2a2 100644 --- a/themes/netuno.yaml +++ b/themes/netuno.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DougBichir.themes" version: "0.0.10" installs: 795 + rating: 4.5 + ratings: 2 author: "Doug Bichir" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DougBichir.themes" diff --git a/themes/neumatter-night.yaml b/themes/neumatter-night.yaml index caa5d84d..6da776bc 100644 --- a/themes/neumatter-night.yaml +++ b/themes/neumatter-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cal.neumatter-theme" version: "0.0.3" installs: 59 + rating: 0 + ratings: 0 author: "cal" repo: "https://github.com/Clyng57/neumatter-theme" url: "https://marketplace.visualstudio.com/items?itemName=cal.neumatter-theme" diff --git a/themes/neuraltone.yaml b/themes/neuraltone.yaml index 88bfbcd4..6cb69e24 100644 --- a/themes/neuraltone.yaml +++ b/themes/neuraltone.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KaioDutra.neural-tone-theme" version: "1.0.3" installs: 233 + rating: 0 + ratings: 0 author: "Kaio Dutra" repo: "https://github.com/kaioodutra/neural-tone-theme" url: "https://marketplace.visualstudio.com/items?itemName=KaioDutra.neural-tone-theme" diff --git a/themes/neutral-gray-minimalism-focus.yaml b/themes/neutral-gray-minimalism-focus.yaml index 46e5bd07..5a578000 100644 --- a/themes/neutral-gray-minimalism-focus.yaml +++ b/themes/neutral-gray-minimalism-focus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/neutral.yaml b/themes/neutral.yaml index fd2184e6..b260b81a 100644 --- a/themes/neutral.yaml +++ b/themes/neutral.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.sober-code" version: "0.0.7" installs: 128 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://git@github.com/yesomac/vs-sober" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.sober-code" diff --git a/themes/neutralvi.yaml b/themes/neutralvi.yaml index 05a82f25..e2ef14cc 100644 --- a/themes/neutralvi.yaml +++ b/themes/neutralvi.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.neutral" version: "0.0.9" installs: 608 + rating: 5 + ratings: 1 author: "YesCode" repo: "https://github.com/yesomac/NeutralThemeVSC" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.neutral" diff --git a/themes/neutron.yaml b/themes/neutron.yaml index 2f43202b..b074262c 100644 --- a/themes/neutron.yaml +++ b/themes/neutron.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.neutron-palette" version: "0.0.3" installs: 1018 + rating: 0 + ratings: 0 author: "Avetis" repo: "https://github.com/AvetisDN/neutron-palette" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.neutron-palette" diff --git a/themes/nevada.yaml b/themes/nevada.yaml index f5686dfd..7747e9f1 100644 --- a/themes/nevada.yaml +++ b/themes/nevada.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "michaellee.nevada-color-theme" version: "0.1.0" installs: 212 + rating: 0 + ratings: 0 author: "leecommamichael" repo: null url: "https://marketplace.visualstudio.com/items?itemName=michaellee.nevada-color-theme" diff --git a/themes/nevejestvo-theme.yaml b/themes/nevejestvo-theme.yaml new file mode 100644 index 00000000..a3556c30 --- /dev/null +++ b/themes/nevejestvo-theme.yaml @@ -0,0 +1,50 @@ +name: "nevejestvo-theme" +source: + marketplace_id: "nevejestvo.nevejestvo-theme" + version: "0.0.3" + installs: 68 + author: "nevejestvo" + repo: "https://github.com/nevejestvo/nevejestvo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nevejestvo.nevejestvo-theme" +colors: + bg: "#273136" + fg: "#D4D4D4" + black: "#3A4449" + red: "#FF6D7E" + green: "#A2E57B" + yellow: "#FFED72" + blue: "#FFB270" + magenta: "#BAA0F8" + cyan: "#7CD5F1" + white: "#F2FFFC" + brightBlack: "#6B7678" + brightRed: "#FF6D7E" + brightGreen: "#A2E57B" + brightYellow: "#FFED72" + brightBlue: "#FFB270" + brightMagenta: "#BAA0F8" + brightCyan: "#7CD5F1" + brightWhite: "#F2FFFC" +meta: + mode: "dark" + accent: "orange" + hue: 230 + pair: null + contrast: + fg: 75.5 + black: 0 + red: 45 + green: 75 + yellow: 89.9 + blue: 65.3 + magenta: 53.6 + cyan: 68.9 + white: 100.9 + brightBlack: 24.2 + brightRed: 45 + brightGreen: 75 + brightYellow: 89.9 + brightBlue: 65.3 + brightMagenta: 53.6 + brightCyan: 68.9 + brightWhite: 100.9 diff --git a/themes/never-be-lost-day.yaml b/themes/never-be-lost-day.yaml index 0166f3b8..173e59cc 100644 --- a/themes/never-be-lost-day.yaml +++ b/themes/never-be-lost-day.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Fred-Vatin.never-be-lost" version: "0.4.0" installs: 446 + rating: 5 + ratings: 1 author: "Fred Vatin" repo: "https://github.com/Fred-Vatin/never-be-lost" url: "https://marketplace.visualstudio.com/items?itemName=Fred-Vatin.never-be-lost" diff --git a/themes/never-be-lost-night.yaml b/themes/never-be-lost-night.yaml index 1a583855..ca811667 100644 --- a/themes/never-be-lost-night.yaml +++ b/themes/never-be-lost-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Fred-Vatin.never-be-lost" version: "0.4.0" installs: 446 + rating: 5 + ratings: 1 author: "Fred Vatin" repo: "https://github.com/Fred-Vatin/never-be-lost" url: "https://marketplace.visualstudio.com/items?itemName=Fred-Vatin.never-be-lost" diff --git a/themes/nevermore.yaml b/themes/nevermore.yaml index 2a654491..e7f9e4cb 100644 --- a/themes/nevermore.yaml +++ b/themes/nevermore.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cassiocardoso.nevermore" version: "0.1.5" installs: 469 + rating: 0 + ratings: 0 author: "Cassio Cardoso" repo: "https://github.com/cassiocardoso/nevermore-theme" url: "https://marketplace.visualstudio.com/items?itemName=cassiocardoso.nevermore" diff --git a/themes/neverwhere.yaml b/themes/neverwhere.yaml index 4a166379..08c65f21 100644 --- a/themes/neverwhere.yaml +++ b/themes/neverwhere.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tylandavis.neverwhere-theme" version: "1.0.4" installs: 83 + rating: 5 + ratings: 1 author: "Tylan Davis" repo: "https://github.com/tylandavis/neverwhere-theme" url: "https://marketplace.visualstudio.com/items?itemName=tylandavis.neverwhere-theme" diff --git a/themes/nevo-black.yaml b/themes/nevo-black.yaml index 7024fed5..95ee003b 100644 --- a/themes/nevo-black.yaml +++ b/themes/nevo-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nevo.nevo-theme" version: "19.3.1" installs: 377 + rating: 5 + ratings: 1 author: "nevo" repo: "https://github.com/iknevo/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=nevo.nevo-theme" diff --git a/themes/nevo-comfy.yaml b/themes/nevo-comfy.yaml index 94807587..3a49eecc 100644 --- a/themes/nevo-comfy.yaml +++ b/themes/nevo-comfy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nevo.nevo-theme" version: "19.3.1" installs: 377 + rating: 5 + ratings: 1 author: "nevo" repo: "https://github.com/iknevo/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=nevo.nevo-theme" diff --git a/themes/nevo-pro.yaml b/themes/nevo-pro.yaml new file mode 100644 index 00000000..5db5ac4e --- /dev/null +++ b/themes/nevo-pro.yaml @@ -0,0 +1,52 @@ +name: "NEVO pro" +source: + marketplace_id: "nevo.nevo-theme" + version: "19.3.1" + installs: 377 + rating: 5 + ratings: 1 + author: "nevo" + repo: "https://github.com/iknevo/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nevo.nevo-theme" +colors: + bg: "#0A0F17" + fg: "#BAC6DB" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#69C8FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 260 + pair: null + contrast: + fg: 71.3 + black: 0 + red: 44.7 + green: 54.8 + yellow: 67.2 + blue: 61.2 + magenta: 92.6 + cyan: 78.5 + white: 72.3 + brightBlack: 23.5 + brightRed: 47.2 + brightGreen: 76.5 + brightYellow: 70.2 + brightBlue: 67.4 + brightMagenta: 95.8 + brightCyan: 81.5 + brightWhite: 107.5 diff --git a/themes/nevo.yaml b/themes/nevo.yaml index 3294fdf0..62721e02 100644 --- a/themes/nevo.yaml +++ b/themes/nevo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nevo.nevo-theme" version: "19.3.1" installs: 377 + rating: 5 + ratings: 1 author: "nevo" repo: "https://github.com/iknevo/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=nevo.nevo-theme" diff --git a/themes/new-england-light-theme.yaml b/themes/new-england-light-theme.yaml index 3ce13843..bd7c29fc 100644 --- a/themes/new-england-light-theme.yaml +++ b/themes/new-england-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dustypomerleau.new-england" version: "0.10.0" installs: 7010 + rating: 5 + ratings: 1 author: "Dusty Pomerleau" repo: "https://github.com/dustypomerleau/new-england" url: "https://marketplace.visualstudio.com/items?itemName=dustypomerleau.new-england" diff --git a/themes/new-moon.yaml b/themes/new-moon.yaml index a5726274..0599dea0 100644 --- a/themes/new-moon.yaml +++ b/themes/new-moon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ganevru.solid-moon-theme" version: "0.0.7" installs: 667 + rating: 0 + ratings: 0 author: "ganevru" repo: "https://github.com/ganevru/solid-moon-theme" url: "https://marketplace.visualstudio.com/items?itemName=ganevru.solid-moon-theme" diff --git a/themes/new-owl.yaml b/themes/new-owl.yaml index 57f01f4f..7564aa19 100644 --- a/themes/new-owl.yaml +++ b/themes/new-owl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CarlosVQ.vscode-new-owl" version: "2.0.0" installs: 7334 + rating: 5 + ratings: 1 author: "CarlosVQ" repo: "https://github.com/carlosvq/vscode-new-owl" url: "https://marketplace.visualstudio.com/items?itemName=CarlosVQ.vscode-new-owl" diff --git a/themes/new-retro.yaml b/themes/new-retro.yaml index 705c7e22..920224a8 100644 --- a/themes/new-retro.yaml +++ b/themes/new-retro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "new-retro.new-retro" version: "0.0.1" installs: 1466 + rating: 0 + ratings: 0 author: "New Retro" repo: null url: "https://marketplace.visualstudio.com/items?itemName=new-retro.new-retro" diff --git a/themes/new-south-wales-dark.yaml b/themes/new-south-wales-dark.yaml index 43fdc760..4bc84b49 100644 --- a/themes/new-south-wales-dark.yaml +++ b/themes/new-south-wales-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.new-south-wales-theme" version: "1.3.0" installs: 1 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.new-south-wales-theme" diff --git a/themes/new-south-wales-light.yaml b/themes/new-south-wales-light.yaml index ba4b4f9d..90d4b5b2 100644 --- a/themes/new-south-wales-light.yaml +++ b/themes/new-south-wales-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.new-south-wales-theme" version: "1.3.0" installs: 1 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.new-south-wales-theme" diff --git a/themes/new-sphere.yaml b/themes/new-sphere.yaml index fe399474..9f1ec389 100644 --- a/themes/new-sphere.yaml +++ b/themes/new-sphere.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FSharaf.new-sphere" version: "0.1.1" installs: 279 + rating: 0 + ratings: 0 author: "Sharaf Feyzullayev" repo: "https://github.com/FSharafff/new-sphere" url: "https://marketplace.visualstudio.com/items?itemName=FSharaf.new-sphere" diff --git a/themes/new-theme.yaml b/themes/new-theme.yaml index f6a1e9a6..cc2bd039 100644 --- a/themes/new-theme.yaml +++ b/themes/new-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "undefined.abipravi" version: "0.0.1" installs: 77 + rating: 0 + ratings: 0 author: "undefined" repo: "https://github.com/Abipravi1/abipravitheme" url: "https://marketplace.visualstudio.com/items?itemName=undefined.abipravi" diff --git a/themes/new-wave-theme.yaml b/themes/new-wave-theme.yaml new file mode 100644 index 00000000..d5ae970e --- /dev/null +++ b/themes/new-wave-theme.yaml @@ -0,0 +1,52 @@ +name: "new-wave-theme" +source: + marketplace_id: "Fdiazg.new-wave-theme" + version: "0.0.2" + installs: 98 + rating: 0 + ratings: 0 + author: "Fdiazg" + repo: "https://github.com/Fdiazg/new-wave-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Fdiazg.new-wave-theme" +colors: + bg: "#262335" + fg: "#EEFFFF" + black: "#1C1A29" + red: "#FE4450" + green: "#72F1B8" + yellow: "#F3E70F" + blue: "#8096EC" + magenta: "#C74DED" + cyan: "#2BC9C6" + white: "#DCE3EB" + brightBlack: "#464364" + brightRed: "#FE627E" + brightGreen: "#A4F9C9" + brightYellow: "#E2A739" + brightBlue: "#A6C1FF" + brightMagenta: "#DD76FF" + brightCyan: "#8DF8FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 292 + pair: null + contrast: + fg: 102.6 + black: 0 + red: 38.6 + green: 81.3 + yellow: 86.6 + blue: 45 + magenta: 35.3 + cyan: 60 + white: 86.2 + brightBlack: 7.8 + brightRed: 44.5 + brightGreen: 89.4 + brightYellow: 57.5 + brightBlue: 66.4 + brightMagenta: 48.8 + brightCyan: 89.6 + brightWhite: 104.9 diff --git a/themes/newdarktheme.yaml b/themes/newdarktheme.yaml index ca458ee6..35093b4b 100644 --- a/themes/newdarktheme.yaml +++ b/themes/newdarktheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FeliksLv.new-dark" version: "0.0.5" installs: 901 + rating: 0 + ratings: 0 author: "FeliksLv" repo: "https://github.com/FeliksLv01/NewDarkTheme" url: "https://marketplace.visualstudio.com/items?itemName=FeliksLv.new-dark" diff --git a/themes/newera-dark-theme.yaml b/themes/newera-dark-theme.yaml index ec60ba10..fddb8f7a 100644 --- a/themes/newera-dark-theme.yaml +++ b/themes/newera-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sguerson.newera-theme" version: "1.1.2" installs: 49 + rating: 0 + ratings: 0 author: "sguerson" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sguerson.newera-theme" diff --git a/themes/newrailscasts.yaml b/themes/newrailscasts.yaml index fc20077f..e5191f9f 100644 --- a/themes/newrailscasts.yaml +++ b/themes/newrailscasts.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carakan.new-railscasts" version: "1.0.68" installs: 4018 + rating: 4.75 + ratings: 4 author: "Carlos Ramos" repo: "https://github.com/carakan/new-railscasts-vscode" url: "https://marketplace.visualstudio.com/items?itemName=carakan.new-railscasts" diff --git a/themes/newspaperlike.yaml b/themes/newspaperlike.yaml index 04549345..c2b717d0 100644 --- a/themes/newspaperlike.yaml +++ b/themes/newspaperlike.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PaperFanz.newspaperlike" version: "0.6.0" installs: 1909 + rating: 3 + ratings: 1 author: "PaperFanz" repo: "https://github.com/PaperFanz/newspaperlike" url: "https://marketplace.visualstudio.com/items?itemName=PaperFanz.newspaperlike" diff --git a/themes/newsprint-invert.yaml b/themes/newsprint-invert.yaml index 85548239..e876b7c1 100644 --- a/themes/newsprint-invert.yaml +++ b/themes/newsprint-invert.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lumiknit.newsprint" version: "0.0.12" installs: 357 + rating: 0 + ratings: 0 author: "lumiknit" repo: "https://github.com/lumiknit/vscode-newsprint-theme" url: "https://marketplace.visualstudio.com/items?itemName=lumiknit.newsprint" diff --git a/themes/newsprint-so.yaml b/themes/newsprint-so.yaml index bd790212..76b49185 100644 --- a/themes/newsprint-so.yaml +++ b/themes/newsprint-so.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lumiknit.newsprint" version: "0.0.12" installs: 357 + rating: 0 + ratings: 0 author: "lumiknit" repo: "https://github.com/lumiknit/vscode-newsprint-theme" url: "https://marketplace.visualstudio.com/items?itemName=lumiknit.newsprint" diff --git a/themes/newsprint.yaml b/themes/newsprint.yaml new file mode 100644 index 00000000..7eb374da --- /dev/null +++ b/themes/newsprint.yaml @@ -0,0 +1,52 @@ +name: "newsprint" +source: + marketplace_id: "lumiknit.newsprint" + version: "0.0.12" + installs: 357 + rating: 0 + ratings: 0 + author: "lumiknit" + repo: "https://github.com/lumiknit/vscode-newsprint-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lumiknit.newsprint" +colors: + bg: "#F2F2F2" + fg: "#444444" + black: "#000000" + red: "#E41507" + green: "#57BD66" + yellow: "#FFBD5E" + blue: "#2981CA" + magenta: "#A464D1" + cyan: "#51D2FF" + white: "#DDDDDD" + brightBlack: "#505050" + brightRed: "#FF675D" + brightGreen: "#99E391" + brightYellow: "#FFDE82" + brightBlue: "#4190F7" + brightMagenta: "#D9B9F0" + brightCyan: "#A3FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 84.9 + black: 98.3 + red: 62.8 + green: 38.6 + yellow: 21 + blue: 60.2 + magenta: 58.8 + cyan: 23.8 + white: 9.8 + brightBlack: 80.2 + brightRed: 46.1 + brightGreen: 16.6 + brightYellow: 7.6 + brightBlue: 51.1 + brightMagenta: 23.5 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/newton-contrast.yaml b/themes/newton-contrast.yaml index ca7beb73..b0ccef99 100644 --- a/themes/newton-contrast.yaml +++ b/themes/newton-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/newton-light.yaml b/themes/newton-light.yaml index ed4a0af4..abc6e4b2 100644 --- a/themes/newton-light.yaml +++ b/themes/newton-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/newton-next-official.yaml b/themes/newton-next-official.yaml index 1651b807..110e8b53 100644 --- a/themes/newton-next-official.yaml +++ b/themes/newton-next-official.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devberto.theme-newton-next" version: "3.0.6" installs: 2627 + rating: 5 + ratings: 2 author: "Marco Bertolini" repo: "https://github.com/bertolinimarco/vscode-theme-newton-next" url: "https://marketplace.visualstudio.com/items?itemName=devberto.theme-newton-next" diff --git a/themes/newton.yaml b/themes/newton.yaml index 08340227..11853ca6 100644 --- a/themes/newton.yaml +++ b/themes/newton.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/newx-light.yaml b/themes/newx-light.yaml index 78e355d8..ccd4e8c0 100644 --- a/themes/newx-light.yaml +++ b/themes/newx-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xiongshuo1225.newx-time-manager" version: "2.0.19" installs: 48 + rating: 0 + ratings: 0 author: "xiongshuo" repo: "http://gitlab.alibaba-inc.com/ais-cost-group/time-manager" url: "https://marketplace.visualstudio.com/items?itemName=xiongshuo1225.newx-time-manager" diff --git a/themes/next-theme.yaml b/themes/next-theme.yaml index 2ab16065..afd33dd7 100644 --- a/themes/next-theme.yaml +++ b/themes/next-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akirco.seabear-theme" version: "0.0.3" installs: 101 + rating: 0 + ratings: 0 author: "akirco" repo: "https://github.com/akirco/seaBear-theme" url: "https://marketplace.visualstudio.com/items?itemName=akirco.seabear-theme" diff --git a/themes/nextcode.yaml b/themes/nextcode.yaml index b199fb73..00352922 100644 --- a/themes/nextcode.yaml +++ b/themes/nextcode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Abraham.nextcode" version: "0.4.0" installs: 453 + rating: 0 + ratings: 0 author: "Abraham" repo: "https://github.com/abeprincec/nextcode" url: "https://marketplace.visualstudio.com/items?itemName=Abraham.nextcode" diff --git a/themes/nextgen-terminal.yaml b/themes/nextgen-terminal.yaml new file mode 100644 index 00000000..b01e6cad --- /dev/null +++ b/themes/nextgen-terminal.yaml @@ -0,0 +1,50 @@ +name: "NextGen Terminal" +source: + marketplace_id: "nextgencode.nextgen-terminal" + version: "1.2.1" + installs: 105 + author: "NextGenCode" + repo: "https://github.com/Mattzey/nextgen-terminal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" +colors: + bg: "#000000" + fg: "#00FF41" + black: "#000000" + red: "#FF0055" + green: "#00FF41" + yellow: "#FFAA00" + blue: "#00AAFF" + magenta: "#FF00FF" + cyan: "#00D9FF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF3377" + brightGreen: "#39FF14" + brightYellow: "#FFC107" + brightBlue: "#2196F3" + brightMagenta: "#FF77FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 86.7 + black: 0 + red: 38.2 + green: 86.7 + yellow: 66.5 + blue: 52.5 + magenta: 46.2 + cyan: 73.3 + white: 107.9 + brightBlack: 12 + brightRed: 40.9 + brightGreen: 87 + brightYellow: 75.1 + brightBlue: 44 + brightMagenta: 58.4 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/nexus-dark.yaml b/themes/nexus-dark.yaml index 70b0f592..13d6382d 100644 --- a/themes/nexus-dark.yaml +++ b/themes/nexus-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pankajghosh.nexus-dark" version: "0.2.4" installs: 101 + rating: 0 + ratings: 0 author: "Pankaj Ghosh" repo: "https://github.com/iampankajghosh/nexus-dark" url: "https://marketplace.visualstudio.com/items?itemName=pankajghosh.nexus-dark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 104.4 black: 0 diff --git a/themes/nexus.yaml b/themes/nexus.yaml index 1b2e218c..8483bb1d 100644 --- a/themes/nexus.yaml +++ b/themes/nexus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lusignan.nexus" version: "0.4.3" installs: 1233 + rating: 5 + ratings: 1 author: "Zac de Lusignan" repo: "https://github.com/lusignan/nexus-vscode" url: "https://marketplace.visualstudio.com/items?itemName=lusignan.nexus" diff --git a/themes/ngc-aurora-dawn.yaml b/themes/ngc-aurora-dawn.yaml index d1c7e099..dbd68d17 100644 --- a/themes/ngc-aurora-dawn.yaml +++ b/themes/ngc-aurora-dawn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nextgencode.ngen-themes" version: "1.1.0" installs: 73 + rating: 0 + ratings: 0 author: "NextGenCode" repo: "https://github.com/Mattzey/Ngen-Themes" url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" diff --git a/themes/ngc-aurora-night.yaml b/themes/ngc-aurora-night.yaml index 0b155ee9..dc571948 100644 --- a/themes/ngc-aurora-night.yaml +++ b/themes/ngc-aurora-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nextgencode.ngen-themes" version: "1.1.0" installs: 73 + rating: 0 + ratings: 0 author: "NextGenCode" repo: "https://github.com/Mattzey/Ngen-Themes" url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" diff --git a/themes/ngc-forest-retreat.yaml b/themes/ngc-forest-retreat.yaml index f0e5d0a6..760f7913 100644 --- a/themes/ngc-forest-retreat.yaml +++ b/themes/ngc-forest-retreat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nextgencode.ngen-themes" version: "1.1.0" installs: 73 + rating: 0 + ratings: 0 author: "NextGenCode" repo: "https://github.com/Mattzey/Ngen-Themes" url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" diff --git a/themes/ngc-midnight-base.yaml b/themes/ngc-midnight-base.yaml index 6b427fd1..7a011522 100644 --- a/themes/ngc-midnight-base.yaml +++ b/themes/ngc-midnight-base.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nextgencode.ngen-themes" version: "1.1.0" installs: 73 + rating: 0 + ratings: 0 author: "NextGenCode" repo: "https://github.com/Mattzey/Ngen-Themes" url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" diff --git a/themes/ngoding-bro.yaml b/themes/ngoding-bro.yaml index a0cc1554..003e40dc 100644 --- a/themes/ngoding-bro.yaml +++ b/themes/ngoding-bro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MicolaArighi.ngoding-bro" version: "0.3.0" installs: 170 + rating: 5 + ratings: 1 author: "Micola Arighi" repo: "https://github.com/micolarighi/my-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=MicolaArighi.ngoding-bro" diff --git a/themes/nibelung-dark.yaml b/themes/nibelung-dark.yaml index 5bd5ff7e..fb529610 100644 --- a/themes/nibelung-dark.yaml +++ b/themes/nibelung-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "veschin.nibelung-theme-vscode" version: "0.1.0" installs: 82 + rating: 5 + ratings: 2 author: "Oleg Veschin" repo: "https://github.com/veschin/nibelung-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=veschin.nibelung-theme-vscode" diff --git a/themes/nibelung.yaml b/themes/nibelung.yaml index fcb7e41a..498af6bb 100644 --- a/themes/nibelung.yaml +++ b/themes/nibelung.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "veschin.nibelung-theme-vscode" version: "0.1.0" installs: 82 + rating: 5 + ratings: 2 author: "Oleg Veschin" repo: "https://github.com/veschin/nibelung-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=veschin.nibelung-theme-vscode" diff --git a/themes/nice-dark.yaml b/themes/nice-dark.yaml index 7f02d99b..d63534f9 100644 --- a/themes/nice-dark.yaml +++ b/themes/nice-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MarcosBatisaldo.nice-dark" version: "1.1.3" installs: 458 + rating: 5 + ratings: 1 author: "Marcos Batisaldo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MarcosBatisaldo.nice-dark" diff --git a/themes/nicedark-fork.yaml b/themes/nicedark-fork.yaml index 2c787d7d..6070ce3c 100644 --- a/themes/nicedark-fork.yaml +++ b/themes/nicedark-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "niceDark.nicedark" version: "0.1.0" installs: 83 + rating: 0 + ratings: 0 author: "FathyMuhamed" repo: "https://github.com/FathyMuhamed/darkTheme" url: "https://marketplace.visualstudio.com/items?itemName=niceDark.nicedark" diff --git a/themes/nicedark.yaml b/themes/nicedark.yaml index 7936fed3..c6364f1a 100644 --- a/themes/nicedark.yaml +++ b/themes/nicedark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "niceDark.nicedark" version: "0.1.0" installs: 83 + rating: 0 + ratings: 0 author: "FathyMuhamed" repo: "https://github.com/FathyMuhamed/darkTheme" url: "https://marketplace.visualstudio.com/items?itemName=niceDark.nicedark" diff --git a/themes/nicely-neon.yaml b/themes/nicely-neon.yaml index 1de4dc0c..f84cc60d 100644 --- a/themes/nicely-neon.yaml +++ b/themes/nicely-neon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "eight84.nicely-neon-theme" version: "1.9.8" installs: 310 + rating: 0 + ratings: 0 author: "eight84" repo: "https://github.com/eight84/nicely-neon-theme" url: "https://marketplace.visualstudio.com/items?itemName=eight84.nicely-neon-theme" diff --git a/themes/nier-automata-light-theme.yaml b/themes/nier-automata-light-theme.yaml index fbc4c79c..0b900dbf 100644 --- a/themes/nier-automata-light-theme.yaml +++ b/themes/nier-automata-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "b5261b62-5943-495a-a2cd-2b281ddb7a76.vscode-nier-automata-theme" version: "1.0.0" installs: 15582 + rating: 5 + ratings: 2 author: "Shelune" repo: "https://github.com/shelune/vscode-nier-automata-light" url: "https://marketplace.visualstudio.com/items?itemName=b5261b62-5943-495a-a2cd-2b281ddb7a76.vscode-nier-automata-theme" diff --git a/themes/nier-automata-theme.yaml b/themes/nier-automata-theme.yaml index 77f47316..682ce050 100644 --- a/themes/nier-automata-theme.yaml +++ b/themes/nier-automata-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "israelyagopereira.nier-automata-theme" version: "0.0.4" installs: 2277 + rating: 0 + ratings: 0 author: "Israel Yago Pereira" repo: "https://github.com/israelyago/nier-automata-vscode" url: "https://marketplace.visualstudio.com/items?itemName=israelyagopereira.nier-automata-theme" diff --git a/themes/night-aurora.yaml b/themes/night-aurora.yaml index dbb08d9e..320b3dd6 100644 --- a/themes/night-aurora.yaml +++ b/themes/night-aurora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NightAurora.nightaurora" version: "0.1.9" installs: 56 + rating: 0 + ratings: 0 author: "NightAurora" repo: "https://github.com/justizha/NIghtAurora" url: "https://marketplace.visualstudio.com/items?itemName=NightAurora.nightaurora" diff --git a/themes/night-blossom.yaml b/themes/night-blossom.yaml index 9d069c37..1404658c 100644 --- a/themes/night-blossom.yaml +++ b/themes/night-blossom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RustedTurnip.night-blossom" version: "0.1.0" installs: 1576 + rating: 0 + ratings: 0 author: "RustedTurnip" repo: "https://github.com/RustedTurnip/night-blossom" url: "https://marketplace.visualstudio.com/items?itemName=RustedTurnip.night-blossom" diff --git a/themes/night-blue-high.yaml b/themes/night-blue-high.yaml index ecebc5aa..083aae09 100644 --- a/themes/night-blue-high.yaml +++ b/themes/night-blue-high.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "voidjmp-vscode-extensions.vscode-theme-night-blue" version: "0.0.6" installs: 66 + rating: 0 + ratings: 0 author: "voidjmp-vscode-extensions" repo: "https://github.com/VoIdJMp/vscode-theme-night-blue" url: "https://marketplace.visualstudio.com/items?itemName=voidjmp-vscode-extensions.vscode-theme-night-blue" diff --git a/themes/night-city.yaml b/themes/night-city.yaml index d7417c3e..f597bc14 100644 --- a/themes/night-city.yaml +++ b/themes/night-city.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GibMalFeuerzeugBitte.night-city" version: "0.0.6" installs: 69 + rating: 5 + ratings: 1 author: "GibMalFeuerzeugBitte" repo: "https://github.com/GibMalFeuerzeugBitte/Night-City" url: "https://marketplace.visualstudio.com/items?itemName=GibMalFeuerzeugBitte.night-city" diff --git a/themes/night-cyan.yaml b/themes/night-cyan.yaml index 5ceac8be..d4f8405c 100644 --- a/themes/night-cyan.yaml +++ b/themes/night-cyan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "er-codee.themes-er" version: "0.0.2" installs: 1014 + rating: 5 + ratings: 1 author: "er-codee" repo: "https://github.com/Ernesto-Rosas/Themes-ER" url: "https://marketplace.visualstudio.com/items?itemName=er-codee.themes-er" diff --git a/themes/night-dragon.yaml b/themes/night-dragon.yaml index ac660bdb..1550c590 100644 --- a/themes/night-dragon.yaml +++ b/themes/night-dragon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkAlchemy.darkalchemy" version: "0.0.3" installs: 576 + rating: 5 + ratings: 2 author: "Dark Alchemy" repo: "https://github.com/dark-alchemy/darkalchemy-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkAlchemy.darkalchemy" diff --git a/themes/night-fae-theme.yaml b/themes/night-fae-theme.yaml index a64ea9b9..d9642af2 100644 --- a/themes/night-fae-theme.yaml +++ b/themes/night-fae-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SavannahOstrowski.shadowlands-themes" version: "0.3.0" installs: 630 + rating: 0 + ratings: 0 author: "Savannah Ostrowski" repo: "https://github.com/savannahostrowski/shadowlands-themes" url: "https://marketplace.visualstudio.com/items?itemName=SavannahOstrowski.shadowlands-themes" diff --git a/themes/night-howl.yaml b/themes/night-howl.yaml new file mode 100644 index 00000000..3b9340bb --- /dev/null +++ b/themes/night-howl.yaml @@ -0,0 +1,52 @@ +name: "night-howl" +source: + marketplace_id: "Matia.night-howl" + version: "1.3.0" + installs: 2997 + rating: 5 + ratings: 3 + author: "Matia" + repo: "https://github.com/mattcroat/night-howl" + url: "https://marketplace.visualstudio.com/items?itemName=Matia.night-howl" +colors: + bg: "#101E2C" + fg: "#BDD2E7" + black: "#000000" + red: "#FF7878" + green: "#AAE682" + yellow: "#FFDC96" + blue: "#00B1FF" + magenta: "#FF50FF" + cyan: "#00DCDC" + white: "#BDD2E7" + brightBlack: "#5F82A5" + brightRed: "#FF7878" + brightGreen: "#AAE682" + brightYellow: "#FFDC96" + brightBlue: "#00B1FF" + brightMagenta: "#FF50FF" + brightCyan: "#00DCDC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 249 + pair: null + contrast: + fg: 76 + black: 0 + red: 50.7 + green: 79.7 + yellow: 86.3 + blue: 53.7 + magenta: 49.4 + cyan: 71 + white: 76 + brightBlack: 32.5 + brightRed: 50.7 + brightGreen: 79.7 + brightYellow: 86.3 + brightBlue: 53.7 + brightMagenta: 49.4 + brightCyan: 71 + brightWhite: 106.1 diff --git a/themes/night-market.yaml b/themes/night-market.yaml index 4d80d70e..3a4f598a 100644 --- a/themes/night-market.yaml +++ b/themes/night-market.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Icycoldveins.verum-monokai-themes" version: "1.2.1" installs: 46 + rating: 5 + ratings: 1 author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" diff --git a/themes/night-owl-oled-dim-100.yaml b/themes/night-owl-oled-dim-100.yaml index c86dba39..864c1d4f 100644 --- a/themes/night-owl-oled-dim-100.yaml +++ b/themes/night-owl-oled-dim-100.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WeiyuWang.night-owl-oled-dim" version: "1.0.1" installs: 4590 + rating: 5 + ratings: 1 author: "Weiyu Wang" repo: "https://github.com/wwang1110/night-owl-oled-dim" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" diff --git a/themes/night-owl-oled-dim-75.yaml b/themes/night-owl-oled-dim-75.yaml index e5df31b8..dce702c1 100644 --- a/themes/night-owl-oled-dim-75.yaml +++ b/themes/night-owl-oled-dim-75.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WeiyuWang.night-owl-oled-dim" version: "1.0.1" installs: 4590 + rating: 5 + ratings: 1 author: "Weiyu Wang" repo: "https://github.com/wwang1110/night-owl-oled-dim" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" diff --git a/themes/night-owl-oled-dim-80.yaml b/themes/night-owl-oled-dim-80.yaml index ab871b54..4f1d5b76 100644 --- a/themes/night-owl-oled-dim-80.yaml +++ b/themes/night-owl-oled-dim-80.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WeiyuWang.night-owl-oled-dim" version: "1.0.1" installs: 4590 + rating: 5 + ratings: 1 author: "Weiyu Wang" repo: "https://github.com/wwang1110/night-owl-oled-dim" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" diff --git a/themes/night-owl-oled-dim-85.yaml b/themes/night-owl-oled-dim-85.yaml index 36bb6d28..c8b39787 100644 --- a/themes/night-owl-oled-dim-85.yaml +++ b/themes/night-owl-oled-dim-85.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WeiyuWang.night-owl-oled-dim" version: "1.0.1" installs: 4590 + rating: 5 + ratings: 1 author: "Weiyu Wang" repo: "https://github.com/wwang1110/night-owl-oled-dim" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" diff --git a/themes/night-owl-oled-dim-90.yaml b/themes/night-owl-oled-dim-90.yaml index f4b0374b..deea9e39 100644 --- a/themes/night-owl-oled-dim-90.yaml +++ b/themes/night-owl-oled-dim-90.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WeiyuWang.night-owl-oled-dim" version: "1.0.1" installs: 4590 + rating: 5 + ratings: 1 author: "Weiyu Wang" repo: "https://github.com/wwang1110/night-owl-oled-dim" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" diff --git a/themes/night-owl-oled-dim-95.yaml b/themes/night-owl-oled-dim-95.yaml index fa500940..d3b378e6 100644 --- a/themes/night-owl-oled-dim-95.yaml +++ b/themes/night-owl-oled-dim-95.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WeiyuWang.night-owl-oled-dim" version: "1.0.1" installs: 4590 + rating: 5 + ratings: 1 author: "Weiyu Wang" repo: "https://github.com/wwang1110/night-owl-oled-dim" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" diff --git a/themes/night-pink.yaml b/themes/night-pink.yaml index c72d4370..166d8978 100644 --- a/themes/night-pink.yaml +++ b/themes/night-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "er-codee.themes-er" version: "0.0.2" installs: 1014 + rating: 5 + ratings: 1 author: "er-codee" repo: "https://github.com/Ernesto-Rosas/Themes-ER" url: "https://marketplace.visualstudio.com/items?itemName=er-codee.themes-er" diff --git a/themes/night-raccoon.yaml b/themes/night-raccoon.yaml index 76d9fd0b..208761d9 100644 --- a/themes/night-raccoon.yaml +++ b/themes/night-raccoon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RaccoonishDeveloper.night-raccoon" version: "0.2.2" installs: 316 + rating: 5 + ratings: 1 author: "RaccoonishDeveloper" repo: "https://github.com/RaccoonishDeveloper/Night-Raccoon-Theme" url: "https://marketplace.visualstudio.com/items?itemName=RaccoonishDeveloper.night-raccoon" diff --git a/themes/night-rainbow-darker.yaml b/themes/night-rainbow-darker.yaml index 26a48a64..3ebe06c0 100644 --- a/themes/night-rainbow-darker.yaml +++ b/themes/night-rainbow-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "allan-carlos.night-rainbow" version: "3.0.0" installs: 10397 + rating: 5 + ratings: 1 author: "Allan Carlos" repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" diff --git a/themes/night-rainbow-purple-haze.yaml b/themes/night-rainbow-purple-haze.yaml index 33fce264..f1f8bb16 100644 --- a/themes/night-rainbow-purple-haze.yaml +++ b/themes/night-rainbow-purple-haze.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "allan-carlos.night-rainbow" version: "3.0.0" installs: 10397 + rating: 5 + ratings: 1 author: "Allan Carlos" repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" diff --git a/themes/night-rainbow.yaml b/themes/night-rainbow.yaml index bfbbcfaf..aef87df2 100644 --- a/themes/night-rainbow.yaml +++ b/themes/night-rainbow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "allan-carlos.night-rainbow" version: "3.0.0" installs: 10397 + rating: 5 + ratings: 1 author: "Allan Carlos" repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" diff --git a/themes/night-stack-amber-crt.yaml b/themes/night-stack-amber-crt.yaml index be7ef711..8e89ddc4 100644 --- a/themes/night-stack-amber-crt.yaml +++ b/themes/night-stack-amber-crt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-amber-dark.yaml b/themes/night-stack-amber-dark.yaml index a111c961..ffbd5af3 100644 --- a/themes/night-stack-amber-dark.yaml +++ b/themes/night-stack-amber-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-arctic-night.yaml b/themes/night-stack-arctic-night.yaml index f0854a6f..27553a58 100644 --- a/themes/night-stack-arctic-night.yaml +++ b/themes/night-stack-arctic-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-aurora.yaml b/themes/night-stack-aurora.yaml index b8e31147..f6be5ca4 100644 --- a/themes/night-stack-aurora.yaml +++ b/themes/night-stack-aurora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-carbon-green.yaml b/themes/night-stack-carbon-green.yaml index 6f9d6c12..6d9729b9 100644 --- a/themes/night-stack-carbon-green.yaml +++ b/themes/night-stack-carbon-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-carbon.yaml b/themes/night-stack-carbon.yaml index 4bcfb235..638df477 100644 --- a/themes/night-stack-carbon.yaml +++ b/themes/night-stack-carbon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-circuit.yaml b/themes/night-stack-circuit.yaml index 2215cdc6..a62fb1c5 100644 --- a/themes/night-stack-circuit.yaml +++ b/themes/night-stack-circuit.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-copper-dark.yaml b/themes/night-stack-copper-dark.yaml index 959ccd56..43b43320 100644 --- a/themes/night-stack-copper-dark.yaml +++ b/themes/night-stack-copper-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-crimson-dark.yaml b/themes/night-stack-crimson-dark.yaml index a73fcc92..c9ed701e 100644 --- a/themes/night-stack-crimson-dark.yaml +++ b/themes/night-stack-crimson-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-deep-work.yaml b/themes/night-stack-deep-work.yaml index a437d0dd..f3f44719 100644 --- a/themes/night-stack-deep-work.yaml +++ b/themes/night-stack-deep-work.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-desert-dusk.yaml b/themes/night-stack-desert-dusk.yaml index eaea9905..cc9f3474 100644 --- a/themes/night-stack-desert-dusk.yaml +++ b/themes/night-stack-desert-dusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-dos-blue.yaml b/themes/night-stack-dos-blue.yaml index 9542e426..13e9ba55 100644 --- a/themes/night-stack-dos-blue.yaml +++ b/themes/night-stack-dos-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-ember-dark.yaml b/themes/night-stack-ember-dark.yaml index bc345d62..8cd42ac5 100644 --- a/themes/night-stack-ember-dark.yaml +++ b/themes/night-stack-ember-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-eyestrain-green.yaml b/themes/night-stack-eyestrain-green.yaml index 73265f02..abc72b55 100644 --- a/themes/night-stack-eyestrain-green.yaml +++ b/themes/night-stack-eyestrain-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-forest-night.yaml b/themes/night-stack-forest-night.yaml index dcba36f8..51339cf3 100644 --- a/themes/night-stack-forest-night.yaml +++ b/themes/night-stack-forest-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-frost.yaml b/themes/night-stack-frost.yaml index dda67aa9..4c7ad218 100644 --- a/themes/night-stack-frost.yaml +++ b/themes/night-stack-frost.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-graphite.yaml b/themes/night-stack-graphite.yaml index cada107b..c356e2b9 100644 --- a/themes/night-stack-graphite.yaml +++ b/themes/night-stack-graphite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-green-neon.yaml b/themes/night-stack-green-neon.yaml index dc4f346b..33a20fb6 100644 --- a/themes/night-stack-green-neon.yaml +++ b/themes/night-stack-green-neon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-hacker-soft.yaml b/themes/night-stack-hacker-soft.yaml index 5fe9a6e8..961791a5 100644 --- a/themes/night-stack-hacker-soft.yaml +++ b/themes/night-stack-hacker-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-hologram.yaml b/themes/night-stack-hologram.yaml index b1f7c6cd..a9793505 100644 --- a/themes/night-stack-hologram.yaml +++ b/themes/night-stack-hologram.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-indigo-dark.yaml b/themes/night-stack-indigo-dark.yaml index ca7eac04..fd33339f 100644 --- a/themes/night-stack-indigo-dark.yaml +++ b/themes/night-stack-indigo-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-ion.yaml b/themes/night-stack-ion.yaml index 3a9d01a9..9be768dd 100644 --- a/themes/night-stack-ion.yaml +++ b/themes/night-stack-ion.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-low-contrast-pro.yaml b/themes/night-stack-low-contrast-pro.yaml index b9ab4d7c..1331500b 100644 --- a/themes/night-stack-low-contrast-pro.yaml +++ b/themes/night-stack-low-contrast-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-midnight-blue.yaml b/themes/night-stack-midnight-blue.yaml index 829d1b58..9d81673a 100644 --- a/themes/night-stack-midnight-blue.yaml +++ b/themes/night-stack-midnight-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-mono-focus.yaml b/themes/night-stack-mono-focus.yaml index 7e551fe7..904dcba7 100644 --- a/themes/night-stack-mono-focus.yaml +++ b/themes/night-stack-mono-focus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-neo-tokyo.yaml b/themes/night-stack-neo-tokyo.yaml index dad6827b..931454eb 100644 --- a/themes/night-stack-neo-tokyo.yaml +++ b/themes/night-stack-neo-tokyo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-night-city.yaml b/themes/night-stack-night-city.yaml index 7902aa20..4a9afa93 100644 --- a/themes/night-stack-night-city.yaml +++ b/themes/night-stack-night-city.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-noir.yaml b/themes/night-stack-noir.yaml index c71bda86..7052d514 100644 --- a/themes/night-stack-noir.yaml +++ b/themes/night-stack-noir.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-obsidian-glass.yaml b/themes/night-stack-obsidian-glass.yaml index c1b82f6e..1b3cc2a5 100644 --- a/themes/night-stack-obsidian-glass.yaml +++ b/themes/night-stack-obsidian-glass.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-obsidian.yaml b/themes/night-stack-obsidian.yaml index c7a1c1a8..5940a91e 100644 --- a/themes/night-stack-obsidian.yaml +++ b/themes/night-stack-obsidian.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-ocean-abyss.yaml b/themes/night-stack-ocean-abyss.yaml index 0a6415cc..0451f34c 100644 --- a/themes/night-stack-ocean-abyss.yaml +++ b/themes/night-stack-ocean-abyss.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-onyx.yaml b/themes/night-stack-onyx.yaml index 48a66b8e..9e2f66be 100644 --- a/themes/night-stack-onyx.yaml +++ b/themes/night-stack-onyx.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-phosphor-green.yaml b/themes/night-stack-phosphor-green.yaml index 4a95e4ec..77c8155a 100644 --- a/themes/night-stack-phosphor-green.yaml +++ b/themes/night-stack-phosphor-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-plasma.yaml b/themes/night-stack-plasma.yaml index b39e0973..6281ad0a 100644 --- a/themes/night-stack-plasma.yaml +++ b/themes/night-stack-plasma.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-pure-hacker.yaml b/themes/night-stack-pure-hacker.yaml index 5d540096..5e72983c 100644 --- a/themes/night-stack-pure-hacker.yaml +++ b/themes/night-stack-pure-hacker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-quantum.yaml b/themes/night-stack-quantum.yaml index 9d4c8eac..0ae81bcf 100644 --- a/themes/night-stack-quantum.yaml +++ b/themes/night-stack-quantum.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-retro-wave.yaml b/themes/night-stack-retro-wave.yaml index 20435a32..91bb9bdb 100644 --- a/themes/night-stack-retro-wave.yaml +++ b/themes/night-stack-retro-wave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-slate.yaml b/themes/night-stack-slate.yaml index f432d9ad..f7122d30 100644 --- a/themes/night-stack-slate.yaml +++ b/themes/night-stack-slate.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-street-grid.yaml b/themes/night-stack-street-grid.yaml index 4f4f80f8..eb4b3402 100644 --- a/themes/night-stack-street-grid.yaml +++ b/themes/night-stack-street-grid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-teal-dark.yaml b/themes/night-stack-teal-dark.yaml index bf271845..352c0631 100644 --- a/themes/night-stack-teal-dark.yaml +++ b/themes/night-stack-teal-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-titanium.yaml b/themes/night-stack-titanium.yaml index 5b6ea456..9d4b9db6 100644 --- a/themes/night-stack-titanium.yaml +++ b/themes/night-stack-titanium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-violet-dark.yaml b/themes/night-stack-violet-dark.yaml index 289a792c..4c5c2a02 100644 --- a/themes/night-stack-violet-dark.yaml +++ b/themes/night-stack-violet-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-stack-zen-dark.yaml b/themes/night-stack-zen-dark.yaml index 8f16dbad..ff670094 100644 --- a/themes/night-stack-zen-dark.yaml +++ b/themes/night-stack-zen-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codewithsg.night-stack" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" diff --git a/themes/night-storm.yaml b/themes/night-storm.yaml index 661ffd28..fe7a7867 100644 --- a/themes/night-storm.yaml +++ b/themes/night-storm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LucianoOliveira.lanno-night-storm" version: "0.0.12" installs: 1502 + rating: 5 + ratings: 2 author: "Luciano Oliveira" repo: "https://github.com/luciano-work/night-storm-theme" url: "https://marketplace.visualstudio.com/items?itemName=LucianoOliveira.lanno-night-storm" diff --git a/themes/night-watchers.yaml b/themes/night-watchers.yaml index d0792e0c..7159abc4 100644 --- a/themes/night-watchers.yaml +++ b/themes/night-watchers.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kiranism.nightwatchers" version: "1.4.0" installs: 296 + rating: 0 + ratings: 0 author: "Kiran" repo: "https://github.com/Kiranism/night-watchers-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Kiranism.nightwatchers" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: 230 + pair: null contrast: fg: 100.4 black: 0 diff --git a/themes/night-wind-theme.yaml b/themes/night-wind-theme.yaml index 79ddf12f..d6e1f074 100644 --- a/themes/night-wind-theme.yaml +++ b/themes/night-wind-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gawnatep.night-wind-theme" version: "0.0.2" installs: 128 + rating: 0 + ratings: 0 author: "gawnatep" repo: "https://github.com/gabrielsalves1/Night-Wind-Theme-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=gawnatep.night-wind-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 79.1 black: 0 diff --git a/themes/night-yellow.yaml b/themes/night-yellow.yaml index a3259b4a..2134d7ff 100644 --- a/themes/night-yellow.yaml +++ b/themes/night-yellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "er-codee.themes-er" version: "0.0.2" installs: 1014 + rating: 5 + ratings: 1 author: "er-codee" repo: "https://github.com/Ernesto-Rosas/Themes-ER" url: "https://marketplace.visualstudio.com/items?itemName=er-codee.themes-er" diff --git a/themes/night-zen.yaml b/themes/night-zen.yaml index 5555fea3..389df83d 100644 --- a/themes/night-zen.yaml +++ b/themes/night-zen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sachin915.logan-night-theme" version: "0.0.2" installs: 4 + rating: 0 + ratings: 0 author: "sachin" repo: "https://github.com/sachin915t/logan-theme" url: "https://marketplace.visualstudio.com/items?itemName=sachin915.logan-night-theme" diff --git a/themes/night.yaml b/themes/night.yaml index ac6ea9e9..3b032e40 100644 --- a/themes/night.yaml +++ b/themes/night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fem12N.night" version: "1.1.1" installs: 8334 + rating: 5 + ratings: 1 author: "fem12N" repo: "https://github.com/FEM12/Night" url: "https://marketplace.visualstudio.com/items?itemName=fem12N.night" diff --git a/themes/nightblue-1.yaml b/themes/nightblue-1.yaml index d6b3fc3f..0bab1e9f 100644 --- a/themes/nightblue-1.yaml +++ b/themes/nightblue-1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yeekiiiiii.nightblue" version: "0.3.21" installs: 523 + rating: 5 + ratings: 1 author: "YeeKi" repo: "https://github.com/kenneth2001/NightBlue" url: "https://marketplace.visualstudio.com/items?itemName=yeekiiiiii.nightblue" diff --git a/themes/nightblue-oled-beta.yaml b/themes/nightblue-oled-beta.yaml index d1a4c9cd..a2bfde8f 100644 --- a/themes/nightblue-oled-beta.yaml +++ b/themes/nightblue-oled-beta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yeekiiiiii.nightblue" version: "0.3.21" installs: 523 + rating: 5 + ratings: 1 author: "YeeKi" repo: "https://github.com/kenneth2001/NightBlue" url: "https://marketplace.visualstudio.com/items?itemName=yeekiiiiii.nightblue" diff --git a/themes/nightcall.yaml b/themes/nightcall.yaml new file mode 100644 index 00000000..410faedf --- /dev/null +++ b/themes/nightcall.yaml @@ -0,0 +1,52 @@ +name: "Nightcall" +source: + marketplace_id: "bpat86.nightcall" + version: "1.0.0" + installs: 8133 + rating: 5 + ratings: 3 + author: "Bobby Patterson" + repo: "https://github.com/bpat86/nightcall-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bpat86.nightcall" +colors: + bg: "#141629" + fg: "#E4CCFF" + black: "#141629" + red: "#F4598E" + green: "#85D483" + yellow: "#D9F99D" + blue: "#639EE5" + magenta: "#C792EA" + cyan: "#67E8F9" + white: "#E4CCFF" + brightBlack: "#575656" + brightRed: "#F4598E" + brightGreen: "#86EFAC" + brightYellow: "#F2E3BF" + brightBlue: "#7E90FF" + brightMagenta: "#C792EA" + brightCyan: "#A5F3FC" + brightWhite: "#E4CCFF" +meta: + mode: "dark" + accent: "red" + hue: 278 + pair: null + contrast: + fg: 80.3 + black: 0 + red: 43 + green: 68.6 + yellow: 95.3 + blue: 47.3 + magenta: 53.7 + cyan: 81.1 + white: 80.3 + brightBlack: 15.5 + brightRed: 43 + brightGreen: 83 + brightYellow: 89.3 + brightBlue: 46 + brightMagenta: 53.7 + brightCyan: 90.7 + brightWhite: 80.3 diff --git a/themes/nightcode.yaml b/themes/nightcode.yaml index 2d4778c9..a4f3ab64 100644 --- a/themes/nightcode.yaml +++ b/themes/nightcode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carlos-dev-pereira.nightcode" version: "1.2.0" installs: 4575 + rating: 0 + ratings: 0 author: "Carlos Pereira" repo: null url: "https://marketplace.visualstudio.com/items?itemName=carlos-dev-pereira.nightcode" diff --git a/themes/nightdream-monokai.yaml b/themes/nightdream-monokai.yaml index b9bcc372..8e0e77e6 100644 --- a/themes/nightdream-monokai.yaml +++ b/themes/nightdream-monokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mrheio.nightdream" version: "0.3.1" installs: 52 + rating: 0 + ratings: 0 author: "mrheio" repo: "https://github.com/masterodi/nightdream-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mrheio.nightdream" diff --git a/themes/nightdream.yaml b/themes/nightdream.yaml index 88c714d5..3448a79e 100644 --- a/themes/nightdream.yaml +++ b/themes/nightdream.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mrheio.nightdream" version: "0.3.1" installs: 52 + rating: 0 + ratings: 0 author: "mrheio" repo: "https://github.com/masterodi/nightdream-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mrheio.nightdream" diff --git a/themes/nightfly.yaml b/themes/nightfly.yaml index 7c0105eb..70c219fb 100644 --- a/themes/nightfly.yaml +++ b/themes/nightfly.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "securisec.hapsida-securisec" version: "0.0.30" installs: 226 + rating: 5 + ratings: 1 author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" diff --git a/themes/nightfox.yaml b/themes/nightfox.yaml index 93265044..d70f6fc9 100644 --- a/themes/nightfox.yaml +++ b/themes/nightfox.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkAlchemy.darkalchemy" version: "0.0.3" installs: 576 + rating: 5 + ratings: 2 author: "Dark Alchemy" repo: "https://github.com/dark-alchemy/darkalchemy-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkAlchemy.darkalchemy" diff --git a/themes/nighthawk.yaml b/themes/nighthawk.yaml index cd3245c6..01d38d97 100644 --- a/themes/nighthawk.yaml +++ b/themes/nighthawk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ezzak.nighthawk" version: "1.1.0" installs: 9438 + rating: 5 + ratings: 2 author: "Ezz" repo: "https://github.com/ezzak/nighthawk" url: "https://marketplace.visualstudio.com/items?itemName=ezzak.nighthawk" diff --git a/themes/nightlife.yaml b/themes/nightlife.yaml index eef4a023..a3664d1f 100644 --- a/themes/nightlife.yaml +++ b/themes/nightlife.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "spacesick.nightlife-vscode-theme" version: "1.0.1" installs: 798 + rating: 0 + ratings: 0 author: "Vincent Yovian" repo: "https://github.com/spacesick/nightlife-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=spacesick.nightlife-vscode-theme" diff --git a/themes/nightly-code.yaml b/themes/nightly-code.yaml index 54a019b4..9424115e 100644 --- a/themes/nightly-code.yaml +++ b/themes/nightly-code.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SpikySpike.nightly-code" version: "2.0.0" installs: 178 + rating: 0 + ratings: 0 author: "SpikySpike" repo: "https://github.com/SpikySpike/nightly-code" url: "https://marketplace.visualstudio.com/items?itemName=SpikySpike.nightly-code" diff --git a/themes/nightmare.yaml b/themes/nightmare.yaml index 72797a8c..36cd6adf 100644 --- a/themes/nightmare.yaml +++ b/themes/nightmare.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OsirisX3R0.nightmare-theme-vscode" version: "1.0.5" installs: 93 + rating: 0 + ratings: 0 author: "OsirisX3R0" repo: "https://github.com/OsirisX3R0/nightmare" url: "https://marketplace.visualstudio.com/items?itemName=OsirisX3R0.nightmare-theme-vscode" diff --git a/themes/nightnode.yaml b/themes/nightnode.yaml index 5a6e2e33..479fb5cc 100644 --- a/themes/nightnode.yaml +++ b/themes/nightnode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AyushKhatri.nightnode" version: "1.1.2" installs: 1224 + rating: 5 + ratings: 1 author: "Ayush Khatri" repo: "https://github.com/ayush-khatrii/night-node" url: "https://marketplace.visualstudio.com/items?itemName=AyushKhatri.nightnode" diff --git a/themes/nightshade-venom.yaml b/themes/nightshade-venom.yaml new file mode 100644 index 00000000..7cab9216 --- /dev/null +++ b/themes/nightshade-venom.yaml @@ -0,0 +1,52 @@ +name: "Nightshade-Venom" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#020817" + fg: "#F8FAFC" + black: "#020817" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#6D28D9" + magenta: "#6D28D9" + cyan: "#29C3A0" + white: "#F8FAFC" + brightBlack: "#020817" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#6D28D9" + brightMagenta: "#6D28D9" + brightCyan: "#29C3A0" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "magenta" + hue: 259 + pair: null + contrast: + fg: 104.3 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.6 + blue: 18.5 + magenta: 18.5 + cyan: 58.5 + white: 104.3 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 18.5 + brightMagenta: 18.5 + brightCyan: 58.5 + brightWhite: 104.3 diff --git a/themes/nightshade.yaml b/themes/nightshade.yaml index 1c5c65e6..1f3e699c 100644 --- a/themes/nightshade.yaml +++ b/themes/nightshade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rbolsius.theme-nightshade" version: "1.0.1" installs: 1957 + rating: 0 + ratings: 0 author: "rbolsius" repo: "https://github.com/rbolsius/vscode-theme-nightshade" url: "https://marketplace.visualstudio.com/items?itemName=rbolsius.theme-nightshade" diff --git a/themes/nightshift-lobo-dawn.yaml b/themes/nightshift-lobo-dawn.yaml index c9dfcf11..3d932237 100644 --- a/themes/nightshift-lobo-dawn.yaml +++ b/themes/nightshift-lobo-dawn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NightshiftLobo.nightshiftlobo" version: "2.0.0" installs: 17 + rating: 0 + ratings: 0 author: "Nightshift Lobo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NightshiftLobo.nightshiftlobo" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 90.1 black: 77.7 diff --git a/themes/nightshiftlobo-obsidian.yaml b/themes/nightshiftlobo-obsidian.yaml index abcc04e5..147c2919 100644 --- a/themes/nightshiftlobo-obsidian.yaml +++ b/themes/nightshiftlobo-obsidian.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NightshiftLobo.nightshiftlobo" version: "2.0.0" installs: 17 + rating: 0 + ratings: 0 author: "Nightshift Lobo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NightshiftLobo.nightshiftlobo" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "purple" hue: 266 + pair: null contrast: fg: 85.4 black: 0 diff --git a/themes/nightshiftlobo-shadow.yaml b/themes/nightshiftlobo-shadow.yaml index f76976dd..83c2a57d 100644 --- a/themes/nightshiftlobo-shadow.yaml +++ b/themes/nightshiftlobo-shadow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NightshiftLobo.nightshiftlobo" version: "2.0.0" installs: 17 + rating: 0 + ratings: 0 author: "Nightshift Lobo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NightshiftLobo.nightshiftlobo" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "purple" hue: 267 + pair: null contrast: fg: 84.1 black: 0 diff --git a/themes/nightshiftlobo.yaml b/themes/nightshiftlobo.yaml index 7e2077f7..00f7954d 100644 --- a/themes/nightshiftlobo.yaml +++ b/themes/nightshiftlobo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NightshiftLobo.nightshiftlobo" version: "2.0.0" installs: 17 + rating: 0 + ratings: 0 author: "Nightshift Lobo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NightshiftLobo.nightshiftlobo" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "purple" hue: 264 + pair: null contrast: fg: 82.5 black: 0 diff --git a/themes/nightsky.yaml b/themes/nightsky.yaml index 5f152790..bc814043 100644 --- a/themes/nightsky.yaml +++ b/themes/nightsky.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "abeilles.NightSky" version: "1.0.5" installs: 569 + rating: 0 + ratings: 0 author: "abeilles" repo: "https://github.com/Abeilles8/NightSky" url: "https://marketplace.visualstudio.com/items?itemName=abeilles.NightSky" diff --git a/themes/nightswell.yaml b/themes/nightswell.yaml index a94cf237..fc3fd57a 100644 --- a/themes/nightswell.yaml +++ b/themes/nightswell.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TrueMyst.night-swell" version: "1.0.2" installs: 201 + rating: 5 + ratings: 1 author: "TrueMyst" repo: "https://github.com/TrueMyst/NightSwell" url: "https://marketplace.visualstudio.com/items?itemName=TrueMyst.night-swell" diff --git a/themes/nightwing.yaml b/themes/nightwing.yaml index 9b48aab8..c1703cb6 100644 --- a/themes/nightwing.yaml +++ b/themes/nightwing.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bwielgosz.nightwing" version: "1.0.3" installs: 409 + rating: 0 + ratings: 0 author: "Bartek Wielgosz 💻" repo: "https://github.com/bwielgosz/nightwing-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=bwielgosz.nightwing" diff --git a/themes/nighty-bordered.yaml b/themes/nighty-bordered.yaml new file mode 100644 index 00000000..3f03f1a4 --- /dev/null +++ b/themes/nighty-bordered.yaml @@ -0,0 +1,52 @@ +name: "Nighty Bordered" +source: + marketplace_id: "nachop51.nachop-theme" + version: "2.0.0" + installs: 303 + rating: 5 + ratings: 1 + author: "Nachop Peralta" + repo: "https://github.com/nachop51/nachop-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nachop51.nachop-theme" +colors: + bg: "#1D1A24" + fg: "#EDECEE" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#F0C758" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#FFEC80" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 299 + pair: null + contrast: + fg: 94.2 + black: 8.3 + red: 36.2 + green: 59.8 + yellow: 74 + blue: 49.1 + magenta: 38.5 + cyan: 52 + white: 82.5 + brightBlack: 14.9 + brightRed: 45.6 + brightGreen: 76.3 + brightYellow: 93.2 + brightBlue: 63.2 + brightMagenta: 49.7 + brightCyan: 67.3 + brightWhite: 90.1 diff --git a/themes/nighty-purple-color-theme.yaml b/themes/nighty-purple-color-theme.yaml index 39655f1d..4e183634 100644 --- a/themes/nighty-purple-color-theme.yaml +++ b/themes/nighty-purple-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ExBrain.nighty-purple" version: "1.0.2" installs: 346 + rating: 0 + ratings: 0 author: "ExBrain" repo: "https://github.com/exbraiin/VsCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=ExBrain.nighty-purple" diff --git a/themes/nigthwolf-color-theme.yaml b/themes/nigthwolf-color-theme.yaml index 85176cbd..838225aa 100644 --- a/themes/nigthwolf-color-theme.yaml +++ b/themes/nigthwolf-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daniloBrayann.night-wolfdark" version: "0.0.10" installs: 320 + rating: 0 + ratings: 0 author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.night-wolfdark" diff --git a/themes/nihil.yaml b/themes/nihil.yaml new file mode 100644 index 00000000..df285f41 --- /dev/null +++ b/themes/nihil.yaml @@ -0,0 +1,52 @@ +name: "nihil" +source: + marketplace_id: "CocaineJohnsson.nihil" + version: "1.0.2" + installs: 284 + rating: 0 + ratings: 0 + author: "Cocaine Johnsson" + repo: "https://github.com/CocaineJohnsson/vscode-nihil-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CocaineJohnsson.nihil" +colors: + bg: "#161616" + fg: "#FCE8CB" + black: "#080808" + red: "#F92649" + green: "#D66990" + yellow: "#A6E22E" + blue: "#376DAD" + magenta: "#724284" + cyan: "#69B3C1" + white: "#E0E0E0" + brightBlack: "#515151" + brightRed: "#FF2222" + brightGreen: "#008540" + brightYellow: "#FCE8CB" + brightBlue: "#3CDFB5" + brightMagenta: "#724284" + brightCyan: "#66A9EC" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 93.7 + black: 0 + red: 36.5 + green: 40.4 + yellow: 77.1 + blue: 24.7 + magenta: 15.6 + cyan: 54.3 + white: 87 + brightBlack: 13.7 + brightRed: 37.4 + brightGreen: 28.5 + brightYellow: 93.7 + brightBlue: 72.2 + brightMagenta: 15.6 + brightCyan: 52.4 + brightWhite: 100.4 diff --git a/themes/nihilleaf-theme.yaml b/themes/nihilleaf-theme.yaml index 0dde4e5d..c6a55a5b 100644 --- a/themes/nihilleaf-theme.yaml +++ b/themes/nihilleaf-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NihilLeaf.nihilleaf-theme" version: "1.0.3" installs: 874 + rating: 0 + ratings: 0 author: "NihilLeaf" repo: "https://github.com/NihilLeaf/NihilLeaf-VScode-Green-Theme" url: "https://marketplace.visualstudio.com/items?itemName=NihilLeaf.nihilleaf-theme" diff --git a/themes/niketa-pop-dark.yaml b/themes/niketa-pop-dark.yaml index 44be8cca..51850c62 100644 --- a/themes/niketa-pop-dark.yaml +++ b/themes/niketa-pop-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "selfrefactor.allegory-theme" version: "0.1.1" installs: 768 + rating: 0 + ratings: 0 author: "selfrefactor" repo: "https://github.com/selfrefactor/allegory-theme" url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" diff --git a/themes/niketa-pop-light.yaml b/themes/niketa-pop-light.yaml index b46e54bf..8a7c41c8 100644 --- a/themes/niketa-pop-light.yaml +++ b/themes/niketa-pop-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "selfrefactor.allegory-theme" version: "0.1.1" installs: 768 + rating: 0 + ratings: 0 author: "selfrefactor" repo: "https://github.com/selfrefactor/allegory-theme" url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" diff --git a/themes/niketaoasis.yaml b/themes/niketaoasis.yaml index e00b029d..cd236514 100644 --- a/themes/niketaoasis.yaml +++ b/themes/niketaoasis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "selfrefactor.allegory-theme" version: "0.1.1" installs: 768 + rating: 0 + ratings: 0 author: "selfrefactor" repo: "https://github.com/selfrefactor/allegory-theme" url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" diff --git a/themes/niketaplus.yaml b/themes/niketaplus.yaml index f656c49f..8240e13d 100644 --- a/themes/niketaplus.yaml +++ b/themes/niketaplus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "selfrefactor.allegory-theme" version: "0.1.1" installs: 768 + rating: 0 + ratings: 0 author: "selfrefactor" repo: "https://github.com/selfrefactor/allegory-theme" url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" diff --git a/themes/niketaprettier.yaml b/themes/niketaprettier.yaml index 5be6b675..b89eabbb 100644 --- a/themes/niketaprettier.yaml +++ b/themes/niketaprettier.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "selfrefactor.allegory-theme" version: "0.1.1" installs: 768 + rating: 0 + ratings: 0 author: "selfrefactor" repo: "https://github.com/selfrefactor/allegory-theme" url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" diff --git a/themes/niko-s-techlabs-dark.yaml b/themes/niko-s-techlabs-dark.yaml index 7cb33b2e..fff9afa8 100644 --- a/themes/niko-s-techlabs-dark.yaml +++ b/themes/niko-s-techlabs-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ntl.ntl-theme" version: "0.0.1" installs: 40 + rating: 5 + ratings: 1 author: "Niko's TechLabs" repo: "https://gitlab.com/nikos-techlabs/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ntl.ntl-theme" diff --git a/themes/nikso-vscode-theme-dark.yaml b/themes/nikso-vscode-theme-dark.yaml index f49cb561..747a70a7 100644 --- a/themes/nikso-vscode-theme-dark.yaml +++ b/themes/nikso-vscode-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thenikso.nikso-vscode-theme" version: "2.0.0" installs: 96 + rating: 0 + ratings: 0 author: "thenikso" repo: "https://github.com/thenikso/nikso-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thenikso.nikso-vscode-theme" diff --git a/themes/nil-ui.yaml b/themes/nil-ui.yaml index b7c93a51..5787d3eb 100644 --- a/themes/nil-ui.yaml +++ b/themes/nil-ui.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Nitrino.nil-ui" version: "0.2.0" installs: 556 + rating: 5 + ratings: 1 author: "Petr Stepchenko" repo: "https://github.com/Nitrino/vscode-theme-nil-ui" url: "https://marketplace.visualstudio.com/items?itemName=Nitrino.nil-ui" diff --git a/themes/nimbus-mint-light.yaml b/themes/nimbus-mint-light.yaml index 3442617d..cf511d4d 100644 --- a/themes/nimbus-mint-light.yaml +++ b/themes/nimbus-mint-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/ninjadark.yaml b/themes/ninjadark.yaml index cf4e2f4c..db9b0fe0 100644 --- a/themes/ninjadark.yaml +++ b/themes/ninjadark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Manikandan.ninjadark" version: "0.2.0" installs: 469 + rating: 5 + ratings: 1 author: "Manikandan" repo: "https://github.com/mani-cmd/ninjadark" url: "https://marketplace.visualstudio.com/items?itemName=Manikandan.ninjadark" diff --git a/themes/nitrous-theme-dark.yaml b/themes/nitrous-theme-dark.yaml index fabee20a..6a80df0e 100644 --- a/themes/nitrous-theme-dark.yaml +++ b/themes/nitrous-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nitrous-cloud.nitrous-vscode-color-theme" version: "1.0.5" installs: 1742 + rating: 5 + ratings: 1 author: "NiTROUS Cloud" repo: "https://github.com/scar45/nitrous-vscode-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=nitrous-cloud.nitrous-vscode-color-theme" diff --git a/themes/nivtheme.yaml b/themes/nivtheme.yaml index 132ac956..b341cfbe 100644 --- a/themes/nivtheme.yaml +++ b/themes/nivtheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nivwer.nivthemes" version: "0.0.1" installs: 16 + rating: 0 + ratings: 0 author: "nivwer" repo: "https://github.com/nivwer/nivthemes" url: "https://marketplace.visualstudio.com/items?itemName=nivwer.nivthemes" diff --git a/themes/nix.yaml b/themes/nix.yaml index 97065037..7343ab2c 100644 --- a/themes/nix.yaml +++ b/themes/nix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alvarosannas.nix" version: "1.4.8" installs: 2950 + rating: 5 + ratings: 1 author: "Alvaro Santana" repo: "https://github.com/alvarosannas/nix" url: "https://marketplace.visualstudio.com/items?itemName=alvarosannas.nix" diff --git a/themes/nkalai-dark.yaml b/themes/nkalai-dark.yaml index e482d92d..f56fa4d6 100644 --- a/themes/nkalai-dark.yaml +++ b/themes/nkalai-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nkalait.nkalai-theme" version: "0.0.5" installs: 33 + rating: 0 + ratings: 0 author: "Tsepo Nkalai" repo: "https://github.com/nkalait/nkalai-vscode-colour-themes" url: "https://marketplace.visualstudio.com/items?itemName=nkalait.nkalai-theme" diff --git a/themes/nkalai-light.yaml b/themes/nkalai-light.yaml index 6447fed5..a4cd99b4 100644 --- a/themes/nkalai-light.yaml +++ b/themes/nkalai-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nkalait.nkalai-theme" version: "0.0.5" installs: 33 + rating: 0 + ratings: 0 author: "Tsepo Nkalai" repo: "https://github.com/nkalait/nkalai-vscode-colour-themes" url: "https://marketplace.visualstudio.com/items?itemName=nkalait.nkalai-theme" diff --git a/themes/nloo-theme.yaml b/themes/nloo-theme.yaml index 673fa680..d3facde7 100644 --- a/themes/nloo-theme.yaml +++ b/themes/nloo-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nloo.nlootheme" version: "0.0.4" installs: 188 + rating: 0 + ratings: 0 author: "nloo" repo: "https://github.com/n-loo/nielstheme" url: "https://marketplace.visualstudio.com/items?itemName=nloo.nlootheme" diff --git a/themes/no-not-the-lava-it-burns-ahhh-fork.yaml b/themes/no-not-the-lava-it-burns-ahhh-fork.yaml index 1b9aa9be..ce8d8eea 100644 --- a/themes/no-not-the-lava-it-burns-ahhh-fork.yaml +++ b/themes/no-not-the-lava-it-burns-ahhh-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xynny.painfullight-theme" version: "0.0.1" installs: 417 + rating: 5 + ratings: 2 author: "xynny" repo: "https://github.com/xynnylol/vsthemes" url: "https://marketplace.visualstudio.com/items?itemName=xynny.painfullight-theme" diff --git a/themes/no-pixie-blue-dark.yaml b/themes/no-pixie-blue-dark.yaml index c562b721..86d7cc1d 100644 --- a/themes/no-pixie-blue-dark.yaml +++ b/themes/no-pixie-blue-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "no-pixie.nopixie-theme" version: "2.1.0" installs: 28 + rating: 0 + ratings: 0 author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" diff --git a/themes/no-pixie-blue-light.yaml b/themes/no-pixie-blue-light.yaml index ec5f7a4a..70b8dbbf 100644 --- a/themes/no-pixie-blue-light.yaml +++ b/themes/no-pixie-blue-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "no-pixie.nopixie-theme" version: "2.1.0" installs: 28 + rating: 0 + ratings: 0 author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" diff --git a/themes/no-pixie-dark-high-contrast.yaml b/themes/no-pixie-dark-high-contrast.yaml index 56047abe..3872079e 100644 --- a/themes/no-pixie-dark-high-contrast.yaml +++ b/themes/no-pixie-dark-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "no-pixie.nopixie-theme" version: "2.1.0" installs: 28 + rating: 0 + ratings: 0 author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" diff --git a/themes/no-pixie-dark.yaml b/themes/no-pixie-dark.yaml index 2371c17f..faf08ae5 100644 --- a/themes/no-pixie-dark.yaml +++ b/themes/no-pixie-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "no-pixie.nopixie-theme" version: "2.1.0" installs: 28 + rating: 0 + ratings: 0 author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" diff --git a/themes/no-pixie-light-high-contrast.yaml b/themes/no-pixie-light-high-contrast.yaml index 8c75be94..fd64ae13 100644 --- a/themes/no-pixie-light-high-contrast.yaml +++ b/themes/no-pixie-light-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "no-pixie.nopixie-theme" version: "2.1.0" installs: 28 + rating: 0 + ratings: 0 author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" diff --git a/themes/no-pixie-light.yaml b/themes/no-pixie-light.yaml index b11dab73..d1d3e7b3 100644 --- a/themes/no-pixie-light.yaml +++ b/themes/no-pixie-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "no-pixie.nopixie-theme" version: "2.1.0" installs: 28 + rating: 0 + ratings: 0 author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" diff --git a/themes/no-pixie-yellow-dark.yaml b/themes/no-pixie-yellow-dark.yaml index 07537615..c969cd49 100644 --- a/themes/no-pixie-yellow-dark.yaml +++ b/themes/no-pixie-yellow-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "no-pixie.nopixie-theme" version: "2.1.0" installs: 28 + rating: 0 + ratings: 0 author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" diff --git a/themes/no-pixie-yellow-light.yaml b/themes/no-pixie-yellow-light.yaml index 583df80c..94f59b50 100644 --- a/themes/no-pixie-yellow-light.yaml +++ b/themes/no-pixie-yellow-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "no-pixie.nopixie-theme" version: "2.1.0" installs: 28 + rating: 0 + ratings: 0 author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" diff --git a/themes/noah-theme.yaml b/themes/noah-theme.yaml index 29655541..31a52dd7 100644 --- a/themes/noah-theme.yaml +++ b/themes/noah-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "johnnyghost.noah-theme" version: "0.4.4" installs: 2704 + rating: 4.5 + ratings: 2 author: "johnnyghost" repo: "https://github.com/johnnyghost/vsc-noah-theme" url: "https://marketplace.visualstudio.com/items?itemName=johnnyghost.noah-theme" diff --git a/themes/noctaliatheme.yaml b/themes/noctaliatheme.yaml index 6138b43b..ed9dc5cb 100644 --- a/themes/noctaliatheme.yaml +++ b/themes/noctaliatheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Noctalia.noctaliatheme" version: "0.0.5" installs: 1310 + rating: 0 + ratings: 0 author: "Noctalia Team" repo: "https://github.com/tuibird/noctalia-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Noctalia.noctaliatheme" diff --git a/themes/noctilux.yaml b/themes/noctilux.yaml index db9f014d..097b8bb5 100644 --- a/themes/noctilux.yaml +++ b/themes/noctilux.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "madgrid.noctilux-theme" version: "0.0.1" installs: 1964 + rating: 0 + ratings: 0 author: "madgrid" repo: "https://github.com/madgrid/vscode-noctilux" url: "https://marketplace.visualstudio.com/items?itemName=madgrid.noctilux-theme" diff --git a/themes/noctis-high-contrast.yaml b/themes/noctis-high-contrast.yaml index 92774631..874b06c1 100644 --- a/themes/noctis-high-contrast.yaml +++ b/themes/noctis-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kamen.noctis-high-contrast" version: "10.39.1" installs: 47803 + rating: 5 + ratings: 6 author: "Kamen" repo: "https://github.com/KamenKolev/noctis-hc" url: "https://marketplace.visualstudio.com/items?itemName=Kamen.noctis-high-contrast" diff --git a/themes/noctis-lilac.yaml b/themes/noctis-lilac.yaml index cbb72216..f0def548 100644 --- a/themes/noctis-lilac.yaml +++ b/themes/noctis-lilac.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ramly.my-clean-theme" version: "0.0.1" installs: 382 + rating: 0 + ratings: 0 author: "Ramly" repo: "https://github.com/Ramly23/my-clean-theme" url: "https://marketplace.visualstudio.com/items?itemName=Ramly.my-clean-theme" diff --git a/themes/noctis-lux-ansi-16.yaml b/themes/noctis-lux-ansi-16.yaml index 079396ca..db15d24b 100644 --- a/themes/noctis-lux-ansi-16.yaml +++ b/themes/noctis-lux-ansi-16.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ctenbrinke.ansi16" version: "0.3.8" installs: 824 + rating: 5 + ratings: 1 author: "chtenb" repo: "https://github.com/chtenb/vscode-ansi16" url: "https://marketplace.visualstudio.com/items?itemName=ctenbrinke.ansi16" diff --git a/themes/noctis-lux-dean-s-version.yaml b/themes/noctis-lux-dean-s-version.yaml index 42c2ac55..ee8eb429 100644 --- a/themes/noctis-lux-dean-s-version.yaml +++ b/themes/noctis-lux-dean-s-version.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DeanRTaylor1.noctis-lux-medium" version: "0.4.0" installs: 1147 + rating: 5 + ratings: 1 author: "DeanRTaylor1" repo: "https://github.com/DeanRTaylor1/noctis-lux-deans-version" url: "https://marketplace.visualstudio.com/items?itemName=DeanRTaylor1.noctis-lux-medium" diff --git a/themes/noctis-red-flow.yaml b/themes/noctis-red-flow.yaml index 32422a6a..d7ca3c4a 100644 --- a/themes/noctis-red-flow.yaml +++ b/themes/noctis-red-flow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "doc-extentions.doctis" version: "1.0.9" installs: 4846 + rating: 5 + ratings: 3 author: "Doc" repo: "https://github.com/doc-code-hub/noctis" url: "https://marketplace.visualstudio.com/items?itemName=doc-extentions.doctis" diff --git a/themes/noctua-black-rose.yaml b/themes/noctua-black-rose.yaml index 660de2c1..9fc2dbd3 100644 --- a/themes/noctua-black-rose.yaml +++ b/themes/noctua-black-rose.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Firstbober.noctua-theme" version: "1.2.1" installs: 1696 + rating: 0 + ratings: 0 author: "Firstbober" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Firstbober.noctua-theme" diff --git a/themes/noctua-dark-leaf.yaml b/themes/noctua-dark-leaf.yaml index e2b0a088..49505e93 100644 --- a/themes/noctua-dark-leaf.yaml +++ b/themes/noctua-dark-leaf.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Firstbober.noctua-theme" version: "1.2.1" installs: 1696 + rating: 0 + ratings: 0 author: "Firstbober" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Firstbober.noctua-theme" diff --git a/themes/noctua-grass.yaml b/themes/noctua-grass.yaml index 40ea6f2b..4524d32d 100644 --- a/themes/noctua-grass.yaml +++ b/themes/noctua-grass.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Firstbober.noctua-theme" version: "1.2.1" installs: 1696 + rating: 0 + ratings: 0 author: "Firstbober" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Firstbober.noctua-theme" diff --git a/themes/noctua-hidden-sky.yaml b/themes/noctua-hidden-sky.yaml index 69181549..0d24044c 100644 --- a/themes/noctua-hidden-sky.yaml +++ b/themes/noctua-hidden-sky.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Firstbober.noctua-theme" version: "1.2.1" installs: 1696 + rating: 0 + ratings: 0 author: "Firstbober" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Firstbober.noctua-theme" diff --git a/themes/nocturnal.yaml b/themes/nocturnal.yaml index 409d5980..925aebf9 100644 --- a/themes/nocturnal.yaml +++ b/themes/nocturnal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JaimeStill.nocturnal" version: "0.0.2" installs: 1005 + rating: 0 + ratings: 0 author: "JaimeStill" repo: "https://github.com/JaimeStill/nocturnal" url: "https://marketplace.visualstudio.com/items?itemName=JaimeStill.nocturnal" diff --git a/themes/nodr-cocoa.yaml b/themes/nodr-cocoa.yaml index 4cba26d3..e0488d6a 100644 --- a/themes/nodr-cocoa.yaml +++ b/themes/nodr-cocoa.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samuelbran.nodr" version: "1.2.0" installs: 2894 + rating: 0 + ratings: 0 author: "Samuel Bran" repo: "https://github.com/samuelbran/Nodr" url: "https://marketplace.visualstudio.com/items?itemName=samuelbran.nodr" diff --git a/themes/nodr-plum.yaml b/themes/nodr-plum.yaml index 4668f5cd..1e9ad7fa 100644 --- a/themes/nodr-plum.yaml +++ b/themes/nodr-plum.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samuelbran.nodr" version: "1.2.0" installs: 2894 + rating: 0 + ratings: 0 author: "Samuel Bran" repo: "https://github.com/samuelbran/Nodr" url: "https://marketplace.visualstudio.com/items?itemName=samuelbran.nodr" diff --git a/themes/noe.yaml b/themes/noe.yaml new file mode 100644 index 00000000..7b3cb198 --- /dev/null +++ b/themes/noe.yaml @@ -0,0 +1,52 @@ +name: "Noe" +source: + marketplace_id: "kaylie.noe" + version: "1.0.2" + installs: 209 + rating: 0 + ratings: 0 + author: "kaylie" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kaylie.noe" +colors: + bg: "#414E58" + fg: "#D6DEEB" + black: "#414E58" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ADDB67" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 241 + pair: null + contrast: + fg: 72.3 + black: 0 + red: 26.4 + green: 54.3 + yellow: 62 + blue: 43 + magenta: 40.8 + cyan: 46.8 + white: 93.9 + brightBlack: 0 + brightRed: 26.4 + brightGreen: 54.3 + brightYellow: 80.8 + brightBlue: 43 + brightMagenta: 40.8 + brightCyan: 61 + brightWhite: 93.9 diff --git a/themes/noel.yaml b/themes/noel.yaml index 205e1c1d..46ad286c 100644 --- a/themes/noel.yaml +++ b/themes/noel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arzg.noel" version: "2.1.0" installs: 614 + rating: 5 + ratings: 1 author: "arzg" repo: "https://github.com/arzg/noel" url: "https://marketplace.visualstudio.com/items?itemName=arzg.noel" diff --git a/themes/noir-dark.yaml b/themes/noir-dark.yaml index cc9fb999..fb961739 100644 --- a/themes/noir-dark.yaml +++ b/themes/noir-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SectorZ.noir-vs-code-theme" version: "1.5.0" installs: 771 + rating: 0 + ratings: 0 author: "Sector Z" repo: "https://github.com/SenpaiSumpie/Noir" url: "https://marketplace.visualstudio.com/items?itemName=SectorZ.noir-vs-code-theme" diff --git a/themes/noir-dracula.yaml b/themes/noir-dracula.yaml index 7b505ed1..30f9e944 100644 --- a/themes/noir-dracula.yaml +++ b/themes/noir-dracula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" installs: 13972 + rating: 5 + ratings: 3 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" diff --git a/themes/noir-essence-dark.yaml b/themes/noir-essence-dark.yaml new file mode 100644 index 00000000..e1b5c149 --- /dev/null +++ b/themes/noir-essence-dark.yaml @@ -0,0 +1,52 @@ +name: "Noir Essence Dark" +source: + marketplace_id: "u1145h.u1145h-heme-ark" + version: "0.6.1" + installs: 1487 + rating: 5 + ratings: 1 + author: "u1145h" + repo: "https://github.com/u1145h/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=u1145h.u1145h-heme-ark" +colors: + bg: "#111314" + fg: "#F7F3EA" + black: "#2B2D2D" + red: "#EA6962" + green: "#89B482" + yellow: "#E78A4E" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#A9B665" + white: "#F7F3EA" + brightBlack: "#434545" + brightRed: "#EA6962" + brightGreen: "#89B482" + brightYellow: "#E78A4E" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#A9B665" + brightWhite: "#F7F3EA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Noir Essence Light" + contrast: + fg: 99.5 + black: 0 + red: 43.3 + green: 55 + yellow: 51.2 + blue: 52.6 + magenta: 48.4 + cyan: 58.4 + white: 99.5 + brightBlack: 9.4 + brightRed: 43.3 + brightGreen: 55 + brightYellow: 51.2 + brightBlue: 52.6 + brightMagenta: 48.4 + brightCyan: 58.4 + brightWhite: 99.5 diff --git a/themes/noir-essence-light.yaml b/themes/noir-essence-light.yaml index f2c3631c..40e40d6a 100644 --- a/themes/noir-essence-light.yaml +++ b/themes/noir-essence-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "u1145h.u1145h-heme-ark" version: "0.6.1" installs: 1487 + rating: 5 + ratings: 1 author: "u1145h" repo: "https://github.com/u1145h/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=u1145h.u1145h-heme-ark" diff --git a/themes/noir-light.yaml b/themes/noir-light.yaml index e29be204..d43fd6ce 100644 --- a/themes/noir-light.yaml +++ b/themes/noir-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SectorZ.noir-vs-code-theme" version: "1.5.0" installs: 771 + rating: 0 + ratings: 0 author: "Sector Z" repo: "https://github.com/SenpaiSumpie/Noir" url: "https://marketplace.visualstudio.com/items?itemName=SectorZ.noir-vs-code-theme" diff --git a/themes/noir-outrun.yaml b/themes/noir-outrun.yaml index 97f22ecf..2befd8a6 100644 --- a/themes/noir-outrun.yaml +++ b/themes/noir-outrun.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" installs: 13972 + rating: 5 + ratings: 3 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" diff --git a/themes/noir-owl.yaml b/themes/noir-owl.yaml index 314d36f6..fde82a70 100644 --- a/themes/noir-owl.yaml +++ b/themes/noir-owl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" installs: 13972 + rating: 5 + ratings: 3 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" diff --git a/themes/noir-poimandres-black.yaml b/themes/noir-poimandres-black.yaml index 5b27735a..c90088e0 100644 --- a/themes/noir-poimandres-black.yaml +++ b/themes/noir-poimandres-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" installs: 13972 + rating: 5 + ratings: 3 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" diff --git a/themes/noir-poimandres-dark.yaml b/themes/noir-poimandres-dark.yaml index 81334bd6..b24e1f4b 100644 --- a/themes/noir-poimandres-dark.yaml +++ b/themes/noir-poimandres-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" installs: 13972 + rating: 5 + ratings: 3 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" diff --git a/themes/noir-poimandres-darker.yaml b/themes/noir-poimandres-darker.yaml index c33bb813..69e0d476 100644 --- a/themes/noir-poimandres-darker.yaml +++ b/themes/noir-poimandres-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" installs: 13972 + rating: 5 + ratings: 3 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" diff --git a/themes/noir-poimandres.yaml b/themes/noir-poimandres.yaml index 6fce31c5..973686a4 100644 --- a/themes/noir-poimandres.yaml +++ b/themes/noir-poimandres.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" installs: 13972 + rating: 5 + ratings: 3 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" diff --git a/themes/noir-ros-pine-grey.yaml b/themes/noir-ros-pine-grey.yaml index 6030b23b..345c9f41 100644 --- a/themes/noir-ros-pine-grey.yaml +++ b/themes/noir-ros-pine-grey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" installs: 13972 + rating: 5 + ratings: 3 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" diff --git a/themes/noir-ros-pine-moon-grey.yaml b/themes/noir-ros-pine-moon-grey.yaml index 87b5f7a1..7234020e 100644 --- a/themes/noir-ros-pine-moon-grey.yaml +++ b/themes/noir-ros-pine-moon-grey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" installs: 13972 + rating: 5 + ratings: 3 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" diff --git a/themes/noir-tokyo-night-black.yaml b/themes/noir-tokyo-night-black.yaml index 95185225..b6212a2d 100644 --- a/themes/noir-tokyo-night-black.yaml +++ b/themes/noir-tokyo-night-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" installs: 13972 + rating: 5 + ratings: 3 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" diff --git a/themes/noir-tokyo-night.yaml b/themes/noir-tokyo-night.yaml index 46da7779..484daf64 100644 --- a/themes/noir-tokyo-night.yaml +++ b/themes/noir-tokyo-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrewberty.noir-theme-bundle" version: "1.7.0" installs: 13972 + rating: 5 + ratings: 3 author: "andrewberty" repo: "https://github.com/andrew-george/Noir-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" diff --git a/themes/noirex.yaml b/themes/noirex.yaml index 04d89f56..5c342028 100644 --- a/themes/noirex.yaml +++ b/themes/noirex.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anexlab.noirex" version: "1.0.2" installs: 53 + rating: 0 + ratings: 0 author: "anexlab" repo: "https://github.com/anexlab/noirex" url: "https://marketplace.visualstudio.com/items?itemName=anexlab.noirex" diff --git a/themes/noirzen.yaml b/themes/noirzen.yaml index 58478df3..e0ae0d99 100644 --- a/themes/noirzen.yaml +++ b/themes/noirzen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "e108.noirzen-theme" version: "1.6.0" installs: 78 + rating: 5 + ratings: 1 author: "e108" repo: "https://github.com/Q2x38b/noirzen" url: "https://marketplace.visualstudio.com/items?itemName=e108.noirzen-theme" diff --git a/themes/nokion-clean.yaml b/themes/nokion-clean.yaml index 15cffc98..62233f20 100644 --- a/themes/nokion-clean.yaml +++ b/themes/nokion-clean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NokionThemes.nokion-clean" version: "0.1.2" installs: 294 + rating: 5 + ratings: 1 author: "Nokion" repo: "https://github.com/Vbrand01/nokion-clean" url: "https://marketplace.visualstudio.com/items?itemName=NokionThemes.nokion-clean" diff --git a/themes/noll-tta.yaml b/themes/noll-tta.yaml index c92a7831..83a3c553 100644 --- a/themes/noll-tta.yaml +++ b/themes/noll-tta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shytikov.nollatta" version: "1.3.2" installs: 1127 + rating: 5 + ratings: 1 author: "Oleksii Shytikov" repo: "https://github.com/shytikov/nollatta" url: "https://marketplace.visualstudio.com/items?itemName=shytikov.nollatta" diff --git a/themes/non-arbitrary-colors-theme.yaml b/themes/non-arbitrary-colors-theme.yaml index 4e541a13..3f001dd7 100644 --- a/themes/non-arbitrary-colors-theme.yaml +++ b/themes/non-arbitrary-colors-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "michelnovus.non-arbitrary-colors-theme" version: "1.1.1" installs: 81 + rating: 0 + ratings: 0 author: "Michel Novus" repo: "https://github.com/michelnovus/non-arbitrary-colors-theme" url: "https://marketplace.visualstudio.com/items?itemName=michelnovus.non-arbitrary-colors-theme" diff --git a/themes/noname-ui-next.yaml b/themes/noname-ui-next.yaml index 05f77b0e..e7a40301 100644 --- a/themes/noname-ui-next.yaml +++ b/themes/noname-ui-next.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iseos.noname-ui" version: "1.1.2" installs: 1739 + rating: 5 + ratings: 2 author: "iseos" repo: "https://github.com/iseos/noname-ui" url: "https://marketplace.visualstudio.com/items?itemName=iseos.noname-ui" diff --git a/themes/noname-ui.yaml b/themes/noname-ui.yaml index 1ae52aa7..30bd1425 100644 --- a/themes/noname-ui.yaml +++ b/themes/noname-ui.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "iseos.noname-ui" version: "1.1.2" installs: 1739 + rating: 5 + ratings: 2 author: "iseos" repo: "https://github.com/iseos/noname-ui" url: "https://marketplace.visualstudio.com/items?itemName=iseos.noname-ui" diff --git a/themes/noori.yaml b/themes/noori.yaml index 08000dd5..cb1bef58 100644 --- a/themes/noori.yaml +++ b/themes/noori.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "indigo.noori" version: "2.1.0" installs: 866 + rating: 5 + ratings: 1 author: "indigo" repo: "https://github.com/gabriela-tomazzi/birdTheme" url: "https://marketplace.visualstudio.com/items?itemName=indigo.noori" diff --git a/themes/noparanoia.yaml b/themes/noparanoia.yaml index 77010a60..2ebf8688 100644 --- a/themes/noparanoia.yaml +++ b/themes/noparanoia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NoParanoia.noparanoia" version: "1.0.81" installs: 1352 + rating: 5 + ratings: 2 author: "NoParanoia" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NoParanoia.noparanoia" diff --git a/themes/nora-dark.yaml b/themes/nora-dark.yaml index 105d77b0..a08e2df4 100644 --- a/themes/nora-dark.yaml +++ b/themes/nora-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sathmin-Januth.nora" version: "1.0.3" installs: 388 + rating: 5 + ratings: 1 author: "NoraCora" repo: "https://github.com/Sathmin-Januth/NoraCora-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Sathmin-Januth.nora" diff --git a/themes/nora-light-bordered.yaml b/themes/nora-light-bordered.yaml index 1e309abb..3c9a5528 100644 --- a/themes/nora-light-bordered.yaml +++ b/themes/nora-light-bordered.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sathmin-Januth.nora" version: "1.0.3" installs: 388 + rating: 5 + ratings: 1 author: "NoraCora" repo: "https://github.com/Sathmin-Januth/NoraCora-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Sathmin-Januth.nora" diff --git a/themes/nord-bunker.yaml b/themes/nord-bunker.yaml index 01bee53c..4ed6fd35 100644 --- a/themes/nord-bunker.yaml +++ b/themes/nord-bunker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sldobri.nord-5-stars" version: "1.0.1" installs: 10785 + rating: 2.75 + ratings: 4 author: "dobbbri" repo: "https://github.com/sldobri/nord-5-stars" url: "https://marketplace.visualstudio.com/items?itemName=sldobri.nord-5-stars" diff --git a/themes/nord-dark-contrast.yaml b/themes/nord-dark-contrast.yaml index da6d9221..d5ce529c 100644 --- a/themes/nord-dark-contrast.yaml +++ b/themes/nord-dark-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "simojanhunen.nord-dark-contrast" version: "0.4.0" installs: 8767 + rating: 5 + ratings: 1 author: "Simo Janhunen" repo: "https://github.com/simojanhunen/nord-dark-contrast" url: "https://marketplace.visualstudio.com/items?itemName=simojanhunen.nord-dark-contrast" diff --git a/themes/nord-dark-pro.yaml b/themes/nord-dark-pro.yaml index d50a5535..d7df577b 100644 --- a/themes/nord-dark-pro.yaml +++ b/themes/nord-dark-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Curve.nord-dark-pro" version: "0.0.6" installs: 13171 + rating: 0 + ratings: 0 author: "Curve" repo: "https://github.com/Curve/Nord-Dark-Pro" url: "https://marketplace.visualstudio.com/items?itemName=Curve.nord-dark-pro" diff --git a/themes/nord-deep.yaml b/themes/nord-deep.yaml index 7bfbd78f..a0ca0590 100644 --- a/themes/nord-deep.yaml +++ b/themes/nord-deep.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BalintGyarmathy.nord-deep-visible-comments" version: "0.1.0" installs: 2379 + rating: 2 + ratings: 1 author: "Bálint Gyarmathy" repo: "https://github.com/gyaur/vscode-theme-nord-deep" url: "https://marketplace.visualstudio.com/items?itemName=BalintGyarmathy.nord-deep-visible-comments" diff --git a/themes/nord-fountain.yaml b/themes/nord-fountain.yaml new file mode 100644 index 00000000..64595279 --- /dev/null +++ b/themes/nord-fountain.yaml @@ -0,0 +1,52 @@ +name: "Nord-Fountain" +source: + marketplace_id: "internet-corey.nord-fountain" + version: "0.0.1" + installs: 388 + rating: 0 + ratings: 0 + author: "internet-corey" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=internet-corey.nord-fountain" +colors: + bg: "#272C36" + fg: "#D8DEE9" + black: "#2E3440" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 82.2 + black: 0 + red: 29.8 + green: 58.5 + yellow: 73.2 + blue: 45.4 + magenta: 43.3 + cyan: 59.5 + white: 89.1 + brightBlack: 12.2 + brightRed: 29.8 + brightGreen: 58.5 + brightYellow: 73.2 + brightBlue: 45.4 + brightMagenta: 43.3 + brightCyan: 57.4 + brightWhite: 93 diff --git a/themes/nord-jujoco.yaml b/themes/nord-jujoco.yaml index 2ef71294..862c1b77 100644 --- a/themes/nord-jujoco.yaml +++ b/themes/nord-jujoco.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jujoco.nord-jujoco" version: "1.4.1" installs: 310 + rating: 5 + ratings: 2 author: "Jujoco" repo: "https://github.com/jujoco/nord-jujoco-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jujoco.nord-jujoco" diff --git a/themes/nord-light.yaml b/themes/nord-light.yaml new file mode 100644 index 00000000..2694b104 --- /dev/null +++ b/themes/nord-light.yaml @@ -0,0 +1,50 @@ +name: "Nord Light" +source: + marketplace_id: "IllegalStudio.nord-light-theme" + version: "1.0.0" + installs: 55 + author: "Illegal Studio" + repo: "https://github.com/nord-light/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=IllegalStudio.nord-light-theme" +colors: + bg: "#ECEFF4" + fg: "#2E3440" + black: "#3B4252" + red: "#BF616A" + green: "#6B8B4F" + yellow: "#B8941E" + blue: "#3B5E85" + magenta: "#8B5E84" + cyan: "#0D7D8C" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#5E81AC" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#ECEFF4" +meta: + mode: "light" + accent: "green" + hue: null + pair: "Nord Midnight" + contrast: + fg: 88.7 + black: 83.7 + red: 58 + green: 56.4 + yellow: 45.2 + blue: 73.4 + magenta: 66.1 + cyan: 63.5 + white: 0 + brightBlack: 76 + brightRed: 58 + brightGreen: 30 + brightYellow: 16 + brightBlue: 57.8 + brightMagenta: 44.7 + brightCyan: 29 + brightWhite: 0 diff --git a/themes/nord-midnight.yaml b/themes/nord-midnight.yaml index 8c376074..081ce400 100644 --- a/themes/nord-midnight.yaml +++ b/themes/nord-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "adorabilis.nord-midnight" version: "0.0.1" installs: 4995 + rating: 5 + ratings: 3 author: "adorabilis" repo: "https://github.com/adorabilis/nord-midnight-vscode" url: "https://marketplace.visualstudio.com/items?itemName=adorabilis.nord-midnight" diff --git a/themes/nord-native.yaml b/themes/nord-native.yaml index b315adc9..bc53b1ae 100644 --- a/themes/nord-native.yaml +++ b/themes/nord-native.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "divanvisagie.nord-native-theme" version: "0.0.7" installs: 9781 + rating: 5 + ratings: 2 author: "Divan Visagie" repo: "git+https://github.com/divanvisagie/nord-native" url: "https://marketplace.visualstudio.com/items?itemName=divanvisagie.nord-native-theme" diff --git a/themes/nord-operator-theme.yaml b/themes/nord-operator-theme.yaml index 3e2d8302..5c2ed6d1 100644 --- a/themes/nord-operator-theme.yaml +++ b/themes/nord-operator-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tomByrer.nord-city-theme" version: "1.2.3" installs: 5910 + rating: 5 + ratings: 1 author: "tom byrer" repo: "https://github.com/tomByrer/nord-city-theme" url: "https://marketplace.visualstudio.com/items?itemName=tomByrer.nord-city-theme" diff --git a/themes/nord-palette.yaml b/themes/nord-palette.yaml index 8f969efe..bafb2330 100644 --- a/themes/nord-palette.yaml +++ b/themes/nord-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.nord-palette" version: "0.1.0" installs: 27396 + rating: 5 + ratings: 5 author: "Avetis" repo: "https://github.com/AvetisDN/nord-palette" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.nord-palette" diff --git a/themes/nord-zero.yaml b/themes/nord-zero.yaml index 16515a36..4d766995 100644 --- a/themes/nord-zero.yaml +++ b/themes/nord-zero.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Behrami.nord-zero" version: "0.2.6" installs: 765 + rating: 0 + ratings: 0 author: "Behrami" repo: "https://github.com/QendrimBehrami/nord-zero" url: "https://marketplace.visualstudio.com/items?itemName=Behrami.nord-zero" diff --git a/themes/nord.yaml b/themes/nord.yaml index 6d13f3cf..1bf584f0 100644 --- a/themes/nord.yaml +++ b/themes/nord.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "swashata.beautiful-ui" version: "1.7.0" installs: 121108 + rating: 4.38 + ratings: 13 author: "swashata" repo: "https://github.com/swashata/vscode-beautiful-ui" url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" diff --git a/themes/nordark.yaml b/themes/nordark.yaml new file mode 100644 index 00000000..6d249a60 --- /dev/null +++ b/themes/nordark.yaml @@ -0,0 +1,52 @@ +name: "Nordark" +source: + marketplace_id: "highglorious.darknorde" + version: "0.1.0" + installs: 77 + rating: 0 + ratings: 0 + author: "V8v" + repo: "https://github.com/highglorious/darknorde" + url: "https://marketplace.visualstudio.com/items?itemName=highglorious.darknorde" +colors: + bg: "#0D121C" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 85.8 + black: 8.5 + red: 33.4 + green: 62.1 + yellow: 76.8 + blue: 49.1 + magenta: 46.9 + cyan: 63.1 + white: 92.8 + brightBlack: 15.8 + brightRed: 33.4 + brightGreen: 62.1 + brightYellow: 76.8 + brightBlue: 49.1 + brightMagenta: 46.9 + brightCyan: 61 + brightWhite: 96.6 diff --git a/themes/nordfox.yaml b/themes/nordfox.yaml index 5edfd2f2..7df30c5f 100644 --- a/themes/nordfox.yaml +++ b/themes/nordfox.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Fr4nk1in.nordfox-vsc" version: "0.1.2" installs: 586 + rating: 5 + ratings: 1 author: "Fr4nk1in" repo: "https://github.com/Fr4nk1inCs/nordfox-vsc" url: "https://marketplace.visualstudio.com/items?itemName=Fr4nk1in.nordfox-vsc" diff --git a/themes/nordic-dark.yaml b/themes/nordic-dark.yaml index 0ef55c13..2dc5197f 100644 --- a/themes/nordic-dark.yaml +++ b/themes/nordic-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AdiKurniawan.rhapsody-theme" version: "1.2.0" installs: 146 + rating: 0 + ratings: 0 author: "Adi Kurniawan" repo: "https://github.com/adikurniawanid/rhapsody-theme" url: "https://marketplace.visualstudio.com/items?itemName=AdiKurniawan.rhapsody-theme" diff --git a/themes/nordic-electric-ai-nocturne.yaml b/themes/nordic-electric-ai-nocturne.yaml index 2ec69a27..f65d7329 100644 --- a/themes/nordic-electric-ai-nocturne.yaml +++ b/themes/nordic-electric-ai-nocturne.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "freyja-one.nordic-electric-ai" version: "1.0.2" installs: 209 + rating: 0 + ratings: 0 author: "freyja-one" repo: "https://github.com/CosmicFreyjaLab/aurora-colorschemes" url: "https://marketplace.visualstudio.com/items?itemName=freyja-one.nordic-electric-ai" diff --git a/themes/nordic.yaml b/themes/nordic.yaml index 2bb62c0b..3dcaaa87 100644 --- a/themes/nordic.yaml +++ b/themes/nordic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bonchol.nordic-vscode" version: "0.2.0" installs: 5717 + rating: 5 + ratings: 1 author: "bonchol" repo: "https://github.com/bonchol/nordic-vscode" url: "https://marketplace.visualstudio.com/items?itemName=bonchol.nordic-vscode" diff --git a/themes/nordicbox.yaml b/themes/nordicbox.yaml index 50923fd8..ac493d8f 100644 --- a/themes/nordicbox.yaml +++ b/themes/nordicbox.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fedmag.nordicbox" version: "0.0.1" installs: 75 + rating: 0 + ratings: 0 author: "fedmag" repo: "https://github.com/fedmag/nordicbox" url: "https://marketplace.visualstudio.com/items?itemName=fedmag.nordicbox" diff --git a/themes/nordicdark.yaml b/themes/nordicdark.yaml index 5aa4c8ba..275669ea 100644 --- a/themes/nordicdark.yaml +++ b/themes/nordicdark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.codeme-theme" version: "0.1.1" installs: 8080 + rating: 0 + ratings: 0 author: "Avetis" repo: "https://github.com/AvetisDN/codeme-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" diff --git a/themes/nordico.yaml b/themes/nordico.yaml index 01e16b32..3be578ca 100644 --- a/themes/nordico.yaml +++ b/themes/nordico.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "madprops.nordico" version: "1.2.2" installs: 15072 + rating: 5 + ratings: 4 author: "madprops" repo: "https://github.com/madprops/Nordico" url: "https://marketplace.visualstudio.com/items?itemName=madprops.nordico" diff --git a/themes/nordishcocoa.yaml b/themes/nordishcocoa.yaml index 525463d2..0a6770b9 100644 --- a/themes/nordishcocoa.yaml +++ b/themes/nordishcocoa.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GregPasquariello.nordishcocoa" version: "1.0.3" installs: 439 + rating: 5 + ratings: 1 author: "Greg Pasquariello" repo: "https://github.com/gpasq/VisualStudioCodeThemeNordishCocoa" url: "https://marketplace.visualstudio.com/items?itemName=GregPasquariello.nordishcocoa" diff --git a/themes/nordstone.yaml b/themes/nordstone.yaml new file mode 100644 index 00000000..f3c916f0 --- /dev/null +++ b/themes/nordstone.yaml @@ -0,0 +1,50 @@ +name: "NordStone" +source: + marketplace_id: "ruicsh.vscode-theme-nordstone" + version: "0.1.1" + installs: 311 + author: "Rui Costa" + repo: "https://github.com/ruicsh/vscode-theme-nordstone" + url: "https://marketplace.visualstudio.com/items?itemName=ruicsh.vscode-theme-nordstone" +colors: + bg: "#171717" + fg: "#D8DEE9" + black: "#292524" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#57534E" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.4 + black: 0 + red: 33 + green: 61.7 + yellow: 76.4 + blue: 48.6 + magenta: 46.5 + cyan: 62.7 + white: 92.3 + brightBlack: 14.5 + brightRed: 33 + brightGreen: 61.7 + brightYellow: 76.4 + brightBlue: 48.6 + brightMagenta: 46.5 + brightCyan: 60.6 + brightWhite: 96.2 diff --git a/themes/northeirn.yaml b/themes/northeirn.yaml index 8f14b9a4..9981cc02 100644 --- a/themes/northeirn.yaml +++ b/themes/northeirn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "murilonicemento.northeirn" version: "1.0.1" installs: 198 + rating: 5 + ratings: 1 author: "Murilo Nascimento" repo: "https://github.com/murilonicemento/northeirn-theme" url: "https://marketplace.visualstudio.com/items?itemName=murilonicemento.northeirn" diff --git a/themes/northern-territory-dark.yaml b/themes/northern-territory-dark.yaml index a10af416..82388383 100644 --- a/themes/northern-territory-dark.yaml +++ b/themes/northern-territory-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.northern-territory-theme" version: "1.3.0" installs: 0 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.northern-territory-theme" diff --git a/themes/northern-territory-light.yaml b/themes/northern-territory-light.yaml index 4cd4ba4b..48899c99 100644 --- a/themes/northern-territory-light.yaml +++ b/themes/northern-territory-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.northern-territory-theme" version: "1.3.0" installs: 0 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.northern-territory-theme" diff --git a/themes/nosk-theme.yaml b/themes/nosk-theme.yaml index e6d68a95..a4382be2 100644 --- a/themes/nosk-theme.yaml +++ b/themes/nosk-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Noskfivem.nosk" version: "0.0.1" installs: 656 + rating: 0 + ratings: 0 author: "NoskYT" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Noskfivem.nosk" diff --git a/themes/nostromo.yaml b/themes/nostromo.yaml index 65bf8bfe..d4c2961d 100644 --- a/themes/nostromo.yaml +++ b/themes/nostromo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "martintheimer.nostromo-theme" version: "1.0.2" installs: 9919 + rating: 5 + ratings: 3 author: "Martin Theimer" repo: "https://github.com/pappkamerad/nostromo-theme-visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=martintheimer.nostromo-theme" diff --git a/themes/not-so-simple.yaml b/themes/not-so-simple.yaml index 20068edd..9da4221b 100644 --- a/themes/not-so-simple.yaml +++ b/themes/not-so-simple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SimpleShiva.not-so-simple" version: "0.0.2" installs: 398 + rating: 0 + ratings: 0 author: "SimpleShiva" repo: "https://github.com/thomas-lefloch/not-so-simple" url: "https://marketplace.visualstudio.com/items?itemName=SimpleShiva.not-so-simple" diff --git a/themes/notchy-dark.yaml b/themes/notchy-dark.yaml index d53ce5b9..efb344a9 100644 --- a/themes/notchy-dark.yaml +++ b/themes/notchy-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chnotchy.notchy-theme" version: "0.0.4" installs: 115 + rating: 0 + ratings: 0 author: "Notchy" repo: "https://github.com/chnotchy/notchy-theme" url: "https://marketplace.visualstudio.com/items?itemName=chnotchy.notchy-theme" diff --git a/themes/notesocean-vs-code-theme.yaml b/themes/notesocean-vs-code-theme.yaml index b8bdf7f0..8e4cb148 100644 --- a/themes/notesocean-vs-code-theme.yaml +++ b/themes/notesocean-vs-code-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Notesocean.notesocean" version: "0.2.0" installs: 326 + rating: 5 + ratings: 1 author: "Notesocean" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Notesocean.notesocean" diff --git a/themes/notflask-theme-light.yaml b/themes/notflask-theme-light.yaml index 88bf2c34..148f41a7 100644 --- a/themes/notflask-theme-light.yaml +++ b/themes/notflask-theme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "notflask.notflask-theme" version: "1.0.2" installs: 1566 + rating: 5 + ratings: 1 author: "Daniel Flask" repo: null url: "https://marketplace.visualstudio.com/items?itemName=notflask.notflask-theme" diff --git a/themes/nothing-dark.yaml b/themes/nothing-dark.yaml index f02e0154..cef07ee6 100644 --- a/themes/nothing-dark.yaml +++ b/themes/nothing-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nothing-design.nothing-theme" version: "1.0.0" installs: 367 + rating: 0 + ratings: 0 author: "nothing-design" repo: "https://github.com/nothing-design/nothing-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nothing-design.nothing-theme" diff --git a/themes/nothing-light.yaml b/themes/nothing-light.yaml index 3e9e1ba6..6b96eb5b 100644 --- a/themes/nothing-light.yaml +++ b/themes/nothing-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nothing-design.nothing-theme" version: "1.0.0" installs: 367 + rating: 0 + ratings: 0 author: "nothing-design" repo: "https://github.com/nothing-design/nothing-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nothing-design.nothing-theme" diff --git a/themes/nothing-os-dark.yaml b/themes/nothing-os-dark.yaml index 4e4020de..b630823e 100644 --- a/themes/nothing-os-dark.yaml +++ b/themes/nothing-os-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xexefe.nothing-os-theme" version: "1.2.0" installs: 219 + rating: 5 + ratings: 1 author: "xexefe" repo: "https://github.com/shahriaravi/nothing-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=xexefe.nothing-os-theme" diff --git a/themes/nothing-os-gray.yaml b/themes/nothing-os-gray.yaml index 55e713ac..baf258a6 100644 --- a/themes/nothing-os-gray.yaml +++ b/themes/nothing-os-gray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xexefe.nothing-os-theme" version: "1.2.0" installs: 219 + rating: 5 + ratings: 1 author: "xexefe" repo: "https://github.com/shahriaravi/nothing-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=xexefe.nothing-os-theme" diff --git a/themes/notion-code-theme.yaml b/themes/notion-code-theme.yaml index 52e99ee2..6504f9e7 100644 --- a/themes/notion-code-theme.yaml +++ b/themes/notion-code-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HarshitGangwar.notion-code-theme" version: "0.0.2" installs: 5258 + rating: 5 + ratings: 2 author: "Harshit Gangwar" repo: "https://github.com/harshjoeyit/vscode-notion-theme" url: "https://marketplace.visualstudio.com/items?itemName=HarshitGangwar.notion-code-theme" diff --git a/themes/notionliketheme.yaml b/themes/notionliketheme.yaml index 489d40f9..1ed00f83 100644 --- a/themes/notionliketheme.yaml +++ b/themes/notionliketheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TARA6.notion-like-theme" version: "0.2.4" installs: 590 + rating: 0 + ratings: 0 author: "TARA6" repo: "https://github.com/tarataracodfish/notion-like-theme" url: "https://marketplace.visualstudio.com/items?itemName=TARA6.notion-like-theme" diff --git a/themes/notthevimguytheme.yaml b/themes/notthevimguytheme.yaml index 2e6ce456..871be610 100644 --- a/themes/notthevimguytheme.yaml +++ b/themes/notthevimguytheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rysah.notthevimguy" version: "0.0.1" installs: 21 + rating: 0 + ratings: 0 author: "Rysah" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rysah.notthevimguy" diff --git a/themes/nova-dark.yaml b/themes/nova-dark.yaml new file mode 100644 index 00000000..c5762d16 --- /dev/null +++ b/themes/nova-dark.yaml @@ -0,0 +1,52 @@ +name: "Nova Dark" +source: + marketplace_id: "tw4.nova-language-extension" + version: "1.1.0" + installs: 9 + rating: 0 + ratings: 0 + author: "tw4" + repo: "https://github.com/tw4/nova-lang" + url: "https://marketplace.visualstudio.com/items?itemName=tw4.nova-language-extension" +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#CBA6F7" + cyan: "#94E2D5" + white: "#BAC2DE" + brightBlack: "#585B70" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#CBA6F7" + brightCyan: "#94E2D5" + brightWhite: "#A6ADC8" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: "Nova Light" + contrast: + fg: 80 + black: 9.3 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 60.8 + cyan: 78.2 + white: 68.1 + brightBlack: 16.9 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 88.4 + brightBlue: 59.1 + brightMagenta: 60.8 + brightCyan: 78.2 + brightWhite: 56.2 diff --git a/themes/nova-light.yaml b/themes/nova-light.yaml new file mode 100644 index 00000000..90ef8047 --- /dev/null +++ b/themes/nova-light.yaml @@ -0,0 +1,52 @@ +name: "Nova Light" +source: + marketplace_id: "tw4.nova-language-extension" + version: "1.1.0" + installs: 9 + rating: 0 + ratings: 0 + author: "tw4" + repo: "https://github.com/tw4/nova-lang" + url: "https://marketplace.visualstudio.com/items?itemName=tw4.nova-language-extension" +colors: + bg: "#FAF4ED" + fg: "#575279" + black: "#575279" + red: "#D7827E" + green: "#56949F" + yellow: "#EA9D34" + blue: "#286983" + magenta: "#907AA9" + cyan: "#D7827E" + white: "#F2E9E1" + brightBlack: "#9893A5" + brightRed: "#B4637A" + brightGreen: "#56949F" + brightYellow: "#EA9D34" + brightBlue: "#286983" + brightMagenta: "#907AA9" + brightCyan: "#D7827E" + brightWhite: "#E0DEF4" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: "Nova Dark" + contrast: + fg: 79.1 + black: 79.1 + red: 48.2 + green: 55.6 + yellow: 37.8 + blue: 74.2 + magenta: 59.3 + cyan: 48.2 + white: 0 + brightBlack: 50.3 + brightRed: 62.5 + brightGreen: 55.6 + brightYellow: 37.8 + brightBlue: 74.2 + brightMagenta: 59.3 + brightCyan: 48.2 + brightWhite: 9.7 diff --git a/themes/nova.yaml b/themes/nova.yaml index 9f086768..8bb4f5b2 100644 --- a/themes/nova.yaml +++ b/themes/nova.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "swashata.beautiful-ui" version: "1.7.0" installs: 121108 + rating: 4.38 + ratings: 13 author: "swashata" repo: "https://github.com/swashata/vscode-beautiful-ui" url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" diff --git a/themes/novadust.yaml b/themes/novadust.yaml index 496f0dfb..3b8f3da0 100644 --- a/themes/novadust.yaml +++ b/themes/novadust.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "novadust.novadust" version: "0.0.3" installs: 960 + rating: 5 + ratings: 3 author: "NOVADUST" repo: "https://github.com/mmartamg/novadust-vscode" url: "https://marketplace.visualstudio.com/items?itemName=novadust.novadust" diff --git a/themes/november-theme-black.yaml b/themes/november-theme-black.yaml index 92b5d5e8..92e699c7 100644 --- a/themes/november-theme-black.yaml +++ b/themes/november-theme-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AbdullahRehmani.november-theme" version: "1.2.0" installs: 56 + rating: 5 + ratings: 1 author: "Abdullah Rehmani" repo: "https://github.com/Abdullah-Rehmani-222" url: "https://marketplace.visualstudio.com/items?itemName=AbdullahRehmani.november-theme" diff --git a/themes/november-theme-darkblue.yaml b/themes/november-theme-darkblue.yaml index 9ec98f5a..387e0add 100644 --- a/themes/november-theme-darkblue.yaml +++ b/themes/november-theme-darkblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AbdullahRehmani.november-theme" version: "1.2.0" installs: 56 + rating: 5 + ratings: 1 author: "Abdullah Rehmani" repo: "https://github.com/Abdullah-Rehmani-222" url: "https://marketplace.visualstudio.com/items?itemName=AbdullahRehmani.november-theme" diff --git a/themes/nox.yaml b/themes/nox.yaml index 3662fbef..776a659d 100644 --- a/themes/nox.yaml +++ b/themes/nox.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JohannesFreutel.noxx" version: "0.0.1" installs: 44 + rating: 0 + ratings: 0 author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.noxx" diff --git a/themes/noxis-light.yaml b/themes/noxis-light.yaml index cc3e0316..dfdc72ec 100644 --- a/themes/noxis-light.yaml +++ b/themes/noxis-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "valentinocossar.noxis" version: "1.1.0" installs: 67 + rating: 0 + ratings: 0 author: "Valentino Cossar" repo: "https://github.com/valentinocossar/noxis" url: "https://marketplace.visualstudio.com/items?itemName=valentinocossar.noxis" diff --git a/themes/noxis.yaml b/themes/noxis.yaml index 683617bc..f3726a43 100644 --- a/themes/noxis.yaml +++ b/themes/noxis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "valentinocossar.noxis" version: "1.1.0" installs: 67 + rating: 0 + ratings: 0 author: "Valentino Cossar" repo: "https://github.com/valentinocossar/noxis" url: "https://marketplace.visualstudio.com/items?itemName=valentinocossar.noxis" diff --git a/themes/noxus.yaml b/themes/noxus.yaml index 71ea1ee5..80b82514 100644 --- a/themes/noxus.yaml +++ b/themes/noxus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alicanbasak.noxus-theme" version: "2.1.0" installs: 1779 + rating: 5 + ratings: 1 author: "alicanbasak" repo: "https://github.com/alicanbasak/noxus-theme" url: "https://marketplace.visualstudio.com/items?itemName=alicanbasak.noxus-theme" diff --git a/themes/npp-color-dark-hard.yaml b/themes/npp-color-dark-hard.yaml index 2a5a17de..ac2625c0 100644 --- a/themes/npp-color-dark-hard.yaml +++ b/themes/npp-color-dark-hard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gaoyia.npp-theme" version: "0.0.1" installs: 364 + rating: 0 + ratings: 0 author: "gaoyia" repo: "https://github.com/gaoyia/npp-theme" url: "https://marketplace.visualstudio.com/items?itemName=gaoyia.npp-theme" diff --git a/themes/npp-color-light-hard.yaml b/themes/npp-color-light-hard.yaml index 7280881d..0d185bb5 100644 --- a/themes/npp-color-light-hard.yaml +++ b/themes/npp-color-light-hard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gaoyia.npp-theme" version: "0.0.1" installs: 364 + rating: 0 + ratings: 0 author: "gaoyia" repo: "https://github.com/gaoyia/npp-theme" url: "https://marketplace.visualstudio.com/items?itemName=gaoyia.npp-theme" diff --git a/themes/nstlgy-dark-josh-w-comeau-inspired.yaml b/themes/nstlgy-dark-josh-w-comeau-inspired.yaml index 3f69f9f5..efb65e56 100644 --- a/themes/nstlgy-dark-josh-w-comeau-inspired.yaml +++ b/themes/nstlgy-dark-josh-w-comeau-inspired.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "grymmjack.vscode-nstlgy-dark-joshwcomeau-theme" version: "0.0.1" installs: 73 + rating: 0 + ratings: 0 author: "grymmjack" repo: "https://github.com/grymmjack/vscode-nstlgy-dark-joshwcomeau-theme" url: "https://marketplace.visualstudio.com/items?itemName=grymmjack.vscode-nstlgy-dark-joshwcomeau-theme" diff --git a/themes/nudark.yaml b/themes/nudark.yaml index 706f25a6..3494c65c 100644 --- a/themes/nudark.yaml +++ b/themes/nudark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "necdetuygur.nudark" version: "1.0.0" installs: 35 + rating: 5 + ratings: 1 author: "Necdet UYGUR" repo: "https://github.com/necdetuygur/nudark" url: "https://marketplace.visualstudio.com/items?itemName=necdetuygur.nudark" diff --git a/themes/nuitp-le-theme.yaml b/themes/nuitp-le-theme.yaml index c6b718a4..dd16b5e4 100644 --- a/themes/nuitp-le-theme.yaml +++ b/themes/nuitp-le-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Anqo.nuitpale-theme" version: "1.0.0" installs: 1226 + rating: 0 + ratings: 0 author: "Anqo" repo: "https://github.com/ohanqo/nuitpale-theme" url: "https://marketplace.visualstudio.com/items?itemName=Anqo.nuitpale-theme" diff --git a/themes/null-theme-absolute-black.yaml b/themes/null-theme-absolute-black.yaml index 15a75ead..c668cdac 100644 --- a/themes/null-theme-absolute-black.yaml +++ b/themes/null-theme-absolute-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" installs: 213 + rating: 0 + ratings: 0 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" diff --git a/themes/null-theme-electric-enhanced.yaml b/themes/null-theme-electric-enhanced.yaml index 8d5d505a..b782dd9e 100644 --- a/themes/null-theme-electric-enhanced.yaml +++ b/themes/null-theme-electric-enhanced.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" installs: 213 + rating: 0 + ratings: 0 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" diff --git a/themes/null-theme-midnight-enhanced.yaml b/themes/null-theme-midnight-enhanced.yaml index 3885e896..e773ab76 100644 --- a/themes/null-theme-midnight-enhanced.yaml +++ b/themes/null-theme-midnight-enhanced.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" installs: 213 + rating: 0 + ratings: 0 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" diff --git a/themes/null-theme-muted.yaml b/themes/null-theme-muted.yaml index 10ca816f..931643d5 100644 --- a/themes/null-theme-muted.yaml +++ b/themes/null-theme-muted.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" installs: 213 + rating: 0 + ratings: 0 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" diff --git a/themes/null-theme-near-black.yaml b/themes/null-theme-near-black.yaml index b029d17f..fae00120 100644 --- a/themes/null-theme-near-black.yaml +++ b/themes/null-theme-near-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" installs: 213 + rating: 0 + ratings: 0 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" diff --git a/themes/null-theme-pastel.yaml b/themes/null-theme-pastel.yaml index c889a4d5..50b8ad07 100644 --- a/themes/null-theme-pastel.yaml +++ b/themes/null-theme-pastel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" installs: 213 + rating: 0 + ratings: 0 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" diff --git a/themes/null-theme-synthwave.yaml b/themes/null-theme-synthwave.yaml index a6dfa2fa..a89da971 100644 --- a/themes/null-theme-synthwave.yaml +++ b/themes/null-theme-synthwave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" installs: 213 + rating: 0 + ratings: 0 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" diff --git a/themes/null-theme-vivid.yaml b/themes/null-theme-vivid.yaml index ee662d40..344e617a 100644 --- a/themes/null-theme-vivid.yaml +++ b/themes/null-theme-vivid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kimberlycasamina.null-theme" version: "1.0.8" installs: 213 + rating: 0 + ratings: 0 author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" diff --git a/themes/nultramarine.yaml b/themes/nultramarine.yaml index cec9636d..1a0eccda 100644 --- a/themes/nultramarine.yaml +++ b/themes/nultramarine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "catapillie.nultramarine" version: "1.1.0" installs: 24 + rating: 0 + ratings: 0 author: "catapillie" repo: "https://github.com/catapillie/nultramarine.git#master" url: "https://marketplace.visualstudio.com/items?itemName=catapillie.nultramarine" diff --git a/themes/nulzo-relax.yaml b/themes/nulzo-relax.yaml index d9a7c7f7..73719645 100644 --- a/themes/nulzo-relax.yaml +++ b/themes/nulzo-relax.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nulzo.nulzo-relax" version: "0.0.1" installs: 77 + rating: 5 + ratings: 1 author: "nulzo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=nulzo.nulzo-relax" diff --git a/themes/nulzo-winter-light.yaml b/themes/nulzo-winter-light.yaml index e4ca3fe3..5935ac90 100644 --- a/themes/nulzo-winter-light.yaml +++ b/themes/nulzo-winter-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nulzo.nulzo-winter-light" version: "0.0.1" installs: 116 + rating: 0 + ratings: 0 author: "nulzo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=nulzo.nulzo-winter-light" diff --git a/themes/nur-dark.yaml b/themes/nur-dark.yaml index 9ba229c2..78d71683 100644 --- a/themes/nur-dark.yaml +++ b/themes/nur-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "michelefenu.nur-theme-vscode" version: "1.1.1" installs: 429 + rating: 5 + ratings: 2 author: "Michele Fenu" repo: "https://github.com/michelefenu/nur" url: "https://marketplace.visualstudio.com/items?itemName=michelefenu.nur-theme-vscode" diff --git a/themes/nur-light.yaml b/themes/nur-light.yaml index 981abdb8..82094786 100644 --- a/themes/nur-light.yaml +++ b/themes/nur-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "michelefenu.nur-theme-vscode" version: "1.1.1" installs: 429 + rating: 5 + ratings: 2 author: "Michele Fenu" repo: "https://github.com/michelefenu/nur" url: "https://marketplace.visualstudio.com/items?itemName=michelefenu.nur-theme-vscode" diff --git a/themes/nushu-classic.yaml b/themes/nushu-classic.yaml index 6918a724..8be63431 100644 --- a/themes/nushu-classic.yaml +++ b/themes/nushu-classic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" version: "2.2.18" installs: 32063 + rating: 5 + ratings: 8 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" diff --git a/themes/nushu-dark.yaml b/themes/nushu-dark.yaml index 7b58c585..1a896447 100644 --- a/themes/nushu-dark.yaml +++ b/themes/nushu-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" version: "2.2.18" installs: 32063 + rating: 5 + ratings: 8 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" diff --git a/themes/nushu-light.yaml b/themes/nushu-light.yaml index cc6b6687..0398a914 100644 --- a/themes/nushu-light.yaml +++ b/themes/nushu-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" version: "2.2.18" installs: 32063 + rating: 5 + ratings: 8 author: "wheredoesyourmindgo" repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" diff --git a/themes/nutheme.yaml b/themes/nutheme.yaml index bf8f667f..19046b25 100644 --- a/themes/nutheme.yaml +++ b/themes/nutheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheWebDev.nutheme" version: "0.2.1" installs: 397 + rating: 0 + ratings: 0 author: "TheWebDev" repo: "https://github.com/stevie2codes/TatangoTheme" url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.nutheme" diff --git a/themes/nutty-dark-theme.yaml b/themes/nutty-dark-theme.yaml index b50b70d4..44b29c2c 100644 --- a/themes/nutty-dark-theme.yaml +++ b/themes/nutty-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/nutty-light-theme.yaml b/themes/nutty-light-theme.yaml index 66292876..cb7788e7 100644 --- a/themes/nutty-light-theme.yaml +++ b/themes/nutty-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/nuuvo-space-max.yaml b/themes/nuuvo-space-max.yaml new file mode 100644 index 00000000..b34cc170 --- /dev/null +++ b/themes/nuuvo-space-max.yaml @@ -0,0 +1,50 @@ +name: "nuuvo - space max" +source: + marketplace_id: "jacksonhardy.nuuvo" + version: "0.0.3" + installs: 49 + author: "jacksonhardy" + repo: "https://github.com/jacksonhardy/nuuvo-themes" + url: "https://marketplace.visualstudio.com/items?itemName=jacksonhardy.nuuvo" +colors: + bg: "#2B2B2B" + fg: "#CBC1D5" + black: "#B2B2B2" + red: "#BA2F59" + green: "#91DF8A" + yellow: "#FFB30F" + blue: "#3A81C3" + magenta: "#800080" + cyan: "#8D81FF" + white: "#B2B2B2" + brightBlack: "#B2B2B2" + brightRed: "#F2241F" + brightGreen: "#67FF59" + brightYellow: "#B1951D" + brightBlue: "#D7DFFF" + brightMagenta: "#A31DB1" + brightCyan: "#B5ADFF" + brightWhite: "#B2B2B2" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 67.3 + black: 56.6 + red: 20.1 + green: 72 + yellow: 65.7 + blue: 29.7 + magenta: 8.6 + cyan: 39.6 + white: 56.6 + brightBlack: 56.6 + brightRed: 31.2 + brightGreen: 84.8 + brightYellow: 42.3 + brightBlue: 83.8 + brightMagenta: 18.3 + brightCyan: 59.1 + brightWhite: 56.6 diff --git a/themes/nuxt-blend-bleach-color-theme.yaml b/themes/nuxt-blend-bleach-color-theme.yaml index 7425e80c..898562f1 100644 --- a/themes/nuxt-blend-bleach-color-theme.yaml +++ b/themes/nuxt-blend-bleach-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CeoDev.neo-nuxt3-blend" version: "3.3.4" installs: 2699 + rating: 5 + ratings: 1 author: "Vantol Bennett" repo: "https://github.com/titan-65/neo-nuxt" url: "https://marketplace.visualstudio.com/items?itemName=CeoDev.neo-nuxt3-blend" diff --git a/themes/nuxt-blend.yaml b/themes/nuxt-blend.yaml index 4d94ff65..0d6d87e6 100644 --- a/themes/nuxt-blend.yaml +++ b/themes/nuxt-blend.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CeoDev.neo-nuxt3-blend" version: "3.3.4" installs: 2699 + rating: 5 + ratings: 1 author: "Vantol Bennett" repo: "https://github.com/titan-65/neo-nuxt" url: "https://marketplace.visualstudio.com/items?itemName=CeoDev.neo-nuxt3-blend" diff --git a/themes/nuxtian-deep-space.yaml b/themes/nuxtian-deep-space.yaml index ec1beb7b..cb7b3da4 100644 --- a/themes/nuxtian-deep-space.yaml +++ b/themes/nuxtian-deep-space.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MashedPotatoStudios.nuxtian" version: "0.3.5" installs: 417 + rating: 0 + ratings: 0 author: "Mashed Potato Studios" repo: "https://github.com/mashed-potato-studios/nuxtian" url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" diff --git a/themes/nuxtian-light.yaml b/themes/nuxtian-light.yaml index 59b1688c..b5bb7778 100644 --- a/themes/nuxtian-light.yaml +++ b/themes/nuxtian-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MashedPotatoStudios.nuxtian" version: "0.3.5" installs: 417 + rating: 0 + ratings: 0 author: "Mashed Potato Studios" repo: "https://github.com/mashed-potato-studios/nuxtian" url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" diff --git a/themes/nuxtian-nitro.yaml b/themes/nuxtian-nitro.yaml index 518e5ded..23e0550c 100644 --- a/themes/nuxtian-nitro.yaml +++ b/themes/nuxtian-nitro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MashedPotatoStudios.nuxtian" version: "0.3.5" installs: 417 + rating: 0 + ratings: 0 author: "Mashed Potato Studios" repo: "https://github.com/mashed-potato-studios/nuxtian" url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" diff --git a/themes/nuxtian.yaml b/themes/nuxtian.yaml index 1707ce49..b70587c5 100644 --- a/themes/nuxtian.yaml +++ b/themes/nuxtian.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MashedPotatoStudios.nuxtian" version: "0.3.5" installs: 417 + rating: 0 + ratings: 0 author: "Mashed Potato Studios" repo: "https://github.com/mashed-potato-studios/nuxtian" url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" diff --git a/themes/nuxtiansololevel.yaml b/themes/nuxtiansololevel.yaml index 4f5d1379..df1a43db 100644 --- a/themes/nuxtiansololevel.yaml +++ b/themes/nuxtiansololevel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MashedPotatoStudios.nuxtian" version: "0.3.5" installs: 417 + rating: 0 + ratings: 0 author: "Mashed Potato Studios" repo: "https://github.com/mashed-potato-studios/nuxtian" url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" diff --git a/themes/nuxtvite.yaml b/themes/nuxtvite.yaml index 31951711..b03b970a 100644 --- a/themes/nuxtvite.yaml +++ b/themes/nuxtvite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MashedPotatoStudios.nuxtian" version: "0.3.5" installs: 417 + rating: 0 + ratings: 0 author: "Mashed Potato Studios" repo: "https://github.com/mashed-potato-studios/nuxtian" url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" diff --git a/themes/nuxtvoid.yaml b/themes/nuxtvoid.yaml index f8bc5e46..af17276f 100644 --- a/themes/nuxtvoid.yaml +++ b/themes/nuxtvoid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MashedPotatoStudios.nuxtian" version: "0.3.5" installs: 417 + rating: 0 + ratings: 0 author: "Mashed Potato Studios" repo: "https://github.com/mashed-potato-studios/nuxtian" url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" diff --git a/themes/nw21.yaml b/themes/nw21.yaml index 0b669921..21227ebb 100644 --- a/themes/nw21.yaml +++ b/themes/nw21.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "heikopanjas.berlin-postal-themes" version: "2.0.2" installs: 38 + rating: 5 + ratings: 1 author: "Heiko Panjas" repo: "https://github.com/heikopanjas/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=heikopanjas.berlin-postal-themes" diff --git a/themes/ny-city-lights-theme.yaml b/themes/ny-city-lights-theme.yaml index 860ddda5..55e1227a 100644 --- a/themes/ny-city-lights-theme.yaml +++ b/themes/ny-city-lights-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nycdude.nyc-lights" version: "0.7.5" installs: 4683 + rating: 5 + ratings: 2 author: "iamalmiir" repo: "https://github.com/iamalmiir/nyc_winter_vsc_theme" url: "https://marketplace.visualstudio.com/items?itemName=nycdude.nyc-lights" diff --git a/themes/nyctophilia.yaml b/themes/nyctophilia.yaml index 2c25cc33..9b79b836 100644 --- a/themes/nyctophilia.yaml +++ b/themes/nyctophilia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "abhiraj-chaudhuri.nyctophilia-color-theme" version: "0.0.1" installs: 169 + rating: 5 + ratings: 2 author: "Abhiraj Chaudhuri" repo: "https://github.com/abhie7/NyctophiliaTheme" url: "https://marketplace.visualstudio.com/items?itemName=abhiraj-chaudhuri.nyctophilia-color-theme" diff --git a/themes/nyrkes.yaml b/themes/nyrkes.yaml new file mode 100644 index 00000000..d8178d83 --- /dev/null +++ b/themes/nyrkes.yaml @@ -0,0 +1,52 @@ +name: "Nyrkes" +source: + marketplace_id: "TapioJokinen.nyrkes-theme" + version: "2.0.0" + installs: 87 + rating: 0 + ratings: 0 + author: "TapioJokinen" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TapioJokinen.nyrkes-theme" +colors: + bg: "#1F1F1F" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 77.9 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/oa515.yaml b/themes/oa515.yaml index 7f24ac86..52a925ce 100644 --- a/themes/oa515.yaml +++ b/themes/oa515.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kingllama.oa515" version: "1.2.0" installs: 95 + rating: 5 + ratings: 2 author: "kingllama" repo: "https://github.com/kingllama/vscode-OA515" url: "https://marketplace.visualstudio.com/items?itemName=kingllama.oa515" diff --git a/themes/oak-dark.yaml b/themes/oak-dark.yaml index 5974d835..6ef00505 100644 --- a/themes/oak-dark.yaml +++ b/themes/oak-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rekihyt.oak" version: "2.1.7" installs: 752 + rating: 0 + ratings: 0 author: "Rekihyt" repo: "https://github.com/rekihyt/oak" url: "https://marketplace.visualstudio.com/items?itemName=Rekihyt.oak" diff --git a/themes/oak.yaml b/themes/oak.yaml index 11d082ce..3e529f2a 100644 --- a/themes/oak.yaml +++ b/themes/oak.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rekihyt.oak" version: "2.1.7" installs: 752 + rating: 0 + ratings: 0 author: "Rekihyt" repo: "https://github.com/rekihyt/oak" url: "https://marketplace.visualstudio.com/items?itemName=Rekihyt.oak" diff --git a/themes/obanai-iguro.yaml b/themes/obanai-iguro.yaml index 678fa811..4510cd47 100644 --- a/themes/obanai-iguro.yaml +++ b/themes/obanai-iguro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devLocifer.hashira-code-theme" version: "0.0.1" installs: 739 + rating: 5 + ratings: 1 author: "devLocifer" repo: "https://github.com/diazdjul19/hashira-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" diff --git a/themes/obito-akatsuki-theme.yaml b/themes/obito-akatsuki-theme.yaml index 13b885bc..a7299603 100644 --- a/themes/obito-akatsuki-theme.yaml +++ b/themes/obito-akatsuki-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "obito-dev.obito-akatsuki-theme" version: "1.2.0" installs: 697 + rating: 0 + ratings: 0 author: "obito-dev" repo: "https://github.com/ton-user/obito-akatsuki-theme" url: "https://marketplace.visualstudio.com/items?itemName=obito-dev.obito-akatsuki-theme" diff --git a/themes/oblivion.yaml b/themes/oblivion.yaml index 948b9962..4b45bbb1 100644 --- a/themes/oblivion.yaml +++ b/themes/oblivion.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AustinHou.oblivion-theme" version: "0.0.2" installs: 367 + rating: 0 + ratings: 0 author: "AustinHou" repo: "https://github.com/PhoenixFieryn/oblivion-theme" url: "https://marketplace.visualstudio.com/items?itemName=AustinHou.oblivion-theme" diff --git a/themes/oboro.yaml b/themes/oboro.yaml index 6cf9386d..a89fd4c7 100644 --- a/themes/oboro.yaml +++ b/themes/oboro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kusefiru.oboro" version: "0.1.7" installs: 212 + rating: 0 + ratings: 0 author: "Kusefiru" repo: "https://github.com/Kusefiru/Oboro" url: "https://marketplace.visualstudio.com/items?itemName=Kusefiru.oboro" diff --git a/themes/obsidian-dark.yaml b/themes/obsidian-dark.yaml index c77727f0..7c9e8636 100644 --- a/themes/obsidian-dark.yaml +++ b/themes/obsidian-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dwrolvink.obsidian-dark-theme-rust" version: "1.0.0" installs: 3355 + rating: 5 + ratings: 1 author: "dwrolvink" repo: "https://github.com/dwrolvink/obsidian-dark-theme-rust" url: "https://marketplace.visualstudio.com/items?itemName=dwrolvink.obsidian-dark-theme-rust" diff --git a/themes/obsidian-ember.yaml b/themes/obsidian-ember.yaml index 08227b1a..413cef18 100644 --- a/themes/obsidian-ember.yaml +++ b/themes/obsidian-ember.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Bloody.obsidian-ember" version: "1.0.0" installs: 159 + rating: 0 + ratings: 0 author: "Bloody" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Bloody.obsidian-ember" diff --git a/themes/obsidian-gold.yaml b/themes/obsidian-gold.yaml new file mode 100644 index 00000000..cfa9a96a --- /dev/null +++ b/themes/obsidian-gold.yaml @@ -0,0 +1,52 @@ +name: "Obsidian Gold" +source: + marketplace_id: "Samux.obsidian-gold-theme" + version: "0.0.1" + installs: 248 + rating: 0 + ratings: 0 + author: "Samux" + repo: "https://github.com/samuelferfort/obsidian-gold" + url: "https://marketplace.visualstudio.com/items?itemName=Samux.obsidian-gold-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF8080" + green: "#99FFE4" + yellow: "#FFD700" + blue: "#FFD700" + magenta: "#FF8080" + cyan: "#99FFE4" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF8080" + brightGreen: "#99FFE4" + brightYellow: "#FFD700" + brightBlue: "#FFD700" + brightMagenta: "#FF8080" + brightCyan: "#99FFE4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 54.7 + green: 95.7 + yellow: 84.3 + blue: 84.3 + magenta: 54.7 + cyan: 95.7 + white: 107.9 + brightBlack: 23 + brightRed: 54.7 + brightGreen: 95.7 + brightYellow: 84.3 + brightBlue: 84.3 + brightMagenta: 54.7 + brightCyan: 95.7 + brightWhite: 107.9 diff --git a/themes/obsidian-light.yaml b/themes/obsidian-light.yaml index d2d83246..2b1abfd7 100644 --- a/themes/obsidian-light.yaml +++ b/themes/obsidian-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "narcilee7.obsidian-light" version: "1.2.0" installs: 87 + rating: 0 + ratings: 0 author: "narcilee7" repo: "https://github.com/narcilee7/obsidian-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=narcilee7.obsidian-light" diff --git a/themes/obsidian-nova.yaml b/themes/obsidian-nova.yaml index 80abdf48..5f1b8654 100644 --- a/themes/obsidian-nova.yaml +++ b/themes/obsidian-nova.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JaSperryTech.obsidian-nova" version: "1.0.3" installs: 56 + rating: 0 + ratings: 0 author: "JaSperryTech" repo: "https://github.com/JaSperryTech-Main/nova-theme" url: "https://marketplace.visualstudio.com/items?itemName=JaSperryTech.obsidian-nova" diff --git a/themes/obsidian-pro-dark-blue-purple.yaml b/themes/obsidian-pro-dark-blue-purple.yaml index 63439188..7d2d8996 100644 --- a/themes/obsidian-pro-dark-blue-purple.yaml +++ b/themes/obsidian-pro-dark-blue-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "williamkoller.obsidian-pro-theme" version: "1.0.1" installs: 42 + rating: 5 + ratings: 1 author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" diff --git a/themes/obsidian-pro-dark-pink-purple.yaml b/themes/obsidian-pro-dark-pink-purple.yaml index 5f718c36..8019ffee 100644 --- a/themes/obsidian-pro-dark-pink-purple.yaml +++ b/themes/obsidian-pro-dark-pink-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "williamkoller.obsidian-pro-theme" version: "1.0.1" installs: 42 + rating: 5 + ratings: 1 author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" diff --git a/themes/obsidian-pro-dark-purple-neon.yaml b/themes/obsidian-pro-dark-purple-neon.yaml index 393a6274..70dd2037 100644 --- a/themes/obsidian-pro-dark-purple-neon.yaml +++ b/themes/obsidian-pro-dark-purple-neon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "williamkoller.obsidian-pro-theme" version: "1.0.1" installs: 42 + rating: 5 + ratings: 1 author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" diff --git a/themes/obsidian-pro-dark-purple-pastel.yaml b/themes/obsidian-pro-dark-purple-pastel.yaml index 64075d56..dddced23 100644 --- a/themes/obsidian-pro-dark-purple-pastel.yaml +++ b/themes/obsidian-pro-dark-purple-pastel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "williamkoller.obsidian-pro-theme" version: "1.0.1" installs: 42 + rating: 5 + ratings: 1 author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" diff --git a/themes/obsidian-pro-dark-purple.yaml b/themes/obsidian-pro-dark-purple.yaml index 57e6f526..1c155cc1 100644 --- a/themes/obsidian-pro-dark-purple.yaml +++ b/themes/obsidian-pro-dark-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "williamkoller.obsidian-pro-theme" version: "1.0.1" installs: 42 + rating: 5 + ratings: 1 author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" diff --git a/themes/obsidian-pro-dark.yaml b/themes/obsidian-pro-dark.yaml index cc38eba3..4e1a570b 100644 --- a/themes/obsidian-pro-dark.yaml +++ b/themes/obsidian-pro-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "williamkoller.obsidian-pro-theme" version: "1.0.1" installs: 42 + rating: 5 + ratings: 1 author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" diff --git a/themes/obsidian-pro-white-purple.yaml b/themes/obsidian-pro-white-purple.yaml index b3955b35..95f424cb 100644 --- a/themes/obsidian-pro-white-purple.yaml +++ b/themes/obsidian-pro-white-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "williamkoller.obsidian-pro-theme" version: "1.0.1" installs: 42 + rating: 5 + ratings: 1 author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" diff --git a/themes/obsidian-pro-white.yaml b/themes/obsidian-pro-white.yaml index 5a3b9d4c..4c11ff6b 100644 --- a/themes/obsidian-pro-white.yaml +++ b/themes/obsidian-pro-white.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "williamkoller.obsidian-pro-theme" version: "1.0.1" installs: 42 + rating: 5 + ratings: 1 author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" diff --git a/themes/obsidian-pulse-light-theme.yaml b/themes/obsidian-pulse-light-theme.yaml index 92c2aa15..c05225d4 100644 --- a/themes/obsidian-pulse-light-theme.yaml +++ b/themes/obsidian-pulse-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MehdiZayani.obsidian-pulse-theme" version: "0.0.1" installs: 53 + rating: 5 + ratings: 1 author: "Mehdi Zayani" repo: "https://github.com/mehdi-zayani/obsidian-pulse-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=MehdiZayani.obsidian-pulse-theme" diff --git a/themes/obsidian-pulse-theme.yaml b/themes/obsidian-pulse-theme.yaml index 891989c4..144c11a3 100644 --- a/themes/obsidian-pulse-theme.yaml +++ b/themes/obsidian-pulse-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MehdiZayani.obsidian-pulse-theme" version: "0.0.1" installs: 53 + rating: 5 + ratings: 1 author: "Mehdi Zayani" repo: "https://github.com/mehdi-zayani/obsidian-pulse-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=MehdiZayani.obsidian-pulse-theme" diff --git a/themes/obsidian-sea.yaml b/themes/obsidian-sea.yaml index b0ee4d56..f6015a58 100644 --- a/themes/obsidian-sea.yaml +++ b/themes/obsidian-sea.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "eight84.obsidian-sea" version: "1.8.0" installs: 66 + rating: 0 + ratings: 0 author: "eight84" repo: "https://github.com/eight84/obsidian-sea-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=eight84.obsidian-sea" diff --git a/themes/obsidian-sunset.yaml b/themes/obsidian-sunset.yaml index 74cd082a..0c0222da 100644 --- a/themes/obsidian-sunset.yaml +++ b/themes/obsidian-sunset.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lczerniawski.obsidiansunset" version: "1.5.2" installs: 1026 + rating: 5 + ratings: 2 author: "Łukasz Czerniawski" repo: "https://github.com/lczerniawski/ObsidianSunset" url: "https://marketplace.visualstudio.com/items?itemName=lczerniawski.obsidiansunset" diff --git a/themes/obsidian-void.yaml b/themes/obsidian-void.yaml index ce521fd3..1116e20c 100644 --- a/themes/obsidian-void.yaml +++ b/themes/obsidian-void.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MohammadHasani.obsidian-void" version: "0.0.4" installs: 88 + rating: 0 + ratings: 0 author: "Mohammad Hasani" repo: "https://github.com/mohammadhasanii/obsidian-void" url: "https://marketplace.visualstudio.com/items?itemName=MohammadHasani.obsidian-void" diff --git a/themes/obsidian-wine.yaml b/themes/obsidian-wine.yaml new file mode 100644 index 00000000..238abdac --- /dev/null +++ b/themes/obsidian-wine.yaml @@ -0,0 +1,52 @@ +name: "Obsidian-Wine" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#131420" + fg: "#F2F2F2" + black: "#131420" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#E74040" + magenta: "#E74040" + cyan: "#29C3A0" + white: "#F2F2F2" + brightBlack: "#131420" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#E74040" + brightMagenta: "#E74040" + brightCyan: "#29C3A0" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "orange" + hue: 280 + pair: null + contrast: + fg: 98.5 + black: 0 + red: 9.5 + green: 57.8 + yellow: 51.9 + blue: 34.6 + magenta: 34.6 + cyan: 57.8 + white: 98.5 + brightBlack: 0 + brightRed: 9.5 + brightGreen: 57.8 + brightYellow: 51.9 + brightBlue: 34.6 + brightMagenta: 34.6 + brightCyan: 57.8 + brightWhite: 98.5 diff --git a/themes/obsidian.yaml b/themes/obsidian.yaml index ab8c7aa8..06d96408 100644 --- a/themes/obsidian.yaml +++ b/themes/obsidian.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "georgeburt.obsidian-vscode" version: "0.0.1" installs: 144 + rating: 0 + ratings: 0 author: "Burty" repo: "https://github.com/georgeeburt/obsidian-theme" url: "https://marketplace.visualstudio.com/items?itemName=georgeburt.obsidian-vscode" diff --git a/themes/obsidianite-amoled.yaml b/themes/obsidianite-amoled.yaml index 8d55d57f..1a83fd5b 100644 --- a/themes/obsidianite-amoled.yaml +++ b/themes/obsidianite-amoled.yaml @@ -1,8 +1,10 @@ name: "Obsidianite AMOLED" source: marketplace_id: "shd0w.obsidianite-vscode" - version: "1.0.0" + version: "1.0.1" installs: 2 + rating: 0 + ratings: 0 author: "shd0w" repo: "https://github.com/shd0w/obsidianite-vscode" url: "https://marketplace.visualstudio.com/items?itemName=shd0w.obsidianite-vscode" diff --git a/themes/obsidianite.yaml b/themes/obsidianite.yaml index 6fc45816..3f14a2f1 100644 --- a/themes/obsidianite.yaml +++ b/themes/obsidianite.yaml @@ -1,8 +1,10 @@ name: "Obsidianite" source: marketplace_id: "shd0w.obsidianite-vscode" - version: "1.0.0" + version: "1.0.1" installs: 2 + rating: 0 + ratings: 0 author: "shd0w" repo: "https://github.com/shd0w/obsidianite-vscode" url: "https://marketplace.visualstudio.com/items?itemName=shd0w.obsidianite-vscode" diff --git a/themes/oc-7-light.yaml b/themes/oc-7-light.yaml index 3c395bb5..6078c254 100644 --- a/themes/oc-7-light.yaml +++ b/themes/oc-7-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "7off.oc7-light" version: "0.0.1" installs: 1099 + rating: 0 + ratings: 0 author: "Anatoliy Semenov" repo: "https://github.com/7off/vscode-oc7light-theme" url: "https://marketplace.visualstudio.com/items?itemName=7off.oc7-light" diff --git a/themes/ocean-blue-theme.yaml b/themes/ocean-blue-theme.yaml index e3b9ce0a..a9180afd 100644 --- a/themes/ocean-blue-theme.yaml +++ b/themes/ocean-blue-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wipaaaid.oceanish-blue-theme" version: "0.0.1" installs: 597 + rating: 0 + ratings: 0 author: "wipaaa" repo: "https://github.com/wipaaa/vscode-oceanish-blue-theme" url: "https://marketplace.visualstudio.com/items?itemName=wipaaaid.oceanish-blue-theme" diff --git a/themes/ocean-breeze.yaml b/themes/ocean-breeze.yaml index a74c05e8..418d0726 100644 --- a/themes/ocean-breeze.yaml +++ b/themes/ocean-breeze.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nhcarrigan.naomis-themes" version: "2.3.0" installs: 68 + rating: 0 + ratings: 0 author: "NHCarrigan" repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" diff --git a/themes/ocean-color-theme.yaml b/themes/ocean-color-theme.yaml index 65b8eb04..60409e82 100644 --- a/themes/ocean-color-theme.yaml +++ b/themes/ocean-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wavebeem.theme-unoduetre" version: "5.11.1" installs: 4290 + rating: 5 + ratings: 5 author: "Sage Fennel" repo: "https://github.com/wavebeem/vscode-theme-unoduetre" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" diff --git a/themes/ocean-deep-depth-stability.yaml b/themes/ocean-deep-depth-stability.yaml index 19905f70..b117f450 100644 --- a/themes/ocean-deep-depth-stability.yaml +++ b/themes/ocean-deep-depth-stability.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/ocean-eyes-medium.yaml b/themes/ocean-eyes-medium.yaml index aa2af2a3..948da458 100644 --- a/themes/ocean-eyes-medium.yaml +++ b/themes/ocean-eyes-medium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SethCox.ocean-eyes" version: "0.0.8" installs: 5214 + rating: 5 + ratings: 1 author: "Seth Cox" repo: "https://github.com/sethaddison/ocean-eyes-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SethCox.ocean-eyes" diff --git a/themes/ocean-eyes.yaml b/themes/ocean-eyes.yaml index a74c5227..2118a057 100644 --- a/themes/ocean-eyes.yaml +++ b/themes/ocean-eyes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SethCox.ocean-eyes" version: "0.0.8" installs: 5214 + rating: 5 + ratings: 1 author: "Seth Cox" repo: "https://github.com/sethaddison/ocean-eyes-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SethCox.ocean-eyes" diff --git a/themes/ocean-high-contrast.yaml b/themes/ocean-high-contrast.yaml index 67029bbf..e1a8e88c 100644 --- a/themes/ocean-high-contrast.yaml +++ b/themes/ocean-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NotYasho.ocean-high-contrast" version: "4.1.0" installs: 9851 + rating: 5 + ratings: 3 author: "NotYasho" repo: "https://github.com/NotYasho/ocean-high-contrast" url: "https://marketplace.visualstudio.com/items?itemName=NotYasho.ocean-high-contrast" diff --git a/themes/ocean-mist-light.yaml b/themes/ocean-mist-light.yaml index 68b4e532..c34c64cc 100644 --- a/themes/ocean-mist-light.yaml +++ b/themes/ocean-mist-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MalikHaziq.ocean-mist" version: "0.2.1" installs: 248 + rating: 5 + ratings: 2 author: "Malik Haziq" repo: "https://github.com/Malik-Haziq/Ocean-Mist-Vscode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=MalikHaziq.ocean-mist" diff --git a/themes/ocean-mist.yaml b/themes/ocean-mist.yaml index 563730c9..4245ceb6 100644 --- a/themes/ocean-mist.yaml +++ b/themes/ocean-mist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MalikHaziq.ocean-mist" version: "0.2.1" installs: 248 + rating: 5 + ratings: 2 author: "Malik Haziq" repo: "https://github.com/Malik-Haziq/Ocean-Mist-Vscode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=MalikHaziq.ocean-mist" diff --git a/themes/ocean-night.yaml b/themes/ocean-night.yaml index 4d74a34c..59ff779d 100644 --- a/themes/ocean-night.yaml +++ b/themes/ocean-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KaydenIreland.kiki-themes" version: "1.0.1" installs: 23 + rating: 0 + ratings: 0 author: "Kayden Ireland" repo: "https://github.com/kaydenireland/vs-kiki" url: "https://marketplace.visualstudio.com/items?itemName=KaydenIreland.kiki-themes" diff --git a/themes/ocean-theme.yaml b/themes/ocean-theme.yaml index ab946146..9562dd53 100644 --- a/themes/ocean-theme.yaml +++ b/themes/ocean-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NathanHermes.dark-ocean-theme" version: "0.0.0" installs: 494 + rating: 0 + ratings: 0 author: "NathanHermes" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NathanHermes.dark-ocean-theme" diff --git a/themes/ocean.yaml b/themes/ocean.yaml index d7bb80ad..c637bb35 100644 --- a/themes/ocean.yaml +++ b/themes/ocean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sent2Dev.ocean-theme" version: "1.0.0" installs: 233 + rating: 0 + ratings: 0 author: "Sent2Dev" repo: "https://github.com/Sent2Dev/ocean-theme" url: "https://marketplace.visualstudio.com/items?itemName=Sent2Dev.ocean-theme" diff --git a/themes/oceana.yaml b/themes/oceana.yaml index 92cdb5c7..76afd76f 100644 --- a/themes/oceana.yaml +++ b/themes/oceana.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "marzeq.oceana" version: "1.0.0" installs: 104 + rating: 0 + ratings: 0 author: "marzeq" repo: "https://github.com/marzeq/oceana" url: "https://marketplace.visualstudio.com/items?itemName=marzeq.oceana" diff --git a/themes/oceanic-gradient.yaml b/themes/oceanic-gradient.yaml new file mode 100644 index 00000000..1b2cc848 --- /dev/null +++ b/themes/oceanic-gradient.yaml @@ -0,0 +1,52 @@ +name: "Oceanic-Gradient" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#020231" + fg: "#CDF1F9" + black: "#020231" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#CDF1F9" + magenta: "#CDF1F9" + cyan: "#29C3A0" + white: "#CDF1F9" + brightBlack: "#020231" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#CDF1F9" + brightMagenta: "#CDF1F9" + brightCyan: "#29C3A0" + brightWhite: "#CDF1F9" +meta: + mode: "dark" + accent: "yellow" + hue: 268 + pair: null + contrast: + fg: 94.1 + black: 0 + red: 9.9 + green: 58.2 + yellow: 52.2 + blue: 94.1 + magenta: 94.1 + cyan: 58.2 + white: 94.1 + brightBlack: 0 + brightRed: 9.9 + brightGreen: 58.2 + brightYellow: 52.2 + brightBlue: 94.1 + brightMagenta: 94.1 + brightCyan: 58.2 + brightWhite: 94.1 diff --git a/themes/oceanic-primal-color-theme.yaml b/themes/oceanic-primal-color-theme.yaml new file mode 100644 index 00000000..f62b7cec --- /dev/null +++ b/themes/oceanic-primal-color-theme.yaml @@ -0,0 +1,50 @@ +name: "Oceanic Primal Color Theme" +source: + marketplace_id: "barlog-m.oceanic-primal-color-theme" + version: "0.0.4" + installs: 297 + author: "Barlog M." + repo: "https://github.com/barlog-m/oceanic-primal-visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=barlog-m.oceanic-primal-color-theme" +colors: + bg: "#1B2B34" + fg: "#CDD3DE" + black: "#000000" + red: "#EC5F67" + green: "#99C794" + yellow: "#FAC863" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#C0C5CE" + brightBlack: "#666666" + brightRed: "#EC5F67" + brightGreen: "#99C794" + brightYellow: "#FAC863" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#C0C5CE" +meta: + mode: "dark" + accent: "orange" + hue: 234 + pair: null + contrast: + fg: 76 + black: 0 + red: 38.7 + green: 62.2 + yellow: 74.1 + blue: 41.5 + magenta: 49.4 + cyan: 50.4 + white: 67.6 + brightBlack: 19.4 + brightRed: 38.7 + brightGreen: 62.2 + brightYellow: 74.1 + brightBlue: 41.5 + brightMagenta: 49.4 + brightCyan: 50.4 + brightWhite: 67.6 diff --git a/themes/oceanic-solitude.yaml b/themes/oceanic-solitude.yaml index 7925ec36..6d5c938b 100644 --- a/themes/oceanic-solitude.yaml +++ b/themes/oceanic-solitude.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DelfimCelestino.oceanic-solitude" version: "0.0.3" installs: 154 + rating: 0 + ratings: 0 author: "Delfim Celestino" repo: "https://github.com/DelfimCelestino/oceanic-solitude" url: "https://marketplace.visualstudio.com/items?itemName=DelfimCelestino.oceanic-solitude" diff --git a/themes/oceanic-sunset.yaml b/themes/oceanic-sunset.yaml new file mode 100644 index 00000000..9526c379 --- /dev/null +++ b/themes/oceanic-sunset.yaml @@ -0,0 +1,52 @@ +name: "Oceanic-Sunset" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#011D23" + fg: "#EDF1F2" + black: "#011D23" + red: "#7C1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#F26389" + magenta: "#F26389" + cyan: "#29C3A0" + white: "#EDF1F2" + brightBlack: "#011D23" + brightRed: "#7C1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#F26389" + brightMagenta: "#F26389" + brightCyan: "#29C3A0" + brightWhite: "#EDF1F2" +meta: + mode: "dark" + accent: "red" + hue: 214 + pair: null + contrast: + fg: 96.8 + black: 0 + red: 8.4 + green: 57.2 + yellow: 51.3 + blue: 44 + magenta: 44 + cyan: 57.2 + white: 96.8 + brightBlack: 0 + brightRed: 8.4 + brightGreen: 57.2 + brightYellow: 51.3 + brightBlue: 44 + brightMagenta: 44 + brightCyan: 57.2 + brightWhite: 96.8 diff --git a/themes/oceanic-wind-cool.yaml b/themes/oceanic-wind-cool.yaml index 5bad4536..8e91e6f0 100644 --- a/themes/oceanic-wind-cool.yaml +++ b/themes/oceanic-wind-cool.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "javifm.oceanic-wind" version: "0.2.0" installs: 1587 + rating: 5 + ratings: 1 author: "Javier Fernández" repo: "https://github.com/javifm86/oceanic-wind" url: "https://marketplace.visualstudio.com/items?itemName=javifm.oceanic-wind" diff --git a/themes/oceanic-wind-warm.yaml b/themes/oceanic-wind-warm.yaml index 6d63d4d1..6f71aa3d 100644 --- a/themes/oceanic-wind-warm.yaml +++ b/themes/oceanic-wind-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "javifm.oceanic-wind" version: "0.2.0" installs: 1587 + rating: 5 + ratings: 1 author: "Javier Fernández" repo: "https://github.com/javifm86/oceanic-wind" url: "https://marketplace.visualstudio.com/items?itemName=javifm.oceanic-wind" diff --git a/themes/oceanic-wind.yaml b/themes/oceanic-wind.yaml index 4747b22e..605a1bc5 100644 --- a/themes/oceanic-wind.yaml +++ b/themes/oceanic-wind.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "javifm.oceanic-wind" version: "0.2.0" installs: 1587 + rating: 5 + ratings: 1 author: "Javier Fernández" repo: "https://github.com/javifm86/oceanic-wind" url: "https://marketplace.visualstudio.com/items?itemName=javifm.oceanic-wind" diff --git a/themes/oceans-of-andromeda.yaml b/themes/oceans-of-andromeda.yaml index f4b21ea8..8aca99f4 100644 --- a/themes/oceans-of-andromeda.yaml +++ b/themes/oceans-of-andromeda.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samlovescoding.oceans-of-andromeda" version: "1.0.2" installs: 61 + rating: 0 + ratings: 0 author: "Sampan Verma" repo: "https://github.com/samlovescoding/oceans-of-andromeda" url: "https://marketplace.visualstudio.com/items?itemName=samlovescoding.oceans-of-andromeda" diff --git a/themes/ochre-dark-midnight.yaml b/themes/ochre-dark-midnight.yaml index 7d46121d..5f95b929 100644 --- a/themes/ochre-dark-midnight.yaml +++ b/themes/ochre-dark-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ochre-crafts.ochre" version: "0.2.0" installs: 22 + rating: 0 + ratings: 0 author: "ochre-crafts" repo: "https://github.com/ochre-crafts/ochre-theme" url: "https://marketplace.visualstudio.com/items?itemName=ochre-crafts.ochre" diff --git a/themes/ochre-dark.yaml b/themes/ochre-dark.yaml index 15381870..fe0f7bc8 100644 --- a/themes/ochre-dark.yaml +++ b/themes/ochre-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ochre-crafts.ochre" version: "0.2.0" installs: 22 + rating: 0 + ratings: 0 author: "ochre-crafts" repo: "https://github.com/ochre-crafts/ochre-theme" url: "https://marketplace.visualstudio.com/items?itemName=ochre-crafts.ochre" diff --git a/themes/ochre-light-snow.yaml b/themes/ochre-light-snow.yaml index f656ba97..dac5c0c4 100644 --- a/themes/ochre-light-snow.yaml +++ b/themes/ochre-light-snow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ochre-crafts.ochre" version: "0.2.0" installs: 22 + rating: 0 + ratings: 0 author: "ochre-crafts" repo: "https://github.com/ochre-crafts/ochre-theme" url: "https://marketplace.visualstudio.com/items?itemName=ochre-crafts.ochre" diff --git a/themes/ochre-light.yaml b/themes/ochre-light.yaml index 0a1b4e99..c328af21 100644 --- a/themes/ochre-light.yaml +++ b/themes/ochre-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ochre-crafts.ochre" version: "0.2.0" installs: 22 + rating: 0 + ratings: 0 author: "ochre-crafts" repo: "https://github.com/ochre-crafts/ochre-theme" url: "https://marketplace.visualstudio.com/items?itemName=ochre-crafts.ochre" diff --git a/themes/octalide.yaml b/themes/octalide.yaml index de953e8b..892d5678 100644 --- a/themes/octalide.yaml +++ b/themes/octalide.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "octalide.octalide-color-theme" version: "0.8.0" installs: 59 + rating: 0 + ratings: 0 author: "octalide" repo: "https://github.com/octalide/octalide-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=octalide.octalide-color-theme" diff --git a/themes/octo-dark-one.yaml b/themes/octo-dark-one.yaml index 4700cc73..8eec51a9 100644 --- a/themes/octo-dark-one.yaml +++ b/themes/octo-dark-one.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "avalynndev.octo-theme" version: "0.1.3" installs: 247 + rating: 5 + ratings: 1 author: "avalynndev" repo: "https://github.com/uzukidev/octo-theme" url: "https://marketplace.visualstudio.com/items?itemName=avalynndev.octo-theme" diff --git a/themes/octo-light.yaml b/themes/octo-light.yaml index e86474f9..fdb8b007 100644 --- a/themes/octo-light.yaml +++ b/themes/octo-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "avalynndev.octo-theme" version: "0.1.3" installs: 247 + rating: 5 + ratings: 1 author: "avalynndev" repo: "https://github.com/uzukidev/octo-theme" url: "https://marketplace.visualstudio.com/items?itemName=avalynndev.octo-theme" diff --git a/themes/octopus-theme.yaml b/themes/octopus-theme.yaml index d6992f7c..ec4514fb 100644 --- a/themes/octopus-theme.yaml +++ b/themes/octopus-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DiamondRaft1575.octopus-theme" version: "0.0.1" installs: 55 + rating: 5 + ratings: 1 author: "DiamondRaft1575" repo: "https://github.com/PythonRaft1575/Octopus-Theme" url: "https://marketplace.visualstudio.com/items?itemName=DiamondRaft1575.octopus-theme" diff --git a/themes/odyssey-night.yaml b/themes/odyssey-night.yaml index d08a1981..b2fd3e19 100644 --- a/themes/odyssey-night.yaml +++ b/themes/odyssey-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "odese.odyssey-night" version: "0.0.12" installs: 695 + rating: 5 + ratings: 3 author: "odese" repo: "https://github.com/odese/odyssey-night" url: "https://marketplace.visualstudio.com/items?itemName=odese.odyssey-night" diff --git a/themes/office-dark.yaml b/themes/office-dark.yaml new file mode 100644 index 00000000..c6408480 --- /dev/null +++ b/themes/office-dark.yaml @@ -0,0 +1,52 @@ +name: "Office Dark" +source: + marketplace_id: "PowerTech.powerthemes" + version: "23.1.31" + installs: 6961 + rating: 0 + ratings: 0 + author: "PowerTech" + repo: "https://github.com/powertech-center/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=PowerTech.powerthemes" +colors: + bg: "#262626" + fg: "#F6F6F6" + black: "#000000" + red: "#ED7D31" + green: "#70AD47" + yellow: "#FFC000" + blue: "#4472C4" + magenta: "#8064A2" + cyan: "#5B9BD5" + white: "#F6F6F6" + brightBlack: "#A5A5A5" + brightRed: "#F4B183" + brightGreen: "#A8D08D" + brightYellow: "#FFD965" + brightBlue: "#8EAADB" + brightMagenta: "#B2A1C7" + brightCyan: "#9CC3E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: "Office Light" + contrast: + fg: 98.9 + black: 0 + red: 45.8 + green: 46.5 + yellow: 71.7 + blue: 26.1 + magenta: 24.6 + cyan: 42.7 + white: 98.9 + brightBlack: 50.4 + brightRed: 65.3 + brightGreen: 68.1 + brightYellow: 82.7 + brightBlue: 52.6 + brightMagenta: 52 + brightCyan: 64.7 + brightWhite: 104.8 diff --git a/themes/office-light.yaml b/themes/office-light.yaml index 4a7159a3..6c7c80f6 100644 --- a/themes/office-light.yaml +++ b/themes/office-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PowerTech.powerthemes" version: "23.1.31" installs: 6961 + rating: 0 + ratings: 0 author: "PowerTech" repo: "https://github.com/powertech-center/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=PowerTech.powerthemes" diff --git a/themes/office-paper.yaml b/themes/office-paper.yaml new file mode 100644 index 00000000..cfa0277f --- /dev/null +++ b/themes/office-paper.yaml @@ -0,0 +1,52 @@ +name: "Office-Paper" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#0F182B" + fg: "#E4E8EF" + black: "#0F182B" + red: "#F14444" + green: "#29C3A0" + yellow: "#D29922" + blue: "#818CF9" + magenta: "#818CF9" + cyan: "#29C3A0" + white: "#E4E8EF" + brightBlack: "#0F182B" + brightRed: "#F14444" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#818CF9" + brightMagenta: "#818CF9" + brightCyan: "#29C3A0" + brightWhite: "#E4E8EF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 91.5 + black: 0 + red: 37.1 + green: 57.5 + yellow: 51.5 + blue: 44.4 + magenta: 44.4 + cyan: 57.5 + white: 91.5 + brightBlack: 0 + brightRed: 37.1 + brightGreen: 57.5 + brightYellow: 51.5 + brightBlue: 44.4 + brightMagenta: 44.4 + brightCyan: 57.5 + brightWhite: 91.5 diff --git a/themes/ogone.yaml b/themes/ogone.yaml index 5db58449..2c41e23b 100644 --- a/themes/ogone.yaml +++ b/themes/ogone.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SRNV.otone" version: "0.1.202" installs: 330 + rating: 5 + ratings: 1 author: "Rudy Alula" repo: "https://github.com/SRNV/Otone" url: "https://marketplace.visualstudio.com/items?itemName=SRNV.otone" diff --git a/themes/oh-dark-pro.yaml b/themes/oh-dark-pro.yaml index cb47fb9c..f61c7ca9 100644 --- a/themes/oh-dark-pro.yaml +++ b/themes/oh-dark-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CassioMaciel.ohdark" version: "2.1.0" installs: 130 + rating: 0 + ratings: 0 author: "Cassio Maciel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CassioMaciel.ohdark" diff --git a/themes/ohiostate-fork.yaml b/themes/ohiostate-fork.yaml index 0eb39872..94922942 100644 --- a/themes/ohiostate-fork.yaml +++ b/themes/ohiostate-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KynardCorp.my-custom-theme" version: "0.0.11" installs: 57 + rating: 0 + ratings: 0 author: "KynardCorp" repo: null url: "https://marketplace.visualstudio.com/items?itemName=KynardCorp.my-custom-theme" diff --git a/themes/ohled-aliceblue.yaml b/themes/ohled-aliceblue.yaml index 0e84f3bd..48212d48 100644 --- a/themes/ohled-aliceblue.yaml +++ b/themes/ohled-aliceblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-antiquewhite.yaml b/themes/ohled-antiquewhite.yaml index bba76743..b26b7672 100644 --- a/themes/ohled-antiquewhite.yaml +++ b/themes/ohled-antiquewhite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-aquamarine.yaml b/themes/ohled-aquamarine.yaml index 79692911..4fe77373 100644 --- a/themes/ohled-aquamarine.yaml +++ b/themes/ohled-aquamarine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-azure.yaml b/themes/ohled-azure.yaml index dde593a0..7f49d48a 100644 --- a/themes/ohled-azure.yaml +++ b/themes/ohled-azure.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-beige.yaml b/themes/ohled-beige.yaml index d9f72e9f..547dfd4a 100644 --- a/themes/ohled-beige.yaml +++ b/themes/ohled-beige.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-bisque.yaml b/themes/ohled-bisque.yaml index a98e0c88..3dfd08c8 100644 --- a/themes/ohled-bisque.yaml +++ b/themes/ohled-bisque.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-blanchedalmond.yaml b/themes/ohled-blanchedalmond.yaml index 7ff2e576..55755f1d 100644 --- a/themes/ohled-blanchedalmond.yaml +++ b/themes/ohled-blanchedalmond.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-blue.yaml b/themes/ohled-blue.yaml index db5947f3..9de2074c 100644 --- a/themes/ohled-blue.yaml +++ b/themes/ohled-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-blueviolet.yaml b/themes/ohled-blueviolet.yaml index 0edcbc1e..207959ed 100644 --- a/themes/ohled-blueviolet.yaml +++ b/themes/ohled-blueviolet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-brown.yaml b/themes/ohled-brown.yaml index 13d20f93..18ca96ef 100644 --- a/themes/ohled-brown.yaml +++ b/themes/ohled-brown.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-burlywood.yaml b/themes/ohled-burlywood.yaml index 8d4ce444..d3a6d676 100644 --- a/themes/ohled-burlywood.yaml +++ b/themes/ohled-burlywood.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-cadetblue.yaml b/themes/ohled-cadetblue.yaml index c95c18d7..218ebb8f 100644 --- a/themes/ohled-cadetblue.yaml +++ b/themes/ohled-cadetblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-chartreuse.yaml b/themes/ohled-chartreuse.yaml index 3b8afef7..05f6c278 100644 --- a/themes/ohled-chartreuse.yaml +++ b/themes/ohled-chartreuse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-chocolate.yaml b/themes/ohled-chocolate.yaml index aeba7d38..b3471456 100644 --- a/themes/ohled-chocolate.yaml +++ b/themes/ohled-chocolate.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-coral.yaml b/themes/ohled-coral.yaml index 660b4385..d13538fb 100644 --- a/themes/ohled-coral.yaml +++ b/themes/ohled-coral.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-cornflowerblue.yaml b/themes/ohled-cornflowerblue.yaml index 0cad322b..a14e03a9 100644 --- a/themes/ohled-cornflowerblue.yaml +++ b/themes/ohled-cornflowerblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-cornsilk.yaml b/themes/ohled-cornsilk.yaml index 7bd4477b..0adbd0db 100644 --- a/themes/ohled-cornsilk.yaml +++ b/themes/ohled-cornsilk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-crimson.yaml b/themes/ohled-crimson.yaml index 14b842fd..37c9b53a 100644 --- a/themes/ohled-crimson.yaml +++ b/themes/ohled-crimson.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-cyan.yaml b/themes/ohled-cyan.yaml new file mode 100644 index 00000000..b207f7cc --- /dev/null +++ b/themes/ohled-cyan.yaml @@ -0,0 +1,52 @@ +name: "OhLED_Cyan" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10963 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#00FFFF" + black: "#00FFFF" + red: "#00BBBB" + green: "#00CCCC" + yellow: "#009999" + blue: "#00EEEE" + magenta: "#00DDDD" + cyan: "#00AAAA" + white: "#008888" + brightBlack: "#00FFFF" + brightRed: "#00BBBB" + brightGreen: "#00CCCC" + brightYellow: "#009999" + brightBlue: "#00EEEE" + brightMagenta: "#00DDDD" + brightCyan: "#00AAAA" + brightWhite: "#008888" +meta: + mode: "dark" + accent: "cyan" + hue: null + pair: null + contrast: + fg: 92.2 + black: 92.2 + red: 55.8 + green: 64.4 + yellow: 39.8 + blue: 82.6 + magenta: 73.3 + cyan: 47.6 + white: 32.5 + brightBlack: 92.2 + brightRed: 55.8 + brightGreen: 64.4 + brightYellow: 39.8 + brightBlue: 82.6 + brightMagenta: 73.3 + brightCyan: 47.6 + brightWhite: 32.5 diff --git a/themes/ohled-darkblue.yaml b/themes/ohled-darkblue.yaml index 6dc19dfe..8f4f86a2 100644 --- a/themes/ohled-darkblue.yaml +++ b/themes/ohled-darkblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkcyan.yaml b/themes/ohled-darkcyan.yaml index 96d649c7..c984e327 100644 --- a/themes/ohled-darkcyan.yaml +++ b/themes/ohled-darkcyan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkgoldenrod.yaml b/themes/ohled-darkgoldenrod.yaml index 95239221..b9324645 100644 --- a/themes/ohled-darkgoldenrod.yaml +++ b/themes/ohled-darkgoldenrod.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkgray.yaml b/themes/ohled-darkgray.yaml index 8c4547c3..085600cc 100644 --- a/themes/ohled-darkgray.yaml +++ b/themes/ohled-darkgray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkgreen.yaml b/themes/ohled-darkgreen.yaml index 4a035cef..40ebc30d 100644 --- a/themes/ohled-darkgreen.yaml +++ b/themes/ohled-darkgreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkkhaki.yaml b/themes/ohled-darkkhaki.yaml index a1340165..acde3de3 100644 --- a/themes/ohled-darkkhaki.yaml +++ b/themes/ohled-darkkhaki.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkmagenta.yaml b/themes/ohled-darkmagenta.yaml index ad61ee0d..f7c9c73f 100644 --- a/themes/ohled-darkmagenta.yaml +++ b/themes/ohled-darkmagenta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkolivegreen.yaml b/themes/ohled-darkolivegreen.yaml index 4fd7980c..9beaafca 100644 --- a/themes/ohled-darkolivegreen.yaml +++ b/themes/ohled-darkolivegreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkorange.yaml b/themes/ohled-darkorange.yaml index 3d18eedc..34aa5889 100644 --- a/themes/ohled-darkorange.yaml +++ b/themes/ohled-darkorange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkorchid.yaml b/themes/ohled-darkorchid.yaml index a3ef84fd..6adae3b7 100644 --- a/themes/ohled-darkorchid.yaml +++ b/themes/ohled-darkorchid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkred.yaml b/themes/ohled-darkred.yaml index b5449bcd..30e97fd1 100644 --- a/themes/ohled-darkred.yaml +++ b/themes/ohled-darkred.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darksalmon.yaml b/themes/ohled-darksalmon.yaml index 7afd628e..90574271 100644 --- a/themes/ohled-darksalmon.yaml +++ b/themes/ohled-darksalmon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkseagreen.yaml b/themes/ohled-darkseagreen.yaml index 9ab246ae..fe3153c8 100644 --- a/themes/ohled-darkseagreen.yaml +++ b/themes/ohled-darkseagreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkslateblue.yaml b/themes/ohled-darkslateblue.yaml index 011914ff..919c7cfa 100644 --- a/themes/ohled-darkslateblue.yaml +++ b/themes/ohled-darkslateblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkslategray.yaml b/themes/ohled-darkslategray.yaml index a9285346..e0cfc915 100644 --- a/themes/ohled-darkslategray.yaml +++ b/themes/ohled-darkslategray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkturquoise.yaml b/themes/ohled-darkturquoise.yaml index 90b6afa0..578c1585 100644 --- a/themes/ohled-darkturquoise.yaml +++ b/themes/ohled-darkturquoise.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-darkviolet.yaml b/themes/ohled-darkviolet.yaml index 61d6adeb..7980f11e 100644 --- a/themes/ohled-darkviolet.yaml +++ b/themes/ohled-darkviolet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-deeppink.yaml b/themes/ohled-deeppink.yaml index dec734cf..3402cdeb 100644 --- a/themes/ohled-deeppink.yaml +++ b/themes/ohled-deeppink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-deepskyblue.yaml b/themes/ohled-deepskyblue.yaml index f7746c92..7c37c54d 100644 --- a/themes/ohled-deepskyblue.yaml +++ b/themes/ohled-deepskyblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-dimgray.yaml b/themes/ohled-dimgray.yaml index a5ff89c3..52218705 100644 --- a/themes/ohled-dimgray.yaml +++ b/themes/ohled-dimgray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-dodgerblue.yaml b/themes/ohled-dodgerblue.yaml index 999a79f6..67c24de8 100644 --- a/themes/ohled-dodgerblue.yaml +++ b/themes/ohled-dodgerblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-firebrick.yaml b/themes/ohled-firebrick.yaml index 90040bfa..54ca59d4 100644 --- a/themes/ohled-firebrick.yaml +++ b/themes/ohled-firebrick.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-forestgreen.yaml b/themes/ohled-forestgreen.yaml index dc1a4361..783635e0 100644 --- a/themes/ohled-forestgreen.yaml +++ b/themes/ohled-forestgreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-gainsboro.yaml b/themes/ohled-gainsboro.yaml index ddc460f9..9b7f90db 100644 --- a/themes/ohled-gainsboro.yaml +++ b/themes/ohled-gainsboro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-ghostwhite.yaml b/themes/ohled-ghostwhite.yaml index 76cc1f8a..deb207ce 100644 --- a/themes/ohled-ghostwhite.yaml +++ b/themes/ohled-ghostwhite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-gold.yaml b/themes/ohled-gold.yaml index c8e0483d..7c697639 100644 --- a/themes/ohled-gold.yaml +++ b/themes/ohled-gold.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-goldenrod.yaml b/themes/ohled-goldenrod.yaml index 74e2a10a..410a43a9 100644 --- a/themes/ohled-goldenrod.yaml +++ b/themes/ohled-goldenrod.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-gray.yaml b/themes/ohled-gray.yaml index 57b5c622..3c4f1b48 100644 --- a/themes/ohled-gray.yaml +++ b/themes/ohled-gray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-green.yaml b/themes/ohled-green.yaml index 465bfbdd..ae601b58 100644 --- a/themes/ohled-green.yaml +++ b/themes/ohled-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-greenyellow.yaml b/themes/ohled-greenyellow.yaml index 7a0e0afe..a4e8d6d7 100644 --- a/themes/ohled-greenyellow.yaml +++ b/themes/ohled-greenyellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-honeydew.yaml b/themes/ohled-honeydew.yaml index 51c2174e..18f538dd 100644 --- a/themes/ohled-honeydew.yaml +++ b/themes/ohled-honeydew.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-hotpink.yaml b/themes/ohled-hotpink.yaml index e604e2a6..966a1d18 100644 --- a/themes/ohled-hotpink.yaml +++ b/themes/ohled-hotpink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-indianred.yaml b/themes/ohled-indianred.yaml index e6125305..33018e8d 100644 --- a/themes/ohled-indianred.yaml +++ b/themes/ohled-indianred.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-indigo.yaml b/themes/ohled-indigo.yaml index 90e23f34..da46fe66 100644 --- a/themes/ohled-indigo.yaml +++ b/themes/ohled-indigo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-ivory.yaml b/themes/ohled-ivory.yaml index 4a2de1f8..bf6bb7dd 100644 --- a/themes/ohled-ivory.yaml +++ b/themes/ohled-ivory.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-khaki.yaml b/themes/ohled-khaki.yaml index 2053dbea..6ad5c9bb 100644 --- a/themes/ohled-khaki.yaml +++ b/themes/ohled-khaki.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lavender.yaml b/themes/ohled-lavender.yaml index 49803aa4..c11246e2 100644 --- a/themes/ohled-lavender.yaml +++ b/themes/ohled-lavender.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lavenderblush.yaml b/themes/ohled-lavenderblush.yaml index 50370896..b4f90f88 100644 --- a/themes/ohled-lavenderblush.yaml +++ b/themes/ohled-lavenderblush.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lawngreen.yaml b/themes/ohled-lawngreen.yaml index 078456c5..0e1256c7 100644 --- a/themes/ohled-lawngreen.yaml +++ b/themes/ohled-lawngreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lemonchiffon.yaml b/themes/ohled-lemonchiffon.yaml index 10e2ec21..2e458067 100644 --- a/themes/ohled-lemonchiffon.yaml +++ b/themes/ohled-lemonchiffon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lightblue.yaml b/themes/ohled-lightblue.yaml index a104dc75..1b6c5e65 100644 --- a/themes/ohled-lightblue.yaml +++ b/themes/ohled-lightblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lightcoral.yaml b/themes/ohled-lightcoral.yaml index 041883af..cf13daeb 100644 --- a/themes/ohled-lightcoral.yaml +++ b/themes/ohled-lightcoral.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lightcyan.yaml b/themes/ohled-lightcyan.yaml index 4a6e8dab..883bdb59 100644 --- a/themes/ohled-lightcyan.yaml +++ b/themes/ohled-lightcyan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lightgoldenrodyellow.yaml b/themes/ohled-lightgoldenrodyellow.yaml index d7780606..3b8c3b7c 100644 --- a/themes/ohled-lightgoldenrodyellow.yaml +++ b/themes/ohled-lightgoldenrodyellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lightgray.yaml b/themes/ohled-lightgray.yaml index e598c8e1..7a62b72b 100644 --- a/themes/ohled-lightgray.yaml +++ b/themes/ohled-lightgray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lightgreen.yaml b/themes/ohled-lightgreen.yaml index 9657a017..242cfcc1 100644 --- a/themes/ohled-lightgreen.yaml +++ b/themes/ohled-lightgreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lightpink.yaml b/themes/ohled-lightpink.yaml index d21cf251..12dd8f44 100644 --- a/themes/ohled-lightpink.yaml +++ b/themes/ohled-lightpink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lightsalmon.yaml b/themes/ohled-lightsalmon.yaml index 342a93e8..c78d8f96 100644 --- a/themes/ohled-lightsalmon.yaml +++ b/themes/ohled-lightsalmon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lightseagreen.yaml b/themes/ohled-lightseagreen.yaml index 663d4eba..b0b3eb98 100644 --- a/themes/ohled-lightseagreen.yaml +++ b/themes/ohled-lightseagreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lightskyblue.yaml b/themes/ohled-lightskyblue.yaml index 6d8f22a4..11461262 100644 --- a/themes/ohled-lightskyblue.yaml +++ b/themes/ohled-lightskyblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lightslategray.yaml b/themes/ohled-lightslategray.yaml index b105b971..53a9118a 100644 --- a/themes/ohled-lightslategray.yaml +++ b/themes/ohled-lightslategray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lightsteelblue.yaml b/themes/ohled-lightsteelblue.yaml index c9f850a1..d877cbe6 100644 --- a/themes/ohled-lightsteelblue.yaml +++ b/themes/ohled-lightsteelblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lightyellow.yaml b/themes/ohled-lightyellow.yaml index a130ba56..ba7f37da 100644 --- a/themes/ohled-lightyellow.yaml +++ b/themes/ohled-lightyellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-lime.yaml b/themes/ohled-lime.yaml index 56c9f5d4..c1eee4ec 100644 --- a/themes/ohled-lime.yaml +++ b/themes/ohled-lime.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-limegreen.yaml b/themes/ohled-limegreen.yaml index 79537cad..912e92c5 100644 --- a/themes/ohled-limegreen.yaml +++ b/themes/ohled-limegreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-linen.yaml b/themes/ohled-linen.yaml index 109df1d4..28cfd8bc 100644 --- a/themes/ohled-linen.yaml +++ b/themes/ohled-linen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-magenta.yaml b/themes/ohled-magenta.yaml new file mode 100644 index 00000000..18012671 --- /dev/null +++ b/themes/ohled-magenta.yaml @@ -0,0 +1,52 @@ +name: "OhLED_Magenta" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10963 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" +colors: + bg: "#000000" + fg: "#FF00FF" + black: "#FF00FF" + red: "#BB00BB" + green: "#CC00CC" + yellow: "#990099" + blue: "#EE00EE" + magenta: "#DD00DD" + cyan: "#AA00AA" + white: "#880088" + brightBlack: "#FF00FF" + brightRed: "#BB00BB" + brightGreen: "#CC00CC" + brightYellow: "#990099" + brightBlue: "#EE00EE" + brightMagenta: "#DD00DD" + brightCyan: "#AA00AA" + brightWhite: "#880088" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 46.2 + black: 46.2 + red: 26.9 + green: 31.4 + yellow: 18.4 + blue: 41.1 + magenta: 36.2 + cyan: 22.5 + white: 14.4 + brightBlack: 46.2 + brightRed: 26.9 + brightGreen: 31.4 + brightYellow: 18.4 + brightBlue: 41.1 + brightMagenta: 36.2 + brightCyan: 22.5 + brightWhite: 14.4 diff --git a/themes/ohled-maroon.yaml b/themes/ohled-maroon.yaml index 20e4610e..5f735e69 100644 --- a/themes/ohled-maroon.yaml +++ b/themes/ohled-maroon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-mediumaquamarine.yaml b/themes/ohled-mediumaquamarine.yaml index 473f9050..a3415b8c 100644 --- a/themes/ohled-mediumaquamarine.yaml +++ b/themes/ohled-mediumaquamarine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-mediumblue.yaml b/themes/ohled-mediumblue.yaml index c246b312..0101a5c5 100644 --- a/themes/ohled-mediumblue.yaml +++ b/themes/ohled-mediumblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-mediumorchid.yaml b/themes/ohled-mediumorchid.yaml index a4daaaed..78d7999e 100644 --- a/themes/ohled-mediumorchid.yaml +++ b/themes/ohled-mediumorchid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-mediumpurple.yaml b/themes/ohled-mediumpurple.yaml index 181cca2f..341aae14 100644 --- a/themes/ohled-mediumpurple.yaml +++ b/themes/ohled-mediumpurple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-mediumseagreen.yaml b/themes/ohled-mediumseagreen.yaml index a83d5381..9955e5f7 100644 --- a/themes/ohled-mediumseagreen.yaml +++ b/themes/ohled-mediumseagreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-mediumslateblue.yaml b/themes/ohled-mediumslateblue.yaml index 5db5f97a..8aefaff2 100644 --- a/themes/ohled-mediumslateblue.yaml +++ b/themes/ohled-mediumslateblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-mediumspringgreen.yaml b/themes/ohled-mediumspringgreen.yaml index 6e4099b3..42f5e92e 100644 --- a/themes/ohled-mediumspringgreen.yaml +++ b/themes/ohled-mediumspringgreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-mediumturquoise.yaml b/themes/ohled-mediumturquoise.yaml index afe3584f..7da529e8 100644 --- a/themes/ohled-mediumturquoise.yaml +++ b/themes/ohled-mediumturquoise.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-mediumvioletred.yaml b/themes/ohled-mediumvioletred.yaml index 17549b3e..3ce5ccce 100644 --- a/themes/ohled-mediumvioletred.yaml +++ b/themes/ohled-mediumvioletred.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-midnightblue.yaml b/themes/ohled-midnightblue.yaml index 1c346e02..70eece81 100644 --- a/themes/ohled-midnightblue.yaml +++ b/themes/ohled-midnightblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-mintcream.yaml b/themes/ohled-mintcream.yaml index 1820e105..c612da4e 100644 --- a/themes/ohled-mintcream.yaml +++ b/themes/ohled-mintcream.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-mistyrose.yaml b/themes/ohled-mistyrose.yaml index 9895f3eb..e1512799 100644 --- a/themes/ohled-mistyrose.yaml +++ b/themes/ohled-mistyrose.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-moccasin.yaml b/themes/ohled-moccasin.yaml index a716102e..de77775d 100644 --- a/themes/ohled-moccasin.yaml +++ b/themes/ohled-moccasin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-navajowhite.yaml b/themes/ohled-navajowhite.yaml index db0ff508..7207f311 100644 --- a/themes/ohled-navajowhite.yaml +++ b/themes/ohled-navajowhite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-navy.yaml b/themes/ohled-navy.yaml index 2f75a53e..14024d0e 100644 --- a/themes/ohled-navy.yaml +++ b/themes/ohled-navy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-oldlace.yaml b/themes/ohled-oldlace.yaml index 46b963d1..e6177cb8 100644 --- a/themes/ohled-oldlace.yaml +++ b/themes/ohled-oldlace.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-olive.yaml b/themes/ohled-olive.yaml index 0c0cbff4..b4b7c31b 100644 --- a/themes/ohled-olive.yaml +++ b/themes/ohled-olive.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-olivedrab.yaml b/themes/ohled-olivedrab.yaml index 53713f69..8c280f89 100644 --- a/themes/ohled-olivedrab.yaml +++ b/themes/ohled-olivedrab.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-orange.yaml b/themes/ohled-orange.yaml index 3e3cdea9..415e10b2 100644 --- a/themes/ohled-orange.yaml +++ b/themes/ohled-orange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-orangered.yaml b/themes/ohled-orangered.yaml index 1b8283f0..0f8e6ea0 100644 --- a/themes/ohled-orangered.yaml +++ b/themes/ohled-orangered.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-orchid.yaml b/themes/ohled-orchid.yaml index bfc151d2..b78c7dcc 100644 --- a/themes/ohled-orchid.yaml +++ b/themes/ohled-orchid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-palegoldenrod.yaml b/themes/ohled-palegoldenrod.yaml index 13696a15..215fa32f 100644 --- a/themes/ohled-palegoldenrod.yaml +++ b/themes/ohled-palegoldenrod.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-palegreen.yaml b/themes/ohled-palegreen.yaml index 772fed77..fd07f65c 100644 --- a/themes/ohled-palegreen.yaml +++ b/themes/ohled-palegreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-paleturquoise.yaml b/themes/ohled-paleturquoise.yaml index 45985e6c..e332d617 100644 --- a/themes/ohled-paleturquoise.yaml +++ b/themes/ohled-paleturquoise.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-palevioletred.yaml b/themes/ohled-palevioletred.yaml index cc42edb5..27826ee2 100644 --- a/themes/ohled-palevioletred.yaml +++ b/themes/ohled-palevioletred.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-papayawhip.yaml b/themes/ohled-papayawhip.yaml index 194906b7..c22e2941 100644 --- a/themes/ohled-papayawhip.yaml +++ b/themes/ohled-papayawhip.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-peachpuff.yaml b/themes/ohled-peachpuff.yaml index 66c53b19..c9cd2029 100644 --- a/themes/ohled-peachpuff.yaml +++ b/themes/ohled-peachpuff.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-peru.yaml b/themes/ohled-peru.yaml index 071b775f..00149f90 100644 --- a/themes/ohled-peru.yaml +++ b/themes/ohled-peru.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-pink.yaml b/themes/ohled-pink.yaml index db15c890..84f14916 100644 --- a/themes/ohled-pink.yaml +++ b/themes/ohled-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-plum.yaml b/themes/ohled-plum.yaml index 8bd8c938..7fa35385 100644 --- a/themes/ohled-plum.yaml +++ b/themes/ohled-plum.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-powderblue.yaml b/themes/ohled-powderblue.yaml index 4a161607..f1bbd388 100644 --- a/themes/ohled-powderblue.yaml +++ b/themes/ohled-powderblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-purple.yaml b/themes/ohled-purple.yaml index d7f373cd..599d2f2d 100644 --- a/themes/ohled-purple.yaml +++ b/themes/ohled-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-rebeccapurple.yaml b/themes/ohled-rebeccapurple.yaml index 74958b0f..9c01f7e7 100644 --- a/themes/ohled-rebeccapurple.yaml +++ b/themes/ohled-rebeccapurple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-red.yaml b/themes/ohled-red.yaml index ad28116d..63fdc3a2 100644 --- a/themes/ohled-red.yaml +++ b/themes/ohled-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-rosybrown.yaml b/themes/ohled-rosybrown.yaml index 8e79efcc..d2a2b27f 100644 --- a/themes/ohled-rosybrown.yaml +++ b/themes/ohled-rosybrown.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-royalblue.yaml b/themes/ohled-royalblue.yaml index fdb6502a..88dc65ca 100644 --- a/themes/ohled-royalblue.yaml +++ b/themes/ohled-royalblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-saddlebrown.yaml b/themes/ohled-saddlebrown.yaml index bb4948c1..4f07d7d5 100644 --- a/themes/ohled-saddlebrown.yaml +++ b/themes/ohled-saddlebrown.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-salmon.yaml b/themes/ohled-salmon.yaml index f8a249bf..eaf60e6f 100644 --- a/themes/ohled-salmon.yaml +++ b/themes/ohled-salmon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-sandybrown.yaml b/themes/ohled-sandybrown.yaml index 2db67171..1e8bcf97 100644 --- a/themes/ohled-sandybrown.yaml +++ b/themes/ohled-sandybrown.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-seagreen.yaml b/themes/ohled-seagreen.yaml index 968ed7e9..bb42c10b 100644 --- a/themes/ohled-seagreen.yaml +++ b/themes/ohled-seagreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-seashell.yaml b/themes/ohled-seashell.yaml index 89372f7d..e9e81b2a 100644 --- a/themes/ohled-seashell.yaml +++ b/themes/ohled-seashell.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-sienna.yaml b/themes/ohled-sienna.yaml index 7547f148..c274268f 100644 --- a/themes/ohled-sienna.yaml +++ b/themes/ohled-sienna.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-silver.yaml b/themes/ohled-silver.yaml index 49995b0e..c6935b4e 100644 --- a/themes/ohled-silver.yaml +++ b/themes/ohled-silver.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-skyblue.yaml b/themes/ohled-skyblue.yaml index 71b51a33..5ab95d15 100644 --- a/themes/ohled-skyblue.yaml +++ b/themes/ohled-skyblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-slateblue.yaml b/themes/ohled-slateblue.yaml index c8c6bba8..965545b3 100644 --- a/themes/ohled-slateblue.yaml +++ b/themes/ohled-slateblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-slategray.yaml b/themes/ohled-slategray.yaml index 17966005..973f1b29 100644 --- a/themes/ohled-slategray.yaml +++ b/themes/ohled-slategray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-snow.yaml b/themes/ohled-snow.yaml index 68822f02..d862037c 100644 --- a/themes/ohled-snow.yaml +++ b/themes/ohled-snow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-springgreen.yaml b/themes/ohled-springgreen.yaml index 8cc86a97..9f883985 100644 --- a/themes/ohled-springgreen.yaml +++ b/themes/ohled-springgreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-steelblue.yaml b/themes/ohled-steelblue.yaml index 1a8bca24..384b34d9 100644 --- a/themes/ohled-steelblue.yaml +++ b/themes/ohled-steelblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-tan.yaml b/themes/ohled-tan.yaml index 3929f883..618cee2e 100644 --- a/themes/ohled-tan.yaml +++ b/themes/ohled-tan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-teal.yaml b/themes/ohled-teal.yaml index 7b2c8930..eff62440 100644 --- a/themes/ohled-teal.yaml +++ b/themes/ohled-teal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-thistle.yaml b/themes/ohled-thistle.yaml index ac4a3424..8cec593e 100644 --- a/themes/ohled-thistle.yaml +++ b/themes/ohled-thistle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-tomato.yaml b/themes/ohled-tomato.yaml index 02d8cba5..9cb71e33 100644 --- a/themes/ohled-tomato.yaml +++ b/themes/ohled-tomato.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-turquoise.yaml b/themes/ohled-turquoise.yaml index bf9908f1..ba49c6f2 100644 --- a/themes/ohled-turquoise.yaml +++ b/themes/ohled-turquoise.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-violet.yaml b/themes/ohled-violet.yaml index e458efe9..fbb469f4 100644 --- a/themes/ohled-violet.yaml +++ b/themes/ohled-violet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-wheat.yaml b/themes/ohled-wheat.yaml index 09b94531..cdb6c9fa 100644 --- a/themes/ohled-wheat.yaml +++ b/themes/ohled-wheat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-white.yaml b/themes/ohled-white.yaml index 72393457..8879db45 100644 --- a/themes/ohled-white.yaml +++ b/themes/ohled-white.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-whitesmoke.yaml b/themes/ohled-whitesmoke.yaml index beaa319e..007b0551 100644 --- a/themes/ohled-whitesmoke.yaml +++ b/themes/ohled-whitesmoke.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-yellow.yaml b/themes/ohled-yellow.yaml index 658bd8b7..0a6fa0b4 100644 --- a/themes/ohled-yellow.yaml +++ b/themes/ohled-yellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-yellowgreen.yaml b/themes/ohled-yellowgreen.yaml index 32df1772..6fb0e5cf 100644 --- a/themes/ohled-yellowgreen.yaml +++ b/themes/ohled-yellowgreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-yelloworange.yaml b/themes/ohled-yelloworange.yaml index 92aa6362..6bca043e 100644 --- a/themes/ohled-yelloworange.yaml +++ b/themes/ohled-yelloworange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-yellowpink.yaml b/themes/ohled-yellowpink.yaml index 70cc8892..a362a012 100644 --- a/themes/ohled-yellowpink.yaml +++ b/themes/ohled-yellowpink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/ohled-yellowpurple.yaml b/themes/ohled-yellowpurple.yaml index 70933a76..c4699e00 100644 --- a/themes/ohled-yellowpurple.yaml +++ b/themes/ohled-yellowpurple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ophuscado.ohled-themes" version: "1.0.1" installs: 10963 + rating: 3 + ratings: 2 author: "Ophuscado" repo: "https://github.com/Ophuscado/vscode-ohled-themes" url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" diff --git a/themes/okas-theme.yaml b/themes/okas-theme.yaml index cf6a2ac0..17116181 100644 --- a/themes/okas-theme.yaml +++ b/themes/okas-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brenokas.okas-theme" version: "0.0.4" installs: 23 + rating: 0 + ratings: 0 author: "Breno de Freitas" repo: null url: "https://marketplace.visualstudio.com/items?itemName=brenokas.okas-theme" diff --git a/themes/oldschool-terminal-green.yaml b/themes/oldschool-terminal-green.yaml index 3fbb4d5e..4f517fbe 100644 --- a/themes/oldschool-terminal-green.yaml +++ b/themes/oldschool-terminal-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ericson-willians.oldschool-theme-win95-edition" version: "1.0.0" installs: 6536 + rating: 5 + ratings: 2 author: "Ericson Willians Rocha Pires" repo: "https://github.com/EricsonWillians/oldschool-theme" url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.oldschool-theme-win95-edition" diff --git a/themes/oldworld.yaml b/themes/oldworld.yaml index 3b010acc..c8b03f9b 100644 --- a/themes/oldworld.yaml +++ b/themes/oldworld.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diegogomez16.oldworld" version: "0.0.6" installs: 163 + rating: 0 + ratings: 0 author: "diego.gomez16" repo: "https://github.com/dgox16/oldworld.vscode" url: "https://marketplace.visualstudio.com/items?itemName=diegogomez16.oldworld" diff --git a/themes/oledge.yaml b/themes/oledge.yaml new file mode 100644 index 00000000..4a5e241d --- /dev/null +++ b/themes/oledge.yaml @@ -0,0 +1,50 @@ +name: "Oledge" +source: + marketplace_id: "axross.vscode-theme-oledge" + version: "1.0.0" + installs: 257 + author: "axross" + repo: "https://github.com/axross/vscode-theme-oledge" + url: "https://marketplace.visualstudio.com/items?itemName=axross.vscode-theme-oledge" +colors: + bg: "#000000" + fg: "#D1D5DB" + black: "#3F3F46" + red: "#CD3131" + green: "#059669" + yellow: "#D97706" + blue: "#2563EB" + magenta: "#C026D3" + cyan: "#0891B2" + white: "#D1D5DB" + brightBlack: "#71717A" + brightRed: "#FB7185" + brightGreen: "#34D399" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#E879F9" + brightCyan: "#22D3EE" + brightWhite: "#F9FAFB" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.9 + black: 8.3 + red: 27.7 + green: 37 + yellow: 43.2 + blue: 26.9 + magenta: 30.6 + cyan: 37.8 + white: 80.9 + brightBlack: 28.1 + brightRed: 50.3 + brightGreen: 66.2 + brightYellow: 73.7 + brightBlue: 52.4 + brightMagenta: 54.1 + brightCyan: 69.6 + brightWhite: 104.5 diff --git a/themes/olive-dark.yaml b/themes/olive-dark.yaml index 845fd98d..a8ea32e5 100644 --- a/themes/olive-dark.yaml +++ b/themes/olive-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jeigsaw.olive-dark-theme" version: "1.0.0" installs: 574 + rating: 0 + ratings: 0 author: "Jeigsaw" repo: "https://github.com/Jeigsaw/olive-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jeigsaw.olive-dark-theme" diff --git a/themes/olive-light.yaml b/themes/olive-light.yaml index 1253863f..a1f8087d 100644 --- a/themes/olive-light.yaml +++ b/themes/olive-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jeigsaw.olive-light-theme" version: "1.0.1" installs: 588 + rating: 5 + ratings: 1 author: "Jeigsaw" repo: "https://github.com/Jeigsaw/olive-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jeigsaw.olive-light-theme" diff --git a/themes/omega.yaml b/themes/omega.yaml index f81379d4..2734a427 100644 --- a/themes/omega.yaml +++ b/themes/omega.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "royal-cat-studios.omega-dark" version: "0.0.7" installs: 548 + rating: 0 + ratings: 0 author: "Royal Cat Studios" repo: "https://github.com/connordavis107/omega-dark" url: "https://marketplace.visualstudio.com/items?itemName=royal-cat-studios.omega-dark" diff --git a/themes/omni-customized-dark.yaml b/themes/omni-customized-dark.yaml index 36f1cd81..45afc39f 100644 --- a/themes/omni-customized-dark.yaml +++ b/themes/omni-customized-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "adrian7123.theme-omni-customized-dark" version: "1.0.2" installs: 4030 + rating: 0 + ratings: 0 author: "adrian7123" repo: "https://github.com/adrian7123/vs-code-omni-customized-dark" url: "https://marketplace.visualstudio.com/items?itemName=adrian7123.theme-omni-customized-dark" diff --git a/themes/omni-customized.yaml b/themes/omni-customized.yaml index 97088856..67bf6751 100644 --- a/themes/omni-customized.yaml +++ b/themes/omni-customized.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dtsf.theme-omni-customized" version: "1.0.10" installs: 7087 + rating: 0 + ratings: 0 author: "datsfilipe" repo: "https://github.com/datsfilipe/vs-code-omni-customized" url: "https://marketplace.visualstudio.com/items?itemName=dtsf.theme-omni-customized" diff --git a/themes/omni-dracula-dark.yaml b/themes/omni-dracula-dark.yaml index d3a97c25..8646b85b 100644 --- a/themes/omni-dracula-dark.yaml +++ b/themes/omni-dracula-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wellington-A.omni-dracula-dark" version: "1.0.7" installs: 4766 + rating: 0 + ratings: 0 author: "Wellington-A" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" diff --git a/themes/omni-dracula-theme-tradicional-contrast.yaml b/themes/omni-dracula-theme-tradicional-contrast.yaml index 13ec7db3..91cf386e 100644 --- a/themes/omni-dracula-theme-tradicional-contrast.yaml +++ b/themes/omni-dracula-theme-tradicional-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" version: "1.0.7" installs: 36326 + rating: 5 + ratings: 4 author: "Thiago Lúcio Bittencourt" repo: "https://github.com/thiagolucio/omni-dracula-theme" url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" diff --git a/themes/omni-dracula-theme-tradicional.yaml b/themes/omni-dracula-theme-tradicional.yaml new file mode 100644 index 00000000..7319a875 --- /dev/null +++ b/themes/omni-dracula-theme-tradicional.yaml @@ -0,0 +1,52 @@ +name: "Omni Dracula Theme Tradicional" +source: + marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" + version: "1.0.7" + installs: 36326 + rating: 5 + ratings: 4 + author: "Thiago Lúcio Bittencourt" + repo: "https://github.com/thiagolucio/omni-dracula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: null + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 50.7 + magenta: 51.6 + cyan: 81 + white: 99 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/omni-dracula-theme.yaml b/themes/omni-dracula-theme.yaml index 1b2a272f..47591671 100644 --- a/themes/omni-dracula-theme.yaml +++ b/themes/omni-dracula-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" version: "1.0.7" installs: 36326 + rating: 5 + ratings: 4 author: "Thiago Lúcio Bittencourt" repo: "https://github.com/thiagolucio/omni-dracula-theme" url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" diff --git a/themes/omni-dracula-wine-theme-tradicional.yaml b/themes/omni-dracula-wine-theme-tradicional.yaml index 9c761b69..480fc97b 100644 --- a/themes/omni-dracula-wine-theme-tradicional.yaml +++ b/themes/omni-dracula-wine-theme-tradicional.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" version: "1.0.7" installs: 36326 + rating: 5 + ratings: 4 author: "Thiago Lúcio Bittencourt" repo: "https://github.com/thiagolucio/omni-dracula-theme" url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" diff --git a/themes/omni-monokai-dark.yaml b/themes/omni-monokai-dark.yaml index cc5259c3..a9b99d5e 100644 --- a/themes/omni-monokai-dark.yaml +++ b/themes/omni-monokai-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wellington-A.omni-dracula-dark" version: "1.0.7" installs: 4766 + rating: 0 + ratings: 0 author: "Wellington-A" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" diff --git a/themes/omni-pro.yaml b/themes/omni-pro.yaml index bae9590d..6c37df0a 100644 --- a/themes/omni-pro.yaml +++ b/themes/omni-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "viniciusamelio.theme-omni-pro" version: "1.0.15" installs: 2484 + rating: 5 + ratings: 1 author: "viniciusamelio" repo: "https://github.com/viniciusamelio/omni-pro" url: "https://marketplace.visualstudio.com/items?itemName=viniciusamelio.theme-omni-pro" diff --git a/themes/omni.yaml b/themes/omni.yaml index 96a9849d..c1051429 100644 --- a/themes/omni.yaml +++ b/themes/omni.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.codeme-theme" version: "0.1.1" installs: 8080 + rating: 0 + ratings: 0 author: "Avetis" repo: "https://github.com/AvetisDN/codeme-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" diff --git a/themes/omnisexual.yaml b/themes/omnisexual.yaml index 3eef6031..fe2290fc 100644 --- a/themes/omnisexual.yaml +++ b/themes/omnisexual.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ElizaMuss.elizas-pride-themes" version: "1.0.2" installs: 848 + rating: 0 + ratings: 0 author: "Eliza Muss" repo: "https://github.com/The-Gamer69/elizas-pride-themes" url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" diff --git a/themes/omnitrix-code.yaml b/themes/omnitrix-code.yaml index 29e20200..0fbb73b5 100644 --- a/themes/omnitrix-code.yaml +++ b/themes/omnitrix-code.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.theme-icon-pack" version: "1.0.4" installs: 906 + rating: 0 + ratings: 0 author: "SecureDev" repo: "https://github.com/codewithevilxd/theme-icon-pack" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.theme-icon-pack" diff --git a/themes/omo-theme.yaml b/themes/omo-theme.yaml index 8779d9b5..c3aea9e8 100644 --- a/themes/omo-theme.yaml +++ b/themes/omo-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "omoghadasi.omo-theme" version: "1.0.3" installs: 1611 + rating: 5 + ratings: 3 author: "Omid Moghadasi" repo: "https://github.com/omoghadasi/omo-theme" url: "https://marketplace.visualstudio.com/items?itemName=omoghadasi.omo-theme" diff --git a/themes/one-ai-theme.yaml b/themes/one-ai-theme.yaml index 545d0846..844036d1 100644 --- a/themes/one-ai-theme.yaml +++ b/themes/one-ai-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OneAI.oneai-vscode-theme" version: "0.0.3" installs: 1250 + rating: 0 + ratings: 0 author: "One AI" repo: "https://github.com/michgur/oneai-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=OneAI.oneai-vscode-theme" diff --git a/themes/one-dark-cloud-theme.yaml b/themes/one-dark-cloud-theme.yaml index eb93dff3..64d9ad08 100644 --- a/themes/one-dark-cloud-theme.yaml +++ b/themes/one-dark-cloud-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "oleg-moroz.one-dark-cloud-theme" version: "1.1.2" installs: 200 + rating: 5 + ratings: 1 author: "Oleg Moroz" repo: "https://github.com/moroz0751/vscode-one-dark-cloud" url: "https://marketplace.visualstudio.com/items?itemName=oleg-moroz.one-dark-cloud-theme" diff --git a/themes/one-dark-code.yaml b/themes/one-dark-code.yaml index 4af76cf7..fb22a1ee 100644 --- a/themes/one-dark-code.yaml +++ b/themes/one-dark-code.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LucasOe.one-dark-code" version: "1.9.0" installs: 311 + rating: 0 + ratings: 0 author: "LucasOe" repo: "https://github.com/LucasOe/one-dark-code" url: "https://marketplace.visualstudio.com/items?itemName=LucasOe.one-dark-code" diff --git a/themes/one-dark-darker-vivid.yaml b/themes/one-dark-darker-vivid.yaml index ca2b2685..3e5240ad 100644 --- a/themes/one-dark-darker-vivid.yaml +++ b/themes/one-dark-darker-vivid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevBlooming.one-dark-darker-theme" version: "1.0.0" installs: 732 + rating: 0 + ratings: 0 author: "DevBlooming" repo: "https://github.com/DevBlooming/one-dark-darker-theme" url: "https://marketplace.visualstudio.com/items?itemName=DevBlooming.one-dark-darker-theme" diff --git a/themes/one-dark-darker.yaml b/themes/one-dark-darker.yaml index 820dcdd9..a9811020 100644 --- a/themes/one-dark-darker.yaml +++ b/themes/one-dark-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lazyComedian.sentimental-dark" version: "0.1.4" installs: 518 + rating: 0 + ratings: 0 author: "lazyComedian" repo: "https://github.com/lazycomedian/SentimentalDark" url: "https://marketplace.visualstudio.com/items?itemName=lazyComedian.sentimental-dark" diff --git a/themes/one-dark-modern-pro.yaml b/themes/one-dark-modern-pro.yaml index b2077d8d..496a1df8 100644 --- a/themes/one-dark-modern-pro.yaml +++ b/themes/one-dark-modern-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aleksa-codes.one-dark-modern-pro" version: "1.0.10" installs: 2144 + rating: 5 + ratings: 1 author: "aleksa-codes" repo: "https://github.com/aleksa-codes/one-dark-modern-pro" url: "https://marketplace.visualstudio.com/items?itemName=aleksa-codes.one-dark-modern-pro" diff --git a/themes/one-dark-night-blue-boy.yaml b/themes/one-dark-night-blue-boy.yaml index 519ef4cb..edad0b20 100644 --- a/themes/one-dark-night-blue-boy.yaml +++ b/themes/one-dark-night-blue-boy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sojibahmed.one-dark-night-theme" version: "0.0.7" installs: 1363 + rating: 0 + ratings: 0 author: "sojibAhmedSafi" repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" diff --git a/themes/one-dark-night-eye-care.yaml b/themes/one-dark-night-eye-care.yaml index 22d81cfb..516786ac 100644 --- a/themes/one-dark-night-eye-care.yaml +++ b/themes/one-dark-night-eye-care.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sojibahmed.one-dark-night-theme" version: "0.0.7" installs: 1363 + rating: 0 + ratings: 0 author: "sojibAhmedSafi" repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" diff --git a/themes/one-dark-night-minimalist.yaml b/themes/one-dark-night-minimalist.yaml index 7e640209..970594bb 100644 --- a/themes/one-dark-night-minimalist.yaml +++ b/themes/one-dark-night-minimalist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sojibahmed.one-dark-night-theme" version: "0.0.7" installs: 1363 + rating: 0 + ratings: 0 author: "sojibAhmedSafi" repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" diff --git a/themes/one-dark-night-professional.yaml b/themes/one-dark-night-professional.yaml index be8a008a..91cc06b6 100644 --- a/themes/one-dark-night-professional.yaml +++ b/themes/one-dark-night-professional.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sojibahmed.one-dark-night-theme" version: "0.0.7" installs: 1363 + rating: 0 + ratings: 0 author: "sojibAhmedSafi" repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" diff --git a/themes/one-dark-nx.yaml b/themes/one-dark-nx.yaml index a8e9e4b9..888f01a4 100644 --- a/themes/one-dark-nx.yaml +++ b/themes/one-dark-nx.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vxna.one-dark-nx" version: "1.0.0" installs: 2523 + rating: 0 + ratings: 0 author: "vxna" repo: "https://github.com/vxna/one-dark-nx" url: "https://marketplace.visualstudio.com/items?itemName=vxna.one-dark-nx" diff --git a/themes/one-dark-orange.yaml b/themes/one-dark-orange.yaml new file mode 100644 index 00000000..556123b4 --- /dev/null +++ b/themes/one-dark-orange.yaml @@ -0,0 +1,52 @@ +name: "One Dark Orange" +source: + marketplace_id: "odibje.one-dark-orange" + version: "1.0.2" + installs: 349 + rating: 0 + ratings: 0 + author: "odibje" + repo: "https://github.com/od-b/one-dark-orange" + url: "https://marketplace.visualstudio.com/items?itemName=odibje.one-dark-orange" +colors: + bg: "#1A1F27" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 58.5 + black: 7.9 + red: 35.8 + green: 59.4 + yellow: 47.7 + blue: 48.7 + magenta: 38.1 + cyan: 51.6 + white: 82.1 + brightBlack: 14.5 + brightRed: 45.1 + brightGreen: 75.8 + brightYellow: 60.3 + brightBlue: 62.8 + brightMagenta: 49.3 + brightCyan: 66.9 + brightWhite: 89.7 diff --git a/themes/one-dark-pro-theme.yaml b/themes/one-dark-pro-theme.yaml index bef466a4..99443dc3 100644 --- a/themes/one-dark-pro-theme.yaml +++ b/themes/one-dark-pro-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mdmarufsarker.maruf-sarker" version: "0.1.1" installs: 29154 + rating: 5 + ratings: 6 author: "Md. Maruf Sarker" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" diff --git a/themes/one-dark-pro-var-night.yaml b/themes/one-dark-pro-var-night.yaml index dad01ff0..71de2a96 100644 --- a/themes/one-dark-pro-var-night.yaml +++ b/themes/one-dark-pro-var-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "csstools.onedarkprovar" version: "1.1.0" installs: 7895 + rating: 5 + ratings: 1 author: "csstools" repo: "https://github.com/csstools/onedarkprovar-theme" url: "https://marketplace.visualstudio.com/items?itemName=csstools.onedarkprovar" diff --git a/themes/one-dark-pro.yaml b/themes/one-dark-pro.yaml index b880b274..e2e8a2e4 100644 --- a/themes/one-dark-pro.yaml +++ b/themes/one-dark-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wilfison.one-dark-ruby" version: "0.0.4" installs: 228 + rating: 0 + ratings: 0 author: "Wilfison" repo: "https://github.com/wilfison/one-dark-ruby" url: "https://marketplace.visualstudio.com/items?itemName=wilfison.one-dark-ruby" diff --git a/themes/one-dark-vibrant-theme.yaml b/themes/one-dark-vibrant-theme.yaml index be46291e..6b71efae 100644 --- a/themes/one-dark-vibrant-theme.yaml +++ b/themes/one-dark-vibrant-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "josergz.one-dark-vibrant-theme" version: "1.2.2" installs: 355 + rating: 5 + ratings: 1 author: "José Rodríguez " repo: "https://github.com/josergz/one-dark-vibrant-theme" url: "https://marketplace.visualstudio.com/items?itemName=josergz.one-dark-vibrant-theme" diff --git a/themes/one-dark.yaml b/themes/one-dark.yaml index 3125eab7..99dfb435 100644 --- a/themes/one-dark.yaml +++ b/themes/one-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kavinkumar.one-dark-custom-theme" version: "0.0.4" installs: 222 + rating: 5 + ratings: 1 author: "kavinkumar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kavinkumar.one-dark-custom-theme" diff --git a/themes/one-darker-pro.yaml b/themes/one-darker-pro.yaml index 5f7d2e04..5b9f8d91 100644 --- a/themes/one-darker-pro.yaml +++ b/themes/one-darker-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pieersx.onedarker-pro" version: "0.0.2" installs: 387 + rating: 5 + ratings: 1 author: "Pieersx" repo: "https://github.com/pieersx/onedarker-pro" url: "https://marketplace.visualstudio.com/items?itemName=pieersx.onedarker-pro" diff --git a/themes/one-darkpuccin-night.yaml b/themes/one-darkpuccin-night.yaml new file mode 100644 index 00000000..5ee948bc --- /dev/null +++ b/themes/one-darkpuccin-night.yaml @@ -0,0 +1,52 @@ +name: "One DarkPuccin Night" +source: + marketplace_id: "ni3rav.one-darkppuccin" + version: "0.0.4" + installs: 939 + rating: 5 + ratings: 2 + author: "ni3rav" + repo: "https://github.com/ni3rav/one-darkppuccin" + url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.one-darkppuccin" +colors: + bg: "#16191D" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 59.2 + black: 8.7 + red: 36.5 + green: 60.2 + yellow: 48.4 + blue: 49.5 + magenta: 38.9 + cyan: 52.3 + white: 82.9 + brightBlack: 15.3 + brightRed: 45.9 + brightGreen: 76.6 + brightYellow: 61 + brightBlue: 63.6 + brightMagenta: 50.1 + brightCyan: 67.6 + brightWhite: 90.5 diff --git a/themes/one-darkpuccin-vivid.yaml b/themes/one-darkpuccin-vivid.yaml new file mode 100644 index 00000000..1f3531be --- /dev/null +++ b/themes/one-darkpuccin-vivid.yaml @@ -0,0 +1,52 @@ +name: "One DarkPuccin Vivid" +source: + marketplace_id: "ni3rav.one-darkppuccin" + version: "0.0.4" + installs: 939 + rating: 5 + ratings: 2 + author: "ni3rav" + repo: "https://github.com/ni3rav/one-darkppuccin" + url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.one-darkppuccin" +colors: + bg: "#2D3138" + fg: "#B0B4BA" + black: "#444B58" + red: "#E45C68" + green: "#91C96A" + yellow: "#D79758" + blue: "#4FADF8" + magenta: "#C769E5" + cyan: "#47BBC9" + white: "#DCE0E5" + brightBlack: "#555C6D" + brightRed: "#FF6875" + brightGreen: "#AAE57B" + brightYellow: "#F4AA62" + brightBlue: "#52CCFF" + brightMagenta: "#E67BFF" + brightCyan: "#51D9E8" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "pink" + hue: 262 + pair: null + contrast: + fg: 56.3 + black: 0 + red: 34.8 + green: 59.7 + yellow: 48.1 + blue: 49.3 + magenta: 37.8 + cyan: 52.2 + white: 82.3 + brightBlack: 13.6 + brightRed: 43.4 + brightGreen: 75.5 + brightYellow: 59.9 + brightBlue: 63.2 + brightMagenta: 49.4 + brightCyan: 67.9 + brightWhite: 88.9 diff --git a/themes/one-hunter-theme.yaml b/themes/one-hunter-theme.yaml index 0026e4cc..fec5f79b 100644 --- a/themes/one-hunter-theme.yaml +++ b/themes/one-hunter-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/one-light-italic.yaml b/themes/one-light-italic.yaml new file mode 100644 index 00000000..333262e8 --- /dev/null +++ b/themes/one-light-italic.yaml @@ -0,0 +1,52 @@ +name: "One Light Italic" +source: + marketplace_id: "laggardkernel.vscode-theme-onelight" + version: "0.2.1" + installs: 10325 + rating: 0 + ratings: 0 + author: "laggardkernel" + repo: "https://github.com/laggardkernel/vscode-theme-onelight" + url: "https://marketplace.visualstudio.com/items?itemName=laggardkernel.vscode-theme-onelight" +colors: + bg: "#FAFAFA" + fg: "#24292E" + black: "#383A42" + red: "#E45649" + green: "#50A14F" + yellow: "#C18401" + blue: "#2F5AF3" + magenta: "#A626A4" + cyan: "#00B7EB" + white: "#FAFAFA" + brightBlack: "#797979" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#4B72FF" + brightMagenta: "#C678DD" + brightCyan: "#00B7EB" + brightWhite: "#FAFAFA" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 98.5 + black: 93.2 + red: 60.4 + green: 56 + yellow: 55.8 + blue: 73.2 + magenta: 76.2 + cyan: 42.4 + white: 0 + brightBlack: 67.2 + brightRed: 55.7 + brightGreen: 36.1 + brightYellow: 28.2 + brightBlue: 64.5 + brightMagenta: 52.7 + brightCyan: 42.4 + brightWhite: 0 diff --git a/themes/one-light-pro.yaml b/themes/one-light-pro.yaml index 9186e837..06d088d5 100644 --- a/themes/one-light-pro.yaml +++ b/themes/one-light-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "smdfuck.best-themes" version: "0.0.15" installs: 149 + rating: 5 + ratings: 1 author: "smdfuck" repo: "https://github.com/smdfuck/best-themes" url: "https://marketplace.visualstudio.com/items?itemName=smdfuck.best-themes" diff --git a/themes/one-material.yaml b/themes/one-material.yaml index 7a35338a..27a329df 100644 --- a/themes/one-material.yaml +++ b/themes/one-material.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VVekslyer.one-material-theme" version: "0.0.3" installs: 359 + rating: 0 + ratings: 0 author: "VVekslyer" repo: "https://github.com/VVekslyer/one-material-theme" url: "https://marketplace.visualstudio.com/items?itemName=VVekslyer.one-material-theme" diff --git a/themes/one-midnight.yaml b/themes/one-midnight.yaml index 4f385bc8..2c2d83db 100644 --- a/themes/one-midnight.yaml +++ b/themes/one-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "violetiapalucci.one-midnight" version: "1.0.0" installs: 538 + rating: 5 + ratings: 1 author: "Violet Iapalucci" repo: "https://github.com/one-midnight-theme/vscode-one-midnight" url: "https://marketplace.visualstudio.com/items?itemName=violetiapalucci.one-midnight" diff --git a/themes/one-monokai-darker.yaml b/themes/one-monokai-darker.yaml index 3a125dcd..86e744f2 100644 --- a/themes/one-monokai-darker.yaml +++ b/themes/one-monokai-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zzhua095.one-monokai-pro" version: "0.1.3" installs: 629 + rating: 0 + ratings: 0 author: "zzhua" repo: "https://github.com/Huazzi/vscode-one-monokai-darker" url: "https://marketplace.visualstudio.com/items?itemName=zzhua095.one-monokai-pro" diff --git a/themes/one-monokai-forked.yaml b/themes/one-monokai-forked.yaml index fe23c289..1724efa8 100644 --- a/themes/one-monokai-forked.yaml +++ b/themes/one-monokai-forked.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mub.one-monokai-forked" version: "0.6.3" installs: 1090 + rating: 5 + ratings: 1 author: "mub" repo: "https://github.com/mubdiur/vscode-one-monokai" url: "https://marketplace.visualstudio.com/items?itemName=mub.one-monokai-forked" diff --git a/themes/one-monokai-light.yaml b/themes/one-monokai-light.yaml new file mode 100644 index 00000000..fa128ccf --- /dev/null +++ b/themes/one-monokai-light.yaml @@ -0,0 +1,52 @@ +name: "One Monokai (Light)" +source: + marketplace_id: "CheapeOne.one-monokai-light" + version: "1.0.4" + installs: 4284 + rating: 5 + ratings: 2 + author: "CheapeOne" + repo: "https://github.com/cheapeone/vscode-one-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=CheapeOne.one-monokai-light" +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#24292E" + red: "#D73A49" + green: "#28A745" + yellow: "#DBAB09" + blue: "#0366D6" + magenta: "#5A32A3" + cyan: "#1B7C83" + white: "#6A737D" + brightBlack: "#959DA5" + brightRed: "#CB2431" + brightGreen: "#22863A" + brightYellow: "#B08800" + brightBlue: "#005CC5" + brightMagenta: "#5A32A3" + brightCyan: "#3192AA" + brightWhite: "#D1D5DA" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.5 + black: 101.5 + red: 70.4 + green: 57.9 + yellow: 41.6 + blue: 76.2 + magenta: 89.2 + cyan: 73.8 + white: 73.4 + brightBlack: 53.1 + brightRed: 75.5 + brightGreen: 71.7 + brightYellow: 60.1 + brightBlue: 80.5 + brightMagenta: 89.2 + brightCyan: 63.3 + brightWhite: 22.4 diff --git a/themes/one-monokai-michota.yaml b/themes/one-monokai-michota.yaml index 86884ae6..787beff9 100644 --- a/themes/one-monokai-michota.yaml +++ b/themes/one-monokai-michota.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "michota.one-monokai-michota" version: "0.2.0" installs: 16 + rating: 0 + ratings: 0 author: "michota" repo: "https://github.com/Michota/one-monokai-michota" url: "https://marketplace.visualstudio.com/items?itemName=michota.one-monokai-michota" diff --git a/themes/one-monokai-python-flat.yaml b/themes/one-monokai-python-flat.yaml new file mode 100644 index 00000000..e541b14c --- /dev/null +++ b/themes/one-monokai-python-flat.yaml @@ -0,0 +1,52 @@ +name: "One Monokai Python Flat" +source: + marketplace_id: "NoThlnG.one-monokai-python" + version: "0.5.0" + installs: 20243 + rating: 5 + ratings: 2 + author: "nxht" + repo: "https://github.com/nxht/one-monokai-python" + url: "https://marketplace.visualstudio.com/items?itemName=NoThlnG.one-monokai-python" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 38.3 + magenta: 41.9 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 38.3 + brightMagenta: 9.5 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/one-monokai-shadow.yaml b/themes/one-monokai-shadow.yaml index 3ab4d3fc..0b441423 100644 --- a/themes/one-monokai-shadow.yaml +++ b/themes/one-monokai-shadow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "2A5F.one-monokai-shadow" version: "1.0.1" installs: 1990 + rating: 5 + ratings: 2 author: "2A5F" repo: "https://github.com/2A5F/one-monokai-shadow" url: "https://marketplace.visualstudio.com/items?itemName=2A5F.one-monokai-shadow" diff --git a/themes/one-monokai1.yaml b/themes/one-monokai1.yaml index 7efad37c..8a5152dc 100644 --- a/themes/one-monokai1.yaml +++ b/themes/one-monokai1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tnnmigga.tnnmigga-dark" version: "0.0.3" installs: 102 + rating: 0 + ratings: 0 author: "tnnmigga" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tnnmigga.tnnmigga-dark" diff --git a/themes/one-moon.yaml b/themes/one-moon.yaml index 52e65480..88697ff0 100644 --- a/themes/one-moon.yaml +++ b/themes/one-moon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ThisNameWasTaken.one-moon" version: "1.2.0" installs: 3356 + rating: 0 + ratings: 0 author: "ThisNameWasTaken" repo: "https://github.com/ThisNameWasTaken/one-moon" url: "https://marketplace.visualstudio.com/items?itemName=ThisNameWasTaken.one-moon" diff --git a/themes/one-more-dark.yaml b/themes/one-more-dark.yaml index a0f8f6e0..1d8af969 100644 --- a/themes/one-more-dark.yaml +++ b/themes/one-more-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.onemoredark" version: "0.0.4" installs: 360 + rating: 4 + ratings: 1 author: "Avetis" repo: "https://github.com/AvetisDN/onemoredark" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.onemoredark" diff --git a/themes/one-pauintxi-blue.yaml b/themes/one-pauintxi-blue.yaml new file mode 100644 index 00000000..35e27db1 --- /dev/null +++ b/themes/one-pauintxi-blue.yaml @@ -0,0 +1,52 @@ +name: "One Pauintxi Blue" +source: + marketplace_id: "marcosramos87.one-pauintxi-theme" + version: "2.0.0" + installs: 119 + rating: 0 + ratings: 0 + author: "Marcos Ramos Adsuara" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=marcosramos87.one-pauintxi-theme" +colors: + bg: "#202020" + fg: "#ECDBB5" + black: "#282828" + red: "#DF4649" + green: "#71B57D" + yellow: "#DB9A35" + blue: "#49A3A6" + magenta: "#9E4297" + cyan: "#49A3A6" + white: "#ECDBB5" + brightBlack: "#3A3A3C" + brightRed: "#F25255" + brightGreen: "#88CE91" + brightYellow: "#F0A846" + brightBlue: "#5CB8BB" + brightMagenta: "#B950AE" + brightCyan: "#5CB8BB" + brightWhite: "#F5E7C8" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.5 + black: 0 + red: 32.5 + green: 52 + yellow: 52.5 + blue: 43.6 + magenta: 21.7 + cyan: 43.6 + white: 83.5 + brightBlack: 0 + brightRed: 38.8 + brightGreen: 65.4 + brightYellow: 61.2 + brightBlue: 54.3 + brightMagenta: 30 + brightCyan: 54.3 + brightWhite: 90.8 diff --git a/themes/one-piece-dark.yaml b/themes/one-piece-dark.yaml index 37b95687..32a1829e 100644 --- a/themes/one-piece-dark.yaml +++ b/themes/one-piece-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LeonardoTozoni.one-piece-theme" version: "2.0.0" installs: 8061 + rating: 5 + ratings: 4 author: "Leonardo Tozoni" repo: "https://github.com/Leonardo-Tozoni/one-piece-theme" url: "https://marketplace.visualstudio.com/items?itemName=LeonardoTozoni.one-piece-theme" diff --git a/themes/one-piece-high-contrast.yaml b/themes/one-piece-high-contrast.yaml index f77efb6b..1b1aa076 100644 --- a/themes/one-piece-high-contrast.yaml +++ b/themes/one-piece-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TeteDeCactus.onepiece-dark-theme" version: "0.0.1" installs: 7812 + rating: 0 + ratings: 0 author: "TeteDeCactus" repo: "https://github.com/tetedecactus/VScode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=TeteDeCactus.onepiece-dark-theme" diff --git a/themes/one-piece-light.yaml b/themes/one-piece-light.yaml index b6910467..e50ccafd 100644 --- a/themes/one-piece-light.yaml +++ b/themes/one-piece-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LeonardoTozoni.one-piece-theme" version: "2.0.0" installs: 8061 + rating: 5 + ratings: 4 author: "Leonardo Tozoni" repo: "https://github.com/Leonardo-Tozoni/one-piece-theme" url: "https://marketplace.visualstudio.com/items?itemName=LeonardoTozoni.one-piece-theme" diff --git a/themes/one-piece-straw-hat-red.yaml b/themes/one-piece-straw-hat-red.yaml index bc09f0e1..4b30889d 100644 --- a/themes/one-piece-straw-hat-red.yaml +++ b/themes/one-piece-straw-hat-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LunaCode.anime-theme" version: "0.0.3" installs: 377 + rating: 5 + ratings: 3 author: "LunaCode" repo: "https://github.com/BuildXO/anime-theme-pack" url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" diff --git a/themes/onebitcode-theme.yaml b/themes/onebitcode-theme.yaml index 567104af..03859789 100644 --- a/themes/onebitcode-theme.yaml +++ b/themes/onebitcode-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guicastro13.onebitcode-theme" version: "0.0.5" installs: 2293 + rating: 5 + ratings: 2 author: "guicastro13" repo: "https://github.com/guicastro13/onebitcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" diff --git a/themes/onebitcode.yaml b/themes/onebitcode.yaml index dc84d624..1c5e414e 100644 --- a/themes/onebitcode.yaml +++ b/themes/onebitcode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OneBitCode.rockstar-theme" version: "0.0.1" installs: 296 + rating: 0 + ratings: 0 author: "OneBitCode" repo: "https://github.com/isaacpontes/onebitcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=OneBitCode.rockstar-theme" diff --git a/themes/onecalm.yaml b/themes/onecalm.yaml index 5ea9a3ba..15a3f652 100644 --- a/themes/onecalm.yaml +++ b/themes/onecalm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "volkovpishet.one-calm-theme" version: "0.2.5" installs: 2122 + rating: 5 + ratings: 4 author: "volkovpishet" repo: "https://github.com/volkovpishet/one-calm-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=volkovpishet.one-calm-theme" diff --git a/themes/onedark-nvim.yaml b/themes/onedark-nvim.yaml index cb00d1fc..7e05fa53 100644 --- a/themes/onedark-nvim.yaml +++ b/themes/onedark-nvim.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bartoszmaka95.onedark" version: "0.2.1" installs: 8582 + rating: 0 + ratings: 0 author: "bartoszmaka95" repo: "https://github.com/bartoszmaka/vscode-onedark" url: "https://marketplace.visualstudio.com/items?itemName=bartoszmaka95.onedark" diff --git a/themes/onedark-pro-suhayb-s-version-v2.yaml b/themes/onedark-pro-suhayb-s-version-v2.yaml index 05b533f7..86d0f658 100644 --- a/themes/onedark-pro-suhayb-s-version-v2.yaml +++ b/themes/onedark-pro-suhayb-s-version-v2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Suhaybu.onedarkpro-colorblind" version: "1.0.1" installs: 2280 + rating: 5 + ratings: 1 author: "Suhaybu" repo: "https://github.com/suhaybu/onedarkpro-colorblind" url: "https://marketplace.visualstudio.com/items?itemName=Suhaybu.onedarkpro-colorblind" diff --git a/themes/onedark-vibrant.yaml b/themes/onedark-vibrant.yaml new file mode 100644 index 00000000..253ad0d9 --- /dev/null +++ b/themes/onedark-vibrant.yaml @@ -0,0 +1,52 @@ +name: "OneDark Vibrant" +source: + marketplace_id: "onedark-vibrant-theme-dev.onedark-vibrant-vscode" + version: "1.2.1" + installs: 20 + rating: 0 + ratings: 0 + author: "onedark-vibrant-theme-dev" + repo: "https://github.com/aschoettler/onedark-vibrant" + url: "https://marketplace.visualstudio.com/items?itemName=onedark-vibrant-theme-dev.onedark-vibrant-vscode" +colors: + bg: "#1A1B26" + fg: "#DCDFE4" + black: "#11111C" + red: "#F7768E" + green: "#8CCF7E" + yellow: "#E0C787" + blue: "#6DB3F2" + magenta: "#C69AF7" + cyan: "#76E0EA" + white: "#DCDFE4" + brightBlack: "#4F586A" + brightRed: "#F7768E" + brightGreen: "#8CCF7E" + brightYellow: "#E0C787" + brightBlue: "#6DB3F2" + brightMagenta: "#C69AF7" + brightCyan: "#76E0EA" + brightWhite: "#F6F9FF" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 85.5 + black: 0 + red: 49.4 + green: 66.3 + yellow: 72.4 + blue: 56.6 + magenta: 56.5 + cyan: 76.8 + white: 85.5 + brightBlack: 15.6 + brightRed: 49.4 + brightGreen: 66.3 + brightYellow: 72.4 + brightBlue: 56.6 + brightMagenta: 56.5 + brightCyan: 76.8 + brightWhite: 102.2 diff --git a/themes/oneiroi-caffeine.yaml b/themes/oneiroi-caffeine.yaml index dd829a09..ad8aecc9 100644 --- a/themes/oneiroi-caffeine.yaml +++ b/themes/oneiroi-caffeine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OneiroiTheme.oneiroi-theme-vscode" version: "0.0.4" installs: 57 + rating: 5 + ratings: 1 author: "OneiroiTheme" repo: "https://github.com/OneiroiTheme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=OneiroiTheme.oneiroi-theme-vscode" diff --git a/themes/oneiroi-dream.yaml b/themes/oneiroi-dream.yaml index eca571f7..38e62704 100644 --- a/themes/oneiroi-dream.yaml +++ b/themes/oneiroi-dream.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OneiroiTheme.oneiroi-theme-vscode" version: "0.0.4" installs: 57 + rating: 5 + ratings: 1 author: "OneiroiTheme" repo: "https://github.com/OneiroiTheme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=OneiroiTheme.oneiroi-theme-vscode" diff --git a/themes/oneiroi-melatonin.yaml b/themes/oneiroi-melatonin.yaml index 194450a7..d5004271 100644 --- a/themes/oneiroi-melatonin.yaml +++ b/themes/oneiroi-melatonin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OneiroiTheme.oneiroi-theme-vscode" version: "0.0.4" installs: 57 + rating: 5 + ratings: 1 author: "OneiroiTheme" repo: "https://github.com/OneiroiTheme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=OneiroiTheme.oneiroi-theme-vscode" diff --git a/themes/onemonokai80s.yaml b/themes/onemonokai80s.yaml index cdd6441e..421f6edc 100644 --- a/themes/onemonokai80s.yaml +++ b/themes/onemonokai80s.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "axiomaticstudios.one-monokai-80s" version: "2.6.6" installs: 61824 + rating: 5 + ratings: 6 author: "Axiomatic Studios" repo: "https://github.com/marcelo-mason/one-monokai-80s" url: "https://marketplace.visualstudio.com/items?itemName=axiomaticstudios.one-monokai-80s" diff --git a/themes/onemonokai80sog.yaml b/themes/onemonokai80sog.yaml index a666c00f..a564b072 100644 --- a/themes/onemonokai80sog.yaml +++ b/themes/onemonokai80sog.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "axiomaticstudios.one-monokai-80s" version: "2.6.6" installs: 61824 + rating: 5 + ratings: 6 author: "Axiomatic Studios" repo: "https://github.com/marcelo-mason/one-monokai-80s" url: "https://marketplace.visualstudio.com/items?itemName=axiomaticstudios.one-monokai-80s" diff --git a/themes/onenv.yaml b/themes/onenv.yaml index 58babb71..f78efb02 100644 --- a/themes/onenv.yaml +++ b/themes/onenv.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "udan-jayanith-jayakody.onenv" version: "0.4.0" installs: 80 + rating: 5 + ratings: 1 author: "OneNv" repo: "https://github.com/udan-jayanith/onenv" url: "https://marketplace.visualstudio.com/items?itemName=udan-jayanith-jayakody.onenv" diff --git a/themes/onething.yaml b/themes/onething.yaml new file mode 100644 index 00000000..e67a5003 --- /dev/null +++ b/themes/onething.yaml @@ -0,0 +1,52 @@ +name: "OneThing" +source: + marketplace_id: "Entuent.onething-vscode-theme" + version: "0.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Entuent" + repo: "https://github.com/shmatt/onething-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Entuent.onething-vscode-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CF6400" + green: "#C8C833" + yellow: "#FFC086" + blue: "#333333" + magenta: "#999999" + cyan: "#666666" + white: "#CCCCCC" + brightBlack: "#1A1A1A" + brightRed: "#FF7B00" + brightGreen: "#4D4D4D" + brightYellow: "#FFC086" + brightBlue: "#333333" + brightMagenta: "#999999" + brightCyan: "#666666" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 36.5 + green: 69.8 + yellow: 76.1 + blue: 0 + magenta: 47.2 + cyan: 23 + white: 75.7 + brightBlack: 0 + brightRed: 52 + brightGreen: 13.1 + brightYellow: 76.1 + brightBlue: 0 + brightMagenta: 47.2 + brightCyan: 23 + brightWhite: 107.9 diff --git a/themes/oni-theme.yaml b/themes/oni-theme.yaml index 6e2bb831..aa146ef7 100644 --- a/themes/oni-theme.yaml +++ b/themes/oni-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "onikijo.oni-color-theme" version: "1.1.3" installs: 189 + rating: 0 + ratings: 0 author: "onikijo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=onikijo.oni-color-theme" diff --git a/themes/onlydark.yaml b/themes/onlydark.yaml index be0c304e..f82611c4 100644 --- a/themes/onlydark.yaml +++ b/themes/onlydark.yaml @@ -1,13 +1,15 @@ name: "OnlyDark" source: - marketplace_id: "YesCode.only-dark-theme" - version: "0.0.16" - installs: 383 + marketplace_id: "YesCode.inspiration" + version: "0.0.19" + installs: 1076 + rating: 5 + ratings: 1 author: "YesCode" - repo: "https://github.com/yesomac/only_dark" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" + repo: "https://github.com/yesomac/inspiration_themevsc" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" colors: - bg: "#16171B" + bg: "#1A1A1A" fg: "#EEFFFF" black: "#1D2021" red: "#FB543F" @@ -31,20 +33,20 @@ meta: hue: null pair: null contrast: - fg: 104.5 + fg: 104.2 black: 0 - red: 42 - green: 61 - yellow: 73 - blue: 47.5 - magenta: 19.5 - cyan: 49.4 - white: 47.2 - brightBlack: 18.6 - brightRed: 42 - brightGreen: 63.7 - brightYellow: 63.7 - brightBlue: 18.7 - brightMagenta: 19.5 - brightCyan: 49.4 - brightWhite: 98.8 + red: 41.6 + green: 60.6 + yellow: 72.7 + blue: 47.2 + magenta: 19.2 + cyan: 49.1 + white: 46.9 + brightBlack: 18.3 + brightRed: 41.6 + brightGreen: 63.4 + brightYellow: 63.4 + brightBlue: 18.4 + brightMagenta: 19.2 + brightCyan: 49.1 + brightWhite: 98.5 diff --git a/themes/onlydarklight.yaml b/themes/onlydarklight.yaml new file mode 100644 index 00000000..c259a52d --- /dev/null +++ b/themes/onlydarklight.yaml @@ -0,0 +1,50 @@ +name: "OnlyDarkLight" +source: + marketplace_id: "YesCode.only-dark-theme" + version: "0.0.16" + installs: 383 + author: "YesCode" + repo: "https://github.com/yesomac/only_dark" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" +colors: + bg: "#08090A" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#FFA500" + brightYellow: "#FFA500" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.5 + black: 0 + red: 42.9 + green: 61.9 + yellow: 74 + blue: 48.4 + magenta: 20.4 + cyan: 50.3 + white: 48.1 + brightBlack: 19.5 + brightRed: 42.9 + brightGreen: 64.6 + brightYellow: 64.6 + brightBlue: 19.6 + brightMagenta: 20.4 + brightCyan: 50.3 + brightWhite: 99.8 diff --git a/themes/onora.yaml b/themes/onora.yaml index 152c5ae9..cad7bb1f 100644 --- a/themes/onora.yaml +++ b/themes/onora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NolanJenko.abelian" version: "0.14.0" installs: 389 + rating: 0 + ratings: 0 author: "Robert Jenko" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NolanJenko.abelian" diff --git a/themes/onyx-core.yaml b/themes/onyx-core.yaml index cd2dddc7..5ca1f1fb 100644 --- a/themes/onyx-core.yaml +++ b/themes/onyx-core.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zemd.zemd-theme-dark" version: "0.9.0" installs: 293 + rating: 5 + ratings: 1 author: "Dmytro Zelenetskyi" repo: "https://github.com/zemd/vscode-theme-zemd" url: "https://marketplace.visualstudio.com/items?itemName=zemd.zemd-theme-dark" diff --git a/themes/onyx-ghost.yaml b/themes/onyx-ghost.yaml index 7d293096..b41e2aab 100644 --- a/themes/onyx-ghost.yaml +++ b/themes/onyx-ghost.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zemd.zemd-theme-dark" version: "0.9.0" installs: 293 + rating: 5 + ratings: 1 author: "Dmytro Zelenetskyi" repo: "https://github.com/zemd/vscode-theme-zemd" url: "https://marketplace.visualstudio.com/items?itemName=zemd.zemd-theme-dark" diff --git a/themes/onyx-theme-color.yaml b/themes/onyx-theme-color.yaml index 14a932f6..82dbb36c 100644 --- a/themes/onyx-theme-color.yaml +++ b/themes/onyx-theme-color.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dev-onyx.onyx-theme" version: "1.2.0" installs: 72 + rating: 5 + ratings: 1 author: "dev-onyx" repo: "https://github.com/dev-onyx/onyx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dev-onyx.onyx-theme" diff --git a/themes/onyx.yaml b/themes/onyx.yaml index c85a38bb..ca933b26 100644 --- a/themes/onyx.yaml +++ b/themes/onyx.yaml @@ -1,50 +1,52 @@ name: "Onyx" source: - marketplace_id: "doay.onyx" - version: "0.0.4" - installs: 1235 - author: "Doa Yakut Kilic" - repo: "https://github.com/doayakut/onyx" - url: "https://marketplace.visualstudio.com/items?itemName=doay.onyx" + marketplace_id: "Priyaank.ether" + version: "2.0.1" + installs: 55 + rating: 0 + ratings: 0 + author: "Priyaank" + repo: "https://github.com/PRIYAANK2510/Ether" + url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.ether" colors: - bg: "#222222" - fg: "#CCCCCC" - black: "#000000" - red: "#AA3731" - green: "#448C27" - yellow: "#CB9000" - blue: "#325CC0" - magenta: "#7A3E9D" - cyan: "#0083B2" - white: "#CCCCCC" - brightBlack: "#777777" - brightRed: "#F05050" - brightGreen: "#60CB00" - brightYellow: "#FFBC5D" - brightBlue: "#007ACC" - brightMagenta: "#E64CE6" - brightCyan: "#00AACB" - brightWhite: "#CCCCCC" + bg: "#1F1F1F" + fg: "#808080" + black: "#181818" + red: "#A94B67" + green: "#499F71" + yellow: "#B4927A" + blue: "#73B3E4" + magenta: "#556FB6" + cyan: "#83918E" + white: "#DFDFDF" + brightBlack: "#707070" + brightRed: "#C15D7D" + brightGreen: "#5AB585" + brightYellow: "#CAA78E" + brightBlue: "#8BC4ED" + brightMagenta: "#6A83C7" + brightCyan: "#9AA8A5" + brightWhite: "#F0F0F0" meta: mode: "dark" - accent: "pink" + accent: "red" hue: null pair: null contrast: - fg: 73.2 + fg: 32.8 black: 0 - red: 18.8 - green: 30.7 - yellow: 46 - blue: 19.3 - magenta: 15.8 - cyan: 30.2 - white: 73.2 - brightBlack: 28.1 - brightRed: 37.6 - brightGreen: 59.4 - brightYellow: 71.3 - brightBlue: 28.6 - brightMagenta: 41.1 - brightCyan: 46.8 - brightWhite: 73.2 + red: 23.4 + green: 40.3 + yellow: 45.1 + blue: 55.7 + magenta: 26.3 + cyan: 39.6 + white: 85.3 + brightBlack: 25.4 + brightRed: 32 + brightGreen: 51 + brightYellow: 56.3 + brightBlue: 65.2 + brightMagenta: 35.3 + brightCyan: 51.5 + brightWhite: 96.1 diff --git a/themes/oolory-color-theme.yaml b/themes/oolory-color-theme.yaml new file mode 100644 index 00000000..9e29a633 --- /dev/null +++ b/themes/oolory-color-theme.yaml @@ -0,0 +1,52 @@ +name: "oolory-color-theme" +source: + marketplace_id: "gtwsky.oolory" + version: "2.0.0" + installs: 2116 + rating: 5 + ratings: 1 + author: "Michał Gutowski" + repo: "https://gitlab.com/gtwsky_/oolory" + url: "https://marketplace.visualstudio.com/items?itemName=gtwsky.oolory" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#FF0032" + green: "#008000" + yellow: "#D7AF00" + blue: "#004BFF" + magenta: "#7D46FC" + cyan: "#00AFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0032" + brightGreen: "#008000" + brightYellow: "#D7AF00" + brightBlue: "#004BFF" + brightMagenta: "#7D46FC" + brightCyan: "#00AFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 63.9 + green: 74.6 + yellow: 40.7 + blue: 78.9 + magenta: 74 + cyan: 47.4 + white: 0 + brightBlack: 106 + brightRed: 63.9 + brightGreen: 74.6 + brightYellow: 40.7 + brightBlue: 78.9 + brightMagenta: 74 + brightCyan: 47.4 + brightWhite: 0 diff --git a/themes/oolory-dark-color-theme.yaml b/themes/oolory-dark-color-theme.yaml index 35139f77..30384240 100644 --- a/themes/oolory-dark-color-theme.yaml +++ b/themes/oolory-dark-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gtwsky.oolory" version: "2.0.0" installs: 2116 + rating: 5 + ratings: 1 author: "Michał Gutowski" repo: "https://gitlab.com/gtwsky_/oolory" url: "https://marketplace.visualstudio.com/items?itemName=gtwsky.oolory" diff --git a/themes/openbase.yaml b/themes/openbase.yaml index daf4f0ec..86eb5219 100644 --- a/themes/openbase.yaml +++ b/themes/openbase.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "securisec.hapsida-securisec" version: "0.0.30" installs: 226 + rating: 5 + ratings: 1 author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" diff --git a/themes/openspace-dark-flat.yaml b/themes/openspace-dark-flat.yaml index 6756682c..8ca1fec4 100644 --- a/themes/openspace-dark-flat.yaml +++ b/themes/openspace-dark-flat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OpenSpace.openspace-theme" version: "1.2.41" installs: 256 + rating: 5 + ratings: 2 author: "Open Space Technology" repo: "https://github.com/hunqng/openspace-theme" url: "https://marketplace.visualstudio.com/items?itemName=OpenSpace.openspace-theme" diff --git a/themes/openspace-dark.yaml b/themes/openspace-dark.yaml index ec4283bc..f4789ae3 100644 --- a/themes/openspace-dark.yaml +++ b/themes/openspace-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OpenSpace.openspace-theme" version: "1.2.41" installs: 256 + rating: 5 + ratings: 2 author: "Open Space Technology" repo: "https://github.com/hunqng/openspace-theme" url: "https://marketplace.visualstudio.com/items?itemName=OpenSpace.openspace-theme" diff --git a/themes/openspace.yaml b/themes/openspace.yaml index 129a3113..842dff80 100644 --- a/themes/openspace.yaml +++ b/themes/openspace.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OpenSpace.openspace-theme" version: "1.2.41" installs: 256 + rating: 5 + ratings: 2 author: "Open Space Technology" repo: "https://github.com/hunqng/openspace-theme" url: "https://marketplace.visualstudio.com/items?itemName=OpenSpace.openspace-theme" diff --git a/themes/opmono-odarkp.yaml b/themes/opmono-odarkp.yaml new file mode 100644 index 00000000..50b1a090 --- /dev/null +++ b/themes/opmono-odarkp.yaml @@ -0,0 +1,52 @@ +name: "opmono odarkp" +source: + marketplace_id: "russellmars.opmono-odarkp" + version: "0.0.2" + installs: 538 + rating: 0 + ratings: 0 + author: "russellmars" + repo: "https://github.com/russellmars/opmono-odarkp" + url: "https://marketplace.visualstudio.com/items?itemName=russellmars.opmono-odarkp" +colors: + bg: "#282C34" + fg: "#C8C8C8" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 69.1 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 38.3 + brightMagenta: 9.5 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/optimus-dark.yaml b/themes/optimus-dark.yaml index b067921e..c7437605 100644 --- a/themes/optimus-dark.yaml +++ b/themes/optimus-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "optsystems.optimus-dark-vscode-theme" version: "0.0.4" installs: 416 + rating: 0 + ratings: 0 author: "Opt Systems" repo: "https://github.com/opt-systems/optimus-dark-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=optsystems.optimus-dark-vscode-theme" diff --git a/themes/oracle-vision.yaml b/themes/oracle-vision.yaml new file mode 100644 index 00000000..93a3ea27 --- /dev/null +++ b/themes/oracle-vision.yaml @@ -0,0 +1,52 @@ +name: "Oracle-Vision" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#0E1A1F" + fg: "#45E8E8" + black: "#0E1A1F" + red: "#F14444" + green: "#29C3A0" + yellow: "#D29922" + blue: "#1DB8CE" + magenta: "#1DB8CE" + cyan: "#29C3A0" + white: "#45E8E8" + brightBlack: "#0E1A1F" + brightRed: "#F14444" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#1DB8CE" + brightMagenta: "#1DB8CE" + brightCyan: "#29C3A0" + brightWhite: "#45E8E8" +meta: + mode: "dark" + accent: "orange" + hue: 226 + pair: null + contrast: + fg: 78.9 + black: 0 + red: 37.1 + green: 57.5 + yellow: 51.5 + blue: 54.4 + magenta: 54.4 + cyan: 57.5 + white: 78.9 + brightBlack: 0 + brightRed: 37.1 + brightGreen: 57.5 + brightYellow: 51.5 + brightBlue: 54.4 + brightMagenta: 54.4 + brightCyan: 57.5 + brightWhite: 78.9 diff --git a/themes/oradia.yaml b/themes/oradia.yaml index cae2bafd..12716851 100644 --- a/themes/oradia.yaml +++ b/themes/oradia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Hansespinosa2.oradia-theme" version: "0.1.2" installs: 17 + rating: 5 + ratings: 1 author: "Hansespinosa2" repo: "https://github.com/Hansespinosa2/oradia-theme" url: "https://marketplace.visualstudio.com/items?itemName=Hansespinosa2.oradia-theme" diff --git a/themes/oragethemedark.yaml b/themes/oragethemedark.yaml index caaaf3b6..d664cf01 100644 --- a/themes/oragethemedark.yaml +++ b/themes/oragethemedark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daniloBrayann.blue-theme-dark" version: "0.0.37" installs: 454 + rating: 5 + ratings: 1 author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.blue-theme-dark" diff --git a/themes/orange-coral.yaml b/themes/orange-coral.yaml index 62efb382..c672bc9c 100644 --- a/themes/orange-coral.yaml +++ b/themes/orange-coral.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FinnyComet.coral-ico" version: "1.6.0" installs: 545 + rating: 0 + ratings: 0 author: "Lorenzo" repo: "https://github.com/FinnyComet32985/Coral-theme-for-vs-code" url: "https://marketplace.visualstudio.com/items?itemName=FinnyComet.coral-ico" diff --git a/themes/orange-dark.yaml b/themes/orange-dark.yaml index 69b959c6..15c94174 100644 --- a/themes/orange-dark.yaml +++ b/themes/orange-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RaphtikGHG.orange-dark" version: "0.0.1" installs: 879 + rating: 0 + ratings: 0 author: "RaphtikGHG" repo: null url: "https://marketplace.visualstudio.com/items?itemName=RaphtikGHG.orange-dark" diff --git a/themes/orange-ocean.yaml b/themes/orange-ocean.yaml new file mode 100644 index 00000000..c205184b --- /dev/null +++ b/themes/orange-ocean.yaml @@ -0,0 +1,52 @@ +name: "Orange Ocean" +source: + marketplace_id: "enbonnet.orange-ocean" + version: "0.0.4" + installs: 161 + rating: 0 + ratings: 0 + author: "Ender Bonnet" + repo: "https://github.com/enBonnet/Orange-ocean-theme" + url: "https://marketplace.visualstudio.com/items?itemName=enbonnet.orange-ocean" +colors: + bg: "#040D10" + fg: "#F8F4F9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 218 + pair: null + contrast: + fg: 101.2 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/orange.yaml b/themes/orange.yaml index 12ec4e29..1d6f2d4c 100644 --- a/themes/orange.yaml +++ b/themes/orange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "natecrow.consonance-themes" version: "1.2.0" installs: 317 + rating: 0 + ratings: 0 author: "natecrow" repo: "https://github.com/natecrow/consonance-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" diff --git a/themes/orangefox-dark.yaml b/themes/orangefox-dark.yaml index 875df8a7..a6ce784c 100644 --- a/themes/orangefox-dark.yaml +++ b/themes/orangefox-dark.yaml @@ -2,7 +2,9 @@ name: "OrangeFox Dark" source: marketplace_id: "quzma.orangefox" version: "0.7.0" - installs: 182 + installs: 183 + rating: 0 + ratings: 0 author: "Darko Kuzmanovic" repo: "https://github.com/DarkoKuzmanovic/orangefox" url: "https://marketplace.visualstudio.com/items?itemName=quzma.orangefox" diff --git a/themes/orangefox-light.yaml b/themes/orangefox-light.yaml index 30319072..564823f5 100644 --- a/themes/orangefox-light.yaml +++ b/themes/orangefox-light.yaml @@ -2,7 +2,9 @@ name: "OrangeFox Light" source: marketplace_id: "quzma.orangefox" version: "0.7.0" - installs: 182 + installs: 183 + rating: 0 + ratings: 0 author: "Darko Kuzmanovic" repo: "https://github.com/DarkoKuzmanovic/orangefox" url: "https://marketplace.visualstudio.com/items?itemName=quzma.orangefox" diff --git a/themes/orangelemon.yaml b/themes/orangelemon.yaml index e5af269a..9e1f484c 100644 --- a/themes/orangelemon.yaml +++ b/themes/orangelemon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "trisdo687.orangelemon" version: "0.0.2" installs: 145 + rating: 0 + ratings: 0 author: "trisdo687" repo: "https://github.com/tsdenouden/orangelemonTheme" url: "https://marketplace.visualstudio.com/items?itemName=trisdo687.orangelemon" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 40.7 black: 0 diff --git a/themes/orangey-darker-1.yaml b/themes/orangey-darker-1.yaml index b0fd09b1..a6c13ee0 100644 --- a/themes/orangey-darker-1.yaml +++ b/themes/orangey-darker-1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ricafolio.orangey-vscode-theme" version: "1.1.1" installs: 973 + rating: 5 + ratings: 2 author: "ricafolio" repo: "https://github.com/ricafolio/orangey-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" diff --git a/themes/orangey-darker-2.yaml b/themes/orangey-darker-2.yaml index 3269b81c..9821a1bd 100644 --- a/themes/orangey-darker-2.yaml +++ b/themes/orangey-darker-2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ricafolio.orangey-vscode-theme" version: "1.1.1" installs: 973 + rating: 5 + ratings: 2 author: "ricafolio" repo: "https://github.com/ricafolio/orangey-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" diff --git a/themes/orangey-lighter-1.yaml b/themes/orangey-lighter-1.yaml index 3083d3b1..f937c806 100644 --- a/themes/orangey-lighter-1.yaml +++ b/themes/orangey-lighter-1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ricafolio.orangey-vscode-theme" version: "1.1.1" installs: 973 + rating: 5 + ratings: 2 author: "ricafolio" repo: "https://github.com/ricafolio/orangey-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" diff --git a/themes/orangey-lighter-2.yaml b/themes/orangey-lighter-2.yaml index 744032c2..e1f8c897 100644 --- a/themes/orangey-lighter-2.yaml +++ b/themes/orangey-lighter-2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ricafolio.orangey-vscode-theme" version: "1.1.1" installs: 973 + rating: 5 + ratings: 2 author: "ricafolio" repo: "https://github.com/ricafolio/orangey-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" diff --git a/themes/orangey.yaml b/themes/orangey.yaml index cf0eeb48..6efcf37a 100644 --- a/themes/orangey.yaml +++ b/themes/orangey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ricafolio.orangey-vscode-theme" version: "1.1.1" installs: 973 + rating: 5 + ratings: 2 author: "ricafolio" repo: "https://github.com/ricafolio/orangey-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" diff --git a/themes/orbi-blue.yaml b/themes/orbi-blue.yaml index 2d1aedaa..d2904f54 100644 --- a/themes/orbi-blue.yaml +++ b/themes/orbi-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anishde12020.orbi" version: "1.4.0" installs: 1051 + rating: 0 + ratings: 0 author: "AnishDe12020" repo: "https://github.com/AnishDe12020/orbi" url: "https://marketplace.visualstudio.com/items?itemName=anishde12020.orbi" diff --git a/themes/orbi-red.yaml b/themes/orbi-red.yaml new file mode 100644 index 00000000..d6e93542 --- /dev/null +++ b/themes/orbi-red.yaml @@ -0,0 +1,52 @@ +name: "Orbi Red" +source: + marketplace_id: "anishde12020.orbi" + version: "1.4.0" + installs: 1051 + rating: 0 + ratings: 0 + author: "AnishDe12020" + repo: "https://github.com/AnishDe12020/orbi" + url: "https://marketplace.visualstudio.com/items?itemName=anishde12020.orbi" +colors: + bg: "#000000" + fg: "#868690" + black: "#000000" + red: "#FF8888" + green: "#A4FF85" + yellow: "#FFCB86" + blue: "#86D3FF" + magenta: "#D4A8FF" + cyan: "#A0FFDF" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#FD7279" + brightGreen: "#CDFF68" + brightYellow: "#FFA939" + brightBlue: "#48BCFF" + brightMagenta: "#BC78FF" + brightCyan: "#58FFC7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 38 + black: 0 + red: 57.2 + green: 93.5 + yellow: 80.5 + blue: 74.5 + magenta: 65.4 + cyan: 96 + white: 72.7 + brightBlack: 23.9 + brightRed: 50.6 + brightGreen: 96.9 + brightYellow: 66.3 + brightBlue: 61.1 + brightMagenta: 47 + brightCyan: 90.9 + brightWhite: 107.9 diff --git a/themes/orca.yaml b/themes/orca.yaml index 962d8a2d..0ccb7e65 100644 --- a/themes/orca.yaml +++ b/themes/orca.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ssera-themes" version: "2.0.2" installs: 334 + rating: 0 + ratings: 0 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" diff --git a/themes/origami-theme.yaml b/themes/origami-theme.yaml index 81464d62..8ef15c7f 100644 --- a/themes/origami-theme.yaml +++ b/themes/origami-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "febriadji.origami-theme" version: "0.0.5" installs: 1262 + rating: 5 + ratings: 1 author: "febriadji" repo: "git+https://github.com/febriadj/vscode-origami-theme" url: "https://marketplace.visualstudio.com/items?itemName=febriadji.origami-theme" diff --git a/themes/origamid.yaml b/themes/origamid.yaml index cbdb52cb..d3a45e7d 100644 --- a/themes/origamid.yaml +++ b/themes/origamid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "origamid.origamid-theme" version: "1.1.7" installs: 63070 + rating: 5 + ratings: 5 author: "Origamid" repo: "https://github.com/origamid/origamid-vscode" url: "https://marketplace.visualstudio.com/items?itemName=origamid.origamid-theme" diff --git a/themes/original-theme.yaml b/themes/original-theme.yaml index 4a770706..0eb16036 100644 --- a/themes/original-theme.yaml +++ b/themes/original-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RLabsInc.rlabs-theme-collection" version: "0.1.4" installs: 181 + rating: 0 + ratings: 0 author: "RLabs Inc." repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 101 black: 0 diff --git a/themes/orion-black-fork.yaml b/themes/orion-black-fork.yaml new file mode 100644 index 00000000..3354c216 --- /dev/null +++ b/themes/orion-black-fork.yaml @@ -0,0 +1,52 @@ +name: "Orion-Black - Fork" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29917 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/orpheux.yaml b/themes/orpheux.yaml index 07bdd3b0..7af4c75f 100644 --- a/themes/orpheux.yaml +++ b/themes/orpheux.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "orpheux666.Orpheux" version: "0.0.2" installs: 26 + rating: 0 + ratings: 0 author: "orpheux666" repo: "https://github.com/orpheux/orpheux_vsc_theme" url: "https://marketplace.visualstudio.com/items?itemName=orpheux666.Orpheux" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 277 + pair: null contrast: fg: 99.5 black: 0 diff --git a/themes/orw.yaml b/themes/orw.yaml new file mode 100644 index 00000000..2ad7ac04 --- /dev/null +++ b/themes/orw.yaml @@ -0,0 +1,52 @@ +name: "orw" +source: + marketplace_id: "obsqrbtz.orw-colorscheme" + version: "0.0.2" + installs: 105 + rating: 0 + ratings: 0 + author: "obsqrbtz" + repo: "https://github.com/obsqrbtz/orw-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=obsqrbtz.orw-colorscheme" +colors: + bg: "#0E1414" + fg: "#ACBFB5" + black: "#494A4C" + red: "#785A5A" + green: "#807E60" + yellow: "#DBBD7D" + blue: "#4C5359" + magenta: "#8C7681" + cyan: "#608985" + white: "#999999" + brightBlack: "#707070" + brightRed: "#B2908A" + brightGreen: "#B5BC6D" + brightYellow: "#877F69" + brightBlue: "#81A2BE" + brightMagenta: "#CCA8BB" + brightCyan: "#9FC2C2" + brightWhite: "#B0B0B0" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 64.8 + black: 11.3 + red: 20.5 + green: 32.5 + yellow: 68.2 + blue: 14.3 + magenta: 32.2 + cyan: 34.8 + white: 46.5 + brightBlack: 26.7 + brightRed: 45.9 + brightGreen: 62.4 + brightYellow: 33.8 + brightBlue: 49.2 + brightMagenta: 60 + brightCyan: 65.3 + brightWhite: 58.9 diff --git a/themes/orwellian-nightmare.yaml b/themes/orwellian-nightmare.yaml index fa2d06f0..f4745caa 100644 --- a/themes/orwellian-nightmare.yaml +++ b/themes/orwellian-nightmare.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YovenzorSingh.orwellian-nightmare" version: "1.0.0" installs: 41 + rating: 5 + ratings: 1 author: "Yovenzor Singh" repo: "https://github.com/Yovenzor/Orwellian-Nightmare" url: "https://marketplace.visualstudio.com/items?itemName=YovenzorSingh.orwellian-nightmare" diff --git a/themes/osaka-solarized-pro-dark.yaml b/themes/osaka-solarized-pro-dark.yaml index aaeaf8b3..49ea3772 100644 --- a/themes/osaka-solarized-pro-dark.yaml +++ b/themes/osaka-solarized-pro-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AashishKumar-3002.osaka-solarized-pro" version: "1.0.2" installs: 551 + rating: 0 + ratings: 0 author: "AashishKumar-3002" repo: "https://github.com/AashishKumar-3002/osaka-solarized-pro-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AashishKumar-3002.osaka-solarized-pro" diff --git a/themes/osaka-solarized-pro-light.yaml b/themes/osaka-solarized-pro-light.yaml index 42f8d733..f09753a1 100644 --- a/themes/osaka-solarized-pro-light.yaml +++ b/themes/osaka-solarized-pro-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AashishKumar-3002.osaka-solarized-pro" version: "1.0.2" installs: 551 + rating: 0 + ratings: 0 author: "AashishKumar-3002" repo: "https://github.com/AashishKumar-3002/osaka-solarized-pro-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AashishKumar-3002.osaka-solarized-pro" diff --git a/themes/osaka-solarized-pro-monokai-storm.yaml b/themes/osaka-solarized-pro-monokai-storm.yaml index c9d24415..0908372f 100644 --- a/themes/osaka-solarized-pro-monokai-storm.yaml +++ b/themes/osaka-solarized-pro-monokai-storm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AashishKumar-3002.osaka-solarized-pro" version: "1.0.2" installs: 551 + rating: 0 + ratings: 0 author: "AashishKumar-3002" repo: "https://github.com/AashishKumar-3002/osaka-solarized-pro-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AashishKumar-3002.osaka-solarized-pro" diff --git a/themes/osean-boy.yaml b/themes/osean-boy.yaml new file mode 100644 index 00000000..3071a747 --- /dev/null +++ b/themes/osean-boy.yaml @@ -0,0 +1,52 @@ +name: "Osean Boy" +source: + marketplace_id: "Sreehari521.osean-boy" + version: "1.0.0" + installs: 83 + rating: 0 + ratings: 0 + author: "Sreehari521" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Sreehari521.osean-boy" +colors: + bg: "#111326" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + pair: null + contrast: + fg: 107.1 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 30 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.8 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/oslo-dark.yaml b/themes/oslo-dark.yaml index 3d4500da..09fb50bf 100644 --- a/themes/oslo-dark.yaml +++ b/themes/oslo-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lazerai.oslo-dark" version: "1.4.0" installs: 27 + rating: 0 + ratings: 0 author: "Lazerai" repo: "https://github.com/LAZERAI/oslo-dark" url: "https://marketplace.visualstudio.com/items?itemName=lazerai.oslo-dark" diff --git a/themes/osmoz-dark.yaml b/themes/osmoz-dark.yaml index 2dc243fe..c900efaa 100644 --- a/themes/osmoz-dark.yaml +++ b/themes/osmoz-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ArthurRasera.osmoz" version: "1.1.1" installs: 59 + rating: 5 + ratings: 2 author: "Arthur Rasera" repo: "https://github.com/Raseraa0/osmoz-theme" url: "https://marketplace.visualstudio.com/items?itemName=ArthurRasera.osmoz" diff --git a/themes/osx9.yaml b/themes/osx9.yaml index d45b2d32..ff533556 100644 --- a/themes/osx9.yaml +++ b/themes/osx9.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "novidash.classicplatinum" version: "0.0.1" installs: 277 + rating: 0 + ratings: 0 author: "novidash" repo: "https://github.com/skeltonmod/OSX9VSCODE" url: "https://marketplace.visualstudio.com/items?itemName=novidash.classicplatinum" diff --git a/themes/otakon-contrast.yaml b/themes/otakon-contrast.yaml index c8fbf095..b25e5f3d 100644 --- a/themes/otakon-contrast.yaml +++ b/themes/otakon-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/otakon-light.yaml b/themes/otakon-light.yaml index c2c0fd49..0d0de0a5 100644 --- a/themes/otakon-light.yaml +++ b/themes/otakon-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/otakon.yaml b/themes/otakon.yaml index f2d1b4b5..29a8c2c5 100644 --- a/themes/otakon.yaml +++ b/themes/otakon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/outer-spacemacs.yaml b/themes/outer-spacemacs.yaml new file mode 100644 index 00000000..7031c0f0 --- /dev/null +++ b/themes/outer-spacemacs.yaml @@ -0,0 +1,52 @@ +name: "outer-spacemacs" +source: + marketplace_id: "lucaspin.outer-spacemacs" + version: "0.0.1" + installs: 391 + rating: 0 + ratings: 0 + author: "Lucas Pinheiro" + repo: "https://github.com/lucaspin/outer-spacemacs" + url: "https://marketplace.visualstudio.com/items?itemName=lucaspin.outer-spacemacs" +colors: + bg: "#212026" + fg: "#CBC1D5" + black: "#B2B2B2" + red: "#BA2F59" + green: "#67B11D" + yellow: "#B1951D" + blue: "#3A81C3" + magenta: "#800080" + cyan: "#21B8C7" + white: "#B2B2B2" + brightBlack: "#B2B2B2" + brightRed: "#F2241F" + brightGreen: "#86DC2F" + brightYellow: "#B1951D" + brightBlue: "#D7DFFF" + brightMagenta: "#A31DB1" + brightCyan: "#28DEF0" + brightWhite: "#B2B2B2" +meta: + mode: "dark" + accent: "orange" + hue: 293 + pair: null + contrast: + fg: 69.1 + black: 58.4 + red: 21.9 + green: 48.2 + yellow: 44.1 + blue: 31.5 + magenta: 10.4 + cyan: 53 + white: 58.4 + brightBlack: 58.4 + brightRed: 33 + brightGreen: 70.2 + brightYellow: 44.1 + brightBlue: 85.6 + brightMagenta: 20.1 + brightCyan: 72.8 + brightWhite: 58.4 diff --git a/themes/outrun-dark.yaml b/themes/outrun-dark.yaml index 472520f6..cfcd9531 100644 --- a/themes/outrun-dark.yaml +++ b/themes/outrun-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/overflow-contrast.yaml b/themes/overflow-contrast.yaml index 6db257b9..b5269aee 100644 --- a/themes/overflow-contrast.yaml +++ b/themes/overflow-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/overflow-light.yaml b/themes/overflow-light.yaml index e273a8bf..8bfeb71b 100644 --- a/themes/overflow-light.yaml +++ b/themes/overflow-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/overflow.yaml b/themes/overflow.yaml index 29c0ae09..b2be901d 100644 --- a/themes/overflow.yaml +++ b/themes/overflow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/overload.yaml b/themes/overload.yaml index ef60fa01..3d95dc83 100644 --- a/themes/overload.yaml +++ b/themes/overload.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "0xp.overload" version: "1.1.8" installs: 311 + rating: 0 + ratings: 0 author: "0xp" repo: "https://github.com/panukettu/vscode-overload" url: "https://marketplace.visualstudio.com/items?itemName=0xp.overload" diff --git a/themes/overnight.yaml b/themes/overnight.yaml new file mode 100644 index 00000000..0b2539d5 --- /dev/null +++ b/themes/overnight.yaml @@ -0,0 +1,52 @@ +name: "Overnight" +source: + marketplace_id: "cev.overnight" + version: "1.8.4" + installs: 25656 + rating: 5 + ratings: 9 + author: "cev" + repo: "https://github.com/cevr/overnight" + url: "https://marketplace.visualstudio.com/items?itemName=cev.overnight" +colors: + bg: "#0E1729" + fg: "#D6D9E0" + black: "#2E384D" + red: "#F87086" + green: "#BBD99E" + yellow: "#ECC48D" + blue: "#8EACE3" + magenta: "#C792EA" + cyan: "#92D8E6" + white: "#D6D9E0" + brightBlack: "#3D485F" + brightRed: "#FFB3B3" + brightGreen: "#C9E2AF" + brightYellow: "#ECC48D" + brightBlue: "#ACD1F5" + brightMagenta: "#CCB3FF" + brightCyan: "#A5E0EC" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "red" + hue: 263 + pair: null + contrast: + fg: 82.4 + black: 0 + red: 48.4 + green: 76.7 + yellow: 73.6 + blue: 55.9 + magenta: 53.7 + cyan: 75.2 + white: 82.4 + brightBlack: 10.2 + brightRed: 71.4 + brightGreen: 82.9 + brightYellow: 73.6 + brightBlue: 75.2 + brightMagenta: 67.2 + brightCyan: 80.8 + brightWhite: 98.3 diff --git a/themes/owlet-default.yaml b/themes/owlet-default.yaml index dd90e236..7e763256 100644 --- a/themes/owlet-default.yaml +++ b/themes/owlet-default.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.owlet" version: "0.1.22" installs: 10596 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" diff --git a/themes/owlet-material.yaml b/themes/owlet-material.yaml index ad060296..09e8f8e1 100644 --- a/themes/owlet-material.yaml +++ b/themes/owlet-material.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.owlet" version: "0.1.22" installs: 10596 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" diff --git a/themes/owlet-mono.yaml b/themes/owlet-mono.yaml index 803e1fa9..a30423e2 100644 --- a/themes/owlet-mono.yaml +++ b/themes/owlet-mono.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.owlet" version: "0.1.22" installs: 10596 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" diff --git a/themes/owlet-outrun.yaml b/themes/owlet-outrun.yaml index 0e2a0cbb..af952795 100644 --- a/themes/owlet-outrun.yaml +++ b/themes/owlet-outrun.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.owlet" version: "0.1.22" installs: 10596 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" diff --git a/themes/owlet-solarized.yaml b/themes/owlet-solarized.yaml index d3ca2b53..cff756a8 100644 --- a/themes/owlet-solarized.yaml +++ b/themes/owlet-solarized.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.owlet" version: "0.1.22" installs: 10596 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" diff --git a/themes/owokai-hard.yaml b/themes/owokai-hard.yaml index 933f45c8..3516c6a0 100644 --- a/themes/owokai-hard.yaml +++ b/themes/owokai-hard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fluffyfen.owokai-theme" version: "1.0.3" installs: 871 + rating: 5 + ratings: 2 author: "fluffyfen" repo: "https://github.com/toiletbril/Owokai" url: "https://marketplace.visualstudio.com/items?itemName=fluffyfen.owokai-theme" diff --git a/themes/owokai.yaml b/themes/owokai.yaml index 8cd00088..ab8aa0cc 100644 --- a/themes/owokai.yaml +++ b/themes/owokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fluffyfen.owokai-theme" version: "1.0.3" installs: 871 + rating: 5 + ratings: 2 author: "fluffyfen" repo: "https://github.com/toiletbril/Owokai" url: "https://marketplace.visualstudio.com/items?itemName=fluffyfen.owokai-theme" diff --git a/themes/oxocarbon-5.yaml b/themes/oxocarbon-5.yaml index f38c063c..23aa7773 100644 --- a/themes/oxocarbon-5.yaml +++ b/themes/oxocarbon-5.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yrumad.oxocarbon-5" version: "0.1.1" installs: 1226 + rating: 3 + ratings: 1 author: "yrumad" repo: "https://github.com/DaKili/oxocarbon-5" url: "https://marketplace.visualstudio.com/items?itemName=yrumad.oxocarbon-5" diff --git a/themes/oxocarbon-dark.yaml b/themes/oxocarbon-dark.yaml new file mode 100644 index 00000000..0ad26521 --- /dev/null +++ b/themes/oxocarbon-dark.yaml @@ -0,0 +1,52 @@ +name: "Oxocarbon Dark" +source: + marketplace_id: "NyoomEngineering.oxocarbon-vscode" + version: "1.2.0" + installs: 1561 + rating: 5 + ratings: 1 + author: "Nyoom Engineering" + repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" +colors: + bg: "#161616" + fg: "#F2F4F8" + black: "#161616" + red: "#78A9FF" + green: "#FF7EB6" + yellow: "#42BE65" + blue: "#08BDBA" + magenta: "#82CFFF" + cyan: "#33B1FF" + white: "#DDE1E6" + brightBlack: "#525252" + brightRed: "#78A9FF" + brightGreen: "#FF7EB6" + brightYellow: "#42BE65" + brightBlue: "#08BDBA" + brightMagenta: "#82CFFF" + brightCyan: "#33B1FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 99.6 + black: 0 + red: 54.9 + green: 55.2 + yellow: 54.4 + blue: 55.8 + magenta: 71.5 + cyan: 55 + white: 87.3 + brightBlack: 14 + brightRed: 54.9 + brightGreen: 55.2 + brightYellow: 54.4 + brightBlue: 55.8 + brightMagenta: 71.5 + brightCyan: 55 + brightWhite: 107 diff --git a/themes/oxocarbon-monochrom.yaml b/themes/oxocarbon-monochrom.yaml new file mode 100644 index 00000000..c8dd8649 --- /dev/null +++ b/themes/oxocarbon-monochrom.yaml @@ -0,0 +1,52 @@ +name: "Oxocarbon Monochrom" +source: + marketplace_id: "NyoomEngineering.oxocarbon-vscode" + version: "1.2.0" + installs: 1561 + rating: 5 + ratings: 1 + author: "Nyoom Engineering" + repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" +colors: + bg: "#161616" + fg: "#F2F4F8" + black: "#161616" + red: "#A8A8A8" + green: "#A8A8A8" + yellow: "#A8A8A8" + blue: "#A8A8A8" + magenta: "#C6C6C6" + cyan: "#A8A8A8" + white: "#DDE1E6" + brightBlack: "#525252" + brightRed: "#A8A8A8" + brightGreen: "#A8A8A8" + brightYellow: "#A8A8A8" + brightBlue: "#A8A8A8" + brightMagenta: "#C6C6C6" + brightCyan: "#A8A8A8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 99.6 + black: 0 + red: 54.2 + green: 54.2 + yellow: 54.2 + blue: 54.2 + magenta: 71.2 + cyan: 54.2 + white: 87.3 + brightBlack: 14 + brightRed: 54.2 + brightGreen: 54.2 + brightYellow: 54.2 + brightBlue: 54.2 + brightMagenta: 71.2 + brightCyan: 54.2 + brightWhite: 107 diff --git a/themes/oxocarbon-oled-monochrom-compatibility.yaml b/themes/oxocarbon-oled-monochrom-compatibility.yaml index d6d5c10c..d1519138 100644 --- a/themes/oxocarbon-oled-monochrom-compatibility.yaml +++ b/themes/oxocarbon-oled-monochrom-compatibility.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NyoomEngineering.oxocarbon-vscode" version: "1.2.0" installs: 1561 + rating: 5 + ratings: 1 author: "Nyoom Engineering" repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" diff --git a/themes/oxocarbon-oled-monochrom.yaml b/themes/oxocarbon-oled-monochrom.yaml index 31c42549..62362211 100644 --- a/themes/oxocarbon-oled-monochrom.yaml +++ b/themes/oxocarbon-oled-monochrom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NyoomEngineering.oxocarbon-vscode" version: "1.2.0" installs: 1561 + rating: 5 + ratings: 1 author: "Nyoom Engineering" repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" diff --git a/themes/oxocarbon-oled.yaml b/themes/oxocarbon-oled.yaml new file mode 100644 index 00000000..f34df477 --- /dev/null +++ b/themes/oxocarbon-oled.yaml @@ -0,0 +1,52 @@ +name: "Oxocarbon OLED" +source: + marketplace_id: "NyoomEngineering.oxocarbon-vscode" + version: "1.2.0" + installs: 1561 + rating: 5 + ratings: 1 + author: "Nyoom Engineering" + repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" +colors: + bg: "#000000" + fg: "#F2F4F8" + black: "#000000" + red: "#78A9FF" + green: "#FF7EB6" + yellow: "#42BE65" + blue: "#08BDBA" + magenta: "#82CFFF" + cyan: "#33B1FF" + white: "#DDE1E6" + brightBlack: "#393939" + brightRed: "#78A9FF" + brightGreen: "#FF7EB6" + brightYellow: "#42BE65" + brightBlue: "#08BDBA" + brightMagenta: "#82CFFF" + brightCyan: "#33B1FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 100.6 + black: 0 + red: 55.8 + green: 56.1 + yellow: 55.3 + blue: 56.7 + magenta: 72.4 + cyan: 55.9 + white: 88.2 + brightBlack: 0 + brightRed: 55.8 + brightGreen: 56.1 + brightYellow: 55.3 + brightBlue: 56.7 + brightMagenta: 72.4 + brightCyan: 55.9 + brightWhite: 107.9 diff --git a/themes/oxocarbon-port.yaml b/themes/oxocarbon-port.yaml index 97e1b947..c36df061 100644 --- a/themes/oxocarbon-port.yaml +++ b/themes/oxocarbon-port.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "beamlnwza.oxocarbon-port" version: "0.0.2" installs: 1123 + rating: 1 + ratings: 1 author: "beamlnwza" repo: null url: "https://marketplace.visualstudio.com/items?itemName=beamlnwza.oxocarbon-port" diff --git a/themes/oxocarbonix-dark-theme.yaml b/themes/oxocarbonix-dark-theme.yaml index 54436b88..8cd521ff 100644 --- a/themes/oxocarbonix-dark-theme.yaml +++ b/themes/oxocarbonix-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RonitGandhi.oxocarbonix" version: "2.3.1" installs: 453 + rating: 2 + ratings: 1 author: "Ronit Gandhi" repo: "https://github.com/ronit18/oXocarbonix-vsc" url: "https://marketplace.visualstudio.com/items?itemName=RonitGandhi.oxocarbonix" diff --git a/themes/ozurac.yaml b/themes/ozurac.yaml index a46d0aa9..9cbd401e 100644 --- a/themes/ozurac.yaml +++ b/themes/ozurac.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gb-bittencourt.ozurac" version: "1.0.3" installs: 30 + rating: 0 + ratings: 0 author: "gb-bittencourt" repo: "https://github.com/gb-bittencourt/Ozurac" url: "https://marketplace.visualstudio.com/items?itemName=gb-bittencourt.ozurac" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 79.9 black: 0 diff --git a/themes/ozzy.yaml b/themes/ozzy.yaml index a6900701..e83f2307 100644 --- a/themes/ozzy.yaml +++ b/themes/ozzy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ozzy.ozzy" version: "1.0.4" installs: 660 + rating: 5 + ratings: 1 author: "ozzy" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ozzy.ozzy" diff --git a/themes/p-nk.yaml b/themes/p-nk.yaml index 225e9016..473c3150 100644 --- a/themes/p-nk.yaml +++ b/themes/p-nk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mochi.yumekawa-theme" version: "0.0.1" installs: 49 + rating: 0 + ratings: 0 author: "mochi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mochi.yumekawa-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 64.4 black: 23.2 diff --git a/themes/p-upright-black.yaml b/themes/p-upright-black.yaml new file mode 100644 index 00000000..c467423e --- /dev/null +++ b/themes/p-upright-black.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Black" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#000000" + fg: "#F5DCBC" + black: "#3D3735" + red: "#EB1B00" + green: "#00A824" + yellow: "#FFBB00" + blue: "#2867B9" + magenta: "#D31353" + cyan: "#0BC2A3" + white: "#F5DCBC" + brightBlack: "#504D47" + brightRed: "#FF604B" + brightGreen: "#18D356" + brightYellow: "#FFD037" + brightBlue: "#43A4FF" + brightMagenta: "#FF24B6" + brightCyan: "#2AFDDA" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: "P. Upright \ Light" + contrast: + fg: 87.7 + black: 0 + red: 33 + green: 43.7 + yellow: 72.8 + blue: 24 + magenta: 27.8 + cyan: 58.1 + white: 87.7 + brightBlack: 13.2 + brightRed: 46.2 + brightGreen: 64.3 + brightYellow: 81.4 + brightBlue: 51.1 + brightMagenta: 42.3 + brightCyan: 89.6 + brightWhite: 95.1 diff --git a/themes/p-upright-citadel.yaml b/themes/p-upright-citadel.yaml new file mode 100644 index 00000000..d961b138 --- /dev/null +++ b/themes/p-upright-citadel.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Citadel" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#092630" + fg: "#E3B19D" + black: "#205263" + red: "#FF4128" + green: "#14AD35" + yellow: "#EBA31C" + blue: "#173FC3" + magenta: "#DB0F8D" + cyan: "#03D6DD" + white: "#E3B19D" + brightBlack: "#215769" + brightRed: "#FF5A44" + brightGreen: "#48EC7F" + brightYellow: "#FFD54C" + brightBlue: "#509FFF" + brightMagenta: "#FF46C8" + brightCyan: "#8FEBF2" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "pink" + hue: 224 + pair: null + contrast: + fg: 63.7 + black: 10.3 + red: 38.3 + green: 43.5 + yellow: 57.7 + blue: 11.9 + magenta: 28.6 + cyan: 67.3 + white: 63.7 + brightBlack: 12 + brightRed: 42.4 + brightGreen: 75.8 + brightYellow: 81.1 + brightBlue: 47 + brightMagenta: 43.6 + brightCyan: 83 + brightWhite: 92.5 diff --git a/themes/p-upright-crimson.yaml b/themes/p-upright-crimson.yaml new file mode 100644 index 00000000..39539f9e --- /dev/null +++ b/themes/p-upright-crimson.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Crimson" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#FFFFFF" + fg: "#2B2B2B" + black: "#000000" + red: "#B61702" + green: "#009C22" + yellow: "#D68B01" + blue: "#1E5FB4" + magenta: "#D600C4" + cyan: "#0CB4B4" + white: "#C5C5C5" + brightBlack: "#3F3F3F" + brightRed: "#E43E28" + brightGreen: "#04B941" + brightYellow: "#FFB618" + brightBlue: "#2186E4" + brightMagenta: "#FF24E2" + brightCyan: "#12D6CC" + brightWhite: "#E4E4E4" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 100.9 + black: 106 + red: 81.2 + green: 63.1 + yellow: 53.2 + blue: 80.7 + magenta: 68.7 + cyan: 49.5 + white: 31.2 + brightBlack: 94.5 + brightRed: 67.4 + brightGreen: 50.3 + brightYellow: 31.8 + brightBlue: 64.5 + brightMagenta: 56.9 + brightCyan: 33.4 + brightWhite: 13.5 diff --git a/themes/p-upright-dark.yaml b/themes/p-upright-dark.yaml new file mode 100644 index 00000000..d24da37d --- /dev/null +++ b/themes/p-upright-dark.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Dark" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#111212" + fg: "#DFC6BA" + black: "#4E4846" + red: "#CE3521" + green: "#05A829" + yellow: "#D37D0D" + blue: "#276AC2" + magenta: "#E0024C" + cyan: "#04C4A4" + white: "#DFC6BA" + brightBlack: "#6E6B64" + brightRed: "#FF553E" + brightGreen: "#69CB73" + brightYellow: "#FFAE18" + brightBlue: "#50A9FD" + brightMagenta: "#FF3478" + brightCyan: "#28F5D3" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 74.4 + black: 11.1 + red: 27.7 + green: 43.2 + yellow: 43.3 + blue: 25 + magenta: 29.9 + cyan: 58.4 + white: 74.4 + brightBlack: 24.7 + brightRed: 43.5 + brightGreen: 62.8 + brightYellow: 67.4 + brightBlue: 52.8 + brightMagenta: 40.4 + brightCyan: 84.5 + brightWhite: 94.6 diff --git a/themes/p-upright-eggplant.yaml b/themes/p-upright-eggplant.yaml new file mode 100644 index 00000000..9e588520 --- /dev/null +++ b/themes/p-upright-eggplant.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Eggplant" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#1C1525" + fg: "#FFD9BB" + black: "#39353D" + red: "#CE3521" + green: "#05A829" + yellow: "#D37D0D" + blue: "#276AC2" + magenta: "#E0024C" + cyan: "#04C4A4" + white: "#CFB5A9" + brightBlack: "#4B4750" + brightRed: "#FF553E" + brightGreen: "#2DDD68" + brightYellow: "#FFB618" + brightBlue: "#50A9FD" + brightMagenta: "#FF3478" + brightCyan: "#28F5D3" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 304 + pair: null + contrast: + fg: 86.7 + black: 0 + red: 27.1 + green: 42.6 + yellow: 42.7 + blue: 24.4 + magenta: 29.3 + cyan: 57.9 + white: 64.1 + brightBlack: 10.3 + brightRed: 42.9 + brightGreen: 68.6 + brightYellow: 69.8 + brightBlue: 52.2 + brightMagenta: 39.8 + brightCyan: 84 + brightWhite: 94 diff --git a/themes/p-upright-emerald.yaml b/themes/p-upright-emerald.yaml new file mode 100644 index 00000000..44302b87 --- /dev/null +++ b/themes/p-upright-emerald.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Emerald" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#0A1A13" + fg: "#FAD6B9" + black: "#353D36" + red: "#CE3521" + green: "#05A829" + yellow: "#D3840D" + blue: "#3A76C4" + magenta: "#E0024C" + cyan: "#34B6A0" + white: "#CFB5A9" + brightBlack: "#47504A" + brightRed: "#FF553E" + brightGreen: "#2DDD68" + brightYellow: "#FFB618" + brightBlue: "#65B4FF" + brightMagenta: "#FF3478" + brightCyan: "#69F7DF" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 164 + pair: null + contrast: + fg: 84.7 + black: 0 + red: 27.2 + green: 42.7 + yellow: 44.9 + blue: 29 + magenta: 29.4 + cyan: 51.9 + white: 64.2 + brightBlack: 12.3 + brightRed: 43 + brightGreen: 68.7 + brightYellow: 69.9 + brightBlue: 57.9 + brightMagenta: 39.9 + brightCyan: 87.4 + brightWhite: 94.1 diff --git a/themes/p-upright-eucalyptus.yaml b/themes/p-upright-eucalyptus.yaml new file mode 100644 index 00000000..6fc6faec --- /dev/null +++ b/themes/p-upright-eucalyptus.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Eucalyptus" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#21241E" + fg: "#E7B07D" + black: "#3D3735" + red: "#AD5145" + green: "#6EA03D" + yellow: "#B88F51" + blue: "#5477A5" + magenta: "#AE5975" + cyan: "#549878" + white: "#FAE5D6" + brightBlack: "#504D47" + brightRed: "#E35E4D" + brightGreen: "#8AC255" + brightYellow: "#E8B455" + brightBlue: "#6FB2D1" + brightMagenta: "#D66C8F" + brightCyan: "#7BC09D" + brightWhite: "#FFF2EC" +meta: + mode: "dark" + accent: "orange" + hue: 129 + pair: null + contrast: + fg: 63.1 + black: 0 + red: 23.9 + green: 41.3 + yellow: 43.1 + blue: 27.2 + magenta: 26.9 + cyan: 37.5 + white: 90.8 + brightBlack: 10.6 + brightRed: 37.2 + brightGreen: 58.4 + brightYellow: 64.1 + brightBlue: 53.4 + brightMagenta: 39.4 + brightCyan: 58 + brightWhite: 98.3 diff --git a/themes/p-upright-floresta.yaml b/themes/p-upright-floresta.yaml new file mode 100644 index 00000000..28dc2757 --- /dev/null +++ b/themes/p-upright-floresta.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Floresta" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#07171A" + fg: "#FFD4C7" + black: "#26362F" + red: "#EC1C00" + green: "#068020" + yellow: "#D3940D" + blue: "#3465A5" + magenta: "#C40B71" + cyan: "#08A087" + white: "#FFD4C7" + brightBlack: "#3E4E45" + brightRed: "#FF6551" + brightGreen: "#24CA5B" + brightYellow: "#FFCA37" + brightBlue: "#3191EB" + brightMagenta: "#FF24BD" + brightCyan: "#2AE6C6" + brightWhite: "#FFFBF9" +meta: + mode: "dark" + accent: "pink" + hue: 211 + pair: null + contrast: + fg: 85.4 + black: 0 + red: 32.4 + green: 26.3 + yellow: 50.2 + blue: 21.6 + magenta: 24.2 + cyan: 41.2 + white: 85.4 + brightBlack: 11.3 + brightRed: 46.5 + brightGreen: 59.3 + brightYellow: 78.1 + brightBlue: 41.1 + brightMagenta: 41.8 + brightCyan: 76.1 + brightWhite: 104.9 diff --git a/themes/p-upright-frost.yaml b/themes/p-upright-frost.yaml new file mode 100644 index 00000000..ba3145bc --- /dev/null +++ b/themes/p-upright-frost.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Frost" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#FFFFFF" + fg: "#186554" + black: "#000000" + red: "#B61702" + green: "#068020" + yellow: "#D37D0D" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#A5B4AB" + brightBlack: "#4A574D" + brightRed: "#D43E2A" + brightGreen: "#1B9E47" + brightYellow: "#FF9B18" + brightBlue: "#3A89D3" + brightMagenta: "#FF246D" + brightCyan: "#1BDFBE" + brightWhite: "#C7CECB" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 83.7 + black: 106 + red: 81.2 + green: 74.5 + yellow: 57.9 + blue: 79.3 + magenta: 77.8 + cyan: 59.6 + white: 42.5 + brightBlack: 86.4 + brightRed: 71 + brightGreen: 61.8 + brightYellow: 40.9 + brightBlue: 64.1 + brightMagenta: 62.1 + brightCyan: 29.8 + brightWhite: 27.1 diff --git a/themes/p-upright-genmaicha.yaml b/themes/p-upright-genmaicha.yaml new file mode 100644 index 00000000..9c6abe93 --- /dev/null +++ b/themes/p-upright-genmaicha.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Genmaicha" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#F8DCA8" + fg: "#232729" + black: "#232729" + red: "#B61702" + green: "#009C22" + yellow: "#D68B01" + blue: "#1E5FB4" + magenta: "#D600C4" + cyan: "#0CB4B4" + white: "#C5C5C5" + brightBlack: "#3F3F3F" + brightRed: "#E43E28" + brightGreen: "#04B941" + brightYellow: "#FFB618" + brightBlue: "#2186E4" + brightMagenta: "#FF24E2" + brightCyan: "#12D6CC" + brightWhite: "#E4E4E4" +meta: + mode: "light" + accent: "pink" + hue: 83 + pair: null + contrast: + fg: 83.3 + black: 83.3 + red: 62.5 + green: 44.5 + yellow: 34.6 + blue: 62.1 + magenta: 50.1 + cyan: 30.9 + white: 12.6 + brightBlack: 75.8 + brightRed: 48.8 + brightGreen: 31.7 + brightYellow: 13.2 + brightBlue: 45.9 + brightMagenta: 38.3 + brightCyan: 14.8 + brightWhite: 0 diff --git a/themes/p-upright-grizzly.yaml b/themes/p-upright-grizzly.yaml new file mode 100644 index 00000000..bf6f6d1e --- /dev/null +++ b/themes/p-upright-grizzly.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Grizzly" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#201612" + fg: "#F1BC94" + black: "#3C312D" + red: "#DA2811" + green: "#399227" + yellow: "#C98621" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#F1BC94" + brightBlack: "#4B4138" + brightRed: "#FD4931" + brightGreen: "#26BE21" + brightYellow: "#FFB618" + brightBlue: "#3A89D3" + brightMagenta: "#FF3C7D" + brightCyan: "#1BDFBE" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 43 + pair: null + contrast: + fg: 71.4 + black: 0 + red: 28.5 + green: 34 + yellow: 43.7 + blue: 21.3 + magenta: 22.9 + cyan: 40.9 + white: 71.4 + brightBlack: 8.2 + brightRed: 40.5 + brightGreen: 52.8 + brightYellow: 69.7 + brightBlue: 36.4 + brightMagenta: 40.7 + brightCyan: 71.9 + brightWhite: 94 diff --git a/themes/p-upright-haze.yaml b/themes/p-upright-haze.yaml new file mode 100644 index 00000000..78c3a915 --- /dev/null +++ b/themes/p-upright-haze.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Haze" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#5B405B" + fg: "#E4CBC4" + black: "#745874" + red: "#D66B5D" + green: "#3FD15E" + yellow: "#FAC534" + blue: "#4F8CDB" + magenta: "#FF58BF" + cyan: "#30E9CA" + white: "#FFFBFA" + brightBlack: "#8D748D" + brightRed: "#FF8D7E" + brightGreen: "#90FCB4" + brightYellow: "#FFD885" + brightBlue: "#6FB7FA" + brightMagenta: "#FF84EB" + brightCyan: "#55FFE3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 327 + pair: null + contrast: + fg: 65.4 + black: 8.2 + red: 27.5 + green: 51.3 + yellow: 63.2 + blue: 27.2 + magenta: 35.6 + cyan: 65.9 + white: 92.9 + brightBlack: 20 + brightRed: 45.5 + brightGreen: 78.8 + brightYellow: 73.1 + brightBlue: 47.7 + brightMagenta: 47.6 + brightCyan: 79.2 + brightWhite: 95 diff --git a/themes/p-upright-inkstone.yaml b/themes/p-upright-inkstone.yaml new file mode 100644 index 00000000..fc4f161e --- /dev/null +++ b/themes/p-upright-inkstone.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Inkstone" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#111B22" + fg: "#F5D8C3" + black: "#353D3D" + red: "#CE3521" + green: "#05A829" + yellow: "#D39E0D" + blue: "#276AC2" + magenta: "#E0024C" + cyan: "#04C4A4" + white: "#CFB5A9" + brightBlack: "#475050" + brightRed: "#FF553E" + brightGreen: "#2DDD68" + brightYellow: "#FFC918" + brightBlue: "#50A9FD" + brightMagenta: "#FF3478" + brightCyan: "#28F5D3" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 239 + pair: null + contrast: + fg: 84.8 + black: 0 + red: 26.9 + green: 42.4 + yellow: 53.2 + blue: 24.2 + magenta: 29.1 + cyan: 57.7 + white: 63.9 + brightBlack: 12.2 + brightRed: 42.7 + brightGreen: 68.5 + brightYellow: 77 + brightBlue: 52.1 + brightMagenta: 39.6 + brightCyan: 83.8 + brightWhite: 93.8 diff --git a/themes/p-upright-leipzig.yaml b/themes/p-upright-leipzig.yaml new file mode 100644 index 00000000..0f3624a4 --- /dev/null +++ b/themes/p-upright-leipzig.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Leipzig" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#221B1D" + fg: "#E7C4A3" + black: "#3D3735" + red: "#BE4939" + green: "#2A9842" + yellow: "#D39E0D" + blue: "#4C6F9D" + magenta: "#C63263" + cyan: "#39B7A2" + white: "#CFB5A9" + brightBlack: "#504A47" + brightRed: "#EF5C48" + brightGreen: "#53C666" + brightYellow: "#FFC918" + brightBlue: "#6FACE5" + brightMagenta: "#F15488" + brightCyan: "#4DEDD2" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 359 + pair: null + contrast: + fg: 72.9 + black: 0 + red: 26.3 + green: 35.8 + yellow: 52.9 + blue: 24.6 + magenta: 25.5 + cyan: 51.9 + white: 63.6 + brightBlack: 10.7 + brightRed: 40.2 + brightGreen: 58 + brightYellow: 76.7 + brightBlue: 53 + brightMagenta: 40.6 + brightCyan: 80.1 + brightWhite: 93.4 diff --git a/themes/p-upright-light.yaml b/themes/p-upright-light.yaml new file mode 100644 index 00000000..01de2344 --- /dev/null +++ b/themes/p-upright-light.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Light" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#F3E7E2" + fg: "#423926" + black: "#000000" + red: "#B61702" + green: "#068020" + yellow: "#EE8F13" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#CFB5A9" + brightBlack: "#5C5442" + brightRed: "#D43E2A" + brightGreen: "#1B9E47" + brightYellow: "#FFC936" + brightBlue: "#3A89D3" + brightMagenta: "#FF246D" + brightCyan: "#1BDFBE" + brightWhite: "#FAE8E0" +meta: + mode: "light" + accent: "red" + hue: 44 + pair: "P. Upright \ Black" + contrast: + fg: 83.4 + black: 93.2 + red: 68.3 + green: 61.7 + yellow: 34.9 + blue: 66.5 + magenta: 64.9 + cyan: 46.8 + white: 24.3 + brightBlack: 73.2 + brightRed: 58.1 + brightGreen: 49 + brightYellow: 11.8 + brightBlue: 51.2 + brightMagenta: 49.3 + brightCyan: 16.9 + brightWhite: 0 diff --git a/themes/p-upright-machine.yaml b/themes/p-upright-machine.yaml new file mode 100644 index 00000000..7e3767c4 --- /dev/null +++ b/themes/p-upright-machine.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Machine" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#393837" + fg: "#F7DBC5" + black: "#747270" + red: "#E9523E" + green: "#25AC42" + yellow: "#EB780D" + blue: "#5595BD" + magenta: "#E02D69" + cyan: "#46B9B9" + white: "#FAE5D6" + brightBlack: "#868686" + brightRed: "#FF8170" + brightGreen: "#2FEC6E" + brightYellow: "#FFAF37" + brightBlue: "#73BCF8" + brightMagenta: "#FF6D9E" + brightCyan: "#7BE6E6" + brightWhite: "#FFF2EC" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 80.5 + black: 21.1 + red: 31.2 + green: 38.6 + yellow: 39.7 + blue: 34.5 + magenta: 25.3 + cyan: 48.5 + white: 86 + brightBlack: 30.3 + brightRed: 47.3 + brightGreen: 70.2 + brightYellow: 61.1 + brightBlue: 55.4 + brightMagenta: 43.7 + brightCyan: 74 + brightWhite: 93.6 diff --git a/themes/p-upright-mist.yaml b/themes/p-upright-mist.yaml new file mode 100644 index 00000000..20abce2b --- /dev/null +++ b/themes/p-upright-mist.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Mist" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#3A4444" + fg: "#FFE3CC" + black: "#606D6D" + red: "#FA5C47" + green: "#25AC42" + yellow: "#CCA63C" + blue: "#4779BB" + magenta: "#E02D69" + cyan: "#46B9B9" + white: "#FAE5D6" + brightBlack: "#899494" + brightRed: "#FD8677" + brightGreen: "#2FEC6E" + brightYellow: "#FFDD47" + brightBlue: "#68B6FF" + brightMagenta: "#FF6D9E" + brightCyan: "#7BE6E6" + brightWhite: "#FFF2EC" +meta: + mode: "dark" + accent: "green" + hue: 197 + pair: null + contrast: + fg: 82.4 + black: 14.5 + red: 33.8 + green: 35.5 + yellow: 46.2 + blue: 20.6 + magenta: 22.2 + cyan: 45.4 + white: 82.9 + brightBlack: 33 + brightRed: 45.3 + brightGreen: 67.1 + brightYellow: 76.7 + brightBlue: 49.5 + brightMagenta: 40.6 + brightCyan: 70.9 + brightWhite: 90.5 diff --git a/themes/p-upright-neptune.yaml b/themes/p-upright-neptune.yaml new file mode 100644 index 00000000..30a244b8 --- /dev/null +++ b/themes/p-upright-neptune.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Neptune" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#070C25" + fg: "#FDC0BE" + black: "#242334" + red: "#E72006" + green: "#068020" + yellow: "#D37D0D" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#CFA9BB" + brightBlack: "#444367" + brightRed: "#F7614D" + brightGreen: "#1B9E47" + brightYellow: "#FF9B18" + brightBlue: "#3A89D3" + brightMagenta: "#FF246D" + brightCyan: "#1BDFBE" + brightWhite: "#FAE0E8" +meta: + mode: "dark" + accent: "red" + hue: 271 + pair: null + contrast: + fg: 77.1 + black: 0 + red: 31.8 + green: 26.8 + yellow: 43.4 + blue: 22.1 + magenta: 23.6 + cyan: 41.7 + white: 61 + brightBlack: 10.4 + brightRed: 44.3 + brightGreen: 39.4 + brightYellow: 61 + brightBlue: 37.2 + brightMagenta: 39.1 + brightCyan: 72.6 + brightWhite: 91.5 diff --git a/themes/p-upright-ornithopter.yaml b/themes/p-upright-ornithopter.yaml new file mode 100644 index 00000000..00b7a594 --- /dev/null +++ b/themes/p-upright-ornithopter.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Ornithopter" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#3D3028" + fg: "#F5DCBC" + black: "#55453B" + red: "#E74935" + green: "#98BD5C" + yellow: "#EF951E" + blue: "#8EB7CA" + magenta: "#CA405E" + cyan: "#78C0B4" + white: "#F5DCBC" + brightBlack: "#726054" + brightRed: "#FF7562" + brightGreen: "#C1E954" + brightYellow: "#FFC31E" + brightBlue: "#67D7DB" + brightMagenta: "#F85E91" + brightCyan: "#98FCD6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 53 + pair: null + contrast: + fg: 81.9 + black: 0 + red: 30.8 + green: 54.3 + yellow: 50.6 + blue: 54.3 + magenta: 23.9 + cyan: 55.5 + white: 81.9 + brightBlack: 16.2 + brightRed: 45.5 + brightGreen: 78.7 + brightYellow: 70.2 + brightBlue: 66.7 + brightMagenta: 40.2 + brightCyan: 87.7 + brightWhite: 102.1 diff --git a/themes/p-upright-ox.yaml b/themes/p-upright-ox.yaml new file mode 100644 index 00000000..e81dee88 --- /dev/null +++ b/themes/p-upright-ox.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Ox" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#1F0C0F" + fg: "#ECAF87" + black: "#332726" + red: "#BC1600" + green: "#39A150" + yellow: "#D39E0D" + blue: "#4075A7" + magenta: "#D0245E" + cyan: "#29AD97" + white: "#CFB5A9" + brightBlack: "#4D3232" + brightRed: "#FF2E13" + brightGreen: "#73C84C" + brightYellow: "#FFC918" + brightBlue: "#62B2E4" + brightMagenta: "#EF4980" + brightCyan: "#60DEC9" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "orange" + hue: 11 + pair: null + contrast: + fg: 65.8 + black: 0 + red: 21.3 + green: 41.2 + yellow: 53.9 + blue: 27.5 + magenta: 27.5 + cyan: 47.8 + white: 64.6 + brightBlack: 0 + brightRed: 38.4 + brightGreen: 61.3 + brightYellow: 77.7 + brightBlue: 55.7 + brightMagenta: 39.3 + brightCyan: 74.1 + brightWhite: 94.5 diff --git a/themes/p-upright-terabyte.yaml b/themes/p-upright-terabyte.yaml new file mode 100644 index 00000000..bbb12e56 --- /dev/null +++ b/themes/p-upright-terabyte.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Terabyte" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#0B1A1A" + fg: "#E6D4B2" + black: "#243D36" + red: "#A94133" + green: "#3BCE16" + yellow: "#B47D36" + blue: "#4A89AD" + magenta: "#CB3E43" + cyan: "#6CFFBD" + white: "#E8BFA1" + brightBlack: "#406662" + brightRed: "#E46857" + brightGreen: "#8FE560" + brightYellow: "#FFCB2F" + brightBlue: "#68BBDB" + brightMagenta: "#F3777B" + brightCyan: "#C0FFE6" + brightWhite: "#FAECE0" +meta: + mode: "dark" + accent: "green" + hue: 196 + pair: null + contrast: + fg: 80.5 + black: 0 + red: 21.4 + green: 60.8 + yellow: 37.8 + blue: 34.9 + magenta: 27.9 + cyan: 90.3 + white: 71.5 + brightBlack: 19.1 + brightRed: 41.2 + brightGreen: 76.9 + brightYellow: 78.2 + brightBlue: 58.8 + brightMagenta: 48.7 + brightCyan: 98 + brightWhite: 95.8 diff --git a/themes/p-upright-ultramarine.yaml b/themes/p-upright-ultramarine.yaml new file mode 100644 index 00000000..1de68be4 --- /dev/null +++ b/themes/p-upright-ultramarine.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Ultramarine" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#050809" + fg: "#FFFFFF" + black: "#454545" + red: "#CE3521" + green: "#24943C" + yellow: "#BB8F18" + blue: "#276AC2" + magenta: "#E0024C" + cyan: "#04BEC4" + white: "#FFFFFF" + brightBlack: "#707070" + brightRed: "#FF553E" + brightGreen: "#76DD61" + brightYellow: "#FFD518" + brightBlue: "#50A9FD" + brightMagenta: "#FF3478" + brightCyan: "#28F5EB" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 107.8 + black: 10.1 + red: 28.2 + green: 35.6 + yellow: 45.6 + blue: 25.5 + magenta: 30.4 + cyan: 57.5 + white: 107.8 + brightBlack: 27.3 + brightRed: 44 + brightGreen: 72.3 + brightYellow: 83.3 + brightBlue: 53.3 + brightMagenta: 40.9 + brightCyan: 86.1 + brightWhite: 95 diff --git a/themes/p-upright-wolf.yaml b/themes/p-upright-wolf.yaml new file mode 100644 index 00000000..3581a28d --- /dev/null +++ b/themes/p-upright-wolf.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Wolf" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#221F1E" + fg: "#DCBD9D" + black: "#473E3B" + red: "#B61702" + green: "#74AD45" + yellow: "#D37D0D" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#DCBD9D" + brightBlack: "#575249" + brightRed: "#D43E2A" + brightGreen: "#84C32B" + brightYellow: "#FF9B18" + brightBlue: "#3A89D3" + brightMagenta: "#FF246D" + brightCyan: "#1BDFBE" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 67.8 + black: 0 + red: 18.6 + green: 47.7 + yellow: 41.8 + blue: 20.4 + magenta: 22 + cyan: 40 + white: 67.8 + brightBlack: 13.1 + brightRed: 28.6 + brightGreen: 58.4 + brightYellow: 59.3 + brightBlue: 35.5 + brightMagenta: 37.5 + brightCyan: 70.9 + brightWhite: 93.1 diff --git a/themes/p-upright-yesterday.yaml b/themes/p-upright-yesterday.yaml new file mode 100644 index 00000000..d01819e5 --- /dev/null +++ b/themes/p-upright-yesterday.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Yesterday" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#23282A" + fg: "#F1CAC0" + black: "#374344" + red: "#F04129" + green: "#25AC42" + yellow: "#CCA63C" + blue: "#4779BB" + magenta: "#E02D69" + cyan: "#46B9B9" + white: "#FAE5D6" + brightBlack: "#556661" + brightRed: "#FF634F" + brightGreen: "#2FEC6E" + brightYellow: "#FFDD47" + brightBlue: "#68B6FF" + brightMagenta: "#FF6D9E" + brightCyan: "#7BE6E6" + brightWhite: "#FFF2EC" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 76.3 + black: 0 + red: 34.1 + green: 42.7 + yellow: 53.4 + blue: 27.7 + magenta: 29.3 + cyan: 52.5 + white: 90.1 + brightBlack: 18.2 + brightRed: 43.6 + brightGreen: 74.3 + brightYellow: 83.8 + brightBlue: 56.7 + brightMagenta: 47.8 + brightCyan: 78 + brightWhite: 97.6 diff --git a/themes/p-upright-zenith.yaml b/themes/p-upright-zenith.yaml new file mode 100644 index 00000000..13deab04 --- /dev/null +++ b/themes/p-upright-zenith.yaml @@ -0,0 +1,52 @@ +name: "P. Upright \ Zenith" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74789 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" +colors: + bg: "#140D1A" + fg: "#F3B8BA" + black: "#331F38" + red: "#EC1C00" + green: "#016F33" + yellow: "#D3940D" + blue: "#3465A5" + magenta: "#C40B71" + cyan: "#0891A0" + white: "#B886FF" + brightBlack: "#483247" + brightRed: "#FF6551" + brightGreen: "#3AB4A6" + brightYellow: "#FFCA37" + brightBlue: "#3191EB" + brightMagenta: "#FF24BD" + brightCyan: "#2AE6C6" + brightWhite: "#FFFBF9" +meta: + mode: "dark" + accent: "pink" + hue: 308 + pair: null + contrast: + fg: 72.1 + black: 0 + red: 32.8 + green: 20.6 + yellow: 50.6 + blue: 22 + magenta: 24.6 + cyan: 36.5 + white: 49.9 + brightBlack: 0 + brightRed: 46.9 + brightGreen: 52 + brightYellow: 78.5 + brightBlue: 41.4 + brightMagenta: 42.2 + brightCyan: 76.5 + brightWhite: 105.3 diff --git a/themes/p-yesterday.yaml b/themes/p-yesterday.yaml index 1fb44f44..0108780e 100644 --- a/themes/p-yesterday.yaml +++ b/themes/p-yesterday.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/p33t.yaml b/themes/p33t.yaml index a16c627b..19616983 100644 --- a/themes/p33t.yaml +++ b/themes/p33t.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "P33t.p33t" version: "0.0.2" installs: 187 + rating: 5 + ratings: 1 author: "P33t" repo: null url: "https://marketplace.visualstudio.com/items?itemName=P33t.p33t" diff --git a/themes/pace-dark.yaml b/themes/pace-dark.yaml index a2e85355..4efe3892 100644 --- a/themes/pace-dark.yaml +++ b/themes/pace-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fabian-hiller.pace-theme" version: "0.3.0" installs: 4450 + rating: 5 + ratings: 4 author: "Fabian Hiller" repo: "https://github.com/fabian-hiller/vscode-pace-theme" url: "https://marketplace.visualstudio.com/items?itemName=fabian-hiller.pace-theme" diff --git a/themes/pace-light.yaml b/themes/pace-light.yaml index e0af8a0c..f50f4614 100644 --- a/themes/pace-light.yaml +++ b/themes/pace-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fabian-hiller.pace-theme" version: "0.3.0" installs: 4450 + rating: 5 + ratings: 4 author: "Fabian Hiller" repo: "https://github.com/fabian-hiller/vscode-pace-theme" url: "https://marketplace.visualstudio.com/items?itemName=fabian-hiller.pace-theme" diff --git a/themes/padrepio.yaml b/themes/padrepio.yaml index e733980c..0bde6be7 100644 --- a/themes/padrepio.yaml +++ b/themes/padrepio.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Houlz.padrepio" version: "2.1.0" installs: 373 + rating: 5 + ratings: 1 author: "Houlz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Houlz.padrepio" diff --git a/themes/paigio.yaml b/themes/paigio.yaml index 1b5f85ac..944ed08c 100644 --- a/themes/paigio.yaml +++ b/themes/paigio.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "plewg.toybox" version: "0.0.1" installs: 79 + rating: 0 + ratings: 0 author: "plewg" repo: "https://github.com/plewg/toybox" url: "https://marketplace.visualstudio.com/items?itemName=plewg.toybox" diff --git a/themes/pale-blue.yaml b/themes/pale-blue.yaml index 206f5281..d5d57d33 100644 --- a/themes/pale-blue.yaml +++ b/themes/pale-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TehMatcha.roselia-theme" version: "4.4.0" installs: 1278 + rating: 5 + ratings: 2 author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-roselia-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" diff --git a/themes/pale-boreal-dark.yaml b/themes/pale-boreal-dark.yaml index fa75d53a..2197aaf0 100644 --- a/themes/pale-boreal-dark.yaml +++ b/themes/pale-boreal-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MuriloSambuite.pale-boreal-dark-theme" version: "1.0.8" installs: 3181 + rating: 5 + ratings: 1 author: "Murilo Sambuite" repo: "https://github.com/sambuite/pale-boreal-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=MuriloSambuite.pale-boreal-dark-theme" diff --git a/themes/palenight-italic.yaml b/themes/palenight-italic.yaml new file mode 100644 index 00000000..e13ec685 --- /dev/null +++ b/themes/palenight-italic.yaml @@ -0,0 +1,52 @@ +name: "Palenight Italic" +source: + marketplace_id: "nesterman.material-nest-theme" + version: "1.0.40" + installs: 5494 + rating: 0 + ratings: 0 + author: "Nick Nesterov" + repo: "https://github.com/nesterman/vscode-nest-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nesterman.material-nest-theme" +colors: + bg: "#FFFFFF" + fg: "#597078" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 76 + black: 106 + red: 57.1 + green: 18.3 + yellow: 23.3 + blue: 45.2 + magenta: 47.3 + cyan: 23.9 + white: 0 + brightBlack: 74.3 + brightRed: 57.1 + brightGreen: 18.3 + brightYellow: 23.3 + brightBlue: 45.2 + brightMagenta: 47.3 + brightCyan: 23.9 + brightWhite: 0 diff --git a/themes/palenight-material.yaml b/themes/palenight-material.yaml index baf54d4d..c3671a7d 100644 --- a/themes/palenight-material.yaml +++ b/themes/palenight-material.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Lebster.enough-with-the-palenight" version: "1.0.6" installs: 7176 + rating: 0 + ratings: 0 author: "Lebster" repo: "https://github.com/LebsterFace/enough-with-the-palenight" url: "https://marketplace.visualstudio.com/items?itemName=Lebster.enough-with-the-palenight" diff --git a/themes/palenight-theme-based-on-olaolu-olaywuyi-for-code-server.yaml b/themes/palenight-theme-based-on-olaolu-olaywuyi-for-code-server.yaml new file mode 100644 index 00000000..5db548d2 --- /dev/null +++ b/themes/palenight-theme-based-on-olaolu-olaywuyi-for-code-server.yaml @@ -0,0 +1,52 @@ +name: "Palenight Theme based on Olaolu Olaywuyi for Code Server" +source: + marketplace_id: "mdixon18.palenight" + version: "0.0.1" + installs: 17134 + rating: 0 + ratings: 0 + author: "mdixon18" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mdixon18.palenight" +colors: + bg: "#292D3E" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + pair: null + contrast: + fg: 67.7 + black: 22.8 + red: 40.4 + green: 62.2 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 40.4 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/palenight-theme.yaml b/themes/palenight-theme.yaml new file mode 100644 index 00000000..c293b791 --- /dev/null +++ b/themes/palenight-theme.yaml @@ -0,0 +1,52 @@ +name: "Palenight Theme" +source: + marketplace_id: "anaksholeh.unknown" + version: "0.0.5" + installs: 321 + rating: 0 + ratings: 0 + author: "anak sholeh" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=anaksholeh.unknown" +colors: + bg: "#373F4B" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 258 + pair: null + contrast: + fg: 63.1 + black: 18.2 + red: 35.7 + green: 57.6 + yellow: 70.7 + blue: 47.7 + magenta: 45.5 + cyan: 70 + white: 98.6 + brightBlack: 18.2 + brightRed: 35.7 + brightGreen: 75.9 + brightYellow: 70.7 + brightBlue: 47.7 + brightMagenta: 45.5 + brightCyan: 70 + brightWhite: 98.6 diff --git a/themes/palestorm-x.yaml b/themes/palestorm-x.yaml index 4d503fcb..3410cf66 100644 --- a/themes/palestorm-x.yaml +++ b/themes/palestorm-x.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexanderAlekseenko.palestorm" version: "1.3.0" installs: 2696 + rating: 5 + ratings: 1 author: "Alexander Alekseenko" repo: "https://github.com/Akaike/vsc-palestorm-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.palestorm" diff --git a/themes/palestorm.yaml b/themes/palestorm.yaml index 059883b5..8ad2ee88 100644 --- a/themes/palestorm.yaml +++ b/themes/palestorm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexanderAlekseenko.palestorm" version: "1.3.0" installs: 2696 + rating: 5 + ratings: 1 author: "Alexander Alekseenko" repo: "https://github.com/Akaike/vsc-palestorm-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.palestorm" diff --git a/themes/palette.yaml b/themes/palette.yaml index 27826ae5..d66ce40f 100644 --- a/themes/palette.yaml +++ b/themes/palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "palette-theme.Palette-Dark" version: "0.2.0" installs: 5842 + rating: 5 + ratings: 2 author: "Zakiullah" repo: "https://github.com/zbarakzai/Palette-VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=palette-theme.Palette-Dark" diff --git a/themes/pall-theme.yaml b/themes/pall-theme.yaml index d9ac3c2a..d7a45ad6 100644 --- a/themes/pall-theme.yaml +++ b/themes/pall-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Goek.pall" version: "0.0.5" installs: 93 + rating: 0 + ratings: 0 author: "Goek" repo: "https://github.com/aligoek/Pall-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Goek.pall" diff --git a/themes/panda-dark.yaml b/themes/panda-dark.yaml index db0faaaf..ff9ac528 100644 --- a/themes/panda-dark.yaml +++ b/themes/panda-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ssera-themes" version: "2.0.2" installs: 334 + rating: 0 + ratings: 0 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" diff --git a/themes/pandai.yaml b/themes/pandai.yaml new file mode 100644 index 00000000..29e14d1e --- /dev/null +++ b/themes/pandai.yaml @@ -0,0 +1,52 @@ +name: "pandai" +source: + marketplace_id: "tenf0ld.pandai-dark" + version: "0.1.0" + installs: 184 + rating: 0 + ratings: 0 + author: "tenf0ld" + repo: "https://github.com/tenf0ld/pandai" + url: "https://marketplace.visualstudio.com/items?itemName=tenf0ld.pandai-dark" +colors: + bg: "#4A4E69" + fg: "#B4B4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + pair: null + contrast: + fg: 46.7 + black: 15.9 + red: 12.6 + green: 38.9 + yellow: 71.5 + blue: 13.3 + magenta: 15.6 + cyan: 33.4 + white: 75.9 + brightBlack: 7.9 + brightRed: 24.4 + brightGreen: 49.4 + brightYellow: 81.5 + brightBlue: 25.9 + brightMagenta: 31.3 + brightCyan: 41.3 + brightWhite: 75.9 diff --git a/themes/pandju.yaml b/themes/pandju.yaml new file mode 100644 index 00000000..48be2f53 --- /dev/null +++ b/themes/pandju.yaml @@ -0,0 +1,52 @@ +name: "Pandju" +source: + marketplace_id: "TobiasTimm.pandju" + version: "1.0.1" + installs: 2734 + rating: 5 + ratings: 1 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/pandju" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.pandju" +colors: + bg: "#171D2B" + fg: "#E6E6E6" + black: "#6F7899" + red: "#F4326D" + green: "#17F9D7" + yellow: "#FFEDBB" + blue: "#A188F1" + magenta: "#FF75B5" + cyan: "#F7B773" + white: "#D7E2FF" + brightBlack: "#6F7899" + brightRed: "#F4326D" + brightGreen: "#17F9D7" + brightYellow: "#FFEDBB" + brightBlue: "#A188F1" + brightMagenta: "#FF75B5" + brightCyan: "#F7B773" + brightWhite: "#D7E2FF" +meta: + mode: "dark" + accent: "red" + hue: 266 + pair: null + contrast: + fg: 89.9 + black: 29.8 + red: 36.1 + green: 85.5 + yellow: 95 + blue: 45.3 + magenta: 52.1 + cyan: 69.1 + white: 87.4 + brightBlack: 29.8 + brightRed: 36.1 + brightGreen: 85.5 + brightYellow: 95 + brightBlue: 45.3 + brightMagenta: 52.1 + brightCyan: 69.1 + brightWhite: 87.4 diff --git a/themes/papaya.yaml b/themes/papaya.yaml index 129c09b3..31a9f97a 100644 --- a/themes/papaya.yaml +++ b/themes/papaya.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fethalen.papaya" version: "0.1.2" installs: 4328 + rating: 5 + ratings: 1 author: "fethalen" repo: "git://github.com/fethalen/papaya" url: "https://marketplace.visualstudio.com/items?itemName=fethalen.papaya" diff --git a/themes/para-so-dark.yaml b/themes/para-so-dark.yaml new file mode 100644 index 00000000..3f3d679d --- /dev/null +++ b/themes/para-so-dark.yaml @@ -0,0 +1,52 @@ +name: "Paraíso (dark)" +source: + marketplace_id: "treffynnon.paraiso-dark-vscode-theme" + version: "1.0.2" + installs: 220 + rating: 0 + ratings: 0 + author: "treffynnon" + repo: "https://github.com/treffynnon/paraiso-dark-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=treffynnon.paraiso-dark-vscode-theme" +colors: + bg: "#2F1E2E" + fg: "#A39E9B" + black: "#2F1E2E" + red: "#EF6155" + green: "#48B685" + yellow: "#FEC418" + blue: "#06B6EF" + magenta: "#815BA4" + cyan: "#5BC4BF" + white: "#A39E9B" + brightBlack: "#776E71" + brightRed: "#EF6155" + brightGreen: "#48B685" + brightYellow: "#FEC418" + brightBlue: "#06B6EF" + brightMagenta: "#815BA4" + brightCyan: "#5BC4BF" + brightWhite: "#E7E9DB" +meta: + mode: "dark" + accent: "orange" + hue: 329 + pair: null + contrast: + fg: 47.5 + black: 0 + red: 40.3 + green: 49.9 + yellow: 73.4 + blue: 53.7 + magenta: 22.8 + cyan: 59.1 + white: 47.5 + brightBlack: 24.8 + brightRed: 40.3 + brightGreen: 49.9 + brightYellow: 73.4 + brightBlue: 53.7 + brightMagenta: 22.8 + brightCyan: 59.1 + brightWhite: 89.9 diff --git a/themes/paradise.yaml b/themes/paradise.yaml index 46597605..7a8e57ff 100644 --- a/themes/paradise.yaml +++ b/themes/paradise.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Manas.paradise-vscode" version: "0.0.2" installs: 1552 + rating: 0 + ratings: 0 author: "Manas" repo: "https://github.com/paradise-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=Manas.paradise-vscode" diff --git a/themes/parakeet-theme.yaml b/themes/parakeet-theme.yaml index a835f9f9..70c02a2f 100644 --- a/themes/parakeet-theme.yaml +++ b/themes/parakeet-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NyctibiusVII.descomplica-theme" version: "1.4.18" installs: 387 + rating: 5 + ratings: 2 author: "NyctibiusVII" repo: "https://github.com/Descomplica-ADS/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.descomplica-theme" diff --git a/themes/parchment-candlelight-color-theme.yaml b/themes/parchment-candlelight-color-theme.yaml index 37085e5e..5fe8e92c 100644 --- a/themes/parchment-candlelight-color-theme.yaml +++ b/themes/parchment-candlelight-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "johv.parchment-light" version: "1.10.0" installs: 3883 + rating: 5 + ratings: 2 author: "Jonas Hvid" repo: "https://github.com/c2d7fa/vscode-parchment-light" url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" diff --git a/themes/parchment-codex-color-theme.yaml b/themes/parchment-codex-color-theme.yaml index 2c37a7fa..3ce59d22 100644 --- a/themes/parchment-codex-color-theme.yaml +++ b/themes/parchment-codex-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "johv.parchment-light" version: "1.10.0" installs: 3883 + rating: 5 + ratings: 2 author: "Jonas Hvid" repo: "https://github.com/c2d7fa/vscode-parchment-light" url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" diff --git a/themes/parchment-digitized-color-theme.yaml b/themes/parchment-digitized-color-theme.yaml index e44b7f16..9029fd46 100644 --- a/themes/parchment-digitized-color-theme.yaml +++ b/themes/parchment-digitized-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "johv.parchment-light" version: "1.10.0" installs: 3883 + rating: 5 + ratings: 2 author: "Jonas Hvid" repo: "https://github.com/c2d7fa/vscode-parchment-light" url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" diff --git a/themes/parchment-starlight-color-theme.yaml b/themes/parchment-starlight-color-theme.yaml index 4ebacb73..df365153 100644 --- a/themes/parchment-starlight-color-theme.yaml +++ b/themes/parchment-starlight-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "johv.parchment-light" version: "1.10.0" installs: 3883 + rating: 5 + ratings: 2 author: "Jonas Hvid" repo: "https://github.com/c2d7fa/vscode-parchment-light" url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" diff --git a/themes/parchment.yaml b/themes/parchment.yaml index 98d15355..b8561caf 100644 --- a/themes/parchment.yaml +++ b/themes/parchment.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lumiknit.parchment" version: "0.0.11" installs: 4107 + rating: 5 + ratings: 1 author: "lumiknit" repo: "https://github.com/lumiknit/vscode-parchment-theme/" url: "https://marketplace.visualstudio.com/items?itemName=lumiknit.parchment" diff --git a/themes/pare-colors-theme.yaml b/themes/pare-colors-theme.yaml index 172bb22b..5a1324ee 100644 --- a/themes/pare-colors-theme.yaml +++ b/themes/pare-colors-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jliima.pare-colors-theme" version: "1.0.1" installs: 1272 + rating: 0 + ratings: 0 author: "Jere Liimatainen" repo: "https://github.com/jliima/vscode-pare-colors-theme" url: "https://marketplace.visualstudio.com/items?itemName=jliima.pare-colors-theme" diff --git a/themes/parkside-light.yaml b/themes/parkside-light.yaml index 576936f4..74ce437b 100644 --- a/themes/parkside-light.yaml +++ b/themes/parkside-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "marcuskaz.parkside-light-theme" version: "1.3.4" installs: 22 + rating: 5 + ratings: 1 author: "Marcus Kazmierczak" repo: "https://github.com/mkaz/parkside-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=marcuskaz.parkside-light-theme" diff --git a/themes/paro-paro-solarized-dark-theme.yaml b/themes/paro-paro-solarized-dark-theme.yaml index ad288a4f..8709c1ba 100644 --- a/themes/paro-paro-solarized-dark-theme.yaml +++ b/themes/paro-paro-solarized-dark-theme.yaml @@ -1,11 +1,13 @@ name: "Paro-Paro-Solarized-Dark-Theme" source: - marketplace_id: "Paro-Paro.paro-paro-themes" - version: "2.0.2" - installs: 35 + marketplace_id: "Paro-Paro.paro-paro-solarized-dark" + version: "1.2.2" + installs: 98 + rating: 0 + ratings: 0 author: "Paro-Paro" - repo: "https://github.com/paro-paro/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Paro-Paro.paro-paro-themes" + repo: "https://github.com/paro-paro/paro-paro-solarized-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Paro-Paro.paro-paro-solarized-dark" colors: bg: "#212121" fg: "#EEFFFF" @@ -16,7 +18,7 @@ colors: blue: "#1460D2" magenta: "#C792EA" cyan: "#00BBBB" - white: "#F5F5F5" + white: "#EEFFFF" brightBlack: "#002B36" brightRed: "#CB4B16" brightGreen: "#586E75" @@ -39,7 +41,7 @@ meta: blue: 21.3 magenta: 52.5 cyan: 53.6 - white: 99 + white: 103.3 brightBlack: 0 brightRed: 28.4 brightGreen: 22.7 diff --git a/themes/pastel-contrast.yaml b/themes/pastel-contrast.yaml index 74f3e3b0..d6687be3 100644 --- a/themes/pastel-contrast.yaml +++ b/themes/pastel-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/pastel-inu.yaml b/themes/pastel-inu.yaml index e5be7c9e..1af34c81 100644 --- a/themes/pastel-inu.yaml +++ b/themes/pastel-inu.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "d-end.pastel-inu" version: "0.0.6" installs: 1571 + rating: 5 + ratings: 1 author: "d end" repo: "https://github.com/itsdend/pastel_inu" url: "https://marketplace.visualstudio.com/items?itemName=d-end.pastel-inu" diff --git a/themes/pastel-light.yaml b/themes/pastel-light.yaml index f8af169a..c9142547 100644 --- a/themes/pastel-light.yaml +++ b/themes/pastel-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/pastel-sorbet.yaml b/themes/pastel-sorbet.yaml new file mode 100644 index 00000000..1d132a53 --- /dev/null +++ b/themes/pastel-sorbet.yaml @@ -0,0 +1,52 @@ +name: "Pastel-Sorbet" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#091F1B" + fg: "#EAFFD1" + black: "#091F1B" + red: "#7C1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#95DFD2" + magenta: "#95DFD2" + cyan: "#29C3A0" + white: "#EAFFD1" + brightBlack: "#091F1B" + brightRed: "#7C1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#95DFD2" + brightMagenta: "#95DFD2" + brightCyan: "#29C3A0" + brightWhite: "#EAFFD1" +meta: + mode: "dark" + accent: "yellow" + hue: 180 + pair: null + contrast: + fg: 101.5 + black: 0 + red: 8.3 + green: 57.1 + yellow: 51.1 + blue: 77.3 + magenta: 77.3 + cyan: 57.1 + white: 101.5 + brightBlack: 0 + brightRed: 8.3 + brightGreen: 57.1 + brightYellow: 51.1 + brightBlue: 77.3 + brightMagenta: 77.3 + brightCyan: 57.1 + brightWhite: 101.5 diff --git a/themes/pastel.yaml b/themes/pastel.yaml index 940491ab..f8dd6d9a 100644 --- a/themes/pastel.yaml +++ b/themes/pastel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Tsun.Pastelization" version: "0.0.3" installs: 407 + rating: 0 + ratings: 0 author: "Tsun" repo: "https://github.com/HEKYPTO/Pastelization" url: "https://marketplace.visualstudio.com/items?itemName=Tsun.Pastelization" diff --git a/themes/pastelefull.yaml b/themes/pastelefull.yaml index dde74cc8..86fcbb92 100644 --- a/themes/pastelefull.yaml +++ b/themes/pastelefull.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HarleyTorrisi.pastelefull" version: "0.0.3" installs: 795 + rating: 0 + ratings: 0 author: "Harley Torrisi" repo: "https://github.com/Harley-Torrisi/Paselefull" url: "https://marketplace.visualstudio.com/items?itemName=HarleyTorrisi.pastelefull" diff --git a/themes/pastelfairy.yaml b/themes/pastelfairy.yaml index ad6e96c3..b1e1f349 100644 --- a/themes/pastelfairy.yaml +++ b/themes/pastelfairy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tetracalibers.pastelfairy" version: "1.0.0" installs: 874 + rating: 5 + ratings: 1 author: "tomixy" repo: "https://github.com/tetracalibers/PastelFairy" url: "https://marketplace.visualstudio.com/items?itemName=tetracalibers.pastelfairy" diff --git a/themes/pastellize-dark-muted.yaml b/themes/pastellize-dark-muted.yaml index 576fedc6..aacd0f39 100644 --- a/themes/pastellize-dark-muted.yaml +++ b/themes/pastellize-dark-muted.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vulfpeck.pastellize" version: "0.0.3" installs: 656 + rating: 5 + ratings: 1 author: "vulfpeck" repo: "https://github.com/Vulfpeck/pastellize" url: "https://marketplace.visualstudio.com/items?itemName=vulfpeck.pastellize" diff --git a/themes/patina-colors.yaml b/themes/patina-colors.yaml index 287f6094..b158c0c3 100644 --- a/themes/patina-colors.yaml +++ b/themes/patina-colors.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SantiagoBobrik.patina-colors" version: "0.2.1" installs: 21 + rating: 0 + ratings: 0 author: "SantiagoBobrik" repo: "https://github.com/SantiagoBobrik/patina-colors" url: "https://marketplace.visualstudio.com/items?itemName=SantiagoBobrik.patina-colors" diff --git a/themes/patr-theme.yaml b/themes/patr-theme.yaml index efa0863d..1ed0b6ab 100644 --- a/themes/patr-theme.yaml +++ b/themes/patr-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "patr-cloud.patr-theme" version: "0.0.2" installs: 133 + rating: 0 + ratings: 0 author: "Patr Cloud" repo: null url: "https://marketplace.visualstudio.com/items?itemName=patr-cloud.patr-theme" diff --git a/themes/patricklimax.yaml b/themes/patricklimax.yaml index 0dea8314..8565a816 100644 --- a/themes/patricklimax.yaml +++ b/themes/patricklimax.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "patricklimax.theme-trick" version: "0.4.0" installs: 1056 + rating: 5 + ratings: 1 author: "patricklimax" repo: "www.github.com/patricklimax/vscode-theme-trick" url: "https://marketplace.visualstudio.com/items?itemName=patricklimax.theme-trick" diff --git a/themes/patriot-contrast.yaml b/themes/patriot-contrast.yaml index ff4ba2f4..823369fa 100644 --- a/themes/patriot-contrast.yaml +++ b/themes/patriot-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/patriot-light.yaml b/themes/patriot-light.yaml index 3feaaec9..94ec3d80 100644 --- a/themes/patriot-light.yaml +++ b/themes/patriot-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/patriot.yaml b/themes/patriot.yaml index f9757c27..1d82cd8a 100644 --- a/themes/patriot.yaml +++ b/themes/patriot.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/paulera-s-dark-monokai.yaml b/themes/paulera-s-dark-monokai.yaml index 6e30366b..81f3fc82 100644 --- a/themes/paulera-s-dark-monokai.yaml +++ b/themes/paulera-s-dark-monokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Paulera.paulerathemes" version: "1.4.3" installs: 1867 + rating: 0 + ratings: 0 author: "Paulera" repo: "https://github.com/paulo-evangelista" url: "https://marketplace.visualstudio.com/items?itemName=Paulera.paulerathemes" diff --git a/themes/paulera-s-lyo.yaml b/themes/paulera-s-lyo.yaml index a5c931a1..899dc442 100644 --- a/themes/paulera-s-lyo.yaml +++ b/themes/paulera-s-lyo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Paulera.paulerathemes" version: "1.4.3" installs: 1867 + rating: 0 + ratings: 0 author: "Paulera" repo: "https://github.com/paulo-evangelista" url: "https://marketplace.visualstudio.com/items?itemName=Paulera.paulerathemes" diff --git a/themes/paztels.yaml b/themes/paztels.yaml index 3f6ebd71..0d336557 100644 --- a/themes/paztels.yaml +++ b/themes/paztels.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SonicFixation.Paztels" version: "1.1.1" installs: 224 + rating: 5 + ratings: 1 author: "SonicFixation" repo: "https://github.com/SonicFixation/Paztels" url: "https://marketplace.visualstudio.com/items?itemName=SonicFixation.Paztels" diff --git a/themes/peace-of-the-eye-dracula-version.yaml b/themes/peace-of-the-eye-dracula-version.yaml new file mode 100644 index 00000000..072214c5 --- /dev/null +++ b/themes/peace-of-the-eye-dracula-version.yaml @@ -0,0 +1,52 @@ +name: "Peace of the eye - Dracula version" +source: + marketplace_id: "HasibX2000.slabs" + version: "0.0.2" + installs: 3516 + rating: 0 + ratings: 0 + author: "Hasibur Rahman" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slabs" +colors: + bg: "#122033" + fg: "#FFFFFF" + black: "#122033" + red: "#E35535" + green: "#52AB62" + yellow: "#FFD866" + blue: "#00B3BD" + magenta: "#E991E3" + cyan: "#78E8C6" + white: "#FFFFFF" + brightBlack: "#00B3BD" + brightRed: "#E35535" + brightGreen: "#52AB62" + brightYellow: "#FFD866" + brightBlue: "#00B3BD" + brightMagenta: "#E991E3" + brightCyan: "#78E8C6" + brightWhite: "#00B3BD" +meta: + mode: "dark" + accent: "orange" + hue: 256 + pair: null + contrast: + fg: 105.8 + black: 0 + red: 35.6 + green: 45.3 + yellow: 83.2 + blue: 50.3 + magenta: 57.4 + cyan: 78.6 + white: 105.8 + brightBlack: 50.3 + brightRed: 35.6 + brightGreen: 45.3 + brightYellow: 83.2 + brightBlue: 50.3 + brightMagenta: 57.4 + brightCyan: 78.6 + brightWhite: 50.3 diff --git a/themes/peachy-dolphin.yaml b/themes/peachy-dolphin.yaml index 269cdfa4..a030527a 100644 --- a/themes/peachy-dolphin.yaml +++ b/themes/peachy-dolphin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Durelius.peachy-dolphin" version: "0.0.2" installs: 64 + rating: 0 + ratings: 0 author: "Durelius" repo: "https://github.com/durelius/notyet" url: "https://marketplace.visualstudio.com/items?itemName=Durelius.peachy-dolphin" diff --git a/themes/peachy.yaml b/themes/peachy.yaml index 16361396..18a3f3d1 100644 --- a/themes/peachy.yaml +++ b/themes/peachy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Beamaia.peachy" version: "0.0.1" installs: 1649 + rating: 5 + ratings: 2 author: "Beamaia" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Beamaia.peachy" diff --git a/themes/peacock-contrast.yaml b/themes/peacock-contrast.yaml index fd031bf5..d0d5c812 100644 --- a/themes/peacock-contrast.yaml +++ b/themes/peacock-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/peacock-light.yaml b/themes/peacock-light.yaml index 995e780d..cdc04fd2 100644 --- a/themes/peacock-light.yaml +++ b/themes/peacock-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/peacock.yaml b/themes/peacock.yaml index 2d817d94..56f0b7bf 100644 --- a/themes/peacock.yaml +++ b/themes/peacock.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/peacocks-in-space-contrast.yaml b/themes/peacocks-in-space-contrast.yaml index 0c98f29d..0805422e 100644 --- a/themes/peacocks-in-space-contrast.yaml +++ b/themes/peacocks-in-space-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/peacocks-in-space-light.yaml b/themes/peacocks-in-space-light.yaml index 2f896180..b5772eb5 100644 --- a/themes/peacocks-in-space-light.yaml +++ b/themes/peacocks-in-space-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/peacocks-in-space.yaml b/themes/peacocks-in-space.yaml index 8875a058..0986ab18 100644 --- a/themes/peacocks-in-space.yaml +++ b/themes/peacocks-in-space.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/peel-contrast.yaml b/themes/peel-contrast.yaml index b0836256..6cc1d112 100644 --- a/themes/peel-contrast.yaml +++ b/themes/peel-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/peel-light.yaml b/themes/peel-light.yaml index e0607f2d..0a95a2a6 100644 --- a/themes/peel-light.yaml +++ b/themes/peel-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/peel.yaml b/themes/peel.yaml index 33a73235..fcb78d03 100644 --- a/themes/peel.yaml +++ b/themes/peel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/penitent-contrast.yaml b/themes/penitent-contrast.yaml index 9b83dc62..efba7a3c 100644 --- a/themes/penitent-contrast.yaml +++ b/themes/penitent-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/penitent-light.yaml b/themes/penitent-light.yaml index 31c62e8f..dbbf0908 100644 --- a/themes/penitent-light.yaml +++ b/themes/penitent-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/penitent.yaml b/themes/penitent.yaml index 7336f923..90b7ff04 100644 --- a/themes/penitent.yaml +++ b/themes/penitent.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/penumbra-dark-contrast.yaml b/themes/penumbra-dark-contrast.yaml index 643eb831..9056878d 100644 --- a/themes/penumbra-dark-contrast.yaml +++ b/themes/penumbra-dark-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PenumbraTheme.penumbra" version: "0.4.0" installs: 11883 + rating: 5 + ratings: 3 author: "Penumbra Theme" repo: "https://github.com/nealmckee/penumbra_vscode" url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" diff --git a/themes/penumbra-dark.yaml b/themes/penumbra-dark.yaml index 48e10066..8dfaedba 100644 --- a/themes/penumbra-dark.yaml +++ b/themes/penumbra-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PenumbraTheme.penumbra" version: "0.4.0" installs: 11883 + rating: 5 + ratings: 3 author: "Penumbra Theme" repo: "https://github.com/nealmckee/penumbra_vscode" url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" diff --git a/themes/penumbra-light.yaml b/themes/penumbra-light.yaml index d16b32bf..e52098c8 100644 --- a/themes/penumbra-light.yaml +++ b/themes/penumbra-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PenumbraTheme.penumbra" version: "0.4.0" installs: 11883 + rating: 5 + ratings: 3 author: "Penumbra Theme" repo: "https://github.com/nealmckee/penumbra_vscode" url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" diff --git a/themes/perf-pink.yaml b/themes/perf-pink.yaml index 4178b1dc..3fe5dbb4 100644 --- a/themes/perf-pink.yaml +++ b/themes/perf-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tselmeg.pink-serena" version: "0.2.0" installs: 2490 + rating: 0 + ratings: 0 author: "Serena" repo: "https://github.com/utselmeg/perf-pink-theme" url: "https://marketplace.visualstudio.com/items?itemName=tselmeg.pink-serena" diff --git a/themes/perfect-dark.yaml b/themes/perfect-dark.yaml index c26ce1b1..0619b6cf 100644 --- a/themes/perfect-dark.yaml +++ b/themes/perfect-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PerfectThings.perfect-dark" version: "0.0.7" installs: 760 + rating: 5 + ratings: 2 author: "Perfect Things" repo: "https://github.com/perfect-things/vscode-perfect-dark" url: "https://marketplace.visualstudio.com/items?itemName=PerfectThings.perfect-dark" diff --git a/themes/perfect-grey-pf-dark.yaml b/themes/perfect-grey-pf-dark.yaml index 74bca1d7..521dff41 100644 --- a/themes/perfect-grey-pf-dark.yaml +++ b/themes/perfect-grey-pf-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PF.perfect-grey-pf" version: "0.0.1" installs: 3242 + rating: 5 + ratings: 1 author: "PF" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PF.perfect-grey-pf" diff --git a/themes/perfect-grey-pf-light.yaml b/themes/perfect-grey-pf-light.yaml index 877d939e..175a2a63 100644 --- a/themes/perfect-grey-pf-light.yaml +++ b/themes/perfect-grey-pf-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PF.perfect-grey-pf" version: "0.0.1" installs: 3242 + rating: 5 + ratings: 1 author: "PF" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PF.perfect-grey-pf" diff --git a/themes/perfection-fresh-dark.yaml b/themes/perfection-fresh-dark.yaml new file mode 100644 index 00000000..dc282eb0 --- /dev/null +++ b/themes/perfection-fresh-dark.yaml @@ -0,0 +1,52 @@ +name: "Perfection Fresh Dark" +source: + marketplace_id: "lucidlabs.perfection-fresh-theme" + version: "1.4.0" + installs: 13 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.perfection-fresh-theme" +colors: + bg: "#141414" + fg: "#E8E6E2" + black: "#0A0A0A" + red: "#E05050" + green: "#78D68A" + yellow: "#F0C850" + blue: "#5AABE0" + magenta: "#D070B8" + cyan: "#4DB8A0" + white: "#E8E6E2" + brightBlack: "#999999" + brightRed: "#E87272" + brightGreen: "#90E8A0" + brightYellow: "#F8D868" + brightBlue: "#78BFE8" + brightMagenta: "#E090C8" + brightCyan: "#68C8B0" + brightWhite: "#F0EEEA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Perfection Fresh Light" + contrast: + fg: 91 + black: 0 + red: 35.8 + green: 69.2 + yellow: 75.1 + blue: 52 + magenta: 42.9 + cyan: 53.9 + white: 91 + brightBlack: 46.5 + brightRed: 45.3 + brightGreen: 80.2 + brightYellow: 83.5 + brightBlue: 62.6 + brightMagenta: 55.5 + brightCyan: 63 + brightWhite: 96.1 diff --git a/themes/perfection-fresh-light.yaml b/themes/perfection-fresh-light.yaml new file mode 100644 index 00000000..4efc87e8 --- /dev/null +++ b/themes/perfection-fresh-light.yaml @@ -0,0 +1,52 @@ +name: "Perfection Fresh Light" +source: + marketplace_id: "lucidlabs.perfection-fresh-theme" + version: "1.4.0" + installs: 13 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.perfection-fresh-theme" +colors: + bg: "#FFFFFF" + fg: "#1A1A1A" + black: "#1A1A1A" + red: "#CC2936" + green: "#1B5633" + yellow: "#A86B20" + blue: "#2874A6" + magenta: "#8B2870" + cyan: "#186B5E" + white: "#FFFFFF" + brightBlack: "#6B6B6B" + brightRed: "#E03040" + brightGreen: "#238040" + brightYellow: "#B87828" + brightBlue: "#3088C0" + brightMagenta: "#A03888" + brightCyan: "#208070" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Perfection Fresh Dark" + contrast: + fg: 104.3 + black: 104.3 + red: 74.9 + green: 89.4 + yellow: 70.1 + blue: 74.7 + magenta: 86.7 + cyan: 81.3 + white: 0 + brightBlack: 76.5 + brightRed: 69.6 + brightGreen: 73.9 + brightYellow: 63.8 + brightBlue: 65.9 + brightMagenta: 79.9 + brightCyan: 72.9 + brightWhite: 0 diff --git a/themes/periwinkle-color-theme.yaml b/themes/periwinkle-color-theme.yaml index 50d49d3e..342d73cd 100644 --- a/themes/periwinkle-color-theme.yaml +++ b/themes/periwinkle-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wavebeem.theme-unoduetre" version: "5.11.1" installs: 4290 + rating: 5 + ratings: 5 author: "Sage Fennel" repo: "https://github.com/wavebeem/vscode-theme-unoduetre" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" diff --git a/themes/periwinkle-soft-dark.yaml b/themes/periwinkle-soft-dark.yaml index 3c19e527..e678c93d 100644 --- a/themes/periwinkle-soft-dark.yaml +++ b/themes/periwinkle-soft-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itskarelleh.periwinkle" version: "0.0.3" installs: 42 + rating: 0 + ratings: 0 author: "Karelle Hofler" repo: "https://github.com/itskarelleh/periwinkle-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=itskarelleh.periwinkle" diff --git a/themes/perplexity.yaml b/themes/perplexity.yaml index 9e6c946f..4071f50c 100644 --- a/themes/perplexity.yaml +++ b/themes/perplexity.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cottonable.perplexity" version: "1.0.2" installs: 6590 + rating: 5 + ratings: 1 author: "cottonable" repo: "https://github.com/cottonable/perplexity-vscode" url: "https://marketplace.visualstudio.com/items?itemName=cottonable.perplexity" diff --git a/themes/perry-the-platypus.yaml b/themes/perry-the-platypus.yaml index 0f9cdf2d..a578a6cf 100644 --- a/themes/perry-the-platypus.yaml +++ b/themes/perry-the-platypus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ArkaBanerjee.compact-vs-code" version: "1.1.1" installs: 106 + rating: 0 + ratings: 0 author: "Arka Banerjee" repo: "https://github.com/thearkabanerjee/Compact-VS-Code" url: "https://marketplace.visualstudio.com/items?itemName=ArkaBanerjee.compact-vs-code" diff --git a/themes/petrel.yaml b/themes/petrel.yaml index e92a8a0d..924470c0 100644 --- a/themes/petrel.yaml +++ b/themes/petrel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bbrakenhoff.seabird" version: "0.0.4" installs: 754 + rating: 4.5 + ratings: 2 author: "bbrakenhoff" repo: "https://github.com/bbrakenhoff/seabird-vscode" url: "https://marketplace.visualstudio.com/items?itemName=bbrakenhoff.seabird" diff --git a/themes/pg-aqualung.yaml b/themes/pg-aqualung.yaml index bd2eaf8f..06dde992 100644 --- a/themes/pg-aqualung.yaml +++ b/themes/pg-aqualung.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brennacodes.plum-good-theme" version: "0.8.0" installs: 444 + rating: 5 + ratings: 1 author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "purple" hue: 248 + pair: null contrast: fg: 97.1 black: 0 diff --git a/themes/pg-blue-moon.yaml b/themes/pg-blue-moon.yaml index 2c655954..b7cbe922 100644 --- a/themes/pg-blue-moon.yaml +++ b/themes/pg-blue-moon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brennacodes.plum-good-theme" version: "0.8.0" installs: 444 + rating: 5 + ratings: 1 author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "purple" hue: 278 + pair: null contrast: fg: 95.6 black: 0 diff --git a/themes/pg-forest.yaml b/themes/pg-forest.yaml index 2bbe8652..00ae94ea 100644 --- a/themes/pg-forest.yaml +++ b/themes/pg-forest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brennacodes.plum-good-theme" version: "0.8.0" installs: 444 + rating: 5 + ratings: 1 author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 92.2 black: 0 diff --git a/themes/pg-may-be-concrete.yaml b/themes/pg-may-be-concrete.yaml index 538cdde3..e7c20bc5 100644 --- a/themes/pg-may-be-concrete.yaml +++ b/themes/pg-may-be-concrete.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brennacodes.plum-good-theme" version: "0.8.0" installs: 444 + rating: 5 + ratings: 1 author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 243 + pair: null contrast: fg: 89.7 black: 12.8 diff --git a/themes/pg-mud-puddle.yaml b/themes/pg-mud-puddle.yaml index 12f34ff1..b7b45e83 100644 --- a/themes/pg-mud-puddle.yaml +++ b/themes/pg-mud-puddle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brennacodes.plum-good-theme" version: "0.8.0" installs: 444 + rating: 5 + ratings: 1 author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 74 + pair: null contrast: fg: 91.2 black: 9.6 diff --git a/themes/pg-plum-great.yaml b/themes/pg-plum-great.yaml index ad06673a..6f8e4f1b 100644 --- a/themes/pg-plum-great.yaml +++ b/themes/pg-plum-great.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brennacodes.plum-good-theme" version: "0.8.0" installs: 444 + rating: 5 + ratings: 1 author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 305 + pair: null contrast: fg: 88.1 black: 0 diff --git a/themes/pg-plum-groovy.yaml b/themes/pg-plum-groovy.yaml index 9165903a..77d5ed36 100644 --- a/themes/pg-plum-groovy.yaml +++ b/themes/pg-plum-groovy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brennacodes.plum-good-theme" version: "0.8.0" installs: 444 + rating: 5 + ratings: 1 author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 305 + pair: null contrast: fg: 86.4 black: 0 diff --git a/themes/pg-punkin-spice.yaml b/themes/pg-punkin-spice.yaml index 84ca9faa..a01d5548 100644 --- a/themes/pg-punkin-spice.yaml +++ b/themes/pg-punkin-spice.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brennacodes.plum-good-theme" version: "0.8.0" installs: 444 + rating: 5 + ratings: 1 author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 40 black: 0 diff --git a/themes/pg-red-clay.yaml b/themes/pg-red-clay.yaml index 69708b6e..1eba40dd 100644 --- a/themes/pg-red-clay.yaml +++ b/themes/pg-red-clay.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brennacodes.plum-good-theme" version: "0.8.0" installs: 444 + rating: 5 + ratings: 1 author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 31 + pair: null contrast: fg: 88.5 black: 9.8 diff --git a/themes/pg-ridgeline.yaml b/themes/pg-ridgeline.yaml index 44d9bbf7..be45adcb 100644 --- a/themes/pg-ridgeline.yaml +++ b/themes/pg-ridgeline.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brennacodes.plum-good-theme" version: "0.8.0" installs: 444 + rating: 5 + ratings: 1 author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 88 + pair: null contrast: fg: 59.7 black: 0 diff --git a/themes/pg-ruby-clay.yaml b/themes/pg-ruby-clay.yaml index 21c01238..179939f0 100644 --- a/themes/pg-ruby-clay.yaml +++ b/themes/pg-ruby-clay.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brennacodes.plum-good-theme" version: "0.8.0" installs: 444 + rating: 5 + ratings: 1 author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 63.7 black: 0 diff --git a/themes/pg-ruby-soho.yaml b/themes/pg-ruby-soho.yaml index 6a001fde..ce326f4c 100644 --- a/themes/pg-ruby-soho.yaml +++ b/themes/pg-ruby-soho.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brennacodes.plum-good-theme" version: "0.8.0" installs: 444 + rating: 5 + ratings: 1 author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 19 + pair: null contrast: fg: 93.6 black: 0 diff --git a/themes/pg-slax.yaml b/themes/pg-slax.yaml index d3a4a553..8817b70e 100644 --- a/themes/pg-slax.yaml +++ b/themes/pg-slax.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brennacodes.plum-good-theme" version: "0.8.0" installs: 444 + rating: 5 + ratings: 1 author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 72 black: 0 diff --git a/themes/pg-steely-daniel.yaml b/themes/pg-steely-daniel.yaml index 520d7ece..2e38af7b 100644 --- a/themes/pg-steely-daniel.yaml +++ b/themes/pg-steely-daniel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brennacodes.plum-good-theme" version: "0.8.0" installs: 444 + rating: 5 + ratings: 1 author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 65.8 black: 0 diff --git a/themes/pglight.yaml b/themes/pglight.yaml index 2cf9b0a5..b42317ef 100644 --- a/themes/pglight.yaml +++ b/themes/pglight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "securisec.hapsida-securisec" version: "0.0.30" installs: 226 + rating: 5 + ratings: 1 author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" diff --git a/themes/phantom.yaml b/themes/phantom.yaml index f48e951c..7d5785f3 100644 --- a/themes/phantom.yaml +++ b/themes/phantom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MynaVu.phantom-theme" version: "0.4.3" installs: 91 + rating: 0 + ratings: 0 author: "Myna Vu" repo: "https://github.com/mynavu/Phantom-Theme" url: "https://marketplace.visualstudio.com/items?itemName=MynaVu.phantom-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "indigo" hue: 291 + pair: null contrast: fg: 106.7 black: 15.6 diff --git a/themes/phocus.yaml b/themes/phocus.yaml index 2c608b06..5d1044eb 100644 --- a/themes/phocus.yaml +++ b/themes/phocus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "phisch.phocus-vscode" version: "1.1.0" installs: 2020 + rating: 0 + ratings: 0 author: "Philipp Schaffrath" repo: "https://github.com/phocus/vscode" url: "https://marketplace.visualstudio.com/items?itemName=phisch.phocus-vscode" diff --git a/themes/phonebook-dark.yaml b/themes/phonebook-dark.yaml index 4be81e87..2a228e6f 100644 --- a/themes/phonebook-dark.yaml +++ b/themes/phonebook-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nick-carnival.phonebook-theme" version: "1.1.2" installs: 1098 + rating: 5 + ratings: 1 author: "Nick Carnival" repo: "https://github.com/nickcarnival/vscode-phonebook" url: "https://marketplace.visualstudio.com/items?itemName=nick-carnival.phonebook-theme" diff --git a/themes/phonebook-light.yaml b/themes/phonebook-light.yaml index a4daba4d..7508ed2b 100644 --- a/themes/phonebook-light.yaml +++ b/themes/phonebook-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nick-carnival.phonebook-theme" version: "1.1.2" installs: 1098 + rating: 5 + ratings: 1 author: "Nick Carnival" repo: "https://github.com/nickcarnival/vscode-phonebook" url: "https://marketplace.visualstudio.com/items?itemName=nick-carnival.phonebook-theme" diff --git a/themes/phosphor-amber-night.yaml b/themes/phosphor-amber-night.yaml index c44f78f7..36fea4b4 100644 --- a/themes/phosphor-amber-night.yaml +++ b/themes/phosphor-amber-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "glidebuild.phosphor-themes" version: "1.0.0" installs: 40 + rating: 0 + ratings: 0 author: "glide.build" repo: "https://github.com/mo-shawa/phosphor-themes" url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 274 + pair: null contrast: fg: 61.8 black: 0 diff --git a/themes/phosphor-aurora.yaml b/themes/phosphor-aurora.yaml index 02c6c6ee..85d8ec1d 100644 --- a/themes/phosphor-aurora.yaml +++ b/themes/phosphor-aurora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "glidebuild.phosphor-themes" version: "1.0.0" installs: 40 + rating: 0 + ratings: 0 author: "glide.build" repo: "https://github.com/mo-shawa/phosphor-themes" url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "teal" hue: 269 + pair: null contrast: fg: 77 black: 0 diff --git a/themes/phosphor-dark.yaml b/themes/phosphor-dark.yaml index 1f7df6fc..2f0c020c 100644 --- a/themes/phosphor-dark.yaml +++ b/themes/phosphor-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "phosphor-icons.phosphor-theme" version: "0.1.2" installs: 1671 + rating: 5 + ratings: 3 author: "Phosphor Icons" repo: "https://github.com/phosphor-icons/theme" url: "https://marketplace.visualstudio.com/items?itemName=phosphor-icons.phosphor-theme" diff --git a/themes/phosphor-dreams.yaml b/themes/phosphor-dreams.yaml index f943d8d3..4d69c410 100644 --- a/themes/phosphor-dreams.yaml +++ b/themes/phosphor-dreams.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "glidebuild.phosphor-themes" version: "1.0.0" installs: 40 + rating: 0 + ratings: 0 author: "glide.build" repo: "https://github.com/mo-shawa/phosphor-themes" url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 68.9 black: 0 diff --git a/themes/phosphor-event-horizon.yaml b/themes/phosphor-event-horizon.yaml index e518888f..d63893c7 100644 --- a/themes/phosphor-event-horizon.yaml +++ b/themes/phosphor-event-horizon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "glidebuild.phosphor-themes" version: "1.0.0" installs: 40 + rating: 0 + ratings: 0 author: "glide.build" repo: "https://github.com/mo-shawa/phosphor-themes" url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 53.9 black: 0 diff --git a/themes/phosphor-forest.yaml b/themes/phosphor-forest.yaml index 04909bd4..34000fce 100644 --- a/themes/phosphor-forest.yaml +++ b/themes/phosphor-forest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "glidebuild.phosphor-themes" version: "1.0.0" installs: 40 + rating: 0 + ratings: 0 author: "glide.build" repo: "https://github.com/mo-shawa/phosphor-themes" url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "teal" hue: 163 + pair: null contrast: fg: 59.2 black: 0 diff --git a/themes/phosphor-neon-noir.yaml b/themes/phosphor-neon-noir.yaml index 10f1a237..cc5a9441 100644 --- a/themes/phosphor-neon-noir.yaml +++ b/themes/phosphor-neon-noir.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "glidebuild.phosphor-themes" version: "1.0.0" installs: 40 + rating: 0 + ratings: 0 author: "glide.build" repo: "https://github.com/mo-shawa/phosphor-themes" url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 284 + pair: null contrast: fg: 71.7 black: 0 diff --git a/themes/phosphor-violet-dusk.yaml b/themes/phosphor-violet-dusk.yaml index 379a6022..1b5ee76f 100644 --- a/themes/phosphor-violet-dusk.yaml +++ b/themes/phosphor-violet-dusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "glidebuild.phosphor-themes" version: "1.0.0" installs: 40 + rating: 0 + ratings: 0 author: "glide.build" repo: "https://github.com/mo-shawa/phosphor-themes" url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "teal" hue: 294 + pair: null contrast: fg: 62.6 black: 0 diff --git a/themes/phosphorus-minor.yaml b/themes/phosphorus-minor.yaml index c26e1d64..c271d7eb 100644 --- a/themes/phosphorus-minor.yaml +++ b/themes/phosphorus-minor.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "adamsome.vscode-theme-phosphorus-minor" version: "1.1.3" installs: 421 + rating: 5 + ratings: 1 author: "adamsome" repo: "https://github.com/adamsome/vscode-theme-phosphorus-minor" url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-phosphorus-minor" diff --git a/themes/photonica-dark.yaml b/themes/photonica-dark.yaml index 4db4f07d..9eef7a22 100644 --- a/themes/photonica-dark.yaml +++ b/themes/photonica-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ConAntares.Photonica" version: "1.0.10" installs: 17846 + rating: 5 + ratings: 6 author: "Luke Niu" repo: "https://github.com/Photonico/Photonica" url: "https://marketplace.visualstudio.com/items?itemName=ConAntares.Photonica" diff --git a/themes/photonica-light.yaml b/themes/photonica-light.yaml index b2f971f2..6ac5e14b 100644 --- a/themes/photonica-light.yaml +++ b/themes/photonica-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ConAntares.Photonica" version: "1.0.10" installs: 17846 + rating: 5 + ratings: 6 author: "Luke Niu" repo: "https://github.com/Photonico/Photonica" url: "https://marketplace.visualstudio.com/items?itemName=ConAntares.Photonica" diff --git a/themes/photophore.yaml b/themes/photophore.yaml index cc64aace..cd6092ab 100644 --- a/themes/photophore.yaml +++ b/themes/photophore.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kenziebottoms.photophore" version: "0.0.3" installs: 819 + rating: 0 + ratings: 0 author: "Kenzie Bottoms" repo: "git+https://github.com/kenziebottoms/vscode-theme-photophore" url: "https://marketplace.visualstudio.com/items?itemName=kenziebottoms.photophore" diff --git a/themes/piattro.yaml b/themes/piattro.yaml index bd5c0432..3b0b6654 100644 --- a/themes/piattro.yaml +++ b/themes/piattro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "floedelmann.piattro" version: "0.3.0" installs: 378 + rating: 0 + ratings: 0 author: "Flo Edelmann" repo: null url: "https://marketplace.visualstudio.com/items?itemName=floedelmann.piattro" diff --git a/themes/pierre-dark.yaml b/themes/pierre-dark.yaml index b77e3f83..331cdf7d 100644 --- a/themes/pierre-dark.yaml +++ b/themes/pierre-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pierrecomputer.pierre-theme" version: "0.0.24" installs: 297 + rating: 5 + ratings: 1 author: "The Pierre Computer Co" repo: "https://github.com/pierrecomputer/theme" url: "https://marketplace.visualstudio.com/items?itemName=pierrecomputer.pierre-theme" diff --git a/themes/pierre-light.yaml b/themes/pierre-light.yaml index b48e0cbc..94e0ff14 100644 --- a/themes/pierre-light.yaml +++ b/themes/pierre-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pierrecomputer.pierre-theme" version: "0.0.24" installs: 297 + rating: 5 + ratings: 1 author: "The Pierre Computer Co" repo: "https://github.com/pierrecomputer/theme" url: "https://marketplace.visualstudio.com/items?itemName=pierrecomputer.pierre-theme" diff --git a/themes/piggy-bordered.yaml b/themes/piggy-bordered.yaml new file mode 100644 index 00000000..56baf89f --- /dev/null +++ b/themes/piggy-bordered.yaml @@ -0,0 +1,52 @@ +name: "Piggy Bordered" +source: + marketplace_id: "nachop51.nachop-theme" + version: "2.0.0" + installs: 303 + rating: 5 + ratings: 1 + author: "Nachop Peralta" + repo: "https://github.com/nachop51/nachop-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nachop51.nachop-theme" +colors: + bg: "#242430" + fg: "#DDC8EB" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#F0C758" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#FFEC80" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 285 + pair: null + contrast: + fg: 74.8 + black: 0 + red: 34.8 + green: 58.4 + yellow: 72.6 + blue: 47.7 + magenta: 37.1 + cyan: 50.6 + white: 81.1 + brightBlack: 13.5 + brightRed: 44.2 + brightGreen: 74.9 + brightYellow: 91.8 + brightBlue: 61.8 + brightMagenta: 48.3 + brightCyan: 65.9 + brightWhite: 88.7 diff --git a/themes/piggy-contrast.yaml b/themes/piggy-contrast.yaml index 344fb50c..10364389 100644 --- a/themes/piggy-contrast.yaml +++ b/themes/piggy-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/piggy-light.yaml b/themes/piggy-light.yaml index bd9d2034..0b537abf 100644 --- a/themes/piggy-light.yaml +++ b/themes/piggy-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/piggy.yaml b/themes/piggy.yaml index 2e607780..cbe77340 100644 --- a/themes/piggy.yaml +++ b/themes/piggy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/pillirioen.yaml b/themes/pillirioen.yaml new file mode 100644 index 00000000..5251e35d --- /dev/null +++ b/themes/pillirioen.yaml @@ -0,0 +1,52 @@ +name: "Pillirioen" +source: + marketplace_id: "Be-njamin.pillirioen" + version: "0.2.0" + installs: 2434 + rating: 5 + ratings: 1 + author: "Benjamin Vasquez" + repo: "https://github.com/Be-njamin/pillirioen" + url: "https://marketplace.visualstudio.com/items?itemName=Be-njamin.pillirioen" +colors: + bg: "#21262D" + fg: "#9199A1" + black: "#545D68" + red: "#C93C37" + green: "#347D39" + yellow: "#966600" + blue: "#316DCA" + magenta: "#AE4C82" + cyan: "#337582" + white: "#CDD9E5" + brightBlack: "#697482" + brightRed: "#FB4B44" + brightGreen: "#419C47" + brightYellow: "#BB7F00" + brightBlue: "#3D88FC" + brightMagenta: "#D95FA2" + brightCyan: "#3F92A2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 257 + pair: null + contrast: + fg: 43.6 + black: 15.9 + red: 25.2 + green: 23.9 + yellow: 24.4 + blue: 24.3 + magenta: 24.3 + cyan: 22.9 + white: 79.6 + brightBlack: 25.7 + brightRed: 38.6 + brightGreen: 36.9 + brightYellow: 37.3 + brightBlue: 37.3 + brightMagenta: 37.4 + brightCyan: 35.4 + brightWhite: 104.9 diff --git a/themes/pine-blue.yaml b/themes/pine-blue.yaml new file mode 100644 index 00000000..c212cf9e --- /dev/null +++ b/themes/pine-blue.yaml @@ -0,0 +1,52 @@ +name: "Pine Blue" +source: + marketplace_id: "JeylaniB.pine-editor-themes" + version: "1.0.0" + installs: 12531 + rating: 5 + ratings: 1 + author: "JeylaniB" + repo: "https://github.com/jeyllani/pinethemes" + url: "https://marketplace.visualstudio.com/items?itemName=JeylaniB.pine-editor-themes" +colors: + bg: "#01101C" + fg: "#D6DEEB" + black: "#01101C" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 240 + pair: null + contrast: + fg: 85.8 + black: 0 + red: 39.9 + green: 67.8 + yellow: 82.6 + blue: 56.5 + magenta: 54.3 + cyan: 60.3 + white: 107.4 + brightBlack: 16.2 + brightRed: 39.9 + brightGreen: 67.8 + brightYellow: 94.3 + brightBlue: 56.5 + brightMagenta: 54.3 + brightCyan: 74.6 + brightWhite: 107.4 diff --git a/themes/pine-cone-theme.yaml b/themes/pine-cone-theme.yaml index ca340c67..68de99f7 100644 --- a/themes/pine-cone-theme.yaml +++ b/themes/pine-cone-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "imalbert.conifer-theme" version: "2.4.3" installs: 1380 + rating: 5 + ratings: 3 author: "imalbert" repo: "https://github.com/imalbert/conifer-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=imalbert.conifer-theme" diff --git a/themes/pine-editor-dark.yaml b/themes/pine-editor-dark.yaml new file mode 100644 index 00000000..32b73272 --- /dev/null +++ b/themes/pine-editor-dark.yaml @@ -0,0 +1,52 @@ +name: "Pine Editor Dark" +source: + marketplace_id: "JeylaniB.pine-editor-themes" + version: "1.0.0" + installs: 12531 + rating: 5 + ratings: 1 + author: "JeylaniB" + repo: "https://github.com/jeyllani/pinethemes" + url: "https://marketplace.visualstudio.com/items?itemName=JeylaniB.pine-editor-themes" +colors: + bg: "#131621" + fg: "#D6DEEB" + black: "#131621" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 272 + pair: null + contrast: + fg: 85.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 82.1 + blue: 56 + magenta: 53.8 + cyan: 59.7 + white: 106.9 + brightBlack: 15.6 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74 + brightWhite: 106.9 diff --git a/themes/pine-editor-light-bold.yaml b/themes/pine-editor-light-bold.yaml new file mode 100644 index 00000000..3a013da8 --- /dev/null +++ b/themes/pine-editor-light-bold.yaml @@ -0,0 +1,52 @@ +name: "Pine Editor Light Bold" +source: + marketplace_id: "JeylaniB.pine-editor-themes" + version: "1.0.0" + installs: 12531 + rating: 5 + ratings: 1 + author: "JeylaniB" + repo: "https://github.com/jeyllani/pinethemes" + url: "https://marketplace.visualstudio.com/items?itemName=JeylaniB.pine-editor-themes" +colors: + bg: "#FBFBFB" + fg: "#403F53" + black: "#403F53" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2962FF" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2962FF" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 91.3 + black: 91.3 + red: 66.3 + green: 64.2 + yellow: 37 + blue: 60.1 + magenta: 65.3 + cyan: 70.7 + white: 0 + brightBlack: 91.3 + brightRed: 66.3 + brightGreen: 64.2 + brightYellow: 39.7 + brightBlue: 60.1 + brightMagenta: 65.3 + brightCyan: 70.7 + brightWhite: 0 diff --git a/themes/pine-forest-green-dark.yaml b/themes/pine-forest-green-dark.yaml index 868f8b4d..f7924c52 100644 --- a/themes/pine-forest-green-dark.yaml +++ b/themes/pine-forest-green-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "felix-tjernberg.pine-forest-green" version: "1.0.1" installs: 1420 + rating: 0 + ratings: 0 author: "Felix Tjernberg" repo: "https://github.com/felix-tjernberg/pine-forest-green" url: "https://marketplace.visualstudio.com/items?itemName=felix-tjernberg.pine-forest-green" diff --git a/themes/pine-forest.yaml b/themes/pine-forest.yaml index d81994b8..0b578585 100644 --- a/themes/pine-forest.yaml +++ b/themes/pine-forest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" installs: 81 + rating: 5 + ratings: 2 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" diff --git a/themes/pine-frizz.yaml b/themes/pine-frizz.yaml index fe425e97..1be14fea 100644 --- a/themes/pine-frizz.yaml +++ b/themes/pine-frizz.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TradesDontLie.pinescript-v6-vscode" version: "0.1.0" installs: 4946 + rating: 0 + ratings: 0 author: "TradesDontLie" repo: "https://github.com/yourusername/Pine-Script-v6-VS-Code" url: "https://marketplace.visualstudio.com/items?itemName=TradesDontLie.pinescript-v6-vscode" diff --git a/themes/pine-grey.yaml b/themes/pine-grey.yaml new file mode 100644 index 00000000..ffd68915 --- /dev/null +++ b/themes/pine-grey.yaml @@ -0,0 +1,52 @@ +name: "Pine Grey" +source: + marketplace_id: "JeylaniB.pine-editor-themes" + version: "1.0.0" + installs: 12531 + rating: 5 + ratings: 1 + author: "JeylaniB" + repo: "https://github.com/jeyllani/pinethemes" + url: "https://marketplace.visualstudio.com/items?itemName=JeylaniB.pine-editor-themes" +colors: + bg: "#22262E" + fg: "#D6DEEB" + black: "#22262E" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 264 + pair: null + contrast: + fg: 83.1 + black: 0 + red: 37.2 + green: 65.2 + yellow: 80 + blue: 53.9 + magenta: 51.7 + cyan: 57.6 + white: 104.8 + brightBlack: 13.5 + brightRed: 37.2 + brightGreen: 65.2 + brightYellow: 91.6 + brightBlue: 53.9 + brightMagenta: 51.7 + brightCyan: 71.9 + brightWhite: 104.8 diff --git a/themes/pine-theme-original-dark-extend.yaml b/themes/pine-theme-original-dark-extend.yaml index 94df8df2..7b8af337 100644 --- a/themes/pine-theme-original-dark-extend.yaml +++ b/themes/pine-theme-original-dark-extend.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "salbert11.pinescript-helper" version: "3.4.3" installs: 9799 + rating: 5 + ratings: 2 author: "salbert11" repo: "https://github.com/salbert11/pinescript" url: "https://marketplace.visualstudio.com/items?itemName=salbert11.pinescript-helper" diff --git a/themes/pineapple.yaml b/themes/pineapple.yaml index 75097e0f..fbbb1c57 100644 --- a/themes/pineapple.yaml +++ b/themes/pineapple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AshinBerish.pineapple" version: "1.0.1" installs: 240 + rating: 0 + ratings: 0 author: "Ashin Berish" repo: "https://github.com/ashinberish/PineApple-theme-VScode" url: "https://marketplace.visualstudio.com/items?itemName=AshinBerish.pineapple" diff --git a/themes/pines.yaml b/themes/pines.yaml index 8275c2a5..81157a24 100644 --- a/themes/pines.yaml +++ b/themes/pines.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "deeppines.pines-visual-studio-code" version: "0.3.0" installs: 2748 + rating: 5 + ratings: 3 author: "Lucas Kane" repo: "https://github.com/deeppines/pines-visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=deeppines.pines-visual-studio-code" diff --git a/themes/pingocho-dark.yaml b/themes/pingocho-dark.yaml index 8ac2e308..ee95345c 100644 --- a/themes/pingocho-dark.yaml +++ b/themes/pingocho-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pingocho.pingocho-dark" version: "1.0.4" installs: 210 + rating: 5 + ratings: 2 author: "Leo Marello" repo: "https://github.com/lmarello/pingocho-dark-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=pingocho.pingocho-dark" diff --git a/themes/pink-candy-dark-warm.yaml b/themes/pink-candy-dark-warm.yaml index 789e07d7..76c78b7f 100644 --- a/themes/pink-candy-dark-warm.yaml +++ b/themes/pink-candy-dark-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kuba-p.theme-pink-candy" version: "1.6.0" installs: 31786 + rating: 5 + ratings: 3 author: "kuba_p" repo: "https://github.com/KubaP/vscode-pink-candy" url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" diff --git a/themes/pink-candy-dark.yaml b/themes/pink-candy-dark.yaml index b2639c78..c3ff0aa2 100644 --- a/themes/pink-candy-dark.yaml +++ b/themes/pink-candy-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kuba-p.theme-pink-candy" version: "1.6.0" installs: 31786 + rating: 5 + ratings: 3 author: "kuba_p" repo: "https://github.com/KubaP/vscode-pink-candy" url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" diff --git a/themes/pink-candy-light.yaml b/themes/pink-candy-light.yaml index 795870a7..ad18204a 100644 --- a/themes/pink-candy-light.yaml +++ b/themes/pink-candy-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kuba-p.theme-pink-candy" version: "1.6.0" installs: 31786 + rating: 5 + ratings: 3 author: "kuba_p" repo: "https://github.com/KubaP/vscode-pink-candy" url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" diff --git a/themes/pink-flower.yaml b/themes/pink-flower.yaml index 0dd3181a..fcbf7648 100644 --- a/themes/pink-flower.yaml +++ b/themes/pink-flower.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "stevennyang.green-tree" version: "1.2.1" installs: 5716 + rating: 5 + ratings: 1 author: "Steven N. Yang" repo: "https://github.com/snyang/vscode-theme-green-tree" url: "https://marketplace.visualstudio.com/items?itemName=stevennyang.green-tree" diff --git a/themes/pink-high-contrast.yaml b/themes/pink-high-contrast.yaml new file mode 100644 index 00000000..b3d97338 --- /dev/null +++ b/themes/pink-high-contrast.yaml @@ -0,0 +1,52 @@ +name: "Pink - High Contrast" +source: + marketplace_id: "madamelasagna.madamelasagna" + version: "1.0.3" + installs: 159 + rating: 0 + ratings: 0 + author: "madamelasagna" + repo: "https://github.com/alyssapinnock/pink-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=madamelasagna.madamelasagna" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#BC8DAB" + red: "#EC3737" + green: "#5AFFF7" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#EC34EC" + cyan: "#75BEFF" + white: "#F2A2D6" + brightBlack: "#666666" + brightRed: "#FF7B7B" + brightGreen: "#77E2B7" + brightYellow: "#F7F79A" + brightBlue: "#3B8EEA" + brightMagenta: "#EA8FEA" + brightCyan: "#29B8DB" + brightWhite: "#FFB3F7" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 48.2 + red: 35.4 + green: 93.1 + yellow: 86.6 + blue: 28.4 + magenta: 42.4 + cyan: 64.1 + white: 65.8 + brightBlack: 23 + brightRed: 53.3 + brightGreen: 77.1 + brightYellow: 99.3 + brightBlue: 41 + brightMagenta: 59.5 + brightCyan: 56.4 + brightWhite: 75.7 diff --git a/themes/pink-theme.yaml b/themes/pink-theme.yaml index 5ee940e9..f2eb0de7 100644 --- a/themes/pink-theme.yaml +++ b/themes/pink-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "huacat.pink-theme" version: "1.1.2" installs: 71499 + rating: 5 + ratings: 12 author: "huacat" repo: "https://github.com/huacat1017/huacat.pink-theme" url: "https://marketplace.visualstudio.com/items?itemName=huacat.pink-theme" diff --git a/themes/pink.yaml b/themes/pink.yaml index 8ad5b04b..6057f397 100644 --- a/themes/pink.yaml +++ b/themes/pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BayuSetiawan.kanao" version: "1.4.0" installs: 1890 + rating: 3.5 + ratings: 2 author: "Bayu Setiawan" repo: "https://github.com/Bayusetiawan45/kanao" url: "https://marketplace.visualstudio.com/items?itemName=BayuSetiawan.kanao" diff --git a/themes/pinkandgreen.yaml b/themes/pinkandgreen.yaml index 396a4d7a..165266d4 100644 --- a/themes/pinkandgreen.yaml +++ b/themes/pinkandgreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sebula.pinkandgreen" version: "0.0.1" installs: 435 + rating: 0 + ratings: 0 author: "Sebula" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sebula.pinkandgreen" diff --git a/themes/pinkandwhite.yaml b/themes/pinkandwhite.yaml index 37896c1b..22bb07c2 100644 --- a/themes/pinkandwhite.yaml +++ b/themes/pinkandwhite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AninhaPardini.pinkandwhite" version: "0.0.1" installs: 2238 + rating: 0 + ratings: 0 author: "Aninha Pardini" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AninhaPardini.pinkandwhite" diff --git a/themes/pinkcodes-pink.yaml b/themes/pinkcodes-pink.yaml index 24312380..4a60714a 100644 --- a/themes/pinkcodes-pink.yaml +++ b/themes/pinkcodes-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PinkCodes.pinkcodes" version: "0.0.22" installs: 4040 + rating: 5 + ratings: 2 author: "PinkCodes" repo: "https://github.com/pinkc0des/pinkcodes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=PinkCodes.pinkcodes" diff --git a/themes/pinkdark.yaml b/themes/pinkdark.yaml index 6167b75f..468ada5b 100644 --- a/themes/pinkdark.yaml +++ b/themes/pinkdark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "srtakennedy.pink-dark" version: "0.0.8" installs: 3077 + rating: 0 + ratings: 0 author: "srtakennedy" repo: "https://github.com/SrtaKennedy" url: "https://marketplace.visualstudio.com/items?itemName=srtakennedy.pink-dark" diff --git a/themes/pinkdopeybug-primordial-origin.yaml b/themes/pinkdopeybug-primordial-origin.yaml index 471ef5e3..5cb99817 100644 --- a/themes/pinkdopeybug-primordial-origin.yaml +++ b/themes/pinkdopeybug-primordial-origin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PinkDopeyBug.pinkdopeybug" version: "1.0.20" installs: 472 + rating: 0 + ratings: 0 author: "PinkDopeyBug" repo: "https://github.com/PinkDopeyBug/pinkdopeybug-theme" url: "https://marketplace.visualstudio.com/items?itemName=PinkDopeyBug.pinkdopeybug" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 94.7 black: 92.6 diff --git a/themes/pinkmare.yaml b/themes/pinkmare.yaml index 816734fa..5f9ea17f 100644 --- a/themes/pinkmare.yaml +++ b/themes/pinkmare.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Matsuuu.pinkmare" version: "0.4.0" installs: 1333 + rating: 0 + ratings: 0 author: "Matsuuu" repo: "https://github.com/Matsuuu/pinkmare" url: "https://marketplace.visualstudio.com/items?itemName=Matsuuu.pinkmare" diff --git a/themes/pinkppuccin.yaml b/themes/pinkppuccin.yaml index 4c0c51c3..5288737d 100644 --- a/themes/pinkppuccin.yaml +++ b/themes/pinkppuccin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mamir.pinkppuccin" version: "1.1.0" installs: 152 + rating: 0 + ratings: 0 author: "mamir" repo: "https://github.com/musaamir/pinkppuccin" url: "https://marketplace.visualstudio.com/items?itemName=mamir.pinkppuccin" diff --git a/themes/pinky-promise-dark.yaml b/themes/pinky-promise-dark.yaml index 6e5c7e4c..abdece57 100644 --- a/themes/pinky-promise-dark.yaml +++ b/themes/pinky-promise-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZubairIbnZamir.pinky-promise-theme" version: "1.0.6" installs: 458 + rating: 0 + ratings: 0 author: "Zubair Ibn Zamir" repo: "https://github.com/2u841r/pinky-promise-theme" url: "https://marketplace.visualstudio.com/items?itemName=ZubairIbnZamir.pinky-promise-theme" diff --git a/themes/pinky-promise-light.yaml b/themes/pinky-promise-light.yaml index 6ba59859..c73d4528 100644 --- a/themes/pinky-promise-light.yaml +++ b/themes/pinky-promise-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZubairIbnZamir.pinky-promise-theme" version: "1.0.6" installs: 458 + rating: 0 + ratings: 0 author: "Zubair Ibn Zamir" repo: "https://github.com/2u841r/pinky-promise-theme" url: "https://marketplace.visualstudio.com/items?itemName=ZubairIbnZamir.pinky-promise-theme" diff --git a/themes/pinkyboo.yaml b/themes/pinkyboo.yaml index e46eaa2b..8b83c0db 100644 --- a/themes/pinkyboo.yaml +++ b/themes/pinkyboo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kissa1001.pinkyboo-theme" version: "1.0.3" installs: 3325 + rating: 0 + ratings: 0 author: "kissa1001" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kissa1001.pinkyboo-theme" diff --git a/themes/pinot-gris.yaml b/themes/pinot-gris.yaml index 86bad21c..df207c82 100644 --- a/themes/pinot-gris.yaml +++ b/themes/pinot-gris.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DionisUliu.dionis-theme" version: "0.1.1" installs: 432 + rating: 5 + ratings: 1 author: "Dionis Uliu" repo: "https://github.com/DionisUliu/dionis-theme" url: "https://marketplace.visualstudio.com/items?itemName=DionisUliu.dionis-theme" diff --git a/themes/pinya-theme.yaml b/themes/pinya-theme.yaml index ca40a26c..126a95bd 100644 --- a/themes/pinya-theme.yaml +++ b/themes/pinya-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Pinya.pinya-theme" version: "1.0.16" installs: 113 + rating: 5 + ratings: 2 author: "Pinya" repo: "https://github.com/CarlesRojas/pinya-theme" url: "https://marketplace.visualstudio.com/items?itemName=Pinya.pinya-theme" diff --git a/themes/pipboy-theme.yaml b/themes/pipboy-theme.yaml index 25bb5b04..a9728895 100644 --- a/themes/pipboy-theme.yaml +++ b/themes/pipboy-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "smv7.pipboy-theme" version: "0.1.0" installs: 1811 + rating: 5 + ratings: 1 author: "smv7" repo: "https://github.com/smv7/pipboy-theme" url: "https://marketplace.visualstudio.com/items?itemName=smv7.pipboy-theme" diff --git a/themes/pirate-flat-theme.yaml b/themes/pirate-flat-theme.yaml new file mode 100644 index 00000000..db721500 --- /dev/null +++ b/themes/pirate-flat-theme.yaml @@ -0,0 +1,52 @@ +name: "pirate-flat-theme" +source: + marketplace_id: "Pinperepette.pirate-flat-theme" + version: "0.1.1" + installs: 223 + rating: 0 + ratings: 0 + author: "Pinperepette" + repo: "https://github.com/Pinperepette/pirate-flat" + url: "https://marketplace.visualstudio.com/items?itemName=Pinperepette.pirate-flat-theme" +colors: + bg: "#272822" + fg: "#F5EEEE" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#D4D4D4" + brightBlack: "#4D4D4D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 115 + pair: null + contrast: + fg: 94.4 + black: 0 + red: 41.3 + green: 81.9 + yellow: 76.6 + blue: 53.6 + magenta: 51.4 + cyan: 75.9 + white: 77.2 + brightBlack: 9.7 + brightRed: 41.3 + brightGreen: 81.9 + brightYellow: 76.6 + brightBlue: 53.6 + brightMagenta: 51.4 + brightCyan: 75.9 + brightWhite: 104.5 diff --git a/themes/pirulug-dark.yaml b/themes/pirulug-dark.yaml index 9523f173..84cfd874 100644 --- a/themes/pirulug-dark.yaml +++ b/themes/pirulug-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Pirulug.pirulug-theme" version: "0.1.0" installs: 218 + rating: 0 + ratings: 0 author: "Pirulug" repo: "https://github.com/pirulug/pirulug-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Pirulug.pirulug-theme" diff --git a/themes/pirulug-ligt.yaml b/themes/pirulug-ligt.yaml index 1b9300b2..e9a96d6a 100644 --- a/themes/pirulug-ligt.yaml +++ b/themes/pirulug-ligt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Pirulug.pirulug-theme" version: "0.1.0" installs: 218 + rating: 0 + ratings: 0 author: "Pirulug" repo: "https://github.com/pirulug/pirulug-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Pirulug.pirulug-theme" diff --git a/themes/pistachio-madness.yaml b/themes/pistachio-madness.yaml index a50b97f3..0b91ca29 100644 --- a/themes/pistachio-madness.yaml +++ b/themes/pistachio-madness.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yubiDev.pistachio-madness-theme" version: "0.0.7" installs: 236 + rating: 0 + ratings: 0 author: "yoobdev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=yubiDev.pistachio-madness-theme" diff --git a/themes/pitaya-smoothie.yaml b/themes/pitaya-smoothie.yaml index 2f585a3b..642191cd 100644 --- a/themes/pitaya-smoothie.yaml +++ b/themes/pitaya-smoothie.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "trallard.pitaya-smoothie" version: "2.0.2" installs: 3583 + rating: 4.8 + ratings: 5 author: "Tania Allard" repo: "https://github.com/trallard/pitaya_smoothie" url: "https://marketplace.visualstudio.com/items?itemName=trallard.pitaya-smoothie" diff --git a/themes/pittaya-theme-light.yaml b/themes/pittaya-theme-light.yaml index 8c312709..4991ed4e 100644 --- a/themes/pittaya-theme-light.yaml +++ b/themes/pittaya-theme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pittaya-org.pittaya-theme" version: "1.0.1" installs: 45 + rating: 5 + ratings: 2 author: "pittaya-org" repo: "https://github.com/pittaya-ui/pittaya-theme" url: "https://marketplace.visualstudio.com/items?itemName=pittaya-org.pittaya-theme" diff --git a/themes/pittaya-theme.yaml b/themes/pittaya-theme.yaml index 0c5e3d2c..caf20049 100644 --- a/themes/pittaya-theme.yaml +++ b/themes/pittaya-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pittaya-org.pittaya-theme" version: "1.0.1" installs: 45 + rating: 5 + ratings: 2 author: "pittaya-org" repo: "https://github.com/pittaya-ui/pittaya-theme" url: "https://marketplace.visualstudio.com/items?itemName=pittaya-org.pittaya-theme" diff --git a/themes/pittcsc-theme.yaml b/themes/pittcsc-theme.yaml index d0dae246..ff7cfd24 100644 --- a/themes/pittcsc-theme.yaml +++ b/themes/pittcsc-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "QuentinRomeroLauro.pittcsc-theme" version: "0.1.2" installs: 80 + rating: 5 + ratings: 11 author: "Quentin Romero Lauro" repo: "https://github.com/QuentinRomeroLauro/PittCSC-VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=QuentinRomeroLauro.pittcsc-theme" diff --git a/themes/pk-vscode-theme.yaml b/themes/pk-vscode-theme.yaml new file mode 100644 index 00000000..c00c5b29 --- /dev/null +++ b/themes/pk-vscode-theme.yaml @@ -0,0 +1,52 @@ +name: "pk-vscode-theme" +source: + marketplace_id: "krudi.pk-vscode-theme" + version: "1.0.6" + installs: 23 + rating: 5 + ratings: 1 + author: "krudi" + repo: "https://github.com/krudi/pk-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=krudi.pk-vscode-theme" +colors: + bg: "#202020" + fg: "#E1E4E8" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D1D5DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 88.1 + black: 18 + red: 35.8 + green: 61.1 + yellow: 91.7 + blue: 37.8 + magenta: 50.3 + cyan: 59.8 + white: 78.7 + brightBlack: 46.6 + brightRed: 48.6 + brightGreen: 78 + brightYellow: 91.7 + brightBlue: 59.8 + brightMagenta: 50.3 + brightCyan: 68.3 + brightWhite: 103 diff --git a/themes/plane.yaml b/themes/plane.yaml index 8516a209..42d919f2 100644 --- a/themes/plane.yaml +++ b/themes/plane.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Planetheme.plane-theme" version: "4.18.0" installs: 425 + rating: 5 + ratings: 2 author: "Plane theme" repo: "https://github.com/wfpaisa/plane-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Planetheme.plane-theme" diff --git a/themes/plantillathemes.yaml b/themes/plantillathemes.yaml index 8ff53484..51a96916 100644 --- a/themes/plantillathemes.yaml +++ b/themes/plantillathemes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.inspiration" version: "0.0.19" installs: 1076 + rating: 5 + ratings: 1 author: "YesCode" repo: "https://github.com/yesomac/inspiration_themevsc" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" diff --git a/themes/plasma-pink.yaml b/themes/plasma-pink.yaml index d1e4d040..c03f1e11 100644 --- a/themes/plasma-pink.yaml +++ b/themes/plasma-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodewithBismillah.chroma-library" version: "1.2.1" installs: 358 + rating: 5 + ratings: 1 author: "Code with Bismillah" repo: "https://github.com/mubashir1837/Chroma-Library" url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" diff --git a/themes/plasticine.yaml b/themes/plasticine.yaml index b2b14e41..0cb62fd4 100644 --- a/themes/plasticine.yaml +++ b/themes/plasticine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "myxlxal.plasticine" version: "0.7.1" installs: 845 + rating: 5 + ratings: 1 author: "Myxlxal" repo: "https://github.com/OlegKrechkovskiy/plasticine" url: "https://marketplace.visualstudio.com/items?itemName=myxlxal.plasticine" diff --git a/themes/plasticman.yaml b/themes/plasticman.yaml index 9565521b..abfa189c 100644 --- a/themes/plasticman.yaml +++ b/themes/plasticman.yaml @@ -2,7 +2,9 @@ name: "Plasticman" source: marketplace_id: "silvncr.plasticman" version: "0.1.1" - installs: 101 + installs: 102 + rating: 0 + ratings: 0 author: "silvncr" repo: null url: "https://marketplace.visualstudio.com/items?itemName=silvncr.plasticman" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 280 + pair: null contrast: fg: 37.5 black: 0 diff --git a/themes/platzi-theme.yaml b/themes/platzi-theme.yaml index 21b7973b..02b5fbc9 100644 --- a/themes/platzi-theme.yaml +++ b/themes/platzi-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.platzi-theme" version: "0.0.9" installs: 1686 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/yesomac/platziTheme" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.platzi-theme" diff --git a/themes/playground-theme-dark.yaml b/themes/playground-theme-dark.yaml index efe45ea2..0700467b 100644 --- a/themes/playground-theme-dark.yaml +++ b/themes/playground-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zer0deck.playground-theme-dark" version: "1.0.0" installs: 226 + rating: 5 + ratings: 1 author: "zer0deck" repo: "https://github.com/zer0deck/Playground-Themes-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=zer0deck.playground-theme-dark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 78.7 black: 0 diff --git a/themes/playground-theme.yaml b/themes/playground-theme.yaml index b8957a0d..51e21d38 100644 --- a/themes/playground-theme.yaml +++ b/themes/playground-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zer0deck.playground-theme-light" version: "1.0.0" installs: 242 + rating: 5 + ratings: 1 author: "zer0deck" repo: "https://github.com/zer0deck/Playground-Themes-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=zer0deck.playground-theme-light" diff --git a/themes/playground.yaml b/themes/playground.yaml index 1903bf0a..ccfbdfcc 100644 --- a/themes/playground.yaml +++ b/themes/playground.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KidTokio.playground-academy-theme" version: "0.0.3" installs: 50 + rating: 0 + ratings: 0 author: "KidTokio" repo: null url: "https://marketplace.visualstudio.com/items?itemName=KidTokio.playground-academy-theme" diff --git a/themes/pleasure-contrast.yaml b/themes/pleasure-contrast.yaml index 4b2d9f27..22c125ba 100644 --- a/themes/pleasure-contrast.yaml +++ b/themes/pleasure-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/pleasure-light.yaml b/themes/pleasure-light.yaml index a6e784dc..18a1ca7f 100644 --- a/themes/pleasure-light.yaml +++ b/themes/pleasure-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/pleasure.yaml b/themes/pleasure.yaml index c04586fc..506d6e00 100644 --- a/themes/pleasure.yaml +++ b/themes/pleasure.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/plotka-amethyst.yaml b/themes/plotka-amethyst.yaml index 1f8c3961..36959aab 100644 --- a/themes/plotka-amethyst.yaml +++ b/themes/plotka-amethyst.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vilopesp.plotka-theme" version: "1.6.1" installs: 1409 + rating: 0 + ratings: 0 author: "Vitoria Lopes" repo: "https://github.com/vilopesp/plotka-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=vilopesp.plotka-theme" diff --git a/themes/plurpelvsc.yaml b/themes/plurpelvsc.yaml index 9bbb9ec4..09bba8a3 100644 --- a/themes/plurpelvsc.yaml +++ b/themes/plurpelvsc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JhonLikesFloppa.plurpel" version: "2.1.0" installs: 715 + rating: 5 + ratings: 2 author: "SahalMoh" repo: "https://github.com/Plurpel/Plurpel-VSC" url: "https://marketplace.visualstudio.com/items?itemName=JhonLikesFloppa.plurpel" diff --git a/themes/pluto-dark.yaml b/themes/pluto-dark.yaml index 1e5bd72a..7d830c8d 100644 --- a/themes/pluto-dark.yaml +++ b/themes/pluto-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "plutotheme.plutotheme" version: "0.0.6" installs: 304 + rating: 5 + ratings: 1 author: "pluto theme" repo: "https://github.com/devincapriola/pluto" url: "https://marketplace.visualstudio.com/items?itemName=plutotheme.plutotheme" diff --git a/themes/po.yaml b/themes/po.yaml index e751484a..6715efd2 100644 --- a/themes/po.yaml +++ b/themes/po.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Volskaya.irrelevant" version: "0.0.2" installs: 33 + rating: 0 + ratings: 0 author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" diff --git a/themes/poimandres-darker-theme-ghostty-palette.yaml b/themes/poimandres-darker-theme-ghostty-palette.yaml new file mode 100644 index 00000000..5446e6c3 --- /dev/null +++ b/themes/poimandres-darker-theme-ghostty-palette.yaml @@ -0,0 +1,52 @@ +name: "poimandres darker theme (ghostty palette)" +source: + marketplace_id: "FawwazFirdaus.poimandres-darker" + version: "0.1.1" + installs: 62 + rating: 0 + ratings: 0 + author: "Fawwaz Firdaus" + repo: "https://github.com/fawwazfirdaus/poimandres-darker-theme" + url: "https://marketplace.visualstudio.com/items?itemName=FawwazFirdaus.poimandres-darker" +colors: + bg: "#16161E" + fg: "#A6ACCD" + black: "#16161E" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#FCC5E9" + cyan: "#ADD7FF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#FAE4FC" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 285 + pair: null + contrast: + fg: 57.2 + black: 0 + red: 39.2 + green: 76.4 + yellow: 102 + blue: 78.3 + magenta: 80.2 + cyan: 78.6 + white: 106.9 + brightBlack: 57.2 + brightRed: 39.2 + brightGreen: 76.4 + brightYellow: 102 + brightBlue: 78.6 + brightMagenta: 93.7 + brightCyan: 78.3 + brightWhite: 106.9 diff --git a/themes/poison-serpent.yaml b/themes/poison-serpent.yaml new file mode 100644 index 00000000..5f696e11 --- /dev/null +++ b/themes/poison-serpent.yaml @@ -0,0 +1,52 @@ +name: "Poison Serpent" +source: + marketplace_id: "Krisada-3131.serpentine-syntax" + version: "0.0.3" + installs: 38 + rating: 0 + ratings: 0 + author: "Krisada-3131" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Krisada-3131.serpentine-syntax" +colors: + bg: "#040C0B" + fg: "#F2E6E9" + black: "#9A00E0" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: 187 + pair: null + contrast: + fg: 93.3 + black: 23.7 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 107.7 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.9 diff --git a/themes/polar-black-cherry-blossom.yaml b/themes/polar-black-cherry-blossom.yaml index 65200a14..c9dc0385 100644 --- a/themes/polar-black-cherry-blossom.yaml +++ b/themes/polar-black-cherry-blossom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" installs: 190 + rating: 4 + ratings: 1 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" diff --git a/themes/polar-black-green-cactus.yaml b/themes/polar-black-green-cactus.yaml index d9762691..98d85bc5 100644 --- a/themes/polar-black-green-cactus.yaml +++ b/themes/polar-black-green-cactus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" installs: 190 + rating: 4 + ratings: 1 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" diff --git a/themes/polar-black-ice.yaml b/themes/polar-black-ice.yaml index 8fd8cb3d..bb205657 100644 --- a/themes/polar-black-ice.yaml +++ b/themes/polar-black-ice.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" installs: 190 + rating: 4 + ratings: 1 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" diff --git a/themes/polar-black-less-black-smoke.yaml b/themes/polar-black-less-black-smoke.yaml index 1b6620f0..3a3b65c8 100644 --- a/themes/polar-black-less-black-smoke.yaml +++ b/themes/polar-black-less-black-smoke.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" installs: 190 + rating: 4 + ratings: 1 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" diff --git a/themes/polar-black-light.yaml b/themes/polar-black-light.yaml index 07fddfab..21880b32 100644 --- a/themes/polar-black-light.yaml +++ b/themes/polar-black-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" installs: 190 + rating: 4 + ratings: 1 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" diff --git a/themes/polar-black-red.yaml b/themes/polar-black-red.yaml index a2fe75c5..2f7de080 100644 --- a/themes/polar-black-red.yaml +++ b/themes/polar-black-red.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" installs: 190 + rating: 4 + ratings: 1 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" diff --git a/themes/polar-black-savanna.yaml b/themes/polar-black-savanna.yaml index c2c95f5b..134342ff 100644 --- a/themes/polar-black-savanna.yaml +++ b/themes/polar-black-savanna.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" installs: 190 + rating: 4 + ratings: 1 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" diff --git a/themes/polar-black.yaml b/themes/polar-black.yaml index be0ced96..357eeca3 100644 --- a/themes/polar-black.yaml +++ b/themes/polar-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nionx01.polar-black-themes" version: "0.0.5" installs: 190 + rating: 4 + ratings: 1 author: "nionx01" repo: "https://github.com/nionx01/polar-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" diff --git a/themes/polar-ice-dark.yaml b/themes/polar-ice-dark.yaml index 083a8c3b..57d28e0f 100644 --- a/themes/polar-ice-dark.yaml +++ b/themes/polar-ice-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hbarcelos.theme-polar-ice-vscode" version: "2.4.0" installs: 1103 + rating: 0 + ratings: 0 author: "Henrique Barcelos" repo: "https://github.com/hbarcelos/polar-ice-vscode" url: "https://marketplace.visualstudio.com/items?itemName=hbarcelos.theme-polar-ice-vscode" diff --git a/themes/polar-ice-light.yaml b/themes/polar-ice-light.yaml index 7aae1173..ad247fb5 100644 --- a/themes/polar-ice-light.yaml +++ b/themes/polar-ice-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hbarcelos.theme-polar-ice-vscode" version: "2.4.0" installs: 1103 + rating: 0 + ratings: 0 author: "Henrique Barcelos" repo: "https://github.com/hbarcelos/polar-ice-vscode" url: "https://marketplace.visualstudio.com/items?itemName=hbarcelos.theme-polar-ice-vscode" diff --git a/themes/polar-light.yaml b/themes/polar-light.yaml index 5ee7f86a..e15bd211 100644 --- a/themes/polar-light.yaml +++ b/themes/polar-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "postnumbers.polar-themes" version: "0.0.8" installs: 37 + rating: 0 + ratings: 0 author: "Postnumbers" repo: "https://github.com/postnumbers/polar-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.polar-themes" diff --git a/themes/polar-midnight.yaml b/themes/polar-midnight.yaml index eb8bbf35..078e408f 100644 --- a/themes/polar-midnight.yaml +++ b/themes/polar-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "postnumbers.polar-themes" version: "0.0.8" installs: 37 + rating: 0 + ratings: 0 author: "Postnumbers" repo: "https://github.com/postnumbers/polar-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.polar-themes" diff --git a/themes/polar-night.yaml b/themes/polar-night.yaml index 229faa57..77c99f4f 100644 --- a/themes/polar-night.yaml +++ b/themes/polar-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "postnumbers.polar-themes" version: "0.0.8" installs: 37 + rating: 0 + ratings: 0 author: "Postnumbers" repo: "https://github.com/postnumbers/polar-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.polar-themes" diff --git a/themes/polish.yaml b/themes/polish.yaml index a12c72da..e49d3b78 100644 --- a/themes/polish.yaml +++ b/themes/polish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zhiking.polish-theme" version: "0.0.5" installs: 2262 + rating: 5 + ratings: 1 author: "zhiking" repo: "https://github.com/zyj1022/vscode-polish-theme" url: "https://marketplace.visualstudio.com/items?itemName=zhiking.polish-theme" diff --git a/themes/polychrome-dark.yaml b/themes/polychrome-dark.yaml index ca30ed9b..5ebfe5be 100644 --- a/themes/polychrome-dark.yaml +++ b/themes/polychrome-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cdonohue.polychrome-vscode-themes" version: "1.0.0" installs: 6861 + rating: 0 + ratings: 0 author: "Chad Donohue" repo: "https://github.com/cdonohue/polychrome-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=cdonohue.polychrome-vscode-themes" diff --git a/themes/polychrome-light.yaml b/themes/polychrome-light.yaml index 22c23b06..b803ef0c 100644 --- a/themes/polychrome-light.yaml +++ b/themes/polychrome-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cdonohue.polychrome-vscode-themes" version: "1.0.0" installs: 6861 + rating: 0 + ratings: 0 author: "Chad Donohue" repo: "https://github.com/cdonohue/polychrome-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=cdonohue.polychrome-vscode-themes" diff --git a/themes/polygopher-theme.yaml b/themes/polygopher-theme.yaml index c188ec23..3f383af8 100644 --- a/themes/polygopher-theme.yaml +++ b/themes/polygopher-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Safak.poly-gopher-dark-blue" version: "1.0.0" installs: 86 + rating: 0 + ratings: 0 author: "Safak" repo: "https://github.com/safak7/poly-gopher-dark-blue" url: "https://marketplace.visualstudio.com/items?itemName=Safak.poly-gopher-dark-blue" diff --git a/themes/polykai.yaml b/themes/polykai.yaml index e02107a7..8bab5b6e 100644 --- a/themes/polykai.yaml +++ b/themes/polykai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "adamgraham.polykai-theme" version: "1.0.1" installs: 16966 + rating: 5 + ratings: 5 author: "Adam Graham" repo: "https://github.com/adamgraham/polykai-vscode" url: "https://marketplace.visualstudio.com/items?itemName=adamgraham.polykai-theme" diff --git a/themes/polymer-flow.yaml b/themes/polymer-flow.yaml new file mode 100644 index 00000000..c80feec4 --- /dev/null +++ b/themes/polymer-flow.yaml @@ -0,0 +1,52 @@ +name: "Polymer-Flow" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#0D0A0E" + fg: "#F2ECF3" + black: "#0D0A0E" + red: "#DF0C07" + green: "#29C3A0" + yellow: "#D29922" + blue: "#6D65FE" + magenta: "#6D65FE" + cyan: "#29C3A0" + white: "#F2ECF3" + brightBlack: "#0D0A0E" + brightRed: "#DF0C07" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#6D65FE" + brightMagenta: "#6D65FE" + brightCyan: "#29C3A0" + brightWhite: "#F2ECF3" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.5 + black: 0 + red: 29.5 + green: 58.5 + yellow: 52.5 + blue: 32.6 + magenta: 32.6 + cyan: 58.5 + white: 96.5 + brightBlack: 0 + brightRed: 29.5 + brightGreen: 58.5 + brightYellow: 52.5 + brightBlue: 32.6 + brightMagenta: 32.6 + brightCyan: 58.5 + brightWhite: 96.5 diff --git a/themes/pookie-dark.yaml b/themes/pookie-dark.yaml index 14c2a43c..18263d22 100644 --- a/themes/pookie-dark.yaml +++ b/themes/pookie-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jyototheworld.jyototheworld" version: "1.0.7" installs: 163 + rating: 0 + ratings: 0 author: "Jyototheworld" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Jyototheworld.jyototheworld" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 78.3 black: 76.6 diff --git a/themes/poolside.yaml b/themes/poolside.yaml index 0a9facfa..d7f9a8d9 100644 --- a/themes/poolside.yaml +++ b/themes/poolside.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nsgrantham.poolside" version: "1.2.0" installs: 696 + rating: 0 + ratings: 0 author: "nsgrantham" repo: "https://github.com/nsgrantham/poolside-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nsgrantham.poolside" diff --git a/themes/pop-os-cosmic.yaml b/themes/pop-os-cosmic.yaml index 18ba34a9..01d43fba 100644 --- a/themes/pop-os-cosmic.yaml +++ b/themes/pop-os-cosmic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Feiron.cosmic-pop-dark" version: "0.1.1" installs: 814 + rating: 5 + ratings: 1 author: "Feiron" repo: "https://github.com/pawelrogowski/cosmic-pop-dark" url: "https://marketplace.visualstudio.com/items?itemName=Feiron.cosmic-pop-dark" diff --git a/themes/popipa.yaml b/themes/popipa.yaml index 0f9a7b9b..a03758b4 100644 --- a/themes/popipa.yaml +++ b/themes/popipa.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TehMatcha.roselia-theme" version: "4.4.0" installs: 1278 + rating: 5 + ratings: 2 author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-roselia-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" diff --git a/themes/popping-and-locking-mod.yaml b/themes/popping-and-locking-mod.yaml index 3a80994a..535a62d1 100644 --- a/themes/popping-and-locking-mod.yaml +++ b/themes/popping-and-locking-mod.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WesHicks.popping-and-locking-mod" version: "0.0.1" installs: 371 + rating: 0 + ratings: 0 author: "Wes Hicks" repo: "https://github.com/weshicks/popping-and-locking-mod-vscode" url: "https://marketplace.visualstudio.com/items?itemName=WesHicks.popping-and-locking-mod" diff --git a/themes/popping-and-locking.yaml b/themes/popping-and-locking.yaml index 3c2d95a2..ce3c3ec9 100644 --- a/themes/popping-and-locking.yaml +++ b/themes/popping-and-locking.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "philsinatra.popping-and-locking-vscode-black" version: "1.1.7" installs: 40563 + rating: 5 + ratings: 4 author: "Phil Sinatra" repo: "https://github.com/philsinatra/popping-and-locking-vscode-black" url: "https://marketplace.visualstudio.com/items?itemName=philsinatra.popping-and-locking-vscode-black" diff --git a/themes/popsicle-color-theme.yaml b/themes/popsicle-color-theme.yaml index abcb9ca4..d1c2b607 100644 --- a/themes/popsicle-color-theme.yaml +++ b/themes/popsicle-color-theme.yaml @@ -1,13 +1,15 @@ name: "popsicle-color-theme" source: - marketplace_id: "wavebeem.popsicle-vscode" - version: "1.6.0" - installs: 170 + marketplace_id: "wavebeem.fresh-green-vscode" + version: "1.0.0" + installs: 318 + rating: 0 + ratings: 0 author: "Sage Fennel" - repo: "https://github.com/wavebeem/popsicle-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.popsicle-vscode" + repo: "https://github.com/wavebeem/fresh-green-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.fresh-green-vscode" colors: - bg: "#FFFAF6" + bg: "#FFFFFF" fg: "#380000" black: "#5B403B" red: "#D2004F" @@ -31,20 +33,20 @@ meta: hue: null pair: null contrast: - fg: 101.2 - black: 89.1 - red: 71.9 - green: 74.4 - yellow: 77.7 - blue: 73.6 - magenta: 72.6 - cyan: 74.6 + fg: 103.7 + black: 91.6 + red: 74.5 + green: 77 + yellow: 80.2 + blue: 76.1 + magenta: 75.1 + cyan: 77.2 white: 0 - brightBlack: 89.1 - brightRed: 71.9 - brightGreen: 74.4 - brightYellow: 77.7 - brightBlue: 73.6 - brightMagenta: 72.6 - brightCyan: 74.6 + brightBlack: 91.6 + brightRed: 74.5 + brightGreen: 77 + brightYellow: 80.2 + brightBlue: 76.1 + brightMagenta: 75.1 + brightCyan: 77.2 brightWhite: 0 diff --git a/themes/port-gellhorn-noir.yaml b/themes/port-gellhorn-noir.yaml index f16786f5..a872747c 100644 --- a/themes/port-gellhorn-noir.yaml +++ b/themes/port-gellhorn-noir.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/posh.yaml b/themes/posh.yaml index e5d9f73f..9713ceea 100644 --- a/themes/posh.yaml +++ b/themes/posh.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucasdecastro.posh" version: "1.0.6" installs: 492 + rating: 5 + ratings: 1 author: "Lucas de Castro" repo: "https://github.com/lucasdecstro/posh" url: "https://marketplace.visualstudio.com/items?itemName=lucasdecastro.posh" diff --git a/themes/posterpole.yaml b/themes/posterpole.yaml index d9b88384..f95fb056 100644 --- a/themes/posterpole.yaml +++ b/themes/posterpole.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ilof2.posterpole-theme" version: "0.1.5" installs: 328 + rating: 0 + ratings: 0 author: "ilof2" repo: "https://github.com/posterpole/vscode" url: "https://marketplace.visualstudio.com/items?itemName=ilof2.posterpole-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "yellow" hue: 292 + pair: null contrast: fg: 52.5 black: 0 diff --git a/themes/potpourri-contrast.yaml b/themes/potpourri-contrast.yaml index dc55be57..b977d648 100644 --- a/themes/potpourri-contrast.yaml +++ b/themes/potpourri-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/potpourri-light.yaml b/themes/potpourri-light.yaml index 4f557298..2b9f42ae 100644 --- a/themes/potpourri-light.yaml +++ b/themes/potpourri-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/potpourri.yaml b/themes/potpourri.yaml index 15315c1d..6072bb77 100644 --- a/themes/potpourri.yaml +++ b/themes/potpourri.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/powder.yaml b/themes/powder.yaml index de596a9e..63b70ab6 100644 --- a/themes/powder.yaml +++ b/themes/powder.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Volskaya.irrelevant" version: "0.0.2" installs: 33 + rating: 0 + ratings: 0 author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" diff --git a/themes/power-dark.yaml b/themes/power-dark.yaml index 3e02d88f..0152eb7e 100644 --- a/themes/power-dark.yaml +++ b/themes/power-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "axuminication.codica-theme" version: "0.0.4" installs: 13 + rating: 5 + ratings: 1 author: "Axum Softwares" repo: null url: "https://marketplace.visualstudio.com/items?itemName=axuminication.codica-theme" diff --git a/themes/power-low-purple-theme.yaml b/themes/power-low-purple-theme.yaml index a9f3c18e..fab80ad4 100644 --- a/themes/power-low-purple-theme.yaml +++ b/themes/power-low-purple-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevangTomar.vscode-diverse-dye" version: "1.3.0" installs: 2595 + rating: 5 + ratings: 3 author: "Devang Tomar ⭐" repo: "https://github.com/devangtomar/vscode-diverse-dye" url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" diff --git a/themes/poznajkubernetes.yaml b/themes/poznajkubernetes.yaml index b510c736..690e1b05 100644 --- a/themes/poznajkubernetes.yaml +++ b/themes/poznajkubernetes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "poznajkubernetes.theme-poznajkubernetes" version: "1.0.5" installs: 1230 + rating: 0 + ratings: 0 author: "Poznaj Kubernetes" repo: "https://github.com/poznajkubernetes/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=poznajkubernetes.theme-poznajkubernetes" diff --git a/themes/ppy-like.yaml b/themes/ppy-like.yaml index b52da5d0..1475b78b 100644 --- a/themes/ppy-like.yaml +++ b/themes/ppy-like.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Fran4end.ppy-light" version: "0.0.1" installs: 60 + rating: 0 + ratings: 0 author: "Fran4end" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Fran4end.ppy-light" diff --git a/themes/pr-theme-obsidian.yaml b/themes/pr-theme-obsidian.yaml index 137b268f..92b71da4 100644 --- a/themes/pr-theme-obsidian.yaml +++ b/themes/pr-theme-obsidian.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PrincePatelPR26.PrincePatelPR26" version: "0.0.2" installs: 27 + rating: 5 + ratings: 1 author: "Prince Patel" repo: "https://github.com/imprince26/PR-Theme-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=PrincePatelPR26.PrincePatelPR26" diff --git a/themes/pr-theme-premium.yaml b/themes/pr-theme-premium.yaml index 39e1c949..48a6670c 100644 --- a/themes/pr-theme-premium.yaml +++ b/themes/pr-theme-premium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PrincePatelPR26.PrincePatelPR26" version: "0.0.2" installs: 27 + rating: 5 + ratings: 1 author: "Prince Patel" repo: "https://github.com/imprince26/PR-Theme-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=PrincePatelPR26.PrincePatelPR26" diff --git a/themes/pr-theme.yaml b/themes/pr-theme.yaml index fb02b67e..9797021c 100644 --- a/themes/pr-theme.yaml +++ b/themes/pr-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PrincePatelPR26.PrincePatelPR26" version: "0.0.2" installs: 27 + rating: 5 + ratings: 1 author: "Prince Patel" repo: "https://github.com/imprince26/PR-Theme-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=PrincePatelPR26.PrincePatelPR26" diff --git a/themes/pre.yaml b/themes/pre.yaml index 94d2a596..c15b7940 100644 --- a/themes/pre.yaml +++ b/themes/pre.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leandromatos.pre" version: "0.0.7" installs: 13044 + rating: 0 + ratings: 0 author: "Leandro Matos" repo: "https://github.com/leandromatos/pre-theme" url: "https://marketplace.visualstudio.com/items?itemName=leandromatos.pre" diff --git a/themes/prescient.yaml b/themes/prescient.yaml index a75972de..5fe6922f 100644 --- a/themes/prescient.yaml +++ b/themes/prescient.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zevross.prescient-theme" version: "1.1.0" installs: 20 + rating: 0 + ratings: 0 author: "Zev Ross" repo: "https://github.com/zev18/prescient-theme" url: "https://marketplace.visualstudio.com/items?itemName=zevross.prescient-theme" diff --git a/themes/pretentious-name.yaml b/themes/pretentious-name.yaml index 14d565c1..06f688ba 100644 --- a/themes/pretentious-name.yaml +++ b/themes/pretentious-name.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zhiayang.pretentious-name" version: "2.1.1" installs: 2684 + rating: 5 + ratings: 1 author: "zhiayang" repo: "https://github.com/zhiayang/vscode-theme-pretentious-name" url: "https://marketplace.visualstudio.com/items?itemName=zhiayang.pretentious-name" diff --git a/themes/pretty-dark-theme.yaml b/themes/pretty-dark-theme.yaml index ca5094a0..d32b9f72 100644 --- a/themes/pretty-dark-theme.yaml +++ b/themes/pretty-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CJL.pretty-dark-theme" version: "1.0.3" installs: 1992 + rating: 0 + ratings: 0 author: "CJL" repo: "https://github.com/beixiyo/vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=CJL.pretty-dark-theme" diff --git a/themes/pributan.yaml b/themes/pributan.yaml index 96361328..d6710c17 100644 --- a/themes/pributan.yaml +++ b/themes/pributan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sensnerd.pributan" version: "1.0.5" installs: 507 + rating: 0 + ratings: 0 author: "Kusuma J." repo: "https://github.com/sensnerd/Pributan" url: "https://marketplace.visualstudio.com/items?itemName=sensnerd.pributan" diff --git a/themes/prime-contrast.yaml b/themes/prime-contrast.yaml index 2bb7ffb6..054ea22f 100644 --- a/themes/prime-contrast.yaml +++ b/themes/prime-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/prime-light.yaml b/themes/prime-light.yaml index fda46095..b5da8a03 100644 --- a/themes/prime-light.yaml +++ b/themes/prime-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/prime.yaml b/themes/prime.yaml index d3ad673d..93036419 100644 --- a/themes/prime.yaml +++ b/themes/prime.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/primer-light.yaml b/themes/primer-light.yaml index 7a9e0c0f..be11a77f 100644 --- a/themes/primer-light.yaml +++ b/themes/primer-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrewmarkle.primer-light" version: "0.0.8" installs: 43116 + rating: 4 + ratings: 2 author: "Andrew Markle" repo: "https://github.com/andrewmarkle/primer-light" url: "https://marketplace.visualstudio.com/items?itemName=andrewmarkle.primer-light" diff --git a/themes/prism-dark.yaml b/themes/prism-dark.yaml index ccab5f0c..c71816ee 100644 --- a/themes/prism-dark.yaml +++ b/themes/prism-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "friggeri.prism-vscode-theme" version: "1.0.6" installs: 2591 + rating: 0 + ratings: 0 author: "Adrien Friggeri" repo: "https://github.com/friggeri/prism" url: "https://marketplace.visualstudio.com/items?itemName=friggeri.prism-vscode-theme" diff --git a/themes/prism-light.yaml b/themes/prism-light.yaml index 61061dc4..7d0b40ed 100644 --- a/themes/prism-light.yaml +++ b/themes/prism-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "friggeri.prism-vscode-theme" version: "1.0.6" installs: 2591 + rating: 0 + ratings: 0 author: "Adrien Friggeri" repo: "https://github.com/friggeri/prism" url: "https://marketplace.visualstudio.com/items?itemName=friggeri.prism-vscode-theme" diff --git a/themes/prisma.yaml b/themes/prisma.yaml index 94cd5694..b0f42bba 100644 --- a/themes/prisma.yaml +++ b/themes/prisma.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Quernest.prisma" version: "0.0.3" installs: 8583 + rating: 5 + ratings: 1 author: "Quernest" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Quernest.prisma" diff --git a/themes/prismapixel-studios-dark-theme.yaml b/themes/prismapixel-studios-dark-theme.yaml index e4fa7f1a..c7f5f40f 100644 --- a/themes/prismapixel-studios-dark-theme.yaml +++ b/themes/prismapixel-studios-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PrismaPixel-Studios.prismapixel-studios-theme" version: "0.0.1" installs: 228 + rating: 5 + ratings: 1 author: "PrismaPixel Studios" repo: "https://github.com/PrismaPixelStudios/PrismaPixel_Studios-vscode_theme" url: "https://marketplace.visualstudio.com/items?itemName=PrismaPixel-Studios.prismapixel-studios-theme" diff --git a/themes/prismatic-dark.yaml b/themes/prismatic-dark.yaml index eaac7a60..afd706ab 100644 --- a/themes/prismatic-dark.yaml +++ b/themes/prismatic-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cklimas.prismatic" version: "1.17.0" installs: 860 + rating: 5 + ratings: 1 author: "Chris Klimas" repo: "https://github.com/klembot/prismatic-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=cklimas.prismatic" diff --git a/themes/prismatic-light.yaml b/themes/prismatic-light.yaml index 150666d6..dd78777a 100644 --- a/themes/prismatic-light.yaml +++ b/themes/prismatic-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cklimas.prismatic" version: "1.17.0" installs: 860 + rating: 5 + ratings: 1 author: "Chris Klimas" repo: "https://github.com/klembot/prismatic-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=cklimas.prismatic" diff --git a/themes/prismatic-void.yaml b/themes/prismatic-void.yaml index a7495949..3b67343d 100644 --- a/themes/prismatic-void.yaml +++ b/themes/prismatic-void.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cklimas.prismatic" version: "1.17.0" installs: 860 + rating: 5 + ratings: 1 author: "Chris Klimas" repo: "https://github.com/klembot/prismatic-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=cklimas.prismatic" diff --git a/themes/prismmagic.yaml b/themes/prismmagic.yaml index 55e28603..e13c0ceb 100644 --- a/themes/prismmagic.yaml +++ b/themes/prismmagic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PrismMagicTheme.PrismMagic" version: "0.8.0" installs: 47 + rating: 0 + ratings: 0 author: "PrismMagic Theme" repo: "https://github.com/slotherinee/PrismMagic" url: "https://marketplace.visualstudio.com/items?itemName=PrismMagicTheme.PrismMagic" diff --git a/themes/pro-coding.yaml b/themes/pro-coding.yaml index 7272fed2..5e739f18 100644 --- a/themes/pro-coding.yaml +++ b/themes/pro-coding.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.pro-coding" version: "0.0.1" installs: 105 + rating: 0 + ratings: 0 author: "Hasibur Rahman" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.pro-coding" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 83.2 black: 23.5 diff --git a/themes/professional-dark.yaml b/themes/professional-dark.yaml index 69b5f8fb..3cf7ebb1 100644 --- a/themes/professional-dark.yaml +++ b/themes/professional-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xynny.professional-dark" version: "1.0.0" installs: 310 + rating: 0 + ratings: 0 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.professional-dark" diff --git a/themes/progenesis-dark.yaml b/themes/progenesis-dark.yaml new file mode 100644 index 00000000..0be5bc84 --- /dev/null +++ b/themes/progenesis-dark.yaml @@ -0,0 +1,52 @@ +name: "Progenesis Dark" +source: + marketplace_id: "lucidlabs.progenesis-theme" + version: "1.4.0" + installs: 11 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.progenesis-theme" +colors: + bg: "#181C26" + fg: "#E2E6EF" + black: "#10131A" + red: "#F06060" + green: "#5BBF7A" + yellow: "#E8C84D" + blue: "#5A9FFF" + magenta: "#DA79D0" + cyan: "#20DCD3" + white: "#E2E6EF" + brightBlack: "#8892A4" + brightRed: "#F07070" + brightGreen: "#78D65B" + brightYellow: "#F0D860" + brightBlue: "#7AB4FF" + brightMagenta: "#E098DD" + brightCyan: "#40F0E8" + brightWhite: "#F0F2F8" +meta: + mode: "dark" + accent: "green" + hue: 268 + pair: "Progenesis Light" + contrast: + fg: 90 + black: 0 + red: 41.7 + green: 55.6 + yellow: 73 + blue: 48.5 + magenta: 47.4 + cyan: 70.9 + white: 90 + brightBlack: 41.7 + brightRed: 45.6 + brightGreen: 67.4 + brightYellow: 81.3 + brightBlue: 58.7 + brightMagenta: 58.2 + brightCyan: 82.3 + brightWhite: 97.8 diff --git a/themes/progenesis-light.yaml b/themes/progenesis-light.yaml new file mode 100644 index 00000000..2c74736e --- /dev/null +++ b/themes/progenesis-light.yaml @@ -0,0 +1,52 @@ +name: "Progenesis Light" +source: + marketplace_id: "lucidlabs.progenesis-theme" + version: "1.4.0" + installs: 11 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.progenesis-theme" +colors: + bg: "#F8F9FB" + fg: "#2A2D35" + black: "#10131A" + red: "#C0524A" + green: "#1B7264" + yellow: "#9E7520" + blue: "#1F7AFF" + magenta: "#8E2580" + cyan: "#0E7A74" + white: "#E2E6EF" + brightBlack: "#7A7A7A" + brightRed: "#D05A52" + brightGreen: "#238577" + brightYellow: "#B88A30" + brightBlue: "#3388FF" + brightMagenta: "#A03090" + brightCyan: "#1B7264" + brightWhite: "#2A2D35" +meta: + mode: "light" + accent: "purple" + hue: null + pair: "Progenesis Dark" + contrast: + fg: 96.7 + black: 101.5 + red: 67.8 + green: 74.9 + yellow: 65 + blue: 62.7 + magenta: 82 + cyan: 71.6 + white: 8.8 + brightBlack: 66.1 + brightRed: 62.9 + brightGreen: 67.1 + brightYellow: 54.5 + brightBlue: 57.8 + brightMagenta: 76.8 + brightCyan: 74.9 + brightWhite: 96.7 diff --git a/themes/programmer.yaml b/themes/programmer.yaml index 8b78357a..dab6cf00 100644 --- a/themes/programmer.yaml +++ b/themes/programmer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "paradoxfm.programmer" version: "0.0.3" installs: 480 + rating: 0 + ratings: 0 author: "paradoxfm" repo: "https://github.com/paradoxfm/programmer" url: "https://marketplace.visualstudio.com/items?itemName=paradoxfm.programmer" diff --git a/themes/progress-dark.yaml b/themes/progress-dark.yaml index 5da345a2..77b50ccb 100644 --- a/themes/progress-dark.yaml +++ b/themes/progress-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PhilippComans.feels-like-progress" version: "1.0.0" installs: 29 + rating: 0 + ratings: 0 author: "Philipp Comans" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PhilippComans.feels-like-progress" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "teal" hue: 164 + pair: null contrast: fg: 106.6 black: 0 diff --git a/themes/progress.yaml b/themes/progress.yaml index 0b609a5e..808c24d2 100644 --- a/themes/progress.yaml +++ b/themes/progress.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ElizaMuss.elizas-pride-themes" version: "1.0.2" installs: 848 + rating: 0 + ratings: 0 author: "Eliza Muss" repo: "https://github.com/The-Gamer69/elizas-pride-themes" url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" diff --git a/themes/project-dark-theme-soft.yaml b/themes/project-dark-theme-soft.yaml index be24ffdc..7848a36f 100644 --- a/themes/project-dark-theme-soft.yaml +++ b/themes/project-dark-theme-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "matheugoes.project-dark-theme" version: "1.0.2" installs: 97 + rating: 0 + ratings: 0 author: "Matheu Góes" repo: "https://github.com/matheugoes/project-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=matheugoes.project-dark-theme" diff --git a/themes/prom-wiki.yaml b/themes/prom-wiki.yaml index 793e664a..7601c095 100644 --- a/themes/prom-wiki.yaml +++ b/themes/prom-wiki.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KeveenMenezes.Prometheus" version: "0.2.5" installs: 1163 + rating: 5 + ratings: 2 author: "keveen Menezes" repo: "https://github.com/KeveenMenezes/Prometheus" url: "https://marketplace.visualstudio.com/items?itemName=KeveenMenezes.Prometheus" diff --git a/themes/pronight.yaml b/themes/pronight.yaml index 40ea3728..d6d6439f 100644 --- a/themes/pronight.yaml +++ b/themes/pronight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "huzaifamushtaq.pronight" version: "0.0.1" installs: 16 + rating: 5 + ratings: 1 author: "Huzaifa Mushtaq" repo: "https://github.com/huzaifamushtaqdev/pronight" url: "https://marketplace.visualstudio.com/items?itemName=huzaifamushtaq.pronight" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 262 + pair: null contrast: fg: 91.3 black: 0 diff --git a/themes/proper-dracula.yaml b/themes/proper-dracula.yaml index 730234a4..9d51e097 100644 --- a/themes/proper-dracula.yaml +++ b/themes/proper-dracula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "properup.proper-theme" version: "2.0.1" installs: 299 + rating: 5 + ratings: 1 author: "properup" repo: "https://github.com/sirpeebs/proper-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" diff --git a/themes/proper-pure.yaml b/themes/proper-pure.yaml index 489e6089..ea5d1d6d 100644 --- a/themes/proper-pure.yaml +++ b/themes/proper-pure.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "properup.proper-theme" version: "2.0.1" installs: 299 + rating: 5 + ratings: 1 author: "properup" repo: "https://github.com/sirpeebs/proper-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" diff --git a/themes/proper-theme-alternate-2.yaml b/themes/proper-theme-alternate-2.yaml index 9e797ca3..3e40dd61 100644 --- a/themes/proper-theme-alternate-2.yaml +++ b/themes/proper-theme-alternate-2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "properup.proper-theme" version: "2.0.1" installs: 299 + rating: 5 + ratings: 1 author: "properup" repo: "https://github.com/sirpeebs/proper-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" diff --git a/themes/proper-theme-alternate-fork.yaml b/themes/proper-theme-alternate-fork.yaml index 34120f14..c9f9d5a5 100644 --- a/themes/proper-theme-alternate-fork.yaml +++ b/themes/proper-theme-alternate-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "properup.proper-theme" version: "2.0.1" installs: 299 + rating: 5 + ratings: 1 author: "properup" repo: "https://github.com/sirpeebs/proper-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" diff --git a/themes/proper-theme-fork.yaml b/themes/proper-theme-fork.yaml index 5aa8e172..60584997 100644 --- a/themes/proper-theme-fork.yaml +++ b/themes/proper-theme-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "properup.proper-theme" version: "2.0.1" installs: 299 + rating: 5 + ratings: 1 author: "properup" repo: "https://github.com/sirpeebs/proper-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" diff --git a/themes/proper-up-for-what.yaml b/themes/proper-up-for-what.yaml index a1999047..9421c865 100644 --- a/themes/proper-up-for-what.yaml +++ b/themes/proper-up-for-what.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "properup.proper-theme" version: "2.0.1" installs: 299 + rating: 5 + ratings: 1 author: "properup" repo: "https://github.com/sirpeebs/proper-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" diff --git a/themes/proper.yaml b/themes/proper.yaml index 0c8fccf9..1ab3e32d 100644 --- a/themes/proper.yaml +++ b/themes/proper.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "properup.proper-theme" version: "2.0.1" installs: 299 + rating: 5 + ratings: 1 author: "properup" repo: "https://github.com/sirpeebs/proper-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" diff --git a/themes/propurple.yaml b/themes/propurple.yaml index cf8373d3..50f40d42 100644 --- a/themes/propurple.yaml +++ b/themes/propurple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "properup.proper-purple-theme" version: "0.2.5" installs: 1091 + rating: 0 + ratings: 0 author: "properup" repo: "https://github.com/sirpeebs/proper-purple-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-purple-theme" diff --git a/themes/protheme-dark-2.yaml b/themes/protheme-dark-2.yaml new file mode 100644 index 00000000..75beb181 --- /dev/null +++ b/themes/protheme-dark-2.yaml @@ -0,0 +1,50 @@ +name: "Protheme Dark 2" +source: + marketplace_id: "omarbasheer.protheme" + version: "2.0.4" + installs: 36 + author: "omar basheer" + repo: "https://github.com/omar-basheer/ProTheme" + url: "https://marketplace.visualstudio.com/items?itemName=omarbasheer.protheme" +colors: + bg: "#242529" + fg: "#EEFFFF" + black: "#282B35" + red: "#B21889" + green: "#DF0002" + yellow: "#438288" + blue: "#790EAD" + magenta: "#B21889" + cyan: "#00A0BE" + white: "#939599" + brightBlack: "#686A71" + brightRed: "#B21889" + brightGreen: "#DF0002" + brightYellow: "#438288" + brightBlue: "#790EAD" + brightMagenta: "#B21889" + brightCyan: "#00A0BE" + brightWhite: "#BEBFC2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.6 + black: 0 + red: 19.7 + green: 26.7 + yellow: 28.5 + blue: 11.8 + magenta: 19.7 + cyan: 41.5 + white: 42.1 + brightBlack: 21.9 + brightRed: 19.7 + brightGreen: 26.7 + brightYellow: 28.5 + brightBlue: 11.8 + brightMagenta: 19.7 + brightCyan: 41.5 + brightWhite: 65.1 diff --git a/themes/protheme-dark.yaml b/themes/protheme-dark.yaml new file mode 100644 index 00000000..e7d0efd3 --- /dev/null +++ b/themes/protheme-dark.yaml @@ -0,0 +1,50 @@ +name: "Protheme Dark" +source: + marketplace_id: "omarbasheer.protheme" + version: "2.0.4" + installs: 36 + author: "omar basheer" + repo: "https://github.com/omar-basheer/ProTheme" + url: "https://marketplace.visualstudio.com/items?itemName=omarbasheer.protheme" +colors: + bg: "#2A2B35" + fg: "#FFFFFF" + black: "#282B35" + red: "#B21889" + green: "#DF0002" + yellow: "#438288" + blue: "#790EAD" + magenta: "#B21889" + cyan: "#00A0BE" + white: "#939599" + brightBlack: "#686A71" + brightRed: "#B21889" + brightGreen: "#DF0002" + brightYellow: "#438288" + brightBlue: "#790EAD" + brightMagenta: "#B21889" + brightCyan: "#00A0BE" + brightWhite: "#BEBFC2" +meta: + mode: "dark" + accent: "orange" + hue: 281 + pair: null + contrast: + fg: 103.7 + black: 0 + red: 18.5 + green: 25.5 + yellow: 27.2 + blue: 10.6 + magenta: 18.5 + cyan: 40.3 + white: 40.9 + brightBlack: 20.6 + brightRed: 18.5 + brightGreen: 25.5 + brightYellow: 27.2 + brightBlue: 10.6 + brightMagenta: 18.5 + brightCyan: 40.3 + brightWhite: 63.9 diff --git a/themes/ps-dark.yaml b/themes/ps-dark.yaml index 20b4c72d..c5489e8b 100644 --- a/themes/ps-dark.yaml +++ b/themes/ps-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ps-designs.startbust-theme" version: "0.1.1" installs: 226 + rating: 4 + ratings: 1 author: "Pavel Sanchez" repo: "https://github.com/PaleBluDot/starburst-theme" url: "https://marketplace.visualstudio.com/items?itemName=ps-designs.startbust-theme" diff --git a/themes/ps-light.yaml b/themes/ps-light.yaml index 2a0bf4ea..0eb62d96 100644 --- a/themes/ps-light.yaml +++ b/themes/ps-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ps-designs.startbust-theme" version: "0.1.1" installs: 226 + rating: 4 + ratings: 1 author: "Pavel Sanchez" repo: "https://github.com/PaleBluDot/starburst-theme" url: "https://marketplace.visualstudio.com/items?itemName=ps-designs.startbust-theme" diff --git a/themes/ps-mid-blue.yaml b/themes/ps-mid-blue.yaml index 35fd8d4f..2478480e 100644 --- a/themes/ps-mid-blue.yaml +++ b/themes/ps-mid-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ps-designs.startbust-theme" version: "0.1.1" installs: 226 + rating: 4 + ratings: 1 author: "Pavel Sanchez" repo: "https://github.com/PaleBluDot/starburst-theme" url: "https://marketplace.visualstudio.com/items?itemName=ps-designs.startbust-theme" diff --git a/themes/ps-syntax.yaml b/themes/ps-syntax.yaml index 2e620d4e..218e1e9a 100644 --- a/themes/ps-syntax.yaml +++ b/themes/ps-syntax.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pstaub.ps-syntax" version: "0.0.4" installs: 651 + rating: 0 + ratings: 0 author: "pstaub" repo: "https://github.com/pstaubs/ps-syntax" url: "https://marketplace.visualstudio.com/items?itemName=pstaub.ps-syntax" diff --git a/themes/pudding-dark-caramel-beta.yaml b/themes/pudding-dark-caramel-beta.yaml index fd275697..996ee67f 100644 --- a/themes/pudding-dark-caramel-beta.yaml +++ b/themes/pudding-dark-caramel-beta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Bitcookies.pudding-vscode-theme" version: "3.1.5" installs: 1914 + rating: 5 + ratings: 2 author: "Bitcookies" repo: "https://github.com/bitcookies/pudding-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" diff --git a/themes/pudding-dark-christmas.yaml b/themes/pudding-dark-christmas.yaml index d5aa0cc0..7265b1bb 100644 --- a/themes/pudding-dark-christmas.yaml +++ b/themes/pudding-dark-christmas.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Bitcookies.pudding-vscode-theme" version: "3.1.5" installs: 1914 + rating: 5 + ratings: 2 author: "Bitcookies" repo: "https://github.com/bitcookies/pudding-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" diff --git a/themes/pudding-dark.yaml b/themes/pudding-dark.yaml index aaacf969..33a30b25 100644 --- a/themes/pudding-dark.yaml +++ b/themes/pudding-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Bitcookies.pudding-vscode-theme" version: "3.1.5" installs: 1914 + rating: 5 + ratings: 2 author: "Bitcookies" repo: "https://github.com/bitcookies/pudding-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" diff --git a/themes/pudding-light-jk.yaml b/themes/pudding-light-jk.yaml index 2a7b5dcd..485bf722 100644 --- a/themes/pudding-light-jk.yaml +++ b/themes/pudding-light-jk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Bitcookies.pudding-vscode-theme" version: "3.1.5" installs: 1914 + rating: 5 + ratings: 2 author: "Bitcookies" repo: "https://github.com/bitcookies/pudding-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" diff --git a/themes/pudding-light.yaml b/themes/pudding-light.yaml index 1d3d9c23..6f33e872 100644 --- a/themes/pudding-light.yaml +++ b/themes/pudding-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Bitcookies.pudding-vscode-theme" version: "3.1.5" installs: 1914 + rating: 5 + ratings: 2 author: "Bitcookies" repo: "https://github.com/bitcookies/pudding-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" diff --git a/themes/pulpy-orange.yaml b/themes/pulpy-orange.yaml index a8b8c511..4efedf4c 100644 --- a/themes/pulpy-orange.yaml +++ b/themes/pulpy-orange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Tinuthampi.Pulpy-Orange" version: "0.0.3" installs: 2430 + rating: 5 + ratings: 1 author: "Tinu thampi" repo: "https://github.com/Tinu-thampi13/Pulpy-Orange" url: "https://marketplace.visualstudio.com/items?itemName=Tinuthampi.Pulpy-Orange" diff --git a/themes/pulsar.yaml b/themes/pulsar.yaml index 9e398a3c..24c2a267 100644 --- a/themes/pulsar.yaml +++ b/themes/pulsar.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dmrowiec-pl.pulsar-theme" version: "1.0.8" installs: 714 + rating: 5 + ratings: 2 author: "Damian Mrowiec" repo: "https://github.com/dmrowiec-pl/pulsar-theme" url: "https://marketplace.visualstudio.com/items?itemName=dmrowiec-pl.pulsar-theme" diff --git a/themes/pulse-balanced-purple.yaml b/themes/pulse-balanced-purple.yaml index 86f966db..ba98a717 100644 --- a/themes/pulse-balanced-purple.yaml +++ b/themes/pulse-balanced-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IrvinBenitez.Pulse-theme-vscode" version: "1.0.2" installs: 105 + rating: 5 + ratings: 1 author: "Irvin Benitez" repo: "https://github.com/PulseStudio07/VScode-theme" url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" diff --git a/themes/pulse-comfort-light.yaml b/themes/pulse-comfort-light.yaml index 44a4077a..41250b13 100644 --- a/themes/pulse-comfort-light.yaml +++ b/themes/pulse-comfort-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IrvinBenitez.Pulse-theme-vscode" version: "1.0.2" installs: 105 + rating: 5 + ratings: 1 author: "Irvin Benitez" repo: "https://github.com/PulseStudio07/VScode-theme" url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" diff --git a/themes/pulse-soft-purple.yaml b/themes/pulse-soft-purple.yaml index da2edb8e..5f1c7ae9 100644 --- a/themes/pulse-soft-purple.yaml +++ b/themes/pulse-soft-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IrvinBenitez.Pulse-theme-vscode" version: "1.0.2" installs: 105 + rating: 5 + ratings: 1 author: "Irvin Benitez" repo: "https://github.com/PulseStudio07/VScode-theme" url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" diff --git a/themes/pumpkin.yaml b/themes/pumpkin.yaml index c04e2132..ac56e3fd 100644 --- a/themes/pumpkin.yaml +++ b/themes/pumpkin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IvanPerez9.pumpkin-color-theme" version: "0.3.0" installs: 695 + rating: 5 + ratings: 1 author: "IvanPerez9" repo: "https://github.com/IvanPerez9/pumpkin-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=IvanPerez9.pumpkin-color-theme" diff --git a/themes/punjab-land-of-five-rivers.yaml b/themes/punjab-land-of-five-rivers.yaml index 21e7d2cd..81452168 100644 --- a/themes/punjab-land-of-five-rivers.yaml +++ b/themes/punjab-land-of-five-rivers.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ProudIndian.colors-of-india-themes" version: "1.0.1" installs: 37 + rating: 5 + ratings: 1 author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" diff --git a/themes/punkfut.yaml b/themes/punkfut.yaml new file mode 100644 index 00000000..294e987f --- /dev/null +++ b/themes/punkfut.yaml @@ -0,0 +1,50 @@ +name: "PunkFut" +source: + marketplace_id: "PowerThemes.punkfut-vscode-theme" + version: "0.0.1" + installs: 225 + author: "PowerThemes" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PowerThemes.punkfut-vscode-theme" +colors: + bg: "#0C0C0C" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.7 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/pur-theme-v1.yaml b/themes/pur-theme-v1.yaml index b29c775e..5487ef61 100644 --- a/themes/pur-theme-v1.yaml +++ b/themes/pur-theme-v1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevEduardo.purplus-theme" version: "1.0.1" installs: 398 + rating: 5 + ratings: 1 author: "DevEduardo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DevEduardo.purplus-theme" diff --git a/themes/purble-0-0-2-fork-fork.yaml b/themes/purble-0-0-2-fork-fork.yaml index 39f54594..91ebd98d 100644 --- a/themes/purble-0-0-2-fork-fork.yaml +++ b/themes/purble-0-0-2-fork-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PSJoon.psjoon" version: "0.0.3" installs: 5174 + rating: 5 + ratings: 2 author: "PSJoon" repo: "https://github.com/PSjoon/testes" url: "https://marketplace.visualstudio.com/items?itemName=PSJoon.psjoon" diff --git a/themes/purddy.yaml b/themes/purddy.yaml index 0d6090be..cd1c3934 100644 --- a/themes/purddy.yaml +++ b/themes/purddy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Cyphernetes.purddy" version: "0.0.2" installs: 57 + rating: 5 + ratings: 1 author: "Avital Tamir" repo: "https://github.com/AvitalTamir/vscode-purddy-theme" url: "https://marketplace.visualstudio.com/items?itemName=Cyphernetes.purddy" diff --git a/themes/pure-black-monokai-inspired.yaml b/themes/pure-black-monokai-inspired.yaml new file mode 100644 index 00000000..70327d16 --- /dev/null +++ b/themes/pure-black-monokai-inspired.yaml @@ -0,0 +1,50 @@ +name: "Pure Black - Monokai Inspired" +source: + marketplace_id: "PureBlack-MonokaiInspired.pureblackmonokaiinspired" + version: "0.0.11" + installs: 267 + author: "Pure Black - Monokai Inspired" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PureBlack-MonokaiInspired.pureblackmonokaiinspired" +colors: + bg: "#000000" + fg: "#F7F1FF" + black: "#363537" + red: "#FC618D" + green: "#7BD88F" + yellow: "#FCE566" + blue: "#FD9353" + magenta: "#948AE3" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#FCE566" + brightBlue: "#FD9353" + brightMagenta: "#948AE3" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 100.2 + black: 0 + red: 47.3 + green: 71.3 + yellow: 90.6 + blue: 58.9 + magenta: 45.2 + cyan: 71.1 + white: 100.2 + brightBlack: 23.8 + brightRed: 47.3 + brightGreen: 71.3 + brightYellow: 90.6 + brightBlue: 58.9 + brightMagenta: 45.2 + brightCyan: 71.1 + brightWhite: 100.2 diff --git a/themes/pure-black.yaml b/themes/pure-black.yaml index 5a849737..4163d691 100644 --- a/themes/pure-black.yaml +++ b/themes/pure-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SscSPs.pure-black" version: "0.1.0" installs: 4230 + rating: 3.67 + ratings: 3 author: "Sahil Soni" repo: "https://github.com/SscSPs/pure-black-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SscSPs.pure-black" diff --git a/themes/pure-dark.yaml b/themes/pure-dark.yaml index 5e6032f8..b102047e 100644 --- a/themes/pure-dark.yaml +++ b/themes/pure-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Anindra.puredark" version: "0.10.0" installs: 1798 + rating: 0 + ratings: 0 author: "Anindra" repo: "https://github.com/meanindra/codeavenge-vscode.git#master" url: "https://marketplace.visualstudio.com/items?itemName=Anindra.puredark" diff --git a/themes/pure-light.yaml b/themes/pure-light.yaml index 5c51b80d..833a6580 100644 --- a/themes/pure-light.yaml +++ b/themes/pure-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "me7uiz.pure-themes" version: "0.1.6" installs: 641 + rating: 5 + ratings: 1 author: "me7uiz" repo: "https://github.com/meluiz/pure-themes" url: "https://marketplace.visualstudio.com/items?itemName=me7uiz.pure-themes" diff --git a/themes/pure-monochrome.yaml b/themes/pure-monochrome.yaml new file mode 100644 index 00000000..2b3892a8 --- /dev/null +++ b/themes/pure-monochrome.yaml @@ -0,0 +1,50 @@ +name: "Pure Monochrome" +source: + marketplace_id: "username918r818.pure-monochrome" + version: "0.0.1" + installs: 245 + author: "username918r818" + repo: "https://github.com/username918r818/pure-monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=username918r818.pure-monochrome" +colors: + bg: "#101010" + fg: "#EAEAEA" + black: "#101010" + red: "#7E7E7E" + green: "#525252" + yellow: "#A9A9A9" + blue: "#3C3C3C" + magenta: "#939393" + cyan: "#686868" + white: "#BFBFBF" + brightBlack: "#262626" + brightRed: "#7E7E7E" + brightGreen: "#525252" + brightYellow: "#A9A9A9" + brightBlue: "#3C3C3C" + brightMagenta: "#939393" + brightCyan: "#686868" + brightWhite: "#EBEBEB" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 93.8 + black: 0 + red: 33.4 + green: 14.5 + yellow: 55.3 + blue: 0 + magenta: 43.7 + cyan: 23.5 + white: 67.6 + brightBlack: 0 + brightRed: 33.4 + brightGreen: 14.5 + brightYellow: 55.3 + brightBlue: 0 + brightMagenta: 43.7 + brightCyan: 23.5 + brightWhite: 94.4 diff --git a/themes/pureblack.yaml b/themes/pureblack.yaml index 2921b38d..d643b723 100644 --- a/themes/pureblack.yaml +++ b/themes/pureblack.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jeandeaual.noir" version: "0.0.2" installs: 1501 + rating: 0 + ratings: 0 author: "jeandeaual" repo: "https://github.com/jeandeaual/vscode-theme-noir" url: "https://marketplace.visualstudio.com/items?itemName=jeandeaual.noir" diff --git a/themes/purgle-dark-purple.yaml b/themes/purgle-dark-purple.yaml new file mode 100644 index 00000000..736e68fa --- /dev/null +++ b/themes/purgle-dark-purple.yaml @@ -0,0 +1,50 @@ +name: "Purgle Dark (Purple)" +source: + marketplace_id: "rmsyntax.rmsyntax-purgle-dark" + version: "0.0.6" + installs: 45 + author: "rmsyntax" + repo: "https://github.com/ROMANSYNTAX32/Purgle-Dark" + url: "https://marketplace.visualstudio.com/items?itemName=rmsyntax.rmsyntax-purgle-dark" +colors: + bg: "#3B202F" + fg: "#8FA1B5" + black: "#170E13" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#4775FF" + magenta: "#BC3FBC" + cyan: "#57EFFF" + white: "#DBDBDB" + brightBlack: "#2C1F26" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#B1F0FF" + brightWhite: "#D1A5BE" +meta: + mode: "dark" + accent: "pink" + hue: 346 + pair: null + contrast: + fg: 46.7 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 31.2 + magenta: 27.1 + cyan: 81.6 + white: 81.1 + brightBlack: 0 + brightRed: 35.9 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.7 + brightCyan: 87.9 + brightWhite: 56.7 diff --git a/themes/puri-twilite.yaml b/themes/puri-twilite.yaml index 19fb9da3..86464fe1 100644 --- a/themes/puri-twilite.yaml +++ b/themes/puri-twilite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sayam.puri-twilite" version: "0.0.2" installs: 36 + rating: 0 + ratings: 0 author: "Sayam" repo: "https://github.com/sayampradhan/puri-twilite" url: "https://marketplace.visualstudio.com/items?itemName=Sayam.puri-twilite" diff --git a/themes/purple-cake.yaml b/themes/purple-cake.yaml index d486f00e..2e998d9f 100644 --- a/themes/purple-cake.yaml +++ b/themes/purple-cake.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jker.purple-cake" version: "1.0.2" installs: 309 + rating: 0 + ratings: 0 author: "jker" repo: "https://github.com/guidolee/jker-purple-cake" url: "https://marketplace.visualstudio.com/items?itemName=jker.purple-cake" diff --git a/themes/purple-cloud-minimal.yaml b/themes/purple-cloud-minimal.yaml index b3c03e94..33d17547 100644 --- a/themes/purple-cloud-minimal.yaml +++ b/themes/purple-cloud-minimal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Keith-sys.purple-cloud-theme" version: "1.0.0" installs: 635 + rating: 0 + ratings: 0 author: "Keith-sys" repo: "https://github.com/Keith-sys/purple-cloud-theme" url: "https://marketplace.visualstudio.com/items?itemName=Keith-sys.purple-cloud-theme" diff --git a/themes/purple-cloud-theme.yaml b/themes/purple-cloud-theme.yaml index f33533b9..a00df5ae 100644 --- a/themes/purple-cloud-theme.yaml +++ b/themes/purple-cloud-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Keith-sys.purple-cloud-theme" version: "1.0.0" installs: 635 + rating: 0 + ratings: 0 author: "Keith-sys" repo: "https://github.com/Keith-sys/purple-cloud-theme" url: "https://marketplace.visualstudio.com/items?itemName=Keith-sys.purple-cloud-theme" diff --git a/themes/purple-codain.yaml b/themes/purple-codain.yaml index d1606c40..f7f26273 100644 --- a/themes/purple-codain.yaml +++ b/themes/purple-codain.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ymaninho.theme-purple-codain" version: "0.0.6" installs: 3759 + rating: 5 + ratings: 1 author: "ymaninho" repo: "https://github.com/ymaninho54/Theme-Vscode-Purple" url: "https://marketplace.visualstudio.com/items?itemName=ymaninho.theme-purple-codain" diff --git a/themes/purple-cyan.yaml b/themes/purple-cyan.yaml index 04cc3ec6..17d28fff 100644 --- a/themes/purple-cyan.yaml +++ b/themes/purple-cyan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Pizzutti.pizzutti-purple-cyan" version: "1.0.1" installs: 158 + rating: 0 + ratings: 0 author: "Pizzutti" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Pizzutti.pizzutti-purple-cyan" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77 black: 0 diff --git a/themes/purple-dark-black.yaml b/themes/purple-dark-black.yaml index 60fb2df9..261f0ba9 100644 --- a/themes/purple-dark-black.yaml +++ b/themes/purple-dark-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Fishappy0.purple-deep-black" version: "0.0.5" installs: 4123 + rating: 5 + ratings: 1 author: "Fishappy0" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Fishappy0.purple-deep-black" diff --git a/themes/purple-dark-theme-unicode.yaml b/themes/purple-dark-theme-unicode.yaml index f170ca28..459b084c 100644 --- a/themes/purple-dark-theme-unicode.yaml +++ b/themes/purple-dark-theme-unicode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LeehXD.unicode-purple-dark-theme" version: "0.0.4" installs: 960 + rating: 5 + ratings: 1 author: "leehxd" repo: "https://github.com/LeehXD/unicode-purple-dark" url: "https://marketplace.visualstudio.com/items?itemName=LeehXD.unicode-purple-dark-theme" diff --git a/themes/purple-dark.yaml b/themes/purple-dark.yaml index 1b096c45..ea64ab9b 100644 --- a/themes/purple-dark.yaml +++ b/themes/purple-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "purple-theme-vs.purple-theme-vscode" version: "0.0.2" installs: 2773 + rating: 0 + ratings: 0 author: "purple-theme-vs" repo: "https://github.com/dbedoya04/purple-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=purple-theme-vs.purple-theme-vscode" diff --git a/themes/purple-deep-black-fork.yaml b/themes/purple-deep-black-fork.yaml index e805f17a..8a369f71 100644 --- a/themes/purple-deep-black-fork.yaml +++ b/themes/purple-deep-black-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Alle.darkpurpletheme" version: "0.0.1" installs: 13 + rating: 0 + ratings: 0 author: "Alle" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Alle.darkpurpletheme" diff --git a/themes/purple-deep-black.yaml b/themes/purple-deep-black.yaml index 3c5ce5f4..01e455d9 100644 --- a/themes/purple-deep-black.yaml +++ b/themes/purple-deep-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Fishappy0.purple-deep-black" version: "0.0.5" installs: 4123 + rating: 5 + ratings: 1 author: "Fishappy0" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Fishappy0.purple-deep-black" diff --git a/themes/purple-dream.yaml b/themes/purple-dream.yaml index 0c763022..1495abbd 100644 --- a/themes/purple-dream.yaml +++ b/themes/purple-dream.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LR6549-extensions.purple-dream" version: "1.8.7" installs: 558 + rating: 0 + ratings: 0 author: "LR6549" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LR6549-extensions.purple-dream" diff --git a/themes/purple-galaxy.yaml b/themes/purple-galaxy.yaml new file mode 100644 index 00000000..6139402b --- /dev/null +++ b/themes/purple-galaxy.yaml @@ -0,0 +1,52 @@ +name: "purple galaxy" +source: + marketplace_id: "kiro-tagama.purple-galaxy-theme" + version: "1.2.0" + installs: 1455 + rating: 0 + ratings: 0 + author: "kiro-tagama" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kiro-tagama.purple-galaxy-theme" +colors: + bg: "#0A0A0A" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 60.3 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/purple-ish-dimmed.yaml b/themes/purple-ish-dimmed.yaml new file mode 100644 index 00000000..6e877f3b --- /dev/null +++ b/themes/purple-ish-dimmed.yaml @@ -0,0 +1,52 @@ +name: "purple ish (dimmed)" +source: + marketplace_id: "massoladb.purple-ish" + version: "0.2.0" + installs: 971 + rating: 0 + ratings: 0 + author: "Felipe Massola" + repo: "https://github.com/massoladb/purple-ish" + url: "https://marketplace.visualstudio.com/items?itemName=massoladb.purple-ish" +colors: + bg: "#151515" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.1 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/purple-ish.yaml b/themes/purple-ish.yaml index dc84d628..b7e81c65 100644 --- a/themes/purple-ish.yaml +++ b/themes/purple-ish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "massoladb.purple-ish" version: "0.2.0" installs: 971 + rating: 0 + ratings: 0 author: "Felipe Massola" repo: "https://github.com/massoladb/purple-ish" url: "https://marketplace.visualstudio.com/items?itemName=massoladb.purple-ish" diff --git a/themes/purple-royal.yaml b/themes/purple-royal.yaml index fea3662a..b7def46f 100644 --- a/themes/purple-royal.yaml +++ b/themes/purple-royal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkMannn.purple-royal-theme" version: "0.0.5" installs: 817 + rating: 0 + ratings: 0 author: "DarkMannn" repo: "https://github.com/DarkMannn/purple-royal-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.purple-royal-theme" diff --git a/themes/purple-theme.yaml b/themes/purple-theme.yaml index 501b247d..05001bd8 100644 --- a/themes/purple-theme.yaml +++ b/themes/purple-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ma1on3se.purple-theme" version: "0.0.1" installs: 2086 + rating: 0 + ratings: 0 author: "Otávio de Souza Cardoso" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ma1on3se.purple-theme" diff --git a/themes/purple-twist.yaml b/themes/purple-twist.yaml index 3f699f50..c9a7b291 100644 --- a/themes/purple-twist.yaml +++ b/themes/purple-twist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VishalMaurya.zenith-ui" version: "0.2.4" installs: 191 + rating: 5 + ratings: 1 author: "Vishal Maurya" repo: "https://github.com/maurya-07/zenith-ui" url: "https://marketplace.visualstudio.com/items?itemName=VishalMaurya.zenith-ui" diff --git a/themes/purple-void.yaml b/themes/purple-void.yaml index a2a5e119..aef6b17d 100644 --- a/themes/purple-void.yaml +++ b/themes/purple-void.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rej.purpleVoid" version: "1.0.3" installs: 5015 + rating: 5 + ratings: 2 author: "Rej" repo: "https://github.com/Rejdesu/purpleVoid" url: "https://marketplace.visualstudio.com/items?itemName=Rej.purpleVoid" diff --git a/themes/purple.yaml b/themes/purple.yaml index 0bd36a56..3d440d02 100644 --- a/themes/purple.yaml +++ b/themes/purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "natecrow.consonance-themes" version: "1.2.0" installs: 317 + rating: 0 + ratings: 0 author: "natecrow" repo: "https://github.com/natecrow/consonance-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" diff --git a/themes/purpleandblack.yaml b/themes/purpleandblack.yaml index 83fb85ee..13539ea0 100644 --- a/themes/purpleandblack.yaml +++ b/themes/purpleandblack.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Pab-Theme.purpleandblack" version: "0.0.2" installs: 986 + rating: 0 + ratings: 0 author: "Pab-Theme" repo: "https://github.com/DweOfisial/Theme-Visual-PaB" url: "https://marketplace.visualstudio.com/items?itemName=Pab-Theme.purpleandblack" diff --git a/themes/purplechan.yaml b/themes/purplechan.yaml index 6110bebe..91025ece 100644 --- a/themes/purplechan.yaml +++ b/themes/purplechan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "morizkay.purplechan" version: "0.0.7" installs: 559 + rating: 0 + ratings: 0 author: "Morizkay" repo: "https://github.com/blangkohq/purplechan" url: "https://marketplace.visualstudio.com/items?itemName=morizkay.purplechan" diff --git a/themes/purplecrystal.yaml b/themes/purplecrystal.yaml index 4e0deef7..b7a645ce 100644 --- a/themes/purplecrystal.yaml +++ b/themes/purplecrystal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PyJOJO.pycodejojo" version: "2025.11.13" installs: 121 + rating: 0 + ratings: 0 author: "PyJOJO" repo: "https://github.com/SakuraMYK/PyCodeJOJO" url: "https://marketplace.visualstudio.com/items?itemName=PyJOJO.pycodejojo" diff --git a/themes/purplefy.yaml b/themes/purplefy.yaml index c2c9b7a3..f3c1a888 100644 --- a/themes/purplefy.yaml +++ b/themes/purplefy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VictorLima.victory-theme" version: "0.1.0" installs: 238 + rating: 0 + ratings: 0 author: "Victor Lima" repo: "https://github.com/victorlim4/victory-theme" url: "https://marketplace.visualstudio.com/items?itemName=VictorLima.victory-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "magenta" hue: 302 + pair: null contrast: fg: 95.3 black: 0 diff --git a/themes/purplephantom.yaml b/themes/purplephantom.yaml index 3756180e..ca2c3911 100644 --- a/themes/purplephantom.yaml +++ b/themes/purplephantom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PyJOJO.pycodejojo" version: "2025.11.13" installs: 121 + rating: 0 + ratings: 0 author: "PyJOJO" repo: "https://github.com/SakuraMYK/PyCodeJOJO" url: "https://marketplace.visualstudio.com/items?itemName=PyJOJO.pycodejojo" diff --git a/themes/purpler.yaml b/themes/purpler.yaml index 581724b9..fb06fe77 100644 --- a/themes/purpler.yaml +++ b/themes/purpler.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jeffwdiaz.purpler" version: "0.0.2" installs: 12 + rating: 0 + ratings: 0 author: "jeffwdiaz" repo: "https://github.com/jeffwdiaz/purpler" url: "https://marketplace.visualstudio.com/items?itemName=jeffwdiaz.purpler" diff --git a/themes/purplespace.yaml b/themes/purplespace.yaml index 31bb6d69..77a4c566 100644 --- a/themes/purplespace.yaml +++ b/themes/purplespace.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.purplespace" version: "0.0.7" installs: 4010 + rating: 5 + ratings: 1 author: "YesCode" repo: "https://github.com/yesomac/purplespace" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.purplespace" diff --git a/themes/purplexed-magic.yaml b/themes/purplexed-magic.yaml index 41f641c4..4b1ee4e9 100644 --- a/themes/purplexed-magic.yaml +++ b/themes/purplexed-magic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mylifeismarvelous.purplexed-magic" version: "1.0.1" installs: 135 + rating: 0 + ratings: 0 author: "mylifeismarvelous" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mylifeismarvelous.purplexed-magic" diff --git a/themes/purplexed-theme.yaml b/themes/purplexed-theme.yaml index 7f481123..ce09422a 100644 --- a/themes/purplexed-theme.yaml +++ b/themes/purplexed-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevangTomar.vscode-diverse-dye" version: "1.3.0" installs: 2595 + rating: 5 + ratings: 3 author: "Devang Tomar ⭐" repo: "https://github.com/devangtomar/vscode-diverse-dye" url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" diff --git a/themes/purplezera.yaml b/themes/purplezera.yaml index ed802c6d..6de1934f 100644 --- a/themes/purplezera.yaml +++ b/themes/purplezera.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gabrielqueirozdev.purplezera" version: "0.0.1" installs: 127 + rating: 0 + ratings: 0 author: "Gabriel Queiroz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gabrielqueirozdev.purplezera" diff --git a/themes/purplish-fork.yaml b/themes/purplish-fork.yaml index d800086b..26864344 100644 --- a/themes/purplish-fork.yaml +++ b/themes/purplish-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xynny.purple-theme" version: "0.0.2" installs: 6245 + rating: 5 + ratings: 3 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.purple-theme" diff --git a/themes/purply-dark.yaml b/themes/purply-dark.yaml index 10a5e353..37ce90f2 100644 --- a/themes/purply-dark.yaml +++ b/themes/purply-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jeremy-gower.purply-theme" version: "2.0.5" installs: 3049 + rating: 5 + ratings: 2 author: "Jeremy Gower" repo: "https://github.com/jdgower/purply-theme" url: "https://marketplace.visualstudio.com/items?itemName=jeremy-gower.purply-theme" diff --git a/themes/purply-light.yaml b/themes/purply-light.yaml index e6d6bc8f..c37c547d 100644 --- a/themes/purply-light.yaml +++ b/themes/purply-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jeremy-gower.purply-theme" version: "2.0.5" installs: 3049 + rating: 5 + ratings: 2 author: "Jeremy Gower" repo: "https://github.com/jdgower/purply-theme" url: "https://marketplace.visualstudio.com/items?itemName=jeremy-gower.purply-theme" diff --git a/themes/purppy.yaml b/themes/purppy.yaml index ec168049..b1e05e58 100644 --- a/themes/purppy.yaml +++ b/themes/purppy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "1izardo.purppy-vs-code" version: "0.2.1" installs: 666 + rating: 0 + ratings: 0 author: "Daniel Lazaro" repo: "https://github.com/1izardo/purppy-vs-code" url: "https://marketplace.visualstudio.com/items?itemName=1izardo.purppy-vs-code" diff --git a/themes/purps.yaml b/themes/purps.yaml index 8800eacb..f5c90409 100644 --- a/themes/purps.yaml +++ b/themes/purps.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "amessytheme.Purps" version: "0.0.1" installs: 36 + rating: 0 + ratings: 0 author: "amessytheme" repo: "https://gihub.com/mtdowner/Purps" url: "https://marketplace.visualstudio.com/items?itemName=amessytheme.Purps" diff --git a/themes/purr-light.yaml b/themes/purr-light.yaml new file mode 100644 index 00000000..ee3aa52d --- /dev/null +++ b/themes/purr-light.yaml @@ -0,0 +1,52 @@ +name: "Purr Light" +source: + marketplace_id: "ryuu.vscode-purr" + version: "1.1.2" + installs: 479 + rating: 0 + ratings: 0 + author: "Ryuu" + repo: "https://github.com/ryuudotgg/vscode-purr" + url: "https://marketplace.visualstudio.com/items?itemName=ryuu.vscode-purr" +colors: + bg: "#FFFFFF" + fg: "#2E3440" + black: "#FFFFFF" + red: "#B14B6B" + green: "#17B59B" + yellow: "#FAD84F" + blue: "#539BE8" + magenta: "#D96FAE" + cyan: "#539BE8" + white: "#2E3440" + brightBlack: "#2E3440" + brightRed: "#B14B6B" + brightGreen: "#17B59B" + brightYellow: "#FAD84F" + brightBlue: "#4F8AD8" + brightMagenta: "#D96FAE" + brightCyan: "#4F8AD8" + brightWhite: "#2E3440" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 98.4 + black: 0 + red: 74.8 + green: 50 + yellow: 19.2 + blue: 55.2 + magenta: 57.2 + cyan: 55.2 + white: 98.4 + brightBlack: 98.4 + brightRed: 74.8 + brightGreen: 50 + brightYellow: 19.2 + brightBlue: 62.6 + brightMagenta: 57.2 + brightCyan: 62.6 + brightWhite: 98.4 diff --git a/themes/purrfect-marshmallow-lavender-night.yaml b/themes/purrfect-marshmallow-lavender-night.yaml index e4610f7b..ee3fea0c 100644 --- a/themes/purrfect-marshmallow-lavender-night.yaml +++ b/themes/purrfect-marshmallow-lavender-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diananyamai.purrfect-marshmallow-theme" version: "0.0.3" installs: 310 + rating: 5 + ratings: 5 author: "diana nyamai" repo: "https://github.com/Diana-nyamai/purrfect-marshmallow-theme" url: "https://marketplace.visualstudio.com/items?itemName=diananyamai.purrfect-marshmallow-theme" diff --git a/themes/purrfect-marshmallow-pastel-pink.yaml b/themes/purrfect-marshmallow-pastel-pink.yaml index 491d6dca..f81d36ed 100644 --- a/themes/purrfect-marshmallow-pastel-pink.yaml +++ b/themes/purrfect-marshmallow-pastel-pink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diananyamai.purrfect-marshmallow-theme" version: "0.0.3" installs: 310 + rating: 5 + ratings: 5 author: "diana nyamai" repo: "https://github.com/Diana-nyamai/purrfect-marshmallow-theme" url: "https://marketplace.visualstudio.com/items?itemName=diananyamai.purrfect-marshmallow-theme" diff --git a/themes/purstel.yaml b/themes/purstel.yaml index 7d6bc167..fd02f94e 100644 --- a/themes/purstel.yaml +++ b/themes/purstel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "synanesthetics.purstel-theme" version: "0.1.0" installs: 235 + rating: 0 + ratings: 0 author: "synanesthetics" repo: "https://github.com/synanesthetics/Purstel" url: "https://marketplace.visualstudio.com/items?itemName=synanesthetics.purstel-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "indigo" hue: 303 + pair: null contrast: fg: 81.4 black: 10.7 diff --git a/themes/purupiu-theme.yaml b/themes/purupiu-theme.yaml index 3786aea5..17502f2f 100644 --- a/themes/purupiu-theme.yaml +++ b/themes/purupiu-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Isadora.purupiu-theme" version: "0.0.2" installs: 151 + rating: 0 + ratings: 0 author: "Isadora" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Isadora.purupiu-theme" diff --git a/themes/pushkin-is-white.yaml b/themes/pushkin-is-white.yaml index 348059c8..91606a65 100644 --- a/themes/pushkin-is-white.yaml +++ b/themes/pushkin-is-white.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ispushkin.pushkin-is-white-theme" version: "0.0.7" installs: 12365 + rating: 5 + ratings: 4 author: "IS. Pushkin" repo: "https://github.com/llatigid/Pushkin-is-White-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ispushkin.pushkin-is-white-theme" diff --git a/themes/pussdev-pink-theme.yaml b/themes/pussdev-pink-theme.yaml index 5bcaef34..e85bc806 100644 --- a/themes/pussdev-pink-theme.yaml +++ b/themes/pussdev-pink-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pussdev.pussdev-pink-theme" version: "1.0.0" installs: 219 + rating: 0 + ratings: 0 author: "pussdev" repo: "https://github.com/pussdev/pussdev-pink-theme" url: "https://marketplace.visualstudio.com/items?itemName=pussdev.pussdev-pink-theme" diff --git a/themes/pvdk-theme.yaml b/themes/pvdk-theme.yaml index 22a949a5..d8e91100 100644 --- a/themes/pvdk-theme.yaml +++ b/themes/pvdk-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gpovidaiko.pvdk-theme" version: "0.0.1" installs: 41 + rating: 0 + ratings: 0 author: "gpovidaiko" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gpovidaiko.pvdk-theme" diff --git a/themes/pycharm-theme.yaml b/themes/pycharm-theme.yaml index 7d05fd73..e5d7e835 100644 --- a/themes/pycharm-theme.yaml +++ b/themes/pycharm-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kenethriera.jb-pycharm-theme" version: "0.0.13" installs: 2313 + rating: 0 + ratings: 0 author: "Keneth Riera" repo: "https://github.com/rierarizzo/pycharm-kr-theme" url: "https://marketplace.visualstudio.com/items?itemName=kenethriera.jb-pycharm-theme" diff --git a/themes/python-bright-colors-theme.yaml b/themes/python-bright-colors-theme.yaml index 7d08538c..cd2384e0 100644 --- a/themes/python-bright-colors-theme.yaml +++ b/themes/python-bright-colors-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Meda2dAsada.python-bright-colors-theme" version: "0.0.1" installs: 893 + rating: 5 + ratings: 1 author: "Meda2dAsada" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Meda2dAsada.python-bright-colors-theme" diff --git a/themes/qara.yaml b/themes/qara.yaml index ace0eb72..ea136248 100644 --- a/themes/qara.yaml +++ b/themes/qara.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasanHasanli.qara" version: "2.2.0" installs: 234 + rating: 0 + ratings: 0 author: "Hasan Hasanli" repo: "https://github.com/hasan-li/qara-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=HasanHasanli.qara" diff --git a/themes/qerz-theme.yaml b/themes/qerz-theme.yaml index 6550d2d3..deb94c3d 100644 --- a/themes/qerz-theme.yaml +++ b/themes/qerz-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GabrielQueir0z.qerz-v1" version: "0.0.0" installs: 30 + rating: 0 + ratings: 0 author: "GabrielQueir0z" repo: null url: "https://marketplace.visualstudio.com/items?itemName=GabrielQueir0z.qerz-v1" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.5 black: 0 diff --git a/themes/qihui-tech-light.yaml b/themes/qihui-tech-light.yaml new file mode 100644 index 00000000..6b423e4f --- /dev/null +++ b/themes/qihui-tech-light.yaml @@ -0,0 +1,52 @@ +name: "QiHui Tech Light" +source: + marketplace_id: "DamonSongYu.qihui-tech" + version: "0.0.5" + installs: 14 + rating: 0 + ratings: 0 + author: "Damon Song Yu" + repo: "https://github.com/damonsongyu-source/vscode-qihui-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DamonSongYu.qihui-tech" +colors: + bg: "#FFFFFF" + fg: "#2A332B" + black: "#2A332B" + red: "#D65D45" + green: "#596E5C" + yellow: "#E9C46A" + blue: "#596E5C" + magenta: "#F4A261" + cyan: "#8BA690" + white: "#F8F9FA" + brightBlack: "#2A332B" + brightRed: "#D65D45" + brightGreen: "#596E5C" + brightYellow: "#E9C46A" + brightBlue: "#596E5C" + brightMagenta: "#F4A261" + brightCyan: "#8BA690" + brightWhite: "#F8F9FA" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "QiHui Tech Night" + contrast: + fg: 99.3 + black: 99.3 + red: 64.9 + green: 77.5 + yellow: 29.4 + blue: 77.5 + magenta: 40 + cyan: 51.4 + white: 0 + brightBlack: 99.3 + brightRed: 64.9 + brightGreen: 77.5 + brightYellow: 29.4 + brightBlue: 77.5 + brightMagenta: 40 + brightCyan: 51.4 + brightWhite: 0 diff --git a/themes/qihui-tech-night.yaml b/themes/qihui-tech-night.yaml new file mode 100644 index 00000000..920248fb --- /dev/null +++ b/themes/qihui-tech-night.yaml @@ -0,0 +1,52 @@ +name: "QiHui Tech Night" +source: + marketplace_id: "DamonSongYu.qihui-tech" + version: "0.0.5" + installs: 14 + rating: 0 + ratings: 0 + author: "Damon Song Yu" + repo: "https://github.com/damonsongyu-source/vscode-qihui-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DamonSongYu.qihui-tech" +colors: + bg: "#0F1C15" + fg: "#E3E5D4" + black: "#0F1C15" + red: "#E76F51" + green: "#A3B18A" + yellow: "#E9C46A" + blue: "#4B6A50" + magenta: "#F4A261" + cyan: "#8AB17D" + white: "#E3E5D4" + brightBlack: "#0F1C15" + brightRed: "#E76F51" + brightGreen: "#A3B18A" + brightYellow: "#E9C46A" + brightBlue: "#4B6A50" + brightMagenta: "#F4A261" + brightCyan: "#8AB17D" + brightWhite: "#E3E5D4" +meta: + mode: "dark" + accent: "orange" + hue: 160 + pair: "QiHui Tech Light" + contrast: + fg: 88.7 + black: 0 + red: 43.2 + green: 55.9 + yellow: 72.2 + blue: 20.4 + magenta: 61 + cyan: 53.1 + white: 88.7 + brightBlack: 0 + brightRed: 43.2 + brightGreen: 55.9 + brightYellow: 72.2 + brightBlue: 20.4 + brightMagenta: 61 + brightCyan: 53.1 + brightWhite: 88.7 diff --git a/themes/qihui-tech.yaml b/themes/qihui-tech.yaml new file mode 100644 index 00000000..f6f8f20f --- /dev/null +++ b/themes/qihui-tech.yaml @@ -0,0 +1,52 @@ +name: "QiHui Tech" +source: + marketplace_id: "DamonSongYu.qihui-tech" + version: "0.0.5" + installs: 14 + rating: 0 + ratings: 0 + author: "Damon Song Yu" + repo: "https://github.com/damonsongyu-source/vscode-qihui-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DamonSongYu.qihui-tech" +colors: + bg: "#344E41" + fg: "#DAD7CD" + black: "#344E41" + red: "#A3B18A" + green: "#DAD7CD" + yellow: "#A3B18A" + blue: "#588157" + magenta: "#A3B18A" + cyan: "#DAD7CD" + white: "#DAD7CD" + brightBlack: "#344E41" + brightRed: "#A3B18A" + brightGreen: "#DAD7CD" + brightYellow: "#A3B18A" + brightBlue: "#588157" + brightMagenta: "#A3B18A" + brightCyan: "#DAD7CD" + brightWhite: "#DAD7CD" +meta: + mode: "dark" + accent: "green" + hue: 162 + pair: null + contrast: + fg: 69.6 + black: 0 + red: 44.5 + green: 69.6 + yellow: 44.5 + blue: 18 + magenta: 44.5 + cyan: 69.6 + white: 69.6 + brightBlack: 0 + brightRed: 44.5 + brightGreen: 69.6 + brightYellow: 44.5 + brightBlue: 18 + brightMagenta: 44.5 + brightCyan: 69.6 + brightWhite: 69.6 diff --git a/themes/qii-theme-dark-shallow.yaml b/themes/qii-theme-dark-shallow.yaml index f7e2906c..23f3b309 100644 --- a/themes/qii-theme-dark-shallow.yaml +++ b/themes/qii-theme-dark-shallow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "qiqi29.qii-theme" version: "1.6.4" installs: 3877 + rating: 5 + ratings: 2 author: "qiqi29" repo: "https://github.com/Qiqi29/qii-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" diff --git a/themes/qii-theme-dark.yaml b/themes/qii-theme-dark.yaml index 94ea3d7e..ba0e3224 100644 --- a/themes/qii-theme-dark.yaml +++ b/themes/qii-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "qiqi29.qii-theme" version: "1.6.4" installs: 3877 + rating: 5 + ratings: 2 author: "qiqi29" repo: "https://github.com/Qiqi29/qii-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" diff --git a/themes/qii-theme-light.yaml b/themes/qii-theme-light.yaml index fefba023..bc39729b 100644 --- a/themes/qii-theme-light.yaml +++ b/themes/qii-theme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "qiqi29.qii-theme" version: "1.6.4" installs: 3877 + rating: 5 + ratings: 2 author: "qiqi29" repo: "https://github.com/Qiqi29/qii-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" diff --git a/themes/qoder-dark.yaml b/themes/qoder-dark.yaml index 8b0b68cb..9cf7b915 100644 --- a/themes/qoder-dark.yaml +++ b/themes/qoder-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tryToDEv.cyber-qoder-themes" version: "1.2.0" installs: 15 + rating: 0 + ratings: 0 author: "tryToDEv" repo: "https://github.com/shivam20/cyber-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" diff --git a/themes/qqqoid-light-color.yaml b/themes/qqqoid-light-color.yaml index 14c3ddbe..d48b3dc4 100644 --- a/themes/qqqoid-light-color.yaml +++ b/themes/qqqoid-light-color.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SalavatDSamigoullin.another-one-theme-pack" version: "0.0.6" installs: 333 + rating: 0 + ratings: 0 author: "Salavat D. Samigoullin" repo: "https://github.com/SalavatSamigoullin/qqqoid-themes" url: "https://marketplace.visualstudio.com/items?itemName=SalavatDSamigoullin.another-one-theme-pack" diff --git a/themes/qt-creator-like-dark-theme.yaml b/themes/qt-creator-like-dark-theme.yaml index e58bbe25..ec41bf6a 100644 --- a/themes/qt-creator-like-dark-theme.yaml +++ b/themes/qt-creator-like-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MichaelH.qtlike-dark-theme" version: "0.0.1" installs: 3268 + rating: 0 + ratings: 0 author: "Michael H" repo: "https://github.com/Michael-H7/vscode-qtlike-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=MichaelH.qtlike-dark-theme" diff --git a/themes/qtz-theme.yaml b/themes/qtz-theme.yaml index 96203af3..e95e0943 100644 --- a/themes/qtz-theme.yaml +++ b/themes/qtz-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "qiupeng.qtz-theme" version: "0.1.3" installs: 134 + rating: 0 + ratings: 0 author: "qiupeng" repo: "https://gitcode.com/qiupeng/qtz-theme" url: "https://marketplace.visualstudio.com/items?itemName=qiupeng.qtz-theme" diff --git a/themes/quantum-blue-dark.yaml b/themes/quantum-blue-dark.yaml index 89917674..f717e892 100644 --- a/themes/quantum-blue-dark.yaml +++ b/themes/quantum-blue-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "6233c1c4-89f3-48cf-8c88-156b07876860.quantum-blue-theme" version: "1.0.0" installs: 93 + rating: 0 + ratings: 0 author: "YasserElgammal" repo: "https://github.com/YasserElgammal/quantum-blue-theme" url: "https://marketplace.visualstudio.com/items?itemName=6233c1c4-89f3-48cf-8c88-156b07876860.quantum-blue-theme" diff --git a/themes/quantum-dark.yaml b/themes/quantum-dark.yaml new file mode 100644 index 00000000..a6842cf4 --- /dev/null +++ b/themes/quantum-dark.yaml @@ -0,0 +1,52 @@ +name: "Quantum Dark" +source: + marketplace_id: "CalebEphrem.quantum" + version: "2.0.3" + installs: 414 + rating: 5 + ratings: 2 + author: "Caleb Ephrem" + repo: "https://github.com/calebephrem/quantum-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" +colors: + bg: "#000017" + fg: "#E5E5E5" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#DDCC55" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#70EFEF" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAFF4C" + brightYellow: "#FFDD70" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#00DDEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 90.9 + black: 0 + red: 45 + green: 71 + yellow: 74.7 + blue: 61.5 + magenta: 61.6 + cyan: 85.5 + white: 72.6 + brightBlack: 23.8 + brightRed: 47.5 + brightGreen: 93 + brightYellow: 87.6 + brightBlue: 64.3 + brightMagenta: 64.3 + brightCyan: 74.1 + brightWhite: 107.8 diff --git a/themes/quantum-fluidity.yaml b/themes/quantum-fluidity.yaml new file mode 100644 index 00000000..99c7e8d0 --- /dev/null +++ b/themes/quantum-fluidity.yaml @@ -0,0 +1,52 @@ +name: "Quantum Fluidity" +source: + marketplace_id: "i4cdeath.quantum-fluidity-theme" + version: "1.0.2" + installs: 6 + rating: 0 + ratings: 0 + author: "i4cdeath" + repo: "https://github.com/I4cTime/quantum-fluidity-theme" + url: "https://marketplace.visualstudio.com/items?itemName=i4cdeath.quantum-fluidity-theme" +colors: + bg: "#050505" + fg: "#F8F9FA" + black: "#050505" + red: "#FF0055" + green: "#00E676" + yellow: "#FFB800" + blue: "#00D1FF" + magenta: "#B266FF" + cyan: "#00D1FF" + white: "#F8F9FA" + brightBlack: "#1A1A2E" + brightRed: "#FF3377" + brightGreen: "#33FFAA" + brightYellow: "#FFD133" + brightBlue: "#33DDFF" + brightMagenta: "#C888FF" + brightCyan: "#33DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.8 + black: 0 + red: 38.2 + green: 74.3 + yellow: 71.6 + blue: 69.5 + magenta: 41.1 + cyan: 69.5 + white: 103.8 + brightBlack: 0 + brightRed: 40.8 + brightGreen: 89 + brightYellow: 81.8 + brightBlue: 75.5 + brightMagenta: 53.2 + brightCyan: 75.5 + brightWhite: 107.9 diff --git a/themes/quantum-flux.yaml b/themes/quantum-flux.yaml new file mode 100644 index 00000000..f8660a72 --- /dev/null +++ b/themes/quantum-flux.yaml @@ -0,0 +1,50 @@ +name: "Quantum Flux" +source: + marketplace_id: "nextgencode.nextgen-terminal" + version: "1.2.1" + installs: 105 + author: "NextGenCode" + repo: "https://github.com/Mattzey/nextgen-terminal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" +colors: + bg: "#000000" + fg: "#64FFDA" + black: "#000000" + red: "#FF006E" + green: "#06FFA5" + yellow: "#D946EF" + blue: "#00F0FF" + magenta: "#B024FF" + cyan: "#00D9FF" + white: "#64FFDA" + brightBlack: "#7B2CBF" + brightRed: "#FF006E" + brightGreen: "#06FFA5" + brightYellow: "#D946EF" + brightBlue: "#00F0FF" + brightMagenta: "#FF00FF" + brightCyan: "#00D9FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 92.2 + black: 0 + red: 38.8 + green: 88.5 + yellow: 40.7 + blue: 84.5 + magenta: 31.3 + cyan: 73.3 + white: 92.2 + brightBlack: 18.4 + brightRed: 38.8 + brightGreen: 88.5 + brightYellow: 40.7 + brightBlue: 84.5 + brightMagenta: 46.2 + brightCyan: 73.3 + brightWhite: 107.9 diff --git a/themes/quantum-green.yaml b/themes/quantum-green.yaml index 290badb5..c09da745 100644 --- a/themes/quantum-green.yaml +++ b/themes/quantum-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodewithBismillah.chroma-library" version: "1.2.1" installs: 358 + rating: 5 + ratings: 1 author: "Code with Bismillah" repo: "https://github.com/mubashir1837/Chroma-Library" url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" diff --git a/themes/quantum-material-theme-dark.yaml b/themes/quantum-material-theme-dark.yaml new file mode 100644 index 00000000..c0c1236a --- /dev/null +++ b/themes/quantum-material-theme-dark.yaml @@ -0,0 +1,50 @@ +name: "Quantum Material Theme - Dark" +source: + marketplace_id: "michaelmendez.quantum-material-theme" + version: "0.0.7" + installs: 118 + author: "Michael Méndez" + repo: "https://github.com/michaelmendez/quantum-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=michaelmendez.quantum-material-theme" +colors: + bg: "#101119" + fg: "#DADADA" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#D19BF4" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#D19BF4" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 279 + pair: "Quantum Material Theme - Light" + contrast: + fg: 83.6 + black: 0 + red: 44.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 59.3 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 44.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 59.3 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/quantum-material-theme-light.yaml b/themes/quantum-material-theme-light.yaml new file mode 100644 index 00000000..4145a850 --- /dev/null +++ b/themes/quantum-material-theme-light.yaml @@ -0,0 +1,50 @@ +name: "Quantum Material Theme - Light" +source: + marketplace_id: "michaelmendez.quantum-material-theme" + version: "0.0.7" + installs: 118 + author: "Michael Méndez" + repo: "https://github.com/michaelmendez/quantum-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=michaelmendez.quantum-material-theme" +colors: + bg: "#FAFAFA" + fg: "#1A1D23" + black: "#263238" + red: "#E53935" + green: "#43A047" + yellow: "#FDD835" + blue: "#1976D2" + magenta: "#8E24AA" + cyan: "#00ACC1" + white: "#CFD8DC" + brightBlack: "#546E7A" + brightRed: "#EF5350" + brightGreen: "#66BB6A" + brightYellow: "#FFCA28" + brightBlue: "#42A5F5" + brightMagenta: "#AB47BC" + brightCyan: "#26C6DA" + brightWhite: "#ECEFF1" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Quantum Material Theme - Dark" + contrast: + fg: 100.8 + black: 96.5 + red: 64.7 + green: 57.1 + yellow: 16 + blue: 68.4 + magenta: 80.2 + cyan: 49.3 + white: 18.4 + brightBlack: 73.9 + brightRed: 58.4 + brightGreen: 43.4 + brightYellow: 21.3 + brightBlue: 48.2 + brightMagenta: 69.7 + brightCyan: 36.8 + brightWhite: 0 diff --git a/themes/quantum-material-theme-void.yaml b/themes/quantum-material-theme-void.yaml new file mode 100644 index 00000000..eb62947a --- /dev/null +++ b/themes/quantum-material-theme-void.yaml @@ -0,0 +1,50 @@ +name: "Quantum Material Theme - Void" +source: + marketplace_id: "michaelmendez.quantum-material-theme" + version: "0.0.7" + installs: 118 + author: "Michael Méndez" + repo: "https://github.com/michaelmendez/quantum-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=michaelmendez.quantum-material-theme" +colors: + bg: "#0B0A0B" + fg: "#D0D0D0" + black: "#000000" + red: "#EF5370" + green: "#B3D87D" + yellow: "#EFBB6B" + blue: "#729AFF" + magenta: "#C18BE4" + cyan: "#79CDFF" + white: "#FFFFFF" + brightBlack: "#3A3A4D" + brightRed: "#EF5370" + brightGreen: "#B3D87D" + brightYellow: "#EFBB6B" + brightBlue: "#729AFF" + brightMagenta: "#C18BE4" + brightCyan: "#79CDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 77.9 + black: 0 + red: 40.8 + green: 75.4 + yellow: 70.7 + blue: 49.6 + magenta: 51.2 + cyan: 70.7 + white: 107.7 + brightBlack: 0 + brightRed: 40.8 + brightGreen: 75.4 + brightYellow: 70.7 + brightBlue: 49.6 + brightMagenta: 51.2 + brightCyan: 70.7 + brightWhite: 107.7 diff --git a/themes/quantum-mirage.yaml b/themes/quantum-mirage.yaml new file mode 100644 index 00000000..e1accdc2 --- /dev/null +++ b/themes/quantum-mirage.yaml @@ -0,0 +1,52 @@ +name: "Quantum Mirage" +source: + marketplace_id: "CalebEphrem.quantum" + version: "2.0.3" + installs: 414 + rating: 5 + ratings: 2 + author: "Caleb Ephrem" + repo: "https://github.com/calebephrem/quantum-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" +colors: + bg: "#141530" + fg: "#E5E5E5" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#DDCC55" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#70EFEF" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAFF4C" + brightYellow: "#FFDD70" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#00DDEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 279 + pair: null + contrast: + fg: 89.9 + black: 0 + red: 43.9 + green: 69.9 + yellow: 73.6 + blue: 60.4 + magenta: 60.5 + cyan: 84.4 + white: 71.6 + brightBlack: 22.7 + brightRed: 46.4 + brightGreen: 92 + brightYellow: 86.5 + brightBlue: 63.2 + brightMagenta: 63.3 + brightCyan: 73 + brightWhite: 106.7 diff --git a/themes/quantum-night.yaml b/themes/quantum-night.yaml index 26597119..3a9d9bc3 100644 --- a/themes/quantum-night.yaml +++ b/themes/quantum-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NGdust.quantum-night" version: "1.0.0" installs: 98 + rating: 5 + ratings: 1 author: "NGdust" repo: "https://github.com/NGdust/quantum-night" url: "https://marketplace.visualstudio.com/items?itemName=NGdust.quantum-night" diff --git a/themes/quantum-synthwave.yaml b/themes/quantum-synthwave.yaml index bb3385d7..dcb52041 100644 --- a/themes/quantum-synthwave.yaml +++ b/themes/quantum-synthwave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GatomontesRoselll.quantum-vscode" version: "0.1.22" installs: 640 + rating: 5 + ratings: 2 author: "GatomontesRoseIII" repo: "https://github.com/ramirezherreranoeelvis/quantum-vscode" url: "https://marketplace.visualstudio.com/items?itemName=GatomontesRoselll.quantum-vscode" diff --git a/themes/quantum.yaml b/themes/quantum.yaml new file mode 100644 index 00000000..a65e2156 --- /dev/null +++ b/themes/quantum.yaml @@ -0,0 +1,52 @@ +name: "Quantum" +source: + marketplace_id: "CalebEphrem.quantum" + version: "2.0.3" + installs: 414 + rating: 5 + ratings: 2 + author: "Caleb Ephrem" + repo: "https://github.com/calebephrem/quantum-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" +colors: + bg: "#040527" + fg: "#E5E5E5" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#DDCC55" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#70EFEF" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAFF4C" + brightYellow: "#FFDD70" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#00DDEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 272 + pair: null + contrast: + fg: 90.7 + black: 0 + red: 44.8 + green: 70.7 + yellow: 74.4 + blue: 61.3 + magenta: 61.3 + cyan: 85.3 + white: 72.4 + brightBlack: 23.6 + brightRed: 47.3 + brightGreen: 92.8 + brightYellow: 87.4 + brightBlue: 64.1 + brightMagenta: 64.1 + brightCyan: 73.9 + brightWhite: 107.6 diff --git a/themes/quantumqubic.yaml b/themes/quantumqubic.yaml index 16652e16..fbb17250 100644 --- a/themes/quantumqubic.yaml +++ b/themes/quantumqubic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "furkangkhsn.quantumqubic" version: "0.0.3" installs: 341 + rating: 0 + ratings: 0 author: "Furkan Gökhasan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=furkangkhsn.quantumqubic" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 230 + pair: null contrast: fg: 102.7 black: 0 diff --git a/themes/quantxz.yaml b/themes/quantxz.yaml index 5982a037..ae8eb7a9 100644 --- a/themes/quantxz.yaml +++ b/themes/quantxz.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "quantxz.quantxz" version: "0.0.9" installs: 1990 + rating: 5 + ratings: 1 author: "anderson" repo: "https://github.com/quantxz/dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=quantxz.quantxz" diff --git a/themes/quarkus-dark-theme.yaml b/themes/quarkus-dark-theme.yaml index 1fca0908..dd83f867 100644 --- a/themes/quarkus-dark-theme.yaml +++ b/themes/quarkus-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tsurdilovic.theme-quarkus-dark" version: "0.0.1" installs: 8881 + rating: 0 + ratings: 0 author: "Tihomir Surdilovic" repo: "https://github.com/tsurdilo/theme-quarkus-dark" url: "https://marketplace.visualstudio.com/items?itemName=tsurdilovic.theme-quarkus-dark" diff --git a/themes/quartzium-theme-dark.yaml b/themes/quartzium-theme-dark.yaml new file mode 100644 index 00000000..27f24454 --- /dev/null +++ b/themes/quartzium-theme-dark.yaml @@ -0,0 +1,52 @@ +name: "Quartzium-Theme-Dark" +source: + marketplace_id: "gautamankoji.quartzium-theme" + version: "0.0.1" + installs: 158 + rating: 5 + ratings: 1 + author: "gautamankoji" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gautamankoji.quartzium-theme" +colors: + bg: "#141414" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.8 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/quartzium-theme-darker.yaml b/themes/quartzium-theme-darker.yaml new file mode 100644 index 00000000..ae992496 --- /dev/null +++ b/themes/quartzium-theme-darker.yaml @@ -0,0 +1,52 @@ +name: "Quartzium-Theme-Darker" +source: + marketplace_id: "gautamankoji.quartzium-theme" + version: "0.0.1" + installs: 158 + rating: 5 + ratings: 1 + author: "gautamankoji" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gautamankoji.quartzium-theme" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#545454" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 45.3 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 13.5 + brightRed: 45.3 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/quartzium-theme-deepforest.yaml b/themes/quartzium-theme-deepforest.yaml new file mode 100644 index 00000000..7f606ecb --- /dev/null +++ b/themes/quartzium-theme-deepforest.yaml @@ -0,0 +1,52 @@ +name: "Quartzium-Theme-Deepforest" +source: + marketplace_id: "gautamankoji.quartzium-theme" + version: "0.0.1" + installs: 158 + rating: 5 + ratings: 1 + author: "gautamankoji" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gautamankoji.quartzium-theme" +colors: + bg: "#141F1D" + fg: "#C2EDD3" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#6FA0DE" + magenta: "#A68DCD" + cyan: "#74C9DE" + white: "#FFFFFF" + brightBlack: "#476352" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#6FA0DE" + brightMagenta: "#A68DCD" + brightCyan: "#74C9DE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 182 + pair: null + contrast: + fg: 88 + black: 0 + red: 45.9 + green: 83.5 + yellow: 78.2 + blue: 47.8 + magenta: 45.2 + cyan: 65.2 + white: 106.2 + brightBlack: 17.5 + brightRed: 45.9 + brightGreen: 83.5 + brightYellow: 78.2 + brightBlue: 47.8 + brightMagenta: 45.2 + brightCyan: 65.2 + brightWhite: 106.2 diff --git a/themes/quartzium-theme-default.yaml b/themes/quartzium-theme-default.yaml new file mode 100644 index 00000000..3d56fad0 --- /dev/null +++ b/themes/quartzium-theme-default.yaml @@ -0,0 +1,52 @@ +name: "Quartzium-Theme-Default" +source: + marketplace_id: "gautamankoji.quartzium-theme" + version: "0.0.1" + installs: 158 + rating: 5 + ratings: 1 + author: "gautamankoji" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gautamankoji.quartzium-theme" +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 230 + pair: null + contrast: + fg: 100.4 + black: 0 + red: 42.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 102.7 + brightBlack: 19.7 + brightRed: 42.4 + brightGreen: 80 + brightYellow: 74.7 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/quartzium-theme-lighter.yaml b/themes/quartzium-theme-lighter.yaml new file mode 100644 index 00000000..033ded91 --- /dev/null +++ b/themes/quartzium-theme-lighter.yaml @@ -0,0 +1,52 @@ +name: "Quartzium-Theme-Lighter" +source: + marketplace_id: "gautamankoji.quartzium-theme" + version: "0.0.1" + installs: 158 + rating: 5 + ratings: 1 + author: "gautamankoji" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gautamankoji.quartzium-theme" +colors: + bg: "#FAFAFA" + fg: "#90A4AE" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#E2931D" + blue: "#6182B8" + magenta: "#9C3EDA" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#E2931D" + brightBlue: "#6182B8" + brightMagenta: "#9C3EDA" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 47.6 + black: 103 + red: 64.7 + green: 41.9 + yellow: 45.6 + blue: 63.3 + magenta: 71.3 + cyan: 48.8 + white: 0 + brightBlack: 47.6 + brightRed: 64.7 + brightGreen: 41.9 + brightYellow: 45.6 + brightBlue: 63.3 + brightMagenta: 71.3 + brightCyan: 48.8 + brightWhite: 0 diff --git a/themes/quasar.yaml b/themes/quasar.yaml index 2e3d8787..795b3d1f 100644 --- a/themes/quasar.yaml +++ b/themes/quasar.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AarushAgarwal.quasar" version: "0.4.0" installs: 1585 + rating: 0 + ratings: 0 author: "Aarush Agarwal" repo: "https://github.com/AgarwalAarush/Quasar" url: "https://marketplace.visualstudio.com/items?itemName=AarushAgarwal.quasar" diff --git a/themes/qubik-dark.yaml b/themes/qubik-dark.yaml index 2ece89a2..f3fb25e3 100644 --- a/themes/qubik-dark.yaml +++ b/themes/qubik-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "qnbhd.qubik-themes" version: "0.0.1" installs: 21 + rating: 0 + ratings: 0 author: "Templin Konstantin" repo: "https://github.com/qnbhd/qubik-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=qnbhd.qubik-themes" diff --git a/themes/qubik-light.yaml b/themes/qubik-light.yaml index d90cda1f..51823c61 100644 --- a/themes/qubik-light.yaml +++ b/themes/qubik-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "qnbhd.qubik-themes" version: "0.0.1" installs: 21 + rating: 0 + ratings: 0 author: "Templin Konstantin" repo: "https://github.com/qnbhd/qubik-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=qnbhd.qubik-themes" diff --git a/themes/queensland-dark.yaml b/themes/queensland-dark.yaml index 94b467cc..1ee4b802 100644 --- a/themes/queensland-dark.yaml +++ b/themes/queensland-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.queensland-theme" version: "1.4.0" installs: 2 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.queensland-theme" diff --git a/themes/queensland-light.yaml b/themes/queensland-light.yaml index 3399368e..93bf0b63 100644 --- a/themes/queensland-light.yaml +++ b/themes/queensland-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.queensland-theme" version: "1.4.0" installs: 2 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.queensland-theme" diff --git a/themes/quiet-canvas.yaml b/themes/quiet-canvas.yaml index 69897c42..2f973535 100644 --- a/themes/quiet-canvas.yaml +++ b/themes/quiet-canvas.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kevinwolfcr.vscode-quiet-canvas" version: "1.0.0" installs: 1749 + rating: 5 + ratings: 1 author: "(deprecated) Kevin Wolf" repo: "https://github.com/kevinwolfcr/vscode-quiet-canvas" url: "https://marketplace.visualstudio.com/items?itemName=kevinwolfcr.vscode-quiet-canvas" diff --git a/themes/quiet-hacker.yaml b/themes/quiet-hacker.yaml index c107c3a7..eb16dc69 100644 --- a/themes/quiet-hacker.yaml +++ b/themes/quiet-hacker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ManuelArtero.quiet-hacker" version: "1.0.1" installs: 37 + rating: 0 + ratings: 0 author: "Manuel Artero" repo: "https://github.com/manuartero/vscode-theme-quiet-hacker" url: "https://marketplace.visualstudio.com/items?itemName=ManuelArtero.quiet-hacker" diff --git a/themes/quietude.yaml b/themes/quietude.yaml index 827aa0ce..376091c1 100644 --- a/themes/quietude.yaml +++ b/themes/quietude.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cmrg.quietude" version: "0.1.2" installs: 77 + rating: 0 + ratings: 0 author: "rafaelrcamargo" repo: "https://github.com/rafaelrcamargo/quietude" url: "https://marketplace.visualstudio.com/items?itemName=cmrg.quietude" diff --git a/themes/quinno-darkness.yaml b/themes/quinno-darkness.yaml new file mode 100644 index 00000000..04ab8d31 --- /dev/null +++ b/themes/quinno-darkness.yaml @@ -0,0 +1,52 @@ +name: "Quinno Darkness" +source: + marketplace_id: "alistairjoel.quinnodarkness" + version: "0.0.5" + installs: 177 + rating: 0 + ratings: 0 + author: "alistairjoel" + repo: "https://github.com/alistairjoelquinn/quinno_darkness" + url: "https://marketplace.visualstudio.com/items?itemName=alistairjoel.quinnodarkness" +colors: + bg: "#38302E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 34 + pair: null + contrast: + fg: 75 + black: 0 + red: 22.2 + green: 48.5 + yellow: 81.1 + blue: 22.9 + magenta: 25.2 + cyan: 43 + white: 85.5 + brightBlack: 17.5 + brightRed: 34 + brightGreen: 59 + brightYellow: 91.1 + brightBlue: 35.5 + brightMagenta: 40.8 + brightCyan: 50.9 + brightWhite: 85.5 diff --git a/themes/quirky-contrast-theme.yaml b/themes/quirky-contrast-theme.yaml index e57cb514..6a3c54ed 100644 --- a/themes/quirky-contrast-theme.yaml +++ b/themes/quirky-contrast-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DarkMannn.quirky-contrast-theme" version: "0.0.10" installs: 617 + rating: 0 + ratings: 0 author: "DarkMannn" repo: "https://github.com/DarkMannn/quirky-contrast-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.quirky-contrast-theme" diff --git a/themes/qutheme.yaml b/themes/qutheme.yaml index 7c61e9e5..2a57878f 100644 --- a/themes/qutheme.yaml +++ b/themes/qutheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Yoyo0904.qutheme" version: "1.0.0" installs: 146 + rating: 0 + ratings: 0 author: "Yoyo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Yoyo0904.qutheme" diff --git a/themes/r-dark-pro-filter-coolnight.yaml b/themes/r-dark-pro-filter-coolnight.yaml index 598688b3..68ba3114 100644 --- a/themes/r-dark-pro-filter-coolnight.yaml +++ b/themes/r-dark-pro-filter-coolnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rezky.r-dark-pro" version: "0.0.44" installs: 3273 + rating: 5 + ratings: 1 author: "Rezky P. Budihartono" repo: "https://github.com/rezkycodes/rdark.pro" url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" diff --git a/themes/r-dark-pro-filter-dark-pro.yaml b/themes/r-dark-pro-filter-dark-pro.yaml index bbcb1e40..dd6d9c25 100644 --- a/themes/r-dark-pro-filter-dark-pro.yaml +++ b/themes/r-dark-pro-filter-dark-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rezky.r-dark-pro" version: "0.0.44" installs: 3273 + rating: 5 + ratings: 1 author: "Rezky P. Budihartono" repo: "https://github.com/rezkycodes/rdark.pro" url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" diff --git a/themes/r-dark-pro-filter-nightblack.yaml b/themes/r-dark-pro-filter-nightblack.yaml new file mode 100644 index 00000000..f9a618ea --- /dev/null +++ b/themes/r-dark-pro-filter-nightblack.yaml @@ -0,0 +1,52 @@ +name: "R Dark Pro (Filter Nightblack)" +source: + marketplace_id: "Rezky.r-dark-pro" + version: "0.0.44" + installs: 3273 + rating: 5 + ratings: 1 + author: "Rezky P. Budihartono" + repo: "https://github.com/rezkycodes/rdark.pro" + url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" +colors: + bg: "#121517" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 59.6 + black: 9.1 + red: 36.9 + green: 60.6 + yellow: 48.8 + blue: 49.9 + magenta: 39.3 + cyan: 52.7 + white: 83.3 + brightBlack: 15.7 + brightRed: 46.3 + brightGreen: 77 + brightYellow: 61.5 + brightBlue: 64 + brightMagenta: 50.5 + brightCyan: 68 + brightWhite: 90.9 diff --git a/themes/r-dark-pro-filter-nightfall.yaml b/themes/r-dark-pro-filter-nightfall.yaml index d45a6af1..0a55b23c 100644 --- a/themes/r-dark-pro-filter-nightfall.yaml +++ b/themes/r-dark-pro-filter-nightfall.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rezky.r-dark-pro" version: "0.0.44" installs: 3273 + rating: 5 + ratings: 1 author: "Rezky P. Budihartono" repo: "https://github.com/rezkycodes/rdark.pro" url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" diff --git a/themes/r-dark-pro-filter-nightgrey.yaml b/themes/r-dark-pro-filter-nightgrey.yaml index 1b46c5a3..7e1fa4a5 100644 --- a/themes/r-dark-pro-filter-nightgrey.yaml +++ b/themes/r-dark-pro-filter-nightgrey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rezky.r-dark-pro" version: "0.0.44" installs: 3273 + rating: 5 + ratings: 1 author: "Rezky P. Budihartono" repo: "https://github.com/rezkycodes/rdark.pro" url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" diff --git a/themes/r-dark-pro-filter-nightlate.yaml b/themes/r-dark-pro-filter-nightlate.yaml index 3c520a68..fd82a8e9 100644 --- a/themes/r-dark-pro-filter-nightlate.yaml +++ b/themes/r-dark-pro-filter-nightlate.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rezky.r-dark-pro" version: "0.0.44" installs: 3273 + rating: 5 + ratings: 1 author: "Rezky P. Budihartono" repo: "https://github.com/rezkycodes/rdark.pro" url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" diff --git a/themes/r-e-m.yaml b/themes/r-e-m.yaml index af3561c5..2460d15d 100644 --- a/themes/r-e-m.yaml +++ b/themes/r-e-m.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anyavyazemskaya.r-e-m" version: "0.0.1" installs: 0 + rating: 0 + ratings: 0 author: "anya vyazemskaya" repo: null url: "https://marketplace.visualstudio.com/items?itemName=anyavyazemskaya.r-e-m" diff --git a/themes/r-h-zero-monokai.yaml b/themes/r-h-zero-monokai.yaml index e9573e0e..d5dfe0ee 100644 --- a/themes/r-h-zero-monokai.yaml +++ b/themes/r-h-zero-monokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rhzero.rhzero-theme" version: "0.0.2" installs: 345 + rating: 5 + ratings: 2 author: "R_h_zero" repo: "https://github.com/chouchouxsl/vscode-theme-R_h_zero" url: "https://marketplace.visualstudio.com/items?itemName=Rhzero.rhzero-theme" diff --git a/themes/rabbit.yaml b/themes/rabbit.yaml index b080c64c..848b65fb 100644 --- a/themes/rabbit.yaml +++ b/themes/rabbit.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PlayfulRabbit.rabbit-theme" version: "0.0.1" installs: 102 + rating: 0 + ratings: 0 author: "Playful Rabbit" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PlayfulRabbit.rabbit-theme" diff --git a/themes/radiant-noir.yaml b/themes/radiant-noir.yaml index e16657df..3e470323 100644 --- a/themes/radiant-noir.yaml +++ b/themes/radiant-noir.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "marina-barbosa.canopus-theme" version: "0.0.1" installs: 27 + rating: 0 + ratings: 0 author: "marina-barbosa" repo: null url: "https://marketplace.visualstudio.com/items?itemName=marina-barbosa.canopus-theme" diff --git a/themes/radium.yaml b/themes/radium.yaml index ad395111..39234900 100644 --- a/themes/radium.yaml +++ b/themes/radium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndrewNijmeh.radium" version: "1.1.5" installs: 1222 + rating: 4.5 + ratings: 2 author: "Andrew Nijmeh" repo: "https://github.com/radium-theme/vsc" url: "https://marketplace.visualstudio.com/items?itemName=AndrewNijmeh.radium" diff --git a/themes/ragequit.yaml b/themes/ragequit.yaml index 2629ed7e..f72a6de4 100644 --- a/themes/ragequit.yaml +++ b/themes/ragequit.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YuriRage.ragequit" version: "0.1.4" installs: 297 + rating: 0 + ratings: 0 author: "Yuri Rage" repo: "https://github.com/yuri-rage/vscode-theme-ragequit" url: "https://marketplace.visualstudio.com/items?itemName=YuriRage.ragequit" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 264 + pair: null contrast: fg: 71.6 black: 0 diff --git a/themes/ragnarok.yaml b/themes/ragnarok.yaml index 9864064e..25ee795c 100644 --- a/themes/ragnarok.yaml +++ b/themes/ragnarok.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RagnarokCoding.ragnarok-coder-dark" version: "1.0.3" installs: 496 + rating: 3 + ratings: 1 author: "Filip Dzankic" repo: "https://github.com/CaptRagnarok/vscode-ragnarok-coder-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=RagnarokCoding.ragnarok-coder-dark" diff --git a/themes/raij-dark.yaml b/themes/raij-dark.yaml new file mode 100644 index 00000000..b666aadc --- /dev/null +++ b/themes/raij-dark.yaml @@ -0,0 +1,52 @@ +name: "Raijū - Dark" +source: + marketplace_id: "csmith23.raiju-contrast" + version: "0.0.2" + installs: 239 + rating: 0 + ratings: 0 + author: "coleman smith" + repo: "https://github.com/csmith23/raiju" + url: "https://marketplace.visualstudio.com/items?itemName=csmith23.raiju-contrast" +colors: + bg: "#171D2B" + fg: "#E6E6E6" + black: "#6F7899" + red: "#A188F1" + green: "#7EBBBB" + yellow: "#FFEDCB" + blue: "#8D9AD1" + magenta: "#CEB3F7" + cyan: "#A7A7EE" + white: "#D7E2FF" + brightBlack: "#6F7899" + brightRed: "#A188F1" + brightGreen: "#7EBBBB" + brightYellow: "#FFEDCB" + brightBlue: "#8D9AD1" + brightMagenta: "#CEB3F7" + brightCyan: "#A7A7EE" + brightWhite: "#D7E2FF" +meta: + mode: "dark" + accent: "magenta" + hue: 266 + pair: null + contrast: + fg: 89.9 + black: 29.8 + red: 45.3 + green: 58 + yellow: 95.5 + blue: 47.2 + magenta: 66.3 + cyan: 56.4 + white: 87.4 + brightBlack: 29.8 + brightRed: 45.3 + brightGreen: 58 + brightYellow: 95.5 + brightBlue: 47.2 + brightMagenta: 66.3 + brightCyan: 56.4 + brightWhite: 87.4 diff --git a/themes/raij.yaml b/themes/raij.yaml new file mode 100644 index 00000000..55049c56 --- /dev/null +++ b/themes/raij.yaml @@ -0,0 +1,52 @@ +name: "Raijū" +source: + marketplace_id: "csmith23.raiju-contrast" + version: "0.0.2" + installs: 239 + rating: 0 + ratings: 0 + author: "coleman smith" + repo: "https://github.com/csmith23/raiju" + url: "https://marketplace.visualstudio.com/items?itemName=csmith23.raiju-contrast" +colors: + bg: "#262B3B" + fg: "#E6E6E6" + black: "#6F7899" + red: "#A188F1" + green: "#7EBBBB" + yellow: "#FFEDCB" + blue: "#8D9AD1" + magenta: "#CEB3F7" + cyan: "#A7A7EE" + white: "#D7E2FF" + brightBlack: "#6F7899" + brightRed: "#A188F1" + brightGreen: "#7EBBBB" + brightYellow: "#FFEDCB" + brightBlue: "#8D9AD1" + brightMagenta: "#CEB3F7" + brightCyan: "#A7A7EE" + brightWhite: "#D7E2FF" +meta: + mode: "dark" + accent: "magenta" + hue: 271 + pair: null + contrast: + fg: 87.5 + black: 27.4 + red: 42.9 + green: 55.7 + yellow: 93.1 + blue: 44.8 + magenta: 63.9 + cyan: 54.1 + white: 85 + brightBlack: 27.4 + brightRed: 42.9 + brightGreen: 55.7 + brightYellow: 93.1 + brightBlue: 44.8 + brightMagenta: 63.9 + brightCyan: 54.1 + brightWhite: 85 diff --git a/themes/rain-city-theme.yaml b/themes/rain-city-theme.yaml index 8672b8d6..27faadfa 100644 --- a/themes/rain-city-theme.yaml +++ b/themes/rain-city-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DaniSyam.rain-city-theme" version: "0.1.0" installs: 218 + rating: 0 + ratings: 0 author: "DaniSyam" repo: "https://github.com/danisyam/rain-city-theme" url: "https://marketplace.visualstudio.com/items?itemName=DaniSyam.rain-city-theme" diff --git a/themes/rain.yaml b/themes/rain.yaml index 4f833126..d673d939 100644 --- a/themes/rain.yaml +++ b/themes/rain.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Getcode.raindiaz" version: "0.3.0" installs: 5177 + rating: 5 + ratings: 1 author: "Getcode" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Getcode.raindiaz" diff --git a/themes/rainbow-light.yaml b/themes/rainbow-light.yaml index 58911f3c..be3b8c64 100644 --- a/themes/rainbow-light.yaml +++ b/themes/rainbow-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/rainbow-material-theme.yaml b/themes/rainbow-material-theme.yaml index 8d9db3c2..be019204 100644 --- a/themes/rainbow-material-theme.yaml +++ b/themes/rainbow-material-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yasgreen93.rainbow-material-theme" version: "0.3.0" installs: 3287 + rating: 0 + ratings: 0 author: "yasgreen93" repo: "https://github.com/yasgreen93/rainbow-material-theme" url: "https://marketplace.visualstudio.com/items?itemName=yasgreen93.rainbow-material-theme" diff --git a/themes/rainbow-pastel-theme.yaml b/themes/rainbow-pastel-theme.yaml index d2a3b290..d504930a 100644 --- a/themes/rainbow-pastel-theme.yaml +++ b/themes/rainbow-pastel-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Tash.tashpastel" version: "0.0.3" installs: 1053 + rating: 0 + ratings: 0 author: "Tash" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Tash.tashpastel" diff --git a/themes/rainbow.yaml b/themes/rainbow.yaml index 5f132bd5..c78848c9 100644 --- a/themes/rainbow.yaml +++ b/themes/rainbow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/rainbowdrops-dark.yaml b/themes/rainbowdrops-dark.yaml index 154c8e86..1a58b04a 100644 --- a/themes/rainbowdrops-dark.yaml +++ b/themes/rainbowdrops-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WithOutCat.theme-rainbowdrops" version: "3.0.0" installs: 5115 + rating: 5 + ratings: 1 author: "WithOutCat" repo: "https://github.com/withoutcat/rainbowdrops" url: "https://marketplace.visualstudio.com/items?itemName=WithOutCat.theme-rainbowdrops" diff --git a/themes/rainforest-dark.yaml b/themes/rainforest-dark.yaml index 7f2c4684..6c6fa800 100644 --- a/themes/rainforest-dark.yaml +++ b/themes/rainforest-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Gyde.rainforestdark" version: "1.0.15" installs: 31 + rating: 0 + ratings: 0 author: "Gyde" repo: "https://github.com/GlennDoesGit/rainforestdark" url: "https://marketplace.visualstudio.com/items?itemName=Gyde.rainforestdark" diff --git a/themes/rainx0r.yaml b/themes/rainx0r.yaml index c23160a5..049aac8b 100644 --- a/themes/rainx0r.yaml +++ b/themes/rainx0r.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rainx0r.rainx0r-theme" version: "0.0.3" installs: 17 + rating: 0 + ratings: 0 author: "rainx0r" repo: "https://github.com/rainx0r/rainx0r-theme" url: "https://marketplace.visualstudio.com/items?itemName=rainx0r.rainx0r-theme" diff --git a/themes/rainy-hydrangea.yaml b/themes/rainy-hydrangea.yaml index 84c3b44d..e3c7c648 100644 --- a/themes/rainy-hydrangea.yaml +++ b/themes/rainy-hydrangea.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "okenakt.rainy-hydrangea" version: "0.3.0" installs: 167 + rating: 5 + ratings: 1 author: "okenakt" repo: "https://github.com/okenakt/rainy-hydrangea" url: "https://marketplace.visualstudio.com/items?itemName=okenakt.rainy-hydrangea" diff --git a/themes/raiyanplanet-dark-knight.yaml b/themes/raiyanplanet-dark-knight.yaml index 2d2d461f..8a9867c2 100644 --- a/themes/raiyanplanet-dark-knight.yaml +++ b/themes/raiyanplanet-dark-knight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RaiyanPlanet.raiyanplanet-dark-theme" version: "0.0.1" installs: 98 + rating: 0 + ratings: 0 author: "Raiyan Planet" repo: null url: "https://marketplace.visualstudio.com/items?itemName=RaiyanPlanet.raiyanplanet-dark-theme" diff --git a/themes/raiyanplanet-darkest.yaml b/themes/raiyanplanet-darkest.yaml index e5a72c01..0befd8ac 100644 --- a/themes/raiyanplanet-darkest.yaml +++ b/themes/raiyanplanet-darkest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RaiyanPlanet.raiyanplanet-dark-theme" version: "0.0.1" installs: 98 + rating: 0 + ratings: 0 author: "Raiyan Planet" repo: null url: "https://marketplace.visualstudio.com/items?itemName=RaiyanPlanet.raiyanplanet-dark-theme" diff --git a/themes/raiyanplanet-purple-world.yaml b/themes/raiyanplanet-purple-world.yaml index 38950ccb..8caa7b77 100644 --- a/themes/raiyanplanet-purple-world.yaml +++ b/themes/raiyanplanet-purple-world.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RaiyanPlanet.raiyanplanet-dark-theme" version: "0.0.1" installs: 98 + rating: 0 + ratings: 0 author: "Raiyan Planet" repo: null url: "https://marketplace.visualstudio.com/items?itemName=RaiyanPlanet.raiyanplanet-dark-theme" diff --git a/themes/rajasthan-land-of-kings.yaml b/themes/rajasthan-land-of-kings.yaml index 95cb34e1..4249dc69 100644 --- a/themes/rajasthan-land-of-kings.yaml +++ b/themes/rajasthan-land-of-kings.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ProudIndian.colors-of-india-themes" version: "1.0.1" installs: 37 + rating: 5 + ratings: 1 author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" diff --git a/themes/rajoyish.yaml b/themes/rajoyish.yaml index f874af04..a78c185c 100644 --- a/themes/rajoyish.yaml +++ b/themes/rajoyish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RajeshBudhathoki.rajoyish" version: "8.3.0" installs: 525 + rating: 5 + ratings: 1 author: "Rajesh Budhathoki" repo: "https://github.com/rajoyish/rajoyish-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=RajeshBudhathoki.rajoyish" diff --git a/themes/rakkii-theme.yaml b/themes/rakkii-theme.yaml index 4ee9cdeb..916d14ea 100644 --- a/themes/rakkii-theme.yaml +++ b/themes/rakkii-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rakkii-Theme.rakkii" version: "1.0.1" installs: 65 + rating: 0 + ratings: 0 author: "Rakkii-Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Rakkii-Theme.rakkii" diff --git a/themes/ramage.yaml b/themes/ramage.yaml index cc22da98..6d73789a 100644 --- a/themes/ramage.yaml +++ b/themes/ramage.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Conobi.ramage-vscode" version: "0.1.4" installs: 207 + rating: 5 + ratings: 1 author: "Conobi" repo: "https://github.com/Donokami/ramage-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Conobi.ramage-vscode" diff --git a/themes/ramazzotti-80s.yaml b/themes/ramazzotti-80s.yaml index 0bd140ad..e37fa04f 100644 --- a/themes/ramazzotti-80s.yaml +++ b/themes/ramazzotti-80s.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "panquequelol.ramazzotti" version: "2.2.0" installs: 561 + rating: 0 + ratings: 0 author: "panquequelol" repo: "https://github.com/panquequelol/ramazzotti" url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.ramazzotti" diff --git a/themes/ramazzotti-flexobi.yaml b/themes/ramazzotti-flexobi.yaml index 0c216feb..119342f6 100644 --- a/themes/ramazzotti-flexobi.yaml +++ b/themes/ramazzotti-flexobi.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "panquequelol.ramazzotti" version: "2.2.0" installs: 561 + rating: 0 + ratings: 0 author: "panquequelol" repo: "https://github.com/panquequelol/ramazzotti" url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.ramazzotti" diff --git a/themes/ramazzotti-gruvbox.yaml b/themes/ramazzotti-gruvbox.yaml index 0dc38776..07e5c871 100644 --- a/themes/ramazzotti-gruvbox.yaml +++ b/themes/ramazzotti-gruvbox.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "panquequelol.ramazzotti" version: "2.2.0" installs: 561 + rating: 0 + ratings: 0 author: "panquequelol" repo: "https://github.com/panquequelol/ramazzotti" url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.ramazzotti" diff --git a/themes/ramuda.yaml b/themes/ramuda.yaml index deca73fc..2effcd93 100644 --- a/themes/ramuda.yaml +++ b/themes/ramuda.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RienZhang.theme-ramuda-pink-dark" version: "1.0.0" installs: 4819 + rating: 5 + ratings: 3 author: "RienZhang" repo: "https://github.com/fifthfir/Play" url: "https://marketplace.visualstudio.com/items?itemName=RienZhang.theme-ramuda-pink-dark" diff --git a/themes/rapture.yaml b/themes/rapture.yaml index 5de1a692..b8a44ea5 100644 --- a/themes/rapture.yaml +++ b/themes/rapture.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Pustur.rapture-vscode" version: "1.7.0" installs: 4843 + rating: 5 + ratings: 3 author: "Pustur" repo: "https://github.com/Pustur/rapture-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Pustur.rapture-vscode" diff --git a/themes/rasengan-glacier.yaml b/themes/rasengan-glacier.yaml new file mode 100644 index 00000000..de6566b0 --- /dev/null +++ b/themes/rasengan-glacier.yaml @@ -0,0 +1,52 @@ +name: "Rasengan Glacier" +source: + marketplace_id: "TheHalfBloodPrince.rasengan-glacier" + version: "1.1.0" + installs: 4987 + rating: 0 + ratings: 0 + author: "The Half Blood Prince" + repo: "https://github.com/the-halfbloodprince/rasengan-glacier" + url: "https://marketplace.visualstudio.com/items?itemName=TheHalfBloodPrince.rasengan-glacier" +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/rat-beach.yaml b/themes/rat-beach.yaml new file mode 100644 index 00000000..5855062b --- /dev/null +++ b/themes/rat-beach.yaml @@ -0,0 +1,52 @@ +name: "RAT Beach" +source: + marketplace_id: "41e4.rat-beach" + version: "0.0.3" + installs: 55 + rating: 0 + ratings: 0 + author: "41e4 Consulting" + repo: "https://github.com/41e4/rat-beach" + url: "https://marketplace.visualstudio.com/items?itemName=41e4.rat-beach" +colors: + bg: "#F2F0ED" + fg: "#515151" + black: "#D7D4CC" + red: "#F2777A" + green: "#777777" + yellow: "#F99157" + blue: "#6699CC" + magenta: "#CC99CC" + cyan: "#66CCCC" + white: "#393939" + brightBlack: "#A09F93" + brightRed: "#F2777A" + brightGreen: "#777777" + brightYellow: "#FFCC66" + brightBlue: "#6699CC" + brightMagenta: "#CC99CC" + brightCyan: "#66CCCC" + brightWhite: "#2D2D2D" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.8 + black: 13.9 + red: 43.5 + green: 62.3 + yellow: 35.8 + blue: 47.8 + magenta: 37.2 + cyan: 27.1 + white: 87.8 + brightBlack: 43.1 + brightRed: 43.5 + brightGreen: 62.3 + brightYellow: 14.2 + brightBlue: 47.8 + brightMagenta: 37.2 + brightCyan: 27.1 + brightWhite: 91.6 diff --git a/themes/rate-dark-cold.yaml b/themes/rate-dark-cold.yaml index 03fde1e9..3907f78d 100644 --- a/themes/rate-dark-cold.yaml +++ b/themes/rate-dark-cold.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Roll7.rate-theme" version: "0.0.11" installs: 157 + rating: 5 + ratings: 2 author: "Roll7" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Roll7.rate-theme" diff --git a/themes/rate-dark.yaml b/themes/rate-dark.yaml index 0f8371ba..a88d6113 100644 --- a/themes/rate-dark.yaml +++ b/themes/rate-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Roll7.rate-theme" version: "0.0.11" installs: 157 + rating: 5 + ratings: 2 author: "Roll7" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Roll7.rate-theme" diff --git a/themes/rate-light-soft.yaml b/themes/rate-light-soft.yaml index b24eed3f..a795f364 100644 --- a/themes/rate-light-soft.yaml +++ b/themes/rate-light-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Roll7.rate-theme" version: "0.0.11" installs: 157 + rating: 5 + ratings: 2 author: "Roll7" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Roll7.rate-theme" diff --git a/themes/rate-light.yaml b/themes/rate-light.yaml index ccdc6334..50bac512 100644 --- a/themes/rate-light.yaml +++ b/themes/rate-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Roll7.rate-theme" version: "0.0.11" installs: 157 + rating: 5 + ratings: 2 author: "Roll7" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Roll7.rate-theme" diff --git a/themes/ravenwood-dark.yaml b/themes/ravenwood-dark.yaml index 744cc35a..bffd0741 100644 --- a/themes/ravenwood-dark.yaml +++ b/themes/ravenwood-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RaymondThurman.ravenwood" version: "0.2.2" installs: 45 + rating: 5 + ratings: 1 author: "Raymond Thurman" repo: "https://github.com/raythurman2386/ravenwood-vscode" url: "https://marketplace.visualstudio.com/items?itemName=RaymondThurman.ravenwood" diff --git a/themes/ravenwood-light.yaml b/themes/ravenwood-light.yaml index 8972a344..a99d99d0 100644 --- a/themes/ravenwood-light.yaml +++ b/themes/ravenwood-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RaymondThurman.ravenwood" version: "0.2.2" installs: 45 + rating: 5 + ratings: 1 author: "Raymond Thurman" repo: "https://github.com/raythurman2386/ravenwood-vscode" url: "https://marketplace.visualstudio.com/items?itemName=RaymondThurman.ravenwood" diff --git a/themes/rayleigh.yaml b/themes/rayleigh.yaml new file mode 100644 index 00000000..29c7809b --- /dev/null +++ b/themes/rayleigh.yaml @@ -0,0 +1,52 @@ +name: "Rayleigh" +source: + marketplace_id: "rayleigh.rayleigh" + version: "0.0.1" + installs: 16 + rating: 0 + ratings: 0 + author: "rayleigh" + repo: "https://github.com/ctvnjhnrmmlp/rayleigh" + url: "https://marketplace.visualstudio.com/items?itemName=rayleigh.rayleigh" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#FFFFFF" + green: "#FFFFFF" + yellow: "#FFFFFF" + blue: "#FFFFFF" + magenta: "#FFFFFF" + cyan: "#FFFFFF" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#FFFFFF" + brightGreen: "#FFFFFF" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 107.9 + black: 107.9 + red: 107.9 + green: 107.9 + yellow: 107.9 + blue: 107.9 + magenta: 107.9 + cyan: 107.9 + white: 107.9 + brightBlack: 107.9 + brightRed: 107.9 + brightGreen: 107.9 + brightYellow: 107.9 + brightBlue: 107.9 + brightMagenta: 107.9 + brightCyan: 107.9 + brightWhite: 107.9 diff --git a/themes/rb-s-desaturated.yaml b/themes/rb-s-desaturated.yaml index 304610b4..05608665 100644 --- a/themes/rb-s-desaturated.yaml +++ b/themes/rb-s-desaturated.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TrexTheRobot.rb-color-theme" version: "1.1.0" installs: 44 + rating: 0 + ratings: 0 author: "TrexTheRobot" repo: "https://github.com/jamiej1212/vsColorTheme" url: "https://marketplace.visualstudio.com/items?itemName=TrexTheRobot.rb-color-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 78.2 black: 0 diff --git a/themes/rbe-matrix-skin-theme.yaml b/themes/rbe-matrix-skin-theme.yaml index db3e4fe2..652d4ccb 100644 --- a/themes/rbe-matrix-skin-theme.yaml +++ b/themes/rbe-matrix-skin-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RudeBoyEnterprises.rbe-matrix-skin-theme" version: "1.0.2" installs: 17711 + rating: 5 + ratings: 4 author: "Rude Boy Enterprises" repo: "https://github.com/skamansam/vscode-rbe-matrix-theme" url: "https://marketplace.visualstudio.com/items?itemName=RudeBoyEnterprises.rbe-matrix-skin-theme" diff --git a/themes/rblx-lua-non-italic.yaml b/themes/rblx-lua-non-italic.yaml new file mode 100644 index 00000000..d741739a --- /dev/null +++ b/themes/rblx-lua-non-italic.yaml @@ -0,0 +1,52 @@ +name: "rblx_lua_non_italic" +source: + marketplace_id: "SkyCityStudio.roblox-lua-themes-dark" + version: "0.0.9" + installs: 5206 + rating: 0 + ratings: 0 + author: "Sky City Studio" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SkyCityStudio.roblox-lua-themes-dark" +colors: + bg: "#1E1E1E" + fg: "#C5C8C6" + black: "#1E1E1E" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 71 + black: 0 + red: 23.8 + green: 52.2 + yellow: 56.8 + blue: 33.8 + magenta: 31.4 + cyan: 49.6 + white: 87.7 + brightBlack: 21.2 + brightRed: 36.5 + brightGreen: 76.2 + brightYellow: 83.1 + brightBlue: 49 + brightMagenta: 45.7 + brightCyan: 72.6 + brightWhite: 101.1 diff --git a/themes/rcw-120-v1.yaml b/themes/rcw-120-v1.yaml new file mode 100644 index 00000000..c4ad7f6a --- /dev/null +++ b/themes/rcw-120-v1.yaml @@ -0,0 +1,52 @@ +name: "RCW-120-V1" +source: + marketplace_id: "alexeymasasin.rcw-120" + version: "1.0.0" + installs: 69 + rating: 0 + ratings: 0 + author: "Alexey Masasin" + repo: "https://github.com/alexeymasasin/RCW-120.git#main" + url: "https://marketplace.visualstudio.com/items?itemName=alexeymasasin.rcw-120" +colors: + bg: "#111018" + fg: "#F5FAFF" + black: "#666666" + red: "#BC3333" + green: "#45D393" + yellow: "#B0A153" + blue: "#8258DE" + magenta: "#BC41C9" + cyan: "#029CC2" + white: "#E5E5E5" + brightBlack: "#969696" + brightRed: "#E63F3F" + brightGreen: "#53FFB1" + brightYellow: "#DBC965" + brightBlue: "#915FFF" + brightMagenta: "#D64BE4" + brightCyan: "#03B4E0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 290 + pair: null + contrast: + fg: 103.6 + black: 22.5 + red: 23.8 + green: 65.9 + yellow: 50.6 + blue: 28.5 + magenta: 31.4 + cyan: 42.5 + white: 90.5 + brightBlack: 45.1 + brightRed: 34.6 + brightGreen: 89.5 + brightYellow: 72.9 + brightBlue: 34.6 + brightMagenta: 39.6 + brightCyan: 54.2 + brightWhite: 90.5 diff --git a/themes/rdcd.yaml b/themes/rdcd.yaml index 0c922961..bb3df192 100644 --- a/themes/rdcd.yaml +++ b/themes/rdcd.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shoizz.rdcd" version: "0.1.0" installs: 1608 + rating: 5 + ratings: 3 author: "denis" repo: "git+https://github.com/Shoizz/rdcd-theme" url: "https://marketplace.visualstudio.com/items?itemName=shoizz.rdcd" diff --git a/themes/re-dark.yaml b/themes/re-dark.yaml new file mode 100644 index 00000000..a94278e9 --- /dev/null +++ b/themes/re-dark.yaml @@ -0,0 +1,52 @@ +name: "re:Dark" +source: + marketplace_id: "Cydo.re-dark" + version: "0.2.1" + installs: 61 + rating: 0 + ratings: 0 + author: "Cydo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-dark" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#D30700" + green: "#92C202" + yellow: "#CAAC00" + blue: "#429AFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#2C2C2C" + brightRed: "#FF0800" + brightGreen: "#CAFF29" + brightYellow: "#FBFF00" + brightBlue: "#85BEFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 24.6 + green: 58.9 + yellow: 56.2 + blue: 44.9 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 0 + brightRed: 35.3 + brightGreen: 93.8 + brightYellow: 99.9 + brightBlue: 63 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/re-eclipse-old-school.yaml b/themes/re-eclipse-old-school.yaml index f5a4ee28..e23493c4 100644 --- a/themes/re-eclipse-old-school.yaml +++ b/themes/re-eclipse-old-school.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Cydo.re-theme" version: "3.0.0" installs: 696 + rating: 0 + ratings: 0 author: "Cydo" repo: "https://github.com/CydoEntis/reThemes" url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" diff --git a/themes/re-eclipse.yaml b/themes/re-eclipse.yaml index e6013c86..a0e64737 100644 --- a/themes/re-eclipse.yaml +++ b/themes/re-eclipse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Cydo.re-theme" version: "3.0.0" installs: 696 + rating: 0 + ratings: 0 author: "Cydo" repo: "https://github.com/CydoEntis/reThemes" url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" diff --git a/themes/re-vision.yaml b/themes/re-vision.yaml index 90a3eae6..eff4a0b2 100644 --- a/themes/re-vision.yaml +++ b/themes/re-vision.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Likivik.re-vision" version: "0.2.0" installs: 47 + rating: 0 + ratings: 0 author: "Likivik" repo: "https://github.com/Likivik/Re-Vision" url: "https://marketplace.visualstudio.com/items?itemName=Likivik.re-vision" diff --git a/themes/react-italic-theme.yaml b/themes/react-italic-theme.yaml new file mode 100644 index 00000000..3fcdea92 --- /dev/null +++ b/themes/react-italic-theme.yaml @@ -0,0 +1,52 @@ +name: "React Italic Theme" +source: + marketplace_id: "barrsan.react-italic-theme-vscode" + version: "1.0.7" + installs: 2653 + rating: 0 + ratings: 0 + author: "Alex Baretsky" + repo: "https://github.com/barrsan/react-italic-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=barrsan.react-italic-theme-vscode" +colors: + bg: "#282C34" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 98.8 + black: 0 + red: 40.2 + green: 81.7 + yellow: 95.3 + blue: 50.4 + magenta: 51.4 + cyan: 80.8 + white: 98.8 + brightBlack: 24.8 + brightRed: 45.6 + brightGreen: 85.8 + brightYellow: 100.3 + brightBlue: 62.9 + brightMagenta: 59.4 + brightCyan: 93.6 + brightWhite: 103.7 diff --git a/themes/react-theme.yaml b/themes/react-theme.yaml index 8d545e51..3aedc491 100644 --- a/themes/react-theme.yaml +++ b/themes/react-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MamoruDS.react-theme-vscode" version: "1.4.5" installs: 3450 + rating: 0 + ratings: 0 author: "Mamoru" repo: "https://github.com/MamoruDS/react-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=MamoruDS.react-theme-vscode" diff --git a/themes/rebellion-contrast.yaml b/themes/rebellion-contrast.yaml index 32ad95b1..e46318e0 100644 --- a/themes/rebellion-contrast.yaml +++ b/themes/rebellion-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/rebellion-light.yaml b/themes/rebellion-light.yaml index 5772f95e..f228a2c6 100644 --- a/themes/rebellion-light.yaml +++ b/themes/rebellion-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/rebellion.yaml b/themes/rebellion.yaml index 87fad1fe..8f115ed3 100644 --- a/themes/rebellion.yaml +++ b/themes/rebellion.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/recats-classic-dark.yaml b/themes/recats-classic-dark.yaml index be44e20c..4cd1bcfc 100644 --- a/themes/recats-classic-dark.yaml +++ b/themes/recats-classic-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "senelway.recats-classic-dark" version: "0.0.11" installs: 638 + rating: 5 + ratings: 1 author: "senelway" repo: "https://github.com/recats/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=senelway.recats-classic-dark" diff --git a/themes/recats-nova-dark.yaml b/themes/recats-nova-dark.yaml index 6c994511..28558689 100644 --- a/themes/recats-nova-dark.yaml +++ b/themes/recats-nova-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "senelway.recats-classic-dark" version: "0.0.11" installs: 638 + rating: 5 + ratings: 1 author: "senelway" repo: "https://github.com/recats/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=senelway.recats-classic-dark" diff --git a/themes/recotheme.yaml b/themes/recotheme.yaml index 1d1e62de..24fcc06d 100644 --- a/themes/recotheme.yaml +++ b/themes/recotheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "recoluan.vscode-theme-reco" version: "0.0.6" installs: 692 + rating: 5 + ratings: 1 author: "reco_luan" repo: "https://github.com/recoluan/vscode-theme-reco" url: "https://marketplace.visualstudio.com/items?itemName=recoluan.vscode-theme-reco" diff --git a/themes/red-black-white-dark.yaml b/themes/red-black-white-dark.yaml index a8696f54..1038cc9d 100644 --- a/themes/red-black-white-dark.yaml +++ b/themes/red-black-white-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chenzilve.gundam-rx78-theme" version: "0.1.0" installs: 6 + rating: 0 + ratings: 0 author: "chenzilve" repo: null url: "https://marketplace.visualstudio.com/items?itemName=chenzilve.gundam-rx78-theme" diff --git a/themes/red-black-white-light.yaml b/themes/red-black-white-light.yaml index 5b59c25e..2ad11171 100644 --- a/themes/red-black-white-light.yaml +++ b/themes/red-black-white-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chenzilve.gundam-rx78-theme" version: "0.1.0" installs: 6 + rating: 0 + ratings: 0 author: "chenzilve" repo: null url: "https://marketplace.visualstudio.com/items?itemName=chenzilve.gundam-rx78-theme" diff --git a/themes/red-black-white.yaml b/themes/red-black-white.yaml new file mode 100644 index 00000000..fc032b6d --- /dev/null +++ b/themes/red-black-white.yaml @@ -0,0 +1,52 @@ +name: "red-black-white" +source: + marketplace_id: "ckorzon.red-black-white-theme" + version: "1.0.2" + installs: 1210 + rating: 0 + ratings: 0 + author: "ckorzon" + repo: "https://github.com/ckorzon/VSCode-Red-Black-White-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ckorzon.red-black-white-theme" +colors: + bg: "#000000" + fg: "#BFBDB6" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 66.9 + black: 0 + red: 45.1 + green: 71 + yellow: 67.6 + blue: 61.6 + magenta: 61.6 + cyan: 78.9 + white: 72.7 + brightBlack: 23.9 + brightRed: 47.6 + brightGreen: 74.3 + brightYellow: 70.6 + brightBlue: 64.3 + brightMagenta: 64.4 + brightCyan: 81.9 + brightWhite: 107.9 diff --git a/themes/red-color-theme.yaml b/themes/red-color-theme.yaml new file mode 100644 index 00000000..d11659a3 --- /dev/null +++ b/themes/red-color-theme.yaml @@ -0,0 +1,52 @@ +name: "red-color-theme" +source: + marketplace_id: "electropol-fr.coloredtheme" + version: "1.3.0" + installs: 4210 + rating: 5 + ratings: 1 + author: "electropol.fr" + repo: "https://github.com/FrankSAURET/colored-theme" + url: "https://marketplace.visualstudio.com/items?itemName=electropol-fr.coloredtheme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#FF0000" + green: "#00FF22" + yellow: "#FFEE00" + blue: "#40BFFA" + magenta: "#FF00DD" + cyan: "#00EEFF" + white: "#EEEEEE" + brightBlack: "#808080" + brightRed: "#ED7D31" + brightGreen: "#70AD47" + brightYellow: "#FFC000" + brightBlue: "#4472C4" + brightMagenta: "#DAC2F7" + brightCyan: "#5B9BD5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 64.1 + green: 17.1 + yellow: 9.6 + blue: 40.5 + magenta: 58 + cyan: 19.9 + white: 7.6 + brightBlack: 66.9 + brightRed: 52.9 + brightGreen: 52.3 + brightYellow: 28.2 + brightBlue: 72.5 + brightMagenta: 27.4 + brightCyan: 56 + brightWhite: 0 diff --git a/themes/red-grey.yaml b/themes/red-grey.yaml index cf08ba14..d4be4d0a 100644 --- a/themes/red-grey.yaml +++ b/themes/red-grey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kociumba.red-noir-theme" version: "0.0.1" installs: 62 + rating: 5 + ratings: 1 author: "kociumba" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kociumba.red-noir-theme" diff --git a/themes/red-one-dark-pro-dark.yaml b/themes/red-one-dark-pro-dark.yaml index 16554742..e9c8d12d 100644 --- a/themes/red-one-dark-pro-dark.yaml +++ b/themes/red-one-dark-pro-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "giladgd.red-one-dark-pro" version: "1.5.0" installs: 35445 + rating: 5 + ratings: 2 author: "Gilad S." repo: "https://gitlab.com/giladgd/red-one-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=giladgd.red-one-dark-pro" diff --git a/themes/red-vintage.yaml b/themes/red-vintage.yaml index e2fe5076..ff577f2d 100644 --- a/themes/red-vintage.yaml +++ b/themes/red-vintage.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Crnobog.red-vintage-theme" version: "0.0.2" installs: 141 + rating: 0 + ratings: 0 author: "Crnobog" repo: "https://github.com/crnobog69/red-vintage" url: "https://marketplace.visualstudio.com/items?itemName=Crnobog.red-vintage-theme" diff --git a/themes/red.yaml b/themes/red.yaml new file mode 100644 index 00000000..b2a5dcb4 --- /dev/null +++ b/themes/red.yaml @@ -0,0 +1,52 @@ +name: "red" +source: + marketplace_id: "BrennoFruhauf.ocms-theme" + version: "0.0.1" + installs: 394 + rating: 5 + ratings: 3 + author: "Brenno Fruhauf" + repo: "https://github.com/brennofruhauf/ocms-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BrennoFruhauf.ocms-theme" +colors: + bg: "#131313" + fg: "#EBEBEB" + black: "#FFFFFF" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 94.2 + black: 107.2 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/reddark.yaml b/themes/reddark.yaml index ec892b14..9799e749 100644 --- a/themes/reddark.yaml +++ b/themes/reddark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Valentrj.reddark" version: "0.0.4" installs: 124 + rating: 0 + ratings: 0 author: "Valentrj" repo: "https://imgur.com/XD3tFix" url: "https://marketplace.visualstudio.com/items?itemName=Valentrj.reddark" diff --git a/themes/reddit-dark-based-theme-updated.yaml b/themes/reddit-dark-based-theme-updated.yaml index 69cdfbc2..e78512df 100644 --- a/themes/reddit-dark-based-theme-updated.yaml +++ b/themes/reddit-dark-based-theme-updated.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IntoCode.reddit-dark-theme-unofficial" version: "2.6.0" installs: 209 + rating: 0 + ratings: 0 author: "IntoCode" repo: "https://github.com/Justin-Diner/reddit_dark_based_vscode_theme" url: "https://marketplace.visualstudio.com/items?itemName=IntoCode.reddit-dark-theme-unofficial" diff --git a/themes/rediohead-theme.yaml b/themes/rediohead-theme.yaml index 0f1c5b52..ccf397e3 100644 --- a/themes/rediohead-theme.yaml +++ b/themes/rediohead-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ChiliMelon.rediohead-theme" version: "0.0.2" installs: 44 + rating: 0 + ratings: 0 author: "ChiliMelon" repo: "https://github.com/chilimelon/rediohead_theme" url: "https://marketplace.visualstudio.com/items?itemName=ChiliMelon.rediohead-theme" diff --git a/themes/redorainbow.yaml b/themes/redorainbow.yaml index 49f20792..37d80625 100644 --- a/themes/redorainbow.yaml +++ b/themes/redorainbow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "re-do.redo-rainbow-theme" version: "0.0.3" installs: 1265 + rating: 5 + ratings: 1 author: "re-do" repo: "https://github.com/re-do/redo-rainbow-theme" url: "https://marketplace.visualstudio.com/items?itemName=re-do.redo-rainbow-theme" diff --git a/themes/redpro-dark.yaml b/themes/redpro-dark.yaml index 9c7d4cb2..d768f61e 100644 --- a/themes/redpro-dark.yaml +++ b/themes/redpro-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DaGhostman.red-pro-theme" version: "1.0.2" installs: 633 + rating: 0 + ratings: 0 author: "Dimitar Dimitrov" repo: "https://github.com/DaGhostman/vs-red-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=DaGhostman.red-pro-theme" diff --git a/themes/redpro-light.yaml b/themes/redpro-light.yaml index 3f1737bf..fb14fb6a 100644 --- a/themes/redpro-light.yaml +++ b/themes/redpro-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DaGhostman.red-pro-theme" version: "1.0.2" installs: 633 + rating: 0 + ratings: 0 author: "Dimitar Dimitrov" repo: "https://github.com/DaGhostman/vs-red-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=DaGhostman.red-pro-theme" diff --git a/themes/redspecter.yaml b/themes/redspecter.yaml index dc2694c0..6fe6c983 100644 --- a/themes/redspecter.yaml +++ b/themes/redspecter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AngelicaWisnes.redspecter" version: "0.0.1" installs: 53 + rating: 0 + ratings: 0 author: "AngelicaWisnes" repo: "https://github.com/AngelicaWisnes/redspecter" url: "https://marketplace.visualstudio.com/items?itemName=AngelicaWisnes.redspecter" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 355 + pair: null contrast: fg: 38.3 black: 9.5 diff --git a/themes/refined-charcoal.yaml b/themes/refined-charcoal.yaml index 5705208f..d6279e33 100644 --- a/themes/refined-charcoal.yaml +++ b/themes/refined-charcoal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.dark-refined" version: "0.0.11" installs: 10801 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/dark-refined" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" diff --git a/themes/refined-default.yaml b/themes/refined-default.yaml index 84663417..747f8267 100644 --- a/themes/refined-default.yaml +++ b/themes/refined-default.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.dark-refined" version: "0.0.11" installs: 10801 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/dark-refined" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" diff --git a/themes/refined-dracula.yaml b/themes/refined-dracula.yaml index d193c90e..4ffe4fdb 100644 --- a/themes/refined-dracula.yaml +++ b/themes/refined-dracula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.dark-refined" version: "0.0.11" installs: 10801 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/dark-refined" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" diff --git a/themes/refined-espresso.yaml b/themes/refined-espresso.yaml index a407f18e..0cd89dd3 100644 --- a/themes/refined-espresso.yaml +++ b/themes/refined-espresso.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.dark-refined" version: "0.0.11" installs: 10801 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/dark-refined" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" diff --git a/themes/refined-matcha.yaml b/themes/refined-matcha.yaml index dabea64c..c4370170 100644 --- a/themes/refined-matcha.yaml +++ b/themes/refined-matcha.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.dark-refined" version: "0.0.11" installs: 10801 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/dark-refined" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" diff --git a/themes/refined-mocha.yaml b/themes/refined-mocha.yaml index f1031a2b..e77ae1a6 100644 --- a/themes/refined-mocha.yaml +++ b/themes/refined-mocha.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.dark-refined" version: "0.0.11" installs: 10801 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/dark-refined" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" diff --git a/themes/refined-night-owl.yaml b/themes/refined-night-owl.yaml index 3398cfdf..55c3af40 100644 --- a/themes/refined-night-owl.yaml +++ b/themes/refined-night-owl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.dark-refined" version: "0.0.11" installs: 10801 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/dark-refined" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" diff --git a/themes/refined-oceanic-next.yaml b/themes/refined-oceanic-next.yaml index 705fd5b7..640b16ad 100644 --- a/themes/refined-oceanic-next.yaml +++ b/themes/refined-oceanic-next.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.dark-refined" version: "0.0.11" installs: 10801 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/dark-refined" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" diff --git a/themes/refined-one.yaml b/themes/refined-one.yaml index b6c2068c..26230ba6 100644 --- a/themes/refined-one.yaml +++ b/themes/refined-one.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.dark-refined" version: "0.0.11" installs: 10801 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/dark-refined" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" diff --git a/themes/refined-palenight.yaml b/themes/refined-palenight.yaml index a3d3859f..8367ff22 100644 --- a/themes/refined-palenight.yaml +++ b/themes/refined-palenight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.dark-refined" version: "0.0.11" installs: 10801 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/dark-refined" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" diff --git a/themes/refined-purple.yaml b/themes/refined-purple.yaml index 6d8dea91..dbd0cc66 100644 --- a/themes/refined-purple.yaml +++ b/themes/refined-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.dark-refined" version: "0.0.11" installs: 10801 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/dark-refined" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" diff --git a/themes/refined-slate.yaml b/themes/refined-slate.yaml index 1c5731a7..9f2c6aef 100644 --- a/themes/refined-slate.yaml +++ b/themes/refined-slate.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "itsjonq.dark-refined" version: "0.0.11" installs: 10801 + rating: 5 + ratings: 3 author: "itsjonq" repo: "https://github.com/itsjonq/dark-refined" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" diff --git a/themes/regard.yaml b/themes/regard.yaml index a93fa3f7..c9b1d96c 100644 --- a/themes/regard.yaml +++ b/themes/regard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nasmevka.regard" version: "1.5.0" installs: 746 + rating: 0 + ratings: 0 author: "nasmevka" repo: "https://gitlab.com/regard_theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=nasmevka.regard" diff --git a/themes/relaxed-theme-dark-focus.yaml b/themes/relaxed-theme-dark-focus.yaml index 4865e878..13116d04 100644 --- a/themes/relaxed-theme-dark-focus.yaml +++ b/themes/relaxed-theme-dark-focus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nomad-in-code.relaxed-theme-semantic-focus" version: "0.0.13" installs: 140 + rating: 0 + ratings: 0 author: "nomad-in-code" repo: "https://github.com/chaluvadis/relax-theme-semantic-focus" url: "https://marketplace.visualstudio.com/items?itemName=nomad-in-code.relaxed-theme-semantic-focus" diff --git a/themes/relaxed-theme-day-light.yaml b/themes/relaxed-theme-day-light.yaml index b83d9883..42e0c833 100644 --- a/themes/relaxed-theme-day-light.yaml +++ b/themes/relaxed-theme-day-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nomad-in-code.relaxed-theme-semantic-focus" version: "0.0.13" installs: 140 + rating: 0 + ratings: 0 author: "nomad-in-code" repo: "https://github.com/chaluvadis/relax-theme-semantic-focus" url: "https://marketplace.visualstudio.com/items?itemName=nomad-in-code.relaxed-theme-semantic-focus" diff --git a/themes/relaxed-theme-night-warm.yaml b/themes/relaxed-theme-night-warm.yaml index 9f976091..b0c6eaf1 100644 --- a/themes/relaxed-theme-night-warm.yaml +++ b/themes/relaxed-theme-night-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nomad-in-code.relaxed-theme-semantic-focus" version: "0.0.13" installs: 140 + rating: 0 + ratings: 0 author: "nomad-in-code" repo: "https://github.com/chaluvadis/relax-theme-semantic-focus" url: "https://marketplace.visualstudio.com/items?itemName=nomad-in-code.relaxed-theme-semantic-focus" diff --git a/themes/relaxed-theme.yaml b/themes/relaxed-theme.yaml index 8a52c5a6..c4967954 100644 --- a/themes/relaxed-theme.yaml +++ b/themes/relaxed-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mischah.relaxed-theme" version: "1.0.5" installs: 31469 + rating: 5 + ratings: 9 author: "Michael Kühnel" repo: "https://github.com/Relaxed-Theme/vscode-theme-releaxed" url: "https://marketplace.visualstudio.com/items?itemName=mischah.relaxed-theme" diff --git a/themes/remedy-bright-tilted.yaml b/themes/remedy-bright-tilted.yaml index 7e212c18..40c44bfb 100644 --- a/themes/remedy-bright-tilted.yaml +++ b/themes/remedy-bright-tilted.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VishwakarmaIndustries0abhishek.vishwakarma-remedy" version: "5.28.0" installs: 24 + rating: 0 + ratings: 0 author: "Vishwakarma Industries" repo: "https://github.com/vishwakarmaindustries/vscode-remedy" url: "https://marketplace.visualstudio.com/items?itemName=VishwakarmaIndustries0abhishek.vishwakarma-remedy" diff --git a/themes/remedy-dark-tilted.yaml b/themes/remedy-dark-tilted.yaml index 37d69f6c..e997b281 100644 --- a/themes/remedy-dark-tilted.yaml +++ b/themes/remedy-dark-tilted.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VishwakarmaIndustries0abhishek.vishwakarma-remedy" version: "5.28.0" installs: 24 + rating: 0 + ratings: 0 author: "Vishwakarma Industries" repo: "https://github.com/vishwakarmaindustries/vscode-remedy" url: "https://marketplace.visualstudio.com/items?itemName=VishwakarmaIndustries0abhishek.vishwakarma-remedy" diff --git a/themes/remedyish-bright.yaml b/themes/remedyish-bright.yaml new file mode 100644 index 00000000..b38aa53c --- /dev/null +++ b/themes/remedyish-bright.yaml @@ -0,0 +1,50 @@ +name: "Remedyish - Bright" +source: + marketplace_id: "sjsepan.sjsepan-remedyish" + version: "0.0.3" + installs: 115 + author: "sjsepan" + repo: "https://gitlab.com/sjsepan/sjsepan-remedyish" + url: "https://marketplace.visualstudio.com/items?itemName=sjsepan.sjsepan-remedyish" +colors: + bg: "#FEF8EB" + fg: "#563D0E" + black: "#282A2E" + red: "#A54242" + green: "#8C9440" + yellow: "#DE935F" + blue: "#5F819D" + magenta: "#85678F" + cyan: "#5E8D87" + white: "#707880" + brightBlack: "#9CA19E" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#D79A22" + brightBlue: "#81A2BE" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#535961" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: "Remedyish - Dark" + contrast: + fg: 89.5 + black: 97.2 + red: 75.7 + green: 56 + yellow: 44.7 + blue: 64.2 + magenta: 69.6 + cyan: 60.8 + white: 67.2 + brightBlack: 47.2 + brightRed: 60.3 + brightGreen: 35 + brightYellow: 44.2 + brightBlue: 48 + brightMagenta: 48 + brightCyan: 36.5 + brightWhite: 80.6 diff --git a/themes/remedyish-dark.yaml b/themes/remedyish-dark.yaml new file mode 100644 index 00000000..ac5f10e1 --- /dev/null +++ b/themes/remedyish-dark.yaml @@ -0,0 +1,50 @@ +name: "Remedyish - Dark" +source: + marketplace_id: "sjsepan.sjsepan-remedyish" + version: "0.0.3" + installs: 115 + author: "sjsepan" + repo: "https://gitlab.com/sjsepan/sjsepan-remedyish" + url: "https://marketplace.visualstudio.com/items?itemName=sjsepan.sjsepan-remedyish" +colors: + bg: "#3F3433" + fg: "#F7E0B4" + black: "#282A2E" + red: "#A54242" + green: "#8C9440" + yellow: "#DE935F" + blue: "#5F819D" + magenta: "#85678F" + cyan: "#5E8D87" + white: "#707880" + brightBlack: "#535961" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#F0C674" + brightBlue: "#81A2BE" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#EEEFEE" +meta: + mode: "dark" + accent: "orange" + hue: 24 + pair: "Remedyish - Bright" + contrast: + fg: 82.6 + black: 0 + red: 15.3 + green: 34.9 + yellow: 46.5 + blue: 26.6 + magenta: 21.3 + cyan: 30 + white: 23.7 + brightBlack: 10.6 + brightRed: 30.6 + brightGreen: 56.5 + brightYellow: 68.7 + brightBlue: 43 + brightMagenta: 43 + brightCyan: 55 + brightWhite: 90.4 diff --git a/themes/replicant.yaml b/themes/replicant.yaml index 929584e9..14b9cd41 100644 --- a/themes/replicant.yaml +++ b/themes/replicant.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kenziebottoms.replicant" version: "1.3.0" installs: 3117 + rating: 5 + ratings: 1 author: "Kenzie Bottoms" repo: "https://github.com/kenziebottoms/vscode-theme-replicant" url: "https://marketplace.visualstudio.com/items?itemName=kenziebottoms.replicant" diff --git a/themes/replt-it.yaml b/themes/replt-it.yaml index f9febad2..adaa2b26 100644 --- a/themes/replt-it.yaml +++ b/themes/replt-it.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "manigandancodes.repl-it-theme" version: "0.4.0" installs: 7622 + rating: 5 + ratings: 2 author: "Manigandan Saravanan" repo: "https://github.com/manigandancodes/repl.it-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=manigandancodes.repl-it-theme" diff --git a/themes/resknow-dark.yaml b/themes/resknow-dark.yaml index 8425e033..16618f83 100644 --- a/themes/resknow-dark.yaml +++ b/themes/resknow-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Resknow.resknow" version: "0.0.4" installs: 21 + rating: 0 + ratings: 0 author: "Resknow" repo: "https://github.com/resknow/resknow-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Resknow.resknow" diff --git a/themes/retina.yaml b/themes/retina.yaml index 598fa3ab..21d4d887 100644 --- a/themes/retina.yaml +++ b/themes/retina.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RafaCMur.retina" version: "0.0.6" installs: 1785 + rating: 5 + ratings: 4 author: "RafaCMur" repo: "https://github.com/RafaCMur/retina" url: "https://marketplace.visualstudio.com/items?itemName=RafaCMur.retina" diff --git a/themes/retro-arcade.yaml b/themes/retro-arcade.yaml new file mode 100644 index 00000000..b8c4a6e3 --- /dev/null +++ b/themes/retro-arcade.yaml @@ -0,0 +1,52 @@ +name: "Retro-Arcade" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#1A0008" + fg: "#F7F8D8" + black: "#1A0008" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FF145B" + magenta: "#FF145B" + cyan: "#29C3A0" + white: "#F7F8D8" + brightBlack: "#1A0008" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FF145B" + brightMagenta: "#FF145B" + brightCyan: "#29C3A0" + brightWhite: "#F7F8D8" +meta: + mode: "dark" + accent: "red" + hue: 1 + pair: null + contrast: + fg: 101.4 + black: 0 + red: 10.1 + green: 58.4 + yellow: 52.4 + blue: 38.2 + magenta: 38.2 + cyan: 58.4 + white: 101.4 + brightBlack: 0 + brightRed: 10.1 + brightGreen: 58.4 + brightYellow: 52.4 + brightBlue: 38.2 + brightMagenta: 38.2 + brightCyan: 58.4 + brightWhite: 101.4 diff --git a/themes/retro-cathode-ray-minimal-theme.yaml b/themes/retro-cathode-ray-minimal-theme.yaml index 6994c811..e1bda9c1 100644 --- a/themes/retro-cathode-ray-minimal-theme.yaml +++ b/themes/retro-cathode-ray-minimal-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xXBalestraroXx.wired-reality-theme" version: "1.0.0" installs: 241 + rating: 0 + ratings: 0 author: "xXBalestraroXx" repo: "https://github.com/xxbalestraroxx/WiredRealityTheme" url: "https://marketplace.visualstudio.com/items?itemName=xXBalestraroXx.wired-reality-theme" diff --git a/themes/retro-green.yaml b/themes/retro-green.yaml index d19c4be2..25a32e2e 100644 --- a/themes/retro-green.yaml +++ b/themes/retro-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LelinPadhan.retro-green-theme-vscode" version: "1.1.6" installs: 5480 + rating: 5 + ratings: 4 author: "Lelin Padhan" repo: "https://github.com/Lelin07/retro-green-theme" url: "https://marketplace.visualstudio.com/items?itemName=LelinPadhan.retro-green-theme-vscode" diff --git a/themes/retro-hacker-amber.yaml b/themes/retro-hacker-amber.yaml index d7bdef7e..a88e1050 100644 --- a/themes/retro-hacker-amber.yaml +++ b/themes/retro-hacker-amber.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devxi.retro-hacker-theme" version: "1.3.0" installs: 4283 + rating: 5 + ratings: 2 author: "devxi" repo: "https://github.com/elmersh/retro-hacker-theme" url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" diff --git a/themes/retro-hacker-blue.yaml b/themes/retro-hacker-blue.yaml index 5b111a1a..ff4a38db 100644 --- a/themes/retro-hacker-blue.yaml +++ b/themes/retro-hacker-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devxi.retro-hacker-theme" version: "1.3.0" installs: 4283 + rating: 5 + ratings: 2 author: "devxi" repo: "https://github.com/elmersh/retro-hacker-theme" url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" diff --git a/themes/retro-hacker-green-subtle.yaml b/themes/retro-hacker-green-subtle.yaml index 75c23d4e..6d68d83b 100644 --- a/themes/retro-hacker-green-subtle.yaml +++ b/themes/retro-hacker-green-subtle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devxi.retro-hacker-theme" version: "1.3.0" installs: 4283 + rating: 5 + ratings: 2 author: "devxi" repo: "https://github.com/elmersh/retro-hacker-theme" url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" diff --git a/themes/retro-hacker-green.yaml b/themes/retro-hacker-green.yaml index 082a9d10..fde1d2c6 100644 --- a/themes/retro-hacker-green.yaml +++ b/themes/retro-hacker-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devxi.retro-hacker-theme" version: "1.3.0" installs: 4283 + rating: 5 + ratings: 2 author: "devxi" repo: "https://github.com/elmersh/retro-hacker-theme" url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" diff --git a/themes/retro-hacker-magenta.yaml b/themes/retro-hacker-magenta.yaml index 23e208b9..30589d7b 100644 --- a/themes/retro-hacker-magenta.yaml +++ b/themes/retro-hacker-magenta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devxi.retro-hacker-theme" version: "1.3.0" installs: 4283 + rating: 5 + ratings: 2 author: "devxi" repo: "https://github.com/elmersh/retro-hacker-theme" url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" diff --git a/themes/retro-keyboard-dark.yaml b/themes/retro-keyboard-dark.yaml index 5f9a356f..7fb3f7ba 100644 --- a/themes/retro-keyboard-dark.yaml +++ b/themes/retro-keyboard-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nicolasmengual.retro-keyboard-theme" version: "1.1.2" installs: 64 + rating: 5 + ratings: 2 author: "Nicolás Mengual" repo: "https://github.com/nmengual/retro-keyboard-theme" url: "https://marketplace.visualstudio.com/items?itemName=nicolasmengual.retro-keyboard-theme" diff --git a/themes/retro-keyboard-light.yaml b/themes/retro-keyboard-light.yaml index a12a1d76..a65a22d5 100644 --- a/themes/retro-keyboard-light.yaml +++ b/themes/retro-keyboard-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nicolasmengual.retro-keyboard-theme" version: "1.1.2" installs: 64 + rating: 5 + ratings: 2 author: "Nicolás Mengual" repo: "https://github.com/nmengual/retro-keyboard-theme" url: "https://marketplace.visualstudio.com/items?itemName=nicolasmengual.retro-keyboard-theme" diff --git a/themes/retro-pastel-color-theme.yaml b/themes/retro-pastel-color-theme.yaml index fab53e47..8f1fefb1 100644 --- a/themes/retro-pastel-color-theme.yaml +++ b/themes/retro-pastel-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "klyap.retro-pastel-color-theme" version: "0.0.3" installs: 7663 + rating: 5 + ratings: 1 author: "klyap" repo: "https://github.com/klyap/vscode-retro-pastel-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=klyap.retro-pastel-color-theme" diff --git a/themes/retro-vibes.yaml b/themes/retro-vibes.yaml index b132565e..e714a24f 100644 --- a/themes/retro-vibes.yaml +++ b/themes/retro-vibes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Babadzhanov.retro-vibes" version: "1.0.3" installs: 10462 + rating: 0 + ratings: 0 author: "Simeon Babadzhanov" repo: "https://github.com/Babadzhanov/retro-vibes" url: "https://marketplace.visualstudio.com/items?itemName=Babadzhanov.retro-vibes" diff --git a/themes/retro.yaml b/themes/retro.yaml index 56a765e6..2f61e42e 100644 --- a/themes/retro.yaml +++ b/themes/retro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RylanReese.retro-theme" version: "0.4.0" installs: 1570 + rating: 5 + ratings: 2 author: "Rylan Reese" repo: "https://github.com/RAC11/retro-theme" url: "https://marketplace.visualstudio.com/items?itemName=RylanReese.retro-theme" diff --git a/themes/retrocoders.yaml b/themes/retrocoders.yaml index 9d4a3cfe..ff8864d8 100644 --- a/themes/retrocoders.yaml +++ b/themes/retrocoders.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "adanyc.retrocoders" version: "1.0.11" installs: 352 + rating: 4.67 + ratings: 3 author: "adanyc" repo: "https://github.com/adanyc/vscode-retrocoders-theme" url: "https://marketplace.visualstudio.com/items?itemName=adanyc.retrocoders" diff --git a/themes/retronica-amber-terminal.yaml b/themes/retronica-amber-terminal.yaml index a8119707..e2fbb016 100644 --- a/themes/retronica-amber-terminal.yaml +++ b/themes/retronica-amber-terminal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "adham.retronica" version: "1.0.0" installs: 183 + rating: 5 + ratings: 1 author: "Adham" repo: "https://github.com/adham-dev/retronica" url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" diff --git a/themes/retronica-neon-nights.yaml b/themes/retronica-neon-nights.yaml index 3c0ee420..11a727ea 100644 --- a/themes/retronica-neon-nights.yaml +++ b/themes/retronica-neon-nights.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "adham.retronica" version: "1.0.0" installs: 183 + rating: 5 + ratings: 1 author: "Adham" repo: "https://github.com/adham-dev/retronica" url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" diff --git a/themes/retronica-pastel-arcade.yaml b/themes/retronica-pastel-arcade.yaml index 92b66b20..bfa55073 100644 --- a/themes/retronica-pastel-arcade.yaml +++ b/themes/retronica-pastel-arcade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "adham.retronica" version: "1.0.0" installs: 183 + rating: 5 + ratings: 1 author: "Adham" repo: "https://github.com/adham-dev/retronica" url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" diff --git a/themes/retronica-phosphor-green.yaml b/themes/retronica-phosphor-green.yaml index 858da7f0..f406f561 100644 --- a/themes/retronica-phosphor-green.yaml +++ b/themes/retronica-phosphor-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "adham.retronica" version: "1.0.0" installs: 183 + rating: 5 + ratings: 1 author: "Adham" repo: "https://github.com/adham-dev/retronica" url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" diff --git a/themes/retronica-vintage-computing.yaml b/themes/retronica-vintage-computing.yaml index 3eaa59de..aec1e22b 100644 --- a/themes/retronica-vintage-computing.yaml +++ b/themes/retronica-vintage-computing.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "adham.retronica" version: "1.0.0" installs: 183 + rating: 5 + ratings: 1 author: "Adham" repo: "https://github.com/adham-dev/retronica" url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" diff --git a/themes/retropunk.yaml b/themes/retropunk.yaml index 48705d1f..01911b83 100644 --- a/themes/retropunk.yaml +++ b/themes/retropunk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TrXVIISGiL.retropunk-trx" version: "1.5.2" installs: 1548 + rating: 0 + ratings: 0 author: "TrXVIISGiL" repo: "https://github.com/UponCr0ws/ReTroPuNK" url: "https://marketplace.visualstudio.com/items?itemName=TrXVIISGiL.retropunk-trx" diff --git a/themes/retroscope.yaml b/themes/retroscope.yaml index 74d10d0f..2a8cccc4 100644 --- a/themes/retroscope.yaml +++ b/themes/retroscope.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dvsu.retroscope" version: "0.2.4" installs: 28 + rating: 0 + ratings: 0 author: "David Su" repo: "https://github.com/dvsu/retroscope" url: "https://marketplace.visualstudio.com/items?itemName=dvsu.retroscope" diff --git a/themes/retrox.yaml b/themes/retrox.yaml index 46d3134d..817fb1fe 100644 --- a/themes/retrox.yaml +++ b/themes/retrox.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dalloriam.retrox" version: "0.0.1" installs: 514 + rating: 0 + ratings: 0 author: "William Dussault" repo: "https://github.com/dalloriam/retrox" url: "https://marketplace.visualstudio.com/items?itemName=dalloriam.retrox" diff --git a/themes/reui-ii-dark.yaml b/themes/reui-ii-dark.yaml new file mode 100644 index 00000000..8404dc35 --- /dev/null +++ b/themes/reui-ii-dark.yaml @@ -0,0 +1,52 @@ +name: "ReUI II Dark" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#1E232E" + fg: "#FFFFFF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 266 + pair: null + contrast: + fg: 105.3 + black: 0 + red: 41.8 + green: 83.3 + yellow: 97 + blue: 52.1 + magenta: 53 + cyan: 82.4 + white: 100.4 + brightBlack: 26.5 + brightRed: 47.3 + brightGreen: 87.5 + brightYellow: 102 + brightBlue: 64.5 + brightMagenta: 61 + brightCyan: 95.2 + brightWhite: 105.3 diff --git a/themes/reui-mirage.yaml b/themes/reui-mirage.yaml new file mode 100644 index 00000000..f2f7cdeb --- /dev/null +++ b/themes/reui-mirage.yaml @@ -0,0 +1,52 @@ +name: "ReUI Mirage" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#18273A" + fg: "#FFFFFF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 255 + pair: null + contrast: + fg: 104.7 + black: 0 + red: 41.2 + green: 82.7 + yellow: 96.4 + blue: 51.5 + magenta: 52.4 + cyan: 81.8 + white: 99.8 + brightBlack: 25.9 + brightRed: 46.7 + brightGreen: 86.9 + brightYellow: 101.4 + brightBlue: 63.9 + brightMagenta: 60.4 + brightCyan: 94.6 + brightWhite: 104.7 diff --git a/themes/reui.yaml b/themes/reui.yaml new file mode 100644 index 00000000..80661ad7 --- /dev/null +++ b/themes/reui.yaml @@ -0,0 +1,52 @@ +name: "ReUI" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#282C34" + fg: "#FFFFFF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 103.7 + black: 0 + red: 40.2 + green: 81.7 + yellow: 95.3 + blue: 50.4 + magenta: 51.4 + cyan: 80.8 + white: 98.8 + brightBlack: 24.8 + brightRed: 45.6 + brightGreen: 85.8 + brightYellow: 100.3 + brightBlue: 62.9 + brightMagenta: 59.4 + brightCyan: 93.6 + brightWhite: 103.7 diff --git a/themes/revelation-contrast.yaml b/themes/revelation-contrast.yaml index fcf7acef..daa02a69 100644 --- a/themes/revelation-contrast.yaml +++ b/themes/revelation-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/revelation-light.yaml b/themes/revelation-light.yaml index 4f7c62b6..ba4002da 100644 --- a/themes/revelation-light.yaml +++ b/themes/revelation-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/revelation.yaml b/themes/revelation.yaml index cabca972..6a61c25e 100644 --- a/themes/revelation.yaml +++ b/themes/revelation.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/revisual-assist-color-theme.yaml b/themes/revisual-assist-color-theme.yaml index 6337471a..aa4ab6e6 100644 --- a/themes/revisual-assist-color-theme.yaml +++ b/themes/revisual-assist-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Cydo.re-theme" version: "3.0.0" installs: 696 + rating: 0 + ratings: 0 author: "Cydo" repo: "https://github.com/CydoEntis/reThemes" url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" diff --git a/themes/revisualassist.yaml b/themes/revisualassist.yaml index 3e152aa3..771fb1ca 100644 --- a/themes/revisualassist.yaml +++ b/themes/revisualassist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PainE.revisualassist" version: "0.0.5" installs: 501 + rating: 0 + ratings: 0 author: "PainE" repo: "https://github.com/lua9520/ReVisualAssist-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=PainE.revisualassist" diff --git a/themes/rextax-bright-fork.yaml b/themes/rextax-bright-fork.yaml index 1ceb7ee2..8f70b11a 100644 --- a/themes/rextax-bright-fork.yaml +++ b/themes/rextax-bright-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xynny.prowhite-theme" version: "0.0.1" installs: 1580 + rating: 0 + ratings: 0 author: "xynny" repo: "https://github.com/xynnylol/vsthemes" url: "https://marketplace.visualstudio.com/items?itemName=xynny.prowhite-theme" diff --git a/themes/rey.yaml b/themes/rey.yaml new file mode 100644 index 00000000..ea6ea10f --- /dev/null +++ b/themes/rey.yaml @@ -0,0 +1,52 @@ +name: "Rey ❤️" +source: + marketplace_id: "Reliann.obsessed" + version: "0.0.3" + installs: 21 + rating: 0 + ratings: 0 + author: "Reliann" + repo: "https://github.com/Reliann/obsessed-VScode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Reliann.obsessed" +colors: + bg: "#13131F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 284 + pair: null + contrast: + fg: 79.7 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/rezaul360-blue-velvet-theme.yaml b/themes/rezaul360-blue-velvet-theme.yaml new file mode 100644 index 00000000..a7433851 --- /dev/null +++ b/themes/rezaul360-blue-velvet-theme.yaml @@ -0,0 +1,52 @@ +name: "Rezaul360 Blue Velvet Theme" +source: + marketplace_id: "Rezaul360Theme.rezaul360-theme" + version: "0.0.5" + installs: 188 + rating: 0 + ratings: 0 + author: "Rezaul360" + repo: "https://github.com/rezaul360/rezaul360-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Rezaul360Theme.rezaul360-theme" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#40444C" + red: "#F81141" + green: "#23974A" + yellow: "#FD7E57" + blue: "#285BFF" + magenta: "#8C62FD" + cyan: "#3A8AB2" + white: "#CDD3E0" + brightBlack: "#8F9AAE" + brightRed: "#FC4A6D" + brightGreen: "#37BD58" + brightYellow: "#F6BE48" + brightBlue: "#199FFD" + brightMagenta: "#FC58F6" + brightCyan: "#50ACAE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 32.1 + green: 32.8 + yellow: 48.7 + blue: 22.6 + magenta: 30.8 + cyan: 31.8 + white: 75.5 + brightBlack: 43.2 + brightRed: 38.3 + brightGreen: 50.1 + brightYellow: 68.5 + brightBlue: 43.9 + brightMagenta: 46.9 + brightCyan: 45.9 + brightWhite: 103.7 diff --git a/themes/rezaul360-professional-theme.yaml b/themes/rezaul360-professional-theme.yaml new file mode 100644 index 00000000..fc882a15 --- /dev/null +++ b/themes/rezaul360-professional-theme.yaml @@ -0,0 +1,52 @@ +name: "Rezaul360 - Professional Theme" +source: + marketplace_id: "Rezaul360Theme.rezaul360-theme" + version: "0.0.5" + installs: 188 + rating: 0 + ratings: 0 + author: "Rezaul360" + repo: "https://github.com/rezaul360/rezaul360-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Rezaul360Theme.rezaul360-theme" +colors: + bg: "#1C1E2E" + fg: "#C8D3F5" + black: "#000000" + red: "#FF757F" + green: "#C3E88D" + yellow: "#FFC777" + blue: "#82AAFF" + magenta: "#FCA7EA" + cyan: "#86E1FC" + white: "#C8D3F5" + brightBlack: "#828BB8" + brightRed: "#FF757F" + brightGreen: "#C3E88D" + brightYellow: "#FFC777" + brightBlue: "#82AAFF" + brightMagenta: "#FCA7EA" + brightCyan: "#86E1FC" + brightWhite: "#C8D3F5" +meta: + mode: "dark" + accent: "orange" + hue: 278 + pair: null + contrast: + fg: 78.2 + black: 0 + red: 49.9 + green: 83.2 + yellow: 76.5 + blue: 54.9 + magenta: 68.3 + cyan: 78.8 + white: 78.2 + brightBlack: 39.2 + brightRed: 49.9 + brightGreen: 83.2 + brightYellow: 76.5 + brightBlue: 54.9 + brightMagenta: 68.3 + brightCyan: 78.8 + brightWhite: 78.2 diff --git a/themes/rezaul360-simple-as-light.yaml b/themes/rezaul360-simple-as-light.yaml new file mode 100644 index 00000000..c2f8f430 --- /dev/null +++ b/themes/rezaul360-simple-as-light.yaml @@ -0,0 +1,52 @@ +name: "Rezaul360 - Simple as light" +source: + marketplace_id: "Rezaul360Theme.rezaul360-theme" + version: "0.0.5" + installs: 188 + rating: 0 + ratings: 0 + author: "Rezaul360" + repo: "https://github.com/rezaul360/rezaul360-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Rezaul360Theme.rezaul360-theme" +colors: + bg: "#FFFFFF" + fg: "#455059" + black: "#FFFFFF" + red: "#C13838" + green: "#37AE6F" + yellow: "#C9A022" + blue: "#3398DB" + magenta: "#CC71BC" + cyan: "#24B5A8" + white: "#455059" + brightBlack: "#3398DB" + brightRed: "#C13838" + brightGreen: "#37AE6F" + brightYellow: "#C9A022" + brightBlue: "#3398DB" + brightMagenta: "#CC71BC" + brightCyan: "#24B5A8" + brightWhite: "#3398DB" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 88.5 + black: 0 + red: 75.7 + green: 53.8 + yellow: 48.2 + blue: 58.3 + magenta: 58.3 + cyan: 49.4 + white: 88.5 + brightBlack: 58.3 + brightRed: 75.7 + brightGreen: 53.8 + brightYellow: 48.2 + brightBlue: 58.3 + brightMagenta: 58.3 + brightCyan: 49.4 + brightWhite: 58.3 diff --git a/themes/rg-htmllessons-io.yaml b/themes/rg-htmllessons-io.yaml new file mode 100644 index 00000000..16a3b512 --- /dev/null +++ b/themes/rg-htmllessons-io.yaml @@ -0,0 +1,52 @@ +name: "RG htmllessons.io" +source: + marketplace_id: "htmllessonsru.red-group-themes" + version: "0.0.7" + installs: 6438 + rating: 4.08 + ratings: 13 + author: "htmllessons_io" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=htmllessonsru.red-group-themes" +colors: + bg: "#1D1D1D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.8 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/rhodes-dark.yaml b/themes/rhodes-dark.yaml index dd63c551..a6084125 100644 --- a/themes/rhodes-dark.yaml +++ b/themes/rhodes-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gaebalgom.rhodes" version: "1.0.0" installs: 570 + rating: 0 + ratings: 0 author: "gaebalgom" repo: "https://github.com/dodok8/rhodes-theme" url: "https://marketplace.visualstudio.com/items?itemName=gaebalgom.rhodes" diff --git a/themes/rhodes-light.yaml b/themes/rhodes-light.yaml index 6ec19bc4..6036ba2f 100644 --- a/themes/rhodes-light.yaml +++ b/themes/rhodes-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gaebalgom.rhodes" version: "1.0.0" installs: 570 + rating: 0 + ratings: 0 author: "gaebalgom" repo: "https://github.com/dodok8/rhodes-theme" url: "https://marketplace.visualstudio.com/items?itemName=gaebalgom.rhodes" diff --git a/themes/rhodium-dark.yaml b/themes/rhodium-dark.yaml new file mode 100644 index 00000000..950582ea --- /dev/null +++ b/themes/rhodium-dark.yaml @@ -0,0 +1,52 @@ +name: "Rhodium Dark" +source: + marketplace_id: "mataga.rhodium" + version: "1.2.6" + installs: 100 + rating: 0 + ratings: 0 + author: "mataga" + repo: "https://github.com/merzainc/rhodium" + url: "https://marketplace.visualstudio.com/items?itemName=mataga.rhodium" +colors: + bg: "#111827" + fg: "#F9FAFB" + black: "#FFFFFF" + red: "#FB7185" + green: "#34D399" + yellow: "#FBBF24" + blue: "#3B82F6" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#CBD5E1" + brightBlack: "#94A3B8" + brightRed: "#FB7185" + brightGreen: "#6EE7B7" + brightYellow: "#FCD34D" + brightBlue: "#60A5FA" + brightMagenta: "#D8B4FE" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 265 + pair: null + contrast: + fg: 103.3 + black: 106.7 + red: 49.1 + green: 65 + yellow: 72.6 + blue: 36.6 + magenta: 49.5 + cyan: 68.4 + white: 79.2 + brightBlack: 50.6 + brightRed: 49.1 + brightGreen: 77.9 + brightYellow: 81.2 + brightBlue: 51.2 + brightMagenta: 69.1 + brightCyan: 81 + brightWhite: 106.7 diff --git a/themes/rich-black-no-highlighting.yaml b/themes/rich-black-no-highlighting.yaml new file mode 100644 index 00000000..2eb3a20e --- /dev/null +++ b/themes/rich-black-no-highlighting.yaml @@ -0,0 +1,52 @@ +name: "Rich Black, no highlighting" +source: + marketplace_id: "KrisBastiani.vscode-theme-rich-black-no-highlighting" + version: "0.1.0" + installs: 41 + rating: 0 + ratings: 0 + author: "Kris Bastiani" + repo: "https://github.com/Kris-Bastiani/vscode-theme-rich-black-no-highlighting" + url: "https://marketplace.visualstudio.com/items?itemName=KrisBastiani.vscode-theme-rich-black-no-highlighting" +colors: + bg: "#010203" + fg: "#FFFFFF" + black: "#010203" + red: "#E4002B" + green: "#58BC67" + yellow: "#FFC100" + blue: "#5981FF" + magenta: "#FF00E3" + cyan: "#00E7FF" + white: "#FFFFFF" + brightBlack: "#1B1C1D" + brightRed: "#E4002B" + brightGreen: "#58BC67" + brightYellow: "#FFC100" + brightBlue: "#5981FF" + brightMagenta: "#FF00E3" + brightCyan: "#00E7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 31 + green: 55.3 + yellow: 75.1 + blue: 39.5 + magenta: 44.2 + cyan: 80 + white: 107.9 + brightBlack: 0 + brightRed: 31 + brightGreen: 55.3 + brightYellow: 75.1 + brightBlue: 39.5 + brightMagenta: 44.2 + brightCyan: 80 + brightWhite: 107.9 diff --git a/themes/rich-black-theme.yaml b/themes/rich-black-theme.yaml new file mode 100644 index 00000000..6f5e506a --- /dev/null +++ b/themes/rich-black-theme.yaml @@ -0,0 +1,52 @@ +name: "rich-black-theme" +source: + marketplace_id: "mariusbegby.rich-black-theme" + version: "1.1.1" + installs: 2841 + rating: 5 + ratings: 2 + author: "Marius Begby" + repo: "https://github.com/mariusbegby/rich-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mariusbegby.rich-black-theme" +colors: + bg: "#0F1217" + fg: "#CCCCCC" + black: "#62666D" + red: "#E48484" + green: "#85C27A" + yellow: "#CCC666" + blue: "#91B1E0" + magenta: "#E0A8FD" + cyan: "#71C2AA" + white: "#CCCCCC" + brightBlack: "#3C3F43" + brightRed: "#E45757" + brightGreen: "#65C253" + brightYellow: "#CCC43E" + brightBlue: "#6697E0" + brightMagenta: "#E0A8FD" + brightCyan: "#71C2AA" + brightWhite: "#E3E3E3" +meta: + mode: "dark" + accent: "orange" + hue: 261 + pair: null + contrast: + fg: 75.1 + black: 22.3 + red: 50.1 + green: 60.7 + yellow: 69.5 + blue: 58.5 + magenta: 66.5 + cyan: 60.7 + white: 75.1 + brightBlack: 7.4 + brightRed: 38.2 + brightGreen: 57.8 + brightYellow: 68.2 + brightBlue: 45.1 + brightMagenta: 66.5 + brightCyan: 60.7 + brightWhite: 89.2 diff --git a/themes/rider-dark-darcula.yaml b/themes/rider-dark-darcula.yaml new file mode 100644 index 00000000..89249e39 --- /dev/null +++ b/themes/rider-dark-darcula.yaml @@ -0,0 +1,52 @@ +name: "Rider Dark (Darcula)" +source: + marketplace_id: "Gasrulle.gasrulle-theme" + version: "0.6.7" + installs: 5 + rating: 0 + ratings: 0 + author: "Gasrulle" + repo: "https://github.com/gasrulle/gasrulle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" +colors: + bg: "#2B2B2B" + fg: "#A9B7C6" + black: "#2B2B2B" + red: "#F0524F" + green: "#5C962C" + yellow: "#A68A0D" + blue: "#3993D4" + magenta: "#A771BF" + cyan: "#00A3A3" + white: "#FFFFFF" + brightBlack: "#595959" + brightRed: "#FF4050" + brightGreen: "#4FC414" + brightYellow: "#E5BF00" + brightBlue: "#1FB0FF" + brightMagenta: "#ED7EED" + brightCyan: "#00E5E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 58.5 + black: 0 + red: 36.3 + green: 34.4 + yellow: 36.9 + blue: 37.3 + magenta: 33.7 + cyan: 40.4 + white: 103.8 + brightBlack: 13.7 + brightRed: 37.3 + brightGreen: 53.8 + brightYellow: 66 + brightBlue: 51.1 + brightMagenta: 51.5 + brightCyan: 73.6 + brightWhite: 103.8 diff --git a/themes/rider-dark-new-ui.yaml b/themes/rider-dark-new-ui.yaml new file mode 100644 index 00000000..cb473a03 --- /dev/null +++ b/themes/rider-dark-new-ui.yaml @@ -0,0 +1,52 @@ +name: "Rider Dark (New UI)" +source: + marketplace_id: "Gasrulle.gasrulle-theme" + version: "0.6.7" + installs: 5 + rating: 0 + ratings: 0 + author: "Gasrulle" + repo: "https://github.com/gasrulle/gasrulle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" +colors: + bg: "#1E1F22" + fg: "#BCBEC4" + black: "#1E1F22" + red: "#F75464" + green: "#5FAD65" + yellow: "#F2C55C" + blue: "#548AF7" + magenta: "#C77DBB" + cyan: "#2AACB8" + white: "#BCBEC4" + brightBlack: "#6F737A" + brightRed: "#F75464" + brightGreen: "#6CC46E" + brightYellow: "#F2C55C" + brightBlue: "#6B9BFA" + brightMagenta: "#D09BCD" + brightCyan: "#37BFC8" + brightWhite: "#DFE1E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.5 + black: 0 + red: 40.7 + green: 47 + yellow: 73.1 + blue: 39.6 + magenta: 43.8 + cyan: 47.5 + white: 65.5 + brightBlack: 26.6 + brightRed: 40.7 + brightGreen: 58.2 + brightYellow: 73.1 + brightBlue: 47.2 + brightMagenta: 55.5 + brightCyan: 56.8 + brightWhite: 86.4 diff --git a/themes/rider-melon-night.yaml b/themes/rider-melon-night.yaml index 19998918..024edf68 100644 --- a/themes/rider-melon-night.yaml +++ b/themes/rider-melon-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AbYzzX.rider-melon-theme" version: "0.1.2" installs: 518 + rating: 0 + ratings: 0 author: "AbYzzX" repo: "https://github.com/abYzzX/vscode.rider.melon.night" url: "https://marketplace.visualstudio.com/items?itemName=AbYzzX.rider-melon-theme" diff --git a/themes/rider.yaml b/themes/rider.yaml index 675a1e2c..d1419a01 100644 --- a/themes/rider.yaml +++ b/themes/rider.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arzg.intellij-theme" version: "1.11.0" installs: 97329 + rating: 5 + ratings: 1 author: "arzg" repo: "https://github.com/arzg/intellij-theme" url: "https://marketplace.visualstudio.com/items?itemName=arzg.intellij-theme" diff --git a/themes/rigel.yaml b/themes/rigel.yaml index 62e286a2..321c558a 100644 --- a/themes/rigel.yaml +++ b/themes/rigel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mrmartineau.rigel-vscode" version: "0.1.1" installs: 1392 + rating: 0 + ratings: 0 author: "mrmartineau" repo: "https://github.com/mrmartineau/rigel-vscode" url: "https://marketplace.visualstudio.com/items?itemName=mrmartineau.rigel-vscode" diff --git a/themes/rimber.yaml b/themes/rimber.yaml index 8ffab39c..e04f8404 100644 --- a/themes/rimber.yaml +++ b/themes/rimber.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Utsav.Rimber" version: "1.0.2" installs: 384 + rating: 0 + ratings: 0 author: "Utsav" repo: "https://github.com/Utsav2931/Rimber" url: "https://marketplace.visualstudio.com/items?itemName=Utsav.Rimber" diff --git a/themes/riskified-dark.yaml b/themes/riskified-dark.yaml index 3ff06cc9..ced8f1b2 100644 --- a/themes/riskified-dark.yaml +++ b/themes/riskified-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "eliorc.riskified-theme" version: "1.0.4" installs: 39 + rating: 0 + ratings: 0 author: "eliorc" repo: "https://github.com/eliorc/riskified-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=eliorc.riskified-theme" diff --git a/themes/rito.yaml b/themes/rito.yaml index 406523fb..192435fe 100644 --- a/themes/rito.yaml +++ b/themes/rito.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EminBayrak.rito-dark" version: "0.0.2" installs: 76 + rating: 0 + ratings: 0 author: "Emin Bayrak" repo: null url: "https://marketplace.visualstudio.com/items?itemName=EminBayrak.rito-dark" diff --git a/themes/rivendell.yaml b/themes/rivendell.yaml index fae05f82..a0bbc7a0 100644 --- a/themes/rivendell.yaml +++ b/themes/rivendell.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sortbyfirstname.rivendell" version: "0.0.3" installs: 509 + rating: 0 + ratings: 0 author: "sortbyfirstname" repo: "https://github.com/sortbyfirstname/rivendell-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sortbyfirstname.rivendell" diff --git a/themes/riviera-theme.yaml b/themes/riviera-theme.yaml new file mode 100644 index 00000000..45059d66 --- /dev/null +++ b/themes/riviera-theme.yaml @@ -0,0 +1,52 @@ +name: "Riviera theme" +source: + marketplace_id: "laander.riviera" + version: "0.0.3" + installs: 12 + rating: 0 + ratings: 0 + author: "Las" + repo: "https://github.com/laander/riviera-theme" + url: "https://marketplace.visualstudio.com/items?itemName=laander.riviera" +colors: + bg: "#101114" + fg: "#E9E9ED" + black: "#454658" + red: "#FBD9B2" + green: "#FBD9B2" + yellow: "#FBD9B2" + blue: "#9CC4D3" + magenta: "#ECC3E4" + cyan: "#9CC4D3" + white: "#E5E5E5" + brightBlack: "#454658" + brightRed: "#FBD9B2" + brightGreen: "#FBD9B2" + brightYellow: "#FBD9B2" + brightBlue: "#9CC4D3" + brightMagenta: "#ECC3E4" + brightCyan: "#9CC4D3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 93.2 + black: 10.5 + red: 86.4 + green: 86.4 + yellow: 86.4 + blue: 66.8 + magenta: 77.1 + cyan: 66.8 + white: 90.5 + brightBlack: 10.5 + brightRed: 86.4 + brightGreen: 86.4 + brightYellow: 86.4 + brightBlue: 66.8 + brightMagenta: 77.1 + brightCyan: 66.8 + brightWhite: 107.4 diff --git a/themes/rizz-focused.yaml b/themes/rizz-focused.yaml index 4239a775..ff891ce4 100644 --- a/themes/rizz-focused.yaml +++ b/themes/rizz-focused.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thememebabe.thememebabe" version: "0.0.3" installs: 14 + rating: 0 + ratings: 0 author: "ThemeMeBabe by Diksha" repo: "https://github.com/dikshaa2909/ThemeMeBabe" url: "https://marketplace.visualstudio.com/items?itemName=thememebabe.thememebabe" diff --git a/themes/rizz-neutral.yaml b/themes/rizz-neutral.yaml index a9d4152d..671f2c45 100644 --- a/themes/rizz-neutral.yaml +++ b/themes/rizz-neutral.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thememebabe.thememebabe" version: "0.0.3" installs: 14 + rating: 0 + ratings: 0 author: "ThemeMeBabe by Diksha" repo: "https://github.com/dikshaa2909/ThemeMeBabe" url: "https://marketplace.visualstudio.com/items?itemName=thememebabe.thememebabe" diff --git a/themes/rm-dark-theme.yaml b/themes/rm-dark-theme.yaml index 3a30a0ca..17bcc004 100644 --- a/themes/rm-dark-theme.yaml +++ b/themes/rm-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "raihaninfo.rm-dark-theme" version: "1.0.5" installs: 1544 + rating: 5 + ratings: 8 author: "raihaninfo" repo: "https://github.com/raihaninfo/rm-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=raihaninfo.rm-dark-theme" diff --git a/themes/rmondesilva-contrast.yaml b/themes/rmondesilva-contrast.yaml new file mode 100644 index 00000000..49975248 --- /dev/null +++ b/themes/rmondesilva-contrast.yaml @@ -0,0 +1,52 @@ +name: "rmondesilva-contrast" +source: + marketplace_id: "rmondesilva.rmondesilva" + version: "0.0.1" + installs: 87 + rating: 0 + ratings: 0 + author: "Richmond De Silva" + repo: "https://github.com/rmondesilva/vscode-color-theme-rmondesilva" + url: "https://marketplace.visualstudio.com/items?itemName=rmondesilva.rmondesilva" +colors: + bg: "#121414" + fg: "#D6DBDB" + black: "#1E2121" + red: "#BA0E2E" + green: "#A7DA1E" + yellow: "#9BB7A7" + blue: "#F9F7F1" + magenta: "#9BB7A7" + cyan: "#C24E4B" + white: "#E4E7E7" + brightBlack: "#424A4A" + brightRed: "#F03E5F" + brightGreen: "#A7DA1E" + brightYellow: "#D6E2DB" + brightBlue: "#FFFFFF" + brightMagenta: "#D6E2DB" + brightCyan: "#DC9997" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.4 + black: 0 + red: 20.8 + green: 73.5 + yellow: 59.1 + blue: 101.9 + magenta: 59.1 + cyan: 29.2 + white: 91.2 + brightBlack: 10.7 + brightRed: 37.1 + brightGreen: 73.5 + brightYellow: 86.6 + brightBlue: 107.2 + brightMagenta: 86.6 + brightCyan: 55.7 + brightWhite: 107.2 diff --git a/themes/roblox-stylized-dark-theme.yaml b/themes/roblox-stylized-dark-theme.yaml index 941c4066..2c95cadc 100644 --- a/themes/roblox-stylized-dark-theme.yaml +++ b/themes/roblox-stylized-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Raspberry05.robloxtheme" version: "0.0.1" installs: 1090 + rating: 0 + ratings: 0 author: "Raspberry" repo: "https://github.com/Raspberry05/robloxTheme" url: "https://marketplace.visualstudio.com/items?itemName=Raspberry05.robloxtheme" diff --git a/themes/robodark.yaml b/themes/robodark.yaml index c223c4b6..8c903d9c 100644 --- a/themes/robodark.yaml +++ b/themes/robodark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LaVeglia00148.robodark" version: "1.11.2" installs: 2509 + rating: 5 + ratings: 1 author: "Chad LaVeglia" repo: "https://github.com/cjesq24/RoboDark" url: "https://marketplace.visualstudio.com/items?itemName=LaVeglia00148.robodark" diff --git a/themes/robolaunch.yaml b/themes/robolaunch.yaml index 4d85c115..5594f76d 100644 --- a/themes/robolaunch.yaml +++ b/themes/robolaunch.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gokhangunduz.robolaunch" version: "1.3.6" installs: 219 + rating: 5 + ratings: 1 author: "Gökhan Gündüz" repo: "https://github.com/gokhangunduz/robolaunch-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=gokhangunduz.robolaunch" diff --git a/themes/robot-framework-material-dark.yaml b/themes/robot-framework-material-dark.yaml new file mode 100644 index 00000000..503263d4 --- /dev/null +++ b/themes/robot-framework-material-dark.yaml @@ -0,0 +1,52 @@ +name: "Robot Framework Material Dark" +source: + marketplace_id: "ConnectionsSystem.robotframework-pro" + version: "2.1.4" + installs: 293 + rating: 0 + ratings: 0 + author: "Connections System" + repo: "https://github.com/Skisperd/robotframework-pro-extension" + url: "https://marketplace.visualstudio.com/items?itemName=ConnectionsSystem.robotframework-pro" +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 230 + pair: null + contrast: + fg: 100.4 + black: 0 + red: 39.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 102.7 + brightBlack: 0 + brightRed: 39.4 + brightGreen: 80 + brightYellow: 74.7 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/rocinante.yaml b/themes/rocinante.yaml index d6fdef13..8e9387bb 100644 --- a/themes/rocinante.yaml +++ b/themes/rocinante.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "A-Abra.Rocinante" version: "1.0.0" installs: 81 + rating: 0 + ratings: 0 author: "A-Abra" repo: "https://github.com/A-Abra/rocinante-vscode" url: "https://marketplace.visualstudio.com/items?itemName=A-Abra.Rocinante" diff --git a/themes/rocklee.yaml b/themes/rocklee.yaml new file mode 100644 index 00000000..f3c81608 --- /dev/null +++ b/themes/rocklee.yaml @@ -0,0 +1,52 @@ +name: "RockLee" +source: + marketplace_id: "MdTalhaZubayer.rocklee" + version: "0.0.6" + installs: 1562 + rating: 5 + ratings: 2 + author: "Md Talha Zubayer" + repo: "https://github.com/MdTalhaZubayer/rocklee" + url: "https://marketplace.visualstudio.com/items?itemName=MdTalhaZubayer.rocklee" +colors: + bg: "#2D2627" + fg: "#E2DCDD" + black: "#3B3233" + red: "#BA0E2E" + green: "#F0A56C" + yellow: "#689D81" + blue: "#D8CA96" + magenta: "#F0A56C" + cyan: "#689D81" + white: "#EEEAEB" + brightBlack: "#645557" + brightRed: "#F03E5F" + brightGreen: "#F9DEC9" + brightYellow: "#A6C5B5" + brightBlue: "#F4F0E0" + brightMagenta: "#F9DEC9" + brightCyan: "#A6C5B5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 8 + pair: null + contrast: + fg: 82.9 + black: 0 + red: 18.1 + green: 59.5 + yellow: 40.2 + blue: 71.1 + magenta: 59.5 + cyan: 40.2 + white: 91.4 + brightBlack: 14.1 + brightRed: 34.4 + brightGreen: 86.2 + brightYellow: 64 + brightBlue: 94.5 + brightMagenta: 86.2 + brightCyan: 64 + brightWhite: 104.5 diff --git a/themes/rocko-s-modern-theme.yaml b/themes/rocko-s-modern-theme.yaml index 6195ab41..3dba28d2 100644 --- a/themes/rocko-s-modern-theme.yaml +++ b/themes/rocko-s-modern-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "elethan.rocko-theme" version: "0.0.17" installs: 1105 + rating: 0 + ratings: 0 author: "elethan" repo: "https://github.com/el-ethan/rocko-theme" url: "https://marketplace.visualstudio.com/items?itemName=elethan.rocko-theme" diff --git a/themes/rogue-squadron.yaml b/themes/rogue-squadron.yaml index ca34ce5e..60e9cba1 100644 --- a/themes/rogue-squadron.yaml +++ b/themes/rogue-squadron.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DanMad.a-galaxy-far-far-away-theme" version: "3.3.1" installs: 4613 + rating: 5 + ratings: 3 author: "DanMad" repo: "https://github.com/danmad/a-galaxy-far-far-away-theme" url: "https://marketplace.visualstudio.com/items?itemName=DanMad.a-galaxy-far-far-away-theme" diff --git a/themes/rohit-kudalkar-dark-theme.yaml b/themes/rohit-kudalkar-dark-theme.yaml index 4ddda832..cee3a586 100644 --- a/themes/rohit-kudalkar-dark-theme.yaml +++ b/themes/rohit-kudalkar-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rohitkudalkar-dark-theme.rohitkudalkar-dark-theme" version: "0.15.0" installs: 33 + rating: 0 + ratings: 0 author: "rohitkudalkar-dark-theme" repo: "https://github.com/rohitkudalkar92/rohitkudalkar-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=rohitkudalkar-dark-theme.rohitkudalkar-dark-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 96.6 black: 0 diff --git a/themes/rohit.yaml b/themes/rohit.yaml new file mode 100644 index 00000000..721f8c23 --- /dev/null +++ b/themes/rohit.yaml @@ -0,0 +1,52 @@ +name: "ROHIT" +source: + marketplace_id: "ROHIT-SINGH.EBONX" + version: "1.0.2" + installs: 43 + rating: 0 + ratings: 0 + author: "ROHIT-SINGH" + repo: "https://github.com/ROHIT-SINGH-1/EBONX" + url: "https://marketplace.visualstudio.com/items?itemName=ROHIT-SINGH.EBONX" +colors: + bg: "#0D0D0D" + fg: "#6688CC" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 38.7 + black: 0 + red: 64.1 + green: 91.6 + yellow: 96.5 + blue: 82.1 + magenta: 75.5 + cyan: 96.7 + white: 75.4 + brightBlack: 0 + brightRed: 52.5 + brightGreen: 87.6 + brightYellow: 91.3 + brightBlue: 62.9 + brightMagenta: 51 + brightCyan: 94.6 + brightWhite: 107.6 diff --git a/themes/ronin-darker.yaml b/themes/ronin-darker.yaml index c960b195..42f4cb3c 100644 --- a/themes/ronin-darker.yaml +++ b/themes/ronin-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZachBauer.ronin" version: "1.7.0" installs: 1118 + rating: 0 + ratings: 0 author: "Zach Bauer" repo: "https://github.com/azbauer8/Ronin" url: "https://marketplace.visualstudio.com/items?itemName=ZachBauer.ronin" diff --git a/themes/ronin.yaml b/themes/ronin.yaml index 6633d7be..b550093d 100644 --- a/themes/ronin.yaml +++ b/themes/ronin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZachBauer.ronin" version: "1.7.0" installs: 1118 + rating: 0 + ratings: 0 author: "Zach Bauer" repo: "https://github.com/azbauer8/Ronin" url: "https://marketplace.visualstudio.com/items?itemName=ZachBauer.ronin" diff --git a/themes/root-bear.yaml b/themes/root-bear.yaml index c0adfa2a..c9bcb9b9 100644 --- a/themes/root-bear.yaml +++ b/themes/root-bear.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Reuben.root-bear" version: "0.2.1" installs: 7010 + rating: 5 + ratings: 2 author: "RobiMez" repo: "https://github.com/RobiMez/void_blue" url: "https://marketplace.visualstudio.com/items?itemName=Reuben.root-bear" diff --git a/themes/root-dark-mode-theme-v0-1.yaml b/themes/root-dark-mode-theme-v0-1.yaml index e21dfecf..b20d6b71 100644 --- a/themes/root-dark-mode-theme-v0-1.yaml +++ b/themes/root-dark-mode-theme-v0-1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fiedri.root-dark-theme" version: "0.0.5" installs: 26 + rating: 0 + ratings: 0 author: "fiedri" repo: null url: "https://marketplace.visualstudio.com/items?itemName=fiedri.root-dark-theme" diff --git a/themes/ros-pine-dawn-no-italics.yaml b/themes/ros-pine-dawn-no-italics.yaml new file mode 100644 index 00000000..67691ac2 --- /dev/null +++ b/themes/ros-pine-dawn-no-italics.yaml @@ -0,0 +1,52 @@ +name: "Rosé Pine Dawn (no italics)" +source: + marketplace_id: "mvllow.rose-pine" + version: "2.15.0" + installs: 299415 + rating: 4.73 + ratings: 22 + author: "Rosé Pine" + repo: "https://github.com/rose-pine/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=mvllow.rose-pine" +colors: + bg: "#FAF4ED" + fg: "#575279" + black: "#F2E9E1" + red: "#B4637A" + green: "#286983" + yellow: "#EA9D34" + blue: "#56949F" + magenta: "#907AA9" + cyan: "#D7827E" + white: "#575279" + brightBlack: "#797593" + brightRed: "#B4637A" + brightGreen: "#286983" + brightYellow: "#EA9D34" + brightBlue: "#56949F" + brightMagenta: "#907AA9" + brightCyan: "#D7827E" + brightWhite: "#575279" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 79.1 + black: 0 + red: 62.5 + green: 74.2 + yellow: 37.8 + blue: 55.6 + magenta: 59.3 + cyan: 48.2 + white: 79.1 + brightBlack: 64.4 + brightRed: 62.5 + brightGreen: 74.2 + brightYellow: 37.8 + brightBlue: 55.6 + brightMagenta: 59.3 + brightCyan: 48.2 + brightWhite: 79.1 diff --git a/themes/ros-pine-moon.yaml b/themes/ros-pine-moon.yaml new file mode 100644 index 00000000..c60c1c16 --- /dev/null +++ b/themes/ros-pine-moon.yaml @@ -0,0 +1,52 @@ +name: "Rosé Pine Moon" +source: + marketplace_id: "mvllow.rose-pine" + version: "2.15.0" + installs: 299415 + rating: 4.73 + ratings: 22 + author: "Rosé Pine" + repo: "https://github.com/rose-pine/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=mvllow.rose-pine" +colors: + bg: "#232136" + fg: "#E0DEF4" + black: "#393552" + red: "#EB6F92" + green: "#3E8FB0" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#EA9A97" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#3E8FB0" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#EA9A97" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: 288 + pair: null + contrast: + fg: 85.3 + black: 0 + red: 44.2 + green: 35.2 + yellow: 71.9 + blue: 69.7 + magenta: 58.7 + cyan: 56.5 + white: 85.3 + brightBlack: 39.6 + brightRed: 44.2 + brightGreen: 35.2 + brightYellow: 71.9 + brightBlue: 69.7 + brightMagenta: 58.7 + brightCyan: 56.5 + brightWhite: 85.3 diff --git a/themes/ros-pine-no-italics.yaml b/themes/ros-pine-no-italics.yaml new file mode 100644 index 00000000..e15118ee --- /dev/null +++ b/themes/ros-pine-no-italics.yaml @@ -0,0 +1,52 @@ +name: "Rosé Pine (no italics)" +source: + marketplace_id: "mvllow.rose-pine" + version: "2.15.0" + installs: 299415 + rating: 4.73 + ratings: 22 + author: "Rosé Pine" + repo: "https://github.com/rose-pine/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=mvllow.rose-pine" +colors: + bg: "#191724" + fg: "#E0DEF4" + black: "#26233A" + red: "#EB6F92" + green: "#31748F" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#EBBCBA" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#31748F" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#EBBCBA" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: 291 + pair: null + contrast: + fg: 86.8 + black: 0 + red: 45.7 + green: 24.9 + yellow: 73.4 + blue: 71.2 + magenta: 60.1 + cyan: 71.6 + white: 86.8 + brightBlack: 41.1 + brightRed: 45.7 + brightGreen: 24.9 + brightYellow: 73.4 + brightBlue: 71.2 + brightMagenta: 60.1 + brightCyan: 71.6 + brightWhite: 86.8 diff --git a/themes/ros-pine.yaml b/themes/ros-pine.yaml index f4abb568..7b108f51 100644 --- a/themes/ros-pine.yaml +++ b/themes/ros-pine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SulSami.rose-pine-burnt" version: "1.0.3" installs: 3259 + rating: 0 + ratings: 0 author: "Sami" repo: "https://github.com/rose-pine-vscode/vscode" url: "https://marketplace.visualstudio.com/items?itemName=SulSami.rose-pine-burnt" diff --git a/themes/rose-paradise.yaml b/themes/rose-paradise.yaml index a74ab6c6..b330e11e 100644 --- a/themes/rose-paradise.yaml +++ b/themes/rose-paradise.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/rosefall-black.yaml b/themes/rosefall-black.yaml index 363d467a..be8fd813 100644 --- a/themes/rosefall-black.yaml +++ b/themes/rosefall-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vorhdam.rosefall" version: "2.0.0" installs: 18 + rating: 0 + ratings: 0 author: "Ádám Horváth" repo: "https://github.com/vorhdam/rosefall" url: "https://marketplace.visualstudio.com/items?itemName=vorhdam.rosefall" diff --git a/themes/rosefall-midnight.yaml b/themes/rosefall-midnight.yaml index 065d6a4c..25cec651 100644 --- a/themes/rosefall-midnight.yaml +++ b/themes/rosefall-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vorhdam.rosefall" version: "2.0.0" installs: 18 + rating: 0 + ratings: 0 author: "Ádám Horváth" repo: "https://github.com/vorhdam/rosefall" url: "https://marketplace.visualstudio.com/items?itemName=vorhdam.rosefall" diff --git a/themes/roselia-orbital-eden-pastel.yaml b/themes/roselia-orbital-eden-pastel.yaml index 50d3004e..e2ed0a00 100644 --- a/themes/roselia-orbital-eden-pastel.yaml +++ b/themes/roselia-orbital-eden-pastel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TehMatcha.roselia-theme" version: "4.4.0" installs: 1278 + rating: 5 + ratings: 2 author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-roselia-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" diff --git a/themes/roselia.yaml b/themes/roselia.yaml index e942a218..31a90b81 100644 --- a/themes/roselia.yaml +++ b/themes/roselia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TehMatcha.morfonica-theme" version: "1.0.3" installs: 41 + rating: 0 + ratings: 0 author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-morfonica-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.morfonica-theme" diff --git a/themes/rouge.yaml b/themes/rouge.yaml new file mode 100644 index 00000000..696b1180 --- /dev/null +++ b/themes/rouge.yaml @@ -0,0 +1,52 @@ +name: "Rouge" +source: + marketplace_id: "josef.rouge-theme" + version: "2.1.6" + installs: 53325 + rating: 4.91 + ratings: 11 + author: "josef" + repo: "https://github.com/josefaidt/rouge-theme" + url: "https://marketplace.visualstudio.com/items?itemName=josef.rouge-theme" +colors: + bg: "#172030" + fg: "#BBBBBB" + black: "#374E73" + red: "#C6797E" + green: "#ADB9A4" + yellow: "#ECE7AC" + blue: "#6E94B9" + magenta: "#B18BB1" + cyan: "#8AB6C1" + white: "#E3E4E8" + brightBlack: "#3F5A85" + brightRed: "#D19498" + brightGreen: "#BEC8B7" + brightYellow: "#F2EFC7" + brightBlue: "#98B3CD" + brightMagenta: "#CCB3CC" + brightCyan: "#ABCBD3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 262 + pair: null + contrast: + fg: 63.6 + black: 11.2 + red: 39.9 + green: 60.3 + yellow: 88.6 + blue: 40.7 + magenta: 44.1 + cyan: 56.8 + white: 88.3 + brightBlack: 15.8 + brightRed: 50.9 + brightGreen: 69.3 + brightYellow: 94 + brightBlue: 57.4 + brightMagenta: 63.4 + brightCyan: 69.6 + brightWhite: 105.8 diff --git a/themes/roxo-theme.yaml b/themes/roxo-theme.yaml index 775d5f19..52e3ce50 100644 --- a/themes/roxo-theme.yaml +++ b/themes/roxo-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rellyson.roxo-theme-vscode" version: "1.2.1" installs: 749 + rating: 0 + ratings: 0 author: "Rellyson Silva" repo: "https://github.com/roxo-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=rellyson.roxo-theme-vscode" diff --git a/themes/royal.yaml b/themes/royal.yaml index 9137a700..62918926 100644 --- a/themes/royal.yaml +++ b/themes/royal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EshwarBY.royal" version: "0.0.1" installs: 65 + rating: 0 + ratings: 0 author: "Eshwar B.Y" repo: null url: "https://marketplace.visualstudio.com/items?itemName=EshwarBY.royal" diff --git a/themes/royalty-theme.yaml b/themes/royalty-theme.yaml new file mode 100644 index 00000000..62d37c43 --- /dev/null +++ b/themes/royalty-theme.yaml @@ -0,0 +1,50 @@ +name: "Royalty Theme" +source: + marketplace_id: "Alcash55.royaltytheme" + version: "2.2.0" + installs: 179 + author: "Alcash55" + repo: "https://github.com/alcash55/Royalty-VS-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Alcash55.royaltytheme" +colors: + bg: "#4A4063" + fg: "#FFFFFF" + black: "#000000" + red: "#D11B1B" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#659DD9" + magenta: "#E280E2" + cyan: "#11A8CD" + white: "#C9C9C9" + brightBlack: "#AB8D8D" + brightRed: "#FF0000" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#489FFF" + brightMagenta: "#FF76FF" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 297 + pair: null + contrast: + fg: 96.3 + black: 11.9 + red: 15.3 + green: 42.4 + yellow: 75 + blue: 35.8 + magenta: 41.7 + cyan: 37 + white: 62.3 + brightBlack: 33.1 + brightRed: 25.9 + brightGreen: 52.9 + brightYellow: 85 + brightBlue: 37.7 + brightMagenta: 46.6 + brightCyan: 44.8 + brightWhite: 96.3 diff --git a/themes/rozen.yaml b/themes/rozen.yaml index 2fc7d5cd..ed6ab46a 100644 --- a/themes/rozen.yaml +++ b/themes/rozen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TehMatcha.roselia-theme" version: "4.4.0" installs: 1278 + rating: 5 + ratings: 2 author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-roselia-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" diff --git a/themes/rs-dark.yaml b/themes/rs-dark.yaml index 7cec2b1e..bb984081 100644 --- a/themes/rs-dark.yaml +++ b/themes/rs-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "resure.rs-theme" version: "1.1.0" installs: 840 + rating: 0 + ratings: 0 author: "resure" repo: "https://github.com/resure/rs-theme" url: "https://marketplace.visualstudio.com/items?itemName=resure.rs-theme" diff --git a/themes/rsikified-dark-purple.yaml b/themes/rsikified-dark-purple.yaml index 77627f8d..89c79741 100644 --- a/themes/rsikified-dark-purple.yaml +++ b/themes/rsikified-dark-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "eliorc.riskified-theme" version: "1.0.4" installs: 39 + rating: 0 + ratings: 0 author: "eliorc" repo: "https://github.com/eliorc/riskified-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=eliorc.riskified-theme" diff --git a/themes/rubecula.yaml b/themes/rubecula.yaml index 29c3069b..e6e200b9 100644 --- a/themes/rubecula.yaml +++ b/themes/rubecula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andreasbackx.rubecula" version: "2.0.8" installs: 646 + rating: 4.43 + ratings: 7 author: "Andreas Backx" repo: "https://github.com/Rubecula/VS-Code" url: "https://marketplace.visualstudio.com/items?itemName=andreasbackx.rubecula" diff --git a/themes/rubi-theme.yaml b/themes/rubi-theme.yaml index 16dabcf3..b01f02f7 100644 --- a/themes/rubi-theme.yaml +++ b/themes/rubi-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sd-tools.sd-ruby-extension-vs" version: "2.1.3" installs: 50 + rating: 0 + ratings: 0 author: "Serez Dev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sd-tools.sd-ruby-extension-vs" diff --git a/themes/ruby-nights-garnet-midnight.yaml b/themes/ruby-nights-garnet-midnight.yaml index bd537040..14f5e7d5 100644 --- a/themes/ruby-nights-garnet-midnight.yaml +++ b/themes/ruby-nights-garnet-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lekaledian.ruby-nights" version: "1.1.0" installs: 12 + rating: 5 + ratings: 1 author: "Ledian Leka" repo: "https://github.com/Ledian63S/ruby-nights" url: "https://marketplace.visualstudio.com/items?itemName=lekaledian.ruby-nights" diff --git a/themes/ruby-nights-garnet.yaml b/themes/ruby-nights-garnet.yaml index 2ad77356..cd77b195 100644 --- a/themes/ruby-nights-garnet.yaml +++ b/themes/ruby-nights-garnet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lekaledian.ruby-nights" version: "1.1.0" installs: 12 + rating: 5 + ratings: 1 author: "Ledian Leka" repo: "https://github.com/Ledian63S/ruby-nights" url: "https://marketplace.visualstudio.com/items?itemName=lekaledian.ruby-nights" diff --git a/themes/ruby-nights-ruby-midnight.yaml b/themes/ruby-nights-ruby-midnight.yaml index d517f854..965c37ab 100644 --- a/themes/ruby-nights-ruby-midnight.yaml +++ b/themes/ruby-nights-ruby-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lekaledian.ruby-nights" version: "1.1.0" installs: 12 + rating: 5 + ratings: 1 author: "Ledian Leka" repo: "https://github.com/Ledian63S/ruby-nights" url: "https://marketplace.visualstudio.com/items?itemName=lekaledian.ruby-nights" diff --git a/themes/ruby-nights-ruby.yaml b/themes/ruby-nights-ruby.yaml index 97856e85..67c24631 100644 --- a/themes/ruby-nights-ruby.yaml +++ b/themes/ruby-nights-ruby.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lekaledian.ruby-nights" version: "1.1.0" installs: 12 + rating: 5 + ratings: 1 author: "Ledian Leka" repo: "https://github.com/Ledian63S/ruby-nights" url: "https://marketplace.visualstudio.com/items?itemName=lekaledian.ruby-nights" diff --git a/themes/ruby-sea.yaml b/themes/ruby-sea.yaml index b5b0e494..42ad2bbf 100644 --- a/themes/ruby-sea.yaml +++ b/themes/ruby-sea.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Barkerbg001.rubysea-vscode" version: "1.0.6" installs: 545 + rating: 5 + ratings: 1 author: "Barkerbg001" repo: "https://github.com/barkerbg001/Ruby-Sea" url: "https://marketplace.visualstudio.com/items?itemName=Barkerbg001.rubysea-vscode" diff --git a/themes/rudydev-theme-edited-tokyo-night-storm.yaml b/themes/rudydev-theme-edited-tokyo-night-storm.yaml index 17a51c9b..d46c9f84 100644 --- a/themes/rudydev-theme-edited-tokyo-night-storm.yaml +++ b/themes/rudydev-theme-edited-tokyo-night-storm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RudyDev.rudydev-theme-v1" version: "0.5.0" installs: 1716 + rating: 0 + ratings: 0 author: "RudyDev" repo: "https://github.com/Rudy-Code/theme-vsc-v1" url: "https://marketplace.visualstudio.com/items?itemName=RudyDev.rudydev-theme-v1" diff --git a/themes/rufendev-green-purple.yaml b/themes/rufendev-green-purple.yaml new file mode 100644 index 00000000..66fbd5d2 --- /dev/null +++ b/themes/rufendev-green-purple.yaml @@ -0,0 +1,50 @@ +name: "rufendev-green-purple" +source: + marketplace_id: "rufendev-extensions.rufendev-green-purple" + version: "0.0.1" + installs: 261 + author: "rufendev-extensions" + repo: "https://github.com/RufenDev/rufendev-green-purple" + url: "https://marketplace.visualstudio.com/items?itemName=rufendev-extensions.rufendev-green-purple" +colors: + bg: "#212126" + fg: "#ACACC2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 55.9 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.1 + magenta: 28.4 + cyan: 46.2 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.2 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.7 + brightMagenta: 44 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/rui-cobalt.yaml b/themes/rui-cobalt.yaml index 6fde3cd2..fd62fce5 100644 --- a/themes/rui-cobalt.yaml +++ b/themes/rui-cobalt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ruixiao85.rui-color-themes" version: "1.3.0" installs: 1772 + rating: 5 + ratings: 1 author: "Rui Xiao" repo: "https://github.com/ruixiao85/VSCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=ruixiao85.rui-color-themes" diff --git a/themes/rui-sapphire.yaml b/themes/rui-sapphire.yaml index 5f3fc352..795958cb 100644 --- a/themes/rui-sapphire.yaml +++ b/themes/rui-sapphire.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ruixiao85.rui-color-themes" version: "1.3.0" installs: 1772 + rating: 5 + ratings: 1 author: "Rui Xiao" repo: "https://github.com/ruixiao85/VSCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=ruixiao85.rui-color-themes" diff --git a/themes/rumba-dark.yaml b/themes/rumba-dark.yaml new file mode 100644 index 00000000..8ed5e779 --- /dev/null +++ b/themes/rumba-dark.yaml @@ -0,0 +1,52 @@ +name: "Rumba Dark" +source: + marketplace_id: "Xoifail.rumba-lang" + version: "0.1.0" + installs: 10 + rating: 0 + ratings: 0 + author: "Xoifail" + repo: "https://github.com/XoifaiI/rumba" + url: "https://marketplace.visualstudio.com/items?itemName=Xoifail.rumba-lang" +colors: + bg: "#202227" + fg: "#BCBEC8" + black: "#191A1F" + red: "#DF4031" + green: "#8EE9B6" + yellow: "#F2BA2A" + blue: "#528BFF" + magenta: "#EB7973" + cyan: "#70C0E8" + white: "#BCBEC8" + brightBlack: "#6A6F81" + brightRed: "#EB7973" + brightGreen: "#8EE9B6" + brightYellow: "#F2BA2A" + brightBlue: "#70A0FF" + brightMagenta: "#F09090" + brightCyan: "#90D0F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.2 + black: 0 + red: 31 + green: 79.6 + yellow: 67.8 + blue: 40.1 + magenta: 46.1 + cyan: 60.8 + white: 65.2 + brightBlack: 24.7 + brightRed: 46.1 + brightGreen: 79.6 + brightYellow: 67.8 + brightBlue: 49.4 + brightMagenta: 54.4 + brightCyan: 70.6 + brightWhite: 105.5 diff --git a/themes/runic-minimal.yaml b/themes/runic-minimal.yaml index 75596de7..33c0b83f 100644 --- a/themes/runic-minimal.yaml +++ b/themes/runic-minimal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pyxel.runic-theme" version: "1.2.0" installs: 2355 + rating: 5 + ratings: 1 author: "Pyxel" repo: "https://github.com/xpyxel/runic-theme" url: "https://marketplace.visualstudio.com/items?itemName=pyxel.runic-theme" diff --git a/themes/running-wires.yaml b/themes/running-wires.yaml new file mode 100644 index 00000000..bcab7d1b --- /dev/null +++ b/themes/running-wires.yaml @@ -0,0 +1,52 @@ +name: "Running Wires" +source: + marketplace_id: "devarci.running-wires" + version: "0.0.3" + installs: 269 + rating: 0 + ratings: 0 + author: "Lorenzo Arcidiacono" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=devarci.running-wires" +colors: + bg: "#161A1D" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.6 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.7 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/ruru-marijuana.yaml b/themes/ruru-marijuana.yaml index a4fc6d29..402c7a80 100644 --- a/themes/ruru-marijuana.yaml +++ b/themes/ruru-marijuana.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ruru-m07.ruru-theme" version: "1.0.1" installs: 148 + rating: 5 + ratings: 1 author: "ruru" repo: "https://github.com/ruru-m07/ruru-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=ruru-m07.ruru-theme" diff --git a/themes/ruru-moon.yaml b/themes/ruru-moon.yaml index 0f7c309c..d37588fc 100644 --- a/themes/ruru-moon.yaml +++ b/themes/ruru-moon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ruru-m07.ruru-theme" version: "1.0.1" installs: 148 + rating: 5 + ratings: 1 author: "ruru" repo: "https://github.com/ruru-m07/ruru-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=ruru-m07.ruru-theme" diff --git a/themes/rust-brown.yaml b/themes/rust-brown.yaml index 9f63a278..c442edd0 100644 --- a/themes/rust-brown.yaml +++ b/themes/rust-brown.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LukianovII.rust-and-brown" version: "1.0.0" installs: 8 + rating: 0 + ratings: 0 author: "LukianovII" repo: "https://github.com/LukianovII/rust-and-brown-vscode" url: "https://marketplace.visualstudio.com/items?itemName=LukianovII.rust-and-brown" diff --git a/themes/rustacean.yaml b/themes/rustacean.yaml index 2f066e8a..2a96aae5 100644 --- a/themes/rustacean.yaml +++ b/themes/rustacean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SkylarCoelho.rustacean" version: "0.0.3" installs: 18 + rating: 0 + ratings: 0 author: "Skylar Coelho" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SkylarCoelho.rustacean" diff --git a/themes/ryb.yaml b/themes/ryb.yaml index ede12a38..15921f28 100644 --- a/themes/ryb.yaml +++ b/themes/ryb.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aland97.redyellowblue" version: "1.0.1" installs: 38 + rating: 0 + ratings: 0 author: "Alexey Andreenko" repo: null url: "https://marketplace.visualstudio.com/items?itemName=aland97.redyellowblue" diff --git a/themes/rypjaws.yaml b/themes/rypjaws.yaml index 5dd1b520..b512b74c 100644 --- a/themes/rypjaws.yaml +++ b/themes/rypjaws.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MihirPanchal.rypjaws" version: "0.5.1" installs: 386 + rating: 5 + ratings: 2 author: "Mihir Panchal" repo: "https://github.com/MihirRajeshPanchal/rypjaws" url: "https://marketplace.visualstudio.com/items?itemName=MihirPanchal.rypjaws" diff --git a/themes/s-kill.yaml b/themes/s-kill.yaml index 4aa6af9f..ddb40ed3 100644 --- a/themes/s-kill.yaml +++ b/themes/s-kill.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "metamorphosis.skill" version: "0.4.0" installs: 1198 + rating: 4.5 + ratings: 2 author: "metamorphosis" repo: "https://github.com/frontendmonster/vscode-skill-theme" url: "https://marketplace.visualstudio.com/items?itemName=metamorphosis.skill" diff --git a/themes/s-o-paulo-night.yaml b/themes/s-o-paulo-night.yaml index d7953cdf..bb909154 100644 --- a/themes/s-o-paulo-night.yaml +++ b/themes/s-o-paulo-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carlosdanieldev.saopaulo-night" version: "0.1.1" installs: 52 + rating: 0 + ratings: 0 author: "CarlosDanielDev" repo: "https://github.com/CarlosDanielDev/saopaulo-night" url: "https://marketplace.visualstudio.com/items?itemName=carlosdanieldev.saopaulo-night" diff --git a/themes/sabbir-theme-3.yaml b/themes/sabbir-theme-3.yaml new file mode 100644 index 00000000..2acfffbb --- /dev/null +++ b/themes/sabbir-theme-3.yaml @@ -0,0 +1,52 @@ +name: "sabbir - theme - 3" +source: + marketplace_id: "MdSabbir.sabbir-theme-3" + version: "0.0.1" + installs: 48 + rating: 0 + ratings: 0 + author: "Md Sabbir" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MdSabbir.sabbir-theme-3" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#828282" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 35.7 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/sacred.yaml b/themes/sacred.yaml new file mode 100644 index 00000000..c885c48b --- /dev/null +++ b/themes/sacred.yaml @@ -0,0 +1,49 @@ +name: "sacred" +source: + marketplace_id: "ShayanChakraborty.sacred" + version: "0.0.1" + installs: 50 + author: "Shayan Chakraborty" + repo: "https://github.com/shayansgithub/thetriotheme" + url: "https://marketplace.visualstudio.com/items?itemName=ShayanChakraborty.sacred" +colors: + bg: "#000000" + fg: "#FF2EF2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + contrast: + fg: 46.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/sadhu.yaml b/themes/sadhu.yaml new file mode 100644 index 00000000..0b3dd302 --- /dev/null +++ b/themes/sadhu.yaml @@ -0,0 +1,52 @@ +name: "Sadhu" +source: + marketplace_id: "bosiakov.theme-sadhu" + version: "0.1.1" + installs: 124 + rating: 0 + ratings: 0 + author: "bosiakov" + repo: "https://github.com/bosiakov/vscode-theme-sadhu" + url: "https://marketplace.visualstudio.com/items?itemName=bosiakov.theme-sadhu" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#AA3731" + green: "#448C27" + yellow: "#CB9000" + blue: "#325CC0" + magenta: "#7A3E9D" + cyan: "#0083B2" + white: "#BBBBBB" + brightBlack: "#777777" + brightRed: "#F05050" + brightGreen: "#60CB00" + brightYellow: "#FFBC5D" + brightBlue: "#007ACC" + brightMagenta: "#E64CE6" + brightCyan: "#00AACB" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 80.7 + green: 68.5 + yellow: 53.4 + blue: 80.1 + magenta: 83.7 + cyan: 69.1 + white: 36.7 + brightBlack: 71.1 + brightRed: 61.7 + brightGreen: 40.5 + brightYellow: 29.1 + brightBlue: 70.6 + brightMagenta: 58.2 + brightCyan: 52.6 + brightWhite: 0 diff --git a/themes/safari-midnight.yaml b/themes/safari-midnight.yaml index 7ae03e15..ad9a259b 100644 --- a/themes/safari-midnight.yaml +++ b/themes/safari-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TanakaChinengundu.savannah-code" version: "1.0.0" installs: 7 + rating: 0 + ratings: 0 author: "Tanaka Chinengundu" repo: "https://github.com/taqsblaze/savannah-code" url: "https://marketplace.visualstudio.com/items?itemName=TanakaChinengundu.savannah-code" diff --git a/themes/safe-dark-theme.yaml b/themes/safe-dark-theme.yaml new file mode 100644 index 00000000..72cd7f28 --- /dev/null +++ b/themes/safe-dark-theme.yaml @@ -0,0 +1,52 @@ +name: "safe dark theme" +source: + marketplace_id: "brenoLucasN.safe-dark-theme" + version: "1.0.2" + installs: 431 + rating: 5 + ratings: 1 + author: "Breno Lucas" + repo: "https://github.com/brenoLucasN/safe-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=brenoLucasN.safe-dark-theme" +colors: + bg: "#1A1A1A" + fg: "#D8DEE9" + black: "#2A2A2A" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#FFFFFF" + brightBlack: "#505050" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85 + black: 0 + red: 32.6 + green: 61.3 + yellow: 76.1 + blue: 48.3 + magenta: 46.1 + cyan: 62.3 + white: 106.5 + brightBlack: 12.9 + brightRed: 32.6 + brightGreen: 61.3 + brightYellow: 76.1 + brightBlue: 48.3 + brightMagenta: 46.1 + brightCyan: 62.3 + brightWhite: 106.5 diff --git a/themes/safira.yaml b/themes/safira.yaml index 3ac12f5f..0803a333 100644 --- a/themes/safira.yaml +++ b/themes/safira.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yinz.safira" version: "0.0.9" installs: 10363 + rating: 5 + ratings: 8 author: "Yinz" repo: "https://github.com/yinzdev/safira-vscode" url: "https://marketplace.visualstudio.com/items?itemName=yinz.safira" diff --git a/themes/saga-nordic-v1-2.yaml b/themes/saga-nordic-v1-2.yaml index eed6de55..207ddffa 100644 --- a/themes/saga-nordic-v1-2.yaml +++ b/themes/saga-nordic-v1-2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bcwsea.theme-saga" version: "1.2.0" installs: 2870 + rating: 5 + ratings: 3 author: "bcwsea" repo: "https://github.com/bcwdev/theme-saga" url: "https://marketplace.visualstudio.com/items?itemName=bcwsea.theme-saga" diff --git a/themes/saga-oceania-v1-2.yaml b/themes/saga-oceania-v1-2.yaml index 06ccd22e..5f9ae6a2 100644 --- a/themes/saga-oceania-v1-2.yaml +++ b/themes/saga-oceania-v1-2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bcwsea.theme-saga" version: "1.2.0" installs: 2870 + rating: 5 + ratings: 3 author: "bcwsea" repo: "https://github.com/bcwdev/theme-saga" url: "https://marketplace.visualstudio.com/items?itemName=bcwsea.theme-saga" diff --git a/themes/sage-of-light-color-theme.yaml b/themes/sage-of-light-color-theme.yaml index bb2eb5c8..f16d0d5d 100644 --- a/themes/sage-of-light-color-theme.yaml +++ b/themes/sage-of-light-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wavebeem.sage-of-light-vscode" version: "1.0.1" installs: 276 + rating: 0 + ratings: 0 author: "Sage Fennel" repo: "https://github.com/wavebeem/sage-of-light-vscode" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.sage-of-light-vscode" diff --git a/themes/sage-professional.yaml b/themes/sage-professional.yaml index ea3afbe5..fb71fa5a 100644 --- a/themes/sage-professional.yaml +++ b/themes/sage-professional.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cubancodepath.jv-sage-professional" version: "2.1.0" installs: 8 + rating: 0 + ratings: 0 author: "Bárbaro Javier" repo: "https://github.com/cubancodepath/sage-professional-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=cubancodepath.jv-sage-professional" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: null contrast: fg: 81.2 black: 0 diff --git a/themes/sage-siren-theme.yaml b/themes/sage-siren-theme.yaml index 13c118d4..08a48d9f 100644 --- a/themes/sage-siren-theme.yaml +++ b/themes/sage-siren-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "c3ne3s.sage-siren-theme" version: "0.0.1" installs: 255 + rating: 0 + ratings: 0 author: "c3ne3s" repo: null url: "https://marketplace.visualstudio.com/items?itemName=c3ne3s.sage-siren-theme" diff --git a/themes/sage.yaml b/themes/sage.yaml new file mode 100644 index 00000000..30d2ab7f --- /dev/null +++ b/themes/sage.yaml @@ -0,0 +1,50 @@ +name: "Sage" +source: + marketplace_id: "nashpatty.sage-theme" + version: "1.0.0" + installs: 2 + author: "nashpatty" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.sage-theme" +colors: + bg: "#262626" + fg: "#BCBCBC" + black: "#080808" + red: "#AF5F5F" + green: "#5F875F" + yellow: "#87875F" + blue: "#5F87AF" + magenta: "#5F5F87" + cyan: "#5F8787" + white: "#F0F0F0" + brightBlack: "#181818" + brightRed: "#FF8700" + brightGreen: "#87AF87" + brightYellow: "#FFFFAF" + brightBlue: "#87AFD7" + brightMagenta: "#8787AF" + brightCyan: "#5FAFAF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 63.2 + black: 0 + red: 27.4 + green: 30.4 + yellow: 33.9 + blue: 33.4 + magenta: 18.6 + cyan: 31.6 + white: 95 + brightBlack: 0 + brightRed: 52.1 + brightGreen: 50.4 + brightYellow: 101.7 + brightBlue: 53.8 + brightMagenta: 36.7 + brightCyan: 49.1 + brightWhite: 104.8 diff --git a/themes/sailor-at-sea.yaml b/themes/sailor-at-sea.yaml index 525d4eb1..205e9b88 100644 --- a/themes/sailor-at-sea.yaml +++ b/themes/sailor-at-sea.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rikkarth.ship-at-sea" version: "0.0.3" installs: 564 + rating: 5 + ratings: 2 author: "rikkarth" repo: "https://github.com/rikkarth/ship-at-sea" url: "https://marketplace.visualstudio.com/items?itemName=rikkarth.ship-at-sea" diff --git a/themes/sakai-theme-jupiter.yaml b/themes/sakai-theme-jupiter.yaml index 3824ba1d..caedf044 100644 --- a/themes/sakai-theme-jupiter.yaml +++ b/themes/sakai-theme-jupiter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sakai.sakai" version: "2.6.8" installs: 1186 + rating: 5 + ratings: 1 author: "Sakai" repo: "https://github.com/Sakai-UI/Sakai-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Sakai.sakai" diff --git a/themes/sakai-theme-moon.yaml b/themes/sakai-theme-moon.yaml index 15c5830e..87f52688 100644 --- a/themes/sakai-theme-moon.yaml +++ b/themes/sakai-theme-moon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sakai.sakai" version: "2.6.8" installs: 1186 + rating: 5 + ratings: 1 author: "Sakai" repo: "https://github.com/Sakai-UI/Sakai-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Sakai.sakai" diff --git a/themes/sakai-theme-saturn.yaml b/themes/sakai-theme-saturn.yaml index bc75a835..5e576e54 100644 --- a/themes/sakai-theme-saturn.yaml +++ b/themes/sakai-theme-saturn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sakai.sakai" version: "2.6.8" installs: 1186 + rating: 5 + ratings: 1 author: "Sakai" repo: "https://github.com/Sakai-UI/Sakai-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Sakai.sakai" diff --git a/themes/sakura-blossom-midnight.yaml b/themes/sakura-blossom-midnight.yaml index fbdc4a9e..82b73519 100644 --- a/themes/sakura-blossom-midnight.yaml +++ b/themes/sakura-blossom-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "agustinhopneto.sakura-blossom" version: "0.0.4" installs: 1415 + rating: 5 + ratings: 2 author: "Agustinho Neto" repo: "https://github.com/agustinhopneto/sakura-blossom" url: "https://marketplace.visualstudio.com/items?itemName=agustinhopneto.sakura-blossom" diff --git a/themes/sakura-blossom-theme.yaml b/themes/sakura-blossom-theme.yaml index 97d3021e..1a07f105 100644 --- a/themes/sakura-blossom-theme.yaml +++ b/themes/sakura-blossom-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DevangTomar.vscode-diverse-dye" version: "1.3.0" installs: 2595 + rating: 5 + ratings: 3 author: "Devang Tomar ⭐" repo: "https://github.com/devangtomar/vscode-diverse-dye" url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" diff --git a/themes/sakura-dreams-dark.yaml b/themes/sakura-dreams-dark.yaml index 091927a3..35537811 100644 --- a/themes/sakura-dreams-dark.yaml +++ b/themes/sakura-dreams-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nhcarrigan.naomis-themes" version: "2.3.0" installs: 68 + rating: 0 + ratings: 0 author: "NHCarrigan" repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" diff --git a/themes/sakura-dreams.yaml b/themes/sakura-dreams.yaml index c0f69f9b..9f559885 100644 --- a/themes/sakura-dreams.yaml +++ b/themes/sakura-dreams.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nhcarrigan.naomis-themes" version: "2.3.0" installs: 68 + rating: 0 + ratings: 0 author: "NHCarrigan" repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" diff --git a/themes/sakura-theme.yaml b/themes/sakura-theme.yaml index cafc3a1d..7e99d3d0 100644 --- a/themes/sakura-theme.yaml +++ b/themes/sakura-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AetherDes.sakura-aetherdes" version: "0.0.1" installs: 1087 + rating: 0 + ratings: 0 author: "AetherDes" repo: "https://github.com/AetherDeS/Sakura-Theme" url: "https://marketplace.visualstudio.com/items?itemName=AetherDes.sakura-aetherdes" diff --git a/themes/sakura-v2-by-leroiadib.yaml b/themes/sakura-v2-by-leroiadib.yaml index e6554f9d..a2311107 100644 --- a/themes/sakura-v2-by-leroiadib.yaml +++ b/themes/sakura-v2-by-leroiadib.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LeRoiAdib.sakura-v2-lra" version: "2.4.2" installs: 267 + rating: 0 + ratings: 0 author: "LeRoiAdib" repo: "https://github.com/RomainLAU/Sakura-Theme" url: "https://marketplace.visualstudio.com/items?itemName=LeRoiAdib.sakura-v2-lra" diff --git a/themes/sakura.yaml b/themes/sakura.yaml index 60b9eb7b..3ea3df28 100644 --- a/themes/sakura.yaml +++ b/themes/sakura.yaml @@ -1,50 +1,52 @@ -name: "Sakura" +name: "sakura" source: - marketplace_id: "Kyanoxia.kcon-sakura" - version: "0.0.1" - installs: 103 - author: "Kyanoxia" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Kyanoxia.kcon-sakura" + marketplace_id: "Volskaya.irrelevant" + version: "0.0.2" + installs: 33 + rating: 0 + ratings: 0 + author: "Volskaya" + repo: "https://github.com/volskaya/irrelevant" + url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" colors: - bg: "#19181F" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#196AC2" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#1C1C1C" + red: "#75FA9D" + green: "#FB76C1" + yellow: "#B3FA75" + blue: "#878787" + magenta: "#979797" + cyan: "#A6A6A6" + white: "#444444" brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" + brightRed: "#B3FA75" + brightGreen: "#FB76C1" + brightYellow: "#DDDDDD" + brightBlue: "#878787" + brightMagenta: "#979797" + brightCyan: "#A6A6A6" + brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "pink" - hue: 292 + accent: "red" + hue: null pair: null contrast: - fg: 79.3 + fg: 106.3 black: 0 - red: 26.5 - green: 52.8 - yellow: 85.4 - blue: 24.1 - magenta: 29.6 - cyan: 47.4 - white: 89.8 - brightBlack: 21.8 - brightRed: 38.4 - brightGreen: 63.3 - brightYellow: 95.4 - brightBlue: 39.8 - brightMagenta: 45.2 - brightCyan: 55.2 - brightWhite: 89.8 + red: 86.7 + green: 52.2 + yellow: 90.3 + blue: 36.6 + magenta: 44.6 + cyan: 52.5 + white: 8.3 + brightBlack: 21.5 + brightRed: 90.3 + brightGreen: 52.2 + brightYellow: 84.4 + brightBlue: 36.6 + brightMagenta: 44.6 + brightCyan: 52.5 + brightWhite: 106.3 diff --git a/themes/sakya-dorje.yaml b/themes/sakya-dorje.yaml index 7ad6be89..8ec0a1b6 100644 --- a/themes/sakya-dorje.yaml +++ b/themes/sakya-dorje.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mouselee.sakya-theme" version: "0.2.0" installs: 19 + rating: 5 + ratings: 1 author: "mouselee" repo: "https://github.com/XuanLee-HEALER/sakya-theme" url: "https://marketplace.visualstudio.com/items?itemName=mouselee.sakya-theme" diff --git a/themes/samacaca.yaml b/themes/samacaca.yaml index bb33ca40..908caff8 100644 --- a/themes/samacaca.yaml +++ b/themes/samacaca.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "josymarss.samacaca" version: "1.1.0" installs: 168 + rating: 5 + ratings: 1 author: "josymarss" repo: "https://github.com/josymarss/samacaca" url: "https://marketplace.visualstudio.com/items?itemName=josymarss.samacaca" diff --git a/themes/samgido-theme-dark.yaml b/themes/samgido-theme-dark.yaml index e7aecd9a..a3e026a9 100644 --- a/themes/samgido-theme-dark.yaml +++ b/themes/samgido-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samuelgido.samgido-theme" version: "2.0.2" installs: 17 + rating: 0 + ratings: 0 author: "Samuel Gido" repo: null url: "https://marketplace.visualstudio.com/items?itemName=samuelgido.samgido-theme" diff --git a/themes/samito-nest-graphql-theme.yaml b/themes/samito-nest-graphql-theme.yaml index 19b2bda3..c948e9c3 100644 --- a/themes/samito-nest-graphql-theme.yaml +++ b/themes/samito-nest-graphql-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samito-themes.samito-nest-graphql-theme-vscode" version: "0.0.1" installs: 182 + rating: 0 + ratings: 0 author: "samito-themes" repo: "https://github.com/SamitoX4/samito-nest-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=samito-themes.samito-nest-graphql-theme-vscode" diff --git a/themes/samito-nest-theme.yaml b/themes/samito-nest-theme.yaml index 968e13ca..6ab98986 100644 --- a/themes/samito-nest-theme.yaml +++ b/themes/samito-nest-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samito-themes.samito-nest-theme-vscode" version: "0.0.1" installs: 1790 + rating: 0 + ratings: 0 author: "samito-themes" repo: "https://github.com/SamitoX4/samito-nest-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=samito-themes.samito-nest-theme-vscode" diff --git a/themes/samito-next-theme.yaml b/themes/samito-next-theme.yaml new file mode 100644 index 00000000..63091232 --- /dev/null +++ b/themes/samito-next-theme.yaml @@ -0,0 +1,52 @@ +name: "Samito Next Theme" +source: + marketplace_id: "samito-themes.samito-next-theme-vscode" + version: "0.0.1" + installs: 149 + rating: 0 + ratings: 0 + author: "samito-themes" + repo: "https://github.com/SamitoX4/samito-nest-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=samito-themes.samito-next-theme-vscode" +colors: + bg: "#080808" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.8 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 107.8 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/samurai.yaml b/themes/samurai.yaml index 9f351422..d6bbdd7f 100644 --- a/themes/samurai.yaml +++ b/themes/samurai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ParsaSam.samurai" version: "0.5.3" installs: 2180 + rating: 5 + ratings: 3 author: "Parsa Samadnejad" repo: "https://github.com/TroddenSpade/Samurai-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ParsaSam.samurai" diff --git a/themes/samyak-bumb.yaml b/themes/samyak-bumb.yaml index d1395d00..9071aff3 100644 --- a/themes/samyak-bumb.yaml +++ b/themes/samyak-bumb.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SamyakBumb.samyak" version: "10.2.2" installs: 3777 + rating: 5 + ratings: 2 author: "Samyak Bumb" repo: "https://github.com/Samyak-Bumb/Samyak-Bumb-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SamyakBumb.samyak" diff --git a/themes/sanam-dark-pro.yaml b/themes/sanam-dark-pro.yaml index c82c7307..64dcc4a7 100644 --- a/themes/sanam-dark-pro.yaml +++ b/themes/sanam-dark-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sanam.sanam-dark-pro" version: "0.0.4" installs: 263 + rating: 5 + ratings: 1 author: "Sanam Pakuwal" repo: "https://github.com/sanamhub/sanam-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=sanam.sanam-dark-pro" diff --git a/themes/sandcastle.yaml b/themes/sandcastle.yaml index b2ec479c..896465c0 100644 --- a/themes/sandcastle.yaml +++ b/themes/sandcastle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ryanolsonx.sandcastle" version: "0.1.0" installs: 846 + rating: 0 + ratings: 0 author: "Ryan Olson" repo: "https://github.com/ryanolsonx/vscode-sandcastle-theme" url: "https://marketplace.visualstudio.com/items?itemName=ryanolsonx.sandcastle" diff --git a/themes/sanded.yaml b/themes/sanded.yaml index 3344941d..d7487be0 100644 --- a/themes/sanded.yaml +++ b/themes/sanded.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PaulBoelens.sanded" version: "0.0.1" installs: 314 + rating: 0 + ratings: 0 author: "Paul Boelens" repo: "https://dev.azure.com/zerorain/_git/sanded" url: "https://marketplace.visualstudio.com/items?itemName=PaulBoelens.sanded" diff --git a/themes/sandstorm.yaml b/themes/sandstorm.yaml index 4e3013b2..e1a842c8 100644 --- a/themes/sandstorm.yaml +++ b/themes/sandstorm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "parano.theme-sandstorm" version: "0.3.8" installs: 429 + rating: 5 + ratings: 1 author: "parano" repo: "https://github.com/parsa-ra/SandStorm-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=parano.theme-sandstorm" diff --git a/themes/sanemi-shinazugawa.yaml b/themes/sanemi-shinazugawa.yaml index 07a976b4..6c495927 100644 --- a/themes/sanemi-shinazugawa.yaml +++ b/themes/sanemi-shinazugawa.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devLocifer.hashira-code-theme" version: "0.0.1" installs: 739 + rating: 5 + ratings: 1 author: "devLocifer" repo: "https://github.com/diazdjul19/hashira-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" diff --git a/themes/sanrio.yaml b/themes/sanrio.yaml index f0131a72..14c0e16f 100644 --- a/themes/sanrio.yaml +++ b/themes/sanrio.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dango.cinnamoroll-dark-theme" version: "1.1.1" installs: 652 + rating: 5 + ratings: 1 author: "Daniel Radosa" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dango.cinnamoroll-dark-theme" diff --git a/themes/sapporo.yaml b/themes/sapporo.yaml index c79988c8..ed77a0d5 100644 --- a/themes/sapporo.yaml +++ b/themes/sapporo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Feefoolec.sapporo" version: "0.0.1" installs: 50 + rating: 0 + ratings: 0 author: "Feefoolec" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Feefoolec.sapporo" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "magenta" hue: null + pair: null contrast: fg: 56.8 black: 10.1 diff --git a/themes/saransk-night.yaml b/themes/saransk-night.yaml index 05f752f5..9612ecf5 100644 --- a/themes/saransk-night.yaml +++ b/themes/saransk-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AleksanderSavushkin.saransk-night" version: "0.0.4" installs: 85 + rating: 5 + ratings: 1 author: "Aleksander Savushkin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AleksanderSavushkin.saransk-night" diff --git a/themes/saraswati-cool-light-theme.yaml b/themes/saraswati-cool-light-theme.yaml index b2be95f7..1a356e79 100644 --- a/themes/saraswati-cool-light-theme.yaml +++ b/themes/saraswati-cool-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BhootStudio.bhoot-theme" version: "1.0.4" installs: 78 + rating: 0 + ratings: 0 author: "Bhoot Studio" repo: "https://github.com/DebkantaMondal/Bhoot-VS-Theme" url: "https://marketplace.visualstudio.com/items?itemName=BhootStudio.bhoot-theme" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 102.2 black: 101.9 diff --git a/themes/sarcastic-white.yaml b/themes/sarcastic-white.yaml index 997578a6..73afa4cb 100644 --- a/themes/sarcastic-white.yaml +++ b/themes/sarcastic-white.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TristanWhite.sarcastic-white" version: "1.0.7" installs: 1311 + rating: 5 + ratings: 3 author: "Tristan White" repo: "https://github.com/triss90/sarcastic_white" url: "https://marketplace.visualstudio.com/items?itemName=TristanWhite.sarcastic-white" diff --git a/themes/sargam.yaml b/themes/sargam.yaml index 5085e370..aa9b33f1 100644 --- a/themes/sargam.yaml +++ b/themes/sargam.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sargam.sargam" version: "0.1.2" installs: 75 + rating: 0 + ratings: 0 author: "sargam" repo: "https://github.com/SargamDesign/sargam-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sargam.sargam" diff --git a/themes/satoru-gojo-blue.yaml b/themes/satoru-gojo-blue.yaml index 306fae59..bc43fb33 100644 --- a/themes/satoru-gojo-blue.yaml +++ b/themes/satoru-gojo-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dev-alm.satoru-gojo-theme" version: "0.1.8" installs: 1317 + rating: 0 + ratings: 0 author: "Gustavo Cezar de Almeida" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dev-alm.satoru-gojo-theme" diff --git a/themes/satoru-gojo-white.yaml b/themes/satoru-gojo-white.yaml index e4440b23..56477ae0 100644 --- a/themes/satoru-gojo-white.yaml +++ b/themes/satoru-gojo-white.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dev-alm.satoru-gojo-theme" version: "0.1.8" installs: 1317 + rating: 0 + ratings: 0 author: "Gustavo Cezar de Almeida" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dev-alm.satoru-gojo-theme" diff --git a/themes/satoshi-nakamoto-theme.yaml b/themes/satoshi-nakamoto-theme.yaml index 36316207..8b8d70c3 100644 --- a/themes/satoshi-nakamoto-theme.yaml +++ b/themes/satoshi-nakamoto-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Michael-Macaulay.satoshi-nakamoto-theme" version: "1.3.0" installs: 1557 + rating: 0 + ratings: 0 author: "Michael Macaulay" repo: "https://github.com/MichaelMacaulay/Satoshi-Nakamoto_Theme" url: "https://marketplace.visualstudio.com/items?itemName=Michael-Macaulay.satoshi-nakamoto-theme" diff --git a/themes/satsoomahhh.yaml b/themes/satsoomahhh.yaml index 92567637..7a49bd35 100644 --- a/themes/satsoomahhh.yaml +++ b/themes/satsoomahhh.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "booleohhh.satsoomahhh-theme" version: "0.0.3" installs: 87 + rating: 0 + ratings: 0 author: "booleohhh" repo: null url: "https://marketplace.visualstudio.com/items?itemName=booleohhh.satsoomahhh-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 58 black: 0 diff --git a/themes/satu.yaml b/themes/satu.yaml index 33b6a457..9347a738 100644 --- a/themes/satu.yaml +++ b/themes/satu.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Docutheme.docutheme" version: "0.0.2" installs: 62 + rating: 0 + ratings: 0 author: "Docutheme" repo: "https://github.com/feanra/docutheme" url: "https://marketplace.visualstudio.com/items?itemName=Docutheme.docutheme" diff --git a/themes/saturated-dark-terminal.yaml b/themes/saturated-dark-terminal.yaml index 917ed49e..c9c20bab 100644 --- a/themes/saturated-dark-terminal.yaml +++ b/themes/saturated-dark-terminal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Pukima.sd-terminal" version: "0.0.3" installs: 1247 + rating: 5 + ratings: 1 author: "Pukima" repo: "https://github.com/Pukimaa/SDTerminal-vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=Pukima.sd-terminal" diff --git a/themes/saturn-moonlight.yaml b/themes/saturn-moonlight.yaml index 1c07f154..4b7e2543 100644 --- a/themes/saturn-moonlight.yaml +++ b/themes/saturn-moonlight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ArturSponchiado.saturnmoonlight" version: "0.0.2" installs: 3889 + rating: 5 + ratings: 1 author: "Artur Sponchiado" repo: "https://github.com/arturspon/SaturnMoonlight" url: "https://marketplace.visualstudio.com/items?itemName=ArturSponchiado.saturnmoonlight" diff --git a/themes/sauna-theme.yaml b/themes/sauna-theme.yaml index 3b76f3f7..45b173fa 100644 --- a/themes/sauna-theme.yaml +++ b/themes/sauna-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sauna.sauna-theme" version: "0.0.3" installs: 975 + rating: 3 + ratings: 2 author: "sauna" repo: "https://github.com/wearesauna/theme" url: "https://marketplace.visualstudio.com/items?itemName=sauna.sauna-theme" diff --git a/themes/saunf.yaml b/themes/saunf.yaml index ff479cc5..f226edf7 100644 --- a/themes/saunf.yaml +++ b/themes/saunf.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hnrchrdl.saunf-theme-vscode" version: "0.1.2" installs: 2687 + rating: 0 + ratings: 0 author: "hnrchrdl" repo: "https://github.com/hnrchrdl/saunf-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=hnrchrdl.saunf-theme-vscode" diff --git a/themes/sauve.yaml b/themes/sauve.yaml index 4f6da720..fc2d4333 100644 --- a/themes/sauve.yaml +++ b/themes/sauve.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chris-pikul.suave" version: "0.0.1" installs: 66 + rating: 0 + ratings: 0 author: "Chris Pikul" repo: "https://github.com/chris-pikul/vscode-suave" url: "https://marketplace.visualstudio.com/items?itemName=chris-pikul.suave" diff --git a/themes/savannah-dawn.yaml b/themes/savannah-dawn.yaml index db7eac10..659e49cc 100644 --- a/themes/savannah-dawn.yaml +++ b/themes/savannah-dawn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TanakaChinengundu.savannah-code" version: "1.0.0" installs: 7 + rating: 0 + ratings: 0 author: "Tanaka Chinengundu" repo: "https://github.com/taqsblaze/savannah-code" url: "https://marketplace.visualstudio.com/items?itemName=TanakaChinengundu.savannah-code" diff --git a/themes/savannah-sunset.yaml b/themes/savannah-sunset.yaml index fa8a9e52..c4dc3a3c 100644 --- a/themes/savannah-sunset.yaml +++ b/themes/savannah-sunset.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TanakaChinengundu.savannah-code" version: "1.0.0" installs: 7 + rating: 0 + ratings: 0 author: "Tanaka Chinengundu" repo: "https://github.com/taqsblaze/savannah-code" url: "https://marketplace.visualstudio.com/items?itemName=TanakaChinengundu.savannah-code" diff --git a/themes/save-my-eyes.yaml b/themes/save-my-eyes.yaml index 736d8ae1..337aa5ef 100644 --- a/themes/save-my-eyes.yaml +++ b/themes/save-my-eyes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZaphodAndo.save-my-eyes" version: "1.0.4" installs: 1766 + rating: 5 + ratings: 1 author: "ZaphodAndo" repo: "https://github.com/ZaphodAndo/save-my-eyes" url: "https://marketplace.visualstudio.com/items?itemName=ZaphodAndo.save-my-eyes" diff --git a/themes/savetemin.yaml b/themes/savetemin.yaml index bf8f6de8..5015afd3 100644 --- a/themes/savetemin.yaml +++ b/themes/savetemin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ulisesbasualdo.savetemin" version: "0.1.12" installs: 23 + rating: 0 + ratings: 0 author: "Ulises Basualdo" repo: "https://github.com/ulisesbasualdo/savetemin" url: "https://marketplace.visualstudio.com/items?itemName=ulisesbasualdo.savetemin" diff --git a/themes/sazardev.yaml b/themes/sazardev.yaml index 247c4c12..b7995503 100644 --- a/themes/sazardev.yaml +++ b/themes/sazardev.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sazardev.carbon-code-theme" version: "1.2.0" installs: 903 + rating: 5 + ratings: 1 author: "sazardev" repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" diff --git a/themes/scarlet-witch-dark.yaml b/themes/scarlet-witch-dark.yaml new file mode 100644 index 00000000..89cd3f99 --- /dev/null +++ b/themes/scarlet-witch-dark.yaml @@ -0,0 +1,52 @@ +name: "Scarlet Witch (Dark)" +source: + marketplace_id: "BoBenc.scarlet-witch-theme" + version: "0.0.9" + installs: 118 + rating: 0 + ratings: 0 + author: "BoBenc" + repo: "https://github.com/BoBenc/Scarlet-Witch-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=BoBenc.scarlet-witch-theme" +colors: + bg: "#120414" + fg: "#F5E6D3" + black: "#120414" + red: "#D91A4F" + green: "#6A0DAD" + yellow: "#FFB347" + blue: "#E6547A" + magenta: "#B8860B" + cyan: "#6A0DAD" + white: "#F5E6D3" + brightBlack: "#120414" + brightRed: "#D91A4F" + brightGreen: "#6A0DAD" + brightYellow: "#FFB347" + brightBlue: "#E6547A" + brightMagenta: "#B8860B" + brightCyan: "#6A0DAD" + brightWhite: "#F5E6D3" +meta: + mode: "dark" + accent: "red" + hue: 323 + pair: null + contrast: + fg: 92.8 + black: 0 + red: 29.1 + green: 12.5 + yellow: 69.9 + blue: 39.3 + magenta: 41.9 + cyan: 12.5 + white: 92.8 + brightBlack: 0 + brightRed: 29.1 + brightGreen: 12.5 + brightYellow: 69.9 + brightBlue: 39.3 + brightMagenta: 41.9 + brightCyan: 12.5 + brightWhite: 92.8 diff --git a/themes/scarlet-witch-light.yaml b/themes/scarlet-witch-light.yaml new file mode 100644 index 00000000..9297246e --- /dev/null +++ b/themes/scarlet-witch-light.yaml @@ -0,0 +1,52 @@ +name: "Scarlet Witch (Light)" +source: + marketplace_id: "BoBenc.scarlet-witch-theme" + version: "0.0.9" + installs: 118 + rating: 0 + ratings: 0 + author: "BoBenc" + repo: "https://github.com/BoBenc/Scarlet-Witch-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=BoBenc.scarlet-witch-theme" +colors: + bg: "#FAF5FB" + fg: "#1A0C15" + black: "#1A0C15" + red: "#D91A4F" + green: "#6A0DAD" + yellow: "#C67C1B" + blue: "#A5003D" + magenta: "#8B6914" + cyan: "#6A0DAD" + white: "#FAF5FB" + brightBlack: "#1A0C15" + brightRed: "#D91A4F" + brightGreen: "#6A0DAD" + brightYellow: "#C67C1B" + brightBlue: "#A5003D" + brightMagenta: "#8B6914" + brightCyan: "#6A0DAD" + brightWhite: "#FAF5FB" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 100.3 + black: 100.3 + red: 67.3 + green: 84.4 + yellow: 55.3 + blue: 79.8 + magenta: 69.9 + cyan: 84.4 + white: 0 + brightBlack: 100.3 + brightRed: 67.3 + brightGreen: 84.4 + brightYellow: 55.3 + brightBlue: 79.8 + brightMagenta: 69.9 + brightCyan: 84.4 + brightWhite: 0 diff --git a/themes/scarlet.yaml b/themes/scarlet.yaml index b8d33bdb..b19f2cd3 100644 --- a/themes/scarlet.yaml +++ b/themes/scarlet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ethylia.scarlet-theme" version: "0.5.4" installs: 476 + rating: 5 + ratings: 1 author: "Ethylia" repo: "https://github.com/Ethylia/vscode-scarlet-theme" url: "https://marketplace.visualstudio.com/items?itemName=Ethylia.scarlet-theme" diff --git a/themes/sceanic-dark-gray.yaml b/themes/sceanic-dark-gray.yaml index d9f17d2b..3a6a5866 100644 --- a/themes/sceanic-dark-gray.yaml +++ b/themes/sceanic-dark-gray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TobiasTimm.sceanic" version: "1.1.1" installs: 1335 + rating: 0 + ratings: 0 author: "Tobias Timm" repo: "https://github.com/tobiastimm/sceanic" url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.sceanic" diff --git a/themes/sceanic-gray.yaml b/themes/sceanic-gray.yaml index 557ec124..3ca8d456 100644 --- a/themes/sceanic-gray.yaml +++ b/themes/sceanic-gray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TobiasTimm.sceanic" version: "1.1.1" installs: 1335 + rating: 0 + ratings: 0 author: "Tobias Timm" repo: "https://github.com/tobiastimm/sceanic" url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.sceanic" diff --git a/themes/sceanic.yaml b/themes/sceanic.yaml index dccd87a5..a7451ae2 100644 --- a/themes/sceanic.yaml +++ b/themes/sceanic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TobiasTimm.sceanic" version: "1.1.1" installs: 1335 + rating: 0 + ratings: 0 author: "Tobias Timm" repo: "https://github.com/tobiastimm/sceanic" url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.sceanic" diff --git a/themes/schoero-dark.yaml b/themes/schoero-dark.yaml index 3fa90751..bb907d0d 100644 --- a/themes/schoero-dark.yaml +++ b/themes/schoero-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "schoero.schoero-dark" version: "0.4.9" installs: 268 + rating: 0 + ratings: 0 author: "schoero" repo: "https://github.com/schoero/schoero-dark" url: "https://marketplace.visualstudio.com/items?itemName=schoero.schoero-dark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 264 + pair: null contrast: fg: 58.6 black: 0 diff --git a/themes/schooltheme.yaml b/themes/schooltheme.yaml index fd34451c..7bbb9496 100644 --- a/themes/schooltheme.yaml +++ b/themes/schooltheme.yaml @@ -1,11 +1,13 @@ name: "SchoolTheme" source: - marketplace_id: "SchoolTheme.SchoolTheme" - version: "0.0.2" - installs: 39 - author: "SchoolTheme" + marketplace_id: "BasicTheme.basictheme" + version: "0.0.1" + installs: 19 + rating: 0 + ratings: 0 + author: "BasicTheme" repo: "https://github.com/joaov-fer/basictheme" - url: "https://marketplace.visualstudio.com/items?itemName=SchoolTheme.SchoolTheme" + url: "https://marketplace.visualstudio.com/items?itemName=BasicTheme.basictheme" colors: bg: "#2C2525" fg: "#D4D4D4" diff --git a/themes/schwifty-atom-one-dark.yaml b/themes/schwifty-atom-one-dark.yaml index 6c89a1eb..0a5be9a0 100644 --- a/themes/schwifty-atom-one-dark.yaml +++ b/themes/schwifty-atom-one-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "decrypteddesign.Schwifty" version: "1.5.0" installs: 2933 + rating: 5 + ratings: 2 author: "decrypteddesign" repo: "https://github.com/mcqua007/schwifty" url: "https://marketplace.visualstudio.com/items?itemName=decrypteddesign.Schwifty" diff --git a/themes/schwifty-one-dark.yaml b/themes/schwifty-one-dark.yaml new file mode 100644 index 00000000..d7ed0644 --- /dev/null +++ b/themes/schwifty-one-dark.yaml @@ -0,0 +1,52 @@ +name: "Schwifty One Dark" +source: + marketplace_id: "decrypteddesign.Schwifty" + version: "1.5.0" + installs: 2933 + rating: 5 + ratings: 2 + author: "decrypteddesign" + repo: "https://github.com/mcqua007/schwifty" + url: "https://marketplace.visualstudio.com/items?itemName=decrypteddesign.Schwifty" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#3F4451" + red: "#F86AA3" + green: "#2EC4B6" + yellow: "#E5C07B" + blue: "#56CBF9" + magenta: "#9BA2FF" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#F73B87" + brightGreen: "#37E6D5" + brightYellow: "#F9A571" + brightBlue: "#79D7FC" + brightMagenta: "#B1B6FC" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "red" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 44.9 + green: 55.8 + yellow: 67.4 + blue: 63.6 + magenta: 52 + cyan: 49.3 + white: 87.4 + brightBlack: 12.3 + brightRed: 36 + brightGreen: 73.6 + brightYellow: 60.4 + brightBlue: 71 + brightMagenta: 61.7 + brightCyan: 64.6 + brightWhite: 79.8 diff --git a/themes/schwifty.yaml b/themes/schwifty.yaml index 46f1c8e1..7d19eabe 100644 --- a/themes/schwifty.yaml +++ b/themes/schwifty.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SimchaWood.schwifty" version: "1.4.1" installs: 448 + rating: 5 + ratings: 2 author: "Simcha York" repo: "https://github.com/SimchaYork/schwifty" url: "https://marketplace.visualstudio.com/items?itemName=SimchaWood.schwifty" diff --git a/themes/scooby-dooby-dark.yaml b/themes/scooby-dooby-dark.yaml index ab35b737..f184e0a8 100644 --- a/themes/scooby-dooby-dark.yaml +++ b/themes/scooby-dooby-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CristinaGenduso.scooby-dooby-dark" version: "1.0.0" installs: 100 + rating: 5 + ratings: 1 author: "Cristina Genduso" repo: "https://github.com/cristinagenduso/scooby-dooby-dark" url: "https://marketplace.visualstudio.com/items?itemName=CristinaGenduso.scooby-dooby-dark" diff --git a/themes/scorch-contrast.yaml b/themes/scorch-contrast.yaml index 03bd03ee..81debce7 100644 --- a/themes/scorch-contrast.yaml +++ b/themes/scorch-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/scorch-light.yaml b/themes/scorch-light.yaml index 615d7afb..624928f7 100644 --- a/themes/scorch-light.yaml +++ b/themes/scorch-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/scorch.yaml b/themes/scorch.yaml index 873feef6..b52fe64b 100644 --- a/themes/scorch.yaml +++ b/themes/scorch.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/scorpion-theme.yaml b/themes/scorpion-theme.yaml index 448ebff9..c5ec0cf8 100644 --- a/themes/scorpion-theme.yaml +++ b/themes/scorpion-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TudorAlexandru.scorpion" version: "1.0.6" installs: 2417 + rating: 5 + ratings: 2 author: "Tudor Alexandru" repo: "https://github.com/tudorale/scorpion-theme" url: "https://marketplace.visualstudio.com/items?itemName=TudorAlexandru.scorpion" diff --git a/themes/scuba.yaml b/themes/scuba.yaml index 1418d590..86682999 100644 --- a/themes/scuba.yaml +++ b/themes/scuba.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AsqrB.scuba" version: "1.1.1" installs: 172 + rating: 5 + ratings: 2 author: "AsqrB" repo: "https://github.com/AsqrB/ScubaTheme" url: "https://marketplace.visualstudio.com/items?itemName=AsqrB.scuba" diff --git a/themes/sea-glass.yaml b/themes/sea-glass.yaml index f60febf8..9baed78c 100644 --- a/themes/sea-glass.yaml +++ b/themes/sea-glass.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KyleStewart.sea-glass-color-theme" version: "0.4.0" installs: 4862 + rating: 5 + ratings: 1 author: "Kyle Stewart" repo: "https://github.com/KStew1017/sea-glass-vscode-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=KyleStewart.sea-glass-color-theme" diff --git a/themes/sea-urchin.yaml b/themes/sea-urchin.yaml index ac6948ef..dee4cdc9 100644 --- a/themes/sea-urchin.yaml +++ b/themes/sea-urchin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anemones.anemone-colors" version: "0.0.2" installs: 378 + rating: 0 + ratings: 0 author: "anemones" repo: "https://github.com/radio-alice/anemone-colors" url: "https://marketplace.visualstudio.com/items?itemName=anemones.anemone-colors" diff --git a/themes/seabrook-dark-italic.yaml b/themes/seabrook-dark-italic.yaml index 27a5a1f0..42de9681 100644 --- a/themes/seabrook-dark-italic.yaml +++ b/themes/seabrook-dark-italic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sortbyfirstname.seabrook" version: "0.0.5" installs: 393 + rating: 0 + ratings: 0 author: "sortbyfirstname" repo: "https://github.com/sortbyfirstname/seabrook-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sortbyfirstname.seabrook" diff --git a/themes/seabrook-light-italic.yaml b/themes/seabrook-light-italic.yaml index 14cd990a..21aaf1ee 100644 --- a/themes/seabrook-light-italic.yaml +++ b/themes/seabrook-light-italic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sortbyfirstname.seabrook" version: "0.0.5" installs: 393 + rating: 0 + ratings: 0 author: "sortbyfirstname" repo: "https://github.com/sortbyfirstname/seabrook-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sortbyfirstname.seabrook" diff --git a/themes/seaci-base.yaml b/themes/seaci-base.yaml new file mode 100644 index 00000000..4ee1eb40 --- /dev/null +++ b/themes/seaci-base.yaml @@ -0,0 +1,52 @@ +name: "Seaci Base" +source: + marketplace_id: "seaci.seaci-theme" + version: "1.0.1" + installs: 183 + rating: 5 + ratings: 3 + author: "seaci" + repo: "https://github.com/LeonCry/seaci-theme" + url: "https://marketplace.visualstudio.com/items?itemName=seaci.seaci-theme" +colors: + bg: "#262626" + fg: "#DDDDDD" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.9 + black: 0 + red: 42.7 + green: 50.2 + yellow: 71.8 + blue: 42.9 + magenta: 45.4 + cyan: 54.3 + white: 82.9 + brightBlack: 20 + brightRed: 50.6 + brightGreen: 58.8 + brightYellow: 81.4 + brightBlue: 51.2 + brightMagenta: 53.9 + brightCyan: 63.1 + brightWhite: 98.9 diff --git a/themes/seaci-dark.yaml b/themes/seaci-dark.yaml new file mode 100644 index 00000000..855e7638 --- /dev/null +++ b/themes/seaci-dark.yaml @@ -0,0 +1,52 @@ +name: "Seaci Dark" +source: + marketplace_id: "seaci.seaci-theme" + version: "1.0.1" + installs: 183 + rating: 5 + ratings: 3 + author: "seaci" + repo: "https://github.com/LeonCry/seaci-theme" + url: "https://marketplace.visualstudio.com/items?itemName=seaci.seaci-theme" +colors: + bg: "#181818" + fg: "#DDDDDD" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 84.9 + black: 0 + red: 44.7 + green: 52.2 + yellow: 73.8 + blue: 44.8 + magenta: 47.4 + cyan: 56.3 + white: 84.9 + brightBlack: 21.9 + brightRed: 52.6 + brightGreen: 60.8 + brightYellow: 83.4 + brightBlue: 53.1 + brightMagenta: 55.9 + brightCyan: 65.1 + brightWhite: 100.8 diff --git a/themes/seafarer.yaml b/themes/seafarer.yaml index 103812ab..054e9250 100644 --- a/themes/seafarer.yaml +++ b/themes/seafarer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lostVkng.seafarer-vscode" version: "0.0.4" installs: 355 + rating: 0 + ratings: 0 author: "TomJones" repo: "https://gitlab.com/lostVkng/seafarer-theme" url: "https://marketplace.visualstudio.com/items?itemName=lostVkng.seafarer-vscode" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 267 + pair: null contrast: fg: 77.4 black: 0 diff --git a/themes/seafoam.yaml b/themes/seafoam.yaml index 9592f54f..e86f1034 100644 --- a/themes/seafoam.yaml +++ b/themes/seafoam.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ScottishPuffin.theme-sf" version: "1.2.5" installs: 134 + rating: 0 + ratings: 0 author: "ScottishPuffin" repo: "https://github.com/WeeScottishPuffin/Seafoam" url: "https://marketplace.visualstudio.com/items?itemName=ScottishPuffin.theme-sf" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "magenta" hue: 201 + pair: null contrast: fg: 86.5 black: 27.1 diff --git a/themes/seagull.yaml b/themes/seagull.yaml index ff78d34d..21ab411b 100644 --- a/themes/seagull.yaml +++ b/themes/seagull.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bbrakenhoff.seabird" version: "0.0.4" installs: 754 + rating: 4.5 + ratings: 2 author: "bbrakenhoff" repo: "https://github.com/bbrakenhoff/seabird-vscode" url: "https://marketplace.visualstudio.com/items?itemName=bbrakenhoff.seabird" diff --git a/themes/sebostien-theme.yaml b/themes/sebostien-theme.yaml new file mode 100644 index 00000000..b57ca994 --- /dev/null +++ b/themes/sebostien-theme.yaml @@ -0,0 +1,50 @@ +name: "Sebostien Theme" +source: + marketplace_id: "sebostien.sebostien-theme" + version: "0.1.1" + installs: 144 + author: "sebostien" + repo: "https://github.com/sebostien/sebostien-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sebostien.sebostien-theme" +colors: + bg: "#1A1A1A" + fg: "#D6DEEB" + black: "#232323" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFC107" + blue: "#2196E3" + magenta: "#B645CA" + cyan: "#00BCD4" + white: "#DCDFE4" + brightBlack: "#757575" + brightRed: "#FF5252" + brightGreen: "#B2FF59" + brightYellow: "#FBC02D" + brightBlue: "#03A9F4" + brightMagenta: "#EA80FC" + brightCyan: "#00BCD4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 84.9 + black: 0 + red: 37.4 + green: 47.2 + yellow: 73.8 + blue: 41.6 + magenta: 30.1 + cyan: 56.2 + white: 85.8 + brightBlack: 28.3 + brightRed: 42.5 + brightGreen: 92.6 + brightYellow: 72.8 + brightBlue: 50 + brightMagenta: 55.1 + brightCyan: 56.2 + brightWhite: 106.5 diff --git a/themes/secret-spring.yaml b/themes/secret-spring.yaml index e8992936..2acd5285 100644 --- a/themes/secret-spring.yaml +++ b/themes/secret-spring.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wildtype.secretspring" version: "0.0.5" installs: 65 + rating: 0 + ratings: 0 author: "wildtype" repo: "https://github.com/wtype/secretspring" url: "https://marketplace.visualstudio.com/items?itemName=wildtype.secretspring" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "teal" hue: 262 + pair: null contrast: fg: 89.3 black: 0 diff --git a/themes/section-9-hacker.yaml b/themes/section-9-hacker.yaml new file mode 100644 index 00000000..c56a8e69 --- /dev/null +++ b/themes/section-9-hacker.yaml @@ -0,0 +1,52 @@ +name: "Section 9 - Hacker" +source: + marketplace_id: "y4m3.section9-theme" + version: "0.0.1" + installs: 61 + rating: 0 + ratings: 0 + author: "y4m3" + repo: "https://github.com/y4m3/vscode-section9-theme" + url: "https://marketplace.visualstudio.com/items?itemName=y4m3.section9-theme" +colors: + bg: "#081208" + fg: "#7CDC87" + black: "#061006" + red: "#AA3333" + green: "#40BB40" + yellow: "#AAAA30" + blue: "#609CAD" + magenta: "#A070C0" + cyan: "#40B5B5" + white: "#AACCAA" + brightBlack: "#507050" + brightRed: "#CC5555" + brightGreen: "#70BB70" + brightYellow: "#C0C030" + brightBlue: "#80B0D0" + brightMagenta: "#B090D0" + brightCyan: "#60C0C0" + brightWhite: "#C0D0C0" +meta: + mode: "dark" + accent: "green" + hue: 144 + pair: null + contrast: + fg: 72.6 + black: 0 + red: 20.3 + green: 52.9 + yellow: 53.1 + blue: 43.9 + magenta: 36.2 + cyan: 53.3 + white: 70 + brightBlack: 23.6 + brightRed: 32.9 + brightGreen: 55.9 + brightYellow: 64.9 + brightBlue: 55.9 + brightMagenta: 48.9 + brightCyan: 59.9 + brightWhite: 75 diff --git a/themes/section-9-major.yaml b/themes/section-9-major.yaml new file mode 100644 index 00000000..523cf998 --- /dev/null +++ b/themes/section-9-major.yaml @@ -0,0 +1,52 @@ +name: "Section 9 - Major" +source: + marketplace_id: "y4m3.section9-theme" + version: "0.0.1" + installs: 61 + rating: 0 + ratings: 0 + author: "y4m3" + repo: "https://github.com/y4m3/vscode-section9-theme" + url: "https://marketplace.visualstudio.com/items?itemName=y4m3.section9-theme" +colors: + bg: "#15121A" + fg: "#C5C8C6" + black: "#0D0B10" + red: "#D84040" + green: "#70C0E0" + yellow: "#D0B0A0" + blue: "#80A0D0" + magenta: "#C090F0" + cyan: "#90B0B0" + white: "#C5C8C6" + brightBlack: "#807C88" + brightRed: "#F06060" + brightGreen: "#A0E0F0" + brightYellow: "#E8C8B8" + brightBlue: "#A0C0E8" + brightMagenta: "#D8B8F8" + brightCyan: "#B0D0D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 302 + pair: null + contrast: + fg: 72.2 + black: 0 + red: 31.4 + green: 62.1 + yellow: 62.5 + blue: 49.3 + magenta: 52.8 + cyan: 55.5 + white: 72.2 + brightBlack: 33 + brightRed: 42.6 + brightGreen: 81 + brightYellow: 76.4 + brightBlue: 66.4 + brightMagenta: 70.7 + brightCyan: 73.7 + brightWhite: 107.2 diff --git a/themes/section-9-ranger.yaml b/themes/section-9-ranger.yaml new file mode 100644 index 00000000..215696c2 --- /dev/null +++ b/themes/section-9-ranger.yaml @@ -0,0 +1,52 @@ +name: "Section 9 - Ranger" +source: + marketplace_id: "y4m3.section9-theme" + version: "0.0.1" + installs: 61 + rating: 0 + ratings: 0 + author: "y4m3" + repo: "https://github.com/y4m3/vscode-section9-theme" + url: "https://marketplace.visualstudio.com/items?itemName=y4m3.section9-theme" +colors: + bg: "#20241C" + fg: "#D0D0C8" + black: "#121410" + red: "#C06040" + green: "#A8C090" + yellow: "#C89070" + blue: "#8090C0" + magenta: "#A080A0" + cyan: "#80A0A0" + white: "#C8C8C8" + brightBlack: "#808078" + brightRed: "#D88060" + brightGreen: "#C0C098" + brightYellow: "#D8A888" + brightBlue: "#A0B0D8" + brightMagenta: "#C0A0C0" + brightCyan: "#A0C0C0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 129 + pair: null + contrast: + fg: 75.2 + black: 0 + red: 30.6 + green: 61.6 + yellow: 46.5 + blue: 40.6 + magenta: 37.2 + cyan: 45.2 + white: 70.8 + brightBlack: 32 + brightRed: 43.9 + brightGreen: 64.6 + brightYellow: 58.1 + brightBlue: 57.1 + brightMagenta: 53.7 + brightCyan: 62.5 + brightWhite: 105.3 diff --git a/themes/section-9.yaml b/themes/section-9.yaml new file mode 100644 index 00000000..88ff5bcc --- /dev/null +++ b/themes/section-9.yaml @@ -0,0 +1,52 @@ +name: "Section 9" +source: + marketplace_id: "y4m3.section9-theme" + version: "0.0.1" + installs: 61 + rating: 0 + ratings: 0 + author: "y4m3" + repo: "https://github.com/y4m3/vscode-section9-theme" + url: "https://marketplace.visualstudio.com/items?itemName=y4m3.section9-theme" +colors: + bg: "#0E121A" + fg: "#A8B0BE" + black: "#151A21" + red: "#C62828" + green: "#808C80" + yellow: "#FFA000" + blue: "#26A69A" + magenta: "#7E57C2" + cyan: "#4DB6AC" + white: "#A8B0BE" + brightBlack: "#607D8B" + brightRed: "#E57373" + brightGreen: "#A5D6A7" + brightYellow: "#FFB74D" + brightBlue: "#4DD0E1" + brightMagenta: "#BA68C8" + brightCyan: "#80CBC4" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 58.6 + black: 0 + red: 24.7 + green: 38.4 + yellow: 62.4 + blue: 45 + magenta: 25.6 + cyan: 53.6 + white: 58.6 + brightBlack: 30.8 + brightRed: 45.2 + brightGreen: 73.8 + brightYellow: 71 + brightBlue: 67.9 + brightMagenta: 38.3 + brightCyan: 66.8 + brightWhite: 87.3 diff --git a/themes/secunda.yaml b/themes/secunda.yaml index 6cdba8c2..88059aaf 100644 --- a/themes/secunda.yaml +++ b/themes/secunda.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ruj.secunda" version: "1.4.0" installs: 437 + rating: 0 + ratings: 0 author: "Rodger Jordas" repo: "https://github.com/rmjordas/secunda" url: "https://marketplace.visualstudio.com/items?itemName=ruj.secunda" diff --git a/themes/secuoyas-code.yaml b/themes/secuoyas-code.yaml index 60848b44..59b7addc 100644 --- a/themes/secuoyas-code.yaml +++ b/themes/secuoyas-code.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Secuoyas.secuoyas-code" version: "0.3.1" installs: 1781 + rating: 5 + ratings: 1 author: "Secuoyas" repo: "https://github.com/Secuoyas-Experience/secuoyas-theme" url: "https://marketplace.visualstudio.com/items?itemName=Secuoyas.secuoyas-code" diff --git a/themes/sedona.yaml b/themes/sedona.yaml index 364c3fa1..bb935bf4 100644 --- a/themes/sedona.yaml +++ b/themes/sedona.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "interactiveRob.sedona" version: "0.2.5" installs: 3145 + rating: 0 + ratings: 0 author: "interactiveRob" repo: "https://github.com/interactiveRob/sedona-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=interactiveRob.sedona" diff --git a/themes/seed7-tokyo-night-dark.yaml b/themes/seed7-tokyo-night-dark.yaml index e0cf364e..c18ff177 100644 --- a/themes/seed7-tokyo-night-dark.yaml +++ b/themes/seed7-tokyo-night-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YehudaGurovich.seed7-language-support" version: "0.1.3" installs: 48 + rating: 0 + ratings: 0 author: "Yehuda Gurovich" repo: "https://github.com/YehudaGurovich/seed7-language-support" url: "https://marketplace.visualstudio.com/items?itemName=YehudaGurovich.seed7-language-support" diff --git a/themes/seekode-light.yaml b/themes/seekode-light.yaml index 1d5b068d..438ad144 100644 --- a/themes/seekode-light.yaml +++ b/themes/seekode-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "seekode-official.seekode-new-theme" version: "1.0.0" installs: 186 + rating: 0 + ratings: 0 author: "seekode-official" repo: "https://github.com/seekode/seekode-vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=seekode-official.seekode-new-theme" diff --git a/themes/seilacolor-2.yaml b/themes/seilacolor-2.yaml new file mode 100644 index 00000000..0071609e --- /dev/null +++ b/themes/seilacolor-2.yaml @@ -0,0 +1,52 @@ +name: "SeilaColor 2" +source: + marketplace_id: "SeilaColor.seilacolor" + version: "1.2.1" + installs: 53 + rating: 0 + ratings: 0 + author: "SeilaColor" + repo: "https://github.com/meunik/seilacolor" + url: "https://marketplace.visualstudio.com/items?itemName=SeilaColor.seilacolor" +colors: + bg: "#1D1D1D" + fg: "#BABABA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 63.5 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/seilacolor.yaml b/themes/seilacolor.yaml new file mode 100644 index 00000000..5088e4b0 --- /dev/null +++ b/themes/seilacolor.yaml @@ -0,0 +1,52 @@ +name: "SeilaColor" +source: + marketplace_id: "SeilaColor.seilacolor" + version: "1.2.1" + installs: 53 + rating: 0 + ratings: 0 + author: "SeilaColor" + repo: "https://github.com/meunik/seilacolor" + url: "https://marketplace.visualstudio.com/items?itemName=SeilaColor.seilacolor" +colors: + bg: "#111111" + fg: "#BABABA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 64.7 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/selene-selenized-dark.yaml b/themes/selene-selenized-dark.yaml index ff17b703..203a8324 100644 --- a/themes/selene-selenized-dark.yaml +++ b/themes/selene-selenized-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "santoso-wijaya.helios-selene" version: "0.3.18" installs: 3055 + rating: 5 + ratings: 4 author: "Santoso Wijaya" repo: "https://github.com/santoso-wijaya/vscode-helios-selene" url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" diff --git a/themes/selene-selenized-light.yaml b/themes/selene-selenized-light.yaml index 1e7c0a71..92e089e2 100644 --- a/themes/selene-selenized-light.yaml +++ b/themes/selene-selenized-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "santoso-wijaya.helios-selene" version: "0.3.18" installs: 3055 + rating: 5 + ratings: 4 author: "Santoso Wijaya" repo: "https://github.com/santoso-wijaya/vscode-helios-selene" url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" diff --git a/themes/selenitic-color-theme.yaml b/themes/selenitic-color-theme.yaml index c6df4959..59fc17f8 100644 --- a/themes/selenitic-color-theme.yaml +++ b/themes/selenitic-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fopitz.theme-selenitic" version: "0.1.0" installs: 951 + rating: 5 + ratings: 1 author: "Forrest Pitz" repo: "https://forrestpitz.visualstudio.com/_git/Seleitic%20Theme" url: "https://marketplace.visualstudio.com/items?itemName=fopitz.theme-selenitic" diff --git a/themes/sema.yaml b/themes/sema.yaml index f4349b9c..23d8b012 100644 --- a/themes/sema.yaml +++ b/themes/sema.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arzg.sema" version: "1.12.1" installs: 4718 + rating: 5 + ratings: 2 author: "arzg" repo: "https://github.com/arzg/sema" url: "https://marketplace.visualstudio.com/items?itemName=arzg.sema" diff --git a/themes/semantic-noctis-lux.yaml b/themes/semantic-noctis-lux.yaml index b960f66b..8e6df957 100644 --- a/themes/semantic-noctis-lux.yaml +++ b/themes/semantic-noctis-lux.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jnooree.semantic-noctis" version: "1.3.3" installs: 2745 + rating: 0 + ratings: 0 author: "Nuri Jung" repo: "https://github.com/jnooree/noctis" url: "https://marketplace.visualstudio.com/items?itemName=jnooree.semantic-noctis" diff --git a/themes/semi-dark-theme-in-yellow.yaml b/themes/semi-dark-theme-in-yellow.yaml index 396a1605..5f428e4b 100644 --- a/themes/semi-dark-theme-in-yellow.yaml +++ b/themes/semi-dark-theme-in-yellow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "moondevaa.Semi-dark-theme-in-yellow" version: "0.2.4" installs: 2846 + rating: 5 + ratings: 2 author: "moondevaa" repo: "https://github.com/AaBbdev29/semi-dark-theme-in-yellow" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.Semi-dark-theme-in-yellow" diff --git a/themes/senkorange.yaml b/themes/senkorange.yaml index c5cde0dd..2848a1a5 100644 --- a/themes/senkorange.yaml +++ b/themes/senkorange.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Michii.senkorange" version: "1.0.0" installs: 71 + rating: 5 + ratings: 1 author: "Michii" repo: "https://github.com/hi-doki/Senkorange" url: "https://marketplace.visualstudio.com/items?itemName=Michii.senkorange" diff --git a/themes/senna-dark-black-theme.yaml b/themes/senna-dark-black-theme.yaml index 857d884a..33db6dd5 100644 --- a/themes/senna-dark-black-theme.yaml +++ b/themes/senna-dark-black-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vitorvxj.senna-theme" version: "1.0.3" installs: 116 + rating: 5 + ratings: 1 author: "XJ" repo: "https://github.com/vitorvxj/Senna-Theme" url: "https://marketplace.visualstudio.com/items?itemName=vitorvxj.senna-theme" diff --git a/themes/seoul-dancheong.yaml b/themes/seoul-dancheong.yaml index f760ed0d..89c8e28b 100644 --- a/themes/seoul-dancheong.yaml +++ b/themes/seoul-dancheong.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lovema-kr.theme-seoul" version: "0.1.6" installs: 36 + rating: 0 + ratings: 0 author: "Hue" repo: "https://github.com/hue-lovemakr/lovema-kr" url: "https://marketplace.visualstudio.com/items?itemName=lovema-kr.theme-seoul" diff --git a/themes/seoul-morning.yaml b/themes/seoul-morning.yaml index 6a30a640..fd4928b4 100644 --- a/themes/seoul-morning.yaml +++ b/themes/seoul-morning.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lovema-kr.theme-seoul" version: "0.1.6" installs: 36 + rating: 0 + ratings: 0 author: "Hue" repo: "https://github.com/hue-lovemakr/lovema-kr" url: "https://marketplace.visualstudio.com/items?itemName=lovema-kr.theme-seoul" diff --git a/themes/seoul-night.yaml b/themes/seoul-night.yaml index a02fba2e..670516d3 100644 --- a/themes/seoul-night.yaml +++ b/themes/seoul-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lovema-kr.theme-seoul" version: "0.1.6" installs: 36 + rating: 0 + ratings: 0 author: "Hue" repo: "https://github.com/hue-lovemakr/lovema-kr" url: "https://marketplace.visualstudio.com/items?itemName=lovema-kr.theme-seoul" diff --git a/themes/september-dark-theme.yaml b/themes/september-dark-theme.yaml index 62714632..f3db5536 100644 --- a/themes/september-dark-theme.yaml +++ b/themes/september-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/sequoia-monochrome.yaml b/themes/sequoia-monochrome.yaml index 100fe42f..18230c4d 100644 --- a/themes/sequoia-monochrome.yaml +++ b/themes/sequoia-monochrome.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.sequoia" version: "1.31.3" installs: 23654 + rating: 4.89 + ratings: 9 author: "Michael Andreuzza " repo: "https://github.com/Sequoia-Theme/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" diff --git a/themes/sequoia-moonlight.yaml b/themes/sequoia-moonlight.yaml index 108445f1..91f9775b 100644 --- a/themes/sequoia-moonlight.yaml +++ b/themes/sequoia-moonlight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.sequoia" version: "1.31.3" installs: 23654 + rating: 4.89 + ratings: 9 author: "Michael Andreuzza " repo: "https://github.com/Sequoia-Theme/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" diff --git a/themes/sequoia-retro.yaml b/themes/sequoia-retro.yaml index 1ebfb9c8..6987007a 100644 --- a/themes/sequoia-retro.yaml +++ b/themes/sequoia-retro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.sequoia" version: "1.31.3" installs: 23654 + rating: 4.89 + ratings: 9 author: "Michael Andreuzza " repo: "https://github.com/Sequoia-Theme/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" diff --git a/themes/seral-dark-github-stripe.yaml b/themes/seral-dark-github-stripe.yaml index bdc11c63..4b4bfb65 100644 --- a/themes/seral-dark-github-stripe.yaml +++ b/themes/seral-dark-github-stripe.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aliyilmazco.seral-theme" version: "0.1.2" installs: 49 + rating: 5 + ratings: 2 author: "Ali Yilmaz" repo: "https://github.com/aliyilmazco/seral-theme" url: "https://marketplace.visualstudio.com/items?itemName=aliyilmazco.seral-theme" diff --git a/themes/seral-light-github-stripe.yaml b/themes/seral-light-github-stripe.yaml index 5c574cc3..4fa0b638 100644 --- a/themes/seral-light-github-stripe.yaml +++ b/themes/seral-light-github-stripe.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aliyilmazco.seral-theme" version: "0.1.2" installs: 49 + rating: 5 + ratings: 2 author: "Ali Yilmaz" repo: "https://github.com/aliyilmazco/seral-theme" url: "https://marketplace.visualstudio.com/items?itemName=aliyilmazco.seral-theme" diff --git a/themes/serein-dark-soft.yaml b/themes/serein-dark-soft.yaml new file mode 100644 index 00000000..dd0ec8b3 --- /dev/null +++ b/themes/serein-dark-soft.yaml @@ -0,0 +1,52 @@ +name: "Serein Dark Soft" +source: + marketplace_id: "abei.theme-serein" + version: "0.1.4" + installs: 34 + rating: 0 + ratings: 0 + author: "abei" + repo: "https://github.com/abeixiaolu/vscode-theme-serein" + url: "https://marketplace.visualstudio.com/items?itemName=abei.theme-serein" +colors: + bg: "#222222" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#80C19A" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#80C19A" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: "Serein Light Soft" + contrast: + fg: 79.9 + black: 0 + red: 39.4 + green: 58.9 + yellow: 74.2 + blue: 39.9 + magenta: 42.5 + cyan: 47.9 + white: 79.9 + brightBlack: 28.1 + brightRed: 39.4 + brightGreen: 58.9 + brightYellow: 74.2 + brightBlue: 39.9 + brightMagenta: 42.5 + brightCyan: 47.9 + brightWhite: 105.5 diff --git a/themes/serein-dark.yaml b/themes/serein-dark.yaml new file mode 100644 index 00000000..1467dbd8 --- /dev/null +++ b/themes/serein-dark.yaml @@ -0,0 +1,52 @@ +name: "Serein Dark" +source: + marketplace_id: "abei.theme-serein" + version: "0.1.4" + installs: 34 + rating: 0 + ratings: 0 + author: "abei" + repo: "https://github.com/abeixiaolu/vscode-theme-serein" + url: "https://marketplace.visualstudio.com/items?itemName=abei.theme-serein" +colors: + bg: "#0F0F0F" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#80C19A" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#80C19A" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: "Serein Light" + contrast: + fg: 81.9 + black: 0 + red: 41.4 + green: 60.9 + yellow: 76.2 + blue: 42 + magenta: 44.5 + cyan: 49.9 + white: 81.9 + brightBlack: 30.2 + brightRed: 41.4 + brightGreen: 60.9 + brightYellow: 76.2 + brightBlue: 42 + brightMagenta: 44.5 + brightCyan: 49.9 + brightWhite: 107.5 diff --git a/themes/serein-light-soft.yaml b/themes/serein-light-soft.yaml new file mode 100644 index 00000000..10706e2e --- /dev/null +++ b/themes/serein-light-soft.yaml @@ -0,0 +1,52 @@ +name: "Serein Light Soft" +source: + marketplace_id: "abei.theme-serein" + version: "0.1.4" + installs: 34 + rating: 0 + ratings: 0 + author: "abei" + repo: "https://github.com/abeixiaolu/vscode-theme-serein" + url: "https://marketplace.visualstudio.com/items?itemName=abei.theme-serein" +colors: + bg: "#FFFAF3" + fg: "#393A34" + black: "#0F0F0F" + red: "#AB5959" + green: "#2B9815" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#2B9815" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "green" + hue: null + pair: "Serein Dark Soft" + contrast: + fg: 93.8 + black: 102.9 + red: 70.8 + green: 61.9 + yellow: 45.6 + blue: 75.5 + magenta: 78.5 + cyan: 60.8 + white: 18.4 + brightBlack: 43.2 + brightRed: 70.8 + brightGreen: 61.9 + brightYellow: 45.6 + brightBlue: 75.5 + brightMagenta: 78.5 + brightCyan: 60.8 + brightWhite: 14.9 diff --git a/themes/serein-light.yaml b/themes/serein-light.yaml new file mode 100644 index 00000000..cec9f851 --- /dev/null +++ b/themes/serein-light.yaml @@ -0,0 +1,52 @@ +name: "Serein Light" +source: + marketplace_id: "abei.theme-serein" + version: "0.1.4" + installs: 34 + rating: 0 + ratings: 0 + author: "abei" + repo: "https://github.com/abeixiaolu/vscode-theme-serein" + url: "https://marketplace.visualstudio.com/items?itemName=abei.theme-serein" +colors: + bg: "#FFFFFF" + fg: "#393A34" + black: "#0F0F0F" + red: "#AB5959" + green: "#2B9815" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#2B9815" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "green" + hue: null + pair: "Serein Dark" + contrast: + fg: 96.5 + black: 105.5 + red: 73.5 + green: 64.5 + yellow: 48.3 + blue: 78.2 + magenta: 81.1 + cyan: 63.5 + white: 21.1 + brightBlack: 45.8 + brightRed: 73.5 + brightGreen: 64.5 + brightYellow: 48.3 + brightBlue: 78.2 + brightMagenta: 81.1 + brightCyan: 63.5 + brightWhite: 17.6 diff --git a/themes/serendipity-midnight-electric.yaml b/themes/serendipity-midnight-electric.yaml index 53ee59c5..2efb5567 100644 --- a/themes/serendipity-midnight-electric.yaml +++ b/themes/serendipity-midnight-electric.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.wvsc-serendipity" version: "1.66.2" installs: 70595 + rating: 4.76 + ratings: 17 author: "Michael Andreuzza " repo: "https://github.com/Serendipity-Theme/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" diff --git a/themes/serendipity-midnight-v1.yaml b/themes/serendipity-midnight-v1.yaml index 3019e7b7..3a362a22 100644 --- a/themes/serendipity-midnight-v1.yaml +++ b/themes/serendipity-midnight-v1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.old-serendipity" version: "0.6.0" installs: 4491 + rating: 5 + ratings: 1 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/old-serendipity" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.old-serendipity" diff --git a/themes/serendipity-midnight.yaml b/themes/serendipity-midnight.yaml index 0ce455d4..7b4f4eaf 100644 --- a/themes/serendipity-midnight.yaml +++ b/themes/serendipity-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.wvsc-serendipity" version: "1.66.2" installs: 70595 + rating: 4.76 + ratings: 17 author: "Michael Andreuzza " repo: "https://github.com/Serendipity-Theme/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" diff --git a/themes/serendipity-morning-v1.yaml b/themes/serendipity-morning-v1.yaml index 1cdf8982..06fd0588 100644 --- a/themes/serendipity-morning-v1.yaml +++ b/themes/serendipity-morning-v1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.old-serendipity" version: "0.6.0" installs: 4491 + rating: 5 + ratings: 1 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/old-serendipity" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.old-serendipity" diff --git a/themes/serendipity-morning.yaml b/themes/serendipity-morning.yaml index 36533d41..a9ee9687 100644 --- a/themes/serendipity-morning.yaml +++ b/themes/serendipity-morning.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.wvsc-serendipity" version: "1.66.2" installs: 70595 + rating: 4.76 + ratings: 17 author: "Michael Andreuzza " repo: "https://github.com/Serendipity-Theme/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" diff --git a/themes/serendipity-sunset-v1.yaml b/themes/serendipity-sunset-v1.yaml index 4585ee42..52571351 100644 --- a/themes/serendipity-sunset-v1.yaml +++ b/themes/serendipity-sunset-v1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.old-serendipity" version: "0.6.0" installs: 4491 + rating: 5 + ratings: 1 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/old-serendipity" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.old-serendipity" diff --git a/themes/serendipity-sunset.yaml b/themes/serendipity-sunset.yaml index 745328cd..aecfadba 100644 --- a/themes/serendipity-sunset.yaml +++ b/themes/serendipity-sunset.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.wvsc-serendipity" version: "1.66.2" installs: 70595 + rating: 4.76 + ratings: 17 author: "Michael Andreuzza " repo: "https://github.com/Serendipity-Theme/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" diff --git a/themes/serene-dawn.yaml b/themes/serene-dawn.yaml new file mode 100644 index 00000000..b98cf21e --- /dev/null +++ b/themes/serene-dawn.yaml @@ -0,0 +1,52 @@ +name: "Serene Dawn" +source: + marketplace_id: "happyMix.serene-dawn" + version: "1.0.0" + installs: 112 + rating: 0 + ratings: 0 + author: "happyMix" + repo: "https://github.com/happymix555/serene-dawn-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=happyMix.serene-dawn" +colors: + bg: "#FDFCF8" + fg: "#3A3A3A" + black: "#3A3A3A" + red: "#D73502" + green: "#5FB85F" + yellow: "#B8860B" + blue: "#5A4FCF" + magenta: "#8B4789" + cyan: "#0C7D9D" + white: "#E8E6E0" + brightBlack: "#6A6A6A" + brightRed: "#E85D2C" + brightGreen: "#7AC87A" + brightYellow: "#D4A31D" + brightBlue: "#7A6FDF" + brightMagenta: "#A567A3" + brightCyan: "#2E9DB7" + brightWhite: "#F3F2EE" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.4 + black: 94.4 + red: 69.7 + green: 46.4 + yellow: 57.7 + blue: 78.1 + magenta: 78.9 + cyan: 70.5 + white: 10.5 + brightBlack: 75.2 + brightRed: 59.6 + brightGreen: 37.3 + brightYellow: 43.7 + brightBlue: 65.8 + brightMagenta: 66.5 + brightCyan: 56.6 + brightWhite: 0 diff --git a/themes/serene.yaml b/themes/serene.yaml index 3101deba..c318304b 100644 --- a/themes/serene.yaml +++ b/themes/serene.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thisisroi.serene" version: "1.0.2" installs: 1436 + rating: 5 + ratings: 1 author: "thisisroi" repo: "https://github.com/thisisroi/serene-theme" url: "https://marketplace.visualstudio.com/items?itemName=thisisroi.serene" diff --git a/themes/serenity-light.yaml b/themes/serenity-light.yaml new file mode 100644 index 00000000..1fa63294 --- /dev/null +++ b/themes/serenity-light.yaml @@ -0,0 +1,50 @@ +name: "Serenity Light" +source: + marketplace_id: "EmmettHintz.serenity" + version: "0.13.0" + installs: 83 + author: "Emmett Hintz" + repo: "https://github.com/EmmettHintz/serenity" + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.serenity" +colors: + bg: "#FAF4ED" + fg: "#575279" + black: "#F2E9E1" + red: "#3E4491" + green: "#C48200" + yellow: "#1A1B4B" + blue: "#3A9EFD" + magenta: "#F600B9" + cyan: "#292A73" + white: "#575279" + brightBlack: "#797593" + brightRed: "#3E4491" + brightGreen: "#C48200" + brightYellow: "#1A1B4B" + brightBlue: "#3A9EFD" + brightMagenta: "#F600B9" + brightCyan: "#292A73" + brightWhite: "#575279" +meta: + mode: "light" + accent: "pink" + hue: null + pair: "Serenity Noir" + contrast: + fg: 79.1 + black: 0 + red: 83.2 + green: 52.9 + yellow: 96.8 + blue: 47.4 + magenta: 56.1 + cyan: 92 + white: 79.1 + brightBlack: 64.4 + brightRed: 83.2 + brightGreen: 52.9 + brightYellow: 96.8 + brightBlue: 47.4 + brightMagenta: 56.1 + brightCyan: 92 + brightWhite: 79.1 diff --git a/themes/serenity-moon.yaml b/themes/serenity-moon.yaml new file mode 100644 index 00000000..2217441a --- /dev/null +++ b/themes/serenity-moon.yaml @@ -0,0 +1,50 @@ +name: "Serenity Moon" +source: + marketplace_id: "EmmettHintz.serenity" + version: "0.13.0" + installs: 83 + author: "Emmett Hintz" + repo: "https://github.com/EmmettHintz/serenity" + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.serenity" +colors: + bg: "#232136" + fg: "#E7D2C5" + black: "#393552" + red: "#574F7D" + green: "#E0F0EA" + yellow: "#A678D2" + blue: "#95ADBE" + magenta: "#F6E1F4" + cyan: "#B090CE" + white: "#E7D2C5" + brightBlack: "#908CAA" + brightRed: "#574F7D" + brightGreen: "#E0F0EA" + brightYellow: "#A678D2" + brightBlue: "#95ADBE" + brightMagenta: "#F6E1F4" + brightCyan: "#B090CE" + brightWhite: "#E7D2C5" +meta: + mode: "dark" + accent: "magenta" + hue: 288 + pair: null + contrast: + fg: 78.9 + black: 0 + red: 13.5 + green: 93 + yellow: 38.1 + blue: 53.4 + magenta: 89.7 + cyan: 46.6 + white: 78.9 + brightBlack: 39.6 + brightRed: 13.5 + brightGreen: 93 + brightYellow: 38.1 + brightBlue: 53.4 + brightMagenta: 89.7 + brightCyan: 46.6 + brightWhite: 78.9 diff --git a/themes/serenity-noir.yaml b/themes/serenity-noir.yaml new file mode 100644 index 00000000..709cfe67 --- /dev/null +++ b/themes/serenity-noir.yaml @@ -0,0 +1,50 @@ +name: "Serenity Noir" +source: + marketplace_id: "EmmettHintz.serenity" + version: "0.13.0" + installs: 83 + author: "Emmett Hintz" + repo: "https://github.com/EmmettHintz/serenity" + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.serenity" +colors: + bg: "#0F1014" + fg: "#E7D2C5" + black: "#131317" + red: "#85A2E8" + green: "#E89EAE" + yellow: "#A678D2" + blue: "#E582D7" + magenta: "#697078" + cyan: "#3DBCEC" + white: "#E7D2C5" + brightBlack: "#83C4C4" + brightRed: "#85A2E8" + brightGreen: "#E89EAE" + brightYellow: "#A678D2" + brightBlue: "#E582D7" + brightMagenta: "#697078" + brightCyan: "#3DBCEC" + brightWhite: "#E7D2C5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: "Serenity Light" + contrast: + fg: 81.2 + black: 0 + red: 52.1 + green: 60.5 + yellow: 40.3 + blue: 53.3 + magenta: 26.6 + cyan: 59.1 + white: 81.2 + brightBlack: 64 + brightRed: 52.1 + brightGreen: 60.5 + brightYellow: 40.3 + brightBlue: 53.3 + brightMagenta: 26.6 + brightCyan: 59.1 + brightWhite: 81.2 diff --git a/themes/service-contrast.yaml b/themes/service-contrast.yaml index c309bcef..aae2adf0 100644 --- a/themes/service-contrast.yaml +++ b/themes/service-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/service-light.yaml b/themes/service-light.yaml index 60b4d629..a25e8c25 100644 --- a/themes/service-light.yaml +++ b/themes/service-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/service.yaml b/themes/service.yaml index e02d69b3..af6b9b3f 100644 --- a/themes/service.yaml +++ b/themes/service.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/seti-classic-vscode.yaml b/themes/seti-classic-vscode.yaml index f7be8104..a5aeaa44 100644 --- a/themes/seti-classic-vscode.yaml +++ b/themes/seti-classic-vscode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ecool.seti-classic-vscode" version: "1.0.7" installs: 1194 + rating: 0 + ratings: 0 author: "ecool" repo: "https://github.com/ecool/seti-classic-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ecool.seti-classic-vscode" diff --git a/themes/seti.yaml b/themes/seti.yaml index 13cd2ea8..befe30e1 100644 --- a/themes/seti.yaml +++ b/themes/seti.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "seti.seti" version: "0.0.6" installs: 22001 + rating: 5 + ratings: 1 author: "sriosv" repo: "https://github.com/Sarchis/seti-syntax" url: "https://marketplace.visualstudio.com/items?itemName=seti.seti" diff --git a/themes/sewayaki-dark.yaml b/themes/sewayaki-dark.yaml index 35e40cf8..633d07da 100644 --- a/themes/sewayaki-dark.yaml +++ b/themes/sewayaki-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kitsune-Labs.sewayaki-dark" version: "1.2.0" installs: 132 + rating: 0 + ratings: 0 author: "Kitsune Labs" repo: "https://github.com/Kitsune-Labs/Sewayaki-Dark" url: "https://marketplace.visualstudio.com/items?itemName=Kitsune-Labs.sewayaki-dark" diff --git a/themes/shaan-s.yaml b/themes/shaan-s.yaml index 9af1522e..007f4343 100644 --- a/themes/shaan-s.yaml +++ b/themes/shaan-s.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ShaanMephobic.shaans" version: "1.0.2" installs: 56 + rating: 5 + ratings: 1 author: "Shaan Mephobic" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ShaanMephobic.shaans" diff --git a/themes/shaant-shakti-mystic-roast.yaml b/themes/shaant-shakti-mystic-roast.yaml index 5e1b6fd8..3ed399dd 100644 --- a/themes/shaant-shakti-mystic-roast.yaml +++ b/themes/shaant-shakti-mystic-roast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shaant-shakti.shaant-shakti-color-theme" version: "2.0.0" installs: 50 + rating: 5 + ratings: 1 author: "Aadityaa" repo: "https://github.com/Aditya-Ace/Shaant-Shakti" url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" diff --git a/themes/shaant-shakti-sand-storm.yaml b/themes/shaant-shakti-sand-storm.yaml index b9c9eb1b..9682dc37 100644 --- a/themes/shaant-shakti-sand-storm.yaml +++ b/themes/shaant-shakti-sand-storm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shaant-shakti.shaant-shakti-color-theme" version: "2.0.0" installs: 50 + rating: 5 + ratings: 1 author: "Aadityaa" repo: "https://github.com/Aditya-Ace/Shaant-Shakti" url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" diff --git a/themes/shaant-shakti-soul-drift.yaml b/themes/shaant-shakti-soul-drift.yaml index 94ceaea6..0ebb1abd 100644 --- a/themes/shaant-shakti-soul-drift.yaml +++ b/themes/shaant-shakti-soul-drift.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shaant-shakti.shaant-shakti-color-theme" version: "2.0.0" installs: 50 + rating: 5 + ratings: 1 author: "Aadityaa" repo: "https://github.com/Aditya-Ace/Shaant-Shakti" url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" diff --git a/themes/shaant-shakti-spfx-sanctuary.yaml b/themes/shaant-shakti-spfx-sanctuary.yaml index 482f09c5..b116f171 100644 --- a/themes/shaant-shakti-spfx-sanctuary.yaml +++ b/themes/shaant-shakti-spfx-sanctuary.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shaant-shakti.shaant-shakti-color-theme" version: "2.0.0" installs: 50 + rating: 5 + ratings: 1 author: "Aadityaa" repo: "https://github.com/Aditya-Ace/Shaant-Shakti" url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" diff --git a/themes/shaant-shakti.yaml b/themes/shaant-shakti.yaml index b5de1a7b..f535e7cf 100644 --- a/themes/shaant-shakti.yaml +++ b/themes/shaant-shakti.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shaant-shakti.shaant-shakti-color-theme" version: "2.0.0" installs: 50 + rating: 5 + ratings: 1 author: "Aadityaa" repo: "https://github.com/Aditya-Ace/Shaant-Shakti" url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" diff --git a/themes/shadcn-blue-light.yaml b/themes/shadcn-blue-light.yaml index c6af97c8..a50b9a01 100644 --- a/themes/shadcn-blue-light.yaml +++ b/themes/shadcn-blue-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "purple" hue: null + pair: null contrast: fg: 105.9 black: 0 diff --git a/themes/shadcn-green-dark.yaml b/themes/shadcn-green-dark.yaml index 2b78b300..8fec97cc 100644 --- a/themes/shadcn-green-dark.yaml +++ b/themes/shadcn-green-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" diff --git a/themes/shadcn-green-light.yaml b/themes/shadcn-green-light.yaml index 5bdac53e..61938999 100644 --- a/themes/shadcn-green-light.yaml +++ b/themes/shadcn-green-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" diff --git a/themes/shadcn-neutral-dark.yaml b/themes/shadcn-neutral-dark.yaml index 72b77673..9a99ab6f 100644 --- a/themes/shadcn-neutral-dark.yaml +++ b/themes/shadcn-neutral-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" diff --git a/themes/shadcn-neutral-light.yaml b/themes/shadcn-neutral-light.yaml index 69e65431..df0e5358 100644 --- a/themes/shadcn-neutral-light.yaml +++ b/themes/shadcn-neutral-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" diff --git a/themes/shadcn-orange-dark.yaml b/themes/shadcn-orange-dark.yaml index 89912411..6afbf119 100644 --- a/themes/shadcn-orange-dark.yaml +++ b/themes/shadcn-orange-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" diff --git a/themes/shadcn-orange-light.yaml b/themes/shadcn-orange-light.yaml index aed77c95..f43b8b7e 100644 --- a/themes/shadcn-orange-light.yaml +++ b/themes/shadcn-orange-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" diff --git a/themes/shadcn-red-dark.yaml b/themes/shadcn-red-dark.yaml index c2bae60f..abd48bbf 100644 --- a/themes/shadcn-red-dark.yaml +++ b/themes/shadcn-red-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" diff --git a/themes/shadcn-red-light.yaml b/themes/shadcn-red-light.yaml index e5f2613f..1cf29899 100644 --- a/themes/shadcn-red-light.yaml +++ b/themes/shadcn-red-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" diff --git a/themes/shadcn-rose-dark.yaml b/themes/shadcn-rose-dark.yaml index c1032e3b..43034f6c 100644 --- a/themes/shadcn-rose-dark.yaml +++ b/themes/shadcn-rose-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" diff --git a/themes/shadcn-rose-light.yaml b/themes/shadcn-rose-light.yaml index b21f51e8..a5884162 100644 --- a/themes/shadcn-rose-light.yaml +++ b/themes/shadcn-rose-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" diff --git a/themes/shadcn-violet-dark.yaml b/themes/shadcn-violet-dark.yaml index 17cbd1ea..0e4ddaed 100644 --- a/themes/shadcn-violet-dark.yaml +++ b/themes/shadcn-violet-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" diff --git a/themes/shadcn-violet-light.yaml b/themes/shadcn-violet-light.yaml index 300bd009..b719a28c 100644 --- a/themes/shadcn-violet-light.yaml +++ b/themes/shadcn-violet-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" diff --git a/themes/shadcn-vivid.yaml b/themes/shadcn-vivid.yaml index c68fcd71..99c2a43d 100644 --- a/themes/shadcn-vivid.yaml +++ b/themes/shadcn-vivid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chiziaruhoma.shadcn-vivid-theme" version: "0.1.1" installs: 598 + rating: 0 + ratings: 0 author: "Chiziaruhoma Ogbonda" repo: "https://github.com/zfinix/shadcn-vivid-theme" url: "https://marketplace.visualstudio.com/items?itemName=chiziaruhoma.shadcn-vivid-theme" diff --git a/themes/shadcn-yellow-dark.yaml b/themes/shadcn-yellow-dark.yaml index 5c079312..46c1ab90 100644 --- a/themes/shadcn-yellow-dark.yaml +++ b/themes/shadcn-yellow-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" diff --git a/themes/shadcn-yellow-light.yaml b/themes/shadcn-yellow-light.yaml index 95e0858a..9b895f58 100644 --- a/themes/shadcn-yellow-light.yaml +++ b/themes/shadcn-yellow-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Muhammad-Sulman.prism-vscode-themes" version: "0.0.1" installs: 51 + rating: 0 + ratings: 0 author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" diff --git a/themes/shaddy-lighta.yaml b/themes/shaddy-lighta.yaml index 60b9232d..5dc26694 100644 --- a/themes/shaddy-lighta.yaml +++ b/themes/shaddy-lighta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Francisco.shaddy" version: "0.1.0" installs: 17 + rating: 0 + ratings: 0 author: "Francisco" repo: "https://github.com/franciscoamado/shaddy-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Francisco.shaddy" diff --git a/themes/shaddy.yaml b/themes/shaddy.yaml index 44a30763..ab09a428 100644 --- a/themes/shaddy.yaml +++ b/themes/shaddy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Francisco.shaddy" version: "0.1.0" installs: 17 + rating: 0 + ratings: 0 author: "Francisco" repo: "https://github.com/franciscoamado/shaddy-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Francisco.shaddy" diff --git a/themes/shade-theme.yaml b/themes/shade-theme.yaml index 35515eea..284fcb6c 100644 --- a/themes/shade-theme.yaml +++ b/themes/shade-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RLabsInc.rlabs-theme-collection" version: "0.1.4" installs: 181 + rating: 0 + ratings: 0 author: "RLabs Inc." repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 106.9 black: 0 diff --git a/themes/shades-of-blue.yaml b/themes/shades-of-blue.yaml index b69ed96f..9f301327 100644 --- a/themes/shades-of-blue.yaml +++ b/themes/shades-of-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bakrimoharram.shades-of-blue" version: "0.0.6" installs: 1965 + rating: 0 + ratings: 0 author: "bakrimoharram" repo: "https://github.com/bakrimoharram/shades-of-blue" url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.shades-of-blue" diff --git a/themes/shades-of-cyan-theme.yaml b/themes/shades-of-cyan-theme.yaml index 4c4e487a..448c9f05 100644 --- a/themes/shades-of-cyan-theme.yaml +++ b/themes/shades-of-cyan-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "moondevaa.shades-of-cyan-theme" version: "0.1.1" installs: 4948 + rating: 5 + ratings: 1 author: "moondevaa" repo: "https://github.com/AaBbdev29/Shades-of-Cyan-Theme" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.shades-of-cyan-theme" diff --git a/themes/shades-of-gravy.yaml b/themes/shades-of-gravy.yaml index b52b7c06..47ddf2ed 100644 --- a/themes/shades-of-gravy.yaml +++ b/themes/shades-of-gravy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mr-Icecream.shades-of-gravy" version: "1.1.0" installs: 866 + rating: 0 + ratings: 0 author: "Mr. Icecream" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Mr-Icecream.shades-of-gravy" diff --git a/themes/shades-of-life-light.yaml b/themes/shades-of-life-light.yaml index 841b6bab..cfdee05a 100644 --- a/themes/shades-of-life-light.yaml +++ b/themes/shades-of-life-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rafael-bertelli-borges.shades-of-life" version: "0.0.2" installs: 92 + rating: 0 + ratings: 0 author: "Rafael Bertelli Borges" repo: "https://github.com/rafaelbertelli/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=rafael-bertelli-borges.shades-of-life" diff --git a/themes/shades-of-life.yaml b/themes/shades-of-life.yaml index a3496c71..be44c501 100644 --- a/themes/shades-of-life.yaml +++ b/themes/shades-of-life.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rafael-bertelli-borges.shades-of-life" version: "0.0.2" installs: 92 + rating: 0 + ratings: 0 author: "Rafael Bertelli Borges" repo: "https://github.com/rafaelbertelli/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=rafael-bertelli-borges.shades-of-life" diff --git a/themes/shades-of-midnight-blue-dark-theme.yaml b/themes/shades-of-midnight-blue-dark-theme.yaml index b28abecc..8cbaae81 100644 --- a/themes/shades-of-midnight-blue-dark-theme.yaml +++ b/themes/shades-of-midnight-blue-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "moondevaa.shadesofmidnightbluedarktheme" version: "0.5.8" installs: 17323 + rating: 5 + ratings: 1 author: "moondevaa" repo: "https://github.com/AaBbdev29/shades-of-midnight-blue-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.shadesofmidnightbluedarktheme" diff --git a/themes/shades-of-violet.yaml b/themes/shades-of-violet.yaml index a2cc2122..7adfe6cd 100644 --- a/themes/shades-of-violet.yaml +++ b/themes/shades-of-violet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bakrimoharram.shades-of-violet" version: "0.0.1" installs: 2951 + rating: 0 + ratings: 0 author: "bakrimoharram" repo: "https://github.com/bakrimoharram/purple-blue-theme" url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.shades-of-violet" diff --git a/themes/shades.yaml b/themes/shades.yaml index 08bb1c7c..9c5f0054 100644 --- a/themes/shades.yaml +++ b/themes/shades.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.morita" version: "0.0.18" installs: 228 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/yesomac/MyThemes" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" diff --git a/themes/shadowborn.yaml b/themes/shadowborn.yaml index b66a7ebe..805c94a1 100644 --- a/themes/shadowborn.yaml +++ b/themes/shadowborn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RyzenFromFire.vscode-shadowborn-theme" version: "1.0.2" installs: 439 + rating: 0 + ratings: 0 author: "RyzenFromFire" repo: "https://github.com/RyzenFromFire/vscode-shadowborn" url: "https://marketplace.visualstudio.com/items?itemName=RyzenFromFire.vscode-shadowborn-theme" diff --git a/themes/shadowscape.yaml b/themes/shadowscape.yaml index 406b1bc9..ee83d47e 100644 --- a/themes/shadowscape.yaml +++ b/themes/shadowscape.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KJS-Officials.shadowscape" version: "0.0.1" installs: 104 + rating: 0 + ratings: 0 author: "KJS - Officials" repo: "https://github.com/ShKev03/Shadowscape" url: "https://marketplace.visualstudio.com/items?itemName=KJS-Officials.shadowscape" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 106 black: 0 diff --git a/themes/shadowspectrum.yaml b/themes/shadowspectrum.yaml index ccb808f7..8babf948 100644 --- a/themes/shadowspectrum.yaml +++ b/themes/shadowspectrum.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ShadowSpectrum.shadow-dev" version: "0.20.0" installs: 69 + rating: 0 + ratings: 0 author: "ShadowSpectrum" repo: "https://github.com/alvin-dennis/shadow-dev" url: "https://marketplace.visualstudio.com/items?itemName=ShadowSpectrum.shadow-dev" diff --git a/themes/shale.yaml b/themes/shale.yaml new file mode 100644 index 00000000..e9a35299 --- /dev/null +++ b/themes/shale.yaml @@ -0,0 +1,52 @@ +name: "Shale" +source: + marketplace_id: "mullakhmetov.shale" + version: "0.1.1" + installs: 5738 + rating: 4.75 + ratings: 4 + author: "mullakhmetov" + repo: "https://github.com/mullakhmetov/vscode-theme-shale" + url: "https://marketplace.visualstudio.com/items?itemName=mullakhmetov.shale" +colors: + bg: "#2E3440" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 80.3 + black: 0 + red: 27.9 + green: 56.6 + yellow: 71.3 + blue: 43.6 + magenta: 41.4 + cyan: 57.6 + white: 87.3 + brightBlack: 10.3 + brightRed: 27.9 + brightGreen: 56.6 + brightYellow: 71.3 + brightBlue: 43.6 + brightMagenta: 41.4 + brightCyan: 55.5 + brightWhite: 91.2 diff --git a/themes/shamrock.yaml b/themes/shamrock.yaml index fd748cb1..df47dc07 100644 --- a/themes/shamrock.yaml +++ b/themes/shamrock.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DymNomZ.dymnomz-shamrock" version: "2.0.2" installs: 202 + rating: 0 + ratings: 0 author: "DymNomZ" repo: "https://github.com/DymNomZ/Shamrock" url: "https://marketplace.visualstudio.com/items?itemName=DymNomZ.dymnomz-shamrock" diff --git a/themes/sharkdark-theme.yaml b/themes/sharkdark-theme.yaml index 1de4899f..5e0ff7c2 100644 --- a/themes/sharkdark-theme.yaml +++ b/themes/sharkdark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sharkdark.sharkdark" version: "0.0.1" installs: 352 + rating: 0 + ratings: 0 author: "Sharkdark" repo: "https://github.com/dann-dann/sharkdark" url: "https://marketplace.visualstudio.com/items?itemName=Sharkdark.sharkdark" diff --git a/themes/sharpblue.yaml b/themes/sharpblue.yaml index 6f6cf5bc..fecf898b 100644 --- a/themes/sharpblue.yaml +++ b/themes/sharpblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Katy248.sharpblue-theme" version: "0.0.2" installs: 20 + rating: 0 + ratings: 0 author: "Katy248" repo: "https://github.com/Katy248/SharpBlue-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=Katy248.sharpblue-theme" diff --git a/themes/shaughnessy-nanite-theme.yaml b/themes/shaughnessy-nanite-theme.yaml new file mode 100644 index 00000000..8191d86f --- /dev/null +++ b/themes/shaughnessy-nanite-theme.yaml @@ -0,0 +1,52 @@ +name: "Shaughnessy-Nanite-Theme" +source: + marketplace_id: "AbdulShabazz.shaughnessy-nanite-theme" + version: "0.0.1" + installs: 125 + rating: 0 + ratings: 0 + author: "Abdul Shabazz" + repo: "https://github.com/AbdulShabaaz/shaughnessy-nanite-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AbdulShabazz.shaughnessy-nanite-theme" +colors: + bg: "#24292E" + fg: "#EEFFFF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + pair: null + contrast: + fg: 102 + black: 0 + red: 44.1 + green: 81.7 + yellow: 76.4 + blue: 53.4 + magenta: 51.2 + cyan: 75.7 + white: 104.4 + brightBlack: 8.4 + brightRed: 44.1 + brightGreen: 81.7 + brightYellow: 76.4 + brightBlue: 53.4 + brightMagenta: 51.2 + brightCyan: 75.7 + brightWhite: 104.4 diff --git a/themes/sheme.yaml b/themes/sheme.yaml index ff37fd07..bcc889de 100644 --- a/themes/sheme.yaml +++ b/themes/sheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shoedler.sheme" version: "1.0.2" installs: 89 + rating: 5 + ratings: 2 author: "shoedler" repo: "https://github.com/shoedler/vscode-sheme" url: "https://marketplace.visualstudio.com/items?itemName=shoedler.sheme" diff --git a/themes/shibainu-dark.yaml b/themes/shibainu-dark.yaml index 0fd250de..e808587b 100644 --- a/themes/shibainu-dark.yaml +++ b/themes/shibainu-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hky.theme-ShibaInu" version: "0.1.0" installs: 311 + rating: 0 + ratings: 0 author: "hky" repo: "https://github.com/hky301/vscode-theme-koki" url: "https://marketplace.visualstudio.com/items?itemName=hky.theme-ShibaInu" diff --git a/themes/shibuya.yaml b/themes/shibuya.yaml index d63235ff..289e46bb 100644 --- a/themes/shibuya.yaml +++ b/themes/shibuya.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jeroen-meijer.shibuya" version: "1.0.2" installs: 9103 + rating: 5 + ratings: 3 author: "Jeroen Meijer" repo: "https://github.com/jeroen-meijer/shibuya" url: "https://marketplace.visualstudio.com/items?itemName=jeroen-meijer.shibuya" diff --git a/themes/shifting-sands.yaml b/themes/shifting-sands.yaml index c31d160d..77e947df 100644 --- a/themes/shifting-sands.yaml +++ b/themes/shifting-sands.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MrLizardAndCompany.shifting-sands" version: "0.2.6" installs: 395 + rating: 5 + ratings: 1 author: "Mr Lizard & Company" repo: "https://github.com/webstek/shifting_sands" url: "https://marketplace.visualstudio.com/items?itemName=MrLizardAndCompany.shifting-sands" diff --git a/themes/shiina.yaml b/themes/shiina.yaml index 6f80997e..2c5bdc75 100644 --- a/themes/shiina.yaml +++ b/themes/shiina.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yarnaimo.shiina-theme" version: "0.1.3" installs: 108 + rating: 0 + ratings: 0 author: "yamaimo" repo: "https://github.com/yarnaimo/shiina" url: "https://marketplace.visualstudio.com/items?itemName=yarnaimo.shiina-theme" diff --git a/themes/shinjuku.yaml b/themes/shinjuku.yaml new file mode 100644 index 00000000..be50fc26 --- /dev/null +++ b/themes/shinjuku.yaml @@ -0,0 +1,52 @@ +name: "Shinjuku" +source: + marketplace_id: "SamirRoy.shinjuku-vscode-theme" + version: "0.1.5" + installs: 398 + rating: 0 + ratings: 0 + author: "Samir Roy" + repo: "https://github.com/samir-roy/shinjuku-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SamirRoy.shinjuku-vscode-theme" +colors: + bg: "#191922" + fg: "#D8DEE9" + black: "#090300" + red: "#E6483C" + green: "#00BC5E" + yellow: "#FFF56A" + blue: "#01A0E4" + magenta: "#BB5DA5" + cyan: "#8EE3FF" + white: "#A5A2A2" + brightBlack: "#5C5855" + brightRed: "#F94A3D" + brightGreen: "#00C964" + brightYellow: "#FFF454" + brightBlue: "#01A0E4" + brightMagenta: "#D85CB7" + brightCyan: "#B5E4F4" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 85.1 + black: 0 + red: 34.9 + green: 52.1 + yellow: 97.2 + blue: 45.4 + magenta: 33.3 + cyan: 81.1 + white: 51 + brightBlack: 16.2 + brightRed: 39.6 + brightGreen: 58.3 + brightYellow: 96.5 + brightBlue: 45.4 + brightMagenta: 39.3 + brightCyan: 84.4 + brightWhite: 101.3 diff --git a/themes/shinkai.yaml b/themes/shinkai.yaml index b068f99e..579099c0 100644 --- a/themes/shinkai.yaml +++ b/themes/shinkai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TobiasTimm.umi" version: "1.1.2" installs: 2887 + rating: 0 + ratings: 0 author: "Tobias Timm" repo: "https://github.com/tobiastimm/umi" url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.umi" diff --git a/themes/shinobu-kocho.yaml b/themes/shinobu-kocho.yaml new file mode 100644 index 00000000..66ba1d33 --- /dev/null +++ b/themes/shinobu-kocho.yaml @@ -0,0 +1,52 @@ +name: "Shinobu Kocho" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 739 + rating: 5 + ratings: 1 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" +colors: + bg: "#1F2430" + fg: "#DADBC0" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#95E6CB" + magenta: "#CFBAFA" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#95E6CB" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + pair: null + contrast: + fg: 80.8 + black: 0 + red: 48.6 + green: 65.7 + yellow: 78.7 + blue: 79.1 + magenta: 68.3 + cyan: 79.1 + white: 69.9 + brightBlack: 21.1 + brightRed: 51.1 + brightGreen: 80.2 + brightYellow: 81.8 + brightBlue: 79.1 + brightMagenta: 71.2 + brightCyan: 79.1 + brightWhite: 105.1 diff --git a/themes/shion.yaml b/themes/shion.yaml new file mode 100644 index 00000000..184484f0 --- /dev/null +++ b/themes/shion.yaml @@ -0,0 +1,52 @@ +name: "Shion" +source: + marketplace_id: "HenriLima05.shadowrealm-rebirth" + version: "1.0.0" + installs: 448 + rating: 5 + ratings: 1 + author: "Henri Lima" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.shadowrealm-rebirth" +colors: + bg: "#1A1A1A" + fg: "#F2F2F2" + black: "#1A1A1A" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 98 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/ship-dark.yaml b/themes/ship-dark.yaml index 0dc74e9a..ee5d4ce7 100644 --- a/themes/ship-dark.yaml +++ b/themes/ship-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SHIPAI.shipai" version: "0.0.1" installs: 95 + rating: 0 + ratings: 0 author: "SHIP.AI" repo: "https://github.com/vkyprmr/ship-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SHIPAI.shipai" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 90.9 black: 0 diff --git a/themes/ship-light.yaml b/themes/ship-light.yaml index 798fed9d..c7c23ffd 100644 --- a/themes/ship-light.yaml +++ b/themes/ship-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SHIPAI.shipai" version: "0.0.1" installs: 95 + rating: 0 + ratings: 0 author: "SHIP.AI" repo: "https://github.com/vkyprmr/ship-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SHIPAI.shipai" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "orange" hue: 256 + pair: null contrast: fg: 90 black: 92.1 diff --git a/themes/shiro-sakura-light.yaml b/themes/shiro-sakura-light.yaml new file mode 100644 index 00000000..bae91519 --- /dev/null +++ b/themes/shiro-sakura-light.yaml @@ -0,0 +1,52 @@ +name: "Shiro Sakura (Light" +source: + marketplace_id: "cnrxad.sakura-x" + version: "1.0.0" + installs: 181 + rating: 0 + ratings: 0 + author: "cnrxad" + repo: "https://github.com/cnrxad/sakura-x" + url: "https://marketplace.visualstudio.com/items?itemName=cnrxad.sakura-x" +colors: + bg: "#FFF6FA" + fg: "#403344" + black: "#FFFFFF" + red: "#E05297" + green: "#70C17C" + yellow: "#E5B85C" + blue: "#82A0F8" + magenta: "#D191FF" + cyan: "#7AD2D1" + white: "#403344" + brightBlack: "#FFFFFF" + brightRed: "#E05297" + brightGreen: "#70C17C" + brightYellow: "#E5B85C" + brightBlue: "#82A0F8" + brightMagenta: "#D191FF" + brightCyan: "#7AD2D1" + brightWhite: "#403344" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 93.1 + black: 0 + red: 58.8 + green: 38.8 + yellow: 30.7 + blue: 45.3 + magenta: 40.7 + cyan: 27.9 + white: 93.1 + brightBlack: 0 + brightRed: 58.8 + brightGreen: 38.8 + brightYellow: 30.7 + brightBlue: 45.3 + brightMagenta: 40.7 + brightCyan: 27.9 + brightWhite: 93.1 diff --git a/themes/shirotelin.yaml b/themes/shirotelin.yaml index 43b018e0..bc10593e 100644 --- a/themes/shirotelin.yaml +++ b/themes/shirotelin.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yasukotelin.shirotelin" version: "2.12.0" installs: 1134 + rating: 4 + ratings: 1 author: "yasukotelin" repo: "https://github.com/yasukotelin/shirotelin-vscode" url: "https://marketplace.visualstudio.com/items?itemName=yasukotelin.shirotelin" diff --git a/themes/shiv-vscode-theme.yaml b/themes/shiv-vscode-theme.yaml index 0b9ffa3c..57707359 100644 --- a/themes/shiv-vscode-theme.yaml +++ b/themes/shiv-vscode-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shivanandasai.shiv-vscode-theme" version: "0.0.1" installs: 64 + rating: 0 + ratings: 0 author: "shivananda sai" repo: "https://github.com/ssk090/shiv-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=shivanandasai.shiv-vscode-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/shivam.yaml b/themes/shivam.yaml index 1e16fa5a..4269d27d 100644 --- a/themes/shivam.yaml +++ b/themes/shivam.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "youcancallmeEvans.shivamvscodetheme" version: "0.0.1" installs: 82 + rating: 0 + ratings: 0 author: "Shiva" repo: "https://github.com/youcancallmeEvans/shivamvscodetheme" url: "https://marketplace.visualstudio.com/items?itemName=youcancallmeEvans.shivamvscodetheme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 48.9 black: 0 diff --git a/themes/shoxwave.yaml b/themes/shoxwave.yaml index ee2c51c8..37424032 100644 --- a/themes/shoxwave.yaml +++ b/themes/shoxwave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Shoxwave.shoxwave-vscode-theme" version: "0.0.2" installs: 25 + rating: 0 + ratings: 0 author: "Colt Shivers" repo: "https://github.com/shoxwave/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Shoxwave.shoxwave-vscode-theme" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 57.4 black: 24.4 diff --git a/themes/shrek-contrast.yaml b/themes/shrek-contrast.yaml index 60e074a6..5e0e5edd 100644 --- a/themes/shrek-contrast.yaml +++ b/themes/shrek-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/shrek-light.yaml b/themes/shrek-light.yaml index 18af432f..59f51450 100644 --- a/themes/shrek-light.yaml +++ b/themes/shrek-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/shrek.yaml b/themes/shrek.yaml index d481f9ef..71166c67 100644 --- a/themes/shrek.yaml +++ b/themes/shrek.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/shuri-midnight.yaml b/themes/shuri-midnight.yaml index 9c4b96e1..4f16a94b 100644 --- a/themes/shuri-midnight.yaml +++ b/themes/shuri-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ky12228121.okinawan-themes" version: "0.0.1" installs: 10 + rating: 0 + ratings: 0 author: "Keny Yahat" repo: "https://github.com/ky12228121/okinawan" url: "https://marketplace.visualstudio.com/items?itemName=ky12228121.okinawan-themes" diff --git a/themes/shuvitheme.yaml b/themes/shuvitheme.yaml new file mode 100644 index 00000000..70100a16 --- /dev/null +++ b/themes/shuvitheme.yaml @@ -0,0 +1,52 @@ +name: "ShuviTheme" +source: + marketplace_id: "Shuvi-0.shuvitheme" + version: "0.0.3" + installs: 15 + rating: 0 + ratings: 0 + author: "Shuvi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Shuvi-0.shuvitheme" +colors: + bg: "#151515" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 59.6 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/shydl3.yaml b/themes/shydl3.yaml new file mode 100644 index 00000000..dd507543 --- /dev/null +++ b/themes/shydl3.yaml @@ -0,0 +1,52 @@ +name: "shydl3" +source: + marketplace_id: "shydl3.shydl3" + version: "0.0.2" + installs: 5 + rating: 0 + ratings: 0 + author: "shydl3" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=shydl3.shydl3" +colors: + bg: "#131313" + fg: "#E8E8E8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 92.3 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/siberia.yaml b/themes/siberia.yaml index 7d3b4c0b..6448c495 100644 --- a/themes/siberia.yaml +++ b/themes/siberia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pavel-shatalov.siberia-theme" version: "0.22.0" installs: 278 + rating: 5 + ratings: 1 author: "Pavel" repo: "https://github.com/siberia-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=pavel-shatalov.siberia-theme" diff --git a/themes/side-punk-sql.yaml b/themes/side-punk-sql.yaml index d7d15f61..aa337adf 100644 --- a/themes/side-punk-sql.yaml +++ b/themes/side-punk-sql.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HuachiWu.side-punk-theme" version: "1.0.0" installs: 190 + rating: 0 + ratings: 0 author: "HuachiWu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HuachiWu.side-punk-theme" diff --git a/themes/sidev-monokai-dim-ts.yaml b/themes/sidev-monokai-dim-ts.yaml index a6b89055..7bafa697 100644 --- a/themes/sidev-monokai-dim-ts.yaml +++ b/themes/sidev-monokai-dim-ts.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sidev.monokai-dim-ts" version: "0.0.1" installs: 90 + rating: 5 + ratings: 1 author: "slavko.ivanovic" repo: "https://github.com/slavkoivanovic/sidev-monokai-dim-ts" url: "https://marketplace.visualstudio.com/items?itemName=sidev.monokai-dim-ts" diff --git a/themes/siemor.yaml b/themes/siemor.yaml index 3988fa8a..2665ff8d 100644 --- a/themes/siemor.yaml +++ b/themes/siemor.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dnlytras.siemor" version: "2.1.0" installs: 2230 + rating: 5 + ratings: 2 author: "Dimitrios Lytras" repo: "https://github.com/DimitrisNL/siemor" url: "https://marketplace.visualstudio.com/items?itemName=dnlytras.siemor" diff --git a/themes/siksnis-dev.yaml b/themes/siksnis-dev.yaml new file mode 100644 index 00000000..38db7d1c --- /dev/null +++ b/themes/siksnis-dev.yaml @@ -0,0 +1,52 @@ +name: "siksnis.dev" +source: + marketplace_id: "siksnisdev.siksnis-dev-theme" + version: "0.1.3" + installs: 420 + rating: 0 + ratings: 0 + author: "siksnisdev" + repo: "https://github.com/msiksnis/siksnis.dev-theme" + url: "https://marketplace.visualstudio.com/items?itemName=siksnisdev.siksnis-dev-theme" +colors: + bg: "#111111" + fg: "#FF8B56" + black: "#2A3134" + red: "#673DFF" + green: "#55E513" + yellow: "#F2FF00" + blue: "#098CFF" + magenta: "#AE89FE" + cyan: "#708387" + white: "#D5D5D0" + brightBlack: "#4A4E4F" + brightRed: "#FC4384" + brightGreen: "#55E513" + brightYellow: "#41F0FF" + brightBlue: "#41F0FF" + brightMagenta: "#AE89FE" + brightCyan: "#41F0FF" + brightWhite: "#F9F9F4" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 56.4 + black: 0 + red: 23.9 + green: 73.6 + yellow: 100.4 + blue: 40.7 + magenta: 49.4 + cyan: 34.1 + white: 80.4 + brightBlack: 12.7 + brightRed: 41.7 + brightGreen: 73.6 + brightYellow: 84.6 + brightBlue: 84.6 + brightMagenta: 49.4 + brightCyan: 84.6 + brightWhite: 103.2 diff --git a/themes/silent-code.yaml b/themes/silent-code.yaml index 93b01949..03fcc6f0 100644 --- a/themes/silent-code.yaml +++ b/themes/silent-code.yaml @@ -1,11 +1,13 @@ name: "silent-code" source: - marketplace_id: "tirthdabgar.silent-code-theme-tirth" - version: "1.1.0" - installs: 36 + marketplace_id: "tirthdabgar.silent-code" + version: "0.0.2" + installs: 1 + rating: 0 + ratings: 0 author: "Tirth Dabgar" - repo: "https://github.com/tirthdabgar/silent-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tirthdabgar.silent-code-theme-tirth" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tirthdabgar.silent-code" colors: bg: "#0F111A" fg: "#CFD8DC" diff --git a/themes/silicon-dark.yaml b/themes/silicon-dark.yaml new file mode 100644 index 00000000..42f18ad8 --- /dev/null +++ b/themes/silicon-dark.yaml @@ -0,0 +1,52 @@ +name: "Silicon Dark" +source: + marketplace_id: "lobidu.vscode-theme-silicon" + version: "1.0.7" + installs: 495 + rating: 0 + ratings: 0 + author: "Janis Altherr" + repo: "https://gitlab.com/janis/silicon" + url: "https://marketplace.visualstudio.com/items?itemName=lobidu.vscode-theme-silicon" +colors: + bg: "#1E1E1E" + fg: "#B4C2C2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 66.3 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/silk-petal.yaml b/themes/silk-petal.yaml new file mode 100644 index 00000000..546531b3 --- /dev/null +++ b/themes/silk-petal.yaml @@ -0,0 +1,52 @@ +name: "Silk-Petal" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#252525" + fg: "#FBFBFB" + black: "#252525" + red: "#DC2828" + green: "#29C3A0" + yellow: "#D29922" + blue: "#D924F5" + magenta: "#D924F5" + cyan: "#29C3A0" + white: "#FBFBFB" + brightBlack: "#252525" + brightRed: "#DC2828" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#D924F5" + brightMagenta: "#D924F5" + brightCyan: "#29C3A0" + brightWhite: "#FBFBFB" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 102.3 + black: 0 + red: 27.3 + green: 55.7 + yellow: 49.8 + blue: 35.1 + magenta: 35.1 + cyan: 55.7 + white: 102.3 + brightBlack: 0 + brightRed: 27.3 + brightGreen: 55.7 + brightYellow: 49.8 + brightBlue: 35.1 + brightMagenta: 35.1 + brightCyan: 55.7 + brightWhite: 102.3 diff --git a/themes/silo.yaml b/themes/silo.yaml new file mode 100644 index 00000000..7316d964 --- /dev/null +++ b/themes/silo.yaml @@ -0,0 +1,52 @@ +name: "SILO" +source: + marketplace_id: "mp76.silo" + version: "0.0.8" + installs: 50 + rating: 0 + ratings: 0 + author: "mp76" + repo: "https://github.com/marepilc/silo" + url: "https://marketplace.visualstudio.com/items?itemName=mp76.silo" +colors: + bg: "#2F2C2B" + fg: "#D5CFC9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#C9C94F" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#DBDB5B" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 73.6 + black: 0 + red: 23.4 + green: 49.6 + yellow: 66.3 + blue: 24.1 + magenta: 26.4 + cyan: 44.2 + white: 86.7 + brightBlack: 18.7 + brightRed: 35.2 + brightGreen: 60.2 + brightYellow: 76.8 + brightBlue: 36.6 + brightMagenta: 42 + brightCyan: 52 + brightWhite: 86.7 diff --git a/themes/silot-dark-classic.yaml b/themes/silot-dark-classic.yaml index 641c2fc2..3a6eb54b 100644 --- a/themes/silot-dark-classic.yaml +++ b/themes/silot-dark-classic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Joshimcse.silot-ui-theme" version: "0.1.2" installs: 696 + rating: 5 + ratings: 2 author: "Joshim Uddin" repo: "https://github.com/joshimcse/vscode-syloti-theme" url: "https://marketplace.visualstudio.com/items?itemName=Joshimcse.silot-ui-theme" diff --git a/themes/silvermist.yaml b/themes/silvermist.yaml index 406f5990..f966570d 100644 --- a/themes/silvermist.yaml +++ b/themes/silvermist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "salmanjt.silvermist" version: "0.0.1" installs: 1 + rating: 0 + ratings: 0 author: "Salman Tahir" repo: "https://github.com/salmanjt/silvermist" url: "https://marketplace.visualstudio.com/items?itemName=salmanjt.silvermist" diff --git a/themes/silverwolf.yaml b/themes/silverwolf.yaml index be3a9bc2..c18ff0d7 100644 --- a/themes/silverwolf.yaml +++ b/themes/silverwolf.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PlutonicVoid.silverwolf" version: "1.0.0" installs: 266 + rating: 0 + ratings: 0 author: "PlutonicVoid" repo: "https://github.com/ThanatosSystemOmegaVI/silverwolf-theme" url: "https://marketplace.visualstudio.com/items?itemName=PlutonicVoid.silverwolf" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 106.4 black: 0 diff --git a/themes/simble.yaml b/themes/simble.yaml new file mode 100644 index 00000000..1d9f6b2c --- /dev/null +++ b/themes/simble.yaml @@ -0,0 +1,52 @@ +name: "Simble" +source: + marketplace_id: "tylandavis.simble-theme" + version: "0.0.1" + installs: 46 + rating: 0 + ratings: 0 + author: "Tylan Davis" + repo: "https://github.com/tylandavis/simble-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tylandavis.simble-theme" +colors: + bg: "#111111" + fg: "#888888" + black: "#333333" + red: "#E05E71" + green: "#95D97D" + yellow: "#FB9941" + blue: "#4BAED5" + magenta: "#8565B6" + cyan: "#4BD5CF" + white: "#CCCCCC" + brightBlack: "#666666" + brightRed: "#FF8798" + brightGreen: "#C3FFAD" + brightYellow: "#FFBF84" + brightBlue: "#90E0FF" + brightMagenta: "#BB9DE8" + brightCyan: "#98FFFB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 38.1 + black: 0 + red: 39.4 + green: 72.7 + yellow: 59.7 + blue: 52.2 + magenta: 29.1 + cyan: 69.3 + white: 75.2 + brightBlack: 22.5 + brightRed: 56.9 + brightGreen: 96.9 + brightYellow: 75.1 + brightBlue: 80.7 + brightMagenta: 56.1 + brightCyan: 96.2 + brightWhite: 107.4 diff --git a/themes/simple-3000.yaml b/themes/simple-3000.yaml index bbca4cea..d0f106e3 100644 --- a/themes/simple-3000.yaml +++ b/themes/simple-3000.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "simpleshadow.simple-3000" version: "0.0.17" installs: 837 + rating: 0 + ratings: 0 author: "simpleshadow" repo: "https://github.com/simpleshadow/simple-3000" url: "https://marketplace.visualstudio.com/items?itemName=simpleshadow.simple-3000" diff --git a/themes/simple-calm-dark.yaml b/themes/simple-calm-dark.yaml index 06000b9b..2a45dd4e 100644 --- a/themes/simple-calm-dark.yaml +++ b/themes/simple-calm-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "syukronarie.simple-calm-dark" version: "0.0.2" installs: 240 + rating: 5 + ratings: 1 author: "Arie Syukron" repo: "https://github.com/syukronarie/simple-calm-dark" url: "https://marketplace.visualstudio.com/items?itemName=syukronarie.simple-calm-dark" diff --git a/themes/simple-muted-dark.yaml b/themes/simple-muted-dark.yaml new file mode 100644 index 00000000..07d25784 --- /dev/null +++ b/themes/simple-muted-dark.yaml @@ -0,0 +1,52 @@ +name: "Simple Muted - Dark" +source: + marketplace_id: "Kang8m.simple-muted" + version: "0.0.3" + installs: 16 + rating: 0 + ratings: 0 + author: "Kang8m" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kang8m.simple-muted" +colors: + bg: "#231F20" + fg: "#EFE6DD" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: "Simple Muted - Light" + contrast: + fg: 90.4 + black: 0 + red: 25.6 + green: 50.6 + yellow: 41.7 + blue: 13.9 + magenta: 25 + cyan: 39 + white: 14 + brightBlack: 20.9 + brightRed: 25.6 + brightGreen: 59.2 + brightYellow: 59.2 + brightBlue: 13.9 + brightMagenta: 25 + brightCyan: 39 + brightWhite: 51.4 diff --git a/themes/simple-muted-light.yaml b/themes/simple-muted-light.yaml new file mode 100644 index 00000000..7ae10c65 --- /dev/null +++ b/themes/simple-muted-light.yaml @@ -0,0 +1,52 @@ +name: "Simple Muted - Light" +source: + marketplace_id: "Kang8m.simple-muted" + version: "0.0.3" + installs: 16 + rating: 0 + ratings: 0 + author: "Kang8m" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kang8m.simple-muted" +colors: + bg: "#D9D9D6" + fg: "#212721" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: "Simple Muted - Dark" + contrast: + fg: 79.8 + black: 83.7 + red: 51.6 + green: 26.9 + yellow: 35.6 + blue: 63.7 + magenta: 52.2 + cyan: 38.3 + white: 63.6 + brightBlack: 56.4 + brightRed: 51.6 + brightGreen: 18.6 + brightYellow: 18.6 + brightBlue: 63.7 + brightMagenta: 52.2 + brightCyan: 38.3 + brightWhite: 26.1 diff --git a/themes/simple-red-dark.yaml b/themes/simple-red-dark.yaml index 01758aba..1090b9a2 100644 --- a/themes/simple-red-dark.yaml +++ b/themes/simple-red-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Dionannd.simpledark-vscode-theme" version: "0.0.3" installs: 467 + rating: 0 + ratings: 0 author: "Dionannd" repo: "https://github.com/dionannd/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Dionannd.simpledark-vscode-theme" diff --git a/themes/simpledark.yaml b/themes/simpledark.yaml index 50cebd4d..47b5cba3 100644 --- a/themes/simpledark.yaml +++ b/themes/simpledark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jovejonovski.softdark" version: "1.0.3" installs: 1024 + rating: 0 + ratings: 0 author: "Jove Jonovski" repo: "https://github.com/datyin/softdark" url: "https://marketplace.visualstudio.com/items?itemName=jovejonovski.softdark" diff --git a/themes/sinergyext.yaml b/themes/sinergyext.yaml index ed7178d8..76ca2807 100644 --- a/themes/sinergyext.yaml +++ b/themes/sinergyext.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jefersonquiguantar.sinergy" version: "0.0.1" installs: 57 + rating: 0 + ratings: 0 author: "jefersonquiguantar" repo: "https://github.com/jefersonqui/Sinergy" url: "https://marketplace.visualstudio.com/items?itemName=jefersonquiguantar.sinergy" diff --git a/themes/sirius-astral.yaml b/themes/sirius-astral.yaml index cb542e92..bae29507 100644 --- a/themes/sirius-astral.yaml +++ b/themes/sirius-astral.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" installs: 512 + rating: 5 + ratings: 1 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" diff --git a/themes/sirius-glow.yaml b/themes/sirius-glow.yaml index b2a36d00..25f8c404 100644 --- a/themes/sirius-glow.yaml +++ b/themes/sirius-glow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" installs: 512 + rating: 5 + ratings: 1 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" diff --git a/themes/sirius-nebula.yaml b/themes/sirius-nebula.yaml index 74d56d76..11572c09 100644 --- a/themes/sirius-nebula.yaml +++ b/themes/sirius-nebula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" installs: 512 + rating: 5 + ratings: 1 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" diff --git a/themes/sirius-pulsar.yaml b/themes/sirius-pulsar.yaml index 039d0cc9..b786b244 100644 --- a/themes/sirius-pulsar.yaml +++ b/themes/sirius-pulsar.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" installs: 512 + rating: 5 + ratings: 1 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" diff --git a/themes/sirius-vesper.yaml b/themes/sirius-vesper.yaml index 4d042336..f7a26071 100644 --- a/themes/sirius-vesper.yaml +++ b/themes/sirius-vesper.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" installs: 512 + rating: 5 + ratings: 1 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" diff --git a/themes/sirius-vibe.yaml b/themes/sirius-vibe.yaml index 92b06e5f..e81c7784 100644 --- a/themes/sirius-vibe.yaml +++ b/themes/sirius-vibe.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" installs: 512 + rating: 5 + ratings: 1 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" diff --git a/themes/sirius-vortex.yaml b/themes/sirius-vortex.yaml index ee7a5bfd..430e9840 100644 --- a/themes/sirius-vortex.yaml +++ b/themes/sirius-vortex.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" installs: 512 + rating: 5 + ratings: 1 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" diff --git a/themes/sirius-zenith.yaml b/themes/sirius-zenith.yaml index 746d1e95..f3653076 100644 --- a/themes/sirius-zenith.yaml +++ b/themes/sirius-zenith.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VLMADev.siriusthemes" version: "1.1.5" installs: 512 + rating: 5 + ratings: 1 author: "VLMADev" repo: "https://github.com/VLMADev/siriusthemes" url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" diff --git a/themes/sissi-ga.yaml b/themes/sissi-ga.yaml new file mode 100644 index 00000000..0e2a5563 --- /dev/null +++ b/themes/sissi-ga.yaml @@ -0,0 +1,52 @@ +name: "Sissi_Ga" +source: + marketplace_id: "Novias.sissi-ga" + version: "0.2.2" + installs: 167 + rating: 0 + ratings: 0 + author: "Novias" + repo: "https://github.com/NOVIAS/Sissi-ga" + url: "https://marketplace.visualstudio.com/items?itemName=Novias.sissi-ga" +colors: + bg: "#2A2A2A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#DEDEDE" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E6DEDE" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 104 + black: 0 + red: 23.9 + green: 50.2 + yellow: 82.8 + blue: 24.6 + magenta: 26.9 + cyan: 44.7 + white: 82.8 + brightBlack: 19.2 + brightRed: 35.7 + brightGreen: 60.7 + brightYellow: 92.8 + brightBlue: 37.2 + brightMagenta: 42.5 + brightCyan: 52.6 + brightWhite: 83.9 diff --git a/themes/sith.yaml b/themes/sith.yaml index 68e6305c..1e6c57c0 100644 --- a/themes/sith.yaml +++ b/themes/sith.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JohannesFreutel.sith" version: "0.0.1" installs: 27 + rating: 0 + ratings: 0 author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.sith" diff --git a/themes/sj-pinkish-theme.yaml b/themes/sj-pinkish-theme.yaml index ae6ed34c..510d381c 100644 --- a/themes/sj-pinkish-theme.yaml +++ b/themes/sj-pinkish-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SAKSHAMJOSHI.sj-azure-theme" version: "0.1.0" installs: 10 + rating: 5 + ratings: 2 author: "SAKSHAM JOSHI" repo: "https://github.com/saksham-joshi/SJ-Theme-VsCode" url: "https://marketplace.visualstudio.com/items?itemName=SAKSHAMJOSHI.sj-azure-theme" diff --git a/themes/sj-theme.yaml b/themes/sj-theme.yaml index e784290a..30030948 100644 --- a/themes/sj-theme.yaml +++ b/themes/sj-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SAKSHAMJOSHI.sj-azure-theme" version: "0.1.0" installs: 10 + rating: 5 + ratings: 2 author: "SAKSHAM JOSHI" repo: "https://github.com/saksham-joshi/SJ-Theme-VsCode" url: "https://marketplace.visualstudio.com/items?itemName=SAKSHAMJOSHI.sj-azure-theme" diff --git a/themes/sk5s-vsgt.yaml b/themes/sk5s-vsgt.yaml index cdc918d6..c49c4c5f 100644 --- a/themes/sk5s-vsgt.yaml +++ b/themes/sk5s-vsgt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sk5s.sk5s-vs-green-theme" version: "1.5.0" installs: 1590 + rating: 4 + ratings: 1 author: "sk5s" repo: "https://github.com/sk5s/sk5s-vsgt" url: "https://marketplace.visualstudio.com/items?itemName=sk5s.sk5s-vs-green-theme" diff --git a/themes/skeswa-s-noctis-azureus.yaml b/themes/skeswa-s-noctis-azureus.yaml new file mode 100644 index 00000000..8536d1e9 --- /dev/null +++ b/themes/skeswa-s-noctis-azureus.yaml @@ -0,0 +1,52 @@ +name: "@skeswa's Noctis Azureus" +source: + marketplace_id: "skeswa.skeswa-noctis" + version: "10.45.1" + installs: 4673 + rating: 0 + ratings: 0 + author: "Sandile Keswa" + repo: "https://github.com/skeswa/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" +colors: + bg: "#07273B" + fg: "#BECFDA" + black: "#28353E" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#AEC3D0" + brightBlack: "#475E6C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#BECFDA" +meta: + mode: "dark" + accent: "orange" + hue: 241 + pair: null + contrast: + fg: 72.9 + black: 0 + red: 38.5 + green: 75 + yellow: 65 + blue: 50 + magenta: 43.6 + cyan: 68.5 + white: 65.5 + brightBlack: 15.5 + brightRed: 43.8 + brightGreen: 77.2 + brightYellow: 51.8 + brightBlue: 55.3 + brightMagenta: 56 + brightCyan: 71.9 + brightWhite: 72.9 diff --git a/themes/skeswa-s-noctis-bordo.yaml b/themes/skeswa-s-noctis-bordo.yaml new file mode 100644 index 00000000..80d3e21b --- /dev/null +++ b/themes/skeswa-s-noctis-bordo.yaml @@ -0,0 +1,52 @@ +name: "@skeswa's Noctis Bordo" +source: + marketplace_id: "skeswa.skeswa-noctis" + version: "10.45.1" + installs: 4673 + rating: 0 + ratings: 0 + author: "Sandile Keswa" + repo: "https://github.com/skeswa/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" +colors: + bg: "#322A2D" + fg: "#CBBEC2" + black: "#47393E" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B9ACB0" + brightBlack: "#69545B" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#CBBEC2" +meta: + mode: "dark" + accent: "orange" + hue: 353 + pair: null + contrast: + fg: 65 + black: 0 + red: 37.3 + green: 73.7 + yellow: 63.7 + blue: 48.7 + magenta: 42.4 + cyan: 67.3 + white: 54.8 + brightBlack: 13.6 + brightRed: 42.5 + brightGreen: 75.9 + brightYellow: 50.6 + brightBlue: 54 + brightMagenta: 54.7 + brightCyan: 70.6 + brightWhite: 65 diff --git a/themes/skeswa-s-noctis-hibernus.yaml b/themes/skeswa-s-noctis-hibernus.yaml new file mode 100644 index 00000000..6f3a1a17 --- /dev/null +++ b/themes/skeswa-s-noctis-hibernus.yaml @@ -0,0 +1,52 @@ +name: "@skeswa's Noctis Hibernus" +source: + marketplace_id: "skeswa.skeswa-noctis" + version: "10.45.1" + installs: 4673 + rating: 0 + ratings: 0 + author: "Sandile Keswa" + repo: "https://github.com/skeswa/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" +colors: + bg: "#F4F6F6" + fg: "#005661" + black: "#003B42" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#004D57" + brightRed: "#FF4000" + brightGreen: "#00D17A" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.8 + black: 92 + red: 59.7 + green: 46.7 + yellow: 38.5 + blue: 53.2 + magenta: 49.9 + cyan: 38.5 + white: 44.9 + brightBlack: 86 + brightRed: 55.3 + brightGreen: 32.8 + brightYellow: 39.8 + brightBlue: 46.5 + brightMagenta: 45.6 + brightCyan: 31.5 + brightWhite: 27.6 diff --git a/themes/skeswa-s-noctis-lilac.yaml b/themes/skeswa-s-noctis-lilac.yaml new file mode 100644 index 00000000..d082e448 --- /dev/null +++ b/themes/skeswa-s-noctis-lilac.yaml @@ -0,0 +1,52 @@ +name: "@skeswa's Noctis Lilac" +source: + marketplace_id: "skeswa.skeswa-noctis" + version: "10.45.1" + installs: 4673 + rating: 0 + ratings: 0 + author: "Sandile Keswa" + repo: "https://github.com/skeswa/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" +colors: + bg: "#F2F1F8" + fg: "#0C006B" + black: "#0C006B" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#0F0080" + brightRed: "#FF4000" + brightGreen: "#00D17A" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.6 + black: 94.6 + red: 57.5 + green: 44.5 + yellow: 36.2 + blue: 50.9 + magenta: 47.6 + cyan: 36.2 + white: 42.6 + brightBlack: 92.9 + brightRed: 53 + brightGreen: 30.5 + brightYellow: 37.5 + brightBlue: 44.2 + brightMagenta: 43.3 + brightCyan: 29.3 + brightWhite: 25.3 diff --git a/themes/skeswa-s-noctis-lux.yaml b/themes/skeswa-s-noctis-lux.yaml new file mode 100644 index 00000000..03b53a1e --- /dev/null +++ b/themes/skeswa-s-noctis-lux.yaml @@ -0,0 +1,52 @@ +name: "@skeswa's Noctis Lux" +source: + marketplace_id: "skeswa.skeswa-noctis" + version: "10.45.1" + installs: 4673 + rating: 0 + ratings: 0 + author: "Sandile Keswa" + repo: "https://github.com/skeswa/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" +colors: + bg: "#FEF8EC" + fg: "#005661" + black: "#003B42" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#004D57" + brightRed: "#FF4000" + brightGreen: "#00D17A" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 84.5 + black: 93.7 + red: 61.5 + green: 48.5 + yellow: 40.2 + blue: 54.9 + magenta: 51.6 + cyan: 40.2 + white: 46.6 + brightBlack: 87.7 + brightRed: 57 + brightGreen: 34.5 + brightYellow: 41.5 + brightBlue: 48.2 + brightMagenta: 47.3 + brightCyan: 33.3 + brightWhite: 29.3 diff --git a/themes/skeswa-s-noctis-minimus.yaml b/themes/skeswa-s-noctis-minimus.yaml new file mode 100644 index 00000000..8ab13438 --- /dev/null +++ b/themes/skeswa-s-noctis-minimus.yaml @@ -0,0 +1,52 @@ +name: "@skeswa's Noctis Minimus" +source: + marketplace_id: "skeswa.skeswa-noctis" + version: "10.45.1" + installs: 4673 + rating: 0 + ratings: 0 + author: "Sandile Keswa" + repo: "https://github.com/skeswa/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" +colors: + bg: "#1B2932" + fg: "#C5CDD3" + black: "#182A35" + red: "#C08872" + green: "#72C09F" + yellow: "#C8A984" + blue: "#6196B8" + magenta: "#C28097" + cyan: "#72B7C0" + white: "#C5CDD3" + brightBlack: "#425866" + brightRed: "#CA8468" + brightGreen: "#84C8AB" + brightYellow: "#D1AA7B" + brightBlue: "#68A4CA" + brightMagenta: "#C88DA2" + brightCyan: "#84C0C8" + brightWhite: "#C5D1D3" +meta: + mode: "dark" + accent: "orange" + hue: 237 + pair: null + contrast: + fg: 72.2 + black: 0 + red: 41.9 + green: 56.7 + yellow: 55.1 + blue: 39.3 + magenta: 40.9 + cyan: 54.1 + white: 72.2 + brightBlack: 12.8 + brightRed: 42 + brightGreen: 62 + brightYellow: 56.6 + brightBlue: 46.1 + brightMagenta: 46.3 + brightCyan: 59.6 + brightWhite: 73.9 diff --git a/themes/skeswa-s-noctis-obscuro.yaml b/themes/skeswa-s-noctis-obscuro.yaml new file mode 100644 index 00000000..33360b95 --- /dev/null +++ b/themes/skeswa-s-noctis-obscuro.yaml @@ -0,0 +1,52 @@ +name: "@skeswa's Noctis Obscuro" +source: + marketplace_id: "skeswa.skeswa-noctis" + version: "10.45.1" + installs: 4673 + rating: 0 + ratings: 0 + author: "Sandile Keswa" + repo: "https://github.com/skeswa/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" +colors: + bg: "#031417" + fg: "#B2CACD" + black: "#324A4D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B2CACD" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "dark" + accent: "orange" + hue: 209 + pair: null + contrast: + fg: 71.2 + black: 10 + red: 40.9 + green: 77.4 + yellow: 67.4 + blue: 52.4 + magenta: 46 + cyan: 70.9 + white: 71.2 + brightBlack: 21 + brightRed: 46.2 + brightGreen: 79.6 + brightYellow: 54.3 + brightBlue: 57.7 + brightMagenta: 58.4 + brightCyan: 74.3 + brightWhite: 77.7 diff --git a/themes/skeswa-s-noctis-sereno.yaml b/themes/skeswa-s-noctis-sereno.yaml new file mode 100644 index 00000000..8d1d7d4e --- /dev/null +++ b/themes/skeswa-s-noctis-sereno.yaml @@ -0,0 +1,52 @@ +name: "@skeswa's Noctis Sereno" +source: + marketplace_id: "skeswa.skeswa-noctis" + version: "10.45.1" + installs: 4673 + rating: 0 + ratings: 0 + author: "Sandile Keswa" + repo: "https://github.com/skeswa/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" +colors: + bg: "#062E32" + fg: "#B2CACD" + black: "#324A4D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B2CACD" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "dark" + accent: "orange" + hue: 205 + pair: null + contrast: + fg: 68 + black: 0 + red: 37.7 + green: 74.1 + yellow: 64.1 + blue: 49.2 + magenta: 42.8 + cyan: 67.7 + white: 68 + brightBlack: 17.8 + brightRed: 42.9 + brightGreen: 76.3 + brightYellow: 51 + brightBlue: 54.4 + brightMagenta: 55.2 + brightCyan: 71 + brightWhite: 74.5 diff --git a/themes/skeswa-s-noctis-uva.yaml b/themes/skeswa-s-noctis-uva.yaml new file mode 100644 index 00000000..c4b83cbe --- /dev/null +++ b/themes/skeswa-s-noctis-uva.yaml @@ -0,0 +1,52 @@ +name: "@skeswa's Noctis Uva" +source: + marketplace_id: "skeswa.skeswa-noctis" + version: "10.45.1" + installs: 4673 + rating: 0 + ratings: 0 + author: "Sandile Keswa" + repo: "https://github.com/skeswa/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" +colors: + bg: "#292640" + fg: "#C5C2D6" + black: "#302F3D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B6B3CC" + brightBlack: "#504E65" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C5C2D6" +meta: + mode: "dark" + accent: "orange" + hue: 288 + pair: null + contrast: + fg: 67.3 + black: 0 + red: 37.8 + green: 74.3 + yellow: 64.3 + blue: 49.3 + magenta: 42.9 + cyan: 67.8 + white: 59 + brightBlack: 10.6 + brightRed: 43.1 + brightGreen: 76.5 + brightYellow: 51.2 + brightBlue: 54.6 + brightMagenta: 55.3 + brightCyan: 71.2 + brightWhite: 67.3 diff --git a/themes/skeswa-s-noctis-viola.yaml b/themes/skeswa-s-noctis-viola.yaml new file mode 100644 index 00000000..f98d0a09 --- /dev/null +++ b/themes/skeswa-s-noctis-viola.yaml @@ -0,0 +1,52 @@ +name: "@skeswa's Noctis Viola" +source: + marketplace_id: "skeswa.skeswa-noctis" + version: "10.45.1" + installs: 4673 + rating: 0 + ratings: 0 + author: "Sandile Keswa" + repo: "https://github.com/skeswa/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" +colors: + bg: "#30243D" + fg: "#CCBFD9" + black: "#362F3D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#BFAFCF" + brightBlack: "#594E65" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#CCBFD9" +meta: + mode: "dark" + accent: "orange" + hue: 306 + pair: null + contrast: + fg: 67.2 + black: 0 + red: 37.8 + green: 74.3 + yellow: 64.3 + blue: 49.3 + magenta: 42.9 + cyan: 67.8 + white: 58.7 + brightBlack: 11.4 + brightRed: 43.1 + brightGreen: 76.5 + brightYellow: 51.1 + brightBlue: 54.6 + brightMagenta: 55.3 + brightCyan: 71.2 + brightWhite: 67.2 diff --git a/themes/skeswa-s-noctis.yaml b/themes/skeswa-s-noctis.yaml new file mode 100644 index 00000000..7512ff73 --- /dev/null +++ b/themes/skeswa-s-noctis.yaml @@ -0,0 +1,52 @@ +name: "@skeswa's Noctis" +source: + marketplace_id: "skeswa.skeswa-noctis" + version: "10.45.1" + installs: 4673 + rating: 0 + ratings: 0 + author: "Sandile Keswa" + repo: "https://github.com/skeswa/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" +colors: + bg: "#052529" + fg: "#B2CACD" + black: "#324A4D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B2CACD" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "dark" + accent: "orange" + hue: 207 + pair: null + contrast: + fg: 69.4 + black: 8.2 + red: 39.1 + green: 75.6 + yellow: 65.6 + blue: 50.6 + magenta: 44.2 + cyan: 69.1 + white: 69.4 + brightBlack: 19.2 + brightRed: 44.4 + brightGreen: 77.8 + brightYellow: 52.5 + brightBlue: 55.9 + brightMagenta: 56.6 + brightCyan: 72.5 + brightWhite: 75.9 diff --git a/themes/sky-at-night.yaml b/themes/sky-at-night.yaml index edda63ac..2ee3209f 100644 --- a/themes/sky-at-night.yaml +++ b/themes/sky-at-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AyushChugh.sky-at-night" version: "4.2.1" installs: 2193 + rating: 5 + ratings: 2 author: "Ayush Chugh" repo: "https://github.com/Ayush-Chugh-2006/Sky-At-Night-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AyushChugh.sky-at-night" diff --git a/themes/sky-blue-tranquility-focus.yaml b/themes/sky-blue-tranquility-focus.yaml index 2af64d77..0e846d3e 100644 --- a/themes/sky-blue-tranquility-focus.yaml +++ b/themes/sky-blue-tranquility-focus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/sky-miami-vice.yaml b/themes/sky-miami-vice.yaml index ec4cdae2..8048a94a 100644 --- a/themes/sky-miami-vice.yaml +++ b/themes/sky-miami-vice.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sky-designs.sky-themes" version: "0.0.3" installs: 498 + rating: 0 + ratings: 0 author: "sky-designs" repo: "https://gitlab.com/mskyberg/sky-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=sky-designs.sky-themes" diff --git a/themes/sky-neon.yaml b/themes/sky-neon.yaml index 38f11e9c..211ed878 100644 --- a/themes/sky-neon.yaml +++ b/themes/sky-neon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sky-designs.sky-themes" version: "0.0.3" installs: 498 + rating: 0 + ratings: 0 author: "sky-designs" repo: "https://gitlab.com/mskyberg/sky-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=sky-designs.sky-themes" diff --git a/themes/sky-real-abyss.yaml b/themes/sky-real-abyss.yaml new file mode 100644 index 00000000..fc9a205c --- /dev/null +++ b/themes/sky-real-abyss.yaml @@ -0,0 +1,52 @@ +name: "sky-real-abyss" +source: + marketplace_id: "sky-designs.sky-themes" + version: "0.0.3" + installs: 498 + rating: 0 + ratings: 0 + author: "sky-designs" + repo: "https://gitlab.com/mskyberg/sky-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=sky-designs.sky-themes" +colors: + bg: "#000C18" + fg: "#6688CC" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 242 + pair: null + contrast: + fg: 38.7 + black: 0 + red: 64.2 + green: 91.6 + yellow: 96.5 + blue: 82.1 + magenta: 75.5 + cyan: 96.7 + white: 75.4 + brightBlack: 0 + brightRed: 52.5 + brightGreen: 87.6 + brightYellow: 91.3 + brightBlue: 63 + brightMagenta: 51 + brightCyan: 94.6 + brightWhite: 107.6 diff --git a/themes/skye-wind-light.yaml b/themes/skye-wind-light.yaml index b058a262..7283e5f5 100644 --- a/themes/skye-wind-light.yaml +++ b/themes/skye-wind-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wilmarj.skye-wind" version: "1.6.4" installs: 233 + rating: 0 + ratings: 0 author: "wilmarj" repo: "https://github.com/wilmarjongkind/skye-wind" url: "https://marketplace.visualstudio.com/items?itemName=wilmarj.skye-wind" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 255 + pair: null contrast: fg: 65.1 black: 11.4 diff --git a/themes/skye-wind.yaml b/themes/skye-wind.yaml index 954b0e7d..2d53698a 100644 --- a/themes/skye-wind.yaml +++ b/themes/skye-wind.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wilmarj.skye-wind" version: "1.6.4" installs: 233 + rating: 0 + ratings: 0 author: "wilmarj" repo: "https://github.com/wilmarjongkind/skye-wind" url: "https://marketplace.visualstudio.com/items?itemName=wilmarj.skye-wind" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 258 + pair: null contrast: fg: 67.6 black: 14 diff --git a/themes/skyline.yaml b/themes/skyline.yaml index c06c7555..ce2d3e49 100644 --- a/themes/skyline.yaml +++ b/themes/skyline.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hydralite.hydralite-skyline" version: "0.0.3" installs: 3717 + rating: 5 + ratings: 3 author: "Hydralite" repo: "https://github.com/hydralite/skyline" url: "https://marketplace.visualstudio.com/items?itemName=hydralite.hydralite-skyline" diff --git a/themes/slack-theme-aubergine-dark.yaml b/themes/slack-theme-aubergine-dark.yaml index e9f89c52..9fd807ba 100644 --- a/themes/slack-theme-aubergine-dark.yaml +++ b/themes/slack-theme-aubergine-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "felipe-mendes.slack-theme" version: "1.9.17" installs: 514505 + rating: 4.64 + ratings: 22 author: "Felipe Mendes" repo: "https://github.com/felipemendes/slack-theme" url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" diff --git a/themes/slack-theme-aubergine-new.yaml b/themes/slack-theme-aubergine-new.yaml index 80ee46d2..24477d61 100644 --- a/themes/slack-theme-aubergine-new.yaml +++ b/themes/slack-theme-aubergine-new.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "felipe-mendes.slack-theme" version: "1.9.17" installs: 514505 + rating: 4.64 + ratings: 22 author: "Felipe Mendes" repo: "https://github.com/felipemendes/slack-theme" url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" diff --git a/themes/slack-theme-dark.yaml b/themes/slack-theme-dark.yaml index 3dce49c5..880c717d 100644 --- a/themes/slack-theme-dark.yaml +++ b/themes/slack-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tanmay.slack-theme" version: "1.0.0" installs: 5530 + rating: 3 + ratings: 2 author: "tanmay" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tanmay.slack-theme" diff --git a/themes/slack-theme-hoth.yaml b/themes/slack-theme-hoth.yaml new file mode 100644 index 00000000..7af4ecf3 --- /dev/null +++ b/themes/slack-theme-hoth.yaml @@ -0,0 +1,52 @@ +name: "Slack Theme Hoth" +source: + marketplace_id: "felipe-mendes.slack-theme" + version: "1.9.17" + installs: 514505 + rating: 4.64 + ratings: 22 + author: "Felipe Mendes" + repo: "https://github.com/felipemendes/slack-theme" + url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 67.7 + green: 44.9 + yellow: 31.7 + blue: 66.3 + magenta: 72.6 + cyan: 51.8 + white: 0 + brightBlack: 50.6 + brightRed: 67.7 + brightGreen: 44.9 + brightYellow: 31.7 + brightBlue: 66.3 + brightMagenta: 72.6 + brightCyan: 51.8 + brightWhite: 0 diff --git a/themes/slack-theme.yaml b/themes/slack-theme.yaml index 85524b57..a5b31b9a 100644 --- a/themes/slack-theme.yaml +++ b/themes/slack-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tanmay.slack-theme" version: "1.0.0" installs: 5530 + rating: 3 + ratings: 2 author: "tanmay" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tanmay.slack-theme" diff --git a/themes/slate-blue.yaml b/themes/slate-blue.yaml new file mode 100644 index 00000000..dde4c4d8 --- /dev/null +++ b/themes/slate-blue.yaml @@ -0,0 +1,52 @@ +name: "Slate Blue" +source: + marketplace_id: "MasterSJit.slateblues" + version: "1.0.1" + installs: 16 + rating: 0 + ratings: 0 + author: "Master S Jit" + repo: "https://github.com/MasterSJit/slate-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MasterSJit.slateblues" +colors: + bg: "#232830" + fg: "#DCDFE4" + black: "#1E2229" + red: "#E06C75" + green: "#98C379" + yellow: "#D19A66" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 83.7 + black: 0 + red: 39.7 + green: 59.9 + yellow: 50.3 + blue: 52.3 + magenta: 42.8 + cyan: 52.2 + white: 57 + brightBlack: 18.2 + brightRed: 39.7 + brightGreen: 59.9 + brightYellow: 68.2 + brightBlue: 52.3 + brightMagenta: 42.8 + brightCyan: 52.2 + brightWhite: 104.5 diff --git a/themes/slate-contrast.yaml b/themes/slate-contrast.yaml index b170a6e7..917ea17c 100644 --- a/themes/slate-contrast.yaml +++ b/themes/slate-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/slate-light.yaml b/themes/slate-light.yaml new file mode 100644 index 00000000..232fff0b --- /dev/null +++ b/themes/slate-light.yaml @@ -0,0 +1,52 @@ +name: "slate-light" +source: + marketplace_id: "humbanew.flawuldragon" + version: "0.0.19" + installs: 901 + rating: 0 + ratings: 0 + author: "Humbanew Project" + repo: "https://github.com/humbanew/flawuldragon" + url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" +colors: + bg: "#FFFFFF" + fg: "#19191F" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#566981" + yellow: "#89A7B1" + blue: "#9AADA7" + magenta: "#566981" + cyan: "#89A7B1" + white: "#24242D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#8B9CB2" + brightYellow: "#C6D5DA" + brightBlue: "#D2DBD8" + brightMagenta: "#8B9CB2" + brightCyan: "#C6D5DA" + brightWhite: "#474757" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.3 + black: 0 + red: 80.3 + green: 78.1 + yellow: 50 + blue: 46.5 + magenta: 78.1 + cyan: 50 + white: 102.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 53.9 + brightYellow: 23.7 + brightBlue: 19.9 + brightMagenta: 53.9 + brightCyan: 23.7 + brightWhite: 91 diff --git a/themes/slate-neon.yaml b/themes/slate-neon.yaml new file mode 100644 index 00000000..9fde20de --- /dev/null +++ b/themes/slate-neon.yaml @@ -0,0 +1,52 @@ +name: "Slate Neon" +source: + marketplace_id: "OskarSodel.slate-neon" + version: "1.0.5" + installs: 62 + rating: 0 + ratings: 0 + author: "Oskar Sodel" + repo: "https://github.com/k4rdel/slate-neon" + url: "https://marketplace.visualstudio.com/items?itemName=OskarSodel.slate-neon" +colors: + bg: "#101013" + fg: "#E4E4E4" + black: "#1B1B20" + red: "#FF6FAE" + green: "#A0F0C0" + yellow: "#FFA64F" + blue: "#82B1FF" + magenta: "#C39AFF" + cyan: "#4FE0D0" + white: "#E4E4E4" + brightBlack: "#1B1B20" + brightRed: "#FF6FAE" + brightGreen: "#A0F0C0" + brightYellow: "#FFA64F" + brightBlue: "#82B1FF" + brightMagenta: "#C39AFF" + brightCyan: "#4FE0D0" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 89.9 + black: 0 + red: 51.7 + green: 86.8 + yellow: 65 + blue: 59.2 + magenta: 57.7 + cyan: 74.8 + white: 89.9 + brightBlack: 0 + brightRed: 51.7 + brightGreen: 86.8 + brightYellow: 65 + brightBlue: 59.2 + brightMagenta: 57.7 + brightCyan: 74.8 + brightWhite: 89.9 diff --git a/themes/slate.yaml b/themes/slate.yaml index d8b7b799..ec43a147 100644 --- a/themes/slate.yaml +++ b/themes/slate.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/sleepy-nights.yaml b/themes/sleepy-nights.yaml new file mode 100644 index 00000000..ae13d243 --- /dev/null +++ b/themes/sleepy-nights.yaml @@ -0,0 +1,52 @@ +name: "Sleepy Nights" +source: + marketplace_id: "deformal.sleepy-nights" + version: "0.0.2" + installs: 30 + rating: 0 + ratings: 0 + author: "saurabh jainwal" + repo: "https://github.com/deformal/sleepy-nights" + url: "https://marketplace.visualstudio.com/items?itemName=deformal.sleepy-nights" +colors: + bg: "#21252B" + fg: "#DFD0B8" + black: "#1D2129" + red: "#E85D5D" + green: "#8A9D7A" + yellow: "#C8B898" + blue: "#7A9DAD" + magenta: "#A88D9D" + cyan: "#7A9D9D" + white: "#DFD0B8" + brightBlack: "#4A4E56" + brightRed: "#F88D8D" + brightGreen: "#A8BD9A" + brightYellow: "#E8D8B8" + brightBlue: "#9ABDCD" + brightMagenta: "#C8ADBD" + brightCyan: "#9ABDBD" + brightWhite: "#F8F0D8" +meta: + mode: "dark" + accent: "orange" + hue: 258 + pair: null + contrast: + fg: 76.3 + black: 0 + red: 38 + green: 43.3 + yellow: 62.1 + blue: 43.7 + magenta: 42 + cyan: 43 + white: 76.3 + brightBlack: 10.5 + brightRed: 54.5 + brightGreen: 60.3 + brightYellow: 81 + brightBlue: 61 + brightMagenta: 59.1 + brightCyan: 60.2 + brightWhite: 95.3 diff --git a/themes/sleepy-owl-default-beta.yaml b/themes/sleepy-owl-default-beta.yaml index 8b0730d2..8d646bf4 100644 --- a/themes/sleepy-owl-default-beta.yaml +++ b/themes/sleepy-owl-default-beta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "santosned.theme-sleepy-owl" version: "0.90.1" installs: 93 + rating: 0 + ratings: 0 author: "Sleepy Owl Theme" repo: "https://github.com/santosned/vsc-sleepy-owl-theme" url: "https://marketplace.visualstudio.com/items?itemName=santosned.theme-sleepy-owl" diff --git a/themes/sleepy-owl-greenwich-beta.yaml b/themes/sleepy-owl-greenwich-beta.yaml index 36f9c58f..11876f55 100644 --- a/themes/sleepy-owl-greenwich-beta.yaml +++ b/themes/sleepy-owl-greenwich-beta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "santosned.theme-sleepy-owl" version: "0.90.1" installs: 93 + rating: 0 + ratings: 0 author: "Sleepy Owl Theme" repo: "https://github.com/santosned/vsc-sleepy-owl-theme" url: "https://marketplace.visualstudio.com/items?itemName=santosned.theme-sleepy-owl" diff --git a/themes/sleepy-owl-oak-beta.yaml b/themes/sleepy-owl-oak-beta.yaml index 3c1c12ca..b6e049d6 100644 --- a/themes/sleepy-owl-oak-beta.yaml +++ b/themes/sleepy-owl-oak-beta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "santosned.theme-sleepy-owl" version: "0.90.1" installs: 93 + rating: 0 + ratings: 0 author: "Sleepy Owl Theme" repo: "https://github.com/santosned/vsc-sleepy-owl-theme" url: "https://marketplace.visualstudio.com/items?itemName=santosned.theme-sleepy-owl" diff --git a/themes/slime-color-theme.yaml b/themes/slime-color-theme.yaml index dec54ac4..1e363ca5 100644 --- a/themes/slime-color-theme.yaml +++ b/themes/slime-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "smlombardi.slime" version: "3.2.1" installs: 129894 + rating: 4.95 + ratings: 20 author: "smlombardi" repo: "https://github.com/smlombardi/theme-slime" url: "https://marketplace.visualstudio.com/items?itemName=smlombardi.slime" diff --git a/themes/slime-contrast.yaml b/themes/slime-contrast.yaml index 5df3eac2..591e3dca 100644 --- a/themes/slime-contrast.yaml +++ b/themes/slime-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/slime-light.yaml b/themes/slime-light.yaml index 2f28236d..51007743 100644 --- a/themes/slime-light.yaml +++ b/themes/slime-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/slime-solid-color-theme.yaml b/themes/slime-solid-color-theme.yaml index 461c0a0f..cb104f69 100644 --- a/themes/slime-solid-color-theme.yaml +++ b/themes/slime-solid-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ganevru.slime-solid" version: "1.0.0" installs: 1729 + rating: 5 + ratings: 1 author: "ganevru" repo: "https://github.com/ganevru/theme-slime-solid" url: "https://marketplace.visualstudio.com/items?itemName=ganevru.slime-solid" diff --git a/themes/slime.yaml b/themes/slime.yaml index 87d07b0b..e7ab8d20 100644 --- a/themes/slime.yaml +++ b/themes/slime.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "luanpiegas.slime-color-theme" version: "1.0.0" installs: 131 + rating: 0 + ratings: 0 author: "Luan Piegas" repo: "https://github.com/LuanPiegas/Slime-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=luanpiegas.slime-color-theme" diff --git a/themes/slimy-high-contrast.yaml b/themes/slimy-high-contrast.yaml index 5b8858ab..4592f410 100644 --- a/themes/slimy-high-contrast.yaml +++ b/themes/slimy-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chancestrickland.slimy-theme" version: "0.4.8" installs: 865 + rating: 5 + ratings: 1 author: "Chance Strickland" repo: "https://github.com/chancestrickland/slimy" url: "https://marketplace.visualstudio.com/items?itemName=chancestrickland.slimy-theme" diff --git a/themes/slimy-light.yaml b/themes/slimy-light.yaml index cae96436..6bd943e4 100644 --- a/themes/slimy-light.yaml +++ b/themes/slimy-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chancestrickland.slimy-theme" version: "0.4.8" installs: 865 + rating: 5 + ratings: 1 author: "Chance Strickland" repo: "https://github.com/chancestrickland/slimy" url: "https://marketplace.visualstudio.com/items?itemName=chancestrickland.slimy-theme" diff --git a/themes/slimy.yaml b/themes/slimy.yaml index a3a691f1..517c0ff5 100644 --- a/themes/slimy.yaml +++ b/themes/slimy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chancestrickland.slimy-theme" version: "0.4.8" installs: 865 + rating: 5 + ratings: 1 author: "Chance Strickland" repo: "https://github.com/chancestrickland/slimy" url: "https://marketplace.visualstudio.com/items?itemName=chancestrickland.slimy-theme" diff --git a/themes/slinkwave.yaml b/themes/slinkwave.yaml index e20253bf..354f8616 100644 --- a/themes/slinkwave.yaml +++ b/themes/slinkwave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bholmesdev.slinkwave" version: "0.0.2" installs: 1163 + rating: 5 + ratings: 1 author: "Ben Holmes" repo: "https://github.com/slinkity/slinkwave-themes" url: "https://marketplace.visualstudio.com/items?itemName=bholmesdev.slinkwave" diff --git a/themes/sloth-highlander-theme-3.yaml b/themes/sloth-highlander-theme-3.yaml new file mode 100644 index 00000000..23a7f615 --- /dev/null +++ b/themes/sloth-highlander-theme-3.yaml @@ -0,0 +1,50 @@ +name: "sloth-highlander-theme-3" +source: + marketplace_id: "fernandoncidade1.sloth-highlander-theme-1" + version: "0.0.3" + installs: 79 + author: "fernandoncidade1" + repo: "https://github.com/fernandoncidade/sloth-highlander-theme-1" + url: "https://marketplace.visualstudio.com/items?itemName=fernandoncidade1.sloth-highlander-theme-1" +colors: + bg: "#0D0E14" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: null + contrast: + fg: 102.6 + black: 0 + red: 44.1 + green: 85.5 + yellow: 99.2 + blue: 54.3 + magenta: 55.2 + cyan: 84.6 + white: 102.6 + brightBlack: 28.7 + brightRed: 49.5 + brightGreen: 89.7 + brightYellow: 104.2 + brightBlue: 66.8 + brightMagenta: 63.3 + brightCyan: 97.4 + brightWhite: 107.5 diff --git a/themes/smalltheme-carbon-oled.yaml b/themes/smalltheme-carbon-oled.yaml index f788cf19..105c1f9f 100644 --- a/themes/smalltheme-carbon-oled.yaml +++ b/themes/smalltheme-carbon-oled.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "howmanysmall.small-theme" version: "0.2.1" installs: 130 + rating: 0 + ratings: 0 author: "HowManySmall" repo: "https://github.com/HowManySmall/small-theme" url: "https://marketplace.visualstudio.com/items?itemName=howmanysmall.small-theme" diff --git a/themes/smettboi-light.yaml b/themes/smettboi-light.yaml index 332c4071..913ff588 100644 --- a/themes/smettboi-light.yaml +++ b/themes/smettboi-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "smettboi.smettboi-themes" version: "1.1.0" installs: 45 + rating: 0 + ratings: 0 author: "smettboi" repo: "https://github.com/zaneadix/smettboi-themes" url: "https://marketplace.visualstudio.com/items?itemName=smettboi.smettboi-themes" diff --git a/themes/smit-amber-monochrome.yaml b/themes/smit-amber-monochrome.yaml new file mode 100644 index 00000000..583e918d --- /dev/null +++ b/themes/smit-amber-monochrome.yaml @@ -0,0 +1,52 @@ +name: "Smit Amber Monochrome" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#1A1510" + fg: "#F4A460" + black: "#1A1510" + red: "#CC5522" + green: "#CC8833" + yellow: "#FFAA44" + blue: "#CC7A33" + magenta: "#DD8844" + cyan: "#EEBB66" + white: "#FFCC88" + brightBlack: "#4A3520" + brightRed: "#DD6633" + brightGreen: "#DD9944" + brightYellow: "#FFBB55" + brightBlue: "#DD8844" + brightMagenta: "#EE9955" + brightCyan: "#FFCC77" + brightWhite: "#FFDD99" +meta: + mode: "dark" + accent: "orange" + hue: 67 + pair: null + contrast: + fg: 62.1 + black: 0 + red: 31.8 + green: 45.2 + yellow: 65.9 + blue: 41 + magenta: 48.4 + cyan: 69.7 + white: 80 + brightBlack: 0 + brightRed: 39 + brightGreen: 53.9 + brightYellow: 72.3 + brightBlue: 48.4 + brightMagenta: 57.1 + brightCyan: 79.7 + brightWhite: 87.7 diff --git a/themes/smit-arctic-cyan.yaml b/themes/smit-arctic-cyan.yaml new file mode 100644 index 00000000..6a68bedc --- /dev/null +++ b/themes/smit-arctic-cyan.yaml @@ -0,0 +1,52 @@ +name: "Smit Arctic Cyan" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#1A2429" + fg: "#C5E5F5" + black: "#385268" + red: "#78C0E0" + green: "#69E6D0" + yellow: "#69D4E6" + blue: "#5FB0BF" + magenta: "#B9CFE0" + cyan: "#7DCFFF" + white: "#C5E5F5" + brightBlack: "#47667A" + brightRed: "#78C0E0" + brightGreen: "#69E6D0" + brightYellow: "#69D4E6" + brightBlue: "#5FB0BF" + brightMagenta: "#B9CFE0" + brightCyan: "#7DCFFF" + brightWhite: "#C5E5F5" +meta: + mode: "dark" + accent: "teal" + hue: 230 + pair: null + contrast: + fg: 85.4 + black: 11.5 + red: 60.8 + green: 76.8 + yellow: 69.2 + blue: 50.8 + magenta: 73.1 + cyan: 69.5 + white: 85.4 + brightBlack: 19 + brightRed: 60.8 + brightGreen: 76.8 + brightYellow: 69.2 + brightBlue: 50.8 + brightMagenta: 73.1 + brightCyan: 69.5 + brightWhite: 85.4 diff --git a/themes/smit-black-slate.yaml b/themes/smit-black-slate.yaml new file mode 100644 index 00000000..6bfb6d25 --- /dev/null +++ b/themes/smit-black-slate.yaml @@ -0,0 +1,52 @@ +name: "Smit Black Slate" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#0B0E14" + fg: "#E6EAF0" + black: "#1A1F29" + red: "#F07178" + green: "#7FD962" + yellow: "#FFCC66" + blue: "#59C2FF" + magenta: "#D4BFFF" + cyan: "#73D0FF" + white: "#E6EAF0" + brightBlack: "#4D5966" + brightRed: "#FF8B92" + brightGreen: "#95E179" + brightYellow: "#FFDF80" + brightBlue: "#73D6FF" + brightMagenta: "#E6D5FF" + brightCyan: "#8AE6FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 93.6 + black: 0 + red: 47.3 + green: 70.7 + yellow: 79.9 + blue: 64 + magenta: 73.7 + cyan: 71.6 + white: 93.6 + brightBlack: 16.9 + brightRed: 58 + brightGreen: 76.6 + brightYellow: 88.5 + brightBlue: 74.3 + brightMagenta: 85.1 + brightCyan: 83.2 + brightWhite: 107.6 diff --git a/themes/smit-coffee.yaml b/themes/smit-coffee.yaml new file mode 100644 index 00000000..b845e4fa --- /dev/null +++ b/themes/smit-coffee.yaml @@ -0,0 +1,52 @@ +name: "Smit Coffee" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#2A1F1A" + fg: "#E6D4C4" + black: "#1A1210" + red: "#D49080" + green: "#B8A588" + yellow: "#E6C090" + blue: "#9AA0B0" + magenta: "#C8A090" + cyan: "#B0B8A8" + white: "#E6D4C4" + brightBlack: "#5A4535" + brightRed: "#E4A090" + brightGreen: "#C8B598" + brightYellow: "#F6D0A0" + brightBlue: "#AAB0C0" + brightMagenta: "#D8B0A0" + brightCyan: "#C0C8B8" + brightWhite: "#F6E4D4" +meta: + mode: "dark" + accent: "orange" + hue: 46 + pair: null + contrast: + fg: 79.9 + black: 0 + red: 49.1 + green: 52.5 + yellow: 69.9 + blue: 48.5 + magenta: 53.2 + cyan: 60.1 + white: 79.9 + brightBlack: 9.4 + brightRed: 57.6 + brightGreen: 61.4 + brightYellow: 79.4 + brightBlue: 57.2 + brightMagenta: 62 + brightCyan: 69.3 + brightWhite: 89.9 diff --git a/themes/smit-crimson-red.yaml b/themes/smit-crimson-red.yaml new file mode 100644 index 00000000..6bc9600a --- /dev/null +++ b/themes/smit-crimson-red.yaml @@ -0,0 +1,52 @@ +name: "Smit Crimson Red" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#2A1A1F" + fg: "#F5C5D5" + black: "#523A44" + red: "#FF6B9D" + green: "#FF9EB3" + yellow: "#FFB3C6" + blue: "#E74C6C" + magenta: "#FF8DA1" + cyan: "#FFA8BC" + white: "#F5C5D5" + brightBlack: "#7A4757" + brightRed: "#FF6B9D" + brightGreen: "#FF9EB3" + brightYellow: "#FFB3C6" + brightBlue: "#E74C6C" + brightMagenta: "#FF8DA1" + brightCyan: "#FFA8BC" + brightWhite: "#F5C5D5" +meta: + mode: "dark" + accent: "red" + hue: 359 + pair: null + contrast: + fg: 77.1 + black: 0 + red: 48.6 + green: 63.3 + yellow: 71.3 + blue: 36 + magenta: 57.4 + cyan: 67 + white: 77.1 + brightBlack: 14.8 + brightRed: 48.6 + brightGreen: 63.3 + brightYellow: 71.3 + brightBlue: 36 + brightMagenta: 57.4 + brightCyan: 67 + brightWhite: 77.1 diff --git a/themes/smit-dark.yaml b/themes/smit-dark.yaml new file mode 100644 index 00000000..16262404 --- /dev/null +++ b/themes/smit-dark.yaml @@ -0,0 +1,52 @@ +name: "Smit Dark" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#0F1419" + fg: "#E0E8FF" + black: "#414868" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#C0CAF5" + brightBlack: "#565F89" + brightRed: "#F7768E" + brightGreen: "#9ECE6A" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "red" + hue: 249 + pair: null + contrast: + fg: 92.3 + black: 11.1 + red: 50.2 + green: 67.8 + yellow: 63 + blue: 52 + magenta: 55.9 + cyan: 71.4 + white: 74.7 + brightBlack: 20.3 + brightRed: 50.2 + brightGreen: 67.8 + brightYellow: 63 + brightBlue: 52 + brightMagenta: 55.9 + brightCyan: 71.4 + brightWhite: 74.7 diff --git a/themes/smit-deep-ocean.yaml b/themes/smit-deep-ocean.yaml new file mode 100644 index 00000000..b2536bfa --- /dev/null +++ b/themes/smit-deep-ocean.yaml @@ -0,0 +1,52 @@ +name: "Smit Deep Ocean" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#0F1419" + fg: "#A8D4E6" + black: "#0F1419" + red: "#5A99BB" + green: "#5ABEBB" + yellow: "#7AD4D4" + blue: "#3AA4C4" + magenta: "#5ABEDD" + cyan: "#4DD4D4" + white: "#C8DCE6" + brightBlack: "#2A3F4A" + brightRed: "#6AA9CC" + brightGreen: "#6ACECC" + brightYellow: "#8AE4E4" + brightBlue: "#4AB4D4" + brightMagenta: "#6ACEEE" + brightCyan: "#5DE4E4" + brightWhite: "#E8F8FF" +meta: + mode: "dark" + accent: "cyan" + hue: 249 + pair: null + contrast: + fg: 75.7 + black: 0 + red: 42.8 + green: 58.2 + yellow: 71.1 + blue: 46.4 + magenta: 59.9 + cyan: 69 + white: 82.7 + brightBlack: 0 + brightRed: 51 + brightGreen: 67.1 + brightYellow: 80.5 + brightBlue: 54.4 + brightMagenta: 68.8 + brightCyan: 78 + brightWhite: 100.8 diff --git a/themes/smit-forest-green.yaml b/themes/smit-forest-green.yaml new file mode 100644 index 00000000..ceca7e52 --- /dev/null +++ b/themes/smit-forest-green.yaml @@ -0,0 +1,52 @@ +name: "Smit Forest Green" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#1A2419" + fg: "#C5E5B4" + black: "#3D5238" + red: "#E07856" + green: "#7FB069" + yellow: "#B8C969" + blue: "#69A8B0" + magenta: "#A89BB9" + cyan: "#6FD49D" + white: "#C5E5B4" + brightBlack: "#506647" + brightRed: "#E07856" + brightGreen: "#7FB069" + brightYellow: "#B8C969" + brightBlue: "#69A8B0" + brightMagenta: "#A89BB9" + brightCyan: "#6FD49D" + brightWhite: "#C5E5B4" +meta: + mode: "dark" + accent: "orange" + hue: 142 + pair: null + contrast: + fg: 82.8 + black: 10.6 + red: 43.1 + green: 50.2 + yellow: 66.6 + blue: 47.5 + magenta: 48.7 + cyan: 66.7 + white: 82.8 + brightBlack: 18.2 + brightRed: 43.1 + brightGreen: 50.2 + brightYellow: 66.6 + brightBlue: 47.5 + brightMagenta: 48.7 + brightCyan: 66.7 + brightWhite: 82.8 diff --git a/themes/smit-gruvbox-inspired.yaml b/themes/smit-gruvbox-inspired.yaml new file mode 100644 index 00000000..abcc53da --- /dev/null +++ b/themes/smit-gruvbox-inspired.yaml @@ -0,0 +1,52 @@ +name: "Smit Gruvbox Inspired" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#282828" + fg: "#EBDBB2" + black: "#282828" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 81.9 + black: 0 + red: 22.8 + green: 40.5 + yellow: 50.1 + blue: 29.1 + magenta: 29.3 + cyan: 39.5 + white: 44.8 + brightBlack: 33.9 + brightRed: 37.7 + brightGreen: 58.7 + brightYellow: 69.4 + brightBlue: 46.2 + brightMagenta: 45.5 + brightCyan: 57.7 + brightWhite: 81.9 diff --git a/themes/smit-high-contrast.yaml b/themes/smit-high-contrast.yaml new file mode 100644 index 00000000..2a2bafcb --- /dev/null +++ b/themes/smit-high-contrast.yaml @@ -0,0 +1,52 @@ +name: "Smit High Contrast" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#808080" + brightRed: "#FF4444" + brightGreen: "#44FF44" + brightYellow: "#FFFF44" + brightBlue: "#4444FF" + brightMagenta: "#FF44FF" + brightCyan: "#44FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 34.8 + brightRed: 41.6 + brightGreen: 87.4 + brightYellow: 102.9 + brightBlue: 23.1 + brightMagenta: 49.6 + brightCyan: 92.9 + brightWhite: 107.9 diff --git a/themes/smit-low-light.yaml b/themes/smit-low-light.yaml new file mode 100644 index 00000000..84946b06 --- /dev/null +++ b/themes/smit-low-light.yaml @@ -0,0 +1,52 @@ +name: "Smit Low Light" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#1A1A1A" + fg: "#FFFFFF" + black: "#3D3D3D" + red: "#FF8080" + green: "#A8E6A0" + yellow: "#F5E096" + blue: "#9ED0FF" + magenta: "#E6B3FF" + cyan: "#A0E6E6" + white: "#F5F5F5" + brightBlack: "#707070" + brightRed: "#FFB3B3" + brightGreen: "#C8FFC0" + brightYellow: "#FFFFB3" + brightBlue: "#C0E0FF" + brightMagenta: "#FFD9FF" + brightCyan: "#C0FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 106.5 + black: 0 + red: 53.4 + green: 80.7 + yellow: 86.9 + blue: 73.7 + magenta: 70.7 + cyan: 82.6 + white: 100 + brightBlack: 26.1 + brightRed: 71.2 + brightGreen: 97.1 + brightYellow: 103.6 + brightBlue: 84.2 + brightMagenta: 89.5 + brightCyan: 99 + brightWhite: 106.5 diff --git a/themes/smit-matrix.yaml b/themes/smit-matrix.yaml new file mode 100644 index 00000000..e07f20fd --- /dev/null +++ b/themes/smit-matrix.yaml @@ -0,0 +1,52 @@ +name: "Smit Matrix" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#000000" + fg: "#00FF00" + black: "#000000" + red: "#008800" + green: "#00FF00" + yellow: "#00DD00" + blue: "#00AA00" + magenta: "#00CC00" + cyan: "#00EE00" + white: "#00FF00" + brightBlack: "#004400" + brightRed: "#009900" + brightGreen: "#00FF00" + brightYellow: "#00EE00" + brightBlue: "#00BB00" + brightMagenta: "#00DD00" + brightCyan: "#00FF00" + brightWhite: "#00FF00" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 86.5 + black: 0 + red: 30.2 + green: 86.5 + yellow: 68.7 + blue: 44.5 + magenta: 60.3 + cyan: 77.5 + white: 86.5 + brightBlack: 0 + brightRed: 37.2 + brightGreen: 86.5 + brightYellow: 77.5 + brightBlue: 52.3 + brightMagenta: 68.7 + brightCyan: 86.5 + brightWhite: 86.5 diff --git a/themes/smit-midnight-purple.yaml b/themes/smit-midnight-purple.yaml new file mode 100644 index 00000000..c6cac3a1 --- /dev/null +++ b/themes/smit-midnight-purple.yaml @@ -0,0 +1,52 @@ +name: "Smit Midnight Purple" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#0A0A0F" + fg: "#D4C5F9" + black: "#48406B" + red: "#F087BD" + green: "#A8E6CF" + yellow: "#F3C5FF" + blue: "#A78BFA" + magenta: "#D8B4FE" + cyan: "#C4B5FD" + white: "#D4C5F9" + brightBlack: "#6E5494" + brightRed: "#F087BD" + brightGreen: "#A8E6CF" + brightYellow: "#F3C5FF" + brightBlue: "#A78BFA" + brightMagenta: "#D8B4FE" + brightCyan: "#C4B5FD" + brightWhite: "#D4C5F9" +meta: + mode: "dark" + accent: "magenta" + hue: 285 + pair: null + contrast: + fg: 75.9 + black: 10.4 + red: 55.7 + green: 83.5 + yellow: 80.7 + blue: 49.2 + magenta: 70.1 + cyan: 67.7 + white: 75.9 + brightBlack: 20.7 + brightRed: 55.7 + brightGreen: 83.5 + brightYellow: 80.7 + brightBlue: 49.2 + brightMagenta: 70.1 + brightCyan: 67.7 + brightWhite: 75.9 diff --git a/themes/smit-minimal-dark.yaml b/themes/smit-minimal-dark.yaml new file mode 100644 index 00000000..d6bb30e9 --- /dev/null +++ b/themes/smit-minimal-dark.yaml @@ -0,0 +1,52 @@ +name: "Smit Minimal Dark" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#1A1A1A" + fg: "#C0C0C0" + black: "#1A1A1A" + red: "#808080" + green: "#909090" + yellow: "#A0A0A0" + blue: "#4A9EFF" + magenta: "#707070" + cyan: "#4A9EFF" + white: "#C0C0C0" + brightBlack: "#505050" + brightRed: "#909090" + brightGreen: "#A0A0A0" + brightYellow: "#B0B0B0" + brightBlue: "#6DB0FF" + brightMagenta: "#808080" + brightCyan: "#6DB0FF" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 67.3 + black: 0 + red: 33.4 + green: 41.3 + yellow: 49.5 + blue: 47.7 + magenta: 26.1 + cyan: 47.7 + white: 67.3 + brightBlack: 12.9 + brightRed: 41.3 + brightGreen: 49.5 + brightYellow: 58.2 + brightBlue: 56.5 + brightMagenta: 33.4 + brightCyan: 56.5 + brightWhite: 86.5 diff --git a/themes/smit-monokai-inspired.yaml b/themes/smit-monokai-inspired.yaml new file mode 100644 index 00000000..d95d8db5 --- /dev/null +++ b/themes/smit-monokai-inspired.yaml @@ -0,0 +1,52 @@ +name: "Smit Monokai Inspired" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#272822" + fg: "#F8F8F2" + black: "#48483E" + red: "#F92672" + green: "#A6E22E" + yellow: "#E6DB74" + blue: "#66D9EF" + magenta: "#AE81FF" + cyan: "#A1EFE4" + white: "#F8F8F2" + brightBlack: "#75715E" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E6DB74" + brightBlue: "#66D9EF" + brightMagenta: "#AE81FF" + brightCyan: "#A1EFE4" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 115 + pair: null + contrast: + fg: 99.6 + black: 7.7 + red: 35 + green: 74.7 + yellow: 79.7 + blue: 71.1 + magenta: 44.2 + cyan: 85 + white: 99.6 + brightBlack: 24.3 + brightRed: 35 + brightGreen: 74.7 + brightYellow: 79.7 + brightBlue: 71.1 + brightMagenta: 44.2 + brightCyan: 85 + brightWhite: 99.6 diff --git a/themes/smit-neon-cyberpunk.yaml b/themes/smit-neon-cyberpunk.yaml new file mode 100644 index 00000000..acb1fde9 --- /dev/null +++ b/themes/smit-neon-cyberpunk.yaml @@ -0,0 +1,52 @@ +name: "Smit Neon Cyberpunk" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#0A0A0F" + fg: "#00FFFF" + black: "#0A0A0F" + red: "#FF0080" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0080FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#3A1A3A" + brightRed: "#FF00AA" + brightGreen: "#00FF80" + brightYellow: "#FFFF80" + brightBlue: "#00AAFF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 285 + pair: null + contrast: + fg: 92 + black: 0 + red: 39.1 + green: 86.3 + yellow: 102.5 + blue: 36.9 + magenta: 46.1 + cyan: 92 + white: 107.7 + brightBlack: 0 + brightRed: 40.8 + brightGreen: 87.4 + brightYellow: 103.6 + brightBlue: 52.4 + brightMagenta: 46.1 + brightCyan: 92 + brightWhite: 107.7 diff --git a/themes/smit-soft-dark.yaml b/themes/smit-soft-dark.yaml new file mode 100644 index 00000000..5968e831 --- /dev/null +++ b/themes/smit-soft-dark.yaml @@ -0,0 +1,52 @@ +name: "Smit Soft Dark" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#2B2D3A" + fg: "#C7CDD8" + black: "#363845" + red: "#D9A7A1" + green: "#A7C9A3" + yellow: "#E0C9A3" + blue: "#9DB4C7" + magenta: "#B4A0C7" + cyan: "#A3C9C7" + white: "#D4DAE5" + brightBlack: "#4A4D5A" + brightRed: "#E0B4AE" + brightGreen: "#B7D9B3" + brightYellow: "#E9D6B3" + brightBlue: "#ADC1D4" + brightMagenta: "#C4B0D4" + brightCyan: "#B3D9D4" + brightWhite: "#E4EAF5" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: null + contrast: + fg: 71.4 + black: 0 + red: 56.6 + green: 64 + yellow: 71 + blue: 55.5 + magenta: 50.4 + cyan: 65 + white: 79.3 + brightBlack: 8.6 + brightRed: 63 + brightGreen: 73.4 + brightYellow: 78.4 + brightBlue: 63.1 + brightMagenta: 59.1 + brightCyan: 74.3 + brightWhite: 89.3 diff --git a/themes/smit-sunset-orange.yaml b/themes/smit-sunset-orange.yaml new file mode 100644 index 00000000..545a213b --- /dev/null +++ b/themes/smit-sunset-orange.yaml @@ -0,0 +1,52 @@ +name: "Smit Sunset Orange" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#2A1F1A" + fg: "#F5D5B8" + black: "#52423A" + red: "#FF6B6B" + green: "#FFAA5A" + yellow: "#FFD97D" + blue: "#FFAF87" + magenta: "#FFB3BA" + cyan: "#FFCA9F" + white: "#F5D5B8" + brightBlack: "#7A5D47" + brightRed: "#FF6B6B" + brightGreen: "#FFAA5A" + brightYellow: "#FFD97D" + brightBlue: "#FFAF87" + brightMagenta: "#FFB3BA" + brightCyan: "#FFCA9F" + brightWhite: "#F5D5B8" +meta: + mode: "dark" + accent: "orange" + hue: 46 + pair: null + contrast: + fg: 82.2 + black: 8 + red: 46.8 + green: 64.7 + yellow: 83.8 + blue: 67.4 + magenta: 70.4 + cyan: 78.4 + white: 82.2 + brightBlack: 19.4 + brightRed: 46.8 + brightGreen: 64.7 + brightYellow: 83.8 + brightBlue: 67.4 + brightMagenta: 70.4 + brightCyan: 78.4 + brightWhite: 82.2 diff --git a/themes/smit-synthwave.yaml b/themes/smit-synthwave.yaml new file mode 100644 index 00000000..599314a0 --- /dev/null +++ b/themes/smit-synthwave.yaml @@ -0,0 +1,52 @@ +name: "Smit Synthwave" +source: + marketplace_id: "SmitDudhat.smit-theme" + version: "2.2.0" + installs: 5 + rating: 0 + ratings: 0 + author: "Smit Dudhat" + repo: "https://github.com/SmitDudhat/smit-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" +colors: + bg: "#1A0A28" + fg: "#F0D0FF" + black: "#1A0A28" + red: "#FF006A" + green: "#00FF9F" + yellow: "#FFD000" + blue: "#0099FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#F0D0FF" + brightBlack: "#4A1A5A" + brightRed: "#FF007A" + brightGreen: "#00FFAA" + brightYellow: "#FFDD00" + brightBlue: "#00AAFF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 306 + pair: null + contrast: + fg: 84.2 + black: 0 + red: 38 + green: 87.7 + yellow: 80.6 + blue: 45.2 + magenta: 45.5 + cyan: 91.5 + white: 84.2 + brightBlack: 0 + brightRed: 38.4 + brightGreen: 88 + brightYellow: 86.2 + brightBlue: 51.9 + brightMagenta: 45.5 + brightCyan: 91.5 + brightWhite: 107.2 diff --git a/themes/smithy-iron.yaml b/themes/smithy-iron.yaml new file mode 100644 index 00000000..7fc3965e --- /dev/null +++ b/themes/smithy-iron.yaml @@ -0,0 +1,52 @@ +name: "Smithy Iron" +source: + marketplace_id: "michaelassaf.dark-smithy" + version: "0.1.87" + installs: 208 + rating: 5 + ratings: 1 + author: "Michael Assaf" + repo: "https://github.com/smithy-theme/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=michaelassaf.dark-smithy" +colors: + bg: "#151716" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.9 + black: 0 + red: 26.8 + green: 53 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90.1 diff --git a/themes/smoldering-ember.yaml b/themes/smoldering-ember.yaml new file mode 100644 index 00000000..4ef980a2 --- /dev/null +++ b/themes/smoldering-ember.yaml @@ -0,0 +1,52 @@ +name: "Smoldering-Ember" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#252525" + fg: "#FBFBFB" + black: "#252525" + red: "#DC2828" + green: "#29C3A0" + yellow: "#D29922" + blue: "#4D4FEF" + magenta: "#4D4FEF" + cyan: "#29C3A0" + white: "#FBFBFB" + brightBlack: "#252525" + brightRed: "#DC2828" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#4D4FEF" + brightMagenta: "#4D4FEF" + brightCyan: "#29C3A0" + brightWhite: "#FBFBFB" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 102.3 + black: 0 + red: 27.3 + green: 55.7 + yellow: 49.8 + blue: 21.1 + magenta: 21.1 + cyan: 55.7 + white: 102.3 + brightBlack: 0 + brightRed: 27.3 + brightGreen: 55.7 + brightYellow: 49.8 + brightBlue: 21.1 + brightMagenta: 21.1 + brightCyan: 55.7 + brightWhite: 102.3 diff --git a/themes/smooth-burn-dark-hard.yaml b/themes/smooth-burn-dark-hard.yaml index 62c7fcb9..e236d9ab 100644 --- a/themes/smooth-burn-dark-hard.yaml +++ b/themes/smooth-burn-dark-hard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndreaCombette.smoothburn" version: "0.5.4" installs: 937 + rating: 5 + ratings: 1 author: "AndreaCombette" repo: "https://github.com/Chatr0uge/smoothburn-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" diff --git a/themes/smooth-burn-dark-medium.yaml b/themes/smooth-burn-dark-medium.yaml index 08a7cf0b..51f66e11 100644 --- a/themes/smooth-burn-dark-medium.yaml +++ b/themes/smooth-burn-dark-medium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndreaCombette.smoothburn" version: "0.5.4" installs: 937 + rating: 5 + ratings: 1 author: "AndreaCombette" repo: "https://github.com/Chatr0uge/smoothburn-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" diff --git a/themes/smooth-burn-dark.yaml b/themes/smooth-burn-dark.yaml index fe0631bf..d24dd1a8 100644 --- a/themes/smooth-burn-dark.yaml +++ b/themes/smooth-burn-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndreaCombette.smoothburn" version: "0.5.4" installs: 937 + rating: 5 + ratings: 1 author: "AndreaCombette" repo: "https://github.com/Chatr0uge/smoothburn-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" diff --git a/themes/smooth-burn-light-hard.yaml b/themes/smooth-burn-light-hard.yaml index 3f34fcf7..19411f53 100644 --- a/themes/smooth-burn-light-hard.yaml +++ b/themes/smooth-burn-light-hard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndreaCombette.smoothburn" version: "0.5.4" installs: 937 + rating: 5 + ratings: 1 author: "AndreaCombette" repo: "https://github.com/Chatr0uge/smoothburn-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" diff --git a/themes/smooth-dark.yaml b/themes/smooth-dark.yaml new file mode 100644 index 00000000..1c122d46 --- /dev/null +++ b/themes/smooth-dark.yaml @@ -0,0 +1,50 @@ +name: "Smooth (dark)" +source: + marketplace_id: "segersniels.smooth" + version: "0.2.1" + installs: 490 + author: "segersniels" + repo: "https://github.com/segersniels/smooth-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=segersniels.smooth" +colors: + bg: "#383838" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 73.2 + black: 0 + red: 20.4 + green: 46.7 + yellow: 79.3 + blue: 21.1 + magenta: 23.5 + cyan: 41.3 + white: 83.7 + brightBlack: 15.7 + brightRed: 32.3 + brightGreen: 57.2 + brightYellow: 89.3 + brightBlue: 33.7 + brightMagenta: 39.1 + brightCyan: 49.1 + brightWhite: 83.7 diff --git a/themes/smooth-light.yaml b/themes/smooth-light.yaml new file mode 100644 index 00000000..eb01b118 --- /dev/null +++ b/themes/smooth-light.yaml @@ -0,0 +1,50 @@ +name: "Smooth (light)" +source: + marketplace_id: "segersniels.smooth" + version: "0.2.1" + installs: 490 + author: "segersniels" + repo: "https://github.com/segersniels/smooth-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=segersniels.smooth" +colors: + bg: "#FAF4ED" + fg: "#575279" + black: "#616161" + red: "#EB6F92" + green: "#60B79B" + yellow: "#F2B968" + blue: "#3FA2CA" + magenta: "#AA8ACD" + cyan: "#3494A0" + white: "#575279" + brightBlack: "#A8A8A8" + brightRed: "#EB6F92" + brightGreen: "#60B79B" + brightYellow: "#F2B968" + brightBlue: "#3FA2CA" + brightMagenta: "#AA8ACD" + brightCyan: "#3494A0" + brightWhite: "#575279" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 79.1 + black: 74.8 + red: 48.8 + green: 41.1 + yellow: 26.1 + blue: 49 + magenta: 49.3 + cyan: 56.9 + white: 79.1 + brightBlack: 40.8 + brightRed: 48.8 + brightGreen: 41.1 + brightYellow: 26.1 + brightBlue: 49 + brightMagenta: 49.3 + brightCyan: 56.9 + brightWhite: 79.1 diff --git a/themes/smoothity-dark.yaml b/themes/smoothity-dark.yaml index cc8d2b6b..61234f30 100644 --- a/themes/smoothity-dark.yaml +++ b/themes/smoothity-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "neinja007.smoothity-dark" version: "6.3.0" installs: 262 + rating: 5 + ratings: 1 author: "neinja007" repo: null url: "https://marketplace.visualstudio.com/items?itemName=neinja007.smoothity-dark" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "orange" hue: 29 + pair: null contrast: fg: 0 black: 0 diff --git a/themes/smooththeme.yaml b/themes/smooththeme.yaml new file mode 100644 index 00000000..bfca4628 --- /dev/null +++ b/themes/smooththeme.yaml @@ -0,0 +1,52 @@ +name: "SmoothTheme" +source: + marketplace_id: "SagnikDey.smooththeme" + version: "0.0.1" + installs: 301 + rating: 0 + ratings: 0 + author: "Sagnik Dey" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SagnikDey.smooththeme" +colors: + bg: "#33303D" + fg: "#DB754D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 296 + pair: null + contrast: + fg: 38 + black: 0 + red: 22.2 + green: 48.5 + yellow: 81.1 + blue: 22.9 + magenta: 25.2 + cyan: 43 + white: 85.5 + brightBlack: 17.5 + brightRed: 34 + brightGreen: 59 + brightYellow: 91.1 + brightBlue: 35.5 + brightMagenta: 40.8 + brightCyan: 50.9 + brightWhite: 85.5 diff --git a/themes/snakedye-chocolate.yaml b/themes/snakedye-chocolate.yaml index 46e15e97..ce288c38 100644 --- a/themes/snakedye-chocolate.yaml +++ b/themes/snakedye-chocolate.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "btarg.cosy-orange-theme" version: "1.3.0" installs: 709 + rating: 3.5 + ratings: 2 author: "btarg" repo: "https://github.com/btarg/vscode-cosy-orange-theme" url: "https://marketplace.visualstudio.com/items?itemName=btarg.cosy-orange-theme" diff --git a/themes/snap-light.yaml b/themes/snap-light.yaml new file mode 100644 index 00000000..d005a348 --- /dev/null +++ b/themes/snap-light.yaml @@ -0,0 +1,50 @@ +name: "snap light" +source: + marketplace_id: "sharmag44.snaptheme" + version: "0.0.3" + installs: 99 + author: "sharmag44" + repo: "https://github.com/sharmag44/snaptheme" + url: "https://marketplace.visualstudio.com/items?itemName=sharmag44.snaptheme" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0878F2" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 68.3 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/snappier.yaml b/themes/snappier.yaml new file mode 100644 index 00000000..42ed7115 --- /dev/null +++ b/themes/snappier.yaml @@ -0,0 +1,52 @@ +name: "Snappier" +source: + marketplace_id: "bertieblackman.snappier" + version: "1.0.1" + installs: 4472 + rating: 5 + ratings: 1 + author: "Bertie Blackman" + repo: "https://github.com/covertbert/vscode-snappier-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bertieblackman.snappier" +colors: + bg: "#393939" + fg: "#E3E2E0" + black: "#464646" + red: "#BA0E2E" + green: "#4EA1DF" + yellow: "#F66153" + blue: "#808DD3" + magenta: "#F66153" + cyan: "#808DD3" + white: "#EFEFED" + brightBlack: "#6C6C6C" + brightRed: "#F03E5F" + brightGreen: "#A4CFEF" + brightYellow: "#FBBAB4" + brightBlue: "#CCD1ED" + brightMagenta: "#FBBAB4" + brightCyan: "#CCD1ED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 81.6 + black: 0 + red: 13.9 + green: 40.5 + yellow: 36.9 + blue: 35.6 + magenta: 36.9 + cyan: 35.6 + white: 89.7 + brightBlack: 18 + brightRed: 30.2 + brightGreen: 66.7 + brightYellow: 66.9 + brightBlue: 71.8 + brightMagenta: 66.9 + brightCyan: 71.8 + brightWhite: 100.3 diff --git a/themes/snappy-contrast.yaml b/themes/snappy-contrast.yaml index c43a0e53..47c6fd91 100644 --- a/themes/snappy-contrast.yaml +++ b/themes/snappy-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/snappy-light.yaml b/themes/snappy-light.yaml index c304d901..31a31f1e 100644 --- a/themes/snappy-light.yaml +++ b/themes/snappy-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/snazzy-light.yaml b/themes/snazzy-light.yaml index 551dba3f..bd5a2fe5 100644 --- a/themes/snazzy-light.yaml +++ b/themes/snazzy-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "loilo.snazzy-light" version: "1.4.1" installs: 161547 + rating: 4.78 + ratings: 9 author: "Florian Reuschel" repo: "https://github.com/loilo/vscode-snazzy-light" url: "https://marketplace.visualstudio.com/items?itemName=loilo.snazzy-light" diff --git a/themes/snazzy-operator-color-theme-dark.yaml b/themes/snazzy-operator-color-theme-dark.yaml new file mode 100644 index 00000000..20ff7459 --- /dev/null +++ b/themes/snazzy-operator-color-theme-dark.yaml @@ -0,0 +1,52 @@ +name: "snazzy-operator-color-theme-dark" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3736 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" +colors: + bg: "#141622" + fg: "#EFF0EB" + black: "#141622" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#FFBC58" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#EFF0EB" + brightBlack: "#585A61" + brightRed: "#FF5C57" + brightGreen: "#5AF78E" + brightYellow: "#FFBC58" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: 277 + pair: null + contrast: + fg: 96.7 + black: 0 + red: 44.7 + green: 84.1 + yellow: 72.7 + blue: 65.5 + magenta: 50.9 + cyan: 87.1 + white: 96.7 + brightBlack: 17.1 + brightRed: 44.7 + brightGreen: 84.1 + brightYellow: 72.7 + brightBlue: 65.5 + brightMagenta: 50.9 + brightCyan: 87.1 + brightWhite: 96.7 diff --git a/themes/snazzy-operator-color-theme-italics.yaml b/themes/snazzy-operator-color-theme-italics.yaml index efc809cb..fef0e9c4 100644 --- a/themes/snazzy-operator-color-theme-italics.yaml +++ b/themes/snazzy-operator-color-theme-italics.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/snazzy-operator-color-theme.yaml b/themes/snazzy-operator-color-theme.yaml new file mode 100644 index 00000000..5c6a6182 --- /dev/null +++ b/themes/snazzy-operator-color-theme.yaml @@ -0,0 +1,52 @@ +name: "snazzy-operator-color-theme" +source: + marketplace_id: "aaronthomas.vscode-snazzy-operator" + version: "1.1.3" + installs: 181981 + rating: 4.5 + ratings: 4 + author: "Aaron Thomas" + repo: "https://github.com/aaronthomas/vscode-snazzy-operator" + url: "https://marketplace.visualstudio.com/items?itemName=aaronthomas.vscode-snazzy-operator" +colors: + bg: "#282A36" + fg: "#EFF0EB" + black: "#282A36" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#EFF0EB" + brightBlack: "#282A36" + brightRed: "#FF5C57" + brightGreen: "#5AF78E" + brightYellow: "#F3F99D" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: 278 + pair: null + contrast: + fg: 93.7 + black: 0 + red: 41.7 + green: 81.1 + yellow: 95.8 + blue: 62.5 + magenta: 48 + cyan: 84.1 + white: 93.7 + brightBlack: 0 + brightRed: 41.7 + brightGreen: 81.1 + brightYellow: 95.8 + brightBlue: 62.5 + brightMagenta: 48 + brightCyan: 84.1 + brightWhite: 93.7 diff --git a/themes/snazzy-operator-natural.yaml b/themes/snazzy-operator-natural.yaml index deea330c..cad86d3f 100644 --- a/themes/snazzy-operator-natural.yaml +++ b/themes/snazzy-operator-natural.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BenCai.snazzy-operator-natural" version: "0.0.10" installs: 2983 + rating: 5 + ratings: 2 author: "Ben Cai" repo: "https://github.com/code0312/VSCode-Theme-Snazzy" url: "https://marketplace.visualstudio.com/items?itemName=BenCai.snazzy-operator-natural" diff --git a/themes/snazzy-solaris.yaml b/themes/snazzy-solaris.yaml index f8631b36..6274e70b 100644 --- a/themes/snazzy-solaris.yaml +++ b/themes/snazzy-solaris.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SlayVict.snazzy-light-operator" version: "1.1.1" installs: 548 + rating: 0 + ratings: 0 author: "SlayVict" repo: "https://github.com/SlayVic/snazzy-solaris" url: "https://marketplace.visualstudio.com/items?itemName=SlayVict.snazzy-light-operator" diff --git a/themes/snazzy-vs-theme.yaml b/themes/snazzy-vs-theme.yaml index 1e122de8..9f79c63e 100644 --- a/themes/snazzy-vs-theme.yaml +++ b/themes/snazzy-vs-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xdae.vscode-snazzy-theme" version: "0.1.0" installs: 3069 + rating: 5 + ratings: 2 author: "jose miguel bejarano" repo: "https://github.com/xDae/vscode-snazzy-theme" url: "https://marketplace.visualstudio.com/items?itemName=xdae.vscode-snazzy-theme" diff --git a/themes/snazzy.yaml b/themes/snazzy.yaml new file mode 100644 index 00000000..fd219b05 --- /dev/null +++ b/themes/snazzy.yaml @@ -0,0 +1,52 @@ +name: "Snazzy" +source: + marketplace_id: "SnazzyTheme.snazzy-vscode" + version: "0.0.1" + installs: 7430 + rating: 5 + ratings: 1 + author: "SnazzyTheme" + repo: "https://github.com/snazzytheme/snazzy-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SnazzyTheme.snazzy-vscode" +colors: + bg: "#1D2433" + fg: "#A2AABC" + black: "#2F3B54" + red: "#EF6B73" + green: "#BAE67E" + yellow: "#FFCC66" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#BAE67E" + brightYellow: "#FFCC66" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "orange" + hue: 265 + pair: null + contrast: + fg: 53.3 + black: 0 + red: 43.1 + green: 80.2 + yellow: 77.5 + blue: 66.1 + magenta: 59.6 + cyan: 66.1 + white: 53.3 + brightBlack: 9.4 + brightRed: 43.1 + brightGreen: 80.2 + brightYellow: 77.5 + brightBlue: 66.1 + brightMagenta: 59.6 + brightCyan: 66.1 + brightWhite: 53.3 diff --git a/themes/snazzyfied.yaml b/themes/snazzyfied.yaml new file mode 100644 index 00000000..8474db85 --- /dev/null +++ b/themes/snazzyfied.yaml @@ -0,0 +1,52 @@ +name: "Snazzyfied" +source: + marketplace_id: "meister.vscode-theme-snazzyfied" + version: "0.4.0" + installs: 146 + rating: 0 + ratings: 0 + author: "Martin Kapp" + repo: "https://github.com/meister/vscode-snazzyfied" + url: "https://marketplace.visualstudio.com/items?itemName=meister.vscode-theme-snazzyfied" +colors: + bg: "#282A36" + fg: "#DEE1DB" + black: "#282A36" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#F1F1F0" + brightBlack: "#686868" + brightRed: "#FF6C68" + brightGreen: "#6CF69A" + brightYellow: "#F4EDA7" + brightBlue: "#6ECFFF" + brightMagenta: "#FA73C1" + brightCyan: "#ABEFFD" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: 278 + pair: null + contrast: + fg: 83.9 + black: 0 + red: 41.7 + green: 81.1 + yellow: 95.8 + blue: 62.5 + magenta: 48 + cyan: 84.1 + white: 94.7 + brightBlack: 19.9 + brightRed: 45.3 + brightGreen: 81.7 + brightYellow: 90.5 + brightBlue: 67.2 + brightMagenta: 48.9 + brightCyan: 86.4 + brightWhite: 93.7 diff --git a/themes/snow-theme.yaml b/themes/snow-theme.yaml index f35c5309..65831e39 100644 --- a/themes/snow-theme.yaml +++ b/themes/snow-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guicastro13.onebitcode-theme" version: "0.0.5" installs: 2293 + rating: 5 + ratings: 2 author: "guicastro13" repo: "https://github.com/guicastro13/onebitcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" diff --git a/themes/snowflake-dark-theme.yaml b/themes/snowflake-dark-theme.yaml index 3e38d8b8..1cf8cdeb 100644 --- a/themes/snowflake-dark-theme.yaml +++ b/themes/snowflake-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "snowflake107.snowflake-dark" version: "1.0.2" installs: 4870 + rating: 5 + ratings: 2 author: "Snowflake Studio ❄" repo: "https://github.com/DevSnowflake/VSCode-Snowflake" url: "https://marketplace.visualstudio.com/items?itemName=snowflake107.snowflake-dark" diff --git a/themes/snowflake-darker-theme.yaml b/themes/snowflake-darker-theme.yaml index 811f2570..ba8e9a57 100644 --- a/themes/snowflake-darker-theme.yaml +++ b/themes/snowflake-darker-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "snowflake107.snowflake-dark" version: "1.0.2" installs: 4870 + rating: 5 + ratings: 2 author: "Snowflake Studio ❄" repo: "https://github.com/DevSnowflake/VSCode-Snowflake" url: "https://marketplace.visualstudio.com/items?itemName=snowflake107.snowflake-dark" diff --git a/themes/snoword-dark-soft.yaml b/themes/snoword-dark-soft.yaml index 06d5761a..64249b63 100644 --- a/themes/snoword-dark-soft.yaml +++ b/themes/snoword-dark-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Snoword.theme-snoword" version: "0.4.6" installs: 819 + rating: 5 + ratings: 1 author: "Snoword Theme" repo: "https://github.com/snowords/vscode-theme-vitesse" url: "https://marketplace.visualstudio.com/items?itemName=Snoword.theme-snoword" diff --git a/themes/snoword-dark.yaml b/themes/snoword-dark.yaml index 6f1d9e53..bdd4bbe2 100644 --- a/themes/snoword-dark.yaml +++ b/themes/snoword-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Snoword.theme-snoword" version: "0.4.6" installs: 819 + rating: 5 + ratings: 1 author: "Snoword Theme" repo: "https://github.com/snowords/vscode-theme-vitesse" url: "https://marketplace.visualstudio.com/items?itemName=Snoword.theme-snoword" diff --git a/themes/snoword-light-soft.yaml b/themes/snoword-light-soft.yaml index a5e26dfa..27dab8f9 100644 --- a/themes/snoword-light-soft.yaml +++ b/themes/snoword-light-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Snoword.theme-snoword" version: "0.4.6" installs: 819 + rating: 5 + ratings: 1 author: "Snoword Theme" repo: "https://github.com/snowords/vscode-theme-vitesse" url: "https://marketplace.visualstudio.com/items?itemName=Snoword.theme-snoword" diff --git a/themes/snoword-light.yaml b/themes/snoword-light.yaml index f58ff14a..7dd9e4f4 100644 --- a/themes/snoword-light.yaml +++ b/themes/snoword-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Snoword.theme-snoword" version: "0.4.6" installs: 819 + rating: 5 + ratings: 1 author: "Snoword Theme" repo: "https://github.com/snowords/vscode-theme-vitesse" url: "https://marketplace.visualstudio.com/items?itemName=Snoword.theme-snoword" diff --git a/themes/snowpiercer.yaml b/themes/snowpiercer.yaml index 17c114eb..bb7d4adc 100644 --- a/themes/snowpiercer.yaml +++ b/themes/snowpiercer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SajanSrikanthan.snowpiercer" version: "0.0.1" installs: 145 + rating: 0 + ratings: 0 author: "Sajan Srikanthan" repo: "https://github.com/sajansrikanthan/Snowpiercer-VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SajanSrikanthan.snowpiercer" diff --git a/themes/snowy-mint.yaml b/themes/snowy-mint.yaml index 1f483673..8ee936d6 100644 --- a/themes/snowy-mint.yaml +++ b/themes/snowy-mint.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jstmax.snowymint" version: "1.0.0" installs: 17 + rating: 0 + ratings: 0 author: "jstmax! - ceez2exst" repo: "https://github.com/jstmaxlol/snowymint" url: "https://marketplace.visualstudio.com/items?itemName=jstmax.snowymint" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 86.2 black: 0 diff --git a/themes/sober-afternoon.yaml b/themes/sober-afternoon.yaml index b026edb5..e3b6152d 100644 --- a/themes/sober-afternoon.yaml +++ b/themes/sober-afternoon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.soberTheme" version: "0.0.7" installs: 271 + rating: 5 + ratings: 1 author: "YesCode" repo: "https://github.com/yesomac/sober" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.soberTheme" diff --git a/themes/sober-deepnight.yaml b/themes/sober-deepnight.yaml index 64d4975d..86f1a5d8 100644 --- a/themes/sober-deepnight.yaml +++ b/themes/sober-deepnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.soberTheme" version: "0.0.7" installs: 271 + rating: 5 + ratings: 1 author: "YesCode" repo: "https://github.com/yesomac/sober" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.soberTheme" diff --git a/themes/sober-midnight.yaml b/themes/sober-midnight.yaml index ec392da6..a79de8de 100644 --- a/themes/sober-midnight.yaml +++ b/themes/sober-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.soberTheme" version: "0.0.7" installs: 271 + rating: 5 + ratings: 1 author: "YesCode" repo: "https://github.com/yesomac/sober" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.soberTheme" diff --git a/themes/sober.yaml b/themes/sober.yaml index 27537e57..ce3415d0 100644 --- a/themes/sober.yaml +++ b/themes/sober.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.sober-code" version: "0.0.7" installs: 128 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://git@github.com/yesomac/vs-sober" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.sober-code" diff --git a/themes/sobrio-light.yaml b/themes/sobrio-light.yaml index 2e280659..59831c72 100644 --- a/themes/sobrio-light.yaml +++ b/themes/sobrio-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "elvessousa.sobrio" version: "0.2.0" installs: 2229 + rating: 0 + ratings: 0 author: "Elves Sousa" repo: "https://github.com/elvessousa/sobrio-vscode" url: "https://marketplace.visualstudio.com/items?itemName=elvessousa.sobrio" diff --git a/themes/sobrio.yaml b/themes/sobrio.yaml index 98f76f28..824c9f87 100644 --- a/themes/sobrio.yaml +++ b/themes/sobrio.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "elvessousa.sobrio" version: "0.2.0" installs: 2229 + rating: 0 + ratings: 0 author: "Elves Sousa" repo: "https://github.com/elvessousa/sobrio-vscode" url: "https://marketplace.visualstudio.com/items?itemName=elvessousa.sobrio" diff --git a/themes/soct-color-theme.yaml b/themes/soct-color-theme.yaml index 9b613984..ade1c931 100644 --- a/themes/soct-color-theme.yaml +++ b/themes/soct-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MsSus.soct" version: "0.0.2" installs: 27 + rating: 5 + ratings: 1 author: "Ms.Sus" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MsSus.soct" diff --git a/themes/soda.yaml b/themes/soda.yaml index 5171d880..8adeea92 100644 --- a/themes/soda.yaml +++ b/themes/soda.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fnando.soda" version: "0.0.3" installs: 1195 + rating: 0 + ratings: 0 author: "Nando Vieira" repo: "https://github.com/fnando/vscode-soda" url: "https://marketplace.visualstudio.com/items?itemName=fnando.soda" diff --git a/themes/soft-colors.yaml b/themes/soft-colors.yaml index 67bd6739..1695bed9 100644 --- a/themes/soft-colors.yaml +++ b/themes/soft-colors.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NyctibiusVII.descomplica-theme" version: "1.4.18" installs: 387 + rating: 5 + ratings: 2 author: "NyctibiusVII" repo: "https://github.com/Descomplica-ADS/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.descomplica-theme" diff --git a/themes/soft-dark.yaml b/themes/soft-dark.yaml new file mode 100644 index 00000000..7fcddf7f --- /dev/null +++ b/themes/soft-dark.yaml @@ -0,0 +1,52 @@ +name: "Soft Dark" +source: + marketplace_id: "Gerrnperl.soft-color-theme" + version: "0.0.2" + installs: 1895 + rating: 5 + ratings: 2 + author: "Gerrnperl" + repo: "https://github.com/Gerrnperl/vscode-soft-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gerrnperl.soft-color-theme" +colors: + bg: "#252525" + fg: "#E6FFF3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: "Soft Light" + contrast: + fg: 101.1 + black: 0 + red: 24.8 + green: 51.1 + yellow: 83.7 + blue: 25.5 + magenta: 27.9 + cyan: 45.6 + white: 88.1 + brightBlack: 20.1 + brightRed: 36.7 + brightGreen: 61.6 + brightYellow: 93.7 + brightBlue: 38.1 + brightMagenta: 43.5 + brightCyan: 53.5 + brightWhite: 88.1 diff --git a/themes/soft-era.yaml b/themes/soft-era.yaml new file mode 100644 index 00000000..31d072af --- /dev/null +++ b/themes/soft-era.yaml @@ -0,0 +1,52 @@ +name: "soft era" +source: + marketplace_id: "soft-aesthetic.soft-era-theme" + version: "1.0.3" + installs: 37416 + rating: 4.4 + ratings: 5 + author: "soft aesthetic" + repo: "https://github.com/soft-aesthetic/soft-era-vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=soft-aesthetic.soft-era-theme" +colors: + bg: "#F9F5F5" + fg: "#C29BA3" + black: "#4A4543" + red: "#DB90A7" + green: "#87B6B6" + yellow: "#FFB4B8" + blue: "#32ABDE" + magenta: "#BE88D9" + cyan: "#958AC5" + white: "#F1ECEE" + brightBlack: "#6F5573" + brightRed: "#EEAABE" + brightGreen: "#98C4BA" + brightYellow: "#E7D59A" + brightBlue: "#82B3E2" + brightMagenta: "#CE9AE8" + brightCyan: "#B4ADDF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 43 + black: 86.4 + red: 42.6 + green: 38.5 + yellow: 24.3 + blue: 45.2 + magenta: 47.1 + cyan: 52.8 + white: 0 + brightBlack: 76.8 + brightRed: 30.3 + brightGreen: 31.2 + brightYellow: 16.4 + brightBlue: 38 + brightMagenta: 38.4 + brightCyan: 35.7 + brightWhite: 0 diff --git a/themes/soft-kawaii-theme-1-color-theme.yaml b/themes/soft-kawaii-theme-1-color-theme.yaml index 3915e283..a89e9bb0 100644 --- a/themes/soft-kawaii-theme-1-color-theme.yaml +++ b/themes/soft-kawaii-theme-1-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AiminHm.soft-kawaii-theme" version: "1.0.2" installs: 286 + rating: 0 + ratings: 0 author: "AiminHm" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AiminHm.soft-kawaii-theme" diff --git a/themes/soft-light.yaml b/themes/soft-light.yaml new file mode 100644 index 00000000..1a593ea0 --- /dev/null +++ b/themes/soft-light.yaml @@ -0,0 +1,52 @@ +name: "Soft Light" +source: + marketplace_id: "Gerrnperl.soft-color-theme" + version: "0.0.2" + installs: 1895 + rating: 5 + ratings: 2 + author: "Gerrnperl" + repo: "https://github.com/Gerrnperl/vscode-soft-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gerrnperl.soft-color-theme" +colors: + bg: "#F8FFF3" + fg: "#5A5A5A" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: "Soft Dark" + contrast: + fg: 82.5 + black: 104.7 + red: 72.6 + green: 47.9 + yellow: 56.5 + blue: 84.7 + magenta: 73.2 + cyan: 59.2 + white: 84.5 + brightBlack: 77.4 + brightRed: 72.6 + brightGreen: 39.5 + brightYellow: 39.6 + brightBlue: 84.7 + brightMagenta: 73.2 + brightCyan: 59.2 + brightWhite: 47.1 diff --git a/themes/soft-material.yaml b/themes/soft-material.yaml index ac0dbb79..c0869945 100644 --- a/themes/soft-material.yaml +++ b/themes/soft-material.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sainnhe.soft-material" version: "0.1.1" installs: 981 + rating: 5 + ratings: 1 author: "sainnhe" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.soft-material" diff --git a/themes/soft-midnight.yaml b/themes/soft-midnight.yaml index f0d1a4a0..b03eba17 100644 --- a/themes/soft-midnight.yaml +++ b/themes/soft-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JeanCastle.soft-midnight" version: "0.0.2" installs: 200 + rating: 5 + ratings: 1 author: "Jean Castle" repo: "https://github.com/jeangoo/soft-midnight" url: "https://marketplace.visualstudio.com/items?itemName=JeanCastle.soft-midnight" diff --git a/themes/soft-mood-theme.yaml b/themes/soft-mood-theme.yaml index b46104ca..cef62f7f 100644 --- a/themes/soft-mood-theme.yaml +++ b/themes/soft-mood-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cdub.soft-mood-theme-dark" version: "0.0.3" installs: 511 + rating: 0 + ratings: 0 author: "cdub" repo: "https://github.com/cwon07/softmoodvscode" url: "https://marketplace.visualstudio.com/items?itemName=cdub.soft-mood-theme-dark" diff --git a/themes/soft-sight.yaml b/themes/soft-sight.yaml index dcfade29..9ad34890 100644 --- a/themes/soft-sight.yaml +++ b/themes/soft-sight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sajibsrs.soft-sight" version: "0.3.1" installs: 11779 + rating: 5 + ratings: 10 author: "Sajidur Rahman" repo: "https://github.com/sajibsrs/soft-sight" url: "https://marketplace.visualstudio.com/items?itemName=sajibsrs.soft-sight" diff --git a/themes/soft-sunset-dark.yaml b/themes/soft-sunset-dark.yaml index 57b49949..3c119df4 100644 --- a/themes/soft-sunset-dark.yaml +++ b/themes/soft-sunset-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "brainkit.soft-sunset-dark" version: "0.0.27" installs: 28 + rating: 5 + ratings: 1 author: "brainkit" repo: "https://github.com/brainkit/vs-code-soft-sunset-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=brainkit.soft-sunset-dark" diff --git a/themes/soft-yellow-light.yaml b/themes/soft-yellow-light.yaml index 9e73ea5b..f706af7d 100644 --- a/themes/soft-yellow-light.yaml +++ b/themes/soft-yellow-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SwaggyPinguin.soft-yellow-light" version: "0.0.6" installs: 2282 + rating: 0 + ratings: 0 author: "SwaggyPinguin" repo: "https://github.com/SwaggyPinguin/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SwaggyPinguin.soft-yellow-light" diff --git a/themes/softie-theme.yaml b/themes/softie-theme.yaml new file mode 100644 index 00000000..841d5d21 --- /dev/null +++ b/themes/softie-theme.yaml @@ -0,0 +1,52 @@ +name: "softie-theme" +source: + marketplace_id: "filipondios.softie-theme" + version: "0.7.0" + installs: 388 + rating: 0 + ratings: 0 + author: "filipondios" + repo: "https://github.com/dpv927/softie-theme" + url: "https://marketplace.visualstudio.com/items?itemName=filipondios.softie-theme" +colors: + bg: "#292932" + fg: "#CBC6C6" + black: "#000000" + red: "#DB4A4A" + green: "#0DBC79" + yellow: "#D5D568" + blue: "#5DA9FD" + magenta: "#BC3FBC" + cyan: "#26C4EA" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FD3D3D" + brightGreen: "#23D18B" + brightYellow: "#FDFD5D" + brightBlue: "#248CFF" + brightMagenta: "#D670D6" + brightCyan: "#00CDFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 69 + black: 0 + red: 30.5 + green: 50.2 + yellow: 74.1 + blue: 50.2 + magenta: 27 + cyan: 58.7 + white: 87.2 + brightBlack: 19.3 + brightRed: 36.4 + brightGreen: 60.8 + brightYellow: 98.1 + brightBlue: 37.6 + brightMagenta: 42.6 + brightCyan: 63.9 + brightWhite: 87.2 diff --git a/themes/soho-color-theme.yaml b/themes/soho-color-theme.yaml index 149cfa1e..2c410e61 100644 --- a/themes/soho-color-theme.yaml +++ b/themes/soho-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "smlombardi.soho" version: "2.1.3" installs: 3066 + rating: 5 + ratings: 2 author: "smlombardi" repo: "https://github.com/smlombardi/theme-soho" url: "https://marketplace.visualstudio.com/items?itemName=smlombardi.soho" diff --git a/themes/soil-theme.yaml b/themes/soil-theme.yaml index e7b99b5c..0cfee76b 100644 --- a/themes/soil-theme.yaml +++ b/themes/soil-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "codesbiome.soil-theme-vscode" version: "1.1.3" installs: 1434 + rating: 5 + ratings: 1 author: "Codesbiome" repo: "https://github.com/codesbiome/soil-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=codesbiome.soil-theme-vscode" diff --git a/themes/solar-flare.yaml b/themes/solar-flare.yaml index 6c688ead..50b0ed20 100644 --- a/themes/solar-flare.yaml +++ b/themes/solar-flare.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "skyler.ocrmnav" version: "4.0.196" installs: 325 + rating: 0 + ratings: 0 author: "skyler" repo: "https://github.com/8an3/OCRMNav" url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" diff --git a/themes/solarflare-contrast.yaml b/themes/solarflare-contrast.yaml index 14108f2d..7621cd74 100644 --- a/themes/solarflare-contrast.yaml +++ b/themes/solarflare-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/solarflare-light.yaml b/themes/solarflare-light.yaml index 8a19516b..991b2245 100644 --- a/themes/solarflare-light.yaml +++ b/themes/solarflare-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/solarflare.yaml b/themes/solarflare.yaml index ccd348d2..2ea1e6e6 100644 --- a/themes/solarflare.yaml +++ b/themes/solarflare.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/solaris.yaml b/themes/solaris.yaml index bcbefb59..3eace486 100644 --- a/themes/solaris.yaml +++ b/themes/solaris.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SkiffOn.solaris-theme-ultra" version: "0.0.2" installs: 71 + rating: 0 + ratings: 0 author: "SkiffOn" repo: "https://github.com/KonstantinChuper/Solaris" url: "https://marketplace.visualstudio.com/items?itemName=SkiffOn.solaris-theme-ultra" diff --git a/themes/solarized-complete-dark.yaml b/themes/solarized-complete-dark.yaml index c2e399aa..13da3655 100644 --- a/themes/solarized-complete-dark.yaml +++ b/themes/solarized-complete-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AH-oss.solarized-complete" version: "1.2.0" installs: 93 + rating: 0 + ratings: 0 author: "AH-oss" repo: "https://github.com/jmatilai/solarized-complete" url: "https://marketplace.visualstudio.com/items?itemName=AH-oss.solarized-complete" diff --git a/themes/solarized-complete-light.yaml b/themes/solarized-complete-light.yaml index 25b26e67..619ca874 100644 --- a/themes/solarized-complete-light.yaml +++ b/themes/solarized-complete-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AH-oss.solarized-complete" version: "1.2.0" installs: 93 + rating: 0 + ratings: 0 author: "AH-oss" repo: "https://github.com/jmatilai/solarized-complete" url: "https://marketplace.visualstudio.com/items?itemName=AH-oss.solarized-complete" diff --git a/themes/solarized-custom-dark.yaml b/themes/solarized-custom-dark.yaml index 7c388602..af016292 100644 --- a/themes/solarized-custom-dark.yaml +++ b/themes/solarized-custom-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AH-oss.soft2000" version: "0.0.1" installs: 18 + rating: 5 + ratings: 1 author: "AH-oss" repo: "https://github.com/jmatilai/soft2000" url: "https://marketplace.visualstudio.com/items?itemName=AH-oss.soft2000" diff --git a/themes/solarized-custom-light.yaml b/themes/solarized-custom-light.yaml index 5e27457b..32770d72 100644 --- a/themes/solarized-custom-light.yaml +++ b/themes/solarized-custom-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AH-oss.soft2000" version: "0.0.1" installs: 18 + rating: 5 + ratings: 1 author: "AH-oss" repo: "https://github.com/jmatilai/soft2000" url: "https://marketplace.visualstudio.com/items?itemName=AH-oss.soft2000" diff --git a/themes/solarized-dark-theme.yaml b/themes/solarized-dark-theme.yaml index 2b4ef563..21e03f01 100644 --- a/themes/solarized-dark-theme.yaml +++ b/themes/solarized-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mjlaufer.vscode-themes" version: "0.1.0" installs: 1788 + rating: 0 + ratings: 0 author: "mjlaufer" repo: "https://github.com/mjlaufer/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=mjlaufer.vscode-themes" diff --git a/themes/solarized-dark.yaml b/themes/solarized-dark.yaml index 4e1a8206..ded96360 100644 --- a/themes/solarized-dark.yaml +++ b/themes/solarized-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "QuarkQuartet-IRW.doom-solarized" version: "0.0.1" installs: 472 + rating: 0 + ratings: 0 author: "QuarkQuartet" repo: "https://github.com/quarkquartet/doom-solarized-vscode" url: "https://marketplace.visualstudio.com/items?itemName=QuarkQuartet-IRW.doom-solarized" diff --git a/themes/solarized-deep.yaml b/themes/solarized-deep.yaml index 2303672d..d9d51f37 100644 --- a/themes/solarized-deep.yaml +++ b/themes/solarized-deep.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "j4rviscmd.solarized-deep" version: "0.1.4" installs: 47 + rating: 5 + ratings: 1 author: "j4rviscmd" repo: "https://github.com/j4rviscmd/vscode-theme-solarized-deep" url: "https://marketplace.visualstudio.com/items?itemName=j4rviscmd.solarized-deep" diff --git a/themes/solarized-light-functional.yaml b/themes/solarized-light-functional.yaml index 50dc00bb..28de55f9 100644 --- a/themes/solarized-light-functional.yaml +++ b/themes/solarized-light-functional.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "veggiemonk.solarized-light-functional" version: "2.0.0" installs: 3699 + rating: 5 + ratings: 1 author: "veggiemonk" repo: "https://github.com/veggiemonk/theme-solarized-light-functional" url: "https://marketplace.visualstudio.com/items?itemName=veggiemonk.solarized-light-functional" diff --git a/themes/solarized-light-n.yaml b/themes/solarized-light-n.yaml index f8b70953..24c4c6d7 100644 --- a/themes/solarized-light-n.yaml +++ b/themes/solarized-light-n.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "naren.solarized-n" version: "0.0.2" installs: 537 + rating: 0 + ratings: 0 author: "Naren" repo: null url: "https://marketplace.visualstudio.com/items?itemName=naren.solarized-n" diff --git a/themes/solarized-light.yaml b/themes/solarized-light.yaml index 6e604d6c..d2e603b5 100644 --- a/themes/solarized-light.yaml +++ b/themes/solarized-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Braver.vscode-solarized" version: "2.1.0" installs: 38112 + rating: 4.17 + ratings: 6 author: "Koen Lageveen" repo: "https://github.com/braver/vscode-solarized" url: "https://marketplace.visualstudio.com/items?itemName=Braver.vscode-solarized" diff --git a/themes/solarized-lilac.yaml b/themes/solarized-lilac.yaml index b1493119..89a7349b 100644 --- a/themes/solarized-lilac.yaml +++ b/themes/solarized-lilac.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diamondmind.solarized-neue" version: "0.26.0" installs: 4083 + rating: 5 + ratings: 1 author: "Phillip Sauerbeck" repo: "https://github.com/pmsaue0/solarized-neue" url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" diff --git a/themes/solarized-neue-bright.yaml b/themes/solarized-neue-bright.yaml index eaf452fc..8757eb4c 100644 --- a/themes/solarized-neue-bright.yaml +++ b/themes/solarized-neue-bright.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diamondmind.solarized-neue" version: "0.26.0" installs: 4083 + rating: 5 + ratings: 1 author: "Phillip Sauerbeck" repo: "https://github.com/pmsaue0/solarized-neue" url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" diff --git a/themes/solarized-neue.yaml b/themes/solarized-neue.yaml index 64603433..15fadfba 100644 --- a/themes/solarized-neue.yaml +++ b/themes/solarized-neue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diamondmind.solarized-neue" version: "0.26.0" installs: 4083 + rating: 5 + ratings: 1 author: "Phillip Sauerbeck" repo: "https://github.com/pmsaue0/solarized-neue" url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" diff --git a/themes/solarized-next.yaml b/themes/solarized-next.yaml new file mode 100644 index 00000000..eab9c56f --- /dev/null +++ b/themes/solarized-next.yaml @@ -0,0 +1,52 @@ +name: "Solarized Next" +source: + marketplace_id: "Gipphe.solarized-next-plus" + version: "2.1.4" + installs: 375 + rating: 0 + ratings: 0 + author: "Gipphe" + repo: "https://github.com/Gipphe/solarized-next" + url: "https://marketplace.visualstudio.com/items?itemName=Gipphe.solarized-next-plus" +colors: + bg: "#002B36" + fg: "#839496" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#073642" + brightRed: "#CB4B16" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#268BD2" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 220 + pair: null + contrast: + fg: 39.5 + black: 0 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 89.5 + brightBlack: 0 + brightRed: 27.2 + brightGreen: 39.2 + brightYellow: 39.2 + brightBlue: 39.5 + brightMagenta: 28 + brightCyan: 34.3 + brightWhite: 98.6 diff --git a/themes/solarized-pro.yaml b/themes/solarized-pro.yaml index d8ef3ad7..2c155577 100644 --- a/themes/solarized-pro.yaml +++ b/themes/solarized-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IIInsomnia.solarized-pro" version: "1.0.13" installs: 1347 + rating: 5 + ratings: 2 author: "noble-gase" repo: "https://github.com/noble-gase/ng" url: "https://marketplace.visualstudio.com/items?itemName=IIInsomnia.solarized-pro" diff --git a/themes/solarized-right.yaml b/themes/solarized-right.yaml index 294a8690..14eedc31 100644 --- a/themes/solarized-right.yaml +++ b/themes/solarized-right.yaml @@ -1,11 +1,13 @@ name: "Solarized Right" source: - marketplace_id: "Mukoopa.SolarRight" - version: "0.0.6" - installs: 111 + marketplace_id: "Mukoopa.SolarizedRightMukoopa" + version: "0.0.1" + installs: 1 + rating: 0 + ratings: 0 author: "Mukoopa" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Mukoopa.SolarRight" + url: "https://marketplace.visualstudio.com/items?itemName=Mukoopa.SolarizedRightMukoopa" colors: bg: "#FFF6EA" fg: "#000000" @@ -16,15 +18,15 @@ colors: blue: "#84BFFF" magenta: "#FF92FF" cyan: "#61DEFD" - white: "#D5D5D5" - brightBlack: "#A9A9A9" + white: "#BEBEBE" + brightBlack: "#949494" brightRed: "#FFC4C4" brightGreen: "#ADFFAD" brightYellow: "#FDFFB2" brightBlue: "#AFD5FF" brightMagenta: "#FFBDFF" brightCyan: "#8CE8FF" - brightWhite: "#FFFFFF" + brightWhite: "#D5D5D5" meta: mode: "light" accent: "green" @@ -39,12 +41,12 @@ meta: blue: 32.2 magenta: 32.2 cyan: 21 - white: 17.5 - brightBlack: 41.7 + white: 30.4 + brightBlack: 52.4 brightRed: 18.9 brightGreen: 0 brightYellow: 0 brightBlue: 19.6 brightMagenta: 18.7 brightCyan: 14.1 - brightWhite: 0 + brightWhite: 17.5 diff --git a/themes/solarized-simon.yaml b/themes/solarized-simon.yaml new file mode 100644 index 00000000..b16e08f3 --- /dev/null +++ b/themes/solarized-simon.yaml @@ -0,0 +1,52 @@ +name: "solarized-simon" +source: + marketplace_id: "SimonAlford.solarized-simon" + version: "0.3.0" + installs: 77 + rating: 0 + ratings: 0 + author: "Simon Alford" + repo: "https://github.com/simonalford42/dotfiles" + url: "https://marketplace.visualstudio.com/items?itemName=SimonAlford.solarized-simon" +colors: + bg: "#002B36" + fg: "#C3C8C8" + black: "#073642" + red: "#DC322F" + green: "#D5A804" + yellow: "#CBAD07" + blue: "#268BD2" + magenta: "#F03D94" + cyan: "#33C4B8" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "red" + hue: 220 + pair: null + contrast: + fg: 69.2 + black: 0 + red: 27.7 + green: 55.1 + yellow: 55.5 + blue: 34.3 + magenta: 35.8 + cyan: 56.8 + white: 89.5 + brightBlack: 0 + brightRed: 27.2 + brightGreen: 21.5 + brightYellow: 27.3 + brightBlue: 39.5 + brightMagenta: 28 + brightCyan: 46.4 + brightWhite: 98.6 diff --git a/themes/solarized-ss-light.yaml b/themes/solarized-ss-light.yaml index 727eced3..cfe6a1d5 100644 --- a/themes/solarized-ss-light.yaml +++ b/themes/solarized-ss-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sergeysinoptik.solarized-ss-light-theme" version: "1.1.1" installs: 1238 + rating: 0 + ratings: 0 author: "sergeysinoptik" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sergeysinoptik.solarized-ss-light-theme" diff --git a/themes/solarized-yuki.yaml b/themes/solarized-yuki.yaml index 4837657a..0dea005f 100644 --- a/themes/solarized-yuki.yaml +++ b/themes/solarized-yuki.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "diamondmind.solarized-neue" version: "0.26.0" installs: 4083 + rating: 5 + ratings: 1 author: "Phillip Sauerbeck" repo: "https://github.com/pmsaue0/solarized-neue" url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" diff --git a/themes/solarized.yaml b/themes/solarized.yaml index 2517a21c..1c0f7c01 100644 --- a/themes/solarized.yaml +++ b/themes/solarized.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SzilardLeventeFarkas.solarizedplus" version: "1.0.2" installs: 4827 + rating: 0 + ratings: 0 author: "Szilard Levente Farkas" repo: "https://github.com/CrHasher/SolarizedPlus" url: "https://marketplace.visualstudio.com/items?itemName=SzilardLeventeFarkas.solarizedplus" diff --git a/themes/solarus.yaml b/themes/solarus.yaml index dd03d086..5ebb97f6 100644 --- a/themes/solarus.yaml +++ b/themes/solarus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aless.solarus-editor-theme" version: "0.2.1" installs: 31 + rating: 0 + ratings: 0 author: "Aless" repo: "https://gitlab.com/Aless-OP/solarus-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=aless.solarus-editor-theme" diff --git a/themes/solaryss.yaml b/themes/solaryss.yaml index 8d842b2b..8d13b895 100644 --- a/themes/solaryss.yaml +++ b/themes/solaryss.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "harry-public.vadiya-themes" version: "0.0.3" installs: 1974 + rating: 5 + ratings: 1 author: "harry-public" repo: "https://github.com/harry-public/vadiya-themes" url: "https://marketplace.visualstudio.com/items?itemName=harry-public.vadiya-themes" diff --git a/themes/solitude-dark.yaml b/themes/solitude-dark.yaml index 6a6ead26..f79c8549 100644 --- a/themes/solitude-dark.yaml +++ b/themes/solitude-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "403forbidden.solitude-color-theme" version: "1.0.0" installs: 68 + rating: 5 + ratings: 1 author: "403 Forbidden" repo: "https://github.com/mario-garcia-dev/solitude-theme" url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.solitude-color-theme" diff --git a/themes/solitude-soft.yaml b/themes/solitude-soft.yaml index 8b65fffc..79600a49 100644 --- a/themes/solitude-soft.yaml +++ b/themes/solitude-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "403forbidden.solitude-color-theme" version: "1.0.0" installs: 68 + rating: 5 + ratings: 1 author: "403 Forbidden" repo: "https://github.com/mario-garcia-dev/solitude-theme" url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.solitude-color-theme" diff --git a/themes/solo-leveling.yaml b/themes/solo-leveling.yaml index cd02f28f..a521f7d4 100644 --- a/themes/solo-leveling.yaml +++ b/themes/solo-leveling.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Amanpandey.solo-leveling-theme" version: "0.1.0" installs: 4010 + rating: 5 + ratings: 1 author: "Amanpandey" repo: "https://github.com/losercodes/solo-leveling-theme" url: "https://marketplace.visualstudio.com/items?itemName=Amanpandey.solo-leveling-theme" diff --git a/themes/solstice-estival.yaml b/themes/solstice-estival.yaml index 51107e5d..d30ee176 100644 --- a/themes/solstice-estival.yaml +++ b/themes/solstice-estival.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kev1nweng.solstice" version: "0.4.2" installs: 38 + rating: 0 + ratings: 0 author: "小翁同学" repo: "https://github.com/kev1nweng/solstice" url: "https://marketplace.visualstudio.com/items?itemName=kev1nweng.solstice" diff --git a/themes/solstice-heat.yaml b/themes/solstice-heat.yaml new file mode 100644 index 00000000..8fbb03b5 --- /dev/null +++ b/themes/solstice-heat.yaml @@ -0,0 +1,52 @@ +name: "Solstice-Heat" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#2B221A" + fg: "#F9CA9C" + black: "#2B221A" + red: "#B71A1A" + green: "#29C3A0" + yellow: "#D29922" + blue: "#F66E60" + magenta: "#F66E60" + cyan: "#29C3A0" + white: "#F9CA9C" + brightBlack: "#2B221A" + brightRed: "#B71A1A" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#F66E60" + brightMagenta: "#F66E60" + brightCyan: "#29C3A0" + brightWhite: "#F9CA9C" +meta: + mode: "dark" + accent: "orange" + hue: 63 + pair: null + contrast: + fg: 76.9 + black: 0 + red: 18.4 + green: 56 + yellow: 50 + blue: 44.9 + magenta: 44.9 + cyan: 56 + white: 76.9 + brightBlack: 0 + brightRed: 18.4 + brightGreen: 56 + brightYellow: 50 + brightBlue: 44.9 + brightMagenta: 44.9 + brightCyan: 56 + brightWhite: 76.9 diff --git a/themes/solstice-hibernal.yaml b/themes/solstice-hibernal.yaml index 5e202337..83f34dea 100644 --- a/themes/solstice-hibernal.yaml +++ b/themes/solstice-hibernal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kev1nweng.solstice" version: "0.4.2" installs: 38 + rating: 0 + ratings: 0 author: "小翁同学" repo: "https://github.com/kev1nweng/solstice" url: "https://marketplace.visualstudio.com/items?itemName=kev1nweng.solstice" diff --git a/themes/somber.yaml b/themes/somber.yaml index ac42ed43..7fa020e7 100644 --- a/themes/somber.yaml +++ b/themes/somber.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JaydenDancer.somber" version: "0.0.1" installs: 57 + rating: 5 + ratings: 1 author: "Jayden Dancer" repo: "https://github.com/Official-Phantom/Somber-VSTheme" url: "https://marketplace.visualstudio.com/items?itemName=JaydenDancer.somber" diff --git a/themes/something-different.yaml b/themes/something-different.yaml new file mode 100644 index 00000000..6d5e72f5 --- /dev/null +++ b/themes/something-different.yaml @@ -0,0 +1,52 @@ +name: "Something Different" +source: + marketplace_id: "mwlang.something-different" + version: "0.0.5" + installs: 51 + rating: 0 + ratings: 0 + author: "mwlang" + repo: "https://github.com/mwlang/vscode-color-theme-something-different" + url: "https://marketplace.visualstudio.com/items?itemName=mwlang.something-different" +colors: + bg: "#263238" + fg: "#DEDAA5" + black: "#8E8E8E" + red: "#B83019" + green: "#51BF37" + yellow: "#C6C43D" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#53C2C5" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#EF766D" + brightGreen: "#8CF67A" + brightYellow: "#FEFB7E" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#8DF9FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 230 + pair: null + contrast: + fg: 77.5 + black: 36.4 + red: 17.8 + green: 50.5 + yellow: 62.7 + blue: 23.2 + magenta: 25.6 + cyan: 55.7 + white: 85.8 + brightBlack: 17.9 + brightRed: 43.2 + brightGreen: 81.6 + brightYellow: 96.4 + brightBlue: 35.8 + brightMagenta: 41.2 + brightCyan: 87.8 + brightWhite: 102.7 diff --git a/themes/something-theme.yaml b/themes/something-theme.yaml index d23d0fae..48953e49 100644 --- a/themes/something-theme.yaml +++ b/themes/something-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "monadica.something-theme" version: "0.0.3" installs: 51 + rating: 5 + ratings: 1 author: "Monadica" repo: "https://github.com/monadicarts/something-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=monadica.something-theme" diff --git a/themes/somewhere-on-a-beach.yaml b/themes/somewhere-on-a-beach.yaml index 4bf274a6..8417682a 100644 --- a/themes/somewhere-on-a-beach.yaml +++ b/themes/somewhere-on-a-beach.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BlakeNoll.somewhere-on-a-beach" version: "1.3.0" installs: 575 + rating: 0 + ratings: 0 author: "Blake Noll" repo: "https://github.com/blakenoll/some-where-on-a-beach" url: "https://marketplace.visualstudio.com/items?itemName=BlakeNoll.somewhere-on-a-beach" diff --git a/themes/sonic-pulse.yaml b/themes/sonic-pulse.yaml new file mode 100644 index 00000000..f8cb19cb --- /dev/null +++ b/themes/sonic-pulse.yaml @@ -0,0 +1,52 @@ +name: "Sonic-Pulse" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#080B14" + fg: "#E9F0F5" + black: "#080B14" + red: "#FF1648" + green: "#29C3A0" + yellow: "#D29922" + blue: "#00B262" + magenta: "#00B262" + cyan: "#29C3A0" + white: "#E9F0F5" + brightBlack: "#080B14" + brightRed: "#FF1648" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#00B262" + brightMagenta: "#00B262" + brightCyan: "#29C3A0" + brightWhite: "#E9F0F5" +meta: + mode: "dark" + accent: "orange" + hue: 269 + pair: null + contrast: + fg: 97.1 + black: 0 + red: 38 + green: 58.5 + yellow: 52.5 + blue: 48.7 + magenta: 48.7 + cyan: 58.5 + white: 97.1 + brightBlack: 0 + brightRed: 38 + brightGreen: 58.5 + brightYellow: 52.5 + brightBlue: 48.7 + brightMagenta: 48.7 + brightCyan: 58.5 + brightWhite: 97.1 diff --git a/themes/sonokai-andromeda.yaml b/themes/sonokai-andromeda.yaml index c1657304..11b35127 100644 --- a/themes/sonokai-andromeda.yaml +++ b/themes/sonokai-andromeda.yaml @@ -1,11 +1,13 @@ name: "Sonokai Andromeda" source: - marketplace_id: "slava0135.sonokai-pro" + marketplace_id: "xckomorebi.sonokai-fork" version: "0.3.0" - installs: 92 - author: "slava0135" - repo: "https://github.com/slava0135/sonokai-pro-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=slava0135.sonokai-pro" + installs: 171 + rating: 0 + ratings: 0 + author: "xckomorebi" + repo: "https://github.com/xckomorebi/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.sonokai-fork" colors: bg: "#2B2D3A" fg: "#E1E3E4" diff --git a/themes/sonokai-atlantis.yaml b/themes/sonokai-atlantis.yaml index 3c8121e8..0ca5d14d 100644 --- a/themes/sonokai-atlantis.yaml +++ b/themes/sonokai-atlantis.yaml @@ -1,11 +1,13 @@ name: "Sonokai Atlantis" source: - marketplace_id: "slava0135.sonokai-pro" + marketplace_id: "xckomorebi.sonokai-fork" version: "0.3.0" - installs: 92 - author: "slava0135" - repo: "https://github.com/slava0135/sonokai-pro-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=slava0135.sonokai-pro" + installs: 171 + rating: 0 + ratings: 0 + author: "xckomorebi" + repo: "https://github.com/xckomorebi/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.sonokai-fork" colors: bg: "#2A2F38" fg: "#E1E3E4" diff --git a/themes/sonokai-espresso.yaml b/themes/sonokai-espresso.yaml index 7aa8a2c0..e6b4b3d3 100644 --- a/themes/sonokai-espresso.yaml +++ b/themes/sonokai-espresso.yaml @@ -1,11 +1,13 @@ name: "Sonokai Espresso" source: - marketplace_id: "slava0135.sonokai-pro" + marketplace_id: "xckomorebi.sonokai-fork" version: "0.3.0" - installs: 92 - author: "slava0135" - repo: "https://github.com/slava0135/sonokai-pro-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=slava0135.sonokai-pro" + installs: 171 + rating: 0 + ratings: 0 + author: "xckomorebi" + repo: "https://github.com/xckomorebi/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.sonokai-fork" colors: bg: "#312C2B" fg: "#E4E3E1" diff --git a/themes/sonokai-maia.yaml b/themes/sonokai-maia.yaml index 0dec815e..15557170 100644 --- a/themes/sonokai-maia.yaml +++ b/themes/sonokai-maia.yaml @@ -1,11 +1,13 @@ name: "Sonokai Maia" source: - marketplace_id: "slava0135.sonokai-pro" + marketplace_id: "xckomorebi.sonokai-fork" version: "0.3.0" - installs: 92 - author: "slava0135" - repo: "https://github.com/slava0135/sonokai-pro-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=slava0135.sonokai-pro" + installs: 171 + rating: 0 + ratings: 0 + author: "xckomorebi" + repo: "https://github.com/xckomorebi/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.sonokai-fork" colors: bg: "#273136" fg: "#E1E2E3" diff --git a/themes/sonokai-shusia.yaml b/themes/sonokai-shusia.yaml index cf22d463..62ddd82e 100644 --- a/themes/sonokai-shusia.yaml +++ b/themes/sonokai-shusia.yaml @@ -1,11 +1,13 @@ name: "Sonokai Shusia" source: - marketplace_id: "slava0135.sonokai-pro" + marketplace_id: "xckomorebi.sonokai-fork" version: "0.3.0" - installs: 92 - author: "slava0135" - repo: "https://github.com/slava0135/sonokai-pro-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=slava0135.sonokai-pro" + installs: 171 + rating: 0 + ratings: 0 + author: "xckomorebi" + repo: "https://github.com/xckomorebi/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.sonokai-fork" colors: bg: "#2D2A2E" fg: "#E3E1E4" diff --git a/themes/sonokai.yaml b/themes/sonokai.yaml index 906273cb..35a94e1b 100644 --- a/themes/sonokai.yaml +++ b/themes/sonokai.yaml @@ -1,11 +1,13 @@ name: "Sonokai" source: - marketplace_id: "slava0135.sonokai-pro" + marketplace_id: "xckomorebi.sonokai-fork" version: "0.3.0" - installs: 92 - author: "slava0135" - repo: "https://github.com/slava0135/sonokai-pro-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=slava0135.sonokai-pro" + installs: 171 + rating: 0 + ratings: 0 + author: "xckomorebi" + repo: "https://github.com/xckomorebi/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.sonokai-fork" colors: bg: "#2C2E34" fg: "#E2E2E3" diff --git a/themes/sonora-deep-signal-faded.yaml b/themes/sonora-deep-signal-faded.yaml index 0c0374ab..21e5dba9 100644 --- a/themes/sonora-deep-signal-faded.yaml +++ b/themes/sonora-deep-signal-faded.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "martinlatrille.sonora" version: "0.0.8" installs: 32 + rating: 0 + ratings: 0 author: "martinlatrille" repo: "https://github.com/martinlatrille/Sonora" url: "https://marketplace.visualstudio.com/items?itemName=martinlatrille.sonora" diff --git a/themes/sonora-deep-signal-vibrant.yaml b/themes/sonora-deep-signal-vibrant.yaml index b6c20453..59d3626c 100644 --- a/themes/sonora-deep-signal-vibrant.yaml +++ b/themes/sonora-deep-signal-vibrant.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "martinlatrille.sonora" version: "0.0.8" installs: 32 + rating: 0 + ratings: 0 author: "martinlatrille" repo: "https://github.com/martinlatrille/Sonora" url: "https://marketplace.visualstudio.com/items?itemName=martinlatrille.sonora" diff --git a/themes/sonora-deep-signal.yaml b/themes/sonora-deep-signal.yaml index cb61ad7e..abafd535 100644 --- a/themes/sonora-deep-signal.yaml +++ b/themes/sonora-deep-signal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "martinlatrille.sonora" version: "0.0.8" installs: 32 + rating: 0 + ratings: 0 author: "martinlatrille" repo: "https://github.com/martinlatrille/Sonora" url: "https://marketplace.visualstudio.com/items?itemName=martinlatrille.sonora" diff --git a/themes/sonora-tides.yaml b/themes/sonora-tides.yaml index f4716491..63b3f77c 100644 --- a/themes/sonora-tides.yaml +++ b/themes/sonora-tides.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "martinlatrille.sonora" version: "0.0.8" installs: 32 + rating: 0 + ratings: 0 author: "martinlatrille" repo: "https://github.com/martinlatrille/Sonora" url: "https://marketplace.visualstudio.com/items?itemName=martinlatrille.sonora" diff --git a/themes/soothing-dark.yaml b/themes/soothing-dark.yaml index 3c1e2cff..16d68748 100644 --- a/themes/soothing-dark.yaml +++ b/themes/soothing-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fastestsunil.sunilcode-themes" version: "1.0.2" installs: 57 + rating: 5 + ratings: 1 author: "fastestsunil" repo: "https://github.com/fastestsunil/sunilcode-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=fastestsunil.sunilcode-themes" diff --git a/themes/soothing-light.yaml b/themes/soothing-light.yaml index 078ce73f..c9b537b5 100644 --- a/themes/soothing-light.yaml +++ b/themes/soothing-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fastestsunil.sunilcode-themes" version: "1.0.2" installs: 57 + rating: 5 + ratings: 1 author: "fastestsunil" repo: "https://github.com/fastestsunil/sunilcode-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=fastestsunil.sunilcode-themes" diff --git a/themes/soothing.yaml b/themes/soothing.yaml index 97a5a504..fa6e19e6 100644 --- a/themes/soothing.yaml +++ b/themes/soothing.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "alirezanet.soothing-theme" version: "0.1.2" installs: 1160 + rating: 5 + ratings: 3 author: "alireza" repo: "https://github.com/Alirezanet/Soothing-Theme" url: "https://marketplace.visualstudio.com/items?itemName=alirezanet.soothing-theme" diff --git a/themes/sorbet-swirl.yaml b/themes/sorbet-swirl.yaml new file mode 100644 index 00000000..571796d4 --- /dev/null +++ b/themes/sorbet-swirl.yaml @@ -0,0 +1,52 @@ +name: "Sorbet-Swirl" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#1E1916" + fg: "#E1E7FD" + black: "#1E1916" + red: "#FBA7A7" + green: "#29C3A0" + yellow: "#D29922" + blue: "#C1AAFF" + magenta: "#C1AAFF" + cyan: "#29C3A0" + white: "#E1E7FD" + brightBlack: "#1E1916" + brightRed: "#FBA7A7" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#C1AAFF" + brightMagenta: "#C1AAFF" + brightCyan: "#29C3A0" + brightWhite: "#E1E7FD" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 91.2 + black: 0 + red: 65.8 + green: 57.3 + yellow: 51.4 + blue: 62.2 + magenta: 62.2 + cyan: 57.3 + white: 91.2 + brightBlack: 0 + brightRed: 65.8 + brightGreen: 57.3 + brightYellow: 51.4 + brightBlue: 62.2 + brightMagenta: 62.2 + brightCyan: 57.3 + brightWhite: 91.2 diff --git a/themes/sorcerer.yaml b/themes/sorcerer.yaml index 4e39c5d8..528d9133 100644 --- a/themes/sorcerer.yaml +++ b/themes/sorcerer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arzg.apprentice" version: "1.3.0" installs: 660 + rating: 1 + ratings: 1 author: "arzg" repo: "https://github.com/arzg/apprentice-vscode" url: "https://marketplace.visualstudio.com/items?itemName=arzg.apprentice" diff --git a/themes/soudev-mega-dark.yaml b/themes/soudev-mega-dark.yaml index ea3554fe..fb30ec4d 100644 --- a/themes/soudev-mega-dark.yaml +++ b/themes/soudev-mega-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "soudev.soudev-theme" version: "1.0.3" installs: 11536 + rating: 5 + ratings: 1 author: "soudev" repo: "https://github.com/jefersonpassos/soudev-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" diff --git a/themes/soudev-purple-andromeda.yaml b/themes/soudev-purple-andromeda.yaml index bd6f96c0..68ade808 100644 --- a/themes/soudev-purple-andromeda.yaml +++ b/themes/soudev-purple-andromeda.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "soudev.soudev-theme" version: "1.0.3" installs: 11536 + rating: 5 + ratings: 1 author: "soudev" repo: "https://github.com/jefersonpassos/soudev-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" diff --git a/themes/soudev-semi-dark-andromeda.yaml b/themes/soudev-semi-dark-andromeda.yaml index b2a3dc1d..53bc00e1 100644 --- a/themes/soudev-semi-dark-andromeda.yaml +++ b/themes/soudev-semi-dark-andromeda.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "soudev.soudev-theme" version: "1.0.3" installs: 11536 + rating: 5 + ratings: 1 author: "soudev" repo: "https://github.com/jefersonpassos/soudev-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" diff --git a/themes/souei.yaml b/themes/souei.yaml new file mode 100644 index 00000000..fe6061b9 --- /dev/null +++ b/themes/souei.yaml @@ -0,0 +1,52 @@ +name: "Souei" +source: + marketplace_id: "HenriLima05.oniflux" + version: "1.0.0" + installs: 100 + rating: 0 + ratings: 0 + author: "Henri Lima" + repo: "https://github.com/henrilima/oni-flux" + url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.oniflux" +colors: + bg: "#0F0F0F" + fg: "#C9D1D9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 77.7 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/soul-theme.yaml b/themes/soul-theme.yaml index 13b40758..f9b3ec17 100644 --- a/themes/soul-theme.yaml +++ b/themes/soul-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "souli.soul-theme" version: "0.0.1" installs: 77 + rating: 0 + ratings: 0 author: "souli" repo: "https://github.com/S0ULI/Soul-Theme" url: "https://marketplace.visualstudio.com/items?itemName=souli.soul-theme" diff --git a/themes/soup-contrast.yaml b/themes/soup-contrast.yaml index 088a9822..39a1e71c 100644 --- a/themes/soup-contrast.yaml +++ b/themes/soup-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/soup-light.yaml b/themes/soup-light.yaml index ff51bfa5..278270f6 100644 --- a/themes/soup-light.yaml +++ b/themes/soup-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/soup.yaml b/themes/soup.yaml index d0f9dcf8..ade81c4f 100644 --- a/themes/soup.yaml +++ b/themes/soup.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/sourc.yaml b/themes/sourc.yaml index 6265165a..f9520e6b 100644 --- a/themes/sourc.yaml +++ b/themes/sourc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vitormalencar.sourc" version: "0.4.0" installs: 1270 + rating: 5 + ratings: 7 author: "Vitor Alencar" repo: "git+https://github.com/vitormalencar/sourc" url: "https://marketplace.visualstudio.com/items?itemName=vitormalencar.sourc" diff --git a/themes/sourcerer.yaml b/themes/sourcerer.yaml index bc7d5819..aa573a47 100644 --- a/themes/sourcerer.yaml +++ b/themes/sourcerer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bpruitt-goddard.sourcerer" version: "1.0.5" installs: 1524 + rating: 0 + ratings: 0 author: "Brian Pruitt-Goddard" repo: "https://github.com/bpruitt-goddard/vscode-sourcerer" url: "https://marketplace.visualstudio.com/items?itemName=bpruitt-goddard.sourcerer" diff --git a/themes/sourlick-contrast.yaml b/themes/sourlick-contrast.yaml index 60c99cf5..e72053d2 100644 --- a/themes/sourlick-contrast.yaml +++ b/themes/sourlick-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/sourlick-light.yaml b/themes/sourlick-light.yaml index 20c0b1f2..4c587852 100644 --- a/themes/sourlick-light.yaml +++ b/themes/sourlick-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/sourlick.yaml b/themes/sourlick.yaml index e5938f80..edd60af5 100644 --- a/themes/sourlick.yaml +++ b/themes/sourlick.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/south-australia-dark.yaml b/themes/south-australia-dark.yaml index f98f5526..c824414c 100644 --- a/themes/south-australia-dark.yaml +++ b/themes/south-australia-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.south-australia-theme" version: "1.3.0" installs: 0 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.south-australia-theme" diff --git a/themes/south-australia-light.yaml b/themes/south-australia-light.yaml index ddc00735..7112466c 100644 --- a/themes/south-australia-light.yaml +++ b/themes/south-australia-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.south-australia-theme" version: "1.3.0" installs: 0 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.south-australia-theme" diff --git a/themes/space-dark.yaml b/themes/space-dark.yaml index ae19c940..7b017d17 100644 --- a/themes/space-dark.yaml +++ b/themes/space-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/space-invader-black.yaml b/themes/space-invader-black.yaml index 02ef3ea3..a84d8f7b 100644 --- a/themes/space-invader-black.yaml +++ b/themes/space-invader-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rossipedia.space-invader-black" version: "0.0.4" installs: 764 + rating: 0 + ratings: 0 author: "rossipedia" repo: "https://github.com/rossipedia/space-invader-black-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=rossipedia.space-invader-black" diff --git a/themes/space-invader-darker.yaml b/themes/space-invader-darker.yaml index 2b606ba4..2db16f8f 100644 --- a/themes/space-invader-darker.yaml +++ b/themes/space-invader-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samogorman1993.space-invader" version: "1.3.0" installs: 1935 + rating: 0 + ratings: 0 author: "Sam Ogorman" repo: "https://github.com/samogorm/space-invader-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=samogorman1993.space-invader" diff --git a/themes/space-invader-light.yaml b/themes/space-invader-light.yaml index 2d9949d5..4cd3c280 100644 --- a/themes/space-invader-light.yaml +++ b/themes/space-invader-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samogorman1993.space-invader" version: "1.3.0" installs: 1935 + rating: 0 + ratings: 0 author: "Sam Ogorman" repo: "https://github.com/samogorm/space-invader-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=samogorman1993.space-invader" diff --git a/themes/space-invader.yaml b/themes/space-invader.yaml index 15ca335e..dfc8e4df 100644 --- a/themes/space-invader.yaml +++ b/themes/space-invader.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samogorman1993.space-invader" version: "1.3.0" installs: 1935 + rating: 0 + ratings: 0 author: "Sam Ogorman" repo: "https://github.com/samogorm/space-invader-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=samogorman1993.space-invader" diff --git a/themes/space-light.yaml b/themes/space-light.yaml index 713fc97c..7c04a9d0 100644 --- a/themes/space-light.yaml +++ b/themes/space-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SecureDev01.vscode-multi-themes" version: "0.0.51" installs: 1840 + rating: 5 + ratings: 2 author: "SecureDev" repo: "https://github.com/codewithevilxd/vscode-multi-themes" url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" diff --git a/themes/space-purple-dark.yaml b/themes/space-purple-dark.yaml index e1a2b3ef..569dcb7e 100644 --- a/themes/space-purple-dark.yaml +++ b/themes/space-purple-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zzAIMoo.space-purple" version: "0.11.0" installs: 11295 + rating: 5 + ratings: 1 author: "zzAIMoo" repo: "https://github.com/zzAIMoo/space-purple-theme" url: "https://marketplace.visualstudio.com/items?itemName=zzAIMoo.space-purple" diff --git a/themes/space-purple-light.yaml b/themes/space-purple-light.yaml index f6a1d7d2..e57dc287 100644 --- a/themes/space-purple-light.yaml +++ b/themes/space-purple-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zzAIMoo.space-purple" version: "0.11.0" installs: 11295 + rating: 5 + ratings: 1 author: "zzAIMoo" repo: "https://github.com/zzAIMoo/space-purple-theme" url: "https://marketplace.visualstudio.com/items?itemName=zzAIMoo.space-purple" diff --git a/themes/space-theme.yaml b/themes/space-theme.yaml index ad5a8156..a750b8cb 100644 --- a/themes/space-theme.yaml +++ b/themes/space-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hosana.space-github-theme" version: "1.8.0" installs: 561 + rating: 5 + ratings: 1 author: "hosana" repo: "https://github.com/hosanabarcelos/vscode-extension" url: "https://marketplace.visualstudio.com/items?itemName=hosana.space-github-theme" diff --git a/themes/space.yaml b/themes/space.yaml index 225df5e5..fb4febce 100644 --- a/themes/space.yaml +++ b/themes/space.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.grayspace" version: "0.0.23" installs: 768 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/yesomac/platzi_theme" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.grayspace" diff --git a/themes/spacecamp.yaml b/themes/spacecamp.yaml index 342220b1..b7e1e8f1 100644 --- a/themes/spacecamp.yaml +++ b/themes/spacecamp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PaulGomez.spacecamp" version: "0.0.8" installs: 393 + rating: 5 + ratings: 1 author: "Dino Gomez" repo: "https://github.com/dinogomez/SpaceCamp" url: "https://marketplace.visualstudio.com/items?itemName=PaulGomez.spacecamp" diff --git a/themes/spacedust.yaml b/themes/spacedust.yaml index bfeea150..fe6e3710 100644 --- a/themes/spacedust.yaml +++ b/themes/spacedust.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wallsified.spacedust" version: "0.0.1" installs: 555 + rating: 0 + ratings: 0 author: "Wallsified" repo: "https://github.com/Wallsified/Spacedust-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=Wallsified.spacedust" diff --git a/themes/spacegray.yaml b/themes/spacegray.yaml index 7ad9be17..4627ca12 100644 --- a/themes/spacegray.yaml +++ b/themes/spacegray.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.grayspace" version: "0.0.23" installs: 768 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/yesomac/platzi_theme" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.grayspace" diff --git a/themes/spacegrey.yaml b/themes/spacegrey.yaml index 6c9d32a6..56cfe49b 100644 --- a/themes/spacegrey.yaml +++ b/themes/spacegrey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "huodon.spacegrey" version: "0.1.4" installs: 647 + rating: 5 + ratings: 1 author: "huodon" repo: "https://github.com/FlatMapIO/vscode-spacegrey-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=huodon.spacegrey" diff --git a/themes/spacemacs-dark.yaml b/themes/spacemacs-dark.yaml index 5a42b6fe..25dccb8f 100644 --- a/themes/spacemacs-dark.yaml +++ b/themes/spacemacs-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/spacemacs-light.yaml b/themes/spacemacs-light.yaml index d2aef796..cf59d830 100644 --- a/themes/spacemacs-light.yaml +++ b/themes/spacemacs-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/spaceoceankitrefined.yaml b/themes/spaceoceankitrefined.yaml index dad9b43a..a1a74cd1 100644 --- a/themes/spaceoceankitrefined.yaml +++ b/themes/spaceoceankitrefined.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "space-ocean-kit-refined.space-ocean-kit-refined" version: "0.3.1" installs: 81267 + rating: 0 + ratings: 0 author: "space-ocean-kit-refined" repo: "https://github.com/aichbauer/space-ocean-kit-refined/" url: "https://marketplace.visualstudio.com/items?itemName=space-ocean-kit-refined.space-ocean-kit-refined" diff --git a/themes/spacial.yaml b/themes/spacial.yaml index 4f351c9e..1f26d503 100644 --- a/themes/spacial.yaml +++ b/themes/spacial.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.spacial" version: "0.0.8" installs: 137 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/y3mm/spacial" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.spacial" diff --git a/themes/spades.yaml b/themes/spades.yaml index c9045da2..f982c101 100644 --- a/themes/spades.yaml +++ b/themes/spades.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "redwilliams.spades" version: "2.0.2" installs: 1146 + rating: 5 + ratings: 1 author: "redwilliams" repo: "https://github.com/Red-CS/Spades" url: "https://marketplace.visualstudio.com/items?itemName=redwilliams.spades" diff --git a/themes/sparkle-theme.yaml b/themes/sparkle-theme.yaml index c1cc4c8d..de4c50a0 100644 --- a/themes/sparkle-theme.yaml +++ b/themes/sparkle-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ManishPatil.sparkle" version: "0.0.1" installs: 193 + rating: 5 + ratings: 2 author: "Manish Patil" repo: "https://github.com/PATILMANISH/sparkle" url: "https://marketplace.visualstudio.com/items?itemName=ManishPatil.sparkle" diff --git a/themes/speakeasy.yaml b/themes/speakeasy.yaml index 226dad38..d0d2a967 100644 --- a/themes/speakeasy.yaml +++ b/themes/speakeasy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "winniethemu.speakeasy" version: "0.1.0" installs: 50 + rating: 0 + ratings: 0 author: "Mu" repo: "https://github.com/winniethemu/speakeasy" url: "https://marketplace.visualstudio.com/items?itemName=winniethemu.speakeasy" diff --git a/themes/spearmint-contrast.yaml b/themes/spearmint-contrast.yaml index aafca05f..751f9df8 100644 --- a/themes/spearmint-contrast.yaml +++ b/themes/spearmint-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/spearmint-light.yaml b/themes/spearmint-light.yaml index add7ef19..611bd19c 100644 --- a/themes/spearmint-light.yaml +++ b/themes/spearmint-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/spearmint.yaml b/themes/spearmint.yaml index 207373f7..77a100d7 100644 --- a/themes/spearmint.yaml +++ b/themes/spearmint.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/spiderverse-2099.yaml b/themes/spiderverse-2099.yaml index e5243577..aba16a6b 100644 --- a/themes/spiderverse-2099.yaml +++ b/themes/spiderverse-2099.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GabrielBrown.spider-verse-theme" version: "1.0.1" installs: 2466 + rating: 0 + ratings: 0 author: "Gabriel Brown" repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" diff --git a/themes/spiderverse-miles.yaml b/themes/spiderverse-miles.yaml index d3ccb579..abd41e2c 100644 --- a/themes/spiderverse-miles.yaml +++ b/themes/spiderverse-miles.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GabrielBrown.spider-verse-theme" version: "1.0.1" installs: 2466 + rating: 0 + ratings: 0 author: "Gabriel Brown" repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" diff --git a/themes/spiderverse-spider-man.yaml b/themes/spiderverse-spider-man.yaml index fcd7d8d1..5deb4caf 100644 --- a/themes/spiderverse-spider-man.yaml +++ b/themes/spiderverse-spider-man.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GabrielBrown.spider-verse-theme" version: "1.0.1" installs: 2466 + rating: 0 + ratings: 0 author: "Gabriel Brown" repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" diff --git a/themes/spin-theme.yaml b/themes/spin-theme.yaml index d07b2e4e..fc8735b8 100644 --- a/themes/spin-theme.yaml +++ b/themes/spin-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "balah7.spin-theme" version: "0.0.1" installs: 484 + rating: 0 + ratings: 0 author: "balah7" repo: null url: "https://marketplace.visualstudio.com/items?itemName=balah7.spin-theme" diff --git a/themes/spiral.yaml b/themes/spiral.yaml index fa527037..4db68919 100644 --- a/themes/spiral.yaml +++ b/themes/spiral.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nd2204.gruvbox-material-mix" version: "0.4.6" installs: 465 + rating: 0 + ratings: 0 author: "nd2204" repo: "https://github.com/nd2204/vscode-gruvbox" url: "https://marketplace.visualstudio.com/items?itemName=nd2204.gruvbox-material-mix" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 266 + pair: null contrast: fg: 74.7 black: 0 diff --git a/themes/spirited-night.yaml b/themes/spirited-night.yaml index 0053a7b7..6e194355 100644 --- a/themes/spirited-night.yaml +++ b/themes/spirited-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "danibram.ghibli-inspired-theme" version: "1.0.0" installs: 274 + rating: 0 + ratings: 0 author: "Daniel Biedma" repo: "https://github.com/danibram/ghibli-theme" url: "https://marketplace.visualstudio.com/items?itemName=danibram.ghibli-inspired-theme" diff --git a/themes/spitfire-contrast.yaml b/themes/spitfire-contrast.yaml index c5380717..d741daa8 100644 --- a/themes/spitfire-contrast.yaml +++ b/themes/spitfire-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/spitfire-light.yaml b/themes/spitfire-light.yaml index 0fee2f38..d2127b03 100644 --- a/themes/spitfire-light.yaml +++ b/themes/spitfire-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/spitfire.yaml b/themes/spitfire.yaml index f3c81b60..f0c427c7 100644 --- a/themes/spitfire.yaml +++ b/themes/spitfire.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/splash-theme.yaml b/themes/splash-theme.yaml index f87ab7c5..0f7a3961 100644 --- a/themes/splash-theme.yaml +++ b/themes/splash-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RLabsInc.rlabs-theme-collection" version: "0.1.4" installs: 181 + rating: 0 + ratings: 0 author: "RLabs Inc." repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 326 + pair: null contrast: fg: 101 black: 0 diff --git a/themes/splus.yaml b/themes/splus.yaml index ac8b02f8..2902e0cb 100644 --- a/themes/splus.yaml +++ b/themes/splus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zrachod.splus-theme" version: "0.2.1" installs: 6501 + rating: 5 + ratings: 2 author: "Rachod Petchpho" repo: "https://github.com/Zrachod/Splus" url: "https://marketplace.visualstudio.com/items?itemName=zrachod.splus-theme" diff --git a/themes/spotly-dark.yaml b/themes/spotly-dark.yaml index 0ed5e011..c229e531 100644 --- a/themes/spotly-dark.yaml +++ b/themes/spotly-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MaksymBukator.spotly" version: "1.1.1" installs: 174 + rating: 5 + ratings: 1 author: "Maksym Bukator" repo: "https://github.com/Spotly-Tech/spotly-theme" url: "https://marketplace.visualstudio.com/items?itemName=MaksymBukator.spotly" diff --git a/themes/spotly-light.yaml b/themes/spotly-light.yaml index 4308ae2d..6e659163 100644 --- a/themes/spotly-light.yaml +++ b/themes/spotly-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MaksymBukator.spotly" version: "1.1.1" installs: 174 + rating: 5 + ratings: 1 author: "Maksym Bukator" repo: "https://github.com/Spotly-Tech/spotly-theme" url: "https://marketplace.visualstudio.com/items?itemName=MaksymBukator.spotly" diff --git a/themes/spring-breeze-theme.yaml b/themes/spring-breeze-theme.yaml new file mode 100644 index 00000000..72e23982 --- /dev/null +++ b/themes/spring-breeze-theme.yaml @@ -0,0 +1,52 @@ +name: "Spring Breeze Theme" +source: + marketplace_id: "naihe.spring-breeze-theme" + version: "0.0.4" + installs: 49 + rating: 0 + ratings: 0 + author: "Naihe" + repo: "https://github.com/naiheyoung/spring-breeze-theme" + url: "https://marketplace.visualstudio.com/items?itemName=naihe.spring-breeze-theme" +colors: + bg: "#121212" + fg: "#888888" + black: "#666666" + red: "#CD3131" + green: "#189D71" + yellow: "#D18F52" + blue: "#0768CB" + magenta: "#C9268A" + cyan: "#4CA3C7" + white: "#E0E0E0" + brightBlack: "#888888" + brightRed: "#F14C4C" + brightGreen: "#38B48B" + brightYellow: "#EE7D15" + brightBlue: "#0A84FF" + brightMagenta: "#F22EA6" + brightCyan: "#5AC8F5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 38 + black: 22.5 + red: 27.1 + green: 39.7 + yellow: 49 + blue: 24.7 + magenta: 27.6 + cyan: 46.9 + white: 87.3 + brightBlack: 38 + brightRed: 39 + brightGreen: 50.9 + brightYellow: 48.4 + brightBlue: 37.8 + brightMagenta: 38.5 + brightCyan: 65.8 + brightWhite: 107.3 diff --git a/themes/spring.yaml b/themes/spring.yaml index 69505cfb..909e7b14 100644 --- a/themes/spring.yaml +++ b/themes/spring.yaml @@ -1,11 +1,13 @@ name: "Spring" source: - marketplace_id: "malinatrash.spring" - version: "0.0.2" - installs: 144 + marketplace_id: "malinatrash.summer-fresh" + version: "0.0.3" + installs: 14 + rating: 0 + ratings: 0 author: "malinatrash" - repo: "https://github.com/malinatrash/spring" - url: "https://marketplace.visualstudio.com/items?itemName=malinatrash.spring" + repo: "https://github.com/malinatrash/summer-fresh-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=malinatrash.summer-fresh" colors: bg: "#1E1E1E" fg: "#D6E2DC" diff --git a/themes/sprinkles-color-theme.yaml b/themes/sprinkles-color-theme.yaml index 753747de..e0d65471 100644 --- a/themes/sprinkles-color-theme.yaml +++ b/themes/sprinkles-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wavebeem.theme-unoduetre" version: "5.11.1" installs: 4290 + rating: 5 + ratings: 5 author: "Sage Fennel" repo: "https://github.com/wavebeem/vscode-theme-unoduetre" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" diff --git a/themes/spurlys-theme.yaml b/themes/spurlys-theme.yaml index 4994a171..ef294824 100644 --- a/themes/spurlys-theme.yaml +++ b/themes/spurlys-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "therealbhuvi.spurlys-theme" version: "0.0.2" installs: 193 + rating: 5 + ratings: 2 author: "Bhuvanesh Prasad" repo: "https://github.com/bhuvaneshprasad/spurlys-theme" url: "https://marketplace.visualstudio.com/items?itemName=therealbhuvi.spurlys-theme" diff --git a/themes/spyder-theme-light.yaml b/themes/spyder-theme-light.yaml index 01a21050..62a77eaa 100644 --- a/themes/spyder-theme-light.yaml +++ b/themes/spyder-theme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HilsianCapital.spyder-theme" version: "0.0.3" installs: 6902 + rating: 5 + ratings: 2 author: "HilsianCapital" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HilsianCapital.spyder-theme" diff --git a/themes/simple-theme.yaml b/themes/squash-theme.yaml similarity index 72% rename from themes/simple-theme.yaml rename to themes/squash-theme.yaml index d88d23db..89f53751 100644 --- a/themes/simple-theme.yaml +++ b/themes/squash-theme.yaml @@ -1,14 +1,16 @@ -name: "Simple Theme" +name: "Squash Theme" source: - marketplace_id: "Fleuquer.simple-theme" - version: "1.0.0" - installs: 1155 - author: "Fleuquer" - repo: "https://github.com/fleuquer/simple-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Fleuquer.simple-theme" + marketplace_id: "HenriLima05.a-cup-of-coffee" + version: "0.0.2" + installs: 4677 + rating: 5 + ratings: 3 + author: "Henri Lima" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.a-cup-of-coffee" colors: bg: "#1B1B1B" - fg: "#C7FF00" + fg: "#BEBEBE" black: "#000000" red: "#CD3131" green: "#0DBC79" @@ -31,7 +33,7 @@ meta: hue: null pair: null contrast: - fg: 94.2 + fg: 66 black: 0 red: 26.3 green: 52.6 diff --git a/themes/squeak.yaml b/themes/squeak.yaml index bbe692e0..dea04a6c 100644 --- a/themes/squeak.yaml +++ b/themes/squeak.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LinqLover.squeak-theme" version: "0.0.1" installs: 372 + rating: 5 + ratings: 3 author: "LinqLover" repo: "https://github.com/LinqLover/vscode-squeak-theme" url: "https://marketplace.visualstudio.com/items?itemName=LinqLover.squeak-theme" diff --git a/themes/srcery-gagbo.yaml b/themes/srcery-gagbo.yaml index 394ecb53..c6cc9f0b 100644 --- a/themes/srcery-gagbo.yaml +++ b/themes/srcery-gagbo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gagbo.srcery" version: "0.2.0" installs: 1726 + rating: 5 + ratings: 1 author: "gagbo" repo: "https://github.com/gagbo/vscode-srcery" url: "https://marketplace.visualstudio.com/items?itemName=gagbo.srcery" diff --git a/themes/srcery.yaml b/themes/srcery.yaml index 41576411..de684163 100644 --- a/themes/srcery.yaml +++ b/themes/srcery.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "srcery-colors.srcery-colors" version: "0.3.8" installs: 7371 + rating: 5 + ratings: 2 author: "srcery-colors" repo: "https://github.com/srcery-colors/srcery-vscode" url: "https://marketplace.visualstudio.com/items?itemName=srcery-colors.srcery-colors" diff --git a/themes/st-borg.yaml b/themes/st-borg.yaml new file mode 100644 index 00000000..2366f3f2 --- /dev/null +++ b/themes/st-borg.yaml @@ -0,0 +1,52 @@ +name: "ST: Borg" +source: + marketplace_id: "RobertSchnable.star-trek-factions-theme" + version: "1.0.7" + installs: 22 + rating: 0 + ratings: 0 + author: "Robert Schnable" + repo: "https://github.com/your-username/star-trek-factions-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RobertSchnable.star-trek-factions-theme" +colors: + bg: "#060806" + fg: "#88C880" + black: "#060806" + red: "#CC4433" + green: "#00CC44" + yellow: "#88AA20" + blue: "#2080A0" + magenta: "#4A8040" + cyan: "#20C880" + white: "#88C880" + brightBlack: "#060806" + brightRed: "#CC4433" + brightGreen: "#00FF44" + brightYellow: "#88AA20" + brightBlue: "#2080A0" + brightMagenta: "#4A8040" + brightCyan: "#20C880" + brightWhite: "#88C880" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 64.3 + black: 0 + red: 29.8 + green: 60.5 + yellow: 49.8 + blue: 30.7 + magenta: 29 + cyan: 59.8 + white: 64.3 + brightBlack: 0 + brightRed: 29.8 + brightGreen: 86.7 + brightYellow: 49.8 + brightBlue: 30.7 + brightMagenta: 29 + brightCyan: 59.8 + brightWhite: 64.3 diff --git a/themes/st-lcars.yaml b/themes/st-lcars.yaml new file mode 100644 index 00000000..116698f1 --- /dev/null +++ b/themes/st-lcars.yaml @@ -0,0 +1,52 @@ +name: "ST: LCARS" +source: + marketplace_id: "RobertSchnable.star-trek-factions-theme" + version: "1.0.7" + installs: 22 + rating: 0 + ratings: 0 + author: "Robert Schnable" + repo: "https://github.com/your-username/star-trek-factions-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RobertSchnable.star-trek-factions-theme" +colors: + bg: "#141414" + fg: "#FFCC55" + black: "#141414" + red: "#DD5566" + green: "#77BBAA" + yellow: "#FFB300" + blue: "#AA99DD" + magenta: "#DD6688" + cyan: "#FFDD88" + white: "#FFCC99" + brightBlack: "#555555" + brightRed: "#DD5566" + brightGreen: "#77BBAA" + brightYellow: "#FFDD00" + brightBlue: "#AA99DD" + brightMagenta: "#FF55BB" + brightCyan: "#FFDD88" + brightWhite: "#FFEECC" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 79.3 + black: 0 + red: 36.5 + green: 57.9 + yellow: 69 + blue: 51.7 + magenta: 40.9 + cyan: 87.4 + white: 80.6 + brightBlack: 15.4 + brightRed: 36.5 + brightGreen: 57.9 + brightYellow: 86.1 + brightBlue: 51.7 + brightMagenta: 47 + brightCyan: 87.4 + brightWhite: 97 diff --git a/themes/stackmeister.yaml b/themes/stackmeister.yaml index ab4b6d89..e962f90f 100644 --- a/themes/stackmeister.yaml +++ b/themes/stackmeister.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "stackmeister.stackmeister-theme" version: "0.0.4" installs: 78 + rating: 5 + ratings: 1 author: "Stackmeister GmbH" repo: null url: "https://marketplace.visualstudio.com/items?itemName=stackmeister.stackmeister-theme" diff --git a/themes/stained-glass-dark.yaml b/themes/stained-glass-dark.yaml index 86f3ef5c..97959b50 100644 --- a/themes/stained-glass-dark.yaml +++ b/themes/stained-glass-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "natecrow.stained-glass-theme" version: "1.0.1" installs: 1429 + rating: 0 + ratings: 0 author: "natecrow" repo: "https://github.com/natecrow/stained-glass-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=natecrow.stained-glass-theme" diff --git a/themes/stannum.yaml b/themes/stannum.yaml index 554811fc..ccf2ee0b 100644 --- a/themes/stannum.yaml +++ b/themes/stannum.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "stannum.stannum" version: "1.0.0" installs: 541 + rating: 0 + ratings: 0 author: "Tin Lam" repo: "https://github.com/stannum-l/vscode-stannum-theme" url: "https://marketplace.visualstudio.com/items?itemName=stannum.stannum" diff --git a/themes/star-night-luna.yaml b/themes/star-night-luna.yaml index afede4d2..421a0394 100644 --- a/themes/star-night-luna.yaml +++ b/themes/star-night-luna.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "victoreduardobarreto.star-night" version: "0.4.5" installs: 4914 + rating: 5 + ratings: 3 author: "Victor Barreto" repo: "https://github.com/barretov/star-night" url: "https://marketplace.visualstudio.com/items?itemName=victoreduardobarreto.star-night" diff --git a/themes/star-night.yaml b/themes/star-night.yaml index 9060bb22..e153d66a 100644 --- a/themes/star-night.yaml +++ b/themes/star-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "victoreduardobarreto.star-night" version: "0.4.5" installs: 4914 + rating: 5 + ratings: 3 author: "Victor Barreto" repo: "https://github.com/barretov/star-night" url: "https://marketplace.visualstudio.com/items?itemName=victoreduardobarreto.star-night" diff --git a/themes/star-wars-dark-side-theme-global.yaml b/themes/star-wars-dark-side-theme-global.yaml index 9e2e798c..1e086851 100644 --- a/themes/star-wars-dark-side-theme-global.yaml +++ b/themes/star-wars-dark-side-theme-global.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MuratAlpaslan.spacewars-theme" version: "1.0.1" installs: 116 + rating: 0 + ratings: 0 author: "Murat Alpaslan" repo: "https://github.com/muratalpaslan/spacewars" url: "https://marketplace.visualstudio.com/items?itemName=MuratAlpaslan.spacewars-theme" diff --git a/themes/starboy-theme.yaml b/themes/starboy-theme.yaml index cd6589c3..0efbde34 100644 --- a/themes/starboy-theme.yaml +++ b/themes/starboy-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "badrouu-laabed.starboy-theme" version: "1.5.0" installs: 3210 + rating: 5 + ratings: 1 author: "badrouu-laabed" repo: "https://github.com/Badrouu17/starboy-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=badrouu-laabed.starboy-theme" diff --git a/themes/starburst-dark.yaml b/themes/starburst-dark.yaml index 12c461b0..f9de56ad 100644 --- a/themes/starburst-dark.yaml +++ b/themes/starburst-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "psanchez.starburst-theme" version: "0.2.1" installs: 333 + rating: 5 + ratings: 1 author: "Pavel Sanchez" repo: "https://github.com/PaleBluDot/starburst-theme" url: "https://marketplace.visualstudio.com/items?itemName=psanchez.starburst-theme" diff --git a/themes/starfield.yaml b/themes/starfield.yaml index 51506676..225c2094 100644 --- a/themes/starfield.yaml +++ b/themes/starfield.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "steffenboe.starfield-color-theme" version: "1.0.0" installs: 152 + rating: 0 + ratings: 0 author: "steffenboe" repo: "https://github.com/steffenb91/starfield-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=steffenboe.starfield-color-theme" diff --git a/themes/stark-contrast.yaml b/themes/stark-contrast.yaml index bd88eefa..8517195f 100644 --- a/themes/stark-contrast.yaml +++ b/themes/stark-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/stark-dark.yaml b/themes/stark-dark.yaml index 2aad069b..2c2582da 100644 --- a/themes/stark-dark.yaml +++ b/themes/stark-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MTCC.stark-theme" version: "1.0.2" installs: 64 + rating: 5 + ratings: 2 author: "MTCC" repo: "https://github.com/minhtrungcc/stark-theme" url: "https://marketplace.visualstudio.com/items?itemName=MTCC.stark-theme" diff --git a/themes/stark-light.yaml b/themes/stark-light.yaml index c1bdec01..16ac6df8 100644 --- a/themes/stark-light.yaml +++ b/themes/stark-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/stark.yaml b/themes/stark.yaml index a35f6cdb..4bda3afe 100644 --- a/themes/stark.yaml +++ b/themes/stark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/starlight-daybreak.yaml b/themes/starlight-daybreak.yaml index 45e20a4a..986a465f 100644 --- a/themes/starlight-daybreak.yaml +++ b/themes/starlight-daybreak.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RussellOje.ruxy1212-starlight-theme" version: "2.1.5" installs: 72 + rating: 0 + ratings: 0 author: "Russell Oje" repo: "https://github.com/ruxy1212/starlight-theme" url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" diff --git a/themes/starlight-light.yaml b/themes/starlight-light.yaml index f29a6b4d..b3f00da6 100644 --- a/themes/starlight-light.yaml +++ b/themes/starlight-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RussellOje.ruxy1212-starlight-theme" version: "2.1.5" installs: 72 + rating: 0 + ratings: 0 author: "Russell Oje" repo: "https://github.com/ruxy1212/starlight-theme" url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" diff --git a/themes/starlight-midnight.yaml b/themes/starlight-midnight.yaml index 0655f0c4..539899f3 100644 --- a/themes/starlight-midnight.yaml +++ b/themes/starlight-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RussellOje.ruxy1212-starlight-theme" version: "2.1.5" installs: 72 + rating: 0 + ratings: 0 author: "Russell Oje" repo: "https://github.com/ruxy1212/starlight-theme" url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" diff --git a/themes/starlight-obsidian.yaml b/themes/starlight-obsidian.yaml index b00b0415..d90ed65c 100644 --- a/themes/starlight-obsidian.yaml +++ b/themes/starlight-obsidian.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RussellOje.ruxy1212-starlight-theme" version: "2.1.5" installs: 72 + rating: 0 + ratings: 0 author: "Russell Oje" repo: "https://github.com/ruxy1212/starlight-theme" url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" diff --git a/themes/starlight-soft-glow.yaml b/themes/starlight-soft-glow.yaml index adbcbf6c..db3f644f 100644 --- a/themes/starlight-soft-glow.yaml +++ b/themes/starlight-soft-glow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RussellOje.ruxy1212-starlight-theme" version: "2.1.5" installs: 72 + rating: 0 + ratings: 0 author: "Russell Oje" repo: "https://github.com/ruxy1212/starlight-theme" url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" diff --git a/themes/starlight.yaml b/themes/starlight.yaml index 00b9bb3f..09e95487 100644 --- a/themes/starlight.yaml +++ b/themes/starlight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "D3W10.starlight" version: "0.1.4" installs: 515 + rating: 0 + ratings: 0 author: "D3W10" repo: "https://github.com/D3W10/StarLight" url: "https://marketplace.visualstudio.com/items?itemName=D3W10.starlight" diff --git a/themes/starry-night.yaml b/themes/starry-night.yaml index fc77a3d3..2925584a 100644 --- a/themes/starry-night.yaml +++ b/themes/starry-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xynny.starry-night" version: "1.0.0" installs: 123 + rating: 0 + ratings: 0 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.starry-night" diff --git a/themes/starry-pillar.yaml b/themes/starry-pillar.yaml index d6b8ab35..71d08937 100644 --- a/themes/starry-pillar.yaml +++ b/themes/starry-pillar.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ekinyuksel12.stary-pillar-theme" version: "1.3.1" installs: 2 + rating: 0 + ratings: 0 author: "Toprak Ekin Yüksel" repo: "https://github.com/ekinyuksel12/stary-pillar-theme" url: "https://marketplace.visualstudio.com/items?itemName=ekinyuksel12.stary-pillar-theme" diff --git a/themes/startlite.yaml b/themes/startlite.yaml index 05a0ee69..251bd640 100644 --- a/themes/startlite.yaml +++ b/themes/startlite.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Yummygum.starlite" version: "1.0.3" installs: 0 + rating: 0 + ratings: 0 author: "Yummygum" repo: "https://github.com/Yummygum/Starlite" url: "https://marketplace.visualstudio.com/items?itemName=Yummygum.starlite" diff --git a/themes/startrail.yaml b/themes/startrail.yaml index 2dd86958..b61c80f4 100644 --- a/themes/startrail.yaml +++ b/themes/startrail.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gantoreno.startrail" version: "0.1.1" installs: 1022 + rating: 5 + ratings: 1 author: "Gabriel Moreno" repo: "https://github.com/gantoreno/vscode-startrail" url: "https://marketplace.visualstudio.com/items?itemName=gantoreno.startrail" diff --git a/themes/stasis-contrast.yaml b/themes/stasis-contrast.yaml index 223502de..ada0acb7 100644 --- a/themes/stasis-contrast.yaml +++ b/themes/stasis-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/stasis-light.yaml b/themes/stasis-light.yaml index 4c78e736..f7613cdb 100644 --- a/themes/stasis-light.yaml +++ b/themes/stasis-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/stasis.yaml b/themes/stasis.yaml index 5d88e691..097e5ca5 100644 --- a/themes/stasis.yaml +++ b/themes/stasis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/stealth-contrast.yaml b/themes/stealth-contrast.yaml index 9e13df38..a6c4a220 100644 --- a/themes/stealth-contrast.yaml +++ b/themes/stealth-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/stealth-light.yaml b/themes/stealth-light.yaml index 74e17463..db46df7b 100644 --- a/themes/stealth-light.yaml +++ b/themes/stealth-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/stealth.yaml b/themes/stealth.yaml index 2f4322ef..04440b80 100644 --- a/themes/stealth.yaml +++ b/themes/stealth.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ajesh-mishra.stealth" version: "0.1.1" installs: 318 + rating: 0 + ratings: 0 author: "Ajesh Mishra" repo: "https://github.com/ajesh-mishra/stealth" url: "https://marketplace.visualstudio.com/items?itemName=ajesh-mishra.stealth" diff --git a/themes/steel-blue-dark.yaml b/themes/steel-blue-dark.yaml index 1dfc0240..20d65e0a 100644 --- a/themes/steel-blue-dark.yaml +++ b/themes/steel-blue-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rmsyntax.blue-code" version: "0.0.3" installs: 34 + rating: 0 + ratings: 0 author: "rmsyntax" repo: "https://github.com/ROMANSYNTAX32/low-blue-code" url: "https://marketplace.visualstudio.com/items?itemName=rmsyntax.blue-code" diff --git a/themes/steel-phantom.yaml b/themes/steel-phantom.yaml index e044c1c3..e52bb5af 100644 --- a/themes/steel-phantom.yaml +++ b/themes/steel-phantom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DavidMass.steel-phantom" version: "0.0.3" installs: 253 + rating: 0 + ratings: 0 author: "David Mass" repo: "https://github.com/davidcmass/steel-phantom-vscode" url: "https://marketplace.visualstudio.com/items?itemName=DavidMass.steel-phantom" diff --git a/themes/steelbore.yaml b/themes/steelbore.yaml new file mode 100644 index 00000000..674f17c6 --- /dev/null +++ b/themes/steelbore.yaml @@ -0,0 +1,52 @@ +name: "Steelbore" +source: + marketplace_id: "SteelBore.steelbore" + version: "1.0.0" + installs: 6 + rating: 0 + ratings: 0 + author: "SteelBore" + repo: "https://github.com/UnbreakableMJ/Steelbore" + url: "https://marketplace.visualstudio.com/items?itemName=SteelBore.steelbore" +colors: + bg: "#000027" + fg: "#D98E32" + black: "#000027" + red: "#FF5C5C" + green: "#50FA7B" + yellow: "#D98E32" + blue: "#4B7EB0" + magenta: "#BD93F9" + cyan: "#8BE9FD" + white: "#E6E6F0" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 50 + black: 0 + red: 45.5 + green: 85.6 + yellow: 50 + blue: 32 + magenta: 54.4 + cyan: 84.7 + white: 91.9 + brightBlack: 28.8 + brightRed: 49.6 + brightGreen: 89.8 + brightYellow: 104.3 + brightBlue: 66.8 + brightMagenta: 63.3 + brightCyan: 97.5 + brightWhite: 107.6 diff --git a/themes/steffula.yaml b/themes/steffula.yaml index f66bcfb8..1095c5d9 100644 --- a/themes/steffula.yaml +++ b/themes/steffula.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "steffo.steffula-code" version: "0.15.2" installs: 331 + rating: 5 + ratings: 1 author: "Stefano Pigozzi" repo: "https://forge.steffo.eu/steffo/steffula-code" url: "https://marketplace.visualstudio.com/items?itemName=steffo.steffula-code" diff --git a/themes/stella-high-contrast.yaml b/themes/stella-high-contrast.yaml index 7dec1c1e..3a8d0791 100644 --- a/themes/stella-high-contrast.yaml +++ b/themes/stella-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "4S1ght.stella" version: "1.3.6" installs: 601 + rating: 5 + ratings: 2 author: "4S1ght" repo: "https://github.com/4S1ght/Stella" url: "https://marketplace.visualstudio.com/items?itemName=4S1ght.stella" diff --git a/themes/stella-theme.yaml b/themes/stella-theme.yaml index 8a6f2a42..a3a03492 100644 --- a/themes/stella-theme.yaml +++ b/themes/stella-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ShapeMess.stella-theme" version: "0.0.6" installs: 450 + rating: 0 + ratings: 0 author: "ShapeMess" repo: "https://github.com/ShapeMess/Stella-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ShapeMess.stella-theme" diff --git a/themes/stella.yaml b/themes/stella.yaml index 2671151a..a1b935b6 100644 --- a/themes/stella.yaml +++ b/themes/stella.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "4S1ght.stella" version: "1.3.6" installs: 601 + rating: 5 + ratings: 2 author: "4S1ght" repo: "https://github.com/4S1ght/Stella" url: "https://marketplace.visualstudio.com/items?itemName=4S1ght.stella" diff --git a/themes/stellar-void.yaml b/themes/stellar-void.yaml index 98bbfb10..629ea3b2 100644 --- a/themes/stellar-void.yaml +++ b/themes/stellar-void.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ryno9341.stellar-void" version: "0.1.0" installs: 41 + rating: 0 + ratings: 0 author: "Ryno9341" repo: "https://github.com/ryno9341/stellar-void" url: "https://marketplace.visualstudio.com/items?itemName=ryno9341.stellar-void" diff --git a/themes/stellar.yaml b/themes/stellar.yaml index ca9ef214..e9d45d66 100644 --- a/themes/stellar.yaml +++ b/themes/stellar.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PuneshBorkar.stellar-galaxy" version: "1.3.0" installs: 298 + rating: 0 + ratings: 0 author: "Punesh Borkar" repo: "https://github.com/punesh12/stellar-galaxy" url: "https://marketplace.visualstudio.com/items?itemName=PuneshBorkar.stellar-galaxy" diff --git a/themes/stereo-theme.yaml b/themes/stereo-theme.yaml index b76e7ac3..a7b1c4e3 100644 --- a/themes/stereo-theme.yaml +++ b/themes/stereo-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FasterMars.fastermars-stereo-theme" version: "1.0.0" installs: 151 + rating: 0 + ratings: 0 author: "FasterMars" repo: "https://github.com/FasterMars/Stereo-Theme-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=FasterMars.fastermars-stereo-theme" diff --git a/themes/stilla.yaml b/themes/stilla.yaml new file mode 100644 index 00000000..bad3dc55 --- /dev/null +++ b/themes/stilla.yaml @@ -0,0 +1,52 @@ +name: "stilla" +source: + marketplace_id: "jakeisnt.stilla" + version: "0.0.1" + installs: 163 + rating: 0 + ratings: 0 + author: "jakeisnt" + repo: "https://github.com/jakeisnt/stilla-visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=jakeisnt.stilla" +colors: + bg: "#0D0D0D" + fg: "#F2F2F2" + black: "#121414" + red: "#BA8082" + green: "#A19C9A" + yellow: "#E9B872" + blue: "#ADB2BA" + magenta: "#CD96B3" + cyan: "#88B6D0" + white: "#FAFAFA" + brightBlack: "#4C566A" + brightRed: "#BA8082" + brightGreen: "#A19C9A" + brightYellow: "#E9B872" + brightBlue: "#ADB2BA" + brightMagenta: "#CD96B3" + brightCyan: "#8FBCBB" + brightWhite: "#FAF5EF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 99.1 + black: 0 + red: 42 + green: 49 + yellow: 68.6 + blue: 60.1 + magenta: 53.8 + cyan: 59.2 + white: 104.3 + brightBlack: 16.1 + brightRed: 42 + brightGreen: 49 + brightYellow: 68.6 + brightBlue: 60.1 + brightMagenta: 53.8 + brightCyan: 61.3 + brightWhite: 101.5 diff --git a/themes/sto-classic.yaml b/themes/sto-classic.yaml index 78efcbed..543a9362 100644 --- a/themes/sto-classic.yaml +++ b/themes/sto-classic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NSMNIA.sto-theme" version: "2.0.1" installs: 368 + rating: 5 + ratings: 1 author: "NSMNIA" repo: "https://github.com/NSMNIA/sto-theme" url: "https://marketplace.visualstudio.com/items?itemName=NSMNIA.sto-theme" diff --git a/themes/sto-green-dark.yaml b/themes/sto-green-dark.yaml index 1da7c2c7..3bb4d893 100644 --- a/themes/sto-green-dark.yaml +++ b/themes/sto-green-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NSMNIA.sto-theme" version: "2.0.1" installs: 368 + rating: 5 + ratings: 1 author: "NSMNIA" repo: "https://github.com/NSMNIA/sto-theme" url: "https://marketplace.visualstudio.com/items?itemName=NSMNIA.sto-theme" diff --git a/themes/sto-green.yaml b/themes/sto-green.yaml index 69a5b360..45d4e691 100644 --- a/themes/sto-green.yaml +++ b/themes/sto-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NSMNIA.sto-theme" version: "2.0.1" installs: 368 + rating: 5 + ratings: 1 author: "NSMNIA" repo: "https://github.com/NSMNIA/sto-theme" url: "https://marketplace.visualstudio.com/items?itemName=NSMNIA.sto-theme" diff --git a/themes/stonerose.yaml b/themes/stonerose.yaml index 2efa02e4..b0941fda 100644 --- a/themes/stonerose.yaml +++ b/themes/stonerose.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ajguerrer.stonerose-vscode" version: "1.4.0" installs: 77 + rating: 0 + ratings: 0 author: "ajguerrer" repo: "https://github.com/ajguerrer/stonerose-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ajguerrer.stonerose-vscode" diff --git a/themes/storm-contrast.yaml b/themes/storm-contrast.yaml index cfed5d80..cad69eb8 100644 --- a/themes/storm-contrast.yaml +++ b/themes/storm-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/storm-light.yaml b/themes/storm-light.yaml index 3db5d9dd..b5bb9205 100644 --- a/themes/storm-light.yaml +++ b/themes/storm-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/storm-tracker.yaml b/themes/storm-tracker.yaml index c2d2d950..2cf8ded5 100644 --- a/themes/storm-tracker.yaml +++ b/themes/storm-tracker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Dutchorange.space-wars" version: "1.1.7" installs: 1711 + rating: 5 + ratings: 3 author: "Dutchorange" repo: "https://github.com/entropy-glitch/space-wars" url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" diff --git a/themes/storm-uvadark-fork.yaml b/themes/storm-uvadark-fork.yaml index 37f8d805..8877b951 100644 --- a/themes/storm-uvadark-fork.yaml +++ b/themes/storm-uvadark-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "storm066.storm066" version: "0.0.4" installs: 2575 + rating: 5 + ratings: 1 author: "storm066" repo: "https://github.com/lfontesc/vscode-theme-storm" url: "https://marketplace.visualstudio.com/items?itemName=storm066.storm066" diff --git a/themes/storm.yaml b/themes/storm.yaml index 932801b5..c2a3ec8f 100644 --- a/themes/storm.yaml +++ b/themes/storm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JackdawDev.storm-darktheme" version: "0.1.3" installs: 161 + rating: 0 + ratings: 0 author: "Jackdaw Dev" repo: "https://github.com/mechatour/storm-vscode" url: "https://marketplace.visualstudio.com/items?itemName=JackdawDev.storm-darktheme" diff --git a/themes/stormpetrel.yaml b/themes/stormpetrel.yaml index 8adc0591..6753b9f6 100644 --- a/themes/stormpetrel.yaml +++ b/themes/stormpetrel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bbrakenhoff.seabird" version: "0.0.4" installs: 754 + rating: 4.5 + ratings: 2 author: "bbrakenhoff" repo: "https://github.com/bbrakenhoff/seabird-vscode" url: "https://marketplace.visualstudio.com/items?itemName=bbrakenhoff.seabird" diff --git a/themes/stranger-theme-dimension-x.yaml b/themes/stranger-theme-dimension-x.yaml new file mode 100644 index 00000000..dee245be --- /dev/null +++ b/themes/stranger-theme-dimension-x.yaml @@ -0,0 +1,52 @@ +name: "Stranger Theme: Dimension X" +source: + marketplace_id: "StrangerTheme.stranger-theme-vscode" + version: "1.0.2" + installs: 212 + rating: 0 + ratings: 0 + author: "Stranger Theme" + repo: "https://github.com/stranger-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=StrangerTheme.stranger-theme-vscode" +colors: + bg: "#1E1A1A" + fg: "#E8D5D5" + black: "#1E1A1A" + red: "#FF55AA" + green: "#8B7355" + yellow: "#BCA89F" + blue: "#C678DD" + magenta: "#E06C75" + cyan: "#D19A66" + white: "#E8D5D5" + brightBlack: "#5C4A4A" + brightRed: "#FF55AA" + brightGreen: "#8B7355" + brightYellow: "#BCA89F" + brightBlue: "#C678DD" + brightMagenta: "#E06C75" + brightCyan: "#D19A66" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 82.2 + black: 0 + red: 45.5 + green: 29.1 + yellow: 55.8 + blue: 44.7 + magenta: 41.6 + cyan: 52.2 + white: 82.2 + brightBlack: 12.1 + brightRed: 45.5 + brightGreen: 29.1 + brightYellow: 55.8 + brightBlue: 44.7 + brightMagenta: 41.6 + brightCyan: 52.2 + brightWhite: 106.4 diff --git a/themes/stranger-theme-hawkins.yaml b/themes/stranger-theme-hawkins.yaml new file mode 100644 index 00000000..aae4c450 --- /dev/null +++ b/themes/stranger-theme-hawkins.yaml @@ -0,0 +1,52 @@ +name: "Stranger Theme: Hawkins" +source: + marketplace_id: "StrangerTheme.stranger-theme-vscode" + version: "1.0.2" + installs: 212 + rating: 0 + ratings: 0 + author: "Stranger Theme" + repo: "https://github.com/stranger-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=StrangerTheme.stranger-theme-vscode" +colors: + bg: "#2C2218" + fg: "#E8DCC8" + black: "#2C2218" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#B48EAD" + magenta: "#D4A574" + cyan: "#88C0D0" + white: "#E8DCC8" + brightBlack: "#6B5B45" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#B48EAD" + brightMagenta: "#D4A574" + brightCyan: "#88C0D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 66 + pair: null + contrast: + fg: 83.5 + black: 0 + red: 31.2 + green: 59.9 + yellow: 74.7 + blue: 44.8 + magenta: 55.6 + cyan: 60.9 + white: 83.5 + brightBlack: 16.7 + brightRed: 31.2 + brightGreen: 59.9 + brightYellow: 74.7 + brightBlue: 44.8 + brightMagenta: 55.6 + brightCyan: 60.9 + brightWhite: 105.1 diff --git a/themes/stranger-theme-starcourt.yaml b/themes/stranger-theme-starcourt.yaml new file mode 100644 index 00000000..530aaca2 --- /dev/null +++ b/themes/stranger-theme-starcourt.yaml @@ -0,0 +1,52 @@ +name: "Stranger Theme: Starcourt" +source: + marketplace_id: "StrangerTheme.stranger-theme-vscode" + version: "1.0.2" + installs: 212 + rating: 0 + ratings: 0 + author: "Stranger Theme" + repo: "https://github.com/stranger-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=StrangerTheme.stranger-theme-vscode" +colors: + bg: "#1A1A2E" + fg: "#EAEAEA" + black: "#1A1A2E" + red: "#FF6B6B" + green: "#00FA9A" + yellow: "#FFD700" + blue: "#BA55D3" + magenta: "#FF1493" + cyan: "#00CED1" + white: "#EAEAEA" + brightBlack: "#6B5B95" + brightRed: "#FF6B6B" + brightGreen: "#00FA9A" + brightYellow: "#FFD700" + brightBlue: "#BA55D3" + brightMagenta: "#FF1493" + brightCyan: "#00CED1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 283 + pair: null + contrast: + fg: 92.6 + black: 0 + red: 47.5 + green: 83.9 + yellow: 82.7 + blue: 33.9 + magenta: 38.5 + cyan: 64 + white: 92.6 + brightBlack: 20.7 + brightRed: 47.5 + brightGreen: 83.9 + brightYellow: 82.7 + brightBlue: 33.9 + brightMagenta: 38.5 + brightCyan: 64 + brightWhite: 106.3 diff --git a/themes/stranger-theme-the-lab.yaml b/themes/stranger-theme-the-lab.yaml new file mode 100644 index 00000000..e617162e --- /dev/null +++ b/themes/stranger-theme-the-lab.yaml @@ -0,0 +1,52 @@ +name: "Stranger Theme: The Lab" +source: + marketplace_id: "StrangerTheme.stranger-theme-vscode" + version: "1.0.2" + installs: 212 + rating: 0 + ratings: 0 + author: "Stranger Theme" + repo: "https://github.com/stranger-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=StrangerTheme.stranger-theme-vscode" +colors: + bg: "#1A1D26" + fg: "#E0E5EC" + black: "#1A1D26" + red: "#FF4136" + green: "#2ECC40" + yellow: "#FFDC00" + blue: "#B10DC9" + magenta: "#7FDBFF" + cyan: "#39CCCC" + white: "#E0E5EC" + brightBlack: "#5D6D7E" + brightRed: "#FF4136" + brightGreen: "#2ECC40" + brightYellow: "#FFDC00" + brightBlue: "#B10DC9" + brightMagenta: "#7FDBFF" + brightCyan: "#39CCCC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 271 + pair: null + contrast: + fg: 89 + black: 0 + red: 39.4 + green: 59.2 + yellow: 84.7 + blue: 24.3 + magenta: 75.9 + cyan: 63.2 + white: 89 + brightBlack: 23.6 + brightRed: 39.4 + brightGreen: 59.2 + brightYellow: 84.7 + brightBlue: 24.3 + brightMagenta: 75.9 + brightCyan: 63.2 + brightWhite: 106.1 diff --git a/themes/stranger-theme-tigers.yaml b/themes/stranger-theme-tigers.yaml new file mode 100644 index 00000000..2106df1c --- /dev/null +++ b/themes/stranger-theme-tigers.yaml @@ -0,0 +1,52 @@ +name: "Stranger Theme: Tigers" +source: + marketplace_id: "StrangerTheme.stranger-theme-vscode" + version: "1.0.2" + installs: 212 + rating: 0 + ratings: 0 + author: "Stranger Theme" + repo: "https://github.com/stranger-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=StrangerTheme.stranger-theme-vscode" +colors: + bg: "#1A1A1A" + fg: "#F5F5F5" + black: "#1A1A1A" + red: "#CC6666" + green: "#B5BD68" + yellow: "#F0C674" + blue: "#B294BB" + magenta: "#FF7F2A" + cyan: "#81A2BE" + white: "#F5F5F5" + brightBlack: "#5C5C5C" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#F0C674" + brightBlue: "#B294BB" + brightMagenta: "#FF7F2A" + brightCyan: "#81A2BE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 100 + black: 0 + red: 36.1 + green: 62.1 + yellow: 74.3 + blue: 48.6 + magenta: 51.8 + cyan: 48.6 + white: 100 + brightBlack: 17.6 + brightRed: 36.1 + brightGreen: 62.1 + brightYellow: 74.3 + brightBlue: 48.6 + brightMagenta: 51.8 + brightCyan: 48.6 + brightWhite: 106.5 diff --git a/themes/stranger-theme-upside-down.yaml b/themes/stranger-theme-upside-down.yaml new file mode 100644 index 00000000..f2a5f8a9 --- /dev/null +++ b/themes/stranger-theme-upside-down.yaml @@ -0,0 +1,52 @@ +name: "Stranger Theme: Upside Down" +source: + marketplace_id: "StrangerTheme.stranger-theme-vscode" + version: "1.0.2" + installs: 212 + rating: 0 + ratings: 0 + author: "Stranger Theme" + repo: "https://github.com/stranger-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=StrangerTheme.stranger-theme-vscode" +colors: + bg: "#0D1117" + fg: "#F8F8F2" + black: "#0D1117" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#F8F8F2" + brightBlack: "#5C6370" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 258 + pair: null + contrast: + fg: 102.5 + black: 0 + red: 42.6 + green: 62.8 + yellow: 71.1 + blue: 55.2 + magenta: 45.7 + cyan: 55.1 + white: 102.5 + brightBlack: 21.1 + brightRed: 42.6 + brightGreen: 62.8 + brightYellow: 71.1 + brightBlue: 55.2 + brightMagenta: 45.7 + brightCyan: 55.1 + brightWhite: 107.4 diff --git a/themes/studio-apartment.yaml b/themes/studio-apartment.yaml new file mode 100644 index 00000000..8130eeaa --- /dev/null +++ b/themes/studio-apartment.yaml @@ -0,0 +1,52 @@ +name: "Studio-Apartment" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#161616" + fg: "#E4E4E4" + black: "#161616" + red: "#F14444" + green: "#29C3A0" + yellow: "#D29922" + blue: "#3981F6" + magenta: "#3981F6" + cyan: "#29C3A0" + white: "#E4E4E4" + brightBlack: "#161616" + brightRed: "#F14444" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#3981F6" + brightMagenta: "#3981F6" + brightCyan: "#29C3A0" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.5 + black: 0 + red: 37.4 + green: 57.7 + yellow: 51.8 + blue: 36.5 + magenta: 36.5 + cyan: 57.7 + white: 89.5 + brightBlack: 0 + brightRed: 37.4 + brightGreen: 57.7 + brightYellow: 51.8 + brightBlue: 36.5 + brightMagenta: 36.5 + brightCyan: 57.7 + brightWhite: 89.5 diff --git a/themes/studio-bio-bio-dark-theme.yaml b/themes/studio-bio-bio-dark-theme.yaml index e533b999..aaa24d33 100644 --- a/themes/studio-bio-bio-dark-theme.yaml +++ b/themes/studio-bio-bio-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "studiobio.bio-dark-midnight-theme" version: "0.1.1" installs: 2667 + rating: 4 + ratings: 1 author: "studiobio" repo: "https://github.com/joshuaiz/bio-dark-midnight-theme" url: "https://marketplace.visualstudio.com/items?itemName=studiobio.bio-dark-midnight-theme" diff --git a/themes/styledark18.yaml b/themes/styledark18.yaml new file mode 100644 index 00000000..4b37906c --- /dev/null +++ b/themes/styledark18.yaml @@ -0,0 +1,52 @@ +name: "styledark18" +source: + marketplace_id: "tscmdabdurrakib.md-abdur-rakib-theme" + version: "1.1.3" + installs: 1739 + rating: 5 + ratings: 1 + author: "Md Abdur Rakib" + repo: "https://github.com/tscmdabdurrakib/md-abdur-rakib-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tscmdabdurrakib.md-abdur-rakib-theme" +colors: + bg: "#1F1F1F" + fg: "#DDDDDD" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 84 + black: 0 + red: 23.6 + green: 52 + yellow: 56.7 + blue: 33.7 + magenta: 31.2 + cyan: 49.5 + white: 87.5 + brightBlack: 21.1 + brightRed: 36.3 + brightGreen: 76 + brightYellow: 82.9 + brightBlue: 48.9 + brightMagenta: 45.6 + brightCyan: 72.4 + brightWhite: 101 diff --git a/themes/styledark28.yaml b/themes/styledark28.yaml new file mode 100644 index 00000000..2caff9c8 --- /dev/null +++ b/themes/styledark28.yaml @@ -0,0 +1,52 @@ +name: "styledark28" +source: + marketplace_id: "tscmdabdurrakib.md-abdur-rakib-theme" + version: "1.1.3" + installs: 1739 + rating: 5 + ratings: 1 + author: "Md Abdur Rakib" + repo: "https://github.com/tscmdabdurrakib/md-abdur-rakib-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tscmdabdurrakib.md-abdur-rakib-theme" +colors: + bg: "#21222D" + fg: "#F2E5BC" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#F42C3E" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#99C6CA" + brightMagenta: "#D3869B" + brightCyan: "#7EC16E" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: 281 + pair: null + contrast: + fg: 88.7 + black: 0 + red: 23.7 + green: 41.4 + yellow: 51 + blue: 30 + magenta: 30.2 + cyan: 40.4 + white: 45.7 + brightBlack: 34.8 + brightRed: 33.9 + brightGreen: 59.6 + brightYellow: 70.3 + brightBlue: 64.9 + brightMagenta: 46.4 + brightCyan: 57.4 + brightWhite: 82.9 diff --git a/themes/stylelight33.yaml b/themes/stylelight33.yaml new file mode 100644 index 00000000..e2442586 --- /dev/null +++ b/themes/stylelight33.yaml @@ -0,0 +1,52 @@ +name: "stylelight33" +source: + marketplace_id: "tscmdabdurrakib.md-abdur-rakib-theme" + version: "1.1.3" + installs: 1739 + rating: 5 + ratings: 1 + author: "Md Abdur Rakib" + repo: "https://github.com/tscmdabdurrakib/md-abdur-rakib-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tscmdabdurrakib.md-abdur-rakib-theme" +colors: + bg: "#FFFFFF" + fg: "#9B9B9B" + black: "#012339" + red: "#A56416" + green: "#428226" + yellow: "#A56416" + blue: "#3778B7" + magenta: "#B052A1" + cyan: "#3778B7" + white: "#F7F7F7" + brightBlack: "#9B9B9B" + brightRed: "#A56416" + brightGreen: "#428226" + brightYellow: "#A56416" + brightBlue: "#3778B7" + brightMagenta: "#B052A1" + brightCyan: "#3778B7" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 53.6 + black: 102.8 + red: 72.5 + green: 72.5 + yellow: 72.5 + blue: 71.9 + magenta: 71.4 + cyan: 71.9 + white: 0 + brightBlack: 53.6 + brightRed: 72.5 + brightGreen: 72.5 + brightYellow: 72.5 + brightBlue: 71.9 + brightMagenta: 71.4 + brightCyan: 71.9 + brightWhite: 0 diff --git a/themes/stylelight35.yaml b/themes/stylelight35.yaml index d9dda640..162639e6 100644 --- a/themes/stylelight35.yaml +++ b/themes/stylelight35.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tscmdabdurrakib.md-abdur-rakib-theme" version: "1.1.3" installs: 1739 + rating: 5 + ratings: 1 author: "Md Abdur Rakib" repo: "https://github.com/tscmdabdurrakib/md-abdur-rakib-theme" url: "https://marketplace.visualstudio.com/items?itemName=tscmdabdurrakib.md-abdur-rakib-theme" diff --git a/themes/stypt-aether.yaml b/themes/stypt-aether.yaml new file mode 100644 index 00000000..5c843e39 --- /dev/null +++ b/themes/stypt-aether.yaml @@ -0,0 +1,49 @@ +name: "Stypt - Aether" +source: + marketplace_id: "MichaelVolakis.stypt" + version: "2.0.1" + installs: 203 + author: "Michael Volakis" + repo: "https://github.com/Michael-Vol/Stypt-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MichaelVolakis.stypt" +colors: + bg: "#1B1F35" + fg: "#B4D1F3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + contrast: + fg: 74.7 + black: 0 + red: 25.5 + green: 51.8 + yellow: 84.4 + blue: 26.2 + magenta: 28.6 + cyan: 46.4 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.4 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.8 + brightMagenta: 44.2 + brightCyan: 54.2 + brightWhite: 88.8 diff --git a/themes/subessence.yaml b/themes/subessence.yaml index 8abe4ce5..c5faf057 100644 --- a/themes/subessence.yaml +++ b/themes/subessence.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vinhphm.subessence" version: "0.1.6" installs: 309 + rating: 5 + ratings: 2 author: "Vinh Pham" repo: "https://github.com/vinhphm/subessence" url: "https://marketplace.visualstudio.com/items?itemName=vinhphm.subessence" diff --git a/themes/sublette.yaml b/themes/sublette.yaml index c85823ea..89a3ebdc 100644 --- a/themes/sublette.yaml +++ b/themes/sublette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "minmul117.sublette" version: "0.2.4" installs: 421 + rating: 0 + ratings: 0 author: "minmul117" repo: "https://github.com/minmul117/vscode-sublette" url: "https://marketplace.visualstudio.com/items?itemName=minmul117.sublette" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: 271 + pair: null contrast: fg: 73.7 black: 0 diff --git a/themes/sublime-breakers.yaml b/themes/sublime-breakers.yaml index 63ff51a6..e6497c56 100644 --- a/themes/sublime-breakers.yaml +++ b/themes/sublime-breakers.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "release-candidate.theme-sublime-breakers" version: "0.2.1" installs: 300 + rating: 0 + ratings: 0 author: "Release-Candidate" repo: "https://codeberg.org/Release-Candidate/SublimeBreakersTheme" url: "https://marketplace.visualstudio.com/items?itemName=release-candidate.theme-sublime-breakers" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 97.3 black: 95 diff --git a/themes/sublime-mariana-semantic.yaml b/themes/sublime-mariana-semantic.yaml new file mode 100644 index 00000000..bb9babe9 --- /dev/null +++ b/themes/sublime-mariana-semantic.yaml @@ -0,0 +1,52 @@ +name: "Sublime Mariana ⎯ Semantic" +source: + marketplace_id: "duttdutt.sublime-theme" + version: "1.0.9" + installs: 3904 + rating: 5 + ratings: 3 + author: "duttdutt" + repo: "https://github.com/duttdutt/sublime-theme" + url: "https://marketplace.visualstudio.com/items?itemName=duttdutt.sublime-theme" +colors: + bg: "#2E3842" + fg: "#FFFFFF" + black: "#E6E6E6" + red: "#EE6A6F" + green: "#A3CE9E" + yellow: "#FAB763" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#6699CC" + white: "#FFFFFF" + brightBlack: "#E6E6E6" + brightRed: "#EE6A6F" + brightGreen: "#A3CE9E" + brightYellow: "#FAB763" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#6699CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + pair: null + contrast: + fg: 100.9 + black: 84.7 + red: 38.3 + green: 63.3 + yellow: 64.1 + blue: 38.2 + magenta: 46.1 + cyan: 38.2 + white: 100.9 + brightBlack: 84.7 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 64.1 + brightBlue: 38.2 + brightMagenta: 46.1 + brightCyan: 38.2 + brightWhite: 100.9 diff --git a/themes/sublime-mariana-test.yaml b/themes/sublime-mariana-test.yaml index 8e538210..d00e8df2 100644 --- a/themes/sublime-mariana-test.yaml +++ b/themes/sublime-mariana-test.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "duttdutt.sublime-theme" version: "1.0.9" installs: 3904 + rating: 5 + ratings: 3 author: "duttdutt" repo: "https://github.com/duttdutt/sublime-theme" url: "https://marketplace.visualstudio.com/items?itemName=duttdutt.sublime-theme" diff --git a/themes/sublime-monokai-color-theme.yaml b/themes/sublime-monokai-color-theme.yaml new file mode 100644 index 00000000..6be05de9 --- /dev/null +++ b/themes/sublime-monokai-color-theme.yaml @@ -0,0 +1,52 @@ +name: "sublime-monokai-color-theme" +source: + marketplace_id: "maximetinu.identical-sublime-monokai-csharp-theme-colorizer" + version: "1.2.3" + installs: 286389 + rating: 5 + ratings: 24 + author: "Maximetinu" + repo: "https://github.com/Maximetinu/Sublime-Text-Monokai-theme-for-Visual-Studio-Code" + url: "https://marketplace.visualstudio.com/items?itemName=maximetinu.identical-sublime-monokai-csharp-theme-colorizer" +colors: + bg: "#272822" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 115 + pair: null + contrast: + fg: 99.6 + black: 0 + red: 22.3 + green: 50.7 + yellow: 55.3 + blue: 32.3 + magenta: 29.9 + cyan: 48.1 + white: 86.2 + brightBlack: 19.7 + brightRed: 35 + brightGreen: 74.7 + brightYellow: 81.6 + brightBlue: 47.5 + brightMagenta: 44.2 + brightCyan: 71.1 + brightWhite: 99.6 diff --git a/themes/sublime-text-3.yaml b/themes/sublime-text-3.yaml index 9df46e62..fbfc2709 100644 --- a/themes/sublime-text-3.yaml +++ b/themes/sublime-text-3.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Shine.sublime-text-3" version: "1.0.4" installs: 6129 + rating: 5 + ratings: 1 author: "Shine" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Shine.sublime-text-3" diff --git a/themes/sublime-text-4-theme.yaml b/themes/sublime-text-4-theme.yaml index 20447fcf..1d809923 100644 --- a/themes/sublime-text-4-theme.yaml +++ b/themes/sublime-text-4-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IliaReshetov.vscode-theme-mariana-dark" version: "1.0.6" installs: 978 + rating: 5 + ratings: 4 author: "Ilia Reshetov" repo: "https://github.com/iliareshetov/vscode-theme-mariana-dark" url: "https://marketplace.visualstudio.com/items?itemName=IliaReshetov.vscode-theme-mariana-dark" diff --git a/themes/sublime-vscode-theme.yaml b/themes/sublime-vscode-theme.yaml index 365e4ea6..efa69edf 100644 --- a/themes/sublime-vscode-theme.yaml +++ b/themes/sublime-vscode-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yurihs.sublime-vscode-theme" version: "1.5.0" installs: 86333 + rating: 5 + ratings: 6 author: "yurihs" repo: "https://github.com/yurihs/sublime-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=yurihs.sublime-vscode-theme" diff --git a/themes/subliminal-color-theme.yaml b/themes/subliminal-color-theme.yaml index c9e995a9..0c038746 100644 --- a/themes/subliminal-color-theme.yaml +++ b/themes/subliminal-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "josefssonrasmus.subliminal-remix" version: "1.0.0" installs: 398 + rating: 0 + ratings: 0 author: "Rasmus Josefsson" repo: "https://github.com/gaearon/subliminal" url: "https://marketplace.visualstudio.com/items?itemName=josefssonrasmus.subliminal-remix" diff --git a/themes/subliminal-nightfall.yaml b/themes/subliminal-nightfall.yaml new file mode 100644 index 00000000..de029305 --- /dev/null +++ b/themes/subliminal-nightfall.yaml @@ -0,0 +1,52 @@ +name: "Subliminal Nightfall" +source: + marketplace_id: "hamrahm.subliminal-nightfall" + version: "0.1.14" + installs: 19 + rating: 0 + ratings: 0 + author: "Mike Hamrah" + repo: "https://github.com/mhamrah/subliminal-nightfall" + url: "https://marketplace.visualstudio.com/items?itemName=hamrahm.subliminal-nightfall" +colors: + bg: "#03021A" + fg: "#E0DEF4" + black: "#7F7F7F" + red: "#BF616A" + green: "#A9CFA4" + yellow: "#FCB832" + blue: "#6699CC" + magenta: "#F1A5AB" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#7F7F7F" + brightRed: "#E2848D" + brightGreen: "#CCF2C7" + brightYellow: "#FFD266" + brightBlue: "#89BCEF" + brightMagenta: "#FFC8CE" + brightCyan: "#82D6D6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: 277 + pair: null + contrast: + fg: 87.9 + black: 34.2 + red: 33.9 + green: 71.4 + yellow: 71.1 + blue: 45.1 + magenta: 64.7 + cyan: 53.9 + white: 80.4 + brightBlack: 34.2 + brightRed: 50.4 + brightGreen: 92.7 + brightYellow: 82.7 + brightBlue: 63.6 + brightMagenta: 81.5 + brightCyan: 73.3 + brightWhite: 107.8 diff --git a/themes/subliminalr.yaml b/themes/subliminalr.yaml new file mode 100644 index 00000000..4730ecbe --- /dev/null +++ b/themes/subliminalr.yaml @@ -0,0 +1,52 @@ +name: "SubliminalR" +source: + marketplace_id: "TobiasTimm.subliminalr" + version: "0.3.2" + installs: 2782 + rating: 5 + ratings: 3 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/subliminalr" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.subliminalr" +colors: + bg: "#2A2D37" + fg: "#D4D4D4" + black: "#7F7F7F" + red: "#E15A60" + green: "#99C794" + yellow: "#FFE2A9" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#7F7F7F" + brightRed: "#E15A60" + brightGreen: "#99C794" + brightYellow: "#FFE2A9" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 272 + pair: null + contrast: + fg: 76 + black: 29.8 + red: 34.4 + green: 61.4 + yellow: 86.7 + blue: 40.7 + magenta: 48.5 + cyan: 49.5 + white: 76 + brightBlack: 29.8 + brightRed: 34.4 + brightGreen: 61.4 + brightYellow: 86.7 + brightBlue: 40.7 + brightMagenta: 48.5 + brightCyan: 49.5 + brightWhite: 76 diff --git a/themes/subscribe-color.yaml b/themes/subscribe-color.yaml index 681defd9..c5f84bd3 100644 --- a/themes/subscribe-color.yaml +++ b/themes/subscribe-color.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Eric000.pinkpinktheme" version: "0.0.3" installs: 596 + rating: 0 + ratings: 0 author: "Eric000" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Eric000.pinkpinktheme" diff --git a/themes/substrata.yaml b/themes/substrata.yaml index 07695956..a810e534 100644 --- a/themes/substrata.yaml +++ b/themes/substrata.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "austinhyde.vscode-theme-substrata" version: "1.0.0" installs: 652 + rating: 0 + ratings: 0 author: "austinhyde" repo: "https://github.com/austinhyde/vscode-substrata" url: "https://marketplace.visualstudio.com/items?itemName=austinhyde.vscode-theme-substrata" diff --git a/themes/sucrose.yaml b/themes/sucrose.yaml new file mode 100644 index 00000000..4169108f --- /dev/null +++ b/themes/sucrose.yaml @@ -0,0 +1,52 @@ +name: "Sucrose" +source: + marketplace_id: "jeooo.ampulla" + version: "1.0.0" + installs: 315 + rating: 0 + ratings: 0 + author: "jeooo`" + repo: "https://github.com/jeoooo/sucrose-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jeooo.ampulla" +colors: + bg: "#F3F2F0" + fg: "#324976" + black: "#282828" + red: "#E64444" + green: "#00D300" + yellow: "#BCC00E" + blue: "#0069DB" + magenta: "#DE00DE" + cyan: "#00BEEC" + white: "#ADADAD" + brightBlack: "#000000" + brightRed: "#FF6C6C" + brightGreen: "#00FF00" + brightYellow: "#E0E604" + brightBlue: "#007AFF" + brightMagenta: "#FF00FF" + brightCyan: "#01AAD3" + brightWhite: "#EAEAEA" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 82.7 + black: 93.9 + red: 58.2 + green: 30.9 + yellow: 30 + blue: 67.2 + magenta: 57.5 + cyan: 34.7 + white: 36.5 + brightBlack: 98.3 + brightRed: 44.8 + brightGreen: 9.4 + brightYellow: 9.5 + brightBlue: 58.8 + brightMagenta: 47.9 + brightCyan: 44.5 + brightWhite: 0 diff --git a/themes/sufocode.yaml b/themes/sufocode.yaml index a6eeba94..c6f7e8eb 100644 --- a/themes/sufocode.yaml +++ b/themes/sufocode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "C4ptainPl0uf.sufocode" version: "0.0.1" installs: 17 + rating: 0 + ratings: 0 author: "C4ptain_Pl0uf" repo: "https://github.com/Vpekdas/VSCode-theme" url: "https://marketplace.visualstudio.com/items?itemName=C4ptainPl0uf.sufocode" diff --git a/themes/sugar-dark-focus.yaml b/themes/sugar-dark-focus.yaml index 18f0de5b..a4e9390b 100644 --- a/themes/sugar-dark-focus.yaml +++ b/themes/sugar-dark-focus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Banlify.sugar-vscode-theme" version: "0.26.0" installs: 326 + rating: 5 + ratings: 1 author: "Libon" repo: "https://github.com/libondev/sugar-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" diff --git a/themes/sugar-dark-github.yaml b/themes/sugar-dark-github.yaml index 593ed455..89f72652 100644 --- a/themes/sugar-dark-github.yaml +++ b/themes/sugar-dark-github.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Banlify.sugar-vscode-theme" version: "0.26.0" installs: 326 + rating: 5 + ratings: 1 author: "Libon" repo: "https://github.com/libondev/sugar-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" diff --git a/themes/sugar-dark-midnight.yaml b/themes/sugar-dark-midnight.yaml index 16d38f15..1f7b111e 100644 --- a/themes/sugar-dark-midnight.yaml +++ b/themes/sugar-dark-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Banlify.sugar-vscode-theme" version: "0.26.0" installs: 326 + rating: 5 + ratings: 1 author: "Libon" repo: "https://github.com/libondev/sugar-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" diff --git a/themes/sugar-dark-one.yaml b/themes/sugar-dark-one.yaml index 76f4e3bd..1bea3941 100644 --- a/themes/sugar-dark-one.yaml +++ b/themes/sugar-dark-one.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Banlify.sugar-vscode-theme" version: "0.26.0" installs: 326 + rating: 5 + ratings: 1 author: "Libon" repo: "https://github.com/libondev/sugar-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" diff --git a/themes/sugar-dark-vitesse.yaml b/themes/sugar-dark-vitesse.yaml index a8783516..5d196f60 100644 --- a/themes/sugar-dark-vitesse.yaml +++ b/themes/sugar-dark-vitesse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Banlify.sugar-vscode-theme" version: "0.26.0" installs: 326 + rating: 5 + ratings: 1 author: "Libon" repo: "https://github.com/libondev/sugar-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" diff --git a/themes/sugar-dark-vs.yaml b/themes/sugar-dark-vs.yaml index 4f1c13a3..2c997965 100644 --- a/themes/sugar-dark-vs.yaml +++ b/themes/sugar-dark-vs.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Banlify.sugar-vscode-theme" version: "0.26.0" installs: 326 + rating: 5 + ratings: 1 author: "Libon" repo: "https://github.com/libondev/sugar-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" diff --git a/themes/sugar-dark.yaml b/themes/sugar-dark.yaml index 28f538be..7a4d4bb1 100644 --- a/themes/sugar-dark.yaml +++ b/themes/sugar-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Banlify.sugar-vscode-theme" version: "0.26.0" installs: 326 + rating: 5 + ratings: 1 author: "Libon" repo: "https://github.com/libondev/sugar-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" diff --git a/themes/sugar-fleet.yaml b/themes/sugar-fleet.yaml index fd7f0165..14424f52 100644 --- a/themes/sugar-fleet.yaml +++ b/themes/sugar-fleet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Banlify.sugar-vscode-theme" version: "0.26.0" installs: 326 + rating: 5 + ratings: 1 author: "Libon" repo: "https://github.com/libondev/sugar-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" diff --git a/themes/sugar-light-vitesse.yaml b/themes/sugar-light-vitesse.yaml index 83c912c5..8ede5b04 100644 --- a/themes/sugar-light-vitesse.yaml +++ b/themes/sugar-light-vitesse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Banlify.sugar-vscode-theme" version: "0.26.0" installs: 326 + rating: 5 + ratings: 1 author: "Libon" repo: "https://github.com/libondev/sugar-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" diff --git a/themes/sugar-light-vs.yaml b/themes/sugar-light-vs.yaml index a48a336f..93f45b73 100644 --- a/themes/sugar-light-vs.yaml +++ b/themes/sugar-light-vs.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Banlify.sugar-vscode-theme" version: "0.26.0" installs: 326 + rating: 5 + ratings: 1 author: "Libon" repo: "https://github.com/libondev/sugar-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" diff --git a/themes/sugar-light.yaml b/themes/sugar-light.yaml index eb672b75..43142590 100644 --- a/themes/sugar-light.yaml +++ b/themes/sugar-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Banlify.sugar-vscode-theme" version: "0.26.0" installs: 326 + rating: 5 + ratings: 1 author: "Libon" repo: "https://github.com/libondev/sugar-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" diff --git a/themes/sukadia-dev-dark.yaml b/themes/sukadia-dev-dark.yaml index fd181c92..48b28d27 100644 --- a/themes/sukadia-dev-dark.yaml +++ b/themes/sukadia-dev-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sukadia.sukadia-dev-dark" version: "1.0.6" installs: 1607 + rating: 5 + ratings: 1 author: "Sukadia" repo: "https://github.com/Sukadia/sukadia.dev-dark" url: "https://marketplace.visualstudio.com/items?itemName=Sukadia.sukadia-dev-dark" diff --git a/themes/sulfuric-dark.yaml b/themes/sulfuric-dark.yaml index 0dacaaf2..8b5d92ca 100644 --- a/themes/sulfuric-dark.yaml +++ b/themes/sulfuric-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ptanhuet.sulfuric-theme" version: "0.0.1" installs: 30 + rating: 5 + ratings: 1 author: "ptanh.uet" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ptanhuet.sulfuric-theme" diff --git a/themes/sumiiro.yaml b/themes/sumiiro.yaml index 7193c9c6..c357f074 100644 --- a/themes/sumiiro.yaml +++ b/themes/sumiiro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kyoh86.sumiiro" version: "0.0.1" installs: 2286 + rating: 0 + ratings: 0 author: "kyoh86" repo: "https://github.com/kyoh86/sumiiro-vsc" url: "https://marketplace.visualstudio.com/items?itemName=kyoh86.sumiiro" diff --git a/themes/summer-night-gray-high-contrast.yaml b/themes/summer-night-gray-high-contrast.yaml index 05f7c1b2..8ffb3d32 100644 --- a/themes/summer-night-gray-high-contrast.yaml +++ b/themes/summer-night-gray-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jackw01.summer-night-theme" version: "1.2.1" installs: 3459 + rating: 5 + ratings: 1 author: "jackw01" repo: "https://github.com/jackw01/summer-night-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jackw01.summer-night-theme" diff --git a/themes/summer-night-high-contrast.yaml b/themes/summer-night-high-contrast.yaml index c8ffdeaf..04de1df8 100644 --- a/themes/summer-night-high-contrast.yaml +++ b/themes/summer-night-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jackw01.summer-night-theme" version: "1.2.1" installs: 3459 + rating: 5 + ratings: 1 author: "jackw01" repo: "https://github.com/jackw01/summer-night-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jackw01.summer-night-theme" diff --git a/themes/summer-night.yaml b/themes/summer-night.yaml index d0080fa1..8041c09f 100644 --- a/themes/summer-night.yaml +++ b/themes/summer-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jackw01.summer-night-theme" version: "1.2.1" installs: 3459 + rating: 5 + ratings: 1 author: "jackw01" repo: "https://github.com/jackw01/summer-night-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jackw01.summer-night-theme" diff --git a/themes/summer-nights-lullaby.yaml b/themes/summer-nights-lullaby.yaml index 09916938..5035f8da 100644 --- a/themes/summer-nights-lullaby.yaml +++ b/themes/summer-nights-lullaby.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "keatsdothu.summer-nights-lullaby" version: "1.0.3" installs: 932 + rating: 0 + ratings: 0 author: "Andy Pataki" repo: "https://github.com/iamgrid/summer_nights_lullaby_vscode_theme" url: "https://marketplace.visualstudio.com/items?itemName=keatsdothu.summer-nights-lullaby" diff --git a/themes/summer-nights.yaml b/themes/summer-nights.yaml index a1fce62a..75427530 100644 --- a/themes/summer-nights.yaml +++ b/themes/summer-nights.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "keatsdothu.summer-nights" version: "1.0.3" installs: 1770 + rating: 0 + ratings: 0 author: "Andy Pataki" repo: "https://github.com/iamgrid/summer_nights_vscode_theme" url: "https://marketplace.visualstudio.com/items?itemName=keatsdothu.summer-nights" diff --git a/themes/summer-palenight.yaml b/themes/summer-palenight.yaml index 592aecd9..74b64dbf 100644 --- a/themes/summer-palenight.yaml +++ b/themes/summer-palenight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SummerThemes.summer-dark-theme" version: "3.11.0" installs: 118 + rating: 0 + ratings: 0 author: "SummerThemes" repo: "https://github.com/SummerThemes/summer-dark-themes" url: "https://marketplace.visualstudio.com/items?itemName=SummerThemes.summer-dark-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 274 + pair: null contrast: fg: 82 black: 0 diff --git a/themes/summer.yaml b/themes/summer.yaml index cb3a1e57..81ae456f 100644 --- a/themes/summer.yaml +++ b/themes/summer.yaml @@ -1,50 +1,52 @@ -name: "summer" +name: "Summer" source: - marketplace_id: "roxcelic.summer-nights-roxcelic" - version: "1.0.6" - installs: 160 - author: "roxcelic" - repo: "https://github.com/roxcelic/themes.git#summer" - url: "https://marketplace.visualstudio.com/items?itemName=roxcelic.summer-nights-roxcelic" + marketplace_id: "flow9s.summer" + version: "0.0.1" + installs: 435 + rating: 0 + ratings: 0 + author: "flow9s" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=flow9s.summer" colors: - bg: "#240909" - fg: "#FFDDE1" - black: "#4B1D1D" - red: "#CE9178" - green: "#4E9A06" - yellow: "#D7BA7D" - blue: "#569CD6" - magenta: "#C586C0" - cyan: "#4EC9B0" - white: "#FFDDE1" - brightBlack: "#7B3030" - brightRed: "#E54B4B" - brightGreen: "#B5CEA8" - brightYellow: "#F2C000" - brightBlue: "#9CDCFE" - brightMagenta: "#B19CD9" - brightCyan: "#56B6C2" - brightWhite: "#FFFFFF" + bg: "#FFFBE8" + fg: "#499504" + black: "#353B43" + red: "#E6848A" + green: "#859900" + yellow: "#A8CB8F" + blue: "#75BFEF" + magenta: "#D33682" + cyan: "#93A1A1" + white: "#606060" + brightBlack: "#353B43" + brightRed: "#DC322F" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#2AA198" + brightWhite: "#808080" meta: - mode: "dark" + mode: "light" accent: "orange" - hue: 23 + hue: null pair: null contrast: - fg: 90.4 - black: 0 - red: 49.8 - green: 38.4 - yellow: 66.4 - blue: 45.3 - magenta: 47.6 - cyan: 62.3 - white: 90.4 - brightBlack: 11.2 - brightRed: 36 - brightGreen: 71.7 - brightYellow: 71.8 - brightBlue: 79.5 - brightMagenta: 53.4 - brightCyan: 54.8 - brightWhite: 107.2 + fg: 62.1 + black: 93.4 + red: 48.1 + green: 56.4 + yellow: 31 + blue: 36.1 + magenta: 67.6 + cyan: 49.3 + white: 78.7 + brightBlack: 93.4 + brightRed: 67.8 + brightGreen: 74.2 + brightYellow: 68.3 + brightBlue: 56.1 + brightMagenta: 67.6 + brightCyan: 55.6 + brightWhite: 64.2 diff --git a/themes/summercamp.yaml b/themes/summercamp.yaml index ab7b593e..1b874ce4 100644 --- a/themes/summercamp.yaml +++ b/themes/summercamp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "csalmeida.summercamp" version: "0.0.0" installs: 876 + rating: 5 + ratings: 1 author: "Cristiano Almeida" repo: "https://github.com/csalmeida/summercamp-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=csalmeida.summercamp" diff --git a/themes/summerrelax.yaml b/themes/summerrelax.yaml index c3b42d84..d55cbd36 100644 --- a/themes/summerrelax.yaml +++ b/themes/summerrelax.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rhighs.SummerRelax" version: "0.0.1" installs: 138 + rating: 0 + ratings: 0 author: "rhighs" repo: "https://github.com/rhighs/summer-relax" url: "https://marketplace.visualstudio.com/items?itemName=rhighs.SummerRelax" diff --git a/themes/sunbather.yaml b/themes/sunbather.yaml index 7210cc45..1da9c162 100644 --- a/themes/sunbather.yaml +++ b/themes/sunbather.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jpokan.vscode-sunbather" version: "0.0.4" installs: 569 + rating: 0 + ratings: 0 author: "jpokan" repo: "https://github.com/jpokan/vscode-sunbather" url: "https://marketplace.visualstudio.com/items?itemName=jpokan.vscode-sunbather" diff --git a/themes/sunilcode-dark-soothing-blue-light-reduced.yaml b/themes/sunilcode-dark-soothing-blue-light-reduced.yaml index 464a01ec..c0a72a97 100644 --- a/themes/sunilcode-dark-soothing-blue-light-reduced.yaml +++ b/themes/sunilcode-dark-soothing-blue-light-reduced.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fastestsunil.sunilcode-themes" version: "1.0.2" installs: 57 + rating: 5 + ratings: 1 author: "fastestsunil" repo: "https://github.com/fastestsunil/sunilcode-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=fastestsunil.sunilcode-themes" diff --git a/themes/sunset-beach-dark.yaml b/themes/sunset-beach-dark.yaml index 7bd4c11c..ab9e50b3 100644 --- a/themes/sunset-beach-dark.yaml +++ b/themes/sunset-beach-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ssera-themes" version: "2.0.2" installs: 334 + rating: 0 + ratings: 0 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" diff --git a/themes/sunset-beach-light.yaml b/themes/sunset-beach-light.yaml index 8411a7ad..b7c36e43 100644 --- a/themes/sunset-beach-light.yaml +++ b/themes/sunset-beach-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ssera-themes" version: "2.0.2" installs: 334 + rating: 0 + ratings: 0 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" diff --git a/themes/sunset-boulevard.yaml b/themes/sunset-boulevard.yaml index 3ff045ce..0f66b8d8 100644 --- a/themes/sunset-boulevard.yaml +++ b/themes/sunset-boulevard.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/sunset-noir.yaml b/themes/sunset-noir.yaml index 3cadfe03..9641a8f2 100644 --- a/themes/sunset-noir.yaml +++ b/themes/sunset-noir.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/sunset-serenade.yaml b/themes/sunset-serenade.yaml index a46eb758..fd43cdba 100644 --- a/themes/sunset-serenade.yaml +++ b/themes/sunset-serenade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kartoffelente.sunset-serenade" version: "1.3.2" installs: 130 + rating: 4.5 + ratings: 2 author: "Kartoffelente" repo: "https://github.com/helheim0/sunset-serenade" url: "https://marketplace.visualstudio.com/items?itemName=kartoffelente.sunset-serenade" diff --git a/themes/sunset-theme.yaml b/themes/sunset-theme.yaml index 0778b651..d8e910c7 100644 --- a/themes/sunset-theme.yaml +++ b/themes/sunset-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EdCanCe.retrowave-sunset-theme" version: "0.0.3" installs: 82 + rating: 0 + ratings: 0 author: "EdCanCe" repo: "https://github.com/EdCanCe/sunset" url: "https://marketplace.visualstudio.com/items?itemName=EdCanCe.retrowave-sunset-theme" diff --git a/themes/sunsplash-monodark.yaml b/themes/sunsplash-monodark.yaml index 0fd75f49..e4d2b5cd 100644 --- a/themes/sunsplash-monodark.yaml +++ b/themes/sunsplash-monodark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rsanttos.sunsplash-monodark" version: "1.0.0" installs: 66 + rating: 0 + ratings: 0 author: "Rsanttos" repo: "https://github.com/vricardo5/monodark" url: "https://marketplace.visualstudio.com/items?itemName=Rsanttos.sunsplash-monodark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 278 + pair: null contrast: fg: 62.2 black: 10 diff --git a/themes/supa.yaml b/themes/supa.yaml new file mode 100644 index 00000000..386713eb --- /dev/null +++ b/themes/supa.yaml @@ -0,0 +1,50 @@ +name: "Supa" +source: + marketplace_id: "tommalitz.simplethemes" + version: "0.0.10" + installs: 65 + author: "tommalitz" + repo: "https://github.com/TomMalitz/zedromeda" + url: "https://marketplace.visualstudio.com/items?itemName=tommalitz.simplethemes" +colors: + bg: "#171717" + fg: "#F7F7F8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.6 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/super-contrast.yaml b/themes/super-contrast.yaml index 4afbbb4f..41c2da7e 100644 --- a/themes/super-contrast.yaml +++ b/themes/super-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/super-dark-cyberpunk-green.yaml b/themes/super-dark-cyberpunk-green.yaml index 2011ca6e..e2a832f2 100644 --- a/themes/super-dark-cyberpunk-green.yaml +++ b/themes/super-dark-cyberpunk-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JFeser.darkercolor" version: "2.1.0" installs: 13 + rating: 0 + ratings: 0 author: "J. Feser" repo: "https://github.com/redo7370/darkercolors" url: "https://marketplace.visualstudio.com/items?itemName=JFeser.darkercolor" diff --git a/themes/super-dark-cyberpunk-grey.yaml b/themes/super-dark-cyberpunk-grey.yaml index 7e397acb..b2fbfe91 100644 --- a/themes/super-dark-cyberpunk-grey.yaml +++ b/themes/super-dark-cyberpunk-grey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JFeser.darkercolor" version: "2.1.0" installs: 13 + rating: 0 + ratings: 0 author: "J. Feser" repo: "https://github.com/redo7370/darkercolors" url: "https://marketplace.visualstudio.com/items?itemName=JFeser.darkercolor" diff --git a/themes/super-dark-cyberpunk-purple.yaml b/themes/super-dark-cyberpunk-purple.yaml index 7f8e4286..d68a91c1 100644 --- a/themes/super-dark-cyberpunk-purple.yaml +++ b/themes/super-dark-cyberpunk-purple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JFeser.darkercolor" version: "2.1.0" installs: 13 + rating: 0 + ratings: 0 author: "J. Feser" repo: "https://github.com/redo7370/darkercolors" url: "https://marketplace.visualstudio.com/items?itemName=JFeser.darkercolor" diff --git a/themes/super-light.yaml b/themes/super-light.yaml index 9cddbac3..3f037633 100644 --- a/themes/super-light.yaml +++ b/themes/super-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/super.yaml b/themes/super.yaml index 87ab811b..8209a844 100644 --- a/themes/super.yaml +++ b/themes/super.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/superbright.yaml b/themes/superbright.yaml index 69cfd9d1..6cd3d629 100644 --- a/themes/superbright.yaml +++ b/themes/superbright.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DIYST.super-bright" version: "1.0.1" installs: 1022 + rating: 5 + ratings: 3 author: "DIYST" repo: "https://github.com/diyst/SuperBrightTheme" url: "https://marketplace.visualstudio.com/items?itemName=DIYST.super-bright" diff --git a/themes/superdark.yaml b/themes/superdark.yaml new file mode 100644 index 00000000..108b7429 --- /dev/null +++ b/themes/superdark.yaml @@ -0,0 +1,52 @@ +name: "SuperDark" +source: + marketplace_id: "satnamgills.darkerblack" + version: "0.2.0" + installs: 131 + rating: 0 + ratings: 0 + author: "Satnam Singh" + repo: "https://github.com/satnamgills/darkerblack" + url: "https://marketplace.visualstudio.com/items?itemName=satnamgills.darkerblack" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/supergreatmonokai.yaml b/themes/supergreatmonokai.yaml new file mode 100644 index 00000000..d88c0688 --- /dev/null +++ b/themes/supergreatmonokai.yaml @@ -0,0 +1,52 @@ +name: "SuperGreatMonokai" +source: + marketplace_id: "SuperGregM.supergreatmonokai" + version: "0.1.0" + installs: 182 + rating: 0 + ratings: 0 + author: "SuperGregM" + repo: "https://github.com/SuperGregM/SuperGreatMonokai" + url: "https://marketplace.visualstudio.com/items?itemName=SuperGregM.supergreatmonokai" +colors: + bg: "#121212" + fg: "#ECECEC" + black: "#000000" + red: "#AC1400" + green: "#00A500" + yellow: "#FFD700" + blue: "#0050B2" + magenta: "#B300B3" + cyan: "#03A5B2" + white: "#D3D3D3" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#07D800" + brightYellow: "#FFFF00" + brightBlue: "#005AFF" + brightMagenta: "#FF00FF" + brightCyan: "#03E5E6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 94.9 + black: 0 + red: 17.9 + green: 41.8 + yellow: 83.7 + blue: 16.1 + magenta: 24.2 + cyan: 45.3 + white: 79.3 + brightBlack: 22.5 + brightRed: 37 + brightGreen: 65.6 + brightYellow: 102.1 + brightBlue: 25.6 + brightMagenta: 45.6 + brightCyan: 77.1 + brightWhite: 107.3 diff --git a/themes/superman-theme.yaml b/themes/superman-theme.yaml index 02fdfedb..a36eef71 100644 --- a/themes/superman-theme.yaml +++ b/themes/superman-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndresCespedesMorales.superman-vscode" version: "0.1.0" installs: 1608 + rating: 5 + ratings: 1 author: "Andres Cespedes Morales" repo: "https://github.com/pedes/superman-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AndresCespedesMorales.superman-vscode" diff --git a/themes/supernova.yaml b/themes/supernova.yaml index 92d4f07b..833e3818 100644 --- a/themes/supernova.yaml +++ b/themes/supernova.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bvgross.supernova-theme" version: "0.0.2" installs: 269 + rating: 0 + ratings: 0 author: "Bruno Ventura Gross" repo: "https://github.com/bvgross/superNovaTheme.git#master" url: "https://marketplace.visualstudio.com/items?itemName=bvgross.supernova-theme" diff --git a/themes/surreal.yaml b/themes/surreal.yaml index 7ac990ae..bed31223 100644 --- a/themes/surreal.yaml +++ b/themes/surreal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ShayanChakraborty.surreal-theme" version: "1.0.0" installs: 114 + rating: 5 + ratings: 1 author: "Shayan Chakraborty" repo: "https://github.com/Shayan-R7/vscode-theme-surreal" url: "https://marketplace.visualstudio.com/items?itemName=ShayanChakraborty.surreal-theme" diff --git a/themes/susuwatari.yaml b/themes/susuwatari.yaml index cdde6ab2..ce5f1244 100644 --- a/themes/susuwatari.yaml +++ b/themes/susuwatari.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "0xk175un3.susuwatari" version: "0.0.1" installs: 678 + rating: 5 + ratings: 2 author: "0xk175un3" repo: "https://github.com/0xk175un3/susuwatari" url: "https://marketplace.visualstudio.com/items?itemName=0xk175un3.susuwatari" diff --git a/themes/svelte-5-theme.yaml b/themes/svelte-5-theme.yaml index 8815475d..87b3c744 100644 --- a/themes/svelte-5-theme.yaml +++ b/themes/svelte-5-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZubairIbnZamir.svelte-theme-v5" version: "5.0.2" installs: 213 + rating: 0 + ratings: 0 author: "Zubair Ibn Zamir" repo: "https://github.com/2u841r/svelte-theme-v5" url: "https://marketplace.visualstudio.com/items?itemName=ZubairIbnZamir.svelte-theme-v5" diff --git a/themes/sveltesse-black.yaml b/themes/sveltesse-black.yaml index 10f16703..39b945a0 100644 --- a/themes/sveltesse-black.yaml +++ b/themes/sveltesse-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AntonioSarcevic.theme-sveltesse" version: "0.0.1" installs: 771 + rating: 0 + ratings: 0 author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" diff --git a/themes/sveltesse-dark-soft.yaml b/themes/sveltesse-dark-soft.yaml index a5c58b75..47381ca2 100644 --- a/themes/sveltesse-dark-soft.yaml +++ b/themes/sveltesse-dark-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AntonioSarcevic.theme-sveltesse" version: "0.0.1" installs: 771 + rating: 0 + ratings: 0 author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" diff --git a/themes/sveltesse-dark.yaml b/themes/sveltesse-dark.yaml index 47347812..77cc3217 100644 --- a/themes/sveltesse-dark.yaml +++ b/themes/sveltesse-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AntonioSarcevic.theme-sveltesse" version: "0.0.1" installs: 771 + rating: 0 + ratings: 0 author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" diff --git a/themes/sveltesse-light-soft.yaml b/themes/sveltesse-light-soft.yaml index 2de64d72..79639193 100644 --- a/themes/sveltesse-light-soft.yaml +++ b/themes/sveltesse-light-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AntonioSarcevic.theme-sveltesse" version: "0.0.1" installs: 771 + rating: 0 + ratings: 0 author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" diff --git a/themes/sveltesse-light.yaml b/themes/sveltesse-light.yaml index cbbd5c16..e8781a09 100644 --- a/themes/sveltesse-light.yaml +++ b/themes/sveltesse-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AntonioSarcevic.theme-sveltesse" version: "0.0.1" installs: 771 + rating: 0 + ratings: 0 author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" diff --git a/themes/sw-tatooine.yaml b/themes/sw-tatooine.yaml index 79c32cd5..59b9028a 100644 --- a/themes/sw-tatooine.yaml +++ b/themes/sw-tatooine.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RobertSchnable.star-wars-planets-theme" version: "1.0.1" installs: 14 + rating: 0 + ratings: 0 author: "Robert Schnable" repo: "https://github.com/your-username/star-wars-planets-theme" url: "https://marketplace.visualstudio.com/items?itemName=RobertSchnable.star-wars-planets-theme" diff --git a/themes/sw61.yaml b/themes/sw61.yaml index 9769baca..fbad739c 100644 --- a/themes/sw61.yaml +++ b/themes/sw61.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "heikopanjas.berlin-postal-themes" version: "2.0.2" installs: 38 + rating: 5 + ratings: 1 author: "Heiko Panjas" repo: "https://github.com/heikopanjas/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=heikopanjas.berlin-postal-themes" diff --git a/themes/swablu.yaml b/themes/swablu.yaml index ee28fa23..a17c854b 100644 --- a/themes/swablu.yaml +++ b/themes/swablu.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zaneadix.Swablu" version: "0.0.5" installs: 944 + rating: 0 + ratings: 0 author: "Zane Adickes" repo: "https://github.com/zaneadix/swablu-theme" url: "https://marketplace.visualstudio.com/items?itemName=zaneadix.Swablu" diff --git a/themes/swaminarayan.yaml b/themes/swaminarayan.yaml index b2e696db..8ebdd529 100644 --- a/themes/swaminarayan.yaml +++ b/themes/swaminarayan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Yagnesh.yagnesh" version: "2.0.9" installs: 49 + rating: 0 + ratings: 0 author: "Yagnesh" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Yagnesh.yagnesh" diff --git a/themes/swamp-color-theme.yaml b/themes/swamp-color-theme.yaml index dd8443fa..48a8b3c9 100644 --- a/themes/swamp-color-theme.yaml +++ b/themes/swamp-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wavebeem.theme-unoduetre" version: "5.11.1" installs: 4290 + rating: 5 + ratings: 5 author: "Sage Fennel" repo: "https://github.com/wavebeem/vscode-theme-unoduetre" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" diff --git a/themes/sweet-lemon.yaml b/themes/sweet-lemon.yaml index fdb7066b..3e44b88d 100644 --- a/themes/sweet-lemon.yaml +++ b/themes/sweet-lemon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kgnio.sprinklepack" version: "0.2.5" installs: 81 + rating: 5 + ratings: 2 author: "Kagan Mamak" repo: "https://github.com/kgnio/sprinklepack" url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" diff --git a/themes/sweet-pascal.yaml b/themes/sweet-pascal.yaml index 25d54bc1..400dce46 100644 --- a/themes/sweet-pascal.yaml +++ b/themes/sweet-pascal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PascalWelsch.sweet-pascal" version: "0.0.5" installs: 184 + rating: 0 + ratings: 0 author: "Pascal Welsch" repo: "https://github.com/passsy/sweet-pascal" url: "https://marketplace.visualstudio.com/items?itemName=PascalWelsch.sweet-pascal" diff --git a/themes/sweet-vscode.yaml b/themes/sweet-vscode.yaml index de13a434..fcab3c02 100644 --- a/themes/sweet-vscode.yaml +++ b/themes/sweet-vscode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/sweetdracula-monokai.yaml b/themes/sweetdracula-monokai.yaml index 66394757..d041e63d 100644 --- a/themes/sweetdracula-monokai.yaml +++ b/themes/sweetdracula-monokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lefd.sweetdracula-monokai" version: "1.1.14" installs: 8144 + rating: 5 + ratings: 1 author: "lefd" repo: "https://github.com/LEFD/sweetdracula-monokai" url: "https://marketplace.visualstudio.com/items?itemName=lefd.sweetdracula-monokai" diff --git a/themes/swnb-palenight-theme.yaml b/themes/swnb-palenight-theme.yaml index ec21cb78..d09aba9e 100644 --- a/themes/swnb-palenight-theme.yaml +++ b/themes/swnb-palenight-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Swnb.swnb-material-palenight-theme" version: "0.8.3" installs: 3132 + rating: 0 + ratings: 0 author: "Swnb" repo: "https://github.com/swnb/vscode-palenight-theme" url: "https://marketplace.visualstudio.com/items?itemName=Swnb.swnb-material-palenight-theme" diff --git a/themes/syl-black.yaml b/themes/syl-black.yaml index 9f8c0b26..14e868e7 100644 --- a/themes/syl-black.yaml +++ b/themes/syl-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sylex.syl-themes" version: "1.2.0" installs: 32 + rating: 5 + ratings: 1 author: "Sylex" repo: "https://github.com/ItzSylex/syl-themes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" diff --git a/themes/syl-chocolate.yaml b/themes/syl-chocolate.yaml index 0dc089c4..f869bf8d 100644 --- a/themes/syl-chocolate.yaml +++ b/themes/syl-chocolate.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sylex.syl-themes" version: "1.2.0" installs: 32 + rating: 5 + ratings: 1 author: "Sylex" repo: "https://github.com/ItzSylex/syl-themes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" diff --git a/themes/syl-forest.yaml b/themes/syl-forest.yaml index 2baea241..772101f7 100644 --- a/themes/syl-forest.yaml +++ b/themes/syl-forest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sylex.syl-themes" version: "1.2.0" installs: 32 + rating: 5 + ratings: 1 author: "Sylex" repo: "https://github.com/ItzSylex/syl-themes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" diff --git a/themes/syl-ice.yaml b/themes/syl-ice.yaml index 735bf32c..fe9398cf 100644 --- a/themes/syl-ice.yaml +++ b/themes/syl-ice.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sylex.syl-themes" version: "1.2.0" installs: 32 + rating: 5 + ratings: 1 author: "Sylex" repo: "https://github.com/ItzSylex/syl-themes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" diff --git a/themes/syl-plum.yaml b/themes/syl-plum.yaml index 2ef1a16a..2a2d345b 100644 --- a/themes/syl-plum.yaml +++ b/themes/syl-plum.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sylex.syl-themes" version: "1.2.0" installs: 32 + rating: 5 + ratings: 1 author: "Sylex" repo: "https://github.com/ItzSylex/syl-themes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" diff --git a/themes/syl-shadow.yaml b/themes/syl-shadow.yaml index c412bb52..e48b0faf 100644 --- a/themes/syl-shadow.yaml +++ b/themes/syl-shadow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sylex.syl-themes" version: "1.2.0" installs: 32 + rating: 5 + ratings: 1 author: "Sylex" repo: "https://github.com/ItzSylex/syl-themes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" diff --git a/themes/syntax-palette.yaml b/themes/syntax-palette.yaml index 6cfe4ca8..9bd7de62 100644 --- a/themes/syntax-palette.yaml +++ b/themes/syntax-palette.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aqsa.syntax-palette" version: "0.0.5" installs: 218 + rating: 5 + ratings: 1 author: "aqsa" repo: "https://github.com/Bacteria007/syntax-palette" url: "https://marketplace.visualstudio.com/items?itemName=aqsa.syntax-palette" diff --git a/themes/synthesis.yaml b/themes/synthesis.yaml index 150938bf..4f74658f 100644 --- a/themes/synthesis.yaml +++ b/themes/synthesis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dazon.synthesis" version: "0.0.1" installs: 409 + rating: 0 + ratings: 0 author: "dazon" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dazon.synthesis" diff --git a/themes/synthwave-2077.yaml b/themes/synthwave-2077.yaml index 08fc1071..f46f69ce 100644 --- a/themes/synthwave-2077.yaml +++ b/themes/synthwave-2077.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DangoWeb.synthwave-2077" version: "1.0.1" installs: 8902 + rating: 5 + ratings: 1 author: "Dango Web Solutions" repo: "https://github.com/faisalnjs/Synthwave-2077" url: "https://marketplace.visualstudio.com/items?itemName=DangoWeb.synthwave-2077" diff --git a/themes/synthwave-84-csav-edition.yaml b/themes/synthwave-84-csav-edition.yaml index 50e5e7ff..1ad0440d 100644 --- a/themes/synthwave-84-csav-edition.yaml +++ b/themes/synthwave-84-csav-edition.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "csdotav.synthwave84-monokai-edition" version: "0.0.1" installs: 3772 + rating: 0 + ratings: 0 author: "csdotav" repo: null url: "https://marketplace.visualstudio.com/items?itemName=csdotav.synthwave84-monokai-edition" diff --git a/themes/synthwave-alpha.yaml b/themes/synthwave-alpha.yaml index 036b18b7..b5d1524d 100644 --- a/themes/synthwave-alpha.yaml +++ b/themes/synthwave-alpha.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vikpe.synthwave-alpha" version: "0.2.1" installs: 791 + rating: 0 + ratings: 0 author: "Viktor Persson" repo: "https://github.com/vikpe/synthwave-alpha-vscode" url: "https://marketplace.visualstudio.com/items?itemName=vikpe.synthwave-alpha" diff --git a/themes/synthwave-material-ansi-16.yaml b/themes/synthwave-material-ansi-16.yaml index cc4fd89b..3c190b1b 100644 --- a/themes/synthwave-material-ansi-16.yaml +++ b/themes/synthwave-material-ansi-16.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ctenbrinke.ansi16" version: "0.3.8" installs: 824 + rating: 5 + ratings: 1 author: "chtenb" repo: "https://github.com/chtenb/vscode-ansi16" url: "https://marketplace.visualstudio.com/items?itemName=ctenbrinke.ansi16" diff --git a/themes/synthwave-neon.yaml b/themes/synthwave-neon.yaml new file mode 100644 index 00000000..591838d2 --- /dev/null +++ b/themes/synthwave-neon.yaml @@ -0,0 +1,52 @@ +name: "Synthwave-Neon" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#153C51" + fg: "#FAFAFA" + black: "#153C51" + red: "#DF6891" + green: "#29C3A0" + yellow: "#D29922" + blue: "#F551D1" + magenta: "#F551D1" + cyan: "#29C3A0" + white: "#FAFAFA" + brightBlack: "#153C51" + brightRed: "#DF6891" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#F551D1" + brightMagenta: "#F551D1" + brightCyan: "#29C3A0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "pink" + hue: 236 + pair: null + contrast: + fg: 97 + black: 0 + red: 35.3 + green: 51.1 + yellow: 45.1 + blue: 38.5 + magenta: 38.5 + cyan: 51.1 + white: 97 + brightBlack: 0 + brightRed: 35.3 + brightGreen: 51.1 + brightYellow: 45.1 + brightBlue: 38.5 + brightMagenta: 38.5 + brightCyan: 51.1 + brightWhite: 97 diff --git a/themes/synthwave.yaml b/themes/synthwave.yaml index a2d021b1..3a733143 100644 --- a/themes/synthwave.yaml +++ b/themes/synthwave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jonaqhan.jonaqhan" version: "4.8.0" installs: 753 + rating: 0 + ratings: 0 author: "Jonaqhan" repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" diff --git a/themes/synthy.yaml b/themes/synthy.yaml index aebf5ce7..ed606add 100644 --- a/themes/synthy.yaml +++ b/themes/synthy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yondav.synthy" version: "1.0.2" installs: 300 + rating: 0 + ratings: 0 author: "yondav" repo: "https://github.com/yondav/synthy" url: "https://marketplace.visualstudio.com/items?itemName=yondav.synthy" diff --git a/themes/syrinx.yaml b/themes/syrinx.yaml index 2795f7e9..e9544579 100644 --- a/themes/syrinx.yaml +++ b/themes/syrinx.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JohannesFreutel.syrinx" version: "0.1.6" installs: 28 + rating: 0 + ratings: 0 author: "JohannesFreutel" repo: "https://github.com/JohannesFreutel/syrinx-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.syrinx" diff --git a/themes/sys1.yaml b/themes/sys1.yaml index 91e9c565..14159bc9 100644 --- a/themes/sys1.yaml +++ b/themes/sys1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "adrianlimws.sys1-theme" version: "0.0.2" installs: 113 + rating: 0 + ratings: 0 author: "adrianlimws" repo: "https://github.com/adrianlimws/sys1-theme" url: "https://marketplace.visualstudio.com/items?itemName=adrianlimws.sys1-theme" diff --git a/themes/sysop.yaml b/themes/sysop.yaml index 5fa7a124..77929e2b 100644 --- a/themes/sysop.yaml +++ b/themes/sysop.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Urtokk.sysoptheme" version: "0.3.2" installs: 141 + rating: 5 + ratings: 1 author: "Urtokk" repo: "https://github.com/urtokk/vscode-theme-sysop" url: "https://marketplace.visualstudio.com/items?itemName=Urtokk.sysoptheme" diff --git a/themes/t-on-no-c-digo.yaml b/themes/t-on-no-c-digo.yaml new file mode 100644 index 00000000..f612ef59 --- /dev/null +++ b/themes/t-on-no-c-digo.yaml @@ -0,0 +1,52 @@ +name: "Tô on no código" +source: + marketplace_id: "IsraelBatista.to-on-no-codigo" + version: "0.2.1" + installs: 462 + rating: 0 + ratings: 0 + author: "Israel Batista" + repo: "https://github.com/israel77/to-on-no-codigo" + url: "https://marketplace.visualstudio.com/items?itemName=IsraelBatista.to-on-no-codigo" +colors: + bg: "#000C23" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#5AAAA0" + yellow: "#FCFC30" + blue: "#465EFF" + magenta: "#BC3FBC" + cyan: "#00EBD0" + white: "#CCCCCC" + brightBlack: "#69696E" + brightRed: "#F14C4C" + brightGreen: "#88C3BE" + brightYellow: "#F5F543" + brightBlue: "#54DCFC" + brightMagenta: "#D670D6" + brightCyan: "#83FFEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 256 + pair: null + contrast: + fg: 107.5 + black: 0 + red: 27.4 + green: 48.8 + yellow: 100.5 + blue: 28.2 + magenta: 30.4 + cyan: 79.3 + white: 75.3 + brightBlack: 24.1 + brightRed: 39.2 + brightGreen: 63.8 + brightYellow: 96.3 + brightBlue: 75.4 + brightMagenta: 46 + brightCyan: 94.1 + brightWhite: 107.5 diff --git a/themes/t-theme.yaml b/themes/t-theme.yaml index 59a52780..c5cc8029 100644 --- a/themes/t-theme.yaml +++ b/themes/t-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tathagata1805.t-theme" version: "0.0.1" installs: 221 + rating: 0 + ratings: 0 author: "Tathagata Chakraborty" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tathagata1805.t-theme" diff --git a/themes/t3nsor-solo-leveling.yaml b/themes/t3nsor-solo-leveling.yaml index e257e1e0..e1231fd7 100644 --- a/themes/t3nsor-solo-leveling.yaml +++ b/themes/t3nsor-solo-leveling.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "t3nsor.t3nsor-solo-leveling-purple" version: "0.0.1" installs: 353 + rating: 5 + ratings: 1 author: "t3nsor" repo: "https://github.com/t3nsor98/t3nsor-solo-leveling" url: "https://marketplace.visualstudio.com/items?itemName=t3nsor.t3nsor-solo-leveling-purple" diff --git a/themes/taco-syntax.yaml b/themes/taco-syntax.yaml index 94064693..89a8c8ea 100644 --- a/themes/taco-syntax.yaml +++ b/themes/taco-syntax.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "barelyreaper.taco-syntax" version: "0.0.6" installs: 334 + rating: 5 + ratings: 1 author: "Reaper" repo: "https://github.com/barelyhuman/taco-syntax" url: "https://marketplace.visualstudio.com/items?itemName=barelyreaper.taco-syntax" diff --git a/themes/tactical-ops.yaml b/themes/tactical-ops.yaml new file mode 100644 index 00000000..cc927d86 --- /dev/null +++ b/themes/tactical-ops.yaml @@ -0,0 +1,52 @@ +name: "Tactical-Ops" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#180809" + fg: "#FCFCFC" + black: "#180809" + red: "#FEA901" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FF4756" + magenta: "#FF4756" + cyan: "#29C3A0" + white: "#FCFCFC" + brightBlack: "#180809" + brightRed: "#FEA901" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FF4756" + brightMagenta: "#FF4756" + brightCyan: "#29C3A0" + brightWhite: "#FCFCFC" +meta: + mode: "dark" + accent: "orange" + hue: 17 + pair: null + contrast: + fg: 105.6 + black: 0 + red: 65.6 + green: 58.3 + yellow: 52.4 + blue: 42 + magenta: 42 + cyan: 58.3 + white: 105.6 + brightBlack: 0 + brightRed: 65.6 + brightGreen: 58.3 + brightYellow: 52.4 + brightBlue: 42 + brightMagenta: 42 + brightCyan: 58.3 + brightWhite: 105.6 diff --git a/themes/tahigh.yaml b/themes/tahigh.yaml index aeed790c..27efb21f 100644 --- a/themes/tahigh.yaml +++ b/themes/tahigh.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tahakocabuga.blackcurate" version: "0.0.1" installs: 482 + rating: 0 + ratings: 0 author: "tahakocabuga" repo: "https://github.com/tahakocabuga/vscode-blackcurate" url: "https://marketplace.visualstudio.com/items?itemName=tahakocabuga.blackcurate" diff --git a/themes/taiga.yaml b/themes/taiga.yaml index 2a77143e..336f8b57 100644 --- a/themes/taiga.yaml +++ b/themes/taiga.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daniilshat.taiga" version: "1.1.0" installs: 316 + rating: 0 + ratings: 0 author: "daniilshat" repo: "https://github.com/daniilshat/taiga" url: "https://marketplace.visualstudio.com/items?itemName=daniilshat.taiga" diff --git a/themes/tail-dark-theme.yaml b/themes/tail-dark-theme.yaml index ff5b3b9c..f7db2315 100644 --- a/themes/tail-dark-theme.yaml +++ b/themes/tail-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "webldavi.tail-theme" version: "0.0.5" installs: 2420 + rating: 0 + ratings: 0 author: "webldavi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=webldavi.tail-theme" diff --git a/themes/tailwind-breeze.yaml b/themes/tailwind-breeze.yaml index aca5f210..d6ee6ab1 100644 --- a/themes/tailwind-breeze.yaml +++ b/themes/tailwind-breeze.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "praveenpuglia.tailwind-breeze" version: "2.2.6" installs: 16540 + rating: 5 + ratings: 1 author: "Praveen Puglia" repo: "https://github.com/praveenpuglia/tailwind-breeze" url: "https://marketplace.visualstudio.com/items?itemName=praveenpuglia.tailwind-breeze" diff --git a/themes/tailwind-dark.yaml b/themes/tailwind-dark.yaml index ed4ecfd7..814197b6 100644 --- a/themes/tailwind-dark.yaml +++ b/themes/tailwind-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WollaceBuarque.tailwind-theme" version: "0.5.7" installs: 38192 + rating: 5 + ratings: 1 author: "Wollace Buarque" repo: "https://github.com/wollace-buarque/tailwind-theme" url: "https://marketplace.visualstudio.com/items?itemName=WollaceBuarque.tailwind-theme" diff --git a/themes/tailwind-darkest.yaml b/themes/tailwind-darkest.yaml index f66db140..1293694d 100644 --- a/themes/tailwind-darkest.yaml +++ b/themes/tailwind-darkest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WollaceBuarque.tailwind-theme" version: "0.5.7" installs: 38192 + rating: 5 + ratings: 1 author: "Wollace Buarque" repo: "https://github.com/wollace-buarque/tailwind-theme" url: "https://marketplace.visualstudio.com/items?itemName=WollaceBuarque.tailwind-theme" diff --git a/themes/tailwind-moon-blue.yaml b/themes/tailwind-moon-blue.yaml index 8bb50960..bb6d1835 100644 --- a/themes/tailwind-moon-blue.yaml +++ b/themes/tailwind-moon-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shadowblood.tailwind-moon" version: "3.0.2" installs: 43889 + rating: 5 + ratings: 3 author: "Lucia Lovelace" repo: "https://github.com/luciascarlet/tailwind-moon-vscode" url: "https://marketplace.visualstudio.com/items?itemName=shadowblood.tailwind-moon" diff --git a/themes/tailwind-moon-grey.yaml b/themes/tailwind-moon-grey.yaml index 06ff528e..f9585c49 100644 --- a/themes/tailwind-moon-grey.yaml +++ b/themes/tailwind-moon-grey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "laurentlahmy.tailwind-theme-zinc" version: "0.0.1" installs: 403 + rating: 0 + ratings: 0 author: "laurent lahmy" repo: "https://github.com/alphablend-dev/theme" url: "https://marketplace.visualstudio.com/items?itemName=laurentlahmy.tailwind-theme-zinc" diff --git a/themes/tailwind-moon.yaml b/themes/tailwind-moon.yaml index ec36f5aa..852cddcc 100644 --- a/themes/tailwind-moon.yaml +++ b/themes/tailwind-moon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shadowblood.tailwind-moon" version: "3.0.2" installs: 43889 + rating: 5 + ratings: 3 author: "Lucia Lovelace" repo: "https://github.com/luciascarlet/tailwind-moon-vscode" url: "https://marketplace.visualstudio.com/items?itemName=shadowblood.tailwind-moon" diff --git a/themes/tailwind.yaml b/themes/tailwind.yaml index a3733616..56c0fc89 100644 --- a/themes/tailwind.yaml +++ b/themes/tailwind.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "securisec.hapsida-securisec" version: "0.0.30" installs: 226 + rating: 5 + ratings: 1 author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" diff --git a/themes/taipei-night.yaml b/themes/taipei-night.yaml index db504bdf..b44031d9 100644 --- a/themes/taipei-night.yaml +++ b/themes/taipei-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "berniwankenobi.taipei-night" version: "1.0.3" installs: 47 + rating: 5 + ratings: 1 author: "berniwankenobi" repo: "https://github.com/berniechiu/taipei-night-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=berniwankenobi.taipei-night" diff --git a/themes/takenawa.yaml b/themes/takenawa.yaml index 5c101a53..c4f77ec6 100644 --- a/themes/takenawa.yaml +++ b/themes/takenawa.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EmanuelleTakenawa.takenawa-theme" version: "0.1.8" installs: 1042 + rating: 5 + ratings: 4 author: "Emanuelle Takenawa" repo: "https://github.com/emanuelletakenawa/takenawa-theme" url: "https://marketplace.visualstudio.com/items?itemName=EmanuelleTakenawa.takenawa-theme" diff --git a/themes/tame-contrast.yaml b/themes/tame-contrast.yaml index 20acef66..c45df9b0 100644 --- a/themes/tame-contrast.yaml +++ b/themes/tame-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tame-light.yaml b/themes/tame-light.yaml index d283fa8d..b8297aff 100644 --- a/themes/tame-light.yaml +++ b/themes/tame-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tame.yaml b/themes/tame.yaml index 7510f01c..99817d75 100644 --- a/themes/tame.yaml +++ b/themes/tame.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tamil-nadu-temple-land.yaml b/themes/tamil-nadu-temple-land.yaml index 0da8df49..241f301f 100644 --- a/themes/tamil-nadu-temple-land.yaml +++ b/themes/tamil-nadu-temple-land.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ProudIndian.colors-of-india-themes" version: "1.0.1" installs: 37 + rating: 5 + ratings: 1 author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" diff --git a/themes/tan-jade.yaml b/themes/tan-jade.yaml index 1329b673..4f04d4c1 100644 --- a/themes/tan-jade.yaml +++ b/themes/tan-jade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "howmanysmall.vscode-tan-jade-theme" version: "1.0.0" installs: 28 + rating: 0 + ratings: 0 author: "HowManySmall" repo: "https://github.com/ukendio/tan-jade" url: "https://marketplace.visualstudio.com/items?itemName=howmanysmall.vscode-tan-jade-theme" diff --git a/themes/tangere-dark.yaml b/themes/tangere-dark.yaml index df221ae2..35f9ed89 100644 --- a/themes/tangere-dark.yaml +++ b/themes/tangere-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MihailDolghintev.tangere" version: "0.0.4" installs: 48 + rating: 0 + ratings: 0 author: "Mihail Dolghintev" repo: "https://github.com/mihaildolghintev/tangere" url: "https://marketplace.visualstudio.com/items?itemName=MihailDolghintev.tangere" diff --git a/themes/tangere-light.yaml b/themes/tangere-light.yaml index 7c94587f..c36b2c64 100644 --- a/themes/tangere-light.yaml +++ b/themes/tangere-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MihailDolghintev.tangere" version: "0.0.4" installs: 48 + rating: 0 + ratings: 0 author: "Mihail Dolghintev" repo: "https://github.com/mihaildolghintev/tangere" url: "https://marketplace.visualstudio.com/items?itemName=MihailDolghintev.tangere" diff --git a/themes/tango-plus.yaml b/themes/tango-plus.yaml index 7ca898ad..f1b6a43e 100644 --- a/themes/tango-plus.yaml +++ b/themes/tango-plus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ludwigkr.emacs-tango-plus" version: "0.2.0" installs: 726 + rating: 0 + ratings: 0 author: "ludwigkr" repo: "https://github.com/ludwigkr/vscode-tango-plus-theme" url: "https://marketplace.visualstudio.com/items?itemName=ludwigkr.emacs-tango-plus" diff --git a/themes/tango.yaml b/themes/tango.yaml index 0975caa1..faa573bd 100644 --- a/themes/tango.yaml +++ b/themes/tango.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ad1tyawagh.tango-plus" version: "0.0.1" installs: 2661 + rating: 0 + ratings: 0 author: "Aditya Wagh" repo: "https://github.com/ad1tyawagh/tango-plus" url: "https://marketplace.visualstudio.com/items?itemName=ad1tyawagh.tango-plus" diff --git a/themes/tanuki.yaml b/themes/tanuki.yaml index ae69f91d..f8e66eab 100644 --- a/themes/tanuki.yaml +++ b/themes/tanuki.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YUNSUBAE.tanuki" version: "1.1.4" installs: 970 + rating: 5 + ratings: 1 author: "Yunsu Bae" repo: "https://github.com/mniYUNSU/Tanuki" url: "https://marketplace.visualstudio.com/items?itemName=YUNSUBAE.tanuki" diff --git a/themes/tao-theme.yaml b/themes/tao-theme.yaml index cdb4a352..ab1cd9ad 100644 --- a/themes/tao-theme.yaml +++ b/themes/tao-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "LukalaKuka.tao-theme" version: "0.0.2" installs: 512 + rating: 0 + ratings: 0 author: "LukalaKuka" repo: "https://github.com/LukaLaKuka/Tao-Theme" url: "https://marketplace.visualstudio.com/items?itemName=LukalaKuka.tao-theme" diff --git a/themes/tara-theme-carbon-high-contrast.yaml b/themes/tara-theme-carbon-high-contrast.yaml index 05c5e57b..0930b669 100644 --- a/themes/tara-theme-carbon-high-contrast.yaml +++ b/themes/tara-theme-carbon-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Taraldinn.nishuuu-themes" version: "4.2.0" installs: 548 + rating: 5 + ratings: 3 author: "Taraldinn" repo: "https://github.com/nishuuu/nishuuu-themes" url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" diff --git a/themes/tara-theme-carbon.yaml b/themes/tara-theme-carbon.yaml index 42c532cb..cd325fd9 100644 --- a/themes/tara-theme-carbon.yaml +++ b/themes/tara-theme-carbon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Taraldinn.nishuuu-themes" version: "4.2.0" installs: 548 + rating: 5 + ratings: 3 author: "Taraldinn" repo: "https://github.com/nishuuu/nishuuu-themes" url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" diff --git a/themes/tara-theme-deepforest.yaml b/themes/tara-theme-deepforest.yaml index b639af2f..4a33e298 100644 --- a/themes/tara-theme-deepforest.yaml +++ b/themes/tara-theme-deepforest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Taraldinn.nishuuu-themes" version: "4.2.0" installs: 548 + rating: 5 + ratings: 3 author: "Taraldinn" repo: "https://github.com/nishuuu/nishuuu-themes" url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" diff --git a/themes/tara-theme-ocean.yaml b/themes/tara-theme-ocean.yaml index b28a69c2..f91b1a28 100644 --- a/themes/tara-theme-ocean.yaml +++ b/themes/tara-theme-ocean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Taraldinn.nishuuu-themes" version: "4.2.0" installs: 548 + rating: 5 + ratings: 3 author: "Taraldinn" repo: "https://github.com/nishuuu/nishuuu-themes" url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" diff --git a/themes/tara-theme-palenight.yaml b/themes/tara-theme-palenight.yaml index 354d3897..fc3bc3db 100644 --- a/themes/tara-theme-palenight.yaml +++ b/themes/tara-theme-palenight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Taraldinn.nishuuu-themes" version: "4.2.0" installs: 548 + rating: 5 + ratings: 3 author: "Taraldinn" repo: "https://github.com/nishuuu/nishuuu-themes" url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" diff --git a/themes/tara-theme-teal.yaml b/themes/tara-theme-teal.yaml index cf917ed4..689c87f0 100644 --- a/themes/tara-theme-teal.yaml +++ b/themes/tara-theme-teal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Taraldinn.nishuuu-themes" version: "4.2.0" installs: 548 + rating: 5 + ratings: 3 author: "Taraldinn" repo: "https://github.com/nishuuu/nishuuu-themes" url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" diff --git a/themes/taramandal-aurora.yaml b/themes/taramandal-aurora.yaml index bd35a0a0..85cc1750 100644 --- a/themes/taramandal-aurora.yaml +++ b/themes/taramandal-aurora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ramoniswack.taramandal" version: "0.0.5" installs: 45 + rating: 5 + ratings: 1 author: "Ramohan Tiwari" repo: "https://github.com/Ramoniswack/TaraMandal-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ramoniswack.taramandal" diff --git a/themes/taramandal-dark.yaml b/themes/taramandal-dark.yaml index bb9a32ad..ae71844d 100644 --- a/themes/taramandal-dark.yaml +++ b/themes/taramandal-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ramoniswack.taramandal" version: "0.0.5" installs: 45 + rating: 5 + ratings: 1 author: "Ramohan Tiwari" repo: "https://github.com/Ramoniswack/TaraMandal-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ramoniswack.taramandal" diff --git a/themes/taramandal-true-cream.yaml b/themes/taramandal-true-cream.yaml index 9585269f..62a83f63 100644 --- a/themes/taramandal-true-cream.yaml +++ b/themes/taramandal-true-cream.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ramoniswack.taramandal" version: "0.0.5" installs: 45 + rating: 5 + ratings: 1 author: "Ramohan Tiwari" repo: "https://github.com/Ramoniswack/TaraMandal-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ramoniswack.taramandal" diff --git a/themes/tarbooz-dark.yaml b/themes/tarbooz-dark.yaml new file mode 100644 index 00000000..ac3dd4a1 --- /dev/null +++ b/themes/tarbooz-dark.yaml @@ -0,0 +1,52 @@ +name: "Tarbooz Dark" +source: + marketplace_id: "pabi.tarbooz-theme" + version: "0.3.1" + installs: 69 + rating: 5 + ratings: 2 + author: "pabi" + repo: "https://github.com/pabi-ai/tarbooz" + url: "https://marketplace.visualstudio.com/items?itemName=pabi.tarbooz-theme" +colors: + bg: "#142326" + fg: "#C6D6D9" + black: "#142326" + red: "#E35535" + green: "#A9DC76" + yellow: "#DA6C62" + blue: "#00B3BD" + magenta: "#C47CBF" + cyan: "#DA6C62" + white: "#C6D6D9" + brightBlack: "#00B3BD" + brightRed: "#E35535" + brightGreen: "#A9DC76" + brightYellow: "#DA6C62" + brightBlue: "#00B3BD" + brightMagenta: "#C47CBF" + brightCyan: "#DA6C62" + brightWhite: "#C6D6D9" +meta: + mode: "dark" + accent: "orange" + hue: 212 + pair: "Tarbooz Light" + contrast: + fg: 77.6 + black: 0 + red: 35.4 + green: 74 + yellow: 39.2 + blue: 50.1 + magenta: 42.9 + cyan: 39.2 + white: 77.6 + brightBlack: 50.1 + brightRed: 35.4 + brightGreen: 74 + brightYellow: 39.2 + brightBlue: 50.1 + brightMagenta: 42.9 + brightCyan: 39.2 + brightWhite: 77.6 diff --git a/themes/tarbooz-light.yaml b/themes/tarbooz-light.yaml new file mode 100644 index 00000000..9f448274 --- /dev/null +++ b/themes/tarbooz-light.yaml @@ -0,0 +1,52 @@ +name: "Tarbooz Light" +source: + marketplace_id: "pabi.tarbooz-theme" + version: "0.3.1" + installs: 69 + rating: 5 + ratings: 2 + author: "pabi" + repo: "https://github.com/pabi-ai/tarbooz" + url: "https://marketplace.visualstudio.com/items?itemName=pabi.tarbooz-theme" +colors: + bg: "#F5FAFA" + fg: "#000000" + black: "#A0A5A5" + red: "#B70004" + green: "#006904" + yellow: "#7D7000" + blue: "#0052C6" + magenta: "#AC0074" + cyan: "#006560" + white: "#424444" + brightBlack: "#767A7A" + brightRed: "#C35354" + brightGreen: "#528256" + brightYellow: "#7D7852" + brightBlue: "#5B79A2" + brightMagenta: "#AF5A92" + brightCyan: "#567E7C" + brightWhite: "#181818" +meta: + mode: "light" + accent: "red" + hue: null + pair: "Tarbooz Dark" + contrast: + fg: 102.4 + black: 45.4 + red: 77.7 + green: 79.7 + yellow: 70.9 + blue: 79.5 + magenta: 78.1 + cyan: 79.8 + white: 89.1 + brightBlack: 66.5 + brightRed: 66.8 + brightGreen: 67.4 + brightYellow: 67.5 + brightBlue: 67.3 + brightMagenta: 67 + brightCyan: 67.5 + brightWhite: 100.9 diff --git a/themes/tarbooz-underripe.yaml b/themes/tarbooz-underripe.yaml new file mode 100644 index 00000000..cb3e90d1 --- /dev/null +++ b/themes/tarbooz-underripe.yaml @@ -0,0 +1,52 @@ +name: "Tarbooz Underripe" +source: + marketplace_id: "pabi.tarbooz-theme" + version: "0.3.1" + installs: 69 + rating: 5 + ratings: 2 + author: "pabi" + repo: "https://github.com/pabi-ai/tarbooz" + url: "https://marketplace.visualstudio.com/items?itemName=pabi.tarbooz-theme" +colors: + bg: "#1D1816" + fg: "#FFFFFF" + black: "#524C49" + red: "#EF6363" + green: "#45AA41" + yellow: "#BFAF40" + blue: "#4B9ECD" + magenta: "#ED63BA" + cyan: "#46A598" + white: "#9C9897" + brightBlack: "#75706E" + brightRed: "#D19797" + brightGreen: "#80B27F" + brightYellow: "#ADA77F" + brightBlue: "#87ABC0" + brightMagenta: "#CD95B8" + brightCyan: "#83AEA8" + brightWhite: "#CFCECD" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.7 + black: 11.9 + red: 42.5 + green: 44.7 + yellow: 57.1 + blue: 44.5 + magenta: 45.1 + cyan: 44.7 + white: 45.9 + brightBlack: 26.6 + brightRed: 52.7 + brightGreen: 52.7 + brightYellow: 52.8 + brightBlue: 52.8 + brightMagenta: 52.7 + brightCyan: 52.7 + brightWhite: 75.7 diff --git a/themes/tasmania-dark.yaml b/themes/tasmania-dark.yaml index 4874f382..d9f75bee 100644 --- a/themes/tasmania-dark.yaml +++ b/themes/tasmania-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.tasmania-theme" version: "1.3.0" installs: 2 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.tasmania-theme" diff --git a/themes/tasmania-light.yaml b/themes/tasmania-light.yaml index 8c5dbb73..8d1b6428 100644 --- a/themes/tasmania-light.yaml +++ b/themes/tasmania-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.tasmania-theme" version: "1.3.0" installs: 2 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.tasmania-theme" diff --git a/themes/taurus.yaml b/themes/taurus.yaml index 174a9af9..dbb7d297 100644 --- a/themes/taurus.yaml +++ b/themes/taurus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xyr0z1ne.taurus" version: "0.0.5" installs: 2809 + rating: 5 + ratings: 1 author: "xyr0z1ne" repo: "https://github.com/Xyr0s1gn/Taurus-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=xyr0z1ne.taurus" diff --git a/themes/tbs-theme.yaml b/themes/tbs-theme.yaml index 1f56f2c5..8188db06 100644 --- a/themes/tbs-theme.yaml +++ b/themes/tbs-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Tbs-theme.Tbs-theme" version: "0.0.9" installs: 239 + rating: 5 + ratings: 2 author: "Tbs-theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Tbs-theme.Tbs-theme" diff --git a/themes/tea-leaves.yaml b/themes/tea-leaves.yaml index d2146329..548748de 100644 --- a/themes/tea-leaves.yaml +++ b/themes/tea-leaves.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DasLanky.tea-leaves" version: "0.1.0" installs: 613 + rating: 5 + ratings: 2 author: "DasLanky" repo: "https://github.com/DasLanky/tea-leaves" url: "https://marketplace.visualstudio.com/items?itemName=DasLanky.tea-leaves" diff --git a/themes/teags.yaml b/themes/teags.yaml index 82d3995e..386ea477 100644 --- a/themes/teags.yaml +++ b/themes/teags.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sokratic.sokratic-theme" version: "0.0.2" installs: 85 + rating: 5 + ratings: 1 author: "sokratic" repo: "https://github.com/taylorsegell/Sokratic-VSCODE-Theme" url: "https://marketplace.visualstudio.com/items?itemName=sokratic.sokratic-theme" diff --git a/themes/teal-abyss.yaml b/themes/teal-abyss.yaml new file mode 100644 index 00000000..9f425596 --- /dev/null +++ b/themes/teal-abyss.yaml @@ -0,0 +1,50 @@ +name: "Teal Abyss" +source: + marketplace_id: "PanthoSarkar.teal-abyss" + version: "0.0.4" + installs: 262 + author: "Pantho Sarkar" + repo: "https://github.com/panthosarkar/Teal_Abyss" + url: "https://marketplace.visualstudio.com/items?itemName=PanthoSarkar.teal-abyss" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#868686" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#716565" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 37.6 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 80.5 + brightBlack: 56.8 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 23.8 diff --git a/themes/teal-crow-light.yaml b/themes/teal-crow-light.yaml index a08d4e73..751659b4 100644 --- a/themes/teal-crow-light.yaml +++ b/themes/teal-crow-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mdfaisal.mdfaisal-tealcrow" version: "3.0.0" installs: 312 + rating: 5 + ratings: 2 author: "mdfaisal" repo: "https://github.com/acej0k3r/mdfaisal-tealcrow" url: "https://marketplace.visualstudio.com/items?itemName=mdfaisal.mdfaisal-tealcrow" diff --git a/themes/teal.yaml b/themes/teal.yaml index 7f42e658..16f3f79d 100644 --- a/themes/teal.yaml +++ b/themes/teal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "natecrow.consonance-themes" version: "1.2.0" installs: 317 + rating: 0 + ratings: 0 author: "natecrow" repo: "https://github.com/natecrow/consonance-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" diff --git a/themes/tealicious.yaml b/themes/tealicious.yaml index ebb71203..0fbff919 100644 --- a/themes/tealicious.yaml +++ b/themes/tealicious.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Haroon.Tealicious" version: "0.0.3" installs: 376 + rating: 5 + ratings: 3 author: "Haroon" repo: "https://github.com/cocomo29/Tealicious" url: "https://marketplace.visualstudio.com/items?itemName=Haroon.Tealicious" diff --git a/themes/team-pastel-colors-theme.yaml b/themes/team-pastel-colors-theme.yaml index c75a8e6e..812007ea 100644 --- a/themes/team-pastel-colors-theme.yaml +++ b/themes/team-pastel-colors-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zumba29.team-pastel-colors" version: "0.0.1" installs: 347 + rating: 0 + ratings: 0 author: "zumba29" repo: "https://github.com/sahilmtayade/pastel-colors-theme" url: "https://marketplace.visualstudio.com/items?itemName=zumba29.team-pastel-colors" diff --git a/themes/tears-of-the-kingdom-minimal-dark-midnight.yaml b/themes/tears-of-the-kingdom-minimal-dark-midnight.yaml new file mode 100644 index 00000000..7807787d --- /dev/null +++ b/themes/tears-of-the-kingdom-minimal-dark-midnight.yaml @@ -0,0 +1,50 @@ +name: "Tears of the Kingdom – Minimal Dark (Midnight)" +source: + marketplace_id: "AdrianKamulegeya.tears-of-the-kingdom-vscode" + version: "0.1.2" + installs: 49 + author: "Adrian Kamulegeya" + repo: "https://github.com/AdrianKamulegeya/tears-of-the-kingdom-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AdrianKamulegeya.tears-of-the-kingdom-vscode" +colors: + bg: "#0B1010" + fg: "#B8C7C0" + black: "#0B1010" + red: "#9E5A50" + green: "#339F82" + yellow: "#A89054" + blue: "#5F7F95" + magenta: "#3E8F8C" + cyan: "#339F82" + white: "#B8C7C0" + brightBlack: "#536960" + brightRed: "#9E5A50" + brightGreen: "#339F82" + brightYellow: "#A89054" + brightBlue: "#5F7F95" + brightMagenta: "#3E8F8C" + brightCyan: "#339F82" + brightWhite: "#B8C7C0" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 70.2 + black: 0 + red: 25.8 + green: 41.6 + yellow: 43.5 + blue: 32 + magenta: 35.9 + cyan: 41.6 + white: 70.2 + brightBlack: 21.9 + brightRed: 25.8 + brightGreen: 41.6 + brightYellow: 43.5 + brightBlue: 32 + brightMagenta: 35.9 + brightCyan: 41.6 + brightWhite: 70.2 diff --git a/themes/tears-of-the-kingdom-minimal-dark.yaml b/themes/tears-of-the-kingdom-minimal-dark.yaml new file mode 100644 index 00000000..40443d47 --- /dev/null +++ b/themes/tears-of-the-kingdom-minimal-dark.yaml @@ -0,0 +1,50 @@ +name: "Tears of the Kingdom - – Minimal Dark" +source: + marketplace_id: "AdrianKamulegeya.tears-of-the-kingdom-vscode" + version: "0.1.2" + installs: 49 + author: "Adrian Kamulegeya" + repo: "https://github.com/AdrianKamulegeya/tears-of-the-kingdom-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AdrianKamulegeya.tears-of-the-kingdom-vscode" +colors: + bg: "#0F1412" + fg: "#C9D6CF" + black: "#0F1412" + red: "#C06C5F" + green: "#3FBF9A" + yellow: "#C2A86B" + blue: "#6E8FA6" + magenta: "#4FA6A3" + cyan: "#3FBF9A" + white: "#C9D6CF" + brightBlack: "#5E746B" + brightRed: "#C06C5F" + brightGreen: "#3FBF9A" + brightYellow: "#C2A86B" + brightBlue: "#6E8FA6" + brightMagenta: "#4FA6A3" + brightCyan: "#3FBF9A" + brightWhite: "#C9D6CF" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 79.1 + black: 0 + red: 36 + green: 56.5 + yellow: 56 + blue: 39.4 + magenta: 46.5 + cyan: 56.5 + white: 79.1 + brightBlack: 26.4 + brightRed: 36 + brightGreen: 56.5 + brightYellow: 56 + brightBlue: 39.4 + brightMagenta: 46.5 + brightCyan: 56.5 + brightWhite: 79.1 diff --git a/themes/techrazor-pro.yaml b/themes/techrazor-pro.yaml index 4ede12fe..37531fb5 100644 --- a/themes/techrazor-pro.yaml +++ b/themes/techrazor-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tech-razor.techrazor-pro-theme" version: "1.0.3" installs: 172 + rating: 0 + ratings: 0 author: "Tech Razor" repo: "https://github.com/tech-razor/techrazor-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=tech-razor.techrazor-pro-theme" diff --git a/themes/techset.yaml b/themes/techset.yaml new file mode 100644 index 00000000..cd62f909 --- /dev/null +++ b/themes/techset.yaml @@ -0,0 +1,50 @@ +name: "techset" +source: + marketplace_id: "paradoxx.theme-techset" + version: "2.22.1" + installs: 180 + author: "paradoxx" + repo: "https://github.com/techset/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=paradoxx.theme-techset" +colors: + bg: "#22192C" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 305 + pair: null + contrast: + fg: 101.3 + black: 0 + red: 42.7 + green: 84.2 + yellow: 97.8 + blue: 52.9 + magenta: 53.9 + cyan: 83.2 + white: 101.3 + brightBlack: 27.3 + brightRed: 48.1 + brightGreen: 88.3 + brightYellow: 102.8 + brightBlue: 65.4 + brightMagenta: 61.9 + brightCyan: 96.1 + brightWhite: 106.2 diff --git a/themes/techstudent10.yaml b/themes/techstudent10.yaml index d4054e4d..5fe23e63 100644 --- a/themes/techstudent10.yaml +++ b/themes/techstudent10.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TechStudent10.techstudent10-color-theme" version: "0.0.4" installs: 96 + rating: 0 + ratings: 0 author: "TechStudent10" repo: "https://github.com/TechStudent11/TechStudent10-Color-Theme" url: "https://marketplace.visualstudio.com/items?itemName=TechStudent10.techstudent10-color-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 62 + pair: null contrast: fg: 104.7 black: 0 diff --git a/themes/techswahili-color-theme.yaml b/themes/techswahili-color-theme.yaml index 36f551d0..921ab84b 100644 --- a/themes/techswahili-color-theme.yaml +++ b/themes/techswahili-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ramadhanmkoma.techswahili" version: "1.1.0" installs: 112 + rating: 5 + ratings: 1 author: "TechSWahili" repo: "https://github.com/Ramadhanmkoma/VSCode-Color-Theme-Extension" url: "https://marketplace.visualstudio.com/items?itemName=Ramadhanmkoma.techswahili" diff --git a/themes/techswahili-deep.yaml b/themes/techswahili-deep.yaml index 142553f3..b19ff1b2 100644 --- a/themes/techswahili-deep.yaml +++ b/themes/techswahili-deep.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ramadhanmkoma.techswahili" version: "1.1.0" installs: 112 + rating: 5 + ratings: 1 author: "TechSWahili" repo: "https://github.com/Ramadhanmkoma/VSCode-Color-Theme-Extension" url: "https://marketplace.visualstudio.com/items?itemName=Ramadhanmkoma.techswahili" diff --git a/themes/techswahili-modern-dark.yaml b/themes/techswahili-modern-dark.yaml index b9460df3..44957e75 100644 --- a/themes/techswahili-modern-dark.yaml +++ b/themes/techswahili-modern-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ramadhanmkoma.techswahili" version: "1.1.0" installs: 112 + rating: 5 + ratings: 1 author: "TechSWahili" repo: "https://github.com/Ramadhanmkoma/VSCode-Color-Theme-Extension" url: "https://marketplace.visualstudio.com/items?itemName=Ramadhanmkoma.techswahili" diff --git a/themes/tecoma-theme.yaml b/themes/tecoma-theme.yaml index e7420ee6..c6cb1d8b 100644 --- a/themes/tecoma-theme.yaml +++ b/themes/tecoma-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "monket.karl-okeeffes-theme" version: "5.1.0" installs: 794 + rating: 5 + ratings: 2 author: "Karl O'Keeffe" repo: "https://github.com/karl/vscode-karl-okeeffes-theme" url: "https://marketplace.visualstudio.com/items?itemName=monket.karl-okeeffes-theme" diff --git a/themes/telescope-fork.yaml b/themes/telescope-fork.yaml index f33bbffb..66bf5f89 100644 --- a/themes/telescope-fork.yaml +++ b/themes/telescope-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Alucardness.telescope-theme" version: "0.0.6" installs: 1548 + rating: 5 + ratings: 3 author: "Alucardness" repo: "https://github.com/alucardness/telescope-theme" url: "https://marketplace.visualstudio.com/items?itemName=Alucardness.telescope-theme" diff --git a/themes/telescope.yaml b/themes/telescope.yaml index e7be180d..bbb7d8d6 100644 --- a/themes/telescope.yaml +++ b/themes/telescope.yaml @@ -1,50 +1,52 @@ -name: "telescope" +name: "Telescope" source: - marketplace_id: "anyavyazemskaya.telesc0pe" - version: "0.0.1" - installs: 3 - author: "anya vyazemskaya" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=anyavyazemskaya.telesc0pe" + marketplace_id: "hmseeb.seeb" + version: "1.1.3" + installs: 2026 + rating: 5 + ratings: 1 + author: "hmseeb" + repo: "https://github.com/hmseeb/dark-owl" + url: "https://marketplace.visualstudio.com/items?itemName=hmseeb.seeb" colors: - bg: "#262734" - fg: "#CDC6FF" - black: "#000000" - red: "#FFB0AC" - green: "#AFFFC8" - yellow: "#FFE7BB" - blue: "#A3B6FF" - magenta: "#D7ABFF" - cyan: "#B9DDD2" - white: "#C4C4C4" - brightBlack: "#5E5E5E" - brightRed: "#FFB0AC" - brightGreen: "#AFFFC8" - brightYellow: "#FFE7BB" - brightBlue: "#A3B6FF" - brightMagenta: "#D7ABFF" - brightCyan: "#B9DDD2" - brightWhite: "#E4E3E2" + bg: "#16171F" + fg: "#BFC3E2" + black: "#121319" + red: "#BF616A" + green: "#72C2A2" + yellow: "#78B7E2" + blue: "#84A0C6" + magenta: "#A093C7" + cyan: "#89B8C2" + white: "#BCC5D8" + brightBlack: "#3E4960" + brightRed: "#E29199" + brightGreen: "#A0DBC2" + brightYellow: "#A8D2EE" + brightBlue: "#A3BEE3" + brightMagenta: "#C8B5E6" + brightCyan: "#B6D8DE" + brightWhite: "#E1EBFF" meta: mode: "dark" - accent: "magenta" - hue: 281 + accent: "orange" + hue: 279 pair: null contrast: - fg: 72.4 + fg: 70.3 black: 0 - red: 67.7 - green: 92.9 - yellow: 90.6 - blue: 61.2 - magenta: 63.5 - cyan: 77.8 - white: 67.5 - brightBlack: 16.3 - brightRed: 67.7 - brightGreen: 92.9 - brightYellow: 90.6 - brightBlue: 61.2 - brightMagenta: 63.5 - brightCyan: 77.8 - brightWhite: 86.4 + red: 32.9 + green: 60 + yellow: 58.5 + blue: 48.7 + magenta: 46.9 + cyan: 58.6 + white: 70.2 + brightBlack: 10.5 + brightRed: 53.8 + brightGreen: 76.2 + brightYellow: 74.8 + brightBlue: 65.2 + brightMagenta: 66 + brightCyan: 78.1 + brightWhite: 93.4 diff --git a/themes/tema-dark-nero.yaml b/themes/tema-dark-nero.yaml index e01af103..128a21dd 100644 --- a/themes/tema-dark-nero.yaml +++ b/themes/tema-dark-nero.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "amarcos1337.dark-nero-theme" version: "0.0.1" installs: 19 + rating: 0 + ratings: 0 author: "amarcos1337" repo: null url: "https://marketplace.visualstudio.com/items?itemName=amarcos1337.dark-nero-theme" diff --git a/themes/tema-dos-cria.yaml b/themes/tema-dos-cria.yaml index 6926215b..0867a16d 100644 --- a/themes/tema-dos-cria.yaml +++ b/themes/tema-dos-cria.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nul0.tema-dos-cria" version: "0.0.1" installs: 925 + rating: 0 + ratings: 0 author: "nul0" repo: "https://github.com/Nulo0/tema-dos-cria" url: "https://marketplace.visualstudio.com/items?itemName=nul0.tema-dos-cria" diff --git a/themes/teneblattinus.yaml b/themes/teneblattinus.yaml index 9ea3330a..925d9147 100644 --- a/themes/teneblattinus.yaml +++ b/themes/teneblattinus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Eluce.teneblattinus" version: "1.1.2" installs: 34 + rating: 0 + ratings: 0 author: "Eluce" repo: "https://github.com/elucestel4ris/teneblattinus" url: "https://marketplace.visualstudio.com/items?itemName=Eluce.teneblattinus" diff --git a/themes/tenebris.yaml b/themes/tenebris.yaml index 6b234eca..968a5d37 100644 --- a/themes/tenebris.yaml +++ b/themes/tenebris.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devShed.tenebris" version: "0.2.0" installs: 116 + rating: 5 + ratings: 1 author: "devShed" repo: "https://github.com/5h3d/Tenebris" url: "https://marketplace.visualstudio.com/items?itemName=devShed.tenebris" diff --git a/themes/terafox.yaml b/themes/terafox.yaml index cba0fad7..e11e9354 100644 --- a/themes/terafox.yaml +++ b/themes/terafox.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "keifererikson.nightfox" version: "0.0.14" installs: 17385 + rating: 5 + ratings: 3 author: "Keifer Erikson" repo: "https://github.com/keifererikson/vscode-nightfox" url: "https://marketplace.visualstudio.com/items?itemName=keifererikson.nightfox" diff --git a/themes/term.yaml b/themes/term.yaml index ec5fb6f0..2aff3bca 100644 --- a/themes/term.yaml +++ b/themes/term.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "distek.vscode-term-theme" version: "0.0.2" installs: 76 + rating: 0 + ratings: 0 author: "distek" repo: "https://github.com/distek/vscode-theme-term" url: "https://marketplace.visualstudio.com/items?itemName=distek.vscode-term-theme" diff --git a/themes/terminal-fork.yaml b/themes/terminal-fork.yaml new file mode 100644 index 00000000..fedbf875 --- /dev/null +++ b/themes/terminal-fork.yaml @@ -0,0 +1,52 @@ +name: "Terminal - Fork" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29917 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" +colors: + bg: "#000000" + fg: "#39FF14" + black: "#39FF14" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 87 + black: 87 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/terminal.yaml b/themes/terminal.yaml index 83f53921..76c4da8f 100644 --- a/themes/terminal.yaml +++ b/themes/terminal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.terminal-theme" version: "0.0.9" installs: 9264 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/yesomac/terminal" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.terminal-theme" diff --git a/themes/terracecat.yaml b/themes/terracecat.yaml index 4f2110a6..08b23398 100644 --- a/themes/terracecat.yaml +++ b/themes/terracecat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Daiki.terracecat" version: "0.2.1" installs: 66 + rating: 0 + ratings: 0 author: "Daiki" repo: "https://github.com/Daiki48/TerraceCat" url: "https://marketplace.visualstudio.com/items?itemName=Daiki.terracecat" diff --git a/themes/terrarium-minimal-dark.yaml b/themes/terrarium-minimal-dark.yaml index 616418e7..1c15b786 100644 --- a/themes/terrarium-minimal-dark.yaml +++ b/themes/terrarium-minimal-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "appliedscience.terrarium-theme" version: "0.4.7" installs: 73 + rating: 0 + ratings: 0 author: "Applied Science" repo: "https://github.com/appliedsciencegroup/terrarium-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=appliedscience.terrarium-theme" diff --git a/themes/terrarium-minimal-light.yaml b/themes/terrarium-minimal-light.yaml index 11153611..a0e9917d 100644 --- a/themes/terrarium-minimal-light.yaml +++ b/themes/terrarium-minimal-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "appliedscience.terrarium-theme" version: "0.4.7" installs: 73 + rating: 0 + ratings: 0 author: "Applied Science" repo: "https://github.com/appliedsciencegroup/terrarium-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=appliedscience.terrarium-theme" diff --git a/themes/tesselate.yaml b/themes/tesselate.yaml index 6f5d5d2b..48a1cf18 100644 --- a/themes/tesselate.yaml +++ b/themes/tesselate.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MrMartian.tesselate" version: "0.0.6" installs: 198 + rating: 0 + ratings: 0 author: "MrMartian" repo: "https://github.com/CraigglesO/tesselate-vscode" url: "https://marketplace.visualstudio.com/items?itemName=MrMartian.tesselate" diff --git a/themes/tesseract-dark.yaml b/themes/tesseract-dark.yaml index f170d2a5..c80f6afb 100644 --- a/themes/tesseract-dark.yaml +++ b/themes/tesseract-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "martian.tesseract" version: "1.5.0" installs: 6308 + rating: 0 + ratings: 0 author: "Endurance the Martian 👽" repo: "https://github.com/hendurhance/tesseract" url: "https://marketplace.visualstudio.com/items?itemName=martian.tesseract" diff --git a/themes/test.yaml b/themes/test.yaml index dacad03d..b124b78e 100644 --- a/themes/test.yaml +++ b/themes/test.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KuldeepRawat.deepsea" version: "1.4.0" installs: 842 + rating: 5 + ratings: 1 author: "Kuldeep Rawat" repo: "https://github.com/thekuldeeprawat/deepsea" url: "https://marketplace.visualstudio.com/items?itemName=KuldeepRawat.deepsea" diff --git a/themes/tetra-contrast.yaml b/themes/tetra-contrast.yaml index f7f9396a..6df63914 100644 --- a/themes/tetra-contrast.yaml +++ b/themes/tetra-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tetra-light.yaml b/themes/tetra-light.yaml index 6554cf83..89d3f120 100644 --- a/themes/tetra-light.yaml +++ b/themes/tetra-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tetra.yaml b/themes/tetra.yaml index 96c9072f..66f61936 100644 --- a/themes/tetra.yaml +++ b/themes/tetra.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/textmate-rstheme.yaml b/themes/textmate-rstheme.yaml index 8680ae94..c2095bba 100644 --- a/themes/textmate-rstheme.yaml +++ b/themes/textmate-rstheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nanxstats.textmate-rstheme" version: "2026.1.0" installs: 2612 + rating: 0 + ratings: 0 author: "Nan Xiao" repo: "https://github.com/nanxstats/vscode-textmate-rstheme" url: "https://marketplace.visualstudio.com/items?itemName=nanxstats.textmate-rstheme" diff --git a/themes/th-me-dark-aout-contraste-lev.yaml b/themes/th-me-dark-aout-contraste-lev.yaml new file mode 100644 index 00000000..33c75c3a --- /dev/null +++ b/themes/th-me-dark-aout-contraste-lev.yaml @@ -0,0 +1,52 @@ +name: "Thème Dark Aout - Contraste Élevé" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 822 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 16.1 + brightRed: 44.4 + brightGreen: 88.1 + brightYellow: 103.1 + brightBlue: 27.4 + brightMagenta: 51.9 + brightCyan: 93.4 + brightWhite: 107.9 diff --git a/themes/th-me-dark-avril-vert-printemps.yaml b/themes/th-me-dark-avril-vert-printemps.yaml index ef314064..cf08e73a 100644 --- a/themes/th-me-dark-avril-vert-printemps.yaml +++ b/themes/th-me-dark-avril-vert-printemps.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/th-me-dark-janvier-bleu-fonc.yaml b/themes/th-me-dark-janvier-bleu-fonc.yaml index ca7bad6b..2291b1ca 100644 --- a/themes/th-me-dark-janvier-bleu-fonc.yaml +++ b/themes/th-me-dark-janvier-bleu-fonc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/th-me-dark-juillet-contraste-lev.yaml b/themes/th-me-dark-juillet-contraste-lev.yaml index 25e42259..57a0d59d 100644 --- a/themes/th-me-dark-juillet-contraste-lev.yaml +++ b/themes/th-me-dark-juillet-contraste-lev.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/th-me-dark-juin-high-contrast.yaml b/themes/th-me-dark-juin-high-contrast.yaml index a04daefd..93bc3872 100644 --- a/themes/th-me-dark-juin-high-contrast.yaml +++ b/themes/th-me-dark-juin-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/th-me-high-contrast-janvier-r-vis.yaml b/themes/th-me-high-contrast-janvier-r-vis.yaml index 9b08d90b..938f50f4 100644 --- a/themes/th-me-high-contrast-janvier-r-vis.yaml +++ b/themes/th-me-high-contrast-janvier-r-vis.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/th-me-sombre-d-automne.yaml b/themes/th-me-sombre-d-automne.yaml index 461ffb56..1c254fc9 100644 --- a/themes/th-me-sombre-d-automne.yaml +++ b/themes/th-me-sombre-d-automne.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" version: "0.9.7" installs: 822 + rating: 5 + ratings: 1 author: "Mickael Lherminez" repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" diff --git a/themes/thanatos.yaml b/themes/thanatos.yaml index e86aa648..2ae3ccdb 100644 --- a/themes/thanatos.yaml +++ b/themes/thanatos.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fede-crc.thanatos" version: "2.2.1" installs: 3589 + rating: 5 + ratings: 1 author: "Federico Figueroa C." repo: "https://github.com/fedfigca/thanatos" url: "https://marketplace.visualstudio.com/items?itemName=fede-crc.thanatos" diff --git a/themes/thatdatapurple.yaml b/themes/thatdatapurple.yaml index 50be8bb9..d470243c 100644 --- a/themes/thatdatapurple.yaml +++ b/themes/thatdatapurple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ThatDataPerson.thatdatapurple" version: "2022.2.3" installs: 75 + rating: 1 + ratings: 1 author: "That Data Person Limited" repo: "https://github.com/thatdataperson/ThatDataPurple.VSCode" url: "https://marketplace.visualstudio.com/items?itemName=ThatDataPerson.thatdatapurple" diff --git a/themes/the-best-vscode-theme-ever-light.yaml b/themes/the-best-vscode-theme-ever-light.yaml new file mode 100644 index 00000000..8cf1b90f --- /dev/null +++ b/themes/the-best-vscode-theme-ever-light.yaml @@ -0,0 +1,52 @@ +name: "The Best VsCode Theme Ever - Light" +source: + marketplace_id: "danielvfrodrigues.bestvscodetheme" + version: "0.0.4" + installs: 70 + rating: 0 + ratings: 0 + author: "DanielRodrigues" + repo: "https://github.com/Danielvfrodrigues/bestvscodetheme" + url: "https://marketplace.visualstudio.com/items?itemName=danielvfrodrigues.bestvscodetheme" +colors: + bg: "#CCCCCC" + fg: "#1F232A" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 73.2 + black: 76.5 + red: 44.4 + green: 18.5 + yellow: 9.6 + blue: 43.7 + magenta: 41.4 + cyan: 23.7 + white: 14 + brightBlack: 49.2 + brightRed: 32.6 + brightGreen: 8.3 + brightYellow: 19.6 + brightBlue: 31.2 + brightMagenta: 25.9 + brightCyan: 16.1 + brightWhite: 14 diff --git a/themes/the-dark-stove.yaml b/themes/the-dark-stove.yaml index 3322b165..6691f5bf 100644 --- a/themes/the-dark-stove.yaml +++ b/themes/the-dark-stove.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrewbrey.the-dark-stove" version: "0.0.1" installs: 239 + rating: 5 + ratings: 1 author: "Andrew Brey" repo: "https://github.com/andrewbrey/vscode-stove-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewbrey.the-dark-stove" diff --git a/themes/the-digital-life.yaml b/themes/the-digital-life.yaml index cab1fb17..36a879a5 100644 --- a/themes/the-digital-life.yaml +++ b/themes/the-digital-life.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xcad2k.vscode-thedigitallife" version: "1.1.0" installs: 11897 + rating: 5 + ratings: 6 author: "Christian Lempa" repo: "git+https://github.com/xcad2k/vscode-thedigitallife" url: "https://marketplace.visualstudio.com/items?itemName=xcad2k.vscode-thedigitallife" diff --git a/themes/the-druid.yaml b/themes/the-druid.yaml index 010ac45a..3437def1 100644 --- a/themes/the-druid.yaml +++ b/themes/the-druid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Yuritoledo.the-druid" version: "1.0.6" installs: 54 + rating: 0 + ratings: 0 author: "Yuri toledo" repo: "https://github.com/yuritoledo/the-druid-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Yuritoledo.the-druid" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 132 + pair: null contrast: fg: 107.3 black: 0 diff --git a/themes/the-empire.yaml b/themes/the-empire.yaml index dc9cccaa..dacea5d1 100644 --- a/themes/the-empire.yaml +++ b/themes/the-empire.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DanMad.a-galaxy-far-far-away-theme" version: "3.3.1" installs: 4613 + rating: 5 + ratings: 3 author: "DanMad" repo: "https://github.com/danmad/a-galaxy-far-far-away-theme" url: "https://marketplace.visualstudio.com/items?itemName=DanMad.a-galaxy-far-far-away-theme" diff --git a/themes/the-end-of-development.yaml b/themes/the-end-of-development.yaml index 31ef7b67..36f1a17c 100644 --- a/themes/the-end-of-development.yaml +++ b/themes/the-end-of-development.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tecnomazov.evas-code" version: "1.0.0" installs: 1061 + rating: 5 + ratings: 1 author: "TecnoMazov" repo: "https://github.com/JuditKaramazov/TCA-EVASCode" url: "https://marketplace.visualstudio.com/items?itemName=tecnomazov.evas-code" diff --git a/themes/the-flying-dutchman-high-contrast.yaml b/themes/the-flying-dutchman-high-contrast.yaml index 4db8562c..7f592cf0 100644 --- a/themes/the-flying-dutchman-high-contrast.yaml +++ b/themes/the-flying-dutchman-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DavyJones.the-flying-dutchman-theme" version: "1.4.0" installs: 110 + rating: 5 + ratings: 1 author: "Davy Jones" repo: "https://github.com/ADWilkinson/the-flying-dutchman-theme" url: "https://marketplace.visualstudio.com/items?itemName=DavyJones.the-flying-dutchman-theme" diff --git a/themes/the-flying-dutchman-soft.yaml b/themes/the-flying-dutchman-soft.yaml index 9d951cf1..012b1416 100644 --- a/themes/the-flying-dutchman-soft.yaml +++ b/themes/the-flying-dutchman-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DavyJones.the-flying-dutchman-theme" version: "1.4.0" installs: 110 + rating: 5 + ratings: 1 author: "Davy Jones" repo: "https://github.com/ADWilkinson/the-flying-dutchman-theme" url: "https://marketplace.visualstudio.com/items?itemName=DavyJones.the-flying-dutchman-theme" diff --git a/themes/the-flying-dutchman.yaml b/themes/the-flying-dutchman.yaml index e75463fa..d7fd077c 100644 --- a/themes/the-flying-dutchman.yaml +++ b/themes/the-flying-dutchman.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "DavyJones.the-flying-dutchman-theme" version: "1.4.0" installs: 110 + rating: 5 + ratings: 1 author: "Davy Jones" repo: "https://github.com/ADWilkinson/the-flying-dutchman-theme" url: "https://marketplace.visualstudio.com/items?itemName=DavyJones.the-flying-dutchman-theme" diff --git a/themes/the-gentleman.yaml b/themes/the-gentleman.yaml index 80c81abd..58b9feca 100644 --- a/themes/the-gentleman.yaml +++ b/themes/the-gentleman.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "subhankard.thegentleman" version: "1.0.1" installs: 500 + rating: 5 + ratings: 1 author: "subhankard" repo: "https://github.com/subhankar-das/thegentleman" url: "https://marketplace.visualstudio.com/items?itemName=subhankard.thegentleman" diff --git a/themes/the-occult.yaml b/themes/the-occult.yaml index db28046f..eb84b34d 100644 --- a/themes/the-occult.yaml +++ b/themes/the-occult.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yubiDev.yoobdev" version: "0.0.7" installs: 195 + rating: 0 + ratings: 0 author: "yoobdev" repo: "https://github.com/kimkom369/VSCode-Theme-Pack" url: "https://marketplace.visualstudio.com/items?itemName=yubiDev.yoobdev" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 300 + pair: null contrast: fg: 19.4 black: 37.6 diff --git a/themes/the-one-theme.yaml b/themes/the-one-theme.yaml index 4b843468..e8dd2fd6 100644 --- a/themes/the-one-theme.yaml +++ b/themes/the-one-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ancairon.the-one-theme" version: "0.0.6" installs: 829 + rating: 0 + ratings: 0 author: "Ancairon" repo: "https://github.com/Ancairon/the-one-theme" url: "https://marketplace.visualstudio.com/items?itemName=Ancairon.the-one-theme" diff --git a/themes/the-orchid-dark.yaml b/themes/the-orchid-dark.yaml index 673b58c1..63ed1492 100644 --- a/themes/the-orchid-dark.yaml +++ b/themes/the-orchid-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "403forbidden.the-orchid-theme" version: "1.1.8" installs: 183 + rating: 5 + ratings: 1 author: "403 Forbidden" repo: "https://github.com/mario-garcia-dev/the-orchid-theme" url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.the-orchid-theme" diff --git a/themes/the-orchid-light.yaml b/themes/the-orchid-light.yaml index 01cfb20e..4ae9930e 100644 --- a/themes/the-orchid-light.yaml +++ b/themes/the-orchid-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "403forbidden.the-orchid-theme" version: "1.1.8" installs: 183 + rating: 5 + ratings: 1 author: "403 Forbidden" repo: "https://github.com/mario-garcia-dev/the-orchid-theme" url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.the-orchid-theme" diff --git a/themes/the-orchid-soft.yaml b/themes/the-orchid-soft.yaml index 6890a2ce..e782a9eb 100644 --- a/themes/the-orchid-soft.yaml +++ b/themes/the-orchid-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "403forbidden.the-orchid-theme" version: "1.1.8" installs: 183 + rating: 5 + ratings: 1 author: "403 Forbidden" repo: "https://github.com/mario-garcia-dev/the-orchid-theme" url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.the-orchid-theme" diff --git a/themes/the-theme.yaml b/themes/the-theme.yaml index 967427aa..81ea772e 100644 --- a/themes/the-theme.yaml +++ b/themes/the-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mazhugasergei.the-theme" version: "0.0.4" installs: 9 + rating: 0 + ratings: 0 author: "mazhugasergei" repo: "https://github.com/mazhugasergei/the-theme" url: "https://marketplace.visualstudio.com/items?itemName=mazhugasergei.the-theme" diff --git a/themes/theaisphere-dark.yaml b/themes/theaisphere-dark.yaml index 568401d9..c6835836 100644 --- a/themes/theaisphere-dark.yaml +++ b/themes/theaisphere-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "theAIsphere.theaisphere" version: "0.1.0" installs: 53 + rating: 0 + ratings: 0 author: "theAIsphere" repo: "https://github.com/admin-theaisphere/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=theAIsphere.theaisphere" diff --git a/themes/theaisphere-light.yaml b/themes/theaisphere-light.yaml index 2deb7fee..fd4be009 100644 --- a/themes/theaisphere-light.yaml +++ b/themes/theaisphere-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "theAIsphere.theaisphere" version: "0.1.0" installs: 53 + rating: 0 + ratings: 0 author: "theAIsphere" repo: "https://github.com/admin-theaisphere/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=theAIsphere.theaisphere" diff --git a/themes/thebear-dark.yaml b/themes/thebear-dark.yaml new file mode 100644 index 00000000..aa9e32fb --- /dev/null +++ b/themes/thebear-dark.yaml @@ -0,0 +1,52 @@ +name: "TheBear-Dark" +source: + marketplace_id: "MemoTheme.the-bear" + version: "1.0.5" + installs: 60 + rating: 5 + ratings: 1 + author: "The Bear Theme" + repo: "https://github.com/mhmetglrq/memo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MemoTheme.the-bear" +colors: + bg: "#101012" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 107.4 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/thecodedoctor.yaml b/themes/thecodedoctor.yaml new file mode 100644 index 00000000..b1497acc --- /dev/null +++ b/themes/thecodedoctor.yaml @@ -0,0 +1,52 @@ +name: "TheCodeDoctor" +source: + marketplace_id: "TheCodeDoctor.thecodedoctor" + version: "0.0.0" + installs: 295 + rating: 5 + ratings: 1 + author: "The Code Doctor" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TheCodeDoctor.thecodedoctor" +colors: + bg: "#2D2D2D" + fg: "#FFFFFF" + black: "#9F9F9F" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 103.4 + black: 45.9 + red: 23.3 + green: 49.6 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.6 + brightMagenta: 41.9 + brightCyan: 52 + brightWhite: 86.6 diff --git a/themes/thedarkerone.yaml b/themes/thedarkerone.yaml index 51b57d62..d7af34c3 100644 --- a/themes/thedarkerone.yaml +++ b/themes/thedarkerone.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ozguncagri.thedarkerone" version: "0.0.4" installs: 335 + rating: 0 + ratings: 0 author: "Özgün Çağrı AYDIN" repo: "https://github.com/ozguncagri/TheDarkerOne" url: "https://marketplace.visualstudio.com/items?itemName=ozguncagri.thedarkerone" diff --git a/themes/themarro-dark-contrast.yaml b/themes/themarro-dark-contrast.yaml index a7563126..4963dbe2 100644 --- a/themes/themarro-dark-contrast.yaml +++ b/themes/themarro-dark-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aelmessaarab.themarro" version: "0.1.2" installs: 10032 + rating: 5 + ratings: 2 author: "aelmessaarab" repo: "https://github.com/adamthecro/Themarro" url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" diff --git a/themes/themarro-david-remix.yaml b/themes/themarro-david-remix.yaml index 97ed7fab..63159549 100644 --- a/themes/themarro-david-remix.yaml +++ b/themes/themarro-david-remix.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aelmessaarab.themarro" version: "0.1.2" installs: 10032 + rating: 5 + ratings: 2 author: "aelmessaarab" repo: "https://github.com/adamthecro/Themarro" url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" diff --git a/themes/themarro.yaml b/themes/themarro.yaml index 0da38cd4..750faabf 100644 --- a/themes/themarro.yaml +++ b/themes/themarro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aelmessaarab.themarro" version: "0.1.2" installs: 10032 + rating: 5 + ratings: 2 author: "aelmessaarab" repo: "https://github.com/adamthecro/Themarro" url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" diff --git a/themes/theme-bear.yaml b/themes/theme-bear.yaml index 227c7d13..2767596b 100644 --- a/themes/theme-bear.yaml +++ b/themes/theme-bear.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hassanoof93.RozaaaDodooo-1446" version: "2.0.1" installs: 110 + rating: 0 + ratings: 0 author: "hassanoof93" repo: "https://github.com/hassanmostafaibrahim11/Fayrouz" url: "https://marketplace.visualstudio.com/items?itemName=hassanoof93.RozaaaDodooo-1446" diff --git a/themes/theme-dark.yaml b/themes/theme-dark.yaml index 33c7b206..7806f197 100644 --- a/themes/theme-dark.yaml +++ b/themes/theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "StevenJborik.colorado-theme" version: "0.0.15" installs: 84 + rating: 5 + ratings: 1 author: "StevenJBorik" repo: "https://github.com/StevenJBorik/colorado-theme" url: "https://marketplace.visualstudio.com/items?itemName=StevenJborik.colorado-theme" diff --git a/themes/theme-for-codes-dark.yaml b/themes/theme-for-codes-dark.yaml index 3d44f49e..53ae30f0 100644 --- a/themes/theme-for-codes-dark.yaml +++ b/themes/theme-for-codes-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "veduishu1257.code-with-colors-pro" version: "2.3.0" installs: 18 + rating: 5 + ratings: 1 author: "veduishu" repo: "https://github.com/vishal-s-reddy/code-with-colors" url: "https://marketplace.visualstudio.com/items?itemName=veduishu1257.code-with-colors-pro" diff --git a/themes/theme-for-codes-light.yaml b/themes/theme-for-codes-light.yaml index 2f7045c2..38d781f3 100644 --- a/themes/theme-for-codes-light.yaml +++ b/themes/theme-for-codes-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "veduishu1257.code-with-colors-pro" version: "2.3.0" installs: 18 + rating: 5 + ratings: 1 author: "veduishu" repo: "https://github.com/vishal-s-reddy/code-with-colors" url: "https://marketplace.visualstudio.com/items?itemName=veduishu1257.code-with-colors-pro" diff --git a/themes/theme-joey.yaml b/themes/theme-joey.yaml index 9234eebc..cafba28f 100644 --- a/themes/theme-joey.yaml +++ b/themes/theme-joey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xshapira.joey-theme" version: "3.3.8" installs: 1136 + rating: 5 + ratings: 7 author: "xshapira" repo: "https://github.com/xshapira/joey" url: "https://marketplace.visualstudio.com/items?itemName=xshapira.joey-theme" diff --git a/themes/theme-mk-black.yaml b/themes/theme-mk-black.yaml new file mode 100644 index 00000000..03d0663e --- /dev/null +++ b/themes/theme-mk-black.yaml @@ -0,0 +1,52 @@ +name: "theme-mk black" +source: + marketplace_id: "dev-mk02.theme-mk" + version: "0.6.0" + installs: 36 + rating: 0 + ratings: 0 + author: "mk-02" + repo: "https://github.com/leeminki02/theme-mk" + url: "https://marketplace.visualstudio.com/items?itemName=dev-mk02.theme-mk" +colors: + bg: "#1A1B1E" + fg: "#CDCECE" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 75.3 + black: 0 + red: 43.6 + green: 69.6 + yellow: 66.1 + blue: 60.1 + magenta: 60.2 + cyan: 77.4 + white: 71.2 + brightBlack: 22.4 + brightRed: 46.1 + brightGreen: 72.9 + brightYellow: 69.1 + brightBlue: 62.9 + brightMagenta: 62.9 + brightCyan: 80.4 + brightWhite: 106.4 diff --git a/themes/theme-mk-rebuilt.yaml b/themes/theme-mk-rebuilt.yaml index ccd836d4..f69781d8 100644 --- a/themes/theme-mk-rebuilt.yaml +++ b/themes/theme-mk-rebuilt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dev-mk02.theme-mk" version: "0.6.0" installs: 36 + rating: 0 + ratings: 0 author: "mk-02" repo: "https://github.com/leeminki02/theme-mk" url: "https://marketplace.visualstudio.com/items?itemName=dev-mk02.theme-mk" diff --git a/themes/theme-nickel.yaml b/themes/theme-nickel.yaml index 76cdc996..f18d492a 100644 --- a/themes/theme-nickel.yaml +++ b/themes/theme-nickel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nickel-dev.theme-nickel" version: "0.1.2" installs: 490 + rating: 5 + ratings: 1 author: "Daniel Nickel" repo: "https://github.com/nickel-dev/theme-nickel" url: "https://marketplace.visualstudio.com/items?itemName=nickel-dev.theme-nickel" diff --git a/themes/theme-one.yaml b/themes/theme-one.yaml index 03d850c8..b415a68d 100644 --- a/themes/theme-one.yaml +++ b/themes/theme-one.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ThemeOne.themeone" version: "1.0.3" installs: 51 + rating: 4 + ratings: 1 author: "Theme One" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ThemeOne.themeone" diff --git a/themes/theme-stick-green-dark.yaml b/themes/theme-stick-green-dark.yaml index 50e59279..b49bbad3 100644 --- a/themes/theme-stick-green-dark.yaml +++ b/themes/theme-stick-green-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sankalpkumar.theme-strict-dark" version: "0.2.0" installs: 2220 + rating: 0 + ratings: 0 author: "sankalp kumar" repo: "https://github.com/sankalp475/Theme_stick_dark" url: "https://marketplace.visualstudio.com/items?itemName=sankalpkumar.theme-strict-dark" diff --git a/themes/theme-y-random.yaml b/themes/theme-y-random.yaml index 5fa3c017..c2c94692 100644 --- a/themes/theme-y-random.yaml +++ b/themes/theme-y-random.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Yisus-Code.theme-y-random" version: "0.0.1" installs: 243 + rating: 5 + ratings: 1 author: "Yisus-Code" repo: "https://github.com/JesusAIV/Theme-Y-Random" url: "https://marketplace.visualstudio.com/items?itemName=Yisus-Code.theme-y-random" diff --git a/themes/theme.yaml b/themes/theme.yaml index 8792cb19..7e8bd976 100644 --- a/themes/theme.yaml +++ b/themes/theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lioa.themeol" version: "0.0.1" installs: 14 + rating: 0 + ratings: 0 author: "lioa" repo: null url: "https://marketplace.visualstudio.com/items?itemName=lioa.themeol" diff --git a/themes/theme1.yaml b/themes/theme1.yaml new file mode 100644 index 00000000..b55333c0 --- /dev/null +++ b/themes/theme1.yaml @@ -0,0 +1,52 @@ +name: "Theme1" +source: + marketplace_id: "TylerRice.tk-rice-theme-one" + version: "1.0.5" + installs: 474 + rating: 0 + ratings: 0 + author: "TylerRice" + repo: "https://github.com/tk-rice/themeone" + url: "https://marketplace.visualstudio.com/items?itemName=TylerRice.tk-rice-theme-one" +colors: + bg: "#111111" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.4 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/themedarker.yaml b/themes/themedarker.yaml index d3f9af41..71f13378 100644 --- a/themes/themedarker.yaml +++ b/themes/themedarker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tal7aouy.theme" version: "3.1.0" installs: 1510543 + rating: 4.76 + ratings: 34 author: "Mhammed Talhaouy" repo: "https://github.com/tal7aouy/theme" url: "https://marketplace.visualstudio.com/items?itemName=tal7aouy.theme" diff --git a/themes/themeframek.yaml b/themes/themeframek.yaml index 89dcdfbc..1d1e5657 100644 --- a/themes/themeframek.yaml +++ b/themes/themeframek.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.themeframek" version: "0.0.3" installs: 1 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/y3mm/ThemeFramework" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.themeframek" diff --git a/themes/themegreen.yaml b/themes/themegreen.yaml index 2c40e878..6c383b4c 100644 --- a/themes/themegreen.yaml +++ b/themes/themegreen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tiantianli007.tian-green" version: "0.0.1" installs: 192 + rating: 0 + ratings: 0 author: "tiantian" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tiantianli007.tian-green" diff --git a/themes/themello.yaml b/themes/themello.yaml new file mode 100644 index 00000000..ba4612a4 --- /dev/null +++ b/themes/themello.yaml @@ -0,0 +1,50 @@ +name: "Themello" +source: + marketplace_id: "RichardWagnerFeliciano.themello" + version: "0.0.1" + installs: 67 + author: "RichardWagnerFeliciano" + repo: "https://github.com/richardfeliciano/themello" + url: "https://marketplace.visualstudio.com/items?itemName=RichardWagnerFeliciano.themello" +colors: + bg: "#131313" + fg: "#C7C7C7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 72.1 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/thememix.yaml b/themes/thememix.yaml new file mode 100644 index 00000000..d0719519 --- /dev/null +++ b/themes/thememix.yaml @@ -0,0 +1,52 @@ +name: "ThemeMix" +source: + marketplace_id: "tal7aouy.theme" + version: "3.1.0" + installs: 1510543 + rating: 4.76 + ratings: 34 + author: "Mhammed Talhaouy" + repo: "https://github.com/tal7aouy/theme" + url: "https://marketplace.visualstudio.com/items?itemName=tal7aouy.theme" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 33.5 + green: 57.2 + yellow: 45.4 + blue: 46.5 + magenta: 35.9 + cyan: 49.3 + white: 79.8 + brightBlack: 12.3 + brightRed: 42.9 + brightGreen: 73.6 + brightYellow: 58 + brightBlue: 60.5 + brightMagenta: 47.1 + brightCyan: 64.6 + brightWhite: 87.4 diff --git a/themes/themename.yaml b/themes/themename.yaml index 83ef5dbb..f11e5193 100644 --- a/themes/themename.yaml +++ b/themes/themename.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "carljkempe.night-milk" version: "0.1.0" installs: 1156 + rating: 0 + ratings: 0 author: "carljkempe" repo: "https://github.com/carljkempe/night-milk-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=carljkempe.night-milk" diff --git a/themes/themeo.yaml b/themes/themeo.yaml index 2845f59c..bcc63c87 100644 --- a/themes/themeo.yaml +++ b/themes/themeo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "th7mo.theme-o" version: "1.1.10" installs: 299 + rating: 0 + ratings: 0 author: "th7mo" repo: "https://github.com/th7mo/intellij-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=th7mo.theme-o" diff --git a/themes/themepurple.yaml b/themes/themepurple.yaml index c1978605..cfab50e0 100644 --- a/themes/themepurple.yaml +++ b/themes/themepurple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KelsonCarvalho.roxotema" version: "2.0.0" installs: 1039 + rating: 0 + ratings: 0 author: "Kelson Carvalho" repo: "https://github.com/NoslekCode/VsCode_Tema_Roxo_Dark" url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.roxotema" diff --git a/themes/themer-dark.yaml b/themes/themer-dark.yaml index fff73028..d41f785f 100644 --- a/themes/themer-dark.yaml +++ b/themes/themer-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sansbrina.poolside" version: "0.0.1" installs: 370 + rating: 0 + ratings: 0 author: "sansbrina" repo: "https://github.com/sansbrina/poolside-themes" url: "https://marketplace.visualstudio.com/items?itemName=sansbrina.poolside" diff --git a/themes/themer-light.yaml b/themes/themer-light.yaml index 1dd8fc5e..877c74e4 100644 --- a/themes/themer-light.yaml +++ b/themes/themer-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JoshBurnsXYZ.joshburnsxyz-vscode" version: "2.3.3" installs: 428 + rating: 0 + ratings: 0 author: "Josh Burns" repo: "https://github.com/joshburnsxyz/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JoshBurnsXYZ.joshburnsxyz-vscode" diff --git a/themes/themin-mint.yaml b/themes/themin-mint.yaml index 65d788b8..904aab81 100644 --- a/themes/themin-mint.yaml +++ b/themes/themin-mint.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Homerotto.themin" version: "3.0.1" installs: 2230 + rating: 5 + ratings: 1 author: "Homerotto" repo: "https://github.com/FredMSJ/themin" url: "https://marketplace.visualstudio.com/items?itemName=Homerotto.themin" diff --git a/themes/thepurple.yaml b/themes/thepurple.yaml new file mode 100644 index 00000000..3ed0a3b7 --- /dev/null +++ b/themes/thepurple.yaml @@ -0,0 +1,52 @@ +name: "thePurple" +source: + marketplace_id: "nacl117.ThePurple" + version: "0.0.1" + installs: 61 + rating: 0 + ratings: 0 + author: "nacl" + repo: "https://github.com/AnaXP/thePurple" + url: "https://marketplace.visualstudio.com/items?itemName=nacl117.ThePurple" +colors: + bg: "#0F0F0F" + fg: "#C0C0C0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#155092" + magenta: "#BC3FBC" + cyan: "#0DA2C7" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 68.2 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 14.2 + magenta: 30.4 + cyan: 45.4 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/theta.yaml b/themes/theta.yaml index d8f8bc27..9dba9685 100644 --- a/themes/theta.yaml +++ b/themes/theta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slepe.topl-theme" version: "1.0.1" installs: 824 + rating: 0 + ratings: 0 author: "Slepe" repo: "https://github.com/slepe/topl-theme" url: "https://marketplace.visualstudio.com/items?itemName=slepe.topl-theme" diff --git a/themes/thinkstorm.yaml b/themes/thinkstorm.yaml index cb134f71..8ce9dc08 100644 --- a/themes/thinkstorm.yaml +++ b/themes/thinkstorm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Patczatowicz.thinkstorm" version: "0.0.1" installs: 149 + rating: 5 + ratings: 1 author: "Patczatowicz" repo: "https://github.com/AlfaaMangovskyy/thinkstorm" url: "https://marketplace.visualstudio.com/items?itemName=Patczatowicz.thinkstorm" diff --git a/themes/thore-blue.yaml b/themes/thore-blue.yaml index 6c569bac..f003f573 100644 --- a/themes/thore-blue.yaml +++ b/themes/thore-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MarcWebDev.thore-blue" version: "1.0.2" installs: 961 + rating: 5 + ratings: 2 author: "MarcWebDev" repo: "https://github.com/MarcWebDev/thore-blue" url: "https://marketplace.visualstudio.com/items?itemName=MarcWebDev.thore-blue" diff --git a/themes/thorn.yaml b/themes/thorn.yaml index 93e8372f..3b3c3138 100644 --- a/themes/thorn.yaml +++ b/themes/thorn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "synapse42.thorn-variant" version: "0.1.1" installs: 11 + rating: 0 + ratings: 0 author: "synapse_42" repo: "https://github.com/jpwol/thorn-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=synapse42.thorn-variant" diff --git a/themes/thoughtworks-style-theme.yaml b/themes/thoughtworks-style-theme.yaml index 1c6639a2..18f2e807 100644 --- a/themes/thoughtworks-style-theme.yaml +++ b/themes/thoughtworks-style-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guzhongren.thoughtworks-styled-theme" version: "1.0.2" installs: 40 + rating: 5 + ratings: 1 author: "guzhongren" repo: "https://github.com/guzhongren/thoughtworks-styled-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=guzhongren.thoughtworks-styled-theme" diff --git a/themes/thra.yaml b/themes/thra.yaml index 40f3e02a..85bd5996 100644 --- a/themes/thra.yaml +++ b/themes/thra.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "whatsadelane.thra" version: "0.11.0" installs: 718 + rating: 0 + ratings: 0 author: "whatsadelane" repo: null url: "https://marketplace.visualstudio.com/items?itemName=whatsadelane.thra" diff --git a/themes/threedark.yaml b/themes/threedark.yaml index 9c2b8d47..3d16cda2 100644 --- a/themes/threedark.yaml +++ b/themes/threedark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "theegamesVSMarketPlace.threedark" version: "0.0.5" installs: 323 + rating: 0 + ratings: 0 author: "3ee Games" repo: "https://github.com/3ee-Games/three-dark" url: "https://marketplace.visualstudio.com/items?itemName=theegamesVSMarketPlace.threedark" diff --git a/themes/thunder-focus.yaml b/themes/thunder-focus.yaml index f5ca964a..329e4a8b 100644 --- a/themes/thunder-focus.yaml +++ b/themes/thunder-focus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "REPTaiLE.thunder-focus" version: "0.0.3" installs: 394 + rating: 0 + ratings: 0 author: "Francisco González Ferrada" repo: "https://github.com/REPTaiLE/Thunder-Focus" url: "https://marketplace.visualstudio.com/items?itemName=REPTaiLE.thunder-focus" diff --git a/themes/thunder-remains-unseen.yaml b/themes/thunder-remains-unseen.yaml index 463b4a7f..091e98e7 100644 --- a/themes/thunder-remains-unseen.yaml +++ b/themes/thunder-remains-unseen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anser-fabalis-serrirostris.thunder-remains-unseen" version: "1.0.0" installs: 15 + rating: 0 + ratings: 0 author: "Hishikui" repo: "https://github.com/Hishikui/vsc-theme-thunder-remains-unseen" url: "https://marketplace.visualstudio.com/items?itemName=anser-fabalis-serrirostris.thunder-remains-unseen" diff --git a/themes/thxdude-theme.yaml b/themes/thxdude-theme.yaml index 400c2482..6e8c8de1 100644 --- a/themes/thxdude-theme.yaml +++ b/themes/thxdude-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PABlond.thxdude-theme" version: "0.0.1" installs: 41 + rating: 0 + ratings: 0 author: "PABlond" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PABlond.thxdude-theme" diff --git a/themes/thyme21g.yaml b/themes/thyme21g.yaml index dfeb13d1..6c4bac83 100644 --- a/themes/thyme21g.yaml +++ b/themes/thyme21g.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RohithRotdgrr.thyme21g-theme" version: "0.0.1" installs: 35 + rating: 0 + ratings: 0 author: "Rohith_Rot_dgrr" repo: "https://github.com/Rohithdgrr/thyme21g-theme" url: "https://marketplace.visualstudio.com/items?itemName=RohithRotdgrr.thyme21g-theme" diff --git a/themes/thynaptic-dark-base.yaml b/themes/thynaptic-dark-base.yaml index 733f3239..ec263e60 100644 --- a/themes/thynaptic-dark-base.yaml +++ b/themes/thynaptic-dark-base.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Thynaptic.thynaptic-color-themes" version: "0.4.0" installs: 26 + rating: 0 + ratings: 0 author: "Thynaptic" repo: "https://github.com/cassianwolfe/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" diff --git a/themes/thynaptic-dim-base.yaml b/themes/thynaptic-dim-base.yaml index 3b16da95..ab64bfee 100644 --- a/themes/thynaptic-dim-base.yaml +++ b/themes/thynaptic-dim-base.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Thynaptic.thynaptic-color-themes" version: "0.4.0" installs: 26 + rating: 0 + ratings: 0 author: "Thynaptic" repo: "https://github.com/cassianwolfe/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" diff --git a/themes/thynaptic-pro.yaml b/themes/thynaptic-pro.yaml index ba065e47..37782f5d 100644 --- a/themes/thynaptic-pro.yaml +++ b/themes/thynaptic-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Thynaptic.thynaptic-color-themes" version: "0.4.0" installs: 26 + rating: 0 + ratings: 0 author: "Thynaptic" repo: "https://github.com/cassianwolfe/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" diff --git a/themes/thynaptic-sand-base.yaml b/themes/thynaptic-sand-base.yaml index 54e32cd8..aef617a9 100644 --- a/themes/thynaptic-sand-base.yaml +++ b/themes/thynaptic-sand-base.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Thynaptic.thynaptic-color-themes" version: "0.4.0" installs: 26 + rating: 0 + ratings: 0 author: "Thynaptic" repo: "https://github.com/cassianwolfe/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" diff --git a/themes/thynaptic-sand-dark.yaml b/themes/thynaptic-sand-dark.yaml index ab62cb92..8426bea8 100644 --- a/themes/thynaptic-sand-dark.yaml +++ b/themes/thynaptic-sand-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Thynaptic.thynaptic-color-themes" version: "0.4.0" installs: 26 + rating: 0 + ratings: 0 author: "Thynaptic" repo: "https://github.com/cassianwolfe/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" diff --git a/themes/tickle-contrast.yaml b/themes/tickle-contrast.yaml index 19991c01..0a61985a 100644 --- a/themes/tickle-contrast.yaml +++ b/themes/tickle-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tickle-light.yaml b/themes/tickle-light.yaml index ce9c503e..8c622603 100644 --- a/themes/tickle-light.yaml +++ b/themes/tickle-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tickle-refresh.yaml b/themes/tickle-refresh.yaml index 5ba77acd..f5bb06c4 100644 --- a/themes/tickle-refresh.yaml +++ b/themes/tickle-refresh.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jetpackguy.tangerine" version: "0.1.2" installs: 2608 + rating: 5 + ratings: 2 author: "jetpackguy" repo: "https://github.com/jetpackguy/tangerine-theme" url: "https://marketplace.visualstudio.com/items?itemName=jetpackguy.tangerine" diff --git a/themes/tickle.yaml b/themes/tickle.yaml index 8f4ad73a..13ac10a9 100644 --- a/themes/tickle.yaml +++ b/themes/tickle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tidelight-contrast-light.yaml b/themes/tidelight-contrast-light.yaml index c4087756..a496af51 100644 --- a/themes/tidelight-contrast-light.yaml +++ b/themes/tidelight-contrast-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slow-clap-software.tidelight-theme" version: "0.0.5" installs: 14 + rating: 0 + ratings: 0 author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" diff --git a/themes/tidelight-contrast.yaml b/themes/tidelight-contrast.yaml index d01c80fc..179df413 100644 --- a/themes/tidelight-contrast.yaml +++ b/themes/tidelight-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slow-clap-software.tidelight-theme" version: "0.0.5" installs: 14 + rating: 0 + ratings: 0 author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" diff --git a/themes/tidelight-dawn.yaml b/themes/tidelight-dawn.yaml index 522e82ff..ac475528 100644 --- a/themes/tidelight-dawn.yaml +++ b/themes/tidelight-dawn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slow-clap-software.tidelight-theme" version: "0.0.5" installs: 14 + rating: 0 + ratings: 0 author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" diff --git a/themes/tidelight-daybreak.yaml b/themes/tidelight-daybreak.yaml index 9f50c6b3..87f43d9d 100644 --- a/themes/tidelight-daybreak.yaml +++ b/themes/tidelight-daybreak.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slow-clap-software.tidelight-theme" version: "0.0.5" installs: 14 + rating: 0 + ratings: 0 author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" diff --git a/themes/tidelight-deep.yaml b/themes/tidelight-deep.yaml index b8bc3275..92824ec4 100644 --- a/themes/tidelight-deep.yaml +++ b/themes/tidelight-deep.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slow-clap-software.tidelight-theme" version: "0.0.5" installs: 14 + rating: 0 + ratings: 0 author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" diff --git a/themes/tidelight-dusk.yaml b/themes/tidelight-dusk.yaml index b0d7b558..dbc65864 100644 --- a/themes/tidelight-dusk.yaml +++ b/themes/tidelight-dusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slow-clap-software.tidelight-theme" version: "0.0.5" installs: 14 + rating: 0 + ratings: 0 author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" diff --git a/themes/tidelight-fog.yaml b/themes/tidelight-fog.yaml index bdc9f763..c3dec94a 100644 --- a/themes/tidelight-fog.yaml +++ b/themes/tidelight-fog.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slow-clap-software.tidelight-theme" version: "0.0.5" installs: 14 + rating: 0 + ratings: 0 author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" diff --git a/themes/tidelight-high-noon.yaml b/themes/tidelight-high-noon.yaml index 2a4709ef..26741b05 100644 --- a/themes/tidelight-high-noon.yaml +++ b/themes/tidelight-high-noon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slow-clap-software.tidelight-theme" version: "0.0.5" installs: 14 + rating: 0 + ratings: 0 author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" diff --git a/themes/tidelight-midnight.yaml b/themes/tidelight-midnight.yaml index 979a43a4..055558bb 100644 --- a/themes/tidelight-midnight.yaml +++ b/themes/tidelight-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slow-clap-software.tidelight-theme" version: "0.0.5" installs: 14 + rating: 0 + ratings: 0 author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" diff --git a/themes/tidelight-shore.yaml b/themes/tidelight-shore.yaml index d61b6dc4..272ebbe4 100644 --- a/themes/tidelight-shore.yaml +++ b/themes/tidelight-shore.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "slow-clap-software.tidelight-theme" version: "0.0.5" installs: 14 + rating: 0 + ratings: 0 author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" diff --git a/themes/tiktok.yaml b/themes/tiktok.yaml index bc98e791..a040570a 100644 --- a/themes/tiktok.yaml +++ b/themes/tiktok.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Volskaya.irrelevant" version: "0.0.2" installs: 33 + rating: 0 + ratings: 0 author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" diff --git a/themes/tim-s-experiments-dark.yaml b/themes/tim-s-experiments-dark.yaml index d0d39abf..9d1afa76 100644 --- a/themes/tim-s-experiments-dark.yaml +++ b/themes/tim-s-experiments-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TimsExperiments.timsexperiments-theme" version: "0.0.1" installs: 43 + rating: 5 + ratings: 1 author: "Tim's Experiments" repo: "https://github.com/timsexperiments/timsexperiments-theme" url: "https://marketplace.visualstudio.com/items?itemName=TimsExperiments.timsexperiments-theme" diff --git a/themes/timir.yaml b/themes/timir.yaml index 3135139e..37d996e1 100644 --- a/themes/timir.yaml +++ b/themes/timir.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ShubhamThorat.Timir" version: "2.6.1" installs: 192 + rating: 5 + ratings: 2 author: "Shubham Thorat" repo: "https://github.com/Biotechnologyguy/Timir-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=ShubhamThorat.Timir" diff --git a/themes/timu-macos-dark-theme.yaml b/themes/timu-macos-dark-theme.yaml index 7fa52927..e8137b8c 100644 --- a/themes/timu-macos-dark-theme.yaml +++ b/themes/timu-macos-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aimebertrand.timu-macos-vscode" version: "1.0.4" installs: 2481 + rating: 0 + ratings: 0 author: "Aimé Bertrand" repo: "https://gitlab.com/aimebertrand/timu-macos-vscode" url: "https://marketplace.visualstudio.com/items?itemName=aimebertrand.timu-macos-vscode" diff --git a/themes/timu-macos-light-theme.yaml b/themes/timu-macos-light-theme.yaml index 2f193cf3..166ddf9e 100644 --- a/themes/timu-macos-light-theme.yaml +++ b/themes/timu-macos-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aimebertrand.timu-macos-vscode" version: "1.0.4" installs: 2481 + rating: 0 + ratings: 0 author: "Aimé Bertrand" repo: "https://gitlab.com/aimebertrand/timu-macos-vscode" url: "https://marketplace.visualstudio.com/items?itemName=aimebertrand.timu-macos-vscode" diff --git a/themes/timu-spacegrey-theme.yaml b/themes/timu-spacegrey-theme.yaml index 3633070d..1ee1d565 100644 --- a/themes/timu-spacegrey-theme.yaml +++ b/themes/timu-spacegrey-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aimebertrand.timu-spacegrey-vscode" version: "1.2.1" installs: 1089 + rating: 5 + ratings: 1 author: "Aimé Bertrand" repo: "https://gitlab.com/aimebertrand/timu-spacegrey-vscode" url: "https://marketplace.visualstudio.com/items?itemName=aimebertrand.timu-spacegrey-vscode" diff --git a/themes/tinacious-design-syntax.yaml b/themes/tinacious-design-syntax.yaml index bb0e8cf3..265b7051 100644 --- a/themes/tinacious-design-syntax.yaml +++ b/themes/tinacious-design-syntax.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Prabodhan.blush" version: "2.0.2" installs: 1076 + rating: 5 + ratings: 1 author: "Prabodhan" repo: "https://github.com/Prabodhan29/vscode-theme-blush" url: "https://marketplace.visualstudio.com/items?itemName=Prabodhan.blush" diff --git a/themes/tiniri-dark.yaml b/themes/tiniri-dark.yaml index fb649b28..c4d0ea66 100644 --- a/themes/tiniri-dark.yaml +++ b/themes/tiniri-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vladstudio.vlad-studio-tiniri" version: "0.0.73" installs: 1915 + rating: 5 + ratings: 3 author: "Vlad.studio" repo: "https://github.com/vladstudio/tiniri-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=vladstudio.vlad-studio-tiniri" diff --git a/themes/tiniri-light.yaml b/themes/tiniri-light.yaml index 0395199b..9cc46875 100644 --- a/themes/tiniri-light.yaml +++ b/themes/tiniri-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vladstudio.vlad-studio-tiniri" version: "0.0.73" installs: 1915 + rating: 5 + ratings: 3 author: "Vlad.studio" repo: "https://github.com/vladstudio/tiniri-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=vladstudio.vlad-studio-tiniri" diff --git a/themes/tiny-light.yaml b/themes/tiny-light.yaml index 28af2491..06a57e70 100644 --- a/themes/tiny-light.yaml +++ b/themes/tiny-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zhiqiangx.xeon-light" version: "0.0.2" installs: 2787 + rating: 5 + ratings: 1 author: "zhiqiangx" repo: "https://github.com/zhiqiangx/tinylight-vscode" url: "https://marketplace.visualstudio.com/items?itemName=zhiqiangx.xeon-light" diff --git a/themes/titillating-midnight.yaml b/themes/titillating-midnight.yaml index e53a7cb0..b4255463 100644 --- a/themes/titillating-midnight.yaml +++ b/themes/titillating-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.relentless" version: "0.17.0" installs: 1115 + rating: 5 + ratings: 1 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/relentless" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.relentless" diff --git a/themes/titillating-sunset.yaml b/themes/titillating-sunset.yaml index 0a73ef60..174c216e 100644 --- a/themes/titillating-sunset.yaml +++ b/themes/titillating-sunset.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wicked-labs.relentless" version: "0.17.0" installs: 1115 + rating: 5 + ratings: 1 author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/relentless" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.relentless" diff --git a/themes/tlapalli-00-obsidian.yaml b/themes/tlapalli-00-obsidian.yaml index 283ebce4..8e15aaff 100644 --- a/themes/tlapalli-00-obsidian.yaml +++ b/themes/tlapalli-00-obsidian.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-01-gold.yaml b/themes/tlapalli-01-gold.yaml index a7fe2461..165b32c6 100644 --- a/themes/tlapalli-01-gold.yaml +++ b/themes/tlapalli-01-gold.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-02-turquoise.yaml b/themes/tlapalli-02-turquoise.yaml index 14765304..aaea34c6 100644 --- a/themes/tlapalli-02-turquoise.yaml +++ b/themes/tlapalli-02-turquoise.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-03-quartz.yaml b/themes/tlapalli-03-quartz.yaml index 7aae2ac1..cb55ac0f 100644 --- a/themes/tlapalli-03-quartz.yaml +++ b/themes/tlapalli-03-quartz.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-04-lapis-lazuli.yaml b/themes/tlapalli-04-lapis-lazuli.yaml index e81e289d..de592194 100644 --- a/themes/tlapalli-04-lapis-lazuli.yaml +++ b/themes/tlapalli-04-lapis-lazuli.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-05-amethyst.yaml b/themes/tlapalli-05-amethyst.yaml index 86d675bb..5537b2e4 100644 --- a/themes/tlapalli-05-amethyst.yaml +++ b/themes/tlapalli-05-amethyst.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-06-jade.yaml b/themes/tlapalli-06-jade.yaml index 4ca550cf..97c17233 100644 --- a/themes/tlapalli-06-jade.yaml +++ b/themes/tlapalli-06-jade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-07-fire-opal.yaml b/themes/tlapalli-07-fire-opal.yaml index 96624724..4db36271 100644 --- a/themes/tlapalli-07-fire-opal.yaml +++ b/themes/tlapalli-07-fire-opal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-l-00-obsidian-light.yaml b/themes/tlapalli-l-00-obsidian-light.yaml index 71e01252..70e34e7d 100644 --- a/themes/tlapalli-l-00-obsidian-light.yaml +++ b/themes/tlapalli-l-00-obsidian-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-l-01-gold-light.yaml b/themes/tlapalli-l-01-gold-light.yaml index 53bbf42a..e58eb243 100644 --- a/themes/tlapalli-l-01-gold-light.yaml +++ b/themes/tlapalli-l-01-gold-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-l-02-turquoise-light.yaml b/themes/tlapalli-l-02-turquoise-light.yaml index 3b19ebac..096b2a2d 100644 --- a/themes/tlapalli-l-02-turquoise-light.yaml +++ b/themes/tlapalli-l-02-turquoise-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-l-03-quartz-light.yaml b/themes/tlapalli-l-03-quartz-light.yaml index 0df4d827..123ed8a6 100644 --- a/themes/tlapalli-l-03-quartz-light.yaml +++ b/themes/tlapalli-l-03-quartz-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-l-04-lapis-lazuli-light.yaml b/themes/tlapalli-l-04-lapis-lazuli-light.yaml index 2a48ddce..e03f9bc6 100644 --- a/themes/tlapalli-l-04-lapis-lazuli-light.yaml +++ b/themes/tlapalli-l-04-lapis-lazuli-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-l-05-amethyst-light.yaml b/themes/tlapalli-l-05-amethyst-light.yaml index 6c0d4b9f..2ad64196 100644 --- a/themes/tlapalli-l-05-amethyst-light.yaml +++ b/themes/tlapalli-l-05-amethyst-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-l-06-jade-light.yaml b/themes/tlapalli-l-06-jade-light.yaml index b90c5645..a1c940a4 100644 --- a/themes/tlapalli-l-06-jade-light.yaml +++ b/themes/tlapalli-l-06-jade-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tlapalli-l-07-fire-opal-light.yaml b/themes/tlapalli-l-07-fire-opal-light.yaml index 8520cade..7e83369e 100644 --- a/themes/tlapalli-l-07-fire-opal-light.yaml +++ b/themes/tlapalli-l-07-fire-opal-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ackzell.tlapalli" version: "0.2.2" installs: 33 + rating: 0 + ratings: 0 author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" diff --git a/themes/tm2rd3.yaml b/themes/tm2rd3.yaml index 57c24e4b..1d6b00da 100644 --- a/themes/tm2rd3.yaml +++ b/themes/tm2rd3.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rd-theme3.tm2-rd3" version: "0.0.1" installs: 50 + rating: 0 + ratings: 0 author: "rd-theme3" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rd-theme3.tm2-rd3" diff --git a/themes/tmnt-dark-theme.yaml b/themes/tmnt-dark-theme.yaml new file mode 100644 index 00000000..e9682903 --- /dev/null +++ b/themes/tmnt-dark-theme.yaml @@ -0,0 +1,52 @@ +name: "TMNT Dark Theme" +source: + marketplace_id: "adrincode.tmnt-theme" + version: "3.1.7" + installs: 115 + rating: 0 + ratings: 0 + author: "adrincode" + repo: "https://github.com/adrianns/adrincode-themes-tmnt" + url: "https://marketplace.visualstudio.com/items?itemName=adrincode.tmnt-theme" +colors: + bg: "#1E1E1E" + fg: "#F2F2F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 97.5 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/tnove-dark-theme.yaml b/themes/tnove-dark-theme.yaml index 35218a0c..23eb69d3 100644 --- a/themes/tnove-dark-theme.yaml +++ b/themes/tnove-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nafiulkabirbd.tnove-dark-theme" version: "1.0.0" installs: 251 + rating: 5 + ratings: 1 author: "Nafiul Kabir" repo: "https://github.com/nafiulkabirbd/tnove-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=nafiulkabirbd.tnove-dark-theme" diff --git a/themes/tobirama-water-style.yaml b/themes/tobirama-water-style.yaml index 4ee58af1..853c2b4a 100644 --- a/themes/tobirama-water-style.yaml +++ b/themes/tobirama-water-style.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" version: "1.0.0" installs: 434 + rating: 0 + ratings: 0 author: "Kushal Raj G S" repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" diff --git a/themes/todepond-theme.yaml b/themes/todepond-theme.yaml new file mode 100644 index 00000000..e8488726 --- /dev/null +++ b/themes/todepond-theme.yaml @@ -0,0 +1,52 @@ +name: "TodePond Theme" +source: + marketplace_id: "TodePond.TodePond-Theme" + version: "0.0.2" + installs: 132 + rating: 0 + ratings: 0 + author: "TodePond" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TodePond.TodePond-Theme" +colors: + bg: "#1F2736" + fg: "#FFCC00" + black: "#E0E0E0" + red: "#FF4646" + green: "#00FF80" + yellow: "#FFCC00" + blue: "#0080FF" + magenta: "#8080FF" + cyan: "#00FFFF" + white: "#E0E0E0" + brightBlack: "#5C6C8A" + brightRed: "#FF8000" + brightGreen: "#00FF80" + brightYellow: "#FFCC00" + brightBlue: "#0080FF" + brightMagenta: "#FF8080" + brightCyan: "#00FFFF" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "teal" + hue: 263 + pair: null + contrast: + fg: 76.3 + black: 84.6 + red: 38.7 + green: 84.3 + yellow: 76.3 + blue: 33.8 + magenta: 38.8 + cyan: 88.9 + white: 84.6 + brightBlack: 22.2 + brightRed: 50 + brightGreen: 84.3 + brightYellow: 76.3 + brightBlue: 33.8 + brightMagenta: 51.5 + brightCyan: 88.9 + brightWhite: 84.6 diff --git a/themes/tokito-inspired.yaml b/themes/tokito-inspired.yaml index 9b884cd8..e990357c 100644 --- a/themes/tokito-inspired.yaml +++ b/themes/tokito-inspired.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "devLocifer.hashira-code-theme" version: "0.0.1" installs: 739 + rating: 5 + ratings: 1 author: "devLocifer" repo: "https://github.com/diazdjul19/hashira-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" diff --git a/themes/tokv7.yaml b/themes/tokv7.yaml index 4c4a78e8..b33f877f 100644 --- a/themes/tokv7.yaml +++ b/themes/tokv7.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tok.tokv7" version: "0.0.1" installs: 33 + rating: 0 + ratings: 0 author: "tok" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tok.tokv7" diff --git a/themes/tokyo-dark.yaml b/themes/tokyo-dark.yaml new file mode 100644 index 00000000..e0b66905 --- /dev/null +++ b/themes/tokyo-dark.yaml @@ -0,0 +1,52 @@ +name: "Tokyo Dark" +source: + marketplace_id: "smnatale.tokyodark" + version: "1.0.4" + installs: 1954 + rating: 5 + ratings: 1 + author: "smnatale" + repo: "https://github.com/smnatale/tokyodark-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=smnatale.tokyodark" +colors: + bg: "#090B10" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 268 + pair: null + contrast: + fg: 60.7 + black: 0 + red: 50.7 + green: 73.6 + yellow: 63.6 + blue: 52.5 + magenta: 56.4 + cyan: 71.9 + white: 33.4 + brightBlack: 0 + brightRed: 50.7 + brightGreen: 73.6 + brightYellow: 63.6 + brightBlue: 52.5 + brightMagenta: 56.4 + brightCyan: 71.9 + brightWhite: 60.3 diff --git a/themes/tokyo-dive.yaml b/themes/tokyo-dive.yaml index 3ae4108d..0c027aa5 100644 --- a/themes/tokyo-dive.yaml +++ b/themes/tokyo-dive.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sukemoritech.tokyo-dive" version: "0.1.0" installs: 1146 + rating: 0 + ratings: 0 author: "sukemoritech" repo: "https://github.com/sukemoritech/tokyo-dive" url: "https://marketplace.visualstudio.com/items?itemName=sukemoritech.tokyo-dive" diff --git a/themes/tokyo-ghosts-dark.yaml b/themes/tokyo-ghosts-dark.yaml index ab100486..d730eb3e 100644 --- a/themes/tokyo-ghosts-dark.yaml +++ b/themes/tokyo-ghosts-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodeTime.tokyo-ghosts" version: "0.1.0" installs: 70 + rating: 0 + ratings: 0 author: "Code Time" repo: "https://github.com/afj176/tokyo-ghosts" url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.tokyo-ghosts" diff --git a/themes/tokyo-ghosts-light.yaml b/themes/tokyo-ghosts-light.yaml index 3885d6b3..476e37b3 100644 --- a/themes/tokyo-ghosts-light.yaml +++ b/themes/tokyo-ghosts-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodeTime.tokyo-ghosts" version: "0.1.0" installs: 70 + rating: 0 + ratings: 0 author: "Code Time" repo: "https://github.com/afj176/tokyo-ghosts" url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.tokyo-ghosts" diff --git a/themes/tokyo-gogh-alt.yaml b/themes/tokyo-gogh-alt.yaml index 1da01a27..7d9ba3d8 100644 --- a/themes/tokyo-gogh-alt.yaml +++ b/themes/tokyo-gogh-alt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.tokyo-night" version: "1.0.2" installs: 110968 + rating: 5 + ratings: 5 author: "Avetis" repo: "https://github.com/AvetisDN/tokyo-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.tokyo-night" diff --git a/themes/tokyo-gogh.yaml b/themes/tokyo-gogh.yaml index f2e820ff..33fedf73 100644 --- a/themes/tokyo-gogh.yaml +++ b/themes/tokyo-gogh.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.tokyo-night" version: "1.0.2" installs: 110968 + rating: 5 + ratings: 5 author: "Avetis" repo: "https://github.com/AvetisDN/tokyo-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.tokyo-night" diff --git a/themes/tokyo-light.yaml b/themes/tokyo-light.yaml index a3d93b37..336d67ec 100644 --- a/themes/tokyo-light.yaml +++ b/themes/tokyo-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akil-s.tokyo-light" version: "0.0.4" installs: 7308 + rating: 5 + ratings: 1 author: "akil-s" repo: "https://github.com/Salah-Akil/tokyo-vscode-light" url: "https://marketplace.visualstudio.com/items?itemName=akil-s.tokyo-light" diff --git a/themes/tokyo-lights.yaml b/themes/tokyo-lights.yaml index d7d1822f..44ef464c 100644 --- a/themes/tokyo-lights.yaml +++ b/themes/tokyo-lights.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "elvados.tokyo-lights" version: "0.0.9" installs: 18 + rating: 0 + ratings: 0 author: "vadyapan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=elvados.tokyo-lights" diff --git a/themes/tokyo-midnight.yaml b/themes/tokyo-midnight.yaml index df58d7e3..44cdcccd 100644 --- a/themes/tokyo-midnight.yaml +++ b/themes/tokyo-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nacholaciar.tokyo-midnight" version: "0.1.9" installs: 14443 + rating: 5 + ratings: 1 author: "nacholaciar" repo: "https://github.com/nacholaciar/tokyo-midnight" url: "https://marketplace.visualstudio.com/items?itemName=nacholaciar.tokyo-midnight" diff --git a/themes/tokyo-modern.yaml b/themes/tokyo-modern.yaml index 04e8ced7..def7ce22 100644 --- a/themes/tokyo-modern.yaml +++ b/themes/tokyo-modern.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lod-inc.tokyo-modern" version: "2.8.32" installs: 39 + rating: 0 + ratings: 0 author: "lod" repo: "https://github.com/darqus/tokyo-modern-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lod-inc.tokyo-modern" diff --git a/themes/tokyo-night-blackout.yaml b/themes/tokyo-night-blackout.yaml index 79f0ce01..6f5eec8a 100644 --- a/themes/tokyo-night-blackout.yaml +++ b/themes/tokyo-night-blackout.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EdmundYong.tokyo-night-blackout" version: "0.0.1" installs: 1991 + rating: 0 + ratings: 0 author: "Edmund Yong" repo: null url: "https://marketplace.visualstudio.com/items?itemName=EdmundYong.tokyo-night-blackout" diff --git a/themes/tokyo-night-bright.yaml b/themes/tokyo-night-bright.yaml index ad9a2ccb..4bdfa9f0 100644 --- a/themes/tokyo-night-bright.yaml +++ b/themes/tokyo-night-bright.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "danarnold.tokyo-night-bright" version: "0.0.1" installs: 467 + rating: 0 + ratings: 0 author: "danarnold" repo: "https://github.com/danarnold/tokyonight-vsc" url: "https://marketplace.visualstudio.com/items?itemName=danarnold.tokyo-night-bright" diff --git a/themes/tokyo-night-dark.yaml b/themes/tokyo-night-dark.yaml index 938474ed..da10d1b8 100644 --- a/themes/tokyo-night-dark.yaml +++ b/themes/tokyo-night-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "drewxs.tokyo-night-dark" version: "0.3.3" installs: 76477 + rating: 4.67 + ratings: 3 author: "Andrew X. Shah" repo: "https://github.com/kito0/tokyo-night-dark" url: "https://marketplace.visualstudio.com/items?itemName=drewxs.tokyo-night-dark" diff --git a/themes/tokyo-night-equalizer.yaml b/themes/tokyo-night-equalizer.yaml index 6e1ade82..abd5d497 100644 --- a/themes/tokyo-night-equalizer.yaml +++ b/themes/tokyo-night-equalizer.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ni3rav.andromeda-night" version: "0.0.7" installs: 1263 + rating: 0 + ratings: 0 author: "ni3rav" repo: "https://github.com/ni3rav/andromeda-night" url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.andromeda-night" diff --git a/themes/tokyo-night-light.yaml b/themes/tokyo-night-light.yaml index 30b487b7..f23241f5 100644 --- a/themes/tokyo-night-light.yaml +++ b/themes/tokyo-night-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "damask-holdings.tokyo-night-theme-damask-edition" version: "0.0.1" installs: 318 + rating: 0 + ratings: 0 author: "Damask Holdings" repo: null url: "https://marketplace.visualstudio.com/items?itemName=damask-holdings.tokyo-night-theme-damask-edition" diff --git a/themes/tokyo-night-nv.yaml b/themes/tokyo-night-nv.yaml index 69f4e899..1eaf4ed0 100644 --- a/themes/tokyo-night-nv.yaml +++ b/themes/tokyo-night-nv.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tokyo-night.nvtokyo" version: "0.0.1" installs: 1816 + rating: 0 + ratings: 0 author: "tokyo-night" repo: "https://github.com/betty2310/Tokyo-Night" url: "https://marketplace.visualstudio.com/items?itemName=tokyo-night.nvtokyo" diff --git a/themes/tokyo-night-pure.yaml b/themes/tokyo-night-pure.yaml index ef4f3342..f8c54c0f 100644 --- a/themes/tokyo-night-pure.yaml +++ b/themes/tokyo-night-pure.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nishantg96.tokyo-night-pure" version: "0.0.3" installs: 1744 + rating: 5 + ratings: 1 author: "Nishant Gajjar" repo: "https://github.com/nishantg96/Tokyo-Night-Pure-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=nishantg96.tokyo-night-pure" diff --git a/themes/tokyo-night-theme.yaml b/themes/tokyo-night-theme.yaml new file mode 100644 index 00000000..3c24a2b1 --- /dev/null +++ b/themes/tokyo-night-theme.yaml @@ -0,0 +1,52 @@ +name: "tokyo-night-theme" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 660 + rating: 5 + ratings: 1 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" +colors: + bg: "#24283B" + fg: "#A9B1D6" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#7982A9" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 275 + pair: null + contrast: + fg: 57.2 + black: 8.2 + red: 47.3 + green: 70.1 + yellow: 60.1 + blue: 49 + magenta: 52.9 + cyan: 68.4 + white: 32.8 + brightBlack: 8.2 + brightRed: 47.3 + brightGreen: 70.1 + brightYellow: 60.1 + brightBlue: 49 + brightMagenta: 52.9 + brightCyan: 68.4 + brightWhite: 57.2 diff --git a/themes/tokyo-night-void.yaml b/themes/tokyo-night-void.yaml index 57605a6b..0d4f2b07 100644 --- a/themes/tokyo-night-void.yaml +++ b/themes/tokyo-night-void.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SatoruCode.tokyo-night-void" version: "0.0.1" installs: 419 + rating: 5 + ratings: 1 author: "Satoru Code" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SatoruCode.tokyo-night-void" diff --git a/themes/tokyo-panda.yaml b/themes/tokyo-panda.yaml index 155034b8..2a61ecb8 100644 --- a/themes/tokyo-panda.yaml +++ b/themes/tokyo-panda.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "effordDev.tokyo-panda-theme" version: "1.12.0" installs: 8334 + rating: 5 + ratings: 1 author: "effordDev" repo: "https://github.com/effordDev/tokyo-panda-theme" url: "https://marketplace.visualstudio.com/items?itemName=effordDev.tokyo-panda-theme" diff --git a/themes/tokyo.yaml b/themes/tokyo.yaml index 585b9401..962381d1 100644 --- a/themes/tokyo.yaml +++ b/themes/tokyo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.codeme-theme" version: "0.1.1" installs: 8080 + rating: 0 + ratings: 0 author: "Avetis" repo: "https://github.com/AvetisDN/codeme-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" diff --git a/themes/tokyogo.yaml b/themes/tokyogo.yaml new file mode 100644 index 00000000..65a11732 --- /dev/null +++ b/themes/tokyogo.yaml @@ -0,0 +1,52 @@ +name: "TokyoGo" +source: + marketplace_id: "daniloBrayann.blue-theme-dark" + version: "0.0.37" + installs: 454 + rating: 5 + ratings: 1 + author: "daniloBrayann" + repo: "https://github.com/danilobrayann/dev-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.blue-theme-dark" +colors: + bg: "#24283B" + fg: "#A9B1D6" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#8089B3" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 275 + pair: null + contrast: + fg: 57.2 + black: 8.2 + red: 47.3 + green: 70.1 + yellow: 60.1 + blue: 49 + magenta: 52.9 + cyan: 68.4 + white: 36.4 + brightBlack: 8.2 + brightRed: 47.3 + brightGreen: 70.1 + brightYellow: 60.1 + brightBlue: 49 + brightMagenta: 52.9 + brightCyan: 68.4 + brightWhite: 57.2 diff --git a/themes/tokyonight-moon-lazy.yaml b/themes/tokyonight-moon-lazy.yaml index f5e48ba9..d3ae4bc1 100644 --- a/themes/tokyonight-moon-lazy.yaml +++ b/themes/tokyonight-moon-lazy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gyro-uyt.lazy-themes" version: "0.1.5" installs: 18 + rating: 5 + ratings: 1 author: "Uday Thakur" repo: "https://github.com/gyro-uyt/lazy-themes" url: "https://marketplace.visualstudio.com/items?itemName=gyro-uyt.lazy-themes" diff --git a/themes/tokyonight.yaml b/themes/tokyonight.yaml index ffe0a6a4..b9c31928 100644 --- a/themes/tokyonight.yaml +++ b/themes/tokyonight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "UnSad.tragicpale" version: "0.0.1" installs: 184 + rating: 0 + ratings: 0 author: "UnSad" repo: null url: "https://marketplace.visualstudio.com/items?itemName=UnSad.tragicpale" diff --git a/themes/tol.yaml b/themes/tol.yaml index bcbb7043..09ec3e2e 100644 --- a/themes/tol.yaml +++ b/themes/tol.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dustypomerleau.tol" version: "0.11.0" installs: 5418 + rating: 5 + ratings: 4 author: "Dusty Pomerleau" repo: "https://github.com/dustypomerleau/tol" url: "https://marketplace.visualstudio.com/items?itemName=dustypomerleau.tol" diff --git a/themes/tomorrow-night-vs.yaml b/themes/tomorrow-night-vs.yaml index 0f3cdf29..a1c19102 100644 --- a/themes/tomorrow-night-vs.yaml +++ b/themes/tomorrow-night-vs.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xivilay.simplified-themes-mods-pack" version: "0.0.2" installs: 47 + rating: 0 + ratings: 0 author: "xivilay" repo: "https://github.com/xivilay/vs-code-themes" url: "https://marketplace.visualstudio.com/items?itemName=xivilay.simplified-themes-mods-pack" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 230 + pair: null contrast: fg: 68.1 black: 0 diff --git a/themes/tomorrowmyst.yaml b/themes/tomorrowmyst.yaml index 316bb5d5..b16f1eac 100644 --- a/themes/tomorrowmyst.yaml +++ b/themes/tomorrowmyst.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodeMyst.tomorrowmyst" version: "1.0.1" installs: 675 + rating: 0 + ratings: 0 author: "CodeMyst" repo: "https://github.com/CodeMyst/TomorrowMyst" url: "https://marketplace.visualstudio.com/items?itemName=CodeMyst.tomorrowmyst" diff --git a/themes/tonic-contrast.yaml b/themes/tonic-contrast.yaml index 1e3723b2..e4ae2d0e 100644 --- a/themes/tonic-contrast.yaml +++ b/themes/tonic-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tonic-light.yaml b/themes/tonic-light.yaml index 3b444129..81674b5c 100644 --- a/themes/tonic-light.yaml +++ b/themes/tonic-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tonic.yaml b/themes/tonic.yaml index 7704e8cd..15607d3a 100644 --- a/themes/tonic.yaml +++ b/themes/tonic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/toodark.yaml b/themes/toodark.yaml index 6c1f255f..cd40f064 100644 --- a/themes/toodark.yaml +++ b/themes/toodark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "blankrsd.toodark" version: "0.0.2" installs: 796 + rating: 5 + ratings: 2 author: "Raj Shekhar" repo: "https://github.com/blankRSD/TooDark" url: "https://marketplace.visualstudio.com/items?itemName=blankrsd.toodark" diff --git a/themes/topic-the-leader.yaml b/themes/topic-the-leader.yaml index d3800c65..524b5082 100644 --- a/themes/topic-the-leader.yaml +++ b/themes/topic-the-leader.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "J27dev.jhonat2709" version: "1.0.0" installs: 7 + rating: 0 + ratings: 0 author: "J27.dev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=J27dev.jhonat2709" diff --git a/themes/tora.yaml b/themes/tora.yaml index a9765e1b..8c9a5666 100644 --- a/themes/tora.yaml +++ b/themes/tora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ssera-themes" version: "2.0.2" installs: 334 + rating: 0 + ratings: 0 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" diff --git a/themes/torque.yaml b/themes/torque.yaml index 3429d573..e8baf574 100644 --- a/themes/torque.yaml +++ b/themes/torque.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "IktisadRashid.torque-dark-theme" version: "0.0.3" installs: 352 + rating: 5 + ratings: 6 author: "iktisad rashid" repo: "https://github.com/Iktisad/torque-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=IktisadRashid.torque-dark-theme" diff --git a/themes/torte-vim.yaml b/themes/torte-vim.yaml index bbfa2ada..1bb5c966 100644 --- a/themes/torte-vim.yaml +++ b/themes/torte-vim.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GabrielVillalonga.torte-theme" version: "0.0.2" installs: 792 + rating: 0 + ratings: 0 author: "GabrielVillalonga" repo: "https://github.com/gabivlj/torte" url: "https://marketplace.visualstudio.com/items?itemName=GabrielVillalonga.torte-theme" diff --git a/themes/total-black-theme.yaml b/themes/total-black-theme.yaml index 81e47722..064fd64b 100644 --- a/themes/total-black-theme.yaml +++ b/themes/total-black-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Jotatajo22.black-total" version: "0.0.1" installs: 45 + rating: 0 + ratings: 0 author: "Jotatajo22" repo: "https://github.com/JoaoPedro-cody/black-total" url: "https://marketplace.visualstudio.com/items?itemName=Jotatajo22.black-total" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 91.8 black: 0 diff --git a/themes/total-lunar-eclipse.yaml b/themes/total-lunar-eclipse.yaml index 72768611..6ce96c9c 100644 --- a/themes/total-lunar-eclipse.yaml +++ b/themes/total-lunar-eclipse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ginfuru.lunar-eclipse" version: "0.1.4" installs: 10316 + rating: 5 + ratings: 1 author: "Ed Heltzel" repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" diff --git a/themes/totow-s-th-me.yaml b/themes/totow-s-th-me.yaml index 31892946..7cdb58fe 100644 --- a/themes/totow-s-th-me.yaml +++ b/themes/totow-s-th-me.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Totow.Totow-s-Theme" version: "1.0.3" installs: 288 + rating: 5 + ratings: 1 author: "Totow" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Totow.Totow-s-Theme" diff --git a/themes/toxic-color-theme.yaml b/themes/toxic-color-theme.yaml index c69a295d..1e2d7521 100644 --- a/themes/toxic-color-theme.yaml +++ b/themes/toxic-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wavebeem.toxic-vscode" version: "0.3.1" installs: 408 + rating: 0 + ratings: 0 author: "Sage Fennel" repo: "https://github.com/wavebeem/toxic-vscode" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.toxic-vscode" diff --git a/themes/toxic-waste.yaml b/themes/toxic-waste.yaml index 05b59ffc..baaeedf7 100644 --- a/themes/toxic-waste.yaml +++ b/themes/toxic-waste.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "CodewithBismillah.chroma-library" version: "1.2.1" installs: 358 + rating: 5 + ratings: 1 author: "Code with Bismillah" repo: "https://github.com/mubashir1837/Chroma-Library" url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" diff --git a/themes/toy-chest.yaml b/themes/toy-chest.yaml index dbe60bc3..ff1d952e 100644 --- a/themes/toy-chest.yaml +++ b/themes/toy-chest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cloudMACHINES.toy-chest-theme" version: "0.1.1" installs: 164 + rating: 5 + ratings: 3 author: "cloudMACHINES" repo: "https://github.com/fakebizprez/toy-chest-theme" url: "https://marketplace.visualstudio.com/items?itemName=cloudMACHINES.toy-chest-theme" diff --git a/themes/tranquillity-theme.yaml b/themes/tranquillity-theme.yaml index 2f2ec8b8..d274b83f 100644 --- a/themes/tranquillity-theme.yaml +++ b/themes/tranquillity-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OmerFarukGungor.tranquillity-code" version: "0.0.3" installs: 179 + rating: 5 + ratings: 1 author: "Omer Faruk Gungor" repo: "https://github.com/o-fgungor/tranquility-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=OmerFarukGungor.tranquillity-code" diff --git a/themes/trans-pride-light-naomi.yaml b/themes/trans-pride-light-naomi.yaml index a805d41f..a7b4c223 100644 --- a/themes/trans-pride-light-naomi.yaml +++ b/themes/trans-pride-light-naomi.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nhcarrigan.naomis-themes" version: "2.3.0" installs: 68 + rating: 0 + ratings: 0 author: "NHCarrigan" repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" diff --git a/themes/transylvania.yaml b/themes/transylvania.yaml index cdc7672a..8a7efbac 100644 --- a/themes/transylvania.yaml +++ b/themes/transylvania.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "matheusps.transylvania" version: "1.5.2" installs: 3645 + rating: 5 + ratings: 2 author: "matheusps" repo: "https://github.com/matheusps/transylvania" url: "https://marketplace.visualstudio.com/items?itemName=matheusps.transylvania" diff --git a/themes/tree-hugger.yaml b/themes/tree-hugger.yaml new file mode 100644 index 00000000..1fc8b38d --- /dev/null +++ b/themes/tree-hugger.yaml @@ -0,0 +1,52 @@ +name: "Tree-Hugger" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#1C2B1F" + fg: "#EFEAE4" + black: "#1C2B1F" + red: "#C52C2A" + green: "#29C3A0" + yellow: "#D29922" + blue: "#4DAE50" + magenta: "#4DAE50" + cyan: "#29C3A0" + white: "#EFEAE4" + brightBlack: "#1C2B1F" + brightRed: "#C52C2A" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#4DAE50" + brightMagenta: "#4DAE50" + brightCyan: "#29C3A0" + brightWhite: "#EFEAE4" +meta: + mode: "dark" + accent: "orange" + hue: 150 + pair: null + contrast: + fg: 91.2 + black: 0 + red: 22.1 + green: 55.3 + yellow: 49.3 + blue: 44.8 + magenta: 44.8 + cyan: 55.3 + white: 91.2 + brightBlack: 0 + brightRed: 22.1 + brightGreen: 55.3 + brightYellow: 49.3 + brightBlue: 44.8 + brightMagenta: 44.8 + brightCyan: 55.3 + brightWhite: 91.2 diff --git a/themes/triad-dragon.yaml b/themes/triad-dragon.yaml index 94e02f9f..8986bdb0 100644 --- a/themes/triad-dragon.yaml +++ b/themes/triad-dragon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/tribal-contrast.yaml b/themes/tribal-contrast.yaml index 112f9b65..7844eb74 100644 --- a/themes/tribal-contrast.yaml +++ b/themes/tribal-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tribal-light.yaml b/themes/tribal-light.yaml index 8f2b959e..d9f3340d 100644 --- a/themes/tribal-light.yaml +++ b/themes/tribal-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tribal.yaml b/themes/tribal.yaml index eda7593b..d7163f4c 100644 --- a/themes/tribal.yaml +++ b/themes/tribal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/triumph-v2.yaml b/themes/triumph-v2.yaml index b9ca6033..e331285c 100644 --- a/themes/triumph-v2.yaml +++ b/themes/triumph-v2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bushenzie.triumph" version: "2.0.2" installs: 230 + rating: 5 + ratings: 1 author: "Bushenzie" repo: "https://i.postimg.cc/dtWztrg2/logo.png" url: "https://marketplace.visualstudio.com/items?itemName=bushenzie.triumph" diff --git a/themes/triumph.yaml b/themes/triumph.yaml index 50a051e3..f257023d 100644 --- a/themes/triumph.yaml +++ b/themes/triumph.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bushenzie.triumph" version: "2.0.2" installs: 230 + rating: 5 + ratings: 1 author: "Bushenzie" repo: "https://i.postimg.cc/dtWztrg2/logo.png" url: "https://marketplace.visualstudio.com/items?itemName=bushenzie.triumph" diff --git a/themes/tron-ares.yaml b/themes/tron-ares.yaml index 89f66037..afafedfa 100644 --- a/themes/tron-ares.yaml +++ b/themes/tron-ares.yaml @@ -1,50 +1,52 @@ -name: "Tron-Ares" +name: "Tron: Ares" source: - marketplace_id: "AdibKhondoker.tron-ares-theme" + marketplace_id: "eschalk0.tron-ares" version: "0.1.5" - installs: 365 - author: "Adib Khondoker" - repo: "https://github.com/adib82302/tron-ares-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AdibKhondoker.tron-ares-theme" + installs: 199 + rating: 0 + ratings: 0 + author: "Etienne Schalk" + repo: "https://github.com/etienneschalk/tron-ares-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eschalk0.tron-ares" colors: - bg: "#0C0C0C" - fg: "#A90000" - black: "#003300" - red: "#B40000" - green: "#E60000" - yellow: "#CCCC00" - blue: "#003FFF" - magenta: "#880088" - cyan: "#008888" - white: "#DE0303" - brightBlack: "#006600" - brightRed: "#B40000" - brightGreen: "#FF4800" - brightYellow: "#888800" - brightBlue: "#003FFF" - brightMagenta: "#880088" - brightCyan: "#008888" - brightWhite: "#DDFFDD" + bg: "#0D0000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: mode: "dark" - accent: "purple" - hue: null + accent: "pink" + hue: 29 pair: null contrast: - fg: 17.3 + fg: 80.4 black: 0 - red: 19.7 - green: 31.1 - yellow: 71.7 - blue: 20.5 - magenta: 14.2 - cyan: 32.2 - white: 29.2 - brightBlack: 17.3 - brightRed: 19.7 - brightGreen: 41.6 - brightYellow: 36.4 - brightBlue: 20.5 - brightMagenta: 14.2 - brightCyan: 32.2 - brightWhite: 101.7 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 91 diff --git a/themes/tron-contrast.yaml b/themes/tron-contrast.yaml index 490efb67..407d8267 100644 --- a/themes/tron-contrast.yaml +++ b/themes/tron-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tron-light.yaml b/themes/tron-light.yaml index 0226c60b..7e8a4218 100644 --- a/themes/tron-light.yaml +++ b/themes/tron-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tron.yaml b/themes/tron.yaml index 0a0bef03..905d64fe 100644 --- a/themes/tron.yaml +++ b/themes/tron.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/trsm-night-eyes.yaml b/themes/trsm-night-eyes.yaml index 3c760c20..f815787c 100644 --- a/themes/trsm-night-eyes.yaml +++ b/themes/trsm-night-eyes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Trsm.trsm-night-eyes" version: "0.0.4" installs: 44 + rating: 5 + ratings: 1 author: "Tiago Machado" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Trsm.trsm-night-eyes" diff --git a/themes/trueamber.yaml b/themes/trueamber.yaml index 7493f764..c1ab447d 100644 --- a/themes/trueamber.yaml +++ b/themes/trueamber.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "headintheclout.trueamber" version: "1.0.9" installs: 2798 + rating: 5 + ratings: 4 author: "headintheclout" repo: "https://github.com/headintheclout/trueAmber" url: "https://marketplace.visualstudio.com/items?itemName=headintheclout.trueamber" diff --git a/themes/tsoding-daily-2024.yaml b/themes/tsoding-daily-2024.yaml new file mode 100644 index 00000000..d698fa29 --- /dev/null +++ b/themes/tsoding-daily-2024.yaml @@ -0,0 +1,52 @@ +name: "Tsoding Daily - 2024" +source: + marketplace_id: "y-software.tsoding-theme-2024" + version: "0.0.2" + installs: 476 + rating: 0 + ratings: 0 + author: "Yassin Software" + repo: "https://github.com/Yassine914/Tsoding-Theme-2024" + url: "https://marketplace.visualstudio.com/items?itemName=y-software.tsoding-theme-2024" +colors: + bg: "#181818" + fg: "#E4E4E4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 89.3 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.5 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/tsuki.yaml b/themes/tsuki.yaml index bdef222a..65d2e306 100644 --- a/themes/tsuki.yaml +++ b/themes/tsuki.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "re1san.tsuki" version: "1.0.0" installs: 2174 + rating: 5 + ratings: 1 author: "Aniketto" repo: "https://github.com/re1san/Tsuki" url: "https://marketplace.visualstudio.com/items?itemName=re1san.tsuki" diff --git a/themes/tsukiroku-dark.yaml b/themes/tsukiroku-dark.yaml index acc34c54..f68d3cd8 100644 --- a/themes/tsukiroku-dark.yaml +++ b/themes/tsukiroku-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tsukiroku.tsukiroku" version: "2.0.2" installs: 72 + rating: 5 + ratings: 1 author: "tsukiroku" repo: "https://github.com/tsukiroku/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=tsukiroku.tsukiroku" diff --git a/themes/tsukuyomi-light.yaml b/themes/tsukuyomi-light.yaml index 24a86c4e..3e6e711f 100644 --- a/themes/tsukuyomi-light.yaml +++ b/themes/tsukuyomi-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "developerayo.Tsukuyomi" version: "1.2.7" installs: 12461 + rating: 5 + ratings: 2 author: "Shodipo Ayomide" repo: "https://github.com/Developerayo/tsukuyomi-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=developerayo.Tsukuyomi" diff --git a/themes/tsukuyomi.yaml b/themes/tsukuyomi.yaml new file mode 100644 index 00000000..34c412b7 --- /dev/null +++ b/themes/tsukuyomi.yaml @@ -0,0 +1,52 @@ +name: "Tsukuyomi" +source: + marketplace_id: "developerayo.Tsukuyomi" + version: "1.2.7" + installs: 12461 + rating: 5 + ratings: 2 + author: "Shodipo Ayomide" + repo: "https://github.com/Developerayo/tsukuyomi-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=developerayo.Tsukuyomi" +colors: + bg: "#1A1E23" + fg: "#D4D9E4" + black: "#1A1F1A" + red: "#F07178" + green: "#BBD99E" + yellow: "#E5C07B" + blue: "#89DDFF" + magenta: "#BB80FF" + cyan: "#89DDFF" + white: "#D4D7D6" + brightBlack: "#5D6963" + brightRed: "#F07178" + brightGreen: "#BBD99E" + brightYellow: "#FFCC66" + brightBlue: "#7DCFFF" + brightMagenta: "#BB80FF" + brightCyan: "#7DCFFF" + brightWhite: "#D4D7D6" +meta: + mode: "dark" + accent: "magenta" + hue: 254 + pair: null + contrast: + fg: 81.6 + black: 0 + red: 45.8 + green: 76 + yellow: 69.8 + blue: 77.5 + magenta: 47.2 + cyan: 77.5 + white: 80.1 + brightBlack: 21.3 + brightRed: 45.8 + brightGreen: 76 + brightYellow: 78.5 + brightBlue: 70.3 + brightMagenta: 47.2 + brightCyan: 70.3 + brightWhite: 80.1 diff --git a/themes/tudoroxo.yaml b/themes/tudoroxo.yaml index 6cf41485..f5d0c2b8 100644 --- a/themes/tudoroxo.yaml +++ b/themes/tudoroxo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "viniceosm.tudoroxo" version: "0.3.0" installs: 624 + rating: 0 + ratings: 0 author: "Vinicius Miiller" repo: "https://github.com/viniceosm/tudoroxo" url: "https://marketplace.visualstudio.com/items?itemName=viniceosm.tudoroxo" diff --git a/themes/tulin-design.yaml b/themes/tulin-design.yaml new file mode 100644 index 00000000..55ade4c3 --- /dev/null +++ b/themes/tulin-design.yaml @@ -0,0 +1,52 @@ +name: "tulin.design" +source: + marketplace_id: "tulindesign.tulindesign" + version: "3.3.0" + installs: 150 + rating: 5 + ratings: 1 + author: "tulindesign" + repo: "https://github.com/tulindesign/vscode_theme" + url: "https://marketplace.visualstudio.com/items?itemName=tulindesign.tulindesign" +colors: + bg: "#1D2025" + fg: "#D3D9E3" + black: "#4C525C" + red: "#E06C75" + green: "#79C37A" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#B978E8" + cyan: "#60D1DE" + white: "#A9B2C3" + brightBlack: "#757D8A" + brightRed: "#FF8D96" + brightGreen: "#79C37A" + brightYellow: "#FFDFA3" + brightBlue: "#80C6FF" + brightMagenta: "#D8A2FF" + brightCyan: "#90F4FF" + brightWhite: "#D1D7E2" +meta: + mode: "dark" + accent: "magenta" + hue: 261 + pair: null + contrast: + fg: 81.1 + black: 12.7 + red: 41 + green: 58.7 + yellow: 69.5 + blue: 53.6 + magenta: 42.8 + cyan: 67.4 + white: 58.3 + brightBlack: 31 + brightRed: 56.9 + brightGreen: 58.7 + brightYellow: 87.6 + brightBlue: 66.2 + brightMagenta: 61.8 + brightCyan: 88.7 + brightWhite: 80 diff --git a/themes/tundra-dusk.yaml b/themes/tundra-dusk.yaml index 40ff956f..1251d2de 100644 --- a/themes/tundra-dusk.yaml +++ b/themes/tundra-dusk.yaml @@ -1,11 +1,13 @@ name: "Tundra Dusk" source: - marketplace_id: "exastone.exa-theme" - version: "1.0.9" - installs: 517 + marketplace_id: "AndrewStone.joegrammer-theme" + version: "0.2.3" + installs: 44 + rating: 0 + ratings: 0 author: "Andrew Stone" - repo: "https://github.com/exastone/exa-theme" - url: "https://marketplace.visualstudio.com/items?itemName=exastone.exa-theme" + repo: "https://github.com/exastone/joegrammer-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndrewStone.joegrammer-theme" colors: bg: "#0C1426" fg: "#D8DEE9" diff --git a/themes/turbo-c-3-0-borland-style.yaml b/themes/turbo-c-3-0-borland-style.yaml index 80246e4a..82086ecb 100644 --- a/themes/turbo-c-3-0-borland-style.yaml +++ b/themes/turbo-c-3-0-borland-style.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.turboc-3-0-theme" version: "0.0.1" installs: 1308 + rating: 5 + ratings: 1 author: "Watkins Labs" repo: "https://github.com/chris17453/vscode-turboc3.0-theme" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.turboc-3-0-theme" diff --git a/themes/turbo.yaml b/themes/turbo.yaml index de75325f..7f1e7745 100644 --- a/themes/turbo.yaml +++ b/themes/turbo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kliucn.turbo" version: "0.2.0" installs: 3476 + rating: 5 + ratings: 1 author: "Kai Liu" repo: "https://github.com/nebulabox/vscode_turbo_theme" url: "https://marketplace.visualstudio.com/items?itemName=kliucn.turbo" diff --git a/themes/turnip-contrast.yaml b/themes/turnip-contrast.yaml index 38f6ac31..0898c100 100644 --- a/themes/turnip-contrast.yaml +++ b/themes/turnip-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/turnip-light.yaml b/themes/turnip-light.yaml index 57ab99b2..a8a16af8 100644 --- a/themes/turnip-light.yaml +++ b/themes/turnip-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/turnip.yaml b/themes/turnip.yaml index b0c7f2e9..dcf2d59f 100644 --- a/themes/turnip.yaml +++ b/themes/turnip.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/turnstyle-darker.yaml b/themes/turnstyle-darker.yaml new file mode 100644 index 00000000..81e5d288 --- /dev/null +++ b/themes/turnstyle-darker.yaml @@ -0,0 +1,52 @@ +name: "Turnstyle Darker" +source: + marketplace_id: "oxechicao.turnstyle" + version: "2.2.0" + installs: 34 + rating: 0 + ratings: 0 + author: "Francisco Thiago" + repo: "https://github.com/oxechicao/turnstyle" + url: "https://marketplace.visualstudio.com/items?itemName=oxechicao.turnstyle" +colors: + bg: "#0F1524" + fg: "#E0F0F0" + black: "#182B3E" + red: "#A3CBD2" + green: "#75A6EB" + yellow: "#DA81AA" + blue: "#DFDF90" + magenta: "#4FA190" + cyan: "#D7A275" + white: "#E0F0F0" + brightBlack: "#A3CBD2" + brightRed: "#A3CBD2" + brightGreen: "#75A6EB" + brightYellow: "#DA81AA" + brightBlue: "#DFDF90" + brightMagenta: "#4FA190" + brightCyan: "#D7A275" + brightWhite: "#E0F0F0" +meta: + mode: "dark" + accent: "red" + hue: 267 + pair: null + contrast: + fg: 95.1 + black: 0 + red: 70.1 + green: 52.2 + yellow: 48.4 + blue: 83.6 + magenta: 43.4 + cyan: 56.9 + white: 95.1 + brightBlack: 70.1 + brightRed: 70.1 + brightGreen: 52.2 + brightYellow: 48.4 + brightBlue: 83.6 + brightMagenta: 43.4 + brightCyan: 56.9 + brightWhite: 95.1 diff --git a/themes/turnstyle.yaml b/themes/turnstyle.yaml new file mode 100644 index 00000000..db395eb6 --- /dev/null +++ b/themes/turnstyle.yaml @@ -0,0 +1,52 @@ +name: "Turnstyle" +source: + marketplace_id: "oxechicao.turnstyle" + version: "2.2.0" + installs: 34 + rating: 0 + ratings: 0 + author: "Francisco Thiago" + repo: "https://github.com/oxechicao/turnstyle" + url: "https://marketplace.visualstudio.com/items?itemName=oxechicao.turnstyle" +colors: + bg: "#1D263A" + fg: "#E0F0F0" + black: "#2C4259" + red: "#A3CBD2" + green: "#75A6EB" + yellow: "#DA81AA" + blue: "#DFDF90" + magenta: "#4FA190" + cyan: "#D7A275" + white: "#E0F0F0" + brightBlack: "#A3CBD2" + brightRed: "#A3CBD2" + brightGreen: "#75A6EB" + brightYellow: "#DA81AA" + brightBlue: "#DFDF90" + brightMagenta: "#4FA190" + brightCyan: "#D7A275" + brightWhite: "#E0F0F0" +meta: + mode: "dark" + accent: "red" + hue: 265 + pair: null + contrast: + fg: 92.8 + black: 0 + red: 67.8 + green: 49.9 + yellow: 46.2 + blue: 81.4 + magenta: 41.1 + cyan: 54.6 + white: 92.8 + brightBlack: 67.8 + brightRed: 67.8 + brightGreen: 49.9 + brightYellow: 46.2 + brightBlue: 81.4 + brightMagenta: 41.1 + brightCyan: 54.6 + brightWhite: 92.8 diff --git a/themes/tw40-gigi.yaml b/themes/tw40-gigi.yaml index f7e475d2..4f8b0d91 100644 --- a/themes/tw40-gigi.yaml +++ b/themes/tw40-gigi.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "chrsolr.rose-pine-nvchad-theme" version: "0.0.3" installs: 6739 + rating: 0 + ratings: 0 author: "Christian Soler" repo: "https://github.com/chrsolr/rose-pine-nvchad-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=chrsolr.rose-pine-nvchad-theme" diff --git a/themes/tweed-contrast.yaml b/themes/tweed-contrast.yaml index e2bcb1ac..6d2e57b9 100644 --- a/themes/tweed-contrast.yaml +++ b/themes/tweed-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tweed-light.yaml b/themes/tweed-light.yaml index 2c6e0130..ee10741a 100644 --- a/themes/tweed-light.yaml +++ b/themes/tweed-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/tweed.yaml b/themes/tweed.yaml index be02d0fc..fb1bb34d 100644 --- a/themes/tweed.yaml +++ b/themes/tweed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/twilight-bloom.yaml b/themes/twilight-bloom.yaml new file mode 100644 index 00000000..27d46811 --- /dev/null +++ b/themes/twilight-bloom.yaml @@ -0,0 +1,52 @@ +name: "Twilight-Bloom" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#1A1D22" + fg: "#E4E4E4" + black: "#1A1D22" + red: "#F14444" + green: "#29C3A0" + yellow: "#D29922" + blue: "#6D5DE7" + magenta: "#6D5DE7" + cyan: "#29C3A0" + white: "#E4E4E4" + brightBlack: "#1A1D22" + brightRed: "#F14444" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#6D5DE7" + brightMagenta: "#6D5DE7" + brightCyan: "#29C3A0" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "orange" + hue: 261 + pair: null + contrast: + fg: 88.7 + black: 0 + red: 36.6 + green: 57 + yellow: 51 + blue: 27.1 + magenta: 27.1 + cyan: 57 + white: 88.7 + brightBlack: 0 + brightRed: 36.6 + brightGreen: 57 + brightYellow: 51 + brightBlue: 27.1 + brightMagenta: 27.1 + brightCyan: 57 + brightWhite: 88.7 diff --git a/themes/twilight-pro.yaml b/themes/twilight-pro.yaml index ed0b5467..50b4a92c 100644 --- a/themes/twilight-pro.yaml +++ b/themes/twilight-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "malkoleyplay.twilight-pro" version: "0.3.0" installs: 2133 + rating: 5 + ratings: 1 author: "_ipal" repo: "https://github.com/Iipal/Twilight-Pro" url: "https://marketplace.visualstudio.com/items?itemName=malkoleyplay.twilight-pro" diff --git a/themes/twilight.yaml b/themes/twilight.yaml index d6e437c5..7797f3dc 100644 --- a/themes/twilight.yaml +++ b/themes/twilight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SriManikantaPalakollu.twilight" version: "1.0.0" installs: 5204 + rating: 5 + ratings: 1 author: "Sri Manikanta Palakollu" repo: "https://github.com/srimani-programmer/Twilight" url: "https://marketplace.visualstudio.com/items?itemName=SriManikantaPalakollu.twilight" diff --git a/themes/twilightsparkle.yaml b/themes/twilightsparkle.yaml index 8b532053..efbd3664 100644 --- a/themes/twilightsparkle.yaml +++ b/themes/twilightsparkle.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nanoparsec.twilightsparkle" version: "0.1.0" installs: 558 + rating: 0 + ratings: 0 author: "nanoparsec" repo: "https://github.com/nanoparsec/twilightsparkle-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nanoparsec.twilightsparkle" diff --git a/themes/twin-black.yaml b/themes/twin-black.yaml index ebec1c7d..122e2ecb 100644 --- a/themes/twin-black.yaml +++ b/themes/twin-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "twin-themes.twin-vsc" version: "1.0.5" installs: 893 + rating: 0 + ratings: 0 author: "Twin Themes" repo: "https://github.com/twin-themes/vscode" url: "https://marketplace.visualstudio.com/items?itemName=twin-themes.twin-vsc" diff --git a/themes/twin-blue.yaml b/themes/twin-blue.yaml index 87d6ed2c..e6d2c246 100644 --- a/themes/twin-blue.yaml +++ b/themes/twin-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "twin-themes.twin-vsc" version: "1.0.5" installs: 893 + rating: 0 + ratings: 0 author: "Twin Themes" repo: "https://github.com/twin-themes/vscode" url: "https://marketplace.visualstudio.com/items?itemName=twin-themes.twin-vsc" diff --git a/themes/two-firewatch.yaml b/themes/two-firewatch.yaml index fd931398..8095b673 100644 --- a/themes/two-firewatch.yaml +++ b/themes/two-firewatch.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hehk.two-firewatch" version: "0.0.1" installs: 258 + rating: 0 + ratings: 0 author: "hehk" repo: "https://github.com/Hehk/two-firewatch" url: "https://marketplace.visualstudio.com/items?itemName=hehk.two-firewatch" diff --git a/themes/two-monokai-darker.yaml b/themes/two-monokai-darker.yaml new file mode 100644 index 00000000..8fd8f382 --- /dev/null +++ b/themes/two-monokai-darker.yaml @@ -0,0 +1,52 @@ +name: "Two Monokai Darker" +source: + marketplace_id: "khan.two-monokai" + version: "0.1.3" + installs: 3910 + rating: 0 + ratings: 0 + author: "khan" + repo: "https://github.com/kmnhan/vscode-two-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=khan.two-monokai" +colors: + bg: "#23272E" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 262 + pair: null + contrast: + fg: 57.2 + black: 0 + red: 34.5 + green: 58.1 + yellow: 46.4 + blue: 47.4 + magenta: 36.8 + cyan: 50.3 + white: 88.4 + brightBlack: 13.2 + brightRed: 43.9 + brightGreen: 74.6 + brightYellow: 59 + brightBlue: 61.5 + brightMagenta: 48 + brightCyan: 65.6 + brightWhite: 80.8 diff --git a/themes/two-monokai.yaml b/themes/two-monokai.yaml new file mode 100644 index 00000000..427291ca --- /dev/null +++ b/themes/two-monokai.yaml @@ -0,0 +1,52 @@ +name: "Two Monokai" +source: + marketplace_id: "khan.two-monokai" + version: "0.1.3" + installs: 3910 + rating: 0 + ratings: 0 + author: "khan" + repo: "https://github.com/kmnhan/vscode-two-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=khan.two-monokai" +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 33.5 + green: 57.2 + yellow: 45.4 + blue: 46.5 + magenta: 35.9 + cyan: 49.3 + white: 87.4 + brightBlack: 12.3 + brightRed: 42.9 + brightGreen: 73.6 + brightYellow: 58 + brightBlue: 60.5 + brightMagenta: 47.1 + brightCyan: 64.6 + brightWhite: 79.8 diff --git a/themes/twodark.yaml b/themes/twodark.yaml index 27e0f510..c3abe624 100644 --- a/themes/twodark.yaml +++ b/themes/twodark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Avetis.twodark" version: "0.4.3" installs: 444 + rating: 5 + ratings: 1 author: "Avetis" repo: "https://github.com/AvetisDN/twodark-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.twodark" diff --git a/themes/tycho-crater.yaml b/themes/tycho-crater.yaml index d9e0828a..acce952d 100644 --- a/themes/tycho-crater.yaml +++ b/themes/tycho-crater.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MrLizardAndCompany.sea-of-serenity" version: "0.2.15" installs: 58 + rating: 4 + ratings: 1 author: "Mr Lizard & Company" repo: "https://github.com/webstek/sea-of-serenity" url: "https://marketplace.visualstudio.com/items?itemName=MrLizardAndCompany.sea-of-serenity" diff --git a/themes/tyh-theme-dark.yaml b/themes/tyh-theme-dark.yaml index 368e57ab..2380e2e7 100644 --- a/themes/tyh-theme-dark.yaml +++ b/themes/tyh-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "tyh-theme.tyh-theme" version: "1.4.1" installs: 535 + rating: 5 + ratings: 1 author: "tyh-theme" repo: "https://github.com/Tyh2001/tyh-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=tyh-theme.tyh-theme" diff --git a/themes/typedark-cyan.yaml b/themes/typedark-cyan.yaml new file mode 100644 index 00000000..d115bb29 --- /dev/null +++ b/themes/typedark-cyan.yaml @@ -0,0 +1,52 @@ +name: "TypeDark Cyan" +source: + marketplace_id: "BonnyAD9.typedark" + version: "1.1.27" + installs: 374 + rating: 5 + ratings: 1 + author: "BonnyAD9" + repo: "https://github.com/BonnyAD9/TypeDark" + url: "https://marketplace.visualstudio.com/items?itemName=BonnyAD9.typedark" +colors: + bg: "#222222" + fg: "#EEEEEE" + black: "#000000" + red: "#883333" + green: "#338833" + yellow: "#888833" + blue: "#5566EE" + magenta: "#884488" + cyan: "#338888" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#FF5555" + brightGreen: "#23D16A" + brightYellow: "#FFFF55" + brightBlue: "#308EEA" + brightMagenta: "#FF77FF" + brightCyan: "#66CCCC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 94.3 + black: 0 + red: 12.1 + green: 28.6 + yellow: 34.4 + blue: 27.4 + magenta: 17.6 + cyan: 30.6 + white: 73.2 + brightBlack: 28.1 + brightRed: 42 + brightGreen: 61.4 + brightYellow: 100.7 + brightBlue: 38.3 + brightMagenta: 56 + brightCyan: 64.2 + brightWhite: 105.5 diff --git a/themes/typedark-magenta.yaml b/themes/typedark-magenta.yaml index 46ad034c..458e60d8 100644 --- a/themes/typedark-magenta.yaml +++ b/themes/typedark-magenta.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BonnyAD9.typedark" version: "1.1.27" installs: 374 + rating: 5 + ratings: 1 author: "BonnyAD9" repo: "https://github.com/BonnyAD9/TypeDark" url: "https://marketplace.visualstudio.com/items?itemName=BonnyAD9.typedark" diff --git a/themes/tyrell-corporation.yaml b/themes/tyrell-corporation.yaml index b1f9be47..82fcfb21 100644 --- a/themes/tyrell-corporation.yaml +++ b/themes/tyrell-corporation.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hc.wallace-corporation" version: "0.4.1" installs: 1588 + rating: 5 + ratings: 7 author: "Howard C." repo: "https://github.com/h-cwc/wallace-corporation" url: "https://marketplace.visualstudio.com/items?itemName=hc.wallace-corporation" diff --git a/themes/tyrian-night.yaml b/themes/tyrian-night.yaml index 9985343f..891aaddc 100644 --- a/themes/tyrian-night.yaml +++ b/themes/tyrian-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "renbkna.tyrian-night" version: "1.5.2" installs: 24 + rating: 5 + ratings: 1 author: "renbkna" repo: "https://github.com/renbkna/tyrian-night" url: "https://marketplace.visualstudio.com/items?itemName=renbkna.tyrian-night" diff --git a/themes/tyrone-neon-red.yaml b/themes/tyrone-neon-red.yaml new file mode 100644 index 00000000..b05dc523 --- /dev/null +++ b/themes/tyrone-neon-red.yaml @@ -0,0 +1,52 @@ +name: "Tyrone Neon - Red" +source: + marketplace_id: "tyronejosee.tyrone-neon" + version: "2.0.0" + installs: 157 + rating: 0 + ratings: 0 + author: "tyronejosee" + repo: "https://github.com/tyronejosee/theme_tyrone_neon" + url: "https://marketplace.visualstudio.com/items?itemName=tyronejosee.tyrone-neon" +colors: + bg: "#000000" + fg: "#E5E5E5" + black: "#484F58" + red: "#FF4757" + green: "#00FF87" + yellow: "#FFFA65" + blue: "#00D9FF" + magenta: "#FF6B9D" + cyan: "#00FFCC" + white: "#E5E5E5" + brightBlack: "#7D8590" + brightRed: "#FF6B6B" + brightGreen: "#5EFFA3" + brightYellow: "#FFFF80" + brightBlue: "#40E0FF" + brightMagenta: "#FF8FC7" + brightCyan: "#80FFE6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 91 + black: 13.6 + red: 42.3 + green: 87.7 + yellow: 100.9 + blue: 73.3 + magenta: 50.6 + cyan: 89.8 + white: 91 + brightBlack: 36.8 + brightRed: 49.1 + brightGreen: 90 + brightYellow: 103.7 + brightBlue: 77.3 + brightMagenta: 61.5 + brightCyan: 94.1 + brightWhite: 107.9 diff --git a/themes/udt-eclipse-light.yaml b/themes/udt-eclipse-light.yaml new file mode 100644 index 00000000..79766297 --- /dev/null +++ b/themes/udt-eclipse-light.yaml @@ -0,0 +1,52 @@ +name: "UDT Eclipse (light)" +source: + marketplace_id: "lexicographer.lucid-parchment-theme" + version: "1.0.0" + installs: 5 + rating: 0 + ratings: 0 + author: "FeiFei Liu" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=lexicographer.lucid-parchment-theme" +colors: + bg: "#F9F8F6" + fg: "#4D3F32" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#55AAFF" + cyan: "#DB9D18" + white: "#F9F8F6" + brightBlack: "#4D3F32" + brightRed: "#CB4B16" + brightGreen: "#4D3F32" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#ADADAD" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.4 + black: 94.8 + red: 66.4 + green: 54.9 + yellow: 54.9 + blue: 59.8 + magenta: 43.7 + cyan: 42.4 + white: 0 + brightBlack: 89.4 + brightRed: 66.9 + brightGreen: 89.4 + brightYellow: 66.8 + brightBlue: 54.6 + brightMagenta: 66.1 + brightCyan: 40.1 + brightWhite: 0 diff --git a/themes/ui-color.yaml b/themes/ui-color.yaml index e2ac05e7..4dae9462 100644 --- a/themes/ui-color.yaml +++ b/themes/ui-color.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PinkDopeyBug.pinkdopeybug" version: "1.0.20" installs: 472 + rating: 0 + ratings: 0 author: "PinkDopeyBug" repo: "https://github.com/PinkDopeyBug/pinkdopeybug-theme" url: "https://marketplace.visualstudio.com/items?itemName=PinkDopeyBug.pinkdopeybug" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 260 + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/ui.yaml b/themes/ui.yaml index 580dbfcb..b339f04e 100644 --- a/themes/ui.yaml +++ b/themes/ui.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "saltchang.salty" version: "0.2.0" installs: 313 + rating: 0 + ratings: 0 author: "Salt Chang" repo: "https://github.com/saltchang/theme-salty" url: "https://marketplace.visualstudio.com/items?itemName=saltchang.salty" diff --git a/themes/ukiyo-e-aged-manuscript.yaml b/themes/ukiyo-e-aged-manuscript.yaml index dbbdd04e..ad8c75f4 100644 --- a/themes/ukiyo-e-aged-manuscript.yaml +++ b/themes/ukiyo-e-aged-manuscript.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ttera-themes" version: "2.0.7" installs: 2044 + rating: 5 + ratings: 1 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" diff --git a/themes/ukiyo-e-manuscript.yaml b/themes/ukiyo-e-manuscript.yaml index 62c958e1..328ac989 100644 --- a/themes/ukiyo-e-manuscript.yaml +++ b/themes/ukiyo-e-manuscript.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sserafy.ssera-themes" version: "2.0.2" installs: 334 + rating: 0 + ratings: 0 author: "sserafy" repo: "https://github.com/azhou555/naturefy-theme" url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" diff --git a/themes/ukiyo-tone-asahi-morning-sun.yaml b/themes/ukiyo-tone-asahi-morning-sun.yaml index a21effb0..70f8cbb5 100644 --- a/themes/ukiyo-tone-asahi-morning-sun.yaml +++ b/themes/ukiyo-tone-asahi-morning-sun.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OneMohitSharma.ukiyo-tone" version: "1.0.1" installs: 71 + rating: 0 + ratings: 0 author: "Mohit Sharma" repo: "https://github.com/mohitSharma74/ukiyo-tone" url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" diff --git a/themes/ukiyo-tone-kachi-iro-victory-color.yaml b/themes/ukiyo-tone-kachi-iro-victory-color.yaml index 49fbcc31..51a083ba 100644 --- a/themes/ukiyo-tone-kachi-iro-victory-color.yaml +++ b/themes/ukiyo-tone-kachi-iro-victory-color.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OneMohitSharma.ukiyo-tone" version: "1.0.1" installs: 71 + rating: 0 + ratings: 0 author: "Mohit Sharma" repo: "https://github.com/mohitSharma74/ukiyo-tone" url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" diff --git a/themes/ukiyo-tone-karesansui-dry-landscape.yaml b/themes/ukiyo-tone-karesansui-dry-landscape.yaml index eda11591..09eda538 100644 --- a/themes/ukiyo-tone-karesansui-dry-landscape.yaml +++ b/themes/ukiyo-tone-karesansui-dry-landscape.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OneMohitSharma.ukiyo-tone" version: "1.0.1" installs: 71 + rating: 0 + ratings: 0 author: "Mohit Sharma" repo: "https://github.com/mohitSharma74/ukiyo-tone" url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" diff --git a/themes/ukiyo-tone-koke-dera-moss-temple.yaml b/themes/ukiyo-tone-koke-dera-moss-temple.yaml index 0032b7ce..fed76557 100644 --- a/themes/ukiyo-tone-koke-dera-moss-temple.yaml +++ b/themes/ukiyo-tone-koke-dera-moss-temple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OneMohitSharma.ukiyo-tone" version: "1.0.1" installs: 71 + rating: 0 + ratings: 0 author: "Mohit Sharma" repo: "https://github.com/mohitSharma74/ukiyo-tone" url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" diff --git a/themes/ukiyo-tone-kuro-sumi-black-ink.yaml b/themes/ukiyo-tone-kuro-sumi-black-ink.yaml index 66928266..492cca0e 100644 --- a/themes/ukiyo-tone-kuro-sumi-black-ink.yaml +++ b/themes/ukiyo-tone-kuro-sumi-black-ink.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OneMohitSharma.ukiyo-tone" version: "1.0.1" installs: 71 + rating: 0 + ratings: 0 author: "Mohit Sharma" repo: "https://github.com/mohitSharma74/ukiyo-tone" url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" diff --git a/themes/ukiyo-tone-tasogare-twilight.yaml b/themes/ukiyo-tone-tasogare-twilight.yaml index 967c1202..20cb129f 100644 --- a/themes/ukiyo-tone-tasogare-twilight.yaml +++ b/themes/ukiyo-tone-tasogare-twilight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "OneMohitSharma.ukiyo-tone" version: "1.0.1" installs: 71 + rating: 0 + ratings: 0 author: "Mohit Sharma" repo: "https://github.com/mohitSharma74/ukiyo-tone" url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" diff --git a/themes/ukiyo.yaml b/themes/ukiyo.yaml index 93191aa7..4ee0e5d1 100644 --- a/themes/ukiyo.yaml +++ b/themes/ukiyo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zcericola.ukiyo" version: "0.8.0" installs: 1159 + rating: 5 + ratings: 1 author: "zcericola" repo: "https://www.github.com/zcericola/ukiyo-theme" url: "https://marketplace.visualstudio.com/items?itemName=zcericola.ukiyo" diff --git a/themes/ultima-gwz.yaml b/themes/ultima-gwz.yaml index 7b2a067e..b6334ffb 100644 --- a/themes/ultima-gwz.yaml +++ b/themes/ultima-gwz.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guezwhoz-schema.ultima-vscode-theme" version: "2.2.2" installs: 186 + rating: 5 + ratings: 1 author: "Egor Lem" repo: "https://github.com/egorlem/ultima.vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=guezwhoz-schema.ultima-vscode-theme" diff --git a/themes/ultima.yaml b/themes/ultima.yaml index 87578366..85e3f25a 100644 --- a/themes/ultima.yaml +++ b/themes/ultima.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guezwhoz-schema.ultima-vscode-theme" version: "2.2.2" installs: 186 + rating: 5 + ratings: 1 author: "Egor Lem" repo: "https://github.com/egorlem/ultima.vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=guezwhoz-schema.ultima-vscode-theme" diff --git a/themes/ultra-instinct-mastered-light.yaml b/themes/ultra-instinct-mastered-light.yaml index a35b918e..06177e18 100644 --- a/themes/ultra-instinct-mastered-light.yaml +++ b/themes/ultra-instinct-mastered-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JuanLias.ultra-instinct-theme" version: "0.1.4" installs: 73 + rating: 5 + ratings: 2 author: "Juan Lias" repo: "https://github.com/juanlias/ultra-instinct-theme" url: "https://marketplace.visualstudio.com/items?itemName=JuanLias.ultra-instinct-theme" diff --git a/themes/ultra-instinct-mastered.yaml b/themes/ultra-instinct-mastered.yaml index dd03b2a5..ff32b0cf 100644 --- a/themes/ultra-instinct-mastered.yaml +++ b/themes/ultra-instinct-mastered.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JuanLias.ultra-instinct-theme" version: "0.1.4" installs: 73 + rating: 5 + ratings: 2 author: "Juan Lias" repo: "https://github.com/juanlias/ultra-instinct-theme" url: "https://marketplace.visualstudio.com/items?itemName=JuanLias.ultra-instinct-theme" diff --git a/themes/ultra-instinct-sign.yaml b/themes/ultra-instinct-sign.yaml index a2340ab1..a7017a20 100644 --- a/themes/ultra-instinct-sign.yaml +++ b/themes/ultra-instinct-sign.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JuanLias.ultra-instinct-theme" version: "0.1.4" installs: 73 + rating: 5 + ratings: 2 author: "Juan Lias" repo: "https://github.com/juanlias/ultra-instinct-theme" url: "https://marketplace.visualstudio.com/items?itemName=JuanLias.ultra-instinct-theme" diff --git a/themes/ultrafocus-fork-fork.yaml b/themes/ultrafocus-fork-fork.yaml new file mode 100644 index 00000000..81a08e12 --- /dev/null +++ b/themes/ultrafocus-fork-fork.yaml @@ -0,0 +1,52 @@ +name: "Ultrafocus - Fork - Fork" +source: + marketplace_id: "valentinesamuel.fallout-dark" + version: "0.0.1" + installs: 2243 + rating: 0 + ratings: 0 + author: "valentine samuel" + repo: "https://github.com/valentinesamuel/themes" + url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" +colors: + bg: "#000000" + fg: "#B2B2B2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#6F6F6F" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 60.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 27 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/umbra.yaml b/themes/umbra.yaml index f30519c6..6352ef87 100644 --- a/themes/umbra.yaml +++ b/themes/umbra.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "greven.umbra" version: "1.4.10" installs: 17302 + rating: 4.5 + ratings: 4 author: "greven" repo: "https://github.com/greven/umbra-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=greven.umbra" diff --git a/themes/umi.yaml b/themes/umi.yaml index 84b4ce5f..4e3dcdfa 100644 --- a/themes/umi.yaml +++ b/themes/umi.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TobiasTimm.umi" version: "1.1.2" installs: 2887 + rating: 0 + ratings: 0 author: "Tobias Timm" repo: "https://github.com/tobiastimm/umi" url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.umi" diff --git a/themes/ump-45-leva.yaml b/themes/ump-45-leva.yaml index 3afded00..bec34487 100644 --- a/themes/ump-45-leva.yaml +++ b/themes/ump-45-leva.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PlutonicVoid.Leva-ump45" version: "1.1.0" installs: 18 + rating: 0 + ratings: 0 author: "PlutonicVoid" repo: "https://github.com/ThanatosSystemOmegaVI/leva-ump45-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=PlutonicVoid.Leva-ump45" diff --git a/themes/unbluelievable.yaml b/themes/unbluelievable.yaml index 90852546..4bc57201 100644 --- a/themes/unbluelievable.yaml +++ b/themes/unbluelievable.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Yalright.unbluelievable" version: "0.0.4" installs: 95 + rating: 5 + ratings: 1 author: "Yalright" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Yalright.unbluelievable" diff --git a/themes/undefined.yaml b/themes/undefined.yaml index 04df92b6..3331dba2 100644 --- a/themes/undefined.yaml +++ b/themes/undefined.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "so1ve.theme-undefined" version: "1.1.0" installs: 63 + rating: 0 + ratings: 0 author: "so1ve" repo: "https://github.com/so1ve/vscode-theme-undefined" url: "https://marketplace.visualstudio.com/items?itemName=so1ve.theme-undefined" diff --git a/themes/under-theme.yaml b/themes/under-theme.yaml index f34bf234..26cc1acc 100644 --- a/themes/under-theme.yaml +++ b/themes/under-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RLabsInc.rlabs-theme-collection" version: "0.1.4" installs: 181 + rating: 0 + ratings: 0 author: "RLabs Inc." repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 271 + pair: null contrast: fg: 107.4 black: 0 diff --git a/themes/underdark-fork.yaml b/themes/underdark-fork.yaml index 871f72ff..c65530b4 100644 --- a/themes/underdark-fork.yaml +++ b/themes/underdark-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SanuKumar.rik" version: "1.0.7" installs: 99 + rating: 5 + ratings: 1 author: "Sanu Kumar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SanuKumar.rik" diff --git a/themes/understated.yaml b/themes/understated.yaml new file mode 100644 index 00000000..e4b07fbf --- /dev/null +++ b/themes/understated.yaml @@ -0,0 +1,52 @@ +name: "Understated" +source: + marketplace_id: "hnrchrdl.understated-theme-vscode" + version: "0.1.2" + installs: 1017 + rating: 0 + ratings: 0 + author: "hnrchrdl" + repo: "https://github.com/hnrchrdl/understated-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hnrchrdl.understated-theme-vscode" +colors: + bg: "#2F3640" + fg: "#F5F6FA" + black: "#353B48" + red: "#E84118" + green: "#44BD32" + yellow: "#FBC531" + blue: "#40739E" + magenta: "#9C88FF" + cyan: "#00A8FF" + white: "#F5F6FA" + brightBlack: "#718093" + brightRed: "#E84118" + brightGreen: "#00A8FF" + brightYellow: "#FBC531" + brightBlue: "#00A8FF" + brightMagenta: "#9C88FF" + brightCyan: "#487EB0" + brightWhite: "#F5F6FA" +meta: + mode: "dark" + accent: "orange" + hue: 257 + pair: null + contrast: + fg: 95.5 + black: 0 + red: 28.9 + green: 47.7 + yellow: 69.6 + blue: 20.5 + magenta: 40.9 + cyan: 45.2 + white: 95.5 + brightBlack: 27.5 + brightRed: 28.9 + brightGreen: 45.2 + brightYellow: 69.6 + brightBlue: 45.2 + brightMagenta: 40.9 + brightCyan: 25.6 + brightWhite: 95.5 diff --git a/themes/unicorn-dark.yaml b/themes/unicorn-dark.yaml index 5e5441bd..d4ccd4b1 100644 --- a/themes/unicorn-dark.yaml +++ b/themes/unicorn-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MarfahTechnologies.unicorn-dark" version: "1.0.0" installs: 216 + rating: 5 + ratings: 2 author: "Marfah Technologies" repo: "https://github.com/FahadQasim283/unicorn-theme" url: "https://marketplace.visualstudio.com/items?itemName=MarfahTechnologies.unicorn-dark" diff --git a/themes/unicorn.yaml b/themes/unicorn.yaml index f4bfabb7..3e812d66 100644 --- a/themes/unicorn.yaml +++ b/themes/unicorn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "walele993.fable-code-theme" version: "1.2.0" installs: 46 + rating: 0 + ratings: 0 author: "Gabriele Meucci" repo: "https://github.com/walele993/fable_a_vsc_theme" url: "https://marketplace.visualstudio.com/items?itemName=walele993.fable-code-theme" diff --git a/themes/unicornio-dark.yaml b/themes/unicornio-dark.yaml index cf143851..6338146e 100644 --- a/themes/unicornio-dark.yaml +++ b/themes/unicornio-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "unicorniodev.unicornio-dark" version: "1.1.0" installs: 230 + rating: 5 + ratings: 1 author: "FlorLuzDuarte" repo: "https://github.com/unicorniodev/unicornio-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=unicorniodev.unicornio-dark" diff --git a/themes/unieye.yaml b/themes/unieye.yaml index 94cfe816..54ebbc25 100644 --- a/themes/unieye.yaml +++ b/themes/unieye.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hbthen3rd.unieye" version: "1.1.0" installs: 1882 + rating: 5 + ratings: 1 author: "hb" repo: "https://github.com/hbthen3rd/unieye-vscode" url: "https://marketplace.visualstudio.com/items?itemName=hbthen3rd.unieye" diff --git a/themes/unity-theme.yaml b/themes/unity-theme.yaml index 77ef1c58..ef3e2a46 100644 --- a/themes/unity-theme.yaml +++ b/themes/unity-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TallesSouza.Unity-theme" version: "1.1.0" installs: 1392 + rating: 5 + ratings: 1 author: "Talles Souza" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TallesSouza.Unity-theme" diff --git a/themes/universe-italic.yaml b/themes/universe-gray.yaml similarity index 58% rename from themes/universe-italic.yaml rename to themes/universe-gray.yaml index 946d7def..88ed6c41 100644 --- a/themes/universe-italic.yaml +++ b/themes/universe-gray.yaml @@ -1,23 +1,25 @@ -name: "Universe Italic" +name: "Universe Gray" source: marketplace_id: "MatiasOlivera.universe" version: "1.9.0" installs: 20199 + rating: 4.75 + ratings: 8 author: "Matías Olivera" repo: "https://github.com/MatiasOlivera/universe-theme" url: "https://marketplace.visualstudio.com/items?itemName=MatiasOlivera.universe" colors: - bg: "#0E1729" - fg: "#D6D9E0" - black: "#2E384D" + bg: "#1A1A1A" + fg: "#DDDDDD" + black: "#373737" red: "#FFA2A2" green: "#BBD99E" yellow: "#E6D791" blue: "#9AC6F2" magenta: "#C1A2FF" cyan: "#92D8E6" - white: "#D6D9E0" - brightBlack: "#3D485F" + white: "#DDDDDD" + brightBlack: "#4C4C4C" brightRed: "#FFB3B3" brightGreen: "#C9E2AF" brightYellow: "#ECE0A5" @@ -28,23 +30,23 @@ colors: meta: mode: "dark" accent: "magenta" - hue: 263 + hue: null pair: null contrast: - fg: 82.4 + fg: 84.7 black: 0 - red: 64.9 - green: 76.7 - yellow: 80.9 - blue: 68.5 - magenta: 59.6 - cyan: 75.2 - white: 82.4 - brightBlack: 10.2 - brightRed: 71.4 - brightGreen: 82.9 - brightYellow: 86.3 - brightBlue: 75.2 - brightMagenta: 67.2 - brightCyan: 80.8 - brightWhite: 98.3 + red: 64.7 + green: 76.4 + yellow: 80.6 + blue: 68.3 + magenta: 59.3 + cyan: 74.9 + white: 84.7 + brightBlack: 11.4 + brightRed: 71.2 + brightGreen: 82.7 + brightYellow: 86 + brightBlue: 74.9 + brightMagenta: 67 + brightCyan: 80.5 + brightWhite: 98 diff --git a/themes/universe-purple.yaml b/themes/universe-purple.yaml new file mode 100644 index 00000000..9e67f88c --- /dev/null +++ b/themes/universe-purple.yaml @@ -0,0 +1,52 @@ +name: "Universe Purple" +source: + marketplace_id: "MatiasOlivera.universe" + version: "1.9.0" + installs: 20199 + rating: 4.75 + ratings: 8 + author: "Matías Olivera" + repo: "https://github.com/MatiasOlivera/universe-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MatiasOlivera.universe" +colors: + bg: "#150E29" + fg: "#D8D5DF" + black: "#362E4D" + red: "#FFA2A2" + green: "#BBD99E" + yellow: "#E6D791" + blue: "#9AC6F2" + magenta: "#C1A2FF" + cyan: "#92D8E6" + white: "#D8D5DF" + brightBlack: "#463D5F" + brightRed: "#FFB3B3" + brightGreen: "#C9E2AF" + brightYellow: "#ECE0A5" + brightBlue: "#ACD1F5" + brightMagenta: "#CCB3FF" + brightCyan: "#A5E0EC" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "magenta" + hue: 293 + pair: null + contrast: + fg: 81.2 + black: 0 + red: 65.3 + green: 77 + yellow: 81.3 + blue: 68.9 + magenta: 59.9 + cyan: 75.6 + white: 81.2 + brightBlack: 8.5 + brightRed: 71.8 + brightGreen: 83.3 + brightYellow: 86.7 + brightBlue: 75.5 + brightMagenta: 67.6 + brightCyan: 81.2 + brightWhite: 98.6 diff --git a/themes/universe.yaml b/themes/universe.yaml index ce978887..417207e4 100644 --- a/themes/universe.yaml +++ b/themes/universe.yaml @@ -1,50 +1,52 @@ name: "Universe" source: - marketplace_id: "terkoshi.UN1VERSE" - version: "1.0.0" - installs: 24 - author: "Terkoshi646" - repo: "https://github.com/Terkoshi" - url: "https://marketplace.visualstudio.com/items?itemName=terkoshi.UN1VERSE" + marketplace_id: "MatiasOlivera.universe" + version: "1.9.0" + installs: 20199 + rating: 4.75 + ratings: 8 + author: "Matías Olivera" + repo: "https://github.com/MatiasOlivera/universe-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MatiasOlivera.universe" colors: - bg: "#1D010F" - fg: "#62C07A" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" + bg: "#0E1729" + fg: "#D6D9E0" + black: "#2E384D" + red: "#FFA2A2" + green: "#BBD99E" + yellow: "#E6D791" + blue: "#9AC6F2" + magenta: "#C1A2FF" + cyan: "#92D8E6" + white: "#D6D9E0" + brightBlack: "#3D485F" + brightRed: "#FFB3B3" + brightGreen: "#C9E2AF" + brightYellow: "#ECE0A5" + brightBlue: "#ACD1F5" + brightMagenta: "#CCB3FF" + brightCyan: "#A5E0EC" + brightWhite: "#F2F2F2" meta: mode: "dark" - accent: "pink" - hue: 351 + accent: "magenta" + hue: 263 pair: null contrast: - fg: 57.6 + fg: 82.4 black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28 - magenta: 30.3 - cyan: 48.1 - white: 90.6 - brightBlack: 22.6 - brightRed: 39.2 - brightGreen: 64.1 - brightYellow: 96.2 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.6 + red: 64.9 + green: 76.7 + yellow: 80.9 + blue: 68.5 + magenta: 59.6 + cyan: 75.2 + white: 82.4 + brightBlack: 10.2 + brightRed: 71.4 + brightGreen: 82.9 + brightYellow: 86.3 + brightBlue: 75.2 + brightMagenta: 67.2 + brightCyan: 80.8 + brightWhite: 98.3 diff --git a/themes/unlight-v-2.yaml b/themes/unlight-v-2.yaml index d1d74340..840c2979 100644 --- a/themes/unlight-v-2.yaml +++ b/themes/unlight-v-2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "essequiel.unlighted" version: "1.2.0" installs: 40 + rating: 0 + ratings: 0 author: "essequiel" repo: "https://github.com/essequie1/unlighted" url: "https://marketplace.visualstudio.com/items?itemName=essequiel.unlighted" diff --git a/themes/untitled-fork-fork.yaml b/themes/untitled-fork-fork.yaml index 10c0a7a2..5ab1b317 100644 --- a/themes/untitled-fork-fork.yaml +++ b/themes/untitled-fork-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xynny.aquaticblue-theme" version: "0.0.1" installs: 1105 + rating: 0 + ratings: 0 author: "xynny" repo: "https://github.com/xynnylol/vsthemes" url: "https://marketplace.visualstudio.com/items?itemName=xynny.aquaticblue-theme" diff --git a/themes/untitled-fork.yaml b/themes/untitled-fork.yaml index d28adce9..1ff34da2 100644 --- a/themes/untitled-fork.yaml +++ b/themes/untitled-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FabianLeGair.earthen-bog" version: "0.0.2" installs: 71 + rating: 0 + ratings: 0 author: "Fabian LeGair" repo: null url: "https://marketplace.visualstudio.com/items?itemName=FabianLeGair.earthen-bog" diff --git a/themes/untitled.yaml b/themes/untitled.yaml index 847fe032..2873cd7f 100644 --- a/themes/untitled.yaml +++ b/themes/untitled.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "invillia.Code-Like-A-Rainbow" version: "0.3.0" installs: 10478 + rating: 4 + ratings: 5 author: "invillia" repo: null url: "https://marketplace.visualstudio.com/items?itemName=invillia.Code-Like-A-Rainbow" diff --git a/themes/unyodusk.yaml b/themes/unyodusk.yaml index c865c521..df8c78f7 100644 --- a/themes/unyodusk.yaml +++ b/themes/unyodusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "UnyoDusk.unyocorp" version: "1.0.3" installs: 131 + rating: 0 + ratings: 0 author: "UnyoDusk" repo: "https://github.com/firdodev/unyodusk" url: "https://marketplace.visualstudio.com/items?itemName=UnyoDusk.unyocorp" diff --git a/themes/updog-light.yaml b/themes/updog-light.yaml index b0b5239e..3e695128 100644 --- a/themes/updog-light.yaml +++ b/themes/updog-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "douggrubba.updog" version: "1.5.1" installs: 206 + rating: 5 + ratings: 1 author: "douggrubba" repo: "https://github.com/douggrubba/updog-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=douggrubba.updog" diff --git a/themes/updog.yaml b/themes/updog.yaml index 5961c422..24bd9eee 100644 --- a/themes/updog.yaml +++ b/themes/updog.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "douggrubba.updog" version: "1.5.1" installs: 206 + rating: 5 + ratings: 1 author: "douggrubba" repo: "https://github.com/douggrubba/updog-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=douggrubba.updog" diff --git a/themes/upward-dark-legacy.yaml b/themes/upward-dark-legacy.yaml new file mode 100644 index 00000000..f6c80281 --- /dev/null +++ b/themes/upward-dark-legacy.yaml @@ -0,0 +1,52 @@ +name: "Upward Dark Legacy" +source: + marketplace_id: "upward-solutions.upward-theme" + version: "3.1.0" + installs: 124 + rating: 0 + ratings: 0 + author: "Upward Solutions" + repo: "https://github.com/Upward-Solutions-Agency/VS-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=upward-solutions.upward-theme" +colors: + bg: "#000000" + fg: "#949494" + black: "#6D6D6D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#BE8F00" + blue: "#1C72D1" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C9C9C9" + brightBlack: "#8A8A8A" + brightRed: "#FF6767" + brightGreen: "#33FFAD" + brightYellow: "#FFCB33" + brightBlue: "#62ADFF" + brightMagenta: "#FF86FF" + brightCyan: "#32D7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 44.6 + black: 26.1 + red: 27.7 + green: 54 + yellow: 46.1 + blue: 29 + magenta: 30.8 + cyan: 48.6 + white: 73.9 + brightBlack: 39.6 + brightRed: 48.2 + brightGreen: 89.1 + brightYellow: 79.3 + brightBlue: 56 + brightMagenta: 62.2 + brightCyan: 72.7 + brightWhite: 107.9 diff --git a/themes/upward-dark.yaml b/themes/upward-dark.yaml new file mode 100644 index 00000000..36d0116d --- /dev/null +++ b/themes/upward-dark.yaml @@ -0,0 +1,52 @@ +name: "Upward Dark" +source: + marketplace_id: "upward-solutions.upward-theme" + version: "3.1.0" + installs: 124 + rating: 0 + ratings: 0 + author: "Upward Solutions" + repo: "https://github.com/Upward-Solutions-Agency/VS-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=upward-solutions.upward-theme" +colors: + bg: "#000000" + fg: "#C5C5C5" + black: "#707070" + red: "#E56C7C" + green: "#439D49" + yellow: "#DDAA3C" + blue: "#45B0DE" + magenta: "#D161D1" + cyan: "#1FB2B2" + white: "#E8E8E8" + brightBlack: "#ACABAB" + brightRed: "#EA8A97" + brightGreen: "#86EA8C" + brightYellow: "#E6C070" + brightBlue: "#81CAE9" + brightMagenta: "#EEA0EE" + brightCyan: "#52E0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 71.5 + black: 27.4 + red: 44.3 + green: 40.4 + yellow: 60.8 + blue: 53.8 + magenta: 41.8 + cyan: 51.6 + white: 92.9 + brightBlack: 56.9 + brightRed: 54.1 + brightGreen: 80.7 + brightYellow: 71.5 + brightBlue: 68.8 + brightMagenta: 65.7 + brightCyan: 76.1 + brightWhite: 107.9 diff --git a/themes/urara.yaml b/themes/urara.yaml index 1fc20210..1caf357f 100644 --- a/themes/urara.yaml +++ b/themes/urara.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "haxibami.urara-vscode" version: "0.2.0" installs: 2927 + rating: 5 + ratings: 2 author: "haxibami" repo: "https://github.com/haxibami/urara-vscode" url: "https://marketplace.visualstudio.com/items?itemName=haxibami.urara-vscode" diff --git a/themes/urban-couple.yaml b/themes/urban-couple.yaml index e81f2bd3..5aaca541 100644 --- a/themes/urban-couple.yaml +++ b/themes/urban-couple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/urban-forge.yaml b/themes/urban-forge.yaml index 1d91c360..8c1707d6 100644 --- a/themes/urban-forge.yaml +++ b/themes/urban-forge.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "UrbanForge.urbanforge-vscode-theme" version: "1.2.1" installs: 504 + rating: 5 + ratings: 2 author: "UrbanForge" repo: "https://github.com/rilex037/urbanforge-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=UrbanForge.urbanforge-vscode-theme" diff --git a/themes/urban-glow.yaml b/themes/urban-glow.yaml index 2b494bfd..49ad3027 100644 --- a/themes/urban-glow.yaml +++ b/themes/urban-glow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Ranfurly.urban-glow" version: "1.0.8" installs: 29 + rating: 0 + ratings: 0 author: "Ranfurly" repo: "https://github.com/ranfurIy/urban-glow" url: "https://marketplace.visualstudio.com/items?itemName=Ranfurly.urban-glow" diff --git a/themes/urbanjungle.yaml b/themes/urbanjungle.yaml new file mode 100644 index 00000000..1cb9e928 --- /dev/null +++ b/themes/urbanjungle.yaml @@ -0,0 +1,52 @@ +name: "UrbanJungle" +source: + marketplace_id: "KJS-Officials.urbanjungle" + version: "1.3.66" + installs: 198 + rating: 0 + ratings: 0 + author: "KJS - Officials" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=KJS-Officials.urbanjungle" +colors: + bg: "#FFFFFF" + fg: "#CBA9BA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 41.5 + black: 106 + red: 74 + green: 48 + yellow: 17 + blue: 73.3 + magenta: 70.9 + cyan: 53.3 + white: 12.9 + brightBlack: 78.8 + brightRed: 62.1 + brightGreen: 37.9 + brightYellow: 7.7 + brightBlue: 60.7 + brightMagenta: 55.4 + brightCyan: 45.7 + brightWhite: 12.9 diff --git a/themes/ursa.yaml b/themes/ursa.yaml new file mode 100644 index 00000000..bea41ac7 --- /dev/null +++ b/themes/ursa.yaml @@ -0,0 +1,52 @@ +name: "ursa" +source: + marketplace_id: "ursanor.ursa" + version: "0.0.2" + installs: 79 + rating: 0 + ratings: 0 + author: "ursanor" + repo: "https://github.com/OnurUrsar/ursa-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ursanor.ursa" +colors: + bg: "#1F1E13" + fg: "#EAEAEA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 103 + pair: null + contrast: + fg: 92.4 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 29 + cyan: 46.8 + white: 89.2 + brightBlack: 21.3 + brightRed: 37.8 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/user160.yaml b/themes/user160.yaml index f4fba091..f0f855f3 100644 --- a/themes/user160.yaml +++ b/themes/user160.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "user160-theme.user160-theme" version: "1.0.0" installs: 10 + rating: 0 + ratings: 0 author: "user160-theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=user160-theme.user160-theme" diff --git a/themes/userscape-contrast.yaml b/themes/userscape-contrast.yaml index c05525e7..9ae79d4b 100644 --- a/themes/userscape-contrast.yaml +++ b/themes/userscape-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/userscape-light.yaml b/themes/userscape-light.yaml index 63f8c597..7a811d16 100644 --- a/themes/userscape-light.yaml +++ b/themes/userscape-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/userscape.yaml b/themes/userscape.yaml index 9ecaf9b3..0c4b6ccb 100644 --- a/themes/userscape.yaml +++ b/themes/userscape.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/utheme.yaml b/themes/utheme.yaml index 5908d890..f4cb1292 100644 --- a/themes/utheme.yaml +++ b/themes/utheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "uEriic.utheme" version: "0.0.2" installs: 220 + rating: 5 + ratings: 1 author: "uEriic" repo: "https://github.com/uEriic/uTheme" url: "https://marketplace.visualstudio.com/items?itemName=uEriic.utheme" diff --git a/themes/utopia.yaml b/themes/utopia.yaml index 380f0dd9..3e17dfa3 100644 --- a/themes/utopia.yaml +++ b/themes/utopia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yingfc.yingfc" version: "0.0.2" installs: 188 + rating: 5 + ratings: 1 author: "yingfc" repo: "https://github.com/yingfc/utopia_color_theme" url: "https://marketplace.visualstudio.com/items?itemName=yingfc.yingfc" diff --git a/themes/uvadark-rahul-fork.yaml b/themes/uvadark-rahul-fork.yaml index 9796f333..92f5cfc7 100644 --- a/themes/uvadark-rahul-fork.yaml +++ b/themes/uvadark-rahul-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "syk.bluered" version: "0.0.1" installs: 52 + rating: 0 + ratings: 0 author: "syk" repo: null url: "https://marketplace.visualstudio.com/items?itemName=syk.bluered" diff --git a/themes/v-id-contrast.yaml b/themes/v-id-contrast.yaml index f1f9207f..69aa5680 100644 --- a/themes/v-id-contrast.yaml +++ b/themes/v-id-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "m1guelsb.void-dark-theme" version: "0.0.2" installs: 140 + rating: 0 + ratings: 0 author: "m1guelsb" repo: "https://github.com/m1guelsb/void-theme" url: "https://marketplace.visualstudio.com/items?itemName=m1guelsb.void-dark-theme" diff --git a/themes/v-id-soft.yaml b/themes/v-id-soft.yaml index 2c9088e7..eed3a8be 100644 --- a/themes/v-id-soft.yaml +++ b/themes/v-id-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "m1guelsb.void-dark-theme" version: "0.0.2" installs: 140 + rating: 0 + ratings: 0 author: "m1guelsb" repo: "https://github.com/m1guelsb/void-theme" url: "https://marketplace.visualstudio.com/items?itemName=m1guelsb.void-dark-theme" diff --git a/themes/v01d-theme-alternative.yaml b/themes/v01d-theme-alternative.yaml index dabf7096..d2b79c49 100644 --- a/themes/v01d-theme-alternative.yaml +++ b/themes/v01d-theme-alternative.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "victordev079.v01d-theme" version: "1.4.2" installs: 30 + rating: 0 + ratings: 0 author: "victorcarrillo.dev" repo: "https://github.com/victorcarrillodev/V01D-Theme" url: "https://marketplace.visualstudio.com/items?itemName=victordev079.v01d-theme" diff --git a/themes/v01d-theme.yaml b/themes/v01d-theme.yaml index eee1c6f3..00cf3025 100644 --- a/themes/v01d-theme.yaml +++ b/themes/v01d-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "victordev079.v01d-theme" version: "1.4.2" installs: 30 + rating: 0 + ratings: 0 author: "victorcarrillo.dev" repo: "https://github.com/victorcarrillodev/V01D-Theme" url: "https://marketplace.visualstudio.com/items?itemName=victordev079.v01d-theme" diff --git a/themes/v7.yaml b/themes/v7.yaml index 871ba204..c9525deb 100644 --- a/themes/v7.yaml +++ b/themes/v7.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Tazmaniaco.Tema" version: "0.0.7" installs: 663 + rating: 0 + ratings: 0 author: "Tazmaniaco" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Tazmaniaco.Tema" diff --git a/themes/vaatu.yaml b/themes/vaatu.yaml index 76363bf9..377031b1 100644 --- a/themes/vaatu.yaml +++ b/themes/vaatu.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Volskaya.irrelevant" version: "0.0.2" installs: 33 + rating: 0 + ratings: 0 author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" diff --git a/themes/vagalume-dev.yaml b/themes/vagalume-dev.yaml index 7b9c7739..ff10bf75 100644 --- a/themes/vagalume-dev.yaml +++ b/themes/vagalume-dev.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vagalumedev.vagalume-dev-theme" version: "1.0.1" installs: 375 + rating: 5 + ratings: 1 author: "Vagalume Dev" repo: "https://github.com/vagalumedev/vagalume-dev-vscode" url: "https://marketplace.visualstudio.com/items?itemName=vagalumedev.vagalume-dev-theme" diff --git a/themes/vagruvboxtheme-color-theme.yaml b/themes/vagruvboxtheme-color-theme.yaml index 297ccb38..9b7a1add 100644 --- a/themes/vagruvboxtheme-color-theme.yaml +++ b/themes/vagruvboxtheme-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MinchCoder.visual-assist-gruvbox-theme" version: "0.7.11" installs: 377 + rating: 5 + ratings: 1 author: "Minch Coder" repo: "https://github.com/Minchh/vscode-gruvbox-visualassist-theme" url: "https://marketplace.visualstudio.com/items?itemName=MinchCoder.visual-assist-gruvbox-theme" diff --git a/themes/vague-neovim-theme-extended-light.yaml b/themes/vague-neovim-theme-extended-light.yaml index ef499886..231890c5 100644 --- a/themes/vague-neovim-theme-extended-light.yaml +++ b/themes/vague-neovim-theme-extended-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EmmettHintz.Kanagawa-Vague" version: "0.1.6" installs: 1199 + rating: 0 + ratings: 0 author: "Emmett Hintz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.Kanagawa-Vague" diff --git a/themes/vague-neovim-theme-extended.yaml b/themes/vague-neovim-theme-extended.yaml index 119820eb..3800c0c7 100644 --- a/themes/vague-neovim-theme-extended.yaml +++ b/themes/vague-neovim-theme-extended.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "EmmettHintz.Kanagawa-Vague" version: "0.1.6" installs: 1199 + rating: 0 + ratings: 0 author: "Emmett Hintz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.Kanagawa-Vague" diff --git a/themes/vague.yaml b/themes/vague.yaml new file mode 100644 index 00000000..5a143928 --- /dev/null +++ b/themes/vague.yaml @@ -0,0 +1,52 @@ +name: "Vague" +source: + marketplace_id: "xavier-castro.vague-windsurf" + version: "1.0.0" + installs: 6 + rating: 0 + ratings: 0 + author: "Xavier Castro" + repo: "https://github.com/xavier-castro/vague-windsurf" + url: "https://marketplace.visualstudio.com/items?itemName=xavier-castro.vague-windsurf" +colors: + bg: "#141415" + fg: "#CDCDCD" + black: "#252530" + red: "#D8647E" + green: "#7FA563" + yellow: "#F3BE7C" + blue: "#6E94B2" + magenta: "#BB9DBD" + cyan: "#AEAED1" + white: "#CDCDCD" + brightBlack: "#606079" + brightRed: "#E08398" + brightGreen: "#99B782" + brightYellow: "#F5CB96" + brightBlue: "#8BA9C1" + brightMagenta: "#C9B1CA" + brightCyan: "#BEBEDA" + brightWhite: "#D7D7D7" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 75.5 + black: 0 + red: 39.2 + green: 47.1 + yellow: 72.3 + blue: 41.7 + magenta: 53.6 + cyan: 59.3 + white: 75.5 + brightBlack: 20.7 + brightRed: 49.5 + brightGreen: 57.7 + brightYellow: 78.5 + brightBlue: 52.9 + brightMagenta: 63.5 + brightCyan: 68 + brightWhite: 81.6 diff --git a/themes/valary.yaml b/themes/valary.yaml index 74e2bb80..3a89b1ff 100644 --- a/themes/valary.yaml +++ b/themes/valary.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fahadachaudhry.valary" version: "1.0.0" installs: 2082 + rating: 5 + ratings: 2 author: "Fahad Ashraf Chaudhry" repo: "https://github.com/fahadachaudhry/valary-vscode" url: "https://marketplace.visualstudio.com/items?itemName=fahadachaudhry.valary" diff --git a/themes/valkthor-dark-theme.yaml b/themes/valkthor-dark-theme.yaml index bdf192c2..1e90553a 100644 --- a/themes/valkthor-dark-theme.yaml +++ b/themes/valkthor-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Valkthor.ValkthorTheme" version: "1.3.0" installs: 73 + rating: 0 + ratings: 0 author: "Valkthor" repo: "https://github.com/Valkthor/ValkthorTheme-vsCode" url: "https://marketplace.visualstudio.com/items?itemName=Valkthor.ValkthorTheme" diff --git a/themes/valley.yaml b/themes/valley.yaml new file mode 100644 index 00000000..7b49995f --- /dev/null +++ b/themes/valley.yaml @@ -0,0 +1,52 @@ +name: "Valley" +source: + marketplace_id: "TimGrochowski.valley-vscode" + version: "0.4.0" + installs: 4889 + rating: 5 + ratings: 6 + author: "Tim Grochowski" + repo: "https://github.com/TimGr/valley-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TimGrochowski.valley-vscode" +colors: + bg: "#1E1E1F" + fg: "#BFC7CF" + black: "#282829" + red: "#D66A81" + green: "#78B98A" + yellow: "#D8C67E" + blue: "#5B89DB" + magenta: "#DF91CA" + cyan: "#57B6CD" + white: "#FAFAFA" + brightBlack: "#656567" + brightRed: "#F59EB1" + brightGreen: "#A0E4B2" + brightYellow: "#F5E8B2" + brightBlue: "#91B7F8" + brightMagenta: "#FACCEE" + brightCyan: "#84DCF0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 70.2 + black: 0 + red: 39.2 + green: 54.9 + yellow: 70.3 + blue: 37.7 + magenta: 54.6 + cyan: 54.3 + white: 102.7 + brightBlack: 20.8 + brightRed: 61.5 + brightGreen: 79 + brightYellow: 90.8 + brightBlue: 61 + brightMagenta: 82 + brightCyan: 75.8 + brightWhite: 102.7 diff --git a/themes/valorant-theme-darker.yaml b/themes/valorant-theme-darker.yaml index acbe6ee6..935b0cb2 100644 --- a/themes/valorant-theme-darker.yaml +++ b/themes/valorant-theme-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TasnimulHasan.valorant-theme" version: "4.2.4" installs: 8382 + rating: 5 + ratings: 2 author: "Tasnimul Hasan" repo: "https://github.com/Tasnimul-Hasan/valorant-theme" url: "https://marketplace.visualstudio.com/items?itemName=TasnimulHasan.valorant-theme" diff --git a/themes/valorant-theme-remasterd.yaml b/themes/valorant-theme-remasterd.yaml index 84469578..5dc4ebc9 100644 --- a/themes/valorant-theme-remasterd.yaml +++ b/themes/valorant-theme-remasterd.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TasnimulHasan.valorant-theme" version: "4.2.4" installs: 8382 + rating: 5 + ratings: 2 author: "Tasnimul Hasan" repo: "https://github.com/Tasnimul-Hasan/valorant-theme" url: "https://marketplace.visualstudio.com/items?itemName=TasnimulHasan.valorant-theme" diff --git a/themes/vampurr.yaml b/themes/vampurr.yaml index ad900157..bc95f785 100644 --- a/themes/vampurr.yaml +++ b/themes/vampurr.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Sajjad.vampurr" version: "1.2.0" installs: 71 + rating: 0 + ratings: 0 author: "Sajjad" repo: "https://github.com/sajadabedi/vampurr" url: "https://marketplace.visualstudio.com/items?itemName=Sajjad.vampurr" diff --git a/themes/van-gogh-theme.yaml b/themes/van-gogh-theme.yaml index 3e40c38e..f2b6e40c 100644 --- a/themes/van-gogh-theme.yaml +++ b/themes/van-gogh-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kyawzinhtet.van-gogh" version: "0.0.8" installs: 9 + rating: 5 + ratings: 2 author: "Kyaw Zin Htet" repo: "https://github.com/kyawzinhtett/Van-Gogh-Theme" url: "https://marketplace.visualstudio.com/items?itemName=kyawzinhtet.van-gogh" diff --git a/themes/vanguard-strike.yaml b/themes/vanguard-strike.yaml new file mode 100644 index 00000000..71c194a3 --- /dev/null +++ b/themes/vanguard-strike.yaml @@ -0,0 +1,52 @@ +name: "Vanguard-Strike" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#090504" + fg: "#F5ECEB" + black: "#090504" + red: "#DB0000" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FD3A37" + magenta: "#FD3A37" + cyan: "#29C3A0" + white: "#F5ECEB" + brightBlack: "#090504" + brightRed: "#DB0000" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FD3A37" + brightMagenta: "#FD3A37" + brightCyan: "#29C3A0" + brightWhite: "#F5ECEB" +meta: + mode: "dark" + accent: "orange" + hue: 38 + pair: null + contrast: + fg: 96.6 + black: 0 + red: 28.7 + green: 58.6 + yellow: 52.7 + blue: 39.8 + magenta: 39.8 + cyan: 58.6 + white: 96.6 + brightBlack: 0 + brightRed: 28.7 + brightGreen: 58.6 + brightYellow: 52.7 + brightBlue: 39.8 + brightMagenta: 39.8 + brightCyan: 58.6 + brightWhite: 96.6 diff --git a/themes/vanilla-jade.yaml b/themes/vanilla-jade.yaml index 14797899..d6659621 100644 --- a/themes/vanilla-jade.yaml +++ b/themes/vanilla-jade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "danjoa.cdr4vsc" version: "4.2.7" installs: 5204 + rating: 0 + ratings: 0 author: "danjoa" repo: "private" url: "https://marketplace.visualstudio.com/items?itemName=danjoa.cdr4vsc" diff --git a/themes/vanilla.yaml b/themes/vanilla.yaml index e7474d86..f19ed2c6 100644 --- a/themes/vanilla.yaml +++ b/themes/vanilla.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "danjoa.cdr4vsc" version: "4.2.7" installs: 5204 + rating: 0 + ratings: 0 author: "danjoa" repo: "private" url: "https://marketplace.visualstudio.com/items?itemName=danjoa.cdr4vsc" diff --git a/themes/vapor.yaml b/themes/vapor.yaml index 96b9d2bd..d36ee420 100644 --- a/themes/vapor.yaml +++ b/themes/vapor.yaml @@ -1,50 +1,52 @@ -name: "Vapor" +name: "vapor" source: - marketplace_id: "SushyDev.vapor-theme" - version: "0.0.3" - installs: 1106 - author: "SushyDev" + marketplace_id: "Swerve.vapor-color-theme" + version: "0.0.1" + installs: 2 + rating: 0 + ratings: 0 + author: "Swerve" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=SushyDev.vapor-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Swerve.vapor-color-theme" colors: - bg: "#121212" - fg: "#D4D4D4" - black: "#000000" - red: "#E53935" - green: "#43A047" - yellow: "#FFEB3B" - blue: "#1E88E5" - magenta: "#8E24AA" - cyan: "#00ACC1" - white: "#DEDEDE" - brightBlack: "#666666" - brightRed: "#E57373" - brightGreen: "#81C784" - brightYellow: "#FFF176" - brightBlue: "#64B5F6" - brightMagenta: "#BA68C8" - brightCyan: "#00BCD4" + bg: "#070825" + fg: "#46BDFF" + black: "#181A1F" + red: "#FF16B0" + green: "#848BBD" + yellow: "#FCEE54" + blue: "#46BDFF" + magenta: "#FF92DF" + cyan: "#DF81FC" + white: "#FFFFFF" + brightBlack: "#FF16B0" + brightRed: "#F85353" + brightGreen: "#FCEE54" + brightYellow: "#FFFFFF" + brightBlue: "#46BDFF" + brightMagenta: "#FF92DF" + brightCyan: "#FF901F" brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "orange" - hue: null + accent: "red" + hue: 275 pair: null contrast: - fg: 79.9 + fg: 61.2 black: 0 - red: 33.4 - green: 41 - yellow: 92.8 - blue: 37.3 - magenta: 18.2 - cyan: 49 - white: 86.1 - brightBlack: 22.5 - brightRed: 45.2 - brightGreen: 62.9 - brightYellow: 96.3 - brightBlue: 58.2 - brightMagenta: 38.3 - brightCyan: 56.9 - brightWhite: 107.3 + red: 41.2 + green: 41.3 + yellow: 94.2 + blue: 61.2 + magenta: 63.3 + cyan: 54.5 + white: 107.6 + brightBlack: 41.2 + brightRed: 42.1 + brightGreen: 94.2 + brightYellow: 107.6 + brightBlue: 61.2 + brightMagenta: 63.3 + brightCyan: 57.6 + brightWhite: 107.6 diff --git a/themes/vaporizer-alice-dark.yaml b/themes/vaporizer-alice-dark.yaml index 962d9062..d53852cd 100644 --- a/themes/vaporizer-alice-dark.yaml +++ b/themes/vaporizer-alice-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-alice-light.yaml b/themes/vaporizer-alice-light.yaml index 3552679d..e046c2d5 100644 --- a/themes/vaporizer-alice-light.yaml +++ b/themes/vaporizer-alice-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-ava-light.yaml b/themes/vaporizer-ava-light.yaml index e5fabdd1..824642b4 100644 --- a/themes/vaporizer-ava-light.yaml +++ b/themes/vaporizer-ava-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-batman-dark-2022.yaml b/themes/vaporizer-batman-dark-2022.yaml index ee324516..91a09578 100644 --- a/themes/vaporizer-batman-dark-2022.yaml +++ b/themes/vaporizer-batman-dark-2022.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-batman-dark-night.yaml b/themes/vaporizer-batman-dark-night.yaml index 662c92d5..d096a625 100644 --- a/themes/vaporizer-batman-dark-night.yaml +++ b/themes/vaporizer-batman-dark-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-cloudy-light.yaml b/themes/vaporizer-cloudy-light.yaml index ba13316e..323db9b4 100644 --- a/themes/vaporizer-cloudy-light.yaml +++ b/themes/vaporizer-cloudy-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-cobalt-dark.yaml b/themes/vaporizer-cobalt-dark.yaml index 4df666b2..11b4bdea 100644 --- a/themes/vaporizer-cobalt-dark.yaml +++ b/themes/vaporizer-cobalt-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-crescent-dark.yaml b/themes/vaporizer-crescent-dark.yaml index 591f4c31..1eb26ad6 100644 --- a/themes/vaporizer-crescent-dark.yaml +++ b/themes/vaporizer-crescent-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-cherry.yaml b/themes/vaporizer-dark-cherry.yaml index 341bf538..b1ea9549 100644 --- a/themes/vaporizer-dark-cherry.yaml +++ b/themes/vaporizer-dark-cherry.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-coffee.yaml b/themes/vaporizer-dark-coffee.yaml index 3a775297..dd7c117e 100644 --- a/themes/vaporizer-dark-coffee.yaml +++ b/themes/vaporizer-dark-coffee.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-cool-1.yaml b/themes/vaporizer-dark-cool-1.yaml index 67c51b4a..45097f77 100644 --- a/themes/vaporizer-dark-cool-1.yaml +++ b/themes/vaporizer-dark-cool-1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-cool-2.yaml b/themes/vaporizer-dark-cool-2.yaml index 451954ce..2512ab5b 100644 --- a/themes/vaporizer-dark-cool-2.yaml +++ b/themes/vaporizer-dark-cool-2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-cop.yaml b/themes/vaporizer-dark-cop.yaml index d1c7df78..5e19878f 100644 --- a/themes/vaporizer-dark-cop.yaml +++ b/themes/vaporizer-dark-cop.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-cyber-neon-1.yaml b/themes/vaporizer-dark-cyber-neon-1.yaml index 848434d7..5125effc 100644 --- a/themes/vaporizer-dark-cyber-neon-1.yaml +++ b/themes/vaporizer-dark-cyber-neon-1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-cyber-neon-2.yaml b/themes/vaporizer-dark-cyber-neon-2.yaml index b8925510..94572daf 100644 --- a/themes/vaporizer-dark-cyber-neon-2.yaml +++ b/themes/vaporizer-dark-cyber-neon-2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-cyber-neon-3.yaml b/themes/vaporizer-dark-cyber-neon-3.yaml index 109bbb6d..1b5febc0 100644 --- a/themes/vaporizer-dark-cyber-neon-3.yaml +++ b/themes/vaporizer-dark-cyber-neon-3.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-ivy.yaml b/themes/vaporizer-dark-ivy.yaml index 170e8969..eb80ac5a 100644 --- a/themes/vaporizer-dark-ivy.yaml +++ b/themes/vaporizer-dark-ivy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-joker.yaml b/themes/vaporizer-dark-joker.yaml index 1203f852..94b42a08 100644 --- a/themes/vaporizer-dark-joker.yaml +++ b/themes/vaporizer-dark-joker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-matrix-2.yaml b/themes/vaporizer-dark-matrix-2.yaml new file mode 100644 index 00000000..697eeb5a --- /dev/null +++ b/themes/vaporizer-dark-matrix-2.yaml @@ -0,0 +1,52 @@ +name: "Vaporizer Dark Matrix 2" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35746 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#000201" + fg: "#D2FFC2" + black: "#86F500" + red: "#58AB05" + green: "#009232" + yellow: "#488A07" + blue: "#1F7D1D" + magenta: "#0EE261" + cyan: "#50A322" + white: "#E5E5E5" + brightBlack: "#AAF26D" + brightRed: "#447134" + brightGreen: "#009F20" + brightYellow: "#60E814" + brightBlue: "#69BC67" + brightMagenta: "#82D670" + brightCyan: "#9ED586" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 165 + pair: null + contrast: + fg: 99.6 + black: 84.9 + red: 46.9 + green: 34.5 + yellow: 32.4 + blue: 26.2 + magenta: 71.9 + cyan: 43.1 + white: 91 + brightBlack: 86.9 + brightRed: 23.2 + brightGreen: 39.8 + brightYellow: 76.1 + brightBlue: 56.2 + brightMagenta: 70 + brightCyan: 72.3 + brightWhite: 91 diff --git a/themes/vaporizer-dark-monterey.yaml b/themes/vaporizer-dark-monterey.yaml index 0371b634..62a97955 100644 --- a/themes/vaporizer-dark-monterey.yaml +++ b/themes/vaporizer-dark-monterey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-painting.yaml b/themes/vaporizer-dark-painting.yaml index b066e4fc..d8ecf4d3 100644 --- a/themes/vaporizer-dark-painting.yaml +++ b/themes/vaporizer-dark-painting.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-pansy.yaml b/themes/vaporizer-dark-pansy.yaml index 34dd786a..3216af63 100644 --- a/themes/vaporizer-dark-pansy.yaml +++ b/themes/vaporizer-dark-pansy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-red.yaml b/themes/vaporizer-dark-red.yaml new file mode 100644 index 00000000..a6fccde8 --- /dev/null +++ b/themes/vaporizer-dark-red.yaml @@ -0,0 +1,52 @@ +name: "Vaporizer Dark Red" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35746 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" +colors: + bg: "#1D2024" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#8E7F7F" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 105.8 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 33.8 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 105.8 diff --git a/themes/vaporizer-dark-stabilo.yaml b/themes/vaporizer-dark-stabilo.yaml index 09307eb4..cdad5089 100644 --- a/themes/vaporizer-dark-stabilo.yaml +++ b/themes/vaporizer-dark-stabilo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-dark-turquoise.yaml b/themes/vaporizer-dark-turquoise.yaml index 408b19c3..0e829575 100644 --- a/themes/vaporizer-dark-turquoise.yaml +++ b/themes/vaporizer-dark-turquoise.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-epic-red-dark.yaml b/themes/vaporizer-epic-red-dark.yaml index 94f2b776..6c9c1efa 100644 --- a/themes/vaporizer-epic-red-dark.yaml +++ b/themes/vaporizer-epic-red-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-fonc-dark.yaml b/themes/vaporizer-fonc-dark.yaml index 32f3abe4..21e7b71b 100644 --- a/themes/vaporizer-fonc-dark.yaml +++ b/themes/vaporizer-fonc-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-frozen-dark.yaml b/themes/vaporizer-frozen-dark.yaml index fede74a8..05d27c85 100644 --- a/themes/vaporizer-frozen-dark.yaml +++ b/themes/vaporizer-frozen-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-golgi-dark.yaml b/themes/vaporizer-golgi-dark.yaml index 0050e8b6..fccf1fbb 100644 --- a/themes/vaporizer-golgi-dark.yaml +++ b/themes/vaporizer-golgi-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-half-moon-dark.yaml b/themes/vaporizer-half-moon-dark.yaml index 21a8a8dd..e28ac246 100644 --- a/themes/vaporizer-half-moon-dark.yaml +++ b/themes/vaporizer-half-moon-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-lemonade-light.yaml b/themes/vaporizer-lemonade-light.yaml index bfc9380e..c2210fde 100644 --- a/themes/vaporizer-lemonade-light.yaml +++ b/themes/vaporizer-lemonade-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-lemonade-solarized-light.yaml b/themes/vaporizer-lemonade-solarized-light.yaml index 00f97c9d..71d81f2c 100644 --- a/themes/vaporizer-lemonade-solarized-light.yaml +++ b/themes/vaporizer-lemonade-solarized-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-milk-light.yaml b/themes/vaporizer-milk-light.yaml index 99a7131f..9f97e700 100644 --- a/themes/vaporizer-milk-light.yaml +++ b/themes/vaporizer-milk-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-mini-blue-light.yaml b/themes/vaporizer-mini-blue-light.yaml index 47d340ec..533bbb08 100644 --- a/themes/vaporizer-mini-blue-light.yaml +++ b/themes/vaporizer-mini-blue-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-minimalism-light.yaml b/themes/vaporizer-minimalism-light.yaml index 47d72a89..addc6c8b 100644 --- a/themes/vaporizer-minimalism-light.yaml +++ b/themes/vaporizer-minimalism-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-modern-light.yaml b/themes/vaporizer-modern-light.yaml index 15a92ad4..1886712d 100644 --- a/themes/vaporizer-modern-light.yaml +++ b/themes/vaporizer-modern-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-moon-light-dark.yaml b/themes/vaporizer-moon-light-dark.yaml index a7907127..ac970fb7 100644 --- a/themes/vaporizer-moon-light-dark.yaml +++ b/themes/vaporizer-moon-light-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-phosphoric-blue.yaml b/themes/vaporizer-phosphoric-blue.yaml index 586cc463..62336861 100644 --- a/themes/vaporizer-phosphoric-blue.yaml +++ b/themes/vaporizer-phosphoric-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-purple-gray-dark.yaml b/themes/vaporizer-purple-gray-dark.yaml index a8faca4c..5d3b053b 100644 --- a/themes/vaporizer-purple-gray-dark.yaml +++ b/themes/vaporizer-purple-gray-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-soft-light.yaml b/themes/vaporizer-soft-light.yaml index a5dd3ec9..fc77c8b8 100644 --- a/themes/vaporizer-soft-light.yaml +++ b/themes/vaporizer-soft-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-splash-dark.yaml b/themes/vaporizer-splash-dark.yaml index cdd1be82..8d011ec2 100644 --- a/themes/vaporizer-splash-dark.yaml +++ b/themes/vaporizer-splash-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporizer-turquoise-light.yaml b/themes/vaporizer-turquoise-light.yaml index 09f81945..a318d00c 100644 --- a/themes/vaporizer-turquoise-light.yaml +++ b/themes/vaporizer-turquoise-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Vaporizer.vaporizer-dark" version: "2.1.9" installs: 35746 + rating: 5 + ratings: 6 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" diff --git a/themes/vaporwave.yaml b/themes/vaporwave.yaml index 69c1437c..6657a7aa 100644 --- a/themes/vaporwave.yaml +++ b/themes/vaporwave.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "andrei-isvoran96.vaporwave-theme" version: "1.0.2" installs: 75 + rating: 5 + ratings: 1 author: "Andrei Isvoran" repo: "https://github.com/andrei-isvoran96/vaporwave" url: "https://marketplace.visualstudio.com/items?itemName=andrei-isvoran96.vaporwave-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 283 + pair: null contrast: fg: 92.6 black: 0 diff --git a/themes/vaquita.yaml b/themes/vaquita.yaml index 19fdc511..41068c4f 100644 --- a/themes/vaquita.yaml +++ b/themes/vaquita.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anemones.anemone-colors" version: "0.0.2" installs: 378 + rating: 0 + ratings: 0 author: "anemones" repo: "https://github.com/radio-alice/anemone-colors" url: "https://marketplace.visualstudio.com/items?itemName=anemones.anemone-colors" diff --git a/themes/varlet-dark.yaml b/themes/varlet-dark.yaml index dba69b32..a3aad07f 100644 --- a/themes/varlet-dark.yaml +++ b/themes/varlet-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "haoziqaq.vscode-theme-varlet" version: "0.0.14" installs: 351 + rating: 0 + ratings: 0 author: "haoziqaq" repo: "https://github.com/varletjs/vscode-theme-varlet" url: "https://marketplace.visualstudio.com/items?itemName=haoziqaq.vscode-theme-varlet" diff --git a/themes/vase-with-twelve-sunflowers.yaml b/themes/vase-with-twelve-sunflowers.yaml index af8ae408..84ebc260 100644 --- a/themes/vase-with-twelve-sunflowers.yaml +++ b/themes/vase-with-twelve-sunflowers.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "XadillaX.van-gogh-paintings" version: "1.0.0" installs: 959 + rating: 0 + ratings: 0 author: "XadillaX" repo: "https://github.com/XadillaX/vscode-mir2-colorscheme" url: "https://marketplace.visualstudio.com/items?itemName=XadillaX.van-gogh-paintings" diff --git a/themes/vasses-tricolor-theme.yaml b/themes/vasses-tricolor-theme.yaml index 1fb9efbf..0a64884c 100644 --- a/themes/vasses-tricolor-theme.yaml +++ b/themes/vasses-tricolor-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vassdeniss.vasses-tricolor-theme" version: "1.0.0" installs: 109 + rating: 0 + ratings: 0 author: "vassdeniss" repo: "https://github.com/vassdeniss/vasses-tricolor-theme" url: "https://marketplace.visualstudio.com/items?itemName=vassdeniss.vasses-tricolor-theme" diff --git a/themes/vd.yaml b/themes/vd.yaml new file mode 100644 index 00000000..5662ae2d --- /dev/null +++ b/themes/vd.yaml @@ -0,0 +1,52 @@ +name: "vd" +source: + marketplace_id: "Virtuos.virtuos-dark" + version: "1.0.3" + installs: 27 + rating: 5 + ratings: 1 + author: "Virtuos" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Virtuos.virtuos-dark" +colors: + bg: "#080808" + fg: "#F5F5F5" + black: "#868686" + red: "#FF5470" + green: "#0DBC79" + yellow: "#FFD300" + blue: "#2472C8" + magenta: "#C74DED" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF2020" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.2 + black: 37.6 + red: 44.7 + green: 53.9 + yellow: 82.5 + blue: 28.3 + magenta: 38.2 + cyan: 48.5 + white: 90.9 + brightBlack: 23 + brightRed: 38.1 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 107.8 diff --git a/themes/vegas-night-details-theme.yaml b/themes/vegas-night-details-theme.yaml index d78f89f9..2f4b66ea 100644 --- a/themes/vegas-night-details-theme.yaml +++ b/themes/vegas-night-details-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "robpco.vegas-night-details-theme" version: "0.2.2" installs: 1017 + rating: 5 + ratings: 1 author: "robpco" repo: "https://github.com/robertpeteuil/vegas-night-details-theme" url: "https://marketplace.visualstudio.com/items?itemName=robpco.vegas-night-details-theme" diff --git a/themes/vegetable-contrast.yaml b/themes/vegetable-contrast.yaml index 43f7ed82..f330ec1b 100644 --- a/themes/vegetable-contrast.yaml +++ b/themes/vegetable-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/vegetable-light.yaml b/themes/vegetable-light.yaml index dd3dde41..b49b508d 100644 --- a/themes/vegetable-light.yaml +++ b/themes/vegetable-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/vegetation.yaml b/themes/vegetation.yaml index ff477de2..9badab9b 100644 --- a/themes/vegetation.yaml +++ b/themes/vegetation.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samlazrak.vegetation" version: "1.1.0" installs: 966 + rating: 5 + ratings: 1 author: "samlazrak" repo: "https://github.com/samlazrak/vegetation" url: "https://marketplace.visualstudio.com/items?itemName=samlazrak.vegetation" diff --git a/themes/veil.yaml b/themes/veil.yaml index 2c80dc52..fbd25831 100644 --- a/themes/veil.yaml +++ b/themes/veil.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Priyaank.ether" version: "2.0.1" installs: 55 + rating: 0 + ratings: 0 author: "Priyaank" repo: "https://github.com/PRIYAANK2510/Ether" url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.ether" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 285 + pair: null contrast: fg: 22.8 black: 0 diff --git a/themes/veiled.yaml b/themes/veiled.yaml index 127cc61b..d9cea953 100644 --- a/themes/veiled.yaml +++ b/themes/veiled.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samanshaiza.veiled" version: "0.0.1" installs: 54 + rating: 0 + ratings: 0 author: "saman shaiza" repo: "https://github.com/samanshaiza004/veiled" url: "https://marketplace.visualstudio.com/items?itemName=samanshaiza.veiled" diff --git a/themes/veist.yaml b/themes/veist.yaml index 8387e2e9..3eea6428 100644 --- a/themes/veist.yaml +++ b/themes/veist.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "guilhermerodz.veist" version: "0.1.9" installs: 2882 + rating: 5 + ratings: 1 author: "Guilherme Rodz" repo: "https://github.com/guilhermerodz/veist-theme" url: "https://marketplace.visualstudio.com/items?itemName=guilhermerodz.veist" diff --git a/themes/vela-spectrum-colorblind-light.yaml b/themes/vela-spectrum-colorblind-light.yaml index 154e357f..85ac1325 100644 --- a/themes/vela-spectrum-colorblind-light.yaml +++ b/themes/vela-spectrum-colorblind-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.vela-spectrum" version: "0.3.7" installs: 75 + rating: 0 + ratings: 0 author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" diff --git a/themes/vela-spectrum-dark-colorblind.yaml b/themes/vela-spectrum-dark-colorblind.yaml index 60145404..46a384e9 100644 --- a/themes/vela-spectrum-dark-colorblind.yaml +++ b/themes/vela-spectrum-dark-colorblind.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.vela-spectrum" version: "0.3.7" installs: 75 + rating: 0 + ratings: 0 author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" diff --git a/themes/vela-spectrum-dark-dimmed.yaml b/themes/vela-spectrum-dark-dimmed.yaml index b6f903cb..1855c915 100644 --- a/themes/vela-spectrum-dark-dimmed.yaml +++ b/themes/vela-spectrum-dark-dimmed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.vela-spectrum" version: "0.3.7" installs: 75 + rating: 0 + ratings: 0 author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" diff --git a/themes/vela-spectrum-dark-tritanopia.yaml b/themes/vela-spectrum-dark-tritanopia.yaml index 2339995e..f508df6e 100644 --- a/themes/vela-spectrum-dark-tritanopia.yaml +++ b/themes/vela-spectrum-dark-tritanopia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.vela-spectrum" version: "0.3.7" installs: 75 + rating: 0 + ratings: 0 author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" diff --git a/themes/vela-spectrum-dark.yaml b/themes/vela-spectrum-dark.yaml index cea64ccb..a0127e81 100644 --- a/themes/vela-spectrum-dark.yaml +++ b/themes/vela-spectrum-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.vela-spectrum" version: "0.3.7" installs: 75 + rating: 0 + ratings: 0 author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" diff --git a/themes/vela-spectrum-dimmed-light.yaml b/themes/vela-spectrum-dimmed-light.yaml index 193515cd..65d7e200 100644 --- a/themes/vela-spectrum-dimmed-light.yaml +++ b/themes/vela-spectrum-dimmed-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.vela-spectrum" version: "0.3.7" installs: 75 + rating: 0 + ratings: 0 author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" diff --git a/themes/vela-spectrum-high-contrast-light.yaml b/themes/vela-spectrum-high-contrast-light.yaml index 5eb2bcea..aacc7b04 100644 --- a/themes/vela-spectrum-high-contrast-light.yaml +++ b/themes/vela-spectrum-high-contrast-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.vela-spectrum" version: "0.3.7" installs: 75 + rating: 0 + ratings: 0 author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" diff --git a/themes/vela-spectrum-high-contrast.yaml b/themes/vela-spectrum-high-contrast.yaml index d7d69cdc..15e1a54d 100644 --- a/themes/vela-spectrum-high-contrast.yaml +++ b/themes/vela-spectrum-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.vela-spectrum" version: "0.3.7" installs: 75 + rating: 0 + ratings: 0 author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" diff --git a/themes/vela-spectrum-light-tritanopia.yaml b/themes/vela-spectrum-light-tritanopia.yaml index 262bcfca..677f6052 100644 --- a/themes/vela-spectrum-light-tritanopia.yaml +++ b/themes/vela-spectrum-light-tritanopia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.vela-spectrum" version: "0.3.7" installs: 75 + rating: 0 + ratings: 0 author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" diff --git a/themes/vela-spectrum-light.yaml b/themes/vela-spectrum-light.yaml index 5ffc2df3..d1ca3fee 100644 --- a/themes/vela-spectrum-light.yaml +++ b/themes/vela-spectrum-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "telianedward.vela-spectrum" version: "0.3.7" installs: 75 + rating: 0 + ratings: 0 author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" diff --git a/themes/velourous.yaml b/themes/velourous.yaml index 5905aba8..e5a2fd08 100644 --- a/themes/velourous.yaml +++ b/themes/velourous.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arkarmintun.velourous" version: "1.0.2" installs: 21 + rating: 0 + ratings: 0 author: "Arkar MIn Tun" repo: "https://github.com/arkarmintun1/velourous" url: "https://marketplace.visualstudio.com/items?itemName=arkarmintun.velourous" diff --git a/themes/velvet-chrome.yaml b/themes/velvet-chrome.yaml index ff9866dd..06d91544 100644 --- a/themes/velvet-chrome.yaml +++ b/themes/velvet-chrome.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "willduque.velvet-chrome-theme" version: "0.0.3" installs: 16 + rating: 0 + ratings: 0 author: "Willian Duque" repo: "https://github.com/wduqu001/velvet-chrome-theme" url: "https://marketplace.visualstudio.com/items?itemName=willduque.velvet-chrome-theme" diff --git a/themes/velvet-thunder.yaml b/themes/velvet-thunder.yaml index 396a08f0..2802950d 100644 --- a/themes/velvet-thunder.yaml +++ b/themes/velvet-thunder.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "BuddyDeveloping.velvet-thunder" version: "0.2.2" installs: 1279 + rating: 0 + ratings: 0 author: "BuddyDeveloping" repo: "https://github.com/BuddyDeveloping/Velvet-Thunder" url: "https://marketplace.visualstudio.com/items?itemName=BuddyDeveloping.velvet-thunder" diff --git a/themes/venice-beach-sky.yaml b/themes/venice-beach-sky.yaml index f0ed13f1..4acca7e7 100644 --- a/themes/venice-beach-sky.yaml +++ b/themes/venice-beach-sky.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/venom-theme.yaml b/themes/venom-theme.yaml index b209641c..26216071 100644 --- a/themes/venom-theme.yaml +++ b/themes/venom-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "susanta96.venom-theme-vscode" version: "1.0.1" installs: 926 + rating: 5 + ratings: 2 author: "Susanta Chakraborty" repo: "https://github.com/susanta96/venom-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=susanta96.venom-theme-vscode" diff --git a/themes/vercel.yaml b/themes/vercel.yaml index ea2f971d..e3cb959f 100644 --- a/themes/vercel.yaml +++ b/themes/vercel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "natemcgrady.vercel-vscode-theme" version: "1.0.2" installs: 379 + rating: 0 + ratings: 0 author: "natemcgrady" repo: "https://github.com/sotan8/vercel-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=natemcgrady.vercel-vscode-theme" diff --git a/themes/verdant.yaml b/themes/verdant.yaml new file mode 100644 index 00000000..66703abf --- /dev/null +++ b/themes/verdant.yaml @@ -0,0 +1,50 @@ +name: "verdant" +source: + marketplace_id: "tylerjost.verdant" + version: "0.0.1" + installs: 76 + author: "tylerjost" + repo: "https://github.com/tylerjost/verdant" + url: "https://marketplace.visualstudio.com/items?itemName=tylerjost.verdant" +colors: + bg: "#00291B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 165 + pair: null + contrast: + fg: 77.7 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.8 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.2 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.2 + brightMagenta: 43.6 + brightCyan: 53.6 + brightWhite: 88.2 diff --git a/themes/verdantium.yaml b/themes/verdantium.yaml index 4e32f7d7..88d041ea 100644 --- a/themes/verdantium.yaml +++ b/themes/verdantium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PlutonicVoid.Verdantium" version: "0.0.1" installs: 13 + rating: 0 + ratings: 0 author: "PlutonicVoid" repo: "https://gitlab.com/peter_thesequel/Verdantium" url: "https://marketplace.visualstudio.com/items?itemName=PlutonicVoid.Verdantium" diff --git a/themes/verner.yaml b/themes/verner.yaml new file mode 100644 index 00000000..e29518c1 --- /dev/null +++ b/themes/verner.yaml @@ -0,0 +1,52 @@ +name: "Verner" +source: + marketplace_id: "avrumnoor.verner" + version: "1.0.4" + installs: 627 + rating: 0 + ratings: 0 + author: "Avrum Noor" + repo: "https://github.com/avrumnoor/Verner" + url: "https://marketplace.visualstudio.com/items?itemName=avrumnoor.verner" +colors: + bg: "#050F0E" + fg: "#F2E6E9" + black: "#0F0F0F" + red: "#E6274D" + green: "#91E673" + yellow: "#E62E7A" + blue: "#83E6B4" + magenta: "#E66C84" + cyan: "#27E6B0" + white: "#CED9D3" + brightBlack: "#171717" + brightRed: "#FF1342" + brightGreen: "#8FFF66" + brightYellow: "#FF1979" + brightBlue: "#78FFBB" + brightMagenta: "#FF456A" + brightCyan: "#12FFBC" + brightWhite: "#F2E6E9" +meta: + mode: "dark" + accent: "red" + hue: 188 + pair: null + contrast: + fg: 93.2 + black: 0 + red: 32.7 + green: 78.7 + yellow: 34.3 + blue: 79.4 + magenta: 44.4 + cyan: 75.8 + white: 81.6 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 91 + brightYellow: 39.1 + brightBlue: 91.6 + brightMagenta: 42.1 + brightCyan: 89 + brightWhite: 93.2 diff --git a/themes/version-1-0-5.yaml b/themes/version-1-0-5.yaml index d389cb43..49614d92 100644 --- a/themes/version-1-0-5.yaml +++ b/themes/version-1-0-5.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "souza.lennon-theme" version: "1.1.0" installs: 179 + rating: 0 + ratings: 0 author: "lennon" repo: null url: "https://marketplace.visualstudio.com/items?itemName=souza.lennon-theme" diff --git a/themes/very-blue.yaml b/themes/very-blue.yaml index 9b465647..62fc7c88 100644 --- a/themes/very-blue.yaml +++ b/themes/very-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xxhtml.xxhtml-themes" version: "0.0.15" installs: 1165 + rating: 0 + ratings: 0 author: "Isaac" repo: "https://github.com/XxHTMLStudios/xxhtml-theme" url: "https://marketplace.visualstudio.com/items?itemName=xxhtml.xxhtml-themes" diff --git a/themes/very-fast-theme.yaml b/themes/very-fast-theme.yaml index dabe616b..b35b1f1b 100644 --- a/themes/very-fast-theme.yaml +++ b/themes/very-fast-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "minekuba.very-fast-theme" version: "0.0.1" installs: 61 + rating: 5 + ratings: 1 author: "minekuba" repo: null url: "https://marketplace.visualstudio.com/items?itemName=minekuba.very-fast-theme" diff --git a/themes/vesper-golden.yaml b/themes/vesper-golden.yaml index 2d284fc1..350d9d54 100644 --- a/themes/vesper-golden.yaml +++ b/themes/vesper-golden.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "narayann7.vesper-golden" version: "0.0.7" installs: 533 + rating: 5 + ratings: 1 author: "narayan" repo: "https://github.com/narayann7/vesper-golden" url: "https://marketplace.visualstudio.com/items?itemName=narayann7.vesper-golden" diff --git a/themes/vesper-purple-dark.yaml b/themes/vesper-purple-dark.yaml index 9af6acca..a8dfa8ed 100644 --- a/themes/vesper-purple-dark.yaml +++ b/themes/vesper-purple-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xinyao27.vesper-purple-theme" version: "0.2.2" installs: 2422 + rating: 0 + ratings: 0 author: "Xinyao" repo: "https://github.com/xinyao27/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=xinyao27.vesper-purple-theme" diff --git a/themes/vesper-purple-light.yaml b/themes/vesper-purple-light.yaml index f9b20671..d953ddf1 100644 --- a/themes/vesper-purple-light.yaml +++ b/themes/vesper-purple-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xinyao27.vesper-purple-theme" version: "0.2.2" installs: 2422 + rating: 0 + ratings: 0 author: "Xinyao" repo: "https://github.com/xinyao27/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=xinyao27.vesper-purple-theme" diff --git a/themes/vesper.yaml b/themes/vesper.yaml index ce66eb66..8caa0489 100644 --- a/themes/vesper.yaml +++ b/themes/vesper.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "opedrodev.vesper-pp-lighter" version: "1.0.1" installs: 1467 + rating: 0 + ratings: 0 author: "opedrodev" repo: "https://github.com/opedrodev/vesper" url: "https://marketplace.visualstudio.com/items?itemName=opedrodev.vesper-pp-lighter" diff --git a/themes/vhs80.yaml b/themes/vhs80.yaml index f3186650..706ce99f 100644 --- a/themes/vhs80.yaml +++ b/themes/vhs80.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TahaYVR.vhs80" version: "1.0.1" installs: 169 + rating: 0 + ratings: 0 author: "Taha YVR" repo: "https://github.com/tahayvr/vhs80-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TahaYVR.vhs80" diff --git a/themes/vi-dark.yaml b/themes/vi-dark.yaml index 7edcc49c..9da543b0 100644 --- a/themes/vi-dark.yaml +++ b/themes/vi-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "higornabuco.vi-dark" version: "0.0.3" installs: 269 + rating: 5 + ratings: 1 author: "Higor Nabuco" repo: null url: "https://marketplace.visualstudio.com/items?itemName=higornabuco.vi-dark" diff --git a/themes/vibe-dark-legacy.yaml b/themes/vibe-dark-legacy.yaml index 560379b0..accb4bda 100644 --- a/themes/vibe-dark-legacy.yaml +++ b/themes/vibe-dark-legacy.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yondav.vibe" version: "2.0.1" installs: 1541 + rating: 0 + ratings: 0 author: "yondav" repo: "https://github.com/yondav-configs/vibe" url: "https://marketplace.visualstudio.com/items?itemName=yondav.vibe" diff --git a/themes/vibecolors-corporate-light.yaml b/themes/vibecolors-corporate-light.yaml index 91530f6e..73f29422 100644 --- a/themes/vibecolors-corporate-light.yaml +++ b/themes/vibecolors-corporate-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexLi.vibecolors" version: "1.1.4" installs: 113 + rating: 5 + ratings: 1 author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" diff --git a/themes/vibecolors-dark.yaml b/themes/vibecolors-dark.yaml index 0e4d7438..40bf236d 100644 --- a/themes/vibecolors-dark.yaml +++ b/themes/vibecolors-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexLi.vibecolors" version: "1.1.4" installs: 113 + rating: 5 + ratings: 1 author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" diff --git a/themes/vibecolors-dynamic-dark.yaml b/themes/vibecolors-dynamic-dark.yaml index 212a92f3..f5c5cfe8 100644 --- a/themes/vibecolors-dynamic-dark.yaml +++ b/themes/vibecolors-dynamic-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexLi.vibecolors" version: "1.1.4" installs: 113 + rating: 5 + ratings: 1 author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" diff --git a/themes/vibecolors-dynamic-light.yaml b/themes/vibecolors-dynamic-light.yaml index 6649495d..9962a90b 100644 --- a/themes/vibecolors-dynamic-light.yaml +++ b/themes/vibecolors-dynamic-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexLi.vibecolors" version: "1.1.4" installs: 113 + rating: 5 + ratings: 1 author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" diff --git a/themes/vibecolors-light.yaml b/themes/vibecolors-light.yaml index 69388d7d..2d25a25f 100644 --- a/themes/vibecolors-light.yaml +++ b/themes/vibecolors-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexLi.vibecolors" version: "1.1.4" installs: 113 + rating: 5 + ratings: 1 author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" diff --git a/themes/vibecolors-minimal-light.yaml b/themes/vibecolors-minimal-light.yaml index 22ab67fa..f70ffb89 100644 --- a/themes/vibecolors-minimal-light.yaml +++ b/themes/vibecolors-minimal-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexLi.vibecolors" version: "1.1.4" installs: 113 + rating: 5 + ratings: 1 author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" diff --git a/themes/vibecolors-neon-dark.yaml b/themes/vibecolors-neon-dark.yaml index 325e2de6..ad358993 100644 --- a/themes/vibecolors-neon-dark.yaml +++ b/themes/vibecolors-neon-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexLi.vibecolors" version: "1.1.4" installs: 113 + rating: 5 + ratings: 1 author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" diff --git a/themes/vibecolors-ocean-dark.yaml b/themes/vibecolors-ocean-dark.yaml index 82fad5e8..8ee1a242 100644 --- a/themes/vibecolors-ocean-dark.yaml +++ b/themes/vibecolors-ocean-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexLi.vibecolors" version: "1.1.4" installs: 113 + rating: 5 + ratings: 1 author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" diff --git a/themes/vibecolors-pastel-light.yaml b/themes/vibecolors-pastel-light.yaml index 3eecff91..f0fc7cfd 100644 --- a/themes/vibecolors-pastel-light.yaml +++ b/themes/vibecolors-pastel-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexLi.vibecolors" version: "1.1.4" installs: 113 + rating: 5 + ratings: 1 author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" diff --git a/themes/vibecolors-retro-dark.yaml b/themes/vibecolors-retro-dark.yaml index b6660daf..8c041931 100644 --- a/themes/vibecolors-retro-dark.yaml +++ b/themes/vibecolors-retro-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexLi.vibecolors" version: "1.1.4" installs: 113 + rating: 5 + ratings: 1 author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" diff --git a/themes/vibecolors-soft-dark.yaml b/themes/vibecolors-soft-dark.yaml index 2a9e9a69..44ad6262 100644 --- a/themes/vibecolors-soft-dark.yaml +++ b/themes/vibecolors-soft-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexLi.vibecolors" version: "1.1.4" installs: 113 + rating: 5 + ratings: 1 author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" diff --git a/themes/vibecolors-sunset-light.yaml b/themes/vibecolors-sunset-light.yaml index e20bcb30..3043e8cb 100644 --- a/themes/vibecolors-sunset-light.yaml +++ b/themes/vibecolors-sunset-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexLi.vibecolors" version: "1.1.4" installs: 113 + rating: 5 + ratings: 1 author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" diff --git a/themes/vibes.yaml b/themes/vibes.yaml index 3054213d..bc119ffa 100644 --- a/themes/vibes.yaml +++ b/themes/vibes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FusionTerror.vibey-theme" version: "0.0.3" installs: 908 + rating: 5 + ratings: 1 author: "Fusion Terror" repo: null url: "https://marketplace.visualstudio.com/items?itemName=FusionTerror.vibey-theme" diff --git a/themes/vibra.yaml b/themes/vibra.yaml index b49f31b7..38e71dae 100644 --- a/themes/vibra.yaml +++ b/themes/vibra.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TayMizami.vibra" version: "0.0.3" installs: 3797 + rating: 5 + ratings: 1 author: "Tay Mizami" repo: "https://github.com/taymizami/vibra" url: "https://marketplace.visualstudio.com/items?itemName=TayMizami.vibra" diff --git a/themes/vibrant-abyss-vscode.yaml b/themes/vibrant-abyss-vscode.yaml index 2ad50165..a526e55f 100644 --- a/themes/vibrant-abyss-vscode.yaml +++ b/themes/vibrant-abyss-vscode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "noelhorvath.vibrant-abyss" version: "0.4.13" installs: 1576 + rating: 0 + ratings: 0 author: "Noel Horváth" repo: "https://github.com/noelhorvath/vibrant-abyss" url: "https://marketplace.visualstudio.com/items?itemName=noelhorvath.vibrant-abyss" diff --git a/themes/vibrant-dark.yaml b/themes/vibrant-dark.yaml index 22f75e17..44db9031 100644 --- a/themes/vibrant-dark.yaml +++ b/themes/vibrant-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kalternate.vibrant-theme" version: "1.0.4" installs: 873 + rating: 0 + ratings: 0 author: "kalternate" repo: "https://github.com/kalternate/vibrant-theme" url: "https://marketplace.visualstudio.com/items?itemName=kalternate.vibrant-theme" diff --git a/themes/vibrant-max.yaml b/themes/vibrant-max.yaml index f3198252..12bacb43 100644 --- a/themes/vibrant-max.yaml +++ b/themes/vibrant-max.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MatthewOrchard.vibrant-max" version: "0.0.8" installs: 527 + rating: 0 + ratings: 0 author: "Matthew Orchard" repo: "https://github.com/mattorchard/vibrant-max" url: "https://marketplace.visualstudio.com/items?itemName=MatthewOrchard.vibrant-max" diff --git a/themes/vice-city-noir.yaml b/themes/vice-city-noir.yaml index 750efe26..d14e62bb 100644 --- a/themes/vice-city-noir.yaml +++ b/themes/vice-city-noir.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wasted69.dark-theme-sos" version: "2.7.0" installs: 403 + rating: 5 + ratings: 1 author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" diff --git a/themes/vicious.yaml b/themes/vicious.yaml index ac52d841..979faea2 100644 --- a/themes/vicious.yaml +++ b/themes/vicious.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZaherAlMajed.vicious" version: "1.0.5" installs: 252 + rating: 5 + ratings: 4 author: "Zaher Al Majed" repo: "https://github.com/zaheralmajed/vicious-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ZaherAlMajed.vicious" diff --git a/themes/victoria-dark.yaml b/themes/victoria-dark.yaml index cf80e0ea..4a40fda1 100644 --- a/themes/victoria-dark.yaml +++ b/themes/victoria-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.victoria-theme" version: "1.3.0" installs: 3 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.victoria-theme" diff --git a/themes/victoria-light.yaml b/themes/victoria-light.yaml index ce3f8c1a..64d75398 100644 --- a/themes/victoria-light.yaml +++ b/themes/victoria-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "lucidlabs.victoria-theme" version: "1.3.0" installs: 3 + rating: 0 + ratings: 0 author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.victoria-theme" diff --git a/themes/video-contrast.yaml b/themes/video-contrast.yaml index c4078a84..011057f5 100644 --- a/themes/video-contrast.yaml +++ b/themes/video-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "valentinesamuel.fallout-dark" version: "0.0.1" installs: 2243 + rating: 0 + ratings: 0 author: "valentine samuel" repo: "https://github.com/valentinesamuel/themes" url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" diff --git a/themes/vigikai.yaml b/themes/vigikai.yaml index a02159a2..997171d9 100644 --- a/themes/vigikai.yaml +++ b/themes/vigikai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vigi-p.vigikai" version: "1.0.1" installs: 271 + rating: 5 + ratings: 1 author: "Vignesh Prasad" repo: "https://github.com/ViGi-P/vigikai" url: "https://marketplace.visualstudio.com/items?itemName=vigi-p.vigikai" diff --git a/themes/viii-iii-mmv.yaml b/themes/viii-iii-mmv.yaml index ef4fd7f0..222ed2a8 100644 --- a/themes/viii-iii-mmv.yaml +++ b/themes/viii-iii-mmv.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VIII-III-MMV.viii-iii-mmv" version: "0.0.3" installs: 11 + rating: 0 + ratings: 0 author: "VIII-III-MMV-The-Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=VIII-III-MMV.viii-iii-mmv" diff --git a/themes/vikkie-dark.yaml b/themes/vikkie-dark.yaml index 68c090e8..fec321ff 100644 --- a/themes/vikkie-dark.yaml +++ b/themes/vikkie-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "atomicnumberphi.vikkie-theme" version: "1.0.3" installs: 98 + rating: 5 + ratings: 1 author: "Kaleidosium" repo: "https://github.com/Kaleidosium/vikkie-theme" url: "https://marketplace.visualstudio.com/items?itemName=atomicnumberphi.vikkie-theme" diff --git a/themes/vikkie-light.yaml b/themes/vikkie-light.yaml index 5f795fb3..8c7eea58 100644 --- a/themes/vikkie-light.yaml +++ b/themes/vikkie-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "atomicnumberphi.vikkie-theme" version: "1.0.3" installs: 98 + rating: 5 + ratings: 1 author: "Kaleidosium" repo: "https://github.com/Kaleidosium/vikkie-theme" url: "https://marketplace.visualstudio.com/items?itemName=atomicnumberphi.vikkie-theme" diff --git a/themes/villain-dark.yaml b/themes/villain-dark.yaml index 1e9a63f2..f9dc3598 100644 --- a/themes/villain-dark.yaml +++ b/themes/villain-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sahilkumardev.villan-theam" version: "0.0.2" installs: 561 + rating: 0 + ratings: 0 author: "sahil kumar dev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sahilkumardev.villan-theam" diff --git a/themes/villain-light.yaml b/themes/villain-light.yaml index 0e2ca66f..33f6685b 100644 --- a/themes/villain-light.yaml +++ b/themes/villain-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sahilkumardev.villan-theam" version: "0.0.2" installs: 561 + rating: 0 + ratings: 0 author: "sahil kumar dev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sahilkumardev.villan-theam" diff --git a/themes/vim-dar11sdasdasd.yaml b/themes/vim-dar11sdasdasd.yaml index 3c0383ce..12473180 100644 --- a/themes/vim-dar11sdasdasd.yaml +++ b/themes/vim-dar11sdasdasd.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndreaCombette.SweetWood" version: "0.5.5" installs: 249 + rating: 5 + ratings: 1 author: "AndreaCombette" repo: "https://github.com/Chatr0uge/SweetWood-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.SweetWood" diff --git a/themes/vim-dark-medium.yaml b/themes/vim-dark-medium.yaml index 97f20179..c2370d63 100644 --- a/themes/vim-dark-medium.yaml +++ b/themes/vim-dark-medium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndreaCombette.SweetWood" version: "0.5.5" installs: 249 + rating: 5 + ratings: 1 author: "AndreaCombette" repo: "https://github.com/Chatr0uge/SweetWood-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.SweetWood" diff --git a/themes/vim-dark-soft.yaml b/themes/vim-dark-soft.yaml index 38e33275..b915f407 100644 --- a/themes/vim-dark-soft.yaml +++ b/themes/vim-dark-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HarryHopkinson.vim-theme" version: "1.1.8" installs: 181189 + rating: 5 + ratings: 8 author: "HarryHopkinson" repo: "https://github.com/Harry-Hopkinson/vim-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=HarryHopkinson.vim-theme" diff --git a/themes/vim-light-1.yaml b/themes/vim-light-1.yaml index 0eb088f5..57e1721b 100644 --- a/themes/vim-light-1.yaml +++ b/themes/vim-light-1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "theprogrammergary.atom-themes" version: "2.1.9" installs: 614 + rating: 5 + ratings: 1 author: "theprogrammergary" repo: "https://github.com/gary-ix/Gary-VS-Code-Themes" url: "https://marketplace.visualstudio.com/items?itemName=theprogrammergary.atom-themes" diff --git a/themes/vim-light-2.yaml b/themes/vim-light-2.yaml index f7d98c28..0e98217d 100644 --- a/themes/vim-light-2.yaml +++ b/themes/vim-light-2.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "theprogrammergary.atom-themes" version: "2.1.9" installs: 614 + rating: 5 + ratings: 1 author: "theprogrammergary" repo: "https://github.com/gary-ix/Gary-VS-Code-Themes" url: "https://marketplace.visualstudio.com/items?itemName=theprogrammergary.atom-themes" diff --git a/themes/vim-light-3.yaml b/themes/vim-light-3.yaml new file mode 100644 index 00000000..20cdd618 --- /dev/null +++ b/themes/vim-light-3.yaml @@ -0,0 +1,52 @@ +name: "Vim Light 3" +source: + marketplace_id: "theprogrammergary.atom-themes" + version: "2.1.9" + installs: 614 + rating: 5 + ratings: 1 + author: "theprogrammergary" + repo: "https://github.com/gary-ix/Gary-VS-Code-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=theprogrammergary.atom-themes" +colors: + bg: "#F7F3E6" + fg: "#3C3836" + black: "#DED3B0" + red: "#CC241D" + green: "#98971A" + yellow: "#CF8900" + blue: "#32302F" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.5 + black: 16 + red: 68.3 + green: 50.6 + yellow: 47.8 + blue: 92.3 + magenta: 61.8 + cyan: 51.6 + white: 66.6 + brightBlack: 57.1 + brightRed: 79.8 + brightGreen: 66.4 + brightYellow: 57.8 + brightBlue: 75 + brightMagenta: 75.5 + brightCyan: 67.2 + brightWhite: 89.5 diff --git a/themes/vim-light-soft.yaml b/themes/vim-light-soft.yaml index 78bf7db1..53af75ab 100644 --- a/themes/vim-light-soft.yaml +++ b/themes/vim-light-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AndreaCombette.SweetWood" version: "0.5.5" installs: 249 + rating: 5 + ratings: 1 author: "AndreaCombette" repo: "https://github.com/Chatr0uge/SweetWood-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.SweetWood" diff --git a/themes/vim-night.yaml b/themes/vim-night.yaml index 78ec5fb8..2d5f806a 100644 --- a/themes/vim-night.yaml +++ b/themes/vim-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Rasla.vimnight" version: "0.4.0" installs: 4326 + rating: 0 + ratings: 0 author: "Rasla" repo: "https://github.com/0xrasla/rassotheme" url: "https://marketplace.visualstudio.com/items?itemName=Rasla.vimnight" diff --git a/themes/vin-theme.yaml b/themes/vin-theme.yaml index c0e831bd..4a939f9f 100644 --- a/themes/vin-theme.yaml +++ b/themes/vin-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vintheme.vin-theme" version: "1.74.0" installs: 212 + rating: 0 + ratings: 0 author: "ervinarviandi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=vintheme.vin-theme" diff --git a/themes/vintage-heritage.yaml b/themes/vintage-heritage.yaml new file mode 100644 index 00000000..a7ceeebf --- /dev/null +++ b/themes/vintage-heritage.yaml @@ -0,0 +1,52 @@ +name: "Vintage-Heritage" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#001B29" + fg: "#E9E1BA" + black: "#001B29" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FCC14A" + magenta: "#FCC14A" + cyan: "#29C3A0" + white: "#E9E1BA" + brightBlack: "#001B29" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FCC14A" + brightMagenta: "#FCC14A" + brightCyan: "#29C3A0" + brightWhite: "#E9E1BA" +meta: + mode: "dark" + accent: "yellow" + hue: 234 + pair: null + contrast: + fg: 86.7 + black: 0 + red: 9 + green: 57.3 + yellow: 51.4 + blue: 73.6 + magenta: 73.6 + cyan: 57.3 + white: 86.7 + brightBlack: 0 + brightRed: 9 + brightGreen: 57.3 + brightYellow: 51.4 + brightBlue: 73.6 + brightMagenta: 73.6 + brightCyan: 57.3 + brightWhite: 86.7 diff --git a/themes/vintage-rust-theme.yaml b/themes/vintage-rust-theme.yaml index 6a94a623..7456b269 100644 --- a/themes/vintage-rust-theme.yaml +++ b/themes/vintage-rust-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HmadAfzal.vintage-rust-theme" version: "0.1.0" installs: 746 + rating: 5 + ratings: 2 author: "Hmad Afzal" repo: "https://github.com/HmadAfzal/Vintage-Rust-Theme" url: "https://marketplace.visualstudio.com/items?itemName=HmadAfzal.vintage-rust-theme" diff --git a/themes/vintage-serene.yaml b/themes/vintage-serene.yaml index d5e0a9f5..7f0435ee 100644 --- a/themes/vintage-serene.yaml +++ b/themes/vintage-serene.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Legion.theme-vintage-serene" version: "1.3.4" installs: 30 + rating: 0 + ratings: 0 author: "Legion" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Legion.theme-vintage-serene" diff --git a/themes/vintage.yaml b/themes/vintage.yaml index bdf69954..2246db1b 100644 --- a/themes/vintage.yaml +++ b/themes/vintage.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "silas0827.vintage" version: "0.0.1" installs: 1072 + rating: 0 + ratings: 0 author: "Silas Chen" repo: null url: "https://marketplace.visualstudio.com/items?itemName=silas0827.vintage" diff --git a/themes/vinyl.yaml b/themes/vinyl.yaml index 11a6920c..528c3061 100644 --- a/themes/vinyl.yaml +++ b/themes/vinyl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sophiebosio.vinyl" version: "1.0.5" installs: 525 + rating: 0 + ratings: 0 author: "sophiebosio" repo: "https://github.com/SophieBosio/vinyl" url: "https://marketplace.visualstudio.com/items?itemName=sophiebosio.vinyl" diff --git a/themes/violaceous-contrast.yaml b/themes/violaceous-contrast.yaml index 3011f49d..db4626ef 100644 --- a/themes/violaceous-contrast.yaml +++ b/themes/violaceous-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/violaceous-light.yaml b/themes/violaceous-light.yaml index 2577b2ed..ba974bc5 100644 --- a/themes/violaceous-light.yaml +++ b/themes/violaceous-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/violaceous.yaml b/themes/violaceous.yaml index bbd7bb05..f41a4951 100644 --- a/themes/violaceous.yaml +++ b/themes/violaceous.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/violet-dream.yaml b/themes/violet-dream.yaml index 2013cb9a..09c80fb1 100644 --- a/themes/violet-dream.yaml +++ b/themes/violet-dream.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlexandreFPGoncalves.violet-dream" version: "1.0.3" installs: 5431 + rating: 5 + ratings: 3 author: "AlexandreFPGoncalves" repo: "https://github.com/AlexandreFPGoncalves/violet-dream" url: "https://marketplace.visualstudio.com/items?itemName=AlexandreFPGoncalves.violet-dream" diff --git a/themes/violet-night.yaml b/themes/violet-night.yaml index 79416843..508f3582 100644 --- a/themes/violet-night.yaml +++ b/themes/violet-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MaryamRezaee.violet-night-theme" version: "0.2.0" installs: 450 + rating: 5 + ratings: 3 author: "Maryam Rezaee" repo: "https://github.com/msmrexe/violet-night-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=MaryamRezaee.violet-night-theme" diff --git a/themes/violet-nova.yaml b/themes/violet-nova.yaml index d663a8f7..f5da110d 100644 --- a/themes/violet-nova.yaml +++ b/themes/violet-nova.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZCNXS.violet-nova-theme" version: "1.0.4" installs: 112 + rating: 0 + ratings: 0 author: "ZCNXS" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ZCNXS.violet-nova-theme" diff --git a/themes/viora.yaml b/themes/viora.yaml index f4ad036d..c537af9f 100644 --- a/themes/viora.yaml +++ b/themes/viora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AdityaMali.viora" version: "1.0.2" installs: 74 + rating: 0 + ratings: 0 author: "Aditya Mali" repo: "[https://github.com/adityamali/Viora.git](https://github.com/adityamali/Viora.git)" url: "https://marketplace.visualstudio.com/items?itemName=AdityaMali.viora" diff --git a/themes/viper-theme.yaml b/themes/viper-theme.yaml index cfb2881a..8a796f07 100644 --- a/themes/viper-theme.yaml +++ b/themes/viper-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Felip3.purple-haze-theme" version: "1.0.5" installs: 2042 + rating: 0 + ratings: 0 author: "Felipe Menezes" repo: "https://github.com/fmm312/purple-haze" url: "https://marketplace.visualstudio.com/items?itemName=Felip3.purple-haze-theme" diff --git a/themes/vishwakarma-sunset-glow.yaml b/themes/vishwakarma-sunset-glow.yaml index 992a478e..a505183c 100644 --- a/themes/vishwakarma-sunset-glow.yaml +++ b/themes/vishwakarma-sunset-glow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VishwakarmaIndustries.vishwa" version: "0.0.1" installs: 25 + rating: 0 + ratings: 0 author: "Vishwakarma Industries" repo: "https://github.com/vishwakarma-industries/vishwa" url: "https://marketplace.visualstudio.com/items?itemName=VishwakarmaIndustries.vishwa" diff --git a/themes/vision-colorblind.yaml b/themes/vision-colorblind.yaml index fa4c1a03..a85f2739 100644 --- a/themes/vision-colorblind.yaml +++ b/themes/vision-colorblind.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/vision-light-colorblind.yaml b/themes/vision-light-colorblind.yaml index 52f24727..8f30d79e 100644 --- a/themes/vision-light-colorblind.yaml +++ b/themes/vision-light-colorblind.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/visual-studio-code-dark-theme.yaml b/themes/visual-studio-code-dark-theme.yaml index ccb5bb20..e5d7b196 100644 --- a/themes/visual-studio-code-dark-theme.yaml +++ b/themes/visual-studio-code-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mdmarufsarker.maruf-sarker" version: "0.1.1" installs: 29154 + rating: 5 + ratings: 6 author: "Md. Maruf Sarker" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" diff --git a/themes/visual-studio-dark-2019.yaml b/themes/visual-studio-dark-2019.yaml new file mode 100644 index 00000000..57040e47 --- /dev/null +++ b/themes/visual-studio-dark-2019.yaml @@ -0,0 +1,52 @@ +name: "Visual Studio Dark 2019" +source: + marketplace_id: "Gasrulle.gasrulle-theme" + version: "0.6.7" + installs: 5 + rating: 0 + ratings: 0 + author: "Gasrulle" + repo: "https://github.com/gasrulle/gasrulle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" +colors: + bg: "#1E1E1E" + fg: "#DCDCDC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 83.6 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/visual-studio-dark-2026.yaml b/themes/visual-studio-dark-2026.yaml new file mode 100644 index 00000000..551ae686 --- /dev/null +++ b/themes/visual-studio-dark-2026.yaml @@ -0,0 +1,52 @@ +name: "Visual Studio Dark 2026" +source: + marketplace_id: "Gasrulle.gasrulle-theme" + version: "0.6.7" + installs: 5 + rating: 0 + ratings: 0 + author: "Gasrulle" + repo: "https://github.com/gasrulle/gasrulle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" +colors: + bg: "#1C1C1C" + fg: "#DCDCDC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 83.8 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/visual-studio-github-light-plus.yaml b/themes/visual-studio-github-light-plus.yaml index f1ad23bd..f0d11f88 100644 --- a/themes/visual-studio-github-light-plus.yaml +++ b/themes/visual-studio-github-light-plus.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aaaaash.vs-github-light-plus" version: "0.0.2" installs: 1133 + rating: 0 + ratings: 0 author: "aaaaash" repo: "https://github.com/Aaaaash/vs-github-light-plus" url: "https://marketplace.visualstudio.com/items?itemName=aaaaash.vs-github-light-plus" diff --git a/themes/visualos.yaml b/themes/visualos.yaml index dce45565..bb7727af 100644 --- a/themes/visualos.yaml +++ b/themes/visualos.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Tikode.VisualOS" version: "0.4.0" installs: 2881 + rating: 5 + ratings: 1 author: "Tikode" repo: "https://github.com/tigranabelian1/VisualOS" url: "https://marketplace.visualstudio.com/items?itemName=Tikode.VisualOS" diff --git a/themes/vitepress-theme-vite-dark.yaml b/themes/vitepress-theme-vite-dark.yaml index e69c2436..c9685ca3 100644 --- a/themes/vitepress-theme-vite-dark.yaml +++ b/themes/vitepress-theme-vite-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zanfee.theme-vitepress" version: "0.0.2" installs: 690 + rating: 0 + ratings: 0 author: "Jan Fröhlich" repo: "https://github.com/zanfee/vscode-theme-vitepress" url: "https://marketplace.visualstudio.com/items?itemName=zanfee.theme-vitepress" diff --git a/themes/vitesse-dark-custom.yaml b/themes/vitesse-dark-custom.yaml index 61e59663..aed596e5 100644 --- a/themes/vitesse-dark-custom.yaml +++ b/themes/vitesse-dark-custom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "fxzer.theme-vitesse-dark-custom" version: "0.2.1" installs: 1326 + rating: 5 + ratings: 1 author: "Vitesse Theme Custom" repo: "https://github.com/fxzer/theme-vitesse-dark-custom" url: "https://marketplace.visualstudio.com/items?itemName=fxzer.theme-vitesse-dark-custom" diff --git a/themes/vitesse-dark-soft.yaml b/themes/vitesse-dark-soft.yaml index 55da5189..cfbb8cec 100644 --- a/themes/vitesse-dark-soft.yaml +++ b/themes/vitesse-dark-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "5ett.motion-blue" version: "0.0.7" installs: 534 + rating: 4 + ratings: 1 author: "5ett" repo: "https://github.com/5ett/motion-blue" url: "https://marketplace.visualstudio.com/items?itemName=5ett.motion-blue" diff --git a/themes/vitesse-dragon-dark.yaml b/themes/vitesse-dragon-dark.yaml index ceeda154..e5c7b4e0 100644 --- a/themes/vitesse-dragon-dark.yaml +++ b/themes/vitesse-dragon-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "simonhe.vitesse-theme-colorful" version: "0.0.6" installs: 855 + rating: 0 + ratings: 0 author: "simonhe" repo: null url: "https://marketplace.visualstudio.com/items?itemName=simonhe.vitesse-theme-colorful" diff --git a/themes/vitesse-dragon.yaml b/themes/vitesse-dragon.yaml index 54cd2c4f..0c8e7f6e 100644 --- a/themes/vitesse-dragon.yaml +++ b/themes/vitesse-dragon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "simonhe.vitesse-theme-colorful" version: "0.0.6" installs: 855 + rating: 0 + ratings: 0 author: "simonhe" repo: null url: "https://marketplace.visualstudio.com/items?itemName=simonhe.vitesse-theme-colorful" diff --git a/themes/vitesse-green-theme.yaml b/themes/vitesse-green-theme.yaml index 1ea4108e..7e173a50 100644 --- a/themes/vitesse-green-theme.yaml +++ b/themes/vitesse-green-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "namefhf.vitesse-green-theme" version: "0.0.5" installs: 185 + rating: 0 + ratings: 0 author: "namefhf" repo: "https://github.com/namefhf/vitesse-green-theme" url: "https://marketplace.visualstudio.com/items?itemName=namefhf.vitesse-green-theme" diff --git a/themes/vitesse-webstorm-dark.yaml b/themes/vitesse-webstorm-dark.yaml index caa186d1..ae961c4a 100644 --- a/themes/vitesse-webstorm-dark.yaml +++ b/themes/vitesse-webstorm-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AnthonyJu.vscode-theme-vitesse-webstorm" version: "0.1.1" installs: 562 + rating: 5 + ratings: 2 author: "AnthonyJu" repo: "https://github.com/AnthonyJu/vscode-theme-vitesse-webstorm" url: "https://marketplace.visualstudio.com/items?itemName=AnthonyJu.vscode-theme-vitesse-webstorm" diff --git a/themes/vitrioleuse.yaml b/themes/vitrioleuse.yaml index e185d72a..8208acf1 100644 --- a/themes/vitrioleuse.yaml +++ b/themes/vitrioleuse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vitrioleuse.vitrioleuse" version: "1.0.0" installs: 40 + rating: 0 + ratings: 0 author: "vitrioleuse" repo: "https://github.com/lichrot/vitrioleuse" url: "https://marketplace.visualstudio.com/items?itemName=vitrioleuse.vitrioleuse" diff --git a/themes/vitruvian.yaml b/themes/vitruvian.yaml new file mode 100644 index 00000000..fa972487 --- /dev/null +++ b/themes/vitruvian.yaml @@ -0,0 +1,52 @@ +name: "Vitruvian" +source: + marketplace_id: "merle.vitruvian" + version: "0.1.3" + installs: 216 + rating: 0 + ratings: 0 + author: "mmerle" + repo: "https://github.com/mmerle/vitruvian" + url: "https://marketplace.visualstudio.com/items?itemName=merle.vitruvian" +colors: + bg: "#151618" + fg: "#E9E8E6" + black: "#535A62" + red: "#EB6F92" + green: "#B4E1EE" + yellow: "#F6C177" + blue: "#B6B6B6" + magenta: "#A69CE5" + cyan: "#2ACBDD" + white: "#E9E8E6" + brightBlack: "#535A62" + brightRed: "#EB6F92" + brightGreen: "#B4E1EE" + brightYellow: "#F6C177" + brightBlue: "#2ACBDD" + brightMagenta: "#A69CE5" + brightCyan: "#2ACBDD" + brightWhite: "#E9E8E6" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 92.1 + black: 16.9 + red: 46 + green: 83 + yellow: 73.7 + blue: 62 + magenta: 52.6 + cyan: 64.1 + white: 92.1 + brightBlack: 16.9 + brightRed: 46 + brightGreen: 83 + brightYellow: 73.7 + brightBlue: 64.1 + brightMagenta: 52.6 + brightCyan: 64.1 + brightWhite: 92.1 diff --git a/themes/vivid-blue.yaml b/themes/vivid-blue.yaml index 06dfd1d0..4cfe5511 100644 --- a/themes/vivid-blue.yaml +++ b/themes/vivid-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WelkerArantes.sweet-candy-theme" version: "0.0.2" installs: 3156 + rating: 0 + ratings: 0 author: "Welker Arantes" repo: "https://github.com/taikio/sweet-candy-theme" url: "https://marketplace.visualstudio.com/items?itemName=WelkerArantes.sweet-candy-theme" diff --git a/themes/vividnord.yaml b/themes/vividnord.yaml index fb3c72dc..80b849c0 100644 --- a/themes/vividnord.yaml +++ b/themes/vividnord.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "stnord.vivid-nord" version: "3.0.0" installs: 1127 + rating: 0 + ratings: 0 author: "stnord" repo: "https://github.com/LyonAlpha/vivid-nord" url: "https://marketplace.visualstudio.com/items?itemName=stnord.vivid-nord" diff --git a/themes/vivido-theme.yaml b/themes/vivido-theme.yaml index 85bdf2ba..193dfe87 100644 --- a/themes/vivido-theme.yaml +++ b/themes/vivido-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "philipbruer.vivido" version: "0.1.0" installs: 1130 + rating: 0 + ratings: 0 author: "Philip Bruér" repo: "https://github.com/philipbruer/vivido" url: "https://marketplace.visualstudio.com/items?itemName=philipbruer.vivido" diff --git a/themes/vixn-dark.yaml b/themes/vixn-dark.yaml new file mode 100644 index 00000000..6543ef65 --- /dev/null +++ b/themes/vixn-dark.yaml @@ -0,0 +1,50 @@ +name: "vixn-dark" +source: + marketplace_id: "noriah.vixn-theme" + version: "1.0.4" + installs: 91 + author: "noriah vix" + repo: "https://github.com/noriah/vscode-vixn-theme" + url: "https://marketplace.visualstudio.com/items?itemName=noriah.vixn-theme" +colors: + bg: "#252525" + fg: "#EEFFFF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.7 + black: 0 + red: 44.7 + green: 82.3 + yellow: 77 + blue: 54 + magenta: 51.8 + cyan: 76.3 + white: 105 + brightBlack: 9.1 + brightRed: 44.7 + brightGreen: 82.3 + brightYellow: 77 + brightBlue: 54 + brightMagenta: 51.8 + brightCyan: 76.3 + brightWhite: 105 diff --git a/themes/vkt-theme.yaml b/themes/vkt-theme.yaml index 2ab0c2e7..cce2c553 100644 --- a/themes/vkt-theme.yaml +++ b/themes/vkt-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PedroMakaveli.VktTheme" version: "1.0.0" installs: 3216 + rating: 5 + ratings: 1 author: "Pedro Makaveli" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PedroMakaveli.VktTheme" diff --git a/themes/void-iris.yaml b/themes/void-iris.yaml index 5a457b76..cc70d368 100644 --- a/themes/void-iris.yaml +++ b/themes/void-iris.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Dikroll.void-iris-theme" version: "1.1.1" installs: 141 + rating: 5 + ratings: 1 author: "Dikroll" repo: "https://github.com/Dikroll/Void-Iris" url: "https://marketplace.visualstudio.com/items?itemName=Dikroll.void-iris-theme" diff --git a/themes/void-nebula.yaml b/themes/void-nebula.yaml new file mode 100644 index 00000000..8d27fa02 --- /dev/null +++ b/themes/void-nebula.yaml @@ -0,0 +1,52 @@ +name: "Void Nebula" +source: + marketplace_id: "avitrano.void-nebula" + version: "0.1.4" + installs: 130 + rating: 0 + ratings: 0 + author: "avitrano" + repo: "https://github.com/avitran0/void-nebula" + url: "https://marketplace.visualstudio.com/items?itemName=avitrano.void-nebula" +colors: + bg: "#1E1E28" + fg: "#FFFFFF" + black: "#46465D" + red: "#F06464" + green: "#A0F082" + yellow: "#F0C878" + blue: "#6496F0" + magenta: "#B478F0" + cyan: "#50C8C8" + white: "#FFFFFF" + brightBlack: "#46465D" + brightRed: "#F06464" + brightGreen: "#A0F082" + brightYellow: "#F0C878" + brightBlue: "#6496F0" + brightMagenta: "#B478F0" + brightCyan: "#50C8C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 285 + pair: null + contrast: + fg: 105.9 + black: 9.3 + red: 42.2 + green: 83.5 + yellow: 74.5 + blue: 44.3 + magenta: 42.7 + cyan: 61.7 + white: 105.9 + brightBlack: 9.3 + brightRed: 42.2 + brightGreen: 83.5 + brightYellow: 74.5 + brightBlue: 44.3 + brightMagenta: 42.7 + brightCyan: 61.7 + brightWhite: 105.9 diff --git a/themes/void.yaml b/themes/void.yaml index 6bf3108a..cbea6b8e 100644 --- a/themes/void.yaml +++ b/themes/void.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "void-sin.void-singularity" version: "1.0.0" installs: 68 + rating: 0 + ratings: 0 author: "void-sin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=void-sin.void-singularity" diff --git a/themes/voidbloom-quazar.yaml b/themes/voidbloom-quazar.yaml index 9fb4597d..c6777173 100644 --- a/themes/voidbloom-quazar.yaml +++ b/themes/voidbloom-quazar.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "emery2547.voidbloom" version: "0.1.0" installs: 61 + rating: 0 + ratings: 0 author: "emery" repo: "https://github.com/r4chl/voidbloom" url: "https://marketplace.visualstudio.com/items?itemName=emery2547.voidbloom" diff --git a/themes/voidbloom-singularity.yaml b/themes/voidbloom-singularity.yaml index bfc17bf9..6d722223 100644 --- a/themes/voidbloom-singularity.yaml +++ b/themes/voidbloom-singularity.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "emery2547.voidbloom" version: "0.1.0" installs: 61 + rating: 0 + ratings: 0 author: "emery" repo: "https://github.com/r4chl/voidbloom" url: "https://marketplace.visualstudio.com/items?itemName=emery2547.voidbloom" diff --git a/themes/voidwalker.yaml b/themes/voidwalker.yaml index 16b0c80b..7402169e 100644 --- a/themes/voidwalker.yaml +++ b/themes/voidwalker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SatyamRana.the-prime-themes" version: "1.0.2" installs: 130 + rating: 0 + ratings: 0 author: "Satyam Rana" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SatyamRana.the-prime-themes" diff --git a/themes/volatile-contrast.yaml b/themes/volatile-contrast.yaml index dd11de4b..d4a688f2 100644 --- a/themes/volatile-contrast.yaml +++ b/themes/volatile-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/volatile-light.yaml b/themes/volatile-light.yaml index 58ce14ef..e8c13551 100644 --- a/themes/volatile-light.yaml +++ b/themes/volatile-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/volatile.yaml b/themes/volatile.yaml index 71eacb9e..3549b1b1 100644 --- a/themes/volatile.yaml +++ b/themes/volatile.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/volcanofr.yaml b/themes/volcanofr.yaml index 60eafa7b..c7a751ae 100644 --- a/themes/volcanofr.yaml +++ b/themes/volcanofr.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "volcanofr.volcanofr-theme" version: "1.0.2" installs: 55 + rating: 4 + ratings: 1 author: "volcanofr" repo: "https://github.com/volcanofr/volcanofr-theme" url: "https://marketplace.visualstudio.com/items?itemName=volcanofr.volcanofr-theme" diff --git a/themes/volskaya.yaml b/themes/volskaya.yaml index d9d6358e..346c2d3a 100644 --- a/themes/volskaya.yaml +++ b/themes/volskaya.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Volskaya.irrelevant" version: "0.0.2" installs: 33 + rating: 0 + ratings: 0 author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" diff --git a/themes/volt-dark.yaml b/themes/volt-dark.yaml index 7a2a9bcb..237de7f5 100644 --- a/themes/volt-dark.yaml +++ b/themes/volt-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MBhakta.voltdark" version: "2.0.3" installs: 84 + rating: 5 + ratings: 1 author: "MBhakta" repo: "https://github.com/milinbhakta/voltdark" url: "https://marketplace.visualstudio.com/items?itemName=MBhakta.voltdark" diff --git a/themes/voodoo.yaml b/themes/voodoo.yaml index 815ef05c..13fece3f 100644 --- a/themes/voodoo.yaml +++ b/themes/voodoo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "liamsheppard.voodoo" version: "0.10.0" installs: 6343 + rating: 5 + ratings: 4 author: "liamsheppard" repo: "https://github.com/liamsheppard/voodoo-theme" url: "https://marketplace.visualstudio.com/items?itemName=liamsheppard.voodoo" diff --git a/themes/voraes.yaml b/themes/voraes.yaml index a1056254..c5131c99 100644 --- a/themes/voraes.yaml +++ b/themes/voraes.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Voraes.voraes" version: "0.6.1" installs: 48 + rating: 0 + ratings: 0 author: "Voraes" repo: "https://github.com/Voraes/voraes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Voraes.voraes" diff --git a/themes/vortex.yaml b/themes/vortex.yaml index 8e3b5af1..d60abdf6 100644 --- a/themes/vortex.yaml +++ b/themes/vortex.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "melyssanimeth.beachouse" version: "0.0.1" installs: 72 + rating: 0 + ratings: 0 author: "melyssanimeth" repo: null url: "https://marketplace.visualstudio.com/items?itemName=melyssanimeth.beachouse" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 33.8 black: 73.2 diff --git a/themes/voyager.yaml b/themes/voyager.yaml index 23f4929e..fba67d48 100644 --- a/themes/voyager.yaml +++ b/themes/voyager.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VoyagerTeam.voyager-dark" version: "0.0.7" installs: 546 + rating: 0 + ratings: 0 author: "Voyager Team" repo: "https://github.com/andrewbgrant/voyager-dark" url: "https://marketplace.visualstudio.com/items?itemName=VoyagerTeam.voyager-dark" diff --git a/themes/vs-code-deep-f-lux-fork-fork.yaml b/themes/vs-code-deep-f-lux-fork-fork.yaml index cd72464e..3c4ca82f 100644 --- a/themes/vs-code-deep-f-lux-fork-fork.yaml +++ b/themes/vs-code-deep-f-lux-fork-fork.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "valentinesamuel.fallout-dark" version: "0.0.1" installs: 2243 + rating: 0 + ratings: 0 author: "valentine samuel" repo: "https://github.com/valentinesamuel/themes" url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" diff --git a/themes/vs-code-deep-f-lux.yaml b/themes/vs-code-deep-f-lux.yaml index 8537ebb0..46288a15 100644 --- a/themes/vs-code-deep-f-lux.yaml +++ b/themes/vs-code-deep-f-lux.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "suleman-el.vs-code-flux-intense" version: "0.0.1" installs: 555 + rating: 0 + ratings: 0 author: "Suleman Elahi" repo: "https://github.com/Suleman-Elahi/vs-code-flux-intense" url: "https://marketplace.visualstudio.com/items?itemName=suleman-el.vs-code-flux-intense" diff --git a/themes/vs-code-next-js.yaml b/themes/vs-code-next-js.yaml index 2351de76..5f38b2e6 100644 --- a/themes/vs-code-next-js.yaml +++ b/themes/vs-code-next-js.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ShayanAliJalbani.vs-nextjs" version: "0.0.1" installs: 1748 + rating: 0 + ratings: 0 author: "Shayan Ali Jalbani" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ShayanAliJalbani.vs-nextjs" diff --git a/themes/vs-fleet.yaml b/themes/vs-fleet.yaml index ab848675..be7463cc 100644 --- a/themes/vs-fleet.yaml +++ b/themes/vs-fleet.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "anto.vs-fleet" version: "2.0.1" installs: 2760 + rating: 4 + ratings: 1 author: "anto" repo: null url: "https://marketplace.visualstudio.com/items?itemName=anto.vs-fleet" diff --git a/themes/vs-ghoul.yaml b/themes/vs-ghoul.yaml index d98803b2..753a24c9 100644 --- a/themes/vs-ghoul.yaml +++ b/themes/vs-ghoul.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "NathanInbar.vs-ghoul" version: "0.0.3" installs: 2476 + rating: 5 + ratings: 2 author: "Nathan Inbar" repo: "https://github.com/NathanInbar/vs-ghoul" url: "https://marketplace.visualstudio.com/items?itemName=NathanInbar.vs-ghoul" diff --git a/themes/vsblue.yaml b/themes/vsblue.yaml index b7c92a0b..49c0e4b9 100644 --- a/themes/vsblue.yaml +++ b/themes/vsblue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "4rya.vsblue" version: "1.4.2" installs: 66 + rating: 5 + ratings: 1 author: "4rya" repo: "https://github.com/TugasArya/vsblue" url: "https://marketplace.visualstudio.com/items?itemName=4rya.vsblue" diff --git a/themes/vsc-blue-theme.yaml b/themes/vsc-blue-theme.yaml index ef129455..44583ba9 100644 --- a/themes/vsc-blue-theme.yaml +++ b/themes/vsc-blue-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Mdb05.vsc-theme" version: "1.0.1" installs: 668 + rating: 5 + ratings: 1 author: "Mdb05" repo: "https://github.com/Mdb05/Vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mdb05.vsc-theme" diff --git a/themes/vsc-cyberpunk2077-theme-color-theme.yaml b/themes/vsc-cyberpunk2077-theme-color-theme.yaml new file mode 100644 index 00000000..414526ac --- /dev/null +++ b/themes/vsc-cyberpunk2077-theme-color-theme.yaml @@ -0,0 +1,50 @@ +name: "vsc-cyberpunk2077-theme-color-theme" +source: + marketplace_id: "spicyhek.vsc-cyberpunk2077-theme" + version: "0.0.4" + installs: 468 + author: "spicyhek" + repo: "https://github.com/spicyhek/vsc-cyberpunk2077-theme" + url: "https://marketplace.visualstudio.com/items?itemName=spicyhek.vsc-cyberpunk2077-theme" +colors: + bg: "#160000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 29 + pair: null + contrast: + fg: 80.3 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/vsc-military-style.yaml b/themes/vsc-military-style.yaml index e077dae8..8cf7986d 100644 --- a/themes/vsc-military-style.yaml +++ b/themes/vsc-military-style.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ROMAINPC.vsc-military-monokai" version: "1.0.0" installs: 951 + rating: 0 + ratings: 0 author: "ROMAINPC" repo: "https://github.com/ROMAINPC/vsc-military-monokai" url: "https://marketplace.visualstudio.com/items?itemName=ROMAINPC.vsc-military-monokai" diff --git a/themes/vsc-minimalist-theme-flat.yaml b/themes/vsc-minimalist-theme-flat.yaml new file mode 100644 index 00000000..58b3b428 --- /dev/null +++ b/themes/vsc-minimalist-theme-flat.yaml @@ -0,0 +1,52 @@ +name: "vsc-minimalist-theme-flat" +source: + marketplace_id: "MuhammadMohsen.vsc-minimalist-theme" + version: "1.5.4" + installs: 1322 + rating: 5 + ratings: 1 + author: "Muhammad Mohsen" + repo: "https://github.com/Muhammad-Mohsen/vsc-minimalist-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMohsen.vsc-minimalist-theme" +colors: + bg: "#111111" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/vsc-minimalist-theme-oak.yaml b/themes/vsc-minimalist-theme-oak.yaml index 4823e06d..209e3207 100644 --- a/themes/vsc-minimalist-theme-oak.yaml +++ b/themes/vsc-minimalist-theme-oak.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MuhammadMohsen.vsc-minimalist-theme" version: "1.5.4" installs: 1322 + rating: 5 + ratings: 1 author: "Muhammad Mohsen" repo: "https://github.com/Muhammad-Mohsen/vsc-minimalist-theme" url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMohsen.vsc-minimalist-theme" diff --git a/themes/vsc-minimalist-theme-obsidian.yaml b/themes/vsc-minimalist-theme-obsidian.yaml index c3eb78e9..7d7d43ff 100644 --- a/themes/vsc-minimalist-theme-obsidian.yaml +++ b/themes/vsc-minimalist-theme-obsidian.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MuhammadMohsen.vsc-minimalist-theme" version: "1.5.4" installs: 1322 + rating: 5 + ratings: 1 author: "Muhammad Mohsen" repo: "https://github.com/Muhammad-Mohsen/vsc-minimalist-theme" url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMohsen.vsc-minimalist-theme" diff --git a/themes/vsc-minimalist-theme-odp.yaml b/themes/vsc-minimalist-theme-odp.yaml index e4d4ba20..dc96dddc 100644 --- a/themes/vsc-minimalist-theme-odp.yaml +++ b/themes/vsc-minimalist-theme-odp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MuhammadMohsen.vsc-minimalist-theme" version: "1.5.4" installs: 1322 + rating: 5 + ratings: 1 author: "Muhammad Mohsen" repo: "https://github.com/Muhammad-Mohsen/vsc-minimalist-theme" url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMohsen.vsc-minimalist-theme" diff --git a/themes/vsc-solarized-light.yaml b/themes/vsc-solarized-light.yaml index 8096ba01..1f83d9e3 100644 --- a/themes/vsc-solarized-light.yaml +++ b/themes/vsc-solarized-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ikx12333.vsc-soft-theme" version: "0.1.9" installs: 596 + rating: 0 + ratings: 0 author: "ikx12333" repo: "https://github.com/ikx12333/vsc-soft-theme" url: "https://marketplace.visualstudio.com/items?itemName=ikx12333.vsc-soft-theme" diff --git a/themes/vscode-epic-color-theme.yaml b/themes/vscode-epic-color-theme.yaml new file mode 100644 index 00000000..13e6f6ee --- /dev/null +++ b/themes/vscode-epic-color-theme.yaml @@ -0,0 +1,50 @@ +name: "VSCODE-EPIC-color-theme" +source: + marketplace_id: "juliuskoskela.vscode-epic-theme" + version: "0.1.1" + installs: 388 + author: "juliuskoskela" + repo: "https://github.com/juliuskoskela/vscode-epic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=juliuskoskela.vscode-epic-theme" +colors: + bg: "#000000" + fg: "#B3B1AD" + black: "#00010A" + red: "#EA6C73" + green: "#91B362" + yellow: "#FF8000" + blue: "#0070DD" + magenta: "#FF8000" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FF8000" + brightBlue: "#59C2FF" + brightMagenta: "#FF8000" + brightCyan: "#A335EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 60.2 + black: 0 + red: 45.1 + green: 55.2 + yellow: 53.3 + blue: 29.1 + magenta: 53.3 + cyan: 78.9 + white: 72.7 + brightBlack: 23.9 + brightRed: 47.6 + brightGreen: 76.9 + brightYellow: 53.3 + brightBlue: 64.3 + brightMagenta: 53.3 + brightCyan: 29.1 + brightWhite: 107.9 diff --git a/themes/vscode-forest-pro-chartreuse.yaml b/themes/vscode-forest-pro-chartreuse.yaml new file mode 100644 index 00000000..89bf4eb3 --- /dev/null +++ b/themes/vscode-forest-pro-chartreuse.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Chartreuse" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#0A1A0D" + fg: "#E8F5E8" + black: "#0A1A0D" + red: "#8BC34A" + green: "#A9DFBF" + yellow: "#7CB342" + blue: "#7CB342" + magenta: "#9E9D24" + cyan: "#DCE775" + white: "#E8F5E8" + brightBlack: "#4A5D4F" + brightRed: "#9CCC65" + brightGreen: "#C5E1A5" + brightYellow: "#DCE775" + brightBlue: "#DCE775" + brightMagenta: "#C5E1A5" + brightCyan: "#F0F4C3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 149 + pair: null + contrast: + fg: 97.9 + black: 0 + red: 60.3 + green: 78.8 + yellow: 51.9 + blue: 51.9 + magenta: 45.9 + cyan: 86.2 + white: 97.9 + brightBlack: 16.5 + brightRed: 66.3 + brightGreen: 81.8 + brightYellow: 86.2 + brightBlue: 86.2 + brightMagenta: 81.8 + brightCyan: 97.1 + brightWhite: 106.9 diff --git a/themes/vscode-forest-pro-dark-green.yaml b/themes/vscode-forest-pro-dark-green.yaml new file mode 100644 index 00000000..6318a5a9 --- /dev/null +++ b/themes/vscode-forest-pro-dark-green.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Dark Green" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#0A1F15" + fg: "#E8F5E8" + black: "#0D180F" + red: "#1B4D20" + green: "#3A7143" + yellow: "#1A5D1F" + blue: "#1A5D1F" + magenta: "#0C280E" + cyan: "#2E5A33" + white: "#D8E5D8" + brightBlack: "#3A4D3F" + brightRed: "#4A8B4E" + brightGreen: "#4A8B4E" + brightYellow: "#3A7143" + brightBlue: "#3A7143" + brightMagenta: "#4A8B4E" + brightCyan: "#5FA863" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 161 + pair: null + contrast: + fg: 97.4 + black: 0 + red: 8.3 + green: 21.4 + yellow: 13.3 + blue: 13.3 + magenta: 0 + cyan: 13 + white: 87.2 + brightBlack: 9.9 + brightRed: 32 + brightGreen: 32 + brightYellow: 21.4 + brightBlue: 21.4 + brightMagenta: 32 + brightCyan: 45.3 + brightWhite: 106.4 diff --git a/themes/vscode-forest-pro-enterprise-accessibility-enhanced.yaml b/themes/vscode-forest-pro-enterprise-accessibility-enhanced.yaml new file mode 100644 index 00000000..e12a7218 --- /dev/null +++ b/themes/vscode-forest-pro-enterprise-accessibility-enhanced.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Enterprise - Accessibility Enhanced" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#0D1B0F" + fg: "#E8F5E8" + black: "#0D1B0F" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFC107" + blue: "#4A90E2" + magenta: "#9013FE" + cyan: "#50E3C2" + white: "#E8F5E8" + brightBlack: "#757575" + brightRed: "#FF8A65" + brightGreen: "#81C784" + brightYellow: "#FFD700" + brightBlue: "#5BA7F7" + brightMagenta: "#E91E63" + brightCyan: "#26C6DA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 148 + pair: null + contrast: + fg: 97.8 + black: 0 + red: 37.6 + green: 47.4 + yellow: 74 + blue: 40.6 + magenta: 24.4 + cyan: 75.1 + white: 97.8 + brightBlack: 28.5 + brightRed: 55.8 + brightGreen: 62.3 + brightYellow: 83.1 + brightBlue: 51.5 + brightMagenta: 32.5 + brightCyan: 61.4 + brightWhite: 106.7 diff --git a/themes/vscode-forest-pro-enterprise-light.yaml b/themes/vscode-forest-pro-enterprise-light.yaml new file mode 100644 index 00000000..8ea96336 --- /dev/null +++ b/themes/vscode-forest-pro-enterprise-light.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Enterprise Light" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#FFFFFF" + fg: "#263238" + black: "#263238" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFC107" + blue: "#1565C0" + magenta: "#6A1B9A" + cyan: "#1565C0" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#FF8A65" + brightGreen: "#81C784" + brightYellow: "#FFD700" + brightBlue: "#1976D2" + brightMagenta: "#C2185B" + brightCyan: "#42A5F5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.5 + black: 99.5 + red: 63 + green: 53.3 + yellow: 27.8 + blue: 78.2 + magenta: 90.5 + cyan: 78.2 + white: 0 + brightBlack: 50.6 + brightRed: 45.2 + brightGreen: 38.9 + brightYellow: 19.2 + brightBlue: 71.4 + brightMagenta: 77.4 + brightCyan: 51.2 + brightWhite: 0 diff --git a/themes/vscode-forest-pro-enterprise.yaml b/themes/vscode-forest-pro-enterprise.yaml new file mode 100644 index 00000000..fdfeda50 --- /dev/null +++ b/themes/vscode-forest-pro-enterprise.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Enterprise" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#0A1A0D" + fg: "#E8F5E8" + black: "#0A1A0D" + red: "#4CAF50" + green: "#7ED321" + yellow: "#66BB6A" + blue: "#50E3C2" + magenta: "#26A69A" + cyan: "#80CBC4" + white: "#E8F5E8" + brightBlack: "#4A5D4F" + brightRed: "#81C784" + brightGreen: "#9FE870" + brightYellow: "#A5D6A7" + brightBlue: "#26C6DA" + brightMagenta: "#4DB6AC" + brightCyan: "#B2DFDB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 149 + pair: null + contrast: + fg: 97.9 + black: 0 + red: 47.6 + green: 66.5 + yellow: 54.6 + blue: 75.2 + magenta: 44.5 + cyan: 66.4 + white: 97.9 + brightBlack: 16.5 + brightRed: 62.4 + brightGreen: 80 + brightYellow: 73.4 + brightBlue: 61.5 + brightMagenta: 53.2 + brightCyan: 80.8 + brightWhite: 106.9 diff --git a/themes/vscode-forest-pro-hunter-green.yaml b/themes/vscode-forest-pro-hunter-green.yaml new file mode 100644 index 00000000..ad34436b --- /dev/null +++ b/themes/vscode-forest-pro-hunter-green.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Hunter Green" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#355E3B" + fg: "#E8F5E8" + black: "#355E3B" + red: "#2A4A2E" + green: "#355E3B" + yellow: "#1F3A23" + blue: "#1F3A23" + magenta: "#8CB890" + cyan: "#6B9A6F" + white: "#E8F5E8" + brightBlack: "#4A5D4F" + brightRed: "#4A7C4F" + brightGreen: "#4A7C4F" + brightYellow: "#6B9A6F" + brightBlue: "#6B9A6F" + brightMagenta: "#4A7C4F" + brightCyan: "#8CB8A0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 148 + pair: null + contrast: + fg: 81.7 + black: 0 + red: 0 + green: 0 + yellow: 10.4 + blue: 10.4 + magenta: 40.8 + cyan: 24.8 + white: 81.7 + brightBlack: 0 + brightRed: 10.6 + brightGreen: 10.6 + brightYellow: 24.8 + brightBlue: 24.8 + brightMagenta: 10.6 + brightCyan: 41.3 + brightWhite: 90.6 diff --git a/themes/vscode-forest-pro-jade.yaml b/themes/vscode-forest-pro-jade.yaml new file mode 100644 index 00000000..8af6f0f3 --- /dev/null +++ b/themes/vscode-forest-pro-jade.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Jade" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#0A1A0D" + fg: "#E8F5E8" + black: "#0A1A0D" + red: "#008F5F" + green: "#00A86B" + yellow: "#00764F" + blue: "#00764F" + magenta: "#00D696" + cyan: "#00C08A" + white: "#E8F5E8" + brightBlack: "#4A5D4F" + brightRed: "#2CC086" + brightGreen: "#2CC086" + brightYellow: "#00C08A" + brightBlue: "#00C08A" + brightMagenta: "#2CC086" + brightCyan: "#4DD6A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 149 + pair: null + contrast: + fg: 97.9 + black: 0 + red: 32.9 + green: 43.7 + yellow: 23 + blue: 23 + magenta: 66.1 + cyan: 55.3 + white: 97.9 + brightBlack: 16.5 + brightRed: 55.5 + brightGreen: 55.5 + brightYellow: 55.3 + brightBlue: 55.3 + brightMagenta: 55.5 + brightCyan: 67.7 + brightWhite: 106.9 diff --git a/themes/vscode-forest-pro-kelly-green.yaml b/themes/vscode-forest-pro-kelly-green.yaml new file mode 100644 index 00000000..424f40d5 --- /dev/null +++ b/themes/vscode-forest-pro-kelly-green.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Kelly Green" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#0A1A0D" + fg: "#E8F5E8" + black: "#0A1A0D" + red: "#2D5016" + green: "#2F6E31" + yellow: "#38761D" + blue: "#38761D" + magenta: "#3B5700" + cyan: "#4E9A06" + white: "#E8F5E8" + brightBlack: "#4A5D4F" + brightRed: "#3A833C" + brightGreen: "#3A833C" + brightYellow: "#4E9A06" + brightBlue: "#4E9A06" + brightMagenta: "#3A833C" + brightCyan: "#8AE234" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 149 + pair: null + contrast: + fg: 97.9 + black: 0 + red: 10.2 + green: 20.2 + yellow: 23.2 + blue: 23.2 + magenta: 12.9 + cyan: 38.1 + white: 97.9 + brightBlack: 16.5 + brightRed: 28.4 + brightGreen: 28.4 + brightYellow: 38.1 + brightBlue: 38.1 + brightMagenta: 28.4 + brightCyan: 74.7 + brightWhite: 106.9 diff --git a/themes/vscode-forest-pro-mint-green.yaml b/themes/vscode-forest-pro-mint-green.yaml new file mode 100644 index 00000000..859915f6 --- /dev/null +++ b/themes/vscode-forest-pro-mint-green.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Mint Green" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#0A1A0D" + fg: "#E8F5E8" + black: "#0A1A0D" + red: "#2E8B57" + green: "#3CB371" + yellow: "#4CAF50" + blue: "#4CAF50" + magenta: "#388E3C" + cyan: "#A5D6A7" + white: "#E8F5E8" + brightBlack: "#4A5D4F" + brightRed: "#66BB6A" + brightGreen: "#66BB6A" + brightYellow: "#81C784" + brightBlue: "#81C784" + brightMagenta: "#66BB6A" + brightCyan: "#A5D6A7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 149 + pair: null + contrast: + fg: 97.9 + black: 0 + red: 31.6 + green: 49.4 + yellow: 47.6 + blue: 47.6 + magenta: 32.7 + cyan: 73.4 + white: 97.9 + brightBlack: 16.5 + brightRed: 54.6 + brightGreen: 54.6 + brightYellow: 62.4 + brightBlue: 62.4 + brightMagenta: 54.6 + brightCyan: 73.4 + brightWhite: 106.9 diff --git a/themes/vscode-forest-pro-moss-green.yaml b/themes/vscode-forest-pro-moss-green.yaml new file mode 100644 index 00000000..d27e4652 --- /dev/null +++ b/themes/vscode-forest-pro-moss-green.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Moss Green" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#0A1A0D" + fg: "#E8F5E8" + black: "#0A1A0D" + red: "#738349" + green: "#8A9A5B" + yellow: "#5C6A3A" + blue: "#5C6A3A" + magenta: "#D6E392" + cyan: "#C4D285" + white: "#E8F5E8" + brightBlack: "#4A5D4F" + brightRed: "#A5B670" + brightGreen: "#A5B670" + brightYellow: "#C4D285" + brightBlue: "#C4D285" + brightMagenta: "#A5B670" + brightCyan: "#D6E39F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 149 + pair: null + contrast: + fg: 97.9 + black: 0 + red: 32.2 + green: 43.3 + yellow: 21.5 + blue: 21.5 + magenta: 84.2 + cyan: 73.9 + white: 97.9 + brightBlack: 16.5 + brightRed: 57.8 + brightGreen: 57.8 + brightYellow: 73.9 + brightBlue: 73.9 + brightMagenta: 57.8 + brightCyan: 84.6 + brightWhite: 106.9 diff --git a/themes/vscode-forest-pro-olive.yaml b/themes/vscode-forest-pro-olive.yaml new file mode 100644 index 00000000..1e05fa16 --- /dev/null +++ b/themes/vscode-forest-pro-olive.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Olive" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#0D0D08" + fg: "#E8E8D0" + black: "#0D0D08" + red: "#8A8A4F" + green: "#B5B35C" + yellow: "#9C9C5F" + blue: "#7A7A52" + magenta: "#5C5C3E" + cyan: "#8C8C63" + white: "#E8E8D0" + brightBlack: "#4A4D40" + brightRed: "#A9A970" + brightGreen: "#C3C388" + brightYellow: "#D1D19F" + brightBlue: "#6B6B47" + brightMagenta: "#6D6D4F" + brightCyan: "#9E9E7F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 108 + pair: null + contrast: + fg: 91.6 + black: 0 + red: 37.8 + green: 58.8 + yellow: 46.8 + blue: 30.6 + magenta: 17.9 + cyan: 39.1 + white: 91.6 + brightBlack: 12.3 + brightRed: 53.7 + brightGreen: 68.1 + brightYellow: 76.6 + brightBlue: 24.1 + brightMagenta: 25 + brightCyan: 48.5 + brightWhite: 107.6 diff --git a/themes/vscode-forest-pro-pale-green.yaml b/themes/vscode-forest-pro-pale-green.yaml new file mode 100644 index 00000000..d7d1675e --- /dev/null +++ b/themes/vscode-forest-pro-pale-green.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Pale Green" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#0A1A0D" + fg: "#E8F5E8" + black: "#0A1A0D" + red: "#7FD67A" + green: "#A8E6A3" + yellow: "#5CC557" + blue: "#5CC557" + magenta: "#D4F4D1" + cyan: "#E0FFE0" + white: "#E8F5E8" + brightBlack: "#4A5D4F" + brightRed: "#C8F7C5" + brightGreen: "#C8F7C5" + brightYellow: "#E0FFE0" + brightBlue: "#E0FFE0" + brightMagenta: "#C8F7C5" + brightCyan: "#F0FFF0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 149 + pair: null + contrast: + fg: 97.9 + black: 0 + red: 69 + green: 81.1 + yellow: 58.3 + blue: 58.3 + magenta: 94 + cyan: 101.4 + white: 97.9 + brightBlack: 16.5 + brightRed: 93.7 + brightGreen: 93.7 + brightYellow: 101.4 + brightBlue: 101.4 + brightMagenta: 93.7 + brightCyan: 104.1 + brightWhite: 106.9 diff --git a/themes/vscode-forest-pro-pine-green.yaml b/themes/vscode-forest-pro-pine-green.yaml new file mode 100644 index 00000000..ceba3680 --- /dev/null +++ b/themes/vscode-forest-pro-pine-green.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Pine Green" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#50C878" + fg: "#E8F5E8" + black: "#50C878" + red: "#1F4F38" + green: "#2A6B4C" + yellow: "#173A2A" + blue: "#173A2A" + magenta: "#7CC4A3" + cyan: "#5CA88A" + white: "#E8F5E8" + brightBlack: "#4A5D4F" + brightRed: "#3D8A6A" + brightGreen: "#3D8A6A" + brightYellow: "#5CA88A" + brightBlue: "#5CA88A" + brightMagenta: "#3D8A6A" + brightCyan: "#7CC4B3" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "teal" + hue: 152 + pair: null + contrast: + fg: 37.1 + black: 0 + red: 48.1 + green: 37.9 + yellow: 54.9 + blue: 54.9 + magenta: 0 + cyan: 10.7 + white: 37.1 + brightBlack: 41 + brightRed: 25 + brightGreen: 25 + brightYellow: 10.7 + brightBlue: 10.7 + brightMagenta: 25 + brightCyan: 0 + brightWhite: 46 diff --git a/themes/vscode-forest-pro-sea-green.yaml b/themes/vscode-forest-pro-sea-green.yaml new file mode 100644 index 00000000..645d5aa7 --- /dev/null +++ b/themes/vscode-forest-pro-sea-green.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Sea Green" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#0A1A0D" + fg: "#E8F5E8" + black: "#0A1A0D" + red: "#008B8B" + green: "#2E8B57" + yellow: "#20B2AA" + blue: "#20B2AA" + magenta: "#00CED1" + cyan: "#40E0D0" + white: "#E8F5E8" + brightBlack: "#4A5D4F" + brightRed: "#3CB371" + brightGreen: "#3CB371" + brightYellow: "#48D1CC" + brightBlue: "#48D1CC" + brightMagenta: "#5F9EA0" + brightCyan: "#40E0D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 149 + pair: null + contrast: + fg: 97.9 + black: 0 + red: 32.7 + green: 31.6 + yellow: 50.3 + blue: 50.3 + magenta: 64.6 + cyan: 73.8 + white: 97.9 + brightBlack: 16.5 + brightRed: 49.4 + brightGreen: 49.4 + brightYellow: 66.7 + brightBlue: 66.7 + brightMagenta: 43.5 + brightCyan: 73.8 + brightWhite: 106.9 diff --git a/themes/vscode-forest-pro-shamrock.yaml b/themes/vscode-forest-pro-shamrock.yaml new file mode 100644 index 00000000..16e80f07 --- /dev/null +++ b/themes/vscode-forest-pro-shamrock.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Shamrock" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#0A1A0D" + fg: "#E8F5E8" + black: "#0A1A0D" + red: "#00B558" + green: "#00CE63" + yellow: "#009C4D" + blue: "#009C4D" + magenta: "#4DFFA6" + cyan: "#40FF99" + white: "#E8F5E8" + brightBlack: "#4A5D4F" + brightRed: "#2DE57F" + brightGreen: "#2DE57F" + brightYellow: "#40FF99" + brightBlue: "#40FF99" + brightMagenta: "#2DE57F" + brightCyan: "#5DFFB3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 149 + pair: null + contrast: + fg: 97.9 + black: 0 + red: 49.1 + green: 61 + yellow: 37.9 + blue: 37.9 + magenta: 88.5 + cyan: 87.8 + white: 97.9 + brightBlack: 16.5 + brightRed: 73.3 + brightGreen: 73.3 + brightYellow: 87.8 + brightBlue: 87.8 + brightMagenta: 73.3 + brightCyan: 89.4 + brightWhite: 106.9 diff --git a/themes/vscode-forest-pro-spring-green.yaml b/themes/vscode-forest-pro-spring-green.yaml new file mode 100644 index 00000000..266d0c8d --- /dev/null +++ b/themes/vscode-forest-pro-spring-green.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Spring Green" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#0A1A0D" + fg: "#E8F5E8" + black: "#0A1A0D" + red: "#64DD17" + green: "#00C851" + yellow: "#76FF03" + blue: "#76FF03" + magenta: "#9CCC65" + cyan: "#B2FF59" + white: "#E8F5E8" + brightBlack: "#4A5D4F" + brightRed: "#00E676" + brightGreen: "#00E676" + brightYellow: "#B2FF59" + brightBlue: "#B2FF59" + brightMagenta: "#00E676" + brightCyan: "#CCFF90" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 149 + pair: null + contrast: + fg: 97.9 + black: 0 + red: 69.8 + green: 57.8 + yellow: 88.1 + blue: 88.1 + magenta: 66.3 + cyan: 93 + white: 97.9 + brightBlack: 16.5 + brightRed: 73.3 + brightGreen: 73.3 + brightYellow: 93 + brightBlue: 93 + brightMagenta: 73.3 + brightCyan: 96.5 + brightWhite: 106.9 diff --git a/themes/vscode-forest-pro-tea-green.yaml b/themes/vscode-forest-pro-tea-green.yaml new file mode 100644 index 00000000..3247117e --- /dev/null +++ b/themes/vscode-forest-pro-tea-green.yaml @@ -0,0 +1,52 @@ +name: "VSCode Forest Pro Tea Green" +source: + marketplace_id: "akashbadole.vscode-forest-pro" + version: "2.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "akashbadole" + repo: "https://github.com/akashsbadole/vscode-forest-pro" + url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" +colors: + bg: "#0A1A0D" + fg: "#E8F5E8" + black: "#0A1A0D" + red: "#8BB086" + green: "#A3C9A8" + yellow: "#73976E" + blue: "#73976E" + magenta: "#F0FAF5" + cyan: "#E0F2E9" + white: "#E8F5E8" + brightBlack: "#4A5D4F" + brightRed: "#C4DFC6" + brightGreen: "#C4DFC6" + brightYellow: "#E0F2E9" + brightBlue: "#E0F2E9" + brightMagenta: "#C4DFC6" + brightCyan: "#F0FAFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 149 + pair: null + contrast: + fg: 97.9 + black: 0 + red: 53.2 + green: 67.3 + yellow: 40.5 + blue: 40.5 + magenta: 101.9 + cyan: 95.5 + white: 97.9 + brightBlack: 16.5 + brightRed: 81.9 + brightGreen: 81.9 + brightYellow: 95.5 + brightBlue: 95.5 + brightMagenta: 81.9 + brightCyan: 102.4 + brightWhite: 106.9 diff --git a/themes/vscode-material-ui.yaml b/themes/vscode-material-ui.yaml index a0542b56..0a123855 100644 --- a/themes/vscode-material-ui.yaml +++ b/themes/vscode-material-ui.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nxt3.vscode-material-ui" version: "1.2.0" installs: 30118 + rating: 0 + ratings: 0 author: "nxt3" repo: "https://github.com/Nxt3/vscode-material-ui" url: "https://marketplace.visualstudio.com/items?itemName=nxt3.vscode-material-ui" diff --git a/themes/vscode-nofrils-dark.yaml b/themes/vscode-nofrils-dark.yaml index 6dcbbe5a..7954be14 100644 --- a/themes/vscode-nofrils-dark.yaml +++ b/themes/vscode-nofrils-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "batteajd.vscode-nofrils" version: "2.2.0" installs: 102 + rating: 0 + ratings: 0 author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" diff --git a/themes/vscode-nofrils-github-light.yaml b/themes/vscode-nofrils-github-light.yaml index 9681815c..5d5623cf 100644 --- a/themes/vscode-nofrils-github-light.yaml +++ b/themes/vscode-nofrils-github-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "batteajd.vscode-nofrils" version: "2.2.0" installs: 102 + rating: 0 + ratings: 0 author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" diff --git a/themes/vscode-nofrils-gruvbox-dark.yaml b/themes/vscode-nofrils-gruvbox-dark.yaml index cf115537..f6b5d29f 100644 --- a/themes/vscode-nofrils-gruvbox-dark.yaml +++ b/themes/vscode-nofrils-gruvbox-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "batteajd.vscode-nofrils" version: "2.2.0" installs: 102 + rating: 0 + ratings: 0 author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" diff --git a/themes/vscode-nofrils-gruvbox-light.yaml b/themes/vscode-nofrils-gruvbox-light.yaml index 441061ab..18ace5f8 100644 --- a/themes/vscode-nofrils-gruvbox-light.yaml +++ b/themes/vscode-nofrils-gruvbox-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "batteajd.vscode-nofrils" version: "2.2.0" installs: 102 + rating: 0 + ratings: 0 author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" diff --git a/themes/vscode-nofrils-light.yaml b/themes/vscode-nofrils-light.yaml index 404b3349..d7972188 100644 --- a/themes/vscode-nofrils-light.yaml +++ b/themes/vscode-nofrils-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "batteajd.vscode-nofrils" version: "2.2.0" installs: 102 + rating: 0 + ratings: 0 author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" diff --git a/themes/vscode-nofrils-one-dark.yaml b/themes/vscode-nofrils-one-dark.yaml index 28624ee9..51be7950 100644 --- a/themes/vscode-nofrils-one-dark.yaml +++ b/themes/vscode-nofrils-one-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "batteajd.vscode-nofrils" version: "2.2.0" installs: 102 + rating: 0 + ratings: 0 author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" diff --git a/themes/vscode-nofrils-one-light.yaml b/themes/vscode-nofrils-one-light.yaml index 4b72a1d1..476f59f9 100644 --- a/themes/vscode-nofrils-one-light.yaml +++ b/themes/vscode-nofrils-one-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "batteajd.vscode-nofrils" version: "2.2.0" installs: 102 + rating: 0 + ratings: 0 author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" diff --git a/themes/vscode-nofrils-sepia.yaml b/themes/vscode-nofrils-sepia.yaml index b27c2f00..c210d178 100644 --- a/themes/vscode-nofrils-sepia.yaml +++ b/themes/vscode-nofrils-sepia.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "batteajd.vscode-nofrils" version: "2.2.0" installs: 102 + rating: 0 + ratings: 0 author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" diff --git a/themes/vscode-nofrils-tokyo-night.yaml b/themes/vscode-nofrils-tokyo-night.yaml index 37e391cf..406d4092 100644 --- a/themes/vscode-nofrils-tokyo-night.yaml +++ b/themes/vscode-nofrils-tokyo-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "batteajd.vscode-nofrils" version: "2.2.0" installs: 102 + rating: 0 + ratings: 0 author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" diff --git a/themes/vscode-pink-and-puple-theme.yaml b/themes/vscode-pink-and-puple-theme.yaml index 3d202505..1d4a7563 100644 --- a/themes/vscode-pink-and-puple-theme.yaml +++ b/themes/vscode-pink-and-puple-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KelsonCarvalho.vscode-pink-and-puple-theme" version: "2.0.0" installs: 1129 + rating: 0 + ratings: 0 author: "Kelson Carvalho" repo: "https://github.com/NoslekCode/vscode-pink-and-puple-theme" url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.vscode-pink-and-puple-theme" diff --git a/themes/vscode-sublime-ish.yaml b/themes/vscode-sublime-ish.yaml index faee5e35..f9ba3924 100644 --- a/themes/vscode-sublime-ish.yaml +++ b/themes/vscode-sublime-ish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "keepflying.sublime-ish" version: "0.0.1" installs: 134 + rating: 0 + ratings: 0 author: "keepflying" repo: null url: "https://marketplace.visualstudio.com/items?itemName=keepflying.sublime-ish" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 98.3 black: 98.3 diff --git a/themes/vscode-theme.yaml b/themes/vscode-theme.yaml index 31d26a2c..a0620a08 100644 --- a/themes/vscode-theme.yaml +++ b/themes/vscode-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JhosephS.vscodemaintheme" version: "2.1.3" installs: 979 + rating: 0 + ratings: 0 author: "JhosephS" repo: "https://github.com/JhosephL/VSCodeThemes" url: "https://marketplace.visualstudio.com/items?itemName=JhosephS.vscodemaintheme" diff --git a/themes/vsmuted-color-theme.yaml b/themes/vsmuted-color-theme.yaml index 7f243888..15cf0221 100644 --- a/themes/vsmuted-color-theme.yaml +++ b/themes/vsmuted-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PJWalker.vs-muted" version: "1.2.0" installs: 1189 + rating: 0 + ratings: 0 author: "PJ Walker" repo: "https://github.com/PJWalker/VS-Muted" url: "https://marketplace.visualstudio.com/items?itemName=PJWalker.vs-muted" diff --git a/themes/vstheme-no-italics.yaml b/themes/vstheme-no-italics.yaml index 90e6a214..b827d358 100644 --- a/themes/vstheme-no-italics.yaml +++ b/themes/vstheme-no-italics.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jamesgleason.vstheme" version: "1.0.0" installs: 355 + rating: 5 + ratings: 1 author: "James Gleason" repo: "https://github.com/jameygleason/vstheme" url: "https://marketplace.visualstudio.com/items?itemName=jamesgleason.vstheme" diff --git a/themes/vstoolkit-theme-dark.yaml b/themes/vstoolkit-theme-dark.yaml index eb458b75..0dc6a1bb 100644 --- a/themes/vstoolkit-theme-dark.yaml +++ b/themes/vstoolkit-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "PhilippBo.vstoolkit" version: "1.1.0" installs: 133 + rating: 0 + ratings: 0 author: "Philipp Bo." repo: "https://github.com/phil1436/VSToolKit" url: "https://marketplace.visualstudio.com/items?itemName=PhilippBo.vstoolkit" diff --git a/themes/vuejs-theme.yaml b/themes/vuejs-theme.yaml index fbb8408d..8a907a27 100644 --- a/themes/vuejs-theme.yaml +++ b/themes/vuejs-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "leonardoleal202.vuejs-theme" version: "2.0.0" installs: 12760 + rating: 5 + ratings: 1 author: "leonardoleal202" repo: "https://github.com/Leozhr/VueJS-Theme" url: "https://marketplace.visualstudio.com/items?itemName=leonardoleal202.vuejs-theme" diff --git a/themes/vxcode-blush.yaml b/themes/vxcode-blush.yaml index 3ef2fd11..1a277601 100644 --- a/themes/vxcode-blush.yaml +++ b/themes/vxcode-blush.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "evertjunior.vxcode-theme" version: "0.0.15" installs: 3239 + rating: 5 + ratings: 3 author: "Evert Junior" repo: "https://github.com/evertjr/vxcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" diff --git a/themes/vxcode-cream.yaml b/themes/vxcode-cream.yaml index bfc50e23..bf737557 100644 --- a/themes/vxcode-cream.yaml +++ b/themes/vxcode-cream.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "evertjunior.vxcode-theme" version: "0.0.15" installs: 3239 + rating: 5 + ratings: 3 author: "Evert Junior" repo: "https://github.com/evertjr/vxcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" diff --git a/themes/vxcode-dark.yaml b/themes/vxcode-dark.yaml index dc9508ef..c81a263e 100644 --- a/themes/vxcode-dark.yaml +++ b/themes/vxcode-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "evertjunior.vxcode-theme" version: "0.0.15" installs: 3239 + rating: 5 + ratings: 3 author: "Evert Junior" repo: "https://github.com/evertjr/vxcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" diff --git a/themes/vxcode-darker.yaml b/themes/vxcode-darker.yaml index 1c7a65cb..2641ee89 100644 --- a/themes/vxcode-darker.yaml +++ b/themes/vxcode-darker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "evertjunior.vxcode-theme" version: "0.0.15" installs: 3239 + rating: 5 + ratings: 3 author: "Evert Junior" repo: "https://github.com/evertjr/vxcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" diff --git a/themes/vxcode-lavender.yaml b/themes/vxcode-lavender.yaml index 17157277..ad30f39c 100644 --- a/themes/vxcode-lavender.yaml +++ b/themes/vxcode-lavender.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "evertjunior.vxcode-theme" version: "0.0.15" installs: 3239 + rating: 5 + ratings: 3 author: "Evert Junior" repo: "https://github.com/evertjr/vxcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" diff --git a/themes/vxcode-lime.yaml b/themes/vxcode-lime.yaml index eab0fbfb..4b5c9a69 100644 --- a/themes/vxcode-lime.yaml +++ b/themes/vxcode-lime.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "evertjunior.vxcode-theme" version: "0.0.15" installs: 3239 + rating: 5 + ratings: 3 author: "Evert Junior" repo: "https://github.com/evertjr/vxcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" diff --git a/themes/vxcode-oled.yaml b/themes/vxcode-oled.yaml index 8dbd8630..4a050d2f 100644 --- a/themes/vxcode-oled.yaml +++ b/themes/vxcode-oled.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "evertjunior.vxcode-theme" version: "0.0.15" installs: 3239 + rating: 5 + ratings: 3 author: "Evert Junior" repo: "https://github.com/evertjr/vxcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" diff --git a/themes/w40-theme.yaml b/themes/w40-theme.yaml index 7a34ed23..d7d4910d 100644 --- a/themes/w40-theme.yaml +++ b/themes/w40-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "emersonsm.pinkcode-theme" version: "1.3.4" installs: 702 + rating: 0 + ratings: 0 author: "emersonsm" repo: "https://github.com/emersonsm/pinkcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=emersonsm.pinkcode-theme" diff --git a/themes/wallbash.yaml b/themes/wallbash.yaml index 2294faba..ccb8a75c 100644 --- a/themes/wallbash.yaml +++ b/themes/wallbash.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheHyDEProject.wallbash" version: "0.3.7" installs: 2230 + rating: 5 + ratings: 1 author: "The HyDE Project" repo: "https://github.com/HyDE-Project/vscode-wallbash" url: "https://marketplace.visualstudio.com/items?itemName=TheHyDEProject.wallbash" diff --git a/themes/walloco-light-theme.yaml b/themes/walloco-light-theme.yaml index d9fe8c75..e49ec4c9 100644 --- a/themes/walloco-light-theme.yaml +++ b/themes/walloco-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "StevenWaller.walloco-light-theme" version: "0.0.1" installs: 75 + rating: 0 + ratings: 0 author: "Steven Waller" repo: "https://github.com/stevenwaller/walloco-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=StevenWaller.walloco-light-theme" diff --git a/themes/walls-fill.yaml b/themes/walls-fill.yaml index 866bb196..78cc4555 100644 --- a/themes/walls-fill.yaml +++ b/themes/walls-fill.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mmmint.walls-theme-dark" version: "1.0.5" installs: 565 + rating: 0 + ratings: 0 author: "mmmint" repo: "https://github.com/mmmintdesign/vscode-walls-theme-dark" url: "https://marketplace.visualstudio.com/items?itemName=mmmint.walls-theme-dark" diff --git a/themes/wandering-mercenary.yaml b/themes/wandering-mercenary.yaml index 0a655e18..3688cadf 100644 --- a/themes/wandering-mercenary.yaml +++ b/themes/wandering-mercenary.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "FastExtract.wandering-mercenary" version: "1.0.2" installs: 317 + rating: 5 + ratings: 1 author: "FastExtract" repo: "https://github.com/RudigerMorinDocter/Wandering-Mercenary" url: "https://marketplace.visualstudio.com/items?itemName=FastExtract.wandering-mercenary" diff --git a/themes/wangyj-black.yaml b/themes/wangyj-black.yaml new file mode 100644 index 00000000..f8a9d026 --- /dev/null +++ b/themes/wangyj-black.yaml @@ -0,0 +1,52 @@ +name: "Wangyj Black" +source: + marketplace_id: "wangyjhh.nice-vscode-extension" + version: "0.9.1" + installs: 39 + rating: 5 + ratings: 1 + author: "wyj" + repo: "https://github.com/wangyjhh/nice_vscode_extension" + url: "https://marketplace.visualstudio.com/items?itemName=wangyjhh.nice-vscode-extension" +colors: + bg: "#000000" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#3AA675" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#3AA675" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 82.3 + black: 0 + red: 41.8 + green: 44.8 + yellow: 76.6 + blue: 42.4 + magenta: 44.9 + cyan: 50.3 + white: 82.3 + brightBlack: 30.6 + brightRed: 41.8 + brightGreen: 44.8 + brightYellow: 76.6 + brightBlue: 42.4 + brightMagenta: 44.9 + brightCyan: 50.3 + brightWhite: 107.9 diff --git a/themes/wangyj-bright-black.yaml b/themes/wangyj-bright-black.yaml index cabd32ae..d7a9f787 100644 --- a/themes/wangyj-bright-black.yaml +++ b/themes/wangyj-bright-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wangyjhh.nice-vscode-extension" version: "0.9.1" installs: 39 + rating: 5 + ratings: 1 author: "wyj" repo: "https://github.com/wangyjhh/nice_vscode_extension" url: "https://marketplace.visualstudio.com/items?itemName=wangyjhh.nice-vscode-extension" diff --git a/themes/wangyj-film-black.yaml b/themes/wangyj-film-black.yaml index 8129510b..3a03d769 100644 --- a/themes/wangyj-film-black.yaml +++ b/themes/wangyj-film-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wangyjhh.nice-vscode-extension" version: "0.9.1" installs: 39 + rating: 5 + ratings: 1 author: "wyj" repo: "https://github.com/wangyjhh/nice_vscode_extension" url: "https://marketplace.visualstudio.com/items?itemName=wangyjhh.nice-vscode-extension" diff --git a/themes/wangyj-film-light.yaml b/themes/wangyj-film-light.yaml index ac5135e5..0ba17017 100644 --- a/themes/wangyj-film-light.yaml +++ b/themes/wangyj-film-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wangyjhh.nice-vscode-extension" version: "0.9.1" installs: 39 + rating: 5 + ratings: 1 author: "wyj" repo: "https://github.com/wangyjhh/nice_vscode_extension" url: "https://marketplace.visualstudio.com/items?itemName=wangyjhh.nice-vscode-extension" diff --git a/themes/warlock-contrast.yaml b/themes/warlock-contrast.yaml index 6a1d695d..bc2a8c46 100644 --- a/themes/warlock-contrast.yaml +++ b/themes/warlock-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/warlock-light.yaml b/themes/warlock-light.yaml index 82b80802..bc9f42eb 100644 --- a/themes/warlock-light.yaml +++ b/themes/warlock-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/warlock.yaml b/themes/warlock.yaml index 3b6ad26f..3349a069 100644 --- a/themes/warlock.yaml +++ b/themes/warlock.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/warm-black.yaml b/themes/warm-black.yaml index 0881988c..ca43d60b 100644 --- a/themes/warm-black.yaml +++ b/themes/warm-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vaghylevente.warm-black" version: "0.0.7" installs: 815 + rating: 0 + ratings: 0 author: "vaghylevente" repo: "https://github.com/vaghylevente/warm-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=vaghylevente.warm-black" diff --git a/themes/warm-burnout-dark.yaml b/themes/warm-burnout-dark.yaml index c0a631a5..9ae65197 100644 --- a/themes/warm-burnout-dark.yaml +++ b/themes/warm-burnout-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "felip3fdl.warm-burnout" version: "0.1.6" installs: 15 + rating: 5 + ratings: 1 author: "Felipe F Lima" repo: "https://github.com/felipefdl/warm-burnout" url: "https://marketplace.visualstudio.com/items?itemName=felip3fdl.warm-burnout" diff --git a/themes/warm-burnout-light.yaml b/themes/warm-burnout-light.yaml index 1e08ed18..c4e3ac54 100644 --- a/themes/warm-burnout-light.yaml +++ b/themes/warm-burnout-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "felip3fdl.warm-burnout" version: "0.1.6" installs: 15 + rating: 5 + ratings: 1 author: "Felipe F Lima" repo: "https://github.com/felipefdl/warm-burnout" url: "https://marketplace.visualstudio.com/items?itemName=felip3fdl.warm-burnout" diff --git a/themes/warm-orange-enthusiasm-creativity.yaml b/themes/warm-orange-enthusiasm-creativity.yaml index 22112307..f8126e2d 100644 --- a/themes/warm-orange-enthusiasm-creativity.yaml +++ b/themes/warm-orange-enthusiasm-creativity.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "akashbadole.dev-ideas-themes" version: "2.1.1" installs: 406 + rating: 5 + ratings: 1 author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" diff --git a/themes/warm-orange-theme.yaml b/themes/warm-orange-theme.yaml index 96242469..4deb9d7e 100644 --- a/themes/warm-orange-theme.yaml +++ b/themes/warm-orange-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JerryJ.trae-warm-orange-theme" version: "1.0.5" installs: 29 + rating: 0 + ratings: 0 author: "JerryJ" repo: "https://github.com/xyjie37/WarmOrange" url: "https://marketplace.visualstudio.com/items?itemName=JerryJ.trae-warm-orange-theme" diff --git a/themes/warmkai-pro.yaml b/themes/warmkai-pro.yaml index 7bf75674..cefa911d 100644 --- a/themes/warmkai-pro.yaml +++ b/themes/warmkai-pro.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ViciandoCodigo.warmkai" version: "1.4.0" installs: 279 + rating: 5 + ratings: 1 author: "Viciando Codigo" repo: "https://github.com/Torr1co/warmkai" url: "https://marketplace.visualstudio.com/items?itemName=ViciandoCodigo.warmkai" diff --git a/themes/waste-contrast.yaml b/themes/waste-contrast.yaml index 35bec5ff..19c99e2b 100644 --- a/themes/waste-contrast.yaml +++ b/themes/waste-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/waste-light.yaml b/themes/waste-light.yaml index d9b042c5..9910991b 100644 --- a/themes/waste-light.yaml +++ b/themes/waste-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/waste.yaml b/themes/waste.yaml index 96c33c7b..c04ea1c6 100644 --- a/themes/waste.yaml +++ b/themes/waste.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/water-grape.yaml b/themes/water-grape.yaml index 12d4294c..a1125414 100644 --- a/themes/water-grape.yaml +++ b/themes/water-grape.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "qfilip.watergrape-theme" version: "0.0.2" installs: 5218 + rating: 0 + ratings: 0 author: "qfilip" repo: "https://github.com/qfilip/watergrape-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=qfilip.watergrape-theme" diff --git a/themes/waterbyte-classic-2022-light.yaml b/themes/waterbyte-classic-2022-light.yaml index 341c5da6..85dbe33c 100644 --- a/themes/waterbyte-classic-2022-light.yaml +++ b/themes/waterbyte-classic-2022-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ungarmichael.wbyt-theme" version: "0.2.3" installs: 240 + rating: 5 + ratings: 1 author: "Michael Ungar" repo: "https://github.com/ungarmichael/wbyt-theme" url: "https://marketplace.visualstudio.com/items?itemName=ungarmichael.wbyt-theme" diff --git a/themes/watercourse.yaml b/themes/watercourse.yaml new file mode 100644 index 00000000..bd23127e --- /dev/null +++ b/themes/watercourse.yaml @@ -0,0 +1,50 @@ +name: "WaterCourse" +source: + marketplace_id: "Arber34.watercourse" + version: "0.1.0" + installs: 246 + author: "Arber34" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Arber34.watercourse" +colors: + bg: "#070808" + fg: "#BD5CFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#196366" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 40.6 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 18.1 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/watermelon.yaml b/themes/watermelon.yaml index 80724f16..cee5fb68 100644 --- a/themes/watermelon.yaml +++ b/themes/watermelon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mlkywy.watermelon-theme" version: "0.3.0" installs: 2754 + rating: 5 + ratings: 1 author: "mlkywy" repo: "https://github.com/alshei/vscode-watermelon" url: "https://marketplace.visualstudio.com/items?itemName=mlkywy.watermelon-theme" diff --git a/themes/wave-delight-vs-dark-cool.yaml b/themes/wave-delight-vs-dark-cool.yaml new file mode 100644 index 00000000..2e563bcc --- /dev/null +++ b/themes/wave-delight-vs-dark-cool.yaml @@ -0,0 +1,52 @@ +name: "Wave Delight VS Dark Cool" +source: + marketplace_id: "sadhu.wave-delight" + version: "0.0.7" + installs: 910 + rating: 5 + ratings: 1 + author: "sadhu" + repo: "https://github.com/itzDM/wave-delight-vs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sadhu.wave-delight" +colors: + bg: "#191D21" + fg: "#FFFFFF" + black: "#242A2F" + red: "#BA0E2E" + green: "#E85362" + yellow: "#5392DB" + blue: "#5392DB" + magenta: "#E85362" + cyan: "#9B78DB" + white: "#FFFFFF" + brightBlack: "#45505B" + brightRed: "#F03E5F" + brightGreen: "#F4ADB4" + brightYellow: "#A7C7ED" + brightBlue: "#A7C7ED" + brightMagenta: "#F4ADB4" + brightCyan: "#D7C9F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 106.2 + black: 0 + red: 19.9 + green: 37.5 + yellow: 40.7 + blue: 40.7 + magenta: 37.5 + cyan: 38.3 + white: 106.2 + brightBlack: 12.1 + brightRed: 36.1 + brightGreen: 66.8 + brightYellow: 69.3 + brightBlue: 69.3 + brightMagenta: 66.8 + brightCyan: 75.9 + brightWhite: 106.2 diff --git a/themes/wavefire.yaml b/themes/wavefire.yaml index 16350b75..7787701b 100644 --- a/themes/wavefire.yaml +++ b/themes/wavefire.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Krecharles.wavefire" version: "1.0.1" installs: 372 + rating: 0 + ratings: 0 author: "Charles Kremer" repo: "https://github.com/Krecharles/wavefire" url: "https://marketplace.visualstudio.com/items?itemName=Krecharles.wavefire" diff --git a/themes/wawdog-dark.yaml b/themes/wawdog-dark.yaml new file mode 100644 index 00000000..cc55c16f --- /dev/null +++ b/themes/wawdog-dark.yaml @@ -0,0 +1,50 @@ +name: "wawdog-dark" +source: + marketplace_id: "wawdogdev.wawdog-dark-theme" + version: "0.0.4" + installs: 121 + author: "wawdogdev" + repo: "https://github.com/wawdog/vscode-wawdog-dark" + url: "https://marketplace.visualstudio.com/items?itemName=wawdogdev.wawdog-dark-theme" +colors: + bg: "#191D21" + fg: "#D3D3D3" + black: "#242A2F" + red: "#BA0E2E" + green: "#E85362" + yellow: "#5392DB" + blue: "#5392DB" + magenta: "#E85362" + cyan: "#9B78DB" + white: "#D3D3D3" + brightBlack: "#45505B" + brightRed: "#F03E5F" + brightGreen: "#F4ADB4" + brightYellow: "#A7C7ED" + brightBlue: "#A7C7ED" + brightMagenta: "#F4ADB4" + brightCyan: "#D7C9F0" + brightWhite: "#D3D3D3" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.2 + black: 0 + red: 19.9 + green: 37.5 + yellow: 40.7 + blue: 40.7 + magenta: 37.5 + cyan: 38.3 + white: 78.2 + brightBlack: 12.1 + brightRed: 36.1 + brightGreen: 66.8 + brightYellow: 69.3 + brightBlue: 69.3 + brightMagenta: 66.8 + brightCyan: 75.9 + brightWhite: 78.2 diff --git a/themes/wdark-theme.yaml b/themes/wdark-theme.yaml index 4b1f7d36..cbb7a6e2 100644 --- a/themes/wdark-theme.yaml +++ b/themes/wdark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wykys.wdark" version: "0.0.3" installs: 439 + rating: 5 + ratings: 1 author: "wykys" repo: "https://gitlab.com/wykys/vscode-theme-wdark" url: "https://marketplace.visualstudio.com/items?itemName=wykys.wdark" diff --git a/themes/webc-dark.yaml b/themes/webc-dark.yaml index 438c4397..0220b482 100644 --- a/themes/webc-dark.yaml +++ b/themes/webc-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dwkns.webc" version: "0.0.11" installs: 1162 + rating: 0 + ratings: 0 author: "dwkns" repo: "https://github.com/dwkns/vscode-webc" url: "https://marketplace.visualstudio.com/items?itemName=dwkns.webc" diff --git a/themes/webstorm-darcula-dark-theme.yaml b/themes/webstorm-darcula-dark-theme.yaml index 76749cfc..bf9c3a3c 100644 --- a/themes/webstorm-darcula-dark-theme.yaml +++ b/themes/webstorm-darcula-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AleksandrZorin.webstorm-darcula-dark-theme" version: "1.0.1" installs: 1932 + rating: 0 + ratings: 0 author: "Alexander Zorin" repo: "https://github.com/zzzoryn/webstorm-darkula-dark-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AleksandrZorin.webstorm-darcula-dark-theme" diff --git a/themes/webstorm-intellij-darcula-theme.yaml b/themes/webstorm-intellij-darcula-theme.yaml index 9773abe8..7f9114d8 100644 --- a/themes/webstorm-intellij-darcula-theme.yaml +++ b/themes/webstorm-intellij-darcula-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xr0master.webstorm-intellij-darcula-theme" version: "1.1.1" installs: 131610 + rating: 4.95 + ratings: 19 author: "Sergey Khomushin" repo: "https://github.com/xr0master/vscode-intellij-darcula-theme" url: "https://marketplace.visualstudio.com/items?itemName=xr0master.webstorm-intellij-darcula-theme" diff --git a/themes/webstorm-monokai.yaml b/themes/webstorm-monokai.yaml index b96cf82d..a2830b87 100644 --- a/themes/webstorm-monokai.yaml +++ b/themes/webstorm-monokai.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ctwhome.webstorm-monokai" version: "0.1.1" installs: 4092 + rating: 5 + ratings: 1 author: "ctwhome" repo: "https://github.com/ctwhome/webstorm-monokai-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ctwhome.webstorm-monokai" diff --git a/themes/weiting-candycolor.yaml b/themes/weiting-candycolor.yaml index ed9442df..2dafc0f1 100644 --- a/themes/weiting-candycolor.yaml +++ b/themes/weiting-candycolor.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Weiting.weiting-s-color" version: "0.0.1" installs: 36 + rating: 0 + ratings: 0 author: "Weiting Huang" repo: "https://github.com/weiting53/weiting-s-color" url: "https://marketplace.visualstudio.com/items?itemName=Weiting.weiting-s-color" diff --git a/themes/weitingcoder.yaml b/themes/weitingcoder.yaml new file mode 100644 index 00000000..bea61f87 --- /dev/null +++ b/themes/weitingcoder.yaml @@ -0,0 +1,50 @@ +name: "weitingcoder" +source: + marketplace_id: "Weiting.peachforest" + version: "0.1.0" + installs: 196 + author: "Weiting Huang" + repo: "https://github.com/weiting53/peachforest" + url: "https://marketplace.visualstudio.com/items?itemName=Weiting.peachforest" +colors: + bg: "#000000" + fg: "#CD0000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 25.4 + black: 0 + red: 27.7 + green: 52.7 + yellow: 43.8 + blue: 16 + magenta: 27.1 + cyan: 41.1 + white: 16.1 + brightBlack: 23 + brightRed: 27.7 + brightGreen: 61.4 + brightYellow: 61.3 + brightBlue: 16 + brightMagenta: 27.1 + brightCyan: 41.1 + brightWhite: 53.5 diff --git a/themes/west-bengal-cultural-hub.yaml b/themes/west-bengal-cultural-hub.yaml index cbe4f0de..a9f34271 100644 --- a/themes/west-bengal-cultural-hub.yaml +++ b/themes/west-bengal-cultural-hub.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ProudIndian.colors-of-india-themes" version: "1.0.1" installs: 37 + rating: 5 + ratings: 1 author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" diff --git a/themes/westmont-dark.yaml b/themes/westmont-dark.yaml new file mode 100644 index 00000000..d8a069ba --- /dev/null +++ b/themes/westmont-dark.yaml @@ -0,0 +1,52 @@ +name: "Westmont Dark" +source: + marketplace_id: "LandonMoir.wst-theme" + version: "0.2.0" + installs: 105 + rating: 0 + ratings: 0 + author: "Landon Moir" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LandonMoir.wst-theme" +colors: + bg: "#4B1019" + fg: "#D4D4D4" + black: "#B4B4B4" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 16 + pair: null + contrast: + fg: 76.8 + black: 58.1 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.1 + cyan: 44.9 + white: 87.4 + brightBlack: 19.4 + brightRed: 35.9 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.7 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/what-the-hell.yaml b/themes/what-the-hell.yaml index a9a56583..828e50a3 100644 --- a/themes/what-the-hell.yaml +++ b/themes/what-the-hell.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Barkerbg001.whatthehell-vscode" version: "1.0.7" installs: 282 + rating: 0 + ratings: 0 author: "Barkerbg001" repo: "https://github.com/barkerbg001/whatthehell-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Barkerbg001.whatthehell-vscode" diff --git a/themes/wheel-color-theme.yaml b/themes/wheel-color-theme.yaml index a08f701d..5bdb887a 100644 --- a/themes/wheel-color-theme.yaml +++ b/themes/wheel-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "escape-technology-llc.the-color-wheel" version: "0.7.2" installs: 2425 + rating: 5 + ratings: 1 author: "eScape Technology LLC" repo: "https://escape-technology-llc.visualstudio.com/Color%20Wheel/_git/Color%20Wheel" url: "https://marketplace.visualstudio.com/items?itemName=escape-technology-llc.the-color-wheel" diff --git a/themes/wheel-light-color-theme.yaml b/themes/wheel-light-color-theme.yaml index 45bd7c12..e4f0c604 100644 --- a/themes/wheel-light-color-theme.yaml +++ b/themes/wheel-light-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "escape-technology-llc.the-color-wheel" version: "0.7.2" installs: 2425 + rating: 5 + ratings: 1 author: "eScape Technology LLC" repo: "https://escape-technology-llc.visualstudio.com/Color%20Wheel/_git/Color%20Wheel" url: "https://marketplace.visualstudio.com/items?itemName=escape-technology-llc.the-color-wheel" diff --git a/themes/whiskey-coder-dark.yaml b/themes/whiskey-coder-dark.yaml index 8d3a4941..4c99f41e 100644 --- a/themes/whiskey-coder-dark.yaml +++ b/themes/whiskey-coder-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SubhamBera.whiskey-coder-dark" version: "2.1.0" installs: 37 + rating: 0 + ratings: 0 author: "Subham Bera" repo: "https://github.com/subhambera/Whiskey-Coder-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SubhamBera.whiskey-coder-dark" diff --git a/themes/whiskey-coder-light.yaml b/themes/whiskey-coder-light.yaml index 591b5686..d35aa442 100644 --- a/themes/whiskey-coder-light.yaml +++ b/themes/whiskey-coder-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SubhamBera.whiskey-coder-dark" version: "2.1.0" installs: 37 + rating: 0 + ratings: 0 author: "Subham Bera" repo: "https://github.com/subhambera/Whiskey-Coder-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SubhamBera.whiskey-coder-dark" diff --git a/themes/white-shade-color.yaml b/themes/white-shade-color.yaml index 4f2935a7..8fd8f061 100644 --- a/themes/white-shade-color.yaml +++ b/themes/white-shade-color.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "silas0827.white-shade" version: "0.1.0" installs: 1439 + rating: 0 + ratings: 0 author: "Silas Chen" repo: null url: "https://marketplace.visualstudio.com/items?itemName=silas0827.white-shade" diff --git a/themes/white-winter.yaml b/themes/white-winter.yaml index 5eb68213..a5bcb5bf 100644 --- a/themes/white-winter.yaml +++ b/themes/white-winter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jker.white-winter" version: "1.0.1" installs: 12433 + rating: 5 + ratings: 2 author: "jker" repo: "https://github.com/guidolee/jker-white-winter" url: "https://marketplace.visualstudio.com/items?itemName=jker.white-winter" diff --git a/themes/whitespace.yaml b/themes/whitespace.yaml index 0d0ae418..7f6ab237 100644 --- a/themes/whitespace.yaml +++ b/themes/whitespace.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.inspiration" version: "0.0.19" installs: 1076 + rating: 5 + ratings: 1 author: "YesCode" repo: "https://github.com/yesomac/inspiration_themevsc" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" diff --git a/themes/wick.yaml b/themes/wick.yaml index c46c59f1..cb4c3bc2 100644 --- a/themes/wick.yaml +++ b/themes/wick.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wick.wick" version: "1.0.2" installs: 137 + rating: 0 + ratings: 0 author: "wick" repo: "https://github.com/olivergrass/wick-vscode" url: "https://marketplace.visualstudio.com/items?itemName=wick.wick" diff --git a/themes/wicked.yaml b/themes/wicked.yaml index e9a65283..3cdd2016 100644 --- a/themes/wicked.yaml +++ b/themes/wicked.yaml @@ -1,50 +1,52 @@ name: "Wicked" source: - marketplace_id: "heartfeltdreamofbeing.wicked" - version: "0.1.1" - installs: 37 - author: "heartfeltdreamofbeing" - repo: "git:https://github.com/heartfeltdreamofbeing/wicked" - url: "https://marketplace.visualstudio.com/items?itemName=heartfeltdreamofbeing.wicked" + marketplace_id: "RoxasKi.positively-wicked" + version: "1.0.5" + installs: 27 + rating: 0 + ratings: 0 + author: "RoxasKi" + repo: "https://github.com/Roxaski/positively-wicked" + url: "https://marketplace.visualstudio.com/items?itemName=RoxasKi.positively-wicked" colors: - bg: "#001713" - fg: "#FF008F" - black: "#FFFFFF" - red: "#C40000" - green: "#036D00" - yellow: "#D94800" - blue: "#0010FF" - magenta: "#B8005E" - cyan: "#006D68" - white: "#000000" - brightBlack: "#EBF7FF" - brightRed: "#FF0000" - brightGreen: "#0EB400" - brightYellow: "#FF6C00" - brightBlue: "#3248FF" - brightMagenta: "#FF0083" - brightCyan: "#00AD95" - brightWhite: "#242424" + bg: "#1A1A1A" + fg: "#E8E6E3" + black: "#1A1A1A" + red: "#7A4A2E" + green: "#52A249" + yellow: "#359816" + blue: "#4A7C59" + magenta: "#5D7C5D" + cyan: "#3D8B6B" + white: "#C9C6C6" + brightBlack: "#4E6E4A" + brightRed: "#8B5A3C" + brightGreen: "#6BC95D" + brightYellow: "#3FBB19" + brightBlue: "#5C9670" + brightMagenta: "#739973" + brightCyan: "#4DA882" + brightWhite: "#F1F0EE" meta: mode: "dark" - accent: "purple" - hue: 181 + accent: "green" + hue: null pair: null contrast: - fg: 39 - black: 107.1 - red: 22.6 - green: 19.2 - yellow: 32.3 - blue: 15.6 - magenta: 21.1 - cyan: 20.7 - white: 0 - brightBlack: 100.6 - brightRed: 36.8 - brightGreen: 48.3 - brightYellow: 47.5 - brightBlue: 22.2 - brightMagenta: 38.6 - brightCyan: 47.3 - brightWhite: 0 + fg: 90.5 + black: 0 + red: 15.3 + green: 41.8 + yellow: 36.1 + blue: 26.7 + magenta: 28 + cyan: 32.3 + white: 71.2 + brightBlack: 21.7 + brightRed: 21.6 + brightGreen: 60.8 + brightYellow: 51.7 + brightBlue: 38.2 + brightMagenta: 41 + brightCyan: 45.4 + brightWhite: 96.8 diff --git a/themes/wiity-green-eye-friendly.yaml b/themes/wiity-green-eye-friendly.yaml index 4380ba66..7f839bbc 100644 --- a/themes/wiity-green-eye-friendly.yaml +++ b/themes/wiity-green-eye-friendly.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "puszkarek.wiity-vscode-theme" version: "0.2.0" installs: 136 + rating: 0 + ratings: 0 author: "Puszkarek" repo: "https://github.com/Puszkarek/wiity-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.wiity-vscode-theme" diff --git a/themes/wiity-green.yaml b/themes/wiity-green.yaml index baa227b2..dfc19e01 100644 --- a/themes/wiity-green.yaml +++ b/themes/wiity-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "puszkarek.wiity-vscode-theme" version: "0.2.0" installs: 136 + rating: 0 + ratings: 0 author: "Puszkarek" repo: "https://github.com/Puszkarek/wiity-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.wiity-vscode-theme" diff --git a/themes/wild-flower.yaml b/themes/wild-flower.yaml index a5ed4801..6cc24b91 100644 --- a/themes/wild-flower.yaml +++ b/themes/wild-flower.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheHalfBloodPrince.wild-flower" version: "1.0.0" installs: 1022 + rating: 0 + ratings: 0 author: "The Half Blood Prince" repo: "https://github.com/the-halfbloodprince/Wild-Flower" url: "https://marketplace.visualstudio.com/items?itemName=TheHalfBloodPrince.wild-flower" diff --git a/themes/wildcat.yaml b/themes/wildcat.yaml index f7753617..0483790f 100644 --- a/themes/wildcat.yaml +++ b/themes/wildcat.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ergenekonyigit.wildcat" version: "0.1.1" installs: 100 + rating: 5 + ratings: 1 author: "Ergenekon Yigit" repo: "https://github.com/ergenekonyigit/wildcat-theme" url: "https://marketplace.visualstudio.com/items?itemName=ergenekonyigit.wildcat" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "red" hue: 163 + pair: null contrast: fg: 57.6 black: 0 diff --git a/themes/wildtype.yaml b/themes/wildtype.yaml index 339ef84a..14f34fc0 100644 --- a/themes/wildtype.yaml +++ b/themes/wildtype.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wildtype.wildtype" version: "0.0.6" installs: 4150 + rating: 5 + ratings: 1 author: "wildtype" repo: "https://github.com/wtype/wildtype-theme" url: "https://marketplace.visualstudio.com/items?itemName=wildtype.wildtype" diff --git a/themes/wildwest.yaml b/themes/wildwest.yaml index 138a4686..5a25ceb9 100644 --- a/themes/wildwest.yaml +++ b/themes/wildwest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MaheshGaddhe00.wildWest" version: "0.5.0" installs: 1372 + rating: 0 + ratings: 0 author: "MaheshGaddhe00" repo: "https://github.com/Maheshoo7/WildWest" url: "https://marketplace.visualstudio.com/items?itemName=MaheshGaddhe00.wildWest" diff --git a/themes/will-o-wisp-theme.yaml b/themes/will-o-wisp-theme.yaml index 52ddcbce..ecde4209 100644 --- a/themes/will-o-wisp-theme.yaml +++ b/themes/will-o-wisp-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "simon-jaeger.will-o-wisp-theme" version: "0.3.0" installs: 796 + rating: 0 + ratings: 0 author: "Simon Jäger" repo: "https://github.com/simon-jaeger/vscode-will-o-wisp-theme" url: "https://marketplace.visualstudio.com/items?itemName=simon-jaeger.will-o-wisp-theme" diff --git a/themes/willasm-emerald-sky.yaml b/themes/willasm-emerald-sky.yaml index 9806507d..52bc8993 100644 --- a/themes/willasm-emerald-sky.yaml +++ b/themes/willasm-emerald-sky.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "willasm.emerald-sky" version: "1.0.6" installs: 710 + rating: 5 + ratings: 1 author: "willasm" repo: "https://github.com/willasm/emerald-sky" url: "https://marketplace.visualstudio.com/items?itemName=willasm.emerald-sky" diff --git a/themes/willi-style-dracula-flavour.yaml b/themes/willi-style-dracula-flavour.yaml index e3cf6171..8d1f38b2 100644 --- a/themes/willi-style-dracula-flavour.yaml +++ b/themes/willi-style-dracula-flavour.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wq.willi-style" version: "0.0.4" installs: 436 + rating: 5 + ratings: 1 author: "wQ" repo: "https://github.com/iamstrawberry/willi-style" url: "https://marketplace.visualstudio.com/items?itemName=wq.willi-style" diff --git a/themes/willow.yaml b/themes/willow.yaml index a5d95808..ef3abb6d 100644 --- a/themes/willow.yaml +++ b/themes/willow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RaulWierzbiski.willow-theme" version: "0.0.1" installs: 902 + rating: 5 + ratings: 1 author: "Raul Wierzbiński" repo: "https://github.com/Wierzba13/willow-theme" url: "https://marketplace.visualstudio.com/items?itemName=RaulWierzbiski.willow-theme" diff --git a/themes/win-xp-luna.yaml b/themes/win-xp-luna.yaml index b33d4499..3bc9101e 100644 --- a/themes/win-xp-luna.yaml +++ b/themes/win-xp-luna.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sinedied.vscode-windows-xp-theme" version: "0.1.5" installs: 28284 + rating: 4.9 + ratings: 10 author: "Yohan Lasorsa" repo: "https://github.com/sinedied/vscode-win-xp-theme" url: "https://marketplace.visualstudio.com/items?itemName=sinedied.vscode-windows-xp-theme" diff --git a/themes/win10.yaml b/themes/win10.yaml index ddd0e2af..85551dab 100644 --- a/themes/win10.yaml +++ b/themes/win10.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Meitrox9.dark-navy-theme" version: "0.0.2" installs: 535 + rating: 5 + ratings: 1 author: "Meitrox" repo: "https://github.com/Meitrox/dark-navy-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Meitrox9.dark-navy-theme" diff --git a/themes/winclassic.yaml b/themes/winclassic.yaml index 2a7f5726..30eefa12 100644 --- a/themes/winclassic.yaml +++ b/themes/winclassic.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "disk0.win-classic-theme" version: "0.0.23" installs: 5038 + rating: 5 + ratings: 2 author: "disk0" repo: "https://github.com/disco0/win-classic-theme" url: "https://marketplace.visualstudio.com/items?itemName=disk0.win-classic-theme" diff --git a/themes/wind-dark-slate.yaml b/themes/wind-dark-slate.yaml index aa860dd7..d9392566 100644 --- a/themes/wind-dark-slate.yaml +++ b/themes/wind-dark-slate.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "calvinludwig.wind-theme" version: "1.0.0" installs: 1682 + rating: 5 + ratings: 3 author: "Calvin Ludwig" repo: "https://github.com/calvinludwig/wind-theme" url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" diff --git a/themes/wind-dark-zinc.yaml b/themes/wind-dark-zinc.yaml index ea11e9df..d1d9b2de 100644 --- a/themes/wind-dark-zinc.yaml +++ b/themes/wind-dark-zinc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "calvinludwig.wind-theme" version: "1.0.0" installs: 1682 + rating: 5 + ratings: 3 author: "Calvin Ludwig" repo: "https://github.com/calvinludwig/wind-theme" url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" diff --git a/themes/wind-light-neutral.yaml b/themes/wind-light-neutral.yaml new file mode 100644 index 00000000..5830e958 --- /dev/null +++ b/themes/wind-light-neutral.yaml @@ -0,0 +1,52 @@ +name: "Wind Light Neutral" +source: + marketplace_id: "calvinludwig.wind-theme" + version: "1.0.0" + installs: 1682 + rating: 5 + ratings: 3 + author: "Calvin Ludwig" + repo: "https://github.com/calvinludwig/wind-theme" + url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" +colors: + bg: "#FFFFFF" + fg: "#212121" + black: "#333333" + red: "#D32F2F" + green: "#77CC00" + yellow: "#F29718" + blue: "#E0E0E0" + magenta: "#9966CC" + cyan: "#4DBF99" + white: "#C7C7C7" + brightBlack: "#A1A1A1" + brightRed: "#D6656A" + brightGreen: "#A3D900" + brightYellow: "#E7C547" + brightBlue: "#6871FF" + brightMagenta: "#A37ACC" + brightCyan: "#57D9AD" + brightWhite: "#7E7E7E" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 103.1 + black: 98.7 + red: 72.8 + green: 38.7 + yellow: 44.5 + blue: 15.8 + magenta: 67.9 + cyan: 44.6 + white: 30.1 + brightBlack: 50.5 + brightRed: 62.5 + brightGreen: 29.5 + brightYellow: 29.7 + brightBlue: 66 + brightMagenta: 61.1 + brightCyan: 31.9 + brightWhite: 67.8 diff --git a/themes/wind.yaml b/themes/wind.yaml index fd5e232f..7f93d17f 100644 --- a/themes/wind.yaml +++ b/themes/wind.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "letrieu.tornado-themes" version: "0.0.7" installs: 356 + rating: 0 + ratings: 0 author: "Le Trieu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=letrieu.tornado-themes" diff --git a/themes/windows-95-theme.yaml b/themes/windows-95-theme.yaml index 806b0fc2..2830a2ca 100644 --- a/themes/windows-95-theme.yaml +++ b/themes/windows-95-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "samwnr.Windows-95-Theme" version: "0.0.1" installs: 2420 + rating: 0 + ratings: 0 author: "samwnr" repo: null url: "https://marketplace.visualstudio.com/items?itemName=samwnr.Windows-95-Theme" diff --git a/themes/windows-nt.yaml b/themes/windows-nt.yaml index 570ab8cb..551414c4 100644 --- a/themes/windows-nt.yaml +++ b/themes/windows-nt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wassimdev.windows-nt-vscode-theme" version: "0.0.12" installs: 26397 + rating: 5 + ratings: 6 author: "Wassim Chegham" repo: "https://github.com/manekinekko/windows-nt-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=wassimdev.windows-nt-vscode-theme" diff --git a/themes/windows-xp-dark-luna.yaml b/themes/windows-xp-dark-luna.yaml index e7bbff22..7d32597c 100644 --- a/themes/windows-xp-dark-luna.yaml +++ b/themes/windows-xp-dark-luna.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "mssjim.windows-xp-dark" version: "1.0.1" installs: 3366 + rating: 0 + ratings: 0 author: "Mssjim" repo: "https://github.com/Mssjim/windows-xp-dark" url: "https://marketplace.visualstudio.com/items?itemName=mssjim.windows-xp-dark" diff --git a/themes/windu.yaml b/themes/windu.yaml index a3b6cf2f..464c4996 100644 --- a/themes/windu.yaml +++ b/themes/windu.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JohannesFreutel.Windu" version: "0.0.1" installs: 61 + rating: 0 + ratings: 0 author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.Windu" diff --git a/themes/windwaker.yaml b/themes/windwaker.yaml index f1e08534..09b2497b 100644 --- a/themes/windwaker.yaml +++ b/themes/windwaker.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "endg4me.windwaker" version: "1.0.3" installs: 183 + rating: 5 + ratings: 2 author: "Endg4me_" repo: "https://github.com/Endg4meZer0/Windwaker-VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=endg4me.windwaker" diff --git a/themes/wine-garden.yaml b/themes/wine-garden.yaml index 4293faca..f05505b2 100644 --- a/themes/wine-garden.yaml +++ b/themes/wine-garden.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Synth1983GreenWave.ampelopsis" version: "1.0.2" installs: 259 + rating: 5 + ratings: 1 author: "🧪 ovct 🧪" repo: "https://github.com/Octaviocossy/ampelopsis-theme" url: "https://marketplace.visualstudio.com/items?itemName=Synth1983GreenWave.ampelopsis" diff --git a/themes/winter-pearl.yaml b/themes/winter-pearl.yaml index 5b3ceb63..885eb792 100644 --- a/themes/winter-pearl.yaml +++ b/themes/winter-pearl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "suryashanm.winter-pearl-theme" version: "1.0.0" installs: 2357 + rating: 5 + ratings: 1 author: "suryashanm" repo: "https://github.com/suryashanm/winter-pearl" url: "https://marketplace.visualstudio.com/items?itemName=suryashanm.winter-pearl-theme" diff --git a/themes/winter.yaml b/themes/winter.yaml index 42e31a7a..01c4bf7a 100644 --- a/themes/winter.yaml +++ b/themes/winter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "wintercms.winter-vscode-theme" version: "1.0.1" installs: 337 + rating: 0 + ratings: 0 author: "Winter CMS" repo: "https://github.com/wintercms/winter-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=wintercms.winter-vscode-theme" diff --git a/themes/winteriscoding-gift.yaml b/themes/winteriscoding-gift.yaml index ccfcda5b..6f4d7993 100644 --- a/themes/winteriscoding-gift.yaml +++ b/themes/winteriscoding-gift.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "winterx64.winteriscoding" version: "2.1.0" installs: 593 + rating: 0 + ratings: 0 author: "winter_x64" repo: "https://github.com/winter-x64/WinterIsCoding" url: "https://marketplace.visualstudio.com/items?itemName=winterx64.winteriscoding" diff --git a/themes/winteriscoding.yaml b/themes/winteriscoding.yaml index 02267658..c64f9972 100644 --- a/themes/winteriscoding.yaml +++ b/themes/winteriscoding.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "winterx64.winteriscoding" version: "2.1.0" installs: 593 + rating: 0 + ratings: 0 author: "winter_x64" repo: "https://github.com/winter-x64/WinterIsCoding" url: "https://marketplace.visualstudio.com/items?itemName=winterx64.winteriscoding" diff --git a/themes/winternacht-dark.yaml b/themes/winternacht-dark.yaml new file mode 100644 index 00000000..2556e104 --- /dev/null +++ b/themes/winternacht-dark.yaml @@ -0,0 +1,52 @@ +name: "Winternacht Dark" +source: + marketplace_id: "suin.winternacht-by-suin" + version: "0.1.0" + installs: 14 + rating: 0 + ratings: 0 + author: "suin" + repo: "https://github.com/suin/winternacht" + url: "https://marketplace.visualstudio.com/items?itemName=suin.winternacht-by-suin" +colors: + bg: "#1A1917" + fg: "#D6D3CE" + black: "#242320" + red: "#B87070" + green: "#7A9E72" + yellow: "#C29E5E" + blue: "#6B8BBF" + magenta: "#8A7EB0" + cyan: "#5F9EA8" + white: "#BAB7B2" + brightBlack: "#7A7672" + brightRed: "#D4A0A0" + brightGreen: "#A0C496" + brightYellow: "#D4B87A" + brightBlue: "#8DAFD4" + brightMagenta: "#B0A4D0" + brightCyan: "#8CC3CB" + brightWhite: "#F1F0EE" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: "Winternacht Light" + contrast: + fg: 78.8 + black: 0 + red: 35.5 + green: 43.7 + yellow: 51.4 + blue: 38.4 + magenta: 36 + cyan: 43.6 + white: 62.4 + brightBlack: 29.1 + brightRed: 56.6 + brightGreen: 64 + brightYellow: 64.6 + brightBlue: 56 + brightMagenta: 55.2 + brightCyan: 63.8 + brightWhite: 96.9 diff --git a/themes/winternacht-light.yaml b/themes/winternacht-light.yaml new file mode 100644 index 00000000..9492d871 --- /dev/null +++ b/themes/winternacht-light.yaml @@ -0,0 +1,52 @@ +name: "Winternacht Light" +source: + marketplace_id: "suin.winternacht-by-suin" + version: "0.1.0" + installs: 14 + rating: 0 + ratings: 0 + author: "suin" + repo: "https://github.com/suin/winternacht" + url: "https://marketplace.visualstudio.com/items?itemName=suin.winternacht-by-suin" +colors: + bg: "#FCFCFB" + fg: "#3A3835" + black: "#242320" + red: "#8E5050" + green: "#587850" + yellow: "#8E7040" + blue: "#4A5870" + magenta: "#635788" + cyan: "#3D7A83" + white: "#F1F0EE" + brightBlack: "#7A7672" + brightRed: "#B87070" + brightGreen: "#7A9E72" + brightYellow: "#C29E5E" + brightBlue: "#6B8BBF" + brightMagenta: "#8A7EB0" + brightCyan: "#5F9EA8" + brightWhite: "#FCFCFB" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: "Winternacht Dark" + contrast: + fg: 95 + black: 100.8 + red: 78.6 + green: 72.6 + yellow: 70.2 + blue: 83.1 + magenta: 80.2 + cyan: 71.8 + white: 0 + brightBlack: 69.5 + brightRed: 63.1 + brightGreen: 55 + brightYellow: 47.4 + brightBlue: 60.2 + brightMagenta: 62.6 + brightCyan: 55.1 + brightWhite: 0 diff --git a/themes/wired-lighter.yaml b/themes/wired-lighter.yaml index 22f93d3e..3cab145d 100644 --- a/themes/wired-lighter.yaml +++ b/themes/wired-lighter.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "minako.wired" version: "2.0.5" installs: 4868 + rating: 0 + ratings: 0 author: "minako" repo: "https://github.com/kayliese/wired" url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" diff --git a/themes/wired.yaml b/themes/wired.yaml index 0d03a190..89f1aacb 100644 --- a/themes/wired.yaml +++ b/themes/wired.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "minako.wired" version: "2.0.5" installs: 4868 + rating: 0 + ratings: 0 author: "minako" repo: "https://github.com/kayliese/wired" url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" diff --git a/themes/wise-owl-material-high-contrast.yaml b/themes/wise-owl-material-high-contrast.yaml index 2ca18b40..5a711301 100644 --- a/themes/wise-owl-material-high-contrast.yaml +++ b/themes/wise-owl-material-high-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "waseemakhter028.wise-owl-material-theme" version: "1.0.0" installs: 31 + rating: 5 + ratings: 1 author: "WaseemAkhter" repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" diff --git a/themes/wise-owl-material-light.yaml b/themes/wise-owl-material-light.yaml index 869b022e..e275600e 100644 --- a/themes/wise-owl-material-light.yaml +++ b/themes/wise-owl-material-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "waseemakhter028.wise-owl-material-theme" version: "1.0.0" installs: 31 + rating: 5 + ratings: 1 author: "WaseemAkhter" repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" diff --git a/themes/wise-owl-material.yaml b/themes/wise-owl-material.yaml index 46b605d0..aed029dc 100644 --- a/themes/wise-owl-material.yaml +++ b/themes/wise-owl-material.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "waseemakhter028.wise-owl-material-theme" version: "1.0.0" installs: 31 + rating: 5 + ratings: 1 author: "WaseemAkhter" repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" diff --git a/themes/wisteria.yaml b/themes/wisteria.yaml index 80992c90..c45fc097 100644 --- a/themes/wisteria.yaml +++ b/themes/wisteria.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "raleigh-hansen.wisteria-vscode" version: "1.0.1" installs: 936 + rating: 5 + ratings: 4 author: "Raleigh Hansen" repo: "https://github.com/raleighsedona/wisteria-vscode" url: "https://marketplace.visualstudio.com/items?itemName=raleigh-hansen.wisteria-vscode" diff --git a/themes/witch-elaina.yaml b/themes/witch-elaina.yaml index 55647fbe..e6193741 100644 --- a/themes/witch-elaina.yaml +++ b/themes/witch-elaina.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WitchElaina.witchelaina" version: "0.10.0" installs: 591 + rating: 0 + ratings: 0 author: "WitchElaina" repo: "https://github.com/WitchElaina/WitchElaina-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=WitchElaina.witchelaina" diff --git a/themes/witcher.yaml b/themes/witcher.yaml index d903aac0..4b6df0e9 100644 --- a/themes/witcher.yaml +++ b/themes/witcher.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Devpenzil.witcher" version: "0.1.1" installs: 667 + rating: 5 + ratings: 2 author: "Devpenzil" repo: "https://github.com/devpenzil/Witcher-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Devpenzil.witcher" diff --git a/themes/witchy-dark.yaml b/themes/witchy-dark.yaml index edcb3064..311f7f0d 100644 --- a/themes/witchy-dark.yaml +++ b/themes/witchy-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "nhcarrigan.naomis-themes" version: "2.3.0" installs: 68 + rating: 0 + ratings: 0 author: "NHCarrigan" repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" diff --git a/themes/wl-acid-wash.yaml b/themes/wl-acid-wash.yaml index 5e9c4461..dce20623 100644 --- a/themes/wl-acid-wash.yaml +++ b/themes/wl-acid-wash.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.acid-wash" version: "1.0.1" installs: 27 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.acid-wash" diff --git a/themes/wl-amber-monitor.yaml b/themes/wl-amber-monitor.yaml index 5c8ac1b8..61b60eae 100644 --- a/themes/wl-amber-monitor.yaml +++ b/themes/wl-amber-monitor.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.amber-monitor" version: "1.0.1" installs: 126 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.amber-monitor" diff --git a/themes/wl-aurora-glow.yaml b/themes/wl-aurora-glow.yaml new file mode 100644 index 00000000..586b0f3b --- /dev/null +++ b/themes/wl-aurora-glow.yaml @@ -0,0 +1,52 @@ +name: "WL-Aurora Glow" +source: + marketplace_id: "WatkinsLabs.aurora-glow" + version: "1.0.1" + installs: 41 + rating: 0 + ratings: 0 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.aurora-glow" +colors: + bg: "#001C1E" + fg: "#D1FDF6" + black: "#000000" + red: "#F75050" + green: "#60F2A5" + yellow: "#F9C846" + blue: "#45E8B8" + magenta: "#28E0AA" + cyan: "#45E8B8" + white: "#D1FDF6" + brightBlack: "#666666" + brightRed: "#F75050" + brightGreen: "#60F2A5" + brightYellow: "#F9C846" + brightBlue: "#45E8B8" + brightMagenta: "#28E0AA" + brightCyan: "#45E8B8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 201 + pair: null + contrast: + fg: 99.4 + black: 0 + red: 40.4 + green: 82.1 + yellow: 75.9 + blue: 76.7 + magenta: 71.6 + cyan: 76.7 + white: 99.4 + brightBlack: 21.8 + brightRed: 40.4 + brightGreen: 82.1 + brightYellow: 75.9 + brightBlue: 76.7 + brightMagenta: 71.6 + brightCyan: 76.7 + brightWhite: 106.6 diff --git a/themes/wl-chrome-dreams.yaml b/themes/wl-chrome-dreams.yaml index a793ab94..c01e3975 100644 --- a/themes/wl-chrome-dreams.yaml +++ b/themes/wl-chrome-dreams.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.chrome-dreams" version: "1.0.1" installs: 47 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.chrome-dreams" diff --git a/themes/wl-chrome-noir.yaml b/themes/wl-chrome-noir.yaml new file mode 100644 index 00000000..a97cccf6 --- /dev/null +++ b/themes/wl-chrome-noir.yaml @@ -0,0 +1,52 @@ +name: "WL-Chrome Noir" +source: + marketplace_id: "WatkinsLabs.chrome-noir" + version: "1.0.1" + installs: 29 + rating: 0 + ratings: 0 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.chrome-noir" +colors: + bg: "#1A1A1A" + fg: "#F5F5F5" + black: "#000000" + red: "#FF0000" + green: "#00B300" + yellow: "#FFA500" + blue: "#3CBA54" + magenta: "#FFBB00" + cyan: "#3CBA54" + white: "#F5F5F5" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#00B300" + brightYellow: "#FFA500" + brightBlue: "#3CBA54" + brightMagenta: "#FFBB00" + brightCyan: "#3CBA54" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100 + black: 0 + red: 36.2 + green: 47.2 + yellow: 63.4 + blue: 51.7 + magenta: 71.4 + cyan: 51.7 + white: 100 + brightBlack: 21.7 + brightRed: 36.2 + brightGreen: 47.2 + brightYellow: 63.4 + brightBlue: 51.7 + brightMagenta: 71.4 + brightCyan: 51.7 + brightWhite: 106.5 diff --git a/themes/wl-cyber-rain.yaml b/themes/wl-cyber-rain.yaml new file mode 100644 index 00000000..3f55ef46 --- /dev/null +++ b/themes/wl-cyber-rain.yaml @@ -0,0 +1,52 @@ +name: "WL-Cyber Rain" +source: + marketplace_id: "WatkinsLabs.cyber-rain" + version: "1.0.1" + installs: 142 + rating: 0 + ratings: 0 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.cyber-rain" +colors: + bg: "#000022" + fg: "#00EEFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0055FF" + magenta: "#0077FF" + cyan: "#0055FF" + white: "#00EEFF" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0055FF" + brightMagenta: "#0077FF" + brightCyan: "#0055FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 83.3 + black: 0 + red: 37.3 + green: 86.3 + yellow: 102.5 + blue: 24.8 + magenta: 34 + cyan: 24.8 + white: 83.3 + brightBlack: 22.8 + brightRed: 37.3 + brightGreen: 86.3 + brightYellow: 102.5 + brightBlue: 24.8 + brightMagenta: 34 + brightCyan: 24.8 + brightWhite: 107.7 diff --git a/themes/wl-data-stream.yaml b/themes/wl-data-stream.yaml index 8daae4ad..f2928b86 100644 --- a/themes/wl-data-stream.yaml +++ b/themes/wl-data-stream.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.data-stream" version: "1.0.1" installs: 26 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.data-stream" diff --git a/themes/wl-dial-tone.yaml b/themes/wl-dial-tone.yaml new file mode 100644 index 00000000..10156584 --- /dev/null +++ b/themes/wl-dial-tone.yaml @@ -0,0 +1,52 @@ +name: "WL-Dial Tone" +source: + marketplace_id: "WatkinsLabs.dial-tone" + version: "1.0.1" + installs: 37 + rating: 0 + ratings: 0 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.dial-tone" +colors: + bg: "#254441" + fg: "#CFCFCF" + black: "#000000" + red: "#CC0000" + green: "#89C47C" + yellow: "#FF9900" + blue: "#95B3D7" + magenta: "#F9CB9C" + cyan: "#95B3D7" + white: "#CFCFCF" + brightBlack: "#666666" + brightRed: "#CC0000" + brightGreen: "#89C47C" + brightYellow: "#FF9900" + brightBlue: "#95B3D7" + brightMagenta: "#F9CB9C" + brightCyan: "#95B3D7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 188 + pair: null + contrast: + fg: 68 + black: 9.4 + red: 15.8 + green: 53.1 + yellow: 51.3 + blue: 50.3 + magenta: 70.6 + cyan: 50.3 + white: 68 + brightBlack: 13.6 + brightRed: 15.8 + brightGreen: 53.1 + brightYellow: 51.3 + brightBlue: 50.3 + brightMagenta: 70.6 + brightCyan: 50.3 + brightWhite: 98.5 diff --git a/themes/wl-electric-dreams.yaml b/themes/wl-electric-dreams.yaml index 3eea24d8..dd291150 100644 --- a/themes/wl-electric-dreams.yaml +++ b/themes/wl-electric-dreams.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.electric-dreams" version: "1.0.1" installs: 38 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.electric-dreams" diff --git a/themes/wl-fusion-core.yaml b/themes/wl-fusion-core.yaml index 0268da2d..d921e341 100644 --- a/themes/wl-fusion-core.yaml +++ b/themes/wl-fusion-core.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.fusion-core" version: "1.0.1" installs: 15 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.fusion-core" diff --git a/themes/wl-graffiti-wall.yaml b/themes/wl-graffiti-wall.yaml index 2ebf22c6..6afce3b5 100644 --- a/themes/wl-graffiti-wall.yaml +++ b/themes/wl-graffiti-wall.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.graffiti-wall" version: "1.0.1" installs: 53 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.graffiti-wall" diff --git a/themes/wl-hyper-drive.yaml b/themes/wl-hyper-drive.yaml index 596328e2..a7498eb8 100644 --- a/themes/wl-hyper-drive.yaml +++ b/themes/wl-hyper-drive.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.hyper-drive" version: "1.0.1" installs: 29 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.hyper-drive" diff --git a/themes/wl-ink-splash.yaml b/themes/wl-ink-splash.yaml index b4905467..83597280 100644 --- a/themes/wl-ink-splash.yaml +++ b/themes/wl-ink-splash.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.ink-splash" version: "1.0.1" installs: 13 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.ink-splash" diff --git a/themes/wl-jade-temple.yaml b/themes/wl-jade-temple.yaml index ce4c6bba..7af967dc 100644 --- a/themes/wl-jade-temple.yaml +++ b/themes/wl-jade-temple.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.jade-temple" version: "1.0.1" installs: 12 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.jade-temple" diff --git a/themes/wl-laser-grid.yaml b/themes/wl-laser-grid.yaml index b35c78c7..60fad0d5 100644 --- a/themes/wl-laser-grid.yaml +++ b/themes/wl-laser-grid.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.laser-grid" version: "1.0.1" installs: 70 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.laser-grid" diff --git a/themes/wl-lava-lamp.yaml b/themes/wl-lava-lamp.yaml index cb12ad4d..b5d256f0 100644 --- a/themes/wl-lava-lamp.yaml +++ b/themes/wl-lava-lamp.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.lava-lamp" version: "1.0.1" installs: 18 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.lava-lamp" diff --git a/themes/wl-mainframe-blue.yaml b/themes/wl-mainframe-blue.yaml index e3730992..c2182450 100644 --- a/themes/wl-mainframe-blue.yaml +++ b/themes/wl-mainframe-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.mainframe-blue" version: "1.0.1" installs: 35 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.mainframe-blue" diff --git a/themes/wl-misty-mountain.yaml b/themes/wl-misty-mountain.yaml index 238d78d8..ef934f30 100644 --- a/themes/wl-misty-mountain.yaml +++ b/themes/wl-misty-mountain.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.misty-mountain" version: "1.0.1" installs: 31 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.misty-mountain" diff --git a/themes/wl-moon-phase.yaml b/themes/wl-moon-phase.yaml index 27384cfe..330ed39f 100644 --- a/themes/wl-moon-phase.yaml +++ b/themes/wl-moon-phase.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.moon-phase" version: "1.0.1" installs: 26 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.moon-phase" diff --git a/themes/wl-neon-cascade.yaml b/themes/wl-neon-cascade.yaml index 06177a66..2b618b00 100644 --- a/themes/wl-neon-cascade.yaml +++ b/themes/wl-neon-cascade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.neon-cascade" version: "1.0.1" installs: 67 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.neon-cascade" diff --git a/themes/wl-neon-sign.yaml b/themes/wl-neon-sign.yaml index d581e21a..3b1590fd 100644 --- a/themes/wl-neon-sign.yaml +++ b/themes/wl-neon-sign.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.neon-sign" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.neon-sign" diff --git a/themes/wl-neon-tokyo.yaml b/themes/wl-neon-tokyo.yaml index 2afd3a1c..f03ad6da 100644 --- a/themes/wl-neon-tokyo.yaml +++ b/themes/wl-neon-tokyo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.neon-tokyo" version: "1.0.1" installs: 63 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.neon-tokyo" diff --git a/themes/wl-nova-burst.yaml b/themes/wl-nova-burst.yaml index e75bb880..9a645b85 100644 --- a/themes/wl-nova-burst.yaml +++ b/themes/wl-nova-burst.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.nova-burst" version: "1.0.1" installs: 14 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.nova-burst" diff --git a/themes/wl-pixel-punch.yaml b/themes/wl-pixel-punch.yaml index 9770769f..3973e268 100644 --- a/themes/wl-pixel-punch.yaml +++ b/themes/wl-pixel-punch.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.pixel-punch" version: "1.0.1" installs: 50 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.pixel-punch" diff --git a/themes/wl-plasma-storm.yaml b/themes/wl-plasma-storm.yaml index 30bef273..2360f508 100644 --- a/themes/wl-plasma-storm.yaml +++ b/themes/wl-plasma-storm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.plasma-storm" version: "1.0.1" installs: 24 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.plasma-storm" diff --git a/themes/wl-punch-tape.yaml b/themes/wl-punch-tape.yaml index edac4c6d..ecb1c9e1 100644 --- a/themes/wl-punch-tape.yaml +++ b/themes/wl-punch-tape.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.punch-tape" version: "1.0.1" installs: 106 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.punch-tape" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "orange" hue: 83 + pair: null contrast: fg: 88.1 black: 88.1 diff --git a/themes/wl-retro-arcade.yaml b/themes/wl-retro-arcade.yaml index af83cd49..76558b29 100644 --- a/themes/wl-retro-arcade.yaml +++ b/themes/wl-retro-arcade.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.retro-arcade" version: "1.0.1" installs: 88 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.retro-arcade" diff --git a/themes/wl-retro-future.yaml b/themes/wl-retro-future.yaml index 8751737a..6a1e3125 100644 --- a/themes/wl-retro-future.yaml +++ b/themes/wl-retro-future.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.retro-future" version: "1.0.1" installs: 64 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.retro-future" diff --git a/themes/wl-silk-road.yaml b/themes/wl-silk-road.yaml index e8fdb634..68b743e1 100644 --- a/themes/wl-silk-road.yaml +++ b/themes/wl-silk-road.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.silk-road" version: "1.0.1" installs: 32 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.silk-road" diff --git a/themes/wl-terminal-green.yaml b/themes/wl-terminal-green.yaml index 840c22c4..474de2c3 100644 --- a/themes/wl-terminal-green.yaml +++ b/themes/wl-terminal-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.terminal-green" version: "1.0.1" installs: 147 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.terminal-green" diff --git a/themes/wl-turbo-boost.yaml b/themes/wl-turbo-boost.yaml new file mode 100644 index 00000000..f112a33d --- /dev/null +++ b/themes/wl-turbo-boost.yaml @@ -0,0 +1,52 @@ +name: "WL-Turbo Boost" +source: + marketplace_id: "WatkinsLabs.turbo-boost" + version: "1.0.1" + installs: 28 + rating: 0 + ratings: 0 + author: "Watkins Labs" + repo: "https://github.com/watkinslabs/vscode-theme-generator" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.turbo-boost" +colors: + bg: "#FFFFFF" + fg: "#B00020" + black: "#000000" + red: "#B71C1C" + green: "#4CAF50" + yellow: "#FF5722" + blue: "#FF8A80" + magenta: "#FF5252" + cyan: "#FF8A80" + white: "#B00020" + brightBlack: "#666666" + brightRed: "#B71C1C" + brightGreen: "#4CAF50" + brightYellow: "#FF5722" + brightBlue: "#FF8A80" + brightMagenta: "#FF5252" + brightCyan: "#FF8A80" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.8 + black: 106 + red: 80.6 + green: 53.3 + yellow: 57.6 + blue: 44.6 + magenta: 57.9 + cyan: 44.6 + white: 82.8 + brightBlack: 78.8 + brightRed: 80.6 + brightGreen: 53.3 + brightYellow: 57.6 + brightBlue: 44.6 + brightMagenta: 57.9 + brightCyan: 44.6 + brightWhite: 0 diff --git a/themes/wl-vacuum-glow.yaml b/themes/wl-vacuum-glow.yaml index 3934defe..45b572dd 100644 --- a/themes/wl-vacuum-glow.yaml +++ b/themes/wl-vacuum-glow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.vacuum-glow" version: "1.0.1" installs: 36 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.vacuum-glow" diff --git a/themes/wl-velvet-night.yaml b/themes/wl-velvet-night.yaml index 77f6c40f..20b802ec 100644 --- a/themes/wl-velvet-night.yaml +++ b/themes/wl-velvet-night.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.velvet-night" version: "1.0.1" installs: 25 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.velvet-night" diff --git a/themes/wl-volt-surge.yaml b/themes/wl-volt-surge.yaml index 4bdb99da..880a4ba8 100644 --- a/themes/wl-volt-surge.yaml +++ b/themes/wl-volt-surge.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.volt-surge" version: "1.0.1" installs: 16 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.volt-surge" diff --git a/themes/wl-zen-twilight.yaml b/themes/wl-zen-twilight.yaml index ed42d0e3..91b333b6 100644 --- a/themes/wl-zen-twilight.yaml +++ b/themes/wl-zen-twilight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WatkinsLabs.zen-twilight" version: "1.0.1" installs: 20 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.zen-twilight" diff --git a/themes/wolftheme.yaml b/themes/wolftheme.yaml new file mode 100644 index 00000000..274d46ad --- /dev/null +++ b/themes/wolftheme.yaml @@ -0,0 +1,52 @@ +name: "WolfTheme" +source: + marketplace_id: "AlexW0lf.w0lftheme" + version: "0.5.0" + installs: 73 + rating: 0 + ratings: 0 + author: "Alex W0lf" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AlexW0lf.w0lftheme" +colors: + bg: "#282C35" + fg: "#D4D4D4" + black: "#21252B" + red: "#E15A60" + green: "#99C794" + yellow: "#F7E1AA" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#9DA5B4" + brightRed: "#E15A60" + brightGreen: "#99C794" + brightYellow: "#F7E1AA" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 266 + pair: null + contrast: + fg: 76.3 + black: 0 + red: 34.6 + green: 61.6 + yellow: 85.3 + blue: 40.9 + magenta: 48.8 + cyan: 49.8 + white: 76.3 + brightBlack: 49 + brightRed: 34.6 + brightGreen: 61.6 + brightYellow: 85.3 + brightBlue: 40.9 + brightMagenta: 48.8 + brightCyan: 49.8 + brightWhite: 76.3 diff --git a/themes/wolves-league-dark.yaml b/themes/wolves-league-dark.yaml index 2aad037a..fffe25f8 100644 --- a/themes/wolves-league-dark.yaml +++ b/themes/wolves-league-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "WolvesLeague.wolves-league" version: "3.0.0" installs: 1845 + rating: 0 + ratings: 0 author: "Wolves League" repo: "https://github.com/WolvesLeague/wolves-league-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=WolvesLeague.wolves-league" diff --git a/themes/woods.yaml b/themes/woods.yaml new file mode 100644 index 00000000..e40e5f69 --- /dev/null +++ b/themes/woods.yaml @@ -0,0 +1,52 @@ +name: "Woods" +source: + marketplace_id: "WSECO.WoodsTheme" + version: "0.0.1" + installs: 134 + rating: 0 + ratings: 0 + author: "WSECO" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=WSECO.WoodsTheme" +colors: + bg: "#F9FFF0" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 104.7 + black: 104.7 + red: 72.6 + green: 47.9 + yellow: 56.5 + blue: 84.7 + magenta: 73.2 + cyan: 59.2 + white: 84.6 + brightBlack: 77.4 + brightRed: 72.6 + brightGreen: 39.5 + brightYellow: 39.6 + brightBlue: 84.7 + brightMagenta: 73.2 + brightCyan: 59.2 + brightWhite: 47.1 diff --git a/themes/woodsmoke.yaml b/themes/woodsmoke.yaml index d3003e43..23d16594 100644 --- a/themes/woodsmoke.yaml +++ b/themes/woodsmoke.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "QuentinLowette.woodsmoke" version: "0.2.1" installs: 483 + rating: 5 + ratings: 1 author: "Quentin Lowette" repo: "https://github.com/quentinlowette/woodsmoke" url: "https://marketplace.visualstudio.com/items?itemName=QuentinLowette.woodsmoke" diff --git a/themes/wookie.yaml b/themes/wookie.yaml index 19b83534..496c8773 100644 --- a/themes/wookie.yaml +++ b/themes/wookie.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "krolick.theme-wookie" version: "1.1.3" installs: 418 + rating: 0 + ratings: 0 author: "Alex Krolick" repo: "https://github.com/alexkrolick/theme-wookie" url: "https://marketplace.visualstudio.com/items?itemName=krolick.theme-wookie" diff --git a/themes/word-color-theme.yaml b/themes/word-color-theme.yaml index e37e75cc..80316a46 100644 --- a/themes/word-color-theme.yaml +++ b/themes/word-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "coastermcgee.word-theme" version: "1.3.6" installs: 54172 + rating: 4 + ratings: 1 author: "Coaster McGee" repo: "https://github.com/coastermcgee/vscode-word-theme" url: "https://marketplace.visualstudio.com/items?itemName=coastermcgee.word-theme" diff --git a/themes/word-dark-theme.yaml b/themes/word-dark-theme.yaml index f8dfb97c..6b30c7d1 100644 --- a/themes/word-dark-theme.yaml +++ b/themes/word-dark-theme.yaml @@ -1,17 +1,19 @@ name: "word-dark-theme" source: - marketplace_id: "huacat.office-theme" - version: "1.4.1" - installs: 75529 - author: "huacat" - repo: "https://github.com/huacat1017/huacat.office-theme" - url: "https://marketplace.visualstudio.com/items?itemName=huacat.office-theme" + marketplace_id: "simen.theme-simen" + version: "1.2.0" + installs: 54 + rating: 0 + ratings: 0 + author: "simen" + repo: "https://github.com/microsoft/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=simen.theme-simen" colors: bg: "#262626" fg: "#F6F6F6" black: "#000000" red: "#ED7D31" - green: "#70AD47" + green: "#FFFFFF" yellow: "#FFC000" blue: "#7FA5F9" magenta: "#C19DEC" @@ -34,7 +36,7 @@ meta: fg: 98.9 black: 0 red: 45.8 - green: 46.5 + green: 104.8 yellow: 71.7 blue: 51.3 magenta: 54.6 diff --git a/themes/wordsmith-dark.yaml b/themes/wordsmith-dark.yaml index 7b7b3225..6e3005cf 100644 --- a/themes/wordsmith-dark.yaml +++ b/themes/wordsmith-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arzg.wordsmith" version: "0.1.0" installs: 716 + rating: 0 + ratings: 0 author: "arzg" repo: "https://github.com/arzg/wordsmith" url: "https://marketplace.visualstudio.com/items?itemName=arzg.wordsmith" diff --git a/themes/wordsmith-light.yaml b/themes/wordsmith-light.yaml index aa29799c..aa05b93e 100644 --- a/themes/wordsmith-light.yaml +++ b/themes/wordsmith-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arzg.wordsmith" version: "0.1.0" installs: 716 + rating: 0 + ratings: 0 author: "arzg" repo: "https://github.com/arzg/wordsmith" url: "https://marketplace.visualstudio.com/items?itemName=arzg.wordsmith" diff --git a/themes/workplace-chatter.yaml b/themes/workplace-chatter.yaml new file mode 100644 index 00000000..eb7ce0b4 --- /dev/null +++ b/themes/workplace-chatter.yaml @@ -0,0 +1,52 @@ +name: "Workplace-Chatter" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 325 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" +colors: + bg: "#1A1D22" + fg: "#E8E8E8" + black: "#1A1D22" + red: "#E0215B" + green: "#29C3A0" + yellow: "#D29922" + blue: "#A559A5" + magenta: "#A559A5" + cyan: "#29C3A0" + white: "#E8E8E8" + brightBlack: "#1A1D22" + brightRed: "#E0215B" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#A559A5" + brightMagenta: "#A559A5" + brightCyan: "#29C3A0" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "red" + hue: 261 + pair: null + contrast: + fg: 91.2 + black: 0 + red: 29.8 + green: 57 + yellow: 51 + blue: 28.4 + magenta: 28.4 + cyan: 57 + white: 91.2 + brightBlack: 0 + brightRed: 29.8 + brightGreen: 57 + brightYellow: 51 + brightBlue: 28.4 + brightMagenta: 28.4 + brightCyan: 57 + brightWhite: 91.2 diff --git a/themes/wow.yaml b/themes/wow.yaml new file mode 100644 index 00000000..8bde1e3a --- /dev/null +++ b/themes/wow.yaml @@ -0,0 +1,50 @@ +name: "wow!" +source: + marketplace_id: "spaceshiba.candy" + version: "0.0.1" + installs: 0 + author: "space shiba" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=spaceshiba.candy" +colors: + bg: "#222228" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3164" + green: "#11C77A" + yellow: "#FFDC50" + blue: "#2472C8" + magenta: "#8052FF" + cyan: "#13C9F2" + white: "#A7A3A3" + brightBlack: "#666666" + brightRed: "#FF5DB0" + brightGreen: "#3AFBAD" + brightYellow: "#FFFF74" + brightBlue: "#3B8EEA" + brightMagenta: "#BB8AEC" + brightCyan: "#32F5FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: 286 + pair: null + contrast: + fg: 78 + black: 0 + red: 26.1 + green: 56.7 + yellow: 84.3 + blue: 25.9 + magenta: 28 + cyan: 62.6 + white: 50.4 + brightBlack: 20.5 + brightRed: 46.1 + brightGreen: 84.6 + brightYellow: 101 + brightBlue: 38.5 + brightMagenta: 48.2 + brightCyan: 84.9 + brightWhite: 88.5 diff --git a/themes/wrkspace-theme.yaml b/themes/wrkspace-theme.yaml index 41ef23a1..da187608 100644 --- a/themes/wrkspace-theme.yaml +++ b/themes/wrkspace-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Wrkspace.wrkspace-theme" version: "0.0.2" installs: 20 + rating: 5 + ratings: 1 author: "Wrkspace" repo: "https://github.com/wrkspace-co/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Wrkspace.wrkspace-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 26.6 black: 0 diff --git a/themes/wye-black.yaml b/themes/wye-black.yaml index 8abce39f..aa20a22d 100644 --- a/themes/wye-black.yaml +++ b/themes/wye-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "phyzess.wye" version: "0.7.1" installs: 155 + rating: 0 + ratings: 0 author: "phyzess" repo: "https://github.com/phyzess/vscode-theme-wye" url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" diff --git a/themes/wye-dark-soft.yaml b/themes/wye-dark-soft.yaml index f89a51b3..e3f56763 100644 --- a/themes/wye-dark-soft.yaml +++ b/themes/wye-dark-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "phyzess.wye" version: "0.7.1" installs: 155 + rating: 0 + ratings: 0 author: "phyzess" repo: "https://github.com/phyzess/vscode-theme-wye" url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" diff --git a/themes/wye-dark.yaml b/themes/wye-dark.yaml index 497ef674..dbaa001f 100644 --- a/themes/wye-dark.yaml +++ b/themes/wye-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "phyzess.wye" version: "0.7.1" installs: 155 + rating: 0 + ratings: 0 author: "phyzess" repo: "https://github.com/phyzess/vscode-theme-wye" url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" diff --git a/themes/wye-light-soft.yaml b/themes/wye-light-soft.yaml index 9fa3baf0..66a23a53 100644 --- a/themes/wye-light-soft.yaml +++ b/themes/wye-light-soft.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "phyzess.wye" version: "0.7.1" installs: 155 + rating: 0 + ratings: 0 author: "phyzess" repo: "https://github.com/phyzess/vscode-theme-wye" url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" diff --git a/themes/wye-light.yaml b/themes/wye-light.yaml index a98a752d..59c8a3ad 100644 --- a/themes/wye-light.yaml +++ b/themes/wye-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "phyzess.wye" version: "0.7.1" installs: 155 + rating: 0 + ratings: 0 author: "phyzess" repo: "https://github.com/phyzess/vscode-theme-wye" url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" diff --git a/themes/x.yaml b/themes/x.yaml new file mode 100644 index 00000000..1b245e0e --- /dev/null +++ b/themes/x.yaml @@ -0,0 +1,52 @@ +name: "X" +source: + marketplace_id: "haris.zoradark" + version: "0.7.0" + installs: 171 + rating: 0 + ratings: 0 + author: "haris" + repo: "https://github.com/Elhary/Zora" + url: "https://marketplace.visualstudio.com/items?itemName=haris.zoradark" +colors: + bg: "#15202B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 249 + pair: null + contrast: + fg: 78.5 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21 + brightRed: 37.6 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/xaeon-dark.yaml b/themes/xaeon-dark.yaml index ecaed26f..683ddbff 100644 --- a/themes/xaeon-dark.yaml +++ b/themes/xaeon-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AalaeBl.ui-xaeon-dark" version: "0.0.7" installs: 441 + rating: 5 + ratings: 2 author: "aalaeDev" repo: "https://github.com/aalaeDev/xaeon-dark" url: "https://marketplace.visualstudio.com/items?itemName=AalaeBl.ui-xaeon-dark" diff --git a/themes/xava-color-theme.yaml b/themes/xava-color-theme.yaml index 9b36c5b0..5f9faccc 100644 --- a/themes/xava-color-theme.yaml +++ b/themes/xava-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "atagulalan.xava-color-theme" version: "0.0.2" installs: 94 + rating: 0 + ratings: 0 author: "Ata" repo: "https://github.com/atagulalan/xava-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=atagulalan.xava-color-theme" diff --git a/themes/xceodark.yaml b/themes/xceodark.yaml index cff5729e..170531ea 100644 --- a/themes/xceodark.yaml +++ b/themes/xceodark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ceo.xceodark" version: "0.0.1" installs: 68 + rating: 0 + ratings: 0 author: "ceo" repo: "https://github.com/cyr4hx/XCeoDark" url: "https://marketplace.visualstudio.com/items?itemName=ceo.xceodark" diff --git a/themes/xcode-dark.yaml b/themes/xcode-dark.yaml index 3645944e..69be44e3 100644 --- a/themes/xcode-dark.yaml +++ b/themes/xcode-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Lorpaves.zenies" version: "1.3.3" installs: 523 + rating: 0 + ratings: 0 author: "Lorpaves" repo: "https://github.com/Lorpaves/vscode-flat-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Lorpaves.zenies" diff --git a/themes/xecoy-dark.yaml b/themes/xecoy-dark.yaml index d464627d..66f39705 100644 --- a/themes/xecoy-dark.yaml +++ b/themes/xecoy-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xecoy-studio.xecoy-theme" version: "1.0.2" installs: 190 + rating: 0 + ratings: 0 author: "xecoy-studio" repo: "https://github.com/Xecoy-Studio/Xecoy-Web-Theme" url: "https://marketplace.visualstudio.com/items?itemName=xecoy-studio.xecoy-theme" diff --git a/themes/xecoy-light.yaml b/themes/xecoy-light.yaml index 504a10b0..fffed0ec 100644 --- a/themes/xecoy-light.yaml +++ b/themes/xecoy-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xecoy-studio.xecoy-theme" version: "1.0.2" installs: 190 + rating: 0 + ratings: 0 author: "xecoy-studio" repo: "https://github.com/Xecoy-Studio/Xecoy-Web-Theme" url: "https://marketplace.visualstudio.com/items?itemName=xecoy-studio.xecoy-theme" diff --git a/themes/xenon.yaml b/themes/xenon.yaml new file mode 100644 index 00000000..1346996c --- /dev/null +++ b/themes/xenon.yaml @@ -0,0 +1,52 @@ +name: "Xenon" +source: + marketplace_id: "Henriquehnnm.xenon" + version: "1.0.4" + installs: 42 + rating: 0 + ratings: 0 + author: "Henrique" + repo: "https://github.com/Henriquehnnm/Xenon_VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.xenon" +colors: + bg: "#0B0C0E" + fg: "#E8E8EF" + black: "#0B0C0E" + red: "#FF7B8F" + green: "#D3FA83" + yellow: "#FFCC91" + blue: "#34D8FF" + magenta: "#FF7CF3" + cyan: "#67F1D2" + white: "#E8E8EF" + brightBlack: "#8F8F9B" + brightRed: "#FF7B8F" + brightGreen: "#D3FA83" + brightYellow: "#FFCC91" + brightBlue: "#34D8FF" + brightMagenta: "#FF7CF3" + brightCyan: "#67F1D2" + brightWhite: "#E8E8EF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 93 + black: 0 + red: 53.6 + green: 95.3 + yellow: 80.9 + blue: 73 + magenta: 58.6 + cyan: 84.6 + white: 93 + brightBlack: 42.3 + brightRed: 53.6 + brightGreen: 95.3 + brightYellow: 80.9 + brightBlue: 73 + brightMagenta: 58.6 + brightCyan: 84.6 + brightWhite: 93 diff --git a/themes/xerobi-dark-theme.yaml b/themes/xerobi-dark-theme.yaml new file mode 100644 index 00000000..4ebd5764 --- /dev/null +++ b/themes/xerobi-dark-theme.yaml @@ -0,0 +1,52 @@ +name: "Xerobi Dark Theme" +source: + marketplace_id: "anisafifi.xerobi-theme" + version: "1.0.1" + installs: 13 + rating: 0 + ratings: 0 + author: "Anis Afifi" + repo: "https://github.com/anisafifi/xerobi-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=anisafifi.xerobi-theme" +colors: + bg: "#0F172A" + fg: "#CBD5E1" + black: "#1E293B" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#06B6D4" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#CBD5E1" + brightBlack: "#334155" + brightRed: "#F87171" + brightGreen: "#34D399" + brightYellow: "#FBBF24" + brightBlue: "#22D3EE" + brightMagenta: "#C084FC" + brightCyan: "#7DD3FC" + brightWhite: "#F1F5F9" +meta: + mode: "dark" + accent: "magenta" + hue: 266 + pair: "Xerobi Light Theme" + contrast: + fg: 79.3 + black: 0 + red: 36.7 + green: 51.8 + yellow: 59.3 + blue: 53.8 + magenta: 34.3 + cyan: 53.8 + white: 79.3 + brightBlack: 7.4 + brightRed: 48 + brightGreen: 65.1 + brightYellow: 72.6 + brightBlue: 68.5 + brightMagenta: 49.6 + brightCyan: 72.6 + brightWhite: 99.8 diff --git a/themes/xerobi-light-theme.yaml b/themes/xerobi-light-theme.yaml new file mode 100644 index 00000000..477fb1a0 --- /dev/null +++ b/themes/xerobi-light-theme.yaml @@ -0,0 +1,52 @@ +name: "Xerobi Light Theme" +source: + marketplace_id: "anisafifi.xerobi-theme" + version: "1.0.1" + installs: 13 + rating: 0 + ratings: 0 + author: "Anis Afifi" + repo: "https://github.com/anisafifi/xerobi-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=anisafifi.xerobi-theme" +colors: + bg: "#FFFFFF" + fg: "#334155" + black: "#1E293B" + red: "#B91C1C" + green: "#15803D" + yellow: "#B45309" + blue: "#0369A1" + magenta: "#7E22CE" + cyan: "#0E7490" + white: "#64748B" + brightBlack: "#475569" + brightRed: "#DC2626" + brightGreen: "#16A34A" + brightYellow: "#D97706" + brightBlue: "#0891B2" + brightMagenta: "#9333EA" + brightCyan: "#06B6D4" + brightWhite: "#0F172A" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Xerobi Dark Theme" + contrast: + fg: 94 + black: 101.4 + red: 80.2 + green: 74.2 + yellow: 74 + blue: 79.1 + magenta: 82.8 + cyan: 76.2 + white: 73 + brightBlack: 86.3 + brightRed: 71.6 + brightGreen: 59.7 + brightYellow: 58.5 + brightBlue: 63.8 + brightMagenta: 75.6 + brightCyan: 47.1 + brightWhite: 104.6 diff --git a/themes/xiali-vintage-rose-dark.yaml b/themes/xiali-vintage-rose-dark.yaml index 1a5b7c6e..f8b7acde 100644 --- a/themes/xiali-vintage-rose-dark.yaml +++ b/themes/xiali-vintage-rose-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xiali-themes.xiali-vintage-rose" version: "1.1.1" installs: 20 + rating: 0 + ratings: 0 author: "xiali-themes" repo: "https://github.com/Fernando-Leon/xiali-vintage-rose" url: "https://marketplace.visualstudio.com/items?itemName=xiali-themes.xiali-vintage-rose" diff --git a/themes/xiali-vintage-rose-light.yaml b/themes/xiali-vintage-rose-light.yaml index c6d35432..dd6bd31c 100644 --- a/themes/xiali-vintage-rose-light.yaml +++ b/themes/xiali-vintage-rose-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xiali-themes.xiali-vintage-rose" version: "1.1.1" installs: 20 + rating: 0 + ratings: 0 author: "xiali-themes" repo: "https://github.com/Fernando-Leon/xiali-vintage-rose" url: "https://marketplace.visualstudio.com/items?itemName=xiali-themes.xiali-vintage-rose" diff --git a/themes/xikreti.yaml b/themes/xikreti.yaml new file mode 100644 index 00000000..b29bc4cd --- /dev/null +++ b/themes/xikreti.yaml @@ -0,0 +1,52 @@ +name: "Xikreti" +source: + marketplace_id: "Xikreti.xikreti-theme" + version: "1.0.0" + installs: 12 + rating: 0 + ratings: 0 + author: "Thales Cardoso" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Xikreti.xikreti-theme" +colors: + bg: "#262335" + fg: "#FFFFFF" + black: "#2A2139" + red: "#FE4450" + green: "#2BFF88" + yellow: "#F3E70F" + blue: "#03EDF9" + magenta: "#FF7EDB" + cyan: "#03EDF9" + white: "#FFFFFF" + brightBlack: "#2A2139" + brightRed: "#FE4450" + brightGreen: "#2BFF88" + brightYellow: "#FEDE5D" + brightBlue: "#03EDF9" + brightMagenta: "#FF7EDB" + brightCyan: "#03EDF9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 292 + pair: null + contrast: + fg: 104.9 + black: 0 + red: 38.6 + green: 85 + yellow: 86.6 + blue: 79.7 + magenta: 54.9 + cyan: 79.7 + white: 104.9 + brightBlack: 0 + brightRed: 38.6 + brightGreen: 85 + brightYellow: 84.7 + brightBlue: 79.7 + brightMagenta: 54.9 + brightCyan: 79.7 + brightWhite: 104.9 diff --git a/themes/xis-one.yaml b/themes/xis-one.yaml index d271c777..3a295d92 100644 --- a/themes/xis-one.yaml +++ b/themes/xis-one.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Xanpis.xis" version: "0.0.0" installs: 827 + rating: 0 + ratings: 0 author: "Xanpis" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Xanpis.xis" diff --git a/themes/xlumielvscodetheme.yaml b/themes/xlumielvscodetheme.yaml index a94dc87f..fc11a58e 100644 --- a/themes/xlumielvscodetheme.yaml +++ b/themes/xlumielvscodetheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xlumiel.xLumielVSCodeTheme" version: "3.9.6" installs: 100 + rating: 5 + ratings: 1 author: "xlumiel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xlumiel.xLumielVSCodeTheme" diff --git a/themes/xotocode-dark.yaml b/themes/xotocode-dark.yaml index c18a0e81..c3abfd87 100644 --- a/themes/xotocode-dark.yaml +++ b/themes/xotocode-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xotosphere.xotocode-theme" version: "0.0.9" installs: 296 + rating: 0 + ratings: 0 author: "xotosphere" repo: "https://github.com/xotocode/xotocode-theme" url: "https://marketplace.visualstudio.com/items?itemName=xotosphere.xotocode-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 276 + pair: null contrast: fg: 77.9 black: 0 diff --git a/themes/xotopio.yaml b/themes/xotopio.yaml index 7cb5d836..8b33e382 100644 --- a/themes/xotopio.yaml +++ b/themes/xotopio.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xotopio.xotopio-light" version: "0.29.0" installs: 1008 + rating: 5 + ratings: 1 author: "xotopio" repo: "https://github.com/xotopio/xotopio.light" url: "https://marketplace.visualstudio.com/items?itemName=xotopio.xotopio-light" diff --git a/themes/xpyjs-black.yaml b/themes/xpyjs-black.yaml index 674158aa..e57dcab0 100644 --- a/themes/xpyjs-black.yaml +++ b/themes/xpyjs-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xpyjs.xpyjs-theme" version: "0.0.3" installs: 35 + rating: 5 + ratings: 1 author: "xpyjs" repo: "https://github.com/xpyjs/vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=xpyjs.xpyjs-theme" diff --git a/themes/xresources-bordered.yaml b/themes/xresources-bordered.yaml index 282bd903..6a1b0981 100644 --- a/themes/xresources-bordered.yaml +++ b/themes/xresources-bordered.yaml @@ -1,50 +1,52 @@ -name: "xresources_bordered" +name: "xresources-bordered" source: - marketplace_id: "NekkiNeks.xresources-theme-plus" - version: "2.0.1" - installs: 22 - author: "NekkiNeks" - repo: "https://github.com/NekkiNeks/xresources-theme-plus" - url: "https://marketplace.visualstudio.com/items?itemName=NekkiNeks.xresources-theme-plus" + marketplace_id: "JackVandergriff.xresources-theme" + version: "1.1.0" + installs: 1524 + rating: 5 + ratings: 1 + author: "Jack Vandergriff" + repo: "https://github.com/JackVandergriff/vscode-xresources-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JackVandergriff.xresources-theme" colors: - bg: "#000000" - fg: "#EAEAEA" - black: "#000000" - red: "#B30303" - green: "#8AB800" - yellow: "#DC4904" - blue: "#2527CE" - magenta: "#B20B6D" - cyan: "#277890" - white: "#AFAFAF" - brightBlack: "#4D4D4D" - brightRed: "#FF0100" - brightGreen: "#BAF602" - brightYellow: "#FD6C13" - brightBlue: "#2E31FC" - brightMagenta: "#F01294" - brightCyan: "#3BB1D4" - brightWhite: "#D6D6D6" + bg: "#2F2C2B" + fg: "#C9C8C8" + black: "#272524" + red: "#F4ADFC" + green: "#185D8E" + yellow: "#7270A0" + blue: "#7996AA" + magenta: "#5989AA" + cyan: "#D0C29F" + white: "#C9C8C8" + brightBlack: "#5D5B5A" + brightRed: "#F4FCAD" + brightGreen: "#185D8E" + brightYellow: "#7270A0" + brightBlue: "#7996AA" + brightMagenta: "#5989AA" + brightCyan: "#D0C29F" + brightWhite: "#C9C8C8" meta: mode: "dark" - accent: "purple" + accent: "pink" hue: null pair: null contrast: - fg: 94.2 + fg: 69.1 black: 0 - red: 19.7 - green: 56 - yellow: 33.9 - blue: 12.4 - magenta: 21.1 - cyan: 27.2 - white: 59 - brightBlack: 13.1 - brightRed: 37.5 - brightGreen: 89.7 - brightYellow: 47.9 - brightBlue: 19 - brightMagenta: 36.5 - brightCyan: 53.4 - brightWhite: 81.7 + red: 67.6 + green: 13.7 + yellow: 25.2 + blue: 39.3 + magenta: 32.2 + cyan: 65.9 + white: 69.1 + brightBlack: 14.3 + brightRed: 97.4 + brightGreen: 13.7 + brightYellow: 25.2 + brightBlue: 39.3 + brightMagenta: 32.2 + brightCyan: 65.9 + brightWhite: 69.1 diff --git a/themes/xresources-normal-dark.yaml b/themes/xresources-normal-dark.yaml new file mode 100644 index 00000000..67546387 --- /dev/null +++ b/themes/xresources-normal-dark.yaml @@ -0,0 +1,50 @@ +name: "xresources_normal_dark" +source: + marketplace_id: "NekkiNeks.xresources-theme-plus" + version: "2.0.1" + installs: 22 + author: "NekkiNeks" + repo: "https://github.com/NekkiNeks/xresources-theme-plus" + url: "https://marketplace.visualstudio.com/items?itemName=NekkiNeks.xresources-theme-plus" +colors: + bg: "#000000" + fg: "#EAEAEA" + black: "#232323" + red: "#B30303" + green: "#8AB800" + yellow: "#DC4904" + blue: "#2527CE" + magenta: "#B20B6D" + cyan: "#277890" + white: "#AFAFAF" + brightBlack: "#4D4D4D" + brightRed: "#FF0100" + brightGreen: "#BAF602" + brightYellow: "#FD6C13" + brightBlue: "#2E31FC" + brightMagenta: "#F01294" + brightCyan: "#3BB1D4" + brightWhite: "#D6D6D6" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 94.2 + black: 0 + red: 19.7 + green: 56 + yellow: 33.9 + blue: 12.4 + magenta: 21.1 + cyan: 27.2 + white: 59 + brightBlack: 13.1 + brightRed: 37.5 + brightGreen: 89.7 + brightYellow: 47.9 + brightBlue: 19 + brightMagenta: 36.5 + brightCyan: 53.4 + brightWhite: 81.7 diff --git a/themes/xresources.yaml b/themes/xresources.yaml index 2b7a5247..21340382 100644 --- a/themes/xresources.yaml +++ b/themes/xresources.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JackVandergriff.xresources-theme" version: "1.1.0" installs: 1524 + rating: 5 + ratings: 1 author: "Jack Vandergriff" repo: "https://github.com/JackVandergriff/vscode-xresources-theme" url: "https://marketplace.visualstudio.com/items?itemName=JackVandergriff.xresources-theme" diff --git a/themes/xrodev.yaml b/themes/xrodev.yaml index 0b19aa9a..0eec3215 100644 --- a/themes/xrodev.yaml +++ b/themes/xrodev.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rayan2228.xrodev" version: "1.1.0" installs: 87 + rating: 5 + ratings: 1 author: "rayan2228" repo: "https://github.com/rayan2228/xrodev-theme" url: "https://marketplace.visualstudio.com/items?itemName=rayan2228.xrodev" diff --git a/themes/xs.yaml b/themes/xs.yaml index 12be50d1..151aa193 100644 --- a/themes/xs.yaml +++ b/themes/xs.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VOID-DaydreaM.onsea-scenery" version: "0.3.0" installs: 6 + rating: 0 + ratings: 0 author: "VOID-DaydreaM" repo: "https://github.com/mag1c1an1/onsea-scenery" url: "https://marketplace.visualstudio.com/items?itemName=VOID-DaydreaM.onsea-scenery" diff --git a/themes/xstheme.yaml b/themes/xstheme.yaml index 85a1f636..66aa8d34 100644 --- a/themes/xstheme.yaml +++ b/themes/xstheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JoseXS.xstheme" version: "0.0.3" installs: 787 + rating: 5 + ratings: 3 author: "JoseXS" repo: "https://github.com/josexs/vscode-xstheme" url: "https://marketplace.visualstudio.com/items?itemName=JoseXS.xstheme" diff --git a/themes/xthemis-cyan.yaml b/themes/xthemis-cyan.yaml index 26aafb71..37db9e65 100644 --- a/themes/xthemis-cyan.yaml +++ b/themes/xthemis-cyan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xthemis19981.Cyan-Theme" version: "0.0.3" installs: 456 + rating: 0 + ratings: 0 author: "xthemis19981" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xthemis19981.Cyan-Theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 18.2 black: 0 diff --git a/themes/xtree-gold.yaml b/themes/xtree-gold.yaml index bba396bc..ed71a222 100644 --- a/themes/xtree-gold.yaml +++ b/themes/xtree-gold.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xstructx.xtree-gold" version: "0.0.6" installs: 1680 + rating: 0 + ratings: 0 author: "xstructx" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xstructx.xtree-gold" diff --git a/themes/xviewdark.yaml b/themes/xviewdark.yaml index a940f4d6..a7555138 100644 --- a/themes/xviewdark.yaml +++ b/themes/xviewdark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "thomas-richter.xviewdark" version: "1.1.0" installs: 745 + rating: 0 + ratings: 0 author: "Thomas Richter" repo: "https://github.com/eightbyte81/x-view-dark-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=thomas-richter.xviewdark" diff --git a/themes/xxhtml.yaml b/themes/xxhtml.yaml index 71a78547..eb1c048b 100644 --- a/themes/xxhtml.yaml +++ b/themes/xxhtml.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xxhtml.xxhtml-theme" version: "0.0.3" installs: 2 + rating: 0 + ratings: 0 author: "Isaac" repo: "https://github.com/XxHTMLStudios/xxhtml-theme" url: "https://marketplace.visualstudio.com/items?itemName=xxhtml.xxhtml-theme" diff --git a/themes/xzadudu179.yaml b/themes/xzadudu179.yaml index 9acca96f..7c2814e4 100644 --- a/themes/xzadudu179.yaml +++ b/themes/xzadudu179.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "xzadudu179.aerno-theme" version: "0.0.4" installs: 140 + rating: 0 + ratings: 0 author: "xzadudu179" repo: "https://github.com/xzadudu179/Aerno-Theme" url: "https://marketplace.visualstudio.com/items?itemName=xzadudu179.aerno-theme" diff --git a/themes/y3m.yaml b/themes/y3m.yaml index d36a9092..07b55ebb 100644 --- a/themes/y3m.yaml +++ b/themes/y3m.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YesCode.y3m" version: "0.0.2" installs: 1 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/y3mm/y3m-theme-vs" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.y3m" diff --git a/themes/yaast.yaml b/themes/yaast.yaml index 87851e43..9151d5ad 100644 --- a/themes/yaast.yaml +++ b/themes/yaast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jerhos.yaast" version: "1.1.0" installs: 161 + rating: 0 + ratings: 0 author: "jerhos" repo: "https://github.com/jerhos/YAAST" url: "https://marketplace.visualstudio.com/items?itemName=jerhos.yaast" diff --git a/themes/yagnesh.yaml b/themes/yagnesh.yaml index 51ec7521..d82f1c20 100644 --- a/themes/yagnesh.yaml +++ b/themes/yagnesh.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Yagnesh.yagnesh" version: "2.0.9" installs: 49 + rating: 0 + ratings: 0 author: "Yagnesh" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Yagnesh.yagnesh" diff --git a/themes/yalpha-dark-eris.yaml b/themes/yalpha-dark-eris.yaml index 86b528d0..e5bae7ff 100644 --- a/themes/yalpha-dark-eris.yaml +++ b/themes/yalpha-dark-eris.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yalpha-dark-eris-color-theme.yalpha-dark-eris" version: "0.0.1" installs: 221 + rating: 0 + ratings: 0 author: "yalpha-dark-eris-color-theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=yalpha-dark-eris-color-theme.yalpha-dark-eris" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 36.6 black: 0 diff --git a/themes/yami-blue.yaml b/themes/yami-blue.yaml index 2f39d6f6..6645923a 100644 --- a/themes/yami-blue.yaml +++ b/themes/yami-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HatimMurtuza.yami-theme" version: "1.2.0" installs: 2369 + rating: 5 + ratings: 2 author: "Hatim Murtuza" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HatimMurtuza.yami-theme" diff --git a/themes/yanbaru-shadow.yaml b/themes/yanbaru-shadow.yaml index 61910c21..4081ac3f 100644 --- a/themes/yanbaru-shadow.yaml +++ b/themes/yanbaru-shadow.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ky12228121.okinawan-themes" version: "0.0.1" installs: 10 + rating: 0 + ratings: 0 author: "Keny Yahat" repo: "https://github.com/ky12228121/okinawan" url: "https://marketplace.visualstudio.com/items?itemName=ky12228121.okinawan-themes" diff --git a/themes/yanus.yaml b/themes/yanus.yaml new file mode 100644 index 00000000..b93d67ed --- /dev/null +++ b/themes/yanus.yaml @@ -0,0 +1,52 @@ +name: "YANUS" +source: + marketplace_id: "StabbingStereo.YANUS" + version: "1.0.2" + installs: 173 + rating: 0 + ratings: 0 + author: "StabbingStereo" + repo: "https://github.com/tobiasstenberg/YANUS" + url: "https://marketplace.visualstudio.com/items?itemName=StabbingStereo.YANUS" +colors: + bg: "#1A1D26" + fg: "#C5C5C8" + black: "#1F242E" + red: "#A54253" + green: "#4C917C" + yellow: "#DE935F" + blue: "#5F819D" + magenta: "#896894" + cyan: "#5A9191" + white: "#687480" + brightBlack: "#3C444F" + brightRed: "#E16571" + brightGreen: "#51AF94" + brightYellow: "#DEAF64" + brightBlue: "#73A5D0" + brightMagenta: "#BC7AAF" + brightCyan: "#54BBBE" + brightWhite: "#C5C5C8" +meta: + mode: "dark" + accent: "orange" + hue: 271 + pair: null + contrast: + fg: 69.9 + black: 0 + red: 20.8 + green: 35.3 + yellow: 51.6 + blue: 31.8 + magenta: 27.4 + cyan: 36.8 + white: 26.8 + brightBlack: 7.9 + brightRed: 39.8 + brightGreen: 48.7 + brightYellow: 61.6 + brightBlue: 49.2 + brightMagenta: 40.8 + brightCyan: 55.7 + brightWhite: 69.9 diff --git a/themes/yarra-valley.yaml b/themes/yarra-valley.yaml index a19d7f0c..85a4e6a9 100644 --- a/themes/yarra-valley.yaml +++ b/themes/yarra-valley.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "dustypomerleau.yarra-valley" version: "0.29.14" installs: 10152 + rating: 5 + ratings: 4 author: "Dusty Pomerleau" repo: "https://github.com/dustypomerleau/yarra-valley" url: "https://marketplace.visualstudio.com/items?itemName=dustypomerleau.yarra-valley" diff --git a/themes/yaru-dark.yaml b/themes/yaru-dark.yaml index 6b492707..fcfb19e4 100644 --- a/themes/yaru-dark.yaml +++ b/themes/yaru-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "HasibX2000.slab-theme" version: "0.0.3" installs: 3736 + rating: 5 + ratings: 1 author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" diff --git a/themes/yaru.yaml b/themes/yaru.yaml index da8afd34..770cfa86 100644 --- a/themes/yaru.yaml +++ b/themes/yaru.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rdnlsmith.linux-themes" version: "1.3.0" installs: 41712 + rating: 4.75 + ratings: 4 author: "rdnlsmith" repo: "https://github.com/rdnlsmith/vscode-arc-theme" url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" diff --git a/themes/yaruna-aurora.yaml b/themes/yaruna-aurora.yaml index c87e7763..09b977da 100644 --- a/themes/yaruna-aurora.yaml +++ b/themes/yaruna-aurora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daniel-duc.daniel-yaruna-theme" version: "1.3.2" installs: 255 + rating: 5 + ratings: 2 author: "Daniel Duc" repo: "https://github.com/binhduc1211/daniel-yaruna-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" diff --git a/themes/yaruna-forest.yaml b/themes/yaruna-forest.yaml index 65e64c3f..0ab40d9e 100644 --- a/themes/yaruna-forest.yaml +++ b/themes/yaruna-forest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daniel-duc.daniel-yaruna-theme" version: "1.3.2" installs: 255 + rating: 5 + ratings: 2 author: "Daniel Duc" repo: "https://github.com/binhduc1211/daniel-yaruna-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" diff --git a/themes/yaruna-midnight.yaml b/themes/yaruna-midnight.yaml index 00b69793..1c65924c 100644 --- a/themes/yaruna-midnight.yaml +++ b/themes/yaruna-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daniel-duc.daniel-yaruna-theme" version: "1.3.2" installs: 255 + rating: 5 + ratings: 2 author: "Daniel Duc" repo: "https://github.com/binhduc1211/daniel-yaruna-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" diff --git a/themes/yaruna-nova.yaml b/themes/yaruna-nova.yaml index 97273acb..a3f6c838 100644 --- a/themes/yaruna-nova.yaml +++ b/themes/yaruna-nova.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "daniel-duc.daniel-yaruna-theme" version: "1.3.2" installs: 255 + rating: 5 + ratings: 2 author: "Daniel Duc" repo: "https://github.com/binhduc1211/daniel-yaruna-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" diff --git a/themes/yd-dark.yaml b/themes/yd-dark.yaml index 1ae17755..10305a60 100644 --- a/themes/yd-dark.yaml +++ b/themes/yd-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YellowDeer.yd-theme" version: "2.3.1" installs: 165 + rating: 0 + ratings: 0 author: "YellowDeer" repo: null url: "https://marketplace.visualstudio.com/items?itemName=YellowDeer.yd-theme" diff --git a/themes/yd-light.yaml b/themes/yd-light.yaml index d5b2bd7e..111112c3 100644 --- a/themes/yd-light.yaml +++ b/themes/yd-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "YellowDeer.yd-theme" version: "2.3.1" installs: 165 + rating: 0 + ratings: 0 author: "YellowDeer" repo: null url: "https://marketplace.visualstudio.com/items?itemName=YellowDeer.yd-theme" diff --git a/themes/ydrgzm-light-theme.yaml b/themes/ydrgzm-light-theme.yaml index 10719b4f..09aa4ea8 100644 --- a/themes/ydrgzm-light-theme.yaml +++ b/themes/ydrgzm-light-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ydrgzm.yd-light-theme" version: "0.0.4" installs: 368 + rating: 5 + ratings: 1 author: "ydrgzm" repo: "https://github.com/ydrgzm/Ydrgzm-LIGHT-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ydrgzm.yd-light-theme" diff --git a/themes/yelan.yaml b/themes/yelan.yaml index c8ddf673..580e95a6 100644 --- a/themes/yelan.yaml +++ b/themes/yelan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "SaiAkhilKarra.yelan-theme-made-by-me" version: "0.0.7" installs: 103 + rating: 0 + ratings: 0 author: "Sai Akhil Karra" repo: "https://github.com/SaiAkhil2006/Yelan-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SaiAkhilKarra.yelan-theme-made-by-me" diff --git a/themes/yell.yaml b/themes/yell.yaml new file mode 100644 index 00000000..9d4af894 --- /dev/null +++ b/themes/yell.yaml @@ -0,0 +1,52 @@ +name: "Yell" +source: + marketplace_id: "coderdiaz.yell" + version: "0.1.3" + installs: 412 + rating: 0 + ratings: 0 + author: "Javier Diaz Chamorro" + repo: "https://github.com/coderdiaz/yell-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=coderdiaz.yell" +colors: + bg: "#101415" + fg: "#D2A873" + black: "#403F53" + red: "#DE3D3B" + green: "#61B3A2" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#D2A873" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#61B3A2" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#D2A873" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 58.5 + black: 8.1 + red: 32.3 + green: 52.8 + yellow: 62.3 + blue: 38.5 + magenta: 33.3 + cyan: 58.5 + white: 97.4 + brightBlack: 8.1 + brightRed: 32.3 + brightGreen: 52.8 + brightYellow: 59.4 + brightBlue: 38.5 + brightMagenta: 33.3 + brightCyan: 58.5 + brightWhite: 97.4 diff --git a/themes/yellow-beryl.yaml b/themes/yellow-beryl.yaml index f9de1bf2..b9bcf790 100644 --- a/themes/yellow-beryl.yaml +++ b/themes/yellow-beryl.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Meitrox9.yellow-beryl-theme" version: "0.0.3" installs: 393 + rating: 0 + ratings: 0 author: "Meitrox" repo: "https://github.com/Meitrox/yellow-beryl-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Meitrox9.yellow-beryl-theme" diff --git a/themes/yellow-green-blue-theme.yaml b/themes/yellow-green-blue-theme.yaml index 479bd46e..82b6b22d 100644 --- a/themes/yellow-green-blue-theme.yaml +++ b/themes/yellow-green-blue-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "miha19772001.yellow-green-blue-theme" version: "0.0.2" installs: 234 + rating: 0 + ratings: 0 author: "miha19772001" repo: "https://github.com/miha19772001/yellow-green-blue-theme" url: "https://marketplace.visualstudio.com/items?itemName=miha19772001.yellow-green-blue-theme" diff --git a/themes/yellow-ish.yaml b/themes/yellow-ish.yaml index 1922ebcb..d6bdb8df 100644 --- a/themes/yellow-ish.yaml +++ b/themes/yellow-ish.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "VincentWillats.vwyellow" version: "0.0.2" installs: 476 + rating: 0 + ratings: 0 author: "VincentWillats" repo: null url: "https://marketplace.visualstudio.com/items?itemName=VincentWillats.vwyellow" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 108 + pair: null contrast: fg: 79.6 black: 10 diff --git a/themes/yellow-purple-theme.yaml b/themes/yellow-purple-theme.yaml index 9f7a7e8a..5f516976 100644 --- a/themes/yellow-purple-theme.yaml +++ b/themes/yellow-purple-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "davisamasoa.davisamasoa-theme" version: "1.0.4" installs: 951 + rating: 0 + ratings: 0 author: "Davi Samuel" repo: "https://github.com/Davisamasoa/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=davisamasoa.davisamasoa-theme" diff --git a/themes/yellowed.yaml b/themes/yellowed.yaml index 66ba73e4..89fb15cb 100644 --- a/themes/yellowed.yaml +++ b/themes/yellowed.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "gael-lopes-da-silva.yellowed" version: "2.4.0" installs: 2757 + rating: 5 + ratings: 1 author: "Gaël Lopes Da Silva" repo: "https://github.com/Gael-Lopes-Da-Silva/YellowedVSCode" url: "https://marketplace.visualstudio.com/items?itemName=gael-lopes-da-silva.yellowed" diff --git a/themes/yerba.yaml b/themes/yerba.yaml index fc4e3757..a50c63da 100644 --- a/themes/yerba.yaml +++ b/themes/yerba.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "sebastian-j-ibanez.yerba-theme" version: "0.0.2" installs: 16 + rating: 0 + ratings: 0 author: "sebastian-j-ibanez" repo: "https://github.com/sebastian-j-ibanez/yerba-theme" url: "https://marketplace.visualstudio.com/items?itemName=sebastian-j-ibanez.yerba-theme" diff --git a/themes/yet-another-solarized-theme-dark.yaml b/themes/yet-another-solarized-theme-dark.yaml index ca78d921..10a94fb5 100644 --- a/themes/yet-another-solarized-theme-dark.yaml +++ b/themes/yet-another-solarized-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JulianSchelb.yet-another-solarized-theme" version: "1.0.5" installs: 2705 + rating: 5 + ratings: 2 author: "Julian Schelb" repo: "https://github.com/julianschelb/vscode-theme-solarized" url: "https://marketplace.visualstudio.com/items?itemName=JulianSchelb.yet-another-solarized-theme" diff --git a/themes/yet-another-solarized-theme-light.yaml b/themes/yet-another-solarized-theme-light.yaml index a2fa6336..7a3fc279 100644 --- a/themes/yet-another-solarized-theme-light.yaml +++ b/themes/yet-another-solarized-theme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "beigeowl.wrapped-owl" version: "1.1.0" installs: 885 + rating: 0 + ratings: 0 author: "beigeowl" repo: null url: "https://marketplace.visualstudio.com/items?itemName=beigeowl.wrapped-owl" diff --git a/themes/yinloonga-c.yaml b/themes/yinloonga-c.yaml new file mode 100644 index 00000000..d97c6f56 --- /dev/null +++ b/themes/yinloonga-c.yaml @@ -0,0 +1,52 @@ +name: "yinloonga_c++" +source: + marketplace_id: "yinloonga.solarized-dark-cpp" + version: "1.48.0" + installs: 1779 + rating: 3 + ratings: 2 + author: "yinloonga" + repo: "https://github.com/torvalds/linux" + url: "https://marketplace.visualstudio.com/items?itemName=yinloonga.solarized-dark-cpp" +colors: + bg: "#23272E" + fg: "#B8C0CC" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 262 + pair: null + contrast: + fg: 65 + black: 0 + red: 22.4 + green: 50.8 + yellow: 55.4 + blue: 32.4 + magenta: 30 + cyan: 48.2 + white: 86.3 + brightBlack: 19.8 + brightRed: 35.1 + brightGreen: 74.8 + brightYellow: 81.7 + brightBlue: 47.6 + brightMagenta: 44.3 + brightCyan: 71.2 + brightWhite: 99.8 diff --git a/themes/yitzchok-contrast.yaml b/themes/yitzchok-contrast.yaml index 67d8a82d..6ed642fb 100644 --- a/themes/yitzchok-contrast.yaml +++ b/themes/yitzchok-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/yitzchok-light.yaml b/themes/yitzchok-light.yaml index 299346ed..3bb180c0 100644 --- a/themes/yitzchok-light.yaml +++ b/themes/yitzchok-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/yitzchok.yaml b/themes/yitzchok.yaml index eb0b64fb..03752d6e 100644 --- a/themes/yitzchok.yaml +++ b/themes/yitzchok.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/ylw-dark-theme.yaml b/themes/ylw-dark-theme.yaml index 72e55518..78d675ef 100644 --- a/themes/ylw-dark-theme.yaml +++ b/themes/ylw-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ylw.ylw-theme" version: "3.1.0" installs: 99 + rating: 5 + ratings: 1 author: "ylw" repo: "https://github.com/ylw1997/ylw-theme" url: "https://marketplace.visualstudio.com/items?itemName=ylw.ylw-theme" diff --git a/themes/yoda-mystical-force.yaml b/themes/yoda-mystical-force.yaml index 32055cc1..7501c61a 100644 --- a/themes/yoda-mystical-force.yaml +++ b/themes/yoda-mystical-force.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Dutchorange.space-wars" version: "1.1.7" installs: 1711 + rating: 5 + ratings: 3 author: "Dutchorange" repo: "https://github.com/entropy-glitch/space-wars" url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" diff --git a/themes/yoda.yaml b/themes/yoda.yaml index 651b0f27..a67e1fa9 100644 --- a/themes/yoda.yaml +++ b/themes/yoda.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yoda.yoda-theme" version: "1.0.3" installs: 95 + rating: 5 + ratings: 1 author: "Sire" repo: "https://github.com/Sire/Yoda" url: "https://marketplace.visualstudio.com/items?itemName=yoda.yoda-theme" diff --git a/themes/yohualli-eclipse.yaml b/themes/yohualli-eclipse.yaml index 70ebd326..23ad5efd 100644 --- a/themes/yohualli-eclipse.yaml +++ b/themes/yohualli-eclipse.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlejandroHernandez.yohualli-theme" version: "0.0.3" installs: 36 + rating: 0 + ratings: 0 author: "Alejandro Hernandez" repo: "https://github.com/josuebautista/YohualliTheme" url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.yohualli-theme" diff --git a/themes/yohualli-lunaris.yaml b/themes/yohualli-lunaris.yaml index 81d11272..56c16cdf 100644 --- a/themes/yohualli-lunaris.yaml +++ b/themes/yohualli-lunaris.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlejandroHernandez.yohualli-theme" version: "0.0.3" installs: 36 + rating: 0 + ratings: 0 author: "Alejandro Hernandez" repo: "https://github.com/josuebautista/YohualliTheme" url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.yohualli-theme" diff --git a/themes/yohualli-nebulune.yaml b/themes/yohualli-nebulune.yaml index 6015d65e..e2c33cf5 100644 --- a/themes/yohualli-nebulune.yaml +++ b/themes/yohualli-nebulune.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlejandroHernandez.yohualli-theme" version: "0.0.3" installs: 36 + rating: 0 + ratings: 0 author: "Alejandro Hernandez" repo: "https://github.com/josuebautista/YohualliTheme" url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.yohualli-theme" diff --git a/themes/yohualli-penumbra.yaml b/themes/yohualli-penumbra.yaml index ac39a545..2898cdb6 100644 --- a/themes/yohualli-penumbra.yaml +++ b/themes/yohualli-penumbra.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AlejandroHernandez.yohualli-theme" version: "0.0.3" installs: 36 + rating: 0 + ratings: 0 author: "Alejandro Hernandez" repo: "https://github.com/josuebautista/YohualliTheme" url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.yohualli-theme" diff --git a/themes/yonc.yaml b/themes/yonc.yaml index 9ce1a64c..08a52c5d 100644 --- a/themes/yonc.yaml +++ b/themes/yonc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Gixo.yue-theme" version: "1.0.2" installs: 686 + rating: 0 + ratings: 0 author: "Gixo" repo: "https://github.com/thegixo/yue-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Gixo.yue-theme" diff --git a/themes/yondog-dark.yaml b/themes/yondog-dark.yaml index aec7798b..504dec10 100644 --- a/themes/yondog-dark.yaml +++ b/themes/yondog-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AbyTubuon.yondog-dark" version: "0.0.3" installs: 24 + rating: 0 + ratings: 0 author: "Kirik " repo: null url: "https://marketplace.visualstudio.com/items?itemName=AbyTubuon.yondog-dark" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 104.1 black: 0 diff --git a/themes/yotei.yaml b/themes/yotei.yaml index dc63ce25..42f807ab 100644 --- a/themes/yotei.yaml +++ b/themes/yotei.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Zenky.yotei" version: "1.1.4" installs: 542 + rating: 5 + ratings: 3 author: "Zenky" repo: "https://github.com/bzenky/yotei-theme" url: "https://marketplace.visualstudio.com/items?itemName=Zenky.yotei" diff --git a/themes/yoth-theme-dark.yaml b/themes/yoth-theme-dark.yaml index 8cc54adb..ea0e8a7d 100644 --- a/themes/yoth-theme-dark.yaml +++ b/themes/yoth-theme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yoththemedark.yoth-theme-dark" version: "0.0.1" installs: 110 + rating: 0 + ratings: 0 author: "yoththemedark" repo: "https://github.com/theoyoth/yoth-theme-dark" url: "https://marketplace.visualstudio.com/items?itemName=yoththemedark.yoth-theme-dark" diff --git a/themes/yoyo-theme-green.yaml b/themes/yoyo-theme-green.yaml index 9b87bfc0..966623ed 100644 --- a/themes/yoyo-theme-green.yaml +++ b/themes/yoyo-theme-green.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AmreshMaurya.yoyo" version: "0.0.1" installs: 81 + rating: 0 + ratings: 0 author: "Amresh Maurya" repo: "https://github.com/Amresh9/yoyo" url: "https://marketplace.visualstudio.com/items?itemName=AmreshMaurya.yoyo" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: 145 + pair: null contrast: fg: 14.7 black: 56 diff --git a/themes/yoyo-theme.yaml b/themes/yoyo-theme.yaml index 336c895b..78b1a811 100644 --- a/themes/yoyo-theme.yaml +++ b/themes/yoyo-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "AmreshMaurya.yoyo" version: "0.0.1" installs: 81 + rating: 0 + ratings: 0 author: "Amresh Maurya" repo: "https://github.com/Amresh9/yoyo" url: "https://marketplace.visualstudio.com/items?itemName=AmreshMaurya.yoyo" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 238 + pair: null contrast: fg: 67.6 black: 0 diff --git a/themes/ystheme.yaml b/themes/ystheme.yaml index a71433c6..c7f6e030 100644 --- a/themes/ystheme.yaml +++ b/themes/ystheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ystheme.ystheme" version: "1.3.0" installs: 3 + rating: 0 + ratings: 0 author: "Yirsis Serrano Theme" repo: "https://github.com/YirsisHertz/yirsis-serrano-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ystheme.ystheme" diff --git a/themes/ytheme-dark.yaml b/themes/ytheme-dark.yaml index bc012cbb..9c33d413 100644 --- a/themes/ytheme-dark.yaml +++ b/themes/ytheme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "czfadmin.ytheme" version: "1.3.21" installs: 1128 + rating: 0 + ratings: 0 author: "czfadmin" repo: "https://github.com/czfadmin/Atom-One-Dark-Pro" url: "https://marketplace.visualstudio.com/items?itemName=czfadmin.ytheme" diff --git a/themes/yttrium-dark.yaml b/themes/yttrium-dark.yaml new file mode 100644 index 00000000..5b23a1d7 --- /dev/null +++ b/themes/yttrium-dark.yaml @@ -0,0 +1,50 @@ +name: "Yttrium Dark" +source: + marketplace_id: "dkcaliskan.yttrium" + version: "0.2.0" + installs: 107 + author: "dkcaliskan" + repo: "https://github.com/dkcaliskan/yttrium" + url: "https://marketplace.visualstudio.com/items?itemName=dkcaliskan.yttrium" +colors: + bg: "#121212" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: "Yttrium light" + contrast: + fg: 59.8 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.4 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/yttrium-light.yaml b/themes/yttrium-light.yaml new file mode 100644 index 00000000..4b374d9a --- /dev/null +++ b/themes/yttrium-light.yaml @@ -0,0 +1,50 @@ +name: "Yttrium light" +source: + marketplace_id: "dkcaliskan.yttrium" + version: "0.2.0" + installs: 107 + author: "dkcaliskan" + repo: "https://github.com/dkcaliskan/yttrium" + url: "https://marketplace.visualstudio.com/items?itemName=dkcaliskan.yttrium" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#6D6B6B" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: "Yttrium Dark" + contrast: + fg: 106 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 76.4 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/yue-theme.yaml b/themes/yue-theme.yaml index 43799d6d..81ea94b0 100644 --- a/themes/yue-theme.yaml +++ b/themes/yue-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yuesuirenqianli.yue-code-theme" version: "0.0.2" installs: 91 + rating: 5 + ratings: 1 author: "yuesuirenqianli" repo: "https://github.com/yuesuirenqianli/yue-theme" url: "https://marketplace.visualstudio.com/items?itemName=yuesuirenqianli.yue-code-theme" diff --git a/themes/yukinord.yaml b/themes/yukinord.yaml index 1d9866df..68f56427 100644 --- a/themes/yukinord.yaml +++ b/themes/yukinord.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yukina.yukinord" version: "0.0.65" installs: 1367 + rating: 0 + ratings: 0 author: "Yukina" repo: "https://github.com/yukina3230/yukinord" url: "https://marketplace.visualstudio.com/items?itemName=yukina.yukinord" diff --git a/themes/yule-contrast.yaml b/themes/yule-contrast.yaml index 960795a6..9ab250aa 100644 --- a/themes/yule-contrast.yaml +++ b/themes/yule-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/yule-light.yaml b/themes/yule-light.yaml index 82c2142b..cfe3385a 100644 --- a/themes/yule-light.yaml +++ b/themes/yule-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/yule.yaml b/themes/yule.yaml index 63828b1d..8d62f5a2 100644 --- a/themes/yule.yaml +++ b/themes/yule.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/yulon.yaml b/themes/yulon.yaml index a1350121..6ab42a79 100644 --- a/themes/yulon.yaml +++ b/themes/yulon.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Volskaya.irrelevant" version: "0.0.2" installs: 33 + rating: 0 + ratings: 0 author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" diff --git a/themes/yum.yaml b/themes/yum.yaml index 2f0b6afd..9bf5d7c0 100644 --- a/themes/yum.yaml +++ b/themes/yum.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "RioEdwards.yum" version: "1.0.4" installs: 233 + rating: 5 + ratings: 1 author: "Rio Edwards" repo: "https://github.com/rioredwards/yum" url: "https://marketplace.visualstudio.com/items?itemName=RioEdwards.yum" diff --git a/themes/yurei-dark-theme.yaml b/themes/yurei-dark-theme.yaml index 05eaa64c..690198e7 100644 --- a/themes/yurei-dark-theme.yaml +++ b/themes/yurei-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "vanreagan.yurei-dark-theme" version: "1.1.0" installs: 282 + rating: 5 + ratings: 1 author: "vanreagan" repo: "https://github.com/vanreagan/yurei-dark-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=vanreagan.yurei-dark-theme" diff --git a/themes/yuru-black.yaml b/themes/yuru-black.yaml index 0e12c275..6a769feb 100644 --- a/themes/yuru-black.yaml +++ b/themes/yuru-black.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "yuru.yuru-black" version: "2.3.4" installs: 962 + rating: 0 + ratings: 0 author: "yuru" repo: "https://github.com/yuruko/yuru-black" url: "https://marketplace.visualstudio.com/items?itemName=yuru.yuru-black" diff --git a/themes/yuru.yaml b/themes/yuru.yaml index 523cbd2e..b412919c 100644 --- a/themes/yuru.yaml +++ b/themes/yuru.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "arzg.noel" version: "2.1.0" installs: 614 + rating: 5 + ratings: 1 author: "arzg" repo: "https://github.com/arzg/noel" url: "https://marketplace.visualstudio.com/items?itemName=arzg.noel" diff --git a/themes/yuuyake-dark.yaml b/themes/yuuyake-dark.yaml new file mode 100644 index 00000000..713f4285 --- /dev/null +++ b/themes/yuuyake-dark.yaml @@ -0,0 +1,52 @@ +name: "Yuuyake - dark" +source: + marketplace_id: "ciqven.yuuyake-code" + version: "0.2.1" + installs: 31 + rating: 0 + ratings: 0 + author: "ciqven" + repo: "https://github.com/ciqven/yuuyake-code" + url: "https://marketplace.visualstudio.com/items?itemName=ciqven.yuuyake-code" +colors: + bg: "#2A1B1B" + fg: "#C99358" + black: "#000000" + red: "#A84D3F" + green: "#246C39" + yellow: "#93932D" + blue: "#615A99" + magenta: "#8A2F58" + cyan: "#336A79" + white: "#B4B4B4" + brightBlack: "#666666" + brightRed: "#EF7D6C" + brightGreen: "#50B16D" + brightYellow: "#E1E15E" + brightBlue: "#948ADD" + brightMagenta: "#C95B8D" + brightCyan: "#5DA6B9" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 19 + pair: null + contrast: + fg: 47.7 + black: 0 + red: 22.7 + green: 18.4 + yellow: 40 + blue: 19.4 + magenta: 13.2 + cyan: 19.8 + white: 59.8 + brightBlack: 21.1 + brightRed: 48.2 + brightGreen: 48.2 + brightYellow: 82.8 + brightBlue: 42.8 + brightMagenta: 33.6 + brightCyan: 46.8 + brightWhite: 89 diff --git a/themes/yuyuko-vscode-ocean.yaml b/themes/yuyuko-vscode-ocean.yaml index 55211b43..f57eefec 100644 --- a/themes/yuyuko-vscode-ocean.yaml +++ b/themes/yuyuko-vscode-ocean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hylwxqwq.yuyuko-vim-vsc" version: "0.2.1" installs: 6339 + rating: 5 + ratings: 4 author: "hylwxqwq" repo: "https://github.com/hylwxqwq/yuyuko-vim-vsc" url: "https://marketplace.visualstudio.com/items?itemName=hylwxqwq.yuyuko-vim-vsc" diff --git a/themes/yuyuko-vscode.yaml b/themes/yuyuko-vscode.yaml index 44bcc1d9..60af4823 100644 --- a/themes/yuyuko-vscode.yaml +++ b/themes/yuyuko-vscode.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hylwxqwq.yuyuko-vim-vsc" version: "0.2.1" installs: 6339 + rating: 5 + ratings: 4 author: "hylwxqwq" repo: "https://github.com/hylwxqwq/yuyuko-vim-vsc" url: "https://marketplace.visualstudio.com/items?itemName=hylwxqwq.yuyuko-vim-vsc" diff --git a/themes/z-darktheme.yaml b/themes/z-darktheme.yaml index 31f19192..786e4302 100644 --- a/themes/z-darktheme.yaml +++ b/themes/z-darktheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Akako.z-darktheme" version: "0.1.0" installs: 321 + rating: 4.5 + ratings: 2 author: "Akakø" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Akako.z-darktheme" diff --git a/themes/z3r0.yaml b/themes/z3r0.yaml index 1351caea..5b05ccad 100644 --- a/themes/z3r0.yaml +++ b/themes/z3r0.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "z3r0.z3r0" version: "1.2.0" installs: 341 + rating: 5 + ratings: 1 author: "Z3R0" repo: "https://github.com/thailoeduardo/z3r0" url: "https://marketplace.visualstudio.com/items?itemName=z3r0.z3r0" diff --git a/themes/zach-s-blue-theme.yaml b/themes/zach-s-blue-theme.yaml index 970dbee3..63a986ed 100644 --- a/themes/zach-s-blue-theme.yaml +++ b/themes/zach-s-blue-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZachFauser.ZachsBlueTheme" version: "9.0.1" installs: 1740 + rating: 5 + ratings: 3 author: "Zach Fauser" repo: "https://github.com/Zfauser/Zachs-BLUE-vs-code" url: "https://marketplace.visualstudio.com/items?itemName=ZachFauser.ZachsBlueTheme" diff --git a/themes/zacharywilliamson.yaml b/themes/zacharywilliamson.yaml new file mode 100644 index 00000000..a0034624 --- /dev/null +++ b/themes/zacharywilliamson.yaml @@ -0,0 +1,52 @@ +name: "ZacharyWilliamson" +source: + marketplace_id: "ZacharyWilliamson.ZacharyWilliamson" + version: "1.0.2" + installs: 9 + rating: 0 + ratings: 0 + author: "Zachary Williamson" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ZacharyWilliamson.ZacharyWilliamson" +colors: + bg: "#2E3440" + fg: "#D1D1D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 72.6 + black: 0 + red: 21.6 + green: 47.9 + yellow: 80.5 + blue: 22.4 + magenta: 24.7 + cyan: 42.5 + white: 84.9 + brightBlack: 17 + brightRed: 33.5 + brightGreen: 58.5 + brightYellow: 90.6 + brightBlue: 34.9 + brightMagenta: 40.3 + brightCyan: 50.3 + brightWhite: 84.9 diff --git a/themes/zacks-contrast.yaml b/themes/zacks-contrast.yaml index d6d27abb..cad985a1 100644 --- a/themes/zacks-contrast.yaml +++ b/themes/zacks-contrast.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/zacks-light.yaml b/themes/zacks-light.yaml index 4b08d9f1..8d833274 100644 --- a/themes/zacks-light.yaml +++ b/themes/zacks-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/zacks.yaml b/themes/zacks.yaml index e3fa2792..cdb01df2 100644 --- a/themes/zacks.yaml +++ b/themes/zacks.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "humbanew.flawuldragon" version: "0.0.19" installs: 901 + rating: 0 + ratings: 0 author: "Humbanew Project" repo: "https://github.com/humbanew/flawuldragon" url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" diff --git a/themes/zaeri-dark.yaml b/themes/zaeri-dark.yaml new file mode 100644 index 00000000..fc5b3450 --- /dev/null +++ b/themes/zaeri-dark.yaml @@ -0,0 +1,52 @@ +name: "Zaeri Dark" +source: + marketplace_id: "xgr-development.zaeri" + version: "0.1.0" + installs: 318 + rating: 0 + ratings: 0 + author: "XGR Development" + repo: "https://github.com/XGR-Development/Zaeri-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xgr-development.zaeri" +colors: + bg: "#0E0E0E" + fg: "#EDA3FA" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E9C44E" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E9C44E" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 67 + black: 0 + red: 50.6 + green: 47 + yellow: 72.8 + blue: 52.4 + magenta: 56.2 + cyan: 71.7 + white: 33.3 + brightBlack: 0 + brightRed: 50.6 + brightGreen: 47 + brightYellow: 72.8 + brightBlue: 52.4 + brightMagenta: 56.2 + brightCyan: 71.7 + brightWhite: 60.2 diff --git a/themes/zaher-color-theme.yaml b/themes/zaher-color-theme.yaml index 734b9f8b..b7565750 100644 --- a/themes/zaher-color-theme.yaml +++ b/themes/zaher-color-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "special-one.zaher" version: "0.0.3" installs: 76 + rating: 5 + ratings: 1 author: "Alireza" repo: "https://github.com/alirezahastam/zaher" url: "https://marketplace.visualstudio.com/items?itemName=special-one.zaher" diff --git a/themes/zan.yaml b/themes/zan.yaml index b677b5a8..546b791e 100644 --- a/themes/zan.yaml +++ b/themes/zan.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "bjschwa2.zan" version: "0.0.4" installs: 783 + rating: 0 + ratings: 0 author: "bjschwa2" repo: "https://github.com/bjschwa2/Zan" url: "https://marketplace.visualstudio.com/items?itemName=bjschwa2.zan" diff --git a/themes/zandromeda.yaml b/themes/zandromeda.yaml new file mode 100644 index 00000000..f5c9c11f --- /dev/null +++ b/themes/zandromeda.yaml @@ -0,0 +1,52 @@ +name: "Zandromeda" +source: + marketplace_id: "tommalitz.zedromeda" + version: "0.0.23" + installs: 318 + rating: 0 + ratings: 0 + author: "tommalitz" + repo: "https://github.com/TomMalitz/zedromeda" + url: "https://marketplace.visualstudio.com/items?itemName=tommalitz.zedromeda" +colors: + bg: "#1E2025" + fg: "#F7F7F8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 100.5 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.3 + magenta: 28.6 + cyan: 46.4 + white: 88.9 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/zappts.yaml b/themes/zappts.yaml new file mode 100644 index 00000000..2f80c545 --- /dev/null +++ b/themes/zappts.yaml @@ -0,0 +1,52 @@ +name: "Zappts" +source: + marketplace_id: "ZapptsCodeTheme.zappts-theme" + version: "0.0.5" + installs: 206 + rating: 0 + ratings: 0 + author: "Zappts Code Theme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ZapptsCodeTheme.zappts-theme" +colors: + bg: "#222222" + fg: "#FFFFFF" + black: "#333333" + red: "#88BBFF" + green: "#FFDD44" + yellow: "#88CC44" + blue: "#88BBFF" + magenta: "#88BBFF" + cyan: "#BBA0FF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#88BBFF" + brightGreen: "#FFDD44" + brightYellow: "#88CC44" + brightBlue: "#88BBFF" + brightMagenta: "#88BBFF" + brightCyan: "#BBA0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 105.5 + black: 0 + red: 61.8 + green: 84.7 + yellow: 62.7 + blue: 61.8 + magenta: 61.8 + cyan: 56.7 + white: 105.5 + brightBlack: 20.6 + brightRed: 61.8 + brightGreen: 84.7 + brightYellow: 62.7 + brightBlue: 61.8 + brightMagenta: 61.8 + brightCyan: 56.7 + brightWhite: 105.5 diff --git a/themes/zbra-dark.yaml b/themes/zbra-dark.yaml index 4a31270f..06e12252 100644 --- a/themes/zbra-dark.yaml +++ b/themes/zbra-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zbra-dev.zbra-vs-code-theme" version: "0.0.2" installs: 123 + rating: 0 + ratings: 0 author: "ZBRA" repo: "https://github.com/zbra-solutions/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=zbra-dev.zbra-vs-code-theme" diff --git a/themes/zeal.yaml b/themes/zeal.yaml index 3efa45ee..2ea90c11 100644 --- a/themes/zeal.yaml +++ b/themes/zeal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "kqadem.zeal-theme" version: "1.1.0" installs: 2763 + rating: 0 + ratings: 0 author: "kq.adem" repo: "https://github.com/kqadem/zeal" url: "https://marketplace.visualstudio.com/items?itemName=kqadem.zeal-theme" diff --git a/themes/zednostheme-v1.yaml b/themes/zednostheme-v1.yaml index 22c69a8b..f4ad1d21 100644 --- a/themes/zednostheme-v1.yaml +++ b/themes/zednostheme-v1.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "GhostWithAHoodie.zednos-theme" version: "0.1.0" installs: 516 + rating: 0 + ratings: 0 author: "Ghost With A Hoodie" repo: "https://github.com/SilesterGold9/ZednosTheme" url: "https://marketplace.visualstudio.com/items?itemName=GhostWithAHoodie.zednos-theme" diff --git a/themes/zelda-dark.yaml b/themes/zelda-dark.yaml index cc412e11..37bdc837 100644 --- a/themes/zelda-dark.yaml +++ b/themes/zelda-dark.yaml @@ -2,7 +2,9 @@ name: "Zelda-Dark" source: marketplace_id: "KlausChamberlain.zelda" version: "0.0.1" - installs: 60 + installs: 61 + rating: 0 + ratings: 0 author: "Klaus Chamberlain" repo: null url: "https://marketplace.visualstudio.com/items?itemName=KlausChamberlain.zelda" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "green" hue: 178 + pair: null contrast: fg: 84.9 black: 0 diff --git a/themes/zelzea.yaml b/themes/zelzea.yaml index 6bd3cf13..192e446d 100644 --- a/themes/zelzea.yaml +++ b/themes/zelzea.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "hooriahic.zelzea" version: "0.2.0" installs: 387 + rating: 0 + ratings: 0 author: "hooriahic" repo: "https://github.com/HooriaHIC/zelzea" url: "https://marketplace.visualstudio.com/items?itemName=hooriahic.zelzea" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 88.6 black: 0 diff --git a/themes/zemarcolortheme.yaml b/themes/zemarcolortheme.yaml index e72ee6f7..0275b945 100644 --- a/themes/zemarcolortheme.yaml +++ b/themes/zemarcolortheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZColorTheme.ct" version: "0.0.1" installs: 106 + rating: 0 + ratings: 0 author: "ZColorTheme" repo: "https://github.com/ZacZemar/ZColorTheme" url: "https://marketplace.visualstudio.com/items?itemName=ZColorTheme.ct" diff --git a/themes/zemizer-grey.yaml b/themes/zemizer-grey.yaml index 101b1042..939c4b92 100644 --- a/themes/zemizer-grey.yaml +++ b/themes/zemizer-grey.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Kmzx.zemizer-theme" version: "1.0.1" installs: 118 + rating: 5 + ratings: 1 author: "ZeKmzx" repo: "https://github.com/mlaidouni/vsc.ext.zemizer.theme" url: "https://marketplace.visualstudio.com/items?itemName=Kmzx.zemizer-theme" diff --git a/themes/zen-dark.yaml b/themes/zen-dark.yaml index 8dbcf540..80211752 100644 --- a/themes/zen-dark.yaml +++ b/themes/zen-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cmion.zen-vscode-theme" version: "1.0.2" installs: 143 + rating: 5 + ratings: 1 author: "cmion" repo: "https://github.com/cmion/zen-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=cmion.zen-vscode-theme" diff --git a/themes/zen-mono.yaml b/themes/zen-mono.yaml index 57a0926d..a053d180 100644 --- a/themes/zen-mono.yaml +++ b/themes/zen-mono.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Noxire.midnight-themepack" version: "1.2.0" installs: 544 + rating: 0 + ratings: 0 author: "Noxire" repo: "https://github.com/Noxire-Hash/midnight-theme" url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" diff --git a/themes/zen-sakura-cherry-blossom.yaml b/themes/zen-sakura-cherry-blossom.yaml index 302772ad..a9066c20 100644 --- a/themes/zen-sakura-cherry-blossom.yaml +++ b/themes/zen-sakura-cherry-blossom.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cmion.zen-vscode-theme" version: "1.0.2" installs: 143 + rating: 5 + ratings: 1 author: "cmion" repo: "https://github.com/cmion/zen-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=cmion.zen-vscode-theme" diff --git a/themes/zen-theme.yaml b/themes/zen-theme.yaml index 59c2b0a6..ca30bf10 100644 --- a/themes/zen-theme.yaml +++ b/themes/zen-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "pzielinski.zen-theme" version: "0.0.6" installs: 27 + rating: 0 + ratings: 0 author: "Piotr Zieliński" repo: "https://github.com/piotrzielinski1994/vscode-zen-theme" url: "https://marketplace.visualstudio.com/items?itemName=pzielinski.zen-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: 275 + pair: null contrast: fg: 65.5 black: 0 diff --git a/themes/zen.yaml b/themes/zen.yaml index eefaf582..a29f5f79 100644 --- a/themes/zen.yaml +++ b/themes/zen.yaml @@ -2,7 +2,9 @@ name: "Zen" source: marketplace_id: "ZenTheme.zen-color-theme" version: "0.0.4" - installs: 372 + installs: 373 + rating: 0 + ratings: 0 author: "Zen Theme" repo: "https://github.com/vibovenkat123/zen_vscode" url: "https://marketplace.visualstudio.com/items?itemName=ZenTheme.zen-color-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 93.1 black: 0 diff --git a/themes/zenbones-dark-stark.yaml b/themes/zenbones-dark-stark.yaml index bb6ed202..d3710270 100644 --- a/themes/zenbones-dark-stark.yaml +++ b/themes/zenbones-dark-stark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-dark-warm.yaml b/themes/zenbones-dark-warm.yaml index 2ebda45f..3f678982 100644 --- a/themes/zenbones-dark-warm.yaml +++ b/themes/zenbones-dark-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-dark.yaml b/themes/zenbones-dark.yaml index e6c12809..727206cd 100644 --- a/themes/zenbones-dark.yaml +++ b/themes/zenbones-dark.yaml @@ -1,11 +1,13 @@ name: "Zenbones Dark" source: - marketplace_id: "rpbritton.zenbones" - version: "0.0.2" - installs: 2701 - author: "rpbritton" - repo: "https://github.com/rpbritton/zenbones.nvim" - url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + marketplace_id: "vinitkme.zenbones-redux" + version: "1.0.1" + installs: 9 + rating: 0 + ratings: 0 + author: "Gotchacode" + repo: "https://github.com/vinitkumar/zenbones" + url: "https://marketplace.visualstudio.com/items?itemName=vinitkme.zenbones-redux" colors: bg: "#1C1917" fg: "#B4BDC3" @@ -17,14 +19,14 @@ colors: magenta: "#B279A7" cyan: "#66A5AD" white: "#B4BDC3" - brightBlack: "#403833" + brightBlack: "#5B514A" brightRed: "#E8838F" brightGreen: "#8BAE68" brightYellow: "#D68C67" brightBlue: "#61ABDA" brightMagenta: "#CF86C1" brightCyan: "#65B8C1" - brightWhite: "#888F94" + brightWhite: "#C4CACF" meta: mode: "dark" accent: "red" @@ -40,11 +42,11 @@ meta: magenta: 39.1 cyan: 47 white: 64.8 - brightBlack: 0 + brightBlack: 14 brightRed: 50.2 brightGreen: 51.4 brightYellow: 48.6 brightBlue: 51.5 brightMagenta: 48.7 brightCyan: 55.9 - brightWhite: 40.3 + brightWhite: 72.7 diff --git a/themes/zenbones-duckbones-dark-stark.yaml b/themes/zenbones-duckbones-dark-stark.yaml index 456d2e24..6a0c8c79 100644 --- a/themes/zenbones-duckbones-dark-stark.yaml +++ b/themes/zenbones-duckbones-dark-stark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-duckbones-dark-warm.yaml b/themes/zenbones-duckbones-dark-warm.yaml index f3d12a49..9455c90d 100644 --- a/themes/zenbones-duckbones-dark-warm.yaml +++ b/themes/zenbones-duckbones-dark-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-duckbones-dark.yaml b/themes/zenbones-duckbones-dark.yaml index 06d6846b..fe4959ed 100644 --- a/themes/zenbones-duckbones-dark.yaml +++ b/themes/zenbones-duckbones-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-forestbones-dark-stark.yaml b/themes/zenbones-forestbones-dark-stark.yaml index 673bceea..9acb3f80 100644 --- a/themes/zenbones-forestbones-dark-stark.yaml +++ b/themes/zenbones-forestbones-dark-stark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-forestbones-dark-warm.yaml b/themes/zenbones-forestbones-dark-warm.yaml index 7ef1b45e..1b2097a4 100644 --- a/themes/zenbones-forestbones-dark-warm.yaml +++ b/themes/zenbones-forestbones-dark-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-forestbones-dark.yaml b/themes/zenbones-forestbones-dark.yaml index 51f75fde..efed4475 100644 --- a/themes/zenbones-forestbones-dark.yaml +++ b/themes/zenbones-forestbones-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-forestbones-light-bright.yaml b/themes/zenbones-forestbones-light-bright.yaml index 4b8c7633..6a76888b 100644 --- a/themes/zenbones-forestbones-light-bright.yaml +++ b/themes/zenbones-forestbones-light-bright.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-forestbones-light-dim.yaml b/themes/zenbones-forestbones-light-dim.yaml index 75b19bc0..b37235d9 100644 --- a/themes/zenbones-forestbones-light-dim.yaml +++ b/themes/zenbones-forestbones-light-dim.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-forestbones-light.yaml b/themes/zenbones-forestbones-light.yaml index ad869a31..29cd90ba 100644 --- a/themes/zenbones-forestbones-light.yaml +++ b/themes/zenbones-forestbones-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-kanagawabones-dark-stark.yaml b/themes/zenbones-kanagawabones-dark-stark.yaml index c9711576..cef2e72e 100644 --- a/themes/zenbones-kanagawabones-dark-stark.yaml +++ b/themes/zenbones-kanagawabones-dark-stark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-kanagawabones-dark-warm.yaml b/themes/zenbones-kanagawabones-dark-warm.yaml index 93e461d9..87c64791 100644 --- a/themes/zenbones-kanagawabones-dark-warm.yaml +++ b/themes/zenbones-kanagawabones-dark-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-kanagawabones-dark.yaml b/themes/zenbones-kanagawabones-dark.yaml index efd01258..1bb2eecb 100644 --- a/themes/zenbones-kanagawabones-dark.yaml +++ b/themes/zenbones-kanagawabones-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-light-bright.yaml b/themes/zenbones-light-bright.yaml index e1254f17..69f2331c 100644 --- a/themes/zenbones-light-bright.yaml +++ b/themes/zenbones-light-bright.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-light-dim.yaml b/themes/zenbones-light-dim.yaml index 2b84d1bb..7c14e1df 100644 --- a/themes/zenbones-light-dim.yaml +++ b/themes/zenbones-light-dim.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-light.yaml b/themes/zenbones-light.yaml index 156414ed..9243c890 100644 --- a/themes/zenbones-light.yaml +++ b/themes/zenbones-light.yaml @@ -1,30 +1,32 @@ name: "Zenbones Light" source: - marketplace_id: "rpbritton.zenbones" - version: "0.0.2" - installs: 2701 - author: "rpbritton" - repo: "https://github.com/rpbritton/zenbones.nvim" - url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + marketplace_id: "vinitkme.zenbones-redux" + version: "1.0.1" + installs: 9 + rating: 0 + ratings: 0 + author: "Gotchacode" + repo: "https://github.com/vinitkumar/zenbones" + url: "https://marketplace.visualstudio.com/items?itemName=vinitkme.zenbones-redux" colors: bg: "#F0EDEC" fg: "#2C363C" - black: "#F0EDEC" + black: "#2C363C" red: "#A8334C" green: "#4F6C31" yellow: "#944927" blue: "#286486" magenta: "#88507D" cyan: "#3B8992" - white: "#2C363C" - brightBlack: "#CFC1BA" + white: "#F0EDEC" + brightBlack: "#9B948F" brightRed: "#94253E" brightGreen: "#3F5A22" brightYellow: "#803D1C" brightBlue: "#1D5573" brightMagenta: "#7B3B70" brightCyan: "#2B747C" - brightWhite: "#4F5E68" + brightWhite: "#DEDAD8" meta: mode: "light" accent: "red" @@ -32,19 +34,19 @@ meta: pair: "Zenbones Dark" contrast: fg: 87.8 - black: 0 + black: 87.8 red: 70.8 green: 69.4 yellow: 71.3 blue: 71.4 magenta: 69.5 cyan: 57.2 - white: 87.8 - brightBlack: 21.6 + white: 0 + brightBlack: 46.2 brightRed: 76.5 brightGreen: 76.6 brightYellow: 77.1 brightBlue: 77.4 brightMagenta: 76.3 brightCyan: 66.3 - brightWhite: 72.7 + brightWhite: 8.5 diff --git a/themes/zenbones-neobones-dark-stark.yaml b/themes/zenbones-neobones-dark-stark.yaml index 0c6509ec..db831813 100644 --- a/themes/zenbones-neobones-dark-stark.yaml +++ b/themes/zenbones-neobones-dark-stark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-neobones-dark-warm.yaml b/themes/zenbones-neobones-dark-warm.yaml index 670fe873..7fcd0690 100644 --- a/themes/zenbones-neobones-dark-warm.yaml +++ b/themes/zenbones-neobones-dark-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-neobones-dark.yaml b/themes/zenbones-neobones-dark.yaml index 0bf5d2a4..1e23401c 100644 --- a/themes/zenbones-neobones-dark.yaml +++ b/themes/zenbones-neobones-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-neobones-light-bright.yaml b/themes/zenbones-neobones-light-bright.yaml index f2f60c37..7b3e1d4e 100644 --- a/themes/zenbones-neobones-light-bright.yaml +++ b/themes/zenbones-neobones-light-bright.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-neobones-light-dim.yaml b/themes/zenbones-neobones-light-dim.yaml index 3f198e1a..a7bbf123 100644 --- a/themes/zenbones-neobones-light-dim.yaml +++ b/themes/zenbones-neobones-light-dim.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-neobones-light.yaml b/themes/zenbones-neobones-light.yaml index dd2c1c83..538598de 100644 --- a/themes/zenbones-neobones-light.yaml +++ b/themes/zenbones-neobones-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-nordbones-dark-stark.yaml b/themes/zenbones-nordbones-dark-stark.yaml index 4a124988..d970334a 100644 --- a/themes/zenbones-nordbones-dark-stark.yaml +++ b/themes/zenbones-nordbones-dark-stark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-nordbones-dark-warm.yaml b/themes/zenbones-nordbones-dark-warm.yaml index 77546bf0..c18fdce0 100644 --- a/themes/zenbones-nordbones-dark-warm.yaml +++ b/themes/zenbones-nordbones-dark-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-nordbones-dark.yaml b/themes/zenbones-nordbones-dark.yaml index 54a18da4..7958017e 100644 --- a/themes/zenbones-nordbones-dark.yaml +++ b/themes/zenbones-nordbones-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-rosebones-dark-stark.yaml b/themes/zenbones-rosebones-dark-stark.yaml index bbe938b3..0b2dce35 100644 --- a/themes/zenbones-rosebones-dark-stark.yaml +++ b/themes/zenbones-rosebones-dark-stark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-rosebones-dark-warm.yaml b/themes/zenbones-rosebones-dark-warm.yaml index 6430d793..a62b8fb9 100644 --- a/themes/zenbones-rosebones-dark-warm.yaml +++ b/themes/zenbones-rosebones-dark-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-rosebones-dark.yaml b/themes/zenbones-rosebones-dark.yaml index dbff3d39..6f0d288b 100644 --- a/themes/zenbones-rosebones-dark.yaml +++ b/themes/zenbones-rosebones-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-rosebones-light-bright.yaml b/themes/zenbones-rosebones-light-bright.yaml index 979eb8ba..7d4e5b22 100644 --- a/themes/zenbones-rosebones-light-bright.yaml +++ b/themes/zenbones-rosebones-light-bright.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-rosebones-light-dim.yaml b/themes/zenbones-rosebones-light-dim.yaml index 10a6ba1a..60eb951b 100644 --- a/themes/zenbones-rosebones-light-dim.yaml +++ b/themes/zenbones-rosebones-light-dim.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-rosebones-light.yaml b/themes/zenbones-rosebones-light.yaml index 7c144641..e6205625 100644 --- a/themes/zenbones-rosebones-light.yaml +++ b/themes/zenbones-rosebones-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-seoulbones-dark-stark.yaml b/themes/zenbones-seoulbones-dark-stark.yaml index 9c2d1724..e29e43e5 100644 --- a/themes/zenbones-seoulbones-dark-stark.yaml +++ b/themes/zenbones-seoulbones-dark-stark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-seoulbones-dark-warm.yaml b/themes/zenbones-seoulbones-dark-warm.yaml index 8e7f0c2a..c988420b 100644 --- a/themes/zenbones-seoulbones-dark-warm.yaml +++ b/themes/zenbones-seoulbones-dark-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-seoulbones-dark.yaml b/themes/zenbones-seoulbones-dark.yaml index 5a8e8aa8..f4df103e 100644 --- a/themes/zenbones-seoulbones-dark.yaml +++ b/themes/zenbones-seoulbones-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-seoulbones-light-bright.yaml b/themes/zenbones-seoulbones-light-bright.yaml index c3ec7323..36da99da 100644 --- a/themes/zenbones-seoulbones-light-bright.yaml +++ b/themes/zenbones-seoulbones-light-bright.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-seoulbones-light-dim.yaml b/themes/zenbones-seoulbones-light-dim.yaml index a5d29452..a7d68db4 100644 --- a/themes/zenbones-seoulbones-light-dim.yaml +++ b/themes/zenbones-seoulbones-light-dim.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-seoulbones-light.yaml b/themes/zenbones-seoulbones-light.yaml index 6623bbf1..4da11ec6 100644 --- a/themes/zenbones-seoulbones-light.yaml +++ b/themes/zenbones-seoulbones-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-tokyobones-dark-stark.yaml b/themes/zenbones-tokyobones-dark-stark.yaml index 86bc4fe7..6e6b0a98 100644 --- a/themes/zenbones-tokyobones-dark-stark.yaml +++ b/themes/zenbones-tokyobones-dark-stark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-tokyobones-dark-warm.yaml b/themes/zenbones-tokyobones-dark-warm.yaml index bfe2bcd8..8f9b1fa1 100644 --- a/themes/zenbones-tokyobones-dark-warm.yaml +++ b/themes/zenbones-tokyobones-dark-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-tokyobones-dark.yaml b/themes/zenbones-tokyobones-dark.yaml index de489075..85337e6a 100644 --- a/themes/zenbones-tokyobones-dark.yaml +++ b/themes/zenbones-tokyobones-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-tokyobones-light-bright.yaml b/themes/zenbones-tokyobones-light-bright.yaml index c41c630a..2f24ff0a 100644 --- a/themes/zenbones-tokyobones-light-bright.yaml +++ b/themes/zenbones-tokyobones-light-bright.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-tokyobones-light-dim.yaml b/themes/zenbones-tokyobones-light-dim.yaml index 233c0825..12c72db6 100644 --- a/themes/zenbones-tokyobones-light-dim.yaml +++ b/themes/zenbones-tokyobones-light-dim.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-tokyobones-light.yaml b/themes/zenbones-tokyobones-light.yaml index 0aec3a50..4a7184b4 100644 --- a/themes/zenbones-tokyobones-light.yaml +++ b/themes/zenbones-tokyobones-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-vimbones-light-bright.yaml b/themes/zenbones-vimbones-light-bright.yaml index c5ab0ccc..7acef05f 100644 --- a/themes/zenbones-vimbones-light-bright.yaml +++ b/themes/zenbones-vimbones-light-bright.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-vimbones-light-dim.yaml b/themes/zenbones-vimbones-light-dim.yaml index 56aad4b1..ea7204c1 100644 --- a/themes/zenbones-vimbones-light-dim.yaml +++ b/themes/zenbones-vimbones-light-dim.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-vimbones-light.yaml b/themes/zenbones-vimbones-light.yaml index e09e3225..e88f5cda 100644 --- a/themes/zenbones-vimbones-light.yaml +++ b/themes/zenbones-vimbones-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-zenburned-dark-stark.yaml b/themes/zenbones-zenburned-dark-stark.yaml index 1f116521..1971a036 100644 --- a/themes/zenbones-zenburned-dark-stark.yaml +++ b/themes/zenbones-zenburned-dark-stark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-zenburned-dark-warm.yaml b/themes/zenbones-zenburned-dark-warm.yaml index 65d92d09..68dae570 100644 --- a/themes/zenbones-zenburned-dark-warm.yaml +++ b/themes/zenbones-zenburned-dark-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-zenburned-dark.yaml b/themes/zenbones-zenburned-dark.yaml index 5b49e7bf..e1522c5e 100644 --- a/themes/zenbones-zenburned-dark.yaml +++ b/themes/zenbones-zenburned-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-zenwritten-dark-stark.yaml b/themes/zenbones-zenwritten-dark-stark.yaml index 77819f86..5fce5d61 100644 --- a/themes/zenbones-zenwritten-dark-stark.yaml +++ b/themes/zenbones-zenwritten-dark-stark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-zenwritten-dark-warm.yaml b/themes/zenbones-zenwritten-dark-warm.yaml index 443053f5..95674c27 100644 --- a/themes/zenbones-zenwritten-dark-warm.yaml +++ b/themes/zenbones-zenwritten-dark-warm.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-zenwritten-dark.yaml b/themes/zenbones-zenwritten-dark.yaml index 6b81df9b..1eb646a7 100644 --- a/themes/zenbones-zenwritten-dark.yaml +++ b/themes/zenbones-zenwritten-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-zenwritten-light-bright.yaml b/themes/zenbones-zenwritten-light-bright.yaml index 20a6633e..7324b3ab 100644 --- a/themes/zenbones-zenwritten-light-bright.yaml +++ b/themes/zenbones-zenwritten-light-bright.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-zenwritten-light-dim.yaml b/themes/zenbones-zenwritten-light-dim.yaml index 1bf3af1d..d920468f 100644 --- a/themes/zenbones-zenwritten-light-dim.yaml +++ b/themes/zenbones-zenwritten-light-dim.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbones-zenwritten-light.yaml b/themes/zenbones-zenwritten-light.yaml index 11a9838e..691835ae 100644 --- a/themes/zenbones-zenwritten-light.yaml +++ b/themes/zenbones-zenwritten-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "rpbritton.zenbones" version: "0.0.2" installs: 2701 + rating: 5 + ratings: 3 author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" diff --git a/themes/zenbook-ux534ftc-white-gold-v1-full-dark.yaml b/themes/zenbook-ux534ftc-white-gold-v1-full-dark.yaml index 75d381b5..3af69e61 100644 --- a/themes/zenbook-ux534ftc-white-gold-v1-full-dark.yaml +++ b/themes/zenbook-ux534ftc-white-gold-v1-full-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ELITENOTORIOUSTHEPRESTIGIOUS.zenbook-ux534ftc-white-gold-v2" version: "2.2.35" installs: 492 + rating: 0 + ratings: 0 author: "ELITE NOTORIOUS THE PRESTIGIOUS" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ELITENOTORIOUSTHEPRESTIGIOUS.zenbook-ux534ftc-white-gold-v2" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/zenbook-ux534ftc-white-gold-v2-1-95.yaml b/themes/zenbook-ux534ftc-white-gold-v2-1-95.yaml index 74dfed6a..11a0694f 100644 --- a/themes/zenbook-ux534ftc-white-gold-v2-1-95.yaml +++ b/themes/zenbook-ux534ftc-white-gold-v2-1-95.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ELITENOTORIOUSTHEPRESTIGIOUS.zenbook-ux534ftc-white-gold-v2" version: "2.2.35" installs: 492 + rating: 0 + ratings: 0 author: "ELITE NOTORIOUS THE PRESTIGIOUS" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ELITENOTORIOUSTHEPRESTIGIOUS.zenbook-ux534ftc-white-gold-v2" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 86.7 black: 86.7 diff --git a/themes/zenburn.yaml b/themes/zenburn.yaml index 1086176b..a11b7676 100644 --- a/themes/zenburn.yaml +++ b/themes/zenburn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "swashata.beautiful-ui" version: "1.7.0" installs: 121108 + rating: 4.38 + ratings: 13 author: "swashata" repo: "https://github.com/swashata/vscode-beautiful-ui" url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" diff --git a/themes/zene-dark-theme.yaml b/themes/zene-dark-theme.yaml index 0315532a..3b821387 100644 --- a/themes/zene-dark-theme.yaml +++ b/themes/zene-dark-theme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MehdiTalalha.zene-theme" version: "3.1.0" installs: 37 + rating: 5 + ratings: 1 author: "Mehdi Talalha" repo: "https://github.com/mehdi1-T/ZENE-vscode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=MehdiTalalha.zene-theme" diff --git a/themes/zene-light-theme.yaml b/themes/zene-light-theme.yaml new file mode 100644 index 00000000..de71e6bd --- /dev/null +++ b/themes/zene-light-theme.yaml @@ -0,0 +1,52 @@ +name: "Zene Light Theme" +source: + marketplace_id: "MehdiTalalha.zene-theme" + version: "3.1.0" + installs: 37 + rating: 5 + ratings: 1 + author: "Mehdi Talalha" + repo: "https://github.com/mehdi1-T/ZENE-vscode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MehdiTalalha.zene-theme" +colors: + bg: "#E6E7ED" + fg: "#343B59" + black: "#343B58" + red: "#8C4351" + green: "#33635C" + yellow: "#8F5E15" + blue: "#2959AA" + magenta: "#7B43BA" + cyan: "#006C86" + white: "#707280" + brightBlack: "#343B58" + brightRed: "#8C4351" + brightGreen: "#33635C" + brightYellow: "#8F5E15" + brightBlue: "#2959AA" + brightMagenta: "#7B43BA" + brightCyan: "#006C86" + brightWhite: "#707280" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Zene Dark Theme" + contrast: + fg: 81.3 + black: 81.3 + red: 69.5 + green: 69.4 + yellow: 63.5 + blue: 68.9 + magenta: 66.6 + cyan: 65.5 + white: 59 + brightBlack: 81.3 + brightRed: 69.5 + brightGreen: 69.4 + brightYellow: 63.5 + brightBlue: 68.9 + brightMagenta: 66.6 + brightCyan: 65.5 + brightWhite: 59 diff --git a/themes/zeneth.yaml b/themes/zeneth.yaml index 51287eb9..76a63a1d 100644 --- a/themes/zeneth.yaml +++ b/themes/zeneth.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "edan-m.theme-zeneth" version: "1.0.1" installs: 26 + rating: 0 + ratings: 0 author: "Edan M." repo: "https://github.com/edanick/zeneth" url: "https://marketplace.visualstudio.com/items?itemName=edan-m.theme-zeneth" diff --git a/themes/zenflow-noir.yaml b/themes/zenflow-noir.yaml index cb2ede83..4a2a95db 100644 --- a/themes/zenflow-noir.yaml +++ b/themes/zenflow-noir.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Demise.zenflow" version: "0.0.2" installs: 122 + rating: 0 + ratings: 0 author: "Demise" repo: "https://github.com/Demiserular/Zenflow--vsTheme" url: "https://marketplace.visualstudio.com/items?itemName=Demise.zenflow" diff --git a/themes/zenith-aurora.yaml b/themes/zenith-aurora.yaml index 8f7c5679..58da0e43 100644 --- a/themes/zenith-aurora.yaml +++ b/themes/zenith-aurora.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" installs: 109 + rating: 5 + ratings: 1 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" diff --git a/themes/zenith-dawn.yaml b/themes/zenith-dawn.yaml index c2b137fb..9bf30de8 100644 --- a/themes/zenith-dawn.yaml +++ b/themes/zenith-dawn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" installs: 109 + rating: 5 + ratings: 1 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" diff --git a/themes/zenith-dusk.yaml b/themes/zenith-dusk.yaml index 416b7951..c85970cd 100644 --- a/themes/zenith-dusk.yaml +++ b/themes/zenith-dusk.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" installs: 109 + rating: 5 + ratings: 1 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" diff --git a/themes/zenith-forest.yaml b/themes/zenith-forest.yaml index 3e48fd4a..5ce3e89e 100644 --- a/themes/zenith-forest.yaml +++ b/themes/zenith-forest.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" installs: 109 + rating: 5 + ratings: 1 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" diff --git a/themes/zenith-midnight.yaml b/themes/zenith-midnight.yaml index 9f72b9ae..f045dc88 100644 --- a/themes/zenith-midnight.yaml +++ b/themes/zenith-midnight.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" installs: 109 + rating: 5 + ratings: 1 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" diff --git a/themes/zenith-neutral.yaml b/themes/zenith-neutral.yaml index f8d851ec..8162bb5b 100644 --- a/themes/zenith-neutral.yaml +++ b/themes/zenith-neutral.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "britown.vscode-theme-zenith" version: "0.0.23" installs: 578 + rating: 5 + ratings: 1 author: "Britown" repo: "https://github.com/bkuzmanoski/vscode-theme-zenith" url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-zenith" diff --git a/themes/zenith-ocean.yaml b/themes/zenith-ocean.yaml index 94a9ceb9..a3322811 100644 --- a/themes/zenith-ocean.yaml +++ b/themes/zenith-ocean.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" installs: 109 + rating: 5 + ratings: 1 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" diff --git a/themes/zenith-ros.yaml b/themes/zenith-ros.yaml index 0b380391..bdaa0522 100644 --- a/themes/zenith-ros.yaml +++ b/themes/zenith-ros.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" installs: 109 + rating: 5 + ratings: 1 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" diff --git a/themes/zenith-zen.yaml b/themes/zenith-zen.yaml index 8d957026..4c8ddacc 100644 --- a/themes/zenith-zen.yaml +++ b/themes/zenith-zen.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "TheSamonide.zenith-theme" version: "6.0.3" installs: 109 + rating: 5 + ratings: 1 author: "Samonide" repo: "https://github.com/samonide/zenith-vsc" url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" diff --git a/themes/zenith.yaml b/themes/zenith.yaml index 550cb835..b67e8baf 100644 --- a/themes/zenith.yaml +++ b/themes/zenith.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "britown.vscode-theme-zenith" version: "0.0.23" installs: 578 + rating: 5 + ratings: 1 author: "Britown" repo: "https://github.com/bkuzmanoski/vscode-theme-zenith" url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-zenith" diff --git a/themes/zenitria-amoled.yaml b/themes/zenitria-amoled.yaml index be0bb84d..bb94c420 100644 --- a/themes/zenitria-amoled.yaml +++ b/themes/zenitria-amoled.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Zenitria.zenitria-amoled" version: "1.0.2" installs: 2553 + rating: 0 + ratings: 0 author: "Zenitria" repo: "https://github.com/Zenitria/zenitria-amoled-vsc" url: "https://marketplace.visualstudio.com/items?itemName=Zenitria.zenitria-amoled" diff --git a/themes/zenml.yaml b/themes/zenml.yaml index 41ec171b..4178e42b 100644 --- a/themes/zenml.yaml +++ b/themes/zenml.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zenml-io.zenml-tutorial" version: "0.1.6" installs: 261 + rating: 0 + ratings: 0 author: "zenml-io" repo: "https://github.com/zenml-io/vscode-tutorial-extension" url: "https://marketplace.visualstudio.com/items?itemName=zenml-io.zenml-tutorial" @@ -29,6 +31,7 @@ meta: mode: "light" accent: "magenta" hue: null + pair: null contrast: fg: 103.9 black: 106 diff --git a/themes/zero-s-solarized.yaml b/themes/zero-s-solarized.yaml index a2fa229c..f5d9ce06 100644 --- a/themes/zero-s-solarized.yaml +++ b/themes/zero-s-solarized.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "JavierdeMarco.zerossolarized" version: "0.0.1" installs: 82 + rating: 0 + ratings: 0 author: "Javier de Marco" repo: "https://github.com/javierdemarco/zerossolarized" url: "https://marketplace.visualstudio.com/items?itemName=JavierdeMarco.zerossolarized" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/zero-wip.yaml b/themes/zero-wip.yaml index 4b77c064..3e49768d 100644 --- a/themes/zero-wip.yaml +++ b/themes/zero-wip.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Valkyrihane.zero" version: "0.0.1" installs: 1481 + rating: 5 + ratings: 1 author: "Valkyrihane" repo: "https://github.com/Valkyrihane/zero" url: "https://marketplace.visualstudio.com/items?itemName=Valkyrihane.zero" diff --git a/themes/zeus-turquoise.yaml b/themes/zeus-turquoise.yaml index b8678ba9..85560a96 100644 --- a/themes/zeus-turquoise.yaml +++ b/themes/zeus-turquoise.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "UllasKunder.zeus-vscode-theme" version: "0.0.1" installs: 696 + rating: 4 + ratings: 1 author: "Ullas Kunder" repo: "https://github.com/ullaskunder3/zeus-theme" url: "https://marketplace.visualstudio.com/items?itemName=UllasKunder.zeus-vscode-theme" diff --git a/themes/zeus-yelo.yaml b/themes/zeus-yelo.yaml index 473ecaa2..2ff7510a 100644 --- a/themes/zeus-yelo.yaml +++ b/themes/zeus-yelo.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "UllasKunder.zeus-vscode-theme" version: "0.0.1" installs: 696 + rating: 4 + ratings: 1 author: "Ullas Kunder" repo: "https://github.com/ullaskunder3/zeus-theme" url: "https://marketplace.visualstudio.com/items?itemName=UllasKunder.zeus-vscode-theme" diff --git a/themes/zhongli.yaml b/themes/zhongli.yaml index c9f8fdf8..a96db5c1 100644 --- a/themes/zhongli.yaml +++ b/themes/zhongli.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jeooo.lapis-dei" version: "1.0.1" installs: 1686 + rating: 5 + ratings: 1 author: "jeooo`" repo: "https://github.com/jeoooo/zhongli-theme" url: "https://marketplace.visualstudio.com/items?itemName=jeooo.lapis-dei" diff --git a/themes/zhxo-lt.yaml b/themes/zhxo-lt.yaml index ab9b043e..bc4bc0c3 100644 --- a/themes/zhxo-lt.yaml +++ b/themes/zhxo-lt.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shwuy.zhxo-themes" version: "2.0.1" installs: 1481 + rating: 5 + ratings: 4 author: "shwuy" repo: "https://github.com/sxhk0/.theme" url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" diff --git a/themes/zhxo-red.yaml b/themes/zhxo-red.yaml new file mode 100644 index 00000000..b4c32a02 --- /dev/null +++ b/themes/zhxo-red.yaml @@ -0,0 +1,52 @@ +name: "zhxo'red" +source: + marketplace_id: "shwuy.zhxo-themes" + version: "2.0.1" + installs: 1481 + rating: 5 + ratings: 4 + author: "shwuy" + repo: "https://github.com/sxhk0/.theme" + url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" +colors: + bg: "#1A1A1D" + fg: "#ABABAB" + black: "#3B3B3B" + red: "#E03C3C" + green: "#22CD8B" + yellow: "#EEC051" + blue: "#668BE2" + magenta: "#A34BB0" + cyan: "#10CCD5" + white: "#CBCBCB" + brightBlack: "#66676F" + brightRed: "#F08359" + brightGreen: "#3FE6A3" + brightYellow: "#FBFB7B" + brightBlue: "#81A6FD" + brightMagenta: "#C970D6" + brightCyan: "#4DEAEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 55.4 + black: 0 + red: 31.9 + green: 61.2 + yellow: 70.9 + blue: 40.1 + magenta: 26.2 + cyan: 63.5 + white: 73.7 + brightBlack: 22.3 + brightRed: 50.3 + brightGreen: 74.7 + brightYellow: 99.7 + brightBlue: 53.8 + brightMagenta: 42.8 + brightCyan: 80 + brightWhite: 106.5 diff --git a/themes/zhxo-st.yaml b/themes/zhxo-st.yaml index bfddaf5a..9f03e4e5 100644 --- a/themes/zhxo-st.yaml +++ b/themes/zhxo-st.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shwuy.zhxo-themes" version: "2.0.1" installs: 1481 + rating: 5 + ratings: 4 author: "shwuy" repo: "https://github.com/sxhk0/.theme" url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" diff --git a/themes/zhxo-yll.yaml b/themes/zhxo-yll.yaml index d02bc215..cb494f97 100644 --- a/themes/zhxo-yll.yaml +++ b/themes/zhxo-yll.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "shwuy.zhxo-themes" version: "2.0.1" installs: 1481 + rating: 5 + ratings: 4 author: "shwuy" repo: "https://github.com/sxhk0/.theme" url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" diff --git a/themes/zinc.yaml b/themes/zinc.yaml index 76182ebc..aec249c5 100644 --- a/themes/zinc.yaml +++ b/themes/zinc.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "MadsSR.zinc-theme" version: "0.0.11" installs: 265 + rating: 0 + ratings: 0 author: "MadsSR" repo: "https://github.com/MadsSR/zinc-theme" url: "https://marketplace.visualstudio.com/items?itemName=MadsSR.zinc-theme" diff --git a/themes/zokugun-obsidium.yaml b/themes/zokugun-obsidium.yaml index a2d8dafb..b6a08149 100644 --- a/themes/zokugun-obsidium.yaml +++ b/themes/zokugun-obsidium.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zokugun.zokugun-theme" version: "0.6.2" installs: 1909 + rating: 0 + ratings: 0 author: "zokugun" repo: "https://github.com/zokugun/theme-zokugun-vscode" url: "https://marketplace.visualstudio.com/items?itemName=zokugun.zokugun-theme" diff --git a/themes/zora-mirage-green.yaml b/themes/zora-mirage-green.yaml new file mode 100644 index 00000000..203b98f1 --- /dev/null +++ b/themes/zora-mirage-green.yaml @@ -0,0 +1,52 @@ +name: "Zora Mirage Green" +source: + marketplace_id: "haris.zoradark" + version: "0.7.0" + installs: 171 + rating: 0 + ratings: 0 + author: "haris" + repo: "https://github.com/Elhary/Zora" + url: "https://marketplace.visualstudio.com/items?itemName=haris.zoradark" +colors: + bg: "#1D2B2C" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 202 + pair: null + contrast: + fg: 76.9 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83.1 + blue: 24.9 + magenta: 27.2 + cyan: 45 + white: 87.5 + brightBlack: 19.5 + brightRed: 36 + brightGreen: 61 + brightYellow: 93.1 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.5 diff --git a/themes/zora-mirage.yaml b/themes/zora-mirage.yaml new file mode 100644 index 00000000..760cf5a3 --- /dev/null +++ b/themes/zora-mirage.yaml @@ -0,0 +1,52 @@ +name: "Zora Mirage" +source: + marketplace_id: "haris.zoradark" + version: "0.7.0" + installs: 171 + rating: 0 + ratings: 0 + author: "haris" + repo: "https://github.com/Elhary/Zora" + url: "https://marketplace.visualstudio.com/items?itemName=haris.zoradark" +colors: + bg: "#1A1A1A" + fg: "#D4D4D4" + black: "#F2EAEA" + red: "#CD3131" + green: "#0DBC79" + yellow: "#F7D44C" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#CFB344" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.2 + black: 94 + red: 26.4 + green: 52.7 + yellow: 80.7 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 60.9 + brightBlue: 39.7 + brightMagenta: 45 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/zoradark.yaml b/themes/zoradark.yaml new file mode 100644 index 00000000..39049096 --- /dev/null +++ b/themes/zoradark.yaml @@ -0,0 +1,52 @@ +name: "ZoraDark" +source: + marketplace_id: "haris.zoradark" + version: "0.7.0" + installs: 171 + rating: 0 + ratings: 0 + author: "haris" + repo: "https://github.com/Elhary/Zora" + url: "https://marketplace.visualstudio.com/items?itemName=haris.zoradark" +colors: + bg: "#211C2A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 301 + pair: null + contrast: + fg: 78.6 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.7 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/zordon-colors.yaml b/themes/zordon-colors.yaml index 75f421d8..819ac380 100644 --- a/themes/zordon-colors.yaml +++ b/themes/zordon-colors.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zordon.zordon-color-theme" version: "1.9.0" installs: 332 + rating: 0 + ratings: 0 author: "zordon" repo: "https://github.com/chrisAndriotti/Zordon-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=zordon.zordon-color-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 82 black: 0 diff --git a/themes/zoren-breeze.yaml b/themes/zoren-breeze.yaml index aa6a3a17..2f88c2b3 100644 --- a/themes/zoren-breeze.yaml +++ b/themes/zoren-breeze.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "viniciuslazzari.zoren" version: "1.3.1" installs: 83 + rating: 5 + ratings: 1 author: "viniciuslazzari" repo: "https://github.com/viniciuslaz/zoren-theme" url: "https://marketplace.visualstudio.com/items?itemName=viniciuslazzari.zoren" diff --git a/themes/ztheme.yaml b/themes/ztheme.yaml index 1a6a3dd0..8a7a9bea 100644 --- a/themes/ztheme.yaml +++ b/themes/ztheme.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "cycscarlos.my-own-theme" version: "1.0.0" installs: 6 + rating: 0 + ratings: 0 author: "Carlos Colmenares Álvarez" repo: "https://github.com/cycscarlos/myTheme-VSC" url: "https://marketplace.visualstudio.com/items?itemName=cycscarlos.my-own-theme" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "teal" hue: 244 + pair: null contrast: fg: 102 black: 0 diff --git a/themes/ztok.yaml b/themes/ztok.yaml index 944511be..574c6cb7 100644 --- a/themes/ztok.yaml +++ b/themes/ztok.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "KrlosDev.ztok" version: "1.0.5" installs: 886 + rating: 5 + ratings: 1 author: "KrlosDev" repo: "https://github.com/KrlosDev/ztok" url: "https://marketplace.visualstudio.com/items?itemName=KrlosDev.ztok" diff --git a/themes/zunda-dark.yaml b/themes/zunda-dark.yaml index 78c0d7a4..4b80c811 100644 --- a/themes/zunda-dark.yaml +++ b/themes/zunda-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "Matcha.zunda" version: "0.0.9" installs: 385 + rating: 0 + ratings: 0 author: "Matcha" repo: "https://github.com/MatchaScript/zunda" url: "https://marketplace.visualstudio.com/items?itemName=Matcha.zunda" @@ -29,6 +31,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.8 black: 0 diff --git a/themes/zux-purple-minimal.yaml b/themes/zux-purple-minimal.yaml index b9b07076..1fc5f1b0 100644 --- a/themes/zux-purple-minimal.yaml +++ b/themes/zux-purple-minimal.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "giovanicavila.zux" version: "0.0.6" installs: 28 + rating: 0 + ratings: 0 author: "Giovani Avila" repo: null url: "https://marketplace.visualstudio.com/items?itemName=giovanicavila.zux" diff --git a/themes/zwel.yaml b/themes/zwel.yaml index 7164e3b6..a33c679e 100644 --- a/themes/zwel.yaml +++ b/themes/zwel.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "ZweL.zwel" version: "0.0.3" installs: 63 + rating: 4 + ratings: 1 author: "ZweL" repo: "https://github.com/zwelhtetyan/ZweL-theme" url: "https://marketplace.visualstudio.com/items?itemName=ZweL.zwel" diff --git a/themes/zxxn.yaml b/themes/zxxn.yaml index 0a81cba6..c8b991f2 100644 --- a/themes/zxxn.yaml +++ b/themes/zxxn.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "aki4003.zxxn-theme" version: "1.0.5" installs: 43 + rating: 0 + ratings: 0 author: "aki4003" repo: null url: "https://marketplace.visualstudio.com/items?itemName=aki4003.zxxn-theme" diff --git a/themes/zygomatic-blue.yaml b/themes/zygomatic-blue.yaml index f79185a8..fef0c32e 100644 --- a/themes/zygomatic-blue.yaml +++ b/themes/zygomatic-blue.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "jugal13.zygoma" version: "0.2.3" installs: 164 + rating: 0 + ratings: 0 author: "Jugal" repo: "https://github.com/jugal13/zygomatic-themes" url: "https://marketplace.visualstudio.com/items?itemName=jugal13.zygoma" diff --git a/themes/zyrotec.yaml b/themes/zyrotec.yaml index b1ca5d9f..6bf326cf 100644 --- a/themes/zyrotec.yaml +++ b/themes/zyrotec.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "zyrotec.zyrotec-theme" version: "0.0.1" installs: 33 + rating: 0 + ratings: 0 author: "zyrotec" repo: null url: "https://marketplace.visualstudio.com/items?itemName=zyrotec.zyrotec-theme" diff --git a/themes/zzc-dark.yaml b/themes/zzc-dark.yaml new file mode 100644 index 00000000..2c736054 --- /dev/null +++ b/themes/zzc-dark.yaml @@ -0,0 +1,52 @@ +name: "zzc (dark)" +source: + marketplace_id: "zicong-zhang1996.theme-zzc-diy" + version: "7.2.1" + installs: 86 + rating: 0 + ratings: 0 + author: "zicong-zhang1996" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=zicong-zhang1996.theme-zzc-diy" +colors: + bg: "#282C34" + fg: "#000000" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#EEE8D5" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 0 + black: 0 + red: 26.9 + green: 38.5 + yellow: 38.5 + blue: 33.5 + magenta: 27.2 + cyan: 39.2 + white: 88.7 + brightBlack: 20.7 + brightRed: 26.4 + brightGreen: 20.7 + brightYellow: 26.5 + brightBlue: 38.8 + brightMagenta: 27.2 + brightCyan: 45.7 + brightWhite: 88.7 diff --git a/themes/zzc-light.yaml b/themes/zzc-light.yaml new file mode 100644 index 00000000..7db693fb --- /dev/null +++ b/themes/zzc-light.yaml @@ -0,0 +1,52 @@ +name: "zzc (light)" +source: + marketplace_id: "zicong-zhang1996.theme-zzc-diy" + version: "7.2.1" + installs: 86 + rating: 0 + ratings: 0 + author: "zicong-zhang1996" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=zicong-zhang1996.theme-zzc-diy" +colors: + bg: "#FBE7D0" + fg: "#000000" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#EEE8D5" +meta: + mode: "light" + accent: "orange" + hue: 71 + pair: null + contrast: + fg: 93.6 + black: 86.5 + red: 58 + green: 46.6 + yellow: 46.6 + blue: 51.5 + magenta: 57.8 + cyan: 45.8 + white: 0 + brightBlack: 64.3 + brightRed: 58.6 + brightGreen: 64.3 + brightYellow: 58.4 + brightBlue: 46.3 + brightMagenta: 57.8 + brightCyan: 39.5 + brightWhite: 0 diff --git a/themes/zzhtheme-dark.yaml b/themes/zzhtheme-dark.yaml index fe708a23..5362ec9d 100644 --- a/themes/zzhtheme-dark.yaml +++ b/themes/zzhtheme-dark.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "langlang.zzh-theme" version: "3.5.8" installs: 249 + rating: 5 + ratings: 1 author: "langlang" repo: "https://github.com/zhaogongchengsi/zzh-vs-theme" url: "https://marketplace.visualstudio.com/items?itemName=langlang.zzh-theme" diff --git a/themes/zzhtheme-light.yaml b/themes/zzhtheme-light.yaml index 851e221d..54082d31 100644 --- a/themes/zzhtheme-light.yaml +++ b/themes/zzhtheme-light.yaml @@ -3,6 +3,8 @@ source: marketplace_id: "langlang.zzh-theme" version: "3.5.8" installs: 249 + rating: 5 + ratings: 1 author: "langlang" repo: "https://github.com/zhaogongchengsi/zzh-vs-theme" url: "https://marketplace.visualstudio.com/items?itemName=langlang.zzh-theme" From 9fd592a866ba2376e7fef81f4cd48b62ae6aa9f1 Mon Sep 17 00:00:00 2001 From: Ismael Canal Date: Thu, 19 Mar 2026 20:45:33 +0100 Subject: [PATCH 09/21] New round of metadata themes --- cli/src/theme-schema.ts | 16 +- scripts/scrape-themes.ts | 30 +- themes/07-dark.yaml | 1 + themes/07-light.yaml | 1 + themes/0a515-dark.yaml | 1 + themes/0x96f-theme.yaml | 1 + themes/1.yaml | 52 - themes/10004ok-dark.yaml | 52 - themes/10x-dark-theme.yaml | 4 + themes/1977.yaml | 3 +- themes/1989.yaml | 1 + themes/19th-century.yaml | 1 + themes/1dark-poncho-hc.yaml | 52 - themes/1mm-dracula.yaml | 52 - themes/2-colors.yaml | 1 + themes/2077.yaml | 1 + themes/24.yaml | 1 + themes/25-blue.yaml | 3 + themes/2am.yaml | 1 + themes/365-6-coder-theme.yaml | 3 +- themes/365-day-october-dark.yaml | 52 - themes/3xay.yaml | 1 + themes/4-colours.yaml | 3 +- themes/404-flat.yaml | 1 + themes/404-muted.yaml | 3 + themes/42nd.yaml | 52 - themes/4am-session-aqua.yaml | 1 + themes/4am-session-blue.yaml | 1 + themes/4am-session-green.yaml | 1 + themes/4am-session-orange.yaml | 1 + themes/4am-session-red.yaml | 1 + themes/4am-session-yellow.yaml | 1 + themes/6szn.yaml | 52 - themes/73nko-dark.yaml | 3 + themes/73nko-light.yaml | 3 + themes/7lou-theme.yaml | 1 + themes/8-bit-dark.yaml | 52 - themes/8-bit-light-high-contrast.yaml | 52 - themes/8-bit-light.yaml | 52 - themes/8-bit-theme.yaml | 1 + themes/80-neon-vibes-fluor.yaml | 1 + themes/80-neon-vibes.yaml | 1 + themes/808s-heartbreak-theme.yaml | 1 + themes/8v.yaml | 1 + themes/8x8-dark-fork.yaml | 52 - themes/8x8-darker.yaml | 52 - themes/8x8-fork.yaml | 52 - themes/9-way-ticket.yaml | 1 + themes/90s-digital-dawning.yaml | 1 + themes/a-2-theme.yaml | 1 + themes/a-cup-of-coffee.yaml | 1 + themes/a-github-dark-dimmed-1-red.yaml | 52 - themes/a-github-dark-dimmed-2-orange.yaml | 52 - themes/a-github-dark-dimmed-3-green.yaml | 52 - themes/a-github-dark-dimmed-4-blue.yaml | 52 - themes/a-github-dark-dimmed-5-purple.yaml | 52 - themes/a-github-dark-dimmed-brown.yaml | 52 - themes/a-github-dark-dimmed-muted.yaml | 52 - themes/a-github-dark-dimmed-vampire.yaml | 52 - themes/a-github-dark-high-contrast-1-red.yaml | 52 - .../a-github-dark-high-contrast-2-orange.yaml | 52 - .../a-github-dark-high-contrast-3-green.yaml | 52 - .../a-github-dark-high-contrast-4-blue.yaml | 52 - .../a-github-dark-high-contrast-5-purple.yaml | 52 - themes/a-github-dark-muted.yaml | 52 - themes/a-github-dark-vampire.yaml | 52 - themes/a-github-light-1-red.yaml | 52 - themes/a-github-light-2-orange.yaml | 52 - themes/a-github-light-3-green.yaml | 52 - themes/a-github-light-4-blue.yaml | 52 - themes/a-github-light-5-purple.yaml | 52 - themes/a-green-cat-dimmed.yaml | 1 + themes/a-green-cat.yaml | 1 + themes/a-j-light.yaml | 52 - themes/aauu.yaml | 1 + themes/ab-dark.yaml | 1 + themes/abcdef.yaml | 1 + themes/abe-land.yaml | 1 + themes/abissal.yaml | 1 + themes/aboc.yaml | 1 + themes/abolkog-dark.yaml | 52 - themes/abolkog-light.yaml | 52 - themes/abraham.yaml | 4 + themes/absent-contrast.yaml | 52 - themes/absent-light.yaml | 52 - themes/absent.yaml | 52 - themes/abstract-mh.yaml | 1 + themes/abys-zora-dark.yaml | 1 + themes/abysal-marble.yaml | 1 + themes/abysal-obsidian.yaml | 1 + themes/abyskai.yaml | 52 - themes/abyss.yaml | 1 + themes/abyssal-anime.yaml | 52 - themes/abyssal-black.yaml | 52 - themes/abyssal-blue.yaml | 1 + themes/abyssal-catppuccin.yaml | 52 - themes/abyssal-dark.yaml | 52 - themes/abyssal-dracula.yaml | 52 - themes/abyssal-e-ink.yaml | 52 - themes/abyssal-everforest.yaml | 52 - themes/abyssal-gruvbox.yaml | 52 - themes/abyssal-hacker.yaml | 52 - themes/abyssal-latte.yaml | 52 - themes/abyssal-mirage.yaml | 1 + themes/abyssal-nord.yaml | 52 - themes/abyssal-tokyo-night.yaml | 52 - themes/acario.yaml | 1 + themes/access-color-theme.yaml | 52 - themes/ace-palenight.yaml | 3 +- themes/acekaizen-code-theme.yaml | 1 + themes/acequartz.yaml | 52 - themes/acid-trip.yaml | 52 - themes/aclear-dark.yaml | 1 + themes/acme.yaml | 52 - themes/aconitum.yaml | 1 + themes/acs-cozy-dark.yaml | 52 - themes/adapt-dark.yaml | 1 + themes/adark.yaml | 1 + themes/adech-theme-legacy.yaml | 3 + themes/adech-theme-superior.yaml | 3 + themes/adeol.yaml | 1 + themes/adey-coder-deep-dark.yaml | 52 - themes/adey-coder.yaml | 52 - themes/adonis.yaml | 52 - themes/adrift.yaml | 5 +- themes/advancedbat.yaml | 1 + themes/adventuresinparadise.yaml | 52 - themes/aelmouny11-theme.yaml | 1 + themes/aeridia.yaml | 1 + themes/aesir-theme.yaml | 1 + themes/aesthetic-dark.yaml | 52 - themes/aesthetic.yaml | 93 +- themes/aether-abyss.yaml | 1 + themes/aether-abyssal.yaml | 1 + themes/aether-arctic.yaml | 1 + themes/aether-atlantis.yaml | 1 + themes/aether-aurora.yaml | 1 + themes/aether-borealis.yaml | 1 + themes/aether-carbon.yaml | 1 + themes/aether-clarity.yaml | 1 + themes/aether-coffee-dark.yaml | 52 - themes/aether-coffee.yaml | 52 - themes/aether-cosmos.yaml | 1 + themes/aether-dark-space.yaml | 52 - themes/aether-dark.yaml | 52 - themes/aether-dawn.yaml | 1 + themes/aether-deep-ocean.yaml | 1 + themes/aether-depths.yaml | 1 + themes/aether-dusk.yaml | 1 + themes/aether-emerald.yaml | 52 - themes/aether-forest.yaml | 1 + themes/aether-glass.yaml | 1 + themes/aether-light.yaml | 52 - themes/aether-mariana.yaml | 1 + themes/aether-matrix.yaml | 1 + themes/aether-midnight.yaml | 1 + themes/aether-nautilus.yaml | 1 + themes/aether-nebula.yaml | 1 + themes/aether-neon.yaml | 1 + themes/aether-neptune.yaml | 1 + themes/aether-oceanic.yaml | 1 + themes/aether-quantum.yaml | 1 + themes/aether-reef.yaml | 1 + themes/aether-stellar.yaml | 1 + themes/aether-tempest.yaml | 1 + themes/aether-tidal.yaml | 1 + themes/aether-trench-contrast.yaml | 1 + themes/aether-twilight.yaml | 1 + themes/aether-void.yaml | 1 + themes/aether-zen.yaml | 1 + themes/aether.yaml | 3 + themes/aetherglow.yaml | 1 + themes/afro.yaml | 1 + themes/afterglow-fade.yaml | 52 - themes/afternoon-delight-subtle.yaml | 52 - themes/afterpurple.yaml | 1 + themes/agathist-dark.yaml | 52 - themes/agen-theme.yaml | 2 + themes/ahoy-theme.yaml | 1 + themes/ahroun.yaml | 1 + themes/aka-kuro-light.yaml | 1 + themes/akagami-dark.yaml | 1 + themes/akagami-light.yaml | 1 + themes/akari-dawn.yaml | 52 - themes/akari-night.yaml | 52 - themes/akihabara.yaml | 3 +- themes/aklesky-golden-river.yaml | 1 + themes/aklesky-mist-of-mint.yaml | 1 + themes/ako-theme.yaml | 1 + themes/aksin.yaml | 1 + themes/akumanomi-theme.yaml | 52 - themes/akurdor.yaml | 1 + themes/al-theme-official.yaml | 52 - themes/alabaster-dark.yaml | 1 + themes/alchemist-s-orchid-dark.yaml | 52 - themes/alchemist-s-orchid-light.yaml | 52 - themes/alchemist-s-orchid-sepia.yaml | 52 - themes/alchemy-theme.yaml | 1 + themes/aldrico-s-gruvbox.yaml | 52 - themes/alec-teal-theme.yaml | 1 + themes/alice-s-theme.yaml | 1 + themes/aliceblue-theme.yaml | 52 - themes/alien-blood.yaml | 52 - themes/alien-terminal-nostromo-amber.yaml | 52 - themes/alien-terminal-nostromo-green.yaml | 52 - themes/alien-terminal-sevastopol-link.yaml | 52 - themes/alignment-darker.yaml | 1 + themes/alignment.yaml | 1 + themes/all-black.yaml | 3 +- themes/all-blue.yaml | 1 + themes/all-nighter-theme.yaml | 52 - themes/alligator-light.yaml | 2 + themes/alligator-solarized-dark.yaml | 2 + themes/alligator-solarized-light.yaml | 2 + themes/allomancer.yaml | 1 + themes/allure-contrast.yaml | 52 - themes/allure-light.yaml | 52 - themes/allure.yaml | 52 - themes/alma-sakura-theme.yaml | 52 - themes/almond-cream.yaml | 1 + themes/aloe.yaml | 1 + themes/alpha.yaml | 52 - themes/alpine-warm.yaml | 3 +- themes/alpine.yaml | 1 + themes/altearn.yaml | 1 + themes/altered-matter-dopamin-owl.yaml | 52 - themes/alternight.yaml | 52 - themes/altin-s-love-symphony.yaml | 52 - themes/alucard-sotn.yaml | 52 - themes/alx-theme-classic.yaml | 1 + themes/alx-theme-toxic.yaml | 1 + themes/amadeus-dark-cobalt.yaml | 1 + themes/amadeus-dark-pastel.yaml | 1 + themes/amadeus-dark.yaml | 1 + themes/amazon-jungle.yaml | 52 - themes/amazonfrog.yaml | 3 +- themes/ambar-for-vscode.yaml | 1 + themes/amber-delight.yaml | 1 + themes/amber-red-light.yaml | 1 + themes/amber-red.yaml | 1 + themes/ambient.yaml | 1 + themes/amethyst-dreams.yaml | 1 + themes/amethyst-kiss-dark-kiss-mode.yaml | 52 - themes/amethyst-kiss-light-kiss-mode.yaml | 52 - themes/amethyst-stone.yaml | 52 - themes/amethyst-theme.yaml | 3 +- themes/amminial.yaml | 1 + themes/amoled-dark-theme.yaml | 52 - themes/amoledtest-fork-fork.yaml | 1 + themes/amora.yaml | 1 + themes/amozonia.yaml | 52 - themes/amp-dark.yaml | 52 - themes/amp-light.yaml | 52 - themes/an-bis.yaml | 1 + themes/anakmun.yaml | 1 + themes/analog-dream-beige-terminal.yaml | 1 + themes/analog-dream-magnetic-night.yaml | 1 + themes/anasdev.yaml | 1 + themes/anastasia.yaml | 1 + themes/andromeda-custom.yaml | 5 +- themes/andromeda-light-italic-bordered.yaml | 52 - themes/andromeda-night.yaml | 52 - themes/andromeda-zed.yaml | 4 +- themes/andromeda.yaml | 52 - themes/anemones.yaml | 1 + themes/angelnature2.yaml | 1 + themes/angrboda-dark.yaml | 1 + themes/angrboda-light.yaml | 1 + themes/angular-dark-theme.yaml | 52 - themes/animatrix.yaml | 52 - themes/animetheme.yaml | 3 +- themes/anisochromatic.yaml | 5 +- themes/ano-theme-dark.yaml | 52 - themes/anoldhope.yaml | 52 - themes/another-acid-trip.yaml | 52 - themes/anquyx.yaml | 52 - themes/anthropic-dark.yaml | 52 - themes/anthropic-light.yaml | 52 - themes/anthropic.yaml | 52 - themes/anthropocene.yaml | 1 + themes/anti-glare-moonlit.yaml | 52 - themes/anti-glare-nebula.yaml | 52 - themes/anti-glare-official.yaml | 52 - themes/anti-gravity-pink.yaml | 3 +- themes/antidote.yaml | 1 + themes/antimaterial.yaml | 1 + themes/anubis-dark-theme.yaml | 1 + themes/anubis-dark.yaml | 1 + themes/anubis-light.yaml | 1 + themes/anufemist-dark.yaml | 1 + themes/apathy-experimental.yaml | 52 - themes/apathy.yaml | 52 - themes/apcodespaces.yaml | 3 + themes/apex-carbon.yaml | 1 + themes/apex-ember.yaml | 1 + themes/apex-frost.yaml | 1 + themes/apex-neon.yaml | 1 + themes/apex-pastel.yaml | 1 + themes/apex-steel.yaml | 1 + themes/apex.yaml | 1 + themes/apollo-dark.yaml | 52 - themes/apollo-light.yaml | 52 - themes/app-netlify-com.yaml | 52 - themes/apparently-purple.yaml | 1 + themes/apple-dancheong-minimal-light.yaml | 52 - themes/apprentice.yaml | 1 + themes/april-dark-theme.yaml | 52 - themes/aqua-glacier.yaml | 52 - themes/aquamain.yaml | 52 - themes/aquanova.yaml | 1 + themes/arabian-nights.yaml | 1 + themes/arabian-theme.yaml | 52 - themes/arc-dark.yaml | 52 - themes/arcadia-theme-dark.yaml | 52 - themes/arcadia-theme-storm.yaml | 52 - themes/arcaea.yaml | 52 - themes/archangel-dusk.yaml | 52 - themes/archangel.yaml | 52 - themes/archie-dark-color-theme.yaml | 1 + themes/architect-dark-fork.yaml | 52 - themes/arctic-depth.yaml | 2 + themes/arctic-night.yaml | 50 - themes/arctis-dark.yaml | 52 - themes/arctis-high-contrast.yaml | 52 - themes/arctis-light.yaml | 52 - themes/arctis-moon.yaml | 52 - themes/arctis-night.yaml | 52 - themes/arctis.yaml | 52 - themes/arencio-argos-dark.yaml | 1 + themes/ares-tron-legacy.yaml | 1 + themes/arete-theme.yaml | 1 + themes/argo.yaml | 5 +- themes/argonaut.yaml | 1 + themes/argprocolor.yaml | 1 + themes/ariake-sands.yaml | 52 - themes/ariake-sun.yaml | 52 - themes/aries-darker-high-contrast.yaml | 52 - themes/aries-darker.yaml | 52 - themes/aries-default.yaml | 52 - themes/aries-lighter-high-contrast.yaml | 52 - themes/aries-lighter.yaml | 52 - themes/aries-ocean.yaml | 52 - themes/aries-palenight.yaml | 52 - themes/aries.yaml | 1 + themes/arkaios-theme.yaml | 1 + themes/arkinetictheme.yaml | 1 + themes/arkku.yaml | 3 + themes/armada.yaml | 52 - themes/aroace-high-contrast.yaml | 1 + themes/aroace-light.yaml | 1 + themes/aroace.yaml | 1 + themes/aromantic.yaml | 52 - themes/arrakis-day.yaml | 1 + themes/arrakis-night.yaml | 1 + themes/arrpee.yaml | 1 + themes/arstotzka-contrast.yaml | 52 - themes/arstotzka-light.yaml | 52 - themes/arstotzka.yaml | 52 - themes/artinpixel-turquoise-theme-dark.yaml | 1 + themes/artinpixel-turquoise-theme.yaml | 1 + themes/artisan-theme.yaml | 2 + themes/artlab-dark.yaml | 3 + themes/artlab-light.yaml | 3 + themes/arunika.yaml | 1 + themes/arwinux-galaxy.yaml | 1 + themes/as-theme.yaml | 1 + themes/asdfasdfuntitled.yaml | 1 + themes/asexual.yaml | 52 - themes/asgtheme.yaml | 1 + themes/ash-ember.yaml | 52 - themes/ash-lumen-light.yaml | 1 + themes/ash-lumen.yaml | 1 + themes/ash.yaml | 1 + themes/ashao-color-theme.yaml | 52 - themes/ashen-darker.yaml | 1 + themes/ashen.yaml | 1 + themes/ashineui.yaml | 1 + themes/aspiesoft-intellij-theme.yaml | 52 - themes/aspire-core.yaml | 3 + themes/aspire-dark.yaml | 3 + themes/aspire-light.yaml | 3 + themes/assam-tea-gardens.yaml | 1 + themes/aster-dark-theme.yaml | 52 - themes/asteria.yaml | 1 + themes/astigmatism-theme.yaml | 1 + themes/astra-themedark.yaml | 52 - themes/astra.yaml | 1 + themes/astral-theme.yaml | 1 + themes/astral.yaml | 1 + themes/astro-dark.yaml | 52 - themes/astro-kanagawa.yaml | 52 - themes/astro-light.yaml | 52 - themes/astrofunk-dark.yaml | 1 + themes/astronaut.yaml | 1 + themes/astrus-midnight.yaml | 1 + themes/astrus-nebula.yaml | 1 + themes/astrus-standard.yaml | 1 + themes/asuka-theme-light.yaml | 52 - themes/asuka-theme.yaml | 52 - themes/athabasca-light.yaml | 1 + themes/athabasca.yaml | 1 + themes/atilio.yaml | 1 + themes/atlantu.yaml | 1 + themes/atom-homepage-fork.yaml | 52 - themes/atom-material-theme.yaml | 52 - themes/atom-one-dark-coal.yaml | 5 +- themes/atom-one-dark-cyan.yaml | 52 - themes/atom-one-light-cyan.yaml | 52 - themes/atom-one-light-modern.yaml | 3 +- themes/atomax-colorblind-light.yaml | 1 + themes/atomax-dark-colorblind.yaml | 1 + themes/atomax-dark-dimmed.yaml | 1 + themes/atomax-dark-tritanopia.yaml | 1 + themes/atomax-dark.yaml | 1 + themes/atomax-high-contrast-light.yaml | 52 - themes/atomax-high-contrast.yaml | 1 + themes/atomax-light-tritanopia.yaml | 1 + themes/atomax-light.yaml | 1 + themes/atomicc.yaml | 1 + themes/atomify.yaml | 1 + themes/atomized-theme.yaml | 6 +- themes/atomizer-dark-island.yaml | 1 + themes/atomwave.yaml | 1 + .../attack-on-titan-eren-s-determination.yaml | 52 - themes/attentio-flow.yaml | 1 + themes/attentio-pulse.yaml | 1 + themes/attica.yaml | 3 +- themes/aube.yaml | 1 + themes/august-ariake-dark.yaml | 52 - themes/august-arstotzka-darker.yaml | 52 - themes/august-arstotzka-lighter.yaml | 52 - themes/august-arstotzka.yaml | 52 - .../august-beardedtheme-oceanic-reversed.yaml | 52 - ...ust-beardedtheme-surprising-blueberry.yaml | 52 - themes/august-catppuccin.yaml | 52 - themes/august-city-lights-darker.yaml | 52 - themes/august-city-lights.yaml | 52 - themes/august-dark-theme.yaml | 52 - themes/august-drawbridge-darker.yaml | 52 - themes/august-drawbridge.yaml | 52 - themes/august-gruvbox-darker.yaml | 52 - themes/august-gruvbox.yaml | 52 - themes/august-kanagawa-darker.yaml | 52 - themes/august-kanagawa.yaml | 52 - themes/august-material-ocean.yaml | 52 - themes/august-material-palenight.yaml | 52 - themes/august-night-owl-darker.yaml | 52 - themes/august-night-owl.yaml | 52 - themes/august-nord-darker.yaml | 52 - themes/august-nord.yaml | 52 - themes/august-radical-2.yaml | 52 - themes/august-radical.yaml | 52 - themes/aura-dark-soft-text.yaml | 52 - themes/aura-dark.yaml | 52 - themes/aura-dracula-spirit-soft.yaml | 52 - themes/aura-dracula-spirit-synthwave.yaml | 52 - themes/aura-dracula-spirit.yaml | 52 - themes/aura-soft-dark-soft-text.yaml | 52 - themes/aura-soft-dark.yaml | 52 - themes/aurbis-dark.yaml | 1 + themes/aurelconstellation.yaml | 1 + themes/aurora-borealis-theme-dark.yaml | 1 + themes/aurora-borealis-theme.yaml | 1 + themes/aurora.yaml | 87 +- themes/aurorabloom.yaml | 1 + themes/aurorain.yaml | 1 + themes/aurorasynth-dark.yaml | 1 + themes/aurorasynth-light.yaml | 1 + themes/australian-food-fibre-dark.yaml | 1 + themes/australian-food-fibre-light.yaml | 1 + themes/autu-dark-theme.yaml | 52 - themes/autumn-fork-contrast.yaml | 52 - themes/autumn-fork.yaml | 52 - themes/autumn-highlighter-syntax.yaml | 3 + themes/autumn.yaml | 87 +- themes/awesome-dark.yaml | 1 + themes/awesome-theme.yaml | 1 + themes/awesome-vscode-dark.yaml | 1 + themes/awork-dark.yaml | 52 - themes/axiomatic-dark.yaml | 1 + themes/axiomatic-light.yaml | 1 + themes/axis-ultra-dark.yaml | 1 + themes/aya-dark.yaml | 1 + themes/aya-light.yaml | 1 + themes/ayame.yaml | 1 + themes/ayanokoji.yaml | 1 + themes/aylin.yaml | 1 + .../ayu-darkvenom-transparent-borderless.yaml | 52 - themes/ayu-enhanced.yaml | 1 + themes/ayu-one-dark-pro-dark-bordered.yaml | 52 - themes/ayu-one-dark-pro-mirage-bordered.yaml | 52 - themes/ayu-one-dark-pro-mirage.yaml | 52 - themes/ayu-owl.yaml | 5 +- themes/ayudark.yaml | 52 - themes/ayuloco-dark-bordered.yaml | 52 - themes/ayuloco-mirage-bordered.yaml | 52 - themes/ayuloco-mirage.yaml | 52 - themes/ayutokyo-color-theme.yaml | 52 - themes/ayyour.yaml | 1 + themes/az0ox-theme-shadesofblue.yaml | 52 - themes/azathoth.yaml | 1 + themes/azeny-cutimaru.yaml | 1 + themes/azeny-inveny.yaml | 1 + themes/azeny-okano.yaml | 1 + themes/azeny.yaml | 1 + themes/azerite-dark-soft.yaml | 1 + themes/azerite-dark.yaml | 1 + themes/azul.yaml | 1 + themes/azure-contrast.yaml | 52 - themes/azure-dark-teal.yaml | 52 - themes/azure-iris-dark.yaml | 1 + themes/azure-iris-light.yaml | 1 + themes/azure-light.yaml | 52 - themes/azure-noir.yaml | 52 - themes/azure.yaml | 52 - themes/b-nt.yaml | 52 - themes/b150-dark.yaml | 1 + themes/b150-light.yaml | 1 + themes/b2b-edge-light.yaml | 1 + ...b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml | 1 + ...9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml | 1 + themes/backspace-dark-glass.yaml | 1 + themes/backspace-dark-vibe-coder.yaml | 1 + themes/backspace-dark-winter.yaml | 1 + themes/backspace-dark.yaml | 1 + themes/backspace-light.yaml | 1 + themes/baculum-color-minimal-2.yaml | 1 + themes/baculum-color-vantablack.yaml | 1 + themes/baculum-color.yaml | 1 + themes/baculum-dark-color.yaml | 1 + themes/badbird.yaml | 1 + themes/baig.yaml | 1 + themes/baitul-hikmah-professional.yaml | 1 + themes/bakaneo.yaml | 3 +- ...ance-pink-colorblind-compassion-focus.yaml | 1 + themes/balance-pink-compassion-focus.yaml | 1 + ...e-pink-high-contrast-compassion-focus.yaml | 1 + .../balance-pink-light-compassion-focus.yaml | 1 + themes/bali-crepuscule.yaml | 3 +- themes/ballerini-theme.yaml | 3 +- themes/bam.yaml | 1 + themes/bamboo-green.yaml | 1 + themes/bamboo.yaml | 1 + themes/ban-light.yaml | 1 + themes/ban-night.yaml | 1 + themes/ban-typhoon.yaml | 1 + themes/bananalight.yaml | 4 + themes/bandmeup.yaml | 3 + themes/banjo-loans-dark.yaml | 1 + themes/banjo-loans-light.yaml | 1 + themes/banner-contrast.yaml | 52 - themes/banner-light.yaml | 52 - themes/banner.yaml | 52 - themes/barbenheimer-bunker.yaml | 52 - themes/barbenheimer-dreamhouse.yaml | 52 - themes/barbenheimer-nuclear-sunrise.yaml | 52 - themes/barbie-light.yaml | 3 +- themes/barbie-theme.yaml | 3 +- themes/barbie.yaml | 3 +- themes/barito.yaml | 1 + themes/barlume.yaml | 1 + themes/barney-pro.yaml | 1 + themes/barstrata.yaml | 6 +- themes/base-color-theme.yaml | 52 - themes/base-minor-dark-hard.yaml | 3 + themes/base-minor-dark-soft.yaml | 3 + themes/base-minor-soft.yaml | 3 + themes/base16-3024-dark.yaml | 52 - themes/base16-3024-light.yaml | 52 - themes/base16-apathy-dark.yaml | 52 - themes/base16-apathy-light.yaml | 52 - themes/base16-ashes-dark.yaml | 52 - themes/base16-ashes-light.yaml | 52 - themes/base16-bespin-dark.yaml | 52 - themes/base16-bespin-light.yaml | 52 - themes/base16-brewer-dark.yaml | 52 - themes/base16-brewer-light.yaml | 52 - themes/base16-bright-dark.yaml | 52 - themes/base16-bright-light.yaml | 52 - themes/base16-codeschool-dark.yaml | 52 - themes/base16-codeschool-light.yaml | 52 - themes/base16-default-dark.yaml | 52 - themes/base16-default-light.yaml | 52 - themes/base16-eighties-dark.yaml | 52 - themes/base16-eighties-light.yaml | 52 - themes/base16-embers-dark.yaml | 52 - themes/base16-embers-light.yaml | 52 - themes/base16-flat-dark.yaml | 52 - themes/base16-flat-light.yaml | 52 - themes/base16-google-dark.yaml | 52 - themes/base16-google-light.yaml | 52 - themes/base16-grayscale-dark.yaml | 52 - themes/base16-grayscale-light.yaml | 52 - themes/base16-green-screen-dark.yaml | 52 - themes/base16-green-screen-light.yaml | 52 - themes/base16-harmonic16-dark.yaml | 52 - themes/base16-harmonic16-light.yaml | 52 - themes/base16-isotope-dark.yaml | 52 - themes/base16-isotope-light.yaml | 52 - themes/base16-marrakesh-dark.yaml | 52 - themes/base16-marrakesh-light.yaml | 52 - themes/base16-mocha-dark.yaml | 52 - themes/base16-mocha-light.yaml | 52 - themes/base16-monokai-dark.yaml | 52 - themes/base16-monokai-light.yaml | 52 - themes/base16-ocean-dark.yaml | 52 - themes/base16-ocean-light.yaml | 52 - themes/base16-oceanicnext-dark.yaml | 52 - themes/base16-oceanicnext-light.yaml | 52 - themes/base16-paraiso-dark.yaml | 52 - themes/base16-paraiso-light.yaml | 52 - themes/base16-pop-dark.yaml | 52 - themes/base16-pop-light.yaml | 52 - themes/base16-railscasts-dark.yaml | 52 - themes/base16-railscasts-light.yaml | 52 - themes/base16-shapeshifter-dark.yaml | 52 - themes/base16-shapeshifter-light.yaml | 52 - themes/base16-solarized-dark.yaml | 52 - themes/base16-solarized-light.yaml | 52 - themes/base16-summerfruit-dark.yaml | 52 - themes/base16-summerfruit-light.yaml | 52 - themes/base16-tomorrow-dark.yaml | 52 - themes/base16-tomorrow-light.yaml | 52 - themes/base16-twilight-dark.yaml | 52 - themes/base16-twilight-light.yaml | 52 - themes/base16-unikitty-dark.yaml | 52 - themes/base16-unikitty-light.yaml | 52 - themes/base16-woodland-dark.yaml | 52 - themes/basic-black.yaml | 52 - themes/basic-blue.yaml | 52 - themes/basterdized.yaml | 2 + themes/bat.yaml | 3 +- themes/batcave.yaml | 3 +- themes/batsignal-light-color-theme.yaml | 52 - themes/battutu.yaml | 1 + themes/bazmatheme.yaml | 1 + themes/bazutya.yaml | 3 +- themes/bbbalabamasuntan.yaml | 1 + themes/bbbdark.yaml | 1 + themes/bbbhotdogstand.yaml | 1 + themes/bbogdanov-dark.yaml | 1 + themes/bbogdanov-light.yaml | 1 + themes/bc-theme.yaml | 1 + themes/beach-vibes.yaml | 1 + themes/beacrisg.yaml | 1 + themes/bearhugs.yaml | 52 - themes/becolors.yaml | 1 + themes/bedarx-obsidian.yaml | 1 + themes/bedarx-onyx.yaml | 1 + themes/bedarx-pearl.yaml | 1 + themes/bedarx-sapphire.yaml | 1 + themes/bee-theme-color-theme-tow.yaml | 52 - themes/bee-theme.yaml | 52 - themes/beerish.yaml | 1 + themes/beesystemtheme.yaml | 1 + themes/beginner-theme.yaml | 1 + themes/behavai-vitesse.yaml | 1 + themes/behavai.yaml | 1 + themes/belch-fork.yaml | 52 - themes/bellair.yaml | 2 + themes/beloco.yaml | 1 + themes/benlatheme-azure.yaml | 49 - themes/benpai-theme-dark.yaml | 52 - themes/benty-dark.yaml | 1 + themes/benty.yaml | 1 + themes/berg.yaml | 1 + themes/berkeley.yaml | 1 + themes/bernadoque-theme.yaml | 1 + themes/berry-blast-theme.yaml | 52 - themes/berry-latte-light.yaml | 52 - themes/bersk.yaml | 52 - themes/bertax.yaml | 1 + themes/bertdark.yaml | 1 + themes/beru.yaml | 52 - themes/best-themes-one-monokai.yaml | 52 - themes/better-coding-dark.yaml | 1 + themes/better-light.yaml | 1 + themes/better-oceanic-next.yaml | 3 + themes/better-selenized-dark.yaml | 52 - themes/better-solarized-dark-italic.yaml | 52 - themes/better-solarized-dark.yaml | 52 - themes/betu-dark.yaml | 1 + themes/betu-light.yaml | 1 + themes/betweentts.yaml | 1 + themes/bhwm715-even-darker.yaml | 52 - themes/bianconero.yaml | 52 - themes/bibauporto-gray.yaml | 4 + themes/biddeew.yaml | 1 + themes/bifr-st.yaml | 1 + themes/bigfish.yaml | 3 + themes/bigsur-gtk-theme-dark-blue.yaml | 52 - themes/bini-theme.yaml | 1 + themes/bird.yaml | 52 - themes/bit-intense.yaml | 1 + themes/bit-soft.yaml | 1 + themes/bit.yaml | 1 + themes/bitpurp-dark.yaml | 1 + themes/bits-theme-green-light.yaml | 1 + themes/bits-theme-green.yaml | 1 + themes/bits-theme-light.yaml | 1 + themes/bits-theme-purple-light.yaml | 1 + themes/bits-theme-purple.yaml | 1 + themes/bits-theme.yaml | 1 + themes/bl-nk.yaml | 1 + themes/black-and-red.yaml | 2 + themes/black-and-white-tv.yaml | 1 + themes/black-back-dark-e-theme.yaml | 3 +- themes/black-beauty.yaml | 3 +- themes/black-color-theme.yaml | 1 + themes/black-ocean.yaml | 3 +- themes/black-on-gray.yaml | 3 +- themes/black-panther-theme.yaml | 3 +- themes/black-pink-rose.yaml | 1 + themes/black-punk-77.yaml | 3 +- themes/black-rose.yaml | 5 +- themes/black-theme.yaml | 52 - themes/black-velvet-luxe.yaml | 52 - themes/blackai-theme.yaml | 3 +- themes/blackamp.yaml | 1 + themes/blackberry.yaml | 3 +- themes/blackbird-dusk.yaml | 52 - themes/blackbird-midnight.yaml | 52 - themes/blackboard-plus.yaml | 1 + themes/blackcoffeedark.yaml | 52 - themes/blackdot.yaml | 1 + themes/blackhighcontrast.yaml | 1 + themes/blacklite.yaml | 1 + themes/blackout.yaml | 1 + themes/blackpink.yaml | 52 - themes/blackroulette.yaml | 5 +- themes/blackula-theme.yaml | 1 + themes/blacky.yaml | 1 + themes/blackzombie-color-theme.yaml | 1 + themes/bladerunner-light.yaml | 1 + themes/bladerunner.yaml | 1 + themes/blah-dark.yaml | 1 + themes/blahajtheme.yaml | 1 + themes/blank-ghibli.yaml | 2 + themes/blank-monochrome.yaml | 2 + themes/blank-moonlight.yaml | 2 + themes/blank-s-theme-reborn.yaml | 1 + themes/blank-uchiha.yaml | 2 + themes/blazing.yaml | 1 + themes/blender-mojo-theme.yaml | 3 +- themes/blinds-dark.yaml | 52 - themes/blink-contrast.yaml | 52 - themes/blink-light.yaml | 52 - themes/blink.yaml | 52 - themes/blip-cursor-vscode-theme.yaml | 4 + themes/bloody-pie.yaml | 3 +- themes/bloom-1-1-0.yaml | 52 - themes/bloostring.yaml | 1 + themes/blossoms.yaml | 4 + themes/blowington.yaml | 1 + themes/blube-dark-light.yaml | 1 + themes/blue-cheese.yaml | 1 + themes/blue-collection.yaml | 1 + themes/blue-color-theme.yaml | 52 - themes/blue-dark-theme.yaml | 52 - themes/blue-day.yaml | 52 - themes/blue-faded.yaml | 1 + themes/blue-green-theme.yaml | 1 + themes/blue-hacker-theme.yaml | 1 + themes/blue-jeans.yaml | 1 + themes/blue-light-filter-dark.yaml | 1 + themes/blue-light-filter-warm-dark.yaml | 1 + themes/blue-light-theme.yaml | 52 - themes/blue-melon.yaml | 1 + themes/blue-moves-color-theme.yaml | 1 + themes/blue-moves-darker-color-theme.yaml | 52 - themes/blue-neon.yaml | 50 - themes/blue-night.yaml | 52 - themes/blue.yaml | 1 + themes/blueberry-dark-theme.yaml | 17 +- themes/blueberry-futuristic-theme-fork.yaml | 52 - themes/blueberry-theme.yaml | 52 - themes/blueberry.yaml | 1 + themes/bluebracket-theme.yaml | 1 + themes/bluedark.yaml | 1 + themes/bluegreenspace.yaml | 1 + themes/bluelili-color-theme.yaml | 1 + themes/blueorange.yaml | 1 + themes/blueprint-grid.yaml | 52 - themes/blueprint.yaml | 1 + themes/bluered-theme.yaml | 1 + themes/bluesea.yaml | 1 + themes/blueslate.yaml | 1 + themes/bluespace-s.yaml | 1 + themes/bluespace.yaml | 1 + themes/bluespexter.yaml | 1 + themes/blueyonedark.yaml | 13 +- themes/blufftheme.yaml | 1 + themes/bluish.yaml | 4 + themes/bluloco-dark-italic.yaml | 52 - themes/bluloco-dark.yaml | 52 - themes/bluloco-light-italic.yaml | 52 - themes/blush-pink-enhanced-premium.yaml | 52 - themes/blve.yaml | 52 - themes/bobascheme.yaml | 1 + themes/bobojojo.yaml | 1 + themes/bocenago-pradei.yaml | 1 + themes/bogem-s-night-owl.yaml | 3 +- themes/bogster.yaml | 50 - themes/bohemian-dark.yaml | 1 + themes/bohemian-light.yaml | 1 + themes/bold-contrast.yaml | 52 - themes/bold-light.yaml | 52 - themes/bold.yaml | 52 - themes/bolsonaro-theme.yaml | 52 - themes/bombyx-light.yaml | 1 + themes/bombyx.yaml | 1 + themes/bonfire.yaml | 1 + themes/boo-color-theme.yaml | 1 + themes/boo.yaml | 89 +- themes/boogel.yaml | 1 + themes/booklike.yaml | 3 +- themes/bootstrap-dark.yaml | 1 + themes/bootstrap-light.yaml | 1 + themes/borderless-tokyo-night.yaml | 3 +- themes/borders-blue.yaml | 52 - themes/borders-dark.yaml | 52 - themes/borders-darker.yaml | 52 - themes/borealis.yaml | 52 - themes/borealsharp.yaml | 1 + themes/bot2b.yaml | 1 + themes/botany-color-theme.yaml | 52 - themes/botany.yaml | 52 - themes/bougainvillea.yaml | 1 + themes/boundless.yaml | 1 + themes/bouquet.yaml | 3 +- themes/boxlang-dark-neon.yaml | 1 + themes/boxuk-contrast.yaml | 52 - themes/boxuk-light.yaml | 52 - themes/boxuk.yaml | 52 - themes/brackethive-theme.yaml | 1 + themes/brave-contrast.yaml | 52 - themes/brave-light.yaml | 52 - themes/brave.yaml | 52 - themes/breath2ripoff.yaml | 1 + themes/breeze.yaml | 1 + themes/brew-theme.yaml | 1 + themes/brid-purple-garden-dark.yaml | 52 - themes/brid-purple-garden-light.yaml | 52 - themes/briggitehelm.yaml | 1 + themes/bright-colors-blue.yaml | 52 - themes/bright-lights.yaml | 1 + themes/britecore.yaml | 1 + themes/british-racing-green-theme.yaml | 5 +- themes/brogrammer-plus.yaml | 3 +- themes/broken-dreams-blue.yaml | 1 + themes/broken-dreams-purple.yaml | 1 + themes/bromium.yaml | 3 +- themes/brownhu.yaml | 52 - themes/brownista.yaml | 1 + themes/bruno-s-wet-dream.yaml | 3 +- themes/brutalcode.yaml | 1 + themes/bts-borahae.yaml | 1 + themes/btv-dark.yaml | 1 + themes/bubba-kush-v1.yaml | 52 - themes/bubble-theme.yaml | 1 + themes/bubblegum-color-theme.yaml | 1 + themes/bubblegum-milkshake.yaml | 1 + themes/bubblegum.yaml | 1 + themes/bubblegumtheme.yaml | 1 + themes/buby-color-theme.yaml | 50 - ...ddha-a-super-minimal-theme-for-vscode.yaml | 1 + themes/budha.yaml | 1 + themes/budokan.yaml | 1 + themes/bugged-gpu.yaml | 1 + themes/buhtig.yaml | 1 + themes/bullish-theme.yaml | 1 + themes/bumblebee.yaml | 1 + themes/burnt-chestnut.yaml | 1 + themes/burple-dark.yaml | 1 + themes/busbyvscode.yaml | 1 + themes/bushland.yaml | 1 + themes/butrin-theme.yaml | 5 +- themes/butter-green-fork.yaml | 52 - themes/buttercawfee.yaml | 1 + themes/bynawers.yaml | 1 + themes/byteglow.yaml | 1 + themes/bytenight.yaml | 2 + themes/c-c-theme.yaml | 52 - themes/c-carbon-6.yaml | 52 - themes/c-dracula.yaml | 52 - themes/c-e-o.yaml | 3 + themes/c0v3r.yaml | 1 + themes/cabalyon-theme.yaml | 50 - themes/cadet-dark-gray.yaml | 1 + themes/cadet-medium-gray.yaml | 1 + themes/caf-warmth.yaml | 1 + themes/cafelle.yaml | 1 + themes/caffe-crema-dark.yaml | 1 + themes/caffe-crema-light.yaml | 1 + themes/caffeinated-rust.yaml | 1 + themes/cal-4700.yaml | 1 + themes/calabaza.yaml | 1 + themes/calm-dark.yaml | 52 - themes/calm-days-sober-nights-day-sky.yaml | 52 - themes/calm-days-sober-nights-day.yaml | 52 - themes/calm-days-sober-nights-night-sky.yaml | 52 - themes/calm-days-sober-nights-night.yaml | 52 - themes/calm-down-color-theme.yaml | 52 - themes/calm-light.yaml | 52 - themes/calm-ocean.yaml | 1 + themes/calm-teal-balance-clarity.yaml | 1 + ...lm-teal-high-contrast-balance-clarity.yaml | 1 + themes/calm-teal-light-balance-clarity.yaml | 1 + themes/calm-vision.yaml | 3 + themes/calming-coding-dark-theme.yaml | 1 + themes/calming-theme.yaml | 3 +- themes/calmnight.yaml | 1 + themes/calmppuccin-frappe.yaml | 52 - themes/calmppuccin-latte.yaml | 52 - themes/calmppuccin-macchiato.yaml | 52 - themes/calmppuccin-mocha.yaml | 52 - themes/calmppuccin-nitro-cold-brew.yaml | 52 - themes/calmppuccin-oledppuccin.yaml | 52 - themes/calmshade.yaml | 3 + themes/camo-dark.yaml | 52 - themes/campbell.yaml | 3 + themes/camula-moon.yaml | 3 + themes/camula-sun.yaml | 3 + themes/camula.yaml | 3 + themes/candle-theme.yaml | 1 + themes/candy-blue.yaml | 3 + themes/candy-pine.yaml | 52 - themes/candy-purple.yaml | 1 + themes/candy-red.yaml | 3 +- themes/candy-shop-eclipse.yaml | 3 +- themes/canonic-theme.yaml | 1 + themes/cape-town-nights.yaml | 1 + themes/capitola.yaml | 3 + themes/capy-ui.yaml | 1 + themes/caramel.yaml | 1 + themes/carbon-candy-anthracite.yaml | 52 - themes/carbon-candy-aurora.yaml | 52 - themes/carbon-candy-bee.yaml | 52 - themes/carbon-candy-carbon.yaml | 52 - themes/carbon-candy-dark.yaml | 52 - themes/carbon-candy-obsidian.yaml | 52 - themes/carbon-candy-palenight.yaml | 52 - themes/carbon-code-amber-dark.yaml | 52 - themes/carbon-code-amber-light.yaml | 52 - themes/carbon-code-crimson-dark.yaml | 52 - themes/carbon-code-crimson-light.yaml | 52 - themes/carbon-code-dark.yaml | 52 - themes/carbon-code-emerald-dark.yaml | 52 - themes/carbon-code-emerald-light.yaml | 52 - themes/carbon-code-light.yaml | 52 - themes/carbon-code-rose-dark.yaml | 52 - themes/carbon-code-rose-light.yaml | 52 - themes/carbon-design-system-theme.yaml | 1 + themes/carbon-one.yaml | 1 + .../carbon-react-color-theme-maya-black.yaml | 52 - themes/carbon-react-color-theme-maya.yaml | 52 - themes/carbon-react-color-theme.yaml | 52 - themes/carbon.yaml | 52 - themes/carbonfox.yaml | 1 + themes/carbonight-contrast.yaml | 52 - themes/carbonight-dusk.yaml | 1 + themes/carbonight-light.yaml | 52 - themes/carbonight-midnight.yaml | 1 + themes/carbonight.yaml | 1 + themes/caret-light.yaml | 1 + themes/carex-dark.yaml | 1 + themes/carex-high-contrast-dark.yaml | 1 + themes/carex-light.yaml | 1 + themes/casa.yaml | 1 + themes/casino-royal.yaml | 1 + themes/cassieye-dark.yaml | 52 - themes/cassieye-light.yaml | 52 - themes/cat-pink.yaml | 1 + themes/cat-pulper.yaml | 1 + themes/cat-sleep-color-theme.yaml | 1 + themes/catalyst-light.yaml | 52 - themes/catalyst.yaml | 52 - themes/cathaytrial.yaml | 3 + themes/catppuccin-dark-pro.yaml | 3 +- themes/catppuccin-dark.yaml | 1 + themes/catppuccin-frapp.yaml | 52 - themes/catppuccin-latte.yaml | 52 - themes/catppuccin-macchiato.yaml | 52 - themes/catppuccin-mocha.yaml | 52 - themes/catppuccin-monokai-frappe.yaml | 52 - themes/catppuccin-monokai-latte.yaml | 52 - themes/catppuccin-monokai-macchiato.yaml | 52 - themes/catppuccin-monokai-mocha.yaml | 52 - themes/catthode.yaml | 1 + themes/ccat.yaml | 52 - themes/cebola-theme.yaml | 1 + themes/celadon-theme.yaml | 5 +- themes/celestial-charm-theme.yaml | 52 - themes/celestial.yaml | 52 - themes/ceramic-space.yaml | 1 + themes/cerydra.yaml | 5 +- themes/cfl-one.yaml | 3 + themes/cha-thai.yaml | 1 + themes/chai-light.yaml | 52 - themes/chainroot.yaml | 1 + themes/chalk.yaml | 52 - themes/chalkish.yaml | 5 +- themes/charcoal.yaml | 3 +- themes/charli-health-dark.yaml | 1 + themes/charli-health-light.yaml | 1 + themes/charmed-dark.yaml | 1 + themes/cheese-n-all.yaml | 52 - themes/cheesewaffle-blue.yaml | 1 + themes/cheetha-green.yaml | 52 - themes/chelsea-pride-away.yaml | 1 + themes/chelsea-pride.yaml | 1 + themes/cherry-blossom-airy.yaml | 52 - themes/cherry-blossom-breeze.yaml | 52 - themes/cherry-blossom-dark-reflection.yaml | 52 - themes/cherry-blossom-dark-vivid.yaml | 52 - themes/cherry-blossom-dark.yaml | 52 - themes/cherry-blossom-dimmed-dusk.yaml | 52 - themes/cherry-blossom-dimmed.yaml | 52 - themes/cherry-blossom-night-harmony.yaml | 52 - themes/cherry-blossom-night.yaml | 52 - themes/cherry-blossom-osaka-light.yaml | 52 - themes/cherry-blossom-osaka.yaml | 52 - themes/cherry-blossom-sky-vibrant.yaml | 52 - themes/cherry-blossom-spring.yaml | 52 - themes/cherry-blossom-twilight.yaml | 52 - themes/cherry-blossom-warm.yaml | 52 - themes/cherry-delite.yaml | 5 +- themes/cherry-midnight.yaml | 52 - themes/cherry-wild-theme.yaml | 2 + themes/cherry.yaml | 52 - themes/cherryblossom.yaml | 52 - themes/chiclete-de-uva-theme.yaml | 1 + themes/chilaquiles-rojos-dark.yaml | 1 + themes/chilaquiles-rojos-light.yaml | 1 + themes/chilaquiles-verdes-dark.yaml | 1 + themes/chilaquiles-verdes-light.yaml | 1 + themes/chill-night-mode.yaml | 1 + themes/chillhack.yaml | 3 + themes/chinolor-light.yaml | 52 - themes/chinolor.yaml | 52 - themes/chocolate-contrast.yaml | 52 - themes/chocolate-dessert-theme.yaml | 52 - themes/chocolate-light.yaml | 52 - themes/chocolate.yaml | 52 - themes/chpastel-dark.yaml | 1 + themes/chpastel-light.yaml | 1 + themes/chpastel.yaml | 1 + themes/chris-light.yaml | 1 + themes/chriscoding.yaml | 1 + themes/christmas.yaml | 1 + themes/chromahin-amoled.yaml | 52 - themes/chromahin-dark.yaml | 52 - themes/chromahin-multi-color.yaml | 52 - themes/chromahin-soft.yaml | 52 - themes/chromatic-dark.yaml | 1 + themes/chromatic-light.yaml | 1 + themes/chrome-devtools.yaml | 1 + themes/chrome-green.yaml | 52 - themes/chromodusk-classic.yaml | 1 + themes/chronica-pink.yaml | 1 + themes/chronokai.yaml | 1 + themes/cielo.yaml | 1 + themes/cinnamon.yaml | 3 +- themes/cinnamonroll.yaml | 52 - themes/citric-secret.yaml | 1 + themes/city-fog.yaml | 1 + themes/ckai-color-theme.yaml | 1 + themes/clairvoyance-theme-alt.yaml | 1 + themes/clairvoyance-theme-grape.yaml | 1 + themes/clairvoyance-theme-pinkish.yaml | 1 + themes/clairvoyance-theme.yaml | 1 + themes/clarity-design-system-dark.yaml | 1 + themes/clarity-design-system-light.yaml | 1 + themes/claro.yaml | 1 + themes/classic-essential-colors-blue.yaml | 52 - themes/classic-terminal.yaml | 1 + themes/claude-code-dark-high-contrast.yaml | 52 - themes/claude-code-dark.yaml | 52 - themes/claude-code-light-high-contrast.yaml | 52 - themes/claude-code-light.yaml | 52 - themes/claude-dark-anthropic.yaml | 52 - themes/claude-dark-high-contrast.yaml | 52 - themes/claude-dark-italic.yaml | 52 - themes/claude-dark.yaml | 52 - themes/claude-light.yaml | 52 - themes/claude-mode-dark.yaml | 1 + themes/claude-mode-light.yaml | 1 + themes/claude-velvet-dark.yaml | 1 + themes/claude-velvet-light.yaml | 1 + themes/claude-vscode-dark-brand.yaml | 52 - themes/claude-vscode-light-brand.yaml | 52 - themes/claude-warm-light.yaml | 3 +- themes/clean-theme-halloween.yaml | 3 + themes/clean-white.yaml | 1 + themes/clear-dark.yaml | 61 +- themes/cleo.yaml | 1 + themes/clesy-theme-dark.yaml | 4 + themes/clorest.yaml | 3 +- themes/cloudmint-night.yaml | 52 - themes/clrsync.yaml | 1 + themes/clu-tron-legacy.yaml | 1 + themes/clubcleaver-functional-matrix.yaml | 52 - ...clymate-monochrome-vsdark-color-theme.yaml | 1 + .../clymate-pop-neon-vsdark-color-theme.yaml | 1 + .../clymate-vintage-vsdark-color-theme.yaml | 1 + themes/clymate-vsdark-color-theme.yaml | 52 - themes/cmyk-colourrrs.yaml | 1 + themes/coal.yaml | 1 + themes/cobalt-ice.yaml | 52 - themes/cobalt-next-dark.yaml | 52 - themes/cobalt-next.yaml | 52 - themes/cobalt2.yaml | 4 + themes/cobalt3dark.yaml | 3 +- themes/cobalt9.yaml | 52 - themes/coco-theme-au-palette.yaml | 1 + themes/coco-theme-ca-palette.yaml | 1 + themes/coco-theme-coco-palette.yaml | 1 + themes/coco-theme-coconut-palette.yaml | 1 + themes/coco-theme-de-palette.yaml | 1 + themes/coco-theme-es-palette.yaml | 1 + themes/coco-theme-fr-palette.yaml | 1 + themes/coco-theme-gb-palette.yaml | 1 + themes/coco-theme-in-palette.yaml | 1 + themes/coco-theme-personnal-palette.yaml | 1 + themes/coco-theme-se-palette.yaml | 1 + themes/coco-theme-tr-palette.yaml | 1 + themes/coco-theme-v1-palette.yaml | 1 + themes/coco-theme.yaml | 1 + themes/coco.yaml | 1 + themes/cocoa.yaml | 1 + themes/coconut-dark.yaml | 1 + themes/coconut.yaml | 1 + themes/coda.yaml | 3 + themes/code-dadi-dark.yaml | 1 + themes/code-dadi-lighter.yaml | 1 + themes/code-glasses-vision-pro.yaml | 1 + themes/code-hunter-magnum-purple.yaml | 1 + themes/code-hunter-spruce-wind.yaml | 1 + themes/code-kraken-theme.yaml | 3 +- themes/code-like-a-rainbow.yaml | 52 - themes/code-muse-light.yaml | 1 + themes/code-red.yaml | 52 - themes/code-sandbox-tribute.yaml | 49 - .../code-with-colors-pro-midnight-purple.yaml | 52 - themes/code33.yaml | 1 + themes/codeastro-dark.yaml | 1 + themes/codebabel-theme-dark.yaml | 52 - themes/codecourse-contrast.yaml | 52 - themes/codecourse-light.yaml | 52 - themes/codecourse.yaml | 52 - themes/codehesion-dark-theme.yaml | 1 + themes/codehesion-light-theme.yaml | 1 + themes/codeify-dark-berry-color-theme.yaml | 52 - themes/codeitlive-light.yaml | 1 + themes/codeitlive.yaml | 1 + themes/codelabs-inspired.yaml | 1 + themes/codellsby-nightowl.yaml | 3 +- themes/codely-dark-theme.yaml | 52 - themes/codeme.yaml | 52 - themes/codeo-light.yaml | 1 + themes/codeo.yaml | 1 + themes/codepdia.yaml | 1 + themes/codepen-nights.yaml | 5 +- themes/codepixel-modern-dark.yaml | 2 + themes/coder-coder-dark-redefined.yaml | 3 +- themes/coder-vai-forest.yaml | 52 - themes/coder-vai-light.yaml | 52 - themes/coder-vai-ocean.yaml | 52 - themes/coder-vai-purple-haze.yaml | 52 - themes/coder30.yaml | 1 + themes/codesandbox-theme.yaml | 52 - themes/codeschool2-minimal.yaml | 52 - themes/codesso-unison-beta.yaml | 52 - themes/codetest.yaml | 1 + themes/codethread-black.yaml | 5 +- themes/codeuccino.yaml | 3 +- themes/codevibe-epic-theme.yaml | 52 - themes/codewithme-codex.yaml | 1 + themes/codewithme-dark-cmyk.yaml | 1 + themes/codewithsg-dark-theme.yaml | 52 - themes/codexflow-themes.yaml | 1 + themes/codiefy-optimas-prime-color-theme.yaml | 52 - themes/coding-light-theme.yaml | 1 + themes/codingwish.yaml | 4 + themes/cods.yaml | 1 + themes/coelhin-smooth.yaml | 1 + themes/coelhin-violet.yaml | 1 + themes/coffee-contrast.yaml | 52 - themes/coffee-light.yaml | 52 - themes/coffee.yaml | 52 - themes/coffeespace.yaml | 1 + themes/coffeyscript-theme.yaml | 1 + themes/cognac.yaml | 1 + themes/coimbrox-minimalist-panda.yaml | 52 - themes/coimbroxthmedark.yaml | 52 - themes/cold-night.yaml | 3 +- themes/cold-python-theme.yaml | 3 +- themes/coldark-cold.yaml | 52 - themes/coldark-dark.yaml | 52 - themes/collapse.yaml | 52 - themes/color-coffee-dark.yaml | 52 - themes/color-contrast.yaml | 52 - themes/color-sea-blue.yaml | 52 - themes/color-sea-gray.yaml | 52 - themes/color-sea-green.yaml | 52 - themes/color-sea-orange.yaml | 52 - themes/color-sea-purple.yaml | 52 - themes/color-sea-red.yaml | 52 - themes/color-sea-yellow.yaml | 52 - themes/colora.yaml | 1 + themes/colorbars-blue.yaml | 52 - themes/colorbars-green.yaml | 52 - themes/colorbars-orange.yaml | 52 - themes/colorbars-purple.yaml | 52 - themes/colored-desert.yaml | 49 - themes/colorful-carbon-dark-knight.yaml | 1 + themes/colorful-carbon.yaml | 1 + themes/colorful-dark-fork.yaml | 52 - themes/colorful-dark-theme.yaml | 52 - themes/colorful-light.yaml | 52 - themes/colorizer.yaml | 3 +- themes/colors-color-theme.yaml | 52 - themes/colors.yaml | 1 + themes/colorshift-material-pro-evening.yaml | 1 + themes/colorshift-material-pro-morning.yaml | 1 + themes/colorshift-material-pro.yaml | 1 + themes/colorways-cheers-soft.yaml | 52 - themes/columbina-dark.yaml | 52 - themes/columbina-high-contrast.yaml | 52 - themes/comfy-monokai.yaml | 1 + themes/comfyeyes.yaml | 1 + themes/commadoor-dark.yaml | 1 + themes/commadoor.yaml | 1 + themes/commentsareimportant.yaml | 1 + themes/common.yaml | 1 + themes/compline.yaml | 52 - themes/component.yaml | 52 - themes/comrade-contrast.yaml | 52 - themes/comrade-light.yaml | 1 + themes/comrade.yaml | 1 + themes/concoctis-dark-hard.yaml | 52 - themes/concoctis-dark-soft.yaml | 52 - themes/concoctis-light-hard.yaml | 52 - themes/concoctis-light-soft.yaml | 52 - themes/concrete-theme.yaml | 1 + themes/concrete.yaml | 3 +- themes/conifer-theme.yaml | 52 - themes/consolvis-dark-theme.yaml | 4 + themes/contrast-kai.yaml | 52 - themes/cool-panda.yaml | 1 + themes/cool-with-a-c.yaml | 1 + themes/cooland.yaml | 2 + themes/coolnight-color-theme.yaml | 50 - themes/coolshine.yaml | 1 + themes/copper-dark.yaml | 52 - themes/corallike.yaml | 1 + themes/corbatita.yaml | 4 + themes/corduroy.yaml | 1 + themes/corgidarkpastel2.yaml | 1 + themes/corgidarkpastel3.yaml | 1 + themes/corporate-dark-theme.yaml | 3 + themes/cortex-theme.yaml | 1 + themes/cosmic-dark.yaml | 52 - themes/cosmic-decay.yaml | 52 - themes/cosmic-gleam-darkest.yaml | 52 - themes/cosmic-iris.yaml | 1 + themes/cosmic-purple.yaml | 1 + themes/cosmic-sea.yaml | 52 - themes/cosmic.yaml | 1 + themes/cosmical.yaml | 1 + themes/cosmico.yaml | 1 + themes/cosmicsarthak-dark.yaml | 52 - themes/cosmicsarthak-neon.yaml | 52 - themes/cosmicsarthak-night-owl.yaml | 52 - themes/cosmicsarthak-red.yaml | 52 - themes/cosmo.yaml | 52 - themes/cosmos-theme.yaml | 1 + themes/cosmos.yaml | 1 + themes/coucou-theme.yaml | 1 + themes/couldpeak.yaml | 1 + themes/cowboy-theme.yaml | 52 - themes/cozy-evenings.yaml | 1 + themes/cozy-mornings.yaml | 1 + themes/cozyspace.yaml | 1 + themes/cpa-lions.yaml | 1 + themes/cr-night-theme.yaml | 49 - themes/cr0wn-gh0ul.yaml | 1 + themes/crackpot-contrast.yaml | 52 - themes/crackpot-light.yaml | 52 - themes/crackpot.yaml | 52 - themes/crafty-theme-dark.yaml | 1 + themes/crazydark.yaml | 4 + themes/cream-charcoal.yaml | 1 + ...reative-purple-innovation-imagination.yaml | 1 + ...e-purple-light-innovation-imagination.yaml | 1 + themes/crema.yaml | 1 + themes/crf-flamengo.yaml | 52 - themes/crimson-sunset.yaml | 1 + themes/crisp-contrast.yaml | 52 - themes/crisp-light.yaml | 52 - themes/crisp.yaml | 52 - themes/crow-dark.yaml | 52 - themes/crowveil-ayu.yaml | 1 + themes/crt-64.yaml | 52 - themes/crt-alt.yaml | 1 + themes/crt-amber.yaml | 52 - themes/crt-apple.yaml | 1 + themes/crt-appleiic.yaml | 1 + themes/crt-blue.yaml | 52 - themes/crt-green.yaml | 52 - themes/crt-green1.yaml | 1 + themes/crt-green2.yaml | 1 + themes/crt-red.yaml | 52 - themes/crt.yaml | 50 - themes/crypto.yaml | 52 - themes/crystal-quartz.yaml | 52 - themes/crystaltine-s-crystalline-4-1.yaml | 52 - themes/crystaltine-s-crystalline-5-0.yaml | 52 - themes/cs50-light-theme.yaml | 52 - themes/css-battle.yaml | 1 + themes/cucumber-dark.yaml | 1 + themes/cucumber-light.yaml | 1 + themes/cupertino-dark.yaml | 50 - themes/cupertino-light.yaml | 50 - themes/curry-dark.yaml | 1 + themes/cursor-dark-anysphere-v0-0-1.yaml | 52 - themes/cursor-less-dark.yaml | 52 - themes/cursor-light.yaml | 52 - themes/cursor-night-theme-soft.yaml | 52 - themes/cursor-night-theme.yaml | 52 - themes/cursor-theme.yaml | 52 - themes/custom-theme-dark.yaml | 1 + themes/custom-theme-light.yaml | 1 + themes/custom-theme.yaml | 52 - themes/custommarktheme.yaml | 52 - themes/cyan-dark.yaml | 52 - themes/cyber-dark.yaml | 52 - themes/cyber-industrial.yaml | 52 - themes/cyber-light-soft.yaml | 52 - themes/cyber-light-warm.yaml | 52 - themes/cyber-light.yaml | 52 - themes/cyber-pastel-violet.yaml | 52 - themes/cyber-pop.yaml | 52 - themes/cyber-purple-77.yaml | 3 +- themes/cyberblue.yaml | 52 - themes/cyberdude-black.yaml | 1 + themes/cyberdyne-ghostty.yaml | 52 - themes/cybereternals-vscode-theme.yaml | 1 + themes/cyberlite-fork.yaml | 52 - themes/cybermoon.yaml | 1 + themes/cyberpink-137-theme.yaml | 52 - themes/cyberpunk-2077-night-city-neon.yaml | 49 - themes/cyberpunk-2077-reloaded.yaml | 3 +- themes/cyberpunk-2077.yaml | 1 + themes/cyberpunk.yaml | 1 + themes/cyberpunkcygnus-clear-grid.yaml | 52 - themes/cyberpunkcygnus-neon-pulse.yaml | 52 - themes/cyberpunkcygnus-solace-flare.yaml | 52 - themes/cybersec-pro.yaml | 50 - themes/cyberspace.yaml | 3 +- themes/cybertrauma-s-dark-theme.yaml | 1 + themes/cybertrauma-s.yaml | 52 - themes/cybertronix.yaml | 1 + themes/cyberui.yaml | 52 - themes/cynical-color-theme.yaml | 52 - themes/cyperpunkrebecca.yaml | 52 - themes/d2t-dark-clean.yaml | 52 - themes/d2t-dark.yaml | 52 - themes/da3m0ns-dark-italic.yaml | 1 + themes/daet.yaml | 1 + themes/dafault.yaml | 1 + themes/dak-v1.yaml | 1 + themes/dalailahner-dark.yaml | 3 +- themes/dalton.yaml | 3 +- themes/dan-light-work.yaml | 1 + themes/dan-react-theme.yaml | 3 +- themes/dang-jedi.yaml | 1 + themes/dangergray-v2.yaml | 52 - themes/dango-theme.yaml | 3 +- themes/daniel-material-palenight-theme.yaml | 52 - themes/danmo.yaml | 1 + themes/dante-color-theme.yaml | 1 + themes/dantes-theme.yaml | 52 - themes/dantetheme.yaml | 1 + themes/darcula-contrast-min.yaml | 52 - themes/darcula-contrast.yaml | 52 - themes/darcula-dark-theme.yaml | 52 - themes/darcula-port.yaml | 52 - themes/darcula-solid-color-theme.yaml | 52 - themes/darcula-void.yaml | 3 +- themes/darcula.yaml | 52 - themes/darculacode.yaml | 1 + themes/dare-contrast.yaml | 52 - themes/dare-light.yaml | 52 - themes/dare.yaml | 52 - themes/dark-1.yaml | 1 + themes/dark-abyss.yaml | 1 + themes/dark-amethyst.yaml | 3 +- themes/dark-army.yaml | 1 + themes/dark-aura.yaml | 52 - themes/dark-black-developer.yaml | 1 + themes/dark-blood.yaml | 52 - themes/dark-blue-theme.yaml | 1 + themes/dark-bqueiroz.yaml | 1 + themes/dark-brown-theme.yaml | 85 +- themes/dark-brown.yaml | 52 - themes/dark-cherry-ice-cream-subtle.yaml | 1 + themes/dark-cherry-ice-cream.yaml | 1 + themes/dark-clean.yaml | 52 - themes/dark-code-fork.yaml | 52 - themes/dark-codely-theme.yaml | 52 - themes/dark-coffee.yaml | 3 +- themes/dark-cool-theme.yaml | 3 +- themes/dark-crimson.yaml | 52 - themes/dark-decay.yaml | 3 +- themes/dark-dev-theme.yaml | 4 + themes/dark-discord-vscode.yaml | 1 + themes/dark-dust-pro.yaml | 52 - themes/dark-edit.yaml | 1 + themes/dark-flow.yaml | 3 +- themes/dark-forest.yaml | 9 +- themes/dark-frost-midnight.yaml | 2 + themes/dark-frost.yaml | 2 + themes/dark-fury.yaml | 1 + themes/dark-future-cyberpunk-2077.yaml | 52 - themes/dark-future-outrun.yaml | 52 - themes/dark-green-energy.yaml | 1 + themes/dark-green-jungle.yaml | 52 - themes/dark-green-minimalist-theme.yaml | 3 +- themes/dark-green.yaml | 52 - themes/dark-grey-theme.yaml | 1 + themes/dark-ink-and-red-accents.yaml | 1 + themes/dark-ink-brighter.yaml | 1 + themes/dark-ink-brightest.yaml | 1 + themes/dark-ink-lighter.yaml | 1 + themes/dark-ink.yaml | 1 + themes/dark-jade.yaml | 3 +- themes/dark-juice-bordered.yaml | 1 + themes/dark-lavender-black.yaml | 52 - themes/dark-lavender-soft.yaml | 52 - themes/dark-lavender-tailwind-soft.yaml | 52 - themes/dark-lavender-tailwind.yaml | 52 - themes/dark-lavender.yaml | 52 - themes/dark-legibility.yaml | 52 - themes/dark-leocode-theme.yaml | 1 + themes/dark-lime-flat.yaml | 52 - themes/dark-magic-dracula.yaml | 52 - themes/dark-magic-frankenstein.yaml | 52 - themes/dark-magic-light.yaml | 52 - themes/dark-magic-night.yaml | 52 - themes/dark-magic-nord.yaml | 52 - themes/dark-magic-tokyo.yaml | 52 - themes/dark-magic.yaml | 52 - themes/dark-marine.yaml | 4 + themes/dark-matter-code-neptune-medium.yaml | 1 + themes/dark-minimal-lime-theme.yaml | 52 - themes/dark-minimal-theme-sm.yaml | 52 - themes/dark-mode-lover-wasp.yaml | 1 + themes/dark-mode-lover.yaml | 1 + themes/dark-mode-vs.yaml | 3 +- themes/dark-mode.yaml | 52 - themes/dark-modern-one-without-italics.yaml | 52 - themes/dark-modern-yuriyprogg.yaml | 1 + themes/dark-molokai.yaml | 52 - themes/dark-mono.yaml | 3 +- themes/dark-monokai.yaml | 1 + themes/dark-moonlight.yaml | 3 +- themes/dark-mosqueta.yaml | 3 + themes/dark-mute.yaml | 1 + themes/dark-nebula.yaml | 52 - themes/dark-neon-theme-sm.yaml | 52 - themes/dark-night-pro.yaml | 3 +- themes/dark-night.yaml | 52 - themes/dark-ocean.yaml | 1 + themes/dark-ohnagi-2020.yaml | 52 - themes/dark-orange-flat.yaml | 52 - themes/dark-owl-darker-no-italics.yaml | 52 - themes/dark-owl-darker.yaml | 52 - themes/dark-pastel-pink.yaml | 1 + themes/dark-pastel.yaml | 1 + themes/dark-petrol-dev.yaml | 50 - themes/dark-pie-deep-dark.yaml | 1 + themes/dark-pink-theme.yaml | 1 + themes/dark-plus-chocolate.yaml | 13 +- themes/dark-plus-moon-lite.yaml | 52 - themes/dark-plus-oled-dim-100.yaml | 1 + themes/dark-plus-oled-dim-75.yaml | 1 + themes/dark-plus-oled-dim-80.yaml | 1 + themes/dark-plus-oled-dim-85.yaml | 1 + themes/dark-plus-oled-dim-90.yaml | 1 + themes/dark-plus-oled-dim-95.yaml | 1 + themes/dark-plus-syntax.yaml | 1 + themes/dark-purple-flat.yaml | 52 - themes/dark-purple-fork.yaml | 52 - themes/dark-purple.yaml | 1 + themes/dark-purpled-theme.yaml | 1 + themes/dark-rainbow.yaml | 1 + themes/dark-reader-dark.yaml | 52 - themes/dark-reader-light.yaml | 1 + themes/dark-readin-5.yaml | 1 + themes/dark-red-theme-vs-code.yaml | 52 - themes/dark-red-theme.yaml | 52 - themes/dark-remix-nord.yaml | 1 + themes/dark-remix-one-dark.yaml | 1 + themes/dark-sand-theme.yaml | 1 + themes/dark-sea-green.yaml | 3 +- themes/dark-sky-fork-fork.yaml | 1 + themes/dark-soft-theme-sm.yaml | 52 - themes/dark-solarin-2021.yaml | 52 - themes/dark-springbok.yaml | 1 + themes/dark-terminal-pro.yaml | 1 + themes/dark-theme-blue.yaml | 5 +- themes/dark-theme-by-sanan.yaml | 3 +- themes/dark-theme-default-by-luisfelipe.yaml | 50 - themes/dark-theme-new.yaml | 1 + themes/dark-theme-v2.yaml | 1 + themes/dark-theme.yaml | 1 + themes/dark-v3.yaml | 1 + themes/dark-vibes.yaml | 1 + themes/dark-visual-studio.yaml | 1 + themes/dark-with-blue.yaml | 6 +- themes/dark-wolf.yaml | 1 + themes/dark-yellow-flat.yaml | 52 - themes/dark.yaml | 91 +- themes/darka.yaml | 52 - themes/darkalchemy-basic.yaml | 52 - themes/darkalicious.yaml | 3 + themes/darkasp.yaml | 52 - themes/darkblue-theme-official.yaml | 1 + themes/darkblue-theme.yaml | 52 - themes/darkbubble.yaml | 1 + themes/darkbutter.yaml | 52 - themes/darkdarkdark.yaml | 1 + themes/darker-b.yaml | 1 + themes/darker-monokai-gold.yaml | 1 + themes/darker-solarized.yaml | 2 + themes/darker-than-black.yaml | 52 - themes/darkest.yaml | 52 - themes/darkestside-theme.yaml | 3 +- themes/darkfontenelestheme.yaml | 52 - themes/darkfusion.yaml | 1 + themes/darkgreen.yaml | 3 + themes/darkheist.yaml | 3 +- themes/darkish.yaml | 2 + themes/darkit-astral.yaml | 52 - themes/darkj.yaml | 1 + themes/darkknight.yaml | 1 + themes/darklimeteal.yaml | 1 + themes/darklover.yaml | 1 + themes/darkly-theme.yaml | 1 + themes/darkly.yaml | 1 + themes/darkness-color-theme.yaml | 1 + themes/darkness-of-my-soul.yaml | 1 + themes/darkoo.yaml | 1 + themes/darkorange.yaml | 3 +- themes/darkpinkpro.yaml | 52 - themes/darkplastic.yaml | 1 + themes/darkpurple.yaml | 52 - themes/darkquark.yaml | 1 + themes/darkr-green.yaml | 1 + themes/darkred.yaml | 1 + themes/darkroom.yaml | 1 + themes/darkroy-night.yaml | 1 + themes/darkroy.yaml | 1 + themes/darkrr-green.yaml | 1 + themes/darkrrr-green.yaml | 1 + themes/darkrrrr-green.yaml | 1 + themes/darkrrrrr-green.yaml | 1 + themes/darksian-theme.yaml | 1 + themes/darkside-contrast.yaml | 52 - themes/darkside-light.yaml | 52 - themes/darkside.yaml | 52 - themes/darksome.yaml | 3 + themes/darkspace.yaml | 51 +- themes/darkstar.yaml | 3 +- themes/darkstash.yaml | 1 + themes/darktra.yaml | 3 +- themes/darkula.yaml | 81 +- themes/darkuto.yaml | 1 + themes/darkvoid-ocean.yaml | 1 + themes/darkvoid.yaml | 1 + themes/darkwaves-ashen-core.yaml | 1 + themes/darkwaves-celestial-mist.yaml | 1 + themes/darkwaves-cloud-lands.yaml | 1 + themes/darkwaves-driftwood.yaml | 1 + themes/darkwaves-forge.yaml | 1 + themes/darkwaves-gray-elegance.yaml | 1 + themes/darkwaves-nebula.yaml | 1 + themes/darkwaves-obsidian.yaml | 1 + themes/darkwaves-spectrum.yaml | 1 + themes/darkwind-default.yaml | 52 - themes/darky-purple-storm.yaml | 52 - themes/darky-purple.yaml | 52 - themes/darkyamaris.yaml | 1 + themes/darth-insidious.yaml | 52 - themes/darth-invader.yaml | 52 - themes/darthbuddy.yaml | 1 + themes/dartpad.yaml | 52 - themes/daru.yaml | 1 + themes/darwin.yaml | 1 + themes/darxmon.yaml | 1 + themes/dashxe.yaml | 1 + themes/davi-lacerda-dark.yaml | 1 + themes/davi-lacerda-light.yaml | 1 + themes/david.yaml | 52 - themes/daviontheme.yaml | 1 + themes/dawnblush.yaml | 1 + themes/day-n-nite.yaml | 1 + themes/day.yaml | 52 - themes/dayfox.yaml | 3 +- themes/daysofwineandroses.yaml | 1 + themes/dbt-dark-theme.yaml | 52 - themes/dbt-fusion.yaml | 52 - themes/dbt-light-theme.yaml | 52 - themes/dc-dark-theme.yaml | 5 +- themes/dcdevthemered.yaml | 52 - themes/dead-club-city.yaml | 1 + themes/deadbeef.yaml | 1 + themes/deadmura.yaml | 1 + themes/deadpool.yaml | 52 - themes/deaving-theme.yaml | 3 +- themes/decayce.yaml | 52 - themes/deco.yaml | 3 + themes/deeold.yaml | 1 + themes/deep-dark-blue.yaml | 1 + themes/deep-dark-purple.yaml | 1 + themes/deep-dark-teal.yaml | 1 + themes/deep-dark.yaml | 1 + themes/deep-indigo-wisdom-intuition.yaml | 1 + themes/deep-purple-fork-fork.yaml | 52 - themes/deep-purple-fork.yaml | 52 - themes/deep-purple-theme.yaml | 52 - themes/deep-purple.yaml | 89 +- themes/deep-rainforest.yaml | 1 + themes/deep-sea-navigator.yaml | 52 - themes/deep-space-dark.yaml | 52 - themes/deep-teal.yaml | 52 - themes/deep-void.yaml | 52 - themes/deepslime.yaml | 1 + themes/deepwave.yaml | 1 + themes/deepwoods-autumn-needles.yaml | 3 + themes/deepwoods-frosted-pines.yaml | 3 + themes/deepwoods-high-canopy.yaml | 3 + themes/deepwoods-spring-thaw.yaml | 3 + themes/default-dimmed.yaml | 8 +- themes/default-enhanced.yaml | 1 + themes/default-theme.yaml | 1 + themes/defaults.yaml | 52 - themes/defdo-base.yaml | 52 - themes/defdo-halloween.yaml | 52 - themes/definetely-not-github-s-theme.yaml | 1 + themes/definition-theme2023.yaml | 52 - themes/dejaypiii.yaml | 1 + themes/dekirisu-s-rust-theme.yaml | 52 - themes/delowar-dark-pro.yaml | 1 + themes/delowar-monokai-pro.yaml | 1 + themes/delowar-ocean-blue.yaml | 1 + themes/demon-dark-pro.yaml | 1 + themes/demon-light-pro.yaml | 1 + themes/demon-slayer-light-theme.yaml | 5 +- themes/demon.yaml | 52 - themes/desert-night.yaml | 52 - themes/desert-tide.yaml | 1 + themes/desert.yaml | 52 - themes/designcourse-theme.yaml | 52 - themes/designonev2.yaml | 1 + themes/dessert.yaml | 1 + themes/deus-ex-md-dark.yaml | 1 + themes/dev-code-theme-color-theme.yaml | 1 + themes/dev-dark-fork-fork.yaml | 52 - themes/dev-dev-color-theme.yaml | 1 + themes/dev-tachgurbanov.yaml | 1 + themes/dev-theme-pro-nebula-mist.yaml | 1 + themes/dev-theme-pro-nebula-void.yaml | 1 + themes/dev-theme-pro-ocean-mist.yaml | 1 + themes/dev-theme-pro-ocean-void.yaml | 1 + themes/dev-theme.yaml | 1 + themes/devcode.yaml | 1 + themes/devdojo-seppuku.yaml | 1 + themes/develer-dark.yaml | 1 + themes/developer-friendly-dark.yaml | 52 - themes/developers-theme-fork.yaml | 52 - themes/devhaven-dracula.yaml | 1 + themes/devjam-dark.yaml | 4 + themes/devmedia-dark-modern.yaml | 1 + themes/devmedia-dark.yaml | 1 + themes/devmedia-light.yaml | 1 + themes/devoption-light.yaml | 1 + themes/devr.yaml | 1 + themes/devsena-ultra-dark.yaml | 52 - themes/devtheme.yaml | 3 +- themes/devx-dark.yaml | 3 +- themes/dew-grey.yaml | 1 + themes/dewart.yaml | 1 + themes/dfp-idle.yaml | 1 + themes/dhamma-dark.yaml | 1 + themes/dhamma-light.yaml | 1 + themes/dharam-gfx-anthracite.yaml | 1 + themes/dharam-gfx-arc-blueberry.yaml | 1 + themes/dharam-gfx-arc-eggplant.yaml | 1 + themes/dharam-gfx-arc-reversed.yaml | 1 + themes/dharam-gfx-gold.yaml | 1 + themes/dharam-gfx-hacker-theme.yaml | 1 + themes/dharam-gfx-hight-contrast.yaml | 52 - themes/dharam-gfx-webdevcody.yaml | 1 + themes/diabo-theme.yaml | 52 - themes/diamond-theme.yaml | 1 + themes/digitaliss-light.yaml | 1 + themes/digitaliss-pastel.yaml | 1 + themes/digitaliss.yaml | 1 + themes/dimi-theme-dark.yaml | 52 - themes/dimi-theme-darker.yaml | 52 - themes/dimmed-dark-theme.yaml | 3 + themes/dimmed-theme.yaml | 1 + themes/dimmed.yaml | 3 +- themes/dioximo-dark.yaml | 1 + themes/dioximo-light.yaml | 1 + themes/discord-onyx.yaml | 1 + themes/discord-theme.yaml | 3 +- themes/dislexic.yaml | 3 +- themes/div-s-theme.yaml | 3 +- themes/dive-bar.yaml | 1 + themes/division-group-dark-theme.yaml | 1 + themes/dj-s-purple.yaml | 52 - themes/djolof.yaml | 1 + themes/dk-dark-high-contrast.yaml | 52 - themes/dna-helix.yaml | 52 - themes/dodimmed-dark.yaml | 52 - themes/doems-sunset.yaml | 1 + themes/doli-soft-green.yaml | 1 + themes/doli-universal.yaml | 52 - themes/doli-visual-studio.yaml | 52 - themes/dominator-paralyzer.yaml | 52 - themes/domtheme.yaml | 3 +- themes/doom-one-dark.yaml | 52 - themes/doom-one-light.yaml | 52 - themes/doom-one.yaml | 15 +- themes/dooshtheme.yaml | 4 +- themes/dork.yaml | 1 + themes/dorkmode.yaml | 1 + themes/dot-developer-dark.yaml | 52 - themes/dotportal.yaml | 52 - themes/dove.yaml | 1 + themes/downpour-contrast.yaml | 52 - themes/downpour-light.yaml | 52 - themes/downpour.yaml | 52 - themes/doxa-code-color-theme.yaml | 1 + themes/doyoubleed.yaml | 1 + themes/dqn.yaml | 1 + themes/dr-jones.yaml | 52 - themes/draco-dark.yaml | 5 +- themes/draconica.yaml | 1 + themes/dracula-2022.yaml | 1 + themes/dracula-at-dusk.yaml | 3 +- themes/dracula-at-midnight.yaml | 5 +- themes/dracula-at-night.yaml | 15 +- themes/dracula-dark.yaml | 52 - themes/dracula-dimmed-color-theme.yaml | 52 - themes/dracula-falcon.yaml | 1 + themes/dracula-gray.yaml | 52 - themes/dracula-high-contract.yaml | 1 + themes/dracula-light.yaml | 52 - themes/dracula-midnight.yaml | 1 + themes/dracula-min-light-darker-theme.yaml | 52 - themes/dracula-min-light-theme.yaml | 52 - themes/dracula-min-white-darker-theme.yaml | 52 - themes/dracula-min-white-theme.yaml | 52 - themes/dracula-pro-black.yaml | 52 - themes/dracula-pro.yaml | 52 - themes/dracula.yaml | 1 + themes/draculight.yaml | 2 + themes/draculish.yaml | 3 +- themes/dragn-dark-color-theme.yaml | 52 - themes/dragon.yaml | 52 - themes/dragonfly.yaml | 1 + themes/dragonight.yaml | 1 + themes/drake.yaml | 1 + themes/drakencord-blue-fork.yaml | 50 - themes/drakkar.yaml | 1 + themes/draquinho.yaml | 3 + themes/drasing-dark.yaml | 1 + themes/dreadbots-fork.yaml | 52 - themes/dreamer-theme.yaml | 1 + themes/dreamy-lights.yaml | 3 + themes/dribbble-theme-light.yaml | 52 - themes/drifter.yaml | 3 +- themes/drk.yaml | 1 + themes/drukalu.yaml | 52 - themes/drukyul-dark.yaml | 1 + themes/drukyul-light.yaml | 1 + themes/drux-theme.yaml | 1 + themes/ds-rose.yaml | 1 + themes/dsekon-theme.yaml | 52 - themes/duck-in-the-dream.yaml | 52 - themes/duck-in-the-lake.yaml | 52 - themes/duck-story.yaml | 3 +- themes/duckcash.yaml | 1 + themes/duckdevlabs.yaml | 1 + themes/duckeys-blurple.yaml | 52 - themes/ducks.yaml | 1 + themes/ducky-light.yaml | 1 + themes/dukana.yaml | 3 + themes/dukemonokai-color-theme.yaml | 52 - themes/dull-sun-dark.yaml | 1 + themes/dull-sun-light.yaml | 1 + themes/dull-sun.yaml | 1 + themes/dumdum-theme.yaml | 3 +- themes/dune-arrakis-incandescent.yaml | 52 - themes/dune-bene-gesserit.yaml | 52 - themes/dune-caladan-storm.yaml | 52 - themes/dune-fremen-sietch.yaml | 52 - themes/dune-giedi-prime.yaml | 52 - themes/dune-guild-navigator.yaml | 52 - themes/dune-harkonnen.yaml | 52 - themes/dune-house-atreides.yaml | 52 - themes/dune-ix-technology.yaml | 52 - themes/dune-kaitain.yaml | 52 - themes/dune-mentat.yaml | 52 - themes/dune-muad-dib.yaml | 52 - themes/dune-salusa-secundus.yaml | 52 - themes/dune-sandworm.yaml | 52 - themes/dune-sardaukar-imperial.yaml | 52 - themes/dune-spacing-guild.yaml | 52 - themes/dune-spice-vision.yaml | 52 - themes/dune-water-of-life.yaml | 52 - themes/duomage.yaml | 1 + themes/durgonix-dark.yaml | 1 + themes/dusk-rider.yaml | 1 + themes/dusk.yaml | 89 +- themes/duskfox.yaml | 52 - themes/dutchtheme.yaml | 1 + themes/dynamic.yaml | 3 + themes/dyno-cute.yaml | 1 + themes/dyno.yaml | 1 + themes/dzsolarized-dark.yaml | 52 - themes/dzsolarized.yaml | 52 - themes/earl-grey.yaml | 1 + themes/early-bird.yaml | 1 + themes/early-riser.yaml | 3 + themes/earth-brown-stability-grounding.yaml | 1 + themes/earth-collection.yaml | 1 + themes/earthsong-contrast.yaml | 52 - themes/earthsong-light.yaml | 52 - themes/earthsong.yaml | 52 - themes/easter.yaml | 1 + themes/easy-eye.yaml | 52 - themes/easy-eyes-color-theme.yaml | 52 - themes/easy-light.yaml | 1 + themes/ebizome.yaml | 3 + themes/ecatheme.yaml | 3 +- themes/eclipsa.yaml | 3 +- themes/eclipse-dark-darker.yaml | 52 - themes/eclipse-dark-flat.yaml | 52 - themes/eclipse-dawn.yaml | 52 - themes/eclipse-flare.yaml | 52 - themes/eclipse-optics.yaml | 52 - themes/eclipse-penumbra.yaml | 52 - themes/eclipse-umbra.yaml | 52 - themes/ecogest-solarized-light.yaml | 52 - themes/edge-dark-aura.yaml | 52 - themes/edge-dark-neon.yaml | 52 - themes/edge-dark.yaml | 52 - themes/edge-light.yaml | 52 - themes/edgerunner.yaml | 52 - themes/editor.yaml | 52 - themes/edu4dev-vscode-theme-color.yaml | 1 + themes/eezoterial-dark.yaml | 1 + themes/eezoterial-light.yaml | 1 + themes/ef-arbutus.yaml | 1 + themes/ef-autumn.yaml | 1 + themes/ef-bio.yaml | 1 + themes/ef-cherie.yaml | 1 + themes/ef-cyprus.yaml | 1 + themes/ef-dark.yaml | 1 + themes/ef-day.yaml | 1 + themes/ef-deuteranopia-dark.yaml | 1 + themes/ef-deuteranopia-light.yaml | 1 + themes/ef-dream.yaml | 1 + themes/ef-duo-dark.yaml | 1 + themes/ef-duo-light.yaml | 1 + themes/ef-eagle.yaml | 1 + themes/ef-elea-dark.yaml | 1 + themes/ef-elea-light.yaml | 1 + themes/ef-frost.yaml | 1 + themes/ef-kassio.yaml | 1 + themes/ef-light.yaml | 1 + themes/ef-maris-dark.yaml | 1 + themes/ef-maris-light.yaml | 1 + themes/ef-melissa-dark.yaml | 1 + themes/ef-melissa-light.yaml | 1 + themes/ef-night.yaml | 1 + themes/ef-owl.yaml | 1 + themes/ef-reverie.yaml | 1 + themes/ef-rosa.yaml | 1 + themes/ef-spring.yaml | 1 + themes/ef-summer.yaml | 1 + themes/ef-symbiosis.yaml | 1 + themes/ef-trio-dark.yaml | 1 + themes/ef-trio-light.yaml | 1 + themes/ef-tritanopia-dark.yaml | 1 + themes/ef-tritanopia-light.yaml | 1 + themes/ef-winter.yaml | 1 + themes/eggsplo1t.yaml | 1 + themes/eh-s-website-theme.yaml | 50 - themes/eidolon-less-dark.yaml | 1 + themes/eidolon.yaml | 1 + themes/eigen-color-theme.yaml | 52 - themes/eiji-otieno-theme.yaml | 1 + themes/ein.yaml | 1 + themes/eink.yaml | 1 + themes/ekim.yaml | 1 + themes/eldar1984.yaml | 3 +- themes/elderberry.yaml | 1 + themes/eldritch-dark.yaml | 52 - themes/eldritch.yaml | 52 - themes/electric-blue.yaml | 52 - themes/electric-dreams.yaml | 52 - themes/electric-ice-darker.yaml | 1 + themes/electric-ice.yaml | 1 + themes/electric-labs.yaml | 50 - themes/electric-night.yaml | 1 + themes/electric-sheep.yaml | 1 + themes/electric-violet-fork.yaml | 52 - themes/electron-highlighter.yaml | 1 + themes/electron-vue.yaml | 52 - .../electronic-moonlight-theme-borders.yaml | 1 + themes/eleganceu.yaml | 3 + themes/elegant-black.yaml | 5 +- themes/elegant-red.yaml | 17 +- themes/eleganterror404.yaml | 1 + themes/elementary.yaml | 52 - themes/elementowl.yaml | 3 +- themes/elements.yaml | 1 + themes/elf-dream.yaml | 52 - themes/elhassan-neon-cyan.yaml | 1 + themes/elhassan-neon-dark-professional.yaml | 1 + themes/elhassan-neon-light-professional.yaml | 1 + themes/elhassan-neon-magenta.yaml | 1 + themes/elhassan-neon-purple.yaml | 1 + themes/elixir-theme-no-italics.yaml | 1 + ...elixir-theme-with-italics-less-dark-2.yaml | 1 + themes/elly.yaml | 1 + themes/elypink-dark-faded.yaml | 52 - themes/elypink-dark.yaml | 52 - themes/elypink-light-diamond.yaml | 52 - themes/elypink-light-faded.yaml | 52 - themes/elypink-light-spring.yaml | 52 - themes/elypink-light-summer.yaml | 52 - themes/elypink-light.yaml | 52 - themes/ember-glow.yaml | 1 + themes/ember.yaml | 3 +- themes/emberstone-dark-theme.yaml | 52 - themes/emberstone.yaml | 91 +- themes/emberwood.yaml | 1 + themes/emerald-fork.yaml | 52 - themes/emerald-matrix.yaml | 52 - themes/emerald.yaml | 1 + themes/emeralds.yaml | 87 +- themes/emi-theme.yaml | 1 + themes/emmess-periglaciar.yaml | 1 + themes/empire-monokai-dark.yaml | 1 + themes/empire-monokai-light.yaml | 1 + themes/enchant-high-contrast.yaml | 1 + themes/enchant.yaml | 1 + themes/encom.yaml | 3 +- themes/end-color-theme.yaml | 52 - themes/endeavouros-breeze-dark.yaml | 1 + themes/endeavouros-dark-high-contrast.yaml | 1 + themes/endeavouros-dark-night-shift.yaml | 1 + themes/endless-iris.yaml | 1 + .../energy-red-light-passion-alertness.yaml | 1 + themes/energy-red-passion-alertness.yaml | 1 + themes/energy-theme.yaml | 3 +- themes/enhanced-hubspot-theme.yaml | 52 - themes/enhanced-material-batman.yaml | 1 + themes/enhanced-material-fork.yaml | 1 + themes/enhanced-material.yaml | 52 - themes/enigma.yaml | 3 + themes/enki-night-owl.yaml | 52 - themes/enki-rainbow.yaml | 52 - themes/enki-red.yaml | 52 - themes/enki.yaml | 52 - themes/enlightened-ifission.yaml | 1 + themes/enough.yaml | 3 +- themes/enova.yaml | 3 +- themes/entardecer.yaml | 49 - themes/entropic-theme.yaml | 3 + themes/eon-react.yaml | 1 + themes/eon-theme-second.yaml | 1 + themes/eon-theme-v4.yaml | 1 + themes/eon-theme.yaml | 1 + themes/epsilon.yaml | 1 + themes/equinox-dark.yaml | 1 + themes/equinox-light.yaml | 1 + themes/eralith.yaml | 1 + themes/erikwdevtheme-color-theme.yaml | 52 - themes/eritbh-s-theme.yaml | 52 - themes/errordark.yaml | 52 - themes/errrrrm.yaml | 1 + themes/escook-theme-light.yaml | 1 + themes/eskey-theme.yaml | 3 + themes/espresso-dark-theme.yaml | 52 - themes/espresso-dark.yaml | 52 - themes/espresso-high.yaml | 52 - themes/etec-pfa-light.yaml | 1 + themes/eternal-autumn.yaml | 1 + themes/eternal-summer.yaml | 1 + themes/eternals-no-italic.yaml | 52 - themes/ethanli-turquoise-dark.yaml | 1 + themes/ethereal.yaml | 1 + themes/ethereum-dark-blue-theme.yaml | 52 - themes/ethereum-dark-grey-theme.yaml | 52 - themes/eva-01-berserk-theme.yaml | 52 - themes/eva-01.yaml | 52 - themes/eva-theme.yaml | 3 + ...-02-theme-enhanced-red-grey-variation.yaml | 52 - themes/evans-dark-theme.yaml | 3 +- themes/evans.yaml | 1 + themes/eve.yaml | 52 - themes/evening-sky.yaml | 1 + themes/everforest-dark.yaml | 52 - themes/everforest-night-hard.yaml | 3 + themes/everforest-night-light-hard.yaml | 3 + themes/everforest-night-light-medium.yaml | 3 + themes/everforest-night-light-soft.yaml | 3 + themes/everforest-night-medium.yaml | 3 + themes/everforest-night-soft.yaml | 3 + themes/everforest-pro-dark-cozy.yaml | 52 - themes/everforest-pro-dark-vibrant.yaml | 52 - themes/everforest-pro-dark.yaml | 52 - themes/everforest-pro-light-cozy.yaml | 52 - themes/everforest-pro-light-vibrant.yaml | 52 - themes/everforest-pro-light.yaml | 52 - themes/everforest-soft.yaml | 52 - themes/evergarden-winter-light.yaml | 52 - themes/evergarden-winter.yaml | 52 - themes/evergarden.yaml | 52 - themes/evernex.yaml | 52 - themes/evex-dark.yaml | 3 + themes/evondev-minimal-theme.yaml | 3 + themes/evondev-tailwind-theme.yaml | 1 + themes/evro-dark.yaml | 52 - themes/evro-darker-flat.yaml | 52 - themes/exalanddark.yaml | 1 + themes/execlabs.yaml | 3 +- themes/executive-level.yaml | 52 - themes/exias-theme-forest.yaml | 1 + themes/exias-theme-town.yaml | 1 + themes/exile.yaml | 1 + themes/exovoid-purple-better-c.yaml | 50 - themes/exploit.yaml | 3 +- themes/extreme-dark-theme.yaml | 50 - themes/eye-care-dark.yaml | 1 + themes/eye-care-light.yaml | 1 + themes/eye-care-owl-light.yaml | 52 - themes/eye-care-owl.yaml | 52 - themes/eye-care.yaml | 52 - themes/eye-comfort-light.yaml | 52 - themes/eyebreaker.yaml | 1 + themes/eyecooler.yaml | 1 + themes/eyeguard.yaml | 1 + themes/eyehealth-dark.yaml | 1 + themes/eyehealth-plus-light.yaml | 1 + themes/eyera.yaml | 1 + themes/eyesore.yaml | 1 + themes/ezcord-highcontrast.yaml | 1 + themes/ezcord-light.yaml | 1 + themes/ezcord-pastel.yaml | 1 + themes/ezcord.yaml | 1 + themes/ezgiturali-halloween.yaml | 1 + themes/ezra.yaml | 3 +- themes/fabi.yaml | 52 - themes/fabulapps-theme.yaml | 3 + themes/fabulous-las-vegas-after-dark.yaml | 3 + themes/fabulous-las-vegas-high-noon.yaml | 3 + themes/fady-ehab-amer-dark-theme.yaml | 52 - themes/fae.yaml | 52 - themes/faerie-online.yaml | 3 +- themes/fakedonald-s.yaml | 3 +- themes/falcon.yaml | 3 +- themes/falconui-theme.yaml | 1 + themes/famous-dev-light.yaml | 1 + themes/famous-dev-midnight.yaml | 1 + themes/fanuc-karel.yaml | 3 +- themes/fcc0ff.yaml | 3 + themes/fcode.yaml | 1 + themes/fearless-dark.yaml | 1 + themes/feefoolec-2-0.yaml | 1 + themes/feels-like-progress-light.yaml | 1 + themes/felina.yaml | 1 + themes/feline-color-theme.yaml | 3 +- themes/feline-theme.yaml | 3 +- themes/felixo-green-contrast.yaml | 1 + themes/felixo-green-light.yaml | 1 + themes/felixo-green.yaml | 1 + themes/felixo-orange-contrast.yaml | 1 + themes/felixo-orange-light.yaml | 1 + themes/felixo-orange.yaml | 1 + themes/felixoux-theme.yaml | 3 + themes/feliz-dark.yaml | 1 + themes/ferra.yaml | 1 + themes/feta.yaml | 1 + themes/fictionaltheme.yaml | 1 + themes/fiestas.yaml | 3 +- themes/fifties.yaml | 3 +- themes/fifty-shades-of-grape.yaml | 3 +- themes/fig.yaml | 50 - themes/filter-turbo-color-theme.yaml | 52 - themes/filtered.yaml | 2 + themes/finalbossjeff.yaml | 1 + themes/finn4ik666corp.yaml | 1 + themes/firefly.yaml | 52 - themes/firefox-dark.yaml | 52 - themes/firelight.yaml | 1 + themes/fireside.yaml | 1 + themes/firewatch.yaml | 1 + themes/flamelabs-fire.yaml | 1 + themes/flamelabs-plasma.yaml | 1 + themes/flamingo-nebula.yaml | 3 +- themes/flash-green-dark.yaml | 1 + themes/flat-light.yaml | 1 + themes/flat-theme-gray.yaml | 50 - themes/flat-theme-light.yaml | 50 - themes/flat-ui-immersed.yaml | 52 - themes/flat-ui-one-dark.yaml | 1 + themes/flatcap.yaml | 1 + themes/flatland-monokai-improved.yaml | 1 + themes/flatuiexp.yaml | 1 + themes/flavia.yaml | 1 + themes/fleetheme.yaml | 52 - themes/fleeting-theme-modern.yaml | 52 - themes/fleetish.yaml | 1 + themes/fleetonedark.yaml | 1 + themes/fleety.yaml | 1 + themes/fleex-theme-dark.yaml | 1 + themes/fleex-theme-forest-dark.yaml | 1 + themes/fleex-theme-forest-light.yaml | 1 + themes/fleex-theme-light.yaml | 1 + themes/fleex-theme-mist-dark.yaml | 1 + themes/fleex-theme-mist-light.yaml | 1 + themes/fleex-theme-ocean-dark.yaml | 1 + themes/fleex-theme-ocean-light.yaml | 1 + themes/fleex-theme-plum-dark.yaml | 1 + themes/fleex-theme-plum-light.yaml | 1 + themes/fleex-theme-rose-dark.yaml | 1 + themes/fleex-theme-rose-light.yaml | 1 + themes/fleex-theme-sand-dark.yaml | 1 + themes/fleex-theme-sand-light.yaml | 1 + themes/fleex-theme-warm-dark.yaml | 1 + themes/fleex-theme-warm-light.yaml | 1 + themes/fleury-theme.yaml | 3 +- themes/flex-appeal.yaml | 4 +- themes/flexoki.yaml | 52 - themes/flippidippi-light.yaml | 52 - themes/flora.yaml | 1 + themes/florence.yaml | 1 + themes/floriamaris.yaml | 1 + themes/florist-dark.yaml | 52 - themes/florist-light.yaml | 52 - themes/flow-better-theme.yaml | 1 + themes/fluentblue.yaml | 1 + themes/fluffy-dark-theme.yaml | 3 +- themes/fluffy-theme.yaml | 3 +- themes/fluid-light-theme.yaml | 3 +- themes/flukerbr-theme.yaml | 5 +- themes/fluminense.yaml | 52 - themes/fluorite-theme.yaml | 3 +- themes/flutter-dark.yaml | 52 - themes/flutter-theme-dark.yaml | 5 +- themes/flux-dark.yaml | 1 + themes/flux-dawn.yaml | 52 - themes/flux-daylight.yaml | 52 - themes/flux-night.yaml | 52 - themes/flux-twilight.yaml | 52 - themes/flux.yaml | 1 + themes/fluxish.yaml | 1 + themes/foco-1-0-0.yaml | 52 - ...s-blue-colorblind-concentration-trust.yaml | 1 + themes/focus-blue-concentration-trust.yaml | 1 + ...lue-high-contrast-concentration-trust.yaml | 1 + .../focus-blue-light-concentration-trust.yaml | 1 + themes/focus-colors.yaml | 52 - themes/focus-dark-fork-fork.yaml | 1 + themes/focusoncoding.yaml | 1 + themes/fodder-contrast.yaml | 52 - themes/fodder-light.yaml | 52 - themes/fodder.yaml | 52 - themes/fog-hazy.yaml | 1 + themes/foggy-forest-v1.yaml | 52 - themes/foggy-minimal.yaml | 1 + themes/fonteeboa.yaml | 7 +- themes/forest-color-theme.yaml | 52 - themes/forest-green-vitality-connection.yaml | 1 + themes/forest-green.yaml | 1 + themes/forest-light.yaml | 1 + themes/forest-night-ethereal-magic.yaml | 52 - themes/forest-night-italic-serenade.yaml | 52 - themes/forest-night-serenade.yaml | 52 - themes/forest-night.yaml | 1 + themes/forest-rose.yaml | 52 - themes/forest-tech.yaml | 52 - themes/forest-violet.yaml | 1 + themes/forestfly-dark-hard.yaml | 1 + themes/forestfly-dark.yaml | 1 + themes/forestfly-light-hard.yaml | 1 + themes/forestlook.yaml | 1 + themes/forestry.yaml | 3 + themes/forge-dark.yaml | 1 + themes/forge-light.yaml | 1 + themes/formal.yaml | 1 + themes/formosa-dark-ipanema-blue.yaml | 1 + themes/formosa-dark-night-green.yaml | 1 + themes/formosa-light-ipanema-blue.yaml | 1 + themes/formosa-light-night-green.yaml | 1 + themes/forventone.yaml | 1 + themes/forxtu.yaml | 1 + themes/foundyn-dev.yaml | 1 + themes/foxdracula-color-theme.yaml | 52 - themes/foxnett-nexus-theme.yaml | 1 + themes/frankenstein.yaml | 1 + themes/frantic-contrast.yaml | 52 - themes/frantic-light.yaml | 52 - themes/frantic.yaml | 52 - themes/french-rose.yaml | 1 + themes/fresh-green-color-theme.yaml | 52 - themes/fresh-start.yaml | 1 + themes/freshcut-contrast.yaml | 52 - themes/freshcut-light.yaml | 52 - themes/freshcut.yaml | 52 - themes/fretefy.yaml | 1 + themes/friction-contrast.yaml | 52 - themes/friction-light.yaml | 52 - themes/friction.yaml | 52 - themes/fridge.yaml | 1 + themes/friendly.yaml | 1 + themes/frog-terminal.yaml | 3 +- themes/front-matter-cms-theme.yaml | 3 +- themes/frontend-galaxy.yaml | 1 + themes/frontier-contrast.yaml | 52 - themes/frontier-light.yaml | 52 - themes/frontier.yaml | 52 - themes/frost-spark-dark.yaml | 1 + themes/frozen-deep.yaml | 52 - themes/frubilar.yaml | 1 + themes/fruitbasket-dark.yaml | 1 + themes/fruitbasket-light.yaml | 1 + themes/fruity-loops.yaml | 6 +- themes/ftrblue.yaml | 5 +- ...k-all-these-vscode-custom-ugly-themes.yaml | 1 + themes/funchosa-dark-theme.yaml | 1 + themes/funcode.yaml | 1 + themes/functional.yaml | 1 + themes/furnace.yaml | 1 + themes/furukawa-pop-theme.yaml | 52 - themes/futuremotion-light.yaml | 1 + themes/futuristic-green.yaml | 1 + themes/futuristt.yaml | 3 +- themes/g-dark-blue-whale.yaml | 52 - themes/g-dark-jacksons-purple.yaml | 52 - themes/g-dark-light-alice-blue.yaml | 52 - themes/g-dark-light-glitter.yaml | 52 - themes/g-dark-light-hint-of-red.yaml | 52 - themes/g-dark-minimal-2-astronaut-blue.yaml | 52 - themes/g-dark-minimal-3-oxford-blue.yaml | 52 - themes/g-dark-minimal-midnight.yaml | 52 - themes/g-dark-one-love-black-pearl.yaml | 52 - themes/g-dark-one-love.yaml | 52 - .../g-dark-shader-h-ck3r-midnight-moss.yaml | 52 - themes/g-dark-shader-haiti.yaml | 52 - themes/g-dark-shader-mirage.yaml | 52 - themes/g-dark-shift-midnight-moss.yaml | 52 - themes/g-dark-shift-vulcan.yaml | 52 - themes/g-dark-valhalla.yaml | 52 - themes/g-i-reaper.yaml | 1 + themes/g-i-seraph.yaml | 1 + themes/g3-gray.yaml | 3 + themes/gagarin-theme.yaml | 1 + themes/galactic-flavored.yaml | 1 + themes/galactus.yaml | 49 - themes/galaxia.yaml | 1 + themes/galaxian.yaml | 1 + themes/galaxytheme.yaml | 52 - themes/galizur.yaml | 4 + themes/game-mode.yaml | 52 - themes/gameboy-classic-dark.yaml | 52 - themes/gameboy-classic-light.yaml | 52 - themes/gamma-fork.yaml | 52 - themes/gamma.yaml | 51 +- themes/ganbaru-blue.yaml | 52 - themes/ganbaru-dark.yaml | 52 - themes/gantheory-dark.yaml | 52 - themes/ganyu-theme.yaml | 1 + themes/gapstyle-vs-dark-modern.yaml | 52 - themes/gapstyle-vs.yaml | 52 - themes/garbage-oracle-dark.yaml | 3 + themes/garbage-oracle-light.yaml | 3 + themes/gatito-next-theme.yaml | 1 + themes/gatito-nightly-red.yaml | 1 + themes/gatito-theme.yaml | 3 +- themes/gatomontesdark2.yaml | 1 + themes/gauss-thetheme.yaml | 52 - themes/gckn.yaml | 52 - themes/gdfunkytheme.yaml | 3 + themes/gdscript35.yaml | 1 + themes/geartheme.yaml | 3 + themes/gekkou.yaml | 3 + themes/gelap.yaml | 3 +- themes/gelato.yaml | 1 + themes/gelgel.yaml | 1 + themes/gems-theme-default.yaml | 1 + themes/gems-theme-light.yaml | 1 + themes/gen-theme.yaml | 50 - themes/generated-color-theme.yaml | 1 + themes/genshin-impact-chiori-dark.yaml | 52 - themes/genshin-impact-chiori.yaml | 52 - themes/genshin-impact-citlali-dark.yaml | 52 - themes/genshin-impact-citlali.yaml | 52 - themes/genshin-impact-columbina.yaml | 52 - themes/genshin-impact-furina-dark.yaml | 52 - themes/genshin-impact-furina.yaml | 52 - themes/genshin-impact-ganyu-dark.yaml | 52 - .../genshin-impact-ganyu-high-contrast.yaml | 52 - themes/genshin-impact-ganyu-light.yaml | 52 - themes/genshin-impact-il-dottore-dark.yaml | 52 - themes/genshin-impact-il-dottore.yaml | 52 - .../genshin-impact-kamisato-ayaka-dark.yaml | 52 - themes/genshin-impact-kamisato-ayaka.yaml | 52 - themes/genshin-impact-layla-dark.yaml | 52 - themes/genshin-impact-layla.yaml | 52 - themes/genshin-impact-sandrone-dark.yaml | 52 - themes/genshin-impact-sandrone.yaml | 52 - themes/genshin-impact-scaramouche-dark.yaml | 52 - themes/genshin-impact-scaramouche.yaml | 52 - themes/genshin-impact-skirk-dark.yaml | 52 - themes/genshin-impact-skirk.yaml | 52 - themes/genshin-impact-wanderer-dark.yaml | 52 - themes/genshin-impact-wanderer.yaml | 52 - themes/genshin-impact-yae-miko-dark.yaml | 52 - themes/genshin-impact-yae-miko.yaml | 52 - ...genshin-impact-yumemizuki-mizuki-dark.yaml | 52 - ...mpact-yumemizuki-mizuki-high-contrast.yaml | 52 - ...enshin-impact-yumemizuki-mizuki-light.yaml | 52 - themes/genshin-vibes-celestine-bardlight.yaml | 50 - themes/genshin-vibes-damselette-whisper.yaml | 50 - themes/genshin-vibes-emergency-food.yaml | 50 - .../genshin-vibes-eternal-electro-throne.yaml | 50 - themes/genshin-vibes-fontaine-spotlight.yaml | 50 - themes/genshin-vibes-frost-ritual.yaml | 50 - themes/genshin-vibes-geo-contract-vault.yaml | 50 - themes/genshin-vibes-hydrocourt-midnight.yaml | 50 - themes/genshin-vibes-ice-oracle.yaml | 50 - themes/genshin-vibes-kusanali-dawnbloom.yaml | 50 - themes/genshin-vibes-lava-glaze-inferno.yaml | 50 - themes/genshin-vibes-morax-golden-seal.yaml | 50 - themes/genshin-vibes-outrider-blaze.yaml | 50 - themes/genshin-vibes-pyro-scout.yaml | 50 - themes/genshin-vibes-starry-companion.yaml | 50 - themes/genshin-vibes-stormrider-breeze.yaml | 50 - themes/genshin-vibes-sunforge-ember.yaml | 50 - themes/genshin-vibes-veiled-harbinger.yaml | 50 - themes/genshin-vibes-verdant-dreamweave.yaml | 50 - .../genshin-vibes-violet-eternity-glow.yaml | 50 - themes/gentil-dark.yaml | 1 + themes/gentle-builder.yaml | 52 - themes/gentle-clean-light.yaml | 1 + themes/gentle-clean-monokai.yaml | 1 + themes/gentle-dark-warm.yaml | 1 + themes/gentle-dark.yaml | 1 + themes/gentle-light-warmer.yaml | 1 + themes/gentle-light.yaml | 1 + themes/gentle-midnight-warm.yaml | 1 + themes/gentle-midnight.yaml | 1 + themes/gentleblack.yaml | 1 + themes/gfx.yaml | 1 + themes/gg-djaja-darken.yaml | 1 + themes/gg-djaja-default.yaml | 1 + themes/gg-djaja-light.yaml | 52 - themes/ghibli-day.yaml | 1 + themes/ghibli-forest-dark.yaml | 52 - themes/ghibli-night.yaml | 1 + themes/ghibli-sky-light.yaml | 3 + themes/ghost-louise.yaml | 1 + themes/ghostgrey.yaml | 1 + themes/ghostty-default-styledark.yaml | 52 - themes/ghostty-synthwave.yaml | 1 + themes/gigaaa.yaml | 1 + themes/gineticustheme.yaml | 1 + themes/ginseng.yaml | 1 + themes/gipsy-dark.yaml | 4 + themes/girls-theme.yaml | 52 - themes/github-blue-dark.yaml | 1 + themes/github-blue-darkest.yaml | 1 + themes/github-catppuccin-dark-mix.yaml | 52 - themes/github-catppuccin-dark.yaml | 52 - themes/github-colorblind.yaml | 52 - themes/github-contrast-theme.yaml | 1 + themes/github-contrast.yaml | 52 - themes/github-dank-dimmed.yaml | 3 +- themes/github-dark-colorblind-grayscale.yaml | 1 + themes/github-dark-default-grayscale.yaml | 1 + themes/github-dark-default.yaml | 52 - themes/github-dark-dimmed-grayscale.yaml | 1 + themes/github-dark-dimmed.yaml | 52 - .../github-dark-high-contrast-grayscale.yaml | 1 + themes/github-dark-mode.yaml | 3 +- themes/github-dark-palenight.yaml | 52 - themes/github-dark-theme.yaml | 52 - themes/github-dark-tritanopia.yaml | 1 + themes/github-light-default.yaml | 52 - themes/github-light-theme.yaml | 52 - themes/github-minimal.yaml | 52 - themes/github-revamp.yaml | 52 - themes/github-theme-by-humamafif.yaml | 3 +- themes/github.yaml | 52 - themes/gitlab-dark-grey.yaml | 52 - themes/gitlab-dark.yaml | 52 - themes/gitlab-light.yaml | 52 - themes/gitlab.yaml | 3 +- themes/giyu-tomioka.yaml | 52 - themes/giza.yaml | 81 +- themes/glacier-blue.yaml | 52 - themes/glance-contrast.yaml | 52 - themes/glance-light.yaml | 52 - themes/glance.yaml | 52 - themes/glassonion.yaml | 1 + themes/gleam-theme-minimal-dark.yaml | 52 - themes/glitchly-green.yaml | 52 - themes/gloam.yaml | 1 + themes/globe.yaml | 1 + themes/gloom-contrast.yaml | 52 - themes/gloom-light.yaml | 52 - themes/gloom.yaml | 52 - themes/glowfish-contrast.yaml | 52 - themes/glowfish-light.yaml | 52 - themes/glowfish.yaml | 52 - themes/glowing-sun.yaml | 1 + themes/glowing-yellow.yaml | 1 + themes/glowminerals.yaml | 4 + themes/glu-dark-lighter.yaml | 1 + themes/glu-dark.yaml | 1 + themes/glv-s-theme.yaml | 52 - themes/gms2.yaml | 52 - themes/gnome-base16.yaml | 52 - themes/go-playground.yaml | 52 - themes/go-source.yaml | 52 - themes/goa-beach-paradise.yaml | 1 + themes/god-theme.yaml | 3 +- themes/godot-4.yaml | 52 - themes/gogh.yaml | 52 - themes/gojo-infinity-dark.yaml | 52 - ...oku-code-dragon-ball-z-power-eye-safe.yaml | 52 - themes/gold.yaml | 1 + themes/golden-blue-color-theme.yaml | 1 + themes/golden-dracula.yaml | 1 + themes/golden-dullahan.yaml | 4 + themes/golden-era.yaml | 52 - themes/golden-eye.yaml | 1 + themes/golden-rain.yaml | 1 + themes/golden-sky.yaml | 1 + themes/golden-sunset.yaml | 1 + themes/golden-wave.yaml | 52 - themes/goldentheme.yaml | 52 - themes/goldfish-contrast.yaml | 52 - themes/goldfish-light.yaml | 52 - themes/goldfish.yaml | 52 - themes/goldream.yaml | 1 + themes/good-purple.yaml | 1 + themes/goodmonokai-color-theme.yaml | 52 - themes/goodnight-classic.yaml | 1 + themes/goodnight.yaml | 1 + themes/gooey-theme.yaml | 3 +- themes/googledark.yaml | 52 - themes/goolou.yaml | 1 + themes/goose.yaml | 1 + themes/goosebumps.yaml | 1 + themes/gopher.yaml | 1 + themes/gorfius-orange.yaml | 9 +- themes/gorfius-peace-forest.yaml | 1 + themes/gorg.yaml | 1 + themes/gosthy.yaml | 3 + themes/got-beyond-the-wall.yaml | 52 - themes/got-house-baratheon.yaml | 52 - themes/got-house-greyjoy.yaml | 52 - themes/got-house-lannister.yaml | 52 - themes/got-house-martell.yaml | 52 - themes/got-house-stark.yaml | 52 - themes/got-house-targaryen.yaml | 52 - themes/got-night-s-watch.yaml | 52 - themes/got-the-iron-throne.yaml | 52 - themes/gotham.yaml | 52 - themes/gothic-absinthe.yaml | 52 - themes/gothic-amber-fog.yaml | 52 - themes/gothic-blood-moon.yaml | 52 - themes/gothic-cathedral.yaml | 52 - themes/gothic-cemetery.yaml | 52 - themes/gothic-dark.yaml | 52 - themes/gothic-emerald-crypt.yaml | 52 - themes/gothic-jester.yaml | 52 - themes/gothic-light.yaml | 52 - themes/gothic-midnight-rose.yaml | 52 - themes/gothic-qaddy.yaml | 52 - themes/gothic-raven.yaml | 52 - themes/gothic-spider-lily.yaml | 52 - themes/gothic-twilight-forest.yaml | 52 - themes/gothic-vampire.yaml | 52 - themes/gothic-victorian-mourning.yaml | 52 - themes/gothic.yaml | 3 + themes/gourd.yaml | 1 + themes/gptheme-dark.yaml | 1 + themes/gptheme.yaml | 1 + themes/gracefulbear.yaml | 3 +- themes/grandblue-pastel.yaml | 1 + themes/grandblue-soft.yaml | 1 + themes/grandblue.yaml | 1 + themes/grank-blackout.yaml | 1 + themes/grank.yaml | 1 + themes/grapered.yaml | 1 + themes/grapevine.yaml | 1 + themes/graphlinq-dark.yaml | 1 + themes/grassrivers-sunset.yaml | 1 + themes/gravel-pit.yaml | 3 +- themes/graveyard-fork-fork.yaml | 52 - themes/graveyard.yaml | 52 - themes/gravity.yaml | 1 + themes/gray-matter.yaml | 1 + themes/gray-pastel.yaml | 1 + themes/graygraygray.yaml | 52 - themes/graymium-theme.yaml | 1 + themes/grayscale301-light.yaml | 52 - themes/great-white-bloodloss.yaml | 52 - themes/great-white-dark.yaml | 52 - themes/great-white-frost.yaml | 52 - themes/great-white-high-contrast-dark.yaml | 52 - themes/great-white-high-contrast-light.yaml | 52 - themes/great-white-light.yaml | 52 - themes/great-white-storm.yaml | 52 - themes/great-white.yaml | 3 +- themes/greblue.yaml | 1 + themes/greeeeen.yaml | 52 - themes/green-coffee.yaml | 52 - themes/green-geek.yaml | 1 + themes/green-hacker.yaml | 52 - themes/green-kingdom.yaml | 52 - themes/green-low-contrast.yaml | 3 +- themes/green-papper.yaml | 52 - themes/green-theme.yaml | 3 +- themes/green-tree.yaml | 52 - themes/green-valley-forest.yaml | 52 - themes/green-valley-matrix.yaml | 52 - themes/green-valley-midnight.yaml | 52 - themes/green-valley-mint.yaml | 52 - themes/green-valley-neo.yaml | 52 - themes/green-water.yaml | 1 + themes/green-yow.yaml | 3 + themes/green.yaml | 1 + themes/green500.yaml | 1 + themes/greenbreeze-dark.yaml | 1 + themes/greenbreeze-light.yaml | 1 + themes/greenbyte-dark.yaml | 1 + themes/greencloud.yaml | 1 + themes/greeney-v2.yaml | 1 + themes/greeney.yaml | 1 + themes/greeni.yaml | 5 +- themes/greenish.yaml | 1 + themes/greenmachine.yaml | 1 + themes/greenspace.yaml | 1 + themes/grewee-colorscheme.yaml | 1 + themes/greygull.yaml | 1 + themes/greyout.yaml | 52 - themes/greystillplays.yaml | 1 + themes/grimoire-nox.yaml | 52 - themes/grimoire.yaml | 1 + themes/grove-street-noir.yaml | 1 + themes/gru-black.yaml | 52 - themes/gruber-blue.yaml | 1 + themes/grumbra.yaml | 1 + themes/grunboxtheme.yaml | 52 - themes/grunge-contrast.yaml | 52 - themes/grunge-light.yaml | 52 - themes/grunge.yaml | 52 - themes/grusper.yaml | 1 + themes/gruvalized-dark.yaml | 4 + themes/gruvalized-light.yaml | 4 + themes/gruvbox-dark-anhoder.yaml | 52 - themes/gruvbox-drakenlords-dark-draken.yaml | 52 - themes/gruvbox-drakenlords-dark.yaml | 1 + themes/gruvbox-drakenlords-grey.yaml | 52 - themes/gruvbox-drakenlords-semi-dark.yaml | 52 - themes/gruvbox-ish-dark-hard.yaml | 52 - themes/gruvbox-ish-dark-medium.yaml | 52 - themes/gruvbox-ish-dark-soft.yaml | 52 - themes/gruvbox-light-medium.yaml | 52 - themes/gruvbox-light-soft.yaml | 52 - .../gruvbox-material-dark-claude-hybrid.yaml | 1 + themes/gruvbox-material-dark.yaml | 52 - themes/gruvbox-material-flat-dark.yaml | 52 - themes/gruvbox-material-flat-light.yaml | 52 - themes/gruvbox-material-light.yaml | 52 - themes/gruvbox-material-mix.yaml | 1 + themes/gruvbox-minor-dark-hard.yaml | 52 - themes/gruvbox-minor-dark-medium.yaml | 52 - themes/gruvbox-minor-dark-soft.yaml | 52 - themes/gruvbox-minor-light-hard.yaml | 52 - themes/gruvbox-minor-light-medium.yaml | 52 - themes/gruvbox-minor-light-soft.yaml | 52 - themes/gruvchad.yaml | 3 +- themes/gruvdark-gbm.yaml | 52 - themes/gruvdark-tokyo.yaml | 52 - themes/gruvdark.yaml | 52 - themes/gruvvy-watermelon.yaml | 5 +- themes/guezwhoz.yaml | 1 + themes/guisaldanha-light.yaml | 1 + themes/gujarat-vibrant-culture.yaml | 1 + themes/gum.yaml | 1 + themes/gumua.yaml | 52 - themes/gunivers.yaml | 1 + themes/gunmetal-code-pro.yaml | 5 +- themes/gustavoglins.yaml | 52 - themes/gusuku-limestone.yaml | 1 + themes/guttenbergovitz.yaml | 9 + themes/gvalley.yaml | 1 + themes/gyomei-himejima.yaml | 52 - themes/h1-dark-fork.yaml | 1 + themes/h1-light-fork.yaml | 1 + themes/haavyz.yaml | 1 + themes/habamax.yaml | 1 + themes/habamix.yaml | 3 +- themes/hachiko.yaml | 1 + themes/hack-and-lima.yaml | 52 - themes/hack-electron.yaml | 52 - themes/hack-minor.yaml | 1 + themes/hackage-theme.yaml | 1 + themes/hacker-blue.yaml | 17 +- themes/hacker-pink.yaml | 3 +- themes/hacker-x.yaml | 52 - themes/hacker.yaml | 52 - themes/hackish.yaml | 3 +- themes/hackpot-batman-vs-joker-dark.yaml | 52 - themes/hackpot-batman-vs-joker.yaml | 52 - themes/hackpot-dark-knight.yaml | 52 - themes/hackpot-darker-knight.yaml | 52 - themes/hackpot-garden-dark.yaml | 52 - themes/hackpot-garden-of-atlantis.yaml | 52 - themes/hackpot-garden-purple-haze.yaml | 52 - themes/hackpot-garden.yaml | 52 - themes/hackpot-muddy-garden.yaml | 52 - themes/hackpot-poisoned-garden.yaml | 52 - themes/hadar.yaml | 1 + themes/haidark-two.yaml | 52 - themes/halcyon.yaml | 1 + themes/half-gray.yaml | 1 + themes/halflife-contrast.yaml | 52 - themes/halflife-light.yaml | 52 - themes/halflife.yaml | 52 - themes/halloween-theme.yaml | 87 +- themes/halloween.yaml | 52 - themes/hallucination.yaml | 1 + themes/hamidthedev-professional.yaml | 52 - themes/hammerhead.yaml | 3 +- themes/hams-uno.yaml | 3 +- themes/han.yaml | 1 + themes/happy-dark.yaml | 1 + themes/happy-heart-1-dark-classic.yaml | 1 + themes/happy-heart-10-forest-green.yaml | 1 + themes/happy-heart-11-emerald-green.yaml | 1 + themes/happy-heart-12-midnight-purple.yaml | 1 + themes/happy-heart-13-royal-purple.yaml | 1 + themes/happy-heart-14-rose-gold.yaml | 1 + themes/happy-heart-15-chilli-paper.yaml | 1 + themes/happy-heart-16-grey.yaml | 1 + themes/happy-heart-17-yellow.yaml | 1 + themes/happy-heart-2-dark-orange.yaml | 1 + themes/happy-heart-3-dark-purple.yaml | 1 + themes/happy-heart-4-dark-green.yaml | 1 + themes/happy-heart-5-deep-blue.yaml | 1 + themes/happy-heart-6-ocean-blue.yaml | 1 + themes/happy-heart-7-navy-blue.yaml | 1 + themes/happy-heart-8-bright-light.yaml | 1 + themes/happy-heart-9-smooth-light.yaml | 1 + themes/hapsida.yaml | 1 + themes/hard-hacker-darker.yaml | 52 - themes/hard-hacker-light.yaml | 52 - themes/hard-hacker.yaml | 52 - themes/harddark.yaml | 52 - themes/hardwired-arctic-blue.yaml | 1 + themes/hardwired-electric-lime.yaml | 1 + themes/hardwired-purple.yaml | 1 + themes/hare-omagari.yaml | 1 + themes/harley-quinn-theme.yaml | 1 + themes/harmonized-dark.yaml | 52 - themes/harmonized-light-hc.yaml | 52 - themes/harmonized-light.yaml | 52 - themes/harmony-pulse.yaml | 1 + themes/harriet.yaml | 53 +- themes/harrys.yaml | 1 + themes/harshaddevpro.yaml | 1 + themes/hashirama-senju-god-of-shinobi.yaml | 52 - themes/haube-blue-1.yaml | 1 + themes/hawaii-contrast.yaml | 52 - themes/hawaii-light.yaml | 52 - themes/hawaii.yaml | 52 - themes/hc-zenburn.yaml | 52 - themes/hearth-dark.yaml | 1 + themes/hearth-light.yaml | 1 + themes/hecker-boy.yaml | 1 + themes/held.yaml | 1 + themes/helion.yaml | 1 + themes/helios-solarized-dark.yaml | 52 - themes/helios-solarized-light.yaml | 52 - themes/helix.yaml | 5 +- themes/hell-pine.yaml | 5 +- themes/hellfire.yaml | 1 + themes/hello-world-theme.yaml | 52 - themes/hendrikkels-dark.yaml | 1 + themes/hendrikkels-light.yaml | 1 + themes/heptapod.yaml | 1 + themes/herakles.yaml | 1 + themes/herbal.yaml | 1 + themes/hereafter.yaml | 1 + themes/hero-dark.yaml | 1 + themes/heroku-contrast.yaml | 52 - themes/heroku-light.yaml | 52 - themes/heroku.yaml | 52 - themes/herzha-dark.yaml | 2 + themes/herzha-flux.yaml | 2 + themes/herzha-vanta.yaml | 2 + themes/hfa-theme.yaml | 1 + themes/hhp1614.yaml | 1 + themes/hi-dark.yaml | 1 + themes/hi-light.yaml | 1 + themes/hibiscus.yaml | 52 - themes/high-alert-crimson.yaml | 52 - themes/high-contrast-april-light-theme.yaml | 52 - themes/high-contrast-april-theme.yaml | 52 - themes/high-contrast-august-light-theme.yaml | 52 - themes/high-contrast-february-dark-theme.yaml | 52 - ...trast-february-light-theme-accessible.yaml | 52 - ...gh-contrast-february-theme-accessible.yaml | 52 - themes/high-contrast-july-light-theme.yaml | 52 - themes/high-contrast-june-light-theme.yaml | 52 - ...-contrast-march-dark-theme-accessible.yaml | 52 - themes/high-contrast-march-dark-theme.yaml | 52 - ...contrast-march-light-theme-accessible.yaml | 52 - .../high-contrast-march-theme-accessible.yaml | 52 - themes/high-contrast-may-light-theme.yaml | 52 - .../high-contrast-september-light-theme.yaml | 52 - themes/high-contrast-sunset.yaml | 3 +- themes/high-tea.yaml | 52 - themes/highflyer.yaml | 1 + themes/highgruv.yaml | 1 + themes/highland-winter.yaml | 5 + themes/himalaya-dark.yaml | 1 + themes/hinode.yaml | 1 + themes/hipster-next.yaml | 1 + themes/hirakata.yaml | 3 +- themes/hive-contrast.yaml | 52 - themes/hive-light.yaml | 52 - themes/hive.yaml | 52 - themes/hobbyist-goth.yaml | 5 +- themes/hoccacas.yaml | 1 + themes/hocsinhnghiemtuc.yaml | 1 + themes/holdesher-dark.yaml | 1 + .../holo-s-wisdom-spice-and-wolf-theme.yaml | 1 + themes/hologram-night.yaml | 1 + themes/holy-bible.yaml | 1 + themes/homebrew.yaml | 13 +- themes/homecooked-theme.yaml | 52 - themes/homer.yaml | 1 + themes/homey.yaml | 1 + themes/honeycode.yaml | 1 + themes/honkai-star-rail-aventurine-dark.yaml | 52 - themes/honkai-star-rail-aventurine.yaml | 52 - themes/honkai-star-rail-cyrene-dark.yaml | 52 - themes/honkai-star-rail-cyrene.yaml | 52 - themes/honkai-star-rail-dan-heng-dark.yaml | 52 - themes/honkai-star-rail-dan-heng.yaml | 52 - themes/honkai-star-rail-firefly-dark.yaml | 52 - themes/honkai-star-rail-firefly.yaml | 52 - themes/honkai-star-rail-kafka-dark.yaml | 52 - themes/honkai-star-rail-kafka.yaml | 52 - themes/honkai-star-rail-march-7th-dark.yaml | 52 - themes/honkai-star-rail-march-7th.yaml | 52 - themes/honkai-star-rail-robin-dark.yaml | 52 - themes/honkai-star-rail-robin-light-soft.yaml | 52 - themes/honkai-star-rail-ruan-mei-dark.yaml | 52 - themes/honkai-star-rail-ruan-mei.yaml | 52 - themes/horimura.yaml | 1 + themes/horizon-contrast.yaml | 52 - themes/horizon-extended.yaml | 52 - themes/horizon-laker-theme.yaml | 1 + themes/horizon-light.yaml | 52 - themes/horizon.yaml | 52 - themes/horizondark.yaml | 1 + themes/horror-theme.yaml | 50 - themes/horus.yaml | 1 + themes/hot-pink-theme.yaml | 52 - themes/hot-stuff.yaml | 5 +- themes/hotrice.yaml | 3 + themes/house-of-the-dragon-team-greens.yaml | 1 + themes/houston.yaml | 15 +- themes/hq-pink-blue.yaml | 5 +- themes/htvodp.yaml | 1 + themes/huacat-pink-dark.yaml | 52 - themes/hub-light.yaml | 52 - themes/hub.yaml | 52 - themes/hugodvlp.yaml | 1 + themes/hulcu.yaml | 1 + themes/hulky.yaml | 1 + themes/human-dark.yaml | 52 - themes/human-high-contrast.yaml | 52 - themes/human-light.yaml | 52 - themes/human-low-light.yaml | 52 - themes/human-soft.yaml | 52 - themes/human-warm.yaml | 52 - themes/human.yaml | 2 + themes/hundred-oceans.yaml | 3 +- themes/hush-dark.yaml | 1 + themes/hush-light.yaml | 1 + themes/hutaotheme.yaml | 1 + themes/hybrid-dim.yaml | 3 +- themes/hybrid-next-gray-background.yaml | 1 + themes/hybrid-theme.yaml | 1 + themes/hydr-theme.yaml | 3 +- themes/hydra-night.yaml | 1 + themes/hydra-storm.yaml | 1 + themes/hydro-sea.yaml | 1 + themes/hydro-soft.yaml | 1 + themes/hydro.yaml | 1 + themes/hygge-kyst-dark.yaml | 3 + themes/hyle-color-theme.yaml | 1 + themes/hyle-night-night-color-theme.yaml | 52 - themes/hyped-down-fork.yaml | 52 - themes/hyped-down-theme.yaml | 52 - themes/hyper-ctrl-theme.yaml | 1 + themes/hyper.yaml | 1 + themes/hyperdark-theme.yaml | 5 +- themes/hyperlink.yaml | 3 + .../hyperrail-theme-hyper-syntax-colors.yaml | 1 + themes/hypersubatomic.yaml | 1 + themes/hypervoxel.yaml | 1 + themes/hyprluna.yaml | 52 - themes/hyrule-contrast.yaml | 52 - themes/hyrule-light.yaml | 52 - themes/hyrule.yaml | 52 - themes/i-don-t-know.yaml | 1 + themes/i-light-color-theme.yaml | 1 + themes/i-night-color-theme.yaml | 52 - themes/i-solarised-color-theme.yaml | 52 - themes/i3-dark-custom-ii.yaml | 52 - themes/i3-dark-github-dark.yaml | 52 - themes/i3-panda-custom-iii.yaml | 52 - themes/i3-panda-custom.yaml | 52 - themes/ian.yaml | 1 + themes/ibm-carbon-gray-10.yaml | 52 - themes/ibm-carbon-gray-100.yaml | 52 - themes/ibm-carbon-gray-90.yaml | 52 - themes/ibm-carbon-white.yaml | 52 - themes/icaria.yaml | 1 + themes/icattheme.yaml | 52 - themes/icc-light-theme.yaml | 1 + themes/ice-cube-dark.yaml | 3 + themes/ice-cube-light.yaml | 3 + themes/ice.yaml | 52 - themes/iceberg-contrast.yaml | 52 - themes/iceberg-light.yaml | 52 - themes/iceberg.yaml | 49 +- themes/icefall.yaml | 3 + themes/iceland.yaml | 1 + themes/icolordarkblue.yaml | 1 + themes/icolordarkcyan.yaml | 1 + themes/icolordarkgeekblue.yaml | 1 + themes/icolordarkgold.yaml | 1 + themes/icolordarkgreen.yaml | 1 + themes/icolordarklime.yaml | 1 + themes/icolordarkmagenta.yaml | 1 + themes/icolordarkorgane.yaml | 1 + themes/icolordarkpurple.yaml | 1 + themes/icolordarkred.yaml | 1 + themes/icolordarkvolcano.yaml | 1 + themes/icolordarkyellow.yaml | 1 + themes/icolorlightblue.yaml | 1 + themes/icolorlightcyan.yaml | 1 + themes/icolorlightgeekblue.yaml | 1 + themes/icolorlightgold.yaml | 1 + themes/icolorlightgreen.yaml | 1 + themes/icolorlightlime.yaml | 1 + themes/icolorlightmagenta.yaml | 1 + themes/icolorlightorgane.yaml | 1 + themes/icolorlightpurple.yaml | 1 + themes/icolorlightred.yaml | 1 + themes/icolorlightvolcano.yaml | 1 + themes/icolorlightyellow.yaml | 1 + themes/icon-group-dark.yaml | 52 - themes/icon-group-light.yaml | 52 - themes/idea-islands-dark.yaml | 3 +- themes/iditarod.yaml | 3 + themes/idk.yaml | 1 + themes/idle-dark.yaml | 3 + themes/idle-light.yaml | 3 + themes/idx-theme-dark.yaml | 52 - themes/idx-xcode-dark-improved.yaml | 52 - themes/igniter-theme-light.yaml | 1 + themes/igniter-theme.yaml | 1 + themes/ikaros-white.yaml | 1 + themes/ikaros.yaml | 1 + themes/ikki-vscode-dark-theme.yaml | 5 +- themes/ikki-vscode-light-theme.yaml | 5 +- themes/ikshana.yaml | 1 + themes/illuminate.yaml | 3 + themes/illumination-emerald.yaml | 1 + themes/illusion.yaml | 52 - themes/iloveagents-azure-ai-foundry-dark.yaml | 52 - .../iloveagents-azure-ai-foundry-light.yaml | 52 - themes/iloveagents-dark.yaml | 52 - themes/iloveagents-light.yaml | 52 - themes/ilyat-poimandres.yaml | 52 - themes/imba-dark.yaml | 52 - themes/imexoodeex.yaml | 52 - themes/in-bed-by-7pm.yaml | 5 +- themes/in-darkest-night.yaml | 1 + themes/in-his-earthy-elements.yaml | 1 + themes/in-rainbows-dark.yaml | 1 + themes/in-the-fog-dark.yaml | 52 - themes/index.json | 6450 +++++++++-------- themes/index.yaml | 52 - themes/indie-dev.yaml | 52 - themes/indielayer.yaml | 1 + themes/indigo-and-amaranth.yaml | 1 + themes/indigo-ice.yaml | 1 + themes/indique-theme.yaml | 3 +- themes/industry.yaml | 1 + themes/infatuation.yaml | 81 +- themes/inferius.yaml | 1 + themes/infinitus.yaml | 1 + ...finity-64-blackboard-by-shingo-murata.yaml | 1 + ...finity-64-whiteboard-by-shingo-murata.yaml | 1 + themes/infinity-dark-contrast.yaml | 52 - themes/infinity-night-theme.yaml | 6 +- themes/infinity.yaml | 1 + themes/ingeni.yaml | 1 + themes/inheritance.yaml | 52 - themes/inkpot.yaml | 1 + themes/inksea-dank.yaml | 1 + themes/inksea-dark.yaml | 1 + themes/inksea-dracula.yaml | 1 + themes/inksea-hacker.yaml | 1 + themes/inksea-midnight.yaml | 1 + themes/inksea-oceanic.yaml | 1 + themes/inksea-sea-monkey.yaml | 1 + themes/inksea.yaml | 1 + themes/inkstained.yaml | 1 + themes/inovando-theme.yaml | 52 - themes/insane.yaml | 52 - themes/insight.yaml | 1 + themes/inspiration.yaml | 1 + themes/instamuch.yaml | 1 + themes/intellij-dark-color-theme.yaml | 1 + themes/intellij-idea-islands-dark.yaml | 52 - themes/intellij-idea-islands-light.yaml | 52 - themes/intellij-idea-new-ui.yaml | 52 - themes/intellij-light-color-theme.yaml | 52 - themes/intellij-light-deaft.yaml | 1 + themes/intelliyay-color-theme.yaml | 52 - themes/intergalactic.yaml | 52 - themes/interstellar-blue-ii.yaml | 1 + themes/interstellar-blue.yaml | 1 + themes/interstellar.yaml | 1 + themes/intility-bifrost-theme.yaml | 2 + themes/into-the-unknow-fork.yaml | 52 - themes/intrepid-darkness-light.yaml | 1 + themes/intrepid-darkness.yaml | 1 + themes/invi.yaml | 3 +- themes/ionztorm-theme.yaml | 1 + themes/iris-pink.yaml | 52 - themes/irishbruse-s-color-theme.yaml | 1 + themes/ironhellrider.yaml | 1 + themes/ironman-theme-dark.yaml | 52 - themes/ironman-theme-light.yaml | 52 - themes/irony.yaml | 3 + themes/irrus-float.yaml | 52 - themes/is-them-tears-bro.yaml | 5 +- themes/isatoru.yaml | 52 - themes/islands-dark.yaml | 3 +- themes/islands-light.yaml | 52 - themes/isotope-contrast.yaml | 52 - themes/isotope-light.yaml | 52 - themes/isotope.yaml | 52 - themes/itsnp-dark-cyan.yaml | 1 + themes/itsnp-dark-pink.yaml | 1 + themes/itsnp-dark.yaml | 1 + themes/itsnp-night-blue.yaml | 1 + themes/itsnp-yellow.yaml | 1 + themes/iv-spade.yaml | 52 - themes/ivalo-color-theme.yaml | 52 - themes/iwa-s-code-theme.yaml | 52 - themes/j-cinco-da-manh.yaml | 1 + themes/j-theme.yaml | 1 + themes/jabrms.yaml | 1 + themes/jacaranda-theme.yaml | 3 +- themes/jackhammar.yaml | 52 - themes/jaga-theme.yaml | 1 + themes/jammy-jellyfish.yaml | 52 - themes/jamuntheme.yaml | 1 + themes/jannchie-black.yaml | 1 + themes/jannchie-dark-soft.yaml | 1 + themes/jannchie-dark.yaml | 1 + themes/jannchie-light-soft.yaml | 1 + themes/jannchie-light.yaml | 1 + themes/janus-light.yaml | 1 + themes/japanese-breakfast.yaml | 52 - themes/jartur.yaml | 1 + themes/jarvis-3d.yaml | 52 - themes/jarvis.yaml | 52 - themes/jasmine.yaml | 3 +- themes/java-dark-theme.yaml | 3 +- themes/javascript-modern-dark.yaml | 52 - themes/javascript-neon-dark.yaml | 52 - themes/javascript-vibrant-dark.yaml | 52 - themes/jaytheme.yaml | 52 - themes/jazari-dark.yaml | 1 + themes/jazari-light.yaml | 1 + themes/jbpc.yaml | 1 + themes/jcardenas.yaml | 52 - themes/jcsoftiablack.yaml | 1 + themes/jcsoftiadark.yaml | 1 + themes/jcsoftiadarkblue.yaml | 1 + themes/jcsoftiadarkred.yaml | 1 + themes/jd-s-abyss.yaml | 1 + themes/jdarkmaterial-v2.yaml | 1 + themes/jdh.yaml | 1 + themes/jehuty-dark.yaml | 1 + themes/jehuty-light.yaml | 1 + themes/jelly-theme.yaml | 91 +- themes/jelly.yaml | 89 +- themes/jellybeans-extended.yaml | 1 + themes/jellybeans-theme.yaml | 5 +- themes/jellybeans.yaml | 1 + themes/jellyfish.yaml | 89 +- themes/jeng-light.yaml | 52 - themes/jetbrain-fleet-color.yaml | 1 + themes/jetbrains-dark-theme.yaml | 52 - themes/jetbrains-deep-dark-theme.yaml | 52 - themes/jetbrains-ide-dark-theme.yaml | 52 - themes/jetcode.yaml | 1 + themes/jetdark.yaml | 1 + themes/jetvibe-darcula.yaml | 52 - themes/jewel-contrast.yaml | 52 - themes/jewel-light.yaml | 52 - themes/jewel.yaml | 52 - themes/jg-vsc.yaml | 1 + themes/jingle-contrast.yaml | 52 - themes/jingle-light.yaml | 52 - themes/jingle.yaml | 52 - themes/jinglecode.yaml | 1 + themes/jinshi-dark-theme.yaml | 1 + themes/jinshi-light-theme.yaml | 1 + themes/jinx.yaml | 2 + themes/jk.yaml | 1 + themes/jker-purple-wave.yaml | 52 - themes/jngl.yaml | 1 + themes/jo-o-campos-theme.yaml | 50 - themes/jocelyn.yaml | 1 + themes/jojobii-s-colors.yaml | 52 - themes/jokejoke.yaml | 1 + themes/jokenkai.yaml | 1 + themes/jokenpo-obscure.yaml | 1 + themes/joker-contrast.yaml | 52 - themes/joker-light.yaml | 52 - themes/joker-neon.yaml | 1 + themes/joker.yaml | 52 - themes/jollifake.yaml | 5 +- themes/jolly-light.yaml | 1 + themes/jone-light.yaml | 52 - themes/josi.yaml | 1 + themes/jott4c-dark.yaml | 3 +- themes/joyboy.yaml | 1 + themes/joyful-fork-fork.yaml | 52 - themes/js-dark-theme.yaml | 3 +- themes/jtvscode-dark.yaml | 1 + themes/jtvscode-light.yaml | 1 + themes/jugal13-theme.yaml | 1 + themes/juicy-contrast.yaml | 52 - themes/juicy-light.yaml | 52 - themes/juicy.yaml | 52 - themes/july-summer-vibes-dark-theme.yaml | 52 - themes/jummidark.yaml | 3 + themes/jummilight.yaml | 3 + themes/jumper-contrast.yaml | 52 - themes/jumper-light.yaml | 52 - themes/jumper.yaml | 52 - themes/jungle.yaml | 1 + themes/juniorcoder.yaml | 1 + themes/just-code-already-fork.yaml | 52 - themes/jwrdark.yaml | 52 - themes/k-colorable-dark.yaml | 3 + themes/k-colorable-light.yaml | 3 + themes/k-relaxed.yaml | 1 + themes/kabukich.yaml | 3 +- themes/kactus-dream-theme-dark.yaml | 3 + themes/kactus-dream-theme.yaml | 3 + themes/kadaxi-colors.yaml | 52 - themes/kadoku.yaml | 1 + themes/kai-garbage.yaml | 1 + themes/kai-sa-white-fork.yaml | 52 - themes/kai.yaml | 1 + themes/kailash-shaw-dark-theme.yaml | 52 - themes/kaimandres.yaml | 52 - themes/kaio.yaml | 3 + themes/kaiokenkolors.yaml | 5 +- themes/kaique-theme.yaml | 1 + themes/kaisa-dark.yaml | 52 - themes/kali-linux-theme.yaml | 52 - themes/kalia.yaml | 3 +- themes/kalidozza.yaml | 52 - themes/kalisi.yaml | 1 + themes/kalmia-high-contrast.yaml | 1 + themes/kalmia.yaml | 1 + themes/kami-theme.yaml | 1 + themes/kanagawa-dragon.yaml | 52 - themes/kanagawa-light.yaml | 1 + themes/kanagawa-lotus.yaml | 52 - themes/kanagawa-night.yaml | 3 +- themes/kanagawa-paper.yaml | 52 - themes/kanagawa-wave-light.yaml | 1 + themes/kanagawa-wave.yaml | 1 + themes/kanamin-dark.yaml | 1 + themes/kanao.yaml | 52 - themes/kanso-ink.yaml | 52 - themes/kanso-mist.yaml | 52 - themes/kanso-pearl.yaml | 52 - themes/kaolin-light-theme-alt.yaml | 52 - themes/kaolin-light-theme.yaml | 52 - themes/kaplan-dark.yaml | 3 + themes/kara.yaml | 1 + themes/karam-theme-darker.yaml | 1 + themes/karma.yaml | 52 - themes/karnataka-sandalwood-state.yaml | 1 + themes/karou-noir.yaml | 1 + themes/karou-theme.yaml | 1 + themes/karrot-theme-classic.yaml | 52 - themes/karry-color-golang.yaml | 52 - themes/kary-pro-colors-dark.yaml | 52 - themes/kary-pro-colors-light.yaml | 52 - themes/kashi.yaml | 1 + themes/kastorcode-dark-orange-theme.yaml | 3 +- themes/kastorcode-dark-purple-theme.yaml | 3 +- themes/katagawatheme.yaml | 52 - themes/kato.yaml | 1 + themes/kaupo.yaml | 3 + themes/kayhan.yaml | 1 + themes/kayto.yaml | 3 + themes/kaze.yaml | 3 + themes/kblue-minimal.yaml | 1 + themes/kdshade-darkbg.yaml | 1 + themes/keen-contrast.yaml | 52 - themes/keen-light.yaml | 52 - themes/keen.yaml | 52 - themes/kenobi-dark-theme.yaml | 1 + themes/kerala-god-s-own-country.yaml | 1 + themes/kerama-deep.yaml | 1 + themes/kermit-fork.yaml | 52 - themes/kesteren.yaml | 52 - themes/kh-gold-subtle.yaml | 1 + themes/kh-silver-subtle.yaml | 1 + themes/khoaneostyle.yaml | 50 - themes/kiiro-dark.yaml | 1 + themes/killer-dark.yaml | 1 + themes/kindfeeling.yaml | 52 - themes/kingfisher-fishing.yaml | 1 + themes/kinn.yaml | 1 + themes/kinnitchi-neon-dark-modern.yaml | 52 - themes/kintsugi-dark.yaml | 52 - themes/kintsugi-light.yaml | 52 - themes/kiona.yaml | 1 + themes/kira-theme.yaml | 1 + themes/kiranord.yaml | 50 - themes/kismat-default-colors.yaml | 52 - themes/kiss.yaml | 3 + themes/kite-dark.yaml | 52 - themes/kite-darker.yaml | 52 - themes/kite-light.yaml | 52 - themes/kitty-catty.yaml | 1 + themes/kitty-night.yaml | 1 + themes/kittypower.yaml | 52 - themes/kiwi-contrast.yaml | 52 - themes/kiwi-light.yaml | 52 - themes/kiwi.yaml | 52 - themes/kiwisoup-fork.yaml | 52 - themes/kjs-officials-electric-lime.yaml | 1 + themes/knapsack.yaml | 1 + themes/knfocus-alt.yaml | 1 + themes/knfocus-base.yaml | 1 + themes/knight-vscode.yaml | 1 + themes/knoctal-dark.yaml | 1 + themes/knoctal-darker.yaml | 1 + themes/knowit-dark.yaml | 1 + themes/knowlyr-dark.yaml | 3 + themes/knowlyr-light.yaml | 3 + themes/koala-codes-theme.yaml | 52 - themes/kod-purple.yaml | 1 + themes/kodex-arctic.yaml | 52 - themes/kodex.yaml | 52 - themes/koffee-kreme.yaml | 1 + themes/koi-noir-lan-theme.yaml | 1 + themes/koi-noir-theme.yaml | 1 + themes/koi-pond-dark.yaml | 52 - themes/koi-pond-light.yaml | 52 - themes/kokatheme.yaml | 1 + themes/koki-dark.yaml | 52 - themes/kokubo.yaml | 1 + themes/kolada.yaml | 3 +- themes/komorebi.yaml | 3 + themes/kong-light.yaml | 1 + themes/konng.yaml | 87 +- themes/kopo-theme.yaml | 3 +- themes/korbit.yaml | 52 - themes/korean-dancheong-dark.yaml | 5 +- themes/korsr-theme.yaml | 3 +- themes/kotama-otose.yaml | 1 + themes/kozy-darker.yaml | 1 + themes/kozy.yaml | 1 + themes/kpurple.yaml | 1 + themes/kradeno.yaml | 1 + themes/krb-blue.yaml | 1 + themes/krb-violet.yaml | 49 +- themes/kripton.yaml | 52 - themes/krishna-dark-elegant.yaml | 52 - themes/krishna-default-dark-theme.yaml | 1 + themes/kroma-cardinal-light.yaml | 3 + themes/krone.yaml | 2 + themes/krow-t.yaml | 1 + themes/kryptonite-theme.yaml | 52 - themes/ktrz-monokai.yaml | 5 +- themes/kubesong.yaml | 3 +- themes/kultist-v2.yaml | 1 + themes/kurdish-vibrant-theme.yaml | 52 - themes/kurdor-light.yaml | 1 + themes/kuro-sakura.yaml | 52 - themes/kuro-theme-color-theme.yaml | 1 + themes/kuro.yaml | 1 + themes/kurodake-green.yaml | 1 + themes/kuroir-dark-01-crimson.yaml | 52 - themes/kuroir-dark-02-vermilion.yaml | 52 - themes/kuroir-dark-03-amber.yaml | 52 - themes/kuroir-dark-04-goldenrod.yaml | 52 - themes/kuroir-dark-06-chartreuse.yaml | 52 - themes/kuroir-dark-07-fern.yaml | 52 - themes/kuroir-dark-08-emerald.yaml | 52 - themes/kuroir-dark-09-jade.yaml | 52 - themes/kuroir-dark-11-aqua.yaml | 52 - themes/kuroir-dark-14-cerulean.yaml | 52 - themes/kuroir-dark-15-sky.yaml | 52 - themes/kuroir-dark-18-indigo.yaml | 52 - themes/kuroir-dark-20-amethyst.yaml | 52 - themes/kuroir-dark-21-magenta.yaml | 52 - themes/kuroir-dark-22-fuchsia.yaml | 52 - themes/kuroir-dark-23-rose.yaml | 52 - themes/kuroir-dark-24-coral.yaml | 52 - themes/kuroir-light-03-amber.yaml | 52 - themes/kuroir-light-07-fern.yaml | 52 - themes/kuroir-light-09-jade.yaml | 52 - themes/kuroir-light-12-teal.yaml | 52 - themes/kuroir-light-15-sky.yaml | 52 - themes/kuroir-light-18-indigo.yaml | 52 - themes/kuroir-light-19-violet.yaml | 52 - themes/kuroir-light-23-rose.yaml | 52 - themes/kuroir-light-24-coral.yaml | 52 - themes/kyanite.yaml | 52 - themes/kybern.yaml | 3 +- themes/kybik-dark.yaml | 1 + themes/kybik.yaml | 1 + themes/kyngo-s-theme.yaml | 1 + themes/kyojuro-rengoku.yaml | 52 - themes/kyorazo-dark-theme.yaml | 52 - themes/lackluster-dark.yaml | 52 - themes/lackluster.yaml | 52 - themes/ladyluck-color-theme.yaml | 1 + themes/lanten-color-theme-dark.yaml | 1 + themes/lapis-dark.yaml | 1 + themes/lapis-light.yaml | 1 + themes/lapis.yaml | 1 + themes/lapres99.yaml | 1 + themes/laracasts-contrast.yaml | 52 - themes/laracasts-light.yaml | 52 - themes/laracasts.yaml | 52 - themes/laradocs.yaml | 1 + themes/laravel-contrast.yaml | 52 - themes/laravel-light.yaml | 52 - themes/laravel.yaml | 52 - themes/lascavo-classic-contrast.yaml | 4 + themes/lascavo-classic.yaml | 4 + themes/lascavo-cold.yaml | 4 + themes/laserkai.yaml | 3 +- themes/late-night.yaml | 1 + themes/lauds.yaml | 52 - themes/lavalink.yaml | 1 + themes/lavanda.yaml | 52 - themes/lavender-dark-theme.yaml | 52 - themes/lavender-light-theme.yaml | 52 - themes/lavender-light.yaml | 52 - themes/lavender.yaml | 52 - themes/lazuli.yaml | 1 + themes/lazy-yellow-lemon.yaml | 3 +- themes/lazygreed-theme.yaml | 3 + themes/lazzaretti-plenatech.yaml | 52 - themes/lazzaretti-win11.yaml | 52 - themes/lbb-builder-dark.yaml | 5 + themes/lbb-builder-light.yaml | 5 + themes/lc.yaml | 1 + themes/lcars.yaml | 1 + themes/le-moderne.yaml | 1 + themes/leaf-black.yaml | 52 - themes/leaf-dark-soft.yaml | 1 + themes/leaf-dark.yaml | 1 + themes/lean-coders-dark.yaml | 1 + themes/learn-with-sumit-theme.yaml | 52 - themes/lebannen-theme.yaml | 1 + themes/leehxd.yaml | 5 +- themes/leftish.yaml | 1 + themes/legacy-contrast.yaml | 52 - themes/legacy-light.yaml | 52 - themes/legacy-solarized-dark-color-theme.yaml | 3 + .../legacy-solarized-light-color-theme.yaml | 3 + themes/legendary-attack-of-blue.yaml | 52 - themes/legendary-dark.yaml | 52 - themes/legends-theme-night-fymhr-special.yaml | 1 + themes/legends-theme-night.yaml | 1 + themes/leios.yaml | 1 + themes/lemon.yaml | 1 + themes/lemonade.yaml | 1 + themes/leon-arantes.yaml | 1 + themes/leon.yaml | 1 + themes/leonida-keys-ocean.yaml | 1 + themes/lesbian.yaml | 52 - themes/lesser.yaml | 85 +- themes/let-s-code.yaml | 52 - themes/leviosa-theme.yaml | 3 +- themes/levuaska.yaml | 1 + themes/lht.yaml | 52 - themes/liangliang-one-monokai.yaml | 1 + themes/lichen-contrast.yaml | 52 - themes/lichen-light.yaml | 52 - themes/lichen.yaml | 52 - themes/liddlelabtheme.yaml | 1 + themes/liftoff.yaml | 1 + themes/lig-dark-soft.yaml | 1 + themes/lig-dark.yaml | 1 + themes/lig-light-soft.yaml | 1 + themes/lig-light.yaml | 1 + themes/light-brown.yaml | 5 +- themes/light-code-with-bars.yaml | 52 - themes/light-decay.yaml | 52 - themes/light-gruvdark-mono.yaml | 52 - themes/light-gruvdark-tokyo.yaml | 52 - themes/light-gruvdark.yaml | 52 - themes/light-jade.yaml | 52 - themes/light-mosqueta.yaml | 3 + themes/light-print.yaml | 3 +- themes/light-springbok.yaml | 1 + themes/light-theme.yaml | 1 + themes/light.yaml | 1 + themes/lightblack.yaml | 1 + themes/lightdelight.yaml | 1 + themes/lighter-a-theme-for-light-coders.yaml | 1 + themes/lightestlighttheme.yaml | 1 + themes/lighthaus.yaml | 1 + ...ghthouse-in-the-dark-boon-island-dark.yaml | 49 - ...hthouse-in-the-dark-boon-island-light.yaml | 49 - ...ghthouse-in-the-dark-rose-island-dark.yaml | 49 - ...hthouse-in-the-dark-rose-island-light.yaml | 49 - themes/lightning-dark.yaml | 52 - themes/lightning-light.yaml | 52 - themes/lightning-material-day.yaml | 52 - themes/lightning-material-evening.yaml | 52 - themes/lightning-material-midnight.yaml | 52 - themes/lightning-material-soft.yaml | 52 - themes/lightning-soft-dark.yaml | 52 - themes/lightning-soft.yaml | 52 - themes/lightning-theme.yaml | 3 +- themes/lightning.yaml | 52 - themes/ligiapink.yaml | 1 + themes/lilac-dreams.yaml | 1 + themes/lilac-grove.yaml | 1 + themes/lilac.yaml | 52 - themes/lima-theme.yaml | 1 + themes/limpo-dark.yaml | 1 + themes/limpo-darker.yaml | 1 + themes/linear-dark.yaml | 1 + themes/linear-light.yaml | 1 + themes/linkarzu-vscode-theme.yaml | 52 - themes/lino-dark-ruby.yaml | 52 - themes/lino.yaml | 1 + themes/lion.yaml | 3 + themes/lionel.yaml | 3 + themes/liquid-dark.yaml | 1 + themes/liquid-ochre.yaml | 1 + themes/liquid-ray-light.yaml | 52 - themes/liquid-ray-soft-pink.yaml | 52 - themes/liquid-ray.yaml | 52 - themes/liquor-theme.yaml | 1 + themes/liquorice.yaml | 1 + themes/little-league-dark.yaml | 52 - themes/little-league-darker.yaml | 52 - themes/little-league-light.yaml | 52 - themes/lives.yaml | 1 + themes/living-twilight.yaml | 1 + themes/lofi.yaml | 52 - themes/loki-official-classic.yaml | 52 - themes/loki-official-kang-edition.yaml | 52 - themes/loki-theme-contrast.yaml | 1 + themes/loki-theme.yaml | 1 + themes/loki.yaml | 52 - themes/lolo.yaml | 3 +- themes/london-underground.yaml | 1 + themes/lone-wolf-dark.yaml | 3 +- themes/lonely.yaml | 52 - themes/lonus-dark.yaml | 52 - themes/lookify-dark-mode.yaml | 52 - themes/lookify-light-mode.yaml | 52 - themes/looped.yaml | 1 + themes/loopy.yaml | 3 + themes/lordmorphy.yaml | 1 + themes/lore.yaml | 2 + themes/lostforindia.yaml | 3 + themes/lotus-dark.yaml | 52 - themes/lotus-flat-dusk.yaml | 1 + themes/lotus-flat-midnight.yaml | 1 + themes/lotus-light.yaml | 52 - themes/lovepurple.yaml | 1 + themes/lowlvl.yaml | 1 + themes/loyal-contrast.yaml | 52 - themes/loyal-light.yaml | 52 - themes/loyal.yaml | 52 - themes/luanslaslatheme.yaml | 1 + themes/luau-starlit.yaml | 52 - themes/lubasiverse-freewill.yaml | 1 + themes/lubasiverse.yaml | 1 + themes/lucario.yaml | 3 +- themes/lucid-labs-dark.yaml | 1 + themes/lucid-labs-light.yaml | 1 + .../lucifer-terminal-dark-hacker-edition.yaml | 52 - themes/lucky-green.yaml | 3 +- themes/luckyhub.yaml | 1 + themes/lui.yaml | 1 + themes/luiz-dark-theme.yaml | 52 - themes/luiz.yaml | 1 + themes/luke-skywriter.yaml | 52 - themes/lull.yaml | 1 + themes/lulutheme.yaml | 1 + themes/lumen-dark.yaml | 3 +- themes/lumenrift.yaml | 1 + themes/lumin.yaml | 1 + themes/lumina.yaml | 1 + themes/luminara-void.yaml | 1 + themes/luminarca-crep-sculo.yaml | 1 + themes/luminarca-luz.yaml | 1 + themes/luminarca-trevas.yaml | 1 + themes/luminashade-amethyst.yaml | 52 - themes/lumineclipse.yaml | 52 - themes/luminescence-theme.yaml | 3 +- themes/lumon-theme.yaml | 52 - themes/lumos-black.yaml | 1 + themes/lumos-dark-soft.yaml | 3 +- themes/lumos-dark.yaml | 1 + themes/lumos-light-soft.yaml | 52 - themes/lunar-eclipse-golden-hour.yaml | 52 - themes/lunar-eclipse-light.yaml | 52 - themes/lunar-eclipse.yaml | 52 - themes/lunar-pink-satellite.yaml | 52 - themes/lunar-pink.yaml | 52 - themes/lunar-theme.yaml | 52 - themes/lunar-vscode.yaml | 52 - themes/lunar.yaml | 52 - themes/lunaria.yaml | 1 + themes/lunna-dark.yaml | 1 + themes/lupine.yaml | 1 + themes/lupus.yaml | 1 + themes/luxark.yaml | 1 + themes/luxeforest.yaml | 1 + themes/lyra-s-vega.yaml | 52 - themes/lztheme.yaml | 1 + themes/m-jtgzc.yaml | 1 + themes/m-unity-s-custom-vscode-theme.yaml | 1 + themes/m.yaml | 1 + themes/m2d-fork.yaml | 1 + themes/mac-theme.yaml | 1 + themes/mach1-theme.yaml | 3 +- themes/machine.yaml | 52 - themes/macho-man.yaml | 1 + themes/macos-classic-dark.yaml | 50 - themes/macos-classic-light.yaml | 50 - themes/macos.yaml | 1 + themes/macrodata-refiners-classic.yaml | 1 + themes/macrodata-refiners-cold-harbor.yaml | 1 + themes/macrodata-refiners-defiant-jazz.yaml | 1 + themes/macrodata-refiners-ortbo.yaml | 1 + themes/macrodata-refiners-sweet-vitriol.yaml | 1 + themes/mad-dark-volt.yaml | 3 + themes/madak17z-darkmode-testing.yaml | 1 + themes/madness.yaml | 1 + themes/madnight.yaml | 1 + themes/madrid-night.yaml | 1 + themes/magenta-one-dark-pro.yaml | 3 +- themes/magic-mushroom-theme.yaml | 1 + themes/magicuser-bases.yaml | 1 + themes/magicuser-book.yaml | 1 + themes/magicuser-camouflage-light.yaml | 1 + themes/magicuser-camouflage.yaml | 1 + themes/magicuser-day.yaml | 1 + themes/magicuser-light-blue.yaml | 1 + themes/magicuser-light-gray.yaml | 1 + themes/magicuser-light-green.yaml | 1 + themes/magicuser-light-orange.yaml | 1 + themes/magicuser-light-purple.yaml | 1 + themes/magicuser-light.yaml | 1 + themes/magicuser-neblina.yaml | 1 + themes/magicuser-night-neblina.yaml | 1 + themes/magicuser-night.yaml | 1 + themes/magicuser-paladin.yaml | 1 + themes/magicuser-path.yaml | 1 + themes/magicuser-power.yaml | 1 + themes/magicuser-purple-night.yaml | 1 + themes/magicuser-purple.yaml | 1 + themes/magicuser-room-lamp.yaml | 1 + themes/magicuser-sea.yaml | 1 + themes/magicuser-space.yaml | 1 + themes/magicuser-specialist.yaml | 1 + themes/magicuser-staff.yaml | 1 + themes/magicuser-sun.yaml | 1 + themes/magicuser-talisman.yaml | 1 + themes/magicuser-teal-night.yaml | 1 + themes/magicuser-teal.yaml | 1 + themes/magicuser-veteran-blue.yaml | 1 + themes/magicuser-veteran-purple.yaml | 1 + themes/magicuser-veteran.yaml | 1 + themes/magicuser-wand-blue.yaml | 1 + themes/magicuser.yaml | 1 + themes/magnolia.yaml | 52 - themes/magnus-dark-theme.yaml | 52 - themes/maguh.yaml | 1 + themes/maharashtra-land-of-warriors.yaml | 1 + themes/mahiro.yaml | 1 + themes/mainframe-terminal.yaml | 52 - themes/maisum-xcode-dark.yaml | 52 - themes/mak1na-theme.yaml | 52 - themes/make-apps.yaml | 52 - themes/maki-konuri.yaml | 1 + themes/malachite.yaml | 1 + themes/maldi-dark.yaml | 1 + themes/malibu-sunset.yaml | 1 + themes/malibun-sunrise.yaml | 1 + themes/malte.yaml | 1 + themes/man-dark-stone.yaml | 52 - themes/manatee.yaml | 1 + themes/mandacaru-syntax-theme.yaml | 1 + themes/manhld-theme.yaml | 1 + themes/manjaro-owl.yaml | 1 + themes/manners.yaml | 1 + themes/manoshi.yaml | 5 +- themes/mantissa-dark.yaml | 1 + themes/mantissa-light.yaml | 1 + themes/maomao-dark-theme.yaml | 1 + themes/maomao-light-theme.yaml | 1 + themes/maple-dark.yaml | 52 - themes/maple-light.yaml | 52 - themes/marble-dark.yaml | 1 + themes/marci1.yaml | 1 + themes/marcial-theme.yaml | 52 - themes/marcosven.yaml | 1 + themes/mariana-light.yaml | 52 - themes/mariana-pro.yaml | 52 - themes/mariana-refined.yaml | 52 - themes/mariana.yaml | 17 +- themes/marigold-night.yaml | 1 + themes/mario-theme.yaml | 3 +- themes/marnic1505.yaml | 52 - themes/maroza-cyber-chill.yaml | 52 - themes/maroza-dark-theme.yaml | 52 - themes/maroza-light-theme.yaml | 52 - themes/maroza-soothing-aqua.yaml | 52 - themes/maroza-zen-pro.yaml | 52 - themes/mars.yaml | 1 + themes/marshmallow.yaml | 1 + themes/marsidark.yaml | 1 + themes/marstree.yaml | 1 + themes/marwen-labidi-theme.yaml | 1 + themes/matcha-pink.yaml | 52 - themes/matcha.yaml | 91 +- themes/matchalk.yaml | 5 +- themes/matchanaa.yaml | 1 + themes/matchaneco.yaml | 52 - themes/matchati.yaml | 1 + themes/material-color-theme.yaml | 1 + themes/material-community-ansi-16.yaml | 2 + themes/material-dark-color-theme.yaml | 52 - themes/material-midnight.yaml | 1 + themes/material-monokai-high-contrast.yaml | 1 + themes/material-neutral.yaml | 52 - themes/material-ocean.yaml | 4 + themes/material-pure-dark.yaml | 1 + themes/material-rainbow.yaml | 52 - themes/material-solarized.yaml | 4 + themes/material-theme-dark.yaml | 52 - ...heme-dhc-mix-in-pycharm-darcula-theme.yaml | 52 - ...material-theme-twilight-wave-ocean-ui.yaml | 52 - themes/material.yaml | 52 - themes/material1.yaml | 1 + themes/materialdarker-monokaist3.yaml | 52 - themes/materialdarkplus.yaml | 3 +- themes/matey.yaml | 1 + themes/matitheme-gotham.yaml | 1 + themes/matitheme.yaml | 1 + themes/matrix-hacking-dark-theme.yaml | 52 - themes/matrix-mint.yaml | 3 +- themes/matrix-reloaded-locked.yaml | 50 - themes/matrix-reloaded.yaml | 50 - themes/matrix.yaml | 3 +- themes/matronator-s-theme.yaml | 1 + themes/matte-atelier-ivory.yaml | 50 - themes/matte-atelier-obsidian-colorblind.yaml | 50 - .../matte-atelier-obsidian-high-contrast.yaml | 50 - themes/matte-atelier-obsidian.yaml | 50 - themes/matte-atelier-ros.yaml | 50 - themes/matte-atelier-sapphire.yaml | 50 - themes/matte-light-theme.yaml | 1 + themes/matteblack.yaml | 3 +- themes/matter.yaml | 17 +- themes/matteric-dark-default.yaml | 52 - themes/mauriceplus.yaml | 3 + themes/maus-dark.yaml | 52 - themes/mauve-contrast.yaml | 52 - themes/mauve-light.yaml | 52 - themes/mauve.yaml | 52 - themes/mavaia.yaml | 1 + themes/max2.yaml | 1 + themes/maxsumon.yaml | 1 + themes/mayukai.yaml | 52 - themes/mazda-rx7-theme.yaml | 1 + themes/mbp.yaml | 1 + themes/mcdark-theme.yaml | 1 + themes/mcdonalds-theme.yaml | 3 +- themes/mcyoda-s-light-theme.yaml | 3 + themes/md-abdur-rakib.yaml | 52 - themes/meadow-whisper.yaml | 52 - themes/meaow-dark.yaml | 52 - themes/mecha-01.yaml | 3 +- themes/medium-dark.yaml | 1 + themes/mega-green.yaml | 1 + themes/meinanziiii.yaml | 52 - themes/meitnerium-theme.yaml | 1 + themes/mel.yaml | 1 + themes/melancholy.yaml | 1 + themes/melange-redux-dark.yaml | 3 +- themes/melange-redux-light.yaml | 52 - themes/melcr.yaml | 1 + themes/melee-island.yaml | 1 + themes/melinoe.yaml | 1 + themes/mellow-contrast.yaml | 52 - themes/mellow-light.yaml | 52 - themes/mellow.yaml | 17 +- themes/melokai.yaml | 1 + themes/meloncode.yaml | 3 + themes/melyon-blue.yaml | 1 + themes/melyon.yaml | 1 + themes/menelik.yaml | 1 + themes/meoceanemerald.yaml | 52 - themes/meoceangray.yaml | 1 + themes/meridian-neutral.yaml | 52 - themes/meridian.yaml | 52 - themes/merlot.yaml | 1 + themes/mesalvo-cortex.yaml | 1 + themes/meshvoid-light.yaml | 52 - themes/meshvoid.yaml | 52 - themes/metagrama.yaml | 1 + themes/meteora.yaml | 3 +- themes/metropolis-light.yaml | 1 + themes/metropolis-sky-scape.yaml | 52 - themes/metropolis.yaml | 1 + themes/mgldvd-theme.yaml | 1 + themes/mh-theme.yaml | 1 + themes/mhfeizi.yaml | 1 + themes/mi4uokai.yaml | 1 + themes/miami-nights.yaml | 1 + themes/miami-vice.yaml | 52 - themes/miami-wind.yaml | 1 + themes/miasma-color-theme.yaml | 52 - themes/mibtema.yaml | 1 + themes/michota.yaml | 1 + themes/micky-dark-black.yaml | 1 + themes/micky-dark-lite-black.yaml | 1 + themes/micky-dark-lite.yaml | 1 + themes/microhouse.yaml | 3 +- themes/midas-touch-light.yaml | 1 + themes/midas-touch.yaml | 52 - themes/midcentury.yaml | 1 + themes/middle-field-canvas.yaml | 52 - themes/midight-sun.yaml | 1 + themes/midnight-blueprint.yaml | 1 + themes/midnight-breeze.yaml | 2 + themes/midnight-candy.yaml | 1 + themes/midnight-city.yaml | 52 - themes/midnight-color-theme.yaml | 1 + themes/midnight-dark.yaml | 1 + themes/midnight-darker.yaml | 1 + themes/midnight-dracula.yaml | 1 + themes/midnight-embers.yaml | 1 + themes/midnight-emerald.yaml | 1 + themes/midnight-forest.yaml | 1 + themes/midnight-fusion.yaml | 3 +- themes/midnight-gambler.yaml | 1 + themes/midnight-grove.yaml | 1 + themes/midnight-guest.yaml | 1 + themes/midnight-high-contrast-dark.yaml | 1 + themes/midnight-high-contrast-light.yaml | 1 + themes/midnight-koi.yaml | 1 + themes/midnight-lake.yaml | 1 + themes/midnight-light.yaml | 1 + themes/midnight-marina.yaml | 1 + themes/midnight-mirage.yaml | 52 - themes/midnight-monochrome.yaml | 1 + themes/midnight-monokai.yaml | 1 + themes/midnight-moon-eclipse.yaml | 52 - themes/midnight-moon-ukiyo.yaml | 52 - themes/midnight-moon.yaml | 52 - themes/midnight-ocean.yaml | 1 + themes/midnight-pastel.yaml | 52 - themes/midnight-pro.yaml | 52 - themes/midnight-purple-deep.yaml | 1 + themes/midnight-purple.yaml | 52 - themes/midnight-rainbow.yaml | 3 +- themes/midnight-rose-theme.yaml | 3 +- themes/midnight-sapphire.yaml | 5 +- themes/midnight-shadow-fork.yaml | 52 - themes/midnight-soft.yaml | 1 + themes/midnight-theme-light-soft.yaml | 1 + themes/midnight-theme-light.yaml | 1 + themes/midnight-theme.yaml | 1 + themes/midnight-ukiyo.yaml | 52 - themes/midnight-z.yaml | 1 + themes/midnightblue.yaml | 3 + themes/midnightglow.yaml | 1 + themes/midt.yaml | 1 + themes/midwinter-light.yaml | 1 + themes/mihari-bordered.yaml | 1 + themes/mihari.yaml | 1 + themes/mike-sources-green-crt.yaml | 1 + themes/mike-sources-hacker.yaml | 52 - themes/mike-sources-yellowstone.yaml | 1 + themes/mikes-vscode-theme-1.yaml | 1 + ...ited-gulajavaministudio-mayukai-theme.yaml | 52 - themes/miku-code-fusion-light.yaml | 52 - themes/miku-code-light.yaml | 52 - themes/miku-code.yaml | 52 - themes/milianor-theme.yaml | 1 + themes/military-fork.yaml | 52 - themes/milkyway.yaml | 52 - themes/mimesis-dark.yaml | 1 + themes/mimesis-light.yaml | 1 + themes/min-gruvbox.yaml | 52 - themes/minai.yaml | 1 + themes/mincom.yaml | 1 + themes/mineral-forest.yaml | 52 - themes/minimal-44-pro.yaml | 52 - themes/minimal-44.yaml | 52 - themes/minimal-dark-fork.yaml | 52 - themes/minimal-dark.yaml | 1 + themes/minimal-green.yaml | 5 +- themes/minimal-monochrome-dark.yaml | 50 - themes/minimal-monochrome-ink-dark.yaml | 50 - themes/minimal-monochrome-ink-light.yaml | 50 - themes/minimal-monochrome-light.yaml | 50 - themes/minimal-monochrome-pastel-dawn.yaml | 50 - themes/minimal-monochrome-pastel-light.yaml | 50 - themes/minimal-monochrome-slate-dark.yaml | 50 - ...mal-pastel-dark-vibrant-softer-yellow.yaml | 1 + themes/minimal-theme.yaml | 1 + themes/minimal-wave-floral-dark.yaml | 1 + themes/minimal-wave-floral-light.yaml | 1 + themes/minimal.yaml | 81 +- themes/minimalblue.yaml | 3 + themes/minimalesque.yaml | 1 + themes/minimalgold.yaml | 1 + themes/minimalist.yaml | 1 + themes/minimalistic-dark-theme.yaml | 1 + themes/minimalisticdarktheme.yaml | 1 + themes/minimalistik.yaml | 3 +- themes/minimalred.yaml | 1 + themes/miniml-dusk.yaml | 1 + themes/miniml-light.yaml | 1 + themes/miniml-midnight.yaml | 1 + themes/minimus.yaml | 1 + themes/minitheme.yaml | 3 +- themes/mink-dark-theme.yaml | 52 - themes/minokai-kalel.yaml | 52 - themes/minone.yaml | 3 +- themes/mint-chocolate.yaml | 3 +- themes/mint-dark.yaml | 52 - themes/mintchoc-contrast.yaml | 52 - themes/mintchoc-light.yaml | 52 - themes/mintchoc.yaml | 52 - themes/mintdark.yaml | 1 + themes/minty-dark.yaml | 1 + themes/mirai.yaml | 52 - themes/mirajdev.yaml | 1 + themes/miramare.yaml | 1 + themes/mist-theme.yaml | 52 - themes/mist.yaml | 1 + themes/misterioso.yaml | 1 + themes/misty-blue.yaml | 52 - themes/mistywind.yaml | 3 + themes/mitaverse.yaml | 1 + themes/mitsuri-kanroji.yaml | 52 - themes/mitsuri.yaml | 1 + themes/mixed-solarized-light.yaml | 52 - themes/mk-iceblack.yaml | 1 + themes/mk-mono-dark.yaml | 1 + themes/mkanet.yaml | 1 + themes/mkdeveloper-theme.yaml | 1 + themes/mlia-dark.yaml | 1 + themes/mlia-light.yaml | 1 + themes/mlia-soft.yaml | 1 + themes/mlv60-vintage-dark.yaml | 3 +- themes/mlv60-vintage-light.yaml | 5 +- themes/mocaccino-light.yaml | 3 +- themes/moderate-dimm.yaml | 1 + themes/modern-dracula-white.yaml | 1 + themes/modern-dracula.yaml | 1 + themes/modern-retro.yaml | 52 - themes/moderneclipse.yaml | 1 + themes/modernui-fork.yaml | 52 - themes/modernui.yaml | 1 + themes/modest-pink.yaml | 52 - themes/modified-darker-material-theme.yaml | 1 + themes/modus-operandi-deuteranopia.yaml | 3 + themes/modus-operandi-tinted.yaml | 3 + themes/modus-operandi-tritanopia.yaml | 3 + themes/modus-operandi.yaml | 3 + themes/modus-vivendi-deuteranopia.yaml | 3 + themes/modus-vivendi-tinted.yaml | 3 +- themes/modus-vivendi-tritanopia.yaml | 3 + themes/modus-vivendi.yaml | 3 + themes/moegi-black-zen.yaml | 52 - themes/moegi-black.yaml | 52 - themes/moegi-dark.yaml | 52 - themes/moegi-dawn.yaml | 52 - themes/moegi-iris.yaml | 52 - themes/moegi-light.yaml | 52 - themes/moegi-space.yaml | 52 - themes/moin-acme.yaml | 1 + themes/moin-dark.yaml | 1 + themes/moin-light.yaml | 1 + themes/moin-soft-dark.yaml | 1 + themes/mojito-pro-dark.yaml | 1 + themes/mojito-pro.yaml | 1 + themes/mokka-fork-darken-blue.yaml | 1 + themes/mokka.yaml | 1 + themes/mol-lurity-theme-soft-fixed.yaml | 1 + themes/mol-lurity-theme.yaml | 1 + themes/molarity-washed.yaml | 1 + themes/molineux.yaml | 1 + themes/moloch.yaml | 1 + themes/molokai-darker.yaml | 52 - themes/molten-aurora.yaml | 1 + themes/monaco-paulsevere-color-theme.yaml | 52 - themes/monet-impressionism.yaml | 52 - themes/monfika.yaml | 1 + themes/mono-atom.yaml | 52 - themes/mono-bw.yaml | 1 + themes/mono-cl.yaml | 1 + themes/mono-dark.yaml | 52 - themes/mono-next.yaml | 1 + themes/mono-white.yaml | 52 - themes/monochai-dark.yaml | 1 + themes/monochromator-dark-plain.yaml | 52 - themes/monochromator-light-plain.yaml | 52 - themes/monochrome-dark-amplified.yaml | 52 - themes/monochrome-dark-cool-gray.yaml | 52 - themes/monochrome-dark-gray.yaml | 1 + themes/monochrome-dark-indigo.yaml | 52 - themes/monochrome-dark-neutral.yaml | 1 + themes/monochrome-dark-slate.yaml | 1 + themes/monochrome-dark-stone.yaml | 1 + themes/monochrome-dark-subtle.yaml | 52 - themes/monochrome-dark-zinc.yaml | 1 + themes/monochrome-dark.yaml | 52 - themes/monochrome-github-edition.yaml | 52 - themes/monochrome-light-amplified.yaml | 52 - themes/monochrome-light-cool-gray.yaml | 52 - themes/monochrome-light-gray.yaml | 1 + themes/monochrome-light-indigo.yaml | 52 - themes/monochrome-light-neutral.yaml | 1 + themes/monochrome-light-slate.yaml | 1 + themes/monochrome-light-stone.yaml | 1 + themes/monochrome-light-subtle.yaml | 52 - themes/monochrome-light-zinc.yaml | 1 + themes/monochrome-light.yaml | 52 - themes/monochrome.yaml | 91 +- themes/monocious-color-theme.yaml | 52 - themes/monoclean-light.yaml | 1 + themes/monocr.yaml | 52 - themes/monocraft.yaml | 3 +- themes/monoeye.yaml | 1 + themes/monokai-classic.yaml | 52 - themes/monokai-color-theme-1.yaml | 1 + themes/monokai-dark-green.yaml | 52 - themes/monokai-dark.yaml | 52 - themes/monokai-deep-dark.yaml | 17 +- themes/monokai-deep-ocean.yaml | 1 + themes/monokai-drizzle.yaml | 1 + themes/monokai-extended.yaml | 1 + themes/monokai-faded.yaml | 3 +- themes/monokai-flow.yaml | 69 +- themes/monokai-grey.yaml | 1 + themes/monokai-grs.yaml | 53 +- themes/monokai-hc-color-theme.yaml | 52 - themes/monokai-japan-color-theme.yaml | 52 - themes/monokai-midnight.yaml | 1 + themes/monokai-minimal.yaml | 52 - themes/monokai-night-z-blue.yaml | 1 + themes/monokai-ocean-color-theme.yaml | 52 - themes/monokai-octagon.yaml | 1 + themes/monokai-okean.yaml | 52 - themes/monokai-original-sublime-theme.yaml | 5 +- themes/monokai-prime.yaml | 3 +- themes/monokai-pro.yaml | 52 - themes/monokai-rain.yaml | 1 + themes/monokai-red.yaml | 52 - themes/monokai-semantic.yaml | 52 - themes/monokai-seti-dark.yaml | 1 + themes/monokai-seti-light.yaml | 52 - themes/monokai-sharp.yaml | 1 + themes/monokai-soda-darker.yaml | 1 + themes/monokai-storm.yaml | 1 + themes/monokai-supersaturated.yaml | 3 +- themes/monokai-tornado.yaml | 1 + themes/monokai-underdark-mk.yaml | 1 + themes/monokai-underdark.yaml | 3 +- themes/monokai-unified.yaml | 52 - themes/monokai22.yaml | 2 + themes/monokaiju.yaml | 1 + themes/monokaisgq.yaml | 2 + themes/monokaizen.yaml | 1 + themes/monokard.yaml | 52 - themes/monokong.yaml | 1 + themes/monokuro-amber.yaml | 52 - themes/monolite.yaml | 1 + themes/monos-blac.yaml | 52 - themes/monospace-dark.yaml | 52 - themes/monospace-light.yaml | 52 - themes/monove-fork.yaml | 52 - themes/monrch-darc.yaml | 1 + themes/montana.yaml | 1 + themes/monte-cristo-theme.yaml | 52 - themes/monza-dark.yaml | 1 + themes/monzo-contrast.yaml | 52 - themes/monzo-light.yaml | 52 - themes/monzo.yaml | 52 - themes/moon-light-theme.yaml | 3 +- themes/moon-night.yaml | 1 + themes/moon-phases.yaml | 4 + themes/moon-purple.yaml | 3 +- themes/moon-violet-dark-plus.yaml | 3 +- themes/moonbloom-theme-official.yaml | 52 - themes/moonerized-dark.yaml | 1 + themes/moonerized-light.yaml | 1 + themes/moonfly.yaml | 1 + themes/moongate-theme-dark.yaml | 1 + themes/moongate-theme-light.yaml | 1 + themes/moonkai.yaml | 1 + themes/moonlight-ii.yaml | 52 - themes/moonlight.yaml | 52 - themes/moonokai.yaml | 3 +- themes/moonspell-northern-lights.yaml | 52 - themes/morass-contrast.yaml | 52 - themes/morass-light.yaml | 52 - themes/morass.yaml | 52 - themes/more-purple.yaml | 3 +- themes/morgan-codes.yaml | 52 - themes/mori-keycaps.yaml | 1 + themes/mori.yaml | 3 + themes/morita.yaml | 1 + themes/morning-mist.yaml | 1 + themes/morning-mocha.yaml | 1 + themes/morose-theme.yaml | 1 + themes/mosaic.yaml | 52 - themes/mosmmy.yaml | 1 + themes/moss-oracle.yaml | 3 + themes/mossframe-light.yaml | 1 + themes/mossframe-neon-darker-legacy.yaml | 1 + themes/mossframe-neon-legacy.yaml | 1 + themes/mossframe.yaml | 1 + themes/mother-stretch-my-hands.yaml | 1 + themes/motion-blue.yaml | 1 + themes/motiv8der-s-theme.yaml | 1 + themes/mount-kalaga-noir.yaml | 1 + themes/mountain-theme.yaml | 52 - themes/mountains-and-rivers.yaml | 1 + themes/mourning.yaml | 3 +- themes/mowgli.yaml | 1 + themes/mr-code-black.yaml | 1 + themes/mr-code-gunmetal.yaml | 1 + themes/ms-dev-theme.yaml | 1 + themes/msquare-dark.yaml | 52 - themes/mt-doom-theme.yaml | 50 - themes/mud-contrast.yaml | 52 - themes/mud-light.yaml | 52 - themes/mud-theme.yaml | 1 + themes/mud.yaml | 52 - themes/murasaki-theme.yaml | 1 + themes/muromachi.yaml | 52 - themes/murora-light-lite.yaml | 52 - themes/murtadapy-green.yaml | 1 + themes/mushroomsynth.yaml | 1 + themes/muted-mirage.yaml | 1 + themes/mutenight.yaml | 1 + themes/mwone-dark.yaml | 1 + themes/my-custom-theme.yaml | 1 + themes/my-dark-theme-refined-updated.yaml | 1 + themes/my-first-visual-studio-theme.yaml | 52 - themes/my-hero-academia-deku-plus-ultra.yaml | 52 - themes/my-light-theme-blue-dark.yaml | 1 + themes/my-light-theme-blue.yaml | 1 + ...-light-theme-light-green-fork-updated.yaml | 1 + ...ight-theme-light-green-paperblue-fork.yaml | 1 + ...t-theme-light-green-papermint-updated.yaml | 1 + ...theme-mint-sand-updated-fork-bluesand.yaml | 1 + themes/my-light-theme-mint-sand-updated.yaml | 1 + themes/my-light-theme.yaml | 1 + themes/my-monokai.yaml | 1 + themes/my-ocean-theme.yaml | 1 + themes/my-oceanic.yaml | 1 + themes/my-theme.yaml | 1 + themes/my-zu.yaml | 1 + themes/mycode-dark.yaml | 1 + themes/mygo.yaml | 1 + themes/mynthra.yaml | 1 + themes/myoptic-v2.yaml | 1 + themes/myoptic.yaml | 1 + themes/myrteal.yaml | 1 + themes/mystic-moonshadow.yaml | 1 + themes/mystic.yaml | 1 + themes/mystico-c64-pepto-ntsc-sony.yaml | 1 + themes/mystico-c64-pepto-pal.yaml | 1 + themes/mystico-c64.yaml | 1 + themes/mystico-deep-purple.yaml | 3 +- themes/mystico-forest-ocean.yaml | 1 + themes/mystico-mint.yaml | 3 +- themes/mystico-plum.yaml | 1 + themes/mystico-purples.yaml | 3 + themes/myvscode.yaml | 52 - themes/mz-light-grey-sharp.yaml | 1 + themes/n-darktheme.yaml | 1 + themes/n0m4d.yaml | 1 + themes/n7-lilac.yaml | 1 + themes/n7-maya.yaml | 1 + themes/n7-night-vision.yaml | 1 + themes/n7-purple-green.yaml | 1 + themes/n7-red-flare.yaml | 1 + themes/n7-soft-pink.yaml | 1 + themes/nachop-dark.yaml | 1 + themes/nachop-light-bordered.yaml | 1 + themes/nachop-light.yaml | 1 + themes/nada-theme.yaml | 1 + themes/nairobi-dark.yaml | 52 - themes/nanami-madobe-theme.yaml | 5 +- themes/nanowise.yaml | 1 + themes/naps-dusk-gold.yaml | 1 + themes/narasimha-fearless-dark-theme.yaml | 1 + themes/narixius-one-dark.yaml | 52 - themes/narunika.yaml | 3 +- themes/naruto-akatsuki.yaml | 52 - .../naruto-hinata-hyuga-byakugan-vision.yaml | 52 - themes/naruto-hokage-dawn.yaml | 52 - themes/naruto-hokage-orange.yaml | 52 - ...uto-itachi-uchiha-tsukuyomi-dimension.yaml | 52 - themes/naruto-jiraiya-gallant-toad-sage.yaml | 52 - themes/naruto-kakashi-copy-ninja.yaml | 52 - themes/naruto-kurama-nine-tails.yaml | 52 - ...hina-uzumaki-red-hot-blooded-habanero.yaml | 52 - ...might-guy-gate-of-death-madara-battle.yaml | 52 - themes/naruto-might-guy-gates-of-youth.yaml | 52 - .../naruto-minato-namikaze-yellow-flash.yaml | 52 - themes/naruto-pain-nagato-rinnegan-god.yaml | 52 - themes/naruto-sage-mode.yaml | 52 - ...to-sakura-haruno-cherry-blossom-storm.yaml | 52 - themes/naruto-sasuke-uchiha-sharingan.yaml | 52 - ...ruto-shikamaru-nara-shadow-possession.yaml | 52 - themes/naruto-shinobi-night.yaml | 52 - themes/natasha-theme.yaml | 52 - themes/natives-in-tech-theme.yaml | 1 + themes/natto-theme-2.yaml | 1 + themes/natural-faded-dark.yaml | 3 +- themes/natural-green-growth-harmony.yaml | 1 + .../natural-green-light-growth-harmony.yaml | 1 + themes/nature-color-theme.yaml | 1 + themes/nature-green-growth-harmony.yaml | 1 + themes/nature-green-light-growth-harmony.yaml | 1 + themes/nature.yaml | 1 + themes/nautilus.yaml | 1 + themes/naver.yaml | 1 + themes/navy-flat.yaml | 1 + themes/navy-nights-theme.yaml | 52 - themes/navy-theme.yaml | 1 + themes/navy.yaml | 1 + themes/nb-monochrome-dark.yaml | 52 - themes/ncl5c.yaml | 3 + themes/nebula-color-theme.yaml | 52 - ...-dark-vibrant-fabo-it-and-media-group.yaml | 52 - themes/nebula-nights.yaml | 52 - themes/nebula-pro-dark.yaml | 52 - themes/nebula-surge.yaml | 1 + themes/nebula-symphony-dark-pro.yaml | 1 + themes/nebula-symphony-dark.yaml | 1 + themes/nebula-symphony-light.yaml | 1 + themes/nebula.yaml | 53 +- themes/nebular-theme.yaml | 1 + themes/nebularomantic.yaml | 52 - themes/nebulous-luna.yaml | 1 + themes/necessity-aaa-light.yaml | 52 - themes/necessity-aaa.yaml | 52 - themes/negative-theme.yaml | 1 + themes/neil-s-theme-dark.yaml | 1 + themes/neil-s-theme.yaml | 1 + themes/nekhbet.yaml | 1 + themes/neki.yaml | 3 +- themes/neo-hacker-soft-premium.yaml | 52 - themes/neo-nuxt-matte.yaml | 52 - themes/neo-seoul-dark.yaml | 52 - themes/neo-seoul-light.yaml | 52 - themes/neo-vscode-theme.yaml | 52 - themes/neodark.yaml | 3 + themes/neofusion.yaml | 1 + themes/neogenesis.yaml | 1 + themes/neokai.yaml | 3 + themes/neon-black.yaml | 1 + themes/neon-color-dark-theme.yaml | 52 - themes/neon-cyber.yaml | 52 - themes/neon-cyberpunk.yaml | 52 - themes/neon-dream-code.yaml | 52 - themes/neon-dreams.yaml | 52 - themes/neon-dusk.yaml | 1 + themes/neon-forest.yaml | 1 + themes/neon-glow.yaml | 52 - themes/neon-green-light.yaml | 52 - themes/neon-green-midnight.yaml | 52 - themes/neon-lights.yaml | 3 + themes/neon-matrix.yaml | 52 - themes/neon-noir.yaml | 1 + themes/neon-ocean.yaml | 52 - themes/neon-palette-themes-red.yaml | 52 - themes/neon-shimmer-amethyst-core.yaml | 52 - themes/neon-shimmer-bubblegum-punk.yaml | 52 - themes/neon-shimmer-crimson-drive.yaml | 52 - themes/neon-shimmer.yaml | 52 - themes/neon-side.yaml | 1 + themes/neon-sunset.yaml | 52 - themes/neon-synthwave.yaml | 52 - themes/neon-theme.yaml | 52 - themes/neon-trench-theme.yaml | 1 + themes/neon-violet.yaml | 52 - themes/neonaska.yaml | 1 + themes/neonite.yaml | 52 - themes/neonmist.yaml | 1 + themes/neonshaded.yaml | 3 + themes/neorose-vimpine.yaml | 5 +- themes/neospace.yaml | 3 + themes/neospectrum-midnight.yaml | 3 + themes/neospectrum-mystic.yaml | 3 + themes/neovim-sp.yaml | 3 +- themes/neovim-theme.yaml | 52 - themes/nephtis-dark.yaml | 1 + themes/nephtis-light.yaml | 1 + themes/nerc-one-dark-a.yaml | 1 + themes/nerc-one-dark-b.yaml | 1 + themes/nerd-light.yaml | 1 + themes/nero.yaml | 1 + themes/nestjs-codes.yaml | 52 - themes/netbeans-harmonized.yaml | 52 - themes/netbilla-blue.yaml | 1 + themes/netlify-theme.yaml | 52 - themes/netlify.yaml | 52 - themes/netrunnaz.yaml | 1 + themes/netstack.yaml | 1 + themes/nettsi-monokai-darker.yaml | 1 + themes/netuno.yaml | 1 + themes/neumatter-night.yaml | 1 + themes/neuraltone.yaml | 1 + themes/neutral-gray-minimalism-focus.yaml | 1 + themes/neutral.yaml | 1 + themes/neutralvi.yaml | 52 - themes/neutron.yaml | 1 + themes/nevada.yaml | 1 + themes/nevejestvo-theme.yaml | 3 + themes/never-be-lost-day.yaml | 1 + themes/never-be-lost-night.yaml | 1 + themes/nevermore.yaml | 1 + themes/neverwhere.yaml | 1 + themes/nevo-black.yaml | 1 + themes/nevo-comfy.yaml | 1 + themes/nevo-pro.yaml | 52 - themes/nevo.yaml | 1 + themes/new-england-light-theme.yaml | 52 - themes/new-moon.yaml | 52 - themes/new-owl.yaml | 1 + themes/new-retro.yaml | 3 +- themes/new-south-wales-dark.yaml | 1 + themes/new-south-wales-light.yaml | 1 + themes/new-sphere.yaml | 1 + themes/new-theme.yaml | 1 + themes/new-wave-theme.yaml | 3 +- themes/newdarktheme.yaml | 1 + themes/newera-dark-theme.yaml | 52 - themes/newrailscasts.yaml | 52 - themes/newspaperlike.yaml | 1 + themes/newsprint-invert.yaml | 2 + themes/newsprint-so.yaml | 2 + themes/newsprint.yaml | 2 + themes/newton-contrast.yaml | 52 - themes/newton-light.yaml | 52 - themes/newton-next-official.yaml | 1 + themes/newton.yaml | 52 - themes/newx-light.yaml | 1 + themes/next-theme.yaml | 1 + themes/nextcode.yaml | 1 + themes/nextgen-terminal.yaml | 50 - themes/nexus-dark.yaml | 1 + themes/nexus.yaml | 1 + themes/ngc-aurora-dawn.yaml | 52 - themes/ngc-aurora-night.yaml | 52 - themes/ngc-forest-retreat.yaml | 52 - themes/ngc-midnight-base.yaml | 52 - themes/ngoding-bro.yaml | 1 + themes/nibelung-dark.yaml | 52 - themes/nibelung.yaml | 52 - themes/nice-dark.yaml | 52 - themes/nicedark-fork.yaml | 1 + themes/nicedark.yaml | 1 + themes/nicely-neon.yaml | 52 - themes/nier-automata-light-theme.yaml | 3 +- themes/nier-automata-theme.yaml | 3 +- themes/night-aurora.yaml | 52 - themes/night-blossom.yaml | 3 +- themes/night-blue-high.yaml | 52 - themes/night-city.yaml | 3 +- themes/night-cyan.yaml | 1 + themes/night-dragon.yaml | 52 - themes/night-fae-theme.yaml | 1 + themes/night-howl.yaml | 52 - themes/night-market.yaml | 1 + themes/night-owl-oled-dim-100.yaml | 52 - themes/night-owl-oled-dim-75.yaml | 52 - themes/night-owl-oled-dim-80.yaml | 52 - themes/night-owl-oled-dim-85.yaml | 52 - themes/night-owl-oled-dim-90.yaml | 52 - themes/night-owl-oled-dim-95.yaml | 52 - themes/night-pink.yaml | 1 + themes/night-raccoon.yaml | 1 + themes/night-rainbow-darker.yaml | 52 - themes/night-rainbow-purple-haze.yaml | 52 - themes/night-rainbow.yaml | 52 - themes/night-stack-amber-crt.yaml | 1 + themes/night-stack-amber-dark.yaml | 1 + themes/night-stack-arctic-night.yaml | 1 + themes/night-stack-aurora.yaml | 1 + themes/night-stack-carbon-green.yaml | 1 + themes/night-stack-carbon.yaml | 1 + themes/night-stack-circuit.yaml | 1 + themes/night-stack-copper-dark.yaml | 1 + themes/night-stack-crimson-dark.yaml | 1 + themes/night-stack-deep-work.yaml | 1 + themes/night-stack-desert-dusk.yaml | 1 + themes/night-stack-dos-blue.yaml | 1 + themes/night-stack-ember-dark.yaml | 1 + themes/night-stack-eyestrain-green.yaml | 1 + themes/night-stack-forest-night.yaml | 1 + themes/night-stack-frost.yaml | 1 + themes/night-stack-graphite.yaml | 1 + themes/night-stack-green-neon.yaml | 1 + themes/night-stack-hacker-soft.yaml | 1 + themes/night-stack-hologram.yaml | 1 + themes/night-stack-indigo-dark.yaml | 1 + themes/night-stack-ion.yaml | 1 + themes/night-stack-low-contrast-pro.yaml | 1 + themes/night-stack-midnight-blue.yaml | 1 + themes/night-stack-mono-focus.yaml | 1 + themes/night-stack-neo-tokyo.yaml | 1 + themes/night-stack-night-city.yaml | 1 + themes/night-stack-noir.yaml | 1 + themes/night-stack-obsidian-glass.yaml | 1 + themes/night-stack-obsidian.yaml | 1 + themes/night-stack-ocean-abyss.yaml | 1 + themes/night-stack-onyx.yaml | 1 + themes/night-stack-phosphor-green.yaml | 1 + themes/night-stack-plasma.yaml | 1 + themes/night-stack-pure-hacker.yaml | 1 + themes/night-stack-quantum.yaml | 1 + themes/night-stack-retro-wave.yaml | 1 + themes/night-stack-slate.yaml | 1 + themes/night-stack-street-grid.yaml | 1 + themes/night-stack-teal-dark.yaml | 1 + themes/night-stack-titanium.yaml | 1 + themes/night-stack-violet-dark.yaml | 1 + themes/night-stack-zen-dark.yaml | 1 + themes/night-storm.yaml | 1 + themes/night-watchers.yaml | 1 + themes/night-wind-theme.yaml | 1 + themes/night-yellow.yaml | 1 + themes/night-zen.yaml | 52 - themes/night.yaml | 3 +- themes/nightblue-1.yaml | 1 + themes/nightblue-oled-beta.yaml | 1 + themes/nightcall.yaml | 52 - themes/nightcode.yaml | 1 + themes/nightdream-monokai.yaml | 1 + themes/nightdream.yaml | 1 + themes/nightfly.yaml | 1 + themes/nightfox.yaml | 52 - themes/nighthawk.yaml | 1 + themes/nightlife.yaml | 1 + themes/nightly-code.yaml | 1 + themes/nightly-inspiration-dark.yaml | 5 +- themes/nightmare.yaml | 1 + themes/nightnode.yaml | 52 - themes/nightshade-venom.yaml | 52 - themes/nightshade.yaml | 1 + themes/nightshift-lobo-dawn.yaml | 1 + themes/nightshiftlobo-obsidian.yaml | 1 + themes/nightshiftlobo-shadow.yaml | 1 + themes/nightshiftlobo.yaml | 1 + themes/nightsky.yaml | 1 + themes/nightswell.yaml | 1 + themes/nightwing.yaml | 1 + themes/nighty-bordered.yaml | 1 + themes/nighty-purple-color-theme.yaml | 52 - themes/nigthwolf-color-theme.yaml | 52 - themes/nihil.yaml | 5 +- themes/nihilleaf-theme.yaml | 3 +- themes/niketa-pop-dark.yaml | 1 + themes/niketa-pop-light.yaml | 1 + themes/niketaoasis.yaml | 1 + themes/niketaplus.yaml | 1 + themes/niketaprettier.yaml | 1 + themes/niko-s-techlabs-dark.yaml | 1 + themes/nikso-vscode-theme-dark.yaml | 52 - themes/nil-ui.yaml | 1 + themes/nimbus-mint-light.yaml | 52 - themes/ninjadark.yaml | 1 + themes/nitrous-theme-dark.yaml | 1 + themes/nivtheme.yaml | 1 + themes/nix.yaml | 52 - themes/nkalai-dark.yaml | 1 + themes/nkalai-light.yaml | 1 + themes/nloo-theme.yaml | 3 +- .../no-not-the-lava-it-burns-ahhh-fork.yaml | 52 - themes/no-pixie-blue-dark.yaml | 2 + themes/no-pixie-blue-light.yaml | 2 + themes/no-pixie-dark-high-contrast.yaml | 2 + themes/no-pixie-dark.yaml | 2 + themes/no-pixie-light-high-contrast.yaml | 2 + themes/no-pixie-light.yaml | 2 + themes/no-pixie-yellow-dark.yaml | 2 + themes/no-pixie-yellow-light.yaml | 2 + themes/noah-theme.yaml | 3 +- themes/noctaliatheme.yaml | 3 +- themes/noctilux.yaml | 1 + themes/noctis-high-contrast.yaml | 52 - themes/noctis-lilac.yaml | 1 + themes/noctis-lux-ansi-16.yaml | 2 + themes/noctis-lux-dean-s-version.yaml | 52 - themes/noctis-red-flow.yaml | 1 + themes/noctua-black-rose.yaml | 1 + themes/noctua-dark-leaf.yaml | 1 + themes/noctua-grass.yaml | 1 + themes/noctua-hidden-sky.yaml | 1 + themes/nocturnal.yaml | 1 + themes/nodr-cocoa.yaml | 1 + themes/nodr-plum.yaml | 1 + themes/noe.yaml | 1 + themes/noel.yaml | 2 + themes/noir-dark.yaml | 52 - themes/noir-dracula.yaml | 52 - themes/noir-essence-dark.yaml | 52 - themes/noir-essence-light.yaml | 52 - themes/noir-light.yaml | 52 - themes/noir-outrun.yaml | 52 - themes/noir-owl.yaml | 52 - themes/noir-poimandres-black.yaml | 52 - themes/noir-poimandres-dark.yaml | 52 - themes/noir-poimandres-darker.yaml | 52 - themes/noir-poimandres.yaml | 52 - themes/noir-ros-pine-grey.yaml | 52 - themes/noir-ros-pine-moon-grey.yaml | 52 - themes/noir-tokyo-night-black.yaml | 52 - themes/noir-tokyo-night.yaml | 52 - themes/noirex.yaml | 1 + themes/noirzen.yaml | 1 + themes/nokion-clean.yaml | 3 +- themes/noll-tta.yaml | 1 + themes/non-arbitrary-colors-theme.yaml | 1 + themes/noname-ui-next.yaml | 1 + themes/noname-ui.yaml | 1 + themes/noori.yaml | 3 +- themes/noparanoia.yaml | 1 + themes/nora-dark.yaml | 1 + themes/nora-light-bordered.yaml | 1 + themes/nord-bunker.yaml | 52 - themes/nord-dark-contrast.yaml | 52 - themes/nord-dark-pro.yaml | 52 - themes/nord-deep.yaml | 55 +- themes/nord-fountain.yaml | 52 - themes/nord-frost.yaml | 4 + themes/nord-jujoco.yaml | 1 + themes/nord-light.yaml | 3 + themes/nord-midnight.yaml | 3 +- themes/nord-native.yaml | 3 +- themes/nord-operator-theme.yaml | 1 + themes/nord-palette.yaml | 52 - themes/nord-zero.yaml | 3 +- themes/nord.yaml | 83 +- themes/nordark.yaml | 1 + themes/nordfox.yaml | 1 + themes/nordic-dark.yaml | 1 + themes/nordic-electric-ai-nocturne.yaml | 6 +- themes/nordic.yaml | 52 - themes/nordicbox.yaml | 3 +- themes/nordicdark.yaml | 52 - themes/nordico.yaml | 1 + themes/nordishcocoa.yaml | 1 + themes/nordstone.yaml | 3 + themes/northeirn.yaml | 1 + themes/northern-territory-dark.yaml | 1 + themes/northern-territory-light.yaml | 1 + themes/nosk-theme.yaml | 52 - themes/nostromo.yaml | 1 + themes/not-so-simple.yaml | 1 + themes/notchy-dark.yaml | 1 + themes/notesocean-vs-code-theme.yaml | 52 - themes/notflask-theme-light.yaml | 1 + themes/nothing-dark.yaml | 1 + themes/nothing-light.yaml | 1 + themes/nothing-os-dark.yaml | 52 - themes/nothing-os-gray.yaml | 52 - themes/notion-code-theme.yaml | 3 +- themes/notionliketheme.yaml | 1 + themes/notthevimguytheme.yaml | 52 - themes/nova-dark.yaml | 1 + themes/nova-light.yaml | 1 + themes/nova.yaml | 52 - themes/novadust.yaml | 3 +- themes/november-theme-black.yaml | 1 + themes/november-theme-darkblue.yaml | 1 + themes/nox.yaml | 91 +- themes/noxis-light.yaml | 1 + themes/noxis.yaml | 52 - themes/noxus.yaml | 1 + themes/npp-color-dark-hard.yaml | 1 + themes/npp-color-light-hard.yaml | 1 + .../nstlgy-dark-josh-w-comeau-inspired.yaml | 1 + themes/ntt1.yaml | 1 + themes/nuclear-z-light.yaml | 3 + themes/nudark.yaml | 1 + themes/nuitp-le-theme.yaml | 1 + themes/null-theme-absolute-black.yaml | 1 + themes/null-theme-electric-enhanced.yaml | 1 + themes/null-theme-midnight-enhanced.yaml | 1 + themes/null-theme-muted.yaml | 1 + themes/null-theme-near-black.yaml | 1 + themes/null-theme-pastel.yaml | 1 + themes/null-theme-synthwave.yaml | 1 + themes/null-theme-vivid.yaml | 1 + themes/nultramarine.yaml | 1 + themes/nulzo-relax.yaml | 1 + themes/nulzo-winter-light.yaml | 1 + themes/nur-dark.yaml | 3 + themes/nur-light.yaml | 3 + themes/nushu-classic.yaml | 52 - themes/nushu-dark.yaml | 52 - themes/nushu-light.yaml | 52 - themes/nutheme.yaml | 3 +- themes/nutty-dark-theme.yaml | 52 - themes/nutty-light-theme.yaml | 52 - themes/nuuvo-space-max.yaml | 50 - themes/nuxt-blend-bleach-color-theme.yaml | 52 - themes/nuxt-blend.yaml | 52 - themes/nuxtian-deep-space.yaml | 52 - themes/nuxtian-light.yaml | 52 - themes/nuxtian-nitro.yaml | 52 - themes/nuxtian.yaml | 52 - themes/nuxtiansololevel.yaml | 52 - themes/nuxtvite.yaml | 52 - themes/nuxtvoid.yaml | 52 - themes/nw21.yaml | 52 - themes/ny-city-lights-theme.yaml | 52 - themes/nyctophilia.yaml | 1 + themes/nyrkes.yaml | 1 + themes/oa515.yaml | 1 + themes/oak-dark.yaml | 52 - themes/oak.yaml | 52 - themes/obanai-iguro.yaml | 52 - themes/obito-akatsuki-theme.yaml | 5 +- themes/oblivion.yaml | 1 + themes/oboro.yaml | 1 + themes/obsidian-dark.yaml | 25 +- themes/obsidian-ember.yaml | 3 +- themes/obsidian-gold.yaml | 3 +- themes/obsidian-light.yaml | 1 + themes/obsidian-nova.yaml | 1 + themes/obsidian-pro-dark-blue-purple.yaml | 1 + themes/obsidian-pro-dark-pink-purple.yaml | 1 + themes/obsidian-pro-dark-purple-neon.yaml | 1 + themes/obsidian-pro-dark-purple-pastel.yaml | 1 + themes/obsidian-pro-dark-purple.yaml | 1 + themes/obsidian-pro-dark.yaml | 1 + themes/obsidian-pro-white-purple.yaml | 1 + themes/obsidian-pro-white.yaml | 1 + themes/obsidian-pulse-light-theme.yaml | 1 + themes/obsidian-pulse-theme.yaml | 1 + themes/obsidian-sea.yaml | 3 +- themes/obsidian-sunset.yaml | 3 +- themes/obsidian-void.yaml | 1 + themes/obsidian-wine.yaml | 52 - themes/obsidian.yaml | 1 + themes/obsidianite-amoled.yaml | 52 - themes/obsidianite.yaml | 52 - themes/oc-7-light.yaml | 52 - themes/ocean-blue-theme.yaml | 1 + themes/ocean-breeze.yaml | 52 - themes/ocean-color-theme.yaml | 1 + themes/ocean-deep-depth-stability.yaml | 1 + themes/ocean-eyes-medium.yaml | 1 + themes/ocean-eyes.yaml | 1 + themes/ocean-high-contrast.yaml | 3 +- themes/ocean-mist-light.yaml | 1 + themes/ocean-mist.yaml | 1 + themes/ocean-night.yaml | 1 + themes/ocean-theme.yaml | 87 +- themes/ocean.yaml | 85 +- themes/oceana.yaml | 1 + themes/oceanic-gradient.yaml | 52 - themes/oceanic-primal-color-theme.yaml | 3 + themes/oceanic-solitude.yaml | 1 + themes/oceanic-sunset.yaml | 52 - themes/oceanic-wind-cool.yaml | 1 + themes/oceanic-wind-warm.yaml | 1 + themes/oceanic-wind.yaml | 1 + themes/oceans-of-andromeda.yaml | 1 + themes/ochre-dark-midnight.yaml | 1 + themes/ochre-dark.yaml | 1 + themes/ochre-light-snow.yaml | 1 + themes/ochre-light.yaml | 1 + themes/octalide.yaml | 1 + themes/octo-dark-one.yaml | 1 + themes/octo-light.yaml | 1 + themes/octopus-theme.yaml | 3 +- themes/odyssey-night.yaml | 1 + themes/office-dark.yaml | 52 - themes/office-light.yaml | 52 - themes/office-paper.yaml | 52 - themes/ogone.yaml | 1 + themes/oh-dark-pro.yaml | 1 + themes/ohiostate-fork.yaml | 1 + themes/ohled-aliceblue.yaml | 52 - themes/ohled-antiquewhite.yaml | 52 - themes/ohled-aquamarine.yaml | 52 - themes/ohled-azure.yaml | 52 - themes/ohled-beige.yaml | 52 - themes/ohled-bisque.yaml | 52 - themes/ohled-blanchedalmond.yaml | 52 - themes/ohled-blue.yaml | 52 - themes/ohled-blueviolet.yaml | 52 - themes/ohled-brown.yaml | 52 - themes/ohled-burlywood.yaml | 52 - themes/ohled-cadetblue.yaml | 52 - themes/ohled-chartreuse.yaml | 52 - themes/ohled-chocolate.yaml | 52 - themes/ohled-coral.yaml | 52 - themes/ohled-cornflowerblue.yaml | 52 - themes/ohled-cornsilk.yaml | 52 - themes/ohled-crimson.yaml | 52 - themes/ohled-cyan.yaml | 52 - themes/ohled-darkblue.yaml | 52 - themes/ohled-darkcyan.yaml | 52 - themes/ohled-darkgoldenrod.yaml | 52 - themes/ohled-darkgray.yaml | 52 - themes/ohled-darkgreen.yaml | 52 - themes/ohled-darkkhaki.yaml | 52 - themes/ohled-darkmagenta.yaml | 52 - themes/ohled-darkolivegreen.yaml | 52 - themes/ohled-darkorange.yaml | 52 - themes/ohled-darkorchid.yaml | 52 - themes/ohled-darkred.yaml | 52 - themes/ohled-darksalmon.yaml | 52 - themes/ohled-darkseagreen.yaml | 52 - themes/ohled-darkslateblue.yaml | 52 - themes/ohled-darkslategray.yaml | 52 - themes/ohled-darkturquoise.yaml | 52 - themes/ohled-darkviolet.yaml | 52 - themes/ohled-deeppink.yaml | 52 - themes/ohled-deepskyblue.yaml | 52 - themes/ohled-dimgray.yaml | 52 - themes/ohled-dodgerblue.yaml | 52 - themes/ohled-firebrick.yaml | 52 - themes/ohled-forestgreen.yaml | 52 - themes/ohled-gainsboro.yaml | 52 - themes/ohled-ghostwhite.yaml | 52 - themes/ohled-gold.yaml | 52 - themes/ohled-goldenrod.yaml | 52 - themes/ohled-gray.yaml | 52 - themes/ohled-green.yaml | 52 - themes/ohled-greenyellow.yaml | 52 - themes/ohled-honeydew.yaml | 52 - themes/ohled-hotpink.yaml | 52 - themes/ohled-indianred.yaml | 52 - themes/ohled-indigo.yaml | 52 - themes/ohled-ivory.yaml | 52 - themes/ohled-khaki.yaml | 52 - themes/ohled-lavender.yaml | 52 - themes/ohled-lavenderblush.yaml | 52 - themes/ohled-lawngreen.yaml | 52 - themes/ohled-lemonchiffon.yaml | 52 - themes/ohled-lightblue.yaml | 52 - themes/ohled-lightcoral.yaml | 52 - themes/ohled-lightcyan.yaml | 52 - themes/ohled-lightgoldenrodyellow.yaml | 52 - themes/ohled-lightgray.yaml | 52 - themes/ohled-lightgreen.yaml | 52 - themes/ohled-lightpink.yaml | 52 - themes/ohled-lightsalmon.yaml | 52 - themes/ohled-lightseagreen.yaml | 52 - themes/ohled-lightskyblue.yaml | 52 - themes/ohled-lightslategray.yaml | 52 - themes/ohled-lightsteelblue.yaml | 52 - themes/ohled-lightyellow.yaml | 52 - themes/ohled-lime.yaml | 52 - themes/ohled-limegreen.yaml | 52 - themes/ohled-linen.yaml | 52 - themes/ohled-magenta.yaml | 52 - themes/ohled-maroon.yaml | 52 - themes/ohled-mediumaquamarine.yaml | 52 - themes/ohled-mediumblue.yaml | 52 - themes/ohled-mediumorchid.yaml | 52 - themes/ohled-mediumpurple.yaml | 52 - themes/ohled-mediumseagreen.yaml | 52 - themes/ohled-mediumslateblue.yaml | 52 - themes/ohled-mediumspringgreen.yaml | 52 - themes/ohled-mediumturquoise.yaml | 52 - themes/ohled-mediumvioletred.yaml | 52 - themes/ohled-midnightblue.yaml | 52 - themes/ohled-mintcream.yaml | 52 - themes/ohled-mistyrose.yaml | 52 - themes/ohled-moccasin.yaml | 52 - themes/ohled-navajowhite.yaml | 52 - themes/ohled-navy.yaml | 52 - themes/ohled-oldlace.yaml | 52 - themes/ohled-olive.yaml | 52 - themes/ohled-olivedrab.yaml | 52 - themes/ohled-orange.yaml | 52 - themes/ohled-orangered.yaml | 52 - themes/ohled-orchid.yaml | 52 - themes/ohled-palegoldenrod.yaml | 52 - themes/ohled-palegreen.yaml | 52 - themes/ohled-paleturquoise.yaml | 52 - themes/ohled-palevioletred.yaml | 52 - themes/ohled-papayawhip.yaml | 52 - themes/ohled-peachpuff.yaml | 52 - themes/ohled-peru.yaml | 52 - themes/ohled-pink.yaml | 52 - themes/ohled-plum.yaml | 52 - themes/ohled-powderblue.yaml | 52 - themes/ohled-purple.yaml | 52 - themes/ohled-rebeccapurple.yaml | 52 - themes/ohled-red.yaml | 52 - themes/ohled-rosybrown.yaml | 52 - themes/ohled-royalblue.yaml | 52 - themes/ohled-saddlebrown.yaml | 52 - themes/ohled-salmon.yaml | 52 - themes/ohled-sandybrown.yaml | 52 - themes/ohled-seagreen.yaml | 52 - themes/ohled-seashell.yaml | 52 - themes/ohled-sienna.yaml | 52 - themes/ohled-silver.yaml | 52 - themes/ohled-skyblue.yaml | 52 - themes/ohled-slateblue.yaml | 52 - themes/ohled-slategray.yaml | 52 - themes/ohled-snow.yaml | 52 - themes/ohled-springgreen.yaml | 52 - themes/ohled-steelblue.yaml | 52 - themes/ohled-tan.yaml | 52 - themes/ohled-teal.yaml | 52 - themes/ohled-thistle.yaml | 52 - themes/ohled-tomato.yaml | 52 - themes/ohled-turquoise.yaml | 52 - themes/ohled-violet.yaml | 52 - themes/ohled-wheat.yaml | 52 - themes/ohled-white.yaml | 52 - themes/ohled-whitesmoke.yaml | 52 - themes/ohled-yellow.yaml | 52 - themes/ohled-yellowgreen.yaml | 52 - themes/ohled-yelloworange.yaml | 52 - themes/ohled-yellowpink.yaml | 52 - themes/ohled-yellowpurple.yaml | 52 - themes/okas-theme.yaml | 1 + themes/oldschool-terminal-green.yaml | 52 - themes/oldworld.yaml | 3 +- themes/oledge.yaml | 3 + themes/olive-dark.yaml | 1 + themes/olive-light.yaml | 1 + themes/omega.yaml | 1 + themes/omni-customized-dark.yaml | 52 - themes/omni-customized.yaml | 52 - themes/omni-dracula-dark.yaml | 52 - ...ni-dracula-theme-tradicional-contrast.yaml | 52 - themes/omni-dracula-theme-tradicional.yaml | 52 - themes/omni-dracula-theme.yaml | 52 - .../omni-dracula-wine-theme-tradicional.yaml | 52 - themes/omni-monokai-dark.yaml | 52 - themes/omni-pro.yaml | 52 - themes/omni.yaml | 52 - themes/omnisexual.yaml | 52 - themes/omnitrix-code.yaml | 52 - themes/omo-theme.yaml | 1 + themes/one-ai-theme.yaml | 3 +- themes/one-dark-cloud-theme.yaml | 3 +- themes/one-dark-code.yaml | 1 + themes/one-dark-darker-vivid.yaml | 1 + themes/one-dark-darker.yaml | 17 +- themes/one-dark-modern-pro.yaml | 3 +- themes/one-dark-night-blue-boy.yaml | 52 - themes/one-dark-night-eye-care.yaml | 52 - themes/one-dark-night-minimalist.yaml | 52 - themes/one-dark-night-professional.yaml | 52 - themes/one-dark-nx.yaml | 1 + themes/one-dark-orange.yaml | 1 + themes/one-dark-pro-theme.yaml | 52 - themes/one-dark-pro-var-night.yaml | 1 + themes/one-dark-pro.yaml | 52 - themes/one-dark-vibrant-theme.yaml | 1 + themes/one-dark.yaml | 52 - themes/one-darker-pro.yaml | 3 +- themes/one-darkpuccin-night.yaml | 52 - themes/one-darkpuccin-vivid.yaml | 52 - themes/one-hunter-theme.yaml | 52 - themes/one-light-italic.yaml | 52 - themes/one-light-pro.yaml | 17 +- themes/one-material.yaml | 1 + themes/one-midnight.yaml | 1 + themes/one-monokai-darker.yaml | 53 +- themes/one-monokai-forked.yaml | 1 + themes/one-monokai-light.yaml | 52 - themes/one-monokai-michota.yaml | 1 + themes/one-monokai-python-flat.yaml | 52 - themes/one-monokai-shadow.yaml | 3 +- themes/one-monokai1.yaml | 1 + themes/one-moon.yaml | 3 +- themes/one-more-dark.yaml | 1 + themes/one-pauintxi-blue.yaml | 1 + themes/one-piece-dark.yaml | 52 - themes/one-piece-high-contrast.yaml | 52 - themes/one-piece-light.yaml | 52 - themes/one-piece-straw-hat-red.yaml | 52 - themes/onebitcode-theme.yaml | 52 - themes/onebitcode.yaml | 1 + themes/onecalm.yaml | 1 + themes/onedark-nvim.yaml | 52 - themes/onedark-pro-suhayb-s-version-v2.yaml | 52 - themes/onedark-vibrant.yaml | 3 +- themes/oneiroi-caffeine.yaml | 1 + themes/oneiroi-dream.yaml | 1 + themes/oneiroi-melatonin.yaml | 1 + themes/onemonokai80s.yaml | 52 - themes/onemonokai80sog.yaml | 1 + themes/onenv.yaml | 1 + themes/onething.yaml | 1 + themes/oni-theme.yaml | 3 +- themes/onlydark.yaml | 1 + themes/onlydarklight.yaml | 3 + themes/onora.yaml | 1 + themes/onyx-core.yaml | 1 + themes/onyx-ghost.yaml | 1 + themes/onyx-theme-color.yaml | 52 - themes/onyx.yaml | 83 +- themes/ook.yaml | 3 + themes/oolory-color-theme.yaml | 1 + themes/oolory-dark-color-theme.yaml | 52 - themes/openbase.yaml | 1 + themes/openspace-dark-flat.yaml | 1 + themes/openspace-dark.yaml | 1 + themes/openspace.yaml | 1 + themes/opmono-odarkp.yaml | 3 +- themes/optimus-dark.yaml | 1 + themes/oracle-vision.yaml | 52 - themes/oradia.yaml | 1 + themes/oragethemedark.yaml | 1 + themes/orago-s-warm-theme.yaml | 50 - themes/orange-coral.yaml | 9 +- themes/orange-dark.yaml | 1 + themes/orange-ocean.yaml | 1 + themes/orange.yaml | 1 + themes/orangefox-dark.yaml | 1 + themes/orangefox-light.yaml | 1 + themes/orangelemon.yaml | 1 + themes/orangey-darker-1.yaml | 52 - themes/orangey-darker-2.yaml | 52 - themes/orangey-lighter-1.yaml | 52 - themes/orangey-lighter-2.yaml | 52 - themes/orangey.yaml | 52 - themes/orbi-blue.yaml | 1 + themes/orbi-red.yaml | 1 + themes/orca.yaml | 52 - themes/origami-theme.yaml | 3 +- themes/origamid.yaml | 52 - themes/original-theme.yaml | 1 + themes/orion-black-fork.yaml | 52 - themes/orion-x-black.yaml | 3 + themes/orpheux.yaml | 1 + themes/orw.yaml | 1 + themes/orwellian-nightmare.yaml | 1 + themes/osaka-solarized-pro-dark.yaml | 52 - themes/osaka-solarized-pro-light.yaml | 52 - themes/osaka-solarized-pro-monokai-storm.yaml | 52 - themes/osean-boy.yaml | 1 + themes/oslo-dark.yaml | 1 + themes/osmoz-dark.yaml | 52 - themes/osx9.yaml | 1 + themes/otakon-contrast.yaml | 52 - themes/otakon-light.yaml | 52 - themes/otakon.yaml | 52 - themes/outer-spacemacs.yaml | 3 +- themes/outrun-dark.yaml | 52 - themes/overflow-contrast.yaml | 52 - themes/overflow-light.yaml | 52 - themes/overflow.yaml | 52 - themes/overload.yaml | 1 + themes/overnight.yaml | 52 - themes/owlet-default.yaml | 2 + themes/owlet-material.yaml | 2 + themes/owlet-mono.yaml | 2 + themes/owlet-outrun.yaml | 2 + themes/owlet-solarized.yaml | 2 + themes/owokai-hard.yaml | 1 + themes/owokai.yaml | 1 + themes/oxocarbon-5.yaml | 1 + themes/oxocarbon-dark.yaml | 52 - themes/oxocarbon-monochrom.yaml | 52 - ...xocarbon-oled-monochrom-compatibility.yaml | 52 - themes/oxocarbon-oled-monochrom.yaml | 52 - themes/oxocarbon-oled.yaml | 52 - themes/oxocarbon-port.yaml | 1 + themes/oxocarbonix-dark-theme.yaml | 52 - themes/ozurac.yaml | 1 + themes/ozzy.yaml | 3 +- themes/p-nk.yaml | 1 + themes/p-upright-black.yaml | 52 - themes/p-upright-citadel.yaml | 52 - themes/p-upright-crimson.yaml | 52 - themes/p-upright-dark.yaml | 52 - themes/p-upright-eggplant.yaml | 52 - themes/p-upright-emerald.yaml | 52 - themes/p-upright-eucalyptus.yaml | 52 - themes/p-upright-floresta.yaml | 52 - themes/p-upright-frost.yaml | 52 - themes/p-upright-genmaicha.yaml | 52 - themes/p-upright-grizzly.yaml | 52 - themes/p-upright-haze.yaml | 52 - themes/p-upright-inkstone.yaml | 52 - themes/p-upright-leipzig.yaml | 52 - themes/p-upright-light.yaml | 52 - themes/p-upright-machine.yaml | 52 - themes/p-upright-mist.yaml | 52 - themes/p-upright-neptune.yaml | 52 - themes/p-upright-ornithopter.yaml | 52 - themes/p-upright-ox.yaml | 52 - themes/p-upright-terabyte.yaml | 52 - themes/p-upright-ultramarine.yaml | 52 - themes/p-upright-wolf.yaml | 52 - themes/p-upright-yesterday.yaml | 52 - themes/p-upright-zenith.yaml | 52 - themes/p-yesterday.yaml | 52 - themes/p33t.yaml | 3 +- themes/pace-dark.yaml | 1 + themes/pace-light.yaml | 1 + themes/padrepio.yaml | 1 + themes/paigio.yaml | 1 + themes/pale-blue.yaml | 1 + themes/pale-boreal-dark.yaml | 5 +- themes/palenight-italic.yaml | 52 - themes/palenight-material.yaml | 52 - themes/palenight-pro.yaml | 5 +- ...ed-on-olaolu-olaywuyi-for-code-server.yaml | 52 - themes/palenight-theme.yaml | 52 - themes/palenight.yaml | 50 +- themes/palespring.yaml | 3 + themes/palestorm-x.yaml | 1 + themes/palestorm.yaml | 1 + themes/palette.yaml | 3 +- themes/pall-theme.yaml | 3 +- themes/panda-blue.yaml | 5 +- themes/panda-dark.yaml | 52 - themes/pandai.yaml | 1 + themes/pandju.yaml | 52 - themes/pantasio.yaml | 3 + themes/pantone-amber-dark.yaml | 4 + themes/pantone-amber-light.yaml | 4 + themes/pantone-aqua-dark.yaml | 4 + themes/pantone-aqua-light.yaml | 4 + themes/pantone-aqua-sky-dark.yaml | 4 + themes/pantone-aqua-sky-light.yaml | 4 + themes/pantone-baby-blue-dark.yaml | 4 + themes/pantone-baby-blue-light.yaml | 4 + themes/pantone-blue-iris-dark.yaml | 4 + themes/pantone-blue-iris-light.yaml | 4 + themes/pantone-blue-turquoise-dark.yaml | 4 + themes/pantone-blue-turquoise-light.yaml | 4 + themes/pantone-blush-dark.yaml | 4 + themes/pantone-blush-light.yaml | 4 + themes/pantone-blush-pink-dark.yaml | 4 + themes/pantone-blush-pink-light.yaml | 4 + themes/pantone-brick-red-dark.yaml | 4 + themes/pantone-brick-red-light.yaml | 4 + themes/pantone-bright-green-dark.yaml | 4 + themes/pantone-bright-green-light.yaml | 4 + themes/pantone-burgundy-dark.yaml | 4 + themes/pantone-burgundy-light.yaml | 4 + themes/pantone-burnt-orange-dark.yaml | 4 + themes/pantone-burnt-orange-light.yaml | 4 + themes/pantone-cerulean-dark.yaml | 4 + themes/pantone-cerulean-light.yaml | 4 + themes/pantone-chartreuse-dark.yaml | 4 + themes/pantone-chartreuse-light.yaml | 4 + themes/pantone-chili-pepper-dark.yaml | 4 + themes/pantone-chili-pepper-light.yaml | 4 + themes/pantone-chocolate-dark.yaml | 4 + themes/pantone-chocolate-light.yaml | 4 + themes/pantone-classic-blue-dark.yaml | 4 + themes/pantone-classic-blue-light.yaml | 4 + themes/pantone-classic-red-dark.yaml | 4 + themes/pantone-classic-red-light.yaml | 4 + themes/pantone-cobalt-blue-dark.yaml | 4 + themes/pantone-cobalt-blue-light.yaml | 4 + themes/pantone-coral-dark.yaml | 4 + themes/pantone-coral-light.yaml | 4 + themes/pantone-cornflower-blue-dark.yaml | 4 + themes/pantone-cornflower-blue-light.yaml | 4 + themes/pantone-cyan-dark.yaml | 4 + themes/pantone-cyan-light.yaml | 4 + themes/pantone-dark-brown-dark.yaml | 4 + themes/pantone-dark-brown-light.yaml | 4 + themes/pantone-dark-maroon-dark.yaml | 4 + themes/pantone-dark-maroon-light.yaml | 4 + themes/pantone-dark-red-dark.yaml | 4 + themes/pantone-dark-red-light.yaml | 4 + themes/pantone-deep-pink-dark.yaml | 4 + themes/pantone-deep-pink-light.yaml | 4 + themes/pantone-dusty-blue-dark.yaml | 4 + themes/pantone-dusty-blue-light.yaml | 4 + themes/pantone-emerald-dark.yaml | 4 + themes/pantone-emerald-light.yaml | 4 + themes/pantone-flame-orange-dark.yaml | 4 + themes/pantone-flame-orange-light.yaml | 4 + themes/pantone-forest-green-dark.yaml | 4 + themes/pantone-forest-green-light.yaml | 4 + themes/pantone-fuchsia-rose-dark.yaml | 4 + themes/pantone-fuchsia-rose-light.yaml | 4 + themes/pantone-gold-dark.yaml | 4 + themes/pantone-gold-light.yaml | 4 + themes/pantone-golden-yellow-dark.yaml | 4 + themes/pantone-golden-yellow-light.yaml | 4 + themes/pantone-graphite-dark.yaml | 4 + themes/pantone-graphite-light.yaml | 4 + themes/pantone-green-dark.yaml | 4 + themes/pantone-green-light.yaml | 4 + themes/pantone-greenery-dark.yaml | 4 + themes/pantone-greenery-light.yaml | 4 + themes/pantone-honeysuckle-dark.yaml | 4 + themes/pantone-honeysuckle-light.yaml | 4 + themes/pantone-hot-pink-dark.yaml | 4 + themes/pantone-hot-pink-light.yaml | 4 + themes/pantone-ice-blue-dark.yaml | 4 + themes/pantone-ice-blue-light.yaml | 4 + themes/pantone-illuminating-dark.yaml | 4 + themes/pantone-illuminating-light.yaml | 4 + themes/pantone-indigo-dark.yaml | 4 + themes/pantone-indigo-light.yaml | 4 + themes/pantone-khaki-dark.yaml | 4 + themes/pantone-khaki-light.yaml | 4 + themes/pantone-lavender-dark.yaml | 4 + themes/pantone-lavender-light.yaml | 4 + themes/pantone-lilac-dark.yaml | 4 + themes/pantone-lilac-light.yaml | 4 + themes/pantone-lime-green-dark.yaml | 4 + themes/pantone-lime-green-light.yaml | 4 + themes/pantone-living-coral-dark.yaml | 4 + themes/pantone-living-coral-light.yaml | 4 + themes/pantone-marsala-dark.yaml | 4 + themes/pantone-marsala-light.yaml | 4 + themes/pantone-mauve-dark.yaml | 4 + themes/pantone-mauve-light.yaml | 4 + themes/pantone-mimosa-dark.yaml | 4 + themes/pantone-mimosa-light.yaml | 4 + themes/pantone-mint-green-dark.yaml | 4 + themes/pantone-mint-green-light.yaml | 4 + themes/pantone-mocha-mousse-dark.yaml | 4 + themes/pantone-mocha-mousse-light.yaml | 4 + themes/pantone-navy-dark.yaml | 4 + themes/pantone-navy-light.yaml | 4 + themes/pantone-neon-blue-dark.yaml | 4 + themes/pantone-neon-blue-light.yaml | 4 + themes/pantone-neon-green-dark.yaml | 4 + themes/pantone-neon-green-light.yaml | 4 + themes/pantone-neon-orange-dark.yaml | 4 + themes/pantone-neon-orange-light.yaml | 4 + themes/pantone-neon-pink-dark.yaml | 4 + themes/pantone-neon-pink-light.yaml | 4 + themes/pantone-neon-yellow-dark.yaml | 4 + themes/pantone-neon-yellow-light.yaml | 4 + themes/pantone-olive-green-dark.yaml | 4 + themes/pantone-olive-green-light.yaml | 4 + themes/pantone-orange-dark.yaml | 4 + themes/pantone-orange-light.yaml | 4 + themes/pantone-peach-dark.yaml | 4 + themes/pantone-peach-fuzz-dark.yaml | 4 + themes/pantone-peach-fuzz-light.yaml | 4 + themes/pantone-peach-light.yaml | 4 + themes/pantone-peacock-green-dark.yaml | 4 + themes/pantone-peacock-green-light.yaml | 4 + themes/pantone-pewter-dark.yaml | 4 + themes/pantone-pewter-light.yaml | 4 + themes/pantone-plum-dark.yaml | 4 + themes/pantone-plum-light.yaml | 4 + themes/pantone-poppy-dark.yaml | 4 + themes/pantone-poppy-light.yaml | 4 + themes/pantone-process-blue-dark.yaml | 4 + themes/pantone-process-blue-light.yaml | 4 + themes/pantone-purple-dark.yaml | 4 + themes/pantone-purple-light.yaml | 4 + themes/pantone-radiant-orchid-dark.yaml | 4 + themes/pantone-radiant-orchid-light.yaml | 4 + themes/pantone-rose-quartz-dark.yaml | 4 + themes/pantone-rose-quartz-light.yaml | 4 + themes/pantone-royal-blue-dark.yaml | 4 + themes/pantone-royal-blue-light.yaml | 4 + themes/pantone-ruby-dark.yaml | 4 + themes/pantone-ruby-light.yaml | 4 + themes/pantone-saffron-dark.yaml | 4 + themes/pantone-saffron-light.yaml | 4 + themes/pantone-sage-dark.yaml | 4 + themes/pantone-sage-light.yaml | 4 + themes/pantone-salmon-dark.yaml | 4 + themes/pantone-salmon-light.yaml | 4 + themes/pantone-sand-dark.yaml | 4 + themes/pantone-sand-dollar-dark.yaml | 4 + themes/pantone-sand-dollar-light.yaml | 4 + themes/pantone-sand-light.yaml | 4 + themes/pantone-serenity-dark.yaml | 4 + themes/pantone-serenity-light.yaml | 4 + themes/pantone-sienna-dark.yaml | 4 + themes/pantone-sienna-light.yaml | 4 + themes/pantone-silver-dark.yaml | 4 + themes/pantone-silver-light.yaml | 4 + themes/pantone-sky-blue-dark.yaml | 4 + themes/pantone-sky-blue-light.yaml | 4 + themes/pantone-slate-blue-dark.yaml | 4 + themes/pantone-slate-blue-light.yaml | 4 + themes/pantone-steel-blue-dark.yaml | 4 + themes/pantone-steel-blue-light.yaml | 4 + themes/pantone-tan-dark.yaml | 4 + themes/pantone-tan-light.yaml | 4 + themes/pantone-tangerine-tango-dark.yaml | 4 + themes/pantone-tangerine-tango-light.yaml | 4 + themes/pantone-teal-dark.yaml | 4 + themes/pantone-teal-light.yaml | 4 + themes/pantone-tigerlily-dark.yaml | 4 + themes/pantone-tigerlily-light.yaml | 4 + themes/pantone-true-red-dark.yaml | 4 + themes/pantone-true-red-light.yaml | 4 + themes/pantone-turquoise-classic-dark.yaml | 4 + themes/pantone-turquoise-classic-light.yaml | 4 + themes/pantone-turquoise-dark.yaml | 4 + themes/pantone-turquoise-light.yaml | 4 + themes/pantone-ultimate-gray-dark.yaml | 4 + themes/pantone-ultimate-gray-light.yaml | 4 + themes/pantone-ultra-violet-dark.yaml | 4 + themes/pantone-ultra-violet-light.yaml | 4 + themes/pantone-very-peri-dark.yaml | 4 + themes/pantone-very-peri-light.yaml | 4 + themes/pantone-violet-dark.yaml | 4 + themes/pantone-violet-light.yaml | 4 + themes/pantone-viva-magenta-dark.yaml | 4 + themes/pantone-viva-magenta-light.yaml | 4 + themes/pantone-warm-gray-dark.yaml | 4 + themes/pantone-warm-gray-light.yaml | 4 + themes/pantone-warm-red-dark.yaml | 4 + themes/pantone-warm-red-light.yaml | 4 + themes/pantone-wheat-dark.yaml | 4 + themes/pantone-wheat-light.yaml | 4 + themes/pantone-wine-dark.yaml | 4 + themes/pantone-wine-light.yaml | 4 + themes/pantone-yellow-dark.yaml | 4 + themes/pantone-yellow-green-dark.yaml | 4 + themes/pantone-yellow-green-light.yaml | 4 + themes/pantone-yellow-light.yaml | 4 + themes/papaya.yaml | 52 - themes/papercolordark.yaml | 3 + themes/para-so-dark.yaml | 52 - themes/paradise.yaml | 1 + themes/parakeet-theme.yaml | 1 + themes/parchment-candlelight-color-theme.yaml | 1 + themes/parchment-codex-color-theme.yaml | 1 + themes/parchment-digitized-color-theme.yaml | 1 + themes/parchment-starlight-color-theme.yaml | 52 - themes/parchment.yaml | 1 + themes/pare-colors-theme.yaml | 1 + themes/parkside-light.yaml | 3 +- themes/paro-paro-solarized-dark-theme.yaml | 52 - themes/pastel-contrast.yaml | 52 - themes/pastel-inu.yaml | 52 - themes/pastel-light.yaml | 52 - themes/pastel-sorbet.yaml | 52 - themes/pastel.yaml | 87 +- themes/pastelefull.yaml | 1 + themes/pastelfairy.yaml | 1 + themes/pastellize-dark-muted.yaml | 1 + themes/patina-colors.yaml | 1 + themes/patina-dark-soft.yaml | 9 + themes/patina-dark.yaml | 8 + themes/patina-light.yaml | 8 + themes/patina-stellar.yaml | 9 + themes/patr-theme.yaml | 1 + themes/patricklimax.yaml | 1 + themes/patriot-contrast.yaml | 52 - themes/patriot-light.yaml | 52 - themes/patriot.yaml | 52 - themes/paulera-s-dark-monokai.yaml | 52 - themes/paulera-s-lyo.yaml | 52 - themes/paztels.yaml | 1 + themes/peace-of-the-eye-dracula-version.yaml | 52 - themes/peaceful-mind.yaml | 3 + themes/peachy-dolphin.yaml | 1 + themes/peachy.yaml | 3 +- themes/peacock-contrast.yaml | 52 - themes/peacock-light.yaml | 52 - themes/peacock.yaml | 91 +- themes/peacocks-in-space-contrast.yaml | 52 - themes/peacocks-in-space-light.yaml | 52 - themes/peacocks-in-space.yaml | 52 - themes/peel-contrast.yaml | 52 - themes/peel-light.yaml | 52 - themes/peel.yaml | 52 - themes/penitent-contrast.yaml | 52 - themes/penitent-light.yaml | 52 - themes/penitent.yaml | 52 - themes/penumbra-dark-contrast.yaml | 52 - themes/penumbra-dark.yaml | 52 - themes/penumbra-light.yaml | 52 - themes/perf-pink.yaml | 52 - themes/perfect-dark.yaml | 3 +- themes/perfect-grey-pf-dark.yaml | 1 + themes/perfect-grey-pf-light.yaml | 1 + themes/perfection-fresh-dark.yaml | 52 - themes/perfection-fresh-light.yaml | 52 - themes/periwinkle-color-theme.yaml | 52 - themes/periwinkle-soft-dark.yaml | 1 + themes/perplexity.yaml | 52 - themes/perry-the-platypus.yaml | 52 - themes/petrel.yaml | 1 + themes/pg-aqualung.yaml | 1 + themes/pg-blue-moon.yaml | 1 + themes/pg-forest.yaml | 1 + themes/pg-may-be-concrete.yaml | 1 + themes/pg-mud-puddle.yaml | 1 + themes/pg-plum-great.yaml | 1 + themes/pg-plum-groovy.yaml | 1 + themes/pg-punkin-spice.yaml | 1 + themes/pg-red-clay.yaml | 1 + themes/pg-ridgeline.yaml | 1 + themes/pg-ruby-clay.yaml | 1 + themes/pg-ruby-soho.yaml | 1 + themes/pg-slax.yaml | 1 + themes/pg-steely-daniel.yaml | 1 + themes/pglight.yaml | 1 + themes/phantom.yaml | 1 + themes/phocus.yaml | 1 + themes/phonebook-dark.yaml | 1 + themes/phonebook-light.yaml | 1 + themes/phosphor-amber-night.yaml | 1 + themes/phosphor-aurora.yaml | 1 + themes/phosphor-dark.yaml | 52 - themes/phosphor-dreams.yaml | 1 + themes/phosphor-event-horizon.yaml | 1 + themes/phosphor-forest.yaml | 1 + themes/phosphor-neon-noir.yaml | 1 + themes/phosphor-violet-dusk.yaml | 1 + themes/phosphorus-minor.yaml | 1 + themes/photon.yaml | 1 + themes/photonica-dark.yaml | 52 - themes/photonica-light.yaml | 52 - themes/photophore.yaml | 1 + themes/piattro.yaml | 1 + themes/pierre-dark.yaml | 52 - themes/pierre-light.yaml | 52 - themes/piggy-bordered.yaml | 1 + themes/piggy-contrast.yaml | 52 - themes/piggy-light.yaml | 52 - themes/piggy.yaml | 52 - themes/pillirioen.yaml | 1 + themes/pine-blue.yaml | 52 - themes/pine-cone-theme.yaml | 52 - themes/pine-editor-dark.yaml | 52 - themes/pine-editor-light-bold.yaml | 52 - themes/pine-forest-green-dark.yaml | 52 - themes/pine-forest.yaml | 52 - themes/pine-frizz.yaml | 52 - themes/pine-grey.yaml | 52 - themes/pine-theme-original-dark-extend.yaml | 52 - themes/pineapple.yaml | 1 + themes/pines.yaml | 3 +- themes/pingocho-dark.yaml | 3 +- themes/pink-candy-dark-warm.yaml | 52 - themes/pink-candy-dark.yaml | 52 - themes/pink-candy-light.yaml | 52 - themes/pink-flower.yaml | 52 - themes/pink-high-contrast.yaml | 52 - themes/pink-neon.yaml | 50 - themes/pink-theme.yaml | 52 - themes/pink.yaml | 52 - themes/pinkandgreen.yaml | 52 - themes/pinkandwhite.yaml | 1 + themes/pinkcloud.yaml | 3 + themes/pinkcodes-pink.yaml | 52 - themes/pinkdark.yaml | 52 - themes/pinkdopeybug-primordial-origin.yaml | 1 + themes/pinkmare.yaml | 6 +- themes/pinkppuccin.yaml | 3 +- themes/pinky-promise-dark.yaml | 52 - themes/pinky-promise-light.yaml | 52 - themes/pinkyboo.yaml | 52 - themes/pinot-gris.yaml | 1 + themes/pinya-theme.yaml | 1 + themes/pipboy-theme.yaml | 1 + themes/pirate-flat-theme.yaml | 3 +- themes/pirulug-dark.yaml | 1 + themes/pirulug-ligt.yaml | 1 + themes/pistachio-madness.yaml | 3 +- themes/pitaya-smoothie.yaml | 2 + themes/pittaya-theme-light.yaml | 52 - themes/pittaya-theme.yaml | 52 - themes/pittcsc-theme.yaml | 52 - themes/pixeye-theme.yaml | 3 + themes/pizarra.yaml | 5 +- themes/pk-vscode-theme.yaml | 1 + themes/plane.yaml | 1 + themes/plantillathemes.yaml | 1 + themes/plasma-pink.yaml | 52 - themes/plasticine.yaml | 52 - themes/plasticman.yaml | 1 + themes/platzi-theme.yaml | 3 +- themes/playground-theme-dark.yaml | 1 + themes/playground-theme.yaml | 1 + themes/playground.yaml | 1 + themes/pleasure-contrast.yaml | 52 - themes/pleasure-light.yaml | 52 - themes/pleasure.yaml | 52 - themes/plotka-amethyst.yaml | 1 + themes/pls-my-eyes-sir.yaml | 1 + themes/plurpelvsc.yaml | 52 - themes/pluto-dark.yaml | 1 + themes/po.yaml | 2 + ...imandres-darker-theme-ghostty-palette.yaml | 52 - themes/poison-serpent.yaml | 1 + themes/polar-black-cherry-blossom.yaml | 52 - themes/polar-black-green-cactus.yaml | 52 - themes/polar-black-ice.yaml | 52 - themes/polar-black-less-black-smoke.yaml | 52 - themes/polar-black-light.yaml | 52 - themes/polar-black-red.yaml | 52 - themes/polar-black-savanna.yaml | 52 - themes/polar-black.yaml | 52 - themes/polar-ice-dark.yaml | 1 + themes/polar-ice-light.yaml | 1 + themes/polar-light.yaml | 1 + themes/polar-midnight.yaml | 1 + themes/polar-night.yaml | 1 + themes/polish.yaml | 1 + themes/polychrome-dark.yaml | 52 - themes/polychrome-light.yaml | 52 - themes/polygopher-theme.yaml | 1 + themes/polykai.yaml | 3 +- themes/polymath.yaml | 3 + themes/polymer-flow.yaml | 52 - themes/pookie-dark.yaml | 1 + themes/poolside.yaml | 1 + themes/pop-os-cosmic.yaml | 52 - themes/popipa.yaml | 1 + themes/popping-and-locking-mod.yaml | 1 + themes/popping-and-locking.yaml | 52 - themes/popsicle-color-theme.yaml | 1 + themes/port-gellhorn-noir.yaml | 1 + themes/posh.yaml | 1 + themes/posterpole.yaml | 1 + themes/potpourri-contrast.yaml | 52 - themes/potpourri-light.yaml | 52 - themes/potpourri.yaml | 52 - themes/powder.yaml | 2 + themes/power-dark.yaml | 1 + themes/power-low-purple-theme.yaml | 52 - themes/poznajkubernetes.yaml | 1 + themes/ppy-like.yaml | 52 - themes/pr-theme-obsidian.yaml | 52 - themes/pr-theme-premium.yaml | 52 - themes/pr-theme.yaml | 52 - themes/pre.yaml | 6 +- themes/prescient.yaml | 1 + themes/pretentious-name.yaml | 2 + themes/pretstyle.yaml | 5 +- themes/pretty-dark-theme.yaml | 5 +- themes/pributan.yaml | 1 + themes/primary-dark.yaml | 3 + themes/primary-light.yaml | 3 + themes/prime-contrast.yaml | 52 - themes/prime-light.yaml | 52 - themes/prime.yaml | 52 - themes/primer-light.yaml | 3 +- themes/prism-dark.yaml | 1 + themes/prism-light.yaml | 1 + themes/prisma.yaml | 3 +- themes/prismapixel-studios-dark-theme.yaml | 52 - themes/prismatic-dark.yaml | 1 + themes/prismatic-light.yaml | 1 + themes/prismatic-void.yaml | 1 + themes/prismmagic.yaml | 52 - themes/pro-coding.yaml | 1 + themes/professional-dark.yaml | 1 + themes/progenesis-dark.yaml | 1 + themes/progenesis-light.yaml | 1 + themes/programmer.yaml | 1 + themes/progress-dark.yaml | 1 + themes/progress.yaml | 52 - themes/project-dark-theme-soft.yaml | 1 + themes/prom-wiki.yaml | 1 + themes/pronight.yaml | 1 + themes/proper-dracula.yaml | 1 + themes/proper-pure.yaml | 1 + themes/proper-theme-alternate-2.yaml | 1 + themes/proper-theme-alternate-fork.yaml | 1 + themes/proper-theme-fork.yaml | 1 + themes/proper-up-for-what.yaml | 1 + themes/proper.yaml | 1 + themes/propurple.yaml | 52 - themes/protheme-dark-2.yaml | 1 + themes/protheme-dark.yaml | 1 + themes/ps-dark.yaml | 1 + themes/ps-light.yaml | 1 + themes/ps-mid-blue.yaml | 1 + themes/ps-syntax.yaml | 3 +- themes/pudding-dark-caramel-beta.yaml | 52 - themes/pudding-dark-christmas.yaml | 52 - themes/pudding-dark.yaml | 52 - themes/pudding-light-jk.yaml | 52 - themes/pudding-light.yaml | 52 - themes/pulpy-orange.yaml | 3 +- themes/pulsar.yaml | 1 + themes/pulse-balanced-purple.yaml | 52 - themes/pulse-comfort-light.yaml | 52 - themes/pulse-soft-purple.yaml | 52 - themes/pumpkin.yaml | 52 - themes/punjab-land-of-five-rivers.yaml | 1 + themes/punkfut.yaml | 1 + themes/pur-theme-v1.yaml | 1 + themes/purble-0-0-2-fork-fork.yaml | 52 - themes/purddy.yaml | 3 +- themes/pure-black-monokai-inspired.yaml | 3 + themes/pure-black.yaml | 3 +- themes/pure-dark.yaml | 1 + themes/pure-light.yaml | 1 + themes/pure-monochrome.yaml | 50 - themes/pureblack.yaml | 52 - themes/purgle-dark-purple.yaml | 50 - themes/puri-twilite.yaml | 1 + themes/purple-cake.yaml | 1 + themes/purple-cloud-minimal.yaml | 1 + themes/purple-cloud-theme.yaml | 1 + themes/purple-codain.yaml | 5 +- themes/purple-cyan.yaml | 52 - themes/purple-dark-black.yaml | 1 + themes/purple-dark-theme-unicode.yaml | 52 - themes/purple-dark.yaml | 65 +- themes/purple-deep-black-fork.yaml | 52 - themes/purple-deep-black.yaml | 1 + themes/purple-dream.yaml | 3 +- themes/purple-galaxy.yaml | 1 + themes/purple-ish-dimmed.yaml | 1 + themes/purple-ish.yaml | 1 + themes/purple-royal.yaml | 52 - themes/purple-surface-dark.yaml | 4 + themes/purple-theme.yaml | 1 + themes/purple-twist.yaml | 1 + themes/purple-void.yaml | 65 +- themes/purple.yaml | 85 +- themes/purpleandblack.yaml | 52 - themes/purplechan.yaml | 3 +- themes/purplecrystal.yaml | 1 + themes/purplefy.yaml | 1 + themes/purplephantom.yaml | 1 + themes/purpleporschepheme.yaml | 3 + themes/purpler.yaml | 1 + themes/purplespace.yaml | 52 - themes/purplexed-magic.yaml | 1 + themes/purplexed-theme.yaml | 52 - themes/purplezera.yaml | 3 +- themes/purplish-fork.yaml | 1 + themes/purplue.yaml | 1 + themes/purply-dark.yaml | 52 - themes/purply-light.yaml | 52 - themes/purppy.yaml | 1 + themes/purps.yaml | 1 + themes/purr-light.yaml | 1 + .../purrfect-marshmallow-lavender-night.yaml | 52 - themes/purrfect-marshmallow-pastel-pink.yaml | 52 - themes/purstel.yaml | 1 + themes/purupiu-theme.yaml | 1 + themes/pushkin-is-white.yaml | 52 - themes/pussdev-pink-theme.yaml | 5 +- themes/pvc-light.yaml | 3 + themes/pvdk-theme.yaml | 3 +- themes/pycharm-theme.yaml | 2 + themes/python-bright-colors-theme.yaml | 5 +- themes/qara.yaml | 3 +- themes/qerz-theme.yaml | 52 - themes/qihui-tech-light.yaml | 1 + themes/qihui-tech-night.yaml | 1 + themes/qihui-tech.yaml | 1 + themes/qii-theme-dark-shallow.yaml | 52 - themes/qii-theme-dark.yaml | 52 - themes/qii-theme-light.yaml | 52 - themes/qoder-dark.yaml | 52 - themes/qqqoid-light-color.yaml | 52 - themes/qt-creator-like-dark-theme.yaml | 5 +- themes/qtz-theme.yaml | 1 + themes/quantum-blue-dark.yaml | 1 + themes/quantum-dark.yaml | 52 - themes/quantum-fluidity.yaml | 1 + themes/quantum-flux.yaml | 50 - themes/quantum-green.yaml | 52 - themes/quantum-material-theme-dark.yaml | 50 - themes/quantum-material-theme-light.yaml | 50 - themes/quantum-material-theme-void.yaml | 50 - themes/quantum-mirage.yaml | 52 - themes/quantum-night.yaml | 3 +- themes/quantum-synthwave.yaml | 3 +- themes/quantum.yaml | 52 - themes/quantumqubic.yaml | 1 + themes/quantxz.yaml | 52 - themes/quarkus-dark-theme.yaml | 3 +- themes/quartzium-theme-dark.yaml | 1 + themes/quartzium-theme-darker.yaml | 52 - themes/quartzium-theme-deepforest.yaml | 52 - themes/quartzium-theme-default.yaml | 52 - themes/quartzium-theme-lighter.yaml | 52 - themes/quasar.yaml | 3 +- themes/qubik-dark.yaml | 52 - themes/qubik-light.yaml | 52 - themes/queensland-dark.yaml | 52 - themes/queensland-light.yaml | 52 - themes/quiet-canvas.yaml | 52 - themes/quiet-hacker.yaml | 3 +- themes/quietude.yaml | 1 + themes/quinno-darkness.yaml | 1 + themes/quirky-contrast-theme.yaml | 1 + themes/qutheme.yaml | 1 + themes/r-dark-pro-filter-coolnight.yaml | 1 + themes/r-dark-pro-filter-dark-pro.yaml | 1 + themes/r-dark-pro-filter-nightblack.yaml | 1 + themes/r-dark-pro-filter-nightfall.yaml | 1 + themes/r-dark-pro-filter-nightgrey.yaml | 1 + themes/r-dark-pro-filter-nightlate.yaml | 1 + themes/r-e-m.yaml | 1 + themes/r-h-zero-monokai.yaml | 52 - themes/rabbit.yaml | 1 + themes/radiant-noir.yaml | 1 + themes/radium.yaml | 1 + themes/ragequit.yaml | 1 + themes/ragnarok.yaml | 1 + themes/raij-dark.yaml | 52 - themes/raij.yaml | 52 - themes/rain-city-theme.yaml | 1 + themes/rain.yaml | 1 + themes/rainbow-light.yaml | 52 - themes/rainbow-material-theme.yaml | 3 +- themes/rainbow-pastel-theme.yaml | 1 + themes/rainbow.yaml | 52 - themes/rainbowdrops-dark.yaml | 52 - themes/rainforest-dark.yaml | 1 + themes/rainx0r.yaml | 1 + themes/rainy-hydrangea.yaml | 1 + themes/raiyanplanet-dark-knight.yaml | 52 - themes/raiyanplanet-darkest.yaml | 52 - themes/raiyanplanet-purple-world.yaml | 52 - themes/rajasthan-land-of-kings.yaml | 1 + themes/rajoyish.yaml | 1 + themes/rakkii-theme.yaml | 1 + themes/ramage.yaml | 1 + themes/ramazzotti-80s.yaml | 52 - themes/ramazzotti-flexobi.yaml | 1 + themes/ramazzotti-gruvbox.yaml | 1 + themes/ramuda.yaml | 52 - themes/rapture.yaml | 3 +- themes/rasengan-glacier.yaml | 1 + themes/rat-beach.yaml | 1 + themes/rate-dark-cold.yaml | 1 + themes/rate-dark.yaml | 1 + themes/rate-light-soft.yaml | 1 + themes/rate-light.yaml | 1 + themes/ravenwood-dark.yaml | 1 + themes/ravenwood-light.yaml | 1 + themes/rayleigh.yaml | 1 + themes/rb-s-desaturated.yaml | 52 - themes/rbe-matrix-skin-theme.yaml | 3 +- themes/rblx-lua-non-italic.yaml | 1 + themes/rcw-120-v1.yaml | 52 - themes/rdcd.yaml | 3 +- themes/re-dark.yaml | 52 - themes/re-eclipse-old-school.yaml | 1 + themes/re-eclipse.yaml | 1 + themes/re-vision.yaml | 1 + themes/react-italic-theme.yaml | 52 - themes/react-theme.yaml | 53 +- themes/rebellion-contrast.yaml | 52 - themes/rebellion-light.yaml | 52 - themes/rebellion.yaml | 52 - themes/recats-classic-dark.yaml | 1 + themes/recats-nova-dark.yaml | 1 + themes/recotheme.yaml | 1 + themes/red-black-white-dark.yaml | 1 + themes/red-black-white-light.yaml | 1 + themes/red-black-white.yaml | 1 + themes/red-color-theme.yaml | 52 - themes/red-grey.yaml | 1 + themes/red-neon.yaml | 50 - themes/red-one-dark-pro-dark.yaml | 52 - themes/red-vintage.yaml | 52 - themes/red.yaml | 52 - themes/reddark.yaml | 3 +- themes/reddit-dark-based-theme-updated.yaml | 52 - themes/rediohead-theme.yaml | 1 + themes/redorainbow.yaml | 1 + themes/redpro-dark.yaml | 1 + themes/redpro-light.yaml | 1 + themes/redspecter.yaml | 3 +- themes/refined-charcoal.yaml | 52 - themes/refined-default.yaml | 52 - themes/refined-dracula.yaml | 52 - themes/refined-espresso.yaml | 52 - themes/refined-matcha.yaml | 52 - themes/refined-mocha.yaml | 52 - themes/refined-night-owl.yaml | 52 - themes/refined-oceanic-next.yaml | 52 - themes/refined-one.yaml | 52 - themes/refined-palenight.yaml | 52 - themes/refined-purple.yaml | 52 - themes/refined-slate.yaml | 52 - themes/regard.yaml | 1 + themes/registheme.yaml | 1 + themes/relaxed-theme-dark-focus.yaml | 52 - themes/relaxed-theme-day-light.yaml | 52 - themes/relaxed-theme-night-warm.yaml | 52 - themes/relaxed-theme.yaml | 52 - themes/remedy-bright-tilted.yaml | 1 + themes/remedy-dark-tilted.yaml | 1 + themes/remedyish-bright.yaml | 50 - themes/remedyish-dark.yaml | 50 - themes/replicant.yaml | 1 + themes/replt-it.yaml | 52 - themes/repoman-color-theme.yaml | 1 + themes/resknow-dark.yaml | 52 - themes/ressgame-advance-coding-theme.yaml | 1 + themes/retina.yaml | 3 +- themes/retro-arcade.yaml | 52 - themes/retro-cathode-ray-minimal-theme.yaml | 3 +- themes/retro-green.yaml | 52 - themes/retro-hacker-amber.yaml | 52 - themes/retro-hacker-blue.yaml | 52 - themes/retro-hacker-green-subtle.yaml | 52 - themes/retro-hacker-green.yaml | 52 - themes/retro-hacker-magenta.yaml | 52 - themes/retro-keyboard-dark.yaml | 52 - themes/retro-keyboard-light.yaml | 52 - themes/retro-pastel-color-theme.yaml | 3 +- themes/retro-theme.yaml | 66 +- themes/retro-vibes.yaml | 3 +- themes/retro.yaml | 52 - themes/retrocoders.yaml | 52 - themes/retronica-amber-terminal.yaml | 52 - themes/retronica-neon-nights.yaml | 52 - themes/retronica-pastel-arcade.yaml | 52 - themes/retronica-phosphor-green.yaml | 52 - themes/retronica-vintage-computing.yaml | 52 - themes/retropunk.yaml | 1 + themes/retroscope.yaml | 3 +- themes/retrox.yaml | 3 +- themes/reui-ii-dark.yaml | 52 - themes/reui-mirage.yaml | 52 - themes/reui.yaml | 52 - themes/revelation-contrast.yaml | 52 - themes/revelation-light.yaml | 52 - themes/revelation.yaml | 52 - themes/revisual-assist-color-theme.yaml | 52 - themes/revisualassist.yaml | 1 + themes/rextax-bright-fork.yaml | 52 - themes/rey.yaml | 1 + themes/rezaul360-blue-velvet-theme.yaml | 52 - themes/rezaul360-professional-theme.yaml | 52 - themes/rezaul360-simple-as-light.yaml | 52 - themes/rg-htmllessons-io.yaml | 52 - themes/rhodes-dark.yaml | 2 + themes/rhodes-light.yaml | 2 + themes/rhodium-dark.yaml | 1 + themes/rich-black-no-highlighting.yaml | 1 + themes/rich-black-theme.yaml | 1 + themes/rider-dark-darcula.yaml | 1 + themes/rider-dark-new-ui.yaml | 1 + themes/rider-melon-night.yaml | 1 + themes/rider.yaml | 52 - themes/rigel.yaml | 1 + themes/rimber.yaml | 1 + themes/riskified-dark.yaml | 1 + themes/rito.yaml | 52 - themes/rivendell.yaml | 1 + themes/riviera-theme.yaml | 2 + themes/rizz-focused.yaml | 1 + themes/rizz-neutral.yaml | 1 + themes/rm-dark-theme.yaml | 1 + themes/rmondesilva-contrast.yaml | 52 - themes/roblox-stylized-dark-theme.yaml | 3 +- themes/robodark.yaml | 3 +- themes/robolaunch.yaml | 3 +- themes/robot-framework-material-dark.yaml | 52 - themes/rocinante.yaml | 1 + themes/rocklee.yaml | 52 - themes/rocko-s-modern-theme.yaml | 1 + ...rog-theme-v1-1-dark-alpha-syntax-test.yaml | 50 - themes/rogue-squadron.yaml | 52 - themes/rohit-kudalkar-dark-theme.yaml | 1 + themes/rohit.yaml | 52 - themes/ronin-darker.yaml | 52 - themes/ronin.yaml | 52 - themes/root-bear.yaml | 52 - themes/root-dark-mode-theme-v0-1.yaml | 52 - themes/ros-pine-dawn-no-italics.yaml | 52 - themes/ros-pine-moon.yaml | 52 - themes/ros-pine-no-italics.yaml | 52 - themes/ros-pine.yaml | 52 - themes/rose-paradise.yaml | 52 - themes/rosefall-black.yaml | 1 + themes/rosefall-midnight.yaml | 1 + themes/roselia-orbital-eden-pastel.yaml | 1 + themes/roselia.yaml | 1 + themes/rouge.yaml | 52 - themes/roxo-theme.yaml | 3 +- themes/royal-darker-theme.yaml | 1 + themes/royal-fork.yaml | 1 + themes/royal.yaml | 1 + themes/royalty-theme.yaml | 3 + themes/rozen.yaml | 1 + themes/rs-dark.yaml | 1 + themes/rsikified-dark-purple.yaml | 1 + themes/rubecula.yaml | 1 + themes/rubi-theme.yaml | 1 + themes/ruby-nights-garnet-midnight.yaml | 1 + themes/ruby-nights-garnet.yaml | 1 + themes/ruby-nights-ruby-midnight.yaml | 1 + themes/ruby-nights-ruby.yaml | 1 + themes/ruby-sea.yaml | 1 + ...udydev-theme-edited-tokyo-night-storm.yaml | 1 + themes/rufendev-green-purple.yaml | 3 + themes/rui-cobalt.yaml | 1 + themes/rui-sapphire.yaml | 1 + themes/rumba-dark.yaml | 1 + themes/runic-minimal.yaml | 52 - themes/running-wires.yaml | 1 + themes/ruru-marijuana.yaml | 1 + themes/ruru-moon.yaml | 1 + themes/rust-brown.yaml | 3 +- themes/rustacean.yaml | 3 +- themes/rusty.yaml | 3 + themes/ryb.yaml | 1 + themes/rypjaws.yaml | 1 + themes/s-kill.yaml | 52 - themes/s-o-paulo-night.yaml | 3 + themes/sabbir-theme-3.yaml | 1 + themes/sacred.yaml | 1 + themes/sadhu.yaml | 1 + themes/safari-midnight.yaml | 1 + themes/safe-dark-theme.yaml | 52 - themes/safira.yaml | 52 - themes/saga-nordic-v1-2.yaml | 52 - themes/saga-oceania-v1-2.yaml | 52 - themes/sage-of-light-color-theme.yaml | 52 - themes/sage-professional.yaml | 3 +- themes/sage-siren-theme.yaml | 1 + themes/sage.yaml | 1 + themes/sailor-at-sea.yaml | 52 - themes/sakai-theme-jupiter.yaml | 1 + themes/sakai-theme-moon.yaml | 1 + themes/sakai-theme-saturn.yaml | 1 + themes/sakura-blossom-midnight.yaml | 52 - themes/sakura-blossom-theme.yaml | 52 - themes/sakura-dreams-dark.yaml | 52 - themes/sakura-dreams.yaml | 52 - themes/sakura-theme.yaml | 52 - themes/sakura-v2-by-leroiadib.yaml | 1 + themes/sakura.yaml | 2 + themes/sakya-dorje.yaml | 52 - themes/samacaca.yaml | 3 +- themes/samgido-theme-dark.yaml | 1 + themes/samito-nest-graphql-theme.yaml | 1 + themes/samito-nest-theme.yaml | 52 - themes/samito-next-theme.yaml | 1 + themes/samurai.yaml | 52 - themes/samyak-bumb.yaml | 1 + themes/sanam-dark-pro.yaml | 3 +- themes/sandcastle.yaml | 52 - themes/sanded.yaml | 3 +- themes/sandstorm.yaml | 1 + themes/sanemi-shinazugawa.yaml | 52 - themes/sanrio.yaml | 52 - themes/sapporo.yaml | 1 + themes/saransk-night.yaml | 1 + themes/saraswati-cool-light-theme.yaml | 1 + themes/sarcastic-white.yaml | 4 + themes/sargam.yaml | 1 + themes/satoru-gojo-blue.yaml | 52 - themes/satoru-gojo-white.yaml | 52 - themes/satoshi-nakamoto-theme.yaml | 1 + themes/satsoomahhh.yaml | 1 + themes/satu.yaml | 1 + themes/saturated-dark-terminal.yaml | 1 + themes/saturn-moonlight.yaml | 1 + themes/saturnblue-dark.yaml | 50 - themes/sauna-theme.yaml | 1 + themes/saunf.yaml | 1 + themes/sauve.yaml | 1 + themes/savannah-dawn.yaml | 1 + themes/savannah-sunset.yaml | 1 + themes/save-my-eyes.yaml | 1 + themes/savetemin.yaml | 1 + themes/sazardev.yaml | 52 - themes/scarlet-witch-dark.yaml | 1 + themes/scarlet-witch-light.yaml | 1 + themes/scarlet.yaml | 1 + themes/sceanic-dark-gray.yaml | 1 + themes/sceanic-gray.yaml | 1 + themes/sceanic.yaml | 1 + themes/schoero-dark.yaml | 1 + themes/schooltheme.yaml | 52 - themes/schwifty-atom-one-dark.yaml | 1 + themes/schwifty-one-dark.yaml | 1 + themes/schwifty.yaml | 1 + themes/scooby-dooby-dark.yaml | 1 + themes/scorch-contrast.yaml | 52 - themes/scorch-light.yaml | 52 - themes/scorch.yaml | 52 - themes/scorpion-theme.yaml | 1 + themes/scuba.yaml | 1 + themes/sea-glass.yaml | 52 - themes/sea-urchin.yaml | 1 + themes/seabrook-dark-italic.yaml | 1 + themes/seabrook-light-italic.yaml | 1 + themes/seaci-base.yaml | 1 + themes/seaci-dark.yaml | 1 + themes/seafarer.yaml | 1 + themes/seafoam.yaml | 3 +- themes/seagull.yaml | 1 + themes/sebostien-theme.yaml | 3 + themes/secret-spring.yaml | 52 - themes/section-9-hacker.yaml | 1 + themes/section-9-major.yaml | 1 + themes/section-9-ranger.yaml | 1 + themes/section-9.yaml | 1 + themes/secunda.yaml | 1 + themes/secuoyas-code.yaml | 2 + themes/sedona.yaml | 1 + themes/seed7-tokyo-night-dark.yaml | 1 + themes/seekode-light.yaml | 1 + themes/seilacolor-2.yaml | 1 + themes/seilacolor.yaml | 1 + themes/selene-selenized-dark.yaml | 52 - themes/selene-selenized-light.yaml | 52 - themes/selenitic-color-theme.yaml | 52 - themes/sema.yaml | 3 +- themes/semantic-noctis-lux.yaml | 52 - themes/semi-dark-theme-in-yellow.yaml | 5 +- themes/senerdark-pro-blue-gray.yaml | 3 + themes/senerdark-pro-deep-gray.yaml | 3 + themes/senkorange.yaml | 1 + themes/senna-dark-black-theme.yaml | 52 - themes/seoul-dancheong.yaml | 1 + themes/seoul-morning.yaml | 1 + themes/seoul-night.yaml | 1 + themes/september-dark-theme.yaml | 52 - themes/sequoia-monochrome.yaml | 52 - themes/sequoia-moonlight.yaml | 52 - themes/sequoia-retro.yaml | 52 - themes/seral-dark-github-stripe.yaml | 1 + themes/seral-light-github-stripe.yaml | 1 + themes/serein-dark-soft.yaml | 1 + themes/serein-dark.yaml | 1 + themes/serein-light-soft.yaml | 1 + themes/serein-light.yaml | 1 + themes/serendipity-midnight-electric.yaml | 52 - themes/serendipity-midnight-v1.yaml | 52 - themes/serendipity-midnight.yaml | 52 - themes/serendipity-morning-v1.yaml | 52 - themes/serendipity-morning.yaml | 52 - themes/serendipity-sunset-v1.yaml | 52 - themes/serendipity-sunset.yaml | 52 - themes/serene-dawn.yaml | 1 + themes/serene.yaml | 3 +- themes/serenity-light.yaml | 1 + themes/serenity-moon.yaml | 1 + themes/serenity-noir.yaml | 1 + themes/service-contrast.yaml | 52 - themes/service-light.yaml | 52 - themes/service.yaml | 52 - themes/seti-classic-vscode.yaml | 1 + themes/seti.yaml | 5 +- themes/sewayaki-dark.yaml | 1 + themes/shaan-s.yaml | 3 +- themes/shaant-shakti-mystic-roast.yaml | 1 + themes/shaant-shakti-sand-storm.yaml | 1 + themes/shaant-shakti-soul-drift.yaml | 1 + themes/shaant-shakti-spfx-sanctuary.yaml | 1 + themes/shaant-shakti.yaml | 1 + themes/shadcn-blue-light.yaml | 1 + themes/shadcn-green-dark.yaml | 1 + themes/shadcn-green-light.yaml | 1 + themes/shadcn-neutral-dark.yaml | 1 + themes/shadcn-neutral-light.yaml | 1 + themes/shadcn-orange-dark.yaml | 1 + themes/shadcn-orange-light.yaml | 1 + themes/shadcn-red-dark.yaml | 1 + themes/shadcn-red-light.yaml | 1 + themes/shadcn-rose-dark.yaml | 1 + themes/shadcn-rose-light.yaml | 1 + themes/shadcn-violet-dark.yaml | 1 + themes/shadcn-violet-light.yaml | 1 + themes/shadcn-vivid.yaml | 1 + themes/shadcn-yellow-dark.yaml | 1 + themes/shadcn-yellow-light.yaml | 1 + themes/shaddy-lighta.yaml | 1 + themes/shaddy.yaml | 1 + themes/shade-theme.yaml | 1 + themes/shades-of-blue.yaml | 3 +- themes/shades-of-cyan-theme.yaml | 3 +- themes/shades-of-gravy.yaml | 1 + themes/shades-of-life-light.yaml | 52 - themes/shades-of-life.yaml | 52 - .../shades-of-midnight-blue-dark-theme.yaml | 5 +- themes/shades-of-violet.yaml | 3 +- themes/shades.yaml | 1 + themes/shadowborn.yaml | 52 - themes/shadowscape.yaml | 1 + themes/shadowspectrum.yaml | 52 - themes/shale.yaml | 52 - themes/shamrock.yaml | 1 + themes/sharkdark-theme.yaml | 52 - themes/sharpblue.yaml | 1 + themes/shaughnessy-nanite-theme.yaml | 3 +- themes/sheme.yaml | 1 + themes/shibainu-dark.yaml | 1 + themes/shibuya.yaml | 3 +- themes/shifting-sands.yaml | 1 + themes/shiina.yaml | 1 + themes/shinjuku.yaml | 1 + themes/shinkai.yaml | 1 + themes/shinobu-kocho.yaml | 52 - themes/shion.yaml | 1 + themes/ship-dark.yaml | 52 - themes/ship-light.yaml | 52 - themes/shiro-sakura-light.yaml | 52 - themes/shirotelin.yaml | 1 + themes/shiv-vscode-theme.yaml | 1 + themes/shivam.yaml | 52 - themes/shoxwave.yaml | 1 + themes/shrek-contrast.yaml | 52 - themes/shrek-light.yaml | 52 - themes/shrek.yaml | 52 - themes/shuri-midnight.yaml | 1 + themes/shuvitheme.yaml | 1 + themes/shydl3.yaml | 1 + themes/siberia.yaml | 1 + themes/side-punk-sql.yaml | 1 + themes/sidev-monokai-dim-ts.yaml | 1 + themes/siemor.yaml | 1 + themes/sign-theme-v3.yaml | 3 + themes/sign-theme-v4.yaml | 3 + themes/siksnis-dev.yaml | 1 + themes/silent-code.yaml | 52 - themes/silicon-dark.yaml | 1 + themes/silk-petal.yaml | 52 - themes/silo.yaml | 1 + themes/silot-dark-classic.yaml | 1 + themes/silvermist.yaml | 1 + themes/silverwolf.yaml | 1 + themes/simble.yaml | 3 +- themes/simple-3000.yaml | 3 +- themes/simple-calm-dark.yaml | 1 + themes/simple-muted-dark.yaml | 1 + themes/simple-muted-light.yaml | 1 + themes/simple-red-dark.yaml | 1 + themes/simpledark.yaml | 52 - themes/sinequanone-acid.yaml | 1 + themes/sinequanone-apple.yaml | 1 + themes/sinequanone-brighton.yaml | 1 + themes/sinequanone-carbon.yaml | 1 + themes/sinequanone-noir.yaml | 1 + themes/sinequanone-sunset.yaml | 1 + themes/sinergyext.yaml | 1 + themes/sirius-astral.yaml | 52 - themes/sirius-glow.yaml | 52 - themes/sirius-nebula.yaml | 52 - themes/sirius-pulsar.yaml | 52 - themes/sirius-vesper.yaml | 52 - themes/sirius-vibe.yaml | 52 - themes/sirius-vortex.yaml | 52 - themes/sirius-zenith.yaml | 52 - themes/sissi-ga.yaml | 1 + themes/sith.yaml | 1 + themes/sizo-purple.yaml | 3 + themes/sj-pinkish-theme.yaml | 1 + themes/sj-theme.yaml | 1 + themes/sk5s-vsgt.yaml | 52 - themes/skeletortheme.yaml | 3 + themes/skeswa-s-noctis-azureus.yaml | 52 - themes/skeswa-s-noctis-bordo.yaml | 52 - themes/skeswa-s-noctis-hibernus.yaml | 52 - themes/skeswa-s-noctis-lilac.yaml | 52 - themes/skeswa-s-noctis-lux.yaml | 52 - themes/skeswa-s-noctis-minimus.yaml | 52 - themes/skeswa-s-noctis-obscuro.yaml | 52 - themes/skeswa-s-noctis-sereno.yaml | 52 - themes/skeswa-s-noctis-uva.yaml | 52 - themes/skeswa-s-noctis-viola.yaml | 52 - themes/skeswa-s-noctis.yaml | 52 - themes/sky-at-night.yaml | 1 + themes/sky-blue-tranquility-focus.yaml | 1 + themes/sky-miami-vice.yaml | 1 + themes/sky-neon.yaml | 1 + themes/sky-real-abyss.yaml | 1 + themes/skye-wind-light.yaml | 1 + themes/skye-wind.yaml | 1 + themes/skyline.yaml | 3 + themes/slack-theme-aubergine-dark.yaml | 52 - themes/slack-theme-aubergine-new.yaml | 52 - themes/slack-theme-dark.yaml | 52 - themes/slack-theme-hoth.yaml | 52 - themes/slack-theme.yaml | 52 - themes/slate-black.yaml | 1 + themes/slate-blackish.yaml | 1 + themes/slate-blue.yaml | 52 - themes/slate-contrast.yaml | 52 - themes/slate-gray.yaml | 1 + themes/slate-light.yaml | 52 - themes/slate-neon.yaml | 1 + themes/slate.yaml | 52 - themes/sleepy-nights.yaml | 3 +- themes/sleepy-owl-default-beta.yaml | 1 + themes/sleepy-owl-greenwich-beta.yaml | 1 + themes/sleepy-owl-oak-beta.yaml | 1 + themes/slime-color-theme.yaml | 52 - themes/slime-contrast.yaml | 52 - themes/slime-light.yaml | 52 - themes/slime-solid-color-theme.yaml | 52 - themes/slime.yaml | 1 + themes/slimy-high-contrast.yaml | 1 + themes/slimy-light.yaml | 1 + themes/slimy.yaml | 1 + themes/slinkwave.yaml | 1 + themes/sloth-highlander-theme-1.yaml | 3 + themes/sloth-highlander-theme-3.yaml | 3 + themes/smalltheme-carbon-oled.yaml | 1 + themes/smettboi-light.yaml | 1 + themes/smit-amber-monochrome.yaml | 1 + themes/smit-arctic-cyan.yaml | 1 + themes/smit-black-slate.yaml | 1 + themes/smit-coffee.yaml | 1 + themes/smit-crimson-red.yaml | 1 + themes/smit-dark.yaml | 1 + themes/smit-deep-ocean.yaml | 1 + themes/smit-forest-green.yaml | 1 + themes/smit-gruvbox-inspired.yaml | 1 + themes/smit-high-contrast.yaml | 1 + themes/smit-low-light.yaml | 1 + themes/smit-matrix.yaml | 1 + themes/smit-midnight-purple.yaml | 1 + themes/smit-minimal-dark.yaml | 1 + themes/smit-monokai-inspired.yaml | 1 + themes/smit-neon-cyberpunk.yaml | 1 + themes/smit-soft-dark.yaml | 1 + themes/smit-sunset-orange.yaml | 1 + themes/smit-synthwave.yaml | 1 + themes/smithy-iron.yaml | 1 + themes/smoldering-ember.yaml | 52 - themes/smooth-burn-dark-hard.yaml | 52 - themes/smooth-burn-dark-medium.yaml | 52 - themes/smooth-burn-dark.yaml | 52 - themes/smooth-burn-light-hard.yaml | 52 - themes/smooth-dark.yaml | 50 - themes/smooth-light.yaml | 50 - themes/smoothity-dark.yaml | 1 + themes/smooththeme.yaml | 1 + themes/snakedye-chocolate.yaml | 52 - themes/snap-light.yaml | 1 + themes/snappier.yaml | 52 - themes/snappy-contrast.yaml | 52 - themes/snappy-light.yaml | 52 - themes/snazzy-light.yaml | 3 +- themes/snazzy-operator-color-theme-dark.yaml | 1 + .../snazzy-operator-color-theme-italics.yaml | 52 - themes/snazzy-operator-color-theme.yaml | 52 - themes/snazzy-operator-natural.yaml | 52 - themes/snazzy-solaris.yaml | 3 +- themes/snazzy-vs-theme.yaml | 52 - themes/snazzy.yaml | 52 - themes/snazzyfied.yaml | 3 +- themes/snow-theme.yaml | 52 - themes/snowflake-dark-theme.yaml | 52 - themes/snowflake-darker-theme.yaml | 52 - themes/snoword-dark-soft.yaml | 1 + themes/snoword-dark.yaml | 1 + themes/snoword-light-soft.yaml | 1 + themes/snoword-light.yaml | 1 + themes/snowpiercer.yaml | 3 +- themes/snowy-mint.yaml | 1 + themes/sober-afternoon.yaml | 1 + themes/sober-deepnight.yaml | 1 + themes/sober-midnight.yaml | 1 + themes/sober.yaml | 52 - themes/sobrio-light.yaml | 52 - themes/sobrio.yaml | 52 - themes/soct-color-theme.yaml | 52 - themes/soda.yaml | 5 +- themes/soft-colors.yaml | 1 + themes/soft-dark.yaml | 52 - themes/soft-era.yaml | 4 +- themes/soft-kawaii-theme-1-color-theme.yaml | 52 - themes/soft-light.yaml | 52 - themes/soft-material.yaml | 1 + themes/soft-midnight.yaml | 1 + themes/soft-mood-theme.yaml | 1 + themes/soft-sight.yaml | 3 +- themes/soft-sunset-dark.yaml | 1 + themes/soft-yellow-light.yaml | 3 +- themes/softie-theme.yaml | 1 + themes/soho-color-theme.yaml | 52 - themes/soil-theme.yaml | 1 + themes/solar-drift-dark-theme.yaml | 3 + themes/solar-drift-darker-theme.yaml | 3 + themes/solar-flare.yaml | 52 - themes/solar-future.yaml | 4 + themes/solarflare-contrast.yaml | 52 - themes/solarflare-light.yaml | 52 - themes/solarflare.yaml | 52 - themes/solaris.yaml | 1 + themes/solarized-complete-dark.yaml | 2 + themes/solarized-complete-light.yaml | 2 + themes/solarized-custom-dark.yaml | 1 + themes/solarized-custom-light.yaml | 1 + themes/solarized-dark-theme.yaml | 52 - themes/solarized-dark.yaml | 52 - themes/solarized-deep.yaml | 2 + themes/solarized-light-functional.yaml | 5 +- themes/solarized-light-n.yaml | 3 +- themes/solarized-light.yaml | 52 - themes/solarized-lilac.yaml | 52 - themes/solarized-monokai-dark.yaml | 50 - themes/solarized-neue-bright.yaml | 52 - themes/solarized-neue.yaml | 52 - themes/solarized-next.yaml | 4 +- themes/solarized-pro.yaml | 4 +- themes/solarized-right.yaml | 9 +- themes/solarized-simon.yaml | 2 + themes/solarized-ss-light.yaml | 3 +- themes/solarized-yuki.yaml | 52 - themes/solarized.yaml | 2 + themes/solarus.yaml | 1 + themes/solaryss.yaml | 1 + themes/solavsce-packagera.yaml | 50 - themes/solid-dark-theme.yaml | 3 + themes/solitude-dark.yaml | 52 - themes/solitude-soft.yaml | 52 - themes/solo-leveling.yaml | 52 - themes/solstice-estival.yaml | 52 - themes/solstice-heat.yaml | 52 - themes/solstice-hibernal.yaml | 52 - themes/somber.yaml | 1 + themes/something-different.yaml | 1 + themes/something-theme.yaml | 1 + themes/somewhere-on-a-beach.yaml | 1 + themes/sonic-pulse.yaml | 52 - themes/sonokai-andromeda.yaml | 52 - themes/sonokai-atlantis.yaml | 52 - themes/sonokai-espresso.yaml | 52 - themes/sonokai-maia.yaml | 52 - themes/sonokai-shusia.yaml | 52 - themes/sonokai.yaml | 52 - themes/sonora-deep-signal-faded.yaml | 1 + themes/sonora-deep-signal-vibrant.yaml | 1 + themes/sonora-deep-signal.yaml | 1 + themes/sonora-tides.yaml | 1 + themes/soothing-dark.yaml | 1 + themes/soothing-light.yaml | 1 + themes/soothing.yaml | 1 + themes/sorbet-swirl.yaml | 52 - themes/sorcerer.yaml | 1 + themes/soudev-mega-dark.yaml | 52 - themes/soudev-purple-andromeda.yaml | 52 - themes/soudev-semi-dark-andromeda.yaml | 52 - themes/souei.yaml | 1 + themes/soul-theme.yaml | 1 + themes/souls-theme.yaml | 1 + themes/soup-contrast.yaml | 52 - themes/soup-light.yaml | 52 - themes/soup.yaml | 52 - themes/sourc.yaml | 1 + themes/sourcerer.yaml | 1 + themes/sourlick-contrast.yaml | 52 - themes/sourlick-light.yaml | 52 - themes/sourlick.yaml | 52 - themes/south-australia-dark.yaml | 1 + themes/south-australia-light.yaml | 1 + themes/space-dark.yaml | 52 - themes/space-invader-black.yaml | 1 + themes/space-invader-darker.yaml | 1 + themes/space-invader-light.yaml | 1 + themes/space-invader.yaml | 1 + themes/space-light.yaml | 52 - themes/space-purple-dark.yaml | 52 - themes/space-purple-light.yaml | 52 - themes/space-theme.yaml | 1 + themes/space.yaml | 1 + themes/spacecamp.yaml | 1 + themes/spacedust.yaml | 1 + themes/spacegray.yaml | 1 + themes/spacegrey.yaml | 1 + themes/spacemacs-dark.yaml | 52 - themes/spacemacs-light.yaml | 52 - themes/spaceoceankitrefined.yaml | 52 - themes/spacial.yaml | 1 + themes/spades.yaml | 1 + themes/sparkle-theme.yaml | 52 - themes/speakeasy.yaml | 1 + themes/spearmint-contrast.yaml | 52 - themes/spearmint-light.yaml | 52 - themes/spearmint.yaml | 52 - themes/spiderverse-2099.yaml | 52 - themes/spiderverse-miles.yaml | 52 - themes/spiderverse-spider-man.yaml | 52 - themes/spin-theme.yaml | 1 + themes/spiral.yaml | 1 + themes/spirited-night.yaml | 3 + themes/spitfire-contrast.yaml | 52 - themes/spitfire-light.yaml | 52 - themes/spitfire.yaml | 52 - themes/splash-theme.yaml | 1 + themes/splus.yaml | 3 +- themes/spotly-dark.yaml | 1 + themes/spotly-light.yaml | 1 + themes/spring-breeze-theme.yaml | 1 + themes/spring.yaml | 1 + themes/sprinkles-color-theme.yaml | 1 + themes/spurlys-theme.yaml | 1 + themes/spyder-theme-light.yaml | 52 - themes/sql-dark-pro-high-contrast.yaml | 3 + themes/squash-theme.yaml | 1 + themes/squeak.yaml | 1 + themes/srcery-gagbo.yaml | 52 - themes/srcery.yaml | 23 +- themes/st-borg.yaml | 52 - themes/st-lcars.yaml | 52 - themes/stackmeister.yaml | 52 - themes/stained-glass-dark.yaml | 1 + themes/stannum.yaml | 1 + themes/star-night-luna.yaml | 1 + themes/star-night.yaml | 1 + themes/star-wars-dark-side-theme-global.yaml | 1 + themes/starboy-theme.yaml | 1 + themes/starburst-dark.yaml | 1 + themes/starfield.yaml | 1 + themes/stark-contrast.yaml | 52 - themes/stark-dark.yaml | 1 + themes/stark-light.yaml | 52 - themes/stark.yaml | 52 - themes/starlight-daybreak.yaml | 1 + themes/starlight-light.yaml | 1 + themes/starlight-midnight.yaml | 1 + themes/starlight-obsidian.yaml | 1 + themes/starlight-soft-glow.yaml | 1 + themes/starlight.yaml | 3 +- themes/starry-night.yaml | 1 + themes/starry-pillar.yaml | 1 + themes/startlite.yaml | 1 + themes/startrail.yaml | 1 + themes/stasis-contrast.yaml | 52 - themes/stasis-light.yaml | 52 - themes/stasis.yaml | 52 - themes/stealth-contrast.yaml | 52 - themes/stealth-light.yaml | 52 - themes/stealth.yaml | 1 + themes/steel-blue-dark.yaml | 1 + themes/steel-phantom.yaml | 1 + themes/steelbore.yaml | 9 + themes/steffula.yaml | 1 + themes/stella-high-contrast.yaml | 1 + themes/stella-theme.yaml | 1 + themes/stella.yaml | 1 + themes/stellar-void.yaml | 3 +- themes/stellar.yaml | 52 - themes/stereo-theme.yaml | 1 + themes/stilla.yaml | 1 + themes/sto-classic.yaml | 52 - themes/sto-green-dark.yaml | 52 - themes/sto-green.yaml | 52 - themes/stonerose.yaml | 1 + themes/storm-contrast.yaml | 52 - themes/storm-light.yaml | 52 - themes/storm-tracker.yaml | 52 - themes/storm-uvadark-fork.yaml | 1 + themes/storm.yaml | 1 + themes/stormpetrel.yaml | 52 - themes/stranger-theme-dimension-x.yaml | 1 + themes/stranger-theme-hawkins.yaml | 1 + themes/stranger-theme-starcourt.yaml | 1 + themes/stranger-theme-the-lab.yaml | 1 + themes/stranger-theme-tigers.yaml | 1 + themes/stranger-theme-upside-down.yaml | 1 + themes/studio-apartment.yaml | 52 - themes/studio-bio-bio-dark-theme.yaml | 52 - themes/styledark18.yaml | 52 - themes/styledark28.yaml | 52 - themes/stylelight33.yaml | 52 - themes/stylelight35.yaml | 1 + themes/stypt-aether.yaml | 49 - themes/subessence.yaml | 1 + themes/sublette.yaml | 1 + themes/sublime-breakers.yaml | 1 + themes/sublime-mariana-semantic.yaml | 1 + themes/sublime-mariana-test.yaml | 1 + themes/sublime-monokai-color-theme.yaml | 52 - themes/sublime-text-3.yaml | 3 +- themes/sublime-text-4-theme.yaml | 52 - themes/sublime-vscode-theme.yaml | 5 +- themes/subliminal-color-theme.yaml | 1 + themes/subliminal-nightfall.yaml | 2 + themes/subliminalr.yaml | 1 + themes/subscribe-color.yaml | 52 - themes/substrata.yaml | 1 + themes/sucrose.yaml | 1 + themes/sufocode.yaml | 1 + themes/sugar-dark-focus.yaml | 52 - themes/sugar-dark-github.yaml | 52 - themes/sugar-dark-midnight.yaml | 52 - themes/sugar-dark-one.yaml | 52 - themes/sugar-dark-vitesse.yaml | 52 - themes/sugar-dark-vs.yaml | 52 - themes/sugar-dark.yaml | 52 - themes/sugar-fleet.yaml | 52 - themes/sugar-light-vitesse.yaml | 52 - themes/sugar-light-vs.yaml | 52 - themes/sugar-light.yaml | 52 - themes/sukadia-dev-dark.yaml | 52 - themes/sulfuric-dark.yaml | 1 + themes/sumiiro.yaml | 1 + themes/summer-night-gray-high-contrast.yaml | 52 - themes/summer-night-high-contrast.yaml | 52 - themes/summer-night.yaml | 52 - themes/summer-nights-lullaby.yaml | 1 + themes/summer-nights.yaml | 1 + themes/summer-palenight.yaml | 1 + themes/summer.yaml | 52 - themes/summercamp.yaml | 1 + themes/summerrelax.yaml | 1 + themes/sunbather.yaml | 1 + ...code-dark-soothing-blue-light-reduced.yaml | 1 + themes/sunny.yaml | 1 + themes/sunset-beach-dark.yaml | 52 - themes/sunset-beach-light.yaml | 52 - themes/sunset-boulevard.yaml | 1 + themes/sunset-noir.yaml | 1 + themes/sunset-serenade.yaml | 3 +- themes/sunset-theme.yaml | 1 + themes/sunsplash-monodark.yaml | 3 +- themes/supa.yaml | 4 + themes/super-contrast.yaml | 52 - themes/super-dark-cyberpunk-green.yaml | 1 + themes/super-dark-cyberpunk-grey.yaml | 1 + themes/super-dark-cyberpunk-purple.yaml | 1 + themes/super-light.yaml | 52 - themes/super.yaml | 52 - themes/superbright.yaml | 1 + themes/superdark.yaml | 1 + themes/supergreatmonokai.yaml | 1 + themes/superman-theme.yaml | 52 - themes/supernova.yaml | 2 + themes/surreal.yaml | 1 + themes/susuwatari.yaml | 1 + themes/svelte-5-theme.yaml | 1 + themes/sveltesse-black.yaml | 1 + themes/sveltesse-dark-soft.yaml | 1 + themes/sveltesse-dark.yaml | 1 + themes/sveltesse-light-soft.yaml | 1 + themes/sveltesse-light.yaml | 1 + themes/sw-tatooine.yaml | 52 - themes/sw61.yaml | 52 - themes/swablu.yaml | 3 +- themes/swaminarayan.yaml | 1 + themes/swamp-color-theme.yaml | 52 - themes/sweet-lemon.yaml | 52 - themes/sweet-pascal.yaml | 1 + themes/sweet-vscode.yaml | 17 +- themes/sweetdracula-monokai.yaml | 52 - themes/swnb-palenight-theme.yaml | 5 +- themes/syl-black.yaml | 1 + themes/syl-chocolate.yaml | 1 + themes/syl-forest.yaml | 1 + themes/syl-ice.yaml | 1 + themes/syl-plum.yaml | 1 + themes/syl-shadow.yaml | 1 + themes/syntax-palette.yaml | 52 - themes/synthe.yaml | 4 + themes/synthesis.yaml | 1 + themes/synthor-dark-fork.yaml | 50 - themes/synthwave-2077.yaml | 3 +- themes/synthwave-84-csav-edition.yaml | 13 +- themes/synthwave-alpha.yaml | 1 + themes/synthwave-material-ansi-16.yaml | 2 + themes/synthwave-neon.yaml | 52 - themes/synthwave.yaml | 1 + themes/synthy.yaml | 3 +- themes/sypher.yaml | 3 + themes/syrinx.yaml | 1 + themes/sys1.yaml | 1 + themes/sysop.yaml | 1 + themes/t-on-no-c-digo.yaml | 52 - themes/t-theme.yaml | 1 + themes/t3chdad-darkside-fork.yaml | 49 - themes/t3nsor-solo-leveling.yaml | 52 - themes/taco-syntax.yaml | 1 + themes/tactical-ops.yaml | 52 - themes/tahigh.yaml | 1 + themes/taiga.yaml | 1 + themes/tail-dark-theme.yaml | 52 - themes/tailwind-amber-dark.yaml | 3 + themes/tailwind-amber-light.yaml | 3 + themes/tailwind-blue-dark.yaml | 3 + themes/tailwind-blue-light.yaml | 3 + themes/tailwind-breeze.yaml | 4 +- themes/tailwind-cyan-dark.yaml | 3 + themes/tailwind-cyan-light.yaml | 3 + themes/tailwind-dark.yaml | 52 - themes/tailwind-darkest.yaml | 52 - themes/tailwind-emerald-dark.yaml | 3 + themes/tailwind-emerald-light.yaml | 3 + themes/tailwind-fuchsia-dark.yaml | 3 + themes/tailwind-fuchsia-light.yaml | 3 + themes/tailwind-gray-dark.yaml | 3 + themes/tailwind-gray-light.yaml | 3 + themes/tailwind-green-dark.yaml | 3 + themes/tailwind-green-light.yaml | 3 + themes/tailwind-indigo-dark.yaml | 3 + themes/tailwind-indigo-light.yaml | 3 + themes/tailwind-lime-dark.yaml | 3 + themes/tailwind-lime-light.yaml | 3 + themes/tailwind-moon-blue.yaml | 52 - themes/tailwind-moon-grey.yaml | 1 + themes/tailwind-moon.yaml | 52 - themes/tailwind-neutral-dark.yaml | 3 + themes/tailwind-neutral-light.yaml | 3 + themes/tailwind-orange-dark.yaml | 3 + themes/tailwind-orange-light.yaml | 3 + themes/tailwind-pink-dark.yaml | 3 + themes/tailwind-pink-light.yaml | 3 + themes/tailwind-purple-dark.yaml | 3 + themes/tailwind-purple-light.yaml | 3 + themes/tailwind-red-dark.yaml | 3 + themes/tailwind-red-light.yaml | 3 + themes/tailwind-rose-dark.yaml | 3 + themes/tailwind-rose-light.yaml | 3 + themes/tailwind-sky-dark.yaml | 3 + themes/tailwind-sky-light.yaml | 3 + themes/tailwind-slate-dark.yaml | 3 + themes/tailwind-slate-light.yaml | 3 + themes/tailwind-stone-dark.yaml | 3 + themes/tailwind-stone-light.yaml | 3 + themes/tailwind-teal-dark.yaml | 3 + themes/tailwind-teal-light.yaml | 3 + themes/tailwind-violet-dark.yaml | 3 + themes/tailwind-violet-light.yaml | 3 + themes/tailwind-yellow-dark.yaml | 3 + themes/tailwind-yellow-light.yaml | 3 + themes/tailwind-zinc-dark.yaml | 3 + themes/tailwind-zinc-light.yaml | 3 + themes/tailwind.yaml | 1 + themes/taipei-night.yaml | 1 + themes/takenawa-modified.yaml | 3 + themes/takenawa.yaml | 1 + themes/tame-contrast.yaml | 52 - themes/tame-light.yaml | 52 - themes/tame.yaml | 52 - themes/tamil-nadu-temple-land.yaml | 1 + themes/tan-jade.yaml | 1 + themes/tangere-dark.yaml | 1 + themes/tangere-light.yaml | 1 + themes/tango-plus.yaml | 1 + themes/tango.yaml | 1 + themes/tanuki.yaml | 1 + themes/tao-theme.yaml | 1 + themes/taquito-darker.yaml | 1 + themes/taquito-lighter.yaml | 1 + themes/tara-theme-carbon-high-contrast.yaml | 52 - themes/tara-theme-carbon.yaml | 52 - themes/tara-theme-deepforest.yaml | 52 - themes/tara-theme-ocean.yaml | 52 - themes/tara-theme-palenight.yaml | 52 - themes/tara-theme-teal.yaml | 52 - themes/taramandal-aurora.yaml | 1 + themes/taramandal-dark.yaml | 1 + themes/taramandal-true-cream.yaml | 1 + themes/tarbooz-dark.yaml | 1 + themes/tarbooz-light.yaml | 1 + themes/tarbooz-underripe.yaml | 1 + themes/tasmania-dark.yaml | 52 - themes/tasmania-light.yaml | 52 - themes/taurus.yaml | 3 +- themes/tbfox-theme-light.yaml | 1 + themes/tbfox-theme.yaml | 1 + themes/tbs-theme.yaml | 1 + themes/tea-leaves.yaml | 1 + themes/teags.yaml | 1 + themes/teal-abyss.yaml | 5 +- themes/teal-crow-light.yaml | 1 + themes/teal.yaml | 1 + themes/tealicious.yaml | 1 + themes/tealy.yaml | 5 +- themes/team-pastel-colors-theme.yaml | 3 +- ...-of-the-kingdom-minimal-dark-midnight.yaml | 50 - themes/tears-of-the-kingdom-minimal-dark.yaml | 50 - themes/tearz.yaml | 3 + themes/techrazor-pro.yaml | 1 + themes/techset.yaml | 1 + themes/techstudent10.yaml | 1 + themes/techswahili-color-theme.yaml | 1 + themes/techswahili-deep.yaml | 1 + themes/techswahili-modern-dark.yaml | 1 + themes/tecoma-theme.yaml | 1 + themes/telax.yaml | 4 + themes/telescope-fork.yaml | 52 - themes/telescope.yaml | 91 +- themes/tema-dark-nero.yaml | 1 + themes/tema-dos-cria.yaml | 3 +- themes/tema-felipao.yaml | 50 - themes/teneblattinus.yaml | 1 + themes/tenebris.yaml | 3 +- themes/terafox.yaml | 52 - themes/term.yaml | 1 + themes/terminal-fork.yaml | 52 - themes/terminal.yaml | 52 - themes/terracecat.yaml | 1 + themes/terrarium-minimal-dark.yaml | 1 + themes/terrarium-minimal-light.yaml | 1 + themes/terrorboy-dark.yaml | 3 + themes/tesselate.yaml | 1 + themes/tesseract-dark.yaml | 52 - themes/test.yaml | 52 - themes/tetra-contrast.yaml | 52 - themes/tetra-light.yaml | 52 - themes/tetra.yaml | 52 - themes/teutobourg.yaml | 3 + themes/textmate-rstheme.yaml | 1 + themes/th-me-dark-aout-contraste-lev.yaml | 52 - themes/th-me-dark-avril-vert-printemps.yaml | 52 - themes/th-me-dark-janvier-bleu-fonc.yaml | 52 - themes/th-me-dark-juillet-contraste-lev.yaml | 52 - themes/th-me-dark-juin-high-contrast.yaml | 52 - themes/th-me-high-contrast-janvier-r-vis.yaml | 52 - themes/th-me-sombre-d-automne.yaml | 52 - themes/thanatos.yaml | 1 + themes/thatdatapurple.yaml | 1 + themes/the-best-theme-ever.yaml | 50 - themes/the-best-vscode-theme-ever-light.yaml | 1 + themes/the-dark-stove.yaml | 1 + themes/the-digital-life.yaml | 3 +- themes/the-druid.yaml | 1 + themes/the-empire.yaml | 52 - themes/the-end-of-development.yaml | 52 - themes/the-fato-dark.yaml | 6 +- themes/the-flying-dutchman-high-contrast.yaml | 7 + themes/the-flying-dutchman-soft.yaml | 7 + themes/the-flying-dutchman.yaml | 7 + themes/the-gentleman.yaml | 1 + themes/the-occult.yaml | 1 + themes/the-one-theme.yaml | 52 - themes/the-only-tolerable-light-theme.yaml | 3 + themes/the-orchid-dark.yaml | 1 + themes/the-orchid-light.yaml | 1 + themes/the-orchid-soft.yaml | 1 + themes/the-theme.yaml | 1 + themes/theaisphere-dark.yaml | 1 + themes/theaisphere-light.yaml | 1 + themes/thebear-dark.yaml | 52 - themes/thebestthemealive.yaml | 4 + themes/thecodedoctor.yaml | 1 + themes/thedarkerone.yaml | 1 + themes/themarro-dark-contrast.yaml | 52 - themes/themarro-david-remix.yaml | 52 - themes/themarro.yaml | 52 - themes/theme-bear.yaml | 1 + themes/theme-dark.yaml | 89 +- themes/theme-for-codes-dark.yaml | 52 - themes/theme-for-codes-light.yaml | 52 - themes/theme-joey.yaml | 52 - themes/theme-mk-black.yaml | 1 + themes/theme-mk-rebuilt.yaml | 1 + themes/theme-nickel.yaml | 3 +- themes/theme-one.yaml | 1 + themes/theme-stick-green-dark.yaml | 3 +- themes/theme-y-random.yaml | 1 + themes/theme.yaml | 1 + themes/theme1.yaml | 1 + themes/themedarker.yaml | 52 - themes/themeframek.yaml | 52 - themes/themegreen.yaml | 52 - themes/themello.yaml | 5 +- themes/thememix.yaml | 52 - themes/themename.yaml | 1 + themes/themenis.yaml | 5 +- themes/themeo.yaml | 1 + themes/themepurple.yaml | 52 - themes/themer-dark.yaml | 2 + themes/themer-light.yaml | 52 - themes/themin-mint.yaml | 52 - themes/theo-swarg-dark.yaml | 5 +- themes/thepurple.yaml | 3 +- themes/theta.yaml | 1 + themes/thinkstorm.yaml | 1 + themes/thore-blue.yaml | 1 + themes/thorn.yaml | 52 - themes/thoughtworks-style-theme.yaml | 1 + themes/thra.yaml | 1 + themes/threedark.yaml | 1 + themes/thunder-focus.yaml | 1 + themes/thunder-remains-unseen.yaml | 1 + themes/thxdude-theme.yaml | 1 + themes/thyme21g.yaml | 1 + themes/thynaptic-dark-base.yaml | 1 + themes/thynaptic-dim-base.yaml | 1 + themes/thynaptic-pro.yaml | 1 + themes/thynaptic-sand-base.yaml | 1 + themes/thynaptic-sand-dark.yaml | 1 + themes/tickle-contrast.yaml | 52 - themes/tickle-light.yaml | 52 - themes/tickle-refresh.yaml | 1 + themes/tickle.yaml | 52 - themes/tidelight-contrast-light.yaml | 1 + themes/tidelight-contrast.yaml | 1 + themes/tidelight-dawn.yaml | 1 + themes/tidelight-daybreak.yaml | 1 + themes/tidelight-deep.yaml | 1 + themes/tidelight-dusk.yaml | 1 + themes/tidelight-fog.yaml | 1 + themes/tidelight-high-noon.yaml | 1 + themes/tidelight-midnight.yaml | 1 + themes/tidelight-shore.yaml | 1 + themes/tiktok.yaml | 2 + themes/tim-s-experiments-dark.yaml | 1 + themes/timir.yaml | 1 + themes/timu-macos-dark-theme.yaml | 1 + themes/timu-macos-light-theme.yaml | 1 + themes/timu-spacegrey-theme.yaml | 1 + themes/tinacious-design-syntax.yaml | 52 - themes/tiniri-dark.yaml | 52 - themes/tiniri-light.yaml | 52 - themes/tiny-light.yaml | 83 +- themes/titillating-midnight.yaml | 1 + themes/titillating-sunset.yaml | 1 + themes/tlapalli-00-obsidian.yaml | 1 + themes/tlapalli-01-gold.yaml | 1 + themes/tlapalli-02-turquoise.yaml | 1 + themes/tlapalli-03-quartz.yaml | 1 + themes/tlapalli-04-lapis-lazuli.yaml | 1 + themes/tlapalli-05-amethyst.yaml | 1 + themes/tlapalli-06-jade.yaml | 1 + themes/tlapalli-07-fire-opal.yaml | 1 + themes/tlapalli-l-00-obsidian-light.yaml | 1 + themes/tlapalli-l-01-gold-light.yaml | 1 + themes/tlapalli-l-02-turquoise-light.yaml | 1 + themes/tlapalli-l-03-quartz-light.yaml | 1 + themes/tlapalli-l-04-lapis-lazuli-light.yaml | 1 + themes/tlapalli-l-05-amethyst-light.yaml | 1 + themes/tlapalli-l-06-jade-light.yaml | 1 + themes/tlapalli-l-07-fire-opal-light.yaml | 1 + themes/tm2rd3.yaml | 1 + themes/tmnt-dark-theme.yaml | 1 + themes/tnove-dark-theme.yaml | 3 +- themes/tobirama-water-style.yaml | 52 - themes/todepond-theme.yaml | 3 +- themes/tokito-inspired.yaml | 52 - themes/tokv7.yaml | 1 + themes/tokyo-dark.yaml | 1 + themes/tokyo-dive.yaml | 3 +- themes/tokyo-ghosts-dark.yaml | 1 + themes/tokyo-ghosts-light.yaml | 1 + themes/tokyo-gogh-alt.yaml | 52 - themes/tokyo-gogh.yaml | 52 - themes/tokyo-light.yaml | 52 - themes/tokyo-lights.yaml | 1 + themes/tokyo-midnight.yaml | 4 +- themes/tokyo-modern.yaml | 3 +- themes/tokyo-night-blackout.yaml | 3 +- themes/tokyo-night-bright.yaml | 3 +- themes/tokyo-night-dark.yaml | 5 +- themes/tokyo-night-equalizer.yaml | 52 - themes/tokyo-night-light.yaml | 52 - themes/tokyo-night-nv.yaml | 37 +- themes/tokyo-night-pure.yaml | 3 +- themes/tokyo-night-theme.yaml | 52 - themes/tokyo-night-void.yaml | 3 +- themes/tokyo-panda.yaml | 3 +- themes/tokyo.yaml | 52 - themes/tokyogo.yaml | 52 - themes/tokyonight-moon-lazy.yaml | 52 - themes/tokyonight.yaml | 52 - themes/tol.yaml | 3 +- themes/tomorrow-night-bright-r-classic.yaml | 3 + themes/tomorrow-night-ij.yaml | 3 + themes/tomorrow-night-vs.yaml | 2 + themes/tomorrowmyst.yaml | 1 + themes/tonic-contrast.yaml | 52 - themes/tonic-light.yaml | 52 - themes/tonic.yaml | 52 - themes/toodark.yaml | 1 + themes/topic-the-leader.yaml | 1 + themes/tora.yaml | 52 - themes/torque.yaml | 1 + themes/torte-vim.yaml | 52 - themes/total-black-theme.yaml | 52 - themes/total-lunar-eclipse.yaml | 52 - themes/totow-s-th-me.yaml | 52 - themes/toxic-color-theme.yaml | 52 - themes/toxic-waste.yaml | 52 - themes/toy-chest.yaml | 1 + themes/tranquillity-theme.yaml | 3 +- themes/trans-pride-light-naomi.yaml | 52 - themes/transylvania.yaml | 2 + themes/tree-hugger.yaml | 52 - themes/triad-dragon.yaml | 1 + themes/tribal-contrast.yaml | 52 - themes/tribal-light.yaml | 52 - themes/tribal.yaml | 52 - themes/tristan.yaml | 4 + themes/triumph-v2.yaml | 1 + themes/triumph.yaml | 1 + themes/tron-ares.yaml | 1 + themes/tron-contrast.yaml | 52 - themes/tron-light.yaml | 52 - themes/tron.yaml | 52 - themes/trsm-night-eyes.yaml | 1 + themes/trueamber.yaml | 3 +- themes/tsoding-daily-2024.yaml | 1 + themes/tsuki.yaml | 1 + themes/tsukiroku-dark.yaml | 52 - themes/tsukuyomi-light.yaml | 52 - themes/tsukuyomi.yaml | 52 - themes/tsumiki-theme.yaml | 50 - themes/tudoroxo.yaml | 3 +- themes/tulin-design.yaml | 3 +- themes/tundra-dusk.yaml | 52 - themes/turbo-c-3-0-borland-style.yaml | 52 - themes/turbo.yaml | 3 +- themes/turnip-contrast.yaml | 52 - themes/turnip-light.yaml | 52 - themes/turnip.yaml | 52 - themes/turnstyle-darker.yaml | 52 - themes/turnstyle.yaml | 52 - themes/turquesa-bege.yaml | 50 - themes/tutilabs-theme.yaml | 50 - themes/tw40-gigi.yaml | 52 - themes/tweed-contrast.yaml | 52 - themes/tweed-light.yaml | 52 - themes/tweed.yaml | 52 - themes/twentyfour.yaml | 3 + themes/twilight-bloom.yaml | 52 - themes/twilight-cosmos.yaml | 3 + themes/twilight-pro.yaml | 1 + themes/twilight-sage.yaml | 3 + themes/twilight.yaml | 3 +- themes/twilightsparkle.yaml | 1 + themes/twilite-darker.yaml | 3 + themes/twilite.yaml | 3 + themes/twin-black.yaml | 1 + themes/twin-blue.yaml | 1 + themes/two-firewatch.yaml | 1 + themes/two-monokai-darker.yaml | 52 - themes/two-monokai.yaml | 52 - themes/twodark.yaml | 1 + themes/tycho-crater.yaml | 1 + themes/tyh-theme-dark.yaml | 52 - themes/typedark-cyan.yaml | 1 + themes/typedark-magenta.yaml | 1 + themes/tyrell-corporation.yaml | 1 + themes/tyrian-night.yaml | 1 + themes/tyrone-neon-red.yaml | 1 + themes/ubuntu-dark.yaml | 4 + themes/udt-eclipse-light.yaml | 1 + themes/ui-color.yaml | 1 + themes/ui.yaml | 1 + themes/ukiyo-e-aged-manuscript.yaml | 52 - themes/ukiyo-e-manuscript.yaml | 52 - themes/ukiyo-tone-asahi-morning-sun.yaml | 1 + .../ukiyo-tone-kachi-iro-victory-color.yaml | 1 + .../ukiyo-tone-karesansui-dry-landscape.yaml | 1 + themes/ukiyo-tone-koke-dera-moss-temple.yaml | 1 + themes/ukiyo-tone-kuro-sumi-black-ink.yaml | 1 + themes/ukiyo-tone-tasogare-twilight.yaml | 1 + themes/ukiyo.yaml | 1 + themes/ultima-gwz.yaml | 1 + themes/ultima.yaml | 1 + themes/ultra-instinct-mastered-light.yaml | 52 - themes/ultra-instinct-mastered.yaml | 52 - themes/ultra-instinct-sign.yaml | 52 - themes/ultrafocus-fork-fork.yaml | 52 - themes/umbra.yaml | 5 +- themes/umi.yaml | 1 + themes/ump-45-leva.yaml | 52 - themes/unbluelievable.yaml | 1 + themes/undefined.yaml | 1 + themes/under-theme.yaml | 1 + themes/underdark-fork.yaml | 52 - themes/underdark-v2.yaml | 3 + themes/understated.yaml | 1 + themes/unicorn-dark.yaml | 52 - themes/unicorn.yaml | 1 + themes/unicornio-dark.yaml | 3 +- themes/unieye.yaml | 2 + themes/uniquezhd.yaml | 3 + themes/unitsmash.yaml | 3 + themes/unity-theme.yaml | 52 - themes/universe-gray.yaml | 1 + themes/universe-purple.yaml | 1 + themes/universe.yaml | 1 + themes/unlight-v-2.yaml | 52 - themes/untitled-fork-fork.yaml | 52 - themes/untitled-fork.yaml | 52 - themes/untitled.yaml | 52 - themes/unyodusk.yaml | 1 + themes/updog-light.yaml | 1 + themes/updog.yaml | 1 + themes/upward-dark-legacy.yaml | 1 + themes/upward-dark.yaml | 1 + themes/urara.yaml | 1 + themes/urban-couple.yaml | 1 + themes/urban-forge.yaml | 1 + themes/urban-glow.yaml | 1 + themes/urbanjungle.yaml | 1 + themes/ursa.yaml | 3 +- themes/user160.yaml | 1 + themes/userscape-contrast.yaml | 52 - themes/userscape-light.yaml | 52 - themes/userscape.yaml | 52 - themes/utheme.yaml | 1 + themes/utopia.yaml | 1 + themes/uvadark-rahul-fork.yaml | 52 - themes/v-id-contrast.yaml | 1 + themes/v-id-soft.yaml | 1 + themes/v01d-theme-alternative.yaml | 1 + themes/v01d-theme.yaml | 1 + themes/v7.yaml | 1 + themes/vaatu.yaml | 2 + themes/vagalume-dev.yaml | 1 + themes/vagruvboxtheme-color-theme.yaml | 52 - themes/vague-neovim-theme-extended-light.yaml | 52 - themes/vague-neovim-theme-extended.yaml | 52 - themes/vague.yaml | 52 - themes/valary.yaml | 1 + themes/valkthor-dark-theme.yaml | 1 + themes/valley.yaml | 52 - themes/valorant-theme-darker.yaml | 52 - themes/valorant-theme-remasterd.yaml | 52 - themes/vampurr.yaml | 4 +- themes/van-gogh-theme.yaml | 1 + themes/vanguard-strike.yaml | 52 - themes/vanilla-jade.yaml | 52 - themes/vanilla.yaml | 52 - themes/vapor.yaml | 1 + themes/vaporizer-alice-dark.yaml | 52 - themes/vaporizer-alice-light.yaml | 52 - themes/vaporizer-ava-light.yaml | 52 - themes/vaporizer-batman-dark-2022.yaml | 52 - themes/vaporizer-batman-dark-night.yaml | 52 - themes/vaporizer-cloudy-light.yaml | 52 - themes/vaporizer-cobalt-dark.yaml | 52 - themes/vaporizer-crescent-dark.yaml | 52 - themes/vaporizer-dark-cherry.yaml | 52 - themes/vaporizer-dark-coffee.yaml | 52 - themes/vaporizer-dark-cool-1.yaml | 52 - themes/vaporizer-dark-cool-2.yaml | 52 - themes/vaporizer-dark-cop.yaml | 52 - themes/vaporizer-dark-cyber-neon-1.yaml | 52 - themes/vaporizer-dark-cyber-neon-2.yaml | 52 - themes/vaporizer-dark-cyber-neon-3.yaml | 52 - themes/vaporizer-dark-ivy.yaml | 52 - themes/vaporizer-dark-joker.yaml | 52 - themes/vaporizer-dark-matrix-2.yaml | 52 - themes/vaporizer-dark-monterey.yaml | 52 - themes/vaporizer-dark-painting.yaml | 52 - themes/vaporizer-dark-pansy.yaml | 52 - themes/vaporizer-dark-red.yaml | 52 - themes/vaporizer-dark-stabilo.yaml | 52 - themes/vaporizer-dark-turquoise.yaml | 52 - themes/vaporizer-epic-red-dark.yaml | 52 - themes/vaporizer-fonc-dark.yaml | 52 - themes/vaporizer-frozen-dark.yaml | 52 - themes/vaporizer-golgi-dark.yaml | 52 - themes/vaporizer-half-moon-dark.yaml | 52 - themes/vaporizer-lemonade-light.yaml | 52 - .../vaporizer-lemonade-solarized-light.yaml | 52 - themes/vaporizer-milk-light.yaml | 52 - themes/vaporizer-mini-blue-light.yaml | 52 - themes/vaporizer-minimalism-light.yaml | 52 - themes/vaporizer-modern-light.yaml | 52 - themes/vaporizer-moon-light-dark.yaml | 52 - themes/vaporizer-phosphoric-blue.yaml | 52 - themes/vaporizer-purple-gray-dark.yaml | 52 - themes/vaporizer-soft-light.yaml | 52 - themes/vaporizer-splash-dark.yaml | 52 - themes/vaporizer-turquoise-light.yaml | 52 - themes/vaporwave.yaml | 52 - themes/vaquita.yaml | 1 + themes/varlet-dark.yaml | 1 + themes/vase-with-twelve-sunflowers.yaml | 52 - themes/vasses-tricolor-theme.yaml | 3 +- themes/vcoldtheme.yaml | 3 + themes/vd.yaml | 1 + themes/vegas-night-details-theme.yaml | 3 +- themes/vegetable-contrast.yaml | 52 - themes/vegetable-light.yaml | 52 - themes/vegetation.yaml | 3 +- themes/veil.yaml | 1 + themes/veiled.yaml | 1 + themes/veist.yaml | 1 + themes/vela-spectrum-colorblind-light.yaml | 1 + themes/vela-spectrum-dark-colorblind.yaml | 1 + themes/vela-spectrum-dark-dimmed.yaml | 1 + themes/vela-spectrum-dark-tritanopia.yaml | 1 + themes/vela-spectrum-dark.yaml | 1 + themes/vela-spectrum-dimmed-light.yaml | 1 + themes/vela-spectrum-high-contrast-light.yaml | 1 + themes/vela-spectrum-high-contrast.yaml | 1 + themes/vela-spectrum-light-tritanopia.yaml | 1 + themes/vela-spectrum-light.yaml | 1 + themes/velourous.yaml | 1 + themes/velvet-chrome.yaml | 3 +- themes/velvet-thunder.yaml | 1 + themes/venice-beach-sky.yaml | 1 + themes/venom-theme.yaml | 1 + themes/vercel-light.yaml | 49 - themes/vercel.yaml | 52 - themes/verdant.yaml | 3 + themes/verdantium.yaml | 1 + themes/verdure.yaml | 4 + themes/verner.yaml | 52 - themes/version-1-0-5.yaml | 52 - themes/very-blue.yaml | 1 + themes/very-fast-theme.yaml | 1 + themes/vesper-golden.yaml | 5 +- themes/vesper-purple-dark.yaml | 52 - themes/vesper-purple-light.yaml | 52 - themes/vesper.yaml | 52 - themes/vhs80.yaml | 3 +- themes/vi-dark.yaml | 1 + themes/vibe-dark-legacy.yaml | 52 - themes/vibecolors-corporate-light.yaml | 1 + themes/vibecolors-dark.yaml | 1 + themes/vibecolors-dynamic-dark.yaml | 1 + themes/vibecolors-dynamic-light.yaml | 1 + themes/vibecolors-light.yaml | 1 + themes/vibecolors-minimal-light.yaml | 1 + themes/vibecolors-neon-dark.yaml | 1 + themes/vibecolors-ocean-dark.yaml | 1 + themes/vibecolors-pastel-light.yaml | 1 + themes/vibecolors-retro-dark.yaml | 1 + themes/vibecolors-soft-dark.yaml | 1 + themes/vibecolors-sunset-light.yaml | 1 + themes/vibes.yaml | 52 - themes/vibra.yaml | 3 +- themes/vibrant-abyss-vscode.yaml | 52 - themes/vibrant-dark.yaml | 1 + themes/vibrant-max.yaml | 1 + themes/vice-city-noir.yaml | 1 + themes/vicious.yaml | 1 + themes/victoria-dark.yaml | 52 - themes/victoria-light.yaml | 52 - themes/video-contrast.yaml | 52 - themes/vigikai.yaml | 1 + themes/viii-iii-mmv.yaml | 1 + themes/vikkie-dark.yaml | 1 + themes/vikkie-light.yaml | 1 + themes/villain-dark.yaml | 1 + themes/villain-light.yaml | 1 + themes/vim-dar11sdasdasd.yaml | 1 + themes/vim-dark-medium.yaml | 1 + themes/vim-dark-soft.yaml | 52 - themes/vim-light-1.yaml | 1 + themes/vim-light-2.yaml | 1 + themes/vim-light-3.yaml | 1 + themes/vim-light-soft.yaml | 3 +- themes/vim-night.yaml | 1 + themes/vin-theme.yaml | 1 + themes/vintage-heritage.yaml | 52 - themes/vintage-rust-theme.yaml | 3 +- themes/vintage-serene.yaml | 1 + themes/vintage.yaml | 5 +- themes/vinyl.yaml | 1 + themes/violaceous-contrast.yaml | 52 - themes/violaceous-light.yaml | 52 - themes/violaceous.yaml | 52 - themes/violet-dream.yaml | 3 +- themes/violet-night.yaml | 52 - themes/violet-nova.yaml | 1 + themes/viora.yaml | 1 + themes/viper-theme.yaml | 52 - themes/vishwakarma-sunset-glow.yaml | 52 - themes/vision-colorblind.yaml | 52 - themes/vision-light-colorblind.yaml | 52 - themes/visual-studio-code-dark-theme.yaml | 52 - themes/visual-studio-dark-2019.yaml | 1 + themes/visual-studio-dark-2026.yaml | 1 + themes/visual-studio-github-light-plus.yaml | 1 + themes/visualos.yaml | 3 +- themes/vitepress-theme-vite-dark.yaml | 52 - themes/vitesse-dark-custom.yaml | 1 + themes/vitesse-dark-soft.yaml | 52 - themes/vitesse-dragon-dark.yaml | 1 + themes/vitesse-dragon.yaml | 1 + themes/vitesse-green-theme.yaml | 1 + themes/vitesse-webstorm-dark.yaml | 1 + themes/vitrioleuse.yaml | 1 + themes/vitruvian.yaml | 1 + themes/vivid-blue.yaml | 52 - themes/vividnord.yaml | 52 - themes/vivido-theme.yaml | 1 + themes/vixn-dark.yaml | 3 + themes/vkt-theme.yaml | 52 - themes/void-iris.yaml | 1 + themes/void-nebula.yaml | 1 + themes/void.yaml | 1 + themes/voidbloom-quazar.yaml | 1 + themes/voidbloom-singularity.yaml | 1 + themes/voidwalker.yaml | 1 + themes/volatile-contrast.yaml | 52 - themes/volatile-light.yaml | 52 - themes/volatile.yaml | 52 - themes/volcanofr.yaml | 1 + themes/volskaya.yaml | 2 + themes/volt-dark.yaml | 52 - themes/voodoo.yaml | 1 + themes/voraes.yaml | 1 + themes/vortex.yaml | 52 - themes/vox-ac30.yaml | 4 + themes/voyager.yaml | 1 + themes/vs-code-deep-f-lux-fork-fork.yaml | 52 - themes/vs-code-deep-f-lux.yaml | 1 + themes/vs-code-next-js.yaml | 52 - themes/vs-fleet.yaml | 52 - themes/vs-ghoul.yaml | 3 +- themes/vsblue.yaml | 52 - themes/vsc-blue-theme.yaml | 1 + .../vsc-cyberpunk2077-theme-color-theme.yaml | 50 - themes/vsc-military-style.yaml | 1 + themes/vsc-minimalist-theme-flat.yaml | 1 + themes/vsc-minimalist-theme-oak.yaml | 1 + themes/vsc-minimalist-theme-obsidian.yaml | 1 + themes/vsc-minimalist-theme-odp.yaml | 1 + themes/vsc-solarized-light.yaml | 52 - themes/vscode-bt-feynuus-color-theme.yaml | 49 - themes/vscode-epic-color-theme.yaml | 50 - themes/vscode-forest-pro-chartreuse.yaml | 1 + themes/vscode-forest-pro-dark-green.yaml | 1 + ...pro-enterprise-accessibility-enhanced.yaml | 1 + .../vscode-forest-pro-enterprise-light.yaml | 1 + themes/vscode-forest-pro-enterprise.yaml | 1 + themes/vscode-forest-pro-hunter-green.yaml | 1 + themes/vscode-forest-pro-jade.yaml | 1 + themes/vscode-forest-pro-kelly-green.yaml | 1 + themes/vscode-forest-pro-mint-green.yaml | 1 + themes/vscode-forest-pro-moss-green.yaml | 1 + themes/vscode-forest-pro-olive.yaml | 1 + themes/vscode-forest-pro-pale-green.yaml | 1 + themes/vscode-forest-pro-pine-green.yaml | 1 + themes/vscode-forest-pro-sea-green.yaml | 1 + themes/vscode-forest-pro-shamrock.yaml | 1 + themes/vscode-forest-pro-spring-green.yaml | 1 + themes/vscode-forest-pro-tea-green.yaml | 1 + themes/vscode-material-ui.yaml | 52 - themes/vscode-nofrils-dark.yaml | 4 +- themes/vscode-nofrils-github-light.yaml | 2 + themes/vscode-nofrils-gruvbox-dark.yaml | 2 + themes/vscode-nofrils-gruvbox-light.yaml | 2 + themes/vscode-nofrils-light.yaml | 52 - themes/vscode-nofrils-one-dark.yaml | 2 + themes/vscode-nofrils-one-light.yaml | 2 + themes/vscode-nofrils-sepia.yaml | 2 + themes/vscode-nofrils-tokyo-night.yaml | 2 + themes/vscode-pink-and-puple-theme.yaml | 3 +- themes/vscode-sublime-ish.yaml | 52 - themes/vscode-theme.yaml | 1 + themes/vsmuted-color-theme.yaml | 1 + ...vsnordtheme-dark-contrast-color-theme.yaml | 4 + themes/vsnordtheme-light-color-theme.yaml | 4 + ...snordtheme-light-contrast-color-theme.yaml | 4 + themes/vstheme-no-italics.yaml | 1 + themes/vstoolkit-theme-dark.yaml | 52 - themes/vuejs-theme.yaml | 3 +- themes/vxcode-blush.yaml | 52 - themes/vxcode-cream.yaml | 52 - themes/vxcode-dark.yaml | 52 - themes/vxcode-darker.yaml | 52 - themes/vxcode-lavender.yaml | 52 - themes/vxcode-lime.yaml | 52 - themes/vxcode-oled.yaml | 52 - themes/w40-theme.yaml | 49 +- themes/walking-in-the-dark-red.yaml | 6 +- themes/wallbash.yaml | 5 +- themes/walloco-light-theme.yaml | 1 + themes/walls-fill.yaml | 1 + themes/wandering-mercenary.yaml | 1 + themes/wangyj-black.yaml | 1 + themes/wangyj-bright-black.yaml | 1 + themes/wangyj-film-black.yaml | 1 + themes/wangyj-film-light.yaml | 1 + themes/warlock-contrast.yaml | 52 - themes/warlock-light.yaml | 52 - themes/warlock.yaml | 52 - themes/warm-black.yaml | 1 + themes/warm-burnout-dark.yaml | 52 - themes/warm-burnout-light.yaml | 6 + themes/warm-orange-enthusiasm-creativity.yaml | 1 + themes/warm-orange-theme.yaml | 1 + themes/warmkai-pro.yaml | 52 - themes/waste-contrast.yaml | 52 - themes/waste-light.yaml | 52 - themes/waste.yaml | 52 - themes/water-grape.yaml | 1 + themes/waterbyte-classic-2022-light.yaml | 52 - themes/watercourse.yaml | 5 +- themes/watermelon.yaml | 1 + themes/wave-delight-vs-dark-cool.yaml | 52 - themes/wavefire.yaml | 1 + themes/wawdog-dark.yaml | 50 - themes/wdark-theme.yaml | 1 + themes/webc-dark.yaml | 52 - themes/webstorm-darcula-dark-theme.yaml | 3 +- themes/webstorm-intellij-darcula-theme.yaml | 3 +- themes/webstorm-monokai.yaml | 1 + themes/weiting-candycolor.yaml | 52 - themes/weitingcoder.yaml | 3 + themes/west-bengal-cultural-hub.yaml | 1 + themes/westmont-dark.yaml | 52 - themes/what-the-hell.yaml | 3 +- themes/wheel-color-theme.yaml | 1 + themes/wheel-light-color-theme.yaml | 52 - themes/whiskey-coder-dark.yaml | 1 + themes/whiskey-coder-light.yaml | 1 + themes/white-blue-demo.yaml | 1 + themes/white-shade-color.yaml | 52 - themes/white-winter.yaml | 3 +- themes/whiteboard.yaml | 50 - themes/whitespace.yaml | 1 + themes/wick.yaml | 1 + themes/wicked.yaml | 89 +- themes/widgit-monokai.yaml | 1 + themes/wiity-green-eye-friendly.yaml | 1 + themes/wiity-green.yaml | 1 + themes/wild-flower.yaml | 1 + themes/wildcat.yaml | 1 + themes/wildtype.yaml | 1 + themes/wildwest.yaml | 1 + themes/will-o-wisp-theme.yaml | 1 + themes/willasm-emerald-sky.yaml | 52 - themes/willi-style-dracula-flavour.yaml | 1 + themes/willow.yaml | 52 - themes/win-xp-luna.yaml | 52 - themes/win10.yaml | 1 + themes/winclassic.yaml | 1 + themes/wind-dark-slate.yaml | 52 - themes/wind-dark-zinc.yaml | 52 - themes/wind-light-neutral.yaml | 52 - themes/wind.yaml | 1 + themes/windows-95-theme.yaml | 3 +- themes/windows-nt.yaml | 52 - themes/windows-xp-dark-luna.yaml | 52 - themes/windu.yaml | 1 + themes/windwaker.yaml | 1 + themes/wine-garden.yaml | 1 + themes/winter-pearl.yaml | 1 + themes/winter.yaml | 1 + themes/winteriscoding-gift.yaml | 1 + themes/winteriscoding.yaml | 1 + themes/winternacht-dark.yaml | 2 + themes/winternacht-light.yaml | 2 + themes/wired-lighter.yaml | 52 - themes/wired.yaml | 52 - themes/wise-owl-material-high-contrast.yaml | 52 - themes/wise-owl-material-light.yaml | 52 - themes/wise-owl-material.yaml | 52 - themes/wisteria.yaml | 1 + themes/witch-elaina.yaml | 1 + themes/witcher.yaml | 1 + themes/witchy-dark.yaml | 52 - themes/wl-acid-wash.yaml | 1 + themes/wl-amber-monitor.yaml | 1 + themes/wl-aurora-glow.yaml | 1 + themes/wl-chrome-dreams.yaml | 1 + themes/wl-chrome-noir.yaml | 1 + themes/wl-cosmic-drift.yaml | 3 + themes/wl-crystal-cave.yaml | 3 + themes/wl-cyber-punk.yaml | 5 +- themes/wl-cyber-rain.yaml | 1 + themes/wl-data-stream.yaml | 1 + themes/wl-dial-tone.yaml | 1 + themes/wl-disco-ball.yaml | 3 + themes/wl-electric-dreams.yaml | 1 + themes/wl-electric-sunset.yaml | 3 + themes/wl-fusion-core.yaml | 1 + themes/wl-graffiti-wall.yaml | 3 +- themes/wl-hyper-drive.yaml | 1 + themes/wl-ink-splash.yaml | 1 + themes/wl-jade-temple.yaml | 1 + themes/wl-laser-grid.yaml | 1 + themes/wl-lava-lamp.yaml | 1 + themes/wl-mainframe-blue.yaml | 1 + themes/wl-midnight-drive.yaml | 5 +- themes/wl-misty-mountain.yaml | 1 + themes/wl-moon-phase.yaml | 1 + themes/wl-neon-cascade.yaml | 1 + themes/wl-neon-sign.yaml | 1 + themes/wl-neon-tokyo.yaml | 1 + themes/wl-nova-burst.yaml | 1 + themes/wl-pastel-dream.yaml | 4 + themes/wl-pixel-punch.yaml | 1 + themes/wl-plasma-storm.yaml | 1 + themes/wl-prism-break.yaml | 6 +- themes/wl-pulse-wave.yaml | 3 + themes/wl-punch-tape.yaml | 1 + themes/wl-retro-arcade.yaml | 1 + themes/wl-retro-future.yaml | 3 +- themes/wl-signal-wave.yaml | 3 + themes/wl-silk-road.yaml | 1 + themes/wl-synthwave-rider.yaml | 4 + themes/wl-tape-deck.yaml | 3 + themes/wl-terminal-green.yaml | 1 + themes/wl-turbo-boost.yaml | 1 + themes/wl-vacuum-glow.yaml | 1 + themes/wl-velvet-night.yaml | 1 + themes/wl-volt-surge.yaml | 3 +- themes/wl-zen-twilight.yaml | 1 + themes/wolftheme.yaml | 1 + themes/wolves-league-dark.yaml | 52 - themes/woods.yaml | 1 + themes/woodsmoke.yaml | 1 + themes/wookie.yaml | 1 + themes/word-color-theme.yaml | 52 - themes/word-dark-theme.yaml | 2 + themes/wordsmith-dark.yaml | 52 - themes/wordsmith-light.yaml | 52 - themes/workplace-chatter.yaml | 52 - themes/wow.yaml | 1 + themes/wrkspace-theme.yaml | 3 +- themes/wuthering-waves-aemeath-dark.yaml | 50 - themes/wuthering-waves-aemeath.yaml | 50 - themes/wuthering-waves-augusta-dark.yaml | 50 - themes/wuthering-waves-augusta.yaml | 50 - themes/wuthering-waves-baizhi-dark.yaml | 50 - themes/wuthering-waves-baizhi.yaml | 50 - themes/wuthering-waves-brant-dark.yaml | 50 - themes/wuthering-waves-brant.yaml | 50 - themes/wuthering-waves-cantarella-dark.yaml | 50 - themes/wuthering-waves-cantarella.yaml | 50 - themes/wuthering-waves-carlotta-dark.yaml | 50 - themes/wuthering-waves-carlotta.yaml | 50 - themes/wuthering-waves-cartethyia-dark.yaml | 50 - themes/wuthering-waves-cartethyia.yaml | 50 - themes/wuthering-waves-changli-dark.yaml | 50 - themes/wuthering-waves-changli.yaml | 50 - themes/wuthering-waves-chisa-dark.yaml | 50 - themes/wuthering-waves-chisa.yaml | 50 - themes/wuthering-waves-galbrena-dark.yaml | 50 - themes/wuthering-waves-galbrena.yaml | 50 - themes/wuthering-waves-iuno-dark.yaml | 50 - themes/wuthering-waves-iuno.yaml | 50 - themes/wuthering-waves-jinhsi.yaml | 50 - themes/wuthering-waves-lynae-dark.yaml | 50 - themes/wuthering-waves-lynae.yaml | 50 - themes/wuthering-waves-mornye-dark.yaml | 50 - themes/wuthering-waves-mornye.yaml | 50 - themes/wuthering-waves-roccia-dark.yaml | 50 - themes/wuthering-waves-roccia.yaml | 50 - themes/wuthering-waves-rover.yaml | 50 - themes/wuthering-waves-sanhua-dark.yaml | 50 - themes/wuthering-waves-sanhua.yaml | 50 - themes/wuthering-waves-scar-dark.yaml | 50 - themes/wuthering-waves-scar.yaml | 50 - themes/wuthering-waves-taoqi.yaml | 50 - .../wuthering-waves-the-shorekeeper-dark.yaml | 50 - themes/wuthering-waves-the-shorekeeper.yaml | 50 - themes/wuthering-waves-verina-dark.yaml | 50 - themes/wuthering-waves-verina.yaml | 50 - themes/wuthering-waves-yinlin-dark.yaml | 50 - themes/wuthering-waves-yinlin.yaml | 50 - themes/wuthering-waves-zhezhi-dark.yaml | 50 - themes/wuthering-waves-zhezhi.yaml | 50 - themes/wye-black.yaml | 1 + themes/wye-dark-soft.yaml | 1 + themes/wye-dark.yaml | 1 + themes/wye-light-soft.yaml | 1 + themes/wye-light.yaml | 1 + themes/x.yaml | 1 + themes/xaeon-dark.yaml | 1 + themes/xaidozy-color.yaml | 1 + themes/xanthron-light.yaml | 3 + themes/xava-color-theme.yaml | 52 - themes/xceodark.yaml | 1 + themes/xcode-dark.yaml | 1 + themes/xecoy-dark.yaml | 1 + themes/xecoy-light.yaml | 1 + themes/xenon.yaml | 2 + themes/xerobi-dark-theme.yaml | 1 + themes/xerobi-light-theme.yaml | 1 + themes/xiali-vintage-rose-dark.yaml | 1 + themes/xiali-vintage-rose-light.yaml | 1 + themes/xikreti.yaml | 1 + themes/xis-one.yaml | 52 - themes/xk-dark-catppuccin-mocha.yaml | 1 + themes/xk-dark-dracula.yaml | 1 + themes/xk-dark-gruvbox.yaml | 1 + themes/xk-dark-monokai-pro.yaml | 1 + themes/xk-dark-tokyo-night.yaml | 1 + themes/xk-light-catppuccin-latte.yaml | 1 + themes/xk-light-github.yaml | 1 + themes/xk-light-one.yaml | 1 + themes/xk-light-ros-pine.yaml | 1 + themes/xk-light-solarized.yaml | 1 + themes/xlumielvscodetheme.yaml | 1 + themes/xochil.yaml | 5 +- themes/xotocode-dark.yaml | 1 + themes/xotopio.yaml | 1 + themes/xpyjs-black.yaml | 1 + themes/xresources-bordered.yaml | 1 + themes/xresources-normal-dark.yaml | 3 + themes/xresources.yaml | 1 + themes/xrodev.yaml | 1 + themes/xs.yaml | 1 + themes/xstheme.yaml | 1 + themes/xthemis-cyan.yaml | 52 - themes/xtree-gold.yaml | 5 +- themes/xviewdark.yaml | 1 + themes/xxhtml.yaml | 52 - themes/xxtereshko-light.yaml | 5 +- themes/xzadudu179.yaml | 1 + themes/y3m.yaml | 1 + themes/yaast.yaml | 1 + themes/yagnesh.yaml | 1 + themes/yalpha-dark-eris.yaml | 3 +- themes/yami-blue.yaml | 52 - themes/yanbaru-shadow.yaml | 1 + themes/yanus.yaml | 1 + themes/yarra-valley.yaml | 3 +- themes/yaru-dark.yaml | 52 - themes/yaru.yaml | 52 - themes/yaruna-aurora.yaml | 1 + themes/yaruna-forest.yaml | 1 + themes/yaruna-midnight.yaml | 1 + themes/yaruna-nova.yaml | 1 + themes/yd-dark.yaml | 1 + themes/yd-light.yaml | 1 + themes/ydrgzm-light-theme.yaml | 52 - themes/yelan.yaml | 1 + themes/yell.yaml | 1 + themes/yellow-beryl.yaml | 1 + themes/yellow-green-blue-theme.yaml | 3 +- themes/yellow-ish.yaml | 1 + themes/yellow-purple-theme.yaml | 52 - themes/yellowed.yaml | 1 + themes/yerba.yaml | 2 + themes/yet-another-solarized-theme-dark.yaml | 52 - themes/yet-another-solarized-theme-light.yaml | 52 - themes/yharnizedtheme.yaml | 3 + themes/yinloonga-c.yaml | 1 + themes/yitzchok-contrast.yaml | 52 - themes/yitzchok-light.yaml | 52 - themes/yitzchok.yaml | 52 - themes/ylw-dark-theme.yaml | 1 + themes/yoda-mystical-force.yaml | 52 - themes/yoda.yaml | 1 + themes/yohualli-eclipse.yaml | 1 + themes/yohualli-lunaris.yaml | 1 + themes/yohualli-nebulune.yaml | 1 + themes/yohualli-penumbra.yaml | 1 + themes/yonc.yaml | 52 - themes/yondog-dark.yaml | 1 + themes/yotei.yaml | 1 + themes/yoth-theme-dark.yaml | 1 + themes/yoyo-theme-green.yaml | 1 + themes/yoyo-theme.yaml | 1 + themes/ystheme.yaml | 1 + themes/ytheme-dark.yaml | 52 - themes/yttrium-dark.yaml | 3 + themes/yttrium-light.yaml | 3 + themes/yue-theme.yaml | 1 + themes/yukinord.yaml | 3 +- themes/yule-contrast.yaml | 52 - themes/yule-light.yaml | 52 - themes/yule.yaml | 52 - themes/yulon.yaml | 2 + themes/yum.yaml | 6 +- themes/yurei-dark-theme.yaml | 1 + themes/yuru-black.yaml | 1 + themes/yuru.yaml | 2 + themes/yuuyake-dark.yaml | 52 - themes/yuyuko-vscode-ocean.yaml | 52 - themes/yuyuko-vscode.yaml | 52 - themes/z-darktheme.yaml | 1 + themes/z3r0.yaml | 3 +- themes/zach-s-blue-theme.yaml | 1 + themes/zacharywilliamson.yaml | 1 + themes/zacks-contrast.yaml | 52 - themes/zacks-light.yaml | 52 - themes/zacks.yaml | 52 - themes/zaeri-dark.yaml | 52 - themes/zaher-color-theme.yaml | 52 - themes/zan.yaml | 1 + themes/zandromeda.yaml | 52 - themes/zap.yaml | 50 - themes/zappts.yaml | 52 - themes/zbra-dark.yaml | 1 + themes/zeal.yaml | 1 + themes/zednostheme-v1.yaml | 52 - themes/zelda-dark.yaml | 52 - themes/zelzea.yaml | 3 +- themes/zemarcolortheme.yaml | 52 - themes/zemizer-grey.yaml | 1 + themes/zen-dark.yaml | 1 + themes/zen-mono.yaml | 52 - themes/zen-sakura-cherry-blossom.yaml | 1 + themes/zen-theme.yaml | 1 + themes/zen.yaml | 1 + themes/zenbones-dark-stark.yaml | 1 + themes/zenbones-dark-warm.yaml | 1 + themes/zenbones-dark.yaml | 1 + themes/zenbones-duckbones-dark-stark.yaml | 1 + themes/zenbones-duckbones-dark-warm.yaml | 1 + themes/zenbones-duckbones-dark.yaml | 1 + themes/zenbones-forestbones-dark-stark.yaml | 1 + themes/zenbones-forestbones-dark-warm.yaml | 1 + themes/zenbones-forestbones-dark.yaml | 1 + themes/zenbones-forestbones-light-bright.yaml | 1 + themes/zenbones-forestbones-light-dim.yaml | 1 + themes/zenbones-forestbones-light.yaml | 1 + themes/zenbones-kanagawabones-dark-stark.yaml | 1 + themes/zenbones-kanagawabones-dark-warm.yaml | 1 + themes/zenbones-kanagawabones-dark.yaml | 1 + themes/zenbones-light-bright.yaml | 1 + themes/zenbones-light-dim.yaml | 1 + themes/zenbones-light.yaml | 1 + themes/zenbones-neobones-dark-stark.yaml | 1 + themes/zenbones-neobones-dark-warm.yaml | 1 + themes/zenbones-neobones-dark.yaml | 1 + themes/zenbones-neobones-light-bright.yaml | 1 + themes/zenbones-neobones-light-dim.yaml | 1 + themes/zenbones-neobones-light.yaml | 1 + themes/zenbones-nordbones-dark-stark.yaml | 1 + themes/zenbones-nordbones-dark-warm.yaml | 1 + themes/zenbones-nordbones-dark.yaml | 1 + themes/zenbones-rosebones-dark-stark.yaml | 1 + themes/zenbones-rosebones-dark-warm.yaml | 1 + themes/zenbones-rosebones-dark.yaml | 1 + themes/zenbones-rosebones-light-bright.yaml | 1 + themes/zenbones-rosebones-light-dim.yaml | 1 + themes/zenbones-rosebones-light.yaml | 1 + themes/zenbones-seoulbones-dark-stark.yaml | 1 + themes/zenbones-seoulbones-dark-warm.yaml | 1 + themes/zenbones-seoulbones-dark.yaml | 1 + themes/zenbones-seoulbones-light-bright.yaml | 1 + themes/zenbones-seoulbones-light-dim.yaml | 1 + themes/zenbones-seoulbones-light.yaml | 1 + themes/zenbones-tokyobones-dark-stark.yaml | 1 + themes/zenbones-tokyobones-dark-warm.yaml | 1 + themes/zenbones-tokyobones-dark.yaml | 1 + themes/zenbones-tokyobones-light-bright.yaml | 1 + themes/zenbones-tokyobones-light-dim.yaml | 1 + themes/zenbones-tokyobones-light.yaml | 1 + themes/zenbones-vimbones-light-bright.yaml | 1 + themes/zenbones-vimbones-light-dim.yaml | 1 + themes/zenbones-vimbones-light.yaml | 1 + themes/zenbones-zenburned-dark-stark.yaml | 1 + themes/zenbones-zenburned-dark-warm.yaml | 1 + themes/zenbones-zenburned-dark.yaml | 1 + themes/zenbones-zenwritten-dark-stark.yaml | 1 + themes/zenbones-zenwritten-dark-warm.yaml | 1 + themes/zenbones-zenwritten-dark.yaml | 1 + themes/zenbones-zenwritten-light-bright.yaml | 1 + themes/zenbones-zenwritten-light-dim.yaml | 1 + themes/zenbones-zenwritten-light.yaml | 1 + ...book-ux534ftc-white-gold-v1-full-dark.yaml | 1 + .../zenbook-ux534ftc-white-gold-v2-1-95.yaml | 1 + themes/zenburn.yaml | 52 - themes/zene-dark-theme.yaml | 3 +- themes/zene-light-theme.yaml | 52 - themes/zeneth.yaml | 1 + themes/zenflow-noir.yaml | 1 + themes/zenith-aurora.yaml | 52 - themes/zenith-dawn.yaml | 52 - themes/zenith-dusk.yaml | 52 - themes/zenith-forest.yaml | 52 - themes/zenith-midnight.yaml | 52 - themes/zenith-neutral.yaml | 52 - themes/zenith-ocean.yaml | 52 - themes/zenith-ros.yaml | 52 - themes/zenith-zen.yaml | 52 - themes/zenith.yaml | 52 - themes/zenitria-amoled.yaml | 1 + themes/zenml.yaml | 1 + themes/zero-s-solarized.yaml | 1 + themes/zero-wip.yaml | 52 - themes/zeus-turquoise.yaml | 52 - themes/zeus-yelo.yaml | 52 - themes/zhangpengtao-black.yaml | 3 + themes/zhongli.yaml | 1 + themes/zhxo-lt.yaml | 52 - themes/zhxo-red.yaml | 52 - themes/zhxo-st.yaml | 52 - themes/zhxo-yll.yaml | 52 - themes/zinc.yaml | 1 + themes/zokugun-obsidium.yaml | 52 - themes/zora-mirage-green.yaml | 1 + themes/zora-mirage.yaml | 1 + themes/zoradark.yaml | 1 + themes/zordon-colors.yaml | 1 + themes/zoren-breeze.yaml | 52 - themes/ztheme.yaml | 1 + themes/ztok.yaml | 1 + themes/zunda-dark.yaml | 52 - themes/zux-purple-minimal.yaml | 52 - themes/zwel.yaml | 1 + themes/zxxn.yaml | 1 + themes/zygomatic-blue.yaml | 1 + themes/zyrotec.yaml | 1 + themes/zzc-dark.yaml | 1 + themes/zzc-light.yaml | 1 + themes/zzhtheme-dark.yaml | 1 + themes/zzhtheme-light.yaml | 1 + 7460 files changed, 12373 insertions(+), 156060 deletions(-) delete mode 100644 themes/1.yaml delete mode 100644 themes/10004ok-dark.yaml delete mode 100644 themes/1dark-poncho-hc.yaml delete mode 100644 themes/1mm-dracula.yaml delete mode 100644 themes/365-day-october-dark.yaml delete mode 100644 themes/42nd.yaml delete mode 100644 themes/6szn.yaml delete mode 100644 themes/8-bit-dark.yaml delete mode 100644 themes/8-bit-light-high-contrast.yaml delete mode 100644 themes/8-bit-light.yaml delete mode 100644 themes/8x8-dark-fork.yaml delete mode 100644 themes/8x8-darker.yaml delete mode 100644 themes/8x8-fork.yaml delete mode 100644 themes/a-github-dark-dimmed-1-red.yaml delete mode 100644 themes/a-github-dark-dimmed-2-orange.yaml delete mode 100644 themes/a-github-dark-dimmed-3-green.yaml delete mode 100644 themes/a-github-dark-dimmed-4-blue.yaml delete mode 100644 themes/a-github-dark-dimmed-5-purple.yaml delete mode 100644 themes/a-github-dark-dimmed-brown.yaml delete mode 100644 themes/a-github-dark-dimmed-muted.yaml delete mode 100644 themes/a-github-dark-dimmed-vampire.yaml delete mode 100644 themes/a-github-dark-high-contrast-1-red.yaml delete mode 100644 themes/a-github-dark-high-contrast-2-orange.yaml delete mode 100644 themes/a-github-dark-high-contrast-3-green.yaml delete mode 100644 themes/a-github-dark-high-contrast-4-blue.yaml delete mode 100644 themes/a-github-dark-high-contrast-5-purple.yaml delete mode 100644 themes/a-github-dark-muted.yaml delete mode 100644 themes/a-github-dark-vampire.yaml delete mode 100644 themes/a-github-light-1-red.yaml delete mode 100644 themes/a-github-light-2-orange.yaml delete mode 100644 themes/a-github-light-3-green.yaml delete mode 100644 themes/a-github-light-4-blue.yaml delete mode 100644 themes/a-github-light-5-purple.yaml delete mode 100644 themes/a-j-light.yaml delete mode 100644 themes/abolkog-dark.yaml delete mode 100644 themes/abolkog-light.yaml delete mode 100644 themes/absent-contrast.yaml delete mode 100644 themes/absent-light.yaml delete mode 100644 themes/absent.yaml delete mode 100644 themes/abyskai.yaml delete mode 100644 themes/abyssal-anime.yaml delete mode 100644 themes/abyssal-black.yaml delete mode 100644 themes/abyssal-catppuccin.yaml delete mode 100644 themes/abyssal-dark.yaml delete mode 100644 themes/abyssal-dracula.yaml delete mode 100644 themes/abyssal-e-ink.yaml delete mode 100644 themes/abyssal-everforest.yaml delete mode 100644 themes/abyssal-gruvbox.yaml delete mode 100644 themes/abyssal-hacker.yaml delete mode 100644 themes/abyssal-latte.yaml delete mode 100644 themes/abyssal-nord.yaml delete mode 100644 themes/abyssal-tokyo-night.yaml delete mode 100644 themes/access-color-theme.yaml delete mode 100644 themes/acequartz.yaml delete mode 100644 themes/acid-trip.yaml delete mode 100644 themes/acme.yaml delete mode 100644 themes/acs-cozy-dark.yaml delete mode 100644 themes/adey-coder-deep-dark.yaml delete mode 100644 themes/adey-coder.yaml delete mode 100644 themes/adonis.yaml delete mode 100644 themes/adventuresinparadise.yaml delete mode 100644 themes/aesthetic-dark.yaml delete mode 100644 themes/aether-coffee-dark.yaml delete mode 100644 themes/aether-coffee.yaml delete mode 100644 themes/aether-dark-space.yaml delete mode 100644 themes/aether-dark.yaml delete mode 100644 themes/aether-emerald.yaml delete mode 100644 themes/aether-light.yaml delete mode 100644 themes/afterglow-fade.yaml delete mode 100644 themes/afternoon-delight-subtle.yaml delete mode 100644 themes/agathist-dark.yaml delete mode 100644 themes/akari-dawn.yaml delete mode 100644 themes/akari-night.yaml delete mode 100644 themes/akumanomi-theme.yaml delete mode 100644 themes/al-theme-official.yaml delete mode 100644 themes/alchemist-s-orchid-dark.yaml delete mode 100644 themes/alchemist-s-orchid-light.yaml delete mode 100644 themes/alchemist-s-orchid-sepia.yaml delete mode 100644 themes/aldrico-s-gruvbox.yaml delete mode 100644 themes/aliceblue-theme.yaml delete mode 100644 themes/alien-blood.yaml delete mode 100644 themes/alien-terminal-nostromo-amber.yaml delete mode 100644 themes/alien-terminal-nostromo-green.yaml delete mode 100644 themes/alien-terminal-sevastopol-link.yaml delete mode 100644 themes/all-nighter-theme.yaml delete mode 100644 themes/allure-contrast.yaml delete mode 100644 themes/allure-light.yaml delete mode 100644 themes/allure.yaml delete mode 100644 themes/alma-sakura-theme.yaml delete mode 100644 themes/alpha.yaml delete mode 100644 themes/altered-matter-dopamin-owl.yaml delete mode 100644 themes/alternight.yaml delete mode 100644 themes/altin-s-love-symphony.yaml delete mode 100644 themes/alucard-sotn.yaml delete mode 100644 themes/amazon-jungle.yaml delete mode 100644 themes/amethyst-kiss-dark-kiss-mode.yaml delete mode 100644 themes/amethyst-kiss-light-kiss-mode.yaml delete mode 100644 themes/amethyst-stone.yaml delete mode 100644 themes/amoled-dark-theme.yaml delete mode 100644 themes/amozonia.yaml delete mode 100644 themes/amp-dark.yaml delete mode 100644 themes/amp-light.yaml delete mode 100644 themes/andromeda-light-italic-bordered.yaml delete mode 100644 themes/andromeda-night.yaml delete mode 100644 themes/andromeda.yaml delete mode 100644 themes/angular-dark-theme.yaml delete mode 100644 themes/animatrix.yaml delete mode 100644 themes/ano-theme-dark.yaml delete mode 100644 themes/anoldhope.yaml delete mode 100644 themes/another-acid-trip.yaml delete mode 100644 themes/anquyx.yaml delete mode 100644 themes/anthropic-dark.yaml delete mode 100644 themes/anthropic-light.yaml delete mode 100644 themes/anthropic.yaml delete mode 100644 themes/anti-glare-moonlit.yaml delete mode 100644 themes/anti-glare-nebula.yaml delete mode 100644 themes/anti-glare-official.yaml delete mode 100644 themes/apathy-experimental.yaml delete mode 100644 themes/apathy.yaml delete mode 100644 themes/apollo-dark.yaml delete mode 100644 themes/apollo-light.yaml delete mode 100644 themes/app-netlify-com.yaml delete mode 100644 themes/apple-dancheong-minimal-light.yaml delete mode 100644 themes/april-dark-theme.yaml delete mode 100644 themes/aqua-glacier.yaml delete mode 100644 themes/aquamain.yaml delete mode 100644 themes/arabian-theme.yaml delete mode 100644 themes/arc-dark.yaml delete mode 100644 themes/arcadia-theme-dark.yaml delete mode 100644 themes/arcadia-theme-storm.yaml delete mode 100644 themes/arcaea.yaml delete mode 100644 themes/archangel-dusk.yaml delete mode 100644 themes/archangel.yaml delete mode 100644 themes/architect-dark-fork.yaml delete mode 100644 themes/arctic-night.yaml delete mode 100644 themes/arctis-dark.yaml delete mode 100644 themes/arctis-high-contrast.yaml delete mode 100644 themes/arctis-light.yaml delete mode 100644 themes/arctis-moon.yaml delete mode 100644 themes/arctis-night.yaml delete mode 100644 themes/arctis.yaml delete mode 100644 themes/ariake-sands.yaml delete mode 100644 themes/ariake-sun.yaml delete mode 100644 themes/aries-darker-high-contrast.yaml delete mode 100644 themes/aries-darker.yaml delete mode 100644 themes/aries-default.yaml delete mode 100644 themes/aries-lighter-high-contrast.yaml delete mode 100644 themes/aries-lighter.yaml delete mode 100644 themes/aries-ocean.yaml delete mode 100644 themes/aries-palenight.yaml delete mode 100644 themes/armada.yaml delete mode 100644 themes/aromantic.yaml delete mode 100644 themes/arstotzka-contrast.yaml delete mode 100644 themes/arstotzka-light.yaml delete mode 100644 themes/arstotzka.yaml delete mode 100644 themes/asexual.yaml delete mode 100644 themes/ash-ember.yaml delete mode 100644 themes/ashao-color-theme.yaml delete mode 100644 themes/aspiesoft-intellij-theme.yaml delete mode 100644 themes/aster-dark-theme.yaml delete mode 100644 themes/astra-themedark.yaml delete mode 100644 themes/astro-dark.yaml delete mode 100644 themes/astro-kanagawa.yaml delete mode 100644 themes/astro-light.yaml delete mode 100644 themes/asuka-theme-light.yaml delete mode 100644 themes/asuka-theme.yaml delete mode 100644 themes/atom-homepage-fork.yaml delete mode 100644 themes/atom-material-theme.yaml delete mode 100644 themes/atom-one-dark-cyan.yaml delete mode 100644 themes/atom-one-light-cyan.yaml delete mode 100644 themes/atomax-high-contrast-light.yaml delete mode 100644 themes/attack-on-titan-eren-s-determination.yaml delete mode 100644 themes/august-ariake-dark.yaml delete mode 100644 themes/august-arstotzka-darker.yaml delete mode 100644 themes/august-arstotzka-lighter.yaml delete mode 100644 themes/august-arstotzka.yaml delete mode 100644 themes/august-beardedtheme-oceanic-reversed.yaml delete mode 100644 themes/august-beardedtheme-surprising-blueberry.yaml delete mode 100644 themes/august-catppuccin.yaml delete mode 100644 themes/august-city-lights-darker.yaml delete mode 100644 themes/august-city-lights.yaml delete mode 100644 themes/august-dark-theme.yaml delete mode 100644 themes/august-drawbridge-darker.yaml delete mode 100644 themes/august-drawbridge.yaml delete mode 100644 themes/august-gruvbox-darker.yaml delete mode 100644 themes/august-gruvbox.yaml delete mode 100644 themes/august-kanagawa-darker.yaml delete mode 100644 themes/august-kanagawa.yaml delete mode 100644 themes/august-material-ocean.yaml delete mode 100644 themes/august-material-palenight.yaml delete mode 100644 themes/august-night-owl-darker.yaml delete mode 100644 themes/august-night-owl.yaml delete mode 100644 themes/august-nord-darker.yaml delete mode 100644 themes/august-nord.yaml delete mode 100644 themes/august-radical-2.yaml delete mode 100644 themes/august-radical.yaml delete mode 100644 themes/aura-dark-soft-text.yaml delete mode 100644 themes/aura-dark.yaml delete mode 100644 themes/aura-dracula-spirit-soft.yaml delete mode 100644 themes/aura-dracula-spirit-synthwave.yaml delete mode 100644 themes/aura-dracula-spirit.yaml delete mode 100644 themes/aura-soft-dark-soft-text.yaml delete mode 100644 themes/aura-soft-dark.yaml delete mode 100644 themes/autu-dark-theme.yaml delete mode 100644 themes/autumn-fork-contrast.yaml delete mode 100644 themes/autumn-fork.yaml delete mode 100644 themes/awork-dark.yaml delete mode 100644 themes/ayu-darkvenom-transparent-borderless.yaml delete mode 100644 themes/ayu-one-dark-pro-dark-bordered.yaml delete mode 100644 themes/ayu-one-dark-pro-mirage-bordered.yaml delete mode 100644 themes/ayu-one-dark-pro-mirage.yaml delete mode 100644 themes/ayudark.yaml delete mode 100644 themes/ayuloco-dark-bordered.yaml delete mode 100644 themes/ayuloco-mirage-bordered.yaml delete mode 100644 themes/ayuloco-mirage.yaml delete mode 100644 themes/ayutokyo-color-theme.yaml delete mode 100644 themes/az0ox-theme-shadesofblue.yaml delete mode 100644 themes/azure-contrast.yaml delete mode 100644 themes/azure-dark-teal.yaml delete mode 100644 themes/azure-light.yaml delete mode 100644 themes/azure-noir.yaml delete mode 100644 themes/azure.yaml delete mode 100644 themes/b-nt.yaml delete mode 100644 themes/banner-contrast.yaml delete mode 100644 themes/banner-light.yaml delete mode 100644 themes/banner.yaml delete mode 100644 themes/barbenheimer-bunker.yaml delete mode 100644 themes/barbenheimer-dreamhouse.yaml delete mode 100644 themes/barbenheimer-nuclear-sunrise.yaml delete mode 100644 themes/base-color-theme.yaml delete mode 100644 themes/base16-3024-dark.yaml delete mode 100644 themes/base16-3024-light.yaml delete mode 100644 themes/base16-apathy-dark.yaml delete mode 100644 themes/base16-apathy-light.yaml delete mode 100644 themes/base16-ashes-dark.yaml delete mode 100644 themes/base16-ashes-light.yaml delete mode 100644 themes/base16-bespin-dark.yaml delete mode 100644 themes/base16-bespin-light.yaml delete mode 100644 themes/base16-brewer-dark.yaml delete mode 100644 themes/base16-brewer-light.yaml delete mode 100644 themes/base16-bright-dark.yaml delete mode 100644 themes/base16-bright-light.yaml delete mode 100644 themes/base16-codeschool-dark.yaml delete mode 100644 themes/base16-codeschool-light.yaml delete mode 100644 themes/base16-default-dark.yaml delete mode 100644 themes/base16-default-light.yaml delete mode 100644 themes/base16-eighties-dark.yaml delete mode 100644 themes/base16-eighties-light.yaml delete mode 100644 themes/base16-embers-dark.yaml delete mode 100644 themes/base16-embers-light.yaml delete mode 100644 themes/base16-flat-dark.yaml delete mode 100644 themes/base16-flat-light.yaml delete mode 100644 themes/base16-google-dark.yaml delete mode 100644 themes/base16-google-light.yaml delete mode 100644 themes/base16-grayscale-dark.yaml delete mode 100644 themes/base16-grayscale-light.yaml delete mode 100644 themes/base16-green-screen-dark.yaml delete mode 100644 themes/base16-green-screen-light.yaml delete mode 100644 themes/base16-harmonic16-dark.yaml delete mode 100644 themes/base16-harmonic16-light.yaml delete mode 100644 themes/base16-isotope-dark.yaml delete mode 100644 themes/base16-isotope-light.yaml delete mode 100644 themes/base16-marrakesh-dark.yaml delete mode 100644 themes/base16-marrakesh-light.yaml delete mode 100644 themes/base16-mocha-dark.yaml delete mode 100644 themes/base16-mocha-light.yaml delete mode 100644 themes/base16-monokai-dark.yaml delete mode 100644 themes/base16-monokai-light.yaml delete mode 100644 themes/base16-ocean-dark.yaml delete mode 100644 themes/base16-ocean-light.yaml delete mode 100644 themes/base16-oceanicnext-dark.yaml delete mode 100644 themes/base16-oceanicnext-light.yaml delete mode 100644 themes/base16-paraiso-dark.yaml delete mode 100644 themes/base16-paraiso-light.yaml delete mode 100644 themes/base16-pop-dark.yaml delete mode 100644 themes/base16-pop-light.yaml delete mode 100644 themes/base16-railscasts-dark.yaml delete mode 100644 themes/base16-railscasts-light.yaml delete mode 100644 themes/base16-shapeshifter-dark.yaml delete mode 100644 themes/base16-shapeshifter-light.yaml delete mode 100644 themes/base16-solarized-dark.yaml delete mode 100644 themes/base16-solarized-light.yaml delete mode 100644 themes/base16-summerfruit-dark.yaml delete mode 100644 themes/base16-summerfruit-light.yaml delete mode 100644 themes/base16-tomorrow-dark.yaml delete mode 100644 themes/base16-tomorrow-light.yaml delete mode 100644 themes/base16-twilight-dark.yaml delete mode 100644 themes/base16-twilight-light.yaml delete mode 100644 themes/base16-unikitty-dark.yaml delete mode 100644 themes/base16-unikitty-light.yaml delete mode 100644 themes/base16-woodland-dark.yaml delete mode 100644 themes/basic-black.yaml delete mode 100644 themes/basic-blue.yaml delete mode 100644 themes/batsignal-light-color-theme.yaml delete mode 100644 themes/bearhugs.yaml delete mode 100644 themes/bee-theme-color-theme-tow.yaml delete mode 100644 themes/bee-theme.yaml delete mode 100644 themes/belch-fork.yaml delete mode 100644 themes/benlatheme-azure.yaml delete mode 100644 themes/benpai-theme-dark.yaml delete mode 100644 themes/berry-blast-theme.yaml delete mode 100644 themes/berry-latte-light.yaml delete mode 100644 themes/bersk.yaml delete mode 100644 themes/beru.yaml delete mode 100644 themes/best-themes-one-monokai.yaml delete mode 100644 themes/better-selenized-dark.yaml delete mode 100644 themes/better-solarized-dark-italic.yaml delete mode 100644 themes/better-solarized-dark.yaml delete mode 100644 themes/bhwm715-even-darker.yaml delete mode 100644 themes/bianconero.yaml delete mode 100644 themes/bigsur-gtk-theme-dark-blue.yaml delete mode 100644 themes/bird.yaml delete mode 100644 themes/black-theme.yaml delete mode 100644 themes/black-velvet-luxe.yaml delete mode 100644 themes/blackbird-dusk.yaml delete mode 100644 themes/blackbird-midnight.yaml delete mode 100644 themes/blackcoffeedark.yaml delete mode 100644 themes/blackpink.yaml delete mode 100644 themes/blinds-dark.yaml delete mode 100644 themes/blink-contrast.yaml delete mode 100644 themes/blink-light.yaml delete mode 100644 themes/blink.yaml delete mode 100644 themes/bloom-1-1-0.yaml delete mode 100644 themes/blue-color-theme.yaml delete mode 100644 themes/blue-dark-theme.yaml delete mode 100644 themes/blue-day.yaml delete mode 100644 themes/blue-light-theme.yaml delete mode 100644 themes/blue-moves-darker-color-theme.yaml delete mode 100644 themes/blue-neon.yaml delete mode 100644 themes/blue-night.yaml delete mode 100644 themes/blueberry-futuristic-theme-fork.yaml delete mode 100644 themes/blueberry-theme.yaml delete mode 100644 themes/blueprint-grid.yaml delete mode 100644 themes/bluloco-dark-italic.yaml delete mode 100644 themes/bluloco-dark.yaml delete mode 100644 themes/bluloco-light-italic.yaml delete mode 100644 themes/blush-pink-enhanced-premium.yaml delete mode 100644 themes/blve.yaml delete mode 100644 themes/bogster.yaml delete mode 100644 themes/bold-contrast.yaml delete mode 100644 themes/bold-light.yaml delete mode 100644 themes/bold.yaml delete mode 100644 themes/bolsonaro-theme.yaml delete mode 100644 themes/borders-blue.yaml delete mode 100644 themes/borders-dark.yaml delete mode 100644 themes/borders-darker.yaml delete mode 100644 themes/borealis.yaml delete mode 100644 themes/botany-color-theme.yaml delete mode 100644 themes/botany.yaml delete mode 100644 themes/boxuk-contrast.yaml delete mode 100644 themes/boxuk-light.yaml delete mode 100644 themes/boxuk.yaml delete mode 100644 themes/brave-contrast.yaml delete mode 100644 themes/brave-light.yaml delete mode 100644 themes/brave.yaml delete mode 100644 themes/brid-purple-garden-dark.yaml delete mode 100644 themes/brid-purple-garden-light.yaml delete mode 100644 themes/bright-colors-blue.yaml delete mode 100644 themes/brownhu.yaml delete mode 100644 themes/bubba-kush-v1.yaml delete mode 100644 themes/buby-color-theme.yaml delete mode 100644 themes/butter-green-fork.yaml delete mode 100644 themes/c-c-theme.yaml delete mode 100644 themes/c-carbon-6.yaml delete mode 100644 themes/c-dracula.yaml delete mode 100644 themes/cabalyon-theme.yaml delete mode 100644 themes/calm-dark.yaml delete mode 100644 themes/calm-days-sober-nights-day-sky.yaml delete mode 100644 themes/calm-days-sober-nights-day.yaml delete mode 100644 themes/calm-days-sober-nights-night-sky.yaml delete mode 100644 themes/calm-days-sober-nights-night.yaml delete mode 100644 themes/calm-down-color-theme.yaml delete mode 100644 themes/calm-light.yaml delete mode 100644 themes/calmppuccin-frappe.yaml delete mode 100644 themes/calmppuccin-latte.yaml delete mode 100644 themes/calmppuccin-macchiato.yaml delete mode 100644 themes/calmppuccin-mocha.yaml delete mode 100644 themes/calmppuccin-nitro-cold-brew.yaml delete mode 100644 themes/calmppuccin-oledppuccin.yaml delete mode 100644 themes/camo-dark.yaml delete mode 100644 themes/candy-pine.yaml delete mode 100644 themes/carbon-candy-anthracite.yaml delete mode 100644 themes/carbon-candy-aurora.yaml delete mode 100644 themes/carbon-candy-bee.yaml delete mode 100644 themes/carbon-candy-carbon.yaml delete mode 100644 themes/carbon-candy-dark.yaml delete mode 100644 themes/carbon-candy-obsidian.yaml delete mode 100644 themes/carbon-candy-palenight.yaml delete mode 100644 themes/carbon-code-amber-dark.yaml delete mode 100644 themes/carbon-code-amber-light.yaml delete mode 100644 themes/carbon-code-crimson-dark.yaml delete mode 100644 themes/carbon-code-crimson-light.yaml delete mode 100644 themes/carbon-code-dark.yaml delete mode 100644 themes/carbon-code-emerald-dark.yaml delete mode 100644 themes/carbon-code-emerald-light.yaml delete mode 100644 themes/carbon-code-light.yaml delete mode 100644 themes/carbon-code-rose-dark.yaml delete mode 100644 themes/carbon-code-rose-light.yaml delete mode 100644 themes/carbon-react-color-theme-maya-black.yaml delete mode 100644 themes/carbon-react-color-theme-maya.yaml delete mode 100644 themes/carbon-react-color-theme.yaml delete mode 100644 themes/carbon.yaml delete mode 100644 themes/carbonight-contrast.yaml delete mode 100644 themes/carbonight-light.yaml delete mode 100644 themes/cassieye-dark.yaml delete mode 100644 themes/cassieye-light.yaml delete mode 100644 themes/catalyst-light.yaml delete mode 100644 themes/catalyst.yaml delete mode 100644 themes/catppuccin-frapp.yaml delete mode 100644 themes/catppuccin-latte.yaml delete mode 100644 themes/catppuccin-macchiato.yaml delete mode 100644 themes/catppuccin-mocha.yaml delete mode 100644 themes/catppuccin-monokai-frappe.yaml delete mode 100644 themes/catppuccin-monokai-latte.yaml delete mode 100644 themes/catppuccin-monokai-macchiato.yaml delete mode 100644 themes/catppuccin-monokai-mocha.yaml delete mode 100644 themes/ccat.yaml delete mode 100644 themes/celestial-charm-theme.yaml delete mode 100644 themes/celestial.yaml delete mode 100644 themes/chai-light.yaml delete mode 100644 themes/chalk.yaml delete mode 100644 themes/cheese-n-all.yaml delete mode 100644 themes/cheetha-green.yaml delete mode 100644 themes/cherry-blossom-airy.yaml delete mode 100644 themes/cherry-blossom-breeze.yaml delete mode 100644 themes/cherry-blossom-dark-reflection.yaml delete mode 100644 themes/cherry-blossom-dark-vivid.yaml delete mode 100644 themes/cherry-blossom-dark.yaml delete mode 100644 themes/cherry-blossom-dimmed-dusk.yaml delete mode 100644 themes/cherry-blossom-dimmed.yaml delete mode 100644 themes/cherry-blossom-night-harmony.yaml delete mode 100644 themes/cherry-blossom-night.yaml delete mode 100644 themes/cherry-blossom-osaka-light.yaml delete mode 100644 themes/cherry-blossom-osaka.yaml delete mode 100644 themes/cherry-blossom-sky-vibrant.yaml delete mode 100644 themes/cherry-blossom-spring.yaml delete mode 100644 themes/cherry-blossom-twilight.yaml delete mode 100644 themes/cherry-blossom-warm.yaml delete mode 100644 themes/cherry-midnight.yaml delete mode 100644 themes/cherry.yaml delete mode 100644 themes/cherryblossom.yaml delete mode 100644 themes/chinolor-light.yaml delete mode 100644 themes/chinolor.yaml delete mode 100644 themes/chocolate-contrast.yaml delete mode 100644 themes/chocolate-dessert-theme.yaml delete mode 100644 themes/chocolate-light.yaml delete mode 100644 themes/chocolate.yaml delete mode 100644 themes/chromahin-amoled.yaml delete mode 100644 themes/chromahin-dark.yaml delete mode 100644 themes/chromahin-multi-color.yaml delete mode 100644 themes/chromahin-soft.yaml delete mode 100644 themes/chrome-green.yaml delete mode 100644 themes/cinnamonroll.yaml delete mode 100644 themes/classic-essential-colors-blue.yaml delete mode 100644 themes/claude-code-dark-high-contrast.yaml delete mode 100644 themes/claude-code-dark.yaml delete mode 100644 themes/claude-code-light-high-contrast.yaml delete mode 100644 themes/claude-code-light.yaml delete mode 100644 themes/claude-dark-anthropic.yaml delete mode 100644 themes/claude-dark-high-contrast.yaml delete mode 100644 themes/claude-dark-italic.yaml delete mode 100644 themes/claude-dark.yaml delete mode 100644 themes/claude-light.yaml delete mode 100644 themes/claude-vscode-dark-brand.yaml delete mode 100644 themes/claude-vscode-light-brand.yaml delete mode 100644 themes/cloudmint-night.yaml delete mode 100644 themes/clubcleaver-functional-matrix.yaml delete mode 100644 themes/clymate-vsdark-color-theme.yaml delete mode 100644 themes/cobalt-ice.yaml delete mode 100644 themes/cobalt-next-dark.yaml delete mode 100644 themes/cobalt-next.yaml delete mode 100644 themes/cobalt9.yaml delete mode 100644 themes/code-like-a-rainbow.yaml delete mode 100644 themes/code-red.yaml delete mode 100644 themes/code-sandbox-tribute.yaml delete mode 100644 themes/code-with-colors-pro-midnight-purple.yaml delete mode 100644 themes/codebabel-theme-dark.yaml delete mode 100644 themes/codecourse-contrast.yaml delete mode 100644 themes/codecourse-light.yaml delete mode 100644 themes/codecourse.yaml delete mode 100644 themes/codeify-dark-berry-color-theme.yaml delete mode 100644 themes/codely-dark-theme.yaml delete mode 100644 themes/codeme.yaml delete mode 100644 themes/coder-vai-forest.yaml delete mode 100644 themes/coder-vai-light.yaml delete mode 100644 themes/coder-vai-ocean.yaml delete mode 100644 themes/coder-vai-purple-haze.yaml delete mode 100644 themes/codesandbox-theme.yaml delete mode 100644 themes/codeschool2-minimal.yaml delete mode 100644 themes/codesso-unison-beta.yaml delete mode 100644 themes/codevibe-epic-theme.yaml delete mode 100644 themes/codewithsg-dark-theme.yaml delete mode 100644 themes/codiefy-optimas-prime-color-theme.yaml delete mode 100644 themes/coffee-contrast.yaml delete mode 100644 themes/coffee-light.yaml delete mode 100644 themes/coffee.yaml delete mode 100644 themes/coimbrox-minimalist-panda.yaml delete mode 100644 themes/coimbroxthmedark.yaml delete mode 100644 themes/coldark-cold.yaml delete mode 100644 themes/coldark-dark.yaml delete mode 100644 themes/collapse.yaml delete mode 100644 themes/color-coffee-dark.yaml delete mode 100644 themes/color-contrast.yaml delete mode 100644 themes/color-sea-blue.yaml delete mode 100644 themes/color-sea-gray.yaml delete mode 100644 themes/color-sea-green.yaml delete mode 100644 themes/color-sea-orange.yaml delete mode 100644 themes/color-sea-purple.yaml delete mode 100644 themes/color-sea-red.yaml delete mode 100644 themes/color-sea-yellow.yaml delete mode 100644 themes/colorbars-blue.yaml delete mode 100644 themes/colorbars-green.yaml delete mode 100644 themes/colorbars-orange.yaml delete mode 100644 themes/colorbars-purple.yaml delete mode 100644 themes/colored-desert.yaml delete mode 100644 themes/colorful-dark-fork.yaml delete mode 100644 themes/colorful-dark-theme.yaml delete mode 100644 themes/colorful-light.yaml delete mode 100644 themes/colors-color-theme.yaml delete mode 100644 themes/colorways-cheers-soft.yaml delete mode 100644 themes/columbina-dark.yaml delete mode 100644 themes/columbina-high-contrast.yaml delete mode 100644 themes/compline.yaml delete mode 100644 themes/component.yaml delete mode 100644 themes/comrade-contrast.yaml delete mode 100644 themes/concoctis-dark-hard.yaml delete mode 100644 themes/concoctis-dark-soft.yaml delete mode 100644 themes/concoctis-light-hard.yaml delete mode 100644 themes/concoctis-light-soft.yaml delete mode 100644 themes/conifer-theme.yaml delete mode 100644 themes/contrast-kai.yaml delete mode 100644 themes/coolnight-color-theme.yaml delete mode 100644 themes/copper-dark.yaml delete mode 100644 themes/cosmic-dark.yaml delete mode 100644 themes/cosmic-decay.yaml delete mode 100644 themes/cosmic-gleam-darkest.yaml delete mode 100644 themes/cosmic-sea.yaml delete mode 100644 themes/cosmicsarthak-dark.yaml delete mode 100644 themes/cosmicsarthak-neon.yaml delete mode 100644 themes/cosmicsarthak-night-owl.yaml delete mode 100644 themes/cosmicsarthak-red.yaml delete mode 100644 themes/cosmo.yaml delete mode 100644 themes/cowboy-theme.yaml delete mode 100644 themes/cr-night-theme.yaml delete mode 100644 themes/crackpot-contrast.yaml delete mode 100644 themes/crackpot-light.yaml delete mode 100644 themes/crackpot.yaml delete mode 100644 themes/crf-flamengo.yaml delete mode 100644 themes/crisp-contrast.yaml delete mode 100644 themes/crisp-light.yaml delete mode 100644 themes/crisp.yaml delete mode 100644 themes/crow-dark.yaml delete mode 100644 themes/crt-64.yaml delete mode 100644 themes/crt-amber.yaml delete mode 100644 themes/crt-blue.yaml delete mode 100644 themes/crt-green.yaml delete mode 100644 themes/crt-red.yaml delete mode 100644 themes/crt.yaml delete mode 100644 themes/crypto.yaml delete mode 100644 themes/crystal-quartz.yaml delete mode 100644 themes/crystaltine-s-crystalline-4-1.yaml delete mode 100644 themes/crystaltine-s-crystalline-5-0.yaml delete mode 100644 themes/cs50-light-theme.yaml delete mode 100644 themes/cupertino-dark.yaml delete mode 100644 themes/cupertino-light.yaml delete mode 100644 themes/cursor-dark-anysphere-v0-0-1.yaml delete mode 100644 themes/cursor-less-dark.yaml delete mode 100644 themes/cursor-light.yaml delete mode 100644 themes/cursor-night-theme-soft.yaml delete mode 100644 themes/cursor-night-theme.yaml delete mode 100644 themes/cursor-theme.yaml delete mode 100644 themes/custom-theme.yaml delete mode 100644 themes/custommarktheme.yaml delete mode 100644 themes/cyan-dark.yaml delete mode 100644 themes/cyber-dark.yaml delete mode 100644 themes/cyber-industrial.yaml delete mode 100644 themes/cyber-light-soft.yaml delete mode 100644 themes/cyber-light-warm.yaml delete mode 100644 themes/cyber-light.yaml delete mode 100644 themes/cyber-pastel-violet.yaml delete mode 100644 themes/cyber-pop.yaml delete mode 100644 themes/cyberblue.yaml delete mode 100644 themes/cyberdyne-ghostty.yaml delete mode 100644 themes/cyberlite-fork.yaml delete mode 100644 themes/cyberpink-137-theme.yaml delete mode 100644 themes/cyberpunk-2077-night-city-neon.yaml delete mode 100644 themes/cyberpunkcygnus-clear-grid.yaml delete mode 100644 themes/cyberpunkcygnus-neon-pulse.yaml delete mode 100644 themes/cyberpunkcygnus-solace-flare.yaml delete mode 100644 themes/cybersec-pro.yaml delete mode 100644 themes/cybertrauma-s.yaml delete mode 100644 themes/cyberui.yaml delete mode 100644 themes/cynical-color-theme.yaml delete mode 100644 themes/cyperpunkrebecca.yaml delete mode 100644 themes/d2t-dark-clean.yaml delete mode 100644 themes/d2t-dark.yaml delete mode 100644 themes/dangergray-v2.yaml delete mode 100644 themes/daniel-material-palenight-theme.yaml delete mode 100644 themes/dantes-theme.yaml delete mode 100644 themes/darcula-contrast-min.yaml delete mode 100644 themes/darcula-contrast.yaml delete mode 100644 themes/darcula-dark-theme.yaml delete mode 100644 themes/darcula-port.yaml delete mode 100644 themes/darcula-solid-color-theme.yaml delete mode 100644 themes/darcula.yaml delete mode 100644 themes/dare-contrast.yaml delete mode 100644 themes/dare-light.yaml delete mode 100644 themes/dare.yaml delete mode 100644 themes/dark-aura.yaml delete mode 100644 themes/dark-blood.yaml delete mode 100644 themes/dark-brown.yaml delete mode 100644 themes/dark-clean.yaml delete mode 100644 themes/dark-code-fork.yaml delete mode 100644 themes/dark-codely-theme.yaml delete mode 100644 themes/dark-crimson.yaml delete mode 100644 themes/dark-dust-pro.yaml delete mode 100644 themes/dark-future-cyberpunk-2077.yaml delete mode 100644 themes/dark-future-outrun.yaml delete mode 100644 themes/dark-green-jungle.yaml delete mode 100644 themes/dark-green.yaml delete mode 100644 themes/dark-lavender-black.yaml delete mode 100644 themes/dark-lavender-soft.yaml delete mode 100644 themes/dark-lavender-tailwind-soft.yaml delete mode 100644 themes/dark-lavender-tailwind.yaml delete mode 100644 themes/dark-lavender.yaml delete mode 100644 themes/dark-legibility.yaml delete mode 100644 themes/dark-lime-flat.yaml delete mode 100644 themes/dark-magic-dracula.yaml delete mode 100644 themes/dark-magic-frankenstein.yaml delete mode 100644 themes/dark-magic-light.yaml delete mode 100644 themes/dark-magic-night.yaml delete mode 100644 themes/dark-magic-nord.yaml delete mode 100644 themes/dark-magic-tokyo.yaml delete mode 100644 themes/dark-magic.yaml delete mode 100644 themes/dark-minimal-lime-theme.yaml delete mode 100644 themes/dark-minimal-theme-sm.yaml delete mode 100644 themes/dark-mode.yaml delete mode 100644 themes/dark-modern-one-without-italics.yaml delete mode 100644 themes/dark-molokai.yaml delete mode 100644 themes/dark-nebula.yaml delete mode 100644 themes/dark-neon-theme-sm.yaml delete mode 100644 themes/dark-night.yaml delete mode 100644 themes/dark-ohnagi-2020.yaml delete mode 100644 themes/dark-orange-flat.yaml delete mode 100644 themes/dark-owl-darker-no-italics.yaml delete mode 100644 themes/dark-owl-darker.yaml delete mode 100644 themes/dark-petrol-dev.yaml delete mode 100644 themes/dark-plus-moon-lite.yaml delete mode 100644 themes/dark-purple-flat.yaml delete mode 100644 themes/dark-purple-fork.yaml delete mode 100644 themes/dark-reader-dark.yaml delete mode 100644 themes/dark-red-theme-vs-code.yaml delete mode 100644 themes/dark-red-theme.yaml delete mode 100644 themes/dark-soft-theme-sm.yaml delete mode 100644 themes/dark-solarin-2021.yaml delete mode 100644 themes/dark-theme-default-by-luisfelipe.yaml delete mode 100644 themes/dark-yellow-flat.yaml delete mode 100644 themes/darka.yaml delete mode 100644 themes/darkalchemy-basic.yaml delete mode 100644 themes/darkasp.yaml delete mode 100644 themes/darkblue-theme.yaml delete mode 100644 themes/darkbutter.yaml delete mode 100644 themes/darker-than-black.yaml delete mode 100644 themes/darkest.yaml delete mode 100644 themes/darkfontenelestheme.yaml delete mode 100644 themes/darkit-astral.yaml delete mode 100644 themes/darkpinkpro.yaml delete mode 100644 themes/darkpurple.yaml delete mode 100644 themes/darkside-contrast.yaml delete mode 100644 themes/darkside-light.yaml delete mode 100644 themes/darkside.yaml delete mode 100644 themes/darkwind-default.yaml delete mode 100644 themes/darky-purple-storm.yaml delete mode 100644 themes/darky-purple.yaml delete mode 100644 themes/darth-insidious.yaml delete mode 100644 themes/darth-invader.yaml delete mode 100644 themes/dartpad.yaml delete mode 100644 themes/david.yaml delete mode 100644 themes/day.yaml delete mode 100644 themes/dbt-dark-theme.yaml delete mode 100644 themes/dbt-fusion.yaml delete mode 100644 themes/dbt-light-theme.yaml delete mode 100644 themes/dcdevthemered.yaml delete mode 100644 themes/deadpool.yaml delete mode 100644 themes/decayce.yaml delete mode 100644 themes/deep-purple-fork-fork.yaml delete mode 100644 themes/deep-purple-fork.yaml delete mode 100644 themes/deep-purple-theme.yaml delete mode 100644 themes/deep-sea-navigator.yaml delete mode 100644 themes/deep-space-dark.yaml delete mode 100644 themes/deep-teal.yaml delete mode 100644 themes/deep-void.yaml delete mode 100644 themes/defaults.yaml delete mode 100644 themes/defdo-base.yaml delete mode 100644 themes/defdo-halloween.yaml delete mode 100644 themes/definition-theme2023.yaml delete mode 100644 themes/dekirisu-s-rust-theme.yaml delete mode 100644 themes/demon.yaml delete mode 100644 themes/desert-night.yaml delete mode 100644 themes/desert.yaml delete mode 100644 themes/designcourse-theme.yaml delete mode 100644 themes/dev-dark-fork-fork.yaml delete mode 100644 themes/developer-friendly-dark.yaml delete mode 100644 themes/developers-theme-fork.yaml delete mode 100644 themes/devsena-ultra-dark.yaml delete mode 100644 themes/dharam-gfx-hight-contrast.yaml delete mode 100644 themes/diabo-theme.yaml delete mode 100644 themes/dimi-theme-dark.yaml delete mode 100644 themes/dimi-theme-darker.yaml delete mode 100644 themes/dj-s-purple.yaml delete mode 100644 themes/dk-dark-high-contrast.yaml delete mode 100644 themes/dna-helix.yaml delete mode 100644 themes/dodimmed-dark.yaml delete mode 100644 themes/doli-universal.yaml delete mode 100644 themes/doli-visual-studio.yaml delete mode 100644 themes/dominator-paralyzer.yaml delete mode 100644 themes/doom-one-dark.yaml delete mode 100644 themes/doom-one-light.yaml delete mode 100644 themes/dot-developer-dark.yaml delete mode 100644 themes/dotportal.yaml delete mode 100644 themes/downpour-contrast.yaml delete mode 100644 themes/downpour-light.yaml delete mode 100644 themes/downpour.yaml delete mode 100644 themes/dr-jones.yaml delete mode 100644 themes/dracula-dark.yaml delete mode 100644 themes/dracula-dimmed-color-theme.yaml delete mode 100644 themes/dracula-gray.yaml delete mode 100644 themes/dracula-light.yaml delete mode 100644 themes/dracula-min-light-darker-theme.yaml delete mode 100644 themes/dracula-min-light-theme.yaml delete mode 100644 themes/dracula-min-white-darker-theme.yaml delete mode 100644 themes/dracula-min-white-theme.yaml delete mode 100644 themes/dracula-pro-black.yaml delete mode 100644 themes/dracula-pro.yaml delete mode 100644 themes/dragn-dark-color-theme.yaml delete mode 100644 themes/dragon.yaml delete mode 100644 themes/drakencord-blue-fork.yaml delete mode 100644 themes/dreadbots-fork.yaml delete mode 100644 themes/dribbble-theme-light.yaml delete mode 100644 themes/drukalu.yaml delete mode 100644 themes/dsekon-theme.yaml delete mode 100644 themes/duck-in-the-dream.yaml delete mode 100644 themes/duck-in-the-lake.yaml delete mode 100644 themes/duckeys-blurple.yaml delete mode 100644 themes/dukemonokai-color-theme.yaml delete mode 100644 themes/dune-arrakis-incandescent.yaml delete mode 100644 themes/dune-bene-gesserit.yaml delete mode 100644 themes/dune-caladan-storm.yaml delete mode 100644 themes/dune-fremen-sietch.yaml delete mode 100644 themes/dune-giedi-prime.yaml delete mode 100644 themes/dune-guild-navigator.yaml delete mode 100644 themes/dune-harkonnen.yaml delete mode 100644 themes/dune-house-atreides.yaml delete mode 100644 themes/dune-ix-technology.yaml delete mode 100644 themes/dune-kaitain.yaml delete mode 100644 themes/dune-mentat.yaml delete mode 100644 themes/dune-muad-dib.yaml delete mode 100644 themes/dune-salusa-secundus.yaml delete mode 100644 themes/dune-sandworm.yaml delete mode 100644 themes/dune-sardaukar-imperial.yaml delete mode 100644 themes/dune-spacing-guild.yaml delete mode 100644 themes/dune-spice-vision.yaml delete mode 100644 themes/dune-water-of-life.yaml delete mode 100644 themes/duskfox.yaml delete mode 100644 themes/dzsolarized-dark.yaml delete mode 100644 themes/dzsolarized.yaml delete mode 100644 themes/earthsong-contrast.yaml delete mode 100644 themes/earthsong-light.yaml delete mode 100644 themes/earthsong.yaml delete mode 100644 themes/easy-eye.yaml delete mode 100644 themes/easy-eyes-color-theme.yaml delete mode 100644 themes/eclipse-dark-darker.yaml delete mode 100644 themes/eclipse-dark-flat.yaml delete mode 100644 themes/eclipse-dawn.yaml delete mode 100644 themes/eclipse-flare.yaml delete mode 100644 themes/eclipse-optics.yaml delete mode 100644 themes/eclipse-penumbra.yaml delete mode 100644 themes/eclipse-umbra.yaml delete mode 100644 themes/ecogest-solarized-light.yaml delete mode 100644 themes/edge-dark-aura.yaml delete mode 100644 themes/edge-dark-neon.yaml delete mode 100644 themes/edge-dark.yaml delete mode 100644 themes/edge-light.yaml delete mode 100644 themes/edgerunner.yaml delete mode 100644 themes/editor.yaml delete mode 100644 themes/eh-s-website-theme.yaml delete mode 100644 themes/eigen-color-theme.yaml delete mode 100644 themes/eldritch-dark.yaml delete mode 100644 themes/eldritch.yaml delete mode 100644 themes/electric-blue.yaml delete mode 100644 themes/electric-dreams.yaml delete mode 100644 themes/electric-labs.yaml delete mode 100644 themes/electric-violet-fork.yaml delete mode 100644 themes/electron-vue.yaml delete mode 100644 themes/elementary.yaml delete mode 100644 themes/elf-dream.yaml delete mode 100644 themes/elypink-dark-faded.yaml delete mode 100644 themes/elypink-dark.yaml delete mode 100644 themes/elypink-light-diamond.yaml delete mode 100644 themes/elypink-light-faded.yaml delete mode 100644 themes/elypink-light-spring.yaml delete mode 100644 themes/elypink-light-summer.yaml delete mode 100644 themes/elypink-light.yaml delete mode 100644 themes/emberstone-dark-theme.yaml delete mode 100644 themes/emerald-fork.yaml delete mode 100644 themes/emerald-matrix.yaml delete mode 100644 themes/end-color-theme.yaml delete mode 100644 themes/enhanced-hubspot-theme.yaml delete mode 100644 themes/enhanced-material.yaml delete mode 100644 themes/enki-night-owl.yaml delete mode 100644 themes/enki-rainbow.yaml delete mode 100644 themes/enki-red.yaml delete mode 100644 themes/enki.yaml delete mode 100644 themes/entardecer.yaml delete mode 100644 themes/erikwdevtheme-color-theme.yaml delete mode 100644 themes/eritbh-s-theme.yaml delete mode 100644 themes/errordark.yaml delete mode 100644 themes/espresso-dark-theme.yaml delete mode 100644 themes/espresso-dark.yaml delete mode 100644 themes/espresso-high.yaml delete mode 100644 themes/eternals-no-italic.yaml delete mode 100644 themes/ethereum-dark-blue-theme.yaml delete mode 100644 themes/ethereum-dark-grey-theme.yaml delete mode 100644 themes/eva-01-berserk-theme.yaml delete mode 100644 themes/eva-01.yaml delete mode 100644 themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml delete mode 100644 themes/eve.yaml delete mode 100644 themes/everforest-dark.yaml delete mode 100644 themes/everforest-pro-dark-cozy.yaml delete mode 100644 themes/everforest-pro-dark-vibrant.yaml delete mode 100644 themes/everforest-pro-dark.yaml delete mode 100644 themes/everforest-pro-light-cozy.yaml delete mode 100644 themes/everforest-pro-light-vibrant.yaml delete mode 100644 themes/everforest-pro-light.yaml delete mode 100644 themes/everforest-soft.yaml delete mode 100644 themes/evergarden-winter-light.yaml delete mode 100644 themes/evergarden-winter.yaml delete mode 100644 themes/evergarden.yaml delete mode 100644 themes/evernex.yaml delete mode 100644 themes/evro-dark.yaml delete mode 100644 themes/evro-darker-flat.yaml delete mode 100644 themes/executive-level.yaml delete mode 100644 themes/exovoid-purple-better-c.yaml delete mode 100644 themes/extreme-dark-theme.yaml delete mode 100644 themes/eye-care-owl-light.yaml delete mode 100644 themes/eye-care-owl.yaml delete mode 100644 themes/eye-care.yaml delete mode 100644 themes/eye-comfort-light.yaml delete mode 100644 themes/fabi.yaml delete mode 100644 themes/fady-ehab-amer-dark-theme.yaml delete mode 100644 themes/fae.yaml delete mode 100644 themes/fig.yaml delete mode 100644 themes/filter-turbo-color-theme.yaml delete mode 100644 themes/firefly.yaml delete mode 100644 themes/firefox-dark.yaml delete mode 100644 themes/flat-theme-gray.yaml delete mode 100644 themes/flat-theme-light.yaml delete mode 100644 themes/flat-ui-immersed.yaml delete mode 100644 themes/fleetheme.yaml delete mode 100644 themes/fleeting-theme-modern.yaml delete mode 100644 themes/flexoki.yaml delete mode 100644 themes/flippidippi-light.yaml delete mode 100644 themes/florist-dark.yaml delete mode 100644 themes/florist-light.yaml delete mode 100644 themes/fluminense.yaml delete mode 100644 themes/flutter-dark.yaml delete mode 100644 themes/flux-dawn.yaml delete mode 100644 themes/flux-daylight.yaml delete mode 100644 themes/flux-night.yaml delete mode 100644 themes/flux-twilight.yaml delete mode 100644 themes/foco-1-0-0.yaml delete mode 100644 themes/focus-colors.yaml delete mode 100644 themes/fodder-contrast.yaml delete mode 100644 themes/fodder-light.yaml delete mode 100644 themes/fodder.yaml delete mode 100644 themes/foggy-forest-v1.yaml delete mode 100644 themes/forest-color-theme.yaml delete mode 100644 themes/forest-night-ethereal-magic.yaml delete mode 100644 themes/forest-night-italic-serenade.yaml delete mode 100644 themes/forest-night-serenade.yaml delete mode 100644 themes/forest-rose.yaml delete mode 100644 themes/forest-tech.yaml delete mode 100644 themes/foxdracula-color-theme.yaml delete mode 100644 themes/frantic-contrast.yaml delete mode 100644 themes/frantic-light.yaml delete mode 100644 themes/frantic.yaml delete mode 100644 themes/fresh-green-color-theme.yaml delete mode 100644 themes/freshcut-contrast.yaml delete mode 100644 themes/freshcut-light.yaml delete mode 100644 themes/freshcut.yaml delete mode 100644 themes/friction-contrast.yaml delete mode 100644 themes/friction-light.yaml delete mode 100644 themes/friction.yaml delete mode 100644 themes/frontier-contrast.yaml delete mode 100644 themes/frontier-light.yaml delete mode 100644 themes/frontier.yaml delete mode 100644 themes/frozen-deep.yaml delete mode 100644 themes/furukawa-pop-theme.yaml delete mode 100644 themes/g-dark-blue-whale.yaml delete mode 100644 themes/g-dark-jacksons-purple.yaml delete mode 100644 themes/g-dark-light-alice-blue.yaml delete mode 100644 themes/g-dark-light-glitter.yaml delete mode 100644 themes/g-dark-light-hint-of-red.yaml delete mode 100644 themes/g-dark-minimal-2-astronaut-blue.yaml delete mode 100644 themes/g-dark-minimal-3-oxford-blue.yaml delete mode 100644 themes/g-dark-minimal-midnight.yaml delete mode 100644 themes/g-dark-one-love-black-pearl.yaml delete mode 100644 themes/g-dark-one-love.yaml delete mode 100644 themes/g-dark-shader-h-ck3r-midnight-moss.yaml delete mode 100644 themes/g-dark-shader-haiti.yaml delete mode 100644 themes/g-dark-shader-mirage.yaml delete mode 100644 themes/g-dark-shift-midnight-moss.yaml delete mode 100644 themes/g-dark-shift-vulcan.yaml delete mode 100644 themes/g-dark-valhalla.yaml delete mode 100644 themes/galactus.yaml delete mode 100644 themes/galaxytheme.yaml delete mode 100644 themes/game-mode.yaml delete mode 100644 themes/gameboy-classic-dark.yaml delete mode 100644 themes/gameboy-classic-light.yaml delete mode 100644 themes/gamma-fork.yaml delete mode 100644 themes/ganbaru-blue.yaml delete mode 100644 themes/ganbaru-dark.yaml delete mode 100644 themes/gantheory-dark.yaml delete mode 100644 themes/gapstyle-vs-dark-modern.yaml delete mode 100644 themes/gapstyle-vs.yaml delete mode 100644 themes/gauss-thetheme.yaml delete mode 100644 themes/gckn.yaml delete mode 100644 themes/gen-theme.yaml delete mode 100644 themes/genshin-impact-chiori-dark.yaml delete mode 100644 themes/genshin-impact-chiori.yaml delete mode 100644 themes/genshin-impact-citlali-dark.yaml delete mode 100644 themes/genshin-impact-citlali.yaml delete mode 100644 themes/genshin-impact-columbina.yaml delete mode 100644 themes/genshin-impact-furina-dark.yaml delete mode 100644 themes/genshin-impact-furina.yaml delete mode 100644 themes/genshin-impact-ganyu-dark.yaml delete mode 100644 themes/genshin-impact-ganyu-high-contrast.yaml delete mode 100644 themes/genshin-impact-ganyu-light.yaml delete mode 100644 themes/genshin-impact-il-dottore-dark.yaml delete mode 100644 themes/genshin-impact-il-dottore.yaml delete mode 100644 themes/genshin-impact-kamisato-ayaka-dark.yaml delete mode 100644 themes/genshin-impact-kamisato-ayaka.yaml delete mode 100644 themes/genshin-impact-layla-dark.yaml delete mode 100644 themes/genshin-impact-layla.yaml delete mode 100644 themes/genshin-impact-sandrone-dark.yaml delete mode 100644 themes/genshin-impact-sandrone.yaml delete mode 100644 themes/genshin-impact-scaramouche-dark.yaml delete mode 100644 themes/genshin-impact-scaramouche.yaml delete mode 100644 themes/genshin-impact-skirk-dark.yaml delete mode 100644 themes/genshin-impact-skirk.yaml delete mode 100644 themes/genshin-impact-wanderer-dark.yaml delete mode 100644 themes/genshin-impact-wanderer.yaml delete mode 100644 themes/genshin-impact-yae-miko-dark.yaml delete mode 100644 themes/genshin-impact-yae-miko.yaml delete mode 100644 themes/genshin-impact-yumemizuki-mizuki-dark.yaml delete mode 100644 themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml delete mode 100644 themes/genshin-impact-yumemizuki-mizuki-light.yaml delete mode 100644 themes/genshin-vibes-celestine-bardlight.yaml delete mode 100644 themes/genshin-vibes-damselette-whisper.yaml delete mode 100644 themes/genshin-vibes-emergency-food.yaml delete mode 100644 themes/genshin-vibes-eternal-electro-throne.yaml delete mode 100644 themes/genshin-vibes-fontaine-spotlight.yaml delete mode 100644 themes/genshin-vibes-frost-ritual.yaml delete mode 100644 themes/genshin-vibes-geo-contract-vault.yaml delete mode 100644 themes/genshin-vibes-hydrocourt-midnight.yaml delete mode 100644 themes/genshin-vibes-ice-oracle.yaml delete mode 100644 themes/genshin-vibes-kusanali-dawnbloom.yaml delete mode 100644 themes/genshin-vibes-lava-glaze-inferno.yaml delete mode 100644 themes/genshin-vibes-morax-golden-seal.yaml delete mode 100644 themes/genshin-vibes-outrider-blaze.yaml delete mode 100644 themes/genshin-vibes-pyro-scout.yaml delete mode 100644 themes/genshin-vibes-starry-companion.yaml delete mode 100644 themes/genshin-vibes-stormrider-breeze.yaml delete mode 100644 themes/genshin-vibes-sunforge-ember.yaml delete mode 100644 themes/genshin-vibes-veiled-harbinger.yaml delete mode 100644 themes/genshin-vibes-verdant-dreamweave.yaml delete mode 100644 themes/genshin-vibes-violet-eternity-glow.yaml delete mode 100644 themes/gentle-builder.yaml delete mode 100644 themes/gg-djaja-light.yaml delete mode 100644 themes/ghibli-forest-dark.yaml delete mode 100644 themes/ghostty-default-styledark.yaml delete mode 100644 themes/girls-theme.yaml delete mode 100644 themes/github-catppuccin-dark-mix.yaml delete mode 100644 themes/github-catppuccin-dark.yaml delete mode 100644 themes/github-colorblind.yaml delete mode 100644 themes/github-contrast.yaml delete mode 100644 themes/github-dark-default.yaml delete mode 100644 themes/github-dark-dimmed.yaml delete mode 100644 themes/github-dark-palenight.yaml delete mode 100644 themes/github-dark-theme.yaml delete mode 100644 themes/github-light-default.yaml delete mode 100644 themes/github-light-theme.yaml delete mode 100644 themes/github-minimal.yaml delete mode 100644 themes/github-revamp.yaml delete mode 100644 themes/github.yaml delete mode 100644 themes/gitlab-dark-grey.yaml delete mode 100644 themes/gitlab-dark.yaml delete mode 100644 themes/gitlab-light.yaml delete mode 100644 themes/giyu-tomioka.yaml delete mode 100644 themes/glacier-blue.yaml delete mode 100644 themes/glance-contrast.yaml delete mode 100644 themes/glance-light.yaml delete mode 100644 themes/glance.yaml delete mode 100644 themes/gleam-theme-minimal-dark.yaml delete mode 100644 themes/glitchly-green.yaml delete mode 100644 themes/gloom-contrast.yaml delete mode 100644 themes/gloom-light.yaml delete mode 100644 themes/gloom.yaml delete mode 100644 themes/glowfish-contrast.yaml delete mode 100644 themes/glowfish-light.yaml delete mode 100644 themes/glowfish.yaml delete mode 100644 themes/glv-s-theme.yaml delete mode 100644 themes/gms2.yaml delete mode 100644 themes/gnome-base16.yaml delete mode 100644 themes/go-playground.yaml delete mode 100644 themes/go-source.yaml delete mode 100644 themes/godot-4.yaml delete mode 100644 themes/gogh.yaml delete mode 100644 themes/gojo-infinity-dark.yaml delete mode 100644 themes/goku-code-dragon-ball-z-power-eye-safe.yaml delete mode 100644 themes/golden-era.yaml delete mode 100644 themes/golden-wave.yaml delete mode 100644 themes/goldentheme.yaml delete mode 100644 themes/goldfish-contrast.yaml delete mode 100644 themes/goldfish-light.yaml delete mode 100644 themes/goldfish.yaml delete mode 100644 themes/goodmonokai-color-theme.yaml delete mode 100644 themes/googledark.yaml delete mode 100644 themes/got-beyond-the-wall.yaml delete mode 100644 themes/got-house-baratheon.yaml delete mode 100644 themes/got-house-greyjoy.yaml delete mode 100644 themes/got-house-lannister.yaml delete mode 100644 themes/got-house-martell.yaml delete mode 100644 themes/got-house-stark.yaml delete mode 100644 themes/got-house-targaryen.yaml delete mode 100644 themes/got-night-s-watch.yaml delete mode 100644 themes/got-the-iron-throne.yaml delete mode 100644 themes/gotham.yaml delete mode 100644 themes/gothic-absinthe.yaml delete mode 100644 themes/gothic-amber-fog.yaml delete mode 100644 themes/gothic-blood-moon.yaml delete mode 100644 themes/gothic-cathedral.yaml delete mode 100644 themes/gothic-cemetery.yaml delete mode 100644 themes/gothic-dark.yaml delete mode 100644 themes/gothic-emerald-crypt.yaml delete mode 100644 themes/gothic-jester.yaml delete mode 100644 themes/gothic-light.yaml delete mode 100644 themes/gothic-midnight-rose.yaml delete mode 100644 themes/gothic-qaddy.yaml delete mode 100644 themes/gothic-raven.yaml delete mode 100644 themes/gothic-spider-lily.yaml delete mode 100644 themes/gothic-twilight-forest.yaml delete mode 100644 themes/gothic-vampire.yaml delete mode 100644 themes/gothic-victorian-mourning.yaml delete mode 100644 themes/graveyard-fork-fork.yaml delete mode 100644 themes/graveyard.yaml delete mode 100644 themes/graygraygray.yaml delete mode 100644 themes/grayscale301-light.yaml delete mode 100644 themes/great-white-bloodloss.yaml delete mode 100644 themes/great-white-dark.yaml delete mode 100644 themes/great-white-frost.yaml delete mode 100644 themes/great-white-high-contrast-dark.yaml delete mode 100644 themes/great-white-high-contrast-light.yaml delete mode 100644 themes/great-white-light.yaml delete mode 100644 themes/great-white-storm.yaml delete mode 100644 themes/greeeeen.yaml delete mode 100644 themes/green-coffee.yaml delete mode 100644 themes/green-hacker.yaml delete mode 100644 themes/green-kingdom.yaml delete mode 100644 themes/green-papper.yaml delete mode 100644 themes/green-tree.yaml delete mode 100644 themes/green-valley-forest.yaml delete mode 100644 themes/green-valley-matrix.yaml delete mode 100644 themes/green-valley-midnight.yaml delete mode 100644 themes/green-valley-mint.yaml delete mode 100644 themes/green-valley-neo.yaml delete mode 100644 themes/greyout.yaml delete mode 100644 themes/grimoire-nox.yaml delete mode 100644 themes/gru-black.yaml delete mode 100644 themes/grunboxtheme.yaml delete mode 100644 themes/grunge-contrast.yaml delete mode 100644 themes/grunge-light.yaml delete mode 100644 themes/grunge.yaml delete mode 100644 themes/gruvbox-dark-anhoder.yaml delete mode 100644 themes/gruvbox-drakenlords-dark-draken.yaml delete mode 100644 themes/gruvbox-drakenlords-grey.yaml delete mode 100644 themes/gruvbox-drakenlords-semi-dark.yaml delete mode 100644 themes/gruvbox-ish-dark-hard.yaml delete mode 100644 themes/gruvbox-ish-dark-medium.yaml delete mode 100644 themes/gruvbox-ish-dark-soft.yaml delete mode 100644 themes/gruvbox-light-medium.yaml delete mode 100644 themes/gruvbox-light-soft.yaml delete mode 100644 themes/gruvbox-material-dark.yaml delete mode 100644 themes/gruvbox-material-flat-dark.yaml delete mode 100644 themes/gruvbox-material-flat-light.yaml delete mode 100644 themes/gruvbox-material-light.yaml delete mode 100644 themes/gruvbox-minor-dark-hard.yaml delete mode 100644 themes/gruvbox-minor-dark-medium.yaml delete mode 100644 themes/gruvbox-minor-dark-soft.yaml delete mode 100644 themes/gruvbox-minor-light-hard.yaml delete mode 100644 themes/gruvbox-minor-light-medium.yaml delete mode 100644 themes/gruvbox-minor-light-soft.yaml delete mode 100644 themes/gruvdark-gbm.yaml delete mode 100644 themes/gruvdark-tokyo.yaml delete mode 100644 themes/gruvdark.yaml delete mode 100644 themes/gumua.yaml delete mode 100644 themes/gustavoglins.yaml delete mode 100644 themes/gyomei-himejima.yaml delete mode 100644 themes/hack-and-lima.yaml delete mode 100644 themes/hack-electron.yaml delete mode 100644 themes/hacker-x.yaml delete mode 100644 themes/hacker.yaml delete mode 100644 themes/hackpot-batman-vs-joker-dark.yaml delete mode 100644 themes/hackpot-batman-vs-joker.yaml delete mode 100644 themes/hackpot-dark-knight.yaml delete mode 100644 themes/hackpot-darker-knight.yaml delete mode 100644 themes/hackpot-garden-dark.yaml delete mode 100644 themes/hackpot-garden-of-atlantis.yaml delete mode 100644 themes/hackpot-garden-purple-haze.yaml delete mode 100644 themes/hackpot-garden.yaml delete mode 100644 themes/hackpot-muddy-garden.yaml delete mode 100644 themes/hackpot-poisoned-garden.yaml delete mode 100644 themes/haidark-two.yaml delete mode 100644 themes/halflife-contrast.yaml delete mode 100644 themes/halflife-light.yaml delete mode 100644 themes/halflife.yaml delete mode 100644 themes/halloween.yaml delete mode 100644 themes/hamidthedev-professional.yaml delete mode 100644 themes/hard-hacker-darker.yaml delete mode 100644 themes/hard-hacker-light.yaml delete mode 100644 themes/hard-hacker.yaml delete mode 100644 themes/harddark.yaml delete mode 100644 themes/harmonized-dark.yaml delete mode 100644 themes/harmonized-light-hc.yaml delete mode 100644 themes/harmonized-light.yaml delete mode 100644 themes/hashirama-senju-god-of-shinobi.yaml delete mode 100644 themes/hawaii-contrast.yaml delete mode 100644 themes/hawaii-light.yaml delete mode 100644 themes/hawaii.yaml delete mode 100644 themes/hc-zenburn.yaml delete mode 100644 themes/helios-solarized-dark.yaml delete mode 100644 themes/helios-solarized-light.yaml delete mode 100644 themes/hello-world-theme.yaml delete mode 100644 themes/heroku-contrast.yaml delete mode 100644 themes/heroku-light.yaml delete mode 100644 themes/heroku.yaml delete mode 100644 themes/hibiscus.yaml delete mode 100644 themes/high-alert-crimson.yaml delete mode 100644 themes/high-contrast-april-light-theme.yaml delete mode 100644 themes/high-contrast-april-theme.yaml delete mode 100644 themes/high-contrast-august-light-theme.yaml delete mode 100644 themes/high-contrast-february-dark-theme.yaml delete mode 100644 themes/high-contrast-february-light-theme-accessible.yaml delete mode 100644 themes/high-contrast-february-theme-accessible.yaml delete mode 100644 themes/high-contrast-july-light-theme.yaml delete mode 100644 themes/high-contrast-june-light-theme.yaml delete mode 100644 themes/high-contrast-march-dark-theme-accessible.yaml delete mode 100644 themes/high-contrast-march-dark-theme.yaml delete mode 100644 themes/high-contrast-march-light-theme-accessible.yaml delete mode 100644 themes/high-contrast-march-theme-accessible.yaml delete mode 100644 themes/high-contrast-may-light-theme.yaml delete mode 100644 themes/high-contrast-september-light-theme.yaml delete mode 100644 themes/high-tea.yaml delete mode 100644 themes/hive-contrast.yaml delete mode 100644 themes/hive-light.yaml delete mode 100644 themes/hive.yaml delete mode 100644 themes/homecooked-theme.yaml delete mode 100644 themes/honkai-star-rail-aventurine-dark.yaml delete mode 100644 themes/honkai-star-rail-aventurine.yaml delete mode 100644 themes/honkai-star-rail-cyrene-dark.yaml delete mode 100644 themes/honkai-star-rail-cyrene.yaml delete mode 100644 themes/honkai-star-rail-dan-heng-dark.yaml delete mode 100644 themes/honkai-star-rail-dan-heng.yaml delete mode 100644 themes/honkai-star-rail-firefly-dark.yaml delete mode 100644 themes/honkai-star-rail-firefly.yaml delete mode 100644 themes/honkai-star-rail-kafka-dark.yaml delete mode 100644 themes/honkai-star-rail-kafka.yaml delete mode 100644 themes/honkai-star-rail-march-7th-dark.yaml delete mode 100644 themes/honkai-star-rail-march-7th.yaml delete mode 100644 themes/honkai-star-rail-robin-dark.yaml delete mode 100644 themes/honkai-star-rail-robin-light-soft.yaml delete mode 100644 themes/honkai-star-rail-ruan-mei-dark.yaml delete mode 100644 themes/honkai-star-rail-ruan-mei.yaml delete mode 100644 themes/horizon-contrast.yaml delete mode 100644 themes/horizon-extended.yaml delete mode 100644 themes/horizon-light.yaml delete mode 100644 themes/horizon.yaml delete mode 100644 themes/horror-theme.yaml delete mode 100644 themes/hot-pink-theme.yaml delete mode 100644 themes/huacat-pink-dark.yaml delete mode 100644 themes/hub-light.yaml delete mode 100644 themes/hub.yaml delete mode 100644 themes/human-dark.yaml delete mode 100644 themes/human-high-contrast.yaml delete mode 100644 themes/human-light.yaml delete mode 100644 themes/human-low-light.yaml delete mode 100644 themes/human-soft.yaml delete mode 100644 themes/human-warm.yaml delete mode 100644 themes/hyle-night-night-color-theme.yaml delete mode 100644 themes/hyped-down-fork.yaml delete mode 100644 themes/hyped-down-theme.yaml delete mode 100644 themes/hyprluna.yaml delete mode 100644 themes/hyrule-contrast.yaml delete mode 100644 themes/hyrule-light.yaml delete mode 100644 themes/hyrule.yaml delete mode 100644 themes/i-night-color-theme.yaml delete mode 100644 themes/i-solarised-color-theme.yaml delete mode 100644 themes/i3-dark-custom-ii.yaml delete mode 100644 themes/i3-dark-github-dark.yaml delete mode 100644 themes/i3-panda-custom-iii.yaml delete mode 100644 themes/i3-panda-custom.yaml delete mode 100644 themes/ibm-carbon-gray-10.yaml delete mode 100644 themes/ibm-carbon-gray-100.yaml delete mode 100644 themes/ibm-carbon-gray-90.yaml delete mode 100644 themes/ibm-carbon-white.yaml delete mode 100644 themes/icattheme.yaml delete mode 100644 themes/ice.yaml delete mode 100644 themes/iceberg-contrast.yaml delete mode 100644 themes/iceberg-light.yaml delete mode 100644 themes/icon-group-dark.yaml delete mode 100644 themes/icon-group-light.yaml delete mode 100644 themes/idx-theme-dark.yaml delete mode 100644 themes/idx-xcode-dark-improved.yaml delete mode 100644 themes/illusion.yaml delete mode 100644 themes/iloveagents-azure-ai-foundry-dark.yaml delete mode 100644 themes/iloveagents-azure-ai-foundry-light.yaml delete mode 100644 themes/iloveagents-dark.yaml delete mode 100644 themes/iloveagents-light.yaml delete mode 100644 themes/ilyat-poimandres.yaml delete mode 100644 themes/imba-dark.yaml delete mode 100644 themes/imexoodeex.yaml delete mode 100644 themes/in-the-fog-dark.yaml delete mode 100644 themes/index.yaml delete mode 100644 themes/indie-dev.yaml delete mode 100644 themes/infinity-dark-contrast.yaml delete mode 100644 themes/inheritance.yaml delete mode 100644 themes/inovando-theme.yaml delete mode 100644 themes/insane.yaml delete mode 100644 themes/intellij-idea-islands-dark.yaml delete mode 100644 themes/intellij-idea-islands-light.yaml delete mode 100644 themes/intellij-idea-new-ui.yaml delete mode 100644 themes/intellij-light-color-theme.yaml delete mode 100644 themes/intelliyay-color-theme.yaml delete mode 100644 themes/intergalactic.yaml delete mode 100644 themes/into-the-unknow-fork.yaml delete mode 100644 themes/iris-pink.yaml delete mode 100644 themes/ironman-theme-dark.yaml delete mode 100644 themes/ironman-theme-light.yaml delete mode 100644 themes/irrus-float.yaml delete mode 100644 themes/isatoru.yaml delete mode 100644 themes/islands-light.yaml delete mode 100644 themes/isotope-contrast.yaml delete mode 100644 themes/isotope-light.yaml delete mode 100644 themes/isotope.yaml delete mode 100644 themes/iv-spade.yaml delete mode 100644 themes/ivalo-color-theme.yaml delete mode 100644 themes/iwa-s-code-theme.yaml delete mode 100644 themes/jackhammar.yaml delete mode 100644 themes/jammy-jellyfish.yaml delete mode 100644 themes/japanese-breakfast.yaml delete mode 100644 themes/jarvis-3d.yaml delete mode 100644 themes/jarvis.yaml delete mode 100644 themes/javascript-modern-dark.yaml delete mode 100644 themes/javascript-neon-dark.yaml delete mode 100644 themes/javascript-vibrant-dark.yaml delete mode 100644 themes/jaytheme.yaml delete mode 100644 themes/jcardenas.yaml delete mode 100644 themes/jeng-light.yaml delete mode 100644 themes/jetbrains-dark-theme.yaml delete mode 100644 themes/jetbrains-deep-dark-theme.yaml delete mode 100644 themes/jetbrains-ide-dark-theme.yaml delete mode 100644 themes/jetvibe-darcula.yaml delete mode 100644 themes/jewel-contrast.yaml delete mode 100644 themes/jewel-light.yaml delete mode 100644 themes/jewel.yaml delete mode 100644 themes/jingle-contrast.yaml delete mode 100644 themes/jingle-light.yaml delete mode 100644 themes/jingle.yaml delete mode 100644 themes/jker-purple-wave.yaml delete mode 100644 themes/jo-o-campos-theme.yaml delete mode 100644 themes/jojobii-s-colors.yaml delete mode 100644 themes/joker-contrast.yaml delete mode 100644 themes/joker-light.yaml delete mode 100644 themes/joker.yaml delete mode 100644 themes/jone-light.yaml delete mode 100644 themes/joyful-fork-fork.yaml delete mode 100644 themes/juicy-contrast.yaml delete mode 100644 themes/juicy-light.yaml delete mode 100644 themes/juicy.yaml delete mode 100644 themes/july-summer-vibes-dark-theme.yaml delete mode 100644 themes/jumper-contrast.yaml delete mode 100644 themes/jumper-light.yaml delete mode 100644 themes/jumper.yaml delete mode 100644 themes/just-code-already-fork.yaml delete mode 100644 themes/jwrdark.yaml delete mode 100644 themes/kadaxi-colors.yaml delete mode 100644 themes/kai-sa-white-fork.yaml delete mode 100644 themes/kailash-shaw-dark-theme.yaml delete mode 100644 themes/kaimandres.yaml delete mode 100644 themes/kaisa-dark.yaml delete mode 100644 themes/kali-linux-theme.yaml delete mode 100644 themes/kalidozza.yaml delete mode 100644 themes/kanagawa-dragon.yaml delete mode 100644 themes/kanagawa-lotus.yaml delete mode 100644 themes/kanagawa-paper.yaml delete mode 100644 themes/kanao.yaml delete mode 100644 themes/kanso-ink.yaml delete mode 100644 themes/kanso-mist.yaml delete mode 100644 themes/kanso-pearl.yaml delete mode 100644 themes/kaolin-light-theme-alt.yaml delete mode 100644 themes/kaolin-light-theme.yaml delete mode 100644 themes/karma.yaml delete mode 100644 themes/karrot-theme-classic.yaml delete mode 100644 themes/karry-color-golang.yaml delete mode 100644 themes/kary-pro-colors-dark.yaml delete mode 100644 themes/kary-pro-colors-light.yaml delete mode 100644 themes/katagawatheme.yaml delete mode 100644 themes/keen-contrast.yaml delete mode 100644 themes/keen-light.yaml delete mode 100644 themes/keen.yaml delete mode 100644 themes/kermit-fork.yaml delete mode 100644 themes/kesteren.yaml delete mode 100644 themes/khoaneostyle.yaml delete mode 100644 themes/kindfeeling.yaml delete mode 100644 themes/kinnitchi-neon-dark-modern.yaml delete mode 100644 themes/kintsugi-dark.yaml delete mode 100644 themes/kintsugi-light.yaml delete mode 100644 themes/kiranord.yaml delete mode 100644 themes/kismat-default-colors.yaml delete mode 100644 themes/kite-dark.yaml delete mode 100644 themes/kite-darker.yaml delete mode 100644 themes/kite-light.yaml delete mode 100644 themes/kittypower.yaml delete mode 100644 themes/kiwi-contrast.yaml delete mode 100644 themes/kiwi-light.yaml delete mode 100644 themes/kiwi.yaml delete mode 100644 themes/kiwisoup-fork.yaml delete mode 100644 themes/koala-codes-theme.yaml delete mode 100644 themes/kodex-arctic.yaml delete mode 100644 themes/kodex.yaml delete mode 100644 themes/koi-pond-dark.yaml delete mode 100644 themes/koi-pond-light.yaml delete mode 100644 themes/koki-dark.yaml delete mode 100644 themes/korbit.yaml delete mode 100644 themes/kripton.yaml delete mode 100644 themes/krishna-dark-elegant.yaml delete mode 100644 themes/kryptonite-theme.yaml delete mode 100644 themes/kurdish-vibrant-theme.yaml delete mode 100644 themes/kuro-sakura.yaml delete mode 100644 themes/kuroir-dark-01-crimson.yaml delete mode 100644 themes/kuroir-dark-02-vermilion.yaml delete mode 100644 themes/kuroir-dark-03-amber.yaml delete mode 100644 themes/kuroir-dark-04-goldenrod.yaml delete mode 100644 themes/kuroir-dark-06-chartreuse.yaml delete mode 100644 themes/kuroir-dark-07-fern.yaml delete mode 100644 themes/kuroir-dark-08-emerald.yaml delete mode 100644 themes/kuroir-dark-09-jade.yaml delete mode 100644 themes/kuroir-dark-11-aqua.yaml delete mode 100644 themes/kuroir-dark-14-cerulean.yaml delete mode 100644 themes/kuroir-dark-15-sky.yaml delete mode 100644 themes/kuroir-dark-18-indigo.yaml delete mode 100644 themes/kuroir-dark-20-amethyst.yaml delete mode 100644 themes/kuroir-dark-21-magenta.yaml delete mode 100644 themes/kuroir-dark-22-fuchsia.yaml delete mode 100644 themes/kuroir-dark-23-rose.yaml delete mode 100644 themes/kuroir-dark-24-coral.yaml delete mode 100644 themes/kuroir-light-03-amber.yaml delete mode 100644 themes/kuroir-light-07-fern.yaml delete mode 100644 themes/kuroir-light-09-jade.yaml delete mode 100644 themes/kuroir-light-12-teal.yaml delete mode 100644 themes/kuroir-light-15-sky.yaml delete mode 100644 themes/kuroir-light-18-indigo.yaml delete mode 100644 themes/kuroir-light-19-violet.yaml delete mode 100644 themes/kuroir-light-23-rose.yaml delete mode 100644 themes/kuroir-light-24-coral.yaml delete mode 100644 themes/kyanite.yaml delete mode 100644 themes/kyojuro-rengoku.yaml delete mode 100644 themes/kyorazo-dark-theme.yaml delete mode 100644 themes/lackluster-dark.yaml delete mode 100644 themes/lackluster.yaml delete mode 100644 themes/laracasts-contrast.yaml delete mode 100644 themes/laracasts-light.yaml delete mode 100644 themes/laracasts.yaml delete mode 100644 themes/laravel-contrast.yaml delete mode 100644 themes/laravel-light.yaml delete mode 100644 themes/laravel.yaml delete mode 100644 themes/lauds.yaml delete mode 100644 themes/lavanda.yaml delete mode 100644 themes/lavender-dark-theme.yaml delete mode 100644 themes/lavender-light-theme.yaml delete mode 100644 themes/lavender-light.yaml delete mode 100644 themes/lavender.yaml delete mode 100644 themes/lazzaretti-plenatech.yaml delete mode 100644 themes/lazzaretti-win11.yaml delete mode 100644 themes/leaf-black.yaml delete mode 100644 themes/learn-with-sumit-theme.yaml delete mode 100644 themes/legacy-contrast.yaml delete mode 100644 themes/legacy-light.yaml delete mode 100644 themes/legendary-attack-of-blue.yaml delete mode 100644 themes/legendary-dark.yaml delete mode 100644 themes/lesbian.yaml delete mode 100644 themes/let-s-code.yaml delete mode 100644 themes/lht.yaml delete mode 100644 themes/lichen-contrast.yaml delete mode 100644 themes/lichen-light.yaml delete mode 100644 themes/lichen.yaml delete mode 100644 themes/light-code-with-bars.yaml delete mode 100644 themes/light-decay.yaml delete mode 100644 themes/light-gruvdark-mono.yaml delete mode 100644 themes/light-gruvdark-tokyo.yaml delete mode 100644 themes/light-gruvdark.yaml delete mode 100644 themes/light-jade.yaml delete mode 100644 themes/lighthouse-in-the-dark-boon-island-dark.yaml delete mode 100644 themes/lighthouse-in-the-dark-boon-island-light.yaml delete mode 100644 themes/lighthouse-in-the-dark-rose-island-dark.yaml delete mode 100644 themes/lighthouse-in-the-dark-rose-island-light.yaml delete mode 100644 themes/lightning-dark.yaml delete mode 100644 themes/lightning-light.yaml delete mode 100644 themes/lightning-material-day.yaml delete mode 100644 themes/lightning-material-evening.yaml delete mode 100644 themes/lightning-material-midnight.yaml delete mode 100644 themes/lightning-material-soft.yaml delete mode 100644 themes/lightning-soft-dark.yaml delete mode 100644 themes/lightning-soft.yaml delete mode 100644 themes/lightning.yaml delete mode 100644 themes/lilac.yaml delete mode 100644 themes/linkarzu-vscode-theme.yaml delete mode 100644 themes/lino-dark-ruby.yaml delete mode 100644 themes/liquid-ray-light.yaml delete mode 100644 themes/liquid-ray-soft-pink.yaml delete mode 100644 themes/liquid-ray.yaml delete mode 100644 themes/little-league-dark.yaml delete mode 100644 themes/little-league-darker.yaml delete mode 100644 themes/little-league-light.yaml delete mode 100644 themes/lofi.yaml delete mode 100644 themes/loki-official-classic.yaml delete mode 100644 themes/loki-official-kang-edition.yaml delete mode 100644 themes/loki.yaml delete mode 100644 themes/lonely.yaml delete mode 100644 themes/lonus-dark.yaml delete mode 100644 themes/lookify-dark-mode.yaml delete mode 100644 themes/lookify-light-mode.yaml delete mode 100644 themes/lotus-dark.yaml delete mode 100644 themes/lotus-light.yaml delete mode 100644 themes/loyal-contrast.yaml delete mode 100644 themes/loyal-light.yaml delete mode 100644 themes/loyal.yaml delete mode 100644 themes/luau-starlit.yaml delete mode 100644 themes/lucifer-terminal-dark-hacker-edition.yaml delete mode 100644 themes/luiz-dark-theme.yaml delete mode 100644 themes/luke-skywriter.yaml delete mode 100644 themes/luminashade-amethyst.yaml delete mode 100644 themes/lumineclipse.yaml delete mode 100644 themes/lumon-theme.yaml delete mode 100644 themes/lumos-light-soft.yaml delete mode 100644 themes/lunar-eclipse-golden-hour.yaml delete mode 100644 themes/lunar-eclipse-light.yaml delete mode 100644 themes/lunar-eclipse.yaml delete mode 100644 themes/lunar-pink-satellite.yaml delete mode 100644 themes/lunar-pink.yaml delete mode 100644 themes/lunar-theme.yaml delete mode 100644 themes/lunar-vscode.yaml delete mode 100644 themes/lunar.yaml delete mode 100644 themes/lyra-s-vega.yaml delete mode 100644 themes/machine.yaml delete mode 100644 themes/macos-classic-dark.yaml delete mode 100644 themes/macos-classic-light.yaml delete mode 100644 themes/magnolia.yaml delete mode 100644 themes/magnus-dark-theme.yaml delete mode 100644 themes/mainframe-terminal.yaml delete mode 100644 themes/maisum-xcode-dark.yaml delete mode 100644 themes/mak1na-theme.yaml delete mode 100644 themes/make-apps.yaml delete mode 100644 themes/man-dark-stone.yaml delete mode 100644 themes/maple-dark.yaml delete mode 100644 themes/maple-light.yaml delete mode 100644 themes/marcial-theme.yaml delete mode 100644 themes/mariana-light.yaml delete mode 100644 themes/mariana-pro.yaml delete mode 100644 themes/mariana-refined.yaml delete mode 100644 themes/marnic1505.yaml delete mode 100644 themes/maroza-cyber-chill.yaml delete mode 100644 themes/maroza-dark-theme.yaml delete mode 100644 themes/maroza-light-theme.yaml delete mode 100644 themes/maroza-soothing-aqua.yaml delete mode 100644 themes/maroza-zen-pro.yaml delete mode 100644 themes/matcha-pink.yaml delete mode 100644 themes/matchaneco.yaml delete mode 100644 themes/material-dark-color-theme.yaml delete mode 100644 themes/material-neutral.yaml delete mode 100644 themes/material-rainbow.yaml delete mode 100644 themes/material-theme-dark.yaml delete mode 100644 themes/material-theme-dhc-mix-in-pycharm-darcula-theme.yaml delete mode 100644 themes/material-theme-twilight-wave-ocean-ui.yaml delete mode 100644 themes/material.yaml delete mode 100644 themes/materialdarker-monokaist3.yaml delete mode 100644 themes/matrix-hacking-dark-theme.yaml delete mode 100644 themes/matrix-reloaded-locked.yaml delete mode 100644 themes/matrix-reloaded.yaml delete mode 100644 themes/matte-atelier-ivory.yaml delete mode 100644 themes/matte-atelier-obsidian-colorblind.yaml delete mode 100644 themes/matte-atelier-obsidian-high-contrast.yaml delete mode 100644 themes/matte-atelier-obsidian.yaml delete mode 100644 themes/matte-atelier-ros.yaml delete mode 100644 themes/matte-atelier-sapphire.yaml delete mode 100644 themes/matteric-dark-default.yaml delete mode 100644 themes/maus-dark.yaml delete mode 100644 themes/mauve-contrast.yaml delete mode 100644 themes/mauve-light.yaml delete mode 100644 themes/mauve.yaml delete mode 100644 themes/mayukai.yaml delete mode 100644 themes/md-abdur-rakib.yaml delete mode 100644 themes/meadow-whisper.yaml delete mode 100644 themes/meaow-dark.yaml delete mode 100644 themes/meinanziiii.yaml delete mode 100644 themes/melange-redux-light.yaml delete mode 100644 themes/mellow-contrast.yaml delete mode 100644 themes/mellow-light.yaml delete mode 100644 themes/meoceanemerald.yaml delete mode 100644 themes/meridian-neutral.yaml delete mode 100644 themes/meridian.yaml delete mode 100644 themes/meshvoid-light.yaml delete mode 100644 themes/meshvoid.yaml delete mode 100644 themes/metropolis-sky-scape.yaml delete mode 100644 themes/miami-vice.yaml delete mode 100644 themes/miasma-color-theme.yaml delete mode 100644 themes/midas-touch.yaml delete mode 100644 themes/middle-field-canvas.yaml delete mode 100644 themes/midnight-city.yaml delete mode 100644 themes/midnight-mirage.yaml delete mode 100644 themes/midnight-moon-eclipse.yaml delete mode 100644 themes/midnight-moon-ukiyo.yaml delete mode 100644 themes/midnight-moon.yaml delete mode 100644 themes/midnight-pastel.yaml delete mode 100644 themes/midnight-pro.yaml delete mode 100644 themes/midnight-purple.yaml delete mode 100644 themes/midnight-shadow-fork.yaml delete mode 100644 themes/midnight-ukiyo.yaml delete mode 100644 themes/mike-sources-hacker.yaml delete mode 100644 themes/mikestheme-edited-gulajavaministudio-mayukai-theme.yaml delete mode 100644 themes/miku-code-fusion-light.yaml delete mode 100644 themes/miku-code-light.yaml delete mode 100644 themes/miku-code.yaml delete mode 100644 themes/military-fork.yaml delete mode 100644 themes/milkyway.yaml delete mode 100644 themes/min-gruvbox.yaml delete mode 100644 themes/mineral-forest.yaml delete mode 100644 themes/minimal-44-pro.yaml delete mode 100644 themes/minimal-44.yaml delete mode 100644 themes/minimal-dark-fork.yaml delete mode 100644 themes/minimal-monochrome-dark.yaml delete mode 100644 themes/minimal-monochrome-ink-dark.yaml delete mode 100644 themes/minimal-monochrome-ink-light.yaml delete mode 100644 themes/minimal-monochrome-light.yaml delete mode 100644 themes/minimal-monochrome-pastel-dawn.yaml delete mode 100644 themes/minimal-monochrome-pastel-light.yaml delete mode 100644 themes/minimal-monochrome-slate-dark.yaml delete mode 100644 themes/mink-dark-theme.yaml delete mode 100644 themes/minokai-kalel.yaml delete mode 100644 themes/mint-dark.yaml delete mode 100644 themes/mintchoc-contrast.yaml delete mode 100644 themes/mintchoc-light.yaml delete mode 100644 themes/mintchoc.yaml delete mode 100644 themes/mirai.yaml delete mode 100644 themes/mist-theme.yaml delete mode 100644 themes/misty-blue.yaml delete mode 100644 themes/mitsuri-kanroji.yaml delete mode 100644 themes/mixed-solarized-light.yaml delete mode 100644 themes/modern-retro.yaml delete mode 100644 themes/modernui-fork.yaml delete mode 100644 themes/modest-pink.yaml delete mode 100644 themes/moegi-black-zen.yaml delete mode 100644 themes/moegi-black.yaml delete mode 100644 themes/moegi-dark.yaml delete mode 100644 themes/moegi-dawn.yaml delete mode 100644 themes/moegi-iris.yaml delete mode 100644 themes/moegi-light.yaml delete mode 100644 themes/moegi-space.yaml delete mode 100644 themes/molokai-darker.yaml delete mode 100644 themes/monaco-paulsevere-color-theme.yaml delete mode 100644 themes/monet-impressionism.yaml delete mode 100644 themes/mono-atom.yaml delete mode 100644 themes/mono-dark.yaml delete mode 100644 themes/mono-white.yaml delete mode 100644 themes/monochromator-dark-plain.yaml delete mode 100644 themes/monochromator-light-plain.yaml delete mode 100644 themes/monochrome-dark-amplified.yaml delete mode 100644 themes/monochrome-dark-cool-gray.yaml delete mode 100644 themes/monochrome-dark-indigo.yaml delete mode 100644 themes/monochrome-dark-subtle.yaml delete mode 100644 themes/monochrome-dark.yaml delete mode 100644 themes/monochrome-github-edition.yaml delete mode 100644 themes/monochrome-light-amplified.yaml delete mode 100644 themes/monochrome-light-cool-gray.yaml delete mode 100644 themes/monochrome-light-indigo.yaml delete mode 100644 themes/monochrome-light-subtle.yaml delete mode 100644 themes/monochrome-light.yaml delete mode 100644 themes/monocious-color-theme.yaml delete mode 100644 themes/monocr.yaml delete mode 100644 themes/monokai-classic.yaml delete mode 100644 themes/monokai-dark-green.yaml delete mode 100644 themes/monokai-dark.yaml delete mode 100644 themes/monokai-hc-color-theme.yaml delete mode 100644 themes/monokai-japan-color-theme.yaml delete mode 100644 themes/monokai-minimal.yaml delete mode 100644 themes/monokai-ocean-color-theme.yaml delete mode 100644 themes/monokai-okean.yaml delete mode 100644 themes/monokai-pro.yaml delete mode 100644 themes/monokai-red.yaml delete mode 100644 themes/monokai-semantic.yaml delete mode 100644 themes/monokai-seti-light.yaml delete mode 100644 themes/monokai-unified.yaml delete mode 100644 themes/monokard.yaml delete mode 100644 themes/monokuro-amber.yaml delete mode 100644 themes/monos-blac.yaml delete mode 100644 themes/monospace-dark.yaml delete mode 100644 themes/monospace-light.yaml delete mode 100644 themes/monove-fork.yaml delete mode 100644 themes/monte-cristo-theme.yaml delete mode 100644 themes/monzo-contrast.yaml delete mode 100644 themes/monzo-light.yaml delete mode 100644 themes/monzo.yaml delete mode 100644 themes/moonbloom-theme-official.yaml delete mode 100644 themes/moonlight-ii.yaml delete mode 100644 themes/moonlight.yaml delete mode 100644 themes/moonspell-northern-lights.yaml delete mode 100644 themes/morass-contrast.yaml delete mode 100644 themes/morass-light.yaml delete mode 100644 themes/morass.yaml delete mode 100644 themes/morgan-codes.yaml delete mode 100644 themes/mosaic.yaml delete mode 100644 themes/mountain-theme.yaml delete mode 100644 themes/msquare-dark.yaml delete mode 100644 themes/mt-doom-theme.yaml delete mode 100644 themes/mud-contrast.yaml delete mode 100644 themes/mud-light.yaml delete mode 100644 themes/mud.yaml delete mode 100644 themes/muromachi.yaml delete mode 100644 themes/murora-light-lite.yaml delete mode 100644 themes/my-first-visual-studio-theme.yaml delete mode 100644 themes/my-hero-academia-deku-plus-ultra.yaml delete mode 100644 themes/myvscode.yaml delete mode 100644 themes/nairobi-dark.yaml delete mode 100644 themes/narixius-one-dark.yaml delete mode 100644 themes/naruto-akatsuki.yaml delete mode 100644 themes/naruto-hinata-hyuga-byakugan-vision.yaml delete mode 100644 themes/naruto-hokage-dawn.yaml delete mode 100644 themes/naruto-hokage-orange.yaml delete mode 100644 themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml delete mode 100644 themes/naruto-jiraiya-gallant-toad-sage.yaml delete mode 100644 themes/naruto-kakashi-copy-ninja.yaml delete mode 100644 themes/naruto-kurama-nine-tails.yaml delete mode 100644 themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml delete mode 100644 themes/naruto-might-guy-gate-of-death-madara-battle.yaml delete mode 100644 themes/naruto-might-guy-gates-of-youth.yaml delete mode 100644 themes/naruto-minato-namikaze-yellow-flash.yaml delete mode 100644 themes/naruto-pain-nagato-rinnegan-god.yaml delete mode 100644 themes/naruto-sage-mode.yaml delete mode 100644 themes/naruto-sakura-haruno-cherry-blossom-storm.yaml delete mode 100644 themes/naruto-sasuke-uchiha-sharingan.yaml delete mode 100644 themes/naruto-shikamaru-nara-shadow-possession.yaml delete mode 100644 themes/naruto-shinobi-night.yaml delete mode 100644 themes/natasha-theme.yaml delete mode 100644 themes/navy-nights-theme.yaml delete mode 100644 themes/nb-monochrome-dark.yaml delete mode 100644 themes/nebula-color-theme.yaml delete mode 100644 themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml delete mode 100644 themes/nebula-nights.yaml delete mode 100644 themes/nebula-pro-dark.yaml delete mode 100644 themes/nebularomantic.yaml delete mode 100644 themes/necessity-aaa-light.yaml delete mode 100644 themes/necessity-aaa.yaml delete mode 100644 themes/neo-hacker-soft-premium.yaml delete mode 100644 themes/neo-nuxt-matte.yaml delete mode 100644 themes/neo-seoul-dark.yaml delete mode 100644 themes/neo-seoul-light.yaml delete mode 100644 themes/neo-vscode-theme.yaml delete mode 100644 themes/neon-color-dark-theme.yaml delete mode 100644 themes/neon-cyber.yaml delete mode 100644 themes/neon-cyberpunk.yaml delete mode 100644 themes/neon-dream-code.yaml delete mode 100644 themes/neon-dreams.yaml delete mode 100644 themes/neon-glow.yaml delete mode 100644 themes/neon-green-light.yaml delete mode 100644 themes/neon-green-midnight.yaml delete mode 100644 themes/neon-matrix.yaml delete mode 100644 themes/neon-ocean.yaml delete mode 100644 themes/neon-palette-themes-red.yaml delete mode 100644 themes/neon-shimmer-amethyst-core.yaml delete mode 100644 themes/neon-shimmer-bubblegum-punk.yaml delete mode 100644 themes/neon-shimmer-crimson-drive.yaml delete mode 100644 themes/neon-shimmer.yaml delete mode 100644 themes/neon-sunset.yaml delete mode 100644 themes/neon-synthwave.yaml delete mode 100644 themes/neon-theme.yaml delete mode 100644 themes/neon-violet.yaml delete mode 100644 themes/neonite.yaml delete mode 100644 themes/neovim-theme.yaml delete mode 100644 themes/nestjs-codes.yaml delete mode 100644 themes/netbeans-harmonized.yaml delete mode 100644 themes/netlify-theme.yaml delete mode 100644 themes/netlify.yaml delete mode 100644 themes/neutralvi.yaml delete mode 100644 themes/nevo-pro.yaml delete mode 100644 themes/new-england-light-theme.yaml delete mode 100644 themes/new-moon.yaml delete mode 100644 themes/newera-dark-theme.yaml delete mode 100644 themes/newrailscasts.yaml delete mode 100644 themes/newton-contrast.yaml delete mode 100644 themes/newton-light.yaml delete mode 100644 themes/newton.yaml delete mode 100644 themes/nextgen-terminal.yaml delete mode 100644 themes/ngc-aurora-dawn.yaml delete mode 100644 themes/ngc-aurora-night.yaml delete mode 100644 themes/ngc-forest-retreat.yaml delete mode 100644 themes/ngc-midnight-base.yaml delete mode 100644 themes/nibelung-dark.yaml delete mode 100644 themes/nibelung.yaml delete mode 100644 themes/nice-dark.yaml delete mode 100644 themes/nicely-neon.yaml delete mode 100644 themes/night-aurora.yaml delete mode 100644 themes/night-blue-high.yaml delete mode 100644 themes/night-dragon.yaml delete mode 100644 themes/night-howl.yaml delete mode 100644 themes/night-owl-oled-dim-100.yaml delete mode 100644 themes/night-owl-oled-dim-75.yaml delete mode 100644 themes/night-owl-oled-dim-80.yaml delete mode 100644 themes/night-owl-oled-dim-85.yaml delete mode 100644 themes/night-owl-oled-dim-90.yaml delete mode 100644 themes/night-owl-oled-dim-95.yaml delete mode 100644 themes/night-rainbow-darker.yaml delete mode 100644 themes/night-rainbow-purple-haze.yaml delete mode 100644 themes/night-rainbow.yaml delete mode 100644 themes/night-zen.yaml delete mode 100644 themes/nightcall.yaml delete mode 100644 themes/nightfox.yaml delete mode 100644 themes/nightnode.yaml delete mode 100644 themes/nightshade-venom.yaml delete mode 100644 themes/nighty-purple-color-theme.yaml delete mode 100644 themes/nigthwolf-color-theme.yaml delete mode 100644 themes/nikso-vscode-theme-dark.yaml delete mode 100644 themes/nimbus-mint-light.yaml delete mode 100644 themes/nix.yaml delete mode 100644 themes/no-not-the-lava-it-burns-ahhh-fork.yaml delete mode 100644 themes/noctis-high-contrast.yaml delete mode 100644 themes/noctis-lux-dean-s-version.yaml delete mode 100644 themes/noir-dark.yaml delete mode 100644 themes/noir-dracula.yaml delete mode 100644 themes/noir-essence-dark.yaml delete mode 100644 themes/noir-essence-light.yaml delete mode 100644 themes/noir-light.yaml delete mode 100644 themes/noir-outrun.yaml delete mode 100644 themes/noir-owl.yaml delete mode 100644 themes/noir-poimandres-black.yaml delete mode 100644 themes/noir-poimandres-dark.yaml delete mode 100644 themes/noir-poimandres-darker.yaml delete mode 100644 themes/noir-poimandres.yaml delete mode 100644 themes/noir-ros-pine-grey.yaml delete mode 100644 themes/noir-ros-pine-moon-grey.yaml delete mode 100644 themes/noir-tokyo-night-black.yaml delete mode 100644 themes/noir-tokyo-night.yaml delete mode 100644 themes/nord-bunker.yaml delete mode 100644 themes/nord-dark-contrast.yaml delete mode 100644 themes/nord-dark-pro.yaml delete mode 100644 themes/nord-fountain.yaml delete mode 100644 themes/nord-palette.yaml delete mode 100644 themes/nordic.yaml delete mode 100644 themes/nordicdark.yaml delete mode 100644 themes/nosk-theme.yaml delete mode 100644 themes/notesocean-vs-code-theme.yaml delete mode 100644 themes/nothing-os-dark.yaml delete mode 100644 themes/nothing-os-gray.yaml delete mode 100644 themes/notthevimguytheme.yaml delete mode 100644 themes/nova.yaml delete mode 100644 themes/noxis.yaml delete mode 100644 themes/nushu-classic.yaml delete mode 100644 themes/nushu-dark.yaml delete mode 100644 themes/nushu-light.yaml delete mode 100644 themes/nutty-dark-theme.yaml delete mode 100644 themes/nutty-light-theme.yaml delete mode 100644 themes/nuuvo-space-max.yaml delete mode 100644 themes/nuxt-blend-bleach-color-theme.yaml delete mode 100644 themes/nuxt-blend.yaml delete mode 100644 themes/nuxtian-deep-space.yaml delete mode 100644 themes/nuxtian-light.yaml delete mode 100644 themes/nuxtian-nitro.yaml delete mode 100644 themes/nuxtian.yaml delete mode 100644 themes/nuxtiansololevel.yaml delete mode 100644 themes/nuxtvite.yaml delete mode 100644 themes/nuxtvoid.yaml delete mode 100644 themes/nw21.yaml delete mode 100644 themes/ny-city-lights-theme.yaml delete mode 100644 themes/oak-dark.yaml delete mode 100644 themes/oak.yaml delete mode 100644 themes/obanai-iguro.yaml delete mode 100644 themes/obsidian-wine.yaml delete mode 100644 themes/obsidianite-amoled.yaml delete mode 100644 themes/obsidianite.yaml delete mode 100644 themes/oc-7-light.yaml delete mode 100644 themes/ocean-breeze.yaml delete mode 100644 themes/oceanic-gradient.yaml delete mode 100644 themes/oceanic-sunset.yaml delete mode 100644 themes/office-dark.yaml delete mode 100644 themes/office-light.yaml delete mode 100644 themes/office-paper.yaml delete mode 100644 themes/ohled-aliceblue.yaml delete mode 100644 themes/ohled-antiquewhite.yaml delete mode 100644 themes/ohled-aquamarine.yaml delete mode 100644 themes/ohled-azure.yaml delete mode 100644 themes/ohled-beige.yaml delete mode 100644 themes/ohled-bisque.yaml delete mode 100644 themes/ohled-blanchedalmond.yaml delete mode 100644 themes/ohled-blue.yaml delete mode 100644 themes/ohled-blueviolet.yaml delete mode 100644 themes/ohled-brown.yaml delete mode 100644 themes/ohled-burlywood.yaml delete mode 100644 themes/ohled-cadetblue.yaml delete mode 100644 themes/ohled-chartreuse.yaml delete mode 100644 themes/ohled-chocolate.yaml delete mode 100644 themes/ohled-coral.yaml delete mode 100644 themes/ohled-cornflowerblue.yaml delete mode 100644 themes/ohled-cornsilk.yaml delete mode 100644 themes/ohled-crimson.yaml delete mode 100644 themes/ohled-cyan.yaml delete mode 100644 themes/ohled-darkblue.yaml delete mode 100644 themes/ohled-darkcyan.yaml delete mode 100644 themes/ohled-darkgoldenrod.yaml delete mode 100644 themes/ohled-darkgray.yaml delete mode 100644 themes/ohled-darkgreen.yaml delete mode 100644 themes/ohled-darkkhaki.yaml delete mode 100644 themes/ohled-darkmagenta.yaml delete mode 100644 themes/ohled-darkolivegreen.yaml delete mode 100644 themes/ohled-darkorange.yaml delete mode 100644 themes/ohled-darkorchid.yaml delete mode 100644 themes/ohled-darkred.yaml delete mode 100644 themes/ohled-darksalmon.yaml delete mode 100644 themes/ohled-darkseagreen.yaml delete mode 100644 themes/ohled-darkslateblue.yaml delete mode 100644 themes/ohled-darkslategray.yaml delete mode 100644 themes/ohled-darkturquoise.yaml delete mode 100644 themes/ohled-darkviolet.yaml delete mode 100644 themes/ohled-deeppink.yaml delete mode 100644 themes/ohled-deepskyblue.yaml delete mode 100644 themes/ohled-dimgray.yaml delete mode 100644 themes/ohled-dodgerblue.yaml delete mode 100644 themes/ohled-firebrick.yaml delete mode 100644 themes/ohled-forestgreen.yaml delete mode 100644 themes/ohled-gainsboro.yaml delete mode 100644 themes/ohled-ghostwhite.yaml delete mode 100644 themes/ohled-gold.yaml delete mode 100644 themes/ohled-goldenrod.yaml delete mode 100644 themes/ohled-gray.yaml delete mode 100644 themes/ohled-green.yaml delete mode 100644 themes/ohled-greenyellow.yaml delete mode 100644 themes/ohled-honeydew.yaml delete mode 100644 themes/ohled-hotpink.yaml delete mode 100644 themes/ohled-indianred.yaml delete mode 100644 themes/ohled-indigo.yaml delete mode 100644 themes/ohled-ivory.yaml delete mode 100644 themes/ohled-khaki.yaml delete mode 100644 themes/ohled-lavender.yaml delete mode 100644 themes/ohled-lavenderblush.yaml delete mode 100644 themes/ohled-lawngreen.yaml delete mode 100644 themes/ohled-lemonchiffon.yaml delete mode 100644 themes/ohled-lightblue.yaml delete mode 100644 themes/ohled-lightcoral.yaml delete mode 100644 themes/ohled-lightcyan.yaml delete mode 100644 themes/ohled-lightgoldenrodyellow.yaml delete mode 100644 themes/ohled-lightgray.yaml delete mode 100644 themes/ohled-lightgreen.yaml delete mode 100644 themes/ohled-lightpink.yaml delete mode 100644 themes/ohled-lightsalmon.yaml delete mode 100644 themes/ohled-lightseagreen.yaml delete mode 100644 themes/ohled-lightskyblue.yaml delete mode 100644 themes/ohled-lightslategray.yaml delete mode 100644 themes/ohled-lightsteelblue.yaml delete mode 100644 themes/ohled-lightyellow.yaml delete mode 100644 themes/ohled-lime.yaml delete mode 100644 themes/ohled-limegreen.yaml delete mode 100644 themes/ohled-linen.yaml delete mode 100644 themes/ohled-magenta.yaml delete mode 100644 themes/ohled-maroon.yaml delete mode 100644 themes/ohled-mediumaquamarine.yaml delete mode 100644 themes/ohled-mediumblue.yaml delete mode 100644 themes/ohled-mediumorchid.yaml delete mode 100644 themes/ohled-mediumpurple.yaml delete mode 100644 themes/ohled-mediumseagreen.yaml delete mode 100644 themes/ohled-mediumslateblue.yaml delete mode 100644 themes/ohled-mediumspringgreen.yaml delete mode 100644 themes/ohled-mediumturquoise.yaml delete mode 100644 themes/ohled-mediumvioletred.yaml delete mode 100644 themes/ohled-midnightblue.yaml delete mode 100644 themes/ohled-mintcream.yaml delete mode 100644 themes/ohled-mistyrose.yaml delete mode 100644 themes/ohled-moccasin.yaml delete mode 100644 themes/ohled-navajowhite.yaml delete mode 100644 themes/ohled-navy.yaml delete mode 100644 themes/ohled-oldlace.yaml delete mode 100644 themes/ohled-olive.yaml delete mode 100644 themes/ohled-olivedrab.yaml delete mode 100644 themes/ohled-orange.yaml delete mode 100644 themes/ohled-orangered.yaml delete mode 100644 themes/ohled-orchid.yaml delete mode 100644 themes/ohled-palegoldenrod.yaml delete mode 100644 themes/ohled-palegreen.yaml delete mode 100644 themes/ohled-paleturquoise.yaml delete mode 100644 themes/ohled-palevioletred.yaml delete mode 100644 themes/ohled-papayawhip.yaml delete mode 100644 themes/ohled-peachpuff.yaml delete mode 100644 themes/ohled-peru.yaml delete mode 100644 themes/ohled-pink.yaml delete mode 100644 themes/ohled-plum.yaml delete mode 100644 themes/ohled-powderblue.yaml delete mode 100644 themes/ohled-purple.yaml delete mode 100644 themes/ohled-rebeccapurple.yaml delete mode 100644 themes/ohled-red.yaml delete mode 100644 themes/ohled-rosybrown.yaml delete mode 100644 themes/ohled-royalblue.yaml delete mode 100644 themes/ohled-saddlebrown.yaml delete mode 100644 themes/ohled-salmon.yaml delete mode 100644 themes/ohled-sandybrown.yaml delete mode 100644 themes/ohled-seagreen.yaml delete mode 100644 themes/ohled-seashell.yaml delete mode 100644 themes/ohled-sienna.yaml delete mode 100644 themes/ohled-silver.yaml delete mode 100644 themes/ohled-skyblue.yaml delete mode 100644 themes/ohled-slateblue.yaml delete mode 100644 themes/ohled-slategray.yaml delete mode 100644 themes/ohled-snow.yaml delete mode 100644 themes/ohled-springgreen.yaml delete mode 100644 themes/ohled-steelblue.yaml delete mode 100644 themes/ohled-tan.yaml delete mode 100644 themes/ohled-teal.yaml delete mode 100644 themes/ohled-thistle.yaml delete mode 100644 themes/ohled-tomato.yaml delete mode 100644 themes/ohled-turquoise.yaml delete mode 100644 themes/ohled-violet.yaml delete mode 100644 themes/ohled-wheat.yaml delete mode 100644 themes/ohled-white.yaml delete mode 100644 themes/ohled-whitesmoke.yaml delete mode 100644 themes/ohled-yellow.yaml delete mode 100644 themes/ohled-yellowgreen.yaml delete mode 100644 themes/ohled-yelloworange.yaml delete mode 100644 themes/ohled-yellowpink.yaml delete mode 100644 themes/ohled-yellowpurple.yaml delete mode 100644 themes/oldschool-terminal-green.yaml delete mode 100644 themes/omni-customized-dark.yaml delete mode 100644 themes/omni-customized.yaml delete mode 100644 themes/omni-dracula-dark.yaml delete mode 100644 themes/omni-dracula-theme-tradicional-contrast.yaml delete mode 100644 themes/omni-dracula-theme-tradicional.yaml delete mode 100644 themes/omni-dracula-theme.yaml delete mode 100644 themes/omni-dracula-wine-theme-tradicional.yaml delete mode 100644 themes/omni-monokai-dark.yaml delete mode 100644 themes/omni-pro.yaml delete mode 100644 themes/omni.yaml delete mode 100644 themes/omnisexual.yaml delete mode 100644 themes/omnitrix-code.yaml delete mode 100644 themes/one-dark-night-blue-boy.yaml delete mode 100644 themes/one-dark-night-eye-care.yaml delete mode 100644 themes/one-dark-night-minimalist.yaml delete mode 100644 themes/one-dark-night-professional.yaml delete mode 100644 themes/one-dark-pro-theme.yaml delete mode 100644 themes/one-dark-pro.yaml delete mode 100644 themes/one-dark.yaml delete mode 100644 themes/one-darkpuccin-night.yaml delete mode 100644 themes/one-darkpuccin-vivid.yaml delete mode 100644 themes/one-hunter-theme.yaml delete mode 100644 themes/one-light-italic.yaml delete mode 100644 themes/one-monokai-light.yaml delete mode 100644 themes/one-monokai-python-flat.yaml delete mode 100644 themes/one-piece-dark.yaml delete mode 100644 themes/one-piece-high-contrast.yaml delete mode 100644 themes/one-piece-light.yaml delete mode 100644 themes/one-piece-straw-hat-red.yaml delete mode 100644 themes/onebitcode-theme.yaml delete mode 100644 themes/onedark-nvim.yaml delete mode 100644 themes/onedark-pro-suhayb-s-version-v2.yaml delete mode 100644 themes/onemonokai80s.yaml delete mode 100644 themes/onyx-theme-color.yaml delete mode 100644 themes/oolory-dark-color-theme.yaml delete mode 100644 themes/oracle-vision.yaml delete mode 100644 themes/orago-s-warm-theme.yaml delete mode 100644 themes/orangey-darker-1.yaml delete mode 100644 themes/orangey-darker-2.yaml delete mode 100644 themes/orangey-lighter-1.yaml delete mode 100644 themes/orangey-lighter-2.yaml delete mode 100644 themes/orangey.yaml delete mode 100644 themes/orca.yaml delete mode 100644 themes/origamid.yaml delete mode 100644 themes/orion-black-fork.yaml delete mode 100644 themes/osaka-solarized-pro-dark.yaml delete mode 100644 themes/osaka-solarized-pro-light.yaml delete mode 100644 themes/osaka-solarized-pro-monokai-storm.yaml delete mode 100644 themes/osmoz-dark.yaml delete mode 100644 themes/otakon-contrast.yaml delete mode 100644 themes/otakon-light.yaml delete mode 100644 themes/otakon.yaml delete mode 100644 themes/outrun-dark.yaml delete mode 100644 themes/overflow-contrast.yaml delete mode 100644 themes/overflow-light.yaml delete mode 100644 themes/overflow.yaml delete mode 100644 themes/overnight.yaml delete mode 100644 themes/oxocarbon-dark.yaml delete mode 100644 themes/oxocarbon-monochrom.yaml delete mode 100644 themes/oxocarbon-oled-monochrom-compatibility.yaml delete mode 100644 themes/oxocarbon-oled-monochrom.yaml delete mode 100644 themes/oxocarbon-oled.yaml delete mode 100644 themes/oxocarbonix-dark-theme.yaml delete mode 100644 themes/p-upright-black.yaml delete mode 100644 themes/p-upright-citadel.yaml delete mode 100644 themes/p-upright-crimson.yaml delete mode 100644 themes/p-upright-dark.yaml delete mode 100644 themes/p-upright-eggplant.yaml delete mode 100644 themes/p-upright-emerald.yaml delete mode 100644 themes/p-upright-eucalyptus.yaml delete mode 100644 themes/p-upright-floresta.yaml delete mode 100644 themes/p-upright-frost.yaml delete mode 100644 themes/p-upright-genmaicha.yaml delete mode 100644 themes/p-upright-grizzly.yaml delete mode 100644 themes/p-upright-haze.yaml delete mode 100644 themes/p-upright-inkstone.yaml delete mode 100644 themes/p-upright-leipzig.yaml delete mode 100644 themes/p-upright-light.yaml delete mode 100644 themes/p-upright-machine.yaml delete mode 100644 themes/p-upright-mist.yaml delete mode 100644 themes/p-upright-neptune.yaml delete mode 100644 themes/p-upright-ornithopter.yaml delete mode 100644 themes/p-upright-ox.yaml delete mode 100644 themes/p-upright-terabyte.yaml delete mode 100644 themes/p-upright-ultramarine.yaml delete mode 100644 themes/p-upright-wolf.yaml delete mode 100644 themes/p-upright-yesterday.yaml delete mode 100644 themes/p-upright-zenith.yaml delete mode 100644 themes/p-yesterday.yaml delete mode 100644 themes/palenight-italic.yaml delete mode 100644 themes/palenight-material.yaml delete mode 100644 themes/palenight-theme-based-on-olaolu-olaywuyi-for-code-server.yaml delete mode 100644 themes/palenight-theme.yaml delete mode 100644 themes/panda-dark.yaml delete mode 100644 themes/pandju.yaml delete mode 100644 themes/papaya.yaml delete mode 100644 themes/para-so-dark.yaml delete mode 100644 themes/parchment-starlight-color-theme.yaml delete mode 100644 themes/paro-paro-solarized-dark-theme.yaml delete mode 100644 themes/pastel-contrast.yaml delete mode 100644 themes/pastel-inu.yaml delete mode 100644 themes/pastel-light.yaml delete mode 100644 themes/pastel-sorbet.yaml delete mode 100644 themes/patriot-contrast.yaml delete mode 100644 themes/patriot-light.yaml delete mode 100644 themes/patriot.yaml delete mode 100644 themes/paulera-s-dark-monokai.yaml delete mode 100644 themes/paulera-s-lyo.yaml delete mode 100644 themes/peace-of-the-eye-dracula-version.yaml delete mode 100644 themes/peacock-contrast.yaml delete mode 100644 themes/peacock-light.yaml delete mode 100644 themes/peacocks-in-space-contrast.yaml delete mode 100644 themes/peacocks-in-space-light.yaml delete mode 100644 themes/peacocks-in-space.yaml delete mode 100644 themes/peel-contrast.yaml delete mode 100644 themes/peel-light.yaml delete mode 100644 themes/peel.yaml delete mode 100644 themes/penitent-contrast.yaml delete mode 100644 themes/penitent-light.yaml delete mode 100644 themes/penitent.yaml delete mode 100644 themes/penumbra-dark-contrast.yaml delete mode 100644 themes/penumbra-dark.yaml delete mode 100644 themes/penumbra-light.yaml delete mode 100644 themes/perf-pink.yaml delete mode 100644 themes/perfection-fresh-dark.yaml delete mode 100644 themes/perfection-fresh-light.yaml delete mode 100644 themes/periwinkle-color-theme.yaml delete mode 100644 themes/perplexity.yaml delete mode 100644 themes/perry-the-platypus.yaml delete mode 100644 themes/phosphor-dark.yaml delete mode 100644 themes/photonica-dark.yaml delete mode 100644 themes/photonica-light.yaml delete mode 100644 themes/pierre-dark.yaml delete mode 100644 themes/pierre-light.yaml delete mode 100644 themes/piggy-contrast.yaml delete mode 100644 themes/piggy-light.yaml delete mode 100644 themes/piggy.yaml delete mode 100644 themes/pine-blue.yaml delete mode 100644 themes/pine-cone-theme.yaml delete mode 100644 themes/pine-editor-dark.yaml delete mode 100644 themes/pine-editor-light-bold.yaml delete mode 100644 themes/pine-forest-green-dark.yaml delete mode 100644 themes/pine-forest.yaml delete mode 100644 themes/pine-frizz.yaml delete mode 100644 themes/pine-grey.yaml delete mode 100644 themes/pine-theme-original-dark-extend.yaml delete mode 100644 themes/pink-candy-dark-warm.yaml delete mode 100644 themes/pink-candy-dark.yaml delete mode 100644 themes/pink-candy-light.yaml delete mode 100644 themes/pink-flower.yaml delete mode 100644 themes/pink-high-contrast.yaml delete mode 100644 themes/pink-neon.yaml delete mode 100644 themes/pink-theme.yaml delete mode 100644 themes/pink.yaml delete mode 100644 themes/pinkandgreen.yaml delete mode 100644 themes/pinkcodes-pink.yaml delete mode 100644 themes/pinkdark.yaml delete mode 100644 themes/pinky-promise-dark.yaml delete mode 100644 themes/pinky-promise-light.yaml delete mode 100644 themes/pinkyboo.yaml delete mode 100644 themes/pittaya-theme-light.yaml delete mode 100644 themes/pittaya-theme.yaml delete mode 100644 themes/pittcsc-theme.yaml delete mode 100644 themes/plasma-pink.yaml delete mode 100644 themes/plasticine.yaml delete mode 100644 themes/pleasure-contrast.yaml delete mode 100644 themes/pleasure-light.yaml delete mode 100644 themes/pleasure.yaml delete mode 100644 themes/plurpelvsc.yaml delete mode 100644 themes/poimandres-darker-theme-ghostty-palette.yaml delete mode 100644 themes/polar-black-cherry-blossom.yaml delete mode 100644 themes/polar-black-green-cactus.yaml delete mode 100644 themes/polar-black-ice.yaml delete mode 100644 themes/polar-black-less-black-smoke.yaml delete mode 100644 themes/polar-black-light.yaml delete mode 100644 themes/polar-black-red.yaml delete mode 100644 themes/polar-black-savanna.yaml delete mode 100644 themes/polar-black.yaml delete mode 100644 themes/polychrome-dark.yaml delete mode 100644 themes/polychrome-light.yaml delete mode 100644 themes/polymer-flow.yaml delete mode 100644 themes/pop-os-cosmic.yaml delete mode 100644 themes/popping-and-locking.yaml delete mode 100644 themes/potpourri-contrast.yaml delete mode 100644 themes/potpourri-light.yaml delete mode 100644 themes/potpourri.yaml delete mode 100644 themes/power-low-purple-theme.yaml delete mode 100644 themes/ppy-like.yaml delete mode 100644 themes/pr-theme-obsidian.yaml delete mode 100644 themes/pr-theme-premium.yaml delete mode 100644 themes/pr-theme.yaml delete mode 100644 themes/prime-contrast.yaml delete mode 100644 themes/prime-light.yaml delete mode 100644 themes/prime.yaml delete mode 100644 themes/prismapixel-studios-dark-theme.yaml delete mode 100644 themes/prismmagic.yaml delete mode 100644 themes/progress.yaml delete mode 100644 themes/propurple.yaml delete mode 100644 themes/pudding-dark-caramel-beta.yaml delete mode 100644 themes/pudding-dark-christmas.yaml delete mode 100644 themes/pudding-dark.yaml delete mode 100644 themes/pudding-light-jk.yaml delete mode 100644 themes/pudding-light.yaml delete mode 100644 themes/pulse-balanced-purple.yaml delete mode 100644 themes/pulse-comfort-light.yaml delete mode 100644 themes/pulse-soft-purple.yaml delete mode 100644 themes/pumpkin.yaml delete mode 100644 themes/purble-0-0-2-fork-fork.yaml delete mode 100644 themes/pure-monochrome.yaml delete mode 100644 themes/pureblack.yaml delete mode 100644 themes/purgle-dark-purple.yaml delete mode 100644 themes/purple-cyan.yaml delete mode 100644 themes/purple-dark-theme-unicode.yaml delete mode 100644 themes/purple-deep-black-fork.yaml delete mode 100644 themes/purple-royal.yaml delete mode 100644 themes/purpleandblack.yaml delete mode 100644 themes/purplespace.yaml delete mode 100644 themes/purplexed-theme.yaml delete mode 100644 themes/purply-dark.yaml delete mode 100644 themes/purply-light.yaml delete mode 100644 themes/purrfect-marshmallow-lavender-night.yaml delete mode 100644 themes/purrfect-marshmallow-pastel-pink.yaml delete mode 100644 themes/pushkin-is-white.yaml delete mode 100644 themes/qerz-theme.yaml delete mode 100644 themes/qii-theme-dark-shallow.yaml delete mode 100644 themes/qii-theme-dark.yaml delete mode 100644 themes/qii-theme-light.yaml delete mode 100644 themes/qoder-dark.yaml delete mode 100644 themes/qqqoid-light-color.yaml delete mode 100644 themes/quantum-dark.yaml delete mode 100644 themes/quantum-flux.yaml delete mode 100644 themes/quantum-green.yaml delete mode 100644 themes/quantum-material-theme-dark.yaml delete mode 100644 themes/quantum-material-theme-light.yaml delete mode 100644 themes/quantum-material-theme-void.yaml delete mode 100644 themes/quantum-mirage.yaml delete mode 100644 themes/quantum.yaml delete mode 100644 themes/quantxz.yaml delete mode 100644 themes/quartzium-theme-darker.yaml delete mode 100644 themes/quartzium-theme-deepforest.yaml delete mode 100644 themes/quartzium-theme-default.yaml delete mode 100644 themes/quartzium-theme-lighter.yaml delete mode 100644 themes/qubik-dark.yaml delete mode 100644 themes/qubik-light.yaml delete mode 100644 themes/queensland-dark.yaml delete mode 100644 themes/queensland-light.yaml delete mode 100644 themes/quiet-canvas.yaml delete mode 100644 themes/r-h-zero-monokai.yaml delete mode 100644 themes/raij-dark.yaml delete mode 100644 themes/raij.yaml delete mode 100644 themes/rainbow-light.yaml delete mode 100644 themes/rainbow.yaml delete mode 100644 themes/rainbowdrops-dark.yaml delete mode 100644 themes/raiyanplanet-dark-knight.yaml delete mode 100644 themes/raiyanplanet-darkest.yaml delete mode 100644 themes/raiyanplanet-purple-world.yaml delete mode 100644 themes/ramazzotti-80s.yaml delete mode 100644 themes/ramuda.yaml delete mode 100644 themes/rb-s-desaturated.yaml delete mode 100644 themes/rcw-120-v1.yaml delete mode 100644 themes/re-dark.yaml delete mode 100644 themes/react-italic-theme.yaml delete mode 100644 themes/rebellion-contrast.yaml delete mode 100644 themes/rebellion-light.yaml delete mode 100644 themes/rebellion.yaml delete mode 100644 themes/red-color-theme.yaml delete mode 100644 themes/red-neon.yaml delete mode 100644 themes/red-one-dark-pro-dark.yaml delete mode 100644 themes/red-vintage.yaml delete mode 100644 themes/red.yaml delete mode 100644 themes/reddit-dark-based-theme-updated.yaml delete mode 100644 themes/refined-charcoal.yaml delete mode 100644 themes/refined-default.yaml delete mode 100644 themes/refined-dracula.yaml delete mode 100644 themes/refined-espresso.yaml delete mode 100644 themes/refined-matcha.yaml delete mode 100644 themes/refined-mocha.yaml delete mode 100644 themes/refined-night-owl.yaml delete mode 100644 themes/refined-oceanic-next.yaml delete mode 100644 themes/refined-one.yaml delete mode 100644 themes/refined-palenight.yaml delete mode 100644 themes/refined-purple.yaml delete mode 100644 themes/refined-slate.yaml delete mode 100644 themes/relaxed-theme-dark-focus.yaml delete mode 100644 themes/relaxed-theme-day-light.yaml delete mode 100644 themes/relaxed-theme-night-warm.yaml delete mode 100644 themes/relaxed-theme.yaml delete mode 100644 themes/remedyish-bright.yaml delete mode 100644 themes/remedyish-dark.yaml delete mode 100644 themes/replt-it.yaml delete mode 100644 themes/resknow-dark.yaml delete mode 100644 themes/retro-arcade.yaml delete mode 100644 themes/retro-green.yaml delete mode 100644 themes/retro-hacker-amber.yaml delete mode 100644 themes/retro-hacker-blue.yaml delete mode 100644 themes/retro-hacker-green-subtle.yaml delete mode 100644 themes/retro-hacker-green.yaml delete mode 100644 themes/retro-hacker-magenta.yaml delete mode 100644 themes/retro-keyboard-dark.yaml delete mode 100644 themes/retro-keyboard-light.yaml delete mode 100644 themes/retro.yaml delete mode 100644 themes/retrocoders.yaml delete mode 100644 themes/retronica-amber-terminal.yaml delete mode 100644 themes/retronica-neon-nights.yaml delete mode 100644 themes/retronica-pastel-arcade.yaml delete mode 100644 themes/retronica-phosphor-green.yaml delete mode 100644 themes/retronica-vintage-computing.yaml delete mode 100644 themes/reui-ii-dark.yaml delete mode 100644 themes/reui-mirage.yaml delete mode 100644 themes/reui.yaml delete mode 100644 themes/revelation-contrast.yaml delete mode 100644 themes/revelation-light.yaml delete mode 100644 themes/revelation.yaml delete mode 100644 themes/revisual-assist-color-theme.yaml delete mode 100644 themes/rextax-bright-fork.yaml delete mode 100644 themes/rezaul360-blue-velvet-theme.yaml delete mode 100644 themes/rezaul360-professional-theme.yaml delete mode 100644 themes/rezaul360-simple-as-light.yaml delete mode 100644 themes/rg-htmllessons-io.yaml delete mode 100644 themes/rider.yaml delete mode 100644 themes/rito.yaml delete mode 100644 themes/rmondesilva-contrast.yaml delete mode 100644 themes/robot-framework-material-dark.yaml delete mode 100644 themes/rocklee.yaml delete mode 100644 themes/rog-theme-v1-1-dark-alpha-syntax-test.yaml delete mode 100644 themes/rogue-squadron.yaml delete mode 100644 themes/rohit.yaml delete mode 100644 themes/ronin-darker.yaml delete mode 100644 themes/ronin.yaml delete mode 100644 themes/root-bear.yaml delete mode 100644 themes/root-dark-mode-theme-v0-1.yaml delete mode 100644 themes/ros-pine-dawn-no-italics.yaml delete mode 100644 themes/ros-pine-moon.yaml delete mode 100644 themes/ros-pine-no-italics.yaml delete mode 100644 themes/ros-pine.yaml delete mode 100644 themes/rose-paradise.yaml delete mode 100644 themes/rouge.yaml delete mode 100644 themes/runic-minimal.yaml delete mode 100644 themes/s-kill.yaml delete mode 100644 themes/safe-dark-theme.yaml delete mode 100644 themes/safira.yaml delete mode 100644 themes/saga-nordic-v1-2.yaml delete mode 100644 themes/saga-oceania-v1-2.yaml delete mode 100644 themes/sage-of-light-color-theme.yaml delete mode 100644 themes/sailor-at-sea.yaml delete mode 100644 themes/sakura-blossom-midnight.yaml delete mode 100644 themes/sakura-blossom-theme.yaml delete mode 100644 themes/sakura-dreams-dark.yaml delete mode 100644 themes/sakura-dreams.yaml delete mode 100644 themes/sakura-theme.yaml delete mode 100644 themes/sakya-dorje.yaml delete mode 100644 themes/samito-nest-theme.yaml delete mode 100644 themes/samurai.yaml delete mode 100644 themes/sandcastle.yaml delete mode 100644 themes/sanemi-shinazugawa.yaml delete mode 100644 themes/sanrio.yaml delete mode 100644 themes/satoru-gojo-blue.yaml delete mode 100644 themes/satoru-gojo-white.yaml delete mode 100644 themes/saturnblue-dark.yaml delete mode 100644 themes/sazardev.yaml delete mode 100644 themes/schooltheme.yaml delete mode 100644 themes/scorch-contrast.yaml delete mode 100644 themes/scorch-light.yaml delete mode 100644 themes/scorch.yaml delete mode 100644 themes/sea-glass.yaml delete mode 100644 themes/secret-spring.yaml delete mode 100644 themes/selene-selenized-dark.yaml delete mode 100644 themes/selene-selenized-light.yaml delete mode 100644 themes/selenitic-color-theme.yaml delete mode 100644 themes/semantic-noctis-lux.yaml delete mode 100644 themes/senna-dark-black-theme.yaml delete mode 100644 themes/september-dark-theme.yaml delete mode 100644 themes/sequoia-monochrome.yaml delete mode 100644 themes/sequoia-moonlight.yaml delete mode 100644 themes/sequoia-retro.yaml delete mode 100644 themes/serendipity-midnight-electric.yaml delete mode 100644 themes/serendipity-midnight-v1.yaml delete mode 100644 themes/serendipity-midnight.yaml delete mode 100644 themes/serendipity-morning-v1.yaml delete mode 100644 themes/serendipity-morning.yaml delete mode 100644 themes/serendipity-sunset-v1.yaml delete mode 100644 themes/serendipity-sunset.yaml delete mode 100644 themes/service-contrast.yaml delete mode 100644 themes/service-light.yaml delete mode 100644 themes/service.yaml delete mode 100644 themes/shades-of-life-light.yaml delete mode 100644 themes/shades-of-life.yaml delete mode 100644 themes/shadowborn.yaml delete mode 100644 themes/shadowspectrum.yaml delete mode 100644 themes/shale.yaml delete mode 100644 themes/sharkdark-theme.yaml delete mode 100644 themes/shinobu-kocho.yaml delete mode 100644 themes/ship-dark.yaml delete mode 100644 themes/ship-light.yaml delete mode 100644 themes/shiro-sakura-light.yaml delete mode 100644 themes/shivam.yaml delete mode 100644 themes/shrek-contrast.yaml delete mode 100644 themes/shrek-light.yaml delete mode 100644 themes/shrek.yaml delete mode 100644 themes/silent-code.yaml delete mode 100644 themes/silk-petal.yaml delete mode 100644 themes/simpledark.yaml delete mode 100644 themes/sirius-astral.yaml delete mode 100644 themes/sirius-glow.yaml delete mode 100644 themes/sirius-nebula.yaml delete mode 100644 themes/sirius-pulsar.yaml delete mode 100644 themes/sirius-vesper.yaml delete mode 100644 themes/sirius-vibe.yaml delete mode 100644 themes/sirius-vortex.yaml delete mode 100644 themes/sirius-zenith.yaml delete mode 100644 themes/sk5s-vsgt.yaml delete mode 100644 themes/skeswa-s-noctis-azureus.yaml delete mode 100644 themes/skeswa-s-noctis-bordo.yaml delete mode 100644 themes/skeswa-s-noctis-hibernus.yaml delete mode 100644 themes/skeswa-s-noctis-lilac.yaml delete mode 100644 themes/skeswa-s-noctis-lux.yaml delete mode 100644 themes/skeswa-s-noctis-minimus.yaml delete mode 100644 themes/skeswa-s-noctis-obscuro.yaml delete mode 100644 themes/skeswa-s-noctis-sereno.yaml delete mode 100644 themes/skeswa-s-noctis-uva.yaml delete mode 100644 themes/skeswa-s-noctis-viola.yaml delete mode 100644 themes/skeswa-s-noctis.yaml delete mode 100644 themes/slack-theme-aubergine-dark.yaml delete mode 100644 themes/slack-theme-aubergine-new.yaml delete mode 100644 themes/slack-theme-dark.yaml delete mode 100644 themes/slack-theme-hoth.yaml delete mode 100644 themes/slack-theme.yaml delete mode 100644 themes/slate-blue.yaml delete mode 100644 themes/slate-contrast.yaml delete mode 100644 themes/slate-light.yaml delete mode 100644 themes/slate.yaml delete mode 100644 themes/slime-color-theme.yaml delete mode 100644 themes/slime-contrast.yaml delete mode 100644 themes/slime-light.yaml delete mode 100644 themes/slime-solid-color-theme.yaml delete mode 100644 themes/smoldering-ember.yaml delete mode 100644 themes/smooth-burn-dark-hard.yaml delete mode 100644 themes/smooth-burn-dark-medium.yaml delete mode 100644 themes/smooth-burn-dark.yaml delete mode 100644 themes/smooth-burn-light-hard.yaml delete mode 100644 themes/smooth-dark.yaml delete mode 100644 themes/smooth-light.yaml delete mode 100644 themes/snakedye-chocolate.yaml delete mode 100644 themes/snappier.yaml delete mode 100644 themes/snappy-contrast.yaml delete mode 100644 themes/snappy-light.yaml delete mode 100644 themes/snazzy-operator-color-theme-italics.yaml delete mode 100644 themes/snazzy-operator-color-theme.yaml delete mode 100644 themes/snazzy-operator-natural.yaml delete mode 100644 themes/snazzy-vs-theme.yaml delete mode 100644 themes/snazzy.yaml delete mode 100644 themes/snow-theme.yaml delete mode 100644 themes/snowflake-dark-theme.yaml delete mode 100644 themes/snowflake-darker-theme.yaml delete mode 100644 themes/sober.yaml delete mode 100644 themes/sobrio-light.yaml delete mode 100644 themes/sobrio.yaml delete mode 100644 themes/soct-color-theme.yaml delete mode 100644 themes/soft-dark.yaml delete mode 100644 themes/soft-kawaii-theme-1-color-theme.yaml delete mode 100644 themes/soft-light.yaml delete mode 100644 themes/soho-color-theme.yaml delete mode 100644 themes/solar-flare.yaml delete mode 100644 themes/solarflare-contrast.yaml delete mode 100644 themes/solarflare-light.yaml delete mode 100644 themes/solarflare.yaml delete mode 100644 themes/solarized-dark-theme.yaml delete mode 100644 themes/solarized-dark.yaml delete mode 100644 themes/solarized-light.yaml delete mode 100644 themes/solarized-lilac.yaml delete mode 100644 themes/solarized-monokai-dark.yaml delete mode 100644 themes/solarized-neue-bright.yaml delete mode 100644 themes/solarized-neue.yaml delete mode 100644 themes/solarized-yuki.yaml delete mode 100644 themes/solavsce-packagera.yaml delete mode 100644 themes/solitude-dark.yaml delete mode 100644 themes/solitude-soft.yaml delete mode 100644 themes/solo-leveling.yaml delete mode 100644 themes/solstice-estival.yaml delete mode 100644 themes/solstice-heat.yaml delete mode 100644 themes/solstice-hibernal.yaml delete mode 100644 themes/sonic-pulse.yaml delete mode 100644 themes/sonokai-andromeda.yaml delete mode 100644 themes/sonokai-atlantis.yaml delete mode 100644 themes/sonokai-espresso.yaml delete mode 100644 themes/sonokai-maia.yaml delete mode 100644 themes/sonokai-shusia.yaml delete mode 100644 themes/sonokai.yaml delete mode 100644 themes/sorbet-swirl.yaml delete mode 100644 themes/soudev-mega-dark.yaml delete mode 100644 themes/soudev-purple-andromeda.yaml delete mode 100644 themes/soudev-semi-dark-andromeda.yaml delete mode 100644 themes/soup-contrast.yaml delete mode 100644 themes/soup-light.yaml delete mode 100644 themes/soup.yaml delete mode 100644 themes/sourlick-contrast.yaml delete mode 100644 themes/sourlick-light.yaml delete mode 100644 themes/sourlick.yaml delete mode 100644 themes/space-dark.yaml delete mode 100644 themes/space-light.yaml delete mode 100644 themes/space-purple-dark.yaml delete mode 100644 themes/space-purple-light.yaml delete mode 100644 themes/spacemacs-dark.yaml delete mode 100644 themes/spacemacs-light.yaml delete mode 100644 themes/spaceoceankitrefined.yaml delete mode 100644 themes/sparkle-theme.yaml delete mode 100644 themes/spearmint-contrast.yaml delete mode 100644 themes/spearmint-light.yaml delete mode 100644 themes/spearmint.yaml delete mode 100644 themes/spiderverse-2099.yaml delete mode 100644 themes/spiderverse-miles.yaml delete mode 100644 themes/spiderverse-spider-man.yaml delete mode 100644 themes/spitfire-contrast.yaml delete mode 100644 themes/spitfire-light.yaml delete mode 100644 themes/spitfire.yaml delete mode 100644 themes/spyder-theme-light.yaml delete mode 100644 themes/srcery-gagbo.yaml delete mode 100644 themes/st-borg.yaml delete mode 100644 themes/st-lcars.yaml delete mode 100644 themes/stackmeister.yaml delete mode 100644 themes/stark-contrast.yaml delete mode 100644 themes/stark-light.yaml delete mode 100644 themes/stark.yaml delete mode 100644 themes/stasis-contrast.yaml delete mode 100644 themes/stasis-light.yaml delete mode 100644 themes/stasis.yaml delete mode 100644 themes/stealth-contrast.yaml delete mode 100644 themes/stealth-light.yaml delete mode 100644 themes/stellar.yaml delete mode 100644 themes/sto-classic.yaml delete mode 100644 themes/sto-green-dark.yaml delete mode 100644 themes/sto-green.yaml delete mode 100644 themes/storm-contrast.yaml delete mode 100644 themes/storm-light.yaml delete mode 100644 themes/storm-tracker.yaml delete mode 100644 themes/stormpetrel.yaml delete mode 100644 themes/studio-apartment.yaml delete mode 100644 themes/studio-bio-bio-dark-theme.yaml delete mode 100644 themes/styledark18.yaml delete mode 100644 themes/styledark28.yaml delete mode 100644 themes/stylelight33.yaml delete mode 100644 themes/stypt-aether.yaml delete mode 100644 themes/sublime-monokai-color-theme.yaml delete mode 100644 themes/sublime-text-4-theme.yaml delete mode 100644 themes/subscribe-color.yaml delete mode 100644 themes/sugar-dark-focus.yaml delete mode 100644 themes/sugar-dark-github.yaml delete mode 100644 themes/sugar-dark-midnight.yaml delete mode 100644 themes/sugar-dark-one.yaml delete mode 100644 themes/sugar-dark-vitesse.yaml delete mode 100644 themes/sugar-dark-vs.yaml delete mode 100644 themes/sugar-dark.yaml delete mode 100644 themes/sugar-fleet.yaml delete mode 100644 themes/sugar-light-vitesse.yaml delete mode 100644 themes/sugar-light-vs.yaml delete mode 100644 themes/sugar-light.yaml delete mode 100644 themes/sukadia-dev-dark.yaml delete mode 100644 themes/summer-night-gray-high-contrast.yaml delete mode 100644 themes/summer-night-high-contrast.yaml delete mode 100644 themes/summer-night.yaml delete mode 100644 themes/summer.yaml delete mode 100644 themes/sunset-beach-dark.yaml delete mode 100644 themes/sunset-beach-light.yaml delete mode 100644 themes/super-contrast.yaml delete mode 100644 themes/super-light.yaml delete mode 100644 themes/super.yaml delete mode 100644 themes/superman-theme.yaml delete mode 100644 themes/sw-tatooine.yaml delete mode 100644 themes/sw61.yaml delete mode 100644 themes/swamp-color-theme.yaml delete mode 100644 themes/sweet-lemon.yaml delete mode 100644 themes/sweetdracula-monokai.yaml delete mode 100644 themes/syntax-palette.yaml delete mode 100644 themes/synthor-dark-fork.yaml delete mode 100644 themes/synthwave-neon.yaml delete mode 100644 themes/t-on-no-c-digo.yaml delete mode 100644 themes/t3chdad-darkside-fork.yaml delete mode 100644 themes/t3nsor-solo-leveling.yaml delete mode 100644 themes/tactical-ops.yaml delete mode 100644 themes/tail-dark-theme.yaml delete mode 100644 themes/tailwind-dark.yaml delete mode 100644 themes/tailwind-darkest.yaml delete mode 100644 themes/tailwind-moon-blue.yaml delete mode 100644 themes/tailwind-moon.yaml delete mode 100644 themes/tame-contrast.yaml delete mode 100644 themes/tame-light.yaml delete mode 100644 themes/tame.yaml delete mode 100644 themes/tara-theme-carbon-high-contrast.yaml delete mode 100644 themes/tara-theme-carbon.yaml delete mode 100644 themes/tara-theme-deepforest.yaml delete mode 100644 themes/tara-theme-ocean.yaml delete mode 100644 themes/tara-theme-palenight.yaml delete mode 100644 themes/tara-theme-teal.yaml delete mode 100644 themes/tasmania-dark.yaml delete mode 100644 themes/tasmania-light.yaml delete mode 100644 themes/tears-of-the-kingdom-minimal-dark-midnight.yaml delete mode 100644 themes/tears-of-the-kingdom-minimal-dark.yaml delete mode 100644 themes/telescope-fork.yaml delete mode 100644 themes/tema-felipao.yaml delete mode 100644 themes/terafox.yaml delete mode 100644 themes/terminal-fork.yaml delete mode 100644 themes/terminal.yaml delete mode 100644 themes/tesseract-dark.yaml delete mode 100644 themes/test.yaml delete mode 100644 themes/tetra-contrast.yaml delete mode 100644 themes/tetra-light.yaml delete mode 100644 themes/tetra.yaml delete mode 100644 themes/th-me-dark-aout-contraste-lev.yaml delete mode 100644 themes/th-me-dark-avril-vert-printemps.yaml delete mode 100644 themes/th-me-dark-janvier-bleu-fonc.yaml delete mode 100644 themes/th-me-dark-juillet-contraste-lev.yaml delete mode 100644 themes/th-me-dark-juin-high-contrast.yaml delete mode 100644 themes/th-me-high-contrast-janvier-r-vis.yaml delete mode 100644 themes/th-me-sombre-d-automne.yaml delete mode 100644 themes/the-best-theme-ever.yaml delete mode 100644 themes/the-empire.yaml delete mode 100644 themes/the-end-of-development.yaml delete mode 100644 themes/the-one-theme.yaml delete mode 100644 themes/thebear-dark.yaml delete mode 100644 themes/themarro-dark-contrast.yaml delete mode 100644 themes/themarro-david-remix.yaml delete mode 100644 themes/themarro.yaml delete mode 100644 themes/theme-for-codes-dark.yaml delete mode 100644 themes/theme-for-codes-light.yaml delete mode 100644 themes/theme-joey.yaml delete mode 100644 themes/themedarker.yaml delete mode 100644 themes/themeframek.yaml delete mode 100644 themes/themegreen.yaml delete mode 100644 themes/thememix.yaml delete mode 100644 themes/themepurple.yaml delete mode 100644 themes/themer-light.yaml delete mode 100644 themes/themin-mint.yaml delete mode 100644 themes/thorn.yaml delete mode 100644 themes/tickle-contrast.yaml delete mode 100644 themes/tickle-light.yaml delete mode 100644 themes/tickle.yaml delete mode 100644 themes/tinacious-design-syntax.yaml delete mode 100644 themes/tiniri-dark.yaml delete mode 100644 themes/tiniri-light.yaml delete mode 100644 themes/tobirama-water-style.yaml delete mode 100644 themes/tokito-inspired.yaml delete mode 100644 themes/tokyo-gogh-alt.yaml delete mode 100644 themes/tokyo-gogh.yaml delete mode 100644 themes/tokyo-light.yaml delete mode 100644 themes/tokyo-night-equalizer.yaml delete mode 100644 themes/tokyo-night-light.yaml delete mode 100644 themes/tokyo-night-theme.yaml delete mode 100644 themes/tokyo.yaml delete mode 100644 themes/tokyogo.yaml delete mode 100644 themes/tokyonight-moon-lazy.yaml delete mode 100644 themes/tokyonight.yaml delete mode 100644 themes/tonic-contrast.yaml delete mode 100644 themes/tonic-light.yaml delete mode 100644 themes/tonic.yaml delete mode 100644 themes/tora.yaml delete mode 100644 themes/torte-vim.yaml delete mode 100644 themes/total-black-theme.yaml delete mode 100644 themes/total-lunar-eclipse.yaml delete mode 100644 themes/totow-s-th-me.yaml delete mode 100644 themes/toxic-color-theme.yaml delete mode 100644 themes/toxic-waste.yaml delete mode 100644 themes/trans-pride-light-naomi.yaml delete mode 100644 themes/tree-hugger.yaml delete mode 100644 themes/tribal-contrast.yaml delete mode 100644 themes/tribal-light.yaml delete mode 100644 themes/tribal.yaml delete mode 100644 themes/tron-contrast.yaml delete mode 100644 themes/tron-light.yaml delete mode 100644 themes/tron.yaml delete mode 100644 themes/tsukiroku-dark.yaml delete mode 100644 themes/tsukuyomi-light.yaml delete mode 100644 themes/tsukuyomi.yaml delete mode 100644 themes/tsumiki-theme.yaml delete mode 100644 themes/tundra-dusk.yaml delete mode 100644 themes/turbo-c-3-0-borland-style.yaml delete mode 100644 themes/turnip-contrast.yaml delete mode 100644 themes/turnip-light.yaml delete mode 100644 themes/turnip.yaml delete mode 100644 themes/turnstyle-darker.yaml delete mode 100644 themes/turnstyle.yaml delete mode 100644 themes/turquesa-bege.yaml delete mode 100644 themes/tutilabs-theme.yaml delete mode 100644 themes/tw40-gigi.yaml delete mode 100644 themes/tweed-contrast.yaml delete mode 100644 themes/tweed-light.yaml delete mode 100644 themes/tweed.yaml delete mode 100644 themes/twilight-bloom.yaml delete mode 100644 themes/two-monokai-darker.yaml delete mode 100644 themes/two-monokai.yaml delete mode 100644 themes/tyh-theme-dark.yaml delete mode 100644 themes/ukiyo-e-aged-manuscript.yaml delete mode 100644 themes/ukiyo-e-manuscript.yaml delete mode 100644 themes/ultra-instinct-mastered-light.yaml delete mode 100644 themes/ultra-instinct-mastered.yaml delete mode 100644 themes/ultra-instinct-sign.yaml delete mode 100644 themes/ultrafocus-fork-fork.yaml delete mode 100644 themes/ump-45-leva.yaml delete mode 100644 themes/underdark-fork.yaml delete mode 100644 themes/unicorn-dark.yaml delete mode 100644 themes/unity-theme.yaml delete mode 100644 themes/unlight-v-2.yaml delete mode 100644 themes/untitled-fork-fork.yaml delete mode 100644 themes/untitled-fork.yaml delete mode 100644 themes/untitled.yaml delete mode 100644 themes/userscape-contrast.yaml delete mode 100644 themes/userscape-light.yaml delete mode 100644 themes/userscape.yaml delete mode 100644 themes/uvadark-rahul-fork.yaml delete mode 100644 themes/vagruvboxtheme-color-theme.yaml delete mode 100644 themes/vague-neovim-theme-extended-light.yaml delete mode 100644 themes/vague-neovim-theme-extended.yaml delete mode 100644 themes/vague.yaml delete mode 100644 themes/valley.yaml delete mode 100644 themes/valorant-theme-darker.yaml delete mode 100644 themes/valorant-theme-remasterd.yaml delete mode 100644 themes/vanguard-strike.yaml delete mode 100644 themes/vanilla-jade.yaml delete mode 100644 themes/vanilla.yaml delete mode 100644 themes/vaporizer-alice-dark.yaml delete mode 100644 themes/vaporizer-alice-light.yaml delete mode 100644 themes/vaporizer-ava-light.yaml delete mode 100644 themes/vaporizer-batman-dark-2022.yaml delete mode 100644 themes/vaporizer-batman-dark-night.yaml delete mode 100644 themes/vaporizer-cloudy-light.yaml delete mode 100644 themes/vaporizer-cobalt-dark.yaml delete mode 100644 themes/vaporizer-crescent-dark.yaml delete mode 100644 themes/vaporizer-dark-cherry.yaml delete mode 100644 themes/vaporizer-dark-coffee.yaml delete mode 100644 themes/vaporizer-dark-cool-1.yaml delete mode 100644 themes/vaporizer-dark-cool-2.yaml delete mode 100644 themes/vaporizer-dark-cop.yaml delete mode 100644 themes/vaporizer-dark-cyber-neon-1.yaml delete mode 100644 themes/vaporizer-dark-cyber-neon-2.yaml delete mode 100644 themes/vaporizer-dark-cyber-neon-3.yaml delete mode 100644 themes/vaporizer-dark-ivy.yaml delete mode 100644 themes/vaporizer-dark-joker.yaml delete mode 100644 themes/vaporizer-dark-matrix-2.yaml delete mode 100644 themes/vaporizer-dark-monterey.yaml delete mode 100644 themes/vaporizer-dark-painting.yaml delete mode 100644 themes/vaporizer-dark-pansy.yaml delete mode 100644 themes/vaporizer-dark-red.yaml delete mode 100644 themes/vaporizer-dark-stabilo.yaml delete mode 100644 themes/vaporizer-dark-turquoise.yaml delete mode 100644 themes/vaporizer-epic-red-dark.yaml delete mode 100644 themes/vaporizer-fonc-dark.yaml delete mode 100644 themes/vaporizer-frozen-dark.yaml delete mode 100644 themes/vaporizer-golgi-dark.yaml delete mode 100644 themes/vaporizer-half-moon-dark.yaml delete mode 100644 themes/vaporizer-lemonade-light.yaml delete mode 100644 themes/vaporizer-lemonade-solarized-light.yaml delete mode 100644 themes/vaporizer-milk-light.yaml delete mode 100644 themes/vaporizer-mini-blue-light.yaml delete mode 100644 themes/vaporizer-minimalism-light.yaml delete mode 100644 themes/vaporizer-modern-light.yaml delete mode 100644 themes/vaporizer-moon-light-dark.yaml delete mode 100644 themes/vaporizer-phosphoric-blue.yaml delete mode 100644 themes/vaporizer-purple-gray-dark.yaml delete mode 100644 themes/vaporizer-soft-light.yaml delete mode 100644 themes/vaporizer-splash-dark.yaml delete mode 100644 themes/vaporizer-turquoise-light.yaml delete mode 100644 themes/vaporwave.yaml delete mode 100644 themes/vase-with-twelve-sunflowers.yaml delete mode 100644 themes/vegetable-contrast.yaml delete mode 100644 themes/vegetable-light.yaml delete mode 100644 themes/vercel-light.yaml delete mode 100644 themes/vercel.yaml delete mode 100644 themes/verner.yaml delete mode 100644 themes/version-1-0-5.yaml delete mode 100644 themes/vesper-purple-dark.yaml delete mode 100644 themes/vesper-purple-light.yaml delete mode 100644 themes/vesper.yaml delete mode 100644 themes/vibe-dark-legacy.yaml delete mode 100644 themes/vibes.yaml delete mode 100644 themes/vibrant-abyss-vscode.yaml delete mode 100644 themes/victoria-dark.yaml delete mode 100644 themes/victoria-light.yaml delete mode 100644 themes/video-contrast.yaml delete mode 100644 themes/vim-dark-soft.yaml delete mode 100644 themes/vintage-heritage.yaml delete mode 100644 themes/violaceous-contrast.yaml delete mode 100644 themes/violaceous-light.yaml delete mode 100644 themes/violaceous.yaml delete mode 100644 themes/violet-night.yaml delete mode 100644 themes/viper-theme.yaml delete mode 100644 themes/vishwakarma-sunset-glow.yaml delete mode 100644 themes/vision-colorblind.yaml delete mode 100644 themes/vision-light-colorblind.yaml delete mode 100644 themes/visual-studio-code-dark-theme.yaml delete mode 100644 themes/vitepress-theme-vite-dark.yaml delete mode 100644 themes/vitesse-dark-soft.yaml delete mode 100644 themes/vivid-blue.yaml delete mode 100644 themes/vividnord.yaml delete mode 100644 themes/vkt-theme.yaml delete mode 100644 themes/volatile-contrast.yaml delete mode 100644 themes/volatile-light.yaml delete mode 100644 themes/volatile.yaml delete mode 100644 themes/volt-dark.yaml delete mode 100644 themes/vortex.yaml delete mode 100644 themes/vs-code-deep-f-lux-fork-fork.yaml delete mode 100644 themes/vs-code-next-js.yaml delete mode 100644 themes/vs-fleet.yaml delete mode 100644 themes/vsblue.yaml delete mode 100644 themes/vsc-cyberpunk2077-theme-color-theme.yaml delete mode 100644 themes/vsc-solarized-light.yaml delete mode 100644 themes/vscode-bt-feynuus-color-theme.yaml delete mode 100644 themes/vscode-epic-color-theme.yaml delete mode 100644 themes/vscode-material-ui.yaml delete mode 100644 themes/vscode-nofrils-light.yaml delete mode 100644 themes/vscode-sublime-ish.yaml delete mode 100644 themes/vstoolkit-theme-dark.yaml delete mode 100644 themes/vxcode-blush.yaml delete mode 100644 themes/vxcode-cream.yaml delete mode 100644 themes/vxcode-dark.yaml delete mode 100644 themes/vxcode-darker.yaml delete mode 100644 themes/vxcode-lavender.yaml delete mode 100644 themes/vxcode-lime.yaml delete mode 100644 themes/vxcode-oled.yaml delete mode 100644 themes/warlock-contrast.yaml delete mode 100644 themes/warlock-light.yaml delete mode 100644 themes/warlock.yaml delete mode 100644 themes/warm-burnout-dark.yaml delete mode 100644 themes/warmkai-pro.yaml delete mode 100644 themes/waste-contrast.yaml delete mode 100644 themes/waste-light.yaml delete mode 100644 themes/waste.yaml delete mode 100644 themes/waterbyte-classic-2022-light.yaml delete mode 100644 themes/wave-delight-vs-dark-cool.yaml delete mode 100644 themes/wawdog-dark.yaml delete mode 100644 themes/webc-dark.yaml delete mode 100644 themes/weiting-candycolor.yaml delete mode 100644 themes/westmont-dark.yaml delete mode 100644 themes/wheel-light-color-theme.yaml delete mode 100644 themes/white-shade-color.yaml delete mode 100644 themes/whiteboard.yaml delete mode 100644 themes/willasm-emerald-sky.yaml delete mode 100644 themes/willow.yaml delete mode 100644 themes/win-xp-luna.yaml delete mode 100644 themes/wind-dark-slate.yaml delete mode 100644 themes/wind-dark-zinc.yaml delete mode 100644 themes/wind-light-neutral.yaml delete mode 100644 themes/windows-nt.yaml delete mode 100644 themes/windows-xp-dark-luna.yaml delete mode 100644 themes/wired-lighter.yaml delete mode 100644 themes/wired.yaml delete mode 100644 themes/wise-owl-material-high-contrast.yaml delete mode 100644 themes/wise-owl-material-light.yaml delete mode 100644 themes/wise-owl-material.yaml delete mode 100644 themes/witchy-dark.yaml delete mode 100644 themes/wolves-league-dark.yaml delete mode 100644 themes/word-color-theme.yaml delete mode 100644 themes/wordsmith-dark.yaml delete mode 100644 themes/wordsmith-light.yaml delete mode 100644 themes/workplace-chatter.yaml delete mode 100644 themes/wuthering-waves-aemeath-dark.yaml delete mode 100644 themes/wuthering-waves-aemeath.yaml delete mode 100644 themes/wuthering-waves-augusta-dark.yaml delete mode 100644 themes/wuthering-waves-augusta.yaml delete mode 100644 themes/wuthering-waves-baizhi-dark.yaml delete mode 100644 themes/wuthering-waves-baizhi.yaml delete mode 100644 themes/wuthering-waves-brant-dark.yaml delete mode 100644 themes/wuthering-waves-brant.yaml delete mode 100644 themes/wuthering-waves-cantarella-dark.yaml delete mode 100644 themes/wuthering-waves-cantarella.yaml delete mode 100644 themes/wuthering-waves-carlotta-dark.yaml delete mode 100644 themes/wuthering-waves-carlotta.yaml delete mode 100644 themes/wuthering-waves-cartethyia-dark.yaml delete mode 100644 themes/wuthering-waves-cartethyia.yaml delete mode 100644 themes/wuthering-waves-changli-dark.yaml delete mode 100644 themes/wuthering-waves-changli.yaml delete mode 100644 themes/wuthering-waves-chisa-dark.yaml delete mode 100644 themes/wuthering-waves-chisa.yaml delete mode 100644 themes/wuthering-waves-galbrena-dark.yaml delete mode 100644 themes/wuthering-waves-galbrena.yaml delete mode 100644 themes/wuthering-waves-iuno-dark.yaml delete mode 100644 themes/wuthering-waves-iuno.yaml delete mode 100644 themes/wuthering-waves-jinhsi.yaml delete mode 100644 themes/wuthering-waves-lynae-dark.yaml delete mode 100644 themes/wuthering-waves-lynae.yaml delete mode 100644 themes/wuthering-waves-mornye-dark.yaml delete mode 100644 themes/wuthering-waves-mornye.yaml delete mode 100644 themes/wuthering-waves-roccia-dark.yaml delete mode 100644 themes/wuthering-waves-roccia.yaml delete mode 100644 themes/wuthering-waves-rover.yaml delete mode 100644 themes/wuthering-waves-sanhua-dark.yaml delete mode 100644 themes/wuthering-waves-sanhua.yaml delete mode 100644 themes/wuthering-waves-scar-dark.yaml delete mode 100644 themes/wuthering-waves-scar.yaml delete mode 100644 themes/wuthering-waves-taoqi.yaml delete mode 100644 themes/wuthering-waves-the-shorekeeper-dark.yaml delete mode 100644 themes/wuthering-waves-the-shorekeeper.yaml delete mode 100644 themes/wuthering-waves-verina-dark.yaml delete mode 100644 themes/wuthering-waves-verina.yaml delete mode 100644 themes/wuthering-waves-yinlin-dark.yaml delete mode 100644 themes/wuthering-waves-yinlin.yaml delete mode 100644 themes/wuthering-waves-zhezhi-dark.yaml delete mode 100644 themes/wuthering-waves-zhezhi.yaml delete mode 100644 themes/xava-color-theme.yaml delete mode 100644 themes/xis-one.yaml delete mode 100644 themes/xthemis-cyan.yaml delete mode 100644 themes/xxhtml.yaml delete mode 100644 themes/yami-blue.yaml delete mode 100644 themes/yaru-dark.yaml delete mode 100644 themes/yaru.yaml delete mode 100644 themes/ydrgzm-light-theme.yaml delete mode 100644 themes/yellow-purple-theme.yaml delete mode 100644 themes/yet-another-solarized-theme-dark.yaml delete mode 100644 themes/yet-another-solarized-theme-light.yaml delete mode 100644 themes/yitzchok-contrast.yaml delete mode 100644 themes/yitzchok-light.yaml delete mode 100644 themes/yitzchok.yaml delete mode 100644 themes/yoda-mystical-force.yaml delete mode 100644 themes/yonc.yaml delete mode 100644 themes/ytheme-dark.yaml delete mode 100644 themes/yule-contrast.yaml delete mode 100644 themes/yule-light.yaml delete mode 100644 themes/yule.yaml delete mode 100644 themes/yuuyake-dark.yaml delete mode 100644 themes/yuyuko-vscode-ocean.yaml delete mode 100644 themes/yuyuko-vscode.yaml delete mode 100644 themes/zacks-contrast.yaml delete mode 100644 themes/zacks-light.yaml delete mode 100644 themes/zacks.yaml delete mode 100644 themes/zaeri-dark.yaml delete mode 100644 themes/zaher-color-theme.yaml delete mode 100644 themes/zandromeda.yaml delete mode 100644 themes/zap.yaml delete mode 100644 themes/zappts.yaml delete mode 100644 themes/zednostheme-v1.yaml delete mode 100644 themes/zelda-dark.yaml delete mode 100644 themes/zemarcolortheme.yaml delete mode 100644 themes/zen-mono.yaml delete mode 100644 themes/zenburn.yaml delete mode 100644 themes/zene-light-theme.yaml delete mode 100644 themes/zenith-aurora.yaml delete mode 100644 themes/zenith-dawn.yaml delete mode 100644 themes/zenith-dusk.yaml delete mode 100644 themes/zenith-forest.yaml delete mode 100644 themes/zenith-midnight.yaml delete mode 100644 themes/zenith-neutral.yaml delete mode 100644 themes/zenith-ocean.yaml delete mode 100644 themes/zenith-ros.yaml delete mode 100644 themes/zenith-zen.yaml delete mode 100644 themes/zenith.yaml delete mode 100644 themes/zero-wip.yaml delete mode 100644 themes/zeus-turquoise.yaml delete mode 100644 themes/zeus-yelo.yaml delete mode 100644 themes/zhxo-lt.yaml delete mode 100644 themes/zhxo-red.yaml delete mode 100644 themes/zhxo-st.yaml delete mode 100644 themes/zhxo-yll.yaml delete mode 100644 themes/zokugun-obsidium.yaml delete mode 100644 themes/zoren-breeze.yaml delete mode 100644 themes/zunda-dark.yaml delete mode 100644 themes/zux-purple-minimal.yaml diff --git a/cli/src/theme-schema.ts b/cli/src/theme-schema.ts index c2d7f301..d4247480 100644 --- a/cli/src/theme-schema.ts +++ b/cli/src/theme-schema.ts @@ -13,6 +13,9 @@ export interface ThemeSource { url: string; author: string; repo: string | null; + /** Pinned raw.githubusercontent.com URLs keyed by app name. Populated by detect-theme-formats script. + * undefined = not yet scanned, null = scanned but no native formats found */ + formats?: Record | null; } export interface ThemeColors { @@ -143,8 +146,9 @@ export function parseThemeYAML(raw: string): ThemeYAML { return validateTheme(data); } -function parseScalar(value: string): string | number | null { +function parseScalar(value: string): string | number | null | Record { if (value === 'null' || value === '~') return null; + if (value === '{}') return {}; const unquoted = value.replace(/^["']|["']$/g, ''); if (HEX_RE.test(unquoted)) return unquoted; const num = Number(value); @@ -185,6 +189,16 @@ export function serializeThemeYAML(theme: ThemeYAML): string { lines.push(` author: "${theme.source.author}"`); lines.push(` repo: ${theme.source.repo ? '"' + theme.source.repo + '"' : 'null'}`); lines.push(` url: "${theme.source.url}"`); + if (theme.source.formats !== undefined) { + if (theme.source.formats && Object.keys(theme.source.formats).length > 0) { + lines.push(' formats:'); + for (const [app, url] of Object.entries(theme.source.formats)) { + lines.push(` ${app}: "${url}"`); + } + } else { + lines.push(' formats: null'); + } + } lines.push('colors:'); for (const key of COLOR_KEYS) { diff --git a/scripts/scrape-themes.ts b/scripts/scrape-themes.ts index 8a2501bb..c8812077 100644 --- a/scripts/scrape-themes.ts +++ b/scripts/scrape-themes.ts @@ -148,25 +148,32 @@ async function downloadAndExtractThemes(ext: MarketplaceExtension): Promise = []; for (const filePath of themeFiles) { try { const fullPath = join(tmpDir, filePath); if (!existsSync(fullPath)) continue; const content = readFileSync(fullPath, 'utf8'); - const parsed = parseVSCodeThemeJson(content); - if (parsed) { - themes.push({ - name: parsed.name || filePath.replace(/\.json$/, '').replace(/.*\//, ''), - colors: parsed.colors, - extension: ext, - }); - } + const result = parseVSCodeThemeJson(content); + if (result) parsed.push(result); } catch { // Skip unparseable files } } + const themes: ExtractedTheme[] = parsed.map(p => { + let name: string; + if (parsed.length === 1) { + // Single theme — use marketplace display name, ignore internal JSON name + name = ext.displayName; + } else { + // Multiple variants — combine display name + JSON name for disambiguation + const jsonName = p.name || ''; + name = jsonName ? `${ext.displayName} (${jsonName})` : ext.displayName; + } + return { name, colors: p.colors, extension: ext }; + }); + cleanup(tmpDir); return themes; } catch { @@ -352,7 +359,10 @@ function closestCssColor(hue: number): string { // ── Filename ── function themeFilename(name: string): string { - return name.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-|-$/g, '') + '.yaml'; + const slug = (s: string) => s.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-|-$/g, ''); + const parenMatch = name.match(/^(.*?)\s*\(([^)]+)\)$/); + if (parenMatch) return `${slug(parenMatch[1])}--${slug(parenMatch[2])}.yaml`; + return slug(name) + '.yaml'; } // ── Main ── diff --git a/themes/07-dark.yaml b/themes/07-dark.yaml index f77fe7ba..d4212349 100644 --- a/themes/07-dark.yaml +++ b/themes/07-dark.yaml @@ -8,6 +8,7 @@ source: author: "flower607" repo: "https://github.com/flower-dc/07Theme" url: "https://marketplace.visualstudio.com/items?itemName=flower607.07Theme" + formats: null colors: bg: "#201B1B" fg: "#DBD7CA" diff --git a/themes/07-light.yaml b/themes/07-light.yaml index 686ab447..223e79ca 100644 --- a/themes/07-light.yaml +++ b/themes/07-light.yaml @@ -8,6 +8,7 @@ source: author: "flower607" repo: "https://github.com/flower-dc/07Theme" url: "https://marketplace.visualstudio.com/items?itemName=flower607.07Theme" + formats: null colors: bg: "#F9EEE3" fg: "#7B678A" diff --git a/themes/0a515-dark.yaml b/themes/0a515-dark.yaml index ad0dc5de..85b09149 100644 --- a/themes/0a515-dark.yaml +++ b/themes/0a515-dark.yaml @@ -8,6 +8,7 @@ source: author: "kingllama" repo: "https://github.com/kingllama/vscode-OA515" url: "https://marketplace.visualstudio.com/items?itemName=kingllama.oa515" + formats: null colors: bg: "#1E1C04" fg: "#E0D3AF" diff --git a/themes/0x96f-theme.yaml b/themes/0x96f-theme.yaml index 5d7a43ee..b095a9cd 100644 --- a/themes/0x96f-theme.yaml +++ b/themes/0x96f-theme.yaml @@ -8,6 +8,7 @@ source: author: "Filip" repo: "https://github.com/filipjanevski/0x96f-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=filipjane.0x96f-vscode-theme" + formats: null colors: bg: "#262427" fg: "#FCFCFC" diff --git a/themes/1.yaml b/themes/1.yaml deleted file mode 100644 index e7908bf6..00000000 --- a/themes/1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "1️⃣" -source: - marketplace_id: "PhanTriVietHoang.viethoang" - version: "0.0.4" - installs: 4 - rating: 0 - ratings: 0 - author: "PhanTriVietHoang" - repo: "https://github.com/phantriviethoang/vh-theme" - url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.viethoang" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#282C34" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#ABB2BF" - brightBlack: "#5C6370" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#61AFEF" - brightMagenta: "#C678DD" - brightCyan: "#56B6C2" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 56.2 - black: 0 - red: 38.9 - green: 59.1 - yellow: 67.4 - blue: 51.5 - magenta: 41.9 - cyan: 51.4 - white: 56.2 - brightBlack: 17.4 - brightRed: 38.9 - brightGreen: 59.1 - brightYellow: 67.4 - brightBlue: 51.5 - brightMagenta: 41.9 - brightCyan: 51.4 - brightWhite: 87.4 diff --git a/themes/10004ok-dark.yaml b/themes/10004ok-dark.yaml deleted file mode 100644 index d4114347..00000000 --- a/themes/10004ok-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "10004ok-dark" -source: - marketplace_id: "hyezoprk.10004ok" - version: "0.0.9" - installs: 37 - rating: 0 - ratings: 0 - author: "hyezoprk" - repo: "https://github.com/10004ok/10004ok-theme" - url: "https://marketplace.visualstudio.com/items?itemName=hyezoprk.10004ok" -colors: - bg: "#1E293B" - fg: "#D6D6D6" - black: "#000000" - red: "#CD3131" - green: "#51E1A5" - yellow: "#51E1A5" - blue: "#C7ADFB" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 260 - pair: null - contrast: - fg: 78.1 - black: 0 - red: 24.1 - green: 70.6 - yellow: 70.6 - blue: 61.5 - magenta: 27.2 - cyan: 45 - white: 87.4 - brightBlack: 19.4 - brightRed: 36 - brightGreen: 60.9 - brightYellow: 93 - brightBlue: 37.4 - brightMagenta: 42.8 - brightCyan: 52.8 - brightWhite: 87.4 diff --git a/themes/10x-dark-theme.yaml b/themes/10x-dark-theme.yaml index 74164ce6..bb1943b1 100644 --- a/themes/10x-dark-theme.yaml +++ b/themes/10x-dark-theme.yaml @@ -8,6 +8,10 @@ source: author: "Mark Gutenberger" repo: "https://github.com/gutenfries/10x-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=gutenfries.10x-dark-theme" + formats: + iterm2: "https://raw.githubusercontent.com/gutenfries/10x-Dark-Theme/main/build/templates/10xDark.itermcolors" + kitty: "https://raw.githubusercontent.com/gutenfries/10x-Dark-Theme/main/build/templates/10xDark.kitty" + vim: "https://raw.githubusercontent.com/gutenfries/10x-Dark-Theme/main/colors/10xDark.vim" colors: bg: "#313135" fg: "#C5CDD9" diff --git a/themes/1977.yaml b/themes/1977.yaml index d7b701a1..283e3bde 100644 --- a/themes/1977.yaml +++ b/themes/1977.yaml @@ -2,12 +2,13 @@ name: "1977" source: marketplace_id: "BrianYuen.1977" version: "0.0.3" - installs: 610 + installs: 611 rating: 0 ratings: 0 author: "Brian Yuen" repo: "https://github.com/brianyuen/vscode-1977" url: "https://marketplace.visualstudio.com/items?itemName=BrianYuen.1977" + formats: null colors: bg: "#0C1821" fg: "#FFFFFF" diff --git a/themes/1989.yaml b/themes/1989.yaml index e026b780..e21ebc66 100644 --- a/themes/1989.yaml +++ b/themes/1989.yaml @@ -8,6 +8,7 @@ source: author: "dereje" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dereje.1989" + formats: null colors: bg: "#303030" fg: "#FFFFFF" diff --git a/themes/19th-century.yaml b/themes/19th-century.yaml index f9a11be8..1e907ed5 100644 --- a/themes/19th-century.yaml +++ b/themes/19th-century.yaml @@ -8,6 +8,7 @@ source: author: "Skylar Coelho" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SkylarCoelho.nineteenth-century-engineer" + formats: null colors: bg: "#1B1B1B" fg: "#B6B8BA" diff --git a/themes/1dark-poncho-hc.yaml b/themes/1dark-poncho-hc.yaml deleted file mode 100644 index ff2d6e97..00000000 --- a/themes/1dark-poncho-hc.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "1Dark Poncho HC" -source: - marketplace_id: "ginfuru.ginfuru-onedark-raincoat-theme" - version: "0.9.9" - installs: 24975 - rating: 5 - ratings: 7 - author: "Ed Heltzel" - repo: "https://github.com/ginfuru/vscode-1dark-raincoat" - url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.ginfuru-onedark-raincoat-theme" -colors: - bg: "#030D22" - fg: "#FDFEFF" - black: "#303742" - red: "#FF2E97" - green: "#21FF78" - yellow: "#FFD400" - blue: "#00BEFF" - magenta: "#EA00D9" - cyan: "#AF79FE" - white: "#E3EEFE" - brightBlack: "#3A1B75" - brightRed: "#EE1682" - brightGreen: "#20F6BB" - brightYellow: "#FED400" - brightBlue: "#31BEFF" - brightMagenta: "#D328FF" - brightCyan: "#3789FE" - brightWhite: "#F0F5FF" -meta: - mode: "dark" - accent: "pink" - hue: 260 - pair: null - contrast: - fg: 106.7 - black: 0 - red: 41.2 - green: 87.2 - yellow: 82.6 - blue: 60.6 - magenta: 38.3 - cyan: 44.9 - white: 95.7 - brightBlack: 0 - brightRed: 35.1 - brightGreen: 84.2 - brightYellow: 82.4 - brightBlue: 61 - brightMagenta: 37.5 - brightCyan: 40.3 - brightWhite: 100.7 diff --git a/themes/1mm-dracula.yaml b/themes/1mm-dracula.yaml deleted file mode 100644 index 44fae00f..00000000 --- a/themes/1mm-dracula.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "1mm - Dracula" -source: - marketplace_id: "joytrekker.1mm-themes" - version: "0.0.1" - installs: 37036 - rating: 5 - ratings: 3 - author: "joytrekker" - repo: "https://github.com/joytrekker/1mm-themes" - url: "https://marketplace.visualstudio.com/items?itemName=joytrekker.1mm-themes" -colors: - bg: "#282A36" - fg: "#9DA5B4" - black: "#575757" - red: "#FF6E67" - green: "#5AF78E" - yellow: "#F4F99D" - blue: "#CAA9FA" - magenta: "#FF92D0" - cyan: "#9AEDFE" - white: "#F8F8F2" - brightBlack: "#4D4D4D" - brightRed: "#FF5555" - brightGreen: "#50FA7B" - brightYellow: "#F1FA8C" - brightBlue: "#BD93F9" - brightMagenta: "#FF79C6" - brightCyan: "#8BE9FD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 278 - pair: null - contrast: - fg: 49.3 - black: 12.9 - red: 45.7 - green: 81.1 - yellow: 95.9 - blue: 60.1 - magenta: 58.9 - cyan: 84.1 - white: 99 - brightBlack: 9.1 - brightRed: 40.4 - brightGreen: 81.9 - brightYellow: 95.6 - brightBlue: 50.7 - brightMagenta: 51.6 - brightCyan: 81 - brightWhite: 103.9 diff --git a/themes/2-colors.yaml b/themes/2-colors.yaml index 96a1bba8..dc08e013 100644 --- a/themes/2-colors.yaml +++ b/themes/2-colors.yaml @@ -8,6 +8,7 @@ source: author: "AC34" repo: "https://github.com/AC34/VSCode-Night-Cruise" url: "https://marketplace.visualstudio.com/items?itemName=AC34.vscode-night-cruise" + formats: null colors: bg: "#0E0E13" fg: "#9798A5" diff --git a/themes/2077.yaml b/themes/2077.yaml index f744b595..4a68ed35 100644 --- a/themes/2077.yaml +++ b/themes/2077.yaml @@ -8,6 +8,7 @@ source: author: "KvS" repo: "https://github.com/notKvS/2077-theme" url: "https://marketplace.visualstudio.com/items?itemName=KvS.kvs-2077" + formats: null colors: bg: "#03102C" fg: "#FDFEFF" diff --git a/themes/24.yaml b/themes/24.yaml index 59c07bc4..8f6de75b 100644 --- a/themes/24.yaml +++ b/themes/24.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/y3mm/24" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.24" + formats: null colors: bg: "#000203" fg: "#EEFFFF" diff --git a/themes/25-blue.yaml b/themes/25-blue.yaml index 966cde3f..515c4c86 100644 --- a/themes/25-blue.yaml +++ b/themes/25-blue.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "renhartoz.25-ji-nightcord-blue" version: "1.0.2" installs: 20 + rating: 0 + ratings: 0 author: "renhartoz" repo: "https://github.com/renhartoz/25ji-nightcord-blue" url: "https://marketplace.visualstudio.com/items?itemName=renhartoz.25-ji-nightcord-blue" + formats: null colors: bg: "#0E0E1A" fg: "#E5F4FF" diff --git a/themes/2am.yaml b/themes/2am.yaml index c8c72a1a..8fc9a91b 100644 --- a/themes/2am.yaml +++ b/themes/2am.yaml @@ -8,6 +8,7 @@ source: author: "33p" repo: "https://github.com/33p/2am" url: "https://marketplace.visualstudio.com/items?itemName=33p.2am" + formats: null colors: bg: "#1E1E1E" fg: "#E0E0E0" diff --git a/themes/365-6-coder-theme.yaml b/themes/365-6-coder-theme.yaml index 2490216b..d3642775 100644 --- a/themes/365-6-coder-theme.yaml +++ b/themes/365-6-coder-theme.yaml @@ -1,4 +1,4 @@ -name: "365.6 coder theme" +name: "365.6 Coder theme" source: marketplace_id: "dheeraj-kumar-rao.365-6--coder--theme" version: "0.3.0" @@ -8,6 +8,7 @@ source: author: "dheeraj-kumar-rao" repo: "https://github.com/rao123dk/365.6-Coder-theme" url: "https://marketplace.visualstudio.com/items?itemName=dheeraj-kumar-rao.365-6--coder--theme" + formats: null colors: bg: "#02202C" fg: "#0B6E6E" diff --git a/themes/365-day-october-dark.yaml b/themes/365-day-october-dark.yaml deleted file mode 100644 index 16f0ce87..00000000 --- a/themes/365-day-october-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "365 Day october dark" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#FEFBE9" - fg: "#714620" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#000000" - brightBlack: "#666666" - brightRed: "#FF6B00" - brightGreen: "#23D18B" - brightYellow: "#D4A15D" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#B3753E" - brightWhite: "#000000" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 85 - black: 103.3 - red: 71.2 - green: 45.2 - yellow: 14.3 - blue: 70.5 - magenta: 68.2 - cyan: 50.5 - white: 103.3 - brightBlack: 76 - brightRed: 51 - brightGreen: 35.1 - brightYellow: 42.9 - brightBlue: 57.9 - brightMagenta: 52.7 - brightCyan: 62.5 - brightWhite: 103.3 diff --git a/themes/3xay.yaml b/themes/3xay.yaml index b224efef..0ecb16cb 100644 --- a/themes/3xay.yaml +++ b/themes/3xay.yaml @@ -8,6 +8,7 @@ source: author: "3XAY" repo: "https://github.com/3XAY/3xay-dark" url: "https://marketplace.visualstudio.com/items?itemName=3XAY.3xay-dark" + formats: null colors: bg: "#010101" fg: "#FFFFFF" diff --git a/themes/4-colours.yaml b/themes/4-colours.yaml index 4a9aa93b..6c6031ed 100644 --- a/themes/4-colours.yaml +++ b/themes/4-colours.yaml @@ -1,4 +1,4 @@ -name: "4-Colours" +name: "4 Colours" source: marketplace_id: "gpem.4-colours" version: "1.1.27" @@ -8,6 +8,7 @@ source: author: "gpem" repo: "https://github.com/Germain-Gadel/4-colours" url: "https://marketplace.visualstudio.com/items?itemName=gpem.4-colours" + formats: null colors: bg: "#1F2127" fg: "#F1F1F1" diff --git a/themes/404-flat.yaml b/themes/404-flat.yaml index 76b98132..bf450e9e 100644 --- a/themes/404-flat.yaml +++ b/themes/404-flat.yaml @@ -8,6 +8,7 @@ source: author: "Arthur 404 dev" repo: "https://github.com/404-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=arthur404dev.theme-404" + formats: null colors: bg: "#161926" fg: "#B9C3D5" diff --git a/themes/404-muted.yaml b/themes/404-muted.yaml index a99a945d..f8b17a1d 100644 --- a/themes/404-muted.yaml +++ b/themes/404-muted.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "404mat.404muted" version: "1.0.0" installs: 140 + rating: 0 + ratings: 0 author: "404mat" repo: "https://github.com/404mat/404muted" url: "https://marketplace.visualstudio.com/items?itemName=404mat.404muted" + formats: null colors: bg: "#000815" fg: "#FBE179" diff --git a/themes/42nd.yaml b/themes/42nd.yaml deleted file mode 100644 index f6013dd8..00000000 --- a/themes/42nd.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "42nd" -source: - marketplace_id: "fawkes42.42nd" - version: "0.0.15" - installs: 118 - rating: 0 - ratings: 0 - author: "fawkes42" - repo: "https://github.com/fawkes42/42nd" - url: "https://marketplace.visualstudio.com/items?itemName=fawkes42.42nd" -colors: - bg: "#0E0D0D" - fg: "#C9D1D9" - black: "#0E0D0D" - red: "#DB6B6B" - green: "#72C572" - yellow: "#CAB577" - blue: "#79C0FF" - magenta: "#D2A8FF" - cyan: "#72C5AA" - white: "#C9D1D9" - brightBlack: "#373737" - brightRed: "#FF5C5C" - brightGreen: "#8CE88C" - brightYellow: "#FCE788" - brightBlue: "#80D0FF" - brightMagenta: "#A57EDE" - brightCyan: "#89F2D6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 77.8 - black: 0 - red: 41.3 - green: 60.8 - yellow: 62.8 - blue: 65 - magenta: 64.8 - cyan: 62.4 - white: 77.8 - brightBlack: 0 - brightRed: 45.5 - brightGreen: 79.8 - brightYellow: 91.9 - brightBlue: 72.4 - brightMagenta: 42.9 - brightCyan: 87.1 - brightWhite: 107.6 diff --git a/themes/4am-session-aqua.yaml b/themes/4am-session-aqua.yaml index dc43b95f..22d9ae2f 100644 --- a/themes/4am-session-aqua.yaml +++ b/themes/4am-session-aqua.yaml @@ -8,6 +8,7 @@ source: author: "4Themes" repo: "https://github.com/4-themes/4am-session-theme" url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" + formats: null colors: bg: "#1E353E" fg: "#D4D4D4" diff --git a/themes/4am-session-blue.yaml b/themes/4am-session-blue.yaml index 28502a90..96e9b8da 100644 --- a/themes/4am-session-blue.yaml +++ b/themes/4am-session-blue.yaml @@ -8,6 +8,7 @@ source: author: "4Themes" repo: "https://github.com/4-themes/4am-session-theme" url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" + formats: null colors: bg: "#161A2B" fg: "#D4D4D4" diff --git a/themes/4am-session-green.yaml b/themes/4am-session-green.yaml index bee98cf1..f4af605c 100644 --- a/themes/4am-session-green.yaml +++ b/themes/4am-session-green.yaml @@ -8,6 +8,7 @@ source: author: "4Themes" repo: "https://github.com/4-themes/4am-session-theme" url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" + formats: null colors: bg: "#102111" fg: "#D4D4D4" diff --git a/themes/4am-session-orange.yaml b/themes/4am-session-orange.yaml index f985d8b1..ca09c63d 100644 --- a/themes/4am-session-orange.yaml +++ b/themes/4am-session-orange.yaml @@ -8,6 +8,7 @@ source: author: "4Themes" repo: "https://github.com/4-themes/4am-session-theme" url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" + formats: null colors: bg: "#211910" fg: "#D4D4D4" diff --git a/themes/4am-session-red.yaml b/themes/4am-session-red.yaml index 0de17a0d..d2cfa3e9 100644 --- a/themes/4am-session-red.yaml +++ b/themes/4am-session-red.yaml @@ -8,6 +8,7 @@ source: author: "4Themes" repo: "https://github.com/4-themes/4am-session-theme" url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" + formats: null colors: bg: "#211010" fg: "#D4D4D4" diff --git a/themes/4am-session-yellow.yaml b/themes/4am-session-yellow.yaml index 694ec20e..6946e616 100644 --- a/themes/4am-session-yellow.yaml +++ b/themes/4am-session-yellow.yaml @@ -8,6 +8,7 @@ source: author: "4Themes" repo: "https://github.com/4-themes/4am-session-theme" url: "https://marketplace.visualstudio.com/items?itemName=4Themes.4am-session-theme" + formats: null colors: bg: "#212010" fg: "#D4D4D4" diff --git a/themes/6szn.yaml b/themes/6szn.yaml deleted file mode 100644 index 6e7edcae..00000000 --- a/themes/6szn.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "6szn" -source: - marketplace_id: "6.6szn-dark" - version: "1.11.0" - installs: 358 - rating: 5 - ratings: 1 - author: "6" - repo: "https://github.com/exeDavid/6szn-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=6.6szn-dark" -colors: - bg: "#1A1B26" - fg: "#AAB3E5" - black: "#000000" - red: "#FF5370" - green: "#C7F59B" - yellow: "#FFDB8E" - blue: "#70B0FF" - magenta: "#BAACFF" - cyan: "#7FDAFF" - white: "#E4F3FA" - brightBlack: "#7C85B3" - brightRed: "#FF5370" - brightGreen: "#C7F59B" - brightYellow: "#FFDB8E" - brightBlue: "#70B0FF" - brightMagenta: "#BAACFF" - brightCyan: "#7FDAFF" - brightWhite: "#E4F3FA" -meta: - mode: "dark" - accent: "red" - hue: 280 - pair: null - contrast: - fg: 61 - black: 0 - red: 43.1 - green: 90.7 - yellow: 85.9 - blue: 56.5 - magenta: 61.8 - cyan: 75.6 - white: 96.8 - brightBlack: 36.7 - brightRed: 43.1 - brightGreen: 90.7 - brightYellow: 85.9 - brightBlue: 56.5 - brightMagenta: 61.8 - brightCyan: 75.6 - brightWhite: 96.8 diff --git a/themes/73nko-dark.yaml b/themes/73nko-dark.yaml index 4dee7a26..e250da9d 100644 --- a/themes/73nko-dark.yaml +++ b/themes/73nko-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "73nko.73nko-theme" version: "1.0.0" installs: 20 + rating: 0 + ratings: 0 author: "73nko" repo: "https://github.com/73nko/73nko-theme" url: "https://marketplace.visualstudio.com/items?itemName=73nko.73nko-theme" + formats: null colors: bg: "#1F0A32" fg: "#EDE5F2" diff --git a/themes/73nko-light.yaml b/themes/73nko-light.yaml index fcaf25a6..f707fac8 100644 --- a/themes/73nko-light.yaml +++ b/themes/73nko-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "73nko.73nko-theme" version: "1.0.0" installs: 20 + rating: 0 + ratings: 0 author: "73nko" repo: "https://github.com/73nko/73nko-theme" url: "https://marketplace.visualstudio.com/items?itemName=73nko.73nko-theme" + formats: null colors: bg: "#F5F2F7" fg: "#2A1040" diff --git a/themes/7lou-theme.yaml b/themes/7lou-theme.yaml index bb487311..cfb37df4 100644 --- a/themes/7lou-theme.yaml +++ b/themes/7lou-theme.yaml @@ -8,6 +8,7 @@ source: author: "Bachir Amiri" repo: "https://github.com/BachirAmiri/7lou-vscode" url: "https://marketplace.visualstudio.com/items?itemName=bachiramiri.7lou-vscode" + formats: null colors: bg: "#212B38" fg: "#F8F8F2" diff --git a/themes/8-bit-dark.yaml b/themes/8-bit-dark.yaml deleted file mode 100644 index bbd5c93e..00000000 --- a/themes/8-bit-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "8-Bit Dark" -source: - marketplace_id: "handsomeone.8bit" - version: "0.2.3" - installs: 29600 - rating: 4.75 - ratings: 12 - author: "Zhou Qi" - repo: "https://github.com/HandsomeOne/8bit" - url: "https://marketplace.visualstudio.com/items?itemName=handsomeone.8bit" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFFF00" - blue: "#0000FF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#FF0000" - brightGreen: "#00FF00" - brightYellow: "#FFFF00" - brightBlue: "#0000FF" - brightMagenta: "#FF00FF" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: "8-Bit Light" - contrast: - fg: 107.9 - black: 0 - red: 37.5 - green: 86.5 - yellow: 102.7 - blue: 16.2 - magenta: 46.2 - cyan: 92.2 - white: 107.9 - brightBlack: 0 - brightRed: 37.5 - brightGreen: 86.5 - brightYellow: 102.7 - brightBlue: 16.2 - brightMagenta: 46.2 - brightCyan: 92.2 - brightWhite: 107.9 diff --git a/themes/8-bit-light-high-contrast.yaml b/themes/8-bit-light-high-contrast.yaml deleted file mode 100644 index 198d57e3..00000000 --- a/themes/8-bit-light-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "8-Bit Light High Contrast" -source: - marketplace_id: "pbower.8-bit-high-contrast" - version: "0.0.1" - installs: 248 - rating: 0 - ratings: 0 - author: "pbower" - repo: "https://github.com/pbower/8-Bit-High-Contrast" - url: "https://marketplace.visualstudio.com/items?itemName=pbower.8-bit-high-contrast" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#FFFFFF" - red: "#CC0000" - green: "#009933" - yellow: "#FFFF00" - blue: "#0033CC" - magenta: "#996633" - cyan: "#0033CC" - white: "#000000" - brightBlack: "#FFFFFF" - brightRed: "#CC0000" - brightGreen: "#009933" - brightYellow: "#FFFF00" - brightBlue: "#0033CC" - brightMagenta: "#996633" - brightCyan: "#0033CC" - brightWhite: "#000000" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 106 - black: 0 - red: 76.5 - green: 64.3 - yellow: 0 - blue: 89 - magenta: 73.6 - cyan: 89 - white: 106 - brightBlack: 0 - brightRed: 76.5 - brightGreen: 64.3 - brightYellow: 0 - brightBlue: 89 - brightMagenta: 73.6 - brightCyan: 89 - brightWhite: 106 diff --git a/themes/8-bit-light.yaml b/themes/8-bit-light.yaml deleted file mode 100644 index 584be5b7..00000000 --- a/themes/8-bit-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "8-Bit Light" -source: - marketplace_id: "handsomeone.8bit" - version: "0.2.3" - installs: 29600 - rating: 4.75 - ratings: 12 - author: "Zhou Qi" - repo: "https://github.com/HandsomeOne/8bit" - url: "https://marketplace.visualstudio.com/items?itemName=handsomeone.8bit" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#FFFFFF" - red: "#FF0000" - green: "#00BB00" - yellow: "#FFFF00" - blue: "#0000FF" - magenta: "#FF00FF" - cyan: "#00BBFF" - white: "#000000" - brightBlack: "#FFFFFF" - brightRed: "#FF0000" - brightGreen: "#00BB00" - brightYellow: "#FFFF00" - brightBlue: "#0000FF" - brightMagenta: "#FF00FF" - brightCyan: "#00BBFF" - brightWhite: "#000000" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "8-Bit Dark" - contrast: - fg: 106 - black: 0 - red: 64.1 - green: 49.7 - yellow: 0 - blue: 85.8 - magenta: 55.6 - cyan: 42.5 - white: 106 - brightBlack: 0 - brightRed: 64.1 - brightGreen: 49.7 - brightYellow: 0 - brightBlue: 85.8 - brightMagenta: 55.6 - brightCyan: 42.5 - brightWhite: 106 diff --git a/themes/8-bit-theme.yaml b/themes/8-bit-theme.yaml index 453721b6..e2668662 100644 --- a/themes/8-bit-theme.yaml +++ b/themes/8-bit-theme.yaml @@ -8,6 +8,7 @@ source: author: "cicero-lino" repo: "https://github.com/CiceroLino/cicero-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=cicero-lino.cicero-lino-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/80-neon-vibes-fluor.yaml b/themes/80-neon-vibes-fluor.yaml index 293183ee..3d3105a7 100644 --- a/themes/80-neon-vibes-fluor.yaml +++ b/themes/80-neon-vibes-fluor.yaml @@ -8,6 +8,7 @@ source: author: "Caique Lourenço" repo: "https://github.com/caiqueex/neon-beat-vscode" url: "https://marketplace.visualstudio.com/items?itemName=caiqueex.neon-beat" + formats: null colors: bg: "#091827" fg: "#A6F164" diff --git a/themes/80-neon-vibes.yaml b/themes/80-neon-vibes.yaml index e4bcae24..b80af538 100644 --- a/themes/80-neon-vibes.yaml +++ b/themes/80-neon-vibes.yaml @@ -8,6 +8,7 @@ source: author: "Caique Lourenço" repo: "https://github.com/caiqueex/neon-beat-vscode" url: "https://marketplace.visualstudio.com/items?itemName=caiqueex.neon-beat" + formats: null colors: bg: "#091827" fg: "#ECEDEE" diff --git a/themes/808s-heartbreak-theme.yaml b/themes/808s-heartbreak-theme.yaml index df9fc93d..42bfd7d0 100644 --- a/themes/808s-heartbreak-theme.yaml +++ b/themes/808s-heartbreak-theme.yaml @@ -8,6 +8,7 @@ source: author: "Chris Nevers" repo: "http://github.com/chrisnevers/808s-and-heartbreak-theme" url: "https://marketplace.visualstudio.com/items?itemName=chrisnevers.808s-and-heartbreak-theme" + formats: null colors: bg: "#ECECEC" fg: "#867F7F" diff --git a/themes/8v.yaml b/themes/8v.yaml index 31c91ae8..fc27b46d 100644 --- a/themes/8v.yaml +++ b/themes/8v.yaml @@ -8,6 +8,7 @@ source: author: "Voithila" repo: "https://github.com/voithila/8v-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Voithila.8V" + formats: null colors: bg: "#000000" fg: "#DDDDDD" diff --git a/themes/8x8-dark-fork.yaml b/themes/8x8-dark-fork.yaml deleted file mode 100644 index a79d41b4..00000000 --- a/themes/8x8-dark-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "8x8_dark - Fork" -source: - marketplace_id: "xynny.dullgrey-theme" - version: "0.0.1" - installs: 1816 - rating: 0 - ratings: 0 - author: "xynny" - repo: "https://github.com/xynnylol/vsthemes" - url: "https://marketplace.visualstudio.com/items?itemName=xynny.dullgrey-theme" -colors: - bg: "#29343D" - fg: "#FCFCFC" - black: "#141A1F" - red: "#F94144" - green: "#90BE6D" - yellow: "#F9C74F" - blue: "#577590" - magenta: "#F3722C" - cyan: "#43AA8B" - white: "#FCFCFC" - brightBlack: "#1F272E" - brightRed: "#FB7274" - brightGreen: "#ADCE93" - brightYellow: "#FAD47A" - brightBlue: "#7C98B0" - brightMagenta: "#F69460" - brightCyan: "#6BC4A9" - brightWhite: "#FCFCFC" -meta: - mode: "dark" - accent: "orange" - hue: 243 - pair: null - contrast: - fg: 100.1 - black: 0 - red: 34 - green: 54.3 - yellow: 71.1 - blue: 22.5 - magenta: 41.5 - cyan: 41.7 - white: 100.1 - brightBlack: 0 - brightRed: 44.3 - brightGreen: 65.2 - brightYellow: 77.4 - brightBlue: 39.2 - brightMagenta: 52.3 - brightCyan: 56 - brightWhite: 100.1 diff --git a/themes/8x8-darker.yaml b/themes/8x8-darker.yaml deleted file mode 100644 index 100de8d7..00000000 --- a/themes/8x8-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "8x8 - Darker" -source: - marketplace_id: "keepflying.csr-blue" - version: "0.0.22" - installs: 180 - rating: 0 - ratings: 0 - author: "keepflying" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=keepflying.csr-blue" -colors: - bg: "#E6E6E6" - fg: "#000000" - black: "#29343D" - red: "#F8961E" - green: "#8EFF38" - yellow: "#F3722C" - blue: "#577590" - magenta: "#F9C74F" - cyan: "#43AA8B" - white: "#555555" - brightBlack: "#394956" - brightRed: "#F8961E" - brightGreen: "#90BE6D" - brightYellow: "#F3722C" - brightBlue: "#577590" - brightMagenta: "#F9C74F" - brightCyan: "#43AA8B" - brightWhite: "#ABABAB" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 91.3 - black: 84 - red: 29 - green: 0 - yellow: 39.8 - blue: 58.7 - magenta: 11.4 - cyan: 39.6 - white: 71.2 - brightBlack: 76.7 - brightRed: 29 - brightGreen: 27.4 - brightYellow: 39.8 - brightBlue: 58.7 - brightMagenta: 11.4 - brightCyan: 39.6 - brightWhite: 30.5 diff --git a/themes/8x8-fork.yaml b/themes/8x8-fork.yaml deleted file mode 100644 index 97fb80f1..00000000 --- a/themes/8x8-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "8x8 - Fork" -source: - marketplace_id: "keepflying.8x8theme" - version: "0.0.1" - installs: 457 - rating: 0 - ratings: 0 - author: "keepflying" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=keepflying.8x8theme" -colors: - bg: "#F0F0F0" - fg: "#000000" - black: "#29343D" - red: "#F8961E" - green: "#8EFF38" - yellow: "#F3722C" - blue: "#577590" - magenta: "#F9C74F" - cyan: "#43AA8B" - white: "#555555" - brightBlack: "#394956" - brightRed: "#F8961E" - brightGreen: "#90BE6D" - brightYellow: "#F3722C" - brightBlue: "#577590" - brightMagenta: "#F9C74F" - brightCyan: "#43AA8B" - brightWhite: "#ABABAB" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 97.1 - black: 89.8 - red: 34.8 - green: 0 - yellow: 45.6 - blue: 64.5 - magenta: 17.2 - cyan: 45.5 - white: 77 - brightBlack: 82.5 - brightRed: 34.8 - brightGreen: 33.2 - brightYellow: 45.6 - brightBlue: 64.5 - brightMagenta: 17.2 - brightCyan: 45.5 - brightWhite: 36.4 diff --git a/themes/9-way-ticket.yaml b/themes/9-way-ticket.yaml index 3c46686c..b01fc55d 100644 --- a/themes/9-way-ticket.yaml +++ b/themes/9-way-ticket.yaml @@ -8,6 +8,7 @@ source: author: "flover" repo: null url: "https://marketplace.visualstudio.com/items?itemName=flover.fromis-day" + formats: null colors: bg: "#E2DAD2" fg: "#3C3836" diff --git a/themes/90s-digital-dawning.yaml b/themes/90s-digital-dawning.yaml index 4f4caa89..1c51d267 100644 --- a/themes/90s-digital-dawning.yaml +++ b/themes/90s-digital-dawning.yaml @@ -6,6 +6,7 @@ source: author: "Basilecom Inc." repo: null url: "https://marketplace.visualstudio.com/items?itemName=BasilecomInc.digital-dawning-95" + formats: null colors: bg: "#1F1F1F" fg: "#BFBFBF" diff --git a/themes/a-2-theme.yaml b/themes/a-2-theme.yaml index 8020ce82..708adc1f 100644 --- a/themes/a-2-theme.yaml +++ b/themes/a-2-theme.yaml @@ -8,6 +8,7 @@ source: author: "Amit.Gupta" repo: "https://github.com/Amit7976/A.2-Theme" url: "https://marketplace.visualstudio.com/items?itemName=AmitGupta60600.a2-theme" + formats: null colors: bg: "#0F0F0F" fg: "#BABABA" diff --git a/themes/a-cup-of-coffee.yaml b/themes/a-cup-of-coffee.yaml index dfe7f8ee..5c04dbaa 100644 --- a/themes/a-cup-of-coffee.yaml +++ b/themes/a-cup-of-coffee.yaml @@ -8,6 +8,7 @@ source: author: "Henri Lima" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.a-cup-of-coffee" + formats: null colors: bg: "#1E1E1E" fg: "#BEBEBE" diff --git a/themes/a-github-dark-dimmed-1-red.yaml b/themes/a-github-dark-dimmed-1-red.yaml deleted file mode 100644 index 2f6dd78c..00000000 --- a/themes/a-github-dark-dimmed-1-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark Dimmed 1 🔴 Red" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#312226" - fg: "#CCB0B7" - black: "#6C555B" - red: "#EF7756" - green: "#42AD6E" - yellow: "#BA962E" - blue: "#6E96F2" - magenta: "#BC80E2" - cyan: "#49C2D8" - white: "#AF939A" - brightBlack: "#7E656C" - brightRed: "#FB987E" - brightGreen: "#56C682" - brightYellow: "#CDB048" - brightBlue: "#81B1FE" - brightMagenta: "#E4BBF2" - brightCyan: "#62D1E6" - brightWhite: "#EACFD6" -meta: - mode: "dark" - accent: "orange" - hue: 1 - pair: null - contrast: - fg: 60.3 - black: 15.4 - red: 45 - green: 44.8 - yellow: 44.9 - blue: 43.9 - magenta: 44 - cyan: 58.3 - white: 44.6 - brightBlack: 22.3 - brightRed: 57.8 - brightGreen: 57.3 - brightYellow: 57.6 - brightBlue: 56.4 - brightMagenta: 70.9 - brightCyan: 66.9 - brightWhite: 78.4 diff --git a/themes/a-github-dark-dimmed-2-orange.yaml b/themes/a-github-dark-dimmed-2-orange.yaml deleted file mode 100644 index ce611682..00000000 --- a/themes/a-github-dark-dimmed-2-orange.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark Dimmed 2 🟠 Orange" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#2D2519" - fg: "#C4B6A1" - black: "#655A48" - red: "#EF7756" - green: "#42AD6E" - yellow: "#BA962E" - blue: "#6E96F2" - magenta: "#BC80E2" - cyan: "#49C2D8" - white: "#A79983" - brightBlack: "#776B56" - brightRed: "#FB987E" - brightGreen: "#56C682" - brightYellow: "#CDB048" - brightBlue: "#81B1FE" - brightMagenta: "#E4BBF2" - brightCyan: "#62D1E6" - brightWhite: "#E2D6C1" -meta: - mode: "dark" - accent: "orange" - hue: 78 - pair: null - contrast: - fg: 60.7 - black: 15.5 - red: 45 - green: 44.8 - yellow: 44.9 - blue: 43.9 - magenta: 44 - cyan: 58.3 - white: 45 - brightBlack: 22.7 - brightRed: 57.8 - brightGreen: 57.3 - brightYellow: 57.6 - brightBlue: 56.4 - brightMagenta: 70.8 - brightCyan: 66.9 - brightWhite: 79.3 diff --git a/themes/a-github-dark-dimmed-3-green.yaml b/themes/a-github-dark-dimmed-3-green.yaml deleted file mode 100644 index ce7fb671..00000000 --- a/themes/a-github-dark-dimmed-3-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark Dimmed 3 🟢 Green" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#1E2A20" - fg: "#AABFAD" - black: "#506153" - red: "#EF7756" - green: "#42AD6E" - yellow: "#BA962E" - blue: "#6E96F2" - magenta: "#BC80E2" - cyan: "#49C2D8" - white: "#8DA290" - brightBlack: "#5F7362" - brightRed: "#FB987E" - brightGreen: "#56C682" - brightYellow: "#CDB048" - brightBlue: "#81B1FE" - brightMagenta: "#E4BBF2" - brightCyan: "#62D1E6" - brightWhite: "#CADECD" -meta: - mode: "dark" - accent: "orange" - hue: 149 - pair: null - contrast: - fg: 61.6 - black: 15.9 - red: 44.9 - green: 44.6 - yellow: 44.7 - blue: 43.7 - magenta: 43.8 - cyan: 58.1 - white: 45.8 - brightBlack: 23.2 - brightRed: 57.6 - brightGreen: 57.1 - brightYellow: 57.5 - brightBlue: 56.2 - brightMagenta: 70.7 - brightCyan: 66.7 - brightWhite: 80.1 diff --git a/themes/a-github-dark-dimmed-4-blue.yaml b/themes/a-github-dark-dimmed-4-blue.yaml deleted file mode 100644 index 50032773..00000000 --- a/themes/a-github-dark-dimmed-4-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark Dimmed 4 🔵 Blue" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#1B2832" - fg: "#A6BCCC" - black: "#4D5F6C" - red: "#EF7756" - green: "#42AD6E" - yellow: "#BA962E" - blue: "#6E96F2" - magenta: "#BC80E2" - cyan: "#49C2D8" - white: "#889FB0" - brightBlack: "#5B707F" - brightRed: "#FB987E" - brightGreen: "#56C682" - brightYellow: "#CDB048" - brightBlue: "#81B1FE" - brightMagenta: "#E4BBF2" - brightCyan: "#62D1E6" - brightWhite: "#C6DBEA" -meta: - mode: "dark" - accent: "orange" - hue: 242 - pair: null - contrast: - fg: 61.3 - black: 16 - red: 45 - green: 44.7 - yellow: 44.8 - blue: 43.8 - magenta: 43.9 - cyan: 58.2 - white: 45.5 - brightBlack: 23 - brightRed: 57.7 - brightGreen: 57.2 - brightYellow: 57.6 - brightBlue: 56.3 - brightMagenta: 70.8 - brightCyan: 66.8 - brightWhite: 79.7 diff --git a/themes/a-github-dark-dimmed-5-purple.yaml b/themes/a-github-dark-dimmed-5-purple.yaml deleted file mode 100644 index 195384d7..00000000 --- a/themes/a-github-dark-dimmed-5-purple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark Dimmed 5 🟣 Purple" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#282431" - fg: "#BBB4CB" - black: "#5F586B" - red: "#EF7756" - green: "#42AD6E" - yellow: "#BA962E" - blue: "#6E96F2" - magenta: "#BC80E2" - cyan: "#49C2D8" - white: "#9E97AF" - brightBlack: "#70697E" - brightRed: "#FB987E" - brightGreen: "#56C682" - brightYellow: "#CDB048" - brightBlue: "#81B1FE" - brightMagenta: "#E4BBF2" - brightCyan: "#62D1E6" - brightWhite: "#DAD3E9" -meta: - mode: "dark" - accent: "orange" - hue: 299 - pair: null - contrast: - fg: 60.5 - black: 15.4 - red: 45.1 - green: 44.8 - yellow: 44.9 - blue: 43.9 - magenta: 44.1 - cyan: 58.4 - white: 44.8 - brightBlack: 22.6 - brightRed: 57.8 - brightGreen: 57.3 - brightYellow: 57.7 - brightBlue: 56.4 - brightMagenta: 70.9 - brightCyan: 66.9 - brightWhite: 78.7 diff --git a/themes/a-github-dark-dimmed-brown.yaml b/themes/a-github-dark-dimmed-brown.yaml deleted file mode 100644 index b96b5e34..00000000 --- a/themes/a-github-dark-dimmed-brown.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark Dimmed 🟤 Brown" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#1A1112" - fg: "#796E6F" - black: "#3D3334" - red: "#C37051" - green: "#44936B" - yellow: "#988540" - blue: "#6C81C5" - magenta: "#A373B6" - cyan: "#59A5B9" - white: "#675B5C" - brightBlack: "#483E3F" - brightRed: "#CF8A71" - brightGreen: "#55A97E" - brightYellow: "#A99B55" - brightBlue: "#7D98D1" - brightMagenta: "#C5A4CA" - brightCyan: "#6AB2C5" - brightWhite: "#8E8183" -meta: - mode: "dark" - accent: "orange" - hue: 11 - pair: null - contrast: - fg: 26.9 - black: 0 - red: 37.2 - green: 36.3 - yellow: 37 - blue: 35.9 - magenta: 36.6 - cyan: 47.5 - white: 18.9 - brightBlack: 7.9 - brightRed: 47.6 - brightGreen: 46.7 - brightYellow: 47.3 - brightBlue: 46.1 - brightMagenta: 58.2 - brightCyan: 54.4 - brightWhite: 36 diff --git a/themes/a-github-dark-dimmed-muted.yaml b/themes/a-github-dark-dimmed-muted.yaml deleted file mode 100644 index 3b0b2026..00000000 --- a/themes/a-github-dark-dimmed-muted.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark Dimmed 🩶 Muted" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#2D343D" - fg: "#BECAD5" - black: "#626B76" - red: "#D6867E" - green: "#6DA56E" - yellow: "#BC944E" - blue: "#6F9CD7" - magenta: "#A98FD2" - cyan: "#5FC1C9" - white: "#A2ACB7" - brightBlack: "#737C87" - brightRed: "#EF9D95" - brightGreen: "#84BD84" - brightYellow: "#D0AD65" - brightBlue: "#7EB6EE" - brightMagenta: "#D9C0F2" - brightCyan: "#74D0D7" - brightWhite: "#DEE9F5" -meta: - mode: "dark" - accent: "purple" - hue: 255 - pair: null - contrast: - fg: 67.6 - black: 18.8 - red: 42.6 - green: 40.7 - yellow: 42 - blue: 41.6 - magenta: 42.3 - cyan: 55.2 - white: 50.7 - brightBlack: 26.5 - brightRed: 55 - brightGreen: 53.2 - brightYellow: 54.5 - brightBlue: 54.4 - brightMagenta: 68.4 - brightCyan: 63.8 - brightWhite: 86.7 diff --git a/themes/a-github-dark-dimmed-vampire.yaml b/themes/a-github-dark-dimmed-vampire.yaml deleted file mode 100644 index 44749aa3..00000000 --- a/themes/a-github-dark-dimmed-vampire.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark Dimmed 🧛 Vampire" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#1A1433" - fg: "#877EBD" - black: "#42396C" - red: "#DF854D" - green: "#3AAB89" - yellow: "#A69E4C" - blue: "#32A7D6" - magenta: "#8996EC" - cyan: "#69C3AF" - white: "#7267A9" - brightBlack: "#4F4480" - brightRed: "#ECA277" - brightGreen: "#4EC49F" - brightYellow: "#B7B864" - brightBlue: "#5EBEE2" - brightMagenta: "#C4C7FB" - brightCyan: "#7DD2BD" - brightWhite: "#9E97D1" -meta: - mode: "dark" - accent: "yellow" - hue: 289 - pair: null - contrast: - fg: 36.3 - black: 7.4 - red: 47.5 - green: 46.2 - yellow: 47.4 - blue: 47.8 - magenta: 47.5 - cyan: 60.2 - white: 26.1 - brightBlack: 11.8 - brightRed: 60 - brightGreen: 58.8 - brightYellow: 60.2 - brightBlue: 59.8 - brightMagenta: 73.7 - brightCyan: 68.8 - brightWhite: 48.4 diff --git a/themes/a-github-dark-high-contrast-1-red.yaml b/themes/a-github-dark-high-contrast-1-red.yaml deleted file mode 100644 index a7c5b649..00000000 --- a/themes/a-github-dark-high-contrast-1-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark High Contrast 1 🔴 Red" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#1F0F14" - fg: "#FFF9FF" - black: "#A3838C" - red: "#FF9492" - green: "#26CD4D" - yellow: "#F0B72F" - blue: "#71B7FF" - magenta: "#CB9EFF" - cyan: "#39C5CF" - white: "#FCE3EA" - brightBlack: "#C9A9B1" - brightRed: "#FFB1AF" - brightGreen: "#4AE168" - brightYellow: "#F7C843" - brightBlue: "#91CBFF" - brightMagenta: "#DBB7FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 360 - pair: null - contrast: - fg: 104.3 - black: 39.5 - red: 60.2 - green: 60.7 - yellow: 68 - blue: 60.2 - magenta: 59.9 - cyan: 61.1 - white: 92.9 - brightBlack: 59.4 - brightRed: 70.9 - brightGreen: 71.7 - brightYellow: 76.1 - brightBlue: 71 - brightMagenta: 71.1 - brightCyan: 69.7 - brightWhite: 107.1 diff --git a/themes/a-github-dark-high-contrast-2-orange.yaml b/themes/a-github-dark-high-contrast-2-orange.yaml deleted file mode 100644 index 509468fa..00000000 --- a/themes/a-github-dark-high-contrast-2-orange.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark High Contrast 2 🟠 Orange" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#1C1305" - fg: "#FFFFEE" - black: "#9B8B72" - red: "#FF9492" - green: "#26CD4D" - yellow: "#F0B72F" - blue: "#71B7FF" - magenta: "#CB9EFF" - cyan: "#39C5CF" - white: "#F5E9D6" - brightBlack: "#C0B096" - brightRed: "#FFB1AF" - brightGreen: "#4AE168" - brightYellow: "#F7C843" - brightBlue: "#91CBFF" - brightMagenta: "#DBB7FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFE" -meta: - mode: "dark" - accent: "green" - hue: 78 - pair: null - contrast: - fg: 106.3 - black: 40.3 - red: 60.2 - green: 60.6 - yellow: 67.9 - blue: 60.1 - magenta: 59.8 - cyan: 61.1 - white: 93.6 - brightBlack: 59.8 - brightRed: 70.8 - brightGreen: 71.7 - brightYellow: 76 - brightBlue: 70.9 - brightMagenta: 71.1 - brightCyan: 69.6 - brightWhite: 107 diff --git a/themes/a-github-dark-high-contrast-3-green.yaml b/themes/a-github-dark-high-contrast-3-green.yaml deleted file mode 100644 index a0b2f07c..00000000 --- a/themes/a-github-dark-high-contrast-3-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark High Contrast 3 🟢 Green" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#0B180E" - fg: "#F5FFF7" - black: "#7C9581" - red: "#FF9492" - green: "#26CD4D" - yellow: "#F0B72F" - blue: "#71B7FF" - magenta: "#CB9EFF" - cyan: "#39C5CF" - white: "#DEF0E1" - brightBlack: "#A1BAA5" - brightRed: "#FFB1AF" - brightGreen: "#4AE168" - brightYellow: "#F7C843" - brightBlue: "#91CBFF" - brightMagenta: "#DBB7FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 151 - pair: null - contrast: - fg: 105.3 - black: 41.1 - red: 60.1 - green: 60.6 - yellow: 67.9 - blue: 60.1 - magenta: 59.8 - cyan: 61 - white: 94.1 - brightBlack: 60.7 - brightRed: 70.8 - brightGreen: 71.6 - brightYellow: 76 - brightBlue: 70.9 - brightMagenta: 71 - brightCyan: 69.6 - brightWhite: 107 diff --git a/themes/a-github-dark-high-contrast-4-blue.yaml b/themes/a-github-dark-high-contrast-4-blue.yaml deleted file mode 100644 index 465c98b6..00000000 --- a/themes/a-github-dark-high-contrast-4-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark High Contrast 4 🔵 Blue" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#071620" - fg: "#F2FFFF" - black: "#7891A4" - red: "#FF9492" - green: "#26CD4D" - yellow: "#F0B72F" - blue: "#71B7FF" - magenta: "#CB9EFF" - cyan: "#39C5CF" - white: "#DAEEFC" - brightBlack: "#9CB7CA" - brightRed: "#FFB1AF" - brightGreen: "#4AE168" - brightYellow: "#F7C843" - brightBlue: "#91CBFF" - brightMagenta: "#DBB7FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 239 - pair: null - contrast: - fg: 105.3 - black: 40.6 - red: 60.2 - green: 60.6 - yellow: 67.9 - blue: 60.1 - magenta: 59.8 - cyan: 61 - white: 94 - brightBlack: 60.5 - brightRed: 70.8 - brightGreen: 71.6 - brightYellow: 76 - brightBlue: 70.9 - brightMagenta: 71.1 - brightCyan: 69.6 - brightWhite: 107 diff --git a/themes/a-github-dark-high-contrast-5-purple.yaml b/themes/a-github-dark-high-contrast-5-purple.yaml deleted file mode 100644 index ceffcce6..00000000 --- a/themes/a-github-dark-high-contrast-5-purple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark High Contrast 5 🟣 Purple" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#171220" - fg: "#FFFDFF" - black: "#9188A3" - red: "#FF9492" - green: "#26CD4D" - yellow: "#F0B72F" - blue: "#71B7FF" - magenta: "#CB9EFF" - cyan: "#39C5CF" - white: "#EDE7FC" - brightBlack: "#B6ADC9" - brightRed: "#FFB1AF" - brightGreen: "#4AE168" - brightYellow: "#F7C843" - brightBlue: "#91CBFF" - brightMagenta: "#DBB7FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 300 - pair: null - contrast: - fg: 106.1 - black: 39.9 - red: 60.2 - green: 60.6 - yellow: 68 - blue: 60.1 - magenta: 59.9 - cyan: 61.1 - white: 93.3 - brightBlack: 59.4 - brightRed: 70.9 - brightGreen: 71.7 - brightYellow: 76.1 - brightBlue: 71 - brightMagenta: 71.1 - brightCyan: 69.6 - brightWhite: 107.1 diff --git a/themes/a-github-dark-muted.yaml b/themes/a-github-dark-muted.yaml deleted file mode 100644 index ca736c00..00000000 --- a/themes/a-github-dark-muted.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark 🩶 Muted" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#161C25" - fg: "#D6E2ED" - black: "#555D67" - red: "#E19088" - green: "#74AE77" - yellow: "#C59D58" - blue: "#76A7E0" - magenta: "#B499DD" - cyan: "#5FC1C9" - white: "#C0CAD6" - brightBlack: "#7C8590" - brightRed: "#F3A8A0" - brightGreen: "#8BC68E" - brightYellow: "#D8B66D" - brightBlue: "#88BFF1" - brightMagenta: "#CEADF1" - brightCyan: "#74D0D7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 258 - pair: null - contrast: - fg: 86.6 - black: 17.4 - red: 52.3 - green: 49.6 - yellow: 51.1 - blue: 51.3 - magenta: 52.1 - cyan: 59.6 - white: 72.3 - brightBlack: 35.1 - brightRed: 64.3 - brightGreen: 62.5 - brightYellow: 63.8 - brightBlue: 63.5 - brightMagenta: 63.9 - brightCyan: 68.2 - brightWhite: 106.3 diff --git a/themes/a-github-dark-vampire.yaml b/themes/a-github-dark-vampire.yaml deleted file mode 100644 index 5c4788b9..00000000 --- a/themes/a-github-dark-vampire.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Dark 🧛 Vampire" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#181625" - fg: "#FFFFFF" - black: "#656379" - red: "#EA8F59" - green: "#00B990" - yellow: "#AFA84F" - blue: "#3BB1DF" - magenta: "#93A0FB" - cyan: "#69C3AF" - white: "#EBE8FF" - brightBlack: "#9693AE" - brightRed: "#EEAE89" - brightGreen: "#0ED3A7" - brightYellow: "#BFC16A" - brightBlue: "#71C7E3" - brightMagenta: "#B2B7FF" - brightCyan: "#7DD2BD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 290 - pair: null - contrast: - fg: 106.8 - black: 21.6 - red: 53 - green: 52.2 - yellow: 52.6 - blue: 52.9 - magenta: 53.3 - cyan: 60.3 - white: 93.3 - brightBlack: 44.4 - brightRed: 65.3 - brightGreen: 65.1 - brightYellow: 65.2 - brightBlue: 65 - brightMagenta: 65.5 - brightCyan: 69 - brightWhite: 106.8 diff --git a/themes/a-github-light-1-red.yaml b/themes/a-github-light-1-red.yaml deleted file mode 100644 index 5d9d63d9..00000000 --- a/themes/a-github-light-1-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Light 1 🔴 Red" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#F5F5F5" - fg: "#342026" - black: "#342026" - red: "#E1000D" - green: "#006906" - yellow: "#5B2200" - blue: "#0061F5" - magenta: "#873BF8" - cyan: "#00838F" - white: "#896670" - brightBlack: "#724F5A" - brightRed: "#B5000E" - brightGreen: "#008517" - brightYellow: "#723200" - brightBlue: "#0086FF" - brightMagenta: "#A966FF" - brightCyan: "#0097BD" - brightWhite: "#A6838D" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 96.1 - black: 96.1 - red: 65.6 - green: 77.4 - yellow: 91.9 - blue: 68.8 - magenta: 68.9 - cyan: 64.9 - white: 68.6 - brightBlack: 78.4 - brightRed: 75.8 - brightGreen: 66.6 - brightYellow: 85.8 - brightBlue: 56.6 - brightMagenta: 55.9 - brightCyan: 55 - brightWhite: 55 diff --git a/themes/a-github-light-2-orange.yaml b/themes/a-github-light-2-orange.yaml deleted file mode 100644 index 6c843e54..00000000 --- a/themes/a-github-light-2-orange.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Light 2 🟠 Orange" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#F5F5F5" - fg: "#2F2513" - black: "#2F2513" - red: "#E1000D" - green: "#006906" - yellow: "#5B2200" - blue: "#0061F5" - magenta: "#873BF8" - cyan: "#00838F" - white: "#806E52" - brightBlack: "#69583B" - brightRed: "#B5000E" - brightGreen: "#008517" - brightYellow: "#723200" - brightBlue: "#0086FF" - brightMagenta: "#A966FF" - brightCyan: "#0097BD" - brightWhite: "#9D8B6F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 95.9 - black: 95.9 - red: 65.6 - green: 77.4 - yellow: 91.9 - blue: 68.8 - magenta: 68.9 - cyan: 64.9 - white: 68.1 - brightBlack: 77.7 - brightRed: 75.8 - brightGreen: 66.6 - brightYellow: 85.8 - brightBlue: 56.6 - brightMagenta: 55.9 - brightCyan: 55 - brightWhite: 54.4 diff --git a/themes/a-github-light-3-green.yaml b/themes/a-github-light-3-green.yaml deleted file mode 100644 index 913856a7..00000000 --- a/themes/a-github-light-3-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Light 3 🟢 Green" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#F5F5F5" - fg: "#1B2B1E" - black: "#1B2B1E" - red: "#E1000D" - green: "#006906" - yellow: "#5B2200" - blue: "#0061F5" - magenta: "#873BF8" - cyan: "#00838F" - white: "#5E7963" - brightBlack: "#47634C" - brightRed: "#B5000E" - brightGreen: "#008517" - brightYellow: "#723200" - brightBlue: "#0086FF" - brightMagenta: "#A966FF" - brightCyan: "#0097BD" - brightWhite: "#7B9680" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 95.7 - black: 95.7 - red: 65.6 - green: 77.4 - yellow: 91.9 - blue: 68.8 - magenta: 68.9 - cyan: 64.9 - white: 67.2 - brightBlack: 76.9 - brightRed: 75.8 - brightGreen: 66.6 - brightYellow: 85.8 - brightBlue: 56.6 - brightMagenta: 55.9 - brightCyan: 55 - brightWhite: 53.5 diff --git a/themes/a-github-light-4-blue.yaml b/themes/a-github-light-4-blue.yaml deleted file mode 100644 index e28917d6..00000000 --- a/themes/a-github-light-4-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Light 4 🔵 Blue" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#F5F5F5" - fg: "#172935" - black: "#172935" - red: "#E1000D" - green: "#006906" - yellow: "#5B2200" - blue: "#0061F5" - magenta: "#873BF8" - cyan: "#00838F" - white: "#58758A" - brightBlack: "#415F74" - brightRed: "#B5000E" - brightGreen: "#008517" - brightYellow: "#723200" - brightBlue: "#0086FF" - brightMagenta: "#A966FF" - brightCyan: "#0097BD" - brightWhite: "#7592A7" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 95.8 - black: 95.8 - red: 65.6 - green: 77.4 - yellow: 91.9 - blue: 68.8 - magenta: 68.9 - cyan: 64.9 - white: 67.7 - brightBlack: 77.2 - brightRed: 75.8 - brightGreen: 66.6 - brightYellow: 85.8 - brightBlue: 56.6 - brightMagenta: 55.9 - brightCyan: 55 - brightWhite: 54 diff --git a/themes/a-github-light-5-purple.yaml b/themes/a-github-light-5-purple.yaml deleted file mode 100644 index 53e22a85..00000000 --- a/themes/a-github-light-5-purple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A GitHub Light 5 🟣 Purple" -source: - marketplace_id: "markmiro.colorful-github-vscode-theme" - version: "6.8.0" - installs: 893 - rating: 5 - ratings: 1 - author: "Mark Miro" - repo: "https://github.com/markmiro/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" -colors: - bg: "#F5F5F5" - fg: "#292334" - black: "#292334" - red: "#E1000D" - green: "#006906" - yellow: "#5B2200" - blue: "#0061F5" - magenta: "#873BF8" - cyan: "#00838F" - white: "#756B89" - brightBlack: "#5F5573" - brightRed: "#B5000E" - brightGreen: "#008517" - brightYellow: "#723200" - brightBlue: "#0086FF" - brightMagenta: "#A966FF" - brightCyan: "#0097BD" - brightWhite: "#9288A6" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 96.1 - black: 96.1 - red: 65.6 - green: 77.4 - yellow: 91.9 - blue: 68.8 - magenta: 68.9 - cyan: 64.9 - white: 68.5 - brightBlack: 78 - brightRed: 75.8 - brightGreen: 66.6 - brightYellow: 85.8 - brightBlue: 56.6 - brightMagenta: 55.9 - brightCyan: 55 - brightWhite: 54.8 diff --git a/themes/a-green-cat-dimmed.yaml b/themes/a-green-cat-dimmed.yaml index 723e0ef1..1222247e 100644 --- a/themes/a-green-cat-dimmed.yaml +++ b/themes/a-green-cat-dimmed.yaml @@ -8,6 +8,7 @@ source: author: "a_green_cat" repo: "https://github.com/KiraGreifeneder/a-green-cat-theme" url: "https://marketplace.visualstudio.com/items?itemName=agreencat.a-green-cat-theme" + formats: null colors: bg: "#282932" fg: "#D4D4D4" diff --git a/themes/a-green-cat.yaml b/themes/a-green-cat.yaml index 81fbb6b3..7fe663d4 100644 --- a/themes/a-green-cat.yaml +++ b/themes/a-green-cat.yaml @@ -8,6 +8,7 @@ source: author: "a_green_cat" repo: "https://github.com/KiraGreifeneder/a-green-cat-theme" url: "https://marketplace.visualstudio.com/items?itemName=agreencat.a-green-cat-theme" + formats: null colors: bg: "#101010" fg: "#D4D4D4" diff --git a/themes/a-j-light.yaml b/themes/a-j-light.yaml deleted file mode 100644 index 1856753a..00000000 --- a/themes/a-j-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "A/J Light" -source: - marketplace_id: "Earendel.apple-jazz-theme" - version: "0.1.0" - installs: 576 - rating: 5 - ratings: 1 - author: "Earendel" - repo: "https://github.com/shoguncoffee/apple-jazz" - url: "https://marketplace.visualstudio.com/items?itemName=Earendel.apple-jazz-theme" -colors: - bg: "#FFFFFF" - fg: "#1F2328" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 102.8 - black: 101.5 - red: 74.8 - green: 85.2 - yellow: 98 - blue: 74.9 - magenta: 74.3 - cyan: 73.8 - white: 71.6 - brightBlack: 81.8 - brightRed: 85.2 - brightGreen: 74.6 - brightYellow: 92 - brightBlue: 60.7 - brightMagenta: 59.3 - brightCyan: 63.3 - brightWhite: 57.2 diff --git a/themes/aauu.yaml b/themes/aauu.yaml index 689d67b8..23a962b9 100644 --- a/themes/aauu.yaml +++ b/themes/aauu.yaml @@ -8,6 +8,7 @@ source: author: "black_black_cat" repo: "https://github.com/black-black-cat/vscode-firefox-flow" url: "https://marketplace.visualstudio.com/items?itemName=blackblackcat.vscode-flow" + formats: null colors: bg: "#2F2F2F" fg: "#D7DCE2" diff --git a/themes/ab-dark.yaml b/themes/ab-dark.yaml index 2080ce28..d3dc7f69 100644 --- a/themes/ab-dark.yaml +++ b/themes/ab-dark.yaml @@ -8,6 +8,7 @@ source: author: "ABABIL" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ABABIL.ab-dark" + formats: null colors: bg: "#0A0A0A" fg: "#F5F12E" diff --git a/themes/abcdef.yaml b/themes/abcdef.yaml index a0cc06ec..878b6fa2 100644 --- a/themes/abcdef.yaml +++ b/themes/abcdef.yaml @@ -8,6 +8,7 @@ source: author: "jxne00" repo: "https://github.com/jxne00/abcdef-theme" url: "https://marketplace.visualstudio.com/items?itemName=jxne00.abcdef" + formats: null colors: bg: "#262936" fg: "#9DA5B3" diff --git a/themes/abe-land.yaml b/themes/abe-land.yaml index 167f2dce..bc695ae9 100644 --- a/themes/abe-land.yaml +++ b/themes/abe-land.yaml @@ -8,6 +8,7 @@ source: author: "abesoftware" repo: "https://github.com/ablardo/abeland" url: "https://marketplace.visualstudio.com/items?itemName=abesoftware.abeland" + formats: null colors: bg: "#2E2E30" fg: "#FFFFFF" diff --git a/themes/abissal.yaml b/themes/abissal.yaml index 67c7543f..18cc8aee 100644 --- a/themes/abissal.yaml +++ b/themes/abissal.yaml @@ -8,6 +8,7 @@ source: author: "Henrique" repo: "https://github.com/Henriquehnnm/abissal-theme" url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.abissal" + formats: null colors: bg: "#282A36" fg: "#F2F8F8" diff --git a/themes/aboc.yaml b/themes/aboc.yaml index 1084f68f..de113af0 100644 --- a/themes/aboc.yaml +++ b/themes/aboc.yaml @@ -8,6 +8,7 @@ source: author: "aboc" repo: null url: "https://marketplace.visualstudio.com/items?itemName=aboc.aboc" + formats: null colors: bg: "#000000" fg: "#D4D4D4" diff --git a/themes/abolkog-dark.yaml b/themes/abolkog-dark.yaml deleted file mode 100644 index a1fafd9a..00000000 --- a/themes/abolkog-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ABOLKOG Dark" -source: - marketplace_id: "abolkog.vscode-abolkog-light" - version: "1.1.0" - installs: 2730 - rating: 5 - ratings: 1 - author: "Khalid Elshafie" - repo: "https://github.com/abolkog/vscode-abolkog-theme" - url: "https://marketplace.visualstudio.com/items?itemName=abolkog.vscode-abolkog-light" -colors: - bg: "#282C34" - fg: "#D8DEE9" - black: "#3B4252" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: "ABOLKOG Light" - contrast: - fg: 82.2 - black: 0 - red: 29.8 - green: 58.5 - yellow: 73.2 - blue: 45.4 - magenta: 43.3 - cyan: 59.5 - white: 89.1 - brightBlack: 12.2 - brightRed: 29.8 - brightGreen: 58.5 - brightYellow: 73.2 - brightBlue: 45.4 - brightMagenta: 43.3 - brightCyan: 57.4 - brightWhite: 93 diff --git a/themes/abolkog-light.yaml b/themes/abolkog-light.yaml deleted file mode 100644 index 8d4e4d3f..00000000 --- a/themes/abolkog-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ABOLKOG Light" -source: - marketplace_id: "abolkog.vscode-abolkog-light" - version: "1.1.0" - installs: 2730 - rating: 5 - ratings: 1 - author: "Khalid Elshafie" - repo: "https://github.com/abolkog/vscode-abolkog-theme" - url: "https://marketplace.visualstudio.com/items?itemName=abolkog.vscode-abolkog-light" -colors: - bg: "#FFFFFF" - fg: "#24292E" - black: "#3B4252" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "ABOLKOG Dark" - contrast: - fg: 101.5 - black: 93.4 - red: 67.7 - green: 39.7 - yellow: 25.7 - blue: 52.2 - magenta: 54.3 - cyan: 38.7 - white: 10.7 - brightBlack: 85.6 - brightRed: 67.7 - brightGreen: 39.7 - brightYellow: 25.7 - brightBlue: 52.2 - brightMagenta: 54.3 - brightCyan: 40.7 - brightWhite: 0 diff --git a/themes/abraham.yaml b/themes/abraham.yaml index 2ccd23d0..1aac318b 100644 --- a/themes/abraham.yaml +++ b/themes/abraham.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Abraham.customalabaster" version: "0.75.0" installs: 174 + rating: 0 + ratings: 0 author: "Abraham" repo: "https://github.com/abeprincec/customalabaster" url: "https://marketplace.visualstudio.com/items?itemName=Abraham.customalabaster" + formats: null colors: bg: "#1E293B" fg: "#94A3B8" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: 260 + pair: null contrast: fg: 48.1 black: 0 diff --git a/themes/absent-contrast.yaml b/themes/absent-contrast.yaml deleted file mode 100644 index a7132fa9..00000000 --- a/themes/absent-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "absent-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0E1114" - fg: "#AEB9C4" - black: "#181E23" - red: "#BA0E2E" - green: "#228A96" - yellow: "#6BA77F" - blue: "#E6EAEF" - magenta: "#228A96" - cyan: "#6BA77F" - white: "#BDC6CF" - brightBlack: "#384450" - brightRed: "#F03E5F" - brightGreen: "#48C7D6" - brightYellow: "#ABCDB6" - brightBlue: "#FFFFFF" - brightMagenta: "#48C7D6" - brightCyan: "#ABCDB6" - brightWhite: "#E9ECEF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 63.3 - black: 0 - red: 21 - green: 33.5 - yellow: 47.3 - blue: 93.4 - magenta: 33.5 - cyan: 47.3 - white: 70.9 - brightBlack: 8.9 - brightRed: 37.3 - brightGreen: 63.1 - brightYellow: 71 - brightBlue: 107.4 - brightMagenta: 63.1 - brightCyan: 71 - brightWhite: 94.7 diff --git a/themes/absent-light.yaml b/themes/absent-light.yaml deleted file mode 100644 index da03d545..00000000 --- a/themes/absent-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "absent-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#465360" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#228A96" - yellow: "#6BA77F" - blue: "#465360" - magenta: "#228A96" - cyan: "#6BA77F" - white: "#51606F" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#48C7D6" - brightYellow: "#ABCDB6" - brightBlue: "#738699" - brightMagenta: "#48C7D6" - brightCyan: "#ABCDB6" - brightWhite: "#738699" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 87.3 - black: 0 - red: 80.3 - green: 67.6 - yellow: 54 - blue: 87.3 - magenta: 67.6 - cyan: 54 - white: 82.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 38.8 - brightYellow: 31.3 - brightBlue: 65.1 - brightMagenta: 38.8 - brightCyan: 31.3 - brightWhite: 65.1 diff --git a/themes/absent.yaml b/themes/absent.yaml deleted file mode 100644 index deb96422..00000000 --- a/themes/absent.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "absent" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#252C33" - fg: "#AEB9C4" - black: "#303942" - red: "#BA0E2E" - green: "#228A96" - yellow: "#6BA77F" - blue: "#E6EAEF" - magenta: "#228A96" - cyan: "#6BA77F" - white: "#BDC6CF" - brightBlack: "#505F6E" - brightRed: "#F03E5F" - brightGreen: "#48C7D6" - brightYellow: "#ABCDB6" - brightBlue: "#FFFFFF" - brightMagenta: "#48C7D6" - brightCyan: "#ABCDB6" - brightWhite: "#E9ECEF" -meta: - mode: "dark" - accent: "orange" - hue: 248 - pair: null - contrast: - fg: 59.7 - black: 0 - red: 17.4 - green: 29.9 - yellow: 43.7 - blue: 89.8 - magenta: 29.9 - cyan: 43.7 - white: 67.3 - brightBlack: 15.4 - brightRed: 33.7 - brightGreen: 59.5 - brightYellow: 67.4 - brightBlue: 103.8 - brightMagenta: 59.5 - brightCyan: 67.4 - brightWhite: 91.1 diff --git a/themes/abstract-mh.yaml b/themes/abstract-mh.yaml index 25192f32..1a19d6fc 100644 --- a/themes/abstract-mh.yaml +++ b/themes/abstract-mh.yaml @@ -8,6 +8,7 @@ source: author: "Miguel HP" repo: "https://github.com/MHP24/vsc-abstract-theme" url: "https://marketplace.visualstudio.com/items?itemName=MiguelHP.Abstract-MH" + formats: null colors: bg: "#1C1C1C" fg: "#D4DCE0" diff --git a/themes/abys-zora-dark.yaml b/themes/abys-zora-dark.yaml index 37d3e1f7..5c75a4a7 100644 --- a/themes/abys-zora-dark.yaml +++ b/themes/abys-zora-dark.yaml @@ -8,6 +8,7 @@ source: author: "haris" repo: "https://github.com/Elhary/Zora" url: "https://marketplace.visualstudio.com/items?itemName=haris.zoradark" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/abysal-marble.yaml b/themes/abysal-marble.yaml index 07388d84..425ff305 100644 --- a/themes/abysal-marble.yaml +++ b/themes/abysal-marble.yaml @@ -8,6 +8,7 @@ source: author: "Andr3xDev" repo: "https://github.com/your-user/abysal-theme" url: "https://marketplace.visualstudio.com/items?itemName=Andr3xDev.abysal-theme" + formats: null colors: bg: "#DCDCDC" fg: "#2F2F2F" diff --git a/themes/abysal-obsidian.yaml b/themes/abysal-obsidian.yaml index a8d42a33..963227e0 100644 --- a/themes/abysal-obsidian.yaml +++ b/themes/abysal-obsidian.yaml @@ -8,6 +8,7 @@ source: author: "Andr3xDev" repo: "https://github.com/your-user/abysal-theme" url: "https://marketplace.visualstudio.com/items?itemName=Andr3xDev.abysal-theme" + formats: null colors: bg: "#1C1C1C" fg: "#D4D4D4" diff --git a/themes/abyskai.yaml b/themes/abyskai.yaml deleted file mode 100644 index dc0e8c83..00000000 --- a/themes/abyskai.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Abyskai" -source: - marketplace_id: "jamiesmiths.abyski" - version: "0.0.15" - installs: 2358 - rating: 5 - ratings: 2 - author: "jamiesmiths" - repo: "https://github.com/jsmithdev/abyski" - url: "https://marketplace.visualstudio.com/items?itemName=jamiesmiths.abyski" -colors: - bg: "#0C0C18" - fg: "#DDDDDD" - black: "#111111" - red: "#FF9DA4" - green: "#D1F1A9" - yellow: "#FFEEAD" - blue: "#BBDAFF" - magenta: "#EBBBFF" - cyan: "#99FFFF" - white: "#CCCCCC" - brightBlack: "#333333" - brightRed: "#FF7882" - brightGreen: "#3AFFC4" - brightYellow: "#FFE580" - brightBlue: "#80BAFF" - brightMagenta: "#D778FF" - brightCyan: "#78FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 283 - pair: null - contrast: - fg: 85.7 - black: 0 - red: 64.1 - green: 91.6 - yellow: 96.5 - blue: 82 - magenta: 75.5 - cyan: 96.6 - white: 75.4 - brightBlack: 0 - brightRed: 52.4 - brightGreen: 89.7 - brightYellow: 91.2 - brightBlue: 62.9 - brightMagenta: 51 - brightCyan: 94.6 - brightWhite: 107.6 diff --git a/themes/abyss.yaml b/themes/abyss.yaml index ee04bd51..e92fcab8 100644 --- a/themes/abyss.yaml +++ b/themes/abyss.yaml @@ -8,6 +8,7 @@ source: author: "Tommytang111" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tommy-tang.custom-abyss-theme" + formats: null colors: bg: "#000C18" fg: "#6688CC" diff --git a/themes/abyssal-anime.yaml b/themes/abyssal-anime.yaml deleted file mode 100644 index bde56403..00000000 --- a/themes/abyssal-anime.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Abyssal-Anime" -source: - marketplace_id: "zen0x.abyssal" - version: "0.0.5" - installs: 42 - rating: 0 - ratings: 0 - author: "zen0x" - repo: "https://github.com/zen0x00/abyssal-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" -colors: - bg: "#14110F" - fg: "#E6DFD6" - black: "#14110F" - red: "#E07A5F" - green: "#A3B18A" - yellow: "#E6B566" - blue: "#7DAEA3" - magenta: "#B48EAD" - cyan: "#89B0AE" - white: "#E6DFD6" - brightBlack: "#8F867C" - brightRed: "#E07A5F" - brightGreen: "#A3B18A" - brightYellow: "#E6B566" - brightBlue: "#7DAEA3" - brightMagenta: "#B48EAD" - brightCyan: "#89B0AE" - brightWhite: "#E6DFD6" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 87.3 - black: 0 - red: 45.6 - green: 56.6 - yellow: 66.4 - blue: 52.7 - magenta: 46.9 - cyan: 54.9 - white: 87.3 - brightBlack: 37.7 - brightRed: 45.6 - brightGreen: 56.6 - brightYellow: 66.4 - brightBlue: 52.7 - brightMagenta: 46.9 - brightCyan: 54.9 - brightWhite: 87.3 diff --git a/themes/abyssal-black.yaml b/themes/abyssal-black.yaml deleted file mode 100644 index 725b6d49..00000000 --- a/themes/abyssal-black.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Abyssal-Black" -source: - marketplace_id: "zen0x.abyssal" - version: "0.0.5" - installs: 42 - rating: 0 - ratings: 0 - author: "zen0x" - repo: "https://github.com/zen0x00/abyssal-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" -colors: - bg: "#0D0D0D" - fg: "#FFFFFF" - black: "#0D0D0D" - red: "#A4A4A4" - green: "#B6B6B6" - yellow: "#CECECE" - blue: "#8D8D8D" - magenta: "#9B9B9B" - cyan: "#B0B0B0" - white: "#FFFFFF" - brightBlack: "#8D8D8D" - brightRed: "#A4A4A4" - brightGreen: "#B6B6B6" - brightYellow: "#CECECE" - brightBlue: "#8D8D8D" - brightMagenta: "#9B9B9B" - brightCyan: "#B0B0B0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 107.6 - black: 0 - red: 52.7 - green: 62.6 - yellow: 76.6 - blue: 40.8 - magenta: 48 - cyan: 59.3 - white: 107.6 - brightBlack: 40.8 - brightRed: 52.7 - brightGreen: 62.6 - brightYellow: 76.6 - brightBlue: 40.8 - brightMagenta: 48 - brightCyan: 59.3 - brightWhite: 107.6 diff --git a/themes/abyssal-blue.yaml b/themes/abyssal-blue.yaml index 88b7613c..5b36ab5d 100644 --- a/themes/abyssal-blue.yaml +++ b/themes/abyssal-blue.yaml @@ -8,6 +8,7 @@ source: author: "Krisada-3131" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Krisada-3131.serpentine-syntax" + formats: null colors: bg: "#05090D" fg: "#CED9E4" diff --git a/themes/abyssal-catppuccin.yaml b/themes/abyssal-catppuccin.yaml deleted file mode 100644 index 2c22f6ce..00000000 --- a/themes/abyssal-catppuccin.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Abyssal-Catppuccin" -source: - marketplace_id: "zen0x.abyssal" - version: "0.0.5" - installs: 42 - rating: 0 - ratings: 0 - author: "zen0x" - repo: "https://github.com/zen0x00/abyssal-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" -colors: - bg: "#1E1E2E" - fg: "#CDD6F4" - black: "#1E1E2E" - red: "#F38BA8" - green: "#A6E3A1" - yellow: "#F9E2AF" - blue: "#89B4FA" - magenta: "#F5C2E7" - cyan: "#94E2D5" - white: "#CDD6F4" - brightBlack: "#6C7086" - brightRed: "#F38BA8" - brightGreen: "#A6E3A1" - brightYellow: "#F9E2AF" - brightBlue: "#89B4FA" - brightMagenta: "#F5C2E7" - brightCyan: "#94E2D5" - brightWhite: "#CDD6F4" -meta: - mode: "dark" - accent: "red" - hue: 284 - pair: null - contrast: - fg: 80 - black: 0 - red: 54.7 - green: 78.3 - yellow: 88.4 - blue: 59.1 - magenta: 76.7 - cyan: 78.2 - white: 80 - brightBlack: 25.8 - brightRed: 54.7 - brightGreen: 78.3 - brightYellow: 88.4 - brightBlue: 59.1 - brightMagenta: 76.7 - brightCyan: 78.2 - brightWhite: 80 diff --git a/themes/abyssal-dark.yaml b/themes/abyssal-dark.yaml deleted file mode 100644 index 0c69059d..00000000 --- a/themes/abyssal-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Abyssal-Dark" -source: - marketplace_id: "zen0x.abyssal" - version: "0.0.5" - installs: 42 - rating: 0 - ratings: 0 - author: "zen0x" - repo: "https://github.com/zen0x00/abyssal-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" -colors: - bg: "#061115" - fg: "#D9D7D6" - black: "#061115" - red: "#DF5B61" - green: "#78B892" - yellow: "#ECD28B" - blue: "#6791C9" - magenta: "#C488EC" - cyan: "#7ACFE4" - white: "#D9D7D6" - brightBlack: "#455054" - brightRed: "#DF5B61" - brightGreen: "#78B892" - brightYellow: "#ECD28B" - brightBlue: "#5A84BC" - brightMagenta: "#C488EC" - brightCyan: "#7ACFE4" - brightWhite: "#D9D7D6" -meta: - mode: "dark" - accent: "orange" - hue: 222 - pair: null - contrast: - fg: 82.1 - black: 0 - red: 38.2 - green: 56.1 - yellow: 80.1 - blue: 41.6 - magenta: 50.9 - cyan: 69.9 - white: 82.1 - brightBlack: 13.1 - brightRed: 38.2 - brightGreen: 56.1 - brightYellow: 80.1 - brightBlue: 35.4 - brightMagenta: 50.9 - brightCyan: 69.9 - brightWhite: 82.1 diff --git a/themes/abyssal-dracula.yaml b/themes/abyssal-dracula.yaml deleted file mode 100644 index b6e88793..00000000 --- a/themes/abyssal-dracula.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Abyssal-Dracula" -source: - marketplace_id: "zen0x.abyssal" - version: "0.0.5" - installs: 42 - rating: 0 - ratings: 0 - author: "zen0x" - repo: "https://github.com/zen0x00/abyssal-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" -colors: - bg: "#282A36" - fg: "#F8F8F2" - black: "#282A36" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#6272A4" - magenta: "#BD93F9" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF5555" - brightGreen: "#50FA7B" - brightYellow: "#F1FA8C" - brightBlue: "#6272A4" - brightMagenta: "#BD93F9" - brightCyan: "#8BE9FD" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "green" - hue: 278 - pair: null - contrast: - fg: 99 - black: 0 - red: 40.4 - green: 81.9 - yellow: 95.6 - blue: 25.1 - magenta: 50.7 - cyan: 81 - white: 99 - brightBlack: 25.1 - brightRed: 40.4 - brightGreen: 81.9 - brightYellow: 95.6 - brightBlue: 25.1 - brightMagenta: 50.7 - brightCyan: 81 - brightWhite: 99 diff --git a/themes/abyssal-e-ink.yaml b/themes/abyssal-e-ink.yaml deleted file mode 100644 index 74269e63..00000000 --- a/themes/abyssal-e-ink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Abyssal-E-Ink" -source: - marketplace_id: "zen0x.abyssal" - version: "0.0.5" - installs: 42 - rating: 0 - ratings: 0 - author: "zen0x" - repo: "https://github.com/zen0x00/abyssal-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#2A2A2A" - green: "#3A3A3A" - yellow: "#4A4A4A" - blue: "#1A1A1A" - magenta: "#2E2E2E" - cyan: "#3E3E3E" - white: "#FFFFFF" - brightBlack: "#4A4A4A" - brightRed: "#2A2A2A" - brightGreen: "#3A3A3A" - brightYellow: "#4A4A4A" - brightBlue: "#1A1A1A" - brightMagenta: "#2E2E2E" - brightCyan: "#3E3E3E" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 106 - black: 106 - red: 101.1 - green: 96.3 - yellow: 90.3 - blue: 104.3 - magenta: 100.1 - cyan: 94.8 - white: 0 - brightBlack: 90.3 - brightRed: 101.1 - brightGreen: 96.3 - brightYellow: 90.3 - brightBlue: 104.3 - brightMagenta: 100.1 - brightCyan: 94.8 - brightWhite: 0 diff --git a/themes/abyssal-everforest.yaml b/themes/abyssal-everforest.yaml deleted file mode 100644 index 98dafcf8..00000000 --- a/themes/abyssal-everforest.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Abyssal-Everforest" -source: - marketplace_id: "zen0x.abyssal" - version: "0.0.5" - installs: 42 - rating: 0 - ratings: 0 - author: "zen0x" - repo: "https://github.com/zen0x00/abyssal-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" -colors: - bg: "#2D353B" - fg: "#D3C6AA" - black: "#2D353B" - red: "#E67E80" - green: "#A7C080" - yellow: "#DBBC7F" - blue: "#7FBBB3" - magenta: "#D699B6" - cyan: "#83C092" - white: "#D3C6AA" - brightBlack: "#606B6F" - brightRed: "#E67E80" - brightGreen: "#A7C080" - brightYellow: "#DBBC7F" - brightBlue: "#7FBBB3" - brightMagenta: "#D699B6" - brightCyan: "#83C092" - brightWhite: "#D3C6AA" -meta: - mode: "dark" - accent: "orange" - hue: 240 - pair: null - contrast: - fg: 66.6 - black: 0 - red: 43.1 - green: 57.5 - yellow: 62.4 - blue: 53.4 - magenta: 50.5 - cyan: 54.7 - white: 66.6 - brightBlack: 18.3 - brightRed: 43.1 - brightGreen: 57.5 - brightYellow: 62.4 - brightBlue: 53.4 - brightMagenta: 50.5 - brightCyan: 54.7 - brightWhite: 66.6 diff --git a/themes/abyssal-gruvbox.yaml b/themes/abyssal-gruvbox.yaml deleted file mode 100644 index f1e1ef06..00000000 --- a/themes/abyssal-gruvbox.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Abyssal-Gruvbox" -source: - marketplace_id: "zen0x.abyssal" - version: "0.0.5" - installs: 42 - rating: 0 - ratings: 0 - author: "zen0x" - repo: "https://github.com/zen0x00/abyssal-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" -colors: - bg: "#282828" - fg: "#D4BE98" - black: "#282828" - red: "#EA6962" - green: "#A9B665" - yellow: "#D8A657" - blue: "#7DAEA3" - magenta: "#D3869B" - cyan: "#89B482" - white: "#D4BE98" - brightBlack: "#7C6F64" - brightRed: "#EA6962" - brightGreen: "#A9B665" - brightYellow: "#D8A657" - brightBlue: "#7DAEA3" - brightMagenta: "#D3869B" - brightCyan: "#89B482" - brightWhite: "#D4BE98" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 65.6 - black: 0 - red: 40.5 - green: 55.6 - yellow: 55.4 - blue: 49.8 - magenta: 45.5 - cyan: 52.2 - white: 65.6 - brightBlack: 24.5 - brightRed: 40.5 - brightGreen: 55.6 - brightYellow: 55.4 - brightBlue: 49.8 - brightMagenta: 45.5 - brightCyan: 52.2 - brightWhite: 65.6 diff --git a/themes/abyssal-hacker.yaml b/themes/abyssal-hacker.yaml deleted file mode 100644 index 2256af1f..00000000 --- a/themes/abyssal-hacker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Abyssal-Hacker" -source: - marketplace_id: "zen0x.abyssal" - version: "0.0.5" - installs: 42 - rating: 0 - ratings: 0 - author: "zen0x" - repo: "https://github.com/zen0x00/abyssal-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" -colors: - bg: "#0B0C16" - fg: "#DDF7FF" - black: "#0B0C16" - red: "#50F872" - green: "#4FE88F" - yellow: "#50F7D4" - blue: "#829DD4" - magenta: "#86A7DF" - cyan: "#7CF8F7" - white: "#DDF7FF" - brightBlack: "#6A6E95" - brightRed: "#50F872" - brightGreen: "#4FE88F" - brightYellow: "#50F7D4" - brightBlue: "#829DD4" - brightMagenta: "#86A7DF" - brightCyan: "#7CF8F7" - brightWhite: "#DDF7FF" -meta: - mode: "dark" - accent: "green" - hue: 279 - pair: null - contrast: - fg: 99.3 - black: 0 - red: 84.4 - green: 76.7 - yellow: 86.8 - blue: 49 - magenta: 53.8 - cyan: 90.8 - white: 99.3 - brightBlack: 27.4 - brightRed: 84.4 - brightGreen: 76.7 - brightYellow: 86.8 - brightBlue: 49 - brightMagenta: 53.8 - brightCyan: 90.8 - brightWhite: 99.3 diff --git a/themes/abyssal-latte.yaml b/themes/abyssal-latte.yaml deleted file mode 100644 index 42cfa359..00000000 --- a/themes/abyssal-latte.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Abyssal-Latte" -source: - marketplace_id: "zen0x.abyssal" - version: "0.0.5" - installs: 42 - rating: 0 - ratings: 0 - author: "zen0x" - repo: "https://github.com/zen0x00/abyssal-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" -colors: - bg: "#EFF1F5" - fg: "#4C4F69" - black: "#4C4F69" - red: "#D20F39" - green: "#40A02B" - yellow: "#DF8E1D" - blue: "#1E66F5" - magenta: "#EA76CB" - cyan: "#179299" - white: "#EFF1F5" - brightBlack: "#6C6F85" - brightRed: "#D20F39" - brightGreen: "#40A02B" - brightYellow: "#DF8E1D" - brightBlue: "#1E66F5" - brightMagenta: "#EA76CB" - brightCyan: "#179299" - brightWhite: "#EFF1F5" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 79.3 - black: 79.3 - red: 66.3 - green: 52.1 - yellow: 42.3 - blue: 64.8 - magenta: 42.6 - cyan: 56.1 - white: 0 - brightBlack: 65.8 - brightRed: 66.3 - brightGreen: 52.1 - brightYellow: 42.3 - brightBlue: 64.8 - brightMagenta: 42.6 - brightCyan: 56.1 - brightWhite: 0 diff --git a/themes/abyssal-mirage.yaml b/themes/abyssal-mirage.yaml index 83cceb08..efe442c4 100644 --- a/themes/abyssal-mirage.yaml +++ b/themes/abyssal-mirage.yaml @@ -8,6 +8,7 @@ source: author: "Krisada-3131" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Krisada-3131.serpentine-syntax" + formats: null colors: bg: "#0D050B" fg: "#CFE3D1" diff --git a/themes/abyssal-nord.yaml b/themes/abyssal-nord.yaml deleted file mode 100644 index be09431a..00000000 --- a/themes/abyssal-nord.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Abyssal-Nord" -source: - marketplace_id: "zen0x.abyssal" - version: "0.0.5" - installs: 42 - rating: 0 - ratings: 0 - author: "zen0x" - repo: "https://github.com/zen0x00/abyssal-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" -colors: - bg: "#2E3440" - fg: "#D8DEE9" - black: "#2E3440" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#ECEFF4" - brightBlack: "#616E88" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#88C0D0" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 80.3 - black: 0 - red: 27.9 - green: 56.6 - yellow: 71.3 - blue: 43.6 - magenta: 41.4 - cyan: 57.6 - white: 91.2 - brightBlack: 20.3 - brightRed: 27.9 - brightGreen: 56.6 - brightYellow: 71.3 - brightBlue: 43.6 - brightMagenta: 41.4 - brightCyan: 57.6 - brightWhite: 91.2 diff --git a/themes/abyssal-tokyo-night.yaml b/themes/abyssal-tokyo-night.yaml deleted file mode 100644 index a3751c61..00000000 --- a/themes/abyssal-tokyo-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Abyssal-Tokyo-Night" -source: - marketplace_id: "zen0x.abyssal" - version: "0.0.5" - installs: 42 - rating: 0 - ratings: 0 - author: "zen0x" - repo: "https://github.com/zen0x00/abyssal-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" -colors: - bg: "#1A1B26" - fg: "#A9B1D6" - black: "#1A1B26" - red: "#F7768E" - green: "#9ECE6A" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#AD8EE6" - cyan: "#449DAB" - white: "#A9B1D6" - brightBlack: "#565F89" - brightRed: "#F7768E" - brightGreen: "#9ECE6A" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#AD8EE6" - brightCyan: "#449DAB" - brightWhite: "#C0CAF5" -meta: - mode: "dark" - accent: "red" - hue: 280 - pair: null - contrast: - fg: 59.3 - black: 0 - red: 49.4 - green: 66.9 - yellow: 62.2 - blue: 51.1 - magenta: 48.1 - cyan: 41.8 - white: 59.3 - brightBlack: 19.5 - brightRed: 49.4 - brightGreen: 66.9 - brightYellow: 62.2 - brightBlue: 51.1 - brightMagenta: 48.1 - brightCyan: 41.8 - brightWhite: 73.8 diff --git a/themes/acario.yaml b/themes/acario.yaml index 0113d8ec..be38654a 100644 --- a/themes/acario.yaml +++ b/themes/acario.yaml @@ -8,6 +8,7 @@ source: author: "gagbo" repo: "https://github.com/gagbo/acario-vscode" url: "https://marketplace.visualstudio.com/items?itemName=gagbo.acario" + formats: null colors: bg: "#12141F" fg: "#CEDBE5" diff --git a/themes/access-color-theme.yaml b/themes/access-color-theme.yaml deleted file mode 100644 index 1a017071..00000000 --- a/themes/access-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "access-color-theme" -source: - marketplace_id: "huacat.office-theme" - version: "1.4.1" - installs: 75529 - rating: 4.9 - ratings: 10 - author: "huacat" - repo: "https://github.com/huacat1017/huacat.office-theme" - url: "https://marketplace.visualstudio.com/items?itemName=huacat.office-theme" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#F4B183" - green: "#A8D08D" - yellow: "#FFC000" - blue: "#8EAADB" - magenta: "#B2A1C7" - cyan: "#9CC3E5" - white: "#A5A5A5" - brightBlack: "#808080" - brightRed: "#C0504D" - brightGreen: "#70AD47" - brightYellow: "#E0A903" - brightBlue: "#4472C4" - brightMagenta: "#8064A2" - brightCyan: "#5B9BD5" - brightWhite: "#C9C9C9" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 106 - black: 106 - red: 34.2 - green: 31.6 - yellow: 28.2 - blue: 46.4 - magenta: 46.9 - cyan: 34.8 - white: 48.5 - brightBlack: 66.9 - brightRed: 71.8 - brightGreen: 52.3 - brightYellow: 41.6 - brightBlue: 72.5 - brightMagenta: 74 - brightCyan: 56 - brightWhite: 29 diff --git a/themes/ace-palenight.yaml b/themes/ace-palenight.yaml index 9e5f7c52..001efe2d 100644 --- a/themes/ace-palenight.yaml +++ b/themes/ace-palenight.yaml @@ -2,12 +2,13 @@ name: "Ace Palenight" source: marketplace_id: "acestojanoski.ace-palenight" version: "1.0.2" - installs: 33273 + installs: 33279 rating: 5 ratings: 3 author: "Aleksandar Stojanoski" repo: "https://github.com/acestojanoski/ace-palenight" url: "https://marketplace.visualstudio.com/items?itemName=acestojanoski.ace-palenight" + formats: null colors: bg: "#282C35" fg: "#D4D4D4" diff --git a/themes/acekaizen-code-theme.yaml b/themes/acekaizen-code-theme.yaml index 836ca2f3..9475408b 100644 --- a/themes/acekaizen-code-theme.yaml +++ b/themes/acekaizen-code-theme.yaml @@ -8,6 +8,7 @@ source: author: "Aryan Kashyap" repo: "https://github.com/aryankashyap7/AceKaizen-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=AryanKashyap.theme-acekaizen-code" + formats: null colors: bg: "#141414" fg: "#FFFFFF" diff --git a/themes/acequartz.yaml b/themes/acequartz.yaml deleted file mode 100644 index 3a6d46ef..00000000 --- a/themes/acequartz.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "AceQuartz" -source: - marketplace_id: "AceSardonyx.darkrose-quartz-theme" - version: "1.0.8" - installs: 1170 - rating: 5 - ratings: 1 - author: "Kai" - repo: "https://github.com/Teakuutarts/VSC-Quartz-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=AceSardonyx.darkrose-quartz-theme" -colors: - bg: "#110010" - fg: "#00C3FF" - black: "#502832" - red: "#A45A74" - green: "#B39987" - yellow: "#A47F7C" - blue: "#AD5F74" - magenta: "#D78594" - cyan: "#B39487" - white: "#FF55BD" - brightBlack: "#703A47" - brightRed: "#A45A74" - brightGreen: "#B39987" - brightYellow: "#A47F7C" - brightBlue: "#AD5F74" - brightMagenta: "#D78594" - brightCyan: "#B39487" - brightWhite: "#D2738A" -meta: - mode: "dark" - accent: "red" - hue: 330 - pair: null - contrast: - fg: 63 - black: 0 - red: 27.9 - green: 49.6 - yellow: 38.4 - blue: 30.6 - magenta: 49 - cyan: 47.8 - white: 47.7 - brightBlack: 12.3 - brightRed: 27.9 - brightGreen: 49.6 - brightYellow: 38.4 - brightBlue: 30.6 - brightMagenta: 49 - brightCyan: 47.8 - brightWhite: 42.7 diff --git a/themes/acid-trip.yaml b/themes/acid-trip.yaml deleted file mode 100644 index acb80148..00000000 --- a/themes/acid-trip.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Acid-Trip" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#252525" - fg: "#FBFBFB" - black: "#252525" - red: "#DC2828" - green: "#29C3A0" - yellow: "#D29922" - blue: "#AFEC46" - magenta: "#AFEC46" - cyan: "#29C3A0" - white: "#FBFBFB" - brightBlack: "#252525" - brightRed: "#DC2828" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#AFEC46" - brightMagenta: "#AFEC46" - brightCyan: "#29C3A0" - brightWhite: "#FBFBFB" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.3 - black: 0 - red: 27.3 - green: 55.7 - yellow: 49.8 - blue: 81 - magenta: 81 - cyan: 55.7 - white: 102.3 - brightBlack: 0 - brightRed: 27.3 - brightGreen: 55.7 - brightYellow: 49.8 - brightBlue: 81 - brightMagenta: 81 - brightCyan: 55.7 - brightWhite: 102.3 diff --git a/themes/aclear-dark.yaml b/themes/aclear-dark.yaml index ebd48310..7c6491a0 100644 --- a/themes/aclear-dark.yaml +++ b/themes/aclear-dark.yaml @@ -8,6 +8,7 @@ source: author: "Andrew D'Amario" repo: "https://github.com/andrewaclear/aclear-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewaclear.aclear" + formats: null colors: bg: "#CFD3DB" fg: "#575E6B" diff --git a/themes/acme.yaml b/themes/acme.yaml deleted file mode 100644 index c97885dd..00000000 --- a/themes/acme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Acme" -source: - marketplace_id: "aaqaIshtyaq.themes-go-acme" - version: "0.0.5" - installs: 2247 - rating: 0 - ratings: 0 - author: "Aaqa Ishtyaq" - repo: "https://github.com/aaqaishtyaq/themes-go-acme" - url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.themes-go-acme" -colors: - bg: "#FFFFEA" - fg: "#000000" - black: "#000000" - red: "#000000" - green: "#000000" - yellow: "#000000" - blue: "#000000" - magenta: "#000000" - cyan: "#000000" - white: "#000000" - brightBlack: "#EEEE9E" - brightRed: "#000000" - brightGreen: "#000000" - brightYellow: "#000000" - brightBlue: "#000000" - brightMagenta: "#000000" - brightCyan: "#000000" - brightWhite: "#000000" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 105.2 - black: 105.2 - red: 105.2 - green: 105.2 - yellow: 105.2 - blue: 105.2 - magenta: 105.2 - cyan: 105.2 - white: 105.2 - brightBlack: 9.4 - brightRed: 105.2 - brightGreen: 105.2 - brightYellow: 105.2 - brightBlue: 105.2 - brightMagenta: 105.2 - brightCyan: 105.2 - brightWhite: 105.2 diff --git a/themes/aconitum.yaml b/themes/aconitum.yaml index 0d1e966f..f46284be 100644 --- a/themes/aconitum.yaml +++ b/themes/aconitum.yaml @@ -8,6 +8,7 @@ source: author: "ArturGuedx" repo: "https://github.com/ArturGuedes/Aconitum" url: "https://marketplace.visualstudio.com/items?itemName=ArturGuedx.Aconitum" + formats: null colors: bg: "#212121" fg: "#707E8A" diff --git a/themes/acs-cozy-dark.yaml b/themes/acs-cozy-dark.yaml deleted file mode 100644 index 75e8991c..00000000 --- a/themes/acs-cozy-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ACS - Cozy Dark" -source: - marketplace_id: "ACSPL.acsplext" - version: "0.30.0" - installs: 509 - rating: 0 - ratings: 0 - author: "ACSPL" - repo: "https://github.com/BarPupko/ACSPL-vscode-Extenstion" - url: "https://marketplace.visualstudio.com/items?itemName=ACSPL.acsplext" -colors: - bg: "#1E1A1A" - fg: "#E8E0DC" - black: "#2D2422" - red: "#C77F72" - green: "#8BA87F" - yellow: "#C9A572" - blue: "#8A9DB8" - magenta: "#B58A9F" - cyan: "#7FA5A0" - white: "#D4CBC7" - brightBlack: "#5A4D4A" - brightRed: "#D89386" - brightGreen: "#A0BA95" - brightYellow: "#DBB889" - brightBlue: "#9FB0CA" - brightMagenta: "#C9A0B3" - brightCyan: "#95BAB5" - brightWhite: "#E8E0DC" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 87.3 - black: 0 - red: 42.1 - green: 49.3 - yellow: 55.2 - blue: 47 - magenta: 44.3 - cyan: 48.1 - white: 74.6 - brightBlack: 12.7 - brightRed: 51.8 - brightGreen: 59.5 - brightYellow: 65.7 - brightBlue: 57.4 - brightMagenta: 55.5 - brightCyan: 59.6 - brightWhite: 87.3 diff --git a/themes/adapt-dark.yaml b/themes/adapt-dark.yaml index bf171fda..fe3e23c1 100644 --- a/themes/adapt-dark.yaml +++ b/themes/adapt-dark.yaml @@ -8,6 +8,7 @@ source: author: "Tone" repo: "https://github.com/ToneAr/adapt-vscode-colors" url: "https://marketplace.visualstudio.com/items?itemName=Tone.adapt-vscode-colors" + formats: null colors: bg: "#0F0F0F" fg: "#E8E8EC" diff --git a/themes/adark.yaml b/themes/adark.yaml index 93a76880..091091e8 100644 --- a/themes/adark.yaml +++ b/themes/adark.yaml @@ -8,6 +8,7 @@ source: author: "AmoghAgarwal" repo: "https://github.com/agarwalamogh/Adark_vscode_theme/tree/master/ADark" url: "https://marketplace.visualstudio.com/items?itemName=AmoghAgarwal.adark" + formats: null colors: bg: "#191E2B" fg: "#99A1B4" diff --git a/themes/adech-theme-legacy.yaml b/themes/adech-theme-legacy.yaml index 31414d5a..62464a4e 100644 --- a/themes/adech-theme-legacy.yaml +++ b/themes/adech-theme-legacy.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Adechlien.adech-theme" version: "0.1.2" installs: 33 + rating: 0 + ratings: 0 author: "Adechlien" repo: "https://github.com/adechlien/adech-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=Adechlien.adech-theme" + formats: null colors: bg: "#162137" fg: "#B2D0FF" diff --git a/themes/adech-theme-superior.yaml b/themes/adech-theme-superior.yaml index 303a719d..76e63e3e 100644 --- a/themes/adech-theme-superior.yaml +++ b/themes/adech-theme-superior.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Adechlien.adech-theme" version: "0.1.2" installs: 33 + rating: 0 + ratings: 0 author: "Adechlien" repo: "https://github.com/adechlien/adech-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=Adechlien.adech-theme" + formats: null colors: bg: "#142039" fg: "#9AC0FF" diff --git a/themes/adeol.yaml b/themes/adeol.yaml index 4c246dc0..5496305b 100644 --- a/themes/adeol.yaml +++ b/themes/adeol.yaml @@ -8,6 +8,7 @@ source: author: "Darcula As Start" repo: null url: "https://marketplace.visualstudio.com/items?itemName=darcula-as-start.darcula-as-start" + formats: null colors: bg: "#191919" fg: "#CBCBCB" diff --git a/themes/adey-coder-deep-dark.yaml b/themes/adey-coder-deep-dark.yaml deleted file mode 100644 index 7a2d5412..00000000 --- a/themes/adey-coder-deep-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Adey Coder - Deep dark" -source: - marketplace_id: "AdeyCoder.adey-coder-dark" - version: "1.0.3" - installs: 1787 - rating: 5 - ratings: 1 - author: "Adey Coder" - repo: "https://github.com/yohanstesfaye/adey-coder-dark" - url: "https://marketplace.visualstudio.com/items?itemName=AdeyCoder.adey-coder-dark" -colors: - bg: "#0E150E" - fg: "#FFFFFF" - black: "#363636" - red: "#FF7776" - green: "#9BFF9B" - yellow: "#F0FF77" - blue: "#5060FF" - magenta: "#FF81F7" - cyan: "#89FFFF" - white: "#EDEDED" - brightBlack: "#A3A3A3" - brightRed: "#FFA8A8" - brightGreen: "#9EFF9E" - brightYellow: "#F5FF8A" - brightBlue: "#94A9FF" - brightMagenta: "#FFB1FA" - brightCyan: "#BDFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: 145 - pair: null - contrast: - fg: 107.2 - black: 0 - red: 51.5 - green: 92.6 - yellow: 100.8 - blue: 28.9 - magenta: 59.7 - cyan: 95.2 - white: 95.4 - brightBlack: 51.8 - brightRed: 67.5 - brightGreen: 92.9 - brightYellow: 101.8 - brightBlue: 57.4 - brightMagenta: 74.5 - brightCyan: 99.3 - brightWhite: 107.2 diff --git a/themes/adey-coder.yaml b/themes/adey-coder.yaml deleted file mode 100644 index 252ad365..00000000 --- a/themes/adey-coder.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Adey Coder" -source: - marketplace_id: "AdeyCoder.adey-coder-dark" - version: "1.0.3" - installs: 1787 - rating: 5 - ratings: 1 - author: "Adey Coder" - repo: "https://github.com/yohanstesfaye/adey-coder-dark" - url: "https://marketplace.visualstudio.com/items?itemName=AdeyCoder.adey-coder-dark" -colors: - bg: "#121F12" - fg: "#FFFFFF" - black: "#363636" - red: "#FF7776" - green: "#6BFF6B" - yellow: "#F0FF57" - blue: "#5060FF" - magenta: "#FF81F7" - cyan: "#59FFFF" - white: "#EDEDED" - brightBlack: "#A3A3A3" - brightRed: "#FFA8A8" - brightGreen: "#9EFF9E" - brightYellow: "#F5FF8A" - brightBlue: "#94A9FF" - brightMagenta: "#FFB1FA" - brightCyan: "#BDFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: 144 - pair: null - contrast: - fg: 106.3 - black: 0 - red: 50.6 - green: 87.7 - yellow: 99.4 - blue: 28 - magenta: 58.8 - cyan: 91.9 - white: 94.5 - brightBlack: 50.9 - brightRed: 66.6 - brightGreen: 92 - brightYellow: 100.9 - brightBlue: 56.5 - brightMagenta: 73.5 - brightCyan: 98.4 - brightWhite: 106.3 diff --git a/themes/adonis.yaml b/themes/adonis.yaml deleted file mode 100644 index 2e7872b4..00000000 --- a/themes/adonis.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Adonis+" -source: - marketplace_id: "saeed-nazari.adonis-theme" - version: "5.1.0" - installs: 17283 - rating: 5 - ratings: 8 - author: "Saeed Nazari" - repo: "https://github.com/saeed-nazari/vsc-theme-adonis" - url: "https://marketplace.visualstudio.com/items?itemName=saeed-nazari.adonis-theme" -colors: - bg: "#272A2F" - fg: "#CCCCCC" - black: "#272A2F" - red: "#FA6780" - green: "#9DD56E" - yellow: "#A4D676" - blue: "#FDB772" - magenta: "#D9BDF8" - cyan: "#7DD5F4" - white: "#CCCCCC" - brightBlack: "#272A2F" - brightRed: "#FA6780" - brightGreen: "#9DD56E" - brightYellow: "#A4D676" - brightBlue: "#FDB772" - brightMagenta: "#D9BDF8" - brightCyan: "#7DD5F4" - brightWhite: "#CCCCCC" -meta: - mode: "dark" - accent: "red" - hue: 261 - pair: null - contrast: - fg: 71.9 - black: 0 - red: 43.9 - green: 67.9 - yellow: 69.2 - blue: 68 - magenta: 69.7 - cyan: 70.3 - white: 71.9 - brightBlack: 0 - brightRed: 43.9 - brightGreen: 67.9 - brightYellow: 69.2 - brightBlue: 68 - brightMagenta: 69.7 - brightCyan: 70.3 - brightWhite: 71.9 diff --git a/themes/adrift.yaml b/themes/adrift.yaml index e99e84a3..6765ce5e 100644 --- a/themes/adrift.yaml +++ b/themes/adrift.yaml @@ -2,10 +2,13 @@ name: "Adrift" source: marketplace_id: "JBoggsDev.adrift-theme" version: "0.0.3" - installs: 267 + installs: 268 + rating: 0 + ratings: 0 author: "JBoggsDev" repo: "https://github.com/jaredb1011/VSCode-Theme-Adrift" url: "https://marketplace.visualstudio.com/items?itemName=JBoggsDev.adrift-theme" + formats: null colors: bg: "#061115" fg: "#DDD6C2" diff --git a/themes/advancedbat.yaml b/themes/advancedbat.yaml index b9f24e51..0ba3fec5 100644 --- a/themes/advancedbat.yaml +++ b/themes/advancedbat.yaml @@ -8,6 +8,7 @@ source: author: "selfrefactor" repo: "https://github.com/selfrefactor/niketa-themes" url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.AdvancedBatNiketa" + formats: null colors: bg: "#AAAAAA" fg: "#000000" diff --git a/themes/adventuresinparadise.yaml b/themes/adventuresinparadise.yaml deleted file mode 100644 index 04488b7b..00000000 --- a/themes/adventuresinparadise.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "AdventuresinParadise" -source: - marketplace_id: "graciew1125.advpara" - version: "0.0.1" - installs: 79 - rating: 0 - ratings: 0 - author: "graciew1125" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=graciew1125.advpara" -colors: - bg: "#CFEAEA" - fg: "#4F6A8F" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#FFEAFF" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#F0D689" -meta: - mode: "light" - accent: "pink" - hue: 197 - pair: null - contrast: - fg: 62.1 - black: 90.5 - red: 58.4 - green: 33.7 - yellow: 42.4 - blue: 70.5 - magenta: 59 - cyan: 45 - white: 0 - brightBlack: 63.2 - brightRed: 58.4 - brightGreen: 25.4 - brightYellow: 25.4 - brightBlue: 70.5 - brightMagenta: 59 - brightCyan: 45 - brightWhite: 0 diff --git a/themes/aelmouny11-theme.yaml b/themes/aelmouny11-theme.yaml index 8852a468..218b9c8f 100644 --- a/themes/aelmouny11-theme.yaml +++ b/themes/aelmouny11-theme.yaml @@ -8,6 +8,7 @@ source: author: "Azddine ELMOUMNY" repo: "https://github.com/Aelmouny11/vscode_theme" url: "https://marketplace.visualstudio.com/items?itemName=aelmouny11.aelmouny11" + formats: null colors: bg: "#030C1B" fg: "#FFFDF5" diff --git a/themes/aeridia.yaml b/themes/aeridia.yaml index 8930d13c..d3b8bb6e 100644 --- a/themes/aeridia.yaml +++ b/themes/aeridia.yaml @@ -8,6 +8,7 @@ source: author: "Benjamin Vasquez" repo: "https://github.com/Be-njamin/aeridia" url: "https://marketplace.visualstudio.com/items?itemName=Be-njamin.aeridia" + formats: null colors: bg: "#1E1E1E" fg: "#D2D2D3" diff --git a/themes/aesir-theme.yaml b/themes/aesir-theme.yaml index e0a92067..f071f7fd 100644 --- a/themes/aesir-theme.yaml +++ b/themes/aesir-theme.yaml @@ -8,6 +8,7 @@ source: author: "tomgobich" repo: "https://github.com/tomgobich/aesir-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=tomgobich.aesir-theme" + formats: null colors: bg: "#1F2228" fg: "#D4D4D4" diff --git a/themes/aesthetic-dark.yaml b/themes/aesthetic-dark.yaml deleted file mode 100644 index c57d5bd9..00000000 --- a/themes/aesthetic-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aesthetic Dark" -source: - marketplace_id: "manojjoshi.aesthetic" - version: "3.0.0" - installs: 8072 - rating: 4.75 - ratings: 4 - author: "manoj joshi" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=manojjoshi.aesthetic" -colors: - bg: "#16172D" - fg: "#FFFFFF" - black: "#3A3D4B" - red: "#FF517D" - green: "#ADFF84" - yellow: "#1FB5FF" - blue: "#FA7539" - magenta: "#FFFFFF" - cyan: "#4BD0D7" - white: "#E5E5E5" - brightBlack: "#696D77" - brightRed: "#FF517D" - brightGreen: "#ADFF84" - brightYellow: "#1FB5FF" - brightBlue: "#FA7539" - brightMagenta: "#FFFFFF" - brightCyan: "#4BD0D7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 280 - pair: null - contrast: - fg: 106.6 - black: 0 - red: 43.4 - green: 92.9 - yellow: 56 - blue: 48.3 - magenta: 106.6 - cyan: 66.6 - white: 89.8 - brightBlack: 24.8 - brightRed: 43.4 - brightGreen: 92.9 - brightYellow: 56 - brightBlue: 48.3 - brightMagenta: 106.6 - brightCyan: 66.6 - brightWhite: 106.6 diff --git a/themes/aesthetic.yaml b/themes/aesthetic.yaml index b1a2e3ca..92bf75d5 100644 --- a/themes/aesthetic.yaml +++ b/themes/aesthetic.yaml @@ -1,52 +1,53 @@ name: "Aesthetic" source: - marketplace_id: "sophtli.cute-aesthetic" - version: "1.1.4" - installs: 4505 - rating: 0 - ratings: 0 - author: "Sophtli" - repo: "https://github.com/Sophtli/cute-aesthetic" - url: "https://marketplace.visualstudio.com/items?itemName=sophtli.cute-aesthetic" + marketplace_id: "manojjoshi.aesthetic" + version: "3.0.0" + installs: 8075 + rating: 4.75 + ratings: 4 + author: "manoj joshi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=manojjoshi.aesthetic" + formats: null colors: - bg: "#FFFFFF" - fg: "#333333" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" + bg: "#16172D" + fg: "#FFFFFF" + black: "#3A3D4B" + red: "#FF517D" + green: "#ADFF84" + yellow: "#1FB5FF" + blue: "#FA7539" + magenta: "#FFFFFF" + cyan: "#4BD0D7" + white: "#E5E5E5" + brightBlack: "#696D77" + brightRed: "#FF517D" + brightGreen: "#ADFF84" + brightYellow: "#1FB5FF" + brightBlue: "#FA7539" + brightMagenta: "#FFFFFF" + brightCyan: "#4BD0D7" + brightWhite: "#FFFFFF" meta: - mode: "light" - accent: "pink" - hue: null + mode: "dark" + accent: "red" + hue: 280 pair: null contrast: - fg: 98.7 - black: 106 - red: 74 - green: 49.2 - yellow: 57.9 - blue: 86.1 - magenta: 74.6 - cyan: 60.6 - white: 85.9 - brightBlack: 78.8 - brightRed: 74 - brightGreen: 40.9 - brightYellow: 40.9 - brightBlue: 86.1 - brightMagenta: 74.6 - brightCyan: 60.6 - brightWhite: 48.5 + fg: 106.6 + black: 0 + red: 43.4 + green: 92.9 + yellow: 56 + blue: 48.3 + magenta: 106.6 + cyan: 66.6 + white: 89.8 + brightBlack: 24.8 + brightRed: 43.4 + brightGreen: 92.9 + brightYellow: 56 + brightBlue: 48.3 + brightMagenta: 106.6 + brightCyan: 66.6 + brightWhite: 106.6 diff --git a/themes/aether-abyss.yaml b/themes/aether-abyss.yaml index f07e3b0e..3f284ebd 100644 --- a/themes/aether-abyss.yaml +++ b/themes/aether-abyss.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#020810" fg: "#C8D8E8" diff --git a/themes/aether-abyssal.yaml b/themes/aether-abyssal.yaml index add87bc1..e0c5b2f7 100644 --- a/themes/aether-abyssal.yaml +++ b/themes/aether-abyssal.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#020D10" fg: "#A8C2C5" diff --git a/themes/aether-arctic.yaml b/themes/aether-arctic.yaml index 65a36959..933111ca 100644 --- a/themes/aether-arctic.yaml +++ b/themes/aether-arctic.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#0E1419" fg: "#E0F2FF" diff --git a/themes/aether-atlantis.yaml b/themes/aether-atlantis.yaml index 7776de4b..7e2342b9 100644 --- a/themes/aether-atlantis.yaml +++ b/themes/aether-atlantis.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#051114" fg: "#C0DCE0" diff --git a/themes/aether-aurora.yaml b/themes/aether-aurora.yaml index 70593417..d59297ef 100644 --- a/themes/aether-aurora.yaml +++ b/themes/aether-aurora.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#0F1419" fg: "#E6F1FF" diff --git a/themes/aether-borealis.yaml b/themes/aether-borealis.yaml index 4627e911..b60e2d99 100644 --- a/themes/aether-borealis.yaml +++ b/themes/aether-borealis.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#0F1419" fg: "#D8DEE9" diff --git a/themes/aether-carbon.yaml b/themes/aether-carbon.yaml index 91dc9c48..1e0e9217 100644 --- a/themes/aether-carbon.yaml +++ b/themes/aether-carbon.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#0A0A0A" fg: "#D4D4D4" diff --git a/themes/aether-clarity.yaml b/themes/aether-clarity.yaml index ce29d5e0..76d987e8 100644 --- a/themes/aether-clarity.yaml +++ b/themes/aether-clarity.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#FFFFFF" fg: "#1F2328" diff --git a/themes/aether-coffee-dark.yaml b/themes/aether-coffee-dark.yaml deleted file mode 100644 index 145cec68..00000000 --- a/themes/aether-coffee-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aether Coffee Dark" -source: - marketplace_id: "diogo-aether.aether-dark" - version: "1.4.0" - installs: 203 - rating: 5 - ratings: 1 - author: "Diogo Pereira" - repo: "https://github.com/Diiipereira/aether-theme" - url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" -colors: - bg: "#080706" - fg: "#D8CCB8" - black: "#080706" - red: "#B86060" - green: "#88A868" - yellow: "#B8A840" - blue: "#7898A8" - magenta: "#9880B0" - cyan: "#6898A0" - white: "#6E6050" - brightBlack: "#3A3020" - brightRed: "#C87878" - brightGreen: "#A8C888" - brightYellow: "#D8C860" - brightBlue: "#98B8C8" - brightMagenta: "#B8A0C8" - brightCyan: "#88B8B0" - brightWhite: "#D8CCB8" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 76.4 - black: 0 - red: 32.2 - green: 49.9 - yellow: 54.6 - blue: 44.2 - magenta: 39.4 - cyan: 42.7 - white: 21.4 - brightBlack: 0 - brightRed: 41.8 - brightGreen: 67.4 - brightYellow: 72.4 - brightBlue: 61.2 - brightMagenta: 55.5 - brightCyan: 58.8 - brightWhite: 76.4 diff --git a/themes/aether-coffee.yaml b/themes/aether-coffee.yaml deleted file mode 100644 index 069fc07f..00000000 --- a/themes/aether-coffee.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aether Coffee" -source: - marketplace_id: "diogo-aether.aether-dark" - version: "1.4.0" - installs: 203 - rating: 5 - ratings: 1 - author: "Diogo Pereira" - repo: "https://github.com/Diiipereira/aether-theme" - url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" -colors: - bg: "#1E1810" - fg: "#F0DFC0" - black: "#1E1810" - red: "#E07878" - green: "#90B870" - yellow: "#C8B040" - blue: "#7AA8C0" - magenta: "#C090B8" - cyan: "#70A8A0" - white: "#9A8A72" - brightBlack: "#5A4830" - brightRed: "#E89898" - brightGreen: "#B0D090" - brightYellow: "#E0D060" - brightBlue: "#A0C8E0" - brightMagenta: "#E0B0D8" - brightCyan: "#90C8C0" - brightWhite: "#F0DFC0" -meta: - mode: "dark" - accent: "green" - hue: 75 - pair: null - contrast: - fg: 87.1 - black: 0 - red: 45 - green: 56.3 - yellow: 58.7 - blue: 50.6 - magenta: 49.1 - cyan: 48.4 - white: 39.4 - brightBlack: 11.1 - brightRed: 56.9 - brightGreen: 70.8 - brightYellow: 75.8 - brightBlue: 68.8 - brightMagenta: 66.6 - brightCyan: 65.9 - brightWhite: 87.1 diff --git a/themes/aether-cosmos.yaml b/themes/aether-cosmos.yaml index 28db1a68..1a78a7d6 100644 --- a/themes/aether-cosmos.yaml +++ b/themes/aether-cosmos.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#0A0E27" fg: "#E1E8FF" diff --git a/themes/aether-dark-space.yaml b/themes/aether-dark-space.yaml deleted file mode 100644 index 5ea05a6e..00000000 --- a/themes/aether-dark-space.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aether Dark Space" -source: - marketplace_id: "diogo-aether.aether-dark" - version: "1.4.0" - installs: 203 - rating: 5 - ratings: 1 - author: "Diogo Pereira" - repo: "https://github.com/Diiipereira/aether-theme" - url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" -colors: - bg: "#0F0B14" - fg: "#E3E1E6" - black: "#0F0B14" - red: "#FF5F5F" - green: "#4FFFD0" - yellow: "#FFCB6B" - blue: "#7ACFFF" - magenta: "#BD5EFF" - cyan: "#5EE6FF" - white: "#7A6E8A" - brightBlack: "#3A2850" - brightRed: "#FF8080" - brightGreen: "#8AFFDE" - brightYellow: "#FFE0A3" - brightBlue: "#A3E4FF" - brightMagenta: "#D699FF" - brightCyan: "#99F2FF" - brightWhite: "#E3E1E6" -meta: - mode: "dark" - accent: "magenta" - hue: 305 - pair: null - contrast: - fg: 88.7 - black: 0 - red: 46.1 - green: 90.7 - yellow: 79.7 - blue: 71.6 - magenta: 40.8 - cyan: 80.9 - white: 28.5 - brightBlack: 0 - brightRed: 54.5 - brightGreen: 94.1 - brightYellow: 89.9 - brightBlue: 84.3 - brightMagenta: 60.4 - brightCyan: 90.2 - brightWhite: 88.7 diff --git a/themes/aether-dark.yaml b/themes/aether-dark.yaml deleted file mode 100644 index dacefe2a..00000000 --- a/themes/aether-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aether Dark" -source: - marketplace_id: "diogo-aether.aether-dark" - version: "1.4.0" - installs: 203 - rating: 5 - ratings: 1 - author: "Diogo Pereira" - repo: "https://github.com/Diiipereira/aether-theme" - url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" -colors: - bg: "#0D0F13" - fg: "#E2E8F0" - black: "#0D0F13" - red: "#F87171" - green: "#86EFAC" - yellow: "#FBBF24" - blue: "#93C5FD" - magenta: "#C4B5FD" - cyan: "#5EEAD4" - white: "#94A3B8" - brightBlack: "#3D4A5C" - brightRed: "#FCA5A5" - brightGreen: "#BBF7D0" - brightYellow: "#FDE047" - brightBlue: "#BFDBFE" - brightMagenta: "#DDD6FE" - brightCyan: "#99F6E4" - brightWhite: "#E2E8F0" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Aether Light" - contrast: - fg: 92.1 - black: 0 - red: 48.7 - green: 83.7 - yellow: 73.3 - blue: 68.8 - magenta: 67.5 - cyan: 80.6 - white: 51.4 - brightBlack: 11.3 - brightRed: 66.2 - brightGreen: 93.4 - brightYellow: 87.8 - brightBlue: 82.8 - brightMagenta: 84.2 - brightCyan: 90.7 - brightWhite: 92.1 diff --git a/themes/aether-dawn.yaml b/themes/aether-dawn.yaml index 11628c50..4f01b9ac 100644 --- a/themes/aether-dawn.yaml +++ b/themes/aether-dawn.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#FEF6E4" fg: "#2D3748" diff --git a/themes/aether-deep-ocean.yaml b/themes/aether-deep-ocean.yaml index e03d9f54..04d11745 100644 --- a/themes/aether-deep-ocean.yaml +++ b/themes/aether-deep-ocean.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#0A1628" fg: "#C3E2FF" diff --git a/themes/aether-depths.yaml b/themes/aether-depths.yaml index 5d1a3db8..361820fa 100644 --- a/themes/aether-depths.yaml +++ b/themes/aether-depths.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#030F11" fg: "#AFC5C8" diff --git a/themes/aether-dusk.yaml b/themes/aether-dusk.yaml index 2d63adae..3008bc7e 100644 --- a/themes/aether-dusk.yaml +++ b/themes/aether-dusk.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#1A1220" fg: "#E6DCE8" diff --git a/themes/aether-emerald.yaml b/themes/aether-emerald.yaml deleted file mode 100644 index 85516d2d..00000000 --- a/themes/aether-emerald.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aether Emerald" -source: - marketplace_id: "diogo-aether.aether-dark" - version: "1.4.0" - installs: 203 - rating: 5 - ratings: 1 - author: "Diogo Pereira" - repo: "https://github.com/Diiipereira/aether-theme" - url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" -colors: - bg: "#0D1311" - fg: "#E2E8F0" - black: "#0D1311" - red: "#F87171" - green: "#34D399" - yellow: "#FBBF24" - blue: "#38BDF8" - magenta: "#C084FC" - cyan: "#22D3EE" - white: "#6A8A80" - brightBlack: "#2D5045" - brightRed: "#FCA5A5" - brightGreen: "#6EE7B7" - brightYellow: "#FCD34D" - brightBlue: "#7DD3FC" - brightMagenta: "#E879F9" - brightCyan: "#67E8F9" - brightWhite: "#E2E8F0" -meta: - mode: "dark" - accent: "pink" - hue: 173 - pair: null - contrast: - fg: 91.9 - black: 0 - red: 48.5 - green: 65.6 - yellow: 73.1 - blue: 60.1 - magenta: 50.1 - cyan: 69 - white: 35.8 - brightBlack: 11.3 - brightRed: 66 - brightGreen: 78.5 - brightYellow: 81.8 - brightBlue: 73.1 - brightMagenta: 53.5 - brightCyan: 81.6 - brightWhite: 91.9 diff --git a/themes/aether-forest.yaml b/themes/aether-forest.yaml index 23162c8b..d31b3fc6 100644 --- a/themes/aether-forest.yaml +++ b/themes/aether-forest.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#0A0D0A" fg: "#E0F2E9" diff --git a/themes/aether-glass.yaml b/themes/aether-glass.yaml index 7e572594..3700c334 100644 --- a/themes/aether-glass.yaml +++ b/themes/aether-glass.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#0A0B0E" fg: "#E8F0FF" diff --git a/themes/aether-light.yaml b/themes/aether-light.yaml deleted file mode 100644 index e3c04089..00000000 --- a/themes/aether-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aether Light" -source: - marketplace_id: "diogo-aether.aether-dark" - version: "1.4.0" - installs: 203 - rating: 5 - ratings: 1 - author: "Diogo Pereira" - repo: "https://github.com/Diiipereira/aether-theme" - url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" -colors: - bg: "#F5F1ED" - fg: "#3D3835" - black: "#2C2826" - red: "#C76B6B" - green: "#4A7A5C" - yellow: "#A06840" - blue: "#3D7A7A" - magenta: "#8B5E83" - cyan: "#4A8080" - white: "#E8E2DB" - brightBlack: "#857D76" - brightRed: "#D98888" - brightGreen: "#6A9A7A" - brightYellow: "#C08050" - brightBlue: "#5A9898" - brightMagenta: "#A87AA0" - brightCyan: "#6AA0A0" - brightWhite: "#F5F1ED" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Aether Dark" - contrast: - fg: 88.7 - black: 93.4 - red: 55.8 - green: 66.3 - yellow: 63.9 - blue: 66 - magenta: 67.8 - cyan: 63 - white: 0 - brightBlack: 59.7 - brightRed: 43.9 - brightGreen: 51.4 - brightYellow: 51.7 - brightBlue: 52.2 - brightMagenta: 54.8 - brightCyan: 47.8 - brightWhite: 0 diff --git a/themes/aether-mariana.yaml b/themes/aether-mariana.yaml index 7a6b552a..149c47cf 100644 --- a/themes/aether-mariana.yaml +++ b/themes/aether-mariana.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#051214" fg: "#B0C5C8" diff --git a/themes/aether-matrix.yaml b/themes/aether-matrix.yaml index 67d34cf6..426b7127 100644 --- a/themes/aether-matrix.yaml +++ b/themes/aether-matrix.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#0A0F0A" fg: "#D4F4DD" diff --git a/themes/aether-midnight.yaml b/themes/aether-midnight.yaml index 0d89aa8a..00a1edb2 100644 --- a/themes/aether-midnight.yaml +++ b/themes/aether-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#000000" fg: "#E0E0E0" diff --git a/themes/aether-nautilus.yaml b/themes/aether-nautilus.yaml index 848d893a..d7f4ad97 100644 --- a/themes/aether-nautilus.yaml +++ b/themes/aether-nautilus.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#021316" fg: "#B8CACD" diff --git a/themes/aether-nebula.yaml b/themes/aether-nebula.yaml index 9d83ffb4..0029f963 100644 --- a/themes/aether-nebula.yaml +++ b/themes/aether-nebula.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#1A0F2E" fg: "#E9D5FF" diff --git a/themes/aether-neon.yaml b/themes/aether-neon.yaml index ea3180bb..1459afeb 100644 --- a/themes/aether-neon.yaml +++ b/themes/aether-neon.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#020705" fg: "#39FF14" diff --git a/themes/aether-neptune.yaml b/themes/aether-neptune.yaml index 30326a25..158006c6 100644 --- a/themes/aether-neptune.yaml +++ b/themes/aether-neptune.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#031419" fg: "#B8D4E3" diff --git a/themes/aether-oceanic.yaml b/themes/aether-oceanic.yaml index e25bee26..164c3f7a 100644 --- a/themes/aether-oceanic.yaml +++ b/themes/aether-oceanic.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#041518" fg: "#B8CFD2" diff --git a/themes/aether-quantum.yaml b/themes/aether-quantum.yaml index 4d9f1b3f..a09cd7ab 100644 --- a/themes/aether-quantum.yaml +++ b/themes/aether-quantum.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#0D0F14" fg: "#E3E8F0" diff --git a/themes/aether-reef.yaml b/themes/aether-reef.yaml index f5420b52..16c61aac 100644 --- a/themes/aether-reef.yaml +++ b/themes/aether-reef.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#041619" fg: "#AFC8CC" diff --git a/themes/aether-stellar.yaml b/themes/aether-stellar.yaml index b35464de..69db0bb3 100644 --- a/themes/aether-stellar.yaml +++ b/themes/aether-stellar.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#10141A" fg: "#D4E0F0" diff --git a/themes/aether-tempest.yaml b/themes/aether-tempest.yaml index 8a4283fe..3359aa53 100644 --- a/themes/aether-tempest.yaml +++ b/themes/aether-tempest.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#0A1929" fg: "#D6E7FF" diff --git a/themes/aether-tidal.yaml b/themes/aether-tidal.yaml index 1e823d8f..a670a41b 100644 --- a/themes/aether-tidal.yaml +++ b/themes/aether-tidal.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#051419" fg: "#C2D4D7" diff --git a/themes/aether-trench-contrast.yaml b/themes/aether-trench-contrast.yaml index dacd926b..43da6eef 100644 --- a/themes/aether-trench-contrast.yaml +++ b/themes/aether-trench-contrast.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#000000" fg: "#D0E0E3" diff --git a/themes/aether-twilight.yaml b/themes/aether-twilight.yaml index 4a6263e0..ad529584 100644 --- a/themes/aether-twilight.yaml +++ b/themes/aether-twilight.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#1E1E2E" fg: "#CDD6F4" diff --git a/themes/aether-void.yaml b/themes/aether-void.yaml index 60290769..d793f0f2 100644 --- a/themes/aether-void.yaml +++ b/themes/aether-void.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#07090F" fg: "#C5CDD9" diff --git a/themes/aether-zen.yaml b/themes/aether-zen.yaml index da21efe2..82723dd3 100644 --- a/themes/aether-zen.yaml +++ b/themes/aether-zen.yaml @@ -8,6 +8,7 @@ source: author: "Yonas Valentin Mougaard Kristensen" repo: "https://github.com/YonasValentin/aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null colors: bg: "#FAFAFA" fg: "#383A42" diff --git a/themes/aether.yaml b/themes/aether.yaml index d4077086..48846f35 100644 --- a/themes/aether.yaml +++ b/themes/aether.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Clicxl.aether-theme-pallete-picker" version: "0.0.1" installs: 67 + rating: 0 + ratings: 0 author: "Hrishikesh H Puliga" repo: "https://github.com/Clicxl/vscode-aether-theme" url: "https://marketplace.visualstudio.com/items?itemName=Clicxl.aether-theme-pallete-picker" + formats: null colors: bg: "#15151F" fg: "#FFFFFF" diff --git a/themes/aetherglow.yaml b/themes/aetherglow.yaml index 06a7edf2..6269e3dd 100644 --- a/themes/aetherglow.yaml +++ b/themes/aetherglow.yaml @@ -6,6 +6,7 @@ source: author: "WebCraftID" repo: null url: "https://marketplace.visualstudio.com/items?itemName=WebCraftID.aetherglow" + formats: null colors: bg: "#000B1A" fg: "#00FFF7" diff --git a/themes/afro.yaml b/themes/afro.yaml index 886480b1..c4ac5870 100644 --- a/themes/afro.yaml +++ b/themes/afro.yaml @@ -8,6 +8,7 @@ source: author: "Hebraic" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Hebraic.afro" + formats: null colors: bg: "#362B25" fg: "#FFFFFF" diff --git a/themes/afterglow-fade.yaml b/themes/afterglow-fade.yaml deleted file mode 100644 index 3d09f9ac..00000000 --- a/themes/afterglow-fade.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Afterglow-Fade" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#2C2025" - fg: "#F1E9E5" - black: "#2C2025" - red: "#E63745" - green: "#29C3A0" - yellow: "#D29922" - blue: "#FF8163" - magenta: "#FF8163" - cyan: "#29C3A0" - white: "#F1E9E5" - brightBlack: "#2C2025" - brightRed: "#E63745" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#FF8163" - brightMagenta: "#FF8163" - brightCyan: "#29C3A0" - brightWhite: "#F1E9E5" -meta: - mode: "dark" - accent: "orange" - hue: 352 - pair: null - contrast: - fg: 91.8 - black: 0 - red: 31.6 - green: 56 - yellow: 50.1 - blue: 51.7 - magenta: 51.7 - cyan: 56 - white: 91.8 - brightBlack: 0 - brightRed: 31.6 - brightGreen: 56 - brightYellow: 50.1 - brightBlue: 51.7 - brightMagenta: 51.7 - brightCyan: 56 - brightWhite: 91.8 diff --git a/themes/afternoon-delight-subtle.yaml b/themes/afternoon-delight-subtle.yaml deleted file mode 100644 index c0054beb..00000000 --- a/themes/afternoon-delight-subtle.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Afternoon Delight Subtle" -source: - marketplace_id: "magnush.afternoon-delight" - version: "2.0.2" - installs: 349 - rating: 5 - ratings: 1 - author: "Magnus Hvidtfeldt" - repo: "https://github.com/mch-sg/afternoon-delight" - url: "https://marketplace.visualstudio.com/items?itemName=magnush.afternoon-delight" -colors: - bg: "#0D0D0D" - fg: "#DBD7CA" - black: "#393A34" - red: "#CB7676" - green: "#FFB17A" - yellow: "#E6CC77" - blue: "#6394BF" - magenta: "#DB889A" - cyan: "#5EAAB5" - white: "#FFFFFF" - brightBlack: "#393A34" - brightRed: "#CB7676" - brightGreen: "#FFB17A" - brightYellow: "#E6CC77" - brightBlue: "#6394BF" - brightMagenta: "#DB889A" - brightCyan: "#5EAAB5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 82 - black: 0 - red: 41.5 - green: 69.9 - yellow: 76.3 - blue: 42.1 - magenta: 50.7 - cyan: 50 - white: 107.6 - brightBlack: 0 - brightRed: 41.5 - brightGreen: 69.9 - brightYellow: 76.3 - brightBlue: 42.1 - brightMagenta: 50.7 - brightCyan: 50 - brightWhite: 107.6 diff --git a/themes/afterpurple.yaml b/themes/afterpurple.yaml index e683856a..cee38cc6 100644 --- a/themes/afterpurple.yaml +++ b/themes/afterpurple.yaml @@ -8,6 +8,7 @@ source: author: "lukearch" repo: null url: "https://marketplace.visualstudio.com/items?itemName=lukearch.after-purple" + formats: null colors: bg: "#221F26" fg: "#CCCCCC" diff --git a/themes/agathist-dark.yaml b/themes/agathist-dark.yaml deleted file mode 100644 index 6814798f..00000000 --- a/themes/agathist-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Agathist Dark" -source: - marketplace_id: "agathist.agathist-vscode-themes" - version: "0.1.3" - installs: 939 - rating: 0 - ratings: 0 - author: "Agathist" - repo: "https://github.com/agathist/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=agathist.agathist-vscode-themes" -colors: - bg: "#0F172A" - fg: "#E2E8F0" - black: "#0F172A" - red: "#F43F5E" - green: "#34D399" - yellow: "#FB923C" - blue: "#FDA4AF" - magenta: "#FB7185" - cyan: "#22D3EE" - white: "#C4CAD4" - brightBlack: "#2D3546" - brightRed: "#CBD5E1" - brightGreen: "#22D3EE" - brightYellow: "#FB923C" - brightBlue: "#FDA4AF" - brightMagenta: "#FB7185" - brightCyan: "#22D3EE" - brightWhite: "#E2E8F0" -meta: - mode: "dark" - accent: "orange" - hue: 266 - pair: null - contrast: - fg: 91.4 - black: 0 - red: 37.7 - green: 65.1 - yellow: 56.8 - blue: 65.6 - magenta: 49.2 - cyan: 68.5 - white: 73.1 - brightBlack: 0 - brightRed: 79.3 - brightGreen: 68.5 - brightYellow: 56.8 - brightBlue: 65.6 - brightMagenta: 49.2 - brightCyan: 68.5 - brightWhite: 91.4 diff --git a/themes/agen-theme.yaml b/themes/agen-theme.yaml index a2ec03be..d6138127 100644 --- a/themes/agen-theme.yaml +++ b/themes/agen-theme.yaml @@ -8,6 +8,8 @@ source: author: "Maxx Borer" repo: "https://github.com/maxxborer/agen-theme" url: "https://marketplace.visualstudio.com/items?itemName=maxxborer.agen-theme" + formats: + iterm2: "https://raw.githubusercontent.com/maxxborer/agen-theme/main/iterm.agen-theme/agen-theme.itermcolors" colors: bg: "#161619" fg: "#EFEEEE" diff --git a/themes/ahoy-theme.yaml b/themes/ahoy-theme.yaml index 2dcccfbc..09bd22d8 100644 --- a/themes/ahoy-theme.yaml +++ b/themes/ahoy-theme.yaml @@ -8,6 +8,7 @@ source: author: "alexNeto" repo: "https://github.com/alexNeto/ahoy-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=alexNeto.ahoy-theme" + formats: null colors: bg: "#1D1C1A" fg: "#ECECEC" diff --git a/themes/ahroun.yaml b/themes/ahroun.yaml index e2800a2f..593c29b0 100644 --- a/themes/ahroun.yaml +++ b/themes/ahroun.yaml @@ -8,6 +8,7 @@ source: author: "Diego Brocanelli" repo: "https://github.com/Diego-Brocanelli/ahroun-theme" url: "https://marketplace.visualstudio.com/items?itemName=DiegoBrocanelli.ahroun-theme" + formats: null colors: bg: "#1A1A1A" fg: "#F8F8F2" diff --git a/themes/aka-kuro-light.yaml b/themes/aka-kuro-light.yaml index a4394674..3813cd2b 100644 --- a/themes/aka-kuro-light.yaml +++ b/themes/aka-kuro-light.yaml @@ -8,6 +8,7 @@ source: author: "Noa Heutz" repo: "https://github.com/Nah-Nova/akakuro-theme" url: "https://marketplace.visualstudio.com/items?itemName=NoaHeutz.akakuro-theme" + formats: null colors: bg: "#FCFCFC" fg: "#29343D" diff --git a/themes/akagami-dark.yaml b/themes/akagami-dark.yaml index bd75b10a..ac1c9197 100644 --- a/themes/akagami-dark.yaml +++ b/themes/akagami-dark.yaml @@ -8,6 +8,7 @@ source: author: "nicholasXue" repo: "https://github.com/nicholasxjy/akagami-theme" url: "https://marketplace.visualstudio.com/items?itemName=nicholasXue.akagami-theme" + formats: null colors: bg: "#121212" fg: "#DBD7CA" diff --git a/themes/akagami-light.yaml b/themes/akagami-light.yaml index 32495c36..56c93abb 100644 --- a/themes/akagami-light.yaml +++ b/themes/akagami-light.yaml @@ -8,6 +8,7 @@ source: author: "nicholasXue" repo: "https://github.com/nicholasxjy/akagami-theme" url: "https://marketplace.visualstudio.com/items?itemName=nicholasXue.akagami-theme" + formats: null colors: bg: "#FFFFFF" fg: "#393A34" diff --git a/themes/akari-dawn.yaml b/themes/akari-dawn.yaml deleted file mode 100644 index d59f6aec..00000000 --- a/themes/akari-dawn.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Akari Dawn" -source: - marketplace_id: "cappyzawa.akari-theme" - version: "1.18.0" - installs: 58 - rating: 0 - ratings: 0 - author: "Shu Kutsuzawa" - repo: "https://github.com/cappyzawa/akari-theme" - url: "https://marketplace.visualstudio.com/items?itemName=cappyzawa.akari-theme" -colors: - bg: "#E4DED6" - fg: "#1A1816" - black: "#1A1816" - red: "#6A2828" - green: "#3A5830" - yellow: "#B07840" - blue: "#304050" - magenta: "#806080" - cyan: "#305858" - white: "#E4DED6" - brightBlack: "#514B45" - brightRed: "#3E1717" - brightGreen: "#20301A" - brightYellow: "#78522C" - brightBlue: "#131A20" - brightMagenta: "#543F54" - brightCyan: "#152727" - brightWhite: "#D0C5B7" -meta: - mode: "light" - accent: "yellow" - hue: 75 - pair: "Akari Night" - contrast: - fg: 85.6 - black: 85.6 - red: 75.5 - green: 68.8 - yellow: 45.9 - blue: 75.7 - magenta: 57.8 - cyan: 68.3 - white: 0 - brightBlack: 70.6 - brightRed: 83.4 - brightGreen: 81.7 - brightYellow: 64.8 - brightBlue: 85.4 - brightMagenta: 72.9 - brightCyan: 83.5 - brightWhite: 11.4 diff --git a/themes/akari-night.yaml b/themes/akari-night.yaml deleted file mode 100644 index 9a542e60..00000000 --- a/themes/akari-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Akari Night" -source: - marketplace_id: "cappyzawa.akari-theme" - version: "1.18.0" - installs: 58 - rating: 0 - ratings: 0 - author: "Shu Kutsuzawa" - repo: "https://github.com/cappyzawa/akari-theme" - url: "https://marketplace.visualstudio.com/items?itemName=cappyzawa.akari-theme" -colors: - bg: "#25231F" - fg: "#E6DED3" - black: "#1E1C19" - red: "#D25046" - green: "#7FAF6A" - yellow: "#D4A05A" - blue: "#7A8FA2" - magenta: "#8E7BA0" - cyan: "#6F8F8A" - white: "#E6DED3" - brightBlack: "#716A5F" - brightRed: "#DE7F77" - brightGreen: "#A1C492" - brightYellow: "#E4C397" - brightBlue: "#A7B5C1" - brightMagenta: "#B4A7C0" - brightCyan: "#9AB1AD" - brightWhite: "#EFEAE3" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Akari Dawn" - contrast: - fg: 84.6 - black: 0 - red: 30.8 - green: 49.5 - yellow: 53.4 - blue: 38.2 - magenta: 33.3 - cyan: 36.3 - white: 84.6 - brightBlack: 22.5 - brightRed: 45.1 - brightGreen: 62.6 - brightYellow: 70.7 - brightBlue: 58.6 - brightMagenta: 54.6 - brightCyan: 54.8 - brightWhite: 92 diff --git a/themes/akihabara.yaml b/themes/akihabara.yaml index 7137fb0b..98da50b6 100644 --- a/themes/akihabara.yaml +++ b/themes/akihabara.yaml @@ -2,12 +2,13 @@ name: "Akihabara" source: marketplace_id: "justin-lavi.akihabara" version: "4.8.8" - installs: 1296 + installs: 1297 rating: 0 ratings: 0 author: "Justin Lavi" repo: "https://github.com/justinlavi/Akihabara" url: "https://marketplace.visualstudio.com/items?itemName=justin-lavi.akihabara" + formats: null colors: bg: "#171322" fg: "#C7BFDB" diff --git a/themes/aklesky-golden-river.yaml b/themes/aklesky-golden-river.yaml index 52ae2bdb..c60b6c17 100644 --- a/themes/aklesky-golden-river.yaml +++ b/themes/aklesky-golden-river.yaml @@ -8,6 +8,7 @@ source: author: "aklesky" repo: "https://github.com/aklesky/aklesky-theme" url: "https://marketplace.visualstudio.com/items?itemName=aklesky.aklesky-flat-dark-theme" + formats: null colors: bg: "#1F2430" fg: "#FFFFFF" diff --git a/themes/aklesky-mist-of-mint.yaml b/themes/aklesky-mist-of-mint.yaml index 1b053c66..d1c90fb4 100644 --- a/themes/aklesky-mist-of-mint.yaml +++ b/themes/aklesky-mist-of-mint.yaml @@ -8,6 +8,7 @@ source: author: "aklesky" repo: "https://github.com/aklesky/aklesky-theme" url: "https://marketplace.visualstudio.com/items?itemName=aklesky.aklesky-flat-dark-theme" + formats: null colors: bg: "#1F2430" fg: "#FFFFFF" diff --git a/themes/ako-theme.yaml b/themes/ako-theme.yaml index d1948d28..84e53b57 100644 --- a/themes/ako-theme.yaml +++ b/themes/ako-theme.yaml @@ -8,6 +8,7 @@ source: author: "wxn0brP" repo: "https://github.com/wxn0brP/ako-theme" url: "https://marketplace.visualstudio.com/items?itemName=wxn0brP.wxn0brp-ako-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/aksin.yaml b/themes/aksin.yaml index 9b9f2565..391b8089 100644 --- a/themes/aksin.yaml +++ b/themes/aksin.yaml @@ -8,6 +8,7 @@ source: author: "Akshayindraganti" repo: "https://github.com/AkshayIndraganti/Aksin-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Akshayindraganti.Indraganti-Akshay" + formats: null colors: bg: "#212121" fg: "#909090" diff --git a/themes/akumanomi-theme.yaml b/themes/akumanomi-theme.yaml deleted file mode 100644 index 8e3e80c6..00000000 --- a/themes/akumanomi-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Akumanomi Theme" -source: - marketplace_id: "IngridLiana.akumanomi-theme" - version: "0.1.4" - installs: 2726 - rating: 0 - ratings: 0 - author: "Ingrid Liana" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=IngridLiana.akumanomi-theme" -colors: - bg: "#000000" - fg: "#D7D7D7" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 82.3 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/akurdor.yaml b/themes/akurdor.yaml index 561e0ec5..9954e577 100644 --- a/themes/akurdor.yaml +++ b/themes/akurdor.yaml @@ -8,6 +8,7 @@ source: author: "KurdorTheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rashidfarhad.kurdor" + formats: null colors: bg: "#10141C" fg: "#BFBDB6" diff --git a/themes/al-theme-official.yaml b/themes/al-theme-official.yaml deleted file mode 100644 index 431afdea..00000000 --- a/themes/al-theme-official.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "AL Theme - Official" -source: - marketplace_id: "AlSiam.altheme" - version: "1.9.0" - installs: 1950 - rating: 5 - ratings: 1 - author: "Al Siam" - repo: "https://github.com/alsiam/altheme" - url: "https://marketplace.visualstudio.com/items?itemName=AlSiam.altheme" -colors: - bg: "#101E2C" - fg: "#BDD2E7" - black: "#000000" - red: "#FF7878" - green: "#AAE682" - yellow: "#FFDC96" - blue: "#00B1FF" - magenta: "#00D991" - cyan: "#00DCDC" - white: "#BDD2E7" - brightBlack: "#5F82A5" - brightRed: "#FF7878" - brightGreen: "#AAE682" - brightYellow: "#FFDC96" - brightBlue: "#00B1FF" - brightMagenta: "#00D991" - brightCyan: "#00DCDC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 249 - pair: null - contrast: - fg: 76 - black: 0 - red: 50.7 - green: 79.7 - yellow: 86.3 - blue: 53.7 - magenta: 66.7 - cyan: 71 - white: 76 - brightBlack: 32.5 - brightRed: 50.7 - brightGreen: 79.7 - brightYellow: 86.3 - brightBlue: 53.7 - brightMagenta: 66.7 - brightCyan: 71 - brightWhite: 106.1 diff --git a/themes/alabaster-dark.yaml b/themes/alabaster-dark.yaml index 897a841e..b9e046df 100644 --- a/themes/alabaster-dark.yaml +++ b/themes/alabaster-dark.yaml @@ -8,6 +8,7 @@ source: author: "LaoLiang" repo: "https://github.com/liangpengyv/vscode-theme-alabaster-dark" url: "https://marketplace.visualstudio.com/items?itemName=lao-liang.vscode-theme-alabaster-dark" + formats: null colors: bg: "#21252B" fg: "#ABB2BF" diff --git a/themes/alchemist-s-orchid-dark.yaml b/themes/alchemist-s-orchid-dark.yaml deleted file mode 100644 index d5d63180..00000000 --- a/themes/alchemist-s-orchid-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Alchemist's Orchid Dark" -source: - marketplace_id: "Rynaro.alchemists-orchid" - version: "0.1.2" - installs: 111 - rating: 5 - ratings: 1 - author: "Rynaro" - repo: "https://github.com/Rynaro/alchemists-orchid" - url: "https://marketplace.visualstudio.com/items?itemName=Rynaro.alchemists-orchid" -colors: - bg: "#2E3440" - fg: "#E5E9F0" - black: "#3B4252" - red: "#E8A4CC" - green: "#A3BE8C" - yellow: "#DFCA9A" - blue: "#81A1C1" - magenta: "#C89BD0" - cyan: "#8FBCBB" - white: "#D8DEE9" - brightBlack: "#4C566A" - brightRed: "#F0C0DD" - brightGreen: "#C3E4A8" - brightYellow: "#EBD9AF" - brightBlue: "#A3C2E8" - brightMagenta: "#DAC0F2" - brightCyan: "#9EECE8" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: "Alchemist's Orchid Light" - contrast: - fg: 87.3 - black: 0 - red: 58.2 - green: 56.6 - yellow: 69.5 - blue: 43.6 - magenta: 50.3 - cyan: 55.5 - white: 80.3 - brightBlack: 10.3 - brightRed: 70.6 - brightGreen: 78 - brightYellow: 78.3 - brightBlue: 62.1 - brightMagenta: 68.4 - brightCyan: 80.7 - brightWhite: 91.2 diff --git a/themes/alchemist-s-orchid-light.yaml b/themes/alchemist-s-orchid-light.yaml deleted file mode 100644 index dd11fb06..00000000 --- a/themes/alchemist-s-orchid-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Alchemist's Orchid Light" -source: - marketplace_id: "Rynaro.alchemists-orchid" - version: "0.1.2" - installs: 111 - rating: 5 - ratings: 1 - author: "Rynaro" - repo: "https://github.com/Rynaro/alchemists-orchid" - url: "https://marketplace.visualstudio.com/items?itemName=Rynaro.alchemists-orchid" -colors: - bg: "#FAFBFC" - fg: "#2E3440" - black: "#2E3440" - red: "#C41585" - green: "#4D7028" - yellow: "#8A6000" - blue: "#2D6299" - magenta: "#8839AA" - cyan: "#1D7A78" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#E31C97" - brightGreen: "#5E8A32" - brightYellow: "#A57800" - brightBlue: "#3A7AB8" - brightMagenta: "#9F47C4" - brightCyan: "#248E8B" - brightWhite: "#FAFBFC" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Alchemist's Orchid Dark" - contrast: - fg: 95.9 - black: 95.9 - red: 73.2 - green: 76.1 - yellow: 75.2 - blue: 78.7 - magenta: 79.2 - cyan: 72.4 - white: 8.2 - brightBlack: 83.2 - brightRed: 65.3 - brightGreen: 65.3 - brightYellow: 64.3 - brightBlue: 68.6 - brightMagenta: 71.6 - brightCyan: 64 - brightWhite: 0 diff --git a/themes/alchemist-s-orchid-sepia.yaml b/themes/alchemist-s-orchid-sepia.yaml deleted file mode 100644 index 71b88c55..00000000 --- a/themes/alchemist-s-orchid-sepia.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Alchemist's Orchid Sepia" -source: - marketplace_id: "Rynaro.alchemists-orchid" - version: "0.1.2" - installs: 111 - rating: 5 - ratings: 1 - author: "Rynaro" - repo: "https://github.com/Rynaro/alchemists-orchid" - url: "https://marketplace.visualstudio.com/items?itemName=Rynaro.alchemists-orchid" -colors: - bg: "#F5F0E6" - fg: "#3B3228" - black: "#3B3228" - red: "#B52080" - green: "#4A6A28" - yellow: "#806000" - blue: "#2E5E8A" - magenta: "#7B3399" - cyan: "#1A6B69" - white: "#E5E0D6" - brightBlack: "#5A5045" - brightRed: "#D42995" - brightGreen: "#5C8432" - brightYellow: "#997300" - brightBlue: "#3972A8" - brightMagenta: "#9440B3" - brightCyan: "#238280" - brightWhite: "#F5F0E6" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 89.8 - black: 89.8 - red: 69.8 - green: 72.1 - yellow: 70.3 - blue: 74.6 - magenta: 76.9 - cyan: 72.2 - white: 0 - brightBlack: 78.6 - brightRed: 61.7 - brightGreen: 61.5 - brightYellow: 61.3 - brightBlue: 66.1 - brightMagenta: 69.5 - brightCyan: 62.8 - brightWhite: 0 diff --git a/themes/alchemy-theme.yaml b/themes/alchemy-theme.yaml index 7b28c93d..d70543a9 100644 --- a/themes/alchemy-theme.yaml +++ b/themes/alchemy-theme.yaml @@ -8,6 +8,7 @@ source: author: "thgmhz" repo: "https://github.com/thgmhz/alchemy-theme" url: "https://marketplace.visualstudio.com/items?itemName=thgmhz.alchemy" + formats: null colors: bg: "#0F0918" fg: "#E2E2EA" diff --git a/themes/aldrico-s-gruvbox.yaml b/themes/aldrico-s-gruvbox.yaml deleted file mode 100644 index 2357164d..00000000 --- a/themes/aldrico-s-gruvbox.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aldrico's Gruvbox" -source: - marketplace_id: "HeavenAldrico.aldrico-s-gruvbox" - version: "0.2.3" - installs: 4290 - rating: 5 - ratings: 2 - author: "Heaven Aldrico" - repo: "https://github.com/ldriko/gruvbox-in-black" - url: "https://marketplace.visualstudio.com/items?itemName=HeavenAldrico.aldrico-s-gruvbox" -colors: - bg: "#000000" - fg: "#D4BE98" - black: "#32302F" - red: "#EA6962" - green: "#A9B665" - yellow: "#D8A657" - blue: "#7DAEA3" - magenta: "#D3869B" - cyan: "#89B482" - white: "#D4BE98" - brightBlack: "#928374" - brightRed: "#EA6962" - brightGreen: "#A9B665" - brightYellow: "#D8A657" - brightBlue: "#7DAEA3" - brightMagenta: "#D3869B" - brightCyan: "#89B482" - brightWhite: "#DDC7A1" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 69 - black: 0 - red: 44 - green: 59 - yellow: 58.8 - blue: 53.2 - magenta: 49 - cyan: 55.7 - white: 69 - brightBlack: 37.4 - brightRed: 44 - brightGreen: 59 - brightYellow: 58.8 - brightBlue: 53.2 - brightMagenta: 49 - brightCyan: 55.7 - brightWhite: 74.3 diff --git a/themes/alec-teal-theme.yaml b/themes/alec-teal-theme.yaml index 073ac912..d8a0a9cf 100644 --- a/themes/alec-teal-theme.yaml +++ b/themes/alec-teal-theme.yaml @@ -8,6 +8,7 @@ source: author: "AlecVision" repo: "https://github.com/AlecVision/themes" url: "https://marketplace.visualstudio.com/items?itemName=alecvision.alecvision-themes" + formats: null colors: bg: "#13222E" fg: "#ACBECC" diff --git a/themes/alice-s-theme.yaml b/themes/alice-s-theme.yaml index d782333b..ef579141 100644 --- a/themes/alice-s-theme.yaml +++ b/themes/alice-s-theme.yaml @@ -8,6 +8,7 @@ source: author: "CadeteSinx" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CadeteSinx.alices-theme" + formats: null colors: bg: "#0F0F0F" fg: "#FF5C2A" diff --git a/themes/aliceblue-theme.yaml b/themes/aliceblue-theme.yaml deleted file mode 100644 index 1c429365..00000000 --- a/themes/aliceblue-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aliceblue-Theme" -source: - marketplace_id: "YornQiu.vsc-aliceblue-theme" - version: "0.3.2" - installs: 319 - rating: 0 - ratings: 0 - author: "YornQiu" - repo: "https://github.com/YornQiu/vsc-aliceblue-theme" - url: "https://marketplace.visualstudio.com/items?itemName=YornQiu.vsc-aliceblue-theme" -colors: - bg: "#FFFFFF" - fg: "#90A4AE" - black: "#000000" - red: "#E53935" - green: "#91B859" - yellow: "#E2931D" - blue: "#6182B8" - magenta: "#9C3EDA" - cyan: "#39ADB5" - white: "#FFFFFF" - brightBlack: "#90A4AE" - brightRed: "#E53935" - brightGreen: "#91B859" - brightYellow: "#E2931D" - brightBlue: "#6182B8" - brightMagenta: "#9C3EDA" - brightCyan: "#39ADB5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 50.6 - black: 106 - red: 67.7 - green: 44.9 - yellow: 48.6 - blue: 66.3 - magenta: 74.3 - cyan: 51.8 - white: 0 - brightBlack: 50.6 - brightRed: 67.7 - brightGreen: 44.9 - brightYellow: 48.6 - brightBlue: 66.3 - brightMagenta: 74.3 - brightCyan: 51.8 - brightWhite: 0 diff --git a/themes/alien-blood.yaml b/themes/alien-blood.yaml deleted file mode 100644 index e443ab5e..00000000 --- a/themes/alien-blood.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Alien Blood" -source: - marketplace_id: "ThomasBishop.alien-blood" - version: "1.7.3" - installs: 2384 - rating: 5 - ratings: 5 - author: "Thomas Bishop" - repo: "https://github.com/thomasabishop/alien-blood-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=ThomasBishop.alien-blood" -colors: - bg: "#0F1610" - fg: "#637D75" - black: "#112616" - red: "#E08009" - green: "#2F7E25" - yellow: "#717F24" - blue: "#2F6A7F" - magenta: "#47587F" - cyan: "#327F77" - white: "#647D75" - brightBlack: "#3C4812" - brightRed: "#E08009" - brightGreen: "#717F24" - brightYellow: "#BDE000" - brightBlue: "#00AAE0" - brightMagenta: "#0058E0" - brightCyan: "#00E0C4" - brightWhite: "#717F24" -meta: - mode: "dark" - accent: "purple" - hue: 149 - pair: null - contrast: - fg: 30 - black: 0 - red: 46.3 - green: 26.2 - yellow: 30.4 - blue: 21.2 - magenta: 16.8 - cyan: 28.3 - white: 30.1 - brightBlack: 8.9 - brightRed: 46.3 - brightGreen: 30.4 - brightYellow: 78.5 - brightBlue: 49.7 - brightMagenta: 21.9 - brightCyan: 72.9 - brightWhite: 30.4 diff --git a/themes/alien-terminal-nostromo-amber.yaml b/themes/alien-terminal-nostromo-amber.yaml deleted file mode 100644 index f497f35b..00000000 --- a/themes/alien-terminal-nostromo-amber.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Alien Terminal Nostromo Amber" -source: - marketplace_id: "ericson-willians.uscss-nostromo-theme" - version: "1.0.0" - installs: 596 - rating: 0 - ratings: 0 - author: "Ericson Willians Rocha Pires" - repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" -colors: - bg: "#000000" - fg: "#FFAA00" - black: "#000000" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFEE00" - blue: "#FFAA00" - magenta: "#FF66FF" - cyan: "#FFAA66" - white: "#CCCCCC" - brightBlack: "#DD9900" - brightRed: "#FF3333" - brightGreen: "#66FF66" - brightYellow: "#FFFF00" - brightBlue: "#FFEE00" - brightMagenta: "#FF99FF" - brightCyan: "#FFDD99" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 66.5 - black: 0 - red: 37.5 - green: 86.5 - yellow: 94.6 - blue: 66.5 - magenta: 54.8 - cyan: 67.2 - white: 75.7 - brightBlack: 54.5 - brightRed: 39.6 - brightGreen: 89 - brightYellow: 102.7 - brightBlue: 94.6 - brightMagenta: 67.6 - brightCyan: 88.6 - brightWhite: 107.9 diff --git a/themes/alien-terminal-nostromo-green.yaml b/themes/alien-terminal-nostromo-green.yaml deleted file mode 100644 index 18beb174..00000000 --- a/themes/alien-terminal-nostromo-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Alien Terminal Nostromo Green" -source: - marketplace_id: "ericson-willians.uscss-nostromo-theme" - version: "1.0.0" - installs: 596 - rating: 0 - ratings: 0 - author: "Ericson Willians Rocha Pires" - repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" -colors: - bg: "#000000" - fg: "#00FF00" - black: "#000000" - red: "#FF3333" - green: "#00FF00" - yellow: "#FFCC00" - blue: "#00DD00" - magenta: "#FF66FF" - cyan: "#66FFCC" - white: "#CCCCCC" - brightBlack: "#00AA00" - brightRed: "#FF6666" - brightGreen: "#66FF66" - brightYellow: "#FFEE00" - brightBlue: "#66FF66" - brightMagenta: "#FF99FF" - brightCyan: "#99FFDD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 86.5 - black: 0 - red: 39.6 - green: 86.5 - yellow: 79.6 - blue: 68.7 - magenta: 54.8 - cyan: 91.7 - white: 75.7 - brightBlack: 44.5 - brightRed: 47.9 - brightGreen: 89 - brightYellow: 94.6 - brightBlue: 89 - brightMagenta: 67.6 - brightCyan: 95.4 - brightWhite: 107.9 diff --git a/themes/alien-terminal-sevastopol-link.yaml b/themes/alien-terminal-sevastopol-link.yaml deleted file mode 100644 index 52c352fa..00000000 --- a/themes/alien-terminal-sevastopol-link.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Alien Terminal Sevastopol Link" -source: - marketplace_id: "ericson-willians.uscss-nostromo-theme" - version: "1.0.0" - installs: 596 - rating: 0 - ratings: 0 - author: "Ericson Willians Rocha Pires" - repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" -colors: - bg: "#000000" - fg: "#CCFFCC" - black: "#000000" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFFF00" - blue: "#CCFFCC" - magenta: "#FF66FF" - cyan: "#66FFCC" - white: "#FFFFFF" - brightBlack: "#00FF00" - brightRed: "#FF3333" - brightGreen: "#CCFFCC" - brightYellow: "#FFFF99" - brightBlue: "#FFFFFF" - brightMagenta: "#FF99FF" - brightCyan: "#99FFDD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 99.3 - black: 0 - red: 37.5 - green: 86.5 - yellow: 102.7 - blue: 99.3 - magenta: 54.8 - cyan: 91.7 - white: 107.9 - brightBlack: 86.5 - brightRed: 39.6 - brightGreen: 99.3 - brightYellow: 104.2 - brightBlue: 107.9 - brightMagenta: 67.6 - brightCyan: 95.4 - brightWhite: 107.9 diff --git a/themes/alignment-darker.yaml b/themes/alignment-darker.yaml index 79765035..33777beb 100644 --- a/themes/alignment-darker.yaml +++ b/themes/alignment-darker.yaml @@ -8,6 +8,7 @@ source: author: "natixco" repo: "https://github.com/natixco/alignment-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=natixco.alignment-theme-vsc" + formats: null colors: bg: "#161622" fg: "#EADEDA" diff --git a/themes/alignment.yaml b/themes/alignment.yaml index d37a051e..373ce765 100644 --- a/themes/alignment.yaml +++ b/themes/alignment.yaml @@ -8,6 +8,7 @@ source: author: "natixco" repo: "https://github.com/natixco/alignment-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=natixco.alignment-theme-vsc" + formats: null colors: bg: "#1E1E29" fg: "#EADEDA" diff --git a/themes/all-black.yaml b/themes/all-black.yaml index fad31f03..51ca7e30 100644 --- a/themes/all-black.yaml +++ b/themes/all-black.yaml @@ -2,12 +2,13 @@ name: "all-black" source: marketplace_id: "xiaobai.all-black" version: "0.6.4" - installs: 5847 + installs: 5848 rating: 5 ratings: 1 author: "xiaobai" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xiaobai.all-black" + formats: null colors: bg: "#1E1E1E" fg: "#F8F8F2" diff --git a/themes/all-blue.yaml b/themes/all-blue.yaml index 8b702fa9..7f19eb40 100644 --- a/themes/all-blue.yaml +++ b/themes/all-blue.yaml @@ -8,6 +8,7 @@ source: author: "njshockey" repo: "https://github.com/njshockey/all-blue-theme" url: "https://marketplace.visualstudio.com/items?itemName=njshockey.all-blue" + formats: null colors: bg: "#002138" fg: "#63C5DA" diff --git a/themes/all-nighter-theme.yaml b/themes/all-nighter-theme.yaml deleted file mode 100644 index 346db173..00000000 --- a/themes/all-nighter-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "all-nighter Theme" -source: - marketplace_id: "aaa1.all-nighter-italic" - version: "1.0.1" - installs: 2155 - rating: 5 - ratings: 1 - author: "Martin Enzinger" - repo: "https://github.com/martinenzinger/allnighter" - url: "https://marketplace.visualstudio.com/items?itemName=aaa1.all-nighter-italic" -colors: - bg: "#2C2C2C" - fg: "#BABABA" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 60.9 - black: 0 - red: 23.5 - green: 49.8 - yellow: 82.4 - blue: 24.2 - magenta: 26.5 - cyan: 44.3 - white: 86.8 - brightBlack: 18.8 - brightRed: 35.3 - brightGreen: 60.3 - brightYellow: 92.4 - brightBlue: 36.8 - brightMagenta: 42.1 - brightCyan: 52.2 - brightWhite: 86.8 diff --git a/themes/alligator-light.yaml b/themes/alligator-light.yaml index 6e78d30f..9ee08d6a 100644 --- a/themes/alligator-light.yaml +++ b/themes/alligator-light.yaml @@ -8,6 +8,8 @@ source: author: "alligator-vscode-color-theme" repo: "https://github.com/lianghx-319/Alligator-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=alligator-vscode-color-theme.alligator" + formats: + zed: "https://raw.githubusercontent.com/lianghx-319/Alligator-color-theme/master/themes/alligator-solarized-dark-color-theme.json" colors: bg: "#FCFCFC" fg: "#6C7757" diff --git a/themes/alligator-solarized-dark.yaml b/themes/alligator-solarized-dark.yaml index 0ee36b48..19deff0d 100644 --- a/themes/alligator-solarized-dark.yaml +++ b/themes/alligator-solarized-dark.yaml @@ -8,6 +8,8 @@ source: author: "alligator-vscode-color-theme" repo: "https://github.com/lianghx-319/Alligator-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=alligator-vscode-color-theme.alligator" + formats: + zed: "https://raw.githubusercontent.com/lianghx-319/Alligator-color-theme/master/themes/alligator-solarized-dark-color-theme.json" colors: bg: "#073642" fg: "#7D99A3" diff --git a/themes/alligator-solarized-light.yaml b/themes/alligator-solarized-light.yaml index baeee87c..00853d8c 100644 --- a/themes/alligator-solarized-light.yaml +++ b/themes/alligator-solarized-light.yaml @@ -8,6 +8,8 @@ source: author: "alligator-vscode-color-theme" repo: "https://github.com/lianghx-319/Alligator-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=alligator-vscode-color-theme.alligator" + formats: + zed: "https://raw.githubusercontent.com/lianghx-319/Alligator-color-theme/master/themes/alligator-solarized-dark-color-theme.json" colors: bg: "#FCF9EF" fg: "#586E75" diff --git a/themes/allomancer.yaml b/themes/allomancer.yaml index 722327e5..f1ea852a 100644 --- a/themes/allomancer.yaml +++ b/themes/allomancer.yaml @@ -8,6 +8,7 @@ source: author: "Maneesh John" repo: "https://github.com/maneeshjohn/allomancer-vscode" url: "https://marketplace.visualstudio.com/items?itemName=maneeshJohn.allomancer-vscode" + formats: null colors: bg: "#282C34" fg: "#EEFFFF" diff --git a/themes/allure-contrast.yaml b/themes/allure-contrast.yaml deleted file mode 100644 index c4241ca7..00000000 --- a/themes/allure-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "allure-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#17191C" - fg: "#C0CCDB" - black: "#23262A" - red: "#BA0E2E" - green: "#5DA892" - yellow: "#E4D294" - blue: "#FFFFFF" - magenta: "#5DA892" - cyan: "#E4D294" - white: "#D0D9E4" - brightBlack: "#454B54" - brightRed: "#F03E5F" - brightGreen: "#9FCCBF" - brightYellow: "#F9F4E5" - brightBlue: "#FFFFFF" - brightMagenta: "#9FCCBF" - brightCyan: "#F9F4E5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 73.7 - black: 0 - red: 20.3 - green: 46.8 - yellow: 78.4 - blue: 106.7 - magenta: 46.8 - cyan: 78.4 - white: 81.7 - brightBlack: 10.9 - brightRed: 36.6 - brightGreen: 69 - brightYellow: 99.5 - brightBlue: 106.7 - brightMagenta: 69 - brightCyan: 99.5 - brightWhite: 106.7 diff --git a/themes/allure-light.yaml b/themes/allure-light.yaml deleted file mode 100644 index 993595cf..00000000 --- a/themes/allure-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "allure-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#555E68" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#5DA892" - yellow: "#E4D294" - blue: "#555E68" - magenta: "#5DA892" - cyan: "#E4D294" - white: "#606B76" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#9FCCBF" - brightYellow: "#F9F4E5" - brightBlue: "#86919C" - brightMagenta: "#9FCCBF" - brightCyan: "#F9F4E5" - brightWhite: "#86919C" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82.6 - black: 0 - red: 80.3 - green: 53.9 - yellow: 23.6 - blue: 82.6 - magenta: 53.9 - cyan: 23.6 - white: 77.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 32.5 - brightYellow: 0 - brightBlue: 59.3 - brightMagenta: 32.5 - brightCyan: 0 - brightWhite: 59.3 diff --git a/themes/allure.yaml b/themes/allure.yaml deleted file mode 100644 index 2590aa47..00000000 --- a/themes/allure.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "allure" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#32373D" - fg: "#C0CCDB" - black: "#3D444B" - red: "#BA0E2E" - green: "#5DA892" - yellow: "#E4D294" - blue: "#FFFFFF" - magenta: "#5DA892" - cyan: "#E4D294" - white: "#D0D9E4" - brightBlack: "#606A75" - brightRed: "#F03E5F" - brightGreen: "#9FCCBF" - brightYellow: "#F9F4E5" - brightBlue: "#FFFFFF" - brightMagenta: "#9FCCBF" - brightCyan: "#F9F4E5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 253 - pair: null - contrast: - fg: 68 - black: 0 - red: 14.7 - green: 41.1 - yellow: 72.7 - blue: 101 - magenta: 41.1 - cyan: 72.7 - white: 76.1 - brightBlack: 17.4 - brightRed: 31 - brightGreen: 63.3 - brightYellow: 93.8 - brightBlue: 101 - brightMagenta: 63.3 - brightCyan: 93.8 - brightWhite: 101 diff --git a/themes/alma-sakura-theme.yaml b/themes/alma-sakura-theme.yaml deleted file mode 100644 index 69237c10..00000000 --- a/themes/alma-sakura-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Alma Sakura Theme" -source: - marketplace_id: "hoshinokanade.alma-sakura" - version: "0.1.2" - installs: 9217 - rating: 5 - ratings: 3 - author: "hoshinokanade" - repo: "https://github.com/as-alma/Alma-Sakura" - url: "https://marketplace.visualstudio.com/items?itemName=hoshinokanade.alma-sakura" -colors: - bg: "#2E2B2C" - fg: "#CBBEC2" - black: "#47393E" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#B9ACB0" - brightBlack: "#69545B" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#CBBEC2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 65.1 - black: 0 - red: 37.4 - green: 73.8 - yellow: 63.8 - blue: 48.8 - magenta: 42.4 - cyan: 67.3 - white: 54.9 - brightBlack: 13.7 - brightRed: 42.6 - brightGreen: 76 - brightYellow: 50.7 - brightBlue: 54.1 - brightMagenta: 54.8 - brightCyan: 70.7 - brightWhite: 65.1 diff --git a/themes/almond-cream.yaml b/themes/almond-cream.yaml index 7df1714b..eeb7fd3d 100644 --- a/themes/almond-cream.yaml +++ b/themes/almond-cream.yaml @@ -8,6 +8,7 @@ source: author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/cocoabutter" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.cocoa-butter" + formats: null colors: bg: "#FAF4ED" fg: "#526479" diff --git a/themes/aloe.yaml b/themes/aloe.yaml index f0f86f91..ee7a974e 100644 --- a/themes/aloe.yaml +++ b/themes/aloe.yaml @@ -8,6 +8,7 @@ source: author: "Lab829" repo: "https://github.com/lab829/aloe" url: "https://marketplace.visualstudio.com/items?itemName=Lab829.aloe" + formats: null colors: bg: "#1A1D1A" fg: "#D9EBE0" diff --git a/themes/alpha.yaml b/themes/alpha.yaml deleted file mode 100644 index 7650c31a..00000000 --- a/themes/alpha.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: ".Alpha" -source: - marketplace_id: "slepe.topl-theme" - version: "1.0.1" - installs: 824 - rating: 0 - ratings: 0 - author: "Slepe" - repo: "https://github.com/slepe/topl-theme" - url: "https://marketplace.visualstudio.com/items?itemName=slepe.topl-theme" -colors: - bg: "#24242A" - fg: "#A6A9B7" - black: "#484E5B" - red: "#E56F92" - green: "#8CD7AA" - yellow: "#E9967E" - blue: "#E56F92" - magenta: "#E56F92" - cyan: "#7ABCE4" - white: "#DADDEE" - brightBlack: "#484E5B" - brightRed: "#E56F92" - brightGreen: "#8CD7AA" - brightYellow: "#E9967E" - brightBlue: "#E56F92" - brightMagenta: "#E56F92" - brightCyan: "#7ABCE4" - brightWhite: "#DADDEE" -meta: - mode: "dark" - accent: "red" - hue: 286 - pair: null - contrast: - fg: 53.1 - black: 10.6 - red: 42.9 - green: 70 - yellow: 54.1 - blue: 42.9 - magenta: 42.9 - cyan: 59.1 - white: 83.6 - brightBlack: 10.6 - brightRed: 42.9 - brightGreen: 70 - brightYellow: 54.1 - brightBlue: 42.9 - brightMagenta: 42.9 - brightCyan: 59.1 - brightWhite: 83.6 diff --git a/themes/alpine-warm.yaml b/themes/alpine-warm.yaml index 496ef7cd..9afdecdc 100644 --- a/themes/alpine-warm.yaml +++ b/themes/alpine-warm.yaml @@ -2,12 +2,13 @@ name: "Alpine-Warm" source: marketplace_id: "Hyperbolic-Labs.Alpine-Warm" version: "0.0.1" - installs: 788 + installs: 789 rating: 0 ratings: 0 author: "Hyperbolic-Labs" repo: "https://github.com/Hyperbolic-Labs/alpine-theme" url: "https://marketplace.visualstudio.com/items?itemName=Hyperbolic-Labs.Alpine-Warm" + formats: null colors: bg: "#22262A" fg: "#D0D0D0" diff --git a/themes/alpine.yaml b/themes/alpine.yaml index 7b8eed6e..5f4548d9 100644 --- a/themes/alpine.yaml +++ b/themes/alpine.yaml @@ -8,6 +8,7 @@ source: author: "snapper" repo: null url: "https://marketplace.visualstudio.com/items?itemName=snapperito.alpine" + formats: null colors: bg: "#222222" fg: "#A3A5AA" diff --git a/themes/altearn.yaml b/themes/altearn.yaml index 7d6b0f8b..783b7565 100644 --- a/themes/altearn.yaml +++ b/themes/altearn.yaml @@ -8,6 +8,7 @@ source: author: "Leirof" repo: "https://github.com/Gunivers/VSC-theme" url: "https://marketplace.visualstudio.com/items?itemName=Leirof.gunivers-theme" + formats: null colors: bg: "#F9F6F1" fg: "#333333" diff --git a/themes/altered-matter-dopamin-owl.yaml b/themes/altered-matter-dopamin-owl.yaml deleted file mode 100644 index 86266f30..00000000 --- a/themes/altered-matter-dopamin-owl.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Altered Matter Dopamin Owl" -source: - marketplace_id: "techwithcarlos.cyberpunk-2021" - version: "1.8.5" - installs: 31486 - rating: 5 - ratings: 3 - author: "techwithcarlos" - repo: "https://github.com/CarlosTaubeler/cyberpunk-2021" - url: "https://marketplace.visualstudio.com/items?itemName=techwithcarlos.cyberpunk-2021" -colors: - bg: "#011627" - fg: "#97A7C8" - black: "#000000" - red: "#FF0000" - green: "#33FF00" - yellow: "#F2FF00" - blue: "#0066FF" - magenta: "#CC00FF" - cyan: "#0AB6C2" - white: "#D7DBE0" - brightBlack: "#808080" - brightRed: "#FF0000" - brightGreen: "#00FF9D" - brightYellow: "#F2FF00" - brightBlue: "#0066FF" - brightMagenta: "#CC00FF" - brightCyan: "#35E2EE" - brightWhite: "#D7DBE0" -meta: - mode: "dark" - accent: "pink" - hue: 244 - pair: null - contrast: - fg: 53.4 - black: 0 - red: 36.6 - green: 85.9 - yellow: 100 - blue: 28.3 - magenta: 34.6 - cyan: 53 - white: 83.6 - brightBlack: 33.8 - brightRed: 36.6 - brightGreen: 87.4 - brightYellow: 100 - brightBlue: 28.3 - brightMagenta: 34.6 - brightCyan: 76.1 - brightWhite: 83.6 diff --git a/themes/alternight.yaml b/themes/alternight.yaml deleted file mode 100644 index 1e5a5d27..00000000 --- a/themes/alternight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "alternight" -source: - marketplace_id: "spaceinvadev.alternight" - version: "3.0.0" - installs: 12495 - rating: 5 - ratings: 4 - author: "Mauro Paternina" - repo: "https://github.com/spaceinvadev/alternight-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=spaceinvadev.alternight" -colors: - bg: "#1F172B" - fg: "#CAAEEB" - black: "#292929" - red: "#F07C7C" - green: "#4CA779" - yellow: "#FFCB6B" - blue: "#5C7FE2" - magenta: "#C869D1" - cyan: "#40CFCF" - white: "#FAFAFA" - brightBlack: "#080808" - brightRed: "#F08A8A" - brightGreen: "#71BD97" - brightYellow: "#FDDA9A" - brightBlue: "#718EDF" - brightMagenta: "#D581DD" - brightCyan: "#70D1D1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 302 - pair: null - contrast: - fg: 63.5 - black: 0 - red: 49 - green: 44.5 - yellow: 78.5 - blue: 35.3 - magenta: 40.5 - cyan: 65.2 - white: 103.1 - brightBlack: 0 - brightRed: 53.4 - brightGreen: 56.9 - brightYellow: 85.5 - brightBlue: 41.6 - brightMagenta: 49.6 - brightCyan: 68.2 - brightWhite: 106.4 diff --git a/themes/altin-s-love-symphony.yaml b/themes/altin-s-love-symphony.yaml deleted file mode 100644 index 722c5adb..00000000 --- a/themes/altin-s-love-symphony.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Altin's Love Symphony" -source: - marketplace_id: "slumbersage.slumbersage" - version: "0.0.1" - installs: 852 - rating: 5 - ratings: 1 - author: "slumbersage" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=slumbersage.slumbersage" -colors: - bg: "#181818" - fg: "#FFFFFF" - black: "#000000" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFFF00" - blue: "#0000FF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#FF6666" - brightGreen: "#66FF66" - brightYellow: "#FFFF66" - brightBlue: "#6666FF" - brightMagenta: "#FF66FF" - brightCyan: "#66FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106.8 - black: 0 - red: 36.4 - green: 85.4 - yellow: 101.6 - blue: 15.1 - magenta: 45.1 - cyan: 91.1 - white: 106.8 - brightBlack: 21.9 - brightRed: 46.8 - brightGreen: 87.9 - brightYellow: 102.2 - brightBlue: 31.5 - brightMagenta: 53.7 - brightCyan: 92.9 - brightWhite: 106.8 diff --git a/themes/alucard-sotn.yaml b/themes/alucard-sotn.yaml deleted file mode 100644 index c4dfa964..00000000 --- a/themes/alucard-sotn.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Alucard Sotn" -source: - marketplace_id: "DanielDlc.alucardsotn" - version: "4.0.0" - installs: 1501 - rating: 5 - ratings: 1 - author: "Alucard Sotn" - repo: "https://github.com/DanielDlc/Alucard-theme" - url: "https://marketplace.visualstudio.com/items?itemName=DanielDlc.alucardsotn" -colors: - bg: "#292A43" - fg: "#C0C0D0" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 282 - pair: null - contrast: - fg: 65 - black: 0 - red: 23.4 - green: 49.7 - yellow: 82.3 - blue: 24.1 - magenta: 26.5 - cyan: 44.3 - white: 86.7 - brightBlack: 18.7 - brightRed: 35.3 - brightGreen: 60.2 - brightYellow: 92.3 - brightBlue: 36.7 - brightMagenta: 42.1 - brightCyan: 52.1 - brightWhite: 86.7 diff --git a/themes/alx-theme-classic.yaml b/themes/alx-theme-classic.yaml index 8b4b1045..9aacc88f 100644 --- a/themes/alx-theme-classic.yaml +++ b/themes/alx-theme-classic.yaml @@ -8,6 +8,7 @@ source: author: "ALX_ZMN" repo: "https://github.com/revivalver/VScodeTHEME" url: "https://marketplace.visualstudio.com/items?itemName=ALX-ZMN.alx-theme-color-theme" + formats: null colors: bg: "#000000" fg: "#D4D4D4" diff --git a/themes/alx-theme-toxic.yaml b/themes/alx-theme-toxic.yaml index 159ab128..bdf19146 100644 --- a/themes/alx-theme-toxic.yaml +++ b/themes/alx-theme-toxic.yaml @@ -8,6 +8,7 @@ source: author: "ALX_ZMN" repo: "https://github.com/revivalver/VScodeTHEME" url: "https://marketplace.visualstudio.com/items?itemName=ALX-ZMN.alx-theme-color-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/amadeus-dark-cobalt.yaml b/themes/amadeus-dark-cobalt.yaml index 51a1eede..8710e889 100644 --- a/themes/amadeus-dark-cobalt.yaml +++ b/themes/amadeus-dark-cobalt.yaml @@ -8,6 +8,7 @@ source: author: "gbrachetta" repo: "https://github.com/GBrachetta/amadeus-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=gbrachetta.amadeus-dark-theme" + formats: null colors: bg: "#101618" fg: "#DAD5C1" diff --git a/themes/amadeus-dark-pastel.yaml b/themes/amadeus-dark-pastel.yaml index 4541ab99..0fa6b8e3 100644 --- a/themes/amadeus-dark-pastel.yaml +++ b/themes/amadeus-dark-pastel.yaml @@ -8,6 +8,7 @@ source: author: "gbrachetta" repo: "https://github.com/GBrachetta/amadeus-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=gbrachetta.amadeus-dark-theme" + formats: null colors: bg: "#1A1A1A" fg: "#DBBE94" diff --git a/themes/amadeus-dark.yaml b/themes/amadeus-dark.yaml index 6b14c2cf..f39a362d 100644 --- a/themes/amadeus-dark.yaml +++ b/themes/amadeus-dark.yaml @@ -8,6 +8,7 @@ source: author: "gbrachetta" repo: "https://github.com/GBrachetta/amadeus-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=gbrachetta.amadeus-dark-theme" + formats: null colors: bg: "#202020" fg: "#91A7C4" diff --git a/themes/amazon-jungle.yaml b/themes/amazon-jungle.yaml deleted file mode 100644 index b30c4ec5..00000000 --- a/themes/amazon-jungle.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Amazon-Jungle" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#0C0A09" - fg: "#F2F2F2" - black: "#0C0A09" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#22C55E" - magenta: "#22C55E" - cyan: "#29C3A0" - white: "#F2F2F2" - brightBlack: "#0C0A09" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#22C55E" - brightMagenta: "#22C55E" - brightCyan: "#29C3A0" - brightWhite: "#F2F2F2" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 99.2 - black: 0 - red: 10.2 - green: 58.5 - yellow: 52.5 - blue: 57.6 - magenta: 57.6 - cyan: 58.5 - white: 99.2 - brightBlack: 0 - brightRed: 10.2 - brightGreen: 58.5 - brightYellow: 52.5 - brightBlue: 57.6 - brightMagenta: 57.6 - brightCyan: 58.5 - brightWhite: 99.2 diff --git a/themes/amazonfrog.yaml b/themes/amazonfrog.yaml index 281ec189..61f892fa 100644 --- a/themes/amazonfrog.yaml +++ b/themes/amazonfrog.yaml @@ -1,4 +1,4 @@ -name: "AmazonFrog" +name: "amazonFrog" source: marketplace_id: "TiagoMarcial.AmazonFrog" version: "0.1.8" @@ -8,6 +8,7 @@ source: author: "Tiago Marcial" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TiagoMarcial.AmazonFrog" + formats: null colors: bg: "#011627" fg: "#FFFFFF" diff --git a/themes/ambar-for-vscode.yaml b/themes/ambar-for-vscode.yaml index 11035bef..9b9e3ffa 100644 --- a/themes/ambar-for-vscode.yaml +++ b/themes/ambar-for-vscode.yaml @@ -8,6 +8,7 @@ source: author: "guimar10_dev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=guimar10dev.amber-for-vscode" + formats: null colors: bg: "#3F1400" fg: "#D4D4D4" diff --git a/themes/amber-delight.yaml b/themes/amber-delight.yaml index 354bf85d..56ab816f 100644 --- a/themes/amber-delight.yaml +++ b/themes/amber-delight.yaml @@ -8,6 +8,7 @@ source: author: "Primal Skill" repo: "https://github.com/primalskill/amber-delight-theme" url: "https://marketplace.visualstudio.com/items?itemName=PrimalSkill.amber-delight" + formats: null colors: bg: "#000000" fg: "#E4E4E4" diff --git a/themes/amber-red-light.yaml b/themes/amber-red-light.yaml index 682d0914..86687857 100644 --- a/themes/amber-red-light.yaml +++ b/themes/amber-red-light.yaml @@ -8,6 +8,7 @@ source: author: "HantigoZore" repo: "https://github.com/HantigoZore/AmberStudio" url: "https://marketplace.visualstudio.com/items?itemName=HantigoZore.amber-studio" + formats: null colors: bg: "#FFFFFF" fg: "#333333" diff --git a/themes/amber-red.yaml b/themes/amber-red.yaml index a22fd1c7..574641cd 100644 --- a/themes/amber-red.yaml +++ b/themes/amber-red.yaml @@ -8,6 +8,7 @@ source: author: "HantigoZore" repo: "https://github.com/HantigoZore/AmberStudio" url: "https://marketplace.visualstudio.com/items?itemName=HantigoZore.amber-studio" + formats: null colors: bg: "#000000" fg: "#E1E4E8" diff --git a/themes/ambient.yaml b/themes/ambient.yaml index cc79cf15..2fd02fc5 100644 --- a/themes/ambient.yaml +++ b/themes/ambient.yaml @@ -8,6 +8,7 @@ source: author: "Avetis" repo: "https://github.com/AvetisDN/twodark-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.twodark" + formats: null colors: bg: "#151517" fg: "#D4D4D4" diff --git a/themes/amethyst-dreams.yaml b/themes/amethyst-dreams.yaml index aa927a3f..1f38569f 100644 --- a/themes/amethyst-dreams.yaml +++ b/themes/amethyst-dreams.yaml @@ -8,6 +8,7 @@ source: author: "Sniffin" repo: "https://github.com/Sniffin3083/amethyst-dreams" url: "https://marketplace.visualstudio.com/items?itemName=Sniffin.amethyst-dreams" + formats: null colors: bg: "#24082C" fg: "#D4D4D4" diff --git a/themes/amethyst-kiss-dark-kiss-mode.yaml b/themes/amethyst-kiss-dark-kiss-mode.yaml deleted file mode 100644 index 3a542133..00000000 --- a/themes/amethyst-kiss-dark-kiss-mode.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Amethyst Kiss Dark(Kiss Mode)" -source: - marketplace_id: "MahdiBehkar.amethyst-kiss" - version: "0.1.0" - installs: 641 - rating: 0 - ratings: 0 - author: "MahdiBehkar" - repo: "https://github.com/Behkar/amethyst_kiss_theme" - url: "https://marketplace.visualstudio.com/items?itemName=MahdiBehkar.amethyst-kiss" -colors: - bg: "#373E4D" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 265 - pair: null - contrast: - fg: 71.4 - black: 9 - red: 18.6 - green: 44.9 - yellow: 77.5 - blue: 19.3 - magenta: 21.7 - cyan: 39.5 - white: 81.9 - brightBlack: 13.9 - brightRed: 30.5 - brightGreen: 55.4 - brightYellow: 87.5 - brightBlue: 31.9 - brightMagenta: 37.3 - brightCyan: 47.3 - brightWhite: 81.9 diff --git a/themes/amethyst-kiss-light-kiss-mode.yaml b/themes/amethyst-kiss-light-kiss-mode.yaml deleted file mode 100644 index b3360dc0..00000000 --- a/themes/amethyst-kiss-light-kiss-mode.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Amethyst Kiss Light(Kiss Mode)" -source: - marketplace_id: "MahdiBehkar.amethyst-kiss" - version: "0.1.0" - installs: 641 - rating: 0 - ratings: 0 - author: "MahdiBehkar" - repo: "https://github.com/Behkar/amethyst_kiss_theme" - url: "https://marketplace.visualstudio.com/items?itemName=MahdiBehkar.amethyst-kiss" -colors: - bg: "#F9F9F9" - fg: "#29343D" - black: "#29343D" - red: "#F8961E" - green: "#90BE6D" - yellow: "#F3722C" - blue: "#577590" - magenta: "#F9C74F" - cyan: "#43AA8B" - white: "#555555" - brightBlack: "#394956" - brightRed: "#F8961E" - brightGreen: "#90BE6D" - brightYellow: "#F3722C" - brightBlue: "#577590" - brightMagenta: "#F9C74F" - brightCyan: "#43AA8B" - brightWhite: "#ABABAB" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 95.2 - black: 95.2 - red: 40.1 - green: 38.5 - yellow: 51 - blue: 69.8 - magenta: 22.5 - cyan: 50.8 - white: 82.3 - brightBlack: 87.8 - brightRed: 40.1 - brightGreen: 38.5 - brightYellow: 51 - brightBlue: 69.8 - brightMagenta: 22.5 - brightCyan: 50.8 - brightWhite: 41.7 diff --git a/themes/amethyst-stone.yaml b/themes/amethyst-stone.yaml deleted file mode 100644 index d61f17b1..00000000 --- a/themes/amethyst-stone.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Amethyst-Stone" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#030712" - fg: "#F9FAFB" - black: "#030712" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#6D28D9" - magenta: "#6D28D9" - cyan: "#29C3A0" - white: "#F9FAFB" - brightBlack: "#030712" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#6D28D9" - brightMagenta: "#6D28D9" - brightCyan: "#29C3A0" - brightWhite: "#F9FAFB" -meta: - mode: "dark" - accent: "magenta" - hue: 262 - pair: null - contrast: - fg: 104.4 - black: 0 - red: 10.3 - green: 58.6 - yellow: 52.6 - blue: 18.5 - magenta: 18.5 - cyan: 58.6 - white: 104.4 - brightBlack: 0 - brightRed: 10.3 - brightGreen: 58.6 - brightYellow: 52.6 - brightBlue: 18.5 - brightMagenta: 18.5 - brightCyan: 58.6 - brightWhite: 104.4 diff --git a/themes/amethyst-theme.yaml b/themes/amethyst-theme.yaml index 1c724964..67cbcf96 100644 --- a/themes/amethyst-theme.yaml +++ b/themes/amethyst-theme.yaml @@ -2,12 +2,13 @@ name: "Amethyst Theme" source: marketplace_id: "JuanILlaberia.amethyst-dark-theme" version: "1.0.0" - installs: 1330 + installs: 1332 rating: 5 ratings: 1 author: "Juan I. Llaberia" repo: "https://github.com/JuaniLlaberia/Amethyst" url: "https://marketplace.visualstudio.com/items?itemName=JuanILlaberia.amethyst-dark-theme" + formats: null colors: bg: "#1A1624" fg: "#A2A3A3" diff --git a/themes/amminial.yaml b/themes/amminial.yaml index e007aa47..bf92def0 100644 --- a/themes/amminial.yaml +++ b/themes/amminial.yaml @@ -8,6 +8,7 @@ source: author: "abdirrahman" repo: "https://github.com/Abdirrahman/vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=abdirrahman.amminimal" + formats: null colors: bg: "#1B1C1E" fg: "#FFFFFF" diff --git a/themes/amoled-dark-theme.yaml b/themes/amoled-dark-theme.yaml deleted file mode 100644 index 85ebc285..00000000 --- a/themes/amoled-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Amoled Dark Theme" -source: - marketplace_id: "rendinjast.amoled-black" - version: "0.1.0" - installs: 58362 - rating: 4.4 - ratings: 5 - author: "Erfan khadivar" - repo: "https://github.com/rendinjast/amoled-black" - url: "https://marketplace.visualstudio.com/items?itemName=rendinjast.amoled-black" -colors: - bg: "#0E0E0E" - fg: "#999999" - black: "#343434" - red: "#E1270E" - green: "#5BC266" - yellow: "#FBCC43" - blue: "#535BCF" - magenta: "#BF5AF2" - cyan: "#6CC7F6" - white: "#FFFFFF" - brightBlack: "#535BCF" - brightRed: "#E1270E" - brightGreen: "#5BC266" - brightYellow: "#FBCC43" - brightBlue: "#535BCF" - brightMagenta: "#BF5AF2" - brightCyan: "#6CC7F6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 46.9 - black: 0 - red: 30.9 - green: 57.9 - yellow: 78.9 - blue: 23.9 - magenta: 39.2 - cyan: 66.6 - white: 107.6 - brightBlack: 23.9 - brightRed: 30.9 - brightGreen: 57.9 - brightYellow: 78.9 - brightBlue: 23.9 - brightMagenta: 39.2 - brightCyan: 66.6 - brightWhite: 107.6 diff --git a/themes/amoledtest-fork-fork.yaml b/themes/amoledtest-fork-fork.yaml index ac3f8783..c0fe7400 100644 --- a/themes/amoledtest-fork-fork.yaml +++ b/themes/amoledtest-fork-fork.yaml @@ -8,6 +8,7 @@ source: author: "Daniel Lucario" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DanielLucario.Mitternacht" + formats: null colors: bg: "#000000" fg: "#ABB2BF" diff --git a/themes/amora.yaml b/themes/amora.yaml index 69a74088..27126bf7 100644 --- a/themes/amora.yaml +++ b/themes/amora.yaml @@ -8,6 +8,7 @@ source: author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null colors: bg: "#171717" fg: "#D4D4D4" diff --git a/themes/amozonia.yaml b/themes/amozonia.yaml deleted file mode 100644 index 68c247e8..00000000 --- a/themes/amozonia.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Amozonia" -source: - marketplace_id: "VueComputedTheme.styldev" - version: "0.0.2" - installs: 189 - rating: 5 - ratings: 1 - author: "VueComputed Theme" - repo: "https://github.com/rafa4dev/styldev" - url: "https://marketplace.visualstudio.com/items?itemName=VueComputedTheme.styldev" -colors: - bg: "#322726" - fg: "#CBAB8F" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 24 - pair: null - contrast: - fg: 56.2 - black: 0 - red: 24 - green: 50.2 - yellow: 82.9 - blue: 24.7 - magenta: 27 - cyan: 44.8 - white: 87.3 - brightBlack: 19.3 - brightRed: 35.8 - brightGreen: 60.8 - brightYellow: 92.9 - brightBlue: 37.2 - brightMagenta: 42.6 - brightCyan: 52.6 - brightWhite: 87.3 diff --git a/themes/amp-dark.yaml b/themes/amp-dark.yaml deleted file mode 100644 index 10edcf92..00000000 --- a/themes/amp-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Amp Dark" -source: - marketplace_id: "hrose.amp-theme" - version: "0.1.0" - installs: 495 - rating: 5 - ratings: 2 - author: "Hanna Rose" - repo: "https://codeberg.org/hanna/amp-theme#vscode" - url: "https://marketplace.visualstudio.com/items?itemName=hrose.amp-theme" -colors: - bg: "#161616" - fg: "#F2ECDD" - black: "#161616" - red: "#D9634F" - green: "#7C9B96" - yellow: "#E3A25A" - blue: "#316E99" - magenta: "#B98BA4" - cyan: "#5A8F8F" - white: "#E1E1E1" - brightBlack: "#627987" - brightRed: "#E7894C" - brightGreen: "#B6D7BA" - brightYellow: "#E3C888" - brightBlue: "#6A9FCC" - brightMagenta: "#D6B4A4" - brightCyan: "#8FC4C4" - brightWhite: "#F2ECDD" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Amp Light" - contrast: - fg: 94.7 - black: 0 - red: 37.9 - green: 44.1 - yellow: 58.3 - blue: 23.6 - magenta: 45.9 - cyan: 36.8 - white: 87.6 - brightBlack: 29.1 - brightRed: 50.6 - brightGreen: 76.3 - brightYellow: 73.9 - brightBlue: 46.8 - brightMagenta: 64.8 - brightCyan: 64.5 - brightWhite: 94.7 diff --git a/themes/amp-light.yaml b/themes/amp-light.yaml deleted file mode 100644 index 3c0107b6..00000000 --- a/themes/amp-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Amp Light" -source: - marketplace_id: "hrose.amp-theme" - version: "0.1.0" - installs: 495 - rating: 5 - ratings: 2 - author: "Hanna Rose" - repo: "https://codeberg.org/hanna/amp-theme#vscode" - url: "https://marketplace.visualstudio.com/items?itemName=hrose.amp-theme" -colors: - bg: "#FFFFFF" - fg: "#2A2A2A" - black: "#E1E1E1" - red: "#D9634F" - green: "#5A8F8F" - yellow: "#C87A2F" - blue: "#316E99" - magenta: "#B98BA4" - cyan: "#5A8F8F" - white: "#2A2A2A" - brightBlack: "#8A8A8A" - brightRed: "#E7894C" - brightGreen: "#7C9B96" - brightYellow: "#E3A25A" - brightBlue: "#6A9FCC" - brightMagenta: "#D6B4A4" - brightCyan: "#8FC4C4" - brightWhite: "#161616" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Amp Dark" - contrast: - fg: 101.1 - black: 15.2 - red: 62.9 - green: 64 - yellow: 60.5 - blue: 77.2 - magenta: 55 - cyan: 64 - white: 101.1 - brightBlack: 62.1 - brightRed: 50.4 - brightGreen: 56.8 - brightYellow: 43 - brightBlue: 54.1 - brightMagenta: 36.8 - brightCyan: 37 - brightWhite: 104.8 diff --git a/themes/an-bis.yaml b/themes/an-bis.yaml index 4ac1ccba..af69df3b 100644 --- a/themes/an-bis.yaml +++ b/themes/an-bis.yaml @@ -8,6 +8,7 @@ source: author: "Felipe Bergamaschi" repo: "https://github.com/felipe-bergamaschi/anubis-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=felipe-bergamaschi.anubis-theme" + formats: null colors: bg: "#212D3B" fg: "#F8F8F2" diff --git a/themes/anakmun.yaml b/themes/anakmun.yaml index d4a9b633..b43b285d 100644 --- a/themes/anakmun.yaml +++ b/themes/anakmun.yaml @@ -8,6 +8,7 @@ source: author: "Luiz Cavalcante" repo: "https://github.com/louiscavalcante/theme-anakmun" url: "https://marketplace.visualstudio.com/items?itemName=louiscavalcante.theme-anakmun" + formats: null colors: bg: "#282C34" fg: "#CCCCCC" diff --git a/themes/analog-dream-beige-terminal.yaml b/themes/analog-dream-beige-terminal.yaml index 04aa21aa..c4186918 100644 --- a/themes/analog-dream-beige-terminal.yaml +++ b/themes/analog-dream-beige-terminal.yaml @@ -8,6 +8,7 @@ source: author: "taotao7" repo: "https://github.com/taotao7/cassette-futurism" url: "https://marketplace.visualstudio.com/items?itemName=taotao7.cassette-futurism" + formats: null colors: bg: "#FAF8F4" fg: "#2D2A27" diff --git a/themes/analog-dream-magnetic-night.yaml b/themes/analog-dream-magnetic-night.yaml index 64a3084f..d1dce4e0 100644 --- a/themes/analog-dream-magnetic-night.yaml +++ b/themes/analog-dream-magnetic-night.yaml @@ -8,6 +8,7 @@ source: author: "taotao7" repo: "https://github.com/taotao7/cassette-futurism" url: "https://marketplace.visualstudio.com/items?itemName=taotao7.cassette-futurism" + formats: null colors: bg: "#25292E" fg: "#D4D4D4" diff --git a/themes/anasdev.yaml b/themes/anasdev.yaml index 91e81d2a..e830f06e 100644 --- a/themes/anasdev.yaml +++ b/themes/anasdev.yaml @@ -8,6 +8,7 @@ source: author: "anasdev" repo: "https://github.com/MezaStudio/Meza-Theme" url: "https://marketplace.visualstudio.com/items?itemName=anasdev.meza-theme" + formats: null colors: bg: "#18191F" fg: "#D4D4D4" diff --git a/themes/anastasia.yaml b/themes/anastasia.yaml index 6986b65d..508f5eeb 100644 --- a/themes/anastasia.yaml +++ b/themes/anastasia.yaml @@ -8,6 +8,7 @@ source: author: "Sayanjit Mukherjee" repo: "https://github.com/Thedrogon/anastasia" url: "https://marketplace.visualstudio.com/items?itemName=ShayanMukherjee.anastasia" + formats: null colors: bg: "#041F1A" fg: "#E2F1F0" diff --git a/themes/andromeda-custom.yaml b/themes/andromeda-custom.yaml index 4f73ec93..f7a10d1a 100644 --- a/themes/andromeda-custom.yaml +++ b/themes/andromeda-custom.yaml @@ -1,13 +1,14 @@ -name: "Andromeda-Custom" +name: "Andromeda-custom" source: marketplace_id: "canhabil.andromeda-custom" version: "0.0.1" - installs: 898 + installs: 899 rating: 0 ratings: 0 author: "canhabil" repo: "https://github.com/Khoalah/Andromeda-custom" url: "https://marketplace.visualstudio.com/items?itemName=canhabil.andromeda-custom" + formats: null colors: bg: "#101417" fg: "#FFFFFF" diff --git a/themes/andromeda-light-italic-bordered.yaml b/themes/andromeda-light-italic-bordered.yaml deleted file mode 100644 index 53662cbe..00000000 --- a/themes/andromeda-light-italic-bordered.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Andromeda Light Italic Bordered" -source: - marketplace_id: "kailoklum.perseus" - version: "1.0.0" - installs: 220 - rating: 0 - ratings: 0 - author: "kailoklum" - repo: "https://github.com/kailoklum/Perseus" - url: "https://marketplace.visualstudio.com/items?itemName=kailoklum.perseus" -colors: - bg: "#FFFFFF" - fg: "#455059" - black: "#370067" - red: "#EF4444" - green: "#07D258" - yellow: "#EAB308" - blue: "#0284C7" - magenta: "#BF568B" - cyan: "#2F7ECD" - white: "#FFFFFF" - brightBlack: "#627E99" - brightRed: "#EF4444" - brightGreen: "#24966E" - brightYellow: "#EAB308" - brightBlue: "#8B56BF" - brightMagenta: "#BF568B" - brightCyan: "#20BCFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 88.5 - black: 101 - red: 63.8 - green: 38.6 - yellow: 36.4 - blue: 67.5 - magenta: 69 - cyan: 68.7 - white: 0 - brightBlack: 69.2 - brightRed: 63.8 - brightGreen: 64.3 - brightYellow: 36.4 - brightBlue: 74.4 - brightMagenta: 69 - brightCyan: 42 - brightWhite: 0 diff --git a/themes/andromeda-night.yaml b/themes/andromeda-night.yaml deleted file mode 100644 index fd56ffcd..00000000 --- a/themes/andromeda-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Andromeda Night" -source: - marketplace_id: "ni3rav.andromeda-night" - version: "0.0.7" - installs: 1263 - rating: 0 - ratings: 0 - author: "ni3rav" - repo: "https://github.com/ni3rav/andromeda-night" - url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.andromeda-night" -colors: - bg: "#1A1B26" - fg: "#A9B1D6" - black: "#363B54" - red: "#F7768E" - green: "#73DACA" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#787C99" - brightBlack: "#363B54" - brightRed: "#F7768E" - brightGreen: "#73DACA" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#ACB0D0" -meta: - mode: "dark" - accent: "red" - hue: 280 - pair: null - contrast: - fg: 59.3 - black: 0 - red: 49.4 - green: 72.2 - yellow: 62.2 - blue: 51.1 - magenta: 55 - cyan: 70.5 - white: 32.1 - brightBlack: 0 - brightRed: 49.4 - brightGreen: 72.2 - brightYellow: 62.2 - brightBlue: 51.1 - brightMagenta: 55 - brightCyan: 70.5 - brightWhite: 59 diff --git a/themes/andromeda-zed.yaml b/themes/andromeda-zed.yaml index 860a9cd2..8f4753bc 100644 --- a/themes/andromeda-zed.yaml +++ b/themes/andromeda-zed.yaml @@ -1,4 +1,4 @@ -name: "Andromeda Zed" +name: "andromeda-zed" source: marketplace_id: "AdrienLeloup.andromeda-zed" version: "0.0.1" @@ -8,6 +8,8 @@ source: author: "Adrien Leloup" repo: "https://github.com/voidgraphics/andromeda-zed-vs-code" url: "https://marketplace.visualstudio.com/items?itemName=AdrienLeloup.andromeda-zed" + formats: + zed: "https://raw.githubusercontent.com/voidgraphics/andromeda-zed-vs-code/main/themes/Andromeda-Zed-color-theme.json" colors: bg: "#1E2025" fg: "#F7F7F8" diff --git a/themes/andromeda.yaml b/themes/andromeda.yaml deleted file mode 100644 index 7b0a7a58..00000000 --- a/themes/andromeda.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Andromeda" -source: - marketplace_id: "apoorvkhare07.andromeda-vscode" - version: "1.1.0" - installs: 35973 - rating: 5 - ratings: 2 - author: "apoorvkhare07" - repo: "https://github.com/apoorvkhare07/andromeda" - url: "https://marketplace.visualstudio.com/items?itemName=apoorvkhare07.andromeda-vscode" -colors: - bg: "#0A0A0A" - fg: "#FFFFFF" - black: "#666666" - red: "#F2777A" - green: "#92D192" - yellow: "#FFD479" - blue: "#6AB0F3" - magenta: "#E1A6F2" - cyan: "#62CFCF" - white: "#FFFFFF" - brightBlack: "#777777" - brightRed: "#F2777A" - brightGreen: "#92D192" - brightYellow: "#FFD479" - brightBlue: "#6AB0F3" - brightMagenta: "#E1A6F2" - brightCyan: "#62CFCF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.7 - black: 22.9 - red: 49.4 - green: 69.6 - yellow: 83.8 - blue: 56.7 - magenta: 65.7 - cyan: 67.8 - white: 107.7 - brightBlack: 30.4 - brightRed: 49.4 - brightGreen: 69.6 - brightYellow: 83.8 - brightBlue: 56.7 - brightMagenta: 65.7 - brightCyan: 67.8 - brightWhite: 107.7 diff --git a/themes/anemones.yaml b/themes/anemones.yaml index 1323778a..a68a3cbf 100644 --- a/themes/anemones.yaml +++ b/themes/anemones.yaml @@ -8,6 +8,7 @@ source: author: "anemones" repo: "https://github.com/radio-alice/anemone-colors" url: "https://marketplace.visualstudio.com/items?itemName=anemones.anemone-colors" + formats: null colors: bg: "#EAE2FF" fg: "#150049" diff --git a/themes/angelnature2.yaml b/themes/angelnature2.yaml index b843a403..71b156ef 100644 --- a/themes/angelnature2.yaml +++ b/themes/angelnature2.yaml @@ -8,6 +8,7 @@ source: author: "angelcontreras" repo: "https://github.com/username/repository" url: "https://marketplace.visualstudio.com/items?itemName=angelcontreras.angelnature2" + formats: null colors: bg: "#322923" fg: "#FFE3B8" diff --git a/themes/angrboda-dark.yaml b/themes/angrboda-dark.yaml index ebd7bf54..e2cc2ac1 100644 --- a/themes/angrboda-dark.yaml +++ b/themes/angrboda-dark.yaml @@ -8,6 +8,7 @@ source: author: "carlssonloke" repo: "https://github.com/lokecarlsson/Angrboda" url: "https://marketplace.visualstudio.com/items?itemName=carlssonloke.angrboda" + formats: null colors: bg: "#1E1E1E" fg: "#F0E8F5" diff --git a/themes/angrboda-light.yaml b/themes/angrboda-light.yaml index 82c14049..4f2d0b18 100644 --- a/themes/angrboda-light.yaml +++ b/themes/angrboda-light.yaml @@ -8,6 +8,7 @@ source: author: "carlssonloke" repo: "https://github.com/lokecarlsson/Angrboda" url: "https://marketplace.visualstudio.com/items?itemName=carlssonloke.angrboda" + formats: null colors: bg: "#FFFFFF" fg: "#1A1A1A" diff --git a/themes/angular-dark-theme.yaml b/themes/angular-dark-theme.yaml deleted file mode 100644 index 4b017731..00000000 --- a/themes/angular-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Angular Dark Theme" -source: - marketplace_id: "MichaellAlavedraMunayco.angular-theme" - version: "7.1.2" - installs: 16339 - rating: 5 - ratings: 1 - author: "Michaell Alavedra" - repo: "https://github.com/gitchaell/angular-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MichaellAlavedraMunayco.angular-theme" -colors: - bg: "#09090B" - fg: "#FAFAFA" - black: "#27272A" - red: "#EF4444" - green: "#22C55E" - yellow: "#EAB308" - blue: "#3B82F6" - magenta: "#A855F7" - cyan: "#06B6D4" - white: "#E4E4E7" - brightBlack: "#52525B" - brightRed: "#F87171" - brightGreen: "#4ADE80" - brightYellow: "#FACC15" - brightBlue: "#60A5FA" - brightMagenta: "#C084FC" - brightCyan: "#22D3EE" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 104.5 - black: 0 - red: 37.7 - green: 57.7 - yellow: 66 - blue: 37.7 - magenta: 35.3 - cyan: 54.8 - white: 90.4 - brightBlack: 15.1 - brightRed: 49 - brightGreen: 71.3 - brightYellow: 78.7 - brightBlue: 52.3 - brightMagenta: 50.6 - brightCyan: 69.5 - brightWhite: 104.5 diff --git a/themes/animatrix.yaml b/themes/animatrix.yaml deleted file mode 100644 index 75848452..00000000 --- a/themes/animatrix.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Animatrix" -source: - marketplace_id: "KurtDunn.animatrix" - version: "0.0.4" - installs: 6174 - rating: 0 - ratings: 0 - author: "Animatrix" - repo: "https://github.com/kurtisdunn/animatrix" - url: "https://marketplace.visualstudio.com/items?itemName=KurtDunn.animatrix" -colors: - bg: "#0E191C" - fg: "#6CFF75" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 217 - pair: null - contrast: - fg: 88.5 - black: 0 - red: 26.7 - green: 52.9 - yellow: 85.6 - blue: 27.4 - magenta: 29.7 - cyan: 47.5 - white: 90 - brightBlack: 22 - brightRed: 38.5 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 39.9 - brightMagenta: 45.3 - brightCyan: 55.3 - brightWhite: 90 diff --git a/themes/animetheme.yaml b/themes/animetheme.yaml index 2cab7f81..67e97eaf 100644 --- a/themes/animetheme.yaml +++ b/themes/animetheme.yaml @@ -2,12 +2,13 @@ name: "animetheme" source: marketplace_id: "animetheme.animetheme" version: "0.0.2" - installs: 3932 + installs: 3934 rating: 0 ratings: 0 author: "animetheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=animetheme.animetheme" + formats: null colors: bg: "#282650" fg: "#D4D4D4" diff --git a/themes/anisochromatic.yaml b/themes/anisochromatic.yaml index 15491130..2880385e 100644 --- a/themes/anisochromatic.yaml +++ b/themes/anisochromatic.yaml @@ -1,13 +1,14 @@ -name: "Anisochromatic" +name: "anisochromatic" source: marketplace_id: "isomorph-research.anisochromatic" version: "0.0.14" - installs: 424 + installs: 425 rating: 5 ratings: 1 author: "Isomorph Research Laboratories" repo: "https://github.com/isomorph-research/anisochromatic-vscode" url: "https://marketplace.visualstudio.com/items?itemName=isomorph-research.anisochromatic" + formats: null colors: bg: "#2C313A" fg: "#F2ECE1" diff --git a/themes/ano-theme-dark.yaml b/themes/ano-theme-dark.yaml deleted file mode 100644 index efc2aeb9..00000000 --- a/themes/ano-theme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ano Theme - Dark" -source: - marketplace_id: "MaksymMarholin.ano-theme" - version: "0.1.26" - installs: 1166 - rating: 5 - ratings: 1 - author: "Maksym Marholin" - repo: "https://github.com/delafin/AnoTheme" - url: "https://marketplace.visualstudio.com/items?itemName=MaksymMarholin.ano-theme" -colors: - bg: "#222527" - fg: "#CDD3DE" - black: "#3F4451" - red: "#771818" - green: "#358B52" - yellow: "#D18F52" - blue: "#224C79" - magenta: "#764386" - cyan: "#42B3C2" - white: "#B8BBC0" - brightBlack: "#4F5666" - brightRed: "#9A2E37" - brightGreen: "#3D5D48" - brightYellow: "#E5C07B" - brightBlue: "#5C83AC" - brightMagenta: "#C162DE" - brightCyan: "#62A5C7" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 76.8 - black: 0 - red: 0 - green: 29.9 - yellow: 46.8 - blue: 9.5 - magenta: 14.4 - cyan: 50.7 - white: 62.8 - brightBlack: 13.6 - brightRed: 14.3 - brightGreen: 13.7 - brightYellow: 68.7 - brightBlue: 31.9 - brightMagenta: 37.2 - brightCyan: 46.5 - brightWhite: 88.8 diff --git a/themes/anoldhope.yaml b/themes/anoldhope.yaml deleted file mode 100644 index 9b4e275f..00000000 --- a/themes/anoldhope.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "AnOldHope" -source: - marketplace_id: "dustinsanders.an-old-hope-theme-vscode" - version: "4.4.0" - installs: 102957 - rating: 4.79 - ratings: 24 - author: "Dustin Sanders" - repo: "https://github.com/git@github.com:dustinsanders/an-old-hope-theme-vscode.git" - url: "https://marketplace.visualstudio.com/items?itemName=dustinsanders.an-old-hope-theme-vscode" -colors: - bg: "#1C1D21" - fg: "#CBCDD2" - black: "#818491" - red: "#EB3D54" - green: "#78BD65" - yellow: "#E5CD52" - blue: "#4FB4D8" - magenta: "#EB3D54" - cyan: "#4FB4D8" - white: "#CBCDD2" - brightBlack: "#818491" - brightRed: "#EB3D54" - brightGreen: "#78BD65" - brightYellow: "#E5CD52" - brightBlue: "#4FB4D8" - brightMagenta: "#78BD65" - brightCyan: "#4FB4D8" - brightWhite: "#CBCDD2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 74.5 - black: 35.1 - red: 34.6 - green: 55.9 - yellow: 74.6 - blue: 53.8 - magenta: 34.6 - cyan: 53.8 - white: 74.5 - brightBlack: 35.1 - brightRed: 34.6 - brightGreen: 55.9 - brightYellow: 74.6 - brightBlue: 53.8 - brightMagenta: 55.9 - brightCyan: 53.8 - brightWhite: 74.5 diff --git a/themes/another-acid-trip.yaml b/themes/another-acid-trip.yaml deleted file mode 100644 index ef7b35ab..00000000 --- a/themes/another-acid-trip.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Another-Acid-Trip" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#020817" - fg: "#F8FAFC" - black: "#020817" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#A4ED2C" - magenta: "#A4ED2C" - cyan: "#29C3A0" - white: "#F8FAFC" - brightBlack: "#020817" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#A4ED2C" - brightMagenta: "#A4ED2C" - brightCyan: "#29C3A0" - brightWhite: "#F8FAFC" -meta: - mode: "dark" - accent: "green" - hue: 259 - pair: null - contrast: - fg: 104.3 - black: 0 - red: 10.2 - green: 58.5 - yellow: 52.6 - blue: 83.1 - magenta: 83.1 - cyan: 58.5 - white: 104.3 - brightBlack: 0 - brightRed: 10.2 - brightGreen: 58.5 - brightYellow: 52.6 - brightBlue: 83.1 - brightMagenta: 83.1 - brightCyan: 58.5 - brightWhite: 104.3 diff --git a/themes/anquyx.yaml b/themes/anquyx.yaml deleted file mode 100644 index 664aa0a4..00000000 --- a/themes/anquyx.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "anquyx" -source: - marketplace_id: "julisales.anquyx-theme" - version: "2.0.0" - installs: 39 - rating: 5 - ratings: 1 - author: "julisales" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=julisales.anquyx-theme" -colors: - bg: "#1A1727" - fg: "#FFFBFB" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#B8B8B8" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 292 - pair: null - contrast: - fg: 104.5 - black: 0 - red: 26.5 - green: 52.7 - yellow: 85.4 - blue: 27.2 - magenta: 29.5 - cyan: 47.3 - white: 62.8 - brightBlack: 21.8 - brightRed: 38.3 - brightGreen: 63.3 - brightYellow: 95.4 - brightBlue: 39.7 - brightMagenta: 45.1 - brightCyan: 55.1 - brightWhite: 89.8 diff --git a/themes/anthropic-dark.yaml b/themes/anthropic-dark.yaml deleted file mode 100644 index f3e19525..00000000 --- a/themes/anthropic-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Anthropic Dark" -source: - marketplace_id: "TeoVoss.antzed-theme" - version: "1.1.1" - installs: 136 - rating: 0 - ratings: 0 - author: "TeoVoss" - repo: "https://github.com/TeoVoss/antzed-theme" - url: "https://marketplace.visualstudio.com/items?itemName=TeoVoss.antzed-theme" -colors: - bg: "#151412" - fg: "#F0EDE3" - black: "#151412" - red: "#E68868" - green: "#9FB980" - yellow: "#E9B868" - blue: "#7AACDD" - magenta: "#E68868" - cyan: "#7AACDD" - white: "#F0EDE3" - brightBlack: "#6A6760" - brightRed: "#F09978" - brightGreen: "#AFC990" - brightYellow: "#F9C978" - brightBlue: "#8ABDEE" - brightMagenta: "#F09978" - brightCyan: "#8ABDEE" - brightWhite: "#FAF9F5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Anthropic Light" - contrast: - fg: 95.3 - black: 0 - red: 50.8 - green: 59.1 - yellow: 67.9 - blue: 54.2 - magenta: 50.8 - cyan: 54.2 - white: 95.3 - brightBlack: 22.8 - brightRed: 58.3 - brightGreen: 68.1 - brightYellow: 77.6 - brightBlue: 63.4 - brightMagenta: 58.3 - brightCyan: 63.4 - brightWhite: 103.1 diff --git a/themes/anthropic-light.yaml b/themes/anthropic-light.yaml deleted file mode 100644 index cc0a2f86..00000000 --- a/themes/anthropic-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Anthropic Light" -source: - marketplace_id: "TeoVoss.antzed-theme" - version: "1.1.1" - installs: 136 - rating: 0 - ratings: 0 - author: "TeoVoss" - repo: "https://github.com/TeoVoss/antzed-theme" - url: "https://marketplace.visualstudio.com/items?itemName=TeoVoss.antzed-theme" -colors: - bg: "#FAF9F5" - fg: "#141413" - black: "#141413" - red: "#D97757" - green: "#788C5D" - yellow: "#D97757" - blue: "#6A9BCC" - magenta: "#D97757" - cyan: "#6A9BCC" - white: "#FAF9F5" - brightBlack: "#B0AEA5" - brightRed: "#D97757" - brightGreen: "#788C5D" - brightYellow: "#D97757" - brightBlue: "#6A9BCC" - brightMagenta: "#D97757" - brightCyan: "#6A9BCC" - brightWhite: "#FAF9F5" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Anthropic Dark" - contrast: - fg: 101.4 - black: 101.4 - red: 54.2 - green: 60.7 - yellow: 54.2 - blue: 52 - magenta: 54.2 - cyan: 52 - white: 0 - brightBlack: 40.2 - brightRed: 54.2 - brightGreen: 60.7 - brightYellow: 54.2 - brightBlue: 52 - brightMagenta: 54.2 - brightCyan: 52 - brightWhite: 0 diff --git a/themes/anthropic.yaml b/themes/anthropic.yaml deleted file mode 100644 index c2cccd54..00000000 --- a/themes/anthropic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Anthropic" -source: - marketplace_id: "bryanr.anthropic-theme" - version: "0.0.1" - installs: 970 - rating: 0 - ratings: 0 - author: "Bryan Russett" - repo: "https://github.com/od0/anthropic-theme" - url: "https://marketplace.visualstudio.com/items?itemName=bryanr.anthropic-theme" -colors: - bg: "#1B1815" - fg: "#D9CCCC" - black: "#1F1F1F" - red: "#CC6F4E" - green: "#CCA699" - yellow: "#D2A17D" - blue: "#CCB3B3" - magenta: "#CC7373" - cyan: "#D9CCCC" - white: "#D9CCCC" - brightBlack: "#353535" - brightRed: "#D87B61" - brightGreen: "#E2CCC0" - brightYellow: "#F2C6AE" - brightBlue: "#E0D3D3" - brightMagenta: "#E0A5A5" - brightCyan: "#EAE2E2" - brightWhite: "#F2F2F2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 76.2 - black: 0 - red: 38 - green: 57.4 - yellow: 55.7 - blue: 63.3 - magenta: 39.9 - cyan: 76.2 - white: 76.2 - brightBlack: 0 - brightRed: 43.8 - brightGreen: 77 - brightYellow: 76.3 - brightBlue: 80.5 - brightMagenta: 60.5 - brightCyan: 89.1 - brightWhite: 98.2 diff --git a/themes/anthropocene.yaml b/themes/anthropocene.yaml index 4827664e..efbf35bb 100644 --- a/themes/anthropocene.yaml +++ b/themes/anthropocene.yaml @@ -8,6 +8,7 @@ source: author: "ridamu" repo: "https://github.com/rdmulford/anthropocene" url: "https://marketplace.visualstudio.com/items?itemName=ridamu.anthropocene" + formats: null colors: bg: "#141517" fg: "#ECEDEF" diff --git a/themes/anti-glare-moonlit.yaml b/themes/anti-glare-moonlit.yaml deleted file mode 100644 index f6731033..00000000 --- a/themes/anti-glare-moonlit.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "anti-glare-moonlit" -source: - marketplace_id: "azmarifdev.anti-glare-theme" - version: "1.7.0" - installs: 759 - rating: 5 - ratings: 3 - author: "A. Z. M. Arif" - repo: "https://github.com/azmarifdev/anti-glare-theme" - url: "https://marketplace.visualstudio.com/items?itemName=azmarifdev.anti-glare-theme" -colors: - bg: "#01192E" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 247 - pair: null - contrast: - fg: 79.2 - black: 0 - red: 26.5 - green: 52.8 - yellow: 85.4 - blue: 27.2 - magenta: 29.5 - cyan: 47.3 - white: 89.8 - brightBlack: 21.8 - brightRed: 38.3 - brightGreen: 63.3 - brightYellow: 95.4 - brightBlue: 39.8 - brightMagenta: 45.1 - brightCyan: 55.1 - brightWhite: 89.8 diff --git a/themes/anti-glare-nebula.yaml b/themes/anti-glare-nebula.yaml deleted file mode 100644 index aa334d4e..00000000 --- a/themes/anti-glare-nebula.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "anti-glare-nebula" -source: - marketplace_id: "azmarifdev.anti-glare-theme" - version: "1.7.0" - installs: 759 - rating: 5 - ratings: 3 - author: "A. Z. M. Arif" - repo: "https://github.com/azmarifdev/anti-glare-theme" - url: "https://marketplace.visualstudio.com/items?itemName=azmarifdev.anti-glare-theme" -colors: - bg: "#001C35" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 248 - pair: null - contrast: - fg: 78.8 - black: 0 - red: 26.1 - green: 52.4 - yellow: 85 - blue: 26.8 - magenta: 29.1 - cyan: 46.9 - white: 89.4 - brightBlack: 21.4 - brightRed: 37.9 - brightGreen: 62.9 - brightYellow: 95 - brightBlue: 39.4 - brightMagenta: 44.7 - brightCyan: 54.8 - brightWhite: 89.4 diff --git a/themes/anti-glare-official.yaml b/themes/anti-glare-official.yaml deleted file mode 100644 index 3b520b4a..00000000 --- a/themes/anti-glare-official.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "anti-glare-official" -source: - marketplace_id: "azmarifdev.anti-glare-theme" - version: "1.7.0" - installs: 759 - rating: 5 - ratings: 3 - author: "A. Z. M. Arif" - repo: "https://github.com/azmarifdev/anti-glare-theme" - url: "https://marketplace.visualstudio.com/items?itemName=azmarifdev.anti-glare-theme" -colors: - bg: "#001322" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 242 - pair: null - contrast: - fg: 79.8 - black: 0 - red: 27.1 - green: 53.4 - yellow: 86 - blue: 27.8 - magenta: 30.1 - cyan: 47.9 - white: 90.4 - brightBlack: 22.4 - brightRed: 38.9 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.3 - brightMagenta: 45.7 - brightCyan: 55.7 - brightWhite: 90.4 diff --git a/themes/anti-gravity-pink.yaml b/themes/anti-gravity-pink.yaml index 9ba26773..7f9ceb5b 100644 --- a/themes/anti-gravity-pink.yaml +++ b/themes/anti-gravity-pink.yaml @@ -2,12 +2,13 @@ name: "Anti-Gravity Pink" source: marketplace_id: "hap4114.antigravity-pink" version: "0.1.0" - installs: 134 + installs: 157 rating: 5 ratings: 1 author: "Himani Anil Patil" repo: "https://github.com/hap4114/antigravity-pink" url: "https://marketplace.visualstudio.com/items?itemName=hap4114.antigravity-pink" + formats: null colors: bg: "#0D0010" fg: "#FFFFFF" diff --git a/themes/antidote.yaml b/themes/antidote.yaml index 9fb6bfbd..16fdd71c 100644 --- a/themes/antidote.yaml +++ b/themes/antidote.yaml @@ -8,6 +8,7 @@ source: author: "Phil Ecker" repo: "https://github.com/philecker/antidote" url: "https://marketplace.visualstudio.com/items?itemName=philecker.antidote" + formats: null colors: bg: "#181818" fg: "#B3B3B3" diff --git a/themes/antimaterial.yaml b/themes/antimaterial.yaml index 0d251e14..3c1b5dc2 100644 --- a/themes/antimaterial.yaml +++ b/themes/antimaterial.yaml @@ -8,6 +8,7 @@ source: author: "tatyshev" repo: "https://github.com/tatyshev/vscode-antimaterial" url: "https://marketplace.visualstudio.com/items?itemName=tatyshev.vscode-antimaterial" + formats: null colors: bg: "#263238" fg: "#D5DEE2" diff --git a/themes/anubis-dark-theme.yaml b/themes/anubis-dark-theme.yaml index fbf40913..e69d5d15 100644 --- a/themes/anubis-dark-theme.yaml +++ b/themes/anubis-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Mo Ali" repo: "https://github.com/devMoAli/AnubisDarkTheme" url: "https://marketplace.visualstudio.com/items?itemName=MoAli.anubis-dark-theme" + formats: null colors: bg: "#000000" fg: "#CDCDCD" diff --git a/themes/anubis-dark.yaml b/themes/anubis-dark.yaml index 552bf2a9..c4cc33b6 100644 --- a/themes/anubis-dark.yaml +++ b/themes/anubis-dark.yaml @@ -8,6 +8,7 @@ source: author: "Meastblue" repo: "https://github.com/meastblue/orbital-frame-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" + formats: null colors: bg: "#0D0D0D" fg: "#F5F5F5" diff --git a/themes/anubis-light.yaml b/themes/anubis-light.yaml index 7c46b266..8b8f21a4 100644 --- a/themes/anubis-light.yaml +++ b/themes/anubis-light.yaml @@ -8,6 +8,7 @@ source: author: "Meastblue" repo: "https://github.com/meastblue/orbital-frame-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" + formats: null colors: bg: "#FFFFFF" fg: "#1A1A1A" diff --git a/themes/anufemist-dark.yaml b/themes/anufemist-dark.yaml index aee84466..01e5431b 100644 --- a/themes/anufemist-dark.yaml +++ b/themes/anufemist-dark.yaml @@ -8,6 +8,7 @@ source: author: "Anufemist" repo: "https://github.com/anufemist/vscode-theme-anufemist-dark" url: "https://marketplace.visualstudio.com/items?itemName=Anufemist.anufemist-dark" + formats: null colors: bg: "#151515" fg: "#DDDDDD" diff --git a/themes/apathy-experimental.yaml b/themes/apathy-experimental.yaml deleted file mode 100644 index 3f6c3d5f..00000000 --- a/themes/apathy-experimental.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Apathy Experimental" -source: - marketplace_id: "CooperMaruyama.apathy-theme" - version: "2.3.0" - installs: 263 - rating: 5 - ratings: 2 - author: "Cooper Maruyama" - repo: "https://github.com/coopmoney/apathy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=CooperMaruyama.apathy-theme" -colors: - bg: "#12121C" - fg: "#E1E2E5" - black: "#2A273F" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#ECEFF4" - brightBlack: "#3B3853" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 284 - pair: null - contrast: - fg: 88.5 - black: 0 - red: 46.9 - green: 84.5 - yellow: 79.3 - blue: 56.3 - magenta: 54.1 - cyan: 78.6 - white: 96.6 - brightBlack: 0 - brightRed: 44 - brightGreen: 84.5 - brightYellow: 79.3 - brightBlue: 56.3 - brightMagenta: 54.1 - brightCyan: 78.6 - brightWhite: 107.2 diff --git a/themes/apathy.yaml b/themes/apathy.yaml deleted file mode 100644 index 3f62a32a..00000000 --- a/themes/apathy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Apathy" -source: - marketplace_id: "CooperMaruyama.apathy-theme" - version: "2.3.0" - installs: 263 - rating: 5 - ratings: 2 - author: "Cooper Maruyama" - repo: "https://github.com/coopmoney/apathy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=CooperMaruyama.apathy-theme" -colors: - bg: "#0E0E15" - fg: "#8E93B0" - black: "#2A273F" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#D1D3D9" - brightBlack: "#3F3B5A" - brightRed: "#FF6B82" - brightGreen: "#D7F2A6" - brightYellow: "#FFE082" - brightBlue: "#9EC3FF" - brightMagenta: "#DDA4FF" - brightCyan: "#A3EEFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 285 - pair: null - contrast: - fg: 44.4 - black: 0 - red: 47.2 - green: 84.8 - yellow: 79.6 - blue: 56.6 - magenta: 54.4 - cyan: 78.9 - white: 79.5 - brightBlack: 7.7 - brightRed: 49.3 - brightGreen: 92.6 - brightYellow: 89 - brightBlue: 69.1 - brightMagenta: 65 - brightCyan: 89 - brightWhite: 107.5 diff --git a/themes/apcodespaces.yaml b/themes/apcodespaces.yaml index 141d986a..3bbc2bc2 100644 --- a/themes/apcodespaces.yaml +++ b/themes/apcodespaces.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ap-dev.theme-customs" version: "1.7.3" installs: 197 + rating: 0 + ratings: 0 author: "AP" repo: "https://github.com/MrParindiyal/apcodespaces-theme" url: "https://marketplace.visualstudio.com/items?itemName=ap-dev.theme-customs" + formats: null colors: bg: "#021B21" fg: "#D4D4D4" diff --git a/themes/apex-carbon.yaml b/themes/apex-carbon.yaml index ec6078de..faefbbbc 100644 --- a/themes/apex-carbon.yaml +++ b/themes/apex-carbon.yaml @@ -8,6 +8,7 @@ source: author: "Gasrulle" repo: "https://github.com/gasrulle/gasrulle-theme" url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" + formats: null colors: bg: "#1F1F1F" fg: "#C2C2C2" diff --git a/themes/apex-ember.yaml b/themes/apex-ember.yaml index ede179ad..17619133 100644 --- a/themes/apex-ember.yaml +++ b/themes/apex-ember.yaml @@ -8,6 +8,7 @@ source: author: "Gasrulle" repo: "https://github.com/gasrulle/gasrulle-theme" url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" + formats: null colors: bg: "#1B1C2E" fg: "#B6BCCE" diff --git a/themes/apex-frost.yaml b/themes/apex-frost.yaml index ca8f9fac..aa59c0e5 100644 --- a/themes/apex-frost.yaml +++ b/themes/apex-frost.yaml @@ -8,6 +8,7 @@ source: author: "Gasrulle" repo: "https://github.com/gasrulle/gasrulle-theme" url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" + formats: null colors: bg: "#1A1D30" fg: "#B0B4C4" diff --git a/themes/apex-neon.yaml b/themes/apex-neon.yaml index 935442d3..9dbad92e 100644 --- a/themes/apex-neon.yaml +++ b/themes/apex-neon.yaml @@ -8,6 +8,7 @@ source: author: "Gasrulle" repo: "https://github.com/gasrulle/gasrulle-theme" url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" + formats: null colors: bg: "#1B1B34" fg: "#C2C2CA" diff --git a/themes/apex-pastel.yaml b/themes/apex-pastel.yaml index 1f5c326f..f9405b11 100644 --- a/themes/apex-pastel.yaml +++ b/themes/apex-pastel.yaml @@ -8,6 +8,7 @@ source: author: "Gasrulle" repo: "https://github.com/gasrulle/gasrulle-theme" url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" + formats: null colors: bg: "#1F1F1F" fg: "#BEBBBD" diff --git a/themes/apex-steel.yaml b/themes/apex-steel.yaml index 4f67eb4d..2cc1569c 100644 --- a/themes/apex-steel.yaml +++ b/themes/apex-steel.yaml @@ -8,6 +8,7 @@ source: author: "Gasrulle" repo: "https://github.com/gasrulle/gasrulle-theme" url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" + formats: null colors: bg: "#1B1E25" fg: "#ABB2BF" diff --git a/themes/apex.yaml b/themes/apex.yaml index ff419cc9..a56ed4ed 100644 --- a/themes/apex.yaml +++ b/themes/apex.yaml @@ -8,6 +8,7 @@ source: author: "FluffyBear" repo: null url: "https://marketplace.visualstudio.com/items?itemName=FluffyBear1111.apex-theme" + formats: null colors: bg: "#23272C" fg: "#D9D9D9" diff --git a/themes/apollo-dark.yaml b/themes/apollo-dark.yaml deleted file mode 100644 index 846bd873..00000000 --- a/themes/apollo-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Apollo Dark" -source: - marketplace_id: "lufutu.apollo-theme" - version: "1.0.0" - installs: 149 - rating: 0 - ratings: 0 - author: "lufutu" - repo: "https://github.com/lufutu/apollo-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lufutu.apollo-theme" -colors: - bg: "#090A14" - fg: "#EBEDE9" - black: "#090A14" - red: "#CF573C" - green: "#75A743" - yellow: "#DE9E41" - blue: "#4F8FBA" - magenta: "#C65197" - cyan: "#73BED3" - white: "#EBEDE9" - brightBlack: "#394A50" - brightRed: "#DA863E" - brightGreen: "#A8CA58" - brightYellow: "#E8C170" - brightBlue: "#73BED3" - brightMagenta: "#DF84A5" - brightCyan: "#A4DDDB" - brightWhite: "#EBEDE9" -meta: - mode: "dark" - accent: "red" - hue: 279 - pair: "Apollo Light" - contrast: - fg: 95.5 - black: 0 - red: 33.8 - green: 47.1 - yellow: 56.5 - blue: 38.9 - magenta: 33.3 - cyan: 61.3 - white: 95.5 - brightBlack: 10.8 - brightRed: 47.9 - brightGreen: 67.2 - brightYellow: 72 - brightBlue: 61.3 - brightMagenta: 50.7 - brightCyan: 79.4 - brightWhite: 95.5 diff --git a/themes/apollo-light.yaml b/themes/apollo-light.yaml deleted file mode 100644 index 5595a132..00000000 --- a/themes/apollo-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Apollo Light" -source: - marketplace_id: "lufutu.apollo-theme" - version: "1.0.0" - installs: 149 - rating: 0 - ratings: 0 - author: "lufutu" - repo: "https://github.com/lufutu/apollo-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lufutu.apollo-theme" -colors: - bg: "#EBEDE9" - fg: "#090A14" - black: "#090A14" - red: "#CF573C" - green: "#75A743" - yellow: "#DE9E41" - blue: "#4F8FBA" - magenta: "#C65197" - cyan: "#73BED3" - white: "#EBEDE9" - brightBlack: "#577277" - brightRed: "#DA863E" - brightGreen: "#A8CA58" - brightYellow: "#E8C170" - brightBlue: "#73BED3" - brightMagenta: "#DF84A5" - brightCyan: "#A4DDDB" - brightWhite: "#EBEDE9" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Apollo Dark" - contrast: - fg: 94.7 - black: 94.7 - red: 56.6 - green: 43.4 - yellow: 34.3 - blue: 51.5 - magenta: 57 - cyan: 29.7 - white: 0 - brightBlack: 64.4 - brightRed: 42.7 - brightGreen: 24.1 - brightYellow: 19.5 - brightBlue: 29.7 - brightMagenta: 39.9 - brightCyan: 12.5 - brightWhite: 0 diff --git a/themes/app-netlify-com.yaml b/themes/app-netlify-com.yaml deleted file mode 100644 index ef0630af..00000000 --- a/themes/app-netlify-com.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "app.netlify.com" -source: - marketplace_id: "chee.chee-vscode-themes" - version: "1.0.0" - installs: 104 - rating: 0 - ratings: 0 - author: "chee" - repo: "https://github.com/chee/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=chee.chee-vscode-themes" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#3B434C" - red: "#FE4E5C" - green: "#3AC364" - yellow: "#FBB13D" - blue: "#316BF4" - magenta: "#EF7FEB" - cyan: "#04A29F" - white: "#BBBBBB" - brightBlack: "#4D565F" - brightRed: "#FE8382" - brightGreen: "#93F5A5" - brightYellow: "#FACD6F" - brightBlue: "#80ABFA" - brightMagenta: "#F3A8EE" - brightCyan: "#32E6E2" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 106 - black: 93.3 - red: 58.6 - green: 44.7 - yellow: 34.1 - blue: 71.5 - magenta: 46.1 - cyan: 57.9 - white: 36.7 - brightBlack: 86 - brightRed: 46.7 - brightGreen: 15.9 - brightYellow: 23.2 - brightBlue: 45.3 - brightMagenta: 33.4 - brightCyan: 24.8 - brightWhite: 0 diff --git a/themes/apparently-purple.yaml b/themes/apparently-purple.yaml index 5ba03833..f281d3fd 100644 --- a/themes/apparently-purple.yaml +++ b/themes/apparently-purple.yaml @@ -8,6 +8,7 @@ source: author: "Apparently Studio" repo: "https://github.com/apparently-studio/apparently-purple" url: "https://marketplace.visualstudio.com/items?itemName=ApparentlyStudio.apparently-purple" + formats: null colors: bg: "#1B1436" fg: "#FFFFFF" diff --git a/themes/apple-dancheong-minimal-light.yaml b/themes/apple-dancheong-minimal-light.yaml deleted file mode 100644 index 42ce7602..00000000 --- a/themes/apple-dancheong-minimal-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "apple-dancheong-minimal-light" -source: - marketplace_id: "weston0713.korean-dancheong-light" - version: "1.1.0" - installs: 73 - rating: 0 - ratings: 0 - author: "weston0713" - repo: "https://github.com/HC-kang/korean-dancheong-light" - url: "https://marketplace.visualstudio.com/items?itemName=weston0713.korean-dancheong-light" -colors: - bg: "#ECF3ED" - fg: "#333333" - black: "#000000" - red: "#C24141" - green: "#2E7D32" - yellow: "#B8860B" - blue: "#116AEE" - magenta: "#AF52DE" - cyan: "#00A8A8" - white: "#EAF0EC" - brightBlack: "#636366" - brightRed: "#FF3B30" - brightGreen: "#4CD164" - brightYellow: "#FFD60A" - brightBlue: "#0A84FF" - brightMagenta: "#BF5AF2" - brightCyan: "#64D2FF" - brightWhite: "#ECF3ED" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 90.4 - black: 97.8 - red: 65.9 - green: 66.8 - yellow: 51.3 - blue: 64.6 - magenta: 59.5 - cyan: 46.8 - white: 0 - brightBlack: 71.7 - brightRed: 53.1 - brightGreen: 29.5 - brightYellow: 11.4 - brightBlue: 55 - brightMagenta: 53.9 - brightCyan: 22.5 - brightWhite: 0 diff --git a/themes/apprentice.yaml b/themes/apprentice.yaml index 42348820..8c95f39b 100644 --- a/themes/apprentice.yaml +++ b/themes/apprentice.yaml @@ -8,6 +8,7 @@ source: author: "arzg" repo: "https://github.com/arzg/apprentice-vscode" url: "https://marketplace.visualstudio.com/items?itemName=arzg.apprentice" + formats: null colors: bg: "#262626" fg: "#BCBCBC" diff --git a/themes/april-dark-theme.yaml b/themes/april-dark-theme.yaml deleted file mode 100644 index 4058f888..00000000 --- a/themes/april-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "April Dark Theme" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#1E2230" - fg: "#EBECF2" - black: "#303C50" - red: "#C05E5E" - green: "#8EB06E" - yellow: "#E6BF6D" - blue: "#6D91C3" - magenta: "#AC8BAE" - cyan: "#74A4CF" - white: "#EBEDF4" - brightBlack: "#4C5767" - brightRed: "#C05E5E" - brightGreen: "#97C17D" - brightYellow: "#E6D07C" - brightBlue: "#7DA3D1" - brightMagenta: "#B79BC0" - brightCyan: "#84B4DB" - brightWhite: "#EBEDF4" -meta: - mode: "dark" - accent: "orange" - hue: 272 - pair: null - contrast: - fg: 93.1 - black: 0 - red: 30.7 - green: 51.4 - yellow: 68.5 - blue: 39.6 - magenta: 42.9 - cyan: 48 - white: 93.7 - brightBlack: 14.1 - brightRed: 30.7 - brightGreen: 59.9 - brightYellow: 75.9 - brightBlue: 48.4 - brightMagenta: 50.7 - brightCyan: 56.4 - brightWhite: 93.7 diff --git a/themes/aqua-glacier.yaml b/themes/aqua-glacier.yaml deleted file mode 100644 index caae6ba5..00000000 --- a/themes/aqua-glacier.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aqua-Glacier" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#252525" - fg: "#FBFBFB" - black: "#252525" - red: "#DC2828" - green: "#29C3A0" - yellow: "#D29922" - blue: "#1ADBF9" - magenta: "#1ADBF9" - cyan: "#29C3A0" - white: "#FBFBFB" - brightBlack: "#252525" - brightRed: "#DC2828" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#1ADBF9" - brightMagenta: "#1ADBF9" - brightCyan: "#29C3A0" - brightWhite: "#FBFBFB" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.3 - black: 0 - red: 27.3 - green: 55.7 - yellow: 49.8 - blue: 71 - magenta: 71 - cyan: 55.7 - white: 102.3 - brightBlack: 0 - brightRed: 27.3 - brightGreen: 55.7 - brightYellow: 49.8 - brightBlue: 71 - brightMagenta: 71 - brightCyan: 55.7 - brightWhite: 102.3 diff --git a/themes/aquamain.yaml b/themes/aquamain.yaml deleted file mode 100644 index a96d948c..00000000 --- a/themes/aquamain.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "AquaMain" -source: - marketplace_id: "JohnnyBoySou.aqua-main" - version: "0.0.9" - installs: 1650 - rating: 0 - ratings: 0 - author: "JohnnyBoySou" - repo: "https://github.com/JohnnyBoySou/aqua-main" - url: "https://marketplace.visualstudio.com/items?itemName=JohnnyBoySou.aqua-main" -colors: - bg: "#11172C" - fg: "#FFFFFF" - black: "#A5A5A5" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 270 - pair: null - contrast: - fg: 106.7 - black: 52.4 - red: 26.6 - green: 52.8 - yellow: 85.5 - blue: 27.3 - magenta: 29.6 - cyan: 47.4 - white: 89.9 - brightBlack: 21.9 - brightRed: 38.4 - brightGreen: 63.4 - brightYellow: 95.5 - brightBlue: 39.8 - brightMagenta: 45.2 - brightCyan: 55.2 - brightWhite: 89.9 diff --git a/themes/aquanova.yaml b/themes/aquanova.yaml index 3dee72a5..ec68cf39 100644 --- a/themes/aquanova.yaml +++ b/themes/aquanova.yaml @@ -8,6 +8,7 @@ source: author: "AarWeb" repo: "https://github.com/aarweb/aquanova" url: "https://marketplace.visualstudio.com/items?itemName=AarMagic.aquanova" + formats: null colors: bg: "#111010" fg: "#D7D7D7" diff --git a/themes/arabian-nights.yaml b/themes/arabian-nights.yaml index b70890f4..74e49ae6 100644 --- a/themes/arabian-nights.yaml +++ b/themes/arabian-nights.yaml @@ -8,6 +8,7 @@ source: author: "andrejkoller" repo: "https://github.com/andrejkoller/arabian-nights-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrejkoller.arabian-nights-theme" + formats: null colors: bg: "#3B3446" fg: "#F4F2F8" diff --git a/themes/arabian-theme.yaml b/themes/arabian-theme.yaml deleted file mode 100644 index 2e5551b4..00000000 --- a/themes/arabian-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "arabian-theme" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - rating: 5 - ratings: 3 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#ECCB8E" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: 82 - pair: null - contrast: - fg: 78.3 - black: 78.3 - red: 46.3 - green: 21.5 - yellow: 30.2 - blue: 58.3 - magenta: 46.8 - cyan: 32.9 - white: 58.2 - brightBlack: 51 - brightRed: 46.3 - brightGreen: 13.2 - brightYellow: 13.2 - brightBlue: 58.3 - brightMagenta: 46.8 - brightCyan: 32.9 - brightWhite: 20.7 diff --git a/themes/arc-dark.yaml b/themes/arc-dark.yaml deleted file mode 100644 index 5dbe858b..00000000 --- a/themes/arc-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Arc Dark" -source: - marketplace_id: "rdnlsmith.linux-themes" - version: "1.3.0" - installs: 41712 - rating: 4.75 - ratings: 4 - author: "rdnlsmith" - repo: "https://github.com/rdnlsmith/vscode-arc-theme" - url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" -colors: - bg: "#383C4A" - fg: "#A2A2A2" - black: "#262B36" - red: "#9C3528" - green: "#61BC3B" - yellow: "#F3B43A" - blue: "#0D68A8" - magenta: "#744560" - cyan: "#288E9C" - white: "#A2A2A2" - brightBlack: "#2F343F" - brightRed: "#D64937" - brightGreen: "#86DF5D" - brightYellow: "#FDD75A" - brightBlue: "#0F75BD" - brightMagenta: "#9E5E83" - brightCyan: "#37C3D6" - brightWhite: "#F9F9F9" -meta: - mode: "dark" - accent: "green" - hue: 273 - pair: null - contrast: - fg: 43.3 - black: 0 - red: 9.6 - green: 46.5 - yellow: 59.6 - blue: 14.2 - magenta: 0 - cyan: 27.3 - white: 43.3 - brightBlack: 0 - brightRed: 24.2 - brightGreen: 65.7 - brightYellow: 75.8 - brightBlue: 19.8 - brightMagenta: 20 - brightCyan: 52.7 - brightWhite: 95.3 diff --git a/themes/arcadia-theme-dark.yaml b/themes/arcadia-theme-dark.yaml deleted file mode 100644 index 226ab582..00000000 --- a/themes/arcadia-theme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Arcadia Theme Dark" -source: - marketplace_id: "Kodi.kuiro-theme" - version: "1.3.2" - installs: 59 - rating: 0 - ratings: 0 - author: "Moti" - repo: "https://github.com/motidev/kuiro-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Kodi.kuiro-theme" -colors: - bg: "#1E2227" - fg: "#9DA5B4" - black: "#6B717D" - red: "#E06C75" - green: "#5D9B5F" - yellow: "#CC9343" - blue: "#4DADB9" - magenta: "#8780D8" - cyan: "#4DADB9" - white: "#D7DAE0" - brightBlack: "#6B717D" - brightRed: "#E06C75" - brightGreen: "#5D9B5F" - brightYellow: "#CC9343" - brightBlue: "#4DADB9" - brightMagenta: "#8780D8" - brightCyan: "#4DADB9" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "orange" - hue: 254 - pair: null - contrast: - fg: 50.9 - black: 25.3 - red: 40.7 - green: 38.8 - yellow: 47.6 - blue: 48.6 - magenta: 37.5 - cyan: 48.6 - white: 81.7 - brightBlack: 25.3 - brightRed: 40.7 - brightGreen: 38.8 - brightYellow: 47.6 - brightBlue: 48.6 - brightMagenta: 37.5 - brightCyan: 48.6 - brightWhite: 89.3 diff --git a/themes/arcadia-theme-storm.yaml b/themes/arcadia-theme-storm.yaml deleted file mode 100644 index fb33f5f0..00000000 --- a/themes/arcadia-theme-storm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Arcadia Theme Storm" -source: - marketplace_id: "Kodi.kuiro-theme" - version: "1.3.2" - installs: 59 - rating: 0 - ratings: 0 - author: "Moti" - repo: "https://github.com/motidev/kuiro-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Kodi.kuiro-theme" -colors: - bg: "#1A1B27" - fg: "#9DA5B4" - black: "#6B717D" - red: "#E06C75" - green: "#5D9B5F" - yellow: "#CC9343" - blue: "#4DADB9" - magenta: "#8780D8" - cyan: "#4DADB9" - white: "#D7DAE0" - brightBlack: "#6B717D" - brightRed: "#E06C75" - brightGreen: "#5D9B5F" - brightYellow: "#CC9343" - brightBlue: "#4DADB9" - brightMagenta: "#8780D8" - brightCyan: "#4DADB9" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "orange" - hue: 281 - pair: null - contrast: - fg: 51.7 - black: 26.1 - red: 41.5 - green: 39.6 - yellow: 48.4 - blue: 49.3 - magenta: 38.3 - cyan: 49.3 - white: 82.5 - brightBlack: 26.1 - brightRed: 41.5 - brightGreen: 39.6 - brightYellow: 48.4 - brightBlue: 49.3 - brightMagenta: 38.3 - brightCyan: 49.3 - brightWhite: 90.1 diff --git a/themes/arcaea.yaml b/themes/arcaea.yaml deleted file mode 100644 index d87b5495..00000000 --- a/themes/arcaea.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Arcaea" -source: - marketplace_id: "ayatough.arcaea-theme" - version: "0.1.2" - installs: 2253 - rating: 5 - ratings: 4 - author: "ayatough" - repo: "https://github.com/ayatough/vscode-arcaea-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ayatough.arcaea-theme" -colors: - bg: "#1C1C1C" - fg: "#BDBCDB" - black: "#1F1F1F" - red: "#CC7F65" - green: "#70C184" - yellow: "#CCCC4F" - blue: "#7099C1" - magenta: "#AD70C1" - cyan: "#70C1C1" - white: "#F1F1F1" - brightBlack: "#1F1F1F" - brightRed: "#CC7F65" - brightGreen: "#70C184" - brightYellow: "#CCCC4F" - brightBlue: "#7099C1" - brightMagenta: "#AD70C1" - brightCyan: "#70C1C1" - brightWhite: "#F1F1F1" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 66.3 - black: 0 - red: 42.5 - green: 58 - yellow: 70.8 - blue: 43.7 - magenta: 36.9 - cyan: 60.1 - white: 97.1 - brightBlack: 0 - brightRed: 42.5 - brightGreen: 58 - brightYellow: 70.8 - brightBlue: 43.7 - brightMagenta: 36.9 - brightCyan: 60.1 - brightWhite: 97.1 diff --git a/themes/archangel-dusk.yaml b/themes/archangel-dusk.yaml deleted file mode 100644 index 813b83c1..00000000 --- a/themes/archangel-dusk.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "🪽 archangel → dusk" -source: - marketplace_id: "allam-se.archangel" - version: "3.1.0" - installs: 505 - rating: 5 - ratings: 1 - author: "Allam" - repo: "https://github.com/allam-se/archangel" - url: "https://marketplace.visualstudio.com/items?itemName=allam-se.archangel" -colors: - bg: "#0F0F0F" - fg: "#FFFFFF" - black: "#222029" - red: "#E92741" - green: "#3EC841" - yellow: "#E0D561" - blue: "#418EDD" - magenta: "#FF00CC" - cyan: "#00ECD8" - white: "#FFFFFF" - brightBlack: "#777777" - brightRed: "#E92741" - brightGreen: "#3EC841" - brightYellow: "#E0D561" - brightBlue: "#418EDD" - brightMagenta: "#FF00CC" - brightCyan: "#00ECD8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.5 - black: 0 - red: 33.1 - green: 59 - yellow: 78.9 - blue: 39.9 - magenta: 42.4 - cyan: 80.1 - white: 107.5 - brightBlack: 30.2 - brightRed: 33.1 - brightGreen: 59 - brightYellow: 78.9 - brightBlue: 39.9 - brightMagenta: 42.4 - brightCyan: 80.1 - brightWhite: 107.5 diff --git a/themes/archangel.yaml b/themes/archangel.yaml deleted file mode 100644 index 5793dede..00000000 --- a/themes/archangel.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "🪽 archangel" -source: - marketplace_id: "allam-se.archangel" - version: "3.1.0" - installs: 505 - rating: 5 - ratings: 1 - author: "Allam" - repo: "https://github.com/allam-se/archangel" - url: "https://marketplace.visualstudio.com/items?itemName=allam-se.archangel" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#222029" - red: "#E92741" - green: "#3EC841" - yellow: "#E0D561" - blue: "#418EDD" - magenta: "#FF00CC" - cyan: "#00ECD8" - white: "#FFFFFF" - brightBlack: "#343C50" - brightRed: "#E92741" - brightGreen: "#3EC841" - brightYellow: "#E0D561" - brightBlue: "#418EDD" - brightMagenta: "#FF00CC" - brightCyan: "#00ECD8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 33.5 - green: 59.4 - yellow: 79.3 - blue: 40.3 - magenta: 42.7 - cyan: 80.5 - white: 107.9 - brightBlack: 0 - brightRed: 33.5 - brightGreen: 59.4 - brightYellow: 79.3 - brightBlue: 40.3 - brightMagenta: 42.7 - brightCyan: 80.5 - brightWhite: 107.9 diff --git a/themes/archie-dark-color-theme.yaml b/themes/archie-dark-color-theme.yaml index 191c00e4..4a1598d9 100644 --- a/themes/archie-dark-color-theme.yaml +++ b/themes/archie-dark-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Sahil_Kumar_115" repo: "https://github.com/Sahiljangra115/Archie-dark-custom-theme" url: "https://marketplace.visualstudio.com/items?itemName=SahilKumar115.archie-dark-custom" + formats: null colors: bg: "#0B0E14" fg: "#9D9B96" diff --git a/themes/architect-dark-fork.yaml b/themes/architect-dark-fork.yaml deleted file mode 100644 index 667a05f0..00000000 --- a/themes/architect-dark-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Architect (dark) - Fork" -source: - marketplace_id: "valentinesamuel.fallout-dark" - version: "0.0.1" - installs: 2243 - rating: 0 - ratings: 0 - author: "valentine samuel" - repo: "https://github.com/valentinesamuel/themes" - url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" -colors: - bg: "#040404" - fg: "#FDFE02" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FDF1AE" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#D9D9D9" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 101.9 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.5 - white: 97.8 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 83.5 diff --git a/themes/arctic-depth.yaml b/themes/arctic-depth.yaml index 02e78d6a..793a55ef 100644 --- a/themes/arctic-depth.yaml +++ b/themes/arctic-depth.yaml @@ -8,6 +8,8 @@ source: author: "Marvellinus Vincent" repo: "https://github.com/MarvellinusVincent/Arctic-Depth" url: "https://marketplace.visualstudio.com/items?itemName=MarvellinusVincent.arctic-depth" + formats: + zed: "https://raw.githubusercontent.com/MarvellinusVincent/Arctic-Depth/main/themes/arctic-depth-color-theme-zed.json" colors: bg: "#171A22" fg: "#78BAE7" diff --git a/themes/arctic-night.yaml b/themes/arctic-night.yaml deleted file mode 100644 index b8684f4e..00000000 --- a/themes/arctic-night.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Arctic Night" -source: - marketplace_id: "k22pr.arctic-night-theme" - version: "1.0.6" - installs: 53 - author: "k22pr" - repo: "https://github.com/k22pr/arctic-night-theme" - url: "https://marketplace.visualstudio.com/items?itemName=k22pr.arctic-night-theme" -colors: - bg: "#1A1D21" - fg: "#E6EDF3" - black: "#484F58" - red: "#BF7E78" - green: "#7FA684" - yellow: "#BFA673" - blue: "#7FA1C4" - magenta: "#BC8CFF" - cyan: "#80B0B5" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#D1A8A4" - brightGreen: "#56D364" - brightYellow: "#E3B341" - brightBlue: "#A1BDD6" - brightMagenta: "#D2A8FF" - brightCyan: "#80B0B5" - brightWhite: "#F0F6FC" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 93.8 - black: 11.9 - red: 40.5 - green: 47.4 - yellow: 54 - blue: 48 - magenta: 51 - cyan: 53.4 - white: 62.9 - brightBlack: 28.1 - brightRed: 58.8 - brightGreen: 64.3 - brightYellow: 63.5 - brightBlue: 63.3 - brightMagenta: 63.4 - brightCyan: 53.4 - brightWhite: 99.7 diff --git a/themes/arctis-dark.yaml b/themes/arctis-dark.yaml deleted file mode 100644 index 67b89666..00000000 --- a/themes/arctis-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Arctis Dark+" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#1E1E1E" - fg: "#D1D1D1" - black: "#333333" - red: "#F1855B" - green: "#13BE76" - yellow: "#E8C59B" - blue: "#9B90F4" - magenta: "#EB94B2" - cyan: "#8ACFEF" - white: "#DBDBDB" - brightBlack: "#575757" - brightRed: "#F1855B" - brightGreen: "#13BE76" - brightYellow: "#E8C59B" - brightBlue: "#9B90F4" - brightMagenta: "#EB94B2" - brightCyan: "#8ACFEF" - brightWhite: "#DBDBDB" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 76.8 - black: 0 - red: 50.6 - green: 53 - yellow: 73 - blue: 47.3 - magenta: 56.5 - cyan: 70.2 - white: 82.9 - brightBlack: 15.1 - brightRed: 50.6 - brightGreen: 53 - brightYellow: 73 - brightBlue: 47.3 - brightMagenta: 56.5 - brightCyan: 70.2 - brightWhite: 82.9 diff --git a/themes/arctis-high-contrast.yaml b/themes/arctis-high-contrast.yaml deleted file mode 100644 index 0a598c1b..00000000 --- a/themes/arctis-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Arctis High Contrast" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#000000" - fg: "#C7CCD6" - black: "#313744" - red: "#F1855B" - green: "#13BE76" - yellow: "#E8C59B" - blue: "#9B90F4" - magenta: "#EB94B2" - cyan: "#8ACFEF" - white: "#D3D7DF" - brightBlack: "#515B71" - brightRed: "#F1855B" - brightGreen: "#13BE76" - brightYellow: "#E8C59B" - brightBlue: "#9B90F4" - brightMagenta: "#EB94B2" - brightCyan: "#8ACFEF" - brightWhite: "#D3D7DF" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 75.5 - black: 0 - red: 52.5 - green: 54.9 - yellow: 74.9 - blue: 49.1 - magenta: 58.4 - cyan: 72 - white: 82.2 - brightBlack: 18.4 - brightRed: 52.5 - brightGreen: 54.9 - brightYellow: 74.9 - brightBlue: 49.1 - brightMagenta: 58.4 - brightCyan: 72 - brightWhite: 82.2 diff --git a/themes/arctis-light.yaml b/themes/arctis-light.yaml deleted file mode 100644 index d14dff91..00000000 --- a/themes/arctis-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Arctis Light" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#EAECF0" - fg: "#404859" - black: "#CCD1DB" - red: "#C0400C" - green: "#06653D" - yellow: "#B16B16" - blue: "#5946E5" - magenta: "#2E3440" - cyan: "#8ACFEF" - white: "#2E3440" - brightBlack: "#97A1B4" - brightRed: "#C0400C" - brightGreen: "#06653D" - brightYellow: "#B16B16" - brightBlue: "#5946E5" - brightMagenta: "#2E3440" - brightCyan: "#8ACFEF" - brightWhite: "#2E3440" -meta: - mode: "light" - accent: "purple" - hue: null - pair: "Arctis Night" - contrast: - fg: 79.8 - black: 13.3 - red: 63.8 - green: 73 - yellow: 57.4 - blue: 68.4 - magenta: 87.1 - cyan: 19.4 - white: 87.1 - brightBlack: 39.5 - brightRed: 63.8 - brightGreen: 73 - brightYellow: 57.4 - brightBlue: 68.4 - brightMagenta: 87.1 - brightCyan: 19.4 - brightWhite: 87.1 diff --git a/themes/arctis-moon.yaml b/themes/arctis-moon.yaml deleted file mode 100644 index e6b8906f..00000000 --- a/themes/arctis-moon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Arctis Moon" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#212337" - fg: "#CCCEE1" - black: "#323453" - red: "#F1855B" - green: "#13BE76" - yellow: "#E8C59B" - blue: "#9B90F4" - magenta: "#EB94B2" - cyan: "#8ACFEF" - white: "#D9DAE8" - brightBlack: "#525689" - brightRed: "#F1855B" - brightGreen: "#13BE76" - brightYellow: "#E8C59B" - brightBlue: "#9B90F4" - brightMagenta: "#EB94B2" - brightCyan: "#8ACFEF" - brightWhite: "#D9DAE8" -meta: - mode: "dark" - accent: "teal" - hue: 279 - pair: null - contrast: - fg: 74.6 - black: 0 - red: 49.6 - green: 52 - yellow: 72 - blue: 46.3 - magenta: 55.5 - cyan: 69.2 - white: 81.8 - brightBlack: 15.4 - brightRed: 49.6 - brightGreen: 52 - brightYellow: 72 - brightBlue: 46.3 - brightMagenta: 55.5 - brightCyan: 69.2 - brightWhite: 81.8 diff --git a/themes/arctis-night.yaml b/themes/arctis-night.yaml deleted file mode 100644 index 1b5585db..00000000 --- a/themes/arctis-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Arctis Night" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#011627" - fg: "#BBD1E2" - black: "#162E41" - red: "#F1855B" - green: "#13BE76" - yellow: "#E8C59B" - blue: "#9B90F4" - magenta: "#EB94B2" - cyan: "#8ACFEF" - white: "#CDDDEA" - brightBlack: "#2B5473" - brightRed: "#F1855B" - brightGreen: "#13BE76" - brightYellow: "#E8C59B" - brightBlue: "#9B90F4" - brightMagenta: "#EB94B2" - brightCyan: "#8ACFEF" - brightWhite: "#CDDDEA" -meta: - mode: "dark" - accent: "teal" - hue: 244 - pair: "Arctis Light" - contrast: - fg: 75.9 - black: 0 - red: 51.6 - green: 54 - yellow: 74 - blue: 48.2 - magenta: 57.5 - cyan: 71.1 - white: 83.7 - brightBlack: 13.6 - brightRed: 51.6 - brightGreen: 54 - brightYellow: 74 - brightBlue: 48.2 - brightMagenta: 57.5 - brightCyan: 71.1 - brightWhite: 83.7 diff --git a/themes/arctis.yaml b/themes/arctis.yaml deleted file mode 100644 index 149c635e..00000000 --- a/themes/arctis.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Arctis" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#2E3440" - fg: "#D3D7DF" - black: "#3E4656" - red: "#F1855B" - green: "#13BE76" - yellow: "#E8C59B" - blue: "#9B90F4" - magenta: "#EB94B2" - cyan: "#8ACFEF" - white: "#DEE1E7" - brightBlack: "#5F6B83" - brightRed: "#F1855B" - brightGreen: "#13BE76" - brightYellow: "#E8C59B" - brightBlue: "#9B90F4" - brightMagenta: "#EB94B2" - brightCyan: "#8ACFEF" - brightWhite: "#DEE1E7" -meta: - mode: "dark" - accent: "teal" - hue: 264 - pair: null - contrast: - fg: 76.1 - black: 0 - red: 46.4 - green: 48.8 - yellow: 68.8 - blue: 43 - magenta: 52.3 - cyan: 66 - white: 82.3 - brightBlack: 19 - brightRed: 46.4 - brightGreen: 48.8 - brightYellow: 68.8 - brightBlue: 43 - brightMagenta: 52.3 - brightCyan: 66 - brightWhite: 82.3 diff --git a/themes/arencio-argos-dark.yaml b/themes/arencio-argos-dark.yaml index 0ecf5b42..4c897eff 100644 --- a/themes/arencio-argos-dark.yaml +++ b/themes/arencio-argos-dark.yaml @@ -8,6 +8,7 @@ source: author: "Danyaal Majid" repo: "https://github.com/DanyaalMajid/arencio-vibrant-dark" url: "https://marketplace.visualstudio.com/items?itemName=DanyaalMajid.arencio-vibrant-dark" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/ares-tron-legacy.yaml b/themes/ares-tron-legacy.yaml index aec27a52..f7009810 100644 --- a/themes/ares-tron-legacy.yaml +++ b/themes/ares-tron-legacy.yaml @@ -8,6 +8,7 @@ source: author: "rubenzn" repo: "https://github.com/ruben-cxtx/best-tron-legacy-theme" url: "https://marketplace.visualstudio.com/items?itemName=rubenzn.encom-tron-legacy" + formats: null colors: bg: "#110000" fg: "#FFB3B3" diff --git a/themes/arete-theme.yaml b/themes/arete-theme.yaml index e6692cfd..5a07e6d2 100644 --- a/themes/arete-theme.yaml +++ b/themes/arete-theme.yaml @@ -8,6 +8,7 @@ source: author: "PlatoArete" repo: "https://github.com/PlatoArete/arete-theme" url: "https://marketplace.visualstudio.com/items?itemName=PlatoArete.arete-theme" + formats: null colors: bg: "#110F10" fg: "#D4D4D4" diff --git a/themes/argo.yaml b/themes/argo.yaml index ba1f9b05..76969a01 100644 --- a/themes/argo.yaml +++ b/themes/argo.yaml @@ -1,13 +1,14 @@ -name: "Argo" +name: "argo" source: marketplace_id: "smir45.argo" version: "1.0.0" - installs: 779 + installs: 780 rating: 4 ratings: 4 author: "Samir Mishra" repo: "https://github.com/smir45/argo-theme-source-code" url: "https://marketplace.visualstudio.com/items?itemName=smir45.argo" + formats: null colors: bg: "#191919" fg: "#D4D4D4" diff --git a/themes/argonaut.yaml b/themes/argonaut.yaml index 58a62b79..520ffe8b 100644 --- a/themes/argonaut.yaml +++ b/themes/argonaut.yaml @@ -8,6 +8,7 @@ source: author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null colors: bg: "#111421" fg: "#D4D4D4" diff --git a/themes/argprocolor.yaml b/themes/argprocolor.yaml index 59946ccf..c2595c65 100644 --- a/themes/argprocolor.yaml +++ b/themes/argprocolor.yaml @@ -8,6 +8,7 @@ source: author: "Ankur Goyal" repo: "https://github.com/argankur/argprocolor" url: "https://marketplace.visualstudio.com/items?itemName=AnkurGoyal.argprocolor" + formats: null colors: bg: "#021013" fg: "#B2CACD" diff --git a/themes/ariake-sands.yaml b/themes/ariake-sands.yaml deleted file mode 100644 index f1d8224a..00000000 --- a/themes/ariake-sands.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ariake Sands" -source: - marketplace_id: "radiolevity.ariake-sands" - version: "1.1.3" - installs: 6042 - rating: 0 - ratings: 0 - author: "Finn James" - repo: "https://github.com/radiolevity/ariake-sands" - url: "https://marketplace.visualstudio.com/items?itemName=radiolevity.ariake-sands" -colors: - bg: "#242424" - fg: "#C2C6D6" - black: "#677989" - red: "#ED5C93" - green: "#78BBB7" - yellow: "#7E99DD" - blue: "#85B6C8" - magenta: "#B081C5" - cyan: "#B084EB" - white: "#F4FAFF" - brightBlack: "#677989" - brightRed: "#F993BA" - brightGreen: "#9AEFEA" - brightYellow: "#ABBFF2" - brightBlue: "#B8E0EF" - brightMagenta: "#DDA3F7" - brightCyan: "#D3B2FF" - brightWhite: "#F4FAFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 69.6 - black: 27.7 - red: 40.5 - green: 56.4 - yellow: 45.2 - blue: 56 - magenta: 41.2 - cyan: 44.5 - white: 101.2 - brightBlack: 27.7 - brightRed: 58.2 - brightGreen: 85.3 - brightYellow: 65.6 - brightBlue: 81.1 - brightMagenta: 61.8 - brightCyan: 66.1 - brightWhite: 101.2 diff --git a/themes/ariake-sun.yaml b/themes/ariake-sun.yaml deleted file mode 100644 index a6086df6..00000000 --- a/themes/ariake-sun.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ariake Sun" -source: - marketplace_id: "radiolevity.ariake-sands" - version: "1.1.3" - installs: 6042 - rating: 0 - ratings: 0 - author: "Finn James" - repo: "https://github.com/radiolevity/ariake-sands" - url: "https://marketplace.visualstudio.com/items?itemName=radiolevity.ariake-sands" -colors: - bg: "#F9FAFA" - fg: "#1F1F1F" - black: "#1F1F1F" - red: "#6A12ED" - green: "#1DAFA8" - yellow: "#BA45ED" - blue: "#6A12ED" - magenta: "#6A12ED" - cyan: "#7851B2" - white: "#F9FAFA" - brightBlack: "#B6BAC9" - brightRed: "#770034" - brightGreen: "#1DAFA8" - brightYellow: "#6A12ED" - brightBlue: "#3471B2" - brightMagenta: "#48215C" - brightCyan: "#43227D" - brightWhite: "#F9FAFA" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 100.3 - black: 100.3 - red: 79.7 - green: 48.9 - yellow: 63.8 - blue: 79.7 - magenta: 79.7 - cyan: 75.6 - white: 0 - brightBlack: 34 - brightRed: 91.1 - brightGreen: 48.9 - brightYellow: 79.7 - brightBlue: 71.5 - brightMagenta: 95.3 - brightCyan: 93.5 - brightWhite: 0 diff --git a/themes/aries-darker-high-contrast.yaml b/themes/aries-darker-high-contrast.yaml deleted file mode 100644 index 520cfb63..00000000 --- a/themes/aries-darker-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "aries-Darker-High-Contrast" -source: - marketplace_id: "aries.aries" - version: "1.4.6" - installs: 19487 - rating: 0 - ratings: 0 - author: "aries" - repo: "https://github.com/MohamadMostafaee/ariesTheme" - url: "https://marketplace.visualstudio.com/items?itemName=aries.aries" -colors: - bg: "#212121" - fg: "#EEFFFF" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#4A4A4A" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 103.3 - black: 0 - red: 42.4 - green: 82.9 - yellow: 77.7 - blue: 54.7 - magenta: 52.5 - cyan: 77 - white: 105.6 - brightBlack: 9.7 - brightRed: 42.4 - brightGreen: 82.9 - brightYellow: 77.7 - brightBlue: 54.7 - brightMagenta: 52.5 - brightCyan: 77 - brightWhite: 105.6 diff --git a/themes/aries-darker.yaml b/themes/aries-darker.yaml deleted file mode 100644 index d89afb17..00000000 --- a/themes/aries-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "aries-Darker" -source: - marketplace_id: "aries.aries" - version: "1.4.6" - installs: 19487 - rating: 0 - ratings: 0 - author: "aries" - repo: "https://github.com/MohamadMostafaee/ariesTheme" - url: "https://marketplace.visualstudio.com/items?itemName=aries.aries" -colors: - bg: "#212121" - fg: "#EEFFFF" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#545454" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 103.3 - black: 0 - red: 42.4 - green: 82.9 - yellow: 77.7 - blue: 54.7 - magenta: 52.5 - cyan: 77 - white: 105.6 - brightBlack: 13.5 - brightRed: 42.4 - brightGreen: 82.9 - brightYellow: 77.7 - brightBlue: 54.7 - brightMagenta: 52.5 - brightCyan: 77 - brightWhite: 105.6 diff --git a/themes/aries-default.yaml b/themes/aries-default.yaml deleted file mode 100644 index f77d0596..00000000 --- a/themes/aries-default.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "aries-Default" -source: - marketplace_id: "aries.aries" - version: "1.4.6" - installs: 19487 - rating: 0 - ratings: 0 - author: "aries" - repo: "https://github.com/MohamadMostafaee/ariesTheme" - url: "https://marketplace.visualstudio.com/items?itemName=aries.aries" -colors: - bg: "#263238" - fg: "#EEFFFF" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#546E7A" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 230 - pair: null - contrast: - fg: 100.4 - black: 0 - red: 39.4 - green: 80 - yellow: 74.7 - blue: 51.7 - magenta: 49.6 - cyan: 74.1 - white: 102.7 - brightBlack: 19.7 - brightRed: 39.4 - brightGreen: 80 - brightYellow: 74.7 - brightBlue: 51.7 - brightMagenta: 49.6 - brightCyan: 74.1 - brightWhite: 102.7 diff --git a/themes/aries-lighter-high-contrast.yaml b/themes/aries-lighter-high-contrast.yaml deleted file mode 100644 index cdfd81bb..00000000 --- a/themes/aries-lighter-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "aries-Lighter-High-Contrast" -source: - marketplace_id: "aries.aries" - version: "1.4.6" - installs: 19487 - rating: 0 - ratings: 0 - author: "aries" - repo: "https://github.com/MohamadMostafaee/ariesTheme" - url: "https://marketplace.visualstudio.com/items?itemName=aries.aries" -colors: - bg: "#FFFFFF" - fg: "#90A4AE" - black: "#000000" - red: "#E53935" - green: "#91B859" - yellow: "#FFB62C" - blue: "#6182B8" - magenta: "#7C4DFF" - cyan: "#39ADB5" - white: "#FFFFFF" - brightBlack: "#90A4AE" - brightRed: "#E53935" - brightGreen: "#91B859" - brightYellow: "#FFB62C" - brightBlue: "#6182B8" - brightMagenta: "#7C4DFF" - brightCyan: "#39ADB5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 50.6 - black: 106 - red: 67.7 - green: 44.9 - yellow: 31.7 - blue: 66.3 - magenta: 72.6 - cyan: 51.8 - white: 0 - brightBlack: 50.6 - brightRed: 67.7 - brightGreen: 44.9 - brightYellow: 31.7 - brightBlue: 66.3 - brightMagenta: 72.6 - brightCyan: 51.8 - brightWhite: 0 diff --git a/themes/aries-lighter.yaml b/themes/aries-lighter.yaml deleted file mode 100644 index 069cd2cd..00000000 --- a/themes/aries-lighter.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "aries-Lighter" -source: - marketplace_id: "aries.aries" - version: "1.4.6" - installs: 19487 - rating: 0 - ratings: 0 - author: "aries" - repo: "https://github.com/MohamadMostafaee/ariesTheme" - url: "https://marketplace.visualstudio.com/items?itemName=aries.aries" -colors: - bg: "#FAFAFA" - fg: "#90A4AE" - black: "#000000" - red: "#E53935" - green: "#91B859" - yellow: "#FFB62C" - blue: "#6182B8" - magenta: "#7C4DFF" - cyan: "#39ADB5" - white: "#FFFFFF" - brightBlack: "#90A4AE" - brightRed: "#E53935" - brightGreen: "#91B859" - brightYellow: "#FFB62C" - brightBlue: "#6182B8" - brightMagenta: "#7C4DFF" - brightCyan: "#39ADB5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 47.6 - black: 103 - red: 64.7 - green: 41.9 - yellow: 28.7 - blue: 63.3 - magenta: 69.6 - cyan: 48.8 - white: 0 - brightBlack: 47.6 - brightRed: 64.7 - brightGreen: 41.9 - brightYellow: 28.7 - brightBlue: 63.3 - brightMagenta: 69.6 - brightCyan: 48.8 - brightWhite: 0 diff --git a/themes/aries-ocean.yaml b/themes/aries-ocean.yaml deleted file mode 100644 index d1f84259..00000000 --- a/themes/aries-ocean.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "aries-Ocean" -source: - marketplace_id: "aries.aries" - version: "1.4.6" - installs: 19487 - rating: 0 - ratings: 0 - author: "aries" - repo: "https://github.com/MohamadMostafaee/ariesTheme" - url: "https://marketplace.visualstudio.com/items?itemName=aries.aries" -colors: - bg: "#0F111A" - fg: "#8F93A2" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#464B5D" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 275 - pair: null - contrast: - fg: 43.7 - black: 0 - red: 44.1 - green: 84.7 - yellow: 79.4 - blue: 56.4 - magenta: 54.2 - cyan: 78.7 - white: 107.3 - brightBlack: 12 - brightRed: 44.1 - brightGreen: 84.7 - brightYellow: 79.4 - brightBlue: 56.4 - brightMagenta: 54.2 - brightCyan: 78.7 - brightWhite: 107.3 diff --git a/themes/aries-palenight.yaml b/themes/aries-palenight.yaml deleted file mode 100644 index 93345b06..00000000 --- a/themes/aries-palenight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "aries-Palenight" -source: - marketplace_id: "aries.aries" - version: "1.4.6" - installs: 19487 - rating: 0 - ratings: 0 - author: "aries" - repo: "https://github.com/MohamadMostafaee/ariesTheme" - url: "https://marketplace.visualstudio.com/items?itemName=aries.aries" -colors: - bg: "#292D3E" - fg: "#A6ACCD" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 274 - pair: null - contrast: - fg: 53.5 - black: 0 - red: 40 - green: 80.6 - yellow: 75.3 - blue: 52.3 - magenta: 50.1 - cyan: 74.6 - white: 103.3 - brightBlack: 22.8 - brightRed: 40 - brightGreen: 80.6 - brightYellow: 75.3 - brightBlue: 52.3 - brightMagenta: 50.1 - brightCyan: 74.6 - brightWhite: 103.3 diff --git a/themes/aries.yaml b/themes/aries.yaml index e5c172f0..cc4ec68c 100644 --- a/themes/aries.yaml +++ b/themes/aries.yaml @@ -8,6 +8,7 @@ source: author: "Aries Russin" repo: "https://github.com/adragonqc/aries-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=ariebird.aries-pink-theme" + formats: null colors: bg: "#FECFD9" fg: "#9F0000" diff --git a/themes/arkaios-theme.yaml b/themes/arkaios-theme.yaml index 041aa160..59cb456a 100644 --- a/themes/arkaios-theme.yaml +++ b/themes/arkaios-theme.yaml @@ -8,6 +8,7 @@ source: author: "Vilela" repo: "https://github.com/vilelagit/Arkaios_Theme" url: "https://marketplace.visualstudio.com/items?itemName=vilela.theme-arkaios" + formats: null colors: bg: "#282A36" fg: "#F8F8F2" diff --git a/themes/arkinetictheme.yaml b/themes/arkinetictheme.yaml index 3a4b1a74..b93922b9 100644 --- a/themes/arkinetictheme.yaml +++ b/themes/arkinetictheme.yaml @@ -8,6 +8,7 @@ source: author: "Arkinetic" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Arkinetic.com-arkinetic-theme" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/arkku.yaml b/themes/arkku.yaml index 17680cf1..c26a3829 100644 --- a/themes/arkku.yaml +++ b/themes/arkku.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "arkku.arkku-color-theme" version: "1.1.0" installs: 356 + rating: 0 + ratings: 0 author: "Kimmo Kulovesi" repo: "https://github.com/arkku/arkku-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=arkku.arkku-color-theme" + formats: null colors: bg: "#080811" fg: "#AAABAC" diff --git a/themes/armada.yaml b/themes/armada.yaml deleted file mode 100644 index 96921162..00000000 --- a/themes/armada.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Armada" -source: - marketplace_id: "DavidSeptimus.armada-theme" - version: "1.0.1" - installs: 295 - rating: 0 - ratings: 0 - author: "DavidSeptimus" - repo: "https://github.com/DavidSeptimus/armada-theme-vscode-extension" - url: "https://marketplace.visualstudio.com/items?itemName=DavidSeptimus.armada-theme" -colors: - bg: "#18191B" - fg: "#E0E1E4" - black: "#E0E1E4" - red: "#EB4056" - green: "#82D2CE" - yellow: "#FAD075" - blue: "#4B8DEC" - magenta: "#EB83E2" - cyan: "#2CCCE6" - white: "#18191B" - brightBlack: "#595959" - brightRed: "#C7001B" - brightGreen: "#009E6F" - brightYellow: "#E09119" - brightBlue: "#0067E6" - brightMagenta: "#EB4DDE" - brightCyan: "#00BAD6" - brightWhite: "#18191B" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 87.3 - black: 87.3 - red: 35.5 - green: 70 - yellow: 80.2 - blue: 40.2 - magenta: 54.6 - cyan: 64.8 - white: 0 - brightBlack: 16.5 - brightRed: 22.9 - brightGreen: 39.3 - brightYellow: 51.1 - brightBlue: 26 - brightMagenta: 42.9 - brightCyan: 55.5 - brightWhite: 0 diff --git a/themes/aroace-high-contrast.yaml b/themes/aroace-high-contrast.yaml index 0af6bef1..b8795087 100644 --- a/themes/aroace-high-contrast.yaml +++ b/themes/aroace-high-contrast.yaml @@ -6,6 +6,7 @@ source: author: "Philipp Schmidt" repo: "https://codeberg.org/philbschmidt/Aro-Ace" url: "https://marketplace.visualstudio.com/items?itemName=philbschmidt.aroace" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/aroace-light.yaml b/themes/aroace-light.yaml index 852b13d1..2e1b6613 100644 --- a/themes/aroace-light.yaml +++ b/themes/aroace-light.yaml @@ -6,6 +6,7 @@ source: author: "Philipp Schmidt" repo: "https://codeberg.org/philbschmidt/Aro-Ace" url: "https://marketplace.visualstudio.com/items?itemName=philbschmidt.aroace" + formats: null colors: bg: "#FFFFFF" fg: "#2B2B2B" diff --git a/themes/aroace.yaml b/themes/aroace.yaml index 057ef7cb..3a12a6ca 100644 --- a/themes/aroace.yaml +++ b/themes/aroace.yaml @@ -6,6 +6,7 @@ source: author: "Philipp Schmidt" repo: "https://codeberg.org/philbschmidt/Aro-Ace" url: "https://marketplace.visualstudio.com/items?itemName=philbschmidt.aroace" + formats: null colors: bg: "#23252F" fg: "#BFC7D5" diff --git a/themes/aromantic.yaml b/themes/aromantic.yaml deleted file mode 100644 index b392a35c..00000000 --- a/themes/aromantic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aromantic" -source: - marketplace_id: "ElizaMuss.elizas-pride-themes" - version: "1.0.2" - installs: 848 - rating: 0 - ratings: 0 - author: "Eliza Muss" - repo: "https://github.com/The-Gamer69/elizas-pride-themes" - url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#4B4B4B" - red: "#CD3131" - green: "#3AA740" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#ABABAB" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 12.3 - red: 27.7 - green: 44.2 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 107.9 - brightBlack: 56.8 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 107.9 diff --git a/themes/arrakis-day.yaml b/themes/arrakis-day.yaml index 48de8094..c8fb97f9 100644 --- a/themes/arrakis-day.yaml +++ b/themes/arrakis-day.yaml @@ -8,6 +8,7 @@ source: author: "Anvell" repo: "https://github.com/Anvell/vscode-arrakis-theme" url: "https://marketplace.visualstudio.com/items?itemName=anvell.arrakis-theme" + formats: null colors: bg: "#F5EBE1" fg: "#403E3C" diff --git a/themes/arrakis-night.yaml b/themes/arrakis-night.yaml index 056a26fc..82d084df 100644 --- a/themes/arrakis-night.yaml +++ b/themes/arrakis-night.yaml @@ -8,6 +8,7 @@ source: author: "Anvell" repo: "https://github.com/Anvell/vscode-arrakis-theme" url: "https://marketplace.visualstudio.com/items?itemName=anvell.arrakis-theme" + formats: null colors: bg: "#2B2927" fg: "#C6CBCC" diff --git a/themes/arrpee.yaml b/themes/arrpee.yaml index d0baf6ea..ff263194 100644 --- a/themes/arrpee.yaml +++ b/themes/arrpee.yaml @@ -8,6 +8,7 @@ source: author: "Arrpee" repo: "https://github.com/arrpee/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Arrpee.arrpee-theme" + formats: null colors: bg: "#111317" fg: "#EBEBEB" diff --git a/themes/arstotzka-contrast.yaml b/themes/arstotzka-contrast.yaml deleted file mode 100644 index 67b3e6e7..00000000 --- a/themes/arstotzka-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "arstotzka-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0F0E0D" - fg: "#EDEBE6" - black: "#1D1B19" - red: "#BA0E2E" - green: "#A2A797" - yellow: "#516B6B" - blue: "#70807B" - magenta: "#A2A797" - cyan: "#CF433E" - white: "#F8F7F5" - brightBlack: "#46413C" - brightRed: "#F03E5F" - brightGreen: "#D3D6CE" - brightYellow: "#82A0A0" - brightBlue: "#A5B1AD" - brightMagenta: "#D3D6CE" - brightCyan: "#E39390" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.6 - black: 0 - red: 21.2 - green: 53.1 - yellow: 22.8 - blue: 32.8 - magenta: 53.1 - cyan: 30.2 - white: 102.3 - brightBlack: 8.7 - brightRed: 37.5 - brightGreen: 80.7 - brightYellow: 47.5 - brightBlue: 58.2 - brightMagenta: 80.7 - brightCyan: 55.1 - brightWhite: 107.6 diff --git a/themes/arstotzka-light.yaml b/themes/arstotzka-light.yaml deleted file mode 100644 index 0608af04..00000000 --- a/themes/arstotzka-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "arstotzka-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#333333" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#A2A797" - yellow: "#516B6B" - blue: "#70807B" - magenta: "#A2A797" - cyan: "#CF433E" - white: "#404040" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#D3D6CE" - brightYellow: "#82A0A0" - brightBlue: "#A5B1AD" - brightMagenta: "#D3D6CE" - brightCyan: "#E39390" - brightWhite: "#666666" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.7 - black: 0 - red: 80.3 - green: 48.5 - yellow: 78.7 - blue: 68.6 - magenta: 48.5 - cyan: 71.2 - white: 94.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 22.3 - brightYellow: 54 - brightBlue: 43.6 - brightMagenta: 22.3 - brightCyan: 46.6 - brightWhite: 78.8 diff --git a/themes/arstotzka.yaml b/themes/arstotzka.yaml deleted file mode 100644 index 73a8c74a..00000000 --- a/themes/arstotzka.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "arstotzka" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#332E2E" - fg: "#EDEBE6" - black: "#403A3A" - red: "#BA0E2E" - green: "#A2A797" - yellow: "#516B6B" - blue: "#70807B" - magenta: "#A2A797" - cyan: "#CF433E" - white: "#F8F7F5" - brightBlack: "#695E5E" - brightRed: "#F03E5F" - brightGreen: "#D3D6CE" - brightYellow: "#82A0A0" - brightBlue: "#A5B1AD" - brightMagenta: "#D3D6CE" - brightCyan: "#E39390" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 90 - black: 0 - red: 16.6 - green: 48.5 - yellow: 18.2 - blue: 28.2 - magenta: 48.5 - cyan: 25.6 - white: 97.7 - brightBlack: 15.8 - brightRed: 32.9 - brightGreen: 76.1 - brightYellow: 42.9 - brightBlue: 53.7 - brightMagenta: 76.1 - brightCyan: 50.5 - brightWhite: 103 diff --git a/themes/artinpixel-turquoise-theme-dark.yaml b/themes/artinpixel-turquoise-theme-dark.yaml index 60c4b8c7..85bd0d24 100644 --- a/themes/artinpixel-turquoise-theme-dark.yaml +++ b/themes/artinpixel-turquoise-theme-dark.yaml @@ -8,6 +8,7 @@ source: author: "Anselmo Lima" repo: "https://github.com/anselmodev/artinpixel-turquoise-master" url: "https://marketplace.visualstudio.com/items?itemName=anselmodev.artinpixel-turquoise-master" + formats: null colors: bg: "#21282B" fg: "#CCD8DE" diff --git a/themes/artinpixel-turquoise-theme.yaml b/themes/artinpixel-turquoise-theme.yaml index 8aecf80e..7b4a001b 100644 --- a/themes/artinpixel-turquoise-theme.yaml +++ b/themes/artinpixel-turquoise-theme.yaml @@ -8,6 +8,7 @@ source: author: "Anselmo Lima" repo: "https://github.com/anselmodev/artinpixel-turquoise-master" url: "https://marketplace.visualstudio.com/items?itemName=anselmodev.artinpixel-turquoise-master" + formats: null colors: bg: "#323638" fg: "#CCD8DE" diff --git a/themes/artisan-theme.yaml b/themes/artisan-theme.yaml index 21534e34..61ce5157 100644 --- a/themes/artisan-theme.yaml +++ b/themes/artisan-theme.yaml @@ -8,6 +8,8 @@ source: author: "VheissuLabs" repo: "https://github.com/VheissuLabs/artisan-theme" url: "https://marketplace.visualstudio.com/items?itemName=VheissuLabs.artisan-theme" + formats: + ghostty: "https://raw.githubusercontent.com/VheissuLabs/artisan-theme/main/ghostty/artisan" colors: bg: "#F3F3F3" fg: "#171717" diff --git a/themes/artlab-dark.yaml b/themes/artlab-dark.yaml index 92ce3cfd..f38c43b8 100644 --- a/themes/artlab-dark.yaml +++ b/themes/artlab-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ArthurDanjou.theme-artlab" version: "1.0.5" installs: 12 + rating: 0 + ratings: 0 author: "Arthur Danjou" repo: "https://github.com/arthurdanjou/vscode-theme-artlab" url: "https://marketplace.visualstudio.com/items?itemName=ArthurDanjou.theme-artlab" + formats: null colors: bg: "#121212" fg: "#DBD7CA" diff --git a/themes/artlab-light.yaml b/themes/artlab-light.yaml index f77b6673..b0039c37 100644 --- a/themes/artlab-light.yaml +++ b/themes/artlab-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ArthurDanjou.theme-artlab" version: "1.0.5" installs: 12 + rating: 0 + ratings: 0 author: "Arthur Danjou" repo: "https://github.com/arthurdanjou/vscode-theme-artlab" url: "https://marketplace.visualstudio.com/items?itemName=ArthurDanjou.theme-artlab" + formats: null colors: bg: "#FFFFFF" fg: "#393A34" diff --git a/themes/arunika.yaml b/themes/arunika.yaml index 33b52d57..b9b86a20 100644 --- a/themes/arunika.yaml +++ b/themes/arunika.yaml @@ -8,6 +8,7 @@ source: author: "ansandi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ansandi.arunika" + formats: null colors: bg: "#202231" fg: "#DEE0EF" diff --git a/themes/arwinux-galaxy.yaml b/themes/arwinux-galaxy.yaml index 987962a4..2cee60bb 100644 --- a/themes/arwinux-galaxy.yaml +++ b/themes/arwinux-galaxy.yaml @@ -8,6 +8,7 @@ source: author: "arwinux" repo: "https://github.com/arwinux/arwinux-galaxy" url: "https://marketplace.visualstudio.com/items?itemName=arwinux.arwinux-galaxy" + formats: null colors: bg: "#272822" fg: "#EEFFFF" diff --git a/themes/as-theme.yaml b/themes/as-theme.yaml index 5d896622..b47a809f 100644 --- a/themes/as-theme.yaml +++ b/themes/as-theme.yaml @@ -8,6 +8,7 @@ source: author: "Arpit Shukla" repo: "https://github.com/arpitshukla9/AS-VsCode-Theme-dark" url: "https://marketplace.visualstudio.com/items?itemName=ArpitTheme.as-theme" + formats: null colors: bg: "#040204" fg: "#E8E8E8" diff --git a/themes/asdfasdfuntitled.yaml b/themes/asdfasdfuntitled.yaml index 0de65825..44d36cb4 100644 --- a/themes/asdfasdfuntitled.yaml +++ b/themes/asdfasdfuntitled.yaml @@ -8,6 +8,7 @@ source: author: "vulfpeck" repo: "https://github.com/Vulfpeck/pastellize" url: "https://marketplace.visualstudio.com/items?itemName=vulfpeck.pastellize" + formats: null colors: bg: "#111115" fg: "#FFFFFF" diff --git a/themes/asexual.yaml b/themes/asexual.yaml deleted file mode 100644 index b80e1223..00000000 --- a/themes/asexual.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Asexual" -source: - marketplace_id: "ElizaMuss.elizas-pride-themes" - version: "1.0.2" - installs: 848 - rating: 0 - ratings: 0 - author: "Eliza Muss" - repo: "https://github.com/The-Gamer69/elizas-pride-themes" - url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#4B4B4B" - red: "#CD3131" - green: "#33D057" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#660066" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#7F7F7F" - brightRed: "#F14C4C" - brightGreen: "#67FF8A" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#EC84FF" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 107.9 - black: 12.3 - red: 27.7 - green: 63.2 - yellow: 86.6 - blue: 28.4 - magenta: 0 - cyan: 48.6 - white: 107.9 - brightBlack: 34.3 - brightRed: 39.6 - brightGreen: 89.7 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 58.1 - brightCyan: 56.4 - brightWhite: 107.9 diff --git a/themes/asgtheme.yaml b/themes/asgtheme.yaml index 58c2d531..18933d70 100644 --- a/themes/asgtheme.yaml +++ b/themes/asgtheme.yaml @@ -8,6 +8,7 @@ source: author: "ASGTheDev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=asgthedev.asgthemes" + formats: null colors: bg: "#242429" fg: "#EEEEEE" diff --git a/themes/ash-ember.yaml b/themes/ash-ember.yaml deleted file mode 100644 index 89db1e5a..00000000 --- a/themes/ash-ember.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ash & Ember" -source: - marketplace_id: "InnaSodri.ash-ember-theme" - version: "0.0.3" - installs: 129 - rating: 0 - ratings: 0 - author: "Inna Sodri" - repo: "https://example.com/inna/ash-ember-theme" - url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.ash-ember-theme" -colors: - bg: "#131313" - fg: "#EDEDED" - black: "#2A2A2A" - red: "#D14D41" - green: "#6FBF8F" - yellow: "#FFB067" - blue: "#6FA4FF" - magenta: "#A08CC2" - cyan: "#3FB8C0" - white: "#D9D9D9" - brightBlack: "#2A2A2A" - brightRed: "#D14D41" - brightGreen: "#6FBF8F" - brightYellow: "#FFB067" - brightBlue: "#6FA4FF" - brightMagenta: "#A08CC2" - brightCyan: "#3FB8C0" - brightWhite: "#D9D9D9" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 95.5 - black: 0 - red: 31.9 - green: 58.3 - yellow: 68.7 - blue: 52.6 - magenta: 44.6 - cyan: 54.9 - white: 82.9 - brightBlack: 0 - brightRed: 31.9 - brightGreen: 58.3 - brightYellow: 68.7 - brightBlue: 52.6 - brightMagenta: 44.6 - brightCyan: 54.9 - brightWhite: 82.9 diff --git a/themes/ash-lumen-light.yaml b/themes/ash-lumen-light.yaml index 923b3a65..3d82dbd1 100644 --- a/themes/ash-lumen-light.yaml +++ b/themes/ash-lumen-light.yaml @@ -8,6 +8,7 @@ source: author: "edfl" repo: "https://github.com/emersxw/edfl" url: "https://marketplace.visualstudio.com/items?itemName=edfl.ash-lumen" + formats: null colors: bg: "#EEEEEE" fg: "#505050" diff --git a/themes/ash-lumen.yaml b/themes/ash-lumen.yaml index f353d8ce..fac6fc7c 100644 --- a/themes/ash-lumen.yaml +++ b/themes/ash-lumen.yaml @@ -8,6 +8,7 @@ source: author: "edfl" repo: "https://github.com/emersxw/edfl" url: "https://marketplace.visualstudio.com/items?itemName=edfl.ash-lumen" + formats: null colors: bg: "#161616" fg: "#A0A0A0" diff --git a/themes/ash.yaml b/themes/ash.yaml index 815e541b..26a5ea58 100644 --- a/themes/ash.yaml +++ b/themes/ash.yaml @@ -8,6 +8,7 @@ source: author: "Priyaank" repo: "https://github.com/PRIYAANK2510/Ether" url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.ether" + formats: null colors: bg: "#1F1F1F" fg: "#656565" diff --git a/themes/ashao-color-theme.yaml b/themes/ashao-color-theme.yaml deleted file mode 100644 index 7cec1815..00000000 --- a/themes/ashao-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ashao-color-theme" -source: - marketplace_id: "ashao.theme-ashao" - version: "1.0.0" - installs: 52 - rating: 0 - ratings: 0 - author: "ashao" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=ashao.theme-ashao" -colors: - bg: "#2B2B2B" - fg: "#C5C8C6" - black: "#1E1E1E" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 68.8 - black: 0 - red: 21.6 - green: 50 - yellow: 54.6 - blue: 31.6 - magenta: 29.2 - cyan: 47.4 - white: 85.5 - brightBlack: 19 - brightRed: 34.3 - brightGreen: 74 - brightYellow: 80.9 - brightBlue: 46.8 - brightMagenta: 43.5 - brightCyan: 70.4 - brightWhite: 98.9 diff --git a/themes/ashen-darker.yaml b/themes/ashen-darker.yaml index ab2fd6b6..c016881c 100644 --- a/themes/ashen-darker.yaml +++ b/themes/ashen-darker.yaml @@ -8,6 +8,7 @@ source: author: "Der Der" repo: null url: "https://marketplace.visualstudio.com/items?itemName=derder.ashen-theme" + formats: null colors: bg: "#0D0D0D" fg: "#B4B4B4" diff --git a/themes/ashen.yaml b/themes/ashen.yaml index 2907130f..8340e9f8 100644 --- a/themes/ashen.yaml +++ b/themes/ashen.yaml @@ -8,6 +8,7 @@ source: author: "Der Der" repo: null url: "https://marketplace.visualstudio.com/items?itemName=derder.ashen-theme" + formats: null colors: bg: "#121212" fg: "#B4B4B4" diff --git a/themes/ashineui.yaml b/themes/ashineui.yaml index 78793806..288edaf5 100644 --- a/themes/ashineui.yaml +++ b/themes/ashineui.yaml @@ -8,6 +8,7 @@ source: author: "Morgheas" repo: "https://github.com/Akumuuu/AShineUI" url: "https://marketplace.visualstudio.com/items?itemName=Morgheas.ashine-ui-theme" + formats: null colors: bg: "#1D1D1D" fg: "#D4D4D4" diff --git a/themes/aspiesoft-intellij-theme.yaml b/themes/aspiesoft-intellij-theme.yaml deleted file mode 100644 index 5fba198b..00000000 --- a/themes/aspiesoft-intellij-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "AspieSoft IntelliJ Theme" -source: - marketplace_id: "AspieSoft.aspiesoft-intellij-theme" - version: "1.0.3" - installs: 3791 - rating: 0 - ratings: 0 - author: "AspieSoft" - repo: "https://github.com/aspiesoft/vscode-intellij-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AspieSoft.aspiesoft-intellij-theme" -colors: - bg: "#272727" - fg: "#A9B7C6" - black: "#FFFFFF" - red: "#FF6B68" - green: "#A8C023" - yellow: "#D6BF55" - blue: "#5394EC" - magenta: "#AE8ABE" - cyan: "#299999" - white: "#1F1F1F" - brightBlack: "#FFFFFF" - brightRed: "#FF8785" - brightGreen: "#A8C023" - brightYellow: "#FFFF00" - brightBlue: "#7EAEF1" - brightMagenta: "#FF99FF" - brightCyan: "#6CDADA" - brightWhite: "#1F1F1F" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 59.2 - black: 104.6 - red: 45.8 - green: 59.2 - yellow: 65 - blue: 41 - magenta: 42.9 - cyan: 36.9 - white: 0 - brightBlack: 104.6 - brightRed: 53.5 - brightGreen: 59.2 - brightYellow: 99.4 - brightBlue: 54 - brightMagenta: 64.3 - brightCyan: 70.9 - brightWhite: 0 diff --git a/themes/aspire-core.yaml b/themes/aspire-core.yaml index c9e809a1..3eb6784a 100644 --- a/themes/aspire-core.yaml +++ b/themes/aspire-core.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "adwardstark.catacino" version: "1.0.2" installs: 170 + rating: 0 + ratings: 0 author: "Aditya Awasthi" repo: "https://github.com/adwardstark/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=adwardstark.catacino" + formats: null colors: bg: "#0C365A" fg: "#FFFFFF" diff --git a/themes/aspire-dark.yaml b/themes/aspire-dark.yaml index 55292912..03af500d 100644 --- a/themes/aspire-dark.yaml +++ b/themes/aspire-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "adwardstark.catacino" version: "1.0.2" installs: 170 + rating: 0 + ratings: 0 author: "Aditya Awasthi" repo: "https://github.com/adwardstark/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=adwardstark.catacino" + formats: null colors: bg: "#293034" fg: "#FFFFFF" diff --git a/themes/aspire-light.yaml b/themes/aspire-light.yaml index b44cf5d7..0539944c 100644 --- a/themes/aspire-light.yaml +++ b/themes/aspire-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "adwardstark.catacino" version: "1.0.2" installs: 170 + rating: 0 + ratings: 0 author: "Aditya Awasthi" repo: "https://github.com/adwardstark/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=adwardstark.catacino" + formats: null colors: bg: "#FFFFFF" fg: "#38383D" diff --git a/themes/assam-tea-gardens.yaml b/themes/assam-tea-gardens.yaml index 34b3f15f..1cbf5a52 100644 --- a/themes/assam-tea-gardens.yaml +++ b/themes/assam-tea-gardens.yaml @@ -8,6 +8,7 @@ source: author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" + formats: null colors: bg: "#181A16" fg: "#E8F0E8" diff --git a/themes/aster-dark-theme.yaml b/themes/aster-dark-theme.yaml deleted file mode 100644 index 1a111e52..00000000 --- a/themes/aster-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aster Dark Theme" -source: - marketplace_id: "jtheol.aster-dark" - version: "0.1.0" - installs: 37 - rating: 0 - ratings: 0 - author: "jtheol" - repo: "https://github.com/jtheol/aster-dark" - url: "https://marketplace.visualstudio.com/items?itemName=jtheol.aster-dark" -colors: - bg: "#000000" - fg: "#E0E0E0" - black: "#282828" - red: "#D4A090" - green: "#8FB573" - yellow: "#D6C998" - blue: "#6F8BBB" - magenta: "#C6BDA0" - cyan: "#8BA0B0" - white: "#D0D0D0" - brightBlack: "#555555" - brightRed: "#E2B0A0" - brightGreen: "#C7DBB5" - brightYellow: "#FEF9C3" - brightBlue: "#D6B681" - brightMagenta: "#D4CBA8" - brightCyan: "#A8B8C8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 87.9 - black: 0 - red: 57.3 - green: 56.2 - yellow: 73.9 - blue: 39.7 - magenta: 66.9 - cyan: 49.4 - white: 78.1 - brightBlack: 16.1 - brightRed: 65.9 - brightGreen: 80.8 - brightYellow: 102.4 - brightBlue: 65.5 - brightMagenta: 74.9 - brightCyan: 62.9 - brightWhite: 107.9 diff --git a/themes/asteria.yaml b/themes/asteria.yaml index 9c194bc0..c8b6677d 100644 --- a/themes/asteria.yaml +++ b/themes/asteria.yaml @@ -8,6 +8,7 @@ source: author: "Mauro Paternina" repo: "https://github.com/spaceinvadev/asteria" url: "https://marketplace.visualstudio.com/items?itemName=spaceinvadev.asteria" + formats: null colors: bg: "#0E1011" fg: "#7B7B7B" diff --git a/themes/astigmatism-theme.yaml b/themes/astigmatism-theme.yaml index 7cbaf695..06117ded 100644 --- a/themes/astigmatism-theme.yaml +++ b/themes/astigmatism-theme.yaml @@ -8,6 +8,7 @@ source: author: "GabrielFacioni" repo: "https://github.com/GabrielMMC/astigmatism-theme" url: "https://marketplace.visualstudio.com/items?itemName=GabrielFacioni.astigmatism-theme" + formats: null colors: bg: "#20283A" fg: "#DBD5C0" diff --git a/themes/astra-themedark.yaml b/themes/astra-themedark.yaml deleted file mode 100644 index 75aa3427..00000000 --- a/themes/astra-themedark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Astra-ThemeDark" -source: - marketplace_id: "AstraVirtual.astra-theme-dark" - version: "0.0.1" - installs: 6 - rating: 0 - ratings: 0 - author: "AstraVirtual" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=AstraVirtual.astra-theme-dark" -colors: - bg: "#1E1E1E" - fg: "#E0C3C3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 72.4 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/astra.yaml b/themes/astra.yaml index cd8425bf..66ba8fb6 100644 --- a/themes/astra.yaml +++ b/themes/astra.yaml @@ -8,6 +8,7 @@ source: author: "Giovanni Fu Lin" repo: "https://github.com/aeither/vscode-astra-theme" url: "https://marketplace.visualstudio.com/items?itemName=fulin.astra" + formats: null colors: bg: "#181818" fg: "#FFFFFF" diff --git a/themes/astral-theme.yaml b/themes/astral-theme.yaml index 715d61ee..673bbcd5 100644 --- a/themes/astral-theme.yaml +++ b/themes/astral-theme.yaml @@ -8,6 +8,7 @@ source: author: "Arthur Bottcher" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ArthurBottcher.astral-theme" + formats: null colors: bg: "#111213" fg: "#E4E4E7" diff --git a/themes/astral.yaml b/themes/astral.yaml index 0030345d..329f65b5 100644 --- a/themes/astral.yaml +++ b/themes/astral.yaml @@ -8,6 +8,7 @@ source: author: "Zac de Lusignan" repo: "https://github.com/lusignan/astral-vscode" url: "https://marketplace.visualstudio.com/items?itemName=lusignan.astral" + formats: null colors: bg: "#282938" fg: "#A3A7D8" diff --git a/themes/astro-dark.yaml b/themes/astro-dark.yaml deleted file mode 100644 index f4c00d4d..00000000 --- a/themes/astro-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Astro Dark" -source: - marketplace_id: "wicked-labs.astro-theme" - version: "0.9.7" - installs: 5255 - rating: 5 - ratings: 1 - author: "Michael Andreuzza " - repo: "https://github.com/michael-andreuzza/astro-theme" - url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.astro-theme" -colors: - bg: "#0F1014" - fg: "#9898A2" - black: "#FFFFFF" - red: "#EEF0F9" - green: "#5CC9F5" - yellow: "#23EBC0" - blue: "#ACAFFF" - magenta: "#DA68FB" - cyan: "#FFD493" - white: "#9898A2" - brightBlack: "#686974" - brightRed: "#EEF0F9" - brightGreen: "#5CC9F5" - brightYellow: "#23EBC0" - brightBlue: "#ACAFFF" - brightMagenta: "#DA68FB" - brightCyan: "#FFD493" - brightWhite: "#9898A2" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: "Astro Light" - contrast: - fg: 46.6 - black: 107.4 - red: 97.8 - green: 66.5 - yellow: 78.7 - blue: 62.4 - magenta: 47.3 - cyan: 84.1 - white: 46.6 - brightBlack: 24.2 - brightRed: 97.8 - brightGreen: 66.5 - brightYellow: 78.7 - brightBlue: 62.4 - brightMagenta: 47.3 - brightCyan: 84.1 - brightWhite: 46.6 diff --git a/themes/astro-kanagawa.yaml b/themes/astro-kanagawa.yaml deleted file mode 100644 index 20676531..00000000 --- a/themes/astro-kanagawa.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Astro Kanagawa" -source: - marketplace_id: "panquequelol.astro-kanagawa" - version: "0.0.4" - installs: 3865 - rating: 5 - ratings: 1 - author: "panquequelol" - repo: "https://github.com/panquequelol/astro-kanagawa" - url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.astro-kanagawa" -colors: - bg: "#191919" - fg: "#9898A2" - black: "#131317" - red: "#DCD7BA" - green: "#855C8D" - yellow: "#879A3B" - blue: "#4F76A1" - magenta: "#BE3F48" - cyan: "#578FA4" - white: "#9898A2" - brightBlack: "#686974" - brightRed: "#DCD7BA" - brightGreen: "#855C8D" - brightYellow: "#879A3B" - brightBlue: "#4F76A1" - brightMagenta: "#BE3F48" - brightCyan: "#578FA4" - brightWhite: "#9898A2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 45.8 - black: 0 - red: 80.6 - green: 23.9 - yellow: 42.3 - blue: 27.7 - magenta: 25.4 - cyan: 37.2 - white: 45.8 - brightBlack: 23.4 - brightRed: 80.6 - brightGreen: 23.9 - brightYellow: 42.3 - brightBlue: 27.7 - brightMagenta: 25.4 - brightCyan: 37.2 - brightWhite: 45.8 diff --git a/themes/astro-light.yaml b/themes/astro-light.yaml deleted file mode 100644 index f8a4ffef..00000000 --- a/themes/astro-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Astro Light" -source: - marketplace_id: "wicked-labs.astro-theme" - version: "0.9.7" - installs: 5255 - rating: 5 - ratings: 1 - author: "Michael Andreuzza " - repo: "https://github.com/michael-andreuzza/astro-theme" - url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.astro-theme" -colors: - bg: "#FDFDFE" - fg: "#4E5377" - black: "#D8DAE4" - red: "#686974" - green: "#1585B3" - yellow: "#10A380" - blue: "#787CD5" - magenta: "#B81AE6" - cyan: "#DE8601" - white: "#4E5377" - brightBlack: "#5F6488" - brightRed: "#686974" - brightGreen: "#1585B3" - brightYellow: "#10A380" - brightBlue: "#787CD5" - brightMagenta: "#B81AE6" - brightCyan: "#DE8601" - brightWhite: "#4E5377" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Astro Dark" - contrast: - fg: 84.6 - black: 18 - red: 76 - green: 67.1 - yellow: 57.4 - blue: 63.5 - magenta: 70.5 - cyan: 52.2 - white: 84.6 - brightBlack: 77.5 - brightRed: 76 - brightGreen: 67.1 - brightYellow: 57.4 - brightBlue: 63.5 - brightMagenta: 70.5 - brightCyan: 52.2 - brightWhite: 84.6 diff --git a/themes/astrofunk-dark.yaml b/themes/astrofunk-dark.yaml index 08dce31a..ee17c52a 100644 --- a/themes/astrofunk-dark.yaml +++ b/themes/astrofunk-dark.yaml @@ -8,6 +8,7 @@ source: author: "James Gulland" repo: "https://github.com/james-gulland/astrofunk-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.astrofunk-dark-theme" + formats: null colors: bg: "#272635" fg: "#B9C2E0" diff --git a/themes/astronaut.yaml b/themes/astronaut.yaml index 6874f6d2..b68ba4d4 100644 --- a/themes/astronaut.yaml +++ b/themes/astronaut.yaml @@ -8,6 +8,7 @@ source: author: "larabeatriz32" repo: "https://github.com/larabeatrizms/astronaut-theme" url: "https://marketplace.visualstudio.com/items?itemName=larabeatriz32.theme-astronaut" + formats: null colors: bg: "#191622" fg: "#E1E1E6" diff --git a/themes/astrus-midnight.yaml b/themes/astrus-midnight.yaml index 31a75074..10afc58c 100644 --- a/themes/astrus-midnight.yaml +++ b/themes/astrus-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Shailesh Sathe" repo: "https://github.com/shailesh43/Astrus" url: "https://marketplace.visualstudio.com/items?itemName=shailesh43.astrus" + formats: null colors: bg: "#151529" fg: "#ACB9D9" diff --git a/themes/astrus-nebula.yaml b/themes/astrus-nebula.yaml index 360f1b13..8eaaea07 100644 --- a/themes/astrus-nebula.yaml +++ b/themes/astrus-nebula.yaml @@ -8,6 +8,7 @@ source: author: "Shailesh Sathe" repo: "https://github.com/shailesh43/Astrus" url: "https://marketplace.visualstudio.com/items?itemName=shailesh43.astrus" + formats: null colors: bg: "#1F1A27" fg: "#ACB9D9" diff --git a/themes/astrus-standard.yaml b/themes/astrus-standard.yaml index 5da38c1d..da007111 100644 --- a/themes/astrus-standard.yaml +++ b/themes/astrus-standard.yaml @@ -8,6 +8,7 @@ source: author: "Shailesh Sathe" repo: "https://github.com/shailesh43/Astrus" url: "https://marketplace.visualstudio.com/items?itemName=shailesh43.astrus" + formats: null colors: bg: "#171717" fg: "#ACB9D9" diff --git a/themes/asuka-theme-light.yaml b/themes/asuka-theme-light.yaml deleted file mode 100644 index fc94a2d4..00000000 --- a/themes/asuka-theme-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Asuka-Theme-Light" -source: - marketplace_id: "MennyfSoryu.asuka-theme" - version: "0.1.1" - installs: 4079 - rating: 5 - ratings: 1 - author: "MennyfSoryu" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=MennyfSoryu.asuka-theme" -colors: - bg: "#FFFFFF" - fg: "#65B04B" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 51.7 - black: 106 - red: 74 - green: 49.2 - yellow: 57.9 - blue: 86.1 - magenta: 74.6 - cyan: 60.6 - white: 85.9 - brightBlack: 78.8 - brightRed: 74 - brightGreen: 40.9 - brightYellow: 40.9 - brightBlue: 86.1 - brightMagenta: 74.6 - brightCyan: 60.6 - brightWhite: 48.5 diff --git a/themes/asuka-theme.yaml b/themes/asuka-theme.yaml deleted file mode 100644 index b9636953..00000000 --- a/themes/asuka-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Asuka-Theme" -source: - marketplace_id: "MennyfSoryu.asuka-theme" - version: "0.1.1" - installs: 4079 - rating: 5 - ratings: 1 - author: "MennyfSoryu" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=MennyfSoryu.asuka-theme" -colors: - bg: "#2C2C32" - fg: "#65B04B" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 286 - pair: null - contrast: - fg: 45.9 - black: 0 - red: 23.4 - green: 49.7 - yellow: 82.3 - blue: 24.1 - magenta: 26.4 - cyan: 44.2 - white: 86.7 - brightBlack: 18.7 - brightRed: 35.2 - brightGreen: 60.2 - brightYellow: 92.3 - brightBlue: 36.7 - brightMagenta: 42 - brightCyan: 52.1 - brightWhite: 86.7 diff --git a/themes/athabasca-light.yaml b/themes/athabasca-light.yaml index 39138305..a400c215 100644 --- a/themes/athabasca-light.yaml +++ b/themes/athabasca-light.yaml @@ -8,6 +8,7 @@ source: author: "Ian Lord" repo: "https://github.com/ianlord/athabasca" url: "https://marketplace.visualstudio.com/items?itemName=ianlord.athabasca" + formats: null colors: bg: "#0C151C" fg: "#E3F0FF" diff --git a/themes/athabasca.yaml b/themes/athabasca.yaml index 9c836e66..953401c2 100644 --- a/themes/athabasca.yaml +++ b/themes/athabasca.yaml @@ -8,6 +8,7 @@ source: author: "Ian Lord" repo: "https://github.com/ianlord/athabasca" url: "https://marketplace.visualstudio.com/items?itemName=ianlord.athabasca" + formats: null colors: bg: "#0A1016" fg: "#E3F0FF" diff --git a/themes/atilio.yaml b/themes/atilio.yaml index 74ff21a2..3938e9e0 100644 --- a/themes/atilio.yaml +++ b/themes/atilio.yaml @@ -8,6 +8,7 @@ source: author: "Leo Marello" repo: "https://github.com/lmarello/atilio-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=pingocho.atilio" + formats: null colors: bg: "#191A1F" fg: "#D7D7D7" diff --git a/themes/atlantu.yaml b/themes/atlantu.yaml index 385c866a..31229292 100644 --- a/themes/atlantu.yaml +++ b/themes/atlantu.yaml @@ -8,6 +8,7 @@ source: author: "yradex" repo: "https://github.com/Yradex/Atlantu" url: "https://marketplace.visualstudio.com/items?itemName=yradex.atlantu" + formats: null colors: bg: "#1B1C1E" fg: "#D1D3D8" diff --git a/themes/atom-homepage-fork.yaml b/themes/atom-homepage-fork.yaml deleted file mode 100644 index 9945ea20..00000000 --- a/themes/atom-homepage-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Atom Homepage - Fork" -source: - marketplace_id: "xynny.atom-theme" - version: "0.0.1" - installs: 1062 - rating: 0 - ratings: 0 - author: "xynny" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=xynny.atom-theme" -colors: - bg: "#363639" - fg: "#EDD9B7" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.2 - black: 0 - red: 21 - green: 47.2 - yellow: 79.9 - blue: 21.7 - magenta: 24 - cyan: 41.8 - white: 84.3 - brightBlack: 16.3 - brightRed: 32.8 - brightGreen: 57.8 - brightYellow: 89.9 - brightBlue: 34.2 - brightMagenta: 39.6 - brightCyan: 49.6 - brightWhite: 84.3 diff --git a/themes/atom-material-theme.yaml b/themes/atom-material-theme.yaml deleted file mode 100644 index 619582c1..00000000 --- a/themes/atom-material-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Atom Material Theme" -source: - marketplace_id: "waseemakhter028.wise-owl-material-theme" - version: "1.0.0" - installs: 31 - rating: 5 - ratings: 1 - author: "WaseemAkhter" - repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" -colors: - bg: "#263238" - fg: "#D4D4D4" - black: "#313131" - red: "#FF5D4E" - green: "#CDDC39" - yellow: "#FFCB43" - blue: "#4FB6F7" - magenta: "#E23673" - cyan: "#00B9CC" - white: "#E6E5E5" - brightBlack: "#708284" - brightRed: "#FF5D4E" - brightGreen: "#CDDC39" - brightYellow: "#FFCB43" - brightBlue: "#4FB6F7" - brightMagenta: "#E23673" - brightCyan: "#00B9CC" - brightWhite: "#E6E5E5" -meta: - mode: "dark" - accent: "red" - hue: 230 - pair: null - contrast: - fg: 75.3 - black: 0 - red: 40.5 - green: 74.3 - yellow: 74.2 - blue: 53.1 - magenta: 29 - cyan: 50.6 - white: 86 - brightBlack: 28.9 - brightRed: 40.5 - brightGreen: 74.3 - brightYellow: 74.2 - brightBlue: 53.1 - brightMagenta: 29 - brightCyan: 50.6 - brightWhite: 86 diff --git a/themes/atom-one-dark-coal.yaml b/themes/atom-one-dark-coal.yaml index 82d1ba25..03869249 100644 --- a/themes/atom-one-dark-coal.yaml +++ b/themes/atom-one-dark-coal.yaml @@ -1,13 +1,14 @@ -name: "Atom One dark Coal" +name: "Atom One Dark Coal" source: marketplace_id: "shiftybody.atom-one-dark-coal" version: "1.5.0" - installs: 10668 + installs: 10672 rating: 5 ratings: 3 author: "shiftybody" repo: "https://github.com/shiftybody/atom-one-dark-coal" url: "https://marketplace.visualstudio.com/items?itemName=shiftybody.atom-one-dark-coal" + formats: null colors: bg: "#181818" fg: "#BFBFBF" diff --git a/themes/atom-one-dark-cyan.yaml b/themes/atom-one-dark-cyan.yaml deleted file mode 100644 index 4f7b7b61..00000000 --- a/themes/atom-one-dark-cyan.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Atom One Dark Cyan" -source: - marketplace_id: "kq996.atom-one-cyan" - version: "1.2.0" - installs: 300 - rating: 5 - ratings: 1 - author: "kq996" - repo: "https://github.com/keqing996/vscode-atom-one-cyan" - url: "https://marketplace.visualstudio.com/items?itemName=kq996.atom-one-cyan" -colors: - bg: "#303845" - fg: "#ABB2BF" - black: "#303845" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#56B6C2" - magenta: "#C678DD" - cyan: "#61AFEF" - white: "#DCDFE4" - brightBlack: "#5C6370" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#56B6C2" - brightMagenta: "#C678DD" - brightCyan: "#61AFEF" - brightWhite: "#DCDFE4" -meta: - mode: "dark" - accent: "pink" - hue: 260 - pair: "Atom One Light Cyan" - contrast: - fg: 53.2 - black: 0 - red: 35.9 - green: 56.1 - yellow: 64.4 - blue: 48.4 - magenta: 39 - cyan: 48.5 - white: 79.9 - brightBlack: 14.4 - brightRed: 35.9 - brightGreen: 56.1 - brightYellow: 64.4 - brightBlue: 48.4 - brightMagenta: 39 - brightCyan: 48.5 - brightWhite: 79.9 diff --git a/themes/atom-one-light-cyan.yaml b/themes/atom-one-light-cyan.yaml deleted file mode 100644 index b22e6058..00000000 --- a/themes/atom-one-light-cyan.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Atom One Light Cyan" -source: - marketplace_id: "kq996.atom-one-cyan" - version: "1.2.0" - installs: 300 - rating: 5 - ratings: 1 - author: "kq996" - repo: "https://github.com/keqing996/vscode-atom-one-cyan" - url: "https://marketplace.visualstudio.com/items?itemName=kq996.atom-one-cyan" -colors: - bg: "#F2F3F7" - fg: "#383A42" - black: "#002B36" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#F2F3F7" - brightBlack: "#073642" - brightRed: "#CB4B16" - brightGreen: "#586E75" - brightYellow: "#657B83" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#93A1A1" - brightWhite: "#F6F8FB" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Atom One Dark Cyan" - contrast: - fg: 89.1 - black: 94.5 - red: 63.4 - green: 51.9 - yellow: 51.9 - blue: 56.8 - magenta: 63.2 - cyan: 51.2 - white: 0 - brightBlack: 91.9 - brightRed: 63.9 - brightGreen: 69.7 - brightYellow: 63.8 - brightBlue: 51.6 - brightMagenta: 63.1 - brightCyan: 44.9 - brightWhite: 0 diff --git a/themes/atom-one-light-modern.yaml b/themes/atom-one-light-modern.yaml index be3e8971..a7ee2c6b 100644 --- a/themes/atom-one-light-modern.yaml +++ b/themes/atom-one-light-modern.yaml @@ -2,12 +2,13 @@ name: "Atom One Light Modern" source: marketplace_id: "mani-sh-reddy.atom-one-light-modern" version: "1.0.5" - installs: 2195 + installs: 2203 rating: 5 ratings: 1 author: "Manish Reddy" repo: "https://github.com/mani-sh-reddy/atom-one-light-modern" url: "https://marketplace.visualstudio.com/items?itemName=mani-sh-reddy.atom-one-light-modern" + formats: null colors: bg: "#F2F2F2" fg: "#24292E" diff --git a/themes/atomax-colorblind-light.yaml b/themes/atomax-colorblind-light.yaml index fe8dbd17..cc9600bb 100644 --- a/themes/atomax-colorblind-light.yaml +++ b/themes/atomax-colorblind-light.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" + formats: null colors: bg: "#F6F8FA" fg: "#24292F" diff --git a/themes/atomax-dark-colorblind.yaml b/themes/atomax-dark-colorblind.yaml index bbfde5e1..e0f012da 100644 --- a/themes/atomax-dark-colorblind.yaml +++ b/themes/atomax-dark-colorblind.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" + formats: null colors: bg: "#010409" fg: "#C9D1D9" diff --git a/themes/atomax-dark-dimmed.yaml b/themes/atomax-dark-dimmed.yaml index b98b02e2..5121d2c7 100644 --- a/themes/atomax-dark-dimmed.yaml +++ b/themes/atomax-dark-dimmed.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" + formats: null colors: bg: "#1C2128" fg: "#ADBAC7" diff --git a/themes/atomax-dark-tritanopia.yaml b/themes/atomax-dark-tritanopia.yaml index c936510f..662ad16a 100644 --- a/themes/atomax-dark-tritanopia.yaml +++ b/themes/atomax-dark-tritanopia.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" + formats: null colors: bg: "#010409" fg: "#C9D1D9" diff --git a/themes/atomax-dark.yaml b/themes/atomax-dark.yaml index 318ecf4c..941ee72b 100644 --- a/themes/atomax-dark.yaml +++ b/themes/atomax-dark.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" + formats: null colors: bg: "#010409" fg: "#C9D1D9" diff --git a/themes/atomax-high-contrast-light.yaml b/themes/atomax-high-contrast-light.yaml deleted file mode 100644 index 76ffce6a..00000000 --- a/themes/atomax-high-contrast-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "AtomAx High Contrast Light" -source: - marketplace_id: "telianedward.atomaax-theme" - version: "0.3.1" - installs: 305 - rating: 5 - ratings: 1 - author: "Vela Inc" - repo: "https://github.com/telianedward/AtomaxAxTheme" - url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" -colors: - bg: "#FFFFFF" - fg: "#0E1116" - black: "#0E1116" - red: "#A0111F" - green: "#024C1A" - yellow: "#3F2200" - blue: "#0349B4" - magenta: "#622CBC" - cyan: "#1B7C83" - white: "#66707B" - brightBlack: "#4B535D" - brightRed: "#86061D" - brightGreen: "#055D20" - brightYellow: "#4E2C00" - brightBlue: "#1168E3" - brightMagenta: "#844AE7" - brightCyan: "#3192AA" - brightWhite: "#88929D" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 105.4 - black: 105.4 - red: 86.1 - green: 93.2 - yellow: 101.1 - blue: 86.9 - magenta: 86.9 - cyan: 73.8 - white: 74.8 - brightBlack: 87.1 - brightRed: 91.6 - brightGreen: 87.5 - brightYellow: 98 - brightBlue: 74.4 - brightMagenta: 74.5 - brightCyan: 63.3 - brightWhite: 58.7 diff --git a/themes/atomax-high-contrast.yaml b/themes/atomax-high-contrast.yaml index 5f6d4567..7c72a648 100644 --- a/themes/atomax-high-contrast.yaml +++ b/themes/atomax-high-contrast.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" + formats: null colors: bg: "#010409" fg: "#F0F3F6" diff --git a/themes/atomax-light-tritanopia.yaml b/themes/atomax-light-tritanopia.yaml index 51c04cbf..f770256e 100644 --- a/themes/atomax-light-tritanopia.yaml +++ b/themes/atomax-light-tritanopia.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" + formats: null colors: bg: "#F6F8FA" fg: "#24292F" diff --git a/themes/atomax-light.yaml b/themes/atomax-light.yaml index 89622569..b7174b63 100644 --- a/themes/atomax-light.yaml +++ b/themes/atomax-light.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/telianedward/AtomaxAxTheme" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.atomaax-theme" + formats: null colors: bg: "#F6F8FA" fg: "#24292F" diff --git a/themes/atomicc.yaml b/themes/atomicc.yaml index 8313eda2..2b7f37a0 100644 --- a/themes/atomicc.yaml +++ b/themes/atomicc.yaml @@ -8,6 +8,7 @@ source: author: "carlowisse" repo: "https://github.com/carlowisse/atomicc-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlowisse.atomicc" + formats: null colors: bg: "#000000" fg: "#CCCCCC" diff --git a/themes/atomify.yaml b/themes/atomify.yaml index 47c9cf3b..efa3719a 100644 --- a/themes/atomify.yaml +++ b/themes/atomify.yaml @@ -8,6 +8,7 @@ source: author: "Swayam Rabari" repo: "https://github.com/SwayamRabari/atomify" url: "https://marketplace.visualstudio.com/items?itemName=SwayamRabari.atomify" + formats: null colors: bg: "#0D1217" fg: "#ABB2BF" diff --git a/themes/atomized-theme.yaml b/themes/atomized-theme.yaml index d3028f36..0569160d 100644 --- a/themes/atomized-theme.yaml +++ b/themes/atomized-theme.yaml @@ -1,13 +1,15 @@ -name: "Atomized-Theme" +name: "Atomized Theme" source: marketplace_id: "excalith.atomized-theme" version: "1.1.4" - installs: 12098 + installs: 12099 rating: 5 ratings: 1 author: "excalith" repo: "https://github.com/excalith/Atomized-Theme/" url: "https://marketplace.visualstudio.com/items?itemName=excalith.atomized-theme" + formats: + zed: "https://raw.githubusercontent.com/excalith/Atomized-Theme/master/themes/Atomized-Theme.json" colors: bg: "#282C34" fg: "#F8FAFD" diff --git a/themes/atomizer-dark-island.yaml b/themes/atomizer-dark-island.yaml index 72aa69d1..ab8b0e20 100644 --- a/themes/atomizer-dark-island.yaml +++ b/themes/atomizer-dark-island.yaml @@ -8,6 +8,7 @@ source: author: "Aris Ripandi" repo: "https://github.com/riipandi/vscode-atomizer-theme" url: "https://marketplace.visualstudio.com/items?itemName=riipandi.vscode-atomizer-theme" + formats: null colors: bg: "#181A1D" fg: "#BCBEC4" diff --git a/themes/atomwave.yaml b/themes/atomwave.yaml index 70901883..13261d07 100644 --- a/themes/atomwave.yaml +++ b/themes/atomwave.yaml @@ -8,6 +8,7 @@ source: author: "Nuttshell_Man" repo: "https://github.com/NuttshellDevelopment/atomwave-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=NuttshellMan.atomwave-vs-code-theme" + formats: null colors: bg: "#141414" fg: "#CCCCCC" diff --git a/themes/attack-on-titan-eren-s-determination.yaml b/themes/attack-on-titan-eren-s-determination.yaml deleted file mode 100644 index 972b4d6e..00000000 --- a/themes/attack-on-titan-eren-s-determination.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Attack on Titan (Eren's Determination)" -source: - marketplace_id: "LunaCode.anime-theme" - version: "0.0.3" - installs: 377 - rating: 5 - ratings: 3 - author: "LunaCode" - repo: "https://github.com/BuildXO/anime-theme-pack" - url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" -colors: - bg: "#1A1512" - fg: "#E8DCC8" - black: "#3C3428" - red: "#DC143C" - green: "#6B8E23" - yellow: "#DAA520" - blue: "#4682B4" - magenta: "#8B4789" - cyan: "#5F9EA0" - white: "#D3C5B0" - brightBlack: "#6B5D4F" - brightRed: "#FF6B6B" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#61AFEF" - brightMagenta: "#C678DD" - brightCyan: "#56B6C2" - brightWhite: "#F0E4D0" -meta: - mode: "dark" - accent: "orange" - hue: 53 - pair: null - contrast: - fg: 85.3 - black: 0 - red: 28.6 - green: 35.3 - yellow: 57.4 - blue: 32.7 - magenta: 20.2 - cyan: 43.6 - white: 71.6 - brightBlack: 19.3 - brightRed: 48.2 - brightGreen: 62.4 - brightYellow: 70.7 - brightBlue: 54.8 - brightMagenta: 45.2 - brightCyan: 54.7 - brightWhite: 90.3 diff --git a/themes/attentio-flow.yaml b/themes/attentio-flow.yaml index 36de392e..c954bacf 100644 --- a/themes/attentio-flow.yaml +++ b/themes/attentio-flow.yaml @@ -8,6 +8,7 @@ source: author: "Shaditya Kinlekar" repo: "https://github.com/Shaditya-Kinlekar/Attentio-Theme" url: "https://marketplace.visualstudio.com/items?itemName=shadz-dev.attentio" + formats: null colors: bg: "#010107" fg: "#C0C4D8" diff --git a/themes/attentio-pulse.yaml b/themes/attentio-pulse.yaml index 1425584e..d5128547 100644 --- a/themes/attentio-pulse.yaml +++ b/themes/attentio-pulse.yaml @@ -8,6 +8,7 @@ source: author: "Shaditya Kinlekar" repo: "https://github.com/Shaditya-Kinlekar/Attentio-Theme" url: "https://marketplace.visualstudio.com/items?itemName=shadz-dev.attentio" + formats: null colors: bg: "#010107" fg: "#C0C4D8" diff --git a/themes/attica.yaml b/themes/attica.yaml index 62e68a26..d17d0451 100644 --- a/themes/attica.yaml +++ b/themes/attica.yaml @@ -1,4 +1,4 @@ -name: "Attica" +name: "attica" source: marketplace_id: "Alekzandriia.attica" version: "0.4.0" @@ -8,6 +8,7 @@ source: author: "Alekzandriia" repo: "https://github.com/alekzandria/attica" url: "https://marketplace.visualstudio.com/items?itemName=Alekzandriia.attica" + formats: null colors: bg: "#E1DEE9" fg: "#7E7F9A" diff --git a/themes/aube.yaml b/themes/aube.yaml index 655c5a44..40390d20 100644 --- a/themes/aube.yaml +++ b/themes/aube.yaml @@ -8,6 +8,7 @@ source: author: "fatekkl" repo: "https://github.com/fatekkl/Aube" url: "https://marketplace.visualstudio.com/items?itemName=fatekkl.aube" + formats: null colors: bg: "#1E1E1E" fg: "#E8E6F0" diff --git a/themes/august-ariake-dark.yaml b/themes/august-ariake-dark.yaml deleted file mode 100644 index c70bbda4..00000000 --- a/themes/august-ariake-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Ariake Dark" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#191C22" - fg: "#7B88A1" - black: "#272C36" - red: "#DDA2F6" - green: "#9AEFEA" - yellow: "#EBCB8B" - blue: "#69B1E0" - magenta: "#7E7EDD" - cyan: "#9AEFEA" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#DDA2F6" - brightGreen: "#93C7E9" - brightYellow: "#EBCB8B" - brightBlue: "#93C7E9" - brightMagenta: "#A571F4" - brightCyan: "#9AEFEA" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "magenta" - hue: 264 - pair: null - contrast: - fg: 36.8 - black: 0 - red: 62.5 - green: 86.4 - yellow: 75.8 - blue: 54.5 - magenta: 37.2 - cyan: 86.4 - white: 91.8 - brightBlack: 14.8 - brightRed: 62.5 - brightGreen: 67.3 - brightYellow: 75.8 - brightBlue: 67.3 - brightMagenta: 39.5 - brightCyan: 86.4 - brightWhite: 95.7 diff --git a/themes/august-arstotzka-darker.yaml b/themes/august-arstotzka-darker.yaml deleted file mode 100644 index 13c3bfbd..00000000 --- a/themes/august-arstotzka-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Arstotzka (Darker)" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#050404" - fg: "#556955" - black: "#050404" - red: "#A62828" - green: "#85A4B1" - yellow: "#B19600" - blue: "#85A4B1" - magenta: "#837485" - cyan: "#9CB5AA" - white: "#A2A797" - brightBlack: "#565656" - brightRed: "#A62828" - brightGreen: "#678813" - brightYellow: "#B19600" - brightBlue: "#9CB5AA" - brightMagenta: "#837485" - brightCyan: "#9CB5AA" - brightWhite: "#A2A797" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 22.1 - black: 0 - red: 18.6 - green: 50.4 - yellow: 46.6 - blue: 50.4 - magenta: 31.3 - cyan: 59.1 - white: 53.4 - brightBlack: 16.5 - brightRed: 18.6 - brightGreen: 33.6 - brightYellow: 46.6 - brightBlue: 59.1 - brightMagenta: 31.3 - brightCyan: 59.1 - brightWhite: 53.4 diff --git a/themes/august-arstotzka-lighter.yaml b/themes/august-arstotzka-lighter.yaml deleted file mode 100644 index 1dd45136..00000000 --- a/themes/august-arstotzka-lighter.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Arstotzka (Lighter)" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#191212" - fg: "#556955" - black: "#191212" - red: "#A62828" - green: "#85A4B1" - yellow: "#B19600" - blue: "#85A4B1" - magenta: "#837485" - cyan: "#9CB5AA" - white: "#A2A797" - brightBlack: "#565656" - brightRed: "#A62828" - brightGreen: "#678813" - brightYellow: "#B19600" - brightBlue: "#9CB5AA" - brightMagenta: "#837485" - brightCyan: "#9CB5AA" - brightWhite: "#A2A797" -meta: - mode: "dark" - accent: "orange" - hue: 18 - pair: null - contrast: - fg: 21.4 - black: 0 - red: 17.9 - green: 49.7 - yellow: 45.9 - blue: 49.7 - magenta: 30.6 - cyan: 58.4 - white: 52.7 - brightBlack: 15.8 - brightRed: 17.9 - brightGreen: 32.9 - brightYellow: 45.9 - brightBlue: 58.4 - brightMagenta: 30.6 - brightCyan: 58.4 - brightWhite: 52.7 diff --git a/themes/august-arstotzka.yaml b/themes/august-arstotzka.yaml deleted file mode 100644 index d5ae03bf..00000000 --- a/themes/august-arstotzka.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Arstotzka" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#0F0B0B" - fg: "#556955" - black: "#0F0B0B" - red: "#A62828" - green: "#85A4B1" - yellow: "#B19600" - blue: "#85A4B1" - magenta: "#837485" - cyan: "#9CB5AA" - white: "#A2A797" - brightBlack: "#565656" - brightRed: "#A62828" - brightGreen: "#678813" - brightYellow: "#B19600" - brightBlue: "#9CB5AA" - brightMagenta: "#837485" - brightCyan: "#9CB5AA" - brightWhite: "#A2A797" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 21.9 - black: 0 - red: 18.4 - green: 50.2 - yellow: 46.4 - blue: 50.2 - magenta: 31.1 - cyan: 58.9 - white: 53.2 - brightBlack: 16.3 - brightRed: 18.4 - brightGreen: 33.4 - brightYellow: 46.4 - brightBlue: 58.9 - brightMagenta: 31.1 - brightCyan: 58.9 - brightWhite: 53.2 diff --git a/themes/august-beardedtheme-oceanic-reversed.yaml b/themes/august-beardedtheme-oceanic-reversed.yaml deleted file mode 100644 index 6f282be8..00000000 --- a/themes/august-beardedtheme-oceanic-reversed.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - BeardedTheme Oceanic Reversed" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#111C22" - fg: "#C3D6E0" - black: "#111C22" - red: "#EE5D75" - green: "#97C892" - yellow: "#F6CC73" - blue: "#5FB2DF" - magenta: "#D194CD" - cyan: "#59C6C8" - white: "#C3D6E0" - brightBlack: "#C3D6E0" - brightRed: "#FF4C6A" - brightGreen: "#83E179" - brightYellow: "#FFCF6A" - brightBlue: "#42BBFC" - brightMagenta: "#E87DE1" - brightCyan: "#38E6E9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 233 - pair: null - contrast: - fg: 78.4 - black: 0 - red: 41.3 - green: 64.7 - yellow: 77.6 - blue: 54.4 - magenta: 53.8 - cyan: 61.7 - white: 78.4 - brightBlack: 78.4 - brightRed: 42 - brightGreen: 74.2 - brightYellow: 80.2 - brightBlue: 58.9 - brightMagenta: 52.1 - brightCyan: 77.4 - brightWhite: 106.5 diff --git a/themes/august-beardedtheme-surprising-blueberry.yaml b/themes/august-beardedtheme-surprising-blueberry.yaml deleted file mode 100644 index 7eee2de0..00000000 --- a/themes/august-beardedtheme-surprising-blueberry.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - BeardedTheme Surprising Blueberry" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#101A29" - fg: "#BACBE4" - black: "#101A29" - red: "#E35535" - green: "#A9DC76" - yellow: "#C93E71" - blue: "#00B3BD" - magenta: "#C47CBF" - cyan: "#C93E71" - white: "#BACBE4" - brightBlack: "#2C476E" - brightRed: "#FF4319" - brightGreen: "#A9F65C" - brightYellow: "#EE1967" - brightBlue: "#00B3BD" - brightMagenta: "#E15FD8" - brightCyan: "#EE1967" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 258 - pair: null - contrast: - fg: 72.9 - black: 0 - red: 36.3 - green: 74.9 - yellow: 28.3 - blue: 51.1 - magenta: 43.9 - cyan: 28.3 - white: 72.9 - brightBlack: 9.4 - brightRed: 39.8 - brightGreen: 87.3 - brightYellow: 33.4 - brightBlue: 51.1 - brightMagenta: 43.5 - brightCyan: 33.4 - brightWhite: 106.5 diff --git a/themes/august-catppuccin.yaml b/themes/august-catppuccin.yaml deleted file mode 100644 index 779e256b..00000000 --- a/themes/august-catppuccin.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Catppuccin" -source: - marketplace_id: "SofiDev.sofidev" - version: "6.1.9" - installs: 591 - rating: 5 - ratings: 2 - author: "SofiDev" - repo: "https://github.com/SofiDevO/sofidev-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SofiDev.sofidev" -colors: - bg: "#1E2030" - fg: "#CAD3F5" - black: "#A5ADCB" - red: "#ED8796" - green: "#A6DA95" - yellow: "#EED49F" - blue: "#8AADF4" - magenta: "#F5BDE6" - cyan: "#91D7E3" - white: "#B8C0E0" - brightBlack: "#5B6078" - brightRed: "#ED8796" - brightGreen: "#A6DA95" - brightYellow: "#EED49F" - brightBlue: "#8AADF4" - brightMagenta: "#F5BDE6" - brightCyan: "#91D7E3" - brightWhite: "#494D64" -meta: - mode: "dark" - accent: "red" - hue: 278 - pair: null - contrast: - fg: 78.1 - black: 56 - red: 51.5 - green: 73.5 - yellow: 79.9 - blue: 55.7 - magenta: 74.5 - cyan: 73.3 - white: 66.9 - brightBlack: 18.7 - brightRed: 51.5 - brightGreen: 73.5 - brightYellow: 79.9 - brightBlue: 55.7 - brightMagenta: 74.5 - brightCyan: 73.3 - brightWhite: 11.2 diff --git a/themes/august-city-lights-darker.yaml b/themes/august-city-lights-darker.yaml deleted file mode 100644 index 7ccd5ed5..00000000 --- a/themes/august-city-lights-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - City Lights (Darker)" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#161C22" - fg: "#8094A7" - black: "#41505E" - red: "#B62D65" - green: "#008B94" - yellow: "#EBBF83" - blue: "#539AFC" - magenta: "#B62D65" - cyan: "#70E1E8" - white: "#B7C5D3" - brightBlack: "#41505E" - brightRed: "#B62D65" - brightGreen: "#33CED8" - brightYellow: "#EBBF83" - brightBlue: "#5EC4FF" - brightMagenta: "#B62D65" - brightCyan: "#70E1E8" - brightWhite: "#B7C5D3" -meta: - mode: "dark" - accent: "red" - hue: 248 - pair: null - contrast: - fg: 41.9 - black: 12.1 - red: 22 - green: 32.6 - yellow: 70.8 - blue: 46.2 - magenta: 22 - cyan: 76.9 - white: 69 - brightBlack: 12.1 - brightRed: 22 - brightGreen: 64.8 - brightYellow: 70.8 - brightBlue: 63.9 - brightMagenta: 22 - brightCyan: 76.9 - brightWhite: 69 diff --git a/themes/august-city-lights.yaml b/themes/august-city-lights.yaml deleted file mode 100644 index ff12a252..00000000 --- a/themes/august-city-lights.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - City Lights" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#1D252C" - fg: "#8094A7" - black: "#41505E" - red: "#B62D65" - green: "#008B94" - yellow: "#EBBF83" - blue: "#539AFC" - magenta: "#B62D65" - cyan: "#70E1E8" - white: "#B7C5D3" - brightBlack: "#41505E" - brightRed: "#B62D65" - brightGreen: "#33CED8" - brightYellow: "#EBBF83" - brightBlue: "#5EC4FF" - brightMagenta: "#B62D65" - brightCyan: "#70E1E8" - brightWhite: "#B7C5D3" -meta: - mode: "dark" - accent: "red" - hue: 245 - pair: null - contrast: - fg: 40.6 - black: 10.8 - red: 20.7 - green: 31.3 - yellow: 69.5 - blue: 44.9 - magenta: 20.7 - cyan: 75.6 - white: 67.7 - brightBlack: 10.8 - brightRed: 20.7 - brightGreen: 63.6 - brightYellow: 69.5 - brightBlue: 62.7 - brightMagenta: 20.7 - brightCyan: 75.6 - brightWhite: 67.7 diff --git a/themes/august-dark-theme.yaml b/themes/august-dark-theme.yaml deleted file mode 100644 index d7b58f12..00000000 --- a/themes/august-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August Dark Theme" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#0F172A" - fg: "#F1F5F9" - black: "#0F172A" - red: "#EF4444" - green: "#22C55E" - yellow: "#FACC15" - blue: "#3B82F6" - magenta: "#C084FC" - cyan: "#06B6D4" - white: "#F1F5F9" - brightBlack: "#1E293B" - brightRed: "#F87171" - brightGreen: "#4ADE80" - brightYellow: "#FBBF24" - brightBlue: "#60A5FA" - brightMagenta: "#D8B4FE" - brightCyan: "#67E8F9" - brightWhite: "#F8FAFC" -meta: - mode: "dark" - accent: "orange" - hue: 266 - pair: null - contrast: - fg: 99.8 - black: 0 - red: 36.7 - green: 56.7 - yellow: 77.7 - blue: 36.7 - magenta: 49.6 - cyan: 53.8 - white: 99.8 - brightBlack: 0 - brightRed: 48 - brightGreen: 70.4 - brightYellow: 72.6 - brightBlue: 51.3 - brightMagenta: 69.2 - brightCyan: 81.1 - brightWhite: 103.3 diff --git a/themes/august-drawbridge-darker.yaml b/themes/august-drawbridge-darker.yaml deleted file mode 100644 index 37d3183a..00000000 --- a/themes/august-drawbridge-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Drawbridge (Darker)" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#0D0E15" - fg: "#B8CDFE" - black: "#252A41" - red: "#4961DA" - green: "#67C9E4" - yellow: "#627AF4" - blue: "#627AF4" - magenta: "#7289FD" - cyan: "#67C9E4" - white: "#B8CDFE" - brightBlack: "#4961DA" - brightRed: "#627AF4" - brightGreen: "#75D5F0" - brightYellow: "#B8CDFE" - brightBlue: "#67C9E4" - brightMagenta: "#7289FD" - brightCyan: "#75D5F0" - brightWhite: "#B8CDFE" -meta: - mode: "dark" - accent: "purple" - hue: 278 - pair: null - contrast: - fg: 75.9 - black: 0 - red: 25.8 - green: 66.2 - yellow: 36.6 - blue: 36.6 - magenta: 43.3 - cyan: 66.2 - white: 75.9 - brightBlack: 25.8 - brightRed: 36.6 - brightGreen: 73.1 - brightYellow: 75.9 - brightBlue: 66.2 - brightMagenta: 43.3 - brightCyan: 73.1 - brightWhite: 75.9 diff --git a/themes/august-drawbridge.yaml b/themes/august-drawbridge.yaml deleted file mode 100644 index 5f66cb7c..00000000 --- a/themes/august-drawbridge.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Drawbridge" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#131520" - fg: "#B8CDFE" - black: "#252A41" - red: "#4961DA" - green: "#67C9E4" - yellow: "#627AF4" - blue: "#627AF4" - magenta: "#7289FD" - cyan: "#67C9E4" - white: "#B8CDFE" - brightBlack: "#4961DA" - brightRed: "#627AF4" - brightGreen: "#75D5F0" - brightYellow: "#B8CDFE" - brightBlue: "#67C9E4" - brightMagenta: "#7289FD" - brightCyan: "#75D5F0" - brightWhite: "#B8CDFE" -meta: - mode: "dark" - accent: "purple" - hue: 276 - pair: null - contrast: - fg: 75.4 - black: 0 - red: 25.2 - green: 65.6 - yellow: 36.1 - blue: 36.1 - magenta: 42.8 - cyan: 65.6 - white: 75.4 - brightBlack: 25.2 - brightRed: 36.1 - brightGreen: 72.5 - brightYellow: 75.4 - brightBlue: 65.6 - brightMagenta: 42.8 - brightCyan: 72.5 - brightWhite: 75.4 diff --git a/themes/august-gruvbox-darker.yaml b/themes/august-gruvbox-darker.yaml deleted file mode 100644 index c97f2a4e..00000000 --- a/themes/august-gruvbox-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Gruvbox (Darker)" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#151718" - fg: "#EBDBB2" - black: "#3C3836" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#FB4934" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#8EC07C" - brightWhite: "#EBDBB2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 84.4 - black: 0 - red: 25.3 - green: 43 - yellow: 52.5 - blue: 31.6 - magenta: 31.7 - cyan: 42 - white: 47.3 - brightBlack: 36.4 - brightRed: 40.2 - brightGreen: 61.2 - brightYellow: 71.8 - brightBlue: 48.6 - brightMagenta: 48 - brightCyan: 60.2 - brightWhite: 84.4 diff --git a/themes/august-gruvbox.yaml b/themes/august-gruvbox.yaml deleted file mode 100644 index dd88236c..00000000 --- a/themes/august-gruvbox.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Gruvbox" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#1D2021" - fg: "#EBDBB2" - black: "#3C3836" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#FB4934" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#8EC07C" - brightWhite: "#EBDBB2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83.3 - black: 0 - red: 24.2 - green: 41.9 - yellow: 51.5 - blue: 30.5 - magenta: 30.7 - cyan: 40.9 - white: 46.2 - brightBlack: 35.3 - brightRed: 39.1 - brightGreen: 60.1 - brightYellow: 70.8 - brightBlue: 47.6 - brightMagenta: 46.9 - brightCyan: 59.1 - brightWhite: 83.3 diff --git a/themes/august-kanagawa-darker.yaml b/themes/august-kanagawa-darker.yaml deleted file mode 100644 index 7f5edaf7..00000000 --- a/themes/august-kanagawa-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Kanagawa (Darker)" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#16161E" - fg: "#DCD7BA" - black: "#16161E" - red: "#E82424" - green: "#76946A" - yellow: "#FF9E3B" - blue: "#658594" - magenta: "#957FB8" - cyan: "#9CABCA" - white: "#DCD7BA" - brightBlack: "#2A2A37" - brightRed: "#FF5D62" - brightGreen: "#98BB6C" - brightYellow: "#E6C384" - brightBlue: "#7FB4CA" - brightMagenta: "#D27E99" - brightCyan: "#A3D4D5" - brightWhite: "#DCD7BA" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 80.8 - black: 0 - red: 31.8 - green: 39.5 - yellow: 61.6 - blue: 33.9 - magenta: 38.2 - cyan: 55.5 - white: 80.8 - brightBlack: 0 - brightRed: 45.1 - brightGreen: 58.5 - brightYellow: 72.2 - brightBlue: 56.6 - brightMagenta: 45.4 - brightCyan: 74.1 - brightWhite: 80.8 diff --git a/themes/august-kanagawa.yaml b/themes/august-kanagawa.yaml deleted file mode 100644 index ea99f367..00000000 --- a/themes/august-kanagawa.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Kanagawa" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#1F1F28" - fg: "#DCD7BA" - black: "#1F1F28" - red: "#E82424" - green: "#76946A" - yellow: "#FF9E3B" - blue: "#658594" - magenta: "#957FB8" - cyan: "#9CABCA" - white: "#DCD7BA" - brightBlack: "#2A2A37" - brightRed: "#FF5D62" - brightGreen: "#98BB6C" - brightYellow: "#E6C384" - brightBlue: "#7FB4CA" - brightMagenta: "#D27E99" - brightCyan: "#A3D4D5" - brightWhite: "#DCD7BA" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 79.7 - black: 0 - red: 30.7 - green: 38.4 - yellow: 60.5 - blue: 32.8 - magenta: 37.1 - cyan: 54.4 - white: 79.7 - brightBlack: 0 - brightRed: 44 - brightGreen: 57.4 - brightYellow: 71.1 - brightBlue: 55.5 - brightMagenta: 44.3 - brightCyan: 73 - brightWhite: 79.7 diff --git a/themes/august-material-ocean.yaml b/themes/august-material-ocean.yaml deleted file mode 100644 index 9730dc92..00000000 --- a/themes/august-material-ocean.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Material Ocean" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#0F111A" - fg: "#A6ACCD" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#464B5D" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 275 - pair: null - contrast: - fg: 57.6 - black: 0 - red: 47.1 - green: 84.7 - yellow: 79.4 - blue: 56.4 - magenta: 54.2 - cyan: 78.7 - white: 107.3 - brightBlack: 12 - brightRed: 47.1 - brightGreen: 84.7 - brightYellow: 79.4 - brightBlue: 56.4 - brightMagenta: 54.2 - brightCyan: 78.7 - brightWhite: 107.3 diff --git a/themes/august-material-palenight.yaml b/themes/august-material-palenight.yaml deleted file mode 100644 index 6c7e3b5b..00000000 --- a/themes/august-material-palenight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Material Palenight" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#292D3E" - fg: "#A6ACCD" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 274 - pair: null - contrast: - fg: 53.5 - black: 0 - red: 43 - green: 80.6 - yellow: 75.3 - blue: 52.3 - magenta: 50.1 - cyan: 74.6 - white: 103.3 - brightBlack: 22.8 - brightRed: 43 - brightGreen: 80.6 - brightYellow: 75.3 - brightBlue: 52.3 - brightMagenta: 50.1 - brightCyan: 74.6 - brightWhite: 103.3 diff --git a/themes/august-night-owl-darker.yaml b/themes/august-night-owl-darker.yaml deleted file mode 100644 index 568f6ee8..00000000 --- a/themes/august-night-owl-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Night Owl (Darker)" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#010D16" - fg: "#5F7E97" - black: "#010D16" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ADDB67" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 236 - pair: null - contrast: - fg: 31.9 - black: 0 - red: 40.1 - green: 68 - yellow: 75.7 - blue: 56.7 - magenta: 54.5 - cyan: 60.4 - white: 107.6 - brightBlack: 16.3 - brightRed: 40.1 - brightGreen: 68 - brightYellow: 94.5 - brightBlue: 56.7 - brightMagenta: 54.5 - brightCyan: 74.7 - brightWhite: 107.6 diff --git a/themes/august-night-owl.yaml b/themes/august-night-owl.yaml deleted file mode 100644 index ca17a396..00000000 --- a/themes/august-night-owl.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Night Owl" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#011627" - fg: "#5F7E97" - black: "#011627" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ADDB67" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 244 - pair: null - contrast: - fg: 31.3 - black: 0 - red: 39.4 - green: 67.3 - yellow: 75 - blue: 56 - magenta: 53.8 - cyan: 59.8 - white: 107 - brightBlack: 15.7 - brightRed: 39.4 - brightGreen: 67.3 - brightYellow: 93.8 - brightBlue: 56 - brightMagenta: 53.8 - brightCyan: 74.1 - brightWhite: 107 diff --git a/themes/august-nord-darker.yaml b/themes/august-nord-darker.yaml deleted file mode 100644 index ff9d37c9..00000000 --- a/themes/august-nord-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Nord (Darker)" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#191C22" - fg: "#7B88A1" - black: "#272C36" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#7D7C9B" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 36.8 - black: 0 - red: 32.4 - green: 61.1 - yellow: 75.8 - blue: 48.1 - magenta: 32.6 - cyan: 62.1 - white: 91.8 - brightBlack: 14.8 - brightRed: 32.4 - brightGreen: 61.1 - brightYellow: 75.8 - brightBlue: 48.1 - brightMagenta: 45.9 - brightCyan: 60 - brightWhite: 95.7 diff --git a/themes/august-nord.yaml b/themes/august-nord.yaml deleted file mode 100644 index ed9cdb0b..00000000 --- a/themes/august-nord.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Nord" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#272C36" - fg: "#7B88A1" - black: "#3B4252" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#7D7C9B" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 34.1 - black: 0 - red: 29.8 - green: 58.5 - yellow: 73.2 - blue: 45.4 - magenta: 30 - cyan: 59.5 - white: 89.1 - brightBlack: 12.2 - brightRed: 29.8 - brightGreen: 58.5 - brightYellow: 73.2 - brightBlue: 45.4 - brightMagenta: 43.3 - brightCyan: 57.4 - brightWhite: 93 diff --git a/themes/august-radical-2.yaml b/themes/august-radical-2.yaml deleted file mode 100644 index 14bdc1ec..00000000 --- a/themes/august-radical-2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Radical 2" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#12111F" - fg: "#7C9C9E" - black: "#2E324D" - red: "#F86C8A" - green: "#6BF8EF" - yellow: "#EDF179" - blue: "#B0FDEB" - magenta: "#F899F8" - cyan: "#9D88FA" - white: "#C4F7EB" - brightBlack: "#62466B" - brightRed: "#F33990" - brightGreen: "#6BF8EF" - brightYellow: "#F4F957" - brightBlue: "#6BF8EF" - brightMagenta: "#F73BEE" - brightCyan: "#7D77FF" - brightWhite: "#E4FDF7" -meta: - mode: "dark" - accent: "pink" - hue: 287 - pair: null - contrast: - fg: 45.1 - black: 0 - red: 48 - green: 89.2 - yellow: 93.7 - blue: 96.2 - magenta: 65.2 - cyan: 46.6 - white: 95.2 - brightBlack: 13.7 - brightRed: 38.8 - brightGreen: 89.2 - brightYellow: 98 - brightBlue: 89.2 - brightMagenta: 45 - brightCyan: 38.5 - brightWhite: 102.3 diff --git a/themes/august-radical.yaml b/themes/august-radical.yaml deleted file mode 100644 index 528ef28a..00000000 --- a/themes/august-radical.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "August - Radical" -source: - marketplace_id: "inci-august.august-themes" - version: "2.8.0" - installs: 146457 - rating: 5 - ratings: 8 - author: "inci-august" - repo: "https://github.com/inci-august/august-themes" - url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" -colors: - bg: "#12111F" - fg: "#7C9C9E" - black: "#2E324D" - red: "#F86C8A" - green: "#A8FFEF" - yellow: "#EDF179" - blue: "#B0FDEB" - magenta: "#F899F8" - cyan: "#9D88FA" - white: "#C4F7EB" - brightBlack: "#62466B" - brightRed: "#F33990" - brightGreen: "#6BF8EF" - brightYellow: "#F4F957" - brightBlue: "#6BF8EF" - brightMagenta: "#F33990" - brightCyan: "#7D77FF" - brightWhite: "#E4FDF7" -meta: - mode: "dark" - accent: "red" - hue: 287 - pair: null - contrast: - fg: 45.1 - black: 0 - red: 48 - green: 96.7 - yellow: 93.7 - blue: 96.2 - magenta: 65.2 - cyan: 46.6 - white: 95.2 - brightBlack: 13.7 - brightRed: 38.8 - brightGreen: 89.2 - brightYellow: 98 - brightBlue: 89.2 - brightMagenta: 38.8 - brightCyan: 38.5 - brightWhite: 102.3 diff --git a/themes/aura-dark-soft-text.yaml b/themes/aura-dark-soft-text.yaml deleted file mode 100644 index 22098ab2..00000000 --- a/themes/aura-dark-soft-text.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aura Dark (Soft Text)" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#15141B" - fg: "#BDBDBD" - black: "#15141B" - red: "#C55858" - green: "#54C59F" - yellow: "#C7A06F" - blue: "#8464C6" - magenta: "#54C59F" - cyan: "#8464C6" - white: "#B4B4B4" - brightBlack: "#2D2D2D" - brightRed: "#C7A06F" - brightGreen: "#8464C6" - brightYellow: "#C7A06F" - brightBlue: "#8464C6" - brightMagenta: "#54C59F" - brightCyan: "#54C59F" - brightWhite: "#BDBDBD" -meta: - mode: "dark" - accent: "magenta" - hue: 292 - pair: null - contrast: - fg: 66.1 - black: 0 - red: 31.9 - green: 59.9 - yellow: 53.7 - blue: 29.5 - magenta: 59.9 - cyan: 29.5 - white: 61 - brightBlack: 0 - brightRed: 53.7 - brightGreen: 29.5 - brightYellow: 53.7 - brightBlue: 29.5 - brightMagenta: 59.9 - brightCyan: 59.9 - brightWhite: 66.1 diff --git a/themes/aura-dark.yaml b/themes/aura-dark.yaml deleted file mode 100644 index c5d34264..00000000 --- a/themes/aura-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aura Dark" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#15141B" - fg: "#EDECEE" - black: "#15141B" - red: "#FF6767" - green: "#61FFCA" - yellow: "#FFCA85" - blue: "#A277FF" - magenta: "#61FFCA" - cyan: "#A277FF" - white: "#CDCCCE" - brightBlack: "#2D2D2D" - brightRed: "#FFCA85" - brightGreen: "#A277FF" - brightYellow: "#FFCA85" - brightBlue: "#A277FF" - brightMagenta: "#61FFCA" - brightCyan: "#61FFCA" - brightWhite: "#EDECEE" -meta: - mode: "dark" - accent: "magenta" - hue: 292 - pair: null - contrast: - fg: 94.9 - black: 0 - red: 47.3 - green: 90.6 - yellow: 79.2 - blue: 42.4 - magenta: 90.6 - cyan: 42.4 - white: 75.1 - brightBlack: 0 - brightRed: 79.2 - brightGreen: 42.4 - brightYellow: 79.2 - brightBlue: 42.4 - brightMagenta: 90.6 - brightCyan: 90.6 - brightWhite: 94.9 diff --git a/themes/aura-dracula-spirit-soft.yaml b/themes/aura-dracula-spirit-soft.yaml deleted file mode 100644 index 2c1cb4b1..00000000 --- a/themes/aura-dracula-spirit-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aura Dracula Spirit (Soft)" -source: - marketplace_id: "JoseMurilloc.aura-spirit-dracula" - version: "0.1.10" - installs: 70920 - rating: 5 - ratings: 7 - author: "JoseMurilloc" - repo: "https://github.com/josemurilloc/aura-spirit-dracula" - url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" -colors: - bg: "#191521" - fg: "#EDECEE" - black: "#140E1A" - red: "#FF6767" - green: "#8EFFD9" - yellow: "#FFCA85" - blue: "#F477FF" - magenta: "#61FFCA" - cyan: "#A277FF" - white: "#CDCCCE" - brightBlack: "#2D2D2D" - brightRed: "#FFCA85" - brightGreen: "#A277FF" - brightYellow: "#FFCA85" - brightBlue: "#A277FF" - brightMagenta: "#61FFCA" - brightCyan: "#61FFCA" - brightWhite: "#EDECEE" -meta: - mode: "dark" - accent: "pink" - hue: 300 - pair: null - contrast: - fg: 94.7 - black: 0 - red: 47.1 - green: 93.4 - yellow: 79 - blue: 55.3 - magenta: 90.4 - cyan: 42.1 - white: 74.9 - brightBlack: 0 - brightRed: 79 - brightGreen: 42.1 - brightYellow: 79 - brightBlue: 42.1 - brightMagenta: 90.4 - brightCyan: 90.4 - brightWhite: 94.7 diff --git a/themes/aura-dracula-spirit-synthwave.yaml b/themes/aura-dracula-spirit-synthwave.yaml deleted file mode 100644 index e2bb8a4c..00000000 --- a/themes/aura-dracula-spirit-synthwave.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aura Dracula Spirit (SynthWave)" -source: - marketplace_id: "JoseMurilloc.aura-spirit-dracula" - version: "0.1.10" - installs: 70920 - rating: 5 - ratings: 7 - author: "JoseMurilloc" - repo: "https://github.com/josemurilloc/aura-spirit-dracula" - url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" -colors: - bg: "#262335" - fg: "#EDECEE" - black: "#140E1A" - red: "#FF6767" - green: "#8EFFD9" - yellow: "#FFCA85" - blue: "#F477FF" - magenta: "#61FFCA" - cyan: "#A277FF" - white: "#CDCCCE" - brightBlack: "#2D2D2D" - brightRed: "#FFCA85" - brightGreen: "#A277FF" - brightYellow: "#FFCA85" - brightBlue: "#A277FF" - brightMagenta: "#61FFCA" - brightCyan: "#61FFCA" - brightWhite: "#EDECEE" -meta: - mode: "dark" - accent: "pink" - hue: 292 - pair: null - contrast: - fg: 92.7 - black: 0 - red: 45.2 - green: 91.4 - yellow: 77.1 - blue: 53.3 - magenta: 88.4 - cyan: 40.2 - white: 72.9 - brightBlack: 0 - brightRed: 77.1 - brightGreen: 40.2 - brightYellow: 77.1 - brightBlue: 40.2 - brightMagenta: 88.4 - brightCyan: 88.4 - brightWhite: 92.7 diff --git a/themes/aura-dracula-spirit.yaml b/themes/aura-dracula-spirit.yaml deleted file mode 100644 index cacf948a..00000000 --- a/themes/aura-dracula-spirit.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aura Dracula Spirit" -source: - marketplace_id: "JoseMurilloc.aura-spirit-dracula" - version: "0.1.10" - installs: 70920 - rating: 5 - ratings: 7 - author: "JoseMurilloc" - repo: "https://github.com/josemurilloc/aura-spirit-dracula" - url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" -colors: - bg: "#140E1A" - fg: "#EDECEE" - black: "#140E1A" - red: "#FF6767" - green: "#8EFFD9" - yellow: "#FFCA85" - blue: "#F477FF" - magenta: "#61FFCA" - cyan: "#A277FF" - white: "#CDCCCE" - brightBlack: "#2D2D2D" - brightRed: "#FFCA85" - brightGreen: "#A277FF" - brightYellow: "#FFCA85" - brightBlue: "#A277FF" - brightMagenta: "#61FFCA" - brightCyan: "#61FFCA" - brightWhite: "#EDECEE" -meta: - mode: "dark" - accent: "pink" - hue: 307 - pair: null - contrast: - fg: 95.2 - black: 0 - red: 47.7 - green: 93.9 - yellow: 79.6 - blue: 55.8 - magenta: 90.9 - cyan: 42.7 - white: 75.4 - brightBlack: 0 - brightRed: 79.6 - brightGreen: 42.7 - brightYellow: 79.6 - brightBlue: 42.7 - brightMagenta: 90.9 - brightCyan: 90.9 - brightWhite: 95.2 diff --git a/themes/aura-soft-dark-soft-text.yaml b/themes/aura-soft-dark-soft-text.yaml deleted file mode 100644 index 126fc470..00000000 --- a/themes/aura-soft-dark-soft-text.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aura Soft Dark (Soft Text)" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#21202E" - fg: "#BDBDBD" - black: "#21202E" - red: "#C55858" - green: "#54C59F" - yellow: "#C7A06F" - blue: "#8464C6" - magenta: "#54C59F" - cyan: "#8464C6" - white: "#B4B4B4" - brightBlack: "#444444" - brightRed: "#C7A06F" - brightGreen: "#8464C6" - brightYellow: "#C7A06F" - brightBlue: "#8464C6" - brightMagenta: "#54C59F" - brightCyan: "#54C59F" - brightWhite: "#BDBDBD" -meta: - mode: "dark" - accent: "magenta" - hue: 288 - pair: null - contrast: - fg: 64.5 - black: 0 - red: 30.3 - green: 58.4 - yellow: 52.1 - blue: 28 - magenta: 58.4 - cyan: 28 - white: 59.4 - brightBlack: 7.5 - brightRed: 52.1 - brightGreen: 28 - brightYellow: 52.1 - brightBlue: 28 - brightMagenta: 58.4 - brightCyan: 58.4 - brightWhite: 64.5 diff --git a/themes/aura-soft-dark.yaml b/themes/aura-soft-dark.yaml deleted file mode 100644 index 75e9deaa..00000000 --- a/themes/aura-soft-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Aura Soft Dark" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#21202E" - fg: "#EDECEE" - black: "#21202E" - red: "#FF6767" - green: "#61FFCA" - yellow: "#FFCA85" - blue: "#A277FF" - magenta: "#61FFCA" - cyan: "#A277FF" - white: "#CDCCCE" - brightBlack: "#444444" - brightRed: "#FFCA85" - brightGreen: "#A277FF" - brightYellow: "#FFCA85" - brightBlue: "#A277FF" - brightMagenta: "#61FFCA" - brightCyan: "#61FFCA" - brightWhite: "#EDECEE" -meta: - mode: "dark" - accent: "magenta" - hue: 288 - pair: null - contrast: - fg: 93.4 - black: 0 - red: 45.8 - green: 89.1 - yellow: 77.7 - blue: 40.8 - magenta: 89.1 - cyan: 40.8 - white: 73.5 - brightBlack: 7.5 - brightRed: 77.7 - brightGreen: 40.8 - brightYellow: 77.7 - brightBlue: 40.8 - brightMagenta: 89.1 - brightCyan: 89.1 - brightWhite: 93.4 diff --git a/themes/aurbis-dark.yaml b/themes/aurbis-dark.yaml index c868d014..745b8d5b 100644 --- a/themes/aurbis-dark.yaml +++ b/themes/aurbis-dark.yaml @@ -8,6 +8,7 @@ source: author: "dara" repo: "https://github.com/azuradara/aurbis-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=dara.aurbis-theme" + formats: null colors: bg: "#0D0D0D" fg: "#DDDDDD" diff --git a/themes/aurelconstellation.yaml b/themes/aurelconstellation.yaml index 746e8833..eaa64d64 100644 --- a/themes/aurelconstellation.yaml +++ b/themes/aurelconstellation.yaml @@ -8,6 +8,7 @@ source: author: "Pierminator" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Pierminator.aurelion-constellation" + formats: null colors: bg: "#2B2E4A" fg: "#FFFFFF" diff --git a/themes/aurora-borealis-theme-dark.yaml b/themes/aurora-borealis-theme-dark.yaml index 432c6166..2a334213 100644 --- a/themes/aurora-borealis-theme-dark.yaml +++ b/themes/aurora-borealis-theme-dark.yaml @@ -8,6 +8,7 @@ source: author: "Anton Zolotukhin" repo: "https://github.com/bandantonio/aurora-borealis-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mister-gold.aurora-borealis-theme" + formats: null colors: bg: "#0F042D" fg: "#DEDEDE" diff --git a/themes/aurora-borealis-theme.yaml b/themes/aurora-borealis-theme.yaml index 7fc83276..e9224a8e 100644 --- a/themes/aurora-borealis-theme.yaml +++ b/themes/aurora-borealis-theme.yaml @@ -8,6 +8,7 @@ source: author: "Anton Zolotukhin" repo: "https://github.com/bandantonio/aurora-borealis-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mister-gold.aurora-borealis-theme" + formats: null colors: bg: "#1A1E27" fg: "#DEDEDE" diff --git a/themes/aurora.yaml b/themes/aurora.yaml index 7d8a8d26..93710f9a 100644 --- a/themes/aurora.yaml +++ b/themes/aurora.yaml @@ -1,52 +1,53 @@ name: "Aurora" source: - marketplace_id: "b4v1n4t0r.material-aurora" - version: "0.0.1" - installs: 78 - rating: 4 - ratings: 1 - author: "b4v1n4t0r" - repo: "https://github.com/sjbavier/aurora" - url: "https://marketplace.visualstudio.com/items?itemName=b4v1n4t0r.material-aurora" + marketplace_id: "lusignan.aurora-dark" + version: "1.0.0" + installs: 1070 + rating: 0 + ratings: 0 + author: "Zac de Lusignan" + repo: "https://github.com/lusignan/aurora" + url: "https://marketplace.visualstudio.com/items?itemName=lusignan.aurora-dark" + formats: null colors: - bg: "#302C40" - fg: "#BABED8" + bg: "#282938" + fg: "#A3A7D8" black: "#000000" - red: "#F57484" - green: "#ACEA88" - yellow: "#FFCB6B" - blue: "#71B9ED" - magenta: "#C5A3FF" - cyan: "#88E7CA" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#F57484" - brightGreen: "#ACEA88" - brightYellow: "#FFCB6B" - brightBlue: "#71B9ED" - brightMagenta: "#C5A3FF" - brightCyan: "#88E7CA" - brightWhite: "#FFFFFF" + red: "#F7B7CF" + green: "#AEDBF9" + yellow: "#FFE1A1" + blue: "#A8C4FF" + magenta: "#DCB9FF" + cyan: "#A8C4FF" + white: "#D3DAFF" + brightBlack: "#464B5D" + brightRed: "#F7B7CF" + brightGreen: "#AEDBF9" + brightYellow: "#FFE1A1" + brightBlue: "#A8C4FF" + brightMagenta: "#DCB9FF" + brightCyan: "#A8C4FF" + brightWhite: "#D3DAFF" meta: mode: "dark" - accent: "red" - hue: 293 + accent: "magenta" + hue: 282 pair: null contrast: - fg: 63.3 + fg: 52.6 black: 0 - red: 44.9 - green: 78.9 - yellow: 75.1 - blue: 55.8 - magenta: 56.7 - cyan: 76.5 - white: 103.1 - brightBlack: 22.6 - brightRed: 44.9 - brightGreen: 78.9 - brightYellow: 75.1 - brightBlue: 55.8 - brightMagenta: 56.7 - brightCyan: 76.5 - brightWhite: 103.1 + red: 69.9 + green: 77.3 + yellow: 86.7 + blue: 67 + magenta: 68.9 + cyan: 67 + white: 81.2 + brightBlack: 8.7 + brightRed: 69.9 + brightGreen: 77.3 + brightYellow: 86.7 + brightBlue: 67 + brightMagenta: 68.9 + brightCyan: 67 + brightWhite: 81.2 diff --git a/themes/aurorabloom.yaml b/themes/aurorabloom.yaml index bc368854..675c8233 100644 --- a/themes/aurorabloom.yaml +++ b/themes/aurorabloom.yaml @@ -8,6 +8,7 @@ source: author: "R-404" repo: "https://github.com/Meharab-Islam/Aurorabloom" url: "https://marketplace.visualstudio.com/items?itemName=R-404.aurorabloom" + formats: null colors: bg: "#081B25" fg: "#EEFFFF" diff --git a/themes/aurorain.yaml b/themes/aurorain.yaml index b8280a72..929754b5 100644 --- a/themes/aurorain.yaml +++ b/themes/aurorain.yaml @@ -8,6 +8,7 @@ source: author: "Mostafa-Gholami" repo: "https://github.com/Mostafa229Gh/Aurorain" url: "https://marketplace.visualstudio.com/items?itemName=MostafaGh.aurorain" + formats: null colors: bg: "#131E1C" fg: "#BFE5C7" diff --git a/themes/aurorasynth-dark.yaml b/themes/aurorasynth-dark.yaml index 86487099..65b4654d 100644 --- a/themes/aurorasynth-dark.yaml +++ b/themes/aurorasynth-dark.yaml @@ -8,6 +8,7 @@ source: author: "0xK4GE" repo: "https://github.com/Ayushvishwakarma04/AuroraSynth" url: "https://marketplace.visualstudio.com/items?itemName=0xK4GE.aurorasynth" + formats: null colors: bg: "#353935" fg: "#EAEAEA" diff --git a/themes/aurorasynth-light.yaml b/themes/aurorasynth-light.yaml index 5ac5a61e..790f514d 100644 --- a/themes/aurorasynth-light.yaml +++ b/themes/aurorasynth-light.yaml @@ -8,6 +8,7 @@ source: author: "0xK4GE" repo: "https://github.com/Ayushvishwakarma04/AuroraSynth" url: "https://marketplace.visualstudio.com/items?itemName=0xK4GE.aurorasynth" + formats: null colors: bg: "#FAF6FB" fg: "#B8005A" diff --git a/themes/australian-food-fibre-dark.yaml b/themes/australian-food-fibre-dark.yaml index 77ce6736..795f4559 100644 --- a/themes/australian-food-fibre-dark.yaml +++ b/themes/australian-food-fibre-dark.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.australian-food-fibre-theme" + formats: null colors: bg: "#0E1826" fg: "#E4E8F0" diff --git a/themes/australian-food-fibre-light.yaml b/themes/australian-food-fibre-light.yaml index 27a543b6..e305b666 100644 --- a/themes/australian-food-fibre-light.yaml +++ b/themes/australian-food-fibre-light.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.australian-food-fibre-theme" + formats: null colors: bg: "#FFFFFF" fg: "#111827" diff --git a/themes/autu-dark-theme.yaml b/themes/autu-dark-theme.yaml deleted file mode 100644 index d4229ad0..00000000 --- a/themes/autu-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Autu Dark Theme" -source: - marketplace_id: "zddq.autu-theme" - version: "0.0.1" - installs: 27 - rating: 0 - ratings: 0 - author: "zddq" - repo: "https://github.com/zddq/autu-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zddq.autu-theme" -colors: - bg: "#000000" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 60.4 - black: 9.9 - red: 37.7 - green: 61.4 - yellow: 49.6 - blue: 50.7 - magenta: 40.1 - cyan: 53.5 - white: 84 - brightBlack: 16.5 - brightRed: 47.1 - brightGreen: 77.8 - brightYellow: 62.2 - brightBlue: 64.7 - brightMagenta: 51.3 - brightCyan: 68.8 - brightWhite: 91.7 diff --git a/themes/autumn-fork-contrast.yaml b/themes/autumn-fork-contrast.yaml deleted file mode 100644 index d2af971e..00000000 --- a/themes/autumn-fork-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Autumn - Fork - Contrast" -source: - marketplace_id: "brinklju.jb-autumn" - version: "0.4.0" - installs: 293 - rating: 5 - ratings: 1 - author: "brinklju" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=brinklju.jb-autumn" -colors: - bg: "#171316" - fg: "#FFF8BC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2473C8" - magenta: "#BC3FBC" - cyan: "#11A7CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8DEA" - brightMagenta: "#D670D6" - brightCyan: "#29B7DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 101.1 - black: 0 - red: 27 - green: 53.3 - yellow: 85.9 - blue: 28 - magenta: 30 - cyan: 47.4 - white: 90.3 - brightBlack: 22.3 - brightRed: 38.8 - brightGreen: 63.8 - brightYellow: 95.9 - brightBlue: 39.9 - brightMagenta: 45.6 - brightCyan: 55.2 - brightWhite: 90.3 diff --git a/themes/autumn-fork.yaml b/themes/autumn-fork.yaml deleted file mode 100644 index 68a1378d..00000000 --- a/themes/autumn-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Autumn - Fork" -source: - marketplace_id: "jonothankh.dyslexia-autumn-theme" - version: "0.0.1" - installs: 1550 - rating: 0 - ratings: 0 - author: "Jonothan Hunt" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=jonothankh.dyslexia-autumn-theme" -colors: - bg: "#1D0F0F" - fg: "#A08060" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 20 - pair: null - contrast: - fg: 36.9 - black: 0 - red: 27 - green: 53.3 - yellow: 86 - blue: 27.8 - magenta: 30.1 - cyan: 47.9 - white: 90.4 - brightBlack: 22.4 - brightRed: 38.9 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.3 - brightMagenta: 45.7 - brightCyan: 55.7 - brightWhite: 90.4 diff --git a/themes/autumn-highlighter-syntax.yaml b/themes/autumn-highlighter-syntax.yaml index 27975d81..d05accc3 100644 --- a/themes/autumn-highlighter-syntax.yaml +++ b/themes/autumn-highlighter-syntax.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "undefynd.vscode-autumn-highlighter-syntax" version: "0.0.1" installs: 264 + rating: 0 + ratings: 0 author: "undefynd" repo: "https://github.com/undefynd/vscode-autumn-highlighter-syntax" url: "https://marketplace.visualstudio.com/items?itemName=undefynd.vscode-autumn-highlighter-syntax" + formats: null colors: bg: "#1D232F" fg: "#A8B5D1" diff --git a/themes/autumn.yaml b/themes/autumn.yaml index b013a962..626f24b0 100644 --- a/themes/autumn.yaml +++ b/themes/autumn.yaml @@ -1,52 +1,53 @@ name: "Autumn" source: - marketplace_id: "den-swe.autumn-theme-light" - version: "1.6.0" - installs: 123 - rating: 0 - ratings: 0 - author: "Denniz Ege" - repo: "https://github.com/den-swe/autumn-light-theme" - url: "https://marketplace.visualstudio.com/items?itemName=den-swe.autumn-theme-light" + marketplace_id: "dakizu.autumn" + version: "1.1.1" + installs: 2047 + rating: 5 + ratings: 1 + author: "dakizu" + repo: "https://github.com/dakizu/Autumn" + url: "https://marketplace.visualstudio.com/items?itemName=dakizu.autumn" + formats: null colors: - bg: "#FFFEFD" - fg: "#624234" + bg: "#251414" + fg: "#A08060" black: "#000000" red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#454545" - brightBlack: "#474747" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#C7CD00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#686868" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: - mode: "light" + mode: "dark" accent: "pink" - hue: null + hue: 20 pair: null contrast: - fg: 89.9 - black: 105.5 - red: 73.5 - green: 48.7 - yellow: 57.4 - blue: 85.5 - magenta: 74.1 - cyan: 60.1 - white: 91.7 - brightBlack: 91 - brightRed: 73.5 - brightGreen: 40.4 - brightYellow: 30.5 - brightBlue: 85.5 - brightMagenta: 74.1 - brightCyan: 60.1 - brightWhite: 77.4 + fg: 36.4 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.1 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/awesome-dark.yaml b/themes/awesome-dark.yaml index e385513d..ec2b4cec 100644 --- a/themes/awesome-dark.yaml +++ b/themes/awesome-dark.yaml @@ -8,6 +8,7 @@ source: author: "iSSam Qa" repo: "https://github.com/iSSamQa/vscode-awesome-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=iSSamQa.awesome-dark-theme" + formats: null colors: bg: "#0E1112" fg: "#D4D4D4" diff --git a/themes/awesome-theme.yaml b/themes/awesome-theme.yaml index 1e47e41b..08ca6b81 100644 --- a/themes/awesome-theme.yaml +++ b/themes/awesome-theme.yaml @@ -8,6 +8,7 @@ source: author: "AshishK" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ast2kg.awesome-theme" + formats: null colors: bg: "#161930" fg: "#E8E1E1" diff --git a/themes/awesome-vscode-dark.yaml b/themes/awesome-vscode-dark.yaml index bfb2707e..49255665 100644 --- a/themes/awesome-vscode-dark.yaml +++ b/themes/awesome-vscode-dark.yaml @@ -8,6 +8,7 @@ source: author: "Satyam Tripathi6212" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SatyamTripathi-codehouse.awesome-vscode-dark" + formats: null colors: bg: "#2A0E0E" fg: "#27C438" diff --git a/themes/awork-dark.yaml b/themes/awork-dark.yaml deleted file mode 100644 index d473a494..00000000 --- a/themes/awork-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Awork Dark" -source: - marketplace_id: "sils.awork-dark" - version: "0.0.9" - installs: 22 - rating: 0 - ratings: 0 - author: "Sil's" - repo: "https://github.com/silvandiepen/awork-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sils.awork-dark" -colors: - bg: "#1A1C28" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 277 - pair: null - contrast: - fg: 78.8 - black: 0 - red: 26 - green: 52.3 - yellow: 85 - blue: 26.8 - magenta: 29.1 - cyan: 46.9 - white: 89.4 - brightBlack: 21.4 - brightRed: 37.9 - brightGreen: 62.9 - brightYellow: 95 - brightBlue: 39.3 - brightMagenta: 44.7 - brightCyan: 54.7 - brightWhite: 89.4 diff --git a/themes/axiomatic-dark.yaml b/themes/axiomatic-dark.yaml index 6997ba48..e19b8e3d 100644 --- a/themes/axiomatic-dark.yaml +++ b/themes/axiomatic-dark.yaml @@ -8,6 +8,7 @@ source: author: "xcuzalex" repo: "https://github.com/xcuzalex/axiomatic-theme" url: "https://marketplace.visualstudio.com/items?itemName=xcuzalex.axiomatic" + formats: null colors: bg: "#282A36" fg: "#F8F8F2" diff --git a/themes/axiomatic-light.yaml b/themes/axiomatic-light.yaml index ee631139..05c97393 100644 --- a/themes/axiomatic-light.yaml +++ b/themes/axiomatic-light.yaml @@ -8,6 +8,7 @@ source: author: "xcuzalex" repo: "https://github.com/xcuzalex/axiomatic-theme" url: "https://marketplace.visualstudio.com/items?itemName=xcuzalex.axiomatic" + formats: null colors: bg: "#FAFAFA" fg: "#383A42" diff --git a/themes/axis-ultra-dark.yaml b/themes/axis-ultra-dark.yaml index 8c156394..5c514600 100644 --- a/themes/axis-ultra-dark.yaml +++ b/themes/axis-ultra-dark.yaml @@ -8,6 +8,7 @@ source: author: "Ignacio Utreras Urrutia" repo: "https://github.com/utreras/axis-ultra-dark" url: "https://marketplace.visualstudio.com/items?itemName=utreras.axis-ultra-dark" + formats: null colors: bg: "#0C0D0D" fg: "#E1E1E1" diff --git a/themes/aya-dark.yaml b/themes/aya-dark.yaml index 2209824a..cad4004a 100644 --- a/themes/aya-dark.yaml +++ b/themes/aya-dark.yaml @@ -8,6 +8,7 @@ source: author: "vincent-the-gamer" repo: "https://github.com/Vincent-the-gamer/vscode-theme-aya" url: "https://marketplace.visualstudio.com/items?itemName=vincent-the-gamer.aya" + formats: null colors: bg: "#E7F5D1" fg: "#393A34" diff --git a/themes/aya-light.yaml b/themes/aya-light.yaml index ec9f5439..a79684b6 100644 --- a/themes/aya-light.yaml +++ b/themes/aya-light.yaml @@ -8,6 +8,7 @@ source: author: "vincent-the-gamer" repo: "https://github.com/Vincent-the-gamer/vscode-theme-aya" url: "https://marketplace.visualstudio.com/items?itemName=vincent-the-gamer.aya" + formats: null colors: bg: "#E3FFE5" fg: "#393A34" diff --git a/themes/ayame.yaml b/themes/ayame.yaml index 391e7c5b..ba3a2349 100644 --- a/themes/ayame.yaml +++ b/themes/ayame.yaml @@ -8,6 +8,7 @@ source: author: "Nurdoidz" repo: "https://github.com/AyameTheme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=Nurdoidz.ayame" + formats: null colors: bg: "#130F1E" fg: "#CBBADE" diff --git a/themes/ayanokoji.yaml b/themes/ayanokoji.yaml index 98b2f343..c3f54488 100644 --- a/themes/ayanokoji.yaml +++ b/themes/ayanokoji.yaml @@ -8,6 +8,7 @@ source: author: "Pratik1107" repo: "https://github.com/yourusername/ayanokoji-theme" url: "https://marketplace.visualstudio.com/items?itemName=Pratik1107.ayanokoji-theme" + formats: null colors: bg: "#282A36" fg: "#F8F8F2" diff --git a/themes/aylin.yaml b/themes/aylin.yaml index ec9546f1..eae41917 100644 --- a/themes/aylin.yaml +++ b/themes/aylin.yaml @@ -8,6 +8,7 @@ source: author: "Ahmed Abdulrahman" repo: "https://github.com/AhmedAbdulrahman/aylin-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=AhmedAbdulrahman.aylin" + formats: null colors: bg: "#191F2B" fg: "#CBCCC6" diff --git a/themes/ayu-darkvenom-transparent-borderless.yaml b/themes/ayu-darkvenom-transparent-borderless.yaml deleted file mode 100644 index 17bf3721..00000000 --- a/themes/ayu-darkvenom-transparent-borderless.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ayu Darkvenom Transparent - borderless" -source: - marketplace_id: "SHipServer.vscode-transparent-themes-collection" - version: "0.0.2" - installs: 2853 - rating: 0 - ratings: 0 - author: "ReFleXzZ" - repo: "https://github.com/ReFleXzZ/transparent-themes-collection" - url: "https://marketplace.visualstudio.com/items?itemName=SHipServer.vscode-transparent-themes-collection" -colors: - bg: "#0B0E14" - fg: "#BFBDB6" - black: "#1E232B" - red: "#EA6C73" - green: "#7FD962" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#CDA1FA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAD94C" - brightYellow: "#FFB454" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 264 - pair: null - contrast: - fg: 66.5 - black: 0 - red: 44.7 - green: 70.7 - yellow: 67.3 - blue: 61.3 - magenta: 61.3 - cyan: 78.6 - white: 72.4 - brightBlack: 23.6 - brightRed: 47.3 - brightGreen: 74 - brightYellow: 70.3 - brightBlue: 64 - brightMagenta: 64.1 - brightCyan: 81.6 - brightWhite: 107.6 diff --git a/themes/ayu-enhanced.yaml b/themes/ayu-enhanced.yaml index d3652fce..e3cdade9 100644 --- a/themes/ayu-enhanced.yaml +++ b/themes/ayu-enhanced.yaml @@ -8,6 +8,7 @@ source: author: "Jonaqhan" repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" + formats: null colors: bg: "#1F2430" fg: "#CCCAC2" diff --git a/themes/ayu-one-dark-pro-dark-bordered.yaml b/themes/ayu-one-dark-pro-dark-bordered.yaml deleted file mode 100644 index ff4652d5..00000000 --- a/themes/ayu-one-dark-pro-dark-bordered.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ayu One Dark Pro | Dark Bordered" -source: - marketplace_id: "smeagolem.ayu-one-dark-pro" - version: "1.7.2" - installs: 73628 - rating: 0 - ratings: 0 - author: "smeagolem" - repo: "https://github.com/smeagolem/ayu-one-dark-pro" - url: "https://marketplace.visualstudio.com/items?itemName=smeagolem.ayu-one-dark-pro" -colors: - bg: "#0D1016" - fg: "#B3B1AD" - black: "#01060E" - red: "#EA6C73" - green: "#91B362" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#FAE994" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#C2D94C" - brightYellow: "#FFB454" - brightBlue: "#59C2FF" - brightMagenta: "#FFEE99" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 264 - pair: null - contrast: - fg: 59.7 - black: 0 - red: 44.6 - green: 54.8 - yellow: 67.2 - blue: 61.2 - magenta: 92.6 - cyan: 78.4 - white: 72.3 - brightBlack: 23.5 - brightRed: 47.2 - brightGreen: 76.5 - brightYellow: 70.1 - brightBlue: 63.9 - brightMagenta: 95.8 - brightCyan: 81.4 - brightWhite: 107.4 diff --git a/themes/ayu-one-dark-pro-mirage-bordered.yaml b/themes/ayu-one-dark-pro-mirage-bordered.yaml deleted file mode 100644 index 9927b48f..00000000 --- a/themes/ayu-one-dark-pro-mirage-bordered.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ayu One Dark Pro | Mirage Bordered" -source: - marketplace_id: "smeagolem.ayu-one-dark-pro" - version: "1.7.2" - installs: 73628 - rating: 0 - ratings: 0 - author: "smeagolem" - repo: "https://github.com/smeagolem/ayu-one-dark-pro" - url: "https://marketplace.visualstudio.com/items?itemName=smeagolem.ayu-one-dark-pro" -colors: - bg: "#232834" - fg: "#CBCCC6" - black: "#191E2A" - red: "#ED8274" - green: "#A6CC70" - yellow: "#FAD07B" - blue: "#6DCBFA" - magenta: "#CFBAFA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F28779" - brightGreen: "#BAE67E" - brightYellow: "#FFD580" - brightBlue: "#73D0FF" - brightMagenta: "#D4BFFF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 267 - pair: null - contrast: - fg: 71.8 - black: 0 - red: 47.9 - green: 65 - yellow: 78 - blue: 65.5 - magenta: 67.6 - cyan: 75.4 - white: 69.2 - brightBlack: 20.4 - brightRed: 50.4 - brightGreen: 79.5 - brightYellow: 81.1 - brightBlue: 68.4 - brightMagenta: 70.5 - brightCyan: 78.4 - brightWhite: 104.4 diff --git a/themes/ayu-one-dark-pro-mirage.yaml b/themes/ayu-one-dark-pro-mirage.yaml deleted file mode 100644 index 87db8407..00000000 --- a/themes/ayu-one-dark-pro-mirage.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ayu One Dark Pro | Mirage" -source: - marketplace_id: "smeagolem.ayu-one-dark-pro" - version: "1.7.2" - installs: 73628 - rating: 0 - ratings: 0 - author: "smeagolem" - repo: "https://github.com/smeagolem/ayu-one-dark-pro" - url: "https://marketplace.visualstudio.com/items?itemName=smeagolem.ayu-one-dark-pro" -colors: - bg: "#1F2430" - fg: "#CBCCC6" - black: "#191E2A" - red: "#ED8274" - green: "#A6CC70" - yellow: "#FAD07B" - blue: "#6DCBFA" - magenta: "#CFBAFA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F28779" - brightGreen: "#BAE67E" - brightYellow: "#FFD580" - brightBlue: "#73D0FF" - brightMagenta: "#D4BFFF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 267 - pair: null - contrast: - fg: 72.5 - black: 0 - red: 48.6 - green: 65.7 - yellow: 78.7 - blue: 66.2 - magenta: 68.3 - cyan: 76.1 - white: 69.9 - brightBlack: 21.1 - brightRed: 51.1 - brightGreen: 80.2 - brightYellow: 81.8 - brightBlue: 69.1 - brightMagenta: 71.2 - brightCyan: 79.1 - brightWhite: 105.1 diff --git a/themes/ayu-owl.yaml b/themes/ayu-owl.yaml index a9b990e6..f1d5b8aa 100644 --- a/themes/ayu-owl.yaml +++ b/themes/ayu-owl.yaml @@ -1,13 +1,14 @@ -name: "ayu-owl" +name: "Ayu Owl" source: marketplace_id: "dermohamad.ayu-owl" version: "0.5.0" - installs: 17994 + installs: 17997 rating: 5 ratings: 2 author: "dermohamad" repo: "https://github.com/mo-develop/ayu-owl" url: "https://marketplace.visualstudio.com/items?itemName=dermohamad.ayu-owl" + formats: null colors: bg: "#011627" fg: "#CBCCC6" diff --git a/themes/ayudark.yaml b/themes/ayudark.yaml deleted file mode 100644 index 3febb22c..00000000 --- a/themes/ayudark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "AyuDark" -source: - marketplace_id: "Avetis.codeme-theme" - version: "0.1.1" - installs: 8080 - rating: 0 - ratings: 0 - author: "Avetis" - repo: "https://github.com/AvetisDN/codeme-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" -colors: - bg: "#0F1319" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 258 - pair: null - contrast: - fg: 79.9 - black: 0 - red: 27.1 - green: 53.4 - yellow: 86 - blue: 27.8 - magenta: 30.1 - cyan: 47.9 - white: 90.4 - brightBlack: 22.4 - brightRed: 38.9 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.4 - brightMagenta: 45.7 - brightCyan: 55.8 - brightWhite: 90.4 diff --git a/themes/ayuloco-dark-bordered.yaml b/themes/ayuloco-dark-bordered.yaml deleted file mode 100644 index dd31c6fd..00000000 --- a/themes/ayuloco-dark-bordered.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ayuloco Dark Bordered" -source: - marketplace_id: "dpaulos6.ayuloco-theme" - version: "2.0.3" - installs: 1465 - rating: 5 - ratings: 1 - author: "dpaulos6" - repo: "https://github.com/dpaulos6/ayuloco-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dpaulos6.ayuloco-theme" -colors: - bg: "#0D1017" - fg: "#BFBDB6" - black: "#1E232B" - red: "#EA6C73" - green: "#7FD962" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#CDA1FA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAD94C" - brightYellow: "#FFB454" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 267 - pair: null - contrast: - fg: 66.4 - black: 0 - red: 44.6 - green: 70.6 - yellow: 67.1 - blue: 61.2 - magenta: 61.2 - cyan: 78.4 - white: 72.3 - brightBlack: 23.5 - brightRed: 47.2 - brightGreen: 73.9 - brightYellow: 70.1 - brightBlue: 63.9 - brightMagenta: 64 - brightCyan: 81.4 - brightWhite: 107.4 diff --git a/themes/ayuloco-mirage-bordered.yaml b/themes/ayuloco-mirage-bordered.yaml deleted file mode 100644 index dc7e64d5..00000000 --- a/themes/ayuloco-mirage-bordered.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ayuloco Mirage Bordered" -source: - marketplace_id: "dpaulos6.ayuloco-theme" - version: "2.0.3" - installs: 1465 - rating: 5 - ratings: 1 - author: "dpaulos6" - repo: "https://github.com/dpaulos6/ayuloco-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dpaulos6.ayuloco-theme" -colors: - bg: "#242936" - fg: "#CCCAC2" - black: "#171B24" - red: "#ED8274" - green: "#87D96C" - yellow: "#FACC6E" - blue: "#6DCBFA" - magenta: "#DABAFA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F28779" - brightGreen: "#D5FF80" - brightYellow: "#FFD173" - brightBlue: "#73D0FF" - brightMagenta: "#DFBFFF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 268 - pair: null - contrast: - fg: 70.7 - black: 0 - red: 47.7 - green: 68.1 - yellow: 75.9 - blue: 65.3 - magenta: 68.9 - cyan: 75.2 - white: 69 - brightBlack: 20.2 - brightRed: 50.2 - brightGreen: 94.6 - brightYellow: 78.9 - brightBlue: 68.2 - brightMagenta: 71.9 - brightCyan: 78.2 - brightWhite: 104.2 diff --git a/themes/ayuloco-mirage.yaml b/themes/ayuloco-mirage.yaml deleted file mode 100644 index f3e9880b..00000000 --- a/themes/ayuloco-mirage.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ayuloco Mirage" -source: - marketplace_id: "dpaulos6.ayuloco-theme" - version: "2.0.3" - installs: 1465 - rating: 5 - ratings: 1 - author: "dpaulos6" - repo: "https://github.com/dpaulos6/ayuloco-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dpaulos6.ayuloco-theme" -colors: - bg: "#1F2430" - fg: "#CCCAC2" - black: "#171B24" - red: "#ED8274" - green: "#87D96C" - yellow: "#FACC6E" - blue: "#6DCBFA" - magenta: "#DABAFA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F28779" - brightGreen: "#D5FF80" - brightYellow: "#FFD173" - brightBlue: "#73D0FF" - brightMagenta: "#DFBFFF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 267 - pair: null - contrast: - fg: 71.6 - black: 0 - red: 48.6 - green: 69 - yellow: 76.8 - blue: 66.2 - magenta: 69.8 - cyan: 76.1 - white: 69.9 - brightBlack: 21.1 - brightRed: 51.1 - brightGreen: 95.5 - brightYellow: 79.8 - brightBlue: 69.1 - brightMagenta: 72.8 - brightCyan: 79.1 - brightWhite: 105.1 diff --git a/themes/ayutokyo-color-theme.yaml b/themes/ayutokyo-color-theme.yaml deleted file mode 100644 index 340b856b..00000000 --- a/themes/ayutokyo-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "AyuTokyo-color-theme" -source: - marketplace_id: "LudoLoops.ayutokyo" - version: "0.2.1" - installs: 21449 - rating: 5 - ratings: 2 - author: "LudoLoops" - repo: "https://github.com/neuroloops/ayutokyo" - url: "https://marketplace.visualstudio.com/items?itemName=LudoLoops.ayutokyo" -colors: - bg: "#0D1017" - fg: "#BFBDB6" - black: "#11151C" - red: "#EA6C73" - green: "#00FFAA" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#CDA1FA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAD94C" - brightYellow: "#FFB454" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 267 - pair: null - contrast: - fg: 66.4 - black: 0 - red: 44.6 - green: 88.2 - yellow: 67.1 - blue: 61.2 - magenta: 61.2 - cyan: 78.4 - white: 72.3 - brightBlack: 23.5 - brightRed: 47.2 - brightGreen: 73.9 - brightYellow: 70.1 - brightBlue: 63.9 - brightMagenta: 64 - brightCyan: 81.4 - brightWhite: 107.4 diff --git a/themes/ayyour.yaml b/themes/ayyour.yaml index 2fe0e579..f638fb39 100644 --- a/themes/ayyour.yaml +++ b/themes/ayyour.yaml @@ -8,6 +8,7 @@ source: author: "akil-s" repo: "https://github.com/Salah-Akil/ayyour-theme" url: "https://marketplace.visualstudio.com/items?itemName=akil-s.ayyour" + formats: null colors: bg: "#EAE7E1" fg: "#323435" diff --git a/themes/az0ox-theme-shadesofblue.yaml b/themes/az0ox-theme-shadesofblue.yaml deleted file mode 100644 index 3a8cf638..00000000 --- a/themes/az0ox-theme-shadesofblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "az0ox.theme-shadesOfBlue" -source: - marketplace_id: "NathanEcht.az0ox-theme-ShadesOfBlue" - version: "0.0.2" - installs: 143 - rating: 0 - ratings: 0 - author: "Nathan_Echt" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=NathanEcht.az0ox-theme-ShadesOfBlue" -colors: - bg: "#2B2A41" - fg: "#D9B23C" - black: "#000000" - red: "#CB2D2D" - green: "#2CFF00" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#FF00FF" - cyan: "#00CDFF" - white: "#CBC4FF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#39D123" - brightYellow: "#D5D528" - brightBlue: "#3B8EEA" - brightMagenta: "#FF71FF" - brightCyan: "#22B5D9" - brightWhite: "#6371BC" -meta: - mode: "dark" - accent: "pink" - hue: 286 - pair: null - contrast: - fg: 58.9 - black: 0 - red: 22.5 - green: 82.4 - yellow: 82.3 - blue: 24.1 - magenta: 41.9 - cyan: 63.3 - white: 70.5 - brightBlack: 18.7 - brightRed: 35.2 - brightGreen: 59 - brightYellow: 72.9 - brightBlue: 36.7 - brightMagenta: 52.8 - brightCyan: 50.6 - brightWhite: 25.9 diff --git a/themes/azathoth.yaml b/themes/azathoth.yaml index 5b296815..d0d6c75e 100644 --- a/themes/azathoth.yaml +++ b/themes/azathoth.yaml @@ -8,6 +8,7 @@ source: author: "chocolate_moles" repo: null url: "https://marketplace.visualstudio.com/items?itemName=chocolatemoles.theme-azathoth-vscode" + formats: null colors: bg: "#424552" fg: "#CFE8EB" diff --git a/themes/azeny-cutimaru.yaml b/themes/azeny-cutimaru.yaml index 1a7eb330..790e340a 100644 --- a/themes/azeny-cutimaru.yaml +++ b/themes/azeny-cutimaru.yaml @@ -8,6 +8,7 @@ source: author: "Azeny" repo: "https://github.com/joaopedroaats/azeny-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Azeny.azeny" + formats: null colors: bg: "#24283B" fg: "#B1B8DA" diff --git a/themes/azeny-inveny.yaml b/themes/azeny-inveny.yaml index 7b61b25f..99abbedc 100644 --- a/themes/azeny-inveny.yaml +++ b/themes/azeny-inveny.yaml @@ -8,6 +8,7 @@ source: author: "Azeny" repo: "https://github.com/joaopedroaats/azeny-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Azeny.azeny" + formats: null colors: bg: "#21222C" fg: "#FFFFFF" diff --git a/themes/azeny-okano.yaml b/themes/azeny-okano.yaml index fcfdaeb6..5a43265f 100644 --- a/themes/azeny-okano.yaml +++ b/themes/azeny-okano.yaml @@ -8,6 +8,7 @@ source: author: "Azeny" repo: "https://github.com/joaopedroaats/azeny-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Azeny.azeny" + formats: null colors: bg: "#212537" fg: "#FFFFFF" diff --git a/themes/azeny.yaml b/themes/azeny.yaml index c247ee3d..93e96d79 100644 --- a/themes/azeny.yaml +++ b/themes/azeny.yaml @@ -8,6 +8,7 @@ source: author: "Azeny" repo: "https://github.com/joaopedroaats/azeny-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Azeny.azeny" + formats: null colors: bg: "#21222C" fg: "#FFFFFF" diff --git a/themes/azerite-dark-soft.yaml b/themes/azerite-dark-soft.yaml index 6833980b..a2170617 100644 --- a/themes/azerite-dark-soft.yaml +++ b/themes/azerite-dark-soft.yaml @@ -8,6 +8,7 @@ source: author: "wistb" repo: null url: "https://marketplace.visualstudio.com/items?itemName=wistb.azerite-dark" + formats: null colors: bg: "#171B24" fg: "#AEBBEA" diff --git a/themes/azerite-dark.yaml b/themes/azerite-dark.yaml index c2b0d8a0..d9f537d2 100644 --- a/themes/azerite-dark.yaml +++ b/themes/azerite-dark.yaml @@ -8,6 +8,7 @@ source: author: "wistb" repo: null url: "https://marketplace.visualstudio.com/items?itemName=wistb.azerite-dark" + formats: null colors: bg: "#0B0D14" fg: "#AEBBEA" diff --git a/themes/azul.yaml b/themes/azul.yaml index da2d0acb..ff58f608 100644 --- a/themes/azul.yaml +++ b/themes/azul.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/Arcobow" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.arcobow" + formats: null colors: bg: "#31211D" fg: "#DDDDDD" diff --git a/themes/azure-contrast.yaml b/themes/azure-contrast.yaml deleted file mode 100644 index ed8d9d2a..00000000 --- a/themes/azure-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "azure-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#040507" - fg: "#FFFFFF" - black: "#0D1117" - red: "#BA0E2E" - green: "#6AB0A3" - yellow: "#52708B" - blue: "#508AAA" - magenta: "#508AAA" - cyan: "#6AB0A3" - white: "#FFFFFF" - brightBlack: "#293348" - brightRed: "#F03E5F" - brightGreen: "#ADD3CC" - brightYellow: "#89A3BA" - brightBlue: "#94B8CC" - brightMagenta: "#94B8CC" - brightCyan: "#ADD3CC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 21.5 - green: 52.7 - yellow: 26 - blue: 36.4 - magenta: 36.4 - cyan: 52.7 - white: 107.9 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 75.2 - brightYellow: 50.8 - brightBlue: 61.1 - brightMagenta: 61.1 - brightCyan: 75.2 - brightWhite: 107.9 diff --git a/themes/azure-dark-teal.yaml b/themes/azure-dark-teal.yaml deleted file mode 100644 index ef11c724..00000000 --- a/themes/azure-dark-teal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Azure-Dark-Teal" -source: - marketplace_id: "Diamo-Bachar.azure-teal" - version: "0.0.1" - installs: 1062 - rating: 0 - ratings: 0 - author: "Diamo Bachar" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Diamo-Bachar.azure-teal" -colors: - bg: "#3B3B3B" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 99.7 - black: 8 - red: 19.5 - green: 45.8 - yellow: 78.4 - blue: 20.2 - magenta: 22.6 - cyan: 40.4 - white: 82.8 - brightBlack: 14.8 - brightRed: 31.4 - brightGreen: 56.3 - brightYellow: 88.4 - brightBlue: 32.8 - brightMagenta: 38.2 - brightCyan: 48.2 - brightWhite: 82.8 diff --git a/themes/azure-iris-dark.yaml b/themes/azure-iris-dark.yaml index a1bb5db0..a4d460d5 100644 --- a/themes/azure-iris-dark.yaml +++ b/themes/azure-iris-dark.yaml @@ -8,6 +8,7 @@ source: author: "Lielisk" repo: "https://github.com/your-username/azure-iris-theme" url: "https://marketplace.visualstudio.com/items?itemName=Codetown-3.azure-iris-theme" + formats: null colors: bg: "#0F1419" fg: "#E0E0E0" diff --git a/themes/azure-iris-light.yaml b/themes/azure-iris-light.yaml index 463b8194..85ac98cb 100644 --- a/themes/azure-iris-light.yaml +++ b/themes/azure-iris-light.yaml @@ -8,6 +8,7 @@ source: author: "Lielisk" repo: "https://github.com/your-username/azure-iris-theme" url: "https://marketplace.visualstudio.com/items?itemName=Codetown-3.azure-iris-theme" + formats: null colors: bg: "#FFFFFF" fg: "#424242" diff --git a/themes/azure-light.yaml b/themes/azure-light.yaml deleted file mode 100644 index 641a084b..00000000 --- a/themes/azure-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "azure-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#6AB0A3" - yellow: "#8291AD" - blue: "#508AAA" - magenta: "#508AAA" - cyan: "#6AB0A3" - white: "#515151" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#ADD3CC" - brightYellow: "#C0C7D5" - brightBlue: "#94B8CC" - brightMagenta: "#94B8CC" - brightCyan: "#ADD3CC" - brightWhite: "#777777" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 80.3 - green: 49.2 - yellow: 59 - blue: 65.2 - magenta: 65.2 - cyan: 49.2 - white: 87.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 27.7 - brightYellow: 30.3 - brightBlue: 41.1 - brightMagenta: 41.1 - brightCyan: 27.7 - brightWhite: 71.1 diff --git a/themes/azure-noir.yaml b/themes/azure-noir.yaml deleted file mode 100644 index 37d97436..00000000 --- a/themes/azure-noir.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Azure Noir" -source: - marketplace_id: "kgnio.sprinklepack" - version: "0.2.5" - installs: 81 - rating: 5 - ratings: 2 - author: "Kagan Mamak" - repo: "https://github.com/kgnio/sprinklepack" - url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" -colors: - bg: "#0A0F1F" - fg: "#DCEFFF" - black: "#101423" - red: "#FF6E6E" - green: "#B4FF97" - yellow: "#FFD56E" - blue: "#78DCE8" - magenta: "#BE8FFF" - cyan: "#5FEFC4" - white: "#E2F3F1" - brightBlack: "#4F5B6E" - brightRed: "#FF7A7A" - brightGreen: "#C4FFB4" - brightYellow: "#FFEB9C" - brightBlue: "#A5CCFF" - brightMagenta: "#D4A8FF" - brightCyan: "#8FFFF4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 269 - pair: null - contrast: - fg: 95.3 - black: 0 - red: 49.4 - green: 94.8 - yellow: 83.7 - blue: 76 - magenta: 53.5 - cyan: 82.4 - white: 97.2 - brightBlack: 17.7 - brightRed: 52.6 - brightGreen: 97.2 - brightYellow: 94.4 - brightBlue: 73.5 - brightMagenta: 64.9 - brightCyan: 95.2 - brightWhite: 107.4 diff --git a/themes/azure.yaml b/themes/azure.yaml deleted file mode 100644 index 94237b30..00000000 --- a/themes/azure.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "azure" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#181D26" - fg: "#FFFFFF" - black: "#222936" - red: "#BA0E2E" - green: "#6AB0A3" - yellow: "#52708B" - blue: "#508AAA" - magenta: "#508AAA" - cyan: "#6AB0A3" - white: "#FFFFFF" - brightBlack: "#3F4D64" - brightRed: "#F03E5F" - brightGreen: "#ADD3CC" - brightYellow: "#89A3BA" - brightBlue: "#94B8CC" - brightMagenta: "#94B8CC" - brightCyan: "#ADD3CC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 262 - pair: null - contrast: - fg: 106.2 - black: 0 - red: 19.8 - green: 51 - yellow: 24.4 - blue: 34.8 - magenta: 34.8 - cyan: 51 - white: 106.2 - brightBlack: 11.2 - brightRed: 36.1 - brightGreen: 73.5 - brightYellow: 49.1 - brightBlue: 59.4 - brightMagenta: 59.4 - brightCyan: 73.5 - brightWhite: 106.2 diff --git a/themes/b-nt.yaml b/themes/b-nt.yaml deleted file mode 100644 index e8e52a8f..00000000 --- a/themes/b-nt.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "B'nT" -source: - marketplace_id: "GD-alt.black--n-turquoise" - version: "1.0.0" - installs: 1950 - rating: 0 - ratings: 0 - author: "GD-alt" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=GD-alt.black--n-turquoise" -colors: - bg: "#000000" - fg: "#D1D1D1" - black: "#262626" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.7 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/b150-dark.yaml b/themes/b150-dark.yaml index c1d8d0c5..f3dddba5 100644 --- a/themes/b150-dark.yaml +++ b/themes/b150-dark.yaml @@ -8,6 +8,7 @@ source: author: "B150" repo: "https://github.com/b150/b150-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=B150.b150-theme" + formats: null colors: bg: "#121212" fg: "#E0E0E0" diff --git a/themes/b150-light.yaml b/themes/b150-light.yaml index 15cbb569..93b48021 100644 --- a/themes/b150-light.yaml +++ b/themes/b150-light.yaml @@ -8,6 +8,7 @@ source: author: "B150" repo: "https://github.com/b150/b150-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=B150.b150-theme" + formats: null colors: bg: "#F2EFE9" fg: "#1A1A1A" diff --git a/themes/b2b-edge-light.yaml b/themes/b2b-edge-light.yaml index 74e5780c..32c9dc88 100644 --- a/themes/b2b-edge-light.yaml +++ b/themes/b2b-edge-light.yaml @@ -8,6 +8,7 @@ source: author: "B2B Edge" repo: "https://github.com/b2bedge/b2bedge-theme-light" url: "https://marketplace.visualstudio.com/items?itemName=B2BEdge.b2b-edge-light" + formats: null colors: bg: "#EBEBEB" fg: "#000000" diff --git a/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml index 15f2558e..a4a7b18a 100644 --- a/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml +++ b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml @@ -8,6 +8,7 @@ source: author: "Shahab Khalvati" repo: "https://github.com/shahabkhalvati/b9f36bcf530f3d6b5c9cf39d2e260a99" url: "https://marketplace.visualstudio.com/items?itemName=shahabkhalvati.b9f36bcf530f3d6b5c9cf39d2e260a99" + formats: null colors: bg: "#191C24" fg: "#A9A9A9" diff --git a/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml index 95d46209..080bfb22 100644 --- a/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml +++ b/themes/b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml @@ -8,6 +8,7 @@ source: author: "Shahab Khalvati" repo: "https://github.com/shahabkhalvati/b9f36bcf530f3d6b5c9cf39d2e260a99" url: "https://marketplace.visualstudio.com/items?itemName=shahabkhalvati.b9f36bcf530f3d6b5c9cf39d2e260a99" + formats: null colors: bg: "#F8F8F7" fg: "#7E7E7E" diff --git a/themes/backspace-dark-glass.yaml b/themes/backspace-dark-glass.yaml index d507b650..e626b976 100644 --- a/themes/backspace-dark-glass.yaml +++ b/themes/backspace-dark-glass.yaml @@ -8,6 +8,7 @@ source: author: "SamiurRahmanMukul" repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" + formats: null colors: bg: "#0F0F0F" fg: "#E8E6E3" diff --git a/themes/backspace-dark-vibe-coder.yaml b/themes/backspace-dark-vibe-coder.yaml index 721fce73..5f7d8435 100644 --- a/themes/backspace-dark-vibe-coder.yaml +++ b/themes/backspace-dark-vibe-coder.yaml @@ -8,6 +8,7 @@ source: author: "SamiurRahmanMukul" repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" + formats: null colors: bg: "#1A0F2A" fg: "#E8E6E3" diff --git a/themes/backspace-dark-winter.yaml b/themes/backspace-dark-winter.yaml index 8ede5213..f3a5d43e 100644 --- a/themes/backspace-dark-winter.yaml +++ b/themes/backspace-dark-winter.yaml @@ -8,6 +8,7 @@ source: author: "SamiurRahmanMukul" repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" + formats: null colors: bg: "#0B1420" fg: "#E8E6E3" diff --git a/themes/backspace-dark.yaml b/themes/backspace-dark.yaml index 6d2cfbe2..e0b61c66 100644 --- a/themes/backspace-dark.yaml +++ b/themes/backspace-dark.yaml @@ -8,6 +8,7 @@ source: author: "SamiurRahmanMukul" repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" + formats: null colors: bg: "#161616" fg: "#E8E6E3" diff --git a/themes/backspace-light.yaml b/themes/backspace-light.yaml index 215701bf..4eae34b8 100644 --- a/themes/backspace-light.yaml +++ b/themes/backspace-light.yaml @@ -8,6 +8,7 @@ source: author: "SamiurRahmanMukul" repo: "https://github.com/SamiurRahmanMukul/backspace-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamiurRahmanMukul.backspace-theme" + formats: null colors: bg: "#F8F6F3" fg: "#2D2A26" diff --git a/themes/baculum-color-minimal-2.yaml b/themes/baculum-color-minimal-2.yaml index d95baee9..02ac33a7 100644 --- a/themes/baculum-color-minimal-2.yaml +++ b/themes/baculum-color-minimal-2.yaml @@ -8,6 +8,7 @@ source: author: "oneplus1000" repo: "https://github.com/oneplus1000/baculum-color" url: "https://marketplace.visualstudio.com/items?itemName=oneplus1000.baculum-color" + formats: null colors: bg: "#222328" fg: "#D4D4D4" diff --git a/themes/baculum-color-vantablack.yaml b/themes/baculum-color-vantablack.yaml index 0543f7b3..1f350d71 100644 --- a/themes/baculum-color-vantablack.yaml +++ b/themes/baculum-color-vantablack.yaml @@ -8,6 +8,7 @@ source: author: "oneplus1000" repo: "https://github.com/oneplus1000/baculum-color" url: "https://marketplace.visualstudio.com/items?itemName=oneplus1000.baculum-color" + formats: null colors: bg: "#020202" fg: "#D4D4D4" diff --git a/themes/baculum-color.yaml b/themes/baculum-color.yaml index b033bcde..01175c10 100644 --- a/themes/baculum-color.yaml +++ b/themes/baculum-color.yaml @@ -8,6 +8,7 @@ source: author: "oneplus1000" repo: "https://github.com/oneplus1000/baculum-color" url: "https://marketplace.visualstudio.com/items?itemName=oneplus1000.baculum-color" + formats: null colors: bg: "#272821" fg: "#D4D4D4" diff --git a/themes/baculum-dark-color.yaml b/themes/baculum-dark-color.yaml index 6f00cda4..88776459 100644 --- a/themes/baculum-dark-color.yaml +++ b/themes/baculum-dark-color.yaml @@ -8,6 +8,7 @@ source: author: "oneplus1000" repo: "https://github.com/oneplus1000/baculum-color" url: "https://marketplace.visualstudio.com/items?itemName=oneplus1000.baculum-color" + formats: null colors: bg: "#20211B" fg: "#D4D4D4" diff --git a/themes/badbird.yaml b/themes/badbird.yaml index 71f7c093..0c0ef664 100644 --- a/themes/badbird.yaml +++ b/themes/badbird.yaml @@ -8,6 +8,7 @@ source: author: "dullptr" repo: "https://github.com/PatrickTorgerson/badbird" url: "https://marketplace.visualstudio.com/items?itemName=dullptr.badbird" + formats: null colors: bg: "#161317" fg: "#D7CDBA" diff --git a/themes/baig.yaml b/themes/baig.yaml index 4279f282..33e6493c 100644 --- a/themes/baig.yaml +++ b/themes/baig.yaml @@ -8,6 +8,7 @@ source: author: "shohelranabaig" repo: "https://github.com/Shohelrana63/vscodebaigtheme" url: "https://marketplace.visualstudio.com/items?itemName=shohelranabaig.Baig" + formats: null colors: bg: "#2E3440" fg: "#D4D4D4" diff --git a/themes/baitul-hikmah-professional.yaml b/themes/baitul-hikmah-professional.yaml index 1268c4a4..35423567 100644 --- a/themes/baitul-hikmah-professional.yaml +++ b/themes/baitul-hikmah-professional.yaml @@ -8,6 +8,7 @@ source: author: "Shahriyar Hosen" repo: "https://github.com/Shahriyar-Hosen/Baitul-Hikmah-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ShahriyarHosen.baitul-hikmah-dark" + formats: null colors: bg: "#000014" fg: "#EDF1FF" diff --git a/themes/bakaneo.yaml b/themes/bakaneo.yaml index e5bf0b88..449a7fd8 100644 --- a/themes/bakaneo.yaml +++ b/themes/bakaneo.yaml @@ -1,4 +1,4 @@ -name: "BakaNeo" +name: "bakaneo" source: marketplace_id: "coelhomarcus.bakaneo" version: "1.1.7" @@ -8,6 +8,7 @@ source: author: "Marcus Coelho" repo: "https://github.com/coelhomarcus/bakaneo-theme" url: "https://marketplace.visualstudio.com/items?itemName=coelhomarcus.bakaneo" + formats: null colors: bg: "#131313" fg: "#FFFFFF" diff --git a/themes/balance-pink-colorblind-compassion-focus.yaml b/themes/balance-pink-colorblind-compassion-focus.yaml index 4ea530e7..d22a0651 100644 --- a/themes/balance-pink-colorblind-compassion-focus.yaml +++ b/themes/balance-pink-colorblind-compassion-focus.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#1A0A0F" fg: "#E0E0E0" diff --git a/themes/balance-pink-compassion-focus.yaml b/themes/balance-pink-compassion-focus.yaml index 05d90913..ced9c8d3 100644 --- a/themes/balance-pink-compassion-focus.yaml +++ b/themes/balance-pink-compassion-focus.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#1A0A0F" fg: "#FCE4EC" diff --git a/themes/balance-pink-high-contrast-compassion-focus.yaml b/themes/balance-pink-high-contrast-compassion-focus.yaml index e85589fb..62146f3c 100644 --- a/themes/balance-pink-high-contrast-compassion-focus.yaml +++ b/themes/balance-pink-high-contrast-compassion-focus.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/balance-pink-light-compassion-focus.yaml b/themes/balance-pink-light-compassion-focus.yaml index 0f171c02..3ebe6848 100644 --- a/themes/balance-pink-light-compassion-focus.yaml +++ b/themes/balance-pink-light-compassion-focus.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#FCE4EC" fg: "#1A0A0F" diff --git a/themes/bali-crepuscule.yaml b/themes/bali-crepuscule.yaml index a02baa43..be256a31 100644 --- a/themes/bali-crepuscule.yaml +++ b/themes/bali-crepuscule.yaml @@ -1,4 +1,4 @@ -name: "Bali crepuscule" +name: "bali crepuscule" source: marketplace_id: "laurentlahmy.bali-crepuscule" version: "0.0.6" @@ -8,6 +8,7 @@ source: author: "laurent lahmy" repo: "https://github.com/alphablend-dev/theme" url: "https://marketplace.visualstudio.com/items?itemName=laurentlahmy.bali-crepuscule" + formats: null colors: bg: "#0F121C" fg: "#ABB2BF" diff --git a/themes/ballerini-theme.yaml b/themes/ballerini-theme.yaml index 77b6fd5c..5f9467bc 100644 --- a/themes/ballerini-theme.yaml +++ b/themes/ballerini-theme.yaml @@ -2,12 +2,13 @@ name: "Ballerini Theme" source: marketplace_id: "BalleriniServer.ballerini-theme" version: "1.2.4" - installs: 55189 + installs: 55234 rating: 5 ratings: 13 author: "Ballerini Theme" repo: "https://github.com/Ballerini-Server/Ballerini-theme" url: "https://marketplace.visualstudio.com/items?itemName=BalleriniServer.ballerini-theme" + formats: null colors: bg: "#261C1E" fg: "#FFF2E7" diff --git a/themes/bam.yaml b/themes/bam.yaml index 3011d896..defc0626 100644 --- a/themes/bam.yaml +++ b/themes/bam.yaml @@ -8,6 +8,7 @@ source: author: "Mark Cummins" repo: "https://github.com/markcummins/Bam" url: "https://marketplace.visualstudio.com/items?itemName=mark-cummins.bam-dark-theme" + formats: null colors: bg: "#111111" fg: "#FFFFFF" diff --git a/themes/bamboo-green.yaml b/themes/bamboo-green.yaml index d43e8b15..559027ce 100644 --- a/themes/bamboo-green.yaml +++ b/themes/bamboo-green.yaml @@ -8,6 +8,7 @@ source: author: "exoad" repo: "https://github.com/exoad/bamboo-light-green-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=exoad.bamboo-light-green-color-theme" + formats: null colors: bg: "#E9FBCB" fg: "#000000" diff --git a/themes/bamboo.yaml b/themes/bamboo.yaml index 0f8eb1c1..1dd95090 100644 --- a/themes/bamboo.yaml +++ b/themes/bamboo.yaml @@ -8,6 +8,7 @@ source: author: "Tilt Shift" repo: "https://github.com/chrisdrackett/bamboo-vs" url: "https://marketplace.visualstudio.com/items?itemName=TiltShift.bamboo" + formats: null colors: bg: "#FFFFFF" fg: "#8F8C8C" diff --git a/themes/ban-light.yaml b/themes/ban-light.yaml index b81063b3..cefa1e28 100644 --- a/themes/ban-light.yaml +++ b/themes/ban-light.yaml @@ -8,6 +8,7 @@ source: author: "drujban" repo: "https://github.com/drujbanjo/ban-theme-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=drujban.ban-theme" + formats: null colors: bg: "#E6E7ED" fg: "#343B59" diff --git a/themes/ban-night.yaml b/themes/ban-night.yaml index d5463d69..1d383a01 100644 --- a/themes/ban-night.yaml +++ b/themes/ban-night.yaml @@ -8,6 +8,7 @@ source: author: "drujban" repo: "https://github.com/drujbanjo/ban-theme-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=drujban.ban-theme" + formats: null colors: bg: "#191A25" fg: "#A9B1D6" diff --git a/themes/ban-typhoon.yaml b/themes/ban-typhoon.yaml index cc44c0ae..fb96d754 100644 --- a/themes/ban-typhoon.yaml +++ b/themes/ban-typhoon.yaml @@ -8,6 +8,7 @@ source: author: "drujban" repo: "https://github.com/drujbanjo/ban-theme-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=drujban.ban-theme" + formats: null colors: bg: "#1A1D2B" fg: "#A9B1D6" diff --git a/themes/bananalight.yaml b/themes/bananalight.yaml index 013750a1..ede8571e 100644 --- a/themes/bananalight.yaml +++ b/themes/bananalight.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "bananaspy.bananaspy" version: "0.0.4" installs: 169 + rating: 0 + ratings: 0 author: "Vitaliy Starov" repo: "https://github.com/bananaspy/bananalight" url: "https://marketplace.visualstudio.com/items?itemName=bananaspy.bananaspy" + formats: null colors: bg: "#FFFFFF" fg: "#410E0E" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "pink" hue: null + pair: null contrast: fg: 102.6 black: 106 diff --git a/themes/bandmeup.yaml b/themes/bandmeup.yaml index 74158451..3d3c3079 100644 --- a/themes/bandmeup.yaml +++ b/themes/bandmeup.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "eyebonk.bandmeup" version: "1.0.0" installs: 10 + rating: 0 + ratings: 0 author: "eyebonk" repo: "https://github.com/eyebonk/vscode-Theme-BandMeUp" url: "https://marketplace.visualstudio.com/items?itemName=eyebonk.bandmeup" + formats: null colors: bg: "#181818" fg: "#AAAAAA" diff --git a/themes/banjo-loans-dark.yaml b/themes/banjo-loans-dark.yaml index 2f8e8e7e..14647bfa 100644 --- a/themes/banjo-loans-dark.yaml +++ b/themes/banjo-loans-dark.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.banjo-loans-theme" + formats: null colors: bg: "#1A1024" fg: "#E8E4F0" diff --git a/themes/banjo-loans-light.yaml b/themes/banjo-loans-light.yaml index bb03280b..6e252620 100644 --- a/themes/banjo-loans-light.yaml +++ b/themes/banjo-loans-light.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.banjo-loans-theme" + formats: null colors: bg: "#FFFFFF" fg: "#111111" diff --git a/themes/banner-contrast.yaml b/themes/banner-contrast.yaml deleted file mode 100644 index 52a34511..00000000 --- a/themes/banner-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "banner-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0B0A0F" - fg: "#C5BEDD" - black: "#16141E" - red: "#BA0E2E" - green: "#7CD827" - yellow: "#A25CDB" - blue: "#FFFFFF" - magenta: "#A6EF61" - cyan: "#A6EF61" - white: "#D4CFE6" - brightBlack: "#38334C" - brightRed: "#F03E5F" - brightGreen: "#B0E87D" - brightYellow: "#D2B0ED" - brightBlue: "#FFFFFF" - brightMagenta: "#DAF8BE" - brightCyan: "#DAF8BE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 294 - pair: null - contrast: - fg: 69.6 - black: 0 - red: 21.3 - green: 69.6 - yellow: 33.6 - blue: 107.7 - magenta: 84.7 - cyan: 84.7 - white: 79 - brightBlack: 0 - brightRed: 37.6 - brightGreen: 82.7 - brightYellow: 66.8 - brightBlue: 107.7 - brightMagenta: 96.8 - brightCyan: 96.8 - brightWhite: 107.7 diff --git a/themes/banner-light.yaml b/themes/banner-light.yaml deleted file mode 100644 index bd6be4fe..00000000 --- a/themes/banner-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "banner-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#373247" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#7CD827" - yellow: "#A25CDB" - blue: "#373247" - magenta: "#7CD827" - cyan: "#7CD827" - white: "#433D56" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#B0E87D" - brightYellow: "#D2B0ED" - brightBlue: "#655C83" - brightMagenta: "#B0E87D" - brightCyan: "#B0E87D" - brightWhite: "#655C83" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 98 - black: 0 - red: 80.3 - green: 32.9 - yellow: 67.9 - blue: 98 - magenta: 32.9 - cyan: 32.9 - white: 93.9 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 20.5 - brightYellow: 35.6 - brightBlue: 80.7 - brightMagenta: 20.5 - brightCyan: 20.5 - brightWhite: 80.7 diff --git a/themes/banner.yaml b/themes/banner.yaml deleted file mode 100644 index a4202d23..00000000 --- a/themes/banner.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "banner" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#1D1A26" - fg: "#C5BEDD" - black: "#292435" - red: "#BA0E2E" - green: "#7CD827" - yellow: "#A25CDB" - blue: "#FFFFFF" - magenta: "#A6EF61" - cyan: "#A6EF61" - white: "#D4CFE6" - brightBlack: "#4B4363" - brightRed: "#F03E5F" - brightGreen: "#B0E87D" - brightYellow: "#D2B0ED" - brightBlue: "#FFFFFF" - brightMagenta: "#DAF8BE" - brightCyan: "#DAF8BE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 296 - pair: null - contrast: - fg: 68.2 - black: 0 - red: 19.9 - green: 68.2 - yellow: 32.2 - blue: 106.3 - magenta: 83.3 - cyan: 83.3 - white: 77.6 - brightBlack: 9.6 - brightRed: 36.2 - brightGreen: 81.3 - brightYellow: 65.4 - brightBlue: 106.3 - brightMagenta: 95.4 - brightCyan: 95.4 - brightWhite: 106.3 diff --git a/themes/barbenheimer-bunker.yaml b/themes/barbenheimer-bunker.yaml deleted file mode 100644 index 23c0efc9..00000000 --- a/themes/barbenheimer-bunker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Barbenheimer Bunker" -source: - marketplace_id: "jayvicsanantonio.barbenheimer" - version: "1.0.0" - installs: 4072 - rating: 5 - ratings: 2 - author: "Jayvic San Antonio" - repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" -colors: - bg: "#14140B" - fg: "#E9B2CF" - black: "#14140B" - red: "#F672AC" - green: "#A0E0C0" - yellow: "#F0E0B0" - blue: "#A0C0F0" - magenta: "#D4A8F9" - cyan: "#A0E0D0" - white: "#E0E0E0" - brightBlack: "#FCE5D8" - brightRed: "#F672AC" - brightGreen: "#A0E0C0" - brightYellow: "#F0E0B0" - brightBlue: "#A0C0F0" - brightMagenta: "#D4A8F9" - brightCyan: "#A0E0D0" - brightWhite: "#E0E0E0" -meta: - mode: "dark" - accent: "red" - hue: 108 - pair: null - contrast: - fg: 68.9 - black: 0 - red: 50.2 - green: 78.8 - yellow: 87.6 - blue: 66.8 - magenta: 64.3 - cyan: 79.4 - white: 87.2 - brightBlack: 93 - brightRed: 50.2 - brightGreen: 78.8 - brightYellow: 87.6 - brightBlue: 66.8 - brightMagenta: 64.3 - brightCyan: 79.4 - brightWhite: 87.2 diff --git a/themes/barbenheimer-dreamhouse.yaml b/themes/barbenheimer-dreamhouse.yaml deleted file mode 100644 index cb3d4476..00000000 --- a/themes/barbenheimer-dreamhouse.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Barbenheimer Dreamhouse" -source: - marketplace_id: "jayvicsanantonio.barbenheimer" - version: "1.0.0" - installs: 4072 - rating: 5 - ratings: 2 - author: "Jayvic San Antonio" - repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" -colors: - bg: "#FFF8F0" - fg: "#14140B" - black: "#302820" - red: "#F060A0" - green: "#A8D977" - yellow: "#F7D787" - blue: "#87CEFA" - magenta: "#BA55D3" - cyan: "#80CBC4" - white: "#14140B" - brightBlack: "#4A443A" - brightRed: "#DC5687" - brightGreen: "#86B465" - brightYellow: "#E0C070" - brightBlue: "#64B5D9" - brightMagenta: "#9B40B4" - brightCyan: "#609E9A" - brightWhite: "#000000" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 101.5 - black: 97.6 - red: 52.9 - green: 24.5 - yellow: 15.6 - blue: 27.1 - magenta: 62.6 - cyan: 31.5 - white: 101.5 - brightBlack: 88.7 - brightRed: 59.9 - brightGreen: 43.7 - brightYellow: 28.5 - brightBlue: 41.5 - brightMagenta: 73.4 - brightCyan: 53.8 - brightWhite: 102.4 diff --git a/themes/barbenheimer-nuclear-sunrise.yaml b/themes/barbenheimer-nuclear-sunrise.yaml deleted file mode 100644 index d694cda9..00000000 --- a/themes/barbenheimer-nuclear-sunrise.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Barbenheimer Nuclear Sunrise" -source: - marketplace_id: "jayvicsanantonio.barbenheimer" - version: "1.0.0" - installs: 4072 - rating: 5 - ratings: 2 - author: "Jayvic San Antonio" - repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" -colors: - bg: "#0F0F0A" - fg: "#FFFFFF" - black: "#0F0F0A" - red: "#FF69B4" - green: "#80C0A0" - yellow: "#C0C080" - blue: "#80A0C0" - magenta: "#C080C0" - cyan: "#80C0C0" - white: "#D0D0D0" - brightBlack: "#EEEEEE" - brightRed: "#FF69B4" - brightGreen: "#80C0A0" - brightYellow: "#C0C080" - brightBlue: "#80A0C0" - brightMagenta: "#C080C0" - brightCyan: "#80C0C0" - brightWhite: "#E0E0E0" -meta: - mode: "dark" - accent: "red" - hue: 107 - pair: null - contrast: - fg: 107.5 - black: 0 - red: 50.7 - green: 60.7 - yellow: 66.2 - blue: 48.8 - magenta: 45.4 - cyan: 62 - white: 77.7 - brightBlack: 96.4 - brightRed: 50.7 - brightGreen: 60.7 - brightYellow: 66.2 - brightBlue: 48.8 - brightMagenta: 45.4 - brightCyan: 62 - brightWhite: 87.5 diff --git a/themes/barbie-light.yaml b/themes/barbie-light.yaml index 8b7a9ade..a1bb36a7 100644 --- a/themes/barbie-light.yaml +++ b/themes/barbie-light.yaml @@ -2,12 +2,13 @@ name: "Barbie Light" source: marketplace_id: "LuanKisaki.barbie-light-theme" version: "1.0.0" - installs: 3038 + installs: 3040 rating: 5 ratings: 1 author: "Luan Kisaki" repo: "https://github.com/LuanKisaki/barbie-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=LuanKisaki.barbie-light-theme" + formats: null colors: bg: "#FFF3FD" fg: "#6B095F" diff --git a/themes/barbie-theme.yaml b/themes/barbie-theme.yaml index 790d8101..97d551b1 100644 --- a/themes/barbie-theme.yaml +++ b/themes/barbie-theme.yaml @@ -2,12 +2,13 @@ name: "Barbie Theme" source: marketplace_id: "mihtoa.barbie-theme" version: "0.0.2" - installs: 10608 + installs: 10632 rating: 5 ratings: 1 author: "Milene Toazza" repo: "https://github.com/mihtoa/barbie-theme" url: "https://marketplace.visualstudio.com/items?itemName=mihtoa.barbie-theme" + formats: null colors: bg: "#1E1E1E" fg: "#FFCEF0" diff --git a/themes/barbie.yaml b/themes/barbie.yaml index b037b302..decdb3e7 100644 --- a/themes/barbie.yaml +++ b/themes/barbie.yaml @@ -2,12 +2,13 @@ name: "Barbie" source: marketplace_id: "Miraz007.Barbie" version: "0.0.2" - installs: 5936 + installs: 5942 rating: 0 ratings: 0 author: "Miraz" repo: "https://github.com/PiyushYadav007/Barbie-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Miraz007.Barbie" + formats: null colors: bg: "#FBCDFF" fg: "#000000" diff --git a/themes/barito.yaml b/themes/barito.yaml index 7e5a63f5..e5dbb764 100644 --- a/themes/barito.yaml +++ b/themes/barito.yaml @@ -8,6 +8,7 @@ source: author: "Levensspel" repo: "https://github.com/levensspel/barito-theme-vsce" url: "https://marketplace.visualstudio.com/items?itemName=levensspel.barito" + formats: null colors: bg: "#003030" fg: "#008C8C" diff --git a/themes/barlume.yaml b/themes/barlume.yaml index 423d1b4b..bff850ee 100644 --- a/themes/barlume.yaml +++ b/themes/barlume.yaml @@ -8,6 +8,7 @@ source: author: "gionkez" repo: "https://github.com/dellarosciagiorgio/barlume" url: "https://marketplace.visualstudio.com/items?itemName=gnkz.barlume" + formats: null colors: bg: "#FCFCFC" fg: "#303030" diff --git a/themes/barney-pro.yaml b/themes/barney-pro.yaml index b208b8cb..3d408802 100644 --- a/themes/barney-pro.yaml +++ b/themes/barney-pro.yaml @@ -8,6 +8,7 @@ source: author: "barney-pro-one" repo: "https://github.com/armando10rafael10/theme-barney-pro" url: "https://marketplace.visualstudio.com/items?itemName=barney-pro-one.barney-pro" + formats: null colors: bg: "#140E1A" fg: "#7DF9FF" diff --git a/themes/barstrata.yaml b/themes/barstrata.yaml index 566ce838..e1c25242 100644 --- a/themes/barstrata.yaml +++ b/themes/barstrata.yaml @@ -1,11 +1,14 @@ -name: "Barstrata" +name: "barstrata" source: marketplace_id: "w3barsi.barstrata" version: "0.1.0" installs: 47 + rating: 0 + ratings: 0 author: "w3barsi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=w3barsi.barstrata" + formats: null colors: bg: "#111319" fg: "#D4D4D4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 79.8 black: 0 diff --git a/themes/base-color-theme.yaml b/themes/base-color-theme.yaml deleted file mode 100644 index 2f855dea..00000000 --- a/themes/base-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "base-color-theme" -source: - marketplace_id: "electricduck.elementary-theme" - version: "1.51.2" - installs: 4187 - rating: 4 - ratings: 4 - author: "Ducky" - repo: "https://github.com/electricduck/vscode-elementary-theme" - url: "https://marketplace.visualstudio.com/items?itemName=electricduck.elementary-theme" -colors: - bg: "#FFFFFF" - fg: "#111111" - black: "#073642" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#EC0048" - cyan: "#2AA198" - white: "#94A3A5" - brightBlack: "#586E75" - brightRed: "#CB4B16" - brightGreen: "#9BDB4D" - brightYellow: "#D48E15" - brightBlue: "#3689E6" - brightMagenta: "#D33682" - brightCyan: "#2AA198" - brightWhite: "#EEEEEE" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 105.4 - black: 99 - red: 70.5 - green: 59 - yellow: 59.1 - blue: 63.9 - magenta: 68.4 - cyan: 58.3 - white: 51 - brightBlack: 76.8 - brightRed: 71 - brightGreen: 29 - brightYellow: 52.6 - brightBlue: 62.9 - brightMagenta: 70.3 - brightCyan: 58.3 - brightWhite: 7.6 diff --git a/themes/base-minor-dark-hard.yaml b/themes/base-minor-dark-hard.yaml index 49b1c617..14ebfd01 100644 --- a/themes/base-minor-dark-hard.yaml +++ b/themes/base-minor-dark-hard.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "adamsome.vscode-theme-base-minor" version: "1.1.2" installs: 213 + rating: 0 + ratings: 0 author: "adamsome" repo: "https://github.com/adamsome/vscode-theme-base-minor" url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-base-minor" + formats: null colors: bg: "#171717" fg: "#E5E5E5" diff --git a/themes/base-minor-dark-soft.yaml b/themes/base-minor-dark-soft.yaml index 0bdd32e4..e5bd87b4 100644 --- a/themes/base-minor-dark-soft.yaml +++ b/themes/base-minor-dark-soft.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "adamsome.vscode-theme-base-minor" version: "1.1.2" installs: 213 + rating: 0 + ratings: 0 author: "adamsome" repo: "https://github.com/adamsome/vscode-theme-base-minor" url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-base-minor" + formats: null colors: bg: "#1E1E1E" fg: "#E5E5E5" diff --git a/themes/base-minor-soft.yaml b/themes/base-minor-soft.yaml index cdfb383e..2c2b2945 100644 --- a/themes/base-minor-soft.yaml +++ b/themes/base-minor-soft.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "adamsome.vscode-theme-base-minor" version: "1.1.2" installs: 213 + rating: 0 + ratings: 0 author: "adamsome" repo: "https://github.com/adamsome/vscode-theme-base-minor" url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-base-minor" + formats: null colors: bg: "#1E1E1E" fg: "#E5E5E5" diff --git a/themes/base16-3024-dark.yaml b/themes/base16-3024-dark.yaml deleted file mode 100644 index df5e56f4..00000000 --- a/themes/base16-3024-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 3024 Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#090300" - fg: "#A5A2A2" - black: "#4A4543" - red: "#DB2D20" - green: "#01A252" - yellow: "#E8BBD0" - blue: "#01A0E4" - magenta: "#A16A94" - cyan: "#B5E4F4" - white: "#D6D5D4" - brightBlack: "#5C5855" - brightRed: "#DB2D20" - brightGreen: "#01A252" - brightYellow: "#FDED02" - brightBlue: "#01A0E4" - brightMagenta: "#A16A94" - brightCyan: "#B5E4F4" - brightWhite: "#F7F7F7" -meta: - mode: "dark" - accent: "orange" - hue: 66 - pair: "Base16 3024 Light" - contrast: - fg: 52.2 - black: 10.5 - red: 30.3 - green: 41.6 - yellow: 72.9 - blue: 46.6 - magenta: 32.8 - cyan: 85.6 - white: 81.2 - brightBlack: 17.5 - brightRed: 30.3 - brightGreen: 41.6 - brightYellow: 93.8 - brightBlue: 46.6 - brightMagenta: 32.8 - brightCyan: 85.6 - brightWhite: 102.6 diff --git a/themes/base16-3024-light.yaml b/themes/base16-3024-light.yaml deleted file mode 100644 index 40bab8e7..00000000 --- a/themes/base16-3024-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 3024 Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#F7F7F7" - fg: "#4A4543" - black: "#A5A2A2" - red: "#DB2D20" - green: "#01A252" - yellow: "#E8BBD0" - blue: "#01A0E4" - magenta: "#A16A94" - cyan: "#B5E4F4" - white: "#3A3432" - brightBlack: "#807D7C" - brightRed: "#DB2D20" - brightGreen: "#01A252" - brightYellow: "#FDED02" - brightBlue: "#01A0E4" - brightMagenta: "#A16A94" - brightCyan: "#B5E4F4" - brightWhite: "#090300" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Base16 3024 Dark" - contrast: - fg: 87.1 - black: 44.9 - red: 66.5 - green: 55.3 - yellow: 25.1 - blue: 50.4 - magenta: 64 - cyan: 13.1 - white: 93.2 - brightBlack: 63.3 - brightRed: 66.5 - brightGreen: 55.3 - brightYellow: 0 - brightBlue: 50.4 - brightMagenta: 64 - brightCyan: 13.1 - brightWhite: 101.2 diff --git a/themes/base16-apathy-dark.yaml b/themes/base16-apathy-dark.yaml deleted file mode 100644 index 9bc1d0df..00000000 --- a/themes/base16-apathy-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Apathy Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#031A16" - fg: "#81B5AC" - black: "#184E45" - red: "#3E9688" - green: "#883E96" - yellow: "#3E7996" - blue: "#96883E" - magenta: "#4C963E" - cyan: "#963E4C" - white: "#A7CEC8" - brightBlack: "#2B685E" - brightRed: "#3E9688" - brightGreen: "#883E96" - brightYellow: "#3E4C96" - brightBlue: "#96883E" - brightMagenta: "#4C963E" - brightCyan: "#963E4C" - brightWhite: "#D2E7E4" -meta: - mode: "dark" - accent: "pink" - hue: 180 - pair: "Base16 Apathy Light" - contrast: - fg: 55.8 - black: 9.6 - red: 37.8 - green: 18.7 - yellow: 27.5 - blue: 37.4 - magenta: 36.7 - cyan: 18 - white: 71.2 - brightBlack: 18.9 - brightRed: 37.8 - brightGreen: 18.7 - brightYellow: 14.1 - brightBlue: 37.4 - brightMagenta: 36.7 - brightCyan: 18 - brightWhite: 88.4 diff --git a/themes/base16-apathy-light.yaml b/themes/base16-apathy-light.yaml deleted file mode 100644 index 4fa9c0cf..00000000 --- a/themes/base16-apathy-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Apathy Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#D2E7E4" - fg: "#184E45" - black: "#81B5AC" - red: "#3E9688" - green: "#883E96" - yellow: "#3E7996" - blue: "#96883E" - magenta: "#4C963E" - cyan: "#963E4C" - white: "#0B342D" - brightBlack: "#5F9C92" - brightRed: "#3E9688" - brightGreen: "#883E96" - brightYellow: "#3E4C96" - brightBlue: "#96883E" - brightMagenta: "#4C963E" - brightCyan: "#963E4C" - brightWhite: "#031A16" -meta: - mode: "light" - accent: "pink" - hue: 186 - pair: "Base16 Apathy Dark" - contrast: - fg: 74.9 - black: 28.5 - red: 46 - green: 65.4 - yellow: 56.3 - blue: 46.4 - magenta: 47.2 - cyan: 66.1 - white: 83.2 - brightBlack: 41.8 - brightRed: 46 - brightGreen: 65.4 - brightYellow: 70.2 - brightBlue: 46.4 - brightMagenta: 47.2 - brightCyan: 66.1 - brightWhite: 87.9 diff --git a/themes/base16-ashes-dark.yaml b/themes/base16-ashes-dark.yaml deleted file mode 100644 index 0f712788..00000000 --- a/themes/base16-ashes-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Ashes Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#1C2023" - fg: "#C7CCD1" - black: "#565E65" - red: "#C7AE95" - green: "#95C7AE" - yellow: "#C7C795" - blue: "#AE95C7" - magenta: "#C795AE" - cyan: "#95AEC7" - white: "#DFE2E5" - brightBlack: "#747C84" - brightRed: "#C7AE95" - brightGreen: "#95C7AE" - brightYellow: "#AEC795" - brightBlue: "#AE95C7" - brightMagenta: "#C795AE" - brightCyan: "#95AEC7" - brightWhite: "#F3F4F5" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: "Base16 Ashes Light" - contrast: - fg: 73.2 - black: 17.2 - red: 58.7 - green: 64.3 - yellow: 68.9 - blue: 48.3 - magenta: 50.6 - cyan: 54.8 - white: 86.8 - brightBlack: 30.4 - brightRed: 58.7 - brightGreen: 64.3 - brightYellow: 65.9 - brightBlue: 48.3 - brightMagenta: 50.6 - brightCyan: 54.8 - brightWhite: 98.5 diff --git a/themes/base16-ashes-light.yaml b/themes/base16-ashes-light.yaml deleted file mode 100644 index 982671ba..00000000 --- a/themes/base16-ashes-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Ashes Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#F3F4F5" - fg: "#565E65" - black: "#C7CCD1" - red: "#C7AE95" - green: "#95C7AE" - yellow: "#C7C795" - blue: "#AE95C7" - magenta: "#C795AE" - cyan: "#95AEC7" - white: "#393F45" - brightBlack: "#ADB3BA" - brightRed: "#C7AE95" - brightGreen: "#95C7AE" - brightYellow: "#AEC795" - brightBlue: "#AE95C7" - brightMagenta: "#C795AE" - brightCyan: "#95AEC7" - brightWhite: "#1C2023" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Base16 Ashes Dark" - contrast: - fg: 76 - black: 21 - red: 34.9 - green: 29.5 - yellow: 25.1 - blue: 44.9 - magenta: 42.7 - cyan: 38.6 - white: 88.1 - brightBlack: 34.8 - brightRed: 34.9 - brightGreen: 29.5 - brightYellow: 27.9 - brightBlue: 44.9 - brightMagenta: 42.7 - brightCyan: 38.6 - brightWhite: 96.7 diff --git a/themes/base16-bespin-dark.yaml b/themes/base16-bespin-dark.yaml deleted file mode 100644 index f9393373..00000000 --- a/themes/base16-bespin-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Bespin Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#28211C" - fg: "#8A8986" - black: "#5E5D5C" - red: "#CF6A4C" - green: "#54BE0D" - yellow: "#CF7D34" - blue: "#5EA6EA" - magenta: "#9B859D" - cyan: "#AFC4DB" - white: "#9D9B97" - brightBlack: "#666666" - brightRed: "#CF6A4C" - brightGreen: "#54BE0D" - brightYellow: "#F9EE98" - brightBlue: "#5EA6EA" - brightMagenta: "#9B859D" - brightCyan: "#AFC4DB" - brightWhite: "#BAAE9E" -meta: - mode: "dark" - accent: "green" - hue: 58 - pair: "Base16 Bespin Light" - contrast: - fg: 36.6 - black: 16.9 - red: 36 - green: 52.7 - yellow: 40.8 - blue: 49.1 - magenta: 38.1 - cyan: 67.1 - white: 45.8 - brightBlack: 20.6 - brightRed: 36 - brightGreen: 52.7 - brightYellow: 92.8 - brightBlue: 49.1 - brightMagenta: 38.1 - brightCyan: 67.1 - brightWhite: 56.8 diff --git a/themes/base16-bespin-light.yaml b/themes/base16-bespin-light.yaml deleted file mode 100644 index 87aa167f..00000000 --- a/themes/base16-bespin-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Bespin Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#BAAE9E" - fg: "#5E5D5C" - black: "#8A8986" - red: "#CF6A4C" - green: "#54BE0D" - yellow: "#CF7D34" - blue: "#5EA6EA" - magenta: "#9B859D" - cyan: "#AFC4DB" - white: "#36312E" - brightBlack: "#797977" - brightRed: "#CF6A4C" - brightGreen: "#54BE0D" - brightYellow: "#F9EE98" - brightBlue: "#5EA6EA" - brightMagenta: "#9B859D" - brightCyan: "#AFC4DB" - brightWhite: "#28211C" -meta: - mode: "light" - accent: "green" - hue: 75 - pair: "Base16 Bespin Dark" - contrast: - fg: 37.6 - black: 17.6 - red: 18.3 - green: 0 - yellow: 13.5 - blue: 0 - magenta: 16.2 - cyan: 9.3 - white: 54 - brightBlack: 25.3 - brightRed: 18.3 - brightGreen: 0 - brightYellow: 35 - brightBlue: 0 - brightMagenta: 16.2 - brightCyan: 9.3 - brightWhite: 57.9 diff --git a/themes/base16-brewer-dark.yaml b/themes/base16-brewer-dark.yaml deleted file mode 100644 index f6e4b4b2..00000000 --- a/themes/base16-brewer-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Brewer Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#0C0D0E" - fg: "#B7B8B9" - black: "#515253" - red: "#E31A1C" - green: "#31A354" - yellow: "#E6550D" - blue: "#3182BD" - magenta: "#756BB1" - cyan: "#80B1D3" - white: "#DADBDC" - brightBlack: "#737475" - brightRed: "#E31A1C" - brightGreen: "#31A354" - brightYellow: "#DCA060" - brightBlue: "#3182BD" - brightMagenta: "#756BB1" - brightCyan: "#80B1D3" - brightWhite: "#FCFDFE" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Base16 Brewer Light" - contrast: - fg: 63.7 - black: 14.6 - red: 30.8 - green: 42.3 - yellow: 37.9 - blue: 33.2 - magenta: 29 - cyan: 56.6 - white: 84.4 - brightBlack: 28.9 - brightRed: 30.8 - brightGreen: 42.3 - brightYellow: 57.2 - brightBlue: 33.2 - brightMagenta: 29 - brightCyan: 56.6 - brightWhite: 106.2 diff --git a/themes/base16-brewer-light.yaml b/themes/base16-brewer-light.yaml deleted file mode 100644 index e9790c4e..00000000 --- a/themes/base16-brewer-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Brewer Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#FCFDFE" - fg: "#515253" - black: "#B7B8B9" - red: "#E31A1C" - green: "#31A354" - yellow: "#E6550D" - blue: "#3182BD" - magenta: "#756BB1" - cyan: "#80B1D3" - white: "#2E2F30" - brightBlack: "#959697" - brightRed: "#E31A1C" - brightGreen: "#31A354" - brightYellow: "#DCA060" - brightBlue: "#3182BD" - brightMagenta: "#756BB1" - brightCyan: "#80B1D3" - brightWhite: "#0C0D0E" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Base16 Brewer Dark" - contrast: - fg: 85.9 - black: 37.1 - red: 69.3 - green: 57.9 - yellow: 62.3 - blue: 67 - magenta: 71.1 - cyan: 43.9 - white: 98.6 - brightBlack: 54.9 - brightRed: 69.3 - brightGreen: 57.9 - brightYellow: 43.4 - brightBlue: 67 - brightMagenta: 71.1 - brightCyan: 43.9 - brightWhite: 104.4 diff --git a/themes/base16-bright-dark.yaml b/themes/base16-bright-dark.yaml deleted file mode 100644 index b1256483..00000000 --- a/themes/base16-bright-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Bright Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#000000" - fg: "#E0E0E0" - black: "#505050" - red: "#FB0120" - green: "#A1C659" - yellow: "#FC6D24" - blue: "#6FB3D2" - magenta: "#D381C3" - cyan: "#76C7B7" - white: "#F5F5F5" - brightBlack: "#B0B0B0" - brightRed: "#FB0120" - brightGreen: "#A1C659" - brightYellow: "#FDA331" - brightBlue: "#6FB3D2" - brightMagenta: "#D381C3" - brightCyan: "#76C7B7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Base16 Bright Light" - contrast: - fg: 87.9 - black: 14.2 - red: 36.6 - green: 64.9 - yellow: 48 - blue: 56.5 - magenta: 49.3 - cyan: 64.4 - white: 101.3 - brightBlack: 59.5 - brightRed: 36.6 - brightGreen: 64.9 - brightYellow: 63.8 - brightBlue: 56.5 - brightMagenta: 49.3 - brightCyan: 64.4 - brightWhite: 107.9 diff --git a/themes/base16-bright-light.yaml b/themes/base16-bright-light.yaml deleted file mode 100644 index 2c50c511..00000000 --- a/themes/base16-bright-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Bright Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#FFFFFF" - fg: "#505050" - black: "#E0E0E0" - red: "#FB0120" - green: "#A1C659" - yellow: "#FC6D24" - blue: "#6FB3D2" - magenta: "#D381C3" - cyan: "#76C7B7" - white: "#303030" - brightBlack: "#D0D0D0" - brightRed: "#FB0120" - brightGreen: "#A1C659" - brightYellow: "#FDA331" - brightBlue: "#6FB3D2" - brightMagenta: "#D381C3" - brightCyan: "#76C7B7" - brightWhite: "#000000" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Base16 Bright Dark" - contrast: - fg: 88 - black: 15.8 - red: 65.1 - green: 37.5 - yellow: 53.9 - blue: 45.6 - magenta: 52.6 - cyan: 38 - white: 99.6 - brightBlack: 25 - brightRed: 65.1 - brightGreen: 37.5 - brightYellow: 38.6 - brightBlue: 45.6 - brightMagenta: 52.6 - brightCyan: 38 - brightWhite: 106 diff --git a/themes/base16-codeschool-dark.yaml b/themes/base16-codeschool-dark.yaml deleted file mode 100644 index e78f41b8..00000000 --- a/themes/base16-codeschool-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Codeschool Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#232C31" - fg: "#9EA7A6" - black: "#2A343A" - red: "#2A5491" - green: "#237986" - yellow: "#43820D" - blue: "#484D79" - magenta: "#C59820" - cyan: "#B02F30" - white: "#A7CFA3" - brightBlack: "#3F4944" - brightRed: "#2A5491" - brightGreen: "#237986" - brightYellow: "#A03B1E" - brightBlue: "#484D79" - brightMagenta: "#C59820" - brightCyan: "#B02F30" - brightWhite: "#B5D8F6" -meta: - mode: "dark" - accent: "orange" - hue: 232 - pair: "Base16 Codeschool Light" - contrast: - fg: 49.6 - black: 0 - red: 12.1 - green: 23.1 - yellow: 25.2 - blue: 10.4 - magenta: 46.3 - cyan: 17.4 - white: 67.3 - brightBlack: 0 - brightRed: 12.1 - brightGreen: 23.1 - brightYellow: 15.7 - brightBlue: 10.4 - brightMagenta: 46.3 - brightCyan: 17.4 - brightWhite: 76.3 diff --git a/themes/base16-codeschool-light.yaml b/themes/base16-codeschool-light.yaml deleted file mode 100644 index fde86bac..00000000 --- a/themes/base16-codeschool-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Codeschool Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#B5D8F6" - fg: "#2A343A" - black: "#9EA7A6" - red: "#2A5491" - green: "#237986" - yellow: "#43820D" - blue: "#484D79" - magenta: "#C59820" - cyan: "#B02F30" - white: "#1C3657" - brightBlack: "#84898C" - brightRed: "#2A5491" - brightGreen: "#237986" - brightYellow: "#A03B1E" - brightBlue: "#484D79" - brightMagenta: "#C59820" - brightCyan: "#B02F30" - brightWhite: "#232C31" -meta: - mode: "light" - accent: "orange" - hue: 244 - pair: "Base16 Codeschool Dark" - contrast: - fg: 73.6 - black: 23.2 - red: 60.8 - green: 49.4 - yellow: 47.3 - blue: 62.6 - magenta: 26.4 - cyan: 55.2 - white: 72.5 - brightBlack: 37.7 - brightRed: 60.8 - brightGreen: 49.4 - brightYellow: 57 - brightBlue: 62.6 - brightMagenta: 26.4 - brightCyan: 55.2 - brightWhite: 75.7 diff --git a/themes/base16-default-dark.yaml b/themes/base16-default-dark.yaml deleted file mode 100644 index 095f6142..00000000 --- a/themes/base16-default-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Default Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#181818" - fg: "#D8D8D8" - black: "#383838" - red: "#AB4642" - green: "#A1B56C" - yellow: "#DC9656" - blue: "#7CAFC2" - magenta: "#BA8BAF" - cyan: "#86C1B9" - white: "#E8E8E8" - brightBlack: "#585858" - brightRed: "#AB4642" - brightGreen: "#A1B56C" - brightYellow: "#F7CA88" - brightBlue: "#7CAFC2" - brightMagenta: "#BA8BAF" - brightCyan: "#86C1B9" - brightWhite: "#F8F8F8" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Base16 Default Light" - contrast: - fg: 81.8 - black: 0 - red: 22.8 - green: 56.7 - yellow: 52.7 - blue: 53.8 - magenta: 46.3 - cyan: 61.8 - white: 91.8 - brightBlack: 16.2 - brightRed: 22.8 - brightGreen: 56.7 - brightYellow: 77.7 - brightBlue: 53.8 - brightMagenta: 46.3 - brightCyan: 61.8 - brightWhite: 102.1 diff --git a/themes/base16-default-light.yaml b/themes/base16-default-light.yaml deleted file mode 100644 index 8fbaf868..00000000 --- a/themes/base16-default-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Default Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#F8F8F8" - fg: "#383838" - black: "#D8D8D8" - red: "#AB4642" - green: "#A1B56C" - yellow: "#DC9656" - blue: "#7CAFC2" - magenta: "#BA8BAF" - cyan: "#86C1B9" - white: "#282828" - brightBlack: "#B8B8B8" - brightRed: "#AB4642" - brightGreen: "#A1B56C" - brightYellow: "#F7CA88" - brightBlue: "#7CAFC2" - brightMagenta: "#BA8BAF" - brightCyan: "#86C1B9" - brightWhite: "#181818" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Base16 Default Dark" - contrast: - fg: 92.8 - black: 16.3 - red: 73.6 - green: 40.1 - yellow: 44 - blue: 42.9 - magenta: 50.2 - cyan: 35.2 - white: 97.4 - brightBlack: 34.2 - brightRed: 73.6 - brightGreen: 40.1 - brightYellow: 20.2 - brightBlue: 42.9 - brightMagenta: 50.2 - brightCyan: 35.2 - brightWhite: 100.4 diff --git a/themes/base16-eighties-dark.yaml b/themes/base16-eighties-dark.yaml deleted file mode 100644 index 5e5674ed..00000000 --- a/themes/base16-eighties-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Eighties Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#2D2D2D" - fg: "#D3D0C8" - black: "#515151" - red: "#F2777A" - green: "#99CC99" - yellow: "#F99157" - blue: "#6699CC" - magenta: "#CC99CC" - cyan: "#66CCCC" - white: "#E8E6DF" - brightBlack: "#747369" - brightRed: "#F2777A" - brightGreen: "#99CC99" - brightYellow: "#FFCC66" - brightBlue: "#6699CC" - brightMagenta: "#CC99CC" - brightCyan: "#66CCCC" - brightWhite: "#F2F0EC" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Base16 Eighties Light" - contrast: - fg: 73.7 - black: 10.1 - red: 45.1 - green: 63.8 - yellow: 53.1 - blue: 40.7 - magenta: 51.7 - cyan: 62.2 - white: 87.2 - brightBlack: 24.1 - brightRed: 45.1 - brightGreen: 63.8 - brightYellow: 75.8 - brightBlue: 40.7 - brightMagenta: 51.7 - brightCyan: 62.2 - brightWhite: 93.7 diff --git a/themes/base16-eighties-light.yaml b/themes/base16-eighties-light.yaml deleted file mode 100644 index 9fcb5ea4..00000000 --- a/themes/base16-eighties-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Eighties Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#F2F0EC" - fg: "#515151" - black: "#D3D0C8" - red: "#F2777A" - green: "#99CC99" - yellow: "#F99157" - blue: "#6699CC" - magenta: "#CC99CC" - cyan: "#66CCCC" - white: "#393939" - brightBlack: "#A09F93" - brightRed: "#F2777A" - brightGreen: "#99CC99" - brightYellow: "#FFCC66" - brightBlue: "#6699CC" - brightMagenta: "#CC99CC" - brightCyan: "#66CCCC" - brightWhite: "#2D2D2D" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Base16 Eighties Dark" - contrast: - fg: 78.7 - black: 16.1 - red: 43.5 - green: 25.5 - yellow: 35.7 - blue: 47.8 - magenta: 37.1 - cyan: 27 - white: 87.8 - brightBlack: 43 - brightRed: 43.5 - brightGreen: 25.5 - brightYellow: 14.1 - brightBlue: 47.8 - brightMagenta: 37.1 - brightCyan: 27 - brightWhite: 91.5 diff --git a/themes/base16-embers-dark.yaml b/themes/base16-embers-dark.yaml deleted file mode 100644 index ec278973..00000000 --- a/themes/base16-embers-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Embers Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#16130F" - fg: "#A39A90" - black: "#433B32" - red: "#826D57" - green: "#57826D" - yellow: "#828257" - blue: "#6D5782" - magenta: "#82576D" - cyan: "#576D82" - white: "#BEB6AE" - brightBlack: "#5A5047" - brightRed: "#826D57" - brightGreen: "#57826D" - brightYellow: "#6D8257" - brightBlue: "#6D5782" - brightMagenta: "#82576D" - brightCyan: "#576D82" - brightWhite: "#DBD6D1" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: "Base16 Embers Light" - contrast: - fg: 47.7 - black: 0 - red: 27 - green: 30.8 - yellow: 33.9 - blue: 19.9 - magenta: 21.5 - cyan: 24.4 - white: 62.9 - brightBlack: 14.1 - brightRed: 27 - brightGreen: 30.8 - brightYellow: 31.9 - brightBlue: 19.9 - brightMagenta: 21.5 - brightCyan: 24.4 - brightWhite: 81.5 diff --git a/themes/base16-embers-light.yaml b/themes/base16-embers-light.yaml deleted file mode 100644 index 96d12323..00000000 --- a/themes/base16-embers-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Embers Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#DBD6D1" - fg: "#433B32" - black: "#A39A90" - red: "#826D57" - green: "#57826D" - yellow: "#828257" - blue: "#6D5782" - magenta: "#82576D" - cyan: "#576D82" - white: "#2C2620" - brightBlack: "#8A8075" - brightRed: "#826D57" - brightGreen: "#57826D" - brightYellow: "#6D8257" - brightBlue: "#6D5782" - brightMagenta: "#82576D" - brightCyan: "#576D82" - brightWhite: "#16130F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Base16 Embers Dark" - contrast: - fg: 71.9 - black: 29.9 - red: 50.5 - green: 46.6 - yellow: 43.6 - blue: 57.8 - magenta: 56.1 - cyan: 53.2 - white: 78.3 - brightBlack: 42.7 - brightRed: 50.5 - brightGreen: 46.6 - brightYellow: 45.6 - brightBlue: 57.8 - brightMagenta: 56.1 - brightCyan: 53.2 - brightWhite: 81.6 diff --git a/themes/base16-flat-dark.yaml b/themes/base16-flat-dark.yaml deleted file mode 100644 index 6bae35f7..00000000 --- a/themes/base16-flat-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Flat Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#2C3E50" - fg: "#E0E0E0" - black: "#7F8C8D" - red: "#E74C3C" - green: "#2ECC71" - yellow: "#E67E22" - blue: "#3498DB" - magenta: "#9B59B6" - cyan: "#1ABC9C" - white: "#F5F5F5" - brightBlack: "#95A5A6" - brightRed: "#E74C3C" - brightGreen: "#2ECC71" - brightYellow: "#F1C40F" - brightBlue: "#3498DB" - brightMagenta: "#9B59B6" - brightCyan: "#1ABC9C" - brightWhite: "#ECF0F1" -meta: - mode: "dark" - accent: "orange" - hue: 249 - pair: "Base16 Flat Light" - contrast: - fg: 79.2 - black: 30.7 - red: 28.4 - green: 53 - yellow: 39.1 - blue: 34.8 - magenta: 20.9 - cyan: 46.5 - white: 92.6 - brightBlack: 43.2 - brightRed: 28.4 - brightGreen: 53 - brightYellow: 65.3 - brightBlue: 34.8 - brightMagenta: 20.9 - brightCyan: 46.5 - brightWhite: 88.9 diff --git a/themes/base16-flat-light.yaml b/themes/base16-flat-light.yaml deleted file mode 100644 index a546ed33..00000000 --- a/themes/base16-flat-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Flat Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#ECF0F1" - fg: "#7F8C8D" - black: "#E0E0E0" - red: "#E74C3C" - green: "#2ECC71" - yellow: "#E67E22" - blue: "#3498DB" - magenta: "#9B59B6" - cyan: "#1ABC9C" - white: "#34495E" - brightBlack: "#BDC3C7" - brightRed: "#E74C3C" - brightGreen: "#2ECC71" - brightYellow: "#F1C40F" - brightBlue: "#3498DB" - brightMagenta: "#9B59B6" - brightCyan: "#1ABC9C" - brightWhite: "#2C3E50" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Base16 Flat Dark" - contrast: - fg: 53 - black: 0 - red: 55.2 - green: 31.2 - yellow: 44.7 - blue: 48.9 - magenta: 62.7 - cyan: 37.5 - white: 82 - brightBlack: 23.5 - brightRed: 55.2 - brightGreen: 31.2 - brightYellow: 19.5 - brightBlue: 48.9 - brightMagenta: 62.7 - brightCyan: 37.5 - brightWhite: 86 diff --git a/themes/base16-google-dark.yaml b/themes/base16-google-dark.yaml deleted file mode 100644 index 20a1616e..00000000 --- a/themes/base16-google-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Google Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#1D1F21" - fg: "#C5C8C6" - black: "#373B41" - red: "#CC342B" - green: "#198844" - yellow: "#F96A38" - blue: "#3971ED" - magenta: "#A36AC7" - cyan: "#3971ED" - white: "#E0E0E0" - brightBlack: "#969896" - brightRed: "#CC342B" - brightGreen: "#198844" - brightYellow: "#FBA922" - brightBlue: "#3971ED" - brightMagenta: "#A36AC7" - brightCyan: "#3971ED" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: "Base16 Google Light" - contrast: - fg: 70.9 - black: 0 - red: 25.8 - green: 28.8 - yellow: 44.8 - blue: 29.6 - magenta: 33.9 - cyan: 29.6 - white: 85.9 - brightBlack: 44.4 - brightRed: 25.8 - brightGreen: 28.8 - brightYellow: 63.5 - brightBlue: 29.6 - brightMagenta: 33.9 - brightCyan: 29.6 - brightWhite: 105.9 diff --git a/themes/base16-google-light.yaml b/themes/base16-google-light.yaml deleted file mode 100644 index 40459583..00000000 --- a/themes/base16-google-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Google Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#FFFFFF" - fg: "#373B41" - black: "#C5C8C6" - red: "#CC342B" - green: "#198844" - yellow: "#F96A38" - blue: "#3971ED" - magenta: "#A36AC7" - cyan: "#3971ED" - white: "#282A2E" - brightBlack: "#B4B7B4" - brightRed: "#CC342B" - brightGreen: "#198844" - brightYellow: "#FBA922" - brightBlue: "#3971ED" - brightMagenta: "#A36AC7" - brightCyan: "#3971ED" - brightWhite: "#1D1F21" -meta: - mode: "light" - accent: "purple" - hue: null - pair: "Base16 Google Dark" - contrast: - fg: 96 - black: 30 - red: 73.9 - green: 70.9 - yellow: 55 - blue: 70.1 - magenta: 65.8 - cyan: 70.1 - white: 101.1 - brightBlack: 39.3 - brightRed: 73.9 - brightGreen: 70.9 - brightYellow: 37 - brightBlue: 70.1 - brightMagenta: 65.8 - brightCyan: 70.1 - brightWhite: 103.5 diff --git a/themes/base16-grayscale-dark.yaml b/themes/base16-grayscale-dark.yaml deleted file mode 100644 index c6ad60b6..00000000 --- a/themes/base16-grayscale-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Grayscale Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#101010" - fg: "#B9B9B9" - black: "#464646" - red: "#7C7C7C" - green: "#8E8E8E" - yellow: "#999999" - blue: "#686868" - magenta: "#747474" - cyan: "#868686" - white: "#E3E3E3" - brightBlack: "#525252" - brightRed: "#7C7C7C" - brightGreen: "#8E8E8E" - brightYellow: "#A0A0A0" - brightBlue: "#686868" - brightMagenta: "#747474" - brightCyan: "#868686" - brightWhite: "#F7F7F7" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: "Base16 Grayscale Light" - contrast: - fg: 64.2 - black: 10.1 - red: 32.4 - green: 41.2 - yellow: 46.8 - blue: 23.5 - magenta: 28.8 - cyan: 37.2 - white: 89.3 - brightBlack: 14.5 - brightRed: 32.4 - brightGreen: 41.2 - brightYellow: 50.4 - brightBlue: 23.5 - brightMagenta: 28.8 - brightCyan: 37.2 - brightWhite: 102.2 diff --git a/themes/base16-grayscale-light.yaml b/themes/base16-grayscale-light.yaml deleted file mode 100644 index 51fd208d..00000000 --- a/themes/base16-grayscale-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Grayscale Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#F7F7F7" - fg: "#464646" - black: "#B9B9B9" - red: "#7C7C7C" - green: "#8E8E8E" - yellow: "#999999" - blue: "#686868" - magenta: "#747474" - cyan: "#868686" - white: "#252525" - brightBlack: "#ABABAB" - brightRed: "#7C7C7C" - brightGreen: "#8E8E8E" - brightYellow: "#A0A0A0" - brightBlue: "#686868" - brightMagenta: "#747474" - brightCyan: "#868686" - brightWhite: "#101010" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: "Base16 Grayscale Dark" - contrast: - fg: 87.1 - black: 33 - red: 64 - green: 55.3 - yellow: 49.8 - blue: 73.1 - magenta: 67.7 - cyan: 59.2 - white: 97.5 - brightBlack: 40.5 - brightRed: 64 - brightGreen: 55.3 - brightYellow: 46.3 - brightBlue: 73.1 - brightMagenta: 67.7 - brightCyan: 59.2 - brightWhite: 100.7 diff --git a/themes/base16-green-screen-dark.yaml b/themes/base16-green-screen-dark.yaml deleted file mode 100644 index 9f988251..00000000 --- a/themes/base16-green-screen-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Green Screen Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#001100" - fg: "#00BB00" - black: "#005500" - red: "#007700" - green: "#00BB00" - yellow: "#009900" - blue: "#009900" - magenta: "#00BB00" - cyan: "#005500" - white: "#00DD00" - brightBlack: "#007700" - brightRed: "#007700" - brightGreen: "#00BB00" - brightYellow: "#007700" - brightBlue: "#009900" - brightMagenta: "#00BB00" - brightCyan: "#005500" - brightWhite: "#00FF00" -meta: - mode: "dark" - accent: "green" - hue: 142 - pair: "Base16 Green Screen Light" - contrast: - fg: 51.9 - black: 11.6 - red: 23.3 - green: 51.9 - yellow: 36.8 - blue: 36.8 - magenta: 51.9 - cyan: 11.6 - white: 68.4 - brightBlack: 23.3 - brightRed: 23.3 - brightGreen: 51.9 - brightYellow: 23.3 - brightBlue: 36.8 - brightMagenta: 51.9 - brightCyan: 11.6 - brightWhite: 86.1 diff --git a/themes/base16-green-screen-light.yaml b/themes/base16-green-screen-light.yaml deleted file mode 100644 index 4b685d56..00000000 --- a/themes/base16-green-screen-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Green Screen Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#00FF00" - fg: "#005500" - black: "#00BB00" - red: "#007700" - green: "#00BB00" - yellow: "#009900" - blue: "#009900" - magenta: "#00BB00" - cyan: "#005500" - white: "#003300" - brightBlack: "#009900" - brightRed: "#007700" - brightGreen: "#00BB00" - brightYellow: "#007700" - brightBlue: "#009900" - brightMagenta: "#00BB00" - brightCyan: "#005500" - brightWhite: "#001100" -meta: - mode: "light" - accent: "green" - hue: 142 - pair: "Base16 Green Screen Dark" - contrast: - fg: 70.8 - black: 30.2 - red: 58.6 - green: 30.2 - yellow: 45 - blue: 45 - magenta: 30.2 - cyan: 70.8 - white: 81 - brightBlack: 45 - brightRed: 58.6 - brightGreen: 30.2 - brightYellow: 58.6 - brightBlue: 45 - brightMagenta: 30.2 - brightCyan: 70.8 - brightWhite: 86 diff --git a/themes/base16-harmonic16-dark.yaml b/themes/base16-harmonic16-dark.yaml deleted file mode 100644 index 16bb1905..00000000 --- a/themes/base16-harmonic16-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Harmonic16 Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#0B1C2C" - fg: "#CBD6E2" - black: "#405C79" - red: "#BF8B56" - green: "#56BF8B" - yellow: "#BFBF56" - blue: "#8B56BF" - magenta: "#BF568B" - cyan: "#568BBF" - white: "#E5EBF1" - brightBlack: "#627E99" - brightRed: "#BF8B56" - brightGreen: "#56BF8B" - brightYellow: "#8BBF56" - brightBlue: "#8B56BF" - brightMagenta: "#BF568B" - brightCyan: "#568BBF" - brightWhite: "#F7F9FB" -meta: - mode: "dark" - accent: "magenta" - hue: 249 - pair: "Base16 Harmonic16 Light" - contrast: - fg: 79.4 - black: 16.5 - red: 44 - green: 56 - yellow: 63.7 - blue: 25.8 - magenta: 31.2 - cyan: 36.8 - white: 92.8 - brightBlack: 31 - brightRed: 44 - brightGreen: 56 - brightYellow: 58.2 - brightBlue: 25.8 - brightMagenta: 31.2 - brightCyan: 36.8 - brightWhite: 102.2 diff --git a/themes/base16-harmonic16-light.yaml b/themes/base16-harmonic16-light.yaml deleted file mode 100644 index 20919191..00000000 --- a/themes/base16-harmonic16-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Harmonic16 Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#F7F9FB" - fg: "#405C79" - black: "#CBD6E2" - red: "#BF8B56" - green: "#56BF8B" - yellow: "#BFBF56" - blue: "#8B56BF" - magenta: "#BF568B" - cyan: "#568BBF" - white: "#223B54" - brightBlack: "#AABCCE" - brightRed: "#BF8B56" - brightGreen: "#56BF8B" - brightYellow: "#8BBF56" - brightBlue: "#8B56BF" - brightMagenta: "#BF568B" - brightCyan: "#568BBF" - brightWhite: "#0B1C2C" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Base16 Harmonic16 Dark" - contrast: - fg: 80.2 - black: 18.6 - red: 52.6 - green: 40.9 - yellow: 33.5 - blue: 70.6 - magenta: 65.2 - cyan: 59.6 - white: 92.7 - brightBlack: 33.6 - brightRed: 52.6 - brightGreen: 40.9 - brightYellow: 38.7 - brightBlue: 70.6 - brightMagenta: 65.2 - brightCyan: 59.6 - brightWhite: 100.3 diff --git a/themes/base16-isotope-dark.yaml b/themes/base16-isotope-dark.yaml deleted file mode 100644 index e1a8e628..00000000 --- a/themes/base16-isotope-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Isotope Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#000000" - fg: "#D0D0D0" - black: "#606060" - red: "#FF0000" - green: "#33FF00" - yellow: "#FF9900" - blue: "#0066FF" - magenta: "#CC00FF" - cyan: "#00FFFF" - white: "#E0E0E0" - brightBlack: "#808080" - brightRed: "#FF0000" - brightGreen: "#33FF00" - brightYellow: "#FF0099" - brightBlue: "#0066FF" - brightMagenta: "#CC00FF" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: "Base16 Isotope Light" - contrast: - fg: 78.1 - black: 20.5 - red: 37.5 - green: 86.8 - yellow: 60.7 - blue: 29.3 - magenta: 35.5 - cyan: 92.2 - white: 87.9 - brightBlack: 34.8 - brightRed: 37.5 - brightGreen: 86.8 - brightYellow: 40.2 - brightBlue: 29.3 - brightMagenta: 35.5 - brightCyan: 92.2 - brightWhite: 107.9 diff --git a/themes/base16-isotope-light.yaml b/themes/base16-isotope-light.yaml deleted file mode 100644 index df61c22f..00000000 --- a/themes/base16-isotope-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Isotope Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#FFFFFF" - fg: "#606060" - black: "#D0D0D0" - red: "#FF0000" - green: "#33FF00" - yellow: "#FF9900" - blue: "#0066FF" - magenta: "#CC00FF" - cyan: "#00FFFF" - white: "#404040" - brightBlack: "#C0C0C0" - brightRed: "#FF0000" - brightGreen: "#33FF00" - brightYellow: "#FF0099" - brightBlue: "#0066FF" - brightMagenta: "#CC00FF" - brightCyan: "#00FFFF" - brightWhite: "#000000" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Base16 Isotope Dark" - contrast: - fg: 81.3 - black: 25 - red: 64.1 - green: 16.8 - yellow: 41.5 - blue: 72.4 - magenta: 66.2 - cyan: 11.8 - white: 94.1 - brightBlack: 34 - brightRed: 64.1 - brightGreen: 16.8 - brightYellow: 61.5 - brightBlue: 72.4 - brightMagenta: 66.2 - brightCyan: 11.8 - brightWhite: 106 diff --git a/themes/base16-marrakesh-dark.yaml b/themes/base16-marrakesh-dark.yaml deleted file mode 100644 index 677baa15..00000000 --- a/themes/base16-marrakesh-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Marrakesh Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#201602" - fg: "#948E48" - black: "#5F5B17" - red: "#C35359" - green: "#18974E" - yellow: "#B36144" - blue: "#477CA1" - magenta: "#8868B3" - cyan: "#75A738" - white: "#CCC37A" - brightBlack: "#6C6823" - brightRed: "#C35359" - brightGreen: "#18974E" - brightYellow: "#A88339" - brightBlue: "#477CA1" - brightMagenta: "#8868B3" - brightCyan: "#75A738" - brightWhite: "#FAF0A5" -meta: - mode: "dark" - accent: "teal" - hue: 84 - pair: "Base16 Marrakesh Light" - contrast: - fg: 39.4 - black: 16.7 - red: 30.2 - green: 35.9 - yellow: 30 - blue: 29.4 - magenta: 29.5 - cyan: 46.1 - white: 68.1 - brightBlack: 21.9 - brightRed: 30.2 - brightGreen: 35.9 - brightYellow: 37.9 - brightBlue: 29.4 - brightMagenta: 29.5 - brightCyan: 46.1 - brightWhite: 95.6 diff --git a/themes/base16-marrakesh-light.yaml b/themes/base16-marrakesh-light.yaml deleted file mode 100644 index 704f88c1..00000000 --- a/themes/base16-marrakesh-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Marrakesh Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#FAF0A5" - fg: "#5F5B17" - black: "#948E48" - red: "#C35359" - green: "#18974E" - yellow: "#B36144" - blue: "#477CA1" - magenta: "#8868B3" - cyan: "#75A738" - white: "#302E00" - brightBlack: "#86813B" - brightRed: "#C35359" - brightGreen: "#18974E" - brightYellow: "#A88339" - brightBlue: "#477CA1" - brightMagenta: "#8868B3" - brightCyan: "#75A738" - brightWhite: "#201602" -meta: - mode: "light" - accent: "teal" - hue: 102 - pair: "Base16 Marrakesh Dark" - contrast: - fg: 74 - black: 51 - red: 60.2 - green: 54.5 - yellow: 60.4 - blue: 61 - magenta: 60.9 - cyan: 44.4 - white: 90.2 - brightBlack: 57.3 - brightRed: 60.2 - brightGreen: 54.5 - brightYellow: 52.5 - brightBlue: 61 - brightMagenta: 60.9 - brightCyan: 44.4 - brightWhite: 94.4 diff --git a/themes/base16-mocha-dark.yaml b/themes/base16-mocha-dark.yaml deleted file mode 100644 index 7ed47bf0..00000000 --- a/themes/base16-mocha-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Mocha Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#3B3228" - fg: "#D0C8C6" - black: "#645240" - red: "#CB6077" - green: "#BEB55B" - yellow: "#D28B71" - blue: "#8AB3B5" - magenta: "#A89BB9" - cyan: "#7BBDA4" - white: "#E9E1DD" - brightBlack: "#7E705A" - brightRed: "#CB6077" - brightGreen: "#BEB55B" - brightYellow: "#F4BC87" - brightBlue: "#8AB3B5" - brightMagenta: "#A89BB9" - brightCyan: "#7BBDA4" - brightWhite: "#F5EEEB" -meta: - mode: "dark" - accent: "red" - hue: 70 - pair: "Base16 Mocha Light" - contrast: - fg: 68.3 - black: 10.2 - red: 30.3 - green: 55 - yellow: 43.1 - blue: 51.1 - magenta: 45 - cyan: 53.5 - white: 83.4 - brightBlack: 22.2 - brightRed: 30.3 - brightGreen: 55 - brightYellow: 66.7 - brightBlue: 51.1 - brightMagenta: 45 - brightCyan: 53.5 - brightWhite: 91.6 diff --git a/themes/base16-mocha-light.yaml b/themes/base16-mocha-light.yaml deleted file mode 100644 index c7300560..00000000 --- a/themes/base16-mocha-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Mocha Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#F5EEEB" - fg: "#645240" - black: "#D0C8C6" - red: "#CB6077" - green: "#BEB55B" - yellow: "#D28B71" - blue: "#8AB3B5" - magenta: "#A89BB9" - cyan: "#7BBDA4" - white: "#534636" - brightBlack: "#B8AFAD" - brightRed: "#CB6077" - brightGreen: "#BEB55B" - brightYellow: "#F4BC87" - brightBlue: "#8AB3B5" - brightMagenta: "#A89BB9" - brightCyan: "#7BBDA4" - brightWhite: "#3B3228" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Base16 Mocha Dark" - contrast: - fg: 76.5 - black: 19.3 - red: 56 - green: 32 - yellow: 43.4 - blue: 35.7 - magenta: 41.6 - cyan: 33.3 - white: 81.7 - brightBlack: 32.9 - brightRed: 56 - brightGreen: 32 - brightYellow: 20.8 - brightBlue: 35.7 - brightMagenta: 41.6 - brightCyan: 33.3 - brightWhite: 89.2 diff --git a/themes/base16-monokai-dark.yaml b/themes/base16-monokai-dark.yaml deleted file mode 100644 index 34fd1269..00000000 --- a/themes/base16-monokai-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Monokai Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#272822" - fg: "#F8F8F2" - black: "#49483E" - red: "#F92672" - green: "#A6E22E" - yellow: "#FD971F" - blue: "#66D9EF" - magenta: "#AE81FF" - cyan: "#A1EFE4" - white: "#F5F4F1" - brightBlack: "#75715E" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#F4BF75" - brightBlue: "#66D9EF" - brightMagenta: "#AE81FF" - brightCyan: "#A1EFE4" - brightWhite: "#F9F8F5" -meta: - mode: "dark" - accent: "red" - hue: 115 - pair: "Base16 Monokai Light" - contrast: - fg: 99.6 - black: 7.8 - red: 35 - green: 74.7 - yellow: 56.4 - blue: 71.1 - magenta: 44.2 - cyan: 85 - white: 97.3 - brightBlack: 24.3 - brightRed: 35 - brightGreen: 74.7 - brightYellow: 70.1 - brightBlue: 71.1 - brightMagenta: 44.2 - brightCyan: 85 - brightWhite: 99.9 diff --git a/themes/base16-monokai-light.yaml b/themes/base16-monokai-light.yaml deleted file mode 100644 index f967d063..00000000 --- a/themes/base16-monokai-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Monokai Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#F9F8F5" - fg: "#49483E" - black: "#F8F8F2" - red: "#F92672" - green: "#A6E22E" - yellow: "#FD971F" - blue: "#66D9EF" - magenta: "#AE81FF" - cyan: "#A1EFE4" - white: "#383830" - brightBlack: "#A59F85" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#F4BF75" - brightBlue: "#66D9EF" - brightMagenta: "#AE81FF" - brightCyan: "#A1EFE4" - brightWhite: "#272822" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Base16 Monokai Dark" - contrast: - fg: 87.1 - black: 0 - red: 59.2 - green: 20.9 - yellow: 38.3 - blue: 24.3 - magenta: 50.1 - cyan: 11.3 - white: 93 - brightBlack: 47.6 - brightRed: 59.2 - brightGreen: 20.9 - brightYellow: 25.2 - brightBlue: 24.3 - brightMagenta: 50.1 - brightCyan: 11.3 - brightWhite: 97.5 diff --git a/themes/base16-ocean-dark.yaml b/themes/base16-ocean-dark.yaml deleted file mode 100644 index 02dd249d..00000000 --- a/themes/base16-ocean-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Ocean Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#2B303B" - fg: "#C0C5CE" - black: "#4F5B66" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#D08770" - blue: "#8FA1B3" - magenta: "#B48EAD" - cyan: "#96B5B4" - white: "#DFE1E8" - brightBlack: "#65737E" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#8FA1B3" - brightMagenta: "#B48EAD" - brightCyan: "#96B5B4" - brightWhite: "#EFF1F5" -meta: - mode: "dark" - accent: "orange" - hue: 266 - pair: "Base16 Ocean Light" - contrast: - fg: 66.2 - black: 12.8 - red: 28.9 - green: 57.6 - yellow: 42.4 - blue: 45.1 - magenta: 42.4 - cyan: 53.9 - white: 83.5 - brightBlack: 22.8 - brightRed: 28.9 - brightGreen: 57.6 - brightYellow: 72.3 - brightBlue: 45.1 - brightMagenta: 42.4 - brightCyan: 53.9 - brightWhite: 93.5 diff --git a/themes/base16-ocean-light.yaml b/themes/base16-ocean-light.yaml deleted file mode 100644 index 1bbff8c3..00000000 --- a/themes/base16-ocean-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Ocean Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#EFF1F5" - fg: "#4F5B66" - black: "#C0C5CE" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#D08770" - blue: "#8FA1B3" - magenta: "#B48EAD" - cyan: "#96B5B4" - white: "#343D46" - brightBlack: "#A7ADBA" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#8FA1B3" - brightMagenta: "#B48EAD" - brightCyan: "#96B5B4" - brightWhite: "#2B303B" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Base16 Ocean Dark" - contrast: - fg: 75.7 - black: 23 - red: 59.3 - green: 31.2 - yellow: 46 - blue: 43.2 - magenta: 45.9 - cyan: 34.8 - white: 87.1 - brightBlack: 36 - brightRed: 59.3 - brightGreen: 31.2 - brightYellow: 17.3 - brightBlue: 43.2 - brightMagenta: 45.9 - brightCyan: 34.8 - brightWhite: 91.2 diff --git a/themes/base16-oceanicnext-dark.yaml b/themes/base16-oceanicnext-dark.yaml deleted file mode 100644 index 6bb2cbdb..00000000 --- a/themes/base16-oceanicnext-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 OceanicNext Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#1B2B34" - fg: "#C0C5CE" - black: "#4F5B66" - red: "#EC5F67" - green: "#99C794" - yellow: "#F99157" - blue: "#6699CC" - magenta: "#C594C5" - cyan: "#5FB3B3" - white: "#CDD3DE" - brightBlack: "#65737E" - brightRed: "#EC5F67" - brightGreen: "#99C794" - brightYellow: "#FAC863" - brightBlue: "#6699CC" - brightMagenta: "#C594C5" - brightCyan: "#5FB3B3" - brightWhite: "#D8DEE9" -meta: - mode: "dark" - accent: "orange" - hue: 234 - pair: "Base16 OceanicNext Light" - contrast: - fg: 67.6 - black: 14.2 - red: 38.7 - green: 62.2 - yellow: 53.9 - blue: 41.5 - magenta: 49.4 - cyan: 50.4 - white: 76 - brightBlack: 24.2 - brightRed: 38.7 - brightGreen: 62.2 - brightYellow: 74.1 - brightBlue: 41.5 - brightMagenta: 49.4 - brightCyan: 50.4 - brightWhite: 82.7 diff --git a/themes/base16-oceanicnext-light.yaml b/themes/base16-oceanicnext-light.yaml deleted file mode 100644 index 0c45c2b1..00000000 --- a/themes/base16-oceanicnext-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 OceanicNext Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#D8DEE9" - fg: "#4F5B66" - black: "#C0C5CE" - red: "#EC5F67" - green: "#99C794" - yellow: "#F99157" - blue: "#6699CC" - magenta: "#C594C5" - cyan: "#5FB3B3" - white: "#343D46" - brightBlack: "#A7ADBA" - brightRed: "#EC5F67" - brightGreen: "#99C794" - brightYellow: "#FAC863" - brightBlue: "#6699CC" - brightMagenta: "#C594C5" - brightCyan: "#5FB3B3" - brightWhite: "#1B2B34" -meta: - mode: "light" - accent: "orange" - hue: 263 - pair: "Base16 OceanicNext Dark" - contrast: - fg: 64.5 - black: 11.8 - red: 39.8 - green: 17 - yellow: 24.9 - blue: 37 - magenta: 29.3 - cyan: 28.3 - white: 75.9 - brightBlack: 24.8 - brightRed: 39.8 - brightGreen: 17 - brightYellow: 0 - brightBlue: 37 - brightMagenta: 29.3 - brightCyan: 28.3 - brightWhite: 81.7 diff --git a/themes/base16-paraiso-dark.yaml b/themes/base16-paraiso-dark.yaml deleted file mode 100644 index 99709710..00000000 --- a/themes/base16-paraiso-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Paraiso Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#2F1E2E" - fg: "#A39E9B" - black: "#4F424C" - red: "#EF6155" - green: "#48B685" - yellow: "#F99B15" - blue: "#06B6EF" - magenta: "#815BA4" - cyan: "#5BC4BF" - white: "#B9B6B0" - brightBlack: "#776E71" - brightRed: "#EF6155" - brightGreen: "#48B685" - brightYellow: "#FEC418" - brightBlue: "#06B6EF" - brightMagenta: "#815BA4" - brightCyan: "#5BC4BF" - brightWhite: "#E7E9DB" -meta: - mode: "dark" - accent: "orange" - hue: 329 - pair: "Base16 Paraiso Light" - contrast: - fg: 47.5 - black: 7.7 - red: 40.3 - green: 49.9 - yellow: 57.5 - blue: 53.7 - magenta: 22.8 - cyan: 59.1 - white: 60.3 - brightBlack: 24.8 - brightRed: 40.3 - brightGreen: 49.9 - brightYellow: 73.4 - brightBlue: 53.7 - brightMagenta: 22.8 - brightCyan: 59.1 - brightWhite: 89.9 diff --git a/themes/base16-paraiso-light.yaml b/themes/base16-paraiso-light.yaml deleted file mode 100644 index d295d296..00000000 --- a/themes/base16-paraiso-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Paraiso Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#E7E9DB" - fg: "#4F424C" - black: "#A39E9B" - red: "#EF6155" - green: "#48B685" - yellow: "#F99B15" - blue: "#06B6EF" - magenta: "#815BA4" - cyan: "#5BC4BF" - white: "#41323F" - brightBlack: "#8D8687" - brightRed: "#EF6155" - brightGreen: "#48B685" - brightYellow: "#FEC418" - brightBlue: "#06B6EF" - brightMagenta: "#815BA4" - brightCyan: "#5BC4BF" - brightWhite: "#2F1E2E" -meta: - mode: "light" - accent: "orange" - hue: 113 - pair: "Base16 Paraiso Dark" - contrast: - fg: 78.1 - black: 37.8 - red: 44.9 - green: 35.5 - yellow: 28.2 - blue: 31.8 - magenta: 62.3 - cyan: 26.6 - white: 83.6 - brightBlack: 49.4 - brightRed: 44.9 - brightGreen: 35.5 - brightYellow: 13 - brightBlue: 31.8 - brightMagenta: 62.3 - brightCyan: 26.6 - brightWhite: 88.7 diff --git a/themes/base16-pop-dark.yaml b/themes/base16-pop-dark.yaml deleted file mode 100644 index 4d04a8ca..00000000 --- a/themes/base16-pop-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Pop Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#000000" - fg: "#D0D0D0" - black: "#303030" - red: "#EB008A" - green: "#37B349" - yellow: "#F29333" - blue: "#0E5A94" - magenta: "#B31E8D" - cyan: "#00AABB" - white: "#E0E0E0" - brightBlack: "#505050" - brightRed: "#EB008A" - brightGreen: "#37B349" - brightYellow: "#F8CA12" - brightBlue: "#0E5A94" - brightMagenta: "#B31E8D" - brightCyan: "#00AABB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: "Base16 Pop Light" - contrast: - fg: 78.1 - black: 0 - red: 34.8 - green: 49.6 - yellow: 56.4 - blue: 17.4 - magenta: 23.3 - cyan: 48.4 - white: 87.9 - brightBlack: 14.2 - brightRed: 34.8 - brightGreen: 49.6 - brightYellow: 77.6 - brightBlue: 17.4 - brightMagenta: 23.3 - brightCyan: 48.4 - brightWhite: 107.9 diff --git a/themes/base16-pop-light.yaml b/themes/base16-pop-light.yaml deleted file mode 100644 index 6e7b9589..00000000 --- a/themes/base16-pop-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Pop Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#FFFFFF" - fg: "#303030" - black: "#D0D0D0" - red: "#EB008A" - green: "#37B349" - yellow: "#F29333" - blue: "#0E5A94" - magenta: "#B31E8D" - cyan: "#00AABB" - white: "#202020" - brightBlack: "#B0B0B0" - brightRed: "#EB008A" - brightGreen: "#37B349" - brightYellow: "#F8CA12" - brightBlue: "#0E5A94" - brightMagenta: "#B31E8D" - brightCyan: "#00AABB" - brightWhite: "#000000" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Base16 Pop Dark" - contrast: - fg: 99.6 - black: 25 - red: 66.9 - green: 52.3 - yellow: 45.7 - blue: 84.6 - magenta: 78.5 - cyan: 53.4 - white: 103.3 - brightBlack: 42.7 - brightRed: 66.9 - brightGreen: 52.3 - brightYellow: 25.5 - brightBlue: 84.6 - brightMagenta: 78.5 - brightCyan: 53.4 - brightWhite: 106 diff --git a/themes/base16-railscasts-dark.yaml b/themes/base16-railscasts-dark.yaml deleted file mode 100644 index cc0e7c55..00000000 --- a/themes/base16-railscasts-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Railscasts Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#2B2B2B" - fg: "#E6E1DC" - black: "#3A4055" - red: "#DA4939" - green: "#A5C261" - yellow: "#CC7833" - blue: "#6D9CBE" - magenta: "#B6B3EB" - cyan: "#519F50" - white: "#F4F1ED" - brightBlack: "#5A647E" - brightRed: "#DA4939" - brightGreen: "#A5C261" - brightYellow: "#FFC66D" - brightBlue: "#6D9CBE" - brightMagenta: "#B6B3EB" - brightCyan: "#519F50" - brightWhite: "#F9F7F3" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Base16 Railscasts Light" - contrast: - fg: 84.9 - black: 0 - red: 29.7 - green: 59.6 - yellow: 37.3 - blue: 42 - magenta: 60.3 - cyan: 37.9 - white: 94.9 - brightBlack: 18.3 - brightRed: 29.7 - brightGreen: 59.6 - brightYellow: 73.9 - brightBlue: 42 - brightMagenta: 60.3 - brightCyan: 37.9 - brightWhite: 98.7 diff --git a/themes/base16-railscasts-light.yaml b/themes/base16-railscasts-light.yaml deleted file mode 100644 index faee296e..00000000 --- a/themes/base16-railscasts-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Railscasts Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#F9F7F3" - fg: "#3A4055" - black: "#E6E1DC" - red: "#DA4939" - green: "#A5C261" - yellow: "#CC7833" - blue: "#6D9CBE" - magenta: "#B6B3EB" - cyan: "#519F50" - white: "#272935" - brightBlack: "#D4CFC9" - brightRed: "#DA4939" - brightGreen: "#A5C261" - brightYellow: "#FFC66D" - brightBlue: "#6D9CBE" - brightMagenta: "#B6B3EB" - brightCyan: "#519F50" - brightWhite: "#2B2B2B" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Base16 Railscasts Dark" - contrast: - fg: 89.2 - black: 10.1 - red: 63.2 - green: 34 - yellow: 55.7 - blue: 51.1 - magenta: 33.4 - cyan: 55.1 - white: 96.5 - brightBlack: 20.5 - brightRed: 63.2 - brightGreen: 34 - brightYellow: 20.5 - brightBlue: 51.1 - brightMagenta: 33.4 - brightCyan: 55.1 - brightWhite: 96.2 diff --git a/themes/base16-shapeshifter-dark.yaml b/themes/base16-shapeshifter-dark.yaml deleted file mode 100644 index 31bb6358..00000000 --- a/themes/base16-shapeshifter-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Shapeshifter Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#000000" - fg: "#ABABAB" - black: "#102015" - red: "#E92F2F" - green: "#0ED839" - yellow: "#E09448" - blue: "#3B48E3" - magenta: "#F996E2" - cyan: "#23EDDA" - white: "#E0E0E0" - brightBlack: "#343434" - brightRed: "#E92F2F" - brightGreen: "#0ED839" - brightYellow: "#DDDD13" - brightBlue: "#3B48E3" - brightMagenta: "#F996E2" - brightCyan: "#23EDDA" - brightWhite: "#F9F9F9" -meta: - mode: "dark" - accent: "green" - hue: null - pair: "Base16 Shapeshifter Light" - contrast: - fg: 56.8 - black: 0 - red: 33.9 - green: 66.4 - yellow: 53.7 - blue: 20.4 - magenta: 63.8 - cyan: 81.3 - white: 87.9 - brightBlack: 0 - brightRed: 33.9 - brightGreen: 66.4 - brightYellow: 81.9 - brightBlue: 20.4 - brightMagenta: 63.8 - brightCyan: 81.3 - brightWhite: 103.9 diff --git a/themes/base16-shapeshifter-light.yaml b/themes/base16-shapeshifter-light.yaml deleted file mode 100644 index 587a8a82..00000000 --- a/themes/base16-shapeshifter-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Shapeshifter Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#F9F9F9" - fg: "#102015" - black: "#ABABAB" - red: "#E92F2F" - green: "#0ED839" - yellow: "#E09448" - blue: "#3B48E3" - magenta: "#F996E2" - cyan: "#23EDDA" - white: "#040404" - brightBlack: "#555555" - brightRed: "#E92F2F" - brightGreen: "#0ED839" - brightYellow: "#DDDD13" - brightBlue: "#3B48E3" - brightMagenta: "#F996E2" - brightCyan: "#23EDDA" - brightWhite: "#000000" -meta: - mode: "light" - accent: "green" - hue: null - pair: "Base16 Shapeshifter Dark" - contrast: - fg: 100.2 - black: 41.7 - red: 64.2 - green: 32.5 - yellow: 44.7 - blue: 77.9 - magenta: 34.9 - cyan: 18.4 - white: 102.4 - brightBlack: 82.3 - brightRed: 64.2 - brightGreen: 32.5 - brightYellow: 17.9 - brightBlue: 77.9 - brightMagenta: 34.9 - brightCyan: 18.4 - brightWhite: 102.5 diff --git a/themes/base16-solarized-dark.yaml b/themes/base16-solarized-dark.yaml deleted file mode 100644 index db799188..00000000 --- a/themes/base16-solarized-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Solarized Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#002B36" - fg: "#93A1A1" - black: "#586E75" - red: "#DC322F" - green: "#859900" - yellow: "#CB4B16" - blue: "#268BD2" - magenta: "#6C71C4" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#657B83" - brightRed: "#DC322F" - brightGreen: "#859900" - brightYellow: "#B58900" - brightBlue: "#268BD2" - brightMagenta: "#6C71C4" - brightCyan: "#2AA198" - brightWhite: "#FDF6E3" -meta: - mode: "dark" - accent: "orange" - hue: 220 - pair: "Base16 Solarized Light" - contrast: - fg: 46.4 - black: 21.5 - red: 27.7 - green: 39.2 - yellow: 27.2 - blue: 34.3 - magenta: 28 - cyan: 40 - white: 89.5 - brightBlack: 27.3 - brightRed: 27.7 - brightGreen: 39.2 - brightYellow: 39.2 - brightBlue: 34.3 - brightMagenta: 28 - brightCyan: 40 - brightWhite: 98.6 diff --git a/themes/base16-solarized-light.yaml b/themes/base16-solarized-light.yaml deleted file mode 100644 index 79b7a8be..00000000 --- a/themes/base16-solarized-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Solarized Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#FDF6E3" - fg: "#586E75" - black: "#93A1A1" - red: "#DC322F" - green: "#859900" - yellow: "#CB4B16" - blue: "#268BD2" - magenta: "#6C71C4" - cyan: "#2AA198" - white: "#073642" - brightBlack: "#839496" - brightRed: "#DC322F" - brightGreen: "#859900" - brightYellow: "#B58900" - brightBlue: "#268BD2" - brightMagenta: "#6C71C4" - brightCyan: "#2AA198" - brightWhite: "#002B36" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Base16 Solarized Dark" - contrast: - fg: 71.6 - black: 46.7 - red: 65.3 - green: 53.8 - yellow: 65.8 - blue: 58.7 - magenta: 65 - cyan: 53.1 - white: 93.7 - brightBlack: 53.5 - brightRed: 65.3 - brightGreen: 53.8 - brightYellow: 53.8 - brightBlue: 58.7 - brightMagenta: 65 - brightCyan: 53.1 - brightWhite: 96.4 diff --git a/themes/base16-summerfruit-dark.yaml b/themes/base16-summerfruit-dark.yaml deleted file mode 100644 index 86dcfed1..00000000 --- a/themes/base16-summerfruit-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Summerfruit Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#151515" - fg: "#D0D0D0" - black: "#303030" - red: "#FF0086" - green: "#00C918" - yellow: "#FD8900" - blue: "#3777E6" - magenta: "#AD00A1" - cyan: "#1FAAAA" - white: "#E0E0E0" - brightBlack: "#505050" - brightRed: "#FF0086" - brightGreen: "#00C918" - brightYellow: "#ABA800" - brightBlue: "#3777E6" - brightMagenta: "#AD00A1" - brightCyan: "#1FAAAA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: "Base16 Summerfruit Light" - contrast: - fg: 77.2 - black: 0 - red: 38.7 - green: 58.1 - yellow: 54.6 - blue: 32 - magenta: 21.7 - cyan: 47 - white: 87.1 - brightBlack: 13.4 - brightRed: 38.7 - brightGreen: 58.1 - brightYellow: 51.9 - brightBlue: 32 - brightMagenta: 21.7 - brightCyan: 47 - brightWhite: 107.1 diff --git a/themes/base16-summerfruit-light.yaml b/themes/base16-summerfruit-light.yaml deleted file mode 100644 index dbd4cec4..00000000 --- a/themes/base16-summerfruit-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Summerfruit Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#FFFFFF" - fg: "#101010" - black: "#D0D0D0" - red: "#FF0086" - green: "#00C918" - yellow: "#FD8900" - blue: "#3777E6" - magenta: "#AD00A1" - cyan: "#1FAAAA" - white: "#151515" - brightBlack: "#B0B0B0" - brightRed: "#FF0086" - brightGreen: "#00C918" - brightYellow: "#ABA800" - brightBlue: "#3777E6" - brightMagenta: "#AD00A1" - brightCyan: "#1FAAAA" - brightWhite: "#202020" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Base16 Summerfruit Dark" - contrast: - fg: 105.5 - black: 25 - red: 62.2 - green: 43.3 - yellow: 46.6 - blue: 68.9 - magenta: 79.3 - cyan: 54 - white: 104.9 - brightBlack: 42.7 - brightRed: 62.2 - brightGreen: 43.3 - brightYellow: 49.2 - brightBlue: 68.9 - brightMagenta: 79.3 - brightCyan: 54 - brightWhite: 103.3 diff --git a/themes/base16-tomorrow-dark.yaml b/themes/base16-tomorrow-dark.yaml deleted file mode 100644 index ac5cda04..00000000 --- a/themes/base16-tomorrow-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Tomorrow Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#1D1F21" - fg: "#D6D6D6" - black: "#4D4D4C" - red: "#C82829" - green: "#718C00" - yellow: "#F5871F" - blue: "#4271AE" - magenta: "#8959A8" - cyan: "#3E999F" - white: "#E0E0E0" - brightBlack: "#969896" - brightRed: "#C82829" - brightGreen: "#718C00" - brightYellow: "#EAB700" - brightBlue: "#4271AE" - brightMagenta: "#8959A8" - brightCyan: "#3E999F" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Base16 Tomorrow Light" - contrast: - fg: 79.8 - black: 11.1 - red: 23.8 - green: 33.9 - yellow: 51.3 - blue: 25.4 - magenta: 24.4 - cyan: 39 - white: 85.9 - brightBlack: 44.4 - brightRed: 23.8 - brightGreen: 33.9 - brightYellow: 65.7 - brightBlue: 25.4 - brightMagenta: 24.4 - brightCyan: 39 - brightWhite: 105.9 diff --git a/themes/base16-tomorrow-light.yaml b/themes/base16-tomorrow-light.yaml deleted file mode 100644 index 4bfb6e4a..00000000 --- a/themes/base16-tomorrow-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Tomorrow Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#FFFFFF" - fg: "#4D4D4C" - black: "#D6D6D6" - red: "#C82829" - green: "#718C00" - yellow: "#F5871F" - blue: "#4271AE" - magenta: "#8959A8" - cyan: "#3E999F" - white: "#282A2E" - brightBlack: "#8E908C" - brightRed: "#C82829" - brightGreen: "#718C00" - brightYellow: "#EAB700" - brightBlue: "#4271AE" - brightMagenta: "#8959A8" - brightCyan: "#3E999F" - brightWhite: "#1D1F21" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Base16 Tomorrow Dark" - contrast: - fg: 89.2 - black: 21.6 - red: 76 - green: 65.8 - yellow: 48.7 - blue: 74.3 - magenta: 75.4 - cyan: 60.7 - white: 101.1 - brightBlack: 59.5 - brightRed: 76 - brightGreen: 65.8 - brightYellow: 34.9 - brightBlue: 74.3 - brightMagenta: 75.4 - brightCyan: 60.7 - brightWhite: 103.5 diff --git a/themes/base16-twilight-dark.yaml b/themes/base16-twilight-dark.yaml deleted file mode 100644 index 43f28c80..00000000 --- a/themes/base16-twilight-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Twilight Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#1E1E1E" - fg: "#A7A7A7" - black: "#464B50" - red: "#CF6A4C" - green: "#8F9D6A" - yellow: "#CDA869" - blue: "#7587A6" - magenta: "#9B859D" - cyan: "#AFC4DB" - white: "#C3C3C3" - brightBlack: "#5F5A60" - brightRed: "#CF6A4C" - brightGreen: "#8F9D6A" - brightYellow: "#F9EE98" - brightBlue: "#7587A6" - brightMagenta: "#9B859D" - brightCyan: "#AFC4DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Base16 Twilight Light" - contrast: - fg: 52.8 - black: 10.3 - red: 36.6 - green: 44.4 - yellow: 56.4 - blue: 35.9 - magenta: 38.7 - cyan: 67.7 - white: 68.5 - brightBlack: 16.9 - brightRed: 36.6 - brightGreen: 44.4 - brightYellow: 93.4 - brightBlue: 35.9 - brightMagenta: 38.7 - brightCyan: 67.7 - brightWhite: 106 diff --git a/themes/base16-twilight-light.yaml b/themes/base16-twilight-light.yaml deleted file mode 100644 index b0c6730b..00000000 --- a/themes/base16-twilight-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Twilight Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#FFFFFF" - fg: "#464B50" - black: "#A7A7A7" - red: "#CF6A4C" - green: "#8F9D6A" - yellow: "#CDA869" - blue: "#7587A6" - magenta: "#9B859D" - cyan: "#AFC4DB" - white: "#323537" - brightBlack: "#838184" - brightRed: "#CF6A4C" - brightGreen: "#8F9D6A" - brightYellow: "#F9EE98" - brightBlue: "#7587A6" - brightMagenta: "#9B859D" - brightCyan: "#AFC4DB" - brightWhite: "#1E1E1E" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Base16 Twilight Dark" - contrast: - fg: 90.2 - black: 47.4 - red: 63.2 - green: 55.5 - yellow: 43.9 - blue: 64 - magenta: 61.1 - cyan: 33.1 - white: 98.2 - brightBlack: 66.1 - brightRed: 63.2 - brightGreen: 55.5 - brightYellow: 8.9 - brightBlue: 64 - brightMagenta: 61.1 - brightCyan: 33.1 - brightWhite: 103.6 diff --git a/themes/base16-unikitty-dark.yaml b/themes/base16-unikitty-dark.yaml deleted file mode 100644 index 26c748d9..00000000 --- a/themes/base16-unikitty-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Unikitty Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#2E2A31" - fg: "#BCBABE" - black: "#666369" - red: "#D8137F" - green: "#17AD98" - yellow: "#D65407" - blue: "#796AF5" - magenta: "#BB60EA" - cyan: "#149BDA" - white: "#D8D7DA" - brightBlack: "#838085" - brightRed: "#D8137F" - brightGreen: "#17AD98" - brightYellow: "#DC8A0E" - brightBlue: "#796AF5" - brightMagenta: "#BB60EA" - brightCyan: "#149BDA" - brightWhite: "#F5F4F7" -meta: - mode: "dark" - accent: "red" - hue: 311 - pair: "Base16 Unikitty Light" - contrast: - fg: 61.5 - black: 18.1 - red: 26 - green: 44.2 - yellow: 30.4 - blue: 30.2 - magenta: 35.4 - cyan: 40 - white: 78.5 - brightBlack: 31.1 - brightRed: 26 - brightGreen: 44.2 - brightYellow: 45.3 - brightBlue: 30.2 - brightMagenta: 35.4 - brightCyan: 40 - brightWhite: 96.8 diff --git a/themes/base16-unikitty-light.yaml b/themes/base16-unikitty-light.yaml deleted file mode 100644 index c4dcdde0..00000000 --- a/themes/base16-unikitty-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Unikitty Light" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#FFFFFF" - fg: "#6C696E" - black: "#C4C3C5" - red: "#D8137F" - green: "#17AD98" - yellow: "#D65407" - blue: "#775DFF" - magenta: "#AA17E6" - cyan: "#149BDA" - white: "#4F4B51" - brightBlack: "#A7A5A8" - brightRed: "#D8137F" - brightGreen: "#17AD98" - brightYellow: "#DC8A0E" - brightBlue: "#775DFF" - brightMagenta: "#AA17E6" - brightCyan: "#149BDA" - brightWhite: "#322D34" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Base16 Unikitty Dark" - contrast: - fg: 77 - black: 32.1 - red: 71.5 - green: 53.5 - yellow: 67.1 - blue: 69.8 - magenta: 74.3 - cyan: 57.6 - white: 89.4 - brightBlack: 48.1 - brightRed: 71.5 - brightGreen: 53.5 - brightYellow: 52.5 - brightBlue: 69.8 - brightMagenta: 74.3 - brightCyan: 57.6 - brightWhite: 99.9 diff --git a/themes/base16-woodland-dark.yaml b/themes/base16-woodland-dark.yaml deleted file mode 100644 index 37fa7237..00000000 --- a/themes/base16-woodland-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Base16 Woodland Dark" -source: - marketplace_id: "AndrsDC.base16-themes" - version: "1.4.5" - installs: 159110 - rating: 4.29 - ratings: 7 - author: "AndrsDC" - repo: "https://github.com/AndrsDC/base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" -colors: - bg: "#231E18" - fg: "#CABCB1" - black: "#48413A" - red: "#D35C5C" - green: "#B7BA53" - yellow: "#CA7F32" - blue: "#88A4D3" - magenta: "#BB90E2" - cyan: "#6EB958" - white: "#D7C8BC" - brightBlack: "#9D8B70" - brightRed: "#D35C5C" - brightGreen: "#B7BA53" - brightYellow: "#E0AC16" - brightBlue: "#88A4D3" - brightMagenta: "#BB90E2" - brightCyan: "#6EB958" - brightWhite: "#E4D4C8" -meta: - mode: "dark" - accent: "yellow" - hue: 72 - pair: null - contrast: - fg: 65.7 - black: 0 - red: 34.4 - green: 60.1 - yellow: 41.1 - blue: 50.4 - magenta: 50 - cyan: 53 - white: 72.8 - brightBlack: 39.4 - brightRed: 34.4 - brightGreen: 60.1 - brightYellow: 59.9 - brightBlue: 50.4 - brightMagenta: 50 - brightCyan: 53 - brightWhite: 80.2 diff --git a/themes/basic-black.yaml b/themes/basic-black.yaml deleted file mode 100644 index 1ba7ca43..00000000 --- a/themes/basic-black.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "basic_black" -source: - marketplace_id: "Alencar26.dk-bee" - version: "0.0.2" - installs: 817 - rating: 0 - ratings: 0 - author: "André Alencar" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Alencar26.dk-bee" -colors: - bg: "#090909" - fg: "#F8F8F2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 102.9 - black: 0 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.3 - magenta: 30.7 - cyan: 48.5 - white: 90.9 - brightBlack: 22.9 - brightRed: 39.5 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.9 - brightMagenta: 46.3 - brightCyan: 56.3 - brightWhite: 90.9 diff --git a/themes/basic-blue.yaml b/themes/basic-blue.yaml deleted file mode 100644 index ba53175a..00000000 --- a/themes/basic-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "basic blue" -source: - marketplace_id: "guicastro13.onebitcode-theme" - version: "0.0.5" - installs: 2293 - rating: 5 - ratings: 2 - author: "guicastro13" - repo: "https://github.com/guicastro13/onebitcode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" -colors: - bg: "#292C3E" - fg: "#B4B4B4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 277 - pair: null - contrast: - fg: 57.3 - black: 0 - red: 23.3 - green: 49.5 - yellow: 82.2 - blue: 24 - magenta: 26.3 - cyan: 44.1 - white: 86.6 - brightBlack: 18.6 - brightRed: 35.1 - brightGreen: 60.1 - brightYellow: 92.2 - brightBlue: 36.5 - brightMagenta: 41.9 - brightCyan: 51.9 - brightWhite: 86.6 diff --git a/themes/basterdized.yaml b/themes/basterdized.yaml index 278280cb..1cdf0d15 100644 --- a/themes/basterdized.yaml +++ b/themes/basterdized.yaml @@ -8,6 +8,8 @@ source: author: "nashpatty" repo: "https://github.com/nashpatty/vs-code-basterdized" url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.basterdized" + formats: + zed: "https://raw.githubusercontent.com/nashpatty/vs-code-basterdized/main/themes/Basterdized-color-theme.json" colors: bg: "#1E1F20" fg: "#839496" diff --git a/themes/bat.yaml b/themes/bat.yaml index a0f0ea66..351bd649 100644 --- a/themes/bat.yaml +++ b/themes/bat.yaml @@ -2,12 +2,13 @@ name: "bat" source: marketplace_id: "JohannesFreutel.bat" version: "0.0.12" - installs: 3384 + installs: 3388 rating: 0 ratings: 0 author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.bat" + formats: null colors: bg: "#000308" fg: "#008EA4" diff --git a/themes/batcave.yaml b/themes/batcave.yaml index 62bf6c56..6e125641 100644 --- a/themes/batcave.yaml +++ b/themes/batcave.yaml @@ -2,12 +2,13 @@ name: "Batcave" source: marketplace_id: "mertdeveci.batcave-theme" version: "1.0.2" - installs: 81 + installs: 82 rating: 0 ratings: 0 author: "Mert Deveci" repo: "https://github.com/mertdeveci/batcave-theme" url: "https://marketplace.visualstudio.com/items?itemName=mertdeveci.batcave-theme" + formats: null colors: bg: "#0A0A0F" fg: "#C5D0E6" diff --git a/themes/batsignal-light-color-theme.yaml b/themes/batsignal-light-color-theme.yaml deleted file mode 100644 index 5433d29b..00000000 --- a/themes/batsignal-light-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Batsignal-light-color-theme" -source: - marketplace_id: "tamagui.batsignal" - version: "0.0.9" - installs: 2046 - rating: 0 - ratings: 0 - author: "tamagui" - repo: "https://github.com/natew/batsignal" - url: "https://marketplace.visualstudio.com/items?itemName=tamagui.batsignal" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#FF0032" - green: "#00FF68" - yellow: "#FFCA00" - blue: "#5A5A5A" - magenta: "#7D46FC" - cyan: "#00D2FF" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#FF0032" - brightGreen: "#00FF68" - brightYellow: "#FFCA00" - brightBlue: "#7A7A7A" - brightMagenta: "#7D46FC" - brightCyan: "#00D2FF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 106 - black: 106 - red: 63.9 - green: 16.5 - yellow: 24.4 - blue: 83.9 - magenta: 74 - cyan: 32.7 - white: 0 - brightBlack: 106 - brightRed: 63.9 - brightGreen: 16.5 - brightYellow: 24.4 - brightBlue: 69.7 - brightMagenta: 74 - brightCyan: 32.7 - brightWhite: 0 diff --git a/themes/battutu.yaml b/themes/battutu.yaml index e3502833..f225ca25 100644 --- a/themes/battutu.yaml +++ b/themes/battutu.yaml @@ -8,6 +8,7 @@ source: author: "Amira Chaabane" repo: "https://github.com/Amira-Chaabne/battutu-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AmiraChaabane.battutu" + formats: null colors: bg: "#0A151D" fg: "#B8A2C2" diff --git a/themes/bazmatheme.yaml b/themes/bazmatheme.yaml index 75073029..0700a631 100644 --- a/themes/bazmatheme.yaml +++ b/themes/bazmatheme.yaml @@ -8,6 +8,7 @@ source: author: "bayu priyambada" repo: null url: "https://marketplace.visualstudio.com/items?itemName=bayupriyambada.bazma-theme" + formats: null colors: bg: "#000000" fg: "#C07A0E" diff --git a/themes/bazutya.yaml b/themes/bazutya.yaml index 3399d3f1..94fc6c51 100644 --- a/themes/bazutya.yaml +++ b/themes/bazutya.yaml @@ -1,4 +1,4 @@ -name: "Bazutya" +name: "bazutya" source: marketplace_id: "bazutya.bazutya" version: "0.0.5" @@ -8,6 +8,7 @@ source: author: "Bazutya" repo: "https://github.com/kotuck/bazutya" url: "https://marketplace.visualstudio.com/items?itemName=bazutya.bazutya" + formats: null colors: bg: "#202030" fg: "#D5D5E8" diff --git a/themes/bbbalabamasuntan.yaml b/themes/bbbalabamasuntan.yaml index e8002794..9c34a84c 100644 --- a/themes/bbbalabamasuntan.yaml +++ b/themes/bbbalabamasuntan.yaml @@ -8,6 +8,7 @@ source: author: "cmjchrisjones" repo: "https://github.com/cmjchrisjones/BBBThemes" url: "https://marketplace.visualstudio.com/items?itemName=cmjchrisjones1.bbbthemes" + formats: null colors: bg: "#FF0000" fg: "#FFFF00" diff --git a/themes/bbbdark.yaml b/themes/bbbdark.yaml index 60125afa..df2b899a 100644 --- a/themes/bbbdark.yaml +++ b/themes/bbbdark.yaml @@ -8,6 +8,7 @@ source: author: "cmjchrisjones" repo: "https://github.com/cmjchrisjones/BBBThemes" url: "https://marketplace.visualstudio.com/items?itemName=cmjchrisjones1.bbbthemes" + formats: null colors: bg: "#000000" fg: "#000000" diff --git a/themes/bbbhotdogstand.yaml b/themes/bbbhotdogstand.yaml index 32c78f6c..fb8eb46c 100644 --- a/themes/bbbhotdogstand.yaml +++ b/themes/bbbhotdogstand.yaml @@ -8,6 +8,7 @@ source: author: "cmjchrisjones" repo: "https://github.com/cmjchrisjones/BBBThemes" url: "https://marketplace.visualstudio.com/items?itemName=cmjchrisjones1.bbbthemes" + formats: null colors: bg: "#FF1100" fg: "#E1AD01" diff --git a/themes/bbogdanov-dark.yaml b/themes/bbogdanov-dark.yaml index 10f487ae..733cfe0a 100644 --- a/themes/bbogdanov-dark.yaml +++ b/themes/bbogdanov-dark.yaml @@ -8,6 +8,7 @@ source: author: "BBogdanov" repo: "https://github.com/bbogdanov/bbogdanov-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=BBogdanov.bbogdanov-color-themes" + formats: null colors: bg: "#444847" fg: "#E0E2DD" diff --git a/themes/bbogdanov-light.yaml b/themes/bbogdanov-light.yaml index 2486ad11..eb26d11e 100644 --- a/themes/bbogdanov-light.yaml +++ b/themes/bbogdanov-light.yaml @@ -8,6 +8,7 @@ source: author: "BBogdanov" repo: "https://github.com/bbogdanov/bbogdanov-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=BBogdanov.bbogdanov-color-themes" + formats: null colors: bg: "#FFFFFF" fg: "#333333" diff --git a/themes/bc-theme.yaml b/themes/bc-theme.yaml index a9828c1b..f78aabed 100644 --- a/themes/bc-theme.yaml +++ b/themes/bc-theme.yaml @@ -8,6 +8,7 @@ source: author: "CodeWithMitch" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CodeWithMitch.bc-code-theme" + formats: null colors: bg: "#030C1B" fg: "#2FF533" diff --git a/themes/beach-vibes.yaml b/themes/beach-vibes.yaml index 3a02e3ca..52f376a0 100644 --- a/themes/beach-vibes.yaml +++ b/themes/beach-vibes.yaml @@ -8,6 +8,7 @@ source: author: "dward1502" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dward1502.beach-vibes" + formats: null colors: bg: "#0D1124" fg: "#CA2DEA" diff --git a/themes/beacrisg.yaml b/themes/beacrisg.yaml index 311d5fe8..e52e0292 100644 --- a/themes/beacrisg.yaml +++ b/themes/beacrisg.yaml @@ -8,6 +8,7 @@ source: author: "BeatrizGoncalves" repo: "https://github.com/robianchini/biacrisg-theme" url: "https://marketplace.visualstudio.com/items?itemName=BeatrizGoncalves.bia-goncalves-theme" + formats: null colors: bg: "#130819" fg: "#D4D4D4" diff --git a/themes/bearhugs.yaml b/themes/bearhugs.yaml deleted file mode 100644 index 211c2d7f..00000000 --- a/themes/bearhugs.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Bearhugs" -source: - marketplace_id: "NelDev.bearhugs-theme" - version: "0.1.0" - installs: 344 - rating: 0 - ratings: 0 - author: "NelDev" - repo: "https://github.com/NelJulgan/bearhugs" - url: "https://marketplace.visualstudio.com/items?itemName=NelDev.bearhugs-theme" -colors: - bg: "#1F2023" - fg: "#BCB28D" - black: "#2C5A65" - red: "#E03C8A" - green: "#24936E" - yellow: "#E6844F" - blue: "#58B2DC" - magenta: "#E03C8A" - cyan: "#69B0AC" - white: "#EEE8D5" - brightBlack: "#666666" - brightRed: "#E6844F" - brightGreen: "#5C8490" - brightYellow: "#657B83" - brightBlue: "#58B2DC" - brightMagenta: "#646695" - brightCyan: "#93A1A1" - brightWhite: "#FDF6E3" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 58.5 - black: 13.6 - red: 33.1 - green: 34.1 - yellow: 47.7 - blue: 53.2 - magenta: 33.1 - cyan: 50.9 - white: 90.8 - brightBlack: 20.9 - brightRed: 47.7 - brightGreen: 31.7 - brightYellow: 28.6 - brightBlue: 53.2 - brightMagenta: 22.6 - brightCyan: 47.8 - brightWhite: 100 diff --git a/themes/becolors.yaml b/themes/becolors.yaml index 7bf8a7d2..5b57ad7c 100644 --- a/themes/becolors.yaml +++ b/themes/becolors.yaml @@ -8,6 +8,7 @@ source: author: "goodhartsmusic" repo: null url: "https://marketplace.visualstudio.com/items?itemName=goodhartsmusic.becolour" + formats: null colors: bg: "#000000" fg: "#113814" diff --git a/themes/bedarx-obsidian.yaml b/themes/bedarx-obsidian.yaml index bd90a209..1044dc12 100644 --- a/themes/bedarx-obsidian.yaml +++ b/themes/bedarx-obsidian.yaml @@ -8,6 +8,7 @@ source: author: "saqibbedar" repo: "https://github.com/saqibbedar/BedarX-Pro" url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" + formats: null colors: bg: "#14141A" fg: "#E8E8EF" diff --git a/themes/bedarx-onyx.yaml b/themes/bedarx-onyx.yaml index a2f39598..04ed3b46 100644 --- a/themes/bedarx-onyx.yaml +++ b/themes/bedarx-onyx.yaml @@ -8,6 +8,7 @@ source: author: "saqibbedar" repo: "https://github.com/saqibbedar/BedarX-Pro" url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" + formats: null colors: bg: "#0D0D10" fg: "#E0E0E5" diff --git a/themes/bedarx-pearl.yaml b/themes/bedarx-pearl.yaml index 42b47cc8..67ecd37b 100644 --- a/themes/bedarx-pearl.yaml +++ b/themes/bedarx-pearl.yaml @@ -8,6 +8,7 @@ source: author: "saqibbedar" repo: "https://github.com/saqibbedar/BedarX-Pro" url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" + formats: null colors: bg: "#FFFFFF" fg: "#383840" diff --git a/themes/bedarx-sapphire.yaml b/themes/bedarx-sapphire.yaml index 7d82bc03..4fd972a6 100644 --- a/themes/bedarx-sapphire.yaml +++ b/themes/bedarx-sapphire.yaml @@ -8,6 +8,7 @@ source: author: "saqibbedar" repo: "https://github.com/saqibbedar/BedarX-Pro" url: "https://marketplace.visualstudio.com/items?itemName=saqibbedar.bedarx-pro" + formats: null colors: bg: "#0F1319" fg: "#D0D8E0" diff --git a/themes/bee-theme-color-theme-tow.yaml b/themes/bee-theme-color-theme-tow.yaml deleted file mode 100644 index 5dbac8d6..00000000 --- a/themes/bee-theme-color-theme-tow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "bee-theme-color-theme-tow" -source: - marketplace_id: "eulukasthyago.bee-theme" - version: "2.0.0" - installs: 1470 - rating: 5 - ratings: 2 - author: "Lucas Tiago" - repo: "https://github.com/webcolmeia/bee-theme" - url: "https://marketplace.visualstudio.com/items?itemName=eulukasthyago.bee-theme" -colors: - bg: "#1A1A1A" - fg: "#EEFFFF" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#4A4A4A" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 104.2 - black: 0 - red: 46.3 - green: 83.9 - yellow: 78.6 - blue: 55.6 - magenta: 53.4 - cyan: 77.9 - white: 106.5 - brightBlack: 10.6 - brightRed: 46.3 - brightGreen: 83.9 - brightYellow: 78.6 - brightBlue: 55.6 - brightMagenta: 53.4 - brightCyan: 77.9 - brightWhite: 106.5 diff --git a/themes/bee-theme.yaml b/themes/bee-theme.yaml deleted file mode 100644 index 1ac81a91..00000000 --- a/themes/bee-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Bee Theme" -source: - marketplace_id: "eulukasthyago.bee-theme" - version: "2.0.0" - installs: 1470 - rating: 5 - ratings: 2 - author: "Lucas Tiago" - repo: "https://github.com/webcolmeia/bee-theme" - url: "https://marketplace.visualstudio.com/items?itemName=eulukasthyago.bee-theme" -colors: - bg: "#2A2A2A" - fg: "#CCD6DD" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#FFC864" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 76.9 - black: 0 - red: 23.9 - green: 50.2 - yellow: 82.8 - blue: 24.6 - magenta: 26.9 - cyan: 44.7 - white: 87.2 - brightBlack: 74.8 - brightRed: 35.7 - brightGreen: 60.7 - brightYellow: 92.8 - brightBlue: 37.2 - brightMagenta: 42.5 - brightCyan: 52.6 - brightWhite: 87.2 diff --git a/themes/beerish.yaml b/themes/beerish.yaml index 5565e2d5..7a4fe3d4 100644 --- a/themes/beerish.yaml +++ b/themes/beerish.yaml @@ -8,6 +8,7 @@ source: author: "sjsepan" repo: "https://gitlab.com/sjsepan/sjsepan-beerish" url: "https://marketplace.visualstudio.com/items?itemName=sjsepan.sjsepan-beerish" + formats: null colors: bg: "#FFFFFF" fg: "#623700" diff --git a/themes/beesystemtheme.yaml b/themes/beesystemtheme.yaml index 85acd568..c1cba0d5 100644 --- a/themes/beesystemtheme.yaml +++ b/themes/beesystemtheme.yaml @@ -8,6 +8,7 @@ source: author: "WeenXTheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=WeenXTheme.beesystemtheme" + formats: null colors: bg: "#282D3C" fg: "#FFFFFF" diff --git a/themes/beginner-theme.yaml b/themes/beginner-theme.yaml index df6ca548..1f1cc3ee 100644 --- a/themes/beginner-theme.yaml +++ b/themes/beginner-theme.yaml @@ -8,6 +8,7 @@ source: author: "eternalbeginner" repo: "https://github.com/eternalbeginner/theme-beginner-theme" url: "https://marketplace.visualstudio.com/items?itemName=eternalbeginner.beginner-theme" + formats: null colors: bg: "#1A0038" fg: "#CFCFCF" diff --git a/themes/behavai-vitesse.yaml b/themes/behavai-vitesse.yaml index 3085dcca..2087e91d 100644 --- a/themes/behavai-vitesse.yaml +++ b/themes/behavai-vitesse.yaml @@ -8,6 +8,7 @@ source: author: "Voar" repo: "https://github.com/EnchantedJoy/Behavai" url: "https://marketplace.visualstudio.com/items?itemName=4536251.behavai" + formats: null colors: bg: "#272C37" fg: "#D8DEE9" diff --git a/themes/behavai.yaml b/themes/behavai.yaml index fa391d23..2515559b 100644 --- a/themes/behavai.yaml +++ b/themes/behavai.yaml @@ -8,6 +8,7 @@ source: author: "Voar" repo: "https://github.com/EnchantedJoy/Behavai" url: "https://marketplace.visualstudio.com/items?itemName=4536251.behavai" + formats: null colors: bg: "#282C34" fg: "#ABB2BF" diff --git a/themes/belch-fork.yaml b/themes/belch-fork.yaml deleted file mode 100644 index 570c5f9e..00000000 --- a/themes/belch-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "BELCH - Fork" -source: - marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" - version: "9.0.1" - installs: 29917 - rating: 4.6 - ratings: 10 - author: "Hasibur R" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" -colors: - bg: "#1D0038" - fg: "#D4D4D4" - black: "#9A00E0" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "magenta" - hue: 301 - pair: null - contrast: - fg: 79.5 - black: 22.9 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 106.9 - brightBlack: 22 - brightRed: 38.6 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90 diff --git a/themes/bellair.yaml b/themes/bellair.yaml index 28570eba..84a337d7 100644 --- a/themes/bellair.yaml +++ b/themes/bellair.yaml @@ -8,6 +8,8 @@ source: author: "Cody Loyd" repo: "https://github.com/codyloyd/bellair-theme" url: "https://marketplace.visualstudio.com/items?itemName=codyloyd.bellair-theme" + formats: + iterm2: "https://raw.githubusercontent.com/codyloyd/bellair-theme/master/bellair.itermcolors" colors: bg: "#0E0F18" fg: "#DEE6EE" diff --git a/themes/beloco.yaml b/themes/beloco.yaml index 3fb04c58..63468ff7 100644 --- a/themes/beloco.yaml +++ b/themes/beloco.yaml @@ -8,6 +8,7 @@ source: author: "needcoder" repo: "https://github.com/needcoder/beloco" url: "https://marketplace.visualstudio.com/items?itemName=needcoder.theme-beloco-dark" + formats: null colors: bg: "#282C34" fg: "#A6B6B4" diff --git a/themes/benlatheme-azure.yaml b/themes/benlatheme-azure.yaml deleted file mode 100644 index 48baecae..00000000 --- a/themes/benlatheme-azure.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "BenLaTheme Azure" -source: - marketplace_id: "BenLaTheme.benlatheme" - version: "0.0.1" - installs: 83 - author: "BenLaTheme" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=BenLaTheme.benlatheme" -colors: - bg: "#080907" - fg: "#080907" - black: "#080907" - red: "#080907" - green: "#080907" - yellow: "#080907" - blue: "#080907" - magenta: "#080907" - cyan: "#080907" - white: "#080907" - brightBlack: "#080907" - brightRed: "#080907" - brightGreen: "#080907" - brightYellow: "#080907" - brightBlue: "#080907" - brightMagenta: "#080907" - brightCyan: "#080907" - brightWhite: "#080907" -meta: - mode: "dark" - accent: "green" - hue: null - contrast: - fg: 0 - black: 0 - red: 0 - green: 0 - yellow: 0 - blue: 0 - magenta: 0 - cyan: 0 - white: 0 - brightBlack: 0 - brightRed: 0 - brightGreen: 0 - brightYellow: 0 - brightBlue: 0 - brightMagenta: 0 - brightCyan: 0 - brightWhite: 0 diff --git a/themes/benpai-theme-dark.yaml b/themes/benpai-theme-dark.yaml deleted file mode 100644 index b38823be..00000000 --- a/themes/benpai-theme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Benpai Theme (Dark)" -source: - marketplace_id: "theRealBenpai.benpai-theme" - version: "1.1.0" - installs: 89 - rating: 0 - ratings: 0 - author: "Sparty182020" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=theRealBenpai.benpai-theme" -colors: - bg: "#151515" - fg: "#FFFFFF" - black: "#242424" - red: "#A10909" - green: "#00A51A" - yellow: "#9F9F05" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#CFCFCF" - brightBlack: "#666666" - brightRed: "#FB3030" - brightGreen: "#15FF19" - brightYellow: "#FFFF00" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 107.1 - black: 0 - red: 15.1 - green: 41.5 - yellow: 46.9 - blue: 27.6 - magenta: 29.9 - cyan: 47.7 - white: 76.6 - brightBlack: 22.2 - brightRed: 37.5 - brightGreen: 85.7 - brightYellow: 101.9 - brightBlue: 40.2 - brightMagenta: 45.6 - brightCyan: 55.6 - brightWhite: 107.1 diff --git a/themes/benty-dark.yaml b/themes/benty-dark.yaml index 0dd60e11..fa2233d9 100644 --- a/themes/benty-dark.yaml +++ b/themes/benty-dark.yaml @@ -8,6 +8,7 @@ source: author: "Benty" repo: "https://github.com/Benty/benty-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Benty.benty-vscode" + formats: null colors: bg: "#0C1A23" fg: "#FFFFFF" diff --git a/themes/benty.yaml b/themes/benty.yaml index 782300b1..26970a4b 100644 --- a/themes/benty.yaml +++ b/themes/benty.yaml @@ -8,6 +8,7 @@ source: author: "Benty" repo: "https://github.com/Benty/benty-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Benty.benty-vscode" + formats: null colors: bg: "#21374A" fg: "#FFFFFF" diff --git a/themes/berg.yaml b/themes/berg.yaml index cb23cc32..2fc565e9 100644 --- a/themes/berg.yaml +++ b/themes/berg.yaml @@ -6,6 +6,7 @@ source: author: "stephenedavis17" repo: null url: "https://marketplace.visualstudio.com/items?itemName=stephenedavis17.b" + formats: null colors: bg: "#000000" fg: "#888888" diff --git a/themes/berkeley.yaml b/themes/berkeley.yaml index 08a20392..b85bf1f3 100644 --- a/themes/berkeley.yaml +++ b/themes/berkeley.yaml @@ -8,6 +8,7 @@ source: author: "ocat" repo: "https://github.com/Coordinate-Cat/berkeley-theme" url: "https://marketplace.visualstudio.com/items?itemName=ocat.berkeley-theme" + formats: null colors: bg: "#0E0E10" fg: "#FFFFFF" diff --git a/themes/bernadoque-theme.yaml b/themes/bernadoque-theme.yaml index a0c1d897..73c74a10 100644 --- a/themes/bernadoque-theme.yaml +++ b/themes/bernadoque-theme.yaml @@ -8,6 +8,7 @@ source: author: "Wesley Bernadoque" repo: "https://github.com/WesleyBernadoque/bernadoque-theme" url: "https://marketplace.visualstudio.com/items?itemName=WesleyBernadoque.bernadoque-theme" + formats: null colors: bg: "#0D0D0D" fg: "#D4D4D4" diff --git a/themes/berry-blast-theme.yaml b/themes/berry-blast-theme.yaml deleted file mode 100644 index dc7a501b..00000000 --- a/themes/berry-blast-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "berry-blast-theme" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - rating: 5 - ratings: 3 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#FF69B4" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "light" - accent: "pink" - hue: 352 - pair: null - contrast: - fg: 28.6 - black: 53.2 - red: 21.1 - green: 0 - yellow: 34.7 - blue: 20.4 - magenta: 18.1 - cyan: 0 - white: 39.1 - brightBlack: 25.9 - brightRed: 9.3 - brightGreen: 12.6 - brightYellow: 44.7 - brightBlue: 7.9 - brightMagenta: 0 - brightCyan: 0 - brightWhite: 39.1 diff --git a/themes/berry-latte-light.yaml b/themes/berry-latte-light.yaml deleted file mode 100644 index d8d31be1..00000000 --- a/themes/berry-latte-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Berry Latte Light" -source: - marketplace_id: "goncin.berry-latte-light-theme" - version: "1.3.0" - installs: 2486 - rating: 5 - ratings: 4 - author: "Fausto Cintra" - repo: "https://github.com/faustocintra/vscode-berry-latte-light-theme" - url: "https://marketplace.visualstudio.com/items?itemName=goncin.berry-latte-light-theme" -colors: - bg: "#FEFDFF" - fg: "#2F4F4F" - black: "#2F4F4F" - red: "#FF6347" - green: "#9ACD32" - yellow: "#DAA520" - blue: "#4169E1" - magenta: "#FF69B4" - cyan: "#66CDAA" - white: "#C0C0C0" - brightBlack: "#666666" - brightRed: "#DC143C" - brightGreen: "#6B8E23" - brightYellow: "#B8860B" - brightBlue: "#4169E1" - brightMagenta: "#C71585" - brightCyan: "#20B2AA" - brightWhite: "#A9A9A9" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.4 - black: 89.4 - red: 54 - green: 34.5 - yellow: 42.9 - blue: 72.2 - magenta: 49.8 - cyan: 35.8 - white: 33 - brightBlack: 77.8 - brightRed: 71.2 - brightGreen: 64.4 - brightYellow: 58.6 - brightBlue: 72.2 - brightMagenta: 74 - brightCyan: 49.7 - brightWhite: 45.4 diff --git a/themes/bersk.yaml b/themes/bersk.yaml deleted file mode 100644 index bcdfcee3..00000000 --- a/themes/bersk.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Bersk" -source: - marketplace_id: "Bersk.bersk" - version: "1.5.0" - installs: 1545 - rating: 5 - ratings: 2 - author: "Bersk Dark Theme for VS Code" - repo: "https://github.com/gbaierski/bersk-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Bersk.bersk" -colors: - bg: "#1C1D1D" - fg: "#FFFFFF" - black: "#1E1F1C" - red: "#FA4DA4" - green: "#1BE7A3" - yellow: "#1BE7A3" - blue: "#23C1FF" - magenta: "#C5A2FD" - cyan: "#23C1FF" - white: "#FFFFFF" - brightBlack: "#1E1F1C" - brightRed: "#FA4DA4" - brightGreen: "#1BE7A3" - brightYellow: "#1BE7A3" - brightBlue: "#23C1FF" - brightMagenta: "#C5A2FD" - brightCyan: "#1BE7A3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 106.2 - black: 0 - red: 42.6 - green: 74.4 - yellow: 74.4 - blue: 60.8 - magenta: 59.4 - cyan: 60.8 - white: 106.2 - brightBlack: 0 - brightRed: 42.6 - brightGreen: 74.4 - brightYellow: 74.4 - brightBlue: 60.8 - brightMagenta: 59.4 - brightCyan: 74.4 - brightWhite: 106.2 diff --git a/themes/bertax.yaml b/themes/bertax.yaml index 301f4b74..69b0a6cf 100644 --- a/themes/bertax.yaml +++ b/themes/bertax.yaml @@ -8,6 +8,7 @@ source: author: "Melih Ozdemir" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MelihOzdemir.jatgozic" + formats: null colors: bg: "#1E1C28" fg: "#0CFBCE" diff --git a/themes/bertdark.yaml b/themes/bertdark.yaml index 6140cd1e..7d22f4ca 100644 --- a/themes/bertdark.yaml +++ b/themes/bertdark.yaml @@ -8,6 +8,7 @@ source: author: "yupanqui" repo: "https://github.com/Hyupanqui/BertDark" url: "https://marketplace.visualstudio.com/items?itemName=yupanqui.bertdark" + formats: null colors: bg: "#263238" fg: "#F1FFEE" diff --git a/themes/beru.yaml b/themes/beru.yaml deleted file mode 100644 index b17d6a35..00000000 --- a/themes/beru.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Beru" -source: - marketplace_id: "FullDev.beru-theme" - version: "1.0.3" - installs: 239 - rating: 5 - ratings: 3 - author: "FullDev" - repo: "https://github.com/getBeru/beru-theme" - url: "https://marketplace.visualstudio.com/items?itemName=FullDev.beru-theme" -colors: - bg: "#101010" - fg: "#BABABA" - black: "#101010" - red: "#EF4444" - green: "#10B981" - yellow: "#F59E0B" - blue: "#3B82F6" - magenta: "#8B5CF6" - cyan: "#E87235" - white: "#BABABA" - brightBlack: "#666666" - brightRed: "#EF4444" - brightGreen: "#10B981" - brightYellow: "#F59E0B" - brightBlue: "#3B82F6" - brightMagenta: "#8B5CF6" - brightCyan: "#E87235" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 64.7 - black: 0 - red: 37.4 - green: 52.4 - yellow: 60 - blue: 37.3 - magenta: 32.5 - cyan: 44.6 - white: 64.7 - brightBlack: 22.6 - brightRed: 37.4 - brightGreen: 52.4 - brightYellow: 60 - brightBlue: 37.3 - brightMagenta: 32.5 - brightCyan: 44.6 - brightWhite: 104.1 diff --git a/themes/best-themes-one-monokai.yaml b/themes/best-themes-one-monokai.yaml deleted file mode 100644 index 1a738b03..00000000 --- a/themes/best-themes-one-monokai.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Best Themes - One Monokai" -source: - marketplace_id: "EstevamSouza.the-best-themes-for-programmers" - version: "1.1.0" - installs: 4137 - rating: 0 - ratings: 0 - author: "Estevam Souza" - repo: "https://github.com/estevam5s/extensions" - url: "https://marketplace.visualstudio.com/items?itemName=EstevamSouza.the-best-themes-for-programmers" -colors: - bg: "#1E222A" - fg: "#ABB2BF" - black: "#2D3139" - red: "#E45E69" - green: "#91CB67" - yellow: "#E5C07B" - blue: "#528BFF" - magenta: "#C678DD" - cyan: "#48BCCB" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#91CB67" - brightYellow: "#E5C07B" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#48BCCB" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 58 - black: 0 - red: 38.1 - green: 63.5 - yellow: 69.2 - blue: 40.1 - magenta: 43.7 - cyan: 55.7 - white: 81.6 - brightBlack: 34.1 - brightRed: 37.1 - brightGreen: 63.5 - brightYellow: 69.2 - brightBlue: 40.1 - brightMagenta: 11.3 - brightCyan: 55.7 - brightWhite: 81.6 diff --git a/themes/better-coding-dark.yaml b/themes/better-coding-dark.yaml index 17520dfe..bd65ecce 100644 --- a/themes/better-coding-dark.yaml +++ b/themes/better-coding-dark.yaml @@ -8,6 +8,7 @@ source: author: "Nicolas V." repo: "https://github.com/nicovy/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=nicovy.better-coding-theme" + formats: null colors: bg: "#201B16" fg: "#CDCDCD" diff --git a/themes/better-light.yaml b/themes/better-light.yaml index 8a1513fa..2b8e0e9a 100644 --- a/themes/better-light.yaml +++ b/themes/better-light.yaml @@ -8,6 +8,7 @@ source: author: "ShizamDa_Geek" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ShizamDaGeek.better-light" + formats: null colors: bg: "#D7E3FF" fg: "#000000" diff --git a/themes/better-oceanic-next.yaml b/themes/better-oceanic-next.yaml index 0ed41653..495bcda8 100644 --- a/themes/better-oceanic-next.yaml +++ b/themes/better-oceanic-next.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "SeyMi.better-oceanic-next" version: "1.1.0" installs: 324 + rating: 0 + ratings: 0 author: "SeyMi" repo: "https://github.com/Hasan-Mir/better-oceanic-next" url: "https://marketplace.visualstudio.com/items?itemName=SeyMi.better-oceanic-next" + formats: null colors: bg: "#262A30" fg: "#DFDFDF" diff --git a/themes/better-selenized-dark.yaml b/themes/better-selenized-dark.yaml deleted file mode 100644 index a3755098..00000000 --- a/themes/better-selenized-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Better Selenized Dark" -source: - marketplace_id: "joelsantos.darkerized-better-solarized-dark-theme" - version: "0.10.11" - installs: 566 - rating: 0 - ratings: 0 - author: "joelsantos" - repo: "https://github.com/joelsantosjunior/vscode-better-solarized" - url: "https://marketplace.visualstudio.com/items?itemName=joelsantos.darkerized-better-solarized-dark-theme" -colors: - bg: "#053D48" - fg: "#C8D7D8" - black: "#FDF6E3" - red: "#FD564E" - green: "#80B83C" - yellow: "#E3B230" - blue: "#0096F5" - magenta: "#F275BE" - cyan: "#39C7B9" - white: "#002B36" - brightBlack: "#FBF3DB" - brightRed: "#ED8649" - brightGreen: "#80B83C" - brightYellow: "#E3B230" - brightBlue: "#ADBCBC" - brightMagenta: "#A58CEC" - brightCyan: "#0096F5" - brightWhite: "#00212B" -meta: - mode: "dark" - accent: "orange" - hue: 215 - pair: null - contrast: - fg: 73.1 - black: 94.7 - red: 36.6 - green: 48 - yellow: 57.3 - blue: 36.6 - magenta: 44.2 - cyan: 54.4 - white: 0 - brightBlack: 92.7 - brightRed: 44.3 - brightGreen: 48 - brightYellow: 57.3 - brightBlue: 57.2 - brightMagenta: 41 - brightCyan: 36.6 - brightWhite: 0 diff --git a/themes/better-solarized-dark-italic.yaml b/themes/better-solarized-dark-italic.yaml deleted file mode 100644 index e4698f23..00000000 --- a/themes/better-solarized-dark-italic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Better Solarized Dark Italic" -source: - marketplace_id: "joelsantos.darkerized-better-solarized-dark-theme" - version: "0.10.11" - installs: 566 - rating: 0 - ratings: 0 - author: "joelsantos" - repo: "https://github.com/joelsantosjunior/vscode-better-solarized" - url: "https://marketplace.visualstudio.com/items?itemName=joelsantos.darkerized-better-solarized-dark-theme" -colors: - bg: "#002B36" - fg: "#839496" - black: "#073642" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#00212B" - brightRed: "#CB4B16" - brightGreen: "#859900" - brightYellow: "#B58900" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#268BD2" - brightWhite: "#FDF6E3" -meta: - mode: "dark" - accent: "orange" - hue: 220 - pair: null - contrast: - fg: 39.5 - black: 0 - red: 27.7 - green: 39.2 - yellow: 39.2 - blue: 34.3 - magenta: 28 - cyan: 40 - white: 89.5 - brightBlack: 0 - brightRed: 27.2 - brightGreen: 39.2 - brightYellow: 39.2 - brightBlue: 39.5 - brightMagenta: 28 - brightCyan: 34.3 - brightWhite: 98.6 diff --git a/themes/better-solarized-dark.yaml b/themes/better-solarized-dark.yaml deleted file mode 100644 index 69bd7fa5..00000000 --- a/themes/better-solarized-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Better Solarized Dark" -source: - marketplace_id: "joelsantos.darkerized-better-solarized-dark-theme" - version: "0.10.11" - installs: 566 - rating: 0 - ratings: 0 - author: "joelsantos" - repo: "https://github.com/joelsantosjunior/vscode-better-solarized" - url: "https://marketplace.visualstudio.com/items?itemName=joelsantos.darkerized-better-solarized-dark-theme" -colors: - bg: "#002B36" - fg: "#839496" - black: "#EEE8D5" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#073642" - brightBlack: "#FDF6E3" - brightRed: "#CB4B16" - brightGreen: "#859900" - brightYellow: "#B58900" - brightBlue: "#839496" - brightMagenta: "#565A9C" - brightCyan: "#268BD2" - brightWhite: "#002B36" -meta: - mode: "dark" - accent: "orange" - hue: 220 - pair: null - contrast: - fg: 39.5 - black: 89.5 - red: 27.7 - green: 39.2 - yellow: 39.2 - blue: 34.3 - magenta: 28 - cyan: 40 - white: 0 - brightBlack: 98.6 - brightRed: 27.2 - brightGreen: 39.2 - brightYellow: 39.2 - brightBlue: 39.5 - brightMagenta: 17.2 - brightCyan: 34.3 - brightWhite: 0 diff --git a/themes/betu-dark.yaml b/themes/betu-dark.yaml index c3ca0f6e..0a5ecd16 100644 --- a/themes/betu-dark.yaml +++ b/themes/betu-dark.yaml @@ -8,6 +8,7 @@ source: author: "Betu55" repo: "https://github.com/betu55/Betu-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Betu55.betu-dark-theme" + formats: null colors: bg: "#1E1E1E" fg: "#4CC9F0" diff --git a/themes/betu-light.yaml b/themes/betu-light.yaml index 843d81f5..69ae20cd 100644 --- a/themes/betu-light.yaml +++ b/themes/betu-light.yaml @@ -8,6 +8,7 @@ source: author: "Betu55" repo: "https://github.com/betu55/Betu-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=Betu55.betu-light-theme" + formats: null colors: bg: "#E8E8E8" fg: "#585858" diff --git a/themes/betweentts.yaml b/themes/betweentts.yaml index 15fb7010..779834d7 100644 --- a/themes/betweentts.yaml +++ b/themes/betweentts.yaml @@ -8,6 +8,7 @@ source: author: "betweenTTs" repo: null url: "https://marketplace.visualstudio.com/items?itemName=betweenTTs.betweentts" + formats: null colors: bg: "#242C34" fg: "#D4D4D4" diff --git a/themes/bhwm715-even-darker.yaml b/themes/bhwm715-even-darker.yaml deleted file mode 100644 index 30f24788..00000000 --- a/themes/bhwm715-even-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "BHWM715 - Even Darker" -source: - marketplace_id: "brian-local.b715xyz" - version: "0.1.0" - installs: 51 - rating: 0 - ratings: 0 - author: "brian-local" - repo: "https://github.com/brian715/b715xyz" - url: "https://marketplace.visualstudio.com/items?itemName=brian-local.b715xyz" -colors: - bg: "#252935" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 270 - pair: null - contrast: - fg: 76.8 - black: 0 - red: 24 - green: 50.3 - yellow: 82.9 - blue: 24.7 - magenta: 27.1 - cyan: 44.9 - white: 87.3 - brightBlack: 19.4 - brightRed: 35.9 - brightGreen: 60.9 - brightYellow: 93 - brightBlue: 37.3 - brightMagenta: 42.7 - brightCyan: 52.7 - brightWhite: 87.3 diff --git a/themes/bianconero.yaml b/themes/bianconero.yaml deleted file mode 100644 index 3982048b..00000000 --- a/themes/bianconero.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "BiancoNero" -source: - marketplace_id: "spaceinvadev.bianconero" - version: "0.2.1" - installs: 1474 - rating: 0 - ratings: 0 - author: "Mauro Paternina" - repo: "https://github.com/spaceinvadev/bianconero" - url: "https://marketplace.visualstudio.com/items?itemName=spaceinvadev.bianconero" -colors: - bg: "#FFFFFF" - fg: "#080808" - black: "#080808" - red: "#AD0000" - green: "#172E23" - yellow: "#C2B608" - blue: "#281C6D" - magenta: "#700070" - cyan: "#8CEBE3" - white: "#DDDDDD" - brightBlack: "#080808" - brightRed: "#AD0000" - brightGreen: "#172E23" - brightYellow: "#C2B608" - brightBlue: "#281C6D" - brightMagenta: "#700070" - brightCyan: "#8CEBE3" - brightWhite: "#DDDDDD" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 105.9 - black: 105.9 - red: 83.6 - green: 101.2 - yellow: 41 - blue: 100.4 - magenta: 93.2 - cyan: 18.8 - white: 17.6 - brightBlack: 105.9 - brightRed: 83.6 - brightGreen: 101.2 - brightYellow: 41 - brightBlue: 100.4 - brightMagenta: 93.2 - brightCyan: 18.8 - brightWhite: 17.6 diff --git a/themes/bibauporto-gray.yaml b/themes/bibauporto-gray.yaml index 56952dcd..467500ad 100644 --- a/themes/bibauporto-gray.yaml +++ b/themes/bibauporto-gray.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "bibauporto.bibauporto-theme" version: "0.1.0" installs: 12 + rating: 0 + ratings: 0 author: "bibauporto" repo: "https://github.com/bibauporto/bibauporto-vs-theme" url: "https://marketplace.visualstudio.com/items?itemName=bibauporto.bibauporto-theme" + formats: null colors: bg: "#0D1117" fg: "#ABB2BF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: 258 + pair: null contrast: fg: 59.9 black: 9.4 diff --git a/themes/biddeew.yaml b/themes/biddeew.yaml index bfb32c38..d490f858 100644 --- a/themes/biddeew.yaml +++ b/themes/biddeew.yaml @@ -8,6 +8,7 @@ source: author: "Daooda" repo: "https://github.com/daoodaba975/taaru" url: "https://marketplace.visualstudio.com/items?itemName=daoodaba975.taaru" + formats: null colors: bg: "#0B0E14" fg: "#BFBDB6" diff --git a/themes/bifr-st.yaml b/themes/bifr-st.yaml index 1ebb8c19..e818be59 100644 --- a/themes/bifr-st.yaml +++ b/themes/bifr-st.yaml @@ -8,6 +8,7 @@ source: author: "TheCodeTherapy" repo: "https://github.com/TheCodeTherapy/bifrost" url: "https://marketplace.visualstudio.com/items?itemName=TheCodeTherapy.bitfrost-code-theme" + formats: null colors: bg: "#171245" fg: "#ABB2BF" diff --git a/themes/bigfish.yaml b/themes/bigfish.yaml index 0cf304fd..7db4a5e1 100644 --- a/themes/bigfish.yaml +++ b/themes/bigfish.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "lemonshark.bigfish" version: "0.0.1" installs: 95 + rating: 0 + ratings: 0 author: "Lemonshark" repo: "https://github.com/N-Nikolaev/bigfish" url: "https://marketplace.visualstudio.com/items?itemName=lemonshark.bigfish" + formats: null colors: bg: "#252930" fg: "#E2E2E2" diff --git a/themes/bigsur-gtk-theme-dark-blue.yaml b/themes/bigsur-gtk-theme-dark-blue.yaml deleted file mode 100644 index 19320e7c..00000000 --- a/themes/bigsur-gtk-theme-dark-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "BigSur GTK Theme (Dark Blue)" -source: - marketplace_id: "zeriax.bigsurgtk-blue" - version: "0.0.2" - installs: 1249 - rating: 0 - ratings: 0 - author: "zeriax" - repo: "https://github.com/zeriaxdev/bigsurgtk-blue" - url: "https://marketplace.visualstudio.com/items?itemName=zeriax.bigsurgtk-blue" -colors: - bg: "#191F22" - fg: "#FBE179" - black: "#050606" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#D5F1FF" - brightBlack: "#354147" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#ECF9FF" -meta: - mode: "dark" - accent: "pink" - hue: 229 - pair: null - contrast: - fg: 87.1 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 94 - brightBlack: 0 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 100.6 diff --git a/themes/bini-theme.yaml b/themes/bini-theme.yaml index 243a5a63..cbd95155 100644 --- a/themes/bini-theme.yaml +++ b/themes/bini-theme.yaml @@ -8,6 +8,7 @@ source: author: "Waren Gonzaga" repo: "https://github.com/warengonzaga/bini-theme" url: "https://marketplace.visualstudio.com/items?itemName=warengonzaga.bini-theme" + formats: null colors: bg: "#101317" fg: "#94A3B8" diff --git a/themes/bird.yaml b/themes/bird.yaml deleted file mode 100644 index 8796a255..00000000 --- a/themes/bird.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "bird" -source: - marketplace_id: "indigo.warm" - version: "1.0.1" - installs: 2593 - rating: 4 - ratings: 1 - author: "indigo" - repo: "https://github.com/gabriela-tomazzi/warm-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=indigo.warm" -colors: - bg: "#110D10" - fg: "#E1B473" - black: "#241C22" - red: "#6B7D7A" - green: "#6B7D7A" - yellow: "#DF8038" - blue: "#5F2F45" - magenta: "#5F2F45" - cyan: "#6B7D7A" - white: "#E0D8C9" - brightBlack: "#666666" - brightRed: "#6B7D7A" - brightGreen: "#6B7D7A" - brightYellow: "#DF8038" - brightBlue: "#5F2F45" - brightMagenta: "#5F2F45" - brightCyan: "#6B7D7A" - brightWhite: "#E0D8C9" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 65.7 - black: 0 - red: 31.3 - green: 31.3 - yellow: 46.8 - blue: 7.9 - magenta: 7.9 - cyan: 31.3 - white: 83 - brightBlack: 22.7 - brightRed: 31.3 - brightGreen: 31.3 - brightYellow: 46.8 - brightBlue: 7.9 - brightMagenta: 7.9 - brightCyan: 31.3 - brightWhite: 83 diff --git a/themes/bit-intense.yaml b/themes/bit-intense.yaml index fdaca17c..71f0aa2f 100644 --- a/themes/bit-intense.yaml +++ b/themes/bit-intense.yaml @@ -8,6 +8,7 @@ source: author: "Bit Theme" repo: "https://github.com/bit-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=bit-theme.bit-theme" + formats: null colors: bg: "#131715" fg: "#E2E2E2" diff --git a/themes/bit-soft.yaml b/themes/bit-soft.yaml index 55f17d62..5280caf2 100644 --- a/themes/bit-soft.yaml +++ b/themes/bit-soft.yaml @@ -8,6 +8,7 @@ source: author: "Bit Theme" repo: "https://github.com/bit-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=bit-theme.bit-theme" + formats: null colors: bg: "#2A2A2A" fg: "#E2E2E2" diff --git a/themes/bit.yaml b/themes/bit.yaml index 65ab924b..85dea5b3 100644 --- a/themes/bit.yaml +++ b/themes/bit.yaml @@ -8,6 +8,7 @@ source: author: "Bit Theme" repo: "https://github.com/bit-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=bit-theme.bit-theme" + formats: null colors: bg: "#171717" fg: "#E2E2E2" diff --git a/themes/bitpurp-dark.yaml b/themes/bitpurp-dark.yaml index d68898d5..dcb19092 100644 --- a/themes/bitpurp-dark.yaml +++ b/themes/bitpurp-dark.yaml @@ -8,6 +8,7 @@ source: author: "bit3301" repo: "https://github.com/bit3301/bitpurp" url: "https://marketplace.visualstudio.com/items?itemName=bit3301.bitpurp" + formats: null colors: bg: "#17121D" fg: "#F2E7D4" diff --git a/themes/bits-theme-green-light.yaml b/themes/bits-theme-green-light.yaml index 88f278da..8a90e09c 100644 --- a/themes/bits-theme-green-light.yaml +++ b/themes/bits-theme-green-light.yaml @@ -8,6 +8,7 @@ source: author: "Joabits" repo: "https://github.com/Joabits/bits-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" + formats: null colors: bg: "#FFFFFF" fg: "#1A1A1A" diff --git a/themes/bits-theme-green.yaml b/themes/bits-theme-green.yaml index 36cfaf3d..93a5667c 100644 --- a/themes/bits-theme-green.yaml +++ b/themes/bits-theme-green.yaml @@ -8,6 +8,7 @@ source: author: "Joabits" repo: "https://github.com/Joabits/bits-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" + formats: null colors: bg: "#000200" fg: "#FFFFFF" diff --git a/themes/bits-theme-light.yaml b/themes/bits-theme-light.yaml index 2654202a..565da3fd 100644 --- a/themes/bits-theme-light.yaml +++ b/themes/bits-theme-light.yaml @@ -8,6 +8,7 @@ source: author: "Joabits" repo: "https://github.com/Joabits/bits-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" + formats: null colors: bg: "#FFFFFF" fg: "#1A1A1A" diff --git a/themes/bits-theme-purple-light.yaml b/themes/bits-theme-purple-light.yaml index ad698c8c..b7fa3fd8 100644 --- a/themes/bits-theme-purple-light.yaml +++ b/themes/bits-theme-purple-light.yaml @@ -8,6 +8,7 @@ source: author: "Joabits" repo: "https://github.com/Joabits/bits-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" + formats: null colors: bg: "#FFFFFF" fg: "#1A1A1A" diff --git a/themes/bits-theme-purple.yaml b/themes/bits-theme-purple.yaml index 07bba8d8..5bb5d933 100644 --- a/themes/bits-theme-purple.yaml +++ b/themes/bits-theme-purple.yaml @@ -8,6 +8,7 @@ source: author: "Joabits" repo: "https://github.com/Joabits/bits-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" + formats: null colors: bg: "#040207" fg: "#FFFFFF" diff --git a/themes/bits-theme.yaml b/themes/bits-theme.yaml index 64405013..7dd2be83 100644 --- a/themes/bits-theme.yaml +++ b/themes/bits-theme.yaml @@ -8,6 +8,7 @@ source: author: "Joabits" repo: "https://github.com/Joabits/bits-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Joabits.bits-dark-theme" + formats: null colors: bg: "#060A0F" fg: "#FFFFFF" diff --git a/themes/bl-nk.yaml b/themes/bl-nk.yaml index fc83106e..6d8ad94b 100644 --- a/themes/bl-nk.yaml +++ b/themes/bl-nk.yaml @@ -8,6 +8,7 @@ source: author: "the-unknown" repo: "https://github.com/the-unknown/blink-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=the-unknown.blink" + formats: null colors: bg: "#121212" fg: "#A0A0A0" diff --git a/themes/black-and-red.yaml b/themes/black-and-red.yaml index 8e96bf98..135cce31 100644 --- a/themes/black-and-red.yaml +++ b/themes/black-and-red.yaml @@ -8,6 +8,8 @@ source: author: "PRUFT" repo: "https://github.com/microsoft/vscode" url: "https://marketplace.visualstudio.com/items?itemName=PRUFT.theme-black" + formats: + zed: "https://raw.githubusercontent.com/microsoft/vscode/main/extensions/theme-solarized-dark/themes/solarized-dark-color-theme.json" colors: bg: "#171717" fg: "#FFFFFF" diff --git a/themes/black-and-white-tv.yaml b/themes/black-and-white-tv.yaml index dbc0fcac..970e160f 100644 --- a/themes/black-and-white-tv.yaml +++ b/themes/black-and-white-tv.yaml @@ -8,6 +8,7 @@ source: author: "moondevaa" repo: "https://github.com/AaBbdev29/Black-and-White-TV" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.BlackandWhiteTV" + formats: null colors: bg: "#0A0A0A" fg: "#D4D4D4" diff --git a/themes/black-back-dark-e-theme.yaml b/themes/black-back-dark-e-theme.yaml index e5966629..d64ac8cc 100644 --- a/themes/black-back-dark-e-theme.yaml +++ b/themes/black-back-dark-e-theme.yaml @@ -1,4 +1,4 @@ -name: "black-back-dark-e-theme" +name: "Black Back Dark E-Theme" source: marketplace_id: "Eray.black-back-dark-e-theme" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Eray" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Eray.black-back-dark-e-theme" + formats: null colors: bg: "#1E1E1E" fg: "#F0F0F0" diff --git a/themes/black-beauty.yaml b/themes/black-beauty.yaml index 30551f43..ff372275 100644 --- a/themes/black-beauty.yaml +++ b/themes/black-beauty.yaml @@ -2,12 +2,13 @@ name: "Black Beauty" source: marketplace_id: "Mandy.black-beauty" version: "0.0.5" - installs: 5691 + installs: 5692 rating: 5 ratings: 1 author: "Mandy" repo: "https://github.com/MandipShah" url: "https://marketplace.visualstudio.com/items?itemName=Mandy.black-beauty" + formats: null colors: bg: "#0C0A20" fg: "#F2F3F7" diff --git a/themes/black-color-theme.yaml b/themes/black-color-theme.yaml index ebfe856a..37b08f12 100644 --- a/themes/black-color-theme.yaml +++ b/themes/black-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "ctf0" repo: "https://github.com/ctf0/Seti_UX-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ctf0.seti-ux" + formats: null colors: bg: "#1A1A1A" fg: "#FFFFFF" diff --git a/themes/black-ocean.yaml b/themes/black-ocean.yaml index 5ffb279d..d3d3aa77 100644 --- a/themes/black-ocean.yaml +++ b/themes/black-ocean.yaml @@ -2,12 +2,13 @@ name: "Black Ocean" source: marketplace_id: "zamerick.black-ocean" version: "1.1.3" - installs: 87742 + installs: 87763 rating: 5 ratings: 12 author: "zamerick" repo: "https://github.com/Zamerick/black-ocean" url: "https://marketplace.visualstudio.com/items?itemName=zamerick.black-ocean" + formats: null colors: bg: "#101316" fg: "#DFDFDF" diff --git a/themes/black-on-gray.yaml b/themes/black-on-gray.yaml index 8129ace6..9577409d 100644 --- a/themes/black-on-gray.yaml +++ b/themes/black-on-gray.yaml @@ -2,12 +2,13 @@ name: "Black on Gray" source: marketplace_id: "KramLololo.black-on-gray" version: "1.0.3" - installs: 429 + installs: 431 rating: 0 ratings: 0 author: "Kram Lololo" repo: "https://github.com/KramLololo/theme-black-on-gray" url: "https://marketplace.visualstudio.com/items?itemName=KramLololo.black-on-gray" + formats: null colors: bg: "#949494" fg: "#0F0F0F" diff --git a/themes/black-panther-theme.yaml b/themes/black-panther-theme.yaml index 72b1674a..d9fc7f17 100644 --- a/themes/black-panther-theme.yaml +++ b/themes/black-panther-theme.yaml @@ -1,4 +1,4 @@ -name: "Black panther theme" +name: "Black-panther-theme" source: marketplace_id: "Shriprasanna.blue-dark-theme" version: "1.2.4" @@ -8,6 +8,7 @@ source: author: "Shriprasanna" repo: "https://github.com/shrix1/shri-blue-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Shriprasanna.blue-dark-theme" + formats: null colors: bg: "#0A0A0A" fg: "#FFFFFF" diff --git a/themes/black-pink-rose.yaml b/themes/black-pink-rose.yaml index 72294a24..e2cbfd47 100644 --- a/themes/black-pink-rose.yaml +++ b/themes/black-pink-rose.yaml @@ -8,6 +8,7 @@ source: author: "abenavidesh" repo: "https://github.com/abenavidesh/vs-blackpink-theme" url: "https://marketplace.visualstudio.com/items?itemName=abenavidesh.theme-blackpink" + formats: null colors: bg: "#1F2B31" fg: "#F8BBD0" diff --git a/themes/black-punk-77.yaml b/themes/black-punk-77.yaml index 5c69a028..c0bd6df7 100644 --- a/themes/black-punk-77.yaml +++ b/themes/black-punk-77.yaml @@ -1,4 +1,4 @@ -name: "Black punk 77" +name: "black punk 77" source: marketplace_id: "PlutonicVoid.black-punk-77" version: "1.0.1" @@ -8,6 +8,7 @@ source: author: "PlutonicVoid" repo: "https://gitlab.com/peter_thesequel/black-punk-77" url: "https://marketplace.visualstudio.com/items?itemName=PlutonicVoid.black-punk-77" + formats: null colors: bg: "#131313" fg: "#D9C200" diff --git a/themes/black-rose.yaml b/themes/black-rose.yaml index c083cb91..07f7165c 100644 --- a/themes/black-rose.yaml +++ b/themes/black-rose.yaml @@ -1,13 +1,14 @@ -name: "Black-Rose" +name: "Black rose" source: marketplace_id: "Dananjaya.black-rose" version: "0.3.0" - installs: 1725 + installs: 1727 rating: 4 ratings: 1 author: "Dananjaya" repo: "https://github.com/dananjaya6005/Black_rose-theme" url: "https://marketplace.visualstudio.com/items?itemName=Dananjaya.black-rose" + formats: null colors: bg: "#211A21" fg: "#E4E4E4" diff --git a/themes/black-theme.yaml b/themes/black-theme.yaml deleted file mode 100644 index 1ab42f4b..00000000 --- a/themes/black-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Black theme" -source: - marketplace_id: "PriyankarPal.darkthemeforvscode" - version: "2.13.0" - installs: 767 - rating: 5 - ratings: 1 - author: "Priyankar Pal" - repo: "https://github.com/priyankarpal/DarkThemeVsCode" - url: "https://marketplace.visualstudio.com/items?itemName=PriyankarPal.darkthemeforvscode" -colors: - bg: "#1B1B1B" - fg: "#FFFFFF" - black: "#645B5B" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#888181" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106.4 - black: 17.8 - red: 26.3 - green: 52.6 - yellow: 85.2 - blue: 27 - magenta: 29.3 - cyan: 47.1 - white: 89.6 - brightBlack: 34.5 - brightRed: 38.1 - brightGreen: 63.1 - brightYellow: 95.2 - brightBlue: 39.6 - brightMagenta: 44.9 - brightCyan: 54.9 - brightWhite: 89.6 diff --git a/themes/black-velvet-luxe.yaml b/themes/black-velvet-luxe.yaml deleted file mode 100644 index 773a49dc..00000000 --- a/themes/black-velvet-luxe.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Black-Velvet-Luxe" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#1E1916" - fg: "#F5F5F5" - black: "#1E1916" - red: "#F14444" - green: "#29C3A0" - yellow: "#D29922" - blue: "#BA1F1E" - magenta: "#BA1F1E" - cyan: "#29C3A0" - white: "#F5F5F5" - brightBlack: "#1E1916" - brightRed: "#F14444" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#BA1F1E" - brightMagenta: "#BA1F1E" - brightCyan: "#29C3A0" - brightWhite: "#F5F5F5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 100 - black: 0 - red: 37 - green: 57.3 - yellow: 51.4 - blue: 20.7 - magenta: 20.7 - cyan: 57.3 - white: 100 - brightBlack: 0 - brightRed: 37 - brightGreen: 57.3 - brightYellow: 51.4 - brightBlue: 20.7 - brightMagenta: 20.7 - brightCyan: 57.3 - brightWhite: 100 diff --git a/themes/blackai-theme.yaml b/themes/blackai-theme.yaml index 54ca396c..b638b675 100644 --- a/themes/blackai-theme.yaml +++ b/themes/blackai-theme.yaml @@ -2,12 +2,13 @@ name: "blackai-theme" source: marketplace_id: "asilverio.blackai-visual-studio-code" version: "0.1.9" - installs: 51216 + installs: 51218 rating: 4.9 ratings: 10 author: "asilverio" repo: "https://github.com/slipnox/blackai-theme" url: "https://marketplace.visualstudio.com/items?itemName=asilverio.blackai-visual-studio-code" + formats: null colors: bg: "#070707" fg: "#F8F8F2" diff --git a/themes/blackamp.yaml b/themes/blackamp.yaml index 6d893b8a..336d1d23 100644 --- a/themes/blackamp.yaml +++ b/themes/blackamp.yaml @@ -8,6 +8,7 @@ source: author: "Kevin Terry" repo: "https://github.com/kevinjterry/blackamp-theme" url: "https://marketplace.visualstudio.com/items?itemName=KevinTerry.blackamp" + formats: null colors: bg: "#1B1B1C" fg: "#D3DADE" diff --git a/themes/blackberry.yaml b/themes/blackberry.yaml index 462f1658..95f99901 100644 --- a/themes/blackberry.yaml +++ b/themes/blackberry.yaml @@ -2,12 +2,13 @@ name: "blackberry" source: marketplace_id: "indigo.blackberry" version: "1.0.0" - installs: 108 + installs: 109 rating: 0 ratings: 0 author: "indigo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=indigo.blackberry" + formats: null colors: bg: "#130F13" fg: "#CBAA72" diff --git a/themes/blackbird-dusk.yaml b/themes/blackbird-dusk.yaml deleted file mode 100644 index 2dc6cc0c..00000000 --- a/themes/blackbird-dusk.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "🏴 blackbird → dusk" -source: - marketplace_id: "MattGleich.theme-blackbird" - version: "6.0.1" - installs: 10037 - rating: 5 - ratings: 5 - author: "Matt Gleich" - repo: "https://github.com/blackbirdtheme/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=MattGleich.theme-blackbird" -colors: - bg: "#0F0F0F" - fg: "#FDF7CD" - black: "#222029" - red: "#E92741" - green: "#3EC841" - yellow: "#E1DB3F" - blue: "#418EDD" - magenta: "#FF00CC" - cyan: "#00ECD8" - white: "#FDF7CD" - brightBlack: "#777777" - brightRed: "#E92741" - brightGreen: "#3EC841" - brightYellow: "#E1DB3F" - brightBlue: "#418EDD" - brightMagenta: "#FF00CC" - brightCyan: "#00ECD8" - brightWhite: "#FDF7CD" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 101.3 - black: 0 - red: 33.1 - green: 59 - yellow: 81.3 - blue: 39.9 - magenta: 42.4 - cyan: 80.1 - white: 101.3 - brightBlack: 30.2 - brightRed: 33.1 - brightGreen: 59 - brightYellow: 81.3 - brightBlue: 39.9 - brightMagenta: 42.4 - brightCyan: 80.1 - brightWhite: 101.3 diff --git a/themes/blackbird-midnight.yaml b/themes/blackbird-midnight.yaml deleted file mode 100644 index cec143ed..00000000 --- a/themes/blackbird-midnight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "🏴 blackbird → midnight" -source: - marketplace_id: "MattGleich.theme-blackbird" - version: "6.0.1" - installs: 10037 - rating: 5 - ratings: 5 - author: "Matt Gleich" - repo: "https://github.com/blackbirdtheme/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=MattGleich.theme-blackbird" -colors: - bg: "#000000" - fg: "#FDF7CD" - black: "#222029" - red: "#E92741" - green: "#3EC841" - yellow: "#E1DB3F" - blue: "#418EDD" - magenta: "#FF00CC" - cyan: "#00ECD8" - white: "#FDF7CD" - brightBlack: "#343C50" - brightRed: "#E92741" - brightGreen: "#3EC841" - brightYellow: "#E1DB3F" - brightBlue: "#418EDD" - brightMagenta: "#FF00CC" - brightCyan: "#00ECD8" - brightWhite: "#FDF7CD" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 101.7 - black: 0 - red: 33.5 - green: 59.4 - yellow: 81.7 - blue: 40.3 - magenta: 42.7 - cyan: 80.5 - white: 101.7 - brightBlack: 0 - brightRed: 33.5 - brightGreen: 59.4 - brightYellow: 81.7 - brightBlue: 40.3 - brightMagenta: 42.7 - brightCyan: 80.5 - brightWhite: 101.7 diff --git a/themes/blackboard-plus.yaml b/themes/blackboard-plus.yaml index 2a7dafb3..1ecd2bf0 100644 --- a/themes/blackboard-plus.yaml +++ b/themes/blackboard-plus.yaml @@ -8,6 +8,7 @@ source: author: "Jason Lee" repo: "https://github.com/huacnlee/vscode-blackboard-plus.theme" url: "https://marketplace.visualstudio.com/items?itemName=huacnlee.theme-blackboard-plus" + formats: null colors: bg: "#090B18" fg: "#F8F8F8" diff --git a/themes/blackcoffeedark.yaml b/themes/blackcoffeedark.yaml deleted file mode 100644 index 2cd48012..00000000 --- a/themes/blackcoffeedark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "BlackCoffeeDark" -source: - marketplace_id: "MalikAhmadRasheed.coffeecode" - version: "0.0.2" - installs: 38 - rating: 5 - ratings: 1 - author: "Malik Ahmad Rasheed" - repo: "https://github.com/ahmaddii/BlackCoffeeDark" - url: "https://marketplace.visualstudio.com/items?itemName=MalikAhmadRasheed.coffeecode" -colors: - bg: "#0B0F1A" - fg: "#F0F4F8" - black: "#1E1E1E" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#DCDFE4" - brightBlack: "#1E1E1E" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#61AFEF" - brightMagenta: "#C678DD" - brightCyan: "#56B6C2" - brightWhite: "#DCDFE4" -meta: - mode: "dark" - accent: "pink" - hue: 268 - pair: null - contrast: - fg: 99.9 - black: 0 - red: 42.7 - green: 62.9 - yellow: 71.2 - blue: 55.3 - magenta: 45.7 - cyan: 55.2 - white: 86.7 - brightBlack: 0 - brightRed: 42.7 - brightGreen: 62.9 - brightYellow: 71.2 - brightBlue: 55.3 - brightMagenta: 45.7 - brightCyan: 55.2 - brightWhite: 86.7 diff --git a/themes/blackdot.yaml b/themes/blackdot.yaml index ef305d5b..c7387506 100644 --- a/themes/blackdot.yaml +++ b/themes/blackdot.yaml @@ -8,6 +8,7 @@ source: author: "Ignacio Prados" repo: "https://github.com/IgnacioPrados/Blackdot" url: "https://marketplace.visualstudio.com/items?itemName=ignaprados.blackdot" + formats: null colors: bg: "#0A0A0D" fg: "#ABB2BF" diff --git a/themes/blackhighcontrast.yaml b/themes/blackhighcontrast.yaml index 51cb80c3..1ac95c7b 100644 --- a/themes/blackhighcontrast.yaml +++ b/themes/blackhighcontrast.yaml @@ -8,6 +8,7 @@ source: author: "sHellWalker" repo: "https://github.com/abstractParm/BlackHighContrast-Theme" url: "https://marketplace.visualstudio.com/items?itemName=sHellWalker.blackhighcontrast-theme" + formats: null colors: bg: "#000000" fg: "#E6EDF3" diff --git a/themes/blacklite.yaml b/themes/blacklite.yaml index d2cafe64..0b66836d 100644 --- a/themes/blacklite.yaml +++ b/themes/blacklite.yaml @@ -8,6 +8,7 @@ source: author: "LiamRalph" repo: "https://github.com/Liam-Ralph/blacklite" url: "https://marketplace.visualstudio.com/items?itemName=LiamRalph.blacklite" + formats: null colors: bg: "#000000" fg: "#BBBBBB" diff --git a/themes/blackout.yaml b/themes/blackout.yaml index 71505eb8..0fbdd0a0 100644 --- a/themes/blackout.yaml +++ b/themes/blackout.yaml @@ -8,6 +8,7 @@ source: author: "Agustin Duarte" repo: "https://github.com/agustinduarte/blackout-theme" url: "https://marketplace.visualstudio.com/items?itemName=agustinduarte.blackout-theme" + formats: null colors: bg: "#000000" fg: "#E0E0E0" diff --git a/themes/blackpink.yaml b/themes/blackpink.yaml deleted file mode 100644 index ee30b95e..00000000 --- a/themes/blackpink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "BLACKPINK" -source: - marketplace_id: "banebo.black-pink-theme" - version: "0.0.1" - installs: 3836 - rating: 0 - ratings: 0 - author: "banebo" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=banebo.black-pink-theme" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#3F3F3F" - red: "#FF3333" - green: "#0BFFA2" - yellow: "#FFFF24" - blue: "#3597FF" - magenta: "#FF07FF" - cyan: "#07CFFF" - white: "#D5D5D5" - brightBlack: "#6D6D6D" - brightRed: "#FF7B7B" - brightGreen: "#6DFFC4" - brightYellow: "#FFFF7C" - brightBlue: "#7EBBFF" - brightMagenta: "#FF62FF" - brightCyan: "#80E6FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 8.1 - red: 39.6 - green: 88.4 - yellow: 102.8 - blue: 45.7 - magenta: 46.2 - cyan: 68.6 - white: 81.1 - brightBlack: 26.1 - brightRed: 53.3 - brightGreen: 91.7 - brightYellow: 103.6 - brightBlue: 63.5 - brightMagenta: 54.1 - brightCyan: 82.9 - brightWhite: 107.9 diff --git a/themes/blackroulette.yaml b/themes/blackroulette.yaml index 23119cdf..aef44718 100644 --- a/themes/blackroulette.yaml +++ b/themes/blackroulette.yaml @@ -1,13 +1,14 @@ -name: "BlackRoulette" +name: "Blackroulette" source: marketplace_id: "j-schneble.blackroulette-theme" version: "0.2.0" - installs: 165 + installs: 166 rating: 5 ratings: 1 author: "j-schneble" repo: null url: "https://marketplace.visualstudio.com/items?itemName=j-schneble.blackroulette-theme" + formats: null colors: bg: "#131313" fg: "#DCE3EA" diff --git a/themes/blackula-theme.yaml b/themes/blackula-theme.yaml index ac3005cb..76441226 100644 --- a/themes/blackula-theme.yaml +++ b/themes/blackula-theme.yaml @@ -8,6 +8,7 @@ source: author: "Chris Sayen" repo: "https://github.com/crsayen/blackula-theme" url: "https://marketplace.visualstudio.com/items?itemName=crsayen.blackula-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/blacky.yaml b/themes/blacky.yaml index 9062fc61..224c6bb4 100644 --- a/themes/blacky.yaml +++ b/themes/blacky.yaml @@ -8,6 +8,7 @@ source: author: "Kumar Ashish Ranjan" repo: "https://github.com/dev-AshishRanjan/Blackie" url: "https://marketplace.visualstudio.com/items?itemName=KumarAshishRanjan.blacky" + formats: null colors: bg: "#000000" fg: "#5B8FB9" diff --git a/themes/blackzombie-color-theme.yaml b/themes/blackzombie-color-theme.yaml index 78bd63fc..6e666bd2 100644 --- a/themes/blackzombie-color-theme.yaml +++ b/themes/blackzombie-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "RaMeZ" repo: null url: "https://marketplace.visualstudio.com/items?itemName=RaMeZ.theme-blackzombie" + formats: null colors: bg: "#1D1D1D" fg: "#BDBDBD" diff --git a/themes/bladerunner-light.yaml b/themes/bladerunner-light.yaml index 34a1e97c..d52b8ae5 100644 --- a/themes/bladerunner-light.yaml +++ b/themes/bladerunner-light.yaml @@ -8,6 +8,7 @@ source: author: "Neil Schroeder" repo: "https://github.com/neilSchroeder/vscode-theme-bladerunner" url: "https://marketplace.visualstudio.com/items?itemName=NeilSchroeder.vscode-theme-bladerunner" + formats: null colors: bg: "#FEF3DA" fg: "#062726" diff --git a/themes/bladerunner.yaml b/themes/bladerunner.yaml index e2660e82..2edf19fe 100644 --- a/themes/bladerunner.yaml +++ b/themes/bladerunner.yaml @@ -8,6 +8,7 @@ source: author: "Neil Schroeder" repo: "https://github.com/neilSchroeder/vscode-theme-bladerunner" url: "https://marketplace.visualstudio.com/items?itemName=NeilSchroeder.vscode-theme-bladerunner" + formats: null colors: bg: "#03151F" fg: "#2BB900" diff --git a/themes/blah-dark.yaml b/themes/blah-dark.yaml index e1ac2403..b9844cc0 100644 --- a/themes/blah-dark.yaml +++ b/themes/blah-dark.yaml @@ -8,6 +8,7 @@ source: author: "Amila Nirmal" repo: "https://github.com/Y-AmilaNirmal/blah" url: "https://marketplace.visualstudio.com/items?itemName=amila.blah" + formats: null colors: bg: "#011627" fg: "#D6DEEB" diff --git a/themes/blahajtheme.yaml b/themes/blahajtheme.yaml index 354839e5..0cb1a1bf 100644 --- a/themes/blahajtheme.yaml +++ b/themes/blahajtheme.yaml @@ -8,6 +8,7 @@ source: author: "Pratyush Raj" repo: "https://github.com/rajpratyush/BlahajCode" url: "https://marketplace.visualstudio.com/items?itemName=PratyushRaj.Blahajcode" + formats: null colors: bg: "#000000" fg: "#5AD8FF" diff --git a/themes/blank-ghibli.yaml b/themes/blank-ghibli.yaml index f5eb575c..577f48ef 100644 --- a/themes/blank-ghibli.yaml +++ b/themes/blank-ghibli.yaml @@ -8,6 +8,8 @@ source: author: "kiritocode1" repo: "https://github.com/kiritocode1/Blank-Theme" url: "https://marketplace.visualstudio.com/items?itemName=kiritocode1.blank-theme" + formats: + nvim: "https://raw.githubusercontent.com/kiritocode1/Blank-Theme/main/neovim/Blank-Ghibli.lua" colors: bg: "#000000" fg: "#868690" diff --git a/themes/blank-monochrome.yaml b/themes/blank-monochrome.yaml index 1944531d..91659fc6 100644 --- a/themes/blank-monochrome.yaml +++ b/themes/blank-monochrome.yaml @@ -8,6 +8,8 @@ source: author: "kiritocode1" repo: "https://github.com/kiritocode1/Blank-Theme" url: "https://marketplace.visualstudio.com/items?itemName=kiritocode1.blank-theme" + formats: + nvim: "https://raw.githubusercontent.com/kiritocode1/Blank-Theme/main/neovim/Blank-Ghibli.lua" colors: bg: "#000000" fg: "#868690" diff --git a/themes/blank-moonlight.yaml b/themes/blank-moonlight.yaml index cae07ebb..88b6c194 100644 --- a/themes/blank-moonlight.yaml +++ b/themes/blank-moonlight.yaml @@ -8,6 +8,8 @@ source: author: "kiritocode1" repo: "https://github.com/kiritocode1/Blank-Theme" url: "https://marketplace.visualstudio.com/items?itemName=kiritocode1.blank-theme" + formats: + nvim: "https://raw.githubusercontent.com/kiritocode1/Blank-Theme/main/neovim/Blank-Ghibli.lua" colors: bg: "#000000" fg: "#868690" diff --git a/themes/blank-s-theme-reborn.yaml b/themes/blank-s-theme-reborn.yaml index f82613b3..9cda3144 100644 --- a/themes/blank-s-theme-reborn.yaml +++ b/themes/blank-s-theme-reborn.yaml @@ -8,6 +8,7 @@ source: author: "Quidque Studio" repo: "https://github.com/Quidque-Studio/Blank-s-Theme-Reborn" url: "https://marketplace.visualstudio.com/items?itemName=QuidqueStudio.blank-s-theme-reborn" + formats: null colors: bg: "#1A1A2E" fg: "#E8E8E8" diff --git a/themes/blank-uchiha.yaml b/themes/blank-uchiha.yaml index 36269cc4..3ec18561 100644 --- a/themes/blank-uchiha.yaml +++ b/themes/blank-uchiha.yaml @@ -8,6 +8,8 @@ source: author: "kiritocode1" repo: "https://github.com/kiritocode1/Blank-Theme" url: "https://marketplace.visualstudio.com/items?itemName=kiritocode1.blank-theme" + formats: + nvim: "https://raw.githubusercontent.com/kiritocode1/Blank-Theme/main/neovim/Blank-Ghibli.lua" colors: bg: "#000000" fg: "#868686" diff --git a/themes/blazing.yaml b/themes/blazing.yaml index 7df477fe..1fcc6dd2 100644 --- a/themes/blazing.yaml +++ b/themes/blazing.yaml @@ -8,6 +8,7 @@ source: author: "Aryan Ahire" repo: "https://github.com/def-SpaceWar/blazing-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AryanAhire.blazing-vscode" + formats: null colors: bg: "#252920" fg: "#EFFFFF" diff --git a/themes/blender-mojo-theme.yaml b/themes/blender-mojo-theme.yaml index 0cf645b5..3c15eba2 100644 --- a/themes/blender-mojo-theme.yaml +++ b/themes/blender-mojo-theme.yaml @@ -1,4 +1,4 @@ -name: "Blender Mojo theme" +name: "Blender mojo theme" source: marketplace_id: "rubbietheone.blender-mojo-theme" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Rubbie Kelvin" repo: "https://github.com/rubbieKelvin/blender-mojo-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=rubbietheone.blender-mojo-theme" + formats: null colors: bg: "#2A2A2A" fg: "#FFFFFF" diff --git a/themes/blinds-dark.yaml b/themes/blinds-dark.yaml deleted file mode 100644 index 1d6b8c72..00000000 --- a/themes/blinds-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Blinds (Dark)" -source: - marketplace_id: "tankashing.blinds-theme" - version: "8.0.0" - installs: 4027 - rating: 5 - ratings: 4 - author: "Tan Ka-Shing" - repo: "https://github.com/orbulant/blinds-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tankashing.blinds-theme" -colors: - bg: "#1F1F1F" - fg: "#F7F7F7" - black: "#000000" - red: "#DE1010" - green: "#117717" - yellow: "#E5E510" - blue: "#3E1D86" - magenta: "#822082" - cyan: "#008094" - white: "#D4D4D4" - brightBlack: "#545454" - brightRed: "#FF0016" - brightGreen: "#33C989" - brightYellow: "#F5F543" - brightBlue: "#6338FF" - brightMagenta: "#E246E2" - brightCyan: "#00CBE0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 100.6 - black: 0 - red: 27.6 - green: 21.8 - yellow: 84.6 - blue: 0 - magenta: 12.1 - cyan: 28 - white: 78.5 - brightBlack: 13.7 - brightRed: 35.6 - brightGreen: 58.9 - brightYellow: 94.7 - brightBlue: 21.4 - brightMagenta: 39.6 - brightCyan: 63 - brightWhite: 105.9 diff --git a/themes/blink-contrast.yaml b/themes/blink-contrast.yaml deleted file mode 100644 index 70b67c8f..00000000 --- a/themes/blink-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "blink-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#131719" - fg: "#C0CCDB" - black: "#1E2427" - red: "#BA0E2E" - green: "#5298C4" - yellow: "#D4856A" - blue: "#43B5B3" - magenta: "#D4856A" - cyan: "#43B5B3" - white: "#D0D9E4" - brightBlack: "#3F4C53" - brightRed: "#F03E5F" - brightGreen: "#9EC5DE" - brightYellow: "#EBC6B9" - brightBlue: "#8AD4D2" - brightMagenta: "#EBC6B9" - brightCyan: "#8AD4D2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 73.9 - black: 0 - red: 20.5 - green: 42.3 - yellow: 46.4 - blue: 52.8 - magenta: 46.4 - cyan: 52.8 - white: 82 - brightBlack: 11 - brightRed: 36.8 - brightGreen: 67.5 - brightYellow: 75.8 - brightBlue: 71.9 - brightMagenta: 75.8 - brightCyan: 71.9 - brightWhite: 106.9 diff --git a/themes/blink-light.yaml b/themes/blink-light.yaml deleted file mode 100644 index fbcd8530..00000000 --- a/themes/blink-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "blink-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#6A7E89" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#5298C4" - yellow: "#D4856A" - blue: "#43B5B3" - magenta: "#D4856A" - cyan: "#43B5B3" - white: "#778B96" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#9EC5DE" - brightYellow: "#EBC6B9" - brightBlue: "#8AD4D2" - brightMagenta: "#EBC6B9" - brightCyan: "#8AD4D2" - brightWhite: "#A2B0B7" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 69.3 - black: 0 - red: 80.3 - green: 58.5 - yellow: 54.4 - blue: 48.3 - magenta: 54.4 - cyan: 48.3 - white: 63.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 34.1 - brightYellow: 26.3 - brightBlue: 30 - brightMagenta: 26.3 - brightCyan: 30 - brightWhite: 43.9 diff --git a/themes/blink.yaml b/themes/blink.yaml deleted file mode 100644 index 8cb4295c..00000000 --- a/themes/blink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "blink" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#283035" - fg: "#C0CCDB" - black: "#333D44" - red: "#BA0E2E" - green: "#5298C4" - yellow: "#D4856A" - blue: "#43B5B3" - magenta: "#D4856A" - cyan: "#43B5B3" - white: "#D0D9E4" - brightBlack: "#54656F" - brightRed: "#F03E5F" - brightGreen: "#9EC5DE" - brightYellow: "#EBC6B9" - brightBlue: "#8AD4D2" - brightMagenta: "#EBC6B9" - brightCyan: "#8AD4D2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 235 - pair: null - contrast: - fg: 70 - black: 0 - red: 16.6 - green: 38.4 - yellow: 42.5 - blue: 48.9 - magenta: 42.5 - cyan: 48.9 - white: 78.1 - brightBlack: 16.7 - brightRed: 32.9 - brightGreen: 63.6 - brightYellow: 71.9 - brightBlue: 68 - brightMagenta: 71.9 - brightCyan: 68 - brightWhite: 103 diff --git a/themes/blip-cursor-vscode-theme.yaml b/themes/blip-cursor-vscode-theme.yaml index 7a918e47..e0f1a825 100644 --- a/themes/blip-cursor-vscode-theme.yaml +++ b/themes/blip-cursor-vscode-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "b1ip.blip-cursor-vscode-theme" version: "0.0.1" installs: 408 + rating: 0 + ratings: 0 author: "b1ip" repo: "https://github.com/b1ip/blip-cursor-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=b1ip.blip-cursor-vscode-theme" + formats: null colors: bg: "#212121" fg: "#E1E1E2" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 86.3 black: 17.9 diff --git a/themes/bloody-pie.yaml b/themes/bloody-pie.yaml index 64fd8ded..ef90e604 100644 --- a/themes/bloody-pie.yaml +++ b/themes/bloody-pie.yaml @@ -2,12 +2,13 @@ name: "Bloody Pie" source: marketplace_id: "wrobeljakub.bloody-pie" version: "1.0.0" - installs: 1301 + installs: 1302 rating: 0 ratings: 0 author: "wrobeljakub" repo: "https://github.com/wrobeljakub/bloody-pie-vscode" url: "https://marketplace.visualstudio.com/items?itemName=wrobeljakub.bloody-pie" + formats: null colors: bg: "#1B1A19" fg: "#F3F2F1" diff --git a/themes/bloom-1-1-0.yaml b/themes/bloom-1-1-0.yaml deleted file mode 100644 index 1ca19be8..00000000 --- a/themes/bloom-1-1-0.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Bloom 1.1.0" -source: - marketplace_id: "avago24.bloom" - version: "1.1.0" - installs: 312 - rating: 0 - ratings: 0 - author: "avago24" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=avago24.bloom" -colors: - bg: "#000000" - fg: "#BBBBBB" - black: "#808080" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#A5A5A5" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 65.7 - black: 34.8 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 107.9 - brightBlack: 53.5 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 107.9 diff --git a/themes/bloostring.yaml b/themes/bloostring.yaml index 1bbe5a6c..5b25a76d 100644 --- a/themes/bloostring.yaml +++ b/themes/bloostring.yaml @@ -8,6 +8,7 @@ source: author: "Adrian Fung" repo: "https://github.com/TheHatttMan/bloo-string" url: "https://marketplace.visualstudio.com/items?itemName=AdrianFung.bloo-string" + formats: null colors: bg: "#1B1B1B" fg: "#F5F9FC" diff --git a/themes/blossoms.yaml b/themes/blossoms.yaml index ec874e82..b14d6427 100644 --- a/themes/blossoms.yaml +++ b/themes/blossoms.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AprilMayCodes.blossoms-dark-theme" version: "1.0.1" installs: 214 + rating: 0 + ratings: 0 author: "AprilMayCodes" repo: "https://github.com/AprilBlossoms/blossoms-theme" url: "https://marketplace.visualstudio.com/items?itemName=AprilMayCodes.blossoms-dark-theme" + formats: null colors: bg: "#1A002C" fg: "#72FFCA" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: 307 + pair: null contrast: fg: 91.5 black: 0 diff --git a/themes/blowington.yaml b/themes/blowington.yaml index a132a771..eaa2e87d 100644 --- a/themes/blowington.yaml +++ b/themes/blowington.yaml @@ -8,6 +8,7 @@ source: author: "treuks" repo: "https://github.com/treuks/blowington-theme" url: "https://marketplace.visualstudio.com/items?itemName=treuks.blowington-theme" + formats: null colors: bg: "#062626" fg: "#C7B18F" diff --git a/themes/blube-dark-light.yaml b/themes/blube-dark-light.yaml index b26ef271..745bbf3d 100644 --- a/themes/blube-dark-light.yaml +++ b/themes/blube-dark-light.yaml @@ -8,6 +8,7 @@ source: author: "BlueBe" repo: "https://github.com/rafaspdev/blube-dark" url: "https://marketplace.visualstudio.com/items?itemName=BlueBe.blube-dark" + formats: null colors: bg: "#1A1D2C" fg: "#949494" diff --git a/themes/blue-cheese.yaml b/themes/blue-cheese.yaml index 6fb5dfb0..0375b733 100644 --- a/themes/blue-cheese.yaml +++ b/themes/blue-cheese.yaml @@ -8,6 +8,7 @@ source: author: "N-l1" repo: "https://github.com/N-l1/blue-cheese" url: "https://marketplace.visualstudio.com/items?itemName=N-l1.blue-cheese" + formats: null colors: bg: "#282C34" fg: "#E0E0E0" diff --git a/themes/blue-collection.yaml b/themes/blue-collection.yaml index 5b0a1dda..a47e04cc 100644 --- a/themes/blue-collection.yaml +++ b/themes/blue-collection.yaml @@ -8,6 +8,7 @@ source: author: "RLabs Inc." repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" + formats: null colors: bg: "#13151B" fg: "#F7F6F5" diff --git a/themes/blue-color-theme.yaml b/themes/blue-color-theme.yaml deleted file mode 100644 index 2614ca6f..00000000 --- a/themes/blue-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "blue-color-theme" -source: - marketplace_id: "ctf0.seti-ux" - version: "0.1.7" - installs: 1554 - rating: 5 - ratings: 1 - author: "ctf0" - repo: "https://github.com/ctf0/Seti_UX-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=ctf0.seti-ux" -colors: - bg: "#1E2024" - fg: "#FFFFFF" - black: "#292C31" - red: "#FF4545" - green: "#42E0AC" - yellow: "#42E0AC" - blue: "#FF4545" - magenta: "#CF3BE9" - cyan: "#94DDFF" - white: "#FFFFFF" - brightBlack: "#5A5A5A" - brightRed: "#FF4545" - brightGreen: "#42E0AC" - brightYellow: "#42E0AC" - brightBlue: "#FF4545" - brightMagenta: "#CF3BE9" - brightCyan: "#94DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 105.8 - black: 0 - red: 39.7 - green: 71.4 - yellow: 71.4 - blue: 39.7 - magenta: 34.9 - cyan: 78 - white: 105.8 - brightBlack: 16 - brightRed: 39.7 - brightGreen: 71.4 - brightYellow: 71.4 - brightBlue: 39.7 - brightMagenta: 34.9 - brightCyan: 78 - brightWhite: 105.8 diff --git a/themes/blue-dark-theme.yaml b/themes/blue-dark-theme.yaml deleted file mode 100644 index 80092223..00000000 --- a/themes/blue-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Blue Dark theme" -source: - marketplace_id: "william-piron.night-dark-theme" - version: "0.0.55" - installs: 393 - rating: 5 - ratings: 1 - author: "William PIRON" - repo: "https://github.com/wpiron10/night-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=william-piron.night-dark-theme" -colors: - bg: "#071432" - fg: "#CCCCCC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: "Blue Light Theme" - contrast: - fg: 74.7 - black: 0 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 90 - brightBlack: 22 - brightRed: 38.6 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90 diff --git a/themes/blue-day.yaml b/themes/blue-day.yaml deleted file mode 100644 index 5c775903..00000000 --- a/themes/blue-day.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Blue-Day" -source: - marketplace_id: "thiagobessimo.bluenight" - version: "1.0.1" - installs: 1348 - rating: 0 - ratings: 0 - author: "Thiago P B Bessimo" - repo: "https://github.com/thiagobessimo/bluenight" - url: "https://marketplace.visualstudio.com/items?itemName=thiagobessimo.bluenight" -colors: - bg: "#F5F8FF" - fg: "#000510" - black: "#F5F8FF" - red: "#CC3333" - green: "#08DDAA" - yellow: "#FFC500" - blue: "#2080FF" - magenta: "#FF60DD" - cyan: "#20EEEE" - white: "#000510" - brightBlack: "#88ADFF" - brightRed: "#CC3333" - brightGreen: "#08DDAA" - brightYellow: "#FFC500" - brightBlue: "#2080FF" - brightMagenta: "#FF60DD" - brightCyan: "#20EEEE" - brightWhite: "#000510" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 101.7 - black: 0 - red: 69.7 - green: 27.3 - yellow: 22 - blue: 60.2 - magenta: 46.2 - cyan: 16.4 - white: 101.7 - brightBlack: 39.3 - brightRed: 69.7 - brightGreen: 27.3 - brightYellow: 22 - brightBlue: 60.2 - brightMagenta: 46.2 - brightCyan: 16.4 - brightWhite: 101.7 diff --git a/themes/blue-faded.yaml b/themes/blue-faded.yaml index 4413ace1..c914c9fa 100644 --- a/themes/blue-faded.yaml +++ b/themes/blue-faded.yaml @@ -8,6 +8,7 @@ source: author: "AztechCorps" repo: "https://github.com/subhamayd2/monday-blues-theme" url: "https://marketplace.visualstudio.com/items?itemName=aztechcorps.monday-blues" + formats: null colors: bg: "#0D1117" fg: "#ECF0D1" diff --git a/themes/blue-green-theme.yaml b/themes/blue-green-theme.yaml index cc7f8b57..8a02a261 100644 --- a/themes/blue-green-theme.yaml +++ b/themes/blue-green-theme.yaml @@ -8,6 +8,7 @@ source: author: "agungandre687" repo: "https://github.com/Andndre/blue-green" url: "https://marketplace.visualstudio.com/items?itemName=agungandre687.blue-green-theme" + formats: null colors: bg: "#192A2C" fg: "#ADADAD" diff --git a/themes/blue-hacker-theme.yaml b/themes/blue-hacker-theme.yaml index d7869bd5..b730e892 100644 --- a/themes/blue-hacker-theme.yaml +++ b/themes/blue-hacker-theme.yaml @@ -8,6 +8,7 @@ source: author: "Nguyễn Thanh Hậu" repo: "https://github.com/z1001st/blue-dark-themb" url: "https://marketplace.visualstudio.com/items?itemName=nguyenhauweb.blue-dark-themb" + formats: null colors: bg: "#0D1628" fg: "#D8DEE9" diff --git a/themes/blue-jeans.yaml b/themes/blue-jeans.yaml index f085210a..571720db 100644 --- a/themes/blue-jeans.yaml +++ b/themes/blue-jeans.yaml @@ -8,6 +8,7 @@ source: author: "victorseara" repo: "https://github.com/victorseara/blue-jeans-theme" url: "https://marketplace.visualstudio.com/items?itemName=victorseara.blue-jeans" + formats: null colors: bg: "#2B2A33" fg: "#D7D7DB" diff --git a/themes/blue-light-filter-dark.yaml b/themes/blue-light-filter-dark.yaml index 3a32d117..1787c2cd 100644 --- a/themes/blue-light-filter-dark.yaml +++ b/themes/blue-light-filter-dark.yaml @@ -8,6 +8,7 @@ source: author: "Saksham Yadav" repo: "https://github.com/Sakshamyadav15/GitCode" url: "https://marketplace.visualstudio.com/items?itemName=SakshamYadav.blue-light-filter-theme" + formats: null colors: bg: "#1A1512" fg: "#D4B89C" diff --git a/themes/blue-light-filter-warm-dark.yaml b/themes/blue-light-filter-warm-dark.yaml index dd08d4bf..b19d8e46 100644 --- a/themes/blue-light-filter-warm-dark.yaml +++ b/themes/blue-light-filter-warm-dark.yaml @@ -8,6 +8,7 @@ source: author: "Saksham Yadav" repo: "https://github.com/Sakshamyadav15/GitCode" url: "https://marketplace.visualstudio.com/items?itemName=SakshamYadav.blue-light-filter-theme" + formats: null colors: bg: "#1C1108" fg: "#D9B896" diff --git a/themes/blue-light-theme.yaml b/themes/blue-light-theme.yaml deleted file mode 100644 index 497c2e54..00000000 --- a/themes/blue-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Blue Light Theme" -source: - marketplace_id: "msnilshartmann.blue-light" - version: "0.6.4" - installs: 94971 - rating: 5 - ratings: 2 - author: "Nils Hartmann" - repo: "https://github.com/nilshartmann/vscode-blue-light-theme" - url: "https://marketplace.visualstudio.com/items?itemName=msnilshartmann.blue-light" -colors: - bg: "#FFFFFF" - fg: "#9B9B9B" - black: "#1A1A1A" - red: "#A56416" - green: "#428226" - yellow: "#A56416" - blue: "#3778B7" - magenta: "#B052A1" - cyan: "#3778B7" - white: "#F7F7F7" - brightBlack: "#9B9B9B" - brightRed: "#A56416" - brightGreen: "#428226" - brightYellow: "#A56416" - brightBlue: "#3778B7" - brightMagenta: "#B052A1" - brightCyan: "#3778B7" - brightWhite: "#F7F7F7" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Blue Dark theme" - contrast: - fg: 53.6 - black: 104.3 - red: 72.5 - green: 72.5 - yellow: 72.5 - blue: 71.9 - magenta: 71.4 - cyan: 71.9 - white: 0 - brightBlack: 53.6 - brightRed: 72.5 - brightGreen: 72.5 - brightYellow: 72.5 - brightBlue: 71.9 - brightMagenta: 71.4 - brightCyan: 71.9 - brightWhite: 0 diff --git a/themes/blue-melon.yaml b/themes/blue-melon.yaml index 50d7feb1..faa242a6 100644 --- a/themes/blue-melon.yaml +++ b/themes/blue-melon.yaml @@ -8,6 +8,7 @@ source: author: "James Gulland" repo: "https://github.com/james-gulland/blue-melon" url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.blue-melon" + formats: null colors: bg: "#1C2233" fg: "#91B4D5" diff --git a/themes/blue-moves-color-theme.yaml b/themes/blue-moves-color-theme.yaml index d5cc2196..2cf48177 100644 --- a/themes/blue-moves-color-theme.yaml +++ b/themes/blue-moves-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "🧪 ovct 🧪" repo: "https://github.com/Octaviocossy/blue-moves-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Synth1983GreenWave.blue-moves-theme" + formats: null colors: bg: "#0C1F3C" fg: "#A5ABB3" diff --git a/themes/blue-moves-darker-color-theme.yaml b/themes/blue-moves-darker-color-theme.yaml deleted file mode 100644 index e392c803..00000000 --- a/themes/blue-moves-darker-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "blue-moves-darker-color-theme" -source: - marketplace_id: "Synth1983GreenWave.blue-moves-theme" - version: "2.0.1" - installs: 366 - rating: 5 - ratings: 1 - author: "🧪 ovct 🧪" - repo: "https://github.com/Octaviocossy/blue-moves-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Synth1983GreenWave.blue-moves-theme" -colors: - bg: "#111B2E" - fg: "#A5ABB3" - black: "#111B2E" - red: "#BE9164" - green: "#51BD99" - yellow: "#ADB96E" - blue: "#7096C2" - magenta: "#C08FD4" - cyan: "#51ADBB" - white: "#A5ABB3" - brightBlack: "#7096C2" - brightRed: "#BE9164" - brightGreen: "#51BD99" - brightYellow: "#ADB96E" - brightBlue: "#7096C2" - brightMagenta: "#C08FD4" - brightCyan: "#51ADBB" - brightWhite: "#A5ABB3" -meta: - mode: "dark" - accent: "teal" - hue: 262 - pair: null - contrast: - fg: 54.9 - black: 0 - red: 46.1 - green: 55.3 - yellow: 59.4 - blue: 42.7 - magenta: 50 - cyan: 49.7 - white: 54.9 - brightBlack: 42.7 - brightRed: 46.1 - brightGreen: 55.3 - brightYellow: 59.4 - brightBlue: 42.7 - brightMagenta: 50 - brightCyan: 49.7 - brightWhite: 54.9 diff --git a/themes/blue-neon.yaml b/themes/blue-neon.yaml deleted file mode 100644 index e46fb16b..00000000 --- a/themes/blue-neon.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Blue Neon" -source: - marketplace_id: "puszkarek.arasaka-inferno-vscode-theme" - version: "1.2.0" - installs: 268 - author: "Puszkarek" - repo: "https://github.com/Puszkarek/arasaka-inferno-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.arasaka-inferno-vscode-theme" -colors: - bg: "#0E0E17" - fg: "#63A6FD" - black: "#0E0E17" - red: "#FF2E6E" - green: "#2570D4" - yellow: "#F0B437" - blue: "#00FFCC" - magenta: "#FF00AA" - cyan: "#00FFF7" - white: "#2570D4" - brightBlack: "#030305" - brightRed: "#FF2E6E" - brightGreen: "#2570D4" - brightYellow: "#F0B437" - brightBlue: "#00FFCC" - brightMagenta: "#FF00A8" - brightCyan: "#00FFF7" - brightWhite: "#8FBFFF" -meta: - mode: "dark" - accent: "red" - hue: 284 - pair: null - contrast: - fg: 52.8 - black: 0 - red: 39.8 - green: 28.3 - yellow: 67.3 - blue: 89.5 - magenta: 40.6 - cyan: 91.4 - white: 28.3 - brightBlack: 0 - brightRed: 39.8 - brightGreen: 28.3 - brightYellow: 67.3 - brightBlue: 89.5 - brightMagenta: 40.5 - brightCyan: 91.4 - brightWhite: 66.1 diff --git a/themes/blue-night.yaml b/themes/blue-night.yaml deleted file mode 100644 index 7422a64a..00000000 --- a/themes/blue-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Blue-Night" -source: - marketplace_id: "thiagobessimo.bluenight" - version: "1.0.1" - installs: 1348 - rating: 0 - ratings: 0 - author: "Thiago P B Bessimo" - repo: "https://github.com/thiagobessimo/bluenight" - url: "https://marketplace.visualstudio.com/items?itemName=thiagobessimo.bluenight" -colors: - bg: "#000510" - fg: "#F5F8FF" - black: "#000510" - red: "#CC3333" - green: "#08DDAA" - yellow: "#FFC500" - blue: "#2080FF" - magenta: "#FF60DD" - cyan: "#20EEEE" - white: "#F5F8FF" - brightBlack: "#00194D" - brightRed: "#CC3333" - brightGreen: "#08DDAA" - brightYellow: "#FFC500" - brightBlue: "#2080FF" - brightMagenta: "#FF60DD" - brightCyan: "#20EEEE" - brightWhite: "#F5F8FF" -meta: - mode: "dark" - accent: "pink" - hue: 251 - pair: null - contrast: - fg: 103.1 - black: 0 - red: 27.7 - green: 71.2 - yellow: 76.7 - blue: 37.2 - magenta: 51.4 - cyan: 82.7 - white: 103.1 - brightBlack: 0 - brightRed: 27.7 - brightGreen: 71.2 - brightYellow: 76.7 - brightBlue: 37.2 - brightMagenta: 51.4 - brightCyan: 82.7 - brightWhite: 103.1 diff --git a/themes/blue.yaml b/themes/blue.yaml index e9e76a79..36b5472d 100644 --- a/themes/blue.yaml +++ b/themes/blue.yaml @@ -8,6 +8,7 @@ source: author: "natecrow" repo: "https://github.com/natecrow/consonance-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" + formats: null colors: bg: "#111111" fg: "#D9C1BD" diff --git a/themes/blueberry-dark-theme.yaml b/themes/blueberry-dark-theme.yaml index 9d6bd0fb..37f8fc32 100644 --- a/themes/blueberry-dark-theme.yaml +++ b/themes/blueberry-dark-theme.yaml @@ -1,13 +1,14 @@ name: "Blueberry dark theme" source: - marketplace_id: "kachick.blueberry-brackets-dark-theme" - version: "1.2.0" - installs: 554 - rating: 0 - ratings: 0 - author: "Kenichi Kamiya" - repo: "https://github.com/kachick/vscode-blueberry-brackets-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kachick.blueberry-brackets-dark-theme" + marketplace_id: "peymanslh.blueberry-dark-theme" + version: "1.1.1" + installs: 95889 + rating: 4.91 + ratings: 11 + author: "peymanslh" + repo: "https://github.com/peymanslh/vscode-blueberry-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=peymanslh.blueberry-dark-theme" + formats: null colors: bg: "#242938" fg: "#A6ACCD" diff --git a/themes/blueberry-futuristic-theme-fork.yaml b/themes/blueberry-futuristic-theme-fork.yaml deleted file mode 100644 index 4e0d5902..00000000 --- a/themes/blueberry-futuristic-theme-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Blueberry Futuristic theme - Fork" -source: - marketplace_id: "andyluisilva.BlueTheme-andy" - version: "0.0.0" - installs: 165 - rating: 0 - ratings: 0 - author: "andyluisilva" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=andyluisilva.BlueTheme-andy" -colors: - bg: "#040C16" - fg: "#506477" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#0F7575" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#246890" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 251 - pair: null - contrast: - fg: 21.1 - black: 0 - red: 27.5 - green: 53.8 - yellow: 24.5 - blue: 28.2 - magenta: 30.5 - cyan: 48.3 - white: 90.8 - brightBlack: 22.8 - brightRed: 39.3 - brightGreen: 64.3 - brightYellow: 21.6 - brightBlue: 40.8 - brightMagenta: 46.1 - brightCyan: 56.2 - brightWhite: 90.8 diff --git a/themes/blueberry-theme.yaml b/themes/blueberry-theme.yaml deleted file mode 100644 index eac92c96..00000000 --- a/themes/blueberry-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Blueberry Theme" -source: - marketplace_id: "sylten.strawberry-theme" - version: "1.0.5" - installs: 8899 - rating: 5 - ratings: 4 - author: "Jonas Siltamäki Håkansson" - repo: "https://github.com/sylten/strawberry-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sylten.strawberry-theme" -colors: - bg: "#252B2E" - fg: "#D4D4D4" - black: "#878787" - red: "#E15A60" - green: "#99C794" - yellow: "#FAC863" - blue: "#6699CC" - magenta: "#C594C5" - cyan: "#5FB3B3" - white: "#D4D4D4" - brightBlack: "#878787" - brightRed: "#E15A60" - brightGreen: "#99C794" - brightYellow: "#FAC863" - brightBlue: "#6699CC" - brightMagenta: "#C594C5" - brightCyan: "#5FB3B3" - brightWhite: "#D4D4D4" -meta: - mode: "dark" - accent: "orange" - hue: 229 - pair: null - contrast: - fg: 76.6 - black: 34.3 - red: 35 - green: 62 - yellow: 73.9 - blue: 41.3 - magenta: 49.2 - cyan: 50.2 - white: 76.6 - brightBlack: 34.3 - brightRed: 35 - brightGreen: 62 - brightYellow: 73.9 - brightBlue: 41.3 - brightMagenta: 49.2 - brightCyan: 50.2 - brightWhite: 76.6 diff --git a/themes/blueberry.yaml b/themes/blueberry.yaml index 94a5f561..93792529 100644 --- a/themes/blueberry.yaml +++ b/themes/blueberry.yaml @@ -8,6 +8,7 @@ source: author: "vscode-blur" repo: "https://github.com/slapxxi/vscode-blueberry" url: "https://marketplace.visualstudio.com/items?itemName=vscode-blur.vscode-blueberry" + formats: null colors: bg: "#0E0E12" fg: "#A7B2D5" diff --git a/themes/bluebracket-theme.yaml b/themes/bluebracket-theme.yaml index be14ae19..62547f46 100644 --- a/themes/bluebracket-theme.yaml +++ b/themes/bluebracket-theme.yaml @@ -8,6 +8,7 @@ source: author: "bluebracket" repo: "https://github.com/ppozniak/bluebracket-material-vsc" url: "https://marketplace.visualstudio.com/items?itemName=bluebracket.bluebracket-material" + formats: null colors: bg: "#0F1E28" fg: "#FEFEFE" diff --git a/themes/bluedark.yaml b/themes/bluedark.yaml index cd6a5b85..31358151 100644 --- a/themes/bluedark.yaml +++ b/themes/bluedark.yaml @@ -8,6 +8,7 @@ source: author: "Drakencord" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Drakencord.blue-dark" + formats: null colors: bg: "#1F2937" fg: "#ABB2BF" diff --git a/themes/bluegreenspace.yaml b/themes/bluegreenspace.yaml index 8adabee7..1722432f 100644 --- a/themes/bluegreenspace.yaml +++ b/themes/bluegreenspace.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/inspiration_themevsc" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" + formats: null colors: bg: "#090A00" fg: "#E7F4FF" diff --git a/themes/bluelili-color-theme.yaml b/themes/bluelili-color-theme.yaml index f519dcb1..e2c9abaf 100644 --- a/themes/bluelili-color-theme.yaml +++ b/themes/bluelili-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.blue-theme-dark" + formats: null colors: bg: "#19191A" fg: "#878784" diff --git a/themes/blueorange.yaml b/themes/blueorange.yaml index ce03befb..02008160 100644 --- a/themes/blueorange.yaml +++ b/themes/blueorange.yaml @@ -8,6 +8,7 @@ source: author: "Paul Hansen" repo: null url: "https://marketplace.visualstudio.com/items?itemName=paul-hansen.blueorange" + formats: null colors: bg: "#0F1419" fg: "#E6E1CF" diff --git a/themes/blueprint-grid.yaml b/themes/blueprint-grid.yaml deleted file mode 100644 index 9d2a9a52..00000000 --- a/themes/blueprint-grid.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Blueprint-Grid" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#FFFFFF" - green: "#29C3A0" - yellow: "#D29922" - blue: "#FF6364" - magenta: "#FF6364" - cyan: "#29C3A0" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#FFFFFF" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#FF6364" - brightMagenta: "#FF6364" - brightCyan: "#29C3A0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 107.9 - green: 58.7 - yellow: 52.7 - blue: 47.3 - magenta: 47.3 - cyan: 58.7 - white: 107.9 - brightBlack: 0 - brightRed: 107.9 - brightGreen: 58.7 - brightYellow: 52.7 - brightBlue: 47.3 - brightMagenta: 47.3 - brightCyan: 58.7 - brightWhite: 107.9 diff --git a/themes/blueprint.yaml b/themes/blueprint.yaml index 8b502bb4..83dc442c 100644 --- a/themes/blueprint.yaml +++ b/themes/blueprint.yaml @@ -8,6 +8,7 @@ source: author: "talovskx" repo: "https://github.com/talovski/blueprint" url: "https://marketplace.visualstudio.com/items?itemName=talovskx.blueprint-theme" + formats: null colors: bg: "#212744" fg: "#C9CCD3" diff --git a/themes/bluered-theme.yaml b/themes/bluered-theme.yaml index b32d69c8..188d62e7 100644 --- a/themes/bluered-theme.yaml +++ b/themes/bluered-theme.yaml @@ -8,6 +8,7 @@ source: author: "Kelson Carvalho" repo: "https://github.com/NoslekCode/bluered-theme" url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.bluered-theme" + formats: null colors: bg: "#2E3D5A" fg: "#D4D4D4" diff --git a/themes/bluesea.yaml b/themes/bluesea.yaml index 25ee7127..70d78f72 100644 --- a/themes/bluesea.yaml +++ b/themes/bluesea.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/MyThemes" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" + formats: null colors: bg: "#2B2731" fg: "#F7EEFF" diff --git a/themes/blueslate.yaml b/themes/blueslate.yaml index 35626763..214f685f 100644 --- a/themes/blueslate.yaml +++ b/themes/blueslate.yaml @@ -8,6 +8,7 @@ source: author: "Nikhil Thorat" repo: "https://github.com/Nixt4523/blueslate" url: "https://marketplace.visualstudio.com/items?itemName=NikhilThorat.blueslate" + formats: null colors: bg: "#030712" fg: "#D4D4D4" diff --git a/themes/bluespace-s.yaml b/themes/bluespace-s.yaml index eee92161..21dce1ff 100644 --- a/themes/bluespace-s.yaml +++ b/themes/bluespace-s.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/BlueSpaceVSC" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.bluespace" + formats: null colors: bg: "#232530" fg: "#EEFFFF" diff --git a/themes/bluespace.yaml b/themes/bluespace.yaml index ff387a4d..1eb52b30 100644 --- a/themes/bluespace.yaml +++ b/themes/bluespace.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/BlueSpaceVSC" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.bluespace" + formats: null colors: bg: "#02031D" fg: "#FFFFFF" diff --git a/themes/bluespexter.yaml b/themes/bluespexter.yaml index 26f8f0ec..edb9bc31 100644 --- a/themes/bluespexter.yaml +++ b/themes/bluespexter.yaml @@ -8,6 +8,7 @@ source: author: "jeff free 22" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jefffree22.BluespEXTER" + formats: null colors: bg: "#00080D" fg: "#FFFFFF" diff --git a/themes/blueyonedark.yaml b/themes/blueyonedark.yaml index f30e321d..85087f30 100644 --- a/themes/blueyonedark.yaml +++ b/themes/blueyonedark.yaml @@ -1,16 +1,17 @@ name: "BlueyOneDark" source: - marketplace_id: "BlueyThemes.blueymonokai" - version: "1.4.0" - installs: 116 + marketplace_id: "BlueyThemes.blueyonedark" + version: "2.2.1" + installs: 190 rating: 0 ratings: 0 author: "BlueyThemes" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=BlueyThemes.blueymonokai" + url: "https://marketplace.visualstudio.com/items?itemName=BlueyThemes.blueyonedark" + formats: null colors: bg: "#282C34" - fg: "#A3A3A3" + fg: "#D9DBE0" black: "#3F4451" red: "#E05561" green: "#8CC265" @@ -33,7 +34,7 @@ meta: hue: 264 pair: null contrast: - fg: 48.2 + fg: 80.5 black: 0 red: 33.5 green: 57.2 diff --git a/themes/blufftheme.yaml b/themes/blufftheme.yaml index f29a0f61..732ee058 100644 --- a/themes/blufftheme.yaml +++ b/themes/blufftheme.yaml @@ -8,6 +8,7 @@ source: author: "bluff" repo: null url: "https://marketplace.visualstudio.com/items?itemName=bluff.blufftheme" + formats: null colors: bg: "#0F0F0F" fg: "#FFFFFF" diff --git a/themes/bluish.yaml b/themes/bluish.yaml index b98ab54b..5982fa8c 100644 --- a/themes/bluish.yaml +++ b/themes/bluish.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Kudu.Kudu" version: "1.0.4" installs: 277 + rating: 0 + ratings: 0 author: "Kudu" repo: "https://github.com/BradStephen/bluish/blob/main/blueberry.png" url: "https://marketplace.visualstudio.com/items?itemName=Kudu.Kudu" + formats: null colors: bg: "#24262F" fg: "#CBCBCB" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: 275 + pair: null contrast: fg: 71.9 black: 0 diff --git a/themes/bluloco-dark-italic.yaml b/themes/bluloco-dark-italic.yaml deleted file mode 100644 index c3f94a30..00000000 --- a/themes/bluloco-dark-italic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Bluloco Dark Italic" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#42444D" - red: "#FC2E51" - green: "#25A45C" - yellow: "#FF9369" - blue: "#3375FE" - magenta: "#9F7EFE" - cyan: "#4483AA" - white: "#CDD3E0" - brightBlack: "#8F9AAE" - brightRed: "#FF637F" - brightGreen: "#3FC56A" - brightYellow: "#F9C858" - brightBlue: "#10B0FE" - brightMagenta: "#FF78F8" - brightCyan: "#5FB9BC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: "Bluloco Light Italic" - contrast: - fg: 56.2 - black: 0 - red: 34.6 - green: 38.7 - yellow: 55.5 - blue: 29.9 - magenta: 40.5 - cyan: 29.2 - white: 75.5 - brightBlack: 43.2 - brightRed: 43.7 - brightGreen: 54.4 - brightYellow: 73.2 - brightBlue: 50.8 - brightMagenta: 54 - brightCyan: 52.8 - brightWhite: 103.7 diff --git a/themes/bluloco-dark.yaml b/themes/bluloco-dark.yaml deleted file mode 100644 index ba3ded8f..00000000 --- a/themes/bluloco-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Bluloco Dark" -source: - marketplace_id: "W77.bluloco-dark-muted-theme-w77" - version: "0.0.2" - installs: 699 - rating: 0 - ratings: 0 - author: "W77" - repo: "https://github.com/wojtek77/bluloco-dark-muted-theme-w77" - url: "https://marketplace.visualstudio.com/items?itemName=W77.bluloco-dark-muted-theme-w77" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#42444D" - red: "#FC2E51" - green: "#25A45C" - yellow: "#FF9369" - blue: "#3375FE" - magenta: "#8F74E0" - cyan: "#4483AA" - white: "#CDD3E0" - brightBlack: "#8F9AAE" - brightRed: "#FF637F" - brightGreen: "#3FC56A" - brightYellow: "#F9C858" - brightBlue: "#10B0FE" - brightMagenta: "#BD6AB9" - brightCyan: "#5FB9BC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 56.2 - black: 0 - red: 34.6 - green: 38.7 - yellow: 55.5 - blue: 29.9 - magenta: 33.5 - cyan: 29.2 - white: 75.5 - brightBlack: 43.2 - brightRed: 43.7 - brightGreen: 54.4 - brightYellow: 73.2 - brightBlue: 50.8 - brightMagenta: 34.8 - brightCyan: 52.8 - brightWhite: 103.7 diff --git a/themes/bluloco-light-italic.yaml b/themes/bluloco-light-italic.yaml deleted file mode 100644 index 8aead2e3..00000000 --- a/themes/bluloco-light-italic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Bluloco Light Italic" -source: - marketplace_id: "uloco.theme-bluloco-light" - version: "3.7.5" - installs: 485005 - rating: 4.92 - ratings: 39 - author: "Umut Topuzoğlu" - repo: "https://github.com/uloco/theme-bluloco-light" - url: "https://marketplace.visualstudio.com/items?itemName=uloco.theme-bluloco-light" -colors: - bg: "#F9F9F9" - fg: "#383A42" - black: "#373A41" - red: "#D52652" - green: "#239749" - yellow: "#DF621B" - blue: "#275FE4" - magenta: "#823EF0" - cyan: "#26608C" - white: "#B9BAC1" - brightBlack: "#676A77" - brightRed: "#FF637F" - brightGreen: "#3CBC66" - brightYellow: "#C5A231" - brightBlue: "#0099E0" - brightMagenta: "#CE32C0" - brightCyan: "#6D92BA" - brightWhite: "#D3D3D3" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Bluloco Dark Italic" - contrast: - fg: 92.6 - black: 92.7 - red: 69 - green: 61 - yellow: 58.8 - blue: 73 - magenta: 72.3 - cyan: 79.2 - white: 33.5 - brightBlack: 73.2 - brightRed: 50.3 - brightGreen: 44.2 - brightYellow: 44.4 - brightBlue: 54.5 - brightMagenta: 65 - brightCyan: 56.1 - brightWhite: 19.7 diff --git a/themes/blush-pink-enhanced-premium.yaml b/themes/blush-pink-enhanced-premium.yaml deleted file mode 100644 index 04326665..00000000 --- a/themes/blush-pink-enhanced-premium.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Blush Pink Enhanced Premium" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#FDF8F9" - fg: "#2D2D2D" - black: "#2D2D2D" - red: "#E74C3C" - green: "#27AE60" - yellow: "#F39C12" - blue: "#3498DB" - magenta: "#D14769" - cyan: "#1ABC9C" - white: "#ECF0F1" - brightBlack: "#2D2D2D" - brightRed: "#E74C3C" - brightGreen: "#27AE60" - brightYellow: "#F39C12" - brightBlue: "#3498DB" - brightMagenta: "#D14769" - brightCyan: "#1ABC9C" - brightWhite: "#ECF0F1" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.9 - black: 96.9 - red: 61.1 - green: 50.9 - yellow: 39.3 - blue: 54.7 - magenta: 65.8 - cyan: 43.4 - white: 0 - brightBlack: 96.9 - brightRed: 61.1 - brightGreen: 50.9 - brightYellow: 39.3 - brightBlue: 54.7 - brightMagenta: 65.8 - brightCyan: 43.4 - brightWhite: 0 diff --git a/themes/blve.yaml b/themes/blve.yaml deleted file mode 100644 index 19ec9d55..00000000 --- a/themes/blve.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Blve" -source: - marketplace_id: "YMG.blve-theme" - version: "1.1.0" - installs: 514 - rating: 0 - ratings: 0 - author: "YMG" - repo: "https://github.com/0xymg/blve_vscode_theme" - url: "https://marketplace.visualstudio.com/items?itemName=YMG.blve-theme" -colors: - bg: "#0B1015" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 249 - pair: null - contrast: - fg: 80.1 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28 - magenta: 30.4 - cyan: 48.2 - white: 90.6 - brightBlack: 22.6 - brightRed: 39.2 - brightGreen: 64.1 - brightYellow: 96.2 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/bobascheme.yaml b/themes/bobascheme.yaml index 30a68944..5e3625db 100644 --- a/themes/bobascheme.yaml +++ b/themes/bobascheme.yaml @@ -8,6 +8,7 @@ source: author: "BBaoVanC" repo: "https://github.com/BBaoVanC/bobascheme" url: "https://marketplace.visualstudio.com/items?itemName=bbaovanc.bobascheme" + formats: null colors: bg: "#111111" fg: "#D4D4D4" diff --git a/themes/bobojojo.yaml b/themes/bobojojo.yaml index 35b23d31..6feea0aa 100644 --- a/themes/bobojojo.yaml +++ b/themes/bobojojo.yaml @@ -8,6 +8,7 @@ source: author: "Richie Lee" repo: "https://github.com/RichieBzzzt/bobojojo" url: "https://marketplace.visualstudio.com/items?itemName=richiebzzzt.bobojojo" + formats: null colors: bg: "#FBFBFB" fg: "#1C2833" diff --git a/themes/bocenago-pradei.yaml b/themes/bocenago-pradei.yaml index ad80bcc7..8139dfe1 100644 --- a/themes/bocenago-pradei.yaml +++ b/themes/bocenago-pradei.yaml @@ -8,6 +8,7 @@ source: author: "Einar Hjortdal" repo: "https://github.com/einar-hjortdal/Bocenago" url: "https://marketplace.visualstudio.com/items?itemName=einar-hjortdal.bocenago-themes" + formats: null colors: bg: "#24211E" fg: "#D7C484" diff --git a/themes/bogem-s-night-owl.yaml b/themes/bogem-s-night-owl.yaml index 3e62f025..60161290 100644 --- a/themes/bogem-s-night-owl.yaml +++ b/themes/bogem-s-night-owl.yaml @@ -2,12 +2,13 @@ name: "Bogem's Night Owl" source: marketplace_id: "bogem.bogems-night-owl" version: "1.2.0" - installs: 18240 + installs: 18244 rating: 0 ratings: 0 author: "Albert Nigmatzianov" repo: "https://github.com/bogem/bogems-night-owl-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=bogem.bogems-night-owl" + formats: null colors: bg: "#011627" fg: "#DADADA" diff --git a/themes/bogster.yaml b/themes/bogster.yaml deleted file mode 100644 index db1ec80b..00000000 --- a/themes/bogster.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Bogster" -source: - marketplace_id: "boosted.helix-bogster-theme" - version: "1.0.4" - installs: 102 - author: "Boosted" - repo: "https://github.com/pyboosted/vscode-hx-bogster" - url: "https://marketplace.visualstudio.com/items?itemName=boosted.helix-bogster-theme" -colors: - bg: "#141C24" - fg: "#E5DED6" - black: "#13181E" - red: "#D32C5D" - green: "#7FDC59" - yellow: "#DCB659" - blue: "#36B2D4" - magenta: "#B759DC" - cyan: "#00DFB5" - white: "#E5DED6" - brightBlack: "#415367" - brightRed: "#DC597F" - brightGreen: "#7FDC59" - brightYellow: "#DCB659" - brightBlue: "#59DCD8" - brightMagenta: "#B759DC" - brightCyan: "#59DCD8" - brightWhite: "#E5DED6" -meta: - mode: "dark" - accent: "pink" - hue: 249 - pair: null - contrast: - fg: 85.7 - black: 0 - red: 27.8 - green: 70.9 - yellow: 64.1 - blue: 52.2 - magenta: 34.9 - cyan: 71.1 - white: 85.7 - brightBlack: 13.2 - brightRed: 37 - brightGreen: 70.9 - brightYellow: 64.1 - brightBlue: 72.6 - brightMagenta: 34.9 - brightCyan: 72.6 - brightWhite: 85.7 diff --git a/themes/bohemian-dark.yaml b/themes/bohemian-dark.yaml index 5b9b9f12..9ab61196 100644 --- a/themes/bohemian-dark.yaml +++ b/themes/bohemian-dark.yaml @@ -8,6 +8,7 @@ source: author: "Alastair908" repo: "https://github.com/Alastair908/BohemianTheme" url: "https://marketplace.visualstudio.com/items?itemName=Alastair908.bohemian-theme" + formats: null colors: bg: "#1F1E1E" fg: "#FFE5D9" diff --git a/themes/bohemian-light.yaml b/themes/bohemian-light.yaml index b1a92225..f212870d 100644 --- a/themes/bohemian-light.yaml +++ b/themes/bohemian-light.yaml @@ -8,6 +8,7 @@ source: author: "Alastair908" repo: "https://github.com/Alastair908/BohemianTheme" url: "https://marketplace.visualstudio.com/items?itemName=Alastair908.bohemian-theme" + formats: null colors: bg: "#FFFFFF" fg: "#5A3A3A" diff --git a/themes/bold-contrast.yaml b/themes/bold-contrast.yaml deleted file mode 100644 index 5f7bef17..00000000 --- a/themes/bold-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "bold-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0F0D0D" - fg: "#FFFFFF" - black: "#1D1919" - red: "#BA0E2E" - green: "#3D8E91" - yellow: "#F0624B" - blue: "#B4B7AD" - magenta: "#F0624B" - cyan: "#3D8E91" - white: "#FFFFFF" - brightBlack: "#463C3C" - brightRed: "#F03E5F" - brightGreen: "#71C0C3" - brightYellow: "#F8B4A9" - brightBlue: "#E6E7E3" - brightMagenta: "#F8B4A9" - brightCyan: "#71C0C3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.6 - black: 0 - red: 21.2 - green: 35.7 - yellow: 43 - blue: 62.4 - magenta: 43 - cyan: 35.7 - white: 107.6 - brightBlack: 7.6 - brightRed: 37.5 - brightGreen: 61.1 - brightYellow: 71 - brightBlue: 91.7 - brightMagenta: 71 - brightCyan: 61.1 - brightWhite: 107.6 diff --git a/themes/bold-light.yaml b/themes/bold-light.yaml deleted file mode 100644 index b639ba1f..00000000 --- a/themes/bold-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "bold-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#555555" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#3D8E91" - yellow: "#F0624B" - blue: "#888C81" - magenta: "#F0624B" - cyan: "#3D8E91" - white: "#626262" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#71C0C3" - brightYellow: "#F8B4A9" - brightBlue: "#BABDB6" - brightMagenta: "#F8B4A9" - brightCyan: "#71C0C3" - brightWhite: "#888888" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 85.9 - black: 0 - red: 80.3 - green: 65.6 - yellow: 58.4 - blue: 61.9 - magenta: 58.4 - cyan: 65.6 - white: 80.5 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 40.8 - brightYellow: 31.4 - brightBlue: 36.2 - brightMagenta: 31.4 - brightCyan: 40.8 - brightWhite: 63.1 diff --git a/themes/bold.yaml b/themes/bold.yaml deleted file mode 100644 index c9c34ec8..00000000 --- a/themes/bold.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "bold" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2A2626" - fg: "#FFFFFF" - black: "#373232" - red: "#BA0E2E" - green: "#3D8E91" - yellow: "#F0624B" - blue: "#B4B7AD" - magenta: "#F0624B" - cyan: "#3D8E91" - white: "#FFFFFF" - brightBlack: "#605656" - brightRed: "#F03E5F" - brightGreen: "#71C0C3" - brightYellow: "#F8B4A9" - brightBlue: "#E6E7E3" - brightMagenta: "#F8B4A9" - brightCyan: "#71C0C3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 104.6 - black: 0 - red: 18.3 - green: 32.8 - yellow: 40.1 - blue: 59.5 - magenta: 40.1 - cyan: 32.8 - white: 104.6 - brightBlack: 14.1 - brightRed: 34.5 - brightGreen: 58.2 - brightYellow: 68.1 - brightBlue: 88.7 - brightMagenta: 68.1 - brightCyan: 58.2 - brightWhite: 104.6 diff --git a/themes/bolsonaro-theme.yaml b/themes/bolsonaro-theme.yaml deleted file mode 100644 index b77fbc0d..00000000 --- a/themes/bolsonaro-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "bolsonaro theme" -source: - marketplace_id: "higordevv.bolsonarodarktheme" - version: "0.0.1" - installs: 1823 - rating: 5 - ratings: 3 - author: "Higor Devkkkjj" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=higordevv.bolsonarodarktheme" -colors: - bg: "#111311" - fg: "#CB6767" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFBF00" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#D3FF00" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 36.9 - black: 0 - red: 27.1 - green: 53.4 - yellow: 86 - blue: 27.8 - magenta: 30.2 - cyan: 48 - white: 73.7 - brightBlack: 22.4 - brightRed: 39 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.4 - brightMagenta: 45.8 - brightCyan: 55.8 - brightWhite: 96.4 diff --git a/themes/bombyx-light.yaml b/themes/bombyx-light.yaml index feeb04f3..34fe3ca3 100644 --- a/themes/bombyx-light.yaml +++ b/themes/bombyx-light.yaml @@ -8,6 +8,7 @@ source: author: "y6nH" repo: "https://github.com/y6nH/bombyx" url: "https://marketplace.visualstudio.com/items?itemName=y6nH.bombyx" + formats: null colors: bg: "#FFFEFA" fg: "#272A2B" diff --git a/themes/bombyx.yaml b/themes/bombyx.yaml index d4212e8c..676e400f 100644 --- a/themes/bombyx.yaml +++ b/themes/bombyx.yaml @@ -8,6 +8,7 @@ source: author: "y6nH" repo: "https://github.com/y6nH/bombyx" url: "https://marketplace.visualstudio.com/items?itemName=y6nH.bombyx" + formats: null colors: bg: "#272A2B" fg: "#EBE8E0" diff --git a/themes/bonfire.yaml b/themes/bonfire.yaml index e2fbb04e..a4ce558e 100644 --- a/themes/bonfire.yaml +++ b/themes/bonfire.yaml @@ -8,6 +8,7 @@ source: author: "cozybonfire" repo: "https://github.com/cozybonfire/bonfire" url: "https://marketplace.visualstudio.com/items?itemName=cozybonfire.bonfire" + formats: null colors: bg: "#123F4A" fg: "#F8F8F2" diff --git a/themes/boo-color-theme.yaml b/themes/boo-color-theme.yaml index b1fc2aac..d62f19d7 100644 --- a/themes/boo-color-theme.yaml +++ b/themes/boo-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.boo-color-theme" + formats: null colors: bg: "#0E1014" fg: "#83978C" diff --git a/themes/boo.yaml b/themes/boo.yaml index 49a160b1..ed31a6e8 100644 --- a/themes/boo.yaml +++ b/themes/boo.yaml @@ -1,52 +1,53 @@ name: "boo" source: - marketplace_id: "ene-ne.mio" - version: "0.1.0" - installs: 101 - rating: 0 - ratings: 0 - author: "ene-ne" - repo: "https://github.com/ene-ne/mio" - url: "https://marketplace.visualstudio.com/items?itemName=ene-ne.mio" + marketplace_id: "oz.boo" + version: "0.0.3" + installs: 2424 + rating: 5 + ratings: 1 + author: "oz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=oz.boo" + formats: null colors: - bg: "#FFFAFA" - fg: "#250E07" - black: "#D8B8B3" - red: "#873E40" - green: "#839A53" - yellow: "#D4A520" - blue: "#A6B6CE" - magenta: "#D68482" - cyan: "#89BEB7" - white: "#ECC3C2" - brightBlack: "#F3EAE9" - brightRed: "#832426" - brightGreen: "#6F873E" - brightYellow: "#C39104" - brightBlue: "#7B91B3" - brightMagenta: "#C97270" - brightCyan: "#63A098" - brightWhite: "#F2CC60" + bg: "#FFFFFF" + fg: "#331E26" + black: "#000000" + red: "#DC6F83" + green: "#95E279" + yellow: "#EF95A4" + blue: "#508FFF" + magenta: "#EC79BA" + cyan: "#A781B4" + white: "#FFFFFF" + brightBlack: "#5C5C61" + brightRed: "#E23C57" + brightGreen: "#9CFF6A" + brightYellow: "#EF95A4" + brightBlue: "#508FFF" + brightMagenta: "#A781B4" + brightCyan: "#E37463" + brightWhite: "#FFFFFF" meta: mode: "light" - accent: "yellow" + accent: "green" hue: null pair: null contrast: - fg: 102.5 - black: 32.1 - red: 83.3 - green: 55.9 - yellow: 42.4 - blue: 37.8 - magenta: 51.4 - cyan: 38.2 - white: 24.6 - brightBlack: 0 - brightRed: 88.2 - brightGreen: 65.1 - brightYellow: 52 - brightBlue: 56.9 - brightMagenta: 59.2 - brightCyan: 54.2 - brightWhite: 22.7 + fg: 102.4 + black: 106 + red: 58.3 + green: 25.6 + yellow: 43.3 + blue: 58 + magenta: 50.7 + cyan: 59.8 + white: 0 + brightBlack: 82.9 + brightRed: 67.5 + brightGreen: 11.7 + brightYellow: 43.3 + brightBlue: 58 + brightMagenta: 59.8 + brightCyan: 56.5 + brightWhite: 0 diff --git a/themes/boogel.yaml b/themes/boogel.yaml index f33c83cf..6e489d58 100644 --- a/themes/boogel.yaml +++ b/themes/boogel.yaml @@ -8,6 +8,7 @@ source: author: "ArmOwOn" repo: "https://github.com/ArmOwOn/Boogel" url: "https://marketplace.visualstudio.com/items?itemName=ArmOwOn.Boogel" + formats: null colors: bg: "#292940" fg: "#A7AED2" diff --git a/themes/booklike.yaml b/themes/booklike.yaml index 3c0b7599..ed98a561 100644 --- a/themes/booklike.yaml +++ b/themes/booklike.yaml @@ -2,12 +2,13 @@ name: "booklike" source: marketplace_id: "mervyn.booklike" version: "0.0.1" - installs: 921 + installs: 922 rating: 0 ratings: 0 author: "mervyn" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mervyn.booklike" + formats: null colors: bg: "#FFFAE8" fg: "#3E4B53" diff --git a/themes/bootstrap-dark.yaml b/themes/bootstrap-dark.yaml index fe724935..fabc759c 100644 --- a/themes/bootstrap-dark.yaml +++ b/themes/bootstrap-dark.yaml @@ -8,6 +8,7 @@ source: author: "Bootstrap" repo: "https://github.com/twbs/bootstrap-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Bootstrap.bootstrap-vscode-theme" + formats: null colors: bg: "#0B0C0D" fg: "#F6F7F8" diff --git a/themes/bootstrap-light.yaml b/themes/bootstrap-light.yaml index aba3ec70..4425e993 100644 --- a/themes/bootstrap-light.yaml +++ b/themes/bootstrap-light.yaml @@ -8,6 +8,7 @@ source: author: "Bootstrap" repo: "https://github.com/twbs/bootstrap-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Bootstrap.bootstrap-vscode-theme" + formats: null colors: bg: "#FFFFFF" fg: "#0B0C0D" diff --git a/themes/borderless-tokyo-night.yaml b/themes/borderless-tokyo-night.yaml index 508db02c..ea7caa16 100644 --- a/themes/borderless-tokyo-night.yaml +++ b/themes/borderless-tokyo-night.yaml @@ -2,12 +2,13 @@ name: "Borderless Tokyo Night" source: marketplace_id: "gusvasconcelos.borderless-tokyonight" version: "1.0.5" - installs: 1327 + installs: 1328 rating: 0 ratings: 0 author: "Gus Vasconcelos" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gusvasconcelos.borderless-tokyonight" + formats: null colors: bg: "#1A1B26" fg: "#A9B1D6" diff --git a/themes/borders-blue.yaml b/themes/borders-blue.yaml deleted file mode 100644 index 8d21ac6d..00000000 --- a/themes/borders-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Borders Blue" -source: - marketplace_id: "bloumbs.borders-dark" - version: "1.7.0" - installs: 4683 - rating: 0 - ratings: 0 - author: "Bloumbs" - repo: "https://github.com/Bloumbs/Borders-Dark" - url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" -colors: - bg: "#12171D" - fg: "#E5E8EB" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#84DF44" - brightYellow: "#E5C07B" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: 253 - pair: null - contrast: - fg: 91.7 - black: 0 - red: 42.1 - green: 62.3 - yellow: 70.6 - blue: 54.7 - magenta: 45.2 - cyan: 54.6 - white: 83.1 - brightBlack: 35.6 - brightRed: 38.5 - brightGreen: 72.9 - brightYellow: 70.6 - brightBlue: 41.5 - brightMagenta: 12.8 - brightCyan: 54.6 - brightWhite: 83.1 diff --git a/themes/borders-dark.yaml b/themes/borders-dark.yaml deleted file mode 100644 index feade423..00000000 --- a/themes/borders-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Borders Dark" -source: - marketplace_id: "bloumbs.borders-dark" - version: "1.7.0" - installs: 4683 - rating: 0 - ratings: 0 - author: "Bloumbs" - repo: "https://github.com/Bloumbs/Borders-Dark" - url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" -colors: - bg: "#202020" - fg: "#EEEEEE" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#84DF44" - brightYellow: "#E5C07B" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.6 - black: 0 - red: 41 - green: 61.2 - yellow: 69.5 - blue: 53.6 - magenta: 44 - cyan: 53.5 - white: 81.9 - brightBlack: 34.4 - brightRed: 37.3 - brightGreen: 71.8 - brightYellow: 69.5 - brightBlue: 40.4 - brightMagenta: 11.6 - brightCyan: 53.5 - brightWhite: 81.9 diff --git a/themes/borders-darker.yaml b/themes/borders-darker.yaml deleted file mode 100644 index 7df933c7..00000000 --- a/themes/borders-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Borders Darker" -source: - marketplace_id: "bloumbs.borders-dark" - version: "1.7.0" - installs: 4683 - rating: 0 - ratings: 0 - author: "Bloumbs" - repo: "https://github.com/Bloumbs/Borders-Dark" - url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" -colors: - bg: "#141414" - fg: "#EEEEEE" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#84DF44" - brightYellow: "#E5C07B" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96 - black: 0 - red: 42.4 - green: 62.6 - yellow: 70.8 - blue: 54.9 - magenta: 45.4 - cyan: 54.8 - white: 83.3 - brightBlack: 35.8 - brightRed: 38.7 - brightGreen: 73.2 - brightYellow: 70.8 - brightBlue: 41.8 - brightMagenta: 13 - brightCyan: 54.8 - brightWhite: 83.3 diff --git a/themes/borealis.yaml b/themes/borealis.yaml deleted file mode 100644 index 6e5bcc7c..00000000 --- a/themes/borealis.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Borealis" -source: - marketplace_id: "AlejandroMejia.borealis-vscode-theme" - version: "1.0.2" - installs: 823 - rating: 5 - ratings: 1 - author: "Alejandro Mejia" - repo: "https://github.com/HX-AQuintero/awesome-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AlejandroMejia.borealis-vscode-theme" -colors: - bg: "#0E0E1A" - fg: "#FFFFFF" - black: "#000000" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFFF00" - blue: "#0000FF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#808080" - brightRed: "#FF0000" - brightGreen: "#00FF00" - brightYellow: "#FFFF00" - brightBlue: "#0000FF" - brightMagenta: "#FF00FF" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 283 - pair: null - contrast: - fg: 107.5 - black: 0 - red: 37.1 - green: 86.1 - yellow: 102.3 - blue: 15.8 - magenta: 45.8 - cyan: 91.8 - white: 107.5 - brightBlack: 34.4 - brightRed: 37.1 - brightGreen: 86.1 - brightYellow: 102.3 - brightBlue: 15.8 - brightMagenta: 45.8 - brightCyan: 91.8 - brightWhite: 107.5 diff --git a/themes/borealsharp.yaml b/themes/borealsharp.yaml index 2b2afb3a..91ce7392 100644 --- a/themes/borealsharp.yaml +++ b/themes/borealsharp.yaml @@ -8,6 +8,7 @@ source: author: "Sullyvan" repo: "https://github.com/SullyvanBoulanger/borealsharp" url: "https://marketplace.visualstudio.com/items?itemName=Sullyvan.borealsharp" + formats: null colors: bg: "#DEE0E5" fg: "#404859" diff --git a/themes/bot2b.yaml b/themes/bot2b.yaml index d4bef855..7a107243 100644 --- a/themes/bot2b.yaml +++ b/themes/bot2b.yaml @@ -8,6 +8,7 @@ source: author: "lenglounh" repo: "https://github.com/lenglounh/BOT2B" url: "https://marketplace.visualstudio.com/items?itemName=lenglounh.BOT2B" + formats: null colors: bg: "#040411" fg: "#47CBFF" diff --git a/themes/botany-color-theme.yaml b/themes/botany-color-theme.yaml deleted file mode 100644 index 4c8e75db..00000000 --- a/themes/botany-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "botany-color-theme" -source: - marketplace_id: "prabinpanta0.theme-botany" - version: "1.0.2" - installs: 78 - rating: 0 - ratings: 0 - author: "Prabin Panta" - repo: "https://github.com/prabinpanta0/theme-botany" - url: "https://marketplace.visualstudio.com/items?itemName=prabinpanta0.theme-botany" -colors: - bg: "#273136" - fg: "#D1DED3" - black: "#323E45" - red: "#8FB996" - green: "#7EB08A" - yellow: "#D2B48C" - blue: "#7EA4B0" - magenta: "#BA8EAF" - cyan: "#7EA4B0" - white: "#D1DED3" - brightBlack: "#323E45" - brightRed: "#8FB996" - brightGreen: "#7EB08A" - brightYellow: "#D2B48C" - brightBlue: "#7EA4B0" - brightMagenta: "#BA8EAF" - brightCyan: "#7EA4B0" - brightWhite: "#D1DED3" -meta: - mode: "dark" - accent: "teal" - hue: 230 - pair: null - contrast: - fg: 79.5 - black: 0 - red: 53.9 - green: 48.3 - yellow: 59.4 - blue: 44.8 - magenta: 43.4 - cyan: 44.8 - white: 79.5 - brightBlack: 0 - brightRed: 53.9 - brightGreen: 48.3 - brightYellow: 59.4 - brightBlue: 44.8 - brightMagenta: 43.4 - brightCyan: 44.8 - brightWhite: 79.5 diff --git a/themes/botany.yaml b/themes/botany.yaml deleted file mode 100644 index 4f6c8272..00000000 --- a/themes/botany.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Botany" -source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - rating: 0 - ratings: 0 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" -colors: - bg: "#1E2128" - fg: "#FFFFFF" - black: "#4A5568" - red: "#E67E80" - green: "#89B482" - yellow: "#A7C080" - blue: "#7FBBB3" - magenta: "#D699B6" - cyan: "#7FBBB3" - white: "#89B482" - brightBlack: "#5D6B73" - brightRed: "#EA9A9A" - brightGreen: "#A3C496" - brightYellow: "#B8CC94" - brightBlue: "#95C9C2" - brightMagenta: "#E0ADCA" - brightCyan: "#95C9C2" - brightWhite: "#A3C496" -meta: - mode: "dark" - accent: "orange" - hue: 267 - pair: null - contrast: - fg: 105.6 - black: 13.6 - red: 46.9 - green: 53.4 - yellow: 61.4 - blue: 57.3 - magenta: 54.4 - cyan: 57.3 - white: 53.4 - brightBlack: 22 - brightRed: 57 - brightGreen: 63.3 - brightYellow: 69 - brightBlue: 65.8 - brightMagenta: 63.8 - brightCyan: 65.8 - brightWhite: 63.3 diff --git a/themes/bougainvillea.yaml b/themes/bougainvillea.yaml index 7a90b829..3833c2c7 100644 --- a/themes/bougainvillea.yaml +++ b/themes/bougainvillea.yaml @@ -8,6 +8,7 @@ source: author: "kitvex" repo: "https://github.com/kitvex/bougainvillea" url: "https://marketplace.visualstudio.com/items?itemName=kitvex.bougainvillea" + formats: null colors: bg: "#1A2028" fg: "#DEFAFF" diff --git a/themes/boundless.yaml b/themes/boundless.yaml index 52c129a2..4761411e 100644 --- a/themes/boundless.yaml +++ b/themes/boundless.yaml @@ -8,6 +8,7 @@ source: author: "bakrimoharram" repo: "https://github.com/bakrimoharram/boundless-theme" url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.boundless" + formats: null colors: bg: "#EBDBB2" fg: "#A7722D" diff --git a/themes/bouquet.yaml b/themes/bouquet.yaml index 48a9e831..fd5d0157 100644 --- a/themes/bouquet.yaml +++ b/themes/bouquet.yaml @@ -1,4 +1,4 @@ -name: "bouquet" +name: "Bouquet" source: marketplace_id: "richiebzzzt.bouquet" version: "1.407.7" @@ -8,6 +8,7 @@ source: author: "Richie Lee" repo: "https://github.com/richiebzzzt/bouquet" url: "https://marketplace.visualstudio.com/items?itemName=richiebzzzt.bouquet" + formats: null colors: bg: "#012725" fg: "#D6E9EB" diff --git a/themes/boxlang-dark-neon.yaml b/themes/boxlang-dark-neon.yaml index cf84e18e..9ea34856 100644 --- a/themes/boxlang-dark-neon.yaml +++ b/themes/boxlang-dark-neon.yaml @@ -8,6 +8,7 @@ source: author: "Ortus Solutions" repo: "https://github.com/ortus-boxlang/vscode-boxlang-theme" url: "https://marketplace.visualstudio.com/items?itemName=ortus-solutions.vscode-boxlang-theme" + formats: null colors: bg: "#1C1E2D" fg: "#F5F5F5" diff --git a/themes/boxuk-contrast.yaml b/themes/boxuk-contrast.yaml deleted file mode 100644 index 0a3303f6..00000000 --- a/themes/boxuk-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "boxuk-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#111519" - fg: "#FFFFFF" - black: "#1B2228" - red: "#BA0E2E" - green: "#017C9D" - yellow: "#019D76" - blue: "#15B8AE" - magenta: "#017C9D" - cyan: "#019D76" - white: "#FFFFFF" - brightBlack: "#3A4856" - brightRed: "#F03E5F" - brightGreen: "#07C9FD" - brightYellow: "#07FDC0" - brightBlue: "#49EAE0" - brightMagenta: "#07C9FD" - brightCyan: "#07FDC0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 248 - pair: null - contrast: - fg: 107.1 - black: 0 - red: 20.7 - green: 28.2 - yellow: 39.5 - blue: 53.2 - magenta: 28.2 - cyan: 39.5 - white: 107.1 - brightBlack: 9.9 - brightRed: 37 - brightGreen: 64.9 - brightYellow: 87.6 - brightBlue: 80 - brightMagenta: 64.9 - brightCyan: 87.6 - brightWhite: 107.1 diff --git a/themes/boxuk-light.yaml b/themes/boxuk-light.yaml deleted file mode 100644 index eb71e6b8..00000000 --- a/themes/boxuk-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "boxuk-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#414F5C" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#017C9D" - yellow: "#019D76" - blue: "#15B8AE" - magenta: "#017C9D" - cyan: "#019D76" - white: "#4C5C6B" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#07C9FD" - brightYellow: "#07FDC0" - brightBlue: "#49EAE0" - brightMagenta: "#07C9FD" - brightCyan: "#07FDC0" - brightWhite: "#6C8297" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89 - black: 0 - red: 80.3 - green: 72.7 - yellow: 61.4 - blue: 48 - magenta: 72.7 - cyan: 61.4 - white: 83.8 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 36.7 - brightYellow: 15.4 - brightBlue: 22.5 - brightMagenta: 36.7 - brightCyan: 15.4 - brightWhite: 67.1 diff --git a/themes/boxuk.yaml b/themes/boxuk.yaml deleted file mode 100644 index 4e2c8ccc..00000000 --- a/themes/boxuk.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "boxuk" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2A353F" - fg: "#FFFFFF" - black: "#34424E" - red: "#BA0E2E" - green: "#017C9D" - yellow: "#019D76" - blue: "#15B8AE" - magenta: "#017C9D" - cyan: "#019D76" - white: "#FFFFFF" - brightBlack: "#53687C" - brightRed: "#F03E5F" - brightGreen: "#07C9FD" - brightYellow: "#07FDC0" - brightBlue: "#49EAE0" - brightMagenta: "#07C9FD" - brightCyan: "#07FDC0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 246 - pair: null - contrast: - fg: 101.8 - black: 0 - red: 15.4 - green: 22.9 - yellow: 34.2 - blue: 47.9 - magenta: 22.9 - cyan: 34.2 - white: 101.8 - brightBlack: 16.9 - brightRed: 31.7 - brightGreen: 59.7 - brightYellow: 82.3 - brightBlue: 74.7 - brightMagenta: 59.7 - brightCyan: 82.3 - brightWhite: 101.8 diff --git a/themes/brackethive-theme.yaml b/themes/brackethive-theme.yaml index d809b438..6e3e6e0f 100644 --- a/themes/brackethive-theme.yaml +++ b/themes/brackethive-theme.yaml @@ -8,6 +8,7 @@ source: author: "BracketHive" repo: "https://github.com/BracketHive/BracketHiveVSCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=BracketHive.brackethive-theme" + formats: null colors: bg: "#110F1A" fg: "#D4D4D4" diff --git a/themes/brave-contrast.yaml b/themes/brave-contrast.yaml deleted file mode 100644 index 4c370333..00000000 --- a/themes/brave-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "brave-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#101216" - fg: "#D6DBDB" - black: "#1B1E25" - red: "#BA0E2E" - green: "#BC4331" - yellow: "#908BBC" - blue: "#91B9C9" - magenta: "#ABAAB7" - cyan: "#908BBC" - white: "#E4E7E7" - brightBlack: "#3B4251" - brightRed: "#F03E5F" - brightGreen: "#DC8477" - brightYellow: "#CECCE1" - brightBlue: "#D5E5EB" - brightMagenta: "#E2E1E6" - brightCyan: "#CECCE1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83.6 - black: 0 - red: 20.9 - green: 25.9 - yellow: 42.2 - blue: 60.5 - magenta: 56.3 - cyan: 42.2 - white: 91.3 - brightBlack: 8.5 - brightRed: 37.2 - brightGreen: 48.2 - brightYellow: 76.3 - brightBlue: 88.7 - brightMagenta: 88.3 - brightCyan: 76.3 - brightWhite: 107.3 diff --git a/themes/brave-light.yaml b/themes/brave-light.yaml deleted file mode 100644 index efdde936..00000000 --- a/themes/brave-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "brave-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#F7F9F9" - fg: "#2C2D2D" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#BC4331" - yellow: "#7873A0" - blue: "#6E909E" - magenta: "#ABAAB7" - cyan: "#7873A0" - white: "#393A3A" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#DC8477" - brightYellow: "#B3B0C9" - brightBlue: "#ABBFC7" - brightMagenta: "#E2E1E6" - brightCyan: "#B3B0C9" - brightWhite: "#5E6161" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.6 - black: 0 - red: 76.5 - green: 71.4 - yellow: 66.8 - blue: 57.8 - magenta: 41.4 - cyan: 66.8 - white: 92.5 - brightBlack: 0 - brightRed: 60 - brightGreen: 49.2 - brightYellow: 37.4 - brightBlue: 32.5 - brightMagenta: 11.1 - brightCyan: 37.4 - brightWhite: 77.3 diff --git a/themes/brave.yaml b/themes/brave.yaml deleted file mode 100644 index 4ff65ad2..00000000 --- a/themes/brave.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "brave" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#333846" - fg: "#D6DBDB" - black: "#3E4455" - red: "#BA0E2E" - green: "#BC4331" - yellow: "#908BBC" - blue: "#91B9C9" - magenta: "#ABAAB7" - cyan: "#908BBC" - white: "#E4E7E7" - brightBlack: "#5E6781" - brightRed: "#F03E5F" - brightGreen: "#DC8477" - brightYellow: "#CECCE1" - brightBlue: "#D5E5EB" - brightMagenta: "#E2E1E6" - brightCyan: "#CECCE1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 270 - pair: null - contrast: - fg: 76.8 - black: 0 - red: 14.1 - green: 19.1 - yellow: 35.4 - blue: 53.8 - magenta: 49.5 - cyan: 35.4 - white: 84.5 - brightBlack: 16.3 - brightRed: 30.4 - brightGreen: 41.5 - brightYellow: 69.5 - brightBlue: 81.9 - brightMagenta: 81.5 - brightCyan: 69.5 - brightWhite: 100.5 diff --git a/themes/breath2ripoff.yaml b/themes/breath2ripoff.yaml index 574e9dbc..56dab5df 100644 --- a/themes/breath2ripoff.yaml +++ b/themes/breath2ripoff.yaml @@ -8,6 +8,7 @@ source: author: "H___O___R___S___E" repo: "https://github.com/MuazAlhaidar/Breath2Ripoff_VSCodeVersion" url: "https://marketplace.visualstudio.com/items?itemName=HORSE.breath2ripoff" + formats: null colors: bg: "#222B2E" fg: "#17A88B" diff --git a/themes/breeze.yaml b/themes/breeze.yaml index 12ec4f05..d61c86d4 100644 --- a/themes/breeze.yaml +++ b/themes/breeze.yaml @@ -8,6 +8,7 @@ source: author: "Breeze Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=BreezeTheme.BreezeTheme" + formats: null colors: bg: "#191919" fg: "#A7A7A7" diff --git a/themes/brew-theme.yaml b/themes/brew-theme.yaml index d7cac501..eb0ce031 100644 --- a/themes/brew-theme.yaml +++ b/themes/brew-theme.yaml @@ -8,6 +8,7 @@ source: author: "Turtle Labs LLC" repo: "https://github.com/trentbrew/brew-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=turtlehq.brew-theme" + formats: null colors: bg: "#111111" fg: "#A5B7C0" diff --git a/themes/brid-purple-garden-dark.yaml b/themes/brid-purple-garden-dark.yaml deleted file mode 100644 index 5c0b5de9..00000000 --- a/themes/brid-purple-garden-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Brid Purple Garden Dark" -source: - marketplace_id: "layon-extensions.brid-purple-garden" - version: "1.0.0" - installs: 10 - rating: 0 - ratings: 0 - author: "layon-extensions" - repo: "https://github.com/Fernando-Leon/theme-brid" - url: "https://marketplace.visualstudio.com/items?itemName=layon-extensions.brid-purple-garden" -colors: - bg: "#0D0713" - fg: "#E2D9F3" - black: "#1A0F26" - red: "#FF6B6B" - green: "#6AE0A0" - yellow: "#FFB347" - blue: "#6AE0FF" - magenta: "#B084FF" - cyan: "#6AE0FF" - white: "#E2D9F3" - brightBlack: "#3D2A5A" - brightRed: "#FF8E8E" - brightGreen: "#8AF0B8" - brightYellow: "#FFD080" - brightBlue: "#8AECFF" - brightMagenta: "#C4A3FF" - brightCyan: "#8AECFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 307 - pair: "Brid Purple Garden Light" - contrast: - fg: 85.8 - black: 0 - red: 49 - green: 74.5 - yellow: 69.9 - blue: 78.7 - magenta: 48.5 - cyan: 78.7 - white: 85.8 - brightBlack: 0 - brightRed: 58.9 - brightGreen: 85.1 - brightYellow: 82.3 - brightBlue: 86.3 - brightMagenta: 61.2 - brightCyan: 86.3 - brightWhite: 107.7 diff --git a/themes/brid-purple-garden-light.yaml b/themes/brid-purple-garden-light.yaml deleted file mode 100644 index 591cbbf2..00000000 --- a/themes/brid-purple-garden-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Brid Purple Garden Light" -source: - marketplace_id: "layon-extensions.brid-purple-garden" - version: "1.0.0" - installs: 10 - rating: 0 - ratings: 0 - author: "layon-extensions" - repo: "https://github.com/Fernando-Leon/theme-brid" - url: "https://marketplace.visualstudio.com/items?itemName=layon-extensions.brid-purple-garden" -colors: - bg: "#F4EEFF" - fg: "#2D1A4A" - black: "#2D1A4A" - red: "#D4202A" - green: "#2A8030" - yellow: "#CC6600" - blue: "#0066CC" - magenta: "#8A5CFF" - cyan: "#0088AA" - white: "#F4EEFF" - brightBlack: "#4A3380" - brightRed: "#FF4040" - brightGreen: "#40A040" - brightYellow: "#FF8800" - brightBlue: "#2288FF" - brightMagenta: "#B084FF" - brightCyan: "#00AACC" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Brid Purple Garden Dark" - contrast: - fg: 93.6 - black: 93.6 - red: 65.2 - green: 65.4 - yellow: 56.7 - blue: 68.4 - magenta: 59.4 - cyan: 59.1 - white: 0 - brightBlack: 84.6 - brightRed: 52 - brightGreen: 51.7 - brightYellow: 37.9 - brightBlue: 53.1 - brightMagenta: 44.6 - brightCyan: 44 - brightWhite: 0 diff --git a/themes/briggitehelm.yaml b/themes/briggitehelm.yaml index 06ac8904..4a9a7fcb 100644 --- a/themes/briggitehelm.yaml +++ b/themes/briggitehelm.yaml @@ -8,6 +8,7 @@ source: author: "Colonel Moutarde" repo: "https://github.com/Karakoukie/mammoth-vs-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=ColonelMoutarde.mammoth-color-theme" + formats: null colors: bg: "#FFF8F1" fg: "#000000" diff --git a/themes/bright-colors-blue.yaml b/themes/bright-colors-blue.yaml deleted file mode 100644 index 69c94ded..00000000 --- a/themes/bright-colors-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Bright Colors Blue" -source: - marketplace_id: "nikhil2007.Bright-Color" - version: "1.4.2" - installs: 17810 - rating: 5 - ratings: 2 - author: "Nikhil Nath Jha" - repo: "https://github.com/jhanikhilnath/bright_colors_theme" - url: "https://marketplace.visualstudio.com/items?itemName=nikhil2007.Bright-Color" -colors: - bg: "#193549" - fg: "#FFFFFF" - black: "#000000" - red: "#FF628C" - green: "#3AD900" - yellow: "#FFC600" - blue: "#0088FF" - magenta: "#FB94FF" - cyan: "#80FCFF" - white: "#FFFFFF" - brightBlack: "#0050A4" - brightRed: "#FF628C" - brightGreen: "#3AD900" - brightYellow: "#FFC600" - brightBlue: "#0088FF" - brightMagenta: "#FB94FF" - brightCyan: "#80FCFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 242 - pair: null - contrast: - fg: 102.1 - black: 0 - red: 42.3 - green: 61.5 - yellow: 71.3 - blue: 33.9 - magenta: 59.5 - cyan: 87.9 - white: 102.1 - brightBlack: 9.8 - brightRed: 42.3 - brightGreen: 61.5 - brightYellow: 71.3 - brightBlue: 33.9 - brightMagenta: 59.5 - brightCyan: 87.9 - brightWhite: 102.1 diff --git a/themes/bright-lights.yaml b/themes/bright-lights.yaml index f79aa59e..620764cf 100644 --- a/themes/bright-lights.yaml +++ b/themes/bright-lights.yaml @@ -8,6 +8,7 @@ source: author: "Hittero" repo: "https://github.com/joaodanilo123/bright-lights-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=hittero.bright-lights" + formats: null colors: bg: "#191919" fg: "#CDC7C7" diff --git a/themes/britecore.yaml b/themes/britecore.yaml index 58fce580..ad250283 100644 --- a/themes/britecore.yaml +++ b/themes/britecore.yaml @@ -8,6 +8,7 @@ source: author: "z3by" repo: "https://github.com/z3by/vscode-theme-britecore" url: "https://marketplace.visualstudio.com/items?itemName=z3by.vscode-theme-britecore" + formats: null colors: bg: "#032E35" fg: "#FFFFFF" diff --git a/themes/british-racing-green-theme.yaml b/themes/british-racing-green-theme.yaml index 0e5cf8ab..41806097 100644 --- a/themes/british-racing-green-theme.yaml +++ b/themes/british-racing-green-theme.yaml @@ -2,10 +2,13 @@ name: "British Racing Green Theme" source: marketplace_id: "Danesed.british-racing-green-theme" version: "1.0.1" - installs: 15 + installs: 18 + rating: 0 + ratings: 0 author: "Danesed" repo: "https://github.com/danesed/colorsea-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Danesed.british-racing-green-theme" + formats: null colors: bg: "#07231E" fg: "#BAD1D0" diff --git a/themes/brogrammer-plus.yaml b/themes/brogrammer-plus.yaml index 03fbd594..17999b01 100644 --- a/themes/brogrammer-plus.yaml +++ b/themes/brogrammer-plus.yaml @@ -2,12 +2,13 @@ name: "Brogrammer Plus" source: marketplace_id: "jackjyq.brogrammer-plus" version: "1.0.1" - installs: 8958 + installs: 8964 rating: 5 ratings: 3 author: "Jack Jiang" repo: "https://github.com/jackjyq/vscode-theme-brogrammer-plus" url: "https://marketplace.visualstudio.com/items?itemName=jackjyq.brogrammer-plus" + formats: null colors: bg: "#121212" fg: "#FFFFFF" diff --git a/themes/broken-dreams-blue.yaml b/themes/broken-dreams-blue.yaml index 8fdd9d6a..2726a798 100644 --- a/themes/broken-dreams-blue.yaml +++ b/themes/broken-dreams-blue.yaml @@ -6,6 +6,7 @@ source: author: "EmanuelPNA" repo: "https://github.com/Emanuelpna/broken-dreams-theme" url: "https://marketplace.visualstudio.com/items?itemName=emanuelpna.broken-dreams" + formats: null colors: bg: "#232330" fg: "#D7E5EF" diff --git a/themes/broken-dreams-purple.yaml b/themes/broken-dreams-purple.yaml index bb63038e..b9486cc8 100644 --- a/themes/broken-dreams-purple.yaml +++ b/themes/broken-dreams-purple.yaml @@ -6,6 +6,7 @@ source: author: "EmanuelPNA" repo: "https://github.com/Emanuelpna/broken-dreams-theme" url: "https://marketplace.visualstudio.com/items?itemName=emanuelpna.broken-dreams" + formats: null colors: bg: "#1E1B21" fg: "#F5F5F5" diff --git a/themes/bromium.yaml b/themes/bromium.yaml index fe8c8d63..3f5a0a76 100644 --- a/themes/bromium.yaml +++ b/themes/bromium.yaml @@ -2,12 +2,13 @@ name: "Bromium" source: marketplace_id: "TheBromo.bromium" version: "0.1.4" - installs: 2047 + installs: 2048 rating: 5 ratings: 1 author: "TheBromo" repo: "https://github.com/TheBromo/bromium" url: "https://marketplace.visualstudio.com/items?itemName=TheBromo.bromium" + formats: null colors: bg: "#101317" fg: "#D4D4D5" diff --git a/themes/brownhu.yaml b/themes/brownhu.yaml deleted file mode 100644 index 0727afe6..00000000 --- a/themes/brownhu.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Brownhu" -source: - marketplace_id: "Brownhu.duang" - version: "0.1.2" - installs: 1860 - rating: 5 - ratings: 1 - author: "Brownhu" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Brownhu.duang" -colors: - bg: "#282C34" - fg: "#9CDAFB" - black: "#2D3139" - red: "#FFB094" - green: "#AAE691" - yellow: "#56ECD5" - blue: "#ACEBFC" - magenta: "#C591E6" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#AAE691" - brightYellow: "#56ECD5" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 74.9 - black: 0 - red: 66.2 - green: 77.6 - yellow: 77.5 - blue: 84.3 - magenta: 49.7 - cyan: 51.4 - white: 79.8 - brightBlack: 32.3 - brightRed: 35.2 - brightGreen: 77.6 - brightYellow: 77.5 - brightBlue: 38.3 - brightMagenta: 9.5 - brightCyan: 51.4 - brightWhite: 79.8 diff --git a/themes/brownista.yaml b/themes/brownista.yaml index 21a39804..15ae998c 100644 --- a/themes/brownista.yaml +++ b/themes/brownista.yaml @@ -8,6 +8,7 @@ source: author: "Brownista" repo: "https://github.com/theBoss-png/brownista-hubaldium" url: "https://marketplace.visualstudio.com/items?itemName=hubaldium.brownista-hubaldium" + formats: null colors: bg: "#1B1714" fg: "#D4D4D4" diff --git a/themes/bruno-s-wet-dream.yaml b/themes/bruno-s-wet-dream.yaml index 607db9a0..1c9da642 100644 --- a/themes/bruno-s-wet-dream.yaml +++ b/themes/bruno-s-wet-dream.yaml @@ -2,12 +2,13 @@ name: "bruno's wet dream" source: marketplace_id: "massoladb.brunos-wet-dream" version: "0.3.0" - installs: 191 + installs: 192 rating: 0 ratings: 0 author: "Felipe Massola" repo: "https://github.com/massoladb/brunos-wet-dream" url: "https://marketplace.visualstudio.com/items?itemName=massoladb.brunos-wet-dream" + formats: null colors: bg: "#2E1731" fg: "#FFFFFF" diff --git a/themes/brutalcode.yaml b/themes/brutalcode.yaml index 017a04e2..b70aa357 100644 --- a/themes/brutalcode.yaml +++ b/themes/brutalcode.yaml @@ -8,6 +8,7 @@ source: author: "Wai Yan Min Lwin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=WaiYanMinLwin.brutal-code" + formats: null colors: bg: "#252525" fg: "#FFFEFE" diff --git a/themes/bts-borahae.yaml b/themes/bts-borahae.yaml index c372045e..14ce197f 100644 --- a/themes/bts-borahae.yaml +++ b/themes/bts-borahae.yaml @@ -8,6 +8,7 @@ source: author: "sooj" repo: "https://github.com/cloudycatt/btsborahae-dark" url: "https://marketplace.visualstudio.com/items?itemName=sooj.btsborahae-dark" + formats: null colors: bg: "#150F21" fg: "#B6B6B6" diff --git a/themes/btv-dark.yaml b/themes/btv-dark.yaml index 1407c369..34e41b57 100644 --- a/themes/btv-dark.yaml +++ b/themes/btv-dark.yaml @@ -8,6 +8,7 @@ source: author: "Brandon Vout" repo: "https://github.com/brandonvout/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=BrandonVout.btv-themes" + formats: null colors: bg: "#1D1D20" fg: "#BBD1E5" diff --git a/themes/bubba-kush-v1.yaml b/themes/bubba-kush-v1.yaml deleted file mode 100644 index 4d95fc28..00000000 --- a/themes/bubba-kush-v1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Bubba Kush v1" -source: - marketplace_id: "astergabe.bubba-kush-theme" - version: "0.0.6" - installs: 132 - rating: 5 - ratings: 1 - author: "Gabriel Fernandes" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=astergabe.bubba-kush-theme" -colors: - bg: "#191919" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106.7 - black: 0 - red: 26.5 - green: 52.8 - yellow: 85.4 - blue: 27.2 - magenta: 29.5 - cyan: 47.3 - white: 89.8 - brightBlack: 21.8 - brightRed: 38.3 - brightGreen: 63.3 - brightYellow: 95.4 - brightBlue: 39.8 - brightMagenta: 45.2 - brightCyan: 55.2 - brightWhite: 89.8 diff --git a/themes/bubble-theme.yaml b/themes/bubble-theme.yaml index 1d8411f8..58d442e2 100644 --- a/themes/bubble-theme.yaml +++ b/themes/bubble-theme.yaml @@ -8,6 +8,7 @@ source: author: "Nilton Pontes" repo: "https://github.com/niltoneapontes/bubble-theme" url: "https://marketplace.visualstudio.com/items?itemName=NiltonPontes.bubble-theme" + formats: null colors: bg: "#181B28" fg: "#F0F0F0" diff --git a/themes/bubblegum-color-theme.yaml b/themes/bubblegum-color-theme.yaml index 281f99a4..ae724912 100644 --- a/themes/bubblegum-color-theme.yaml +++ b/themes/bubblegum-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Sage Fennel" repo: "https://github.com/wavebeem/vscode-theme-unoduetre" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" + formats: null colors: bg: "#F6EAF6" fg: "#800080" diff --git a/themes/bubblegum-milkshake.yaml b/themes/bubblegum-milkshake.yaml index 7c0e1278..2b322b38 100644 --- a/themes/bubblegum-milkshake.yaml +++ b/themes/bubblegum-milkshake.yaml @@ -8,6 +8,7 @@ source: author: "persocon" repo: "https://github.com/persocon/bubblegum-milkshake" url: "https://marketplace.visualstudio.com/items?itemName=persocon.bubblegum-milkshake" + formats: null colors: bg: "#263647" fg: "#FFFFFF" diff --git a/themes/bubblegum.yaml b/themes/bubblegum.yaml index 434f4b7c..1cbcaa6e 100644 --- a/themes/bubblegum.yaml +++ b/themes/bubblegum.yaml @@ -8,6 +8,7 @@ source: author: "AdrianTriS" repo: "https://github.com/AdrianTriSetiawan/Bubblegums-theme" url: "https://marketplace.visualstudio.com/items?itemName=AdrianTriS.bubblegum-theme" + formats: null colors: bg: "#1A1226" fg: "#FFD4E8" diff --git a/themes/bubblegumtheme.yaml b/themes/bubblegumtheme.yaml index e0afef07..0d7df06b 100644 --- a/themes/bubblegumtheme.yaml +++ b/themes/bubblegumtheme.yaml @@ -8,6 +8,7 @@ source: author: "Mario Fernández Estévez" repo: "https://github.com/mariof99/bubbleGumTheme" url: "https://marketplace.visualstudio.com/items?itemName=MarioFernndezEstvez.bubblegumtheme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/buby-color-theme.yaml b/themes/buby-color-theme.yaml deleted file mode 100644 index 84ff2ad8..00000000 --- a/themes/buby-color-theme.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "BUBY-color-theme" -source: - marketplace_id: "kerneldevs.buby" - version: "0.0.1" - installs: 85 - author: "kernel_devs" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=kerneldevs.buby" -colors: - bg: "#D9D2E9" - fg: "#8E7CC3" - black: "#D9D2E9" - red: "#B4A7D6" - green: "#594197" - yellow: "#674EA7" - blue: "#5C4497" - magenta: "#351C75" - cyan: "#7A62B7" - white: "#9988C8" - brightBlack: "#CEC6E4" - brightRed: "#7767A4" - brightGreen: "#7A62B7" - brightYellow: "#674EA7" - brightBlue: "#5C4497" - brightMagenta: "#351C75" - brightCyan: "#7A62B7" - brightWhite: "#8E7CC3" -meta: - mode: "light" - accent: "magenta" - hue: 300 - pair: null - contrast: - fg: 39.3 - black: 0 - red: 19.5 - green: 63.1 - yellow: 57.7 - blue: 62.1 - magenta: 74.8 - cyan: 49.7 - white: 34 - brightBlack: 0 - brightRed: 49.7 - brightGreen: 49.7 - brightYellow: 57.7 - brightBlue: 62.1 - brightMagenta: 74.8 - brightCyan: 49.7 - brightWhite: 39.3 diff --git a/themes/buddha-a-super-minimal-theme-for-vscode.yaml b/themes/buddha-a-super-minimal-theme-for-vscode.yaml index ac68ab97..88e36bc1 100644 --- a/themes/buddha-a-super-minimal-theme-for-vscode.yaml +++ b/themes/buddha-a-super-minimal-theme-for-vscode.yaml @@ -8,6 +8,7 @@ source: author: "Anup Jha" repo: "https://github.com/anupjha/buddha-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=AnupJha.buddha-a-super-minimal-theme-for-vscode" + formats: null colors: bg: "#003440" fg: "#FFFFFF" diff --git a/themes/budha.yaml b/themes/budha.yaml index 21b2166d..80bfed14 100644 --- a/themes/budha.yaml +++ b/themes/budha.yaml @@ -8,6 +8,7 @@ source: author: "overfl0w" repo: null url: "https://marketplace.visualstudio.com/items?itemName=overfl0w.budha" + formats: null colors: bg: "#12151C" fg: "#686868" diff --git a/themes/budokan.yaml b/themes/budokan.yaml index 01ee15d1..fdca9af1 100644 --- a/themes/budokan.yaml +++ b/themes/budokan.yaml @@ -8,6 +8,7 @@ source: author: "Matheus Gabriel" repo: "https://github.com/matheusfnl/budokan-theme" url: "https://marketplace.visualstudio.com/items?itemName=matheusfunil.budokan-theme" + formats: null colors: bg: "#1D1818" fg: "#6FEA94" diff --git a/themes/bugged-gpu.yaml b/themes/bugged-gpu.yaml index ae4693c1..aacdebf3 100644 --- a/themes/bugged-gpu.yaml +++ b/themes/bugged-gpu.yaml @@ -8,6 +8,7 @@ source: author: "Bugged Gpu Theme" repo: "https://github.com/jguigo/bugged-gpu-theme" url: "https://marketplace.visualstudio.com/items?itemName=BuggedGpuTheme.darker-high-contrast-bugged-gpu" + formats: null colors: bg: "#212121" fg: "#ECFFFF" diff --git a/themes/buhtig.yaml b/themes/buhtig.yaml index ca240884..992ffe64 100644 --- a/themes/buhtig.yaml +++ b/themes/buhtig.yaml @@ -8,6 +8,7 @@ source: author: "Neo Wees" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NeoWees.onebadass-theme-neowees" + formats: null colors: bg: "#181D22" fg: "#E1E4E8" diff --git a/themes/bullish-theme.yaml b/themes/bullish-theme.yaml index 952a5ad1..47dd09bd 100644 --- a/themes/bullish-theme.yaml +++ b/themes/bullish-theme.yaml @@ -8,6 +8,7 @@ source: author: "zhiking" repo: "https://github.com/zyj1022/vscode-bullish-theme" url: "https://marketplace.visualstudio.com/items?itemName=zhiking.bullish-theme" + formats: null colors: bg: "#EFEFF4" fg: "#5C6066" diff --git a/themes/bumblebee.yaml b/themes/bumblebee.yaml index 74d5f5a2..d2f4c814 100644 --- a/themes/bumblebee.yaml +++ b/themes/bumblebee.yaml @@ -8,6 +8,7 @@ source: author: "Ibrahim Dirar" repo: "https://github.com/ibrahimdirar/bumblebee-theme" url: "https://marketplace.visualstudio.com/items?itemName=IbrahimDirar.bumblebee" + formats: null colors: bg: "#0A0A0A" fg: "#B3B8C5" diff --git a/themes/burnt-chestnut.yaml b/themes/burnt-chestnut.yaml index 593792c1..83ef9198 100644 --- a/themes/burnt-chestnut.yaml +++ b/themes/burnt-chestnut.yaml @@ -8,6 +8,7 @@ source: author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/cocoabutter" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.cocoa-butter" + formats: null colors: bg: "#211D20" fg: "#BBB1A7" diff --git a/themes/burple-dark.yaml b/themes/burple-dark.yaml index dd17e878..4d8f26a0 100644 --- a/themes/burple-dark.yaml +++ b/themes/burple-dark.yaml @@ -8,6 +8,7 @@ source: author: "Vencordthemer" repo: "https://github.com/vencordthemer/burple" url: "https://marketplace.visualstudio.com/items?itemName=Vencordthemer.burple" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/busbyvscode.yaml b/themes/busbyvscode.yaml index 23d3bd10..a80049f6 100644 --- a/themes/busbyvscode.yaml +++ b/themes/busbyvscode.yaml @@ -8,6 +8,7 @@ source: author: "MikeBusby" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MikeBusby.busbyvscode" + formats: null colors: bg: "#002436" fg: "#BFC7D5" diff --git a/themes/bushland.yaml b/themes/bushland.yaml index 862644ff..edb8d9de 100644 --- a/themes/bushland.yaml +++ b/themes/bushland.yaml @@ -8,6 +8,7 @@ source: author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/bushland" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.bushland" + formats: null colors: bg: "#313531" fg: "#FAFAFA" diff --git a/themes/butrin-theme.yaml b/themes/butrin-theme.yaml index 1abae836..3a8cf529 100644 --- a/themes/butrin-theme.yaml +++ b/themes/butrin-theme.yaml @@ -1,13 +1,14 @@ -name: "Butrin-Theme" +name: "Butrin Theme" source: marketplace_id: "stormedx.butrin-theme" version: "0.0.4" - installs: 1312 + installs: 1313 rating: 5 ratings: 3 author: "stormed" repo: "https://github.com/stormedx/butrin-theme" url: "https://marketplace.visualstudio.com/items?itemName=stormedx.butrin-theme" + formats: null colors: bg: "#4B3B3C" fg: "#DCDCDC" diff --git a/themes/butter-green-fork.yaml b/themes/butter-green-fork.yaml deleted file mode 100644 index 6fef1ad1..00000000 --- a/themes/butter-green-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Butter green - Fork" -source: - marketplace_id: "xynny.delightfulgreen" - version: "0.0.1" - installs: 534 - rating: 0 - ratings: 0 - author: "xynny" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=xynny.delightfulgreen" -colors: - bg: "#1E1E1E" - fg: "#BE9F9F" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 52.4 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/buttercawfee.yaml b/themes/buttercawfee.yaml index 3bf1b796..eb8c45b4 100644 --- a/themes/buttercawfee.yaml +++ b/themes/buttercawfee.yaml @@ -8,6 +8,7 @@ source: author: "shurj0" repo: "https://github.com/shurj0/Buttercawfee" url: "https://marketplace.visualstudio.com/items?itemName=shurj0.buttercawfee" + formats: null colors: bg: "#15130F" fg: "#D4D4D4" diff --git a/themes/bynawers.yaml b/themes/bynawers.yaml index 94dc9b11..65bb9e08 100644 --- a/themes/bynawers.yaml +++ b/themes/bynawers.yaml @@ -8,6 +8,7 @@ source: author: "Bynawers" repo: "https://github.com/Bynawers/vscode-manjaro-theme" url: "https://marketplace.visualstudio.com/items?itemName=Bynawers.manjaro-bynawers-theme" + formats: null colors: bg: "#222B2E" fg: "#ABB2BF" diff --git a/themes/byteglow.yaml b/themes/byteglow.yaml index 04e44940..0e3d9ea9 100644 --- a/themes/byteglow.yaml +++ b/themes/byteglow.yaml @@ -8,6 +8,7 @@ source: author: "AMITRAJIT SARKAR" repo: "https://github.com/Amitrajit007/ByteGlow" url: "https://marketplace.visualstudio.com/items?itemName=ByteLoom.byteglow-theme" + formats: null colors: bg: "#242434" fg: "#E0E3E6" diff --git a/themes/bytenight.yaml b/themes/bytenight.yaml index 346f9612..4067aa39 100644 --- a/themes/bytenight.yaml +++ b/themes/bytenight.yaml @@ -8,6 +8,8 @@ source: author: "Amir Phil Adam" repo: "https://github.com/amirphiladam2/ByteNight" url: "https://marketplace.visualstudio.com/items?itemName=AmirPhilAdam.bytenighttheme" + formats: + zed: "https://raw.githubusercontent.com/amirphiladam2/ByteNight/main/themes/- Markdown optimized with special formatting for documentation-color-theme.json" colors: bg: "#00000A" fg: "#E2E8F0" diff --git a/themes/c-c-theme.yaml b/themes/c-c-theme.yaml deleted file mode 100644 index 13be97ab..00000000 --- a/themes/c-c-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "C/C++ Theme" -source: - marketplace_id: "Xen.ccpp-theme" - version: "0.3.4" - installs: 18877 - rating: 5 - ratings: 2 - author: "Xen" - repo: "https://github.com/xenkuo/ccpp_theme" - url: "https://marketplace.visualstudio.com/items?itemName=Xen.ccpp-theme" -colors: - bg: "#282A36" - fg: "#F5F5EF" - black: "#21222C" - red: "#FF5555" - green: "#5FEA77" - yellow: "#EAF48C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F5F5EF" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 278 - pair: null - contrast: - fg: 97.1 - black: 0 - red: 40.4 - green: 74.1 - yellow: 91.8 - blue: 50.7 - magenta: 51.6 - cyan: 81 - white: 97.1 - brightBlack: 25.1 - brightRed: 45.9 - brightGreen: 86.1 - brightYellow: 100.6 - brightBlue: 63.2 - brightMagenta: 59.7 - brightCyan: 93.8 - brightWhite: 103.9 diff --git a/themes/c-carbon-6.yaml b/themes/c-carbon-6.yaml deleted file mode 100644 index 484b5290..00000000 --- a/themes/c-carbon-6.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "C-Carbon-6" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#09090B" - fg: "#FAFAFA" - black: "#0A0A0A" - red: "#E54D4D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#3D8FD1" - magenta: "#B369DD" - cyan: "#29C3A0" - white: "#FAFAFA" - brightBlack: "#0A0A0A" - brightRed: "#E54D4D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#3D8FD1" - brightMagenta: "#B369DD" - brightCyan: "#29C3A0" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 104.5 - black: 0 - red: 36.9 - green: 58.5 - yellow: 52.6 - blue: 39.6 - magenta: 39.3 - cyan: 58.5 - white: 104.5 - brightBlack: 0 - brightRed: 36.9 - brightGreen: 58.5 - brightYellow: 52.6 - brightBlue: 39.6 - brightMagenta: 39.3 - brightCyan: 58.5 - brightWhite: 104.5 diff --git a/themes/c-dracula.yaml b/themes/c-dracula.yaml deleted file mode 100644 index ef3bdc34..00000000 --- a/themes/c-dracula.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "C# Dracula" -source: - marketplace_id: "Gabrieldp-dev.reduc-csharp-dracula" - version: "1.0.2" - installs: 9012 - rating: 5 - ratings: 2 - author: "Gabriel-dp" - repo: "https://github.com/gabrieldp23/sBotics_Snippets_vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Gabrieldp-dev.reduc-csharp-dracula" -colors: - bg: "#282A36" - fg: "#F8F8F2" - black: "#252732" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 278 - pair: null - contrast: - fg: 99 - black: 0 - red: 40.4 - green: 81.9 - yellow: 95.6 - blue: 50.7 - magenta: 51.6 - cyan: 81 - white: 99 - brightBlack: 25.1 - brightRed: 45.9 - brightGreen: 86.1 - brightYellow: 100.6 - brightBlue: 63.2 - brightMagenta: 59.7 - brightCyan: 93.8 - brightWhite: 103.9 diff --git a/themes/c-e-o.yaml b/themes/c-e-o.yaml index 169ccfad..a7fd0879 100644 --- a/themes/c-e-o.yaml +++ b/themes/c-e-o.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ceo.c-e-o" version: "1.0.2" installs: 94 + rating: 0 + ratings: 0 author: "ceo" repo: "https://github.com/Ceo-Sammarco/c.e.o" url: "https://marketplace.visualstudio.com/items?itemName=ceo.c-e-o" + formats: null colors: bg: "#1C1C21" fg: "#D4D4D4" diff --git a/themes/c0v3r.yaml b/themes/c0v3r.yaml index 0c01dd57..f0310b9b 100644 --- a/themes/c0v3r.yaml +++ b/themes/c0v3r.yaml @@ -8,6 +8,7 @@ source: author: "Liam Loughty" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LiamLoughty.c0v3r" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/cabalyon-theme.yaml b/themes/cabalyon-theme.yaml deleted file mode 100644 index 918b381f..00000000 --- a/themes/cabalyon-theme.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Cabalyon Theme" -source: - marketplace_id: "WeeCode.cabalyon" - version: "0.0.2" - installs: 89 - author: "WeeC0de" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=WeeCode.cabalyon" -colors: - bg: "#0F0F0F" - fg: "#00FF9F" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 88 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28.1 - magenta: 30.4 - cyan: 48.2 - white: 90.6 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/cadet-dark-gray.yaml b/themes/cadet-dark-gray.yaml index cfc0d136..ba5ffeaa 100644 --- a/themes/cadet-dark-gray.yaml +++ b/themes/cadet-dark-gray.yaml @@ -8,6 +8,7 @@ source: author: "Seth Cox" repo: "https://github.com/sethaddison/Cadet-Vscode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SethCox.cadet" + formats: null colors: bg: "#111827" fg: "#FFF9F1" diff --git a/themes/cadet-medium-gray.yaml b/themes/cadet-medium-gray.yaml index 8e064b8c..243b617d 100644 --- a/themes/cadet-medium-gray.yaml +++ b/themes/cadet-medium-gray.yaml @@ -8,6 +8,7 @@ source: author: "Seth Cox" repo: "https://github.com/sethaddison/Cadet-Vscode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SethCox.cadet" + formats: null colors: bg: "#1F2937" fg: "#FFF9F1" diff --git a/themes/caf-warmth.yaml b/themes/caf-warmth.yaml index 44738f1d..9e5dd907 100644 --- a/themes/caf-warmth.yaml +++ b/themes/caf-warmth.yaml @@ -8,6 +8,7 @@ source: author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" + formats: null colors: bg: "#292828" fg: "#A89984" diff --git a/themes/cafelle.yaml b/themes/cafelle.yaml index bdc04c41..106ed8cd 100644 --- a/themes/cafelle.yaml +++ b/themes/cafelle.yaml @@ -8,6 +8,7 @@ source: author: "Jacob Clarey" repo: "https://github.com/jakeclarey/cafelle-light" url: "https://marketplace.visualstudio.com/items?itemName=JacobClarey.cafelle-light" + formats: null colors: bg: "#FEDE9D" fg: "#5A5A5A" diff --git a/themes/caffe-crema-dark.yaml b/themes/caffe-crema-dark.yaml index 5816cf45..72579776 100644 --- a/themes/caffe-crema-dark.yaml +++ b/themes/caffe-crema-dark.yaml @@ -8,6 +8,7 @@ source: author: "Mónica Villarroel" repo: "https://github.com/MonicaVillap/CaffeCremaTheme" url: "https://marketplace.visualstudio.com/items?itemName=MonicaVilla.caffe-crema-theme" + formats: null colors: bg: "#2B1F1A" fg: "#F3E5D8" diff --git a/themes/caffe-crema-light.yaml b/themes/caffe-crema-light.yaml index c77af482..faf77b97 100644 --- a/themes/caffe-crema-light.yaml +++ b/themes/caffe-crema-light.yaml @@ -8,6 +8,7 @@ source: author: "Mónica Villarroel" repo: "https://github.com/MonicaVillap/CaffeCremaTheme" url: "https://marketplace.visualstudio.com/items?itemName=MonicaVilla.caffe-crema-theme" + formats: null colors: bg: "#FDF8F3" fg: "#3B2E2E" diff --git a/themes/caffeinated-rust.yaml b/themes/caffeinated-rust.yaml index d7f292fa..867bd1d3 100644 --- a/themes/caffeinated-rust.yaml +++ b/themes/caffeinated-rust.yaml @@ -8,6 +8,7 @@ source: author: "Caffeinated Minds" repo: "https://github.com/caffeinated-minds/caffeinated-rust" url: "https://marketplace.visualstudio.com/items?itemName=CaffeinatedMinds.caffeinated-rust-dark" + formats: null colors: bg: "#1A1A1A" fg: "#EDEDED" diff --git a/themes/cal-4700.yaml b/themes/cal-4700.yaml index 1305034a..34c79916 100644 --- a/themes/cal-4700.yaml +++ b/themes/cal-4700.yaml @@ -8,6 +8,7 @@ source: author: "The Osmosian Order of Plain English Programmers" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TheOsmosianOrderofPlainEnglishProgrammers.cal-4700-theme" + formats: null colors: bg: "#DFDFDF" fg: "#000000" diff --git a/themes/calabaza.yaml b/themes/calabaza.yaml index bae71ad6..d4277238 100644 --- a/themes/calabaza.yaml +++ b/themes/calabaza.yaml @@ -6,6 +6,7 @@ source: author: "calabaza" repo: "https://github.com/Yoad-rg/calabaza" url: "https://marketplace.visualstudio.com/items?itemName=calabaza.calabaza" + formats: null colors: bg: "#FFFFFF" fg: "#070007" diff --git a/themes/calm-dark.yaml b/themes/calm-dark.yaml deleted file mode 100644 index 3bc8566d..00000000 --- a/themes/calm-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Calm Dark" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#191F22" - fg: "#E6E2D9" - black: "#2F353B" - red: "#E8A06D" - green: "#8DC6AC" - yellow: "#DDB06F" - blue: "#7A90AE" - magenta: "#A48EB5" - cyan: "#85B9C8" - white: "#E3DDD2" - brightBlack: "#555B63" - brightRed: "#F3B081" - brightGreen: "#A9D9C2" - brightYellow: "#E8C89C" - brightBlue: "#90A4C4" - brightMagenta: "#C4B0CF" - brightCyan: "#B3DCE9" - brightWhite: "#F3EEE2" -meta: - mode: "dark" - accent: "yellow" - hue: 229 - pair: "Calm Light" - contrast: - fg: 87.4 - black: 0 - red: 57.9 - green: 63.3 - yellow: 61.9 - blue: 39.9 - magenta: 43.9 - cyan: 58.2 - white: 84.5 - brightBlack: 16.4 - brightRed: 65.9 - brightGreen: 75.3 - brightYellow: 74.3 - brightBlue: 50.5 - brightMagenta: 61.6 - brightCyan: 79.4 - brightWhite: 95.1 diff --git a/themes/calm-days-sober-nights-day-sky.yaml b/themes/calm-days-sober-nights-day-sky.yaml deleted file mode 100644 index 65535385..00000000 --- a/themes/calm-days-sober-nights-day-sky.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Calm Days, Sober Nights - Day (Sky)" -source: - marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" - version: "7.1.6" - installs: 6373 - rating: 5 - ratings: 4 - author: "Giovani Cascaes" - repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" -colors: - bg: "#FFFFFF" - fg: "#687082" - black: "#000000" - red: "#EB6C81" - green: "#00B342" - yellow: "#EDC045" - blue: "#2EA0D1" - magenta: "#B375C7" - cyan: "#46ACBA" - white: "#C5CDE0" - brightBlack: "#929BB0" - brightRed: "#F07186" - brightGreen: "#00B342" - brightYellow: "#F2C549" - brightBlue: "#36A6D6" - brightMagenta: "#B87ACC" - brightCyan: "#4CB2BF" - brightWhite: "#DAE1F0" -meta: - mode: "light" - accent: "green" - hue: null - pair: "Calm Days, Sober Nights - Night (Sky)" - contrast: - fg: 74.4 - black: 106 - red: 56.1 - green: 53 - yellow: 30.8 - blue: 55.9 - magenta: 60.6 - cyan: 51.6 - white: 26.8 - brightBlack: 53.7 - brightRed: 53.8 - brightGreen: 53 - brightYellow: 28 - brightBlue: 53.1 - brightMagenta: 58.2 - brightCyan: 48.7 - brightWhite: 15.4 diff --git a/themes/calm-days-sober-nights-day.yaml b/themes/calm-days-sober-nights-day.yaml deleted file mode 100644 index 69b163b7..00000000 --- a/themes/calm-days-sober-nights-day.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Calm Days, Sober Nights - Day" -source: - marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" - version: "7.1.6" - installs: 6373 - rating: 5 - ratings: 4 - author: "Giovani Cascaes" - repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" -colors: - bg: "#F0F4F7" - fg: "#6B7682" - black: "#000000" - red: "#EB6C81" - green: "#00B342" - yellow: "#EDC045" - blue: "#2EA0D1" - magenta: "#B375C7" - cyan: "#46ACBA" - white: "#C7D4E0" - brightBlack: "#94A2B0" - brightRed: "#F07186" - brightGreen: "#00B342" - brightYellow: "#F2C549" - brightBlue: "#36A6D6" - brightMagenta: "#B87ACC" - brightCyan: "#4CB2BF" - brightWhite: "#DDE7F0" -meta: - mode: "light" - accent: "green" - hue: null - pair: "Calm Days, Sober Nights - Night" - contrast: - fg: 65.2 - black: 99.1 - red: 49.2 - green: 46 - yellow: 23.8 - blue: 49 - magenta: 53.7 - cyan: 44.7 - white: 16.8 - brightBlack: 44 - brightRed: 46.9 - brightGreen: 46 - brightYellow: 21.1 - brightBlue: 46.1 - brightMagenta: 51.3 - brightCyan: 41.8 - brightWhite: 0 diff --git a/themes/calm-days-sober-nights-night-sky.yaml b/themes/calm-days-sober-nights-night-sky.yaml deleted file mode 100644 index 89d9fcf5..00000000 --- a/themes/calm-days-sober-nights-night-sky.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Calm Days, Sober Nights - Night (Sky)" -source: - marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" - version: "7.1.6" - installs: 6373 - rating: 5 - ratings: 4 - author: "Giovani Cascaes" - repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" -colors: - bg: "#192030" - fg: "#D3DAE8" - black: "#000000" - red: "#ED7480" - green: "#70CC92" - yellow: "#F2D988" - blue: "#6ED0FA" - magenta: "#EAB9FA" - cyan: "#90D7E0" - white: "#D2DDFA" - brightBlack: "#63708C" - brightRed: "#F27985" - brightGreen: "#70CC92" - brightYellow: "#F7DD8D" - brightBlue: "#73D5FF" - brightMagenta: "#EFBFFF" - brightCyan: "#95DDE6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 266 - pair: "Calm Days, Sober Nights - Day (Sky)" - contrast: - fg: 81.7 - black: 0 - red: 45.8 - green: 62.8 - yellow: 82.2 - blue: 69.1 - magenta: 72.4 - cyan: 73.2 - white: 83.9 - brightBlack: 25.2 - brightRed: 48.2 - brightGreen: 62.8 - brightYellow: 84.8 - brightBlue: 72 - brightMagenta: 75.8 - brightCyan: 76.7 - brightWhite: 105.7 diff --git a/themes/calm-days-sober-nights-night.yaml b/themes/calm-days-sober-nights-night.yaml deleted file mode 100644 index 65254121..00000000 --- a/themes/calm-days-sober-nights-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Calm Days, Sober Nights - Night" -source: - marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" - version: "7.1.6" - installs: 6373 - rating: 5 - ratings: 4 - author: "Giovani Cascaes" - repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" -colors: - bg: "#232530" - fg: "#D3D6E8" - black: "#000000" - red: "#ED7480" - green: "#70CC92" - yellow: "#F2D988" - blue: "#6ED0FA" - magenta: "#EAB9FA" - cyan: "#90D7E0" - white: "#DFE3FA" - brightBlack: "#6A708C" - brightRed: "#F27985" - brightGreen: "#70CC92" - brightYellow: "#F7DD8D" - brightBlue: "#73D5FF" - brightMagenta: "#EFBFFF" - brightCyan: "#95DDE6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 277 - pair: "Calm Days, Sober Nights - Day" - contrast: - fg: 79.2 - black: 0 - red: 44.9 - green: 62 - yellow: 81.4 - blue: 68.3 - magenta: 71.6 - cyan: 72.3 - white: 87.3 - brightBlack: 24.9 - brightRed: 47.4 - brightGreen: 62 - brightYellow: 84 - brightBlue: 71.1 - brightMagenta: 74.9 - brightCyan: 75.8 - brightWhite: 104.9 diff --git a/themes/calm-down-color-theme.yaml b/themes/calm-down-color-theme.yaml deleted file mode 100644 index dcd67e3b..00000000 --- a/themes/calm-down-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Calm Down Color Theme" -source: - marketplace_id: "DanielEichwald.vscode-calm-down-theme" - version: "1.1.0" - installs: 220 - rating: 5 - ratings: 1 - author: "Daniel Eichwald" - repo: "https://github.com/DE-Danloc/vscode-calm-down-theme/blob/master/README.md" - url: "https://marketplace.visualstudio.com/items?itemName=DanielEichwald.vscode-calm-down-theme" -colors: - bg: "#27272C" - fg: "#D3D3D3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 76.5 - black: 0 - red: 24.4 - green: 50.7 - yellow: 83.3 - blue: 25.1 - magenta: 27.4 - cyan: 45.2 - white: 87.7 - brightBlack: 19.7 - brightRed: 36.2 - brightGreen: 61.2 - brightYellow: 93.3 - brightBlue: 37.7 - brightMagenta: 43 - brightCyan: 53.1 - brightWhite: 87.7 diff --git a/themes/calm-light.yaml b/themes/calm-light.yaml deleted file mode 100644 index caaf0c07..00000000 --- a/themes/calm-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Calm Light" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#F9F5E7" - fg: "#2F291F" - black: "#2A2219" - red: "#C87A55" - green: "#7CB099" - yellow: "#C39B56" - blue: "#4C4F63" - magenta: "#9D7694" - cyan: "#6EA2B5" - white: "#EFE5D4" - brightBlack: "#8B8073" - brightRed: "#DA8D68" - brightGreen: "#8BC0A7" - brightYellow: "#DAB478" - brightBlue: "#5F6580" - brightMagenta: "#B18CA9" - brightCyan: "#88B8CB" - brightWhite: "#F6F1E5" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: "Calm Dark" - contrast: - fg: 95.1 - black: 96.6 - red: 54 - green: 42.3 - yellow: 44.3 - blue: 81.9 - magenta: 59.9 - cyan: 47.8 - white: 0 - brightBlack: 60.1 - brightRed: 45 - brightGreen: 34.1 - brightYellow: 31.3 - brightBlue: 72.7 - brightMagenta: 49.5 - brightCyan: 36.2 - brightWhite: 0 diff --git a/themes/calm-ocean.yaml b/themes/calm-ocean.yaml index f0790491..b040c724 100644 --- a/themes/calm-ocean.yaml +++ b/themes/calm-ocean.yaml @@ -8,6 +8,7 @@ source: author: "tlolkema" repo: "https://github.com/tlolkema/natural-indigo.git#master" url: "https://marketplace.visualstudio.com/items?itemName=tlolkema.natural-indigo" + formats: null colors: bg: "#1C2026" fg: "#F1FAEE" diff --git a/themes/calm-teal-balance-clarity.yaml b/themes/calm-teal-balance-clarity.yaml index 5cd137eb..0949b55c 100644 --- a/themes/calm-teal-balance-clarity.yaml +++ b/themes/calm-teal-balance-clarity.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#0D1A1A" fg: "#E0F2F1" diff --git a/themes/calm-teal-high-contrast-balance-clarity.yaml b/themes/calm-teal-high-contrast-balance-clarity.yaml index 8ee12cbb..81e988d9 100644 --- a/themes/calm-teal-high-contrast-balance-clarity.yaml +++ b/themes/calm-teal-high-contrast-balance-clarity.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/calm-teal-light-balance-clarity.yaml b/themes/calm-teal-light-balance-clarity.yaml index cb4b342c..5f68cf96 100644 --- a/themes/calm-teal-light-balance-clarity.yaml +++ b/themes/calm-teal-light-balance-clarity.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#F5FAFA" fg: "#0D1A1A" diff --git a/themes/calm-vision.yaml b/themes/calm-vision.yaml index 72b24c23..8196aac8 100644 --- a/themes/calm-vision.yaml +++ b/themes/calm-vision.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "huoshanxue.calm-vision-theme" version: "1.0.1" installs: 83 + rating: 0 + ratings: 0 author: "huoshanxue" repo: "https://github.com/huoshanxue/calm-vision-theme" url: "https://marketplace.visualstudio.com/items?itemName=huoshanxue.calm-vision-theme" + formats: null colors: bg: "#E6EFE5" fg: "#3C3D4C" diff --git a/themes/calming-coding-dark-theme.yaml b/themes/calming-coding-dark-theme.yaml index c60c8bc4..1c6099a8 100644 --- a/themes/calming-coding-dark-theme.yaml +++ b/themes/calming-coding-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Calming Coding" repo: "https://github.com/tianrodez/calming-coding" url: "https://marketplace.visualstudio.com/items?itemName=CalmingCoding.calming-coding" + formats: null colors: bg: "#282523" fg: "#D7C8B6" diff --git a/themes/calming-theme.yaml b/themes/calming-theme.yaml index ad86f169..7a682dfc 100644 --- a/themes/calming-theme.yaml +++ b/themes/calming-theme.yaml @@ -2,12 +2,13 @@ name: "Calming Theme" source: marketplace_id: "diff001a.calming-theme" version: "1.0.1" - installs: 4037 + installs: 4038 rating: 5 ratings: 4 author: "diff001a" repo: "https://github.com/diff001a/CalmingTheme" url: "https://marketplace.visualstudio.com/items?itemName=diff001a.calming-theme" + formats: null colors: bg: "#252A34" fg: "#CFD3DC" diff --git a/themes/calmnight.yaml b/themes/calmnight.yaml index 78b4e611..da7a0b7c 100644 --- a/themes/calmnight.yaml +++ b/themes/calmnight.yaml @@ -8,6 +8,7 @@ source: author: "anvi" repo: "https://github.com/andreasgylche/calmnight" url: "https://marketplace.visualstudio.com/items?itemName=anvi.calmnight" + formats: null colors: bg: "#141619" fg: "#A9B7C6" diff --git a/themes/calmppuccin-frappe.yaml b/themes/calmppuccin-frappe.yaml deleted file mode 100644 index 643aab50..00000000 --- a/themes/calmppuccin-frappe.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Calmppuccin Frappe" -source: - marketplace_id: "kenan-salar.calmppuccin-vscode" - version: "1.9.9" - installs: 6413 - rating: 5 - ratings: 4 - author: "Kenan Salar" - repo: "https://github.com/KenanSalar/calmppuccin-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" -colors: - bg: "#2F3344" - fg: "#C6D0F5" - black: "#51576D" - red: "#DD7D9A" - green: "#A6D189" - yellow: "#E5C890" - blue: "#79A0DF" - magenta: "#F4B8E4" - cyan: "#89D3CA" - white: "#A5ADCE" - brightBlack: "#626880" - brightRed: "#E67172" - brightGreen: "#8EC772" - brightYellow: "#D9BA73" - brightBlue: "#7B9EF0" - brightMagenta: "#F2A4DB" - brightCyan: "#5ABFB5" - brightWhite: "#B5BFE2" -meta: - mode: "dark" - accent: "orange" - hue: 274 - pair: null - contrast: - fg: 72.6 - black: 11.1 - red: 42.1 - green: 65.3 - yellow: 69.3 - blue: 44.2 - magenta: 68.6 - cyan: 65.9 - white: 52.4 - brightBlack: 18.2 - brightRed: 39.4 - brightGreen: 58 - brightYellow: 61.1 - brightBlue: 44.7 - brightMagenta: 60.7 - brightCyan: 53.1 - brightWhite: 62.5 diff --git a/themes/calmppuccin-latte.yaml b/themes/calmppuccin-latte.yaml deleted file mode 100644 index 789f7ee1..00000000 --- a/themes/calmppuccin-latte.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Calmppuccin Latte" -source: - marketplace_id: "kenan-salar.calmppuccin-vscode" - version: "1.9.9" - installs: 6413 - rating: 5 - ratings: 4 - author: "Kenan Salar" - repo: "https://github.com/KenanSalar/calmppuccin-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" -colors: - bg: "#E9EAEE" - fg: "#474A63" - black: "#5C5F77" - red: "#D20F39" - green: "#40A02B" - yellow: "#DF8E1D" - blue: "#1C5EE4" - magenta: "#EA76CB" - cyan: "#179299" - white: "#5E617E" - brightBlack: "#6C6F85" - brightRed: "#DE293E" - brightGreen: "#49AF3D" - brightYellow: "#EEA02D" - brightBlue: "#456EFF" - brightMagenta: "#FE85D8" - brightCyan: "#2D9FA8" - brightWhite: "#BCC0CC" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 77.3 - black: 68.8 - red: 62.3 - green: 48.1 - yellow: 38.3 - blue: 64.6 - magenta: 38.6 - cyan: 52.2 - white: 67.7 - brightBlack: 61.8 - brightRed: 58.3 - brightGreen: 41.2 - brightYellow: 29.9 - brightBlue: 56.5 - brightMagenta: 30.4 - brightCyan: 46 - brightWhite: 21.6 diff --git a/themes/calmppuccin-macchiato.yaml b/themes/calmppuccin-macchiato.yaml deleted file mode 100644 index 6988a2a0..00000000 --- a/themes/calmppuccin-macchiato.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Calmppuccin Macchiato" -source: - marketplace_id: "kenan-salar.calmppuccin-vscode" - version: "1.9.9" - installs: 6413 - rating: 5 - ratings: 4 - author: "Kenan Salar" - repo: "https://github.com/KenanSalar/calmppuccin-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" -colors: - bg: "#24273A" - fg: "#C2CAE9" - black: "#494D64" - red: "#D87C97" - green: "#A6DA95" - yellow: "#EED49F" - blue: "#799FDB" - magenta: "#F5BDE6" - cyan: "#85CAC2" - white: "#A5ADCB" - brightBlack: "#5B6078" - brightRed: "#EC7486" - brightGreen: "#8CCF7F" - brightYellow: "#E1C682" - brightBlue: "#78A1F6" - brightMagenta: "#F2A9DD" - brightCyan: "#63CBC0" - brightWhite: "#B8C0E0" -meta: - mode: "dark" - accent: "red" - hue: 277 - pair: null - contrast: - fg: 71.5 - black: 10 - red: 43.3 - green: 72.3 - yellow: 78.7 - blue: 46.2 - magenta: 73.3 - cyan: 63.7 - white: 54.8 - brightBlack: 17.5 - brightRed: 44.4 - brightGreen: 64.3 - brightYellow: 70.1 - brightBlue: 48.6 - brightMagenta: 65 - brightCyan: 62 - brightWhite: 65.7 diff --git a/themes/calmppuccin-mocha.yaml b/themes/calmppuccin-mocha.yaml deleted file mode 100644 index 6de6c9a4..00000000 --- a/themes/calmppuccin-mocha.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Calmppuccin Mocha" -source: - marketplace_id: "kenan-salar.calmppuccin-vscode" - version: "1.9.9" - installs: 6413 - rating: 5 - ratings: 4 - author: "Kenan Salar" - repo: "https://github.com/KenanSalar/calmppuccin-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" -colors: - bg: "#1D1D2C" - fg: "#AEB6CF" - black: "#45475A" - red: "#D47B95" - green: "#95CE8F" - yellow: "#D6C08F" - blue: "#789CD6" - magenta: "#CFA0C2" - cyan: "#81C4BC" - white: "#A6ADC8" - brightBlack: "#585B70" - brightRed: "#E27894" - brightGreen: "#89D88B" - brightYellow: "#E4CC8C" - brightBlue: "#6796E2" - brightMagenta: "#E6A3D1" - brightCyan: "#6BD7CA" - brightWhite: "#BAC2DE" -meta: - mode: "dark" - accent: "red" - hue: 284 - pair: null - contrast: - fg: 61.2 - black: 9.4 - red: 43.8 - green: 66.6 - yellow: 67.9 - blue: 46.3 - magenta: 56.6 - cyan: 62.1 - white: 56.4 - brightBlack: 17 - brightRed: 45.6 - brightGreen: 70.2 - brightYellow: 74.9 - brightBlue: 43.6 - brightMagenta: 62 - brightCyan: 70 - brightWhite: 68.2 diff --git a/themes/calmppuccin-nitro-cold-brew.yaml b/themes/calmppuccin-nitro-cold-brew.yaml deleted file mode 100644 index e6203443..00000000 --- a/themes/calmppuccin-nitro-cold-brew.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Calmppuccin Nitro-cold-brew" -source: - marketplace_id: "kenan-salar.calmppuccin-vscode" - version: "1.9.9" - installs: 6413 - rating: 5 - ratings: 4 - author: "Kenan Salar" - repo: "https://github.com/KenanSalar/calmppuccin-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" -colors: - bg: "#181825" - fg: "#A7AEC5" - black: "#404253" - red: "#D17A94" - green: "#91C78B" - yellow: "#CCB789" - blue: "#7698CF" - magenta: "#C298B6" - cyan: "#7FBEB7" - white: "#A2A9C2" - brightBlack: "#4F5264" - brightRed: "#DD7792" - brightGreen: "#86D189" - brightYellow: "#DAC488" - brightBlue: "#6791D6" - brightMagenta: "#DDA0CA" - brightCyan: "#6ACFC4" - brightWhite: "#BAC1DB" -meta: - mode: "dark" - accent: "red" - hue: 284 - pair: null - contrast: - fg: 57.4 - black: 8.2 - red: 43.6 - green: 63.6 - yellow: 63.4 - blue: 44.8 - magenta: 52 - cyan: 59.7 - white: 54.7 - brightBlack: 14 - brightRed: 44.9 - brightGreen: 67.3 - brightYellow: 70.6 - brightBlue: 41.6 - brightMagenta: 59.8 - brightCyan: 66.6 - brightWhite: 68.3 diff --git a/themes/calmppuccin-oledppuccin.yaml b/themes/calmppuccin-oledppuccin.yaml deleted file mode 100644 index cb91610d..00000000 --- a/themes/calmppuccin-oledppuccin.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Calmppuccin Oledppuccin" -source: - marketplace_id: "kenan-salar.calmppuccin-vscode" - version: "1.9.9" - installs: 6413 - rating: 5 - ratings: 4 - author: "Kenan Salar" - repo: "https://github.com/KenanSalar/calmppuccin-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" -colors: - bg: "#0B0B11" - fg: "#8C92A7" - black: "#333542" - red: "#BD7087" - green: "#85B480" - yellow: "#BBA981" - blue: "#708FC0" - magenta: "#AD8BA4" - cyan: "#78AFA9" - white: "#959BAF" - brightBlack: "#31333F" - brightRed: "#C5738B" - brightGreen: "#92C78C" - brightYellow: "#C9B487" - brightBlue: "#7598CC" - brightMagenta: "#BD94B2" - brightCyan: "#81C0B9" - brightWhite: "#A1A9C2" -meta: - mode: "dark" - accent: "red" - hue: 285 - pair: null - contrast: - fg: 43.6 - black: 0 - red: 38.1 - green: 55.1 - yellow: 56.4 - blue: 41.3 - magenta: 44.9 - cyan: 53.3 - white: 48.2 - brightBlack: 0 - brightRed: 40.4 - brightGreen: 64.8 - brightYellow: 62.8 - brightBlue: 45.6 - brightMagenta: 50.8 - brightCyan: 61.9 - brightWhite: 55.7 diff --git a/themes/calmshade.yaml b/themes/calmshade.yaml index 369bb6ee..47c21d0d 100644 --- a/themes/calmshade.yaml +++ b/themes/calmshade.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "MichaelVolakis.calmshade" version: "0.1.8" installs: 88 + rating: 0 + ratings: 0 author: "Michael Volakis" repo: "https://github.com/mihavo/Calmshade" url: "https://marketplace.visualstudio.com/items?itemName=MichaelVolakis.calmshade" + formats: null colors: bg: "#1F1F1F" fg: "#D4D4D4" diff --git a/themes/camo-dark.yaml b/themes/camo-dark.yaml deleted file mode 100644 index b2a119b8..00000000 --- a/themes/camo-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "camo dark" -source: - marketplace_id: "jonahseguin.camo" - version: "0.0.1" - installs: 61 - rating: 0 - ratings: 0 - author: "Jonah Seguin" - repo: "https://github.com/jonahseguin/camo" - url: "https://marketplace.visualstudio.com/items?itemName=jonahseguin.camo" -colors: - bg: "#121217" - fg: "#F0F6FA" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 285 - pair: null - contrast: - fg: 100.7 - black: 0 - red: 27.1 - green: 53.4 - yellow: 86 - blue: 27.8 - magenta: 30.2 - cyan: 48 - white: 90.4 - brightBlack: 22.4 - brightRed: 39 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.4 - brightMagenta: 45.8 - brightCyan: 55.8 - brightWhite: 90.4 diff --git a/themes/campbell.yaml b/themes/campbell.yaml index c1d92744..ab3c41f3 100644 --- a/themes/campbell.yaml +++ b/themes/campbell.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "stephenedavis17.campbell" version: "0.0.6" installs: 399 + rating: 0 + ratings: 0 author: "stephenedavis17" repo: null url: "https://marketplace.visualstudio.com/items?itemName=stephenedavis17.campbell" + formats: null colors: bg: "#0C0C0C" fg: "#CCCCCC" diff --git a/themes/camula-moon.yaml b/themes/camula-moon.yaml index 3341958d..eedaeeb5 100644 --- a/themes/camula-moon.yaml +++ b/themes/camula-moon.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Vesko.theme-camula" version: "1.0.0" installs: 52 + rating: 0 + ratings: 0 author: "Vesko" repo: "https://github.com/veselink1/camula-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Vesko.theme-camula" + formats: null colors: bg: "#292D3E" fg: "#D0D0D0" diff --git a/themes/camula-sun.yaml b/themes/camula-sun.yaml index 94b626b5..78fe13c9 100644 --- a/themes/camula-sun.yaml +++ b/themes/camula-sun.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Vesko.theme-camula" version: "1.0.0" installs: 52 + rating: 0 + ratings: 0 author: "Vesko" repo: "https://github.com/veselink1/camula-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Vesko.theme-camula" + formats: null colors: bg: "#2D2A2E" fg: "#FBFBFB" diff --git a/themes/camula.yaml b/themes/camula.yaml index 1ff394bf..bbef3b5d 100644 --- a/themes/camula.yaml +++ b/themes/camula.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Vesko.theme-camula" version: "1.0.0" installs: 52 + rating: 0 + ratings: 0 author: "Vesko" repo: "https://github.com/veselink1/camula-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Vesko.theme-camula" + formats: null colors: bg: "#22212C" fg: "#F6F6F4" diff --git a/themes/candle-theme.yaml b/themes/candle-theme.yaml index dec9c880..bd3139be 100644 --- a/themes/candle-theme.yaml +++ b/themes/candle-theme.yaml @@ -8,6 +8,7 @@ source: author: "Creasty" repo: "https://github.com/creasty/vscode-candle-theme" url: "https://marketplace.visualstudio.com/items?itemName=creasty.vscode-candle-theme" + formats: null colors: bg: "#1B1B1B" fg: "#C0C0C0" diff --git a/themes/candy-blue.yaml b/themes/candy-blue.yaml index 3adbed3b..2dac07a6 100644 --- a/themes/candy-blue.yaml +++ b/themes/candy-blue.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "xynny.candy-blue" version: "1.0.0" installs: 336 + rating: 0 + ratings: 0 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.candy-blue" + formats: null colors: bg: "#10283F" fg: "#EEFFFF" diff --git a/themes/candy-pine.yaml b/themes/candy-pine.yaml deleted file mode 100644 index cfd1d134..00000000 --- a/themes/candy-pine.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Candy Pine" -source: - marketplace_id: "yuschick.candy-pine" - version: "0.2.5" - installs: 1596 - rating: 5 - ratings: 2 - author: "Yuschick" - repo: "https://github.com/candy-pine/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=yuschick.candy-pine" -colors: - bg: "#161421" - fg: "#E4E1F0" - black: "#272336" - red: "#F962A0" - green: "#4D94A8" - yellow: "#F2B56B" - blue: "#88C6C5" - magenta: "#F99FB5" - cyan: "#F2B56B" - white: "#E4E1F0" - brightBlack: "#9B97B1" - brightRed: "#F962A0" - brightGreen: "#4D94A8" - brightYellow: "#F2B56B" - brightBlue: "#88C6C5" - brightMagenta: "#F99FB5" - brightCyan: "#F2B56B" - brightWhite: "#E4E1F0" -meta: - mode: "dark" - accent: "red" - hue: 291 - pair: null - contrast: - fg: 88.7 - black: 0 - red: 46.6 - green: 39.1 - yellow: 68.1 - blue: 64.9 - magenta: 63.7 - cyan: 68.1 - white: 88.7 - brightBlack: 46.8 - brightRed: 46.6 - brightGreen: 39.1 - brightYellow: 68.1 - brightBlue: 64.9 - brightMagenta: 63.7 - brightCyan: 68.1 - brightWhite: 88.7 diff --git a/themes/candy-purple.yaml b/themes/candy-purple.yaml index 3451bc7f..a19177ef 100644 --- a/themes/candy-purple.yaml +++ b/themes/candy-purple.yaml @@ -6,6 +6,7 @@ source: author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.candy-purple" + formats: null colors: bg: "#16111B" fg: "#6E9BBC" diff --git a/themes/candy-red.yaml b/themes/candy-red.yaml index 1766515f..5c951c24 100644 --- a/themes/candy-red.yaml +++ b/themes/candy-red.yaml @@ -2,12 +2,13 @@ name: "Candy Red" source: marketplace_id: "xynny.candy-red" version: "1.0.0" - installs: 3494 + installs: 3497 rating: 0 ratings: 0 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.candy-red" + formats: null colors: bg: "#130B0D" fg: "#FBFBFB" diff --git a/themes/candy-shop-eclipse.yaml b/themes/candy-shop-eclipse.yaml index 8fa36ac3..f7cc20c3 100644 --- a/themes/candy-shop-eclipse.yaml +++ b/themes/candy-shop-eclipse.yaml @@ -1,4 +1,4 @@ -name: "Candy-Shop-Eclipse" +name: "Candy Shop Eclipse" source: marketplace_id: "ErfanFathalizadeh.Candy-Shop-Eclipse" version: "2.1.0" @@ -8,6 +8,7 @@ source: author: "Erfan Fathalizadeh" repo: "https://github.com/ErfanFathalizadeh/VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ErfanFathalizadeh.Candy-Shop-Eclipse" + formats: null colors: bg: "#303633" fg: "#FFFFFF" diff --git a/themes/canonic-theme.yaml b/themes/canonic-theme.yaml index 42919923..dc592cf6 100644 --- a/themes/canonic-theme.yaml +++ b/themes/canonic-theme.yaml @@ -8,6 +8,7 @@ source: author: "lucodifier" repo: "https://github.com/lucodifier/canonic-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucodifier.canonic-theme" + formats: null colors: bg: "#1E1E1E" fg: "#FFFFFF" diff --git a/themes/cape-town-nights.yaml b/themes/cape-town-nights.yaml index 2201cbb9..594ac80f 100644 --- a/themes/cape-town-nights.yaml +++ b/themes/cape-town-nights.yaml @@ -8,6 +8,7 @@ source: author: "Walter Hahn" repo: "https://github.com/WalterHahn/cape-town-nights" url: "https://marketplace.visualstudio.com/items?itemName=WalterHahn.cape-town-nights" + formats: null colors: bg: "#0E1D1F" fg: "#EDECEE" diff --git a/themes/capitola.yaml b/themes/capitola.yaml index 342e19eb..217693f9 100644 --- a/themes/capitola.yaml +++ b/themes/capitola.yaml @@ -8,6 +8,9 @@ source: author: "Vitor Nunes" repo: "https://github.com/vitornovictor/capitola" url: "https://marketplace.visualstudio.com/items?itemName=vitornovictor.capitola" + formats: + iterm2: "https://raw.githubusercontent.com/vitornovictor/capitola/main/iterm2/Capitola.itermcolors" + android-studio: "https://raw.githubusercontent.com/vitornovictor/capitola/main/jetbrains/Capitola.icls" colors: bg: "#E4E4E4" fg: "#000000" diff --git a/themes/capy-ui.yaml b/themes/capy-ui.yaml index a9ff0ed0..25bb55b4 100644 --- a/themes/capy-ui.yaml +++ b/themes/capy-ui.yaml @@ -8,6 +8,7 @@ source: author: "Patrick Boyd" repo: "https://github.com/yourusername/capy-ui-theme" url: "https://marketplace.visualstudio.com/items?itemName=PatrickBoyd.capy-ui-theme" + formats: null colors: bg: "#1C1D21" fg: "#F7F9F9" diff --git a/themes/caramel.yaml b/themes/caramel.yaml index 5f13ac5c..c52a0fbf 100644 --- a/themes/caramel.yaml +++ b/themes/caramel.yaml @@ -8,6 +8,7 @@ source: author: "SyShock" repo: "https://github.com/SyShock/caramel-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=syshock.caramel" + formats: null colors: bg: "#1B1B1B" fg: "#CDCDCD" diff --git a/themes/carbon-candy-anthracite.yaml b/themes/carbon-candy-anthracite.yaml deleted file mode 100644 index daa76995..00000000 --- a/themes/carbon-candy-anthracite.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "carbon-candy-anthracite" -source: - marketplace_id: "viral-team.carbon-candy" - version: "0.2.9" - installs: 842 - rating: 5 - ratings: 1 - author: "Viral Team Theme" - repo: "https://github.com/viral-team/carbon-candy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" -colors: - bg: "#212121" - fg: "#CCCCCC" - black: "#262626" - red: "#EE5396" - green: "#42BE65" - yellow: "#FDDC68" - blue: "#78A9FF" - magenta: "#BE95FF" - cyan: "#08BDBA" - white: "#F2F4F8" - brightBlack: "#525252" - brightRed: "#FF7EB6" - brightGreen: "#44E070" - brightYellow: "#FDE593" - brightBlue: "#33B1FF" - brightMagenta: "#FF7EB6" - brightCyan: "#3DDBD9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 73.4 - black: 0 - red: 39.7 - green: 53.1 - yellow: 84.5 - blue: 53.5 - magenta: 53.6 - cyan: 54.4 - white: 98.3 - brightBlack: 12.7 - brightRed: 53.8 - brightGreen: 69.7 - brightYellow: 89.4 - brightBlue: 53.6 - brightMagenta: 53.8 - brightCyan: 70.5 - brightWhite: 105.6 diff --git a/themes/carbon-candy-aurora.yaml b/themes/carbon-candy-aurora.yaml deleted file mode 100644 index aef98583..00000000 --- a/themes/carbon-candy-aurora.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "carbon-candy-aurora" -source: - marketplace_id: "viral-team.carbon-candy" - version: "0.2.9" - installs: 842 - rating: 5 - ratings: 1 - author: "Viral Team Theme" - repo: "https://github.com/viral-team/carbon-candy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" -colors: - bg: "#1A1A1A" - fg: "#E8E8E8" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#5A5A5A" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 91.6 - black: 0 - red: 46.3 - green: 83.9 - yellow: 78.6 - blue: 55.6 - magenta: 53.4 - cyan: 77.9 - white: 106.5 - brightBlack: 16.7 - brightRed: 46.3 - brightGreen: 83.9 - brightYellow: 78.6 - brightBlue: 55.6 - brightMagenta: 53.4 - brightCyan: 77.9 - brightWhite: 106.5 diff --git a/themes/carbon-candy-bee.yaml b/themes/carbon-candy-bee.yaml deleted file mode 100644 index 6aabb006..00000000 --- a/themes/carbon-candy-bee.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "carbon-candy-bee" -source: - marketplace_id: "viral-team.carbon-candy" - version: "0.2.9" - installs: 842 - rating: 5 - ratings: 1 - author: "Viral Team Theme" - repo: "https://github.com/viral-team/carbon-candy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" -colors: - bg: "#212121" - fg: "#D9D9D9" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#545454" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 81.3 - black: 0 - red: 45.3 - green: 82.9 - yellow: 77.7 - blue: 54.7 - magenta: 52.5 - cyan: 77 - white: 105.6 - brightBlack: 13.5 - brightRed: 45.3 - brightGreen: 82.9 - brightYellow: 77.7 - brightBlue: 54.7 - brightMagenta: 52.5 - brightCyan: 77 - brightWhite: 105.6 diff --git a/themes/carbon-candy-carbon.yaml b/themes/carbon-candy-carbon.yaml deleted file mode 100644 index 2d86cdc7..00000000 --- a/themes/carbon-candy-carbon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "carbon-candy-carbon" -source: - marketplace_id: "viral-team.carbon-candy" - version: "0.2.9" - installs: 842 - rating: 5 - ratings: 1 - author: "Viral Team Theme" - repo: "https://github.com/viral-team/carbon-candy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" -colors: - bg: "#1A1A1A" - fg: "#D4D4D4" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#424242" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 79.2 - black: 0 - red: 46.3 - green: 83.9 - yellow: 78.6 - blue: 55.6 - magenta: 53.4 - cyan: 77.9 - white: 106.5 - brightBlack: 7.8 - brightRed: 46.3 - brightGreen: 83.9 - brightYellow: 78.6 - brightBlue: 55.6 - brightMagenta: 53.4 - brightCyan: 77.9 - brightWhite: 106.5 diff --git a/themes/carbon-candy-dark.yaml b/themes/carbon-candy-dark.yaml deleted file mode 100644 index c627c81f..00000000 --- a/themes/carbon-candy-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "carbon-candy-dark" -source: - marketplace_id: "viral-team.carbon-candy" - version: "0.2.9" - installs: 842 - rating: 5 - ratings: 1 - author: "Viral Team Theme" - repo: "https://github.com/viral-team/carbon-candy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" -colors: - bg: "#161616" - fg: "#CCCCCC" - black: "#262626" - red: "#EE5396" - green: "#42BE65" - yellow: "#FDDC68" - blue: "#78A9FF" - magenta: "#BE95FF" - cyan: "#08BDBA" - white: "#F2F4F8" - brightBlack: "#525252" - brightRed: "#FF7EB6" - brightGreen: "#44E070" - brightYellow: "#FDE593" - brightBlue: "#33B1FF" - brightMagenta: "#FF7EB6" - brightCyan: "#3DDBD9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 74.8 - black: 0 - red: 41.1 - green: 54.4 - yellow: 85.9 - blue: 54.9 - magenta: 54.9 - cyan: 55.8 - white: 99.6 - brightBlack: 14 - brightRed: 55.2 - brightGreen: 71 - brightYellow: 90.7 - brightBlue: 55 - brightMagenta: 55.2 - brightCyan: 71.9 - brightWhite: 107 diff --git a/themes/carbon-candy-obsidian.yaml b/themes/carbon-candy-obsidian.yaml deleted file mode 100644 index 1385e20c..00000000 --- a/themes/carbon-candy-obsidian.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "carbon-candy-obsidian" -source: - marketplace_id: "viral-team.carbon-candy" - version: "0.2.9" - installs: 842 - rating: 5 - ratings: 1 - author: "Viral Team Theme" - repo: "https://github.com/viral-team/carbon-candy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" -colors: - bg: "#0F0F0F" - fg: "#D8D8D8" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#363636" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82.6 - black: 0 - red: 47.2 - green: 84.8 - yellow: 79.6 - blue: 56.6 - magenta: 54.4 - cyan: 78.9 - white: 107.5 - brightBlack: 0 - brightRed: 47.2 - brightGreen: 84.8 - brightYellow: 79.6 - brightBlue: 56.6 - brightMagenta: 54.4 - brightCyan: 78.9 - brightWhite: 107.5 diff --git a/themes/carbon-candy-palenight.yaml b/themes/carbon-candy-palenight.yaml deleted file mode 100644 index 3a6a9ba8..00000000 --- a/themes/carbon-candy-palenight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "carbon-candy-palenight" -source: - marketplace_id: "viral-team.carbon-candy" - version: "0.2.9" - installs: 842 - rating: 5 - ratings: 1 - author: "Viral Team Theme" - repo: "https://github.com/viral-team/carbon-candy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" -colors: - bg: "#292D3E" - fg: "#EEFFFF" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676767" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 274 - pair: null - contrast: - fg: 101 - black: 0 - red: 43 - green: 80.6 - yellow: 75.3 - blue: 52.3 - magenta: 50.1 - cyan: 74.6 - white: 103.3 - brightBlack: 18.9 - brightRed: 43 - brightGreen: 80.6 - brightYellow: 75.3 - brightBlue: 52.3 - brightMagenta: 50.1 - brightCyan: 74.6 - brightWhite: 103.3 diff --git a/themes/carbon-code-amber-dark.yaml b/themes/carbon-code-amber-dark.yaml deleted file mode 100644 index 0df491ef..00000000 --- a/themes/carbon-code-amber-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Carbon Code Amber Dark" -source: - marketplace_id: "sazardev.carbon-code-theme" - version: "1.2.0" - installs: 903 - rating: 5 - ratings: 1 - author: "sazardev" - repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" -colors: - bg: "#100E08" - fg: "#E6E6E6" - black: "#000000" - red: "#EF4444" - green: "#22C55E" - yellow: "#F59E0B" - blue: "#3B82F6" - magenta: "#A855F7" - cyan: "#06B6D4" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#EF4444" - brightGreen: "#22C55E" - brightYellow: "#F59E0B" - brightBlue: "#3B82F6" - brightMagenta: "#A855F7" - brightCyan: "#06B6D4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 92 - pair: "Carbon Code Amber Light" - contrast: - fg: 91.3 - black: 0 - red: 37.5 - green: 57.5 - yellow: 60.1 - blue: 37.4 - magenta: 35.1 - cyan: 54.6 - white: 107.6 - brightBlack: 0 - brightRed: 37.5 - brightGreen: 57.5 - brightYellow: 60.1 - brightBlue: 37.4 - brightMagenta: 35.1 - brightCyan: 54.6 - brightWhite: 107.6 diff --git a/themes/carbon-code-amber-light.yaml b/themes/carbon-code-amber-light.yaml deleted file mode 100644 index 629a0414..00000000 --- a/themes/carbon-code-amber-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Carbon Code Amber Light" -source: - marketplace_id: "sazardev.carbon-code-theme" - version: "1.2.0" - installs: 903 - rating: 5 - ratings: 1 - author: "sazardev" - repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" -colors: - bg: "#FFFBF0" - fg: "#0A0A0A" - black: "#000000" - red: "#EF4444" - green: "#22C55E" - yellow: "#F59E0B" - blue: "#3B82F6" - magenta: "#A855F7" - cyan: "#06B6D4" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#EF4444" - brightGreen: "#22C55E" - brightYellow: "#F59E0B" - brightBlue: "#3B82F6" - brightMagenta: "#A855F7" - brightCyan: "#06B6D4" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Carbon Code Amber Dark" - contrast: - fg: 103.5 - black: 103.7 - red: 61.5 - green: 42 - yellow: 39.4 - blue: 61.6 - magenta: 63.9 - cyan: 44.8 - white: 0 - brightBlack: 103.7 - brightRed: 61.5 - brightGreen: 42 - brightYellow: 39.4 - brightBlue: 61.6 - brightMagenta: 63.9 - brightCyan: 44.8 - brightWhite: 0 diff --git a/themes/carbon-code-crimson-dark.yaml b/themes/carbon-code-crimson-dark.yaml deleted file mode 100644 index 383ee827..00000000 --- a/themes/carbon-code-crimson-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Carbon Code Crimson Dark" -source: - marketplace_id: "sazardev.carbon-code-theme" - version: "1.2.0" - installs: 903 - rating: 5 - ratings: 1 - author: "sazardev" - repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" -colors: - bg: "#120E0E" - fg: "#E6E6E6" - black: "#000000" - red: "#DC2626" - green: "#16A34A" - yellow: "#F59E0B" - blue: "#2563EB" - magenta: "#C026D3" - cyan: "#0891B2" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#DC2626" - brightGreen: "#16A34A" - brightYellow: "#F59E0B" - brightBlue: "#2563EB" - brightMagenta: "#C026D3" - brightCyan: "#0891B2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: "Carbon Code Crimson Light" - contrast: - fg: 91.3 - black: 0 - red: 29.7 - green: 41.6 - yellow: 60.1 - blue: 26.5 - magenta: 30.2 - cyan: 37.5 - white: 107.5 - brightBlack: 0 - brightRed: 29.7 - brightGreen: 41.6 - brightYellow: 60.1 - brightBlue: 26.5 - brightMagenta: 30.2 - brightCyan: 37.5 - brightWhite: 107.5 diff --git a/themes/carbon-code-crimson-light.yaml b/themes/carbon-code-crimson-light.yaml deleted file mode 100644 index 035f0c2d..00000000 --- a/themes/carbon-code-crimson-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Carbon Code Crimson Light" -source: - marketplace_id: "sazardev.carbon-code-theme" - version: "1.2.0" - installs: 903 - rating: 5 - ratings: 1 - author: "sazardev" - repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" -colors: - bg: "#FEFCFC" - fg: "#0A0A0A" - black: "#000000" - red: "#DC2626" - green: "#16A34A" - yellow: "#F59E0B" - blue: "#2563EB" - magenta: "#C026D3" - cyan: "#0891B2" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#DC2626" - brightGreen: "#16A34A" - brightYellow: "#F59E0B" - brightBlue: "#2563EB" - brightMagenta: "#C026D3" - brightCyan: "#0891B2" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Carbon Code Crimson Dark" - contrast: - fg: 104.3 - black: 104.5 - red: 70 - green: 58.2 - yellow: 40.2 - blue: 73.3 - magenta: 69.5 - cyan: 62.3 - white: 0 - brightBlack: 104.5 - brightRed: 70 - brightGreen: 58.2 - brightYellow: 40.2 - brightBlue: 73.3 - brightMagenta: 69.5 - brightCyan: 62.3 - brightWhite: 0 diff --git a/themes/carbon-code-dark.yaml b/themes/carbon-code-dark.yaml deleted file mode 100644 index ba0cfddf..00000000 --- a/themes/carbon-code-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Carbon Code Dark" -source: - marketplace_id: "sazardev.carbon-code-theme" - version: "1.2.0" - installs: 903 - rating: 5 - ratings: 1 - author: "sazardev" - repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" -colors: - bg: "#0F0F13" - fg: "#E6E6E6" - black: "#000000" - red: "#FF0055" - green: "#6366F1" - yellow: "#FFDD00" - blue: "#0088FF" - magenta: "#FF00DD" - cyan: "#00FFDD" - white: "#FFFFFF" - brightBlack: "#333333" - brightRed: "#FF3377" - brightGreen: "#33FFAA" - brightYellow: "#FFEE33" - brightBlue: "#3399FF" - brightMagenta: "#FF33EE" - brightCyan: "#33FFEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: "Carbon Code Light" - contrast: - fg: 91.3 - black: 0 - red: 37.8 - green: 30.7 - yellow: 86.5 - blue: 39.4 - magenta: 43.4 - cyan: 90.1 - white: 107.5 - brightBlack: 0 - brightRed: 40.5 - brightGreen: 88.6 - brightYellow: 94.3 - brightBlue: 46 - brightMagenta: 46.3 - brightCyan: 91.3 - brightWhite: 107.5 diff --git a/themes/carbon-code-emerald-dark.yaml b/themes/carbon-code-emerald-dark.yaml deleted file mode 100644 index bdb744c8..00000000 --- a/themes/carbon-code-emerald-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Carbon Code Emerald Dark" -source: - marketplace_id: "sazardev.carbon-code-theme" - version: "1.2.0" - installs: 903 - rating: 5 - ratings: 1 - author: "sazardev" - repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" -colors: - bg: "#0E110E" - fg: "#E6E6E6" - black: "#000000" - red: "#FF0055" - green: "#00FF88" - yellow: "#FFDD00" - blue: "#0088FF" - magenta: "#FF00DD" - cyan: "#00FFDD" - white: "#FFFFFF" - brightBlack: "#333333" - brightRed: "#FF3377" - brightGreen: "#33FFAA" - brightYellow: "#FFEE33" - brightBlue: "#3399FF" - brightMagenta: "#FF33EE" - brightCyan: "#33FFEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: "Carbon Code Emerald Light" - contrast: - fg: 91.2 - black: 0 - red: 37.7 - green: 87.3 - yellow: 86.4 - blue: 39.3 - magenta: 43.3 - cyan: 90.1 - white: 107.4 - brightBlack: 0 - brightRed: 40.4 - brightGreen: 88.6 - brightYellow: 94.2 - brightBlue: 46 - brightMagenta: 46.2 - brightCyan: 91.2 - brightWhite: 107.4 diff --git a/themes/carbon-code-emerald-light.yaml b/themes/carbon-code-emerald-light.yaml deleted file mode 100644 index 59571ca1..00000000 --- a/themes/carbon-code-emerald-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Carbon Code Emerald Light" -source: - marketplace_id: "sazardev.carbon-code-theme" - version: "1.2.0" - installs: 903 - rating: 5 - ratings: 1 - author: "sazardev" - repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" -colors: - bg: "#FAFEFC" - fg: "#0A0A0A" - black: "#000000" - red: "#FF0055" - green: "#00FF88" - yellow: "#FFBB00" - blue: "#0088FF" - magenta: "#FF00DD" - cyan: "#00DDFF" - white: "#000000" - brightBlack: "#666666" - brightRed: "#FF3377" - brightGreen: "#33FF99" - brightYellow: "#FFDD33" - brightBlue: "#3399FF" - brightMagenta: "#FF33DD" - brightCyan: "#33DDFF" - brightWhite: "#000000" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Carbon Code Emerald Dark" - contrast: - fg: 104.7 - black: 104.8 - red: 62.3 - green: 14.7 - yellow: 28.8 - blue: 60.7 - magenta: 56.8 - cyan: 26.6 - white: 104.8 - brightBlack: 77.6 - brightRed: 59.7 - brightGreen: 14 - brightYellow: 15.5 - brightBlue: 54.2 - brightMagenta: 55.1 - brightCyan: 26.2 - brightWhite: 104.8 diff --git a/themes/carbon-code-light.yaml b/themes/carbon-code-light.yaml deleted file mode 100644 index ddf8a7bf..00000000 --- a/themes/carbon-code-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Carbon Code Light" -source: - marketplace_id: "sazardev.carbon-code-theme" - version: "1.2.0" - installs: 903 - rating: 5 - ratings: 1 - author: "sazardev" - repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" -colors: - bg: "#FCFCFF" - fg: "#0A0A0A" - black: "#000000" - red: "#FF0055" - green: "#6366F1" - yellow: "#FFBB00" - blue: "#0088FF" - magenta: "#FF00DD" - cyan: "#00DDFF" - white: "#000000" - brightBlack: "#666666" - brightRed: "#FF3377" - brightGreen: "#33FF99" - brightYellow: "#FFDD33" - brightBlue: "#3399FF" - brightMagenta: "#FF33DD" - brightCyan: "#33DDFF" - brightWhite: "#000000" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Carbon Code Dark" - contrast: - fg: 104.2 - black: 104.4 - red: 61.8 - green: 68.9 - yellow: 28.4 - blue: 60.3 - magenta: 56.3 - cyan: 26.1 - white: 104.4 - brightBlack: 77.1 - brightRed: 59.2 - brightGreen: 13.6 - brightYellow: 15 - brightBlue: 53.7 - brightMagenta: 54.6 - brightCyan: 25.7 - brightWhite: 104.4 diff --git a/themes/carbon-code-rose-dark.yaml b/themes/carbon-code-rose-dark.yaml deleted file mode 100644 index 3d839f84..00000000 --- a/themes/carbon-code-rose-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Carbon Code Rose Dark" -source: - marketplace_id: "sazardev.carbon-code-theme" - version: "1.2.0" - installs: 903 - rating: 5 - ratings: 1 - author: "sazardev" - repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" -colors: - bg: "#110E10" - fg: "#E6E6E6" - black: "#000000" - red: "#F43F5E" - green: "#22C55E" - yellow: "#EAB308" - blue: "#3B82F6" - magenta: "#EC4899" - cyan: "#06B6D4" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#F43F5E" - brightGreen: "#22C55E" - brightYellow: "#EAB308" - brightBlue: "#3B82F6" - brightMagenta: "#EC4899" - brightCyan: "#06B6D4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Carbon Code Rose Light" - contrast: - fg: 91.3 - black: 0 - red: 38.5 - green: 57.4 - yellow: 65.7 - blue: 37.4 - magenta: 39.6 - cyan: 54.5 - white: 107.5 - brightBlack: 0 - brightRed: 38.5 - brightGreen: 57.4 - brightYellow: 65.7 - brightBlue: 37.4 - brightMagenta: 39.6 - brightCyan: 54.5 - brightWhite: 107.5 diff --git a/themes/carbon-code-rose-light.yaml b/themes/carbon-code-rose-light.yaml deleted file mode 100644 index aa2ca51c..00000000 --- a/themes/carbon-code-rose-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Carbon Code Rose Light" -source: - marketplace_id: "sazardev.carbon-code-theme" - version: "1.2.0" - installs: 903 - rating: 5 - ratings: 1 - author: "sazardev" - repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" -colors: - bg: "#FEF9FC" - fg: "#0A0A0A" - black: "#000000" - red: "#F43F5E" - green: "#22C55E" - yellow: "#EAB308" - blue: "#3B82F6" - magenta: "#EC4899" - cyan: "#06B6D4" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#F43F5E" - brightGreen: "#22C55E" - brightYellow: "#EAB308" - brightBlue: "#3B82F6" - brightMagenta: "#EC4899" - brightCyan: "#06B6D4" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Carbon Code Rose Dark" - contrast: - fg: 103 - black: 103.2 - red: 60 - green: 41.5 - yellow: 33.5 - blue: 61.1 - magenta: 58.9 - cyan: 44.3 - white: 0 - brightBlack: 103.2 - brightRed: 60 - brightGreen: 41.5 - brightYellow: 33.5 - brightBlue: 61.1 - brightMagenta: 58.9 - brightCyan: 44.3 - brightWhite: 0 diff --git a/themes/carbon-design-system-theme.yaml b/themes/carbon-design-system-theme.yaml index 69164c0d..1f39f955 100644 --- a/themes/carbon-design-system-theme.yaml +++ b/themes/carbon-design-system-theme.yaml @@ -8,6 +8,7 @@ source: author: "taotao7" repo: "https://github.com/taotao7/carbon-theme" url: "https://marketplace.visualstudio.com/items?itemName=taotao7.ibm-carbon-theme" + formats: null colors: bg: "#161616" fg: "#F4F4F4" diff --git a/themes/carbon-one.yaml b/themes/carbon-one.yaml index 0286266b..0ba4a4dd 100644 --- a/themes/carbon-one.yaml +++ b/themes/carbon-one.yaml @@ -8,6 +8,7 @@ source: author: "Gerardo Tordoya" repo: "https://github.com/zherar7ordoya/carbon-one" url: "https://marketplace.visualstudio.com/items?itemName=Gerardo-Tordoya.carbon-one" + formats: null colors: bg: "#F4F4F4" fg: "#161616" diff --git a/themes/carbon-react-color-theme-maya-black.yaml b/themes/carbon-react-color-theme-maya-black.yaml deleted file mode 100644 index f3eccd75..00000000 --- a/themes/carbon-react-color-theme-maya-black.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Carbon React Color Theme - Maya Black" -source: - marketplace_id: "yathink3.carbon-react-color-theme" - version: "1.4.5" - installs: 6741 - rating: 5 - ratings: 5 - author: "yathink3" - repo: "https://github.com/yathink3/carbon-react-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" -colors: - bg: "#000205" - fg: "#BFBDB6" - black: "#11151C" - red: "#EA6C73" - green: "#7FD962" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#CDA1FA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAD94C" - brightYellow: "#FFB454" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 242 - pair: null - contrast: - fg: 66.8 - black: 0 - red: 45 - green: 71 - yellow: 67.6 - blue: 61.6 - magenta: 61.6 - cyan: 78.9 - white: 72.7 - brightBlack: 23.9 - brightRed: 47.6 - brightGreen: 74.3 - brightYellow: 70.6 - brightBlue: 64.3 - brightMagenta: 64.4 - brightCyan: 81.9 - brightWhite: 107.9 diff --git a/themes/carbon-react-color-theme-maya.yaml b/themes/carbon-react-color-theme-maya.yaml deleted file mode 100644 index bf7af343..00000000 --- a/themes/carbon-react-color-theme-maya.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Carbon React Color Theme - Maya" -source: - marketplace_id: "yathink3.carbon-react-color-theme" - version: "1.4.5" - installs: 6741 - rating: 5 - ratings: 5 - author: "yathink3" - repo: "https://github.com/yathink3/carbon-react-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" -colors: - bg: "#161A26" - fg: "#BFBDB6" - black: "#343B4D" - red: "#EA6C73" - green: "#7FD962" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#CDA1FA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAD94C" - brightYellow: "#FFB454" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 270 - pair: null - contrast: - fg: 65.5 - black: 0 - red: 43.7 - green: 69.6 - yellow: 66.2 - blue: 60.2 - magenta: 60.2 - cyan: 77.5 - white: 71.3 - brightBlack: 22.5 - brightRed: 46.2 - brightGreen: 72.9 - brightYellow: 69.2 - brightBlue: 63 - brightMagenta: 63 - brightCyan: 80.5 - brightWhite: 106.5 diff --git a/themes/carbon-react-color-theme.yaml b/themes/carbon-react-color-theme.yaml deleted file mode 100644 index a3be9b68..00000000 --- a/themes/carbon-react-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Carbon React Color Theme" -source: - marketplace_id: "yathink3.carbon-react-color-theme" - version: "1.4.5" - installs: 6741 - rating: 5 - ratings: 5 - author: "yathink3" - repo: "https://github.com/yathink3/carbon-react-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" -colors: - bg: "#1B1D22" - fg: "#BBBBBB" - black: "#370067" - red: "#BF8B56" - green: "#07D258" - yellow: "#E3B625" - blue: "#BD1C98" - magenta: "#BF568B" - cyan: "#2F7ECD" - white: "#FFFFFF" - brightBlack: "#627E99" - brightRed: "#BF8B56" - brightGreen: "#24966E" - brightYellow: "#BFA656" - brightBlue: "#8B56BF" - brightMagenta: "#BF568B" - brightCyan: "#20BCFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 268 - pair: null - contrast: - fg: 64 - black: 0 - red: 43.8 - green: 62.1 - yellow: 64.5 - blue: 24.1 - magenta: 31 - cyan: 31.3 - white: 106.2 - brightBlack: 30.8 - brightRed: 43.8 - brightGreen: 35.7 - brightYellow: 53.4 - brightBlue: 25.6 - brightMagenta: 31 - brightCyan: 58.5 - brightWhite: 106.2 diff --git a/themes/carbon.yaml b/themes/carbon.yaml deleted file mode 100644 index 39f1eace..00000000 --- a/themes/carbon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Carbon" -source: - marketplace_id: "OscarNewman.carbon-theme-dark" - version: "0.0.1" - installs: 3316 - rating: 5 - ratings: 1 - author: "Oscar Newman" - repo: "https://github.com/oscarnewman/carbon-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=OscarNewman.carbon-theme-dark" -colors: - bg: "#152031" - fg: "#BAC8CB" - black: "#000000" - red: "#FF4262" - green: "#9CDE65" - yellow: "#E1E797" - blue: "#65B7EC" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#CDD3D3" - brightBlack: "#666666" - brightRed: "#FF4262" - brightGreen: "#9CDE65" - brightYellow: "#D8DE90" - brightBlue: "#65B7EC" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "orange" - hue: 259 - pair: null - contrast: - fg: 69.6 - black: 0 - red: 39.8 - green: 73.6 - yellow: 86.5 - blue: 56.9 - magenta: 28.7 - cyan: 46.5 - white: 77 - brightBlack: 20.9 - brightRed: 39.8 - brightGreen: 73.6 - brightYellow: 81 - brightBlue: 56.9 - brightMagenta: 44.3 - brightCyan: 54.3 - brightWhite: 88.9 diff --git a/themes/carbonfox.yaml b/themes/carbonfox.yaml index 8d2954d8..561fa655 100644 --- a/themes/carbonfox.yaml +++ b/themes/carbonfox.yaml @@ -8,6 +8,7 @@ source: author: "Le Trieu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=letrieu.tornado-themes" + formats: null colors: bg: "#161616" fg: "#CBCCC6" diff --git a/themes/carbonight-contrast.yaml b/themes/carbonight-contrast.yaml deleted file mode 100644 index 8cac5f86..00000000 --- a/themes/carbonight-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "carbonight-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#0D0D0D" - red: "#BA0E2E" - green: "#C4C4C4" - yellow: "#8C8C8C" - blue: "#FFFFFF" - magenta: "#EEEEEE" - cyan: "#FFFFFF" - white: "#FFFFFF" - brightBlack: "#333333" - brightRed: "#F03E5F" - brightGreen: "#F7F7F7" - brightYellow: "#BFBFBF" - brightBlue: "#FFFFFF" - brightMagenta: "#FFFFFF" - brightCyan: "#FFFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 21.5 - green: 70.9 - yellow: 40.6 - blue: 107.9 - magenta: 96.8 - cyan: 107.9 - white: 107.9 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 102.6 - brightYellow: 68 - brightBlue: 107.9 - brightMagenta: 107.9 - brightCyan: 107.9 - brightWhite: 107.9 diff --git a/themes/carbonight-dusk.yaml b/themes/carbonight-dusk.yaml index 3d185495..4d2fd858 100644 --- a/themes/carbonight-dusk.yaml +++ b/themes/carbonight-dusk.yaml @@ -8,6 +8,7 @@ source: author: "Erfan Nasibi" repo: "https://github.com/erfannsb/carbonight" url: "https://marketplace.visualstudio.com/items?itemName=Erfannsb.carbonight" + formats: null colors: bg: "#151726" fg: "#DADFF0" diff --git a/themes/carbonight-light.yaml b/themes/carbonight-light.yaml deleted file mode 100644 index 66c32907..00000000 --- a/themes/carbonight-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "carbonight-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#2E2C2B" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#C4C4C4" - yellow: "#8C8C8C" - blue: "#222222" - magenta: "#555555" - cyan: "#222222" - white: "#3B3937" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#F7F7F7" - brightYellow: "#BFBFBF" - brightBlue: "#555555" - brightMagenta: "#888888" - brightCyan: "#555555" - brightWhite: "#635E5C" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 100.5 - black: 0 - red: 80.3 - green: 31.8 - yellow: 61.1 - blue: 102.9 - magenta: 85.9 - cyan: 102.9 - white: 96.5 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 0 - brightYellow: 34.5 - brightBlue: 85.9 - brightMagenta: 63.1 - brightCyan: 85.9 - brightWhite: 81.8 diff --git a/themes/carbonight-midnight.yaml b/themes/carbonight-midnight.yaml index 5554c376..ca6eb160 100644 --- a/themes/carbonight-midnight.yaml +++ b/themes/carbonight-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Erfan Nasibi" repo: "https://github.com/erfannsb/carbonight" url: "https://marketplace.visualstudio.com/items?itemName=Erfannsb.carbonight" + formats: null colors: bg: "#0A0A0A" fg: "#E0E0E0" diff --git a/themes/carbonight.yaml b/themes/carbonight.yaml index 5c9ee62a..07fd6ada 100644 --- a/themes/carbonight.yaml +++ b/themes/carbonight.yaml @@ -8,6 +8,7 @@ source: author: "Erfan Nasibi" repo: "https://github.com/erfannsb/carbonight" url: "https://marketplace.visualstudio.com/items?itemName=Erfannsb.carbonight" + formats: null colors: bg: "#0C1015" fg: "#D8DEE9" diff --git a/themes/caret-light.yaml b/themes/caret-light.yaml index f3ada3c3..f773d137 100644 --- a/themes/caret-light.yaml +++ b/themes/caret-light.yaml @@ -8,6 +8,7 @@ source: author: "Bjørnar Hagen" repo: "https://github.com/bjornarhagen/caret-theme" url: "https://marketplace.visualstudio.com/items?itemName=bjornarhagen.caret-theme" + formats: null colors: bg: "#CAD8B1" fg: "#2A2D25" diff --git a/themes/carex-dark.yaml b/themes/carex-dark.yaml index 48db8b63..e8ca31fb 100644 --- a/themes/carex-dark.yaml +++ b/themes/carex-dark.yaml @@ -8,6 +8,7 @@ source: author: "OMERBABACO" repo: "https://github.com/babajoeltdsti/carex-theme" url: "https://marketplace.visualstudio.com/items?itemName=OMERBABACO.carex-theme" + formats: null colors: bg: "#1E1E2E" fg: "#CDD6F4" diff --git a/themes/carex-high-contrast-dark.yaml b/themes/carex-high-contrast-dark.yaml index 71eb4b2c..d6d49695 100644 --- a/themes/carex-high-contrast-dark.yaml +++ b/themes/carex-high-contrast-dark.yaml @@ -8,6 +8,7 @@ source: author: "OMERBABACO" repo: "https://github.com/babajoeltdsti/carex-theme" url: "https://marketplace.visualstudio.com/items?itemName=OMERBABACO.carex-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/carex-light.yaml b/themes/carex-light.yaml index 192c690e..6a442ec0 100644 --- a/themes/carex-light.yaml +++ b/themes/carex-light.yaml @@ -8,6 +8,7 @@ source: author: "OMERBABACO" repo: "https://github.com/babajoeltdsti/carex-theme" url: "https://marketplace.visualstudio.com/items?itemName=OMERBABACO.carex-theme" + formats: null colors: bg: "#EFF1F5" fg: "#4C4F69" diff --git a/themes/casa.yaml b/themes/casa.yaml index ce54a9ae..816d7834 100644 --- a/themes/casa.yaml +++ b/themes/casa.yaml @@ -8,6 +8,7 @@ source: author: "FenFex" repo: null url: "https://marketplace.visualstudio.com/items?itemName=FenFex.Casa" + formats: null colors: bg: "#033F56" fg: "#FFFFFF" diff --git a/themes/casino-royal.yaml b/themes/casino-royal.yaml index 47236816..51cc8bd2 100644 --- a/themes/casino-royal.yaml +++ b/themes/casino-royal.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#0F3F0F" fg: "#F5F5F5" diff --git a/themes/cassieye-dark.yaml b/themes/cassieye-dark.yaml deleted file mode 100644 index 0f67675a..00000000 --- a/themes/cassieye-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cassieye Dark" -source: - marketplace_id: "Cassieye-azuretools.Cassieye-Theme" - version: "0.5.0" - installs: 2080 - rating: 5 - ratings: 3 - author: "Cassieye" - repo: "https://github.com/cassie-ye/Cassieye-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Cassieye-azuretools.Cassieye-Theme" -colors: - bg: "#121212" - fg: "#DBD7CA" - black: "#393A34" - red: "#CB7676" - green: "#4D9375" - yellow: "#E6CC77" - blue: "#6394BF" - magenta: "#D9739F" - cyan: "#5EAAB5" - white: "#DBD7CA" - brightBlack: "#777777" - brightRed: "#CB7676" - brightGreen: "#4D9375" - brightYellow: "#E6CC77" - brightBlue: "#6394BF" - brightMagenta: "#D9739F" - brightCyan: "#5EAAB5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: "Cassieye Light" - contrast: - fg: 81.7 - black: 0 - red: 41.2 - green: 37.1 - yellow: 76 - blue: 41.8 - magenta: 44.3 - cyan: 49.7 - white: 81.7 - brightBlack: 30 - brightRed: 41.2 - brightGreen: 37.1 - brightYellow: 76 - brightBlue: 41.8 - brightMagenta: 44.3 - brightCyan: 49.7 - brightWhite: 107.3 diff --git a/themes/cassieye-light.yaml b/themes/cassieye-light.yaml deleted file mode 100644 index f097afda..00000000 --- a/themes/cassieye-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cassieye Light" -source: - marketplace_id: "Cassieye-azuretools.Cassieye-Theme" - version: "0.5.0" - installs: 2080 - rating: 5 - ratings: 3 - author: "Cassieye" - repo: "https://github.com/cassie-ye/Cassieye-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Cassieye-azuretools.Cassieye-Theme" -colors: - bg: "#FFFFFF" - fg: "#393A34" - black: "#121212" - red: "#AB5959" - green: "#1E754F" - yellow: "#BDA437" - blue: "#296AA3" - magenta: "#A13865" - cyan: "#2993A3" - white: "#DBD7CA" - brightBlack: "#AAAAAA" - brightRed: "#AB5959" - brightGreen: "#1E754F" - brightYellow: "#BDA437" - brightBlue: "#296AA3" - brightMagenta: "#A13865" - brightCyan: "#2993A3" - brightWhite: "#DDDDDD" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Cassieye Dark" - contrast: - fg: 96.5 - black: 105.3 - red: 73.5 - green: 77.9 - yellow: 48.3 - blue: 78.2 - magenta: 81.1 - cyan: 63.5 - white: 21.1 - brightBlack: 45.8 - brightRed: 73.5 - brightGreen: 77.9 - brightYellow: 48.3 - brightBlue: 78.2 - brightMagenta: 81.1 - brightCyan: 63.5 - brightWhite: 17.6 diff --git a/themes/cat-pink.yaml b/themes/cat-pink.yaml index 2c128391..f0e900ba 100644 --- a/themes/cat-pink.yaml +++ b/themes/cat-pink.yaml @@ -8,6 +8,7 @@ source: author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.cat-sleep" + formats: null colors: bg: "#151416" fg: "#FFFFFF" diff --git a/themes/cat-pulper.yaml b/themes/cat-pulper.yaml index 3f78c812..87754d92 100644 --- a/themes/cat-pulper.yaml +++ b/themes/cat-pulper.yaml @@ -8,6 +8,7 @@ source: author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.cat-sleep" + formats: null colors: bg: "#171131" fg: "#C7BFE8" diff --git a/themes/cat-sleep-color-theme.yaml b/themes/cat-sleep-color-theme.yaml index 222d613e..3895608c 100644 --- a/themes/cat-sleep-color-theme.yaml +++ b/themes/cat-sleep-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.cat-sleep" + formats: null colors: bg: "#19191A" fg: "#878784" diff --git a/themes/catalyst-light.yaml b/themes/catalyst-light.yaml deleted file mode 100644 index b545b2ea..00000000 --- a/themes/catalyst-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Catalyst Light" -source: - marketplace_id: "hyphenzero.catalyst-theme" - version: "2.0.1" - installs: 992 - rating: 5 - ratings: 1 - author: "Jasper Gorchov" - repo: "https://github.com/hyphenzero/tailwind-catalyst-theme" - url: "https://marketplace.visualstudio.com/items?itemName=hyphenzero.catalyst-theme" -colors: - bg: "#FFFFFF" - fg: "#1E293B" - black: "#000000" - red: "#BE123C" - green: "#059669" - yellow: "#D97706" - blue: "#1D4ED8" - magenta: "#7E22CE" - cyan: "#0891B2" - white: "#94A3B8" - brightBlack: "#64748B" - brightRed: "#E11D48" - brightGreen: "#10B981" - brightYellow: "#F59E0B" - brightBlue: "#2563EB" - brightMagenta: "#9333EA" - brightCyan: "#06B6D4" - brightWhite: "#000000" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 101.4 - black: 106 - red: 79.2 - green: 64.6 - yellow: 58.5 - blue: 82.2 - magenta: 82.8 - cyan: 63.8 - white: 50.2 - brightBlack: 73 - brightRed: 70.5 - brightGreen: 49.1 - brightYellow: 41.8 - brightBlue: 74.9 - brightMagenta: 75.6 - brightCyan: 47.1 - brightWhite: 106 diff --git a/themes/catalyst.yaml b/themes/catalyst.yaml deleted file mode 100644 index d21a361b..00000000 --- a/themes/catalyst.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Catalyst" -source: - marketplace_id: "hyphenzero.catalyst-theme" - version: "2.0.1" - installs: 992 - rating: 5 - ratings: 1 - author: "Jasper Gorchov" - repo: "https://github.com/hyphenzero/tailwind-catalyst-theme" - url: "https://marketplace.visualstudio.com/items?itemName=hyphenzero.catalyst-theme" -colors: - bg: "#09090B" - fg: "#F9FAFB" - black: "#FFFFFF" - red: "#FB7185" - green: "#34D399" - yellow: "#FBBF24" - blue: "#3B82F6" - magenta: "#C084FC" - cyan: "#22D3EE" - white: "#CBD5E1" - brightBlack: "#94A3B8" - brightRed: "#FB7185" - brightGreen: "#6EE7B7" - brightYellow: "#FCD34D" - brightBlue: "#60A5FA" - brightMagenta: "#D8B4FE" - brightCyan: "#67E8F9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 104.4 - black: 107.8 - red: 50.2 - green: 66.1 - yellow: 73.6 - blue: 37.7 - magenta: 50.6 - cyan: 69.5 - white: 80.3 - brightBlack: 51.6 - brightRed: 50.2 - brightGreen: 78.9 - brightYellow: 82.3 - brightBlue: 52.3 - brightMagenta: 70.2 - brightCyan: 82.1 - brightWhite: 107.8 diff --git a/themes/cathaytrial.yaml b/themes/cathaytrial.yaml index 03c18d4d..2107f8d1 100644 --- a/themes/cathaytrial.yaml +++ b/themes/cathaytrial.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "JackyChong.jacky" version: "0.0.1" installs: 3 + rating: 0 + ratings: 0 author: "Jacky Chong" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JackyChong.jacky" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/catppuccin-dark-pro.yaml b/themes/catppuccin-dark-pro.yaml index 04f22ee7..5fe6cbe9 100644 --- a/themes/catppuccin-dark-pro.yaml +++ b/themes/catppuccin-dark-pro.yaml @@ -2,12 +2,13 @@ name: "Catppuccin Dark Pro" source: marketplace_id: "SharifdotG.catppuccin-dark-pro" version: "1.1.0" - installs: 5119 + installs: 5144 rating: 0 ratings: 0 author: "Sharif Md. Yousuf" repo: "https://github.com/SharifdotG/Catppuccin-Dark-Pro" url: "https://marketplace.visualstudio.com/items?itemName=SharifdotG.catppuccin-dark-pro" + formats: null colors: bg: "#1E1E2E" fg: "#CDD6F4" diff --git a/themes/catppuccin-dark.yaml b/themes/catppuccin-dark.yaml index e076a601..7c57cb9a 100644 --- a/themes/catppuccin-dark.yaml +++ b/themes/catppuccin-dark.yaml @@ -8,6 +8,7 @@ source: author: "Carl Weis" repo: "https://github.com/carlweis/catppuccin-dark" url: "https://marketplace.visualstudio.com/items?itemName=codelogix.catppuccin-darker-vsc" + formats: null colors: bg: "#181818" fg: "#CDD6F4" diff --git a/themes/catppuccin-frapp.yaml b/themes/catppuccin-frapp.yaml deleted file mode 100644 index 110ce76b..00000000 --- a/themes/catppuccin-frapp.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Catppuccin Frappé" -source: - marketplace_id: "codelogix.catppuccin-darker-vsc" - version: "0.0.3" - installs: 1329 - rating: 0 - ratings: 0 - author: "Carl Weis" - repo: "https://github.com/carlweis/catppuccin-dark" - url: "https://marketplace.visualstudio.com/items?itemName=codelogix.catppuccin-darker-vsc" -colors: - bg: "#303446" - fg: "#C6D0F5" - black: "#51576D" - red: "#E78284" - green: "#A6D189" - yellow: "#E5C890" - blue: "#8CAAEE" - magenta: "#F4B8E4" - cyan: "#81C8BE" - white: "#A5ADCE" - brightBlack: "#626880" - brightRed: "#E67172" - brightGreen: "#8EC772" - brightYellow: "#D9BA73" - brightBlue: "#7B9EF0" - brightMagenta: "#F2A4DB" - brightCyan: "#5ABFB5" - brightWhite: "#B5BFE2" -meta: - mode: "dark" - accent: "orange" - hue: 275 - pair: null - contrast: - fg: 72.3 - black: 10.8 - red: 44.3 - green: 65 - yellow: 69 - blue: 50.3 - magenta: 68.3 - cyan: 59.5 - white: 52.1 - brightBlack: 17.9 - brightRed: 39.1 - brightGreen: 57.7 - brightYellow: 60.8 - brightBlue: 44.4 - brightMagenta: 60.4 - brightCyan: 52.8 - brightWhite: 62.1 diff --git a/themes/catppuccin-latte.yaml b/themes/catppuccin-latte.yaml deleted file mode 100644 index 4caa734e..00000000 --- a/themes/catppuccin-latte.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Catppuccin Latte" -source: - marketplace_id: "codelogix.catppuccin-darker-vsc" - version: "0.0.3" - installs: 1329 - rating: 0 - ratings: 0 - author: "Carl Weis" - repo: "https://github.com/carlweis/catppuccin-dark" - url: "https://marketplace.visualstudio.com/items?itemName=codelogix.catppuccin-darker-vsc" -colors: - bg: "#EFF1F5" - fg: "#4C4F69" - black: "#5C5F77" - red: "#D20F39" - green: "#40A02B" - yellow: "#DF8E1D" - blue: "#1E66F5" - magenta: "#EA76CB" - cyan: "#179299" - white: "#ACB0BE" - brightBlack: "#6C6F85" - brightRed: "#DE293E" - brightGreen: "#49AF3D" - brightYellow: "#EEA02D" - brightBlue: "#456EFF" - brightMagenta: "#FE85D8" - brightCyan: "#2D9FA8" - brightWhite: "#BCC0CC" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 79.3 - black: 72.8 - red: 66.3 - green: 52.1 - yellow: 42.3 - blue: 64.8 - magenta: 42.6 - cyan: 56.1 - white: 34.1 - brightBlack: 65.8 - brightRed: 62.2 - brightGreen: 45.2 - brightYellow: 33.8 - brightBlue: 60.5 - brightMagenta: 34.4 - brightCyan: 50 - brightWhite: 25.5 diff --git a/themes/catppuccin-macchiato.yaml b/themes/catppuccin-macchiato.yaml deleted file mode 100644 index 0e1c7607..00000000 --- a/themes/catppuccin-macchiato.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Catppuccin Macchiato" -source: - marketplace_id: "codelogix.catppuccin-darker-vsc" - version: "0.0.3" - installs: 1329 - rating: 0 - ratings: 0 - author: "Carl Weis" - repo: "https://github.com/carlweis/catppuccin-dark" - url: "https://marketplace.visualstudio.com/items?itemName=codelogix.catppuccin-darker-vsc" -colors: - bg: "#24273A" - fg: "#CAD3F5" - black: "#494D64" - red: "#ED8796" - green: "#A6DA95" - yellow: "#EED49F" - blue: "#8AADF4" - magenta: "#F5BDE6" - cyan: "#8BD5CA" - white: "#A5ADCB" - brightBlack: "#5B6078" - brightRed: "#EC7486" - brightGreen: "#8CCF7F" - brightYellow: "#E1C682" - brightBlue: "#78A1F6" - brightMagenta: "#F2A9DD" - brightCyan: "#63CBC0" - brightWhite: "#B8C0E0" -meta: - mode: "dark" - accent: "red" - hue: 277 - pair: null - contrast: - fg: 76.9 - black: 10 - red: 50.3 - green: 72.3 - yellow: 78.7 - blue: 54.5 - magenta: 73.3 - cyan: 69.5 - white: 54.8 - brightBlack: 17.5 - brightRed: 44.4 - brightGreen: 64.3 - brightYellow: 70.1 - brightBlue: 48.6 - brightMagenta: 65 - brightCyan: 62 - brightWhite: 65.7 diff --git a/themes/catppuccin-mocha.yaml b/themes/catppuccin-mocha.yaml deleted file mode 100644 index 218b9c20..00000000 --- a/themes/catppuccin-mocha.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Catppuccin Mocha" -source: - marketplace_id: "skyrocket-qy.whisper" - version: "0.1.3" - installs: 578 - rating: 0 - ratings: 0 - author: "skyrocket-qy" - repo: "https://github.com/skyrocket-qy/Whisper" - url: "https://marketplace.visualstudio.com/items?itemName=skyrocket-qy.whisper" -colors: - bg: "#131313" - fg: "#D6D6D6" - black: "#45475A" - red: "#F38BA8" - green: "#A6E3A1" - yellow: "#89DCEB" - blue: "#89B4FA" - magenta: "#F5C2E7" - cyan: "#94E2D5" - white: "#A6ADC8" - brightBlack: "#585B70" - brightRed: "#F37799" - brightGreen: "#89D88B" - brightYellow: "#EBD391" - brightBlue: "#74A8FC" - brightMagenta: "#F2AEDE" - brightCyan: "#6BD7CA" - brightWhite: "#BAC2DE" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 81.1 - black: 10.7 - red: 56.1 - green: 79.7 - yellow: 77.1 - blue: 60.5 - magenta: 78.1 - cyan: 79.7 - white: 57.6 - brightBlack: 18.3 - brightRed: 50.1 - brightGreen: 71.5 - brightYellow: 80.3 - brightBlue: 54.3 - brightMagenta: 69.7 - brightCyan: 71.3 - brightWhite: 69.5 diff --git a/themes/catppuccin-monokai-frappe.yaml b/themes/catppuccin-monokai-frappe.yaml deleted file mode 100644 index a1340566..00000000 --- a/themes/catppuccin-monokai-frappe.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Catppuccin Monokai Frappe" -source: - marketplace_id: "dooez.catppuccin-monokai-vsc" - version: "2.7.1" - installs: 28 - rating: 0 - ratings: 0 - author: "dooez" - repo: "https://github.com/Dooez/catppuccin-monokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=dooez.catppuccin-monokai-vsc" -colors: - bg: "#303446" - fg: "#C6D0F5" - black: "#737994" - red: "#E78284" - green: "#A6D189" - yellow: "#E5C890" - blue: "#8CAAEE" - magenta: "#F4B8E4" - cyan: "#99D1DB" - white: "#949CBB" - brightBlack: "#838BA7" - brightRed: "#E78284" - brightGreen: "#A6D189" - brightYellow: "#E5C890" - brightBlue: "#8CAAEE" - brightMagenta: "#F4B8E4" - brightCyan: "#99D1DB" - brightWhite: "#C6D0F5" -meta: - mode: "dark" - accent: "orange" - hue: 275 - pair: null - contrast: - fg: 72.3 - black: 25.6 - red: 44.3 - green: 65 - yellow: 69 - blue: 50.3 - magenta: 68.3 - cyan: 66.8 - white: 42.9 - brightBlack: 34.1 - brightRed: 44.3 - brightGreen: 65 - brightYellow: 69 - brightBlue: 50.3 - brightMagenta: 68.3 - brightCyan: 66.8 - brightWhite: 72.3 diff --git a/themes/catppuccin-monokai-latte.yaml b/themes/catppuccin-monokai-latte.yaml deleted file mode 100644 index e4433751..00000000 --- a/themes/catppuccin-monokai-latte.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Catppuccin Monokai Latte" -source: - marketplace_id: "dooez.catppuccin-monokai-vsc" - version: "2.7.1" - installs: 28 - rating: 0 - ratings: 0 - author: "dooez" - repo: "https://github.com/Dooez/catppuccin-monokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=dooez.catppuccin-monokai-vsc" -colors: - bg: "#EFF1F5" - fg: "#4C4F69" - black: "#9CA0B0" - red: "#D20F39" - green: "#40A02B" - yellow: "#DF8E1D" - blue: "#1E66F5" - magenta: "#EA76CB" - cyan: "#04A5E5" - white: "#7C7F93" - brightBlack: "#8C8FA1" - brightRed: "#D20F39" - brightGreen: "#40A02B" - brightYellow: "#DF8E1D" - brightBlue: "#1E66F5" - brightMagenta: "#EA76CB" - brightCyan: "#04A5E5" - brightWhite: "#4C4F69" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 79.3 - black: 42.4 - red: 66.3 - green: 52.1 - yellow: 42.3 - blue: 64.8 - magenta: 42.6 - cyan: 44.7 - white: 58.5 - brightBlack: 50.8 - brightRed: 66.3 - brightGreen: 52.1 - brightYellow: 42.3 - brightBlue: 64.8 - brightMagenta: 42.6 - brightCyan: 44.7 - brightWhite: 79.3 diff --git a/themes/catppuccin-monokai-macchiato.yaml b/themes/catppuccin-monokai-macchiato.yaml deleted file mode 100644 index 60526f7c..00000000 --- a/themes/catppuccin-monokai-macchiato.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Catppuccin Monokai Macchiato" -source: - marketplace_id: "dooez.catppuccin-monokai-vsc" - version: "2.7.1" - installs: 28 - rating: 0 - ratings: 0 - author: "dooez" - repo: "https://github.com/Dooez/catppuccin-monokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=dooez.catppuccin-monokai-vsc" -colors: - bg: "#24273A" - fg: "#CAD3F5" - black: "#6E738D" - red: "#ED8796" - green: "#A6DA95" - yellow: "#EED49F" - blue: "#8AADF4" - magenta: "#F5BDE6" - cyan: "#91D7E3" - white: "#939AB7" - brightBlack: "#8087A2" - brightRed: "#ED8796" - brightGreen: "#A6DA95" - brightYellow: "#EED49F" - brightBlue: "#8AADF4" - brightMagenta: "#F5BDE6" - brightCyan: "#91D7E3" - brightWhite: "#CAD3F5" -meta: - mode: "dark" - accent: "red" - hue: 277 - pair: null - contrast: - fg: 76.9 - black: 25.8 - red: 50.3 - green: 72.3 - yellow: 78.7 - blue: 54.5 - magenta: 73.3 - cyan: 72.1 - white: 44.7 - brightBlack: 35 - brightRed: 50.3 - brightGreen: 72.3 - brightYellow: 78.7 - brightBlue: 54.5 - brightMagenta: 73.3 - brightCyan: 72.1 - brightWhite: 76.9 diff --git a/themes/catppuccin-monokai-mocha.yaml b/themes/catppuccin-monokai-mocha.yaml deleted file mode 100644 index 31bfcecf..00000000 --- a/themes/catppuccin-monokai-mocha.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Catppuccin Monokai Mocha" -source: - marketplace_id: "dooez.catppuccin-monokai-vsc" - version: "2.7.1" - installs: 28 - rating: 0 - ratings: 0 - author: "dooez" - repo: "https://github.com/Dooez/catppuccin-monokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=dooez.catppuccin-monokai-vsc" -colors: - bg: "#1E1E2E" - fg: "#CDD6F4" - black: "#6C7086" - red: "#F38BA8" - green: "#A6E3A1" - yellow: "#F9E2AF" - blue: "#89B4FA" - magenta: "#F5C2E7" - cyan: "#89DCEB" - white: "#9399B2" - brightBlack: "#7F849C" - brightRed: "#F38BA8" - brightGreen: "#A6E3A1" - brightYellow: "#F9E2AF" - brightBlue: "#89B4FA" - brightMagenta: "#F5C2E7" - brightCyan: "#89DCEB" - brightWhite: "#CDD6F4" -meta: - mode: "dark" - accent: "red" - hue: 284 - pair: null - contrast: - fg: 80 - black: 25.8 - red: 54.7 - green: 78.3 - yellow: 88.4 - blue: 59.1 - magenta: 76.7 - cyan: 75.6 - white: 45.5 - brightBlack: 35.1 - brightRed: 54.7 - brightGreen: 78.3 - brightYellow: 88.4 - brightBlue: 59.1 - brightMagenta: 76.7 - brightCyan: 75.6 - brightWhite: 80 diff --git a/themes/catthode.yaml b/themes/catthode.yaml index e4475cab..f7580d76 100644 --- a/themes/catthode.yaml +++ b/themes/catthode.yaml @@ -8,6 +8,7 @@ source: author: "Catthode" repo: "https://github.com/catthode/vscode" url: "https://marketplace.visualstudio.com/items?itemName=Catthode.catthode" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/ccat.yaml b/themes/ccat.yaml deleted file mode 100644 index 2101bf6a..00000000 --- a/themes/ccat.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ccat" -source: - marketplace_id: "lvchencheng.theme-ckai" - version: "1.3.0" - installs: 91 - rating: 0 - ratings: 0 - author: "lvchencheng" - repo: "https://gitee.com/lu-chencheng/ckai" - url: "https://marketplace.visualstudio.com/items?itemName=lvchencheng.theme-ckai" -colors: - bg: "#1E1E2E" - fg: "#CDD6F4" - black: "#A6ADC8" - red: "#F38BA8" - green: "#A6E3A1" - yellow: "#F9E2AF" - blue: "#89B4FA" - magenta: "#F5C2E7" - cyan: "#89DCEB" - white: "#BAC2DE" - brightBlack: "#585B70" - brightRed: "#F38BA8" - brightGreen: "#A6E3A1" - brightYellow: "#F9E2AF" - brightBlue: "#89B4FA" - brightMagenta: "#F5C2E7" - brightCyan: "#89DCEB" - brightWhite: "#45475A" -meta: - mode: "dark" - accent: "red" - hue: 284 - pair: null - contrast: - fg: 80 - black: 56.2 - red: 54.7 - green: 78.3 - yellow: 88.4 - blue: 59.1 - magenta: 76.7 - cyan: 75.6 - white: 68.1 - brightBlack: 16.9 - brightRed: 54.7 - brightGreen: 78.3 - brightYellow: 88.4 - brightBlue: 59.1 - brightMagenta: 76.7 - brightCyan: 75.6 - brightWhite: 9.3 diff --git a/themes/cebola-theme.yaml b/themes/cebola-theme.yaml index 1c5b3846..06442065 100644 --- a/themes/cebola-theme.yaml +++ b/themes/cebola-theme.yaml @@ -8,6 +8,7 @@ source: author: "thomasluizon" repo: "https://github.com/thomasluizon/cebola-theme" url: "https://marketplace.visualstudio.com/items?itemName=thomasluizon.thomasluizon" + formats: null colors: bg: "#10161B" fg: "#D4D4D4" diff --git a/themes/celadon-theme.yaml b/themes/celadon-theme.yaml index 6425e385..3c364940 100644 --- a/themes/celadon-theme.yaml +++ b/themes/celadon-theme.yaml @@ -1,13 +1,14 @@ name: "Celadon Theme" source: marketplace_id: "alif-naufal.celadon-theme" - version: "0.0.11" - installs: 7 + version: "0.0.12" + installs: 8 rating: 0 ratings: 0 author: "Alif Naufal" repo: "https://github.com/alif898/celadon-theme" url: "https://marketplace.visualstudio.com/items?itemName=alif-naufal.celadon-theme" + formats: null colors: bg: "#1B2222" fg: "#CEDDDD" diff --git a/themes/celestial-charm-theme.yaml b/themes/celestial-charm-theme.yaml deleted file mode 100644 index 38357ab8..00000000 --- a/themes/celestial-charm-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "celestial-charm-theme" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - rating: 5 - ratings: 3 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#281016" - fg: "#FFA2B8" - black: "#502832" - red: "#A45A74" - green: "#B39987" - yellow: "#A47F7C" - blue: "#AD5F74" - magenta: "#D78594" - cyan: "#B39487" - white: "#CA988E" - brightBlack: "#703A47" - brightRed: "#A45A74" - brightGreen: "#B39987" - brightYellow: "#A47F7C" - brightBlue: "#AD5F74" - brightMagenta: "#D78594" - brightCyan: "#B39487" - brightWhite: "#D2738A" -meta: - mode: "dark" - accent: "red" - hue: 5 - pair: null - contrast: - fg: 65.6 - black: 0 - red: 26.9 - green: 48.6 - yellow: 37.4 - blue: 29.5 - magenta: 47.9 - cyan: 46.8 - white: 51.7 - brightBlack: 11.2 - brightRed: 26.9 - brightGreen: 48.6 - brightYellow: 37.4 - brightBlue: 29.5 - brightMagenta: 47.9 - brightCyan: 46.8 - brightWhite: 41.7 diff --git a/themes/celestial.yaml b/themes/celestial.yaml deleted file mode 100644 index 1e1da2d6..00000000 --- a/themes/celestial.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Celestial" -source: - marketplace_id: "Letsmoe.celestial-themes" - version: "0.0.2" - installs: 193 - rating: 0 - ratings: 0 - author: "Letsmoe" - repo: "https://github.com/Letsmoe/celestial-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Letsmoe.celestial-themes" -colors: - bg: "#F7F7FF" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 101.6 - black: 101.6 - red: 69.6 - green: 44.8 - yellow: 53.5 - blue: 81.6 - magenta: 70.1 - cyan: 56.2 - white: 81.5 - brightBlack: 74.3 - brightRed: 69.6 - brightGreen: 36.5 - brightYellow: 36.5 - brightBlue: 81.6 - brightMagenta: 70.1 - brightCyan: 56.2 - brightWhite: 44 diff --git a/themes/ceramic-space.yaml b/themes/ceramic-space.yaml index 82393c48..57531ab6 100644 --- a/themes/ceramic-space.yaml +++ b/themes/ceramic-space.yaml @@ -8,6 +8,7 @@ source: author: "tiredkangaroo" repo: "https://github.com/tiredkangaroo/ceramic-space" url: "https://marketplace.visualstudio.com/items?itemName=tiredkangaroo.ceramic-space-vscode-theme" + formats: null colors: bg: "#282B36" fg: "#FFFADF" diff --git a/themes/cerydra.yaml b/themes/cerydra.yaml index 1833ea98..632bc271 100644 --- a/themes/cerydra.yaml +++ b/themes/cerydra.yaml @@ -1,11 +1,14 @@ -name: "cerydra" +name: "Cerydra" source: marketplace_id: "Michii.cerydra" version: "1.0.0" installs: 59 + rating: 0 + ratings: 0 author: "Michii" repo: "https://github.com/hi-doki/cerydra" url: "https://marketplace.visualstudio.com/items?itemName=Michii.cerydra" + formats: null colors: bg: "#090D10" fg: "#F5FBFF" diff --git a/themes/cfl-one.yaml b/themes/cfl-one.yaml index 04d86a89..e626f577 100644 --- a/themes/cfl-one.yaml +++ b/themes/cfl-one.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "YamasInvitation.Colorful-One" version: "0.2.3" installs: 237 + rating: 0 + ratings: 0 author: "YamasInvitation" repo: "https://github.com/trapsixteen/cfl-one" url: "https://marketplace.visualstudio.com/items?itemName=YamasInvitation.Colorful-One" + formats: null colors: bg: "#1D1D1D" fg: "#CFCFCF" diff --git a/themes/cha-thai.yaml b/themes/cha-thai.yaml index 2445df2d..af485ef5 100644 --- a/themes/cha-thai.yaml +++ b/themes/cha-thai.yaml @@ -8,6 +8,7 @@ source: author: "pargorn.ru" repo: "https://github.com/xNewz/cha-thai" url: "https://marketplace.visualstudio.com/items?itemName=pargornru.cha-thai" + formats: null colors: bg: "#F9EFE5" fg: "#5A2A00" diff --git a/themes/chai-light.yaml b/themes/chai-light.yaml deleted file mode 100644 index d581f31f..00000000 --- a/themes/chai-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Chai Light" -source: - marketplace_id: "vs-code-theme.FantasyTheme" - version: "0.1.4" - installs: 565 - rating: 0 - ratings: 0 - author: "PradeepSahu" - repo: "https://github.com/PradeepSahhu/vscode-theme-blue" - url: "https://marketplace.visualstudio.com/items?itemName=vs-code-theme.FantasyTheme" -colors: - bg: "#F7F7F7" - fg: "#383A42" - black: "#373A41" - red: "#D52652" - green: "#239749" - yellow: "#DF621B" - blue: "#275FE4" - magenta: "#823EF0" - cyan: "#26608C" - white: "#B9BAC1" - brightBlack: "#676A77" - brightRed: "#FF637F" - brightGreen: "#3CBC66" - brightYellow: "#C5A231" - brightBlue: "#0099E0" - brightMagenta: "#CE32C0" - brightCyan: "#6D92BA" - brightWhite: "#D3D3D3" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 91.4 - black: 91.5 - red: 67.8 - green: 59.8 - yellow: 57.6 - blue: 71.8 - magenta: 71.1 - cyan: 78 - white: 32.3 - brightBlack: 72 - brightRed: 49.1 - brightGreen: 43 - brightYellow: 43.2 - brightBlue: 53.3 - brightMagenta: 63.9 - brightCyan: 54.9 - brightWhite: 18.5 diff --git a/themes/chainroot.yaml b/themes/chainroot.yaml index bdb43a23..ec597eab 100644 --- a/themes/chainroot.yaml +++ b/themes/chainroot.yaml @@ -8,6 +8,7 @@ source: author: "Aref Eghbali" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ArefEghbali.chainroot-theme" + formats: null colors: bg: "#0D111C" fg: "#D4D4D4" diff --git a/themes/chalk.yaml b/themes/chalk.yaml deleted file mode 100644 index f0eea02e..00000000 --- a/themes/chalk.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Chalk" -source: - marketplace_id: "emmakrause.chalk" - version: "1.0.0" - installs: 3044 - rating: 5 - ratings: 2 - author: "Emma Krause" - repo: "https://github.com/emkrause14/chalk-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=emmakrause.chalk" -colors: - bg: "#3B3B3B" - fg: "#DDDCDC" - black: "#787878" - red: "#F9A1A0" - green: "#B7DAB9" - yellow: "#FEDB8F" - blue: "#8BBADC" - magenta: "#DEBDDD" - cyan: "#88DBDC" - white: "#DDDCDC" - brightBlack: "#787878" - brightRed: "#F9A1A0" - brightGreen: "#B7DAB9" - brightYellow: "#FEDB8F" - brightBlue: "#8BBADC" - brightMagenta: "#DEBDDD" - brightCyan: "#88DBDC" - brightWhite: "#DDDCDC" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 77.3 - black: 22.8 - red: 56.3 - green: 70.5 - yellow: 79.1 - blue: 53.8 - magenta: 64.6 - cyan: 68.2 - white: 77.3 - brightBlack: 22.8 - brightRed: 56.3 - brightGreen: 70.5 - brightYellow: 79.1 - brightBlue: 53.8 - brightMagenta: 64.6 - brightCyan: 68.2 - brightWhite: 77.3 diff --git a/themes/chalkish.yaml b/themes/chalkish.yaml index cdcc8572..b25fdd44 100644 --- a/themes/chalkish.yaml +++ b/themes/chalkish.yaml @@ -1,11 +1,14 @@ -name: "Chalkish" +name: "chalkish" source: marketplace_id: "mikonunez.chalkish" version: "0.0.4" installs: 192 + rating: 0 + ratings: 0 author: "Miko Nuñez" repo: "https://github.com/mikonunyez/chalkish-vscode" url: "https://marketplace.visualstudio.com/items?itemName=mikonunez.chalkish" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/charcoal.yaml b/themes/charcoal.yaml index 84b67cc6..030360e8 100644 --- a/themes/charcoal.yaml +++ b/themes/charcoal.yaml @@ -2,12 +2,13 @@ name: "Charcoal" source: marketplace_id: "tobiasalthoff.charcoal" version: "1.0.4" - installs: 1134 + installs: 1135 rating: 5 ratings: 1 author: "Tobias Althoff" repo: "https://github.com/tobiasalthoff/vscode-charcoal-theme" url: "https://marketplace.visualstudio.com/items?itemName=tobiasalthoff.charcoal" + formats: null colors: bg: "#262B30" fg: "#BCD1E4" diff --git a/themes/charli-health-dark.yaml b/themes/charli-health-dark.yaml index 6c46c081..3f2ca20d 100644 --- a/themes/charli-health-dark.yaml +++ b/themes/charli-health-dark.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.charli-health-theme" + formats: null colors: bg: "#1E1A24" fg: "#F0E8E0" diff --git a/themes/charli-health-light.yaml b/themes/charli-health-light.yaml index fda07288..120cad79 100644 --- a/themes/charli-health-light.yaml +++ b/themes/charli-health-light.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.charli-health-theme" + formats: null colors: bg: "#FFF6ED" fg: "#58595B" diff --git a/themes/charmed-dark.yaml b/themes/charmed-dark.yaml index 238f8227..0a3cecfc 100644 --- a/themes/charmed-dark.yaml +++ b/themes/charmed-dark.yaml @@ -8,6 +8,7 @@ source: author: "Mikhail Kirsanov" repo: "https://github.com/m-kirsanov/charmed-dark-vscode" url: "https://marketplace.visualstudio.com/items?itemName=mikhail-kirsanov.charmed-dark" + formats: null colors: bg: "#11151D" fg: "#F0EFB7" diff --git a/themes/cheese-n-all.yaml b/themes/cheese-n-all.yaml deleted file mode 100644 index 5c3a082e..00000000 --- a/themes/cheese-n-all.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "cheese n all" -source: - marketplace_id: "Jejunum.8008" - version: "0.0.1" - installs: 991 - rating: 0 - ratings: 0 - author: "Jejunum" - repo: "https://github.com/Nathan-Hu-2/8008-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Jejunum.8008" -colors: - bg: "#1D222A" - fg: "#939EAE" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#FFFFFF" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFB2B2" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#67FF8A" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 260 - pair: null - contrast: - fg: 46.9 - black: 0 - red: 25.3 - green: 51.6 - yellow: 105.5 - blue: 26.1 - magenta: 28.4 - cyan: 46.2 - white: 69.7 - brightBlack: 20.7 - brightRed: 37.2 - brightGreen: 87.3 - brightYellow: 94.3 - brightBlue: 38.6 - brightMagenta: 44 - brightCyan: 54 - brightWhite: 88.6 diff --git a/themes/cheesewaffle-blue.yaml b/themes/cheesewaffle-blue.yaml index 6b271b46..089b838f 100644 --- a/themes/cheesewaffle-blue.yaml +++ b/themes/cheesewaffle-blue.yaml @@ -8,6 +8,7 @@ source: author: "Cheesewaffle" repo: "https://github.com/aldenluthfi/cheesecolortheme" url: "https://marketplace.visualstudio.com/items?itemName=Cheesewaffle.cheesewaffle-color-theme" + formats: null colors: bg: "#18181B" fg: "#FAFAFA" diff --git a/themes/cheetha-green.yaml b/themes/cheetha-green.yaml deleted file mode 100644 index 397bfaca..00000000 --- a/themes/cheetha-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cheetha Green" -source: - marketplace_id: "CheethaCoder.cheethatheme" - version: "0.0.1" - installs: 39 - rating: 0 - ratings: 0 - author: "Cheetha Coder" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=CheethaCoder.cheethatheme" -colors: - bg: "#000000" - fg: "#EA3434" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 34.6 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/chelsea-pride-away.yaml b/themes/chelsea-pride-away.yaml index ecc5e3ab..9ab2040a 100644 --- a/themes/chelsea-pride-away.yaml +++ b/themes/chelsea-pride-away.yaml @@ -8,6 +8,7 @@ source: author: "noobster" repo: "https://github.com/ballack96/chelsea-pride-theme" url: "https://marketplace.visualstudio.com/items?itemName=ranojoy.chelsea-pride-theme" + formats: null colors: bg: "#F7F9FC" fg: "#1D1D1F" diff --git a/themes/chelsea-pride.yaml b/themes/chelsea-pride.yaml index 8db0cae5..d8685af8 100644 --- a/themes/chelsea-pride.yaml +++ b/themes/chelsea-pride.yaml @@ -8,6 +8,7 @@ source: author: "noobster" repo: "https://github.com/ballack96/chelsea-pride-theme" url: "https://marketplace.visualstudio.com/items?itemName=ranojoy.chelsea-pride-theme" + formats: null colors: bg: "#0A0B3B" fg: "#FFFFFF" diff --git a/themes/cherry-blossom-airy.yaml b/themes/cherry-blossom-airy.yaml deleted file mode 100644 index 6ec82e19..00000000 --- a/themes/cherry-blossom-airy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Airy" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#FFFFFF" - fg: "#5C5C5C" - black: "#5C5C5C" - red: "#FFB7C5" - green: "#A2D8A2" - yellow: "#FFD6A2" - blue: "#A2C8FF" - magenta: "#FFC8D6" - cyan: "#A2D8D8" - white: "#EDEDED" - brightBlack: "#A3A3A3" - brightRed: "#FADADD" - brightGreen: "#D6FFD6" - brightYellow: "#FFE4B7" - brightBlue: "#D6E4FF" - brightMagenta: "#FFE4E6" - brightCyan: "#D6FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 83 - black: 83 - red: 28.2 - green: 28.1 - yellow: 17.8 - blue: 30.8 - magenta: 21.4 - cyan: 26.1 - white: 8.2 - brightBlack: 49.5 - brightRed: 14.9 - brightGreen: 0 - brightYellow: 11.5 - brightBlue: 13.9 - brightMagenta: 9.8 - brightCyan: 0 - brightWhite: 0 diff --git a/themes/cherry-blossom-breeze.yaml b/themes/cherry-blossom-breeze.yaml deleted file mode 100644 index 76882911..00000000 --- a/themes/cherry-blossom-breeze.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Breeze" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#1A2030" - fg: "#EFF1F5" - black: "#1D2438" - red: "#E296AF" - green: "#A8D0E3" - yellow: "#F0D1A3" - blue: "#92B2E5" - magenta: "#C79FD0" - cyan: "#86C4D2" - white: "#D9E0F0" - brightBlack: "#536180" - brightRed: "#EAA8BF" - brightGreen: "#BADCED" - brightYellow: "#F6DEBC" - brightBlue: "#A4BFED" - brightMagenta: "#D5B2DA" - brightCyan: "#A2D5E0" - brightWhite: "#EFF1F5" -meta: - mode: "dark" - accent: "red" - hue: 268 - pair: null - contrast: - fg: 96.4 - black: 0 - red: 55.1 - green: 72.3 - yellow: 79.2 - blue: 57.6 - magenta: 55.5 - cyan: 63.2 - white: 85.5 - brightBlack: 18.8 - brightRed: 63.2 - brightGreen: 80 - brightYellow: 86.5 - brightBlue: 65.1 - brightMagenta: 64.9 - brightCyan: 73.8 - brightWhite: 96.4 diff --git a/themes/cherry-blossom-dark-reflection.yaml b/themes/cherry-blossom-dark-reflection.yaml deleted file mode 100644 index c28e2324..00000000 --- a/themes/cherry-blossom-dark-reflection.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Dark Reflection" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#151820" - fg: "#E8E9F0" - black: "#171B24" - red: "#F9BECA" - green: "#A8D6E2" - yellow: "#F8D3A7" - blue: "#7AACD6" - magenta: "#D8A8C8" - cyan: "#91C7D9" - white: "#D8DCE9" - brightBlack: "#596377" - brightRed: "#FACFD8" - brightGreen: "#C5E3EB" - brightYellow: "#F9DFC2" - brightBlue: "#A3C6E5" - brightMagenta: "#E5C6DB" - brightCyan: "#B4D7E4" - brightWhite: "#E8E9F0" -meta: - mode: "dark" - accent: "indigo" - hue: 269 - pair: null - contrast: - fg: 92.6 - black: 0 - red: 75.4 - green: 76 - yellow: 82.4 - blue: 53.4 - magenta: 61.8 - cyan: 66.8 - white: 84.4 - brightBlack: 20.5 - brightRed: 82.9 - brightGreen: 85.3 - brightYellow: 88.7 - brightBlue: 68.6 - brightMagenta: 76.2 - brightCyan: 77.7 - brightWhite: 92.6 diff --git a/themes/cherry-blossom-dark-vivid.yaml b/themes/cherry-blossom-dark-vivid.yaml deleted file mode 100644 index 96fb0ab0..00000000 --- a/themes/cherry-blossom-dark-vivid.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Dark Vivid" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#1D1E26" - fg: "#D9D9D9" - black: "#2A2B34" - red: "#FDA4BA" - green: "#9CDBA8" - yellow: "#F5D6A0" - blue: "#7EB0E8" - magenta: "#D592BC" - cyan: "#78B3CD" - white: "#D9D9D9" - brightBlack: "#373740" - brightRed: "#FDB9CA" - brightGreen: "#B7E7C0" - brightYellow: "#F9E3BD" - brightBlue: "#A2C5EF" - brightMagenta: "#E3B1D0" - brightCyan: "#9CCADF" - brightWhite: "#F2F2F2" -meta: - mode: "dark" - accent: "red" - hue: 280 - pair: null - contrast: - fg: 81.6 - black: 0 - red: 65.3 - green: 74 - yellow: 82.3 - blue: 55.6 - magenta: 52.5 - cyan: 54.9 - white: 81.6 - brightBlack: 0 - brightRed: 73.4 - brightGreen: 83.1 - brightYellow: 89.5 - brightBlue: 67.8 - brightMagenta: 66.4 - brightCyan: 68.6 - brightWhite: 97.4 diff --git a/themes/cherry-blossom-dark.yaml b/themes/cherry-blossom-dark.yaml deleted file mode 100644 index 48578bc2..00000000 --- a/themes/cherry-blossom-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Dark" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#1A1A1E" - fg: "#F2F2F7" - black: "#1D1D22" - red: "#F8B2CC" - green: "#8ED9A9" - yellow: "#FFD87D" - blue: "#7EB5E7" - magenta: "#D297D6" - cyan: "#7CE2E1" - white: "#E8E8EF" - brightBlack: "#5C5C66" - brightRed: "#FAC2D8" - brightGreen: "#A5E6BD" - brightYellow: "#FFE49F" - brightBlue: "#9DC6ED" - brightMagenta: "#E0B1E0" - brightCyan: "#9FEDED" - brightWhite: "#F2F2F7" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 98.2 - black: 0 - red: 70.6 - green: 72.5 - yellow: 84.4 - blue: 58.1 - magenta: 55.5 - cyan: 77.8 - white: 91.9 - brightBlack: 17.8 - brightRed: 77.5 - brightGreen: 81.3 - brightYellow: 90.4 - brightBlue: 68.2 - brightMagenta: 67.3 - brightCyan: 86.2 - brightWhite: 98.2 diff --git a/themes/cherry-blossom-dimmed-dusk.yaml b/themes/cherry-blossom-dimmed-dusk.yaml deleted file mode 100644 index 91e135ba..00000000 --- a/themes/cherry-blossom-dimmed-dusk.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Dimmed Dusk" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#141414" - fg: "#C6CAC9" - black: "#1A1A1A" - red: "#A34242" - green: "#4F9E64" - yellow: "#C4B483" - blue: "#4A8399" - magenta: "#9A5085" - cyan: "#36575E" - white: "#C6CAC9" - brightBlack: "#404040" - brightRed: "#C24A4A" - brightGreen: "#5FBE78" - brightYellow: "#D9C999" - brightBlue: "#5CA5C0" - brightMagenta: "#B266A1" - brightCyan: "#9ED4E0" - brightWhite: "#D9E3F4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 73.2 - black: 0 - red: 21.1 - green: 41.1 - yellow: 61.4 - blue: 32.1 - magenta: 24.2 - cyan: 14.3 - white: 73.2 - brightBlack: 7.7 - brightRed: 28.4 - brightGreen: 56.2 - brightYellow: 73.6 - brightBlue: 47.9 - brightMagenta: 34.3 - brightCyan: 74.4 - brightWhite: 88.5 diff --git a/themes/cherry-blossom-dimmed.yaml b/themes/cherry-blossom-dimmed.yaml deleted file mode 100644 index 85bc97c9..00000000 --- a/themes/cherry-blossom-dimmed.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Dimmed" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#0D0D0D" - fg: "#F2F0F2" - black: "#1F1F1F" - red: "#D96A7E" - green: "#7DAD89" - yellow: "#BF8563" - blue: "#7DA6A6" - magenta: "#B07DA6" - cyan: "#7DA6A6" - white: "#F2F0F2" - brightBlack: "#735448" - brightRed: "#F24B88" - brightGreen: "#8FD19E" - brightYellow: "#F2A999" - brightBlue: "#8EBDC5" - brightMagenta: "#C88CBD" - brightCyan: "#8EBDC5" - brightWhite: "#F2F0F2" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 98.2 - black: 0 - red: 41.2 - green: 51.6 - yellow: 43.5 - blue: 49.8 - magenta: 41 - cyan: 49.8 - white: 98.2 - brightBlack: 18.3 - brightRed: 40.9 - brightGreen: 69.6 - brightYellow: 65.5 - brightBlue: 62.1 - brightMagenta: 50.2 - brightCyan: 62.1 - brightWhite: 98.2 diff --git a/themes/cherry-blossom-night-harmony.yaml b/themes/cherry-blossom-night-harmony.yaml deleted file mode 100644 index 07452e2f..00000000 --- a/themes/cherry-blossom-night-harmony.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Night Harmony" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#16172E" - fg: "#F8FAFF" - black: "#1A1B34" - red: "#E06796" - green: "#5DA68C" - yellow: "#D4964C" - blue: "#4A88C7" - magenta: "#C0579D" - cyan: "#4BA7BE" - white: "#DBE6F7" - brightBlack: "#5D6A85" - brightRed: "#E87CA6" - brightGreen: "#7FCEA8" - brightYellow: "#E6B575" - brightBlue: "#78A8DB" - brightMagenta: "#D07EB3" - brightCyan: "#6CBFD2" - brightWhite: "#F8FAFF" -meta: - mode: "dark" - accent: "red" - hue: 280 - pair: null - contrast: - fg: 103.2 - black: 0 - red: 41.7 - green: 45.7 - yellow: 51.1 - blue: 35.8 - magenta: 32.5 - cyan: 47.3 - white: 89.8 - brightBlack: 23.4 - brightRed: 49.1 - brightGreen: 66.3 - brightYellow: 66 - brightBlue: 51.8 - brightMagenta: 45.9 - brightCyan: 60.1 - brightWhite: 103.2 diff --git a/themes/cherry-blossom-night.yaml b/themes/cherry-blossom-night.yaml deleted file mode 100644 index 5c4e6d5a..00000000 --- a/themes/cherry-blossom-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Night" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#18182E" - fg: "#FFFFFF" - black: "#1E1E36" - red: "#FF9FB2" - green: "#FFD9C0" - yellow: "#FFD0D0" - blue: "#A7CAEC" - magenta: "#D7A5BC" - cyan: "#B8E6FF" - white: "#FFFFFF" - brightBlack: "#433F4D" - brightRed: "#FFB5C5" - brightGreen: "#FFE4D0" - brightYellow: "#FFE0E0" - brightBlue: "#C0DBFF" - brightMagenta: "#EBBDD0" - brightCyan: "#CEEEFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 282 - pair: null - contrast: - fg: 106.5 - black: 0 - red: 64.2 - green: 86.7 - yellow: 83.5 - blue: 70.8 - magenta: 59.8 - cyan: 86.1 - white: 106.5 - brightBlack: 7.4 - brightRed: 72.6 - brightGreen: 92 - brightYellow: 90.9 - brightBlue: 81.9 - brightMagenta: 72.7 - brightCyan: 92.2 - brightWhite: 106.5 diff --git a/themes/cherry-blossom-osaka-light.yaml b/themes/cherry-blossom-osaka-light.yaml deleted file mode 100644 index 82ab858b..00000000 --- a/themes/cherry-blossom-osaka-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Osaka Light" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#FAF8F5" - fg: "#5C5248" - black: "#3B342E" - red: "#C75B45" - green: "#7A8C51" - yellow: "#D68C45" - blue: "#4F7E91" - magenta: "#A66887" - cyan: "#5C9199" - white: "#9E948A" - brightBlack: "#6B6158" - brightRed: "#DA6C55" - brightGreen: "#8FA663" - brightYellow: "#E89E5A" - brightBlue: "#6596AA" - brightMagenta: "#BF80A1" - brightCyan: "#73ABB5" - brightWhite: "#D4CEC5" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82.4 - black: 93.9 - red: 64.2 - green: 60.3 - yellow: 48.5 - blue: 66.7 - magenta: 65.1 - cyan: 58.6 - white: 52.3 - brightBlack: 76.1 - brightRed: 56.4 - brightGreen: 48.1 - brightYellow: 39.4 - brightBlue: 55.5 - brightMagenta: 53.5 - brightCyan: 45.9 - brightWhite: 21.7 diff --git a/themes/cherry-blossom-osaka.yaml b/themes/cherry-blossom-osaka.yaml deleted file mode 100644 index f1f76c66..00000000 --- a/themes/cherry-blossom-osaka.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Osaka" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#1C2025" - fg: "#CED4DA" - black: "#16191D" - red: "#D98C71" - green: "#8ABF94" - yellow: "#E0C068" - blue: "#7DA3C4" - magenta: "#CEB195" - cyan: "#7DA3C4" - white: "#ADB5BD" - brightBlack: "#495057" - brightRed: "#EEBCB0" - brightGreen: "#A8D5B1" - brightYellow: "#EAD496" - brightBlue: "#9EC3E0" - brightMagenta: "#E6CCB2" - brightCyan: "#9EC3E0" - brightWhite: "#CED4DA" -meta: - mode: "dark" - accent: "yellow" - hue: 254 - pair: null - contrast: - fg: 77.9 - black: 0 - red: 48.5 - green: 59 - yellow: 68.4 - blue: 48.2 - magenta: 60.8 - cyan: 48.2 - white: 59.7 - brightBlack: 11.8 - brightRed: 70.9 - brightGreen: 72.5 - brightYellow: 79.3 - brightBlue: 65.6 - brightMagenta: 76.2 - brightCyan: 65.6 - brightWhite: 77.9 diff --git a/themes/cherry-blossom-sky-vibrant.yaml b/themes/cherry-blossom-sky-vibrant.yaml deleted file mode 100644 index d841102e..00000000 --- a/themes/cherry-blossom-sky-vibrant.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Sky Vibrant" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#F5F9FF" - fg: "#192536" - black: "#192536" - red: "#E06796" - green: "#5DA68C" - yellow: "#D4964C" - blue: "#4A88C7" - magenta: "#C0579D" - cyan: "#4BA7BE" - white: "#F5F9FF" - brightBlack: "#8CA2BC" - brightRed: "#E87CA6" - brightGreen: "#7FCEA8" - brightYellow: "#E6B575" - brightBlue: "#78A8DB" - brightMagenta: "#D07EB3" - brightCyan: "#6CBFD2" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 98.5 - black: 98.5 - red: 54.9 - green: 51 - yellow: 45.8 - blue: 60.8 - magenta: 64 - cyan: 49.4 - white: 0 - brightBlack: 47.3 - brightRed: 47.7 - brightGreen: 31.1 - brightYellow: 31.4 - brightBlue: 45 - brightMagenta: 50.8 - brightCyan: 37 - brightWhite: 0 diff --git a/themes/cherry-blossom-spring.yaml b/themes/cherry-blossom-spring.yaml deleted file mode 100644 index cfe32c2a..00000000 --- a/themes/cherry-blossom-spring.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Spring" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#F0F5FA" - fg: "#2D3748" - black: "#1A202C" - red: "#FC8181" - green: "#68D391" - yellow: "#F6AD55" - blue: "#63B3ED" - magenta: "#D53F8C" - cyan: "#4FD1C5" - white: "#CBD5E0" - brightBlack: "#4A5568" - brightRed: "#F56565" - brightGreen: "#48BB78" - brightYellow: "#ED8936" - brightBlue: "#4299E1" - brightMagenta: "#B83280" - brightCyan: "#38B2AC" - brightWhite: "#E2E8F0" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 91.1 - black: 96.9 - red: 41.2 - green: 28.4 - yellow: 29.7 - blue: 38.4 - magenta: 62 - cyan: 28.5 - white: 16.5 - brightBlack: 79.8 - brightRed: 49.9 - brightGreen: 41.1 - brightYellow: 43.2 - brightBlue: 50.7 - brightMagenta: 70 - brightCyan: 43.8 - brightWhite: 0 diff --git a/themes/cherry-blossom-twilight.yaml b/themes/cherry-blossom-twilight.yaml deleted file mode 100644 index b22fe2bb..00000000 --- a/themes/cherry-blossom-twilight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Twilight" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#232026" - fg: "#F0E6EF" - black: "#201D23" - red: "#DF88A7" - green: "#84BD8B" - yellow: "#EDBE80" - blue: "#8992D4" - magenta: "#C87D9D" - cyan: "#8CCBED" - white: "#E0D6E0" - brightBlack: "#6E636E" - brightRed: "#E7A4BA" - brightGreen: "#A2D1A7" - brightYellow: "#EDCEA1" - brightBlue: "#A5ACE5" - brightMagenta: "#D898B4" - brightCyan: "#A3D5F3" - brightWhite: "#F0E6EF" -meta: - mode: "dark" - accent: "red" - hue: 308 - pair: null - contrast: - fg: 91.2 - black: 0 - red: 49.8 - green: 57.1 - yellow: 69.9 - blue: 43.6 - magenta: 42.3 - cyan: 68 - white: 81.2 - brightBlack: 20.9 - brightRed: 61 - brightGreen: 69.5 - brightYellow: 77.3 - brightBlue: 57 - brightMagenta: 54.2 - brightCyan: 74.8 - brightWhite: 91.2 diff --git a/themes/cherry-blossom-warm.yaml b/themes/cherry-blossom-warm.yaml deleted file mode 100644 index c11f33f7..00000000 --- a/themes/cherry-blossom-warm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Blossom Warm" -source: - marketplace_id: "daitsuku.cherry-blossom-vscode-theme" - version: "1.2.1" - installs: 2131 - rating: 0 - ratings: 0 - author: "daitsuku" - repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" -colors: - bg: "#FFF5F8" - fg: "#2A1F28" - black: "#2A1F28" - red: "#D95D92" - green: "#6BAD9A" - yellow: "#D9A95D" - blue: "#5D92D9" - magenta: "#B15D95" - cyan: "#5DB1D9" - white: "#FFF0F5" - brightBlack: "#AA8699" - brightRed: "#E678A5" - brightGreen: "#87C4B1" - brightYellow: "#EBBE7D" - brightBlue: "#7DABEB" - brightMagenta: "#CE7DAD" - brightCyan: "#7DCEEB" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 98.2 - black: 98.2 - red: 57.8 - green: 46.2 - yellow: 37.5 - blue: 54.4 - magenta: 65 - cyan: 42.5 - white: 0 - brightBlack: 54.5 - brightRed: 48.4 - brightGreen: 33.8 - brightYellow: 26.4 - brightBlue: 41.9 - brightMagenta: 51 - brightCyan: 27.7 - brightWhite: 0 diff --git a/themes/cherry-delite.yaml b/themes/cherry-delite.yaml index 0d6ad153..eb9cdfca 100644 --- a/themes/cherry-delite.yaml +++ b/themes/cherry-delite.yaml @@ -1,11 +1,14 @@ -name: "Cherry Delite" +name: "cherry-delite" source: marketplace_id: "pshr1.cherry-delite" version: "0.1.1" installs: 77 + rating: 0 + ratings: 0 author: "pshr1" repo: null url: "https://marketplace.visualstudio.com/items?itemName=pshr1.cherry-delite" + formats: null colors: bg: "#191919" fg: "#ADADAD" diff --git a/themes/cherry-midnight.yaml b/themes/cherry-midnight.yaml deleted file mode 100644 index 162b1b36..00000000 --- a/themes/cherry-midnight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry Midnight" -source: - marketplace_id: "nullxception.cherry-theme" - version: "0.2.7" - installs: 8307 - rating: 5 - ratings: 2 - author: "Nauval Rizky" - repo: "https://github.com/nullxception/cherry-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=nullxception.cherry-theme" -colors: - bg: "#101017" - fg: "#BDC3DF" - black: "#33333F" - red: "#FF568E" - green: "#64DE83" - yellow: "#EFFF73" - blue: "#73A9FF" - magenta: "#946FF7" - cyan: "#62C6DA" - white: "#DEDEEF" - brightBlack: "#43435A" - brightRed: "#FF69A2" - brightGreen: "#73DE8A" - brightYellow: "#F3FF85" - brightBlue: "#85B6FF" - brightMagenta: "#A481F7" - brightCyan: "#71C2D9" - brightWhite: "#EBEBF0" -meta: - mode: "dark" - accent: "red" - hue: 285 - pair: null - contrast: - fg: 70.5 - black: 0 - red: 45.5 - green: 72.1 - yellow: 100.8 - blue: 55 - magenta: 38.2 - cyan: 63.9 - white: 87 - brightBlack: 9.7 - brightRed: 49.9 - brightGreen: 73 - brightYellow: 101.6 - brightBlue: 61.5 - brightMagenta: 45.2 - brightCyan: 62.9 - brightWhite: 94.6 diff --git a/themes/cherry-wild-theme.yaml b/themes/cherry-wild-theme.yaml index 18dafedc..1e94a6c5 100644 --- a/themes/cherry-wild-theme.yaml +++ b/themes/cherry-wild-theme.yaml @@ -8,6 +8,8 @@ source: author: "yyynnn" repo: "https://github.com/yyynnn/cherry-wild-vscode" url: "https://marketplace.visualstudio.com/items?itemName=yyynnn.cherry-wild-theme" + formats: + sublime: "https://raw.githubusercontent.com/yyynnn/cherry-wild-vscode/master/themes/ref.tmTheme" colors: bg: "#2B1F32" fg: "#FFFFFF" diff --git a/themes/cherry.yaml b/themes/cherry.yaml deleted file mode 100644 index ccd54ee8..00000000 --- a/themes/cherry.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cherry" -source: - marketplace_id: "nullxception.cherry-theme" - version: "0.2.7" - installs: 8307 - rating: 5 - ratings: 2 - author: "Nauval Rizky" - repo: "https://github.com/nullxception/cherry-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=nullxception.cherry-theme" -colors: - bg: "#1F1F2A" - fg: "#BDC3DF" - black: "#43435A" - red: "#FF568E" - green: "#64DE83" - yellow: "#EFFF73" - blue: "#73A9FF" - magenta: "#946FF7" - cyan: "#62C6DA" - white: "#DEDEEF" - brightBlack: "#53536B" - brightRed: "#FF69A2" - brightGreen: "#73DE8A" - brightYellow: "#F3FF85" - brightBlue: "#85B6FF" - brightMagenta: "#A481F7" - brightCyan: "#71C2D9" - brightWhite: "#EBEBF0" -meta: - mode: "dark" - accent: "red" - hue: 285 - pair: null - contrast: - fg: 68.8 - black: 8.1 - red: 43.9 - green: 70.4 - yellow: 99.1 - blue: 53.3 - magenta: 36.6 - cyan: 62.3 - white: 85.3 - brightBlack: 14 - brightRed: 48.2 - brightGreen: 71.4 - brightYellow: 100 - brightBlue: 59.8 - brightMagenta: 43.5 - brightCyan: 61.3 - brightWhite: 93 diff --git a/themes/cherryblossom.yaml b/themes/cherryblossom.yaml deleted file mode 100644 index 81fcca7b..00000000 --- a/themes/cherryblossom.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "cherryBlossom" -source: - marketplace_id: "NaClara117.cherryblossom" - version: "0.0.1" - installs: 2234 - rating: 4 - ratings: 2 - author: "NaClara" - repo: "https://github.com/AnaXP/cherryBlossom" - url: "https://marketplace.visualstudio.com/items?itemName=NaClara117.cherryblossom" -colors: - bg: "#201708" - fg: "#F5E9D7" - black: "#000000" - red: "#FF0000" - green: "#5DFF00" - yellow: "#FFFF00" - blue: "#0034FF" - magenta: "#FF005C" - cyan: "#00FF93" - white: "#F7EEE2" - brightBlack: "#0D0902" - brightRed: "#FF5050" - brightGreen: "#95FF58" - brightYellow: "#FFFF59" - brightBlue: "#5899FF" - brightMagenta: "#FF3E83" - brightCyan: "#55FFAF" - brightWhite: "#F7EEE2" -meta: - mode: "dark" - accent: "purple" - hue: 79 - pair: null - contrast: - fg: 93.3 - black: 0 - red: 36.3 - green: 86.8 - yellow: 101.5 - blue: 17.9 - magenta: 37.1 - cyan: 86.8 - white: 96.3 - brightBlack: 0 - brightRed: 42.3 - brightGreen: 90.4 - brightYellow: 101.9 - brightBlue: 46.6 - brightMagenta: 41.1 - brightCyan: 88.8 - brightWhite: 96.3 diff --git a/themes/chiclete-de-uva-theme.yaml b/themes/chiclete-de-uva-theme.yaml index af5d5b62..1b952f23 100644 --- a/themes/chiclete-de-uva-theme.yaml +++ b/themes/chiclete-de-uva-theme.yaml @@ -8,6 +8,7 @@ source: author: "Bianca Pereira" repo: "https://github.com/BiancaPereira/chiclete-de-uva-theme" url: "https://marketplace.visualstudio.com/items?itemName=BiancaPereira.chiclete-de-uva-theme" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/chilaquiles-rojos-dark.yaml b/themes/chilaquiles-rojos-dark.yaml index 6c46cfce..37179966 100644 --- a/themes/chilaquiles-rojos-dark.yaml +++ b/themes/chilaquiles-rojos-dark.yaml @@ -8,6 +8,7 @@ source: author: "Arturo De la Garza Zertuche" repo: "https://github.com/agzertuche/chilaquiles-theme" url: "https://marketplace.visualstudio.com/items?itemName=agzertuche.chilaquiles-theme" + formats: null colors: bg: "#1A1008" fg: "#F5F1E8" diff --git a/themes/chilaquiles-rojos-light.yaml b/themes/chilaquiles-rojos-light.yaml index 779919ed..05c0c5ff 100644 --- a/themes/chilaquiles-rojos-light.yaml +++ b/themes/chilaquiles-rojos-light.yaml @@ -8,6 +8,7 @@ source: author: "Arturo De la Garza Zertuche" repo: "https://github.com/agzertuche/chilaquiles-theme" url: "https://marketplace.visualstudio.com/items?itemName=agzertuche.chilaquiles-theme" + formats: null colors: bg: "#FFFBF5" fg: "#2A1810" diff --git a/themes/chilaquiles-verdes-dark.yaml b/themes/chilaquiles-verdes-dark.yaml index 0cab2dbd..233cea19 100644 --- a/themes/chilaquiles-verdes-dark.yaml +++ b/themes/chilaquiles-verdes-dark.yaml @@ -8,6 +8,7 @@ source: author: "Arturo De la Garza Zertuche" repo: "https://github.com/agzertuche/chilaquiles-theme" url: "https://marketplace.visualstudio.com/items?itemName=agzertuche.chilaquiles-theme" + formats: null colors: bg: "#141614" fg: "#F5F1E8" diff --git a/themes/chilaquiles-verdes-light.yaml b/themes/chilaquiles-verdes-light.yaml index ebe6ea6a..0575c94b 100644 --- a/themes/chilaquiles-verdes-light.yaml +++ b/themes/chilaquiles-verdes-light.yaml @@ -8,6 +8,7 @@ source: author: "Arturo De la Garza Zertuche" repo: "https://github.com/agzertuche/chilaquiles-theme" url: "https://marketplace.visualstudio.com/items?itemName=agzertuche.chilaquiles-theme" + formats: null colors: bg: "#E8EDE8" fg: "#1C2A1C" diff --git a/themes/chill-night-mode.yaml b/themes/chill-night-mode.yaml index 43dd42e1..edf0a1f7 100644 --- a/themes/chill-night-mode.yaml +++ b/themes/chill-night-mode.yaml @@ -8,6 +8,7 @@ source: author: "Moth-Coder" repo: "https://github.com/M-Renberg/chill-night-mode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Moth-Coder.chillnightmode" + formats: null colors: bg: "#0F0E0F" fg: "#EE8D5E" diff --git a/themes/chillhack.yaml b/themes/chillhack.yaml index 13a6b6ac..032bde2a 100644 --- a/themes/chillhack.yaml +++ b/themes/chillhack.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "thadryanjs.chillhack" version: "0.0.2" installs: 98 + rating: 0 + ratings: 0 author: "thadryanjs" repo: "https://github.com/thadryanjs/chillhack" url: "https://marketplace.visualstudio.com/items?itemName=thadryanjs.chillhack" + formats: null colors: bg: "#0F0E0E" fg: "#74D7C9" diff --git a/themes/chinolor-light.yaml b/themes/chinolor-light.yaml deleted file mode 100644 index b7aa428c..00000000 --- a/themes/chinolor-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Chinolor Light" -source: - marketplace_id: "iwyvi.chinolor" - version: "0.2.19" - installs: 36140 - rating: 5 - ratings: 24 - author: "iwyvi" - repo: "https://github.com/iwyvi/chinolor" - url: "https://marketplace.visualstudio.com/items?itemName=iwyvi.chinolor" -colors: - bg: "#F8F4ED" - fg: "#2B312C" - black: "#000000" - red: "#EE3F4D" - green: "#96C24E" - yellow: "#F9D367" - blue: "#619AC3" - magenta: "#D276A3" - cyan: "#57C3C2" - white: "#E4DFD7" - brightBlack: "#2B312C" - brightRed: "#EE3F4D" - brightGreen: "#41AE3C" - brightYellow: "#B78D12" - brightBlue: "#619AC3" - brightMagenta: "#CC5595" - brightCyan: "#12AA9C" - brightWhite: "#F8F4ED" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 93.4 - black: 99.7 - red: 58.2 - green: 34 - yellow: 14.8 - blue: 50.7 - magenta: 50.8 - cyan: 34.6 - white: 9.8 - brightBlack: 93.4 - brightRed: 58.2 - brightGreen: 48 - brightYellow: 51.1 - brightBlue: 50.7 - brightMagenta: 60 - brightCyan: 48.3 - brightWhite: 0 diff --git a/themes/chinolor.yaml b/themes/chinolor.yaml deleted file mode 100644 index 0a6960ed..00000000 --- a/themes/chinolor.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Chinolor" -source: - marketplace_id: "iwyvi.chinolor" - version: "0.2.19" - installs: 36140 - rating: 5 - ratings: 24 - author: "iwyvi" - repo: "https://github.com/iwyvi/chinolor" - url: "https://marketplace.visualstudio.com/items?itemName=iwyvi.chinolor" -colors: - bg: "#2B312C" - fg: "#E4DFD7" - black: "#000000" - red: "#EE3F4D" - green: "#96C24E" - yellow: "#F9D367" - blue: "#619AC3" - magenta: "#D276A3" - cyan: "#57C3C2" - white: "#E4DFD7" - brightBlack: "#8A988E" - brightRed: "#EE3F4D" - brightGreen: "#41AE3C" - brightYellow: "#B78D12" - brightBlue: "#619AC3" - brightMagenta: "#CC5595" - brightCyan: "#12AA9C" - brightWhite: "#F8F4ED" -meta: - mode: "dark" - accent: "orange" - hue: 150 - pair: null - contrast: - fg: 82.6 - black: 0 - red: 32.1 - green: 56.9 - yellow: 77.2 - blue: 39.7 - magenta: 39.6 - cyan: 56.4 - white: 82.6 - brightBlack: 39.9 - brightRed: 32.1 - brightGreen: 42.5 - brightYellow: 39.3 - brightBlue: 39.7 - brightMagenta: 30.3 - brightCyan: 42.1 - brightWhite: 95.9 diff --git a/themes/chocolate-contrast.yaml b/themes/chocolate-contrast.yaml deleted file mode 100644 index e29456e1..00000000 --- a/themes/chocolate-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "chocolate-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#150F08" - fg: "#FFFFFF" - black: "#271C0F" - red: "#BA0E2E" - green: "#8B6E46" - yellow: "#CCB697" - blue: "#E2CDB0" - magenta: "#B99768" - cyan: "#8B6E46" - white: "#FFFFFF" - brightBlack: "#5F4424" - brightRed: "#F03E5F" - brightGreen: "#BCA17B" - brightYellow: "#EEE6DB" - brightBlue: "#FDFCFB" - brightMagenta: "#D9C7AE" - brightCyan: "#BCA17B" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 71 - pair: null - contrast: - fg: 107.4 - black: 0 - red: 21 - green: 28.3 - yellow: 64.2 - blue: 77.5 - magenta: 48.6 - cyan: 28.3 - white: 107.4 - brightBlack: 11.3 - brightRed: 37.3 - brightGreen: 53.1 - brightYellow: 91.8 - brightBlue: 105.5 - brightMagenta: 73.7 - brightCyan: 53.1 - brightWhite: 107.4 diff --git a/themes/chocolate-dessert-theme.yaml b/themes/chocolate-dessert-theme.yaml deleted file mode 100644 index e6dcb86e..00000000 --- a/themes/chocolate-dessert-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "chocolate-dessert-theme" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - rating: 5 - ratings: 3 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#1B1210" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 33 - pair: null - contrast: - fg: 79.7 - black: 0 - red: 27 - green: 53.2 - yellow: 85.9 - blue: 27.7 - magenta: 30 - cyan: 47.8 - white: 90.3 - brightBlack: 22.3 - brightRed: 38.8 - brightGreen: 63.8 - brightYellow: 95.9 - brightBlue: 40.2 - brightMagenta: 45.6 - brightCyan: 55.6 - brightWhite: 90.3 diff --git a/themes/chocolate-light.yaml b/themes/chocolate-light.yaml deleted file mode 100644 index a7190e03..00000000 --- a/themes/chocolate-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "chocolate-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#150F08" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#5B472C" - yellow: "#A08F76" - blue: "#B5A48D" - magenta: "#8E744F" - cyan: "#5B472C" - white: "#271C0F" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#A07D4D" - brightYellow: "#CAC0B2" - brightBlue: "#DDD5CB" - brightMagenta: "#BCA687" - brightCyan: "#A07D4D" - brightWhite: "#5F4424" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 105.4 - black: 0 - red: 80.3 - green: 90.1 - yellow: 58.5 - blue: 47.7 - magenta: 70.5 - cyan: 90.1 - white: 103.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 65.4 - brightYellow: 33.3 - brightBlue: 21.6 - brightMagenta: 46.3 - brightCyan: 65.4 - brightWhite: 90.5 diff --git a/themes/chocolate.yaml b/themes/chocolate.yaml deleted file mode 100644 index b40857d5..00000000 --- a/themes/chocolate.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "chocolate" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#261B0E" - fg: "#FFFFFF" - black: "#392815" - red: "#BA0E2E" - green: "#8B6E46" - yellow: "#CCB697" - blue: "#E2CDB0" - magenta: "#B99768" - cyan: "#8B6E46" - white: "#FFFFFF" - brightBlack: "#715029" - brightRed: "#F03E5F" - brightGreen: "#BCA17B" - brightYellow: "#EEE6DB" - brightBlue: "#FDFCFB" - brightMagenta: "#D9C7AE" - brightCyan: "#BCA17B" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 70 - pair: null - contrast: - fg: 106.1 - black: 0 - red: 19.8 - green: 27 - yellow: 62.9 - blue: 76.3 - magenta: 47.3 - cyan: 27 - white: 106.1 - brightBlack: 15.1 - brightRed: 36.1 - brightGreen: 51.8 - brightYellow: 90.5 - brightBlue: 104.2 - brightMagenta: 72.4 - brightCyan: 51.8 - brightWhite: 106.1 diff --git a/themes/chpastel-dark.yaml b/themes/chpastel-dark.yaml index 5599183e..48fba750 100644 --- a/themes/chpastel-dark.yaml +++ b/themes/chpastel-dark.yaml @@ -8,6 +8,7 @@ source: author: "Jakub Gawlik" repo: "https://github.com/caasi-dev/chpastel-vscode" url: "https://marketplace.visualstudio.com/items?itemName=JakubGawlik.chpastel-vscode" + formats: null colors: bg: "#0F1C1F" fg: "#898576" diff --git a/themes/chpastel-light.yaml b/themes/chpastel-light.yaml index 7c1cbbcb..37ced421 100644 --- a/themes/chpastel-light.yaml +++ b/themes/chpastel-light.yaml @@ -8,6 +8,7 @@ source: author: "Jakub Gawlik" repo: "https://github.com/caasi-dev/chpastel-vscode" url: "https://marketplace.visualstudio.com/items?itemName=JakubGawlik.chpastel-vscode" + formats: null colors: bg: "#EEE8D5" fg: "#898576" diff --git a/themes/chpastel.yaml b/themes/chpastel.yaml index 4e8e11b1..b8b8cd46 100644 --- a/themes/chpastel.yaml +++ b/themes/chpastel.yaml @@ -8,6 +8,7 @@ source: author: "Jakub Gawlik" repo: "https://github.com/caasi-dev/chpastel-vscode" url: "https://marketplace.visualstudio.com/items?itemName=caasi.chpastel-vscode" + formats: null colors: bg: "#E3E3E4" fg: "#A2A2A2" diff --git a/themes/chris-light.yaml b/themes/chris-light.yaml index 747dc2e3..fb2602e6 100644 --- a/themes/chris-light.yaml +++ b/themes/chris-light.yaml @@ -8,6 +8,7 @@ source: author: "ckkark-color" repo: "https://github.com/ckark/color-theme" url: "https://marketplace.visualstudio.com/items?itemName=ckkark-color.ckkark-dark-theme" + formats: null colors: bg: "#FFFFFF" fg: "#1C1C1C" diff --git a/themes/chriscoding.yaml b/themes/chriscoding.yaml index b6757a96..84a6e0eb 100644 --- a/themes/chriscoding.yaml +++ b/themes/chriscoding.yaml @@ -8,6 +8,7 @@ source: author: "ChrisK" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ChrisK.chriscoding" + formats: null colors: bg: "#07101B" fg: "#D4D4D4" diff --git a/themes/christmas.yaml b/themes/christmas.yaml index 0d2c42ef..866871c3 100644 --- a/themes/christmas.yaml +++ b/themes/christmas.yaml @@ -8,6 +8,7 @@ source: author: "csesztii" repo: "https://github.com/csesztii/white-christmas-theme" url: "https://marketplace.visualstudio.com/items?itemName=csesztii.white-christmas-theme" + formats: null colors: bg: "#FFFFFF" fg: "#73716E" diff --git a/themes/chromahin-amoled.yaml b/themes/chromahin-amoled.yaml deleted file mode 100644 index dd6a9a18..00000000 --- a/themes/chromahin-amoled.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CHROMAHIN AMOLED" -source: - marketplace_id: "mahin-ltd.chromahin" - version: "1.0.0" - installs: 52 - rating: 5 - ratings: 1 - author: "Mahin Ltd" - repo: "https://github.com/mahinltd/chromahin" - url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" -colors: - bg: "#000000" - fg: "#E8F1FF" - black: "#02070D" - red: "#FF4F73" - green: "#33D876" - yellow: "#F0C54A" - blue: "#3F77F0" - magenta: "#8B7CFF" - cyan: "#16D5EE" - white: "#E8F1FF" - brightBlack: "#172030" - brightRed: "#FF6A8A" - brightGreen: "#53E38A" - brightYellow: "#F5D562" - brightBlue: "#5C8FF3" - brightMagenta: "#A897FF" - brightCyan: "#3BE9F7" - brightWhite: "#F9FBFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 98.2 - black: 0 - red: 44.1 - green: 67.7 - yellow: 74.6 - blue: 33.9 - magenta: 42 - cyan: 70.4 - white: 98.2 - brightBlack: 0 - brightRed: 49.7 - brightGreen: 74.5 - brightYellow: 82.4 - brightBlue: 43.5 - brightMagenta: 53.7 - brightCyan: 81.1 - brightWhite: 105.1 diff --git a/themes/chromahin-dark.yaml b/themes/chromahin-dark.yaml deleted file mode 100644 index bd88f2bd..00000000 --- a/themes/chromahin-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CHROMAHIN Dark" -source: - marketplace_id: "mahin-ltd.chromahin" - version: "1.0.0" - installs: 52 - rating: 5 - ratings: 1 - author: "Mahin Ltd" - repo: "https://github.com/mahinltd/chromahin" - url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" -colors: - bg: "#0C111B" - fg: "#E3ECFF" - black: "#0C111B" - red: "#FF5C7A" - green: "#46D879" - yellow: "#F2C744" - blue: "#4F7DF3" - magenta: "#8B7CFF" - cyan: "#22D3EE" - white: "#E3ECFF" - brightBlack: "#1E2636" - brightRed: "#FF7B92" - brightGreen: "#63E28F" - brightYellow: "#F6D563" - brightBlue: "#6C95F6" - brightMagenta: "#A897FF" - brightCyan: "#46E5F7" - brightWhite: "#F7FAFF" -meta: - mode: "dark" - accent: "red" - hue: 264 - pair: null - contrast: - fg: 94.7 - black: 0 - red: 45.9 - green: 67.7 - yellow: 75.1 - blue: 36.2 - magenta: 41.4 - cyan: 69.1 - white: 94.7 - brightBlack: 0 - brightRed: 53.4 - brightGreen: 74.3 - brightYellow: 82 - brightBlue: 46.3 - brightMagenta: 53.2 - brightCyan: 78.9 - brightWhite: 103.9 diff --git a/themes/chromahin-multi-color.yaml b/themes/chromahin-multi-color.yaml deleted file mode 100644 index 72251293..00000000 --- a/themes/chromahin-multi-color.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CHROMAHIN Multi-color" -source: - marketplace_id: "mahin-ltd.chromahin" - version: "1.0.0" - installs: 52 - rating: 5 - ratings: 1 - author: "Mahin Ltd" - repo: "https://github.com/mahinltd/chromahin" - url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" -colors: - bg: "#0D1220" - fg: "#E4EEFF" - black: "#0D1220" - red: "#FF6F98" - green: "#47D988" - yellow: "#F3C955" - blue: "#5B7CFF" - magenta: "#B985FF" - cyan: "#45E0FF" - white: "#E4EEFF" - brightBlack: "#1E273A" - brightRed: "#FF8BAF" - brightGreen: "#64E79B" - brightYellow: "#F7D86F" - brightBlue: "#7690FF" - brightMagenta: "#C9A3FF" - brightCyan: "#62EAFF" - brightWhite: "#F7FAFF" -meta: - mode: "dark" - accent: "purple" - hue: 268 - pair: null - contrast: - fg: 95.6 - black: 0 - red: 50.7 - green: 68.5 - yellow: 76.2 - blue: 37.4 - magenta: 49.6 - cyan: 76.8 - white: 95.6 - brightBlack: 0 - brightRed: 58.7 - brightGreen: 77 - brightYellow: 83.6 - brightBlue: 45.8 - brightMagenta: 61.5 - brightCyan: 82.6 - brightWhite: 103.8 diff --git a/themes/chromahin-soft.yaml b/themes/chromahin-soft.yaml deleted file mode 100644 index 1fa991a3..00000000 --- a/themes/chromahin-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CHROMAHIN Soft" -source: - marketplace_id: "mahin-ltd.chromahin" - version: "1.0.0" - installs: 52 - rating: 5 - ratings: 1 - author: "Mahin Ltd" - repo: "https://github.com/mahinltd/chromahin" - url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" -colors: - bg: "#111724" - fg: "#E7EFFB" - black: "#111724" - red: "#F8748F" - green: "#50C98A" - yellow: "#EFC36D" - blue: "#5F86E8" - magenta: "#9F8DFF" - cyan: "#54CCE6" - white: "#E7EFFB" - brightBlack: "#1E2A3B" - brightRed: "#FF8FA5" - brightGreen: "#69DAA2" - brightYellow: "#F3D488" - brightBlue: "#779AF0" - brightMagenta: "#B5A6FF" - brightCyan: "#6CDDF1" - brightWhite: "#F7FAFF" -meta: - mode: "dark" - accent: "red" - hue: 265 - pair: null - contrast: - fg: 95.9 - black: 0 - red: 49.6 - green: 60.8 - yellow: 73 - blue: 38.7 - magenta: 48.3 - cyan: 66.1 - white: 95.9 - brightBlack: 0 - brightRed: 59.1 - brightGreen: 70.7 - brightYellow: 81.3 - brightBlue: 48 - brightMagenta: 59.5 - brightCyan: 75.7 - brightWhite: 103.4 diff --git a/themes/chromatic-dark.yaml b/themes/chromatic-dark.yaml index 76476d0a..c735896e 100644 --- a/themes/chromatic-dark.yaml +++ b/themes/chromatic-dark.yaml @@ -8,6 +8,7 @@ source: author: "cakeray" repo: "https://github.com/cakeray/chromatic" url: "https://marketplace.visualstudio.com/items?itemName=chromatictheme.chromatic" + formats: null colors: bg: "#0F0F0F" fg: "#8A8A8A" diff --git a/themes/chromatic-light.yaml b/themes/chromatic-light.yaml index 926b1187..417af673 100644 --- a/themes/chromatic-light.yaml +++ b/themes/chromatic-light.yaml @@ -8,6 +8,7 @@ source: author: "cakeray" repo: "https://github.com/cakeray/chromatic" url: "https://marketplace.visualstudio.com/items?itemName=chromatictheme.chromatic" + formats: null colors: bg: "#F7F1E6" fg: "#121212" diff --git a/themes/chrome-devtools.yaml b/themes/chrome-devtools.yaml index 54854a0c..1946ccb5 100644 --- a/themes/chrome-devtools.yaml +++ b/themes/chrome-devtools.yaml @@ -8,6 +8,7 @@ source: author: "nicmeriano" repo: "https://github.com/nicmeriano/chrome-devtools-theme" url: "https://marketplace.visualstudio.com/items?itemName=nicmeriano.chrome-devtools-theme-dark" + formats: null colors: bg: "#202124" fg: "#BFC6CE" diff --git a/themes/chrome-green.yaml b/themes/chrome-green.yaml deleted file mode 100644 index c6782248..00000000 --- a/themes/chrome-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "chrome-green" -source: - marketplace_id: "Suntechnic.green-papper" - version: "0.4.1" - installs: 1082 - rating: 0 - ratings: 0 - author: "Александр Маджугин" - repo: "https://github.com/Suntechnic/green-papper" - url: "https://marketplace.visualstudio.com/items?itemName=Suntechnic.green-papper" -colors: - bg: "#F8FBF1" - fg: "#222222" - black: "#000000" - red: "#F51818" - green: "#43B244" - yellow: "#F2AE49" - blue: "#E4ECDC" - magenta: "#A37ACC" - cyan: "#207F4C" - white: "#6C7880" - brightBlack: "#6C7680" - brightRed: "#F07171" - brightGreen: "#86B300" - brightYellow: "#FF9940" - brightBlue: "#55B4D4" - brightMagenta: "#FE76FF" - brightCyan: "#39CBCC" - brightWhite: "#000000" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99.7 - black: 102.8 - red: 63.1 - green: 49.3 - yellow: 33.4 - blue: 0 - magenta: 58 - cyan: 71 - white: 68.3 - brightBlack: 68.9 - brightRed: 51.2 - brightGreen: 45.3 - brightYellow: 38.1 - brightBlue: 43.3 - brightMagenta: 40.9 - brightCyan: 34.7 - brightWhite: 102.8 diff --git a/themes/chromodusk-classic.yaml b/themes/chromodusk-classic.yaml index 370e36d8..1e1b66b5 100644 --- a/themes/chromodusk-classic.yaml +++ b/themes/chromodusk-classic.yaml @@ -8,6 +8,7 @@ source: author: "pluumenbrownie" repo: "https://github.com/pluumenbrownie/Chromodusk-Classic-V4" url: "https://marketplace.visualstudio.com/items?itemName=pluumenbrownie.chromodynamics-v4" + formats: null colors: bg: "#000205" fg: "#C6C6C6" diff --git a/themes/chronica-pink.yaml b/themes/chronica-pink.yaml index b4d0b97e..2bc9f55a 100644 --- a/themes/chronica-pink.yaml +++ b/themes/chronica-pink.yaml @@ -8,6 +8,7 @@ source: author: "Finn Schwarz" repo: "https://github.com/fnschwarz/vscode-chronica-theme" url: "https://marketplace.visualstudio.com/items?itemName=finn-schwarz.chronica-theme" + formats: null colors: bg: "#1B0915" fg: "#EEEEEE" diff --git a/themes/chronokai.yaml b/themes/chronokai.yaml index 01bc4910..b6f3d54a 100644 --- a/themes/chronokai.yaml +++ b/themes/chronokai.yaml @@ -8,6 +8,7 @@ source: author: "Chris Newland" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ChrisNewland.chronokai" + formats: null colors: bg: "#2D2A2E" fg: "#FCFCFA" diff --git a/themes/cielo.yaml b/themes/cielo.yaml index c315936c..6966b15d 100644 --- a/themes/cielo.yaml +++ b/themes/cielo.yaml @@ -8,6 +8,7 @@ source: author: "Peter Ahlgren" repo: "https://github.com/ahlgren1234/cielo-theme" url: "https://marketplace.visualstudio.com/items?itemName=PeterAhlgren.cielo-theme" + formats: null colors: bg: "#1E2337" fg: "#E2F0FF" diff --git a/themes/cinnamon.yaml b/themes/cinnamon.yaml index 9f86531d..6637b13a 100644 --- a/themes/cinnamon.yaml +++ b/themes/cinnamon.yaml @@ -2,12 +2,13 @@ name: "Cinnamon" source: marketplace_id: "imran.cinnamon" version: "0.4.0" - installs: 714 + installs: 715 rating: 5 ratings: 1 author: "imran" repo: "https://github.com/strongSoda/cinnamon-vscode" url: "https://marketplace.visualstudio.com/items?itemName=imran.cinnamon" + formats: null colors: bg: "#272A3F" fg: "#A9BAEF" diff --git a/themes/cinnamonroll.yaml b/themes/cinnamonroll.yaml deleted file mode 100644 index a7b858bb..00000000 --- a/themes/cinnamonroll.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cinnamonroll" -source: - marketplace_id: "dango.cinnamonroll-theme" - version: "1.0.3" - installs: 1201 - rating: 5 - ratings: 1 - author: "Daniel Radosa" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=dango.cinnamonroll-theme" -colors: - bg: "#FFFFFF" - fg: "#999999" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 54.6 - black: 106 - red: 74 - green: 49.2 - yellow: 57.9 - blue: 86.1 - magenta: 74.6 - cyan: 60.6 - white: 85.9 - brightBlack: 78.8 - brightRed: 74 - brightGreen: 40.9 - brightYellow: 40.9 - brightBlue: 86.1 - brightMagenta: 74.6 - brightCyan: 60.6 - brightWhite: 48.5 diff --git a/themes/citric-secret.yaml b/themes/citric-secret.yaml index 05948b88..699727fe 100644 --- a/themes/citric-secret.yaml +++ b/themes/citric-secret.yaml @@ -8,6 +8,7 @@ source: author: "Shayan-Chakraborty" repo: "https://github.com/shayan-chakraborty/citric-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Shayan-Chakraborty.citric-secret-theme" + formats: null colors: bg: "#000000" fg: "#EEEEEE" diff --git a/themes/city-fog.yaml b/themes/city-fog.yaml index caa8c7be..fe6a6a76 100644 --- a/themes/city-fog.yaml +++ b/themes/city-fog.yaml @@ -8,6 +8,7 @@ source: author: "Metalloriff" repo: "https://github.com/Metalloriff/city-fog-dawn-vscode" url: "https://marketplace.visualstudio.com/items?itemName=metalloriff.city-fog-dawn" + formats: null colors: bg: "#D8E1E9" fg: "#2C3945" diff --git a/themes/ckai-color-theme.yaml b/themes/ckai-color-theme.yaml index e3497abe..8aae0de1 100644 --- a/themes/ckai-color-theme.yaml +++ b/themes/ckai-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "lvchencheng" repo: "https://gitee.com/lu-chencheng/ckai" url: "https://marketplace.visualstudio.com/items?itemName=lvchencheng.theme-ckai" + formats: null colors: bg: "#292929" fg: "#F8F8F2" diff --git a/themes/clairvoyance-theme-alt.yaml b/themes/clairvoyance-theme-alt.yaml index 5350c8ce..3167a0a2 100644 --- a/themes/clairvoyance-theme-alt.yaml +++ b/themes/clairvoyance-theme-alt.yaml @@ -8,6 +8,7 @@ source: author: "dnlcorona" repo: "https://github.com/dnlcorona/clairvoyance-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=dnlcorona.clairvoyance-theme" + formats: null colors: bg: "#050815" fg: "#B4B4B4" diff --git a/themes/clairvoyance-theme-grape.yaml b/themes/clairvoyance-theme-grape.yaml index ca7cbe13..5fae0b70 100644 --- a/themes/clairvoyance-theme-grape.yaml +++ b/themes/clairvoyance-theme-grape.yaml @@ -8,6 +8,7 @@ source: author: "dnlcorona" repo: "https://github.com/dnlcorona/clairvoyance-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=dnlcorona.clairvoyance-theme" + formats: null colors: bg: "#050815" fg: "#CAAFF0" diff --git a/themes/clairvoyance-theme-pinkish.yaml b/themes/clairvoyance-theme-pinkish.yaml index 3a462f5e..fa7cff87 100644 --- a/themes/clairvoyance-theme-pinkish.yaml +++ b/themes/clairvoyance-theme-pinkish.yaml @@ -8,6 +8,7 @@ source: author: "dnlcorona" repo: "https://github.com/dnlcorona/clairvoyance-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=dnlcorona.clairvoyance-theme" + formats: null colors: bg: "#050815" fg: "#C0C0C0" diff --git a/themes/clairvoyance-theme.yaml b/themes/clairvoyance-theme.yaml index 94575297..f697277d 100644 --- a/themes/clairvoyance-theme.yaml +++ b/themes/clairvoyance-theme.yaml @@ -8,6 +8,7 @@ source: author: "dnlcorona" repo: "https://github.com/dnlcorona/clairvoyance-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=dnlcorona.clairvoyance-theme" + formats: null colors: bg: "#050815" fg: "#D4D4D4" diff --git a/themes/clarity-design-system-dark.yaml b/themes/clarity-design-system-dark.yaml index 10768185..a4b53f26 100644 --- a/themes/clarity-design-system-dark.yaml +++ b/themes/clarity-design-system-dark.yaml @@ -8,6 +8,7 @@ source: author: "BBogdanov" repo: "https://github.com/bbogdanov/cds-code-themes" url: "https://marketplace.visualstudio.com/items?itemName=BBogdanov.cds-color-theme" + formats: null colors: bg: "#0F1218" fg: "#EAEDF0" diff --git a/themes/clarity-design-system-light.yaml b/themes/clarity-design-system-light.yaml index 32db2b46..48b1a688 100644 --- a/themes/clarity-design-system-light.yaml +++ b/themes/clarity-design-system-light.yaml @@ -8,6 +8,7 @@ source: author: "BBogdanov" repo: "https://github.com/bbogdanov/cds-code-themes" url: "https://marketplace.visualstudio.com/items?itemName=BBogdanov.cds-color-theme" + formats: null colors: bg: "#FAFAFA" fg: "#333333" diff --git a/themes/claro.yaml b/themes/claro.yaml index cc88be69..eecbde46 100644 --- a/themes/claro.yaml +++ b/themes/claro.yaml @@ -8,6 +8,7 @@ source: author: "Josafá Marengo" repo: "https://github.com/josafamarengo/VSCode-Foco-Theme" url: "https://marketplace.visualstudio.com/items?itemName=JosafaMarengo.foco" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/classic-essential-colors-blue.yaml b/themes/classic-essential-colors-blue.yaml deleted file mode 100644 index 957880fb..00000000 --- a/themes/classic-essential-colors-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Classic Essential Colors (Blue)" -source: - marketplace_id: "balsa.vscode-theme-classic-essential-colors-blue" - version: "1.2.2" - installs: 395 - rating: 0 - ratings: 0 - author: "balsa" - repo: "https://github.com/makesomesparks/vscode-theme-classic-essential-colors-blue" - url: "https://marketplace.visualstudio.com/items?itemName=balsa.vscode-theme-classic-essential-colors-blue" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#FF0000" - green: "#008A1C" - yellow: "#F8FF00" - blue: "#0000FF" - magenta: "#BC05BC" - cyan: "#00CDFF" - white: "#A7A7A7" - brightBlack: "#474747" - brightRed: "#FF4141" - brightGreen: "#00FF34" - brightYellow: "#FCFF95" - brightBlue: "#4040FF" - brightMagenta: "#BC05BC" - brightCyan: "#64E0FF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 106 - black: 106 - red: 64.1 - green: 70.6 - yellow: 0 - blue: 85.8 - magenta: 74.6 - cyan: 34.9 - white: 47.4 - brightBlack: 91.5 - brightRed: 60.5 - brightGreen: 17 - brightYellow: 0 - brightBlue: 79.6 - brightMagenta: 74.6 - brightCyan: 24.6 - brightWhite: 0 diff --git a/themes/classic-terminal.yaml b/themes/classic-terminal.yaml index 7f10397d..59bf88c0 100644 --- a/themes/classic-terminal.yaml +++ b/themes/classic-terminal.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/inspiration_themevsc" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" + formats: null colors: bg: "#212121" fg: "#008800" diff --git a/themes/claude-code-dark-high-contrast.yaml b/themes/claude-code-dark-high-contrast.yaml deleted file mode 100644 index a31dd698..00000000 --- a/themes/claude-code-dark-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Claude Code Dark High Contrast" -source: - marketplace_id: "ashwingopalsamy.claude-code-theme" - version: "1.2.2" - installs: 913 - rating: 5 - ratings: 2 - author: "Ashwin Gopalsamy" - repo: "https://github.com/ashwingopalsamy/claude-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" -colors: - bg: "#11100F" - fg: "#F5F2E9" - black: "#151311" - red: "#F09884" - green: "#B6E0A5" - yellow: "#F2D98F" - blue: "#8CC4FF" - magenta: "#C9BCFF" - cyan: "#B2D8FF" - white: "#E0DBD0" - brightBlack: "#6B665F" - brightRed: "#FFB4A4" - brightGreen: "#B6E0A5" - brightYellow: "#F2D98F" - brightBlue: "#BED0ED" - brightMagenta: "#DCC6FF" - brightCyan: "#C5EAFF" - brightWhite: "#F5F2E9" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Claude Code Light High Contrast" - contrast: - fg: 98.9 - black: 0 - red: 58.6 - green: 80.2 - yellow: 84.1 - blue: 67.9 - magenta: 70.9 - cyan: 80.1 - white: 84.5 - brightBlack: 22.9 - brightRed: 71.9 - brightGreen: 80.2 - brightYellow: 84.1 - brightBlue: 76.8 - brightMagenta: 77.4 - brightCyan: 90.3 - brightWhite: 98.9 diff --git a/themes/claude-code-dark.yaml b/themes/claude-code-dark.yaml deleted file mode 100644 index 9c3de6b0..00000000 --- a/themes/claude-code-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Claude Code Dark" -source: - marketplace_id: "ashwingopalsamy.claude-code-theme" - version: "1.2.2" - installs: 913 - rating: 5 - ratings: 2 - author: "Ashwin Gopalsamy" - repo: "https://github.com/ashwingopalsamy/claude-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" -colors: - bg: "#141413" - fg: "#EAE7DF" - black: "#1A1917" - red: "#D47563" - green: "#9ACA86" - yellow: "#E8C96B" - blue: "#61AAF2" - magenta: "#9B87F5" - cyan: "#8CC4FF" - white: "#D9D5CC" - brightBlack: "#6B665F" - brightRed: "#F09884" - brightGreen: "#B6E0A5" - brightYellow: "#F2D98F" - brightBlue: "#A2D2FF" - brightMagenta: "#C9BCFF" - brightCyan: "#BDE0FF" - brightWhite: "#F5F2E9" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: "Claude Code Light" - contrast: - fg: 91.6 - black: 0 - red: 41.9 - green: 66.2 - yellow: 74.7 - blue: 53.1 - magenta: 45.5 - cyan: 67.6 - white: 80.5 - brightBlack: 22.6 - brightRed: 58.3 - brightGreen: 79.9 - brightYellow: 83.8 - brightBlue: 75.6 - brightMagenta: 70.6 - brightCyan: 84.5 - brightWhite: 98.6 diff --git a/themes/claude-code-light-high-contrast.yaml b/themes/claude-code-light-high-contrast.yaml deleted file mode 100644 index fbd08c57..00000000 --- a/themes/claude-code-light-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Claude Code Light High Contrast" -source: - marketplace_id: "ashwingopalsamy.claude-code-theme" - version: "1.2.2" - installs: 913 - rating: 5 - ratings: 2 - author: "Ashwin Gopalsamy" - repo: "https://github.com/ashwingopalsamy/claude-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" -colors: - bg: "#F6F3EA" - fg: "#141413" - black: "#141413" - red: "#8F3C2D" - green: "#286945" - yellow: "#775618" - blue: "#1B6EBF" - magenta: "#5B4DB4" - cyan: "#27598F" - white: "#6B665F" - brightBlack: "#8D877D" - brightRed: "#A44E3A" - brightGreen: "#437954" - brightYellow: "#826326" - brightBlue: "#4B7098" - brightMagenta: "#5D538F" - brightCyan: "#3F738C" - brightWhite: "#4A473F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Claude Code Dark High Contrast" - contrast: - fg: 97.9 - black: 97.9 - red: 77.8 - green: 75.1 - yellow: 75.8 - blue: 68.2 - magenta: 75.3 - cyan: 77.6 - white: 71.3 - brightBlack: 56.1 - brightRed: 70.5 - brightGreen: 68 - brightYellow: 70.6 - brightBlue: 68.3 - brightMagenta: 76.1 - brightCyan: 68.5 - brightWhite: 84.3 diff --git a/themes/claude-code-light.yaml b/themes/claude-code-light.yaml deleted file mode 100644 index cce2e3a4..00000000 --- a/themes/claude-code-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Claude Code Light" -source: - marketplace_id: "ashwingopalsamy.claude-code-theme" - version: "1.2.2" - installs: 913 - rating: 5 - ratings: 2 - author: "Ashwin Gopalsamy" - repo: "https://github.com/ashwingopalsamy/claude-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" -colors: - bg: "#FAF9F5" - fg: "#1A1917" - black: "#1A1917" - red: "#A84B3A" - green: "#2E7C4C" - yellow: "#8A6220" - blue: "#207FDE" - magenta: "#6A5BCC" - cyan: "#2E5F99" - white: "#746E64" - brightBlack: "#8D877D" - brightRed: "#C45F4A" - brightGreen: "#5E8F6D" - brightYellow: "#9C7A39" - brightBlue: "#4F79A8" - brightMagenta: "#6D5DBD" - brightCyan: "#45809E" - brightWhite: "#4A473F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Claude Code Dark" - contrast: - fg: 100.8 - black: 100.8 - red: 73.9 - green: 71.4 - yellow: 73.4 - blue: 63.8 - magenta: 72.3 - cyan: 78.5 - white: 71.3 - brightBlack: 59.6 - brightRed: 64.3 - brightGreen: 61.2 - brightYellow: 63.5 - brightBlue: 67.7 - brightMagenta: 72.6 - brightCyan: 66.3 - brightWhite: 87.8 diff --git a/themes/claude-dark-anthropic.yaml b/themes/claude-dark-anthropic.yaml deleted file mode 100644 index d20de22c..00000000 --- a/themes/claude-dark-anthropic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Claude Dark (Anthropic)" -source: - marketplace_id: "duca.claude-anthropic-theme" - version: "1.0.0" - installs: 39 - rating: 0 - ratings: 0 - author: "duca" - repo: "https://github.com/igorfelipeduca/claude-theme" - url: "https://marketplace.visualstudio.com/items?itemName=duca.claude-anthropic-theme" -colors: - bg: "#262624" - fg: "#E8E4DC" - black: "#262624" - red: "#F28B82" - green: "#7EC699" - yellow: "#E8C47C" - blue: "#7CACE8" - magenta: "#C49BE8" - cyan: "#7CE8D4" - white: "#E8E4DC" - brightBlack: "#4A4A48" - brightRed: "#F4A58A" - brightGreen: "#A3D9B1" - brightYellow: "#F0D8A0" - brightBlue: "#A3C8F0" - brightMagenta: "#D4B8F0" - brightCyan: "#A3F0E0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 87.5 - black: 0 - red: 52.2 - green: 60.3 - yellow: 70.6 - blue: 52.7 - magenta: 54.1 - cyan: 78.4 - white: 87.5 - brightBlack: 8.9 - brightRed: 61.2 - brightGreen: 72.9 - brightYellow: 81.2 - brightBlue: 68.1 - brightMagenta: 67.3 - brightCyan: 85.7 - brightWhite: 104.8 diff --git a/themes/claude-dark-high-contrast.yaml b/themes/claude-dark-high-contrast.yaml deleted file mode 100644 index edb27bf0..00000000 --- a/themes/claude-dark-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Claude Dark High Contrast" -source: - marketplace_id: "AlvinUnreal.claude-vscode-theme" - version: "1.2.0" - installs: 2148 - rating: 5 - ratings: 1 - author: "Alvin Unreal" - repo: "https://github.com/alvinunreal/awesome-claude" - url: "https://marketplace.visualstudio.com/items?itemName=AlvinUnreal.claude-vscode-theme" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#0D0D0D" - red: "#FF8A8A" - green: "#8FE99F" - yellow: "#FFE066" - blue: "#82C7FF" - magenta: "#C49BFF" - cyan: "#66E8FF" - white: "#B8B8B8" - brightBlack: "#5A5A5A" - brightRed: "#FFAAAA" - brightGreen: "#AAFFBB" - brightYellow: "#FFF099" - brightBlue: "#AADDFF" - brightMagenta: "#DDBBFF" - brightCyan: "#99FFFF" - brightWhite: "#F0F0F0" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 57.8 - green: 81.3 - yellow: 88.8 - blue: 68.9 - magenta: 58.7 - cyan: 82.5 - white: 64 - brightBlack: 18.1 - brightRed: 69 - brightGreen: 95.4 - brightYellow: 97.1 - brightBlue: 82 - brightMagenta: 73.7 - brightCyan: 96.9 - brightWhite: 98.1 diff --git a/themes/claude-dark-italic.yaml b/themes/claude-dark-italic.yaml deleted file mode 100644 index 9845c71d..00000000 --- a/themes/claude-dark-italic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Claude Dark Italic" -source: - marketplace_id: "AlvinUnreal.claude-vscode-theme" - version: "1.2.0" - installs: 2148 - rating: 5 - ratings: 1 - author: "Alvin Unreal" - repo: "https://github.com/alvinunreal/awesome-claude" - url: "https://marketplace.visualstudio.com/items?itemName=AlvinUnreal.claude-vscode-theme" -colors: - bg: "#141414" - fg: "#E4E4E4" - black: "#1E1E1E" - red: "#F87171" - green: "#7BD88F" - yellow: "#FCD34D" - blue: "#6CABF7" - magenta: "#B68BF7" - cyan: "#4DD4E8" - white: "#9C9893" - brightBlack: "#6A6A6A" - brightRed: "#FFA8A8" - brightGreen: "#9FFFAF" - brightYellow: "#FFED7D" - brightBlue: "#92D5FF" - brightMagenta: "#D6BBFF" - brightCyan: "#7DFFFF" - brightWhite: "#D4D4D4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.7 - black: 0 - red: 48.4 - green: 70.5 - yellow: 81.6 - blue: 54.5 - magenta: 50.3 - cyan: 69.9 - white: 46.2 - brightBlack: 24 - brightRed: 67.5 - brightGreen: 93.4 - brightYellow: 94.4 - brightBlue: 75.5 - brightMagenta: 72 - brightCyan: 94.4 - brightWhite: 79.8 diff --git a/themes/claude-dark.yaml b/themes/claude-dark.yaml deleted file mode 100644 index 2ab644e1..00000000 --- a/themes/claude-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Claude Dark" -source: - marketplace_id: "SamiHindi.claude-theme-sami-hindi" - version: "0.0.1" - installs: 1293 - rating: 0 - ratings: 0 - author: "Sami Hindi" - repo: "https://github.com/FujiwaraChoki/claude-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SamiHindi.claude-theme-sami-hindi" -colors: - bg: "#262624" - fg: "#C2C0B6" - black: "#000000" - red: "#EF4444" - green: "#22C55E" - yellow: "#EAB308" - blue: "#3B82F6" - magenta: "#A855F7" - cyan: "#06B6D4" - white: "#F8FAFC" - brightBlack: "#525252" - brightRed: "#F87171" - brightGreen: "#4ADE80" - brightYellow: "#FACC15" - brightBlue: "#60A5FA" - brightMagenta: "#C084FC" - brightCyan: "#22D3EE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: "Claude Light" - contrast: - fg: 65.4 - black: 0 - red: 34.8 - green: 54.7 - yellow: 63 - blue: 34.7 - magenta: 32.3 - cyan: 51.8 - white: 101.3 - brightBlack: 11.9 - brightRed: 46 - brightGreen: 68.4 - brightYellow: 75.7 - brightBlue: 49.3 - brightMagenta: 47.6 - brightCyan: 66.5 - brightWhite: 104.8 diff --git a/themes/claude-light.yaml b/themes/claude-light.yaml deleted file mode 100644 index 56ff87d3..00000000 --- a/themes/claude-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Claude Light" -source: - marketplace_id: "SamiHindi.claude-theme-sami-hindi" - version: "0.0.1" - installs: 1293 - rating: 0 - ratings: 0 - author: "Sami Hindi" - repo: "https://github.com/FujiwaraChoki/claude-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SamiHindi.claude-theme-sami-hindi" -colors: - bg: "#FFFFFF" - fg: "#B85A3E" - black: "#1E293B" - red: "#EF4444" - green: "#22C55E" - yellow: "#EAB308" - blue: "#3B82F6" - magenta: "#A855F7" - cyan: "#06B6D4" - white: "#F8FAFC" - brightBlack: "#64748B" - brightRed: "#F87171" - brightGreen: "#4ADE80" - brightYellow: "#FACC15" - brightBlue: "#60A5FA" - brightMagenta: "#C084FC" - brightCyan: "#22D3EE" - brightWhite: "#FEFEFE" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Claude Dark" - contrast: - fg: 71.4 - black: 101.4 - red: 63.8 - green: 44.3 - yellow: 36.4 - blue: 63.9 - magenta: 66.2 - cyan: 47.1 - white: 0 - brightBlack: 73 - brightRed: 52.8 - brightGreen: 31.3 - brightYellow: 24.4 - brightBlue: 49.6 - brightMagenta: 51.2 - brightCyan: 33 - brightWhite: 0 diff --git a/themes/claude-mode-dark.yaml b/themes/claude-mode-dark.yaml index fc6e2a1f..b42640b2 100644 --- a/themes/claude-mode-dark.yaml +++ b/themes/claude-mode-dark.yaml @@ -8,6 +8,7 @@ source: author: "TheWebDev" repo: "https://github.com/stevie2codes/claude-mode" url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.claude-mode" + formats: null colors: bg: "#1F1E1B" fg: "#E8E6DC" diff --git a/themes/claude-mode-light.yaml b/themes/claude-mode-light.yaml index f5d1d8dc..8ac69221 100644 --- a/themes/claude-mode-light.yaml +++ b/themes/claude-mode-light.yaml @@ -8,6 +8,7 @@ source: author: "TheWebDev" repo: "https://github.com/stevie2codes/claude-mode" url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.claude-mode" + formats: null colors: bg: "#F5F0E6" fg: "#2C2A25" diff --git a/themes/claude-velvet-dark.yaml b/themes/claude-velvet-dark.yaml index 421256b6..a202b2d9 100644 --- a/themes/claude-velvet-dark.yaml +++ b/themes/claude-velvet-dark.yaml @@ -8,6 +8,7 @@ source: author: "TheWebDev" repo: "https://github.com/stevie2codes/claude-mode" url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.claude-mode" + formats: null colors: bg: "#1F1E1B" fg: "#E8E6DC" diff --git a/themes/claude-velvet-light.yaml b/themes/claude-velvet-light.yaml index 91282ac2..ad1c5a9a 100644 --- a/themes/claude-velvet-light.yaml +++ b/themes/claude-velvet-light.yaml @@ -8,6 +8,7 @@ source: author: "TheWebDev" repo: "https://github.com/stevie2codes/claude-mode" url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.claude-mode" + formats: null colors: bg: "#F5F0E6" fg: "#2C2A25" diff --git a/themes/claude-vscode-dark-brand.yaml b/themes/claude-vscode-dark-brand.yaml deleted file mode 100644 index cb194cd7..00000000 --- a/themes/claude-vscode-dark-brand.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Claude VSCode Dark Brand" -source: - marketplace_id: "jmramos.claude-ui-theme" - version: "1.0.3" - installs: 38 - rating: 0 - ratings: 0 - author: "jmramos" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=jmramos.claude-ui-theme" -colors: - bg: "#262624" - fg: "#F1F1EF" - black: "#1B1B19" - red: "#D97757" - green: "#B7B5A9" - yellow: "#B26842" - blue: "#61AAF2" - magenta: "#C3DDF7" - cyan: "#C3C0B6" - white: "#F1F1EF" - brightBlack: "#52514A" - brightRed: "#B26842" - brightGreen: "#C3C0B6" - brightYellow: "#D97757" - brightBlue: "#61AAF2" - brightMagenta: "#C3DDF7" - brightCyan: "#B7B5A9" - brightWhite: "#FAF9F5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Claude VSCode Light Brand" - contrast: - fg: 95.5 - black: 0 - red: 40.8 - green: 59 - yellow: 29.6 - blue: 50.8 - magenta: 81.1 - cyan: 65.5 - white: 95.5 - brightBlack: 11.4 - brightRed: 29.6 - brightGreen: 65.5 - brightYellow: 40.8 - brightBlue: 50.8 - brightMagenta: 81.1 - brightCyan: 59 - brightWhite: 100.8 diff --git a/themes/claude-vscode-light-brand.yaml b/themes/claude-vscode-light-brand.yaml deleted file mode 100644 index dadd04ed..00000000 --- a/themes/claude-vscode-light-brand.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Claude VSCode Light Brand" -source: - marketplace_id: "jmramos.claude-ui-theme" - version: "1.0.3" - installs: 38 - rating: 0 - ratings: 0 - author: "jmramos" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=jmramos.claude-ui-theme" -colors: - bg: "#FAF9F5" - fg: "#3D3929" - black: "#3D3929" - red: "#CC785C" - green: "#535146" - yellow: "#B26842" - blue: "#61AAF2" - magenta: "#C3DDF7" - cyan: "#6E6D68" - white: "#FAF9F5" - brightBlack: "#6E6D68" - brightRed: "#B26842" - brightGreen: "#3D3929" - brightYellow: "#CC785C" - brightBlue: "#61AAF2" - brightMagenta: "#C3DDF7" - brightCyan: "#535146" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "indigo" - hue: null - pair: "Claude VSCode Dark Brand" - contrast: - fg: 93 - black: 93 - red: 56.2 - green: 84 - yellow: 65.4 - blue: 44.5 - magenta: 15.7 - cyan: 72.1 - white: 0 - brightBlack: 72.1 - brightRed: 65.4 - brightGreen: 93 - brightYellow: 56.2 - brightBlue: 44.5 - brightMagenta: 15.7 - brightCyan: 84 - brightWhite: 0 diff --git a/themes/claude-warm-light.yaml b/themes/claude-warm-light.yaml index 98ff6612..f9987223 100644 --- a/themes/claude-warm-light.yaml +++ b/themes/claude-warm-light.yaml @@ -2,12 +2,13 @@ name: "Claude Warm Light" source: marketplace_id: "nghiavo.claude-warm-light" version: "0.2.5" - installs: 48 + installs: 50 rating: 5 ratings: 2 author: "Nghia SDET" repo: "https://github.com/vodainghia/claude-warm-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=nghiavo.claude-warm-light" + formats: null colors: bg: "#FAF6F0" fg: "#3D3929" diff --git a/themes/clean-theme-halloween.yaml b/themes/clean-theme-halloween.yaml index 4429164e..f945cd8d 100644 --- a/themes/clean-theme-halloween.yaml +++ b/themes/clean-theme-halloween.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "GrischaTDev.clean-theme-halloween" version: "0.0.8" installs: 236 + rating: 0 + ratings: 0 author: "GrischaTDev" repo: "https://github.com/GrischaTDev/Clean-Theme-Halloween" url: "https://marketplace.visualstudio.com/items?itemName=GrischaTDev.clean-theme-halloween" + formats: null colors: bg: "#1C262A" fg: "#FFFFFF" diff --git a/themes/clean-white.yaml b/themes/clean-white.yaml index 2043f13f..823720f2 100644 --- a/themes/clean-white.yaml +++ b/themes/clean-white.yaml @@ -8,6 +8,7 @@ source: author: "nana_kon" repo: "https://github.com/va1kio/clear-white" url: "https://marketplace.visualstudio.com/items?itemName=nanakon.clear" + formats: null colors: bg: "#FFFFFF" fg: "#9D9D9D" diff --git a/themes/clear-dark.yaml b/themes/clear-dark.yaml index 83aa6bcf..9e647ea3 100644 --- a/themes/clear-dark.yaml +++ b/themes/clear-dark.yaml @@ -1,28 +1,29 @@ name: "Clear Dark" source: - marketplace_id: "nanakon.clear" - version: "1.1.1" - installs: 1252 + marketplace_id: "Veccy-vec.cleardarktheme" + version: "1.1.2" + installs: 827 rating: 0 ratings: 0 - author: "nana_kon" - repo: "https://github.com/va1kio/clear-white" - url: "https://marketplace.visualstudio.com/items?itemName=nanakon.clear" + author: "Veccy" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Veccy-vec.cleardarktheme" + formats: null colors: - bg: "#131313" - fg: "#6B6B6B" - black: "#2E2E2E" - red: "#DB4A4A" + bg: "#060606" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" green: "#0DBC79" - yellow: "#C9C918" - blue: "#2B66A7" + yellow: "#E5E510" + blue: "#2472C8" magenta: "#BC3FBC" cyan: "#11A8CD" - white: "#D1D1D1" + white: "#E5E5E5" brightBlack: "#666666" brightRed: "#F14C4C" brightGreen: "#23D18B" - brightYellow: "#E2E24C" + brightYellow: "#F5F543" brightBlue: "#3B8EEA" brightMagenta: "#D670D6" brightCyan: "#29B8DB" @@ -33,20 +34,20 @@ meta: hue: null pair: null contrast: - fg: 24.5 + fg: 80.5 black: 0 - red: 33.7 - green: 53.4 - yellow: 69.6 - blue: 22 - magenta: 30.1 - cyan: 47.9 - white: 78 - brightBlack: 22.4 - brightRed: 38.9 - brightGreen: 63.9 - brightYellow: 84.5 - brightBlue: 40.4 - brightMagenta: 45.7 - brightCyan: 55.8 - brightWhite: 90.4 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/cleo.yaml b/themes/cleo.yaml index 7f1a822f..786c4e66 100644 --- a/themes/cleo.yaml +++ b/themes/cleo.yaml @@ -8,6 +8,7 @@ source: author: "Cleo" repo: "https://github.com/FabioKaelin/cleo-vscode-extension" url: "https://marketplace.visualstudio.com/items?itemName=Cleo.cleo" + formats: null colors: bg: "#071D36" fg: "#B6DDE4" diff --git a/themes/clesy-theme-dark.yaml b/themes/clesy-theme-dark.yaml index 4ffa0f2f..72a61d42 100644 --- a/themes/clesy-theme-dark.yaml +++ b/themes/clesy-theme-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "EvgeniyGerasimenko.clesy-theme-dark" version: "1.0.1" installs: 124 + rating: 0 + ratings: 0 author: "Evgeniy Gerasimenko" repo: "https://github.com/Clesy/clesy-theme-vs-code" url: "https://marketplace.visualstudio.com/items?itemName=EvgeniyGerasimenko.clesy-theme-dark" + formats: null colors: bg: "#142531" fg: "#D6DEEB" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "green" hue: 240 + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/clorest.yaml b/themes/clorest.yaml index dc9e7924..72e55b27 100644 --- a/themes/clorest.yaml +++ b/themes/clorest.yaml @@ -1,4 +1,4 @@ -name: "Clorest" +name: "clorest" source: marketplace_id: "avysridhar.clorest" version: "0.0.3" @@ -8,6 +8,7 @@ source: author: "Avinash Sridhar" repo: "https://github.com/dionysus98/clorest" url: "https://marketplace.visualstudio.com/items?itemName=avysridhar.clorest" + formats: null colors: bg: "#1E1E1E" fg: "#ADBAC7" diff --git a/themes/cloudmint-night.yaml b/themes/cloudmint-night.yaml deleted file mode 100644 index 93200732..00000000 --- a/themes/cloudmint-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CloudMint Night" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#212836" - fg: "#E9ECEF" - black: "#151C28" - red: "#FF5555" - green: "#5CFF87" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#FF79C6" - cyan: "#64FFDA" - white: "#E9ECEF" - brightBlack: "#8695A8" - brightRed: "#FF8A8A" - brightGreen: "#98FFB3" - brightYellow: "#FFE08A" - brightBlue: "#9DACFF" - brightMagenta: "#FFA6FF" - brightCyan: "#A1FFF7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 264 - pair: null - contrast: - fg: 91.8 - black: 0 - red: 41 - green: 85.8 - yellow: 76.5 - blue: 53.5 - magenta: 52.1 - cyan: 88.7 - white: 91.8 - brightBlack: 40.9 - brightRed: 54.3 - brightGreen: 90.3 - brightYellow: 86.1 - brightBlue: 56.7 - brightMagenta: 68.3 - brightCyan: 93.7 - brightWhite: 104.4 diff --git a/themes/clrsync.yaml b/themes/clrsync.yaml index c903655d..090b3ece 100644 --- a/themes/clrsync.yaml +++ b/themes/clrsync.yaml @@ -8,6 +8,7 @@ source: author: "obsqrbtz" repo: "https://github.com/obsqrbtz/clrsync-vscode" url: "https://marketplace.visualstudio.com/items?itemName=obsqrbtz.clrsync" + formats: null colors: bg: "#111111" fg: "#D4D4D4" diff --git a/themes/clu-tron-legacy.yaml b/themes/clu-tron-legacy.yaml index b87c38cb..53707391 100644 --- a/themes/clu-tron-legacy.yaml +++ b/themes/clu-tron-legacy.yaml @@ -8,6 +8,7 @@ source: author: "rubenzn" repo: "https://github.com/ruben-cxtx/best-tron-legacy-theme" url: "https://marketplace.visualstudio.com/items?itemName=rubenzn.encom-tron-legacy" + formats: null colors: bg: "#0A0703" fg: "#FFDB9E" diff --git a/themes/clubcleaver-functional-matrix.yaml b/themes/clubcleaver-functional-matrix.yaml deleted file mode 100644 index b8c06aea..00000000 --- a/themes/clubcleaver-functional-matrix.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Clubcleaver Functional Matrix" -source: - marketplace_id: "clubcleaver.functional-matrix" - version: "1.0.1" - installs: 517 - rating: 5 - ratings: 1 - author: "clubcleaver" - repo: "https://github.com/clubcleaver/functional-matrix" - url: "https://marketplace.visualstudio.com/items?itemName=clubcleaver.functional-matrix" -colors: - bg: "#000000" - fg: "#44FF00" - black: "#000000" - red: "#008A23" - green: "#65FF8E" - yellow: "#639408" - blue: "#62FF6C" - magenta: "#BC3FBC" - cyan: "#F11E1E" - white: "#8DFF97" - brightBlack: "#D50A0A" - brightRed: "#FFFFFF" - brightGreen: "#0EF945" - brightYellow: "#F5F543" - brightBlue: "#86C900" - brightMagenta: "#5B005B" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 87.2 - black: 0 - red: 31.1 - green: 89.7 - yellow: 37.9 - blue: 88.9 - magenta: 30.8 - cyan: 34.6 - white: 92.2 - brightBlack: 27.3 - brightRed: 107.9 - brightGreen: 83.5 - brightYellow: 96.6 - brightBlue: 63.3 - brightMagenta: 0 - brightCyan: 56.4 - brightWhite: 107.9 diff --git a/themes/clymate-monochrome-vsdark-color-theme.yaml b/themes/clymate-monochrome-vsdark-color-theme.yaml index 62166678..0b065a12 100644 --- a/themes/clymate-monochrome-vsdark-color-theme.yaml +++ b/themes/clymate-monochrome-vsdark-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Clyde D'Souza" repo: "https://github.com/ClydeDz/clymate-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=clydedsouza.clymate-themes-vscode" + formats: null colors: bg: "#0F0F0F" fg: "#FFFFFF" diff --git a/themes/clymate-pop-neon-vsdark-color-theme.yaml b/themes/clymate-pop-neon-vsdark-color-theme.yaml index 0c2e6cd7..e0a4efe0 100644 --- a/themes/clymate-pop-neon-vsdark-color-theme.yaml +++ b/themes/clymate-pop-neon-vsdark-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Clyde D'Souza" repo: "https://github.com/ClydeDz/clymate-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=clydedsouza.clymate-themes-vscode" + formats: null colors: bg: "#0E0B16" fg: "#D7DD35" diff --git a/themes/clymate-vintage-vsdark-color-theme.yaml b/themes/clymate-vintage-vsdark-color-theme.yaml index f85993d2..04a7962c 100644 --- a/themes/clymate-vintage-vsdark-color-theme.yaml +++ b/themes/clymate-vintage-vsdark-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Clyde D'Souza" repo: "https://github.com/ClydeDz/clymate-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=clydedsouza.clymate-themes-vscode" + formats: null colors: bg: "#373F27" fg: "#F98B95" diff --git a/themes/clymate-vsdark-color-theme.yaml b/themes/clymate-vsdark-color-theme.yaml deleted file mode 100644 index 26acffa2..00000000 --- a/themes/clymate-vsdark-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "clymate-vsdark.color-theme" -source: - marketplace_id: "clydedsouza.clymate-themes-vscode" - version: "1.0.0" - installs: 2726 - rating: 0 - ratings: 0 - author: "Clyde D'Souza" - repo: "https://github.com/ClydeDz/clymate-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=clydedsouza.clymate-themes-vscode" -colors: - bg: "#2E0000" - fg: "#F5E6E6" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F5E6E6" -meta: - mode: "dark" - accent: "red" - hue: 29 - pair: null - contrast: - fg: 92.6 - black: 0 - red: 24.5 - green: 52.9 - yellow: 57.5 - blue: 34.5 - magenta: 32.1 - cyan: 50.3 - white: 88.4 - brightBlack: 21.9 - brightRed: 37.2 - brightGreen: 76.9 - brightYellow: 83.8 - brightBlue: 49.7 - brightMagenta: 46.4 - brightCyan: 73.3 - brightWhite: 92.6 diff --git a/themes/cmyk-colourrrs.yaml b/themes/cmyk-colourrrs.yaml index 0f333c92..a9f99157 100644 --- a/themes/cmyk-colourrrs.yaml +++ b/themes/cmyk-colourrrs.yaml @@ -8,6 +8,7 @@ source: author: "techygrrrl" repo: "https://github.com/techygrrrl/techygrrrl-cmyk-colourrrs-vscode" url: "https://marketplace.visualstudio.com/items?itemName=techygrrrl.techygrrrl-cmyk-colourrrs" + formats: null colors: bg: "#FFFFFF" fg: "#130E0F" diff --git a/themes/coal.yaml b/themes/coal.yaml index ad86d3a6..00a86f40 100644 --- a/themes/coal.yaml +++ b/themes/coal.yaml @@ -8,6 +8,7 @@ source: author: "tfeak2" repo: "https://github.com/tfeak2/coal" url: "https://marketplace.visualstudio.com/items?itemName=tfeak2.coal" + formats: null colors: bg: "#26262C" fg: "#D4D4D4" diff --git a/themes/cobalt-ice.yaml b/themes/cobalt-ice.yaml deleted file mode 100644 index 7360d203..00000000 --- a/themes/cobalt-ice.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cobalt-Ice" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#020817" - fg: "#F8FAFC" - black: "#020817" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#3B82F6" - magenta: "#3B82F6" - cyan: "#29C3A0" - white: "#F8FAFC" - brightBlack: "#020817" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#3B82F6" - brightMagenta: "#3B82F6" - brightCyan: "#29C3A0" - brightWhite: "#F8FAFC" -meta: - mode: "dark" - accent: "purple" - hue: 259 - pair: null - contrast: - fg: 104.3 - black: 0 - red: 10.2 - green: 58.5 - yellow: 52.6 - blue: 37.6 - magenta: 37.6 - cyan: 58.5 - white: 104.3 - brightBlack: 0 - brightRed: 10.2 - brightGreen: 58.5 - brightYellow: 52.6 - brightBlue: 37.6 - brightMagenta: 37.6 - brightCyan: 58.5 - brightWhite: 104.3 diff --git a/themes/cobalt-next-dark.yaml b/themes/cobalt-next-dark.yaml deleted file mode 100644 index ea6595aa..00000000 --- a/themes/cobalt-next-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cobalt Next Dark" -source: - marketplace_id: "dline.CobaltNext" - version: "0.4.5" - installs: 125787 - rating: 4.87 - ratings: 15 - author: "David Leininger" - repo: "https://github.com/davidleininger/cobaltnext-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=dline.CobaltNext" -colors: - bg: "#0F1C23" - fg: "#FFFFFF" - black: "#343D46" - red: "#ED6F7D" - green: "#99C794" - yellow: "#FAC863" - blue: "#5A9BCF" - magenta: "#C5A5C5" - cyan: "#5FB3B3" - white: "#D8DEE9" - brightBlack: "#65737E" - brightRed: "#D6838C" - brightGreen: "#C1DCBE" - brightYellow: "#FFDE9B" - brightBlue: "#8ABEE7" - brightMagenta: "#EDCDED" - brightCyan: "#9BE2E2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 233 - pair: null - contrast: - fg: 106.5 - black: 0 - red: 45.2 - green: 64.5 - yellow: 76.3 - blue: 44 - magenta: 57.6 - cyan: 52.6 - white: 85 - brightBlack: 26.5 - brightRed: 46.7 - brightGreen: 79.5 - brightYellow: 87.6 - brightBlue: 62.8 - brightMagenta: 80.8 - brightCyan: 80.1 - brightWhite: 106.5 diff --git a/themes/cobalt-next.yaml b/themes/cobalt-next.yaml deleted file mode 100644 index 968f46f8..00000000 --- a/themes/cobalt-next.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cobalt Next" -source: - marketplace_id: "samhinshaw.daark" - version: "0.0.1" - installs: 300 - rating: 0 - ratings: 0 - author: "Sam Hinshaw" - repo: "https://github.com/samhinshaw/daark" - url: "https://marketplace.visualstudio.com/items?itemName=samhinshaw.daark" -colors: - bg: "#1B2B34" - fg: "#FFFFFF" - black: "#000000" - red: "#ED6F7D" - green: "#99C794" - yellow: "#FAC863" - blue: "#5A9BCF" - magenta: "#C5A5C5" - cyan: "#5FB3B3" - white: "#D8DEE9" - brightBlack: "#65737E" - brightRed: "#D6838C" - brightGreen: "#C1DCBE" - brightYellow: "#FFDE9B" - brightBlue: "#8ABEE7" - brightMagenta: "#EDCDED" - brightCyan: "#9BE2E2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 234 - pair: null - contrast: - fg: 104.2 - black: 0 - red: 43 - green: 62.2 - yellow: 74.1 - blue: 41.7 - magenta: 55.3 - cyan: 50.4 - white: 82.7 - brightBlack: 24.2 - brightRed: 44.4 - brightGreen: 77.2 - brightYellow: 85.4 - brightBlue: 60.5 - brightMagenta: 78.5 - brightCyan: 77.8 - brightWhite: 104.2 diff --git a/themes/cobalt2.yaml b/themes/cobalt2.yaml index f07d4995..96a23295 100644 --- a/themes/cobalt2.yaml +++ b/themes/cobalt2.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AgraeonLabs.dev-themes" version: "0.1.0" installs: 283 + rating: 0 + ratings: 0 author: "Agraeon Labs" repo: "https://github.com/adiagcodelance/VS-Code-Themes" url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" + formats: null colors: bg: "#193549" fg: "#FFFFFF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "red" hue: 242 + pair: null contrast: fg: 102.1 black: 0 diff --git a/themes/cobalt3dark.yaml b/themes/cobalt3dark.yaml index 7265888d..c586c4fb 100644 --- a/themes/cobalt3dark.yaml +++ b/themes/cobalt3dark.yaml @@ -2,12 +2,13 @@ name: "Cobalt3Dark" source: marketplace_id: "hendrikbeutlin.Cobalt3Dark" version: "0.5.0" - installs: 1522 + installs: 1523 rating: 0 ratings: 0 author: "hendrikbeutlin" repo: "https://github.com/hendrikbeutlin/Cobalt3Dark" url: "https://marketplace.visualstudio.com/items?itemName=hendrikbeutlin.Cobalt3Dark" + formats: null colors: bg: "#10222F" fg: "#80FCFF" diff --git a/themes/cobalt9.yaml b/themes/cobalt9.yaml deleted file mode 100644 index ea92e035..00000000 --- a/themes/cobalt9.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cobalt9" -source: - marketplace_id: "pydemia.cobalt9" - version: "1.4.2" - installs: 7246 - rating: 4.83 - ratings: 6 - author: "Youngju Jaden Kim" - repo: "https://github.com/pydemia/pydemia-vscode-syntax/cobalt9" - url: "https://marketplace.visualstudio.com/items?itemName=pydemia.cobalt9" -colors: - bg: "#072539" - fg: "#FFFFFF" - black: "#333333" - red: "#FF2600" - green: "#3DDF2B" - yellow: "#FFE700" - blue: "#1478DB" - magenta: "#FF2C70" - cyan: "#00C5C7" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F92A1C" - brightGreen: "#43D426" - brightYellow: "#F1D000" - brightBlue: "#6871FF" - brightMagenta: "#FF77FF" - brightCyan: "#79E8FB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 242 - pair: null - contrast: - fg: 105.2 - black: 0 - red: 35.8 - green: 67.7 - yellow: 88.6 - blue: 28.9 - magenta: 37.4 - cyan: 58.2 - white: 70 - brightBlack: 21.2 - brightRed: 34.6 - brightGreen: 62.4 - brightYellow: 76.3 - brightBlue: 33 - brightMagenta: 55.7 - brightCyan: 80.5 - brightWhite: 105.2 diff --git a/themes/coco-theme-au-palette.yaml b/themes/coco-theme-au-palette.yaml index b0b2817d..a12067e7 100644 --- a/themes/coco-theme-au-palette.yaml +++ b/themes/coco-theme-au-palette.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#130F40" fg: "#C7ECEE" diff --git a/themes/coco-theme-ca-palette.yaml b/themes/coco-theme-ca-palette.yaml index a0f1a776..6832adc4 100644 --- a/themes/coco-theme-ca-palette.yaml +++ b/themes/coco-theme-ca-palette.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#0C1A25" fg: "#F2E5BC" diff --git a/themes/coco-theme-coco-palette.yaml b/themes/coco-theme-coco-palette.yaml index ea211ef7..1ed67135 100644 --- a/themes/coco-theme-coco-palette.yaml +++ b/themes/coco-theme-coco-palette.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#1E272E" fg: "#FFFFFF" diff --git a/themes/coco-theme-coconut-palette.yaml b/themes/coco-theme-coconut-palette.yaml index 646f0447..5b0491bf 100644 --- a/themes/coco-theme-coconut-palette.yaml +++ b/themes/coco-theme-coconut-palette.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#04293A" fg: "#FFFFFF" diff --git a/themes/coco-theme-de-palette.yaml b/themes/coco-theme-de-palette.yaml index c0cab746..d7611d10 100644 --- a/themes/coco-theme-de-palette.yaml +++ b/themes/coco-theme-de-palette.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#4B6584" fg: "#FFFFFF" diff --git a/themes/coco-theme-es-palette.yaml b/themes/coco-theme-es-palette.yaml index 98b492b1..89cb070e 100644 --- a/themes/coco-theme-es-palette.yaml +++ b/themes/coco-theme-es-palette.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#103546" fg: "#FFFFFF" diff --git a/themes/coco-theme-fr-palette.yaml b/themes/coco-theme-fr-palette.yaml index b0897c61..980af6be 100644 --- a/themes/coco-theme-fr-palette.yaml +++ b/themes/coco-theme-fr-palette.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#0A3D62" fg: "#FFFFFF" diff --git a/themes/coco-theme-gb-palette.yaml b/themes/coco-theme-gb-palette.yaml index af4fe35a..16e9c24c 100644 --- a/themes/coco-theme-gb-palette.yaml +++ b/themes/coco-theme-gb-palette.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#192A56" fg: "#F5F6FA" diff --git a/themes/coco-theme-in-palette.yaml b/themes/coco-theme-in-palette.yaml index e0cda933..6ad0ccbd 100644 --- a/themes/coco-theme-in-palette.yaml +++ b/themes/coco-theme-in-palette.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#2C3A47" fg: "#F5F6FA" diff --git a/themes/coco-theme-personnal-palette.yaml b/themes/coco-theme-personnal-palette.yaml index 7e9c0a6e..cb93bdc5 100644 --- a/themes/coco-theme-personnal-palette.yaml +++ b/themes/coco-theme-personnal-palette.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#09131B" fg: "#F2E5BC" diff --git a/themes/coco-theme-se-palette.yaml b/themes/coco-theme-se-palette.yaml index 08ec7b6a..1e42f190 100644 --- a/themes/coco-theme-se-palette.yaml +++ b/themes/coco-theme-se-palette.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#1E272E" fg: "#FFFFFF" diff --git a/themes/coco-theme-tr-palette.yaml b/themes/coco-theme-tr-palette.yaml index f0dfe063..f3e5c239 100644 --- a/themes/coco-theme-tr-palette.yaml +++ b/themes/coco-theme-tr-palette.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#3D3D3D" fg: "#FFFFFF" diff --git a/themes/coco-theme-v1-palette.yaml b/themes/coco-theme-v1-palette.yaml index 5cdda00c..ea628e50 100644 --- a/themes/coco-theme-v1-palette.yaml +++ b/themes/coco-theme-v1-palette.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#2C3E50" fg: "#FFFFFF" diff --git a/themes/coco-theme.yaml b/themes/coco-theme.yaml index 6e3a7e1f..e5818d35 100644 --- a/themes/coco-theme.yaml +++ b/themes/coco-theme.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#393E46" fg: "#F2E5BC" diff --git a/themes/coco.yaml b/themes/coco.yaml index 49de1b75..8ffca205 100644 --- a/themes/coco.yaml +++ b/themes/coco.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#1E272E" fg: "#D2DAE2" diff --git a/themes/cocoa.yaml b/themes/cocoa.yaml index 85e41ec1..911daa36 100644 --- a/themes/cocoa.yaml +++ b/themes/cocoa.yaml @@ -8,6 +8,7 @@ source: author: "akirco" repo: "https://github.com/akirco/vscode-theme-cocoa" url: "https://marketplace.visualstudio.com/items?itemName=akirco.cocoa-theme" + formats: null colors: bg: "#0B0D19" fg: "#6EBBFF" diff --git a/themes/coconut-dark.yaml b/themes/coconut-dark.yaml index 3903d453..10a1814d 100644 --- a/themes/coconut-dark.yaml +++ b/themes/coconut-dark.yaml @@ -8,6 +8,7 @@ source: author: "coconut" repo: null url: "https://marketplace.visualstudio.com/items?itemName=coconut.coconut-vscode-theme" + formats: null colors: bg: "#0F1014" fg: "#D4D4D4" diff --git a/themes/coconut.yaml b/themes/coconut.yaml index e273a983..cd711e9d 100644 --- a/themes/coconut.yaml +++ b/themes/coconut.yaml @@ -8,6 +8,7 @@ source: author: "Kifzuka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kifzuka.coco" + formats: null colors: bg: "#1E272E" fg: "#FFFFFF" diff --git a/themes/coda.yaml b/themes/coda.yaml index f68cb2a9..5cc2ec5b 100644 --- a/themes/coda.yaml +++ b/themes/coda.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "will-roscoe.coda-dark-1" version: "1.0.0" installs: 247 + rating: 0 + ratings: 0 author: "Will Roscoe" repo: "https://github.com/will-roscoe/physicstools" url: "https://marketplace.visualstudio.com/items?itemName=will-roscoe.coda-dark-1" + formats: null colors: bg: "#0F0F0F" fg: "#ABABAB" diff --git a/themes/code-dadi-dark.yaml b/themes/code-dadi-dark.yaml index 0ef571e9..6def0c9d 100644 --- a/themes/code-dadi-dark.yaml +++ b/themes/code-dadi-dark.yaml @@ -8,6 +8,7 @@ source: author: "Code Dadi" repo: "https://github.com/4rexdadi/code-dadi-dark" url: "https://marketplace.visualstudio.com/items?itemName=CodeDadi.code-dadi-dark" + formats: null colors: bg: "#110B1E" fg: "#DBE8FF" diff --git a/themes/code-dadi-lighter.yaml b/themes/code-dadi-lighter.yaml index 0289f306..94bf2c1c 100644 --- a/themes/code-dadi-lighter.yaml +++ b/themes/code-dadi-lighter.yaml @@ -8,6 +8,7 @@ source: author: "Code Dadi" repo: "https://github.com/4rexdadi/code-dadi-dark" url: "https://marketplace.visualstudio.com/items?itemName=CodeDadi.code-dadi-dark" + formats: null colors: bg: "#000938" fg: "#DBE8FF" diff --git a/themes/code-glasses-vision-pro.yaml b/themes/code-glasses-vision-pro.yaml index c6c9f013..4cfe9e83 100644 --- a/themes/code-glasses-vision-pro.yaml +++ b/themes/code-glasses-vision-pro.yaml @@ -8,6 +8,7 @@ source: author: "Aadityaa" repo: "https://github.com/Aditya-Ace/Code-Glasses" url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.code-glasses" + formats: null colors: bg: "#0D0D0D" fg: "#EADBCF" diff --git a/themes/code-hunter-magnum-purple.yaml b/themes/code-hunter-magnum-purple.yaml index f3bcf722..0d0528c8 100644 --- a/themes/code-hunter-magnum-purple.yaml +++ b/themes/code-hunter-magnum-purple.yaml @@ -8,6 +8,7 @@ source: author: "Code Hunter" repo: "https://github.com/Code-Hunter-OfficialBD/code-hunter-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=CodeHunterBD.code-hunter-theme" + formats: null colors: bg: "#111111" fg: "#E2E4FF" diff --git a/themes/code-hunter-spruce-wind.yaml b/themes/code-hunter-spruce-wind.yaml index 868a69f3..5ecfec42 100644 --- a/themes/code-hunter-spruce-wind.yaml +++ b/themes/code-hunter-spruce-wind.yaml @@ -8,6 +8,7 @@ source: author: "Code Hunter" repo: "https://github.com/Code-Hunter-OfficialBD/code-hunter-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=CodeHunterBD.code-hunter-theme" + formats: null colors: bg: "#242934" fg: "#FF7279" diff --git a/themes/code-kraken-theme.yaml b/themes/code-kraken-theme.yaml index c0a87a83..7a091fb6 100644 --- a/themes/code-kraken-theme.yaml +++ b/themes/code-kraken-theme.yaml @@ -2,12 +2,13 @@ name: "Code Kraken ™ Theme" source: marketplace_id: "TheCodeKraken.code-kraken-theme" version: "1.0.1" - installs: 230 + installs: 233 rating: 5 ratings: 1 author: "The Code Kraken" repo: "https://github.com/officialcodekraken/code-kraken-theme" url: "https://marketplace.visualstudio.com/items?itemName=TheCodeKraken.code-kraken-theme" + formats: null colors: bg: "#201537" fg: "#FFFFFF" diff --git a/themes/code-like-a-rainbow.yaml b/themes/code-like-a-rainbow.yaml deleted file mode 100644 index b7093500..00000000 --- a/themes/code-like-a-rainbow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Code_Like_a_Rainbow" -source: - marketplace_id: "invillia.Code-Like-A-Rainbow" - version: "0.3.0" - installs: 10478 - rating: 4 - ratings: 5 - author: "invillia" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=invillia.Code-Like-A-Rainbow" -colors: - bg: "#1E1E1E" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#FFE937" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#FE7E24" - brightGreen: "#23D18B" - brightYellow: "#FFFF00" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.7 - black: 0 - red: 25.9 - green: 52.2 - yellow: 90.6 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 50.8 - brightGreen: 62.7 - brightYellow: 100.9 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/code-muse-light.yaml b/themes/code-muse-light.yaml index b15e64bd..689b4f30 100644 --- a/themes/code-muse-light.yaml +++ b/themes/code-muse-light.yaml @@ -8,6 +8,7 @@ source: author: "Raj Ankur" repo: "https://github.com/rajankur/code-muse-theme" url: "https://marketplace.visualstudio.com/items?itemName=rajankur.code-muse-light-theme" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/code-red.yaml b/themes/code-red.yaml deleted file mode 100644 index b4f2ddfc..00000000 --- a/themes/code-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Code Red" -source: - marketplace_id: "Noqs.darkstack" - version: "1.1.1" - installs: 2842 - rating: 0 - ratings: 0 - author: "Noqs" - repo: "https://github.com/NoxQ/Darkstack" - url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" -colors: - bg: "#100C28" - fg: "#ABABAB" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 286 - pair: null - contrast: - fg: 56.3 - black: 0 - red: 27.2 - green: 53.5 - yellow: 86.1 - blue: 27.9 - magenta: 30.2 - cyan: 48 - white: 90.5 - brightBlack: 22.5 - brightRed: 39 - brightGreen: 64 - brightYellow: 96.1 - brightBlue: 40.5 - brightMagenta: 45.8 - brightCyan: 55.9 - brightWhite: 90.5 diff --git a/themes/code-sandbox-tribute.yaml b/themes/code-sandbox-tribute.yaml deleted file mode 100644 index 424fedd4..00000000 --- a/themes/code-sandbox-tribute.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Code Sandbox Tribute" -source: - marketplace_id: "paraform.codesandbox-tribute" - version: "0.0.1" - installs: 84 - author: "Paraform" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=paraform.codesandbox-tribute" -colors: - bg: "#0E0E0E" - fg: "#797979" - black: "#1B1B1B" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E59C10" - blue: "#2472C8" - magenta: "#7F4ED7" - cyan: "#11A8CD" - white: "#C9C9C9" - brightBlack: "#3B3B3B" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5EA43" - brightBlue: "#3B8EEA" - brightMagenta: "#AC4ED7" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: null - contrast: - fg: 31.2 - black: 0 - red: 27.4 - green: 53.7 - yellow: 56.6 - blue: 28.1 - magenta: 25.7 - cyan: 48.2 - white: 73.6 - brightBlack: 0 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 91.1 - brightBlue: 40.7 - brightMagenta: 31.9 - brightCyan: 56.1 - brightWhite: 107.6 diff --git a/themes/code-with-colors-pro-midnight-purple.yaml b/themes/code-with-colors-pro-midnight-purple.yaml deleted file mode 100644 index 23978cf8..00000000 --- a/themes/code-with-colors-pro-midnight-purple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Code With Colors Pro - Midnight Purple" -source: - marketplace_id: "veduishu1257.code-with-colors-pro" - version: "2.3.0" - installs: 18 - rating: 5 - ratings: 1 - author: "veduishu" - repo: "https://github.com/vishal-s-reddy/code-with-colors" - url: "https://marketplace.visualstudio.com/items?itemName=veduishu1257.code-with-colors-pro" -colors: - bg: "#282A36" - fg: "#F8F8F2" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#21222C" - brightRed: "#FF5555" - brightGreen: "#50FA7B" - brightYellow: "#F1FA8C" - brightBlue: "#BD93F9" - brightMagenta: "#FF79C6" - brightCyan: "#8BE9FD" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "green" - hue: 278 - pair: null - contrast: - fg: 99 - black: 0 - red: 40.4 - green: 81.9 - yellow: 95.6 - blue: 50.7 - magenta: 51.6 - cyan: 81 - white: 99 - brightBlack: 0 - brightRed: 40.4 - brightGreen: 81.9 - brightYellow: 95.6 - brightBlue: 50.7 - brightMagenta: 51.6 - brightCyan: 81 - brightWhite: 99 diff --git a/themes/code33.yaml b/themes/code33.yaml index ea98e6fb..59298934 100644 --- a/themes/code33.yaml +++ b/themes/code33.yaml @@ -8,6 +8,7 @@ source: author: "Stephen Fuchs" repo: "https://github.com/stephenfuchs/code33-theme" url: "https://marketplace.visualstudio.com/items?itemName=StephenFuchs.code33" + formats: null colors: bg: "#161616" fg: "#EDEDED" diff --git a/themes/codeastro-dark.yaml b/themes/codeastro-dark.yaml index aa6a7b33..ca9fa3d6 100644 --- a/themes/codeastro-dark.yaml +++ b/themes/codeastro-dark.yaml @@ -8,6 +8,7 @@ source: author: "Codeastro" repo: "https://github.com/zaryabdev/codeastro-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=codeastro.codeastro-vscode-themes" + formats: null colors: bg: "#0F172A" fg: "#E2E8F0" diff --git a/themes/codebabel-theme-dark.yaml b/themes/codebabel-theme-dark.yaml deleted file mode 100644 index 28922090..00000000 --- a/themes/codebabel-theme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "codebabel-theme-dark" -source: - marketplace_id: "CodeBabel.codebabel-theme-drk" - version: "0.0.3" - installs: 222 - rating: 5 - ratings: 1 - author: "CodeBabel" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=CodeBabel.codebabel-theme-drk" -colors: - bg: "#1E1E1E" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.7 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 106 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 106 diff --git a/themes/codecourse-contrast.yaml b/themes/codecourse-contrast.yaml deleted file mode 100644 index 478778a8..00000000 --- a/themes/codecourse-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "codecourse-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#05080A" - fg: "#B6CED8" - black: "#0D161B" - red: "#BA0E2E" - green: "#1EA8FC" - yellow: "#5DCDFD" - blue: "#FFFFFF" - magenta: "#1EA8FC" - cyan: "#5DCDFD" - white: "#C7D9E1" - brightBlack: "#273E4E" - brightRed: "#F03E5F" - brightGreen: "#83CFFD" - brightYellow: "#C2ECFE" - brightBlue: "#FFFFFF" - brightMagenta: "#83CFFD" - brightCyan: "#C2ECFE" - brightWhite: "#F8FBFC" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 74.4 - black: 0 - red: 21.4 - green: 51.6 - yellow: 69.2 - blue: 107.8 - magenta: 51.6 - cyan: 69.2 - white: 81.6 - brightBlack: 0 - brightRed: 37.7 - brightGreen: 72.3 - brightYellow: 91.2 - brightBlue: 107.8 - brightMagenta: 72.3 - brightCyan: 91.2 - brightWhite: 104.8 diff --git a/themes/codecourse-light.yaml b/themes/codecourse-light.yaml deleted file mode 100644 index ff358978..00000000 --- a/themes/codecourse-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "codecourse-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#547F91" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#1EA8FC" - yellow: "#5DCDFD" - blue: "#547F91" - magenta: "#1EA8FC" - cyan: "#5DCDFD" - white: "#5D8DA1" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#83CFFD" - brightYellow: "#C2ECFE" - brightBlue: "#8EAFBD" - brightMagenta: "#83CFFD" - brightCyan: "#C2ECFE" - brightWhite: "#8EAFBD" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 70.1 - black: 0 - red: 80.3 - green: 50.3 - yellow: 33.4 - blue: 70.1 - magenta: 50.3 - cyan: 33.4 - white: 63.8 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 30.4 - brightYellow: 12.7 - brightBlue: 45.9 - brightMagenta: 30.4 - brightCyan: 12.7 - brightWhite: 45.9 diff --git a/themes/codecourse.yaml b/themes/codecourse.yaml deleted file mode 100644 index 77c4bbd2..00000000 --- a/themes/codecourse.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "codecourse" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#19272D" - fg: "#B6CED8" - black: "#22353D" - red: "#BA0E2E" - green: "#1EA8FC" - yellow: "#5DCDFD" - blue: "#FFFFFF" - magenta: "#1EA8FC" - cyan: "#5DCDFD" - white: "#C7D9E1" - brightBlack: "#3D606F" - brightRed: "#F03E5F" - brightGreen: "#83CFFD" - brightYellow: "#C2ECFE" - brightBlue: "#FFFFFF" - brightMagenta: "#83CFFD" - brightCyan: "#C2ECFE" - brightWhite: "#F8FBFC" -meta: - mode: "dark" - accent: "orange" - hue: 226 - pair: null - contrast: - fg: 71.5 - black: 0 - red: 18.6 - green: 48.7 - yellow: 66.3 - blue: 104.9 - magenta: 48.7 - cyan: 66.3 - white: 78.7 - brightBlack: 15.7 - brightRed: 34.9 - brightGreen: 69.4 - brightYellow: 88.3 - brightBlue: 104.9 - brightMagenta: 69.4 - brightCyan: 88.3 - brightWhite: 101.9 diff --git a/themes/codehesion-dark-theme.yaml b/themes/codehesion-dark-theme.yaml index 868072b1..06e946b8 100644 --- a/themes/codehesion-dark-theme.yaml +++ b/themes/codehesion-dark-theme.yaml @@ -6,6 +6,7 @@ source: author: "Codehesion" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Codehesion.codehesion-themes" + formats: null colors: bg: "#000F13" fg: "#FFFFFF" diff --git a/themes/codehesion-light-theme.yaml b/themes/codehesion-light-theme.yaml index 7c32c1f1..cada0f0b 100644 --- a/themes/codehesion-light-theme.yaml +++ b/themes/codehesion-light-theme.yaml @@ -6,6 +6,7 @@ source: author: "Codehesion" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Codehesion.codehesion-themes" + formats: null colors: bg: "#FFFFFF" fg: "#003A4E" diff --git a/themes/codeify-dark-berry-color-theme.yaml b/themes/codeify-dark-berry-color-theme.yaml deleted file mode 100644 index ff3ae74a..00000000 --- a/themes/codeify-dark-berry-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Codeify dark berry color theme" -source: - marketplace_id: "siyam.Codeify" - version: "1.1.2" - installs: 2981 - rating: 5 - ratings: 4 - author: "siyam" - repo: "https://github.com/SISIYAM/codiefy-color-theme-vs-code-extension" - url: "https://marketplace.visualstudio.com/items?itemName=siyam.Codeify" -colors: - bg: "#222222" - fg: "#F8F8F2" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 100.6 - black: 0 - red: 23.2 - green: 51.6 - yellow: 56.2 - blue: 33.2 - magenta: 30.8 - cyan: 49 - white: 87.1 - brightBlack: 20.6 - brightRed: 35.9 - brightGreen: 75.6 - brightYellow: 82.5 - brightBlue: 48.4 - brightMagenta: 45.1 - brightCyan: 72 - brightWhite: 100.6 diff --git a/themes/codeitlive-light.yaml b/themes/codeitlive-light.yaml index 0a032c47..d2abc783 100644 --- a/themes/codeitlive-light.yaml +++ b/themes/codeitlive-light.yaml @@ -8,6 +8,7 @@ source: author: "Ed Charbeneau" repo: "https://github.com/EdCharbeneau/CodeItLive-vstheme" url: "https://marketplace.visualstudio.com/items?itemName=EdCharbeneau.codeitlivetheme" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/codeitlive.yaml b/themes/codeitlive.yaml index 8d8003c4..3f62e307 100644 --- a/themes/codeitlive.yaml +++ b/themes/codeitlive.yaml @@ -8,6 +8,7 @@ source: author: "Ed Charbeneau" repo: "https://github.com/EdCharbeneau/CodeItLive-vstheme" url: "https://marketplace.visualstudio.com/items?itemName=EdCharbeneau.codeitlivetheme" + formats: null colors: bg: "#231E36" fg: "#C6D5EB" diff --git a/themes/codelabs-inspired.yaml b/themes/codelabs-inspired.yaml index 98e61e92..172cae63 100644 --- a/themes/codelabs-inspired.yaml +++ b/themes/codelabs-inspired.yaml @@ -8,6 +8,7 @@ source: author: "Sirius Pal" repo: "https://github.com/siriuspal/codelabs-inspired" url: "https://marketplace.visualstudio.com/items?itemName=SiriusPal.codelabs-inspired" + formats: null colors: bg: "#13181F" fg: "#D4D4D4" diff --git a/themes/codellsby-nightowl.yaml b/themes/codellsby-nightowl.yaml index 7f01ccc7..be69ddc0 100644 --- a/themes/codellsby-nightowl.yaml +++ b/themes/codellsby-nightowl.yaml @@ -1,4 +1,4 @@ -name: "Codellsby-NightOwl" +name: "codellsby-nightowl" source: marketplace_id: "codellsby.codellsby-nightowl-vscode" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Codellsby" repo: null url: "https://marketplace.visualstudio.com/items?itemName=codellsby.codellsby-nightowl-vscode" + formats: null colors: bg: "#181818" fg: "#D9D9D9" diff --git a/themes/codely-dark-theme.yaml b/themes/codely-dark-theme.yaml deleted file mode 100644 index 18554b52..00000000 --- a/themes/codely-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Codely Dark Theme" -source: - marketplace_id: "Rupesh9369.Themess" - version: "0.5.0" - installs: 150 - rating: 0 - ratings: 0 - author: "Rupesh9369" - repo: "https://github.com/Rupesh9369/Codely-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Rupesh9369.Themess" -colors: - bg: "#202124" - fg: "#EBDBB2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#B8BB26" - blue: "#0747E0" - magenta: "#E46C8D" - cyan: "#2BB5D7" - white: "#E5E5E5" - brightBlack: "#DDDDDD" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#E8EC25" - brightBlue: "#3B8EEA" - brightMagenta: "#E4537A" - brightCyan: "#00CDFF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 83.1 - black: 0 - red: 25.4 - green: 51.7 - yellow: 59.9 - blue: 16.5 - magenta: 42.3 - cyan: 52.6 - white: 88.8 - brightBlack: 83.7 - brightRed: 37.3 - brightGreen: 62.3 - brightYellow: 88.1 - brightBlue: 38.7 - brightMagenta: 36.6 - brightCyan: 65.4 - brightWhite: 88.8 diff --git a/themes/codeme.yaml b/themes/codeme.yaml deleted file mode 100644 index df8d9cad..00000000 --- a/themes/codeme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CodeMe" -source: - marketplace_id: "Avetis.codeme-theme" - version: "0.1.1" - installs: 8080 - rating: 0 - ratings: 0 - author: "Avetis" - repo: "https://github.com/AvetisDN/codeme-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" -colors: - bg: "#1B1D1F" - fg: "#D5D7D9" - black: "#000000" - red: "#CD3131" - green: "#12B02A" - yellow: "#E5E510" - blue: "#1461B0" - magenta: "#A944DE" - cyan: "#18A1C0" - white: "#D5D7D9" - brightBlack: "#666666" - brightRed: "#FD736B" - brightGreen: "#48E260" - brightYellow: "#F5F543" - brightBlue: "#3584D5" - brightMagenta: "#CC72FB" - brightCyan: "#5AC8FA" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 80.5 - black: 0 - red: 26 - green: 45.7 - yellow: 85 - blue: 19.6 - magenta: 28.9 - cyan: 43.3 - white: 80.5 - brightBlack: 21.4 - brightRed: 48.8 - brightGreen: 71.1 - brightYellow: 95 - brightBlue: 34.1 - brightMagenta: 46 - brightCyan: 65 - brightWhite: 89.4 diff --git a/themes/codeo-light.yaml b/themes/codeo-light.yaml index 6cf9e978..d6f82b09 100644 --- a/themes/codeo-light.yaml +++ b/themes/codeo-light.yaml @@ -8,6 +8,7 @@ source: author: "Jithin Vijayan" repo: "https://github.com/itsmeJithin/codeo" url: "https://marketplace.visualstudio.com/items?itemName=JithinVijayan.codeo" + formats: null colors: bg: "#FBFBFB" fg: "#403F53" diff --git a/themes/codeo.yaml b/themes/codeo.yaml index 6d2aa454..86f53714 100644 --- a/themes/codeo.yaml +++ b/themes/codeo.yaml @@ -8,6 +8,7 @@ source: author: "Jithin Vijayan" repo: "https://github.com/itsmeJithin/codeo" url: "https://marketplace.visualstudio.com/items?itemName=JithinVijayan.codeo" + formats: null colors: bg: "#011627" fg: "#D6DEEB" diff --git a/themes/codepdia.yaml b/themes/codepdia.yaml index b0b47472..2451445a 100644 --- a/themes/codepdia.yaml +++ b/themes/codepdia.yaml @@ -8,6 +8,7 @@ source: author: "codepedia" repo: "https://github.com/codepediair/codepediatheme" url: "https://marketplace.visualstudio.com/items?itemName=codepedia.codepedia" + formats: null colors: bg: "#141413" fg: "#EAE4DA" diff --git a/themes/codepen-nights.yaml b/themes/codepen-nights.yaml index 4041088f..a74fd27a 100644 --- a/themes/codepen-nights.yaml +++ b/themes/codepen-nights.yaml @@ -1,13 +1,14 @@ -name: "CodePen-Nights" +name: "CodePen Nights" source: marketplace_id: "klarefrank.codepen-nights" version: "0.0.5" - installs: 5259 + installs: 5260 rating: 5 ratings: 2 author: "Klare" repo: "https://github.com/kfrank/CodePen-Nights" url: "https://marketplace.visualstudio.com/items?itemName=klarefrank.codepen-nights" + formats: null colors: bg: "#1E1F27" fg: "#EEFFFF" diff --git a/themes/codepixel-modern-dark.yaml b/themes/codepixel-modern-dark.yaml index a6301c5c..6636eb3c 100644 --- a/themes/codepixel-modern-dark.yaml +++ b/themes/codepixel-modern-dark.yaml @@ -8,6 +8,8 @@ source: author: "Amir Philip Adam" repo: "https://github.com/amirphiladam2/CoderPixel" url: "https://marketplace.visualstudio.com/items?itemName=AmirPhilipAdam.codepixelmodern" + formats: + zed: "https://raw.githubusercontent.com/amirphiladam2/CoderPixel/main/themes/- Markdown optimized with special formatting for documentation-color-theme.json" colors: bg: "#0A0A0F" fg: "#E2E8F0" diff --git a/themes/coder-coder-dark-redefined.yaml b/themes/coder-coder-dark-redefined.yaml index 11bea61e..1b800c91 100644 --- a/themes/coder-coder-dark-redefined.yaml +++ b/themes/coder-coder-dark-redefined.yaml @@ -2,12 +2,13 @@ name: "Coder Coder Dark Redefined" source: marketplace_id: "moondevaa.codercoderdarkredefined" version: "0.1.2" - installs: 1534 + installs: 1535 rating: 5 ratings: 1 author: "moondevaa" repo: "https://github.com/AaBbdev29/Redefined-coder" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.codercoderdarkredefined" + formats: null colors: bg: "#0E0D1A" fg: "#8DA0AD" diff --git a/themes/coder-vai-forest.yaml b/themes/coder-vai-forest.yaml deleted file mode 100644 index 9afa6eac..00000000 --- a/themes/coder-vai-forest.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Coder Vai Forest" -source: - marketplace_id: "umorfaruksupto.coder-vai" - version: "1.0.0" - installs: 429 - rating: 0 - ratings: 0 - author: "umorfaruksupto" - repo: "https://github.com/umorfaruksupto/coder-vai" - url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" -colors: - bg: "#1A1F1A" - fg: "#D3E4CD" - black: "#2D3C2D" - red: "#D97979" - green: "#9FC08D" - yellow: "#E0C080" - blue: "#7FBC8C" - magenta: "#B8A0D0" - cyan: "#85C5A6" - white: "#C7D7C7" - brightBlack: "#5A6B5A" - brightRed: "#E89999" - brightGreen: "#B5D4A6" - brightYellow: "#F0D49A" - brightBlue: "#96CCA0" - brightMagenta: "#C9B3E0" - brightCyan: "#A0D8BB" - brightWhite: "#E5F0E5" -meta: - mode: "dark" - accent: "orange" - hue: 145 - pair: null - contrast: - fg: 85.4 - black: 0 - red: 43.4 - green: 61.4 - yellow: 69.1 - blue: 56.8 - magenta: 54.2 - cyan: 62.1 - white: 77.9 - brightBlack: 21.5 - brightRed: 56.7 - brightGreen: 73.3 - brightYellow: 80.6 - brightBlue: 66.4 - brightMagenta: 64.3 - brightCyan: 73.8 - brightWhite: 94.3 diff --git a/themes/coder-vai-light.yaml b/themes/coder-vai-light.yaml deleted file mode 100644 index eea3526a..00000000 --- a/themes/coder-vai-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Coder Vai Light" -source: - marketplace_id: "umorfaruksupto.coder-vai" - version: "1.0.0" - installs: 429 - rating: 0 - ratings: 0 - author: "umorfaruksupto" - repo: "https://github.com/umorfaruksupto/coder-vai" - url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" -colors: - bg: "#EFF1F5" - fg: "#4C4F69" - black: "#5C5F77" - red: "#D20F39" - green: "#40A02B" - yellow: "#DF8E1D" - blue: "#1E66F5" - magenta: "#EA76CB" - cyan: "#179299" - white: "#ACB0BE" - brightBlack: "#6C6F85" - brightRed: "#D20F39" - brightGreen: "#40A02B" - brightYellow: "#DF8E1D" - brightBlue: "#1E66F5" - brightMagenta: "#EA76CB" - brightCyan: "#179299" - brightWhite: "#BCC0CC" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 79.3 - black: 72.8 - red: 66.3 - green: 52.1 - yellow: 42.3 - blue: 64.8 - magenta: 42.6 - cyan: 56.1 - white: 34.1 - brightBlack: 65.8 - brightRed: 66.3 - brightGreen: 52.1 - brightYellow: 42.3 - brightBlue: 64.8 - brightMagenta: 42.6 - brightCyan: 56.1 - brightWhite: 25.5 diff --git a/themes/coder-vai-ocean.yaml b/themes/coder-vai-ocean.yaml deleted file mode 100644 index 71e574bf..00000000 --- a/themes/coder-vai-ocean.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Coder Vai Ocean" -source: - marketplace_id: "umorfaruksupto.coder-vai" - version: "1.0.0" - installs: 429 - rating: 0 - ratings: 0 - author: "umorfaruksupto" - repo: "https://github.com/umorfaruksupto/coder-vai" - url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" -colors: - bg: "#0F1419" - fg: "#BFBDB6" - black: "#1F2430" - red: "#FF3333" - green: "#C2D94C" - yellow: "#FFB454" - blue: "#59C2FF" - magenta: "#FFEE99" - cyan: "#95E6CB" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#FF6565" - brightGreen: "#D5F770" - brightYellow: "#FFD173" - brightBlue: "#73D0FF" - brightMagenta: "#FFFFB8" - brightCyan: "#B8F0DF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 249 - pair: null - contrast: - fg: 66.2 - black: 0 - red: 38.9 - green: 76.2 - yellow: 69.9 - blue: 63.6 - magenta: 95.5 - cyan: 81.2 - white: 72 - brightBlack: 23.2 - brightRed: 47 - brightGreen: 93.3 - brightYellow: 81.9 - brightBlue: 71.2 - brightMagenta: 104.4 - brightCyan: 90 - brightWhite: 107.2 diff --git a/themes/coder-vai-purple-haze.yaml b/themes/coder-vai-purple-haze.yaml deleted file mode 100644 index f81595f3..00000000 --- a/themes/coder-vai-purple-haze.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Coder Vai Purple Haze" -source: - marketplace_id: "umorfaruksupto.coder-vai" - version: "1.0.0" - installs: 429 - rating: 0 - ratings: 0 - author: "umorfaruksupto" - repo: "https://github.com/umorfaruksupto/coder-vai" - url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" -colors: - bg: "#1A0D2E" - fg: "#E4D4F4" - black: "#2D1B4E" - red: "#FF6AC1" - green: "#9AEDFE" - yellow: "#F5D76E" - blue: "#B794F6" - magenta: "#F093FB" - cyan: "#78E8E8" - white: "#D4C5E0" - brightBlack: "#6B4F8A" - brightRed: "#FF8AD4" - brightGreen: "#B4F4FF" - brightYellow: "#FFEB9C" - brightBlue: "#C9B0FF" - brightMagenta: "#FFB3FF" - brightCyan: "#9FFBFB" - brightWhite: "#F0E6F6" -meta: - mode: "dark" - accent: "red" - hue: 299 - pair: null - contrast: - fg: 83.3 - black: 0 - red: 51.1 - green: 87.2 - yellow: 82.6 - blue: 53.1 - magenta: 61.9 - cyan: 81.3 - white: 73.9 - brightBlack: 17.9 - brightRed: 59.9 - brightGreen: 92.9 - brightYellow: 94 - brightBlue: 65.9 - brightMagenta: 75.3 - brightCyan: 94.3 - brightWhite: 92.9 diff --git a/themes/coder30.yaml b/themes/coder30.yaml index fa42e1a9..72f87113 100644 --- a/themes/coder30.yaml +++ b/themes/coder30.yaml @@ -8,6 +8,7 @@ source: author: "Rishi Kumar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NitishRoy7033.Coder30" + formats: null colors: bg: "#282A36" fg: "#FFE300" diff --git a/themes/codesandbox-theme.yaml b/themes/codesandbox-theme.yaml deleted file mode 100644 index a4a09d1c..00000000 --- a/themes/codesandbox-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CodeSandbox Theme" -source: - marketplace_id: "nerudevs.codesandbox-unofficial" - version: "1.0.2" - installs: 459 - rating: 0 - ratings: 0 - author: "neru devs" - repo: "https://github.com/isneru/vsc-themes.git#main" - url: "https://marketplace.visualstudio.com/items?itemName=nerudevs.codesandbox-unofficial" -colors: - bg: "#151515" - fg: "#999999" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 46.4 - black: 0 - red: 26.9 - green: 53.2 - yellow: 85.8 - blue: 27.6 - magenta: 29.9 - cyan: 47.7 - white: 90.2 - brightBlack: 22.2 - brightRed: 38.7 - brightGreen: 63.7 - brightYellow: 95.8 - brightBlue: 40.2 - brightMagenta: 45.6 - brightCyan: 55.6 - brightWhite: 90.2 diff --git a/themes/codeschool2-minimal.yaml b/themes/codeschool2-minimal.yaml deleted file mode 100644 index 6db050ce..00000000 --- a/themes/codeschool2-minimal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CodeSchool2 Minimal" -source: - marketplace_id: "gargakshit.theme-alabaster-dark" - version: "0.1.3" - installs: 4225 - rating: 0 - ratings: 0 - author: "Akshit Garg" - repo: "https://github.com/gargakshit/vscode-theme-alabaster-dark" - url: "https://marketplace.visualstudio.com/items?itemName=gargakshit.theme-alabaster-dark" -colors: - bg: "#0E1415" - fg: "#CECECE" - black: "#000000" - red: "#E25D56" - green: "#73CA50" - yellow: "#E9BF57" - blue: "#4A88E4" - magenta: "#915CAF" - cyan: "#23ACDD" - white: "#CECECE" - brightBlack: "#777777" - brightRed: "#F36868" - brightGreen: "#88DB3F" - brightYellow: "#F0BF7A" - brightBlue: "#6F8FDB" - brightMagenta: "#E987E9" - brightCyan: "#4AC9E2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 76.2 - black: 0 - red: 38.8 - green: 62.2 - yellow: 70.5 - blue: 38.4 - magenta: 27.8 - cyan: 50.7 - white: 76.2 - brightBlack: 29.9 - brightRed: 45.1 - brightGreen: 71.6 - brightYellow: 72.2 - brightBlue: 42.4 - brightMagenta: 56.3 - brightCyan: 64.5 - brightWhite: 107.2 diff --git a/themes/codesso-unison-beta.yaml b/themes/codesso-unison-beta.yaml deleted file mode 100644 index 2a49ce90..00000000 --- a/themes/codesso-unison-beta.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Codesso Unison (Beta)" -source: - marketplace_id: "elvados.codesso" - version: "1.4.1" - installs: 1049 - rating: 5 - ratings: 4 - author: "vadyapan" - repo: "https://github.com/vadyapan/theme-codesso" - url: "https://marketplace.visualstudio.com/items?itemName=elvados.codesso" -colors: - bg: "#F8FAFD" - fg: "#232731" - black: "#3B4252" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.7 - black: 90.2 - red: 64.6 - green: 36.5 - yellow: 22.5 - blue: 49.1 - magenta: 51.2 - cyan: 35.6 - white: 7.6 - brightBlack: 82.5 - brightRed: 64.6 - brightGreen: 36.5 - brightYellow: 22.5 - brightBlue: 49.1 - brightMagenta: 51.2 - brightCyan: 37.6 - brightWhite: 0 diff --git a/themes/codetest.yaml b/themes/codetest.yaml index 8537b690..ac627681 100644 --- a/themes/codetest.yaml +++ b/themes/codetest.yaml @@ -8,6 +8,7 @@ source: author: "ArturGuedx" repo: "https://github.com/ArturGuedes/test" url: "https://marketplace.visualstudio.com/items?itemName=ArturGuedx.agx-code" + formats: null colors: bg: "#151515" fg: "#BBBBBB" diff --git a/themes/codethread-black.yaml b/themes/codethread-black.yaml index e014d634..a3bf9cc4 100644 --- a/themes/codethread-black.yaml +++ b/themes/codethread-black.yaml @@ -1,13 +1,14 @@ -name: "codethread-black" +name: "Codethread Black" source: marketplace_id: "JayantRohila.codethread-black" version: "2.2.6" - installs: 2180 + installs: 2182 rating: 5 ratings: 1 author: "Jayant Rohila" repo: "https://github.com/jayantrohila57/codethread-black" url: "https://marketplace.visualstudio.com/items?itemName=JayantRohila.codethread-black" + formats: null colors: bg: "#000000" fg: "#4D4D4D" diff --git a/themes/codeuccino.yaml b/themes/codeuccino.yaml index 3bc6f989..67c3e72f 100644 --- a/themes/codeuccino.yaml +++ b/themes/codeuccino.yaml @@ -1,4 +1,4 @@ -name: "Codeuccino" +name: "codeuccino" source: marketplace_id: "HariVajja.codeuccino" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Hari Vajja" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HariVajja.codeuccino" + formats: null colors: bg: "#F9D397" fg: "#FFFFFF" diff --git a/themes/codevibe-epic-theme.yaml b/themes/codevibe-epic-theme.yaml deleted file mode 100644 index 52f5def3..00000000 --- a/themes/codevibe-epic-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CodeVibe - Epic Theme" -source: - marketplace_id: "noyonalways.codevibe-themes" - version: "0.0.4" - installs: 644 - rating: 0 - ratings: 0 - author: "Noyon Rahman" - repo: "https://github.com/noyonalways/codevibe-themes" - url: "https://marketplace.visualstudio.com/items?itemName=noyonalways.codevibe-themes" -colors: - bg: "#292D3E" - fg: "#D9D8D8" - black: "#000000" - red: "#FF4040" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "orange" - hue: 274 - pair: null - contrast: - fg: 78.5 - black: 0 - red: 36.5 - green: 49.4 - yellow: 82 - blue: 23.8 - magenta: 26.2 - cyan: 43.9 - white: 86.4 - brightBlack: 18.4 - brightRed: 35 - brightGreen: 59.9 - brightYellow: 92 - brightBlue: 36.4 - brightMagenta: 41.8 - brightCyan: 51.8 - brightWhite: 86.4 diff --git a/themes/codewithme-codex.yaml b/themes/codewithme-codex.yaml index b70ca0b7..a7de8ed2 100644 --- a/themes/codewithme-codex.yaml +++ b/themes/codewithme-codex.yaml @@ -8,6 +8,7 @@ source: author: "Emmanuel Abraham Jones" repo: "https://github.com/codewithme224/codewithme-theme" url: "https://marketplace.visualstudio.com/items?itemName=codewithme224.codewithme224" + formats: null colors: bg: "#051928" fg: "#D4D4D4" diff --git a/themes/codewithme-dark-cmyk.yaml b/themes/codewithme-dark-cmyk.yaml index 984ec9ed..dce37c63 100644 --- a/themes/codewithme-dark-cmyk.yaml +++ b/themes/codewithme-dark-cmyk.yaml @@ -8,6 +8,7 @@ source: author: "Emmanuel Abraham Jones" repo: "https://github.com/codewithme224/codewithme-theme" url: "https://marketplace.visualstudio.com/items?itemName=codewithme224.codewithme224" + formats: null colors: bg: "#0F0F17" fg: "#FFFFFF" diff --git a/themes/codewithsg-dark-theme.yaml b/themes/codewithsg-dark-theme.yaml deleted file mode 100644 index 0d1a5877..00000000 --- a/themes/codewithsg-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Codewithsg Dark Theme" -source: - marketplace_id: "codewithsg.codewithsgdark" - version: "0.0.1" - installs: 12 - rating: 0 - ratings: 0 - author: "Saragam Ghimire" - repo: "https://github.com/codewithsg/codewithsgDark" - url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.codewithsgdark" -colors: - bg: "#000000" - fg: "#E6EDF3" - black: "#4FF36A" - red: "#CA0000" - green: "#3FB950" - yellow: "#3CFF00" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#00FF22" - brightBlack: "#4FF36A" - brightRed: "#CA0000" - brightGreen: "#3FB950" - brightYellow: "#3CFF00" - brightBlue: "#58A6FF" - brightMagenta: "#BC8CFF" - brightCyan: "#39C5CF" - brightWhite: "#00FF22" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 95.5 - black: 81.9 - red: 24.8 - green: 52.6 - yellow: 87 - blue: 52.7 - magenta: 52.7 - cyan: 61.9 - white: 86.5 - brightBlack: 81.9 - brightRed: 24.8 - brightGreen: 52.6 - brightYellow: 87 - brightBlue: 52.7 - brightMagenta: 52.7 - brightCyan: 61.9 - brightWhite: 86.5 diff --git a/themes/codexflow-themes.yaml b/themes/codexflow-themes.yaml index 2ae958b7..a90cf151 100644 --- a/themes/codexflow-themes.yaml +++ b/themes/codexflow-themes.yaml @@ -8,6 +8,7 @@ source: author: "CodeXFlow" repo: "https://github.com/CodeXFlow/CodeXFlow-Themes-VS-Codes" url: "https://marketplace.visualstudio.com/items?itemName=CodeXFlow.codexflow-themes" + formats: null colors: bg: "#030C1B" fg: "#E6C91C" diff --git a/themes/codiefy-optimas-prime-color-theme.yaml b/themes/codiefy-optimas-prime-color-theme.yaml deleted file mode 100644 index aa30ed13..00000000 --- a/themes/codiefy-optimas-prime-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Codiefy optimas prime color theme" -source: - marketplace_id: "siyam.Codeify" - version: "1.1.2" - installs: 2981 - rating: 5 - ratings: 4 - author: "siyam" - repo: "https://github.com/SISIYAM/codiefy-color-theme-vs-code-extension" - url: "https://marketplace.visualstudio.com/items?itemName=siyam.Codeify" -colors: - bg: "#241E1E" - fg: "#F5F5F5" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 99.3 - black: 0 - red: 25.7 - green: 52 - yellow: 84.6 - blue: 26.4 - magenta: 28.7 - cyan: 46.5 - white: 89 - brightBlack: 21 - brightRed: 37.5 - brightGreen: 62.5 - brightYellow: 94.6 - brightBlue: 39 - brightMagenta: 44.3 - brightCyan: 54.4 - brightWhite: 89 diff --git a/themes/coding-light-theme.yaml b/themes/coding-light-theme.yaml index dad1b65b..1ed72e68 100644 --- a/themes/coding-light-theme.yaml +++ b/themes/coding-light-theme.yaml @@ -8,6 +8,7 @@ source: author: "SgtCoder" repo: "https://github.com/sgtcoder/vscode-developer-coding-theme" url: "https://marketplace.visualstudio.com/items?itemName=sgtcoder.developer-coding-theme" + formats: null colors: bg: "#F2F2F2" fg: "#212121" diff --git a/themes/codingwish.yaml b/themes/codingwish.yaml index c1c64676..8b0d3a0d 100644 --- a/themes/codingwish.yaml +++ b/themes/codingwish.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "CodingWish.codingwish-theme" version: "1.0.0" installs: 86 + rating: 0 + ratings: 0 author: "CodingWish" repo: "https://github.com/codingwish/codingwish-theme" url: "https://marketplace.visualstudio.com/items?itemName=CodingWish.codingwish-theme" + formats: null colors: bg: "#0D1117" fg: "#C9D1D9" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "green" hue: 258 + pair: null contrast: fg: 77.5 black: 13.1 diff --git a/themes/cods.yaml b/themes/cods.yaml index 50efb890..5b31d598 100644 --- a/themes/cods.yaml +++ b/themes/cods.yaml @@ -8,6 +8,7 @@ source: author: "emet" repo: null url: "https://marketplace.visualstudio.com/items?itemName=emet.cods" + formats: null colors: bg: "#181C28" fg: "#ABB2BF" diff --git a/themes/coelhin-smooth.yaml b/themes/coelhin-smooth.yaml index f59b488a..26aadd9a 100644 --- a/themes/coelhin-smooth.yaml +++ b/themes/coelhin-smooth.yaml @@ -8,6 +8,7 @@ source: author: "coelhiN" repo: "https://github.com/coelhiN77/coelhiN-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=coelhiN.coelhiN-theme" + formats: null colors: bg: "#242424" fg: "#D4D4D4" diff --git a/themes/coelhin-violet.yaml b/themes/coelhin-violet.yaml index 05663d7c..98b23f63 100644 --- a/themes/coelhin-violet.yaml +++ b/themes/coelhin-violet.yaml @@ -8,6 +8,7 @@ source: author: "coelhiN" repo: "https://github.com/coelhiN77/coelhiN-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=coelhiN.coelhiN-theme" + formats: null colors: bg: "#282B44" fg: "#FFFADF" diff --git a/themes/coffee-contrast.yaml b/themes/coffee-contrast.yaml deleted file mode 100644 index 6141cc44..00000000 --- a/themes/coffee-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "coffee-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0F0C0C" - fg: "#C4BABB" - black: "#1D1717" - red: "#BA0E2E" - green: "#0A9F9B" - yellow: "#F5F3EB" - blue: "#E77757" - magenta: "#80B2B0" - cyan: "#E77757" - white: "#D0C8C9" - brightBlack: "#483939" - brightRed: "#F03E5F" - brightGreen: "#1EF1EB" - brightYellow: "#FFFFFF" - brightBlue: "#F4BFB0" - brightMagenta: "#C0D8D7" - brightCyan: "#F4BFB0" - brightWhite: "#F3F1F1" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 66.2 - black: 0 - red: 21.2 - green: 42.1 - yellow: 99.6 - blue: 46.3 - magenta: 55.4 - cyan: 46.3 - white: 74.1 - brightBlack: 0 - brightRed: 37.5 - brightGreen: 83.8 - brightYellow: 107.6 - brightBlue: 74.8 - brightMagenta: 79.7 - brightCyan: 74.8 - brightWhite: 98.7 diff --git a/themes/coffee-light.yaml b/themes/coffee-light.yaml deleted file mode 100644 index 132d16c8..00000000 --- a/themes/coffee-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "coffee-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#F4F2F2" - fg: "#282122" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#0A9F9B" - yellow: "#282122" - blue: "#E77757" - magenta: "#80B2B0" - cyan: "#E77757" - white: "#362D2E" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#1EF1EB" - brightYellow: "#604F52" - brightBlue: "#F4BFB0" - brightMagenta: "#C0D8D7" - brightCyan: "#F4BFB0" - brightWhite: "#604F52" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 95.2 - black: 0 - red: 72.8 - green: 51.8 - yellow: 95.2 - blue: 47.7 - magenta: 38.9 - cyan: 47.7 - white: 92.3 - brightBlack: 0 - brightRed: 56.4 - brightGreen: 11.9 - brightYellow: 79.2 - brightBlue: 20.4 - brightMagenta: 15.8 - brightCyan: 20.4 - brightWhite: 79.2 diff --git a/themes/coffee.yaml b/themes/coffee.yaml deleted file mode 100644 index 8b12c6df..00000000 --- a/themes/coffee.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "coffee" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#282122" - fg: "#C4BABB" - black: "#362D2E" - red: "#BA0E2E" - green: "#0A9F9B" - yellow: "#F5F3EB" - blue: "#E77757" - magenta: "#80B2B0" - cyan: "#E77757" - white: "#D0C8C9" - brightBlack: "#604F52" - brightRed: "#F03E5F" - brightGreen: "#1EF1EB" - brightYellow: "#FFFFFF" - brightBlue: "#F4BFB0" - brightMagenta: "#C0D8D7" - brightCyan: "#F4BFB0" - brightWhite: "#F3F1F1" -meta: - mode: "dark" - accent: "orange" - hue: 8 - pair: null - contrast: - fg: 63.9 - black: 0 - red: 19 - green: 39.9 - yellow: 97.4 - blue: 44 - magenta: 53.1 - cyan: 44 - white: 71.8 - brightBlack: 12.9 - brightRed: 35.3 - brightGreen: 81.5 - brightYellow: 105.3 - brightBlue: 72.5 - brightMagenta: 77.4 - brightCyan: 72.5 - brightWhite: 96.4 diff --git a/themes/coffeespace.yaml b/themes/coffeespace.yaml index 0bd2a469..b881814f 100644 --- a/themes/coffeespace.yaml +++ b/themes/coffeespace.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/MyThemes" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" + formats: null colors: bg: "#3A2844" fg: "#FAEBD8" diff --git a/themes/coffeyscript-theme.yaml b/themes/coffeyscript-theme.yaml index ca7b0b35..fec07cd7 100644 --- a/themes/coffeyscript-theme.yaml +++ b/themes/coffeyscript-theme.yaml @@ -8,6 +8,7 @@ source: author: "Michael Coffey Mint" repo: "https://github.com/MichaelCoffey6/CoffeyScript-VSC-Theme" url: "https://marketplace.visualstudio.com/items?itemName=MichaelCoffeyMint.coffeyscript-theme" + formats: null colors: bg: "#2F2625" fg: "#D4D4D4" diff --git a/themes/cognac.yaml b/themes/cognac.yaml index 3b0a8b11..71fffcbf 100644 --- a/themes/cognac.yaml +++ b/themes/cognac.yaml @@ -8,6 +8,7 @@ source: author: "ArtSabintsev" repo: "git://github.com/ArtSabintsev/Cognac-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=ArtSabintsev.cognac" + formats: null colors: bg: "#222222" fg: "#DFDFDF" diff --git a/themes/coimbrox-minimalist-panda.yaml b/themes/coimbrox-minimalist-panda.yaml deleted file mode 100644 index dcce6c6a..00000000 --- a/themes/coimbrox-minimalist-panda.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Coimbrox Minimalist Panda" -source: - marketplace_id: "GabrielCoimbra.coimbrox-panda-theme" - version: "0.0.2" - installs: 64 - rating: 0 - ratings: 0 - author: "Gabriel Coimbra" - repo: "https://github.com/coimbrox/CoimbroxMinimalistPandaTheme" - url: "https://marketplace.visualstudio.com/items?itemName=GabrielCoimbra.coimbrox-panda-theme" -colors: - bg: "#1E1E1E" - fg: "#E6E6E6" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 89.8 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/coimbroxthmedark.yaml b/themes/coimbroxthmedark.yaml deleted file mode 100644 index 244ac1e4..00000000 --- a/themes/coimbroxthmedark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CoimbroxThmeDark" -source: - marketplace_id: "Coimbrox.coimbrox-theme" - version: "0.0.4" - installs: 1869 - rating: 5 - ratings: 2 - author: "Coimbrox" - repo: "https://github.com/coimbrox/coimbrox-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Coimbrox.coimbrox-theme" -colors: - bg: "#1F122C" - fg: "#81D140" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 306 - pair: null - contrast: - fg: 65.7 - black: 0 - red: 26.5 - green: 52.8 - yellow: 85.4 - blue: 27.3 - magenta: 29.6 - cyan: 47.4 - white: 89.8 - brightBlack: 21.9 - brightRed: 38.4 - brightGreen: 63.4 - brightYellow: 95.5 - brightBlue: 39.8 - brightMagenta: 45.2 - brightCyan: 55.2 - brightWhite: 89.8 diff --git a/themes/cold-night.yaml b/themes/cold-night.yaml index b3e8ba1a..5bee878a 100644 --- a/themes/cold-night.yaml +++ b/themes/cold-night.yaml @@ -2,12 +2,13 @@ name: "Cold Night" source: marketplace_id: "MarkZaky.cold-night" version: "1.2.1" - installs: 4763 + installs: 4765 rating: 5 ratings: 3 author: "MarkZaky" repo: "https://github.com/MarkZaki/cold-night-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=MarkZaky.cold-night" + formats: null colors: bg: "#193549" fg: "#FFFFFF" diff --git a/themes/cold-python-theme.yaml b/themes/cold-python-theme.yaml index ae10f1d5..5a6e6821 100644 --- a/themes/cold-python-theme.yaml +++ b/themes/cold-python-theme.yaml @@ -2,12 +2,13 @@ name: "Cold Python Theme" source: marketplace_id: "nparamonov.cold-python-theme" version: "1.14.1" - installs: 31709 + installs: 31736 rating: 5 ratings: 9 author: "nparamonov" repo: "https://github.com/nparamonov/vscode-cold-python-theme" url: "https://marketplace.visualstudio.com/items?itemName=nparamonov.cold-python-theme" + formats: null colors: bg: "#1E1F22" fg: "#BCBEC4" diff --git a/themes/coldark-cold.yaml b/themes/coldark-cold.yaml deleted file mode 100644 index e02a3b30..00000000 --- a/themes/coldark-cold.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Coldark - Cold" -source: - marketplace_id: "ArmandPhilippot.coldark" - version: "1.2.11" - installs: 6471 - rating: 5 - ratings: 1 - author: "Armand Philippot" - repo: "https://github.com/ArmandPhilippot/coldark-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=ArmandPhilippot.coldark" -colors: - bg: "#E3EAF2" - fg: "#111B27" - black: "#E3EAF2" - red: "#C22F2E" - green: "#116B00" - yellow: "#755F00" - blue: "#005A8E" - magenta: "#AF00AF" - cyan: "#006D6D" - white: "#111B27" - brightBlack: "#3C526D" - brightRed: "#C22F2E" - brightGreen: "#116B00" - brightYellow: "#755F00" - brightBlue: "#005A8E" - brightMagenta: "#AF00AF" - brightCyan: "#006D6D" - brightWhite: "#0B121B" -meta: - mode: "light" - accent: "pink" - hue: 252 - pair: null - contrast: - fg: 91.2 - black: 0 - red: 63.7 - green: 69.6 - yellow: 67.7 - blue: 72 - magenta: 65.1 - cyan: 67.3 - white: 91.2 - brightBlack: 74.8 - brightRed: 63.7 - brightGreen: 69.6 - brightYellow: 67.7 - brightBlue: 72 - brightMagenta: 65.1 - brightCyan: 67.3 - brightWhite: 92.3 diff --git a/themes/coldark-dark.yaml b/themes/coldark-dark.yaml deleted file mode 100644 index cb0f5e3a..00000000 --- a/themes/coldark-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Coldark - Dark" -source: - marketplace_id: "ArmandPhilippot.coldark" - version: "1.2.11" - installs: 6471 - rating: 5 - ratings: 1 - author: "Armand Philippot" - repo: "https://github.com/ArmandPhilippot/coldark-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=ArmandPhilippot.coldark" -colors: - bg: "#111B27" - fg: "#E3EAF2" - black: "#111B27" - red: "#CD6660" - green: "#91D076" - yellow: "#E6D37A" - blue: "#6CB8E6" - magenta: "#F4ADF4" - cyan: "#66CCCC" - white: "#E3EAF2" - brightBlack: "#8DA1B9" - brightRed: "#CD6660" - brightGreen: "#91D076" - brightYellow: "#E6D37A" - brightBlue: "#6CB8E6" - brightMagenta: "#F4ADF4" - brightCyan: "#66CCCC" - brightWhite: "#F0F4F8" -meta: - mode: "dark" - accent: "green" - hue: 253 - pair: null - contrast: - fg: 92.2 - black: 0 - red: 36.1 - green: 67.1 - yellow: 78.3 - blue: 58.1 - magenta: 70.1 - cyan: 65.2 - white: 92.2 - brightBlack: 48.9 - brightRed: 36.1 - brightGreen: 67.1 - brightYellow: 78.3 - brightBlue: 58.1 - brightMagenta: 70.1 - brightCyan: 65.2 - brightWhite: 98.9 diff --git a/themes/collapse.yaml b/themes/collapse.yaml deleted file mode 100644 index 9d1e705a..00000000 --- a/themes/collapse.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Collapse" -source: - marketplace_id: "shwuy.zhxo-themes" - version: "2.0.1" - installs: 1481 - rating: 5 - ratings: 4 - author: "shwuy" - repo: "https://github.com/sxhk0/.theme" - url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" -colors: - bg: "#111827" - fg: "#DEDEDE" - black: "#3B3B3B" - red: "#E03C3C" - green: "#22CD8B" - yellow: "#EEC051" - blue: "#668BE2" - magenta: "#A34BB0" - cyan: "#10CCD5" - white: "#CBCBCB" - brightBlack: "#66676F" - brightRed: "#F08359" - brightGreen: "#3FE6A3" - brightYellow: "#FBFB7B" - brightBlue: "#81A6FD" - brightMagenta: "#C970D6" - brightCyan: "#4DEAEA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 265 - pair: null - contrast: - fg: 85.5 - black: 0 - red: 32.1 - green: 61.4 - yellow: 71.1 - blue: 40.3 - magenta: 26.4 - cyan: 63.7 - white: 73.9 - brightBlack: 22.5 - brightRed: 50.5 - brightGreen: 74.9 - brightYellow: 99.9 - brightBlue: 54 - brightMagenta: 43 - brightCyan: 80.2 - brightWhite: 106.7 diff --git a/themes/color-coffee-dark.yaml b/themes/color-coffee-dark.yaml deleted file mode 100644 index 5db83101..00000000 --- a/themes/color-coffee-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Color Coffee Dark" -source: - marketplace_id: "color-syntax.coffee-color-dark" - version: "0.4.1" - installs: 4125 - rating: 5 - ratings: 3 - author: "SkyRider" - repo: "https://github.com/FredPizarro/coffee-color-dark-syntax" - url: "https://marketplace.visualstudio.com/items?itemName=color-syntax.coffee-color-dark" -colors: - bg: "#FFFFFE" - fg: "#3D3E43" - black: "#676E95" - red: "#EC407A" - green: "#81C784" - yellow: "#FFD54F" - blue: "#0091EA" - magenta: "#AB47BC" - cyan: "#E0E0E0" - white: "#FAFAFA" - brightBlack: "#676E95" - brightRed: "#FF5572" - brightGreen: "#E6EE9C" - brightYellow: "#FFCB6B" - brightBlue: "#0091EA" - brightMagenta: "#9BEB93" - brightCyan: "#E0E0E0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 94.7 - black: 74.2 - red: 63.8 - green: 38.9 - yellow: 19.7 - blue: 60.3 - magenta: 72.7 - cyan: 15.8 - white: 0 - brightBlack: 74.2 - brightRed: 56.7 - brightGreen: 11.3 - brightYellow: 23.2 - brightBlue: 60.3 - brightMagenta: 20.4 - brightCyan: 15.8 - brightWhite: 0 diff --git a/themes/color-contrast.yaml b/themes/color-contrast.yaml deleted file mode 100644 index 79e4bd81..00000000 --- a/themes/color-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Color contrast" -source: - marketplace_id: "HironTez.color-contrast-theme" - version: "0.0.1" - installs: 3763 - rating: 0 - ratings: 0 - author: "Hiron Tez" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HironTez.color-contrast-theme" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#8F8F8F" - red: "#F82A5D" - green: "#98D800" - yellow: "#E7DC60" - blue: "#5CCAEF" - magenta: "#F57F00" - cyan: "#A57FFF" - white: "#F1F1F1" - brightBlack: "#8F8F8F" - brightRed: "#F82A5D" - brightGreen: "#98D800" - brightYellow: "#E7DC60" - brightBlue: "#5CCAEF" - brightMagenta: "#F57F00" - brightCyan: "#A57FFF" - brightWhite: "#F1F1F1" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 107.9 - black: 42.1 - red: 37.8 - green: 71.8 - yellow: 83.4 - blue: 67 - magenta: 50.9 - cyan: 45.8 - white: 98.7 - brightBlack: 42.1 - brightRed: 37.8 - brightGreen: 71.8 - brightYellow: 83.4 - brightBlue: 67 - brightMagenta: 50.9 - brightCyan: 45.8 - brightWhite: 98.7 diff --git a/themes/color-sea-blue.yaml b/themes/color-sea-blue.yaml deleted file mode 100644 index 3b254f92..00000000 --- a/themes/color-sea-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Color Sea Blue" -source: - marketplace_id: "Danesed.color-sea" - version: "1.0.0" - installs: 16 - rating: 0 - ratings: 0 - author: "Danesed" - repo: "https://github.com/danesed/colorsea-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" -colors: - bg: "#132035" - fg: "#A3A9BB" - black: "#234677" - red: "#FF2D3B" - green: "#90E0EF" - yellow: "#FF595E" - blue: "#00BBF9" - magenta: "#FF595E" - cyan: "#00BBF9" - white: "#A3A9BB" - brightBlack: "#45495D" - brightRed: "#FF2D3B" - brightGreen: "#90E0EF" - brightYellow: "#FF595E" - brightBlue: "#00BBF9" - brightMagenta: "#FF595E" - brightCyan: "#00BBF9" - brightWhite: "#A3A9BB" -meta: - mode: "dark" - accent: "orange" - hue: 260 - pair: null - contrast: - fg: 53.6 - black: 8.5 - red: 37.1 - green: 78.1 - yellow: 43.1 - blue: 57.1 - magenta: 43.1 - cyan: 57.1 - white: 53.6 - brightBlack: 9.8 - brightRed: 37.1 - brightGreen: 78.1 - brightYellow: 43.1 - brightBlue: 57.1 - brightMagenta: 43.1 - brightCyan: 57.1 - brightWhite: 53.6 diff --git a/themes/color-sea-gray.yaml b/themes/color-sea-gray.yaml deleted file mode 100644 index 160f8b05..00000000 --- a/themes/color-sea-gray.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Color Sea Gray" -source: - marketplace_id: "Danesed.color-sea" - version: "1.0.0" - installs: 16 - rating: 0 - ratings: 0 - author: "Danesed" - repo: "https://github.com/danesed/colorsea-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" -colors: - bg: "#1D202B" - fg: "#A9AAB5" - black: "#3A4562" - red: "#FF2D3B" - green: "#72DDF7" - yellow: "#FF595E" - blue: "#5C7CFA" - magenta: "#FF595E" - cyan: "#5C7CFA" - white: "#A9AAB5" - brightBlack: "#4B4B57" - brightRed: "#FF2D3B" - brightGreen: "#72DDF7" - brightYellow: "#FF595E" - brightBlue: "#5C7CFA" - brightMagenta: "#FF595E" - brightCyan: "#5C7CFA" - brightWhite: "#A9AAB5" -meta: - mode: "dark" - accent: "orange" - hue: 273 - pair: null - contrast: - fg: 54.4 - black: 8.2 - red: 37 - green: 75.2 - yellow: 43.1 - blue: 35.5 - magenta: 43.1 - cyan: 35.5 - white: 54.4 - brightBlack: 10.5 - brightRed: 37 - brightGreen: 75.2 - brightYellow: 43.1 - brightBlue: 35.5 - brightMagenta: 43.1 - brightCyan: 35.5 - brightWhite: 54.4 diff --git a/themes/color-sea-green.yaml b/themes/color-sea-green.yaml deleted file mode 100644 index 09ef08a3..00000000 --- a/themes/color-sea-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Color Sea Green" -source: - marketplace_id: "Danesed.color-sea" - version: "1.0.0" - installs: 16 - rating: 0 - ratings: 0 - author: "Danesed" - repo: "https://github.com/danesed/colorsea-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" -colors: - bg: "#132E31" - fg: "#A4B5BA" - black: "#1F5C61" - red: "#FF2D3B" - green: "#80FFDB" - yellow: "#2EC4B6" - blue: "#00A6FB" - magenta: "#2EC4B6" - cyan: "#00A6FB" - white: "#A4B5BA" - brightBlack: "#46555C" - brightRed: "#FF2D3B" - brightGreen: "#80FFDB" - brightYellow: "#2EC4B6" - brightBlue: "#00A6FB" - brightMagenta: "#2EC4B6" - brightCyan: "#00A6FB" - brightWhite: "#A4B5BA" -meta: - mode: "dark" - accent: "orange" - hue: 205 - pair: null - contrast: - fg: 56.7 - black: 12 - red: 35.3 - green: 89.7 - yellow: 56.1 - blue: 46.7 - magenta: 56.1 - cyan: 46.7 - white: 56.7 - brightBlack: 11.3 - brightRed: 35.3 - brightGreen: 89.7 - brightYellow: 56.1 - brightBlue: 46.7 - brightMagenta: 56.1 - brightCyan: 46.7 - brightWhite: 56.7 diff --git a/themes/color-sea-orange.yaml b/themes/color-sea-orange.yaml deleted file mode 100644 index a40c4447..00000000 --- a/themes/color-sea-orange.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Color Sea Orange" -source: - marketplace_id: "Danesed.color-sea" - version: "1.0.0" - installs: 16 - rating: 0 - ratings: 0 - author: "Danesed" - repo: "https://github.com/danesed/colorsea-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" -colors: - bg: "#312117" - fg: "#B8AFA6" - black: "#6E422B" - red: "#FF2D3B" - green: "#56CFE1" - yellow: "#FB5607" - blue: "#4D8EFF" - magenta: "#FB5607" - cyan: "#4D8EFF" - white: "#B8AFA6" - brightBlack: "#5A5348" - brightRed: "#FF2D3B" - brightGreen: "#56CFE1" - brightYellow: "#FB5607" - brightBlue: "#4D8EFF" - brightMagenta: "#FB5607" - brightCyan: "#4D8EFF" - brightWhite: "#B8AFA6" -meta: - mode: "dark" - accent: "orange" - hue: 53 - pair: null - contrast: - fg: 56.9 - black: 10.3 - red: 36.3 - green: 65.4 - yellow: 40.2 - blue: 40.4 - magenta: 40.2 - cyan: 40.4 - white: 56.9 - brightBlack: 12.8 - brightRed: 36.3 - brightGreen: 65.4 - brightYellow: 40.2 - brightBlue: 40.4 - brightMagenta: 40.2 - brightCyan: 40.4 - brightWhite: 56.9 diff --git a/themes/color-sea-purple.yaml b/themes/color-sea-purple.yaml deleted file mode 100644 index a95910fd..00000000 --- a/themes/color-sea-purple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Color Sea Purple" -source: - marketplace_id: "Danesed.color-sea" - version: "1.0.0" - installs: 16 - rating: 0 - ratings: 0 - author: "Danesed" - repo: "https://github.com/danesed/colorsea-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" -colors: - bg: "#1F192F" - fg: "#AEA7B7" - black: "#48387A" - red: "#FF2D3B" - green: "#C77DFF" - yellow: "#8B5CF6" - blue: "#4CC9F0" - magenta: "#8B5CF6" - cyan: "#4CC9F0" - white: "#AEA7B7" - brightBlack: "#514959" - brightRed: "#FF2D3B" - brightGreen: "#C77DFF" - brightYellow: "#8B5CF6" - brightBlue: "#4CC9F0" - brightMagenta: "#8B5CF6" - brightCyan: "#4CC9F0" - brightWhite: "#AEA7B7" -meta: - mode: "dark" - accent: "orange" - hue: 295 - pair: null - contrast: - fg: 54.4 - black: 8 - red: 37.5 - green: 48.3 - yellow: 31.3 - blue: 64.3 - magenta: 31.3 - cyan: 64.3 - white: 54.4 - brightBlack: 11.1 - brightRed: 37.5 - brightGreen: 48.3 - brightYellow: 31.3 - brightBlue: 64.3 - brightMagenta: 31.3 - brightCyan: 64.3 - brightWhite: 54.4 diff --git a/themes/color-sea-red.yaml b/themes/color-sea-red.yaml deleted file mode 100644 index b332172a..00000000 --- a/themes/color-sea-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Color Sea Red" -source: - marketplace_id: "Danesed.color-sea" - version: "1.0.0" - installs: 16 - rating: 0 - ratings: 0 - author: "Danesed" - repo: "https://github.com/danesed/colorsea-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" -colors: - bg: "#301820" - fg: "#B8A6AA" - black: "#6F3046" - red: "#FF2D3B" - green: "#72E3FF" - yellow: "#FF4D5A" - blue: "#3A86FF" - magenta: "#FF4D5A" - cyan: "#3A86FF" - white: "#B8A6AA" - brightBlack: "#5A484A" - brightRed: "#FF2D3B" - brightGreen: "#72E3FF" - brightYellow: "#FF4D5A" - brightBlue: "#3A86FF" - brightMagenta: "#FF4D5A" - brightCyan: "#3A86FF" - brightWhite: "#B8A6AA" -meta: - mode: "dark" - accent: "orange" - hue: 359 - pair: null - contrast: - fg: 54.3 - black: 8.5 - red: 37.1 - green: 78.5 - yellow: 41.1 - blue: 37.7 - magenta: 41.1 - cyan: 37.7 - white: 54.3 - brightBlack: 10.8 - brightRed: 37.1 - brightGreen: 78.5 - brightYellow: 41.1 - brightBlue: 37.7 - brightMagenta: 41.1 - brightCyan: 37.7 - brightWhite: 54.3 diff --git a/themes/color-sea-yellow.yaml b/themes/color-sea-yellow.yaml deleted file mode 100644 index 8f51a372..00000000 --- a/themes/color-sea-yellow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Color Sea Yellow" -source: - marketplace_id: "Danesed.color-sea" - version: "1.0.0" - installs: 16 - rating: 0 - ratings: 0 - author: "Danesed" - repo: "https://github.com/danesed/colorsea-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" -colors: - bg: "#332614" - fg: "#BAB4A4" - black: "#6D4B23" - red: "#FF2D3B" - green: "#72DDF7" - yellow: "#FFBE0B" - blue: "#7B8CFF" - magenta: "#FFBE0B" - cyan: "#7B8CFF" - white: "#BAB4A4" - brightBlack: "#5C5846" - brightRed: "#FF2D3B" - brightGreen: "#72DDF7" - brightYellow: "#FFBE0B" - brightBlue: "#7B8CFF" - brightMagenta: "#FFBE0B" - brightCyan: "#7B8CFF" - brightWhite: "#BAB4A4" -meta: - mode: "dark" - accent: "orange" - hue: 74 - pair: null - contrast: - fg: 58.4 - black: 11.5 - red: 35.7 - green: 73.8 - yellow: 70.4 - blue: 42 - magenta: 70.4 - cyan: 42 - white: 58.4 - brightBlack: 13.7 - brightRed: 35.7 - brightGreen: 73.8 - brightYellow: 70.4 - brightBlue: 42 - brightMagenta: 70.4 - brightCyan: 42 - brightWhite: 58.4 diff --git a/themes/colora.yaml b/themes/colora.yaml index 1efeca19..fcd426b6 100644 --- a/themes/colora.yaml +++ b/themes/colora.yaml @@ -8,6 +8,7 @@ source: author: "Harshika Gurav" repo: "https://github.com/harshika07/colora-theme" url: "https://marketplace.visualstudio.com/items?itemName=abcdHg.colora-theme" + formats: null colors: bg: "#252A3A" fg: "#D4D4D4" diff --git a/themes/colorbars-blue.yaml b/themes/colorbars-blue.yaml deleted file mode 100644 index b49a4e07..00000000 --- a/themes/colorbars-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Colorbars: blue" -source: - marketplace_id: "Spring.color-bars" - version: "0.0.1" - installs: 523 - rating: 0 - ratings: 0 - author: "Spring" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" -colors: - bg: "#1A1A1F" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 79.1 - black: 0 - red: 26.3 - green: 52.6 - yellow: 85.2 - blue: 27 - magenta: 29.4 - cyan: 47.2 - white: 89.6 - brightBlack: 21.7 - brightRed: 38.2 - brightGreen: 63.2 - brightYellow: 95.3 - brightBlue: 39.6 - brightMagenta: 45 - brightCyan: 55 - brightWhite: 89.6 diff --git a/themes/colorbars-green.yaml b/themes/colorbars-green.yaml deleted file mode 100644 index adb50d8d..00000000 --- a/themes/colorbars-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Colorbars: green" -source: - marketplace_id: "Spring.color-bars" - version: "0.0.1" - installs: 523 - rating: 0 - ratings: 0 - author: "Spring" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" -colors: - bg: "#171918" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 79.3 - black: 0 - red: 26.5 - green: 52.8 - yellow: 85.5 - blue: 27.3 - magenta: 29.6 - cyan: 47.4 - white: 89.9 - brightBlack: 21.9 - brightRed: 38.4 - brightGreen: 63.4 - brightYellow: 95.5 - brightBlue: 39.8 - brightMagenta: 45.2 - brightCyan: 55.2 - brightWhite: 89.9 diff --git a/themes/colorbars-orange.yaml b/themes/colorbars-orange.yaml deleted file mode 100644 index 9cee30d7..00000000 --- a/themes/colorbars-orange.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Colorbars: orange" -source: - marketplace_id: "Spring.color-bars" - version: "0.0.1" - installs: 523 - rating: 0 - ratings: 0 - author: "Spring" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" -colors: - bg: "#171313" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 79.8 - black: 0 - red: 27 - green: 53.3 - yellow: 85.9 - blue: 27.7 - magenta: 30 - cyan: 47.8 - white: 90.3 - brightBlack: 22.3 - brightRed: 38.8 - brightGreen: 63.8 - brightYellow: 95.9 - brightBlue: 40.3 - brightMagenta: 45.6 - brightCyan: 55.7 - brightWhite: 90.3 diff --git a/themes/colorbars-purple.yaml b/themes/colorbars-purple.yaml deleted file mode 100644 index b9326f75..00000000 --- a/themes/colorbars-purple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Colorbars: purple" -source: - marketplace_id: "Spring.color-bars" - version: "0.0.1" - installs: 523 - rating: 0 - ratings: 0 - author: "Spring" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" -colors: - bg: "#110E10" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.1 - black: 0 - red: 27.4 - green: 53.6 - yellow: 86.3 - blue: 28.1 - magenta: 30.4 - cyan: 48.2 - white: 90.7 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.7 diff --git a/themes/colored-desert.yaml b/themes/colored-desert.yaml deleted file mode 100644 index 69e81824..00000000 --- a/themes/colored-desert.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Colored Desert" -source: - marketplace_id: "DevAnorak.colored-desert" - version: "0.0.14" - installs: 55 - author: "DevAnorak" - repo: "https://github.com/SirSouza/Colored-Desert-VScode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=DevAnorak.colored-desert" -colors: - bg: "#504945" - fg: "#504945" - black: "#000000" - red: "#FF0000" - green: "#00BC00" - yellow: "#F8FF00" - blue: "#337BCB" - magenta: "#FF00FF" - cyan: "#10AED5" - white: "#FFFFFF" - brightBlack: "#929090" - brightRed: "#FF0000" - brightGreen: "#00FF00" - brightYellow: "#F8FF00" - brightBlue: "#0084F9" - brightMagenta: "#FF00FF" - brightCyan: "#00CDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 52 - contrast: - fg: 0 - black: 13.8 - red: 24.3 - green: 39.5 - yellow: 88.5 - blue: 18.7 - magenta: 33 - cyan: 38.3 - white: 94.7 - brightBlack: 29.6 - brightRed: 24.3 - brightGreen: 73.3 - brightYellow: 88.5 - brightBlue: 24.7 - brightMagenta: 33 - brightCyan: 54.4 - brightWhite: 94.7 diff --git a/themes/colorful-carbon-dark-knight.yaml b/themes/colorful-carbon-dark-knight.yaml index cbaf0c69..c1ca5d68 100644 --- a/themes/colorful-carbon-dark-knight.yaml +++ b/themes/colorful-carbon-dark-knight.yaml @@ -8,6 +8,7 @@ source: author: "Sonali Sharma" repo: "https://github.com/Sonali-Sharma-tech/colorful-carbon-extension" url: "https://marketplace.visualstudio.com/items?itemName=Sonali-Sharma.colorful-carbon" + formats: null colors: bg: "#0A0A0A" fg: "#E0E0E0" diff --git a/themes/colorful-carbon.yaml b/themes/colorful-carbon.yaml index 1396541b..49ada8a2 100644 --- a/themes/colorful-carbon.yaml +++ b/themes/colorful-carbon.yaml @@ -8,6 +8,7 @@ source: author: "Sonali Sharma" repo: "https://github.com/Sonali-Sharma-tech/colorful-carbon-extension" url: "https://marketplace.visualstudio.com/items?itemName=Sonali-Sharma.colorful-carbon" + formats: null colors: bg: "#0A0A0A" fg: "#D9D9D9" diff --git a/themes/colorful-dark-fork.yaml b/themes/colorful-dark-fork.yaml deleted file mode 100644 index 6ef73176..00000000 --- a/themes/colorful-dark-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Colorful-Dark - Fork" -source: - marketplace_id: "asant930.pop" - version: "0.0.1" - installs: 621 - rating: 0 - ratings: 0 - author: "asant930" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=asant930.pop" -colors: - bg: "#003049" - fg: "#90E0EF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 238 - pair: null - contrast: - fg: 75.6 - black: 0 - red: 23 - green: 49.3 - yellow: 81.9 - blue: 23.7 - magenta: 26.1 - cyan: 43.9 - white: 86.3 - brightBlack: 18.3 - brightRed: 34.9 - brightGreen: 59.8 - brightYellow: 91.9 - brightBlue: 36.3 - brightMagenta: 41.7 - brightCyan: 51.7 - brightWhite: 86.3 diff --git a/themes/colorful-dark-theme.yaml b/themes/colorful-dark-theme.yaml deleted file mode 100644 index ed9aeebb..00000000 --- a/themes/colorful-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "colorful-dark-theme" -source: - marketplace_id: "leonex16.colorful-theme" - version: "1.1.4" - installs: 3554 - rating: 5 - ratings: 1 - author: "Leonel Espinoza Sotelo" - repo: "https://github.com/leonex16/colorful-theme" - url: "https://marketplace.visualstudio.com/items?itemName=leonex16.colorful-theme" -colors: - bg: "#202022" - fg: "#FAFAFA" - black: "#000000" - red: "#FF4C42" - green: "#34CB5A" - yellow: "#FFD814" - blue: "#148AFF" - magenta: "#C363F2" - cyan: "#47CAE1" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#FF4C42" - brightGreen: "#34CB5A" - brightYellow: "#FFD814" - brightBlue: "#148AFF" - brightMagenta: "#C363F2" - brightCyan: "#47CAE1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.4 - black: 0 - red: 40.6 - green: 58.7 - yellow: 82.6 - blue: 38.4 - magenta: 39.9 - cyan: 63.3 - white: 105.7 - brightBlack: 0 - brightRed: 40.6 - brightGreen: 58.7 - brightYellow: 82.6 - brightBlue: 38.4 - brightMagenta: 39.9 - brightCyan: 63.3 - brightWhite: 105.7 diff --git a/themes/colorful-light.yaml b/themes/colorful-light.yaml deleted file mode 100644 index 279fdc5d..00000000 --- a/themes/colorful-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Colorful Light" -source: - marketplace_id: "Huka.light-purple" - version: "0.0.2" - installs: 2552 - rating: 0 - ratings: 0 - author: "Huka" - repo: "https://github.com/hukacode/vscode-light-purple" - url: "https://marketplace.visualstudio.com/items?itemName=Huka.light-purple" -colors: - bg: "#EFEAE9" - fg: "#4E3163" - black: "#4E3163" - red: "#DE3D3B" - green: "#08916A" - yellow: "#E0AF02" - blue: "#288ED7" - magenta: "#D6438A" - cyan: "#715AB1" - white: "#E4E4E4" - brightBlack: "#4E3163" - brightRed: "#DE3D3B" - brightGreen: "#08916A" - brightYellow: "#B1951D" - brightBlue: "#288ED7" - brightMagenta: "#D6438A" - brightCyan: "#715AB1" - brightWhite: "#E4E4E4" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83 - black: 83 - red: 56.9 - green: 54.8 - yellow: 27.5 - blue: 50.6 - magenta: 55.9 - cyan: 65.6 - white: 0 - brightBlack: 83 - brightRed: 56.9 - brightGreen: 54.8 - brightYellow: 43.6 - brightBlue: 50.6 - brightMagenta: 55.9 - brightCyan: 65.6 - brightWhite: 0 diff --git a/themes/colorizer.yaml b/themes/colorizer.yaml index 3016209b..96c11fa5 100644 --- a/themes/colorizer.yaml +++ b/themes/colorizer.yaml @@ -1,4 +1,4 @@ -name: "Colorizer" +name: "colorizer" source: marketplace_id: "MohammedShalabi.colorizer" version: "0.0.2" @@ -8,6 +8,7 @@ source: author: "Mohammed Shalabi" repo: "https://github.com/M-Shalabi/Colorizer" url: "https://marketplace.visualstudio.com/items?itemName=MohammedShalabi.colorizer" + formats: null colors: bg: "#20252E" fg: "#C3CBD9" diff --git a/themes/colors-color-theme.yaml b/themes/colors-color-theme.yaml deleted file mode 100644 index 69f0749f..00000000 --- a/themes/colors-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "colors.color-theme" -source: - marketplace_id: "sissel.material-potion" - version: "0.1.1" - installs: 1206 - rating: 5 - ratings: 1 - author: "panoply" - repo: "https://github.com/panoply/vscode-potion-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sissel.material-potion" -colors: - bg: "#080808" - fg: "#F2F2F2" - black: "#000000" - red: "#F44336" - green: "#9CCC65" - yellow: "#FFEB3B" - blue: "#42A5F5" - magenta: "#CE93D8" - cyan: "#00BCD4" - white: "#E0E0E0" - brightBlack: "#807E7B" - brightRed: "#E57373" - brightGreen: "#8BC34A" - brightYellow: "#FFF59D" - brightBlue: "#29B6F6" - brightMagenta: "#E1BEE7" - brightCyan: "#4DD0E1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99.3 - black: 0 - red: 38.6 - green: 67.2 - yellow: 93.3 - blue: 50.6 - magenta: 55 - cyan: 57.4 - white: 87.8 - brightBlack: 33.8 - brightRed: 45.7 - brightGreen: 61.3 - brightYellow: 99.5 - brightBlue: 57.1 - brightMagenta: 74 - brightCyan: 68.3 - brightWhite: 107.8 diff --git a/themes/colors.yaml b/themes/colors.yaml index b145c8ca..5e8e916b 100644 --- a/themes/colors.yaml +++ b/themes/colors.yaml @@ -8,6 +8,7 @@ source: author: "RedFoxxo" repo: "https://github.com/RedFoxxo/RFXTheme" url: "https://marketplace.visualstudio.com/items?itemName=RedFoxxo.rfxtheme" + formats: null colors: bg: "#212121" fg: "#F0F0F0" diff --git a/themes/colorshift-material-pro-evening.yaml b/themes/colorshift-material-pro-evening.yaml index 456b0b1f..e00611dc 100644 --- a/themes/colorshift-material-pro-evening.yaml +++ b/themes/colorshift-material-pro-evening.yaml @@ -8,6 +8,7 @@ source: author: "ColorShift" repo: "https://github.com/colorshift/colorshift-material-pro" url: "https://marketplace.visualstudio.com/items?itemName=ColorShift.colorshift-material-pro" + formats: null colors: bg: "#1A2327" fg: "#E0E0E0" diff --git a/themes/colorshift-material-pro-morning.yaml b/themes/colorshift-material-pro-morning.yaml index 5d668caa..88af5cd2 100644 --- a/themes/colorshift-material-pro-morning.yaml +++ b/themes/colorshift-material-pro-morning.yaml @@ -8,6 +8,7 @@ source: author: "ColorShift" repo: "https://github.com/colorshift/colorshift-material-pro" url: "https://marketplace.visualstudio.com/items?itemName=ColorShift.colorshift-material-pro" + formats: null colors: bg: "#2A3A45" fg: "#FFFFFF" diff --git a/themes/colorshift-material-pro.yaml b/themes/colorshift-material-pro.yaml index dcf0ea16..692cf41b 100644 --- a/themes/colorshift-material-pro.yaml +++ b/themes/colorshift-material-pro.yaml @@ -8,6 +8,7 @@ source: author: "ColorShift" repo: "https://github.com/colorshift/colorshift-material-pro" url: "https://marketplace.visualstudio.com/items?itemName=ColorShift.colorshift-material-pro" + formats: null colors: bg: "#263238" fg: "#EEFFFF" diff --git a/themes/colorways-cheers-soft.yaml b/themes/colorways-cheers-soft.yaml deleted file mode 100644 index 5988e97b..00000000 --- a/themes/colorways-cheers-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Colorways - Cheers (Soft)" -source: - marketplace_id: "Franthormel.colorways" - version: "0.2.1" - installs: 1012 - rating: 0 - ratings: 0 - author: "Franthormel" - repo: "https://github.com/franthormel/colorways-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Franthormel.colorways" -colors: - bg: "#FFFFFF" - fg: "#24292E" - black: "#414141" - red: "#D73A49" - green: "#90D259" - yellow: "#F7C400" - blue: "#005CC5" - magenta: "#FF73FD" - cyan: "#0BC7D7" - white: "#BFBFBF" - brightBlack: "#989898" - brightRed: "#FA6F71" - brightGreen: "#35D61C" - brightYellow: "#FFCA39" - brightBlue: "#1C23D6" - brightMagenta: "#FF00FF" - brightCyan: "#3CD7E7" - brightWhite: "#E0E0E0" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 101.5 - black: 93.7 - red: 70.4 - green: 33.8 - yellow: 28 - blue: 80.5 - magenta: 44.7 - cyan: 39.7 - white: 34.5 - brightBlack: 55.1 - brightRed: 52.8 - brightGreen: 36.7 - brightYellow: 24.2 - brightBlue: 89.6 - brightMagenta: 55.6 - brightCyan: 31.2 - brightWhite: 15.8 diff --git a/themes/columbina-dark.yaml b/themes/columbina-dark.yaml deleted file mode 100644 index 8a4e8277..00000000 --- a/themes/columbina-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Columbina - Dark" -source: - marketplace_id: "frostmoon-dev.columbina-theme" - version: "0.0.2" - installs: 235 - rating: 0 - ratings: 0 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/columbina-theme" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.columbina-theme" -colors: - bg: "#1A171D" - fg: "#E8F4FB" - black: "#1A171D" - red: "#E87A95" - green: "#6FBEC0" - yellow: "#F0C89F" - blue: "#90CCEA" - magenta: "#E091CA" - cyan: "#A8DCF5" - white: "#C3C8ED" - brightBlack: "#4A4552" - brightRed: "#FF91AB" - brightGreen: "#85D8DA" - brightYellow: "#FFD8B5" - brightBlue: "#A8DCF5" - brightMagenta: "#F5A7E0" - brightCyan: "#C0E8FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 308 - pair: null - contrast: - fg: 98.2 - black: 0 - red: 48 - green: 59.2 - yellow: 76.3 - blue: 69.8 - magenta: 55.5 - cyan: 79.7 - white: 73.3 - brightBlack: 9.8 - brightRed: 59.8 - brightGreen: 73.6 - brightYellow: 86.1 - brightBlue: 79.7 - brightMagenta: 67.4 - brightCyan: 88.1 - brightWhite: 106.7 diff --git a/themes/columbina-high-contrast.yaml b/themes/columbina-high-contrast.yaml deleted file mode 100644 index 5e26399d..00000000 --- a/themes/columbina-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Columbina - High Contrast" -source: - marketplace_id: "frostmoon-dev.columbina-theme" - version: "0.0.2" - installs: 235 - rating: 0 - ratings: 0 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/columbina-theme" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.columbina-theme" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#FF91AB" - green: "#85D8DA" - yellow: "#FFD8B5" - blue: "#A8DCF5" - magenta: "#F5A7E0" - cyan: "#C0E8FF" - white: "#FFFFFF" - brightBlack: "#8A8598" - brightRed: "#FFAAC0" - brightGreen: "#A0F0F2" - brightYellow: "#FFE8CA" - brightBlue: "#C0E8FF" - brightMagenta: "#FFBCF0" - brightCyan: "#DAF5FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 60.9 - green: 74.7 - yellow: 87.2 - blue: 80.8 - magenta: 68.5 - cyan: 89.2 - white: 107.9 - brightBlack: 38.4 - brightRed: 69.8 - brightGreen: 89.4 - brightYellow: 95 - brightBlue: 89.2 - brightMagenta: 78.6 - brightCyan: 98.3 - brightWhite: 107.9 diff --git a/themes/comfy-monokai.yaml b/themes/comfy-monokai.yaml index 1daf1225..59faacda 100644 --- a/themes/comfy-monokai.yaml +++ b/themes/comfy-monokai.yaml @@ -8,6 +8,7 @@ source: author: "chase chou" repo: "https://github.com/afarwind/comfy-monokai" url: "https://marketplace.visualstudio.com/items?itemName=afarwind.comfy-monokai-theme" + formats: null colors: bg: "#252A32" fg: "#DDEFF1" diff --git a/themes/comfyeyes.yaml b/themes/comfyeyes.yaml index 0c87f3a1..ad3f5546 100644 --- a/themes/comfyeyes.yaml +++ b/themes/comfyeyes.yaml @@ -8,6 +8,7 @@ source: author: "Lukas Fend" repo: "https://github.com/lukasfend/comfyeyes-theme" url: "https://marketplace.visualstudio.com/items?itemName=LukasFend.comfyeyes-theme" + formats: null colors: bg: "#1D1D1D" fg: "#B8B8B8" diff --git a/themes/commadoor-dark.yaml b/themes/commadoor-dark.yaml index 4825a151..e585edf0 100644 --- a/themes/commadoor-dark.yaml +++ b/themes/commadoor-dark.yaml @@ -8,6 +8,7 @@ source: author: "Commadoor Books" repo: "https://github.com/commadoor/commadoor-theme" url: "https://marketplace.visualstudio.com/items?itemName=CommadoorBooks.commadoor-theme" + formats: null colors: bg: "#26231C" fg: "#B2AA9A" diff --git a/themes/commadoor.yaml b/themes/commadoor.yaml index 76de73a6..b408b6c5 100644 --- a/themes/commadoor.yaml +++ b/themes/commadoor.yaml @@ -8,6 +8,7 @@ source: author: "Commadoor Books" repo: "https://github.com/commadoor/commadoor-theme" url: "https://marketplace.visualstudio.com/items?itemName=CommadoorBooks.commadoor-theme" + formats: null colors: bg: "#E8D7C7" fg: "#29261A" diff --git a/themes/commentsareimportant.yaml b/themes/commentsareimportant.yaml index 9a919a7e..a3d7b2d8 100644 --- a/themes/commentsareimportant.yaml +++ b/themes/commentsareimportant.yaml @@ -8,6 +8,7 @@ source: author: "Zhang Zijing (Pluveto)" repo: "https://github.com/pluveto/comments-are-important" url: "https://marketplace.visualstudio.com/items?itemName=pluveto.comments-are-important" + formats: null colors: bg: "#06020D" fg: "#D4D4D4" diff --git a/themes/common.yaml b/themes/common.yaml index d9c3132a..147134a7 100644 --- a/themes/common.yaml +++ b/themes/common.yaml @@ -8,6 +8,7 @@ source: author: "IV Software" repo: "https://github.com/JackShort/nononsense" url: "https://marketplace.visualstudio.com/items?itemName=IVSoftware.nononsense" + formats: null colors: bg: "#121212" fg: "#CBCCC6" diff --git a/themes/compline.yaml b/themes/compline.yaml deleted file mode 100644 index ba1826b1..00000000 --- a/themes/compline.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Compline" -source: - marketplace_id: "rivethorn.compline" - version: "1.0.1" - installs: 548 - rating: 5 - ratings: 1 - author: "Rivethorn" - repo: "https://github.com/jblais493/compline" - url: "https://marketplace.visualstudio.com/items?itemName=rivethorn.compline" -colors: - bg: "#1A1D21" - fg: "#F0EFEB" - black: "#22262B" - red: "#CDACAC" - green: "#B8C4B8" - yellow: "#D4CCB4" - blue: "#B4BCC4" - magenta: "#CCC4B4" - cyan: "#B4C0C8" - white: "#8B919A" - brightBlack: "#515761" - brightRed: "#CDACAC" - brightGreen: "#B8C4B8" - brightYellow: "#D4CCB4" - brightBlue: "#B4BCC4" - brightMagenta: "#CCC4B4" - brightCyan: "#B4C0C8" - brightWhite: "#E0DCD4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 95.7 - black: 0 - red: 60 - green: 67.3 - yellow: 74.1 - blue: 64 - magenta: 69.7 - cyan: 65.9 - white: 41.1 - brightBlack: 15.1 - brightRed: 60 - brightGreen: 67.3 - brightYellow: 74.1 - brightBlue: 64 - brightMagenta: 69.7 - brightCyan: 65.9 - brightWhite: 83.9 diff --git a/themes/component.yaml b/themes/component.yaml deleted file mode 100644 index 99fadf0a..00000000 --- a/themes/component.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "component" -source: - marketplace_id: "AkashK.frame" - version: "0.0.2" - installs: 1100 - rating: 0 - ratings: 0 - author: "Akash K" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=AkashK.frame" -colors: - bg: "#232323" - fg: "#8F8F8F" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 39.5 - black: 0 - red: 25.1 - green: 51.4 - yellow: 84 - blue: 25.8 - magenta: 28.2 - cyan: 46 - white: 88.4 - brightBlack: 20.5 - brightRed: 37 - brightGreen: 62 - brightYellow: 94.1 - brightBlue: 38.4 - brightMagenta: 43.8 - brightCyan: 53.8 - brightWhite: 88.4 diff --git a/themes/comrade-contrast.yaml b/themes/comrade-contrast.yaml deleted file mode 100644 index e2cd369d..00000000 --- a/themes/comrade-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "comrade-contrast" -source: - marketplace_id: "ztaylor.comradeyuri" - version: "0.0.9" - installs: 177 - rating: 0 - ratings: 0 - author: "Zachary Taylor" - repo: "https://github.com/thezacharytaylor/comradeyuri" - url: "https://marketplace.visualstudio.com/items?itemName=ztaylor.comradeyuri" -colors: - bg: "#121414" - fg: "#D6DBDB" - black: "#1E2121" - red: "#BA0E2E" - green: "#C24E4B" - yellow: "#9BB7A7" - blue: "#F9F7F1" - magenta: "#9BB7A7" - cyan: "#C24E4B" - white: "#E4E7E7" - brightBlack: "#424A4A" - brightRed: "#F03E5F" - brightGreen: "#DC9997" - brightYellow: "#D6E2DB" - brightBlue: "#FFFFFF" - brightMagenta: "#D6E2DB" - brightCyan: "#DC9997" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83.4 - black: 0 - red: 20.8 - green: 29.2 - yellow: 59.1 - blue: 101.9 - magenta: 59.1 - cyan: 29.2 - white: 91.2 - brightBlack: 10.7 - brightRed: 37.1 - brightGreen: 55.7 - brightYellow: 86.6 - brightBlue: 107.2 - brightMagenta: 86.6 - brightCyan: 55.7 - brightWhite: 107.2 diff --git a/themes/comrade-light.yaml b/themes/comrade-light.yaml index 3eba958c..c51e4c07 100644 --- a/themes/comrade-light.yaml +++ b/themes/comrade-light.yaml @@ -8,6 +8,7 @@ source: author: "Zachary Taylor" repo: "https://github.com/thezacharytaylor/comradeyuri" url: "https://marketplace.visualstudio.com/items?itemName=ztaylor.comradeyuri" + formats: null colors: bg: "#D6DBDB" fg: "#343939" diff --git a/themes/comrade.yaml b/themes/comrade.yaml index ba161aad..0c2b0b93 100644 --- a/themes/comrade.yaml +++ b/themes/comrade.yaml @@ -8,6 +8,7 @@ source: author: "Zachary Taylor" repo: "https://github.com/thezacharytaylor/comradeyuri" url: "https://marketplace.visualstudio.com/items?itemName=ztaylor.comradeyuri" + formats: null colors: bg: "#343939" fg: "#D6DBDB" diff --git a/themes/concoctis-dark-hard.yaml b/themes/concoctis-dark-hard.yaml deleted file mode 100644 index efa46d68..00000000 --- a/themes/concoctis-dark-hard.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Concoctis - Dark : Hard" -source: - marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" - version: "10.30.27" - installs: 74058 - rating: 5 - ratings: 10 - author: "wheredoesyourmindgo" - repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" - url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" -colors: - bg: "#202020" - fg: "#D4BE98" - black: "#2A2827" - red: "#EA6962" - green: "#A9B665" - yellow: "#D8A657" - blue: "#7DAEA3" - magenta: "#D3869B" - cyan: "#89B482" - white: "#D4BE98" - brightBlack: "#928374" - brightRed: "#EA6962" - brightGreen: "#A9B665" - brightYellow: "#D8A657" - brightBlue: "#7DAEA3" - brightMagenta: "#D3869B" - brightCyan: "#89B482" - brightWhite: "#DDC7A1" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Concoctis - Light : Hard" - contrast: - fg: 66.9 - black: 0 - red: 41.8 - green: 56.9 - yellow: 56.7 - blue: 51.1 - magenta: 46.9 - cyan: 53.5 - white: 66.9 - brightBlack: 35.2 - brightRed: 41.8 - brightGreen: 56.9 - brightYellow: 56.7 - brightBlue: 51.1 - brightMagenta: 46.9 - brightCyan: 53.5 - brightWhite: 72.1 diff --git a/themes/concoctis-dark-soft.yaml b/themes/concoctis-dark-soft.yaml deleted file mode 100644 index 2ba25e38..00000000 --- a/themes/concoctis-dark-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Concoctis - Dark : Soft" -source: - marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" - version: "10.30.27" - installs: 74058 - rating: 5 - ratings: 10 - author: "wheredoesyourmindgo" - repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" - url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" -colors: - bg: "#32302F" - fg: "#D4BE98" - black: "#3C3836" - red: "#EA6962" - green: "#A9B665" - yellow: "#D8A657" - blue: "#7DAEA3" - magenta: "#D3869B" - cyan: "#89B482" - white: "#D4BE98" - brightBlack: "#928374" - brightRed: "#EA6962" - brightGreen: "#A9B665" - brightYellow: "#D8A657" - brightBlue: "#7DAEA3" - brightMagenta: "#D3869B" - brightCyan: "#89B482" - brightWhite: "#DDC7A1" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Concoctis - Light : Soft" - contrast: - fg: 63.8 - black: 0 - red: 38.8 - green: 53.8 - yellow: 53.6 - blue: 48 - magenta: 43.8 - cyan: 50.4 - white: 63.8 - brightBlack: 32.2 - brightRed: 38.8 - brightGreen: 53.8 - brightYellow: 53.6 - brightBlue: 48 - brightMagenta: 43.8 - brightCyan: 50.4 - brightWhite: 69.1 diff --git a/themes/concoctis-light-hard.yaml b/themes/concoctis-light-hard.yaml deleted file mode 100644 index e11954b9..00000000 --- a/themes/concoctis-light-hard.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Concoctis - Light : Hard" -source: - marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" - version: "10.30.27" - installs: 74058 - rating: 5 - ratings: 10 - author: "wheredoesyourmindgo" - repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" - url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" -colors: - bg: "#F9F5D7" - fg: "#654735" - black: "#4F3829" - red: "#C14A4A" - green: "#6C782E" - yellow: "#B47109" - blue: "#45707A" - magenta: "#945E80" - cyan: "#4C7A5D" - white: "#928374" - brightBlack: "#654735" - brightRed: "#C14A4A" - brightGreen: "#6C782E" - brightYellow: "#B47109" - brightBlue: "#45707A" - brightMagenta: "#945E80" - brightCyan: "#4C7A5D" - brightWhite: "#FBF1C7" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Concoctis - Dark : Hard" - contrast: - fg: 82.2 - black: 88.5 - red: 66.1 - green: 66.7 - yellow: 59.9 - blue: 70.5 - magenta: 68 - cyan: 67.5 - white: 57.7 - brightBlack: 82.2 - brightRed: 66.1 - brightGreen: 66.7 - brightYellow: 59.9 - brightBlue: 70.5 - brightMagenta: 68 - brightCyan: 67.5 - brightWhite: 0 diff --git a/themes/concoctis-light-soft.yaml b/themes/concoctis-light-soft.yaml deleted file mode 100644 index 84198a0a..00000000 --- a/themes/concoctis-light-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Concoctis - Light : Soft" -source: - marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" - version: "10.30.27" - installs: 74058 - rating: 5 - ratings: 10 - author: "wheredoesyourmindgo" - repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" - url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" -colors: - bg: "#F2E5BC" - fg: "#654735" - black: "#4F3829" - red: "#C14A4A" - green: "#6C782E" - yellow: "#B47109" - blue: "#45707A" - magenta: "#945E80" - cyan: "#4C7A5D" - white: "#928374" - brightBlack: "#654735" - brightRed: "#C14A4A" - brightGreen: "#6C782E" - brightYellow: "#B47109" - brightBlue: "#45707A" - brightMagenta: "#945E80" - brightCyan: "#4C7A5D" - brightWhite: "#EBDBB2" -meta: - mode: "light" - accent: "orange" - hue: 93 - pair: "Concoctis - Dark : Soft" - contrast: - fg: 73.6 - black: 80 - red: 57.5 - green: 58.1 - yellow: 51.4 - blue: 61.9 - magenta: 59.5 - cyan: 59 - white: 49.1 - brightBlack: 73.6 - brightRed: 57.5 - brightGreen: 58.1 - brightYellow: 51.4 - brightBlue: 61.9 - brightMagenta: 59.5 - brightCyan: 59 - brightWhite: 0 diff --git a/themes/concrete-theme.yaml b/themes/concrete-theme.yaml index 2db51818..51658c86 100644 --- a/themes/concrete-theme.yaml +++ b/themes/concrete-theme.yaml @@ -8,6 +8,7 @@ source: author: "Haider Nadeem" repo: "https://github.com/HaiderNadeem/Concrete-Theme" url: "https://marketplace.visualstudio.com/items?itemName=HaiderNadeem.concrete-theme" + formats: null colors: bg: "#282C34" fg: "#EEFFFF" diff --git a/themes/concrete.yaml b/themes/concrete.yaml index ef092293..9349fddc 100644 --- a/themes/concrete.yaml +++ b/themes/concrete.yaml @@ -2,12 +2,13 @@ name: "Concrete" source: marketplace_id: "bezbac.concrete-vscode" version: "0.3.0" - installs: 1232 + installs: 1233 rating: 0 ratings: 0 author: "bezbac" repo: "https://github.com/bezbac/concrete" url: "https://marketplace.visualstudio.com/items?itemName=bezbac.concrete-vscode" + formats: null colors: bg: "#262626" fg: "#D1D5DA" diff --git a/themes/conifer-theme.yaml b/themes/conifer-theme.yaml deleted file mode 100644 index a3d84b01..00000000 --- a/themes/conifer-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Conifer Theme" -source: - marketplace_id: "imalbert.conifer-theme" - version: "2.4.3" - installs: 1380 - rating: 5 - ratings: 3 - author: "imalbert" - repo: "https://github.com/imalbert/conifer-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=imalbert.conifer-theme" -colors: - bg: "#292929" - fg: "#A7BEB1" - black: "#292929" - red: "#C1918B" - green: "#8BC191" - yellow: "#A59F5D" - blue: "#A7BEB1" - magenta: "#C18BBB" - cyan: "#A59F5D" - white: "#A7BEB1" - brightBlack: "#6D8571" - brightRed: "#C1918B" - brightGreen: "#8BC191" - brightYellow: "#A59F5D" - brightBlue: "#A7BEB1" - brightMagenta: "#C18BBB" - brightCyan: "#A59F5D" - brightWhite: "#A7BEB1" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 60.7 - black: 0 - red: 45.4 - green: 58.3 - yellow: 45.5 - blue: 60.7 - magenta: 45.4 - cyan: 45.5 - white: 60.7 - brightBlack: 30.7 - brightRed: 45.4 - brightGreen: 58.3 - brightYellow: 45.5 - brightBlue: 60.7 - brightMagenta: 45.4 - brightCyan: 45.5 - brightWhite: 60.7 diff --git a/themes/consolvis-dark-theme.yaml b/themes/consolvis-dark-theme.yaml index 9192bd95..03ff2f0f 100644 --- a/themes/consolvis-dark-theme.yaml +++ b/themes/consolvis-dark-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Consolvis.consolvis-vscode-theme" version: "1.0.1" installs: 222 + rating: 0 + ratings: 0 author: "Consolvis" repo: "https://github.com/Consolvis/consolvis-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Consolvis.consolvis-vscode-theme" + formats: null colors: bg: "#111827" fg: "#9CA3AF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "purple" hue: 265 + pair: null contrast: fg: 51 black: 0 diff --git a/themes/contrast-kai.yaml b/themes/contrast-kai.yaml deleted file mode 100644 index fb1f2b0e..00000000 --- a/themes/contrast-kai.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Contrast kai" -source: - marketplace_id: "MartinPalomaresGarcia.dark-kai" - version: "0.7.0" - installs: 1009 - rating: 5 - ratings: 3 - author: "Martin Palomares Garcia" - repo: "https://github.com/MartinPaGarcia/contrast-kai" - url: "https://marketplace.visualstudio.com/items?itemName=MartinPalomaresGarcia.dark-kai" -colors: - bg: "#171717" - fg: "#D3D0D0" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#CBCBCB" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 77.4 - black: 0 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 106.9 - brightBlack: 22 - brightRed: 38.6 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 74.1 diff --git a/themes/cool-panda.yaml b/themes/cool-panda.yaml index 633618bb..e7d4b3b9 100644 --- a/themes/cool-panda.yaml +++ b/themes/cool-panda.yaml @@ -8,6 +8,7 @@ source: author: "Matthew Justice" repo: "https://github.com/JusticeMatthew/cool-panda" url: "https://marketplace.visualstudio.com/items?itemName=MatthewJustice.cool-panda" + formats: null colors: bg: "#212121" fg: "#D8DEE9" diff --git a/themes/cool-with-a-c.yaml b/themes/cool-with-a-c.yaml index dd69d6fc..5822098a 100644 --- a/themes/cool-with-a-c.yaml +++ b/themes/cool-with-a-c.yaml @@ -8,6 +8,7 @@ source: author: "Lucas Novaes" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LucasNovaes94.cool-with-a-c" + formats: null colors: bg: "#000811" fg: "#FFDC4F" diff --git a/themes/cooland.yaml b/themes/cooland.yaml index ecd03f30..6847016c 100644 --- a/themes/cooland.yaml +++ b/themes/cooland.yaml @@ -8,6 +8,8 @@ source: author: "Samuel Bran" repo: "https://github.com/samuelbran/Cooland" url: "https://marketplace.visualstudio.com/items?itemName=samuelbran.cooland" + formats: + sublime: "https://raw.githubusercontent.com/samuelbran/Cooland/master/themes/Cooland.tmTheme" colors: bg: "#212121" fg: "#E0E2F0" diff --git a/themes/coolnight-color-theme.yaml b/themes/coolnight-color-theme.yaml deleted file mode 100644 index 0c5a0985..00000000 --- a/themes/coolnight-color-theme.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "coolnight-color-theme" -source: - marketplace_id: "kpatdev.coolnight-theme" - version: "0.1.1" - installs: 157 - author: "kpatdev" - repo: "https://github.com/kpatdev/coolnight" - url: "https://marketplace.visualstudio.com/items?itemName=kpatdev.coolnight-theme" -colors: - bg: "#011423" - fg: "#CBE0F0" - black: "#214969" - red: "#E52E2E" - green: "#44FFB1" - yellow: "#FFE073" - blue: "#0FC5ED" - magenta: "#A277FF" - cyan: "#24EAF7" - white: "#24EAF7" - brightBlack: "#214969" - brightRed: "#E52E2E" - brightGreen: "#44FFB1" - brightYellow: "#FFE073" - brightBlue: "#A277FF" - brightMagenta: "#A277FF" - brightCyan: "#24EAF7" - brightWhite: "#24EAF7" -meta: - mode: "dark" - accent: "orange" - hue: 242 - pair: null - contrast: - fg: 85.3 - black: 10 - red: 32.1 - green: 88.9 - yellow: 88.3 - blue: 62.2 - magenta: 42.4 - cyan: 80.5 - white: 80.5 - brightBlack: 10 - brightRed: 32.1 - brightGreen: 88.9 - brightYellow: 88.3 - brightBlue: 42.4 - brightMagenta: 42.4 - brightCyan: 80.5 - brightWhite: 80.5 diff --git a/themes/coolshine.yaml b/themes/coolshine.yaml index c064e061..84470548 100644 --- a/themes/coolshine.yaml +++ b/themes/coolshine.yaml @@ -8,6 +8,7 @@ source: author: "Daiki" repo: "https://github.com/Daiki48/CoolShine" url: "https://marketplace.visualstudio.com/items?itemName=Daiki.coolshine" + formats: null colors: bg: "#CADCE0" fg: "#333333" diff --git a/themes/copper-dark.yaml b/themes/copper-dark.yaml deleted file mode 100644 index 09f1cf15..00000000 --- a/themes/copper-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Copper Dark" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#1A1412" - fg: "#E8D5C4" - black: "#1A1412" - red: "#E65C4F" - green: "#7FAE6D" - yellow: "#F0A855" - blue: "#6B9AC4" - magenta: "#D4743F" - cyan: "#6B9AC4" - white: "#C4AA96" - brightBlack: "#3D2F27" - brightRed: "#E65C4F" - brightGreen: "#7FAE6D" - brightYellow: "#F0A855" - brightBlue: "#FF7034" - brightMagenta: "#E89B5F" - brightCyan: "#6B9AC4" - brightWhite: "#E8D5C4" -meta: - mode: "dark" - accent: "orange" - hue: 39 - pair: null - contrast: - fg: 82.1 - black: 0 - red: 39.1 - green: 50.9 - yellow: 62.7 - blue: 44.6 - magenta: 40.9 - cyan: 44.6 - white: 58 - brightBlack: 0 - brightRed: 39.1 - brightGreen: 50.9 - brightYellow: 62.7 - brightBlue: 48.6 - brightMagenta: 56.9 - brightCyan: 44.6 - brightWhite: 82.1 diff --git a/themes/corallike.yaml b/themes/corallike.yaml index 511f955a..53a03299 100644 --- a/themes/corallike.yaml +++ b/themes/corallike.yaml @@ -8,6 +8,7 @@ source: author: "Joaquin Martinez" repo: "https://github.com/Joaquinuriel/coral-theme" url: "https://marketplace.visualstudio.com/items?itemName=JoaquinMartinez.corallike" + formats: null colors: bg: "#1E1E1E" fg: "#EEEEEE" diff --git a/themes/corbatita.yaml b/themes/corbatita.yaml index fe64d779..dbd2b36c 100644 --- a/themes/corbatita.yaml +++ b/themes/corbatita.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "MSZS.corbatita" version: "0.0.1" installs: 43 + rating: 0 + ratings: 0 author: "MSZS" repo: "https://github.com/MoisesOliveira/corbatita-theme" url: "https://marketplace.visualstudio.com/items?itemName=MSZS.corbatita" + formats: null colors: bg: "#383838" fg: "#D4D4D4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 73.2 black: 0 diff --git a/themes/corduroy.yaml b/themes/corduroy.yaml index 176e5453..3862d3e7 100644 --- a/themes/corduroy.yaml +++ b/themes/corduroy.yaml @@ -8,6 +8,7 @@ source: author: "taysatte" repo: "https://github.com/taysatte/corduroy-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TaylorSattenfield.corduroy-theme-vscode" + formats: null colors: bg: "#1D1920" fg: "#CDC8D0" diff --git a/themes/corgidarkpastel2.yaml b/themes/corgidarkpastel2.yaml index b0a2195a..27e6babe 100644 --- a/themes/corgidarkpastel2.yaml +++ b/themes/corgidarkpastel2.yaml @@ -8,6 +8,7 @@ source: author: "ermeneses" repo: "git remote add origin https://github.com/ermeneses/VsThemes" url: "https://marketplace.visualstudio.com/items?itemName=ermeneses.corgidarkpastel" + formats: null colors: bg: "#1D252C" fg: "#B7C5D3" diff --git a/themes/corgidarkpastel3.yaml b/themes/corgidarkpastel3.yaml index 1e1f4b99..447a9c64 100644 --- a/themes/corgidarkpastel3.yaml +++ b/themes/corgidarkpastel3.yaml @@ -8,6 +8,7 @@ source: author: "ermeneses" repo: "git remote add origin https://github.com/ermeneses/VsThemes" url: "https://marketplace.visualstudio.com/items?itemName=ermeneses.corgidarkpastel" + formats: null colors: bg: "#292C3E" fg: "#E7E7E7" diff --git a/themes/corporate-dark-theme.yaml b/themes/corporate-dark-theme.yaml index 724eba48..cf3002d1 100644 --- a/themes/corporate-dark-theme.yaml +++ b/themes/corporate-dark-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "sahiljhajharia.corporate-dark-theme" version: "1.0.7" installs: 21 + rating: 5 + ratings: 1 author: "Sahil Jhajharia" repo: "https://github.com/Sahil4596/corporate-theme" url: "https://marketplace.visualstudio.com/items?itemName=sahiljhajharia.corporate-dark-theme" + formats: null colors: bg: "#121212" fg: "#E2E8F0" diff --git a/themes/cortex-theme.yaml b/themes/cortex-theme.yaml index 0311589b..a5a35b72 100644 --- a/themes/cortex-theme.yaml +++ b/themes/cortex-theme.yaml @@ -8,6 +8,7 @@ source: author: "Cortex-theme" repo: "https://github.com/Migxt/Cortex-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Cortex-theme.cortex-theme" + formats: null colors: bg: "#0C0C0C" fg: "#6D6D6D" diff --git a/themes/cosmic-dark.yaml b/themes/cosmic-dark.yaml deleted file mode 100644 index a759306c..00000000 --- a/themes/cosmic-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cosmic Dark" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#010107" - fg: "#BECFDA" - black: "#28353E" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#AEC3D0" - brightBlack: "#475E6C" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#BECFDA" -meta: - mode: "dark" - accent: "orange" - hue: 278 - pair: null - contrast: - fg: 75.9 - black: 0 - red: 41.5 - green: 78 - yellow: 68 - blue: 53 - magenta: 46.6 - cyan: 71.5 - white: 68.5 - brightBlack: 18.5 - brightRed: 46.8 - brightGreen: 80.2 - brightYellow: 54.9 - brightBlue: 58.3 - brightMagenta: 59 - brightCyan: 74.9 - brightWhite: 75.9 diff --git a/themes/cosmic-decay.yaml b/themes/cosmic-decay.yaml deleted file mode 100644 index 8682b5ae..00000000 --- a/themes/cosmic-decay.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cosmic Decay" -source: - marketplace_id: "decaycs.decay" - version: "1.0.9" - installs: 37708 - rating: 5 - ratings: 3 - author: "decaycs" - repo: "https://github.com/decaycs/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" -colors: - bg: "#12131C" - fg: "#A5B7D5" - black: "#2C2F44" - red: "#CA7E9E" - green: "#8FC8A8" - yellow: "#EFD9B0" - blue: "#A9ACDB" - magenta: "#C296EB" - cyan: "#91CEDF" - white: "#C1C4CB" - brightBlack: "#1C1E27" - brightRed: "#CA7E9E" - brightGreen: "#8FC8A8" - brightYellow: "#FFC19F" - brightBlue: "#A9ACDB" - brightMagenta: "#C296EB" - brightCyan: "#91CEDF" - brightWhite: "#A5B7D5" -meta: - mode: "dark" - accent: "magenta" - hue: 280 - pair: null - contrast: - fg: 62.1 - black: 0 - red: 44.5 - green: 65.4 - yellow: 84.3 - blue: 58.5 - magenta: 54.7 - cyan: 70.6 - white: 70.2 - brightBlack: 0 - brightRed: 44.5 - brightGreen: 65.4 - brightYellow: 76.4 - brightBlue: 58.5 - brightMagenta: 54.7 - brightCyan: 70.6 - brightWhite: 62.1 diff --git a/themes/cosmic-gleam-darkest.yaml b/themes/cosmic-gleam-darkest.yaml deleted file mode 100644 index c9591f76..00000000 --- a/themes/cosmic-gleam-darkest.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cosmic Gleam: Darkest" -source: - marketplace_id: "srshah.cosmic-gleam" - version: "4.4.0" - installs: 1417 - rating: 5 - ratings: 4 - author: "Snehil Shah" - repo: "https://github.com/snehilshah/cosmic-gleam" - url: "https://marketplace.visualstudio.com/items?itemName=srshah.cosmic-gleam" -colors: - bg: "#000000" - fg: "#CDD6F4" - black: "#45475A" - red: "#F38BA8" - green: "#A6E3A1" - yellow: "#F9E2AF" - blue: "#89B4FA" - magenta: "#F5C2E7" - cyan: "#94E2D5" - white: "#A6ADC8" - brightBlack: "#585B70" - brightRed: "#F37799" - brightGreen: "#89D88B" - brightYellow: "#EBD391" - brightBlue: "#74A8FC" - brightMagenta: "#F2AEDE" - brightCyan: "#6BD7CA" - brightWhite: "#BAC2DE" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 82 - black: 11.3 - red: 56.7 - green: 80.4 - yellow: 90.5 - blue: 61.1 - magenta: 78.7 - cyan: 80.3 - white: 58.3 - brightBlack: 18.9 - brightRed: 50.7 - brightGreen: 72.1 - brightYellow: 80.9 - brightBlue: 54.9 - brightMagenta: 70.3 - brightCyan: 71.9 - brightWhite: 70.1 diff --git a/themes/cosmic-iris.yaml b/themes/cosmic-iris.yaml index 91c2e4bb..6a48e2f1 100644 --- a/themes/cosmic-iris.yaml +++ b/themes/cosmic-iris.yaml @@ -8,6 +8,7 @@ source: author: "Shravani Nikam" repo: "https://github.com/shravaninikam/Cosmic-Iris" url: "https://marketplace.visualstudio.com/items?itemName=shravaninikam.cosmic-iris" + formats: null colors: bg: "#111111" fg: "#DBC8E0" diff --git a/themes/cosmic-purple.yaml b/themes/cosmic-purple.yaml index 68f944d2..eca7e963 100644 --- a/themes/cosmic-purple.yaml +++ b/themes/cosmic-purple.yaml @@ -8,6 +8,7 @@ source: author: "Mustafa Özdemir" repo: null url: "https://marketplace.visualstudio.com/items?itemName=codeM.mystic-dark-collection" + formats: null colors: bg: "#0F0F1A" fg: "#E6E6FA" diff --git a/themes/cosmic-sea.yaml b/themes/cosmic-sea.yaml deleted file mode 100644 index 69e769d1..00000000 --- a/themes/cosmic-sea.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cosmic Sea" -source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - rating: 0 - ratings: 0 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" -colors: - bg: "#0F1A2E" - fg: "#B3E5FC" - black: "#263238" - red: "#FF7043" - green: "#4DD0E1" - yellow: "#FFF59D" - blue: "#42A5F5" - magenta: "#BA68C8" - cyan: "#26C6DA" - white: "#E1F5FE" - brightBlack: "#37474F" - brightRed: "#FF8A65" - brightGreen: "#80E5FF" - brightYellow: "#FFECB3" - brightBlue: "#64B5F6" - brightMagenta: "#CE93D8" - brightCyan: "#4DD0E1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 262 - pair: null - contrast: - fg: 85 - black: 0 - red: 48.2 - green: 67 - yellow: 98.2 - blue: 49.3 - magenta: 37.5 - cyan: 61.1 - white: 97.7 - brightBlack: 8.7 - brightRed: 55.5 - brightGreen: 81 - brightYellow: 94.6 - brightBlue: 57.4 - brightMagenta: 53.7 - brightCyan: 67 - brightWhite: 106.5 diff --git a/themes/cosmic.yaml b/themes/cosmic.yaml index 199a79c8..300bc17a 100644 --- a/themes/cosmic.yaml +++ b/themes/cosmic.yaml @@ -8,6 +8,7 @@ source: author: "Carmelo Pullara" repo: "https://github.com/carmelopullara/vscode-cosmic" url: "https://marketplace.visualstudio.com/items?itemName=carmelopullara.vscode-cosmic" + formats: null colors: bg: "#21242B" fg: "#F2F2F2" diff --git a/themes/cosmical.yaml b/themes/cosmical.yaml index 2213b184..96052ab7 100644 --- a/themes/cosmical.yaml +++ b/themes/cosmical.yaml @@ -8,6 +8,7 @@ source: author: "jorgemrtr" repo: "https://github.com/jorgemrtr/cosmical-theme" url: "https://marketplace.visualstudio.com/items?itemName=jorgemrtr.cosmical" + formats: null colors: bg: "#121212" fg: "#DEDEDE" diff --git a/themes/cosmico.yaml b/themes/cosmico.yaml index 31d4a4e0..54cd265a 100644 --- a/themes/cosmico.yaml +++ b/themes/cosmico.yaml @@ -8,6 +8,7 @@ source: author: "Mariano Ibarra" repo: "https://github.com/marianoibarra/cosmico-theme" url: "https://marketplace.visualstudio.com/items?itemName=MarianoIbarra.cosmico" + formats: null colors: bg: "#10151D" fg: "#D9DFE7" diff --git a/themes/cosmicsarthak-dark.yaml b/themes/cosmicsarthak-dark.yaml deleted file mode 100644 index 857abd7d..00000000 --- a/themes/cosmicsarthak-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "cosmicsarthak Dark" -source: - marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" - version: "4.4.7" - installs: 24458 - rating: 5 - ratings: 4 - author: "cosmicsarthak" - repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" -colors: - bg: "#010D18" - fg: "#9AB3C1" - black: "#010D18" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#FFF500" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#FFF500" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 242 - pair: null - contrast: - fg: 58.8 - black: 0 - red: 40 - green: 68 - yellow: 82.8 - blue: 97.6 - magenta: 54.5 - cyan: 60.4 - white: 107.6 - brightBlack: 16.3 - brightRed: 40 - brightGreen: 68 - brightYellow: 94.4 - brightBlue: 97.6 - brightMagenta: 54.5 - brightCyan: 74.7 - brightWhite: 107.6 diff --git a/themes/cosmicsarthak-neon.yaml b/themes/cosmicsarthak-neon.yaml deleted file mode 100644 index 42e05342..00000000 --- a/themes/cosmicsarthak-neon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "cosmicsarthak-neon" -source: - marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" - version: "4.4.7" - installs: 24458 - rating: 5 - ratings: 4 - author: "cosmicsarthak" - repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" -colors: - bg: "#030D22" - fg: "#FDFEFF" - black: "#3A1B75" - red: "#EE1682" - green: "#06AD00" - yellow: "#FFD400" - blue: "#3787D6" - magenta: "#26FF00" - cyan: "#0AB2FA" - white: "#FD6666" - brightBlack: "#5C6D75" - brightRed: "#FF2E97" - brightGreen: "#00FFF2" - brightYellow: "#FD6666" - brightBlue: "#5994CE" - brightMagenta: "#FFD400" - brightCyan: "#4BC5FA" - brightWhite: "#EE0077" -meta: - mode: "dark" - accent: "green" - hue: 260 - pair: null - contrast: - fg: 106.7 - black: 0 - red: 35.1 - green: 45.5 - yellow: 82.6 - blue: 36.6 - magenta: 86.3 - cyan: 55.1 - white: 47.1 - brightBlack: 24.5 - brightRed: 41.2 - brightGreen: 91.1 - brightYellow: 47.1 - brightBlue: 42.2 - brightMagenta: 82.6 - brightCyan: 64.4 - brightWhite: 34.5 diff --git a/themes/cosmicsarthak-night-owl.yaml b/themes/cosmicsarthak-night-owl.yaml deleted file mode 100644 index 8ac3e099..00000000 --- a/themes/cosmicsarthak-night-owl.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "cosmicsarthak Night Owl" -source: - marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" - version: "4.4.7" - installs: 24458 - rating: 5 - ratings: 4 - author: "cosmicsarthak" - repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" -colors: - bg: "#011627" - fg: "#D6DEEB" - black: "#011627" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 244 - pair: null - contrast: - fg: 85.3 - black: 0 - red: 39.4 - green: 67.3 - yellow: 82.1 - blue: 56 - magenta: 53.8 - cyan: 59.8 - white: 107 - brightBlack: 15.7 - brightRed: 39.4 - brightGreen: 67.3 - brightYellow: 93.8 - brightBlue: 56 - brightMagenta: 53.8 - brightCyan: 74.1 - brightWhite: 107 diff --git a/themes/cosmicsarthak-red.yaml b/themes/cosmicsarthak-red.yaml deleted file mode 100644 index 179dba04..00000000 --- a/themes/cosmicsarthak-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "cosmicsarthak Red" -source: - marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" - version: "4.4.7" - installs: 24458 - rating: 5 - ratings: 4 - author: "cosmicsarthak" - repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" -colors: - bg: "#390000" - fg: "#CD8D8D" - black: "#390000" - red: "#EF5350" - green: "#22DA6E" - yellow: "#E544FF" - blue: "#FFF500" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#FFF500" - brightMagenta: "#C792EA" - brightCyan: "#FF4329" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 29 - pair: null - contrast: - fg: 47.9 - black: 0 - red: 38.5 - green: 66.4 - yellow: 42.3 - blue: 96.1 - magenta: 52.9 - cyan: 58.9 - white: 106.1 - brightBlack: 14.8 - brightRed: 38.5 - brightGreen: 66.4 - brightYellow: 92.9 - brightBlue: 96.1 - brightMagenta: 52.9 - brightCyan: 39.4 - brightWhite: 106.1 diff --git a/themes/cosmo.yaml b/themes/cosmo.yaml deleted file mode 100644 index cfd8e731..00000000 --- a/themes/cosmo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cosmo" -source: - marketplace_id: "sociale11.cosmo" - version: "0.1.4" - installs: 40 - rating: 5 - ratings: 1 - author: "Sociale11" - repo: "https://github.com/sociale11/vscode-cosmo" - url: "https://marketplace.visualstudio.com/items?itemName=sociale11.cosmo" -colors: - bg: "#161B25" - fg: "#ABB2BF" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#B39C4D" - blue: "#B39C4D" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#98C379" - brightYellow: "#B39C4D" - brightBlue: "#B39C4D" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 58.9 - black: 0 - red: 41.6 - green: 61.8 - yellow: 48.1 - blue: 48.1 - magenta: 44.7 - cyan: 54.1 - white: 82.6 - brightBlack: 35.1 - brightRed: 38 - brightGreen: 61.8 - brightYellow: 48.1 - brightBlue: 48.1 - brightMagenta: 12.3 - brightCyan: 54.1 - brightWhite: 82.6 diff --git a/themes/cosmos-theme.yaml b/themes/cosmos-theme.yaml index d41418c7..ab300527 100644 --- a/themes/cosmos-theme.yaml +++ b/themes/cosmos-theme.yaml @@ -8,6 +8,7 @@ source: author: "Vinicius Savegnago" repo: "https://github.com/vinisaveg/cosmos-theme" url: "https://marketplace.visualstudio.com/items?itemName=vinisaveg.cosmos-theme" + formats: null colors: bg: "#191622" fg: "#E1E1E6" diff --git a/themes/cosmos.yaml b/themes/cosmos.yaml index a8b761ec..92acb257 100644 --- a/themes/cosmos.yaml +++ b/themes/cosmos.yaml @@ -8,6 +8,7 @@ source: author: "Ark Platforms" repo: "https://github.com/ArkCorporation/Cosmic" url: "https://marketplace.visualstudio.com/items?itemName=Ark-Platforms-Inc.galaxyum-theme-arkcorporation" + formats: null colors: bg: "#010B21" fg: "#FDFEFF" diff --git a/themes/coucou-theme.yaml b/themes/coucou-theme.yaml index c63bead4..eb9e9fb1 100644 --- a/themes/coucou-theme.yaml +++ b/themes/coucou-theme.yaml @@ -8,6 +8,7 @@ source: author: "jsmith" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jsmith.coucou-theme" + formats: null colors: bg: "#28231E" fg: "#FFFFFF" diff --git a/themes/couldpeak.yaml b/themes/couldpeak.yaml index 8e9ec113..8f43673b 100644 --- a/themes/couldpeak.yaml +++ b/themes/couldpeak.yaml @@ -8,6 +8,7 @@ source: author: "DarkMe" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DarkMe.Couldpeak" + formats: null colors: bg: "#000000" fg: "#FF0000" diff --git a/themes/cowboy-theme.yaml b/themes/cowboy-theme.yaml deleted file mode 100644 index 19eed903..00000000 --- a/themes/cowboy-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cowboy Theme" -source: - marketplace_id: "lulu-rijpkema.cool-cowboy-theme" - version: "0.2.0" - installs: 896 - rating: 5 - ratings: 3 - author: "LRijpkema" - repo: "https://github.com/LRijpkema/cool-cowboy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lulu-rijpkema.cool-cowboy-theme" -colors: - bg: "#1D1A23" - fg: "#E1DFE5" - black: "#1D1A23" - red: "#A25A63" - green: "#708B91" - yellow: "#BFA481" - blue: "#7790A8" - magenta: "#8D88B6" - cyan: "#2C8585" - white: "#918A9F" - brightBlack: "#746B84" - brightRed: "#E16F6F" - brightGreen: "#6BC46D" - brightYellow: "#F0BF5E" - brightBlue: "#6C9EDD" - brightMagenta: "#A48ADE" - brightCyan: "#4EB1B1" - brightWhite: "#E1DFE5" -meta: - mode: "dark" - accent: "green" - hue: 300 - pair: null - contrast: - fg: 86.3 - black: 0 - red: 25.7 - green: 36.3 - yellow: 53.7 - blue: 39.7 - magenta: 39.6 - cyan: 30.1 - white: 39.7 - brightBlack: 25.5 - brightRed: 42.3 - brightGreen: 58.6 - brightYellow: 70.9 - brightBlue: 47 - brightMagenta: 45.2 - brightCyan: 50.8 - brightWhite: 86.3 diff --git a/themes/cozy-evenings.yaml b/themes/cozy-evenings.yaml index 1eeecdb0..483bb759 100644 --- a/themes/cozy-evenings.yaml +++ b/themes/cozy-evenings.yaml @@ -8,6 +8,7 @@ source: author: "Naous" repo: "https://github.com/Naawa/cozy-coding" url: "https://marketplace.visualstudio.com/items?itemName=Naous.cozy-coding" + formats: null colors: bg: "#000F19" fg: "#F2D2D4" diff --git a/themes/cozy-mornings.yaml b/themes/cozy-mornings.yaml index 8a5d431c..faa9ea38 100644 --- a/themes/cozy-mornings.yaml +++ b/themes/cozy-mornings.yaml @@ -8,6 +8,7 @@ source: author: "Naous" repo: "https://github.com/Naawa/cozy-coding" url: "https://marketplace.visualstudio.com/items?itemName=Naous.cozy-coding" + formats: null colors: bg: "#FFF6F0" fg: "#493C3A" diff --git a/themes/cozyspace.yaml b/themes/cozyspace.yaml index eb688b89..e71e9240 100644 --- a/themes/cozyspace.yaml +++ b/themes/cozyspace.yaml @@ -8,6 +8,7 @@ source: author: "Gabriel Sanjuliano" repo: "https://github.com/GabrielSanjuliano/CozySpace" url: "https://marketplace.visualstudio.com/items?itemName=GabrielSanjuliano.cozyspace" + formats: null colors: bg: "#1F2937" fg: "#FCFCFA" diff --git a/themes/cpa-lions.yaml b/themes/cpa-lions.yaml index 80473fc8..8166820d 100644 --- a/themes/cpa-lions.yaml +++ b/themes/cpa-lions.yaml @@ -8,6 +8,7 @@ source: author: "cmbell715" repo: "https://github.com/cmbell715/" url: "https://marketplace.visualstudio.com/items?itemName=cmbell715.cpa-theme" + formats: null colors: bg: "#151323" fg: "#AE9C66" diff --git a/themes/cr-night-theme.yaml b/themes/cr-night-theme.yaml deleted file mode 100644 index 86dd8b55..00000000 --- a/themes/cr-night-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "cr-night-theme" -source: - marketplace_id: "carcruz.cr-theme-night" - version: "0.0.1" - installs: 138 - author: "carcruz" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=carcruz.cr-theme-night" -colors: - bg: "#1D1D1D" - fg: "#D3D3D3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 78.2 - black: 0 - red: 26 - green: 52.3 - yellow: 84.9 - blue: 26.7 - magenta: 29.1 - cyan: 46.9 - white: 89.3 - brightBlack: 21.3 - brightRed: 37.9 - brightGreen: 62.8 - brightYellow: 94.9 - brightBlue: 39.3 - brightMagenta: 44.7 - brightCyan: 54.7 - brightWhite: 89.3 diff --git a/themes/cr0wn-gh0ul.yaml b/themes/cr0wn-gh0ul.yaml index 404124f0..bd0af316 100644 --- a/themes/cr0wn-gh0ul.yaml +++ b/themes/cr0wn-gh0ul.yaml @@ -8,6 +8,7 @@ source: author: "Cr0wn_Gh0ul" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Cr0wnGh0ul.cr0wn-gh0ul" + formats: null colors: bg: "#0F0F0F" fg: "#ECECEC" diff --git a/themes/crackpot-contrast.yaml b/themes/crackpot-contrast.yaml deleted file mode 100644 index 7c479aaa..00000000 --- a/themes/crackpot-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "crackpot-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#181726" - fg: "#D2C9EF" - black: "#222136" - red: "#BA0E2E" - green: "#E4B363" - yellow: "#EF6461" - blue: "#908CD8" - magenta: "#E4B363" - cyan: "#E8E9EB" - white: "#E2DDF5" - brightBlack: "#403D66" - brightRed: "#F03E5F" - brightGreen: "#F3DDBA" - brightYellow: "#F8BFBE" - brightBlue: "#DAD8F2" - brightMagenta: "#F3DDBA" - brightCyan: "#FFFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 287 - pair: null - contrast: - fg: 75.7 - black: 0 - red: 20.3 - green: 64.6 - yellow: 42.7 - blue: 43.5 - magenta: 64.6 - cyan: 92.3 - white: 86.6 - brightBlack: 7.9 - brightRed: 36.6 - brightGreen: 86.5 - brightYellow: 75.1 - brightBlue: 83.2 - brightMagenta: 86.5 - brightCyan: 106.7 - brightWhite: 106.7 diff --git a/themes/crackpot-light.yaml b/themes/crackpot-light.yaml deleted file mode 100644 index b2fb5d11..00000000 --- a/themes/crackpot-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "crackpot-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#E6E3EF" - fg: "#3A385B" - black: "#F4F3F8" - red: "#BA0E2E" - green: "#E4B363" - yellow: "#EF6461" - blue: "#908CD8" - magenta: "#E4B363" - cyan: "#3A385B" - white: "#44426B" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#F3DDBA" - brightYellow: "#F8BFBE" - brightBlue: "#DAD8F2" - brightMagenta: "#F3DDBA" - brightCyan: "#625F9A" - brightWhite: "#625F9A" -meta: - mode: "light" - accent: "orange" - hue: 298 - pair: null - contrast: - fg: 80 - black: 7.7 - red: 64.7 - green: 21 - yellow: 42.2 - blue: 41.4 - magenta: 21 - cyan: 80 - white: 76 - brightBlack: 15.2 - brightRed: 48.3 - brightGreen: 0 - brightYellow: 11.1 - brightBlue: 0 - brightMagenta: 0 - brightCyan: 63.3 - brightWhite: 63.3 diff --git a/themes/crackpot.yaml b/themes/crackpot.yaml deleted file mode 100644 index a845ee26..00000000 --- a/themes/crackpot.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "crackpot" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#3A385B" - fg: "#D2C9EF" - black: "#44426B" - red: "#BA0E2E" - green: "#E4B363" - yellow: "#EF6461" - blue: "#908CD8" - magenta: "#E4B363" - cyan: "#E8E9EB" - white: "#E2DDF5" - brightBlack: "#625F9A" - brightRed: "#F03E5F" - brightGreen: "#F3DDBA" - brightYellow: "#F8BFBE" - brightBlue: "#DAD8F2" - brightMagenta: "#F3DDBA" - brightCyan: "#FFFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 286 - pair: null - contrast: - fg: 68.4 - black: 0 - red: 13 - green: 57.3 - yellow: 35.4 - blue: 36.2 - magenta: 57.3 - cyan: 85 - white: 79.3 - brightBlack: 14.4 - brightRed: 29.3 - brightGreen: 79.2 - brightYellow: 67.7 - brightBlue: 75.9 - brightMagenta: 79.2 - brightCyan: 99.4 - brightWhite: 99.4 diff --git a/themes/crafty-theme-dark.yaml b/themes/crafty-theme-dark.yaml index 3bda4e53..a4d655d9 100644 --- a/themes/crafty-theme-dark.yaml +++ b/themes/crafty-theme-dark.yaml @@ -8,6 +8,7 @@ source: author: "Mark Ryan" repo: "https://github.com/mk-ryan1988/crafty-pro" url: "https://marketplace.visualstudio.com/items?itemName=MarkRyan.crafty-theme-dark" + formats: null colors: bg: "#222222" fg: "#FFFFFF" diff --git a/themes/crazydark.yaml b/themes/crazydark.yaml index 62ea6ff3..9166c735 100644 --- a/themes/crazydark.yaml +++ b/themes/crazydark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "DarkThemes.CrazyDark" version: "0.0.1" installs: 117 + rating: 0 + ratings: 0 author: "DarkThemes" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DarkThemes.CrazyDark" + formats: null colors: bg: "#000000" fg: "#C07F7F" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 42.8 black: 0 diff --git a/themes/cream-charcoal.yaml b/themes/cream-charcoal.yaml index 4dfbc651..43a887a2 100644 --- a/themes/cream-charcoal.yaml +++ b/themes/cream-charcoal.yaml @@ -8,6 +8,7 @@ source: author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" + formats: null colors: bg: "#2D2A2E" fg: "#A89984" diff --git a/themes/creative-purple-innovation-imagination.yaml b/themes/creative-purple-innovation-imagination.yaml index 873b8a85..9b0181a7 100644 --- a/themes/creative-purple-innovation-imagination.yaml +++ b/themes/creative-purple-innovation-imagination.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#1A0D1A" fg: "#F3E5F5" diff --git a/themes/creative-purple-light-innovation-imagination.yaml b/themes/creative-purple-light-innovation-imagination.yaml index 47321e02..7c30ace0 100644 --- a/themes/creative-purple-light-innovation-imagination.yaml +++ b/themes/creative-purple-light-innovation-imagination.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#FAF5FA" fg: "#1A0D1A" diff --git a/themes/crema.yaml b/themes/crema.yaml index 5428ace6..8ba20ca8 100644 --- a/themes/crema.yaml +++ b/themes/crema.yaml @@ -8,6 +8,7 @@ source: author: "Le-BlitzZz" repo: "https://github.com/Le-BlitzZz/vscode-crema-theme" url: "https://marketplace.visualstudio.com/items?itemName=Le-BlitzZz.vscode-crema-theme" + formats: null colors: bg: "#1F1F1F" fg: "#CCCCCC" diff --git a/themes/crf-flamengo.yaml b/themes/crf-flamengo.yaml deleted file mode 100644 index 2ec6e5c3..00000000 --- a/themes/crf-flamengo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CRF Flamengo" -source: - marketplace_id: "crf-flamengo-theme.crf-flamengo-theme" - version: "0.0.1" - installs: 258 - rating: 5 - ratings: 1 - author: "crf-flamengo-theme" - repo: "https://keoxcoelho@dev.azure.com/keoxcoelho/VSC_Themes/_git/VSC_Themes" - url: "https://marketplace.visualstudio.com/items?itemName=crf-flamengo-theme.crf-flamengo-theme" -colors: - bg: "#000000" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#868686" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#474747" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.5 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 37.6 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 10.9 diff --git a/themes/crimson-sunset.yaml b/themes/crimson-sunset.yaml index 506ea2fc..e8ebb6a6 100644 --- a/themes/crimson-sunset.yaml +++ b/themes/crimson-sunset.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/crisp-contrast.yaml b/themes/crisp-contrast.yaml deleted file mode 100644 index 7715b3e7..00000000 --- a/themes/crisp-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "crisp-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0C090C" - fg: "#FFFFFF" - black: "#1B141B" - red: "#BA0E2E" - green: "#CBA0CD" - yellow: "#765478" - blue: "#FC6A0F" - magenta: "#FC6A0F" - cyan: "#CBA0CD" - white: "#FFFFFF" - brightBlack: "#463546" - brightRed: "#F03E5F" - brightGreen: "#F0E3F0" - brightYellow: "#A987AB" - brightBlue: "#FDA974" - brightMagenta: "#FDA974" - brightCyan: "#F0E3F0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.7 - black: 0 - red: 21.4 - green: 58.3 - yellow: 20.2 - blue: 47.1 - magenta: 47.1 - cyan: 58.3 - white: 107.7 - brightBlack: 0 - brightRed: 37.7 - brightGreen: 92 - brightYellow: 43.5 - brightBlue: 66.6 - brightMagenta: 66.6 - brightCyan: 92 - brightWhite: 107.7 diff --git a/themes/crisp-light.yaml b/themes/crisp-light.yaml deleted file mode 100644 index b2743406..00000000 --- a/themes/crisp-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "crisp-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#221A22" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#99769B" - yellow: "#765478" - blue: "#FC6A0F" - magenta: "#FC6A0F" - cyan: "#99769B" - white: "#302530" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#C5B1C6" - brightYellow: "#A987AB" - brightBlue: "#FDA974" - brightMagenta: "#FDA974" - brightCyan: "#C5B1C6" - brightWhite: "#5C465C" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 103.9 - black: 0 - red: 80.3 - green: 66.2 - yellow: 81.5 - blue: 54.6 - magenta: 54.6 - cyan: 66.2 - white: 101.5 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 38.8 - brightYellow: 58.1 - brightBlue: 35.7 - brightMagenta: 35.7 - brightCyan: 38.8 - brightWhite: 89.1 diff --git a/themes/crisp.yaml b/themes/crisp.yaml deleted file mode 100644 index 67479fda..00000000 --- a/themes/crisp.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "crisp" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#221A22" - fg: "#FFFFFF" - black: "#302530" - red: "#BA0E2E" - green: "#CBA0CD" - yellow: "#765478" - blue: "#FC6A0F" - magenta: "#FC6A0F" - cyan: "#CBA0CD" - white: "#FFFFFF" - brightBlack: "#5C465C" - brightRed: "#F03E5F" - brightGreen: "#F0E3F0" - brightYellow: "#A987AB" - brightBlue: "#FDA974" - brightMagenta: "#FDA974" - brightCyan: "#F0E3F0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 326 - pair: null - contrast: - fg: 106.2 - black: 0 - red: 19.8 - green: 56.8 - yellow: 18.7 - blue: 45.6 - magenta: 45.6 - cyan: 56.8 - white: 106.2 - brightBlack: 11.5 - brightRed: 36.1 - brightGreen: 90.5 - brightYellow: 42 - brightBlue: 65.1 - brightMagenta: 65.1 - brightCyan: 90.5 - brightWhite: 106.2 diff --git a/themes/crow-dark.yaml b/themes/crow-dark.yaml deleted file mode 100644 index 99a83087..00000000 --- a/themes/crow-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Crow Dark" -source: - marketplace_id: "codejockie.crow" - version: "0.1.1" - installs: 1139 - rating: 5 - ratings: 3 - author: "John Kennedy" - repo: "https://github.com/codejockie/crow-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=codejockie.crow" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#FF8585" - green: "#87C591" - yellow: "#F3D09B" - blue: "#70B8FF" - magenta: "#AEA3FF" - cyan: "#9EE0E0" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#FF8585" - brightGreen: "#87C591" - brightYellow: "#F3D09B" - brightBlue: "#70B8FF" - brightMagenta: "#AEA3FF" - brightCyan: "#9EE0E0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 56.2 - green: 63.4 - yellow: 81.2 - blue: 61.3 - magenta: 58.6 - cyan: 80.7 - white: 107.9 - brightBlack: 0 - brightRed: 56.2 - brightGreen: 63.4 - brightYellow: 81.2 - brightBlue: 61.3 - brightMagenta: 58.6 - brightCyan: 80.7 - brightWhite: 107.9 diff --git a/themes/crowveil-ayu.yaml b/themes/crowveil-ayu.yaml index 1e8952cc..8836b448 100644 --- a/themes/crowveil-ayu.yaml +++ b/themes/crowveil-ayu.yaml @@ -8,6 +8,7 @@ source: author: "Crowveil" repo: "https://github.com/m4wi/Arch-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Arch-Darker.Arch-Darker" + formats: null colors: bg: "#020202" fg: "#B0B0B0" diff --git a/themes/crt-64.yaml b/themes/crt-64.yaml deleted file mode 100644 index c6ae0111..00000000 --- a/themes/crt-64.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CRT 64" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#352879" - fg: "#6C5EB5" - black: "#6C5EB5" - red: "#5D50A5" - green: "#6153A9" - yellow: "#56489D" - blue: "#685AB1" - magenta: "#6557AD" - cyan: "#5A4CA1" - white: "#524599" - brightBlack: "#6C5EB5" - brightRed: "#5D50A5" - brightGreen: "#6153A9" - brightYellow: "#56489D" - brightBlue: "#685AB1" - brightMagenta: "#6557AD" - brightCyan: "#5A4CA1" - brightWhite: "#524599" -meta: - mode: "dark" - accent: "magenta" - hue: 284 - pair: null - contrast: - fg: 18.1 - black: 18.1 - red: 12.2 - green: 13.5 - yellow: 9.3 - blue: 16.4 - magenta: 15.1 - cyan: 10.8 - white: 8 - brightBlack: 18.1 - brightRed: 12.2 - brightGreen: 13.5 - brightYellow: 9.3 - brightBlue: 16.4 - brightMagenta: 15.1 - brightCyan: 10.8 - brightWhite: 8 diff --git a/themes/crt-alt.yaml b/themes/crt-alt.yaml index eba87313..be84714e 100644 --- a/themes/crt-alt.yaml +++ b/themes/crt-alt.yaml @@ -8,6 +8,7 @@ source: author: "Leandro Rodrigues" repo: "https://github.com/TheOld/legacy-term" url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" + formats: null colors: bg: "#000C00" fg: "#00FF66" diff --git a/themes/crt-amber.yaml b/themes/crt-amber.yaml deleted file mode 100644 index e3068547..00000000 --- a/themes/crt-amber.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CRT Amber" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#111111" - fg: "#FFB000" - black: "#FFB000" - red: "#C08605" - green: "#CF9003" - yellow: "#A07007" - blue: "#EFA501" - magenta: "#DF9B02" - cyan: "#B07B06" - white: "#906608" - brightBlack: "#FFB000" - brightRed: "#C08605" - brightGreen: "#CF9003" - brightYellow: "#A07007" - brightBlue: "#EFA501" - brightMagenta: "#DF9B02" - brightCyan: "#B07B06" - brightWhite: "#906608" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 68.1 - black: 68.1 - red: 42.9 - green: 48.6 - yellow: 31.2 - blue: 61.3 - magenta: 55 - cyan: 36.9 - white: 26.1 - brightBlack: 68.1 - brightRed: 42.9 - brightGreen: 48.6 - brightYellow: 31.2 - brightBlue: 61.3 - brightMagenta: 55 - brightCyan: 36.9 - brightWhite: 26.1 diff --git a/themes/crt-apple.yaml b/themes/crt-apple.yaml index e3d263a9..eac8e29c 100644 --- a/themes/crt-apple.yaml +++ b/themes/crt-apple.yaml @@ -8,6 +8,7 @@ source: author: "Leandro Rodrigues" repo: "https://github.com/TheOld/legacy-term" url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" + formats: null colors: bg: "#000C00" fg: "#33FF33" diff --git a/themes/crt-appleiic.yaml b/themes/crt-appleiic.yaml index da1188c8..e3e3a94e 100644 --- a/themes/crt-appleiic.yaml +++ b/themes/crt-appleiic.yaml @@ -8,6 +8,7 @@ source: author: "Leandro Rodrigues" repo: "https://github.com/TheOld/legacy-term" url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" + formats: null colors: bg: "#000C00" fg: "#66FF66" diff --git a/themes/crt-blue.yaml b/themes/crt-blue.yaml deleted file mode 100644 index fc930d82..00000000 --- a/themes/crt-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CRT Blue" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#111111" - fg: "#0099FF" - black: "#0099FF" - red: "#0575C0" - green: "#037ECF" - yellow: "#0763A0" - blue: "#0190EF" - magenta: "#0287DF" - cyan: "#066CB0" - white: "#085A90" - brightBlack: "#0099FF" - brightRed: "#0575C0" - brightGreen: "#037ECF" - brightYellow: "#0763A0" - brightBlue: "#0190EF" - brightMagenta: "#0287DF" - brightCyan: "#066CB0" - brightWhite: "#085A90" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 45.4 - black: 45.4 - red: 28.1 - green: 32.1 - yellow: 20.3 - blue: 40.8 - magenta: 36.4 - cyan: 24.1 - white: 16.7 - brightBlack: 45.4 - brightRed: 28.1 - brightGreen: 32.1 - brightYellow: 20.3 - brightBlue: 40.8 - brightMagenta: 36.4 - brightCyan: 24.1 - brightWhite: 16.7 diff --git a/themes/crt-green.yaml b/themes/crt-green.yaml deleted file mode 100644 index cfc79fe9..00000000 --- a/themes/crt-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CRT Green" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#111111" - fg: "#33FF00" - black: "#33FF00" - red: "#2AC005" - green: "#2CCF03" - yellow: "#25A007" - blue: "#31EF01" - magenta: "#2EDF02" - cyan: "#28B006" - white: "#239008" - brightBlack: "#33FF00" - brightRed: "#2AC005" - brightGreen: "#2CCF03" - brightYellow: "#25A007" - brightBlue: "#31EF01" - brightMagenta: "#2EDF02" - brightCyan: "#28B006" - brightWhite: "#239008" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 86.3 - black: 86.3 - red: 54.4 - green: 61.6 - yellow: 39.9 - blue: 77.8 - magenta: 69.5 - cyan: 47 - white: 33.2 - brightBlack: 86.3 - brightRed: 54.4 - brightGreen: 61.6 - brightYellow: 39.9 - brightBlue: 77.8 - brightMagenta: 69.5 - brightCyan: 47 - brightWhite: 33.2 diff --git a/themes/crt-green1.yaml b/themes/crt-green1.yaml index e444e2c3..c3bd0dee 100644 --- a/themes/crt-green1.yaml +++ b/themes/crt-green1.yaml @@ -8,6 +8,7 @@ source: author: "Leandro Rodrigues" repo: "https://github.com/TheOld/legacy-term" url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" + formats: null colors: bg: "#000C00" fg: "#33FF00" diff --git a/themes/crt-green2.yaml b/themes/crt-green2.yaml index 66276d39..237db1d6 100644 --- a/themes/crt-green2.yaml +++ b/themes/crt-green2.yaml @@ -8,6 +8,7 @@ source: author: "Leandro Rodrigues" repo: "https://github.com/TheOld/legacy-term" url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" + formats: null colors: bg: "#000C00" fg: "#00FF33" diff --git a/themes/crt-red.yaml b/themes/crt-red.yaml deleted file mode 100644 index c31a4295..00000000 --- a/themes/crt-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CRT Red" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#111111" - fg: "#FF2222" - black: "#FF2222" - red: "#C01D1D" - green: "#CF1F1F" - yellow: "#A01B1B" - blue: "#EF2121" - magenta: "#DF2020" - cyan: "#B01C1C" - white: "#901A1A" - brightBlack: "#FF2222" - brightRed: "#C01D1D" - brightGreen: "#CF1F1F" - brightYellow: "#A01B1B" - brightBlue: "#EF2121" - brightMagenta: "#DF2020" - brightCyan: "#B01C1C" - brightWhite: "#901A1A" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 37.8 - black: 37.8 - red: 22.7 - green: 26.2 - yellow: 15.9 - blue: 33.8 - magenta: 29.9 - cyan: 19.2 - white: 12.7 - brightBlack: 37.8 - brightRed: 22.7 - brightGreen: 26.2 - brightYellow: 15.9 - brightBlue: 33.8 - brightMagenta: 29.9 - brightCyan: 19.2 - brightWhite: 12.7 diff --git a/themes/crt.yaml b/themes/crt.yaml deleted file mode 100644 index af9a1312..00000000 --- a/themes/crt.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "crt" -source: - marketplace_id: "jojihatzz.fosphor" - version: "0.0.1" - installs: 55 - author: "jojihatzz" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=jojihatzz.fosphor" -colors: - bg: "#111B13" - fg: "#A8E6A3" - black: "#111B13" - red: "#F07178" - green: "#C3E88D" - yellow: "#F8B965" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#EEFFFF" - brightBlack: "#5D7E5D" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#EEFFFF" -meta: - mode: "dark" - accent: "red" - hue: 150 - pair: null - contrast: - fg: 80.9 - black: 0 - red: 46.4 - green: 84 - yellow: 70.3 - blue: 55.7 - magenta: 53.6 - cyan: 78.1 - white: 104.4 - brightBlack: 28.9 - brightRed: 43.4 - brightGreen: 84 - brightYellow: 78.7 - brightBlue: 55.7 - brightMagenta: 53.6 - brightCyan: 78.1 - brightWhite: 104.4 diff --git a/themes/crypto.yaml b/themes/crypto.yaml deleted file mode 100644 index a94ec893..00000000 --- a/themes/crypto.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Crypto" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#16141B" - fg: "#9D52E8" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 298 - pair: null - contrast: - fg: 31.2 - black: 0 - red: 26.9 - green: 53.2 - yellow: 85.8 - blue: 27.6 - magenta: 29.9 - cyan: 47.7 - white: 90.2 - brightBlack: 22.2 - brightRed: 38.7 - brightGreen: 63.7 - brightYellow: 95.8 - brightBlue: 40.2 - brightMagenta: 45.6 - brightCyan: 55.6 - brightWhite: 90.2 diff --git a/themes/crystal-quartz.yaml b/themes/crystal-quartz.yaml deleted file mode 100644 index 7160ce7d..00000000 --- a/themes/crystal-quartz.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Crystal-Quartz" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#0C0A09" - fg: "#F2F2F2" - black: "#0C0A09" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#E11D48" - magenta: "#E11D48" - cyan: "#29C3A0" - white: "#F2F2F2" - brightBlack: "#0C0A09" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#E11D48" - brightMagenta: "#E11D48" - brightCyan: "#29C3A0" - brightWhite: "#F2F2F2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99.2 - black: 0 - red: 10.2 - green: 58.5 - yellow: 52.5 - blue: 31 - magenta: 31 - cyan: 58.5 - white: 99.2 - brightBlack: 0 - brightRed: 10.2 - brightGreen: 58.5 - brightYellow: 52.5 - brightBlue: 31 - brightMagenta: 31 - brightCyan: 58.5 - brightWhite: 99.2 diff --git a/themes/crystaltine-s-crystalline-4-1.yaml b/themes/crystaltine-s-crystalline-4-1.yaml deleted file mode 100644 index 691609e8..00000000 --- a/themes/crystaltine-s-crystalline-4-1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Crystaltine's Crystalline 4.1" -source: - marketplace_id: "nonagon.crystalline-theme" - version: "5.0.10" - installs: 1894 - rating: 5 - ratings: 2 - author: "crystaltine" - repo: "https://github.com/crystaltine/Crystalline-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=nonagon.crystalline-theme" -colors: - bg: "#1C1C1F" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#FCE56E" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#FBE291" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 58.8 - black: 8.2 - red: 36.1 - green: 59.8 - yellow: 89.1 - blue: 49.1 - magenta: 38.5 - cyan: 51.9 - white: 90 - brightBlack: 14.9 - brightRed: 45.5 - brightGreen: 76.2 - brightYellow: 88.3 - brightBlue: 63.1 - brightMagenta: 49.7 - brightCyan: 67.2 - brightWhite: 106.3 diff --git a/themes/crystaltine-s-crystalline-5-0.yaml b/themes/crystaltine-s-crystalline-5-0.yaml deleted file mode 100644 index ea0e2a40..00000000 --- a/themes/crystaltine-s-crystalline-5-0.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Crystaltine's Crystalline 5.0" -source: - marketplace_id: "nonagon.crystalline-theme" - version: "5.0.10" - installs: 1894 - rating: 5 - ratings: 2 - author: "crystaltine" - repo: "https://github.com/crystaltine/Crystalline-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=nonagon.crystalline-theme" -colors: - bg: "#1D1D1F" - fg: "#A0A0B0" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#FCE56E" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#FBE291" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 49.8 - black: 8.1 - red: 36 - green: 59.6 - yellow: 89 - blue: 48.9 - magenta: 38.3 - cyan: 51.8 - white: 89.9 - brightBlack: 14.7 - brightRed: 45.4 - brightGreen: 76.1 - brightYellow: 88.2 - brightBlue: 63 - brightMagenta: 49.5 - brightCyan: 67.1 - brightWhite: 106.2 diff --git a/themes/cs50-light-theme.yaml b/themes/cs50-light-theme.yaml deleted file mode 100644 index 83a7689c..00000000 --- a/themes/cs50-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "cs50-light-theme" -source: - marketplace_id: "whitehat4u.cs50-theme-harvard" - version: "1.1.0" - installs: 4452 - rating: 0 - ratings: 0 - author: "juan santos" - repo: "https://github.com/juanpumpkinpie/cs50-theme-harvard" - url: "https://marketplace.visualstudio.com/items?itemName=whitehat4u.cs50-theme-harvard" -colors: - bg: "#F5F3EF" - fg: "#403718" - black: "#403718" - red: "#A64536" - green: "#599F37" - yellow: "#C09734" - blue: "#316CA5" - magenta: "#93319F" - cyan: "#A51C30" - white: "#807F7A" - brightBlack: "#594D26" - brightRed: "#CB513F" - brightGreen: "#43A912" - brightYellow: "#D29B18" - brightBlue: "#1D72C5" - brightMagenta: "#B418C7" - brightCyan: "#A51C30" - brightWhite: "#594D26" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 90 - black: 90 - red: 72.1 - green: 52.6 - yellow: 45.5 - blue: 70.1 - magenta: 74.7 - cyan: 77.3 - white: 60.4 - brightBlack: 81.7 - brightRed: 62.6 - brightGreen: 49.6 - brightYellow: 41.5 - brightBlue: 66.5 - brightMagenta: 67.9 - brightCyan: 77.3 - brightWhite: 81.7 diff --git a/themes/css-battle.yaml b/themes/css-battle.yaml index 55e394d2..36e9376f 100644 --- a/themes/css-battle.yaml +++ b/themes/css-battle.yaml @@ -8,6 +8,7 @@ source: author: "James Gulland" repo: "https://github.com/james-gulland/solar-storm-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.solar-storm-dark-theme" + formats: null colors: bg: "#101219" fg: "#86819C" diff --git a/themes/cucumber-dark.yaml b/themes/cucumber-dark.yaml index eabe496a..6000cd05 100644 --- a/themes/cucumber-dark.yaml +++ b/themes/cucumber-dark.yaml @@ -8,6 +8,7 @@ source: author: "Jason Hulbert" repo: "https://github.com/jasonhulbert/cucumber-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=jbird.cucumber-color-theme" + formats: null colors: bg: "#141A1A" fg: "#B3C2BF" diff --git a/themes/cucumber-light.yaml b/themes/cucumber-light.yaml index 0f51bcca..59bfd49e 100644 --- a/themes/cucumber-light.yaml +++ b/themes/cucumber-light.yaml @@ -8,6 +8,7 @@ source: author: "Jason Hulbert" repo: "https://github.com/jasonhulbert/cucumber-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=jbird.cucumber-color-theme" + formats: null colors: bg: "#FAF8F4" fg: "#323131" diff --git a/themes/cupertino-dark.yaml b/themes/cupertino-dark.yaml deleted file mode 100644 index dc516ad2..00000000 --- a/themes/cupertino-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Cupertino Dark" -source: - marketplace_id: "EuraIndustries.cupertino-vscode" - version: "1.3.1" - installs: 15 - author: "Eura Industries" - repo: "https://github.com/eura-industries/cupertino-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=EuraIndustries.cupertino-vscode" -colors: - bg: "#111318" - fg: "#D9DEE8" - black: "#000000" - red: "#FF383C" - green: "#33C758" - yellow: "#FFCC00" - blue: "#0088FF" - magenta: "#CB30E0" - cyan: "#0088FF" - white: "#FFFFFF" - brightBlack: "#8F8F94" - brightRed: "#FF383C" - brightGreen: "#33C758" - brightYellow: "#FFCC00" - brightBlue: "#00C0E8" - brightMagenta: "#FF2D55" - brightCyan: "#0088FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 268 - pair: "Cupertino Light" - contrast: - fg: 85.8 - black: 0 - red: 39.5 - green: 58.3 - yellow: 78.9 - blue: 39.1 - magenta: 33.8 - cyan: 39.1 - white: 107.2 - brightBlack: 41.6 - brightRed: 39.5 - brightGreen: 58.3 - brightYellow: 78.9 - brightBlue: 59.7 - brightMagenta: 38.9 - brightCyan: 39.1 - brightWhite: 107.2 diff --git a/themes/cupertino-light.yaml b/themes/cupertino-light.yaml deleted file mode 100644 index 0edfb6b1..00000000 --- a/themes/cupertino-light.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Cupertino Light" -source: - marketplace_id: "EuraIndustries.cupertino-vscode" - version: "1.3.1" - installs: 15 - author: "Eura Industries" - repo: "https://github.com/eura-industries/cupertino-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=EuraIndustries.cupertino-vscode" -colors: - bg: "#F7F8FA" - fg: "#1F2328" - black: "#000000" - red: "#FF383C" - green: "#33C758" - yellow: "#FFCC00" - blue: "#0088FF" - magenta: "#CB30E0" - cyan: "#0088FF" - white: "#FFFFFF" - brightBlack: "#8F8F94" - brightRed: "#FF383C" - brightGreen: "#33C758" - brightYellow: "#FFCC00" - brightBlue: "#00C0E8" - brightMagenta: "#FF2D55" - brightCyan: "#0088FF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Cupertino Dark" - contrast: - fg: 98.5 - black: 101.8 - red: 57.3 - green: 39 - yellow: 19.4 - blue: 57.7 - magenta: 63 - cyan: 57.7 - white: 0 - brightBlack: 55.2 - brightRed: 57.3 - brightGreen: 39 - brightYellow: 19.4 - brightBlue: 37.6 - brightMagenta: 57.9 - brightCyan: 57.7 - brightWhite: 0 diff --git a/themes/curry-dark.yaml b/themes/curry-dark.yaml index 7f37a01a..c62e6032 100644 --- a/themes/curry-dark.yaml +++ b/themes/curry-dark.yaml @@ -8,6 +8,7 @@ source: author: "CoderCurry" repo: "https://github.com/learnsomesome/curry-theme" url: "https://marketplace.visualstudio.com/items?itemName=CoderCurry.curry-theme" + formats: null colors: bg: "#121212" fg: "#DBD7CA" diff --git a/themes/cursor-dark-anysphere-v0-0-1.yaml b/themes/cursor-dark-anysphere-v0-0-1.yaml deleted file mode 100644 index 8f53f225..00000000 --- a/themes/cursor-dark-anysphere-v0-0-1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cursor Dark Anysphere v0.0.1" -source: - marketplace_id: "mpulido.cursor-dark-origin" - version: "0.0.2" - installs: 248 - rating: 0 - ratings: 0 - author: "Michael Pulido" - repo: "https://github.com/michaeljpulido/cursor-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=mpulido.cursor-dark-origin" -colors: - bg: "#191919" - fg: "#F3F3F3" - black: "#242424" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#F3F3F3" - brightBlack: "#494949" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#88C0D0" - brightWhite: "#F3F3F3" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.8 - black: 0 - red: 32.8 - green: 61.4 - yellow: 76.2 - blue: 48.4 - magenta: 46.3 - cyan: 62.5 - white: 98.8 - brightBlack: 10.4 - brightRed: 32.8 - brightGreen: 61.4 - brightYellow: 76.2 - brightBlue: 48.4 - brightMagenta: 46.3 - brightCyan: 62.5 - brightWhite: 98.8 diff --git a/themes/cursor-less-dark.yaml b/themes/cursor-less-dark.yaml deleted file mode 100644 index e3cae48c..00000000 --- a/themes/cursor-less-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cursor Less Dark" -source: - marketplace_id: "cedricverlinden.cursor-dark" - version: "2.2.0" - installs: 18735 - rating: 5 - ratings: 3 - author: "Cédric Verlinden" - repo: "https://github.com/CedricVerlinden/cursor-dark" - url: "https://marketplace.visualstudio.com/items?itemName=cedricverlinden.cursor-dark" -colors: - bg: "#242424" - fg: "#D8DEE9" - black: "#2A2A2A" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#FFFFFF" - brightBlack: "#505050" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#88C0D0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83.6 - black: 0 - red: 31.2 - green: 59.9 - yellow: 74.6 - blue: 46.9 - magenta: 44.7 - cyan: 60.9 - white: 105.1 - brightBlack: 11.4 - brightRed: 31.2 - brightGreen: 59.9 - brightYellow: 74.6 - brightBlue: 46.9 - brightMagenta: 44.7 - brightCyan: 60.9 - brightWhite: 105.1 diff --git a/themes/cursor-light.yaml b/themes/cursor-light.yaml deleted file mode 100644 index 00b112cb..00000000 --- a/themes/cursor-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cursor Light" -source: - marketplace_id: "MohdZaid.vscode-cursor-theme" - version: "0.0.1" - installs: 2750 - rating: 5 - ratings: 1 - author: "Mohd Zaid" - repo: "https://github.com/BioHazard786/cursor-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=MohdZaid.vscode-cursor-theme" -colors: - bg: "#FCFCFC" - fg: "#141414" - black: "#141414" - red: "#CF2D56" - green: "#1F8A65" - yellow: "#A16900" - blue: "#3C7CAB" - magenta: "#B8448B" - cyan: "#4C7F8C" - white: "#FCFCFC" - brightBlack: "#141414" - brightRed: "#E75E78" - brightGreen: "#55A583" - brightYellow: "#C08532" - brightBlue: "#6299C3" - brightMagenta: "#D06BA6" - brightCyan: "#6F9BA6" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 103.3 - black: 103.3 - red: 71.5 - green: 67.6 - yellow: 70 - blue: 69.2 - magenta: 71.7 - cyan: 69 - white: 0 - brightBlack: 103.3 - brightRed: 58.4 - brightGreen: 54.2 - brightYellow: 56.7 - brightBlue: 55.5 - brightMagenta: 58.3 - brightCyan: 55.3 - brightWhite: 0 diff --git a/themes/cursor-night-theme-soft.yaml b/themes/cursor-night-theme-soft.yaml deleted file mode 100644 index 7573196a..00000000 --- a/themes/cursor-night-theme-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cursor Night Theme Soft" -source: - marketplace_id: "DiegoMontejano.cursor-night-theme" - version: "1.0.0" - installs: 1013 - rating: 5 - ratings: 1 - author: "Diego Montejano" - repo: "https://github.com/diegomontejano/cursor-night-theme" - url: "https://marketplace.visualstudio.com/items?itemName=DiegoMontejano.cursor-night-theme" -colors: - bg: "#272B34" - fg: "#D6DADF" - black: "#272C36" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#E6CFA1" - blue: "#81A1C1" - magenta: "#7D7C9B" - cyan: "#90CADB" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#E6CFA1" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#D6DADF" -meta: - mode: "dark" - accent: "orange" - hue: 266 - pair: null - contrast: - fg: 79.8 - black: 0 - red: 30 - green: 58.6 - yellow: 74.9 - blue: 45.6 - magenta: 30.2 - cyan: 65.2 - white: 89.3 - brightBlack: 12.4 - brightRed: 30 - brightGreen: 58.6 - brightYellow: 74.9 - brightBlue: 45.6 - brightMagenta: 43.5 - brightCyan: 57.6 - brightWhite: 79.8 diff --git a/themes/cursor-night-theme.yaml b/themes/cursor-night-theme.yaml deleted file mode 100644 index 6a421fba..00000000 --- a/themes/cursor-night-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cursor Night Theme" -source: - marketplace_id: "DiegoMontejano.cursor-night-theme" - version: "1.0.0" - installs: 1013 - rating: 5 - ratings: 1 - author: "Diego Montejano" - repo: "https://github.com/diegomontejano/cursor-night-theme" - url: "https://marketplace.visualstudio.com/items?itemName=DiegoMontejano.cursor-night-theme" -colors: - bg: "#181D21" - fg: "#D6DADF" - black: "#272C36" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#E6CFA1" - blue: "#81A1C1" - magenta: "#7D7C9B" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#E6CFA1" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#D6DADF" -meta: - mode: "dark" - accent: "orange" - hue: 242 - pair: null - contrast: - fg: 82.2 - black: 0 - red: 32.4 - green: 61 - yellow: 77.3 - blue: 48 - magenta: 32.6 - cyan: 62.1 - white: 91.7 - brightBlack: 14.8 - brightRed: 32.4 - brightGreen: 61 - brightYellow: 77.3 - brightBlue: 48 - brightMagenta: 45.9 - brightCyan: 60 - brightWhite: 82.2 diff --git a/themes/cursor-theme.yaml b/themes/cursor-theme.yaml deleted file mode 100644 index 90a2ec7c..00000000 --- a/themes/cursor-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cursor Theme" -source: - marketplace_id: "ManitejaPratha.cursor-midnight-theme" - version: "0.0.3" - installs: 5048 - rating: 5 - ratings: 1 - author: "Maniteja Pratha" - repo: "https://github.com/Manitej66/cursor-theme-for-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=ManitejaPratha.cursor-midnight-theme" -colors: - bg: "#1E2127" - fg: "#7B88A1" - black: "#272C36" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#7D7C9B" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 36.1 - black: 0 - red: 31.7 - green: 60.4 - yellow: 75.1 - blue: 47.4 - magenta: 31.9 - cyan: 61.4 - white: 91.1 - brightBlack: 14.1 - brightRed: 31.7 - brightGreen: 60.4 - brightYellow: 75.1 - brightBlue: 47.4 - brightMagenta: 45.2 - brightCyan: 59.3 - brightWhite: 95 diff --git a/themes/custom-theme-dark.yaml b/themes/custom-theme-dark.yaml index b50d0761..8c014239 100644 --- a/themes/custom-theme-dark.yaml +++ b/themes/custom-theme-dark.yaml @@ -6,6 +6,7 @@ source: author: "Teambotics" repo: "https://github.com/nickhilster/theme-crafter" url: "https://marketplace.visualstudio.com/items?itemName=Teambotics.theme-studio" + formats: null colors: bg: "#1A1A23" fg: "#D1D0D7" diff --git a/themes/custom-theme-light.yaml b/themes/custom-theme-light.yaml index a2fc2c98..d81da599 100644 --- a/themes/custom-theme-light.yaml +++ b/themes/custom-theme-light.yaml @@ -6,6 +6,7 @@ source: author: "Teambotics" repo: "https://github.com/nickhilster/theme-crafter" url: "https://marketplace.visualstudio.com/items?itemName=Teambotics.theme-studio" + formats: null colors: bg: "#FAFAFA" fg: "#293229" diff --git a/themes/custom-theme.yaml b/themes/custom-theme.yaml deleted file mode 100644 index c47c542b..00000000 --- a/themes/custom-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Custom Theme" -source: - marketplace_id: "suleymanozkeskin.dark-theme-s" - version: "0.0.1" - installs: 47 - rating: 0 - ratings: 0 - author: "suleymanozkeskin" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=suleymanozkeskin.dark-theme-s" -colors: - bg: "#22272E" - fg: "#ADBAC7" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#FFF3CF" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: 257 - pair: null - contrast: - fg: 61 - black: 15.7 - red: 44.6 - green: 44.3 - yellow: 44.5 - blue: 44.3 - magenta: 44.1 - cyan: 58.7 - white: 45.3 - brightBlack: 22.8 - brightRed: 57.3 - brightGreen: 56.9 - brightYellow: 57.1 - brightBlue: 57 - brightMagenta: 97 - brightCyan: 67.2 - brightWhite: 79.4 diff --git a/themes/custommarktheme.yaml b/themes/custommarktheme.yaml deleted file mode 100644 index c754961d..00000000 --- a/themes/custommarktheme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CustomMarkTheme" -source: - marketplace_id: "Meuid3.headfox-theme" - version: "1.0.1" - installs: 281 - rating: 0 - ratings: 0 - author: "meuid3" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Meuid3.headfox-theme" -colors: - bg: "#303845" - fg: "#B4BDCD" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 260 - pair: null - contrast: - fg: 59.4 - black: 0 - red: 20.6 - green: 46.8 - yellow: 79.5 - blue: 21.3 - magenta: 23.6 - cyan: 41.4 - white: 83.9 - brightBlack: 15.9 - brightRed: 32.4 - brightGreen: 57.4 - brightYellow: 89.5 - brightBlue: 33.8 - brightMagenta: 39.2 - brightCyan: 49.2 - brightWhite: 83.9 diff --git a/themes/cyan-dark.yaml b/themes/cyan-dark.yaml deleted file mode 100644 index 7d53520c..00000000 --- a/themes/cyan-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cyan Dark" -source: - marketplace_id: "ceciljacob.code-color-theme" - version: "1.0.0" - installs: 22125 - rating: 5 - ratings: 1 - author: "Cecil Jacob" - repo: "https://github.com/ceciljacob/code-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ceciljacob.code-color-theme" -colors: - bg: "#0F141C" - fg: "#D8DCE8" - black: "#020202" - red: "#C45E04" - green: "#82A48F" - yellow: "#F4DB60" - blue: "#76ABDC" - magenta: "#B68DB2" - cyan: "#56B8C8" - white: "#EFEFEF" - brightBlack: "#424242" - brightRed: "#C45E04" - brightGreen: "#82A48F" - brightYellow: "#F4DB60" - brightBlue: "#76ABDC" - brightMagenta: "#B68DB2" - brightCyan: "#56B8C8" - brightWhite: "#FEFEFE" -meta: - mode: "dark" - accent: "yellow" - hue: 260 - pair: null - contrast: - fg: 84.7 - black: 0 - red: 32.3 - green: 48.1 - yellow: 84.1 - blue: 53.5 - magenta: 46.9 - cyan: 56 - white: 96.7 - brightBlack: 8.4 - brightRed: 32.3 - brightGreen: 48.1 - brightYellow: 84.1 - brightBlue: 53.5 - brightMagenta: 46.9 - brightCyan: 56 - brightWhite: 106.5 diff --git a/themes/cyber-dark.yaml b/themes/cyber-dark.yaml deleted file mode 100644 index 7f0b1348..00000000 --- a/themes/cyber-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cyber Dark" -source: - marketplace_id: "tryToDEv.cyber-qoder-themes" - version: "1.2.0" - installs: 15 - rating: 0 - ratings: 0 - author: "tryToDEv" - repo: "https://github.com/shivam20/cyber-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" -colors: - bg: "#0D1117" - fg: "#C9D1D9" - black: "#0D1117" - red: "#FF7B72" - green: "#7EE787" - yellow: "#FFA657" - blue: "#58A6FF" - magenta: "#D2A8FF" - cyan: "#79C0FF" - white: "#C9D1D9" - brightBlack: "#8B949E" - brightRed: "#FF7B72" - brightGreen: "#7EE787" - brightYellow: "#FFD580" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#79C0FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 258 - pair: "Cyber Light" - contrast: - fg: 77.5 - black: 0 - red: 52.6 - green: 78.1 - yellow: 65.1 - blue: 52.2 - magenta: 64.6 - cyan: 64.7 - white: 77.5 - brightBlack: 43.6 - brightRed: 52.6 - brightGreen: 78.1 - brightYellow: 84 - brightBlue: 64.7 - brightMagenta: 64.6 - brightCyan: 64.7 - brightWhite: 107.4 diff --git a/themes/cyber-industrial.yaml b/themes/cyber-industrial.yaml deleted file mode 100644 index 218479c6..00000000 --- a/themes/cyber-industrial.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cyber-Industrial" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#222730" - fg: "#EDEDED" - black: "#222730" - red: "#7C1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#00ADB3" - magenta: "#00ADB3" - cyan: "#29C3A0" - white: "#EDEDED" - brightBlack: "#222730" - brightRed: "#7C1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#00ADB3" - brightMagenta: "#00ADB3" - brightCyan: "#29C3A0" - brightWhite: "#EDEDED" -meta: - mode: "dark" - accent: "yellow" - hue: 262 - pair: null - contrast: - fg: 92.9 - black: 0 - red: 0 - green: 55.4 - yellow: 49.5 - blue: 46.1 - magenta: 46.1 - cyan: 55.4 - white: 92.9 - brightBlack: 0 - brightRed: 0 - brightGreen: 55.4 - brightYellow: 49.5 - brightBlue: 46.1 - brightMagenta: 46.1 - brightCyan: 55.4 - brightWhite: 92.9 diff --git a/themes/cyber-light-soft.yaml b/themes/cyber-light-soft.yaml deleted file mode 100644 index 48838860..00000000 --- a/themes/cyber-light-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cyber Light Soft" -source: - marketplace_id: "tryToDEv.cyber-qoder-themes" - version: "1.2.0" - installs: 15 - rating: 0 - ratings: 0 - author: "tryToDEv" - repo: "https://github.com/shivam20/cyber-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" -colors: - bg: "#FAFBFC" - fg: "#2F363D" - black: "#2F363D" - red: "#CF222E" - green: "#1A7F37" - yellow: "#BF8700" - blue: "#0550AE" - magenta: "#8250DF" - cyan: "#0969DA" - white: "#959DA5" - brightBlack: "#6E7781" - brightRed: "#CF222E" - brightGreen: "#1A7F37" - brightYellow: "#BF8700" - brightBlue: "#0969DA" - brightMagenta: "#8250DF" - brightCyan: "#0969DA" - brightWhite: "#2F363D" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 95.5 - black: 95.5 - red: 72.3 - green: 72.1 - yellow: 55.7 - blue: 83.1 - magenta: 71.8 - cyan: 72.5 - white: 50.6 - brightBlack: 69.1 - brightRed: 72.3 - brightGreen: 72.1 - brightYellow: 55.7 - brightBlue: 72.5 - brightMagenta: 71.8 - brightCyan: 72.5 - brightWhite: 95.5 diff --git a/themes/cyber-light-warm.yaml b/themes/cyber-light-warm.yaml deleted file mode 100644 index 6b26ff90..00000000 --- a/themes/cyber-light-warm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cyber Light Warm" -source: - marketplace_id: "tryToDEv.cyber-qoder-themes" - version: "1.2.0" - installs: 15 - rating: 0 - ratings: 0 - author: "tryToDEv" - repo: "https://github.com/shivam20/cyber-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" -colors: - bg: "#FFFBF0" - fg: "#3A2A1A" - black: "#3A2A1A" - red: "#CC3300" - green: "#2E7D32" - yellow: "#B8860B" - blue: "#CC5500" - magenta: "#8B4513" - cyan: "#006699" - white: "#A89078" - brightBlack: "#6B5B4F" - brightRed: "#CC3300" - brightGreen: "#2E7D32" - brightYellow: "#B8860B" - brightBlue: "#006699" - brightMagenta: "#8B4513" - brightCyan: "#006699" - brightWhite: "#3A2A1A" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 97.9 - black: 97.9 - red: 71.9 - green: 72.7 - yellow: 57.2 - blue: 66.6 - magenta: 81.8 - cyan: 78.2 - white: 54.7 - brightBlack: 79.9 - brightRed: 71.9 - brightGreen: 72.7 - brightYellow: 57.2 - brightBlue: 78.2 - brightMagenta: 81.8 - brightCyan: 78.2 - brightWhite: 97.9 diff --git a/themes/cyber-light.yaml b/themes/cyber-light.yaml deleted file mode 100644 index f8e0d1be..00000000 --- a/themes/cyber-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cyber Light" -source: - marketplace_id: "tryToDEv.cyber-qoder-themes" - version: "1.2.0" - installs: 15 - rating: 0 - ratings: 0 - author: "tryToDEv" - repo: "https://github.com/shivam20/cyber-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" -colors: - bg: "#FFFFFF" - fg: "#24292F" - black: "#24292F" - red: "#CF222E" - green: "#1A7F37" - yellow: "#D29922" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1F6FEB" - white: "#8C959F" - brightBlack: "#6E7781" - brightRed: "#CF222E" - brightGreen: "#1A7F37" - brightYellow: "#D29922" - brightBlue: "#1F6FEB" - brightMagenta: "#8250DF" - brightCyan: "#1F6FEB" - brightWhite: "#24292F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Cyber Dark" - contrast: - fg: 101.5 - black: 101.5 - red: 74.8 - green: 74.6 - yellow: 49.3 - blue: 74.9 - magenta: 74.3 - cyan: 71.5 - white: 57.2 - brightBlack: 71.6 - brightRed: 74.8 - brightGreen: 74.6 - brightYellow: 49.3 - brightBlue: 71.5 - brightMagenta: 74.3 - brightCyan: 71.5 - brightWhite: 101.5 diff --git a/themes/cyber-pastel-violet.yaml b/themes/cyber-pastel-violet.yaml deleted file mode 100644 index 9699c429..00000000 --- a/themes/cyber-pastel-violet.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cyber Pastel - Violet" -source: - marketplace_id: "cyber-pastel-themes.cyber-pastel-theme-pack" - version: "1.0.0" - installs: 425 - rating: 5 - ratings: 2 - author: "cyber-pastel-themes" - repo: "https://github.com/your-username/cyber-pastel-theme-pack" - url: "https://marketplace.visualstudio.com/items?itemName=cyber-pastel-themes.cyber-pastel-theme-pack" -colors: - bg: "#FEFEFF" - fg: "#374151" - black: "#374151" - red: "#EF4444" - green: "#10B981" - yellow: "#F59E0B" - blue: "#3B82F6" - magenta: "#8B5CF6" - cyan: "#06B6D4" - white: "#F9FAFB" - brightBlack: "#374151" - brightRed: "#EF4444" - brightGreen: "#10B981" - brightYellow: "#F59E0B" - brightBlue: "#3B82F6" - brightMagenta: "#8B5CF6" - brightCyan: "#06B6D4" - brightWhite: "#F9FAFB" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 93.4 - black: 93.4 - red: 63.3 - green: 48.5 - yellow: 41.2 - blue: 63.3 - magenta: 68.2 - cyan: 46.6 - white: 0 - brightBlack: 93.4 - brightRed: 63.3 - brightGreen: 48.5 - brightYellow: 41.2 - brightBlue: 63.3 - brightMagenta: 68.2 - brightCyan: 46.6 - brightWhite: 0 diff --git a/themes/cyber-pop.yaml b/themes/cyber-pop.yaml deleted file mode 100644 index f820dc79..00000000 --- a/themes/cyber-pop.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cyber-Pop" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#0D0D0D" - fg: "#FAFAFA" - black: "#0D0D0D" - red: "#F26E21" - green: "#29C3A0" - yellow: "#D29922" - blue: "#0DD9D9" - magenta: "#0DD9D9" - cyan: "#29C3A0" - white: "#FAFAFA" - brightBlack: "#0D0D0D" - brightRed: "#F26E21" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#0DD9D9" - brightMagenta: "#0DD9D9" - brightCyan: "#29C3A0" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 104.3 - black: 0 - red: 45.8 - green: 58.4 - yellow: 52.4 - blue: 70.9 - magenta: 70.9 - cyan: 58.4 - white: 104.3 - brightBlack: 0 - brightRed: 45.8 - brightGreen: 58.4 - brightYellow: 52.4 - brightBlue: 70.9 - brightMagenta: 70.9 - brightCyan: 58.4 - brightWhite: 104.3 diff --git a/themes/cyber-purple-77.yaml b/themes/cyber-purple-77.yaml index 58eae3db..22cfa948 100644 --- a/themes/cyber-purple-77.yaml +++ b/themes/cyber-purple-77.yaml @@ -2,12 +2,13 @@ name: "Cyber Purple 77" source: marketplace_id: "flep.cyber-purple-77" version: "1.2.1" - installs: 4865 + installs: 4871 rating: 5 ratings: 2 author: "flep" repo: "https://github.com/fleps/cyber-purple-77-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=flep.cyber-purple-77" + formats: null colors: bg: "#120C18" fg: "#C39CDE" diff --git a/themes/cyberblue.yaml b/themes/cyberblue.yaml deleted file mode 100644 index fae67bc3..00000000 --- a/themes/cyberblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cyberblue" -source: - marketplace_id: "Noqs.darkstack" - version: "1.1.1" - installs: 2842 - rating: 0 - ratings: 0 - author: "Noqs" - repo: "https://github.com/NoxQ/Darkstack" - url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" -colors: - bg: "#020B22" - fg: "#D4D4D4" - black: "#515151" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 261 - pair: null - contrast: - fg: 80.2 - black: 14.3 - red: 27.4 - green: 53.7 - yellow: 86.3 - blue: 28.1 - magenta: 30.4 - cyan: 48.2 - white: 90.7 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 90.7 diff --git a/themes/cyberdude-black.yaml b/themes/cyberdude-black.yaml index ca6931c9..8f4b924b 100644 --- a/themes/cyberdude-black.yaml +++ b/themes/cyberdude-black.yaml @@ -8,6 +8,7 @@ source: author: "Anbuselvan Rocky" repo: "https://github.com/anburocky3/vscode-cyberdude-theme" url: "https://marketplace.visualstudio.com/items?itemName=AnbuselvanRocky.cyberdude-theme" + formats: null colors: bg: "#0E1419" fg: "#F8F8F2" diff --git a/themes/cyberdyne-ghostty.yaml b/themes/cyberdyne-ghostty.yaml deleted file mode 100644 index 52bea9d6..00000000 --- a/themes/cyberdyne-ghostty.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cyberdyne Ghostty" -source: - marketplace_id: "m0-hassan.cyberdyne" - version: "0.1.3" - installs: 136 - rating: 5 - ratings: 1 - author: "m0-hassan" - repo: "https://github.com/m0-hassan/cyberdyne" - url: "https://marketplace.visualstudio.com/items?itemName=m0-hassan.cyberdyne" -colors: - bg: "#151144" - fg: "#00FF92" - black: "#080808" - red: "#FF8373" - green: "#00C172" - yellow: "#D2A700" - blue: "#0071CF" - magenta: "#FF90FE" - cyan: "#6BFFDD" - white: "#F1F1F1" - brightBlack: "#2E2E2E" - brightRed: "#FFC4BE" - brightGreen: "#D6FCBA" - brightYellow: "#FFFED5" - brightBlue: "#C2E3FF" - brightMagenta: "#FFB2FE" - brightCyan: "#E6E7FE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 279 - pair: null - contrast: - fg: 86.5 - black: 0 - red: 53.7 - green: 54.7 - yellow: 56.2 - blue: 26.9 - magenta: 63.4 - cyan: 91.1 - white: 97.2 - brightBlack: 0 - brightRed: 77.9 - brightGreen: 96.9 - brightYellow: 104.1 - brightBlue: 85.7 - brightMagenta: 74.3 - brightCyan: 91.8 - brightWhite: 106.4 diff --git a/themes/cybereternals-vscode-theme.yaml b/themes/cybereternals-vscode-theme.yaml index d5735ad2..f65f3bc6 100644 --- a/themes/cybereternals-vscode-theme.yaml +++ b/themes/cybereternals-vscode-theme.yaml @@ -8,6 +8,7 @@ source: author: "CyberEternal" repo: "https://github.com/cyber-eternal/cybereternals-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=CyberEternal.cybereternals-vscode-theme" + formats: null colors: bg: "#0D1017" fg: "#BFBDB6" diff --git a/themes/cyberlite-fork.yaml b/themes/cyberlite-fork.yaml deleted file mode 100644 index db8b5a7f..00000000 --- a/themes/cyberlite-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cyberlite - Fork" -source: - marketplace_id: "ACO-626-theme.cyberlite" - version: "0.0.1" - installs: 121 - rating: 0 - ratings: 0 - author: "ACO-626-theme" - repo: "https://github.com/ACO-626/Cyberlite-Visual-Studio-Code-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=ACO-626-theme.cyberlite" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#8A8A8A" - red: "#DE0000" - green: "#16CF88" - yellow: "#DBDB00" - blue: "#3A8FEC" - magenta: "#E800E8" - cyan: "#62CAE4" - white: "#FFEBF4" - brightBlack: "#C7C7C7" - brightRed: "#FF0000" - brightGreen: "#00FF98" - brightYellow: "#FFFF00" - brightBlue: "#0078FF" - brightMagenta: "#FF00FF" - brightCyan: "#00CDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 39.6 - red: 29.4 - green: 63.4 - yellow: 80.7 - blue: 41.5 - magenta: 39.3 - cyan: 66.7 - white: 98.1 - brightBlack: 72.7 - brightRed: 37.5 - brightGreen: 88.2 - brightYellow: 102.7 - brightBlue: 34.5 - brightMagenta: 46.2 - brightCyan: 67.7 - brightWhite: 107.9 diff --git a/themes/cybermoon.yaml b/themes/cybermoon.yaml index ccd299fe..d15cac5a 100644 --- a/themes/cybermoon.yaml +++ b/themes/cybermoon.yaml @@ -8,6 +8,7 @@ source: author: "Juliano Ventola" repo: "https://github.com/julianoventola/cybermoon" url: "https://marketplace.visualstudio.com/items?itemName=JulianoVentola.cybermoon-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/cyberpink-137-theme.yaml b/themes/cyberpink-137-theme.yaml deleted file mode 100644 index 75f72b53..00000000 --- a/themes/cyberpink-137-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cyberpink-137© Theme" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#07001A" - fg: "#FF007B" - black: "#6F6F6F" - red: "#5F61EC" - green: "#F0005A" - yellow: "#FF0060" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#1152CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#614CF1" - brightGreen: "#86001F" - brightYellow: "#FF24A9" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#0F4FE8" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "red" - hue: 293 - pair: null - contrast: - fg: 39 - black: 26.8 - red: 28.9 - green: 34.5 - yellow: 38.3 - blue: 28.3 - magenta: 30.7 - cyan: 19.4 - white: 90.9 - brightBlack: 22.9 - brightRed: 24.9 - brightGreen: 10.6 - brightYellow: 41.6 - brightBlue: 40.9 - brightMagenta: 46.3 - brightCyan: 21.2 - brightWhite: 90.9 diff --git a/themes/cyberpunk-2077-night-city-neon.yaml b/themes/cyberpunk-2077-night-city-neon.yaml deleted file mode 100644 index 78ecc68f..00000000 --- a/themes/cyberpunk-2077-night-city-neon.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Cyberpunk 2077 - Night City Neon" -source: - marketplace_id: "GriffReaper.cyberpunk-2077-night-city-theme" - version: "1.0.5" - installs: 76 - author: "Griff Reaper" - repo: "https://github.com/your-username/cyberpunk-2077-theme" - url: "https://marketplace.visualstudio.com/items?itemName=GriffReaper.cyberpunk-2077-night-city-theme" -colors: - bg: "#000000" - fg: "#00F0FF" - black: "#000000" - red: "#FF0040" - green: "#00FF9F" - yellow: "#FFE600" - blue: "#00F0FF" - magenta: "#FF006E" - cyan: "#00F0FF" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#FF1744" - brightGreen: "#00FFAA" - brightYellow: "#FCEE0C" - brightBlue: "#00F0FF" - brightMagenta: "#FF10F0" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 84.5 - black: 0 - red: 37.9 - green: 88.3 - yellow: 90.9 - blue: 84.5 - magenta: 38.8 - cyan: 84.5 - white: 107.9 - brightBlack: 23 - brightRed: 38.2 - brightGreen: 88.7 - brightYellow: 94.1 - brightBlue: 84.5 - brightMagenta: 45.2 - brightCyan: 92.2 - brightWhite: 107.9 diff --git a/themes/cyberpunk-2077-reloaded.yaml b/themes/cyberpunk-2077-reloaded.yaml index c83bee9e..a39d3d10 100644 --- a/themes/cyberpunk-2077-reloaded.yaml +++ b/themes/cyberpunk-2077-reloaded.yaml @@ -2,12 +2,13 @@ name: "Cyberpunk 2077 Reloaded" source: marketplace_id: "andre-s-nascimento.cyberpunk-reloaded-theme" version: "1.0.3" - installs: 2792 + installs: 2799 rating: 0 ratings: 0 author: "André Soares Nascimento" repo: "https://github.com/andre-s-nascimento/cyberpunk-reloaded-theme" url: "https://marketplace.visualstudio.com/items?itemName=andre-s-nascimento.cyberpunk-reloaded-theme" + formats: null colors: bg: "#272932" fg: "#FDF500" diff --git a/themes/cyberpunk-2077.yaml b/themes/cyberpunk-2077.yaml index 249fb396..55a63b52 100644 --- a/themes/cyberpunk-2077.yaml +++ b/themes/cyberpunk-2077.yaml @@ -8,6 +8,7 @@ source: author: "As" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AshutoshPunia7109.cyberpunk-2077" + formats: null colors: bg: "#272932" fg: "#FFFFFF" diff --git a/themes/cyberpunk.yaml b/themes/cyberpunk.yaml index 8fc9c738..f58355c7 100644 --- a/themes/cyberpunk.yaml +++ b/themes/cyberpunk.yaml @@ -8,6 +8,7 @@ source: author: "mbektas" repo: "https://github.com/yourusername/cyberpunk-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mbektas.cyberpunk-theme-mb" + formats: null colors: bg: "#0D0D1E" fg: "#E0E0FF" diff --git a/themes/cyberpunkcygnus-clear-grid.yaml b/themes/cyberpunkcygnus-clear-grid.yaml deleted file mode 100644 index a66100b7..00000000 --- a/themes/cyberpunkcygnus-clear-grid.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CyberpunkCygnus Clear Grid" -source: - marketplace_id: "ai-acc.cyberpunkcygnus" - version: "0.2.17" - installs: 454 - rating: 0 - ratings: 0 - author: "AI Acc" - repo: "https://github.com/sascharo/" - url: "https://marketplace.visualstudio.com/items?itemName=ai-acc.cyberpunkcygnus" -colors: - bg: "#FFFFFF" - fg: "#050505" - black: "#343A40" - red: "#A13D3A" - green: "#00CC8E" - yellow: "#A06D1A" - blue: "#0066FF" - magenta: "#9933FF" - cyan: "#00B4CC" - white: "#ADB5BD" - brightBlack: "#495057" - brightRed: "#FF3355" - brightGreen: "#00FF9D" - brightYellow: "#FFBB00" - brightBlue: "#0099FF" - brightMagenta: "#FF00AA" - brightCyan: "#00EEFF" - brightWhite: "#050505" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 106 - black: 96.5 - red: 81.4 - green: 40.2 - yellow: 70.8 - blue: 72.4 - magenta: 72.7 - cyan: 48.4 - white: 40.5 - brightBlack: 88.3 - brightRed: 61.6 - brightGreen: 15.5 - brightYellow: 30 - brightBlue: 55.9 - brightMagenta: 60.8 - brightCyan: 19.9 - brightWhite: 106 diff --git a/themes/cyberpunkcygnus-neon-pulse.yaml b/themes/cyberpunkcygnus-neon-pulse.yaml deleted file mode 100644 index 9d578a9c..00000000 --- a/themes/cyberpunkcygnus-neon-pulse.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CyberpunkCygnus Neon Pulse" -source: - marketplace_id: "ai-acc.cyberpunkcygnus" - version: "0.2.17" - installs: 454 - rating: 0 - ratings: 0 - author: "AI Acc" - repo: "https://github.com/sascharo/" - url: "https://marketplace.visualstudio.com/items?itemName=ai-acc.cyberpunkcygnus" -colors: - bg: "#16181D" - fg: "#FFFFFF" - black: "#232733" - red: "#FF3B3B" - green: "#A3FF8C" - yellow: "#FFE066" - blue: "#00EAFF" - magenta: "#FF7DE9" - cyan: "#00EAFF" - white: "#BFC9DB" - brightBlack: "#7B88A1" - brightRed: "#FF3B3B" - brightGreen: "#A3FF8C" - brightYellow: "#FFE066" - brightBlue: "#00EAFF" - brightMagenta: "#FF7DE9" - brightCyan: "#00EAFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 268 - pair: null - contrast: - fg: 106.8 - black: 0 - red: 39.4 - green: 92.4 - yellow: 87.7 - blue: 80.4 - magenta: 57.4 - cyan: 80.4 - white: 72.4 - brightBlack: 37.2 - brightRed: 39.4 - brightGreen: 92.4 - brightYellow: 87.7 - brightBlue: 80.4 - brightMagenta: 57.4 - brightCyan: 80.4 - brightWhite: 106.8 diff --git a/themes/cyberpunkcygnus-solace-flare.yaml b/themes/cyberpunkcygnus-solace-flare.yaml deleted file mode 100644 index 4e5502ac..00000000 --- a/themes/cyberpunkcygnus-solace-flare.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CyberpunkCygnus Solace Flare" -source: - marketplace_id: "ai-acc.cyberpunkcygnus" - version: "0.2.17" - installs: 454 - rating: 0 - ratings: 0 - author: "AI Acc" - repo: "https://github.com/sascharo/" - url: "https://marketplace.visualstudio.com/items?itemName=ai-acc.cyberpunkcygnus" -colors: - bg: "#F0F2F5" - fg: "#1E2127" - black: "#4E5666" - red: "#D9534F" - green: "#2A9D8F" - yellow: "#E09F3E" - blue: "#0088A1" - magenta: "#A15EAD" - cyan: "#0088A1" - white: "#D5DBE3" - brightBlack: "#5C677D" - brightRed: "#E86964" - brightGreen: "#3DBD7D" - brightYellow: "#F2BD5A" - brightBlue: "#00A1BD" - brightMagenta: "#C774D9" - brightCyan: "#00A1BD" - brightWhite: "#1E2127" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 95.2 - black: 77.8 - red: 58.3 - green: 52.4 - yellow: 36.9 - blue: 60.3 - magenta: 62.7 - cyan: 60.3 - white: 11.2 - brightBlack: 70.6 - brightRed: 50.3 - brightGreen: 38.9 - brightYellow: 23 - brightBlue: 49.1 - brightMagenta: 48.9 - brightCyan: 49.1 - brightWhite: 95.2 diff --git a/themes/cybersec-pro.yaml b/themes/cybersec-pro.yaml deleted file mode 100644 index 4b8e4568..00000000 --- a/themes/cybersec-pro.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "CyberSec Pro" -source: - marketplace_id: "nextgencode.nextgen-terminal" - version: "1.2.1" - installs: 105 - author: "NextGenCode" - repo: "https://github.com/Mattzey/nextgen-terminal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" -colors: - bg: "#0D1117" - fg: "#C9D1D9" - black: "#484F58" - red: "#F44336" - green: "#4CAF50" - yellow: "#FFC107" - blue: "#2196F3" - magenta: "#9C27B0" - cyan: "#00BCD4" - white: "#B1BAC4" - brightBlack: "#6A737D" - brightRed: "#FF5252" - brightGreen: "#66BB6A" - brightYellow: "#FFCA28" - brightBlue: "#42A5F5" - brightMagenta: "#AB47BC" - brightCyan: "#26C6DA" - brightWhite: "#F0F6FC" -meta: - mode: "dark" - accent: "orange" - hue: 258 - pair: null - contrast: - fg: 77.5 - black: 13.1 - red: 38.2 - green: 48.1 - yellow: 74.6 - blue: 43.5 - magenta: 21.2 - cyan: 57 - white: 64 - brightBlack: 27.8 - brightRed: 43.4 - brightGreen: 55.2 - brightYellow: 78.3 - brightBlue: 50.2 - brightMagenta: 28.5 - brightCyan: 62.1 - brightWhite: 100.9 diff --git a/themes/cyberspace.yaml b/themes/cyberspace.yaml index 661d32e1..c98a50bb 100644 --- a/themes/cyberspace.yaml +++ b/themes/cyberspace.yaml @@ -1,4 +1,4 @@ -name: "cyberspace" +name: "Cyberspace" source: marketplace_id: "OmegaDawn.cyberspace" version: "2.1.5" @@ -8,6 +8,7 @@ source: author: "OmegaDawn" repo: "https://github.com/OmegaDawn/cyberspace_color_theme" url: "https://marketplace.visualstudio.com/items?itemName=OmegaDawn.cyberspace" + formats: null colors: bg: "#202020" fg: "#B2C4C4" diff --git a/themes/cybertrauma-s-dark-theme.yaml b/themes/cybertrauma-s-dark-theme.yaml index 1fffdc72..ab4c4d17 100644 --- a/themes/cybertrauma-s-dark-theme.yaml +++ b/themes/cybertrauma-s-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "CyberTrauma" repo: "https://github.com/siddarthreddygsr/CyberTrauma-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=CyberTrauma.cybertrauma-s-dark-theme" + formats: null colors: bg: "#000000" fg: "#C9D1D9" diff --git a/themes/cybertrauma-s.yaml b/themes/cybertrauma-s.yaml deleted file mode 100644 index 78e12135..00000000 --- a/themes/cybertrauma-s.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Cybertrauma's" -source: - marketplace_id: "CyberTrauma.cybertrauma" - version: "0.0.4" - installs: 1676 - rating: 5 - ratings: 1 - author: "CyberTrauma" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=CyberTrauma.cybertrauma" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#474040" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 9 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/cybertronix.yaml b/themes/cybertronix.yaml index c5d5d5e9..49726ce7 100644 --- a/themes/cybertronix.yaml +++ b/themes/cybertronix.yaml @@ -8,6 +8,7 @@ source: author: "GEISERBIT" repo: null url: "https://marketplace.visualstudio.com/items?itemName=GEISERBIT.cybertronix-theme" + formats: null colors: bg: "#000019" fg: "#969DFF" diff --git a/themes/cyberui.yaml b/themes/cyberui.yaml deleted file mode 100644 index 0a8db265..00000000 --- a/themes/cyberui.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "cyberui" -source: - marketplace_id: "AarMagic.cyberui" - version: "1.4.0" - installs: 351 - rating: 5 - ratings: 1 - author: "AarWeb" - repo: "https://github.com/aarweb/cyberui" - url: "https://marketplace.visualstudio.com/items?itemName=AarMagic.cyberui" -colors: - bg: "#000000" - fg: "#55EAD4" - black: "#000000" - red: "#C5003C" - green: "#55EAD4" - yellow: "#F3E600" - blue: "#880425" - magenta: "#C5003C" - cyan: "#55EAD4" - white: "#55EAD4" - brightBlack: "#880425" - brightRed: "#C5003C" - brightGreen: "#55EAD4" - brightYellow: "#F3E600" - brightBlue: "#880425" - brightMagenta: "#C5003C" - brightCyan: "#55EAD4" - brightWhite: "#F3E600" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 80.6 - black: 0 - red: 24 - green: 80.6 - yellow: 89.1 - blue: 11.2 - magenta: 24 - cyan: 80.6 - white: 80.6 - brightBlack: 11.2 - brightRed: 24 - brightGreen: 80.6 - brightYellow: 89.1 - brightBlue: 11.2 - brightMagenta: 24 - brightCyan: 80.6 - brightWhite: 89.1 diff --git a/themes/cynical-color-theme.yaml b/themes/cynical-color-theme.yaml deleted file mode 100644 index c53264ec..00000000 --- a/themes/cynical-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "cynical-color-theme" -source: - marketplace_id: "TheRepoClub.theme-mangayo" - version: "1.0.1" - installs: 645 - rating: 0 - ratings: 0 - author: "TheRepoClub" - repo: "https://github.com/TheCynicalTeam/vscode-theme-cynical" - url: "https://marketplace.visualstudio.com/items?itemName=TheRepoClub.theme-mangayo" -colors: - bg: "#292F34" - fg: "#F8F8F2" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: 243 - pair: null - contrast: - fg: 98.3 - black: 0 - red: 20.9 - green: 49.3 - yellow: 54 - blue: 30.9 - magenta: 28.5 - cyan: 46.7 - white: 84.8 - brightBlack: 18.3 - brightRed: 33.6 - brightGreen: 73.3 - brightYellow: 80.2 - brightBlue: 46.2 - brightMagenta: 42.8 - brightCyan: 69.7 - brightWhite: 98.3 diff --git a/themes/cyperpunkrebecca.yaml b/themes/cyperpunkrebecca.yaml deleted file mode 100644 index 321b7a4a..00000000 --- a/themes/cyperpunkrebecca.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "CyperpunkRebecca" -source: - marketplace_id: "LazzyE.cyberpunk-rebecca-color-theme" - version: "0.0.5" - installs: 26 - rating: 5 - ratings: 1 - author: "LazzyE" - repo: "https://github.com/ErliCai/cyberpunk-rebecca-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=LazzyE.cyberpunk-rebecca-color-theme" -colors: - bg: "#0E2025" - fg: "#CFFFF0" - black: "#0E2025" - red: "#FF2D95" - green: "#56E0B0" - yellow: "#E8B830" - blue: "#2D8CCC" - magenta: "#FF2D95" - cyan: "#7AECC8" - white: "#CFFFF0" - brightBlack: "#183038" - brightRed: "#FF69B4" - brightGreen: "#7AECC8" - brightYellow: "#F0D060" - brightBlue: "#5AAFEE" - brightMagenta: "#FF69B4" - brightCyan: "#FFB8D4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 218 - pair: null - contrast: - fg: 99.3 - black: 0 - red: 39.6 - green: 72.5 - yellow: 66 - blue: 36 - magenta: 39.6 - cyan: 81 - white: 99.3 - brightBlack: 0 - brightRed: 49.3 - brightGreen: 81 - brightYellow: 77.6 - brightBlue: 53.4 - brightMagenta: 49.3 - brightCyan: 73.9 - brightWhite: 106.1 diff --git a/themes/d2t-dark-clean.yaml b/themes/d2t-dark-clean.yaml deleted file mode 100644 index 0764f60b..00000000 --- a/themes/d2t-dark-clean.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "D2T Dark Clean" -source: - marketplace_id: "dthanhtoan.d2t-colorful-theme" - version: "0.4.0" - installs: 1925 - rating: 4.5 - ratings: 2 - author: "dthanhtoan" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=dthanhtoan.d2t-colorful-theme" -colors: - bg: "#1E2030" - fg: "#E4E7F3" - black: "#6F748E" - red: "#EE8897" - green: "#A7DB94" - yellow: "#EFD59E" - blue: "#8BAEF5" - magenta: "#F6BCE7" - cyan: "#92D8E4" - white: "#949BB8" - brightBlack: "#8188A3" - brightRed: "#EE8897" - brightGreen: "#A7DB94" - brightYellow: "#EFD59E" - brightBlue: "#8BAEF5" - brightMagenta: "#F6BCE7" - brightCyan: "#92D8E4" - brightWhite: "#CBD4F6" -meta: - mode: "dark" - accent: "red" - hue: 278 - pair: null - contrast: - fg: 90.2 - black: 27.4 - red: 52 - green: 74 - yellow: 80.5 - blue: 56.3 - magenta: 74.3 - cyan: 73.9 - white: 46.4 - brightBlack: 36.7 - brightRed: 52 - brightGreen: 74 - brightYellow: 80.5 - brightBlue: 56.3 - brightMagenta: 74.3 - brightCyan: 73.9 - brightWhite: 78.7 diff --git a/themes/d2t-dark.yaml b/themes/d2t-dark.yaml deleted file mode 100644 index 68f1d5ad..00000000 --- a/themes/d2t-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "D2T Dark" -source: - marketplace_id: "dthanhtoan.d2t-colorful-theme" - version: "0.4.0" - installs: 1925 - rating: 4.5 - ratings: 2 - author: "dthanhtoan" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=dthanhtoan.d2t-colorful-theme" -colors: - bg: "#24273A" - fg: "#E4E7F3" - black: "#6F748E" - red: "#EE8897" - green: "#A7DB94" - yellow: "#EFD59E" - blue: "#8BAEF5" - magenta: "#F6BCE7" - cyan: "#92D8E4" - white: "#949BB8" - brightBlack: "#8188A3" - brightRed: "#EE8897" - brightGreen: "#A7DB94" - brightYellow: "#EFD59E" - brightBlue: "#8BAEF5" - brightMagenta: "#F6BCE7" - brightCyan: "#92D8E4" - brightWhite: "#CBD4F6" -meta: - mode: "dark" - accent: "red" - hue: 277 - pair: null - contrast: - fg: 89 - black: 26.2 - red: 50.8 - green: 72.8 - yellow: 79.3 - blue: 55.1 - magenta: 73.1 - cyan: 72.7 - white: 45.2 - brightBlack: 35.5 - brightRed: 50.8 - brightGreen: 72.8 - brightYellow: 79.3 - brightBlue: 55.1 - brightMagenta: 73.1 - brightCyan: 72.7 - brightWhite: 77.5 diff --git a/themes/da3m0ns-dark-italic.yaml b/themes/da3m0ns-dark-italic.yaml index 5ef08df2..701b119e 100644 --- a/themes/da3m0ns-dark-italic.yaml +++ b/themes/da3m0ns-dark-italic.yaml @@ -8,6 +8,7 @@ source: author: "mrknown404" repo: "https://github.com/TheShiveshNetwork/vscode-da3m0ns" url: "https://marketplace.visualstudio.com/items?itemName=mrknown404.daemons" + formats: null colors: bg: "#1A1B26" fg: "#A9B1D6" diff --git a/themes/daet.yaml b/themes/daet.yaml index a8f27a32..5a0e037c 100644 --- a/themes/daet.yaml +++ b/themes/daet.yaml @@ -8,6 +8,7 @@ source: author: "vs code themes" repo: "https://github.com/mxsim/dear" url: "https://marketplace.visualstudio.com/items?itemName=vscodethemes.dear" + formats: null colors: bg: "#0F0F11" fg: "#717171" diff --git a/themes/dafault.yaml b/themes/dafault.yaml index 35ef228f..882403a6 100644 --- a/themes/dafault.yaml +++ b/themes/dafault.yaml @@ -8,6 +8,7 @@ source: author: "Aurino Geraldo" repo: "https://github.com/AurinoJunior/vscode-extensions.git#main" url: "https://marketplace.visualstudio.com/items?itemName=AurinoGeraldo.auri-theme" + formats: null colors: bg: "#13151D" fg: "#FFFFFF" diff --git a/themes/dak-v1.yaml b/themes/dak-v1.yaml index 83761df2..f18cf941 100644 --- a/themes/dak-v1.yaml +++ b/themes/dak-v1.yaml @@ -8,6 +8,7 @@ source: author: "dakito" repo: "https://github.com/d-kito/dak-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=d-kito.theme-dak-running-red-lights" + formats: null colors: bg: "#070527" fg: "#163AD0" diff --git a/themes/dalailahner-dark.yaml b/themes/dalailahner-dark.yaml index 185bf047..4d1bfb6d 100644 --- a/themes/dalailahner-dark.yaml +++ b/themes/dalailahner-dark.yaml @@ -1,4 +1,4 @@ -name: "dalailahner-dark" +name: "dalailahner dark" source: marketplace_id: "dalailahner.dalailahner-dark" version: "2.0.1" @@ -8,6 +8,7 @@ source: author: "dalailahner" repo: "https://github.com/dalailahner/dalailahner-dark" url: "https://marketplace.visualstudio.com/items?itemName=dalailahner.dalailahner-dark" + formats: null colors: bg: "#1C1C1C" fg: "#D9D9D9" diff --git a/themes/dalton.yaml b/themes/dalton.yaml index 3bd8c8b5..60b4a2db 100644 --- a/themes/dalton.yaml +++ b/themes/dalton.yaml @@ -1,4 +1,4 @@ -name: "Dalton" +name: "dalton" source: marketplace_id: "edersonferreira.dalton" version: "1.0.1" @@ -8,6 +8,7 @@ source: author: "ederson ferreira" repo: "https://github.com/edersonferreira/dalton-vscode" url: "https://marketplace.visualstudio.com/items?itemName=edersonferreira.dalton" + formats: null colors: bg: "#0C0A0F" fg: "#FFFFFF" diff --git a/themes/dan-light-work.yaml b/themes/dan-light-work.yaml index 548dcfa5..d6724d26 100644 --- a/themes/dan-light-work.yaml +++ b/themes/dan-light-work.yaml @@ -8,6 +8,7 @@ source: author: "Theme-xp-javascript-dark" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Theme-xp-javascript-dark.danlightworktheme" + formats: null colors: bg: "#C3E4E4" fg: "#000000" diff --git a/themes/dan-react-theme.yaml b/themes/dan-react-theme.yaml index feb0745d..084da814 100644 --- a/themes/dan-react-theme.yaml +++ b/themes/dan-react-theme.yaml @@ -2,12 +2,13 @@ name: "Dan React Theme" source: marketplace_id: "carrie999.dan-react-theme" version: "0.0.4" - installs: 2651 + installs: 2652 rating: 0 ratings: 0 author: "carrie999" repo: "https://github.com/Carrie999/dan-react-theme" url: "https://marketplace.visualstudio.com/items?itemName=carrie999.dan-react-theme" + formats: null colors: bg: "#051525" fg: "#BFC7D5" diff --git a/themes/dang-jedi.yaml b/themes/dang-jedi.yaml index 0547dab4..81b009e7 100644 --- a/themes/dang-jedi.yaml +++ b/themes/dang-jedi.yaml @@ -8,6 +8,7 @@ source: author: "Aaqa Ishtyaq" repo: "https://github.com/aaqaishtyaq/dang-vscode" url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.dang-theme-vscode" + formats: null colors: bg: "#0F111A" fg: "#8F93A2" diff --git a/themes/dangergray-v2.yaml b/themes/dangergray-v2.yaml deleted file mode 100644 index adfb44b8..00000000 --- a/themes/dangergray-v2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DangerGray v2" -source: - marketplace_id: "jynfairchild.dangerdark-theme" - version: "0.1.0" - installs: 613 - rating: 5 - ratings: 1 - author: "jynfairchild" - repo: "https://github.com/jpfairchild/dangergrey-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jynfairchild.dangerdark-theme" -colors: - bg: "#1F1F1F" - fg: "#F7F7F7" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#C82424" - magenta: "#BC3FBC" - cyan: "#E2AF37" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#EA5C3B" - brightMagenta: "#D670D6" - brightCyan: "#DBAE29" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 100.6 - black: 0 - red: 25.7 - green: 52 - yellow: 84.6 - blue: 23.4 - magenta: 28.8 - cyan: 61.5 - white: 89 - brightBlack: 21.1 - brightRed: 37.6 - brightGreen: 62.6 - brightYellow: 94.7 - brightBlue: 38.6 - brightMagenta: 44.4 - brightCyan: 59.9 - brightWhite: 89 diff --git a/themes/dango-theme.yaml b/themes/dango-theme.yaml index 13d27f5d..abbed41e 100644 --- a/themes/dango-theme.yaml +++ b/themes/dango-theme.yaml @@ -1,4 +1,4 @@ -name: "Dango theme" +name: "🍡 Dango Theme" source: marketplace_id: "teloru.dango-theme" version: "0.2.0" @@ -8,6 +8,7 @@ source: author: "teloru" repo: "https://gitlab.com/Astrid-Beyer/dango-vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=teloru.dango-theme" + formats: null colors: bg: "#050C1B" fg: "#FBF8E9" diff --git a/themes/daniel-material-palenight-theme.yaml b/themes/daniel-material-palenight-theme.yaml deleted file mode 100644 index a9698973..00000000 --- a/themes/daniel-material-palenight-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Daniel Material Palenight Theme" -source: - marketplace_id: "daniel-duc.daniel-material-palenight-theme" - version: "1.3.0" - installs: 576 - rating: 5 - ratings: 1 - author: "Daniel Duc" - repo: "https://github.com/binhduc1211/daniel-material-palenight-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-material-palenight-theme" -colors: - bg: "#292D3E" - fg: "#BABED8" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 274 - pair: null - contrast: - fg: 63.5 - black: 0 - red: 43 - green: 80.6 - yellow: 75.3 - blue: 52.3 - magenta: 50.1 - cyan: 74.6 - white: 103.3 - brightBlack: 22.8 - brightRed: 43 - brightGreen: 80.6 - brightYellow: 75.3 - brightBlue: 52.3 - brightMagenta: 50.1 - brightCyan: 74.6 - brightWhite: 103.3 diff --git a/themes/danmo.yaml b/themes/danmo.yaml index 8171da44..3cbc81c2 100644 --- a/themes/danmo.yaml +++ b/themes/danmo.yaml @@ -8,6 +8,7 @@ source: author: "tianxiang24" repo: "https://github.com/randomVariable2000/danmo-theme" url: "https://marketplace.visualstudio.com/items?itemName=Rach0101.danmo-theme" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/dante-color-theme.yaml b/themes/dante-color-theme.yaml index d6f9eb09..8347b6a0 100644 --- a/themes/dante-color-theme.yaml +++ b/themes/dante-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "DanteH" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DanteH.dantes-color-theme" + formats: null colors: bg: "#000000" fg: "#D4D4D4" diff --git a/themes/dantes-theme.yaml b/themes/dantes-theme.yaml deleted file mode 100644 index 02108b90..00000000 --- a/themes/dantes-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dantes Theme" -source: - marketplace_id: "dantes.dantes" - version: "2.1.1" - installs: 156 - rating: 0 - ratings: 0 - author: "Dantes" - repo: "https://github.com/dantestheme/visual-studio-code" - url: "https://marketplace.visualstudio.com/items?itemName=dantes.dantes" -colors: - bg: "#1D2128" - fg: "#FAFAFA" - black: "#1D2128" - red: "#F01900" - green: "#14EB96" - yellow: "#FFF94B" - blue: "#0060E0" - magenta: "#FF3CE1" - cyan: "#00D2FF" - white: "#FAFAFA" - brightBlack: "#00B3F5" - brightRed: "#FF505F" - brightGreen: "#53FEBE" - brightYellow: "#FFEA7F" - brightBlue: "#00B3F5" - brightMagenta: "#FF6BBB" - brightCyan: "#00DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 262 - pair: null - contrast: - fg: 102.3 - black: 0 - red: 31.9 - green: 75.4 - yellow: 97.8 - blue: 22.5 - magenta: 44.4 - cyan: 67.7 - white: 102.3 - brightBlack: 53.3 - brightRed: 41.5 - brightGreen: 87.7 - brightYellow: 91.5 - brightBlue: 53.3 - brightMagenta: 49.6 - brightCyan: 72.9 - brightWhite: 105.6 diff --git a/themes/dantetheme.yaml b/themes/dantetheme.yaml index a43b820b..882d56dc 100644 --- a/themes/dantetheme.yaml +++ b/themes/dantetheme.yaml @@ -8,6 +8,7 @@ source: author: "DanteTheme" repo: "https://github.com/peidrao/DanteTheme" url: "https://marketplace.visualstudio.com/items?itemName=DanteTheme.dantetheme" + formats: null colors: bg: "#181913" fg: "#FFF1E6" diff --git a/themes/darcula-contrast-min.yaml b/themes/darcula-contrast-min.yaml deleted file mode 100644 index cfad2232..00000000 --- a/themes/darcula-contrast-min.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Darcula Contrast Min" -source: - marketplace_id: "nashpatty.darculacontrast" - version: "1.3.1" - installs: 1842 - rating: 0 - ratings: 0 - author: "nashpatty" - repo: "https://github.com/nashpatty/vscode-darcula" - url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.darculacontrast" -colors: - bg: "#1E1F22" - fg: "#BCBEC4" - black: "#000000" - red: "#FA6675" - green: "#6AAB73" - yellow: "#CF8E6D" - blue: "#56A8F5" - magenta: "#C77DBB" - cyan: "#2AACB8" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#FA6675" - brightGreen: "#6AAB73" - brightYellow: "#CF8E6D" - brightBlue: "#56A8F5" - brightMagenta: "#C77DBB" - brightCyan: "#2AACB8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 65.5 - black: 0 - red: 45.2 - green: 47.1 - yellow: 47.5 - blue: 50.7 - magenta: 43.8 - cyan: 47.5 - white: 105.9 - brightBlack: 0 - brightRed: 45.2 - brightGreen: 47.1 - brightYellow: 47.5 - brightBlue: 50.7 - brightMagenta: 43.8 - brightCyan: 47.5 - brightWhite: 105.9 diff --git a/themes/darcula-contrast.yaml b/themes/darcula-contrast.yaml deleted file mode 100644 index 0038c17e..00000000 --- a/themes/darcula-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Darcula Contrast" -source: - marketplace_id: "nashpatty.darculacontrast" - version: "1.3.1" - installs: 1842 - rating: 0 - ratings: 0 - author: "nashpatty" - repo: "https://github.com/nashpatty/vscode-darcula" - url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.darculacontrast" -colors: - bg: "#1E1F22" - fg: "#A9B7C6" - black: "#000000" - red: "#BC3F3C" - green: "#6A8759" - yellow: "#FFC66D" - blue: "#6897BB" - magenta: "#9876AA" - cyan: "#BCA5C4" - white: "#F5F5F5" - brightBlack: "#000000" - brightRed: "#BC3F3C" - brightGreen: "#6A8759" - brightYellow: "#FFC66D" - brightBlue: "#6897BB" - brightMagenta: "#9876AA" - brightCyan: "#BCA5C4" - brightWhite: "#F5F5F5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 60.5 - black: 0 - red: 24 - green: 32.2 - yellow: 76 - blue: 41.6 - magenta: 34.1 - cyan: 55.7 - white: 99.3 - brightBlack: 0 - brightRed: 24 - brightGreen: 32.2 - brightYellow: 76 - brightBlue: 41.6 - brightMagenta: 34.1 - brightCyan: 55.7 - brightWhite: 99.3 diff --git a/themes/darcula-dark-theme.yaml b/themes/darcula-dark-theme.yaml deleted file mode 100644 index 0ca28f44..00000000 --- a/themes/darcula-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Darcula Dark Theme" -source: - marketplace_id: "CyrilLeblanc.amoled-darcula" - version: "1.0.1" - installs: 3275 - rating: 5 - ratings: 1 - author: "CyrilLeblanc" - repo: "https://github.com/CyrilLeblanc/vscode-amoled-darcula-theme" - url: "https://marketplace.visualstudio.com/items?itemName=CyrilLeblanc.amoled-darcula" -colors: - bg: "#000000" - fg: "#999999" - black: "#343434" - red: "#E1270E" - green: "#5BC266" - yellow: "#FBCC43" - blue: "#535BCF" - magenta: "#BF5AF2" - cyan: "#6CC7F6" - white: "#FFFFFF" - brightBlack: "#535BCF" - brightRed: "#E1270E" - brightGreen: "#5BC266" - brightYellow: "#FBCC43" - brightBlue: "#535BCF" - brightMagenta: "#BF5AF2" - brightCyan: "#6CC7F6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 47.2 - black: 0 - red: 31.3 - green: 58.2 - yellow: 79.2 - blue: 24.3 - magenta: 39.6 - cyan: 66.9 - white: 107.9 - brightBlack: 24.3 - brightRed: 31.3 - brightGreen: 58.2 - brightYellow: 79.2 - brightBlue: 24.3 - brightMagenta: 39.6 - brightCyan: 66.9 - brightWhite: 107.9 diff --git a/themes/darcula-port.yaml b/themes/darcula-port.yaml deleted file mode 100644 index 3424f594..00000000 --- a/themes/darcula-port.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "darcula-port" -source: - marketplace_id: "tockn.darcula-port" - version: "1.0.1" - installs: 446 - rating: 0 - ratings: 0 - author: "tockn" - repo: "https://github.com/tockn/darcula-port" - url: "https://marketplace.visualstudio.com/items?itemName=tockn.darcula-port" -colors: - bg: "#2B2B2B" - fg: "#A9B7C6" - black: "#000000" - red: "#FF6B68" - green: "#629755" - yellow: "#FFC66D" - blue: "#6897BB" - magenta: "#9876AA" - cyan: "#6A8759" - white: "#A9B7C6" - brightBlack: "#606366" - brightRed: "#FF6B68" - brightGreen: "#629755" - brightYellow: "#FFC66D" - brightBlue: "#6897BB" - brightMagenta: "#9876AA" - brightCyan: "#6A8759" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 58.5 - black: 0 - red: 45 - green: 35.7 - yellow: 73.9 - blue: 39.6 - magenta: 32 - cyan: 30.2 - white: 58.5 - brightBlack: 17.6 - brightRed: 45 - brightGreen: 35.7 - brightYellow: 73.9 - brightBlue: 39.6 - brightMagenta: 32 - brightCyan: 30.2 - brightWhite: 103.8 diff --git a/themes/darcula-solid-color-theme.yaml b/themes/darcula-solid-color-theme.yaml deleted file mode 100644 index f375a0a2..00000000 --- a/themes/darcula-solid-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "darcula-solid-color-theme" -source: - marketplace_id: "jussiemion.darcula-solid" - version: "1.2.1" - installs: 3516 - rating: 5 - ratings: 5 - author: "jussiemion" - repo: "https://github.com/jussiemion/darcula-solid" - url: "https://marketplace.visualstudio.com/items?itemName=jussiemion.darcula-solid" -colors: - bg: "#181818" - fg: "#CCCCCC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 74.6 - black: 0 - red: 26.6 - green: 52.9 - yellow: 85.5 - blue: 27.3 - magenta: 29.6 - cyan: 47.4 - white: 89.9 - brightBlack: 21.9 - brightRed: 38.5 - brightGreen: 63.4 - brightYellow: 95.5 - brightBlue: 39.9 - brightMagenta: 45.3 - brightCyan: 55.3 - brightWhite: 89.9 diff --git a/themes/darcula-void.yaml b/themes/darcula-void.yaml index a1e49f25..e45faf55 100644 --- a/themes/darcula-void.yaml +++ b/themes/darcula-void.yaml @@ -2,12 +2,13 @@ name: "Darcula Void" source: marketplace_id: "sjlex.vscode-theme-darcula-void" version: "1.1.0" - installs: 909 + installs: 910 rating: 5 ratings: 1 author: "sjlex" repo: "https://github.com/sjlex/vscode-theme-darcula-void" url: "https://marketplace.visualstudio.com/items?itemName=sjlex.vscode-theme-darcula-void" + formats: null colors: bg: "#000000" fg: "#BFBFBF" diff --git a/themes/darcula.yaml b/themes/darcula.yaml deleted file mode 100644 index 352c8127..00000000 --- a/themes/darcula.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Darcula" -source: - marketplace_id: "ItsSunnyMonster.sm-bunker" - version: "1.1.7" - installs: 1773 - rating: 0 - ratings: 0 - author: "ItsSunnyMonster" - repo: "https://github.com/ItsSunnyMonster/dobri-next-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ItsSunnyMonster.sm-bunker" -colors: - bg: "#0B1015" - fg: "#F5F5F5" - black: "#05080A" - red: "#FB467B" - green: "#4EC9B0" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#CB6CFE" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#FB467B" - brightGreen: "#4EC9B0" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#CB6CFE" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 249 - pair: null - contrast: - fg: 100.9 - black: 0 - red: 41.7 - green: 62.6 - yellow: 79.5 - blue: 56.5 - magenta: 45.9 - cyan: 78.9 - white: 107.5 - brightBlack: 27 - brightRed: 41.7 - brightGreen: 62.6 - brightYellow: 79.5 - brightBlue: 56.5 - brightMagenta: 45.9 - brightCyan: 78.9 - brightWhite: 107.5 diff --git a/themes/darculacode.yaml b/themes/darculacode.yaml index ac1ba40b..bf761878 100644 --- a/themes/darculacode.yaml +++ b/themes/darculacode.yaml @@ -8,6 +8,7 @@ source: author: "Nejc Brelih-Wasowski" repo: "https://github.com/nejcbw/darcula-code" url: "https://marketplace.visualstudio.com/items?itemName=nejcbw.darcula-code" + formats: null colors: bg: "#2B2B2B" fg: "#A9B7C6" diff --git a/themes/dare-contrast.yaml b/themes/dare-contrast.yaml deleted file mode 100644 index 004ee025..00000000 --- a/themes/dare-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dare-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#17191C" - fg: "#C0CCDB" - black: "#23262A" - red: "#BA0E2E" - green: "#3A8881" - yellow: "#D15736" - blue: "#FFFFFF" - magenta: "#3A8881" - cyan: "#D15736" - white: "#D0D9E4" - brightBlack: "#454B54" - brightRed: "#F03E5F" - brightGreen: "#69BFB7" - brightYellow: "#E49C89" - brightBlue: "#FFFFFF" - brightMagenta: "#69BFB7" - brightCyan: "#E49C89" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 73.7 - black: 0 - red: 20.3 - green: 31.8 - yellow: 33.1 - blue: 106.7 - magenta: 31.8 - cyan: 33.1 - white: 81.7 - brightBlack: 10.9 - brightRed: 36.6 - brightGreen: 58.8 - brightYellow: 57.1 - brightBlue: 106.7 - brightMagenta: 58.8 - brightCyan: 57.1 - brightWhite: 106.7 diff --git a/themes/dare-light.yaml b/themes/dare-light.yaml deleted file mode 100644 index e407d5dc..00000000 --- a/themes/dare-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dare-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#6E7A87" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#3A8881" - yellow: "#D15736" - blue: "#6E7A87" - magenta: "#3A8881" - cyan: "#D15736" - white: "#7B8793" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#69BFB7" - brightYellow: "#E49C89" - brightBlue: "#A5ADB6" - brightMagenta: "#69BFB7" - brightCyan: "#E49C89" - brightWhite: "#A5ADB6" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 70.4 - black: 0 - red: 80.3 - green: 68.6 - yellow: 67.4 - blue: 70.4 - magenta: 68.6 - cyan: 67.4 - white: 64.3 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 42.2 - brightYellow: 43.8 - brightBlue: 44.8 - brightMagenta: 42.2 - brightCyan: 43.8 - brightWhite: 44.8 diff --git a/themes/dare.yaml b/themes/dare.yaml deleted file mode 100644 index 96c3aafb..00000000 --- a/themes/dare.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dare" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#32373D" - fg: "#C0CCDB" - black: "#3D444B" - red: "#BA0E2E" - green: "#3A8881" - yellow: "#D15736" - blue: "#FFFFFF" - magenta: "#3A8881" - cyan: "#D15736" - white: "#D0D9E4" - brightBlack: "#606A75" - brightRed: "#F03E5F" - brightGreen: "#69BFB7" - brightYellow: "#E49C89" - brightBlue: "#FFFFFF" - brightMagenta: "#69BFB7" - brightCyan: "#E49C89" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 253 - pair: null - contrast: - fg: 68 - black: 0 - red: 14.7 - green: 26.2 - yellow: 27.5 - blue: 101 - magenta: 26.2 - cyan: 27.5 - white: 76.1 - brightBlack: 17.4 - brightRed: 31 - brightGreen: 53.2 - brightYellow: 51.5 - brightBlue: 101 - brightMagenta: 53.2 - brightCyan: 51.5 - brightWhite: 101 diff --git a/themes/dark-1.yaml b/themes/dark-1.yaml index deac6d84..bebec7d0 100644 --- a/themes/dark-1.yaml +++ b/themes/dark-1.yaml @@ -8,6 +8,7 @@ source: author: "goacmola" repo: null url: "https://marketplace.visualstudio.com/items?itemName=goacmola.vsthemes" + formats: null colors: bg: "#1B1B1B" fg: "#F5E500" diff --git a/themes/dark-abyss.yaml b/themes/dark-abyss.yaml index 6a634ca4..3b88325f 100644 --- a/themes/dark-abyss.yaml +++ b/themes/dark-abyss.yaml @@ -8,6 +8,7 @@ source: author: "Matongo Mulindi" repo: "https://github.com/mmatongo/vscode-abyss" url: "https://marketplace.visualstudio.com/items?itemName=MatongoMulindi.abyss" + formats: null colors: bg: "#151515" fg: "#EEEEEE" diff --git a/themes/dark-amethyst.yaml b/themes/dark-amethyst.yaml index 0f09a29c..5ec42ca3 100644 --- a/themes/dark-amethyst.yaml +++ b/themes/dark-amethyst.yaml @@ -1,4 +1,4 @@ -name: "Dark-amethyst" +name: "Dark Amethyst" source: marketplace_id: "Munz.dark-amethyst" version: "1.1.0" @@ -8,6 +8,7 @@ source: author: "Munz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Munz.dark-amethyst" + formats: null colors: bg: "#100319" fg: "#DBDBDB" diff --git a/themes/dark-army.yaml b/themes/dark-army.yaml index a63d315c..103e66f1 100644 --- a/themes/dark-army.yaml +++ b/themes/dark-army.yaml @@ -8,6 +8,7 @@ source: author: "Bhaskar Neogi" repo: "https://github.com/Ellipse404/Dark-Army-Theme[VS Code]" url: "https://marketplace.visualstudio.com/items?itemName=BhaskarNeogi.dark-army" + formats: null colors: bg: "#1B1A1A" fg: "#D4D4D4" diff --git a/themes/dark-aura.yaml b/themes/dark-aura.yaml deleted file mode 100644 index ed62d8f3..00000000 --- a/themes/dark-aura.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Aura" -source: - marketplace_id: "Furqan.dark-aura-theme" - version: "1.0.0" - installs: 850 - rating: 5 - ratings: 1 - author: "Furqan" - repo: "https://github.com/furqanistic/darkaura" - url: "https://marketplace.visualstudio.com/items?itemName=Furqan.dark-aura-theme" -colors: - bg: "#0A0A0F" - fg: "#E8E8F0" - black: "#2A2A3E" - red: "#FF6B6B" - green: "#51FA7B" - yellow: "#FFD93D" - blue: "#74C0FC" - magenta: "#D0BFFF" - cyan: "#00FFFF" - white: "#E8E8F0" - brightBlack: "#5A5A7A" - brightRed: "#FFA8A8" - brightGreen: "#8CFF8C" - brightYellow: "#FFE66D" - brightBlue: "#A4CAFE" - brightMagenta: "#E5D5FF" - brightCyan: "#66FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 285 - pair: null - contrast: - fg: 93.1 - black: 0 - red: 48.9 - green: 85.8 - yellow: 85.1 - blue: 64.6 - magenta: 73.3 - cyan: 92 - white: 93.1 - brightBlack: 19.1 - brightRed: 68.1 - brightGreen: 91.7 - brightYellow: 91.5 - brightBlue: 72.8 - brightMagenta: 85.2 - brightCyan: 93.8 - brightWhite: 107.7 diff --git a/themes/dark-black-developer.yaml b/themes/dark-black-developer.yaml index 4b838ea5..e120882e 100644 --- a/themes/dark-black-developer.yaml +++ b/themes/dark-black-developer.yaml @@ -8,6 +8,7 @@ source: author: "Harshil-Kaneria" repo: "https://github.com/Harshil-Kaneria/VS-Code-Dark-Black-Developer-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Harshil-Kaneria.dark-black-developer" + formats: null colors: bg: "#090717" fg: "#D4D4D4" diff --git a/themes/dark-blood.yaml b/themes/dark-blood.yaml deleted file mode 100644 index cf3dfb98..00000000 --- a/themes/dark-blood.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dark blood" -source: - marketplace_id: "LUIZDARKTHEME.luiz-dark-theme" - version: "0.0.8" - installs: 2946 - rating: 5 - ratings: 1 - author: "LUIZ DARK THEME" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=LUIZDARKTHEME.luiz-dark-theme" -colors: - bg: "#131415" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.2 - black: 0 - red: 27 - green: 53.3 - yellow: 85.9 - blue: 27.7 - magenta: 30 - cyan: 47.8 - white: 90.3 - brightBlack: 22.3 - brightRed: 38.8 - brightGreen: 63.8 - brightYellow: 95.9 - brightBlue: 40.3 - brightMagenta: 45.7 - brightCyan: 55.7 - brightWhite: 90.3 diff --git a/themes/dark-blue-theme.yaml b/themes/dark-blue-theme.yaml index cbe3f9f7..671562a8 100644 --- a/themes/dark-blue-theme.yaml +++ b/themes/dark-blue-theme.yaml @@ -8,6 +8,7 @@ source: author: "Cecil Jacob" repo: "https://github.com/ceciljacob/overcast-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=ceciljacob.overcast-code-theme" + formats: null colors: bg: "#081620" fg: "#F6FAFD" diff --git a/themes/dark-bqueiroz.yaml b/themes/dark-bqueiroz.yaml index d8117c5b..69e4e2d7 100644 --- a/themes/dark-bqueiroz.yaml +++ b/themes/dark-bqueiroz.yaml @@ -8,6 +8,7 @@ source: author: "dark-bqueiroz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dark-bqueiroz.dark-bqueiroz" + formats: null colors: bg: "#020006" fg: "#CBF0FF" diff --git a/themes/dark-brown-theme.yaml b/themes/dark-brown-theme.yaml index 9a999db4..36a03f27 100644 --- a/themes/dark-brown-theme.yaml +++ b/themes/dark-brown-theme.yaml @@ -1,52 +1,53 @@ name: "Dark Brown Theme" source: - marketplace_id: "ceciljacob.overcast-code-theme" - version: "1.1.0" - installs: 768 + marketplace_id: "blono.dark-brown" + version: "0.0.1" + installs: 4048 rating: 5 ratings: 1 - author: "Cecil Jacob" - repo: "https://github.com/ceciljacob/overcast-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ceciljacob.overcast-code-theme" + author: "blono" + repo: "https://github.com/blono/vscode-theme-dark-brown" + url: "https://marketplace.visualstudio.com/items?itemName=blono.dark-brown" + formats: null colors: - bg: "#180F08" - fg: "#FCFAF6" - black: "#020202" - red: "#C45E04" - green: "#80A28E" - yellow: "#F4DB60" - blue: "#76ABDC" - magenta: "#B68DB2" - cyan: "#56B8C8" - white: "#EFEFEF" - brightBlack: "#424242" - brightRed: "#C45E04" - brightGreen: "#80A28E" - brightYellow: "#F4DB60" - brightBlue: "#76ABDC" - brightMagenta: "#B68DB2" - brightCyan: "#56B8C8" - brightWhite: "#FEFEFE" + bg: "#202020" + fg: "#DDDDDD" + black: "#1B1B1B" + red: "#EE6767" + green: "#9A4D24" + yellow: "#C49B3D" + blue: "#E8B77B" + magenta: "#9A4D24" + cyan: "#E8B77B" + white: "#C0C0C0" + brightBlack: "#2D2D2D" + brightRed: "#F694FF" + brightGreen: "#9A4D24" + brightYellow: "#C49B3D" + brightBlue: "#E8B77B" + brightMagenta: "#9A4D24" + brightCyan: "#E8B77B" + brightWhite: "#DDDDDD" meta: mode: "dark" - accent: "yellow" - hue: 59 + accent: "pink" + hue: null pair: null contrast: - fg: 104.1 + fg: 83.9 black: 0 - red: 32.5 - green: 47.3 - yellow: 84.3 - blue: 53.7 - magenta: 47.1 - cyan: 56.2 - white: 96.9 - brightBlack: 8.6 - brightRed: 32.5 - brightGreen: 47.3 - brightYellow: 84.3 - brightBlue: 53.7 - brightMagenta: 47.1 - brightCyan: 56.2 - brightWhite: 106.7 + red: 42.3 + green: 19.9 + yellow: 49.3 + blue: 66.4 + magenta: 19.9 + cyan: 66.4 + white: 66.5 + brightBlack: 0 + brightRed: 62.3 + brightGreen: 19.9 + brightYellow: 49.3 + brightBlue: 66.4 + brightMagenta: 19.9 + brightCyan: 66.4 + brightWhite: 83.9 diff --git a/themes/dark-brown.yaml b/themes/dark-brown.yaml deleted file mode 100644 index c8d23729..00000000 --- a/themes/dark-brown.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Brown" -source: - marketplace_id: "blono.dark-brown" - version: "0.0.1" - installs: 4047 - rating: 5 - ratings: 1 - author: "blono" - repo: "https://github.com/blono/vscode-theme-dark-brown" - url: "https://marketplace.visualstudio.com/items?itemName=blono.dark-brown" -colors: - bg: "#202020" - fg: "#DDDDDD" - black: "#1B1B1B" - red: "#EE6767" - green: "#9A4D24" - yellow: "#C49B3D" - blue: "#E8B77B" - magenta: "#9A4D24" - cyan: "#E8B77B" - white: "#C0C0C0" - brightBlack: "#2D2D2D" - brightRed: "#F694FF" - brightGreen: "#9A4D24" - brightYellow: "#C49B3D" - brightBlue: "#E8B77B" - brightMagenta: "#9A4D24" - brightCyan: "#E8B77B" - brightWhite: "#DDDDDD" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 83.9 - black: 0 - red: 42.3 - green: 19.9 - yellow: 49.3 - blue: 66.4 - magenta: 19.9 - cyan: 66.4 - white: 66.5 - brightBlack: 0 - brightRed: 62.3 - brightGreen: 19.9 - brightYellow: 49.3 - brightBlue: 66.4 - brightMagenta: 19.9 - brightCyan: 66.4 - brightWhite: 83.9 diff --git a/themes/dark-cherry-ice-cream-subtle.yaml b/themes/dark-cherry-ice-cream-subtle.yaml index aedd8a64..789ca37a 100644 --- a/themes/dark-cherry-ice-cream-subtle.yaml +++ b/themes/dark-cherry-ice-cream-subtle.yaml @@ -8,6 +8,7 @@ source: author: "James Gulland" repo: "https://github.com/james-gulland/dark-cherry-ice-cream-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.dark-cherry-ice-cream" + formats: null colors: bg: "#23272E" fg: "#D7D0DB" diff --git a/themes/dark-cherry-ice-cream.yaml b/themes/dark-cherry-ice-cream.yaml index 12e45ce3..cd8206f5 100644 --- a/themes/dark-cherry-ice-cream.yaml +++ b/themes/dark-cherry-ice-cream.yaml @@ -8,6 +8,7 @@ source: author: "James Gulland" repo: "https://github.com/james-gulland/dark-cherry-ice-cream-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.dark-cherry-ice-cream" + formats: null colors: bg: "#1D1921" fg: "#D2C7E1" diff --git a/themes/dark-clean.yaml b/themes/dark-clean.yaml deleted file mode 100644 index a5b36b61..00000000 --- a/themes/dark-clean.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Clean" -source: - marketplace_id: "Veccy-vec.cleardarktheme" - version: "1.1.2" - installs: 827 - rating: 0 - ratings: 0 - author: "Veccy" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Veccy-vec.cleardarktheme" -colors: - bg: "#060606" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.5 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.7 - cyan: 48.5 - white: 91 - brightBlack: 23 - brightRed: 39.5 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.3 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/dark-code-fork.yaml b/themes/dark-code-fork.yaml deleted file mode 100644 index ed1e7ab3..00000000 --- a/themes/dark-code-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Code - Fork" -source: - marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" - version: "9.0.1" - installs: 29917 - rating: 4.6 - ratings: 10 - author: "Hasibur R" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" -colors: - bg: "#000000" - fg: "#539BCF" - black: "#5A5A5A" - red: "#6D1F1F" - green: "#075637" - yellow: "#5C5C0D" - blue: "#1D4168" - magenta: "#5E205E" - cyan: "#0C5B6F" - white: "#AB8C8C" - brightBlack: "#666666" - brightRed: "#7B2A2A" - brightGreen: "#126242" - brightYellow: "#51511A" - brightBlue: "#245284" - brightMagenta: "#683868" - brightCyan: "#196D82" - brightWhite: "#807F7F" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 45 - black: 18.1 - red: 7.6 - green: 12.7 - yellow: 17.8 - blue: 8.5 - magenta: 0 - cyan: 15.9 - white: 44.3 - brightBlack: 23 - brightRed: 11.1 - brightGreen: 16.8 - brightYellow: 13.7 - brightBlue: 14.6 - brightMagenta: 12.1 - brightCyan: 22.6 - brightWhite: 34.4 diff --git a/themes/dark-codely-theme.yaml b/themes/dark-codely-theme.yaml deleted file mode 100644 index abdb4a33..00000000 --- a/themes/dark-codely-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dark.codely-theme" -source: - marketplace_id: "codely.codely-theme" - version: "0.0.1" - installs: 23888 - rating: 4.5 - ratings: 10 - author: "Codely" - repo: "https://github.com/CodelyTV/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=codely.codely-theme" -colors: - bg: "#1E1E1E" - fg: "#EBDBB2" - black: "#000000" - red: "#FB5245" - green: "#B8BB26" - yellow: "#FAC149" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#EBDBB2" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#B8BB26" - brightYellow: "#F5F543" - brightBlue: "#95B7F7" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 83.6 - black: 0 - red: 40.9 - green: 60.3 - yellow: 72.7 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 83.6 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 60.3 - brightYellow: 94.8 - brightBlue: 61.3 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/dark-coffee.yaml b/themes/dark-coffee.yaml index 49ddda21..913fe892 100644 --- a/themes/dark-coffee.yaml +++ b/themes/dark-coffee.yaml @@ -2,12 +2,13 @@ name: "Dark Coffee" source: marketplace_id: "sentientcoffee.dark-coffee-theme" version: "0.0.40" - installs: 1397 + installs: 1398 rating: 0 ratings: 0 author: "sentientcoffee" repo: "https://github.com/SentientCoffee/DarkCoffeeTheme_VSCode" url: "https://marketplace.visualstudio.com/items?itemName=sentientcoffee.dark-coffee-theme" + formats: null colors: bg: "#151515" fg: "#D4D4D4" diff --git a/themes/dark-cool-theme.yaml b/themes/dark-cool-theme.yaml index ea7718ac..22410ae6 100644 --- a/themes/dark-cool-theme.yaml +++ b/themes/dark-cool-theme.yaml @@ -1,4 +1,4 @@ -name: "Dark cool theme" +name: "Dark Cool Theme" source: marketplace_id: "emintoklu.dark-cool-theme" version: "0.1.2" @@ -8,6 +8,7 @@ source: author: "Emin Toklu" repo: "https://github.com/emintokluu/codefor-green-theme" url: "https://marketplace.visualstudio.com/items?itemName=emintoklu.dark-cool-theme" + formats: null colors: bg: "#0E0E13" fg: "#B5B0D9" diff --git a/themes/dark-crimson.yaml b/themes/dark-crimson.yaml deleted file mode 100644 index 170d6679..00000000 --- a/themes/dark-crimson.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark-Crimson" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#0A0A0A" - fg: "#FAFAFA" - black: "#0A0A0A" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#DC2626" - magenta: "#DC2626" - cyan: "#29C3A0" - white: "#FAFAFA" - brightBlack: "#0A0A0A" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#DC2626" - brightMagenta: "#DC2626" - brightCyan: "#29C3A0" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 104.4 - black: 0 - red: 10.2 - green: 58.5 - yellow: 52.6 - blue: 30 - magenta: 30 - cyan: 58.5 - white: 104.4 - brightBlack: 0 - brightRed: 10.2 - brightGreen: 58.5 - brightYellow: 52.6 - brightBlue: 30 - brightMagenta: 30 - brightCyan: 58.5 - brightWhite: 104.4 diff --git a/themes/dark-decay.yaml b/themes/dark-decay.yaml index 1f14da3c..caf2486a 100644 --- a/themes/dark-decay.yaml +++ b/themes/dark-decay.yaml @@ -8,6 +8,7 @@ source: author: "Nishant Gajjar" repo: "https://github.com/nishantg96/Dark-Decay-Pro-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=nishantg96.dark-decay-pro" + formats: null colors: bg: "#101419" fg: "#B6BECA" @@ -31,7 +32,7 @@ meta: mode: "dark" accent: "green" hue: 254 - pair: "Light Decay" + pair: null contrast: fg: 66.3 black: 7.7 diff --git a/themes/dark-dev-theme.yaml b/themes/dark-dev-theme.yaml index 784a476b..fcc1f28e 100644 --- a/themes/dark-dev-theme.yaml +++ b/themes/dark-dev-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "KunalRathore.dark-dev-theme" version: "1.0.0" installs: 92 + rating: 0 + ratings: 0 author: "Kunal Rathore" repo: "https://github.com/kunal-rathore-111/dark-dev-theme" url: "https://marketplace.visualstudio.com/items?itemName=KunalRathore.dark-dev-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/dark-discord-vscode.yaml b/themes/dark-discord-vscode.yaml index f99dd887..27d4d68b 100644 --- a/themes/dark-discord-vscode.yaml +++ b/themes/dark-discord-vscode.yaml @@ -8,6 +8,7 @@ source: author: "akisblack" repo: "https://github.com/akisblack/dark-discord-vscode" url: "https://marketplace.visualstudio.com/items?itemName=akis.dark-discord-vscode" + formats: null colors: bg: "#141414" fg: "#B6B6B6" diff --git a/themes/dark-dust-pro.yaml b/themes/dark-dust-pro.yaml deleted file mode 100644 index ee153446..00000000 --- a/themes/dark-dust-pro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Dust Pro" -source: - marketplace_id: "snelusha.dark-dust" - version: "1.0.0" - installs: 725 - rating: 5 - ratings: 2 - author: "snelusha" - repo: "https://github.com/SNelusha/dark-dust-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=snelusha.dark-dust" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#14C159" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 56.2 - black: 0 - red: 33.5 - green: 57.2 - yellow: 45.4 - blue: 46.5 - magenta: 35.9 - cyan: 49.3 - white: 87.4 - brightBlack: 12.3 - brightRed: 42.9 - brightGreen: 73.6 - brightYellow: 51.5 - brightBlue: 60.5 - brightMagenta: 47.1 - brightCyan: 64.6 - brightWhite: 79.8 diff --git a/themes/dark-edit.yaml b/themes/dark-edit.yaml index 95da2ed9..f8d2ff7b 100644 --- a/themes/dark-edit.yaml +++ b/themes/dark-edit.yaml @@ -6,6 +6,7 @@ source: author: "Eberk9" repo: null url: "https://marketplace.visualstudio.com/items?itemName=9K14.EditPlusDark" + formats: null colors: bg: "#111010" fg: "#D4D4D4" diff --git a/themes/dark-flow.yaml b/themes/dark-flow.yaml index 2a2405ae..4d3a0a0b 100644 --- a/themes/dark-flow.yaml +++ b/themes/dark-flow.yaml @@ -1,4 +1,4 @@ -name: "dark-flow" +name: "Dark Flow" source: marketplace_id: "MauroBalades.dark-flow-vscode" version: "1.0.1" @@ -8,6 +8,7 @@ source: author: "Mauro Balades" repo: "https://github.com/dark-flow/vscode" url: "https://marketplace.visualstudio.com/items?itemName=MauroBalades.dark-flow-vscode" + formats: null colors: bg: "#2C303A" fg: "#D4D4D4" diff --git a/themes/dark-forest.yaml b/themes/dark-forest.yaml index 4e12549d..c6881829 100644 --- a/themes/dark-forest.yaml +++ b/themes/dark-forest.yaml @@ -1,13 +1,14 @@ name: "Dark Forest" source: - marketplace_id: "JavierdeMarco.dark-forest-vsc" - version: "0.0.2" - installs: 412 + marketplace_id: "JavierdeMarco.darkforest" + version: "0.0.1" + installs: 79 rating: 0 ratings: 0 author: "Javier de Marco" repo: "https://github.com/javierdemarco/dark-forest-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=JavierdeMarco.dark-forest-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=JavierdeMarco.darkforest" + formats: null colors: bg: "#20282F" fg: "#C5CDD9" diff --git a/themes/dark-frost-midnight.yaml b/themes/dark-frost-midnight.yaml index 1e9a1f04..77b3c469 100644 --- a/themes/dark-frost-midnight.yaml +++ b/themes/dark-frost-midnight.yaml @@ -8,6 +8,8 @@ source: author: "Sandrico Provo" repo: "https://github.com/sandricoprovo/dark-frost-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sprovo.dark-frost" + formats: + iterm2: "https://raw.githubusercontent.com/sandricoprovo/dark-frost-vscode-theme/master/Dark Frost iTerm Theme.itermcolors" colors: bg: "#272629" fg: "#DDDDDD" diff --git a/themes/dark-frost.yaml b/themes/dark-frost.yaml index 7d23b5ba..d14185c3 100644 --- a/themes/dark-frost.yaml +++ b/themes/dark-frost.yaml @@ -8,6 +8,8 @@ source: author: "Sandrico Provo" repo: "https://github.com/sandricoprovo/dark-frost-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sprovo.dark-frost" + formats: + iterm2: "https://raw.githubusercontent.com/sandricoprovo/dark-frost-vscode-theme/master/Dark Frost iTerm Theme.itermcolors" colors: bg: "#202733" fg: "#BFC7D5" diff --git a/themes/dark-fury.yaml b/themes/dark-fury.yaml index 9dd2e034..270293c0 100644 --- a/themes/dark-fury.yaml +++ b/themes/dark-fury.yaml @@ -8,6 +8,7 @@ source: author: "alive ninja" repo: null url: "https://marketplace.visualstudio.com/items?itemName=alive-ninja.dark-fury-theme" + formats: null colors: bg: "#000000" fg: "#666666" diff --git a/themes/dark-future-cyberpunk-2077.yaml b/themes/dark-future-cyberpunk-2077.yaml deleted file mode 100644 index 4bcfa713..00000000 --- a/themes/dark-future-cyberpunk-2077.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Future Cyberpunk 2077" -source: - marketplace_id: "SashaPetrenko.dark-future" - version: "0.0.17" - installs: 2064 - rating: 5 - ratings: 1 - author: "Sasha Petrenko" - repo: "https://github.com/AP6YC/dark-future" - url: "https://marketplace.visualstudio.com/items?itemName=SashaPetrenko.dark-future" -colors: - bg: "#101116" - fg: "#00D4B1" - black: "#10D4B0" - red: "#940303" - green: "#0059FF" - yellow: "#1A1B03" - blue: "#004CF1" - magenta: "#94058A" - cyan: "#029790" - white: "#311B92" - brightBlack: "#02ADF1" - brightRed: "#BE0000" - brightGreen: "#00FF9C" - brightYellow: "#D0F30C" - brightBlue: "#00A2FF" - brightMagenta: "#E215D6" - brightCyan: "#08E1D7" - brightWhite: "#2EB8F8" -meta: - mode: "dark" - accent: "pink" - hue: 276 - pair: null - contrast: - fg: 66.5 - black: 66.5 - red: 12.8 - green: 25.4 - yellow: 0 - blue: 21.1 - magenta: 16.1 - cyan: 38.2 - white: 0 - brightBlack: 52.3 - brightRed: 21.5 - brightGreen: 87.7 - brightYellow: 90.1 - brightBlue: 48.8 - brightMagenta: 36.5 - brightCyan: 74.5 - brightWhite: 57.7 diff --git a/themes/dark-future-outrun.yaml b/themes/dark-future-outrun.yaml deleted file mode 100644 index 1f3e61be..00000000 --- a/themes/dark-future-outrun.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Future Outrun" -source: - marketplace_id: "SashaPetrenko.dark-future" - version: "0.0.17" - installs: 2064 - rating: 5 - ratings: 1 - author: "Sasha Petrenko" - repo: "https://github.com/AP6YC/dark-future" - url: "https://marketplace.visualstudio.com/items?itemName=SashaPetrenko.dark-future" -colors: - bg: "#030D22" - fg: "#FDFEFF" - black: "#3A1B75" - red: "#EE1682" - green: "#06AD00" - yellow: "#FFD400" - blue: "#3787D6" - magenta: "#EA00D9" - cyan: "#0AB2FA" - white: "#F2F8FF" - brightBlack: "#5C6D75" - brightRed: "#FF2E97" - brightGreen: "#3DD69C" - brightYellow: "#FFD400" - brightBlue: "#5994CE" - brightMagenta: "#EA00D9" - brightCyan: "#4BC5FA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 260 - pair: null - contrast: - fg: 106.7 - black: 0 - red: 35.1 - green: 45.5 - yellow: 82.6 - blue: 36.6 - magenta: 38.3 - cyan: 55.1 - white: 102.4 - brightBlack: 24.5 - brightRed: 41.2 - brightGreen: 67.5 - brightYellow: 82.6 - brightBlue: 42.2 - brightMagenta: 38.3 - brightCyan: 64.4 - brightWhite: 107.5 diff --git a/themes/dark-green-energy.yaml b/themes/dark-green-energy.yaml index 432bb92a..5a2b769a 100644 --- a/themes/dark-green-energy.yaml +++ b/themes/dark-green-energy.yaml @@ -8,6 +8,7 @@ source: author: "Rambo1558" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Rambo1558.dark-and-green-my-first-theme" + formats: null colors: bg: "#222222" fg: "#00C0A5" diff --git a/themes/dark-green-jungle.yaml b/themes/dark-green-jungle.yaml deleted file mode 100644 index bea49fd1..00000000 --- a/themes/dark-green-jungle.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Green Jungle" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#18211E" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 173 - pair: null - contrast: - fg: 78.5 - black: 0 - red: 25.7 - green: 52 - yellow: 84.6 - blue: 26.4 - magenta: 28.8 - cyan: 46.6 - white: 89 - brightBlack: 21 - brightRed: 37.6 - brightGreen: 62.5 - brightYellow: 94.6 - brightBlue: 39 - brightMagenta: 44.4 - brightCyan: 54.4 - brightWhite: 89 diff --git a/themes/dark-green-minimalist-theme.yaml b/themes/dark-green-minimalist-theme.yaml index 905a26fe..f1af2fa1 100644 --- a/themes/dark-green-minimalist-theme.yaml +++ b/themes/dark-green-minimalist-theme.yaml @@ -2,12 +2,13 @@ name: "Dark Green Minimalist Theme" source: marketplace_id: "drifaro-theme.dark-green-minimalist-theme" version: "0.0.1" - installs: 2308 + installs: 2309 rating: 5 ratings: 1 author: "drifaro-theme" repo: "https://github.com/drifaro/theme-vscode-dark-green-minimalist" url: "https://marketplace.visualstudio.com/items?itemName=drifaro-theme.dark-green-minimalist-theme" + formats: null colors: bg: "#000000" fg: "#8E90FF" diff --git a/themes/dark-green.yaml b/themes/dark-green.yaml deleted file mode 100644 index 463e563e..00000000 --- a/themes/dark-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark-Green" -source: - marketplace_id: "bakrimoharram.dark-green" - version: "0.0.2" - installs: 1855 - rating: 0 - ratings: 0 - author: "bakrimoharram" - repo: "https://github.com/bakrimoharram/dark-green" - url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.dark-green" -colors: - bg: "#0E2810" - fg: "#BC7B7B" - black: "#000000" - red: "#CD3131" - green: "#00B26E" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#A7EEAE" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#4AE8A9" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#D9FFDD" -meta: - mode: "dark" - accent: "pink" - hue: 145 - pair: null - contrast: - fg: 38.2 - black: 0 - red: 25.1 - green: 46.6 - yellow: 84 - blue: 25.8 - magenta: 28.1 - cyan: 45.9 - white: 83.6 - brightBlack: 20.4 - brightRed: 36.9 - brightGreen: 75 - brightYellow: 94 - brightBlue: 38.4 - brightMagenta: 43.8 - brightCyan: 53.8 - brightWhite: 98.8 diff --git a/themes/dark-grey-theme.yaml b/themes/dark-grey-theme.yaml index 64579691..1f661201 100644 --- a/themes/dark-grey-theme.yaml +++ b/themes/dark-grey-theme.yaml @@ -8,6 +8,7 @@ source: author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-grey-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-grey-theme" + formats: null colors: bg: "#000000" fg: "#808080" diff --git a/themes/dark-ink-and-red-accents.yaml b/themes/dark-ink-and-red-accents.yaml index 22d9c029..9619ab55 100644 --- a/themes/dark-ink-and-red-accents.yaml +++ b/themes/dark-ink-and-red-accents.yaml @@ -8,6 +8,7 @@ source: author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" + formats: null colors: bg: "#0E0E0E" fg: "#717C8E" diff --git a/themes/dark-ink-brighter.yaml b/themes/dark-ink-brighter.yaml index 1c438dce..6ea1a588 100644 --- a/themes/dark-ink-brighter.yaml +++ b/themes/dark-ink-brighter.yaml @@ -8,6 +8,7 @@ source: author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" + formats: null colors: bg: "#1E1E1E" fg: "#818C9E" diff --git a/themes/dark-ink-brightest.yaml b/themes/dark-ink-brightest.yaml index 654d4191..ec792f01 100644 --- a/themes/dark-ink-brightest.yaml +++ b/themes/dark-ink-brightest.yaml @@ -8,6 +8,7 @@ source: author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" + formats: null colors: bg: "#1E1E1E" fg: "#919CAE" diff --git a/themes/dark-ink-lighter.yaml b/themes/dark-ink-lighter.yaml index 24c7dcfe..559331a5 100644 --- a/themes/dark-ink-lighter.yaml +++ b/themes/dark-ink-lighter.yaml @@ -8,6 +8,7 @@ source: author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" + formats: null colors: bg: "#FDFDFD" fg: "#3D5981" diff --git a/themes/dark-ink.yaml b/themes/dark-ink.yaml index 4ec7f55f..23575b78 100644 --- a/themes/dark-ink.yaml +++ b/themes/dark-ink.yaml @@ -8,6 +8,7 @@ source: author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-ink-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-ink-theme" + formats: null colors: bg: "#0E0E0E" fg: "#717C8E" diff --git a/themes/dark-jade.yaml b/themes/dark-jade.yaml index 68a05351..6048ed08 100644 --- a/themes/dark-jade.yaml +++ b/themes/dark-jade.yaml @@ -8,6 +8,7 @@ source: author: "ErikDCAlmeida" repo: "https://github.com/ErikDCAlmeida/jade-theme" url: "https://marketplace.visualstudio.com/items?itemName=edca-jadetheme.jade" + formats: null colors: bg: "#000000" fg: "#A7A7A7" @@ -31,7 +32,7 @@ meta: mode: "dark" accent: "pink" hue: null - pair: "Light Jade" + pair: null contrast: fg: 54.6 black: 0 diff --git a/themes/dark-juice-bordered.yaml b/themes/dark-juice-bordered.yaml index 345bf456..5f465e06 100644 --- a/themes/dark-juice-bordered.yaml +++ b/themes/dark-juice-bordered.yaml @@ -8,6 +8,7 @@ source: author: "Nachop Peralta" repo: "https://github.com/nachop51/nachop-theme" url: "https://marketplace.visualstudio.com/items?itemName=nachop51.nachop-theme" + formats: null colors: bg: "#0B0E14" fg: "#DCDFEB" diff --git a/themes/dark-lavender-black.yaml b/themes/dark-lavender-black.yaml deleted file mode 100644 index 49c46b44..00000000 --- a/themes/dark-lavender-black.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Lavender (Black)" -source: - marketplace_id: "t7yang.dark-lavender" - version: "6.2.1" - installs: 8090 - rating: 5 - ratings: 6 - author: "t7yang" - repo: "https://github.com/t7yang/dark-lavender" - url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" -colors: - bg: "#010109" - fg: "#CFD8DC" - black: "#263238" - red: "#D32F2F" - green: "#388E3C" - yellow: "#FBC02D" - blue: "#0D47A1" - magenta: "#C2185B" - cyan: "#0097A7" - white: "#607D8B" - brightBlack: "#455A64" - brightRed: "#F44336" - brightGreen: "#4CAF50" - brightYellow: "#FFEB3B" - brightBlue: "#2196F3" - brightMagenta: "#E91E63" - brightCyan: "#00BCD4" - brightWhite: "#90A4AE" -meta: - mode: "dark" - accent: "red" - hue: 276 - pair: null - contrast: - fg: 82 - black: 0 - red: 28.8 - green: 33.7 - yellow: 74.1 - blue: 13.2 - magenta: 24.3 - cyan: 39.6 - white: 31.4 - brightBlack: 16.9 - brightRed: 38.7 - brightGreen: 48.6 - brightYellow: 93.4 - brightBlue: 44 - brightMagenta: 33.6 - brightCyan: 57.5 - brightWhite: 51.3 diff --git a/themes/dark-lavender-soft.yaml b/themes/dark-lavender-soft.yaml deleted file mode 100644 index f5f60101..00000000 --- a/themes/dark-lavender-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Lavender (Soft)" -source: - marketplace_id: "t7yang.dark-lavender" - version: "6.2.1" - installs: 8090 - rating: 5 - ratings: 6 - author: "t7yang" - repo: "https://github.com/t7yang/dark-lavender" - url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" -colors: - bg: "#13151E" - fg: "#CFD8DC" - black: "#263238" - red: "#D32F2F" - green: "#388E3C" - yellow: "#FBC02D" - blue: "#0D47A1" - magenta: "#C2185B" - cyan: "#0097A7" - white: "#607D8B" - brightBlack: "#455A64" - brightRed: "#F44336" - brightGreen: "#4CAF50" - brightYellow: "#FFEB3B" - brightBlue: "#2196F3" - brightMagenta: "#E91E63" - brightCyan: "#00BCD4" - brightWhite: "#90A4AE" -meta: - mode: "dark" - accent: "red" - hue: 275 - pair: null - contrast: - fg: 81.1 - black: 0 - red: 28 - green: 32.8 - yellow: 73.3 - blue: 12.4 - magenta: 23.5 - cyan: 38.8 - white: 30.5 - brightBlack: 16 - brightRed: 37.9 - brightGreen: 47.7 - brightYellow: 92.5 - brightBlue: 43.2 - brightMagenta: 32.8 - brightCyan: 56.6 - brightWhite: 50.4 diff --git a/themes/dark-lavender-tailwind-soft.yaml b/themes/dark-lavender-tailwind-soft.yaml deleted file mode 100644 index d7799dc0..00000000 --- a/themes/dark-lavender-tailwind-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Lavender (Tailwind Soft)" -source: - marketplace_id: "t7yang.dark-lavender" - version: "6.2.1" - installs: 8090 - rating: 5 - ratings: 6 - author: "t7yang" - repo: "https://github.com/t7yang/dark-lavender" - url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" -colors: - bg: "#13151E" - fg: "#F1F5F9" - black: "#0F172A" - red: "#BE123C" - green: "#047857" - yellow: "#A16207" - blue: "#1E3A8A" - magenta: "#BE185D" - cyan: "#0E7490" - white: "#64748B" - brightBlack: "#334155" - brightRed: "#F43F5E" - brightGreen: "#10B981" - brightYellow: "#EAB308" - brightBlue: "#3B82F6" - brightMagenta: "#EC4899" - brightCyan: "#06B6D4" - brightWhite: "#CBD5E1" -meta: - mode: "dark" - accent: "orange" - hue: 275 - pair: null - contrast: - fg: 100.1 - black: 0 - red: 21.8 - green: 24.1 - yellow: 27.1 - blue: 8.1 - magenta: 22.7 - cyan: 24.7 - white: 27.8 - brightBlack: 7.7 - brightRed: 38 - brightGreen: 52 - brightYellow: 65.2 - brightBlue: 36.9 - brightMagenta: 39.1 - brightCyan: 54 - brightWhite: 79.5 diff --git a/themes/dark-lavender-tailwind.yaml b/themes/dark-lavender-tailwind.yaml deleted file mode 100644 index 015082df..00000000 --- a/themes/dark-lavender-tailwind.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Lavender (Tailwind)" -source: - marketplace_id: "t7yang.dark-lavender" - version: "6.2.1" - installs: 8090 - rating: 5 - ratings: 6 - author: "t7yang" - repo: "https://github.com/t7yang/dark-lavender" - url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" -colors: - bg: "#07090F" - fg: "#F1F5F9" - black: "#0F172A" - red: "#BE123C" - green: "#047857" - yellow: "#A16207" - blue: "#1E3A8A" - magenta: "#BE185D" - cyan: "#0E7490" - white: "#64748B" - brightBlack: "#334155" - brightRed: "#F43F5E" - brightGreen: "#10B981" - brightYellow: "#EAB308" - brightBlue: "#3B82F6" - brightMagenta: "#EC4899" - brightCyan: "#06B6D4" - brightWhite: "#CBD5E1" -meta: - mode: "dark" - accent: "orange" - hue: 268 - pair: null - contrast: - fg: 100.8 - black: 0 - red: 22.5 - green: 24.8 - yellow: 27.8 - blue: 8.8 - magenta: 23.4 - cyan: 25.4 - white: 28.5 - brightBlack: 8.4 - brightRed: 38.7 - brightGreen: 52.7 - brightYellow: 66 - brightBlue: 37.7 - brightMagenta: 39.9 - brightCyan: 54.8 - brightWhite: 80.3 diff --git a/themes/dark-lavender.yaml b/themes/dark-lavender.yaml deleted file mode 100644 index d53b3aeb..00000000 --- a/themes/dark-lavender.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Lavender" -source: - marketplace_id: "t7yang.dark-lavender" - version: "6.2.1" - installs: 8090 - rating: 5 - ratings: 6 - author: "t7yang" - repo: "https://github.com/t7yang/dark-lavender" - url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" -colors: - bg: "#07090F" - fg: "#CFD8DC" - black: "#263238" - red: "#D32F2F" - green: "#388E3C" - yellow: "#FBC02D" - blue: "#0D47A1" - magenta: "#C2185B" - cyan: "#0097A7" - white: "#607D8B" - brightBlack: "#455A64" - brightRed: "#F44336" - brightGreen: "#4CAF50" - brightYellow: "#FFEB3B" - brightBlue: "#2196F3" - brightMagenta: "#E91E63" - brightCyan: "#00BCD4" - brightWhite: "#90A4AE" -meta: - mode: "dark" - accent: "red" - hue: 268 - pair: null - contrast: - fg: 81.9 - black: 0 - red: 28.7 - green: 33.6 - yellow: 74 - blue: 13.1 - magenta: 24.2 - cyan: 39.5 - white: 31.3 - brightBlack: 16.8 - brightRed: 38.6 - brightGreen: 48.5 - brightYellow: 93.2 - brightBlue: 43.9 - brightMagenta: 33.5 - brightCyan: 57.4 - brightWhite: 51.2 diff --git a/themes/dark-legibility.yaml b/themes/dark-legibility.yaml deleted file mode 100644 index 3c211139..00000000 --- a/themes/dark-legibility.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark legibility" -source: - marketplace_id: "Jamers.jamestheme" - version: "0.0.4" - installs: 12 - rating: 0 - ratings: 0 - author: "Jamers" - repo: "https://github.com/kokjp1/jamestheme" - url: "https://marketplace.visualstudio.com/items?itemName=Jamers.jamestheme" -colors: - bg: "#21202E" - fg: "#DEDEDE" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 288 - pair: null - contrast: - fg: 84.3 - black: 0 - red: 25.4 - green: 51.7 - yellow: 84.3 - blue: 26.1 - magenta: 28.4 - cyan: 46.2 - white: 88.7 - brightBlack: 20.7 - brightRed: 37.2 - brightGreen: 62.2 - brightYellow: 94.3 - brightBlue: 38.7 - brightMagenta: 44 - brightCyan: 54.1 - brightWhite: 88.7 diff --git a/themes/dark-leocode-theme.yaml b/themes/dark-leocode-theme.yaml index deb9f567..e0ed3872 100644 --- a/themes/dark-leocode-theme.yaml +++ b/themes/dark-leocode-theme.yaml @@ -8,6 +8,7 @@ source: author: "Leonardo Espinosa Cassales" repo: "https://github.com/leointhecode/lionleo-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=LeonardoEspinosaCassales.dark-leocode-theme" + formats: null colors: bg: "#262424" fg: "#BEB9B9" diff --git a/themes/dark-lime-flat.yaml b/themes/dark-lime-flat.yaml deleted file mode 100644 index 76d22c10..00000000 --- a/themes/dark-lime-flat.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Lime Flat" -source: - marketplace_id: "jannisberndt.dark-orange" - version: "0.4.0" - installs: 21524 - rating: 5 - ratings: 1 - author: "Jannis Berndt" - repo: "https://github.com/jb3rndt/dark-orange" - url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" -colors: - bg: "#202226" - fg: "#E1E4E8" - black: "#3F4451" - red: "#E05561" - green: "#98C379" - yellow: "#F69D50" - blue: "#4AA5F0" - magenta: "#C792EA" - cyan: "#82AAFF" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 87.8 - black: 7.4 - red: 35.3 - green: 60.9 - yellow: 58.3 - blue: 48.3 - magenta: 52.4 - cyan: 54.5 - white: 89.2 - brightBlack: 14.1 - brightRed: 44.7 - brightGreen: 75.4 - brightYellow: 59.8 - brightBlue: 62.3 - brightMagenta: 48.9 - brightCyan: 66.4 - brightWhite: 81.6 diff --git a/themes/dark-magic-dracula.yaml b/themes/dark-magic-dracula.yaml deleted file mode 100644 index bc487d58..00000000 --- a/themes/dark-magic-dracula.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Magic Dracula" -source: - marketplace_id: "AbdoGhonim.ghonim-dark-themes" - version: "0.0.2" - installs: 138 - rating: 5 - ratings: 1 - author: "Abdo Ghonim" - repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" - url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" -colors: - bg: "#282A36" - fg: "#CCE3F5" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 278 - pair: null - contrast: - fg: 83.8 - black: 0 - red: 23.8 - green: 50 - yellow: 82.7 - blue: 24.5 - magenta: 26.8 - cyan: 44.6 - white: 87.1 - brightBlack: 19.1 - brightRed: 35.6 - brightGreen: 60.6 - brightYellow: 92.7 - brightBlue: 37 - brightMagenta: 42.4 - brightCyan: 52.4 - brightWhite: 87.1 diff --git a/themes/dark-magic-frankenstein.yaml b/themes/dark-magic-frankenstein.yaml deleted file mode 100644 index 4e78832d..00000000 --- a/themes/dark-magic-frankenstein.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Magic Frankenstein" -source: - marketplace_id: "AbdoGhonim.ghonim-dark-themes" - version: "0.0.2" - installs: 138 - rating: 5 - ratings: 1 - author: "Abdo Ghonim" - repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" - url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" -colors: - bg: "#0F1715" - fg: "#B6E8CF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 178 - pair: null - contrast: - fg: 85.1 - black: 0 - red: 26.9 - green: 53.1 - yellow: 85.8 - blue: 27.6 - magenta: 29.9 - cyan: 47.7 - white: 90.2 - brightBlack: 22.2 - brightRed: 38.7 - brightGreen: 63.7 - brightYellow: 95.8 - brightBlue: 40.1 - brightMagenta: 45.5 - brightCyan: 55.5 - brightWhite: 90.2 diff --git a/themes/dark-magic-light.yaml b/themes/dark-magic-light.yaml deleted file mode 100644 index c86e2454..00000000 --- a/themes/dark-magic-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Magic - Light" -source: - marketplace_id: "DavidMorais.dark-magic-themes" - version: "0.3.1" - installs: 47330 - rating: 5 - ratings: 6 - author: "David Morais" - repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" - url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" -colors: - bg: "#EAEAFF" - fg: "#3E3F54" - black: "#111111" - red: "#D90000" - green: "#00FF28" - yellow: "#CBA402" - blue: "#009FFF" - magenta: "#FF003C" - cyan: "#00FFFF" - white: "#E3E3FF" - brightBlack: "#333333" - brightRed: "#FF0000" - brightGreen: "#00FF80" - brightYellow: "#FFCE00" - brightBlue: "#004BFF" - brightMagenta: "#FF006B" - brightCyan: "#00FFFF" - brightWhite: "#F0F0FF" -meta: - mode: "light" - accent: "green" - hue: 286 - pair: "Dark Magic Night" - contrast: - fg: 82.4 - black: 93.9 - red: 62 - green: 0 - yellow: 35 - blue: 42.2 - magenta: 52.3 - cyan: 0 - white: 0 - brightBlack: 87.2 - brightRed: 52.6 - brightGreen: 0 - brightYellow: 11.3 - brightBlue: 67.4 - brightMagenta: 51.5 - brightCyan: 0 - brightWhite: 0 diff --git a/themes/dark-magic-night.yaml b/themes/dark-magic-night.yaml deleted file mode 100644 index cfb2af54..00000000 --- a/themes/dark-magic-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Magic Night" -source: - marketplace_id: "AbdoGhonim.ghonim-dark-themes" - version: "0.0.2" - installs: 138 - rating: 5 - ratings: 1 - author: "Abdo Ghonim" - repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" - url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" -colors: - bg: "#111111" - fg: "#CCCCCC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: "Dark Magic - Light" - contrast: - fg: 75.2 - black: 0 - red: 27.2 - green: 53.5 - yellow: 86.1 - blue: 27.9 - magenta: 30.3 - cyan: 48.1 - white: 90.5 - brightBlack: 22.5 - brightRed: 39.1 - brightGreen: 64 - brightYellow: 96.1 - brightBlue: 40.5 - brightMagenta: 45.9 - brightCyan: 55.9 - brightWhite: 90.5 diff --git a/themes/dark-magic-nord.yaml b/themes/dark-magic-nord.yaml deleted file mode 100644 index 45bd348c..00000000 --- a/themes/dark-magic-nord.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Magic Nord" -source: - marketplace_id: "AbdoGhonim.ghonim-dark-themes" - version: "0.0.2" - installs: 138 - rating: 5 - ratings: 1 - author: "Abdo Ghonim" - repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" - url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" -colors: - bg: "#2E3440" - fg: "#D8DEE9" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 80.3 - black: 0 - red: 21.6 - green: 47.9 - yellow: 80.5 - blue: 22.4 - magenta: 24.7 - cyan: 42.5 - white: 84.9 - brightBlack: 17 - brightRed: 33.5 - brightGreen: 58.5 - brightYellow: 90.6 - brightBlue: 34.9 - brightMagenta: 40.3 - brightCyan: 50.3 - brightWhite: 84.9 diff --git a/themes/dark-magic-tokyo.yaml b/themes/dark-magic-tokyo.yaml deleted file mode 100644 index a3270dad..00000000 --- a/themes/dark-magic-tokyo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Magic Tokyo" -source: - marketplace_id: "AbdoGhonim.ghonim-dark-themes" - version: "0.0.2" - installs: 138 - rating: 5 - ratings: 1 - author: "Abdo Ghonim" - repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" - url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" -colors: - bg: "#16161E" - fg: "#787C99" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 285 - pair: null - contrast: - fg: 32.6 - black: 0 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 90 - brightBlack: 22.1 - brightRed: 38.6 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90 diff --git a/themes/dark-magic.yaml b/themes/dark-magic.yaml deleted file mode 100644 index c06ece78..00000000 --- a/themes/dark-magic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Magic" -source: - marketplace_id: "AbdoGhonim.ghonim-dark-themes" - version: "0.0.2" - installs: 138 - rating: 5 - ratings: 1 - author: "Abdo Ghonim" - repo: "https://github.com/AbdoGhonim/ghonim-dark-themes" - url: "https://marketplace.visualstudio.com/items?itemName=AbdoGhonim.ghonim-dark-themes" -colors: - bg: "#0F0F17" - fg: "#BBCCEE" - black: "#111111" - red: "#BB3232" - green: "#00FFAB" - yellow: "#FBDE66" - blue: "#4C89AE" - magenta: "#E04C6F" - cyan: "#3D9393" - white: "#D4DBE8" - brightBlack: "#333333" - brightRed: "#BB3232" - brightGreen: "#66EEAA" - brightYellow: "#FFD31B" - brightBlue: "#4F6BAE" - brightMagenta: "#C3115C" - brightCyan: "#52F3F3" - brightWhite: "#111111" -meta: - mode: "dark" - accent: "red" - hue: 285 - pair: null - contrast: - fg: 74.9 - black: 0 - red: 23.6 - green: 88.3 - yellow: 86.9 - blue: 35.7 - magenta: 36.1 - cyan: 37.6 - white: 84.1 - brightBlack: 0 - brightRed: 23.6 - brightGreen: 81.3 - brightYellow: 82.1 - brightBlue: 25.7 - brightMagenta: 23.9 - brightCyan: 86.1 - brightWhite: 0 diff --git a/themes/dark-marine.yaml b/themes/dark-marine.yaml index 5653dff9..d0c83570 100644 --- a/themes/dark-marine.yaml +++ b/themes/dark-marine.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "MustafizKaifee.dark-marine" version: "1.0.2" installs: 38 + rating: 0 + ratings: 0 author: "Mustafiz Kaifee" repo: "https://github.com/Mustafiz04/vs-colour-theme" url: "https://marketplace.visualstudio.com/items?itemName=MustafizKaifee.dark-marine" + formats: null colors: bg: "#20303E" fg: "#E5D0AC" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 246 + pair: null contrast: fg: 74.8 black: 0 diff --git a/themes/dark-matter-code-neptune-medium.yaml b/themes/dark-matter-code-neptune-medium.yaml index ddc1ce5b..58335eab 100644 --- a/themes/dark-matter-code-neptune-medium.yaml +++ b/themes/dark-matter-code-neptune-medium.yaml @@ -8,6 +8,7 @@ source: author: "Amirali Beigi" repo: "https://github.com/amiralibg/dark-coder-theme" url: "https://marketplace.visualstudio.com/items?itemName=AmiraliBeigi.dark-matter-code" + formats: null colors: bg: "#1A1B26" fg: "#D4D4D4" diff --git a/themes/dark-minimal-lime-theme.yaml b/themes/dark-minimal-lime-theme.yaml deleted file mode 100644 index 2e98b03f..00000000 --- a/themes/dark-minimal-lime-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Minimal Lime Theme" -source: - marketplace_id: "BeanZ.dark-minimal-matte-theme" - version: "0.2.2" - installs: 557 - rating: 0 - ratings: 0 - author: "BeanZ" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=BeanZ.dark-minimal-matte-theme" -colors: - bg: "#0A0A0A" - fg: "#ABB2BF" - black: "#000000" - red: "#CD3131" - green: "#CDFF42" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#67FF8A" - brightYellow: "#B9FF42" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 60.3 - black: 0 - red: 27.6 - green: 96.4 - yellow: 86.5 - blue: 28.3 - magenta: 30.6 - cyan: 48.4 - white: 90.9 - brightBlack: 22.9 - brightRed: 39.4 - brightGreen: 89.6 - brightYellow: 94.3 - brightBlue: 40.9 - brightMagenta: 46.2 - brightCyan: 56.3 - brightWhite: 90.9 diff --git a/themes/dark-minimal-theme-sm.yaml b/themes/dark-minimal-theme-sm.yaml deleted file mode 100644 index dc97bc40..00000000 --- a/themes/dark-minimal-theme-sm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Minimal Theme(SM)" -source: - marketplace_id: "SIRILMP.dark-theme-sm" - version: "3.11.3" - installs: 21087 - rating: 5 - ratings: 2 - author: "SIRIL M P" - repo: "https://github.com/sirilmp/dark-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" -colors: - bg: "#212733" - fg: "#D9D7CE" - black: "#343D4A" - red: "#F07178" - green: "#937DC2" - yellow: "#7FE9DE" - blue: "#36A3D9" - magenta: "#D4BFFF" - cyan: "#95E6CB" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#CBE645" - brightYellow: "#FFDF80" - brightBlue: "#6871FF" - brightMagenta: "#FF77FF" - brightCyan: "#A6FDE1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 78.9 - black: 0 - red: 44.3 - green: 35.6 - yellow: 79.4 - blue: 44.5 - magenta: 70.7 - cyan: 78.6 - white: 69.5 - brightBlack: 20.6 - brightRed: 44.3 - brightGreen: 80.7 - brightYellow: 85.6 - brightBlue: 32.4 - brightMagenta: 55.2 - brightCyan: 92.3 - brightWhite: 104.6 diff --git a/themes/dark-mode-lover-wasp.yaml b/themes/dark-mode-lover-wasp.yaml index 9c925484..6133133f 100644 --- a/themes/dark-mode-lover-wasp.yaml +++ b/themes/dark-mode-lover-wasp.yaml @@ -8,6 +8,7 @@ source: author: "Lovervoid" repo: "https://github.com/Kailuss/dark-mode-lover" url: "https://marketplace.visualstudio.com/items?itemName=Lovervoid.dark-mode-lover" + formats: null colors: bg: "#1C1D26" fg: "#969FA3" diff --git a/themes/dark-mode-lover.yaml b/themes/dark-mode-lover.yaml index 92692cb2..32a5e9fa 100644 --- a/themes/dark-mode-lover.yaml +++ b/themes/dark-mode-lover.yaml @@ -8,6 +8,7 @@ source: author: "Lovervoid" repo: "https://github.com/Kailuss/dark-mode-lover" url: "https://marketplace.visualstudio.com/items?itemName=Lovervoid.dark-mode-lover" + formats: null colors: bg: "#1C1D26" fg: "#B1B2B4" diff --git a/themes/dark-mode-vs.yaml b/themes/dark-mode-vs.yaml index 4c399603..5394dbfa 100644 --- a/themes/dark-mode-vs.yaml +++ b/themes/dark-mode-vs.yaml @@ -2,12 +2,13 @@ name: "Dark Mode VS" source: marketplace_id: "DarkModeVS.dark-mode-vs" version: "1.3.0" - installs: 2690 + installs: 2691 rating: 4.33 ratings: 3 author: "Dark Mode VS" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DarkModeVS.dark-mode-vs" + formats: null colors: bg: "#000000" fg: "#FFFF00" diff --git a/themes/dark-mode.yaml b/themes/dark-mode.yaml deleted file mode 100644 index 6549d423..00000000 --- a/themes/dark-mode.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Mode" -source: - marketplace_id: "philsinatra.macos-dark-mode-theme" - version: "1.1.3" - installs: 60756 - rating: 3.75 - ratings: 4 - author: "Phil Sinatra" - repo: "https://github.com/philsinatra/macos-dark-mode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=philsinatra.macos-dark-mode-theme" -colors: - bg: "#1E1E1E" - fg: "#FFFFFF" - black: "#000000" - red: "#FF628C" - green: "#3AD900" - yellow: "#FFC600" - blue: "#0088FF" - magenta: "#FB94FF" - cyan: "#80FCFF" - white: "#FFFFFF" - brightBlack: "#0050A4" - brightRed: "#FF628C" - brightGreen: "#3AD900" - brightYellow: "#FFC600" - brightBlue: "#0088FF" - brightMagenta: "#FB94FF" - brightCyan: "#80FCFF" - brightWhite: "#193549" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 106 - black: 0 - red: 46.3 - green: 65.4 - yellow: 75.3 - blue: 37.9 - magenta: 63.5 - cyan: 91.9 - white: 106 - brightBlack: 13.8 - brightRed: 46.3 - brightGreen: 65.4 - brightYellow: 75.3 - brightBlue: 37.9 - brightMagenta: 63.5 - brightCyan: 91.9 - brightWhite: 0 diff --git a/themes/dark-modern-one-without-italics.yaml b/themes/dark-modern-one-without-italics.yaml deleted file mode 100644 index 366bfb33..00000000 --- a/themes/dark-modern-one-without-italics.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Modern One without italics" -source: - marketplace_id: "nicolaerario.dark-modern-one" - version: "0.3.1" - installs: 3342 - rating: 5 - ratings: 7 - author: "Nicola Erario" - repo: "https://github.com/nicolaerario/dark-modern-one" - url: "https://marketplace.visualstudio.com/items?itemName=nicolaerario.dark-modern-one" -colors: - bg: "#1C2026" - fg: "#CCCCCC" - black: "#3F4451" - red: "#E05561" - green: "#66BB6A" - yellow: "#E5C07B" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#FFDF5D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: 258 - pair: null - contrast: - fg: 73.6 - black: 7.8 - red: 35.6 - green: 53.6 - yellow: 69.5 - blue: 48.6 - magenta: 38 - cyan: 51.4 - white: 82 - brightBlack: 14.4 - brightRed: 45 - brightGreen: 75.7 - brightYellow: 86.2 - brightBlue: 62.7 - brightMagenta: 49.2 - brightCyan: 66.7 - brightWhite: 89.6 diff --git a/themes/dark-modern-yuriyprogg.yaml b/themes/dark-modern-yuriyprogg.yaml index 73714857..ab77dd88 100644 --- a/themes/dark-modern-yuriyprogg.yaml +++ b/themes/dark-modern-yuriyprogg.yaml @@ -8,6 +8,7 @@ source: author: "YuriyProgg" repo: "https://github.com/yuriyProgg/yuriyprogg-theme" url: "https://marketplace.visualstudio.com/items?itemName=yuriyProgg.yuriyprogg-theme" + formats: null colors: bg: "#1E1E1E" fg: "#9D9D9D" diff --git a/themes/dark-molokai.yaml b/themes/dark-molokai.yaml deleted file mode 100644 index 719efe62..00000000 --- a/themes/dark-molokai.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark (molokai)" -source: - marketplace_id: "nonylene.dark-molokai-theme" - version: "1.0.10" - installs: 33285 - rating: 5 - ratings: 3 - author: "nonylene" - repo: "https://github.com/nonylene/vscode-dark-molokai-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nonylene.dark-molokai-theme" -colors: - bg: "#1B1D1E" - fg: "#F8F8F2" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 101.3 - black: 0 - red: 23.9 - green: 52.4 - yellow: 57 - blue: 34 - magenta: 31.5 - cyan: 49.8 - white: 87.8 - brightBlack: 21.4 - brightRed: 36.6 - brightGreen: 76.3 - brightYellow: 83.2 - brightBlue: 49.2 - brightMagenta: 45.9 - brightCyan: 72.8 - brightWhite: 101.3 diff --git a/themes/dark-mono.yaml b/themes/dark-mono.yaml index a8fb2225..0ac0277c 100644 --- a/themes/dark-mono.yaml +++ b/themes/dark-mono.yaml @@ -2,12 +2,13 @@ name: "Dark Mono" source: marketplace_id: "leonardoleal202.dark-mono" version: "1.1.0" - installs: 6606 + installs: 6607 rating: 5 ratings: 1 author: "leonardoleal202" repo: null url: "https://marketplace.visualstudio.com/items?itemName=leonardoleal202.dark-mono" + formats: null colors: bg: "#181818" fg: "#D0D1D0" diff --git a/themes/dark-monokai.yaml b/themes/dark-monokai.yaml index 63961d48..1c60b995 100644 --- a/themes/dark-monokai.yaml +++ b/themes/dark-monokai.yaml @@ -8,6 +8,7 @@ source: author: "YuriyProgg" repo: "https://github.com/yuriyProgg/yuriyprogg-theme" url: "https://marketplace.visualstudio.com/items?itemName=yuriyProgg.yuriyprogg-theme" + formats: null colors: bg: "#2A2724" fg: "#B8B8B8" diff --git a/themes/dark-moonlight.yaml b/themes/dark-moonlight.yaml index d572fb54..b38f54e6 100644 --- a/themes/dark-moonlight.yaml +++ b/themes/dark-moonlight.yaml @@ -2,12 +2,13 @@ name: "Dark Moonlight" source: marketplace_id: "Monika-dev.dark-moonlight-theme" version: "1.0.6" - installs: 107 + installs: 109 rating: 0 ratings: 0 author: "Monika-dev" repo: "https://github.com/MonikaSt12/dark-moonlight-theme" url: "https://marketplace.visualstudio.com/items?itemName=Monika-dev.dark-moonlight-theme" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/dark-mosqueta.yaml b/themes/dark-mosqueta.yaml index 47977de3..a751e1f1 100644 --- a/themes/dark-mosqueta.yaml +++ b/themes/dark-mosqueta.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Paku.mosqueta" version: "1.0.0" installs: 141 + rating: 0 + ratings: 0 author: "Paku" repo: "https://github.com/pa-ku/mosqueta_vstheme" url: "https://marketplace.visualstudio.com/items?itemName=Paku.mosqueta" + formats: null colors: bg: "#232834" fg: "#CCCAC2" diff --git a/themes/dark-mute.yaml b/themes/dark-mute.yaml index 89908d79..af074ce2 100644 --- a/themes/dark-mute.yaml +++ b/themes/dark-mute.yaml @@ -8,6 +8,7 @@ source: author: "Eugene Ghanizadeh Khoub" repo: "https://github.com/loreanvictor/vscode-darkmute-theme" url: "https://marketplace.visualstudio.com/items?itemName=EugeneGhanizadehKhoub.dark-mute" + formats: null colors: bg: "#000000" fg: "#B3B3B3" diff --git a/themes/dark-nebula.yaml b/themes/dark-nebula.yaml deleted file mode 100644 index ee278bd1..00000000 --- a/themes/dark-nebula.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Nebula" -source: - marketplace_id: "KaydenNolin.darknebula" - version: "0.0.1" - installs: 669 - rating: 0 - ratings: 0 - author: "Nebula" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=KaydenNolin.darknebula" -colors: - bg: "#000000" - fg: "#C7C7C7" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 72.7 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/dark-neon-theme-sm.yaml b/themes/dark-neon-theme-sm.yaml deleted file mode 100644 index 209334b5..00000000 --- a/themes/dark-neon-theme-sm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Neon Theme(SM)" -source: - marketplace_id: "SIRILMP.dark-theme-sm" - version: "3.11.3" - installs: 21087 - rating: 5 - ratings: 2 - author: "SIRIL M P" - repo: "https://github.com/sirilmp/dark-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" -colors: - bg: "#041C32" - fg: "#D6DEEB" - black: "#041C32" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 249 - pair: null - contrast: - fg: 84.6 - black: 0 - red: 38.7 - green: 66.7 - yellow: 81.5 - blue: 55.3 - magenta: 53.2 - cyan: 59.1 - white: 106.3 - brightBlack: 15 - brightRed: 38.7 - brightGreen: 66.7 - brightYellow: 93.1 - brightBlue: 55.3 - brightMagenta: 53.2 - brightCyan: 73.4 - brightWhite: 106.3 diff --git a/themes/dark-night-pro.yaml b/themes/dark-night-pro.yaml index 6a1bebc9..71777c31 100644 --- a/themes/dark-night-pro.yaml +++ b/themes/dark-night-pro.yaml @@ -1,4 +1,4 @@ -name: "dark-night-pro" +name: "dark night pro" source: marketplace_id: "ErickSosa.dark-night-pro" version: "1.0.4" @@ -8,6 +8,7 @@ source: author: "Erick Sosa" repo: "https://github.com/buttercubz/dark-night-pro" url: "https://marketplace.visualstudio.com/items?itemName=ErickSosa.dark-night-pro" + formats: null colors: bg: "#181825" fg: "#FFFFFF" diff --git a/themes/dark-night.yaml b/themes/dark-night.yaml deleted file mode 100644 index fa2ad327..00000000 --- a/themes/dark-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Night" -source: - marketplace_id: "SumitSaha.learn-with-sumit-theme" - version: "12.1.0" - installs: 157511 - rating: 4.97 - ratings: 595 - author: "Learn with Sumit" - repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" -colors: - bg: "#000000" - fg: "#B0B6BD" - black: "#34393E" - red: "#E61F44" - green: "#62C073" - yellow: "#43AAF9" - blue: "#43AAF9" - magenta: "#F75F8F" - cyan: "#B267E6" - white: "#B0B6BD" - brightBlack: "#454D54" - brightRed: "#E61F44" - brightGreen: "#B7F0E5" - brightYellow: "#A7D1F5" - brightBlue: "#A7D1F5" - brightMagenta: "#F75F8F" - brightCyan: "#D7C9F0" - brightWhite: "#B0B6BD" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 62.5 - black: 0 - red: 32.4 - green: 57.9 - yellow: 53 - blue: 53 - magenta: 45.9 - cyan: 39.4 - white: 62.5 - brightBlack: 12.7 - brightRed: 32.4 - brightGreen: 90.8 - brightYellow: 75.8 - brightBlue: 75.8 - brightMagenta: 45.9 - brightCyan: 77.6 - brightWhite: 62.5 diff --git a/themes/dark-ocean.yaml b/themes/dark-ocean.yaml index c00435ae..eee741e2 100644 --- a/themes/dark-ocean.yaml +++ b/themes/dark-ocean.yaml @@ -8,6 +8,7 @@ source: author: "patricklopes33" repo: "https://github.com/patlopes/vscode-dark-ocean" url: "https://marketplace.visualstudio.com/items?itemName=patricklopes33.theme-dark-ocean" + formats: null colors: bg: "#100E16" fg: "#E1E1E6" diff --git a/themes/dark-ohnagi-2020.yaml b/themes/dark-ohnagi-2020.yaml deleted file mode 100644 index 072cf353..00000000 --- a/themes/dark-ohnagi-2020.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dark-ohnagi-2020" -source: - marketplace_id: "koprodev.devpro" - version: "1.1.2" - installs: 729 - rating: 0 - ratings: 0 - author: "koprodev" - repo: "https://github.com/koprodev/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=koprodev.devpro" -colors: - bg: "#2E323B" - fg: "#BBBBBB" - black: "#1E1E1E" - red: "#D16969" - green: "#608B4E" - yellow: "#D7BA7D" - blue: "#569CD6" - magenta: "#C586C0" - cyan: "#4EC9B0" - white: "#D4D4D4" - brightBlack: "#808080" - brightRed: "#D16969" - brightGreen: "#B5CEA8" - brightYellow: "#CE9178" - brightBlue: "#9CDCFE" - brightMagenta: "#C586C0" - brightCyan: "#4EC9B0" - brightWhite: "#808080" -meta: - mode: "dark" - accent: "orange" - hue: 266 - pair: null - contrast: - fg: 60.2 - black: 0 - red: 33.6 - green: 29.2 - yellow: 61.5 - blue: 40.4 - magenta: 42.7 - cyan: 57.4 - white: 74.9 - brightBlack: 29.2 - brightRed: 33.6 - brightGreen: 66.9 - brightYellow: 45 - brightBlue: 74.6 - brightMagenta: 42.7 - brightCyan: 57.4 - brightWhite: 29.2 diff --git a/themes/dark-orange-flat.yaml b/themes/dark-orange-flat.yaml deleted file mode 100644 index d79f948a..00000000 --- a/themes/dark-orange-flat.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Orange Flat" -source: - marketplace_id: "jannisberndt.dark-orange" - version: "0.4.0" - installs: 21524 - rating: 5 - ratings: 1 - author: "Jannis Berndt" - repo: "https://github.com/jb3rndt/dark-orange" - url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" -colors: - bg: "#24292E" - fg: "#E1E4E8" - black: "#3F4451" - red: "#E05561" - green: "#98C379" - yellow: "#F69D50" - blue: "#4AA5F0" - magenta: "#C792EA" - cyan: "#82AAFF" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "pink" - hue: 248 - pair: null - contrast: - fg: 86.7 - black: 0 - red: 34.2 - green: 59.8 - yellow: 57.2 - blue: 47.1 - magenta: 51.2 - cyan: 53.4 - white: 88.1 - brightBlack: 12.9 - brightRed: 43.6 - brightGreen: 74.3 - brightYellow: 58.7 - brightBlue: 61.2 - brightMagenta: 47.7 - brightCyan: 65.3 - brightWhite: 80.5 diff --git a/themes/dark-owl-darker-no-italics.yaml b/themes/dark-owl-darker-no-italics.yaml deleted file mode 100644 index 068bae61..00000000 --- a/themes/dark-owl-darker-no-italics.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Owl Darker (No Italics)" -source: - marketplace_id: "hmseeb.dark-owl" - version: "2.2.6" - installs: 4452 - rating: 5 - ratings: 2 - author: "hmseeb" - repo: "https://github.com/hmseeb/dark-owl" - url: "https://marketplace.visualstudio.com/items?itemName=hmseeb.dark-owl" -colors: - bg: "#181B28" - fg: "#D3D3D3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 274 - pair: null - contrast: - fg: 78.3 - black: 0 - red: 26.2 - green: 52.5 - yellow: 85.1 - blue: 26.9 - magenta: 29.2 - cyan: 47 - white: 89.5 - brightBlack: 21.5 - brightRed: 38 - brightGreen: 63 - brightYellow: 95.1 - brightBlue: 39.5 - brightMagenta: 44.8 - brightCyan: 54.9 - brightWhite: 89.5 diff --git a/themes/dark-owl-darker.yaml b/themes/dark-owl-darker.yaml deleted file mode 100644 index e74348a7..00000000 --- a/themes/dark-owl-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Owl Darker" -source: - marketplace_id: "hmseeb.dark-owl" - version: "2.2.6" - installs: 4452 - rating: 5 - ratings: 2 - author: "hmseeb" - repo: "https://github.com/hmseeb/dark-owl" - url: "https://marketplace.visualstudio.com/items?itemName=hmseeb.dark-owl" -colors: - bg: "#011627" - fg: "#D3D3D3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 244 - pair: null - contrast: - fg: 79 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.7 - blue: 27.5 - magenta: 29.8 - cyan: 47.6 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.7 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.5 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/dark-pastel-pink.yaml b/themes/dark-pastel-pink.yaml index b1fabb43..8ea42626 100644 --- a/themes/dark-pastel-pink.yaml +++ b/themes/dark-pastel-pink.yaml @@ -8,6 +8,7 @@ source: author: "Pand" repo: "https://github.com/pandirel/dark-pastels" url: "https://marketplace.visualstudio.com/items?itemName=Pand.dark-pastels" + formats: null colors: bg: "#232527" fg: "#E0E0E0" diff --git a/themes/dark-pastel.yaml b/themes/dark-pastel.yaml index 2d961ba1..ce3338eb 100644 --- a/themes/dark-pastel.yaml +++ b/themes/dark-pastel.yaml @@ -8,6 +8,7 @@ source: author: "Pand" repo: "https://github.com/pandirel/dark-pastels" url: "https://marketplace.visualstudio.com/items?itemName=Pand.dark-pastels" + formats: null colors: bg: "#232527" fg: "#F09595" diff --git a/themes/dark-petrol-dev.yaml b/themes/dark-petrol-dev.yaml deleted file mode 100644 index dda47211..00000000 --- a/themes/dark-petrol-dev.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Dark Petrol - Dev" -source: - marketplace_id: "ptrptrd.darkpetrol" - version: "0.1.3" - installs: 90 - author: "ptrptrd" - repo: "https://github.com/ptrptrd/dark-petrol-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=ptrptrd.darkpetrol" -colors: - bg: "#141D1B" - fg: "#C5C8C6" - black: "#2B3E3B" - red: "#A54242" - green: "#28786E" - yellow: "#EB983E" - blue: "#5F819D" - magenta: "#85678F" - cyan: "#5E8D87" - white: "#C5C8C6" - brightBlack: "#536F6B" - brightRed: "#CC6666" - brightGreen: "#47C6B5" - brightYellow: "#D29656" - brightBlue: "#5F819D" - brightMagenta: "#85678F" - brightCyan: "#8ABEB7" - brightWhite: "#CFE3E0" -meta: - mode: "dark" - accent: "yellow" - hue: 180 - pair: null - contrast: - fg: 71.4 - black: 0 - red: 20.7 - green: 24.5 - yellow: 55.4 - blue: 32 - magenta: 26.6 - cyan: 35.4 - white: 71.4 - brightBlack: 23.1 - brightRed: 35.9 - brightGreen: 60.1 - brightYellow: 50.7 - brightBlue: 32 - brightMagenta: 26.6 - brightCyan: 60.4 - brightWhite: 85.6 diff --git a/themes/dark-pie-deep-dark.yaml b/themes/dark-pie-deep-dark.yaml index 7dd3831e..0af45ced 100644 --- a/themes/dark-pie-deep-dark.yaml +++ b/themes/dark-pie-deep-dark.yaml @@ -8,6 +8,7 @@ source: author: "Abu Taher Muhammad" repo: "https://github.com/abutahermuhammad/Dark-Pie" url: "https://marketplace.visualstudio.com/items?itemName=AT-mAh.dark-pie" + formats: null colors: bg: "#1A222E" fg: "#ABB2BF" diff --git a/themes/dark-pink-theme.yaml b/themes/dark-pink-theme.yaml index 21c85a79..177b5799 100644 --- a/themes/dark-pink-theme.yaml +++ b/themes/dark-pink-theme.yaml @@ -8,6 +8,7 @@ source: author: "Martina Torcè" repo: "https://github.com/martina-torce/vscode-theme-dp" url: "https://marketplace.visualstudio.com/items?itemName=MartinaTorce.beautiful-theme" + formats: null colors: bg: "#471F29" fg: "#D4D4D4" diff --git a/themes/dark-plus-chocolate.yaml b/themes/dark-plus-chocolate.yaml index cb14b770..41517f0f 100644 --- a/themes/dark-plus-chocolate.yaml +++ b/themes/dark-plus-chocolate.yaml @@ -1,13 +1,14 @@ name: "Dark Plus Chocolate" source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 + marketplace_id: "moondevaa.DarkPlusChocolate" + version: "0.5.4" + installs: 6824 rating: 5 ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + author: "moondevaa" + repo: "https://github.com/AaBbdev29/Dark-Plus-Chocolate" + url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.DarkPlusChocolate" + formats: null colors: bg: "#160F0F" fg: "#F0CD9E" diff --git a/themes/dark-plus-moon-lite.yaml b/themes/dark-plus-moon-lite.yaml deleted file mode 100644 index 31d674d7..00000000 --- a/themes/dark-plus-moon-lite.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dark Plus moon lite" -source: - marketplace_id: "moondevaa.darkplusmoonlite" - version: "0.8.7" - installs: 15882 - rating: 5 - ratings: 1 - author: "moondevaa" - repo: "https://github.com/AaBbdev29/Darkplusmoonlite" - url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.darkplusmoonlite" -colors: - bg: "#171B22" - fg: "#C4B3E1" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 262 - pair: null - contrast: - fg: 64.1 - black: 0 - red: 26.3 - green: 52.6 - yellow: 85.2 - blue: 27 - magenta: 29.3 - cyan: 47.1 - white: 89.6 - brightBlack: 21.6 - brightRed: 38.1 - brightGreen: 63.1 - brightYellow: 95.2 - brightBlue: 39.6 - brightMagenta: 44.9 - brightCyan: 55 - brightWhite: 89.6 diff --git a/themes/dark-plus-oled-dim-100.yaml b/themes/dark-plus-oled-dim-100.yaml index 27fe7007..f25160f5 100644 --- a/themes/dark-plus-oled-dim-100.yaml +++ b/themes/dark-plus-oled-dim-100.yaml @@ -8,6 +8,7 @@ source: author: "Weiyu Wang" repo: "https://github.com/wwang1110/dark-plus-oled" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" + formats: null colors: bg: "#000000" fg: "#D4D4D4" diff --git a/themes/dark-plus-oled-dim-75.yaml b/themes/dark-plus-oled-dim-75.yaml index e95da0f2..3150565b 100644 --- a/themes/dark-plus-oled-dim-75.yaml +++ b/themes/dark-plus-oled-dim-75.yaml @@ -8,6 +8,7 @@ source: author: "Weiyu Wang" repo: "https://github.com/wwang1110/dark-plus-oled" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" + formats: null colors: bg: "#000000" fg: "#9F9F9F" diff --git a/themes/dark-plus-oled-dim-80.yaml b/themes/dark-plus-oled-dim-80.yaml index 45f5b244..c3c86bec 100644 --- a/themes/dark-plus-oled-dim-80.yaml +++ b/themes/dark-plus-oled-dim-80.yaml @@ -8,6 +8,7 @@ source: author: "Weiyu Wang" repo: "https://github.com/wwang1110/dark-plus-oled" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" + formats: null colors: bg: "#000000" fg: "#A9A9A9" diff --git a/themes/dark-plus-oled-dim-85.yaml b/themes/dark-plus-oled-dim-85.yaml index 5eeff841..c58ed830 100644 --- a/themes/dark-plus-oled-dim-85.yaml +++ b/themes/dark-plus-oled-dim-85.yaml @@ -8,6 +8,7 @@ source: author: "Weiyu Wang" repo: "https://github.com/wwang1110/dark-plus-oled" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" + formats: null colors: bg: "#000000" fg: "#B4B4B4" diff --git a/themes/dark-plus-oled-dim-90.yaml b/themes/dark-plus-oled-dim-90.yaml index 69a39b1c..cd38d09f 100644 --- a/themes/dark-plus-oled-dim-90.yaml +++ b/themes/dark-plus-oled-dim-90.yaml @@ -8,6 +8,7 @@ source: author: "Weiyu Wang" repo: "https://github.com/wwang1110/dark-plus-oled" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" + formats: null colors: bg: "#000000" fg: "#BEBEBE" diff --git a/themes/dark-plus-oled-dim-95.yaml b/themes/dark-plus-oled-dim-95.yaml index e84b981b..1b9cdbe9 100644 --- a/themes/dark-plus-oled-dim-95.yaml +++ b/themes/dark-plus-oled-dim-95.yaml @@ -8,6 +8,7 @@ source: author: "Weiyu Wang" repo: "https://github.com/wwang1110/dark-plus-oled" url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.dark-plus-oled" + formats: null colors: bg: "#000000" fg: "#C9C9C9" diff --git a/themes/dark-plus-syntax.yaml b/themes/dark-plus-syntax.yaml index 248541c6..0352401d 100644 --- a/themes/dark-plus-syntax.yaml +++ b/themes/dark-plus-syntax.yaml @@ -8,6 +8,7 @@ source: author: "dunstontc-org" repo: "https://github.com/dunstontc/dark-plus-syntax" url: "https://marketplace.visualstudio.com/items?itemName=dunstontc-org.dark-plus-syntax" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/dark-purple-flat.yaml b/themes/dark-purple-flat.yaml deleted file mode 100644 index 63b5a7e9..00000000 --- a/themes/dark-purple-flat.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Purple Flat" -source: - marketplace_id: "jannisberndt.dark-orange" - version: "0.4.0" - installs: 21524 - rating: 5 - ratings: 1 - author: "Jannis Berndt" - repo: "https://github.com/jb3rndt/dark-orange" - url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" -colors: - bg: "#1C1E26" - fg: "#E1E4E8" - black: "#3F4451" - red: "#E05561" - green: "#98C379" - yellow: "#F69D50" - blue: "#4AA5F0" - magenta: "#C792EA" - cyan: "#82AAFF" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "pink" - hue: 274 - pair: null - contrast: - fg: 88.3 - black: 8 - red: 35.8 - green: 61.4 - yellow: 58.9 - blue: 48.8 - magenta: 52.9 - cyan: 55 - white: 89.8 - brightBlack: 14.6 - brightRed: 45.2 - brightGreen: 75.9 - brightYellow: 60.4 - brightBlue: 62.9 - brightMagenta: 49.4 - brightCyan: 66.9 - brightWhite: 82.2 diff --git a/themes/dark-purple-fork.yaml b/themes/dark-purple-fork.yaml deleted file mode 100644 index 5d68508d..00000000 --- a/themes/dark-purple-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark/Purple - Fork" -source: - marketplace_id: "Daniel-caires.askfree-theme" - version: "0.0.1" - installs: 181 - rating: 0 - ratings: 0 - author: "Daniel-caires" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Daniel-caires.askfree-theme" -colors: - bg: "#000000" - fg: "#E1E1E0" - black: "#474747" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 88.5 - black: 10.9 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/dark-purple.yaml b/themes/dark-purple.yaml index e902bd65..5cbc4902 100644 --- a/themes/dark-purple.yaml +++ b/themes/dark-purple.yaml @@ -8,6 +8,7 @@ source: author: "Theme One" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ThemeOne.themeone" + formats: null colors: bg: "#001824" fg: "#E1E1E0" diff --git a/themes/dark-purpled-theme.yaml b/themes/dark-purpled-theme.yaml index 5e949e1e..19d5b4a0 100644 --- a/themes/dark-purpled-theme.yaml +++ b/themes/dark-purpled-theme.yaml @@ -8,6 +8,7 @@ source: author: "harryrardy" repo: null url: "https://marketplace.visualstudio.com/items?itemName=harryrardy.dark-purpled-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/dark-rainbow.yaml b/themes/dark-rainbow.yaml index 81b9e2ec..78438553 100644 --- a/themes/dark-rainbow.yaml +++ b/themes/dark-rainbow.yaml @@ -8,6 +8,7 @@ source: author: "Dark Rainbow" repo: "https://github.com/Gabrielvt14/dark-rainbow-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkRainbow.darkrainbow" + formats: null colors: bg: "#171616" fg: "#D4D4D4" diff --git a/themes/dark-reader-dark.yaml b/themes/dark-reader-dark.yaml deleted file mode 100644 index c1fd5987..00000000 --- a/themes/dark-reader-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Reader (Dark)" -source: - marketplace_id: "akil-s.dark-reader-dark" - version: "0.0.5" - installs: 1380 - rating: 0 - ratings: 0 - author: "akil-s" - repo: "https://github.com/Salah-Akil/illas-theme" - url: "https://marketplace.visualstudio.com/items?itemName=akil-s.dark-reader-dark" -colors: - bg: "#181A1B" - fg: "#D6D3CD" - black: "#232627" - red: "#BF0C0C" - green: "#AFD613" - yellow: "#F6AC00" - blue: "#00E4D1" - magenta: "#AA62C8" - cyan: "#1ABC9C" - white: "#51504E" - brightBlack: "#7F8C8D" - brightRed: "#CA1111" - brightGreen: "#7F990D" - brightYellow: "#FDBC4B" - brightBlue: "#00CBBA" - brightMagenta: "#8E44AD" - brightCyan: "#16A085" - brightWhite: "#82807D" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.7 - black: 0 - red: 21.1 - green: 71.8 - yellow: 64.3 - blue: 74.9 - magenta: 33.7 - cyan: 53.8 - white: 12.9 - brightBlack: 38 - brightRed: 23.6 - brightGreen: 40.8 - brightYellow: 71.9 - brightBlue: 61.8 - brightMagenta: 21.7 - brightCyan: 40.8 - brightWhite: 33.6 diff --git a/themes/dark-reader-light.yaml b/themes/dark-reader-light.yaml index 6be5a2b1..a3e22d95 100644 --- a/themes/dark-reader-light.yaml +++ b/themes/dark-reader-light.yaml @@ -8,6 +8,7 @@ source: author: "akil-s" repo: "https://github.com/Salah-Akil/darkreader-vscode-light" url: "https://marketplace.visualstudio.com/items?itemName=akil-s.dark-reader-light" + formats: null colors: bg: "#D9D7D4" fg: "#35393C" diff --git a/themes/dark-readin-5.yaml b/themes/dark-readin-5.yaml index af583781..a7aeca25 100644 --- a/themes/dark-readin-5.yaml +++ b/themes/dark-readin-5.yaml @@ -8,6 +8,7 @@ source: author: "GuilhermeFalco" repo: null url: "https://marketplace.visualstudio.com/items?itemName=GuilhermeFalco.Dark-Redin" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/dark-red-theme-vs-code.yaml b/themes/dark-red-theme-vs-code.yaml deleted file mode 100644 index 60705c40..00000000 --- a/themes/dark-red-theme-vs-code.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Red Theme VS-Code" -source: - marketplace_id: "vscode-dark-red-theme.vscode-dark-red-theme" - version: "0.30.0" - installs: 2742 - rating: 5 - ratings: 2 - author: "Kailash Shaw" - repo: "https://github.com/kailash-shaw/vscode-dark-red-theme" - url: "https://marketplace.visualstudio.com/items?itemName=vscode-dark-red-theme.vscode-dark-red-theme" -colors: - bg: "#1A1C21" - fg: "#CCCCCC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 268 - pair: null - contrast: - fg: 74.1 - black: 0 - red: 26.1 - green: 52.4 - yellow: 85 - blue: 26.9 - magenta: 29.2 - cyan: 47 - white: 89.4 - brightBlack: 21.5 - brightRed: 38 - brightGreen: 63 - brightYellow: 95.1 - brightBlue: 39.4 - brightMagenta: 44.8 - brightCyan: 54.8 - brightWhite: 89.4 diff --git a/themes/dark-red-theme.yaml b/themes/dark-red-theme.yaml deleted file mode 100644 index 26c04ed8..00000000 --- a/themes/dark-red-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Red Theme" -source: - marketplace_id: "Dark-Red-Theme.Red-Dark-Theme" - version: "0.0.5" - installs: 1222 - rating: 0 - ratings: 0 - author: "Dark-Red-Theme" - repo: "https://github.com/Dilson24/Dark-Red-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Dark-Red-Theme.Red-Dark-Theme" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 107.9 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 107.9 diff --git a/themes/dark-remix-nord.yaml b/themes/dark-remix-nord.yaml index fe5c10b4..5080927e 100644 --- a/themes/dark-remix-nord.yaml +++ b/themes/dark-remix-nord.yaml @@ -8,6 +8,7 @@ source: author: "daydev" repo: "https://github.com/daydev/vscode-dark-remix" url: "https://marketplace.visualstudio.com/items?itemName=daydev.dark-pastels-remix" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/dark-remix-one-dark.yaml b/themes/dark-remix-one-dark.yaml index 5cf6d2e0..81c025ff 100644 --- a/themes/dark-remix-one-dark.yaml +++ b/themes/dark-remix-one-dark.yaml @@ -8,6 +8,7 @@ source: author: "daydev" repo: "https://github.com/daydev/vscode-dark-remix" url: "https://marketplace.visualstudio.com/items?itemName=daydev.dark-pastels-remix" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/dark-sand-theme.yaml b/themes/dark-sand-theme.yaml index 8cfbc6fa..713b1aa6 100644 --- a/themes/dark-sand-theme.yaml +++ b/themes/dark-sand-theme.yaml @@ -8,6 +8,7 @@ source: author: "DarkMannn" repo: "https://github.com/DarkMannn/dark-sand-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.dark-sand-color-theme" + formats: null colors: bg: "#040404" fg: "#CDCDCD" diff --git a/themes/dark-sea-green.yaml b/themes/dark-sea-green.yaml index 1b83c42b..fa124aac 100644 --- a/themes/dark-sea-green.yaml +++ b/themes/dark-sea-green.yaml @@ -2,12 +2,13 @@ name: "Dark Sea Green" source: marketplace_id: "Dadoux.Dadoux" version: "0.0.3" - installs: 2684 + installs: 2730 rating: 0 ratings: 0 author: "Dadoux" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Dadoux.Dadoux" + formats: null colors: bg: "#1D262F" fg: "#FFFFFF" diff --git a/themes/dark-sky-fork-fork.yaml b/themes/dark-sky-fork-fork.yaml index 03a7dbb5..96e27f32 100644 --- a/themes/dark-sky-fork-fork.yaml +++ b/themes/dark-sky-fork-fork.yaml @@ -8,6 +8,7 @@ source: author: "HarryL" repo: "https://github.com/harrylynchh/my-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=HarryL.harry-dark-5" + formats: null colors: bg: "#080808" fg: "#D9D4D4" diff --git a/themes/dark-soft-theme-sm.yaml b/themes/dark-soft-theme-sm.yaml deleted file mode 100644 index 61340aaf..00000000 --- a/themes/dark-soft-theme-sm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Soft Theme(SM)" -source: - marketplace_id: "SIRILMP.dark-theme-sm" - version: "3.11.3" - installs: 21087 - rating: 5 - ratings: 2 - author: "SIRIL M P" - repo: "https://github.com/sirilmp/dark-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" -colors: - bg: "#212733" - fg: "#B5CDA3" - black: "#343D4A" - red: "#F07178" - green: "#AF7AB3" - yellow: "#92B4EC" - blue: "#36A3D9" - magenta: "#D4BFFF" - cyan: "#95E6CB" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#CBE645" - brightYellow: "#FFDF80" - brightBlue: "#6871FF" - brightMagenta: "#FF77FF" - brightCyan: "#A6FDE1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 68.6 - black: 0 - red: 44.3 - green: 37.6 - yellow: 57.8 - blue: 44.5 - magenta: 70.7 - cyan: 78.6 - white: 69.5 - brightBlack: 20.6 - brightRed: 44.3 - brightGreen: 80.7 - brightYellow: 85.6 - brightBlue: 32.4 - brightMagenta: 55.2 - brightCyan: 92.3 - brightWhite: 104.6 diff --git a/themes/dark-solarin-2021.yaml b/themes/dark-solarin-2021.yaml deleted file mode 100644 index c02fc922..00000000 --- a/themes/dark-solarin-2021.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dark-solarin-2021" -source: - marketplace_id: "kevboutin.dark-solarin-3" - version: "1.0.2" - installs: 37 - rating: 0 - ratings: 0 - author: "Kevin Boutin" - repo: "https://github.com/kevboutin/vscode-theme-dark-solarin-3" - url: "https://marketplace.visualstudio.com/items?itemName=kevboutin.dark-solarin-3" -colors: - bg: "#1E1E1E" - fg: "#CCCCCC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 73.8 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/dark-springbok.yaml b/themes/dark-springbok.yaml index be9707da..530d2de8 100644 --- a/themes/dark-springbok.yaml +++ b/themes/dark-springbok.yaml @@ -8,6 +8,7 @@ source: author: "chrp" repo: "https://github.com/christophehurpeau/springbok-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=chrp.springbok-theme" + formats: null colors: bg: "#080808" fg: "#E0E0E0" diff --git a/themes/dark-terminal-pro.yaml b/themes/dark-terminal-pro.yaml index eac5578e..070faf79 100644 --- a/themes/dark-terminal-pro.yaml +++ b/themes/dark-terminal-pro.yaml @@ -8,6 +8,7 @@ source: author: "theme-dark" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xnjf33ubs66n5cynckwm42bn6akv3z5er2a4zcrgtdlgc4cfi6qa.dark-theme-pro" + formats: null colors: bg: "#1E1E1E" fg: "#D7B1B6" diff --git a/themes/dark-theme-blue.yaml b/themes/dark-theme-blue.yaml index 4e73e67d..245c5e30 100644 --- a/themes/dark-theme-blue.yaml +++ b/themes/dark-theme-blue.yaml @@ -1,13 +1,14 @@ -name: "dark-theme-blue" +name: "Dark Theme Blue" source: marketplace_id: "gthbccnt.dark-theme-blue" version: "1.0.8" - installs: 277 + installs: 280 rating: 0 ratings: 0 author: "gthbccnt" repo: "https://github.com/gthbccnt/gthbccnt.dark-theme-blue" url: "https://marketplace.visualstudio.com/items?itemName=gthbccnt.dark-theme-blue" + formats: null colors: bg: "#1D1F21" fg: "#D4D4D4" diff --git a/themes/dark-theme-by-sanan.yaml b/themes/dark-theme-by-sanan.yaml index ec536b8d..fce4efb0 100644 --- a/themes/dark-theme-by-sanan.yaml +++ b/themes/dark-theme-by-sanan.yaml @@ -1,4 +1,4 @@ -name: "dark-theme-by-sanan" +name: "Dark Theme by Sanan" source: marketplace_id: "Sanan4li.dark-theme-by-sanan" version: "3.0.1" @@ -8,6 +8,7 @@ source: author: "Sanan Ali" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Sanan4li.dark-theme-by-sanan" + formats: null colors: bg: "#0D0D0C" fg: "#E2EAF0" diff --git a/themes/dark-theme-default-by-luisfelipe.yaml b/themes/dark-theme-default-by-luisfelipe.yaml deleted file mode 100644 index f7d0d5a5..00000000 --- a/themes/dark-theme-default-by-luisfelipe.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "dark-theme-default-by-luisfelipe" -source: - marketplace_id: "LuisFelipe.my-theme-luisfelipe" - version: "0.0.1" - installs: 32 - author: "Luis Felipe" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=LuisFelipe.my-theme-luisfelipe" -colors: - bg: "#27272A" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 77.2 - black: 0 - red: 24.4 - green: 50.7 - yellow: 83.3 - blue: 25.1 - magenta: 27.5 - cyan: 45.3 - white: 87.7 - brightBlack: 19.7 - brightRed: 36.3 - brightGreen: 61.2 - brightYellow: 93.3 - brightBlue: 37.7 - brightMagenta: 43.1 - brightCyan: 53.1 - brightWhite: 87.7 diff --git a/themes/dark-theme-new.yaml b/themes/dark-theme-new.yaml index 398d2900..1f0861d2 100644 --- a/themes/dark-theme-new.yaml +++ b/themes/dark-theme-new.yaml @@ -8,6 +8,7 @@ source: author: "Astray Youth" repo: "https://github.com/AstrayYouth/dark-theme-new" url: "https://marketplace.visualstudio.com/items?itemName=AstrayYouth.dark-theme-new" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/dark-theme-v2.yaml b/themes/dark-theme-v2.yaml index b2ffed92..3d72fbef 100644 --- a/themes/dark-theme-v2.yaml +++ b/themes/dark-theme-v2.yaml @@ -8,6 +8,7 @@ source: author: "YuriyProgg" repo: "https://github.com/yuriyProgg/yuriyprogg-theme" url: "https://marketplace.visualstudio.com/items?itemName=yuriyProgg.yuriyprogg-theme" + formats: null colors: bg: "#1B1B1B" fg: "#41BCC2" diff --git a/themes/dark-theme.yaml b/themes/dark-theme.yaml index 0521f488..5c3be40d 100644 --- a/themes/dark-theme.yaml +++ b/themes/dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Marcelo Soares" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MarceloSoares.marcelo" + formats: null colors: bg: "#000000" fg: "#E1E1E1" diff --git a/themes/dark-v3.yaml b/themes/dark-v3.yaml index ad30b97a..0f4cd8de 100644 --- a/themes/dark-v3.yaml +++ b/themes/dark-v3.yaml @@ -8,6 +8,7 @@ source: author: "Jan-Philipp Diesler" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Jan-PhilippDiesler.darkV3" + formats: null colors: bg: "#1F1F1F" fg: "#D4D4D4" diff --git a/themes/dark-vibes.yaml b/themes/dark-vibes.yaml index 3be3481c..37bd6dfc 100644 --- a/themes/dark-vibes.yaml +++ b/themes/dark-vibes.yaml @@ -8,6 +8,7 @@ source: author: "Rishab Kumar" repo: "https://github.com/rishabkumar7/dark-vibes" url: "https://marketplace.visualstudio.com/items?itemName=rishabkumar.dark-vibes-theme" + formats: null colors: bg: "#1E2433" fg: "#D4D4D4" diff --git a/themes/dark-visual-studio.yaml b/themes/dark-visual-studio.yaml index ccf931a0..8b393ef3 100644 --- a/themes/dark-visual-studio.yaml +++ b/themes/dark-visual-studio.yaml @@ -8,6 +8,7 @@ source: author: "YuriyProgg" repo: "https://github.com/yuriyProgg/yuriyprogg-theme" url: "https://marketplace.visualstudio.com/items?itemName=yuriyProgg.yuriyprogg-theme" + formats: null colors: bg: "#1E1E1E" fg: "#ABABAB" diff --git a/themes/dark-with-blue.yaml b/themes/dark-with-blue.yaml index 8913d1b6..558a9168 100644 --- a/themes/dark-with-blue.yaml +++ b/themes/dark-with-blue.yaml @@ -1,11 +1,14 @@ -name: "dark-with-blue" +name: "Dark with blue" source: marketplace_id: "nicolaslimaaaa.dark-with-blue" version: "0.0.1" installs: 118 + rating: 0 + ratings: 0 author: "nicolaslimaaaa" repo: null url: "https://marketplace.visualstudio.com/items?itemName=nicolaslimaaaa.dark-with-blue" + formats: null colors: bg: "#000203" fg: "#0EA5E9" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: 219 + pair: null contrast: fg: 49 black: 15.9 diff --git a/themes/dark-wolf.yaml b/themes/dark-wolf.yaml index d39cf9c4..412af149 100644 --- a/themes/dark-wolf.yaml +++ b/themes/dark-wolf.yaml @@ -8,6 +8,7 @@ source: author: "Thiago Saytson" repo: "https://github.com/TSaytson/Dark-Wolf-theme" url: "https://marketplace.visualstudio.com/items?itemName=ThiagoSaytson.dark-wolf" + formats: null colors: bg: "#15151C" fg: "#D4D4D4" diff --git a/themes/dark-yellow-flat.yaml b/themes/dark-yellow-flat.yaml deleted file mode 100644 index ef607969..00000000 --- a/themes/dark-yellow-flat.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dark Yellow Flat" -source: - marketplace_id: "jannisberndt.dark-orange" - version: "0.4.0" - installs: 21524 - rating: 5 - ratings: 1 - author: "Jannis Berndt" - repo: "https://github.com/jb3rndt/dark-orange" - url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" -colors: - bg: "#23272E" - fg: "#E1E4E8" - black: "#3F4451" - red: "#E05561" - green: "#98C379" - yellow: "#F69D50" - blue: "#4AA5F0" - magenta: "#C792EA" - cyan: "#82AAFF" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "pink" - hue: 262 - pair: null - contrast: - fg: 87 - black: 0 - red: 34.5 - green: 60.1 - yellow: 57.5 - blue: 47.4 - magenta: 51.5 - cyan: 53.7 - white: 88.4 - brightBlack: 13.2 - brightRed: 43.9 - brightGreen: 74.6 - brightYellow: 59 - brightBlue: 61.5 - brightMagenta: 48 - brightCyan: 65.6 - brightWhite: 80.8 diff --git a/themes/dark.yaml b/themes/dark.yaml index f2fb2654..4cfa4152 100644 --- a/themes/dark.yaml +++ b/themes/dark.yaml @@ -1,52 +1,53 @@ -name: "_Dark" +name: "/dark" source: - marketplace_id: "Cleo.cleo" - version: "0.1.7" - installs: 1576 - rating: 3.25 - ratings: 4 - author: "Cleo" - repo: "https://github.com/FabioKaelin/cleo-vscode-extension" - url: "https://marketplace.visualstudio.com/items?itemName=Cleo.cleo" + marketplace_id: "Sukadia.sukadia-dev-dark" + version: "1.0.6" + installs: 1608 + rating: 5 + ratings: 1 + author: "Sukadia" + repo: "https://github.com/Sukadia/sukadia.dev-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Sukadia.sukadia-dev-dark" + formats: null colors: - bg: "#FFFFFF" - fg: "#FFFFFF" - black: "#FFFFFF" - red: "#FFFFFF" - green: "#FFFFFF" - yellow: "#FFFFFF" - blue: "#FFFFFF" - magenta: "#FFFFFF" - cyan: "#FFFFFF" - white: "#FFFFFF" - brightBlack: "#FFFFFF" - brightRed: "#FFFFFF" - brightGreen: "#FFFFFF" - brightYellow: "#FFFFFF" - brightBlue: "#FFFFFF" - brightMagenta: "#FFFFFF" - brightCyan: "#FFFFFF" - brightWhite: "#FFFFFF" + bg: "#1D1F21" + fg: "#DDDDDD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: - mode: "light" - accent: "yellow" + mode: "dark" + accent: "pink" hue: null pair: null contrast: - fg: 0 + fg: 84.1 black: 0 - red: 0 - green: 0 - yellow: 0 - blue: 0 - magenta: 0 - cyan: 0 - white: 0 - brightBlack: 0 - brightRed: 0 - brightGreen: 0 - brightYellow: 0 - brightBlue: 0 - brightMagenta: 0 - brightCyan: 0 - brightWhite: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.4 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/darka.yaml b/themes/darka.yaml deleted file mode 100644 index d8f3089b..00000000 --- a/themes/darka.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Darka" -source: - marketplace_id: "ManuCodes.bits" - version: "1.0.3" - installs: 1500 - rating: 5 - ratings: 1 - author: "Manu Codes" - repo: "https://github.com/manudevcode/bits-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=ManuCodes.bits" -colors: - bg: "#1F222E" - fg: "#F2F3F7" - black: "#283034" - red: "#FF2E97" - green: "#3ADA5D" - yellow: "#FDE74E" - blue: "#42C6FF" - magenta: "#FF2AFC" - cyan: "#42C6FF" - white: "#D9E0E9" - brightBlack: "#435056" - brightRed: "#FF2E97" - brightGreen: "#ADD0E5" - brightYellow: "#FDE74E" - brightBlue: "#42C6FF" - brightMagenta: "#FF2AFC" - brightCyan: "#42C6FF" - brightWhite: "#F4F6F9" -meta: - mode: "dark" - accent: "pink" - hue: 274 - pair: null - contrast: - fg: 97.5 - black: 0 - red: 39 - green: 65.9 - yellow: 88.9 - blue: 62.8 - magenta: 44.6 - cyan: 62.8 - white: 84.9 - brightBlack: 10.9 - brightRed: 39 - brightGreen: 72.5 - brightYellow: 88.9 - brightBlue: 62.8 - brightMagenta: 44.6 - brightCyan: 62.8 - brightWhite: 99.3 diff --git a/themes/darkalchemy-basic.yaml b/themes/darkalchemy-basic.yaml deleted file mode 100644 index 0852726d..00000000 --- a/themes/darkalchemy-basic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DarkAlchemy-Basic" -source: - marketplace_id: "DarkAlchemy.darkalchemy" - version: "0.0.3" - installs: 576 - rating: 5 - ratings: 2 - author: "Dark Alchemy" - repo: "https://github.com/dark-alchemy/darkalchemy-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=DarkAlchemy.darkalchemy" -colors: - bg: "#151515" - fg: "#FFFFFF" - black: "#000000" - red: "#DA8548" - green: "#23D18B" - yellow: "#ECBE7B" - blue: "#00BFF8" - magenta: "#BC3FBC" - cyan: "#46D9FF" - white: "#E5E5E5" - brightBlack: "#CFCFCF" - brightRed: "#DA8548" - brightGreen: "#23D18B" - brightYellow: "#ECBE7B" - brightBlue: "#00BFF8" - brightMagenta: "#D670D6" - brightCyan: "#46D9FF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.1 - black: 0 - red: 47 - green: 63.7 - yellow: 71 - blue: 60.1 - magenta: 29.9 - cyan: 73.3 - white: 90.2 - brightBlack: 76.6 - brightRed: 47 - brightGreen: 63.7 - brightYellow: 71 - brightBlue: 60.1 - brightMagenta: 45.6 - brightCyan: 73.3 - brightWhite: 90.2 diff --git a/themes/darkalicious.yaml b/themes/darkalicious.yaml index f86b29f5..190ef869 100644 --- a/themes/darkalicious.yaml +++ b/themes/darkalicious.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "shanedonburke.darkalicious-theme" version: "0.0.4" installs: 128 + rating: 0 + ratings: 0 author: "shanedonburke" repo: "https://github.com/shanedonburke/darkalicious-theme" url: "https://marketplace.visualstudio.com/items?itemName=shanedonburke.darkalicious-theme" + formats: null colors: bg: "#151F2C" fg: "#D4D4D4" diff --git a/themes/darkasp.yaml b/themes/darkasp.yaml deleted file mode 100644 index 0dd6ceb6..00000000 --- a/themes/darkasp.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DarkASP" -source: - marketplace_id: "aspeditor.asp-language-editor-dlv2" - version: "0.1.5" - installs: 2189 - rating: 5 - ratings: 1 - author: "aspeditor" - repo: "https://github.com/pierpaolosestito-dev/ASPEditorPlugin" - url: "https://marketplace.visualstudio.com/items?itemName=aspeditor.asp-language-editor-dlv2" -colors: - bg: "#1B1D1E" - fg: "#F8F8F2" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#3A7986" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 101.3 - black: 0 - red: 23.9 - green: 52.4 - yellow: 57 - blue: 34 - magenta: 31.5 - cyan: 49.8 - white: 87.8 - brightBlack: 21.4 - brightRed: 36.6 - brightGreen: 76.3 - brightYellow: 83.2 - brightBlue: 49.2 - brightMagenta: 45.9 - brightCyan: 26.1 - brightWhite: 101.3 diff --git a/themes/darkblue-theme-official.yaml b/themes/darkblue-theme-official.yaml index 72c5edd1..dd111269 100644 --- a/themes/darkblue-theme-official.yaml +++ b/themes/darkblue-theme-official.yaml @@ -6,6 +6,7 @@ source: author: "sanferreira" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sanferreira.sanferreira-theme-dark-blue" + formats: null colors: bg: "#0C202A" fg: "#CF7A40" diff --git a/themes/darkblue-theme.yaml b/themes/darkblue-theme.yaml deleted file mode 100644 index bd9f90f4..00000000 --- a/themes/darkblue-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "darkblue-theme" -source: - marketplace_id: "guicastro13.onebitcode-theme" - version: "0.0.5" - installs: 2293 - rating: 5 - ratings: 2 - author: "guicastro13" - repo: "https://github.com/guicastro13/onebitcode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" -colors: - bg: "#2E3440" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 74.4 - black: 0 - red: 21.6 - green: 47.9 - yellow: 80.5 - blue: 22.4 - magenta: 24.7 - cyan: 42.5 - white: 84.9 - brightBlack: 17 - brightRed: 33.5 - brightGreen: 58.5 - brightYellow: 90.6 - brightBlue: 34.9 - brightMagenta: 40.3 - brightCyan: 50.3 - brightWhite: 84.9 diff --git a/themes/darkbubble.yaml b/themes/darkbubble.yaml index ede3ccdc..88e39131 100644 --- a/themes/darkbubble.yaml +++ b/themes/darkbubble.yaml @@ -8,6 +8,7 @@ source: author: "rwbyc" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rwbyc.darkbubble" + formats: null colors: bg: "#19191B" fg: "#EAC0A3" diff --git a/themes/darkbutter.yaml b/themes/darkbutter.yaml deleted file mode 100644 index 843dd061..00000000 --- a/themes/darkbutter.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DarkButter" -source: - marketplace_id: "SaiRohith.DarkButter" - version: "0.0.8" - installs: 2977 - rating: 5 - ratings: 2 - author: "SaiRohith" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=SaiRohith.DarkButter" -colors: - bg: "#000000" - fg: "#BAC6DB" - black: "#01060E" - red: "#EA6C73" - green: "#6A62B3" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#9B94FA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#5A4CD9" - brightYellow: "#5754FF" - brightBlue: "#69C8FF" - brightMagenta: "#A099FF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 71.6 - black: 0 - red: 45.1 - green: 25.9 - yellow: 67.6 - blue: 61.6 - magenta: 50.9 - cyan: 78.9 - white: 72.7 - brightBlack: 23.9 - brightRed: 47.6 - brightGreen: 22.2 - brightYellow: 27.3 - brightBlue: 67.8 - brightMagenta: 53.5 - brightCyan: 81.9 - brightWhite: 107.9 diff --git a/themes/darkdarkdark.yaml b/themes/darkdarkdark.yaml index 4fca814d..0c8b3596 100644 --- a/themes/darkdarkdark.yaml +++ b/themes/darkdarkdark.yaml @@ -8,6 +8,7 @@ source: author: "nicolelele" repo: "https://github.com/npcnicolelele/darkdarkdark-theme" url: "https://marketplace.visualstudio.com/items?itemName=nicolelele.darkdarkdark" + formats: null colors: bg: "#1A1A2A" fg: "#D3D3D3" diff --git a/themes/darker-b.yaml b/themes/darker-b.yaml index 2635a0cc..2f8345d7 100644 --- a/themes/darker-b.yaml +++ b/themes/darker-b.yaml @@ -8,6 +8,7 @@ source: author: "Joao Pedro Lima Pereira" repo: "https://github.com/JoaoPDeveloper/darkerstHours-theme" url: "https://marketplace.visualstudio.com/items?itemName=zarkooi.darker-b" + formats: null colors: bg: "#151432" fg: "#00FF28" diff --git a/themes/darker-monokai-gold.yaml b/themes/darker-monokai-gold.yaml index 90873e9a..82376ce8 100644 --- a/themes/darker-monokai-gold.yaml +++ b/themes/darker-monokai-gold.yaml @@ -8,6 +8,7 @@ source: author: "kylesgl" repo: "https://github.com/kylesgl/dark-monokai" url: "https://marketplace.visualstudio.com/items?itemName=kylesgl.dark-monokai" + formats: null colors: bg: "#1B1B1B" fg: "#CECECE" diff --git a/themes/darker-solarized.yaml b/themes/darker-solarized.yaml index 5e278a56..46f57f4a 100644 --- a/themes/darker-solarized.yaml +++ b/themes/darker-solarized.yaml @@ -8,6 +8,8 @@ source: author: "SokLay Sam" repo: "https://github.com/soklaysam/vscode-darker-solarized" url: "https://marketplace.visualstudio.com/items?itemName=soklaysam.darker-solarized" + formats: + zed: "https://raw.githubusercontent.com/soklaysam/vscode-darker-solarized/main/themes/darker-solarized-color-theme.json" colors: bg: "#002028" fg: "#839496" diff --git a/themes/darker-than-black.yaml b/themes/darker-than-black.yaml deleted file mode 100644 index ada802a4..00000000 --- a/themes/darker-than-black.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Darker Than Black" -source: - marketplace_id: "kgnio.sprinklepack" - version: "0.2.5" - installs: 81 - rating: 5 - ratings: 2 - author: "Kagan Mamak" - repo: "https://github.com/kgnio/sprinklepack" - url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" -colors: - bg: "#0B0C0F" - fg: "#E0E0E0" - black: "#2E3440" - red: "#FF6B6B" - green: "#50FA7B" - yellow: "#FFD700" - blue: "#5FD4FB" - magenta: "#D291FF" - cyan: "#8BE9FD" - white: "#E0E0E0" - brightBlack: "#4C566A" - brightRed: "#FF5F5F" - brightGreen: "#B3E85F" - brightYellow: "#FFFF99" - brightBlue: "#81A1C1" - brightMagenta: "#C084FC" - brightCyan: "#9AEDFE" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 87.7 - black: 0 - red: 48.9 - green: 85.7 - yellow: 84 - blue: 72.2 - magenta: 57.3 - cyan: 84.7 - white: 87.7 - brightBlack: 16.2 - brightRed: 46.2 - brightGreen: 82.4 - brightYellow: 104 - brightBlue: 49.4 - brightMagenta: 50.5 - brightCyan: 87.8 - brightWhite: 97 diff --git a/themes/darkest.yaml b/themes/darkest.yaml deleted file mode 100644 index 267ba11f..00000000 --- a/themes/darkest.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "darkEST" -source: - marketplace_id: "RakeshKannaS.darkest-theme" - version: "0.0.2" - installs: 441 - rating: 0 - ratings: 0 - author: "Rakesh Kanna S" - repo: "https://github.com/rakeshkanna-rk/darkest" - url: "https://marketplace.visualstudio.com/items?itemName=RakeshKannaS.darkest-theme" -colors: - bg: "#010101" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.5 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/darkestside-theme.yaml b/themes/darkestside-theme.yaml index 80429d35..d0e51c04 100644 --- a/themes/darkestside-theme.yaml +++ b/themes/darkestside-theme.yaml @@ -1,4 +1,4 @@ -name: "DarkestSide theme" +name: "Darkestside Theme" source: marketplace_id: "YousefAyash.DarkestSide" version: "1.0.2" @@ -8,6 +8,7 @@ source: author: "Yousef Ayash" repo: "https://github.com/Yousef-Ayash/Darkestside" url: "https://marketplace.visualstudio.com/items?itemName=YousefAyash.DarkestSide" + formats: null colors: bg: "#0A090D" fg: "#E3F3FF" diff --git a/themes/darkfontenelestheme.yaml b/themes/darkfontenelestheme.yaml deleted file mode 100644 index 0bde81ac..00000000 --- a/themes/darkfontenelestheme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DarkFontenelesTheme" -source: - marketplace_id: "HenriqueDark.henriquedark" - version: "0.0.1" - installs: 100 - rating: 0 - ratings: 0 - author: "HenriqueDark" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HenriqueDark.henriquedark" -colors: - bg: "#1E1E1E" - fg: "#CDCDCD" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 74.4 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/darkfusion.yaml b/themes/darkfusion.yaml index 5a70005f..c51cafbe 100644 --- a/themes/darkfusion.yaml +++ b/themes/darkfusion.yaml @@ -8,6 +8,7 @@ source: author: "Sahil Mondal" repo: "https://github.com/sahilmondal/darkFusion-vscode" url: "https://marketplace.visualstudio.com/items?itemName=sahilmondal.dark-fusion-theme" + formats: null colors: bg: "#100F2E" fg: "#A2AABC" diff --git a/themes/darkgreen.yaml b/themes/darkgreen.yaml index 72d00b47..1aeee4e9 100644 --- a/themes/darkgreen.yaml +++ b/themes/darkgreen.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Tkl02.darkgreen" version: "0.0.3" installs: 28 + rating: 0 + ratings: 0 author: "Tkl02" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Tkl02.darkgreen" + formats: null colors: bg: "#000000" fg: "#00FFFF" diff --git a/themes/darkheist.yaml b/themes/darkheist.yaml index 41c15282..b9f6d82b 100644 --- a/themes/darkheist.yaml +++ b/themes/darkheist.yaml @@ -1,4 +1,4 @@ -name: "DarkHeist" +name: "DarkHeist " source: marketplace_id: "EliHeist.darkheist" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Eli Heist" repo: null url: "https://marketplace.visualstudio.com/items?itemName=EliHeist.darkheist" + formats: null colors: bg: "#0D0008" fg: "#D4D4D4" diff --git a/themes/darkish.yaml b/themes/darkish.yaml index cb62a46d..c3244d01 100644 --- a/themes/darkish.yaml +++ b/themes/darkish.yaml @@ -8,6 +8,8 @@ source: author: "Sylvio Randrianarisata" repo: "https://github.com/Microsoft/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=SylvioRandrianarisata.darkish-gray" + formats: + sublime: "https://raw.githubusercontent.com/Microsoft/vscode-themes/main/1337/themes/1337.tmTheme" colors: bg: "#1B1B1B" fg: "#D9D9D9" diff --git a/themes/darkit-astral.yaml b/themes/darkit-astral.yaml deleted file mode 100644 index 4aa3ea1a..00000000 --- a/themes/darkit-astral.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Darkit Astral" -source: - marketplace_id: "mrheio.darkit" - version: "27.0.1" - installs: 310 - rating: 5 - ratings: 1 - author: "mrheio" - repo: "https://github.com/mrheio/vsc-theme-darkit" - url: "https://marketplace.visualstudio.com/items?itemName=mrheio.darkit" -colors: - bg: "#24283B" - fg: "#A9B1D6" - black: "#414868" - red: "#F7768E" - green: "#73DACA" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#A7B0D4" - brightBlack: "#414868" - brightRed: "#F7768E" - brightGreen: "#73DACA" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#A9B1D6" -meta: - mode: "dark" - accent: "red" - hue: 275 - pair: null - contrast: - fg: 57.2 - black: 8.2 - red: 47.3 - green: 70.1 - yellow: 60.1 - blue: 49 - magenta: 52.9 - cyan: 68.4 - white: 56.5 - brightBlack: 8.2 - brightRed: 47.3 - brightGreen: 70.1 - brightYellow: 60.1 - brightBlue: 49 - brightMagenta: 52.9 - brightCyan: 68.4 - brightWhite: 57.2 diff --git a/themes/darkj.yaml b/themes/darkj.yaml index 0313670c..37ab00c1 100644 --- a/themes/darkj.yaml +++ b/themes/darkj.yaml @@ -8,6 +8,7 @@ source: author: "Diego-gh" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Diego-gh.darkj" + formats: null colors: bg: "#1E1E1E" fg: "#CCCCCC" diff --git a/themes/darkknight.yaml b/themes/darkknight.yaml index e639ff1b..9097996a 100644 --- a/themes/darkknight.yaml +++ b/themes/darkknight.yaml @@ -8,6 +8,7 @@ source: author: "PyJOJO" repo: "https://github.com/SakuraMYK/PyCodeJOJO" url: "https://marketplace.visualstudio.com/items?itemName=PyJOJO.pycodejojo" + formats: null colors: bg: "#151515" fg: "#FFFFFF" diff --git a/themes/darklimeteal.yaml b/themes/darklimeteal.yaml index 96c0739f..943cdb97 100644 --- a/themes/darklimeteal.yaml +++ b/themes/darklimeteal.yaml @@ -8,6 +8,7 @@ source: author: "ReubenMarcBraganca" repo: "https://github.com/ReubenMarc/theme" url: "https://marketplace.visualstudio.com/items?itemName=ReubenMarcBraganca.darklimeteal" + formats: null colors: bg: "#1B282E" fg: "#69D93A" diff --git a/themes/darklover.yaml b/themes/darklover.yaml index 0e3a87ae..4666df85 100644 --- a/themes/darklover.yaml +++ b/themes/darklover.yaml @@ -8,6 +8,7 @@ source: author: "rayan2228" repo: "https://github.com/rayan2228/darkLover" url: "https://marketplace.visualstudio.com/items?itemName=rayan2228.darkLover" + formats: null colors: bg: "#020311" fg: "#EAECFF" diff --git a/themes/darkly-theme.yaml b/themes/darkly-theme.yaml index f82a97a1..da41dec9 100644 --- a/themes/darkly-theme.yaml +++ b/themes/darkly-theme.yaml @@ -8,6 +8,7 @@ source: author: "Youssef Moussaoui" repo: "https://github.com/youssefm/darkly-theme" url: "https://marketplace.visualstudio.com/items?itemName=YoussefMoussaoui.darkly" + formats: null colors: bg: "#1D1F21" fg: "#CCCCCC" diff --git a/themes/darkly.yaml b/themes/darkly.yaml index 5ff78b4f..f2eac817 100644 --- a/themes/darkly.yaml +++ b/themes/darkly.yaml @@ -8,6 +8,7 @@ source: author: "Ayush Lal" repo: "https://github.com/ayush-lal/darkly-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=AyushL.darkly-theme" + formats: null colors: bg: "#212337" fg: "#AAB3E5" diff --git a/themes/darkness-color-theme.yaml b/themes/darkness-color-theme.yaml index 98dca309..103bb741 100644 --- a/themes/darkness-color-theme.yaml +++ b/themes/darkness-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "digitalspacestudio" repo: "https://github.com/digitalspacestdio/vscode-darkness-theme" url: "https://marketplace.visualstudio.com/items?itemName=digitalspacestudio.digitalspacestdio-darkness" + formats: null colors: bg: "#1A1919" fg: "#FFFFFF" diff --git a/themes/darkness-of-my-soul.yaml b/themes/darkness-of-my-soul.yaml index ea742e14..92710585 100644 --- a/themes/darkness-of-my-soul.yaml +++ b/themes/darkness-of-my-soul.yaml @@ -8,6 +8,7 @@ source: author: "rnmazouz" repo: "https://github.com/rayan-mazouz/darkness_of_my_soul" url: "https://marketplace.visualstudio.com/items?itemName=rnmazouz.darkness-of-my-soul" + formats: null colors: bg: "#222630" fg: "#E5D0E3" diff --git a/themes/darkoo.yaml b/themes/darkoo.yaml index c32a2980..7ec5c10b 100644 --- a/themes/darkoo.yaml +++ b/themes/darkoo.yaml @@ -8,6 +8,7 @@ source: author: "bambooyuh" repo: "https://github.com/roachj9/darkoo" url: "https://marketplace.visualstudio.com/items?itemName=bambooyuh.darkoo" + formats: null colors: bg: "#212733" fg: "#D9D7CE" diff --git a/themes/darkorange.yaml b/themes/darkorange.yaml index de40554a..e39f117a 100644 --- a/themes/darkorange.yaml +++ b/themes/darkorange.yaml @@ -1,4 +1,4 @@ -name: "darkOrange" +name: "DarkOrange" source: marketplace_id: "BasitTahir.DarkOrange" version: "1.0.1" @@ -8,6 +8,7 @@ source: author: "Abdul Basit" repo: null url: "https://marketplace.visualstudio.com/items?itemName=BasitTahir.DarkOrange" + formats: null colors: bg: "#DA8013" fg: "#000000" diff --git a/themes/darkpinkpro.yaml b/themes/darkpinkpro.yaml deleted file mode 100644 index a7ece380..00000000 --- a/themes/darkpinkpro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DarkPinkPro" -source: - marketplace_id: "AhmedSaid.darkpinkpro" - version: "0.3.4" - installs: 12754 - rating: 4.9 - ratings: 10 - author: "Ahmed Said" - repo: "https://github.com/AhmeddSaid/darkpinkpro" - url: "https://marketplace.visualstudio.com/items?itemName=AhmedSaid.darkpinkpro" -colors: - bg: "#181818" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106.8 - black: 0 - red: 26.6 - green: 52.9 - yellow: 85.5 - blue: 27.3 - magenta: 29.6 - cyan: 47.4 - white: 89.9 - brightBlack: 21.9 - brightRed: 38.5 - brightGreen: 63.4 - brightYellow: 95.5 - brightBlue: 39.9 - brightMagenta: 45.3 - brightCyan: 55.3 - brightWhite: 89.9 diff --git a/themes/darkplastic.yaml b/themes/darkplastic.yaml index c91cc5bd..3aff2b48 100644 --- a/themes/darkplastic.yaml +++ b/themes/darkplastic.yaml @@ -8,6 +8,7 @@ source: author: "Stefan Remberg" repo: "https://github.com/remberg/DarkPlastik-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=StefanRemberg.darkplastic-vc" + formats: null colors: bg: "#0C0F15" fg: "#A3BFD7" diff --git a/themes/darkpurple.yaml b/themes/darkpurple.yaml deleted file mode 100644 index 3447237e..00000000 --- a/themes/darkpurple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DarkPurple" -source: - marketplace_id: "bakrimoharram.purple-dark-theme" - version: "0.0.4" - installs: 150 - rating: 0 - ratings: 0 - author: "bakrimoharram" - repo: "https://github.com/bakrimoharram/darkpurple-theme" - url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.purple-dark-theme" -colors: - bg: "#1D001B" - fg: "#D1C7D3" - black: "#6F316B" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#BCB2BB" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 331 - pair: null - contrast: - fg: 74 - black: 11.5 - red: 27.2 - green: 53.5 - yellow: 86.1 - blue: 27.9 - magenta: 30.3 - cyan: 48.1 - white: 61.8 - brightBlack: 22.5 - brightRed: 39.1 - brightGreen: 64 - brightYellow: 96.1 - brightBlue: 40.5 - brightMagenta: 45.9 - brightCyan: 55.9 - brightWhite: 90.5 diff --git a/themes/darkquark.yaml b/themes/darkquark.yaml index 55a8224f..563e9e68 100644 --- a/themes/darkquark.yaml +++ b/themes/darkquark.yaml @@ -8,6 +8,7 @@ source: author: "Satyam Rana" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SatyamRana.the-prime-themes" + formats: null colors: bg: "#0D1117" fg: "#F0F6FC" diff --git a/themes/darkr-green.yaml b/themes/darkr-green.yaml index 3f56881f..7f053d86 100644 --- a/themes/darkr-green.yaml +++ b/themes/darkr-green.yaml @@ -8,6 +8,7 @@ source: author: "Ryan Craig Martin" repo: "https://github.com/ryancraigmartin/Darkr" url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" + formats: null colors: bg: "#1E2229" fg: "#FFFFFF" diff --git a/themes/darkred.yaml b/themes/darkred.yaml index f4b0e967..c29748b4 100644 --- a/themes/darkred.yaml +++ b/themes/darkred.yaml @@ -8,6 +8,7 @@ source: author: "xXkkmXx" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xXkkmXx.DarkPinkRed" + formats: null colors: bg: "#1F1B1B" fg: "#FFC9C9" diff --git a/themes/darkroom.yaml b/themes/darkroom.yaml index 218a1eca..257614f5 100644 --- a/themes/darkroom.yaml +++ b/themes/darkroom.yaml @@ -8,6 +8,7 @@ source: author: "Lokesh Kavisth" repo: "https://github.com/lokeshkavisth/darkroom" url: "https://marketplace.visualstudio.com/items?itemName=LokeshKavisth.darkroom" + formats: null colors: bg: "#121421" fg: "#07CFBC" diff --git a/themes/darkroy-night.yaml b/themes/darkroy-night.yaml index 4831da1e..8bc3e62b 100644 --- a/themes/darkroy-night.yaml +++ b/themes/darkroy-night.yaml @@ -8,6 +8,7 @@ source: author: "Royce" repo: "https://github.com/royshemtov13/DarkRoy" url: "https://marketplace.visualstudio.com/items?itemName=Royce.darkroy" + formats: null colors: bg: "#0C090A" fg: "#EAEAEA" diff --git a/themes/darkroy.yaml b/themes/darkroy.yaml index 679a1848..7f4be8f8 100644 --- a/themes/darkroy.yaml +++ b/themes/darkroy.yaml @@ -8,6 +8,7 @@ source: author: "Royce" repo: "https://github.com/royshemtov13/DarkRoy" url: "https://marketplace.visualstudio.com/items?itemName=Royce.darkroy" + formats: null colors: bg: "#000000" fg: "#EAEAEA" diff --git a/themes/darkrr-green.yaml b/themes/darkrr-green.yaml index a9a57aad..8ce22e66 100644 --- a/themes/darkrr-green.yaml +++ b/themes/darkrr-green.yaml @@ -8,6 +8,7 @@ source: author: "Ryan Craig Martin" repo: "https://github.com/ryancraigmartin/Darkr" url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" + formats: null colors: bg: "#1A1D23" fg: "#FFFFFF" diff --git a/themes/darkrrr-green.yaml b/themes/darkrrr-green.yaml index 580d121c..79668f7f 100644 --- a/themes/darkrrr-green.yaml +++ b/themes/darkrrr-green.yaml @@ -8,6 +8,7 @@ source: author: "Ryan Craig Martin" repo: "https://github.com/ryancraigmartin/Darkr" url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" + formats: null colors: bg: "#131519" fg: "#FFFFFF" diff --git a/themes/darkrrrr-green.yaml b/themes/darkrrrr-green.yaml index b47b0415..c56ab625 100644 --- a/themes/darkrrrr-green.yaml +++ b/themes/darkrrrr-green.yaml @@ -8,6 +8,7 @@ source: author: "Ryan Craig Martin" repo: "https://github.com/ryancraigmartin/Darkr" url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" + formats: null colors: bg: "#121216" fg: "#FFFFFF" diff --git a/themes/darkrrrrr-green.yaml b/themes/darkrrrrr-green.yaml index 9db11329..0f1bd642 100644 --- a/themes/darkrrrrr-green.yaml +++ b/themes/darkrrrrr-green.yaml @@ -8,6 +8,7 @@ source: author: "Ryan Craig Martin" repo: "https://github.com/ryancraigmartin/Darkr" url: "https://marketplace.visualstudio.com/items?itemName=RyanCraigMartin.darkr" + formats: null colors: bg: "#101115" fg: "#FFFFFF" diff --git a/themes/darksian-theme.yaml b/themes/darksian-theme.yaml index cfb36855..3f93ce9c 100644 --- a/themes/darksian-theme.yaml +++ b/themes/darksian-theme.yaml @@ -8,6 +8,7 @@ source: author: "Ruan Amorim" repo: "https://github.com/ruanamorimc/darksian-theme" url: "https://marketplace.visualstudio.com/items?itemName=Ruan-Amorim.darksian-theme" + formats: null colors: bg: "#191A1F" fg: "#FFE9EF" diff --git a/themes/darkside-contrast.yaml b/themes/darkside-contrast.yaml deleted file mode 100644 index 19233c85..00000000 --- a/themes/darkside-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "darkside-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#000000" - fg: "#BABABA" - black: "#0D0D0D" - red: "#BA0E2E" - green: "#1CC3E8" - yellow: "#E8341C" - blue: "#68C244" - magenta: "#F08D24" - cyan: "#8E69C9" - white: "#C7C7C7" - brightBlack: "#333333" - brightRed: "#F03E5F" - brightGreen: "#79DBF1" - brightYellow: "#F18779" - brightBlue: "#A6DB91" - brightMagenta: "#F7BF83" - brightCyan: "#C7B4E4" - brightWhite: "#EDEDED" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 65.2 - black: 0 - red: 21.5 - green: 61.9 - yellow: 34 - blue: 58.4 - magenta: 54.1 - cyan: 33 - white: 72.7 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 76.5 - brightYellow: 53.7 - brightBlue: 76.2 - brightMagenta: 74.3 - brightCyan: 66.4 - brightWhite: 96.1 diff --git a/themes/darkside-light.yaml b/themes/darkside-light.yaml deleted file mode 100644 index 8aa9a9c2..00000000 --- a/themes/darkside-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "darkside-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#E0E0E0" - fg: "#222324" - black: "#EDEDED" - red: "#BA0E2E" - green: "#15A2C1" - yellow: "#BF2713" - blue: "#4B8E30" - magenta: "#C1721D" - cyan: "#7B5BAF" - white: "#2E3031" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#50D0EC" - brightYellow: "#ED5E4B" - brightBlue: "#7BC85C" - brightMagenta: "#E7A45D" - brightCyan: "#B2A0D0" - brightWhite: "#545658" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 84.5 - black: 0 - red: 62.1 - green: 38.1 - yellow: 60 - blue: 49.1 - magenta: 45.9 - cyan: 58 - white: 81.4 - brightBlack: 18.2 - brightRed: 45.7 - brightGreen: 15.3 - brightYellow: 41.6 - brightBlue: 21.5 - brightMagenta: 23.3 - brightCyan: 28.6 - brightWhite: 67.4 diff --git a/themes/darkside.yaml b/themes/darkside.yaml deleted file mode 100644 index 42bd113f..00000000 --- a/themes/darkside.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "darkside" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#222324" - fg: "#BABABA" - black: "#2E3031" - red: "#BA0E2E" - green: "#1CC3E8" - yellow: "#E8341C" - blue: "#68C244" - magenta: "#F08D24" - cyan: "#8E69C9" - white: "#C7C7C7" - brightBlack: "#545658" - brightRed: "#F03E5F" - brightGreen: "#79DBF1" - brightYellow: "#F18779" - brightBlue: "#A6DB91" - brightMagenta: "#F7BF83" - brightCyan: "#C7B4E4" - brightWhite: "#EDEDED" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 62.6 - black: 0 - red: 18.9 - green: 59.3 - yellow: 31.4 - blue: 55.8 - magenta: 51.5 - cyan: 30.4 - white: 70.1 - brightBlack: 13.8 - brightRed: 35.2 - brightGreen: 73.9 - brightYellow: 51.1 - brightBlue: 73.6 - brightMagenta: 71.7 - brightCyan: 63.9 - brightWhite: 93.6 diff --git a/themes/darksome.yaml b/themes/darksome.yaml index 62ae7d6c..4728157b 100644 --- a/themes/darksome.yaml +++ b/themes/darksome.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "rochekollie.darksome" version: "1.0.1" installs: 221 + rating: 0 + ratings: 0 author: "Roche Kollie" repo: "https://github.com/rochekollie/darksome" url: "https://marketplace.visualstudio.com/items?itemName=rochekollie.darksome" + formats: null colors: bg: "#101010" fg: "#FFFFFF" diff --git a/themes/darkspace.yaml b/themes/darkspace.yaml index 40b5f0f0..a07de347 100644 --- a/themes/darkspace.yaml +++ b/themes/darkspace.yaml @@ -1,16 +1,17 @@ -name: "DarkSpace" +name: "darkspace" source: - marketplace_id: "YesCode.grayspace" - version: "0.0.23" - installs: 768 + marketplace_id: "YesCode.darkspace" + version: "0.0.7" + installs: 174 rating: 0 ratings: 0 author: "YesCode" - repo: "https://github.com/yesomac/platzi_theme" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.grayspace" + repo: "https://github.com/yesomac/darkSpace" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.darkspace" + formats: null colors: - bg: "#212121" - fg: "#EEFFFF" + bg: "#000000" + fg: "#FAE8D8" black: "#1D2021" red: "#FB543F" green: "#95C085" @@ -21,7 +22,7 @@ colors: white: "#A89984" brightBlack: "#665C54" brightRed: "#FB543F" - brightGreen: "#C1A2F7" + brightGreen: "#0687FF" brightYellow: "#FFCC80" brightBlue: "#0D6678" brightMagenta: "#8F4673" @@ -33,20 +34,20 @@ meta: hue: null pair: null contrast: - fg: 103.3 + fg: 94.8 black: 0 - red: 40.7 - green: 59.7 - yellow: 71.8 - blue: 46.2 - magenta: 18.3 - cyan: 48.2 - white: 46 - brightBlack: 17.3 - brightRed: 40.7 - brightGreen: 57.9 - brightYellow: 78.5 - brightBlue: 17.5 - brightMagenta: 18.3 - brightCyan: 48.2 - brightWhite: 97.6 + red: 43 + green: 62 + yellow: 74.1 + blue: 48.5 + magenta: 20.5 + cyan: 50.5 + white: 48.2 + brightBlack: 19.6 + brightRed: 43 + brightGreen: 39.4 + brightYellow: 80.8 + brightBlue: 19.7 + brightMagenta: 20.5 + brightCyan: 50.5 + brightWhite: 99.9 diff --git a/themes/darkstar.yaml b/themes/darkstar.yaml index af6e7384..a6da9026 100644 --- a/themes/darkstar.yaml +++ b/themes/darkstar.yaml @@ -2,12 +2,13 @@ name: "DarkStar" source: marketplace_id: "DarkStar.darkstar" version: "0.0.5" - installs: 1167 + installs: 1168 rating: 5 ratings: 1 author: "DarkStar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DarkStar.darkstar" + formats: null colors: bg: "#282A36" fg: "#FFFFFF" diff --git a/themes/darkstash.yaml b/themes/darkstash.yaml index 7cab57cb..575b86ba 100644 --- a/themes/darkstash.yaml +++ b/themes/darkstash.yaml @@ -8,6 +8,7 @@ source: author: "Tomas Hurrell" repo: "https://github.com/HurrellT/theme-darkstash" url: "https://marketplace.visualstudio.com/items?itemName=HurrellT.theme-darkstash" + formats: null colors: bg: "#1D1B1D" fg: "#D4D4D4" diff --git a/themes/darktra.yaml b/themes/darktra.yaml index dc93a9d2..33a818d8 100644 --- a/themes/darktra.yaml +++ b/themes/darktra.yaml @@ -1,4 +1,4 @@ -name: "darktra" +name: "Darktra" source: marketplace_id: "fajismohd.darktra" version: "1.4.0" @@ -8,6 +8,7 @@ source: author: "fajis mohd" repo: "https://github.com/fajismohd/Darktra" url: "https://marketplace.visualstudio.com/items?itemName=fajismohd.darktra" + formats: null colors: bg: "#000000" fg: "#FAFAFA" diff --git a/themes/darkula.yaml b/themes/darkula.yaml index efbf7a6f..a820f577 100644 --- a/themes/darkula.yaml +++ b/themes/darkula.yaml @@ -1,31 +1,32 @@ -name: "Darkula" +name: "darkula" source: - marketplace_id: "JorgeDorio.darkula-theme" - version: "0.0.1" - installs: 3699 + marketplace_id: "MaxineKrebs.theme-darkula" + version: "1.1.0" + installs: 5019 rating: 0 ratings: 0 - author: "Jorge Dorio" - repo: "https://github.com/JorgeDorio/darkula" - url: "https://marketplace.visualstudio.com/items?itemName=JorgeDorio.darkula-theme" + author: "Maxine Krebs" + repo: "https://github.com/git@github.com:maxinekrebs/darkula.git" + url: "https://marketplace.visualstudio.com/items?itemName=MaxineKrebs.theme-darkula" + formats: null colors: - bg: "#131313" - fg: "#F8F8F2" - black: "#131313" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" + bg: "#000000" + fg: "#F6F6F4" + black: "#262626" + red: "#EE6666" + green: "#62E884" + yellow: "#E7EE98" + blue: "#BF9EEE" + magenta: "#F286C4" + cyan: "#97E1F1" + white: "#F6F6F4" + brightBlack: "#7B7F8B" + brightRed: "#F07C7C" + brightGreen: "#78F09A" + brightYellow: "#F6F6AE" + brightBlue: "#D6B4F7" + brightMagenta: "#F49DDA" + brightCyan: "#ADF6F6" brightWhite: "#FFFFFF" meta: mode: "dark" @@ -33,20 +34,20 @@ meta: hue: null pair: null contrast: - fg: 102.3 + fg: 101.9 black: 0 - red: 43.7 - green: 85.2 - yellow: 98.9 - blue: 54 - magenta: 54.9 - cyan: 84.3 - white: 102.3 - brightBlack: 28.4 - brightRed: 49.2 - brightGreen: 89.4 - brightYellow: 103.9 - brightBlue: 66.5 - brightMagenta: 63 - brightCyan: 97.1 - brightWhite: 107.2 + red: 44.2 + green: 77.5 + yellow: 92.7 + blue: 57.9 + magenta: 56.3 + cyan: 81.4 + white: 101.9 + brightBlack: 34.3 + brightRed: 50.5 + brightGreen: 83.2 + brightYellow: 99.2 + brightBlue: 69.6 + brightMagenta: 64.7 + brightCyan: 93.6 + brightWhite: 107.9 diff --git a/themes/darkuto.yaml b/themes/darkuto.yaml index 08ab0476..63d4015e 100644 --- a/themes/darkuto.yaml +++ b/themes/darkuto.yaml @@ -8,6 +8,7 @@ source: author: "ursamresh" repo: "https://github.com/ursamresh/darkuto" url: "https://marketplace.visualstudio.com/items?itemName=AmreshMaurya1234.darkuto-theme" + formats: null colors: bg: "#0E1B21" fg: "#D4D4D4" diff --git a/themes/darkvoid-ocean.yaml b/themes/darkvoid-ocean.yaml index d04149d2..df90def6 100644 --- a/themes/darkvoid-ocean.yaml +++ b/themes/darkvoid-ocean.yaml @@ -8,6 +8,7 @@ source: author: "darkvoid" repo: "https://github.com/darkvoid-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=Aliqyan-21.darkvoid" + formats: null colors: bg: "#141414" fg: "#C0C0C0" diff --git a/themes/darkvoid.yaml b/themes/darkvoid.yaml index 6a283a4e..31e7f164 100644 --- a/themes/darkvoid.yaml +++ b/themes/darkvoid.yaml @@ -8,6 +8,7 @@ source: author: "darkvoid" repo: "https://github.com/darkvoid-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=Aliqyan-21.darkvoid" + formats: null colors: bg: "#141414" fg: "#C0C0C0" diff --git a/themes/darkwaves-ashen-core.yaml b/themes/darkwaves-ashen-core.yaml index 329c7e72..747e9e68 100644 --- a/themes/darkwaves-ashen-core.yaml +++ b/themes/darkwaves-ashen-core.yaml @@ -8,6 +8,7 @@ source: author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" + formats: null colors: bg: "#181A1B" fg: "#C9C9C9" diff --git a/themes/darkwaves-celestial-mist.yaml b/themes/darkwaves-celestial-mist.yaml index 2c0e5abb..62f32e9b 100644 --- a/themes/darkwaves-celestial-mist.yaml +++ b/themes/darkwaves-celestial-mist.yaml @@ -8,6 +8,7 @@ source: author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" + formats: null colors: bg: "#1A1A1A" fg: "#DCDCDC" diff --git a/themes/darkwaves-cloud-lands.yaml b/themes/darkwaves-cloud-lands.yaml index ea2be4f3..34642afe 100644 --- a/themes/darkwaves-cloud-lands.yaml +++ b/themes/darkwaves-cloud-lands.yaml @@ -8,6 +8,7 @@ source: author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" + formats: null colors: bg: "#15171C" fg: "#D8DEE9" diff --git a/themes/darkwaves-driftwood.yaml b/themes/darkwaves-driftwood.yaml index 9ea6caac..06e9bc4f 100644 --- a/themes/darkwaves-driftwood.yaml +++ b/themes/darkwaves-driftwood.yaml @@ -8,6 +8,7 @@ source: author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" + formats: null colors: bg: "#1C1B1A" fg: "#C2BEB9" diff --git a/themes/darkwaves-forge.yaml b/themes/darkwaves-forge.yaml index 4b188b92..ad09e862 100644 --- a/themes/darkwaves-forge.yaml +++ b/themes/darkwaves-forge.yaml @@ -8,6 +8,7 @@ source: author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" + formats: null colors: bg: "#0F1012" fg: "#D6D9E0" diff --git a/themes/darkwaves-gray-elegance.yaml b/themes/darkwaves-gray-elegance.yaml index b355eea6..890b7a7a 100644 --- a/themes/darkwaves-gray-elegance.yaml +++ b/themes/darkwaves-gray-elegance.yaml @@ -8,6 +8,7 @@ source: author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" + formats: null colors: bg: "#1E1E22" fg: "#D4D4D8" diff --git a/themes/darkwaves-nebula.yaml b/themes/darkwaves-nebula.yaml index 3b388a56..f9dc5692 100644 --- a/themes/darkwaves-nebula.yaml +++ b/themes/darkwaves-nebula.yaml @@ -8,6 +8,7 @@ source: author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" + formats: null colors: bg: "#1A1D23" fg: "#ABB2BF" diff --git a/themes/darkwaves-obsidian.yaml b/themes/darkwaves-obsidian.yaml index d51dbfd9..1563a6cf 100644 --- a/themes/darkwaves-obsidian.yaml +++ b/themes/darkwaves-obsidian.yaml @@ -8,6 +8,7 @@ source: author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" + formats: null colors: bg: "#0A0A0A" fg: "#D0D0D0" diff --git a/themes/darkwaves-spectrum.yaml b/themes/darkwaves-spectrum.yaml index 927cbae8..7c6cd05f 100644 --- a/themes/darkwaves-spectrum.yaml +++ b/themes/darkwaves-spectrum.yaml @@ -8,6 +8,7 @@ source: author: "Spacelaxy LLC" repo: "https://github.com/spacelaxy/darkwaves" url: "https://marketplace.visualstudio.com/items?itemName=spacelaxy.spacelaxy-darkwaves" + formats: null colors: bg: "#121212" fg: "#E0E0E0" diff --git a/themes/darkwind-default.yaml b/themes/darkwind-default.yaml deleted file mode 100644 index 8c1779fa..00000000 --- a/themes/darkwind-default.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Darkwind Default" -source: - marketplace_id: "BlakeDev.darkwind" - version: "1.0.1" - installs: 632 - rating: 5 - ratings: 1 - author: "BlakeDev" - repo: "https://github.com/BlakeCampbells/Darkwind" - url: "https://marketplace.visualstudio.com/items?itemName=BlakeDev.darkwind" -colors: - bg: "#111827" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 265 - pair: null - contrast: - fg: 79.3 - black: 0 - red: 26.6 - green: 52.8 - yellow: 85.5 - blue: 27.3 - magenta: 29.6 - cyan: 47.4 - white: 89.9 - brightBlack: 21.9 - brightRed: 38.4 - brightGreen: 63.4 - brightYellow: 95.5 - brightBlue: 39.8 - brightMagenta: 45.2 - brightCyan: 55.2 - brightWhite: 89.9 diff --git a/themes/darky-purple-storm.yaml b/themes/darky-purple-storm.yaml deleted file mode 100644 index bc92ce88..00000000 --- a/themes/darky-purple-storm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Darky Purple Storm" -source: - marketplace_id: "AlexanderAlekseenko.darky-purple-theme" - version: "1.4.0" - installs: 11700 - rating: 5 - ratings: 1 - author: "Alexander Alekseenko" - repo: "https://github.com/Akaike0/vsc-darky-purple-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.darky-purple-theme" -colors: - bg: "#21202E" - fg: "#848CFF" - black: "#646464" - red: "#CD3131" - green: "#31C089" - yellow: "#E5E510" - blue: "#277AD5" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#A1A1A1" - brightBlack: "#777777" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3D8EE8" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 288 - pair: null - contrast: - fg: 43.9 - black: 19.8 - red: 25.4 - green: 54.3 - yellow: 84.3 - blue: 29.7 - magenta: 28.4 - cyan: 46.2 - white: 49 - brightBlack: 28.2 - brightRed: 37.2 - brightGreen: 62.2 - brightYellow: 94.3 - brightBlue: 38.6 - brightMagenta: 44 - brightCyan: 54.1 - brightWhite: 88.7 diff --git a/themes/darky-purple.yaml b/themes/darky-purple.yaml deleted file mode 100644 index 543b549e..00000000 --- a/themes/darky-purple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Darky Purple" -source: - marketplace_id: "AlexanderAlekseenko.darky-purple-theme" - version: "1.4.0" - installs: 11700 - rating: 5 - ratings: 1 - author: "Alexander Alekseenko" - repo: "https://github.com/Akaike0/vsc-darky-purple-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.darky-purple-theme" -colors: - bg: "#111111" - fg: "#848CFF" - black: "#545454" - red: "#CD3131" - green: "#31C089" - yellow: "#E5E510" - blue: "#277AD5" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#A1A1A1" - brightBlack: "#777777" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 45.8 - black: 15.2 - red: 27.2 - green: 56.2 - yellow: 86.1 - blue: 31.5 - magenta: 30.3 - cyan: 48.1 - white: 50.9 - brightBlack: 30.1 - brightRed: 39.1 - brightGreen: 64 - brightYellow: 96.1 - brightBlue: 40.5 - brightMagenta: 45.9 - brightCyan: 55.9 - brightWhite: 90.5 diff --git a/themes/darkyamaris.yaml b/themes/darkyamaris.yaml index 92ef0499..c4b20147 100644 --- a/themes/darkyamaris.yaml +++ b/themes/darkyamaris.yaml @@ -8,6 +8,7 @@ source: author: "indiamaris" repo: null url: "https://marketplace.visualstudio.com/items?itemName=indiamaris.darkyamaris" + formats: null colors: bg: "#000000" fg: "#FD00E1" diff --git a/themes/darth-insidious.yaml b/themes/darth-insidious.yaml deleted file mode 100644 index 436b3827..00000000 --- a/themes/darth-insidious.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Darth Insidious" -source: - marketplace_id: "Dutchorange.space-wars" - version: "1.1.7" - installs: 1711 - rating: 5 - ratings: 3 - author: "Dutchorange" - repo: "https://github.com/entropy-glitch/space-wars" - url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" -colors: - bg: "#1A1420" - fg: "#E6E1EA" - black: "#2C2235" - red: "#FF4242" - green: "#9F87FF" - yellow: "#E7C374" - blue: "#7F54F6" - magenta: "#BA3BE7" - cyan: "#8B1F1F" - white: "#E6E1EA" - brightBlack: "#6E5C82" - brightRed: "#FF6B6B" - brightGreen: "#B5A3FF" - brightYellow: "#EBD194" - brightBlue: "#9574FF" - brightMagenta: "#CA5BF7" - brightCyan: "#74C4FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 307 - pair: null - contrast: - fg: 88.6 - black: 0 - red: 40.4 - green: 46.5 - yellow: 72 - blue: 28.9 - magenta: 32 - cyan: 11.7 - white: 88.6 - brightBlack: 21 - brightRed: 48.1 - brightGreen: 58.5 - brightYellow: 79.2 - brightBlue: 39.8 - brightMagenta: 41 - brightCyan: 65.7 - brightWhite: 106.9 diff --git a/themes/darth-invader.yaml b/themes/darth-invader.yaml deleted file mode 100644 index 00473beb..00000000 --- a/themes/darth-invader.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Darth Invader" -source: - marketplace_id: "Dutchorange.space-wars" - version: "1.1.7" - installs: 1711 - rating: 5 - ratings: 3 - author: "Dutchorange" - repo: "https://github.com/entropy-glitch/space-wars" - url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" -colors: - bg: "#050505" - fg: "#E0E0E0" - black: "#1B1B1B" - red: "#FF6464" - green: "#77C677" - yellow: "#FFC74A" - blue: "#3A5FCD" - magenta: "#C98A85" - cyan: "#FF9966" - white: "#E0E0E0" - brightBlack: "#666666" - brightRed: "#FF6B68" - brightGreen: "#98FB98" - brightYellow: "#FFD700" - brightBlue: "#B5655A" - brightMagenta: "#DB3C3C" - brightCyan: "#FF6464" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 87.9 - black: 0 - red: 47.4 - green: 61.9 - yellow: 77.8 - blue: 23.8 - magenta: 47.8 - cyan: 61.5 - white: 87.9 - brightBlack: 23 - brightRed: 49 - brightGreen: 90.9 - brightYellow: 84.2 - brightBlue: 32.8 - brightMagenta: 32.1 - brightCyan: 47.4 - brightWhite: 107.9 diff --git a/themes/darthbuddy.yaml b/themes/darthbuddy.yaml index 4f50ac35..664dea71 100644 --- a/themes/darthbuddy.yaml +++ b/themes/darthbuddy.yaml @@ -8,6 +8,7 @@ source: author: "darthp87" repo: null url: "https://marketplace.visualstudio.com/items?itemName=darthp87.darthbuddy" + formats: null colors: bg: "#161616" fg: "#FFFFFF" diff --git a/themes/dartpad.yaml b/themes/dartpad.yaml deleted file mode 100644 index be7eb304..00000000 --- a/themes/dartpad.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DartPad" -source: - marketplace_id: "Alejandro-FA.vscode-theme-dartpad" - version: "0.5.4" - installs: 5315 - rating: 5 - ratings: 1 - author: "Alejandro-FA" - repo: "https://github.com/Alejandro-FA/vscode-theme-dartpad" - url: "https://marketplace.visualstudio.com/items?itemName=Alejandro-FA.vscode-theme-dartpad" -colors: - bg: "#0E161F" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 252 - pair: null - contrast: - fg: 107 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.8 - blue: 27.6 - magenta: 29.9 - cyan: 47.7 - white: 90.2 - brightBlack: 22.2 - brightRed: 38.7 - brightGreen: 63.7 - brightYellow: 95.8 - brightBlue: 40.1 - brightMagenta: 45.5 - brightCyan: 55.5 - brightWhite: 90.2 diff --git a/themes/daru.yaml b/themes/daru.yaml index c58d0af3..849d8e01 100644 --- a/themes/daru.yaml +++ b/themes/daru.yaml @@ -8,6 +8,7 @@ source: author: "daruhan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=daruhan.daru" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/darwin.yaml b/themes/darwin.yaml index 81c75e0e..8ca36a10 100644 --- a/themes/darwin.yaml +++ b/themes/darwin.yaml @@ -8,6 +8,7 @@ source: author: "Chris K. Seidel" repo: "https://chriskseidel.visualstudio.com/_git/Darwin" url: "https://marketplace.visualstudio.com/items?itemName=chriskseidel.darwin" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/darxmon.yaml b/themes/darxmon.yaml index f926e888..41f7b98f 100644 --- a/themes/darxmon.yaml +++ b/themes/darxmon.yaml @@ -6,6 +6,7 @@ source: author: "XplDan" repo: "https://github.com/0srD4n/darkxplmon" url: "https://marketplace.visualstudio.com/items?itemName=xpldan.darkxplmon" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/dashxe.yaml b/themes/dashxe.yaml index e3648702..d35eac06 100644 --- a/themes/dashxe.yaml +++ b/themes/dashxe.yaml @@ -8,6 +8,7 @@ source: author: "Emil Andersson" repo: "https://github.com/emilanderss0n/dashxe-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=EmilAndersson.dashxe" + formats: null colors: bg: "#080E16" fg: "#FFFFFF" diff --git a/themes/davi-lacerda-dark.yaml b/themes/davi-lacerda-dark.yaml index b42c113e..62c472a0 100644 --- a/themes/davi-lacerda-dark.yaml +++ b/themes/davi-lacerda-dark.yaml @@ -8,6 +8,7 @@ source: author: "Davi Lacerda" repo: "https://github.com/davilacerda/davi-lacerda-themes" url: "https://marketplace.visualstudio.com/items?itemName=DaviLacerda.davi-lacerda-themes" + formats: null colors: bg: "#09090B" fg: "#FAFAFA" diff --git a/themes/davi-lacerda-light.yaml b/themes/davi-lacerda-light.yaml index c53cb165..3ce58f92 100644 --- a/themes/davi-lacerda-light.yaml +++ b/themes/davi-lacerda-light.yaml @@ -8,6 +8,7 @@ source: author: "Davi Lacerda" repo: "https://github.com/davilacerda/davi-lacerda-themes" url: "https://marketplace.visualstudio.com/items?itemName=DaviLacerda.davi-lacerda-themes" + formats: null colors: bg: "#FAFAFA" fg: "#09090B" diff --git a/themes/david.yaml b/themes/david.yaml deleted file mode 100644 index 29d15b4c..00000000 --- a/themes/david.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "david" -source: - marketplace_id: "batdavid70.david" - version: "0.0.1" - installs: 234 - rating: 0 - ratings: 0 - author: "batdavid70" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=batdavid70.david" -colors: - bg: "#0B0E11" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.2 - black: 0 - red: 27.4 - green: 53.7 - yellow: 86.3 - blue: 28.1 - magenta: 30.5 - cyan: 48.3 - white: 90.7 - brightBlack: 22.7 - brightRed: 39.3 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 90.7 diff --git a/themes/daviontheme.yaml b/themes/daviontheme.yaml index 43bf3d69..e65f9813 100644 --- a/themes/daviontheme.yaml +++ b/themes/daviontheme.yaml @@ -8,6 +8,7 @@ source: author: "Mahdi Alavitabar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MahdiAlavitabar.daviontheme" + formats: null colors: bg: "#0A0A0A" fg: "#E6BD8A" diff --git a/themes/dawnblush.yaml b/themes/dawnblush.yaml index 78cb3e75..84b48572 100644 --- a/themes/dawnblush.yaml +++ b/themes/dawnblush.yaml @@ -8,6 +8,7 @@ source: author: "shurj0" repo: "https://github.com/shurj0/DawnBlush-code" url: "https://marketplace.visualstudio.com/items?itemName=shurj0.dawnblush-code" + formats: null colors: bg: "#15130F" fg: "#D4D4D4" diff --git a/themes/day-n-nite.yaml b/themes/day-n-nite.yaml index 268f07be..76550fb8 100644 --- a/themes/day-n-nite.yaml +++ b/themes/day-n-nite.yaml @@ -8,6 +8,7 @@ source: author: "Bruno Kawka" repo: "https://github.com/letelete/day-n-nite-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BrunoKawka.day-n-nite" + formats: null colors: bg: "#000000" fg: "#000000" diff --git a/themes/day.yaml b/themes/day.yaml deleted file mode 100644 index f2e505ab..00000000 --- a/themes/day.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "day" -source: - marketplace_id: "AninhaPardini.coffee-break-theme" - version: "1.5.0" - installs: 835 - rating: 5 - ratings: 2 - author: "Aninha Pardini" - repo: "https://github.com/AninhaPardini/coffee-break-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AninhaPardini.coffee-break-theme" -colors: - bg: "#FFFAF6" - fg: "#1F1103" - black: "#502F04" - red: "#CD3131" - green: "#00BC00" - yellow: "#D17E12" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#FF9A16" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 102.4 - black: 94.7 - red: 71.5 - green: 46.7 - yellow: 55.4 - blue: 83.5 - magenta: 72 - cyan: 58.1 - white: 83.4 - brightBlack: 76.2 - brightRed: 71.5 - brightGreen: 38.4 - brightYellow: 38.7 - brightBlue: 83.5 - brightMagenta: 72 - brightCyan: 58.1 - brightWhite: 45.9 diff --git a/themes/dayfox.yaml b/themes/dayfox.yaml index 5322a1fe..b519e475 100644 --- a/themes/dayfox.yaml +++ b/themes/dayfox.yaml @@ -2,12 +2,13 @@ name: "Dayfox" source: marketplace_id: "michalpopek.dayfox-vsc" version: "0.1.0" - installs: 1936 + installs: 1939 rating: 5 ratings: 2 author: "Michał Popek" repo: "https://github.com/michalpopek/dayfox-vsc" url: "https://marketplace.visualstudio.com/items?itemName=michalpopek.dayfox-vsc" + formats: null colors: bg: "#F6F2EE" fg: "#3D2B5A" diff --git a/themes/daysofwineandroses.yaml b/themes/daysofwineandroses.yaml index 4e314b8b..a003eef6 100644 --- a/themes/daysofwineandroses.yaml +++ b/themes/daysofwineandroses.yaml @@ -8,6 +8,7 @@ source: author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.daysofwineandroses" + formats: null colors: bg: "#050306" fg: "#9A7D75" diff --git a/themes/dbt-dark-theme.yaml b/themes/dbt-dark-theme.yaml deleted file mode 100644 index 8779edc5..00000000 --- a/themes/dbt-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dbt dark theme" -source: - marketplace_id: "dbtLabsInc.dbt" - version: "0.54.0" - installs: 76805 - rating: 4.19 - ratings: 27 - author: "dbt Labs Inc" - repo: "https://github.com/dbt-labs/dbt-fusion" - url: "https://marketplace.visualstudio.com/items?itemName=dbtLabsInc.dbt" -colors: - bg: "#161514" - fg: "#F6F6F6" - black: "#2F2D2C" - red: "#F64B44" - green: "#31A753" - yellow: "#D47500" - blue: "#1894F8" - magenta: "#F83D75" - cyan: "#0BA58B" - white: "#EBE9E9" - brightBlack: "#736D6C" - brightRed: "#FF866F" - brightGreen: "#45D170" - brightYellow: "#F79900" - brightBlue: "#6AB8FF" - brightMagenta: "#FF82A1" - brightCyan: "#38CCB2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: "dbt light theme" - contrast: - fg: 101.1 - black: 0 - red: 39.6 - green: 43.4 - yellow: 40.9 - blue: 42.7 - magenta: 39.3 - cyan: 43.5 - white: 93 - brightBlack: 25.8 - brightRed: 55.1 - brightGreen: 63.8 - brightYellow: 58.3 - brightBlue: 60.1 - brightMagenta: 55.5 - brightCyan: 63 - brightWhite: 107 diff --git a/themes/dbt-fusion.yaml b/themes/dbt-fusion.yaml deleted file mode 100644 index bb199fc2..00000000 --- a/themes/dbt-fusion.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dbt Fusion" -source: - marketplace_id: "dbtLabsInc.dbt" - version: "0.54.0" - installs: 76805 - rating: 4.19 - ratings: 27 - author: "dbt Labs Inc" - repo: "https://github.com/dbt-labs/dbt-fusion" - url: "https://marketplace.visualstudio.com/items?itemName=dbtLabsInc.dbt" -colors: - bg: "#0B1321" - fg: "#E0D7FF" - black: "#444C5E" - red: "#EB4610" - green: "#3CCE96" - yellow: "#F8E230" - blue: "#5362FF" - magenta: "#C45E97" - cyan: "#1DB6D8" - white: "#E5E5E5" - brightBlack: "#444C5E" - brightRed: "#F75B28" - brightGreen: "#44F7B2" - brightYellow: "#FFE61F" - brightBlue: "#6E7BFF" - brightMagenta: "#EA48A2" - brightCyan: "#21D7FF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "purple" - hue: 261 - pair: null - contrast: - fg: 84.8 - black: 12 - red: 36.1 - green: 63.2 - yellow: 87.4 - blue: 29.6 - magenta: 35.1 - cyan: 54.5 - white: 90.3 - brightBlack: 12 - brightRed: 42.4 - brightGreen: 84.7 - brightYellow: 90.3 - brightBlue: 38.4 - brightMagenta: 39.2 - brightCyan: 71.8 - brightWhite: 90.3 diff --git a/themes/dbt-light-theme.yaml b/themes/dbt-light-theme.yaml deleted file mode 100644 index 19edf3e5..00000000 --- a/themes/dbt-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dbt light theme" -source: - marketplace_id: "dbtLabsInc.dbt" - version: "0.54.0" - installs: 76805 - rating: 4.19 - ratings: 27 - author: "dbt Labs Inc" - repo: "https://github.com/dbt-labs/dbt-fusion" - url: "https://marketplace.visualstudio.com/items?itemName=dbtLabsInc.dbt" -colors: - bg: "#FDFDFD" - fg: "#1C1A19" - black: "#1C1A19" - red: "#8D0D10" - green: "#105A20" - yellow: "#AB5100" - blue: "#004895" - magenta: "#8B0839" - cyan: "#105748" - white: "#CFCDCC" - brightBlack: "#4E4A49" - brightRed: "#C42C28" - brightGreen: "#188435" - brightYellow: "#D47500" - brightBlue: "#006DCE" - brightMagenta: "#CA0356" - brightCyan: "#17806C" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: "dbt dark theme" - contrast: - fg: 103 - black: 103 - red: 89 - green: 87.3 - yellow: 74.9 - blue: 88.4 - magenta: 89 - cyan: 87.6 - white: 25.3 - brightBlack: 88.8 - brightRed: 75.3 - brightGreen: 71.5 - brightYellow: 58.8 - brightBlue: 73.5 - brightMagenta: 75 - brightCyan: 71.9 - brightWhite: 0 diff --git a/themes/dc-dark-theme.yaml b/themes/dc-dark-theme.yaml index 0fea0b2b..47d8c5ef 100644 --- a/themes/dc-dark-theme.yaml +++ b/themes/dc-dark-theme.yaml @@ -2,10 +2,13 @@ name: "DC Dark Theme" source: marketplace_id: "DonavanCarvalho.dc-dark-theme" version: "0.0.1" - installs: 315 + installs: 316 + rating: 0 + ratings: 0 author: "Donavan Carvalho" repo: "https://github.com/donavancarvalho/dc-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=DonavanCarvalho.dc-dark-theme" + formats: null colors: bg: "#292B3F" fg: "#FFFFFF" diff --git a/themes/dcdevthemered.yaml b/themes/dcdevthemered.yaml deleted file mode 100644 index 985d7a12..00000000 --- a/themes/dcdevthemered.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DcDevThemeRed" -source: - marketplace_id: "DcDevThemeRed.DcDevThemeRed" - version: "0.0.1" - installs: 260 - rating: 5 - ratings: 2 - author: "DcDevThemeRed" - repo: "https://github.com/DcDevRep/dcdevthemered" - url: "https://marketplace.visualstudio.com/items?itemName=DcDevThemeRed.DcDevThemeRed" -colors: - bg: "#000000" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFC1C1" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FF7676" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.5 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 78.3 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 51.9 diff --git a/themes/dead-club-city.yaml b/themes/dead-club-city.yaml index de8eb2ac..2d5f3cd8 100644 --- a/themes/dead-club-city.yaml +++ b/themes/dead-club-city.yaml @@ -8,6 +8,7 @@ source: author: "Kenzie Bottoms" repo: "https://github.com/kenziebottoms/vscode-theme-dead-club-city" url: "https://marketplace.visualstudio.com/items?itemName=kenziebottoms.dead-club-city" + formats: null colors: bg: "#20101A" fg: "#E0CCBD" diff --git a/themes/deadbeef.yaml b/themes/deadbeef.yaml index d7cf3e4a..bc691b9e 100644 --- a/themes/deadbeef.yaml +++ b/themes/deadbeef.yaml @@ -8,6 +8,7 @@ source: author: "Prelly95" repo: "https://github.com/Prelly95/deadbeef" url: "https://marketplace.visualstudio.com/items?itemName=Prelly95.deadbeef" + formats: null colors: bg: "#292D3E" fg: "#FCE8C3" diff --git a/themes/deadmura.yaml b/themes/deadmura.yaml index 778ca2bb..6c3f6365 100644 --- a/themes/deadmura.yaml +++ b/themes/deadmura.yaml @@ -8,6 +8,7 @@ source: author: "Rumi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=pra1rie.deadmura" + formats: null colors: bg: "#101010" fg: "#EEEEEE" diff --git a/themes/deadpool.yaml b/themes/deadpool.yaml deleted file mode 100644 index 51bad4c8..00000000 --- a/themes/deadpool.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DeadPool" -source: - marketplace_id: "MukeshJoshi.dodopool" - version: "0.0.6" - installs: 1805 - rating: 5 - ratings: 1 - author: "Mukesh Joshi" - repo: "https://github.com/orangepreneur/dodopool" - url: "https://marketplace.visualstudio.com/items?itemName=MukeshJoshi.dodopool" -colors: - bg: "#13171B" - fg: "#ABB2BF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#B64853" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 248 - pair: null - contrast: - fg: 59.4 - black: 0 - red: 26.7 - green: 53 - yellow: 85.7 - blue: 25.7 - magenta: 29.8 - cyan: 47.6 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.6 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90.1 diff --git a/themes/deaving-theme.yaml b/themes/deaving-theme.yaml index 8f2d922c..04e309c9 100644 --- a/themes/deaving-theme.yaml +++ b/themes/deaving-theme.yaml @@ -1,4 +1,4 @@ -name: "Deaving-Theme" +name: "deaving-theme" source: marketplace_id: "deaving.deaving-theme" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "deaving" repo: null url: "https://marketplace.visualstudio.com/items?itemName=deaving.deaving-theme" + formats: null colors: bg: "#141414" fg: "#F5F5F5" diff --git a/themes/decayce.yaml b/themes/decayce.yaml deleted file mode 100644 index 7003f71a..00000000 --- a/themes/decayce.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Decayce" -source: - marketplace_id: "decaycs.decay" - version: "1.0.9" - installs: 37708 - rating: 5 - ratings: 3 - author: "decaycs" - repo: "https://github.com/decaycs/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" -colors: - bg: "#0D0F18" - fg: "#A5B6CF" - black: "#151720" - red: "#DD6777" - green: "#90CEAA" - yellow: "#ECD3A0" - blue: "#86AAEC" - magenta: "#C296EB" - cyan: "#93CEE9" - white: "#CBCED3" - brightBlack: "#1C1E27" - brightRed: "#DD6777" - brightGreen: "#90CEAA" - brightYellow: "#E9A180" - brightBlue: "#86AAEC" - brightMagenta: "#C296EB" - brightCyan: "#93CEE9" - brightWhite: "#A5B6CF" -meta: - mode: "dark" - accent: "red" - hue: 275 - pair: null - contrast: - fg: 61.7 - black: 0 - red: 41 - green: 68.5 - yellow: 81.1 - blue: 55.6 - magenta: 55 - cyan: 71.6 - white: 76.3 - brightBlack: 0 - brightRed: 41 - brightGreen: 68.5 - brightYellow: 60.3 - brightBlue: 55.6 - brightMagenta: 55 - brightCyan: 71.6 - brightWhite: 61.7 diff --git a/themes/deco.yaml b/themes/deco.yaml index b3e3d757..3aeb4205 100644 --- a/themes/deco.yaml +++ b/themes/deco.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ParsaDehghani.DecoTheme" version: "0.0.3" installs: 88 + rating: 0 + ratings: 0 author: "Parsa Dehghani" repo: "https://github.com/Gamer2030a/VSDecoTheme" url: "https://marketplace.visualstudio.com/items?itemName=ParsaDehghani.DecoTheme" + formats: null colors: bg: "#04151B" fg: "#D6CEFF" diff --git a/themes/deeold.yaml b/themes/deeold.yaml index 1f7d6de4..e3782b67 100644 --- a/themes/deeold.yaml +++ b/themes/deeold.yaml @@ -8,6 +8,7 @@ source: author: "xyr0z1ne" repo: "https://github.com/Xyr0s1gn/deeold" url: "https://marketplace.visualstudio.com/items?itemName=xyr0z1ne.deeold" + formats: null colors: bg: "#121824" fg: "#ADB6C2" diff --git a/themes/deep-dark-blue.yaml b/themes/deep-dark-blue.yaml index 79cb96d1..21547994 100644 --- a/themes/deep-dark-blue.yaml +++ b/themes/deep-dark-blue.yaml @@ -8,6 +8,7 @@ source: author: "manuabi" repo: "https://github.com/mafte/vscode-deep-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=manuabi.deep-dark-color" + formats: null colors: bg: "#152238" fg: "#969696" diff --git a/themes/deep-dark-purple.yaml b/themes/deep-dark-purple.yaml index 9e938ae7..d2db8b57 100644 --- a/themes/deep-dark-purple.yaml +++ b/themes/deep-dark-purple.yaml @@ -8,6 +8,7 @@ source: author: "manuabi" repo: "https://github.com/mafte/vscode-deep-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=manuabi.deep-dark-color" + formats: null colors: bg: "#221538" fg: "#969696" diff --git a/themes/deep-dark-teal.yaml b/themes/deep-dark-teal.yaml index 7edb3c35..5cb7301f 100644 --- a/themes/deep-dark-teal.yaml +++ b/themes/deep-dark-teal.yaml @@ -8,6 +8,7 @@ source: author: "manuabi" repo: "https://github.com/mafte/vscode-deep-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=manuabi.deep-dark-color" + formats: null colors: bg: "#152E38" fg: "#969696" diff --git a/themes/deep-dark.yaml b/themes/deep-dark.yaml index a87943a8..f84b6157 100644 --- a/themes/deep-dark.yaml +++ b/themes/deep-dark.yaml @@ -8,6 +8,7 @@ source: author: "andrey2620" repo: "https://github.com/andrey2620/andrey2620-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrey2620.andrey2620-theme" + formats: null colors: bg: "#151515" fg: "#E181FF" diff --git a/themes/deep-indigo-wisdom-intuition.yaml b/themes/deep-indigo-wisdom-intuition.yaml index 738f4eee..5a5babf9 100644 --- a/themes/deep-indigo-wisdom-intuition.yaml +++ b/themes/deep-indigo-wisdom-intuition.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#0F0F1A" fg: "#E8EAF6" diff --git a/themes/deep-purple-fork-fork.yaml b/themes/deep-purple-fork-fork.yaml deleted file mode 100644 index dc09ff88..00000000 --- a/themes/deep-purple-fork-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Deep Purple - Fork - Fork" -source: - marketplace_id: "stackdevlopr.sd-deep-purple-theme" - version: "1.1.0" - installs: 146 - rating: 0 - ratings: 0 - author: "stackdevlopr" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=stackdevlopr.sd-deep-purple-theme" -colors: - bg: "#181B21" - fg: "#FF0000" - black: "#3D3D3D" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 36.1 - black: 0 - red: 26.3 - green: 52.6 - yellow: 85.2 - blue: 27 - magenta: 29.3 - cyan: 47.1 - white: 89.6 - brightBlack: 21.6 - brightRed: 38.1 - brightGreen: 63.1 - brightYellow: 95.2 - brightBlue: 39.6 - brightMagenta: 44.9 - brightCyan: 55 - brightWhite: 89.6 diff --git a/themes/deep-purple-fork.yaml b/themes/deep-purple-fork.yaml deleted file mode 100644 index e26bc53b..00000000 --- a/themes/deep-purple-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Deep Purple - Fork" -source: - marketplace_id: "MrudulMistri.mystic-fusion-theme" - version: "1.0.18" - installs: 74 - rating: 5 - ratings: 1 - author: "Mrudul Mistri" - repo: "https://github.com/Mrudul1234/mystic-fusion-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MrudulMistri.mystic-fusion-theme" -colors: - bg: "#16111B" - fg: "#E4EEF0" - black: "#3D3D3D" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 307 - pair: null - contrast: - fg: 94.9 - black: 0 - red: 27.1 - green: 53.3 - yellow: 86 - blue: 27.8 - magenta: 30.1 - cyan: 47.9 - white: 90.4 - brightBlack: 22.4 - brightRed: 38.9 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.3 - brightMagenta: 45.7 - brightCyan: 55.7 - brightWhite: 90.4 diff --git a/themes/deep-purple-theme.yaml b/themes/deep-purple-theme.yaml deleted file mode 100644 index e0a1bcdd..00000000 --- a/themes/deep-purple-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "deep-purple-theme" -source: - marketplace_id: "miles-crighton.deep-purple" - version: "0.0.15" - installs: 1 - rating: 0 - ratings: 0 - author: "miles-crighton" - repo: "https://github.com/miles-crighton/deep-purple-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=miles-crighton.deep-purple" -colors: - bg: "#39293B" - fg: "#FFE3E3" - black: "#9C6F9F" - red: "#E05470" - green: "#A4BC77" - yellow: "#EBB984" - blue: "#8078D1" - magenta: "#EB579C" - cyan: "#9AE0F0" - white: "#FFE3E3" - brightBlack: "#9C6F9F" - brightRed: "#EF4568" - brightGreen: "#A7C966" - brightYellow: "#F9B975" - brightBlue: "#9994FF" - brightMagenta: "#E54386" - brightCyan: "#87DDEE" - brightWhite: "#FFF0F0" -meta: - mode: "dark" - accent: "red" - hue: 323 - pair: null - contrast: - fg: 89 - black: 29.2 - red: 33.1 - green: 56.6 - yellow: 65.2 - blue: 31.5 - magenta: 37.5 - cyan: 76.4 - white: 89 - brightBlack: 29.2 - brightRed: 33.9 - brightGreen: 62.3 - brightYellow: 67.2 - brightBlue: 46.2 - brightMagenta: 32.2 - brightCyan: 73.4 - brightWhite: 95.4 diff --git a/themes/deep-purple.yaml b/themes/deep-purple.yaml index 8a845d67..277d7d80 100644 --- a/themes/deep-purple.yaml +++ b/themes/deep-purple.yaml @@ -1,52 +1,53 @@ name: "Deep Purple" source: - marketplace_id: "HGlennon.raisin" - version: "1.0.6" - installs: 26 + marketplace_id: "miles-crighton.deep-purple" + version: "0.0.15" + installs: 1 rating: 0 ratings: 0 - author: "HGlennon" - repo: "https://github.com/HGlennon/Raisin" - url: "https://marketplace.visualstudio.com/items?itemName=HGlennon.raisin" + author: "miles-crighton" + repo: "https://github.com/miles-crighton/deep-purple-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=miles-crighton.deep-purple" + formats: null colors: - bg: "#171320" - fg: "#DEDEDE" - black: "#8C8C8C" - red: "#DD7373" - green: "#0FD287" - yellow: "#E5E510" - blue: "#468FDD" - magenta: "#BC3FBC" - cyan: "#12B9E2" - white: "#E5E5E5" - brightBlack: "#A1A1A1" - brightRed: "#F36D6D" - brightGreen: "#3BDE9D" - brightYellow: "#F5F543" - brightBlue: "#589EEE" - brightMagenta: "#DC84DC" - brightCyan: "#51C4E1" - brightWhite: "#E5E5E5" + bg: "#39293B" + fg: "#FFE3E3" + black: "#9C6F9F" + red: "#E05470" + green: "#A4BC77" + yellow: "#EBB984" + blue: "#8078D1" + magenta: "#EB579C" + cyan: "#9AE0F0" + white: "#FFE3E3" + brightBlack: "#9C6F9F" + brightRed: "#EF4568" + brightGreen: "#A7C966" + brightYellow: "#F9B975" + brightBlue: "#9994FF" + brightMagenta: "#E54386" + brightCyan: "#87DDEE" + brightWhite: "#FFF0F0" meta: mode: "dark" - accent: "pink" - hue: 298 - pair: null + accent: "red" + hue: 323 + pair: "Light purple" contrast: - fg: 85.8 - black: 39.8 - red: 43.3 - green: 63.9 - yellow: 85.8 - blue: 40 - magenta: 29.9 - cyan: 56.2 - white: 90.2 - brightBlack: 50.5 - brightRed: 46.2 - brightGreen: 71 - brightYellow: 95.8 - brightBlue: 47.6 - brightMagenta: 52.2 - brightCyan: 62.3 - brightWhite: 90.2 + fg: 89 + black: 29.2 + red: 33.1 + green: 56.6 + yellow: 65.2 + blue: 31.5 + magenta: 37.5 + cyan: 76.4 + white: 89 + brightBlack: 29.2 + brightRed: 33.9 + brightGreen: 62.3 + brightYellow: 67.2 + brightBlue: 46.2 + brightMagenta: 32.2 + brightCyan: 73.4 + brightWhite: 95.4 diff --git a/themes/deep-rainforest.yaml b/themes/deep-rainforest.yaml index b2b6ca1d..79dae8be 100644 --- a/themes/deep-rainforest.yaml +++ b/themes/deep-rainforest.yaml @@ -8,6 +8,7 @@ source: author: "Kunall Banerjee" repo: "https://github.com/yeskunall/deep-rainforest" url: "https://marketplace.visualstudio.com/items?itemName=yeskunall.deep-rainforest" + formats: null colors: bg: "#000E14" fg: "#006666" diff --git a/themes/deep-sea-navigator.yaml b/themes/deep-sea-navigator.yaml deleted file mode 100644 index 6f16b169..00000000 --- a/themes/deep-sea-navigator.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Deep-Sea-Navigator" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#011D23" - fg: "#EEF5F6" - black: "#011D23" - red: "#7C1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#258FA7" - magenta: "#258FA7" - cyan: "#29C3A0" - white: "#EEF5F6" - brightBlack: "#011D23" - brightRed: "#7C1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#258FA7" - brightMagenta: "#258FA7" - brightCyan: "#29C3A0" - brightWhite: "#EEF5F6" -meta: - mode: "dark" - accent: "yellow" - hue: 214 - pair: null - contrast: - fg: 99 - black: 0 - red: 8.4 - green: 57.2 - yellow: 51.3 - blue: 35.3 - magenta: 35.3 - cyan: 57.2 - white: 99 - brightBlack: 0 - brightRed: 8.4 - brightGreen: 57.2 - brightYellow: 51.3 - brightBlue: 35.3 - brightMagenta: 35.3 - brightCyan: 57.2 - brightWhite: 99 diff --git a/themes/deep-space-dark.yaml b/themes/deep-space-dark.yaml deleted file mode 100644 index 5bac2b8b..00000000 --- a/themes/deep-space-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Deep Space Dark" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#0A0019" - fg: "#FFFFFF" - black: "#474747" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 301 - pair: null - contrast: - fg: 107.8 - black: 10.8 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.3 - magenta: 30.6 - cyan: 48.4 - white: 90.9 - brightBlack: 22.9 - brightRed: 39.4 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.9 - brightMagenta: 46.3 - brightCyan: 56.3 - brightWhite: 90.9 diff --git a/themes/deep-teal.yaml b/themes/deep-teal.yaml deleted file mode 100644 index d8e58f2a..00000000 --- a/themes/deep-teal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Deep-Teal" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#0D0D0D" - fg: "#EDF3F2" - black: "#0D0D0D" - red: "#7C1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#36BFB1" - magenta: "#36BFB1" - cyan: "#29C3A0" - white: "#EDF3F2" - brightBlack: "#0D0D0D" - brightRed: "#7C1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#36BFB1" - brightMagenta: "#36BFB1" - brightCyan: "#29C3A0" - brightWhite: "#EDF3F2" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 98.9 - black: 0 - red: 9.6 - green: 58.4 - yellow: 52.4 - blue: 57.5 - magenta: 57.5 - cyan: 58.4 - white: 98.9 - brightBlack: 0 - brightRed: 9.6 - brightGreen: 58.4 - brightYellow: 52.4 - brightBlue: 57.5 - brightMagenta: 57.5 - brightCyan: 58.4 - brightWhite: 98.9 diff --git a/themes/deep-void.yaml b/themes/deep-void.yaml deleted file mode 100644 index 3bc4f480..00000000 --- a/themes/deep-void.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Deep-Void" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#020817" - fg: "#EFF6FF" - black: "#020817" - red: "#DC2626" - green: "#29C3A0" - yellow: "#D29922" - blue: "#1E40AF" - magenta: "#1E40AF" - cyan: "#29C3A0" - white: "#000000" - brightBlack: "#020817" - brightRed: "#DC2626" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#1E40AF" - brightMagenta: "#1E40AF" - brightCyan: "#29C3A0" - brightWhite: "#000000" -meta: - mode: "dark" - accent: "orange" - hue: 259 - pair: null - contrast: - fg: 101.3 - black: 0 - red: 30 - green: 58.5 - yellow: 52.6 - blue: 12.9 - magenta: 12.9 - cyan: 58.5 - white: 0 - brightBlack: 0 - brightRed: 30 - brightGreen: 58.5 - brightYellow: 52.6 - brightBlue: 12.9 - brightMagenta: 12.9 - brightCyan: 58.5 - brightWhite: 0 diff --git a/themes/deepslime.yaml b/themes/deepslime.yaml index e36c3e56..3b50846f 100644 --- a/themes/deepslime.yaml +++ b/themes/deepslime.yaml @@ -8,6 +8,7 @@ source: author: "Katherine Aurelia" repo: "https://github.com/wintryKat/vsc-theme-deepslime" url: "https://marketplace.visualstudio.com/items?itemName=KatherineAurelia.deepslime-theme" + formats: null colors: bg: "#060110" fg: "#E0E0E0" diff --git a/themes/deepwave.yaml b/themes/deepwave.yaml index 9198e810..27ff309d 100644 --- a/themes/deepwave.yaml +++ b/themes/deepwave.yaml @@ -8,6 +8,7 @@ source: author: "NelsonDJCR" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NelsonDJCR.deepwave" + formats: null colors: bg: "#0D0F15" fg: "#AFB07E" diff --git a/themes/deepwoods-autumn-needles.yaml b/themes/deepwoods-autumn-needles.yaml index 57b60300..1ca927bb 100644 --- a/themes/deepwoods-autumn-needles.yaml +++ b/themes/deepwoods-autumn-needles.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "just-spliff.frosty-pine" version: "1.1.4" installs: 63 + rating: 0 + ratings: 0 author: "just-spliff" repo: "https://github.com/just-spliff/frosty-pine" url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" + formats: null colors: bg: "#090806" fg: "#FFF8F0" diff --git a/themes/deepwoods-frosted-pines.yaml b/themes/deepwoods-frosted-pines.yaml index faa1bd28..3e49955b 100644 --- a/themes/deepwoods-frosted-pines.yaml +++ b/themes/deepwoods-frosted-pines.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "just-spliff.frosty-pine" version: "1.1.4" installs: 63 + rating: 0 + ratings: 0 author: "just-spliff" repo: "https://github.com/just-spliff/frosty-pine" url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" + formats: null colors: bg: "#05070B" fg: "#F5FAFF" diff --git a/themes/deepwoods-high-canopy.yaml b/themes/deepwoods-high-canopy.yaml index 81a8b9a4..fbed4900 100644 --- a/themes/deepwoods-high-canopy.yaml +++ b/themes/deepwoods-high-canopy.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "just-spliff.frosty-pine" version: "1.1.4" installs: 63 + rating: 0 + ratings: 0 author: "just-spliff" repo: "https://github.com/just-spliff/frosty-pine" url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" + formats: null colors: bg: "#050807" fg: "#F7FFF5" diff --git a/themes/deepwoods-spring-thaw.yaml b/themes/deepwoods-spring-thaw.yaml index 1a88f6e1..5420b9e9 100644 --- a/themes/deepwoods-spring-thaw.yaml +++ b/themes/deepwoods-spring-thaw.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "just-spliff.frosty-pine" version: "1.1.4" installs: 63 + rating: 0 + ratings: 0 author: "just-spliff" repo: "https://github.com/just-spliff/frosty-pine" url: "https://marketplace.visualstudio.com/items?itemName=just-spliff.frosty-pine" + formats: null colors: bg: "#060809" fg: "#F5F8F6" diff --git a/themes/default-dimmed.yaml b/themes/default-dimmed.yaml index 2fe94b30..d8a5772e 100644 --- a/themes/default-dimmed.yaml +++ b/themes/default-dimmed.yaml @@ -1,11 +1,14 @@ -name: "Default dimmed" +name: "default-dimmed" source: marketplace_id: "arthurimmich.default-dimmed" version: "0.3.0" - installs: 450 + installs: 451 + rating: 0 + ratings: 0 author: "arthurimmich" repo: null url: "https://marketplace.visualstudio.com/items?itemName=arthurimmich.default-dimmed" + formats: null colors: bg: "#252526" fg: "#D4D4D4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 77.6 black: 0 diff --git a/themes/default-enhanced.yaml b/themes/default-enhanced.yaml index d2be05a9..e201da81 100644 --- a/themes/default-enhanced.yaml +++ b/themes/default-enhanced.yaml @@ -8,6 +8,7 @@ source: author: "Jonaqhan" repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" + formats: null colors: bg: "#1E1E1E" fg: "#63BBFF" diff --git a/themes/default-theme.yaml b/themes/default-theme.yaml index 81f5f620..1c83061b 100644 --- a/themes/default-theme.yaml +++ b/themes/default-theme.yaml @@ -6,6 +6,7 @@ source: author: "alan ramalho" repo: "https://github.com/azzalan/sagui_vscode" url: "https://marketplace.visualstudio.com/items?itemName=alanramalho.sagui" + formats: null colors: bg: "#282C34" fg: "#ABB2BF" diff --git a/themes/defaults.yaml b/themes/defaults.yaml deleted file mode 100644 index e829ca5d..00000000 --- a/themes/defaults.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "defaults" -source: - marketplace_id: "drzix.hc-zenburn-vscode" - version: "0.3.0" - installs: 7768 - rating: 5 - ratings: 1 - author: "Kyeongmin Cho" - repo: "https://github.com/drzix/hc-zenburn-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=drzix.hc-zenburn-vscode" -colors: - bg: "#313131" - fg: "#DCDCCC" - black: "#4E4E4E" - red: "#D9A0A0" - green: "#6C8C6C" - yellow: "#EDDCAC" - blue: "#C5BBCC" - magenta: "#B986A9" - cyan: "#94CACC" - white: "#DCDCCC" - brightBlack: "#5E5E5E" - brightRed: "#E66666" - brightGreen: "#8CAC8C" - brightYellow: "#FDECBC" - brightBlue: "#DAC0E9" - brightMagenta: "#E090C7" - brightCyan: "#A0EDF0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 79.4 - black: 8.1 - red: 53.3 - green: 31.3 - yellow: 80.6 - blue: 62.4 - magenta: 40.1 - cyan: 63.5 - white: 79.4 - brightBlack: 14.3 - brightRed: 37.2 - brightGreen: 47.5 - brightYellow: 90.6 - brightBlue: 68.6 - brightMagenta: 50.8 - brightCyan: 82.5 - brightWhite: 102.5 diff --git a/themes/defdo-base.yaml b/themes/defdo-base.yaml deleted file mode 100644 index 9d17c206..00000000 --- a/themes/defdo-base.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "defdo base" -source: - marketplace_id: "defdo.defdo-themes" - version: "0.0.15" - installs: 1255 - rating: 5 - ratings: 1 - author: "defdo" - repo: "https://github.com/defdo-dev/defdo-vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=defdo.defdo-themes" -colors: - bg: "#131C21" - fg: "#EEFFFF" - black: "#131C21" - red: "#E24F4F" - green: "#0DBC79" - yellow: "#F9BC02" - blue: "#006EE8" - magenta: "#8954AC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F65757" - brightGreen: "#23D18B" - brightYellow: "#F9E802" - brightBlue: "#3B8EEA" - brightMagenta: "#A870D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFEFE" -meta: - mode: "dark" - accent: "purple" - hue: 233 - pair: null - contrast: - fg: 104.1 - black: 0 - red: 35.3 - green: 52.6 - yellow: 70.7 - blue: 28 - magenta: 24 - cyan: 47.1 - white: 89.6 - brightBlack: 21.6 - brightRed: 41.3 - brightGreen: 63.1 - brightYellow: 89.5 - brightBlue: 39.6 - brightMagenta: 37.6 - brightCyan: 55 - brightWhite: 105.9 diff --git a/themes/defdo-halloween.yaml b/themes/defdo-halloween.yaml deleted file mode 100644 index c98f24eb..00000000 --- a/themes/defdo-halloween.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "defdo halloween" -source: - marketplace_id: "defdo.defdo-themes" - version: "0.0.15" - installs: 1255 - rating: 5 - ratings: 1 - author: "defdo" - repo: "https://github.com/defdo-dev/defdo-vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=defdo.defdo-themes" -colors: - bg: "#140021" - fg: "#EEFFFF" - black: "#100021" - red: "#E24F4F" - green: "#0DBC79" - yellow: "#F9BC02" - blue: "#006EE8" - magenta: "#8954AC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F65757" - brightGreen: "#23D18B" - brightYellow: "#F9E802" - brightBlue: "#3B8EEA" - brightMagenta: "#A870D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFEFE" -meta: - mode: "dark" - accent: "purple" - hue: 310 - pair: null - contrast: - fg: 105.2 - black: 0 - red: 36.4 - green: 53.7 - yellow: 71.8 - blue: 29.1 - magenta: 25.1 - cyan: 48.2 - white: 90.7 - brightBlack: 22.7 - brightRed: 42.4 - brightGreen: 64.2 - brightYellow: 90.6 - brightBlue: 40.7 - brightMagenta: 38.7 - brightCyan: 56.1 - brightWhite: 107 diff --git a/themes/definetely-not-github-s-theme.yaml b/themes/definetely-not-github-s-theme.yaml index 8dfdbbbc..31e68aa5 100644 --- a/themes/definetely-not-github-s-theme.yaml +++ b/themes/definetely-not-github-s-theme.yaml @@ -8,6 +8,7 @@ source: author: "vhespanha" repo: "https://github.com/vhespanha/dngh-vscode" url: "https://marketplace.visualstudio.com/items?itemName=vhespanha.dngh-vscode" + formats: null colors: bg: "#0F0F0F" fg: "#E6EDF3" diff --git a/themes/definition-theme2023.yaml b/themes/definition-theme2023.yaml deleted file mode 100644 index cbe038d0..00000000 --- a/themes/definition-theme2023.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Definition-theme2023" -source: - marketplace_id: "Mainframeai.dfn2023theme" - version: "0.4.5" - installs: 196 - rating: 0 - ratings: 0 - author: "Mainframeai" - repo: "https://github.com/mainframeai/mainframai.neon-verdigris-plus-theme-main" - url: "https://marketplace.visualstudio.com/items?itemName=Mainframeai.dfn2023theme" -colors: - bg: "#272B34" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 266 - pair: null - contrast: - fg: 76.5 - black: 0 - red: 23.7 - green: 50 - yellow: 82.6 - blue: 24.4 - magenta: 26.7 - cyan: 44.5 - white: 87 - brightBlack: 19 - brightRed: 35.5 - brightGreen: 60.5 - brightYellow: 92.6 - brightBlue: 37 - brightMagenta: 42.4 - brightCyan: 52.4 - brightWhite: 87 diff --git a/themes/dejaypiii.yaml b/themes/dejaypiii.yaml index e96bd045..71c3de95 100644 --- a/themes/dejaypiii.yaml +++ b/themes/dejaypiii.yaml @@ -8,6 +8,7 @@ source: author: "Johann-Peter Duchon" repo: "https://github.com/dejaypiii/dejaypiii-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dejaypiii.dejaypiii-theme" + formats: null colors: bg: "#181818" fg: "#E4E4EF" diff --git a/themes/dekirisu-s-rust-theme.yaml b/themes/dekirisu-s-rust-theme.yaml deleted file mode 100644 index 3bd74df8..00000000 --- a/themes/dekirisu-s-rust-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dekirisu's Rust Theme" -source: - marketplace_id: "dekirisu.dekirisu-rust-themes" - version: "0.0.1" - installs: 3898 - rating: 5 - ratings: 3 - author: "Dekirisu" - repo: "https://github.com/dekirisu/vscode-rust-themes" - url: "https://marketplace.visualstudio.com/items?itemName=dekirisu.dekirisu-rust-themes" -colors: - bg: "#101316" - fg: "#C3C6CB" - black: "#101316" - red: "#E35535" - green: "#00A884" - yellow: "#5AD8B2" - blue: "#11B7D4" - magenta: "#D46EC0" - cyan: "#5AD8B2" - white: "#C3C6CB" - brightBlack: "#11B7D4" - brightRed: "#E35535" - brightGreen: "#00A884" - brightYellow: "#5AD8B2" - brightBlue: "#11B7D4" - brightMagenta: "#D46EC0" - brightCyan: "#5AD8B2" - brightWhite: "#C3C6CB" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 71.3 - black: 0 - red: 37.1 - green: 44.8 - yellow: 70 - blue: 54.7 - magenta: 43.7 - cyan: 70 - white: 71.3 - brightBlack: 54.7 - brightRed: 37.1 - brightGreen: 44.8 - brightYellow: 70 - brightBlue: 54.7 - brightMagenta: 43.7 - brightCyan: 70 - brightWhite: 71.3 diff --git a/themes/delowar-dark-pro.yaml b/themes/delowar-dark-pro.yaml index 8a92a867..c2f1a3b8 100644 --- a/themes/delowar-dark-pro.yaml +++ b/themes/delowar-dark-pro.yaml @@ -8,6 +8,7 @@ source: author: "Delowar Hossain" repo: "https://github.com/mdhossain-2437/open-source-the-compiled-thought-themes" url: "https://marketplace.visualstudio.com/items?itemName=DelowarHossain.compiled-thought-themes" + formats: null colors: bg: "#0D1117" fg: "#E6EDF3" diff --git a/themes/delowar-monokai-pro.yaml b/themes/delowar-monokai-pro.yaml index cd6d92cc..265c7bcb 100644 --- a/themes/delowar-monokai-pro.yaml +++ b/themes/delowar-monokai-pro.yaml @@ -8,6 +8,7 @@ source: author: "Delowar Hossain" repo: "https://github.com/mdhossain-2437/open-source-the-compiled-thought-themes" url: "https://marketplace.visualstudio.com/items?itemName=DelowarHossain.compiled-thought-themes" + formats: null colors: bg: "#2D2A2E" fg: "#FCFCFA" diff --git a/themes/delowar-ocean-blue.yaml b/themes/delowar-ocean-blue.yaml index b37b1a24..caa0ab83 100644 --- a/themes/delowar-ocean-blue.yaml +++ b/themes/delowar-ocean-blue.yaml @@ -8,6 +8,7 @@ source: author: "Delowar Hossain" repo: "https://github.com/mdhossain-2437/open-source-the-compiled-thought-themes" url: "https://marketplace.visualstudio.com/items?itemName=DelowarHossain.compiled-thought-themes" + formats: null colors: bg: "#0F1419" fg: "#BFDBFE" diff --git a/themes/demon-dark-pro.yaml b/themes/demon-dark-pro.yaml index cc3db1c9..f9579876 100644 --- a/themes/demon-dark-pro.yaml +++ b/themes/demon-dark-pro.yaml @@ -8,6 +8,7 @@ source: author: "mrsiddharthsolanki" repo: "https://github.com/mrsiddharthsolanki/demon-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=mrsiddharthsolanki.demon-dark-pro-theme" + formats: null colors: bg: "#0D0D0D" fg: "#E8E8E8" diff --git a/themes/demon-light-pro.yaml b/themes/demon-light-pro.yaml index 26b556a7..f8868e32 100644 --- a/themes/demon-light-pro.yaml +++ b/themes/demon-light-pro.yaml @@ -8,6 +8,7 @@ source: author: "mrsiddharthsolanki" repo: "https://github.com/mrsiddharthsolanki/demon-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=mrsiddharthsolanki.demon-dark-pro-theme" + formats: null colors: bg: "#F5F5F5" fg: "#2C2C2C" diff --git a/themes/demon-slayer-light-theme.yaml b/themes/demon-slayer-light-theme.yaml index 3a491096..8f5372dc 100644 --- a/themes/demon-slayer-light-theme.yaml +++ b/themes/demon-slayer-light-theme.yaml @@ -1,13 +1,14 @@ -name: "Demon Slayer Light Theme" +name: "Demon-Slayer-Light-Theme" source: marketplace_id: "TeteDeCactus.demon-slayer-light-theme" version: "0.0.1" - installs: 8489 + installs: 8496 rating: 0 ratings: 0 author: "TeteDeCactus" repo: "https://github.com/tetedecactus/VScode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=TeteDeCactus.demon-slayer-light-theme" + formats: null colors: bg: "#EEEEED" fg: "#004CFF" diff --git a/themes/demon.yaml b/themes/demon.yaml deleted file mode 100644 index 72c8b0b8..00000000 --- a/themes/demon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Demon" -source: - marketplace_id: "Jmenabc.Demon-Hunter" - version: "0.0.1" - installs: 236 - rating: 0 - ratings: 0 - author: "Jmenabc" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Jmenabc.Demon-Hunter" -colors: - bg: "#111111" - fg: "#7D85FF" - black: "#545454" - red: "#CD3131" - green: "#31C089" - yellow: "#E5E510" - blue: "#277AD5" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#A1A1A1" - brightBlack: "#777777" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 42.9 - black: 15.2 - red: 27.2 - green: 56.2 - yellow: 86.1 - blue: 31.5 - magenta: 30.3 - cyan: 48.1 - white: 50.9 - brightBlack: 30.1 - brightRed: 39.1 - brightGreen: 64 - brightYellow: 96.1 - brightBlue: 40.5 - brightMagenta: 45.9 - brightCyan: 55.9 - brightWhite: 90.5 diff --git a/themes/desert-night.yaml b/themes/desert-night.yaml deleted file mode 100644 index 57bb1517..00000000 --- a/themes/desert-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Desert-Night" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#141415" - fg: "#EBEBD0" - black: "#141415" - red: "#811D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#629DAC" - magenta: "#629DAC" - cyan: "#29C3A0" - white: "#EBEBD0" - brightBlack: "#141415" - brightRed: "#811D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#629DAC" - brightMagenta: "#629DAC" - brightCyan: "#29C3A0" - brightWhite: "#EBEBD0" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 92.9 - black: 0 - red: 10 - green: 57.9 - yellow: 52 - blue: 44.1 - magenta: 44.1 - cyan: 57.9 - white: 92.9 - brightBlack: 0 - brightRed: 10 - brightGreen: 57.9 - brightYellow: 52 - brightBlue: 44.1 - brightMagenta: 44.1 - brightCyan: 57.9 - brightWhite: 92.9 diff --git a/themes/desert-tide.yaml b/themes/desert-tide.yaml index 148ae67f..96312c99 100644 --- a/themes/desert-tide.yaml +++ b/themes/desert-tide.yaml @@ -8,6 +8,7 @@ source: author: "Krisada-3131" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Krisada-3131.serpentine-syntax" + formats: null colors: bg: "#344B52" fg: "#DEC583" diff --git a/themes/desert.yaml b/themes/desert.yaml deleted file mode 100644 index a2f5ff9d..00000000 --- a/themes/desert.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Desert" -source: - marketplace_id: "AFLO.desert-vim" - version: "1.0.6" - installs: 791 - rating: 0 - ratings: 0 - author: "AFLO" - repo: "https://github.com/Ayoobf/desert-vim" - url: "https://marketplace.visualstudio.com/items?itemName=AFLO.desert-vim" -colors: - bg: "#333333" - fg: "#FFFFFF" - black: "#000000" - red: "#FFA0A0" - green: "#86D886" - yellow: "#F0E68C" - blue: "#87CEEB" - magenta: "#FFA0A0" - cyan: "#FFDAB9" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#FFA0A0" - brightGreen: "#86D886" - brightYellow: "#F0E68C" - brightBlue: "#87CEEB" - brightMagenta: "#FFA0A0" - brightCyan: "#FFDAB9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 102 - black: 0 - red: 59.4 - green: 65.9 - yellow: 84.1 - blue: 65.3 - magenta: 59.4 - cyan: 82.4 - white: 102 - brightBlack: 0 - brightRed: 59.4 - brightGreen: 65.9 - brightYellow: 84.1 - brightBlue: 65.3 - brightMagenta: 59.4 - brightCyan: 82.4 - brightWhite: 102 diff --git a/themes/designcourse-theme.yaml b/themes/designcourse-theme.yaml deleted file mode 100644 index f81351e4..00000000 --- a/themes/designcourse-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DesignCourse Theme" -source: - marketplace_id: "DesignCourse.designcourse" - version: "0.0.1" - installs: 3418 - rating: 5 - ratings: 2 - author: "DesignCourse" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=DesignCourse.designcourse" -colors: - bg: "#222226" - fg: "#DDDDDD" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#B1B1C4" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 83.5 - black: 0 - red: 25.2 - green: 51.5 - yellow: 84.2 - blue: 26 - magenta: 28.3 - cyan: 46.1 - white: 58.4 - brightBlack: 20.6 - brightRed: 37.1 - brightGreen: 62.1 - brightYellow: 94.2 - brightBlue: 38.5 - brightMagenta: 43.9 - brightCyan: 53.9 - brightWhite: 88.6 diff --git a/themes/designonev2.yaml b/themes/designonev2.yaml index 607a5899..2f5fb2cb 100644 --- a/themes/designonev2.yaml +++ b/themes/designonev2.yaml @@ -8,6 +8,7 @@ source: author: "danilamdesign" repo: null url: "https://marketplace.visualstudio.com/items?itemName=danilamdesign.designone-v2" + formats: null colors: bg: "#282C3D" fg: "#8595AD" diff --git a/themes/dessert.yaml b/themes/dessert.yaml index 05519714..4fa81094 100644 --- a/themes/dessert.yaml +++ b/themes/dessert.yaml @@ -8,6 +8,7 @@ source: author: "curtisj44" repo: "https://github.com/curtisj44/dessert-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=curtisj44.dessert" + formats: null colors: bg: "#2B2B2B" fg: "#C0C0C0" diff --git a/themes/deus-ex-md-dark.yaml b/themes/deus-ex-md-dark.yaml index dd541788..500f44dd 100644 --- a/themes/deus-ex-md-dark.yaml +++ b/themes/deus-ex-md-dark.yaml @@ -8,6 +8,7 @@ source: author: "NosAve" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NosAve.nosave" + formats: null colors: bg: "#151515" fg: "#FFB300" diff --git a/themes/dev-code-theme-color-theme.yaml b/themes/dev-code-theme-color-theme.yaml index 5a000536..e3e0965f 100644 --- a/themes/dev-code-theme-color-theme.yaml +++ b/themes/dev-code-theme-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.dev-code-theme" + formats: null colors: bg: "#282A36" fg: "#F8F8F2" diff --git a/themes/dev-dark-fork-fork.yaml b/themes/dev-dark-fork-fork.yaml deleted file mode 100644 index a208081f..00000000 --- a/themes/dev-dark-fork-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dev+ Dark - Fork - Fork" -source: - marketplace_id: "Thzin.Thzin-theme" - version: "1.0.2" - installs: 2034 - rating: 0 - ratings: 0 - author: "Thzin" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Thzin.Thzin-theme" -colors: - bg: "#191A1F" - fg: "#D3D3D3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.5 - black: 0 - red: 26.4 - green: 52.6 - yellow: 85.3 - blue: 27.1 - magenta: 29.4 - cyan: 47.2 - white: 89.7 - brightBlack: 21.7 - brightRed: 38.2 - brightGreen: 63.2 - brightYellow: 95.3 - brightBlue: 39.6 - brightMagenta: 45 - brightCyan: 55 - brightWhite: 89.7 diff --git a/themes/dev-dev-color-theme.yaml b/themes/dev-dev-color-theme.yaml index 5c36a994..bfebbf1a 100644 --- a/themes/dev-dev-color-theme.yaml +++ b/themes/dev-dev-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.dev-code-theme" + formats: null colors: bg: "#282A36" fg: "#E6E6E6" diff --git a/themes/dev-tachgurbanov.yaml b/themes/dev-tachgurbanov.yaml index a8945d86..294c62ba 100644 --- a/themes/dev-tachgurbanov.yaml +++ b/themes/dev-tachgurbanov.yaml @@ -8,6 +8,7 @@ source: author: "dark - dev.tachgurbanov" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dark-devtachgurbanov.dark-dev-tachgurbanov" + formats: null colors: bg: "#1E1F2A" fg: "#D4D4D4" diff --git a/themes/dev-theme-pro-nebula-mist.yaml b/themes/dev-theme-pro-nebula-mist.yaml index 98731fd2..f723108b 100644 --- a/themes/dev-theme-pro-nebula-mist.yaml +++ b/themes/dev-theme-pro-nebula-mist.yaml @@ -8,6 +8,7 @@ source: author: "Faizan Ashiq" repo: "https://github.com/FaizanAshiq/dev-theme-pro" url: "https://marketplace.visualstudio.com/items?itemName=FaizanAshiq.dev-theme-pro" + formats: null colors: bg: "#1F1F1F" fg: "#BECEE0" diff --git a/themes/dev-theme-pro-nebula-void.yaml b/themes/dev-theme-pro-nebula-void.yaml index 7c1cc4a6..de51cac1 100644 --- a/themes/dev-theme-pro-nebula-void.yaml +++ b/themes/dev-theme-pro-nebula-void.yaml @@ -8,6 +8,7 @@ source: author: "Faizan Ashiq" repo: "https://github.com/FaizanAshiq/dev-theme-pro" url: "https://marketplace.visualstudio.com/items?itemName=FaizanAshiq.dev-theme-pro" + formats: null colors: bg: "#141414" fg: "#BECEE0" diff --git a/themes/dev-theme-pro-ocean-mist.yaml b/themes/dev-theme-pro-ocean-mist.yaml index 1541936d..a5796ba4 100644 --- a/themes/dev-theme-pro-ocean-mist.yaml +++ b/themes/dev-theme-pro-ocean-mist.yaml @@ -8,6 +8,7 @@ source: author: "Faizan Ashiq" repo: "https://github.com/FaizanAshiq/dev-theme-pro" url: "https://marketplace.visualstudio.com/items?itemName=FaizanAshiq.dev-theme-pro" + formats: null colors: bg: "#1F1F1F" fg: "#BECEE0" diff --git a/themes/dev-theme-pro-ocean-void.yaml b/themes/dev-theme-pro-ocean-void.yaml index e75bb8ed..c07b3f49 100644 --- a/themes/dev-theme-pro-ocean-void.yaml +++ b/themes/dev-theme-pro-ocean-void.yaml @@ -8,6 +8,7 @@ source: author: "Faizan Ashiq" repo: "https://github.com/FaizanAshiq/dev-theme-pro" url: "https://marketplace.visualstudio.com/items?itemName=FaizanAshiq.dev-theme-pro" + formats: null colors: bg: "#141414" fg: "#BECEE0" diff --git a/themes/dev-theme.yaml b/themes/dev-theme.yaml index 5c346f74..9193b051 100644 --- a/themes/dev-theme.yaml +++ b/themes/dev-theme.yaml @@ -8,6 +8,7 @@ source: author: "naqvi" repo: "https://github.com/nrcool/vscode-theme-dev-theme" url: "https://marketplace.visualstudio.com/items?itemName=naqvi.dev-theme" + formats: null colors: bg: "#000000" fg: "#D4D4D4" diff --git a/themes/devcode.yaml b/themes/devcode.yaml index e7d0886b..11dc5de1 100644 --- a/themes/devcode.yaml +++ b/themes/devcode.yaml @@ -8,6 +8,7 @@ source: author: "Mokudjinn" repo: "https://github.com/Mokudjinn/DevCode-Plus" url: "https://marketplace.visualstudio.com/items?itemName=Mokudjinn.devcodeplus" + formats: null colors: bg: "#1B1B1B" fg: "#FFFAD2" diff --git a/themes/devdojo-seppuku.yaml b/themes/devdojo-seppuku.yaml index 7972e664..22450e21 100644 --- a/themes/devdojo-seppuku.yaml +++ b/themes/devdojo-seppuku.yaml @@ -8,6 +8,7 @@ source: author: "A. Jay Chambers" repo: "https://github.com/JSSamurai/DevDojoSeppuku" url: "https://marketplace.visualstudio.com/items?itemName=JSSamurai.devdojoseppuku" + formats: null colors: bg: "#040A11" fg: "#CCC840" diff --git a/themes/develer-dark.yaml b/themes/develer-dark.yaml index 17b3ca41..ebffc7b7 100644 --- a/themes/develer-dark.yaml +++ b/themes/develer-dark.yaml @@ -6,6 +6,7 @@ source: author: "Gennaro" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gennarobosone.develer-dark" + formats: null colors: bg: "#000F14" fg: "#416B79" diff --git a/themes/developer-friendly-dark.yaml b/themes/developer-friendly-dark.yaml deleted file mode 100644 index bd04aa00..00000000 --- a/themes/developer-friendly-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Developer Friendly Dark" -source: - marketplace_id: "DevMamudulsetup.devmamudulsetup" - version: "0.0.2" - installs: 2 - rating: 0 - ratings: 0 - author: "DevMamudulsetup" - repo: "https://github.com/mamudulislam/devmamudulsetup" - url: "https://marketplace.visualstudio.com/items?itemName=DevMamudulsetup.devmamudulsetup" -colors: - bg: "#1E1E2E" - fg: "#CDD6F4" - black: "#45475A" - red: "#F38BA8" - green: "#A6E3A1" - yellow: "#F9E2AF" - blue: "#89B4FA" - magenta: "#F5C2E7" - cyan: "#94E2D5" - white: "#CDD6F4" - brightBlack: "#6C7086" - brightRed: "#EBA0AC" - brightGreen: "#94E2D5" - brightYellow: "#F2CDCD" - brightBlue: "#89DCEB" - brightMagenta: "#F5E0DE" - brightCyan: "#A6E3A1" - brightWhite: "#BAC2DE" -meta: - mode: "dark" - accent: "red" - hue: 284 - pair: null - contrast: - fg: 80 - black: 9.3 - red: 54.7 - green: 78.3 - yellow: 88.4 - blue: 59.1 - magenta: 76.7 - cyan: 78.2 - white: 80 - brightBlack: 25.8 - brightRed: 60 - brightGreen: 78.2 - brightYellow: 79.4 - brightBlue: 75.6 - brightMagenta: 88.7 - brightCyan: 78.3 - brightWhite: 68.1 diff --git a/themes/developers-theme-fork.yaml b/themes/developers-theme-fork.yaml deleted file mode 100644 index 5fc16ea4..00000000 --- a/themes/developers-theme-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Developers theme - Fork" -source: - marketplace_id: "Rajeshwaran.developer-theme-dark" - version: "5.0.0" - installs: 162179 - rating: 5 - ratings: 4 - author: "Rajeshwaran" - repo: "https://github.com/Rajeshwaran2001/developer-theme-dark" - url: "https://marketplace.visualstudio.com/items?itemName=Rajeshwaran.developer-theme-dark" -colors: - bg: "#141026" - fg: "#FFFFFF" - black: "#715A5A" - red: "#FF0000" - green: "#0DBC79" - yellow: "#FFFF00" - blue: "#2472C8" - magenta: "#FF04FF" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#909090" - brightRed: "#F14C4C" - brightGreen: "#00F995" - brightYellow: "#F5F543" - brightBlue: "#0076F9" - brightMagenta: "#FF7DFF" - brightCyan: "#02CDFF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 290 - pair: null - contrast: - fg: 107.2 - black: 19.6 - red: 36.8 - green: 53.3 - yellow: 102 - blue: 27.7 - magenta: 45.5 - cyan: 47.9 - white: 90.3 - brightBlack: 41.9 - brightRed: 38.9 - brightGreen: 84.2 - brightYellow: 95.9 - brightBlue: 32.6 - brightMagenta: 59.2 - brightCyan: 67 - brightWhite: 90.3 diff --git a/themes/devhaven-dracula.yaml b/themes/devhaven-dracula.yaml index e61fc935..e5ab577d 100644 --- a/themes/devhaven-dracula.yaml +++ b/themes/devhaven-dracula.yaml @@ -8,6 +8,7 @@ source: author: "DevHaven" repo: "https://github.com/BlankRiser/DevHaven" url: "https://marketplace.visualstudio.com/items?itemName=DevHaven.devhaven" + formats: null colors: bg: "#052529" fg: "#D6DEEB" diff --git a/themes/devjam-dark.yaml b/themes/devjam-dark.yaml index bf6eaae7..6482ca5f 100644 --- a/themes/devjam-dark.yaml +++ b/themes/devjam-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "alisonsantosofc.devjam-theme" version: "0.0.5" installs: 163 + rating: 0 + ratings: 0 author: "alisonsantosofc" repo: null url: "https://marketplace.visualstudio.com/items?itemName=alisonsantosofc.devjam-theme" + formats: null colors: bg: "#131724" fg: "#F2F2F2" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: 271 + pair: null contrast: fg: 98.3 black: 0 diff --git a/themes/devmedia-dark-modern.yaml b/themes/devmedia-dark-modern.yaml index 8eca0a16..e244f85f 100644 --- a/themes/devmedia-dark-modern.yaml +++ b/themes/devmedia-dark-modern.yaml @@ -8,6 +8,7 @@ source: author: "João M J Braga" repo: "https://github.com/joaomjbraga/devmedia-theme" url: "https://marketplace.visualstudio.com/items?itemName=joaomjbraga.devmedia-theme" + formats: null colors: bg: "#1E2227" fg: "#E8ECF2" diff --git a/themes/devmedia-dark.yaml b/themes/devmedia-dark.yaml index 71fd3061..4f3e9715 100644 --- a/themes/devmedia-dark.yaml +++ b/themes/devmedia-dark.yaml @@ -8,6 +8,7 @@ source: author: "João M J Braga" repo: "https://github.com/joaomjbraga/devmedia-theme" url: "https://marketplace.visualstudio.com/items?itemName=joaomjbraga.devmedia-theme" + formats: null colors: bg: "#1C1C1C" fg: "#F0F2F7" diff --git a/themes/devmedia-light.yaml b/themes/devmedia-light.yaml index c23ac393..02a13627 100644 --- a/themes/devmedia-light.yaml +++ b/themes/devmedia-light.yaml @@ -8,6 +8,7 @@ source: author: "João M J Braga" repo: "https://github.com/joaomjbraga/devmedia-theme" url: "https://marketplace.visualstudio.com/items?itemName=joaomjbraga.devmedia-theme" + formats: null colors: bg: "#F0F2F5" fg: "#1F2F36" diff --git a/themes/devoption-light.yaml b/themes/devoption-light.yaml index b8082600..fe0c774b 100644 --- a/themes/devoption-light.yaml +++ b/themes/devoption-light.yaml @@ -8,6 +8,7 @@ source: author: "DevOption" repo: "git+https://github.com/devoption/vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=DevOption.devoption-theme" + formats: null colors: bg: "#F1F5F8" fg: "#3D4852" diff --git a/themes/devr.yaml b/themes/devr.yaml index d8eb18fa..338a8d5b 100644 --- a/themes/devr.yaml +++ b/themes/devr.yaml @@ -8,6 +8,7 @@ source: author: "DevR" repo: "https://github.com/ratul-devR/Monokai-Dark" url: "https://marketplace.visualstudio.com/items?itemName=DevR.monokai-dark" + formats: null colors: bg: "#001528" fg: "#F8F8F2" diff --git a/themes/devsena-ultra-dark.yaml b/themes/devsena-ultra-dark.yaml deleted file mode 100644 index 3b5d99d4..00000000 --- a/themes/devsena-ultra-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DevSena (ultra dark)" -source: - marketplace_id: "AsutoshSahoo.code-in-dark" - version: "0.0.1" - installs: 21 - rating: 0 - ratings: 0 - author: "Asutosh Sahoo" - repo: "https://github.com/DearAsutosh/DevSena-vsCode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=AsutoshSahoo.code-in-dark" -colors: - bg: "#000000" - fg: "#CDC9FF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#6F6F6F" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 77.1 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 27 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/devtheme.yaml b/themes/devtheme.yaml index 78263f69..f23e69d5 100644 --- a/themes/devtheme.yaml +++ b/themes/devtheme.yaml @@ -1,4 +1,4 @@ -name: "DevTheme" +name: "devTheme" source: marketplace_id: "devTheme.devtheme" version: "0.0.3" @@ -8,6 +8,7 @@ source: author: "devTheme" repo: "https://github.com/mrgold92/devtheme" url: "https://marketplace.visualstudio.com/items?itemName=devTheme.devtheme" + formats: null colors: bg: "#353538" fg: "#D4D4D4" diff --git a/themes/devx-dark.yaml b/themes/devx-dark.yaml index 2cd4a26c..80eec04b 100644 --- a/themes/devx-dark.yaml +++ b/themes/devx-dark.yaml @@ -2,12 +2,13 @@ name: "DevX Dark" source: marketplace_id: "devx-dark-theme.devx-dark-theme" version: "0.0.1" - installs: 228 + installs: 230 rating: 5 ratings: 1 author: "DevX Dark Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=devx-dark-theme.devx-dark-theme" + formats: null colors: bg: "#1E2125" fg: "#ABB2BF" diff --git a/themes/dew-grey.yaml b/themes/dew-grey.yaml index 14d5f26d..4b419b77 100644 --- a/themes/dew-grey.yaml +++ b/themes/dew-grey.yaml @@ -8,6 +8,7 @@ source: author: "DEW" repo: "https://github.com/dewanshDT/DEW-GREY" url: "https://marketplace.visualstudio.com/items?itemName=DEW.dew-grey" + formats: null colors: bg: "#182038" fg: "#EEFFFF" diff --git a/themes/dewart.yaml b/themes/dewart.yaml index 98a8d2ca..cc92c586 100644 --- a/themes/dewart.yaml +++ b/themes/dewart.yaml @@ -8,6 +8,7 @@ source: author: "DewArt" repo: "https://github.com/DewArt-studio/dewart-color-themes" url: "https://marketplace.visualstudio.com/items?itemName=DewArt.dewart-color-themes" + formats: null colors: bg: "#0B0B13" fg: "#CCCCCC" diff --git a/themes/dfp-idle.yaml b/themes/dfp-idle.yaml index ba2bb214..974382c0 100644 --- a/themes/dfp-idle.yaml +++ b/themes/dfp-idle.yaml @@ -8,6 +8,7 @@ source: author: "anto" repo: null url: "https://marketplace.visualstudio.com/items?itemName=anto.dafluffypotato-s-idle-theme" + formats: null colors: bg: "#142329" fg: "#BAC5C8" diff --git a/themes/dhamma-dark.yaml b/themes/dhamma-dark.yaml index f9f5c046..90b6eeed 100644 --- a/themes/dhamma-dark.yaml +++ b/themes/dhamma-dark.yaml @@ -8,6 +8,7 @@ source: author: "Tanmay Balwa" repo: "https://github.com/your-username/dhamma-theme" url: "https://marketplace.visualstudio.com/items?itemName=tanmaybalwa.dhamma-theme" + formats: null colors: bg: "#1E1E1E" fg: "#E8E4DB" diff --git a/themes/dhamma-light.yaml b/themes/dhamma-light.yaml index b0861def..ee4155c3 100644 --- a/themes/dhamma-light.yaml +++ b/themes/dhamma-light.yaml @@ -8,6 +8,7 @@ source: author: "Tanmay Balwa" repo: "https://github.com/your-username/dhamma-theme" url: "https://marketplace.visualstudio.com/items?itemName=tanmaybalwa.dhamma-theme" + formats: null colors: bg: "#F5F1E8" fg: "#2B2B2B" diff --git a/themes/dharam-gfx-anthracite.yaml b/themes/dharam-gfx-anthracite.yaml index 7a1b2daf..451d358e 100644 --- a/themes/dharam-gfx-anthracite.yaml +++ b/themes/dharam-gfx-anthracite.yaml @@ -8,6 +8,7 @@ source: author: "dharmendra kumar" repo: "https://github.com/dharam-gfx/dharam-gfx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" + formats: null colors: bg: "#181A1F" fg: "#C8CCD4" diff --git a/themes/dharam-gfx-arc-blueberry.yaml b/themes/dharam-gfx-arc-blueberry.yaml index c94027a8..281d63ea 100644 --- a/themes/dharam-gfx-arc-blueberry.yaml +++ b/themes/dharam-gfx-arc-blueberry.yaml @@ -8,6 +8,7 @@ source: author: "dharmendra kumar" repo: "https://github.com/dharam-gfx/dharam-gfx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" + formats: null colors: bg: "#111422" fg: "#BCC1DC" diff --git a/themes/dharam-gfx-arc-eggplant.yaml b/themes/dharam-gfx-arc-eggplant.yaml index 6a0f97df..220b5c6a 100644 --- a/themes/dharam-gfx-arc-eggplant.yaml +++ b/themes/dharam-gfx-arc-eggplant.yaml @@ -8,6 +8,7 @@ source: author: "dharmendra kumar" repo: "https://github.com/dharam-gfx/dharam-gfx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" + formats: null colors: bg: "#181421" fg: "#C8C1D9" diff --git a/themes/dharam-gfx-arc-reversed.yaml b/themes/dharam-gfx-arc-reversed.yaml index 6f8cf915..e958ccd5 100644 --- a/themes/dharam-gfx-arc-reversed.yaml +++ b/themes/dharam-gfx-arc-reversed.yaml @@ -8,6 +8,7 @@ source: author: "dharmendra kumar" repo: "https://github.com/dharam-gfx/dharam-gfx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" + formats: null colors: bg: "#121721" fg: "#C5CDDE" diff --git a/themes/dharam-gfx-gold.yaml b/themes/dharam-gfx-gold.yaml index da9a32a8..2af6ac61 100644 --- a/themes/dharam-gfx-gold.yaml +++ b/themes/dharam-gfx-gold.yaml @@ -8,6 +8,7 @@ source: author: "dharmendra kumar" repo: "https://github.com/dharam-gfx/dharam-gfx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" + formats: null colors: bg: "#111418" fg: "#BEC6D0" diff --git a/themes/dharam-gfx-hacker-theme.yaml b/themes/dharam-gfx-hacker-theme.yaml index 55cb8ee9..8b38c969 100644 --- a/themes/dharam-gfx-hacker-theme.yaml +++ b/themes/dharam-gfx-hacker-theme.yaml @@ -8,6 +8,7 @@ source: author: "dharmendra kumar" repo: "https://github.com/dharam-gfx/dharam-gfx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" + formats: null colors: bg: "#07001C" fg: "#0094C6" diff --git a/themes/dharam-gfx-hight-contrast.yaml b/themes/dharam-gfx-hight-contrast.yaml deleted file mode 100644 index 1e3097d7..00000000 --- a/themes/dharam-gfx-hight-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dharam-gfx-Hight-Contrast" -source: - marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" - version: "0.0.7" - installs: 660 - rating: 5 - ratings: 1 - author: "dharmendra kumar" - repo: "https://github.com/dharam-gfx/dharam-gfx-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" -colors: - bg: "#191A2E" - fg: "#F8F8F2" - black: "#21222C" - red: "#FF5555" - green: "#20E3B2" - yellow: "#FDE181" - blue: "#BD93F9" - magenta: "#FF6BCB" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#8D92FF" - brightRed: "#FF6E6E" - brightGreen: "#20E3B2" - brightYellow: "#EAC394" - brightBlue: "#BD93F9" - brightMagenta: "#FF6BCB" - brightCyan: "#2CCCFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 281 - pair: null - contrast: - fg: 101.4 - black: 0 - red: 42.8 - green: 73 - yellow: 87.9 - blue: 53.1 - magenta: 51.1 - cyan: 83.4 - white: 101.4 - brightBlack: 47.6 - brightRed: 48.3 - brightGreen: 73 - brightYellow: 72.6 - brightBlue: 53.1 - brightMagenta: 51.1 - brightCyan: 65.9 - brightWhite: 106.3 diff --git a/themes/dharam-gfx-webdevcody.yaml b/themes/dharam-gfx-webdevcody.yaml index c40a2bac..7e137a70 100644 --- a/themes/dharam-gfx-webdevcody.yaml +++ b/themes/dharam-gfx-webdevcody.yaml @@ -8,6 +8,7 @@ source: author: "dharmendra kumar" repo: "https://github.com/dharam-gfx/dharam-gfx-theme" url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" + formats: null colors: bg: "#00171A" fg: "#81F0FE" diff --git a/themes/diabo-theme.yaml b/themes/diabo-theme.yaml deleted file mode 100644 index 5fa08b27..00000000 --- a/themes/diabo-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Diabo Theme" -source: - marketplace_id: "vinciuscr.diabo" - version: "0.0.1" - installs: 62 - rating: 0 - ratings: 0 - author: "Vinícius Castelani Reck" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=vinciuscr.diabo" -colors: - bg: "#0F0303" - fg: "#C7592A" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 22 - pair: null - contrast: - fg: 32.5 - black: 0 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.3 - magenta: 30.7 - cyan: 48.5 - white: 90.9 - brightBlack: 23 - brightRed: 39.5 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 40.9 - brightMagenta: 46.3 - brightCyan: 56.3 - brightWhite: 90.9 diff --git a/themes/diamond-theme.yaml b/themes/diamond-theme.yaml index 13a17db8..d840643f 100644 --- a/themes/diamond-theme.yaml +++ b/themes/diamond-theme.yaml @@ -8,6 +8,7 @@ source: author: "DiaxManPl" repo: "https://github.com/DiaxManPl/DiamondTheme" url: "https://marketplace.visualstudio.com/items?itemName=DiaxManPl.diamondtheme" + formats: null colors: bg: "#343036" fg: "#FFFFFF" diff --git a/themes/digitaliss-light.yaml b/themes/digitaliss-light.yaml index f1a31176..011fdaff 100644 --- a/themes/digitaliss-light.yaml +++ b/themes/digitaliss-light.yaml @@ -8,6 +8,7 @@ source: author: "dgtlss" repo: "https://github.com/dgtlss/digitaliss" url: "https://marketplace.visualstudio.com/items?itemName=dgtlss.digitaliss" + formats: null colors: bg: "#FAFAFA" fg: "#4A4A4A" diff --git a/themes/digitaliss-pastel.yaml b/themes/digitaliss-pastel.yaml index df732acc..7cbc2250 100644 --- a/themes/digitaliss-pastel.yaml +++ b/themes/digitaliss-pastel.yaml @@ -8,6 +8,7 @@ source: author: "dgtlss" repo: "https://github.com/dgtlss/digitaliss" url: "https://marketplace.visualstudio.com/items?itemName=dgtlss.digitaliss" + formats: null colors: bg: "#1E1D2B" fg: "#D4D4D4" diff --git a/themes/digitaliss.yaml b/themes/digitaliss.yaml index 8030eac2..617ffabf 100644 --- a/themes/digitaliss.yaml +++ b/themes/digitaliss.yaml @@ -8,6 +8,7 @@ source: author: "dgtlss" repo: "https://github.com/dgtlss/digitaliss" url: "https://marketplace.visualstudio.com/items?itemName=dgtlss.digitaliss" + formats: null colors: bg: "#1A1925" fg: "#D4D4D4" diff --git a/themes/dimi-theme-dark.yaml b/themes/dimi-theme-dark.yaml deleted file mode 100644 index cf1f1323..00000000 --- a/themes/dimi-theme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dimi Theme (Dark)" -source: - marketplace_id: "Dimi.dimi" - version: "1.0.9" - installs: 2863 - rating: 5 - ratings: 1 - author: "Dimi" - repo: "https://github.com/Dimi15/dimi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Dimi.dimi" -colors: - bg: "#242A36" - fg: "#CED4DF" - black: "#313848" - red: "#B55760" - green: "#99B482" - yellow: "#E1C181" - blue: "#7797B7" - magenta: "#AA84A3" - cyan: "#7EB6C6" - white: "#DBDFE6" - brightBlack: "#424C60" - brightRed: "#B55760" - brightGreen: "#99B482" - brightYellow: "#E1C181" - brightBlue: "#7797B7" - brightMagenta: "#AA84A3" - brightCyan: "#85B2B1" - brightWhite: "#E2E5EA" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 76.4 - black: 0 - red: 25.9 - green: 53.3 - yellow: 67.7 - blue: 40.7 - magenta: 38.6 - cyan: 54.3 - white: 83.2 - brightBlack: 8.8 - brightRed: 25.9 - brightGreen: 53.3 - brightYellow: 67.7 - brightBlue: 40.7 - brightMagenta: 38.6 - brightCyan: 52.3 - brightWhite: 87 diff --git a/themes/dimi-theme-darker.yaml b/themes/dimi-theme-darker.yaml deleted file mode 100644 index dc01b6a2..00000000 --- a/themes/dimi-theme-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dimi Theme (Darker)" -source: - marketplace_id: "Dimi.dimi" - version: "1.0.9" - installs: 2863 - rating: 5 - ratings: 1 - author: "Dimi" - repo: "https://github.com/Dimi15/dimi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Dimi.dimi" -colors: - bg: "#1F2531" - fg: "#C9CFDA" - black: "#2C3343" - red: "#B0525B" - green: "#94AF7D" - yellow: "#DCBC7C" - blue: "#7292B2" - magenta: "#A57F9E" - cyan: "#79B1C1" - white: "#D6DAE1" - brightBlack: "#3D475B" - brightRed: "#B0525B" - brightGreen: "#94AF7D" - brightYellow: "#DCBC7C" - brightBlue: "#7292B2" - brightMagenta: "#A57F9E" - brightCyan: "#80ADAC" - brightWhite: "#DDE0E5" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 74.3 - black: 0 - red: 24.7 - green: 51.5 - yellow: 65.7 - blue: 39.1 - magenta: 37 - cyan: 52.6 - white: 81.1 - brightBlack: 7.9 - brightRed: 24.7 - brightGreen: 51.5 - brightYellow: 65.7 - brightBlue: 39.1 - brightMagenta: 37 - brightCyan: 50.5 - brightWhite: 84.8 diff --git a/themes/dimmed-dark-theme.yaml b/themes/dimmed-dark-theme.yaml index 29a8d9a4..68d38960 100644 --- a/themes/dimmed-dark-theme.yaml +++ b/themes/dimmed-dark-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "jamestedy.dark-theme-first" version: "1.1.2" installs: 86 + rating: 0 + ratings: 0 author: "jamestedy" repo: "https://github.com/jte0711/Dim-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=jamestedy.dark-theme-first" + formats: null colors: bg: "#001219" fg: "#D4D4D4" diff --git a/themes/dimmed-theme.yaml b/themes/dimmed-theme.yaml index 43c2844a..63a03aec 100644 --- a/themes/dimmed-theme.yaml +++ b/themes/dimmed-theme.yaml @@ -8,6 +8,7 @@ source: author: "AleCaste" repo: "https://github.com/AleCaste/dimmed-theme" url: "https://marketplace.visualstudio.com/items?itemName=AleCaste.dimmed-theme" + formats: null colors: bg: "#202122" fg: "#52645D" diff --git a/themes/dimmed.yaml b/themes/dimmed.yaml index 012b6280..42da6a75 100644 --- a/themes/dimmed.yaml +++ b/themes/dimmed.yaml @@ -2,12 +2,13 @@ name: "Dimmed" source: marketplace_id: "shoizz.dimmed" version: "0.0.3" - installs: 4853 + installs: 4856 rating: 5 ratings: 1 author: "denis" repo: "https://github.com/Shoizz/vscode-theme-dimmed" url: "https://marketplace.visualstudio.com/items?itemName=shoizz.dimmed" + formats: null colors: bg: "#1D2021" fg: "#FFFFFF" diff --git a/themes/dioximo-dark.yaml b/themes/dioximo-dark.yaml index 9e9f909f..5087a91c 100644 --- a/themes/dioximo-dark.yaml +++ b/themes/dioximo-dark.yaml @@ -8,6 +8,7 @@ source: author: "Omisai Technologies" repo: "https://github.com/omisai-tech/dioximo" url: "https://marketplace.visualstudio.com/items?itemName=omisai.dioximo" + formats: null colors: bg: "#18181B" fg: "#C6C6C8" diff --git a/themes/dioximo-light.yaml b/themes/dioximo-light.yaml index 21917140..3c0674f5 100644 --- a/themes/dioximo-light.yaml +++ b/themes/dioximo-light.yaml @@ -8,6 +8,7 @@ source: author: "Omisai Technologies" repo: "https://github.com/omisai-tech/dioximo" url: "https://marketplace.visualstudio.com/items?itemName=omisai.dioximo" + formats: null colors: bg: "#FFFFFF" fg: "#111827" diff --git a/themes/discord-onyx.yaml b/themes/discord-onyx.yaml index 8cf00f36..214ce581 100644 --- a/themes/discord-onyx.yaml +++ b/themes/discord-onyx.yaml @@ -8,6 +8,7 @@ source: author: "zangetsu002" repo: "https://github.com/zangetsu02/dark-discord-theme" url: "https://marketplace.visualstudio.com/items?itemName=zangetsu002.dark-discord-theme" + formats: null colors: bg: "#070709" fg: "#B5B4B4" diff --git a/themes/discord-theme.yaml b/themes/discord-theme.yaml index 9753451e..3b42b5ca 100644 --- a/themes/discord-theme.yaml +++ b/themes/discord-theme.yaml @@ -2,12 +2,13 @@ name: "Discord Theme" source: marketplace_id: "tanmay.discord-theme" version: "1.0.6" - installs: 61671 + installs: 61690 rating: 4.83 ratings: 6 author: "tanmay" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tanmay.discord-theme" + formats: null colors: bg: "#1F1F25" fg: "#BFC9D7" diff --git a/themes/dislexic.yaml b/themes/dislexic.yaml index 4faf3668..3aad9d69 100644 --- a/themes/dislexic.yaml +++ b/themes/dislexic.yaml @@ -2,12 +2,13 @@ name: "dislexic" source: marketplace_id: "SpeedyLom.dislexic-vscode" version: "2.1.0" - installs: 2005 + installs: 2006 rating: 5 ratings: 2 author: "SpeedyLom" repo: "https://github.com/SpeedyLom/dislexic-vscode" url: "https://marketplace.visualstudio.com/items?itemName=SpeedyLom.dislexic-vscode" + formats: null colors: bg: "#F7F3F3" fg: "#242523" diff --git a/themes/div-s-theme.yaml b/themes/div-s-theme.yaml index e02b9943..27c822f3 100644 --- a/themes/div-s-theme.yaml +++ b/themes/div-s-theme.yaml @@ -2,12 +2,13 @@ name: "Div's Theme" source: marketplace_id: "dec82000.div-s-theme" version: "0.0.4" - installs: 1155 + installs: 1156 rating: 5 ratings: 5 author: "Divyansh Jain" repo: "https://github.com/divyansh-gq/div-s-theme" url: "https://marketplace.visualstudio.com/items?itemName=dec82000.div-s-theme" + formats: null colors: bg: "#1D1D1D" fg: "#E2E2E2" diff --git a/themes/dive-bar.yaml b/themes/dive-bar.yaml index 740c3642..ffd66e7d 100644 --- a/themes/dive-bar.yaml +++ b/themes/dive-bar.yaml @@ -8,6 +8,7 @@ source: author: "mattseddon" repo: "https://github.com/mattseddon/vscode-dive-bar-theme" url: "https://marketplace.visualstudio.com/items?itemName=mattseddon.vscode-dive-bar-theme" + formats: null colors: bg: "#141322" fg: "#94B4C4" diff --git a/themes/division-group-dark-theme.yaml b/themes/division-group-dark-theme.yaml index 3d56b176..662d6c01 100644 --- a/themes/division-group-dark-theme.yaml +++ b/themes/division-group-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "diVision Group" repo: "https://github.com/diVision-Group/division-group-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=diVisionGroup.division-group-dark-theme" + formats: null colors: bg: "#0D0126" fg: "#F2F2F2" diff --git a/themes/dj-s-purple.yaml b/themes/dj-s-purple.yaml deleted file mode 100644 index da7b22df..00000000 --- a/themes/dj-s-purple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DJ's Purple" -source: - marketplace_id: "GroganSoft.djpurple" - version: "1.1.3" - installs: 121 - rating: 0 - ratings: 0 - author: "GroganSoft" - repo: "https://dev.azure.com/grogansoft/DJPurple%20VS%20Code%20Theme/" - url: "https://marketplace.visualstudio.com/items?itemName=GroganSoft.djpurple" -colors: - bg: "#171717" - fg: "#15B21F" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 47.2 - black: 0 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 90 - brightBlack: 22 - brightRed: 38.6 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90 diff --git a/themes/djolof.yaml b/themes/djolof.yaml index 3520d02a..8343ef17 100644 --- a/themes/djolof.yaml +++ b/themes/djolof.yaml @@ -8,6 +8,7 @@ source: author: "Daooda" repo: "https://github.com/daoodaba975/taaru" url: "https://marketplace.visualstudio.com/items?itemName=daoodaba975.taaru" + formats: null colors: bg: "#1C1E26" fg: "#A6A6A6" diff --git a/themes/dk-dark-high-contrast.yaml b/themes/dk-dark-high-contrast.yaml deleted file mode 100644 index 7bbf653e..00000000 --- a/themes/dk-dark-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DK Dark High Contrast" -source: - marketplace_id: "devendrakanojiya.devendrakanojiya" - version: "0.0.3" - installs: 168 - rating: 0 - ratings: 0 - author: "Devendra Kanojiya" - repo: "https://github.com/devendrakanojiya/codension" - url: "https://marketplace.visualstudio.com/items?itemName=devendrakanojiya.devendrakanojiya" -colors: - bg: "#0A0C10" - fg: "#F0F3F6" - black: "#7A828E" - red: "#FF9492" - green: "#26CD4D" - yellow: "#F0B72F" - blue: "#71B7FF" - magenta: "#CB9EFF" - cyan: "#39C5CF" - white: "#D9DEE3" - brightBlack: "#9EA7B3" - brightRed: "#FFB1AF" - brightGreen: "#4AE168" - brightYellow: "#F7C843" - brightBlue: "#91CBFF" - brightMagenta: "#DBB7FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 99.5 - black: 35.2 - red: 60.8 - green: 61.2 - yellow: 68.5 - blue: 60.7 - magenta: 60.4 - cyan: 61.7 - white: 86 - brightBlack: 53.9 - brightRed: 71.4 - brightGreen: 72.3 - brightYellow: 76.6 - brightBlue: 71.5 - brightMagenta: 71.7 - brightCyan: 70.2 - brightWhite: 107.7 diff --git a/themes/dna-helix.yaml b/themes/dna-helix.yaml deleted file mode 100644 index 84f9015a..00000000 --- a/themes/dna-helix.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DNA Helix" -source: - marketplace_id: "CodewithBismillah.chroma-library" - version: "1.2.1" - installs: 358 - rating: 5 - ratings: 1 - author: "Code with Bismillah" - repo: "https://github.com/mubashir1837/Chroma-Library" - url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" -colors: - bg: "#0A0F1A" - fg: "#E0F0FF" - black: "#000000" - red: "#FF4757" - green: "#00FF99" - yellow: "#FFA502" - blue: "#3742FA" - magenta: "#E056FD" - cyan: "#00FFCC" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#FF6B7A" - brightGreen: "#33FFAA" - brightYellow: "#FFB733" - brightBlue: "#5865F2" - brightMagenta: "#E67EFF" - brightCyan: "#33FFDD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: 265 - pair: null - contrast: - fg: 96.3 - black: 0 - red: 41.9 - green: 87.8 - yellow: 64.3 - blue: 21.2 - magenta: 45.2 - cyan: 89.4 - white: 107.5 - brightBlack: 22.6 - brightRed: 49.1 - brightGreen: 88.6 - brightYellow: 71 - brightBlue: 29.7 - brightMagenta: 55 - brightCyan: 90.5 - brightWhite: 107.5 diff --git a/themes/dodimmed-dark.yaml b/themes/dodimmed-dark.yaml deleted file mode 100644 index 74decdf1..00000000 --- a/themes/dodimmed-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DoDimmed Dark" -source: - marketplace_id: "doolooper.do-dimmed" - version: "0.1.0" - installs: 558 - rating: 0 - ratings: 0 - author: "Mahdi Harati" - repo: "https://github.com/Doolooper/DoDimmed" - url: "https://marketplace.visualstudio.com/items?itemName=doolooper.do-dimmed" -colors: - bg: "#161616" - fg: "#FFFFFF" - black: "#3B4252" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107 - black: 8.2 - red: 33.1 - green: 61.8 - yellow: 76.5 - blue: 48.7 - magenta: 46.6 - cyan: 62.8 - white: 92.4 - brightBlack: 15.5 - brightRed: 33.1 - brightGreen: 61.8 - brightYellow: 76.5 - brightBlue: 48.7 - brightMagenta: 46.6 - brightCyan: 60.7 - brightWhite: 96.3 diff --git a/themes/doems-sunset.yaml b/themes/doems-sunset.yaml index fd86b357..0e8f6559 100644 --- a/themes/doems-sunset.yaml +++ b/themes/doems-sunset.yaml @@ -8,6 +8,7 @@ source: author: "doemsdagding" repo: "https://github.com/doems/doems-sunset-theme" url: "https://marketplace.visualstudio.com/items?itemName=doemsdagding.doems-sunset-theme" + formats: null colors: bg: "#191B24" fg: "#D4D4D4" diff --git a/themes/doli-soft-green.yaml b/themes/doli-soft-green.yaml index 536f478f..6727ae6c 100644 --- a/themes/doli-soft-green.yaml +++ b/themes/doli-soft-green.yaml @@ -8,6 +8,7 @@ source: author: "LQYld" repo: "https://github.com/LQYld/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=LQYld.doli-theme" + formats: null colors: bg: "#FFFAE8" fg: "#222222" diff --git a/themes/doli-universal.yaml b/themes/doli-universal.yaml deleted file mode 100644 index 051b3860..00000000 --- a/themes/doli-universal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Doli Universal" -source: - marketplace_id: "EthanLi.ethan-li-cyber-glow-theme" - version: "1.0.3" - installs: 58 - rating: 0 - ratings: 0 - author: "EthanLi" - repo: "https://github.com/LQYld/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=EthanLi.ethan-li-cyber-glow-theme" -colors: - bg: "#2B2B2B" - fg: "#C6CACD" - black: "#393A34" - red: "#CB7676" - green: "#4D9375" - yellow: "#E6CC77" - blue: "#6394BF" - magenta: "#D9739F" - cyan: "#5EAAB5" - white: "#DBD7CA" - brightBlack: "#777777" - brightRed: "#CB7676" - brightGreen: "#4D9375" - brightYellow: "#E6CC77" - brightBlue: "#6394BF" - brightMagenta: "#D9739F" - brightCyan: "#5EAAB5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 70.1 - black: 0 - red: 37.7 - green: 33.7 - yellow: 72.6 - blue: 38.3 - magenta: 40.9 - cyan: 46.2 - white: 78.3 - brightBlack: 26.5 - brightRed: 37.7 - brightGreen: 33.7 - brightYellow: 72.6 - brightBlue: 38.3 - brightMagenta: 40.9 - brightCyan: 46.2 - brightWhite: 103.8 diff --git a/themes/doli-visual-studio.yaml b/themes/doli-visual-studio.yaml deleted file mode 100644 index 039c96c4..00000000 --- a/themes/doli-visual-studio.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Doli Visual Studio" -source: - marketplace_id: "EthanLi.ethan-li-cyber-glow-theme" - version: "1.0.3" - installs: 58 - rating: 0 - ratings: 0 - author: "EthanLi" - repo: "https://github.com/LQYld/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=EthanLi.ethan-li-cyber-glow-theme" -colors: - bg: "#1E1E1E" - fg: "#DCDCDC" - black: "#393A34" - red: "#CB7676" - green: "#4D9375" - yellow: "#E6CC77" - blue: "#6394BF" - magenta: "#D9739F" - cyan: "#5EAAB5" - white: "#DBD7CA" - brightBlack: "#777777" - brightRed: "#CB7676" - brightGreen: "#4D9375" - brightYellow: "#E6CC77" - brightBlue: "#6394BF" - brightMagenta: "#D9739F" - brightCyan: "#5EAAB5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 83.6 - black: 0 - red: 39.9 - green: 35.8 - yellow: 74.8 - blue: 40.5 - magenta: 43.1 - cyan: 48.4 - white: 80.5 - brightBlack: 28.7 - brightRed: 39.9 - brightGreen: 35.8 - brightYellow: 74.8 - brightBlue: 40.5 - brightMagenta: 43.1 - brightCyan: 48.4 - brightWhite: 106 diff --git a/themes/dominator-paralyzer.yaml b/themes/dominator-paralyzer.yaml deleted file mode 100644 index 2fc4d9ad..00000000 --- a/themes/dominator-paralyzer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dominator Paralyzer" -source: - marketplace_id: "tomocy.dominator" - version: "0.7.0" - installs: 1228 - rating: 5 - ratings: 3 - author: "tomocy" - repo: "https://github.com/tomocy/dominator-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=tomocy.dominator" -colors: - bg: "#000000" - fg: "#E0E7FF" - black: "#000000" - red: "#DE2163" - green: "#00FFD8" - yellow: "#DEC32C" - blue: "#09E7FB" - magenta: "#DE2163" - cyan: "#09E7FB" - white: "#E0E7FF" - brightBlack: "#E0E7FF" - brightRed: "#DE2163" - brightGreen: "#00FFD8" - brightYellow: "#DEC32C" - brightBlue: "#09E7FB" - brightMagenta: "#DE2163" - brightCyan: "#09E7FB" - brightWhite: "#E0E7FF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 92.5 - black: 0 - red: 31.2 - green: 90.3 - yellow: 70.7 - blue: 79.8 - magenta: 31.2 - cyan: 79.8 - white: 92.5 - brightBlack: 92.5 - brightRed: 31.2 - brightGreen: 90.3 - brightYellow: 70.7 - brightBlue: 79.8 - brightMagenta: 31.2 - brightCyan: 79.8 - brightWhite: 92.5 diff --git a/themes/domtheme.yaml b/themes/domtheme.yaml index 1655d8eb..425dee04 100644 --- a/themes/domtheme.yaml +++ b/themes/domtheme.yaml @@ -2,12 +2,13 @@ name: "DomTheme" source: marketplace_id: "DomTheme.DomTheme" version: "0.0.1" - installs: 2262 + installs: 2264 rating: 0 ratings: 0 author: "DomTheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DomTheme.DomTheme" + formats: null colors: bg: "#0A0A0A" fg: "#7F26FF" diff --git a/themes/doom-one-dark.yaml b/themes/doom-one-dark.yaml deleted file mode 100644 index c5edfa2a..00000000 --- a/themes/doom-one-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Doom One Dark" -source: - marketplace_id: "lroolle.doom-themes" - version: "1.2.1" - installs: 513 - rating: 0 - ratings: 0 - author: "lroolle" - repo: "https://github.com/lroolle/doom-one-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lroolle.doom-themes" -colors: - bg: "#282C34" - fg: "#BBC2CF" - black: "#1B2229" - red: "#FF6C6B" - green: "#98BE65" - yellow: "#ECBE7B" - blue: "#51AFEF" - magenta: "#C678DD" - cyan: "#46D9FF" - white: "#9CA0A4" - brightBlack: "#1C1F24" - brightRed: "#FF6C6B" - brightGreen: "#98BE65" - brightYellow: "#ECBE7B" - brightBlue: "#51AFEF" - brightMagenta: "#C678DD" - brightCyan: "#46D9FF" - brightWhite: "#BBC2CF" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: "Doom One Light" - contrast: - fg: 65.3 - black: 0 - red: 45.1 - green: 56.5 - yellow: 67.7 - blue: 50.7 - magenta: 41.9 - cyan: 69.9 - white: 46.4 - brightBlack: 0 - brightRed: 45.1 - brightGreen: 56.5 - brightYellow: 67.7 - brightBlue: 50.7 - brightMagenta: 41.9 - brightCyan: 69.9 - brightWhite: 65.3 diff --git a/themes/doom-one-light.yaml b/themes/doom-one-light.yaml deleted file mode 100644 index 82561828..00000000 --- a/themes/doom-one-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Doom One Light" -source: - marketplace_id: "lroolle.doom-themes" - version: "1.2.1" - installs: 513 - rating: 0 - ratings: 0 - author: "lroolle" - repo: "https://github.com/lroolle/doom-one-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lroolle.doom-themes" -colors: - bg: "#FAFAFA" - fg: "#383A42" - black: "#1B2229" - red: "#E45649" - green: "#50A14F" - yellow: "#986801" - blue: "#4078F2" - magenta: "#A626A4" - cyan: "#0184BC" - white: "#C6C7C7" - brightBlack: "#202328" - brightRed: "#E45649" - brightGreen: "#50A14F" - brightYellow: "#986801" - brightBlue: "#4078F2" - brightMagenta: "#A626A4" - brightCyan: "#0184BC" - brightWhite: "#383A42" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Doom One Dark" - contrast: - fg: 93.2 - black: 100 - red: 60.4 - green: 56 - yellow: 70.5 - blue: 64.3 - magenta: 76.2 - cyan: 65.1 - white: 27.2 - brightBlack: 99.7 - brightRed: 60.4 - brightGreen: 56 - brightYellow: 70.5 - brightBlue: 64.3 - brightMagenta: 76.2 - brightCyan: 65.1 - brightWhite: 93.2 diff --git a/themes/doom-one.yaml b/themes/doom-one.yaml index b94aad2b..da600b3d 100644 --- a/themes/doom-one.yaml +++ b/themes/doom-one.yaml @@ -1,13 +1,14 @@ -name: "Doom One" +name: "doom-one" source: - marketplace_id: "L-Nafaryus.doom-one-theme" + marketplace_id: "NTBBloodbath.doom-one" version: "0.1.1" - installs: 2628 + installs: 8958 rating: 5 - ratings: 1 - author: "L-Nafaryus" - repo: "https://github.com/L-Nafaryus/doom-one-theme" - url: "https://marketplace.visualstudio.com/items?itemName=L-Nafaryus.doom-one-theme" + ratings: 4 + author: "NTBBloodbath" + repo: "https://github.com/NTBBloodbath/doom-one-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NTBBloodbath.doom-one" + formats: null colors: bg: "#282C34" fg: "#BBC2CF" diff --git a/themes/dooshtheme.yaml b/themes/dooshtheme.yaml index a22b54a1..cf69cfd2 100644 --- a/themes/dooshtheme.yaml +++ b/themes/dooshtheme.yaml @@ -1,4 +1,4 @@ -name: "DooshTheme" +name: "dooshtheme" source: marketplace_id: "dooshii.dooshtheme" version: "0.0.1" @@ -8,6 +8,8 @@ source: author: "dooshii" repo: "https://github.com/dooshiifox/dotfiles" url: "https://marketplace.visualstudio.com/items?itemName=dooshii.dooshtheme" + formats: + nvim: "https://raw.githubusercontent.com/dooshiifox/dotfiles/main/home-manager/programs/nvim/init.lua" colors: bg: "#282C34" fg: "#ABB2BF" diff --git a/themes/dork.yaml b/themes/dork.yaml index 56a65c0e..ff19199b 100644 --- a/themes/dork.yaml +++ b/themes/dork.yaml @@ -8,6 +8,7 @@ source: author: "goldyflakes" repo: "https://github.com/goldyflakes/dork-vscode" url: "https://marketplace.visualstudio.com/items?itemName=goldyflakes.dork" + formats: null colors: bg: "#242229" fg: "#E7DEFC" diff --git a/themes/dorkmode.yaml b/themes/dorkmode.yaml index acfc3689..4310af75 100644 --- a/themes/dorkmode.yaml +++ b/themes/dorkmode.yaml @@ -8,6 +8,7 @@ source: author: "Dom Giarrusso" repo: "https://github.com/DomGiarrusso/Dorkmode" url: "https://marketplace.visualstudio.com/items?itemName=DomGiarrusso.dorkmode" + formats: null colors: bg: "#010409" fg: "#F8F9FA" diff --git a/themes/dot-developer-dark.yaml b/themes/dot-developer-dark.yaml deleted file mode 100644 index 29cd169f..00000000 --- a/themes/dot-developer-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dot Developer (Dark)" -source: - marketplace_id: "n-devs.vscode-dot-developer" - version: "1.1.9" - installs: 797 - rating: 5 - ratings: 1 - author: "n-devs" - repo: "https://github.com/n-devs/vscode-dot-developer" - url: "https://marketplace.visualstudio.com/items?itemName=n-devs.vscode-dot-developer" -colors: - bg: "#28334C" - fg: "#BACFFF" - black: "#403F53" - red: "#DE3D3B" - green: "#08916A" - yellow: "#E0AF02" - blue: "#288ED7" - magenta: "#D6438A" - cyan: "#2AA298" - white: "#F0F0F0" - brightBlack: "#403F53" - brightRed: "#DE3D3B" - brightGreen: "#08916A" - brightYellow: "#DAAA01" - brightBlue: "#288ED7" - brightMagenta: "#D6438A" - brightCyan: "#2AA298" - brightWhite: "#F0F0F0" -meta: - mode: "dark" - accent: "orange" - hue: 266 - pair: null - contrast: - fg: 71.4 - black: 0 - red: 27 - green: 29.1 - yellow: 57 - blue: 33.2 - magenta: 28 - cyan: 37.9 - white: 92.1 - brightBlack: 0 - brightRed: 27 - brightGreen: 29.1 - brightYellow: 54.1 - brightBlue: 33.2 - brightMagenta: 28 - brightCyan: 37.9 - brightWhite: 92.1 diff --git a/themes/dotportal.yaml b/themes/dotportal.yaml deleted file mode 100644 index 43372173..00000000 --- a/themes/dotportal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dotPortal" -source: - marketplace_id: "dotPortal.just-a-theme" - version: "1.0.4" - installs: 256 - rating: 0 - ratings: 0 - author: "dotPortal" - repo: "https://github.com/dotportal/just-a-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dotPortal.just-a-theme" -colors: - bg: "#242424" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 77.7 - black: 0 - red: 25 - green: 51.3 - yellow: 83.9 - blue: 25.7 - magenta: 28 - cyan: 45.8 - white: 88.3 - brightBlack: 20.3 - brightRed: 36.8 - brightGreen: 61.8 - brightYellow: 93.9 - brightBlue: 38.3 - brightMagenta: 43.6 - brightCyan: 53.7 - brightWhite: 88.3 diff --git a/themes/dove.yaml b/themes/dove.yaml index 63882de5..a2e0dc9c 100644 --- a/themes/dove.yaml +++ b/themes/dove.yaml @@ -8,6 +8,7 @@ source: author: "Yashwant" repo: "https://github.com/meyash/dove-vscode" url: "https://marketplace.visualstudio.com/items?itemName=meyash.dove" + formats: null colors: bg: "#0E0B16" fg: "#A2AABC" diff --git a/themes/downpour-contrast.yaml b/themes/downpour-contrast.yaml deleted file mode 100644 index 9c78b294..00000000 --- a/themes/downpour-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "downpour-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#121419" - fg: "#D6DBDB" - black: "#1D2028" - red: "#BA0E2E" - green: "#BC4331" - yellow: "#908BBC" - blue: "#91B9C9" - magenta: "#ABAAB7" - cyan: "#908BBC" - white: "#E4E7E7" - brightBlack: "#3D4354" - brightRed: "#F03E5F" - brightGreen: "#DC8477" - brightYellow: "#CECCE1" - brightBlue: "#D5E5EB" - brightMagenta: "#E2E1E6" - brightCyan: "#CECCE1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 268 - pair: null - contrast: - fg: 83.4 - black: 0 - red: 20.8 - green: 25.7 - yellow: 42.1 - blue: 60.4 - magenta: 56.2 - cyan: 42.1 - white: 91.2 - brightBlack: 8.8 - brightRed: 37.1 - brightGreen: 48.1 - brightYellow: 76.2 - brightBlue: 88.5 - brightMagenta: 88.1 - brightCyan: 76.2 - brightWhite: 107.1 diff --git a/themes/downpour-light.yaml b/themes/downpour-light.yaml deleted file mode 100644 index 76fb343d..00000000 --- a/themes/downpour-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "downpour-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#D6DBDB" - fg: "#2C323D" - black: "#E4E7E7" - red: "#BA0E2E" - green: "#BC4331" - yellow: "#736F99" - blue: "#698996" - magenta: "#787782" - cyan: "#736F99" - white: "#373E4C" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#DC8477" - brightYellow: "#ADABC3" - brightBlue: "#A5B8C0" - brightMagenta: "#ADACB3" - brightCyan: "#ADABC3" - brightWhite: "#576378" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 77.4 - black: 0 - red: 58.7 - green: 53.6 - yellow: 51 - blue: 43.2 - magenta: 48.9 - cyan: 51 - white: 73.2 - brightBlack: 22.1 - brightRed: 42.2 - brightGreen: 31.3 - brightYellow: 22.4 - brightBlue: 18.4 - brightMagenta: 22.7 - brightCyan: 22.4 - brightWhite: 58.6 diff --git a/themes/downpour.yaml b/themes/downpour.yaml deleted file mode 100644 index 29a9b4fb..00000000 --- a/themes/downpour.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "downpour" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2C323D" - fg: "#D6DBDB" - black: "#373E4C" - red: "#BA0E2E" - green: "#BC4331" - yellow: "#908BBC" - blue: "#91B9C9" - magenta: "#ABAAB7" - cyan: "#908BBC" - white: "#E4E7E7" - brightBlack: "#576378" - brightRed: "#F03E5F" - brightGreen: "#DC8477" - brightYellow: "#CECCE1" - brightBlue: "#D5E5EB" - brightMagenta: "#E2E1E6" - brightCyan: "#CECCE1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 263 - pair: null - contrast: - fg: 78.6 - black: 0 - red: 16 - green: 20.9 - yellow: 37.3 - blue: 55.6 - magenta: 51.4 - cyan: 37.3 - white: 86.3 - brightBlack: 16 - brightRed: 32.3 - brightGreen: 43.3 - brightYellow: 71.4 - brightBlue: 83.7 - brightMagenta: 83.3 - brightCyan: 71.4 - brightWhite: 102.3 diff --git a/themes/doxa-code-color-theme.yaml b/themes/doxa-code-color-theme.yaml index bbf14e1f..24c78052 100644 --- a/themes/doxa-code-color-theme.yaml +++ b/themes/doxa-code-color-theme.yaml @@ -6,6 +6,7 @@ source: author: "Doxa Code" repo: null url: "https://marketplace.visualstudio.com/items?itemName=doxa-code-color-theme.doxa-code-theme-colorr" + formats: null colors: bg: "#22202C" fg: "#F8F8F2" diff --git a/themes/doyoubleed.yaml b/themes/doyoubleed.yaml index 6bbbb65e..f7ee8388 100644 --- a/themes/doyoubleed.yaml +++ b/themes/doyoubleed.yaml @@ -8,6 +8,7 @@ source: author: "GeoBrodas" repo: "https://github.com/GeoBrodas/doyoubleed" url: "https://marketplace.visualstudio.com/items?itemName=GeoBrodas.geobrodas-theme-red-doyoubleed" + formats: null colors: bg: "#121013" fg: "#D4D4D4" diff --git a/themes/dqn.yaml b/themes/dqn.yaml index 195f53b6..12c32d9d 100644 --- a/themes/dqn.yaml +++ b/themes/dqn.yaml @@ -8,6 +8,7 @@ source: author: "dqn" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dqn.dqn" + formats: null colors: bg: "#1A1F2E" fg: "#E8F4F8" diff --git a/themes/dr-jones.yaml b/themes/dr-jones.yaml deleted file mode 100644 index 0aad4433..00000000 --- a/themes/dr-jones.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dr. Jones" -source: - marketplace_id: "Rachael.rachaels-themes" - version: "0.0.2" - installs: 1170 - rating: 0 - ratings: 0 - author: "Rachael" - repo: "https://github.com/rbouissey/rachaelsthemes" - url: "https://marketplace.visualstudio.com/items?itemName=Rachael.rachaels-themes" -colors: - bg: "#EDDABC" - fg: "#002D3A" - black: "#000000" - red: "#002D3A" - green: "#47722D" - yellow: "#FFCA00" - blue: "#002D3A" - magenta: "#5A5072" - cyan: "#79B9C7" - white: "#EDDABC" - brightBlack: "#000000" - brightRed: "#002D3A" - brightGreen: "#47722D" - brightYellow: "#FFCA00" - brightBlue: "#002D3A" - brightMagenta: "#5A5072" - brightCyan: "#79B9C7" - brightWhite: "#814E00" -meta: - mode: "light" - accent: "yellow" - hue: 79 - pair: null - contrast: - fg: 80.8 - black: 85.7 - red: 80.8 - green: 57.8 - yellow: 0 - blue: 80.8 - magenta: 65.5 - cyan: 22.7 - white: 0 - brightBlack: 85.7 - brightRed: 80.8 - brightGreen: 57.8 - brightYellow: 0 - brightBlue: 80.8 - brightMagenta: 65.5 - brightCyan: 22.7 - brightWhite: 63.3 diff --git a/themes/draco-dark.yaml b/themes/draco-dark.yaml index 464b533f..cfab51a1 100644 --- a/themes/draco-dark.yaml +++ b/themes/draco-dark.yaml @@ -1,13 +1,14 @@ -name: "Draco-dark" +name: "Draco Dark" source: marketplace_id: "Draco.draco-dark" version: "0.0.3" - installs: 6845 + installs: 6846 rating: 5 ratings: 1 author: "Draco" repo: "https://github.com/PR7JW7L/vsc-draco-dark" url: "https://marketplace.visualstudio.com/items?itemName=Draco.draco-dark" + formats: null colors: bg: "#151515" fg: "#BCBCBC" diff --git a/themes/draconica.yaml b/themes/draconica.yaml index 9832e6a4..aedd56ef 100644 --- a/themes/draconica.yaml +++ b/themes/draconica.yaml @@ -8,6 +8,7 @@ source: author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.blue-theme-dark" + formats: null colors: bg: "#282A36" fg: "#F8F8F2" diff --git a/themes/dracula-2022.yaml b/themes/dracula-2022.yaml index ba4b849d..4b48d66b 100644 --- a/themes/dracula-2022.yaml +++ b/themes/dracula-2022.yaml @@ -8,6 +8,7 @@ source: author: "dantevelli" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dantevelli.stormdracula2022" + formats: null colors: bg: "#232525" fg: "#D4D4D4" diff --git a/themes/dracula-at-dusk.yaml b/themes/dracula-at-dusk.yaml index e773106b..61611288 100644 --- a/themes/dracula-at-dusk.yaml +++ b/themes/dracula-at-dusk.yaml @@ -2,12 +2,13 @@ name: "Dracula At Dusk" source: marketplace_id: "Telokis.theme-dracula-at-dusk" version: "1.0.6" - installs: 12064 + installs: 12068 rating: 0 ratings: 0 author: "Telokis" repo: "https://gitlab.com/Telokis/dracula-at-dusk" url: "https://marketplace.visualstudio.com/items?itemName=Telokis.theme-dracula-at-dusk" + formats: null colors: bg: "#0E1419" fg: "#EBEBE6" diff --git a/themes/dracula-at-midnight.yaml b/themes/dracula-at-midnight.yaml index 3c80e16f..37af92da 100644 --- a/themes/dracula-at-midnight.yaml +++ b/themes/dracula-at-midnight.yaml @@ -2,10 +2,13 @@ name: "Dracula At Midnight" source: marketplace_id: "walcew.dracula-at-midnight" version: "3.0.0" - installs: 27 + installs: 28 + rating: 5 + ratings: 1 author: "Wallacy Santos Ferreira" repo: "https://github.com/walcew/dracula-at-midnight" url: "https://marketplace.visualstudio.com/items?itemName=walcew.dracula-at-midnight" + formats: null colors: bg: "#1F1F1F" fg: "#F8F8F2" diff --git a/themes/dracula-at-night.yaml b/themes/dracula-at-night.yaml index 873b1f4c..37bbe722 100644 --- a/themes/dracula-at-night.yaml +++ b/themes/dracula-at-night.yaml @@ -1,13 +1,14 @@ name: "Dracula At Night" source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 + marketplace_id: "bceskavich.theme-dracula-at-night" + version: "2.7.1" + installs: 567451 rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + ratings: 19 + author: "bceskavich" + repo: "https://github.com/bceskavich/dracula-at-night" + url: "https://marketplace.visualstudio.com/items?itemName=bceskavich.theme-dracula-at-night" + formats: null colors: bg: "#0E1419" fg: "#F8F8F2" diff --git a/themes/dracula-dark.yaml b/themes/dracula-dark.yaml deleted file mode 100644 index fa2b3f08..00000000 --- a/themes/dracula-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dracula Dark" -source: - marketplace_id: "f-hossen.dracula-theme-light-dark" - version: "0.0.2" - installs: 1099 - rating: 0 - ratings: 0 - author: "Farhad H." - repo: "https://github.com/f-hossen/dracula-theme-light-dark" - url: "https://marketplace.visualstudio.com/items?itemName=f-hossen.dracula-theme-light-dark" -colors: - bg: "#282A36" - fg: "#F6F6F4" - black: "#262626" - red: "#EE6666" - green: "#62E884" - yellow: "#E7EE98" - blue: "#BF9EEE" - magenta: "#F286C4" - cyan: "#97E1F1" - white: "#F6F6F4" - brightBlack: "#7B7F8B" - brightRed: "#F07C7C" - brightGreen: "#78F09A" - brightYellow: "#F6F6AE" - brightBlue: "#D6B4F7" - brightMagenta: "#F49DDA" - brightCyan: "#ADF6F6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 278 - pair: "Dracula Light" - contrast: - fg: 97.9 - black: 0 - red: 40.3 - green: 73.5 - yellow: 88.8 - blue: 53.9 - magenta: 52.4 - cyan: 77.5 - white: 97.9 - brightBlack: 30.4 - brightRed: 46.5 - brightGreen: 79.2 - brightYellow: 95.2 - brightBlue: 65.6 - brightMagenta: 60.8 - brightCyan: 89.7 - brightWhite: 103.9 diff --git a/themes/dracula-dimmed-color-theme.yaml b/themes/dracula-dimmed-color-theme.yaml deleted file mode 100644 index 525618f8..00000000 --- a/themes/dracula-dimmed-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dracula-dimmed-color-theme" -source: - marketplace_id: "scjorge.theme-dracula-dimmed" - version: "0.1.1" - installs: 2027 - rating: 0 - ratings: 0 - author: "Jorge Silva" - repo: "https://github.com/scjorge/dracula-dimmed" - url: "https://marketplace.visualstudio.com/items?itemName=scjorge.theme-dracula-dimmed" -colors: - bg: "#22272E" - fg: "#DAE3ED" - black: "#262626" - red: "#EE6666" - green: "#57AB5A" - yellow: "#E7EE98" - blue: "#BF9EEE" - magenta: "#F286C4" - cyan: "#97E1F1" - white: "#F6F6F4" - brightBlack: "#7B7F8B" - brightRed: "#F07C7C" - brightGreen: "#57AB5A" - brightYellow: "#F6F6AE" - brightBlue: "#D6B4F7" - brightMagenta: "#F49DDA" - brightCyan: "#ADF6F6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 257 - pair: null - contrast: - fg: 85.9 - black: 0 - red: 41 - green: 44.3 - yellow: 89.5 - blue: 54.7 - magenta: 53.1 - cyan: 78.2 - white: 98.7 - brightBlack: 31.1 - brightRed: 47.3 - brightGreen: 44.3 - brightYellow: 96 - brightBlue: 66.4 - brightMagenta: 61.5 - brightCyan: 90.4 - brightWhite: 104.7 diff --git a/themes/dracula-falcon.yaml b/themes/dracula-falcon.yaml index 2721c9d7..72a4209c 100644 --- a/themes/dracula-falcon.yaml +++ b/themes/dracula-falcon.yaml @@ -8,6 +8,7 @@ source: author: "Fernando Falcão" repo: null url: "https://marketplace.visualstudio.com/items?itemName=nandofalcao.dracula-falcon" + formats: null colors: bg: "#202125" fg: "#CDD0DD" diff --git a/themes/dracula-gray.yaml b/themes/dracula-gray.yaml deleted file mode 100644 index 6dd7f231..00000000 --- a/themes/dracula-gray.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dracula-gray" -source: - marketplace_id: "wivim-dev.graydraculatheme" - version: "0.1.14" - installs: 325 - rating: 0 - ratings: 0 - author: "wivimdavid" - repo: "https://github.com/WivimDavid/vscode-gray" - url: "https://marketplace.visualstudio.com/items?itemName=wivim-dev.graydraculatheme" -colors: - bg: "#1E2029" - fg: "#868690" - black: "#1E2029" - red: "#4E4F59" - green: "#4E4F59" - yellow: "#4E4F59" - blue: "#4E4F59" - magenta: "#4E4F59" - cyan: "#4E4F59" - white: "#E2E4ED" - brightBlack: "#575861" - brightRed: "#4E4F59" - brightGreen: "#4E4F59" - brightYellow: "#4E4F59" - brightBlue: "#4E4F59" - brightMagenta: "#4E4F59" - brightCyan: "#4E4F59" - brightWhite: "#E2E4ED" -meta: - mode: "dark" - accent: "purple" - hue: 275 - pair: null - contrast: - fg: 35.8 - black: 0 - red: 11.9 - green: 11.9 - yellow: 11.9 - blue: 11.9 - magenta: 11.9 - cyan: 11.9 - white: 88.4 - brightBlack: 15.3 - brightRed: 11.9 - brightGreen: 11.9 - brightYellow: 11.9 - brightBlue: 11.9 - brightMagenta: 11.9 - brightCyan: 11.9 - brightWhite: 88.4 diff --git a/themes/dracula-high-contract.yaml b/themes/dracula-high-contract.yaml index 19a1a917..8beba955 100644 --- a/themes/dracula-high-contract.yaml +++ b/themes/dracula-high-contract.yaml @@ -8,6 +8,7 @@ source: author: "Dat Vo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=datvo.theme-monokai-v2" + formats: null colors: bg: "#202232" fg: "#FFFFFF" diff --git a/themes/dracula-light.yaml b/themes/dracula-light.yaml deleted file mode 100644 index 5c69eee9..00000000 --- a/themes/dracula-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dracula Light" -source: - marketplace_id: "f-hossen.dracula-theme-light-dark" - version: "0.0.2" - installs: 1099 - rating: 0 - ratings: 0 - author: "Farhad H." - repo: "https://github.com/f-hossen/dracula-theme-light-dark" - url: "https://marketplace.visualstudio.com/items?itemName=f-hossen.dracula-theme-light-dark" -colors: - bg: "#F4F4F9" - fg: "#404040" - black: "#E6E6EB" - red: "#E45649" - green: "#008000" - yellow: "#A8A800" - blue: "#9C66E8" - magenta: "#FF9ED4" - cyan: "#00C1EC" - white: "#404040" - brightBlack: "#8A8F9E" - brightRed: "#D16969" - brightGreen: "#6A9955" - brightYellow: "#D7AF00" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#282A36" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Dracula Dark" - contrast: - fg: 87.8 - black: 0 - red: 57 - green: 68.3 - yellow: 43.2 - blue: 59.1 - magenta: 29.4 - cyan: 34.8 - white: 87.8 - brightBlack: 53.2 - brightRed: 56.2 - brightGreen: 54.3 - brightYellow: 34.4 - brightBlue: 29.1 - brightMagenta: 32.4 - brightCyan: 0 - brightWhite: 94.6 diff --git a/themes/dracula-midnight.yaml b/themes/dracula-midnight.yaml index 23afe88f..1bcc1ab6 100644 --- a/themes/dracula-midnight.yaml +++ b/themes/dracula-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Einar" repo: "https://github.com/realeinar/dracula-midnight" url: "https://marketplace.visualstudio.com/items?itemName=realeinar.theme-dracula-midnight" + formats: null colors: bg: "#242530" fg: "#F8F8F2" diff --git a/themes/dracula-min-light-darker-theme.yaml b/themes/dracula-min-light-darker-theme.yaml deleted file mode 100644 index 35331297..00000000 --- a/themes/dracula-min-light-darker-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dracula.min Light Darker Theme" -source: - marketplace_id: "ashrafhadden.dracula-dot-min" - version: "2.1.1" - installs: 12878 - rating: 5 - ratings: 5 - author: "Ashraf Hadden" - repo: "https://github.com/ashrafhadden/dracula.min" - url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" -colors: - bg: "#F8F8F2" - fg: "#282A36" - black: "#EAEBF9" - red: "#AE001C" - green: "#006400" - yellow: "#4C5B00" - blue: "#64429E" - magenta: "#9F1670" - cyan: "#005D6F" - white: "#282A36" - brightBlack: "#7E8EC2" - brightRed: "#A7192C" - brightGreen: "#006400" - brightYellow: "#535901" - brightBlue: "#68448E" - brightMagenta: "#912A78" - brightCyan: "#005F60" - brightWhite: "#555555" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.5 - black: 0 - red: 78.8 - green: 80.7 - yellow: 81.4 - blue: 81.2 - magenta: 79.8 - cyan: 81.1 - white: 96.5 - brightBlack: 54.9 - brightRed: 79.7 - brightGreen: 80.7 - brightYellow: 81.5 - brightBlue: 81.3 - brightMagenta: 80.6 - brightCyan: 81.1 - brightWhite: 81.5 diff --git a/themes/dracula-min-light-theme.yaml b/themes/dracula-min-light-theme.yaml deleted file mode 100644 index 15d02bdc..00000000 --- a/themes/dracula-min-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dracula.min Light Theme" -source: - marketplace_id: "ashrafhadden.dracula-dot-min" - version: "2.1.1" - installs: 12878 - rating: 5 - ratings: 5 - author: "Ashraf Hadden" - repo: "https://github.com/ashrafhadden/dracula.min" - url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" -colors: - bg: "#F8F8F2" - fg: "#282A36" - black: "#EAEBF9" - red: "#D82F39" - green: "#008504" - yellow: "#6C7908" - blue: "#855FBF" - magenta: "#C13F8E" - cyan: "#007E90" - white: "#282A36" - brightBlack: "#7E8EC2" - brightRed: "#CB4046" - brightGreen: "#008525" - brightYellow: "#727724" - brightBlue: "#8762AE" - brightMagenta: "#B34B97" - brightCyan: "#157F80" - brightWhite: "#727272" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.5 - black: 0 - red: 67.2 - green: 68.2 - yellow: 68.7 - blue: 68.6 - magenta: 68 - cyan: 68.2 - white: 96.5 - brightBlack: 54.9 - brightRed: 67.9 - brightGreen: 68.1 - brightYellow: 68.7 - brightBlue: 68.6 - brightMagenta: 68.3 - brightCyan: 68.4 - brightWhite: 69 diff --git a/themes/dracula-min-white-darker-theme.yaml b/themes/dracula-min-white-darker-theme.yaml deleted file mode 100644 index d2233f61..00000000 --- a/themes/dracula-min-white-darker-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dracula.min White Darker Theme" -source: - marketplace_id: "ashrafhadden.dracula-dot-min" - version: "2.1.1" - installs: 12878 - rating: 5 - ratings: 5 - author: "Ashraf Hadden" - repo: "https://github.com/ashrafhadden/dracula.min" - url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" -colors: - bg: "#FFFFFF" - fg: "#282A36" - black: "#F1F2FF" - red: "#B60021" - green: "#006800" - yellow: "#515F00" - blue: "#6946A3" - magenta: "#A41D74" - cyan: "#006274" - white: "#282A36" - brightBlack: "#8393C7" - brightRed: "#AC202F" - brightGreen: "#006803" - brightYellow: "#585E06" - brightBlue: "#6C4993" - brightMagenta: "#962F7C" - brightCyan: "#006465" - brightWhite: "#595959" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 101 - black: 0 - red: 81.5 - green: 83.7 - yellow: 84.2 - blue: 83.9 - magenta: 82.7 - cyan: 83.7 - white: 101 - brightBlack: 56.9 - brightRed: 82.6 - brightGreen: 83.7 - brightYellow: 83.9 - brightBlue: 83.9 - brightMagenta: 83.4 - brightCyan: 83.6 - brightWhite: 84.3 diff --git a/themes/dracula-min-white-theme.yaml b/themes/dracula-min-white-theme.yaml deleted file mode 100644 index e1037131..00000000 --- a/themes/dracula-min-white-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dracula.min White Theme" -source: - marketplace_id: "ashrafhadden.dracula-dot-min" - version: "2.1.1" - installs: 12878 - rating: 5 - ratings: 5 - author: "Ashraf Hadden" - repo: "https://github.com/ashrafhadden/dracula.min" - url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" -colors: - bg: "#FFFFFF" - fg: "#282A36" - black: "#F1F2FF" - red: "#DE353D" - green: "#008A0D" - yellow: "#707E0F" - blue: "#8963C4" - magenta: "#C74493" - cyan: "#048395" - white: "#282A36" - brightBlack: "#8393C7" - brightRed: "#D1454B" - brightGreen: "#008A2A" - brightYellow: "#777B28" - brightBlue: "#8C66B3" - brightMagenta: "#B8509C" - brightCyan: "#1E8484" - brightWhite: "#777777" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 101 - black: 0 - red: 69.6 - green: 70.6 - yellow: 71 - blue: 71.2 - magenta: 70.3 - cyan: 70.6 - white: 101 - brightBlack: 56.9 - brightRed: 70.2 - brightGreen: 70.5 - brightYellow: 71.3 - brightBlue: 71.1 - brightMagenta: 70.7 - brightCyan: 70.7 - brightWhite: 71.1 diff --git a/themes/dracula-pro-black.yaml b/themes/dracula-pro-black.yaml deleted file mode 100644 index 8a808910..00000000 --- a/themes/dracula-pro-black.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dracula Pro Black" -source: - marketplace_id: "caiovellani.dracula-pro-free" - version: "1.2.0" - installs: 448 - rating: 5 - ratings: 1 - author: "caiovellani" - repo: "https://github.com/caiovellani/dracula-pro" - url: "https://marketplace.visualstudio.com/items?itemName=caiovellani.dracula-pro-free" -colors: - bg: "#000000" - fg: "#F8F8F2" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 103 - black: 0 - red: 44.4 - green: 85.9 - yellow: 99.6 - blue: 54.6 - magenta: 55.6 - cyan: 85 - white: 103 - brightBlack: 29.1 - brightRed: 49.8 - brightGreen: 90 - brightYellow: 104.5 - brightBlue: 67.1 - brightMagenta: 63.6 - brightCyan: 97.8 - brightWhite: 107.9 diff --git a/themes/dracula-pro.yaml b/themes/dracula-pro.yaml deleted file mode 100644 index ef52f139..00000000 --- a/themes/dracula-pro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dracula Pro" -source: - marketplace_id: "caiovellani.dracula-pro-free" - version: "1.2.0" - installs: 448 - rating: 5 - ratings: 1 - author: "caiovellani" - repo: "https://github.com/caiovellani/dracula-pro" - url: "https://marketplace.visualstudio.com/items?itemName=caiovellani.dracula-pro-free" -colors: - bg: "#22212C" - fg: "#F8F8F2" - black: "#21222C" - red: "#FF9580" - green: "#8AFF80" - yellow: "#FFFF80" - blue: "#9580FF" - magenta: "#FF80BF" - cyan: "#80FFEA" - white: "#F8F8F2" - brightBlack: "#7970A9" - brightRed: "#FFBFB3" - brightGreen: "#B9FFB3" - brightYellow: "#FFFFB3" - brightBlue: "#BFB3FF" - brightMagenta: "#FFB3D9" - brightCyan: "#B3FFF2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 289 - pair: null - contrast: - fg: 100.5 - black: 0 - red: 58.3 - green: 89 - yellow: 101.3 - blue: 41.8 - magenta: 54.6 - cyan: 91.8 - white: 100.5 - brightBlack: 28.3 - brightRed: 74.6 - brightGreen: 94.1 - brightYellow: 102.5 - brightBlue: 64.2 - brightMagenta: 71.7 - brightCyan: 96 - brightWhite: 105.4 diff --git a/themes/dracula.yaml b/themes/dracula.yaml index f97a537c..dde01ff3 100644 --- a/themes/dracula.yaml +++ b/themes/dracula.yaml @@ -8,6 +8,7 @@ source: author: "Titouan CREACH" repo: "https://github.com/dracula/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=titouan.theme-dracula" + formats: null colors: bg: "#282A36" fg: "#F8F8F2" diff --git a/themes/draculight.yaml b/themes/draculight.yaml index 88f315dd..142aec40 100644 --- a/themes/draculight.yaml +++ b/themes/draculight.yaml @@ -8,6 +8,8 @@ source: author: "Nevyk" repo: "https://github.com/nevyk/draculight" url: "https://marketplace.visualstudio.com/items?itemName=Nevyk.draculight" + formats: + iterm2: "https://raw.githubusercontent.com/nevyk/draculight/main/themes/iterm/draculight.itermcolors" colors: bg: "#F7F7F6" fg: "#21253F" diff --git a/themes/draculish.yaml b/themes/draculish.yaml index cbc73f77..cf14d977 100644 --- a/themes/draculish.yaml +++ b/themes/draculish.yaml @@ -2,12 +2,13 @@ name: "Draculish" source: marketplace_id: "gndf5000.dracul-ish" version: "1.0.1" - installs: 901 + installs: 902 rating: 0 ratings: 0 author: "gndf5000" repo: "https://github.com/GNDF5000/draculish" url: "https://marketplace.visualstudio.com/items?itemName=gndf5000.dracul-ish" + formats: null colors: bg: "#1D2025" fg: "#CBCEBC" diff --git a/themes/dragn-dark-color-theme.yaml b/themes/dragn-dark-color-theme.yaml deleted file mode 100644 index 0f693b19..00000000 --- a/themes/dragn-dark-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dragn Dark Color Theme" -source: - marketplace_id: "Miladfathy.dragan-color-theme" - version: "2.0.8" - installs: 69767 - rating: 5 - ratings: 9 - author: "Milad Fathy" - repo: "https://github.com/miladfathy" - url: "https://marketplace.visualstudio.com/items?itemName=Miladfathy.dragan-color-theme" -colors: - bg: "#17181A" - fg: "#E2E2E2" - black: "#090300" - red: "#DB2D20" - green: "#01A252" - yellow: "#FDED02" - blue: "#01A0E4" - magenta: "#A16A94" - cyan: "#0BA9DD" - white: "#F37676" - brightBlack: "#F38028" - brightRed: "#0A37FF" - brightGreen: "#01A252" - brightYellow: "#FDED02" - brightBlue: "#01A0E4" - brightMagenta: "#EB64CB" - brightCyan: "#FF0FF3" - brightWhite: "#240EE2" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 88 - black: 0 - red: 29.3 - green: 40.5 - yellow: 92.7 - blue: 45.6 - magenta: 31.7 - cyan: 48.8 - white: 48.3 - brightBlack: 49.8 - brightRed: 18.4 - brightGreen: 40.5 - brightYellow: 92.7 - brightBlue: 45.6 - brightMagenta: 45.9 - brightCyan: 44.3 - brightWhite: 12 diff --git a/themes/dragon.yaml b/themes/dragon.yaml deleted file mode 100644 index 2f9cedd8..00000000 --- a/themes/dragon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dragon" -source: - marketplace_id: "sserafy.ttera-themes" - version: "2.0.7" - installs: 2044 - rating: 5 - ratings: 1 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" -colors: - bg: "#322518" - fg: "#E8DCC6" - black: "#1A1410" - red: "#8B2635" - green: "#7A8471" - yellow: "#D4A574" - blue: "#5A7C8A" - magenta: "#C08A96" - cyan: "#8FABA3" - white: "#E8DCC6" - brightBlack: "#4D3D2A" - brightRed: "#A03447" - brightGreen: "#8C9580" - brightYellow: "#E6B787" - brightBlue: "#6B8D9B" - brightMagenta: "#D4A1AA" - brightCyan: "#A5C4BA" - brightWhite: "#F7F1E8" -meta: - mode: "dark" - accent: "red" - hue: 66 - pair: null - contrast: - fg: 82.7 - black: 0 - red: 10.1 - green: 31.7 - yellow: 55 - blue: 27.2 - magenta: 43.6 - cyan: 50.2 - white: 82.7 - brightBlack: 0 - brightRed: 15.9 - brightGreen: 40.1 - brightYellow: 65.1 - brightBlue: 35.2 - brightMagenta: 55.2 - brightCyan: 63.7 - brightWhite: 95.7 diff --git a/themes/dragonfly.yaml b/themes/dragonfly.yaml index 65939352..eb38429a 100644 --- a/themes/dragonfly.yaml +++ b/themes/dragonfly.yaml @@ -8,6 +8,7 @@ source: author: "thelayeredmind" repo: "https://github.com/thelayeredmind/dragonfly-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thelayeredmind.dragonfly-theme" + formats: null colors: bg: "#100F13" fg: "#B3B8C5" diff --git a/themes/dragonight.yaml b/themes/dragonight.yaml index 45f55667..3d69eb8e 100644 --- a/themes/dragonight.yaml +++ b/themes/dragonight.yaml @@ -8,6 +8,7 @@ source: author: "teamdragonight" repo: "https://github.com/Akshaykumar2908/The-Dragonight" url: "https://marketplace.visualstudio.com/items?itemName=teamdragonight.dragonight" + formats: null colors: bg: "#121521" fg: "#E5E5E5" diff --git a/themes/drake.yaml b/themes/drake.yaml index 5582d207..8e105018 100644 --- a/themes/drake.yaml +++ b/themes/drake.yaml @@ -8,6 +8,7 @@ source: author: "rogodev" repo: "https://github.com/rogodev/drake-theme" url: "https://marketplace.visualstudio.com/items?itemName=roogodev.drake-theme" + formats: null colors: bg: "#262A35" fg: "#FEFEFE" diff --git a/themes/drakencord-blue-fork.yaml b/themes/drakencord-blue-fork.yaml deleted file mode 100644 index 7bf23531..00000000 --- a/themes/drakencord-blue-fork.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "DrakenCord Blue - Fork" -source: - marketplace_id: "kvi2611.drakencord-blue" - version: "0.0.1" - installs: 68 - author: "kvi 2611" - repo: "https://github.com/Kaii-Dev/blue-cheese-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kvi2611.drakencord-blue" -colors: - bg: "#1D232C" - fg: "#E5E7EB" - black: "#000000" - red: "#FF2348" - green: "#ADDB67" - yellow: "#ECC48D" - blue: "#407DFF" - magenta: "#9F60EC" - cyan: "#11A8CD" - white: "#E5E7EB" - brightBlack: "#637777" - brightRed: "#FF5874" - brightGreen: "#8FB05E" - brightYellow: "#DCDCAA" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#29B8DB" - brightWhite: "#BBBEC4" -meta: - mode: "dark" - accent: "orange" - hue: 258 - pair: null - contrast: - fg: 89.7 - black: 0 - red: 36.2 - green: 73.4 - yellow: 72.2 - blue: 34.6 - magenta: 33 - cyan: 46 - white: 89.7 - brightBlack: 26.3 - brightRed: 43 - brightGreen: 51.2 - brightYellow: 81 - brightBlue: 54.4 - brightMagenta: 52.2 - brightCyan: 53.9 - brightWhite: 64.8 diff --git a/themes/drakkar.yaml b/themes/drakkar.yaml index 71a4bdca..4917cda5 100644 --- a/themes/drakkar.yaml +++ b/themes/drakkar.yaml @@ -8,6 +8,7 @@ source: author: "ubbeck" repo: "https://github.com/ubbeck/drakkar.theme" url: "https://marketplace.visualstudio.com/items?itemName=ubbeck.drakkar" + formats: null colors: bg: "#24292E" fg: "#E1E4E8" diff --git a/themes/draquinho.yaml b/themes/draquinho.yaml index ed4dee78..9f0b17bf 100644 --- a/themes/draquinho.yaml +++ b/themes/draquinho.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "KelsonCarvalho.draquinho" version: "2.0.0" installs: 184 + rating: 0 + ratings: 0 author: "Kelson Carvalho" repo: "https://github.com/NoslekCode/draquinho" url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.draquinho" + formats: null colors: bg: "#282A36" fg: "#FF8FFF" diff --git a/themes/drasing-dark.yaml b/themes/drasing-dark.yaml index 9f213324..a275300a 100644 --- a/themes/drasing-dark.yaml +++ b/themes/drasing-dark.yaml @@ -8,6 +8,7 @@ source: author: "drasing" repo: "https://github.com/thiagoboize/drasing-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=drasing.drasing-dark-theme" + formats: null colors: bg: "#101010" fg: "#FFFFFF" diff --git a/themes/dreadbots-fork.yaml b/themes/dreadbots-fork.yaml deleted file mode 100644 index bae86ffd..00000000 --- a/themes/dreadbots-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dreadbots - Fork" -source: - marketplace_id: "xynny.blazing-red" - version: "0.0.1" - installs: 7924 - rating: 0 - ratings: 0 - author: "xynny" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=xynny.blazing-red" -colors: - bg: "#380E10" - fg: "#D4AC36" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#D7D7D7" - brightBlack: "#5A5A5A" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 21 - pair: null - contrast: - fg: 58.1 - black: 0 - red: 25.7 - green: 52 - yellow: 84.6 - blue: 26.5 - magenta: 28.8 - cyan: 46.6 - white: 80.3 - brightBlack: 16.1 - brightRed: 37.6 - brightGreen: 62.6 - brightYellow: 94.7 - brightBlue: 39 - brightMagenta: 44.4 - brightCyan: 54.4 - brightWhite: 105.9 diff --git a/themes/dreamer-theme.yaml b/themes/dreamer-theme.yaml index 920e6752..8dc93766 100644 --- a/themes/dreamer-theme.yaml +++ b/themes/dreamer-theme.yaml @@ -8,6 +8,7 @@ source: author: "onlyadaydreamer" repo: null url: "https://marketplace.visualstudio.com/items?itemName=onlyadaydreamer.dreamer-theme" + formats: null colors: bg: "#151515" fg: "#ABB2BF" diff --git a/themes/dreamy-lights.yaml b/themes/dreamy-lights.yaml index 914ca8f0..388d9d63 100644 --- a/themes/dreamy-lights.yaml +++ b/themes/dreamy-lights.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "t3nsor.dreamy-lights" version: "0.0.1" installs: 30 + rating: 0 + ratings: 0 author: "t3nsor" repo: "https://github.com/t3nsor98/dreamy-lights-theme" url: "https://marketplace.visualstudio.com/items?itemName=t3nsor.dreamy-lights" + formats: null colors: bg: "#1A1A1A" fg: "#FEF9EF" diff --git a/themes/dribbble-theme-light.yaml b/themes/dribbble-theme-light.yaml deleted file mode 100644 index aaf50f5e..00000000 --- a/themes/dribbble-theme-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dribbble Theme - Light" -source: - marketplace_id: "MarvinSernee.dribbble-theme" - version: "1.0.0" - installs: 707 - rating: 5 - ratings: 1 - author: "Marvin Sernee" - repo: "https://github.com/MarvinMichel/dribbble-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MarvinSernee.dribbble-theme" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#757575" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 92.6 - black: 106 - red: 74 - green: 49.2 - yellow: 57.9 - blue: 86.1 - magenta: 74.6 - cyan: 60.6 - white: 85.9 - brightBlack: 78.8 - brightRed: 74 - brightGreen: 40.9 - brightYellow: 40.9 - brightBlue: 86.1 - brightMagenta: 74.6 - brightCyan: 60.6 - brightWhite: 72 diff --git a/themes/drifter.yaml b/themes/drifter.yaml index 665b2356..44ffd775 100644 --- a/themes/drifter.yaml +++ b/themes/drifter.yaml @@ -1,4 +1,4 @@ -name: "Drifter" +name: "drifter" source: marketplace_id: "dhruvkoli.drifter" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "DhruvKoli" repo: "https://github.com/dask-58/turbocodertheme" url: "https://marketplace.visualstudio.com/items?itemName=dhruvkoli.drifter" + formats: null colors: bg: "#260D22" fg: "#FFFFFF" diff --git a/themes/drk.yaml b/themes/drk.yaml index 46a6a4b6..160011cf 100644 --- a/themes/drk.yaml +++ b/themes/drk.yaml @@ -8,6 +8,7 @@ source: author: "iinfin" repo: "https://github.com/u29dc/set-vscode" url: "https://marketplace.visualstudio.com/items?itemName=u29dc.set" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/drukalu.yaml b/themes/drukalu.yaml deleted file mode 100644 index 61b292a1..00000000 --- a/themes/drukalu.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Drukalu" -source: - marketplace_id: "PhanTriVietHoang.vh-theme" - version: "0.0.4" - installs: 3 - rating: 0 - ratings: 0 - author: "PhanTriVietHoang" - repo: "https://github.com/phantriviethoang/vh-theme" - url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.vh-theme" -colors: - bg: "#242530" - fg: "#EEFFFF" - black: "#242530" - red: "#FF8A7A" - green: "#5AF78E" - yellow: "#F3F99D" - blue: "#94D0FF" - magenta: "#FF85B8" - cyan: "#9AEDFE" - white: "#F1F1F0" - brightBlack: "#686868" - brightRed: "#FF8A7A" - brightGreen: "#5AF78E" - brightYellow: "#F3F99D" - brightBlue: "#94D0FF" - brightMagenta: "#FF85B8" - brightCyan: "#9AEDFE" - brightWhite: "#EEFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 281 - pair: null - contrast: - fg: 102.5 - black: 0 - red: 54.3 - green: 82 - yellow: 96.7 - blue: 71.2 - magenta: 55 - cyan: 85 - white: 95.6 - brightBlack: 20.9 - brightRed: 54.3 - brightGreen: 82 - brightYellow: 96.7 - brightBlue: 71.2 - brightMagenta: 55 - brightCyan: 85 - brightWhite: 102.5 diff --git a/themes/drukyul-dark.yaml b/themes/drukyul-dark.yaml index c09472a3..43404be9 100644 --- a/themes/drukyul-dark.yaml +++ b/themes/drukyul-dark.yaml @@ -8,6 +8,7 @@ source: author: "Bikash Gurung" repo: "https://github.com/kashgurung/drukyul-themes" url: "https://marketplace.visualstudio.com/items?itemName=kashgurung.drukyul-themes" + formats: null colors: bg: "#252929" fg: "#EEFFFF" diff --git a/themes/drukyul-light.yaml b/themes/drukyul-light.yaml index 67e10768..eb14f164 100644 --- a/themes/drukyul-light.yaml +++ b/themes/drukyul-light.yaml @@ -8,6 +8,7 @@ source: author: "Bikash Gurung" repo: "https://github.com/kashgurung/drukyul-themes" url: "https://marketplace.visualstudio.com/items?itemName=kashgurung.drukyul-themes" + formats: null colors: bg: "#F8F8F8" fg: "#2D3232" diff --git a/themes/drux-theme.yaml b/themes/drux-theme.yaml index 23c2da41..d91a763b 100644 --- a/themes/drux-theme.yaml +++ b/themes/drux-theme.yaml @@ -8,6 +8,7 @@ source: author: "DruxTech" repo: "https://gitlab.com/khaniuk/drux-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=DruxTech.drux-theme" + formats: null colors: bg: "#EAE4E1" fg: "#36221D" diff --git a/themes/ds-rose.yaml b/themes/ds-rose.yaml index 55241acf..99174764 100644 --- a/themes/ds-rose.yaml +++ b/themes/ds-rose.yaml @@ -8,6 +8,7 @@ source: author: "MKDev" repo: "https://github.com/Martin-Kristensen-WD/DS-Rose" url: "https://marketplace.visualstudio.com/items?itemName=MKDev.ds-rose" + formats: null colors: bg: "#161624" fg: "#D5C1C1" diff --git a/themes/dsekon-theme.yaml b/themes/dsekon-theme.yaml deleted file mode 100644 index db1ecacb..00000000 --- a/themes/dsekon-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DSekon Theme" -source: - marketplace_id: "DSekon.dsekon-theme" - version: "0.0.1" - installs: 18 - rating: 0 - ratings: 0 - author: "DSekon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=DSekon.dsekon-theme" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#4A505D" - red: "#F81141" - green: "#23974A" - yellow: "#FD7E57" - blue: "#285BFF" - magenta: "#8C62FD" - cyan: "#3A8AB2" - white: "#CCD5E5" - brightBlack: "#61697A" - brightRed: "#FC4A6D" - brightGreen: "#37BD58" - brightYellow: "#F6BE48" - brightBlue: "#199FFD" - brightMagenta: "#FC58F6" - brightCyan: "#50ACAE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 56.2 - black: 9.9 - red: 32.1 - green: 32.8 - yellow: 48.7 - blue: 22.6 - magenta: 30.8 - cyan: 31.8 - white: 76.5 - brightBlack: 20 - brightRed: 38.3 - brightGreen: 50.1 - brightYellow: 68.5 - brightBlue: 43.9 - brightMagenta: 46.9 - brightCyan: 45.9 - brightWhite: 103.7 diff --git a/themes/duck-in-the-dream.yaml b/themes/duck-in-the-dream.yaml deleted file mode 100644 index 7ae6730b..00000000 --- a/themes/duck-in-the-dream.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Duck in the Dream" -source: - marketplace_id: "MEvesalTR.duck-mode-vscode" - version: "0.9.7" - installs: 2138 - rating: 5 - ratings: 1 - author: "MEvesalTR" - repo: "https://github.com/MEvesalTR/duck-mode" - url: "https://marketplace.visualstudio.com/items?itemName=MEvesalTR.duck-mode-vscode" -colors: - bg: "#110F17" - fg: "#EDECEE" - black: "#110F17" - red: "#FF5164" - green: "#87FF5F" - yellow: "#FFCA85" - blue: "#9B78FF" - magenta: "#87FF5F" - cyan: "#9B78FF" - white: "#CDCCCE" - brightBlack: "#2D2D2D" - brightRed: "#FFCA85" - brightGreen: "#9B78FF" - brightYellow: "#FFCA85" - brightBlue: "#9B78FF" - brightMagenta: "#87FF5F" - brightCyan: "#87FF5F" - brightWhite: "#EDECEE" -meta: - mode: "dark" - accent: "green" - hue: 296 - pair: null - contrast: - fg: 95.3 - black: 0 - red: 43.6 - green: 90.2 - yellow: 79.6 - blue: 42.1 - magenta: 90.2 - cyan: 42.1 - white: 75.4 - brightBlack: 0 - brightRed: 79.6 - brightGreen: 42.1 - brightYellow: 79.6 - brightBlue: 42.1 - brightMagenta: 90.2 - brightCyan: 90.2 - brightWhite: 95.3 diff --git a/themes/duck-in-the-lake.yaml b/themes/duck-in-the-lake.yaml deleted file mode 100644 index 3fbba8b1..00000000 --- a/themes/duck-in-the-lake.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Duck in the Lake" -source: - marketplace_id: "MEvesalTR.duck-mode-vscode" - version: "0.9.7" - installs: 2138 - rating: 5 - ratings: 1 - author: "MEvesalTR" - repo: "https://github.com/MEvesalTR/duck-mode" - url: "https://marketplace.visualstudio.com/items?itemName=MEvesalTR.duck-mode-vscode" -colors: - bg: "#1D222D" - fg: "#CCCAC2" - black: "#171B24" - red: "#ED8274" - green: "#87D96C" - yellow: "#FACC6E" - blue: "#6DCBFA" - magenta: "#DABAFA" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F28779" - brightGreen: "#D5FF80" - brightYellow: "#FFCD69" - brightBlue: "#73D0FF" - brightMagenta: "#DFBFFF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 266 - pair: null - contrast: - fg: 72 - black: 0 - red: 48.9 - green: 69.3 - yellow: 77.1 - blue: 66.6 - magenta: 70.2 - cyan: 76.5 - white: 70.3 - brightBlack: 21.5 - brightRed: 51.4 - brightGreen: 95.8 - brightYellow: 78.3 - brightBlue: 69.5 - brightMagenta: 73.1 - brightCyan: 79.4 - brightWhite: 105.5 diff --git a/themes/duck-story.yaml b/themes/duck-story.yaml index c639d59d..e1352cad 100644 --- a/themes/duck-story.yaml +++ b/themes/duck-story.yaml @@ -2,12 +2,13 @@ name: "Duck Story" source: marketplace_id: "andzhr.duck-story" version: "1.0.0" - installs: 438 + installs: 439 rating: 0 ratings: 0 author: "Andrey Zakharov" repo: "https://github.com/andzhr/duck-story-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=andzhr.duck-story" + formats: null colors: bg: "#242423" fg: "#EFE2BE" diff --git a/themes/duckcash.yaml b/themes/duckcash.yaml index 2ab58915..85a80bbe 100644 --- a/themes/duckcash.yaml +++ b/themes/duckcash.yaml @@ -8,6 +8,7 @@ source: author: "duckcash" repo: null url: "https://marketplace.visualstudio.com/items?itemName=duckcash.duckcash" + formats: null colors: bg: "#FFFFFF" fg: "#1F1F1F" diff --git a/themes/duckdevlabs.yaml b/themes/duckdevlabs.yaml index f072f343..49e774be 100644 --- a/themes/duckdevlabs.yaml +++ b/themes/duckdevlabs.yaml @@ -8,6 +8,7 @@ source: author: "DuckDev by Allan Ramos" repo: "https://github.com/allansrc/duckdevlabs-theme" url: "https://marketplace.visualstudio.com/items?itemName=DuckDevbyAllanRamos.duckdevlabs" + formats: null colors: bg: "#1E1E1E" fg: "#CECECE" diff --git a/themes/duckeys-blurple.yaml b/themes/duckeys-blurple.yaml deleted file mode 100644 index abb508b7..00000000 --- a/themes/duckeys-blurple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Duckeys blurple" -source: - marketplace_id: "BlurpleTheme.blurpletheme" - version: "0.2.0" - installs: 604 - rating: 0 - ratings: 0 - author: "BlurpleTheme" - repo: "https://github.com/Nova-develoment-team/Blurpled" - url: "https://marketplace.visualstudio.com/items?itemName=BlurpleTheme.blurpletheme" -colors: - bg: "#1E1E1E" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FF0000" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.7 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 35.7 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 106 diff --git a/themes/ducks.yaml b/themes/ducks.yaml index a59d349b..b8438616 100644 --- a/themes/ducks.yaml +++ b/themes/ducks.yaml @@ -6,6 +6,7 @@ source: author: "beautifulgoat" repo: null url: "https://marketplace.visualstudio.com/items?itemName=beautifulgoat.ducks-color-theme" + formats: null colors: bg: "#010101" fg: "#8D9093" diff --git a/themes/ducky-light.yaml b/themes/ducky-light.yaml index 3650f576..c819ee9c 100644 --- a/themes/ducky-light.yaml +++ b/themes/ducky-light.yaml @@ -8,6 +8,7 @@ source: author: "Utsav Gupta" repo: "https://github.com/utsavgupta/ducky-light" url: "https://marketplace.visualstudio.com/items?itemName=utsavgupta.theme-ducky-light" + formats: null colors: bg: "#F9F9F9" fg: "#383A42" diff --git a/themes/dukana.yaml b/themes/dukana.yaml index 76c349cf..2dcf6f52 100644 --- a/themes/dukana.yaml +++ b/themes/dukana.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "lekiagospel.dukana" version: "1.1.5" installs: 125 + rating: 0 + ratings: 0 author: "Gospel Lekia" repo: "https://github.com/Yigaue/vscode-dukana" url: "https://marketplace.visualstudio.com/items?itemName=lekiagospel.dukana" + formats: null colors: bg: "#1D0D30" fg: "#BEAC16" diff --git a/themes/dukemonokai-color-theme.yaml b/themes/dukemonokai-color-theme.yaml deleted file mode 100644 index f6c620d4..00000000 --- a/themes/dukemonokai-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DukeMonokai-color-theme" -source: - marketplace_id: "cafeduke.dukemonokai" - version: "0.0.2" - installs: 436 - rating: 0 - ratings: 0 - author: "cafeduke" - repo: "https://github.com/cafeduke/vscode-dukemonokai-theme" - url: "https://marketplace.visualstudio.com/items?itemName=cafeduke.dukemonokai" -colors: - bg: "#202320" - fg: "#F8F8F0" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 100.4 - black: 0 - red: 23.2 - green: 51.6 - yellow: 56.2 - blue: 33.2 - magenta: 30.8 - cyan: 49 - white: 87 - brightBlack: 20.6 - brightRed: 35.9 - brightGreen: 75.5 - brightYellow: 82.5 - brightBlue: 48.4 - brightMagenta: 45.1 - brightCyan: 72 - brightWhite: 100.5 diff --git a/themes/dull-sun-dark.yaml b/themes/dull-sun-dark.yaml index edb703cd..a25f2ee7 100644 --- a/themes/dull-sun-dark.yaml +++ b/themes/dull-sun-dark.yaml @@ -8,6 +8,7 @@ source: author: "Dull Sun" repo: "https://github.com/leutzed/Dull-Sun-Theme" url: "https://marketplace.visualstudio.com/items?itemName=DullSun.dull-sun" + formats: null colors: bg: "#14181F" fg: "#CCCAC2" diff --git a/themes/dull-sun-light.yaml b/themes/dull-sun-light.yaml index 0ce332ef..5345e701 100644 --- a/themes/dull-sun-light.yaml +++ b/themes/dull-sun-light.yaml @@ -8,6 +8,7 @@ source: author: "Dull Sun" repo: "https://github.com/leutzed/Dull-Sun-Theme" url: "https://marketplace.visualstudio.com/items?itemName=DullSun.dull-sun" + formats: null colors: bg: "#212733" fg: "#CCCAC2" diff --git a/themes/dull-sun.yaml b/themes/dull-sun.yaml index 7cee3f87..f915f460 100644 --- a/themes/dull-sun.yaml +++ b/themes/dull-sun.yaml @@ -8,6 +8,7 @@ source: author: "Dull Sun" repo: "https://github.com/leutzed/Dull-Sun-Theme" url: "https://marketplace.visualstudio.com/items?itemName=DullSun.dull-sun" + formats: null colors: bg: "#191F2C" fg: "#CCCAC2" diff --git a/themes/dumdum-theme.yaml b/themes/dumdum-theme.yaml index 8af46f45..6ba4eac2 100644 --- a/themes/dumdum-theme.yaml +++ b/themes/dumdum-theme.yaml @@ -2,12 +2,13 @@ name: "「愚純」dumDum_theme" source: marketplace_id: "jstmax.dumdum-theme" version: "1.0.0" - installs: 216 + installs: 217 rating: 5 ratings: 1 author: "jstmax! - ceez2exst" repo: "https://github.com/jstmaxlol/dumdum-theme" url: "https://marketplace.visualstudio.com/items?itemName=jstmax.dumdum-theme" + formats: null colors: bg: "#171717" fg: "#D1D1D1" diff --git a/themes/dune-arrakis-incandescent.yaml b/themes/dune-arrakis-incandescent.yaml deleted file mode 100644 index 0e0afca4..00000000 --- a/themes/dune-arrakis-incandescent.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Arrakis Incandescent" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#151313" - fg: "#CECDC3" - black: "#151313" - red: "#E2AD4A" - green: "#7FB069" - yellow: "#5A96BC" - blue: "#CC6B49" - magenta: "#E0A98E" - cyan: "#DE956A" - white: "#CECDC3" - brightBlack: "#878580" - brightRed: "#C15849" - brightGreen: "#7FB069" - brightYellow: "#E8B04B" - brightBlue: "#5A96BC" - brightMagenta: "#C17B8D" - brightCyan: "#6B8FA3" - brightWhite: "#E6DCC6" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 75.3 - black: 0 - red: 62.2 - green: 51.8 - yellow: 41.7 - blue: 37.4 - magenta: 61.7 - cyan: 53.5 - white: 75.3 - brightBlack: 36.5 - brightRed: 30.9 - brightGreen: 51.8 - brightYellow: 64.3 - brightBlue: 41.7 - brightMagenta: 41.5 - brightCyan: 39 - brightWhite: 85.2 diff --git a/themes/dune-bene-gesserit.yaml b/themes/dune-bene-gesserit.yaml deleted file mode 100644 index b819f44f..00000000 --- a/themes/dune-bene-gesserit.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Bene Gesserit" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#08090D" - fg: "#E0E4E8" - black: "#08090D" - red: "#C9934E" - green: "#4A7C9E" - yellow: "#2C5F8D" - blue: "#6B5B8C" - magenta: "#4E5D7A" - cyan: "#7A8C6E" - white: "#E0E4E8" - brightBlack: "#606878" - brightRed: "#A65353" - brightGreen: "#6B8C5F" - brightYellow: "#C9934E" - brightBlue: "#4A7C9E" - brightMagenta: "#8C6BAE" - brightCyan: "#5CA8CE" - brightWhite: "#F0F4F8" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.9 - black: 0 - red: 49.5 - green: 30.4 - yellow: 18.9 - blue: 21.8 - magenta: 19.1 - cyan: 37.8 - white: 89.9 - brightBlack: 23.6 - brightRed: 25.8 - brightGreen: 36.2 - brightYellow: 49.5 - brightBlue: 30.4 - brightMagenta: 31.5 - brightCyan: 50.5 - brightWhite: 100.2 diff --git a/themes/dune-caladan-storm.yaml b/themes/dune-caladan-storm.yaml deleted file mode 100644 index 98377cad..00000000 --- a/themes/dune-caladan-storm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Caladan Storm" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#0D1117" - fg: "#E6EDF3" - black: "#0D1117" - red: "#79C0FF" - green: "#7EE787" - yellow: "#A5D6FF" - blue: "#FF9B54" - magenta: "#2F5D8A" - cyan: "#58A6FF" - white: "#E6EDF3" - brightBlack: "#6E7681" - brightRed: "#FF7B72" - brightGreen: "#7EE787" - brightYellow: "#FFA657" - brightBlue: "#79C0FF" - brightMagenta: "#BB9AF7" - brightCyan: "#56D4DD" - brightWhite: "#F0F6FC" -meta: - mode: "dark" - accent: "green" - hue: 258 - pair: null - contrast: - fg: 95 - black: 0 - red: 64.7 - green: 78.1 - yellow: 77.9 - blue: 61.4 - magenta: 17.9 - cyan: 52.2 - white: 95 - brightBlack: 29.3 - brightRed: 52.6 - brightGreen: 78.1 - brightYellow: 65.1 - brightBlue: 64.7 - brightMagenta: 56.1 - brightCyan: 69.9 - brightWhite: 100.9 diff --git a/themes/dune-fremen-sietch.yaml b/themes/dune-fremen-sietch.yaml deleted file mode 100644 index b6eb2f34..00000000 --- a/themes/dune-fremen-sietch.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Fremen Sietch" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#FAF8F3" - fg: "#2C2416" - black: "#FAF8F3" - red: "#8B6239" - green: "#2A7F9E" - yellow: "#1E6B8C" - blue: "#A0522D" - magenta: "#6B4226" - cyan: "#4A7C59" - white: "#2C2416" - brightBlack: "#8B7355" - brightRed: "#C2410C" - brightGreen: "#4A7C59" - brightYellow: "#B45309" - brightBlue: "#2A7F9E" - brightMagenta: "#8B4A8C" - brightCyan: "#3C9FBC" - brightWhite: "#1A1511" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.1 - black: 0 - red: 72.5 - green: 67.1 - yellow: 75.2 - blue: 73.5 - magenta: 85.3 - cyan: 69.5 - white: 98.1 - brightBlack: 67 - brightRed: 70.4 - brightGreen: 69.5 - brightYellow: 69.9 - brightBlue: 67.1 - brightMagenta: 75.9 - brightCyan: 52.9 - brightWhite: 100.7 diff --git a/themes/dune-giedi-prime.yaml b/themes/dune-giedi-prime.yaml deleted file mode 100644 index b07447ab..00000000 --- a/themes/dune-giedi-prime.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Giedi Prime" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#0A0A0A" - fg: "#D4D4D4" - black: "#0A0A0A" - red: "#E3BDAD" - green: "#B6D8E6" - yellow: "#A2BEE8" - blue: "#DCCDBE" - magenta: "#EDCBB8" - cyan: "#C0DCC0" - white: "#D4D4D4" - brightBlack: "#7C7C7C" - brightRed: "#9E6A6A" - brightGreen: "#6A8E6A" - brightYellow: "#9E8A6A" - brightBlue: "#6A7E9E" - brightMagenta: "#A5A5A5" - brightCyan: "#ADADAD" - brightWhite: "#F6F6F6" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 80.3 - black: 0 - red: 71.3 - green: 79.4 - yellow: 66.3 - blue: 77.5 - magenta: 78.9 - cyan: 80.7 - white: 80.3 - brightBlack: 32.7 - brightRed: 30.8 - brightGreen: 37.1 - brightYellow: 40.8 - brightBlue: 33.2 - brightMagenta: 53.4 - brightCyan: 57.7 - brightWhite: 101.8 diff --git a/themes/dune-guild-navigator.yaml b/themes/dune-guild-navigator.yaml deleted file mode 100644 index daa9c6c0..00000000 --- a/themes/dune-guild-navigator.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Guild Navigator" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#050308" - fg: "#F0E8FF" - black: "#050308" - red: "#C8884C" - green: "#FF8C42" - yellow: "#4CA8FF" - blue: "#9B72D4" - magenta: "#7C6CA4" - cyan: "#FF9D5C" - white: "#F0E8FF" - brightBlack: "#5E5468" - brightRed: "#FF6B6B" - brightGreen: "#69DB7C" - brightYellow: "#FFA94D" - brightBlue: "#5CA7FF" - brightMagenta: "#C678DD" - brightCyan: "#56B6C2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 305 - pair: null - contrast: - fg: 95.1 - black: 0 - red: 45.7 - green: 57 - yellow: 53 - blue: 37.7 - magenta: 29.6 - cyan: 62.6 - white: 95.1 - brightBlack: 17.2 - brightRed: 49.1 - brightGreen: 71.2 - brightYellow: 66.5 - brightBlue: 53.3 - brightMagenta: 46.1 - brightCyan: 55.6 - brightWhite: 107.9 diff --git a/themes/dune-harkonnen.yaml b/themes/dune-harkonnen.yaml deleted file mode 100644 index 9ab1dfe7..00000000 --- a/themes/dune-harkonnen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Harkonnen" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#090A0C" - fg: "#D4D7DE" - black: "#090A0C" - red: "#D2D895" - green: "#73BD96" - yellow: "#7DACE4" - blue: "#A88BBF" - magenta: "#86A6CF" - cyan: "#8BBBB0" - white: "#D4D7DE" - brightBlack: "#565760" - brightRed: "#C77374" - brightGreen: "#8FB5A3" - brightYellow: "#C4C7A0" - brightBlue: "#8FA9D0" - brightMagenta: "#9F93A8" - brightCyan: "#8FB0A8" - brightWhite: "#D4D7DE" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82.1 - black: 0 - red: 79.6 - green: 58.3 - yellow: 55.4 - blue: 45.6 - magenta: 52.6 - cyan: 60.2 - white: 82.1 - brightBlack: 16.9 - brightRed: 40.1 - brightGreen: 57.5 - brightYellow: 70.7 - brightBlue: 54.6 - brightMagenta: 46.2 - brightCyan: 55.6 - brightWhite: 82.1 diff --git a/themes/dune-house-atreides.yaml b/themes/dune-house-atreides.yaml deleted file mode 100644 index b8749849..00000000 --- a/themes/dune-house-atreides.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune House Atreides" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#11161C" - fg: "#E4EDF7" - black: "#11161C" - red: "#60A5FA" - green: "#4A9FA5" - yellow: "#3B82F6" - blue: "#22D3EE" - magenta: "#94A3B8" - cyan: "#10B981" - white: "#E4EDF7" - brightBlack: "#5A6B7E" - brightRed: "#EF4444" - brightGreen: "#10B981" - brightYellow: "#F59E0B" - brightBlue: "#3B82F6" - brightMagenta: "#A78BFA" - brightCyan: "#06B6D4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 253 - pair: null - contrast: - fg: 94.5 - black: 0 - red: 51.5 - green: 43.2 - yellow: 36.9 - blue: 68.7 - magenta: 50.9 - cyan: 52 - white: 94.5 - brightBlack: 23.6 - brightRed: 37 - brightGreen: 52 - brightYellow: 59.6 - brightBlue: 36.9 - brightMagenta: 48.4 - brightCyan: 54 - brightWhite: 107 diff --git a/themes/dune-ix-technology.yaml b/themes/dune-ix-technology.yaml deleted file mode 100644 index 58479ddc..00000000 --- a/themes/dune-ix-technology.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Ix Technology" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#0A0C0F" - fg: "#E8ECF0" - black: "#0A0C0F" - red: "#FFB86C" - green: "#50FA7B" - yellow: "#6272A4" - blue: "#BD93F9" - magenta: "#8897B4" - cyan: "#66D9EF" - white: "#E8ECF0" - brightBlack: "#6B7585" - brightRed: "#FF5555" - brightGreen: "#50FA7B" - brightYellow: "#F1B644" - brightBlue: "#6272A4" - brightMagenta: "#FF79C6" - brightCyan: "#8BE9FD" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 94.9 - black: 0 - red: 72.2 - green: 85.7 - yellow: 28.8 - blue: 54.4 - magenta: 45.6 - cyan: 74.2 - white: 94.9 - brightBlack: 29.1 - brightRed: 44.2 - brightGreen: 85.7 - brightYellow: 68.5 - brightBlue: 28.8 - brightMagenta: 55.4 - brightCyan: 84.8 - brightWhite: 102.8 diff --git a/themes/dune-kaitain.yaml b/themes/dune-kaitain.yaml deleted file mode 100644 index c50feb6c..00000000 --- a/themes/dune-kaitain.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "dune-kaitain" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#00151A" - fg: "#A8BCC9" - black: "#00151A" - red: "#D4A52A" - green: "#869900" - yellow: "#268BD2" - blue: "#CB4C16" - magenta: "#A15DA1" - cyan: "#2DA198" - white: "#A8BCC9" - brightBlack: "#2B4753" - brightRed: "#CC5555" - brightGreen: "#4A9A4A" - brightYellow: "#CCAD31" - brightBlue: "#55A2C2" - brightMagenta: "#D33682" - brightCyan: "#2AA198" - brightWhite: "#C7D1D6" -meta: - mode: "dark" - accent: "red" - hue: 214 - pair: null - contrast: - fg: 63.9 - black: 0 - red: 56.7 - green: 42.1 - yellow: 37 - blue: 30.1 - magenta: 29.5 - cyan: 42.8 - white: 63.9 - brightBlack: 8.9 - brightRed: 32.7 - brightGreen: 38.8 - brightYellow: 58.6 - brightBlue: 46.5 - brightMagenta: 30.7 - brightCyan: 42.7 - brightWhite: 77 diff --git a/themes/dune-mentat.yaml b/themes/dune-mentat.yaml deleted file mode 100644 index 5591ad9b..00000000 --- a/themes/dune-mentat.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Mentat" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#FAFAFA" - fg: "#1A1A1A" - black: "#FAFAFA" - red: "#8250DF" - green: "#0969DA" - yellow: "#0550AE" - blue: "#CF222E" - magenta: "#6639BA" - cyan: "#116329" - white: "#1A1A1A" - brightBlack: "#909090" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#9A6700" - brightBlue: "#0969DA" - brightMagenta: "#8250DF" - brightCyan: "#0598D3" - brightWhite: "#0A0A0A" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 101.3 - black: 0 - red: 71.3 - green: 72 - yellow: 82.6 - blue: 71.8 - magenta: 81.9 - cyan: 82.3 - white: 101.3 - brightBlack: 56.1 - brightRed: 82.2 - brightGreen: 71.6 - brightYellow: 70.4 - brightBlue: 72 - brightMagenta: 71.3 - brightCyan: 56.3 - brightWhite: 102.9 diff --git a/themes/dune-muad-dib.yaml b/themes/dune-muad-dib.yaml deleted file mode 100644 index 3fc6794e..00000000 --- a/themes/dune-muad-dib.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Muad'Dib" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#0F0E0C" - fg: "#E8E2D0" - black: "#0F0E0C" - red: "#D4A85C" - green: "#88B068" - yellow: "#4A9EFF" - blue: "#9B7AC4" - magenta: "#A08458" - cyan: "#C89C5C" - white: "#E8E2D0" - brightBlack: "#6E6858" - brightRed: "#D67E60" - brightGreen: "#7CA668" - brightYellow: "#E8A85C" - brightBlue: "#5CA8E8" - brightMagenta: "#B088D0" - brightCyan: "#6CBCE8" - brightWhite: "#F8F4E8" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 88.9 - black: 0 - red: 58.7 - green: 52.9 - yellow: 48.7 - blue: 38.7 - magenta: 38.4 - cyan: 52.5 - white: 88.9 - brightBlack: 23.7 - brightRed: 45.1 - brightGreen: 47.7 - brightYellow: 61.9 - brightBlue: 51.8 - brightMagenta: 46.5 - brightCyan: 61 - brightWhite: 100.3 diff --git a/themes/dune-salusa-secundus.yaml b/themes/dune-salusa-secundus.yaml deleted file mode 100644 index 6c937bac..00000000 --- a/themes/dune-salusa-secundus.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Salusa Secundus" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#0F0D0D" - fg: "#E8D6D6" - black: "#0F0D0D" - red: "#FFB86C" - green: "#FF9D5C" - yellow: "#FF7979" - blue: "#FF5555" - magenta: "#8B4A4A" - cyan: "#CC6666" - white: "#E8D6D6" - brightBlack: "#726565" - brightRed: "#FF3838" - brightGreen: "#C78860" - brightYellow: "#FFA500" - brightBlue: "#FF8C42" - brightMagenta: "#FF79C6" - brightCyan: "#FFB86C" - brightWhite: "#F4E8E8" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83.9 - black: 0 - red: 72.2 - green: 62.3 - yellow: 52.4 - blue: 44.1 - magenta: 19.2 - cyan: 37.1 - white: 83.9 - brightBlack: 23.6 - brightRed: 39.8 - brightGreen: 45.6 - brightYellow: 64.4 - brightBlue: 56.7 - brightMagenta: 55.3 - brightCyan: 72.2 - brightWhite: 94.3 diff --git a/themes/dune-sandworm.yaml b/themes/dune-sandworm.yaml deleted file mode 100644 index 65474522..00000000 --- a/themes/dune-sandworm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Sandworm" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#1A1611" - fg: "#E8DCC4" - black: "#1A1611" - red: "#E8B88C" - green: "#D4A574" - yellow: "#5CA7E8" - blue: "#CE7E4A" - magenta: "#8B6239" - cyan: "#A68860" - white: "#E8DCC4" - brightBlack: "#7A6548" - brightRed: "#D67C5C" - brightGreen: "#8CA674" - brightYellow: "#E8A85C" - brightBlue: "#6CB4EE" - brightMagenta: "#C88A6A" - brightCyan: "#7AC0D8" - brightWhite: "#F4EDE4" -meta: - mode: "dark" - accent: "indigo" - hue: 73 - pair: null - contrast: - fg: 85.1 - black: 0 - red: 68.3 - green: 57.4 - yellow: 50.8 - blue: 42.7 - magenta: 24.1 - cyan: 40.1 - white: 85.1 - brightBlack: 23.1 - brightRed: 43.8 - brightGreen: 48.8 - brightYellow: 61.3 - brightBlue: 57.3 - brightMagenta: 46 - brightCyan: 62.1 - brightWhite: 95.7 diff --git a/themes/dune-sardaukar-imperial.yaml b/themes/dune-sardaukar-imperial.yaml deleted file mode 100644 index ca8b990f..00000000 --- a/themes/dune-sardaukar-imperial.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Sardaukar Imperial" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#0C0C0E" - fg: "#E8E8F0" - black: "#0C0C0E" - red: "#FFD700" - green: "#9D6FCC" - yellow: "#8B72C7" - blue: "#DC143C" - magenta: "#7C6CA4" - cyan: "#C0C0C0" - white: "#E8E8F0" - brightBlack: "#6A6A7C" - brightRed: "#FF3838" - brightGreen: "#6B9E6B" - brightYellow: "#FFAA40" - brightBlue: "#8B72C7" - brightMagenta: "#FF79C6" - brightCyan: "#68D4FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 93.1 - black: 0 - red: 84 - green: 36.4 - yellow: 34.8 - blue: 29.3 - magenta: 29.4 - cyan: 68.4 - white: 93.1 - brightBlack: 25.2 - brightRed: 39.9 - brightGreen: 43.4 - brightYellow: 66.5 - brightBlue: 34.8 - brightMagenta: 55.4 - brightCyan: 72.9 - brightWhite: 107.7 diff --git a/themes/dune-spacing-guild.yaml b/themes/dune-spacing-guild.yaml deleted file mode 100644 index 1f434ece..00000000 --- a/themes/dune-spacing-guild.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Spacing Guild" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#0A0B0D" - fg: "#E8ECF4" - black: "#0A0B0D" - red: "#FFD700" - green: "#4A90E2" - yellow: "#6BB6FF" - blue: "#FF9940" - magenta: "#8899B4" - cyan: "#A8B8D0" - white: "#E8ECF4" - brightBlack: "#68707C" - brightRed: "#E85855" - brightGreen: "#6BC46D" - brightYellow: "#FFAA40" - brightBlue: "#5CA7FF" - brightMagenta: "#B794F6" - brightCyan: "#68D4FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 95.1 - black: 0 - red: 84.1 - green: 41.5 - yellow: 60 - blue: 60.8 - magenta: 46.4 - cyan: 63.1 - white: 95.1 - brightBlack: 26.9 - brightRed: 39.6 - brightGreen: 59.9 - brightYellow: 66.5 - brightBlue: 53.1 - brightMagenta: 53.8 - brightCyan: 72.9 - brightWhite: 107.7 diff --git a/themes/dune-spice-vision.yaml b/themes/dune-spice-vision.yaml deleted file mode 100644 index a38501f9..00000000 --- a/themes/dune-spice-vision.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Spice Vision" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#140F0A" - fg: "#FFEDC6" - black: "#140F0A" - red: "#FFD700" - green: "#FF9500" - yellow: "#00BFFF" - blue: "#FF6B35" - magenta: "#9B59B6" - cyan: "#FFB347" - white: "#FFEDC6" - brightBlack: "#6E5A48" - brightRed: "#FF4757" - brightGreen: "#26DE81" - brightYellow: "#FFA502" - brightBlue: "#00BFFF" - brightMagenta: "#C56CF0" - brightCyan: "#18DCFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 67 - pair: null - contrast: - fg: 96.7 - black: 0 - red: 83.8 - green: 59 - yellow: 61 - blue: 47.9 - magenta: 29.1 - cyan: 69.6 - white: 96.7 - brightBlack: 19.1 - brightRed: 41.9 - brightGreen: 70.3 - brightYellow: 64.3 - brightBlue: 61 - brightMagenta: 43.8 - brightCyan: 74.3 - brightWhite: 107.4 diff --git a/themes/dune-water-of-life.yaml b/themes/dune-water-of-life.yaml deleted file mode 100644 index e6695f59..00000000 --- a/themes/dune-water-of-life.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Dune Water of Life" -source: - marketplace_id: "FedaykinDev.fedaykin-themes" - version: "1.0.2" - installs: 237 - rating: 0 - ratings: 0 - author: "FedaykinDev" - repo: "https://github.com/btriapitsyn/fedaykin-themes" - url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" -colors: - bg: "#0A0E14" - fg: "#E8F0FF" - black: "#0A0E14" - red: "#FFD700" - green: "#87CEEB" - yellow: "#5EB3FF" - blue: "#9B88D3" - magenta: "#7AA2E3" - cyan: "#66E0CE" - white: "#E8F0FF" - brightBlack: "#5A6B88" - brightRed: "#FF6B9D" - brightGreen: "#48DBFB" - brightYellow: "#FECA57" - brightBlue: "#54A0FF" - brightMagenta: "#C792EA" - brightCyan: "#80DEEA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 258 - pair: null - contrast: - fg: 97.4 - black: 0 - red: 83.9 - green: 70.8 - yellow: 57.9 - blue: 44 - magenta: 51.1 - cyan: 75.8 - white: 97.4 - brightBlack: 24.6 - brightRed: 50.3 - brightGreen: 74.6 - brightYellow: 78.8 - brightBlue: 49.9 - brightMagenta: 54.5 - brightCyan: 77.7 - brightWhite: 107.6 diff --git a/themes/duomage.yaml b/themes/duomage.yaml index dad84004..74c72214 100644 --- a/themes/duomage.yaml +++ b/themes/duomage.yaml @@ -8,6 +8,7 @@ source: author: "Neacsu Stefan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=neacsustefan14.duomage" + formats: null colors: bg: "#0C0C0C" fg: "#F8F8F8" diff --git a/themes/durgonix-dark.yaml b/themes/durgonix-dark.yaml index d9ae4f21..2f3a343c 100644 --- a/themes/durgonix-dark.yaml +++ b/themes/durgonix-dark.yaml @@ -8,6 +8,7 @@ source: author: "i8o8i" repo: "https://github.com/i8o8i-Developer/Durgonix-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=i8o8i.durgonix-dark-theme" + formats: null colors: bg: "#0B0C0E" fg: "#CFCFCF" diff --git a/themes/dusk-rider.yaml b/themes/dusk-rider.yaml index c339a4f8..8efb09f7 100644 --- a/themes/dusk-rider.yaml +++ b/themes/dusk-rider.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#0D0A0F" fg: "#F3E5F5" diff --git a/themes/dusk.yaml b/themes/dusk.yaml index 77fcc2e5..0e58ec8e 100644 --- a/themes/dusk.yaml +++ b/themes/dusk.yaml @@ -1,52 +1,53 @@ name: "Dusk" source: - marketplace_id: "leelhn2345.chromodynamics-v3-theme" - version: "0.4.7" - installs: 612 - rating: 0 - ratings: 0 - author: "leelhn2345" - repo: "https://github.com/leelhn2345/chromodynamics-v3-theme" - url: "https://marketplace.visualstudio.com/items?itemName=leelhn2345.chromodynamics-v3-theme" + marketplace_id: "vidbregar.dusk" + version: "1.0.1" + installs: 2209 + rating: 5 + ratings: 1 + author: "Vid Bregar" + repo: "https://github.com/vidbregar/Dusk-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=vidbregar.dusk" + formats: null colors: - bg: "#060606" - fg: "#C6C6C6" - black: "#484F58" - red: "#FF7B72" - green: "#3FB950" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FFA198" - brightGreen: "#56D364" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" + bg: "#0F111A" + fg: "#F5F5F5" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "green" - hue: null + accent: "red" + hue: 275 pair: null contrast: - fg: 72.1 - black: 13.5 - red: 53 - green: 52.6 - yellow: 52.7 - blue: 52.7 - magenta: 52.7 - cyan: 61.8 - white: 64.5 - brightBlack: 29.7 - brightRed: 65.3 - brightGreen: 65.9 - brightYellow: 65.2 - brightBlue: 65.2 - brightMagenta: 65.1 - brightCyan: 70.4 - brightWhite: 107.8 + fg: 100.8 + black: 0 + red: 44.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 44.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/duskfox.yaml b/themes/duskfox.yaml deleted file mode 100644 index 0fa06784..00000000 --- a/themes/duskfox.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Duskfox" -source: - marketplace_id: "keifererikson.nightfox" - version: "0.0.14" - installs: 17385 - rating: 5 - ratings: 3 - author: "Keifer Erikson" - repo: "https://github.com/keifererikson/vscode-nightfox" - url: "https://marketplace.visualstudio.com/items?itemName=keifererikson.nightfox" -colors: - bg: "#232136" - fg: "#CDCECF" - black: "#393552" - red: "#EB6F92" - green: "#A3BE8C" - yellow: "#F6C177" - blue: "#569FBA" - magenta: "#C4A7E7" - cyan: "#9CCFD8" - white: "#E0DEF4" - brightBlack: "#484A55" - brightRed: "#D16982" - brightGreen: "#90C7AC" - brightYellow: "#F9CB8C" - brightBlue: "#65B1CD" - brightMagenta: "#CCB1ED" - brightCyan: "#A6DAE3" - brightWhite: "#E3E3E4" -meta: - mode: "dark" - accent: "red" - hue: 288 - pair: null - contrast: - fg: 74.1 - black: 0 - red: 44.2 - green: 60 - yellow: 71.9 - blue: 43 - magenta: 58.7 - cyan: 69.7 - white: 85.3 - brightBlack: 9.5 - brightRed: 37.2 - brightGreen: 63.2 - brightYellow: 77 - brightBlue: 52.1 - brightMagenta: 63.8 - brightCyan: 76.1 - brightWhite: 87.1 diff --git a/themes/dutchtheme.yaml b/themes/dutchtheme.yaml index bb9017cb..19fc4452 100644 --- a/themes/dutchtheme.yaml +++ b/themes/dutchtheme.yaml @@ -8,6 +8,7 @@ source: author: "gnrfilipe04" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gnrfilipe04.dutchtheme" + formats: null colors: bg: "#060606" fg: "#737373" diff --git a/themes/dynamic.yaml b/themes/dynamic.yaml index ba49dd3a..1536fac5 100644 --- a/themes/dynamic.yaml +++ b/themes/dynamic.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "zoydburger.workspace-theme-switcher" version: "0.0.5" installs: 0 + rating: 0 + ratings: 0 author: "zoydburger" repo: "https://github.com/zoydburger/workspace-theme-switcher" url: "https://marketplace.visualstudio.com/items?itemName=zoydburger.workspace-theme-switcher" + formats: null colors: bg: "#002451" fg: "#FFFFFF" diff --git a/themes/dyno-cute.yaml b/themes/dyno-cute.yaml index 8c83625d..a17aec39 100644 --- a/themes/dyno-cute.yaml +++ b/themes/dyno-cute.yaml @@ -8,6 +8,7 @@ source: author: "Dyno Nguyen (Legacy)" repo: "https://github.com/TuanNguyen2504/my-devtools-config.git#main" url: "https://marketplace.visualstudio.com/items?itemName=dyno-nguyen.dyno-dark-mode" + formats: null colors: bg: "#1D2433" fg: "#A2AABC" diff --git a/themes/dyno.yaml b/themes/dyno.yaml index 911b3d2e..d89f95f2 100644 --- a/themes/dyno.yaml +++ b/themes/dyno.yaml @@ -8,6 +8,7 @@ source: author: "Dyno Nguyen (Legacy)" repo: "https://github.com/TuanNguyen2504/my-devtools-config.git#main" url: "https://marketplace.visualstudio.com/items?itemName=dyno-nguyen.dyno-dark-mode" + formats: null colors: bg: "#011C37" fg: "#F8F8F2" diff --git a/themes/dzsolarized-dark.yaml b/themes/dzsolarized-dark.yaml deleted file mode 100644 index da02538f..00000000 --- a/themes/dzsolarized-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DzSolarized Dark" -source: - marketplace_id: "ChrisDzombak.dzsolarized" - version: "0.0.18" - installs: 18 - rating: 0 - ratings: 0 - author: "Chris Dzombak" - repo: "https://github.com/cdzombak/dzsolarized-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=ChrisDzombak.dzsolarized" -colors: - bg: "#001E28" - fg: "#839496" - black: "#002831" - red: "#D11C24" - green: "#6CBE6C" - yellow: "#A57706" - blue: "#2176C7" - magenta: "#C61C6F" - cyan: "#259286" - white: "#EAE3CB" - brightBlack: "#006488" - brightRed: "#F5163B" - brightGreen: "#51EF84" - brightYellow: "#B27E28" - brightBlue: "#178EC8" - brightMagenta: "#E24D8E" - brightCyan: "#00B39E" - brightWhite: "#FCF4DC" -meta: - mode: "dark" - accent: "orange" - hue: 224 - pair: null - contrast: - fg: 41.4 - black: 0 - red: 25.4 - green: 55.8 - yellow: 32.9 - blue: 28 - magenta: 24.3 - cyan: 35 - white: 88.1 - brightBlack: 18.2 - brightRed: 34 - brightGreen: 78.8 - brightYellow: 37.2 - brightBlue: 36.4 - brightMagenta: 36.5 - brightCyan: 49.5 - brightWhite: 99.1 diff --git a/themes/dzsolarized.yaml b/themes/dzsolarized.yaml deleted file mode 100644 index a4644e36..00000000 --- a/themes/dzsolarized.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "DzSolarized" -source: - marketplace_id: "ChrisDzombak.dzsolarized" - version: "0.0.18" - installs: 18 - rating: 0 - ratings: 0 - author: "Chris Dzombak" - repo: "https://github.com/cdzombak/dzsolarized-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=ChrisDzombak.dzsolarized" -colors: - bg: "#FDF6E3" - fg: "#586E75" - black: "#002831" - red: "#D11C24" - green: "#6CBE6C" - yellow: "#A57706" - blue: "#2176C7" - magenta: "#C61C6F" - cyan: "#259286" - white: "#EAE3CB" - brightBlack: "#006488" - brightRed: "#F5163B" - brightGreen: "#51EF84" - brightYellow: "#B27E28" - brightBlue: "#178EC8" - brightMagenta: "#E24D8E" - brightCyan: "#00B39E" - brightWhite: "#FCF4DC" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 71.6 - black: 97 - red: 69.5 - green: 39.5 - yellow: 61.9 - blue: 66.8 - magenta: 70.5 - cyan: 59.9 - white: 8.9 - brightBlack: 76.9 - brightRed: 60.9 - brightGreen: 17.6 - brightYellow: 57.7 - brightBlue: 58.4 - brightMagenta: 58.3 - brightCyan: 45.6 - brightWhite: 0 diff --git a/themes/earl-grey.yaml b/themes/earl-grey.yaml index ffbf1827..42bab27f 100644 --- a/themes/earl-grey.yaml +++ b/themes/earl-grey.yaml @@ -8,6 +8,7 @@ source: author: "Earl Grey" repo: "https://github.com/earl-grey-theme/earl-grey-vsc" url: "https://marketplace.visualstudio.com/items?itemName=EarlGrey.earl-grey" + formats: null colors: bg: "#FCFBF9" fg: "#605A52" diff --git a/themes/early-bird.yaml b/themes/early-bird.yaml index cd8b8f4a..863509c1 100644 --- a/themes/early-bird.yaml +++ b/themes/early-bird.yaml @@ -8,6 +8,7 @@ source: author: "mpchow" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mpchow.early-bird" + formats: null colors: bg: "#FAFAFA" fg: "#575F66" diff --git a/themes/early-riser.yaml b/themes/early-riser.yaml index 48e06661..829f8124 100644 --- a/themes/early-riser.yaml +++ b/themes/early-riser.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "mikemcbride.early-riser" version: "1.2.2" installs: 441 + rating: 0 + ratings: 0 author: "Mike McBride" repo: "https://github.com/mikemcbride/vscode-early-riser" url: "https://marketplace.visualstudio.com/items?itemName=mikemcbride.early-riser" + formats: null colors: bg: "#F7FAFC" fg: "#6E7F91" diff --git a/themes/earth-brown-stability-grounding.yaml b/themes/earth-brown-stability-grounding.yaml index 54f3bbee..65164496 100644 --- a/themes/earth-brown-stability-grounding.yaml +++ b/themes/earth-brown-stability-grounding.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#1A1410" fg: "#EFEBE9" diff --git a/themes/earth-collection.yaml b/themes/earth-collection.yaml index 7aa0e659..4baba944 100644 --- a/themes/earth-collection.yaml +++ b/themes/earth-collection.yaml @@ -8,6 +8,7 @@ source: author: "RLabs Inc." repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" + formats: null colors: bg: "#161312" fg: "#F7F6F5" diff --git a/themes/earthsong-contrast.yaml b/themes/earthsong-contrast.yaml deleted file mode 100644 index 9e9f6d0b..00000000 --- a/themes/earthsong-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "earthsong-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#12100F" - fg: "#EBD1B7" - black: "#201C1B" - red: "#BA0E2E" - green: "#95CC5E" - yellow: "#DB784D" - blue: "#60A365" - magenta: "#DB784D" - cyan: "#95CC5E" - white: "#F1DECB" - brightBlack: "#4A413D" - brightRed: "#F03E5F" - brightGreen: "#C8E5AB" - brightYellow: "#ECB8A2" - brightBlue: "#A1C8A4" - brightMagenta: "#ECB8A2" - brightCyan: "#C8E5AB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 80.8 - black: 0 - red: 21 - green: 66.1 - yellow: 43.9 - blue: 44.3 - magenta: 43.9 - cyan: 66.1 - white: 88 - brightBlack: 9 - brightRed: 37.3 - brightGreen: 84.7 - brightYellow: 70.1 - brightBlue: 67.1 - brightMagenta: 70.1 - brightCyan: 84.7 - brightWhite: 107.4 diff --git a/themes/earthsong-light.yaml b/themes/earthsong-light.yaml deleted file mode 100644 index b282e686..00000000 --- a/themes/earthsong-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "earthsong-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#4D463E" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#95CC5E" - yellow: "#DB784D" - blue: "#60A365" - magenta: "#DB784D" - cyan: "#95CC5E" - white: "#5B5349" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#C8E5AB" - brightYellow: "#ECB8A2" - brightBlue: "#A1C8A4" - brightMagenta: "#ECB8A2" - brightCyan: "#C8E5AB" - brightWhite: "#85796B" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 91.5 - black: 0 - red: 80.3 - green: 35.9 - yellow: 57.4 - blue: 57 - magenta: 57.4 - cyan: 35.9 - white: 86.3 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 18.4 - brightYellow: 32.1 - brightBlue: 35 - brightMagenta: 32.1 - brightCyan: 18.4 - brightWhite: 69.4 diff --git a/themes/earthsong.yaml b/themes/earthsong.yaml deleted file mode 100644 index a785e704..00000000 --- a/themes/earthsong.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "earthsong" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#36312C" - fg: "#EBD1B7" - black: "#443E37" - red: "#BA0E2E" - green: "#95CC5E" - yellow: "#DB784D" - blue: "#60A365" - magenta: "#DB784D" - cyan: "#95CC5E" - white: "#F1DECB" - brightBlack: "#6E645A" - brightRed: "#F03E5F" - brightGreen: "#C8E5AB" - brightYellow: "#ECB8A2" - brightBlue: "#A1C8A4" - brightMagenta: "#ECB8A2" - brightCyan: "#C8E5AB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 67 - pair: null - contrast: - fg: 75.7 - black: 0 - red: 15.9 - green: 61 - yellow: 38.8 - blue: 39.2 - magenta: 38.8 - cyan: 61 - white: 82.9 - brightBlack: 17.3 - brightRed: 32.2 - brightGreen: 79.6 - brightYellow: 65 - brightBlue: 62 - brightMagenta: 65 - brightCyan: 79.6 - brightWhite: 102.3 diff --git a/themes/easter.yaml b/themes/easter.yaml index b29eaea6..a8c2b0f1 100644 --- a/themes/easter.yaml +++ b/themes/easter.yaml @@ -8,6 +8,7 @@ source: author: "RJ Shoemaker" repo: null url: "https://marketplace.visualstudio.com/items?itemName=RJShoemaker55.easter" + formats: null colors: bg: "#FFD7D0" fg: "#FF0909" diff --git a/themes/easy-eye.yaml b/themes/easy-eye.yaml deleted file mode 100644 index b219e3f7..00000000 --- a/themes/easy-eye.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Easy Eye" -source: - marketplace_id: "SufficientDaikon.sufficentdaikon-darkpp" - version: "1.3.5" - installs: 699 - rating: 0 - ratings: 0 - author: "SufficientDaikon" - repo: "https://github.com/SufficientDaikon/Black-Void_VSCode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SufficientDaikon.sufficentdaikon-darkpp" -colors: - bg: "#0A0A0A" - fg: "#C7C7C7" - black: "#0E0E0E" - red: "#FC6A67" - green: "#A9DC76" - yellow: "#FFD866" - blue: "#78DCE8" - magenta: "#E991E3" - cyan: "#78E8C6" - white: "#C7C7C7" - brightBlack: "#000000" - brightRed: "#FF6764" - brightGreen: "#A9F65C" - brightYellow: "#FFD866" - brightBlue: "#61EEFF" - brightMagenta: "#FD7DF4" - brightCyan: "#61FFCF" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 72.6 - black: 0 - red: 48 - green: 76.1 - yellow: 85.2 - blue: 76.3 - magenta: 59.4 - cyan: 80.5 - white: 72.6 - brightBlack: 0 - brightRed: 47.9 - brightGreen: 88.4 - brightYellow: 85.2 - brightBlue: 85.1 - brightMagenta: 58.6 - brightCyan: 91.4 - brightWhite: 104.4 diff --git a/themes/easy-eyes-color-theme.yaml b/themes/easy-eyes-color-theme.yaml deleted file mode 100644 index 143a1644..00000000 --- a/themes/easy-eyes-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "easy-eyes-color-theme" -source: - marketplace_id: "vvhg1.theme-easy-eyes" - version: "1.2.1" - installs: 5656 - rating: 5 - ratings: 2 - author: "vvhg1" - repo: "https://github.com/vvhg1/easyeyes" - url: "https://marketplace.visualstudio.com/items?itemName=vvhg1.theme-easy-eyes" -colors: - bg: "#1E1E1E" - fg: "#CCC9C0" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 72.1 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/easy-light.yaml b/themes/easy-light.yaml index 5e60dbb3..8d01ee14 100644 --- a/themes/easy-light.yaml +++ b/themes/easy-light.yaml @@ -8,6 +8,7 @@ source: author: "Sean Chaplin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Sean-Chaplin.easy-light-theme" + formats: null colors: bg: "#D7D7D7" fg: "#000000" diff --git a/themes/ebizome.yaml b/themes/ebizome.yaml index f632f629..5a9cbf59 100644 --- a/themes/ebizome.yaml +++ b/themes/ebizome.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ryoh827.ebizome-theme-vscode" version: "0.0.3" installs: 40 + rating: 0 + ratings: 0 author: "ryoh827" repo: "https://github.com/Ryoh827/ebizome-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ryoh827.ebizome-theme-vscode" + formats: null colors: bg: "#7A4171" fg: "#FFF5F7" diff --git a/themes/ecatheme.yaml b/themes/ecatheme.yaml index 79580a7a..aae5082e 100644 --- a/themes/ecatheme.yaml +++ b/themes/ecatheme.yaml @@ -1,4 +1,4 @@ -name: "Ecatheme" +name: "ecaTheme" source: marketplace_id: "ecavscodetheme.ecatheme" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "ecavscodetheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ecavscodetheme.ecatheme" + formats: null colors: bg: "#1C1C1C" fg: "#DBFB96" diff --git a/themes/eclipsa.yaml b/themes/eclipsa.yaml index e2c7a422..440e30a5 100644 --- a/themes/eclipsa.yaml +++ b/themes/eclipsa.yaml @@ -2,12 +2,13 @@ name: "Eclipsa" source: marketplace_id: "yumma-css.eclipsa" version: "0.0.14" - installs: 251 + installs: 252 rating: 5 ratings: 1 author: "Yumma CSS" repo: "https://github.com/yummacss/eclipsa" url: "https://marketplace.visualstudio.com/items?itemName=yumma-css.eclipsa" + formats: null colors: bg: "#21243F" fg: "#B9BED5" diff --git a/themes/eclipse-dark-darker.yaml b/themes/eclipse-dark-darker.yaml deleted file mode 100644 index 5e2410a1..00000000 --- a/themes/eclipse-dark-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Eclipse Dark Darker" -source: - marketplace_id: "NoahLezama.eclipse-dark" - version: "0.0.8" - installs: 137 - rating: 5 - ratings: 1 - author: "Noah Lezama" - repo: "https://github.com/A5TUT0/Eclipse" - url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" -colors: - bg: "#1A1B26" - fg: "#C0CAF5" - black: "#414868" - red: "#F7768E" - green: "#73DACA" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#8089B3" - brightBlack: "#414868" - brightRed: "#F7768E" - brightGreen: "#73DACA" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#A9B1D6" -meta: - mode: "dark" - accent: "red" - hue: 280 - pair: null - contrast: - fg: 73.8 - black: 10.3 - red: 49.4 - green: 72.2 - yellow: 62.2 - blue: 51.1 - magenta: 55 - cyan: 70.5 - white: 38.5 - brightBlack: 10.3 - brightRed: 49.4 - brightGreen: 72.2 - brightYellow: 62.2 - brightBlue: 51.1 - brightMagenta: 55 - brightCyan: 70.5 - brightWhite: 59.3 diff --git a/themes/eclipse-dark-flat.yaml b/themes/eclipse-dark-flat.yaml deleted file mode 100644 index 22263d55..00000000 --- a/themes/eclipse-dark-flat.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Eclipse Dark Flat" -source: - marketplace_id: "NoahLezama.eclipse-dark" - version: "0.0.8" - installs: 137 - rating: 5 - ratings: 1 - author: "Noah Lezama" - repo: "https://github.com/A5TUT0/Eclipse" - url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" -colors: - bg: "#23283D" - fg: "#C9D1FF" - black: "#5A607D" - red: "#FF7A93" - green: "#5DD7C2" - yellow: "#FF9D6A" - blue: "#82AAFF" - magenta: "#D4A5FF" - cyan: "#7EE8FF" - white: "#9AA5CE" - brightBlack: "#6B7394" - brightRed: "#FF7A93" - brightGreen: "#5DD7C2" - brightYellow: "#FF9D6A" - brightBlue: "#82AAFF" - brightMagenta: "#D4A5FF" - brightCyan: "#7EE8FF" - brightWhite: "#C9D1FF" -meta: - mode: "dark" - accent: "red" - hue: 273 - pair: null - contrast: - fg: 76.3 - black: 17.4 - red: 50.1 - green: 67.2 - yellow: 59.2 - blue: 53.3 - magenta: 60.7 - cyan: 80.1 - white: 50.5 - brightBlack: 25.6 - brightRed: 50.1 - brightGreen: 67.2 - brightYellow: 59.2 - brightBlue: 53.3 - brightMagenta: 60.7 - brightCyan: 80.1 - brightWhite: 76.3 diff --git a/themes/eclipse-dawn.yaml b/themes/eclipse-dawn.yaml deleted file mode 100644 index ba892f76..00000000 --- a/themes/eclipse-dawn.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Eclipse Dawn" -source: - marketplace_id: "Eclipse-Theme.eclipse-theme-midnight" - version: "0.3.5" - installs: 149 - rating: 0 - ratings: 0 - author: "Eclipse-Theme" - repo: "https://github.com/eclipse-themes/Eclipse-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=Eclipse-Theme.eclipse-theme-midnight" -colors: - bg: "#1A1825" - fg: "#F0F0F7" - black: "#1A1825" - red: "#FF7D95" - green: "#8EFFD9" - yellow: "#FFA874" - blue: "#8AB2FF" - magenta: "#C5A7FF" - cyan: "#8DD9FF" - white: "#F0F0F7" - brightBlack: "#7D7B95" - brightRed: "#FF95A9" - brightGreen: "#A1FFE4" - brightYellow: "#FFB88F" - brightBlue: "#A5B8FF" - brightMagenta: "#D2BFFF" - brightCyan: "#A5DFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 291 - pair: null - contrast: - fg: 97.1 - black: 0 - red: 53.3 - green: 93.1 - yellow: 65.5 - blue: 59.4 - magenta: 61.6 - cyan: 76.4 - white: 97.1 - brightBlack: 32.3 - brightRed: 60.8 - brightGreen: 95 - brightYellow: 71.9 - brightBlue: 64.3 - brightMagenta: 72.4 - brightCyan: 81.1 - brightWhite: 106.6 diff --git a/themes/eclipse-flare.yaml b/themes/eclipse-flare.yaml deleted file mode 100644 index 80647e62..00000000 --- a/themes/eclipse-flare.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Eclipse Flare" -source: - marketplace_id: "NoahLezama.eclipse-dark" - version: "0.0.8" - installs: 137 - rating: 5 - ratings: 1 - author: "Noah Lezama" - repo: "https://github.com/A5TUT0/Eclipse" - url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" -colors: - bg: "#1F1F1F" - fg: "#D4D4D4" - black: "#1F1F1F" - red: "#FF1744" - green: "#76FF03" - yellow: "#FFAB00" - blue: "#448AFF" - magenta: "#F50057" - cyan: "#00E5FF" - white: "#D4D4D4" - brightBlack: "#757575" - brightRed: "#FF1744" - brightGreen: "#76FF03" - brightYellow: "#FFAB00" - brightBlue: "#448AFF" - brightMagenta: "#F50057" - brightCyan: "#00E5FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 78.5 - black: 0 - red: 36.2 - green: 87.2 - yellow: 64.9 - blue: 39.6 - magenta: 33.8 - cyan: 77.1 - white: 78.5 - brightBlack: 27.7 - brightRed: 36.2 - brightGreen: 87.2 - brightYellow: 64.9 - brightBlue: 39.6 - brightMagenta: 33.8 - brightCyan: 77.1 - brightWhite: 105.9 diff --git a/themes/eclipse-optics.yaml b/themes/eclipse-optics.yaml deleted file mode 100644 index 020935f3..00000000 --- a/themes/eclipse-optics.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Eclipse Optics" -source: - marketplace_id: "NoahLezama.eclipse-dark" - version: "0.0.8" - installs: 137 - rating: 5 - ratings: 1 - author: "Noah Lezama" - repo: "https://github.com/A5TUT0/Eclipse" - url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" -colors: - bg: "#262626" - fg: "#CCCCCC" - black: "#262626" - red: "#D98C8C" - green: "#8CD9B3" - yellow: "#B3864D" - blue: "#668099" - magenta: "#B38CD9" - cyan: "#8CB3D9" - white: "#CCCCCC" - brightBlack: "#737373" - brightRed: "#D98C8C" - brightGreen: "#8CD9B3" - brightYellow: "#B3864D" - brightBlue: "#668099" - brightMagenta: "#B38CD9" - brightCyan: "#8CB3D9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 72.6 - black: 0 - red: 48.2 - green: 71 - yellow: 38.8 - blue: 30.4 - magenta: 45.9 - cyan: 55.9 - white: 72.6 - brightBlack: 25.7 - brightRed: 48.2 - brightGreen: 71 - brightYellow: 38.8 - brightBlue: 30.4 - brightMagenta: 45.9 - brightCyan: 55.9 - brightWhite: 104.8 diff --git a/themes/eclipse-penumbra.yaml b/themes/eclipse-penumbra.yaml deleted file mode 100644 index 03f8386a..00000000 --- a/themes/eclipse-penumbra.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Eclipse Penumbra" -source: - marketplace_id: "NoahLezama.eclipse-dark" - version: "0.0.8" - installs: 137 - rating: 5 - ratings: 1 - author: "Noah Lezama" - repo: "https://github.com/A5TUT0/Eclipse" - url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" -colors: - bg: "#1D3557" - fg: "#F1FAEE" - black: "#1D3557" - red: "#E63946" - green: "#A8DADC" - yellow: "#F4A261" - blue: "#8DB5E0" - magenta: "#B2B5E0" - cyan: "#A8DADC" - white: "#F1FAEE" - brightBlack: "#6B728E" - brightRed: "#E63946" - brightGreen: "#A8DADC" - brightYellow: "#F4A261" - brightBlue: "#8DB5E0" - brightMagenta: "#B2B5E0" - brightCyan: "#A8DADC" - brightWhite: "#F1FAEE" -meta: - mode: "dark" - accent: "orange" - hue: 257 - pair: null - contrast: - fg: 96.4 - black: 0 - red: 28 - green: 72.2 - yellow: 55.9 - blue: 53.9 - magenta: 57.6 - cyan: 72.2 - white: 96.4 - brightBlack: 22.3 - brightRed: 28 - brightGreen: 72.2 - brightYellow: 55.9 - brightBlue: 53.9 - brightMagenta: 57.6 - brightCyan: 72.2 - brightWhite: 96.4 diff --git a/themes/eclipse-umbra.yaml b/themes/eclipse-umbra.yaml deleted file mode 100644 index 41d6bbcf..00000000 --- a/themes/eclipse-umbra.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Eclipse Umbra" -source: - marketplace_id: "NoahLezama.eclipse-dark" - version: "0.0.8" - installs: 137 - rating: 5 - ratings: 1 - author: "Noah Lezama" - repo: "https://github.com/A5TUT0/Eclipse" - url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#282C34" - red: "#E06C75" - green: "#98C379" - yellow: "#D19A66" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#ABB2BF" - brightBlack: "#5C6370" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#D19A66" - brightBlue: "#61AFEF" - brightMagenta: "#C678DD" - brightCyan: "#56B6C2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 56.2 - black: 0 - red: 38.9 - green: 59.1 - yellow: 49.5 - blue: 51.5 - magenta: 41.9 - cyan: 51.4 - white: 56.2 - brightBlack: 17.4 - brightRed: 38.9 - brightGreen: 59.1 - brightYellow: 49.5 - brightBlue: 51.5 - brightMagenta: 41.9 - brightCyan: 51.4 - brightWhite: 103.7 diff --git a/themes/ecogest-solarized-light.yaml b/themes/ecogest-solarized-light.yaml deleted file mode 100644 index cdf637fc..00000000 --- a/themes/ecogest-solarized-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ecogest-solarized-light" -source: - marketplace_id: "ecogest.ecogest-theme" - version: "0.0.5" - installs: 68 - rating: 0 - ratings: 0 - author: "ecogest" - repo: "https://github.com/ecogest/vscode-ecogest-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ecogest.ecogest-theme" -colors: - bg: "#FDF6E3" - fg: "#586E75" - black: "#EEE8D5" - red: "#B4637A" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#6C71C4" - cyan: "#2AA198" - white: "#575279" - brightBlack: "#CCBFA3" - brightRed: "#DE8C88" - brightGreen: "#629F81" - brightYellow: "#AF8700" - brightBlue: "#3393BA" - brightMagenta: "#9A80B9" - brightCyan: "#00AFAF" - brightWhite: "#5F5695" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 71.6 - black: 0 - red: 63.4 - green: 53.8 - yellow: 53.8 - blue: 58.7 - magenta: 65 - cyan: 53.1 - white: 80 - brightBlack: 28.7 - brightRed: 44.6 - brightGreen: 52.5 - brightYellow: 55.3 - brightBlue: 56.9 - brightMagenta: 56.3 - brightCyan: 46.6 - brightWhite: 76.7 diff --git a/themes/edge-dark-aura.yaml b/themes/edge-dark-aura.yaml deleted file mode 100644 index b2ed076a..00000000 --- a/themes/edge-dark-aura.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Edge Dark (Aura)" -source: - marketplace_id: "sainnhe.edge" - version: "0.1.8" - installs: 20560 - rating: 5 - ratings: 2 - author: "sainnhe" - repo: "https://github.com/sainnhe/edge-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" -colors: - bg: "#2B2D37" - fg: "#C5CDD9" - black: "#363A49" - red: "#EC7279" - green: "#A0C980" - yellow: "#DEB974" - blue: "#6CB6EB" - magenta: "#D38AEA" - cyan: "#5DBBC1" - white: "#C5CDD9" - brightBlack: "#363A49" - brightRed: "#EC7279" - brightGreen: "#A0C980" - brightYellow: "#DEB974" - brightBlue: "#6CB6EB" - brightMagenta: "#D38AEA" - brightCyan: "#5DBBC1" - brightWhite: "#C5CDD9" -meta: - mode: "dark" - accent: "pink" - hue: 276 - pair: null - contrast: - fg: 71.3 - black: 0 - red: 42.5 - green: 62.3 - yellow: 63 - blue: 54.4 - magenta: 49.6 - cyan: 53.5 - white: 71.3 - brightBlack: 0 - brightRed: 42.5 - brightGreen: 62.3 - brightYellow: 63 - brightBlue: 54.4 - brightMagenta: 49.6 - brightCyan: 53.5 - brightWhite: 71.3 diff --git a/themes/edge-dark-neon.yaml b/themes/edge-dark-neon.yaml deleted file mode 100644 index 55a7fad6..00000000 --- a/themes/edge-dark-neon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Edge Dark (Neon)" -source: - marketplace_id: "sainnhe.edge" - version: "0.1.8" - installs: 20560 - rating: 5 - ratings: 2 - author: "sainnhe" - repo: "https://github.com/sainnhe/edge-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" -colors: - bg: "#2B2D3A" - fg: "#C5CDD9" - black: "#363A4E" - red: "#EC7279" - green: "#A0C980" - yellow: "#DEB974" - blue: "#6CB6EB" - magenta: "#D38AEA" - cyan: "#5DBBC1" - white: "#C5CDD9" - brightBlack: "#363A4E" - brightRed: "#EC7279" - brightGreen: "#A0C980" - brightYellow: "#DEB974" - brightBlue: "#6CB6EB" - brightMagenta: "#D38AEA" - brightCyan: "#5DBBC1" - brightWhite: "#C5CDD9" -meta: - mode: "dark" - accent: "pink" - hue: 278 - pair: null - contrast: - fg: 71.2 - black: 0 - red: 42.4 - green: 62.3 - yellow: 62.9 - blue: 54.3 - magenta: 49.5 - cyan: 53.4 - white: 71.2 - brightBlack: 0 - brightRed: 42.4 - brightGreen: 62.3 - brightYellow: 62.9 - brightBlue: 54.3 - brightMagenta: 49.5 - brightCyan: 53.4 - brightWhite: 71.2 diff --git a/themes/edge-dark.yaml b/themes/edge-dark.yaml deleted file mode 100644 index 1699d49e..00000000 --- a/themes/edge-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Edge Dark" -source: - marketplace_id: "sainnhe.edge" - version: "0.1.8" - installs: 20560 - rating: 5 - ratings: 2 - author: "sainnhe" - repo: "https://github.com/sainnhe/edge-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" -colors: - bg: "#2C2E34" - fg: "#C5CDD9" - black: "#363944" - red: "#EC7279" - green: "#A0C980" - yellow: "#DEB974" - blue: "#6CB6EB" - magenta: "#D38AEA" - cyan: "#5DBBC1" - white: "#C5CDD9" - brightBlack: "#363944" - brightRed: "#EC7279" - brightGreen: "#A0C980" - brightYellow: "#DEB974" - brightBlue: "#6CB6EB" - brightMagenta: "#D38AEA" - brightCyan: "#5DBBC1" - brightWhite: "#C5CDD9" -meta: - mode: "dark" - accent: "pink" - hue: 271 - pair: "Edge Light" - contrast: - fg: 71.1 - black: 0 - red: 42.4 - green: 62.2 - yellow: 62.9 - blue: 54.3 - magenta: 49.5 - cyan: 53.4 - white: 71.1 - brightBlack: 0 - brightRed: 42.4 - brightGreen: 62.2 - brightYellow: 62.9 - brightBlue: 54.3 - brightMagenta: 49.5 - brightCyan: 53.4 - brightWhite: 71.1 diff --git a/themes/edge-light.yaml b/themes/edge-light.yaml deleted file mode 100644 index 39793ff7..00000000 --- a/themes/edge-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Edge Light" -source: - marketplace_id: "sainnhe.edge" - version: "0.1.8" - installs: 20560 - rating: 5 - ratings: 2 - author: "sainnhe" - repo: "https://github.com/sainnhe/edge-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" -colors: - bg: "#FAFAFA" - fg: "#4B505B" - black: "#E8EBF0" - red: "#D05858" - green: "#608E32" - yellow: "#BE7E05" - blue: "#5079BE" - magenta: "#B05CCC" - cyan: "#3A8B84" - white: "#4B505B" - brightBlack: "#E8EBF0" - brightRed: "#D05858" - brightGreen: "#608E32" - brightYellow: "#BE7E05" - brightBlue: "#5079BE" - brightMagenta: "#B05CCC" - brightCyan: "#3A8B84" - brightWhite: "#4B505B" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Edge Dark" - contrast: - fg: 85 - black: 0 - red: 63.8 - green: 63.1 - yellow: 58.2 - blue: 67 - magenta: 63.9 - cyan: 64.4 - white: 85 - brightBlack: 0 - brightRed: 63.8 - brightGreen: 63.1 - brightYellow: 58.2 - brightBlue: 67 - brightMagenta: 63.9 - brightCyan: 64.4 - brightWhite: 85 diff --git a/themes/edgerunner.yaml b/themes/edgerunner.yaml deleted file mode 100644 index 8154d508..00000000 --- a/themes/edgerunner.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Edgerunner" -source: - marketplace_id: "Noqs.darkstack" - version: "1.1.1" - installs: 2842 - rating: 0 - ratings: 0 - author: "Noqs" - repo: "https://github.com/NoxQ/Darkstack" - url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" -colors: - bg: "#071104" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 137 - pair: null - contrast: - fg: 80.1 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28.1 - magenta: 30.4 - cyan: 48.2 - white: 90.6 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/editor.yaml b/themes/editor.yaml deleted file mode 100644 index 56d69189..00000000 --- a/themes/editor.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Editor" -source: - marketplace_id: "Didier.editor-theme" - version: "0.7.5" - installs: 603 - rating: 5 - ratings: 1 - author: "Didier" - repo: "https://github.com/didier/editor-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Didier.editor-theme" -colors: - bg: "#171717" - fg: "#A3A3A3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 51.4 - black: 0 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 90 - brightBlack: 22 - brightRed: 38.6 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90 diff --git a/themes/edu4dev-vscode-theme-color.yaml b/themes/edu4dev-vscode-theme-color.yaml index 61e6bdd6..075efa32 100644 --- a/themes/edu4dev-vscode-theme-color.yaml +++ b/themes/edu4dev-vscode-theme-color.yaml @@ -8,6 +8,7 @@ source: author: "Edu4Dev" repo: "https://github.com/nuktpls/vscode-edu4dev-theme-color" url: "https://marketplace.visualstudio.com/items?itemName=Edu4Dev.vscode-edu4dev-color-theme" + formats: null colors: bg: "#000000" fg: "#AFFFD4" diff --git a/themes/eezoterial-dark.yaml b/themes/eezoterial-dark.yaml index e4d4d269..1aa9e8ee 100644 --- a/themes/eezoterial-dark.yaml +++ b/themes/eezoterial-dark.yaml @@ -8,6 +8,7 @@ source: author: "unic0rn" repo: "https://github.com/unic0rn/eezoterial" url: "https://marketplace.visualstudio.com/items?itemName=unic0rn.theme-eezoterial" + formats: null colors: bg: "#0D1240" fg: "#9FA8DA" diff --git a/themes/eezoterial-light.yaml b/themes/eezoterial-light.yaml index 218a2f86..46049610 100644 --- a/themes/eezoterial-light.yaml +++ b/themes/eezoterial-light.yaml @@ -8,6 +8,7 @@ source: author: "unic0rn" repo: "https://github.com/unic0rn/eezoterial" url: "https://marketplace.visualstudio.com/items?itemName=unic0rn.theme-eezoterial" + formats: null colors: bg: "#E8EAF6" fg: "#3F51B5" diff --git a/themes/ef-arbutus.yaml b/themes/ef-arbutus.yaml index 78d73e69..ca52e930 100644 --- a/themes/ef-arbutus.yaml +++ b/themes/ef-arbutus.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#FFEAD8" fg: "#393330" diff --git a/themes/ef-autumn.yaml b/themes/ef-autumn.yaml index c2f888a3..7bb9a86b 100644 --- a/themes/ef-autumn.yaml +++ b/themes/ef-autumn.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#0F0E06" fg: "#CFBCBA" diff --git a/themes/ef-bio.yaml b/themes/ef-bio.yaml index 6d5580e7..c370f2ed 100644 --- a/themes/ef-bio.yaml +++ b/themes/ef-bio.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#111111" fg: "#CFDFD5" diff --git a/themes/ef-cherie.yaml b/themes/ef-cherie.yaml index dd79079f..d1e9d8d3 100644 --- a/themes/ef-cherie.yaml +++ b/themes/ef-cherie.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#190A0F" fg: "#D3CFCF" diff --git a/themes/ef-cyprus.yaml b/themes/ef-cyprus.yaml index a7bd96ce..7305b5d4 100644 --- a/themes/ef-cyprus.yaml +++ b/themes/ef-cyprus.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#FCF7EF" fg: "#242521" diff --git a/themes/ef-dark.yaml b/themes/ef-dark.yaml index cd8f8fdf..05e17168 100644 --- a/themes/ef-dark.yaml +++ b/themes/ef-dark.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#000000" fg: "#D0D0D0" diff --git a/themes/ef-day.yaml b/themes/ef-day.yaml index e6aed243..5b8c4cc8 100644 --- a/themes/ef-day.yaml +++ b/themes/ef-day.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#FFF5EA" fg: "#584141" diff --git a/themes/ef-deuteranopia-dark.yaml b/themes/ef-deuteranopia-dark.yaml index cdd31ab2..41624389 100644 --- a/themes/ef-deuteranopia-dark.yaml +++ b/themes/ef-deuteranopia-dark.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#000A1F" fg: "#DDDDEE" diff --git a/themes/ef-deuteranopia-light.yaml b/themes/ef-deuteranopia-light.yaml index 6e1a7150..a4972931 100644 --- a/themes/ef-deuteranopia-light.yaml +++ b/themes/ef-deuteranopia-light.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#F5F5FF" fg: "#1A1A2F" diff --git a/themes/ef-dream.yaml b/themes/ef-dream.yaml index 33829646..f000fcdc 100644 --- a/themes/ef-dream.yaml +++ b/themes/ef-dream.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#232025" fg: "#EFD5C5" diff --git a/themes/ef-duo-dark.yaml b/themes/ef-duo-dark.yaml index c560f93e..13602b54 100644 --- a/themes/ef-duo-dark.yaml +++ b/themes/ef-duo-dark.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#070019" fg: "#D0D0D0" diff --git a/themes/ef-duo-light.yaml b/themes/ef-duo-light.yaml index 88e1fad2..7c6d31fd 100644 --- a/themes/ef-duo-light.yaml +++ b/themes/ef-duo-light.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#FFF8F0" fg: "#222222" diff --git a/themes/ef-eagle.yaml b/themes/ef-eagle.yaml index 1e85e04a..a16ed305 100644 --- a/themes/ef-eagle.yaml +++ b/themes/ef-eagle.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#F1ECD0" fg: "#231A1F" diff --git a/themes/ef-elea-dark.yaml b/themes/ef-elea-dark.yaml index eaab3674..b6ad8ea7 100644 --- a/themes/ef-elea-dark.yaml +++ b/themes/ef-elea-dark.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#222524" fg: "#EAF2EF" diff --git a/themes/ef-elea-light.yaml b/themes/ef-elea-light.yaml index 42d82e12..8079c9b6 100644 --- a/themes/ef-elea-light.yaml +++ b/themes/ef-elea-light.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#EDF5E2" fg: "#221321" diff --git a/themes/ef-frost.yaml b/themes/ef-frost.yaml index e67232b9..d0e06dc2 100644 --- a/themes/ef-frost.yaml +++ b/themes/ef-frost.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#FCFFFF" fg: "#232323" diff --git a/themes/ef-kassio.yaml b/themes/ef-kassio.yaml index 11db2f1b..c88aa9f4 100644 --- a/themes/ef-kassio.yaml +++ b/themes/ef-kassio.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#FFF7F7" fg: "#201F36" diff --git a/themes/ef-light.yaml b/themes/ef-light.yaml index 7f042c6c..eacbc385 100644 --- a/themes/ef-light.yaml +++ b/themes/ef-light.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#FFFFFF" fg: "#202020" diff --git a/themes/ef-maris-dark.yaml b/themes/ef-maris-dark.yaml index 74c365b5..1bb7898b 100644 --- a/themes/ef-maris-dark.yaml +++ b/themes/ef-maris-dark.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#131C2B" fg: "#EAEDEF" diff --git a/themes/ef-maris-light.yaml b/themes/ef-maris-light.yaml index cd8c81b7..976354fa 100644 --- a/themes/ef-maris-light.yaml +++ b/themes/ef-maris-light.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#EDF4F8" fg: "#151A27" diff --git a/themes/ef-melissa-dark.yaml b/themes/ef-melissa-dark.yaml index 83959861..ba281cec 100644 --- a/themes/ef-melissa-dark.yaml +++ b/themes/ef-melissa-dark.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#352718" fg: "#E8E4B1" diff --git a/themes/ef-melissa-light.yaml b/themes/ef-melissa-light.yaml index a7af786a..21afefd1 100644 --- a/themes/ef-melissa-light.yaml +++ b/themes/ef-melissa-light.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#FFF6D8" fg: "#484431" diff --git a/themes/ef-night.yaml b/themes/ef-night.yaml index 1ab51223..51f83c33 100644 --- a/themes/ef-night.yaml +++ b/themes/ef-night.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#000E17" fg: "#AFBCBF" diff --git a/themes/ef-owl.yaml b/themes/ef-owl.yaml index fe008c00..8c9d4a22 100644 --- a/themes/ef-owl.yaml +++ b/themes/ef-owl.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#292C2F" fg: "#D0D0D0" diff --git a/themes/ef-reverie.yaml b/themes/ef-reverie.yaml index ac1c9153..5c51d03f 100644 --- a/themes/ef-reverie.yaml +++ b/themes/ef-reverie.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#F3EDDF" fg: "#4F204F" diff --git a/themes/ef-rosa.yaml b/themes/ef-rosa.yaml index 010c74fe..a26fb419 100644 --- a/themes/ef-rosa.yaml +++ b/themes/ef-rosa.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#322023" fg: "#E4D3E1" diff --git a/themes/ef-spring.yaml b/themes/ef-spring.yaml index 0f5fb5d6..af409944 100644 --- a/themes/ef-spring.yaml +++ b/themes/ef-spring.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#F6FFF9" fg: "#34494A" diff --git a/themes/ef-summer.yaml b/themes/ef-summer.yaml index af6c2628..665d4abc 100644 --- a/themes/ef-summer.yaml +++ b/themes/ef-summer.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#FFF2F3" fg: "#4F4073" diff --git a/themes/ef-symbiosis.yaml b/themes/ef-symbiosis.yaml index 097e912b..2fe2f6d1 100644 --- a/themes/ef-symbiosis.yaml +++ b/themes/ef-symbiosis.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#130911" fg: "#D0D0D0" diff --git a/themes/ef-trio-dark.yaml b/themes/ef-trio-dark.yaml index 5b692c12..ac5dc091 100644 --- a/themes/ef-trio-dark.yaml +++ b/themes/ef-trio-dark.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#160F0F" fg: "#D8CFD5" diff --git a/themes/ef-trio-light.yaml b/themes/ef-trio-light.yaml index 6a795b02..5c08b54c 100644 --- a/themes/ef-trio-light.yaml +++ b/themes/ef-trio-light.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#F8F5FF" fg: "#4F3363" diff --git a/themes/ef-tritanopia-dark.yaml b/themes/ef-tritanopia-dark.yaml index a3825413..3b8e38c1 100644 --- a/themes/ef-tritanopia-dark.yaml +++ b/themes/ef-tritanopia-dark.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#15050F" fg: "#DFD0D5" diff --git a/themes/ef-tritanopia-light.yaml b/themes/ef-tritanopia-light.yaml index 7b576812..03ec9c4c 100644 --- a/themes/ef-tritanopia-light.yaml +++ b/themes/ef-tritanopia-light.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#FFF9F9" fg: "#1A1A1A" diff --git a/themes/ef-winter.yaml b/themes/ef-winter.yaml index f9a8b5cb..3ae6bcae 100644 --- a/themes/ef-winter.yaml +++ b/themes/ef-winter.yaml @@ -8,6 +8,7 @@ source: author: "bzy-debug" repo: "https://github.com/bzy-debug-orgnization/ef-themes" url: "https://marketplace.visualstudio.com/items?itemName=bzy-debug.ef-themes" + formats: null colors: bg: "#0F0B15" fg: "#B8C6D5" diff --git a/themes/eggsplo1t.yaml b/themes/eggsplo1t.yaml index 15d59a52..62290f83 100644 --- a/themes/eggsplo1t.yaml +++ b/themes/eggsplo1t.yaml @@ -8,6 +8,7 @@ source: author: "ExPlo1t-php" repo: "https://github.com/ExPlo1t-php/eggsplo1t-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ExPlo1t-php.eggsplo1t" + formats: null colors: bg: "#0C070F" fg: "#FFFFFF" diff --git a/themes/eh-s-website-theme.yaml b/themes/eh-s-website-theme.yaml deleted file mode 100644 index 763a0b39..00000000 --- a/themes/eh-s-website-theme.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Eh's Website Theme" -source: - marketplace_id: "gayeh.EhWebThemes" - version: "1.0.0" - installs: 6 - author: "Eh" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=gayeh.EhWebThemes" -colors: - bg: "#EEE8D5" - fg: "#6F848A" - black: "#333333" - red: "#D32F2F" - green: "#5B8C3A" - yellow: "#F57F17" - blue: "#2B63A8" - magenta: "#8B4789" - cyan: "#0097A7" - white: "#AAAAAA" - brightBlack: "#333333" - brightRed: "#D32F2F" - brightGreen: "#5B8C3A" - brightYellow: "#F57F17" - brightBlue: "#2B63A8" - brightMagenta: "#8B4789" - brightCyan: "#0097A7" - brightWhite: "#AAAAAA" -meta: - mode: "light" - accent: "orange" - hue: 92 - pair: null - contrast: - fg: 53.1 - black: 85.1 - red: 59.2 - green: 53.5 - yellow: 37.4 - blue: 66.4 - magenta: 67.2 - cyan: 48.4 - white: 32.2 - brightBlack: 85.1 - brightRed: 59.2 - brightGreen: 53.5 - brightYellow: 37.4 - brightBlue: 66.4 - brightMagenta: 67.2 - brightCyan: 48.4 - brightWhite: 32.2 diff --git a/themes/eidolon-less-dark.yaml b/themes/eidolon-less-dark.yaml index acf168b8..0e44ea6a 100644 --- a/themes/eidolon-less-dark.yaml +++ b/themes/eidolon-less-dark.yaml @@ -8,6 +8,7 @@ source: author: "Eurico Magalhães Neto" repo: "https://github.com/Eurico77/eidolon-theme" url: "https://marketplace.visualstudio.com/items?itemName=eidolon.eidolon-theme" + formats: null colors: bg: "#1D1D2F" fg: "#DADDFF" diff --git a/themes/eidolon.yaml b/themes/eidolon.yaml index aa327433..d41271bb 100644 --- a/themes/eidolon.yaml +++ b/themes/eidolon.yaml @@ -8,6 +8,7 @@ source: author: "Eurico Magalhães Neto" repo: "https://github.com/Eurico77/eidolon-theme" url: "https://marketplace.visualstudio.com/items?itemName=eidolon.eidolon-theme" + formats: null colors: bg: "#12121F" fg: "#DADDFF" diff --git a/themes/eigen-color-theme.yaml b/themes/eigen-color-theme.yaml deleted file mode 100644 index 051a108c..00000000 --- a/themes/eigen-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "eigen-color-theme" -source: - marketplace_id: "eesov.eigengrau" - version: "0.0.3" - installs: 4123 - rating: 5 - ratings: 1 - author: "Igor Sotsugov" - repo: "https://github.com/sotsugov/eigengrau" - url: "https://marketplace.visualstudio.com/items?itemName=eesov.eigengrau" -colors: - bg: "#16161D" - fg: "#D6DEEB" - black: "#16161D" - red: "#FF5555" - green: "#7FDBCA" - yellow: "#F1FA8C" - blue: "#16161D" - magenta: "#C792EA" - cyan: "#8BE9FD" - white: "#D6DEEB" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 85.2 - black: 0 - red: 43.4 - green: 74 - yellow: 98.6 - blue: 0 - magenta: 53.8 - cyan: 84 - white: 85.2 - brightBlack: 28.1 - brightRed: 48.9 - brightGreen: 89.1 - brightYellow: 103.6 - brightBlue: 66.1 - brightMagenta: 62.6 - brightCyan: 96.8 - brightWhite: 106.9 diff --git a/themes/eiji-otieno-theme.yaml b/themes/eiji-otieno-theme.yaml index 8bc9f1a5..825ba966 100644 --- a/themes/eiji-otieno-theme.yaml +++ b/themes/eiji-otieno-theme.yaml @@ -8,6 +8,7 @@ source: author: "Eiji Otieno" repo: "https://github.com/eiji-otieno/eiji-otieno-theme" url: "https://marketplace.visualstudio.com/items?itemName=EijiOtieno1699.eiji-otieno-theme" + formats: null colors: bg: "#141414" fg: "#FFFFFF" diff --git a/themes/ein.yaml b/themes/ein.yaml index 0ed46e57..640acd22 100644 --- a/themes/ein.yaml +++ b/themes/ein.yaml @@ -6,6 +6,7 @@ source: author: "eincher" repo: null url: "https://marketplace.visualstudio.com/items?itemName=eincher.ein" + formats: null colors: bg: "#212529" fg: "#D4D4D4" diff --git a/themes/eink.yaml b/themes/eink.yaml index 74a1dafd..186ff4cb 100644 --- a/themes/eink.yaml +++ b/themes/eink.yaml @@ -8,6 +8,7 @@ source: author: "henderjon" repo: "https://github.com/henderjon/eink" url: "https://marketplace.visualstudio.com/items?itemName=henderjon.eink" + formats: null colors: bg: "#F3F1EB" fg: "#5F5F5E" diff --git a/themes/ekim.yaml b/themes/ekim.yaml index 92f94b3b..6bc0a757 100644 --- a/themes/ekim.yaml +++ b/themes/ekim.yaml @@ -8,6 +8,7 @@ source: author: "mjpeppersdev" repo: "https://github.com/MJPeppersdev/ekim-theme" url: "https://marketplace.visualstudio.com/items?itemName=mjpeppersdev.ekim" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/eldar1984.yaml b/themes/eldar1984.yaml index 92927bf9..6d40d01b 100644 --- a/themes/eldar1984.yaml +++ b/themes/eldar1984.yaml @@ -2,12 +2,13 @@ name: "Eldar1984" source: marketplace_id: "Eldar1984.eldar1984" version: "1.0.1" - installs: 1501 + installs: 1502 rating: 5 ratings: 2 author: "Eldar1984" repo: "https://github.com/eldare/Eldar1984_VSCodeColorTheme" url: "https://marketplace.visualstudio.com/items?itemName=Eldar1984.eldar1984" + formats: null colors: bg: "#30303F" fg: "#F0F0F8" diff --git a/themes/elderberry.yaml b/themes/elderberry.yaml index b9d940d7..b91656fe 100644 --- a/themes/elderberry.yaml +++ b/themes/elderberry.yaml @@ -8,6 +8,7 @@ source: author: "Jakka Prihatna" repo: "https://github.com/IronGeek/vscode-theme-elderberry" url: "https://marketplace.visualstudio.com/items?itemName=IronGeek.vscode-theme-elderberry" + formats: null colors: bg: "#17182B" fg: "#C6C8D1" diff --git a/themes/eldritch-dark.yaml b/themes/eldritch-dark.yaml deleted file mode 100644 index 01f06628..00000000 --- a/themes/eldritch-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Eldritch Dark" -source: - marketplace_id: "Eldritch.eldritch" - version: "1.1.1" - installs: 1478 - rating: 0 - ratings: 0 - author: "Eldritch" - repo: "https://github.com/eldritch-theme/eldritch" - url: "https://marketplace.visualstudio.com/items?itemName=Eldritch.eldritch" -colors: - bg: "#171928" - fg: "#EBFAFA" - black: "#21222C" - red: "#F9515D" - green: "#37F499" - yellow: "#E9F941" - blue: "#9071F4" - magenta: "#F265B5" - cyan: "#04D1F9" - white: "#EBFAFA" - brightBlack: "#7081D0" - brightRed: "#F16C75" - brightGreen: "#69F8B3" - brightYellow: "#F1FC79" - brightBlue: "#A48CF2" - brightMagenta: "#FD92CE" - brightCyan: "#66E4FD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 278 - pair: null - contrast: - fg: 101.2 - black: 0 - red: 41.1 - green: 81.5 - yellow: 95.6 - blue: 37.2 - magenta: 46.2 - cyan: 67.8 - white: 101.2 - brightBlack: 36.2 - brightRed: 45.2 - brightGreen: 85.9 - brightYellow: 98.8 - brightBlue: 47.3 - brightMagenta: 61 - brightCyan: 79.1 - brightWhite: 106.5 diff --git a/themes/eldritch.yaml b/themes/eldritch.yaml deleted file mode 100644 index 7769e6b1..00000000 --- a/themes/eldritch.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Eldritch" -source: - marketplace_id: "Eldritch.eldritch" - version: "1.1.1" - installs: 1478 - rating: 0 - ratings: 0 - author: "Eldritch" - repo: "https://github.com/eldritch-theme/eldritch" - url: "https://marketplace.visualstudio.com/items?itemName=Eldritch.eldritch" -colors: - bg: "#212337" - fg: "#EBFAFA" - black: "#21222C" - red: "#F9515D" - green: "#37F499" - yellow: "#E9F941" - blue: "#9071F4" - magenta: "#F265B5" - cyan: "#04D1F9" - white: "#EBFAFA" - brightBlack: "#7081D0" - brightRed: "#F16C75" - brightGreen: "#69F8B3" - brightYellow: "#F1FC79" - brightBlue: "#A48CF2" - brightMagenta: "#FD92CE" - brightCyan: "#66E4FD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 279 - pair: null - contrast: - fg: 99.7 - black: 0 - red: 39.6 - green: 80 - yellow: 94.1 - blue: 35.7 - magenta: 44.7 - cyan: 66.3 - white: 99.7 - brightBlack: 34.8 - brightRed: 43.7 - brightGreen: 84.4 - brightYellow: 97.3 - brightBlue: 45.9 - brightMagenta: 59.5 - brightCyan: 77.6 - brightWhite: 105 diff --git a/themes/electric-blue.yaml b/themes/electric-blue.yaml deleted file mode 100644 index b078ad63..00000000 --- a/themes/electric-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Electric Blue" -source: - marketplace_id: "CodewithBismillah.chroma-library" - version: "1.2.1" - installs: 358 - rating: 5 - ratings: 1 - author: "Code with Bismillah" - repo: "https://github.com/mubashir1837/Chroma-Library" - url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" -colors: - bg: "#0A0F1A" - fg: "#E0F0FF" - black: "#000000" - red: "#FF4080" - green: "#40FF80" - yellow: "#FFFF40" - blue: "#0080FF" - magenta: "#8040FF" - cyan: "#00BFFF" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#FF6080" - brightGreen: "#60FF80" - brightYellow: "#FFFF60" - brightBlue: "#4080FF" - brightMagenta: "#A060FF" - brightCyan: "#40DFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 265 - pair: null - contrast: - fg: 96.3 - black: 0 - red: 42 - green: 87.8 - yellow: 102.5 - blue: 36.7 - magenta: 27 - cyan: 61 - white: 107.5 - brightBlack: 22.6 - brightRed: 47 - brightGreen: 88.8 - brightYellow: 102.8 - brightBlue: 37.6 - brightMagenta: 36.8 - brightCyan: 76.4 - brightWhite: 107.5 diff --git a/themes/electric-dreams.yaml b/themes/electric-dreams.yaml deleted file mode 100644 index ab7b78ee..00000000 --- a/themes/electric-dreams.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Electric Dreams" -source: - marketplace_id: "nylanalyn.electric-dreams-neon" - version: "1.0.0" - installs: 133 - rating: 0 - ratings: 0 - author: "nylan cat" - repo: "https://github.com/nylanalyn/electric-dreams-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nylanalyn.electric-dreams-neon" -colors: - bg: "#0A0A0F" - fg: "#D0D0E0" - black: "#0A0A0F" - red: "#FF1744" - green: "#1DE9B6" - yellow: "#FF006E" - blue: "#9C27B0" - magenta: "#FF006E" - cyan: "#00D9FF" - white: "#D0D0E0" - brightBlack: "#4A4A6A" - brightRed: "#C41E3A" - brightGreen: "#00BFA5" - brightYellow: "#E91E63" - brightBlue: "#BB86FC" - brightMagenta: "#D81B60" - brightCyan: "#1DE9B6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 285 - pair: null - contrast: - fg: 78.6 - black: 0 - red: 38 - green: 77.6 - yellow: 38.6 - blue: 21.6 - magenta: 38.6 - cyan: 73.1 - white: 78.6 - brightBlack: 12.9 - brightRed: 24.2 - brightGreen: 56.6 - brightYellow: 33.5 - brightBlue: 50.4 - brightMagenta: 29.3 - brightCyan: 77.6 - brightWhite: 107.7 diff --git a/themes/electric-ice-darker.yaml b/themes/electric-ice-darker.yaml index 06c873a4..4c57b598 100644 --- a/themes/electric-ice-darker.yaml +++ b/themes/electric-ice-darker.yaml @@ -8,6 +8,7 @@ source: author: "jenny_death" repo: "https://github.com/blackpill0w/Electric-Ice-Theme" url: "https://marketplace.visualstudio.com/items?itemName=jennydeath.electric-ice-Theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/electric-ice.yaml b/themes/electric-ice.yaml index 40c99875..95bacac0 100644 --- a/themes/electric-ice.yaml +++ b/themes/electric-ice.yaml @@ -8,6 +8,7 @@ source: author: "jenny_death" repo: "https://github.com/blackpill0w/Electric-Ice-Theme" url: "https://marketplace.visualstudio.com/items?itemName=jennydeath.electric-ice-Theme" + formats: null colors: bg: "#0D1016" fg: "#FFFFFF" diff --git a/themes/electric-labs.yaml b/themes/electric-labs.yaml deleted file mode 100644 index 05c31d3e..00000000 --- a/themes/electric-labs.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "electric labs" -source: - marketplace_id: "CybionLabs.electriclabs" - version: "0.8.0" - installs: 6 - author: "Cybion Labs" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=CybionLabs.electriclabs" -colors: - bg: "#000000" - fg: "#00FF10" - black: "#0000FF" - red: "#0000FF" - green: "#0000FF" - yellow: "#0000FF" - blue: "#0000FF" - magenta: "#0000FF" - cyan: "#0000FF" - white: "#0000FF" - brightBlack: "#0000FF" - brightRed: "#0000FF" - brightGreen: "#0000FF" - brightYellow: "#0000FF" - brightBlue: "#0000FF" - brightMagenta: "#0000FF" - brightCyan: "#0000FF" - brightWhite: "#0000FF" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 86.5 - black: 16.2 - red: 16.2 - green: 16.2 - yellow: 16.2 - blue: 16.2 - magenta: 16.2 - cyan: 16.2 - white: 16.2 - brightBlack: 16.2 - brightRed: 16.2 - brightGreen: 16.2 - brightYellow: 16.2 - brightBlue: 16.2 - brightMagenta: 16.2 - brightCyan: 16.2 - brightWhite: 16.2 diff --git a/themes/electric-night.yaml b/themes/electric-night.yaml index b529f557..bdf16df3 100644 --- a/themes/electric-night.yaml +++ b/themes/electric-night.yaml @@ -8,6 +8,7 @@ source: author: "nlarew" repo: "https://github.com/nlarew/electric-night-theme" url: "https://marketplace.visualstudio.com/items?itemName=nlarew.electric-night-theme" + formats: null colors: bg: "#101010" fg: "#F0F0F0" diff --git a/themes/electric-sheep.yaml b/themes/electric-sheep.yaml index a61759f4..8595be41 100644 --- a/themes/electric-sheep.yaml +++ b/themes/electric-sheep.yaml @@ -8,6 +8,7 @@ source: author: "JMWeeks" repo: "https://github.com/cyanitol/Theme.VSCode.ElectricSheep" url: "https://marketplace.visualstudio.com/items?itemName=JMWeeks.electric-sheep" + formats: null colors: bg: "#012456" fg: "#F5F5F5" diff --git a/themes/electric-violet-fork.yaml b/themes/electric-violet-fork.yaml deleted file mode 100644 index a42b7418..00000000 --- a/themes/electric-violet-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Electric Violet - Fork" -source: - marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" - version: "9.0.1" - installs: 29917 - rating: 4.6 - ratings: 10 - author: "Hasibur R" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" -colors: - bg: "#292C3F" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 277 - pair: null - contrast: - fg: 76 - black: 0 - red: 23.2 - green: 49.5 - yellow: 82.1 - blue: 23.9 - magenta: 26.3 - cyan: 44.1 - white: 86.5 - brightBlack: 18.6 - brightRed: 35.1 - brightGreen: 60.1 - brightYellow: 92.2 - brightBlue: 36.5 - brightMagenta: 41.9 - brightCyan: 51.9 - brightWhite: 86.5 diff --git a/themes/electron-highlighter.yaml b/themes/electron-highlighter.yaml index f67bac51..888a5890 100644 --- a/themes/electron-highlighter.yaml +++ b/themes/electron-highlighter.yaml @@ -8,6 +8,7 @@ source: author: "drg" repo: "https://github.com/DrgOv/vscode-electron-highlighter" url: "https://marketplace.visualstudio.com/items?itemName=drg.electron-highlighter-remake" + formats: null colors: bg: "#181818" fg: "#EFEFEF" diff --git a/themes/electron-vue.yaml b/themes/electron-vue.yaml deleted file mode 100644 index 711985eb..00000000 --- a/themes/electron-vue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Electron vue" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#1B202C" - fg: "#BAC7E4" - black: "#1B202C" - red: "#FF4579" - green: "#6AF699" - yellow: "#FFFA9E" - blue: "#37C886" - magenta: "#C792EA" - cyan: "#00D9FF" - white: "#F8FAFD" - brightBlack: "#7992B4" - brightRed: "#FF4579" - brightGreen: "#6AF699" - brightYellow: "#FFFA9E" - brightBlue: "#37C886" - brightMagenta: "#C792EA" - brightCyan: "#00D9FF" - brightWhite: "#F8FAFD" -meta: - mode: "dark" - accent: "red" - hue: 267 - pair: null - contrast: - fg: 70.4 - black: 0 - red: 40.7 - green: 83.4 - yellow: 99.8 - blue: 58.3 - magenta: 52.6 - cyan: 71.1 - white: 102.3 - brightBlack: 40.5 - brightRed: 40.7 - brightGreen: 83.4 - brightYellow: 99.8 - brightBlue: 58.3 - brightMagenta: 52.6 - brightCyan: 71.1 - brightWhite: 102.3 diff --git a/themes/electronic-moonlight-theme-borders.yaml b/themes/electronic-moonlight-theme-borders.yaml index 72bf464d..f9aea56b 100644 --- a/themes/electronic-moonlight-theme-borders.yaml +++ b/themes/electronic-moonlight-theme-borders.yaml @@ -8,6 +8,7 @@ source: author: "purpleblack" repo: "https://github.com/goodideagiver/electronic-moonlight-theme" url: "https://marketplace.visualstudio.com/items?itemName=purpleblack.electronic-moonlight-theme-borders" + formats: null colors: bg: "#1D1F31" fg: "#C8D3F5" diff --git a/themes/eleganceu.yaml b/themes/eleganceu.yaml index fc3eb469..da798a40 100644 --- a/themes/eleganceu.yaml +++ b/themes/eleganceu.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ELEGANCEu.eleganceu-darkpurpletheme" version: "0.0.2" installs: 281 + rating: 0 + ratings: 0 author: "ELEGANCEu" repo: "https://github.com/ELEGANCEu/temaDarkPurple" url: "https://marketplace.visualstudio.com/items?itemName=ELEGANCEu.eleganceu-darkpurpletheme" + formats: null colors: bg: "#0D0B0F" fg: "#FF8F00" diff --git a/themes/elegant-black.yaml b/themes/elegant-black.yaml index d2b9e26f..d488c0a2 100644 --- a/themes/elegant-black.yaml +++ b/themes/elegant-black.yaml @@ -1,13 +1,14 @@ -name: "Elegant Black" +name: "Elegant black" source: marketplace_id: "iamjazzar.elegant-black" version: "0.1.2" - installs: 3038 + installs: 3039 rating: 5 ratings: 3 author: "iamjazzar" repo: "https://github.com/iamjazzar/elegant-black" url: "https://marketplace.visualstudio.com/items?itemName=iamjazzar.elegant-black" + formats: null colors: bg: "#030C1B" fg: "#FBE179" diff --git a/themes/elegant-red.yaml b/themes/elegant-red.yaml index a2e3826c..07e9d126 100644 --- a/themes/elegant-red.yaml +++ b/themes/elegant-red.yaml @@ -1,16 +1,17 @@ name: "Elegant Red" source: - marketplace_id: "hudadamar21.monokai-red-moon" - version: "1.0.0" - installs: 2319 - rating: 0 - ratings: 0 + marketplace_id: "hudadamar21.elegant-red" + version: "0.0.4" + installs: 13171 + rating: 5 + ratings: 1 author: "hudadamar21" repo: "https://themes.vscode.one/theme/hudadamar21/29medjnT" - url: "https://marketplace.visualstudio.com/items?itemName=hudadamar21.monokai-red-moon" + url: "https://marketplace.visualstudio.com/items?itemName=hudadamar21.elegant-red" + formats: null colors: bg: "#000000" - fg: "#FFFFFF" + fg: "#FFF5A0" black: "#868686" red: "#CD3131" green: "#0DBC79" @@ -33,7 +34,7 @@ meta: hue: null pair: null contrast: - fg: 107.9 + fg: 99.6 black: 37.6 red: 27.7 green: 54 diff --git a/themes/eleganterror404.yaml b/themes/eleganterror404.yaml index 3b7b673d..ea9c87ad 100644 --- a/themes/eleganterror404.yaml +++ b/themes/eleganterror404.yaml @@ -8,6 +8,7 @@ source: author: "JuanSantosError404" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JuanSantosError404.elegantthemeerror404" + formats: null colors: bg: "#301F1F" fg: "#FFFFFF" diff --git a/themes/elementary.yaml b/themes/elementary.yaml deleted file mode 100644 index be23e13d..00000000 --- a/themes/elementary.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Elementary" -source: - marketplace_id: "rdnlsmith.linux-themes" - version: "1.3.0" - installs: 41712 - rating: 4.75 - ratings: 4 - author: "rdnlsmith" - repo: "https://github.com/rdnlsmith/vscode-arc-theme" - url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" -colors: - bg: "#FDF6E3" - fg: "#5E5E5E" - black: "#586E75" - red: "#CB4B16" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEEEEE" - brightBlack: "#073642" - brightRed: "#DC322F" - brightGreen: "#859900" - brightYellow: "#B58900" - brightBlue: "#268BD2" - brightMagenta: "#EC0048" - brightCyan: "#2AA198" - brightWhite: "#94A3A5" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 76.9 - black: 71.6 - red: 65.8 - green: 53.8 - yellow: 53.8 - blue: 58.7 - magenta: 65 - cyan: 53.1 - white: 0 - brightBlack: 93.7 - brightRed: 65.3 - brightGreen: 53.8 - brightYellow: 53.8 - brightBlue: 58.7 - brightMagenta: 63.2 - brightCyan: 53.1 - brightWhite: 45.7 diff --git a/themes/elementowl.yaml b/themes/elementowl.yaml index 84a6a202..981c3368 100644 --- a/themes/elementowl.yaml +++ b/themes/elementowl.yaml @@ -2,12 +2,13 @@ name: "ElementOwl" source: marketplace_id: "dre1080.elementowl" version: "0.1.2" - installs: 922 + installs: 923 rating: 0 ratings: 0 author: "ando" repo: "https://github.com/dre1080/elementowl-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=dre1080.elementowl" + formats: null colors: bg: "#FBFBFB" fg: "#111111" diff --git a/themes/elements.yaml b/themes/elements.yaml index 0f4cb2f7..e5a5a1cc 100644 --- a/themes/elements.yaml +++ b/themes/elements.yaml @@ -8,6 +8,7 @@ source: author: "Gordon Ho" repo: "https://github.com/gordonhch/elements-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=gordonhch.elements-vscode-theme" + formats: null colors: bg: "#0E151B" fg: "#D6DEEB" diff --git a/themes/elf-dream.yaml b/themes/elf-dream.yaml deleted file mode 100644 index 82b79fb3..00000000 --- a/themes/elf-dream.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Elf Dream" -source: - marketplace_id: "kgnio.sprinklepack" - version: "0.2.5" - installs: 81 - rating: 5 - ratings: 2 - author: "Kagan Mamak" - repo: "https://github.com/kgnio/sprinklepack" - url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" -colors: - bg: "#E9F7ED" - fg: "#3A4D41" - black: "#3A4D41" - red: "#B93326" - green: "#3CC57B" - yellow: "#D59A3B" - blue: "#2D9BAF" - magenta: "#9D4EDD" - cyan: "#3A86FF" - white: "#E9F7ED" - brightBlack: "#5C6F68" - brightRed: "#E63946" - brightGreen: "#5A9367" - brightYellow: "#FFB703" - brightBlue: "#3A86FF" - brightMagenta: "#E07A5F" - brightCyan: "#00B4D8" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 83.9 - black: 83.9 - red: 71.3 - green: 36.4 - yellow: 41.4 - blue: 52.8 - magenta: 64.4 - cyan: 54.9 - white: 0 - brightBlack: 69.7 - brightRed: 60.3 - brightGreen: 56.8 - brightYellow: 24.6 - brightBlue: 54.9 - brightMagenta: 48.7 - brightCyan: 40.9 - brightWhite: 0 diff --git a/themes/elhassan-neon-cyan.yaml b/themes/elhassan-neon-cyan.yaml index ba92304b..16781a93 100644 --- a/themes/elhassan-neon-cyan.yaml +++ b/themes/elhassan-neon-cyan.yaml @@ -8,6 +8,7 @@ source: author: "elhassan-dev" repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" + formats: null colors: bg: "#0D1B26" fg: "#D0F0FF" diff --git a/themes/elhassan-neon-dark-professional.yaml b/themes/elhassan-neon-dark-professional.yaml index dc227d83..1317765a 100644 --- a/themes/elhassan-neon-dark-professional.yaml +++ b/themes/elhassan-neon-dark-professional.yaml @@ -8,6 +8,7 @@ source: author: "elhassan-dev" repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" + formats: null colors: bg: "#0F0F1E" fg: "#E0E0FF" diff --git a/themes/elhassan-neon-light-professional.yaml b/themes/elhassan-neon-light-professional.yaml index f251fc14..4830fe66 100644 --- a/themes/elhassan-neon-light-professional.yaml +++ b/themes/elhassan-neon-light-professional.yaml @@ -8,6 +8,7 @@ source: author: "elhassan-dev" repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" + formats: null colors: bg: "#FAFAFA" fg: "#2D2D2D" diff --git a/themes/elhassan-neon-magenta.yaml b/themes/elhassan-neon-magenta.yaml index fc7c6915..87229d8a 100644 --- a/themes/elhassan-neon-magenta.yaml +++ b/themes/elhassan-neon-magenta.yaml @@ -8,6 +8,7 @@ source: author: "elhassan-dev" repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" + formats: null colors: bg: "#1A0F2E" fg: "#FFD0FF" diff --git a/themes/elhassan-neon-purple.yaml b/themes/elhassan-neon-purple.yaml index 4754ae80..42f8dacf 100644 --- a/themes/elhassan-neon-purple.yaml +++ b/themes/elhassan-neon-purple.yaml @@ -8,6 +8,7 @@ source: author: "elhassan-dev" repo: "https://github.com/elhassanorabi5-dev/elhassan-neon-themes" url: "https://marketplace.visualstudio.com/items?itemName=elhassan-dev.elhassan-neon-themes" + formats: null colors: bg: "#1A0033" fg: "#E6CCFF" diff --git a/themes/elixir-theme-no-italics.yaml b/themes/elixir-theme-no-italics.yaml index b1956bc1..d3f68893 100644 --- a/themes/elixir-theme-no-italics.yaml +++ b/themes/elixir-theme-no-italics.yaml @@ -8,6 +8,7 @@ source: author: "Maiqui Tomé" repo: "https://github.com/maiquitome/vscode_elixir_theme" url: "https://marketplace.visualstudio.com/items?itemName=maiquitome.elixir-theme" + formats: null colors: bg: "#090B10" fg: "#8F93A2" diff --git a/themes/elixir-theme-with-italics-less-dark-2.yaml b/themes/elixir-theme-with-italics-less-dark-2.yaml index 4e50454b..b8568460 100644 --- a/themes/elixir-theme-with-italics-less-dark-2.yaml +++ b/themes/elixir-theme-with-italics-less-dark-2.yaml @@ -8,6 +8,7 @@ source: author: "Maiqui Tomé" repo: "https://github.com/maiquitome/vscode_elixir_theme" url: "https://marketplace.visualstudio.com/items?itemName=maiquitome.elixir-theme" + formats: null colors: bg: "#201B2D" fg: "#8F93A2" diff --git a/themes/elly.yaml b/themes/elly.yaml index 01fa9423..3e69879c 100644 --- a/themes/elly.yaml +++ b/themes/elly.yaml @@ -8,6 +8,7 @@ source: author: "ulwlu" repo: "https://github.com/ulwlu/elly-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ulwlu.elly" + formats: null colors: bg: "#111A1F" fg: "#9A9A9A" diff --git a/themes/elypink-dark-faded.yaml b/themes/elypink-dark-faded.yaml deleted file mode 100644 index 46af2146..00000000 --- a/themes/elypink-dark-faded.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Elypink Dark (Faded)" -source: - marketplace_id: "barineco.elypink-theme" - version: "0.6.0" - installs: 38 - rating: 5 - ratings: 2 - author: "barineco" - repo: "https://github.com/barineco/elypink-theme-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" -colors: - bg: "#2A2D30" - fg: "#98A8C6" - black: "#2D2D2D" - red: "#FF56AB" - green: "#00DD00" - yellow: "#F5C400" - blue: "#00BFFF" - magenta: "#F574FF" - cyan: "#00EFEF" - white: "#F8F8F8" - brightBlack: "#ECECEC" - brightRed: "#FF6AB5" - brightGreen: "#57FF57" - brightYellow: "#FEDB4E" - brightBlue: "#56D5FF" - brightMagenta: "#F788FF" - brightCyan: "#5DFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: "Elypink Light (Faded)" - contrast: - fg: 50.4 - black: 0 - red: 42.8 - green: 64.4 - yellow: 70.3 - blue: 57 - magenta: 51.4 - cyan: 78.8 - white: 98.9 - brightBlack: 91.1 - brightRed: 47 - brightGreen: 83.8 - brightYellow: 81.8 - brightBlue: 68.4 - brightMagenta: 56.8 - brightCyan: 89.3 - brightWhite: 103.5 diff --git a/themes/elypink-dark.yaml b/themes/elypink-dark.yaml deleted file mode 100644 index bce3e310..00000000 --- a/themes/elypink-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Elypink Dark" -source: - marketplace_id: "barineco.elypink-theme" - version: "0.6.0" - installs: 38 - rating: 5 - ratings: 2 - author: "barineco" - repo: "https://github.com/barineco/elypink-theme-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" -colors: - bg: "#302A2D" - fg: "#C698B6" - black: "#2D2D2D" - red: "#FF56AB" - green: "#00DD00" - yellow: "#F5C400" - blue: "#00BFFF" - magenta: "#F574FF" - cyan: "#00EFEF" - white: "#F8F8F8" - brightBlack: "#ECECEC" - brightRed: "#FF6AB5" - brightGreen: "#57FF57" - brightYellow: "#FEDB4E" - brightBlue: "#56D5FF" - brightMagenta: "#F788FF" - brightCyan: "#5DFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 346 - pair: "Elypink Light" - contrast: - fg: 49.7 - black: 0 - red: 43 - green: 64.6 - yellow: 70.5 - blue: 57.2 - magenta: 51.6 - cyan: 79 - white: 99.1 - brightBlack: 91.3 - brightRed: 47.2 - brightGreen: 84.1 - brightYellow: 82 - brightBlue: 68.6 - brightMagenta: 57 - brightCyan: 89.5 - brightWhite: 103.7 diff --git a/themes/elypink-light-diamond.yaml b/themes/elypink-light-diamond.yaml deleted file mode 100644 index c251c5de..00000000 --- a/themes/elypink-light-diamond.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Elypink Light (Diamond)" -source: - marketplace_id: "barineco.elypink-theme" - version: "0.6.0" - installs: 38 - rating: 5 - ratings: 2 - author: "barineco" - repo: "https://github.com/barineco/elypink-theme-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" -colors: - bg: "#F9F3F8" - fg: "#8F8DB0" - black: "#2D2D2D" - red: "#FF72B9" - green: "#00DD00" - yellow: "#F5C400" - blue: "#00BFFF" - magenta: "#F78BFF" - cyan: "#00EFEF" - white: "#F8F8F8" - brightBlack: "#ECECEC" - brightRed: "#FF83C1" - brightGreen: "#73FF73" - brightYellow: "#FEE16B" - brightBlue: "#72DCFF" - brightMagenta: "#F89CFF" - brightCyan: "#78FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 52.8 - black: 94.2 - red: 42.5 - green: 27.7 - yellow: 22.1 - blue: 34.7 - magenta: 34.1 - cyan: 14.1 - white: 0 - brightBlack: 0 - brightRed: 38.1 - brightGreen: 7.8 - brightYellow: 8.4 - brightBlue: 19.5 - brightMagenta: 29.1 - brightCyan: 0 - brightWhite: 0 diff --git a/themes/elypink-light-faded.yaml b/themes/elypink-light-faded.yaml deleted file mode 100644 index 3df8bcfb..00000000 --- a/themes/elypink-light-faded.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Elypink Light (Faded)" -source: - marketplace_id: "barineco.elypink-theme" - version: "0.6.0" - installs: 38 - rating: 5 - ratings: 2 - author: "barineco" - repo: "https://github.com/barineco/elypink-theme-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" -colors: - bg: "#EEF4F9" - fg: "#6D7687" - black: "#2D2D2D" - red: "#FF72B9" - green: "#00DD00" - yellow: "#F5C400" - blue: "#00BFFF" - magenta: "#F78BFF" - cyan: "#00EFEF" - white: "#F8F8F8" - brightBlack: "#ECECEC" - brightRed: "#FF83C1" - brightGreen: "#73FF73" - brightYellow: "#FEE16B" - brightBlue: "#72DCFF" - brightMagenta: "#F89CFF" - brightCyan: "#78FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "green" - hue: null - pair: "Elypink Dark (Faded)" - contrast: - fg: 64.7 - black: 93.3 - red: 41.6 - green: 26.8 - yellow: 21.2 - blue: 33.8 - magenta: 33.2 - cyan: 13.2 - white: 0 - brightBlack: 0 - brightRed: 37.1 - brightGreen: 0 - brightYellow: 7.5 - brightBlue: 18.6 - brightMagenta: 28.2 - brightCyan: 0 - brightWhite: 0 diff --git a/themes/elypink-light-spring.yaml b/themes/elypink-light-spring.yaml deleted file mode 100644 index 7d48c076..00000000 --- a/themes/elypink-light-spring.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Elypink Light (Spring)" -source: - marketplace_id: "barineco.elypink-theme" - version: "0.6.0" - installs: 38 - rating: 5 - ratings: 2 - author: "barineco" - repo: "https://github.com/barineco/elypink-theme-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" -colors: - bg: "#FAEEF3" - fg: "#936B7D" - black: "#2D2D2D" - red: "#FF72B9" - green: "#00DD00" - yellow: "#F5C400" - blue: "#00BFFF" - magenta: "#F78BFF" - cyan: "#00EFEF" - white: "#F8F8F8" - brightBlack: "#ECECEC" - brightRed: "#FF83C1" - brightGreen: "#73FF73" - brightYellow: "#FEE16B" - brightBlue: "#72DCFF" - brightMagenta: "#F89CFF" - brightCyan: "#78FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 63 - black: 92 - red: 40.3 - green: 25.5 - yellow: 19.9 - blue: 32.5 - magenta: 31.9 - cyan: 11.9 - white: 0 - brightBlack: 0 - brightRed: 35.9 - brightGreen: 0 - brightYellow: 0 - brightBlue: 17.4 - brightMagenta: 27 - brightCyan: 0 - brightWhite: 0 diff --git a/themes/elypink-light-summer.yaml b/themes/elypink-light-summer.yaml deleted file mode 100644 index d48ef5ae..00000000 --- a/themes/elypink-light-summer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Elypink Light (Summer)" -source: - marketplace_id: "barineco.elypink-theme" - version: "0.6.0" - installs: 38 - rating: 5 - ratings: 2 - author: "barineco" - repo: "https://github.com/barineco/elypink-theme-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" -colors: - bg: "#F8EEF7" - fg: "#7A6BA4" - black: "#2D2D2D" - red: "#FF72B9" - green: "#00DD00" - yellow: "#F5C400" - blue: "#00BFFF" - magenta: "#F78BFF" - cyan: "#00EFEF" - white: "#F8F8F8" - brightBlack: "#ECECEC" - brightRed: "#FF83C1" - brightGreen: "#73FF73" - brightYellow: "#FEE16B" - brightBlue: "#72DCFF" - brightMagenta: "#F89CFF" - brightCyan: "#78FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 64.2 - black: 91.9 - red: 40.2 - green: 25.4 - yellow: 19.8 - blue: 32.4 - magenta: 31.9 - cyan: 11.8 - white: 0 - brightBlack: 0 - brightRed: 35.8 - brightGreen: 0 - brightYellow: 0 - brightBlue: 17.3 - brightMagenta: 26.9 - brightCyan: 0 - brightWhite: 0 diff --git a/themes/elypink-light.yaml b/themes/elypink-light.yaml deleted file mode 100644 index c1fa1592..00000000 --- a/themes/elypink-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Elypink Light" -source: - marketplace_id: "barineco.elypink-theme" - version: "0.6.0" - installs: 38 - rating: 5 - ratings: 2 - author: "barineco" - repo: "https://github.com/barineco/elypink-theme-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" -colors: - bg: "#F9EEF3" - fg: "#876D7E" - black: "#2D2D2D" - red: "#FF72B9" - green: "#00DD00" - yellow: "#F5C400" - blue: "#00BFFF" - magenta: "#F78BFF" - cyan: "#00EFEF" - white: "#F8F8F8" - brightBlack: "#ECECEC" - brightRed: "#FF83C1" - brightGreen: "#73FF73" - brightYellow: "#FEE16B" - brightBlue: "#72DCFF" - brightMagenta: "#F89CFF" - brightCyan: "#78FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "green" - hue: null - pair: "Elypink Dark" - contrast: - fg: 63.8 - black: 91.9 - red: 40.2 - green: 25.4 - yellow: 19.8 - blue: 32.4 - magenta: 31.8 - cyan: 11.8 - white: 0 - brightBlack: 0 - brightRed: 35.8 - brightGreen: 0 - brightYellow: 0 - brightBlue: 17.2 - brightMagenta: 26.8 - brightCyan: 0 - brightWhite: 0 diff --git a/themes/ember-glow.yaml b/themes/ember-glow.yaml index 00feb607..77f9f213 100644 --- a/themes/ember-glow.yaml +++ b/themes/ember-glow.yaml @@ -8,6 +8,7 @@ source: author: "camfleety" repo: "https://github.com/camfleety/ember-glow" url: "https://marketplace.visualstudio.com/items?itemName=camfleety.ember-glow" + formats: null colors: bg: "#1E1B18" fg: "#E2D9D0" diff --git a/themes/ember.yaml b/themes/ember.yaml index f2d8561d..cbcc4fd2 100644 --- a/themes/ember.yaml +++ b/themes/ember.yaml @@ -1,4 +1,4 @@ -name: "Ember" +name: "ember" source: marketplace_id: "jgibson.ember-color-theme" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "jgibson" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jgibson.ember-color-theme" + formats: null colors: bg: "#1F1F1F" fg: "#D9D9D9" diff --git a/themes/emberstone-dark-theme.yaml b/themes/emberstone-dark-theme.yaml deleted file mode 100644 index 83ec4a8f..00000000 --- a/themes/emberstone-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Emberstone-dark-theme" -source: - marketplace_id: "Emberstonetheme.emberstone" - version: "0.0.6" - installs: 205 - rating: 5 - ratings: 1 - author: "Emberstone theme" - repo: "https://github.com/Emberstone-theme/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Emberstonetheme.emberstone" -colors: - bg: "#212536" - fg: "#F8EDDC" - black: "#00849A" - red: "#C84C53" - green: "#BAD761" - yellow: "#ECDA9C" - blue: "#D88349" - magenta: "#7FA39F" - cyan: "#A17AB5" - white: "#F8EDDC" - brightBlack: "#8AD9E9" - brightRed: "#EDB7BF" - brightGreen: "#BAD761" - brightYellow: "#ECDA9C" - brightBlue: "#D88349" - brightMagenta: "#A8E7D2" - brightCyan: "#D7C0E4" - brightWhite: "#E3E3E3" -meta: - mode: "dark" - accent: "orange" - hue: 274 - pair: null - contrast: - fg: 93.9 - black: 28.7 - red: 27.8 - green: 72.3 - yellow: 81.4 - blue: 43.8 - magenta: 45.7 - cyan: 35.9 - white: 93.9 - brightBlack: 73.2 - brightRed: 68.4 - brightGreen: 72.3 - brightYellow: 81.4 - brightBlue: 43.8 - brightMagenta: 81.2 - brightCyan: 70.2 - brightWhite: 86.7 diff --git a/themes/emberstone.yaml b/themes/emberstone.yaml index 176a5f1b..4b1e4d22 100644 --- a/themes/emberstone.yaml +++ b/themes/emberstone.yaml @@ -1,52 +1,53 @@ name: "Emberstone" source: - marketplace_id: "dfmknz.emberstone-theme-vscode" - version: "0.1.1" - installs: 66 - rating: 0 - ratings: 0 - author: "dfmknz" - repo: "https://github.com/dfmknz/emberstone-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dfmknz.emberstone-theme-vscode" + marketplace_id: "Emberstonetheme.emberstone" + version: "0.0.6" + installs: 205 + rating: 5 + ratings: 1 + author: "Emberstone theme" + repo: "https://github.com/Emberstone-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Emberstonetheme.emberstone" + formats: null colors: - bg: "#28353E" - fg: "#FFD37C" - black: "#28353E" - red: "#BE8967" - green: "#FFD37C" - yellow: "#F8D079" - blue: "#FFD37C" - magenta: "#BFCDCD" - cyan: "#FFFFFF" - white: "#FFD37C" - brightBlack: "#FFD37C" - brightRed: "#BE8967" - brightGreen: "#FFFFFF" - brightYellow: "#F8D079" - brightBlue: "#FFFFFF" - brightMagenta: "#BFCDCD" - brightCyan: "#FFD37C" - brightWhite: "#FFD37C" + bg: "#212536" + fg: "#F8EDDC" + black: "#00849A" + red: "#C84C53" + green: "#BAD761" + yellow: "#ECDA9C" + blue: "#D88349" + magenta: "#7FA39F" + cyan: "#A17AB5" + white: "#F8EDDC" + brightBlack: "#8AD9E9" + brightRed: "#EDB7BF" + brightGreen: "#BAD761" + brightYellow: "#ECDA9C" + brightBlue: "#D88349" + brightMagenta: "#A8E7D2" + brightCyan: "#D7C0E4" + brightWhite: "#E3E3E3" meta: mode: "dark" - accent: "yellow" - hue: 239 + accent: "orange" + hue: 274 pair: null contrast: - fg: 77.6 - black: 0 - red: 39 - green: 77.6 - yellow: 75.2 - blue: 77.6 - magenta: 68.6 - cyan: 101.9 - white: 77.6 - brightBlack: 77.6 - brightRed: 39 - brightGreen: 101.9 - brightYellow: 75.2 - brightBlue: 101.9 - brightMagenta: 68.6 - brightCyan: 77.6 - brightWhite: 77.6 + fg: 93.9 + black: 28.7 + red: 27.8 + green: 72.3 + yellow: 81.4 + blue: 43.8 + magenta: 45.7 + cyan: 35.9 + white: 93.9 + brightBlack: 73.2 + brightRed: 68.4 + brightGreen: 72.3 + brightYellow: 81.4 + brightBlue: 43.8 + brightMagenta: 81.2 + brightCyan: 70.2 + brightWhite: 86.7 diff --git a/themes/emberwood.yaml b/themes/emberwood.yaml index 66d50eb4..05f90a06 100644 --- a/themes/emberwood.yaml +++ b/themes/emberwood.yaml @@ -8,6 +8,7 @@ source: author: "Lucas Pinheiro Caldas" repo: "https://github.com/lucpc/emberwood-theme" url: "https://marketplace.visualstudio.com/items?itemName=Lucpc.emberwood-theme" + formats: null colors: bg: "#171C1A" fg: "#FFB86C" diff --git a/themes/emerald-fork.yaml b/themes/emerald-fork.yaml deleted file mode 100644 index 8a86ea3a..00000000 --- a/themes/emerald-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "EMERALD - Fork" -source: - marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" - version: "9.0.1" - installs: 29917 - rating: 4.6 - ratings: 10 - author: "Hasibur R" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" -colors: - bg: "#1E1E1E" - fg: "#E4E4E4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 88.6 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/emerald-matrix.yaml b/themes/emerald-matrix.yaml deleted file mode 100644 index 3c439164..00000000 --- a/themes/emerald-matrix.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Emerald Matrix" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#001A1A" - fg: "#00F0A0" - black: "#001A1A" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#00F0A0" - brightBlack: "#004D3D" - brightRed: "#FF7A85" - brightGreen: "#D3F595" - brightYellow: "#FFD47F" - brightBlue: "#9DC3FF" - brightMagenta: "#D9A3F5" - brightCyan: "#9CE5FF" - brightWhite: "#00F99E" -meta: - mode: "dark" - accent: "red" - hue: 195 - pair: null - contrast: - fg: 79.4 - black: 0 - red: 43.6 - green: 84.1 - yellow: 78.9 - blue: 55.9 - magenta: 53.7 - cyan: 78.2 - white: 79.4 - brightBlack: 9 - brightRed: 52.2 - brightGreen: 92.4 - brightYellow: 83 - brightBlue: 68.3 - brightMagenta: 62.7 - brightCyan: 83.4 - brightWhite: 84.1 diff --git a/themes/emerald.yaml b/themes/emerald.yaml index 5e129656..9ffa4582 100644 --- a/themes/emerald.yaml +++ b/themes/emerald.yaml @@ -8,6 +8,7 @@ source: author: "zecuse" repo: "https://github.com/zecuse/emerald-theme" url: "https://marketplace.visualstudio.com/items?itemName=zecuse.emerald-theme" + formats: null colors: bg: "#00281E" fg: "#FFFFFF" diff --git a/themes/emeralds.yaml b/themes/emeralds.yaml index b5ddee62..bd8c3ed4 100644 --- a/themes/emeralds.yaml +++ b/themes/emeralds.yaml @@ -1,52 +1,53 @@ name: "Emeralds" source: - marketplace_id: "KelsonCarvalho.emerald-kc" - version: "2.0.0" - installs: 291 - rating: 0 - ratings: 0 - author: "Kelson Carvalho" - repo: "https://github.com/NoslekCode/emeralds_Theme_VsCode" - url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.emerald-kc" + marketplace_id: "salmanjt.emeralds" + version: "1.1.3" + installs: 58 + rating: 5 + ratings: 1 + author: "Salman Tahir" + repo: "https://github.com/salmanjt/emerald" + url: "https://marketplace.visualstudio.com/items?itemName=salmanjt.emeralds" + formats: null colors: - bg: "#212124" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" + bg: "#1A1A18" + fg: "#AFD4CD" + black: "#111110" + red: "#EA8785" + green: "#C0CA91" + yellow: "#EFD56C" + blue: "#83BCD8" + magenta: "#BEA5DF" + cyan: "#95C6BD" + white: "#F5F5F5" + brightBlack: "#787868" + brightRed: "#EA8785" + brightGreen: "#C0CA91" + brightYellow: "#EFD56C" + brightBlue: "#83BCD8" + brightMagenta: "#BEA5DF" + brightCyan: "#95C6BD" + brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "pink" + accent: "green" hue: null pair: null contrast: - fg: 78.2 + fg: 74.6 black: 0 - red: 25.4 - green: 51.7 - yellow: 84.3 - blue: 26.1 - magenta: 28.5 - cyan: 46.3 - white: 88.7 - brightBlack: 20.7 - brightRed: 37.3 - brightGreen: 62.2 - brightYellow: 94.3 - brightBlue: 38.7 - brightMagenta: 44.1 - brightCyan: 54.1 - brightWhite: 88.7 + red: 51.3 + green: 69.9 + yellow: 80.3 + blue: 60.7 + magenta: 58 + cyan: 65.2 + white: 100 + brightBlack: 29.2 + brightRed: 51.3 + brightGreen: 69.9 + brightYellow: 80.3 + brightBlue: 60.7 + brightMagenta: 58 + brightCyan: 65.2 + brightWhite: 106.6 diff --git a/themes/emi-theme.yaml b/themes/emi-theme.yaml index 76ef2a3d..5018e401 100644 --- a/themes/emi-theme.yaml +++ b/themes/emi-theme.yaml @@ -8,6 +8,7 @@ source: author: "Denian" repo: null url: "https://marketplace.visualstudio.com/items?itemName=denianszz.emi-theme" + formats: null colors: bg: "#141318" fg: "#ADA52D" diff --git a/themes/emmess-periglaciar.yaml b/themes/emmess-periglaciar.yaml index 1efbc3b3..ef16620b 100644 --- a/themes/emmess-periglaciar.yaml +++ b/themes/emmess-periglaciar.yaml @@ -8,6 +8,7 @@ source: author: "emmess" repo: "https://github.com/mihocsaszilard/emmess-periglaciar" url: "https://marketplace.visualstudio.com/items?itemName=emmess.emmess-periglaciar" + formats: null colors: bg: "#E0F3E3" fg: "#000000" diff --git a/themes/empire-monokai-dark.yaml b/themes/empire-monokai-dark.yaml index 18412192..468420f0 100644 --- a/themes/empire-monokai-dark.yaml +++ b/themes/empire-monokai-dark.yaml @@ -8,6 +8,7 @@ source: author: "herohiralal" repo: "https://github.com/herohiralal/empire-vscode-themepack" url: "https://marketplace.visualstudio.com/items?itemName=herohiralal.empire-vscode-themepack" + formats: null colors: bg: "#16191D" fg: "#ABB2BF" diff --git a/themes/empire-monokai-light.yaml b/themes/empire-monokai-light.yaml index fa4e86ee..ead1a242 100644 --- a/themes/empire-monokai-light.yaml +++ b/themes/empire-monokai-light.yaml @@ -8,6 +8,7 @@ source: author: "herohiralal" repo: "https://github.com/herohiralal/empire-vscode-themepack" url: "https://marketplace.visualstudio.com/items?itemName=herohiralal.empire-vscode-themepack" + formats: null colors: bg: "#E1E1E1" fg: "#000000" diff --git a/themes/enchant-high-contrast.yaml b/themes/enchant-high-contrast.yaml index 1b55620c..34266503 100644 --- a/themes/enchant-high-contrast.yaml +++ b/themes/enchant-high-contrast.yaml @@ -8,6 +8,7 @@ source: author: "Ansub" repo: "https://github.com/ansub/enchant" url: "https://marketplace.visualstudio.com/items?itemName=Ansub.enchant" + formats: null colors: bg: "#090909" fg: "#DEE0EF" diff --git a/themes/enchant.yaml b/themes/enchant.yaml index 173c33d7..5c6078fe 100644 --- a/themes/enchant.yaml +++ b/themes/enchant.yaml @@ -8,6 +8,7 @@ source: author: "Ansub" repo: "https://github.com/ansub/enchant" url: "https://marketplace.visualstudio.com/items?itemName=Ansub.enchant" + formats: null colors: bg: "#151515" fg: "#DEE0EF" diff --git a/themes/encom.yaml b/themes/encom.yaml index b8b168fe..a74d8659 100644 --- a/themes/encom.yaml +++ b/themes/encom.yaml @@ -2,12 +2,13 @@ name: "ENCOM" source: marketplace_id: "emeraldio.encom" version: "0.0.3" - installs: 677 + installs: 680 rating: 5 ratings: 1 author: "emerald.io" repo: "https://github.com/emeraldio/encom" url: "https://marketplace.visualstudio.com/items?itemName=emeraldio.encom" + formats: null colors: bg: "#000000" fg: "#00A595" diff --git a/themes/end-color-theme.yaml b/themes/end-color-theme.yaml deleted file mode 100644 index 5f3cff55..00000000 --- a/themes/end-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "End-color-theme" -source: - marketplace_id: "hzao.theme-end" - version: "0.3.0" - installs: 3158 - rating: 5 - ratings: 2 - author: "hzao" - repo: "https://github.com/hezeao/theme-end" - url: "https://marketplace.visualstudio.com/items?itemName=hzao.theme-end" -colors: - bg: "#161616" - fg: "#F8EEFF" - black: "#161616" - red: "#FF1155" - green: "#AADD00" - yellow: "#EEEEAA" - blue: "#00DDFF" - magenta: "#E55FFF" - cyan: "#00CCBB" - white: "#D8CFDE" - brightBlack: "#363537" - brightRed: "#EE7722" - brightGreen: "#00CCBB" - brightYellow: "#EEEEAA" - brightBlue: "#00DDFF" - brightMagenta: "#E55FFF" - brightCyan: "#00CCBB" - brightWhite: "#F8EEFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.1 - black: 0 - red: 37.4 - green: 75 - yellow: 93.3 - blue: 74.2 - magenta: 47.4 - cyan: 62.7 - white: 78.4 - brightBlack: 0 - brightRed: 46.5 - brightGreen: 62.7 - brightYellow: 93.3 - brightBlue: 74.2 - brightMagenta: 47.4 - brightCyan: 62.7 - brightWhite: 98.1 diff --git a/themes/endeavouros-breeze-dark.yaml b/themes/endeavouros-breeze-dark.yaml index cf76245d..3a53b858 100644 --- a/themes/endeavouros-breeze-dark.yaml +++ b/themes/endeavouros-breeze-dark.yaml @@ -8,6 +8,7 @@ source: author: "Jordon Leach" repo: "https://github.com/jordojordo/endeavouros-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jordojordo.endeavouros-dark" + formats: null colors: bg: "#222529" fg: "#E3E3EA" diff --git a/themes/endeavouros-dark-high-contrast.yaml b/themes/endeavouros-dark-high-contrast.yaml index 9ebdbf9f..15a7897e 100644 --- a/themes/endeavouros-dark-high-contrast.yaml +++ b/themes/endeavouros-dark-high-contrast.yaml @@ -8,6 +8,7 @@ source: author: "Jordon Leach" repo: "https://github.com/jordojordo/endeavouros-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jordojordo.endeavouros-dark" + formats: null colors: bg: "#1B1C1E" fg: "#FFFFFF" diff --git a/themes/endeavouros-dark-night-shift.yaml b/themes/endeavouros-dark-night-shift.yaml index e96d74b2..a9468f5d 100644 --- a/themes/endeavouros-dark-night-shift.yaml +++ b/themes/endeavouros-dark-night-shift.yaml @@ -8,6 +8,7 @@ source: author: "Jordon Leach" repo: "https://github.com/jordojordo/endeavouros-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jordojordo.endeavouros-dark" + formats: null colors: bg: "#1B1C1E" fg: "#FFFFFF" diff --git a/themes/endless-iris.yaml b/themes/endless-iris.yaml index 39db37b6..aab6ebe5 100644 --- a/themes/endless-iris.yaml +++ b/themes/endless-iris.yaml @@ -8,6 +8,7 @@ source: author: "Dikroll" repo: "https://github.com/Dikroll/Void-Iris" url: "https://marketplace.visualstudio.com/items?itemName=Dikroll.void-iris-theme" + formats: null colors: bg: "#FFFFFF" fg: "#031740" diff --git a/themes/energy-red-light-passion-alertness.yaml b/themes/energy-red-light-passion-alertness.yaml index fff14323..1b498e7a 100644 --- a/themes/energy-red-light-passion-alertness.yaml +++ b/themes/energy-red-light-passion-alertness.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#FFF5F5" fg: "#1A0505" diff --git a/themes/energy-red-passion-alertness.yaml b/themes/energy-red-passion-alertness.yaml index 89d5168c..95f8ef57 100644 --- a/themes/energy-red-passion-alertness.yaml +++ b/themes/energy-red-passion-alertness.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#1A0505" fg: "#FFEBEE" diff --git a/themes/energy-theme.yaml b/themes/energy-theme.yaml index bbb832ee..ac6fda97 100644 --- a/themes/energy-theme.yaml +++ b/themes/energy-theme.yaml @@ -1,4 +1,4 @@ -name: "energy-theme" +name: "Energy Theme" source: marketplace_id: "visual-interpretation-of-technology.energy-theme" version: "1.0.1" @@ -8,6 +8,7 @@ source: author: "Visual Interpretation of Technology (VIT)" repo: "https://github.com/Zarnovitch/energy-theme" url: "https://marketplace.visualstudio.com/items?itemName=visual-interpretation-of-technology.energy-theme" + formats: null colors: bg: "#222635" fg: "#BABED8" diff --git a/themes/enhanced-hubspot-theme.yaml b/themes/enhanced-hubspot-theme.yaml deleted file mode 100644 index f1d53aa4..00000000 --- a/themes/enhanced-hubspot-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Enhanced HubSpot Theme" -source: - marketplace_id: "NicolasMendes.enhanced-canvas-theme" - version: "2.2.2" - installs: 1553 - rating: 5 - ratings: 3 - author: "Nicolas Mendes" - repo: "https://github.com/DreamDevourer/Enhanced-HubSpot-VScode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=NicolasMendes.enhanced-canvas-theme" -colors: - bg: "#2D3E50" - fg: "#FCFCFC" - black: "#191A4F" - red: "#F2547D" - green: "#00BDA5" - yellow: "#FF7A59" - blue: "#3794FF" - magenta: "#6A78D1" - cyan: "#11A8CD" - white: "#FCFCFC" - brightBlack: "#9F9F9F" - brightRed: "#F03264" - brightGreen: "#07DBC1" - brightYellow: "#F5C26B" - brightBlue: "#5CA5F9" - brightMagenta: "#929EE8" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "red" - hue: 250 - pair: null - contrast: - fg: 97.2 - black: 0 - red: 33.5 - green: 47.1 - yellow: 43.6 - blue: 36 - magenta: 25.6 - cyan: 39.9 - white: 97.2 - brightBlack: 41.6 - brightRed: 28 - brightGreen: 62.4 - brightYellow: 65.9 - brightBlue: 43.4 - brightMagenta: 43.6 - brightCyan: 47.7 - brightWhite: 82.3 diff --git a/themes/enhanced-material-batman.yaml b/themes/enhanced-material-batman.yaml index dbbf82b7..787f9f81 100644 --- a/themes/enhanced-material-batman.yaml +++ b/themes/enhanced-material-batman.yaml @@ -8,6 +8,7 @@ source: author: "RonnyFX" repo: "https://github.com/ronnyf/enhanced-material-batman" url: "https://marketplace.visualstudio.com/items?itemName=RonnyFX.enhanced-material-batman" + formats: null colors: bg: "#23242D" fg: "#B4B4B4" diff --git a/themes/enhanced-material-fork.yaml b/themes/enhanced-material-fork.yaml index a3a73513..cbe7c006 100644 --- a/themes/enhanced-material-fork.yaml +++ b/themes/enhanced-material-fork.yaml @@ -8,6 +8,7 @@ source: author: "Leak" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Leak.leak-theme" + formats: null colors: bg: "#191919" fg: "#D9D2D2" diff --git a/themes/enhanced-material.yaml b/themes/enhanced-material.yaml deleted file mode 100644 index 72d42095..00000000 --- a/themes/enhanced-material.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Enhanced Material" -source: - marketplace_id: "aviksaikat.material-tweaked" - version: "0.0.1" - installs: 109 - rating: 0 - ratings: 0 - author: "avik_saikat" - repo: "https://github.com/Aviksaikat/Vscode-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=aviksaikat.material-tweaked" -colors: - bg: "#292C3E" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 277 - pair: null - contrast: - fg: 103.4 - black: 0 - red: 23.3 - green: 49.5 - yellow: 82.2 - blue: 24 - magenta: 26.3 - cyan: 44.1 - white: 86.6 - brightBlack: 18.6 - brightRed: 35.1 - brightGreen: 60.1 - brightYellow: 92.2 - brightBlue: 36.5 - brightMagenta: 41.9 - brightCyan: 51.9 - brightWhite: 86.6 diff --git a/themes/enigma.yaml b/themes/enigma.yaml index 2abbb95b..b9f1015d 100644 --- a/themes/enigma.yaml +++ b/themes/enigma.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Priyaank.enigmax" version: "0.0.1" installs: 161 + rating: 0 + ratings: 0 author: "Priyaank" repo: "https://github.com/PRIYAANK2510/Enigma" url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.enigmax" + formats: null colors: bg: "#18181F" fg: "#70708F" diff --git a/themes/enki-night-owl.yaml b/themes/enki-night-owl.yaml deleted file mode 100644 index 26ef3dfd..00000000 --- a/themes/enki-night-owl.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Enki Night Owl" -source: - marketplace_id: "enkia.enki-vscode-theme" - version: "0.5.0" - installs: 12063 - rating: 4 - ratings: 4 - author: "enkia" - repo: "https://github.com/enkia/enki-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" -colors: - bg: "#011627" - fg: "#D6DEEB" - black: "#011627" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ADDB67" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#AFBAD4" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#AFBAD4" -meta: - mode: "dark" - accent: "teal" - hue: 244 - pair: null - contrast: - fg: 85.3 - black: 0 - red: 39.4 - green: 67.3 - yellow: 75 - blue: 56 - magenta: 53.8 - cyan: 59.8 - white: 64.2 - brightBlack: 15.7 - brightRed: 39.4 - brightGreen: 67.3 - brightYellow: 93.8 - brightBlue: 56 - brightMagenta: 53.8 - brightCyan: 74.1 - brightWhite: 64.2 diff --git a/themes/enki-rainbow.yaml b/themes/enki-rainbow.yaml deleted file mode 100644 index 04a21a2d..00000000 --- a/themes/enki-rainbow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Enki Rainbow" -source: - marketplace_id: "enkia.enki-vscode-theme" - version: "0.5.0" - installs: 12063 - rating: 4 - ratings: 4 - author: "enkia" - repo: "https://github.com/enkia/enki-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" -colors: - bg: "#19191F" - fg: "#9699A8" - black: "#595D78" - red: "#C33C4A" - green: "#0F8976" - yellow: "#CA9B55" - blue: "#50B4E6" - magenta: "#6D3B66" - cyan: "#7ED6F9" - white: "#707386" - brightBlack: "#595D78" - brightRed: "#C33C4A" - brightGreen: "#0F8976" - brightYellow: "#CA9B55" - brightBlue: "#6582AF" - brightMagenta: "#9D599D" - brightCyan: "#7ED6F9" - brightWhite: "#707386" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 46.2 - black: 18.6 - red: 25.9 - green: 31 - yellow: 51.4 - blue: 55.1 - magenta: 11.9 - cyan: 73.7 - white: 27.9 - brightBlack: 18.6 - brightRed: 25.9 - brightGreen: 31 - brightYellow: 51.4 - brightBlue: 33.9 - brightMagenta: 27.2 - brightCyan: 73.7 - brightWhite: 27.9 diff --git a/themes/enki-red.yaml b/themes/enki-red.yaml deleted file mode 100644 index 85374a99..00000000 --- a/themes/enki-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Enki Red" -source: - marketplace_id: "enkia.enki-vscode-theme" - version: "0.5.0" - installs: 12063 - rating: 4 - ratings: 4 - author: "enkia" - repo: "https://github.com/enkia/enki-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" -colors: - bg: "#19191F" - fg: "#9699A8" - black: "#787C99" - red: "#C33C4A" - green: "#0F8976" - yellow: "#CE9C3D" - blue: "#50B4E6" - magenta: "#6D3B66" - cyan: "#7ED6F9" - white: "#707386" - brightBlack: "#787C99" - brightRed: "#C33C4A" - brightGreen: "#0F8976" - brightYellow: "#CE9C3D" - brightBlue: "#6582AF" - brightMagenta: "#9D599D" - brightCyan: "#7ED6F9" - brightWhite: "#707386" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 46.2 - black: 32.3 - red: 25.9 - green: 31 - yellow: 52 - blue: 55.1 - magenta: 11.9 - cyan: 73.7 - white: 27.9 - brightBlack: 32.3 - brightRed: 25.9 - brightGreen: 31 - brightYellow: 52 - brightBlue: 33.9 - brightMagenta: 27.2 - brightCyan: 73.7 - brightWhite: 27.9 diff --git a/themes/enki.yaml b/themes/enki.yaml deleted file mode 100644 index eb98d91a..00000000 --- a/themes/enki.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Enki" -source: - marketplace_id: "enkia.enki-vscode-theme" - version: "0.5.0" - installs: 12063 - rating: 4 - ratings: 4 - author: "enkia" - repo: "https://github.com/enkia/enki-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" -colors: - bg: "#19191F" - fg: "#9699A8" - black: "#595D78" - red: "#C33C4A" - green: "#0F8976" - yellow: "#CE9C3D" - blue: "#50B4E6" - magenta: "#6D3B66" - cyan: "#7ED6F9" - white: "#707386" - brightBlack: "#595D78" - brightRed: "#C33C4A" - brightGreen: "#0F8976" - brightYellow: "#CE9C3D" - brightBlue: "#6582AF" - brightMagenta: "#9D599D" - brightCyan: "#7ED6F9" - brightWhite: "#707386" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 46.2 - black: 18.6 - red: 25.9 - green: 31 - yellow: 52 - blue: 55.1 - magenta: 11.9 - cyan: 73.7 - white: 27.9 - brightBlack: 18.6 - brightRed: 25.9 - brightGreen: 31 - brightYellow: 52 - brightBlue: 33.9 - brightMagenta: 27.2 - brightCyan: 73.7 - brightWhite: 27.9 diff --git a/themes/enlightened-ifission.yaml b/themes/enlightened-ifission.yaml index 1e12f0dc..b08ba223 100644 --- a/themes/enlightened-ifission.yaml +++ b/themes/enlightened-ifission.yaml @@ -8,6 +8,7 @@ source: author: "ifission" repo: "https://github.com/iFission/enlightened-ifission" url: "https://marketplace.visualstudio.com/items?itemName=ifission.enlightened-ifission" + formats: null colors: bg: "#000000" fg: "#F8F8F2" diff --git a/themes/enough.yaml b/themes/enough.yaml index 6e600fa6..6a3d0d85 100644 --- a/themes/enough.yaml +++ b/themes/enough.yaml @@ -2,12 +2,13 @@ name: "Enough" source: marketplace_id: "marcusolsson.enough-visual-studio-code" version: "1.0.0" - installs: 886 + installs: 887 rating: 5 ratings: 1 author: "Marcus Olsson" repo: "https://github.com/marcusolsson/vscode-theme-enough" url: "https://marketplace.visualstudio.com/items?itemName=marcusolsson.enough-visual-studio-code" + formats: null colors: bg: "#1E1E1E" fg: "#FFFFFF" diff --git a/themes/enova.yaml b/themes/enova.yaml index 7a799760..4edc8ce9 100644 --- a/themes/enova.yaml +++ b/themes/enova.yaml @@ -1,4 +1,4 @@ -name: "Enova" +name: "enova" source: marketplace_id: "shekhars0940054.enova" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "shekhars0940054" repo: null url: "https://marketplace.visualstudio.com/items?itemName=shekhars0940054.enova" + formats: null colors: bg: "#1B1919" fg: "#D4D4D4" diff --git a/themes/entardecer.yaml b/themes/entardecer.yaml deleted file mode 100644 index d64b1956..00000000 --- a/themes/entardecer.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Entardecer" -source: - marketplace_id: "GustavoLimadaSilva.Tardezinha-Light-Theme" - version: "0.0.1" - installs: 19 - author: "Gustavo Lima da Silva" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=GustavoLimadaSilva.Tardezinha-Light-Theme" -colors: - bg: "#FEEEC7" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - contrast: - fg: 96.6 - black: 96.6 - red: 64.5 - green: 39.8 - yellow: 48.4 - blue: 76.6 - magenta: 65.1 - cyan: 51.1 - white: 76.5 - brightBlack: 69.3 - brightRed: 64.5 - brightGreen: 31.4 - brightYellow: 31.5 - brightBlue: 76.6 - brightMagenta: 65.1 - brightCyan: 51.1 - brightWhite: 39 diff --git a/themes/entropic-theme.yaml b/themes/entropic-theme.yaml index 933c3739..b69988b5 100644 --- a/themes/entropic-theme.yaml +++ b/themes/entropic-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "entropic-soft.entropic-theme" version: "1.0.3" installs: 174 + rating: 0 + ratings: 0 author: "Entropic Software" repo: "https://github.com/entropic-software/entropic-theme" url: "https://marketplace.visualstudio.com/items?itemName=entropic-soft.entropic-theme" + formats: null colors: bg: "#101010" fg: "#D4D4D4" diff --git a/themes/eon-react.yaml b/themes/eon-react.yaml index 4580f0df..380ce0d9 100644 --- a/themes/eon-react.yaml +++ b/themes/eon-react.yaml @@ -8,6 +8,7 @@ source: author: "Mr.kumar" repo: "https://github.com/Cod-Kumar/Cod-kumar-vs-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mrkumar.Eon-theme" + formats: null colors: bg: "#111113" fg: "#A7ACCA" diff --git a/themes/eon-theme-second.yaml b/themes/eon-theme-second.yaml index 2b94435d..394208ef 100644 --- a/themes/eon-theme-second.yaml +++ b/themes/eon-theme-second.yaml @@ -8,6 +8,7 @@ source: author: "Mr.kumar" repo: "https://github.com/Cod-Kumar/Cod-kumar-vs-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mrkumar.Eon-theme" + formats: null colors: bg: "#0A141D" fg: "#E5E6EB" diff --git a/themes/eon-theme-v4.yaml b/themes/eon-theme-v4.yaml index 80fa6c20..ec8fa99f 100644 --- a/themes/eon-theme-v4.yaml +++ b/themes/eon-theme-v4.yaml @@ -8,6 +8,7 @@ source: author: "Mr.kumar" repo: "https://github.com/Cod-Kumar/Cod-kumar-vs-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mrkumar.Eon-theme" + formats: null colors: bg: "#0B1721" fg: "#E5E6EB" diff --git a/themes/eon-theme.yaml b/themes/eon-theme.yaml index c5d8185c..81f09b0b 100644 --- a/themes/eon-theme.yaml +++ b/themes/eon-theme.yaml @@ -8,6 +8,7 @@ source: author: "Mr.kumar" repo: "https://github.com/Cod-Kumar/Cod-kumar-vs-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mrkumar.Eon-theme" + formats: null colors: bg: "#0A141D" fg: "#D4D4D4" diff --git a/themes/epsilon.yaml b/themes/epsilon.yaml index 9bd2c573..c325670f 100644 --- a/themes/epsilon.yaml +++ b/themes/epsilon.yaml @@ -8,6 +8,7 @@ source: author: "mzafram2001" repo: "https://github.com/mzafram2001/Epsilon" url: "https://marketplace.visualstudio.com/items?itemName=mzafram2001.epsilon" + formats: null colors: bg: "#1F2023" fg: "#BCB28D" diff --git a/themes/equinox-dark.yaml b/themes/equinox-dark.yaml index d527bd78..4150255f 100644 --- a/themes/equinox-dark.yaml +++ b/themes/equinox-dark.yaml @@ -8,6 +8,7 @@ source: author: "xAlvzx" repo: "https://github.com/xAlvzx/equinox-theme" url: "https://marketplace.visualstudio.com/items?itemName=xAlvzx.equinox-theme" + formats: null colors: bg: "#323234" fg: "#ABB2BF" diff --git a/themes/equinox-light.yaml b/themes/equinox-light.yaml index 24607997..4d4704cd 100644 --- a/themes/equinox-light.yaml +++ b/themes/equinox-light.yaml @@ -8,6 +8,7 @@ source: author: "xAlvzx" repo: "https://github.com/xAlvzx/equinox-theme" url: "https://marketplace.visualstudio.com/items?itemName=xAlvzx.equinox-theme" + formats: null colors: bg: "#D9D9D9" fg: "#333333" diff --git a/themes/eralith.yaml b/themes/eralith.yaml index 49bd2ae0..efb55a9a 100644 --- a/themes/eralith.yaml +++ b/themes/eralith.yaml @@ -8,6 +8,7 @@ source: author: "Eralith Theme" repo: "https://github.com/Danrley-Ruan-Saquetti/Eralith-Theme" url: "https://marketplace.visualstudio.com/items?itemName=eralith-theme.eralith-theme" + formats: null colors: bg: "#211B26" fg: "#D1D1D1" diff --git a/themes/erikwdevtheme-color-theme.yaml b/themes/erikwdevtheme-color-theme.yaml deleted file mode 100644 index 5aeeaf6a..00000000 --- a/themes/erikwdevtheme-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ErikWDevTheme-color-theme" -source: - marketplace_id: "ErikWDev.erikwdevtheme" - version: "1.2.2" - installs: 152 - rating: 5 - ratings: 1 - author: "ErikWDev" - repo: "https://www.github.com/ErikWDev/ErikWDevTheme" - url: "https://marketplace.visualstudio.com/items?itemName=ErikWDev.erikwdevtheme" -colors: - bg: "#20223A" - fg: "#CBCCC6" - black: "#1A1D34" - red: "#A577DE" - green: "#A6CC70" - yellow: "#E9B93F" - blue: "#6DCBFA" - magenta: "#BAFAF2" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#AA7CE3" - brightGreen: "#67C988" - brightYellow: "#EEBE44" - brightBlue: "#73D0FF" - brightMagenta: "#BFFFF7" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 279 - pair: null - contrast: - fg: 72.5 - black: 0 - red: 38.3 - green: 65.7 - yellow: 65.7 - blue: 66.2 - magenta: 93.8 - cyan: 76.1 - white: 69.9 - brightBlack: 21.1 - brightRed: 40.8 - brightGreen: 60 - brightYellow: 68.6 - brightBlue: 69.1 - brightMagenta: 97 - brightCyan: 79.1 - brightWhite: 105.1 diff --git a/themes/eritbh-s-theme.yaml b/themes/eritbh-s-theme.yaml deleted file mode 100644 index d72c3b38..00000000 --- a/themes/eritbh-s-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "eritbh's theme" -source: - marketplace_id: "eritbh.eritbh-theme" - version: "1.2.6" - installs: 149 - rating: 0 - ratings: 0 - author: "eritbh" - repo: "https://github.com/eritbh/eritbh-theme" - url: "https://marketplace.visualstudio.com/items?itemName=eritbh.eritbh-theme" -colors: - bg: "#2D2D2D" - fg: "#EFE8E4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#BAB5B2" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#EFE8E4" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 89.3 - black: 0 - red: 23.3 - green: 49.6 - yellow: 82.2 - blue: 24 - magenta: 26.3 - cyan: 44.1 - white: 58.4 - brightBlack: 18.6 - brightRed: 35.1 - brightGreen: 60.1 - brightYellow: 92.2 - brightBlue: 36.6 - brightMagenta: 41.9 - brightCyan: 52 - brightWhite: 89.3 diff --git a/themes/errordark.yaml b/themes/errordark.yaml deleted file mode 100644 index b3346948..00000000 --- a/themes/errordark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ErrorDark" -source: - marketplace_id: "Fukumi.friendly-dark" - version: "2.2.27" - installs: 2075 - rating: 5 - ratings: 1 - author: "Satou Fukumi" - repo: "https://github.com/satoufukumi/friendly-dark" - url: "https://marketplace.visualstudio.com/items?itemName=Fukumi.friendly-dark" -colors: - bg: "#141523" - fg: "#C8C7D5" - black: "#0C0C0C" - red: "#C50F1F" - green: "#16B311" - yellow: "#FFE448" - blue: "#0037DA" - magenta: "#881798" - cyan: "#3A96DD" - white: "#C8C7D5" - brightBlack: "#767676" - brightRed: "#E74856" - brightGreen: "#16C60C" - brightYellow: "#F9F1A5" - brightBlue: "#3B78FF" - brightMagenta: "#B4009E" - brightCyan: "#61D6D6" - brightWhite: "#F2F2F2" -meta: - mode: "dark" - accent: "purple" - hue: 280 - pair: null - contrast: - fg: 72.5 - black: 0 - red: 22.9 - green: 47.7 - yellow: 89.3 - blue: 14.4 - magenta: 14.9 - cyan: 42.1 - white: 72.5 - brightBlack: 29.2 - brightRed: 35.9 - brightGreen: 56.6 - brightYellow: 96.1 - brightBlue: 34.4 - brightMagenta: 22.8 - brightCyan: 70.6 - brightWhite: 98.4 diff --git a/themes/errrrrm.yaml b/themes/errrrrm.yaml index 34f09ab2..ea9817cd 100644 --- a/themes/errrrrm.yaml +++ b/themes/errrrrm.yaml @@ -8,6 +8,7 @@ source: author: "red-theme" repo: "https://github.com/ddertaliss/vscode-red-theme.git#main" url: "https://marketplace.visualstudio.com/items?itemName=red-theme.red-vscode-theme" + formats: null colors: bg: "#191617" fg: "#D4D4D4" diff --git a/themes/escook-theme-light.yaml b/themes/escook-theme-light.yaml index 51f5396e..26dcc71a 100644 --- a/themes/escook-theme-light.yaml +++ b/themes/escook-theme-light.yaml @@ -8,6 +8,7 @@ source: author: "Eternity" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Eternity.Eternity" + formats: null colors: bg: "#FAFAFA" fg: "#6C7680" diff --git a/themes/eskey-theme.yaml b/themes/eskey-theme.yaml index ab26f836..12fe2be7 100644 --- a/themes/eskey-theme.yaml +++ b/themes/eskey-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Eskeyz.eskey-theme" version: "0.0.2" installs: 124 + rating: 0 + ratings: 0 author: "Eskeyz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Eskeyz.eskey-theme" + formats: null colors: bg: "#303030" fg: "#FFFFFF" diff --git a/themes/espresso-dark-theme.yaml b/themes/espresso-dark-theme.yaml deleted file mode 100644 index 99581aff..00000000 --- a/themes/espresso-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Espresso Dark Theme" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#11111B" - fg: "#CDD6F4" - black: "#11111B" - red: "#CE6565" - green: "#2E9E95" - yellow: "#A6E3A1" - blue: "#89B4FA" - magenta: "#BD8DF3" - cyan: "#47BAAE" - white: "#FAF6FE" - brightBlack: "#313244" - brightRed: "#CE6565" - brightGreen: "#2E9E95" - brightYellow: "#F7D790" - brightBlue: "#89B4FA" - brightMagenta: "#BD8DF3" - brightCyan: "#74D4C8" - brightWhite: "#FAF6FE" -meta: - mode: "dark" - accent: "magenta" - hue: 284 - pair: null - contrast: - fg: 81.5 - black: 0 - red: 37 - green: 41.6 - yellow: 79.8 - blue: 60.5 - magenta: 51.8 - cyan: 55.3 - white: 102.3 - brightBlack: 0 - brightRed: 37 - brightGreen: 41.6 - brightYellow: 83.9 - brightBlue: 60.5 - brightMagenta: 51.8 - brightCyan: 70.3 - brightWhite: 102.3 diff --git a/themes/espresso-dark.yaml b/themes/espresso-dark.yaml deleted file mode 100644 index d60c4892..00000000 --- a/themes/espresso-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Espresso Dark" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#1E1714" - fg: "#D4C4B0" - black: "#2A211A" - red: "#E88878" - green: "#A4C484" - yellow: "#E8C878" - blue: "#88B4D4" - magenta: "#C4A4DD" - cyan: "#8AC4C4" - white: "#D4C4B0" - brightBlack: "#6A5A48" - brightRed: "#FFAA98" - brightGreen: "#C4E4A4" - brightYellow: "#FFE898" - brightBlue: "#A8D4F4" - brightMagenta: "#E4C4FF" - brightCyan: "#AAE4E4" - brightWhite: "#FAF4E8" -meta: - mode: "dark" - accent: "orange" - hue: 44 - pair: null - contrast: - fg: 71.1 - black: 0 - red: 51.1 - green: 64 - yellow: 74.1 - blue: 57.6 - magenta: 58.5 - cyan: 63.8 - white: 71.1 - brightBlack: 18 - brightRed: 67.2 - brightGreen: 82.9 - brightYellow: 92.2 - brightBlue: 75.9 - brightMagenta: 77 - brightCyan: 82.6 - brightWhite: 99.8 diff --git a/themes/espresso-high.yaml b/themes/espresso-high.yaml deleted file mode 100644 index 43324341..00000000 --- a/themes/espresso-high.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Espresso-High" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#121212" - fg: "#EEEEEE" - black: "#121212" - red: "#E55031" - green: "#29C3A0" - yellow: "#D29922" - blue: "#FCDFC2" - magenta: "#FCDFC2" - cyan: "#29C3A0" - white: "#EEEEEE" - brightBlack: "#121212" - brightRed: "#E55031" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#FCDFC2" - brightMagenta: "#FCDFC2" - brightCyan: "#29C3A0" - brightWhite: "#EEEEEE" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.2 - black: 0 - red: 36.6 - green: 58.1 - yellow: 52.1 - blue: 89.7 - magenta: 89.7 - cyan: 58.1 - white: 96.2 - brightBlack: 0 - brightRed: 36.6 - brightGreen: 58.1 - brightYellow: 52.1 - brightBlue: 89.7 - brightMagenta: 89.7 - brightCyan: 58.1 - brightWhite: 96.2 diff --git a/themes/etec-pfa-light.yaml b/themes/etec-pfa-light.yaml index 1dbf27c4..ee7e9d12 100644 --- a/themes/etec-pfa-light.yaml +++ b/themes/etec-pfa-light.yaml @@ -8,6 +8,7 @@ source: author: "Gustavo2022003" repo: "https://github.com/Gustavo2022003/CPS-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Gustavo2022003.cps-theme" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/eternal-autumn.yaml b/themes/eternal-autumn.yaml index 13627127..14d50982 100644 --- a/themes/eternal-autumn.yaml +++ b/themes/eternal-autumn.yaml @@ -8,6 +8,7 @@ source: author: "devkvlt" repo: "https://github.com/devkvlt/eternal.vscode" url: "https://marketplace.visualstudio.com/items?itemName=devkvlt.eternal" + formats: null colors: bg: "#110014" fg: "#B3AFCE" diff --git a/themes/eternal-summer.yaml b/themes/eternal-summer.yaml index bfcba707..4cdc8176 100644 --- a/themes/eternal-summer.yaml +++ b/themes/eternal-summer.yaml @@ -8,6 +8,7 @@ source: author: "devkvlt" repo: "https://github.com/devkvlt/eternal.vscode" url: "https://marketplace.visualstudio.com/items?itemName=devkvlt.eternal" + formats: null colors: bg: "#E7D5B4" fg: "#332720" diff --git a/themes/eternals-no-italic.yaml b/themes/eternals-no-italic.yaml deleted file mode 100644 index 71cb5953..00000000 --- a/themes/eternals-no-italic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Eternals No Italic" -source: - marketplace_id: "SurajNarsale.eternals" - version: "0.0.4" - installs: 332 - rating: 4.5 - ratings: 2 - author: "Suraj Narsale" - repo: "https://github.com/surajnarsale/eternals-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SurajNarsale.eternals" -colors: - bg: "#161B27" - fg: "#C2C2D1" - black: "#161B27" - red: "#EF5350" - green: "#22DA6E" - yellow: "#F6EB9D" - blue: "#F385FC" - magenta: "#00D1FF" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#F385FC" - brightMagenta: "#00D1FF" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 267 - pair: null - contrast: - fg: 69 - black: 0 - red: 38.8 - green: 66.8 - yellow: 92.1 - blue: 57.9 - magenta: 68 - cyan: 59.2 - white: 106.4 - brightBlack: 15.1 - brightRed: 38.8 - brightGreen: 66.8 - brightYellow: 93.2 - brightBlue: 57.9 - brightMagenta: 68 - brightCyan: 73.5 - brightWhite: 106.4 diff --git a/themes/ethanli-turquoise-dark.yaml b/themes/ethanli-turquoise-dark.yaml index fde1a6fe..c3381853 100644 --- a/themes/ethanli-turquoise-dark.yaml +++ b/themes/ethanli-turquoise-dark.yaml @@ -8,6 +8,7 @@ source: author: "EthanLi" repo: "https://github.com/LQYld/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=EthanLi.ethan-li-cyber-glow-theme" + formats: null colors: bg: "#0B1013" fg: "#F0F0F4" diff --git a/themes/ethereal.yaml b/themes/ethereal.yaml index a23e19a7..72c6bf32 100644 --- a/themes/ethereal.yaml +++ b/themes/ethereal.yaml @@ -8,6 +8,7 @@ source: author: "Brandon Kong" repo: "https://github.com/brandon-kong/ethereal" url: "https://marketplace.visualstudio.com/items?itemName=brandonkong.ethereal" + formats: null colors: bg: "#210B20" fg: "#D4D4D4" diff --git a/themes/ethereum-dark-blue-theme.yaml b/themes/ethereum-dark-blue-theme.yaml deleted file mode 100644 index bd36d32e..00000000 --- a/themes/ethereum-dark-blue-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ethereum Dark Blue Theme" -source: - marketplace_id: "karolk.ethereum-dark" - version: "1.8.15" - installs: 4737 - rating: 5 - ratings: 4 - author: "karolk" - repo: "https://github.com/karolkozer/one-dark-ethereum-theme" - url: "https://marketplace.visualstudio.com/items?itemName=karolk.ethereum-dark" -colors: - bg: "#01162B" - fg: "#5F7398" - black: "#052442" - red: "#00E6D4" - green: "#8CA0C6" - yellow: "#5F7398" - blue: "#344A6B" - magenta: "#5F7398" - cyan: "#5F7398" - white: "#8CA0C6" - brightBlack: "#052442" - brightRed: "#00E6D4" - brightGreen: "#8CA0C6" - brightYellow: "#5F7398" - brightBlue: "#344A6B" - brightMagenta: "#5F7398" - brightCyan: "#5F7398" - brightWhite: "#8CA0C6" -meta: - mode: "dark" - accent: "teal" - hue: 249 - pair: null - contrast: - fg: 27.6 - black: 0 - red: 76.4 - green: 49.5 - yellow: 27.6 - blue: 10.8 - magenta: 27.6 - cyan: 27.6 - white: 49.5 - brightBlack: 0 - brightRed: 76.4 - brightGreen: 49.5 - brightYellow: 27.6 - brightBlue: 10.8 - brightMagenta: 27.6 - brightCyan: 27.6 - brightWhite: 49.5 diff --git a/themes/ethereum-dark-grey-theme.yaml b/themes/ethereum-dark-grey-theme.yaml deleted file mode 100644 index 131e484c..00000000 --- a/themes/ethereum-dark-grey-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ethereum Dark Grey Theme" -source: - marketplace_id: "karolk.ethereum-dark" - version: "1.8.15" - installs: 4737 - rating: 5 - ratings: 4 - author: "karolk" - repo: "https://github.com/karolkozer/one-dark-ethereum-theme" - url: "https://marketplace.visualstudio.com/items?itemName=karolk.ethereum-dark" -colors: - bg: "#240530" - fg: "#B48CC0" - black: "#2A0B36" - red: "#00E6D4" - green: "#E7BDF3" - yellow: "#B48CC0" - blue: "#835E8F" - magenta: "#B48CC0" - cyan: "#B48CC0" - white: "#E7BDF3" - brightBlack: "#22072B" - brightRed: "#00E6D4" - brightGreen: "#E7BDF3" - brightYellow: "#B48CC0" - brightBlue: "#835E8F" - brightMagenta: "#B48CC0" - brightCyan: "#B48CC0" - brightWhite: "#E7BDF3" -meta: - mode: "dark" - accent: "teal" - hue: 315 - pair: null - contrast: - fg: 46.7 - black: 0 - red: 76.3 - green: 74.2 - yellow: 46.7 - blue: 24.4 - magenta: 46.7 - cyan: 46.7 - white: 74.2 - brightBlack: 0 - brightRed: 76.3 - brightGreen: 74.2 - brightYellow: 46.7 - brightBlue: 24.4 - brightMagenta: 46.7 - brightCyan: 46.7 - brightWhite: 74.2 diff --git a/themes/eva-01-berserk-theme.yaml b/themes/eva-01-berserk-theme.yaml deleted file mode 100644 index cb7dd1d7..00000000 --- a/themes/eva-01-berserk-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "EVA-01 Berserk Theme" -source: - marketplace_id: "engr.eva-unit-01-berserk-theme" - version: "0.1.0" - installs: 591 - rating: 0 - ratings: 0 - author: "engr" - repo: "https://github.com/engrx0/eva-unit01-berserk-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=engr.eva-unit-01-berserk-theme" -colors: - bg: "#1C182C" - fg: "#13FF1E" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#00FF00" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 292 - pair: null - contrast: - fg: 85.1 - black: 0 - red: 26.3 - green: 52.5 - yellow: 85.2 - blue: 27 - magenta: 29.3 - cyan: 47.1 - white: 89.6 - brightBlack: 21.6 - brightRed: 38.1 - brightGreen: 63.1 - brightYellow: 85 - brightBlue: 39.5 - brightMagenta: 44.9 - brightCyan: 54.9 - brightWhite: 106.4 diff --git a/themes/eva-01.yaml b/themes/eva-01.yaml deleted file mode 100644 index daa7d19c..00000000 --- a/themes/eva-01.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "EVA-01" -source: - marketplace_id: "kvx.evangelion-unit-eva-01-theme" - version: "0.1.2" - installs: 751 - rating: 0 - ratings: 0 - author: "kvx" - repo: "https://github.com/luqezr/eva-01-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=kvx.evangelion-unit-eva-01-theme" -colors: - bg: "#1D1A2F" - fg: "#F5F5F5" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#6CB0FB" - magenta: "#734F9A" - cyan: "#11A8CD" - white: "#B6B6B6" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#965FD4" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 289 - pair: null - contrast: - fg: 99.6 - black: 0 - red: 26 - green: 52.3 - yellow: 84.9 - blue: 55.8 - magenta: 18.8 - cyan: 46.9 - white: 61.2 - brightBlack: 21.3 - brightRed: 37.9 - brightGreen: 62.8 - brightYellow: 94.9 - brightBlue: 39.3 - brightMagenta: 30.6 - brightCyan: 54.7 - brightWhite: 106.2 diff --git a/themes/eva-theme.yaml b/themes/eva-theme.yaml index 9614af7b..427087fe 100644 --- a/themes/eva-theme.yaml +++ b/themes/eva-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Sigmabudanov.vs-code-eva-theme" version: "1.1.1" installs: 153 + rating: 0 + ratings: 0 author: "Sigma budanov" repo: "https://github.com/Spark4444/VsCodeEvangelionTheme" url: "https://marketplace.visualstudio.com/items?itemName=Sigmabudanov.vs-code-eva-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml b/themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml deleted file mode 100644 index 24d5a183..00000000 --- a/themes/eva-unit-02-theme-enhanced-red-grey-variation.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "EVA Unit-02 Theme (Enhanced Red & Grey Variation)" -source: - marketplace_id: "engr.neon-genesis-evangelion-themes" - version: "0.3.0" - installs: 1739 - rating: 5 - ratings: 3 - author: "engr" - repo: "https://github.com/engrx0/neon-genesis-evangelion-vscode-theme-extension" - url: "https://marketplace.visualstudio.com/items?itemName=engr.neon-genesis-evangelion-themes" -colors: - bg: "#0A0A0A" - fg: "#FBE6E5" - black: "#0A0A0A" - red: "#E6122B" - green: "#65AF50" - yellow: "#E07A3F" - blue: "#65AF50" - magenta: "#E07A3F" - cyan: "#65AF50" - white: "#F93431" - brightBlack: "#101010" - brightRed: "#F93431" - brightGreen: "#65AF50" - brightYellow: "#E07A3F" - brightBlue: "#65AF50" - brightMagenta: "#E07A3F" - brightCyan: "#65AF50" - brightWhite: "#FBE6E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.4 - black: 0 - red: 31.5 - green: 49.7 - yellow: 45.5 - blue: 49.7 - magenta: 45.5 - cyan: 49.7 - white: 38.1 - brightBlack: 0 - brightRed: 38.1 - brightGreen: 49.7 - brightYellow: 45.5 - brightBlue: 49.7 - brightMagenta: 45.5 - brightCyan: 49.7 - brightWhite: 94.4 diff --git a/themes/evans-dark-theme.yaml b/themes/evans-dark-theme.yaml index 52308be5..3a2556f4 100644 --- a/themes/evans-dark-theme.yaml +++ b/themes/evans-dark-theme.yaml @@ -1,4 +1,4 @@ -name: "evans-dark-theme" +name: "Evans Dark Theme" source: marketplace_id: "AnilBeesetti.evans-dark-theme" version: "1.1.0" @@ -8,6 +8,7 @@ source: author: "AnilBeesetti" repo: "https://github.com/attitudeanil/Evans-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=AnilBeesetti.evans-dark-theme" + formats: null colors: bg: "#1C262C" fg: "#DBDBDB" diff --git a/themes/evans.yaml b/themes/evans.yaml index bf6ba921..cd5e80a5 100644 --- a/themes/evans.yaml +++ b/themes/evans.yaml @@ -8,6 +8,7 @@ source: author: "Evans" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Evans.awesome-vscode-theme" + formats: null colors: bg: "#030C1B" fg: "#FBE179" diff --git a/themes/eve.yaml b/themes/eve.yaml deleted file mode 100644 index 35acf618..00000000 --- a/themes/eve.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Eve" -source: - marketplace_id: "ItsSunnyMonster.sm-bunker" - version: "1.1.7" - installs: 1773 - rating: 0 - ratings: 0 - author: "ItsSunnyMonster" - repo: "https://github.com/ItsSunnyMonster/dobri-next-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ItsSunnyMonster.sm-bunker" -colors: - bg: "#0B1015" - fg: "#97A7C8" - black: "#05080A" - red: "#FB467B" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#CB6CFE" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#FB467B" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#CB6CFE" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 249 - pair: null - contrast: - fg: 53.9 - black: 0 - red: 41.7 - green: 84.8 - yellow: 79.5 - blue: 56.5 - magenta: 45.9 - cyan: 78.9 - white: 107.5 - brightBlack: 27 - brightRed: 41.7 - brightGreen: 84.8 - brightYellow: 79.5 - brightBlue: 56.5 - brightMagenta: 45.9 - brightCyan: 78.9 - brightWhite: 107.5 diff --git a/themes/evening-sky.yaml b/themes/evening-sky.yaml index c1a6561d..c22bb361 100644 --- a/themes/evening-sky.yaml +++ b/themes/evening-sky.yaml @@ -8,6 +8,7 @@ source: author: "Sun Spot" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SunSpot.evening-sky-theme" + formats: null colors: bg: "#2B213D" fg: "#D4D4D4" diff --git a/themes/everforest-dark.yaml b/themes/everforest-dark.yaml deleted file mode 100644 index 1c60c0a8..00000000 --- a/themes/everforest-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Everforest Dark" -source: - marketplace_id: "johnull.blackforest" - version: "0.0.2" - installs: 1527 - rating: 5 - ratings: 1 - author: "johnull" - repo: "https://github.com/johnull/everforest-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=johnull.blackforest" -colors: - bg: "#000000" - fg: "#D3C6AA" - black: "#343F44" - red: "#E67E80" - green: "#A7C080" - yellow: "#DBBC7F" - blue: "#7FBBB3" - magenta: "#D699B6" - cyan: "#83C092" - white: "#D3C6AA" - brightBlack: "#859289" - brightRed: "#E67E80" - brightGreen: "#A7C080" - brightYellow: "#DBBC7F" - brightBlue: "#7FBBB3" - brightMagenta: "#D699B6" - brightCyan: "#83C092" - brightWhite: "#D3C6AA" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 72.7 - black: 7.5 - red: 49.2 - green: 63.6 - yellow: 68.5 - blue: 59.5 - magenta: 56.6 - cyan: 60.8 - white: 72.7 - brightBlack: 42 - brightRed: 49.2 - brightGreen: 63.6 - brightYellow: 68.5 - brightBlue: 59.5 - brightMagenta: 56.6 - brightCyan: 60.8 - brightWhite: 72.7 diff --git a/themes/everforest-night-hard.yaml b/themes/everforest-night-hard.yaml index 7a58697f..629c2739 100644 --- a/themes/everforest-night-hard.yaml +++ b/themes/everforest-night-hard.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "jarith.everforest-night-vscode" version: "1.2.1" installs: 165 + rating: 0 + ratings: 0 author: "jarith" repo: "https://github.com/jarith/everforest-night-vscode" url: "https://marketplace.visualstudio.com/items?itemName=jarith.everforest-night-vscode" + formats: null colors: bg: "#2A3339" fg: "#D8CAAC" diff --git a/themes/everforest-night-light-hard.yaml b/themes/everforest-night-light-hard.yaml index 0ce181ee..91603aa6 100644 --- a/themes/everforest-night-light-hard.yaml +++ b/themes/everforest-night-light-hard.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "jarith.everforest-night-vscode" version: "1.2.1" installs: 165 + rating: 0 + ratings: 0 author: "jarith" repo: "https://github.com/jarith/everforest-night-vscode" url: "https://marketplace.visualstudio.com/items?itemName=jarith.everforest-night-vscode" + formats: null colors: bg: "#F3EBD2" fg: "#4F5B62" diff --git a/themes/everforest-night-light-medium.yaml b/themes/everforest-night-light-medium.yaml index eb8a2391..62941003 100644 --- a/themes/everforest-night-light-medium.yaml +++ b/themes/everforest-night-light-medium.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "jarith.everforest-night-vscode" version: "1.2.1" installs: 165 + rating: 0 + ratings: 0 author: "jarith" repo: "https://github.com/jarith/everforest-night-vscode" url: "https://marketplace.visualstudio.com/items?itemName=jarith.everforest-night-vscode" + formats: null colors: bg: "#F9F3DF" fg: "#4F5B62" diff --git a/themes/everforest-night-light-soft.yaml b/themes/everforest-night-light-soft.yaml index 08bd91b3..326b2839 100644 --- a/themes/everforest-night-light-soft.yaml +++ b/themes/everforest-night-light-soft.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "jarith.everforest-night-vscode" version: "1.2.1" installs: 165 + rating: 0 + ratings: 0 author: "jarith" repo: "https://github.com/jarith/everforest-night-vscode" url: "https://marketplace.visualstudio.com/items?itemName=jarith.everforest-night-vscode" + formats: null colors: bg: "#FFF9E8" fg: "#4F5B62" diff --git a/themes/everforest-night-medium.yaml b/themes/everforest-night-medium.yaml index 61b88883..fc53970d 100644 --- a/themes/everforest-night-medium.yaml +++ b/themes/everforest-night-medium.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "jarith.everforest-night-vscode" version: "1.2.1" installs: 165 + rating: 0 + ratings: 0 author: "jarith" repo: "https://github.com/jarith/everforest-night-vscode" url: "https://marketplace.visualstudio.com/items?itemName=jarith.everforest-night-vscode" + formats: null colors: bg: "#323D43" fg: "#D8CAAC" diff --git a/themes/everforest-night-soft.yaml b/themes/everforest-night-soft.yaml index 5a6607bf..dce29a24 100644 --- a/themes/everforest-night-soft.yaml +++ b/themes/everforest-night-soft.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "jarith.everforest-night-vscode" version: "1.2.1" installs: 165 + rating: 0 + ratings: 0 author: "jarith" repo: "https://github.com/jarith/everforest-night-vscode" url: "https://marketplace.visualstudio.com/items?itemName=jarith.everforest-night-vscode" + formats: null colors: bg: "#3C474D" fg: "#D8CAAC" diff --git a/themes/everforest-pro-dark-cozy.yaml b/themes/everforest-pro-dark-cozy.yaml deleted file mode 100644 index 74d12aa7..00000000 --- a/themes/everforest-pro-dark-cozy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Everforest Pro Dark Cozy" -source: - marketplace_id: "AndreiLucaci.everforest-pro" - version: "2.0.0" - installs: 2489 - rating: 5 - ratings: 2 - author: "Andrei Lucaci" - repo: "https://github.com/AndreiLucaci/everforest-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" -colors: - bg: "#333C43" - fg: "#D3C6AA" - black: "#3A464C" - red: "#E67E80" - green: "#A7C080" - yellow: "#DBBC7F" - blue: "#7FBBB3" - magenta: "#D699B6" - cyan: "#83C092" - white: "#D3C6AA" - brightBlack: "#859289" - brightRed: "#E67E80" - brightGreen: "#A7C080" - brightYellow: "#DBBC7F" - brightBlue: "#7FBBB3" - brightMagenta: "#D699B6" - brightCyan: "#83C092" - brightWhite: "#D3C6AA" -meta: - mode: "dark" - accent: "orange" - hue: 241 - pair: "Everforest Pro Light Cozy" - contrast: - fg: 64.6 - black: 0 - red: 41.1 - green: 55.5 - yellow: 60.4 - blue: 51.4 - magenta: 48.5 - cyan: 52.7 - white: 64.6 - brightBlack: 33.8 - brightRed: 41.1 - brightGreen: 55.5 - brightYellow: 60.4 - brightBlue: 51.4 - brightMagenta: 48.5 - brightCyan: 52.7 - brightWhite: 64.6 diff --git a/themes/everforest-pro-dark-vibrant.yaml b/themes/everforest-pro-dark-vibrant.yaml deleted file mode 100644 index 6f950607..00000000 --- a/themes/everforest-pro-dark-vibrant.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Everforest Pro Dark Vibrant" -source: - marketplace_id: "AndreiLucaci.everforest-pro" - version: "2.0.0" - installs: 2489 - rating: 5 - ratings: 2 - author: "Andrei Lucaci" - repo: "https://github.com/AndreiLucaci/everforest-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" -colors: - bg: "#272E33" - fg: "#D3C6AA" - black: "#2E383C" - red: "#E67E80" - green: "#A7C080" - yellow: "#DBBC7F" - blue: "#7FBBB3" - magenta: "#D699B6" - cyan: "#83C092" - white: "#D3C6AA" - brightBlack: "#859289" - brightRed: "#E67E80" - brightGreen: "#A7C080" - brightYellow: "#DBBC7F" - brightBlue: "#7FBBB3" - brightMagenta: "#D699B6" - brightCyan: "#83C092" - brightWhite: "#D3C6AA" -meta: - mode: "dark" - accent: "orange" - hue: 239 - pair: "Everforest Pro Light Vibrant" - contrast: - fg: 68.3 - black: 0 - red: 44.7 - green: 59.2 - yellow: 64.1 - blue: 55.1 - magenta: 52.2 - cyan: 56.4 - white: 68.3 - brightBlack: 37.5 - brightRed: 44.7 - brightGreen: 59.2 - brightYellow: 64.1 - brightBlue: 55.1 - brightMagenta: 52.2 - brightCyan: 56.4 - brightWhite: 68.3 diff --git a/themes/everforest-pro-dark.yaml b/themes/everforest-pro-dark.yaml deleted file mode 100644 index 3040f885..00000000 --- a/themes/everforest-pro-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Everforest Pro Dark" -source: - marketplace_id: "AndreiLucaci.everforest-pro" - version: "2.0.0" - installs: 2489 - rating: 5 - ratings: 2 - author: "Andrei Lucaci" - repo: "https://github.com/AndreiLucaci/everforest-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" -colors: - bg: "#2D353B" - fg: "#D3C6AA" - black: "#343F44" - red: "#E67E80" - green: "#A7C080" - yellow: "#DBBC7F" - blue: "#7FBBB3" - magenta: "#D699B6" - cyan: "#83C092" - white: "#D3C6AA" - brightBlack: "#859289" - brightRed: "#E67E80" - brightGreen: "#A7C080" - brightYellow: "#DBBC7F" - brightBlue: "#7FBBB3" - brightMagenta: "#D699B6" - brightCyan: "#83C092" - brightWhite: "#D3C6AA" -meta: - mode: "dark" - accent: "orange" - hue: 240 - pair: "Everforest Pro Light" - contrast: - fg: 66.6 - black: 0 - red: 43.1 - green: 57.5 - yellow: 62.4 - blue: 53.4 - magenta: 50.5 - cyan: 54.7 - white: 66.6 - brightBlack: 35.9 - brightRed: 43.1 - brightGreen: 57.5 - brightYellow: 62.4 - brightBlue: 53.4 - brightMagenta: 50.5 - brightCyan: 54.7 - brightWhite: 66.6 diff --git a/themes/everforest-pro-light-cozy.yaml b/themes/everforest-pro-light-cozy.yaml deleted file mode 100644 index 142d5341..00000000 --- a/themes/everforest-pro-light-cozy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Everforest Pro Light Cozy" -source: - marketplace_id: "AndreiLucaci.everforest-pro" - version: "2.0.0" - installs: 2489 - rating: 5 - ratings: 2 - author: "Andrei Lucaci" - repo: "https://github.com/AndreiLucaci/everforest-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" -colors: - bg: "#F3EAD3" - fg: "#5C6A72" - black: "#5C6A72" - red: "#F85552" - green: "#8DA101" - yellow: "#DFA000" - blue: "#3A94C5" - magenta: "#DF69BA" - cyan: "#35A77C" - white: "#939F91" - brightBlack: "#5C6A72" - brightRed: "#F85552" - brightGreen: "#8DA101" - brightYellow: "#DFA000" - brightBlue: "#3A94C5" - brightMagenta: "#DF69BA" - brightCyan: "#35A77C" - brightWhite: "#EAE4CA" -meta: - mode: "light" - accent: "orange" - hue: 89 - pair: "Everforest Pro Dark Cozy" - contrast: - fg: 65.7 - black: 65.7 - red: 46.8 - green: 43 - yellow: 32.7 - blue: 48.7 - magenta: 44.7 - cyan: 44.3 - white: 41.1 - brightBlack: 65.7 - brightRed: 46.8 - brightGreen: 43 - brightYellow: 32.7 - brightBlue: 48.7 - brightMagenta: 44.7 - brightCyan: 44.3 - brightWhite: 0 diff --git a/themes/everforest-pro-light-vibrant.yaml b/themes/everforest-pro-light-vibrant.yaml deleted file mode 100644 index ee2e557d..00000000 --- a/themes/everforest-pro-light-vibrant.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Everforest Pro Light Vibrant" -source: - marketplace_id: "AndreiLucaci.everforest-pro" - version: "2.0.0" - installs: 2489 - rating: 5 - ratings: 2 - author: "Andrei Lucaci" - repo: "https://github.com/AndreiLucaci/everforest-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" -colors: - bg: "#FFFBEF" - fg: "#5C6A72" - black: "#5C6A72" - red: "#F85552" - green: "#8DA101" - yellow: "#DFA000" - blue: "#3A94C5" - magenta: "#DF69BA" - cyan: "#35A77C" - white: "#939F91" - brightBlack: "#5C6A72" - brightRed: "#F85552" - brightGreen: "#8DA101" - brightYellow: "#DFA000" - brightBlue: "#3A94C5" - brightMagenta: "#DF69BA" - brightCyan: "#35A77C" - brightWhite: "#F8F5E4" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Everforest Pro Dark Vibrant" - contrast: - fg: 75.5 - black: 75.5 - red: 56.6 - green: 52.8 - yellow: 42.5 - blue: 58.5 - magenta: 54.5 - cyan: 54.1 - white: 50.9 - brightBlack: 75.5 - brightRed: 56.6 - brightGreen: 52.8 - brightYellow: 42.5 - brightBlue: 58.5 - brightMagenta: 54.5 - brightCyan: 54.1 - brightWhite: 0 diff --git a/themes/everforest-pro-light.yaml b/themes/everforest-pro-light.yaml deleted file mode 100644 index 22c99902..00000000 --- a/themes/everforest-pro-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Everforest Pro Light" -source: - marketplace_id: "AndreiLucaci.everforest-pro" - version: "2.0.0" - installs: 2489 - rating: 5 - ratings: 2 - author: "Andrei Lucaci" - repo: "https://github.com/AndreiLucaci/everforest-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" -colors: - bg: "#FDF6E3" - fg: "#5C6A72" - black: "#5C6A72" - red: "#F85552" - green: "#8DA101" - yellow: "#DFA000" - blue: "#3A94C5" - magenta: "#DF69BA" - cyan: "#35A77C" - white: "#939F91" - brightBlack: "#5C6A72" - brightRed: "#F85552" - brightGreen: "#8DA101" - brightYellow: "#DFA000" - brightBlue: "#3A94C5" - brightMagenta: "#DF69BA" - brightCyan: "#35A77C" - brightWhite: "#F4F0D9" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Everforest Pro Dark" - contrast: - fg: 72.7 - black: 72.7 - red: 53.8 - green: 49.9 - yellow: 39.6 - blue: 55.7 - magenta: 51.7 - cyan: 51.3 - white: 48.1 - brightBlack: 72.7 - brightRed: 53.8 - brightGreen: 49.9 - brightYellow: 39.6 - brightBlue: 55.7 - brightMagenta: 51.7 - brightCyan: 51.3 - brightWhite: 0 diff --git a/themes/everforest-soft.yaml b/themes/everforest-soft.yaml deleted file mode 100644 index 428d8d55..00000000 --- a/themes/everforest-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Everforest Soft" -source: - marketplace_id: "MrMartian.everforest-moist" - version: "0.0.2" - installs: 4414 - rating: 5 - ratings: 1 - author: "MrMartian" - repo: "https://github.com/CraigglesO/everforest-moist-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=MrMartian.everforest-moist" -colors: - bg: "#2C3338" - fg: "#D3C6AA" - black: "#3C3836" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#DC7B7C" - brightGreen: "#DBBC7F" - brightYellow: "#A7C080" - brightBlue: "#83A598" - brightMagenta: "#D699B6" - brightCyan: "#9DB579" - brightWhite: "#D3C6AA" -meta: - mode: "dark" - accent: "orange" - hue: 239 - pair: null - contrast: - fg: 67.1 - black: 0 - red: 20.7 - green: 38.3 - yellow: 47.9 - blue: 27 - magenta: 27.1 - cyan: 37.3 - white: 42.6 - brightBlack: 31.8 - brightRed: 40.8 - brightGreen: 62.9 - brightYellow: 58 - brightBlue: 44 - brightMagenta: 51 - brightCyan: 52.1 - brightWhite: 67.1 diff --git a/themes/evergarden-winter-light.yaml b/themes/evergarden-winter-light.yaml deleted file mode 100644 index 4958b3a9..00000000 --- a/themes/evergarden-winter-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Evergarden Winter Light" -source: - marketplace_id: "concatenateline.evergarden-winter-vscode" - version: "1.0.0" - installs: 39 - rating: 0 - ratings: 0 - author: "concatenateline" - repo: "https://github.com/ConcatenateLine/evergarden-winter-vscode-1.0.0" - url: "https://marketplace.visualstudio.com/items?itemName=concatenateline.evergarden-winter-vscode" -colors: - bg: "#F8F7F3" - fg: "#3A2F27" - black: "#5A5047" - red: "#A63355" - green: "#1F5942" - yellow: "#B88800" - blue: "#234060" - magenta: "#C75080" - cyan: "#0D6565" - white: "#C8BFB8" - brightBlack: "#8A7F77" - brightRed: "#C74A70" - brightGreen: "#3D9080" - brightYellow: "#D8A000" - brightBlue: "#4A7A9D" - brightMagenta: "#D57093" - brightCyan: "#2D9090" - brightWhite: "#D8D0C8" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 94.4 - black: 82.5 - red: 76.5 - green: 83.3 - yellow: 54.1 - blue: 89.7 - magenta: 64.2 - cyan: 78.4 - white: 28.9 - brightBlack: 61.6 - brightRed: 65.8 - brightGreen: 60.7 - brightYellow: 41.2 - brightBlue: 67 - brightMagenta: 54 - brightCyan: 60.5 - brightWhite: 19.5 diff --git a/themes/evergarden-winter.yaml b/themes/evergarden-winter.yaml deleted file mode 100644 index 8bf4fb0a..00000000 --- a/themes/evergarden-winter.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Evergarden Winter" -source: - marketplace_id: "concatenateline.evergarden-winter-vscode" - version: "1.0.0" - installs: 39 - rating: 0 - ratings: 0 - author: "concatenateline" - repo: "https://github.com/ConcatenateLine/evergarden-winter-vscode-1.0.0" - url: "https://marketplace.visualstudio.com/items?itemName=concatenateline.evergarden-winter-vscode" -colors: - bg: "#0E1012" - fg: "#E2E3E4" - black: "#3D484D" - red: "#F5A8B8" - green: "#9AE8A8" - yellow: "#E8D090" - blue: "#A0C8F0" - magenta: "#DBBC7F" - cyan: "#B8F0E0" - white: "#E5DFC8" - brightBlack: "#5A6268" - brightRed: "#F5C8D0" - brightGreen: "#B8F0C8" - brightYellow: "#F0E0A0" - brightBlue: "#D0E8F8" - brightMagenta: "#F0D5E8" - brightCyan: "#D0F8F0" - brightWhite: "#F5F0E0" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 89.3 - black: 10.2 - red: 66.6 - green: 81.6 - yellow: 78.8 - blue: 70.5 - magenta: 68.1 - cyan: 90.3 - white: 86.7 - brightBlack: 20.5 - brightRed: 79.6 - brightGreen: 89.3 - brightYellow: 87.4 - brightBlue: 90.2 - brightMagenta: 85.3 - brightCyan: 97.4 - brightWhite: 97.6 diff --git a/themes/evergarden.yaml b/themes/evergarden.yaml deleted file mode 100644 index fec8cffb..00000000 --- a/themes/evergarden.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Evergarden" -source: - marketplace_id: "icarrera.evergarden-theme" - version: "1.3.0" - installs: 759 - rating: 0 - ratings: 0 - author: "Ignacio Carrera" - repo: "https://github.com/nachokb/vscode-evergarden-theme" - url: "https://marketplace.visualstudio.com/items?itemName=icarrera.evergarden-theme" -colors: - bg: "#252B2E" - fg: "#D6CBB4" - black: "#232A2E" - red: "#F57F82" - green: "#B2D185" - yellow: "#F2C27F" - blue: "#95AEE1" - magenta: "#E680C8" - cyan: "#78D0CA" - white: "#A3B8BD" - brightBlack: "#44535A" - brightRed: "#FAA7A9" - brightGreen: "#CAE0A7" - brightYellow: "#F1D09E" - brightBlue: "#B5CCEC" - brightMagenta: "#F3C0E5" - brightCyan: "#9BE0D9" - brightWhite: "#E2E9EB" -meta: - mode: "dark" - accent: "pink" - hue: 229 - pair: null - contrast: - fg: 71.8 - black: 0 - red: 48.6 - green: 68.6 - yellow: 70.7 - blue: 54.4 - magenta: 48.8 - cyan: 65.6 - white: 58 - brightBlack: 10.6 - brightRed: 63.2 - brightGreen: 79.1 - brightYellow: 77.1 - brightBlue: 70.7 - brightMagenta: 73.7 - brightCyan: 76.3 - brightWhite: 88.9 diff --git a/themes/evernex.yaml b/themes/evernex.yaml deleted file mode 100644 index ca2b504b..00000000 --- a/themes/evernex.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "EverNex" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#0A1612" - fg: "#D4F4DD" - black: "#0A1612" - red: "#FF5566" - green: "#00FF88" - yellow: "#FFAA33" - blue: "#66AAFF" - magenta: "#DD88FF" - cyan: "#44FFDD" - white: "#D4F4DD" - brightBlack: "#4D8866" - brightRed: "#FF8899" - brightGreen: "#4DFFAA" - brightYellow: "#FFCC66" - brightBlue: "#99CCFF" - brightMagenta: "#EEBBFF" - brightCyan: "#88FFEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 171 - pair: null - contrast: - fg: 94.8 - black: 0 - red: 44 - green: 87 - yellow: 65.9 - blue: 54.3 - magenta: 55.8 - cyan: 90.5 - white: 94.8 - brightBlack: 32.3 - brightRed: 56.9 - brightGreen: 88.9 - brightYellow: 79.5 - brightBlue: 72.1 - brightMagenta: 75.5 - brightCyan: 94.2 - brightWhite: 107.2 diff --git a/themes/evex-dark.yaml b/themes/evex-dark.yaml index 38150016..4318dfdb 100644 --- a/themes/evex-dark.yaml +++ b/themes/evex-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "evex-dev.evex-theme" version: "1.1.0" installs: 237 + rating: 0 + ratings: 0 author: "Evex Developers" repo: "https://github.com/evex-dev/theme" url: "https://marketplace.visualstudio.com/items?itemName=evex-dev.evex-theme" + formats: null colors: bg: "#020102" fg: "#94A3B8" diff --git a/themes/evondev-minimal-theme.yaml b/themes/evondev-minimal-theme.yaml index 76293a9c..94f3b97c 100644 --- a/themes/evondev-minimal-theme.yaml +++ b/themes/evondev-minimal-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "evondev.evondev-minimal-theme" version: "0.0.10" installs: 7 + rating: 0 + ratings: 0 author: "evondev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=evondev.evondev-minimal-theme" + formats: null colors: bg: "#1E1F35" fg: "#F8F8F2" diff --git a/themes/evondev-tailwind-theme.yaml b/themes/evondev-tailwind-theme.yaml index aff2bc55..41b0c3b7 100644 --- a/themes/evondev-tailwind-theme.yaml +++ b/themes/evondev-tailwind-theme.yaml @@ -8,6 +8,7 @@ source: author: "evondev" repo: "https://github.com/evondev/evondev-tailwind-theme" url: "https://marketplace.visualstudio.com/items?itemName=evondev.evondev-tailwind-theme" + formats: null colors: bg: "#1B1E28" fg: "#EEFFFF" diff --git a/themes/evro-dark.yaml b/themes/evro-dark.yaml deleted file mode 100644 index 8c7327f6..00000000 --- a/themes/evro-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Evro Dark" -source: - marketplace_id: "EvroHQ.evro-dark" - version: "1.9.8" - installs: 3673 - rating: 5 - ratings: 5 - author: "EvroHQ" - repo: "https://github.com/evrohq/EvroDark" - url: "https://marketplace.visualstudio.com/items?itemName=EvroHQ.evro-dark" -colors: - bg: "#191D22" - fg: "#ABB2BF" - black: "#151720" - red: "#E06C75" - green: "#76ECB7" - yellow: "#F5B187" - blue: "#86AAEC" - magenta: "#9D88D0" - cyan: "#93CEE9" - white: "#CBCED3" - brightBlack: "#1C1E27" - brightRed: "#DD6777" - brightGreen: "#76ECB7" - brightYellow: "#DBD594" - brightBlue: "#86AAEC" - brightMagenta: "#9D88D0" - brightCyan: "#93CEE9" - brightWhite: "#A5B6CF" -meta: - mode: "dark" - accent: "red" - hue: 254 - pair: null - contrast: - fg: 58.7 - black: 0 - red: 41.4 - green: 80.3 - yellow: 67 - blue: 54.3 - magenta: 42.7 - cyan: 70.3 - white: 75.1 - brightBlack: 0 - brightRed: 39.7 - brightGreen: 80.3 - brightYellow: 78 - brightBlue: 54.3 - brightMagenta: 42.7 - brightCyan: 70.3 - brightWhite: 60.4 diff --git a/themes/evro-darker-flat.yaml b/themes/evro-darker-flat.yaml deleted file mode 100644 index 4e37194d..00000000 --- a/themes/evro-darker-flat.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Evro Darker Flat" -source: - marketplace_id: "EvroHQ.evro-dark" - version: "1.9.8" - installs: 3673 - rating: 5 - ratings: 5 - author: "EvroHQ" - repo: "https://github.com/evrohq/EvroDark" - url: "https://marketplace.visualstudio.com/items?itemName=EvroHQ.evro-dark" -colors: - bg: "#141417" - fg: "#ABB2BF" - black: "#151720" - red: "#E06C75" - green: "#76ECB7" - yellow: "#F5B187" - blue: "#86AAEC" - magenta: "#9D88D0" - cyan: "#93CEE9" - white: "#CBCED3" - brightBlack: "#1C1E27" - brightRed: "#DD6777" - brightGreen: "#76ECB7" - brightYellow: "#DBD594" - brightBlue: "#86AAEC" - brightMagenta: "#9D88D0" - brightCyan: "#93CEE9" - brightWhite: "#A5B6CF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 59.6 - black: 0 - red: 42.3 - green: 81.2 - yellow: 67.9 - blue: 55.2 - magenta: 43.6 - cyan: 71.2 - white: 76 - brightBlack: 0 - brightRed: 40.6 - brightGreen: 81.2 - brightYellow: 78.9 - brightBlue: 55.2 - brightMagenta: 43.6 - brightCyan: 71.2 - brightWhite: 61.4 diff --git a/themes/exalanddark.yaml b/themes/exalanddark.yaml index 250be986..b5930869 100644 --- a/themes/exalanddark.yaml +++ b/themes/exalanddark.yaml @@ -8,6 +8,7 @@ source: author: "Exaland" repo: "https://github.com/exaland/exaland-darktheme" url: "https://marketplace.visualstudio.com/items?itemName=Exaland.exaland-darktheme" + formats: null colors: bg: "#030C1B" fg: "#D7DDE8" diff --git a/themes/execlabs.yaml b/themes/execlabs.yaml index 676b088e..1c27f3d0 100644 --- a/themes/execlabs.yaml +++ b/themes/execlabs.yaml @@ -2,12 +2,13 @@ name: "ExecLabs" source: marketplace_id: "ExecLabs.execlabs" version: "0.0.3" - installs: 1511 + installs: 1515 rating: 5 ratings: 2 author: "ExecLabs" repo: "https://github.com/mkuchak/execlabs-theme" url: "https://marketplace.visualstudio.com/items?itemName=ExecLabs.execlabs" + formats: null colors: bg: "#000213" fg: "#858494" diff --git a/themes/executive-level.yaml b/themes/executive-level.yaml deleted file mode 100644 index 701ca82e..00000000 --- a/themes/executive-level.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Executive-Level" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#1C2433" - fg: "#E4E8EF" - black: "#1C2433" - red: "#F14444" - green: "#29C3A0" - yellow: "#D29922" - blue: "#0265FD" - magenta: "#0265FD" - cyan: "#29C3A0" - white: "#E4E8EF" - brightBlack: "#1C2433" - brightRed: "#F14444" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#0265FD" - brightMagenta: "#0265FD" - brightCyan: "#29C3A0" - brightWhite: "#E4E8EF" -meta: - mode: "dark" - accent: "purple" - hue: 263 - pair: null - contrast: - fg: 90 - black: 0 - red: 35.6 - green: 55.9 - yellow: 50 - blue: 26.1 - magenta: 26.1 - cyan: 55.9 - white: 90 - brightBlack: 0 - brightRed: 35.6 - brightGreen: 55.9 - brightYellow: 50 - brightBlue: 26.1 - brightMagenta: 26.1 - brightCyan: 55.9 - brightWhite: 90 diff --git a/themes/exias-theme-forest.yaml b/themes/exias-theme-forest.yaml index 9fb88db4..7567049f 100644 --- a/themes/exias-theme-forest.yaml +++ b/themes/exias-theme-forest.yaml @@ -8,6 +8,7 @@ source: author: "AldiiX" repo: "https://github.com/AldiiX/Exias-Theme" url: "https://marketplace.visualstudio.com/items?itemName=AldiiX.exias-theme" + formats: null colors: bg: "#13161B" fg: "#9FADC2" diff --git a/themes/exias-theme-town.yaml b/themes/exias-theme-town.yaml index 9741ee42..88cdc1df 100644 --- a/themes/exias-theme-town.yaml +++ b/themes/exias-theme-town.yaml @@ -8,6 +8,7 @@ source: author: "AldiiX" repo: "https://github.com/AldiiX/Exias-Theme" url: "https://marketplace.visualstudio.com/items?itemName=AldiiX.exias-theme" + formats: null colors: bg: "#13161B" fg: "#D1D1D1" diff --git a/themes/exile.yaml b/themes/exile.yaml index 6dc95cbe..586ceb96 100644 --- a/themes/exile.yaml +++ b/themes/exile.yaml @@ -8,6 +8,7 @@ source: author: "johnull" repo: null url: "https://marketplace.visualstudio.com/items?itemName=johnull.exilebeans" + formats: null colors: bg: "#000000" fg: "#CECECE" diff --git a/themes/exovoid-purple-better-c.yaml b/themes/exovoid-purple-better-c.yaml deleted file mode 100644 index ef3537a7..00000000 --- a/themes/exovoid-purple-better-c.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "EXOVOID Purple Better C++" -source: - marketplace_id: "GinoPioLoco.exovoid" - version: "1.3.0" - installs: 50 - author: "Gino Pio Loco" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=GinoPioLoco.exovoid" -colors: - bg: "#080707" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.8 - black: 0 - red: 27.7 - green: 53.9 - yellow: 86.6 - blue: 28.4 - magenta: 30.7 - cyan: 48.5 - white: 91 - brightBlack: 23 - brightRed: 39.5 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 40.9 - brightMagenta: 46.3 - brightCyan: 56.3 - brightWhite: 91 diff --git a/themes/exploit.yaml b/themes/exploit.yaml index 5b2d992b..bab5f5c4 100644 --- a/themes/exploit.yaml +++ b/themes/exploit.yaml @@ -1,4 +1,4 @@ -name: "exploit" +name: "exploit - エクスプロイト" source: marketplace_id: "sevnth.exploit" version: "1.0.1" @@ -8,6 +8,7 @@ source: author: "sevnth" repo: "https://github.com/sevnth/exploit-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sevnth.exploit" + formats: null colors: bg: "#171717" fg: "#FFFFFF" diff --git a/themes/extreme-dark-theme.yaml b/themes/extreme-dark-theme.yaml deleted file mode 100644 index e2e51403..00000000 --- a/themes/extreme-dark-theme.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Extreme Dark Theme" -source: - marketplace_id: "97a3a878637c6a75bd87a20a0d1a1d21.extreme-theme" - version: "0.0.1" - installs: 262 - author: "Extreme" - repo: "https://github.com/MARomagna/Extreme-theme" - url: "https://marketplace.visualstudio.com/items?itemName=97a3a878637c6a75bd87a20a0d1a1d21.extreme-theme" -colors: - bg: "#000000" - fg: "#00FF87" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 87.7 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/eye-care-dark.yaml b/themes/eye-care-dark.yaml index 6261929f..3edfdbfb 100644 --- a/themes/eye-care-dark.yaml +++ b/themes/eye-care-dark.yaml @@ -8,6 +8,7 @@ source: author: "lynnjinjie" repo: "https://github.com/lynnjinjie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lynnjinjie.vscode-happy-theme" + formats: null colors: bg: "#232323" fg: "#C8C8C8" diff --git a/themes/eye-care-light.yaml b/themes/eye-care-light.yaml index 6f032432..301cbda3 100644 --- a/themes/eye-care-light.yaml +++ b/themes/eye-care-light.yaml @@ -8,6 +8,7 @@ source: author: "lynnjinjie" repo: "https://github.com/lynnjinjie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lynnjinjie.vscode-happy-theme" + formats: null colors: bg: "#FDFCF8" fg: "#3A3A3A" diff --git a/themes/eye-care-owl-light.yaml b/themes/eye-care-owl-light.yaml deleted file mode 100644 index 4eec7fcc..00000000 --- a/themes/eye-care-owl-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Eye Care Owl Light" -source: - marketplace_id: "lzwme.lzwme-eye-care" - version: "1.0.2" - installs: 11168 - rating: 3.67 - ratings: 3 - author: "lzwme" - repo: "https://github.com/lzwme/eye-care-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lzwme.lzwme-eye-care" -colors: - bg: "#FBFBFB" - fg: "#403F53" - black: "#403F53" - red: "#DE3D3B" - green: "#08916A" - yellow: "#E0AF02" - blue: "#288ED7" - magenta: "#D6438A" - cyan: "#2AA298" - white: "#F0F0F0" - brightBlack: "#403F53" - brightRed: "#DE3D3B" - brightGreen: "#08916A" - brightYellow: "#DAAA01" - brightBlue: "#288ED7" - brightMagenta: "#D6438A" - brightCyan: "#2AA298" - brightWhite: "#F0F0F0" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 91.3 - black: 91.3 - red: 66.3 - green: 64.2 - yellow: 37 - blue: 60.1 - magenta: 65.3 - cyan: 55.5 - white: 0 - brightBlack: 91.3 - brightRed: 66.3 - brightGreen: 64.2 - brightYellow: 39.7 - brightBlue: 60.1 - brightMagenta: 65.3 - brightCyan: 55.5 - brightWhite: 0 diff --git a/themes/eye-care-owl.yaml b/themes/eye-care-owl.yaml deleted file mode 100644 index 87fab6e1..00000000 --- a/themes/eye-care-owl.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "eye-care-owl" -source: - marketplace_id: "lzwme.lzwme-eye-care" - version: "1.0.2" - installs: 11168 - rating: 3.67 - ratings: 3 - author: "lzwme" - repo: "https://github.com/lzwme/eye-care-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lzwme.lzwme-eye-care" -colors: - bg: "#011627" - fg: "#D6DEEB" - black: "#011627" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ADDB67" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 244 - pair: null - contrast: - fg: 85.3 - black: 0 - red: 39.4 - green: 67.3 - yellow: 75 - blue: 56 - magenta: 53.8 - cyan: 59.8 - white: 107 - brightBlack: 15.7 - brightRed: 39.4 - brightGreen: 67.3 - brightYellow: 93.8 - brightBlue: 56 - brightMagenta: 53.8 - brightCyan: 74.1 - brightWhite: 107 diff --git a/themes/eye-care.yaml b/themes/eye-care.yaml deleted file mode 100644 index 606e79b3..00000000 --- a/themes/eye-care.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "eye-care" -source: - marketplace_id: "NazmusSayad.one-eye-care" - version: "1.0.0" - installs: 648 - rating: 5 - ratings: 1 - author: "Nazmus Sayad" - repo: "git+github.com:nazmussayad/vscode-theme.onnokicu--" - url: "https://marketplace.visualstudio.com/items?itemName=NazmusSayad.one-eye-care" -colors: - bg: "#21252C" - fg: "#ABB2BF" - black: "#4A4F5A" - red: "#EE5D69" - green: "#97C775" - yellow: "#B68353" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#CCCCCC" - brightBlack: "#616A7B" - brightRed: "#FE808A" - brightGreen: "#C2DEAD" - brightYellow: "#D1A47A" - brightBlue: "#93CFFF" - brightMagenta: "#E0A8F1" - brightCyan: "#82D2DC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 262 - pair: null - contrast: - fg: 57.5 - black: 10.9 - red: 39.5 - green: 62 - yellow: 38.6 - blue: 52.8 - magenta: 43.3 - cyan: 52.7 - white: 72.8 - brightBlack: 21.7 - brightRed: 51.9 - brightGreen: 78.4 - brightYellow: 54.8 - brightBlue: 70.8 - brightMagenta: 63.5 - brightCyan: 69 - brightWhite: 105 diff --git a/themes/eye-comfort-light.yaml b/themes/eye-comfort-light.yaml deleted file mode 100644 index a670487f..00000000 --- a/themes/eye-comfort-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Eye Comfort Light" -source: - marketplace_id: "SaikatDas.eye-comfort-themes" - version: "1.0.1" - installs: 1298 - rating: 0 - ratings: 0 - author: "Saikat Das" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=SaikatDas.eye-comfort-themes" -colors: - bg: "#FAF8F5" - fg: "#4C4F69" - black: "#5C5F77" - red: "#D20515" - green: "#40A02B" - yellow: "#DF8E1D" - blue: "#1E66F5" - magenta: "#EA76CB" - cyan: "#04A5E5" - white: "#BCC0CC" - brightBlack: "#6C6F85" - brightRed: "#D20515" - brightGreen: "#40A02B" - brightYellow: "#DF8E1D" - brightBlue: "#1E66F5" - brightMagenta: "#EA76CB" - brightCyan: "#04A5E5" - brightWhite: "#ACB0BE" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 83.6 - black: 77.1 - red: 71 - green: 56.4 - yellow: 46.6 - blue: 69.2 - magenta: 46.9 - cyan: 49.1 - white: 29.9 - brightBlack: 70.2 - brightRed: 71 - brightGreen: 56.4 - brightYellow: 46.6 - brightBlue: 69.2 - brightMagenta: 46.9 - brightCyan: 49.1 - brightWhite: 38.5 diff --git a/themes/eyebreaker.yaml b/themes/eyebreaker.yaml index b0744020..e522889c 100644 --- a/themes/eyebreaker.yaml +++ b/themes/eyebreaker.yaml @@ -6,6 +6,7 @@ source: author: "Berpcor" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Berpcor.eyebreakertheme" + formats: null colors: bg: "#130C43" fg: "#31B2D1" diff --git a/themes/eyecooler.yaml b/themes/eyecooler.yaml index 59426796..9965e3c9 100644 --- a/themes/eyecooler.yaml +++ b/themes/eyecooler.yaml @@ -8,6 +8,7 @@ source: author: "TheDevTecHub" repo: "https://github.com/devendew/eyecooler" url: "https://marketplace.visualstudio.com/items?itemName=thedevtechub.eyecooler" + formats: null colors: bg: "#000000" fg: "#EEFFFF" diff --git a/themes/eyeguard.yaml b/themes/eyeguard.yaml index df7d61f8..5750a309 100644 --- a/themes/eyeguard.yaml +++ b/themes/eyeguard.yaml @@ -8,6 +8,7 @@ source: author: "Imam Hossain Roni" repo: "https://github.com/ImamHossainRoni/eye-guard" url: "https://marketplace.visualstudio.com/items?itemName=ImamHossainRoni.EyeGuard" + formats: null colors: bg: "#1E1E1E" fg: "#A9B7C6" diff --git a/themes/eyehealth-dark.yaml b/themes/eyehealth-dark.yaml index 820bd2a5..73922e45 100644 --- a/themes/eyehealth-dark.yaml +++ b/themes/eyehealth-dark.yaml @@ -8,6 +8,7 @@ source: author: "Jonathan Hildenbrand" repo: "https://github.com/jonathanhild/eyehealth" url: "https://marketplace.visualstudio.com/items?itemName=jonathanhild.eyehealth" + formats: null colors: bg: "#424242" fg: "#FFFFFF" diff --git a/themes/eyehealth-plus-light.yaml b/themes/eyehealth-plus-light.yaml index d1e13570..c00934e1 100644 --- a/themes/eyehealth-plus-light.yaml +++ b/themes/eyehealth-plus-light.yaml @@ -8,6 +8,7 @@ source: author: "Jonathan Hildenbrand" repo: "https://github.com/jonathanhild/eyehealth" url: "https://marketplace.visualstudio.com/items?itemName=jonathanhild.eyehealth" + formats: null colors: bg: "#FFFAE8" fg: "#8D634A" diff --git a/themes/eyera.yaml b/themes/eyera.yaml index 817e8560..c47afd5e 100644 --- a/themes/eyera.yaml +++ b/themes/eyera.yaml @@ -8,6 +8,7 @@ source: author: "Eyera" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Eyera.eyera" + formats: null colors: bg: "#282C34" fg: "#EEFFFF" diff --git a/themes/eyesore.yaml b/themes/eyesore.yaml index 862e15d7..63438160 100644 --- a/themes/eyesore.yaml +++ b/themes/eyesore.yaml @@ -8,6 +8,7 @@ source: author: "Joonas Kivikunnas" repo: "https://github.com/joonaskoo/eyesore" url: "https://marketplace.visualstudio.com/items?itemName=joonaskivikunnas.eyesore" + formats: null colors: bg: "#F4F4F4" fg: "#4F4F4F" diff --git a/themes/ezcord-highcontrast.yaml b/themes/ezcord-highcontrast.yaml index 6c31e836..e0288a39 100644 --- a/themes/ezcord-highcontrast.yaml +++ b/themes/ezcord-highcontrast.yaml @@ -8,6 +8,7 @@ source: author: "zkawiy" repo: "https://github.com/Nico4devv/ezcord-theme" url: "https://marketplace.visualstudio.com/items?itemName=zkawiy.ezcord-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/ezcord-light.yaml b/themes/ezcord-light.yaml index 950e0688..7b4b688e 100644 --- a/themes/ezcord-light.yaml +++ b/themes/ezcord-light.yaml @@ -8,6 +8,7 @@ source: author: "zkawiy" repo: "https://github.com/Nico4devv/ezcord-theme" url: "https://marketplace.visualstudio.com/items?itemName=zkawiy.ezcord-theme" + formats: null colors: bg: "#FFFFFF" fg: "#2B2D31" diff --git a/themes/ezcord-pastel.yaml b/themes/ezcord-pastel.yaml index 5a4601a8..5f3319a9 100644 --- a/themes/ezcord-pastel.yaml +++ b/themes/ezcord-pastel.yaml @@ -8,6 +8,7 @@ source: author: "zkawiy" repo: "https://github.com/Nico4devv/ezcord-theme" url: "https://marketplace.visualstudio.com/items?itemName=zkawiy.ezcord-theme" + formats: null colors: bg: "#1A1625" fg: "#E8D5E8" diff --git a/themes/ezcord.yaml b/themes/ezcord.yaml index d9b8daad..a9a01d91 100644 --- a/themes/ezcord.yaml +++ b/themes/ezcord.yaml @@ -8,6 +8,7 @@ source: author: "zkawiy" repo: "https://github.com/Nico4devv/ezcord-theme" url: "https://marketplace.visualstudio.com/items?itemName=zkawiy.ezcord-theme" + formats: null colors: bg: "#0D0E10" fg: "#E3E5E8" diff --git a/themes/ezgiturali-halloween.yaml b/themes/ezgiturali-halloween.yaml index 057b1ea9..8e25573f 100644 --- a/themes/ezgiturali-halloween.yaml +++ b/themes/ezgiturali-halloween.yaml @@ -8,6 +8,7 @@ source: author: "ezgiturali" repo: "https://github.com/ezgiturali/vscode-halloween-theme" url: "https://marketplace.visualstudio.com/items?itemName=ezgiturali.ezgiturali-halloween" + formats: null colors: bg: "#242423" fg: "#A7B5E0" diff --git a/themes/ezra.yaml b/themes/ezra.yaml index cb0cb538..16034dc1 100644 --- a/themes/ezra.yaml +++ b/themes/ezra.yaml @@ -1,4 +1,4 @@ -name: "Ezra" +name: "ezra" source: marketplace_id: "AleksandarCugurovic.ezra" version: "1.0.0" @@ -8,6 +8,7 @@ source: author: "Aleksandar Cugurovic" repo: "https://github.com/choogoor/ezra" url: "https://marketplace.visualstudio.com/items?itemName=AleksandarCugurovic.ezra" + formats: null colors: bg: "#161E1F" fg: "#B6B6C1" diff --git a/themes/fabi.yaml b/themes/fabi.yaml deleted file mode 100644 index db5be95f..00000000 --- a/themes/fabi.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Fabi" -source: - marketplace_id: "Fabius.fa" - version: "0.0.3" - installs: 195 - rating: 1 - ratings: 1 - author: "Fabius" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Fabius.fa" -colors: - bg: "#2D3436" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 217 - pair: null - contrast: - fg: 102.1 - black: 0 - red: 21.9 - green: 48.2 - yellow: 80.8 - blue: 22.6 - magenta: 25 - cyan: 42.8 - white: 85.2 - brightBlack: 17.2 - brightRed: 33.8 - brightGreen: 58.7 - brightYellow: 90.8 - brightBlue: 35.2 - brightMagenta: 40.6 - brightCyan: 50.6 - brightWhite: 85.2 diff --git a/themes/fabulapps-theme.yaml b/themes/fabulapps-theme.yaml index 38ab379d..4453e460 100644 --- a/themes/fabulapps-theme.yaml +++ b/themes/fabulapps-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "GustavoJordan.fabulapps-theme" version: "0.0.1" installs: 41 + rating: 0 + ratings: 0 author: "Gustavo Jordan" repo: "https://github.com/gjordanra/fabulapps-visualstudio-theme" url: "https://marketplace.visualstudio.com/items?itemName=GustavoJordan.fabulapps-theme" + formats: null colors: bg: "#01090D" fg: "#47D1FF" diff --git a/themes/fabulous-las-vegas-after-dark.yaml b/themes/fabulous-las-vegas-after-dark.yaml index fda68e83..4152424d 100644 --- a/themes/fabulous-las-vegas-after-dark.yaml +++ b/themes/fabulous-las-vegas-after-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "alpharomercoma.fabulous-las-vegas" version: "0.1.9" installs: 16 + rating: 0 + ratings: 0 author: "Alpha Romer Coma" repo: "https://github.com/alpharomercoma/fabulous-las-vegas-extension" url: "https://marketplace.visualstudio.com/items?itemName=alpharomercoma.fabulous-las-vegas" + formats: null colors: bg: "#1E1B24" fg: "#E8DDD0" diff --git a/themes/fabulous-las-vegas-high-noon.yaml b/themes/fabulous-las-vegas-high-noon.yaml index 0bdc1bd1..57c96468 100644 --- a/themes/fabulous-las-vegas-high-noon.yaml +++ b/themes/fabulous-las-vegas-high-noon.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "alpharomercoma.fabulous-las-vegas" version: "0.1.9" installs: 16 + rating: 0 + ratings: 0 author: "Alpha Romer Coma" repo: "https://github.com/alpharomercoma/fabulous-las-vegas-extension" url: "https://marketplace.visualstudio.com/items?itemName=alpharomercoma.fabulous-las-vegas" + formats: null colors: bg: "#FFFBF5" fg: "#352A1D" diff --git a/themes/fady-ehab-amer-dark-theme.yaml b/themes/fady-ehab-amer-dark-theme.yaml deleted file mode 100644 index dac208a6..00000000 --- a/themes/fady-ehab-amer-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "FADY EHAB AMER DARK THEME" -source: - marketplace_id: "FADYEHABAMER.FADYEHABAMER" - version: "1.1.2" - installs: 207 - rating: 5 - ratings: 1 - author: "FADY EHAB AMER" - repo: "https://github.com/fadyehabamer/VSCode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=FADYEHABAMER.FADYEHABAMER" -colors: - bg: "#141619" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2162A9" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.7 - blue: 20.4 - magenta: 29.9 - cyan: 47.7 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.7 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.5 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/fae.yaml b/themes/fae.yaml deleted file mode 100644 index 53313c63..00000000 --- a/themes/fae.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Fae" -source: - marketplace_id: "suddenlyeva.fae-color-theme" - version: "0.0.3" - installs: 201 - rating: 0 - ratings: 0 - author: "suddenlyeva" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=suddenlyeva.fae-color-theme" -colors: - bg: "#212121" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.2 - black: 0 - red: 25.4 - green: 51.7 - yellow: 84.4 - blue: 26.2 - magenta: 28.5 - cyan: 46.3 - white: 88.8 - brightBlack: 20.8 - brightRed: 37.3 - brightGreen: 62.3 - brightYellow: 94.4 - brightBlue: 38.7 - brightMagenta: 44.1 - brightCyan: 54.1 - brightWhite: 88.8 diff --git a/themes/faerie-online.yaml b/themes/faerie-online.yaml index 56c8b063..6741eeab 100644 --- a/themes/faerie-online.yaml +++ b/themes/faerie-online.yaml @@ -1,4 +1,4 @@ -name: "Faerie.Online" +name: "faerie-online" source: marketplace_id: "FaerieOnline.faerie-online" version: "1.0.0" @@ -8,6 +8,7 @@ source: author: "Faerie.Online" repo: "https://github.com/lunatisenpai/faerie-online" url: "https://marketplace.visualstudio.com/items?itemName=FaerieOnline.faerie-online" + formats: null colors: bg: "#170934" fg: "#C7F0F6" diff --git a/themes/fakedonald-s.yaml b/themes/fakedonald-s.yaml index cc91d362..82592867 100644 --- a/themes/fakedonald-s.yaml +++ b/themes/fakedonald-s.yaml @@ -2,12 +2,13 @@ name: "FakeDonald's" source: marketplace_id: "SamuelePignone.fakedonalds" version: "0.0.1" - installs: 11836 + installs: 11838 rating: 5 ratings: 5 author: "Samuele Pignone" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SamuelePignone.fakedonalds" + formats: null colors: bg: "#C31C2B" fg: "#FDAF17" diff --git a/themes/falcon.yaml b/themes/falcon.yaml index d034ca74..d864f4b6 100644 --- a/themes/falcon.yaml +++ b/themes/falcon.yaml @@ -2,12 +2,13 @@ name: "Falcon" source: marketplace_id: "robfalken.falcon" version: "0.0.12" - installs: 537 + installs: 539 rating: 0 ratings: 0 author: "Rob Falken" repo: null url: "https://marketplace.visualstudio.com/items?itemName=robfalken.falcon" + formats: null colors: bg: "#343142" fg: "#8B9DFF" diff --git a/themes/falconui-theme.yaml b/themes/falconui-theme.yaml index 61d1a951..f0d179e1 100644 --- a/themes/falconui-theme.yaml +++ b/themes/falconui-theme.yaml @@ -6,6 +6,7 @@ source: author: "ferdipret" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ferdipret.falcon-ui-theme" + formats: null colors: bg: "#101218" fg: "#FFFFFF" diff --git a/themes/famous-dev-light.yaml b/themes/famous-dev-light.yaml index 859c22d6..a6a03ae4 100644 --- a/themes/famous-dev-light.yaml +++ b/themes/famous-dev-light.yaml @@ -8,6 +8,7 @@ source: author: "Gaus Al Munir Tushar" repo: "https://github.com/GausAlMunirTushar/famous-dev-theme" url: "https://marketplace.visualstudio.com/items?itemName=GausAlMunirTushar.famous-dev-theme" + formats: null colors: bg: "#FFFFFF" fg: "#2D323C" diff --git a/themes/famous-dev-midnight.yaml b/themes/famous-dev-midnight.yaml index 6eca1ecf..84aa4e3f 100644 --- a/themes/famous-dev-midnight.yaml +++ b/themes/famous-dev-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Gaus Al Munir Tushar" repo: "https://github.com/GausAlMunirTushar/famous-dev-theme" url: "https://marketplace.visualstudio.com/items?itemName=GausAlMunirTushar.famous-dev-theme" + formats: null colors: bg: "#0F0F17" fg: "#C0C5CE" diff --git a/themes/fanuc-karel.yaml b/themes/fanuc-karel.yaml index b0f87f05..44b898a1 100644 --- a/themes/fanuc-karel.yaml +++ b/themes/fanuc-karel.yaml @@ -2,12 +2,13 @@ name: "Fanuc Karel" source: marketplace_id: "HunterTruba1022.fanuc-karel" version: "1.0.0" - installs: 1108 + installs: 1112 rating: 5 ratings: 2 author: "HunterTruba1022" repo: "https://github.com/HunterTruba/Fanuc-Karel" url: "https://marketplace.visualstudio.com/items?itemName=HunterTruba1022.fanuc-karel" + formats: null colors: bg: "#1A1D1E" fg: "#EBDBB2" diff --git a/themes/fcc0ff.yaml b/themes/fcc0ff.yaml index 3cf99d5d..835589ac 100644 --- a/themes/fcc0ff.yaml +++ b/themes/fcc0ff.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "vzze.fcc0ff" version: "1.7.9" installs: 228 + rating: 0 + ratings: 0 author: "vzze" repo: "https://github.com/vzze/fcc0ff-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=vzze.fcc0ff" + formats: null colors: bg: "#1F1C21" fg: "#B6B6B6" diff --git a/themes/fcode.yaml b/themes/fcode.yaml index b96ed227..bce8dab6 100644 --- a/themes/fcode.yaml +++ b/themes/fcode.yaml @@ -8,6 +8,7 @@ source: author: "flanggut" repo: "https://github.com/flanggut/fcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=flanggut.fcode-theme" + formats: null colors: bg: "#292A2F" fg: "#D9D9D9" diff --git a/themes/fearless-dark.yaml b/themes/fearless-dark.yaml index 0134188d..040185e6 100644 --- a/themes/fearless-dark.yaml +++ b/themes/fearless-dark.yaml @@ -8,6 +8,7 @@ source: author: "kevinhaube" repo: "https://github.com/kevinhaube/fearless-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=kevinhaube.fearless-color-theme" + formats: null colors: bg: "#242229" fg: "#D4D4D4" diff --git a/themes/feefoolec-2-0.yaml b/themes/feefoolec-2-0.yaml index 1129e784..5f9896b6 100644 --- a/themes/feefoolec-2-0.yaml +++ b/themes/feefoolec-2-0.yaml @@ -8,6 +8,7 @@ source: author: "Feefoolec" repo: "https://github.com/FilipKajetaniak/feefoolec-theme-2.0" url: "https://marketplace.visualstudio.com/items?itemName=Feefoolec.feefoolec-2-vscode-theme" + formats: null colors: bg: "#2E2E2E" fg: "#D4D4D4" diff --git a/themes/feels-like-progress-light.yaml b/themes/feels-like-progress-light.yaml index 19010cb4..e7ac97a1 100644 --- a/themes/feels-like-progress-light.yaml +++ b/themes/feels-like-progress-light.yaml @@ -8,6 +8,7 @@ source: author: "Philipp Comans" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PhilippComans.feels-like-progress" + formats: null colors: bg: "#FFFFFF" fg: "#133928" diff --git a/themes/felina.yaml b/themes/felina.yaml index 10d450bf..90bf7e71 100644 --- a/themes/felina.yaml +++ b/themes/felina.yaml @@ -8,6 +8,7 @@ source: author: "veoper" repo: "https://github.com/veoper/felina-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=veoper.felina" + formats: null colors: bg: "#1B1B1B" fg: "#E0E0E0" diff --git a/themes/feline-color-theme.yaml b/themes/feline-color-theme.yaml index b35dce80..58ba3452 100644 --- a/themes/feline-color-theme.yaml +++ b/themes/feline-color-theme.yaml @@ -1,4 +1,4 @@ -name: "Feline-color-theme" +name: "feline-color-theme" source: marketplace_id: "feline-color-theme.feline-color-theme" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Feline Color Theme" repo: "https://github.com/thailanelopes/Meu_tema_VsCode" url: "https://marketplace.visualstudio.com/items?itemName=feline-color-theme.feline-color-theme" + formats: null colors: bg: "#000000" fg: "#D4D4D4" diff --git a/themes/feline-theme.yaml b/themes/feline-theme.yaml index 1c7abf9e..dfef2640 100644 --- a/themes/feline-theme.yaml +++ b/themes/feline-theme.yaml @@ -1,4 +1,4 @@ -name: "Feline-theme" +name: "feline-theme" source: marketplace_id: "feline-theme.feline-theme" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Feline Theme" repo: "https://github.com/thailanelopes/Meu_tema_VsCode" url: "https://marketplace.visualstudio.com/items?itemName=feline-theme.feline-theme" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/felixo-green-contrast.yaml b/themes/felixo-green-contrast.yaml index 59833fe4..8230e3c8 100644 --- a/themes/felixo-green-contrast.yaml +++ b/themes/felixo-green-contrast.yaml @@ -8,6 +8,7 @@ source: author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" + formats: null colors: bg: "#110F0E" fg: "#F8F8F2" diff --git a/themes/felixo-green-light.yaml b/themes/felixo-green-light.yaml index da0ce42c..22ec51a7 100644 --- a/themes/felixo-green-light.yaml +++ b/themes/felixo-green-light.yaml @@ -8,6 +8,7 @@ source: author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" + formats: null colors: bg: "#FFFFFF" fg: "#36312C" diff --git a/themes/felixo-green.yaml b/themes/felixo-green.yaml index d883ae46..7822c67e 100644 --- a/themes/felixo-green.yaml +++ b/themes/felixo-green.yaml @@ -8,6 +8,7 @@ source: author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" + formats: null colors: bg: "#36312C" fg: "#F8F8F2" diff --git a/themes/felixo-orange-contrast.yaml b/themes/felixo-orange-contrast.yaml index 84d44b23..f66395b6 100644 --- a/themes/felixo-orange-contrast.yaml +++ b/themes/felixo-orange-contrast.yaml @@ -8,6 +8,7 @@ source: author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" + formats: null colors: bg: "#110F0E" fg: "#F8F8F2" diff --git a/themes/felixo-orange-light.yaml b/themes/felixo-orange-light.yaml index f7773484..5799dcd9 100644 --- a/themes/felixo-orange-light.yaml +++ b/themes/felixo-orange-light.yaml @@ -8,6 +8,7 @@ source: author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" + formats: null colors: bg: "#FFFFFF" fg: "#36312C" diff --git a/themes/felixo-orange.yaml b/themes/felixo-orange.yaml index de113f61..6b1ad081 100644 --- a/themes/felixo-orange.yaml +++ b/themes/felixo-orange.yaml @@ -8,6 +8,7 @@ source: author: "waroi" repo: "https://github.com/waroi/felixoTheme" url: "https://marketplace.visualstudio.com/items?itemName=waroi.felixo" + formats: null colors: bg: "#36312C" fg: "#F8F8F2" diff --git a/themes/felixoux-theme.yaml b/themes/felixoux-theme.yaml index e4777f63..2524a6f8 100644 --- a/themes/felixoux-theme.yaml +++ b/themes/felixoux-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Felixouxtheme.felixoux-theme" version: "0.2.0" installs: 125 + rating: 0 + ratings: 0 author: "felixoux_theme" repo: "https://github.com/Felixoux/Felixoux" url: "https://marketplace.visualstudio.com/items?itemName=Felixouxtheme.felixoux-theme" + formats: null colors: bg: "#171933" fg: "#D4DCFF" diff --git a/themes/feliz-dark.yaml b/themes/feliz-dark.yaml index ae5bdc07..dd475d1e 100644 --- a/themes/feliz-dark.yaml +++ b/themes/feliz-dark.yaml @@ -8,6 +8,7 @@ source: author: "Feliz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Feliz.feliz-dark" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/ferra.yaml b/themes/ferra.yaml index 6d3c5946..604cf88c 100644 --- a/themes/ferra.yaml +++ b/themes/ferra.yaml @@ -8,6 +8,7 @@ source: author: "redoc" repo: "https://github.com/neptotech/redocs-ferra-theme" url: "https://marketplace.visualstudio.com/items?itemName=neptotech.redocs-ferra-theme" + formats: null colors: bg: "#2B292D" fg: "#FECDB2" diff --git a/themes/feta.yaml b/themes/feta.yaml index ff7b7270..1dd4f97d 100644 --- a/themes/feta.yaml +++ b/themes/feta.yaml @@ -8,6 +8,7 @@ source: author: "hasparus" repo: "https://github.com/hasparus/feta" url: "https://marketplace.visualstudio.com/items?itemName=hasparus.feta" + formats: null colors: bg: "#FFFFFF" fg: "#111122" diff --git a/themes/fictionaltheme.yaml b/themes/fictionaltheme.yaml index 7c8ae0e1..672012ec 100644 --- a/themes/fictionaltheme.yaml +++ b/themes/fictionaltheme.yaml @@ -6,6 +6,7 @@ source: author: "alex-savin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=alex-savin.fictional-theme" + formats: null colors: bg: "#21292C" fg: "#FFFFFF" diff --git a/themes/fiestas.yaml b/themes/fiestas.yaml index 13d85179..440ae161 100644 --- a/themes/fiestas.yaml +++ b/themes/fiestas.yaml @@ -1,4 +1,4 @@ -name: "Fiestas" +name: "fiestas" source: marketplace_id: "AdrielZarate.fiestas-vscode" version: "0.2.0" @@ -8,6 +8,7 @@ source: author: "Adriel Zarate" repo: "https://github.com/adrielzarate/fiestas-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=AdrielZarate.fiestas-vscode" + formats: null colors: bg: "#141D15" fg: "#FFFFFF" diff --git a/themes/fifties.yaml b/themes/fifties.yaml index a8cf3e2d..3a93a6aa 100644 --- a/themes/fifties.yaml +++ b/themes/fifties.yaml @@ -1,4 +1,4 @@ -name: "fifties" +name: "Fifties" source: marketplace_id: "fifties.fifties" version: "0.0.5" @@ -8,6 +8,7 @@ source: author: "fifties" repo: "https://github.com/unmade/fifties" url: "https://marketplace.visualstudio.com/items?itemName=fifties.fifties" + formats: null colors: bg: "#2B2926" fg: "#C9C3B1" diff --git a/themes/fifty-shades-of-grape.yaml b/themes/fifty-shades-of-grape.yaml index 29f73153..091f8b81 100644 --- a/themes/fifty-shades-of-grape.yaml +++ b/themes/fifty-shades-of-grape.yaml @@ -2,12 +2,13 @@ name: "Fifty Shades of Grape" source: marketplace_id: "ChenYefet.fifty-shades-of-grape" version: "0.56.0" - installs: 1235 + installs: 1237 rating: 0 ratings: 0 author: "Chen Yefet" repo: "https://github.com/ChenYefet/fifty-shades-of-grape" url: "https://marketplace.visualstudio.com/items?itemName=ChenYefet.fifty-shades-of-grape" + formats: null colors: bg: "#0C0020" fg: "#DBD4FA" diff --git a/themes/fig.yaml b/themes/fig.yaml deleted file mode 100644 index bac48141..00000000 --- a/themes/fig.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Fig" -source: - marketplace_id: "FigTheme.fig-theme" - version: "0.0.7" - installs: 142 - author: "Fig Theme" - repo: "https://github.com/khevin/fig-theme" - url: "https://marketplace.visualstudio.com/items?itemName=FigTheme.fig-theme" -colors: - bg: "#181818" - fg: "#E4E4E4" - black: "#242424" - red: "#FC6B83" - green: "#3FA266" - yellow: "#D2943E" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E4E4E4" - brightBlack: "#E4E4E4" - brightRed: "#FC6B83" - brightGreen: "#70B489" - brightYellow: "#F1B467" - brightBlue: "#87A6C4" - brightMagenta: "#B48EAD" - brightCyan: "#88C0D0" - brightWhite: "#E4E4E4" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 89.3 - black: 0 - red: 47.9 - green: 41.8 - yellow: 50.1 - blue: 48.5 - magenta: 46.4 - cyan: 62.6 - white: 89.3 - brightBlack: 89.3 - brightRed: 47.9 - brightGreen: 52.8 - brightYellow: 67.3 - brightBlue: 51.2 - brightMagenta: 46.4 - brightCyan: 62.6 - brightWhite: 89.3 diff --git a/themes/filter-turbo-color-theme.yaml b/themes/filter-turbo-color-theme.yaml deleted file mode 100644 index 7cfcdc8b..00000000 --- a/themes/filter-turbo-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "filter-turbo-color-theme" -source: - marketplace_id: "Rezky.r-dark-pro" - version: "0.0.44" - installs: 3273 - rating: 5 - ratings: 1 - author: "Rezky P. Budihartono" - repo: "https://github.com/rezkycodes/rdark.pro" - url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" -colors: - bg: "#191B22" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: 273 - pair: null - contrast: - fg: 58.9 - black: 8.4 - red: 36.2 - green: 59.9 - yellow: 48.1 - blue: 49.2 - magenta: 38.6 - cyan: 52 - white: 82.6 - brightBlack: 15 - brightRed: 45.6 - brightGreen: 76.3 - brightYellow: 60.8 - brightBlue: 63.3 - brightMagenta: 49.8 - brightCyan: 67.3 - brightWhite: 90.2 diff --git a/themes/filtered.yaml b/themes/filtered.yaml index f273cb00..fe0f02e8 100644 --- a/themes/filtered.yaml +++ b/themes/filtered.yaml @@ -8,6 +8,8 @@ source: author: "Katie Walker" repo: "https://github.com/Kat-Codes/filtered-vscode" url: "https://marketplace.visualstudio.com/items?itemName=katcodes.filtered" + formats: + sublime: "https://raw.githubusercontent.com/Kat-Codes/filtered-vscode/develop/themes/filtered.tmTheme" colors: bg: "#0D2B36" fg: "#F8F8F2" diff --git a/themes/finalbossjeff.yaml b/themes/finalbossjeff.yaml index b758cb65..c9078b70 100644 --- a/themes/finalbossjeff.yaml +++ b/themes/finalbossjeff.yaml @@ -8,6 +8,7 @@ source: author: "Myint Myat Thura" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MyintMyatThura.finalbossjeff" + formats: null colors: bg: "#1D1D1D" fg: "#F0F0F2" diff --git a/themes/finn4ik666corp.yaml b/themes/finn4ik666corp.yaml index 815ead83..b2618c4b 100644 --- a/themes/finn4ik666corp.yaml +++ b/themes/finn4ik666corp.yaml @@ -6,6 +6,7 @@ source: author: "finn4ik666corp" repo: null url: "https://marketplace.visualstudio.com/items?itemName=finn4ik666corp.lime-introvert" + formats: null colors: bg: "#1B1B1B" fg: "#C1D1A3" diff --git a/themes/firefly.yaml b/themes/firefly.yaml deleted file mode 100644 index 6e0085b2..00000000 --- a/themes/firefly.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "FireFly" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#151515" - fg: "#B3B8C5" - black: "#01060E" - red: "#EA6C73" - green: "#91B362" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#FAE994" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#C2D94C" - brightYellow: "#FFB454" - brightBlue: "#59C2FF" - brightMagenta: "#FFEE99" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 63.2 - black: 0 - red: 44.2 - green: 54.4 - yellow: 66.8 - blue: 60.8 - magenta: 92.2 - cyan: 78.1 - white: 71.9 - brightBlack: 23.1 - brightRed: 46.8 - brightGreen: 76.1 - brightYellow: 69.8 - brightBlue: 63.5 - brightMagenta: 95.4 - brightCyan: 81.1 - brightWhite: 107.1 diff --git a/themes/firefox-dark.yaml b/themes/firefox-dark.yaml deleted file mode 100644 index 2a6d23ac..00000000 --- a/themes/firefox-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Firefox Dark" -source: - marketplace_id: "shaobeichen.gradient-theme" - version: "1.19.0" - installs: 24140 - rating: 4.71 - ratings: 7 - author: "shaobeichen" - repo: "https://github.com/shaobeichen/gradient-theme" - url: "https://marketplace.visualstudio.com/items?itemName=shaobeichen.gradient-theme" -colors: - bg: "#2A2A2E" - fg: "#B1B1B3" - black: "#000000" - red: "#EE2E24" - green: "#00853E" - yellow: "#FFD204" - blue: "#009DDC" - magenta: "#98005D" - cyan: "#85CEBC" - white: "#D9D8D8" - brightBlack: "#737171" - brightRed: "#EE2E24" - brightGreen: "#00853E" - brightYellow: "#FFD204" - brightBlue: "#009DDC" - brightMagenta: "#98005D" - brightCyan: "#85CEBC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 56.3 - black: 0 - red: 31 - green: 25.5 - yellow: 78.2 - blue: 41.1 - magenta: 11.5 - cyan: 64.9 - white: 79.2 - brightBlack: 24.1 - brightRed: 31 - brightGreen: 25.5 - brightYellow: 78.2 - brightBlue: 41.1 - brightMagenta: 11.5 - brightCyan: 64.9 - brightWhite: 104 diff --git a/themes/firelight.yaml b/themes/firelight.yaml index 4721bc7c..df542cf6 100644 --- a/themes/firelight.yaml +++ b/themes/firelight.yaml @@ -8,6 +8,7 @@ source: author: "Cam Green" repo: "https://github.com/camcgreen/firelight-vscode" url: "https://marketplace.visualstudio.com/items?itemName=camcgreen.firelight-vscode" + formats: null colors: bg: "#1D2433" fg: "#A2AABC" diff --git a/themes/fireside.yaml b/themes/fireside.yaml index 0e7269e5..7793b9e1 100644 --- a/themes/fireside.yaml +++ b/themes/fireside.yaml @@ -8,6 +8,7 @@ source: author: "cipher-shad0w" repo: "https://github.com/cipher-shad0w/fireside-vscode" url: "https://marketplace.visualstudio.com/items?itemName=cipher-shad0w.fireside" + formats: null colors: bg: "#0A1220" fg: "#F0F2F5" diff --git a/themes/firewatch.yaml b/themes/firewatch.yaml index 5b8d7c5d..35356084 100644 --- a/themes/firewatch.yaml +++ b/themes/firewatch.yaml @@ -8,6 +8,7 @@ source: author: "gmtstephane" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gmtstephane.firewatch" + formats: null colors: bg: "#282C34" fg: "#ABB2BF" diff --git a/themes/flamelabs-fire.yaml b/themes/flamelabs-fire.yaml index e54016ec..390881cf 100644 --- a/themes/flamelabs-fire.yaml +++ b/themes/flamelabs-fire.yaml @@ -8,6 +8,7 @@ source: author: "Congram" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Congram.flamelabs" + formats: null colors: bg: "#1F1F1F" fg: "#A9B1D6" diff --git a/themes/flamelabs-plasma.yaml b/themes/flamelabs-plasma.yaml index 52659dcd..efea5830 100644 --- a/themes/flamelabs-plasma.yaml +++ b/themes/flamelabs-plasma.yaml @@ -8,6 +8,7 @@ source: author: "Congram" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Congram.flamelabs" + formats: null colors: bg: "#1F1F1F" fg: "#A9B1D6" diff --git a/themes/flamingo-nebula.yaml b/themes/flamingo-nebula.yaml index 249e1c08..508a4ad1 100644 --- a/themes/flamingo-nebula.yaml +++ b/themes/flamingo-nebula.yaml @@ -2,12 +2,13 @@ name: "Flamingo Nebula" source: marketplace_id: "kgrubb.flamingo-nebula" version: "0.0.3" - installs: 2901 + installs: 2902 rating: 0 ratings: 0 author: "kgrubb" repo: "https://github.com/kgrubb/flamingo-nebula" url: "https://marketplace.visualstudio.com/items?itemName=kgrubb.flamingo-nebula" + formats: null colors: bg: "#263647" fg: "#FFFFFF" diff --git a/themes/flash-green-dark.yaml b/themes/flash-green-dark.yaml index 1f157397..6a185080 100644 --- a/themes/flash-green-dark.yaml +++ b/themes/flash-green-dark.yaml @@ -8,6 +8,7 @@ source: author: "YoubaImkf" repo: "https://github.com/YoubaImkf/flash-green-theme" url: "https://marketplace.visualstudio.com/items?itemName=YoubaImkf.flash-green-dark" + formats: null colors: bg: "#0F0E0E" fg: "#D4D4D4" diff --git a/themes/flat-light.yaml b/themes/flat-light.yaml index 7181a9a4..784f7492 100644 --- a/themes/flat-light.yaml +++ b/themes/flat-light.yaml @@ -8,6 +8,7 @@ source: author: "gungorn" repo: "https://github.com/gungorn/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=gungorn.themes-by-gungorn" + formats: null colors: bg: "#FCFCFC" fg: "#29343D" diff --git a/themes/flat-theme-gray.yaml b/themes/flat-theme-gray.yaml deleted file mode 100644 index 314d2d12..00000000 --- a/themes/flat-theme-gray.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Flat-Theme Gray" -source: - marketplace_id: "Aatricks.flat-theme" - version: "0.1.2" - installs: 87 - author: "Aatricks" - repo: "https://github.com/Aatricks/flat-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Aatricks.flat-theme" -colors: - bg: "#202124" - fg: "#CFD8DC" - black: "#202124" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#CFD8DC" - brightBlack: "#546E7A" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#ECEFF1" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 79.7 - black: 0 - red: 45.3 - green: 82.9 - yellow: 77.7 - blue: 54.7 - magenta: 52.5 - cyan: 77 - white: 79.7 - brightBlack: 22.6 - brightRed: 45.3 - brightGreen: 82.9 - brightYellow: 77.7 - brightBlue: 54.7 - brightMagenta: 52.5 - brightCyan: 77 - brightWhite: 94.8 diff --git a/themes/flat-theme-light.yaml b/themes/flat-theme-light.yaml deleted file mode 100644 index efd6d247..00000000 --- a/themes/flat-theme-light.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Flat-Theme Light" -source: - marketplace_id: "Aatricks.flat-theme" - version: "0.1.2" - installs: 87 - author: "Aatricks" - repo: "https://github.com/Aatricks/flat-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Aatricks.flat-theme" -colors: - bg: "#F5F5F5" - fg: "#37474F" - black: "#263238" - red: "#EF5350" - green: "#7CB342" - yellow: "#F9AE58" - blue: "#42A5F5" - magenta: "#AB47BC" - cyan: "#26C6DA" - white: "#ECEFF1" - brightBlack: "#546E7A" - brightRed: "#EF5350" - brightGreen: "#7CB342" - brightYellow: "#F9AE58" - brightBlue: "#42A5F5" - brightMagenta: "#AB47BC" - brightCyan: "#26C6DA" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 86.4 - black: 93.5 - red: 55.4 - green: 43 - yellow: 29.2 - blue: 45.2 - magenta: 66.7 - cyan: 33.8 - white: 0 - brightBlack: 70.9 - brightRed: 55.4 - brightGreen: 43 - brightYellow: 29.2 - brightBlue: 45.2 - brightMagenta: 66.7 - brightCyan: 33.8 - brightWhite: 0 diff --git a/themes/flat-ui-immersed.yaml b/themes/flat-ui-immersed.yaml deleted file mode 100644 index 02a65820..00000000 --- a/themes/flat-ui-immersed.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "flat-ui immersed" -source: - marketplace_id: "lkytal.FlatUI" - version: "1.4.9" - installs: 264006 - rating: 4.93 - ratings: 28 - author: "Kaiyuan Liu" - repo: "https://github.com/lkytal/vscode-theme-flatui" - url: "https://marketplace.visualstudio.com/items?itemName=lkytal.FlatUI" -colors: - bg: "#FBFBFB" - fg: "#414141" - black: "#414141" - red: "#DE3D3B" - green: "#08916A" - yellow: "#E0AF02" - blue: "#288ED7" - magenta: "#D6438A" - cyan: "#2AA298" - white: "#F0F0F0" - brightBlack: "#414141" - brightRed: "#DE3D3B" - brightGreen: "#08916A" - brightYellow: "#FDC602" - brightBlue: "#288ED7" - brightMagenta: "#D6438A" - brightCyan: "#2AA298" - brightWhite: "#F0F0F0" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 91.3 - black: 91.3 - red: 66.3 - green: 64.2 - yellow: 37 - blue: 60.1 - magenta: 65.3 - cyan: 55.5 - white: 0 - brightBlack: 91.3 - brightRed: 66.3 - brightGreen: 64.2 - brightYellow: 23.8 - brightBlue: 60.1 - brightMagenta: 65.3 - brightCyan: 55.5 - brightWhite: 0 diff --git a/themes/flat-ui-one-dark.yaml b/themes/flat-ui-one-dark.yaml index 496db237..4a856e15 100644 --- a/themes/flat-ui-one-dark.yaml +++ b/themes/flat-ui-one-dark.yaml @@ -8,6 +8,7 @@ source: author: "Bowser V2" repo: "https://github.com/Jazzmoon/FlatUiOneDark" url: "https://marketplace.visualstudio.com/items?itemName=BowserV2.FlatUiOneDark" + formats: null colors: bg: "#1E1E1E" fg: "#BBBBBB" diff --git a/themes/flatcap.yaml b/themes/flatcap.yaml index 427fc193..5aef27d9 100644 --- a/themes/flatcap.yaml +++ b/themes/flatcap.yaml @@ -8,6 +8,7 @@ source: author: "cheycron" repo: "https://github.com/cheycron/flatcap-vscode" url: "https://marketplace.visualstudio.com/items?itemName=cheycron.flatcap-theme" + formats: null colors: bg: "#121418" fg: "#CBCED5" diff --git a/themes/flatland-monokai-improved.yaml b/themes/flatland-monokai-improved.yaml index f6bcf01e..723984bf 100644 --- a/themes/flatland-monokai-improved.yaml +++ b/themes/flatland-monokai-improved.yaml @@ -8,6 +8,7 @@ source: author: "Mèir Noordermeer" repo: "https://github.com/MeirBon/flatland-monokai-improved" url: "https://marketplace.visualstudio.com/items?itemName=meirbon.flatland-monokai-improved" + formats: null colors: bg: "#26292C" fg: "#F8F8F2" diff --git a/themes/flatuiexp.yaml b/themes/flatuiexp.yaml index b9bfb60c..43d1d639 100644 --- a/themes/flatuiexp.yaml +++ b/themes/flatuiexp.yaml @@ -8,6 +8,7 @@ source: author: "timmain" repo: null url: "https://marketplace.visualstudio.com/items?itemName=timmain.flatuibased-v1" + formats: null colors: bg: "#1E1E1E" fg: "#05AD97" diff --git a/themes/flavia.yaml b/themes/flavia.yaml index d283eefd..057b7d92 100644 --- a/themes/flavia.yaml +++ b/themes/flavia.yaml @@ -8,6 +8,7 @@ source: author: "Shah Abul Kalam" repo: "https://github.com/DanishQ1011/Flavia-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ShahAbulKalam.flavia-dark" + formats: null colors: bg: "#1B1B27" fg: "#00D7FF" diff --git a/themes/fleetheme.yaml b/themes/fleetheme.yaml deleted file mode 100644 index 8f74b0cf..00000000 --- a/themes/fleetheme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Fleetheme" -source: - marketplace_id: "abdelposada.wissar-fleetheme" - version: "1.0.1" - installs: 1032 - rating: 0 - ratings: 0 - author: "Abdel Posada" - repo: "https://github.com/abdelposada/wissar-fleetheme" - url: "https://marketplace.visualstudio.com/items?itemName=abdelposada.wissar-fleetheme" -colors: - bg: "#181818" - fg: "#D6D6DD" - black: "#676767" - red: "#F14C4C" - green: "#15AC91" - yellow: "#E5B95C" - blue: "#4C9DF3" - magenta: "#E567DC" - cyan: "#75D3BA" - white: "#D6D6DD" - brightBlack: "#676767" - brightRed: "#F14C4C" - brightGreen: "#15AC91" - brightYellow: "#E5B95C" - brightBlue: "#4C9DF3" - brightMagenta: "#E567DC" - brightCyan: "#75D3BA" - brightWhite: "#D6D6DD" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.9 - black: 22.4 - red: 38.5 - green: 46.5 - yellow: 67.1 - blue: 46.7 - magenta: 46.4 - cyan: 68.8 - white: 80.9 - brightBlack: 22.4 - brightRed: 38.5 - brightGreen: 46.5 - brightYellow: 67.1 - brightBlue: 46.7 - brightMagenta: 46.4 - brightCyan: 68.8 - brightWhite: 80.9 diff --git a/themes/fleeting-theme-modern.yaml b/themes/fleeting-theme-modern.yaml deleted file mode 100644 index 04a187c2..00000000 --- a/themes/fleeting-theme-modern.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Fleeting Theme Modern" -source: - marketplace_id: "fleeting-sound.fleeting-theme" - version: "0.1.6" - installs: 470 - rating: 5 - ratings: 1 - author: "fleeting-sound" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=fleeting-sound.fleeting-theme" -colors: - bg: "#1E232C" - fg: "#ABB2BF" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#528BFF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: 262 - pair: null - contrast: - fg: 57.8 - black: 0 - red: 40.5 - green: 60.7 - yellow: 69 - blue: 39.9 - magenta: 43.6 - cyan: 53 - white: 81.5 - brightBlack: 34 - brightRed: 36.9 - brightGreen: 60.7 - brightYellow: 69 - brightBlue: 39.9 - brightMagenta: 11.2 - brightCyan: 53 - brightWhite: 81.5 diff --git a/themes/fleetish.yaml b/themes/fleetish.yaml index daa98138..8e180c4a 100644 --- a/themes/fleetish.yaml +++ b/themes/fleetish.yaml @@ -8,6 +8,7 @@ source: author: "k8r" repo: "https://github.com/krfl/fleetish-vscode" url: "https://marketplace.visualstudio.com/items?itemName=k8r.fleetish" + formats: null colors: bg: "#0C0C0C" fg: "#FFFFFF" diff --git a/themes/fleetonedark.yaml b/themes/fleetonedark.yaml index baabd452..1dfcd119 100644 --- a/themes/fleetonedark.yaml +++ b/themes/fleetonedark.yaml @@ -8,6 +8,7 @@ source: author: "Dominik Gawlik" repo: "https://github.com/dgawlik/FleetOneDark" url: "https://marketplace.visualstudio.com/items?itemName=DominikGawlik.fleetonedark" + formats: null colors: bg: "#282C34" fg: "#C3BFBF" diff --git a/themes/fleety.yaml b/themes/fleety.yaml index 3fc369fe..87a015a8 100644 --- a/themes/fleety.yaml +++ b/themes/fleety.yaml @@ -8,6 +8,7 @@ source: author: "wilmarj" repo: "https://github.com/wilmarjongkind/fleety" url: "https://marketplace.visualstudio.com/items?itemName=wilmarj.fleety" + formats: null colors: bg: "#181818" fg: "#CBCBCB" diff --git a/themes/fleex-theme-dark.yaml b/themes/fleex-theme-dark.yaml index 3c8e8433..41db5346 100644 --- a/themes/fleex-theme-dark.yaml +++ b/themes/fleex-theme-dark.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#111315" fg: "#E6E8EB" diff --git a/themes/fleex-theme-forest-dark.yaml b/themes/fleex-theme-forest-dark.yaml index fb89e673..90741046 100644 --- a/themes/fleex-theme-forest-dark.yaml +++ b/themes/fleex-theme-forest-dark.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#151A16" fg: "#E7EFE7" diff --git a/themes/fleex-theme-forest-light.yaml b/themes/fleex-theme-forest-light.yaml index 5106c715..edc6fe2c 100644 --- a/themes/fleex-theme-forest-light.yaml +++ b/themes/fleex-theme-forest-light.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#FBFDF9" fg: "#1F2A21" diff --git a/themes/fleex-theme-light.yaml b/themes/fleex-theme-light.yaml index 776a7389..e4ea9537 100644 --- a/themes/fleex-theme-light.yaml +++ b/themes/fleex-theme-light.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#FFFFFF" fg: "#1D1D1F" diff --git a/themes/fleex-theme-mist-dark.yaml b/themes/fleex-theme-mist-dark.yaml index 960b79f4..e48635f0 100644 --- a/themes/fleex-theme-mist-dark.yaml +++ b/themes/fleex-theme-mist-dark.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#12171B" fg: "#E5ECF2" diff --git a/themes/fleex-theme-mist-light.yaml b/themes/fleex-theme-mist-light.yaml index 415910a9..0dc94838 100644 --- a/themes/fleex-theme-mist-light.yaml +++ b/themes/fleex-theme-mist-light.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#F7FAFC" fg: "#23303A" diff --git a/themes/fleex-theme-ocean-dark.yaml b/themes/fleex-theme-ocean-dark.yaml index 786d0e28..19063b19 100644 --- a/themes/fleex-theme-ocean-dark.yaml +++ b/themes/fleex-theme-ocean-dark.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#10181B" fg: "#E4EEF1" diff --git a/themes/fleex-theme-ocean-light.yaml b/themes/fleex-theme-ocean-light.yaml index 5942d308..a06bd9ea 100644 --- a/themes/fleex-theme-ocean-light.yaml +++ b/themes/fleex-theme-ocean-light.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#F7FCFD" fg: "#1E2930" diff --git a/themes/fleex-theme-plum-dark.yaml b/themes/fleex-theme-plum-dark.yaml index 314c8af2..e1a554d0 100644 --- a/themes/fleex-theme-plum-dark.yaml +++ b/themes/fleex-theme-plum-dark.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#17131B" fg: "#EEE7F6" diff --git a/themes/fleex-theme-plum-light.yaml b/themes/fleex-theme-plum-light.yaml index b211e43f..223bb494 100644 --- a/themes/fleex-theme-plum-light.yaml +++ b/themes/fleex-theme-plum-light.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#FCFAFF" fg: "#241F2D" diff --git a/themes/fleex-theme-rose-dark.yaml b/themes/fleex-theme-rose-dark.yaml index 2bb5986f..013d9f39 100644 --- a/themes/fleex-theme-rose-dark.yaml +++ b/themes/fleex-theme-rose-dark.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#1D161A" fg: "#F4E9EE" diff --git a/themes/fleex-theme-rose-light.yaml b/themes/fleex-theme-rose-light.yaml index 226b5749..c2027837 100644 --- a/themes/fleex-theme-rose-light.yaml +++ b/themes/fleex-theme-rose-light.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#FFF8FA" fg: "#2C2227" diff --git a/themes/fleex-theme-sand-dark.yaml b/themes/fleex-theme-sand-dark.yaml index dd6a4ceb..17cda791 100644 --- a/themes/fleex-theme-sand-dark.yaml +++ b/themes/fleex-theme-sand-dark.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#1A1713" fg: "#F0E7DA" diff --git a/themes/fleex-theme-sand-light.yaml b/themes/fleex-theme-sand-light.yaml index 6067e2e9..818eaf5a 100644 --- a/themes/fleex-theme-sand-light.yaml +++ b/themes/fleex-theme-sand-light.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#FDF9F2" fg: "#2B241D" diff --git a/themes/fleex-theme-warm-dark.yaml b/themes/fleex-theme-warm-dark.yaml index 768c97d9..aa1706b1 100644 --- a/themes/fleex-theme-warm-dark.yaml +++ b/themes/fleex-theme-warm-dark.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#1B1713" fg: "#F2E9DD" diff --git a/themes/fleex-theme-warm-light.yaml b/themes/fleex-theme-warm-light.yaml index 007cdd11..662ab028 100644 --- a/themes/fleex-theme-warm-light.yaml +++ b/themes/fleex-theme-warm-light.yaml @@ -8,6 +8,7 @@ source: author: "bluebone" repo: "https://github.com/fleex/fleex-theme" url: "https://marketplace.visualstudio.com/items?itemName=bluebone.fleex-theme" + formats: null colors: bg: "#FFFCF6" fg: "#2A241F" diff --git a/themes/fleury-theme.yaml b/themes/fleury-theme.yaml index 76e9fb86..d4375947 100644 --- a/themes/fleury-theme.yaml +++ b/themes/fleury-theme.yaml @@ -2,12 +2,13 @@ name: "Fleury Theme" source: marketplace_id: "jonesnc.fleury-theme" version: "1.0.0" - installs: 30 + installs: 31 rating: 0 ratings: 0 author: "jonesnc" repo: "https://github.com/jonesnc/fleury-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jonesnc.fleury-theme" + formats: null colors: bg: "#020202" fg: "#B99468" diff --git a/themes/flex-appeal.yaml b/themes/flex-appeal.yaml index b02a011b..c211fd0a 100644 --- a/themes/flex-appeal.yaml +++ b/themes/flex-appeal.yaml @@ -1,4 +1,4 @@ -name: "Flex Appeal" +name: "flex appeal" source: marketplace_id: "lotterleben.flex-appeal" version: "0.0.1" @@ -8,6 +8,8 @@ source: author: "lotterleben" repo: "https://github.com/Lotterleben/flex-appeal" url: "https://marketplace.visualstudio.com/items?itemName=lotterleben.flex-appeal" + formats: + iterm2: "https://raw.githubusercontent.com/Lotterleben/flex-appeal/master/synthwave-x-fluoromachine.itermcolors" colors: bg: "#262335" fg: "#FFFFFF" diff --git a/themes/flexoki.yaml b/themes/flexoki.yaml deleted file mode 100644 index a4871870..00000000 --- a/themes/flexoki.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Flexoki" -source: - marketplace_id: "sglza.flexoki" - version: "0.0.3" - installs: 2614 - rating: 5 - ratings: 2 - author: "sglza" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=sglza.flexoki" -colors: - bg: "#100F0F" - fg: "#CECDC3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 75.6 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28 - magenta: 30.4 - cyan: 48.2 - white: 90.6 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/flippidippi-light.yaml b/themes/flippidippi-light.yaml deleted file mode 100644 index 8badb739..00000000 --- a/themes/flippidippi-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "flippidippi light" -source: - marketplace_id: "flippidippi.flippidippi-theme" - version: "0.0.8" - installs: 9945 - rating: 5 - ratings: 4 - author: "flippidippi" - repo: "https://gitlab.com/flippidippi/flippidippi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=flippidippi.flippidippi-theme" -colors: - bg: "#F9F5D7" - fg: "#3C3836" - black: "#EBDBB2" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#7C6F64" - brightBlack: "#928374" - brightRed: "#9D0006" - brightGreen: "#79740E" - brightYellow: "#B57614" - brightBlue: "#076678" - brightMagenta: "#8F3F71" - brightCyan: "#427B58" - brightWhite: "#3C3836" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 90.1 - black: 11.5 - red: 68.8 - green: 51.2 - yellow: 41.8 - blue: 62.4 - magenta: 62.3 - cyan: 52.1 - white: 67.1 - brightBlack: 57.7 - brightRed: 80.4 - brightGreen: 67 - brightYellow: 58.3 - brightBlue: 75.6 - brightMagenta: 76.1 - brightCyan: 67.8 - brightWhite: 90.1 diff --git a/themes/flora.yaml b/themes/flora.yaml index 70975a61..6337c2ba 100644 --- a/themes/flora.yaml +++ b/themes/flora.yaml @@ -8,6 +8,7 @@ source: author: "mmerle" repo: "https://github.com/mmerle/flora" url: "https://marketplace.visualstudio.com/items?itemName=merle.flora" + formats: null colors: bg: "#1A1B1E" fg: "#E9E8E6" diff --git a/themes/florence.yaml b/themes/florence.yaml index feeefbf1..292be992 100644 --- a/themes/florence.yaml +++ b/themes/florence.yaml @@ -8,6 +8,7 @@ source: author: "felipeymn" repo: "https://github.com/felipeymn/florence-vscode" url: "https://marketplace.visualstudio.com/items?itemName=felipeymn.florence" + formats: null colors: bg: "#16171B" fg: "#C5C5C6" diff --git a/themes/floriamaris.yaml b/themes/floriamaris.yaml index ea7e48e5..f90734f2 100644 --- a/themes/floriamaris.yaml +++ b/themes/floriamaris.yaml @@ -8,6 +8,7 @@ source: author: "indiamaris" repo: null url: "https://marketplace.visualstudio.com/items?itemName=indiamaris.floriamaris" + formats: null colors: bg: "#000000" fg: "#00FFDB" diff --git a/themes/florist-dark.yaml b/themes/florist-dark.yaml deleted file mode 100644 index e7d03120..00000000 --- a/themes/florist-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "florist-dark" -source: - marketplace_id: "magnush.florist-theme" - version: "0.1.5" - installs: 1125 - rating: 5 - ratings: 2 - author: "Magnus Hvidtfeldt" - repo: "https://github.com/mch-sg/florist-theme" - url: "https://marketplace.visualstudio.com/items?itemName=magnush.florist-theme" -colors: - bg: "#0E0A13" - fg: "#ECE2F2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 305 - pair: null - contrast: - fg: 91 - black: 0 - red: 27.5 - green: 53.8 - yellow: 86.4 - blue: 28.2 - magenta: 30.5 - cyan: 48.3 - white: 90.8 - brightBlack: 22.8 - brightRed: 39.4 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.8 - brightMagenta: 46.2 - brightCyan: 56.2 - brightWhite: 90.8 diff --git a/themes/florist-light.yaml b/themes/florist-light.yaml deleted file mode 100644 index 82ae671f..00000000 --- a/themes/florist-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Florist Light" -source: - marketplace_id: "magnush.florist-theme" - version: "0.1.5" - installs: 1125 - rating: 5 - ratings: 2 - author: "Magnus Hvidtfeldt" - repo: "https://github.com/mch-sg/florist-theme" - url: "https://marketplace.visualstudio.com/items?itemName=magnush.florist-theme" -colors: - bg: "#EEE9F4" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: 306 - pair: null - contrast: - fg: 94.1 - black: 94.1 - red: 62.1 - green: 37.3 - yellow: 46 - blue: 74.1 - magenta: 62.7 - cyan: 48.7 - white: 74 - brightBlack: 66.8 - brightRed: 62.1 - brightGreen: 29 - brightYellow: 29 - brightBlue: 74.1 - brightMagenta: 62.7 - brightCyan: 48.7 - brightWhite: 36.5 diff --git a/themes/flow-better-theme.yaml b/themes/flow-better-theme.yaml index 4f9a522d..ce1480d7 100644 --- a/themes/flow-better-theme.yaml +++ b/themes/flow-better-theme.yaml @@ -8,6 +8,7 @@ source: author: "Cha0sGeiger" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Cha0sGeiger.flow-better-theme" + formats: null colors: bg: "#0B1219" fg: "#35DAEA" diff --git a/themes/fluentblue.yaml b/themes/fluentblue.yaml index d6ca8c3a..4bcc76ce 100644 --- a/themes/fluentblue.yaml +++ b/themes/fluentblue.yaml @@ -8,6 +8,7 @@ source: author: "Maltarouti" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Maltarouti.fluentblue" + formats: null colors: bg: "#222328" fg: "#FFFFFF" diff --git a/themes/fluffy-dark-theme.yaml b/themes/fluffy-dark-theme.yaml index 20c058c2..4c2d411c 100644 --- a/themes/fluffy-dark-theme.yaml +++ b/themes/fluffy-dark-theme.yaml @@ -2,12 +2,13 @@ name: "Fluffy Dark Theme" source: marketplace_id: "ayakoSky.fluffy-dark-theme" version: "0.0.6" - installs: 16564 + installs: 16574 rating: 5 ratings: 5 author: "ayako" repo: "https://github.com/ayako02/fluff-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=ayakoSky.fluffy-dark-theme" + formats: null colors: bg: "#263238" fg: "#FF9EB5" diff --git a/themes/fluffy-theme.yaml b/themes/fluffy-theme.yaml index cf943692..9e517028 100644 --- a/themes/fluffy-theme.yaml +++ b/themes/fluffy-theme.yaml @@ -2,12 +2,13 @@ name: "Fluffy Theme" source: marketplace_id: "ayakoSky.fluffy-theme" version: "0.0.10" - installs: 14347 + installs: 14350 rating: 5 ratings: 6 author: "ayako" repo: "https://github.com/ayako02/fluffy-theme" url: "https://marketplace.visualstudio.com/items?itemName=ayakoSky.fluffy-theme" + formats: null colors: bg: "#FFFFFF" fg: "#FF9EB5" diff --git a/themes/fluid-light-theme.yaml b/themes/fluid-light-theme.yaml index 73514661..7b9a2883 100644 --- a/themes/fluid-light-theme.yaml +++ b/themes/fluid-light-theme.yaml @@ -2,12 +2,13 @@ name: "Fluid Light Theme" source: marketplace_id: "Vaporizer.fluid-theme" version: "0.0.7" - installs: 845 + installs: 846 rating: 0 ratings: 0 author: "Vaporizer" repo: "https://github.com/Vaporizer-dev/fluid-theme" url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.fluid-theme" + formats: null colors: bg: "#F3F6FF" fg: "#B8DFFF" diff --git a/themes/flukerbr-theme.yaml b/themes/flukerbr-theme.yaml index fdb1f043..a1af787c 100644 --- a/themes/flukerbr-theme.yaml +++ b/themes/flukerbr-theme.yaml @@ -1,11 +1,14 @@ -name: "FlukerBr-theme" +name: "FlukerBr theme" source: marketplace_id: "FlukerBr.FlukerBr-theme" version: "0.0.0" installs: 54 + rating: 0 + ratings: 0 author: "FlukerBr" repo: null url: "https://marketplace.visualstudio.com/items?itemName=FlukerBr.FlukerBr-theme" + formats: null colors: bg: "#242424" fg: "#43BCAB" diff --git a/themes/fluminense.yaml b/themes/fluminense.yaml deleted file mode 100644 index 0855e3bf..00000000 --- a/themes/fluminense.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Fluminense" -source: - marketplace_id: "ViniciusReisch.Fluminense-Theme" - version: "2.5.0" - installs: 343 - rating: 5 - ratings: 1 - author: "ViniciusReisch" - repo: "https://github.com/Flyinng/Fluminense-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=ViniciusReisch.Fluminense-Theme" -colors: - bg: "#1E1E1E" - fg: "#CEC4C2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#8C040D" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 70.3 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 10 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/fluorite-theme.yaml b/themes/fluorite-theme.yaml index 525dbbcf..9cd13f61 100644 --- a/themes/fluorite-theme.yaml +++ b/themes/fluorite-theme.yaml @@ -1,4 +1,4 @@ -name: "💎Fluorite theme" +name: "💎Fluorite Theme" source: marketplace_id: "rnbsov.fluorite-theme" version: "1.2.6" @@ -8,6 +8,7 @@ source: author: "Rnbsov" repo: "https://github.com/Rnbsov/fluorite-theme" url: "https://marketplace.visualstudio.com/items?itemName=rnbsov.fluorite-theme" + formats: null colors: bg: "#16111B" fg: "#6E9BBC" diff --git a/themes/flutter-dark.yaml b/themes/flutter-dark.yaml deleted file mode 100644 index e90bd54c..00000000 --- a/themes/flutter-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Flutter Dark" -source: - marketplace_id: "vmcgon.flutter-theme" - version: "0.0.1" - installs: 3704 - rating: 4 - ratings: 1 - author: "vmcgon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=vmcgon.flutter-theme" -colors: - bg: "#283142" - fg: "#ECEFF1" - black: "#000000" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFFF00" - blue: "#0000FF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#F5F5F5" - brightBlack: "#666666" - brightRed: "#F48771" - brightGreen: "#6BCF19" - brightYellow: "#D7BA7D" - brightBlue: "#4C78DD" - brightMagenta: "#C586C0" - brightCyan: "#4CD1E0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 263 - pair: null - contrast: - fg: 91.8 - black: 0 - red: 32.2 - green: 81.2 - yellow: 97.4 - blue: 10.9 - magenta: 40.9 - cyan: 86.9 - white: 96 - brightBlack: 17.7 - brightRed: 48.7 - brightGreen: 59 - brightYellow: 61.8 - brightBlue: 27.9 - brightMagenta: 43 - brightCyan: 63.5 - brightWhite: 102.6 diff --git a/themes/flutter-theme-dark.yaml b/themes/flutter-theme-dark.yaml index 13aff795..b81b4ef1 100644 --- a/themes/flutter-theme-dark.yaml +++ b/themes/flutter-theme-dark.yaml @@ -1,13 +1,14 @@ -name: "Flutter-Theme-Dark" +name: "flutter-theme-dark" source: marketplace_id: "idmarcosc.Flutter-Theme-Dark" version: "1.0.2" - installs: 3232 + installs: 3234 rating: 1 ratings: 1 author: "Marcos Silva" repo: null url: "https://marketplace.visualstudio.com/items?itemName=idmarcosc.Flutter-Theme-Dark" + formats: null colors: bg: "#17141F" fg: "#D4D4D4" diff --git a/themes/flux-dark.yaml b/themes/flux-dark.yaml index 501a39f9..b5bd3eba 100644 --- a/themes/flux-dark.yaml +++ b/themes/flux-dark.yaml @@ -8,6 +8,7 @@ source: author: "YasserElgammal" repo: "https://github.com/YasserElgammal/flux-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=6233c1c4-89f3-48cf-8c88-156b07876860.flux-dark-theme" + formats: null colors: bg: "#232424" fg: "#E4E4E4" diff --git a/themes/flux-dawn.yaml b/themes/flux-dawn.yaml deleted file mode 100644 index 6189c35a..00000000 --- a/themes/flux-dawn.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Flux Dawn" -source: - marketplace_id: "danilrez.flux-theme" - version: "2.5.1" - installs: 261 - rating: 5 - ratings: 2 - author: "Danil Reznichenko " - repo: "https://github.com/danilrez/flux-theme" - url: "https://marketplace.visualstudio.com/items?itemName=danilrez.flux-theme" -colors: - bg: "#FFFFFF" - fg: "#B36F4D" - black: "#E2875A" - red: "#F50A51" - green: "#04D279" - yellow: "#FDA92B" - blue: "#2B94FD" - magenta: "#FD2BEF" - cyan: "#05E1FA" - white: "#FEEBE2" - brightBlack: "#F99B6C" - brightRed: "#F73B73" - brightGreen: "#35DE95" - brightYellow: "#FDB953" - brightBlue: "#53A8FD" - brightMagenta: "#FD53F2" - brightCyan: "#35E9FD" - brightWhite: "#FEF8F5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Flux Night" - contrast: - fg: 66.8 - black: 51.7 - red: 66 - green: 38 - yellow: 36.6 - blue: 57.5 - magenta: 56.1 - cyan: 26.2 - white: 0 - brightBlack: 41.2 - brightRed: 62.1 - brightGreen: 31.3 - brightYellow: 30.7 - brightBlue: 48.9 - brightMagenta: 51.7 - brightCyan: 22 - brightWhite: 0 diff --git a/themes/flux-daylight.yaml b/themes/flux-daylight.yaml deleted file mode 100644 index 498fda3f..00000000 --- a/themes/flux-daylight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Flux Daylight" -source: - marketplace_id: "danilrez.flux-theme" - version: "2.5.1" - installs: 261 - rating: 5 - ratings: 2 - author: "Danil Reznichenko " - repo: "https://github.com/danilrez/flux-theme" - url: "https://marketplace.visualstudio.com/items?itemName=danilrez.flux-theme" -colors: - bg: "#FFFFFF" - fg: "#252B37" - black: "#393F4C" - red: "#F50A51" - green: "#04D279" - yellow: "#FDA92B" - blue: "#2B94FD" - magenta: "#FD2BEF" - cyan: "#05E1FA" - white: "#D3D5D9" - brightBlack: "#4F5869" - brightRed: "#F73B73" - brightGreen: "#35DE95" - brightYellow: "#FDB953" - brightBlue: "#53A8FD" - brightMagenta: "#FD53F2" - brightCyan: "#35E9FD" - brightWhite: "#F4F5F5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 100.9 - black: 94.5 - red: 66 - green: 38 - yellow: 36.6 - blue: 57.5 - magenta: 56.1 - cyan: 26.2 - white: 22.3 - brightBlack: 84.9 - brightRed: 62.1 - brightGreen: 31.3 - brightYellow: 30.7 - brightBlue: 48.9 - brightMagenta: 51.7 - brightCyan: 22 - brightWhite: 0 diff --git a/themes/flux-night.yaml b/themes/flux-night.yaml deleted file mode 100644 index 5c96e83b..00000000 --- a/themes/flux-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Flux Night" -source: - marketplace_id: "danilrez.flux-theme" - version: "2.5.1" - installs: 261 - rating: 5 - ratings: 2 - author: "Danil Reznichenko " - repo: "https://github.com/danilrez/flux-theme" - url: "https://marketplace.visualstudio.com/items?itemName=danilrez.flux-theme" -colors: - bg: "#1F242E" - fg: "#8D95A5" - black: "#363E4E" - red: "#F96C96" - green: "#5AF6B3" - yellow: "#F9C16C" - blue: "#6CB2F9" - magenta: "#F96CEF" - cyan: "#5AE7F6" - white: "#B0B5BF" - brightBlack: "#4D576A" - brightRed: "#F98BAC" - brightGreen: "#77F8C0" - brightYellow: "#F9CD8B" - brightBlue: "#8BC2F9" - brightMagenta: "#F98BF2" - brightCyan: "#76ECF9" - brightWhite: "#D3D5D9" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: "Flux Dawn" - contrast: - fg: 42.2 - black: 0 - red: 46.5 - green: 82.9 - yellow: 72.2 - blue: 55.4 - magenta: 51 - cyan: 78.2 - white: 59.4 - brightBlack: 14 - brightRed: 55.3 - brightGreen: 85.7 - brightYellow: 77.7 - brightBlue: 64.3 - brightMagenta: 58.8 - brightCyan: 82.2 - brightWhite: 78.3 diff --git a/themes/flux-twilight.yaml b/themes/flux-twilight.yaml deleted file mode 100644 index f272c3c6..00000000 --- a/themes/flux-twilight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Flux Twilight" -source: - marketplace_id: "danilrez.flux-theme" - version: "2.5.1" - installs: 261 - rating: 5 - ratings: 2 - author: "Danil Reznichenko " - repo: "https://github.com/danilrez/flux-theme" - url: "https://marketplace.visualstudio.com/items?itemName=danilrez.flux-theme" -colors: - bg: "#272B3F" - fg: "#878DAB" - black: "#30344B" - red: "#F96C96" - green: "#5AF6B3" - yellow: "#F9C16C" - blue: "#6CB2F9" - magenta: "#F96CEF" - cyan: "#5AE7F6" - white: "#ACB0C3" - brightBlack: "#484E70" - brightRed: "#F98BAC" - brightGreen: "#77F8C0" - brightYellow: "#F9CD8B" - brightBlue: "#8BC2F9" - brightMagenta: "#F98BF2" - brightCyan: "#76ECF9" - brightWhite: "#D0D2DC" -meta: - mode: "dark" - accent: "pink" - hue: 275 - pair: null - contrast: - fg: 37.4 - black: 0 - red: 45 - green: 81.4 - yellow: 70.6 - blue: 53.9 - magenta: 49.5 - cyan: 76.7 - white: 55.6 - brightBlack: 9.9 - brightRed: 53.8 - brightGreen: 84.2 - brightYellow: 76.2 - brightBlue: 62.8 - brightMagenta: 57.3 - brightCyan: 80.6 - brightWhite: 75.2 diff --git a/themes/flux.yaml b/themes/flux.yaml index f949b3fd..55719a1e 100644 --- a/themes/flux.yaml +++ b/themes/flux.yaml @@ -8,6 +8,7 @@ source: author: "Priyaank" repo: "https://github.com/PRIYAANK2510/Ether" url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.ether" + formats: null colors: bg: "#151515" fg: "#808080" diff --git a/themes/fluxish.yaml b/themes/fluxish.yaml index 35b51990..236c522e 100644 --- a/themes/fluxish.yaml +++ b/themes/fluxish.yaml @@ -6,6 +6,7 @@ source: author: "sjsepan" repo: "https://gitlab.com/sjsepan/sjsepan-fluxish" url: "https://marketplace.visualstudio.com/items?itemName=sjsepan.sjsepan-fluxish" + formats: null colors: bg: "#FDC969" fg: "#000000" diff --git a/themes/foco-1-0-0.yaml b/themes/foco-1-0-0.yaml deleted file mode 100644 index 9c56e80e..00000000 --- a/themes/foco-1-0-0.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Foco 1.0.0" -source: - marketplace_id: "JosafaMarengo.foco-light" - version: "0.2.1" - installs: 925 - rating: 0 - ratings: 0 - author: "Josafá Marengo" - repo: "https://github.com/josafamarengo/focus" - url: "https://marketplace.visualstudio.com/items?itemName=JosafaMarengo.foco-light" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#029F02" - yellow: "#A78E04" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0B809D" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#00D100" - brightYellow: "#C0B400" - brightBlue: "#007AFF" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#828282" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106 - black: 106 - red: 74 - green: 62 - yellow: 59.3 - blue: 86.1 - magenta: 74.6 - cyan: 71.3 - white: 85.9 - brightBlack: 78.8 - brightRed: 74 - brightGreen: 39.6 - brightYellow: 42 - brightBlue: 66.5 - brightMagenta: 74.6 - brightCyan: 60.6 - brightWhite: 65.9 diff --git a/themes/focus-blue-colorblind-concentration-trust.yaml b/themes/focus-blue-colorblind-concentration-trust.yaml index 72a1549c..1d5b2cff 100644 --- a/themes/focus-blue-colorblind-concentration-trust.yaml +++ b/themes/focus-blue-colorblind-concentration-trust.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#0A0E1A" fg: "#E0E0E0" diff --git a/themes/focus-blue-concentration-trust.yaml b/themes/focus-blue-concentration-trust.yaml index e5b2122d..2ec427ac 100644 --- a/themes/focus-blue-concentration-trust.yaml +++ b/themes/focus-blue-concentration-trust.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#0A0E1A" fg: "#E8F4F8" diff --git a/themes/focus-blue-high-contrast-concentration-trust.yaml b/themes/focus-blue-high-contrast-concentration-trust.yaml index f586cbc6..ab73176a 100644 --- a/themes/focus-blue-high-contrast-concentration-trust.yaml +++ b/themes/focus-blue-high-contrast-concentration-trust.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/focus-blue-light-concentration-trust.yaml b/themes/focus-blue-light-concentration-trust.yaml index d0d16619..5f46fe44 100644 --- a/themes/focus-blue-light-concentration-trust.yaml +++ b/themes/focus-blue-light-concentration-trust.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#E3F2FD" fg: "#0A0E1A" diff --git a/themes/focus-colors.yaml b/themes/focus-colors.yaml deleted file mode 100644 index b3b1f938..00000000 --- a/themes/focus-colors.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Focus-Colors" -source: - marketplace_id: "Wellington-A.omni-dracula-dark" - version: "1.0.7" - installs: 4766 - rating: 0 - ratings: 0 - author: "Wellington-A" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" -colors: - bg: "#000B1D" - fg: "#0087FF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 252 - pair: null - contrast: - fg: 39.2 - black: 0 - red: 27.5 - green: 53.7 - yellow: 86.4 - blue: 28.2 - magenta: 30.5 - cyan: 48.3 - white: 90.8 - brightBlack: 22.8 - brightRed: 39.3 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 90.8 diff --git a/themes/focus-dark-fork-fork.yaml b/themes/focus-dark-fork-fork.yaml index 0e71e95c..fe42cf89 100644 --- a/themes/focus-dark-fork-fork.yaml +++ b/themes/focus-dark-fork-fork.yaml @@ -8,6 +8,7 @@ source: author: "Sagar Harsora" repo: "https://github.com/sagarrh/Synace" url: "https://marketplace.visualstudio.com/items?itemName=SagarHarsora.synace" + formats: null colors: bg: "#1E1E1E" fg: "#A79D9D" diff --git a/themes/focusoncoding.yaml b/themes/focusoncoding.yaml index f164134f..02b63a53 100644 --- a/themes/focusoncoding.yaml +++ b/themes/focusoncoding.yaml @@ -8,6 +8,7 @@ source: author: "Stephen A. Alonzo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=stephenaalonzo.focusoncoding" + formats: null colors: bg: "#13132E" fg: "#35B3FF" diff --git a/themes/fodder-contrast.yaml b/themes/fodder-contrast.yaml deleted file mode 100644 index 7b34f750..00000000 --- a/themes/fodder-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "fodder-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#131C17" - fg: "#CCE0D6" - black: "#1D2B23" - red: "#BA0E2E" - green: "#AD9895" - yellow: "#98D046" - blue: "#FCFCFA" - magenta: "#98D046" - cyan: "#AD9895" - white: "#DCEAE3" - brightBlack: "#3C5949" - brightRed: "#F03E5F" - brightGreen: "#D9D0CE" - brightYellow: "#C5E597" - brightBlue: "#FFFFFF" - brightMagenta: "#C5E597" - brightCyan: "#D9D0CE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 160 - pair: null - contrast: - fg: 83.6 - black: 0 - red: 20.2 - green: 47.7 - yellow: 67 - blue: 104.5 - magenta: 67 - cyan: 47.7 - white: 90.7 - brightBlack: 13.9 - brightRed: 36.4 - brightGreen: 77.8 - brightYellow: 82.9 - brightBlue: 106.5 - brightMagenta: 82.9 - brightCyan: 77.8 - brightWhite: 106.5 diff --git a/themes/fodder-light.yaml b/themes/fodder-light.yaml deleted file mode 100644 index c7b23f8e..00000000 --- a/themes/fodder-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "fodder-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#CCE0D6" - fg: "#2D4137" - black: "#DCEAE3" - red: "#BA0E2E" - green: "#685B59" - yellow: "#688E2F" - blue: "#2D4137" - magenta: "#688E2F" - cyan: "#685B59" - white: "#375044" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#9C8D8B" - brightYellow: "#9CC95A" - brightBlue: "#577D6A" - brightMagenta: "#9CC95A" - brightCyan: "#9C8D8B" - brightWhite: "#577D6A" -meta: - mode: "light" - accent: "orange" - hue: 164 - pair: null - contrast: - fg: 74.3 - black: 0 - red: 59.4 - green: 61.3 - yellow: 44.6 - blue: 74.3 - magenta: 44.6 - cyan: 61.3 - white: 69.1 - brightBlack: 21.2 - brightRed: 42.9 - brightGreen: 38.1 - brightYellow: 15.7 - brightBlue: 51.1 - brightMagenta: 15.7 - brightCyan: 38.1 - brightWhite: 51.1 diff --git a/themes/fodder.yaml b/themes/fodder.yaml deleted file mode 100644 index f07eb0fb..00000000 --- a/themes/fodder.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "fodder" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2D4137" - fg: "#CCE0D6" - black: "#375044" - red: "#BA0E2E" - green: "#AD9895" - yellow: "#98D046" - blue: "#FCFCFA" - magenta: "#98D046" - cyan: "#AD9895" - white: "#DCEAE3" - brightBlack: "#577D6A" - brightRed: "#F03E5F" - brightGreen: "#D9D0CE" - brightYellow: "#C5E597" - brightBlue: "#FFFFFF" - brightMagenta: "#C5E597" - brightCyan: "#D9D0CE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 163 - pair: null - contrast: - fg: 76.2 - black: 0 - red: 12.7 - green: 40.3 - yellow: 59.6 - blue: 97 - magenta: 59.6 - cyan: 40.3 - white: 83.3 - brightBlack: 20.9 - brightRed: 29 - brightGreen: 70.4 - brightYellow: 75.5 - brightBlue: 99.1 - brightMagenta: 75.5 - brightCyan: 70.4 - brightWhite: 99.1 diff --git a/themes/fog-hazy.yaml b/themes/fog-hazy.yaml index bdc0d693..26972b57 100644 --- a/themes/fog-hazy.yaml +++ b/themes/fog-hazy.yaml @@ -8,6 +8,7 @@ source: author: "goldenchao" repo: "https://github.com/GoldSept/theme-fog-hazy" url: "https://marketplace.visualstudio.com/items?itemName=goldenchao.fog-hazy" + formats: null colors: bg: "#1E1E20" fg: "#FFFFF5" diff --git a/themes/foggy-forest-v1.yaml b/themes/foggy-forest-v1.yaml deleted file mode 100644 index 8afa83d3..00000000 --- a/themes/foggy-forest-v1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Foggy Forest V1" -source: - marketplace_id: "xinkechen.foggy-forest-theme" - version: "0.2.0" - installs: 532 - rating: 0 - ratings: 0 - author: "xinkechen" - repo: "https://github.com/xinkecf35/foggy-forest-theme" - url: "https://marketplace.visualstudio.com/items?itemName=xinkechen.foggy-forest-theme" -colors: - bg: "#0D1901" - fg: "#C7D5C9" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 130 - pair: null - contrast: - fg: 77.9 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.7 - blue: 27.5 - magenta: 29.8 - cyan: 47.6 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.6 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.4 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/foggy-minimal.yaml b/themes/foggy-minimal.yaml index 773e28ea..b85110a7 100644 --- a/themes/foggy-minimal.yaml +++ b/themes/foggy-minimal.yaml @@ -8,6 +8,7 @@ source: author: "ninjaqwert" repo: "https://github.com/eerieA/vscode-foggy-min-theme" url: "https://marketplace.visualstudio.com/items?itemName=ninjaqwert-2239-indie.foggy-min" + formats: null colors: bg: "#FBFBFA" fg: "#4F585C" diff --git a/themes/fonteeboa.yaml b/themes/fonteeboa.yaml index 11b5c952..a06d1678 100644 --- a/themes/fonteeboa.yaml +++ b/themes/fonteeboa.yaml @@ -1,11 +1,14 @@ -name: "fonteeboa" +name: "Fonteeboa" source: marketplace_id: "Fonteeboa.fonteeboa" version: "1.0.1" - installs: 392 + installs: 393 + rating: 0 + ratings: 0 author: "Fonteeboa" repo: "https://github.com/fonteeboa/vscode-theme-fonteeboa" url: "https://marketplace.visualstudio.com/items?itemName=Fonteeboa.fonteeboa" + formats: null colors: bg: "#050A0F" fg: "#FFFFFF" diff --git a/themes/forest-color-theme.yaml b/themes/forest-color-theme.yaml deleted file mode 100644 index bc50953f..00000000 --- a/themes/forest-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "forest-color-theme" -source: - marketplace_id: "feb19.theme-forest" - version: "0.1.1" - installs: 3192 - rating: 5 - ratings: 1 - author: "feb19" - repo: "https://github.com/feb19/theme-forest" - url: "https://marketplace.visualstudio.com/items?itemName=feb19.theme-forest" -colors: - bg: "#282E2D" - fg: "#C0C7BC" - black: "#242424" - red: "#6F3C3C" - green: "#577341" - yellow: "#9A8653" - blue: "#6B898A" - magenta: "#6A416B" - cyan: "#4E6C60" - white: "#C7C3BC" - brightBlack: "#424446" - brightRed: "#E37272" - brightGreen: "#BBED84" - brightYellow: "#EDC766" - brightBlue: "#94CBDA" - brightMagenta: "#E47CE7" - brightCyan: "#93DEC0" - brightWhite: "#E9F1E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 67 - black: 0 - red: 8 - green: 20.8 - yellow: 34.2 - blue: 32 - magenta: 9.8 - cyan: 18.5 - white: 66.2 - brightBlack: 0 - brightRed: 40.7 - brightGreen: 82.1 - brightYellow: 70.9 - brightBlue: 65.6 - brightMagenta: 48.6 - brightCyan: 73.1 - brightWhite: 92.7 diff --git a/themes/forest-green-vitality-connection.yaml b/themes/forest-green-vitality-connection.yaml index 50fe025a..f151061e 100644 --- a/themes/forest-green-vitality-connection.yaml +++ b/themes/forest-green-vitality-connection.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#0D1F0D" fg: "#E8F5E9" diff --git a/themes/forest-green.yaml b/themes/forest-green.yaml index 0ead1c9a..943767a8 100644 --- a/themes/forest-green.yaml +++ b/themes/forest-green.yaml @@ -8,6 +8,7 @@ source: author: "Mustafa Özdemir" repo: null url: "https://marketplace.visualstudio.com/items?itemName=codeM.mystic-dark-collection" + formats: null colors: bg: "#0A0F1A" fg: "#E8F5E8" diff --git a/themes/forest-light.yaml b/themes/forest-light.yaml index 7a5a93b1..2068d9ec 100644 --- a/themes/forest-light.yaml +++ b/themes/forest-light.yaml @@ -8,6 +8,7 @@ source: author: "charst4r" repo: "https://github.com/charst4r/forest-light-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=charst4r.forest-light" + formats: null colors: bg: "#DDE0DC" fg: "#000000" diff --git a/themes/forest-night-ethereal-magic.yaml b/themes/forest-night-ethereal-magic.yaml deleted file mode 100644 index a0be941f..00000000 --- a/themes/forest-night-ethereal-magic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Forest Night - Ethereal Magic" -source: - marketplace_id: "forrest-knight.forest-night-theme" - version: "1.0.3" - installs: 2766 - rating: 5 - ratings: 3 - author: "Forrest Knight" - repo: "https://github.com/ForrestKnight/forest-night-theme" - url: "https://marketplace.visualstudio.com/items?itemName=forrest-knight.forest-night-theme" -colors: - bg: "#1A2125" - fg: "#C9D1D9" - black: "#1A2125" - red: "#E91E63" - green: "#8FBC8F" - yellow: "#F39C12" - blue: "#4ECDC4" - magenta: "#9B59B6" - cyan: "#4ECDC4" - white: "#C9D1D9" - brightBlack: "#4A5568" - brightRed: "#E91E63" - brightGreen: "#8FBC8F" - brightYellow: "#F39C12" - brightBlue: "#66D9EF" - brightMagenta: "#9B59B6" - brightCyan: "#4ECDC4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 233 - pair: null - contrast: - fg: 75.9 - black: 0 - red: 31.5 - green: 57.9 - yellow: 57.3 - blue: 63.5 - magenta: 27.5 - cyan: 63.5 - white: 75.9 - brightBlack: 13.8 - brightRed: 31.5 - brightGreen: 57.9 - brightYellow: 57.3 - brightBlue: 72.3 - brightMagenta: 27.5 - brightCyan: 63.5 - brightWhite: 105.8 diff --git a/themes/forest-night-italic-serenade.yaml b/themes/forest-night-italic-serenade.yaml deleted file mode 100644 index c033a32d..00000000 --- a/themes/forest-night-italic-serenade.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Forest Night (Italic) Serenade" -source: - marketplace_id: "rul3r.forest-night-serenade" - version: "0.1.9" - installs: 2140 - rating: 5 - ratings: 1 - author: "rul3r" - repo: "https://github.com/rul3rst4/forest-night-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=rul3r.forest-night-serenade" -colors: - bg: "#323D43" - fg: "#D8CAAC" - black: "#3C474D" - red: "#E68183" - green: "#A7C080" - yellow: "#D9BB80" - blue: "#83B6AF" - magenta: "#D39BB6" - cyan: "#87C095" - white: "#D8CAAC" - brightBlack: "#3C474D" - brightRed: "#E68183" - brightGreen: "#A7C080" - brightYellow: "#D9BB80" - brightBlue: "#83B6AF" - brightMagenta: "#D39BB6" - brightCyan: "#87C095" - brightWhite: "#D8CAAC" -meta: - mode: "dark" - accent: "orange" - hue: 232 - pair: null - contrast: - fg: 66.9 - black: 0 - red: 41.8 - green: 55.3 - yellow: 59.5 - blue: 49.2 - magenta: 48.5 - cyan: 52.9 - white: 66.9 - brightBlack: 0 - brightRed: 41.8 - brightGreen: 55.3 - brightYellow: 59.5 - brightBlue: 49.2 - brightMagenta: 48.5 - brightCyan: 52.9 - brightWhite: 66.9 diff --git a/themes/forest-night-serenade.yaml b/themes/forest-night-serenade.yaml deleted file mode 100644 index f9f9eacd..00000000 --- a/themes/forest-night-serenade.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Forest Night Serenade" -source: - marketplace_id: "rul3r.forest-night-serenade" - version: "0.1.9" - installs: 2140 - rating: 5 - ratings: 1 - author: "rul3r" - repo: "https://github.com/rul3rst4/forest-night-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=rul3r.forest-night-serenade" -colors: - bg: "#2B2F32" - fg: "#D8CAAC" - black: "#3C474D" - red: "#E68183" - green: "#A7C080" - yellow: "#D9BB80" - blue: "#83B6AF" - magenta: "#D39BB6" - cyan: "#87C095" - white: "#D8CAAC" - brightBlack: "#3C474D" - brightRed: "#E68183" - brightGreen: "#A7C080" - brightYellow: "#D9BB80" - brightBlue: "#83B6AF" - brightMagenta: "#D39BB6" - brightCyan: "#87C095" - brightWhite: "#D8CAAC" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 70.4 - black: 0 - red: 45.4 - green: 58.9 - yellow: 63.1 - blue: 52.8 - magenta: 52.1 - cyan: 56.5 - white: 70.4 - brightBlack: 0 - brightRed: 45.4 - brightGreen: 58.9 - brightYellow: 63.1 - brightBlue: 52.8 - brightMagenta: 52.1 - brightCyan: 56.5 - brightWhite: 70.4 diff --git a/themes/forest-night.yaml b/themes/forest-night.yaml index e76e49f4..c9836ba1 100644 --- a/themes/forest-night.yaml +++ b/themes/forest-night.yaml @@ -8,6 +8,7 @@ source: author: "ThemePlanet - Verdant" repo: "https://github.com/Ukt01/themeplanet-verdant" url: "https://marketplace.visualstudio.com/items?itemName=ThemePlanet-Verdant.themeplanet-verdant" + formats: null colors: bg: "#1A2B1F" fg: "#E8F5E8" diff --git a/themes/forest-rose.yaml b/themes/forest-rose.yaml deleted file mode 100644 index 739d600d..00000000 --- a/themes/forest-rose.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Forest Rose" -source: - marketplace_id: "hongtrapt.pink-angel-themes" - version: "0.0.2" - installs: 273 - rating: 5 - ratings: 1 - author: "hongtrapt" - repo: "https://github.com/hongtra1311/pink-angel-themes" - url: "https://marketplace.visualstudio.com/items?itemName=hongtrapt.pink-angel-themes" -colors: - bg: "#222B2E" - fg: "#F0F0F0" - black: "#222B2E" - red: "#C24D2C" - green: "#6D9F71" - yellow: "#EA9AB2" - blue: "#4A7D9A" - magenta: "#E27396" - cyan: "#337357" - white: "#F0F0F0" - brightBlack: "#9AAAB2" - brightRed: "#A43820" - brightGreen: "#337357" - brightYellow: "#E27396" - brightBlue: "#4A7D9A" - brightMagenta: "#EA9AB2" - brightCyan: "#6D9F71" - brightWhite: "#F0F0F0" -meta: - mode: "dark" - accent: "orange" - hue: 220 - pair: null - contrast: - fg: 94.3 - black: 0 - red: 25.6 - green: 40.5 - yellow: 56.4 - blue: 27 - magenta: 42.5 - cyan: 20.1 - white: 94.3 - brightBlack: 51.1 - brightRed: 16.3 - brightGreen: 20.1 - brightYellow: 42.5 - brightBlue: 27 - brightMagenta: 56.4 - brightCyan: 40.5 - brightWhite: 94.3 diff --git a/themes/forest-tech.yaml b/themes/forest-tech.yaml deleted file mode 100644 index 1fc1b76e..00000000 --- a/themes/forest-tech.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Forest-Tech" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#012441" - fg: "#B4FDC6" - black: "#012441" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#04DC3A" - magenta: "#04DC3A" - cyan: "#29C3A0" - white: "#B4FDC6" - brightBlack: "#012441" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#04DC3A" - brightMagenta: "#04DC3A" - brightCyan: "#29C3A0" - brightWhite: "#B4FDC6" -meta: - mode: "dark" - accent: "green" - hue: 248 - pair: null - contrast: - fg: 92.9 - black: 0 - red: 7.6 - green: 55.9 - yellow: 49.9 - blue: 65.6 - magenta: 65.6 - cyan: 55.9 - white: 92.9 - brightBlack: 0 - brightRed: 7.6 - brightGreen: 55.9 - brightYellow: 49.9 - brightBlue: 65.6 - brightMagenta: 65.6 - brightCyan: 55.9 - brightWhite: 92.9 diff --git a/themes/forest-violet.yaml b/themes/forest-violet.yaml index 1008d1aa..612f67e0 100644 --- a/themes/forest-violet.yaml +++ b/themes/forest-violet.yaml @@ -8,6 +8,7 @@ source: author: "Inna Sodri" repo: "https://example.com/inna/lilac-grove-bundle" url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.lilac-grove-bundle" + formats: null colors: bg: "#0C1110" fg: "#E6ECE8" diff --git a/themes/forestfly-dark-hard.yaml b/themes/forestfly-dark-hard.yaml index 765ae276..820b843b 100644 --- a/themes/forestfly-dark-hard.yaml +++ b/themes/forestfly-dark-hard.yaml @@ -8,6 +8,7 @@ source: author: "AndreaCombette" repo: "https://github.com/Chatr0uge/ForestFly-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.FOREST-FLY" + formats: null colors: bg: "#272427" fg: "#FBBEA3" diff --git a/themes/forestfly-dark.yaml b/themes/forestfly-dark.yaml index 3d0ecc10..22c465f8 100644 --- a/themes/forestfly-dark.yaml +++ b/themes/forestfly-dark.yaml @@ -8,6 +8,7 @@ source: author: "AndreaCombette" repo: "https://github.com/Chatr0uge/ForestFly-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.FOREST-FLY" + formats: null colors: bg: "#3C2729" fg: "#FBBEA3" diff --git a/themes/forestfly-light-hard.yaml b/themes/forestfly-light-hard.yaml index 37440f8d..9da2b683 100644 --- a/themes/forestfly-light-hard.yaml +++ b/themes/forestfly-light-hard.yaml @@ -8,6 +8,7 @@ source: author: "AndreaCombette" repo: "https://github.com/Chatr0uge/ForestFly-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.FOREST-FLY" + formats: null colors: bg: "#FBBEA3" fg: "#3C2729" diff --git a/themes/forestlook.yaml b/themes/forestlook.yaml index c773f851..15a25ee4 100644 --- a/themes/forestlook.yaml +++ b/themes/forestlook.yaml @@ -8,6 +8,7 @@ source: author: "Th3SmiL3y" repo: "https://github.com/Th3SmiL3y/forestlook-theme-dark" url: "https://marketplace.visualstudio.com/items?itemName=Th3SmiL3y.forestlook" + formats: null colors: bg: "#242221" fg: "#FFFFFF" diff --git a/themes/forestry.yaml b/themes/forestry.yaml index e9111a1b..86c9e7fd 100644 --- a/themes/forestry.yaml +++ b/themes/forestry.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Gandolphius.gandolphius-forestry" version: "0.0.1" installs: 91 + rating: 0 + ratings: 0 author: "Gandolphius" repo: "https://github.com/gandolphius/forestry-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=Gandolphius.gandolphius-forestry" + formats: null colors: bg: "#243021" fg: "#D1BC7F" diff --git a/themes/forge-dark.yaml b/themes/forge-dark.yaml index 0b6322a0..891b38cf 100644 --- a/themes/forge-dark.yaml +++ b/themes/forge-dark.yaml @@ -8,6 +8,7 @@ source: author: "Follow Up Boss" repo: "https://github.com/FollowUpBoss/fub-spa" url: "https://marketplace.visualstudio.com/items?itemName=FollowUpBoss.forge-vscode-theme" + formats: null colors: bg: "#080E11" fg: "#FFFFFF" diff --git a/themes/forge-light.yaml b/themes/forge-light.yaml index 24b69e59..40562822 100644 --- a/themes/forge-light.yaml +++ b/themes/forge-light.yaml @@ -8,6 +8,7 @@ source: author: "Follow Up Boss" repo: "https://github.com/FollowUpBoss/fub-spa" url: "https://marketplace.visualstudio.com/items?itemName=FollowUpBoss.forge-vscode-theme" + formats: null colors: bg: "#FFFFFF" fg: "#415662" diff --git a/themes/formal.yaml b/themes/formal.yaml index 04b80f85..a8b3eea6 100644 --- a/themes/formal.yaml +++ b/themes/formal.yaml @@ -8,6 +8,7 @@ source: author: "Lemz42" repo: "https://github.com/AM4730/Formal-VSC-theme" url: "https://marketplace.visualstudio.com/items?itemName=Lemz42.Formal" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/formosa-dark-ipanema-blue.yaml b/themes/formosa-dark-ipanema-blue.yaml index a4babf28..1ba4ed37 100644 --- a/themes/formosa-dark-ipanema-blue.yaml +++ b/themes/formosa-dark-ipanema-blue.yaml @@ -8,6 +8,7 @@ source: author: "Takeshi Yu" repo: "https://github.com/takeshiyu/formosa-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=TakeshiYu.formosa-theme" + formats: null colors: bg: "#1A2332" fg: "#E8E4DF" diff --git a/themes/formosa-dark-night-green.yaml b/themes/formosa-dark-night-green.yaml index 541fbca4..467b76d3 100644 --- a/themes/formosa-dark-night-green.yaml +++ b/themes/formosa-dark-night-green.yaml @@ -8,6 +8,7 @@ source: author: "Takeshi Yu" repo: "https://github.com/takeshiyu/formosa-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=TakeshiYu.formosa-theme" + formats: null colors: bg: "#1A2822" fg: "#E8E4DF" diff --git a/themes/formosa-light-ipanema-blue.yaml b/themes/formosa-light-ipanema-blue.yaml index cd82ddd6..20167761 100644 --- a/themes/formosa-light-ipanema-blue.yaml +++ b/themes/formosa-light-ipanema-blue.yaml @@ -8,6 +8,7 @@ source: author: "Takeshi Yu" repo: "https://github.com/takeshiyu/formosa-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=TakeshiYu.formosa-theme" + formats: null colors: bg: "#FAFAF8" fg: "#1A1D23" diff --git a/themes/formosa-light-night-green.yaml b/themes/formosa-light-night-green.yaml index f05fa03c..d8ecd1c9 100644 --- a/themes/formosa-light-night-green.yaml +++ b/themes/formosa-light-night-green.yaml @@ -8,6 +8,7 @@ source: author: "Takeshi Yu" repo: "https://github.com/takeshiyu/formosa-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=TakeshiYu.formosa-theme" + formats: null colors: bg: "#FAFAF8" fg: "#1A1D23" diff --git a/themes/forventone.yaml b/themes/forventone.yaml index 056a870e..110896ca 100644 --- a/themes/forventone.yaml +++ b/themes/forventone.yaml @@ -8,6 +8,7 @@ source: author: "Forventone" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Forventone.forventone-theme" + formats: null colors: bg: "#1F212A" fg: "#FFFFFF" diff --git a/themes/forxtu.yaml b/themes/forxtu.yaml index 862be1ea..3d4fd744 100644 --- a/themes/forxtu.yaml +++ b/themes/forxtu.yaml @@ -8,6 +8,7 @@ source: author: "forxtu" repo: "https://github.com/forxtu/forxtu-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=forxtu.forxtu-vscode-theme" + formats: null colors: bg: "#272A3E" fg: "#CECEC7" diff --git a/themes/foundyn-dev.yaml b/themes/foundyn-dev.yaml index 4e879916..fd92c4dd 100644 --- a/themes/foundyn-dev.yaml +++ b/themes/foundyn-dev.yaml @@ -8,6 +8,7 @@ source: author: "Foundyn" repo: "https://github.com/Foundyn/Foundyn-Dev" url: "https://marketplace.visualstudio.com/items?itemName=Foundyn.foundyn-dev" + formats: null colors: bg: "#1C1917" fg: "#D9CBBE" diff --git a/themes/foxdracula-color-theme.yaml b/themes/foxdracula-color-theme.yaml deleted file mode 100644 index f5f4f843..00000000 --- a/themes/foxdracula-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "FoxDracula-color-theme" -source: - marketplace_id: "daniloBrayann.foxdracula" - version: "0.0.12" - installs: 149 - rating: 5 - ratings: 1 - author: "daniloBrayann" - repo: "https://github.com/danilobrayann/dev-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.foxdracula" -colors: - bg: "#19191A" - fg: "#878784" - black: "#21222C" - red: "#FF5555" - green: "#46B1F2" - yellow: "#1EE6C2" - blue: "#00FF9E" - magenta: "#1FEA4F" - cyan: "#0024F2" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#1F62F1" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 36.8 - black: 0 - red: 43.2 - green: 54.3 - yellow: 75.4 - blue: 87.1 - magenta: 74.6 - cyan: 14.6 - white: 101.7 - brightBlack: 27.8 - brightRed: 48.6 - brightGreen: 88.8 - brightYellow: 103.3 - brightBlue: 25.8 - brightMagenta: 62.4 - brightCyan: 96.6 - brightWhite: 106.7 diff --git a/themes/foxnett-nexus-theme.yaml b/themes/foxnett-nexus-theme.yaml index 0f545bcc..14a14a85 100644 --- a/themes/foxnett-nexus-theme.yaml +++ b/themes/foxnett-nexus-theme.yaml @@ -8,6 +8,7 @@ source: author: "Foxnett Nexus" repo: "https://github.com/foxnett/foxnett-nexus-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=FoxnettNexus.foxnett-nexus-theme" + formats: null colors: bg: "#0A0B0F" fg: "#F0F6FC" diff --git a/themes/frankenstein.yaml b/themes/frankenstein.yaml index caa12596..94897d3d 100644 --- a/themes/frankenstein.yaml +++ b/themes/frankenstein.yaml @@ -8,6 +8,7 @@ source: author: "Synxty" repo: "https://github.com/synxty/frankenstein" url: "https://marketplace.visualstudio.com/items?itemName=synxty.frankenstein" + formats: null colors: bg: "#121212" fg: "#F1FBF7" diff --git a/themes/frantic-contrast.yaml b/themes/frantic-contrast.yaml deleted file mode 100644 index 822ec54d..00000000 --- a/themes/frantic-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "frantic-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0E1114" - fg: "#AEB9C4" - black: "#181E23" - red: "#BA0E2E" - green: "#EF6462" - yellow: "#89A7BC" - blue: "#E6EAEF" - magenta: "#EF6462" - cyan: "#89A7BC" - white: "#BDC6CF" - brightBlack: "#384450" - brightRed: "#F03E5F" - brightGreen: "#F8BFBF" - brightYellow: "#CAD8E1" - brightBlue: "#FFFFFF" - brightMagenta: "#F8BFBF" - brightCyan: "#CAD8E1" - brightWhite: "#E9ECEF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 63.3 - black: 0 - red: 21 - green: 43.4 - yellow: 52 - blue: 93.4 - magenta: 43.4 - cyan: 52 - white: 70.9 - brightBlack: 8.9 - brightRed: 37.3 - brightGreen: 75.8 - brightYellow: 81.1 - brightBlue: 107.4 - brightMagenta: 75.8 - brightCyan: 81.1 - brightWhite: 94.7 diff --git a/themes/frantic-light.yaml b/themes/frantic-light.yaml deleted file mode 100644 index 682068bb..00000000 --- a/themes/frantic-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "frantic-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#516172" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#EF6462" - yellow: "#89A7BC" - blue: "#516172" - magenta: "#EF6462" - cyan: "#89A7BC" - white: "#5C6E81" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#F8BFBF" - brightYellow: "#CAD8E1" - brightBlue: "#8294A7" - brightMagenta: "#F8BFBF" - brightCyan: "#CAD8E1" - brightWhite: "#8294A7" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 81.6 - black: 0 - red: 80.3 - green: 57.8 - yellow: 49.5 - blue: 81.6 - magenta: 57.8 - cyan: 49.5 - white: 76.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 26.7 - brightYellow: 21.7 - brightBlue: 58.2 - brightMagenta: 26.7 - brightCyan: 21.7 - brightWhite: 58.2 diff --git a/themes/frantic.yaml b/themes/frantic.yaml deleted file mode 100644 index 9f093326..00000000 --- a/themes/frantic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "frantic" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#252C33" - fg: "#AEB9C4" - black: "#303942" - red: "#BA0E2E" - green: "#EF6462" - yellow: "#89A7BC" - blue: "#E6EAEF" - magenta: "#EF6462" - cyan: "#89A7BC" - white: "#BDC6CF" - brightBlack: "#505F6E" - brightRed: "#F03E5F" - brightGreen: "#F8BFBF" - brightYellow: "#CAD8E1" - brightBlue: "#FFFFFF" - brightMagenta: "#F8BFBF" - brightCyan: "#CAD8E1" - brightWhite: "#E9ECEF" -meta: - mode: "dark" - accent: "orange" - hue: 248 - pair: null - contrast: - fg: 59.7 - black: 0 - red: 17.4 - green: 39.8 - yellow: 48.4 - blue: 89.8 - magenta: 39.8 - cyan: 48.4 - white: 67.3 - brightBlack: 15.4 - brightRed: 33.7 - brightGreen: 72.2 - brightYellow: 77.5 - brightBlue: 103.8 - brightMagenta: 72.2 - brightCyan: 77.5 - brightWhite: 91.1 diff --git a/themes/french-rose.yaml b/themes/french-rose.yaml index b9aa532e..c820d622 100644 --- a/themes/french-rose.yaml +++ b/themes/french-rose.yaml @@ -8,6 +8,7 @@ source: author: "French Rose Theme" repo: "https://github.com/denizozturk/french-rose-theme" url: "https://marketplace.visualstudio.com/items?itemName=french-rose-theme.french-rose-theme" + formats: null colors: bg: "#1E293B" fg: "#D4D4D4" diff --git a/themes/fresh-green-color-theme.yaml b/themes/fresh-green-color-theme.yaml deleted file mode 100644 index 0118ee83..00000000 --- a/themes/fresh-green-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "fresh-green-color-theme" -source: - marketplace_id: "wavebeem.fresh-green-vscode" - version: "1.0.0" - installs: 318 - rating: 0 - ratings: 0 - author: "Sage Fennel" - repo: "https://github.com/wavebeem/fresh-green-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.fresh-green-vscode" -colors: - bg: "#FFFFFF" - fg: "#161616" - black: "#2E2E2E" - red: "#D2004F" - green: "#007C1F" - yellow: "#845B00" - blue: "#7700FF" - magenta: "#C3009B" - cyan: "#00718F" - white: "#FFFFFF" - brightBlack: "#2E2E2E" - brightRed: "#D2004F" - brightGreen: "#007C1F" - brightYellow: "#845B00" - brightBlue: "#7700FF" - brightMagenta: "#C3009B" - brightCyan: "#00718F" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 104.8 - black: 100.1 - red: 74.5 - green: 76.1 - yellow: 79.9 - blue: 79.5 - magenta: 75.1 - cyan: 77.3 - white: 0 - brightBlack: 100.1 - brightRed: 74.5 - brightGreen: 76.1 - brightYellow: 79.9 - brightBlue: 79.5 - brightMagenta: 75.1 - brightCyan: 77.3 - brightWhite: 0 diff --git a/themes/fresh-start.yaml b/themes/fresh-start.yaml index 111278b9..7cadec10 100644 --- a/themes/fresh-start.yaml +++ b/themes/fresh-start.yaml @@ -8,6 +8,7 @@ source: author: "Brihi Ilyes Imad" repo: "https://github.com/ilyesBrihi/fresh-start" url: "https://marketplace.visualstudio.com/items?itemName=BrihiIlyesImad.fresh-start" + formats: null colors: bg: "#12131A" fg: "#E6E8E6" diff --git a/themes/freshcut-contrast.yaml b/themes/freshcut-contrast.yaml deleted file mode 100644 index e729b504..00000000 --- a/themes/freshcut-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "freshcut-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#000000" - fg: "#F8F8F2" - black: "#0D0D0D" - red: "#BA0E2E" - green: "#4ECDC4" - yellow: "#00A8C6" - blue: "#AEE239" - magenta: "#C8D7E8" - cyan: "#4ECDC4" - white: "#FFFFFF" - brightBlack: "#333333" - brightRed: "#F03E5F" - brightGreen: "#9EE3DF" - brightYellow: "#2DDFFF" - brightBlue: "#D2EF92" - brightMagenta: "#FFFFFF" - brightCyan: "#9EE3DF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 103 - black: 0 - red: 21.5 - green: 65.7 - yellow: 48.2 - blue: 78.8 - magenta: 81.3 - cyan: 65.7 - white: 107.9 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 82.1 - brightYellow: 76.4 - brightBlue: 90.4 - brightMagenta: 107.9 - brightCyan: 82.1 - brightWhite: 107.9 diff --git a/themes/freshcut-light.yaml b/themes/freshcut-light.yaml deleted file mode 100644 index 2d426e93..00000000 --- a/themes/freshcut-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "freshcut-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#2F3030" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#3DA09A" - yellow: "#008299" - blue: "#83AA29" - magenta: "#8E99A5" - cyan: "#3BA099" - white: "#3C3D3D" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#78CBC6" - brightYellow: "#00D9FF" - brightBlue: "#B4D960" - brightMagenta: "#C7CCD2" - brightCyan: "#75CCC6" - brightWhite: "#616464" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99.6 - black: 0 - red: 80.3 - green: 58.2 - yellow: 70.7 - blue: 52.4 - magenta: 55.3 - cyan: 58.3 - white: 95.3 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 35.6 - brightYellow: 29.6 - brightBlue: 27.3 - brightMagenta: 27.6 - brightCyan: 35.3 - brightWhite: 79.9 diff --git a/themes/freshcut.yaml b/themes/freshcut.yaml deleted file mode 100644 index 3475f7a4..00000000 --- a/themes/freshcut.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "freshcut" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2F3030" - fg: "#F8F8F2" - black: "#3C3D3D" - red: "#BA0E2E" - green: "#4ECDC4" - yellow: "#00A8C6" - blue: "#AEE239" - magenta: "#C8D7E8" - cyan: "#4ECDC4" - white: "#FFFFFF" - brightBlack: "#616464" - brightRed: "#F03E5F" - brightGreen: "#9EE3DF" - brightYellow: "#2DDFFF" - brightBlue: "#D2EF92" - brightMagenta: "#FFFFFF" - brightCyan: "#9EE3DF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 97.9 - black: 0 - red: 16.4 - green: 60.6 - yellow: 43.1 - blue: 73.8 - magenta: 76.2 - cyan: 60.6 - white: 102.8 - brightBlack: 16.9 - brightRed: 32.7 - brightGreen: 77 - brightYellow: 71.3 - brightBlue: 85.3 - brightMagenta: 102.8 - brightCyan: 77 - brightWhite: 102.8 diff --git a/themes/fretefy.yaml b/themes/fretefy.yaml index 115b4022..d54024e6 100644 --- a/themes/fretefy.yaml +++ b/themes/fretefy.yaml @@ -8,6 +8,7 @@ source: author: "Fretefy" repo: "https://github.com/fretefy/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Fretefy.fretefy-theme" + formats: null colors: bg: "#003250" fg: "#E7ECEF" diff --git a/themes/friction-contrast.yaml b/themes/friction-contrast.yaml deleted file mode 100644 index 465da2b9..00000000 --- a/themes/friction-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "friction-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0C0C0F" - fg: "#7E7B99" - black: "#17171D" - red: "#BA0E2E" - green: "#8D89A5" - yellow: "#6AA7A7" - blue: "#C2BED6" - magenta: "#8D89A5" - cyan: "#6AA7A7" - white: "#8C89A4" - brightBlack: "#393948" - brightRed: "#F03E5F" - brightGreen: "#C5C3D1" - brightYellow: "#AACDCD" - brightBlue: "#FDFDFD" - brightMagenta: "#C5C3D1" - brightCyan: "#AACDCD" - brightWhite: "#B6B5C5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 33.6 - black: 0 - red: 21.3 - green: 40.4 - yellow: 48.9 - blue: 68.8 - magenta: 40.4 - cyan: 48.9 - white: 40.3 - brightBlack: 0 - brightRed: 37.6 - brightGreen: 71 - brightYellow: 72 - brightBlue: 106.3 - brightMagenta: 71 - brightCyan: 72 - brightWhite: 62.9 diff --git a/themes/friction-light.yaml b/themes/friction-light.yaml deleted file mode 100644 index 0e056ca7..00000000 --- a/themes/friction-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "friction-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#38363F" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#8D89A5" - yellow: "#6AA7A7" - blue: "#C2BED6" - magenta: "#8D89A5" - cyan: "#6AA7A7" - white: "#44424D" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#C5C3D1" - brightYellow: "#AACDCD" - brightBlue: "#FDFDFD" - brightMagenta: "#C5C3D1" - brightCyan: "#AACDCD" - brightWhite: "#696576" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 97.3 - black: 0 - red: 80.3 - green: 61 - yellow: 52.7 - blue: 33.6 - magenta: 61 - cyan: 52.7 - white: 92.9 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 31.5 - brightYellow: 30.5 - brightBlue: 0 - brightMagenta: 31.5 - brightCyan: 30.5 - brightWhite: 78.2 diff --git a/themes/friction.yaml b/themes/friction.yaml deleted file mode 100644 index b36350d4..00000000 --- a/themes/friction.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "friction" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#26252D" - fg: "#7E7B99" - black: "#32303B" - red: "#BA0E2E" - green: "#8D89A5" - yellow: "#6AA7A7" - blue: "#C2BED6" - magenta: "#8D89A5" - cyan: "#6AA7A7" - white: "#8C89A4" - brightBlack: "#555365" - brightRed: "#F03E5F" - brightGreen: "#C5C3D1" - brightYellow: "#AACDCD" - brightBlue: "#FDFDFD" - brightMagenta: "#C5C3D1" - brightCyan: "#AACDCD" - brightWhite: "#B6B5C5" -meta: - mode: "dark" - accent: "orange" - hue: 291 - pair: null - contrast: - fg: 30.8 - black: 0 - red: 18.4 - green: 37.6 - yellow: 46.1 - blue: 66 - magenta: 37.6 - cyan: 46.1 - white: 37.4 - brightBlack: 13 - brightRed: 34.7 - brightGreen: 68.2 - brightYellow: 69.2 - brightBlue: 103.5 - brightMagenta: 68.2 - brightCyan: 69.2 - brightWhite: 60.1 diff --git a/themes/fridge.yaml b/themes/fridge.yaml index dec2c6a9..32b0411d 100644 --- a/themes/fridge.yaml +++ b/themes/fridge.yaml @@ -8,6 +8,7 @@ source: author: "mcMineyC" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mcMineyC.gruvboxical-vscode-theme" + formats: null colors: bg: "#171817" fg: "#CFAE88" diff --git a/themes/friendly.yaml b/themes/friendly.yaml index 113b9207..58b1ec93 100644 --- a/themes/friendly.yaml +++ b/themes/friendly.yaml @@ -8,6 +8,7 @@ source: author: "Emad-W" repo: "https://github.com/Emad-W/Friendly-DarkTheme" url: "https://marketplace.visualstudio.com/items?itemName=Emad-W.Friendly-DarkTheme" + formats: null colors: bg: "#1E1E1E" fg: "#D4CECE" diff --git a/themes/frog-terminal.yaml b/themes/frog-terminal.yaml index 799627da..ef4bc4de 100644 --- a/themes/frog-terminal.yaml +++ b/themes/frog-terminal.yaml @@ -2,12 +2,13 @@ name: "Frog Terminal" source: marketplace_id: "cobalt-frog.frog-terminal" version: "0.0.2" - installs: 78 + installs: 79 rating: 0 ratings: 0 author: "Cobalt Frog" repo: "https://github.com/CobaltFrog/frog-terminal" url: "https://marketplace.visualstudio.com/items?itemName=cobalt-frog.frog-terminal" + formats: null colors: bg: "#000000" fg: "#52A535" diff --git a/themes/front-matter-cms-theme.yaml b/themes/front-matter-cms-theme.yaml index 86e1cb06..bea215e2 100644 --- a/themes/front-matter-cms-theme.yaml +++ b/themes/front-matter-cms-theme.yaml @@ -1,4 +1,4 @@ -name: "Front Matter CMS Theme" +name: "Front Matter CMS - Theme" source: marketplace_id: "eliostruyf.vscode-frontmatter-theme" version: "0.0.7" @@ -8,6 +8,7 @@ source: author: "Elio Struyf" repo: "https://github.com/estruyf/vscode-frontmatter-theme" url: "https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-frontmatter-theme" + formats: null colors: bg: "#FFFFFF" fg: "#0E131F" diff --git a/themes/frontend-galaxy.yaml b/themes/frontend-galaxy.yaml index 11acb737..c6cb60c4 100644 --- a/themes/frontend-galaxy.yaml +++ b/themes/frontend-galaxy.yaml @@ -8,6 +8,7 @@ source: author: "Avetis" repo: "https://github.com/AvetisDN/frontend-galaxy" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.frontend-galaxy" + formats: null colors: bg: "#1D2837" fg: "#E5E8EC" diff --git a/themes/frontier-contrast.yaml b/themes/frontier-contrast.yaml deleted file mode 100644 index ce119900..00000000 --- a/themes/frontier-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "frontier-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#110F0E" - fg: "#F8F8F2" - black: "#1F1B19" - red: "#BA0E2E" - green: "#2EBF7E" - yellow: "#F23A3A" - blue: "#F8BB39" - magenta: "#FC803D" - cyan: "#2EBF7E" - white: "#FFFFFF" - brightBlack: "#49403C" - brightRed: "#F03E5F" - brightGreen: "#75DEAF" - brightYellow: "#F89A9A" - brightBlue: "#FBDD9B" - brightMagenta: "#FEC2A1" - brightCyan: "#75DEAF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.6 - black: 0 - red: 21.1 - green: 55.5 - yellow: 36.8 - blue: 71.3 - magenta: 52.5 - cyan: 55.5 - white: 107.5 - brightBlack: 8.7 - brightRed: 37.4 - brightGreen: 74.4 - brightYellow: 61.4 - brightBlue: 87.6 - brightMagenta: 77 - brightCyan: 74.4 - brightWhite: 107.5 diff --git a/themes/frontier-light.yaml b/themes/frontier-light.yaml deleted file mode 100644 index 6f758b8c..00000000 --- a/themes/frontier-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "frontier-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#36312C" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#1A724A" - yellow: "#B22727" - blue: "#AF8323" - magenta: "#BA5A27" - cyan: "#1A724A" - white: "#443E37" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#2DC580" - brightYellow: "#DD6262" - brightBlue: "#DEB45A" - brightMagenta: "#DF9168" - brightCyan: "#2DC580" - brightWhite: "#6E645A" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99 - black: 0 - red: 80.3 - green: 79.2 - yellow: 80.9 - blue: 61.8 - magenta: 71.3 - cyan: 79.2 - white: 94.5 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 43.5 - brightYellow: 62 - brightBlue: 37.3 - brightMagenta: 48.9 - brightCyan: 43.5 - brightWhite: 78.9 diff --git a/themes/frontier.yaml b/themes/frontier.yaml deleted file mode 100644 index 0d6bc98d..00000000 --- a/themes/frontier.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "frontier" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#36312C" - fg: "#F8F8F2" - black: "#443E37" - red: "#BA0E2E" - green: "#2EBF7E" - yellow: "#F23A3A" - blue: "#F8BB39" - magenta: "#FC803D" - cyan: "#2EBF7E" - white: "#FFFFFF" - brightBlack: "#6E645A" - brightRed: "#F03E5F" - brightGreen: "#75DEAF" - brightYellow: "#F89A9A" - brightBlue: "#FBDD9B" - brightMagenta: "#FEC2A1" - brightCyan: "#75DEAF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 67 - pair: null - contrast: - fg: 97.4 - black: 0 - red: 15.9 - green: 50.3 - yellow: 31.7 - blue: 66.2 - magenta: 47.4 - cyan: 50.3 - white: 102.3 - brightBlack: 17.3 - brightRed: 32.2 - brightGreen: 69.2 - brightYellow: 56.2 - brightBlue: 82.4 - brightMagenta: 71.9 - brightCyan: 69.2 - brightWhite: 102.3 diff --git a/themes/frost-spark-dark.yaml b/themes/frost-spark-dark.yaml index 09d20857..7ec982d2 100644 --- a/themes/frost-spark-dark.yaml +++ b/themes/frost-spark-dark.yaml @@ -8,6 +8,7 @@ source: author: "pbarnum" repo: "https://github.com/pbarnum/frost-spark-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=pbarnum.frost-spark-theme" + formats: null colors: bg: "#07161B" fg: "#CFCFCF" diff --git a/themes/frozen-deep.yaml b/themes/frozen-deep.yaml deleted file mode 100644 index 22d21d87..00000000 --- a/themes/frozen-deep.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Frozen-Deep" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#1D292F" - fg: "#BDE1FA" - black: "#1D292F" - red: "#7C1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#BDE1FA" - magenta: "#BDE1FA" - cyan: "#29C3A0" - white: "#BDE1FA" - brightBlack: "#1D292F" - brightRed: "#7C1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#BDE1FA" - brightMagenta: "#BDE1FA" - brightCyan: "#29C3A0" - brightWhite: "#BDE1FA" -meta: - mode: "dark" - accent: "yellow" - hue: 230 - pair: null - contrast: - fg: 82.1 - black: 0 - red: 0 - green: 55.3 - yellow: 49.4 - blue: 82.1 - magenta: 82.1 - cyan: 55.3 - white: 82.1 - brightBlack: 0 - brightRed: 0 - brightGreen: 55.3 - brightYellow: 49.4 - brightBlue: 82.1 - brightMagenta: 82.1 - brightCyan: 55.3 - brightWhite: 82.1 diff --git a/themes/frubilar.yaml b/themes/frubilar.yaml index 37028515..5e189fcf 100644 --- a/themes/frubilar.yaml +++ b/themes/frubilar.yaml @@ -8,6 +8,7 @@ source: author: "estefano" repo: null url: "https://marketplace.visualstudio.com/items?itemName=estefano.frubilar" + formats: null colors: bg: "#260542" fg: "#F8F8F8" diff --git a/themes/fruitbasket-dark.yaml b/themes/fruitbasket-dark.yaml index 45e30d08..c2622838 100644 --- a/themes/fruitbasket-dark.yaml +++ b/themes/fruitbasket-dark.yaml @@ -8,6 +8,7 @@ source: author: "charlotte-dev" repo: "https://git.charlotte.sh/lotte/fruitbasket" url: "https://marketplace.visualstudio.com/items?itemName=charlotte-dev.fruitbasket-theme" + formats: null colors: bg: "#1E1A1D" fg: "#E5E5E5" diff --git a/themes/fruitbasket-light.yaml b/themes/fruitbasket-light.yaml index 8da5f426..8575cd2f 100644 --- a/themes/fruitbasket-light.yaml +++ b/themes/fruitbasket-light.yaml @@ -8,6 +8,7 @@ source: author: "charlotte-dev" repo: "https://git.charlotte.sh/lotte/fruitbasket" url: "https://marketplace.visualstudio.com/items?itemName=charlotte-dev.fruitbasket-theme" + formats: null colors: bg: "#FEF9FB" fg: "#2A1F24" diff --git a/themes/fruity-loops.yaml b/themes/fruity-loops.yaml index 41500534..c1a1e491 100644 --- a/themes/fruity-loops.yaml +++ b/themes/fruity-loops.yaml @@ -1,11 +1,14 @@ -name: "Fruity Loops" +name: "fruity-loops" source: marketplace_id: "virk.fruity-loops" version: "0.0.3" installs: 89 + rating: 0 + ratings: 0 author: "Harminder Virk" repo: null url: "https://marketplace.visualstudio.com/items?itemName=virk.fruity-loops" + formats: null colors: bg: "#10181E" fg: "#CDD6F4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "red" hue: 241 + pair: null contrast: fg: 81 black: 57.2 diff --git a/themes/ftrblue.yaml b/themes/ftrblue.yaml index 4416fabd..e66934e9 100644 --- a/themes/ftrblue.yaml +++ b/themes/ftrblue.yaml @@ -1,11 +1,14 @@ -name: "ftrblue." +name: "ftrblue" source: marketplace_id: "FSharaf.ftrblue" version: "1.0.4" installs: 22 + rating: 5 + ratings: 1 author: "Sharaf Feyzullayev" repo: "https://github.com/FSharafff/vsctheme" url: "https://marketplace.visualstudio.com/items?itemName=FSharaf.ftrblue" + formats: null colors: bg: "#0C0E15" fg: "#2D72CB" diff --git a/themes/fuck-all-these-vscode-custom-ugly-themes.yaml b/themes/fuck-all-these-vscode-custom-ugly-themes.yaml index 142394cc..c457e890 100644 --- a/themes/fuck-all-these-vscode-custom-ugly-themes.yaml +++ b/themes/fuck-all-these-vscode-custom-ugly-themes.yaml @@ -8,6 +8,7 @@ source: author: "clowzed" repo: "https://github.com/clowzed/none" url: "https://marketplace.visualstudio.com/items?itemName=clowzed.none" + formats: null colors: bg: "#080515" fg: "#FFFFFF" diff --git a/themes/funchosa-dark-theme.yaml b/themes/funchosa-dark-theme.yaml index 732ae8ea..2311e30f 100644 --- a/themes/funchosa-dark-theme.yaml +++ b/themes/funchosa-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Funchosa" repo: "https://github.com/FunChosa/funchosa-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=funchosa.funchosa-dark" + formats: null colors: bg: "#1F1D2E" fg: "#E0DEF4" diff --git a/themes/funcode.yaml b/themes/funcode.yaml index 3ab29734..9d40cd8f 100644 --- a/themes/funcode.yaml +++ b/themes/funcode.yaml @@ -8,6 +8,7 @@ source: author: "beccauwu" repo: "https://github.com/beccauwu/FunCode" url: "https://marketplace.visualstudio.com/items?itemName=beccauwu.funcode" + formats: null colors: bg: "#1B1B1B" fg: "#FFBBF1" diff --git a/themes/functional.yaml b/themes/functional.yaml index 0c27def6..22ef4a03 100644 --- a/themes/functional.yaml +++ b/themes/functional.yaml @@ -8,6 +8,7 @@ source: author: "Bata Testing" repo: "https://github.com/1eyewonder/functional-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=BataTesting.functional-vscode-theme" + formats: null colors: bg: "#222222" fg: "#DDDCDC" diff --git a/themes/furnace.yaml b/themes/furnace.yaml index d9b01b4c..b6a1aa78 100644 --- a/themes/furnace.yaml +++ b/themes/furnace.yaml @@ -8,6 +8,7 @@ source: author: "solomonsscott" repo: "https://github.com/SolomonSScott/furnace-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=solomonsscott.furnace" + formats: null colors: bg: "#141D3C" fg: "#FFFFFF" diff --git a/themes/furukawa-pop-theme.yaml b/themes/furukawa-pop-theme.yaml deleted file mode 100644 index d33ede87..00000000 --- a/themes/furukawa-pop-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Furukawa Pop Theme" -source: - marketplace_id: "superfurukawa.furukawa-theme" - version: "1.1.3" - installs: 100 - rating: 0 - ratings: 0 - author: "superfurukawa" - repo: "https://github.com/superfurukawa/vscode-furukawa-theme" - url: "https://marketplace.visualstudio.com/items?itemName=superfurukawa.furukawa-theme" -colors: - bg: "#C0FFF8" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#757575" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#949494" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 98.9 - black: 98.9 - red: 66.8 - green: 42.1 - yellow: 50.7 - blue: 78.9 - magenta: 67.4 - cyan: 53.4 - white: 64.9 - brightBlack: 71.6 - brightRed: 66.8 - brightGreen: 33.7 - brightYellow: 33.8 - brightBlue: 78.9 - brightMagenta: 67.4 - brightCyan: 53.4 - brightWhite: 50 diff --git a/themes/futuremotion-light.yaml b/themes/futuremotion-light.yaml index b7482b37..de4a1496 100644 --- a/themes/futuremotion-light.yaml +++ b/themes/futuremotion-light.yaml @@ -8,6 +8,7 @@ source: author: "Futuremotion" repo: "https://github.com/futuremotiondev/vscode-futuremotion-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=futuremotion.futuremotion-light" + formats: null colors: bg: "#FFFFFF" fg: "#3C3F42" diff --git a/themes/futuristic-green.yaml b/themes/futuristic-green.yaml index dbe8cec0..a445deeb 100644 --- a/themes/futuristic-green.yaml +++ b/themes/futuristic-green.yaml @@ -8,6 +8,7 @@ source: author: "Deepak Bhardwaj" repo: "https://github.com/deepak-bhardwaj-ps/VSCode-Theme-Futuristic" url: "https://marketplace.visualstudio.com/items?itemName=Deepak-Bhardwaj.futuristic" + formats: null colors: bg: "#010F18" fg: "#05D5FF" diff --git a/themes/futuristt.yaml b/themes/futuristt.yaml index 7445b509..effdcbab 100644 --- a/themes/futuristt.yaml +++ b/themes/futuristt.yaml @@ -2,12 +2,13 @@ name: "Futuristt" source: marketplace_id: "carlowisse.futuristt" version: "1.6.0" - installs: 5358 + installs: 5360 rating: 5 ratings: 1 author: "carlowisse" repo: "https://github.com/carlowisse/futuristt-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlowisse.futuristt" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/g-dark-blue-whale.yaml b/themes/g-dark-blue-whale.yaml deleted file mode 100644 index 7ba9c260..00000000 --- a/themes/g-dark-blue-whale.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark (Blue Whale)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#00344A" - fg: "#DCF2F7" - black: "#5D6B7D" - red: "#EE405D" - green: "#A1DF45" - yellow: "#EEE151" - blue: "#4377E8" - magenta: "#B66EE6" - cyan: "#55B9E1" - white: "#EEE6E6" - brightBlack: "#5C717C" - brightRed: "#DF2040" - brightGreen: "#42CD2D" - brightYellow: "#EAF517" - brightBlue: "#3F76ED" - brightMagenta: "#9B36DF" - brightCyan: "#59CAF7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 233 - pair: null - contrast: - fg: 91.3 - black: 19.2 - red: 32.1 - green: 70.8 - yellow: 81 - blue: 27.9 - magenta: 36.2 - cyan: 53 - white: 87.3 - brightBlack: 21 - brightRed: 25.3 - brightGreen: 56.3 - brightYellow: 89.5 - brightBlue: 27.9 - brightMagenta: 21.2 - brightCyan: 61.9 - brightWhite: 102.4 diff --git a/themes/g-dark-jacksons-purple.yaml b/themes/g-dark-jacksons-purple.yaml deleted file mode 100644 index 2dd44aef..00000000 --- a/themes/g-dark-jacksons-purple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark (Jacksons Purple)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#2A3A71" - fg: "#C2D1DA" - black: "#6D7D93" - red: "#EE405D" - green: "#A1DF45" - yellow: "#EEE151" - blue: "#4377E8" - magenta: "#B66EE6" - cyan: "#55B9E1" - white: "#EEE6E6" - brightBlack: "#6A828E" - brightRed: "#DF2040" - brightGreen: "#42CD2D" - brightYellow: "#EAF517" - brightBlue: "#3F76ED" - brightMagenta: "#9B36DF" - brightCyan: "#59CAF7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 269 - pair: null - contrast: - fg: 68.1 - black: 23.6 - red: 28.4 - green: 67.1 - yellow: 77.3 - blue: 24.3 - magenta: 32.6 - cyan: 49.3 - white: 83.6 - brightBlack: 24.9 - brightRed: 21.6 - brightGreen: 52.6 - brightYellow: 85.8 - brightBlue: 24.2 - brightMagenta: 17.5 - brightCyan: 58.3 - brightWhite: 98.8 diff --git a/themes/g-dark-light-alice-blue.yaml b/themes/g-dark-light-alice-blue.yaml deleted file mode 100644 index e7065201..00000000 --- a/themes/g-dark-light-alice-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark-light (Alice Blue)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#F8FCFF" - fg: "#79848F" - black: "#A8C5E0" - red: "#C92541" - green: "#2FC722" - yellow: "#999514" - blue: "#2254C1" - magenta: "#7F25BB" - cyan: "#1482AD" - white: "#55575E" - brightBlack: "#ABC8DA" - brightRed: "#EB2244" - brightGreen: "#21D548" - brightYellow: "#948A03" - brightBlue: "#1A56D8" - brightMagenta: "#9313E8" - brightCyan: "#0E9BD3" - brightWhite: "#9CAEC8" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 63.5 - black: 30.9 - red: 73.5 - green: 41.6 - yellow: 56.3 - blue: 80.5 - magenta: 81.9 - cyan: 67.5 - white: 82.9 - brightBlack: 29.7 - brightRed: 65.8 - brightGreen: 35.1 - brightYellow: 60.9 - brightBlue: 78.1 - brightMagenta: 75.8 - brightCyan: 55.9 - brightWhite: 42.3 diff --git a/themes/g-dark-light-glitter.yaml b/themes/g-dark-light-glitter.yaml deleted file mode 100644 index 0a6576e1..00000000 --- a/themes/g-dark-light-glitter.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark-light (Glitter)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#E3ECFC" - fg: "#546A7B" - black: "#586C77" - red: "#C92541" - green: "#2CBC1F" - yellow: "#9C9816" - blue: "#2254C1" - magenta: "#7F25BB" - cyan: "#1482AD" - white: "#2B3A40" - brightBlack: "#607783" - brightRed: "#EB2244" - brightGreen: "#1EC542" - brightYellow: "#998F04" - brightBlue: "#1A56D8" - brightMagenta: "#9313E8" - brightCyan: "#0E9BD3" - brightWhite: "#2A3A40" -meta: - mode: "light" - accent: "magenta" - hue: 262 - pair: null - contrast: - fg: 66.5 - black: 65.8 - red: 64 - green: 37.2 - yellow: 45.4 - blue: 71 - magenta: 72.4 - cyan: 58 - white: 85.4 - brightBlack: 61 - brightRed: 56.3 - brightGreen: 33.1 - brightYellow: 49 - brightBlue: 68.6 - brightMagenta: 66.3 - brightCyan: 46.5 - brightWhite: 85.4 diff --git a/themes/g-dark-light-hint-of-red.yaml b/themes/g-dark-light-hint-of-red.yaml deleted file mode 100644 index 80bfe7dd..00000000 --- a/themes/g-dark-light-hint-of-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark-light (Hint of Red)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#F9F9F9" - fg: "#5F6870" - black: "#737272" - red: "#F02B4B" - green: "#0DC406" - yellow: "#B3A402" - blue: "#336DEB" - magenta: "#940DEE" - cyan: "#189ED3" - white: "#7A7878" - brightBlack: "#7C7D7D" - brightRed: "#EB3C59" - brightGreen: "#17AB09" - brightYellow: "#ACAC02" - brightBlue: "#1554DC" - brightMagenta: "#8614D2" - brightCyan: "#18B1DF" - brightWhite: "#777575" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 74.8 - black: 69.7 - red: 62.5 - green: 42 - yellow: 46.2 - blue: 68.1 - magenta: 73.8 - cyan: 53.3 - white: 66.9 - brightBlack: 64.8 - brightRed: 61.8 - brightGreen: 53.1 - brightYellow: 44 - brightBlue: 76.9 - brightMagenta: 78.4 - brightCyan: 45 - brightWhite: 68.2 diff --git a/themes/g-dark-minimal-2-astronaut-blue.yaml b/themes/g-dark-minimal-2-astronaut-blue.yaml deleted file mode 100644 index 088cafe3..00000000 --- a/themes/g-dark-minimal-2-astronaut-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark-minimal-2 (Astronaut Blue)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#18475A" - fg: "#B8F2FF" - black: "#6C87A8" - red: "#EE405D" - green: "#A1DF45" - yellow: "#EEE151" - blue: "#4377E8" - magenta: "#B66EE6" - cyan: "#55B9E1" - white: "#EEE6E6" - brightBlack: "#5791B2" - brightRed: "#DF2040" - brightGreen: "#42CD2D" - brightYellow: "#EAF517" - brightBlue: "#3F76ED" - brightMagenta: "#9B36DF" - brightCyan: "#59CAF7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 228 - pair: null - contrast: - fg: 82.5 - black: 26.4 - red: 26.9 - green: 65.6 - yellow: 75.8 - blue: 22.8 - magenta: 31 - cyan: 47.8 - white: 82.1 - brightBlack: 29.2 - brightRed: 20.1 - brightGreen: 51.1 - brightYellow: 84.3 - brightBlue: 22.7 - brightMagenta: 16 - brightCyan: 56.8 - brightWhite: 97.3 diff --git a/themes/g-dark-minimal-3-oxford-blue.yaml b/themes/g-dark-minimal-3-oxford-blue.yaml deleted file mode 100644 index 8075eaad..00000000 --- a/themes/g-dark-minimal-3-oxford-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark-minimal-3 (Oxford Blue)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#263137" - fg: "#DCF2F7" - black: "#68788D" - red: "#EE405D" - green: "#A1DF45" - yellow: "#EEE151" - blue: "#4377E8" - magenta: "#B66EE6" - cyan: "#55B9E1" - white: "#EEE6E6" - brightBlack: "#557483" - brightRed: "#DF2040" - brightGreen: "#42CD2D" - brightYellow: "#EAF517" - brightBlue: "#3F76ED" - brightMagenta: "#9B36DF" - brightCyan: "#59CAF7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 232 - pair: null - contrast: - fg: 91.7 - black: 25.4 - red: 32.5 - green: 71.3 - yellow: 81.4 - blue: 28.4 - magenta: 36.7 - cyan: 53.5 - white: 87.8 - brightBlack: 22.3 - brightRed: 25.7 - brightGreen: 56.7 - brightYellow: 89.9 - brightBlue: 28.3 - brightMagenta: 21.7 - brightCyan: 62.4 - brightWhite: 102.9 diff --git a/themes/g-dark-minimal-midnight.yaml b/themes/g-dark-minimal-midnight.yaml deleted file mode 100644 index 4545d0f2..00000000 --- a/themes/g-dark-minimal-midnight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark-minimal (Midnight)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#102740" - fg: "#99A7B1" - black: "#5F6D7F" - red: "#EE405D" - green: "#A1DF45" - yellow: "#EEE151" - blue: "#4377E8" - magenta: "#B66EE6" - cyan: "#55B9E1" - white: "#EEE6E6" - brightBlack: "#49616C" - brightRed: "#DF2040" - brightGreen: "#42CD2D" - brightYellow: "#EAF517" - brightBlue: "#3F76ED" - brightMagenta: "#9B36DF" - brightCyan: "#59CAF7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 252 - pair: null - contrast: - fg: 50.3 - black: 22.3 - red: 34.3 - green: 73.1 - yellow: 83.2 - blue: 30.2 - magenta: 38.5 - cyan: 55.2 - white: 89.6 - brightBlack: 16.3 - brightRed: 27.5 - brightGreen: 58.5 - brightYellow: 91.7 - brightBlue: 30.1 - brightMagenta: 23.5 - brightCyan: 64.2 - brightWhite: 104.7 diff --git a/themes/g-dark-one-love-black-pearl.yaml b/themes/g-dark-one-love-black-pearl.yaml deleted file mode 100644 index 51493695..00000000 --- a/themes/g-dark-one-love-black-pearl.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark-one-love (Black Pearl)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#081A20" - fg: "#CEDBDB" - black: "#5D6B7D" - red: "#EE405D" - green: "#A1DF45" - yellow: "#EEE151" - blue: "#4377E8" - magenta: "#B66EE6" - cyan: "#55B9E1" - white: "#EEE6E6" - brightBlack: "#425A65" - brightRed: "#DF2040" - brightGreen: "#42CD2D" - brightYellow: "#EAF517" - brightBlue: "#3F76ED" - brightMagenta: "#9B36DF" - brightCyan: "#59CAF7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 222 - pair: null - contrast: - fg: 82 - black: 23.5 - red: 36.4 - green: 75.1 - yellow: 85.3 - blue: 32.2 - magenta: 40.5 - cyan: 57.3 - white: 91.6 - brightBlack: 15.6 - brightRed: 29.6 - brightGreen: 60.6 - brightYellow: 93.8 - brightBlue: 32.2 - brightMagenta: 25.5 - brightCyan: 66.2 - brightWhite: 106.7 diff --git a/themes/g-dark-one-love.yaml b/themes/g-dark-one-love.yaml deleted file mode 100644 index 4cf6ea58..00000000 --- a/themes/g-dark-one-love.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark (One Love)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#1C1D27" - fg: "#CEDBDB" - black: "#59677A" - red: "#EE405D" - green: "#A1DF45" - yellow: "#EEE151" - blue: "#4377E8" - magenta: "#B66EE6" - cyan: "#55B9E1" - white: "#EEE6E6" - brightBlack: "#4A6473" - brightRed: "#DF2040" - brightGreen: "#42CD2D" - brightYellow: "#EAF517" - brightBlue: "#3F76ED" - brightMagenta: "#9B36DF" - brightCyan: "#59CAF7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 280 - pair: null - contrast: - fg: 81.3 - black: 21.2 - red: 35.7 - green: 74.5 - yellow: 84.6 - blue: 31.6 - magenta: 39.9 - cyan: 56.7 - white: 91 - brightBlack: 19 - brightRed: 28.9 - brightGreen: 59.9 - brightYellow: 93.1 - brightBlue: 31.5 - brightMagenta: 24.9 - brightCyan: 65.6 - brightWhite: 106.1 diff --git a/themes/g-dark-shader-h-ck3r-midnight-moss.yaml b/themes/g-dark-shader-h-ck3r-midnight-moss.yaml deleted file mode 100644 index 0cd3fe9c..00000000 --- a/themes/g-dark-shader-h-ck3r-midnight-moss.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark-Shader - H@ck3r (Midnight Moss)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#030C0C" - fg: "#B5DFCA" - black: "#648464" - red: "#F23857" - green: "#9FDA47" - yellow: "#F5E044" - blue: "#5B8DF8" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#EDECEC" - brightBlack: "#576E6E" - brightRed: "#E92445" - brightGreen: "#4BDD1A" - brightYellow: "#E4D828" - brightBlue: "#175DF4" - brightMagenta: "#C792EA" - brightCyan: "#3CCFE9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 195 - pair: null - contrast: - fg: 81.2 - black: 32.7 - red: 37.3 - green: 73.5 - yellow: 86.7 - blue: 42.9 - magenta: 54.6 - cyan: 79.1 - white: 95.4 - brightBlack: 24.4 - brightRed: 33.2 - brightGreen: 69.6 - brightYellow: 80.5 - brightBlue: 25.8 - brightMagenta: 54.6 - brightCyan: 67.7 - brightWhite: 107.7 diff --git a/themes/g-dark-shader-haiti.yaml b/themes/g-dark-shader-haiti.yaml deleted file mode 100644 index 8ef80fe2..00000000 --- a/themes/g-dark-shader-haiti.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark-Shader (Haiti)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#270B47" - fg: "#E4C8FD" - black: "#5E7486" - red: "#C92541" - green: "#36CE28" - yellow: "#DDC125" - blue: "#2459CE" - magenta: "#8628C5" - cyan: "#1482AD" - white: "#E9E5E5" - brightBlack: "#516B77" - brightRed: "#F73051" - brightGreen: "#12F744" - brightYellow: "#F5E729" - brightBlue: "#2366F5" - brightMagenta: "#A32EF1" - brightCyan: "#02ACF0" - brightWhite: "#D1CECE" -meta: - mode: "dark" - accent: "green" - hue: 299 - pair: null - contrast: - fg: 77.8 - black: 26.1 - red: 24.1 - green: 60 - yellow: 67.8 - blue: 19.7 - magenta: 18.1 - cyan: 30.1 - white: 89.7 - brightBlack: 21.7 - brightRed: 35.9 - brightGreen: 80.6 - brightYellow: 88 - brightBlue: 26.7 - brightMagenta: 26.8 - brightCyan: 50.4 - brightWhite: 75.4 diff --git a/themes/g-dark-shader-mirage.yaml b/themes/g-dark-shader-mirage.yaml deleted file mode 100644 index f68298c7..00000000 --- a/themes/g-dark-shader-mirage.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark-Shader (Mirage)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#190B29" - fg: "#DFB2DD" - black: "#B165A0" - red: "#C92541" - green: "#36CE28" - yellow: "#DDC125" - blue: "#2459CE" - magenta: "#8628C5" - cyan: "#1482AD" - white: "#E9E5E5" - brightBlack: "#845C83" - brightRed: "#F73051" - brightGreen: "#12F744" - brightYellow: "#F5E729" - brightBlue: "#2366F5" - brightMagenta: "#A32EF1" - brightCyan: "#02ACF0" - brightWhite: "#D1CECE" -meta: - mode: "dark" - accent: "green" - hue: 303 - pair: null - contrast: - fg: 68 - black: 33.8 - red: 25.3 - green: 61.2 - yellow: 69 - blue: 20.9 - magenta: 19.3 - cyan: 31.3 - white: 90.9 - brightBlack: 23.9 - brightRed: 37.1 - brightGreen: 81.8 - brightYellow: 89.2 - brightBlue: 27.9 - brightMagenta: 28 - brightCyan: 51.6 - brightWhite: 76.6 diff --git a/themes/g-dark-shift-midnight-moss.yaml b/themes/g-dark-shift-midnight-moss.yaml deleted file mode 100644 index 50a40613..00000000 --- a/themes/g-dark-shift-midnight-moss.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark-Shift (Midnight Moss)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#030B0B" - fg: "#E1E5E5" - black: "#78A795" - red: "#F23857" - green: "#9FDA47" - yellow: "#F5E044" - blue: "#5B8DF8" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#D6D9D8" - brightBlack: "#637A7A" - brightRed: "#E92445" - brightGreen: "#4BDD1A" - brightYellow: "#E4D828" - brightBlue: "#175DF4" - brightMagenta: "#C792EA" - brightCyan: "#3CCFE9" - brightWhite: "#BCD2D2" -meta: - mode: "dark" - accent: "green" - hue: 196 - pair: null - contrast: - fg: 90.4 - black: 49.3 - red: 37.3 - green: 73.6 - yellow: 86.7 - blue: 43 - magenta: 54.6 - cyan: 79.1 - white: 83 - brightBlack: 29.8 - brightRed: 33.2 - brightGreen: 69.6 - brightYellow: 80.5 - brightBlue: 25.8 - brightMagenta: 54.6 - brightCyan: 67.8 - brightWhite: 76.5 diff --git a/themes/g-dark-shift-vulcan.yaml b/themes/g-dark-shift-vulcan.yaml deleted file mode 100644 index c4c3c3d8..00000000 --- a/themes/g-dark-shift-vulcan.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark-shift (Vulcan)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#17181F" - fg: "#E1E5E5" - black: "#5A687A" - red: "#EE405D" - green: "#A1DF45" - yellow: "#EEE151" - blue: "#4377E8" - magenta: "#B66EE6" - cyan: "#55B9E1" - white: "#EEE6E6" - brightBlack: "#435964" - brightRed: "#DF2040" - brightGreen: "#42CD2D" - brightYellow: "#EAF517" - brightBlue: "#3F76ED" - brightMagenta: "#9B36DF" - brightCyan: "#59CAF7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 279 - pair: null - contrast: - fg: 89.3 - black: 22.2 - red: 36.4 - green: 75.1 - yellow: 85.3 - blue: 32.2 - magenta: 40.5 - cyan: 57.3 - white: 91.6 - brightBlack: 15.3 - brightRed: 29.6 - brightGreen: 60.6 - brightYellow: 93.8 - brightBlue: 32.2 - brightMagenta: 25.5 - brightCyan: 66.2 - brightWhite: 106.7 diff --git a/themes/g-dark-valhalla.yaml b/themes/g-dark-valhalla.yaml deleted file mode 100644 index 09e32ca8..00000000 --- a/themes/g-dark-valhalla.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "G Dark (Valhalla)" -source: - marketplace_id: "Stonec0der.g-dark-theme" - version: "5.0.1" - installs: 10984 - rating: 5 - ratings: 3 - author: "stonecoder" - repo: "https://github.com/stoneC0der/g-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" -colors: - bg: "#292F46" - fg: "#C4D2E0" - black: "#708095" - red: "#EE405D" - green: "#A1DF45" - yellow: "#EEE151" - blue: "#4377E8" - magenta: "#B66EE6" - cyan: "#55B9E1" - white: "#EEE6E6" - brightBlack: "#59737F" - brightRed: "#DF2040" - brightGreen: "#42CD2D" - brightYellow: "#EAF517" - brightBlue: "#3F76ED" - brightMagenta: "#9B36DF" - brightCyan: "#59CAF7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 273 - pair: null - contrast: - fg: 73.1 - black: 28.9 - red: 32.4 - green: 71.1 - yellow: 81.3 - blue: 28.2 - magenta: 36.5 - cyan: 53.3 - white: 87.6 - brightBlack: 21.9 - brightRed: 25.6 - brightGreen: 56.6 - brightYellow: 89.8 - brightBlue: 28.2 - brightMagenta: 21.5 - brightCyan: 62.2 - brightWhite: 102.7 diff --git a/themes/g-i-reaper.yaml b/themes/g-i-reaper.yaml index f164e55a..0c1db71d 100644 --- a/themes/g-i-reaper.yaml +++ b/themes/g-i-reaper.yaml @@ -8,6 +8,7 @@ source: author: "General Intelligence" repo: "https://github.com/gengence/themes" url: "https://marketplace.visualstudio.com/items?itemName=gengence.gi-themes" + formats: null colors: bg: "#1A1D22" fg: "#ADBAC7" diff --git a/themes/g-i-seraph.yaml b/themes/g-i-seraph.yaml index 48b269f3..41272513 100644 --- a/themes/g-i-seraph.yaml +++ b/themes/g-i-seraph.yaml @@ -8,6 +8,7 @@ source: author: "General Intelligence" repo: "https://github.com/gengence/themes" url: "https://marketplace.visualstudio.com/items?itemName=gengence.gi-themes" + formats: null colors: bg: "#FFFFF8" fg: "#1F2328" diff --git a/themes/g3-gray.yaml b/themes/g3-gray.yaml index de92f5db..6479f432 100644 --- a/themes/g3-gray.yaml +++ b/themes/g3-gray.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Rafinha-g3.vexiun-theme" version: "1.0.1" installs: 20 + rating: 0 + ratings: 0 author: "Rafinha-g3" repo: "https://github.com/ThalysonRibeiro/vexiun-theme" url: "https://marketplace.visualstudio.com/items?itemName=Rafinha-g3.vexiun-theme" + formats: null colors: bg: "#282A36" fg: "#FFFFFF" diff --git a/themes/gagarin-theme.yaml b/themes/gagarin-theme.yaml index 14d56643..62319f9e 100644 --- a/themes/gagarin-theme.yaml +++ b/themes/gagarin-theme.yaml @@ -8,6 +8,7 @@ source: author: "Gagarin Theme" repo: "https://github.com/yuricplus/gagarintheme" url: "https://marketplace.visualstudio.com/items?itemName=GagarinTheme.gagarin" + formats: null colors: bg: "#111111" fg: "#FFFFFF" diff --git a/themes/galactic-flavored.yaml b/themes/galactic-flavored.yaml index 0e3e01a9..e2be4137 100644 --- a/themes/galactic-flavored.yaml +++ b/themes/galactic-flavored.yaml @@ -8,6 +8,7 @@ source: author: "voit" repo: "https://github.com/voitaraujo/galactic-flavored" url: "https://marketplace.visualstudio.com/items?itemName=voit.galactic-flavored" + formats: null colors: bg: "#0C0C0C" fg: "#F2F2F2" diff --git a/themes/galactus.yaml b/themes/galactus.yaml deleted file mode 100644 index 5a87f2ae..00000000 --- a/themes/galactus.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "galactus" -source: - marketplace_id: "ibrhalilaydn.galactus-theme" - version: "0.1.0" - installs: 305 - author: "ibrhalil" - repo: "https://github.com/ibrhalil/galactus-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ibrhalilaydn.galactus-theme" -colors: - bg: "#0C0414" - fg: "#999999" - black: "#242424" - red: "#8A2F58" - green: "#7E63B2" - yellow: "#914E89" - blue: "#3E6287" - magenta: "#5E468C" - cyan: "#2B7694" - white: "#899CA1" - brightBlack: "#474747" - brightRed: "#CF4F88" - brightGreen: "#53A6A6" - brightYellow: "#BF85CC" - brightBlue: "#4779B3" - brightMagenta: "#7F62B3" - brightCyan: "#47959E" - brightWhite: "#C0C0C0" -meta: - mode: "dark" - accent: "red" - hue: 307 - contrast: - fg: 47.1 - black: 0 - red: 15 - green: 28 - yellow: 23.2 - blue: 20.2 - magenta: 15.4 - cyan: 26.7 - white: 46.9 - brightBlack: 10.8 - brightRed: 34.2 - brightGreen: 47.3 - brightYellow: 47.6 - brightBlue: 30.4 - brightMagenta: 27.9 - brightCyan: 39.6 - brightWhite: 68.5 diff --git a/themes/galaxia.yaml b/themes/galaxia.yaml index e12bdd83..eee38dd5 100644 --- a/themes/galaxia.yaml +++ b/themes/galaxia.yaml @@ -8,6 +8,7 @@ source: author: "Lucas Bandeira" repo: "https://github.com/LucasBandeira-MJ/Galaxia-Theme" url: "https://marketplace.visualstudio.com/items?itemName=LucasBandeira.galaxia" + formats: null colors: bg: "#131D36" fg: "#ECECEC" diff --git a/themes/galaxian.yaml b/themes/galaxian.yaml index c5dcd6f5..5d5a6999 100644 --- a/themes/galaxian.yaml +++ b/themes/galaxian.yaml @@ -8,6 +8,7 @@ source: author: "evprkr" repo: null url: "https://marketplace.visualstudio.com/items?itemName=evprkr.galaxian-vs" + formats: null colors: bg: "#1C1C22" fg: "#F1F1F1" diff --git a/themes/galaxytheme.yaml b/themes/galaxytheme.yaml deleted file mode 100644 index 9a08cf6f..00000000 --- a/themes/galaxytheme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GalaxyTheme+" -source: - marketplace_id: "JoaoBatistaJr.GalaxyTheme" - version: "1.0.3" - installs: 1292 - rating: 5 - ratings: 2 - author: "JoaoBatistaJr" - repo: "https://github.com/JoaoBatistaJr/GalaxyTheme" - url: "https://marketplace.visualstudio.com/items?itemName=JoaoBatistaJr.GalaxyTheme" -colors: - bg: "#202024" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 105.7 - black: 0 - red: 25.6 - green: 51.8 - yellow: 84.5 - blue: 26.3 - magenta: 28.6 - cyan: 46.4 - white: 88.9 - brightBlack: 20.9 - brightRed: 37.4 - brightGreen: 62.4 - brightYellow: 94.5 - brightBlue: 38.8 - brightMagenta: 44.2 - brightCyan: 54.2 - brightWhite: 88.9 diff --git a/themes/galizur.yaml b/themes/galizur.yaml index 394a528a..20cf286f 100644 --- a/themes/galizur.yaml +++ b/themes/galizur.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "razielanarki.vscode-galizur-theme" version: "1.3.11" installs: 233 + rating: 0 + ratings: 0 author: "Raziel Anarki" repo: "https://github.com/razielanarki/vscode-galizur-theme" url: "https://marketplace.visualstudio.com/items?itemName=razielanarki.vscode-galizur-theme" + formats: null colors: bg: "#2A2C2E" fg: "#AABBCC" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 60.4 black: 0 diff --git a/themes/game-mode.yaml b/themes/game-mode.yaml deleted file mode 100644 index 3bdc73c0..00000000 --- a/themes/game-mode.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GAME MODE" -source: - marketplace_id: "sfkmt.game-mode-theme" - version: "1.0.4" - installs: 856 - rating: 0 - ratings: 0 - author: "sfkmt" - repo: "https://github.com/sfkmt/gamemode" - url: "https://marketplace.visualstudio.com/items?itemName=sfkmt.game-mode-theme" -colors: - bg: "#0A0E1A" - fg: "#00FF88" - black: "#000000" - red: "#FF0088" - green: "#00FF88" - yellow: "#FFFF00" - blue: "#00DDFF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#FF4488" - brightGreen: "#00FFAA" - brightYellow: "#FFFF88" - brightBlue: "#88DDFF" - brightMagenta: "#FF88FF" - brightCyan: "#88FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 269 - pair: null - contrast: - fg: 87.4 - black: 0 - red: 39.2 - green: 87.4 - yellow: 102.3 - blue: 74.8 - magenta: 45.9 - cyan: 91.8 - white: 107.5 - brightBlack: 22.7 - brightRed: 42.8 - brightGreen: 88.3 - brightYellow: 103.5 - brightBlue: 78.8 - brightMagenta: 62.3 - brightCyan: 95.4 - brightWhite: 107.5 diff --git a/themes/gameboy-classic-dark.yaml b/themes/gameboy-classic-dark.yaml deleted file mode 100644 index 76eca733..00000000 --- a/themes/gameboy-classic-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GameBoy Classic Dark" -source: - marketplace_id: "sanchodelniglo.gameboy-classic-theme" - version: "0.0.4" - installs: 835 - rating: 0 - ratings: 0 - author: "sanchodelniglo" - repo: "https://github.com/Sanchodelniglo/gameboy-classic-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sanchodelniglo.gameboy-classic-theme" -colors: - bg: "#234823" - fg: "#9BBC0F" - black: "#0F380F" - red: "#9A2257" - green: "#9BBC0F" - yellow: "#B3D80E" - blue: "#494786" - magenta: "#9A2257" - cyan: "#88C070" - white: "#C4BEBB" - brightBlack: "#526525" - brightRed: "#B84A7A" - brightGreen: "#B3D80E" - brightYellow: "#E7FCB8" - brightBlue: "#5855A0" - brightMagenta: "#B84A7A" - brightCyan: "#88C070" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "green" - hue: 144 - pair: "GameBoy Classic Light" - contrast: - fg: 49.4 - black: 0 - red: 0 - green: 49.4 - yellow: 64.5 - blue: 0 - magenta: 0 - cyan: 50.5 - white: 58.2 - brightBlack: 10 - brightRed: 18.6 - brightGreen: 64.5 - brightYellow: 90.5 - brightBlue: 9.8 - brightMagenta: 18.6 - brightCyan: 50.5 - brightWhite: 93.1 diff --git a/themes/gameboy-classic-light.yaml b/themes/gameboy-classic-light.yaml deleted file mode 100644 index f9ddcbee..00000000 --- a/themes/gameboy-classic-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GameBoy Classic Light" -source: - marketplace_id: "sanchodelniglo.gameboy-classic-theme" - version: "0.0.4" - installs: 835 - rating: 0 - ratings: 0 - author: "sanchodelniglo" - repo: "https://github.com/Sanchodelniglo/gameboy-classic-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sanchodelniglo.gameboy-classic-theme" -colors: - bg: "#C0D297" - fg: "#0F380F" - black: "#0F380F" - red: "#9A2257" - green: "#79970B" - yellow: "#9BBC0F" - blue: "#494786" - magenta: "#9A2257" - cyan: "#306850" - white: "#C4BEBB" - brightBlack: "#526525" - brightRed: "#B84A7A" - brightGreen: "#9BBC0F" - brightYellow: "#B3D80E" - brightBlue: "#5855A0" - brightMagenta: "#B84A7A" - brightCyan: "#88C070" - brightWhite: "#F8F8F2" -meta: - mode: "light" - accent: "green" - hue: 122 - pair: "GameBoy Classic Dark" - contrast: - fg: 69 - black: 69 - red: 55.1 - green: 30.7 - yellow: 12.6 - blue: 58.3 - magenta: 55.1 - cyan: 51.9 - white: 0 - brightBlack: 51.8 - brightRed: 43 - brightGreen: 12.6 - brightYellow: 0 - brightBlue: 51.9 - brightMagenta: 43 - brightCyan: 11.6 - brightWhite: 26.7 diff --git a/themes/gamma-fork.yaml b/themes/gamma-fork.yaml deleted file mode 100644 index 7b427c3f..00000000 --- a/themes/gamma-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gamma - Fork" -source: - marketplace_id: "xynny.gamma-theme" - version: "0.0.1" - installs: 242 - rating: 0 - ratings: 0 - author: "xynny" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=xynny.gamma-theme" -colors: - bg: "#001D1D" - fg: "#0EC4B4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 195 - pair: null - contrast: - fg: 58.3 - black: 0 - red: 26.4 - green: 52.6 - yellow: 85.3 - blue: 27.1 - magenta: 29.4 - cyan: 47.2 - white: 89.7 - brightBlack: 21.7 - brightRed: 38.2 - brightGreen: 63.2 - brightYellow: 95.3 - brightBlue: 39.6 - brightMagenta: 45 - brightCyan: 55 - brightWhite: 89.7 diff --git a/themes/gamma.yaml b/themes/gamma.yaml index e925549b..c1da0e46 100644 --- a/themes/gamma.yaml +++ b/themes/gamma.yaml @@ -1,15 +1,16 @@ name: "Gamma" source: - marketplace_id: "VenkataramanaSuryanarayanan.gamma" - version: "1.0.0" - installs: 2348 - rating: 5 - ratings: 1 - author: "Venkataramana Suryanarayanan" - repo: "https://github.com/HardCodeProgrammer/gamma-theme" - url: "https://marketplace.visualstudio.com/items?itemName=VenkataramanaSuryanarayanan.gamma" + marketplace_id: "xynny.gamma-theme" + version: "0.0.1" + installs: 242 + rating: 0 + ratings: 0 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.gamma-theme" + formats: null colors: - bg: "#033535" + bg: "#001D1D" fg: "#0EC4B4" black: "#000000" red: "#CD3131" @@ -33,20 +34,20 @@ meta: hue: 195 pair: null contrast: - fg: 54.5 + fg: 58.3 black: 0 - red: 22.6 - green: 48.9 - yellow: 81.5 - blue: 23.3 - magenta: 25.6 - cyan: 43.4 - white: 85.9 - brightBlack: 17.9 - brightRed: 34.5 - brightGreen: 59.4 - brightYellow: 91.5 - brightBlue: 35.9 - brightMagenta: 41.3 - brightCyan: 51.3 - brightWhite: 85.9 + red: 26.4 + green: 52.6 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.7 diff --git a/themes/ganbaru-blue.yaml b/themes/ganbaru-blue.yaml deleted file mode 100644 index 85471d9d..00000000 --- a/themes/ganbaru-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ganbaru blue" -source: - marketplace_id: "Marlodev.ganbaru" - version: "1.0.0" - installs: 1850 - rating: 5 - ratings: 1 - author: "Marlodev" - repo: "https://github.com/marlodevhub/ganbaru" - url: "https://marketplace.visualstudio.com/items?itemName=Marlodev.ganbaru" -colors: - bg: "#151B23" - fg: "#D0DBDE" - black: "#293039" - red: "#FF6D7E" - green: "#A2E57B" - yellow: "#F3ACE2" - blue: "#FFB270" - magenta: "#BAA0F8" - cyan: "#7CD5F1" - white: "#D0DBDE" - brightBlack: "#6B7678" - brightRed: "#FF6D7E" - brightGreen: "#A2E57B" - brightYellow: "#F3ACE2" - brightBlue: "#FFB270" - brightMagenta: "#BAA0F8" - brightCyan: "#7CD5F1" - brightWhite: "#D0DBDE" -meta: - mode: "dark" - accent: "orange" - hue: 256 - pair: null - contrast: - fg: 82.1 - black: 0 - red: 48.6 - green: 78.6 - yellow: 68.6 - blue: 68.9 - magenta: 57.2 - cyan: 72.5 - white: 82.1 - brightBlack: 27.8 - brightRed: 48.6 - brightGreen: 78.6 - brightYellow: 68.6 - brightBlue: 68.9 - brightMagenta: 57.2 - brightCyan: 72.5 - brightWhite: 82.1 diff --git a/themes/ganbaru-dark.yaml b/themes/ganbaru-dark.yaml deleted file mode 100644 index e7bb1a78..00000000 --- a/themes/ganbaru-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ganbaru Dark" -source: - marketplace_id: "Marlodev.ganbaru" - version: "1.0.0" - installs: 1850 - rating: 5 - ratings: 1 - author: "Marlodev" - repo: "https://github.com/marlodevhub/ganbaru" - url: "https://marketplace.visualstudio.com/items?itemName=Marlodev.ganbaru" -colors: - bg: "#17181D" - fg: "#D0DBDE" - black: "#303338" - red: "#FF6D7E" - green: "#A2E57B" - yellow: "#F3ACE2" - blue: "#FFB270" - magenta: "#BAA0F8" - cyan: "#7CD5F1" - white: "#D0DBDE" - brightBlack: "#6B7678" - brightRed: "#FF6D7E" - brightGreen: "#A2E57B" - brightYellow: "#F3ACE2" - brightBlue: "#FFB270" - brightMagenta: "#BAA0F8" - brightCyan: "#7CD5F1" - brightWhite: "#D0DBDE" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82.4 - black: 0 - red: 48.9 - green: 78.9 - yellow: 68.9 - blue: 69.2 - magenta: 57.4 - cyan: 72.8 - white: 82.4 - brightBlack: 28 - brightRed: 48.9 - brightGreen: 78.9 - brightYellow: 68.9 - brightBlue: 69.2 - brightMagenta: 57.4 - brightCyan: 72.8 - brightWhite: 82.4 diff --git a/themes/gantheory-dark.yaml b/themes/gantheory-dark.yaml deleted file mode 100644 index 75f6897e..00000000 --- a/themes/gantheory-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gantheory Dark" -source: - marketplace_id: "gantheory.theme-gantheory" - version: "0.0.2" - installs: 4724 - rating: 5 - ratings: 1 - author: "gantheory" - repo: "https://github.com/gantheory/vscode-theme-gantheory" - url: "https://marketplace.visualstudio.com/items?itemName=gantheory.theme-gantheory" -colors: - bg: "#040404" - fg: "#E4E4E4" - black: "#000000" - red: "#F44336" - green: "#8BC34A" - yellow: "#FFEB3B" - blue: "#03A9F4" - magenta: "#E92663" - cyan: "#00BCD4" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#EF9A9A" - brightGreen: "#C5E1A5" - brightYellow: "#FFF59D" - brightBlue: "#81D4FA" - brightMagenta: "#F48FB1" - brightCyan: "#80DEEA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 90.4 - black: 0 - red: 38.7 - green: 61.3 - yellow: 93.3 - blue: 51.3 - magenta: 34.1 - cyan: 57.5 - white: 72.7 - brightBlack: 23.9 - brightRed: 60.1 - brightGreen: 82.8 - brightYellow: 99.5 - brightBlue: 74.3 - brightMagenta: 58.4 - brightCyan: 78 - brightWhite: 107.9 diff --git a/themes/ganyu-theme.yaml b/themes/ganyu-theme.yaml index b8ea9bbc..d4bc6791 100644 --- a/themes/ganyu-theme.yaml +++ b/themes/ganyu-theme.yaml @@ -8,6 +8,7 @@ source: author: "jeooo`" repo: "https://github.com/jeoooo/ganyu-theme" url: "https://marketplace.visualstudio.com/items?itemName=jeooo.ganyu-theme" + formats: null colors: bg: "#D9EEFF" fg: "#596CD5" diff --git a/themes/gapstyle-vs-dark-modern.yaml b/themes/gapstyle-vs-dark-modern.yaml deleted file mode 100644 index 8d768790..00000000 --- a/themes/gapstyle-vs-dark-modern.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GapStyle VS Dark Modern" -source: - marketplace_id: "gaplo917.gapstylevs" - version: "2.2.0" - installs: 8666 - rating: 5 - ratings: 6 - author: "Gary Lo" - repo: "https://github.com/gaplo917/GapStyle" - url: "https://marketplace.visualstudio.com/items?itemName=gaplo917.gapstylevs" -colors: - bg: "#1F1F1F" - fg: "#CCCCCC" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 73.7 - black: 0 - red: 41.1 - green: 61.3 - yellow: 69.6 - blue: 53.7 - magenta: 44.2 - cyan: 53.6 - white: 82.1 - brightBlack: 34.6 - brightRed: 37.5 - brightGreen: 61.3 - brightYellow: 69.6 - brightBlue: 40.5 - brightMagenta: 11.8 - brightCyan: 53.6 - brightWhite: 82.1 diff --git a/themes/gapstyle-vs.yaml b/themes/gapstyle-vs.yaml deleted file mode 100644 index 5af0384a..00000000 --- a/themes/gapstyle-vs.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GapStyle VS" -source: - marketplace_id: "gaplo917.gapstylevs" - version: "2.2.0" - installs: 8666 - rating: 5 - ratings: 6 - author: "Gary Lo" - repo: "https://github.com/gaplo917/GapStyle" - url: "https://marketplace.visualstudio.com/items?itemName=gaplo917.gapstylevs" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 56.2 - black: 0 - red: 38.9 - green: 59.1 - yellow: 67.4 - blue: 51.5 - magenta: 41.9 - cyan: 51.4 - white: 79.8 - brightBlack: 32.3 - brightRed: 35.2 - brightGreen: 59.1 - brightYellow: 67.4 - brightBlue: 38.3 - brightMagenta: 9.5 - brightCyan: 51.4 - brightWhite: 79.8 diff --git a/themes/garbage-oracle-dark.yaml b/themes/garbage-oracle-dark.yaml index 30be5334..9f570ea5 100644 --- a/themes/garbage-oracle-dark.yaml +++ b/themes/garbage-oracle-dark.yaml @@ -8,6 +8,9 @@ source: author: "sansbrina" repo: "https://github.com/sansbrina/garbage-oracle-themes" url: "https://marketplace.visualstudio.com/items?itemName=sansbrina.garbage-oracle" + formats: + iterm2: "https://raw.githubusercontent.com/sansbrina/garbage-oracle-themes/release/iTerm/garbage-oracle-dark.itermcolors" + windows-terminal: "https://raw.githubusercontent.com/sansbrina/garbage-oracle-themes/release/windows terminal/windows-terminal-light.json" colors: bg: "#371D32" fg: "#F2E2F1" diff --git a/themes/garbage-oracle-light.yaml b/themes/garbage-oracle-light.yaml index c7a462c3..0cc58aa6 100644 --- a/themes/garbage-oracle-light.yaml +++ b/themes/garbage-oracle-light.yaml @@ -8,6 +8,9 @@ source: author: "sansbrina" repo: "https://github.com/sansbrina/garbage-oracle-themes" url: "https://marketplace.visualstudio.com/items?itemName=sansbrina.garbage-oracle" + formats: + iterm2: "https://raw.githubusercontent.com/sansbrina/garbage-oracle-themes/release/iTerm/garbage-oracle-dark.itermcolors" + windows-terminal: "https://raw.githubusercontent.com/sansbrina/garbage-oracle-themes/release/windows terminal/windows-terminal-light.json" colors: bg: "#F2E2F1" fg: "#870058" diff --git a/themes/gatito-next-theme.yaml b/themes/gatito-next-theme.yaml index ed1ae3aa..00d0c038 100644 --- a/themes/gatito-next-theme.yaml +++ b/themes/gatito-next-theme.yaml @@ -8,6 +8,7 @@ source: author: "Kevin S Perrine" repo: "https://github.com/kevinsperrine/gatito-next-theme" url: "https://marketplace.visualstudio.com/items?itemName=kevinsperrine.gatito-next-theme" + formats: null colors: bg: "#242B2E" fg: "#D4D4D4" diff --git a/themes/gatito-nightly-red.yaml b/themes/gatito-nightly-red.yaml index 7740fe83..06f51b56 100644 --- a/themes/gatito-nightly-red.yaml +++ b/themes/gatito-nightly-red.yaml @@ -8,6 +8,7 @@ source: author: "TaouMou" repo: "https://github.com/TaouMou/gatito-nightly" url: "https://marketplace.visualstudio.com/items?itemName=TaouMou.gatito-nightly" + formats: null colors: bg: "#1A1F23" fg: "#C0D2D3" diff --git a/themes/gatito-theme.yaml b/themes/gatito-theme.yaml index 09c96b6a..296b7ac8 100644 --- a/themes/gatito-theme.yaml +++ b/themes/gatito-theme.yaml @@ -2,12 +2,13 @@ name: "Gatito Theme" source: marketplace_id: "pawelgrzybek.gatito-theme" version: "0.2.3" - installs: 139147 + installs: 139168 rating: 4.97 ratings: 29 author: "Paweł Grzybek" repo: "https://github.com/pawelgrzybek/gatito-theme" url: "https://marketplace.visualstudio.com/items?itemName=pawelgrzybek.gatito-theme" + formats: null colors: bg: "#242B2E" fg: "#D4D4D4" diff --git a/themes/gatomontesdark2.yaml b/themes/gatomontesdark2.yaml index 38320ab9..d889480a 100644 --- a/themes/gatomontesdark2.yaml +++ b/themes/gatomontesdark2.yaml @@ -8,6 +8,7 @@ source: author: "GatomontesRoseIII" repo: "https://github.com/ramirezherreranoeelvis/gatitomontes" url: "https://marketplace.visualstudio.com/items?itemName=GatomontesRoseIII.gatomontes" + formats: null colors: bg: "#080613" fg: "#BFBDB6" diff --git a/themes/gauss-thetheme.yaml b/themes/gauss-thetheme.yaml deleted file mode 100644 index 539451ea..00000000 --- a/themes/gauss-thetheme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gauss-TheTheme" -source: - marketplace_id: "GaussTheTheme.Gauss-TheTheme" - version: "0.0.8" - installs: 352 - rating: 5 - ratings: 1 - author: "Gauss-TheTheme" - repo: "https://github.com/torresdiegoal/Gauss-TheTheme" - url: "https://marketplace.visualstudio.com/items?itemName=GaussTheTheme.Gauss-TheTheme" -colors: - bg: "#1E1E1E" - fg: "#EBDBB2" - black: "#3C3836" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#FB4934" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#8EC07C" - brightWhite: "#EBDBB2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83.6 - black: 0 - red: 24.4 - green: 42.1 - yellow: 51.7 - blue: 30.8 - magenta: 30.9 - cyan: 41.1 - white: 46.4 - brightBlack: 35.5 - brightRed: 39.3 - brightGreen: 60.3 - brightYellow: 71 - brightBlue: 47.8 - brightMagenta: 47.1 - brightCyan: 59.3 - brightWhite: 83.6 diff --git a/themes/gckn.yaml b/themes/gckn.yaml deleted file mode 100644 index 13ee99c7..00000000 --- a/themes/gckn.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "gckn" -source: - marketplace_id: "noxaled.gck-theme" - version: "0.5.1" - installs: 6866 - rating: 0 - ratings: 0 - author: "noxaled" - repo: "https://github.com/getCodingKnowledge/vsc-gck-theme" - url: "https://marketplace.visualstudio.com/items?itemName=noxaled.gck-theme" -colors: - bg: "#16181A" - fg: "#C7D0D9" - black: "#222528" - red: "#BA0E2E" - green: "#B3CC57" - yellow: "#EF746F" - blue: "#FFBE40" - magenta: "#3FB4C5" - cyan: "#F86F50" - white: "#D6DDE3" - brightBlack: "#454B51" - brightRed: "#F03E5F" - brightGreen: "#D6E4A5" - brightYellow: "#F9CDCB" - brightBlue: "#FFE1A6" - brightMagenta: "#8DD3DD" - brightCyan: "#FCC0B2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 76.3 - black: 0 - red: 20.4 - green: 68.3 - yellow: 46.8 - blue: 73.1 - magenta: 52.9 - cyan: 46.9 - white: 84.3 - brightBlack: 11 - brightRed: 36.7 - brightGreen: 85.1 - brightYellow: 81.4 - brightBlue: 89.6 - brightMagenta: 72.1 - brightCyan: 75.8 - brightWhite: 106.8 diff --git a/themes/gdfunkytheme.yaml b/themes/gdfunkytheme.yaml index d7a3e214..58edc741 100644 --- a/themes/gdfunkytheme.yaml +++ b/themes/gdfunkytheme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "FunkyGodotTheme.godotfunkytheme" version: "0.1.2" installs: 82 + rating: 0 + ratings: 0 author: "FunkyGodotTheme" repo: "https://github.com/SenestroStefano/godotfunkytheme" url: "https://marketplace.visualstudio.com/items?itemName=FunkyGodotTheme.godotfunkytheme" + formats: null colors: bg: "#1D2229" fg: "#EEFFFF" diff --git a/themes/gdscript35.yaml b/themes/gdscript35.yaml index ca371f28..ba591e26 100644 --- a/themes/gdscript35.yaml +++ b/themes/gdscript35.yaml @@ -8,6 +8,7 @@ source: author: "backlight3281" repo: null url: "https://marketplace.visualstudio.com/items?itemName=backlight3281.gdscript35" + formats: null colors: bg: "#202531" fg: "#D4D4D4" diff --git a/themes/geartheme.yaml b/themes/geartheme.yaml index 16fb71ff..727aa408 100644 --- a/themes/geartheme.yaml +++ b/themes/geartheme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "gearczech.geartheme" version: "0.0.1" installs: 14 + rating: 0 + ratings: 0 author: "GearCzech" repo: "https://github.com/GearCzech/geartheme" url: "https://marketplace.visualstudio.com/items?itemName=gearczech.geartheme" + formats: null colors: bg: "#0A1124" fg: "#3759DB" diff --git a/themes/gekkou.yaml b/themes/gekkou.yaml index 3e8edbbc..74961106 100644 --- a/themes/gekkou.yaml +++ b/themes/gekkou.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "niuez.gekkou-theme" version: "0.0.1" installs: 123 + rating: 0 + ratings: 0 author: "niuez" repo: "https://github.com/niuez/vscode-gekkou-theme" url: "https://marketplace.visualstudio.com/items?itemName=niuez.gekkou-theme" + formats: null colors: bg: "#2A3030" fg: "#79889C" diff --git a/themes/gelap.yaml b/themes/gelap.yaml index 68e3f75b..e4ee6060 100644 --- a/themes/gelap.yaml +++ b/themes/gelap.yaml @@ -2,12 +2,13 @@ name: "Gelap" source: marketplace_id: "RyanAdhi.gelap" version: "0.3.0" - installs: 230 + installs: 231 rating: 0 ratings: 0 author: "Ryan Adhi" repo: "https://github.com/ryanadhi/gelap" url: "https://marketplace.visualstudio.com/items?itemName=RyanAdhi.gelap" + formats: null colors: bg: "#000A14" fg: "#9EA7FA" diff --git a/themes/gelato.yaml b/themes/gelato.yaml index 074bb3de..64b0c553 100644 --- a/themes/gelato.yaml +++ b/themes/gelato.yaml @@ -8,6 +8,7 @@ source: author: "Gabriele Meucci" repo: "https://github.com/walele993/fable_a_vsc_theme" url: "https://marketplace.visualstudio.com/items?itemName=walele993.fable-code-theme" + formats: null colors: bg: "#FDFAF5" fg: "#554D44" diff --git a/themes/gelgel.yaml b/themes/gelgel.yaml index 42f0fce7..303370e5 100644 --- a/themes/gelgel.yaml +++ b/themes/gelgel.yaml @@ -8,6 +8,7 @@ source: author: "Lance Wilhelm" repo: "https://github.com/lancewilhelm/gelgel" url: "https://marketplace.visualstudio.com/items?itemName=LanceWilhelm.gelgel" + formats: null colors: bg: "#1B1B1B" fg: "#D7D9CB" diff --git a/themes/gems-theme-default.yaml b/themes/gems-theme-default.yaml index 7bc8e8fb..81d427a1 100644 --- a/themes/gems-theme-default.yaml +++ b/themes/gems-theme-default.yaml @@ -8,6 +8,7 @@ source: author: "Mikaleb" repo: "https://github.com/Mikaleb/Gems-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Mikaleb.gems-theme" + formats: null colors: bg: "#2E3440" fg: "#E9F1FF" diff --git a/themes/gems-theme-light.yaml b/themes/gems-theme-light.yaml index c301496c..0519b262 100644 --- a/themes/gems-theme-light.yaml +++ b/themes/gems-theme-light.yaml @@ -8,6 +8,7 @@ source: author: "Mikaleb" repo: "https://github.com/Mikaleb/Gems-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Mikaleb.gems-theme" + formats: null colors: bg: "#E5E9F0" fg: "#2E3440" diff --git a/themes/gen-theme.yaml b/themes/gen-theme.yaml deleted file mode 100644 index 010de7fa..00000000 --- a/themes/gen-theme.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "gen-theme" -source: - marketplace_id: "GenukaWijenayake.gen" - version: "0.0.2" - installs: 81 - author: "Genuka Wijenayake" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=GenukaWijenayake.gen" -colors: - bg: "#1B1A1A" - fg: "#07DFEA" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 73.6 - black: 0 - red: 26.4 - green: 52.6 - yellow: 85.3 - blue: 27.1 - magenta: 29.4 - cyan: 47.2 - white: 89.7 - brightBlack: 21.7 - brightRed: 38.2 - brightGreen: 63.2 - brightYellow: 95.3 - brightBlue: 39.6 - brightMagenta: 45 - brightCyan: 55 - brightWhite: 89.7 diff --git a/themes/generated-color-theme.yaml b/themes/generated-color-theme.yaml index 9a760850..85e8ce99 100644 --- a/themes/generated-color-theme.yaml +++ b/themes/generated-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "RLabs Inc." repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" + formats: null colors: bg: "#000000" fg: "#EDEDED" diff --git a/themes/genshin-impact-chiori-dark.yaml b/themes/genshin-impact-chiori-dark.yaml deleted file mode 100644 index 50b5fc32..00000000 --- a/themes/genshin-impact-chiori-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Chiori (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#281818" - fg: "#F0E0D0" - black: "#382838" - red: "#F0A898" - green: "#A8D8B8" - yellow: "#E7A43A" - blue: "#D8C8B8" - magenta: "#E7A43A" - cyan: "#E7A43A" - white: "#F0E0D0" - brightBlack: "#A89088" - brightRed: "#F8E8D8" - brightGreen: "#D8F8D8" - brightYellow: "#F8F8D8" - brightBlue: "#D8D0E8" - brightMagenta: "#E7A43A" - brightCyan: "#E7A43A" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "yellow" - hue: 19 - pair: null - contrast: - fg: 87.8 - black: 0 - red: 63.4 - green: 74.5 - yellow: 58.6 - blue: 73.1 - magenta: 58.6 - cyan: 58.6 - white: 87.8 - brightBlack: 43.5 - brightRed: 92.8 - brightGreen: 96.1 - brightYellow: 100.2 - brightBlue: 78.6 - brightMagenta: 58.6 - brightCyan: 58.6 - brightWhite: 106.2 diff --git a/themes/genshin-impact-chiori.yaml b/themes/genshin-impact-chiori.yaml deleted file mode 100644 index ca91c63b..00000000 --- a/themes/genshin-impact-chiori.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Chiori" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#FEFAF6" - fg: "#4A3030" - black: "#4A3030" - red: "#EE6373" - green: "#98B888" - yellow: "#E7A43A" - blue: "#C64413" - magenta: "#A88888" - cyan: "#E7A43A" - white: "#F0E0D0" - brightBlack: "#8A7060" - brightRed: "#F08090" - brightGreen: "#B8D8B0" - brightYellow: "#F0E0B8" - brightBlue: "#C8B8A8" - brightMagenta: "#D8B898" - brightCyan: "#7DC5F0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.7 - black: 94.7 - red: 55.2 - green: 40.6 - yellow: 39.3 - blue: 70.6 - magenta: 56.7 - cyan: 39.3 - white: 11.7 - brightBlack: 69.3 - brightRed: 47.1 - brightGreen: 22.9 - brightYellow: 12.6 - brightBlue: 34.3 - brightMagenta: 32.7 - brightCyan: 33.1 - brightWhite: 0 diff --git a/themes/genshin-impact-citlali-dark.yaml b/themes/genshin-impact-citlali-dark.yaml deleted file mode 100644 index 34d6462a..00000000 --- a/themes/genshin-impact-citlali-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Citlali (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#1A1428" - fg: "#E8D8F0" - black: "#382850" - red: "#E898B8" - green: "#90C8B8" - yellow: "#D8C898" - blue: "#B8A0E0" - magenta: "#D99EC7" - cyan: "#D99EC7" - white: "#E8D8F0" - brightBlack: "#9080A0" - brightRed: "#F0B8D0" - brightGreen: "#A8D8C8" - brightYellow: "#E8D8A8" - brightBlue: "#C8B0E8" - brightMagenta: "#D8B0F0" - brightCyan: "#B8D0F0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 297 - pair: null - contrast: - fg: 85.2 - black: 0 - red: 58.3 - green: 65.7 - yellow: 72.6 - blue: 55.8 - magenta: 58.5 - cyan: 58.5 - white: 85.2 - brightBlack: 36.7 - brightRed: 71.9 - brightGreen: 75.7 - brightYellow: 82.2 - brightBlue: 64.2 - brightMagenta: 66.9 - brightCyan: 75.7 - brightWhite: 106.8 diff --git a/themes/genshin-impact-citlali.yaml b/themes/genshin-impact-citlali.yaml deleted file mode 100644 index 44f3c579..00000000 --- a/themes/genshin-impact-citlali.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Citlali" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#FAF8FC" - fg: "#3A2858" - black: "#3A2858" - red: "#D87088" - green: "#7AA89A" - yellow: "#D8A878" - blue: "#8D8CDA" - magenta: "#9A8CDA" - cyan: "#D99EC7" - white: "#E8D8F0" - brightBlack: "#7A6098" - brightRed: "#E88098" - brightGreen: "#8AB8AA" - brightYellow: "#E8B888" - brightBlue: "#8A9CDA" - brightMagenta: "#A898EE" - brightCyan: "#7DC5F0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 95.2 - black: 95.2 - red: 54.9 - green: 47.9 - yellow: 38.3 - blue: 53.4 - magenta: 52.1 - cyan: 38.9 - white: 13.6 - brightBlack: 72.6 - brightRed: 47.2 - brightGreen: 39.7 - brightYellow: 29.7 - brightBlue: 48.2 - brightMagenta: 45.3 - brightCyan: 32 - brightWhite: 0 diff --git a/themes/genshin-impact-columbina.yaml b/themes/genshin-impact-columbina.yaml deleted file mode 100644 index 1e7cc3c2..00000000 --- a/themes/genshin-impact-columbina.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Columbina" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#F6FAFF" - fg: "#272228" - black: "#272228" - red: "#CD5F7A" - green: "#5A9EA0" - yellow: "#E8B888" - blue: "#7487DB" - magenta: "#CD76B3" - cyan: "#90CCEA" - white: "#C3C8ED" - brightBlack: "#7D8AA8" - brightRed: "#E87A95" - brightGreen: "#6FBEC0" - brightYellow: "#F0C89F" - brightBlue: "#8FA0F0" - brightMagenta: "#E091CA" - brightCyan: "#A8DCF5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 99.3 - black: 99.3 - red: 61.8 - green: 54.2 - yellow: 30.2 - blue: 57.8 - magenta: 54 - cyan: 28.5 - white: 25.2 - brightBlack: 58.8 - brightRed: 49.4 - brightGreen: 38.6 - brightYellow: 22.3 - brightBlue: 45.4 - brightMagenta: 42.2 - brightCyan: 19.2 - brightWhite: 0 diff --git a/themes/genshin-impact-furina-dark.yaml b/themes/genshin-impact-furina-dark.yaml deleted file mode 100644 index 6b807c6e..00000000 --- a/themes/genshin-impact-furina-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Furina (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#0F1823" - fg: "#D4E6F0" - black: "#25374D" - red: "#E886A8" - green: "#70C8A8" - yellow: "#D8B880" - blue: "#98B4E0" - magenta: "#7DC5F0" - cyan: "#7DC5F0" - white: "#D4E6F0" - brightBlack: "#708090" - brightRed: "#F0A8C0" - brightGreen: "#90D8B8" - brightYellow: "#E8C898" - brightBlue: "#A8C0E8" - brightMagenta: "#A8D0F0" - brightCyan: "#98D0E8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 254 - pair: null - contrast: - fg: 88.8 - black: 0 - red: 52.1 - green: 62.8 - yellow: 65.4 - blue: 59.8 - magenta: 65.7 - cyan: 65.7 - white: 88.8 - brightBlack: 32.8 - brightRed: 65.4 - brightGreen: 73 - brightYellow: 75 - brightBlue: 66.8 - brightMagenta: 74.1 - brightCyan: 72.2 - brightWhite: 106.8 diff --git a/themes/genshin-impact-furina.yaml b/themes/genshin-impact-furina.yaml deleted file mode 100644 index 85018774..00000000 --- a/themes/genshin-impact-furina.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Furina" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#F5F9FC" - fg: "#1A2840" - black: "#1A2840" - red: "#C84860" - green: "#4A9A7A" - yellow: "#D89850" - blue: "#3A7FC4" - magenta: "#667EDE" - cyan: "#5EB3E4" - white: "#D6ECF8" - brightBlack: "#5A7090" - brightRed: "#E86078" - brightGreen: "#5AAA8A" - brightYellow: "#E8A860" - brightBlue: "#4A8FD4" - brightMagenta: "#7E8FEE" - brightCyan: "#7DC5F0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 97.6 - black: 97.6 - red: 67.2 - green: 57.2 - yellow: 44.3 - blue: 64.6 - magenta: 60.9 - cyan: 41.6 - white: 0 - brightBlack: 70.9 - brightRed: 55.6 - brightGreen: 49.5 - brightYellow: 36 - brightBlue: 57.3 - brightMagenta: 52.3 - brightCyan: 31.8 - brightWhite: 0 diff --git a/themes/genshin-impact-ganyu-dark.yaml b/themes/genshin-impact-ganyu-dark.yaml deleted file mode 100644 index 0b30e9c1..00000000 --- a/themes/genshin-impact-ganyu-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Ganyu (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#141A22" - fg: "#D8E0E8" - black: "#2A3440" - red: "#D87080" - green: "#78B898" - yellow: "#D0B070" - blue: "#6088B8" - magenta: "#A888B0" - cyan: "#78B0C8" - white: "#D0D8E0" - brightBlack: "#6A788A" - brightRed: "#E89098" - brightGreen: "#90D0B0" - brightYellow: "#E8D098" - brightBlue: "#88B0D8" - brightMagenta: "#C0A8C8" - brightCyan: "#98C8D8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 256 - pair: null - contrast: - fg: 85.9 - black: 0 - red: 41.6 - green: 55.4 - yellow: 60.5 - blue: 36.1 - magenta: 42.7 - cyan: 54 - white: 81 - brightBlack: 29.1 - brightRed: 54.3 - brightGreen: 68.8 - brightYellow: 78.1 - brightBlue: 56.1 - brightMagenta: 58.2 - brightCyan: 67.6 - brightWhite: 106.6 diff --git a/themes/genshin-impact-ganyu-high-contrast.yaml b/themes/genshin-impact-ganyu-high-contrast.yaml deleted file mode 100644 index 4298eb00..00000000 --- a/themes/genshin-impact-ganyu-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Ganyu (High Contrast)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#000000" - fg: "#E0E8F0" - black: "#304050" - red: "#F0889A" - green: "#90DAB0" - yellow: "#E8C888" - blue: "#78B8E8" - magenta: "#C0A0C8" - cyan: "#88C8D8" - white: "#E0E8F0" - brightBlack: "#7090A8" - brightRed: "#F8A8B8" - brightGreen: "#A8F0C8" - brightYellow: "#F8E0A0" - brightBlue: "#A0D8F8" - brightMagenta: "#D8C0E0" - brightCyan: "#A8E0F0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 92.2 - black: 8 - red: 54.8 - green: 74.7 - yellow: 75.6 - blue: 60.4 - magenta: 56.6 - cyan: 67.6 - white: 92.2 - brightBlack: 40.6 - brightRed: 67.6 - brightGreen: 88.2 - brightYellow: 89 - brightBlue: 78.4 - brightMagenta: 73.2 - brightCyan: 82.4 - brightWhite: 107.9 diff --git a/themes/genshin-impact-ganyu-light.yaml b/themes/genshin-impact-ganyu-light.yaml deleted file mode 100644 index 51d127de..00000000 --- a/themes/genshin-impact-ganyu-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Ganyu (Light)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#F5F9FC" - fg: "#2A3545" - black: "#2A3545" - red: "#C94E51" - green: "#5A9A78" - yellow: "#B89850" - blue: "#2D39AA" - magenta: "#8A5A95" - cyan: "#5A9AAA" - white: "#EDF4F9" - brightBlack: "#6A7888" - brightRed: "#D87080" - brightGreen: "#72B290" - brightYellow: "#C6A270" - brightBlue: "#4A6B9A" - brightMagenta: "#A878A8" - brightCyan: "#72B2C0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 94.3 - black: 94.3 - red: 66.3 - green: 56.5 - yellow: 49.1 - blue: 86.6 - magenta: 72.1 - cyan: 54.7 - white: 0 - brightBlack: 67.4 - brightRed: 54.9 - brightGreen: 44.6 - brightYellow: 43 - brightBlue: 73.1 - brightMagenta: 59 - brightCyan: 42.7 - brightWhite: 0 diff --git a/themes/genshin-impact-il-dottore-dark.yaml b/themes/genshin-impact-il-dottore-dark.yaml deleted file mode 100644 index 0b60f3e1..00000000 --- a/themes/genshin-impact-il-dottore-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Il Dottore (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#0A0C14" - fg: "#C8D8E8" - black: "#18283C" - red: "#C08088" - green: "#80B0A0" - yellow: "#C0B080" - blue: "#6090C0" - magenta: "#A090B8" - cyan: "#60B8D0" - white: "#C8D8E8" - brightBlack: "#5A7090" - brightRed: "#D0A0A8" - brightGreen: "#A0D0C0" - brightYellow: "#E0D0A0" - brightBlue: "#80B0E0" - brightMagenta: "#C0B0D0" - brightCyan: "#80D0E8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "blue" - hue: 273 - pair: null - contrast: - fg: 81.5 - black: 0 - red: 43.1 - green: 53.9 - yellow: 59.7 - blue: 40.5 - magenta: 45.9 - cyan: 57.4 - white: 81.5 - brightBlack: 26.6 - brightRed: 57.3 - brightGreen: 71.9 - brightYellow: 78.2 - brightBlue: 57 - brightMagenta: 62.7 - brightCyan: 71.2 - brightWhite: 107.6 diff --git a/themes/genshin-impact-il-dottore.yaml b/themes/genshin-impact-il-dottore.yaml deleted file mode 100644 index 0fe5481a..00000000 --- a/themes/genshin-impact-il-dottore.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Il Dottore" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#F6F9FC" - fg: "#1A2848" - black: "#1A2848" - red: "#904858" - green: "#408068" - yellow: "#887048" - blue: "#305878" - magenta: "#685080" - cyan: "#287088" - white: "#8898B0" - brightBlack: "#607080" - brightRed: "#A86068" - brightGreen: "#509878" - brightYellow: "#A08858" - brightBlue: "#406890" - brightMagenta: "#786090" - brightCyan: "#3888A0" - brightWhite: "#B0C0D0" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 97.4 - black: 97.4 - red: 77.8 - green: 68.4 - yellow: 68.8 - blue: 82.2 - magenta: 79.9 - cyan: 73.8 - white: 51.9 - brightBlack: 71.3 - brightRed: 68.1 - brightGreen: 57.9 - brightYellow: 57.7 - brightBlue: 75.2 - brightMagenta: 73.1 - brightCyan: 63.6 - brightWhite: 31.2 diff --git a/themes/genshin-impact-kamisato-ayaka-dark.yaml b/themes/genshin-impact-kamisato-ayaka-dark.yaml deleted file mode 100644 index c700d9e3..00000000 --- a/themes/genshin-impact-kamisato-ayaka-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Kamisato Ayaka (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#141828" - fg: "#E0ECF8" - black: "#283858" - red: "#E75F96" - green: "#80D8B8" - yellow: "#E8B840" - blue: "#B8D0F0" - magenta: "#C5DBEE" - cyan: "#C5DBEE" - white: "#E0ECF8" - brightBlack: "#8898A8" - brightRed: "#F0B8D0" - brightGreen: "#A0E8C8" - brightYellow: "#E8C860" - brightBlue: "#B8D0F0" - brightMagenta: "#C5DBEE" - brightCyan: "#C5DBEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 273 - pair: null - contrast: - fg: 93.3 - black: 0 - red: 41.5 - green: 71.7 - yellow: 66.7 - blue: 75.6 - magenta: 81.8 - cyan: 81.8 - white: 93.3 - brightBlack: 44.5 - brightRed: 71.8 - brightGreen: 82.4 - brightYellow: 73.6 - brightBlue: 75.6 - brightMagenta: 81.8 - brightCyan: 81.8 - brightWhite: 106.7 diff --git a/themes/genshin-impact-kamisato-ayaka.yaml b/themes/genshin-impact-kamisato-ayaka.yaml deleted file mode 100644 index bb4ae90e..00000000 --- a/themes/genshin-impact-kamisato-ayaka.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Kamisato Ayaka" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#F8FAFC" - fg: "#20306A" - black: "#20306A" - red: "#E75F96" - green: "#6AAA8A" - yellow: "#D4A030" - blue: "#20306A" - magenta: "#5878C8" - cyan: "#E75F96" - white: "#E0ECF8" - brightBlack: "#6A7898" - brightRed: "#E75F96" - brightGreen: "#7ABAA0" - brightYellow: "#F0D080" - brightBlue: "#5888C8" - brightMagenta: "#8898D8" - brightCyan: "#7DC5F0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 94.8 - black: 94.8 - red: 55.8 - green: 49.4 - yellow: 43.3 - blue: 94.8 - magenta: 66.1 - cyan: 55.8 - white: 0 - brightBlack: 67.5 - brightRed: 55.8 - brightGreen: 41 - brightYellow: 20 - brightBlue: 60.7 - brightMagenta: 50.5 - brightCyan: 32.6 - brightWhite: 0 diff --git a/themes/genshin-impact-layla-dark.yaml b/themes/genshin-impact-layla-dark.yaml deleted file mode 100644 index 4abd98d6..00000000 --- a/themes/genshin-impact-layla-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Layla (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#181C2A" - fg: "#D8ECF8" - black: "#2A3850" - red: "#E8A8C8" - green: "#A0D8C8" - yellow: "#DDAB6D" - blue: "#A8B8D8" - magenta: "#C0E9F7" - cyan: "#C0E9F7" - white: "#D8ECF8" - brightBlack: "#8090A8" - brightRed: "#F0C8E0" - brightGreen: "#B8E8D8" - brightYellow: "#E8E8B8" - brightBlue: "#C8C0E8" - brightMagenta: "#C8E0F8" - brightCyan: "#C8E0F8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "yellow" - hue: 272 - pair: null - contrast: - fg: 91.8 - black: 0 - red: 63.8 - green: 74.4 - yellow: 60.2 - blue: 62 - magenta: 87.6 - cyan: 87.6 - white: 91.8 - brightBlack: 40.3 - brightRed: 78.3 - brightGreen: 84.9 - brightYellow: 89.4 - brightBlue: 69.9 - brightMagenta: 84.4 - brightCyan: 84.4 - brightWhite: 106.2 diff --git a/themes/genshin-impact-layla.yaml b/themes/genshin-impact-layla.yaml deleted file mode 100644 index 40cb7b24..00000000 --- a/themes/genshin-impact-layla.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Layla" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#F8FCFE" - fg: "#2A3858" - black: "#2A3858" - red: "#D88098" - green: "#7AB8AA" - yellow: "#DDAB6D" - blue: "#5F689D" - magenta: "#8898C8" - cyan: "#C0E9F7" - white: "#D8ECF8" - brightBlack: "#6A7098" - brightRed: "#E890A8" - brightGreen: "#9AC8BA" - brightYellow: "#E8C898" - brightBlue: "#98ACD8" - brightMagenta: "#98B8E8" - brightCyan: "#7DC5F0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 94.5 - black: 94.5 - red: 51.6 - green: 42.4 - yellow: 38.2 - blue: 74.2 - magenta: 52.4 - cyan: 12.3 - white: 8.4 - brightBlack: 71 - brightRed: 43.7 - brightGreen: 32.6 - brightYellow: 24.7 - brightBlue: 42.6 - brightMagenta: 37.2 - brightCyan: 33.5 - brightWhite: 0 diff --git a/themes/genshin-impact-sandrone-dark.yaml b/themes/genshin-impact-sandrone-dark.yaml deleted file mode 100644 index 5fda881f..00000000 --- a/themes/genshin-impact-sandrone-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Sandrone (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#12141A" - fg: "#E0DCE8" - black: "#282430" - red: "#C08090" - green: "#90B8A0" - yellow: "#C8B890" - blue: "#8090C0" - magenta: "#B08898" - cyan: "#90A8C0" - white: "#D8D0E0" - brightBlack: "#787080" - brightRed: "#D0A8B0" - brightGreen: "#A8D0B8" - brightYellow: "#E0D8B0" - brightBlue: "#A0B0D8" - brightMagenta: "#D0B0B8" - brightCyan: "#B0C0D8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 271 - pair: null - contrast: - fg: 85.7 - black: 0 - red: 42.9 - green: 58.2 - yellow: 63.9 - blue: 42.4 - magenta: 43.3 - cyan: 52.9 - white: 79.1 - brightBlack: 28 - brightRed: 60 - brightGreen: 71.8 - brightYellow: 81.7 - brightBlue: 58.9 - brightMagenta: 63.3 - brightCyan: 67.1 - brightWhite: 107.1 diff --git a/themes/genshin-impact-sandrone.yaml b/themes/genshin-impact-sandrone.yaml deleted file mode 100644 index 3f517484..00000000 --- a/themes/genshin-impact-sandrone.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Sandrone" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#F7F0E7" - fg: "#2A2832" - black: "#2A2832" - red: "#A05060" - green: "#508858" - yellow: "#907840" - blue: "#4A5068" - magenta: "#751C26" - cyan: "#506068" - white: "#F0E8DF" - brightBlack: "#786860" - brightRed: "#B86878" - brightGreen: "#68A070" - brightYellow: "#A89050" - brightBlue: "#5A6078" - brightMagenta: "#903848" - brightCyan: "#607078" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.9 - black: 92.9 - red: 68.7 - green: 60.4 - yellow: 60.9 - blue: 79.2 - magenta: 85.5 - cyan: 74 - white: 0 - brightBlack: 68.1 - brightRed: 58.4 - brightGreen: 49 - brightYellow: 49.5 - brightBlue: 72.6 - brightMagenta: 76.6 - brightCyan: 67 - brightWhite: 0 diff --git a/themes/genshin-impact-scaramouche-dark.yaml b/themes/genshin-impact-scaramouche-dark.yaml deleted file mode 100644 index 9c7af039..00000000 --- a/themes/genshin-impact-scaramouche-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Scaramouche (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#1E1B24" - fg: "#E0D8E8" - black: "#1E1B24" - red: "#FF4D4D" - green: "#6A8A6A" - yellow: "#B8906A" - blue: "#5A7A90" - magenta: "#9A60E0" - cyan: "#5A7A90" - white: "#E0D8E8" - brightBlack: "#6A5A78" - brightRed: "#FF6B6B" - brightGreen: "#7AA97A" - brightYellow: "#C8A07A" - brightBlue: "#6A8AA0" - brightMagenta: "#B080E0" - brightCyan: "#6A8AA0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 300 - pair: null - contrast: - fg: 83.1 - black: 0 - red: 41.4 - green: 34.1 - yellow: 44.9 - blue: 28.5 - magenta: 32.3 - cyan: 28.5 - white: 83.1 - brightBlack: 19 - brightRed: 47.5 - brightGreen: 47.9 - brightYellow: 53.2 - brightBlue: 36 - brightMagenta: 43.7 - brightCyan: 36 - brightWhite: 106.2 diff --git a/themes/genshin-impact-scaramouche.yaml b/themes/genshin-impact-scaramouche.yaml deleted file mode 100644 index d257a414..00000000 --- a/themes/genshin-impact-scaramouche.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Scaramouche" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#FAF8FC" - fg: "#2A2535" - black: "#2A2535" - red: "#96182E" - green: "#5A7A70" - yellow: "#B8906A" - blue: "#4A5A80" - magenta: "#6A4A9E" - cyan: "#5A7A90" - white: "#E0D8E8" - brightBlack: "#6A5A78" - brightRed: "#A62840" - brightGreen: "#6A8A80" - brightYellow: "#C8A07A" - brightBlue: "#5A6A90" - brightMagenta: "#8A70B0" - brightCyan: "#6A8AA0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 97.9 - black: 97.9 - red: 83.9 - green: 69 - yellow: 51.5 - blue: 79.9 - magenta: 79.5 - cyan: 67.8 - white: 15 - brightBlack: 77.5 - brightRed: 79.2 - brightGreen: 61.5 - brightYellow: 43.4 - brightBlue: 73.1 - brightMagenta: 65 - brightCyan: 60.3 - brightWhite: 0 diff --git a/themes/genshin-impact-skirk-dark.yaml b/themes/genshin-impact-skirk-dark.yaml deleted file mode 100644 index f2c560cc..00000000 --- a/themes/genshin-impact-skirk-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Skirk (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#0B0B1A" - fg: "#B5FDFF" - black: "#2A2A50" - red: "#EFADCA" - green: "#80E0E0" - yellow: "#D0A0C0" - blue: "#C0A0F0" - magenta: "#B183FC" - cyan: "#B183FC" - white: "#B5FDFF" - brightBlack: "#8080B0" - brightRed: "#F0A0C0" - brightGreen: "#90E0E0" - brightYellow: "#E0C0D0" - brightBlue: "#B0A0F0" - brightMagenta: "#B5FDFF" - brightCyan: "#A0D0F0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 282 - pair: null - contrast: - fg: 98 - black: 0 - red: 68.3 - green: 78.2 - yellow: 58.3 - blue: 58.6 - magenta: 48 - cyan: 48 - white: 98 - brightBlack: 36.6 - brightRed: 63.5 - brightGreen: 79.3 - brightYellow: 73.4 - brightBlue: 56.5 - brightMagenta: 98 - brightCyan: 74.1 - brightWhite: 107.6 diff --git a/themes/genshin-impact-skirk.yaml b/themes/genshin-impact-skirk.yaml deleted file mode 100644 index d875aae6..00000000 --- a/themes/genshin-impact-skirk.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Skirk" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#F8F9FE" - fg: "#2D2272" - black: "#2D2272" - red: "#EFADCA" - green: "#B5FDFF" - yellow: "#D8A878" - blue: "#5A45E4" - magenta: "#7A65F0" - cyan: "#B183FC" - white: "#E0E4FC" - brightBlack: "#6A5AC0" - brightRed: "#E88098" - brightGreen: "#8AB8AA" - brightYellow: "#E8B888" - brightBlue: "#8A9CDA" - brightMagenta: "#9880F0" - brightCyan: "#7DC5F0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 95.7 - black: 95.7 - red: 30.6 - green: 0 - yellow: 38.5 - blue: 76.5 - magenta: 65.4 - cyan: 50 - white: 9.4 - brightBlack: 73.6 - brightRed: 47.5 - brightGreen: 39.9 - brightYellow: 29.9 - brightBlue: 48.5 - brightMagenta: 54.8 - brightCyan: 32.3 - brightWhite: 0 diff --git a/themes/genshin-impact-wanderer-dark.yaml b/themes/genshin-impact-wanderer-dark.yaml deleted file mode 100644 index 770a3fae..00000000 --- a/themes/genshin-impact-wanderer-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Wanderer (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#0F1820" - fg: "#DCEEF8" - black: "#253550" - red: "#3C8BA2" - green: "#70C8B0" - yellow: "#D0B868" - blue: "#B8D0F0" - magenta: "#94CBCF" - cyan: "#94CBCF" - white: "#DCEEF8" - brightBlack: "#7898B0" - brightRed: "#F0B8D0" - brightGreen: "#A0E8C8" - brightYellow: "#D8C870" - brightBlue: "#B8D0F0" - brightMagenta: "#94CBCF" - brightCyan: "#94CBCF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 246 - pair: null - contrast: - fg: 93.9 - black: 0 - red: 34.6 - green: 63.1 - yellow: 63.8 - blue: 75.7 - magenta: 68.4 - cyan: 68.4 - white: 93.9 - brightBlack: 43.6 - brightRed: 72 - brightGreen: 82.6 - brightYellow: 71.7 - brightBlue: 75.7 - brightMagenta: 68.4 - brightCyan: 68.4 - brightWhite: 106.8 diff --git a/themes/genshin-impact-wanderer.yaml b/themes/genshin-impact-wanderer.yaml deleted file mode 100644 index 67bb9472..00000000 --- a/themes/genshin-impact-wanderer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Wanderer" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#F8FCFE" - fg: "#1A3050" - black: "#1A3050" - red: "#3C8BA2" - green: "#6AAA8A" - yellow: "#C8B870" - blue: "#1A3050" - magenta: "#4888C8" - cyan: "#3C8BA2" - white: "#DCEEF8" - brightBlack: "#5A7090" - brightRed: "#3C8BA2" - brightGreen: "#7ABAA0" - brightYellow: "#F0D080" - brightBlue: "#5888C8" - brightMagenta: "#78A8D8" - brightCyan: "#7DC5F0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 97.3 - black: 97.3 - red: 63.8 - green: 50.3 - yellow: 36.3 - blue: 97.3 - magenta: 62.4 - cyan: 63.8 - white: 0 - brightBlack: 72.7 - brightRed: 63.8 - brightGreen: 41.9 - brightYellow: 21 - brightBlue: 61.6 - brightMagenta: 46.8 - brightCyan: 33.5 - brightWhite: 0 diff --git a/themes/genshin-impact-yae-miko-dark.yaml b/themes/genshin-impact-yae-miko-dark.yaml deleted file mode 100644 index 3cf66497..00000000 --- a/themes/genshin-impact-yae-miko-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Yae Miko (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#1C1418" - fg: "#E8DCE4" - black: "#2A2024" - red: "#C08090" - green: "#90A890" - yellow: "#C0B090" - blue: "#9090B0" - magenta: "#B090A8" - cyan: "#90A8B0" - white: "#E8D8E0" - brightBlack: "#786870" - brightRed: "#E0A0B0" - brightGreen: "#B0C8B0" - brightYellow: "#E0D0A0" - brightBlue: "#B0B0D0" - brightMagenta: "#D0B0C8" - brightCyan: "#B0C8D0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 347 - pair: null - contrast: - fg: 86.4 - black: 0 - red: 42.7 - green: 50.8 - yellow: 59.5 - blue: 43 - magenta: 46.5 - cyan: 52 - white: 84.5 - brightBlack: 24.8 - brightRed: 59.4 - brightGreen: 68.6 - brightYellow: 77.5 - brightBlue: 60 - brightMagenta: 63.8 - brightCyan: 69.9 - brightWhite: 106.9 diff --git a/themes/genshin-impact-yae-miko.yaml b/themes/genshin-impact-yae-miko.yaml deleted file mode 100644 index 08631e1a..00000000 --- a/themes/genshin-impact-yae-miko.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Yae Miko" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#FDF8F9" - fg: "#4A3840" - black: "#4A3840" - red: "#A85060" - green: "#609070" - yellow: "#987050" - blue: "#785888" - magenta: "#C06090" - cyan: "#608890" - white: "#B89898" - brightBlack: "#886878" - brightRed: "#C06878" - brightGreen: "#78A888" - brightYellow: "#B08860" - brightBlue: "#9078A0" - brightMagenta: "#D078A0" - brightCyan: "#78A0A8" - brightWhite: "#E0C8D4" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 91.7 - black: 91.7 - red: 72.3 - green: 60.7 - yellow: 67 - blue: 76 - magenta: 63 - cyan: 62.7 - white: 47.8 - brightBlack: 70.3 - brightRed: 61.9 - brightGreen: 48.9 - brightYellow: 55.8 - brightBlue: 62.9 - brightMagenta: 53.6 - brightCyan: 50.9 - brightWhite: 22.5 diff --git a/themes/genshin-impact-yumemizuki-mizuki-dark.yaml b/themes/genshin-impact-yumemizuki-mizuki-dark.yaml deleted file mode 100644 index 5192e160..00000000 --- a/themes/genshin-impact-yumemizuki-mizuki-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Yumemizuki Mizuki (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#151520" - fg: "#E0DCE8" - black: "#1A1A2E" - red: "#E06888" - green: "#68B878" - yellow: "#D8B868" - blue: "#5A78C8" - magenta: "#C673C9" - cyan: "#68B8C8" - white: "#E0DCE8" - brightBlack: "#5A5878" - brightRed: "#F080A0" - brightGreen: "#80D090" - brightYellow: "#F0D080" - brightBlue: "#78A0E8" - brightMagenta: "#E090E0" - brightCyan: "#80D0E0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 284 - pair: null - contrast: - fg: 85.6 - black: 0 - red: 41.8 - green: 53.8 - yellow: 65.1 - blue: 31.6 - magenta: 42.7 - cyan: 56.7 - white: 85.6 - brightBlack: 17.7 - brightRed: 51.8 - brightGreen: 66.9 - brightYellow: 79.1 - brightBlue: 49.9 - brightMagenta: 56.6 - brightCyan: 70.1 - brightWhite: 107 diff --git a/themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml b/themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml deleted file mode 100644 index 9b4c3e7e..00000000 --- a/themes/genshin-impact-yumemizuki-mizuki-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Yumemizuki Mizuki (High Contrast)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#0A0A12" - fg: "#F0ECF8" - black: "#0C0C16" - red: "#F86898" - green: "#58D870" - yellow: "#F8D858" - blue: "#5888E8" - magenta: "#E090E8" - cyan: "#58D8E8" - white: "#F0ECF8" - brightBlack: "#7878A0" - brightRed: "#FF88B0" - brightGreen: "#78F890" - brightYellow: "#FFF088" - brightBlue: "#88B8FF" - brightMagenta: "#F0A8F0" - brightCyan: "#88F0F8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 284 - pair: null - contrast: - fg: 96.4 - black: 0 - red: 48.1 - green: 68.5 - yellow: 83.8 - blue: 39.8 - magenta: 57.8 - cyan: 72.8 - white: 96.4 - brightBlack: 32.5 - brightRed: 58.4 - brightGreen: 86.9 - brightYellow: 96.6 - brightBlue: 62.8 - brightMagenta: 68.7 - brightCyan: 87.7 - brightWhite: 107.7 diff --git a/themes/genshin-impact-yumemizuki-mizuki-light.yaml b/themes/genshin-impact-yumemizuki-mizuki-light.yaml deleted file mode 100644 index 413d1749..00000000 --- a/themes/genshin-impact-yumemizuki-mizuki-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Genshin Impact - Yumemizuki Mizuki (Light)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#F8F5FA" - fg: "#2A2445" - black: "#2A2445" - red: "#C05878" - green: "#5A9A68" - yellow: "#A08840" - blue: "#151C6E" - magenta: "#C673C9" - cyan: "#5A9AA8" - white: "#F0EBF5" - brightBlack: "#786888" - brightRed: "#D87890" - brightGreen: "#72B280" - brightYellow: "#B8A058" - brightBlue: "#1A2380" - brightMagenta: "#D890D8" - brightCyan: "#72B2C0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 96 - black: 96 - red: 63.7 - green: 55.5 - yellow: 56.6 - blue: 95.6 - magenta: 52.8 - cyan: 53.4 - white: 0 - brightBlack: 69.7 - brightRed: 50.9 - brightGreen: 43.6 - brightYellow: 44.7 - brightBlue: 93.4 - brightMagenta: 41 - brightCyan: 41.3 - brightWhite: 0 diff --git a/themes/genshin-vibes-celestine-bardlight.yaml b/themes/genshin-vibes-celestine-bardlight.yaml deleted file mode 100644 index d26dda99..00000000 --- a/themes/genshin-vibes-celestine-bardlight.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Celestine Bardlight" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#F8FBFD" - fg: "#1A3A38" - black: "#F0F8F7" - red: "#BF5530" - green: "#26834F" - yellow: "#A66D32" - blue: "#31A586" - magenta: "#26824E" - cyan: "#2D72A6" - white: "#76A599" - brightBlack: "#76A599" - brightRed: "#BF5530" - brightGreen: "#26834F" - brightYellow: "#A66D32" - brightBlue: "#31A586" - brightMagenta: "#26824E" - brightCyan: "#2D72A6" - brightWhite: "#1A3A38" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 95.3 - black: 0 - red: 68.7 - green: 69.8 - yellow: 67 - blue: 54.4 - magenta: 70.2 - cyan: 72.6 - white: 50.5 - brightBlack: 50.5 - brightRed: 68.7 - brightGreen: 69.8 - brightYellow: 67 - brightBlue: 54.4 - brightMagenta: 70.2 - brightCyan: 72.6 - brightWhite: 95.3 diff --git a/themes/genshin-vibes-damselette-whisper.yaml b/themes/genshin-vibes-damselette-whisper.yaml deleted file mode 100644 index e278f527..00000000 --- a/themes/genshin-vibes-damselette-whisper.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Damselette Whisper" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#F7F9FC" - fg: "#634D9A" - black: "#F2F4F8" - red: "#C94A5A" - green: "#4F8A5B" - yellow: "#B8892E" - blue: "#495A79" - magenta: "#906B99" - cyan: "#7A5C99" - white: "#99A0B0" - brightBlack: "#99A0B0" - brightRed: "#C94A5A" - brightGreen: "#4F8A5B" - brightYellow: "#B8892E" - brightBlue: "#495A79" - brightMagenta: "#906B99" - brightCyan: "#7A5C99" - brightWhite: "#634D9A" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 79.8 - black: 0 - red: 67.1 - green: 64.3 - yellow: 54.8 - blue: 80.3 - magenta: 66.9 - cyan: 73.7 - white: 47.4 - brightBlack: 47.4 - brightRed: 67.1 - brightGreen: 64.3 - brightYellow: 54.8 - brightBlue: 80.3 - brightMagenta: 66.9 - brightCyan: 73.7 - brightWhite: 79.8 diff --git a/themes/genshin-vibes-emergency-food.yaml b/themes/genshin-vibes-emergency-food.yaml deleted file mode 100644 index 122a07a6..00000000 --- a/themes/genshin-vibes-emergency-food.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Emergency Food" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#0F141A" - fg: "#F0F4F8" - black: "#0B1218" - red: "#FF91A4" - green: "#A8D5E2" - yellow: "#FFD700" - blue: "#E6C719" - magenta: "#A7D5E2" - cyan: "#90C8FF" - white: "#374D5C" - brightBlack: "#374D5C" - brightRed: "#FF91A4" - brightGreen: "#A8D5E2" - brightYellow: "#FFD700" - brightBlue: "#E6C719" - brightMagenta: "#A7D5E2" - brightCyan: "#90C8FF" - brightWhite: "#F0F4F8" -meta: - mode: "dark" - accent: "green" - hue: 253 - pair: null - contrast: - fg: 99.6 - black: 0 - red: 60 - green: 75.9 - yellow: 83.5 - blue: 72.8 - magenta: 75.8 - cyan: 69.7 - white: 11.4 - brightBlack: 11.4 - brightRed: 60 - brightGreen: 75.9 - brightYellow: 83.5 - brightBlue: 72.8 - brightMagenta: 75.8 - brightCyan: 69.7 - brightWhite: 99.6 diff --git a/themes/genshin-vibes-eternal-electro-throne.yaml b/themes/genshin-vibes-eternal-electro-throne.yaml deleted file mode 100644 index 3705de97..00000000 --- a/themes/genshin-vibes-eternal-electro-throne.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Eternal Electro Throne" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#1A1628" - fg: "#E8D5F3" - black: "#120F20" - red: "#F1A7B4" - green: "#7ED3B0" - yellow: "#E6C78A" - blue: "#AA7CEE" - magenta: "#D1A6E2" - cyan: "#7ED3B0" - white: "#443A58" - brightBlack: "#443A58" - brightRed: "#F1A7B4" - brightGreen: "#7ED3B0" - brightYellow: "#E6C78A" - brightBlue: "#AA7CEE" - brightMagenta: "#D1A6E2" - brightCyan: "#7ED3B0" - brightWhite: "#E8D5F3" -meta: - mode: "dark" - accent: "magenta" - hue: 293 - pair: null - contrast: - fg: 83.9 - black: 0 - red: 64.6 - green: 68.9 - yellow: 73.7 - blue: 43.1 - magenta: 61.3 - cyan: 68.9 - white: 0 - brightBlack: 0 - brightRed: 64.6 - brightGreen: 68.9 - brightYellow: 73.7 - brightBlue: 43.1 - brightMagenta: 61.3 - brightCyan: 68.9 - brightWhite: 83.9 diff --git a/themes/genshin-vibes-fontaine-spotlight.yaml b/themes/genshin-vibes-fontaine-spotlight.yaml deleted file mode 100644 index faf43ed8..00000000 --- a/themes/genshin-vibes-fontaine-spotlight.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Fontaine Spotlight" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#EAF3FF" - fg: "#0F172A" - black: "#F0F8FF" - red: "#BE123C" - green: "#059669" - yellow: "#EA580C" - blue: "#1F3B61" - magenta: "#1D4ED8" - cyan: "#0EA5E9" - white: "#64748B" - brightBlack: "#64748B" - brightRed: "#BE123C" - brightGreen: "#059669" - brightYellow: "#EA580C" - brightBlue: "#1F3B61" - brightMagenta: "#1D4ED8" - brightCyan: "#0EA5E9" - brightWhite: "#0F172A" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 96.8 - black: 0 - red: 71.4 - green: 56.9 - yellow: 54.4 - blue: 88.2 - magenta: 74.4 - cyan: 45.1 - white: 65.3 - brightBlack: 65.3 - brightRed: 71.4 - brightGreen: 56.9 - brightYellow: 54.4 - brightBlue: 88.2 - brightMagenta: 74.4 - brightCyan: 45.1 - brightWhite: 96.8 diff --git a/themes/genshin-vibes-frost-ritual.yaml b/themes/genshin-vibes-frost-ritual.yaml deleted file mode 100644 index d5230838..00000000 --- a/themes/genshin-vibes-frost-ritual.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Frost Ritual" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#0F1A26" - fg: "#E8F4FF" - black: "#0A1520" - red: "#FF6B35" - green: "#90C8FF" - yellow: "#FFD700" - blue: "#91CDF3" - magenta: "#4682B4" - cyan: "#90C8FF" - white: "#2A3D5A" - brightBlack: "#2A3D5A" - brightRed: "#FF6B35" - brightGreen: "#90C8FF" - brightYellow: "#FFD700" - brightBlue: "#91CDF3" - brightMagenta: "#4682B4" - brightCyan: "#90C8FF" - brightWhite: "#E8F4FF" -meta: - mode: "dark" - accent: "orange" - hue: 251 - pair: null - contrast: - fg: 98.3 - black: 0 - red: 47 - green: 69.1 - yellow: 83 - blue: 70.7 - magenta: 32.4 - cyan: 69.1 - white: 0 - brightBlack: 0 - brightRed: 47 - brightGreen: 69.1 - brightYellow: 83 - brightBlue: 70.7 - brightMagenta: 32.4 - brightCyan: 69.1 - brightWhite: 98.3 diff --git a/themes/genshin-vibes-geo-contract-vault.yaml b/themes/genshin-vibes-geo-contract-vault.yaml deleted file mode 100644 index ccc5ef1b..00000000 --- a/themes/genshin-vibes-geo-contract-vault.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Geo Contract Vault" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#1E1814" - fg: "#E8D9B2" - black: "#150F0B" - red: "#B85C40" - green: "#D4B085" - yellow: "#E8C660" - blue: "#E8C65E" - magenta: "#E4C060" - cyan: "#C8B8A3" - white: "#3B2F2E" - brightBlack: "#3B2F2E" - brightRed: "#B85C40" - brightGreen: "#D4B085" - brightYellow: "#E8C660" - brightBlue: "#E8C65E" - brightMagenta: "#E4C060" - brightCyan: "#C8B8A3" - brightWhite: "#E8D9B2" -meta: - mode: "dark" - accent: "green" - hue: 56 - pair: null - contrast: - fg: 82.8 - black: 0 - red: 29.5 - green: 61.7 - yellow: 72.7 - blue: 72.7 - magenta: 69.7 - cyan: 64 - white: 0 - brightBlack: 0 - brightRed: 29.5 - brightGreen: 61.7 - brightYellow: 72.7 - brightBlue: 72.7 - brightMagenta: 69.7 - brightCyan: 64 - brightWhite: 82.8 diff --git a/themes/genshin-vibes-hydrocourt-midnight.yaml b/themes/genshin-vibes-hydrocourt-midnight.yaml deleted file mode 100644 index a9e8e712..00000000 --- a/themes/genshin-vibes-hydrocourt-midnight.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Hydrocourt Midnight" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#0D1A26" - fg: "#E8F4FF" - black: "#091420" - red: "#FF69B4" - green: "#40E0D0" - yellow: "#00BFFF" - blue: "#19B3E6" - magenta: "#87CEFA" - cyan: "#ADD8E6" - white: "#2A3D5A" - brightBlack: "#2A3D5A" - brightRed: "#FF69B4" - brightGreen: "#40E0D0" - brightYellow: "#00BFFF" - brightBlue: "#19B3E6" - brightMagenta: "#87CEFA" - brightCyan: "#ADD8E6" - brightWhite: "#E8F4FF" -meta: - mode: "dark" - accent: "red" - hue: 248 - pair: null - contrast: - fg: 98.3 - black: 0 - red: 49.8 - green: 73.6 - yellow: 60.1 - blue: 53.5 - magenta: 70.7 - cyan: 77.4 - white: 0 - brightBlack: 0 - brightRed: 49.8 - brightGreen: 73.6 - brightYellow: 60.1 - brightBlue: 53.5 - brightMagenta: 70.7 - brightCyan: 77.4 - brightWhite: 98.3 diff --git a/themes/genshin-vibes-ice-oracle.yaml b/themes/genshin-vibes-ice-oracle.yaml deleted file mode 100644 index 31c00d06..00000000 --- a/themes/genshin-vibes-ice-oracle.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Ice Oracle" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#F8FAFC" - fg: "#1E3A5F" - black: "#F1F5F9" - red: "#C2410C" - green: "#10B981" - yellow: "#F97316" - blue: "#4E74B1" - magenta: "#1E3A5F" - cyan: "#2FB7AD" - white: "#8898AF" - brightBlack: "#8898AF" - brightRed: "#C2410C" - brightGreen: "#10B981" - brightYellow: "#F97316" - brightBlue: "#4E74B1" - brightMagenta: "#1E3A5F" - brightCyan: "#2FB7AD" - brightWhite: "#1E3A5F" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 93.1 - black: 0 - red: 71.4 - green: 45.9 - yellow: 50 - blue: 69.4 - magenta: 93.1 - cyan: 45 - white: 52.6 - brightBlack: 52.6 - brightRed: 71.4 - brightGreen: 45.9 - brightYellow: 50 - brightBlue: 69.4 - brightMagenta: 93.1 - brightCyan: 45 - brightWhite: 93.1 diff --git a/themes/genshin-vibes-kusanali-dawnbloom.yaml b/themes/genshin-vibes-kusanali-dawnbloom.yaml deleted file mode 100644 index fe152ab8..00000000 --- a/themes/genshin-vibes-kusanali-dawnbloom.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Kusanali Dawnbloom" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#FAFFED" - fg: "#202B20" - black: "#F0F8E8" - red: "#AE2012" - green: "#2D6A4F" - yellow: "#9B7A01" - blue: "#4C701A" - magenta: "#606C38" - cyan: "#2D4C3B" - white: "#5C6B5C" - brightBlack: "#5C6B5C" - brightRed: "#AE2012" - brightGreen: "#2D6A4F" - brightYellow: "#9B7A01" - brightBlue: "#4C701A" - brightMagenta: "#606C38" - brightCyan: "#2D4C3B" - brightWhite: "#202B20" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 100.1 - black: 0 - red: 81 - green: 80.2 - yellow: 66.2 - blue: 77.3 - magenta: 77 - cyan: 90.6 - white: 76.9 - brightBlack: 76.9 - brightRed: 81 - brightGreen: 80.2 - brightYellow: 66.2 - brightBlue: 77.3 - brightMagenta: 77 - brightCyan: 90.6 - brightWhite: 100.1 diff --git a/themes/genshin-vibes-lava-glaze-inferno.yaml b/themes/genshin-vibes-lava-glaze-inferno.yaml deleted file mode 100644 index 03babdd4..00000000 --- a/themes/genshin-vibes-lava-glaze-inferno.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Lava Glaze Inferno" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#0F0A08" - fg: "#F4D4B2" - black: "#0B0806" - red: "#FF4757" - green: "#D4A574" - yellow: "#FF6B35" - blue: "#EB7347" - magenta: "#FFB347" - cyan: "#A68A6E" - white: "#46362D" - brightBlack: "#46362D" - brightRed: "#FF4757" - brightGreen: "#D4A574" - brightYellow: "#FF6B35" - brightBlue: "#EB7347" - brightMagenta: "#FFB347" - brightCyan: "#A68A6E" - brightWhite: "#F4D4B2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83.5 - black: 0 - red: 42.1 - green: 58.2 - yellow: 48.1 - blue: 45.9 - magenta: 69.9 - cyan: 41.9 - white: 0 - brightBlack: 0 - brightRed: 42.1 - brightGreen: 58.2 - brightYellow: 48.1 - brightBlue: 45.9 - brightMagenta: 69.9 - brightCyan: 41.9 - brightWhite: 83.5 diff --git a/themes/genshin-vibes-morax-golden-seal.yaml b/themes/genshin-vibes-morax-golden-seal.yaml deleted file mode 100644 index ed713ef0..00000000 --- a/themes/genshin-vibes-morax-golden-seal.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Morax Golden Seal" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#FAF7F0" - fg: "#2C261F" - black: "#F0E6D0" - red: "#8B0000" - green: "#6B5A4A" - yellow: "#CD853F" - blue: "#8B4513" - magenta: "#A0522D" - cyan: "#B8860B" - white: "#8B7355" - brightBlack: "#8B7355" - brightRed: "#8B0000" - brightGreen: "#6B5A4A" - brightYellow: "#CD853F" - brightBlue: "#8B4513" - brightMagenta: "#A0522D" - brightCyan: "#B8860B" - brightWhite: "#2C261F" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 97.1 - black: 0 - red: 86 - green: 77.9 - yellow: 51.6 - blue: 79.4 - magenta: 73 - cyan: 54.9 - white: 66.4 - brightBlack: 66.4 - brightRed: 86 - brightGreen: 77.9 - brightYellow: 51.6 - brightBlue: 79.4 - brightMagenta: 73 - brightCyan: 54.9 - brightWhite: 97.1 diff --git a/themes/genshin-vibes-outrider-blaze.yaml b/themes/genshin-vibes-outrider-blaze.yaml deleted file mode 100644 index f99e36b2..00000000 --- a/themes/genshin-vibes-outrider-blaze.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Outrider Blaze" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#1A120F" - fg: "#F4D4B2" - black: "#0F0A08" - red: "#FF4757" - green: "#FFB347" - yellow: "#FF6B35" - blue: "#C52007" - magenta: "#FFCE89" - cyan: "#F78E5A" - white: "#553E30" - brightBlack: "#553E30" - brightRed: "#FF4757" - brightGreen: "#FFB347" - brightYellow: "#FF6B35" - brightBlue: "#C52007" - brightMagenta: "#FFCE89" - brightCyan: "#F78E5A" - brightWhite: "#F4D4B2" -meta: - mode: "dark" - accent: "orange" - hue: 42 - pair: null - contrast: - fg: 83 - black: 0 - red: 41.6 - green: 69.3 - yellow: 47.6 - blue: 23.7 - magenta: 81.1 - cyan: 55.6 - white: 8.8 - brightBlack: 8.8 - brightRed: 41.6 - brightGreen: 69.3 - brightYellow: 47.6 - brightBlue: 23.7 - brightMagenta: 81.1 - brightCyan: 55.6 - brightWhite: 83 diff --git a/themes/genshin-vibes-pyro-scout.yaml b/themes/genshin-vibes-pyro-scout.yaml deleted file mode 100644 index 1ec143eb..00000000 --- a/themes/genshin-vibes-pyro-scout.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Pyro Scout" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#FDF8F0" - fg: "#5C3A1A" - black: "#FFF5E6" - red: "#D03C3C" - green: "#C36E44" - yellow: "#D13D07" - blue: "#DD2736" - magenta: "#D13D07" - cyan: "#D66319" - white: "#AE9C7D" - brightBlack: "#AE9C7D" - brightRed: "#D03C3C" - brightGreen: "#C36E44" - brightYellow: "#D13D07" - brightBlue: "#DD2736" - brightMagenta: "#D13D07" - brightCyan: "#D66319" - brightWhite: "#5C3A1A" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.4 - black: 0 - red: 68 - green: 60.6 - yellow: 68 - blue: 67.2 - magenta: 68 - cyan: 60.1 - white: 48.1 - brightBlack: 48.1 - brightRed: 68 - brightGreen: 60.6 - brightYellow: 68 - brightBlue: 67.2 - brightMagenta: 68 - brightCyan: 60.1 - brightWhite: 89.4 diff --git a/themes/genshin-vibes-starry-companion.yaml b/themes/genshin-vibes-starry-companion.yaml deleted file mode 100644 index 7888da79..00000000 --- a/themes/genshin-vibes-starry-companion.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Starry Companion" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#F8FAFF" - fg: "#1A2140" - black: "#F3F6FF" - red: "#D64550" - green: "#4E9F5D" - yellow: "#C89B2C" - blue: "#E7A240" - magenta: "#7084E6" - cyan: "#C77DFF" - white: "#B8C0DF" - brightBlack: "#B8C0DF" - brightRed: "#D64550" - brightGreen: "#4E9F5D" - brightYellow: "#C89B2C" - brightBlue: "#E7A240" - brightMagenta: "#7084E6" - brightCyan: "#C77DFF" - brightWhite: "#1A2140" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 99.6 - black: 0 - red: 66 - green: 56.7 - yellow: 47 - blue: 39.6 - magenta: 58.6 - cyan: 48.9 - white: 30.5 - brightBlack: 30.5 - brightRed: 66 - brightGreen: 56.7 - brightYellow: 47 - brightBlue: 39.6 - brightMagenta: 58.6 - brightCyan: 48.9 - brightWhite: 99.6 diff --git a/themes/genshin-vibes-stormrider-breeze.yaml b/themes/genshin-vibes-stormrider-breeze.yaml deleted file mode 100644 index 437876c1..00000000 --- a/themes/genshin-vibes-stormrider-breeze.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Stormrider Breeze" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#0F1F24" - fg: "#D8F0E8" - black: "#0B191F" - red: "#F0B27A" - green: "#76C7AD" - yellow: "#48D1CC" - blue: "#47D1CD" - magenta: "#A3E4D7" - cyan: "#7AB8A9" - white: "#2A4A4E" - brightBlack: "#2A4A4E" - brightRed: "#F0B27A" - brightGreen: "#76C7AD" - brightYellow: "#48D1CC" - brightBlue: "#47D1CD" - brightMagenta: "#A3E4D7" - brightCyan: "#7AB8A9" - brightWhite: "#D8F0E8" -meta: - mode: "dark" - accent: "cyan" - hue: 220 - pair: null - contrast: - fg: 92.9 - black: 0 - red: 66.2 - green: 62.3 - yellow: 66 - blue: 66 - magenta: 80.9 - cyan: 55.7 - white: 8.5 - brightBlack: 8.5 - brightRed: 66.2 - brightGreen: 62.3 - brightYellow: 66 - brightBlue: 66 - brightMagenta: 80.9 - brightCyan: 55.7 - brightWhite: 92.9 diff --git a/themes/genshin-vibes-sunforge-ember.yaml b/themes/genshin-vibes-sunforge-ember.yaml deleted file mode 100644 index 2a26efca..00000000 --- a/themes/genshin-vibes-sunforge-ember.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Sunforge Ember" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#FDF8F0" - fg: "#5C3A1A" - black: "#FFF5E6" - red: "#D14D5A" - green: "#8B7355" - yellow: "#FF8C42" - blue: "#FF4757" - magenta: "#B4641D" - cyan: "#8B7355" - white: "#FFB347" - brightBlack: "#FFB347" - brightRed: "#D14D5A" - brightGreen: "#8B7355" - brightYellow: "#FF8C42" - brightBlue: "#FF4757" - brightMagenta: "#B4641D" - brightCyan: "#8B7355" - brightWhite: "#5C3A1A" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.4 - black: 0 - red: 64.8 - green: 67.2 - yellow: 41.2 - blue: 55.5 - magenta: 66.1 - cyan: 67.2 - white: 28.7 - brightBlack: 28.7 - brightRed: 64.8 - brightGreen: 67.2 - brightYellow: 41.2 - brightBlue: 55.5 - brightMagenta: 66.1 - brightCyan: 67.2 - brightWhite: 89.4 diff --git a/themes/genshin-vibes-veiled-harbinger.yaml b/themes/genshin-vibes-veiled-harbinger.yaml deleted file mode 100644 index 7d3bf2e0..00000000 --- a/themes/genshin-vibes-veiled-harbinger.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Veiled Harbinger" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#141925" - fg: "#E6ECF5" - black: "#0E1118" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#C7D3E6" - magenta: "#D4A5D4" - cyan: "#967AB7" - white: "#3A4355" - brightBlack: "#3A4355" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#C7D3E6" - brightMagenta: "#D4A5D4" - brightCyan: "#967AB7" - brightWhite: "#E6ECF5" -meta: - mode: "dark" - accent: "orange" - hue: 267 - pair: null - contrast: - fg: 93.8 - black: 0 - red: 41.8 - green: 62 - yellow: 70.3 - blue: 78 - magenta: 60.6 - cyan: 36.5 - white: 8.2 - brightBlack: 8.2 - brightRed: 41.8 - brightGreen: 62 - brightYellow: 70.3 - brightBlue: 78 - brightMagenta: 60.6 - brightCyan: 36.5 - brightWhite: 93.8 diff --git a/themes/genshin-vibes-verdant-dreamweave.yaml b/themes/genshin-vibes-verdant-dreamweave.yaml deleted file mode 100644 index 428ae58e..00000000 --- a/themes/genshin-vibes-verdant-dreamweave.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Verdant Dreamweave" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#1A231A" - fg: "#E8F5D8" - black: "#162116" - red: "#F0D9B5" - green: "#90EE90" - yellow: "#E7FF2F" - blue: "#A7EA43" - magenta: "#B9DAA4" - cyan: "#9AC89A" - white: "#3A4A3A" - brightBlack: "#3A4A3A" - brightRed: "#F0D9B5" - brightGreen: "#90EE90" - brightYellow: "#E7FF2F" - brightBlue: "#A7EA43" - brightMagenta: "#B9DAA4" - brightCyan: "#9AC89A" - brightWhite: "#E8F5D8" -meta: - mode: "dark" - accent: "green" - hue: 145 - pair: null - contrast: - fg: 96 - black: 0 - red: 83.1 - green: 81.3 - yellow: 97.3 - blue: 79.9 - magenta: 75.9 - cyan: 64.3 - white: 8.3 - brightBlack: 8.3 - brightRed: 83.1 - brightGreen: 81.3 - brightYellow: 97.3 - brightBlue: 79.9 - brightMagenta: 75.9 - brightCyan: 64.3 - brightWhite: 96 diff --git a/themes/genshin-vibes-violet-eternity-glow.yaml b/themes/genshin-vibes-violet-eternity-glow.yaml deleted file mode 100644 index 59c7f746..00000000 --- a/themes/genshin-vibes-violet-eternity-glow.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Genshin Vibes: Violet Eternity Glow" -source: - marketplace_id: "bubaic.genshin-vibes" - version: "1.0.2" - installs: 176 - author: "Subrata" - repo: "https://github.com/bubaic/genshin-vibes" - url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" -colors: - bg: "#F7F1FC" - fg: "#4A2E6B" - black: "#FBF8FF" - red: "#B85C6E" - green: "#4A9A7D" - yellow: "#9C4D78" - blue: "#601A42" - magenta: "#6333AE" - cyan: "#4A9A7D" - white: "#A88FB9" - brightBlack: "#A88FB9" - brightRed: "#B85C6E" - brightGreen: "#4A9A7D" - brightYellow: "#9C4D78" - brightBlue: "#601A42" - brightMagenta: "#6333AE" - brightCyan: "#4A9A7D" - brightWhite: "#4A2E6B" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 88.3 - black: 0 - red: 62.9 - green: 54 - yellow: 70.6 - blue: 89.9 - magenta: 80 - cyan: 54 - white: 47.9 - brightBlack: 47.9 - brightRed: 62.9 - brightGreen: 54 - brightYellow: 70.6 - brightBlue: 89.9 - brightMagenta: 80 - brightCyan: 54 - brightWhite: 88.3 diff --git a/themes/gentil-dark.yaml b/themes/gentil-dark.yaml index 94500ad5..3395cfdc 100644 --- a/themes/gentil-dark.yaml +++ b/themes/gentil-dark.yaml @@ -8,6 +8,7 @@ source: author: "Lucgnl" repo: "https://github.com/Lucgnl/gentil-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucgnl.gentil-dark-theme" + formats: null colors: bg: "#191B1F" fg: "#C0C0C0" diff --git a/themes/gentle-builder.yaml b/themes/gentle-builder.yaml deleted file mode 100644 index c66a0312..00000000 --- a/themes/gentle-builder.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gentle Builder" -source: - marketplace_id: "lukeocodes.gentle-themes" - version: "0.0.6" - installs: 4472 - rating: 5 - ratings: 1 - author: "lukeocodes" - repo: "https://github.com/lukeocodes/gentle-themes" - url: "https://marketplace.visualstudio.com/items?itemName=lukeocodes.gentle-themes" -colors: - bg: "#000C16" - fg: "#D9DDE0" - black: "#000C16" - red: "#EF5350" - green: "#22DA6E" - yellow: "#A3C76E" - blue: "#82AAFF" - magenta: "#94F7BD" - cyan: "#3EF8F8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#94F7BD" - brightCyan: "#53A5D4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 237 - pair: null - contrast: - fg: 85.4 - black: 0 - red: 40.1 - green: 68 - yellow: 65.7 - blue: 56.7 - magenta: 89.4 - cyan: 88.5 - white: 107.7 - brightBlack: 16.4 - brightRed: 40.1 - brightGreen: 68 - brightYellow: 94.5 - brightBlue: 56.7 - brightMagenta: 89.4 - brightCyan: 49.1 - brightWhite: 107.7 diff --git a/themes/gentle-clean-light.yaml b/themes/gentle-clean-light.yaml index 021fa959..8b3a2b30 100644 --- a/themes/gentle-clean-light.yaml +++ b/themes/gentle-clean-light.yaml @@ -8,6 +8,7 @@ source: author: "kricsleo" repo: "https://github.com/kricsleo/vscode-theme-gentle-clean" url: "https://marketplace.visualstudio.com/items?itemName=kricsleo.gentle-clean" + formats: null colors: bg: "#FAFAFA" fg: "#393A34" diff --git a/themes/gentle-clean-monokai.yaml b/themes/gentle-clean-monokai.yaml index e0db37ea..d36ce892 100644 --- a/themes/gentle-clean-monokai.yaml +++ b/themes/gentle-clean-monokai.yaml @@ -8,6 +8,7 @@ source: author: "kricsleo" repo: "https://github.com/kricsleo/vscode-theme-gentle-clean" url: "https://marketplace.visualstudio.com/items?itemName=kricsleo.gentle-clean" + formats: null colors: bg: "#303841" fg: "#CBD0D9" diff --git a/themes/gentle-dark-warm.yaml b/themes/gentle-dark-warm.yaml index eb75d94a..37c1eb2e 100644 --- a/themes/gentle-dark-warm.yaml +++ b/themes/gentle-dark-warm.yaml @@ -8,6 +8,7 @@ source: author: "carlossalguero" repo: "https://github.com/salgue441/gentle-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" + formats: null colors: bg: "#1F1D1A" fg: "#D8D4CF" diff --git a/themes/gentle-dark.yaml b/themes/gentle-dark.yaml index a7988ad1..14485b9b 100644 --- a/themes/gentle-dark.yaml +++ b/themes/gentle-dark.yaml @@ -8,6 +8,7 @@ source: author: "carlossalguero" repo: "https://github.com/salgue441/gentle-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" + formats: null colors: bg: "#1C1E22" fg: "#D8DCE2" diff --git a/themes/gentle-light-warmer.yaml b/themes/gentle-light-warmer.yaml index f4ca1e11..b5149d82 100644 --- a/themes/gentle-light-warmer.yaml +++ b/themes/gentle-light-warmer.yaml @@ -8,6 +8,7 @@ source: author: "carlossalguero" repo: "https://github.com/salgue441/gentle-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" + formats: null colors: bg: "#FAF8F5" fg: "#433D38" diff --git a/themes/gentle-light.yaml b/themes/gentle-light.yaml index f144a399..d7aa845b 100644 --- a/themes/gentle-light.yaml +++ b/themes/gentle-light.yaml @@ -8,6 +8,7 @@ source: author: "carlossalguero" repo: "https://github.com/salgue441/gentle-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" + formats: null colors: bg: "#FDFCFA" fg: "#3D424A" diff --git a/themes/gentle-midnight-warm.yaml b/themes/gentle-midnight-warm.yaml index d7a3c203..dbe09d13 100644 --- a/themes/gentle-midnight-warm.yaml +++ b/themes/gentle-midnight-warm.yaml @@ -8,6 +8,7 @@ source: author: "carlossalguero" repo: "https://github.com/salgue441/gentle-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" + formats: null colors: bg: "#100E0C" fg: "#D0C8C0" diff --git a/themes/gentle-midnight.yaml b/themes/gentle-midnight.yaml index 54052116..23fd273c 100644 --- a/themes/gentle-midnight.yaml +++ b/themes/gentle-midnight.yaml @@ -8,6 +8,7 @@ source: author: "carlossalguero" repo: "https://github.com/salgue441/gentle-theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossalguero.gentle-theme" + formats: null colors: bg: "#0D0F12" fg: "#C8CCD4" diff --git a/themes/gentleblack.yaml b/themes/gentleblack.yaml index d3fb0f67..5e35a208 100644 --- a/themes/gentleblack.yaml +++ b/themes/gentleblack.yaml @@ -8,6 +8,7 @@ source: author: "yanglixin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=yanglixin.gentleblack" + formats: null colors: bg: "#3D3B24" fg: "#FFFFFF" diff --git a/themes/gfx.yaml b/themes/gfx.yaml index fc19aa05..a5e79aeb 100644 --- a/themes/gfx.yaml +++ b/themes/gfx.yaml @@ -8,6 +8,7 @@ source: author: "JRENG!" repo: "https://github.com/jrengmusic/Code-gfx" url: "https://marketplace.visualstudio.com/items?itemName=JRENG.gfx" + formats: null colors: bg: "#000000" fg: "#BEBEBE" diff --git a/themes/gg-djaja-darken.yaml b/themes/gg-djaja-darken.yaml index 12cb0664..e0324645 100644 --- a/themes/gg-djaja-darken.yaml +++ b/themes/gg-djaja-darken.yaml @@ -8,6 +8,7 @@ source: author: "bedeute" repo: "https://github.com/bedeute/gg-djaja-theme" url: "https://marketplace.visualstudio.com/items?itemName=bedeute.gg-djaja" + formats: null colors: bg: "#11261F" fg: "#56756C" diff --git a/themes/gg-djaja-default.yaml b/themes/gg-djaja-default.yaml index fdc42d78..9251120f 100644 --- a/themes/gg-djaja-default.yaml +++ b/themes/gg-djaja-default.yaml @@ -8,6 +8,7 @@ source: author: "bedeute" repo: "https://github.com/bedeute/gg-djaja-theme" url: "https://marketplace.visualstudio.com/items?itemName=bedeute.gg-djaja" + formats: null colors: bg: "#142E25" fg: "#7C8C87" diff --git a/themes/gg-djaja-light.yaml b/themes/gg-djaja-light.yaml deleted file mode 100644 index 4f22dbe2..00000000 --- a/themes/gg-djaja-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "gg-djaja-light" -source: - marketplace_id: "bedeute.gg-djaja" - version: "0.3.61" - installs: 145 - rating: 5 - ratings: 1 - author: "bedeute" - repo: "https://github.com/bedeute/gg-djaja-theme" - url: "https://marketplace.visualstudio.com/items?itemName=bedeute.gg-djaja" -colors: - bg: "#FBFAF3" - fg: "#454F5E" - black: "#66655D" - red: "#CD4B5D" - green: "#1E9943" - yellow: "#9B920B" - blue: "#366FB8" - magenta: "#B059CF" - cyan: "#108B99" - white: "#8791A3" - brightBlack: "#807F79" - brightRed: "#F76E81" - brightGreen: "#45BC69" - brightYellow: "#BAB01E" - brightBlue: "#498BE0" - brightMagenta: "#C973E8" - brightCyan: "#1DABBA" - brightWhite: "#9CA5B4" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 85.5 - black: 76.2 - red: 66.6 - green: 60.8 - yellow: 56.2 - blue: 71.7 - magenta: 64.1 - cyan: 64.1 - white: 55.8 - brightBlack: 64.3 - brightRed: 50.1 - brightGreen: 44.3 - brightYellow: 41.1 - brightBlue: 58.8 - brightMagenta: 52.6 - brightCyan: 49.8 - brightWhite: 45.7 diff --git a/themes/ghibli-day.yaml b/themes/ghibli-day.yaml index 6e262376..2da6ab20 100644 --- a/themes/ghibli-day.yaml +++ b/themes/ghibli-day.yaml @@ -8,6 +8,7 @@ source: author: "ghiblistuff" repo: "https://github.com/champi-dev/vscode_ghibli_theme" url: "https://marketplace.visualstudio.com/items?itemName=ghiblistuff.ghibli-theme" + formats: null colors: bg: "#FFF8DC" fg: "#36454F" diff --git a/themes/ghibli-forest-dark.yaml b/themes/ghibli-forest-dark.yaml deleted file mode 100644 index 748e2348..00000000 --- a/themes/ghibli-forest-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ghibli Forest (Dark)" -source: - marketplace_id: "danibram.ghibli-inspired-theme" - version: "1.0.0" - installs: 274 - rating: 0 - ratings: 0 - author: "Daniel Biedma" - repo: "https://github.com/danibram/ghibli-theme" - url: "https://marketplace.visualstudio.com/items?itemName=danibram.ghibli-inspired-theme" -colors: - bg: "#1E2A24" - fg: "#E8DFD0" - black: "#1E2A24" - red: "#C96B6B" - green: "#8FB89F" - yellow: "#D4A84B" - blue: "#6B9AC4" - magenta: "#B88FB8" - cyan: "#6BC4B8" - white: "#E8DFD0" - brightBlack: "#5C7A68" - brightRed: "#E08A8A" - brightGreen: "#A8D4B8" - brightYellow: "#E8C46B" - brightBlue: "#8AB8E0" - brightMagenta: "#D4A8D4" - brightCyan: "#8AE0D4" - brightWhite: "#F4EBE0" -meta: - mode: "dark" - accent: "yellow" - hue: 163 - pair: null - contrast: - fg: 84.5 - black: 0 - red: 34.9 - green: 55.4 - yellow: 55.4 - blue: 42.1 - magenta: 45.5 - cyan: 59 - white: 84.5 - brightBlack: 25.5 - brightRed: 48.5 - brightGreen: 71 - brightYellow: 70 - brightBlue: 57.9 - brightMagenta: 59.6 - brightCyan: 75.2 - brightWhite: 92.3 diff --git a/themes/ghibli-night.yaml b/themes/ghibli-night.yaml index 7895d015..9289f31b 100644 --- a/themes/ghibli-night.yaml +++ b/themes/ghibli-night.yaml @@ -8,6 +8,7 @@ source: author: "ghiblistuff" repo: "https://github.com/champi-dev/vscode_ghibli_theme" url: "https://marketplace.visualstudio.com/items?itemName=ghiblistuff.ghibli-theme" + formats: null colors: bg: "#191970" fg: "#F5F5F5" diff --git a/themes/ghibli-sky-light.yaml b/themes/ghibli-sky-light.yaml index 145ff9a6..6f98e418 100644 --- a/themes/ghibli-sky-light.yaml +++ b/themes/ghibli-sky-light.yaml @@ -8,6 +8,9 @@ source: author: "Daniel Biedma" repo: "https://github.com/danibram/ghibli-theme" url: "https://marketplace.visualstudio.com/items?itemName=danibram.ghibli-inspired-theme" + formats: + iterm2: "https://raw.githubusercontent.com/danibram/ghibli-theme/main/terminal/ghibli-forest.itermcolors" + alacritty: "https://raw.githubusercontent.com/danibram/ghibli-theme/main/terminal/alacritty-ghibli-forest.toml" colors: bg: "#F8F4ED" fg: "#4A4540" diff --git a/themes/ghost-louise.yaml b/themes/ghost-louise.yaml index 5a527b64..213c3f1c 100644 --- a/themes/ghost-louise.yaml +++ b/themes/ghost-louise.yaml @@ -8,6 +8,7 @@ source: author: "zazc" repo: "https://github.com/zazcc" url: "https://marketplace.visualstudio.com/items?itemName=zazcdev.ghostlouise" + formats: null colors: bg: "#705A96" fg: "#A679AB" diff --git a/themes/ghostgrey.yaml b/themes/ghostgrey.yaml index 93be4a42..0dc1da97 100644 --- a/themes/ghostgrey.yaml +++ b/themes/ghostgrey.yaml @@ -8,6 +8,7 @@ source: author: "gtocaia" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gtocaia.theme-ghost" + formats: null colors: bg: "#000000" fg: "#CCCCCC" diff --git a/themes/ghostty-default-styledark.yaml b/themes/ghostty-default-styledark.yaml deleted file mode 100644 index f52f8680..00000000 --- a/themes/ghostty-default-styledark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ghostty Default StyleDark" -source: - marketplace_id: "hnagato.ghostty-dark" - version: "1.0.1" - installs: 283 - rating: 5 - ratings: 1 - author: "hnagato" - repo: "https://github.com/hnagato/vscode-ghostty-theme" - url: "https://marketplace.visualstudio.com/items?itemName=hnagato.ghostty-dark" -colors: - bg: "#292C33" - fg: "#FFFFFF" - black: "#1D1F21" - red: "#BF6B69" - green: "#B7BD73" - yellow: "#E9C880" - blue: "#88A1BB" - magenta: "#AD95B8" - cyan: "#95BDB7" - white: "#C5C8C6" - brightBlack: "#666666" - brightRed: "#C55757" - brightGreen: "#BCC95F" - brightYellow: "#E1C65E" - brightBlue: "#83A5D6" - brightMagenta: "#BC99D4" - brightCyan: "#83BEB1" - brightWhite: "#EAEAEA" -meta: - mode: "dark" - accent: "orange" - hue: 267 - pair: null - contrast: - fg: 103.7 - black: 0 - red: 32.2 - green: 59.6 - yellow: 71.3 - blue: 45.7 - magenta: 45.2 - cyan: 58.1 - white: 68.6 - brightBlack: 18.8 - brightRed: 28.2 - brightGreen: 65 - brightYellow: 68.7 - brightBlue: 48.3 - brightMagenta: 50 - brightCyan: 56.8 - brightWhite: 90 diff --git a/themes/ghostty-synthwave.yaml b/themes/ghostty-synthwave.yaml index ca852dad..6c7adc4a 100644 --- a/themes/ghostty-synthwave.yaml +++ b/themes/ghostty-synthwave.yaml @@ -8,6 +8,7 @@ source: author: "closji" repo: "https://github.com/carlosejimenez/ghostty-synthwave" url: "https://marketplace.visualstudio.com/items?itemName=closji.ghostty-synthwave" + formats: null colors: bg: "#000000" fg: "#DAD9C7" diff --git a/themes/gigaaa.yaml b/themes/gigaaa.yaml index 8b60c799..1c6fe25d 100644 --- a/themes/gigaaa.yaml +++ b/themes/gigaaa.yaml @@ -8,6 +8,7 @@ source: author: "sneed" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sneed1337.giga" + formats: null colors: bg: "#181B20" fg: "#D4D4D4" diff --git a/themes/gineticustheme.yaml b/themes/gineticustheme.yaml index 18c345c0..54df1e2d 100644 --- a/themes/gineticustheme.yaml +++ b/themes/gineticustheme.yaml @@ -8,6 +8,7 @@ source: author: "Gineticus" repo: "https://github.com/Gineticus/gineticus-theme" url: "https://marketplace.visualstudio.com/items?itemName=Gineticus.gineticus-theme" + formats: null colors: bg: "#282C34" fg: "#CED4DF" diff --git a/themes/ginseng.yaml b/themes/ginseng.yaml index 04517941..f6a548fe 100644 --- a/themes/ginseng.yaml +++ b/themes/ginseng.yaml @@ -8,6 +8,7 @@ source: author: "hassan-k1" repo: "https://github.com/Ha55an-k1/vscode-theme-ginseng" url: "https://marketplace.visualstudio.com/items?itemName=hassan-k1.vscode-theme-ginseng" + formats: null colors: bg: "#1F0033" fg: "#F5E6FF" diff --git a/themes/gipsy-dark.yaml b/themes/gipsy-dark.yaml index 349a8ef8..d5d60e1c 100644 --- a/themes/gipsy-dark.yaml +++ b/themes/gipsy-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "lucagaerisch.gipsy-vscode-theme" version: "0.0.2" installs: 128 + rating: 0 + ratings: 0 author: "Luca Gärisch" repo: "https://github.com/lucagaerisch/gipsy-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucagaerisch.gipsy-vscode-theme" + formats: null colors: bg: "#151515" fg: "#F7F1FF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 99.4 black: 0 diff --git a/themes/girls-theme.yaml b/themes/girls-theme.yaml deleted file mode 100644 index 7ca2dc46..00000000 --- a/themes/girls-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "girls-theme" -source: - marketplace_id: "Kuromesi.kuromesi-theme" - version: "0.0.1" - installs: 92 - rating: 0 - ratings: 0 - author: "Kuromesi" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Kuromesi.kuromesi-theme" -colors: - bg: "#000000" - fg: "#E1EED2" - black: "#353551" - red: "#E34F8C" - green: "#FEADA6" - yellow: "#F8C275" - blue: "#C7ADFB" - magenta: "#FF69B4" - cyan: "#24E8D8" - white: "#FBD3E1" - brightBlack: "#919CB9" - brightRed: "#F36F89" - brightGreen: "#AFFA90" - brightYellow: "#F8C275" - brightBlue: "#FFFFFF" - brightMagenta: "#F799C7" - brightCyan: "#8DF9F9" - brightWhite: "#D7D6DF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 93.8 - black: 0 - red: 38.6 - green: 69.7 - yellow: 75.3 - blue: 65.1 - magenta: 51.1 - cyan: 78.7 - white: 86.2 - brightBlack: 48.8 - brightRed: 48.2 - brightGreen: 92.1 - brightYellow: 75.3 - brightBlue: 107.9 - brightMagenta: 63.1 - brightCyan: 92.8 - brightWhite: 82.2 diff --git a/themes/github-blue-dark.yaml b/themes/github-blue-dark.yaml index 28e37eaa..f35c3216 100644 --- a/themes/github-blue-dark.yaml +++ b/themes/github-blue-dark.yaml @@ -8,6 +8,7 @@ source: author: "Nguyễn Thanh Hậu" repo: "https://github.com/z1001st/blue-dark-themb" url: "https://marketplace.visualstudio.com/items?itemName=nguyenhauweb.blue-dark-themb" + formats: null colors: bg: "#1E293B" fg: "#C9D1D9" diff --git a/themes/github-blue-darkest.yaml b/themes/github-blue-darkest.yaml index 1e0c9daa..d0d690a9 100644 --- a/themes/github-blue-darkest.yaml +++ b/themes/github-blue-darkest.yaml @@ -8,6 +8,7 @@ source: author: "Nguyễn Thanh Hậu" repo: "https://github.com/z1001st/blue-dark-themb" url: "https://marketplace.visualstudio.com/items?itemName=nguyenhauweb.blue-dark-themb" + formats: null colors: bg: "#0D1628" fg: "#C9D1D9" diff --git a/themes/github-catppuccin-dark-mix.yaml b/themes/github-catppuccin-dark-mix.yaml deleted file mode 100644 index 3705d485..00000000 --- a/themes/github-catppuccin-dark-mix.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Github Catppuccin Dark Mix" -source: - marketplace_id: "DevGauravJatt.github-catppuccin-dark" - version: "1.0.0" - installs: 4015 - rating: 5 - ratings: 1 - author: "Dev Gaurav Jatt" - repo: "https://github.com/devgauravjatt/github-catppuccin-dark" - url: "https://marketplace.visualstudio.com/items?itemName=DevGauravJatt.github-catppuccin-dark" -colors: - bg: "#1D2127" - fg: "#CAD3F5" - black: "#A5ADCB" - red: "#ED8796" - green: "#A6DA95" - yellow: "#EED49F" - blue: "#8AADF4" - magenta: "#F5BDE6" - cyan: "#91D7E3" - white: "#B8C0E0" - brightBlack: "#5B6078" - brightRed: "#ED8796" - brightGreen: "#A6DA95" - brightYellow: "#EED49F" - brightBlue: "#8AADF4" - brightMagenta: "#F5BDE6" - brightCyan: "#91D7E3" - brightWhite: "#494D64" -meta: - mode: "dark" - accent: "red" - hue: 258 - pair: null - contrast: - fg: 78.2 - black: 56.1 - red: 51.5 - green: 73.6 - yellow: 80 - blue: 55.8 - magenta: 74.5 - cyan: 73.4 - white: 66.9 - brightBlack: 18.7 - brightRed: 51.5 - brightGreen: 73.6 - brightYellow: 80 - brightBlue: 55.8 - brightMagenta: 74.5 - brightCyan: 73.4 - brightWhite: 11.3 diff --git a/themes/github-catppuccin-dark.yaml b/themes/github-catppuccin-dark.yaml deleted file mode 100644 index 82d2d7da..00000000 --- a/themes/github-catppuccin-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Github Catppuccin Dark" -source: - marketplace_id: "DevGauravJatt.github-catppuccin-dark" - version: "1.0.0" - installs: 4015 - rating: 5 - ratings: 1 - author: "Dev Gaurav Jatt" - repo: "https://github.com/devgauravjatt/github-catppuccin-dark" - url: "https://marketplace.visualstudio.com/items?itemName=DevGauravJatt.github-catppuccin-dark" -colors: - bg: "#22272E" - fg: "#CAD3F5" - black: "#A5ADCB" - red: "#ED8796" - green: "#A6DA95" - yellow: "#EED49F" - blue: "#8AADF4" - magenta: "#F5BDE6" - cyan: "#91D7E3" - white: "#B8C0E0" - brightBlack: "#5B6078" - brightRed: "#ED8796" - brightGreen: "#A6DA95" - brightYellow: "#EED49F" - brightBlue: "#8AADF4" - brightMagenta: "#F5BDE6" - brightCyan: "#91D7E3" - brightWhite: "#494D64" -meta: - mode: "dark" - accent: "red" - hue: 257 - pair: null - contrast: - fg: 77.2 - black: 55.1 - red: 50.6 - green: 72.6 - yellow: 79 - blue: 54.8 - magenta: 73.6 - cyan: 72.4 - white: 66 - brightBlack: 17.8 - brightRed: 50.6 - brightGreen: 72.6 - brightYellow: 79 - brightBlue: 54.8 - brightMagenta: 73.6 - brightCyan: 72.4 - brightWhite: 10.3 diff --git a/themes/github-colorblind.yaml b/themes/github-colorblind.yaml deleted file mode 100644 index 04162a4b..00000000 --- a/themes/github-colorblind.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "github-colorblind" -source: - marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" - version: "0.0.7" - installs: 660 - rating: 5 - ratings: 1 - author: "dharmendra kumar" - repo: "https://github.com/dharam-gfx/dharam-gfx-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" -colors: - bg: "#0D1117" - fg: "#C9D1D9" - black: "#484F58" - red: "#EC8E2C" - green: "#58A6FF" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FDAC54" - brightGreen: "#79C0FF" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 258 - pair: null - contrast: - fg: 77.5 - black: 13.1 - red: 53.2 - green: 52.2 - yellow: 52.2 - blue: 52.2 - magenta: 52.2 - cyan: 61.4 - white: 64 - brightBlack: 29.3 - brightRed: 66.8 - brightGreen: 64.7 - brightYellow: 64.7 - brightBlue: 64.7 - brightMagenta: 64.6 - brightCyan: 69.9 - brightWhite: 107.4 diff --git a/themes/github-contrast-theme.yaml b/themes/github-contrast-theme.yaml index d262a5f8..687e3fd2 100644 --- a/themes/github-contrast-theme.yaml +++ b/themes/github-contrast-theme.yaml @@ -8,6 +8,7 @@ source: author: "guillem-ps" repo: "https://github.com/guillem-ps/.dotfiles" url: "https://marketplace.visualstudio.com/items?itemName=guillem-ps.obsidian-breeze" + formats: null colors: bg: "#111111" fg: "#FFFFFF" diff --git a/themes/github-contrast.yaml b/themes/github-contrast.yaml deleted file mode 100644 index b2f25067..00000000 --- a/themes/github-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "github-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#111111" - fg: "#FFFFFF" - black: "#1E1E1E" - red: "#BA0E2E" - green: "#7385BC" - yellow: "#66C4C4" - blue: "#E53D67" - magenta: "#CCCCCC" - cyan: "#5A6FAD" - white: "#FFFFFF" - brightBlack: "#444444" - brightRed: "#F03E5F" - brightGreen: "#B8C1DD" - brightYellow: "#B0E0E0" - brightBlue: "#F197AD" - brightMagenta: "#FFFFFF" - brightCyan: "#9EAACF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.4 - black: 0 - red: 21 - green: 37.5 - yellow: 62.1 - blue: 34.8 - magenta: 75.2 - cyan: 27.5 - white: 107.4 - brightBlack: 9.3 - brightRed: 37.3 - brightGreen: 68.9 - brightYellow: 81.8 - brightBlue: 59.7 - brightMagenta: 107.4 - brightCyan: 56.1 - brightWhite: 107.4 diff --git a/themes/github-dank-dimmed.yaml b/themes/github-dank-dimmed.yaml index 022e3777..37428ec2 100644 --- a/themes/github-dank-dimmed.yaml +++ b/themes/github-dank-dimmed.yaml @@ -2,12 +2,13 @@ name: "Github Dank Dimmed" source: marketplace_id: "Zytesas.github-dank-dimmed" version: "0.0.5" - installs: 4514 + installs: 4516 rating: 5 ratings: 1 author: "Zytesas" repo: "https://github.com/zytesas/GithubDankDimmed" url: "https://marketplace.visualstudio.com/items?itemName=Zytesas.github-dank-dimmed" + formats: null colors: bg: "#252526" fg: "#ADBAC7" diff --git a/themes/github-dark-colorblind-grayscale.yaml b/themes/github-dark-colorblind-grayscale.yaml index 76f34916..e2910e7e 100644 --- a/themes/github-dark-colorblind-grayscale.yaml +++ b/themes/github-dark-colorblind-grayscale.yaml @@ -8,6 +8,7 @@ source: author: "kontheocharis" repo: "https://github.com/kontheocharis/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=kontheocharis.github-vscode-theme-grayscale" + formats: null colors: bg: "#0D0D0D" fg: "#C9D1D9" diff --git a/themes/github-dark-default-grayscale.yaml b/themes/github-dark-default-grayscale.yaml index d2e574c5..db355a7b 100644 --- a/themes/github-dark-default-grayscale.yaml +++ b/themes/github-dark-default-grayscale.yaml @@ -8,6 +8,7 @@ source: author: "kontheocharis" repo: "https://github.com/kontheocharis/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=kontheocharis.github-vscode-theme-grayscale" + formats: null colors: bg: "#0D0D0D" fg: "#E6EDF3" diff --git a/themes/github-dark-default.yaml b/themes/github-dark-default.yaml deleted file mode 100644 index 11c23c5d..00000000 --- a/themes/github-dark-default.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GitHub Dark Default" -source: - marketplace_id: "agavram.github-vscode-theme-minimal" - version: "4.1.3" - installs: 5970 - rating: 3.67 - ratings: 3 - author: "Adrian Avram" - repo: "https://github.com/agavram/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=agavram.github-vscode-theme-minimal" -colors: - bg: "#0D1117" - fg: "#C9D1D9" - black: "#484F58" - red: "#FF7B72" - green: "#3FB950" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FFA198" - brightGreen: "#56D364" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#F0F6FC" -meta: - mode: "dark" - accent: "green" - hue: 258 - pair: "GitHub Light Default" - contrast: - fg: 77.5 - black: 13.1 - red: 52.6 - green: 52.1 - yellow: 52.2 - blue: 52.2 - magenta: 52.2 - cyan: 61.4 - white: 64 - brightBlack: 29.3 - brightRed: 64.8 - brightGreen: 65.5 - brightYellow: 64.7 - brightBlue: 64.7 - brightMagenta: 64.6 - brightCyan: 69.9 - brightWhite: 100.9 diff --git a/themes/github-dark-dimmed-grayscale.yaml b/themes/github-dark-dimmed-grayscale.yaml index 6c784137..7c95e50c 100644 --- a/themes/github-dark-dimmed-grayscale.yaml +++ b/themes/github-dark-dimmed-grayscale.yaml @@ -8,6 +8,7 @@ source: author: "kontheocharis" repo: "https://github.com/kontheocharis/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=kontheocharis.github-vscode-theme-grayscale" + formats: null colors: bg: "#222222" fg: "#ADBAC7" diff --git a/themes/github-dark-dimmed.yaml b/themes/github-dark-dimmed.yaml deleted file mode 100644 index be277b6d..00000000 --- a/themes/github-dark-dimmed.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GitHub Dark Dimmed" -source: - marketplace_id: "agavram.github-vscode-theme-minimal" - version: "4.1.3" - installs: 5970 - rating: 3.67 - ratings: 3 - author: "Adrian Avram" - repo: "https://github.com/agavram/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=agavram.github-vscode-theme-minimal" -colors: - bg: "#22272E" - fg: "#ADBAC7" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: 257 - pair: null - contrast: - fg: 61 - black: 15.7 - red: 44.6 - green: 44.3 - yellow: 44.5 - blue: 44.3 - magenta: 44.1 - cyan: 58.7 - white: 45.3 - brightBlack: 22.8 - brightRed: 57.3 - brightGreen: 56.9 - brightYellow: 57.1 - brightBlue: 57 - brightMagenta: 70.9 - brightCyan: 67.2 - brightWhite: 79.4 diff --git a/themes/github-dark-high-contrast-grayscale.yaml b/themes/github-dark-high-contrast-grayscale.yaml index 9113e6dd..9f01efcf 100644 --- a/themes/github-dark-high-contrast-grayscale.yaml +++ b/themes/github-dark-high-contrast-grayscale.yaml @@ -8,6 +8,7 @@ source: author: "kontheocharis" repo: "https://github.com/kontheocharis/github-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=kontheocharis.github-vscode-theme-grayscale" + formats: null colors: bg: "#0A0A0A" fg: "#F0F3F6" diff --git a/themes/github-dark-mode.yaml b/themes/github-dark-mode.yaml index 13d4516e..4962462a 100644 --- a/themes/github-dark-mode.yaml +++ b/themes/github-dark-mode.yaml @@ -2,12 +2,13 @@ name: "GitHub Dark Mode" source: marketplace_id: "markusylisiurunen.githubdarkmode" version: "0.1.6" - installs: 37591 + installs: 37606 rating: 5 ratings: 3 author: "markusylisiurunen" repo: "https://github.com/markusylisiurunen/github-dark-mode" url: "https://marketplace.visualstudio.com/items?itemName=markusylisiurunen.githubdarkmode" + formats: null colors: bg: "#0D1117" fg: "#C9D1D9" diff --git a/themes/github-dark-palenight.yaml b/themes/github-dark-palenight.yaml deleted file mode 100644 index dd16fe75..00000000 --- a/themes/github-dark-palenight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GitHub Dark Palenight" -source: - marketplace_id: "ConnorAbbas.github-dark-palenight" - version: "1.7.1" - installs: 3533 - rating: 5 - ratings: 3 - author: "Connor Abbas" - repo: "https://github.com/connorabbas/github-dark-palenight" - url: "https://marketplace.visualstudio.com/items?itemName=ConnorAbbas.github-dark-palenight" -colors: - bg: "#0D1117" - fg: "#C9D1D9" - black: "#484F58" - red: "#FF7B72" - green: "#3FB950" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FFA198" - brightGreen: "#56D364" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 258 - pair: null - contrast: - fg: 77.5 - black: 13.1 - red: 52.6 - green: 52.1 - yellow: 52.2 - blue: 52.2 - magenta: 52.2 - cyan: 61.4 - white: 64 - brightBlack: 29.3 - brightRed: 64.8 - brightGreen: 65.5 - brightYellow: 64.7 - brightBlue: 64.7 - brightMagenta: 64.6 - brightCyan: 69.9 - brightWhite: 107.4 diff --git a/themes/github-dark-theme.yaml b/themes/github-dark-theme.yaml deleted file mode 100644 index f6a586a1..00000000 --- a/themes/github-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "github-dark-theme" -source: - marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" - version: "0.0.7" - installs: 660 - rating: 5 - ratings: 1 - author: "dharmendra kumar" - repo: "https://github.com/dharam-gfx/dharam-gfx-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" -colors: - bg: "#24292E" - fg: "#E1E4E8" - black: "#586069" - red: "#EA4A5A" - green: "#34D058" - yellow: "#FFEA7F" - blue: "#2188FF" - magenta: "#B392F0" - cyan: "#39C5CF" - white: "#D1D5DA" - brightBlack: "#959DA5" - brightRed: "#F97583" - brightGreen: "#85E89D" - brightYellow: "#FFEA7F" - brightBlue: "#79B8FF" - brightMagenta: "#B392F0" - brightCyan: "#56D4DD" - brightWhite: "#FAFBFC" -meta: - mode: "dark" - accent: "green" - hue: 248 - pair: null - contrast: - fg: 86.7 - black: 16.6 - red: 34.4 - green: 59.7 - yellow: 90.2 - blue: 36.4 - magenta: 48.9 - cyan: 58.4 - white: 77.3 - brightBlack: 45.2 - brightRed: 47.2 - brightGreen: 76.6 - brightYellow: 90.2 - brightBlue: 58.3 - brightMagenta: 48.9 - brightCyan: 66.9 - brightWhite: 101.6 diff --git a/themes/github-dark-tritanopia.yaml b/themes/github-dark-tritanopia.yaml index 6c6485c9..38e12eac 100644 --- a/themes/github-dark-tritanopia.yaml +++ b/themes/github-dark-tritanopia.yaml @@ -8,6 +8,7 @@ source: author: "zanaty" repo: "https://github.com/moelzanaty3/github-dark-tritanopia" url: "https://marketplace.visualstudio.com/items?itemName=zanaty.github-dark-tritanopia" + formats: null colors: bg: "#0D1117" fg: "#F0F6FC" diff --git a/themes/github-light-default.yaml b/themes/github-light-default.yaml deleted file mode 100644 index 4020b34c..00000000 --- a/themes/github-light-default.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GitHub Light Default" -source: - marketplace_id: "agavram.github-vscode-theme-minimal" - version: "4.1.3" - installs: 5970 - rating: 3.67 - ratings: 3 - author: "Adrian Avram" - repo: "https://github.com/agavram/github-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=agavram.github-vscode-theme-minimal" -colors: - bg: "#FFFFFF" - fg: "#24292E" - black: "#24292E" - red: "#D73A49" - green: "#22863A" - yellow: "#B08800" - blue: "#0366D6" - magenta: "#6F42C1" - cyan: "#1B7C83" - white: "#6A737D" - brightBlack: "#586069" - brightRed: "#CB2431" - brightGreen: "#28A745" - brightYellow: "#DBAB09" - brightBlue: "#2188FF" - brightMagenta: "#8A63D2" - brightCyan: "#3192AA" - brightWhite: "#959DA5" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "GitHub Dark Default" - contrast: - fg: 101.5 - black: 101.5 - red: 70.4 - green: 71.7 - yellow: 60.1 - blue: 76.2 - magenta: 81.7 - cyan: 73.8 - white: 73.4 - brightBlack: 81.7 - brightRed: 75.5 - brightGreen: 57.9 - brightYellow: 41.6 - brightBlue: 61.7 - brightMagenta: 70.1 - brightCyan: 63.3 - brightWhite: 53.1 diff --git a/themes/github-light-theme.yaml b/themes/github-light-theme.yaml deleted file mode 100644 index a9935071..00000000 --- a/themes/github-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "github-light-theme" -source: - marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" - version: "0.0.7" - installs: 660 - rating: 5 - ratings: 1 - author: "dharmendra kumar" - repo: "https://github.com/dharam-gfx/dharam-gfx-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" -colors: - bg: "#FFFFFF" - fg: "#24292F" - black: "#24292F" - red: "#B35900" - green: "#0550AE" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#8A4600" - brightGreen: "#0969DA" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 101.5 - black: 101.5 - red: 72.9 - green: 85.6 - yellow: 98 - blue: 74.9 - magenta: 74.3 - cyan: 73.8 - white: 71.6 - brightBlack: 81.8 - brightRed: 84.1 - brightGreen: 74.9 - brightYellow: 92 - brightBlue: 60.7 - brightMagenta: 59.3 - brightCyan: 63.3 - brightWhite: 57.2 diff --git a/themes/github-minimal.yaml b/themes/github-minimal.yaml deleted file mode 100644 index f02b6dcb..00000000 --- a/themes/github-minimal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GitHub Minimal" -source: - marketplace_id: "dominicegginton.github-minimal-vscode-theme" - version: "0.3.0" - installs: 4511 - rating: 5 - ratings: 2 - author: "Dominic Egginton" - repo: "git+https://github.com/dominicegginton/github-minimal-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dominicegginton.github-minimal-vscode-theme" -colors: - bg: "#FFFFFF" - fg: "#24292E" - black: "#1B1F23" - red: "#D73A49" - green: "#28A745" - yellow: "#FFD33D" - blue: "#0366D6" - magenta: "#6F42C1" - cyan: "#0366D6" - white: "#FFFFFF" - brightBlack: "#1B1F23" - brightRed: "#D73A49" - brightGreen: "#28A745" - brightYellow: "#FFD33D" - brightBlue: "#0366D6" - brightMagenta: "#6F42C1" - brightCyan: "#0366D6" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 101.5 - black: 103.5 - red: 70.4 - green: 57.9 - yellow: 20.6 - blue: 76.2 - magenta: 81.7 - cyan: 76.2 - white: 0 - brightBlack: 103.5 - brightRed: 70.4 - brightGreen: 57.9 - brightYellow: 20.6 - brightBlue: 76.2 - brightMagenta: 81.7 - brightCyan: 76.2 - brightWhite: 0 diff --git a/themes/github-revamp.yaml b/themes/github-revamp.yaml deleted file mode 100644 index c0a6c149..00000000 --- a/themes/github-revamp.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GitHub Revamp" -source: - marketplace_id: "Avetis.github-revamp" - version: "0.0.4" - installs: 1168 - rating: 0 - ratings: 0 - author: "Avetis" - repo: "https://github.com/AvetisDN/github-revamp" - url: "https://marketplace.visualstudio.com/items?itemName=Avetis.github-revamp" -colors: - bg: "#202426" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 77.9 - black: 0 - red: 25.1 - green: 51.4 - yellow: 84 - blue: 25.8 - magenta: 28.1 - cyan: 45.9 - white: 88.4 - brightBlack: 20.4 - brightRed: 36.9 - brightGreen: 61.9 - brightYellow: 94 - brightBlue: 38.4 - brightMagenta: 43.7 - brightCyan: 53.8 - brightWhite: 88.4 diff --git a/themes/github-theme-by-humamafif.yaml b/themes/github-theme-by-humamafif.yaml index c53795d4..0b15c6ec 100644 --- a/themes/github-theme-by-humamafif.yaml +++ b/themes/github-theme-by-humamafif.yaml @@ -1,4 +1,4 @@ -name: "Github-theme-by-humamafif" +name: "Github Theme by humamafif" source: marketplace_id: "humamafif.github-theme-by-humamafif" version: "0.0.3" @@ -8,6 +8,7 @@ source: author: "humamafif" repo: "https://github.com/humamafif/my-github-theme" url: "https://marketplace.visualstudio.com/items?itemName=humamafif.github-theme-by-humamafif" + formats: null colors: bg: "#0D1117" fg: "#EEEEEE" diff --git a/themes/github.yaml b/themes/github.yaml deleted file mode 100644 index 3296f7f8..00000000 --- a/themes/github.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "github" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#333333" - fg: "#FFFFFF" - black: "#404040" - red: "#BA0E2E" - green: "#7385BC" - yellow: "#66C4C4" - blue: "#E53D67" - magenta: "#CCCCCC" - cyan: "#5A6FAD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F03E5F" - brightGreen: "#B8C1DD" - brightYellow: "#B0E0E0" - brightBlue: "#F197AD" - brightMagenta: "#FFFFFF" - brightCyan: "#9EAACF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102 - black: 0 - red: 15.6 - green: 32.1 - yellow: 56.8 - blue: 29.5 - magenta: 69.8 - cyan: 22.2 - white: 102 - brightBlack: 17.2 - brightRed: 31.9 - brightGreen: 63.6 - brightYellow: 76.5 - brightBlue: 54.4 - brightMagenta: 102 - brightCyan: 50.7 - brightWhite: 102 diff --git a/themes/gitlab-dark-grey.yaml b/themes/gitlab-dark-grey.yaml deleted file mode 100644 index a5f6e817..00000000 --- a/themes/gitlab-dark-grey.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GitLab Dark Grey" -source: - marketplace_id: "AlbertoRestifo.gitlab-webide-theme" - version: "1.0.1" - installs: 5712 - rating: 0 - ratings: 0 - author: "Alberto Restifo" - repo: "https://github.com/albertorestifo/gitlab-webide-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" -colors: - bg: "#222222" - fg: "#FFFFFF" - black: "#000000" - red: "#F57F6C" - green: "#52B87A" - yellow: "#D99530" - blue: "#7FB6ED" - magenta: "#F88AAF" - cyan: "#32C5D2" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#FCB5AA" - brightGreen: "#91D4A8" - brightYellow: "#E9BE74" - brightBlue: "#498DD1" - brightMagenta: "#FCACC5" - brightCyan: "#5EDEE3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 105.5 - black: 0 - red: 49.5 - green: 51.2 - yellow: 50.1 - blue: 57.9 - magenta: 55.2 - cyan: 59.5 - white: 105.5 - brightBlack: 20.6 - brightRed: 70 - brightGreen: 69.3 - brightYellow: 68.8 - brightBlue: 37 - brightMagenta: 67.8 - brightCyan: 73.4 - brightWhite: 105.5 diff --git a/themes/gitlab-dark.yaml b/themes/gitlab-dark.yaml deleted file mode 100644 index 8523fbbc..00000000 --- a/themes/gitlab-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GitLab Dark" -source: - marketplace_id: "AlbertoRestifo.gitlab-webide-theme" - version: "1.0.1" - installs: 5712 - rating: 0 - ratings: 0 - author: "Alberto Restifo" - repo: "https://github.com/albertorestifo/gitlab-webide-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" -colors: - bg: "#28262B" - fg: "#FFFFFF" - black: "#000000" - red: "#F57F6C" - green: "#52B87A" - yellow: "#D99530" - blue: "#7FB6ED" - magenta: "#F88AAF" - cyan: "#32C5D2" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#FCB5AA" - brightGreen: "#91D4A8" - brightYellow: "#E9BE74" - brightBlue: "#498DD1" - brightMagenta: "#FCACC5" - brightCyan: "#5EDEE3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "GitLab Light" - contrast: - fg: 104.6 - black: 0 - red: 48.7 - green: 50.4 - yellow: 49.3 - blue: 57.1 - magenta: 54.4 - cyan: 58.6 - white: 104.6 - brightBlack: 19.8 - brightRed: 69.2 - brightGreen: 68.5 - brightYellow: 68 - brightBlue: 36.2 - brightMagenta: 67 - brightCyan: 72.6 - brightWhite: 104.6 diff --git a/themes/gitlab-light.yaml b/themes/gitlab-light.yaml deleted file mode 100644 index c8f59ffb..00000000 --- a/themes/gitlab-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GitLab Light" -source: - marketplace_id: "AlbertoRestifo.gitlab-webide-theme" - version: "1.0.1" - installs: 5712 - rating: 0 - ratings: 0 - author: "Alberto Restifo" - repo: "https://github.com/albertorestifo/gitlab-webide-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" -colors: - bg: "#FAFAFF" - fg: "#303030" - black: "#303030" - red: "#A31700" - green: "#0A7F3D" - yellow: "#AF551D" - blue: "#006CD8" - magenta: "#583CAC" - cyan: "#00798A" - white: "#303030" - brightBlack: "#303030" - brightRed: "#A31700" - brightGreen: "#0A7F3D" - brightYellow: "#AF551D" - brightBlue: "#006CD8" - brightMagenta: "#583CAC" - brightCyan: "#00798A" - brightWhite: "#303030" -meta: - mode: "light" - accent: "purple" - hue: null - pair: "GitLab Dark" - contrast: - fg: 96.8 - black: 96.8 - red: 82.5 - green: 71.9 - yellow: 71.7 - blue: 71.4 - magenta: 84.1 - cyan: 72 - white: 96.8 - brightBlack: 96.8 - brightRed: 82.5 - brightGreen: 71.9 - brightYellow: 71.7 - brightBlue: 71.4 - brightMagenta: 84.1 - brightCyan: 72 - brightWhite: 96.8 diff --git a/themes/gitlab.yaml b/themes/gitlab.yaml index 7c90f10f..76b08e2e 100644 --- a/themes/gitlab.yaml +++ b/themes/gitlab.yaml @@ -1,4 +1,4 @@ -name: "GitLab" +name: "gitlab" source: marketplace_id: "RedstoneWizard08.gitlab" version: "0.2.0" @@ -8,6 +8,7 @@ source: author: "RedstoneWizard08" repo: null url: "https://marketplace.visualstudio.com/items?itemName=RedstoneWizard08.gitlab" + formats: null colors: bg: "#1F1F1F" fg: "#DBDBDB" diff --git a/themes/giyu-tomioka.yaml b/themes/giyu-tomioka.yaml deleted file mode 100644 index 39f9025b..00000000 --- a/themes/giyu-tomioka.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Giyu Tomioka" -source: - marketplace_id: "devLocifer.hashira-code-theme" - version: "0.0.1" - installs: 739 - rating: 5 - ratings: 1 - author: "devLocifer" - repo: "https://github.com/diazdjul19/hashira-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" -colors: - bg: "#131A26" - fg: "#ABB2BF" - black: "#212121" - red: "#FF5252" - green: "#8BC34A" - yellow: "#FFCA28" - blue: "#00BCD4" - magenta: "#AA00FF" - cyan: "#00E5FF" - white: "#E0E0E0" - brightBlack: "#616161" - brightRed: "#FF8A80" - brightGreen: "#C6FF00" - brightYellow: "#FFE082" - brightBlue: "#80D8FF" - brightMagenta: "#EA80FC" - brightCyan: "#84FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 261 - pair: null - contrast: - fg: 59.1 - black: 0 - red: 42.5 - green: 60 - yellow: 77.5 - blue: 56.2 - magenta: 28.1 - cyan: 77.7 - white: 86.6 - brightBlack: 19.6 - brightRed: 56.2 - brightGreen: 94.2 - brightYellow: 88 - brightBlue: 75 - brightMagenta: 55.1 - brightCyan: 94.2 - brightWhite: 106.6 diff --git a/themes/giza.yaml b/themes/giza.yaml index 1f1763c5..3b2fec3e 100644 --- a/themes/giza.yaml +++ b/themes/giza.yaml @@ -1,52 +1,53 @@ name: "Giza" source: - marketplace_id: "svygzhryr.inei" - version: "0.0.3" - installs: 53 + marketplace_id: "svygzhryr.giza" + version: "1.4.2" + installs: 176 rating: 0 ratings: 0 author: "Pavel Mihailov" - repo: "https://github.com/Svygzhryr/Inei" - url: "https://marketplace.visualstudio.com/items?itemName=svygzhryr.inei" + repo: "https://github.com/Svygzhryr/Giza" + url: "https://marketplace.visualstudio.com/items?itemName=svygzhryr.giza" + formats: null colors: - bg: "#0E0D12" - fg: "#D0CAE3" - black: "#1A1821" - red: "#F04279" - green: "#957BF5" - yellow: "#B6A5F1" - blue: "#957BF5" - magenta: "#8775C7" - cyan: "#C0B3E7" - white: "#D0CAE3" - brightBlack: "#36304B" - brightRed: "#EF004C" - brightGreen: "#8160F8" - brightYellow: "#D27D68" - brightBlue: "#D0CAE3" - brightMagenta: "#E52B91" - brightCyan: "#957BF5" + bg: "#090707" + fg: "#E4CB99" + black: "#47413D" + red: "#DD3737" + green: "#F2849C" + yellow: "#F6D066" + blue: "#EF3434" + magenta: "#E765A6" + cyan: "#E61E1E" + white: "#D8D8D8" + brightBlack: "#543636" + brightRed: "#F09898" + brightGreen: "#E597DC" + brightYellow: "#FDD629" + brightBlue: "#E4CB99" + brightMagenta: "#F79ACD" + brightCyan: "#B5FFFB" brightWhite: "#FAFAFA" meta: mode: "dark" accent: "orange" - hue: 294 + hue: null pair: null contrast: - fg: 76.1 - black: 0 - red: 38.6 - green: 41.7 - yellow: 59.1 - blue: 41.7 - magenta: 35.1 - cyan: 65 - white: 76.1 - brightBlack: 0 - brightRed: 33.8 - brightGreen: 32.6 - brightYellow: 44.3 - brightBlue: 76.1 - brightMagenta: 34.7 - brightCyan: 41.7 - brightWhite: 104.3 + fg: 76.6 + black: 9.1 + red: 31.9 + green: 54 + yellow: 80.4 + blue: 35.8 + magenta: 44.5 + cyan: 31.9 + white: 82.9 + brightBlack: 7.8 + brightRed: 59.5 + brightGreen: 60.2 + brightYellow: 83.5 + brightBlue: 76.6 + brightMagenta: 63.6 + brightCyan: 99 + brightWhite: 104.5 diff --git a/themes/glacier-blue.yaml b/themes/glacier-blue.yaml deleted file mode 100644 index 79540dd4..00000000 --- a/themes/glacier-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Glacier-Blue" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#012B3C" - fg: "#DBF5FA" - black: "#012B3C" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#049BD7" - magenta: "#049BD7" - cyan: "#29C3A0" - white: "#DBF5FA" - brightBlack: "#012B3C" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#049BD7" - brightMagenta: "#049BD7" - brightCyan: "#29C3A0" - brightWhite: "#DBF5FA" -meta: - mode: "dark" - accent: "yellow" - hue: 231 - pair: null - contrast: - fg: 94.6 - black: 0 - red: 0 - green: 55.1 - yellow: 49.1 - blue: 40.3 - magenta: 40.3 - cyan: 55.1 - white: 94.6 - brightBlack: 0 - brightRed: 0 - brightGreen: 55.1 - brightYellow: 49.1 - brightBlue: 40.3 - brightMagenta: 40.3 - brightCyan: 55.1 - brightWhite: 94.6 diff --git a/themes/glance-contrast.yaml b/themes/glance-contrast.yaml deleted file mode 100644 index 882409ee..00000000 --- a/themes/glance-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "glance-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#111219" - fg: "#FFFFFF" - black: "#1B1D28" - red: "#BA0E2E" - green: "#EF8354" - yellow: "#6E81A0" - blue: "#FFFFFF" - magenta: "#EF8354" - cyan: "#6E81A0" - white: "#FFFFFF" - brightBlack: "#3A3E56" - brightRed: "#F03E5F" - brightGreen: "#F8C7B1" - brightYellow: "#ACB7C8" - brightBlue: "#FFFFFF" - brightMagenta: "#F8C7B1" - brightCyan: "#ACB7C8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 279 - pair: null - contrast: - fg: 107.3 - black: 0 - red: 20.9 - green: 50.8 - yellow: 34.1 - blue: 107.3 - magenta: 50.8 - cyan: 34.1 - white: 107.3 - brightBlack: 7.6 - brightRed: 37.2 - brightGreen: 78.3 - brightYellow: 62.3 - brightBlue: 107.3 - brightMagenta: 78.3 - brightCyan: 62.3 - brightWhite: 107.3 diff --git a/themes/glance-light.yaml b/themes/glance-light.yaml deleted file mode 100644 index 18c5c73c..00000000 --- a/themes/glance-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "glance-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#2D3142" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#EF8354" - yellow: "#6E81A0" - blue: "#2D3142" - magenta: "#EF8354" - cyan: "#6E81A0" - white: "#373C51" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#F8C7B1" - brightYellow: "#ACB7C8" - brightBlue: "#565E7F" - brightMagenta: "#F8C7B1" - brightCyan: "#ACB7C8" - brightWhite: "#565E7F" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99.1 - black: 0 - red: 80.3 - green: 50.5 - yellow: 66.9 - blue: 99.1 - magenta: 50.5 - cyan: 66.9 - white: 95.2 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 24.2 - brightYellow: 39.4 - brightBlue: 81.6 - brightMagenta: 24.2 - brightCyan: 39.4 - brightWhite: 81.6 diff --git a/themes/glance.yaml b/themes/glance.yaml deleted file mode 100644 index 6325fc55..00000000 --- a/themes/glance.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "glance" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2D3142" - fg: "#FFFFFF" - black: "#373C51" - red: "#BA0E2E" - green: "#EF8354" - yellow: "#6E81A0" - blue: "#FFFFFF" - magenta: "#EF8354" - cyan: "#6E81A0" - white: "#FFFFFF" - brightBlack: "#565E7F" - brightRed: "#F03E5F" - brightGreen: "#F8C7B1" - brightYellow: "#ACB7C8" - brightBlue: "#FFFFFF" - brightMagenta: "#F8C7B1" - brightCyan: "#ACB7C8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 274 - pair: null - contrast: - fg: 102.3 - black: 0 - red: 16 - green: 45.9 - yellow: 29.2 - blue: 102.3 - magenta: 45.9 - cyan: 29.2 - white: 102.3 - brightBlack: 14.7 - brightRed: 32.3 - brightGreen: 73.4 - brightYellow: 57.4 - brightBlue: 102.3 - brightMagenta: 73.4 - brightCyan: 57.4 - brightWhite: 102.3 diff --git a/themes/glassonion.yaml b/themes/glassonion.yaml index f56ed15b..7ec6637b 100644 --- a/themes/glassonion.yaml +++ b/themes/glassonion.yaml @@ -8,6 +8,7 @@ source: author: "selfrefactor" repo: "https://github.com/selfrefactor/niketa-themes" url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.GlassOnion" + formats: null colors: bg: "#F5F5F5" fg: "#192112" diff --git a/themes/gleam-theme-minimal-dark.yaml b/themes/gleam-theme-minimal-dark.yaml deleted file mode 100644 index b590f3f7..00000000 --- a/themes/gleam-theme-minimal-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "gleam-theme-minimal-dark" -source: - marketplace_id: "nicklasxyz.gleam-themes" - version: "0.0.3" - installs: 3220 - rating: 0 - ratings: 0 - author: "nicklasxyz" - repo: "https://github.com/NicklasXYZ/vscode-gleam-themes" - url: "https://marketplace.visualstudio.com/items?itemName=nicklasxyz.gleam-themes" -colors: - bg: "#0F0F0F" - fg: "#DCDCDC" - black: "#9F9F9F" - red: "#FFD08F" - green: "#FFAFF3" - yellow: "#FFFA9F" - blue: "#DCDCDC" - magenta: "#9F9F9F" - cyan: "#6BCCCC" - white: "#DCDCDC" - brightBlack: "#9F9F9F" - brightRed: "#FFD08F" - brightGreen: "#FFAFF3" - brightYellow: "#FFFA9F" - brightBlue: "#DCDCDC" - brightMagenta: "#9F9F9F" - brightCyan: "#6BCCCC" - brightWhite: "#DCDCDC" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 85 - black: 50 - red: 82.4 - green: 73.7 - yellow: 101.6 - blue: 85 - magenta: 50 - cyan: 66.5 - white: 85 - brightBlack: 50 - brightRed: 82.4 - brightGreen: 73.7 - brightYellow: 101.6 - brightBlue: 85 - brightMagenta: 50 - brightCyan: 66.5 - brightWhite: 85 diff --git a/themes/glitchly-green.yaml b/themes/glitchly-green.yaml deleted file mode 100644 index 7e644bc7..00000000 --- a/themes/glitchly-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Glitchly Green" -source: - marketplace_id: "FossFreaks.weird-theme" - version: "1.0.2" - installs: 514 - rating: 4.5 - ratings: 2 - author: "FossFreaks" - repo: "https://github.com/fossfreaks/Weird-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=FossFreaks.weird-theme" -colors: - bg: "#18181B" - fg: "#90A4AE" - black: "#000000" - red: "#B83360" - green: "#21A771" - yellow: "#9E9D24" - blue: "#2472C8" - magenta: "#AA76D5" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#EC407A" - brightGreen: "#23D18B" - brightYellow: "#C7C531" - brightBlue: "#3B8EEA" - brightMagenta: "#C682FF" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 50.2 - black: 0 - red: 23.2 - green: 43.5 - yellow: 45.8 - blue: 27.3 - magenta: 39.8 - cyan: 47.4 - white: 89.9 - brightBlack: 21.9 - brightRed: 36.7 - brightGreen: 63.4 - brightYellow: 67.3 - brightBlue: 39.9 - brightMagenta: 50.1 - brightCyan: 55.3 - brightWhite: 89.9 diff --git a/themes/gloam.yaml b/themes/gloam.yaml index cd6ec353..a178dcaa 100644 --- a/themes/gloam.yaml +++ b/themes/gloam.yaml @@ -8,6 +8,7 @@ source: author: "hitblast_" repo: "https://github.com/hitblast/Gloam" url: "https://marketplace.visualstudio.com/items?itemName=exthitblast.gloam" + formats: null colors: bg: "#0E0E0E" fg: "#FFFDF2" diff --git a/themes/globe.yaml b/themes/globe.yaml index e3114bd3..a26c920d 100644 --- a/themes/globe.yaml +++ b/themes/globe.yaml @@ -8,6 +8,7 @@ source: author: "Aritro Sana" repo: "https://github.com/AritrSana/globe-theme" url: "https://marketplace.visualstudio.com/items?itemName=GlobeTheme.globe-theme" + formats: null colors: bg: "#303030" fg: "#FFFFFF" diff --git a/themes/gloom-contrast.yaml b/themes/gloom-contrast.yaml deleted file mode 100644 index d9c16e8a..00000000 --- a/themes/gloom-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "gloom-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0F120F" - fg: "#D8EBE5" - black: "#1B201B" - red: "#BA0E2E" - green: "#26A6A6" - yellow: "#FF5D38" - blue: "#BCD42A" - magenta: "#26A6A6" - cyan: "#FF5D38" - white: "#E9F4F0" - brightBlack: "#3D4A3D" - brightRed: "#F03E5F" - brightGreen: "#59D9D9" - brightYellow: "#FFB09E" - brightBlue: "#D7E67E" - brightMagenta: "#59D9D9" - brightCyan: "#FFB09E" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 91.6 - black: 0 - red: 21 - green: 45.5 - yellow: 44.9 - blue: 73.1 - magenta: 45.5 - cyan: 44.9 - white: 98.5 - brightBlack: 10.2 - brightRed: 37.3 - brightGreen: 72.2 - brightYellow: 70.2 - brightBlue: 85.8 - brightMagenta: 72.2 - brightCyan: 70.2 - brightWhite: 107.4 diff --git a/themes/gloom-light.yaml b/themes/gloom-light.yaml deleted file mode 100644 index 30982db9..00000000 --- a/themes/gloom-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "gloom-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#D8EBE5" - fg: "#2A332B" - black: "#E9F4F0" - red: "#BA0E2E" - green: "#26A6A6" - yellow: "#FF5D38" - blue: "#98AD0D" - magenta: "#26A6A6" - cyan: "#FF5D38" - white: "#364137" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#59D9D9" - brightYellow: "#FFB09E" - brightBlue: "#D6EF31" - brightMagenta: "#59D9D9" - brightCyan: "#FFB09E" - brightWhite: "#586B5A" -meta: - mode: "light" - accent: "orange" - hue: 175 - pair: null - contrast: - fg: 85 - black: 0 - red: 66 - green: 41.4 - yellow: 42 - blue: 35 - magenta: 41.4 - cyan: 42 - white: 80.4 - brightBlack: 13.8 - brightRed: 49.5 - brightGreen: 15.7 - brightYellow: 17.6 - brightBlue: 0 - brightMagenta: 15.7 - brightCyan: 17.6 - brightWhite: 64.3 diff --git a/themes/gloom.yaml b/themes/gloom.yaml deleted file mode 100644 index c59b4db1..00000000 --- a/themes/gloom.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "gloom" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2A332B" - fg: "#D8EBE5" - black: "#364137" - red: "#BA0E2E" - green: "#26A6A6" - yellow: "#FF5D38" - blue: "#BCD42A" - magenta: "#26A6A6" - cyan: "#FF5D38" - white: "#E9F4F0" - brightBlack: "#586B5A" - brightRed: "#F03E5F" - brightGreen: "#59D9D9" - brightYellow: "#FFB09E" - brightBlue: "#D7E67E" - brightMagenta: "#59D9D9" - brightCyan: "#FFB09E" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 148 - pair: null - contrast: - fg: 86.8 - black: 0 - red: 16.2 - green: 40.7 - yellow: 40.2 - blue: 68.4 - magenta: 40.7 - cyan: 40.2 - white: 93.7 - brightBlack: 17.8 - brightRed: 32.5 - brightGreen: 67.4 - brightYellow: 65.4 - brightBlue: 81 - brightMagenta: 67.4 - brightCyan: 65.4 - brightWhite: 102.6 diff --git a/themes/glowfish-contrast.yaml b/themes/glowfish-contrast.yaml deleted file mode 100644 index acd9859f..00000000 --- a/themes/glowfish-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "glowfish-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#090B07" - fg: "#6EA240" - black: "#161B11" - red: "#BA0E2E" - green: "#95CC5E" - yellow: "#DB784D" - blue: "#60A365" - magenta: "#D65940" - cyan: "#95CC5E" - white: "#7AB447" - brightBlack: "#3C492F" - brightRed: "#F03E5F" - brightGreen: "#C8E5AB" - brightYellow: "#ECB8A2" - brightBlue: "#A1C8A4" - brightMagenta: "#E8A294" - brightCyan: "#C8E5AB" - brightWhite: "#A2CB7D" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 44.5 - black: 0 - red: 21.3 - green: 66.4 - yellow: 44.2 - blue: 44.6 - magenta: 35.7 - cyan: 66.4 - white: 53.1 - brightBlack: 10 - brightRed: 37.6 - brightGreen: 85 - brightYellow: 70.4 - brightBlue: 67.4 - brightMagenta: 61.3 - brightCyan: 85 - brightWhite: 67.7 diff --git a/themes/glowfish-light.yaml b/themes/glowfish-light.yaml deleted file mode 100644 index f6a5dbb6..00000000 --- a/themes/glowfish-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "glowfish-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#E3EADC" - fg: "#191F13" - black: "#F0F4EC" - red: "#BA0E2E" - green: "#95CC5E" - yellow: "#DB784D" - blue: "#60A365" - magenta: "#D65940" - cyan: "#95CC5E" - white: "#262F1D" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#C8E5AB" - brightYellow: "#ECB8A2" - brightBlue: "#A1C8A4" - brightMagenta: "#E8A294" - brightCyan: "#C8E5AB" - brightWhite: "#4C5E3A" -meta: - mode: "light" - accent: "orange" - hue: 129 - pair: null - contrast: - fg: 89.9 - black: 0 - red: 66.5 - green: 22.1 - yellow: 43.5 - blue: 43.1 - magenta: 52 - cyan: 22.1 - white: 86.7 - brightBlack: 13.2 - brightRed: 50 - brightGreen: 0 - brightYellow: 18.3 - brightBlue: 21.1 - brightMagenta: 27 - brightCyan: 0 - brightWhite: 70.6 diff --git a/themes/glowfish.yaml b/themes/glowfish.yaml deleted file mode 100644 index 90e43560..00000000 --- a/themes/glowfish.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "glowfish" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#191F13" - fg: "#6EA240" - black: "#262F1D" - red: "#BA0E2E" - green: "#95CC5E" - yellow: "#DB784D" - blue: "#60A365" - magenta: "#D65940" - cyan: "#95CC5E" - white: "#7AB447" - brightBlack: "#4C5E3A" - brightRed: "#F03E5F" - brightGreen: "#C8E5AB" - brightYellow: "#ECB8A2" - brightBlue: "#A1C8A4" - brightMagenta: "#E8A294" - brightCyan: "#C8E5AB" - brightWhite: "#A2CB7D" -meta: - mode: "dark" - accent: "orange" - hue: 130 - pair: null - contrast: - fg: 43 - black: 0 - red: 19.8 - green: 64.8 - yellow: 42.6 - blue: 43.1 - magenta: 34.1 - cyan: 64.8 - white: 51.6 - brightBlack: 15.8 - brightRed: 36.1 - brightGreen: 83.4 - brightYellow: 68.9 - brightBlue: 65.8 - brightMagenta: 59.7 - brightCyan: 83.4 - brightWhite: 66.2 diff --git a/themes/glowing-sun.yaml b/themes/glowing-sun.yaml index 31a8dcab..8763453a 100644 --- a/themes/glowing-sun.yaml +++ b/themes/glowing-sun.yaml @@ -8,6 +8,7 @@ source: author: "Pro Gamer" repo: "https://github.com/Pro-The-Dev-Op/Pro-s-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ProGamer.pro-ggamer" + formats: null colors: bg: "#000000" fg: "#FF0000" diff --git a/themes/glowing-yellow.yaml b/themes/glowing-yellow.yaml index 99aeba83..750cb618 100644 --- a/themes/glowing-yellow.yaml +++ b/themes/glowing-yellow.yaml @@ -8,6 +8,7 @@ source: author: "J. Feser" repo: "https://github.com/redo7370/darkercolors" url: "https://marketplace.visualstudio.com/items?itemName=JFeser.darkercolor" + formats: null colors: bg: "#0A0A05" fg: "#F2F2F2" diff --git a/themes/glowminerals.yaml b/themes/glowminerals.yaml index 4be98a5b..35787cb4 100644 --- a/themes/glowminerals.yaml +++ b/themes/glowminerals.yaml @@ -3,9 +3,13 @@ source: marketplace_id: "fefafe.glowminerals" version: "0.4.5" installs: 459 + rating: 0 + ratings: 0 author: "Felix Faber" repo: "https://github.com/fefafe/glowminerals-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=fefafe.glowminerals" + formats: + sublime: "https://raw.githubusercontent.com/fefafe/glowminerals-color-theme/main/themes/GlowMinerals.tmTheme" colors: bg: "#0B0F14" fg: "#D8D6DC" diff --git a/themes/glu-dark-lighter.yaml b/themes/glu-dark-lighter.yaml index a414e9b0..dae75b69 100644 --- a/themes/glu-dark-lighter.yaml +++ b/themes/glu-dark-lighter.yaml @@ -8,6 +8,7 @@ source: author: "Gabriel Lungu" repo: "https://gabilungu@dev.azure.com/gabilungu/Glu%20dark%20theme/_git/Glu%20dark%20theme" url: "https://marketplace.visualstudio.com/items?itemName=gabilungu.glu-dark-theme" + formats: null colors: bg: "#2D2B34" fg: "#D9CECC" diff --git a/themes/glu-dark.yaml b/themes/glu-dark.yaml index e1577cb0..2d012289 100644 --- a/themes/glu-dark.yaml +++ b/themes/glu-dark.yaml @@ -8,6 +8,7 @@ source: author: "Gabriel Lungu" repo: "https://gabilungu@dev.azure.com/gabilungu/Glu%20dark%20theme/_git/Glu%20dark%20theme" url: "https://marketplace.visualstudio.com/items?itemName=gabilungu.glu-dark-theme" + formats: null colors: bg: "#26242B" fg: "#D9CECC" diff --git a/themes/glv-s-theme.yaml b/themes/glv-s-theme.yaml deleted file mode 100644 index d8e71379..00000000 --- a/themes/glv-s-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "glv's theme" -source: - marketplace_id: "rodrigomessias.glv-dark" - version: "1.0.0" - installs: 202 - rating: 0 - ratings: 0 - author: "Rodrigo Messias" - repo: "https://github.com/rodrigomessias/glv-vscode-dark" - url: "https://marketplace.visualstudio.com/items?itemName=rodrigomessias.glv-dark" -colors: - bg: "#1D1F21" - fg: "#D3D3D3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 77.9 - black: 0 - red: 25.8 - green: 52.1 - yellow: 84.7 - blue: 26.5 - magenta: 28.8 - cyan: 46.6 - white: 89.1 - brightBlack: 21.1 - brightRed: 37.6 - brightGreen: 62.6 - brightYellow: 94.7 - brightBlue: 39.1 - brightMagenta: 44.4 - brightCyan: 54.5 - brightWhite: 89.1 diff --git a/themes/gms2.yaml b/themes/gms2.yaml deleted file mode 100644 index f6a72b6b..00000000 --- a/themes/gms2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GMS2" -source: - marketplace_id: "347Online.gms2-theme" - version: "0.0.1" - installs: 357 - rating: 4 - ratings: 1 - author: "347Online" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=347Online.gms2-theme" -colors: - bg: "#1E1E1E" - fg: "#C0C0C0" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 66.8 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/gnome-base16.yaml b/themes/gnome-base16.yaml deleted file mode 100644 index a067669f..00000000 --- a/themes/gnome-base16.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gnome Base16" -source: - marketplace_id: "kesmarag.adwaita-base16" - version: "0.0.2" - installs: 7555 - rating: 0 - ratings: 0 - author: "Costas Smaragdakis" - repo: "https://github.com/kesmarag/adwaita-base16-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=kesmarag.adwaita-base16" -colors: - bg: "#1D1F21" - fg: "#C5C8C6" - black: "#000000" - red: "#CC6666" - green: "#B5BD68" - yellow: "#F0C674" - blue: "#81A2BE" - magenta: "#B294BB" - cyan: "#8ABEB7" - white: "#FFFFFF" - brightBlack: "#1D1F21" - brightRed: "#CC6666" - brightGreen: "#B5BD68" - brightYellow: "#F0C674" - brightBlue: "#81A2BE" - brightMagenta: "#B294BB" - brightCyan: "#8ABEB7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 70.9 - black: 0 - red: 35.5 - green: 61.5 - yellow: 73.7 - blue: 47.9 - magenta: 47.9 - cyan: 59.9 - white: 105.9 - brightBlack: 0 - brightRed: 35.5 - brightGreen: 61.5 - brightYellow: 73.7 - brightBlue: 47.9 - brightMagenta: 47.9 - brightCyan: 59.9 - brightWhite: 105.9 diff --git a/themes/go-playground.yaml b/themes/go-playground.yaml deleted file mode 100644 index c028b78c..00000000 --- a/themes/go-playground.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Go - Playground" -source: - marketplace_id: "aaqaIshtyaq.themes-go-acme" - version: "0.0.5" - installs: 2247 - rating: 0 - ratings: 0 - author: "Aaqa Ishtyaq" - repo: "https://github.com/aaqaishtyaq/themes-go-acme" - url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.themes-go-acme" -colors: - bg: "#FFFFDD" - fg: "#000000" - black: "#000000" - red: "#000000" - green: "#000000" - yellow: "#000000" - blue: "#000000" - magenta: "#000000" - cyan: "#000000" - white: "#000000" - brightBlack: "#D4D4C6" - brightRed: "#000000" - brightGreen: "#000000" - brightYellow: "#000000" - brightBlue: "#000000" - brightMagenta: "#000000" - brightCyan: "#000000" - brightWhite: "#000000" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 104.7 - black: 104.7 - red: 104.7 - green: 104.7 - yellow: 104.7 - blue: 104.7 - magenta: 104.7 - cyan: 104.7 - white: 104.7 - brightBlack: 22 - brightRed: 104.7 - brightGreen: 104.7 - brightYellow: 104.7 - brightBlue: 104.7 - brightMagenta: 104.7 - brightCyan: 104.7 - brightWhite: 104.7 diff --git a/themes/go-source.yaml b/themes/go-source.yaml deleted file mode 100644 index f7e3568e..00000000 --- a/themes/go-source.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Go - Source" -source: - marketplace_id: "aaqaIshtyaq.themes-go-acme" - version: "0.0.5" - installs: 2247 - rating: 0 - ratings: 0 - author: "Aaqa Ishtyaq" - repo: "https://github.com/aaqaishtyaq/themes-go-acme" - url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.themes-go-acme" -colors: - bg: "#EFEFEF" - fg: "#000000" - black: "#000000" - red: "#000000" - green: "#000000" - yellow: "#000000" - blue: "#000000" - magenta: "#000000" - cyan: "#000000" - white: "#000000" - brightBlack: "#D4D4C6" - brightRed: "#000000" - brightGreen: "#000000" - brightYellow: "#000000" - brightBlue: "#000000" - brightMagenta: "#000000" - brightCyan: "#000000" - brightWhite: "#000000" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 96.5 - black: 96.5 - red: 96.5 - green: 96.5 - yellow: 96.5 - blue: 96.5 - magenta: 96.5 - cyan: 96.5 - white: 96.5 - brightBlack: 13.8 - brightRed: 96.5 - brightGreen: 96.5 - brightYellow: 96.5 - brightBlue: 96.5 - brightMagenta: 96.5 - brightCyan: 96.5 - brightWhite: 96.5 diff --git a/themes/goa-beach-paradise.yaml b/themes/goa-beach-paradise.yaml index 8a028300..5af560f6 100644 --- a/themes/goa-beach-paradise.yaml +++ b/themes/goa-beach-paradise.yaml @@ -8,6 +8,7 @@ source: author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" + formats: null colors: bg: "#16181A" fg: "#E8F5F0" diff --git a/themes/god-theme.yaml b/themes/god-theme.yaml index 4692ef7d..1a33a3bd 100644 --- a/themes/god-theme.yaml +++ b/themes/god-theme.yaml @@ -1,4 +1,4 @@ -name: "GOD Theme" +name: "god-theme" source: marketplace_id: "sarang56625.god-theme" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "sarang parre" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sarang56625.god-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/godot-4.yaml b/themes/godot-4.yaml deleted file mode 100644 index 2c51ce57..00000000 --- a/themes/godot-4.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Godot 4" -source: - marketplace_id: "mariodebono.godot-4-vscode-theme" - version: "1.0.2" - installs: 907 - rating: 5 - ratings: 1 - author: "Mario Debono" - repo: "https://github.com/mariodebono/godot-4-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=mariodebono.godot-4-vscode-theme" -colors: - bg: "#1D2229" - fg: "#CDCFD2" - black: "#373D49" - red: "#EE7987" - green: "#66E5FF" - yellow: "#F9ECA8" - blue: "#B7FDE2" - magenta: "#EE7987" - cyan: "#82FBC6" - white: "#E0E0E0" - brightBlack: "#76787D" - brightRed: "#EE7987" - brightGreen: "#82FBC6" - brightYellow: "#F9ECA8" - brightBlue: "#B1C8FA" - brightMagenta: "#EE7987" - brightCyan: "#66E5FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 257 - pair: null - contrast: - fg: 75 - black: 0 - red: 47.3 - green: 78.6 - yellow: 92.4 - blue: 94.7 - magenta: 47.3 - cyan: 88.5 - white: 85.5 - brightBlack: 28.6 - brightRed: 47.3 - brightGreen: 88.5 - brightYellow: 92.4 - brightBlue: 70.8 - brightMagenta: 47.3 - brightCyan: 78.6 - brightWhite: 105.5 diff --git a/themes/gogh.yaml b/themes/gogh.yaml deleted file mode 100644 index fd134903..00000000 --- a/themes/gogh.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gogh" -source: - marketplace_id: "Avetis.gogh-theme" - version: "0.0.3" - installs: 1963 - rating: 5 - ratings: 1 - author: "Avetis" - repo: "https://github.com/AvetisDN/gogh-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Avetis.gogh-theme" -colors: - bg: "#272B3C" - fg: "#EFEDEE" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 274 - pair: null - contrast: - fg: 92.2 - black: 0 - red: 23.5 - green: 49.8 - yellow: 82.4 - blue: 24.2 - magenta: 26.6 - cyan: 44.4 - white: 86.8 - brightBlack: 18.8 - brightRed: 35.4 - brightGreen: 60.3 - brightYellow: 92.4 - brightBlue: 36.8 - brightMagenta: 42.2 - brightCyan: 52.2 - brightWhite: 86.8 diff --git a/themes/gojo-infinity-dark.yaml b/themes/gojo-infinity-dark.yaml deleted file mode 100644 index ccb9c769..00000000 --- a/themes/gojo-infinity-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gojo Infinity Dark" -source: - marketplace_id: "Shams.anime-theme-collection" - version: "2.0.0" - installs: 407 - rating: 5 - ratings: 5 - author: "Shams" - repo: "https://github.com/shams909/AnimeThemeCollection" - url: "https://marketplace.visualstudio.com/items?itemName=Shams.anime-theme-collection" -colors: - bg: "#15161D" - fg: "#CBD5E1" - black: "#181922" - red: "#F87171" - green: "#059669" - yellow: "#F59E0B" - blue: "#60A5FA" - magenta: "#9333EA" - cyan: "#0891B2" - white: "#CBD5E1" - brightBlack: "#4B5563" - brightRed: "#F87171" - brightGreen: "#059669" - brightYellow: "#FBBF24" - brightBlue: "#60A5FA" - brightMagenta: "#C084FC" - brightCyan: "#06B6D4" - brightWhite: "#E2E8F0" -meta: - mode: "dark" - accent: "magenta" - hue: 279 - pair: null - contrast: - fg: 79.4 - black: 0 - red: 48.1 - green: 36.1 - yellow: 59.5 - blue: 51.4 - magenta: 25.2 - cyan: 36.9 - white: 79.4 - brightBlack: 14.8 - brightRed: 48.1 - brightGreen: 36.1 - brightYellow: 72.8 - brightBlue: 51.4 - brightMagenta: 49.7 - brightCyan: 53.9 - brightWhite: 91.5 diff --git a/themes/goku-code-dragon-ball-z-power-eye-safe.yaml b/themes/goku-code-dragon-ball-z-power-eye-safe.yaml deleted file mode 100644 index 95fc3bf6..00000000 --- a/themes/goku-code-dragon-ball-z-power-eye-safe.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Goku Code - Dragon Ball Z Power (Eye-Safe)" -source: - marketplace_id: "SecureDev01.theme-icon-pack" - version: "1.0.4" - installs: 906 - rating: 0 - ratings: 0 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/theme-icon-pack" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.theme-icon-pack" -colors: - bg: "#0F0E1A" - fg: "#E8D5B7" - black: "#0F0E1A" - red: "#F44336" - green: "#4CAF50" - yellow: "#FFEB3B" - blue: "#4FC3F7" - magenta: "#9C27B0" - cyan: "#00BCD4" - white: "#E8D5B7" - brightBlack: "#6B5B73" - brightRed: "#FF5722" - brightGreen: "#8BC34A" - brightYellow: "#FFC107" - brightBlue: "#03A9F4" - brightMagenta: "#E91E63" - brightCyan: "#26C6DA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 287 - pair: null - contrast: - fg: 82.1 - black: 0 - red: 38.3 - green: 48.2 - yellow: 93 - blue: 63.5 - magenta: 21.3 - cyan: 57.1 - white: 82.1 - brightBlack: 20.4 - brightRed: 43.8 - brightGreen: 60.9 - brightYellow: 74.7 - brightBlue: 51 - brightMagenta: 33.2 - brightCyan: 62.1 - brightWhite: 107.5 diff --git a/themes/gold.yaml b/themes/gold.yaml index cb38605f..b3db7c83 100644 --- a/themes/gold.yaml +++ b/themes/gold.yaml @@ -8,6 +8,7 @@ source: author: "natecrow" repo: "https://github.com/natecrow/consonance-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" + formats: null colors: bg: "#111111" fg: "#B1CCCF" diff --git a/themes/golden-blue-color-theme.yaml b/themes/golden-blue-color-theme.yaml index 692b33cc..8202949c 100644 --- a/themes/golden-blue-color-theme.yaml +++ b/themes/golden-blue-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Bruno DaSilva" repo: "https://github.com/Brunno-DaSilva/golden-blue-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=BrunoDaSilvaThemes.golden-blue" + formats: null colors: bg: "#002451" fg: "#FFFFFF" diff --git a/themes/golden-dracula.yaml b/themes/golden-dracula.yaml index de9cd8cd..a47a8b79 100644 --- a/themes/golden-dracula.yaml +++ b/themes/golden-dracula.yaml @@ -8,6 +8,7 @@ source: author: "mnxn" repo: "https://github.com/mnxn/Golden-Dracula" url: "https://marketplace.visualstudio.com/items?itemName=mnxn.theme-golden-dracula" + formats: null colors: bg: "#222628" fg: "#F8F8F2" diff --git a/themes/golden-dullahan.yaml b/themes/golden-dullahan.yaml index 6c07a0f4..6a2638ce 100644 --- a/themes/golden-dullahan.yaml +++ b/themes/golden-dullahan.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "PunGrumpy.dullahan-vscode-theme" version: "1.2.4" installs: 201 + rating: 0 + ratings: 0 author: "PunGrumpy" repo: "https://github.com/PunGrumpy/dullahan-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=PunGrumpy.dullahan-vscode-theme" + formats: null colors: bg: "#1D1D1D" fg: "#D1D1D1" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "purple" hue: null + pair: null contrast: fg: 77 black: 0 diff --git a/themes/golden-era.yaml b/themes/golden-era.yaml deleted file mode 100644 index f42ac7f1..00000000 --- a/themes/golden-era.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Golden Era" -source: - marketplace_id: "CodrJatin.golden-era" - version: "0.6.0" - installs: 1698 - rating: 5 - ratings: 1 - author: "Codr Jatin" - repo: "https://github.com/CodrJatin/vscode-Golden-Era" - url: "https://marketplace.visualstudio.com/items?itemName=CodrJatin.golden-era" -colors: - bg: "#052842" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "pink" - hue: 246 - pair: null - contrast: - fg: 104.6 - black: 0 - red: 24.4 - green: 50.7 - yellow: 83.3 - blue: 25.1 - magenta: 27.4 - cyan: 45.2 - white: 87.7 - brightBlack: 19.7 - brightRed: 36.3 - brightGreen: 61.2 - brightYellow: 93.3 - brightBlue: 37.7 - brightMagenta: 43.1 - brightCyan: 53.1 - brightWhite: 101.3 diff --git a/themes/golden-eye.yaml b/themes/golden-eye.yaml index eb75e274..49cc4e72 100644 --- a/themes/golden-eye.yaml +++ b/themes/golden-eye.yaml @@ -8,6 +8,7 @@ source: author: "ProphezAI" repo: "https://github.com/ProphezAI/golden-eye" url: "https://marketplace.visualstudio.com/items?itemName=ProphezAI.golden-eye" + formats: null colors: bg: "#144000" fg: "#FFD700" diff --git a/themes/golden-rain.yaml b/themes/golden-rain.yaml index ec9d05de..88460020 100644 --- a/themes/golden-rain.yaml +++ b/themes/golden-rain.yaml @@ -8,6 +8,7 @@ source: author: "hauseyo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=hauseyo.hauseyo-style" + formats: null colors: bg: "#1A1D34" fg: "#EEFFFF" diff --git a/themes/golden-sky.yaml b/themes/golden-sky.yaml index ed5a7391..caa58448 100644 --- a/themes/golden-sky.yaml +++ b/themes/golden-sky.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/golden-sunset.yaml b/themes/golden-sunset.yaml index 8e31e09f..cedfc99a 100644 --- a/themes/golden-sunset.yaml +++ b/themes/golden-sunset.yaml @@ -8,6 +8,7 @@ source: author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" + formats: null colors: bg: "#2D2A2E" fg: "#D4BE98" diff --git a/themes/golden-wave.yaml b/themes/golden-wave.yaml deleted file mode 100644 index 25b2246e..00000000 --- a/themes/golden-wave.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Golden Wave" -source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - rating: 0 - ratings: 0 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" -colors: - bg: "#020617" - fg: "#F1F5F9" - black: "#1E293B" - red: "#DC2626" - green: "#16A34A" - yellow: "#D4AF37" - blue: "#1D4ED8" - magenta: "#7C3AED" - cyan: "#0891B2" - white: "#F1F5F9" - brightBlack: "#64748B" - brightRed: "#EF4444" - brightGreen: "#22C55E" - brightYellow: "#FFD700" - brightBlue: "#3B82F6" - brightMagenta: "#8B5CF6" - brightCyan: "#06B6D4" - brightWhite: "#F8FAFC" -meta: - mode: "dark" - accent: "magenta" - hue: 265 - pair: null - contrast: - fg: 100.8 - black: 0 - red: 30 - green: 41.9 - yellow: 61.1 - blue: 19.6 - magenta: 24.2 - cyan: 37.7 - white: 100.8 - brightBlack: 28.5 - brightRed: 37.7 - brightGreen: 57.7 - brightYellow: 84.1 - brightBlue: 37.7 - brightMagenta: 32.8 - brightCyan: 54.8 - brightWhite: 104.3 diff --git a/themes/goldentheme.yaml b/themes/goldentheme.yaml deleted file mode 100644 index 09c993ff..00000000 --- a/themes/goldentheme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GoldenTheme" -source: - marketplace_id: "EnzoCoding.zozovscode-custom" - version: "0.0.6" - installs: 430 - rating: 5 - ratings: 1 - author: "EnzoCoding" - repo: "https://github.com/Enzo91080/GoldenZo" - url: "https://marketplace.visualstudio.com/items?itemName=EnzoCoding.zozovscode-custom" -colors: - bg: "#12131B" - fg: "#698CD6" - black: "#303030" - red: "#C24242" - green: "#9ECE6A" - yellow: "#B0B060" - blue: "#6060A0" - magenta: "#A060A0" - cyan: "#60A0A0" - white: "#D0D0D0" - brightBlack: "#808080" - brightRed: "#C08080" - brightGreen: "#80C080" - brightYellow: "#E0E080" - brightBlue: "#8080C0" - brightMagenta: "#C080C0" - brightCyan: "#80C0C0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 279 - pair: null - contrast: - fg: 40.5 - black: 0 - red: 27 - green: 67.8 - yellow: 56.6 - blue: 22.6 - magenta: 30 - cyan: 44.7 - white: 77.4 - brightBlack: 34.1 - brightRed: 42.4 - brightGreen: 59.4 - brightYellow: 84 - brightBlue: 37 - brightMagenta: 45.1 - brightCyan: 61.6 - brightWhite: 107.2 diff --git a/themes/goldfish-contrast.yaml b/themes/goldfish-contrast.yaml deleted file mode 100644 index 41425fa8..00000000 --- a/themes/goldfish-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "goldfish-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0C0D0E" - fg: "#F8F8F2" - black: "#181A1C" - red: "#BA0E2E" - green: "#F38630" - yellow: "#FA6900" - blue: "#69D2E7" - magenta: "#A7DBD8" - cyan: "#F38630" - white: "#FFFFFF" - brightBlack: "#3B4045" - brightRed: "#F03E5F" - brightGreen: "#F9BE90" - brightYellow: "#FFA361" - brightBlue: "#C1ECF5" - brightMagenta: "#EFF9F8" - brightCyan: "#F9BE90" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.7 - black: 0 - red: 21.2 - green: 52.4 - yellow: 46.3 - blue: 70.6 - magenta: 78.5 - cyan: 52.4 - white: 107.6 - brightBlack: 8 - brightRed: 37.5 - brightGreen: 74.3 - brightYellow: 64.4 - brightBlue: 90.4 - brightMagenta: 102.2 - brightCyan: 74.3 - brightWhite: 107.6 diff --git a/themes/goldfish-light.yaml b/themes/goldfish-light.yaml deleted file mode 100644 index afe7b32b..00000000 --- a/themes/goldfish-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "goldfish-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#2E3336" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#F38630" - yellow: "#FA6900" - blue: "#69D2E7" - magenta: "#91BFBC" - cyan: "#F38630" - white: "#3A4044" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#F9BE90" - brightYellow: "#FFA361" - brightBlue: "#C1ECF5" - brightMagenta: "#D1E5E3" - brightCyan: "#F9BE90" - brightWhite: "#5D676D" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.9 - black: 0 - red: 80.3 - green: 49.3 - yellow: 55.2 - blue: 31.8 - magenta: 39.3 - cyan: 49.3 - white: 94.4 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 28.4 - brightYellow: 37.7 - brightBlue: 13.2 - brightMagenta: 15.4 - brightCyan: 28.4 - brightWhite: 79 diff --git a/themes/goldfish.yaml b/themes/goldfish.yaml deleted file mode 100644 index 332427f1..00000000 --- a/themes/goldfish.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "goldfish" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2E3336" - fg: "#F8F8F2" - black: "#3A4044" - red: "#BA0E2E" - green: "#F38630" - yellow: "#FA6900" - blue: "#69D2E7" - magenta: "#A7DBD8" - cyan: "#F38630" - white: "#FFFFFF" - brightBlack: "#5D676D" - brightRed: "#F03E5F" - brightGreen: "#F9BE90" - brightYellow: "#FFA361" - brightBlue: "#C1ECF5" - brightMagenta: "#EFF9F8" - brightCyan: "#F9BE90" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 97.3 - black: 0 - red: 15.8 - green: 47 - yellow: 40.9 - blue: 65.2 - magenta: 73.1 - cyan: 47 - white: 102.2 - brightBlack: 17.1 - brightRed: 32.1 - brightGreen: 68.9 - brightYellow: 59.1 - brightBlue: 85 - brightMagenta: 96.8 - brightCyan: 68.9 - brightWhite: 102.2 diff --git a/themes/goldream.yaml b/themes/goldream.yaml index 2d595dd0..4574b30d 100644 --- a/themes/goldream.yaml +++ b/themes/goldream.yaml @@ -8,6 +8,7 @@ source: author: "J4CK-98" repo: null url: "https://marketplace.visualstudio.com/items?itemName=J4CK-98.goldream-theme" + formats: null colors: bg: "#1B1E2B" fg: "#FFCA03" diff --git a/themes/good-purple.yaml b/themes/good-purple.yaml index 22d0f7e0..a33764fc 100644 --- a/themes/good-purple.yaml +++ b/themes/good-purple.yaml @@ -8,6 +8,7 @@ source: author: "YanBystrikov" repo: "https://github.com/YanBystrik/good-purple" url: "https://marketplace.visualstudio.com/items?itemName=YanBystrikov.good-purple" + formats: null colors: bg: "#25273A" fg: "#9ACFDC" diff --git a/themes/goodmonokai-color-theme.yaml b/themes/goodmonokai-color-theme.yaml deleted file mode 100644 index 935bd1de..00000000 --- a/themes/goodmonokai-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GoodMonokai-color-theme" -source: - marketplace_id: "Joyphy.goodmonokai" - version: "0.0.1" - installs: 236 - rating: 5 - ratings: 1 - author: "Joyphy" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Joyphy.goodmonokai" -colors: - bg: "#272822" - fg: "#BABAB5" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#BA1C55" - brightGreen: "#7CA922" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#8260BF" - brightCyan: "#4CA2B3" - brightWhite: "#BABAB5" -meta: - mode: "dark" - accent: "red" - hue: 115 - pair: null - contrast: - fg: 61.6 - black: 0 - red: 22.3 - green: 50.7 - yellow: 55.3 - blue: 32.3 - magenta: 29.9 - cyan: 48.1 - white: 86.2 - brightBlack: 19.7 - brightRed: 19.3 - brightGreen: 45.1 - brightYellow: 81.6 - brightBlue: 47.5 - brightMagenta: 25.2 - brightCyan: 42.7 - brightWhite: 61.6 diff --git a/themes/goodnight-classic.yaml b/themes/goodnight-classic.yaml index 01212ccd..fab0e6e9 100644 --- a/themes/goodnight-classic.yaml +++ b/themes/goodnight-classic.yaml @@ -8,6 +8,7 @@ source: author: "Matheus Piovezan" repo: "https://github.com/MatheusPiovezan/vscode-theme-goodnight" url: "https://marketplace.visualstudio.com/items?itemName=MatheusPiovezan.Goodnight" + formats: null colors: bg: "#3D4047" fg: "#7C7C7C" diff --git a/themes/goodnight.yaml b/themes/goodnight.yaml index 3a9c4019..e702c055 100644 --- a/themes/goodnight.yaml +++ b/themes/goodnight.yaml @@ -8,6 +8,7 @@ source: author: "Matheus Piovezan" repo: "https://github.com/MatheusPiovezan/vscode-theme-goodnight" url: "https://marketplace.visualstudio.com/items?itemName=MatheusPiovezan.Goodnight" + formats: null colors: bg: "#282C34" fg: "#7C7C7C" diff --git a/themes/gooey-theme.yaml b/themes/gooey-theme.yaml index 09252165..936d63ce 100644 --- a/themes/gooey-theme.yaml +++ b/themes/gooey-theme.yaml @@ -2,12 +2,13 @@ name: "Gooey Theme" source: marketplace_id: "TheMartes.GooeyTheme" version: "0.0.2" - installs: 5201 + installs: 5205 rating: 0 ratings: 0 author: "TheMartes" repo: "https://github.com/TheMartes/Gooey-VSCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=TheMartes.GooeyTheme" + formats: null colors: bg: "#101218" fg: "#D1D4E0" diff --git a/themes/googledark.yaml b/themes/googledark.yaml deleted file mode 100644 index 86190ffb..00000000 --- a/themes/googledark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GoogleDark" -source: - marketplace_id: "Avetis.codeme-theme" - version: "0.1.1" - installs: 8080 - rating: 0 - ratings: 0 - author: "Avetis" - repo: "https://github.com/AvetisDN/codeme-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" -colors: - bg: "#1B1C1F" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.9 - black: 0 - red: 26.1 - green: 52.4 - yellow: 85 - blue: 26.9 - magenta: 29.2 - cyan: 47 - white: 89.4 - brightBlack: 21.5 - brightRed: 38 - brightGreen: 63 - brightYellow: 95.1 - brightBlue: 39.4 - brightMagenta: 44.8 - brightCyan: 54.8 - brightWhite: 89.4 diff --git a/themes/goolou.yaml b/themes/goolou.yaml index 9ee4db86..8a467d1b 100644 --- a/themes/goolou.yaml +++ b/themes/goolou.yaml @@ -8,6 +8,7 @@ source: author: "sndp124" repo: "https://github.com/Sandip124/goolou" url: "https://marketplace.visualstudio.com/items?itemName=sndp124.goolou" + formats: null colors: bg: "#2C333D" fg: "#D4D4D4" diff --git a/themes/goose.yaml b/themes/goose.yaml index 75c0bb78..ef482cd9 100644 --- a/themes/goose.yaml +++ b/themes/goose.yaml @@ -8,6 +8,7 @@ source: author: "hgooseVSC" repo: "https://github.com/hgoose/GoosePlusPlus" url: "https://marketplace.visualstudio.com/items?itemName=hgooseVSC.GoosePlusPlus" + formats: null colors: bg: "#292D3E" fg: "#FFFFFF" diff --git a/themes/goosebumps.yaml b/themes/goosebumps.yaml index cd43b5f4..32210d2b 100644 --- a/themes/goosebumps.yaml +++ b/themes/goosebumps.yaml @@ -8,6 +8,7 @@ source: author: "roxcelic" repo: "https://github.com/roxcelic/themes.git#goosebumps" url: "https://marketplace.visualstudio.com/items?itemName=roxcelic.goosebumps" + formats: null colors: bg: "#001400" fg: "#FFFFFF" diff --git a/themes/gopher.yaml b/themes/gopher.yaml index 93a7ff1c..e244b4f0 100644 --- a/themes/gopher.yaml +++ b/themes/gopher.yaml @@ -8,6 +8,7 @@ source: author: "mnxn" repo: "https://github.com/mnxn/vscode-gopher-theme" url: "https://marketplace.visualstudio.com/items?itemName=mnxn.gopher-theme" + formats: null colors: bg: "#FFFFDD" fg: "#1B1A1A" diff --git a/themes/gorfius-orange.yaml b/themes/gorfius-orange.yaml index d2829157..a7617f82 100644 --- a/themes/gorfius-orange.yaml +++ b/themes/gorfius-orange.yaml @@ -1,13 +1,14 @@ name: "Gorfius Orange" source: - marketplace_id: "GorIvanov.gorfius-smoke" - version: "0.1.0" - installs: 85 + marketplace_id: "GorIvanov.gorfius-orange-theme" + version: "0.0.4" + installs: 537 rating: 0 ratings: 0 author: "Gor Ivanov" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=GorIvanov.gorfius-smoke" + url: "https://marketplace.visualstudio.com/items?itemName=GorIvanov.gorfius-orange-theme" + formats: null colors: bg: "#1B1B1B" fg: "#9D9D9D" diff --git a/themes/gorfius-peace-forest.yaml b/themes/gorfius-peace-forest.yaml index 0f8076ca..c584a94e 100644 --- a/themes/gorfius-peace-forest.yaml +++ b/themes/gorfius-peace-forest.yaml @@ -8,6 +8,7 @@ source: author: "Gor Ivanov" repo: null url: "https://marketplace.visualstudio.com/items?itemName=GorIvanov.gorfius-smoke" + formats: null colors: bg: "#5C5C5C" fg: "#FFFFFF" diff --git a/themes/gorg.yaml b/themes/gorg.yaml index 9a1f0361..a554c65d 100644 --- a/themes/gorg.yaml +++ b/themes/gorg.yaml @@ -8,6 +8,7 @@ source: author: "adpawr" repo: "https://github.com/adpawr/gorg-vscode" url: "https://marketplace.visualstudio.com/items?itemName=adpawr.gorg" + formats: null colors: bg: "#12161A" fg: "#C9CDD1" diff --git a/themes/gosthy.yaml b/themes/gosthy.yaml index ad14b543..974b8e0e 100644 --- a/themes/gosthy.yaml +++ b/themes/gosthy.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "miguelin04.gosthy-theme" version: "1.3.2" installs: 12 + rating: 0 + ratings: 0 author: "Miguel" repo: "https://github.com/miguelin04/gosthy-theme" url: "https://marketplace.visualstudio.com/items?itemName=miguelin04.gosthy-theme" + formats: null colors: bg: "#0F1419" fg: "#C9D1D9" diff --git a/themes/got-beyond-the-wall.yaml b/themes/got-beyond-the-wall.yaml deleted file mode 100644 index 6dcf3f9d..00000000 --- a/themes/got-beyond-the-wall.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GOT: Beyond the Wall" -source: - marketplace_id: "Abhiroux.game-of-thrones-theme" - version: "3.0.0" - installs: 21 - rating: 0 - ratings: 0 - author: "Abhiroux" - repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" -colors: - bg: "#000408" - fg: "#E0F0FF" - black: "#000204" - red: "#FF4444" - green: "#00FF7F" - yellow: "#FFD700" - blue: "#007FFF" - magenta: "#AA44FF" - cyan: "#00CED1" - white: "#5A9AC0" - brightBlack: "#1A3A5A" - brightRed: "#FF8888" - brightGreen: "#7FFFAA" - brightYellow: "#FFFF00" - brightBlue: "#00BFFF" - brightMagenta: "#CC88FF" - brightCyan: "#00FFFF" - brightWhite: "#E0F0FF" -meta: - mode: "dark" - accent: "magenta" - hue: 234 - pair: null - contrast: - fg: 96.7 - black: 0 - red: 41.6 - green: 87.6 - yellow: 84.2 - blue: 36.7 - magenta: 33.6 - cyan: 65.6 - white: 44.2 - brightBlack: 0 - brightRed: 57.1 - brightGreen: 91.8 - brightYellow: 102.7 - brightBlue: 61.4 - brightMagenta: 53.8 - brightCyan: 92.2 - brightWhite: 96.7 diff --git a/themes/got-house-baratheon.yaml b/themes/got-house-baratheon.yaml deleted file mode 100644 index 344318f7..00000000 --- a/themes/got-house-baratheon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GOT: House Baratheon" -source: - marketplace_id: "Abhiroux.game-of-thrones-theme" - version: "3.0.0" - installs: 21 - rating: 0 - ratings: 0 - author: "Abhiroux" - repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" -colors: - bg: "#0E0E10" - fg: "#D0C8B8" - black: "#08080A" - red: "#8B3030" - green: "#5A8A3A" - yellow: "#B8960C" - blue: "#4A5A7A" - magenta: "#6A4A6A" - cyan: "#4A6A7A" - white: "#8A8070" - brightBlack: "#3A3A42" - brightRed: "#CC5050" - brightGreen: "#7ABA5A" - brightYellow: "#DAA520" - brightBlue: "#7A8AAA" - brightMagenta: "#9A7A9A" - brightCyan: "#7A9AAA" - brightWhite: "#D0C8B8" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 73.4 - black: 0 - red: 14.3 - green: 33.4 - yellow: 47.3 - blue: 17.7 - magenta: 15.7 - cyan: 22.6 - white: 35 - brightBlack: 0 - brightRed: 32 - brightGreen: 55.9 - brightYellow: 58 - brightBlue: 39.1 - brightMagenta: 36.5 - brightCyan: 45 - brightWhite: 73.4 diff --git a/themes/got-house-greyjoy.yaml b/themes/got-house-greyjoy.yaml deleted file mode 100644 index 6374f04d..00000000 --- a/themes/got-house-greyjoy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GOT: House Greyjoy" -source: - marketplace_id: "Abhiroux.game-of-thrones-theme" - version: "3.0.0" - installs: 21 - rating: 0 - ratings: 0 - author: "Abhiroux" - repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" -colors: - bg: "#080C10" - fg: "#B0C4D8" - black: "#040810" - red: "#8A3030" - green: "#3A8A5A" - yellow: "#8A8A20" - blue: "#2A5A8A" - magenta: "#5A4A7A" - cyan: "#2A7A8A" - white: "#6A8A9A" - brightBlack: "#2A4050" - brightRed: "#CC5555" - brightGreen: "#5ABA7A" - brightYellow: "#BABA40" - brightBlue: "#5A8ABA" - brightMagenta: "#8A7AAA" - brightCyan: "#5AAABA" - brightWhite: "#B0C4D8" -meta: - mode: "dark" - accent: "orange" - hue: 248 - pair: null - contrast: - fg: 69.3 - black: 0 - red: 14.2 - green: 32.5 - yellow: 37.4 - blue: 17.1 - magenta: 14.9 - cyan: 27.5 - white: 37.1 - brightBlack: 7.5 - brightRed: 33.2 - brightGreen: 54.7 - brightYellow: 62 - brightBlue: 37.6 - brightMagenta: 35.4 - brightCyan: 50.1 - brightWhite: 69.3 diff --git a/themes/got-house-lannister.yaml b/themes/got-house-lannister.yaml deleted file mode 100644 index 8ed9ce47..00000000 --- a/themes/got-house-lannister.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GOT: House Lannister" -source: - marketplace_id: "Abhiroux.game-of-thrones-theme" - version: "3.0.0" - installs: 21 - rating: 0 - ratings: 0 - author: "Abhiroux" - repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" -colors: - bg: "#14100A" - fg: "#F0E0C0" - black: "#0D0A05" - red: "#CC0000" - green: "#557A00" - yellow: "#B8960C" - blue: "#5577AA" - magenta: "#884488" - cyan: "#557799" - white: "#C9A840" - brightBlack: "#5A4A20" - brightRed: "#FF4444" - brightGreen: "#88BB00" - brightYellow: "#FFD700" - brightBlue: "#88AADD" - brightMagenta: "#BB77BB" - brightCyan: "#88AACC" - brightWhite: "#F0E0C0" -meta: - mode: "dark" - accent: "orange" - hue: 78 - pair: null - contrast: - fg: 88.3 - black: 0 - red: 24.7 - green: 26.7 - yellow: 47.1 - blue: 29.6 - magenta: 19.5 - cyan: 28.7 - white: 56.5 - brightBlack: 12.2 - brightRed: 41.1 - brightGreen: 56.7 - brightYellow: 83.8 - brightBlue: 54.8 - brightMagenta: 41.7 - brightCyan: 53.9 - brightWhite: 88.3 diff --git a/themes/got-house-martell.yaml b/themes/got-house-martell.yaml deleted file mode 100644 index c06db62d..00000000 --- a/themes/got-house-martell.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GOT: House Martell" -source: - marketplace_id: "Abhiroux.game-of-thrones-theme" - version: "3.0.0" - installs: 21 - rating: 0 - ratings: 0 - author: "Abhiroux" - repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" -colors: - bg: "#14100C" - fg: "#E0D0B0" - black: "#0D0A08" - red: "#CC3333" - green: "#7AAA3A" - yellow: "#D2691E" - blue: "#5A7A9A" - magenta: "#9A5A5A" - cyan: "#5A8A7A" - white: "#B09060" - brightBlack: "#4A3828" - brightRed: "#FF5555" - brightGreen: "#AADA5A" - brightYellow: "#FF8C00" - brightBlue: "#8AAABB" - brightMagenta: "#CC8888" - brightCyan: "#8ABAAA" - brightWhite: "#E0D0B0" -meta: - mode: "dark" - accent: "orange" - hue: 67 - pair: null - contrast: - fg: 78.5 - black: 0 - red: 27.2 - green: 48.4 - yellow: 37.8 - blue: 30.1 - magenta: 25.3 - cyan: 34.6 - white: 44.7 - brightBlack: 0 - brightRed: 43.9 - brightGreen: 74.5 - brightYellow: 56.2 - brightBlue: 53.2 - brightMagenta: 47.3 - brightCyan: 59.1 - brightWhite: 78.5 diff --git a/themes/got-house-stark.yaml b/themes/got-house-stark.yaml deleted file mode 100644 index 00859d8e..00000000 --- a/themes/got-house-stark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GOT: House Stark" -source: - marketplace_id: "Abhiroux.game-of-thrones-theme" - version: "3.0.0" - installs: 21 - rating: 0 - ratings: 0 - author: "Abhiroux" - repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" -colors: - bg: "#0E1319" - fg: "#CBD5E1" - black: "#080C12" - red: "#FF7B72" - green: "#3FB950" - yellow: "#D29922" - blue: "#388BFD" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#8096AB" - brightBlack: "#3A4F62" - brightRed: "#FFA198" - brightGreen: "#56D364" - brightYellow: "#E3B341" - brightBlue: "#79B8FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#CBD5E1" -meta: - mode: "dark" - accent: "green" - hue: 253 - pair: null - contrast: - fg: 79.8 - black: 0 - red: 52.4 - green: 52 - yellow: 52.1 - blue: 40.7 - magenta: 52.1 - cyan: 61.3 - white: 43.7 - brightBlack: 12.4 - brightRed: 64.7 - brightGreen: 65.3 - brightYellow: 64.6 - brightBlue: 61.2 - brightMagenta: 64.5 - brightCyan: 69.8 - brightWhite: 79.8 diff --git a/themes/got-house-targaryen.yaml b/themes/got-house-targaryen.yaml deleted file mode 100644 index 33d16233..00000000 --- a/themes/got-house-targaryen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GOT: House Targaryen" -source: - marketplace_id: "Abhiroux.game-of-thrones-theme" - version: "3.0.0" - installs: 21 - rating: 0 - ratings: 0 - author: "Abhiroux" - repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" -colors: - bg: "#110808" - fg: "#F0C8B8" - black: "#0A0404" - red: "#8B0000" - green: "#3D6B00" - yellow: "#B8640C" - blue: "#1A3A6B" - magenta: "#6B0050" - cyan: "#1A4A5A" - white: "#C07060" - brightBlack: "#5A2020" - brightRed: "#FF4500" - brightGreen: "#5FD700" - brightYellow: "#FF8C00" - brightBlue: "#4D7FCC" - brightMagenta: "#CC0099" - brightCyan: "#4D99B0" - brightWhite: "#F0C8B8" -meta: - mode: "dark" - accent: "pink" - hue: 19 - pair: null - contrast: - fg: 78.1 - black: 0 - red: 11.4 - green: 20.3 - yellow: 32.1 - blue: 0 - magenta: 0 - cyan: 10 - white: 37.5 - brightBlack: 0 - brightRed: 41.2 - brightGreen: 67.4 - brightYellow: 56.5 - brightBlue: 34.2 - brightMagenta: 28.2 - brightCyan: 42.2 - brightWhite: 78.1 diff --git a/themes/got-night-s-watch.yaml b/themes/got-night-s-watch.yaml deleted file mode 100644 index b1d0b965..00000000 --- a/themes/got-night-s-watch.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GOT: Night's Watch" -source: - marketplace_id: "Abhiroux.game-of-thrones-theme" - version: "3.0.0" - installs: 21 - rating: 0 - ratings: 0 - author: "Abhiroux" - repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" -colors: - bg: "#050505" - fg: "#A8A8A8" - black: "#020202" - red: "#800000" - green: "#2A5A2A" - yellow: "#5A5A00" - blue: "#1A2A4A" - magenta: "#4A1A4A" - cyan: "#1A3A4A" - white: "#606060" - brightBlack: "#303030" - brightRed: "#CC2222" - brightGreen: "#4A9A4A" - brightYellow: "#9A9A00" - brightBlue: "#3A5A8A" - brightMagenta: "#7A3A7A" - brightCyan: "#3A6A7A" - brightWhite: "#A8A8A8" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 55.1 - black: 0 - red: 9.5 - green: 14.3 - yellow: 17 - blue: 0 - magenta: 0 - cyan: 0 - white: 20.5 - brightBlack: 0 - brightRed: 26.1 - brightGreen: 39.4 - brightYellow: 45.2 - brightBlue: 17.9 - brightMagenta: 15.6 - brightCyan: 22.1 - brightWhite: 55.1 diff --git a/themes/got-the-iron-throne.yaml b/themes/got-the-iron-throne.yaml deleted file mode 100644 index 0ed63335..00000000 --- a/themes/got-the-iron-throne.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GOT: The Iron Throne" -source: - marketplace_id: "Abhiroux.game-of-thrones-theme" - version: "3.0.0" - installs: 21 - rating: 0 - ratings: 0 - author: "Abhiroux" - repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" -colors: - bg: "#141414" - fg: "#D4C5A9" - black: "#0D0D0D" - red: "#8B0000" - green: "#1E8449" - yellow: "#9A7D0A" - blue: "#1F618D" - magenta: "#6C3483" - cyan: "#1A5276" - white: "#A09070" - brightBlack: "#3D3D3D" - brightRed: "#C0392B" - brightGreen: "#2ECC71" - brightYellow: "#CFB53B" - brightBlue: "#A8D8EA" - brightMagenta: "#9B59B6" - brightCyan: "#5DADE2" - brightWhite: "#D4C5A9" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 71.7 - black: 0 - red: 10.8 - green: 28.6 - yellow: 34.2 - blue: 18.6 - magenta: 12.5 - cyan: 12.9 - white: 42.7 - brightBlack: 0 - brightRed: 25.1 - brightGreen: 60.9 - brightYellow: 62.2 - brightBlue: 77.7 - brightMagenta: 28.8 - brightCyan: 53.1 - brightWhite: 71.7 diff --git a/themes/gotham.yaml b/themes/gotham.yaml deleted file mode 100644 index f05d7c77..00000000 --- a/themes/gotham.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gotham" -source: - marketplace_id: "MichalJach.gotham" - version: "0.1.2" - installs: 2296 - rating: 3.5 - ratings: 2 - author: "Michal Jach" - repo: "https://github.com/michaljach/gotham-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MichalJach.gotham" -colors: - bg: "#000000" - fg: "#D7DAE1" - black: "#000000" - red: "#808080" - green: "#4D4D4D" - yellow: "#D7DAE1" - blue: "#111333" - magenta: "#999999" - cyan: "#666666" - white: "#CCCCCC" - brightBlack: "#1A1A1A" - brightRed: "#808080" - brightGreen: "#4D4D4D" - brightYellow: "#D7DAE1" - brightBlue: "#000CB8" - brightMagenta: "#1D00C0" - brightCyan: "#666666" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 84.1 - black: 0 - red: 34.8 - green: 13.1 - yellow: 84.1 - blue: 0 - magenta: 47.2 - cyan: 23 - white: 75.7 - brightBlack: 0 - brightRed: 34.8 - brightGreen: 13.1 - brightYellow: 84.1 - brightBlue: 7.8 - brightMagenta: 8.8 - brightCyan: 23 - brightWhite: 107.9 diff --git a/themes/gothic-absinthe.yaml b/themes/gothic-absinthe.yaml deleted file mode 100644 index 08db1e14..00000000 --- a/themes/gothic-absinthe.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Absinthe" -source: - marketplace_id: "Diyllan.midnight-coven-themes" - version: "1.0.1" - installs: 1129 - rating: 5 - ratings: 1 - author: "Diyllan" - repo: "https://github.com/diyllan/midnight-coven-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" -colors: - bg: "#101812" - fg: "#E0E8E0" - black: "#101812" - red: "#E05050" - green: "#60A060" - yellow: "#D0A050" - blue: "#5070A0" - magenta: "#A060A0" - cyan: "#50A0A0" - white: "#C0D8C0" - brightBlack: "#6A7A6A" - brightRed: "#E07070" - brightGreen: "#70C070" - brightYellow: "#E0B070" - brightBlue: "#7090C0" - brightMagenta: "#C080C0" - brightCyan: "#70C0C0" - brightWhite: "#E0E8E0" -meta: - mode: "dark" - accent: "orange" - hue: 152 - pair: null - contrast: - fg: 90.6 - black: 0 - red: 35.6 - green: 42.5 - yellow: 54.3 - blue: 26 - magenta: 29.8 - cyan: 43.6 - white: 78.1 - brightBlack: 29.1 - brightRed: 43 - brightGreen: 57.7 - brightYellow: 63.3 - brightBlue: 40.9 - brightMagenta: 44.8 - brightCyan: 60.3 - brightWhite: 90.6 diff --git a/themes/gothic-amber-fog.yaml b/themes/gothic-amber-fog.yaml deleted file mode 100644 index f54ec9cd..00000000 --- a/themes/gothic-amber-fog.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Amber Fog" -source: - marketplace_id: "Diyllan.midnight-coven-themes" - version: "1.0.1" - installs: 1129 - rating: 5 - ratings: 1 - author: "Diyllan" - repo: "https://github.com/diyllan/midnight-coven-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" -colors: - bg: "#19171A" - fg: "#E8E1D5" - black: "#19171A" - red: "#D5736A" - green: "#A5AD6A" - yellow: "#D5A84A" - blue: "#7A90AD" - magenta: "#AD90AA" - cyan: "#90ADA5" - white: "#E8E1D5" - brightBlack: "#777070" - brightRed: "#E08A82" - brightGreen: "#B5C080" - brightYellow: "#E5C875" - brightBlue: "#90A8C7" - brightMagenta: "#C7A8C5" - brightCyan: "#A8C7BD" - brightWhite: "#F8F0E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 87.9 - black: 0 - red: 41.4 - green: 53.9 - yellow: 57.8 - blue: 40.6 - magenta: 46 - cyan: 53.4 - white: 87.9 - brightBlack: 27 - brightRed: 50.6 - brightGreen: 64.1 - brightYellow: 73.7 - brightBlue: 52.9 - brightMagenta: 59.3 - brightCyan: 67.7 - brightWhite: 97.6 diff --git a/themes/gothic-blood-moon.yaml b/themes/gothic-blood-moon.yaml deleted file mode 100644 index 06514bdb..00000000 --- a/themes/gothic-blood-moon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Blood Moon" -source: - marketplace_id: "Diyllan.midnight-coven-themes" - version: "1.0.1" - installs: 1129 - rating: 5 - ratings: 1 - author: "Diyllan" - repo: "https://github.com/diyllan/midnight-coven-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" -colors: - bg: "#170C0C" - fg: "#E0D0D0" - black: "#170C0C" - red: "#FF4040" - green: "#C06060" - yellow: "#FF9060" - blue: "#905080" - magenta: "#FF6090" - cyan: "#C05080" - white: "#E0D0D0" - brightBlack: "#805050" - brightRed: "#FF6060" - brightGreen: "#E07070" - brightYellow: "#FFB080" - brightBlue: "#B070A0" - brightMagenta: "#FF80B0" - brightCyan: "#E070A0" - brightWhite: "#FFF0F0" -meta: - mode: "dark" - accent: "orange" - hue: 19 - pair: null - contrast: - fg: 79.8 - black: 0 - red: 40.7 - green: 33.3 - yellow: 58.2 - blue: 22.8 - magenta: 47.5 - cyan: 30.9 - white: 79.8 - brightBlack: 19 - brightRed: 46.2 - brightGreen: 43.5 - brightYellow: 69.5 - brightBlue: 36.8 - brightMagenta: 56 - brightCyan: 45.1 - brightWhite: 99.8 diff --git a/themes/gothic-cathedral.yaml b/themes/gothic-cathedral.yaml deleted file mode 100644 index 257e0ef3..00000000 --- a/themes/gothic-cathedral.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Cathedral" -source: - marketplace_id: "Diyllan.midnight-coven-themes" - version: "1.0.1" - installs: 1129 - rating: 5 - ratings: 1 - author: "Diyllan" - repo: "https://github.com/diyllan/midnight-coven-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" -colors: - bg: "#12100F" - fg: "#FFFFFF" - black: "#12100F" - red: "#9A5A67" - green: "#9A8AA5" - yellow: "#B39362" - blue: "#7C8993" - magenta: "#9A7286" - cyan: "#849C88" - white: "#D3C4B0" - brightBlack: "#605850" - brightRed: "#B27C85" - brightGreen: "#B2A4BD" - brightYellow: "#C29275" - brightBlue: "#9CAAB3" - brightMagenta: "#B596A6" - brightCyan: "#A3B9A7" - brightWhite: "#E6DECA" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 107.4 - black: 0 - red: 25.6 - green: 42 - yellow: 46.2 - blue: 37.7 - magenta: 33.1 - cyan: 45.2 - white: 71.7 - brightBlack: 17.3 - brightRed: 39.5 - brightGreen: 55.3 - brightYellow: 48.5 - brightBlue: 54.6 - brightMagenta: 49.6 - brightCyan: 61 - brightWhite: 86.4 diff --git a/themes/gothic-cemetery.yaml b/themes/gothic-cemetery.yaml deleted file mode 100644 index 9cd96901..00000000 --- a/themes/gothic-cemetery.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Cemetery" -source: - marketplace_id: "Diyllan.midnight-coven-themes" - version: "1.0.1" - installs: 1129 - rating: 5 - ratings: 1 - author: "Diyllan" - repo: "https://github.com/diyllan/midnight-coven-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" -colors: - bg: "#0F0F12" - fg: "#FFFFFF" - black: "#0F0F12" - red: "#A55560" - green: "#657860" - yellow: "#B09870" - blue: "#556880" - magenta: "#805570" - cyan: "#557580" - white: "#D8D8D8" - brightBlack: "#656575" - brightRed: "#D07585" - brightGreen: "#90B088" - brightYellow: "#D0C088" - brightBlue: "#7898C0" - brightMagenta: "#B088B0" - brightCyan: "#88C0C0" - brightWhite: "#F0F0F0" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 107.5 - black: 0 - red: 26.1 - green: 28.2 - yellow: 48 - blue: 22.9 - magenta: 21.2 - cyan: 27.1 - white: 82.5 - brightBlack: 22.8 - brightRed: 42.4 - brightGreen: 54.4 - brightYellow: 68.4 - brightBlue: 45 - brightMagenta: 44.7 - brightCyan: 62.5 - brightWhite: 97.7 diff --git a/themes/gothic-dark.yaml b/themes/gothic-dark.yaml deleted file mode 100644 index 5b3dc260..00000000 --- a/themes/gothic-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Dark" -source: - marketplace_id: "rama-3572.gothic" - version: "0.0.2" - installs: 503 - rating: 0 - ratings: 0 - author: "Rama" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=rama-3572.gothic" -colors: - bg: "#1E1E1E" - fg: "#E0E0E0" - black: "#1E1E1E" - red: "#EC5F67" - green: "#99C794" - yellow: "#FAC863" - blue: "#6699CC" - magenta: "#C594C5" - cyan: "#5FB3B3" - white: "#E0E0E0" - brightBlack: "#383838" - brightRed: "#EC5F67" - brightGreen: "#99C794" - brightYellow: "#FAC863" - brightBlue: "#6699CC" - brightMagenta: "#C594C5" - brightCyan: "#5FB3B3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Gothic Light" - contrast: - fg: 86 - black: 0 - red: 40.5 - green: 64 - yellow: 75.9 - blue: 43.3 - magenta: 51.2 - cyan: 52.2 - white: 86 - brightBlack: 0 - brightRed: 40.5 - brightGreen: 64 - brightYellow: 75.9 - brightBlue: 43.3 - brightMagenta: 51.2 - brightCyan: 52.2 - brightWhite: 106 diff --git a/themes/gothic-emerald-crypt.yaml b/themes/gothic-emerald-crypt.yaml deleted file mode 100644 index 9d8bbf1c..00000000 --- a/themes/gothic-emerald-crypt.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Emerald Crypt" -source: - marketplace_id: "Diyllan.midnight-coven-themes" - version: "1.0.1" - installs: 1129 - rating: 5 - ratings: 1 - author: "Diyllan" - repo: "https://github.com/diyllan/midnight-coven-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" -colors: - bg: "#0F1A15" - fg: "#D0E0D8" - black: "#0F1A15" - red: "#F05050" - green: "#20C080" - yellow: "#D0C060" - blue: "#50A0D0" - magenta: "#C050A0" - cyan: "#40C0C0" - white: "#D0E0D8" - brightBlack: "#507060" - brightRed: "#F07070" - brightGreen: "#40D090" - brightYellow: "#E0D080" - brightBlue: "#70B0E0" - brightMagenta: "#E070B0" - brightCyan: "#60E0E0" - brightWhite: "#E0F0E8" -meta: - mode: "dark" - accent: "orange" - hue: 165 - pair: null - contrast: - fg: 84.4 - black: 0 - red: 38.9 - green: 55.1 - yellow: 66.9 - blue: 45.8 - magenta: 31.5 - cyan: 58 - white: 84.4 - brightBlack: 23.3 - brightRed: 46.1 - brightGreen: 63.7 - brightYellow: 76.5 - brightBlue: 55 - brightMagenta: 45.1 - brightCyan: 75.6 - brightWhite: 94.5 diff --git a/themes/gothic-jester.yaml b/themes/gothic-jester.yaml deleted file mode 100644 index cdda1150..00000000 --- a/themes/gothic-jester.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Jester" -source: - marketplace_id: "Diyllan.midnight-coven-themes" - version: "1.0.1" - installs: 1129 - rating: 5 - ratings: 1 - author: "Diyllan" - repo: "https://github.com/diyllan/midnight-coven-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" -colors: - bg: "#10101A" - fg: "#FFFFFF" - black: "#10101A" - red: "#D06080" - green: "#C080C0" - yellow: "#D0A080" - blue: "#8090D0" - magenta: "#C080A0" - cyan: "#80A0D0" - white: "#F0E0D8" - brightBlack: "#706880" - brightRed: "#FF90A0" - brightGreen: "#E0A0E0" - brightYellow: "#FFC0A0" - brightBlue: "#A0B0FF" - brightMagenta: "#DE7AFF" - brightCyan: "#7AFFDE" - brightWhite: "#E0D9E6" -meta: - mode: "dark" - accent: "pink" - hue: 284 - pair: null - contrast: - fg: 107.4 - black: 0 - red: 37.1 - green: 45.3 - yellow: 55.7 - blue: 43.6 - magenta: 43.8 - cyan: 49.5 - white: 89.3 - brightBlack: 25 - brightRed: 59.7 - brightGreen: 62.1 - brightYellow: 76.3 - brightBlue: 61.5 - brightMagenta: 52.5 - brightCyan: 92.9 - brightWhite: 84.6 diff --git a/themes/gothic-light.yaml b/themes/gothic-light.yaml deleted file mode 100644 index 7ebc64bf..00000000 --- a/themes/gothic-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Light" -source: - marketplace_id: "rama-3572.gothic" - version: "0.0.2" - installs: 503 - rating: 0 - ratings: 0 - author: "Rama" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=rama-3572.gothic" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#000000" - green: "#000000" - yellow: "#000000" - blue: "#000000" - magenta: "#000000" - cyan: "#000000" - white: "#000000" - brightBlack: "#000000" - brightRed: "#000000" - brightGreen: "#000000" - brightYellow: "#000000" - brightBlue: "#000000" - brightMagenta: "#000000" - brightCyan: "#000000" - brightWhite: "#000000" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Gothic Dark" - contrast: - fg: 106 - black: 106 - red: 106 - green: 106 - yellow: 106 - blue: 106 - magenta: 106 - cyan: 106 - white: 106 - brightBlack: 106 - brightRed: 106 - brightGreen: 106 - brightYellow: 106 - brightBlue: 106 - brightMagenta: 106 - brightCyan: 106 - brightWhite: 106 diff --git a/themes/gothic-midnight-rose.yaml b/themes/gothic-midnight-rose.yaml deleted file mode 100644 index 8443be05..00000000 --- a/themes/gothic-midnight-rose.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Midnight Rose" -source: - marketplace_id: "Diyllan.midnight-coven-themes" - version: "1.0.1" - installs: 1129 - rating: 5 - ratings: 1 - author: "Diyllan" - repo: "https://github.com/diyllan/midnight-coven-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" -colors: - bg: "#0F0A1A" - fg: "#E0D8F0" - black: "#0F0A1A" - red: "#FF5070" - green: "#70A0FF" - yellow: "#D0A0FF" - blue: "#7080FF" - magenta: "#FF70A0" - cyan: "#70D0FF" - white: "#E0D8F0" - brightBlack: "#6A5A7A" - brightRed: "#FF7090" - brightGreen: "#90B0FF" - brightYellow: "#E0B0FF" - brightBlue: "#90A0FF" - brightMagenta: "#FF90B0" - brightCyan: "#90E0FF" - brightWhite: "#F0E8FF" -meta: - mode: "dark" - accent: "red" - hue: 297 - pair: null - contrast: - fg: 84.9 - black: 0 - red: 43.9 - green: 51.5 - yellow: 61.8 - blue: 40.5 - magenta: 51.5 - cyan: 71.4 - white: 84.9 - brightBlack: 20.4 - brightRed: 51 - brightGreen: 60.2 - brightYellow: 69.8 - brightBlue: 54.1 - brightMagenta: 60.5 - brightCyan: 80.9 - brightWhite: 94.9 diff --git a/themes/gothic-qaddy.yaml b/themes/gothic-qaddy.yaml deleted file mode 100644 index 64a41d56..00000000 --- a/themes/gothic-qaddy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Qaddy" -source: - marketplace_id: "Diyllan.midnight-coven-themes" - version: "1.0.1" - installs: 1129 - rating: 5 - ratings: 1 - author: "Diyllan" - repo: "https://github.com/diyllan/midnight-coven-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" -colors: - bg: "#131117" - fg: "#F5F5F0" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 300 - pair: null - contrast: - fg: 100.5 - black: 0 - red: 27.1 - green: 53.4 - yellow: 86.1 - blue: 27.9 - magenta: 30.2 - cyan: 48 - white: 90.5 - brightBlack: 22.5 - brightRed: 39 - brightGreen: 64 - brightYellow: 96.1 - brightBlue: 40.4 - brightMagenta: 45.8 - brightCyan: 55.8 - brightWhite: 90.5 diff --git a/themes/gothic-raven.yaml b/themes/gothic-raven.yaml deleted file mode 100644 index a41ebd65..00000000 --- a/themes/gothic-raven.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Raven" -source: - marketplace_id: "Diyllan.midnight-coven-themes" - version: "1.0.1" - installs: 1129 - rating: 5 - ratings: 1 - author: "Diyllan" - repo: "https://github.com/diyllan/midnight-coven-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" -colors: - bg: "#10151A" - fg: "#F0F5F5" - black: "#080F15" - red: "#5077FF" - green: "#3060A0" - yellow: "#7090FF" - blue: "#70B0A0" - magenta: "#60A0D0" - cyan: "#4070CF" - white: "#D8E0F0" - brightBlack: "#708090" - brightRed: "#7090FF" - brightGreen: "#4070C0" - brightYellow: "#90B0FF" - brightBlue: "#90D0C0" - brightMagenta: "#80C0F0" - brightCyan: "#6090FF" - brightWhite: "#F0F5FF" -meta: - mode: "dark" - accent: "purple" - hue: 248 - pair: null - contrast: - fg: 99.8 - black: 0 - red: 35.2 - green: 19.8 - yellow: 45.2 - blue: 52.2 - magenta: 47 - cyan: 28.4 - white: 86.8 - brightBlack: 33.1 - brightRed: 45.2 - brightGreen: 27.3 - brightYellow: 59.7 - brightBlue: 69.9 - brightMagenta: 64 - brightCyan: 44.2 - brightWhite: 100.3 diff --git a/themes/gothic-spider-lily.yaml b/themes/gothic-spider-lily.yaml deleted file mode 100644 index d75793e3..00000000 --- a/themes/gothic-spider-lily.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Spider Lily" -source: - marketplace_id: "Diyllan.midnight-coven-themes" - version: "1.0.1" - installs: 1129 - rating: 5 - ratings: 1 - author: "Diyllan" - repo: "https://github.com/diyllan/midnight-coven-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" -colors: - bg: "#0D0202" - fg: "#DC143C" - black: "#0D0202" - red: "#FF6666" - green: "#8B0000" - yellow: "#FF8888" - blue: "#8B0000" - magenta: "#FF6666" - cyan: "#A01010" - white: "#DC143C" - brightBlack: "#330A0A" - brightRed: "#FF7777" - brightGreen: "#8B0000" - brightYellow: "#FF8888" - brightBlue: "#A01010" - brightMagenta: "#FF6666" - brightCyan: "#DC143C" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 23 - pair: null - contrast: - fg: 29.4 - black: 0 - red: 47.9 - green: 11.5 - yellow: 57.1 - blue: 11.5 - magenta: 47.9 - cyan: 15.8 - white: 29.4 - brightBlack: 0 - brightRed: 52.1 - brightGreen: 11.5 - brightYellow: 57.1 - brightBlue: 15.8 - brightMagenta: 47.9 - brightCyan: 29.4 - brightWhite: 107.8 diff --git a/themes/gothic-twilight-forest.yaml b/themes/gothic-twilight-forest.yaml deleted file mode 100644 index 580f36cf..00000000 --- a/themes/gothic-twilight-forest.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Twilight Forest" -source: - marketplace_id: "Diyllan.midnight-coven-themes" - version: "1.0.1" - installs: 1129 - rating: 5 - ratings: 1 - author: "Diyllan" - repo: "https://github.com/diyllan/midnight-coven-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" -colors: - bg: "#0F1A15" - fg: "#D5E5E0" - black: "#0F1A15" - red: "#E05050" - green: "#60D080" - yellow: "#E0C060" - blue: "#60A0E0" - magenta: "#C070C0" - cyan: "#60C0C0" - white: "#D5E5E0" - brightBlack: "#567568" - brightRed: "#F07070" - brightGreen: "#80E0A0" - brightYellow: "#F0D080" - brightBlue: "#80B0F0" - brightMagenta: "#D090D0" - brightCyan: "#80D0D0" - brightWhite: "#E8F8F0" -meta: - mode: "dark" - accent: "orange" - hue: 165 - pair: null - contrast: - fg: 87.6 - black: 0 - red: 35.4 - green: 64.4 - yellow: 69.2 - blue: 47.6 - magenta: 40.3 - cyan: 59.2 - white: 87.6 - brightBlack: 25.6 - brightRed: 46.1 - brightGreen: 74.8 - brightYellow: 78.9 - brightBlue: 57.1 - brightMagenta: 52.9 - brightCyan: 69.1 - brightWhite: 99.6 diff --git a/themes/gothic-vampire.yaml b/themes/gothic-vampire.yaml deleted file mode 100644 index beb85af1..00000000 --- a/themes/gothic-vampire.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Vampire" -source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - rating: 0 - ratings: 0 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" -colors: - bg: "#0A0A0C" - fg: "#F8F8F2" - black: "#1A1A1F" - red: "#8B1538" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#6272A4" - magenta: "#BD93F9" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#44475A" - brightRed: "#B91E47" - brightGreen: "#50FA7B" - brightYellow: "#F1FA8C" - brightBlue: "#8BE9FD" - brightMagenta: "#BD93F9" - brightCyan: "#8BE9FD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 102.8 - black: 0 - red: 12.2 - green: 85.7 - yellow: 99.4 - blue: 28.9 - magenta: 54.5 - cyan: 84.8 - white: 102.8 - brightBlack: 11.1 - brightRed: 22.1 - brightGreen: 85.7 - brightYellow: 99.4 - brightBlue: 84.8 - brightMagenta: 54.5 - brightCyan: 84.8 - brightWhite: 107.7 diff --git a/themes/gothic-victorian-mourning.yaml b/themes/gothic-victorian-mourning.yaml deleted file mode 100644 index dbe48fd2..00000000 --- a/themes/gothic-victorian-mourning.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gothic Victorian Mourning" -source: - marketplace_id: "Diyllan.midnight-coven-themes" - version: "1.0.1" - installs: 1129 - rating: 5 - ratings: 1 - author: "Diyllan" - repo: "https://github.com/diyllan/midnight-coven-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" -colors: - bg: "#0F0A06" - fg: "#D4C5A9" - black: "#0F0A06" - red: "#CD853F" - green: "#8B7355" - yellow: "#DAA520" - blue: "#8B7355" - magenta: "#CD853F" - cyan: "#A68660" - white: "#D4C5A9" - brightBlack: "#3D2817" - brightRed: "#E09F56" - brightGreen: "#8B7355" - brightYellow: "#DAA520" - brightBlue: "#A68660" - brightMagenta: "#CD853F" - brightCyan: "#D4C5A9" - brightWhite: "#F5F0E8" -meta: - mode: "dark" - accent: "yellow" - hue: 64 - pair: null - contrast: - fg: 72.2 - black: 0 - red: 45.3 - green: 30.4 - yellow: 58.1 - blue: 30.4 - magenta: 45.3 - cyan: 40.2 - white: 72.2 - brightBlack: 0 - brightRed: 57.4 - brightGreen: 30.4 - brightYellow: 58.1 - brightBlue: 40.2 - brightMagenta: 45.3 - brightCyan: 72.2 - brightWhite: 98.2 diff --git a/themes/gothic.yaml b/themes/gothic.yaml index c6781769..b77d85da 100644 --- a/themes/gothic.yaml +++ b/themes/gothic.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ryoh827.gothic-theme-vscode" version: "0.0.2" installs: 171 + rating: 0 + ratings: 0 author: "ryoh827" repo: "https://github.com/Ryoh827/gothic-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ryoh827.gothic-theme-vscode" + formats: null colors: bg: "#3B3B3B" fg: "#F2F2F2" diff --git a/themes/gourd.yaml b/themes/gourd.yaml index c9246fe3..d17c4890 100644 --- a/themes/gourd.yaml +++ b/themes/gourd.yaml @@ -8,6 +8,7 @@ source: author: "Zorbn" repo: "https://github.com/Zorbn/gourd" url: "https://marketplace.visualstudio.com/items?itemName=Zorbn.gourd-theme" + formats: null colors: bg: "#2D2A2E" fg: "#EBDBB2" diff --git a/themes/gptheme-dark.yaml b/themes/gptheme-dark.yaml index f710466b..557a2225 100644 --- a/themes/gptheme-dark.yaml +++ b/themes/gptheme-dark.yaml @@ -8,6 +8,7 @@ source: author: "pedro-b-n" repo: "https://github.com/pedro-b-n/GPTheme" url: "https://marketplace.visualstudio.com/items?itemName=pedro-b-n.gptheme" + formats: null colors: bg: "#F0F0F0" fg: "#000000" diff --git a/themes/gptheme.yaml b/themes/gptheme.yaml index 2cb7085d..6c832cdf 100644 --- a/themes/gptheme.yaml +++ b/themes/gptheme.yaml @@ -8,6 +8,7 @@ source: author: "LudovicPeysson" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LudovicPeysson.nekogpttocolortheme" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/gracefulbear.yaml b/themes/gracefulbear.yaml index a6ba3f69..48c8cec8 100644 --- a/themes/gracefulbear.yaml +++ b/themes/gracefulbear.yaml @@ -2,12 +2,13 @@ name: "GracefulBear" source: marketplace_id: "GracefulBear.gracefulbear" version: "0.0.1" - installs: 968 + installs: 970 rating: 5 ratings: 2 author: "GracefulBear" repo: "https://github.com/GracefulBearTheme/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=GracefulBear.gracefulbear" + formats: null colors: bg: "#222222" fg: "#ABB2BF" diff --git a/themes/grandblue-pastel.yaml b/themes/grandblue-pastel.yaml index f1683c36..7c8af346 100644 --- a/themes/grandblue-pastel.yaml +++ b/themes/grandblue-pastel.yaml @@ -8,6 +8,7 @@ source: author: "jojihatzz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jojihatzz.grandblue" + formats: null colors: bg: "#232935" fg: "#F3F6FA" diff --git a/themes/grandblue-soft.yaml b/themes/grandblue-soft.yaml index 91a9cf64..09fd6f71 100644 --- a/themes/grandblue-soft.yaml +++ b/themes/grandblue-soft.yaml @@ -8,6 +8,7 @@ source: author: "jojihatzz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jojihatzz.grandblue" + formats: null colors: bg: "#131B22" fg: "#EBEFF5" diff --git a/themes/grandblue.yaml b/themes/grandblue.yaml index 549d5f4b..9b4ad57a 100644 --- a/themes/grandblue.yaml +++ b/themes/grandblue.yaml @@ -8,6 +8,7 @@ source: author: "jojihatzz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jojihatzz.grandblue" + formats: null colors: bg: "#0A1015" fg: "#E2E6EC" diff --git a/themes/grank-blackout.yaml b/themes/grank-blackout.yaml index 8ef328ab..ce38a214 100644 --- a/themes/grank-blackout.yaml +++ b/themes/grank-blackout.yaml @@ -8,6 +8,7 @@ source: author: "Emmanuel Akala" repo: "https://github.com/sambabib/grank-vscode" url: "https://marketplace.visualstudio.com/items?itemName=samuraikitts.grank" + formats: null colors: bg: "#020202" fg: "#D4D4D4" diff --git a/themes/grank.yaml b/themes/grank.yaml index bbf2cd44..27e8029e 100644 --- a/themes/grank.yaml +++ b/themes/grank.yaml @@ -8,6 +8,7 @@ source: author: "Emmanuel Akala" repo: "https://github.com/sambabib/grank-vscode" url: "https://marketplace.visualstudio.com/items?itemName=samuraikitts.grank" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/grapered.yaml b/themes/grapered.yaml index e4e1e6c5..543b9c11 100644 --- a/themes/grapered.yaml +++ b/themes/grapered.yaml @@ -8,6 +8,7 @@ source: author: "The_Grape_king" repo: "https://github.com/TheGrapeking/Coolred" url: "https://marketplace.visualstudio.com/items?itemName=TheGrapeking.GrapeRed" + formats: null colors: bg: "#131313" fg: "#A90000" diff --git a/themes/grapevine.yaml b/themes/grapevine.yaml index c8335710..f85173bc 100644 --- a/themes/grapevine.yaml +++ b/themes/grapevine.yaml @@ -8,6 +8,7 @@ source: author: "rautenbergf" repo: "https://github.com/rautenbergf/grapevine" url: "https://marketplace.visualstudio.com/items?itemName=rautenbergf.grapevine" + formats: null colors: bg: "#181921" fg: "#B4BEC8" diff --git a/themes/graphlinq-dark.yaml b/themes/graphlinq-dark.yaml index 494b56a5..275fc006 100644 --- a/themes/graphlinq-dark.yaml +++ b/themes/graphlinq-dark.yaml @@ -8,6 +8,7 @@ source: author: "GraphLinq" repo: "https://github.com/GraphLinq/GraphLinq.VSCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=GraphLinq.graphlinq-vscode-theme" + formats: null colors: bg: "#131026" fg: "#B4A5E7" diff --git a/themes/grassrivers-sunset.yaml b/themes/grassrivers-sunset.yaml index ff718f70..d7611c6b 100644 --- a/themes/grassrivers-sunset.yaml +++ b/themes/grassrivers-sunset.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#2E1A00" fg: "#FFFACD" diff --git a/themes/gravel-pit.yaml b/themes/gravel-pit.yaml index 7569692e..d41f994b 100644 --- a/themes/gravel-pit.yaml +++ b/themes/gravel-pit.yaml @@ -1,4 +1,4 @@ -name: "gravel-pit" +name: "Gravel Pit" source: marketplace_id: "BeatScherrer.gravel-pit" version: "0.48.0" @@ -8,6 +8,7 @@ source: author: "Beat Scherrer" repo: null url: "https://marketplace.visualstudio.com/items?itemName=BeatScherrer.gravel-pit" + formats: null colors: bg: "#1D1F21" fg: "#C5C8C6" diff --git a/themes/graveyard-fork-fork.yaml b/themes/graveyard-fork-fork.yaml deleted file mode 100644 index 1393ed04..00000000 --- a/themes/graveyard-fork-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Graveyard - Fork - Fork" -source: - marketplace_id: "TioAurelion.fullblack" - version: "0.0.1" - installs: 140 - rating: 0 - ratings: 0 - author: "TioAurelion" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=TioAurelion.fullblack" -colors: - bg: "#000000" - fg: "#F61D6F" - black: "#3D3D3D" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 37 - black: 7.5 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/graveyard.yaml b/themes/graveyard.yaml deleted file mode 100644 index caf10933..00000000 --- a/themes/graveyard.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Graveyard" -source: - marketplace_id: "RolandoTaipe.Underdark" - version: "0.1.15" - installs: 7905 - rating: 5 - ratings: 1 - author: "Rolando Taipe" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=RolandoTaipe.Underdark" -colors: - bg: "#000000" - fg: "#AFC2FF" - black: "#3D3D3D" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 70.7 - black: 7.5 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/gravity.yaml b/themes/gravity.yaml index eec78888..55b8d185 100644 --- a/themes/gravity.yaml +++ b/themes/gravity.yaml @@ -8,6 +8,7 @@ source: author: "Jesztar" repo: "https://github.com/a-jesztar/Gravity-for-Visual-Studio-Code" url: "https://marketplace.visualstudio.com/items?itemName=Jesztar.gravity" + formats: null colors: bg: "#1F1F24" fg: "#C4C8D1" diff --git a/themes/gray-matter.yaml b/themes/gray-matter.yaml index 83e98512..bdce0e76 100644 --- a/themes/gray-matter.yaml +++ b/themes/gray-matter.yaml @@ -8,6 +8,7 @@ source: author: "Priyaank" repo: "https://github.com/PRIYAANK2510/Radiance" url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.radiancexx" + formats: null colors: bg: "#1F1F1F" fg: "#AAAAAA" diff --git a/themes/gray-pastel.yaml b/themes/gray-pastel.yaml index fda92f97..ee242dd9 100644 --- a/themes/gray-pastel.yaml +++ b/themes/gray-pastel.yaml @@ -8,6 +8,7 @@ source: author: "Falyssa" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Falyssa.gray-pastel-theme" + formats: null colors: bg: "#FFFFFF" fg: "#808080" diff --git a/themes/graygraygray.yaml b/themes/graygraygray.yaml deleted file mode 100644 index 65521c5d..00000000 --- a/themes/graygraygray.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "graygraygray" -source: - marketplace_id: "kendama1980.graygraygray" - version: "0.0.1" - installs: 9406 - rating: 5 - ratings: 6 - author: "kendama1980" - repo: "https://github.com/kendama1980/graygraygray" - url: "https://marketplace.visualstudio.com/items?itemName=kendama1980.graygraygray" -colors: - bg: "#C4C2C0" - fg: "#000000" - black: "#000000" - red: "#C00000" - green: "#008000" - yellow: "#808000" - blue: "#0000C0" - magenta: "#B000B0" - cyan: "#00B0B0" - white: "#FFFFE0" - brightBlack: "#505050" - brightRed: "#F04040" - brightGreen: "#80F080" - brightYellow: "#F0F060" - brightBlue: "#2080F0" - brightMagenta: "#F060F0" - brightCyan: "#80F0F0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 71.1 - black: 71.1 - red: 44.4 - green: 39.7 - yellow: 33.9 - blue: 59.1 - magenta: 42.8 - cyan: 16.5 - white: 35.3 - brightBlack: 53.1 - brightRed: 29.3 - brightGreen: 11.9 - brightYellow: 22.7 - brightBlue: 30.8 - brightMagenta: 17.4 - brightCyan: 15.8 - brightWhite: 36.7 diff --git a/themes/graymium-theme.yaml b/themes/graymium-theme.yaml index d59a63c5..b4b0c610 100644 --- a/themes/graymium-theme.yaml +++ b/themes/graymium-theme.yaml @@ -8,6 +8,7 @@ source: author: "olegfedak" repo: "https://github.com/olegfedak/graymium" url: "https://marketplace.visualstudio.com/items?itemName=olegfedak.graymium-vscode" + formats: null colors: bg: "#252627" fg: "#C9CED6" diff --git a/themes/grayscale301-light.yaml b/themes/grayscale301-light.yaml deleted file mode 100644 index 6046a6fc..00000000 --- a/themes/grayscale301-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GrayScale301-Light" -source: - marketplace_id: "CameronScofield.grayscale301" - version: "0.0.1" - installs: 176 - rating: 0 - ratings: 0 - author: "Cameron Scofield" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=CameronScofield.grayscale301" -colors: - bg: "#C0C0C0" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#A5BC00" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#CFD500" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 69.9 - black: 69.9 - red: 37.8 - green: 13.1 - yellow: 0 - blue: 49.9 - magenta: 38.4 - cyan: 24.5 - white: 49.8 - brightBlack: 42.6 - brightRed: 37.8 - brightGreen: 0 - brightYellow: 0 - brightBlue: 49.9 - brightMagenta: 38.4 - brightCyan: 24.5 - brightWhite: 12.3 diff --git a/themes/great-white-bloodloss.yaml b/themes/great-white-bloodloss.yaml deleted file mode 100644 index 70f5cb14..00000000 --- a/themes/great-white-bloodloss.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Great White (Bloodloss)" -source: - marketplace_id: "shark-labs.shark-labs-great-white-theme" - version: "0.6.3" - installs: 22 - rating: 0 - ratings: 0 - author: "theSharkArtist" - repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" - url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" -colors: - bg: "#1A0505" - fg: "#E7EDF2" - black: "#1B2229" - red: "#C44F5F" - green: "#4DAAAA" - yellow: "#D9A441" - blue: "#5D8FA8" - magenta: "#C96A7A" - cyan: "#E06B7A" - white: "#D8E8EF" - brightBlack: "#2A3840" - brightRed: "#D56A7A" - brightGreen: "#5DBFBF" - brightYellow: "#E4B754" - brightBlue: "#6EA6C0" - brightMagenta: "#D07D8C" - brightCyan: "#A4DFF4" - brightWhite: "#EDF4F8" -meta: - mode: "dark" - accent: "red" - hue: 23 - pair: null - contrast: - fg: 95.2 - black: 0 - red: 30.6 - green: 48.7 - yellow: 57.7 - blue: 38.6 - magenta: 38.1 - cyan: 42.7 - white: 90.9 - brightBlack: 0 - brightRed: 40.3 - brightGreen: 59.4 - brightYellow: 66.8 - brightBlue: 49.8 - brightMagenta: 45 - brightCyan: 81.4 - brightWhite: 99.6 diff --git a/themes/great-white-dark.yaml b/themes/great-white-dark.yaml deleted file mode 100644 index 84e5d1e4..00000000 --- a/themes/great-white-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Great White (Dark)" -source: - marketplace_id: "shark-labs.shark-labs-great-white-theme" - version: "0.6.3" - installs: 22 - rating: 0 - ratings: 0 - author: "theSharkArtist" - repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" - url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" -colors: - bg: "#0E1A22" - fg: "#D8E8EF" - black: "#1B2229" - red: "#C44F5F" - green: "#4DAAAA" - yellow: "#D9A441" - blue: "#5D8FA8" - magenta: "#C96A7A" - cyan: "#9FC7D8" - white: "#D8E8EF" - brightBlack: "#2A3840" - brightRed: "#D56A7A" - brightGreen: "#5DBFBF" - brightYellow: "#E4B754" - brightBlue: "#6EA6C0" - brightMagenta: "#D07D8C" - brightCyan: "#A4DFF4" - brightWhite: "#EDF4F8" -meta: - mode: "dark" - accent: "red" - hue: 239 - pair: null - contrast: - fg: 90 - black: 0 - red: 29.7 - green: 47.8 - yellow: 56.8 - blue: 37.7 - magenta: 37.2 - cyan: 67.9 - white: 90 - brightBlack: 0 - brightRed: 39.4 - brightGreen: 58.5 - brightYellow: 65.9 - brightBlue: 48.9 - brightMagenta: 44.1 - brightCyan: 80.5 - brightWhite: 98.7 diff --git a/themes/great-white-frost.yaml b/themes/great-white-frost.yaml deleted file mode 100644 index 967ee66e..00000000 --- a/themes/great-white-frost.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Great White (Frost)" -source: - marketplace_id: "shark-labs.shark-labs-great-white-theme" - version: "0.6.3" - installs: 22 - rating: 0 - ratings: 0 - author: "theSharkArtist" - repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" - url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" -colors: - bg: "#F7F8F7" - fg: "#1A2630" - black: "#1B2229" - red: "#C44F5F" - green: "#4DAAAA" - yellow: "#D9A441" - blue: "#5D8FA8" - magenta: "#C96A7A" - cyan: "#9FC7D8" - white: "#D8E8EF" - brightBlack: "#2A3840" - brightRed: "#D56A7A" - brightGreen: "#5DBFBF" - brightYellow: "#E4B754" - brightBlue: "#6EA6C0" - brightMagenta: "#D07D8C" - brightCyan: "#A4DFF4" - brightWhite: "#EDF4F8" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 97.9 - black: 98.7 - red: 66.4 - green: 48.5 - yellow: 39.8 - blue: 58.4 - magenta: 58.9 - cyan: 29.2 - white: 8.4 - brightBlack: 93.3 - brightRed: 56.7 - brightGreen: 38.1 - brightYellow: 31 - brightBlue: 47.4 - brightMagenta: 52.1 - brightCyan: 17.2 - brightWhite: 0 diff --git a/themes/great-white-high-contrast-dark.yaml b/themes/great-white-high-contrast-dark.yaml deleted file mode 100644 index 4016e6d1..00000000 --- a/themes/great-white-high-contrast-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Great White (High Contrast Dark)" -source: - marketplace_id: "shark-labs.shark-labs-great-white-theme" - version: "0.6.3" - installs: 22 - rating: 0 - ratings: 0 - author: "theSharkArtist" - repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" - url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" -colors: - bg: "#0B0F12" - fg: "#F6FBFF" - black: "#1B2229" - red: "#C44F5F" - green: "#4DAAAA" - yellow: "#D9A441" - blue: "#5D8FA8" - magenta: "#C96A7A" - cyan: "#9FC7D8" - white: "#D8E8EF" - brightBlack: "#2A3840" - brightRed: "#D56A7A" - brightGreen: "#5DBFBF" - brightYellow: "#E4B754" - brightBlue: "#6EA6C0" - brightMagenta: "#D07D8C" - brightCyan: "#A4DFF4" - brightWhite: "#EDF4F8" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 104.4 - black: 0 - red: 30.5 - green: 48.6 - yellow: 57.6 - blue: 38.6 - magenta: 38 - cyan: 68.7 - white: 90.8 - brightBlack: 0 - brightRed: 40.3 - brightGreen: 59.4 - brightYellow: 66.8 - brightBlue: 49.8 - brightMagenta: 44.9 - brightCyan: 81.4 - brightWhite: 99.5 diff --git a/themes/great-white-high-contrast-light.yaml b/themes/great-white-high-contrast-light.yaml deleted file mode 100644 index 30d8c80c..00000000 --- a/themes/great-white-high-contrast-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Great White (High Contrast Light)" -source: - marketplace_id: "shark-labs.shark-labs-great-white-theme" - version: "0.6.3" - installs: 22 - rating: 0 - ratings: 0 - author: "theSharkArtist" - repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" - url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" -colors: - bg: "#FFFFFF" - fg: "#12202A" - black: "#1B2229" - red: "#C44F5F" - green: "#4DAAAA" - yellow: "#D9A441" - blue: "#5D8FA8" - magenta: "#C96A7A" - cyan: "#9FC7D8" - white: "#D8E8EF" - brightBlack: "#2A3840" - brightRed: "#D56A7A" - brightGreen: "#5DBFBF" - brightYellow: "#E4B754" - brightBlue: "#6EA6C0" - brightMagenta: "#D07D8C" - brightCyan: "#A4DFF4" - brightWhite: "#EDF4F8" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 103.5 - black: 103 - red: 70.8 - green: 52.9 - yellow: 44.2 - blue: 62.7 - magenta: 63.3 - cyan: 33.5 - white: 12.7 - brightBlack: 97.6 - brightRed: 61.1 - brightGreen: 42.5 - brightYellow: 35.4 - brightBlue: 51.8 - brightMagenta: 56.5 - brightCyan: 21.6 - brightWhite: 0 diff --git a/themes/great-white-light.yaml b/themes/great-white-light.yaml deleted file mode 100644 index 8f974c9e..00000000 --- a/themes/great-white-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Great White (Light)" -source: - marketplace_id: "shark-labs.shark-labs-great-white-theme" - version: "0.6.3" - installs: 22 - rating: 0 - ratings: 0 - author: "theSharkArtist" - repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" - url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" -colors: - bg: "#F1F4F5" - fg: "#182830" - black: "#1B2229" - red: "#C44F5F" - green: "#4DAAAA" - yellow: "#D9A441" - blue: "#5D8FA8" - magenta: "#C96A7A" - cyan: "#9FC7D8" - white: "#D8E8EF" - brightBlack: "#2A3840" - brightRed: "#D56A7A" - brightGreen: "#5DBFBF" - brightYellow: "#E4B754" - brightBlue: "#6EA6C0" - brightMagenta: "#D07D8C" - brightCyan: "#A4DFF4" - brightWhite: "#EDF4F8" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 95.1 - black: 96.1 - red: 63.9 - green: 46 - yellow: 37.3 - blue: 55.8 - magenta: 56.4 - cyan: 26.6 - white: 0 - brightBlack: 90.7 - brightRed: 54.2 - brightGreen: 35.6 - brightYellow: 28.5 - brightBlue: 44.9 - brightMagenta: 49.6 - brightCyan: 14.7 - brightWhite: 0 diff --git a/themes/great-white-storm.yaml b/themes/great-white-storm.yaml deleted file mode 100644 index e3d3b9a8..00000000 --- a/themes/great-white-storm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Great White (Storm)" -source: - marketplace_id: "shark-labs.shark-labs-great-white-theme" - version: "0.6.3" - installs: 22 - rating: 0 - ratings: 0 - author: "theSharkArtist" - repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" - url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" -colors: - bg: "#111820" - fg: "#E7EDF2" - black: "#1B2229" - red: "#C44F5F" - green: "#4DAAAA" - yellow: "#D9A441" - blue: "#5D8FA8" - magenta: "#C96A7A" - cyan: "#9FC7D8" - white: "#D8E8EF" - brightBlack: "#2A3840" - brightRed: "#D56A7A" - brightGreen: "#5DBFBF" - brightYellow: "#E4B754" - brightBlue: "#6EA6C0" - brightMagenta: "#D07D8C" - brightCyan: "#A4DFF4" - brightWhite: "#EDF4F8" -meta: - mode: "dark" - accent: "red" - hue: 252 - pair: null - contrast: - fg: 94.5 - black: 0 - red: 29.8 - green: 47.9 - yellow: 56.9 - blue: 37.9 - magenta: 37.3 - cyan: 68 - white: 90.1 - brightBlack: 0 - brightRed: 39.6 - brightGreen: 58.6 - brightYellow: 66.1 - brightBlue: 49.1 - brightMagenta: 44.2 - brightCyan: 80.7 - brightWhite: 98.8 diff --git a/themes/great-white.yaml b/themes/great-white.yaml index 9c002ab5..4feb6112 100644 --- a/themes/great-white.yaml +++ b/themes/great-white.yaml @@ -2,12 +2,13 @@ name: "Great White" source: marketplace_id: "thehedgefrog.greatwhite" version: "1.0.0" - installs: 5910 + installs: 5915 rating: 5 ratings: 2 author: "thehedgefrog" repo: "https://github.com/thehedgefrog/great-white-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thehedgefrog.greatwhite" + formats: null colors: bg: "#464A51" fg: "#FFFFFF" diff --git a/themes/greblue.yaml b/themes/greblue.yaml index 09a13d64..614cda3d 100644 --- a/themes/greblue.yaml +++ b/themes/greblue.yaml @@ -8,6 +8,7 @@ source: author: "AXENOX" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AXENOX.greblue" + formats: null colors: bg: "#171D1D" fg: "#8C8C8C" diff --git a/themes/greeeeen.yaml b/themes/greeeeen.yaml deleted file mode 100644 index ac93df60..00000000 --- a/themes/greeeeen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Greeeeen" -source: - marketplace_id: "Kakamotobi.greeeeen" - version: "1.0.0" - installs: 44 - rating: 0 - ratings: 0 - author: "Kakamotobi" - repo: "https://github.com/Kakamotobi/Greeeeen" - url: "https://marketplace.visualstudio.com/items?itemName=Kakamotobi.greeeeen" -colors: - bg: "#2E412E" - fg: "#FEFDD5" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 145 - pair: null - contrast: - fg: 96.3 - black: 8.5 - red: 19.1 - green: 45.4 - yellow: 78 - blue: 19.8 - magenta: 22.1 - cyan: 39.9 - white: 82.4 - brightBlack: 14.4 - brightRed: 30.9 - brightGreen: 55.9 - brightYellow: 88 - brightBlue: 32.4 - brightMagenta: 37.7 - brightCyan: 47.8 - brightWhite: 82.4 diff --git a/themes/green-coffee.yaml b/themes/green-coffee.yaml deleted file mode 100644 index f90aaf9a..00000000 --- a/themes/green-coffee.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Green Coffee" -source: - marketplace_id: "Rajeshwaran.developer-theme-dark" - version: "5.0.0" - installs: 162179 - rating: 5 - ratings: 4 - author: "Rajeshwaran" - repo: "https://github.com/Rajeshwaran2001/developer-theme-dark" - url: "https://marketplace.visualstudio.com/items?itemName=Rajeshwaran.developer-theme-dark" -colors: - bg: "#0D0202" - fg: "#C9A4A4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#ECB1B1" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFE7E7" -meta: - mode: "dark" - accent: "pink" - hue: 23 - pair: null - contrast: - fg: 57.7 - black: 0 - red: 27.7 - green: 53.9 - yellow: 86.6 - blue: 28.4 - magenta: 30.7 - cyan: 48.5 - white: 68.4 - brightBlack: 23 - brightRed: 39.5 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 40.9 - brightMagenta: 46.3 - brightCyan: 56.3 - brightWhite: 95.7 diff --git a/themes/green-geek.yaml b/themes/green-geek.yaml index 228632e6..74d5815d 100644 --- a/themes/green-geek.yaml +++ b/themes/green-geek.yaml @@ -8,6 +8,7 @@ source: author: "Blackfur" repo: "https://github.com/DasBlackfur/green-geeko" url: "https://marketplace.visualstudio.com/items?itemName=blackfur.green-geeko" + formats: null colors: bg: "#1E1E1E" fg: "#FFFFFF" diff --git a/themes/green-hacker.yaml b/themes/green-hacker.yaml deleted file mode 100644 index 2463cda5..00000000 --- a/themes/green-hacker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Green Hacker" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#1E272E" - fg: "#E4E4E4" - black: "#000000" - red: "#FF5E57" - green: "#05C46B" - yellow: "#FFA801" - blue: "#575FCF" - magenta: "#EF5777" - cyan: "#00D8D6" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#FF3F34" - brightGreen: "#0BE881" - brightYellow: "#FFD32A" - brightBlue: "#0FBCF9" - brightMagenta: "#F53B57" - brightCyan: "#34E7E4" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "orange" - hue: 242 - pair: null - contrast: - fg: 87.3 - black: 0 - red: 43 - green: 54.3 - yellow: 62.7 - blue: 22.5 - magenta: 38.8 - cyan: 67.5 - white: 87.9 - brightBlack: 20 - brightRed: 37.8 - brightGreen: 72.5 - brightYellow: 79.5 - brightBlue: 56.6 - brightMagenta: 35.4 - brightCyan: 75.9 - brightWhite: 87.9 diff --git a/themes/green-kingdom.yaml b/themes/green-kingdom.yaml deleted file mode 100644 index 4b337b23..00000000 --- a/themes/green-kingdom.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Green Kingdom" -source: - marketplace_id: "YesCode.morita" - version: "0.0.18" - installs: 228 - rating: 0 - ratings: 0 - author: "YesCode" - repo: "https://github.com/yesomac/MyThemes" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" -colors: - bg: "#2D2D53" - fg: "#D1D1F1" - black: "#1D2021" - red: "#FB543F" - green: "#95C085" - yellow: "#FAC03B" - blue: "#00A1F9" - magenta: "#8F4673" - cyan: "#8BA59B" - white: "#A89984" - brightBlack: "#665C54" - brightRed: "#FB543F" - brightGreen: "#0687FF" - brightYellow: "#FFCC80" - brightBlue: "#0D6678" - brightMagenta: "#8F4673" - brightCyan: "#8BA59B" - brightWhite: "#FDF4C1" -meta: - mode: "dark" - accent: "orange" - hue: 282 - pair: null - contrast: - fg: 74.8 - black: 0 - red: 37.6 - green: 56.6 - yellow: 68.6 - blue: 43.1 - magenta: 15.1 - cyan: 45 - white: 42.8 - brightBlack: 14.2 - brightRed: 37.6 - brightGreen: 34 - brightYellow: 75.3 - brightBlue: 14.3 - brightMagenta: 15.1 - brightCyan: 45 - brightWhite: 94.4 diff --git a/themes/green-low-contrast.yaml b/themes/green-low-contrast.yaml index 8ca0b986..d91e802b 100644 --- a/themes/green-low-contrast.yaml +++ b/themes/green-low-contrast.yaml @@ -2,12 +2,13 @@ name: "green-low-contrast" source: marketplace_id: "cyberSpice.green-low-contrast" version: "0.26.0" - installs: 1726 + installs: 1727 rating: 5 ratings: 1 author: "cyberSpice" repo: "https://github.com/alxspice/green-low-contrast-theme" url: "https://marketplace.visualstudio.com/items?itemName=cyberSpice.green-low-contrast" + formats: null colors: bg: "#233034" fg: "#83A38F" diff --git a/themes/green-papper.yaml b/themes/green-papper.yaml deleted file mode 100644 index bc72b102..00000000 --- a/themes/green-papper.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Green Papper" -source: - marketplace_id: "Suntechnic.green-papper" - version: "0.4.1" - installs: 1082 - rating: 0 - ratings: 0 - author: "Александр Маджугин" - repo: "https://github.com/Suntechnic/green-papper" - url: "https://marketplace.visualstudio.com/items?itemName=Suntechnic.green-papper" -colors: - bg: "#FCFAFE" - fg: "#222222" - black: "#000000" - red: "#F51818" - green: "#43B244" - yellow: "#F2AE49" - blue: "#CDD9CF" - magenta: "#A37ACC" - cyan: "#207F4C" - white: "#6C7880" - brightBlack: "#6C7680" - brightRed: "#F07171" - brightGreen: "#86B300" - brightYellow: "#FF9940" - brightBlue: "#55B4D4" - brightMagenta: "#FE76FF" - brightCyan: "#39CBCC" - brightWhite: "#000000" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 100.3 - black: 103.5 - red: 63.7 - green: 49.9 - yellow: 34 - blue: 19.1 - magenta: 58.6 - cyan: 71.6 - white: 68.9 - brightBlack: 69.6 - brightRed: 51.8 - brightGreen: 45.9 - brightYellow: 38.7 - brightBlue: 43.9 - brightMagenta: 41.6 - brightCyan: 35.3 - brightWhite: 103.5 diff --git a/themes/green-theme.yaml b/themes/green-theme.yaml index 923ed345..c31bafae 100644 --- a/themes/green-theme.yaml +++ b/themes/green-theme.yaml @@ -2,12 +2,13 @@ name: "green-theme" source: marketplace_id: "flyyn2.green-theme" version: "1.0.2" - installs: 2722 + installs: 2724 rating: 5 ratings: 1 author: "flyyn2" repo: null url: "https://marketplace.visualstudio.com/items?itemName=flyyn2.green-theme" + formats: null colors: bg: "#CCE8CF" fg: "#46433C" diff --git a/themes/green-tree.yaml b/themes/green-tree.yaml deleted file mode 100644 index 73dac788..00000000 --- a/themes/green-tree.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Green Tree" -source: - marketplace_id: "stevennyang.green-tree" - version: "1.2.1" - installs: 5716 - rating: 5 - ratings: 1 - author: "Steven N. Yang" - repo: "https://github.com/snyang/vscode-theme-green-tree" - url: "https://marketplace.visualstudio.com/items?itemName=stevennyang.green-tree" -colors: - bg: "#F2FFF3" - fg: "#232323" - black: "#000000" - red: "#FF0000" - green: "#3CB371" - yellow: "#BDB76B" - blue: "#0000FF" - magenta: "#FF00FF" - cyan: "#00BFFF" - white: "#3CB371" - brightBlack: "#708090" - brightRed: "#8B0000" - brightGreen: "#3CB371" - brightYellow: "#BDB76B" - brightBlue: "#00008B" - brightMagenta: "#8B008B" - brightCyan: "#87CEFA" - brightWhite: "#3CB371" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 100.6 - black: 103.9 - red: 62 - green: 49.3 - yellow: 38.2 - blue: 83.7 - magenta: 53.5 - cyan: 38.8 - white: 49.3 - brightBlack: 65.7 - brightRed: 88.6 - brightGreen: 49.3 - brightYellow: 38.2 - brightBlue: 97.9 - brightMagenta: 84.9 - brightCyan: 28.6 - brightWhite: 49.3 diff --git a/themes/green-valley-forest.yaml b/themes/green-valley-forest.yaml deleted file mode 100644 index e10b52f1..00000000 --- a/themes/green-valley-forest.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Green Valley Forest" -source: - marketplace_id: "helciopenha.green-valley" - version: "1.0.1" - installs: 774 - rating: 5 - ratings: 1 - author: "Helcio Penha" - repo: "https://github.com/helciopenha/green-valley-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" -colors: - bg: "#121212" - fg: "#F5F5F5" - black: "#21222C" - red: "#FF5C57" - green: "#00B46E" - yellow: "#FFD866" - blue: "#A480FF" - magenta: "#FF6B9D" - cyan: "#25D0D0" - white: "#F5F5F5" - brightBlack: "#4C9B7D" - brightRed: "#FF8078" - brightGreen: "#00E185" - brightYellow: "#FFDF85" - brightBlue: "#C4A9FF" - brightMagenta: "#FF8FB2" - brightCyan: "#70E0E0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 100.7 - black: 0 - red: 45.1 - green: 49.5 - yellow: 84.8 - blue: 45.4 - magenta: 50 - cyan: 66.1 - white: 100.7 - brightBlack: 40.5 - brightRed: 53.9 - brightGreen: 71.5 - brightYellow: 88.4 - brightBlue: 63 - brightMagenta: 60 - brightCyan: 76.9 - brightWhite: 107.3 diff --git a/themes/green-valley-matrix.yaml b/themes/green-valley-matrix.yaml deleted file mode 100644 index dd709eaf..00000000 --- a/themes/green-valley-matrix.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Green Valley Matrix" -source: - marketplace_id: "helciopenha.green-valley" - version: "1.0.1" - installs: 774 - rating: 5 - ratings: 1 - author: "Helcio Penha" - repo: "https://github.com/helciopenha/green-valley-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" -colors: - bg: "#121212" - fg: "#F5F5F5" - black: "#21222C" - red: "#FF5C57" - green: "#00E185" - yellow: "#FFD866" - blue: "#A480FF" - magenta: "#00B46E" - cyan: "#25D0D0" - white: "#F5F5F5" - brightBlack: "#7A8C99" - brightRed: "#FFBFB3" - brightGreen: "#B9FFB3" - brightYellow: "#FFFFB3" - brightBlue: "#BFB3FF" - brightMagenta: "#FFB3D9" - brightCyan: "#B3FFF2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 100.7 - black: 0 - red: 45.1 - green: 71.5 - yellow: 84.8 - blue: 45.4 - magenta: 49.5 - cyan: 66.1 - white: 100.7 - brightBlack: 38.8 - brightRed: 76.4 - brightGreen: 96 - brightYellow: 104.4 - brightBlue: 66 - brightMagenta: 73.5 - brightCyan: 97.9 - brightWhite: 107.3 diff --git a/themes/green-valley-midnight.yaml b/themes/green-valley-midnight.yaml deleted file mode 100644 index 890859a4..00000000 --- a/themes/green-valley-midnight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Green Valley Midnight" -source: - marketplace_id: "helciopenha.green-valley" - version: "1.0.1" - installs: 774 - rating: 5 - ratings: 1 - author: "Helcio Penha" - repo: "https://github.com/helciopenha/green-valley-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" -colors: - bg: "#F5F5F5" - fg: "#333333" - black: "#000000" - red: "#DE3A3A" - green: "#00B46E" - yellow: "#D9BC4A" - blue: "#186CE0" - magenta: "#A345B7" - cyan: "#00965B" - white: "#CCCCCC" - brightBlack: "#666666" - brightRed: "#FF4E4E" - brightGreen: "#33C88A" - brightYellow: "#E9D16C" - brightBlue: "#3A9CFF" - brightMagenta: "#CF73E6" - brightCyan: "#00D880" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.7 - black: 100.1 - red: 63.1 - green: 45.8 - yellow: 29.2 - blue: 67.5 - magenta: 68.7 - cyan: 59 - white: 21.3 - brightBlack: 72.8 - brightRed: 52.6 - brightGreen: 35.8 - brightYellow: 18.2 - brightBlue: 48.1 - brightMagenta: 48.9 - brightCyan: 29.1 - brightWhite: 0 diff --git a/themes/green-valley-mint.yaml b/themes/green-valley-mint.yaml deleted file mode 100644 index 77b5b01c..00000000 --- a/themes/green-valley-mint.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Green Valley Mint" -source: - marketplace_id: "helciopenha.green-valley" - version: "1.0.1" - installs: 774 - rating: 5 - ratings: 1 - author: "Helcio Penha" - repo: "https://github.com/helciopenha/green-valley-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" -colors: - bg: "#F7F7F7" - fg: "#1A1A1A" - black: "#F0F0F0" - red: "#CF2929" - green: "#00A362" - yellow: "#B58A00" - blue: "#7748B7" - magenta: "#D1336C" - cyan: "#008C99" - white: "#1A1A1A" - brightBlack: "#5AAD88" - brightRed: "#E74E4E" - brightGreen: "#00B974" - brightYellow: "#D6A81F" - brightBlue: "#9B75D7" - brightMagenta: "#E55A87" - brightCyan: "#1CADB7" - brightWhite: "#333333" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99.5 - black: 0 - red: 69.5 - green: 54.6 - yellow: 53.9 - blue: 75.6 - magenta: 67 - cyan: 62.2 - white: 99.5 - brightBlack: 47.5 - brightRed: 59.2 - brightGreen: 44.7 - brightYellow: 38.6 - brightBlue: 58.1 - brightMagenta: 56.1 - brightCyan: 47.5 - brightWhite: 93.9 diff --git a/themes/green-valley-neo.yaml b/themes/green-valley-neo.yaml deleted file mode 100644 index 70ef4785..00000000 --- a/themes/green-valley-neo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Green Valley Neo" -source: - marketplace_id: "helciopenha.green-valley" - version: "1.0.1" - installs: 774 - rating: 5 - ratings: 1 - author: "Helcio Penha" - repo: "https://github.com/helciopenha/green-valley-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" -colors: - bg: "#121212" - fg: "#F5F5F5" - black: "#21222C" - red: "#FF5C57" - green: "#00B46E" - yellow: "#FFD866" - blue: "#A480FF" - magenta: "#FF6B9D" - cyan: "#25D0D0" - white: "#F5F5F5" - brightBlack: "#7A8C99" - brightRed: "#FF8078" - brightGreen: "#00E185" - brightYellow: "#FFDF85" - brightBlue: "#C4A9FF" - brightMagenta: "#FF8FB2" - brightCyan: "#70E0E0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 100.7 - black: 0 - red: 45.1 - green: 49.5 - yellow: 84.8 - blue: 45.4 - magenta: 50 - cyan: 66.1 - white: 100.7 - brightBlack: 38.8 - brightRed: 53.9 - brightGreen: 71.5 - brightYellow: 88.4 - brightBlue: 63 - brightMagenta: 60 - brightCyan: 76.9 - brightWhite: 107.3 diff --git a/themes/green-water.yaml b/themes/green-water.yaml index c11e14f7..61f741ee 100644 --- a/themes/green-water.yaml +++ b/themes/green-water.yaml @@ -8,6 +8,7 @@ source: author: "Green-Water-Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Green-Water-Theme.green-water" + formats: null colors: bg: "#18181B" fg: "#FFFFFF" diff --git a/themes/green-yow.yaml b/themes/green-yow.yaml index 7970113d..b7d6ad24 100644 --- a/themes/green-yow.yaml +++ b/themes/green-yow.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AufaRijal.green-yow" version: "0.0.1" installs: 251 + rating: 0 + ratings: 0 author: "Aufa Rijal" repo: "https://github.com/aufarijaal/green-yow" url: "https://marketplace.visualstudio.com/items?itemName=AufaRijal.green-yow" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/green.yaml b/themes/green.yaml index 1832671f..27d69ddc 100644 --- a/themes/green.yaml +++ b/themes/green.yaml @@ -8,6 +8,7 @@ source: author: "natecrow" repo: "https://github.com/natecrow/consonance-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" + formats: null colors: bg: "#111111" fg: "#BCC8D9" diff --git a/themes/green500.yaml b/themes/green500.yaml index ca0bbe1d..9aef8c69 100644 --- a/themes/green500.yaml +++ b/themes/green500.yaml @@ -8,6 +8,7 @@ source: author: "ArturGuedx" repo: "https://github.com/ArturGuedes/green500" url: "https://marketplace.visualstudio.com/items?itemName=ArturGuedx.green500" + formats: null colors: bg: "#060606" fg: "#F5F5F5" diff --git a/themes/greenbreeze-dark.yaml b/themes/greenbreeze-dark.yaml index 4e4078af..1532a752 100644 --- a/themes/greenbreeze-dark.yaml +++ b/themes/greenbreeze-dark.yaml @@ -8,6 +8,7 @@ source: author: "icy9ptcl" repo: "https://github.com/Icy9ptcl/GreenBreeze-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=icy9ptcl.greenbreeze-dark" + formats: null colors: bg: "#242C24" fg: "#F6F6F6" diff --git a/themes/greenbreeze-light.yaml b/themes/greenbreeze-light.yaml index 79452ed7..e5e74ec3 100644 --- a/themes/greenbreeze-light.yaml +++ b/themes/greenbreeze-light.yaml @@ -8,6 +8,7 @@ source: author: "icy9ptcl" repo: "https://github.com/Icy9ptcl/GreenBreeze-Light-Theme" url: "https://marketplace.visualstudio.com/items?itemName=icy9ptcl.greenbreeze-light" + formats: null colors: bg: "#F3F3F3" fg: "#282828" diff --git a/themes/greenbyte-dark.yaml b/themes/greenbyte-dark.yaml index 42b20ea4..90491de0 100644 --- a/themes/greenbyte-dark.yaml +++ b/themes/greenbyte-dark.yaml @@ -8,6 +8,7 @@ source: author: "mmnalaka" repo: "https://github.com/mmNalaka/greenbyte" url: "https://marketplace.visualstudio.com/items?itemName=mmnalaka.greenbyte" + formats: null colors: bg: "#191D22" fg: "#ABB2BF" diff --git a/themes/greencloud.yaml b/themes/greencloud.yaml index de11949a..6fd5ba70 100644 --- a/themes/greencloud.yaml +++ b/themes/greencloud.yaml @@ -8,6 +8,7 @@ source: author: "Gaurav Sinha" repo: "https://github.com/gauravsinhaweb/greencloud" url: "https://marketplace.visualstudio.com/items?itemName=GauravSinha.greencloud" + formats: null colors: bg: "#001F26" fg: "#FFFFFF" diff --git a/themes/greeney-v2.yaml b/themes/greeney-v2.yaml index 107cdd4f..980e933a 100644 --- a/themes/greeney-v2.yaml +++ b/themes/greeney-v2.yaml @@ -8,6 +8,7 @@ source: author: "Lakshay Bhushan" repo: "https://github.com/lakshaybhushan/greeney-theme" url: "https://marketplace.visualstudio.com/items?itemName=LakshayBhushan.greeney-theme" + formats: null colors: bg: "#021C23" fg: "#00FFD9" diff --git a/themes/greeney.yaml b/themes/greeney.yaml index b95ace02..35c7bbc6 100644 --- a/themes/greeney.yaml +++ b/themes/greeney.yaml @@ -8,6 +8,7 @@ source: author: "Lakshay Bhushan" repo: "https://github.com/lakshaybhushan/greeney-theme" url: "https://marketplace.visualstudio.com/items?itemName=LakshayBhushan.greeney-theme" + formats: null colors: bg: "#021C23" fg: "#00FFD9" diff --git a/themes/greeni.yaml b/themes/greeni.yaml index 66ff967b..5d1694f5 100644 --- a/themes/greeni.yaml +++ b/themes/greeni.yaml @@ -1,11 +1,14 @@ -name: "greeni" +name: "Greeni" source: marketplace_id: "jamaaldev.greeni" version: "0.1.0" installs: 124 + rating: 0 + ratings: 0 author: "jamaaldev" repo: "https://github.com/jamaaldev/greeni" url: "https://marketplace.visualstudio.com/items?itemName=jamaaldev.greeni" + formats: null colors: bg: "#0A191D" fg: "#D4D4D4" diff --git a/themes/greenish.yaml b/themes/greenish.yaml index 32bb44ad..dd076dc3 100644 --- a/themes/greenish.yaml +++ b/themes/greenish.yaml @@ -6,6 +6,7 @@ source: author: "nickmarsaw" repo: null url: "https://marketplace.visualstudio.com/items?itemName=nickmarsaw.greenish-color-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/greenmachine.yaml b/themes/greenmachine.yaml index c9527367..29cb9a0a 100644 --- a/themes/greenmachine.yaml +++ b/themes/greenmachine.yaml @@ -8,6 +8,7 @@ source: author: "ABlazingEBoy" repo: "https://github.com/GreenMachine-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=ablazingeboy.greenmachine" + formats: null colors: bg: "#111111" fg: "#D4D4D4" diff --git a/themes/greenspace.yaml b/themes/greenspace.yaml index d3a63a94..38f917a2 100644 --- a/themes/greenspace.yaml +++ b/themes/greenspace.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/BlueSpaceVSC" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.bluespace" + formats: null colors: bg: "#131620" fg: "#CDCDCD" diff --git a/themes/grewee-colorscheme.yaml b/themes/grewee-colorscheme.yaml index 05a79097..283982c1 100644 --- a/themes/grewee-colorscheme.yaml +++ b/themes/grewee-colorscheme.yaml @@ -8,6 +8,7 @@ source: author: "Salledelavage" repo: "https://github.com/grosheth/grewee-colorsheme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Salledelavage.grewee" + formats: null colors: bg: "#1C2023" fg: "#EBDAB4" diff --git a/themes/greygull.yaml b/themes/greygull.yaml index 015b9040..df86dd68 100644 --- a/themes/greygull.yaml +++ b/themes/greygull.yaml @@ -8,6 +8,7 @@ source: author: "bbrakenhoff" repo: "https://github.com/bbrakenhoff/seabird-vscode" url: "https://marketplace.visualstudio.com/items?itemName=bbrakenhoff.seabird" + formats: null colors: bg: "#FFFFFF" fg: "#6D767D" diff --git a/themes/greyout.yaml b/themes/greyout.yaml deleted file mode 100644 index b17d2091..00000000 --- a/themes/greyout.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Greyout" -source: - marketplace_id: "Eses.greyout" - version: "0.0.6" - installs: 2034 - rating: 4.5 - ratings: 2 - author: "Eses" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Eses.greyout" -colors: - bg: "#E8EBEC" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 93.9 - black: 93.9 - red: 61.8 - green: 37.1 - yellow: 45.7 - blue: 73.9 - magenta: 62.4 - cyan: 48.4 - white: 73.8 - brightBlack: 66.6 - brightRed: 61.8 - brightGreen: 28.7 - brightYellow: 28.8 - brightBlue: 73.9 - brightMagenta: 62.4 - brightCyan: 48.4 - brightWhite: 36.3 diff --git a/themes/greystillplays.yaml b/themes/greystillplays.yaml index e3c9cfe9..0a7a7164 100644 --- a/themes/greystillplays.yaml +++ b/themes/greystillplays.yaml @@ -8,6 +8,7 @@ source: author: "Jared Best" repo: "https://github.com/jaredbest/greystillplays-vscode" url: "https://marketplace.visualstudio.com/items?itemName=jaredbest.greystillplays-vscode" + formats: null colors: bg: "#242424" fg: "#A3A3A3" diff --git a/themes/grimoire-nox.yaml b/themes/grimoire-nox.yaml deleted file mode 100644 index 519c9f98..00000000 --- a/themes/grimoire-nox.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Grimoire Nox" -source: - marketplace_id: "NathanEdwards.grimoire" - version: "0.1.0" - installs: 1037 - rating: 5 - ratings: 2 - author: "Nathan Edwards" - repo: "https://github.com/nathan-edwards/grimoire" - url: "https://marketplace.visualstudio.com/items?itemName=NathanEdwards.grimoire" -colors: - bg: "#24262E" - fg: "#E0DCE8" - black: "#302F3D" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#B6B3CC" - brightBlack: "#504E65" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#C5C2D6" -meta: - mode: "dark" - accent: "orange" - hue: 274 - pair: null - contrast: - fg: 83.4 - black: 0 - red: 38.4 - green: 74.8 - yellow: 64.9 - blue: 49.9 - magenta: 43.5 - cyan: 68.4 - white: 59.5 - brightBlack: 11.2 - brightRed: 43.6 - brightGreen: 77.1 - brightYellow: 51.7 - brightBlue: 55.1 - brightMagenta: 55.9 - brightCyan: 71.7 - brightWhite: 67.9 diff --git a/themes/grimoire.yaml b/themes/grimoire.yaml index 0f397a66..e9dc2335 100644 --- a/themes/grimoire.yaml +++ b/themes/grimoire.yaml @@ -8,6 +8,7 @@ source: author: "Gabriele Meucci" repo: "https://github.com/walele993/fable_a_vsc_theme" url: "https://marketplace.visualstudio.com/items?itemName=walele993.fable-code-theme" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/grove-street-noir.yaml b/themes/grove-street-noir.yaml index 5f8a7366..dd7e5cb5 100644 --- a/themes/grove-street-noir.yaml +++ b/themes/grove-street-noir.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#202415" fg: "#E1F5E5" diff --git a/themes/gru-black.yaml b/themes/gru-black.yaml deleted file mode 100644 index 3a47c501..00000000 --- a/themes/gru-black.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gru Black" -source: - marketplace_id: "Silitonix.gru" - version: "0.1.1" - installs: 924 - rating: 5 - ratings: 2 - author: "Silitonix" - repo: "https://github.com/Silitonix/GruTheme" - url: "https://marketplace.visualstudio.com/items?itemName=Silitonix.gru" -colors: - bg: "#000000" - fg: "#CCCCCC" - black: "#000000" - red: "#EA6962" - green: "#A9B665" - yellow: "#E78A4E" - blue: "#7DAEA3" - magenta: "#D3869B" - cyan: "#89B482" - white: "#928374" - brightBlack: "#484848" - brightRed: "#EA6962" - brightGreen: "#A9B665" - brightYellow: "#E78A4E" - brightBlue: "#7DAEA3" - brightMagenta: "#D3869B" - brightCyan: "#89B482" - brightWhite: "#D4BE98" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 75.7 - black: 0 - red: 44 - green: 59 - yellow: 51.8 - blue: 53.2 - magenta: 49 - cyan: 55.7 - white: 37.4 - brightBlack: 11.3 - brightRed: 44 - brightGreen: 59 - brightYellow: 51.8 - brightBlue: 53.2 - brightMagenta: 49 - brightCyan: 55.7 - brightWhite: 69 diff --git a/themes/gruber-blue.yaml b/themes/gruber-blue.yaml index bab46239..6f38be3d 100644 --- a/themes/gruber-blue.yaml +++ b/themes/gruber-blue.yaml @@ -8,6 +8,7 @@ source: author: "Hazem" repo: "https://github.com/Hazem-BenAbdelhafidh/Gruber-blue" url: "https://marketplace.visualstudio.com/items?itemName=Hazem.gruber-blue" + formats: null colors: bg: "#1A1A1A" fg: "#FFFFFF" diff --git a/themes/grumbra.yaml b/themes/grumbra.yaml index 7373c832..642d7106 100644 --- a/themes/grumbra.yaml +++ b/themes/grumbra.yaml @@ -8,6 +8,7 @@ source: author: "Cydo" repo: "https://github.com/CydoEntis/reThemes" url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" + formats: null colors: bg: "#1B1B1B" fg: "#CCCCCC" diff --git a/themes/grunboxtheme.yaml b/themes/grunboxtheme.yaml deleted file mode 100644 index 4e78264e..00000000 --- a/themes/grunboxtheme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GrunBoxTheme" -source: - marketplace_id: "Ransh.ransh" - version: "0.0.1" - installs: 50567 - rating: 3 - ratings: 2 - author: "Ransh" - repo: "https://github.com/1466690577/gruvbox_theme_for_vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Ransh.ransh" -colors: - bg: "#282828" - fg: "#EBDAB4" - black: "#3C3836" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#84A598" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#F84B3C" - brightGreen: "#B8BA37" - brightYellow: "#F9BC41" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#8FBF7F" - brightWhite: "#EBDAB4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 81.6 - black: 0 - red: 22.8 - green: 40.5 - yellow: 50.1 - blue: 46.3 - magenta: 29.3 - cyan: 39.5 - white: 44.8 - brightBlack: 33.9 - brightRed: 37.4 - brightGreen: 58.4 - brightYellow: 68.9 - brightBlue: 46.2 - brightMagenta: 45.5 - brightCyan: 57.4 - brightWhite: 81.6 diff --git a/themes/grunge-contrast.yaml b/themes/grunge-contrast.yaml deleted file mode 100644 index 79c612d0..00000000 --- a/themes/grunge-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "grunge-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0C0C0A" - fg: "#F8F8F2" - black: "#1A1A16" - red: "#BA0E2E" - green: "#D1F2A5" - yellow: "#F56991" - blue: "#FFC48C" - magenta: "#91A374" - cyan: "#FFC48C" - white: "#FFFFFF" - brightBlack: "#444438" - brightRed: "#F03E5F" - brightGreen: "#FFFFFE" - brightYellow: "#FBC9D7" - brightBlue: "#FFF8F2" - brightMagenta: "#C2CCB1" - brightCyan: "#FFF8F2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.8 - black: 0 - red: 21.3 - green: 92 - yellow: 47.4 - blue: 77.6 - magenta: 48.8 - cyan: 77.6 - white: 107.7 - brightBlack: 9.3 - brightRed: 37.6 - brightGreen: 107.6 - brightYellow: 81.5 - brightBlue: 103.8 - brightMagenta: 73.2 - brightCyan: 103.8 - brightWhite: 107.7 diff --git a/themes/grunge-light.yaml b/themes/grunge-light.yaml deleted file mode 100644 index ddc67af3..00000000 --- a/themes/grunge-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "grunge-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#F8F8F2" - fg: "#31332C" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#ABC687" - yellow: "#F56991" - blue: "#FFC48C" - magenta: "#91A374" - cyan: "#FFC48C" - white: "#3E4138" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#DBE7CC" - brightYellow: "#FBC9D7" - brightBlue: "#FFF8F2" - brightMagenta: "#C2CCB1" - brightCyan: "#FFF8F2" - brightWhite: "#666A5B" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.5 - black: 0 - red: 75.9 - green: 31.2 - yellow: 49.8 - blue: 20.8 - magenta: 48.4 - cyan: 20.8 - white: 89.7 - brightBlack: 0 - brightRed: 59.4 - brightGreen: 9.8 - brightYellow: 17.2 - brightBlue: 0 - brightMagenta: 25 - brightCyan: 0 - brightWhite: 73.4 diff --git a/themes/grunge.yaml b/themes/grunge.yaml deleted file mode 100644 index 6ba8996d..00000000 --- a/themes/grunge.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "grunge" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#31332C" - fg: "#F8F8F2" - black: "#3E4138" - red: "#BA0E2E" - green: "#D1F2A5" - yellow: "#F56991" - blue: "#FFC48C" - magenta: "#91A374" - cyan: "#FFC48C" - white: "#FFFFFF" - brightBlack: "#666A5B" - brightRed: "#F03E5F" - brightGreen: "#FFFFFE" - brightYellow: "#FBC9D7" - brightBlue: "#FFF8F2" - brightMagenta: "#C2CCB1" - brightCyan: "#FFF8F2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 120 - pair: null - contrast: - fg: 97.3 - black: 0 - red: 15.9 - green: 86.6 - yellow: 41.9 - blue: 72.2 - magenta: 43.4 - cyan: 72.2 - white: 102.3 - brightBlack: 18.3 - brightRed: 32.2 - brightGreen: 102.2 - brightYellow: 76.1 - brightBlue: 98.3 - brightMagenta: 67.7 - brightCyan: 98.3 - brightWhite: 102.3 diff --git a/themes/grusper.yaml b/themes/grusper.yaml index 8752031e..75a393e0 100644 --- a/themes/grusper.yaml +++ b/themes/grusper.yaml @@ -8,6 +8,7 @@ source: author: "Edward" repo: "https://github.com/T-450/grusper-vscode" url: "https://marketplace.visualstudio.com/items?itemName=T450.grusper-theme" + formats: null colors: bg: "#1A1917" fg: "#FFFFFF" diff --git a/themes/gruvalized-dark.yaml b/themes/gruvalized-dark.yaml index 4c4c1fe2..12cea568 100644 --- a/themes/gruvalized-dark.yaml +++ b/themes/gruvalized-dark.yaml @@ -3,9 +3,13 @@ source: marketplace_id: "odlot-marco-lutz.gruvalized" version: "0.0.3" installs: 91 + rating: 0 + ratings: 0 author: "Marco Lutz" repo: "https://github.com/odlot/gruvalized" url: "https://marketplace.visualstudio.com/items?itemName=odlot-marco-lutz.gruvalized" + formats: + zed: "https://raw.githubusercontent.com/odlot/gruvalized/main/themes/gruvalized-dark-color-theme.json" colors: bg: "#1D2021" fg: "#FBF1C7" diff --git a/themes/gruvalized-light.yaml b/themes/gruvalized-light.yaml index dfe1f853..ef62ec3a 100644 --- a/themes/gruvalized-light.yaml +++ b/themes/gruvalized-light.yaml @@ -3,9 +3,13 @@ source: marketplace_id: "odlot-marco-lutz.gruvalized" version: "0.0.3" installs: 91 + rating: 0 + ratings: 0 author: "Marco Lutz" repo: "https://github.com/odlot/gruvalized" url: "https://marketplace.visualstudio.com/items?itemName=odlot-marco-lutz.gruvalized" + formats: + zed: "https://raw.githubusercontent.com/odlot/gruvalized/main/themes/gruvalized-dark-color-theme.json" colors: bg: "#FAF5E7" fg: "#1A1A1A" diff --git a/themes/gruvbox-dark-anhoder.yaml b/themes/gruvbox-dark-anhoder.yaml deleted file mode 100644 index 08f68b3b..00000000 --- a/themes/gruvbox-dark-anhoder.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox Dark Anhoder" -source: - marketplace_id: "anhoder.gruvbox-anhoder" - version: "1.8.6" - installs: 3783 - rating: 5 - ratings: 1 - author: "anhoder" - repo: "https://github.com/anhoder/vscode-theme-gruvbox" - url: "https://marketplace.visualstudio.com/items?itemName=anhoder.gruvbox-anhoder" -colors: - bg: "#282828" - fg: "#EBDBB2" - black: "#3C3836" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#FB4934" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#8EC07C" - brightWhite: "#EBDBB2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 81.9 - black: 0 - red: 22.8 - green: 40.5 - yellow: 50.1 - blue: 29.1 - magenta: 29.3 - cyan: 39.5 - white: 44.8 - brightBlack: 33.9 - brightRed: 37.7 - brightGreen: 58.7 - brightYellow: 69.4 - brightBlue: 46.2 - brightMagenta: 45.5 - brightCyan: 57.7 - brightWhite: 81.9 diff --git a/themes/gruvbox-drakenlords-dark-draken.yaml b/themes/gruvbox-drakenlords-dark-draken.yaml deleted file mode 100644 index 0dea6bad..00000000 --- a/themes/gruvbox-drakenlords-dark-draken.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox DrakenLords Dark Draken" -source: - marketplace_id: "DrakenLords.gruvbox-draken-lords" - version: "1.5.5" - installs: 8900 - rating: 5 - ratings: 1 - author: "DrakenLords" - repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" - url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" -colors: - bg: "#031417" - fg: "#EBDBB2" - black: "#1D2021" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#EBDBB2" - brightBlack: "#665C54" - brightRed: "#FB4934" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#8EC07C" - brightWhite: "#FBF1C7" -meta: - mode: "dark" - accent: "orange" - hue: 209 - pair: null - contrast: - fg: 84.8 - black: 0 - red: 25.7 - green: 43.3 - yellow: 52.9 - blue: 32 - magenta: 32.1 - cyan: 42.3 - white: 84.8 - brightBlack: 19 - brightRed: 40.6 - brightGreen: 61.6 - brightYellow: 72.2 - brightBlue: 49 - brightMagenta: 48.4 - brightCyan: 60.5 - brightWhite: 97.8 diff --git a/themes/gruvbox-drakenlords-dark.yaml b/themes/gruvbox-drakenlords-dark.yaml index cd4b5539..e8cec71a 100644 --- a/themes/gruvbox-drakenlords-dark.yaml +++ b/themes/gruvbox-drakenlords-dark.yaml @@ -8,6 +8,7 @@ source: author: "RickIsGone" repo: "https://github.com/RickIsGone/Gruvbox" url: "https://marketplace.visualstudio.com/items?itemName=RickIsGone.rickisgone-gruvbox" + formats: null colors: bg: "#161819" fg: "#EBDBB2" diff --git a/themes/gruvbox-drakenlords-grey.yaml b/themes/gruvbox-drakenlords-grey.yaml deleted file mode 100644 index eefcf3f9..00000000 --- a/themes/gruvbox-drakenlords-grey.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox DrakenLords Grey" -source: - marketplace_id: "DrakenLords.gruvbox-draken-lords" - version: "1.5.5" - installs: 8900 - rating: 5 - ratings: 1 - author: "DrakenLords" - repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" - url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" -colors: - bg: "#3C3836" - fg: "#EBDBB2" - black: "#1D2021" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#EBDBB2" - brightBlack: "#665C54" - brightRed: "#FB4934" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#8EC07C" - brightWhite: "#FBF1C7" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 77.9 - black: 0 - red: 18.8 - green: 36.4 - yellow: 46 - blue: 25.1 - magenta: 25.2 - cyan: 35.4 - white: 77.9 - brightBlack: 12.1 - brightRed: 33.7 - brightGreen: 54.7 - brightYellow: 65.3 - brightBlue: 42.1 - brightMagenta: 41.5 - brightCyan: 53.6 - brightWhite: 90.9 diff --git a/themes/gruvbox-drakenlords-semi-dark.yaml b/themes/gruvbox-drakenlords-semi-dark.yaml deleted file mode 100644 index fea07a0c..00000000 --- a/themes/gruvbox-drakenlords-semi-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox DrakenLords Semi Dark" -source: - marketplace_id: "DrakenLords.gruvbox-draken-lords" - version: "1.5.5" - installs: 8900 - rating: 5 - ratings: 1 - author: "DrakenLords" - repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" - url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" -colors: - bg: "#282828" - fg: "#EBDBB2" - black: "#1D2021" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#EBDBB2" - brightBlack: "#665C54" - brightRed: "#FB4934" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#8EC07C" - brightWhite: "#FBF1C7" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 81.9 - black: 0 - red: 22.8 - green: 40.5 - yellow: 50.1 - blue: 29.1 - magenta: 29.3 - cyan: 39.5 - white: 81.9 - brightBlack: 16.1 - brightRed: 37.7 - brightGreen: 58.7 - brightYellow: 69.4 - brightBlue: 46.2 - brightMagenta: 45.5 - brightCyan: 57.7 - brightWhite: 94.9 diff --git a/themes/gruvbox-ish-dark-hard.yaml b/themes/gruvbox-ish-dark-hard.yaml deleted file mode 100644 index 9f6ae4bb..00000000 --- a/themes/gruvbox-ish-dark-hard.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox ish Dark Hard" -source: - marketplace_id: "GracefulPotato.gruvbox-ish" - version: "0.8.0" - installs: 14935 - rating: 5 - ratings: 3 - author: "GracefulPotato" - repo: "https://github.com/graceful-potato/gruvbox-ish" - url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" -colors: - bg: "#1D2021" - fg: "#DFBF8E" - black: "#282828" - red: "#D75F5F" - green: "#A8A81C" - yellow: "#D69617" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#D75F5F" - brightGreen: "#8B9553" - brightYellow: "#CEA64A" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#87AF87" - brightWhite: "#DFBF8E" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 68.7 - black: 0 - red: 35.8 - green: 50.4 - yellow: 50.2 - blue: 30.5 - magenta: 30.7 - cyan: 40.9 - white: 46.2 - brightBlack: 35.3 - brightRed: 35.8 - brightGreen: 40.3 - brightYellow: 55.1 - brightBlue: 47.6 - brightMagenta: 46.9 - brightCyan: 51.5 - brightWhite: 68.7 diff --git a/themes/gruvbox-ish-dark-medium.yaml b/themes/gruvbox-ish-dark-medium.yaml deleted file mode 100644 index d3318868..00000000 --- a/themes/gruvbox-ish-dark-medium.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox ish Dark Medium" -source: - marketplace_id: "GracefulPotato.gruvbox-ish" - version: "0.8.0" - installs: 14935 - rating: 5 - ratings: 3 - author: "GracefulPotato" - repo: "https://github.com/graceful-potato/gruvbox-ish" - url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" -colors: - bg: "#282828" - fg: "#DFBF8E" - black: "#32302F" - red: "#D75F5F" - green: "#A8A81C" - yellow: "#D69617" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#D75F5F" - brightGreen: "#8B9553" - brightYellow: "#CEA64A" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#87AF87" - brightWhite: "#DFBF8E" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 67.3 - black: 0 - red: 34.4 - green: 49 - yellow: 48.8 - blue: 29.1 - magenta: 29.3 - cyan: 39.5 - white: 44.8 - brightBlack: 33.9 - brightRed: 34.4 - brightGreen: 38.9 - brightYellow: 53.7 - brightBlue: 46.2 - brightMagenta: 45.5 - brightCyan: 50.1 - brightWhite: 67.3 diff --git a/themes/gruvbox-ish-dark-soft.yaml b/themes/gruvbox-ish-dark-soft.yaml deleted file mode 100644 index 860d6450..00000000 --- a/themes/gruvbox-ish-dark-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox ish Dark Soft" -source: - marketplace_id: "GracefulPotato.gruvbox-ish" - version: "0.8.0" - installs: 14935 - rating: 5 - ratings: 3 - author: "GracefulPotato" - repo: "https://github.com/graceful-potato/gruvbox-ish" - url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" -colors: - bg: "#32302F" - fg: "#DFBF8E" - black: "#3C3836" - red: "#D75F5F" - green: "#A8A81C" - yellow: "#D69617" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#D75F5F" - brightGreen: "#8B9553" - brightYellow: "#CEA64A" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#87AF87" - brightWhite: "#DFBF8E" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 65.5 - black: 0 - red: 32.6 - green: 47.2 - yellow: 47.1 - blue: 27.4 - magenta: 27.5 - cyan: 37.7 - white: 43 - brightBlack: 32.2 - brightRed: 32.6 - brightGreen: 37.1 - brightYellow: 51.9 - brightBlue: 44.4 - brightMagenta: 43.8 - brightCyan: 48.3 - brightWhite: 65.5 diff --git a/themes/gruvbox-light-medium.yaml b/themes/gruvbox-light-medium.yaml deleted file mode 100644 index 0373aa66..00000000 --- a/themes/gruvbox-light-medium.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox Light Medium" -source: - marketplace_id: "capturedsun.CapturedSunTheme" - version: "1.0.1" - installs: 422 - rating: 0 - ratings: 0 - author: "Captured Sun" - repo: "https://github.com/capturedsun/gruvbox" - url: "https://marketplace.visualstudio.com/items?itemName=capturedsun.CapturedSunTheme" -colors: - bg: "#FBF1C7" - fg: "#3C3836" - black: "#EBDBB2" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#7C6F64" - brightBlack: "#928374" - brightRed: "#9D0006" - brightGreen: "#79740E" - brightYellow: "#B57614" - brightBlue: "#076678" - brightMagenta: "#8F3F71" - brightCyan: "#427B58" - brightWhite: "#3C3836" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 88.1 - black: 9.5 - red: 66.8 - green: 49.2 - yellow: 39.9 - blue: 60.5 - magenta: 60.3 - cyan: 50.2 - white: 65.1 - brightBlack: 55.7 - brightRed: 78.4 - brightGreen: 65 - brightYellow: 56.3 - brightBlue: 73.6 - brightMagenta: 74.1 - brightCyan: 65.8 - brightWhite: 88.1 diff --git a/themes/gruvbox-light-soft.yaml b/themes/gruvbox-light-soft.yaml deleted file mode 100644 index 8490dca5..00000000 --- a/themes/gruvbox-light-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox Light Soft" -source: - marketplace_id: "capturedsun.CapturedSunTheme" - version: "1.0.1" - installs: 422 - rating: 0 - ratings: 0 - author: "Captured Sun" - repo: "https://github.com/capturedsun/gruvbox" - url: "https://marketplace.visualstudio.com/items?itemName=capturedsun.CapturedSunTheme" -colors: - bg: "#F2E5BC" - fg: "#3C3836" - black: "#EBDBB2" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#7C6F64" - brightBlack: "#928374" - brightRed: "#9D0006" - brightGreen: "#79740E" - brightYellow: "#B57614" - brightBlue: "#076678" - brightMagenta: "#8F3F71" - brightCyan: "#427B58" - brightWhite: "#3C3836" -meta: - mode: "light" - accent: "orange" - hue: 93 - pair: null - contrast: - fg: 81.5 - black: 0 - red: 60.3 - green: 42.6 - yellow: 33.3 - blue: 53.9 - magenta: 53.8 - cyan: 43.6 - white: 58.6 - brightBlack: 49.1 - brightRed: 71.8 - brightGreen: 58.4 - brightYellow: 49.8 - brightBlue: 67 - brightMagenta: 67.5 - brightCyan: 59.2 - brightWhite: 81.5 diff --git a/themes/gruvbox-material-dark-claude-hybrid.yaml b/themes/gruvbox-material-dark-claude-hybrid.yaml index 4fe06c6f..4bf40ac7 100644 --- a/themes/gruvbox-material-dark-claude-hybrid.yaml +++ b/themes/gruvbox-material-dark-claude-hybrid.yaml @@ -8,6 +8,7 @@ source: author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" + formats: null colors: bg: "#282828" fg: "#D4BE98" diff --git a/themes/gruvbox-material-dark.yaml b/themes/gruvbox-material-dark.yaml deleted file mode 100644 index c6588400..00000000 --- a/themes/gruvbox-material-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox Material Dark" -source: - marketplace_id: "sainnhe.gruvbox-material" - version: "6.5.2" - installs: 328140 - rating: 4.92 - ratings: 39 - author: "sainnhe" - repo: "https://github.com/sainnhe/gruvbox-material-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.gruvbox-material" -colors: - bg: "#292828" - fg: "#D4BE98" - black: "#32302F" - red: "#EA6962" - green: "#A9B665" - yellow: "#D8A657" - blue: "#7DAEA3" - magenta: "#D3869B" - cyan: "#89B482" - white: "#D4BE98" - brightBlack: "#928374" - brightRed: "#EA6962" - brightGreen: "#A9B665" - brightYellow: "#D8A657" - brightBlue: "#7DAEA3" - brightMagenta: "#D3869B" - brightCyan: "#89B482" - brightWhite: "#DDC7A1" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Gruvbox Material Light" - contrast: - fg: 65.5 - black: 0 - red: 40.5 - green: 55.5 - yellow: 55.3 - blue: 49.7 - magenta: 45.5 - cyan: 52.2 - white: 65.5 - brightBlack: 33.9 - brightRed: 40.5 - brightGreen: 55.5 - brightYellow: 55.3 - brightBlue: 49.7 - brightMagenta: 45.5 - brightCyan: 52.2 - brightWhite: 70.8 diff --git a/themes/gruvbox-material-flat-dark.yaml b/themes/gruvbox-material-flat-dark.yaml deleted file mode 100644 index e8057c02..00000000 --- a/themes/gruvbox-material-flat-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox Material Flat Dark" -source: - marketplace_id: "GrzegorzKozub.gruvbox-material-flat" - version: "0.2.8" - installs: 687 - rating: 0 - ratings: 0 - author: "greg" - repo: "https://github.com/GrzegorzKozub/gruvbox-material-flat" - url: "https://marketplace.visualstudio.com/items?itemName=GrzegorzKozub.gruvbox-material-flat" -colors: - bg: "#32302F" - fg: "#D4BE98" - black: "#3C3836" - red: "#C14A4A" - green: "#6C782E" - yellow: "#B47109" - blue: "#45707A" - magenta: "#945E80" - cyan: "#4C7A5D" - white: "#928374" - brightBlack: "#665C54" - brightRed: "#EA6962" - brightGreen: "#A9B665" - brightYellow: "#D8A657" - brightBlue: "#7DAEA3" - brightMagenta: "#D3869B" - brightCyan: "#89B482" - brightWhite: "#D4BE98" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Gruvbox Material Flat Light" - contrast: - fg: 63.8 - black: 0 - red: 23.8 - green: 23.2 - yellow: 29.9 - blue: 19.4 - magenta: 21.9 - cyan: 22.4 - white: 32.2 - brightBlack: 14.4 - brightRed: 38.8 - brightGreen: 53.8 - brightYellow: 53.6 - brightBlue: 48 - brightMagenta: 43.8 - brightCyan: 50.4 - brightWhite: 63.8 diff --git a/themes/gruvbox-material-flat-light.yaml b/themes/gruvbox-material-flat-light.yaml deleted file mode 100644 index f8c57787..00000000 --- a/themes/gruvbox-material-flat-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox Material Flat Light" -source: - marketplace_id: "GrzegorzKozub.gruvbox-material-flat" - version: "0.2.8" - installs: 687 - rating: 0 - ratings: 0 - author: "greg" - repo: "https://github.com/GrzegorzKozub/gruvbox-material-flat" - url: "https://marketplace.visualstudio.com/items?itemName=GrzegorzKozub.gruvbox-material-flat" -colors: - bg: "#F2E5BC" - fg: "#654735" - black: "#EBDBB2" - red: "#C14A4A" - green: "#6C782E" - yellow: "#B47109" - blue: "#45707A" - magenta: "#945E80" - cyan: "#4C7A5D" - white: "#928374" - brightBlack: "#BDAE93" - brightRed: "#B85651" - brightGreen: "#8F9A52" - brightYellow: "#C18F41" - brightBlue: "#68948A" - brightMagenta: "#AB6C7D" - brightCyan: "#72966C" - brightWhite: "#654735" -meta: - mode: "light" - accent: "orange" - hue: 93 - pair: "Gruvbox Material Flat Dark" - contrast: - fg: 73.6 - black: 0 - red: 57.5 - green: 58.1 - yellow: 51.4 - blue: 61.9 - magenta: 59.5 - cyan: 59 - white: 49.1 - brightBlack: 27.7 - brightRed: 56.8 - brightGreen: 42 - brightYellow: 39.8 - brightBlue: 46.2 - brightMagenta: 52.5 - brightCyan: 45.6 - brightWhite: 73.6 diff --git a/themes/gruvbox-material-light.yaml b/themes/gruvbox-material-light.yaml deleted file mode 100644 index e79ebcf3..00000000 --- a/themes/gruvbox-material-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox Material Light" -source: - marketplace_id: "sainnhe.gruvbox-material" - version: "6.5.2" - installs: 328140 - rating: 4.92 - ratings: 39 - author: "sainnhe" - repo: "https://github.com/sainnhe/gruvbox-material-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.gruvbox-material" -colors: - bg: "#FBF1C7" - fg: "#654735" - black: "#4F3829" - red: "#C14A4A" - green: "#6C782E" - yellow: "#B47109" - blue: "#45707A" - magenta: "#945E80" - cyan: "#4C7A5D" - white: "#928374" - brightBlack: "#654735" - brightRed: "#C14A4A" - brightGreen: "#6C782E" - brightYellow: "#B47109" - brightBlue: "#45707A" - brightMagenta: "#945E80" - brightCyan: "#4C7A5D" - brightWhite: "#F2E5BC" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Gruvbox Material Dark" - contrast: - fg: 80.2 - black: 86.5 - red: 64.1 - green: 64.7 - yellow: 58 - blue: 68.5 - magenta: 66 - cyan: 65.5 - white: 55.7 - brightBlack: 80.2 - brightRed: 64.1 - brightGreen: 64.7 - brightYellow: 58 - brightBlue: 68.5 - brightMagenta: 66 - brightCyan: 65.5 - brightWhite: 0 diff --git a/themes/gruvbox-material-mix.yaml b/themes/gruvbox-material-mix.yaml index c066fa19..05ea2f0b 100644 --- a/themes/gruvbox-material-mix.yaml +++ b/themes/gruvbox-material-mix.yaml @@ -8,6 +8,7 @@ source: author: "nd2204" repo: "https://github.com/nd2204/vscode-gruvbox" url: "https://marketplace.visualstudio.com/items?itemName=nd2204.gruvbox-material-mix" + formats: null colors: bg: "#181818" fg: "#EBDBB2" diff --git a/themes/gruvbox-minor-dark-hard.yaml b/themes/gruvbox-minor-dark-hard.yaml deleted file mode 100644 index fb5872e8..00000000 --- a/themes/gruvbox-minor-dark-hard.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox Minor Dark Hard" -source: - marketplace_id: "sagaban.dark-gruvbox-with-italics" - version: "0.0.4" - installs: 2296 - rating: 0 - ratings: 0 - author: "Santiago Bandiera" - repo: "https://github.com/sagaban/dark-gruvbox-with-italics" - url: "https://marketplace.visualstudio.com/items?itemName=sagaban.dark-gruvbox-with-italics" -colors: - bg: "#1D2021" - fg: "#928374" - black: "#3C3836" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#FB4934" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#8EC07C" - brightWhite: "#EBDBB2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Gruvbox Minor Light Hard" - contrast: - fg: 35.3 - black: 0 - red: 24.2 - green: 41.9 - yellow: 51.5 - blue: 30.5 - magenta: 30.7 - cyan: 40.9 - white: 46.2 - brightBlack: 35.3 - brightRed: 39.1 - brightGreen: 60.1 - brightYellow: 70.8 - brightBlue: 47.6 - brightMagenta: 46.9 - brightCyan: 59.1 - brightWhite: 83.3 diff --git a/themes/gruvbox-minor-dark-medium.yaml b/themes/gruvbox-minor-dark-medium.yaml deleted file mode 100644 index 05e53092..00000000 --- a/themes/gruvbox-minor-dark-medium.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox Minor Dark Medium" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#282828" - fg: "#928374" - black: "#3C3836" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#FB4934" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#8EC07C" - brightWhite: "#EBDBB2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Gruvbox Minor Light Medium" - contrast: - fg: 33.9 - black: 0 - red: 22.8 - green: 40.5 - yellow: 50.1 - blue: 29.1 - magenta: 29.3 - cyan: 39.5 - white: 44.8 - brightBlack: 33.9 - brightRed: 37.7 - brightGreen: 58.7 - brightYellow: 69.4 - brightBlue: 46.2 - brightMagenta: 45.5 - brightCyan: 57.7 - brightWhite: 81.9 diff --git a/themes/gruvbox-minor-dark-soft.yaml b/themes/gruvbox-minor-dark-soft.yaml deleted file mode 100644 index b8d0fe1b..00000000 --- a/themes/gruvbox-minor-dark-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox Minor Dark Soft" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#32302F" - fg: "#928374" - black: "#3C3836" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#FB4934" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#8EC07C" - brightWhite: "#EBDBB2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Gruvbox Minor Light Soft" - contrast: - fg: 32.2 - black: 0 - red: 21.1 - green: 38.7 - yellow: 48.3 - blue: 27.4 - magenta: 27.5 - cyan: 37.7 - white: 43 - brightBlack: 32.2 - brightRed: 36 - brightGreen: 57 - brightYellow: 67.6 - brightBlue: 44.4 - brightMagenta: 43.8 - brightCyan: 55.9 - brightWhite: 80.2 diff --git a/themes/gruvbox-minor-light-hard.yaml b/themes/gruvbox-minor-light-hard.yaml deleted file mode 100644 index 4db3fa1b..00000000 --- a/themes/gruvbox-minor-light-hard.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox Minor Light Hard" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#F9F5D7" - fg: "#928374" - black: "#EBDBB2" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#7C6F64" - brightBlack: "#928374" - brightRed: "#9D0006" - brightGreen: "#79740E" - brightYellow: "#B57614" - brightBlue: "#076678" - brightMagenta: "#8F3F71" - brightCyan: "#427B58" - brightWhite: "#3C3836" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Gruvbox Minor Dark Hard" - contrast: - fg: 57.7 - black: 11.5 - red: 68.8 - green: 51.2 - yellow: 41.8 - blue: 62.4 - magenta: 62.3 - cyan: 52.1 - white: 67.1 - brightBlack: 57.7 - brightRed: 80.4 - brightGreen: 67 - brightYellow: 58.3 - brightBlue: 75.6 - brightMagenta: 76.1 - brightCyan: 67.8 - brightWhite: 90.1 diff --git a/themes/gruvbox-minor-light-medium.yaml b/themes/gruvbox-minor-light-medium.yaml deleted file mode 100644 index 56856ab9..00000000 --- a/themes/gruvbox-minor-light-medium.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox Minor Light Medium" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#FBF1C7" - fg: "#928374" - black: "#EBDBB2" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#7C6F64" - brightBlack: "#928374" - brightRed: "#9D0006" - brightGreen: "#79740E" - brightYellow: "#B57614" - brightBlue: "#076678" - brightMagenta: "#8F3F71" - brightCyan: "#427B58" - brightWhite: "#3C3836" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Gruvbox Minor Dark Medium" - contrast: - fg: 55.7 - black: 9.5 - red: 66.8 - green: 49.2 - yellow: 39.9 - blue: 60.5 - magenta: 60.3 - cyan: 50.2 - white: 65.1 - brightBlack: 55.7 - brightRed: 78.4 - brightGreen: 65 - brightYellow: 56.3 - brightBlue: 73.6 - brightMagenta: 74.1 - brightCyan: 65.8 - brightWhite: 88.1 diff --git a/themes/gruvbox-minor-light-soft.yaml b/themes/gruvbox-minor-light-soft.yaml deleted file mode 100644 index 07007bc3..00000000 --- a/themes/gruvbox-minor-light-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gruvbox Minor Light Soft" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#F2E5BC" - fg: "#928374" - black: "#EBDBB2" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#7C6F64" - brightBlack: "#928374" - brightRed: "#9D0006" - brightGreen: "#79740E" - brightYellow: "#B57614" - brightBlue: "#076678" - brightMagenta: "#8F3F71" - brightCyan: "#427B58" - brightWhite: "#3C3836" -meta: - mode: "light" - accent: "orange" - hue: 93 - pair: "Gruvbox Minor Dark Soft" - contrast: - fg: 49.1 - black: 0 - red: 60.3 - green: 42.6 - yellow: 33.3 - blue: 53.9 - magenta: 53.8 - cyan: 43.6 - white: 58.6 - brightBlack: 49.1 - brightRed: 71.8 - brightGreen: 58.4 - brightYellow: 49.8 - brightBlue: 67 - brightMagenta: 67.5 - brightCyan: 59.2 - brightWhite: 81.5 diff --git a/themes/gruvchad.yaml b/themes/gruvchad.yaml index cd2027a3..2a0e246c 100644 --- a/themes/gruvchad.yaml +++ b/themes/gruvchad.yaml @@ -2,12 +2,13 @@ name: "Gruvchad" source: marketplace_id: "Koujir.gruvchad" version: "0.0.1" - installs: 3463 + installs: 3465 rating: 0 ratings: 0 author: "Koujir" repo: "https://github.com/long-nc/gruvchad-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Koujir.gruvchad" + formats: null colors: bg: "#1E2122" fg: "#C3B499" diff --git a/themes/gruvdark-gbm.yaml b/themes/gruvdark-gbm.yaml deleted file mode 100644 index 73202a7c..00000000 --- a/themes/gruvdark-gbm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GruvDark-GBM" -source: - marketplace_id: "darianmorat.darian-theme" - version: "2.1.6" - installs: 3178 - rating: 5 - ratings: 1 - author: "Darian Toledo" - repo: "https://github.com/darianmorat/gruvdark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" -colors: - bg: "#202020" - fg: "#D4BE98" - black: "#32302F" - red: "#EA6962" - green: "#A9B665" - yellow: "#D8A657" - blue: "#7DAEA3" - magenta: "#D3869B" - cyan: "#89B482" - white: "#D4BE98" - brightBlack: "#928374" - brightRed: "#EA6962" - brightGreen: "#A9B665" - brightYellow: "#D8A657" - brightBlue: "#7DAEA3" - brightMagenta: "#D3869B" - brightCyan: "#89B482" - brightWhite: "#DDC7A1" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 66.9 - black: 0 - red: 41.8 - green: 56.9 - yellow: 56.7 - blue: 51.1 - magenta: 46.9 - cyan: 53.5 - white: 66.9 - brightBlack: 35.2 - brightRed: 41.8 - brightGreen: 56.9 - brightYellow: 56.7 - brightBlue: 51.1 - brightMagenta: 46.9 - brightCyan: 53.5 - brightWhite: 72.1 diff --git a/themes/gruvdark-tokyo.yaml b/themes/gruvdark-tokyo.yaml deleted file mode 100644 index f80f139b..00000000 --- a/themes/gruvdark-tokyo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GruvDark Tokyo" -source: - marketplace_id: "darianmorat.darian-theme" - version: "2.1.6" - installs: 3178 - rating: 5 - ratings: 1 - author: "Darian Toledo" - repo: "https://github.com/darianmorat/gruvdark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" -colors: - bg: "#1A1B26" - fg: "#D4D4D4" - black: "#292733" - red: "#DB6A6A" - green: "#76B568" - yellow: "#D19F66" - blue: "#5B98C9" - magenta: "#CD60B9" - cyan: "#4DB0BD" - white: "#CDC5B8" - brightBlack: "#4F4F4F" - brightRed: "#DB6A6A" - brightGreen: "#76B568" - brightYellow: "#D19F66" - brightBlue: "#5B98C9" - brightMagenta: "#CD60B9" - brightCyan: "#4DB0BD" - brightWhite: "#CDC5B8" -meta: - mode: "dark" - accent: "pink" - hue: 280 - pair: null - contrast: - fg: 78.9 - black: 0 - red: 39.8 - green: 52.4 - yellow: 53.9 - blue: 42.4 - magenta: 37.9 - cyan: 50.8 - white: 70.5 - brightBlack: 12.3 - brightRed: 39.8 - brightGreen: 52.4 - brightYellow: 53.9 - brightBlue: 42.4 - brightMagenta: 37.9 - brightCyan: 50.8 - brightWhite: 70.5 diff --git a/themes/gruvdark.yaml b/themes/gruvdark.yaml deleted file mode 100644 index aaaabce9..00000000 --- a/themes/gruvdark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GruvDark" -source: - marketplace_id: "darianmorat.darian-theme" - version: "2.1.6" - installs: 3178 - rating: 5 - ratings: 1 - author: "Darian Toledo" - repo: "https://github.com/darianmorat/gruvdark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" -colors: - bg: "#202020" - fg: "#CDC5B8" - black: "#2B2B2B" - red: "#DB6A6A" - green: "#76B568" - yellow: "#D19F66" - blue: "#5B98C9" - magenta: "#CD60B9" - cyan: "#4DB0BD" - white: "#CDC5B8" - brightBlack: "#4F4F4F" - brightRed: "#DB6A6A" - brightGreen: "#76B568" - brightYellow: "#D19F66" - brightBlue: "#5B98C9" - brightMagenta: "#CD60B9" - brightCyan: "#4DB0BD" - brightWhite: "#CDC5B8" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 69.9 - black: 0 - red: 39.2 - green: 51.8 - yellow: 53.3 - blue: 41.8 - magenta: 37.3 - cyan: 50.3 - white: 69.9 - brightBlack: 11.7 - brightRed: 39.2 - brightGreen: 51.8 - brightYellow: 53.3 - brightBlue: 41.8 - brightMagenta: 37.3 - brightCyan: 50.3 - brightWhite: 69.9 diff --git a/themes/gruvvy-watermelon.yaml b/themes/gruvvy-watermelon.yaml index eb4a9a12..385d7f73 100644 --- a/themes/gruvvy-watermelon.yaml +++ b/themes/gruvvy-watermelon.yaml @@ -2,10 +2,13 @@ name: "Gruvvy Watermelon" source: marketplace_id: "ZaccCharvolin.gruvvy-watermelon" version: "1.5.12" - installs: 300 + installs: 301 + rating: 5 + ratings: 1 author: "Zacc Charvolin" repo: "https://github.com/zacccharv/gruvvyWatermelon" url: "https://marketplace.visualstudio.com/items?itemName=ZaccCharvolin.gruvvy-watermelon" + formats: null colors: bg: "#202727" fg: "#E9F2F1" diff --git a/themes/guezwhoz.yaml b/themes/guezwhoz.yaml index 7e3e9fbe..b50c0480 100644 --- a/themes/guezwhoz.yaml +++ b/themes/guezwhoz.yaml @@ -8,6 +8,7 @@ source: author: "Egor Lem" repo: "https://github.com/guesswhozzz/guezwhoz-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=guezwhoz-schema.guezwhoz-vscode-theme" + formats: null colors: bg: "#1C1C1C" fg: "#DADADA" diff --git a/themes/guisaldanha-light.yaml b/themes/guisaldanha-light.yaml index 29351046..cb6f958b 100644 --- a/themes/guisaldanha-light.yaml +++ b/themes/guisaldanha-light.yaml @@ -8,6 +8,7 @@ source: author: "Guilherme Saldanha" repo: "https://github.com/guisaldanha/vscode-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=guisaldanha.guisaldanha-light" + formats: null colors: bg: "#F8F8F8" fg: "#383A42" diff --git a/themes/gujarat-vibrant-culture.yaml b/themes/gujarat-vibrant-culture.yaml index 2fdefeaa..095f4110 100644 --- a/themes/gujarat-vibrant-culture.yaml +++ b/themes/gujarat-vibrant-culture.yaml @@ -8,6 +8,7 @@ source: author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" + formats: null colors: bg: "#1A1618" fg: "#F0F0E8" diff --git a/themes/gum.yaml b/themes/gum.yaml index 031fb577..375c8307 100644 --- a/themes/gum.yaml +++ b/themes/gum.yaml @@ -8,6 +8,7 @@ source: author: "Robin Bandi" repo: "https://github.com/robbandi/Cherry-Gum" url: "https://marketplace.visualstudio.com/items?itemName=RobinBandi.cherry-gum-v2" + formats: null colors: bg: "#171717" fg: "#90D8F0" diff --git a/themes/gumua.yaml b/themes/gumua.yaml deleted file mode 100644 index 9959f746..00000000 --- a/themes/gumua.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gumua" -source: - marketplace_id: "GopherTheme.gumua-gopher-theme" - version: "0.0.9" - installs: 1137 - rating: 5 - ratings: 1 - author: "Gopher Theme" - repo: "https://github.com/KhwanNon/golang-theme" - url: "https://marketplace.visualstudio.com/items?itemName=GopherTheme.gumua-gopher-theme" -colors: - bg: "#1E1E1E" - fg: "#CBCBCB" - black: "#373741" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 73.2 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/gunivers.yaml b/themes/gunivers.yaml index e7e9abcb..9b1145a9 100644 --- a/themes/gunivers.yaml +++ b/themes/gunivers.yaml @@ -8,6 +8,7 @@ source: author: "Leirof" repo: "https://github.com/Gunivers/VSC-theme" url: "https://marketplace.visualstudio.com/items?itemName=Leirof.gunivers-theme" + formats: null colors: bg: "#111111" fg: "#D4D4D4" diff --git a/themes/gunmetal-code-pro.yaml b/themes/gunmetal-code-pro.yaml index 40f64860..1fa76768 100644 --- a/themes/gunmetal-code-pro.yaml +++ b/themes/gunmetal-code-pro.yaml @@ -2,10 +2,13 @@ name: "Gunmetal Code Pro" source: marketplace_id: "Naparajith.gunmetal-code-pro" version: "4.1.0" - installs: 446 + installs: 447 + rating: 5 + ratings: 1 author: "T L Naparajith" repo: "https://github.com/DrInfinite/gunmetal-code-pro" url: "https://marketplace.visualstudio.com/items?itemName=Naparajith.gunmetal-code-pro" + formats: null colors: bg: "#1B1D23" fg: "#ABB2BF" diff --git a/themes/gustavoglins.yaml b/themes/gustavoglins.yaml deleted file mode 100644 index f04f0326..00000000 --- a/themes/gustavoglins.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "GustavoGLins" -source: - marketplace_id: "GustavoLins05.gustavoglins-theme" - version: "22.1.1" - installs: 40 - rating: 5 - ratings: 1 - author: "Gustavo Lins" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=GustavoLins05.gustavoglins-theme" -colors: - bg: "#0F0F10" - fg: "#EDEDED" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 95.7 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28.1 - magenta: 30.4 - cyan: 48.2 - white: 90.6 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 107.5 diff --git a/themes/gusuku-limestone.yaml b/themes/gusuku-limestone.yaml index f157cf57..55fba139 100644 --- a/themes/gusuku-limestone.yaml +++ b/themes/gusuku-limestone.yaml @@ -8,6 +8,7 @@ source: author: "Keny Yahat" repo: "https://github.com/ky12228121/okinawan" url: "https://marketplace.visualstudio.com/items?itemName=ky12228121.okinawan-themes" + formats: null colors: bg: "#F9F7F1" fg: "#2C3E50" diff --git a/themes/guttenbergovitz.yaml b/themes/guttenbergovitz.yaml index cb20ad12..8a48bfc7 100644 --- a/themes/guttenbergovitz.yaml +++ b/themes/guttenbergovitz.yaml @@ -8,6 +8,15 @@ source: author: "Guttenbergovitz" repo: "https://github.com/guttenbergovitz/guttenbergovitz-theme" url: "https://marketplace.visualstudio.com/items?itemName=guttenbergovitz.guttenbergovitz" + formats: + ghostty: "https://raw.githubusercontent.com/guttenbergovitz/guttenbergovitz-theme/main/ghostty/README.md" + iterm2: "https://raw.githubusercontent.com/guttenbergovitz/guttenbergovitz-theme/main/iterm/Guttenbergovitz.itermcolors" + kitty: "https://raw.githubusercontent.com/guttenbergovitz/guttenbergovitz-theme/main/kitty/guttenbergovitz.conf" + warp: "https://raw.githubusercontent.com/guttenbergovitz/guttenbergovitz-theme/main/warp/guttenbergovitz.yaml" + android-studio: "https://raw.githubusercontent.com/guttenbergovitz/guttenbergovitz-theme/main/jetbrains/Guttenbergovitz.icls" + vim: "https://raw.githubusercontent.com/guttenbergovitz/guttenbergovitz-theme/main/vim/colors/guttenbergovitz.vim" + nvim: "https://raw.githubusercontent.com/guttenbergovitz/guttenbergovitz-theme/main/lua/guttenbergovitz/init.lua" + zed: "https://raw.githubusercontent.com/guttenbergovitz/guttenbergovitz-theme/main/zed/guttenbergovitz.json" colors: bg: "#232326" fg: "#D4BE98" diff --git a/themes/gvalley.yaml b/themes/gvalley.yaml index c096b875..81cc7463 100644 --- a/themes/gvalley.yaml +++ b/themes/gvalley.yaml @@ -8,6 +8,7 @@ source: author: "sam" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sam01.Gvalley" + formats: null colors: bg: "#1D1C1C" fg: "#18FF88" diff --git a/themes/gyomei-himejima.yaml b/themes/gyomei-himejima.yaml deleted file mode 100644 index d6e0a57d..00000000 --- a/themes/gyomei-himejima.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Gyomei Himejima" -source: - marketplace_id: "devLocifer.hashira-code-theme" - version: "0.0.1" - installs: 739 - rating: 5 - ratings: 1 - author: "devLocifer" - repo: "https://github.com/diazdjul19/hashira-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" -colors: - bg: "#222D28" - fg: "#D6D1C4" - black: "#1F2925" - red: "#E09B93" - green: "#B0C988" - yellow: "#F5C77C" - blue: "#A3D1C8" - magenta: "#C5B3D6" - cyan: "#A3D1C8" - white: "#D6D1C4" - brightBlack: "#888888" - brightRed: "#E6A29A" - brightGreen: "#B0C988" - brightYellow: "#F5D79E" - brightBlue: "#A3D1C8" - brightMagenta: "#C5B3D6" - brightCyan: "#A3D1C8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "yellow" - hue: 166 - pair: null - contrast: - fg: 74.8 - black: 0 - red: 53.7 - green: 64.8 - yellow: 73 - blue: 69.2 - magenta: 61.1 - cyan: 69.2 - white: 74.8 - brightBlack: 34.7 - brightRed: 57.3 - brightGreen: 64.8 - brightYellow: 80.6 - brightBlue: 69.2 - brightMagenta: 61.1 - brightCyan: 69.2 - brightWhite: 103.9 diff --git a/themes/h1-dark-fork.yaml b/themes/h1-dark-fork.yaml index b4a0c6fc..1a9d84b7 100644 --- a/themes/h1-dark-fork.yaml +++ b/themes/h1-dark-fork.yaml @@ -8,6 +8,7 @@ source: author: "Hacker0x01" repo: "https://github.com/Hacker0x01/HackerOne-VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Hacker0x01.HackerOne-VS-Code-Theme" + formats: null colors: bg: "#0A0A0A" fg: "#FFFFFF" diff --git a/themes/h1-light-fork.yaml b/themes/h1-light-fork.yaml index 5dbc46d2..cf7e29cc 100644 --- a/themes/h1-light-fork.yaml +++ b/themes/h1-light-fork.yaml @@ -8,6 +8,7 @@ source: author: "Hacker0x01" repo: "https://github.com/Hacker0x01/HackerOne-VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Hacker0x01.HackerOne-VS-Code-Theme" + formats: null colors: bg: "#FFFFFF" fg: "#5C5E6A" diff --git a/themes/haavyz.yaml b/themes/haavyz.yaml index ef573167..496d17ad 100644 --- a/themes/haavyz.yaml +++ b/themes/haavyz.yaml @@ -8,6 +8,7 @@ source: author: "Haavyz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Haavyz.Haavyz" + formats: null colors: bg: "#0A0D1A" fg: "#B4B4B4" diff --git a/themes/habamax.yaml b/themes/habamax.yaml index e284c9fc..33f2d50e 100644 --- a/themes/habamax.yaml +++ b/themes/habamax.yaml @@ -8,6 +8,7 @@ source: author: "Carl Weis" repo: "https://github.com/carlweis/vscode-habamax-theme" url: "https://marketplace.visualstudio.com/items?itemName=codelogix.habamax" + formats: null colors: bg: "#1C1C1C" fg: "#ABB2BF" diff --git a/themes/habamix.yaml b/themes/habamix.yaml index 79571074..2293e385 100644 --- a/themes/habamix.yaml +++ b/themes/habamix.yaml @@ -2,12 +2,13 @@ name: "habamix" source: marketplace_id: "dpdpdp.habamix" version: "0.2.0" - installs: 672 + installs: 673 rating: 5 ratings: 1 author: "dpdpdp" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dpdpdp.habamix" + formats: null colors: bg: "#1C1C1C" fg: "#BCBCBC" diff --git a/themes/hachiko.yaml b/themes/hachiko.yaml index 65376029..977ebfe1 100644 --- a/themes/hachiko.yaml +++ b/themes/hachiko.yaml @@ -8,6 +8,7 @@ source: author: "charlottielove" repo: null url: "https://marketplace.visualstudio.com/items?itemName=charlottielove.kitty-hachiko" + formats: null colors: bg: "#111111" fg: "#CCCCCC" diff --git a/themes/hack-and-lima.yaml b/themes/hack-and-lima.yaml deleted file mode 100644 index a6059025..00000000 --- a/themes/hack-and-lima.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hack-And-Lima🍋" -source: - marketplace_id: "EmeAim.aim" - version: "0.0.8" - installs: 1797 - rating: 5 - ratings: 1 - author: "EmeAim" - repo: "https://github.com/EmePin/aim-themes" - url: "https://marketplace.visualstudio.com/items?itemName=EmeAim.aim" -colors: - bg: "#202328" - fg: "#D9ED92" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 261 - pair: null - contrast: - fg: 87.8 - black: 0 - red: 25.2 - green: 51.5 - yellow: 84.1 - blue: 25.9 - magenta: 28.2 - cyan: 46 - white: 88.5 - brightBlack: 20.5 - brightRed: 37 - brightGreen: 62 - brightYellow: 94.1 - brightBlue: 38.5 - brightMagenta: 43.8 - brightCyan: 53.9 - brightWhite: 88.5 diff --git a/themes/hack-electron.yaml b/themes/hack-electron.yaml deleted file mode 100644 index e7c6f410..00000000 --- a/themes/hack-electron.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hack Electron" -source: - marketplace_id: "TheVoidsteppers.hack-electron" - version: "0.0.3" - installs: 2205 - rating: 0 - ratings: 0 - author: "TheVoidsteppers" - repo: "https://github.com/TheVoidsteppers/hack-electron" - url: "https://marketplace.visualstudio.com/items?itemName=TheVoidsteppers.hack-electron" -colors: - bg: "#16171D" - fg: "#BBD1DD" - black: "#21222C" - red: "#FF704D" - green: "#33CC33" - yellow: "#FFFF99" - blue: "#268BD2" - magenta: "#9933FF" - cyan: "#1B9891" - white: "#BBD1DD" - brightBlack: "#7A7A8C" - brightRed: "#FF661A" - brightGreen: "#33CC33" - brightYellow: "#FFFF1A" - brightBlue: "#1FADA6" - brightMagenta: "#A64DFF" - brightCyan: "#00FFFF" - brightWhite: "#C4EDC4" -meta: - mode: "dark" - accent: "magenta" - hue: 278 - pair: null - contrast: - fg: 75.5 - black: 0 - red: 48.7 - green: 59.9 - yellow: 103.2 - blue: 36.7 - magenta: 27.9 - cyan: 38.2 - white: 75.5 - brightBlack: 31.6 - brightRed: 46 - brightGreen: 59.9 - brightYellow: 101.7 - brightBlue: 47.9 - brightMagenta: 33.3 - brightCyan: 91.1 - brightWhite: 88.3 diff --git a/themes/hack-minor.yaml b/themes/hack-minor.yaml index 66533c9d..fadba7b8 100644 --- a/themes/hack-minor.yaml +++ b/themes/hack-minor.yaml @@ -8,6 +8,7 @@ source: author: "adamsome" repo: "https://github.com/adamsome/vscode-theme-phosphorus-minor" url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-phosphorus-minor" + formats: null colors: bg: "#000000" fg: "#A8A29E" diff --git a/themes/hackage-theme.yaml b/themes/hackage-theme.yaml index 54f50ddb..7113bd98 100644 --- a/themes/hackage-theme.yaml +++ b/themes/hackage-theme.yaml @@ -8,6 +8,7 @@ source: author: "dmarticus" repo: "https://github.com/dmarticus/hackage-theme" url: "https://marketplace.visualstudio.com/items?itemName=dmarticus.hackage-theme" + formats: null colors: bg: "#FDF6E3" fg: "#6688CC" diff --git a/themes/hacker-blue.yaml b/themes/hacker-blue.yaml index 36eebca9..96f19a6d 100644 --- a/themes/hacker-blue.yaml +++ b/themes/hacker-blue.yaml @@ -1,13 +1,14 @@ name: "Hacker Blue" source: - marketplace_id: "chausen.hacker-blue" - version: "1.0.0" - installs: 19475 - rating: 5 - ratings: 1 - author: "chausen" - repo: "https://github.com/chausen/hacker-blue" - url: "https://marketplace.visualstudio.com/items?itemName=chausen.hacker-blue" + marketplace_id: "xynny.hackerblue" + version: "0.0.1" + installs: 2376 + rating: 0 + ratings: 0 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.hackerblue" + formats: null colors: bg: "#000000" fg: "#7DF9FF" diff --git a/themes/hacker-pink.yaml b/themes/hacker-pink.yaml index 504b8a75..698cf25a 100644 --- a/themes/hacker-pink.yaml +++ b/themes/hacker-pink.yaml @@ -2,12 +2,13 @@ name: "Hacker Pink" source: marketplace_id: "xynny.hacker-pink" version: "1.0.0" - installs: 4967 + installs: 4968 rating: 5 ratings: 1 author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.hacker-pink" + formats: null colors: bg: "#000000" fg: "#FF14F0" diff --git a/themes/hacker-x.yaml b/themes/hacker-x.yaml deleted file mode 100644 index 1b04fd17..00000000 --- a/themes/hacker-x.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hacker X" -source: - marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" - version: "9.0.1" - installs: 29917 - rating: 4.6 - ratings: 10 - author: "Hasibur R" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" -colors: - bg: "#2F3640" - fg: "#E4E4E4" - black: "#000000" - red: "#FF5E57" - green: "#44BD32" - yellow: "#FFA801" - blue: "#575FCF" - magenta: "#EF5777" - cyan: "#00D8D6" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#FF3F34" - brightGreen: "#4CD137" - brightYellow: "#FFD32A" - brightBlue: "#0FBCF9" - brightMagenta: "#F53B57" - brightCyan: "#34E7E4" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "orange" - hue: 257 - pair: null - contrast: - fg: 83.8 - black: 0 - red: 39.5 - green: 47.7 - yellow: 59.2 - blue: 19 - magenta: 35.3 - cyan: 64 - white: 84.5 - brightBlack: 16.5 - brightRed: 34.3 - brightGreen: 57.5 - brightYellow: 76.1 - brightBlue: 53.2 - brightMagenta: 31.9 - brightCyan: 72.4 - brightWhite: 84.5 diff --git a/themes/hacker.yaml b/themes/hacker.yaml deleted file mode 100644 index 16caf6f5..00000000 --- a/themes/hacker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hacker" -source: - marketplace_id: "brenix.hacker-theme" - version: "0.0.6" - installs: 69285 - rating: 5 - ratings: 3 - author: "brenix" - repo: "https://github.com/brenix/vscode-hacker" - url: "https://marketplace.visualstudio.com/items?itemName=brenix.hacker-theme" -colors: - bg: "#0A0B0A" - fg: "#BBBBBB" - black: "#252525" - red: "#C05776" - green: "#A7ECB7" - yellow: "#87A1C5" - blue: "#81B38C" - magenta: "#507057" - cyan: "#7574A5" - white: "#858585" - brightBlack: "#454545" - brightRed: "#C05776" - brightGreen: "#A7ECB7" - brightYellow: "#87A1C5" - brightBlue: "#81B38C" - brightMagenta: "#507057" - brightCyan: "#7574A5" - brightWhite: "#E8E8E8" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 65.6 - black: 0 - red: 32.1 - green: 85.4 - yellow: 50.2 - blue: 54.7 - magenta: 24 - cyan: 31.2 - white: 37 - brightBlack: 10 - brightRed: 32.1 - brightGreen: 85.4 - brightYellow: 50.2 - brightBlue: 54.7 - brightMagenta: 24 - brightCyan: 31.2 - brightWhite: 92.8 diff --git a/themes/hackish.yaml b/themes/hackish.yaml index 58fe0dae..8d12ba68 100644 --- a/themes/hackish.yaml +++ b/themes/hackish.yaml @@ -2,12 +2,13 @@ name: "Hackish" source: marketplace_id: "valbmig.hackish" version: "1.0.0" - installs: 756 + installs: 757 rating: 5 ratings: 1 author: "valb.mig" repo: "https://github.com/valb-mig/valbmig.hackish-theme" url: "https://marketplace.visualstudio.com/items?itemName=valbmig.hackish" + formats: null colors: bg: "#08080B" fg: "#717286" diff --git a/themes/hackpot-batman-vs-joker-dark.yaml b/themes/hackpot-batman-vs-joker-dark.yaml deleted file mode 100644 index 25f71ad0..00000000 --- a/themes/hackpot-batman-vs-joker-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hackpot Batman vs Joker Dark" -source: - marketplace_id: "wwmyers.hackpot" - version: "3.0.0" - installs: 24357 - rating: 5 - ratings: 5 - author: "wwmyers" - repo: "https://github.com/wwmyers/hackpot" - url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" -colors: - bg: "#16171D" - fg: "#BBD1DD" - black: "#21222C" - red: "#FF704D" - green: "#486484" - yellow: "#FFFF99" - blue: "#268BD2" - magenta: "#9933FF" - cyan: "#1B9891" - white: "#BBD1DD" - brightBlack: "#2C2D3A" - brightRed: "#FF661A" - brightGreen: "#33CC33" - brightYellow: "#FFFF1A" - brightBlue: "#1FADA6" - brightMagenta: "#A64DFF" - brightCyan: "#00FFFF" - brightWhite: "#C4EDC4" -meta: - mode: "dark" - accent: "magenta" - hue: 278 - pair: null - contrast: - fg: 75.5 - black: 0 - red: 48.7 - green: 20.3 - yellow: 103.2 - blue: 36.7 - magenta: 27.9 - cyan: 38.2 - white: 75.5 - brightBlack: 0 - brightRed: 46 - brightGreen: 59.9 - brightYellow: 101.7 - brightBlue: 47.9 - brightMagenta: 33.3 - brightCyan: 91.1 - brightWhite: 88.3 diff --git a/themes/hackpot-batman-vs-joker.yaml b/themes/hackpot-batman-vs-joker.yaml deleted file mode 100644 index d9bdf7ed..00000000 --- a/themes/hackpot-batman-vs-joker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hackpot Batman vs Joker" -source: - marketplace_id: "wwmyers.hackpot" - version: "3.0.0" - installs: 24357 - rating: 5 - ratings: 5 - author: "wwmyers" - repo: "https://github.com/wwmyers/hackpot" - url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" -colors: - bg: "#21222C" - fg: "#BBD1DD" - black: "#2B2E3B" - red: "#FF704D" - green: "#486484" - yellow: "#FFFF99" - blue: "#268BD2" - magenta: "#9933FF" - cyan: "#1B9891" - white: "#BBD1DD" - brightBlack: "#363949" - brightRed: "#FF661A" - brightGreen: "#33CC33" - brightYellow: "#FFFF1A" - brightBlue: "#1FADA6" - brightMagenta: "#A64DFF" - brightCyan: "#00FFFF" - brightWhite: "#C4EDC4" -meta: - mode: "dark" - accent: "magenta" - hue: 280 - pair: null - contrast: - fg: 74.1 - black: 0 - red: 47.2 - green: 18.8 - yellow: 101.7 - blue: 35.2 - magenta: 26.5 - cyan: 36.7 - white: 74.1 - brightBlack: 0 - brightRed: 44.5 - brightGreen: 58.4 - brightYellow: 100.2 - brightBlue: 46.4 - brightMagenta: 31.9 - brightCyan: 89.6 - brightWhite: 86.8 diff --git a/themes/hackpot-dark-knight.yaml b/themes/hackpot-dark-knight.yaml deleted file mode 100644 index 64118f59..00000000 --- a/themes/hackpot-dark-knight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hackpot Dark Knight" -source: - marketplace_id: "wwmyers.hackpot" - version: "3.0.0" - installs: 24357 - rating: 5 - ratings: 5 - author: "wwmyers" - repo: "https://github.com/wwmyers/hackpot" - url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" -colors: - bg: "#142739" - fg: "#BBD1DD" - black: "#1A344C" - red: "#FF704D" - green: "#486484" - yellow: "#FFFF99" - blue: "#268BD2" - magenta: "#9933FF" - cyan: "#1B9891" - white: "#BBD1DD" - brightBlack: "#21415F" - brightRed: "#FF661A" - brightGreen: "#33CC33" - brightYellow: "#FFFF1A" - brightBlue: "#1FADA6" - brightMagenta: "#A64DFF" - brightCyan: "#00FFFF" - brightWhite: "#C4EDC4" -meta: - mode: "dark" - accent: "magenta" - hue: 248 - pair: null - contrast: - fg: 73.5 - black: 0 - red: 46.6 - green: 18.3 - yellow: 101.2 - blue: 34.7 - magenta: 25.9 - cyan: 36.2 - white: 73.5 - brightBlack: 0 - brightRed: 44 - brightGreen: 57.8 - brightYellow: 99.6 - brightBlue: 45.8 - brightMagenta: 31.3 - brightCyan: 89.1 - brightWhite: 86.3 diff --git a/themes/hackpot-darker-knight.yaml b/themes/hackpot-darker-knight.yaml deleted file mode 100644 index c17c02f4..00000000 --- a/themes/hackpot-darker-knight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hackpot Darker Knight" -source: - marketplace_id: "wwmyers.hackpot" - version: "3.0.0" - installs: 24357 - rating: 5 - ratings: 5 - author: "wwmyers" - repo: "https://github.com/wwmyers/hackpot" - url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" -colors: - bg: "#0D1A26" - fg: "#BBD1DD" - black: "#142739" - red: "#FF704D" - green: "#486484" - yellow: "#FFFF99" - blue: "#268BD2" - magenta: "#9933FF" - cyan: "#1B9891" - white: "#BBD1DD" - brightBlack: "#1A344C" - brightRed: "#FF661A" - brightGreen: "#33CC33" - brightYellow: "#FFFF1A" - brightBlue: "#1FADA6" - brightMagenta: "#A64DFF" - brightCyan: "#00FFFF" - brightWhite: "#C4EDC4" -meta: - mode: "dark" - accent: "magenta" - hue: 248 - pair: null - contrast: - fg: 75.3 - black: 0 - red: 48.4 - green: 20.1 - yellow: 103 - blue: 36.5 - magenta: 27.7 - cyan: 38 - white: 75.3 - brightBlack: 0 - brightRed: 45.8 - brightGreen: 59.7 - brightYellow: 101.5 - brightBlue: 47.7 - brightMagenta: 33.1 - brightCyan: 90.9 - brightWhite: 88.1 diff --git a/themes/hackpot-garden-dark.yaml b/themes/hackpot-garden-dark.yaml deleted file mode 100644 index 0c271247..00000000 --- a/themes/hackpot-garden-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hackpot Garden Dark" -source: - marketplace_id: "wwmyers.hackpot" - version: "3.0.0" - installs: 24357 - rating: 5 - ratings: 5 - author: "wwmyers" - repo: "https://github.com/wwmyers/hackpot" - url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" -colors: - bg: "#1A1A1A" - fg: "#B1E7B1" - black: "#202020" - red: "#FF704D" - green: "#1E621E" - yellow: "#FFFF99" - blue: "#268BD2" - magenta: "#9933FF" - cyan: "#1B9891" - white: "#B1E7B1" - brightBlack: "#252525" - brightRed: "#FF661A" - brightGreen: "#32CD32" - brightYellow: "#FFFF1A" - brightBlue: "#1FADA6" - brightMagenta: "#B366FF" - brightCyan: "#00FFFF" - brightWhite: "#C4EDC4" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 82.5 - black: 0 - red: 48.4 - green: 15.2 - yellow: 102.9 - blue: 36.4 - magenta: 27.7 - cyan: 37.9 - white: 82.5 - brightBlack: 0 - brightRed: 45.7 - brightGreen: 60 - brightYellow: 101.4 - brightBlue: 47.6 - brightMagenta: 39.9 - brightCyan: 90.8 - brightWhite: 88 diff --git a/themes/hackpot-garden-of-atlantis.yaml b/themes/hackpot-garden-of-atlantis.yaml deleted file mode 100644 index da98db92..00000000 --- a/themes/hackpot-garden-of-atlantis.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hackpot Garden Of Atlantis" -source: - marketplace_id: "wwmyers.hackpot" - version: "3.0.0" - installs: 24357 - rating: 5 - ratings: 5 - author: "wwmyers" - repo: "https://github.com/wwmyers/hackpot" - url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" -colors: - bg: "#002020" - fg: "#B1E7B1" - black: "#002828" - red: "#FF704D" - green: "#1E621E" - yellow: "#FFFF99" - blue: "#268BD2" - magenta: "#9933FF" - cyan: "#1B9891" - white: "#B1E7B1" - brightBlack: "#003030" - brightRed: "#FF661A" - brightGreen: "#32CD32" - brightYellow: "#FFFF1A" - brightBlue: "#1FADA6" - brightMagenta: "#B366FF" - brightCyan: "#00FFFF" - brightWhite: "#C4EDC4" -meta: - mode: "dark" - accent: "magenta" - hue: 195 - pair: null - contrast: - fg: 82.2 - black: 0 - red: 48 - green: 14.8 - yellow: 102.5 - blue: 36 - magenta: 27.3 - cyan: 37.5 - white: 82.2 - brightBlack: 0 - brightRed: 45.4 - brightGreen: 59.7 - brightYellow: 101 - brightBlue: 47.2 - brightMagenta: 39.5 - brightCyan: 90.5 - brightWhite: 87.7 diff --git a/themes/hackpot-garden-purple-haze.yaml b/themes/hackpot-garden-purple-haze.yaml deleted file mode 100644 index 94163eb9..00000000 --- a/themes/hackpot-garden-purple-haze.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hackpot Garden Purple Haze" -source: - marketplace_id: "wwmyers.hackpot" - version: "3.0.0" - installs: 24357 - rating: 5 - ratings: 5 - author: "wwmyers" - repo: "https://github.com/wwmyers/hackpot" - url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" -colors: - bg: "#330033" - fg: "#F2E6FF" - black: "#4D004D" - red: "#FF704D" - green: "#1E621E" - yellow: "#FFFF33" - blue: "#50B4FB" - magenta: "#990099" - cyan: "#1B9891" - white: "#F2E6FF" - brightBlack: "#660066" - brightRed: "#FF661A" - brightGreen: "#5CD65C" - brightYellow: "#FFFF66" - brightBlue: "#82C9FC" - brightMagenta: "#E600E6" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 328 - pair: null - contrast: - fg: 92.7 - black: 0 - red: 47.8 - green: 14.6 - yellow: 100.9 - blue: 55.9 - magenta: 16.5 - cyan: 37.4 - white: 92.7 - brightBlack: 0 - brightRed: 45.2 - brightGreen: 65.7 - brightYellow: 101.4 - brightBlue: 67.7 - brightMagenta: 36.9 - brightCyan: 90.3 - brightWhite: 106 diff --git a/themes/hackpot-garden.yaml b/themes/hackpot-garden.yaml deleted file mode 100644 index dc746e09..00000000 --- a/themes/hackpot-garden.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hackpot Garden" -source: - marketplace_id: "wwmyers.hackpot" - version: "3.0.0" - installs: 24357 - rating: 5 - ratings: 5 - author: "wwmyers" - repo: "https://github.com/wwmyers/hackpot" - url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" -colors: - bg: "#252525" - fg: "#B1E7B1" - black: "#2A2A2A" - red: "#FF704D" - green: "#1E621E" - yellow: "#FFFF99" - blue: "#268BD2" - magenta: "#9933FF" - cyan: "#1B9891" - white: "#B1E7B1" - brightBlack: "#303030" - brightRed: "#FF661A" - brightGreen: "#32CD32" - brightYellow: "#FFFF1A" - brightBlue: "#1FADA6" - brightMagenta: "#B366FF" - brightCyan: "#00FFFF" - brightWhite: "#C4EDC4" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 80.9 - black: 0 - red: 46.8 - green: 13.6 - yellow: 101.3 - blue: 34.8 - magenta: 26.1 - cyan: 36.3 - white: 80.9 - brightBlack: 0 - brightRed: 44.1 - brightGreen: 58.5 - brightYellow: 99.8 - brightBlue: 46 - brightMagenta: 38.3 - brightCyan: 89.3 - brightWhite: 86.5 diff --git a/themes/hackpot-muddy-garden.yaml b/themes/hackpot-muddy-garden.yaml deleted file mode 100644 index 95cfd4f4..00000000 --- a/themes/hackpot-muddy-garden.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hackpot Muddy Garden" -source: - marketplace_id: "wwmyers.hackpot" - version: "3.0.0" - installs: 24357 - rating: 5 - ratings: 5 - author: "wwmyers" - repo: "https://github.com/wwmyers/hackpot" - url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" -colors: - bg: "#231A0F" - fg: "#B1E7B1" - black: "#362817" - red: "#FF704D" - green: "#1E621E" - yellow: "#FFFF99" - blue: "#268BD2" - magenta: "#9933FF" - cyan: "#1B9891" - white: "#B1E7B1" - brightBlack: "#47351F" - brightRed: "#FF661A" - brightGreen: "#32CD32" - brightYellow: "#FFFF1A" - brightBlue: "#1FADA6" - brightMagenta: "#B366FF" - brightCyan: "#00FFFF" - brightWhite: "#C4EDC4" -meta: - mode: "dark" - accent: "magenta" - hue: 72 - pair: null - contrast: - fg: 82.3 - black: 0 - red: 48.1 - green: 15 - yellow: 102.7 - blue: 36.2 - magenta: 27.4 - cyan: 37.7 - white: 82.3 - brightBlack: 0 - brightRed: 45.5 - brightGreen: 59.8 - brightYellow: 101.2 - brightBlue: 47.4 - brightMagenta: 39.7 - brightCyan: 90.6 - brightWhite: 87.8 diff --git a/themes/hackpot-poisoned-garden.yaml b/themes/hackpot-poisoned-garden.yaml deleted file mode 100644 index cab84850..00000000 --- a/themes/hackpot-poisoned-garden.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hackpot Poisoned Garden" -source: - marketplace_id: "wwmyers.hackpot" - version: "3.0.0" - installs: 24357 - rating: 5 - ratings: 5 - author: "wwmyers" - repo: "https://github.com/wwmyers/hackpot" - url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" -colors: - bg: "#0C270C" - fg: "#B1E7B1" - black: "#123B12" - red: "#FF704D" - green: "#1E621E" - yellow: "#FFFF99" - blue: "#268BD2" - magenta: "#9933FF" - cyan: "#1B9891" - white: "#B1E7B1" - brightBlack: "#174F17" - brightRed: "#FF661A" - brightGreen: "#32CD32" - brightYellow: "#FFFF1A" - brightBlue: "#1FADA6" - brightMagenta: "#B366FF" - brightCyan: "#00FFFF" - brightWhite: "#C4EDC4" -meta: - mode: "dark" - accent: "magenta" - hue: 144 - pair: null - contrast: - fg: 81.4 - black: 0 - red: 47.2 - green: 14.1 - yellow: 101.8 - blue: 35.3 - magenta: 26.5 - cyan: 36.8 - white: 81.4 - brightBlack: 7.8 - brightRed: 44.6 - brightGreen: 58.9 - brightYellow: 100.3 - brightBlue: 46.5 - brightMagenta: 38.8 - brightCyan: 89.7 - brightWhite: 86.9 diff --git a/themes/hadar.yaml b/themes/hadar.yaml index eb323960..5cdbbe02 100644 --- a/themes/hadar.yaml +++ b/themes/hadar.yaml @@ -8,6 +8,7 @@ source: author: "Cristian Vásquez" repo: "https://github.com/cristianvasquezc/hadar-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=cristianvasquez.hadar-theme" + formats: null colors: bg: "#00030F" fg: "#A2AABC" diff --git a/themes/haidark-two.yaml b/themes/haidark-two.yaml deleted file mode 100644 index f9a54d20..00000000 --- a/themes/haidark-two.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "haidark two" -source: - marketplace_id: "phongtranhai.haidark" - version: "0.0.3" - installs: 117 - rating: 5 - ratings: 1 - author: "Huu Nhan Tran" - repo: "https://github.com/thnhan1/haidark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=phongtranhai.haidark" -colors: - bg: "#282A36" - fg: "#D6DEEB" - black: "#282A36" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 278 - pair: null - contrast: - fg: 82.3 - black: 0 - red: 36.4 - green: 64.3 - yellow: 79.1 - blue: 53 - magenta: 50.8 - cyan: 56.7 - white: 103.9 - brightBlack: 12.6 - brightRed: 36.4 - brightGreen: 64.3 - brightYellow: 90.8 - brightBlue: 53 - brightMagenta: 50.8 - brightCyan: 71 - brightWhite: 103.9 diff --git a/themes/halcyon.yaml b/themes/halcyon.yaml index 947bdfde..02ef47ad 100644 --- a/themes/halcyon.yaml +++ b/themes/halcyon.yaml @@ -8,6 +8,7 @@ source: author: "Phillip Green" repo: "https://github.com/PhilGreen-Dev/cyberdev-vscode" url: "https://marketplace.visualstudio.com/items?itemName=PhillipGreen.cyberdev" + formats: null colors: bg: "#1D2433" fg: "#E0E0FF" diff --git a/themes/half-gray.yaml b/themes/half-gray.yaml index d6eb2b87..ff5d94ee 100644 --- a/themes/half-gray.yaml +++ b/themes/half-gray.yaml @@ -8,6 +8,7 @@ source: author: "Marcos Batisaldo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MarcosBatisaldo.half-gray-theme" + formats: null colors: bg: "#161719" fg: "#D4D4D4" diff --git a/themes/halflife-contrast.yaml b/themes/halflife-contrast.yaml deleted file mode 100644 index 94d41c13..00000000 --- a/themes/halflife-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "halflife-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#000000" - fg: "#CCCCCC" - black: "#0D0D0D" - red: "#BA0E2E" - green: "#FC913A" - yellow: "#7D8991" - blue: "#F9D423" - magenta: "#7D8991" - cyan: "#F85931" - white: "#D9D9D9" - brightBlack: "#333333" - brightRed: "#F03E5F" - brightGreen: "#FEC99E" - brightYellow: "#B4BBC0" - brightBlue: "#FCE786" - brightMagenta: "#B4BBC0" - brightCyan: "#FBA894" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 75.7 - black: 0 - red: 21.5 - green: 57.8 - yellow: 38.2 - blue: 82 - magenta: 38.2 - cyan: 43 - white: 83.6 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 80.1 - brightYellow: 65.1 - brightBlue: 92.1 - brightMagenta: 65.1 - brightCyan: 66.9 - brightWhite: 107.9 diff --git a/themes/halflife-light.yaml b/themes/halflife-light.yaml deleted file mode 100644 index de07344e..00000000 --- a/themes/halflife-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "halflife-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#F0F0F0" - fg: "#222222" - black: "#FDFDFD" - red: "#BA0E2E" - green: "#FC913A" - yellow: "#7D8991" - blue: "#F9D423" - magenta: "#7D8991" - cyan: "#F85931" - white: "#2F2F2F" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#FEC99E" - brightYellow: "#B4BBC0" - brightBlue: "#FCE786" - brightMagenta: "#B4BBC0" - brightCyan: "#FBA894" - brightWhite: "#555555" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94 - black: 0 - red: 71.4 - green: 35.4 - yellow: 54.5 - blue: 12.4 - magenta: 54.5 - cyan: 49.8 - white: 90.9 - brightBlack: 7.6 - brightRed: 55 - brightGreen: 14.2 - brightYellow: 28.4 - brightBlue: 0 - brightMagenta: 28.4 - brightCyan: 26.7 - brightWhite: 77 diff --git a/themes/halflife.yaml b/themes/halflife.yaml deleted file mode 100644 index a3e4d0cb..00000000 --- a/themes/halflife.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "halflife" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#222222" - fg: "#CCCCCC" - black: "#2F2F2F" - red: "#BA0E2E" - green: "#FC913A" - yellow: "#7D8991" - blue: "#F9D423" - magenta: "#7D8991" - cyan: "#F85931" - white: "#D9D9D9" - brightBlack: "#555555" - brightRed: "#F03E5F" - brightGreen: "#FEC99E" - brightYellow: "#B4BBC0" - brightBlue: "#FCE786" - brightMagenta: "#B4BBC0" - brightCyan: "#FBA894" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 73.2 - black: 0 - red: 19.1 - green: 55.4 - yellow: 35.8 - blue: 79.6 - magenta: 35.8 - cyan: 40.6 - white: 81.1 - brightBlack: 13.7 - brightRed: 35.4 - brightGreen: 77.7 - brightYellow: 62.7 - brightBlue: 89.7 - brightMagenta: 62.7 - brightCyan: 64.4 - brightWhite: 105.5 diff --git a/themes/halloween-theme.yaml b/themes/halloween-theme.yaml index df054fdf..a967baa2 100644 --- a/themes/halloween-theme.yaml +++ b/themes/halloween-theme.yaml @@ -1,50 +1,53 @@ -name: "Halloween Theme" +name: "halloween-theme" source: - marketplace_id: "Joeel56.halloween-theme-color-theme" - version: "1.0.1" - installs: 57 - author: "Joeel56" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Joeel56.halloween-theme-color-theme" + marketplace_id: "swordensen.halloween-theme" + version: "0.0.2" + installs: 4662 + rating: 0 + ratings: 0 + author: "swordensen" + repo: "https://github.com/Mikkal24/VSCodeHalloweenTheme" + url: "https://marketplace.visualstudio.com/items?itemName=swordensen.halloween-theme" + formats: null colors: - bg: "#201D31" - fg: "#7770A3" + bg: "#212121" + fg: "#FFFFFF" black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" + red: "#FF628C" + green: "#3AD900" + yellow: "#FF9900" + blue: "#FFAE00" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#A46B00" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FF9900" + brightBlue: "#FFAE00" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "pink" - hue: 290 + accent: "green" + hue: null pair: null contrast: - fg: 28.1 + fg: 105.6 black: 0 - red: 25.6 - green: 51.9 - yellow: 84.5 - blue: 26.4 - magenta: 28.7 - cyan: 46.5 - white: 88.9 - brightBlack: 21 - brightRed: 37.5 - brightGreen: 62.5 - brightYellow: 94.6 - brightBlue: 38.9 - brightMagenta: 44.3 - brightCyan: 54.3 - brightWhite: 88.9 + red: 45.9 + green: 65 + yellow: 58.4 + blue: 65.6 + magenta: 63.1 + cyan: 91.5 + white: 105.6 + brightBlack: 28.6 + brightRed: 45.9 + brightGreen: 65 + brightYellow: 58.4 + brightBlue: 65.6 + brightMagenta: 63.1 + brightCyan: 91.5 + brightWhite: 105.6 diff --git a/themes/halloween.yaml b/themes/halloween.yaml deleted file mode 100644 index 3c45ecf3..00000000 --- a/themes/halloween.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Halloween" -source: - marketplace_id: "swordensen.halloween-theme" - version: "0.0.2" - installs: 4661 - rating: 0 - ratings: 0 - author: "swordensen" - repo: "https://github.com/Mikkal24/VSCodeHalloweenTheme" - url: "https://marketplace.visualstudio.com/items?itemName=swordensen.halloween-theme" -colors: - bg: "#212121" - fg: "#FFFFFF" - black: "#000000" - red: "#FF628C" - green: "#3AD900" - yellow: "#FF9900" - blue: "#FFAE00" - magenta: "#FB94FF" - cyan: "#80FCFF" - white: "#FFFFFF" - brightBlack: "#A46B00" - brightRed: "#FF628C" - brightGreen: "#3AD900" - brightYellow: "#FF9900" - brightBlue: "#FFAE00" - brightMagenta: "#FB94FF" - brightCyan: "#80FCFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 105.6 - black: 0 - red: 45.9 - green: 65 - yellow: 58.4 - blue: 65.6 - magenta: 63.1 - cyan: 91.5 - white: 105.6 - brightBlack: 28.6 - brightRed: 45.9 - brightGreen: 65 - brightYellow: 58.4 - brightBlue: 65.6 - brightMagenta: 63.1 - brightCyan: 91.5 - brightWhite: 105.6 diff --git a/themes/hallucination.yaml b/themes/hallucination.yaml index c0b5089c..0af394c8 100644 --- a/themes/hallucination.yaml +++ b/themes/hallucination.yaml @@ -8,6 +8,7 @@ source: author: "matheusdearaujo" repo: "https://github.com/matheusdearaujo/hallucination-theme" url: "https://marketplace.visualstudio.com/items?itemName=matheusdearaujo.hallucination" + formats: null colors: bg: "#000000" fg: "#FEFEFE" diff --git a/themes/hamidthedev-professional.yaml b/themes/hamidthedev-professional.yaml deleted file mode 100644 index eb943b5d..00000000 --- a/themes/hamidthedev-professional.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "HamidTheDev Professional" -source: - marketplace_id: "HamidTheDev.hamidthedev" - version: "6.0.0" - installs: 924 - rating: 5 - ratings: 1 - author: "HamidTheDev" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HamidTheDev.hamidthedev" -colors: - bg: "#1A2023" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: 229 - pair: null - contrast: - fg: 58.4 - black: 7.9 - red: 35.7 - green: 59.4 - yellow: 47.6 - blue: 48.7 - magenta: 38.1 - cyan: 51.5 - white: 82.1 - brightBlack: 14.5 - brightRed: 45.1 - brightGreen: 75.8 - brightYellow: 60.2 - brightBlue: 62.8 - brightMagenta: 49.3 - brightCyan: 66.8 - brightWhite: 89.7 diff --git a/themes/hammerhead.yaml b/themes/hammerhead.yaml index be69cb44..6665afdf 100644 --- a/themes/hammerhead.yaml +++ b/themes/hammerhead.yaml @@ -2,12 +2,13 @@ name: "Hammerhead" source: marketplace_id: "thehedgefrog.hammerhead" version: "1.1.2" - installs: 470 + installs: 471 rating: 5 ratings: 1 author: "thehedgefrog" repo: "https://github.com/thehedgefrog/hammerhead-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thehedgefrog.hammerhead" + formats: null colors: bg: "#031F30" fg: "#D4D4D4" diff --git a/themes/hams-uno.yaml b/themes/hams-uno.yaml index a0b46a38..49bb931b 100644 --- a/themes/hams-uno.yaml +++ b/themes/hams-uno.yaml @@ -1,4 +1,4 @@ -name: "hams-uno" +name: "Hams Uno" source: marketplace_id: "CoreyHamren.hams-uno" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Corey Hamren" repo: "https://github.com/TheHamhams/hams-uno" url: "https://marketplace.visualstudio.com/items?itemName=CoreyHamren.hams-uno" + formats: null colors: bg: "#1D1D1D" fg: "#FFFFFF" diff --git a/themes/han.yaml b/themes/han.yaml index 53c8413c..fddc84f1 100644 --- a/themes/han.yaml +++ b/themes/han.yaml @@ -8,6 +8,7 @@ source: author: "Nathan Wu" repo: "https://github.com/na-wu/project-han" url: "https://marketplace.visualstudio.com/items?itemName=nathanwu.han-vscode" + formats: null colors: bg: "#16242F" fg: "#A2AABC" diff --git a/themes/happy-dark.yaml b/themes/happy-dark.yaml index 19f5e66a..79c568fb 100644 --- a/themes/happy-dark.yaml +++ b/themes/happy-dark.yaml @@ -8,6 +8,7 @@ source: author: "lynnjinjie" repo: "https://github.com/lynnjinjie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lynnjinjie.vscode-happy-theme" + formats: null colors: bg: "#222222" fg: "#DDDDDD" diff --git a/themes/happy-heart-1-dark-classic.yaml b/themes/happy-heart-1-dark-classic.yaml index e57c0550..12abe155 100644 --- a/themes/happy-heart-1-dark-classic.yaml +++ b/themes/happy-heart-1-dark-classic.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/happy-heart-10-forest-green.yaml b/themes/happy-heart-10-forest-green.yaml index cef77dcd..3d846f07 100644 --- a/themes/happy-heart-10-forest-green.yaml +++ b/themes/happy-heart-10-forest-green.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#0A1A0A" fg: "#F0FFF4" diff --git a/themes/happy-heart-11-emerald-green.yaml b/themes/happy-heart-11-emerald-green.yaml index 778d1755..1ae86312 100644 --- a/themes/happy-heart-11-emerald-green.yaml +++ b/themes/happy-heart-11-emerald-green.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#064E3B" fg: "#D1FAE5" diff --git a/themes/happy-heart-12-midnight-purple.yaml b/themes/happy-heart-12-midnight-purple.yaml index 6693cc3c..845d531b 100644 --- a/themes/happy-heart-12-midnight-purple.yaml +++ b/themes/happy-heart-12-midnight-purple.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#0F0B1A" fg: "#E0E7FF" diff --git a/themes/happy-heart-13-royal-purple.yaml b/themes/happy-heart-13-royal-purple.yaml index 13250a9a..1c9d97ea 100644 --- a/themes/happy-heart-13-royal-purple.yaml +++ b/themes/happy-heart-13-royal-purple.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#1A0F2E" fg: "#E0E7FF" diff --git a/themes/happy-heart-14-rose-gold.yaml b/themes/happy-heart-14-rose-gold.yaml index 013aba52..9260a3cd 100644 --- a/themes/happy-heart-14-rose-gold.yaml +++ b/themes/happy-heart-14-rose-gold.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#1F0F1A" fg: "#FDF2F8" diff --git a/themes/happy-heart-15-chilli-paper.yaml b/themes/happy-heart-15-chilli-paper.yaml index 218424b4..855417aa 100644 --- a/themes/happy-heart-15-chilli-paper.yaml +++ b/themes/happy-heart-15-chilli-paper.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#1A0A0A" fg: "#FEF2F2" diff --git a/themes/happy-heart-16-grey.yaml b/themes/happy-heart-16-grey.yaml index af9bca52..1ed8e0a2 100644 --- a/themes/happy-heart-16-grey.yaml +++ b/themes/happy-heart-16-grey.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#374151" fg: "#F9FAFB" diff --git a/themes/happy-heart-17-yellow.yaml b/themes/happy-heart-17-yellow.yaml index 1cfc4dec..4bb8d305 100644 --- a/themes/happy-heart-17-yellow.yaml +++ b/themes/happy-heart-17-yellow.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#1A1A0A" fg: "#FFF8DC" diff --git a/themes/happy-heart-2-dark-orange.yaml b/themes/happy-heart-2-dark-orange.yaml index 78fe7c9b..be7b31cb 100644 --- a/themes/happy-heart-2-dark-orange.yaml +++ b/themes/happy-heart-2-dark-orange.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#0A0A0A" fg: "#FFFFFF" diff --git a/themes/happy-heart-3-dark-purple.yaml b/themes/happy-heart-3-dark-purple.yaml index 2ef15096..c0b8159b 100644 --- a/themes/happy-heart-3-dark-purple.yaml +++ b/themes/happy-heart-3-dark-purple.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#0F0F0F" fg: "#FFFFFF" diff --git a/themes/happy-heart-4-dark-green.yaml b/themes/happy-heart-4-dark-green.yaml index aea7b61c..de9919e9 100644 --- a/themes/happy-heart-4-dark-green.yaml +++ b/themes/happy-heart-4-dark-green.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#0A0A0A" fg: "#FFFFFF" diff --git a/themes/happy-heart-5-deep-blue.yaml b/themes/happy-heart-5-deep-blue.yaml index 1547cd2c..6bba7aef 100644 --- a/themes/happy-heart-5-deep-blue.yaml +++ b/themes/happy-heart-5-deep-blue.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#010610" fg: "#E6F1FF" diff --git a/themes/happy-heart-6-ocean-blue.yaml b/themes/happy-heart-6-ocean-blue.yaml index 008595b4..8b86101d 100644 --- a/themes/happy-heart-6-ocean-blue.yaml +++ b/themes/happy-heart-6-ocean-blue.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#0A0E1A" fg: "#E6F1FF" diff --git a/themes/happy-heart-7-navy-blue.yaml b/themes/happy-heart-7-navy-blue.yaml index 27563ecd..3c9a88c8 100644 --- a/themes/happy-heart-7-navy-blue.yaml +++ b/themes/happy-heart-7-navy-blue.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#051537" fg: "#E6F1FF" diff --git a/themes/happy-heart-8-bright-light.yaml b/themes/happy-heart-8-bright-light.yaml index 61fcec55..877c17d7 100644 --- a/themes/happy-heart-8-bright-light.yaml +++ b/themes/happy-heart-8-bright-light.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#FFFFFF" fg: "#333333" diff --git a/themes/happy-heart-9-smooth-light.yaml b/themes/happy-heart-9-smooth-light.yaml index 51364dae..a177b5cc 100644 --- a/themes/happy-heart-9-smooth-light.yaml +++ b/themes/happy-heart-9-smooth-light.yaml @@ -8,6 +8,7 @@ source: author: "Khushdil Ansari" repo: "https://github.com/Khushdil380/happy-heart-theme" url: "https://marketplace.visualstudio.com/items?itemName=Khushdil380.happy-heart" + formats: null colors: bg: "#FAFAFA" fg: "#1F2937" diff --git a/themes/hapsida.yaml b/themes/hapsida.yaml index 5e70ad8b..765ccbe7 100644 --- a/themes/hapsida.yaml +++ b/themes/hapsida.yaml @@ -8,6 +8,7 @@ source: author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null colors: bg: "#080808" fg: "#EEFFFF" diff --git a/themes/hard-hacker-darker.yaml b/themes/hard-hacker-darker.yaml deleted file mode 100644 index 32471c35..00000000 --- a/themes/hard-hacker-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hard Hacker Darker" -source: - marketplace_id: "HardHacker.hard-hacker-theme" - version: "0.2.3" - installs: 12849 - rating: 5 - ratings: 7 - author: "Hard Hacker" - repo: "https://github.com/hardhackerlabs/theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" -colors: - bg: "#211E2A" - fg: "#EEE9FC" - black: "#211E2A" - red: "#E965A5" - green: "#B1F2A7" - yellow: "#EBDE76" - blue: "#B1BAF4" - magenta: "#E192EF" - cyan: "#B3F4F3" - white: "#EEE9FC" - brightBlack: "#8B81A7" - brightRed: "#E965A5" - brightGreen: "#B1F2A7" - brightYellow: "#EBDE76" - brightBlue: "#B1BAF4" - brightMagenta: "#E192EF" - brightCyan: "#B3F4F3" - brightWhite: "#EEE9FC" -meta: - mode: "dark" - accent: "red" - hue: 296 - pair: "Hard Hacker Light" - contrast: - fg: 93.1 - black: 0 - red: 42.9 - green: 86.8 - yellow: 83.1 - blue: 64.9 - magenta: 57.1 - cyan: 91 - white: 93.1 - brightBlack: 35.8 - brightRed: 42.9 - brightGreen: 86.8 - brightYellow: 83.1 - brightBlue: 64.9 - brightMagenta: 57.1 - brightCyan: 91 - brightWhite: 93.1 diff --git a/themes/hard-hacker-light.yaml b/themes/hard-hacker-light.yaml deleted file mode 100644 index f62a8950..00000000 --- a/themes/hard-hacker-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hard Hacker Light" -source: - marketplace_id: "HardHacker.hard-hacker-theme" - version: "0.2.3" - installs: 12849 - rating: 5 - ratings: 7 - author: "Hard Hacker" - repo: "https://github.com/hardhackerlabs/theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" -colors: - bg: "#FBFAFC" - fg: "#282433" - black: "#282433" - red: "#B33974" - green: "#3C8032" - yellow: "#A86200" - blue: "#5663B8" - magenta: "#832294" - cyan: "#23758C" - white: "#FBFAFC" - brightBlack: "#756F8C" - brightRed: "#B33974" - brightGreen: "#3C8032" - brightYellow: "#A86200" - brightBlue: "#5663B8" - brightMagenta: "#832294" - brightCyan: "#23758C" - brightWhite: "#FBFAFC" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Hard Hacker Darker" - contrast: - fg: 99.2 - black: 99.2 - red: 74.2 - green: 70.6 - yellow: 69.8 - blue: 74.1 - magenta: 83.8 - cyan: 73 - white: 0 - brightBlack: 70.3 - brightRed: 74.2 - brightGreen: 70.6 - brightYellow: 69.8 - brightBlue: 74.1 - brightMagenta: 83.8 - brightCyan: 73 - brightWhite: 0 diff --git a/themes/hard-hacker.yaml b/themes/hard-hacker.yaml deleted file mode 100644 index 41683c19..00000000 --- a/themes/hard-hacker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hard Hacker" -source: - marketplace_id: "HardHacker.hard-hacker-theme" - version: "0.2.3" - installs: 12849 - rating: 5 - ratings: 7 - author: "Hard Hacker" - repo: "https://github.com/hardhackerlabs/theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" -colors: - bg: "#282433" - fg: "#EEE9FC" - black: "#282433" - red: "#E965A5" - green: "#B1F2A7" - yellow: "#EBDE76" - blue: "#B1BAF4" - magenta: "#E192EF" - cyan: "#B3F4F3" - white: "#EEE9FC" - brightBlack: "#938AAD" - brightRed: "#E965A5" - brightGreen: "#B1F2A7" - brightYellow: "#EBDE76" - brightBlue: "#B1BAF4" - brightMagenta: "#E192EF" - brightCyan: "#B3F4F3" - brightWhite: "#EEE9FC" -meta: - mode: "dark" - accent: "red" - hue: 297 - pair: null - contrast: - fg: 92 - black: 0 - red: 41.9 - green: 85.8 - yellow: 82.1 - blue: 63.9 - magenta: 56 - cyan: 89.9 - white: 92 - brightBlack: 38.9 - brightRed: 41.9 - brightGreen: 85.8 - brightYellow: 82.1 - brightBlue: 63.9 - brightMagenta: 56 - brightCyan: 89.9 - brightWhite: 92 diff --git a/themes/harddark.yaml b/themes/harddark.yaml deleted file mode 100644 index 55c92420..00000000 --- a/themes/harddark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "HardDark" -source: - marketplace_id: "hardxs.hardxs" - version: "0.0.1" - installs: 40 - rating: 0 - ratings: 0 - author: "hardxs" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=hardxs.hardxs" -colors: - bg: "#060606" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FF1515" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.8 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.7 - cyan: 48.5 - white: 37.8 - brightBlack: 23 - brightRed: 39.5 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.3 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/hardwired-arctic-blue.yaml b/themes/hardwired-arctic-blue.yaml index 085e0d24..a0e57d65 100644 --- a/themes/hardwired-arctic-blue.yaml +++ b/themes/hardwired-arctic-blue.yaml @@ -8,6 +8,7 @@ source: author: "thwilson3" repo: "https://github.com/thwilson3/hardwired-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thwilson3.hardwired-color-theme" + formats: null colors: bg: "#000000" fg: "#7C9CA4" diff --git a/themes/hardwired-electric-lime.yaml b/themes/hardwired-electric-lime.yaml index eaad93c6..05d942e4 100644 --- a/themes/hardwired-electric-lime.yaml +++ b/themes/hardwired-electric-lime.yaml @@ -8,6 +8,7 @@ source: author: "thwilson3" repo: "https://github.com/thwilson3/hardwired-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thwilson3.hardwired-color-theme" + formats: null colors: bg: "#000000" fg: "#DEFF67" diff --git a/themes/hardwired-purple.yaml b/themes/hardwired-purple.yaml index 07b13449..ca859ff5 100644 --- a/themes/hardwired-purple.yaml +++ b/themes/hardwired-purple.yaml @@ -8,6 +8,7 @@ source: author: "thwilson3" repo: "https://github.com/thwilson3/hardwired-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=thwilson3.hardwired-color-theme" + formats: null colors: bg: "#000000" fg: "#D3B6E6" diff --git a/themes/hare-omagari.yaml b/themes/hare-omagari.yaml index 8be767a6..0908188e 100644 --- a/themes/hare-omagari.yaml +++ b/themes/hare-omagari.yaml @@ -8,6 +8,7 @@ source: author: "hashpp" repo: "https://github.com/hash112/veritas-code" url: "https://marketplace.visualstudio.com/items?itemName=hashpp.veritas-code" + formats: null colors: bg: "#18202C" fg: "#FFFFFF" diff --git a/themes/harley-quinn-theme.yaml b/themes/harley-quinn-theme.yaml index b73c74e0..67d1444e 100644 --- a/themes/harley-quinn-theme.yaml +++ b/themes/harley-quinn-theme.yaml @@ -8,6 +8,7 @@ source: author: "NyctibiusVII" repo: "https://github.com/Descomplica-ADS/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.descomplica-theme" + formats: null colors: bg: "#000000" fg: "#2AC7E3" diff --git a/themes/harmonized-dark.yaml b/themes/harmonized-dark.yaml deleted file mode 100644 index f0326e5a..00000000 --- a/themes/harmonized-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Harmonized dark" -source: - marketplace_id: "wheredoesyourmindgo.harmonized-vscode-theme" - version: "0.8.7" - installs: 823 - rating: 5 - ratings: 1 - author: "wheredoesyourmindgo" - repo: "https://github.com/wheredoesyourmindgo/harmonized-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.harmonized-vscode-theme" -colors: - bg: "#002B36" - fg: "#BBBBBB" - black: "#073642" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#002B36" - brightRed: "#CB4B16" - brightGreen: "#586E75" - brightYellow: "#657B83" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#93A1A1" - brightWhite: "#FDF6E3" -meta: - mode: "dark" - accent: "orange" - hue: 220 - pair: "Harmonized light" - contrast: - fg: 62.3 - black: 0 - red: 27.7 - green: 39.2 - yellow: 39.2 - blue: 34.3 - magenta: 28 - cyan: 40 - white: 89.5 - brightBlack: 0 - brightRed: 27.2 - brightGreen: 21.5 - brightYellow: 27.3 - brightBlue: 39.5 - brightMagenta: 28 - brightCyan: 46.4 - brightWhite: 98.6 diff --git a/themes/harmonized-light-hc.yaml b/themes/harmonized-light-hc.yaml deleted file mode 100644 index 702d943b..00000000 --- a/themes/harmonized-light-hc.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Harmonized light (hc)" -source: - marketplace_id: "wheredoesyourmindgo.harmonized-vscode-theme" - version: "0.8.7" - installs: 823 - rating: 5 - ratings: 1 - author: "wheredoesyourmindgo" - repo: "https://github.com/wheredoesyourmindgo/harmonized-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.harmonized-vscode-theme" -colors: - bg: "#FDF9EE" - fg: "#333333" - black: "#073642" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#002B36" - brightRed: "#CB4B16" - brightGreen: "#586E75" - brightYellow: "#657B83" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#93A1A1" - brightWhite: "#FDF6E3" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 95.1 - black: 95.4 - red: 67 - green: 55.5 - yellow: 55.5 - blue: 60.4 - magenta: 66.7 - cyan: 54.8 - white: 7.6 - brightBlack: 98.1 - brightRed: 67.5 - brightGreen: 73.3 - brightYellow: 67.4 - brightBlue: 55.2 - brightMagenta: 66.7 - brightCyan: 48.5 - brightWhite: 0 diff --git a/themes/harmonized-light.yaml b/themes/harmonized-light.yaml deleted file mode 100644 index f343bbee..00000000 --- a/themes/harmonized-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Harmonized light" -source: - marketplace_id: "wheredoesyourmindgo.harmonized-vscode-theme" - version: "0.8.7" - installs: 823 - rating: 5 - ratings: 1 - author: "wheredoesyourmindgo" - repo: "https://github.com/wheredoesyourmindgo/harmonized-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.harmonized-vscode-theme" -colors: - bg: "#FDF6E3" - fg: "#333333" - black: "#073642" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#002B36" - brightRed: "#CB4B16" - brightGreen: "#586E75" - brightYellow: "#657B83" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#93A1A1" - brightWhite: "#FDF6E3" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Harmonized dark" - contrast: - fg: 93.4 - black: 93.7 - red: 65.3 - green: 53.8 - yellow: 53.8 - blue: 58.7 - magenta: 65 - cyan: 53.1 - white: 0 - brightBlack: 96.4 - brightRed: 65.8 - brightGreen: 71.6 - brightYellow: 65.7 - brightBlue: 53.5 - brightMagenta: 65 - brightCyan: 46.7 - brightWhite: 0 diff --git a/themes/harmony-pulse.yaml b/themes/harmony-pulse.yaml index c0816006..170b45d4 100644 --- a/themes/harmony-pulse.yaml +++ b/themes/harmony-pulse.yaml @@ -8,6 +8,7 @@ source: author: "Harmony Codes" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HarmonyCodes.harmony-pulse" + formats: null colors: bg: "#1C1719" fg: "#EFECED" diff --git a/themes/harriet.yaml b/themes/harriet.yaml index 99c61b71..905dc04b 100644 --- a/themes/harriet.yaml +++ b/themes/harriet.yaml @@ -1,15 +1,16 @@ name: "Harriet" source: - marketplace_id: "MatthewCocker.focal" - version: "1.0.0" - installs: 119 - rating: 0 - ratings: 0 + marketplace_id: "MatthewCocker.harriet" + version: "0.0.5" + installs: 774 + rating: 5 + ratings: 1 author: "Matthew Cocker" - repo: "https://github.com/matthewcocker/focal" - url: "https://marketplace.visualstudio.com/items?itemName=MatthewCocker.focal" + repo: "git+https://github.com/matthewcocker/Harriet" + url: "https://marketplace.visualstudio.com/items?itemName=MatthewCocker.harriet" + formats: null colors: - bg: "#171717" + bg: "#282C34" fg: "#B7C5D3" black: "#41505E" red: "#D95468" @@ -30,23 +31,23 @@ colors: meta: mode: "dark" accent: "red" - hue: null + hue: 264 pair: null contrast: - fg: 69.5 - black: 12.6 - red: 35.2 - green: 69.9 - yellow: 71.3 - blue: 46.7 - magenta: 22.5 - cyan: 77.3 - white: 106.9 - brightBlack: 12.6 - brightRed: 35.2 - brightGreen: 69.9 - brightYellow: 71.3 - brightBlue: 46.7 - brightMagenta: 22.5 - brightCyan: 77.3 - brightWhite: 106.9 + fg: 66.3 + black: 9.4 + red: 32 + green: 66.7 + yellow: 68.1 + blue: 43.5 + magenta: 19.3 + cyan: 74.1 + white: 103.7 + brightBlack: 9.4 + brightRed: 32 + brightGreen: 66.7 + brightYellow: 68.1 + brightBlue: 43.5 + brightMagenta: 19.3 + brightCyan: 74.1 + brightWhite: 103.7 diff --git a/themes/harrys.yaml b/themes/harrys.yaml index d0993fe9..8effde09 100644 --- a/themes/harrys.yaml +++ b/themes/harrys.yaml @@ -8,6 +8,7 @@ source: author: "harry harry" repo: null url: "https://marketplace.visualstudio.com/items?itemName=harryharry.harry-harry-dark" + formats: null colors: bg: "#1E1E1E" fg: "#819AFF" diff --git a/themes/harshaddevpro.yaml b/themes/harshaddevpro.yaml index 062cdee4..01770573 100644 --- a/themes/harshaddevpro.yaml +++ b/themes/harshaddevpro.yaml @@ -8,6 +8,7 @@ source: author: "codewithharshad" repo: null url: "https://marketplace.visualstudio.com/items?itemName=codewithharshad.codewithharshad" + formats: null colors: bg: "#1E1E1E" fg: "#F8F8F2" diff --git a/themes/hashirama-senju-god-of-shinobi.yaml b/themes/hashirama-senju-god-of-shinobi.yaml deleted file mode 100644 index a94ae9ab..00000000 --- a/themes/hashirama-senju-god-of-shinobi.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hashirama Senju - God of Shinobi" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#1E2B1E" - fg: "#E8F5E8" - black: "#1E2B1E" - red: "#C85A54" - green: "#7FAF6E" - yellow: "#D4A574" - blue: "#6B9F7F" - magenta: "#9D7F6A" - cyan: "#5A8C6A" - white: "#D4E8D4" - brightBlack: "#8B9A8B" - brightRed: "#D87A73" - brightGreen: "#94C583" - brightYellow: "#E5BB8F" - brightBlue: "#84B598" - brightMagenta: "#B89885" - brightCyan: "#72A77F" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 145 - pair: null - contrast: - fg: 95.5 - black: 0 - red: 30.2 - green: 48.8 - yellow: 54.9 - blue: 41.1 - magenta: 33.7 - cyan: 31.9 - white: 86.1 - brightBlack: 42.2 - brightRed: 41.7 - brightGreen: 60.6 - brightYellow: 66.6 - brightBlue: 52.9 - brightMagenta: 46.6 - brightCyan: 44.9 - brightWhite: 104.5 diff --git a/themes/haube-blue-1.yaml b/themes/haube-blue-1.yaml index f64457d9..272e8a47 100644 --- a/themes/haube-blue-1.yaml +++ b/themes/haube-blue-1.yaml @@ -6,6 +6,7 @@ source: author: "kevinhaube" repo: "https://github.com/kevinhaube/haube-theme-library" url: "https://marketplace.visualstudio.com/items?itemName=kevinhaube.haube-theme-library" + formats: null colors: bg: "#222D45" fg: "#B1CAF0" diff --git a/themes/hawaii-contrast.yaml b/themes/hawaii-contrast.yaml deleted file mode 100644 index 5c965ebd..00000000 --- a/themes/hawaii-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hawaii-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#111110" - fg: "#E8E1DE" - black: "#1E1E1C" - red: "#BA0E2E" - green: "#EDBD44" - yellow: "#F75431" - blue: "#52B4D8" - magenta: "#E2922F" - cyan: "#92D8E8" - white: "#F2EFED" - brightBlack: "#464641" - brightRed: "#F03E5F" - brightGreen: "#F6DEA1" - brightYellow: "#FBA593" - brightBlue: "#A5D8EB" - brightMagenta: "#EEC188" - brightCyan: "#E6F6FA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 88.8 - black: 0 - red: 21 - green: 70.3 - yellow: 41.4 - blue: 55.2 - magenta: 52.6 - cyan: 75.9 - white: 97.2 - brightBlack: 9.9 - brightRed: 37.3 - brightGreen: 87.3 - brightYellow: 65.3 - brightBlue: 77.7 - brightMagenta: 73.2 - brightCyan: 99.5 - brightWhite: 107.4 diff --git a/themes/hawaii-light.yaml b/themes/hawaii-light.yaml deleted file mode 100644 index bba3dcac..00000000 --- a/themes/hawaii-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hawaii-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#6D6764" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#EDBD44" - yellow: "#F75431" - blue: "#52B4D8" - magenta: "#E2922F" - cyan: "#92D8E8" - white: "#7A7470" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#F6DEA1" - brightYellow: "#FBA593" - brightBlue: "#A5D8EB" - brightMagenta: "#EEC188" - brightCyan: "#E6F6FA" - brightWhite: "#A09A97" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 77.8 - black: 0 - red: 80.3 - green: 31.9 - yellow: 59.8 - blue: 46.4 - magenta: 48.8 - cyan: 26.6 - white: 72 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 15.9 - brightYellow: 36.7 - brightBlue: 24.9 - brightMagenta: 29.2 - brightCyan: 0 - brightWhite: 53.6 diff --git a/themes/hawaii.yaml b/themes/hawaii.yaml deleted file mode 100644 index 826fec0e..00000000 --- a/themes/hawaii.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hawaii" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#333130" - fg: "#E8E1DE" - black: "#403E3C" - red: "#BA0E2E" - green: "#EDBD44" - yellow: "#F75431" - blue: "#52B4D8" - magenta: "#E2922F" - cyan: "#92D8E8" - white: "#F2EFED" - brightBlack: "#686361" - brightRed: "#F03E5F" - brightGreen: "#F6DEA1" - brightYellow: "#FBA593" - brightBlue: "#A5D8EB" - brightMagenta: "#EEC188" - brightCyan: "#E6F6FA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83.9 - black: 0 - red: 16.1 - green: 65.3 - yellow: 36.5 - blue: 50.2 - magenta: 47.7 - cyan: 70.9 - white: 92.3 - brightBlack: 16.7 - brightRed: 32.3 - brightGreen: 82.4 - brightYellow: 60.3 - brightBlue: 72.7 - brightMagenta: 68.2 - brightCyan: 94.6 - brightWhite: 102.4 diff --git a/themes/hc-zenburn.yaml b/themes/hc-zenburn.yaml deleted file mode 100644 index 8a873584..00000000 --- a/themes/hc-zenburn.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hc-zenburn" -source: - marketplace_id: "drzix.hc-zenburn-vscode" - version: "0.3.0" - installs: 7768 - rating: 5 - ratings: 1 - author: "Kyeongmin Cho" - repo: "https://github.com/drzix/hc-zenburn-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=drzix.hc-zenburn-vscode" -colors: - bg: "#313131" - fg: "#DCDCCC" - black: "#4E4E4E" - red: "#D9A0A0" - green: "#6C8C6C" - yellow: "#EDDCAC" - blue: "#BEADC9" - magenta: "#B986A9" - cyan: "#94CACC" - white: "#DCDCCC" - brightBlack: "#5E5E5E" - brightRed: "#E66666" - brightGreen: "#8CAC8C" - brightYellow: "#FDECBC" - brightBlue: "#DAC0E9" - brightMagenta: "#E090C7" - brightCyan: "#A0EDF0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 79.4 - black: 8.1 - red: 53.3 - green: 31.3 - yellow: 80.6 - blue: 55.8 - magenta: 40.1 - cyan: 63.5 - white: 79.4 - brightBlack: 14.3 - brightRed: 37.2 - brightGreen: 47.5 - brightYellow: 90.6 - brightBlue: 68.6 - brightMagenta: 50.8 - brightCyan: 82.5 - brightWhite: 102.5 diff --git a/themes/hearth-dark.yaml b/themes/hearth-dark.yaml index ebd16631..dd7fd111 100644 --- a/themes/hearth-dark.yaml +++ b/themes/hearth-dark.yaml @@ -8,6 +8,7 @@ source: author: "HearthCode" repo: "https://github.com/TypeFusion/HearthTheme" url: "https://marketplace.visualstudio.com/items?itemName=hearth-code.hearth-theme" + formats: null colors: bg: "#1E1A12" fg: "#D0C4AA" diff --git a/themes/hearth-light.yaml b/themes/hearth-light.yaml index 7a4033e8..2666a8da 100644 --- a/themes/hearth-light.yaml +++ b/themes/hearth-light.yaml @@ -8,6 +8,7 @@ source: author: "HearthCode" repo: "https://github.com/TypeFusion/HearthTheme" url: "https://marketplace.visualstudio.com/items?itemName=hearth-code.hearth-theme" + formats: null colors: bg: "#F8F2E8" fg: "#2C1C08" diff --git a/themes/hecker-boy.yaml b/themes/hecker-boy.yaml index d7e97f37..e2e2a11e 100644 --- a/themes/hecker-boy.yaml +++ b/themes/hecker-boy.yaml @@ -8,6 +8,7 @@ source: author: "Sreehari521" repo: "https://github.com/Sreehari521/Hecker-Boy" url: "https://marketplace.visualstudio.com/items?itemName=Sreehari521.hecker-boy" + formats: null colors: bg: "#001926" fg: "#059600" diff --git a/themes/held.yaml b/themes/held.yaml index 39b0990a..00269b66 100644 --- a/themes/held.yaml +++ b/themes/held.yaml @@ -8,6 +8,7 @@ source: author: "techwithcarlos" repo: "https://github.com/CarlosTaubeler/Held" url: "https://marketplace.visualstudio.com/items?itemName=techwithcarlos.Held" + formats: null colors: bg: "#142335" fg: "#D7DBE0" diff --git a/themes/helion.yaml b/themes/helion.yaml index c26c9f8f..0cdd98a3 100644 --- a/themes/helion.yaml +++ b/themes/helion.yaml @@ -8,6 +8,7 @@ source: author: "Brandon Gandy" repo: "https://github.com/brandongandy/vscode-helion" url: "https://marketplace.visualstudio.com/items?itemName=BrandonGandy.helion" + formats: null colors: bg: "#263849" fg: "#A8B6C0" diff --git a/themes/helios-solarized-dark.yaml b/themes/helios-solarized-dark.yaml deleted file mode 100644 index 1090b567..00000000 --- a/themes/helios-solarized-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Helios Solarized Dark" -source: - marketplace_id: "santoso-wijaya.helios-selene" - version: "0.3.18" - installs: 3055 - rating: 5 - ratings: 4 - author: "Santoso Wijaya" - repo: "https://github.com/santoso-wijaya/vscode-helios-selene" - url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" -colors: - bg: "#002B36" - fg: "#92A1A1" - black: "#003641" - red: "#E0332E" - green: "#8D9800" - yellow: "#BB8801" - blue: "#008DD1" - magenta: "#F2579C" - cyan: "#1FA198" - white: "#829496" - brightBlack: "#002B36" - brightRed: "#CF4B15" - brightGreen: "#8D9800" - brightYellow: "#BB8801" - brightBlue: "#008DD1" - brightMagenta: "#5C73C4" - brightCyan: "#008DD1" - brightWhite: "#92A1A1" -meta: - mode: "dark" - accent: "orange" - hue: 220 - pair: "Helios Solarized Light" - contrast: - fg: 46.3 - black: 0 - red: 28.7 - green: 39.6 - yellow: 39.8 - blue: 34.7 - magenta: 40.3 - cyan: 39.8 - white: 39.4 - brightBlack: 0 - brightRed: 28 - brightGreen: 39.6 - brightYellow: 39.8 - brightBlue: 34.7 - brightMagenta: 27.4 - brightCyan: 34.7 - brightWhite: 46.3 diff --git a/themes/helios-solarized-light.yaml b/themes/helios-solarized-light.yaml deleted file mode 100644 index 56a60c63..00000000 --- a/themes/helios-solarized-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Helios Solarized Light" -source: - marketplace_id: "santoso-wijaya.helios-selene" - version: "0.3.18" - installs: 3055 - rating: 5 - ratings: 4 - author: "Santoso Wijaya" - repo: "https://github.com/santoso-wijaya/vscode-helios-selene" - url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" -colors: - bg: "#FFF6E3" - fg: "#566E76" - black: "#F0E7D5" - red: "#E0332E" - green: "#8D9800" - yellow: "#BB8801" - blue: "#008DD1" - magenta: "#F2579C" - cyan: "#1FA198" - white: "#637B82" - brightBlack: "#FFF6E3" - brightRed: "#CF4B15" - brightGreen: "#8D9800" - brightYellow: "#BB8801" - brightBlue: "#008DD1" - brightMagenta: "#5C73C4" - brightCyan: "#008DD1" - brightWhite: "#566E76" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Helios Solarized Dark" - contrast: - fg: 71.9 - black: 0 - red: 64.5 - green: 53.7 - yellow: 53.5 - blue: 58.6 - magenta: 53 - cyan: 53.5 - white: 66.1 - brightBlack: 0 - brightRed: 65.2 - brightGreen: 53.7 - brightYellow: 53.5 - brightBlue: 58.6 - brightMagenta: 65.8 - brightCyan: 58.6 - brightWhite: 71.9 diff --git a/themes/helix.yaml b/themes/helix.yaml index 2af096e6..41e9c291 100644 --- a/themes/helix.yaml +++ b/themes/helix.yaml @@ -1,13 +1,14 @@ -name: "Helix+" +name: "Helix" source: marketplace_id: "codewonders.helix" version: "0.1.0" - installs: 3406 + installs: 3407 rating: 5 ratings: 1 author: "Adenekan Wonderful" repo: "git+https://github.com/adenekan41/Helix" url: "https://marketplace.visualstudio.com/items?itemName=codewonders.helix" + formats: null colors: bg: "#1A1B2F" fg: "#D6DEEB" diff --git a/themes/hell-pine.yaml b/themes/hell-pine.yaml index 61e0fe77..086410d3 100644 --- a/themes/hell-pine.yaml +++ b/themes/hell-pine.yaml @@ -1,13 +1,14 @@ -name: "Hell Pine" +name: "hell pine" source: marketplace_id: "ABX.hell-pine" version: "0.0.3" - installs: 722 + installs: 724 rating: 5 ratings: 1 author: "ABX" repo: "https://github.com/AbiXnash/hell-pine" url: "https://marketplace.visualstudio.com/items?itemName=ABX.hell-pine" + formats: null colors: bg: "#16181D" fg: "#E0DEF4" diff --git a/themes/hellfire.yaml b/themes/hellfire.yaml index 324136bc..0a9d0d76 100644 --- a/themes/hellfire.yaml +++ b/themes/hellfire.yaml @@ -8,6 +8,7 @@ source: author: "Alex Charbonneau" repo: "https://github.com/alexandrec90/hellfire_theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexCharbonneau.hellfire-theme" + formats: null colors: bg: "#0A0000" fg: "#F0C090" diff --git a/themes/hello-world-theme.yaml b/themes/hello-world-theme.yaml deleted file mode 100644 index 821de0cb..00000000 --- a/themes/hello-world-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "{Hello World!} Theme" -source: - marketplace_id: "HelloWorld01.HelloWorld-Theme" - version: "1.0.0" - installs: 29 - rating: 0 - ratings: 0 - author: "HelloWorld!" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HelloWorld01.HelloWorld-Theme" -colors: - bg: "#0F0F0F" - fg: "#0CB686" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#FFFF00" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#E8E876" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 51.3 - black: 0 - red: 27.3 - green: 53.6 - yellow: 102.3 - blue: 28.1 - magenta: 30.4 - cyan: 48.2 - white: 90.6 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 89 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/hendrikkels-dark.yaml b/themes/hendrikkels-dark.yaml index 4d1cbd4f..b2cfde01 100644 --- a/themes/hendrikkels-dark.yaml +++ b/themes/hendrikkels-dark.yaml @@ -8,6 +8,7 @@ source: author: "hendrikkels" repo: "https://github.com/hendrikkels/hendrikkels-theme" url: "https://marketplace.visualstudio.com/items?itemName=hendrikkels.hendrikkels" + formats: null colors: bg: "#1A1A1A" fg: "#8F8D88" diff --git a/themes/hendrikkels-light.yaml b/themes/hendrikkels-light.yaml index 567c5685..026ab934 100644 --- a/themes/hendrikkels-light.yaml +++ b/themes/hendrikkels-light.yaml @@ -8,6 +8,7 @@ source: author: "hendrikkels" repo: "https://github.com/hendrikkels/hendrikkels-theme" url: "https://marketplace.visualstudio.com/items?itemName=hendrikkels.hendrikkels" + formats: null colors: bg: "#FFFFFF" fg: "#424B54" diff --git a/themes/heptapod.yaml b/themes/heptapod.yaml index 10dfb649..ca019d61 100644 --- a/themes/heptapod.yaml +++ b/themes/heptapod.yaml @@ -8,6 +8,7 @@ source: author: "Kenzie Bottoms" repo: "git+https://github.com/kenziebottoms/vscode-theme-heptapod" url: "https://marketplace.visualstudio.com/items?itemName=kenziebottoms.heptapod" + formats: null colors: bg: "#0D2935" fg: "#F7F7F7" diff --git a/themes/herakles.yaml b/themes/herakles.yaml index 4ba8c0e1..5c095379 100644 --- a/themes/herakles.yaml +++ b/themes/herakles.yaml @@ -8,6 +8,7 @@ source: author: "Matan Cohen" repo: "https://github.com/comatan96/Herakles-theme" url: "https://marketplace.visualstudio.com/items?itemName=MatanCohen.herakles" + formats: null colors: bg: "#151C1D" fg: "#CBCFAE" diff --git a/themes/herbal.yaml b/themes/herbal.yaml index 50b872a3..6d9382a4 100644 --- a/themes/herbal.yaml +++ b/themes/herbal.yaml @@ -8,6 +8,7 @@ source: author: "Lotli" repo: "https://github.com/Lotli/herbal-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Lotli.herbal-theme" + formats: null colors: bg: "#28211F" fg: "#FFECD4" diff --git a/themes/hereafter.yaml b/themes/hereafter.yaml index 7c5a9915..6fd9b21b 100644 --- a/themes/hereafter.yaml +++ b/themes/hereafter.yaml @@ -8,6 +8,7 @@ source: author: "cyarika" repo: "https://github.com/cyareka/hereafter" url: "https://marketplace.visualstudio.com/items?itemName=cyar-ika.hereafter" + formats: null colors: bg: "#22212C" fg: "#C4B5CD" diff --git a/themes/hero-dark.yaml b/themes/hero-dark.yaml index 8c8e11ed..3c91f87f 100644 --- a/themes/hero-dark.yaml +++ b/themes/hero-dark.yaml @@ -8,6 +8,7 @@ source: author: "Joshua Hero" repo: "https://github.com/jhdcruz/hero-theme" url: "https://marketplace.visualstudio.com/items?itemName=jhdcruz.hero-theme" + formats: null colors: bg: "#151515" fg: "#D1D1D1" diff --git a/themes/heroku-contrast.yaml b/themes/heroku-contrast.yaml deleted file mode 100644 index df4a3d95..00000000 --- a/themes/heroku-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "heroku-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0B0B0F" - fg: "#C8C7D5" - black: "#16161E" - red: "#BA0E2E" - green: "#585480" - yellow: "#7873AE" - blue: "#FFFFFF" - magenta: "#7873AE" - cyan: "#A6FA62" - white: "#D6D6E0" - brightBlack: "#36364A" - brightRed: "#F03E5F" - brightGreen: "#8C89B1" - brightYellow: "#B6B4D3" - brightBlue: "#FFFFFF" - brightMagenta: "#B6B4D3" - brightCyan: "#DEFDC5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 73.3 - black: 0 - red: 21.3 - green: 17.5 - yellow: 31.6 - blue: 107.7 - magenta: 31.6 - cyan: 90.3 - white: 82 - brightBlack: 0 - brightRed: 37.6 - brightGreen: 40.9 - brightYellow: 63.2 - brightBlue: 107.7 - brightMagenta: 63.2 - brightCyan: 100 - brightWhite: 107.7 diff --git a/themes/heroku-light.yaml b/themes/heroku-light.yaml deleted file mode 100644 index 15c27215..00000000 --- a/themes/heroku-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "heroku-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#F7F7FC" - fg: "#1B1B24" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#585480" - yellow: "#7873AE" - blue: "#B0ADD3" - magenta: "#7873AE" - cyan: "#6DAF36" - white: "#262633" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#8C89B1" - brightYellow: "#B6B4D3" - brightBlue: "#F0EFF7" - brightMagenta: "#B6B4D3" - brightCyan: "#A1D576" - brightWhite: "#47475E" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99.4 - black: 0 - red: 75.8 - green: 79.7 - yellow: 65.3 - blue: 37.7 - magenta: 65.3 - cyan: 47.3 - white: 97.2 - brightBlack: 0 - brightRed: 59.3 - brightGreen: 56 - brightYellow: 34.4 - brightBlue: 0 - brightMagenta: 34.4 - brightCyan: 26 - brightWhite: 86.1 diff --git a/themes/heroku.yaml b/themes/heroku.yaml deleted file mode 100644 index daeb4afd..00000000 --- a/themes/heroku.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "heroku" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#1B1B24" - fg: "#C8C7D5" - black: "#262633" - red: "#BA0E2E" - green: "#585480" - yellow: "#7873AE" - blue: "#FFFFFF" - magenta: "#7873AE" - cyan: "#A6FA62" - white: "#D6D6E0" - brightBlack: "#47475E" - brightRed: "#F03E5F" - brightGreen: "#8C89B1" - brightYellow: "#B6B4D3" - brightBlue: "#FFFFFF" - brightMagenta: "#B6B4D3" - brightCyan: "#DEFDC5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 71.9 - black: 0 - red: 19.9 - green: 16.2 - yellow: 30.3 - blue: 106.3 - magenta: 30.3 - cyan: 88.9 - white: 80.6 - brightBlack: 10.1 - brightRed: 36.2 - brightGreen: 39.6 - brightYellow: 61.9 - brightBlue: 106.3 - brightMagenta: 61.9 - brightCyan: 98.6 - brightWhite: 106.3 diff --git a/themes/herzha-dark.yaml b/themes/herzha-dark.yaml index 6f0d45d2..9af3430b 100644 --- a/themes/herzha-dark.yaml +++ b/themes/herzha-dark.yaml @@ -8,6 +8,8 @@ source: author: "madhanmaaz" repo: "https://github.com/madhanmaaz/herzha-theme" url: "https://marketplace.visualstudio.com/items?itemName=madhanmaaz.vscode-herzha-theme" + formats: + sublime: "https://raw.githubusercontent.com/madhanmaaz/herzha-theme/main/packages/sublime-text/themes/herzha-dark.tmTheme" colors: bg: "#141418" fg: "#A9B1D6" diff --git a/themes/herzha-flux.yaml b/themes/herzha-flux.yaml index 28719397..22cd51ba 100644 --- a/themes/herzha-flux.yaml +++ b/themes/herzha-flux.yaml @@ -8,6 +8,8 @@ source: author: "madhanmaaz" repo: "https://github.com/madhanmaaz/herzha-theme" url: "https://marketplace.visualstudio.com/items?itemName=madhanmaaz.vscode-herzha-theme" + formats: + sublime: "https://raw.githubusercontent.com/madhanmaaz/herzha-theme/main/packages/sublime-text/themes/herzha-dark.tmTheme" colors: bg: "#0B0D14" fg: "#B0B8E6" diff --git a/themes/herzha-vanta.yaml b/themes/herzha-vanta.yaml index 718dc9a4..88071a30 100644 --- a/themes/herzha-vanta.yaml +++ b/themes/herzha-vanta.yaml @@ -8,6 +8,8 @@ source: author: "madhanmaaz" repo: "https://github.com/madhanmaaz/herzha-theme" url: "https://marketplace.visualstudio.com/items?itemName=madhanmaaz.vscode-herzha-theme" + formats: + sublime: "https://raw.githubusercontent.com/madhanmaaz/herzha-theme/main/packages/sublime-text/themes/herzha-dark.tmTheme" colors: bg: "#0A0A0D" fg: "#A9B1D6" diff --git a/themes/hfa-theme.yaml b/themes/hfa-theme.yaml index 9d8f9e0f..cd7e2de3 100644 --- a/themes/hfa-theme.yaml +++ b/themes/hfa-theme.yaml @@ -8,6 +8,7 @@ source: author: "HFA-NYC" repo: "https://github.com/hfa-ny/vscode-theme-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=HFA-NYC.hani-dark-pro" + formats: null colors: bg: "#111111" fg: "#ABB2BF" diff --git a/themes/hhp1614.yaml b/themes/hhp1614.yaml index c305a749..4f3c1c3d 100644 --- a/themes/hhp1614.yaml +++ b/themes/hhp1614.yaml @@ -8,6 +8,7 @@ source: author: "hhp1614" repo: "https://github.com/hhp1614/vscode-green-soft-theme" url: "https://marketplace.visualstudio.com/items?itemName=hhp1614.green-soft-theme" + formats: null colors: bg: "#FDF6E3" fg: "#586E75" diff --git a/themes/hi-dark.yaml b/themes/hi-dark.yaml index 9777365d..2959c2b8 100644 --- a/themes/hi-dark.yaml +++ b/themes/hi-dark.yaml @@ -8,6 +8,7 @@ source: author: "Jiakun Zhao" repo: "https://github.com/jiakun-zhao/vscode-theme-hi" url: "https://marketplace.visualstudio.com/items?itemName=jiakun-zhao.vscode-theme-hi" + formats: null colors: bg: "#111111" fg: "#DBD7CA" diff --git a/themes/hi-light.yaml b/themes/hi-light.yaml index dca648ed..0371a3e1 100644 --- a/themes/hi-light.yaml +++ b/themes/hi-light.yaml @@ -8,6 +8,7 @@ source: author: "Jiakun Zhao" repo: "https://github.com/jiakun-zhao/vscode-theme-hi" url: "https://marketplace.visualstudio.com/items?itemName=jiakun-zhao.vscode-theme-hi" + formats: null colors: bg: "#FFFFFF" fg: "#393A34" diff --git a/themes/hibiscus.yaml b/themes/hibiscus.yaml deleted file mode 100644 index e211bc59..00000000 --- a/themes/hibiscus.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hibiscus" -source: - marketplace_id: "Sarfaraz.Bahej" - version: "1.0.1" - installs: 102 - rating: 0 - ratings: 0 - author: "Sarfaraz" - repo: "https://github.com/Muhammad-Sarfaraz/Bahej" - url: "https://marketplace.visualstudio.com/items?itemName=Sarfaraz.Bahej" -colors: - bg: "#1F1F1F" - fg: "#9FABB1" - black: "#181818" - red: "#993D3D" - green: "#1E7C4D" - yellow: "#AC8747" - blue: "#2E6E9C" - magenta: "#7260AA" - cyan: "#2B9088" - white: "#D6DFE4" - brightBlack: "#232424" - brightRed: "#C16565" - brightGreen: "#46A475" - brightYellow: "#D4AF6F" - brightBlue: "#5696C4" - brightMagenta: "#9A88D2" - brightCyan: "#53B8B0" - brightWhite: "#D6DFE4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 53.7 - black: 0 - red: 17.1 - green: 24.4 - yellow: 39.1 - blue: 22.6 - magenta: 23.6 - cyan: 34 - white: 84.3 - brightBlack: 0 - brightRed: 33.2 - brightGreen: 42.4 - brightYellow: 60 - brightBlue: 40.7 - brightMagenta: 42.2 - brightCyan: 53.5 - brightWhite: 84.3 diff --git a/themes/high-alert-crimson.yaml b/themes/high-alert-crimson.yaml deleted file mode 100644 index 65a0dfa7..00000000 --- a/themes/high-alert-crimson.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High-Alert-Crimson" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#070A0D" - fg: "#FAFAFA" - black: "#070A0D" - red: "#410101" - green: "#29C3A0" - yellow: "#D29922" - blue: "#F23D2C" - magenta: "#F23D2C" - cyan: "#29C3A0" - white: "#FAFAFA" - brightBlack: "#070A0D" - brightRed: "#410101" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#F23D2C" - brightMagenta: "#F23D2C" - brightCyan: "#29C3A0" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 104.4 - black: 0 - red: 0 - green: 58.5 - yellow: 52.6 - blue: 37.3 - magenta: 37.3 - cyan: 58.5 - white: 104.4 - brightBlack: 0 - brightRed: 0 - brightGreen: 58.5 - brightYellow: 52.6 - brightBlue: 37.3 - brightMagenta: 37.3 - brightCyan: 58.5 - brightWhite: 104.4 diff --git a/themes/high-contrast-april-light-theme.yaml b/themes/high-contrast-april-light-theme.yaml deleted file mode 100644 index 93ee71da..00000000 --- a/themes/high-contrast-april-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Contrast April Light Theme" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#FFF8E1" - fg: "#3E2723" - black: "#4E342E" - red: "#D84315" - green: "#8BC34A" - yellow: "#FFC107" - blue: "#1976D2" - magenta: "#7B1FA2" - cyan: "#0097A7" - white: "#E0E0E0" - brightBlack: "#616161" - brightRed: "#F4511E" - brightGreen: "#AED581" - brightYellow: "#FFD54F" - brightBlue: "#64B5F6" - brightMagenta: "#CE93D8" - brightCyan: "#4DD0E1" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.1 - black: 91.8 - red: 65.3 - green: 36.7 - yellow: 23.6 - blue: 67.2 - magenta: 82.9 - cyan: 57.8 - white: 11.6 - brightBlack: 76.7 - brightRed: 56.9 - brightGreen: 24.9 - brightYellow: 15.5 - brightBlue: 39.2 - brightMagenta: 42.8 - brightCyan: 29.9 - brightWhite: 0 diff --git a/themes/high-contrast-april-theme.yaml b/themes/high-contrast-april-theme.yaml deleted file mode 100644 index 446e34ff..00000000 --- a/themes/high-contrast-april-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Contrast April Theme" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#143D59" - fg: "#E6FFFA" - black: "#143D59" - red: "#FF6347" - green: "#32CD32" - yellow: "#FFD700" - blue: "#1E90FF" - magenta: "#8A2BE2" - cyan: "#00FFFF" - white: "#E6FFFA" - brightBlack: "#C3F3EE" - brightRed: "#FF4500" - brightGreen: "#7CFC00" - brightYellow: "#FFFF00" - brightBlue: "#4682B4" - brightMagenta: "#DA70D6" - brightCyan: "#AFEEEE" - brightWhite: "#E6FFFA" -meta: - mode: "dark" - accent: "green" - hue: 242 - pair: null - contrast: - fg: 96.2 - black: 0 - red: 38.7 - green: 53.3 - yellow: 76.2 - blue: 34.6 - magenta: 15.3 - cyan: 84.1 - white: 96.2 - brightBlack: 85.8 - brightRed: 33.3 - brightGreen: 79.8 - brightYellow: 94.6 - brightBlue: 25.5 - brightMagenta: 39 - brightCyan: 81.4 - brightWhite: 96.2 diff --git a/themes/high-contrast-august-light-theme.yaml b/themes/high-contrast-august-light-theme.yaml deleted file mode 100644 index 5630cd23..00000000 --- a/themes/high-contrast-august-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Contrast August Light Theme" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#FFF8E1" - fg: "#1A237E" - black: "#1A237E" - red: "#FF3D00" - green: "#4CAF50" - yellow: "#FFC107" - blue: "#1976D2" - magenta: "#8E24AA" - cyan: "#00ACC1" - white: "#E0E0E0" - brightBlack: "#757575" - brightRed: "#FF6F00" - brightGreen: "#81C784" - brightYellow: "#FFD740" - brightBlue: "#64B5F6" - brightMagenta: "#BA68C8" - brightCyan: "#4DD0E1" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.7 - black: 94.7 - red: 57.1 - green: 49.1 - yellow: 23.6 - blue: 67.2 - magenta: 78.9 - cyan: 48.1 - white: 11.6 - brightBlack: 67.8 - brightRed: 48.6 - brightGreen: 34.7 - brightYellow: 14.8 - brightBlue: 39.2 - brightMagenta: 58.6 - brightCyan: 29.9 - brightWhite: 0 diff --git a/themes/high-contrast-february-dark-theme.yaml b/themes/high-contrast-february-dark-theme.yaml deleted file mode 100644 index 3ec0e38b..00000000 --- a/themes/high-contrast-february-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Contrast February Dark Theme" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#1E1E2E" - fg: "#EAEAFF" - black: "#3B4252" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#ECEFF4" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: 284 - pair: null - contrast: - fg: 93.2 - black: 0 - red: 31.9 - green: 60.6 - yellow: 75.3 - blue: 47.6 - magenta: 45.4 - cyan: 61.6 - white: 95.2 - brightBlack: 14.3 - brightRed: 31.9 - brightGreen: 60.6 - brightYellow: 75.3 - brightBlue: 47.6 - brightMagenta: 45.4 - brightCyan: 59.5 - brightWhite: 95.2 diff --git a/themes/high-contrast-february-light-theme-accessible.yaml b/themes/high-contrast-february-light-theme-accessible.yaml deleted file mode 100644 index f5870a9d..00000000 --- a/themes/high-contrast-february-light-theme-accessible.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Contrast February Light Theme - Accessible" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#FFFFFF" - fg: "#1A1A1A" - black: "#263238" - red: "#D32F2F" - green: "#388E3C" - yellow: "#F57F17" - blue: "#1976D2" - magenta: "#7B1FA2" - cyan: "#0097A7" - white: "#ECEFF1" - brightBlack: "#546E7A" - brightRed: "#E64A19" - brightGreen: "#388E3C" - brightYellow: "#F57F17" - brightBlue: "#1976D2" - brightMagenta: "#7B1FA2" - brightCyan: "#0097A7" - brightWhite: "#ECEFF1" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 104.3 - black: 99.5 - red: 72.8 - green: 68 - yellow: 50.9 - blue: 71.4 - magenta: 87.1 - cyan: 62 - white: 0 - brightBlack: 76.9 - brightRed: 65.4 - brightGreen: 68 - brightYellow: 50.9 - brightBlue: 71.4 - brightMagenta: 87.1 - brightCyan: 62 - brightWhite: 0 diff --git a/themes/high-contrast-february-theme-accessible.yaml b/themes/high-contrast-february-theme-accessible.yaml deleted file mode 100644 index b46f5aa0..00000000 --- a/themes/high-contrast-february-theme-accessible.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Contrast February Theme - Accessible" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#0D1B2A" - fg: "#FFFFFF" - black: "#0D1B2A" - red: "#FF4500" - green: "#32CD32" - yellow: "#FFD700" - blue: "#1E90FF" - magenta: "#8A2BE2" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#A9A9A9" - brightRed: "#FF6347" - brightGreen: "#7CFC00" - brightYellow: "#FFFF00" - brightBlue: "#4682B4" - brightMagenta: "#DA70D6" - brightCyan: "#AFEEEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 251 - pair: null - contrast: - fg: 106.5 - black: 0 - red: 40 - green: 60 - yellow: 82.9 - blue: 41.3 - magenta: 21.9 - cyan: 90.8 - white: 106.5 - brightBlack: 54.3 - brightRed: 45.4 - brightGreen: 86.5 - brightYellow: 101.3 - brightBlue: 32.2 - brightMagenta: 45.7 - brightCyan: 88.1 - brightWhite: 106.5 diff --git a/themes/high-contrast-july-light-theme.yaml b/themes/high-contrast-july-light-theme.yaml deleted file mode 100644 index c6a5863c..00000000 --- a/themes/high-contrast-july-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Contrast July Light Theme" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#FFFDE7" - fg: "#3E2723" - black: "#4E342E" - red: "#D84315" - green: "#8BC34A" - yellow: "#FFC107" - blue: "#1976D2" - magenta: "#7B1FA2" - cyan: "#0097A7" - white: "#E0E0E0" - brightBlack: "#616161" - brightRed: "#E64A19" - brightGreen: "#AED581" - brightYellow: "#FFD54F" - brightBlue: "#64B5F6" - brightMagenta: "#CE93D8" - brightCyan: "#4DD0E1" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.5 - black: 94.2 - red: 67.7 - green: 39.1 - yellow: 26 - blue: 69.5 - magenta: 85.3 - cyan: 60.2 - white: 14 - brightBlack: 79.1 - brightRed: 63.5 - brightGreen: 27.3 - brightYellow: 17.9 - brightBlue: 41.6 - brightMagenta: 45.1 - brightCyan: 32.3 - brightWhite: 0 diff --git a/themes/high-contrast-june-light-theme.yaml b/themes/high-contrast-june-light-theme.yaml deleted file mode 100644 index 8d901aca..00000000 --- a/themes/high-contrast-june-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Contrast June Light Theme" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#E3F2FD" - fg: "#1A237E" - black: "#263238" - red: "#D32F2F" - green: "#388E3C" - yellow: "#FFA000" - blue: "#1976D2" - magenta: "#7B1FA2" - cyan: "#0288D1" - white: "#CFD8DC" - brightBlack: "#546E7A" - brightRed: "#E64A19" - brightGreen: "#81C784" - brightYellow: "#FFB74D" - brightBlue: "#64B5F6" - brightMagenta: "#BA68C8" - brightCyan: "#4DD0E1" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.8 - black: 90.4 - red: 63.8 - green: 58.9 - yellow: 30.3 - blue: 62.3 - magenta: 78.1 - cyan: 56.3 - white: 12.3 - brightBlack: 67.8 - brightRed: 56.3 - brightGreen: 29.9 - brightYellow: 22.1 - brightBlue: 34.3 - brightMagenta: 53.8 - brightCyan: 25.1 - brightWhite: 7.8 diff --git a/themes/high-contrast-march-dark-theme-accessible.yaml b/themes/high-contrast-march-dark-theme-accessible.yaml deleted file mode 100644 index 869a9041..00000000 --- a/themes/high-contrast-march-dark-theme-accessible.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Contrast March Dark Theme - Accessible" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#1B1F30" - fg: "#EDEEFF" - black: "#303B5A" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#70A4DC" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#ECEFF4" - brightBlack: "#4D566C" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#70A4DC" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: 274 - pair: "High Contrast March Light Theme - Accessible" - contrast: - fg: 95.3 - black: 0 - red: 31.9 - green: 60.6 - yellow: 75.3 - blue: 48.9 - magenta: 45.4 - cyan: 61.6 - white: 95.1 - brightBlack: 14.4 - brightRed: 31.9 - brightGreen: 60.6 - brightYellow: 75.3 - brightBlue: 48.9 - brightMagenta: 45.4 - brightCyan: 59.5 - brightWhite: 95.1 diff --git a/themes/high-contrast-march-dark-theme.yaml b/themes/high-contrast-march-dark-theme.yaml deleted file mode 100644 index 48b59b59..00000000 --- a/themes/high-contrast-march-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Contrast March Dark Theme" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#1B2B34" - fg: "#A7ADBA" - black: "#343D46" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#8FA1B3" - magenta: "#B48EAD" - cyan: "#96B5B4" - white: "#C0C5CE" - brightBlack: "#65737E" - brightRed: "#EC7279" - brightGreen: "#B9D189" - brightYellow: "#FFD580" - brightBlue: "#8FA1B3" - brightMagenta: "#CC9ED1" - brightCyan: "#AAD1D1" - brightWhite: "#D8DEE9" -meta: - mode: "dark" - accent: "orange" - hue: 234 - pair: null - contrast: - fg: 54.1 - black: 0 - red: 30.3 - green: 59 - yellow: 73.7 - blue: 46.6 - magenta: 43.8 - cyan: 55.3 - white: 67.6 - brightBlack: 24.2 - brightRed: 43.4 - brightGreen: 69.7 - brightYellow: 80.9 - brightBlue: 46.6 - brightMagenta: 54.4 - brightCyan: 70.6 - brightWhite: 82.7 diff --git a/themes/high-contrast-march-light-theme-accessible.yaml b/themes/high-contrast-march-light-theme-accessible.yaml deleted file mode 100644 index a172aa20..00000000 --- a/themes/high-contrast-march-light-theme-accessible.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Contrast March Light Theme - Accessible" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#FEFBEA" - fg: "#333333" - black: "#424242" - red: "#D9534F" - green: "#4CAF50" - yellow: "#FFC107" - blue: "#1976D2" - magenta: "#9C27B0" - cyan: "#00BCD4" - white: "#E0E0E0" - brightBlack: "#737373" - brightRed: "#F44336" - brightGreen: "#66BB6A" - brightYellow: "#FFD54F" - brightBlue: "#42A5F5" - brightMagenta: "#BA68C8" - brightCyan: "#4DD0E1" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "High Contrast March Dark Theme - Accessible" - contrast: - fg: 96 - black: 90.6 - red: 63.4 - green: 50.6 - yellow: 25.1 - blue: 68.7 - magenta: 77.4 - cyan: 41.9 - white: 13.1 - brightBlack: 70.2 - brightRed: 60.2 - brightGreen: 43.7 - brightYellow: 17 - brightBlue: 48.5 - brightMagenta: 60.1 - brightCyan: 31.4 - brightWhite: 0 diff --git a/themes/high-contrast-march-theme-accessible.yaml b/themes/high-contrast-march-theme-accessible.yaml deleted file mode 100644 index a27b39c0..00000000 --- a/themes/high-contrast-march-theme-accessible.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Contrast March Theme - Accessible" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#162C36" - fg: "#E5E5E5" - black: "#162C36" - red: "#FF6347" - green: "#32CD32" - yellow: "#FFD700" - blue: "#1E90FF" - magenta: "#8A2BE2" - cyan: "#00FFFF" - white: "#E5E5E5" - brightBlack: "#A9A9A9" - brightRed: "#FF4500" - brightGreen: "#7CFC00" - brightYellow: "#FFFF00" - brightBlue: "#4682B4" - brightMagenta: "#DA70D6" - brightCyan: "#AFEEEE" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: 229 - pair: null - contrast: - fg: 87.3 - black: 0 - red: 43 - green: 57.6 - yellow: 80.5 - blue: 39 - magenta: 19.6 - cyan: 88.4 - white: 87.3 - brightBlack: 51.9 - brightRed: 37.6 - brightGreen: 84.1 - brightYellow: 99 - brightBlue: 29.9 - brightMagenta: 43.3 - brightCyan: 85.8 - brightWhite: 87.3 diff --git a/themes/high-contrast-may-light-theme.yaml b/themes/high-contrast-may-light-theme.yaml deleted file mode 100644 index 9014c910..00000000 --- a/themes/high-contrast-may-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Contrast May Light Theme" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#FFFFFF" - fg: "#2C3E50" - black: "#5D6D7E" - red: "#CB4335" - green: "#28B463" - yellow: "#F39C12" - blue: "#2874A6" - magenta: "#8E44AD" - cyan: "#1ABC9C" - white: "#FFFFFF" - brightBlack: "#85929E" - brightRed: "#E74C3C" - brightGreen: "#58D68D" - brightYellow: "#F5B041" - brightBlue: "#5499C7" - brightMagenta: "#AF7AC5" - brightCyan: "#48C9B0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 95.4 - black: 76.4 - red: 72.1 - green: 51.8 - yellow: 42.8 - blue: 74.7 - magenta: 78.8 - cyan: 46.9 - white: 0 - brightBlack: 59 - brightRed: 64.6 - brightGreen: 34.2 - brightYellow: 35.4 - brightBlue: 57.9 - brightMagenta: 59.9 - brightCyan: 39.5 - brightWhite: 0 diff --git a/themes/high-contrast-september-light-theme.yaml b/themes/high-contrast-september-light-theme.yaml deleted file mode 100644 index f633ef07..00000000 --- a/themes/high-contrast-september-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Contrast September Light Theme" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#E3F2FD" - fg: "#0D47A1" - black: "#0D47A1" - red: "#E53935" - green: "#43A047" - yellow: "#FBC02D" - blue: "#1E88E5" - magenta: "#8E24AA" - cyan: "#00ACC1" - white: "#E0E0E0" - brightBlack: "#616161" - brightRed: "#FF5252" - brightGreen: "#81C784" - brightYellow: "#FFD54F" - brightBlue: "#64B5F6" - brightMagenta: "#BA68C8" - brightCyan: "#4DD0E1" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 79.9 - black: 79.9 - red: 58.6 - green: 51 - yellow: 19.7 - blue: 54.7 - magenta: 74.1 - cyan: 43.2 - white: 0 - brightBlack: 71.8 - brightRed: 48.8 - brightGreen: 29.9 - brightYellow: 10.6 - brightBlue: 34.3 - brightMagenta: 53.8 - brightCyan: 25.1 - brightWhite: 7.8 diff --git a/themes/high-contrast-sunset.yaml b/themes/high-contrast-sunset.yaml index bb145d13..4248eb71 100644 --- a/themes/high-contrast-sunset.yaml +++ b/themes/high-contrast-sunset.yaml @@ -2,12 +2,13 @@ name: "High Contrast Sunset" source: marketplace_id: "krishnakumarmehta.high-contrast-sunset" version: "1.0.2" - installs: 10 + installs: 11 rating: 0 ratings: 0 author: "Krishna Kumar Mehta" repo: null url: "https://marketplace.visualstudio.com/items?itemName=krishnakumarmehta.high-contrast-sunset" + formats: null colors: bg: "#0A0608" fg: "#FFF0DC" diff --git a/themes/high-tea.yaml b/themes/high-tea.yaml deleted file mode 100644 index 6193d136..00000000 --- a/themes/high-tea.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "High Tea" -source: - marketplace_id: "Rachael.rachaels-themes" - version: "0.0.2" - installs: 1170 - rating: 0 - ratings: 0 - author: "Rachael" - repo: "https://github.com/rbouissey/rachaelsthemes" - url: "https://marketplace.visualstudio.com/items?itemName=Rachael.rachaels-themes" -colors: - bg: "#EEE6E4" - fg: "#2CA8B0" - black: "#000000" - red: "#991000" - green: "#29C065" - yellow: "#FFCA00" - blue: "#991000" - magenta: "#5024B8" - cyan: "#29C3E6" - white: "#EEE6E4" - brightBlack: "#000000" - brightRed: "#991000" - brightGreen: "#29C065" - brightYellow: "#FFCA00" - brightBlue: "#991000" - brightMagenta: "#5024B8" - brightCyan: "#29C3E6" - brightWhite: "#F1BDB9" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 40.6 - black: 92.2 - red: 73.8 - green: 32.5 - yellow: 10.5 - blue: 73.8 - magenta: 76.2 - cyan: 26.6 - white: 0 - brightBlack: 92.2 - brightRed: 73.8 - brightGreen: 32.5 - brightYellow: 10.5 - brightBlue: 73.8 - brightMagenta: 76.2 - brightCyan: 26.6 - brightWhite: 14.9 diff --git a/themes/highflyer.yaml b/themes/highflyer.yaml index 1e5e9147..0ef7bf1e 100644 --- a/themes/highflyer.yaml +++ b/themes/highflyer.yaml @@ -8,6 +8,7 @@ source: author: "highflyer910" repo: "https://github.com/highflyer910/highflyer_vscode_theme" url: "https://marketplace.visualstudio.com/items?itemName=highflyer910.highflyer" + formats: null colors: bg: "#0E0C1F" fg: "#D4D4D4" diff --git a/themes/highgruv.yaml b/themes/highgruv.yaml index bd5ea187..6fcfb138 100644 --- a/themes/highgruv.yaml +++ b/themes/highgruv.yaml @@ -8,6 +8,7 @@ source: author: "bullptr" repo: "https://github.com/bullptr/highgruv" url: "https://marketplace.visualstudio.com/items?itemName=bullptr.highgruv" + formats: null colors: bg: "#000000" fg: "#D7BE92" diff --git a/themes/highland-winter.yaml b/themes/highland-winter.yaml index 5f6f8f55..4b8b252f 100644 --- a/themes/highland-winter.yaml +++ b/themes/highland-winter.yaml @@ -8,6 +8,11 @@ source: author: "Tim Hull" repo: "https://www.github.com/mtyn/highland-winter" url: "https://marketplace.visualstudio.com/items?itemName=merithayan.highland-winter" + formats: + iterm2: "https://raw.githubusercontent.com/mtyn/highland-winter/master/iterm2/highland_winter.itermcolors" + xcode: "https://raw.githubusercontent.com/mtyn/highland-winter/master/xcode/Highland Winter.xccolortheme" + android-studio: "https://raw.githubusercontent.com/mtyn/highland-winter/master/jetbrains/Highland Winter.icls" + vim: "https://raw.githubusercontent.com/mtyn/highland-winter/master/vim/colors/highland-winter.vim" colors: bg: "#FAFAFA" fg: "#303036" diff --git a/themes/himalaya-dark.yaml b/themes/himalaya-dark.yaml index 1b1f9b20..2729921d 100644 --- a/themes/himalaya-dark.yaml +++ b/themes/himalaya-dark.yaml @@ -8,6 +8,7 @@ source: author: "Leonardo Martelli Oliveira" repo: "https://github.com/leonardomartelli/himalaya-theme" url: "https://marketplace.visualstudio.com/items?itemName=leonardomartelli.himalaya-theme" + formats: null colors: bg: "#011526" fg: "#B9BFAA" diff --git a/themes/hinode.yaml b/themes/hinode.yaml index 9e52d0d5..d4308e8c 100644 --- a/themes/hinode.yaml +++ b/themes/hinode.yaml @@ -8,6 +8,7 @@ source: author: "aimof" repo: "https://github.com/aimof/hinode" url: "https://marketplace.visualstudio.com/items?itemName=aimof.hinode" + formats: null colors: bg: "#000822" fg: "#FBFBF6" diff --git a/themes/hipster-next.yaml b/themes/hipster-next.yaml index 68cce23e..c6c926a0 100644 --- a/themes/hipster-next.yaml +++ b/themes/hipster-next.yaml @@ -6,6 +6,7 @@ source: author: "Dmitri Migunov" repo: "https://gitlab.com/migunov/vscode/hipster-next-theme" url: "https://marketplace.visualstudio.com/items?itemName=DmitriMigunov.hipster-next-theme" + formats: null colors: bg: "#2E3D51" fg: "#B0C0D0" diff --git a/themes/hirakata.yaml b/themes/hirakata.yaml index 268b23c8..19e9ed65 100644 --- a/themes/hirakata.yaml +++ b/themes/hirakata.yaml @@ -1,4 +1,4 @@ -name: "Hirakata" +name: "hirakata" source: marketplace_id: "wisdom.hirakata" version: "0.1.0" @@ -8,6 +8,7 @@ source: author: "wisdom" repo: "https://github.com/wisdom-plus/vscode-theme-hirakata" url: "https://marketplace.visualstudio.com/items?itemName=wisdom.hirakata" + formats: null colors: bg: "#2F3542" fg: "#BDC2CC" diff --git a/themes/hive-contrast.yaml b/themes/hive-contrast.yaml deleted file mode 100644 index f8ac792a..00000000 --- a/themes/hive-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hive-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0F1016" - fg: "#FFFFFF" - black: "#191B25" - red: "#BA0E2E" - green: "#7CB8BA" - yellow: "#6E81A0" - blue: "#FFFFFF" - magenta: "#7CB8BA" - cyan: "#6E81A0" - white: "#FFFFFF" - brightBlack: "#383C53" - brightRed: "#F03E5F" - brightGreen: "#BFDCDD" - brightYellow: "#ACB7C8" - brightBlue: "#FFFFFF" - brightMagenta: "#BFDCDD" - brightCyan: "#ACB7C8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 278 - pair: null - contrast: - fg: 107.4 - black: 0 - red: 21 - green: 57.8 - yellow: 34.3 - blue: 107.4 - magenta: 57.8 - cyan: 34.3 - white: 107.4 - brightBlack: 0 - brightRed: 37.3 - brightGreen: 81.5 - brightYellow: 62.5 - brightBlue: 107.4 - brightMagenta: 81.5 - brightCyan: 62.5 - brightWhite: 107.4 diff --git a/themes/hive-light.yaml b/themes/hive-light.yaml deleted file mode 100644 index 64ab725f..00000000 --- a/themes/hive-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hive-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#2D3142" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#7CB8BA" - yellow: "#6E81A0" - blue: "#2D3142" - magenta: "#7CB8BA" - cyan: "#6E81A0" - white: "#373C51" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#BFDCDD" - brightYellow: "#ACB7C8" - brightBlue: "#565E7F" - brightMagenta: "#BFDCDD" - brightCyan: "#ACB7C8" - brightWhite: "#565E7F" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99.1 - black: 0 - red: 80.3 - green: 43.8 - yellow: 66.9 - blue: 99.1 - magenta: 43.8 - cyan: 66.9 - white: 95.2 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 21.4 - brightYellow: 39.4 - brightBlue: 81.6 - brightMagenta: 21.4 - brightCyan: 39.4 - brightWhite: 81.6 diff --git a/themes/hive.yaml b/themes/hive.yaml deleted file mode 100644 index be09f8aa..00000000 --- a/themes/hive.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hive" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2D3142" - fg: "#FFFFFF" - black: "#373C51" - red: "#BA0E2E" - green: "#7CB8BA" - yellow: "#6E81A0" - blue: "#FFFFFF" - magenta: "#7CB8BA" - cyan: "#6E81A0" - white: "#FFFFFF" - brightBlack: "#565E7F" - brightRed: "#F03E5F" - brightGreen: "#BFDCDD" - brightYellow: "#ACB7C8" - brightBlue: "#FFFFFF" - brightMagenta: "#BFDCDD" - brightCyan: "#ACB7C8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 274 - pair: null - contrast: - fg: 102.3 - black: 0 - red: 16 - green: 52.8 - yellow: 29.2 - blue: 102.3 - magenta: 52.8 - cyan: 29.2 - white: 102.3 - brightBlack: 14.7 - brightRed: 32.3 - brightGreen: 76.4 - brightYellow: 57.4 - brightBlue: 102.3 - brightMagenta: 76.4 - brightCyan: 57.4 - brightWhite: 102.3 diff --git a/themes/hobbyist-goth.yaml b/themes/hobbyist-goth.yaml index 7045cfa8..20b8cec7 100644 --- a/themes/hobbyist-goth.yaml +++ b/themes/hobbyist-goth.yaml @@ -1,13 +1,14 @@ -name: "hobbyist goth" +name: "hobbyist-goth" source: marketplace_id: "timmyha.hobbyist-goth" version: "0.0.3" - installs: 1577 + installs: 1579 rating: 0 ratings: 0 author: "timhansher" repo: "https://github.com/timmyha/hobbyist-goth" url: "https://marketplace.visualstudio.com/items?itemName=timmyha.hobbyist-goth" + formats: null colors: bg: "#2B303A" fg: "#C1C5CD" diff --git a/themes/hoccacas.yaml b/themes/hoccacas.yaml index 98084046..98fddc8f 100644 --- a/themes/hoccacas.yaml +++ b/themes/hoccacas.yaml @@ -8,6 +8,7 @@ source: author: "Thiago Andreazza" repo: "https://github.com/olathiago/hoccacas" url: "https://marketplace.visualstudio.com/items?itemName=ThiagoAndreazza.hoccacas" + formats: null colors: bg: "#0F1014" fg: "#C0C0CC" diff --git a/themes/hocsinhnghiemtuc.yaml b/themes/hocsinhnghiemtuc.yaml index 59d69511..91d86f98 100644 --- a/themes/hocsinhnghiemtuc.yaml +++ b/themes/hocsinhnghiemtuc.yaml @@ -8,6 +8,7 @@ source: author: "Hoang Trung Hieu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=hocsinhnghiemtuc.intellij-light-flutter" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/holdesher-dark.yaml b/themes/holdesher-dark.yaml index 900f4f25..3473d918 100644 --- a/themes/holdesher-dark.yaml +++ b/themes/holdesher-dark.yaml @@ -8,6 +8,7 @@ source: author: "Nik Zolkin" repo: "https://github.com/Holdesher/theme" url: "https://marketplace.visualstudio.com/items?itemName=kah3vich.holdesher" + formats: null colors: bg: "#20232A" fg: "#FFFFFF" diff --git a/themes/holo-s-wisdom-spice-and-wolf-theme.yaml b/themes/holo-s-wisdom-spice-and-wolf-theme.yaml index 5c8f8693..2e7be9a5 100644 --- a/themes/holo-s-wisdom-spice-and-wolf-theme.yaml +++ b/themes/holo-s-wisdom-spice-and-wolf-theme.yaml @@ -8,6 +8,7 @@ source: author: "yeshua_rey" repo: "https://github.com/yeshuarey/HoloTheme" url: "https://marketplace.visualstudio.com/items?itemName=yeshuarey.holos-wisdom-spice-and-wolf" + formats: null colors: bg: "#1A0F08" fg: "#D9CFC4" diff --git a/themes/hologram-night.yaml b/themes/hologram-night.yaml index 47cf3042..901214ed 100644 --- a/themes/hologram-night.yaml +++ b/themes/hologram-night.yaml @@ -8,6 +8,7 @@ source: author: "orcheink" repo: "https://github.com/OrcheInk/vscode-theme-hologram-night" url: "https://marketplace.visualstudio.com/items?itemName=orcheink.hologram-night-theme" + formats: null colors: bg: "#1C1E27" fg: "#D8DEE9" diff --git a/themes/holy-bible.yaml b/themes/holy-bible.yaml index ecf4d8ed..fa9310f9 100644 --- a/themes/holy-bible.yaml +++ b/themes/holy-bible.yaml @@ -8,6 +8,7 @@ source: author: "KynardCorp" repo: null url: "https://marketplace.visualstudio.com/items?itemName=KynardCorp.my-custom-theme" + formats: null colors: bg: "#240000" fg: "#FF6666" diff --git a/themes/homebrew.yaml b/themes/homebrew.yaml index 82b3a12f..64c147ec 100644 --- a/themes/homebrew.yaml +++ b/themes/homebrew.yaml @@ -1,13 +1,14 @@ name: "Homebrew" source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 + marketplace_id: "zenizh.homebrew" + version: "0.0.24" + installs: 19668 rating: 5 ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + author: "zenizh" + repo: "https://github.com/zenizh/vscode-theme-homebrew" + url: "https://marketplace.visualstudio.com/items?itemName=zenizh.homebrew" + formats: null colors: bg: "#000000" fg: "#00A600" diff --git a/themes/homecooked-theme.yaml b/themes/homecooked-theme.yaml deleted file mode 100644 index 61c130a2..00000000 --- a/themes/homecooked-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "HomeCooked Theme" -source: - marketplace_id: "MohammedAmaan.homecooked" - version: "2.0.1" - installs: 224 - rating: 5 - ratings: 1 - author: "Mohammed Amaan" - repo: "https://github.com/amaanmohd047/homecooked-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MohammedAmaan.homecooked" -colors: - bg: "#0A0B13" - fg: "#C8D3F5" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 279 - pair: null - contrast: - fg: 80 - black: 0 - red: 27.5 - green: 53.8 - yellow: 86.4 - blue: 28.2 - magenta: 30.6 - cyan: 48.4 - white: 90.8 - brightBlack: 22.8 - brightRed: 39.4 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.8 - brightMagenta: 46.2 - brightCyan: 56.2 - brightWhite: 90.8 diff --git a/themes/homer.yaml b/themes/homer.yaml index dc5d1100..2e369316 100644 --- a/themes/homer.yaml +++ b/themes/homer.yaml @@ -8,6 +8,7 @@ source: author: "Dustin Sanders" repo: "https://github.com/dustinsanders/homer-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dustinsanders.homer-theme-vscode" + formats: null colors: bg: "#353434" fg: "#F8F8F8" diff --git a/themes/homey.yaml b/themes/homey.yaml index f5d1c397..c786a9b2 100644 --- a/themes/homey.yaml +++ b/themes/homey.yaml @@ -8,6 +8,7 @@ source: author: "kepler0" repo: "https://github.com/notAlaanor/homey-theme" url: "https://marketplace.visualstudio.com/items?itemName=kepler0.homey-theme" + formats: null colors: bg: "#221F1D" fg: "#F5D7C2" diff --git a/themes/honeycode.yaml b/themes/honeycode.yaml index f103a3a1..ba4f99ff 100644 --- a/themes/honeycode.yaml +++ b/themes/honeycode.yaml @@ -8,6 +8,7 @@ source: author: "yoobdev" repo: "https://github.com/kimkom369/VSCode-Theme-Pack" url: "https://marketplace.visualstudio.com/items?itemName=yubiDev.yoobdev" + formats: null colors: bg: "#FDBE39" fg: "#494949" diff --git a/themes/honkai-star-rail-aventurine-dark.yaml b/themes/honkai-star-rail-aventurine-dark.yaml deleted file mode 100644 index 4197534a..00000000 --- a/themes/honkai-star-rail-aventurine-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - Aventurine (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#141618" - fg: "#D8D4CC" - black: "#1C1F22" - red: "#D08080" - green: "#80B090" - yellow: "#C9B87A" - blue: "#6AB0C0" - magenta: "#B090A0" - cyan: "#70B0A0" - white: "#D8D4CC" - brightBlack: "#5A6A70" - brightRed: "#E0A0A0" - brightGreen: "#A0D0A8" - brightYellow: "#E0D0A0" - brightBlue: "#90C8D8" - brightMagenta: "#D0B0C0" - brightCyan: "#98D0C0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 79.8 - black: 0 - red: 44.9 - green: 52.7 - yellow: 63.4 - blue: 53.1 - magenta: 46.2 - cyan: 52.1 - white: 79.8 - brightBlack: 22.7 - brightRed: 58.9 - brightGreen: 70.3 - brightYellow: 77.6 - brightBlue: 67.3 - brightMagenta: 63.5 - brightCyan: 70.5 - brightWhite: 107 diff --git a/themes/honkai-star-rail-aventurine.yaml b/themes/honkai-star-rail-aventurine.yaml deleted file mode 100644 index 3c665c7d..00000000 --- a/themes/honkai-star-rail-aventurine.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - Aventurine" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#F8F6F2" - fg: "#2A2828" - black: "#2A2828" - red: "#904040" - green: "#408870" - yellow: "#907040" - blue: "#1A5864" - magenta: "#784868" - cyan: "#206870" - white: "#989080" - brightBlack: "#787068" - brightRed: "#B05050" - brightGreen: "#509880" - brightYellow: "#A08050" - brightBlue: "#2A6878" - brightMagenta: "#886078" - brightCyan: "#307880" - brightWhite: "#D0C8B8" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.2 - black: 96.2 - red: 78.5 - green: 63.7 - yellow: 66.5 - blue: 82.2 - magenta: 79.5 - cyan: 76.3 - white: 53.5 - brightBlack: 68.5 - brightRed: 69.4 - brightGreen: 56.2 - brightYellow: 59.1 - brightBlue: 75.7 - brightMagenta: 70.8 - brightCyan: 69.6 - brightWhite: 23.9 diff --git a/themes/honkai-star-rail-cyrene-dark.yaml b/themes/honkai-star-rail-cyrene-dark.yaml deleted file mode 100644 index 4b1c3b8e..00000000 --- a/themes/honkai-star-rail-cyrene-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - Cyrene (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#1E1828" - fg: "#EAE0F0" - black: "#181220" - red: "#C08080" - green: "#8AAA8A" - yellow: "#C8B090" - blue: "#8B95DB" - magenta: "#A05DD4" - cyan: "#7090A8" - white: "#EAE0F0" - brightBlack: "#5A5060" - brightRed: "#D473A4" - brightGreen: "#9ABA9A" - brightYellow: "#D8C0A0" - brightBlue: "#9BA5E8" - brightMagenta: "#B080E0" - brightCyan: "#80A0B8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 301 - pair: null - contrast: - fg: 88.5 - black: 0 - red: 41.7 - green: 50.4 - yellow: 60.1 - blue: 46.1 - magenta: 31.7 - cyan: 39.2 - white: 88.5 - brightBlack: 14.1 - brightRed: 42.7 - brightGreen: 59 - brightYellow: 69.2 - brightBlue: 54.3 - brightMagenta: 43.9 - brightCyan: 47.3 - brightWhite: 106.4 diff --git a/themes/honkai-star-rail-cyrene.yaml b/themes/honkai-star-rail-cyrene.yaml deleted file mode 100644 index 84246351..00000000 --- a/themes/honkai-star-rail-cyrene.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - Cyrene" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#FDF8FB" - fg: "#4A3A50" - black: "#4A3A50" - red: "#C06080" - green: "#7AAA7A" - yellow: "#C8A080" - blue: "#8B95DB" - magenta: "#A05DD4" - cyan: "#7090A0" - white: "#F0E0E8" - brightBlack: "#8A7090" - brightRed: "#D473A4" - brightGreen: "#8ABA8A" - brightYellow: "#D8B090" - brightBlue: "#9BA5E8" - brightMagenta: "#B080E0" - brightCyan: "#80A0B0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 90.8 - black: 90.8 - red: 63.6 - green: 48.5 - yellow: 43.6 - blue: 50.9 - magenta: 65.1 - cyan: 58 - white: 10 - brightBlack: 66.9 - brightRed: 54.1 - brightGreen: 40.2 - brightYellow: 35.1 - brightBlue: 42.9 - brightMagenta: 53 - brightCyan: 50.1 - brightWhite: 0 diff --git a/themes/honkai-star-rail-dan-heng-dark.yaml b/themes/honkai-star-rail-dan-heng-dark.yaml deleted file mode 100644 index 54d1097b..00000000 --- a/themes/honkai-star-rail-dan-heng-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - Dan Heng (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#0E1A1E" - fg: "#E8ECEC" - black: "#061014" - red: "#A03030" - green: "#4A8898" - yellow: "#B87000" - blue: "#2E5B63" - magenta: "#790000" - cyan: "#4A8898" - white: "#E8ECEC" - brightBlack: "#4A6670" - brightRed: "#C04040" - brightGreen: "#5A9AA8" - brightYellow: "#D09020" - brightBlue: "#3A6E78" - brightMagenta: "#A03030" - brightCyan: "#5A9AA8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 221 - pair: null - contrast: - fg: 93.8 - black: 0 - red: 17.2 - green: 33.4 - yellow: 34.3 - blue: 14.9 - magenta: 0 - cyan: 33.4 - white: 93.8 - brightBlack: 20.1 - brightRed: 25.8 - brightGreen: 41.8 - brightYellow: 48.1 - brightBlue: 22.2 - brightMagenta: 17.2 - brightCyan: 41.8 - brightWhite: 106.7 diff --git a/themes/honkai-star-rail-dan-heng.yaml b/themes/honkai-star-rail-dan-heng.yaml deleted file mode 100644 index 1fd020a3..00000000 --- a/themes/honkai-star-rail-dan-heng.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - Dan Heng" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#F4F6F4" - fg: "#133139" - black: "#133139" - red: "#790000" - green: "#2E5B63" - yellow: "#8A5500" - blue: "#3A6E78" - magenta: "#5A0000" - cyan: "#2E5B63" - white: "#E8ECEC" - brightBlack: "#2E5B63" - brightRed: "#A00000" - brightGreen: "#4A8090" - brightYellow: "#B87000" - brightBlue: "#4A8090" - brightMagenta: "#790000" - brightCyan: "#3A6E78" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.5 - black: 94.5 - red: 88.6 - green: 80.3 - yellow: 74.9 - blue: 72.7 - magenta: 94.1 - cyan: 80.3 - white: 0 - brightBlack: 80.3 - brightRed: 80.7 - brightGreen: 64.6 - brightYellow: 60.5 - brightBlue: 64.6 - brightMagenta: 88.6 - brightCyan: 72.7 - brightWhite: 0 diff --git a/themes/honkai-star-rail-firefly-dark.yaml b/themes/honkai-star-rail-firefly-dark.yaml deleted file mode 100644 index 57574939..00000000 --- a/themes/honkai-star-rail-firefly-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - Firefly (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#1C1F22" - fg: "#E0D8D2" - black: "#2A2520" - red: "#B08080" - green: "#8AAA8A" - yellow: "#C8B090" - blue: "#6A7580" - magenta: "#9A8090" - cyan: "#6F9C97" - white: "#E0D8D2" - brightBlack: "#5A5550" - brightRed: "#C09090" - brightGreen: "#9ABA9A" - brightYellow: "#D8C0A0" - brightBlue: "#7A8590" - brightMagenta: "#AA90A0" - brightCyan: "#8ABAB2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 81.8 - black: 0 - red: 38.8 - green: 49.9 - yellow: 59.6 - blue: 27.1 - magenta: 36.4 - cyan: 42.5 - white: 81.8 - brightBlack: 14.5 - brightRed: 46.8 - brightGreen: 58.6 - brightYellow: 68.7 - brightBlue: 34.6 - brightMagenta: 44.4 - brightCyan: 58 - brightWhite: 106 diff --git a/themes/honkai-star-rail-firefly.yaml b/themes/honkai-star-rail-firefly.yaml deleted file mode 100644 index 0332c73d..00000000 --- a/themes/honkai-star-rail-firefly.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - Firefly" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#F7F5F2" - fg: "#3A4550" - black: "#3A4550" - red: "#A07070" - green: "#7A9A7A" - yellow: "#B8A080" - blue: "#70656C" - magenta: "#8A7080" - cyan: "#6F9C97" - white: "#E0D8D2" - brightBlack: "#70656C" - brightRed: "#B08080" - brightGreen: "#8AAA8A" - brightYellow: "#C8B090" - brightBlue: "#8A7A85" - brightMagenta: "#9A8090" - brightCyan: "#7AACA5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 86.8 - black: 86.8 - red: 62.7 - green: 52.4 - yellow: 43.3 - blue: 72 - magenta: 65.1 - cyan: 51.5 - white: 13.9 - brightBlack: 72 - brightRed: 55.2 - brightGreen: 44.3 - brightYellow: 34.9 - brightBlue: 61.8 - brightMagenta: 57.6 - brightCyan: 43.9 - brightWhite: 0 diff --git a/themes/honkai-star-rail-kafka-dark.yaml b/themes/honkai-star-rail-kafka-dark.yaml deleted file mode 100644 index 1dd3f1f7..00000000 --- a/themes/honkai-star-rail-kafka-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - Kafka (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#18141A" - fg: "#E0D8DC" - black: "#28222A" - red: "#C87088" - green: "#80B898" - yellow: "#C0A070" - blue: "#7888C0" - magenta: "#C075AE" - cyan: "#70A0B0" - white: "#E0D8DC" - brightBlack: "#6A6068" - brightRed: "#D898A8" - brightGreen: "#98D0B0" - brightYellow: "#D8B888" - brightBlue: "#90A0D0" - brightMagenta: "#D898C8" - brightCyan: "#88B8C8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 315 - pair: null - contrast: - fg: 83.3 - black: 0 - red: 39.3 - green: 56.4 - yellow: 52.6 - blue: 38.8 - magenta: 40.9 - cyan: 46.3 - white: 83.3 - brightBlack: 20.8 - brightRed: 55.2 - brightGreen: 69.9 - brightYellow: 65.9 - brightBlue: 50.6 - brightMagenta: 56.6 - brightCyan: 59 - brightWhite: 107 diff --git a/themes/honkai-star-rail-kafka.yaml b/themes/honkai-star-rail-kafka.yaml deleted file mode 100644 index e344b7b2..00000000 --- a/themes/honkai-star-rail-kafka.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - Kafka" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#FAF7F9" - fg: "#2A2530" - black: "#2A2530" - red: "#A04860" - green: "#5A8A6A" - yellow: "#9A7850" - blue: "#5868A0" - magenta: "#723458" - cyan: "#4A8090" - white: "#E8DCE4" - brightBlack: "#6A5A62" - brightRed: "#B86078" - brightGreen: "#6A9A7A" - brightYellow: "#AA8860" - brightBlue: "#6878B0" - brightMagenta: "#C075AE" - brightCyan: "#5A90A0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 97.5 - black: 97.5 - red: 74.5 - green: 62.7 - yellow: 63.4 - blue: 72.4 - magenta: 85.8 - cyan: 66 - white: 12 - brightBlack: 77.8 - brightRed: 64.4 - brightGreen: 55.1 - brightYellow: 55.8 - brightBlue: 65.3 - brightMagenta: 55.6 - brightCyan: 58.6 - brightWhite: 0 diff --git a/themes/honkai-star-rail-march-7th-dark.yaml b/themes/honkai-star-rail-march-7th-dark.yaml deleted file mode 100644 index 1200daf3..00000000 --- a/themes/honkai-star-rail-march-7th-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - March 7th (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#281828" - fg: "#F0D8E8" - black: "#382850" - red: "#F0B8D8" - green: "#90E8D8" - yellow: "#E8B888" - blue: "#C8B8E8" - magenta: "#FAB3CA" - cyan: "#FAB3CA" - white: "#F0D8E8" - brightBlack: "#A890B8" - brightRed: "#F8D8F0" - brightGreen: "#C8F8E8" - brightYellow: "#F8F8C8" - brightBlue: "#D8D0F8" - brightMagenta: "#88ECFB" - brightCyan: "#88ECFB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "blue" - hue: 327 - pair: null - contrast: - fg: 85.2 - black: 0 - red: 71.6 - green: 81.2 - yellow: 67.4 - blue: 66.5 - magenta: 70.8 - cyan: 70.8 - white: 85.2 - brightBlack: 45.3 - brightRed: 86.8 - brightGreen: 94.8 - brightYellow: 99.5 - brightBlue: 79.3 - brightMagenta: 84.3 - brightCyan: 84.3 - brightWhite: 106.1 diff --git a/themes/honkai-star-rail-march-7th.yaml b/themes/honkai-star-rail-march-7th.yaml deleted file mode 100644 index 4527a4fd..00000000 --- a/themes/honkai-star-rail-march-7th.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - March 7th" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#FEF8FC" - fg: "#483050" - black: "#483050" - red: "#E888A8" - green: "#88D8C8" - yellow: "#E8B888" - blue: "#DCA9CC" - magenta: "#B898C8" - cyan: "#88ECFB" - white: "#F0D8E8" - brightBlack: "#8A7098" - brightRed: "#F0A0B8" - brightGreen: "#A8D8CA" - brightYellow: "#F0D8A8" - brightBlue: "#C8ACD8" - brightMagenta: "#C8A8D8" - brightCyan: "#7DC5F0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 93.3 - black: 93.3 - red: 45 - green: 25.5 - yellow: 30.2 - blue: 35 - magenta: 46 - cyan: 14.2 - white: 13.4 - brightBlack: 66.7 - brightRed: 35.7 - brightGreen: 22.9 - brightYellow: 15.7 - brightBlue: 36.2 - brightMagenta: 37.6 - brightCyan: 32.5 - brightWhite: 0 diff --git a/themes/honkai-star-rail-robin-dark.yaml b/themes/honkai-star-rail-robin-dark.yaml deleted file mode 100644 index c6de1abb..00000000 --- a/themes/honkai-star-rail-robin-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - Robin (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#141018" - fg: "#D8DCE8" - black: "#2A2440" - red: "#D0A0B0" - green: "#A0C8B8" - yellow: "#D8C8A0" - blue: "#A0A8D8" - magenta: "#D0BAFF" - cyan: "#A0C8E0" - white: "#D8DCE8" - brightBlack: "#6858A0" - brightRed: "#E0B8C0" - brightGreen: "#B0D8C8" - brightYellow: "#E8D8B0" - brightBlue: "#B0B8E8" - brightMagenta: "#E0C8FF" - brightCyan: "#B0D8F0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 307 - pair: null - contrast: - fg: 84.9 - black: 0 - red: 57.3 - green: 67.7 - yellow: 73.4 - blue: 56 - magenta: 71 - cyan: 69.5 - white: 84.9 - brightBlack: 21.3 - brightRed: 69.3 - brightGreen: 77.1 - brightYellow: 83 - brightBlue: 64.9 - brightMagenta: 78.7 - brightCyan: 78.9 - brightWhite: 107.3 diff --git a/themes/honkai-star-rail-robin-light-soft.yaml b/themes/honkai-star-rail-robin-light-soft.yaml deleted file mode 100644 index 7050825b..00000000 --- a/themes/honkai-star-rail-robin-light-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - Robin (Light Soft)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#F5F3F9" - fg: "#3A2D58" - black: "#3A2D58" - red: "#A85868" - green: "#589070" - yellow: "#987848" - blue: "#6B5A9E" - magenta: "#9D5896" - cyan: "#5088A0" - white: "#ECEAF2" - brightBlack: "#7A6FA8" - brightRed: "#C07880" - brightGreen: "#70B090" - brightYellow: "#B89868" - brightBlue: "#7968AD" - brightMagenta: "#B878A8" - brightCyan: "#68A8B8" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 91.4 - black: 91.4 - red: 67.2 - green: 58.1 - yellow: 61.5 - blue: 72.6 - magenta: 67.2 - cyan: 59.8 - white: 0 - brightBlack: 64.6 - brightRed: 54.3 - brightGreen: 42.9 - brightYellow: 46 - brightBlue: 66.4 - brightMagenta: 54 - brightCyan: 45.1 - brightWhite: 0 diff --git a/themes/honkai-star-rail-ruan-mei-dark.yaml b/themes/honkai-star-rail-ruan-mei-dark.yaml deleted file mode 100644 index 91d11925..00000000 --- a/themes/honkai-star-rail-ruan-mei-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - Ruan Mei (Dark)" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#1A252F" - fg: "#E8E4E0" - black: "#162028" - red: "#B08080" - green: "#8AAA8A" - yellow: "#D6C09E" - blue: "#6A8A90" - magenta: "#9A8A9A" - cyan: "#7AAFB8" - white: "#E8E4E0" - brightBlack: "#5A6A70" - brightRed: "#C09090" - brightGreen: "#9ABA9A" - brightYellow: "#E6D0AE" - brightBlue: "#7A9AA0" - brightMagenta: "#AA9AAA" - brightCyan: "#8BC0C8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 246 - pair: null - contrast: - fg: 88 - black: 0 - red: 37.9 - green: 49.1 - yellow: 67.5 - blue: 34.2 - magenta: 39.3 - cyan: 51.5 - white: 88 - brightBlack: 20.9 - brightRed: 46 - brightGreen: 57.7 - brightYellow: 77 - brightBlue: 42.1 - brightMagenta: 47.5 - brightCyan: 60.8 - brightWhite: 105.1 diff --git a/themes/honkai-star-rail-ruan-mei.yaml b/themes/honkai-star-rail-ruan-mei.yaml deleted file mode 100644 index d0f9d83b..00000000 --- a/themes/honkai-star-rail-ruan-mei.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Honkai: Star Rail - Ruan Mei" -source: - marketplace_id: "horizon-core.horizon-theme" - version: "3.6.1" - installs: 79 - rating: 5 - ratings: 1 - author: "Horizon" - repo: "https://github.com/Abdelrahman968/horizon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=horizon-core.horizon-theme" -colors: - bg: "#FAF8F5" - fg: "#2C435D" - black: "#2C435D" - red: "#A07070" - green: "#7A9A7A" - yellow: "#C8A878" - blue: "#4A7A85" - magenta: "#8A7A90" - cyan: "#6695A0" - white: "#E0DCD5" - brightBlack: "#677E7C" - brightRed: "#B08080" - brightGreen: "#8AAA8A" - brightYellow: "#D6C09E" - brightBlue: "#7AA0A8" - brightMagenta: "#9A8A9A" - brightCyan: "#7AAFB8" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 89.4 - black: 89.4 - red: 64.5 - green: 54.1 - yellow: 40.3 - blue: 68.9 - magenta: 63.1 - cyan: 56.2 - white: 13.9 - brightBlack: 65.9 - brightRed: 57 - brightGreen: 46.1 - brightYellow: 28.3 - brightBlue: 50.2 - brightMagenta: 55.7 - brightCyan: 43.7 - brightWhite: 0 diff --git a/themes/horimura.yaml b/themes/horimura.yaml index 7967c929..de95c134 100644 --- a/themes/horimura.yaml +++ b/themes/horimura.yaml @@ -8,6 +8,7 @@ source: author: "Rumi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=pra1rie.horimura" + formats: null colors: bg: "#242430" fg: "#FAFAFA" diff --git a/themes/horizon-contrast.yaml b/themes/horizon-contrast.yaml deleted file mode 100644 index e4968608..00000000 --- a/themes/horizon-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "horizon-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#11101C" - fg: "#EDEBE6" - black: "#1B192C" - red: "#BA0E2E" - green: "#FD8A25" - yellow: "#B133DC" - blue: "#FED230" - magenta: "#E5194B" - cyan: "#E524A9" - white: "#F8F7F5" - brightBlack: "#38355D" - brightRed: "#F03E5F" - brightGreen: "#FEC08A" - brightYellow: "#D28AEB" - brightBlue: "#FEE895" - brightMagenta: "#F07492" - brightCyan: "#F07FCD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 287 - pair: null - contrast: - fg: 94.3 - black: 0 - red: 21 - green: 55.2 - yellow: 29.1 - blue: 81.5 - magenta: 31.5 - cyan: 35.1 - white: 102.1 - brightBlack: 0 - brightRed: 37.3 - brightGreen: 75.5 - brightYellow: 53.5 - brightBlue: 92.7 - brightMagenta: 48.6 - brightCyan: 53.9 - brightWhite: 107.3 diff --git a/themes/horizon-extended.yaml b/themes/horizon-extended.yaml deleted file mode 100644 index f9fdd547..00000000 --- a/themes/horizon-extended.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Horizon Extended" -source: - marketplace_id: "LanceWilhelm.horizon-extended" - version: "1.1.1" - installs: 25390 - rating: 4.8 - ratings: 10 - author: "Lance Wilhelm" - repo: "https://github.com/lancewilhelm/horizon-extended" - url: "https://marketplace.visualstudio.com/items?itemName=LanceWilhelm.horizon-extended" -colors: - bg: "#1C1E26" - fg: "#D5D8DA" - black: "#565C75" - red: "#D68492" - green: "#9EC08A" - yellow: "#E0CAA3" - blue: "#389EA8" - magenta: "#B08EC2" - cyan: "#E9C4A9" - white: "#E39D90" - brightBlack: "#414557" - brightRed: "#F6637C" - brightGreen: "#99D279" - brightYellow: "#F8D28A" - brightBlue: "#21B1BE" - brightMagenta: "#B774DC" - brightCyan: "#F9C199" - brightWhite: "#F88E7C" -meta: - mode: "dark" - accent: "red" - hue: 274 - pair: null - contrast: - fg: 80.8 - black: 17.4 - red: 46.7 - green: 61.1 - yellow: 74.1 - blue: 41.3 - magenta: 46.1 - cyan: 73.2 - white: 56.8 - brightBlack: 8.6 - brightRed: 44 - brightGreen: 68.3 - brightYellow: 80.5 - brightBlue: 49.9 - brightMagenta: 40.8 - brightCyan: 74.1 - brightWhite: 55.3 diff --git a/themes/horizon-laker-theme.yaml b/themes/horizon-laker-theme.yaml index e3a8d563..1eb28819 100644 --- a/themes/horizon-laker-theme.yaml +++ b/themes/horizon-laker-theme.yaml @@ -8,6 +8,7 @@ source: author: "julienquennehen" repo: "https://github.com/JulienQNN/vscode-horizon-laker-theme" url: "https://marketplace.visualstudio.com/items?itemName=julienquennehen.horizon-laker-theme" + formats: null colors: bg: "#212121" fg: "#D4BE98" diff --git a/themes/horizon-light.yaml b/themes/horizon-light.yaml deleted file mode 100644 index 0701e214..00000000 --- a/themes/horizon-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "horizon-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#474466" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#FD8A25" - yellow: "#BA66D6" - blue: "#FED230" - magenta: "#E5194B" - cyan: "#E524A9" - white: "#524E75" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#FEC08A" - brightYellow: "#DEB6EC" - brightBlue: "#FEE895" - brightMagenta: "#F07492" - brightCyan: "#F07FCD" - brightWhite: "#7470A0" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 91.1 - black: 0 - red: 80.3 - green: 46.3 - yellow: 62.4 - blue: 21.3 - magenta: 69.7 - cyan: 66 - white: 86.9 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 27 - brightYellow: 31.8 - brightBlue: 10.9 - brightMagenta: 52.7 - brightCyan: 47.5 - brightWhite: 71.9 diff --git a/themes/horizon.yaml b/themes/horizon.yaml deleted file mode 100644 index 765d0d0e..00000000 --- a/themes/horizon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "horizon" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#474466" - fg: "#FFFFFF" - black: "#524E75" - red: "#BA0E2E" - green: "#FD8A25" - yellow: "#BA66D6" - blue: "#FED230" - magenta: "#E5194B" - cyan: "#E524A9" - white: "#FFFFFF" - brightBlack: "#7470A0" - brightRed: "#F03E5F" - brightGreen: "#FEC08A" - brightYellow: "#DEB6EC" - brightBlue: "#FEE895" - brightMagenta: "#F07492" - brightCyan: "#F07FCD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 288 - pair: null - contrast: - fg: 95.5 - black: 0 - red: 9.1 - green: 43.4 - yellow: 26.9 - blue: 69.7 - magenta: 19.6 - cyan: 23.2 - white: 95.5 - brightBlack: 17.4 - brightRed: 25.4 - brightGreen: 63.6 - brightYellow: 58.5 - brightBlue: 80.8 - brightMagenta: 36.7 - brightCyan: 42.1 - brightWhite: 95.5 diff --git a/themes/horizondark.yaml b/themes/horizondark.yaml index ad1e630e..4e54d337 100644 --- a/themes/horizondark.yaml +++ b/themes/horizondark.yaml @@ -8,6 +8,7 @@ source: author: "Avetis" repo: "https://github.com/AvetisDN/horizon-dark" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.horizon-dark" + formats: null colors: bg: "#1C1E26" fg: "#FDF0ED" diff --git a/themes/horror-theme.yaml b/themes/horror-theme.yaml deleted file mode 100644 index 78703bfd..00000000 --- a/themes/horror-theme.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Horror Theme" -source: - marketplace_id: "seonwookim.horror-vscode-extension" - version: "0.0.2" - installs: 103 - author: "seonwoo kim" - repo: "https://github.com/seonwookim/horror-vscode-extension" - url: "https://marketplace.visualstudio.com/items?itemName=seonwookim.horror-vscode-extension" -colors: - bg: "#0A0A0A" - fg: "#E0E0E0" - black: "#0A0A0A" - red: "#FF4444" - green: "#44FF44" - yellow: "#FF8C00" - blue: "#4444FF" - magenta: "#FF44FF" - cyan: "#44FFFF" - white: "#E0E0E0" - brightBlack: "#0A0A0A" - brightRed: "#FF4444" - brightGreen: "#44FF44" - brightYellow: "#FF8C00" - brightBlue: "#4444FF" - brightMagenta: "#FF44FF" - brightCyan: "#44FFFF" - brightWhite: "#E0E0E0" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 87.7 - black: 0 - red: 41.5 - green: 87.3 - yellow: 56.5 - blue: 22.9 - magenta: 49.4 - cyan: 92.7 - white: 87.7 - brightBlack: 0 - brightRed: 41.5 - brightGreen: 87.3 - brightYellow: 56.5 - brightBlue: 22.9 - brightMagenta: 49.4 - brightCyan: 92.7 - brightWhite: 87.7 diff --git a/themes/horus.yaml b/themes/horus.yaml index 8d5f4a29..fca4a4d3 100644 --- a/themes/horus.yaml +++ b/themes/horus.yaml @@ -8,6 +8,7 @@ source: author: "OnlyF0uR" repo: "https://github.com/OnlyF0uR/horus" url: "https://marketplace.visualstudio.com/items?itemName=OnlyF0uR.horus" + formats: null colors: bg: "#0A0A0A" fg: "#BCB9B9" diff --git a/themes/hot-pink-theme.yaml b/themes/hot-pink-theme.yaml deleted file mode 100644 index c92a861e..00000000 --- a/themes/hot-pink-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hot-pink-theme" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - rating: 5 - ratings: 3 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#171717" - fg: "#D3D3D3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.9 - black: 0 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 90 - brightBlack: 22 - brightRed: 38.6 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90 diff --git a/themes/hot-stuff.yaml b/themes/hot-stuff.yaml index 5b9cdcc4..e28f009d 100644 --- a/themes/hot-stuff.yaml +++ b/themes/hot-stuff.yaml @@ -1,11 +1,14 @@ -name: "Hot Stuff" +name: "Hot-Stuff" source: marketplace_id: "HarshRastogi.harsh" version: "1.4.0" installs: 302 + rating: 5 + ratings: 1 author: "Harsh Rastogi" repo: "https://github.com/theharshrastogi/Hot-Stuff-VSCODE-Theme" url: "https://marketplace.visualstudio.com/items?itemName=HarshRastogi.harsh" + formats: null colors: bg: "#131410" fg: "#CCCCCC" diff --git a/themes/hotrice.yaml b/themes/hotrice.yaml index 596a730f..242b5a07 100644 --- a/themes/hotrice.yaml +++ b/themes/hotrice.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "wadsaek.hotrice" version: "0.1.0" installs: 18 + rating: 0 + ratings: 0 author: "wadsaek" repo: null url: "https://marketplace.visualstudio.com/items?itemName=wadsaek.hotrice" + formats: null colors: bg: "#242020" fg: "#D4D4D4" diff --git a/themes/house-of-the-dragon-team-greens.yaml b/themes/house-of-the-dragon-team-greens.yaml index 2d438047..2e12793f 100644 --- a/themes/house-of-the-dragon-team-greens.yaml +++ b/themes/house-of-the-dragon-team-greens.yaml @@ -8,6 +8,7 @@ source: author: "RamanMohammed" repo: "https://github.com/RaymondSWE/vscode-theme-house-of-dragon" url: "https://marketplace.visualstudio.com/items?itemName=RamanMohammed.house-of-the-dragons-blacks-vs-greens" + formats: null colors: bg: "#0A0A0A" fg: "#D1D1D1" diff --git a/themes/houston.yaml b/themes/houston.yaml index d08b3a73..65b0ef7e 100644 --- a/themes/houston.yaml +++ b/themes/houston.yaml @@ -1,13 +1,14 @@ name: "Houston" source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 + marketplace_id: "astro-build.houston" + version: "0.1.2" + installs: 80767 rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + ratings: 13 + author: "Astro" + repo: "https://github.com/withastro/houston-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=astro-build.houston" + formats: null colors: bg: "#17191E" fg: "#EEF0F9" diff --git a/themes/hq-pink-blue.yaml b/themes/hq-pink-blue.yaml index f3d0fcae..25690a00 100644 --- a/themes/hq-pink-blue.yaml +++ b/themes/hq-pink-blue.yaml @@ -1,11 +1,14 @@ -name: "HQ_PINK+BLUE" +name: "HQ_Pink_Blue" source: marketplace_id: "djbohl.hq-pink-blue" version: "0.0.2" installs: 21 + rating: 0 + ratings: 0 author: "djbohl" repo: "https://github.com/djbohl/hq-pink-blu-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=djbohl.hq-pink-blue" + formats: null colors: bg: "#1D1D1D" fg: "#FFFAFE" diff --git a/themes/htvodp.yaml b/themes/htvodp.yaml index b68fbcb9..7b493ede 100644 --- a/themes/htvodp.yaml +++ b/themes/htvodp.yaml @@ -8,6 +8,7 @@ source: author: "Maou Shimazu" repo: "https://github.com/Maou-Shimazu/HTVODP" url: "https://marketplace.visualstudio.com/items?itemName=MaouShimazu.hackthevividonedarkpro" + formats: null colors: bg: "#141D2B" fg: "#ABB2BF" diff --git a/themes/huacat-pink-dark.yaml b/themes/huacat-pink-dark.yaml deleted file mode 100644 index 1fbd37b8..00000000 --- a/themes/huacat-pink-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Huacat Pink Dark" -source: - marketplace_id: "huacat.pink-theme" - version: "1.1.2" - installs: 71499 - rating: 5 - ratings: 12 - author: "huacat" - repo: "https://github.com/huacat1017/huacat.pink-theme" - url: "https://marketplace.visualstudio.com/items?itemName=huacat.pink-theme" -colors: - bg: "#3D173D" - fg: "#D1B9C8" - black: "#3D173D" - red: "#D14040" - green: "#489427" - yellow: "#C4990D" - blue: "#5782DF" - magenta: "#9045D6" - cyan: "#3CA89A" - white: "#D1B9C8" - brightBlack: "#978C94" - brightRed: "#EE7A7A" - brightGreen: "#72C45B" - brightYellow: "#D7B853" - brightBlue: "#7E97F9" - brightMagenta: "#BB80F1" - brightCyan: "#7ABECC" - brightWhite: "#DEC7D5" -meta: - mode: "dark" - accent: "magenta" - hue: 327 - pair: null - contrast: - fg: 65 - black: 0 - red: 27.2 - green: 33.2 - yellow: 47.1 - blue: 33.9 - magenta: 23.1 - cyan: 43.5 - white: 65 - brightBlack: 38.7 - brightRed: 46.1 - brightGreen: 56.8 - brightYellow: 62.2 - brightBlue: 45.7 - brightMagenta: 44.6 - brightCyan: 58.2 - brightWhite: 73 diff --git a/themes/hub-light.yaml b/themes/hub-light.yaml deleted file mode 100644 index 1e95b389..00000000 --- a/themes/hub-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hub-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#24292E" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#D73A49" - yellow: "#005CC5" - blue: "#005CC5" - magenta: "#D73A49" - cyan: "#6F42C1" - white: "#2F363C" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#E88F97" - brightYellow: "#2C8FFF" - brightBlue: "#2C8FFF" - brightMagenta: "#E88F97" - brightCyan: "#AA8FDA" - brightWhite: "#515C67" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 101.5 - black: 0 - red: 80.3 - green: 70.4 - yellow: 80.5 - blue: 80.5 - magenta: 70.4 - cyan: 81.7 - white: 98 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 46.8 - brightYellow: 59.1 - brightBlue: 59.1 - brightMagenta: 46.8 - brightCyan: 53 - brightWhite: 83.6 diff --git a/themes/hub.yaml b/themes/hub.yaml deleted file mode 100644 index fb2d3f4f..00000000 --- a/themes/hub.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hub" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#3B444C" - fg: "#FFFFFF" - black: "#46515A" - red: "#BA0E2E" - green: "#E85362" - yellow: "#5392DB" - blue: "#5392DB" - magenta: "#E85362" - cyan: "#9B78DB" - white: "#FFFFFF" - brightBlack: "#687785" - brightRed: "#F03E5F" - brightGreen: "#F4ADB4" - brightYellow: "#A7C7ED" - brightBlue: "#A7C7ED" - brightMagenta: "#F4ADB4" - brightCyan: "#D7C9F0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 245 - pair: null - contrast: - fg: 97.2 - black: 0 - red: 10.8 - green: 28.4 - yellow: 31.7 - blue: 31.7 - magenta: 28.4 - cyan: 29.2 - white: 97.2 - brightBlack: 19 - brightRed: 27.1 - brightGreen: 57.8 - brightYellow: 60.3 - brightBlue: 60.3 - brightMagenta: 57.8 - brightCyan: 66.9 - brightWhite: 97.2 diff --git a/themes/hugodvlp.yaml b/themes/hugodvlp.yaml index 04594cea..ae7e63dc 100644 --- a/themes/hugodvlp.yaml +++ b/themes/hugodvlp.yaml @@ -8,6 +8,7 @@ source: author: "Hugo" repo: "https://github.com/hugos/hugodvlpr-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Hugodvlpr.hugodvlpr-theme" + formats: null colors: bg: "#151B20" fg: "#FF8B56" diff --git a/themes/hulcu.yaml b/themes/hulcu.yaml index 5d2dd3c8..0f667b8f 100644 --- a/themes/hulcu.yaml +++ b/themes/hulcu.yaml @@ -8,6 +8,7 @@ source: author: "Slobodan Živanović" repo: "https://github.com/slobodanzivanovic/hulcu.vscode" url: "https://marketplace.visualstudio.com/items?itemName=slobodan-zivanovic.hulcu" + formats: null colors: bg: "#212129" fg: "#F0E0B8" diff --git a/themes/hulky.yaml b/themes/hulky.yaml index ced80139..86b853ca 100644 --- a/themes/hulky.yaml +++ b/themes/hulky.yaml @@ -8,6 +8,7 @@ source: author: "Akash K" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AkashK.Hulky" + formats: null colors: bg: "#232323" fg: "#FFFFFF" diff --git a/themes/human-dark.yaml b/themes/human-dark.yaml deleted file mode 100644 index ba5875bd..00000000 --- a/themes/human-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Human Dark" -source: - marketplace_id: "TomHall.human-theme" - version: "1.1.1" - installs: 95 - rating: 0 - ratings: 0 - author: "Tom Hall" - repo: "https://github.com/tom-f-hall/human-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" -colors: - bg: "#101713" - fg: "#D9D3C7" - black: "#0D120F" - red: "#E84040" - green: "#9AD1A3" - yellow: "#C9A24D" - blue: "#8FBFA3" - magenta: "#D97A7A" - cyan: "#9FB8A5" - white: "#CFC8BA" - brightBlack: "#3E4A42" - brightRed: "#E8A09A" - brightGreen: "#A3D977" - brightYellow: "#E8B86F" - brightBlue: "#B0C8B8" - brightMagenta: "#E8A09A" - brightCyan: "#B0C8B8" - brightWhite: "#D9D3C7" -meta: - mode: "dark" - accent: "orange" - hue: 160 - pair: "Human Light" - contrast: - fg: 79.3 - black: 0 - red: 34.8 - green: 70.1 - yellow: 54 - blue: 61.1 - magenta: 44.6 - cyan: 59.7 - white: 72.8 - brightBlack: 10.1 - brightRed: 60.1 - brightGreen: 73.4 - brightYellow: 67.8 - brightBlue: 69 - brightMagenta: 60.1 - brightCyan: 69 - brightWhite: 79.3 diff --git a/themes/human-high-contrast.yaml b/themes/human-high-contrast.yaml deleted file mode 100644 index 2fafa2e4..00000000 --- a/themes/human-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Human High Contrast" -source: - marketplace_id: "TomHall.human-theme" - version: "1.1.1" - installs: 95 - rating: 0 - ratings: 0 - author: "Tom Hall" - repo: "https://github.com/tom-f-hall/human-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#FF0000" - green: "#00EE00" - yellow: "#FFCC00" - blue: "#00DDFF" - magenta: "#EE0000" - cyan: "#00CCEE" - white: "#CCCCCC" - brightBlack: "#666666" - brightRed: "#FF4444" - brightGreen: "#00FF00" - brightYellow: "#FFCC00" - brightBlue: "#00BBDD" - brightMagenta: "#FF4444" - brightCyan: "#00BBDD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 37.5 - green: 77.5 - yellow: 79.6 - blue: 75.2 - magenta: 33.3 - cyan: 66.2 - white: 75.7 - brightBlack: 23 - brightRed: 41.6 - brightGreen: 86.5 - brightYellow: 79.6 - brightBlue: 57.6 - brightMagenta: 41.6 - brightCyan: 57.6 - brightWhite: 107.9 diff --git a/themes/human-light.yaml b/themes/human-light.yaml deleted file mode 100644 index 4f955963..00000000 --- a/themes/human-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Human Light" -source: - marketplace_id: "TomHall.human-theme" - version: "1.1.1" - installs: 95 - rating: 0 - ratings: 0 - author: "Tom Hall" - repo: "https://github.com/tom-f-hall/human-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" -colors: - bg: "#EDF3EB" - fg: "#2D2520" - black: "#E0E8DD" - red: "#8A3A2A" - green: "#2E6B2F" - yellow: "#7A5B1F" - blue: "#1A5F6F" - magenta: "#8A4040" - cyan: "#256B7A" - white: "#6B5F52" - brightBlack: "#A89A90" - brightRed: "#A84545" - brightGreen: "#2E6B25" - brightYellow: "#7A5B1F" - brightBlue: "#2D6B7F" - brightMagenta: "#A84545" - brightCyan: "#2D6B7F" - brightWhite: "#2D2520" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Human Dark" - contrast: - fg: 93.7 - black: 0 - red: 78 - green: 73.5 - yellow: 72.9 - blue: 76.5 - magenta: 76.6 - cyan: 71.8 - white: 72.7 - brightBlack: 44.6 - brightRed: 70.3 - brightGreen: 73.6 - brightYellow: 72.9 - brightBlue: 71.4 - brightMagenta: 70.3 - brightCyan: 71.4 - brightWhite: 93.7 diff --git a/themes/human-low-light.yaml b/themes/human-low-light.yaml deleted file mode 100644 index 93f4b5f0..00000000 --- a/themes/human-low-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Human Low Light" -source: - marketplace_id: "TomHall.human-theme" - version: "1.1.1" - installs: 95 - rating: 0 - ratings: 0 - author: "Tom Hall" - repo: "https://github.com/tom-f-hall/human-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" -colors: - bg: "#141210" - fg: "#D9CFC4" - black: "#0F0D0B" - red: "#E85050" - green: "#A8C98A" - yellow: "#D9A84D" - blue: "#9FBF9A" - magenta: "#E98A8A" - cyan: "#A8B89F" - white: "#C9BFB4" - brightBlack: "#4A4A42" - brightRed: "#E8B0AA" - brightGreen: "#B8C97A" - brightYellow: "#E8C87F" - brightBlue: "#B8C8B0" - brightMagenta: "#E8B0AA" - brightCyan: "#B8C8B0" - brightWhite: "#D9CFC4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 77.7 - black: 0 - red: 37.6 - green: 67.3 - yellow: 59 - blue: 62.5 - magenta: 52.9 - cyan: 60.7 - white: 68.3 - brightBlack: 11.2 - brightRed: 66.6 - brightGreen: 68.7 - brightYellow: 74.8 - brightBlue: 69.8 - brightMagenta: 66.6 - brightCyan: 69.8 - brightWhite: 77.7 diff --git a/themes/human-soft.yaml b/themes/human-soft.yaml deleted file mode 100644 index abcaa5e8..00000000 --- a/themes/human-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Human Soft" -source: - marketplace_id: "TomHall.human-theme" - version: "1.1.1" - installs: 95 - rating: 0 - ratings: 0 - author: "Tom Hall" - repo: "https://github.com/tom-f-hall/human-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" -colors: - bg: "#F2F5F0" - fg: "#3A3530" - black: "#E8EDE5" - red: "#9A4A3A" - green: "#3E7A3F" - yellow: "#8A6B2F" - blue: "#2A6F7F" - magenta: "#9A5050" - cyan: "#357A8A" - white: "#7A6F62" - brightBlack: "#B8AAA0" - brightRed: "#B85555" - brightGreen: "#3E7A35" - brightYellow: "#8A6B2F" - brightBlue: "#3D7A8F" - brightMagenta: "#B85555" - brightCyan: "#3D7A8F" - brightWhite: "#3A3530" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 91.2 - black: 0 - red: 73.7 - green: 68.9 - yellow: 67.7 - blue: 71.8 - magenta: 72 - cyan: 67.1 - white: 67.5 - brightBlack: 38 - brightRed: 65.6 - brightGreen: 69 - brightYellow: 67.7 - brightBlue: 66.6 - brightMagenta: 65.6 - brightCyan: 66.6 - brightWhite: 91.2 diff --git a/themes/human-warm.yaml b/themes/human-warm.yaml deleted file mode 100644 index 8f5fd1b5..00000000 --- a/themes/human-warm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Human Warm" -source: - marketplace_id: "TomHall.human-theme" - version: "1.1.1" - installs: 95 - rating: 0 - ratings: 0 - author: "Tom Hall" - repo: "https://github.com/tom-f-hall/human-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" -colors: - bg: "#F5F0E8" - fg: "#2D2520" - black: "#E8DED0" - red: "#9A4A2A" - green: "#357A2F" - yellow: "#7A5B1F" - blue: "#2A6F5F" - magenta: "#9A5040" - cyan: "#357A6A" - white: "#6B5F52" - brightBlack: "#B8AA90" - brightRed: "#B85545" - brightGreen: "#357A25" - brightYellow: "#7A5B1F" - brightBlue: "#3D7A6F" - brightMagenta: "#B85545" - brightCyan: "#3D7A6F" - brightWhite: "#2D2520" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 93.3 - black: 7.7 - red: 71.8 - green: 67.4 - yellow: 72.5 - blue: 70.8 - magenta: 70.2 - cyan: 66.2 - white: 72.3 - brightBlack: 36.4 - brightRed: 63.8 - brightGreen: 67.4 - brightYellow: 72.5 - brightBlue: 65.7 - brightMagenta: 63.8 - brightCyan: 65.7 - brightWhite: 93.3 diff --git a/themes/human.yaml b/themes/human.yaml index 97d415e2..55f4b5c0 100644 --- a/themes/human.yaml +++ b/themes/human.yaml @@ -8,6 +8,8 @@ source: author: "fielding" repo: "https://github.com/fielding/human-plus-plus" url: "https://marketplace.visualstudio.com/items?itemName=fielding.human-plus-plus" + formats: + nvim: "https://raw.githubusercontent.com/fielding/human-plus-plus/main/packages/neovim-plugin/lua/human-plus-plus/config.lua" colors: bg: "#1A1C22" fg: "#F8F6F2" diff --git a/themes/hundred-oceans.yaml b/themes/hundred-oceans.yaml index 0b250d83..e2812a52 100644 --- a/themes/hundred-oceans.yaml +++ b/themes/hundred-oceans.yaml @@ -2,12 +2,13 @@ name: "Hundred Oceans" source: marketplace_id: "MikeCluck.hundred-oceans-theme" version: "1.0.0" - installs: 1430 + installs: 1431 rating: 5 ratings: 2 author: "Mike Cluck" repo: "https://github.com/MCluck90/vscode-hundred-oceans-theme" url: "https://marketplace.visualstudio.com/items?itemName=MikeCluck.hundred-oceans-theme" + formats: null colors: bg: "#06090F" fg: "#A5B7C0" diff --git a/themes/hush-dark.yaml b/themes/hush-dark.yaml index c1f89832..58877f5e 100644 --- a/themes/hush-dark.yaml +++ b/themes/hush-dark.yaml @@ -8,6 +8,7 @@ source: author: "Nobilissimum" repo: "https://github.com/nobilissimum/hush-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nobilissimum.hush-theme" + formats: null colors: bg: "#202733" fg: "#FFFFFF" diff --git a/themes/hush-light.yaml b/themes/hush-light.yaml index 09149a0d..3b088442 100644 --- a/themes/hush-light.yaml +++ b/themes/hush-light.yaml @@ -8,6 +8,7 @@ source: author: "Nobilissimum" repo: "https://github.com/nobilissimum/hush-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nobilissimum.hush-theme" + formats: null colors: bg: "#F5FAFA" fg: "#111111" diff --git a/themes/hutaotheme.yaml b/themes/hutaotheme.yaml index 365d5697..b582a9cf 100644 --- a/themes/hutaotheme.yaml +++ b/themes/hutaotheme.yaml @@ -8,6 +8,7 @@ source: author: "agomizi1cm" repo: "https://github.com/agomizi1cm/HuTaoTheme" url: "https://marketplace.visualstudio.com/items?itemName=agomizi1cm.hutao-theme" + formats: null colors: bg: "#541B1B" fg: "#FFE098" diff --git a/themes/hybrid-dim.yaml b/themes/hybrid-dim.yaml index ad629de4..1e9748d5 100644 --- a/themes/hybrid-dim.yaml +++ b/themes/hybrid-dim.yaml @@ -1,4 +1,4 @@ -name: "Hybrid Dim" +name: "Hybrid dim" source: marketplace_id: "meronz.hybrid-dim" version: "0.0.3" @@ -8,6 +8,7 @@ source: author: "meronz" repo: "https://github.com/meronz/hybrid-dim" url: "https://marketplace.visualstudio.com/items?itemName=meronz.hybrid-dim" + formats: null colors: bg: "#1D1F21" fg: "#C5C8C6" diff --git a/themes/hybrid-next-gray-background.yaml b/themes/hybrid-next-gray-background.yaml index 0db171b2..958f21c7 100644 --- a/themes/hybrid-next-gray-background.yaml +++ b/themes/hybrid-next-gray-background.yaml @@ -8,6 +8,7 @@ source: author: "Neil Kistner" repo: "https://github.com/wyze/vscode-hybrid-next" url: "https://marketplace.visualstudio.com/items?itemName=wyze.theme-hybrid-next" + formats: null colors: bg: "#333333" fg: "#C5C8C6" diff --git a/themes/hybrid-theme.yaml b/themes/hybrid-theme.yaml index cb9ed48f..5c06ac67 100644 --- a/themes/hybrid-theme.yaml +++ b/themes/hybrid-theme.yaml @@ -8,6 +8,7 @@ source: author: "black23eep" repo: null url: "https://marketplace.visualstudio.com/items?itemName=black23eep.a-hybrid-theme" + formats: null colors: bg: "#0B0B0B" fg: "#AEAEAE" diff --git a/themes/hydr-theme.yaml b/themes/hydr-theme.yaml index b9c98c4d..25be3803 100644 --- a/themes/hydr-theme.yaml +++ b/themes/hydr-theme.yaml @@ -2,12 +2,13 @@ name: "hydr-theme" source: marketplace_id: "hydr.hydr-theme" version: "2.0.5" - installs: 2603 + installs: 2604 rating: 5 ratings: 3 author: "hydr" repo: null url: "https://marketplace.visualstudio.com/items?itemName=hydr.hydr-theme" + formats: null colors: bg: "#191A28" fg: "#ACD8DB" diff --git a/themes/hydra-night.yaml b/themes/hydra-night.yaml index 2ca41c64..8e71302c 100644 --- a/themes/hydra-night.yaml +++ b/themes/hydra-night.yaml @@ -8,6 +8,7 @@ source: author: "Phoenix-141" repo: "https://github.com/Phoenix-141/Hydra-Theme" url: "https://marketplace.visualstudio.com/items?itemName=CupizeiroBR.Hydra-Theme" + formats: null colors: bg: "#06081B" fg: "#6842A1" diff --git a/themes/hydra-storm.yaml b/themes/hydra-storm.yaml index 89349b8f..8b4d1707 100644 --- a/themes/hydra-storm.yaml +++ b/themes/hydra-storm.yaml @@ -8,6 +8,7 @@ source: author: "Phoenix-141" repo: "https://github.com/Phoenix-141/Hydra-Theme" url: "https://marketplace.visualstudio.com/items?itemName=CupizeiroBR.Hydra-Theme" + formats: null colors: bg: "#0E1536" fg: "#D4D4D4" diff --git a/themes/hydro-sea.yaml b/themes/hydro-sea.yaml index 82f2abe9..68880404 100644 --- a/themes/hydro-sea.yaml +++ b/themes/hydro-sea.yaml @@ -8,6 +8,7 @@ source: author: "Henrique" repo: "https://github.com/Henriquehnnm/Hydro-theme" url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.hydro-theme" + formats: null colors: bg: "#020617" fg: "#F8FAFC" diff --git a/themes/hydro-soft.yaml b/themes/hydro-soft.yaml index 505f3551..dd8b386a 100644 --- a/themes/hydro-soft.yaml +++ b/themes/hydro-soft.yaml @@ -8,6 +8,7 @@ source: author: "Henrique" repo: "https://github.com/Henriquehnnm/Hydro-theme" url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.hydro-theme" + formats: null colors: bg: "#171717" fg: "#FAFAFA" diff --git a/themes/hydro.yaml b/themes/hydro.yaml index 96aeec20..739488f2 100644 --- a/themes/hydro.yaml +++ b/themes/hydro.yaml @@ -8,6 +8,7 @@ source: author: "Henrique" repo: "https://github.com/Henriquehnnm/Hydro-theme" url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.hydro-theme" + formats: null colors: bg: "#0A0A0A" fg: "#FAFAFA" diff --git a/themes/hygge-kyst-dark.yaml b/themes/hygge-kyst-dark.yaml index dd1e2b17..e1d43e81 100644 --- a/themes/hygge-kyst-dark.yaml +++ b/themes/hygge-kyst-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ostahl.hygge-kyst-dark" version: "1.0.0" installs: 26 + rating: 0 + ratings: 0 author: "Ole Stahl" repo: "https://github.com/ostahl8/hygge-kyst" url: "https://marketplace.visualstudio.com/items?itemName=ostahl.hygge-kyst-dark" + formats: null colors: bg: "#191920" fg: "#E0E0E8" diff --git a/themes/hyle-color-theme.yaml b/themes/hyle-color-theme.yaml index 2bd79327..604879a1 100644 --- a/themes/hyle-color-theme.yaml +++ b/themes/hyle-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Kaosc" repo: "https://github.com/Kaosc/Hyle" url: "https://marketplace.visualstudio.com/items?itemName=Kaosc.hyle" + formats: null colors: bg: "#101010" fg: "#C7C7C7" diff --git a/themes/hyle-night-night-color-theme.yaml b/themes/hyle-night-night-color-theme.yaml deleted file mode 100644 index 886c556d..00000000 --- a/themes/hyle-night-night-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hyle-night-night-color-theme" -source: - marketplace_id: "Kaosc.hyle" - version: "0.4.2" - installs: 190 - rating: 0 - ratings: 0 - author: "Kaosc" - repo: "https://github.com/Kaosc/Hyle" - url: "https://marketplace.visualstudio.com/items?itemName=Kaosc.hyle" -colors: - bg: "#070707" - fg: "#C7C7C7" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 72.6 - black: 0 - red: 27.7 - green: 53.9 - yellow: 86.6 - blue: 28.4 - magenta: 30.7 - cyan: 48.5 - white: 91 - brightBlack: 23 - brightRed: 39.5 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 40.9 - brightMagenta: 46.3 - brightCyan: 56.3 - brightWhite: 91 diff --git a/themes/hyped-down-fork.yaml b/themes/hyped-down-fork.yaml deleted file mode 100644 index 30a15676..00000000 --- a/themes/hyped-down-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Hyped Down - Fork" -source: - marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" - version: "9.0.1" - installs: 29917 - rating: 4.6 - ratings: 10 - author: "Hasibur R" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" -colors: - bg: "#1D1F27" - fg: "#C5C8C6" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 274 - pair: null - contrast: - fg: 70.8 - black: 0 - red: 25.7 - green: 52 - yellow: 84.6 - blue: 26.4 - magenta: 28.7 - cyan: 46.5 - white: 89 - brightBlack: 21 - brightRed: 37.6 - brightGreen: 62.5 - brightYellow: 94.6 - brightBlue: 39 - brightMagenta: 44.4 - brightCyan: 54.4 - brightWhite: 89 diff --git a/themes/hyped-down-theme.yaml b/themes/hyped-down-theme.yaml deleted file mode 100644 index 476451e3..00000000 --- a/themes/hyped-down-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hyped-down-theme" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - rating: 5 - ratings: 3 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#191A1F" - fg: "#FFFFFF" - black: "#565454" - red: "#D1949E" - green: "#DFF7A9" - yellow: "#879071" - blue: "#747EA7" - magenta: "#6F6F6F" - cyan: "#8BA6A9" - white: "#8A8A8A" - brightBlack: "#3D3D3D" - brightRed: "#904E64" - brightGreen: "#D1FF69" - brightYellow: "#F5F543" - brightBlue: "#9EABDE" - brightMagenta: "#8A8A8A" - brightCyan: "#9ED8DE" - brightWhite: "#ABABAB" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 106.5 - black: 14.5 - red: 51.8 - green: 95.1 - yellow: 39.3 - blue: 33.2 - magenta: 25.6 - cyan: 50 - white: 38.2 - brightBlack: 0 - brightRed: 20.4 - brightGreen: 96 - brightYellow: 95.3 - brightBlue: 56.4 - brightMagenta: 38.2 - brightCyan: 75.5 - brightWhite: 55.4 diff --git a/themes/hyper-ctrl-theme.yaml b/themes/hyper-ctrl-theme.yaml index 9d0c8001..2e7599de 100644 --- a/themes/hyper-ctrl-theme.yaml +++ b/themes/hyper-ctrl-theme.yaml @@ -8,6 +8,7 @@ source: author: "Bharath Prabhuswamy" repo: "https://github.com/bprabhus/hyper-ctrl-theme" url: "https://marketplace.visualstudio.com/items?itemName=bprabhus.hyper-ctrl-theme" + formats: null colors: bg: "#000000" fg: "#959595" diff --git a/themes/hyper.yaml b/themes/hyper.yaml index b0128cd8..1f380bfa 100644 --- a/themes/hyper.yaml +++ b/themes/hyper.yaml @@ -8,6 +8,7 @@ source: author: "jack-curtis" repo: "https://github.com/Jack-Curtis/hyper-VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=jack-curtis.hyper" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/hyperdark-theme.yaml b/themes/hyperdark-theme.yaml index e2064889..f0655d6f 100644 --- a/themes/hyperdark-theme.yaml +++ b/themes/hyperdark-theme.yaml @@ -1,13 +1,14 @@ -name: "Hyperdark Theme" +name: "Hyperdark theme" source: marketplace_id: "voidfaithnull.hypedown-theme" version: "1.5.0" - installs: 3361 + installs: 3364 rating: 5 ratings: 2 author: "wxgrzr" repo: "https://github.com/wgrzr/hypedown-theme" url: "https://marketplace.visualstudio.com/items?itemName=voidfaithnull.hypedown-theme" + formats: null colors: bg: "#191A1F" fg: "#E8E6E0" diff --git a/themes/hyperlink.yaml b/themes/hyperlink.yaml index ec5b063b..f7d80050 100644 --- a/themes/hyperlink.yaml +++ b/themes/hyperlink.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "NikKale.hyperlink-theme" version: "1.1.0" installs: 74 + rating: 0 + ratings: 0 author: "Nik Kale" repo: "https://github.com/dabbleintech/hyperlink-vscode" url: "https://marketplace.visualstudio.com/items?itemName=NikKale.hyperlink-theme" + formats: null colors: bg: "#1C2639" fg: "#FFFFFF" diff --git a/themes/hyperrail-theme-hyper-syntax-colors.yaml b/themes/hyperrail-theme-hyper-syntax-colors.yaml index 50ae65a6..3ca6cf3c 100644 --- a/themes/hyperrail-theme-hyper-syntax-colors.yaml +++ b/themes/hyperrail-theme-hyper-syntax-colors.yaml @@ -8,6 +8,7 @@ source: author: "Nikola Turudija" repo: null url: "https://marketplace.visualstudio.com/items?itemName=nikola-turudija.hyperrail-theme" + formats: null colors: bg: "#1D2026" fg: "#FFFFFF" diff --git a/themes/hypersubatomic.yaml b/themes/hypersubatomic.yaml index be443204..af94c98e 100644 --- a/themes/hypersubatomic.yaml +++ b/themes/hypersubatomic.yaml @@ -8,6 +8,7 @@ source: author: "Neil Panchal" repo: "https://github.com/neilpanchal/hypersubatomic-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=neilpanchal.hypersubatomic" + formats: null colors: bg: "#0F111A" fg: "#8F93A2" diff --git a/themes/hypervoxel.yaml b/themes/hypervoxel.yaml index 59903c7f..12efe272 100644 --- a/themes/hypervoxel.yaml +++ b/themes/hypervoxel.yaml @@ -8,6 +8,7 @@ source: author: "Mohamed Afraz" repo: "https://github.com/MohamedAfraz/HyperVoxel" url: "https://marketplace.visualstudio.com/items?itemName=MohamedAfraz.hypervoxel" + formats: null colors: bg: "#181B34" fg: "#E1E1E6" diff --git a/themes/hyprluna.yaml b/themes/hyprluna.yaml deleted file mode 100644 index f328ea35..00000000 --- a/themes/hyprluna.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "HyprLuna" -source: - marketplace_id: "HyprLuna.hyprluna-theme" - version: "1.0.2" - installs: 1279 - rating: 5 - ratings: 1 - author: "HyprLuna" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HyprLuna.hyprluna-theme" -colors: - bg: "#1A1110" - fg: "#F1DEDC" - black: "#A08C8A" - red: "#FFB4AB" - green: "#E7BDB8" - yellow: "#5D3F3C" - blue: "#FFB3AC" - magenta: "#E1C38C" - cyan: "#584419" - white: "#F1DEDC" - brightBlack: "#D8C2BF" - brightRed: "#93000A" - brightGreen: "#5D3F3C" - brightYellow: "#E7BDB8" - brightBlue: "#73332F" - brightMagenta: "#584419" - brightCyan: "#E1C38C" - brightWhite: "#F1DEDC" -meta: - mode: "dark" - accent: "orange" - hue: 26 - pair: null - contrast: - fg: 88.5 - black: 42.1 - red: 71.9 - green: 71.8 - yellow: 10.1 - blue: 71.6 - magenta: 71.9 - cyan: 10.3 - white: 88.5 - brightBlack: 71.9 - brightRed: 12.4 - brightGreen: 10.1 - brightYellow: 71.8 - brightBlue: 10.5 - brightMagenta: 10.3 - brightCyan: 71.9 - brightWhite: 88.5 diff --git a/themes/hyrule-contrast.yaml b/themes/hyrule-contrast.yaml deleted file mode 100644 index e34ace86..00000000 --- a/themes/hyrule-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hyrule-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0C0C0C" - fg: "#C0D5C1" - black: "#191919" - red: "#BA0E2E" - green: "#F5C504" - yellow: "#569E16" - blue: "#90C93F" - magenta: "#90C93F" - cyan: "#F5C504" - white: "#CFDFD0" - brightBlack: "#3F3F3F" - brightRed: "#F03E5F" - brightGreen: "#FCDE63" - brightYellow: "#88E337" - brightBlue: "#BEDF8F" - brightMagenta: "#BEDF8F" - brightCyan: "#FCDE63" - brightWhite: "#FDFEFD" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 77.5 - black: 0 - red: 21.3 - green: 74.8 - yellow: 41 - blue: 64.1 - magenta: 64.1 - cyan: 74.8 - white: 84.4 - brightBlack: 7.9 - brightRed: 37.6 - brightGreen: 87.2 - brightYellow: 75.8 - brightBlue: 80.2 - brightMagenta: 80.2 - brightCyan: 87.2 - brightWhite: 106.8 diff --git a/themes/hyrule-light.yaml b/themes/hyrule-light.yaml deleted file mode 100644 index abf97a94..00000000 --- a/themes/hyrule-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hyrule-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#C0D5C1" - fg: "#2D2C2B" - black: "#CFDFD0" - red: "#BA0E2E" - green: "#B7950C" - yellow: "#407710" - blue: "#68912E" - magenta: "#68912E" - cyan: "#B7950C" - white: "#3A3937" - brightBlack: "#FDFEFD" - brightRed: "#F03E5F" - brightGreen: "#F2CD37" - brightYellow: "#70D11C" - brightBlue: "#9CCB5A" - brightMagenta: "#9CCB5A" - brightCyan: "#F2CD37" - brightWhite: "#615F5D" -meta: - mode: "light" - accent: "green" - hue: 147 - pair: null - contrast: - fg: 72.9 - black: 0 - red: 52.7 - green: 27 - yellow: 49.2 - blue: 36.8 - magenta: 36.8 - cyan: 27 - white: 68.9 - brightBlack: 27.9 - brightRed: 36.2 - brightGreen: 0 - brightYellow: 9.2 - brightBlue: 8.2 - brightMagenta: 8.2 - brightCyan: 0 - brightWhite: 54 diff --git a/themes/hyrule.yaml b/themes/hyrule.yaml deleted file mode 100644 index 401c2dea..00000000 --- a/themes/hyrule.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "hyrule" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2D2C2B" - fg: "#C0D5C1" - black: "#3A3937" - red: "#BA0E2E" - green: "#F5C504" - yellow: "#569E16" - blue: "#90C93F" - magenta: "#90C93F" - cyan: "#F5C504" - white: "#CFDFD0" - brightBlack: "#615F5D" - brightRed: "#F03E5F" - brightGreen: "#FCDE63" - brightYellow: "#88E337" - brightBlue: "#BEDF8F" - brightMagenta: "#BEDF8F" - brightCyan: "#FCDE63" - brightWhite: "#FDFEFD" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 73.4 - black: 0 - red: 17.2 - green: 70.8 - yellow: 37 - blue: 60.1 - magenta: 60.1 - cyan: 70.8 - white: 80.3 - brightBlack: 16 - brightRed: 33.5 - brightGreen: 83.2 - brightYellow: 71.8 - brightBlue: 76.2 - brightMagenta: 76.2 - brightCyan: 83.2 - brightWhite: 102.8 diff --git a/themes/i-don-t-know.yaml b/themes/i-don-t-know.yaml index 7c573d9a..f9b35656 100644 --- a/themes/i-don-t-know.yaml +++ b/themes/i-don-t-know.yaml @@ -8,6 +8,7 @@ source: author: "Pixl02" repo: "https://github.com/farhankhalid-dev/idk-VsCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Pixl02.i-dont-know" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/i-light-color-theme.yaml b/themes/i-light-color-theme.yaml index 44f41ed6..ee786821 100644 --- a/themes/i-light-color-theme.yaml +++ b/themes/i-light-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "ctrlplusb" repo: "https://github.com/ctrlplusb/i-theme" url: "https://marketplace.visualstudio.com/items?itemName=ctrlplusb.i-minimal-theme" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/i-night-color-theme.yaml b/themes/i-night-color-theme.yaml deleted file mode 100644 index 7fe7b09d..00000000 --- a/themes/i-night-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "i-night-color-theme" -source: - marketplace_id: "ctrlplusb.i-minimal-theme" - version: "1.1.5" - installs: 10233 - rating: 5 - ratings: 3 - author: "ctrlplusb" - repo: "https://github.com/ctrlplusb/i-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ctrlplusb.i-minimal-theme" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#FFFFFF" - red: "#FF0032" - green: "#00FF68" - yellow: "#FFCA00" - blue: "#004BFF" - magenta: "#7D46FC" - cyan: "#00D2FF" - white: "#FFFFFF" - brightBlack: "#FFFFFF" - brightRed: "#FF0032" - brightGreen: "#00FF68" - brightYellow: "#FFCA00" - brightBlue: "#004BFF" - brightMagenta: "#7D46FC" - brightCyan: "#00D2FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 107.9 - black: 107.9 - red: 37.7 - green: 87.2 - yellow: 78.8 - blue: 22.9 - magenta: 27.7 - cyan: 70 - white: 107.9 - brightBlack: 107.9 - brightRed: 37.7 - brightGreen: 87.2 - brightYellow: 78.8 - brightBlue: 22.9 - brightMagenta: 27.7 - brightCyan: 70 - brightWhite: 107.9 diff --git a/themes/i-solarised-color-theme.yaml b/themes/i-solarised-color-theme.yaml deleted file mode 100644 index 7bac1aef..00000000 --- a/themes/i-solarised-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "i-solarised-color-theme" -source: - marketplace_id: "ctrlplusb.i-minimal-theme" - version: "1.1.5" - installs: 10233 - rating: 5 - ratings: 3 - author: "ctrlplusb" - repo: "https://github.com/ctrlplusb/i-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ctrlplusb.i-minimal-theme" -colors: - bg: "#FDF6E3" - fg: "#000000" - black: "#000000" - red: "#FF0032" - green: "#00FF68" - yellow: "#FFCA00" - blue: "#004BFF" - magenta: "#7D46FC" - cyan: "#00D2FF" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#FF0032" - brightGreen: "#00FF68" - brightYellow: "#FFCA00" - brightBlue: "#004BFF" - brightMagenta: "#7D46FC" - brightCyan: "#00D2FF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 100.8 - black: 100.8 - red: 58.7 - green: 11.3 - yellow: 19.1 - blue: 73.6 - magenta: 68.8 - cyan: 27.4 - white: 0 - brightBlack: 100.8 - brightRed: 58.7 - brightGreen: 11.3 - brightYellow: 19.1 - brightBlue: 73.6 - brightMagenta: 68.8 - brightCyan: 27.4 - brightWhite: 0 diff --git a/themes/i3-dark-custom-ii.yaml b/themes/i3-dark-custom-ii.yaml deleted file mode 100644 index 8c96cc7f..00000000 --- a/themes/i3-dark-custom-ii.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "i3 - Dark+ - Custom II" -source: - marketplace_id: "i3acksp4ce.tokyo-night-default-dark" - version: "0.6.62" - installs: 6251 - rating: 5 - ratings: 2 - author: "i3acksp4ce" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" -colors: - bg: "#18191B" - fg: "#F3F3F4" - black: "#484F58" - red: "#FF7B72" - green: "#3FB950" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FFA198" - brightGreen: "#56D364" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 98.8 - black: 12.3 - red: 51.9 - green: 51.4 - yellow: 51.5 - blue: 51.5 - magenta: 51.5 - cyan: 60.7 - white: 63.3 - brightBlack: 28.5 - brightRed: 64.1 - brightGreen: 64.7 - brightYellow: 64 - brightBlue: 64 - brightMagenta: 63.9 - brightCyan: 69.2 - brightWhite: 106.7 diff --git a/themes/i3-dark-github-dark.yaml b/themes/i3-dark-github-dark.yaml deleted file mode 100644 index 3631135e..00000000 --- a/themes/i3-dark-github-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "i3 - Dark+ - Github Dark" -source: - marketplace_id: "i3acksp4ce.tokyo-night-default-dark" - version: "0.6.62" - installs: 6251 - rating: 5 - ratings: 2 - author: "i3acksp4ce" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" -colors: - bg: "#0D1117" - fg: "#E6EDF3" - black: "#484F58" - red: "#FF7B72" - green: "#3FB950" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FFA198" - brightGreen: "#56D364" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 258 - pair: null - contrast: - fg: 95 - black: 13.1 - red: 52.6 - green: 52.1 - yellow: 52.2 - blue: 52.2 - magenta: 52.2 - cyan: 61.4 - white: 64 - brightBlack: 29.3 - brightRed: 64.8 - brightGreen: 65.5 - brightYellow: 64.7 - brightBlue: 64.7 - brightMagenta: 64.6 - brightCyan: 69.9 - brightWhite: 107.4 diff --git a/themes/i3-panda-custom-iii.yaml b/themes/i3-panda-custom-iii.yaml deleted file mode 100644 index 1f7cd93a..00000000 --- a/themes/i3-panda-custom-iii.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "i3 - Panda - Custom III" -source: - marketplace_id: "i3acksp4ce.tokyo-night-default-dark" - version: "0.6.62" - installs: 6251 - rating: 5 - ratings: 2 - author: "i3acksp4ce" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" -colors: - bg: "#011627" - fg: "#F1F2F3" - black: "#484F58" - red: "#FF7B72" - green: "#3FB950" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FFA198" - brightGreen: "#56D364" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 244 - pair: null - contrast: - fg: 98.3 - black: 12.6 - red: 52.2 - green: 51.7 - yellow: 51.8 - blue: 51.8 - magenta: 51.8 - cyan: 61 - white: 63.6 - brightBlack: 28.8 - brightRed: 64.4 - brightGreen: 65 - brightYellow: 64.3 - brightBlue: 64.3 - brightMagenta: 64.2 - brightCyan: 69.5 - brightWhite: 107 diff --git a/themes/i3-panda-custom.yaml b/themes/i3-panda-custom.yaml deleted file mode 100644 index 20e83917..00000000 --- a/themes/i3-panda-custom.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "i3 - Panda - Custom" -source: - marketplace_id: "i3acksp4ce.tokyo-night-default-dark" - version: "0.6.62" - installs: 6251 - rating: 5 - ratings: 2 - author: "i3acksp4ce" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" -colors: - bg: "#141C24" - fg: "#F0F4F7" - black: "#484F58" - red: "#FF7B72" - green: "#3FB950" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FFA198" - brightGreen: "#56D364" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 249 - pair: null - contrast: - fg: 98.7 - black: 12.1 - red: 51.6 - green: 51.1 - yellow: 51.2 - blue: 51.2 - magenta: 51.2 - cyan: 60.4 - white: 63 - brightBlack: 28.3 - brightRed: 63.8 - brightGreen: 64.5 - brightYellow: 63.7 - brightBlue: 63.7 - brightMagenta: 63.6 - brightCyan: 68.9 - brightWhite: 106.4 diff --git a/themes/ian.yaml b/themes/ian.yaml index 5155fae4..15d350c2 100644 --- a/themes/ian.yaml +++ b/themes/ian.yaml @@ -8,6 +8,7 @@ source: author: "Ian Sergio H." repo: null url: "https://marketplace.visualstudio.com/items?itemName=iansergio.Dark-theme-ian" + formats: null colors: bg: "#1E1E1E" fg: "#E1E1E1" diff --git a/themes/ibm-carbon-gray-10.yaml b/themes/ibm-carbon-gray-10.yaml deleted file mode 100644 index 40574c0f..00000000 --- a/themes/ibm-carbon-gray-10.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "IBM Carbon Gray 10" -source: - marketplace_id: "achkasov.ibm-carbon-design-system-theme" - version: "1.1.0" - installs: 675 - rating: 0 - ratings: 0 - author: "achkasov" - repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" -colors: - bg: "#F4F4F4" - fg: "#161616" - black: "#525252" - red: "#DA1E28" - green: "#24A148" - yellow: "#FF832B" - blue: "#4589FF" - magenta: "#A56EFF" - cyan: "#009D9A" - white: "#FFFFFF" - brightBlack: "#525252" - brightRed: "#F14C4C" - brightGreen: "#A7F0BA" - brightYellow: "#F1C21B" - brightBlue: "#D0E2FF" - brightMagenta: "#E8DAFF" - brightCyan: "#9EF0F0" - brightWhite: "#F4F4F4" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.3 - black: 80.6 - red: 65.9 - green: 53.9 - yellow: 41.2 - blue: 53.9 - magenta: 54 - cyan: 53.6 - white: 0 - brightBlack: 80.6 - brightRed: 55.6 - brightGreen: 9.5 - brightYellow: 23.1 - brightBlue: 8.9 - brightMagenta: 9.3 - brightCyan: 8.1 - brightWhite: 0 diff --git a/themes/ibm-carbon-gray-100.yaml b/themes/ibm-carbon-gray-100.yaml deleted file mode 100644 index 22028dd7..00000000 --- a/themes/ibm-carbon-gray-100.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "IBM Carbon Gray 100" -source: - marketplace_id: "achkasov.ibm-carbon-design-system-theme" - version: "1.1.0" - installs: 675 - rating: 0 - ratings: 0 - author: "achkasov" - repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" -colors: - bg: "#161616" - fg: "#F4F4F4" - black: "#262626" - red: "#DA1E28" - green: "#24A148" - yellow: "#FF832B" - blue: "#4589FF" - magenta: "#A56EFF" - cyan: "#009D9A" - white: "#C6C6C6" - brightBlack: "#525252" - brightRed: "#F14C4C" - brightGreen: "#A7F0BA" - brightYellow: "#F1C21B" - brightBlue: "#D0E2FF" - brightMagenta: "#E8DAFF" - brightCyan: "#9EF0F0" - brightWhite: "#F4F4F4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99.7 - black: 0 - red: 28.3 - green: 40.3 - yellow: 53.3 - blue: 40.3 - magenta: 40.3 - cyan: 40.6 - white: 71.2 - brightBlack: 14 - brightRed: 38.7 - brightGreen: 86.7 - brightYellow: 72.3 - brightBlue: 87.4 - brightMagenta: 87 - brightCyan: 88.2 - brightWhite: 99.7 diff --git a/themes/ibm-carbon-gray-90.yaml b/themes/ibm-carbon-gray-90.yaml deleted file mode 100644 index 1290c537..00000000 --- a/themes/ibm-carbon-gray-90.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "IBM Carbon Gray 90" -source: - marketplace_id: "achkasov.ibm-carbon-design-system-theme" - version: "1.1.0" - installs: 675 - rating: 0 - ratings: 0 - author: "achkasov" - repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" -colors: - bg: "#262626" - fg: "#F4F4F4" - black: "#262626" - red: "#DA1E28" - green: "#24A148" - yellow: "#FF832B" - blue: "#4589FF" - magenta: "#A56EFF" - cyan: "#009D9A" - white: "#C6C6C6" - brightBlack: "#525252" - brightRed: "#F14C4C" - brightGreen: "#A7F0BA" - brightYellow: "#F1C21B" - brightBlue: "#D0E2FF" - brightMagenta: "#E8DAFF" - brightCyan: "#9EF0F0" - brightWhite: "#F4F4F4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 97.6 - black: 0 - red: 26.1 - green: 38.2 - yellow: 51.1 - blue: 38.1 - magenta: 38.1 - cyan: 38.4 - white: 69 - brightBlack: 11.9 - brightRed: 36.5 - brightGreen: 84.5 - brightYellow: 70.1 - brightBlue: 85.2 - brightMagenta: 84.8 - brightCyan: 86 - brightWhite: 97.6 diff --git a/themes/ibm-carbon-white.yaml b/themes/ibm-carbon-white.yaml deleted file mode 100644 index 76210ee5..00000000 --- a/themes/ibm-carbon-white.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "IBM Carbon White" -source: - marketplace_id: "achkasov.ibm-carbon-design-system-theme" - version: "1.1.0" - installs: 675 - rating: 0 - ratings: 0 - author: "achkasov" - repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" -colors: - bg: "#FFFFFF" - fg: "#161616" - black: "#525252" - red: "#DA1E28" - green: "#24A148" - yellow: "#FF832B" - blue: "#4589FF" - magenta: "#A56EFF" - cyan: "#009D9A" - white: "#F4F4F4" - brightBlack: "#525252" - brightRed: "#F14C4C" - brightGreen: "#A7F0BA" - brightYellow: "#F1C21B" - brightBlue: "#D0E2FF" - brightMagenta: "#E8DAFF" - brightCyan: "#9EF0F0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 104.8 - black: 87.2 - red: 72.5 - green: 60.5 - yellow: 47.8 - blue: 60.5 - magenta: 60.5 - cyan: 60.2 - white: 0 - brightBlack: 87.2 - brightRed: 62.1 - brightGreen: 16.1 - brightYellow: 29.6 - brightBlue: 15.4 - brightMagenta: 15.8 - brightCyan: 14.7 - brightWhite: 0 diff --git a/themes/icaria.yaml b/themes/icaria.yaml index 5b377a1c..4cf182b3 100644 --- a/themes/icaria.yaml +++ b/themes/icaria.yaml @@ -8,6 +8,7 @@ source: author: "icaro" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TheIcariaWorld.icaro" + formats: null colors: bg: "#0F131F" fg: "#FFFFFF" diff --git a/themes/icattheme.yaml b/themes/icattheme.yaml deleted file mode 100644 index 7bdc61fc..00000000 --- a/themes/icattheme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "icatTheme" -source: - marketplace_id: "ahmeticat.icat-dark-theme" - version: "0.0.11" - installs: 5291 - rating: 5 - ratings: 4 - author: "ahmeticat" - repo: "https://github.com/ahmeticat/Icat-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=ahmeticat.icat-dark-theme" -colors: - bg: "#222828" - fg: "#F8F8F2" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 99.7 - black: 0 - red: 22.4 - green: 50.8 - yellow: 55.4 - blue: 32.4 - magenta: 30 - cyan: 48.2 - white: 86.3 - brightBlack: 19.8 - brightRed: 35.1 - brightGreen: 74.8 - brightYellow: 81.7 - brightBlue: 47.6 - brightMagenta: 44.3 - brightCyan: 71.2 - brightWhite: 99.7 diff --git a/themes/icc-light-theme.yaml b/themes/icc-light-theme.yaml index 439dfaec..1dbf3e39 100644 --- a/themes/icc-light-theme.yaml +++ b/themes/icc-light-theme.yaml @@ -8,6 +8,7 @@ source: author: "icatalina" repo: "https://github.com/icatalina/vscode-icc-theme" url: "https://marketplace.visualstudio.com/items?itemName=icatalina.vscode-icc-theme" + formats: null colors: bg: "#F9F9FB" fg: "#1A1A1A" diff --git a/themes/ice-cube-dark.yaml b/themes/ice-cube-dark.yaml index bf4cb40b..91442213 100644 --- a/themes/ice-cube-dark.yaml +++ b/themes/ice-cube-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ncfrak.ice-cube" version: "1.0.3" installs: 412 + rating: 0 + ratings: 0 author: "ncfrak" repo: "https://github.com/ncfrak/ice-cube" url: "https://marketplace.visualstudio.com/items?itemName=ncfrak.ice-cube" + formats: null colors: bg: "#1C2A3B" fg: "#CCCAC2" diff --git a/themes/ice-cube-light.yaml b/themes/ice-cube-light.yaml index 21c3b5c6..b7a1d18b 100644 --- a/themes/ice-cube-light.yaml +++ b/themes/ice-cube-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ncfrak.ice-cube" version: "1.0.3" installs: 412 + rating: 0 + ratings: 0 author: "ncfrak" repo: "https://github.com/ncfrak/ice-cube" url: "https://marketplace.visualstudio.com/items?itemName=ncfrak.ice-cube" + formats: null colors: bg: "#FFFEF9" fg: "#5C6166" diff --git a/themes/ice.yaml b/themes/ice.yaml deleted file mode 100644 index 414167d6..00000000 --- a/themes/ice.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ice" -source: - marketplace_id: "kgnio.sprinklepack" - version: "0.2.5" - installs: 81 - rating: 5 - ratings: 2 - author: "Kagan Mamak" - repo: "https://github.com/kgnio/sprinklepack" - url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" -colors: - bg: "#E6F0F6" - fg: "#1C2C3A" - black: "#1C2C3A" - red: "#D95555" - green: "#57A773" - yellow: "#D8A657" - blue: "#5A90CC" - magenta: "#C18BD4" - cyan: "#368A9E" - white: "#E6F0F6" - brightBlack: "#8398AA" - brightRed: "#F17F7F" - brightGreen: "#72C48A" - brightYellow: "#F7C86A" - brightBlue: "#7CB2F0" - brightMagenta: "#D9A6E7" - brightCyan: "#66BCCF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: 234 - pair: null - contrast: - fg: 91.1 - black: 91.1 - red: 55.8 - green: 45.6 - yellow: 33.5 - blue: 50.7 - magenta: 41.7 - cyan: 56.9 - white: 0 - brightBlack: 46.6 - brightRed: 40.5 - brightGreen: 31.2 - brightYellow: 15.8 - brightBlue: 33.6 - brightMagenta: 28.5 - brightCyan: 32.7 - brightWhite: 8.7 diff --git a/themes/iceberg-contrast.yaml b/themes/iceberg-contrast.yaml deleted file mode 100644 index 13471a07..00000000 --- a/themes/iceberg-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "iceberg-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0B0E0E" - fg: "#BDD6DB" - black: "#161C1C" - red: "#BA0E2E" - green: "#59C0E3" - yellow: "#2D8DA1" - blue: "#FFFFFF" - magenta: "#B1E2F2" - cyan: "#FFFFFF" - white: "#CEE0E4" - brightBlack: "#384747" - brightRed: "#F03E5F" - brightGreen: "#B0E1F2" - brightYellow: "#61BFD3" - brightBlue: "#FFFFFF" - brightMagenta: "#FFFFFF" - brightCyan: "#FFFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.6 - black: 0 - red: 21.2 - green: 61.5 - yellow: 35.6 - blue: 107.6 - magenta: 84 - cyan: 107.6 - white: 85.5 - brightBlack: 9.6 - brightRed: 37.5 - brightGreen: 83.4 - brightYellow: 60.6 - brightBlue: 107.6 - brightMagenta: 107.6 - brightCyan: 107.6 - brightWhite: 107.6 diff --git a/themes/iceberg-light.yaml b/themes/iceberg-light.yaml deleted file mode 100644 index e6f6f96b..00000000 --- a/themes/iceberg-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "iceberg-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#BDD6DB" - fg: "#323B3D" - black: "#CEE0E4" - red: "#BA0E2E" - green: "#499FBC" - yellow: "#2D8DA1" - blue: "#323B3D" - magenta: "#7EA3AF" - cyan: "#323B3D" - white: "#3D494B" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#94C6D7" - brightYellow: "#61BFD3" - brightBlue: "#607175" - brightMagenta: "#BDD0D6" - brightCyan: "#607175" - brightWhite: "#607175" -meta: - mode: "light" - accent: "orange" - hue: 211 - pair: null - contrast: - fg: 70 - black: 0 - red: 53.8 - green: 30.1 - yellow: 39.3 - blue: 70 - magenta: 26 - cyan: 70 - white: 65 - brightBlack: 27.5 - brightRed: 37.4 - brightGreen: 8.4 - brightYellow: 14.9 - brightBlue: 48.7 - brightMagenta: 0 - brightCyan: 48.7 - brightWhite: 48.7 diff --git a/themes/iceberg.yaml b/themes/iceberg.yaml index 50eda545..0e7e3405 100644 --- a/themes/iceberg.yaml +++ b/themes/iceberg.yaml @@ -1,13 +1,14 @@ name: "Iceberg" source: - marketplace_id: "iAldo80.basic-themes" - version: "1.5.1" - installs: 425 - rating: 0 - ratings: 0 - author: "Aldo" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=iAldo80.basic-themes" + marketplace_id: "harg.iceberg" + version: "1.2.0" + installs: 27193 + rating: 5 + ratings: 2 + author: "harg" + repo: "https://github.com/harg/iceberg-visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=harg.iceberg" + formats: null colors: bg: "#161821" fg: "#C6C8D1" @@ -19,14 +20,14 @@ colors: magenta: "#A093C7" cyan: "#89B8C2" white: "#C6C8D1" - brightBlack: "#6B7089" - brightRed: "#E98989" - brightGreen: "#C0CA8E" - brightYellow: "#E9B189" - brightBlue: "#91ACD1" - brightMagenta: "#ADA0D3" - brightCyan: "#95C4CE" - brightWhite: "#D2D4DE" + brightBlack: "#7D8199" + brightRed: "#E27878" + brightGreen: "#B4BE82" + brightYellow: "#E2A478" + brightBlue: "#84A0C6" + brightMagenta: "#A093C7" + brightCyan: "#89B8C2" + brightWhite: "#C6C8D1" meta: mode: "dark" accent: "orange" @@ -42,11 +43,11 @@ meta: magenta: 46.8 cyan: 58.5 white: 72.3 - brightBlack: 26.7 - brightRed: 52 - brightGreen: 70 - brightYellow: 65.5 - brightBlue: 55 - brightMagenta: 53.6 - brightCyan: 65.2 - brightWhite: 79.5 + brightBlack: 34.6 + brightRed: 45.4 + brightGreen: 63.1 + brightYellow: 59.2 + brightBlue: 48.6 + brightMagenta: 46.8 + brightCyan: 58.5 + brightWhite: 72.3 diff --git a/themes/icefall.yaml b/themes/icefall.yaml index 4881b047..4d97c3a9 100644 --- a/themes/icefall.yaml +++ b/themes/icefall.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "arzg.icefall" version: "0.2.15" installs: 434 + rating: 0 + ratings: 0 author: "arzg" repo: "https://github.com/arzg/icefall" url: "https://marketplace.visualstudio.com/items?itemName=arzg.icefall" + formats: null colors: bg: "#1C1E29" fg: "#C3C5CC" diff --git a/themes/iceland.yaml b/themes/iceland.yaml index ad79e605..01840ffd 100644 --- a/themes/iceland.yaml +++ b/themes/iceland.yaml @@ -8,6 +8,7 @@ source: author: "bcwsea" repo: "https://github.com/bcwdev/theme-iceland" url: "https://marketplace.visualstudio.com/items?itemName=bcwsea.theme-iceland" + formats: null colors: bg: "#001420" fg: "#A7A7A7" diff --git a/themes/icolordarkblue.yaml b/themes/icolordarkblue.yaml index e58c7a69..1827a849 100644 --- a/themes/icolordarkblue.yaml +++ b/themes/icolordarkblue.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#141414" fg: "#69C0FF" diff --git a/themes/icolordarkcyan.yaml b/themes/icolordarkcyan.yaml index 5cd16175..9325cb81 100644 --- a/themes/icolordarkcyan.yaml +++ b/themes/icolordarkcyan.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#141414" fg: "#5CDBD3" diff --git a/themes/icolordarkgeekblue.yaml b/themes/icolordarkgeekblue.yaml index bb23499b..e2c1857b 100644 --- a/themes/icolordarkgeekblue.yaml +++ b/themes/icolordarkgeekblue.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#141414" fg: "#85A5FF" diff --git a/themes/icolordarkgold.yaml b/themes/icolordarkgold.yaml index 602a71ab..235d59c0 100644 --- a/themes/icolordarkgold.yaml +++ b/themes/icolordarkgold.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#141414" fg: "#FFD666" diff --git a/themes/icolordarkgreen.yaml b/themes/icolordarkgreen.yaml index 77bfd2dc..e97ddb36 100644 --- a/themes/icolordarkgreen.yaml +++ b/themes/icolordarkgreen.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#141414" fg: "#95DE64" diff --git a/themes/icolordarklime.yaml b/themes/icolordarklime.yaml index d92251d9..040be988 100644 --- a/themes/icolordarklime.yaml +++ b/themes/icolordarklime.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#141414" fg: "#D3F261" diff --git a/themes/icolordarkmagenta.yaml b/themes/icolordarkmagenta.yaml index 1ba7d583..431f7990 100644 --- a/themes/icolordarkmagenta.yaml +++ b/themes/icolordarkmagenta.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#141414" fg: "#FF85C0" diff --git a/themes/icolordarkorgane.yaml b/themes/icolordarkorgane.yaml index 98d03740..5c59f7ec 100644 --- a/themes/icolordarkorgane.yaml +++ b/themes/icolordarkorgane.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#141414" fg: "#FFC069" diff --git a/themes/icolordarkpurple.yaml b/themes/icolordarkpurple.yaml index 6a242ebd..3d65b23f 100644 --- a/themes/icolordarkpurple.yaml +++ b/themes/icolordarkpurple.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#141414" fg: "#B37FEB" diff --git a/themes/icolordarkred.yaml b/themes/icolordarkred.yaml index bf5151f5..d47cb1a0 100644 --- a/themes/icolordarkred.yaml +++ b/themes/icolordarkred.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#141414" fg: "#FF7875" diff --git a/themes/icolordarkvolcano.yaml b/themes/icolordarkvolcano.yaml index b5155471..691e75fe 100644 --- a/themes/icolordarkvolcano.yaml +++ b/themes/icolordarkvolcano.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#141414" fg: "#FF9C6E" diff --git a/themes/icolordarkyellow.yaml b/themes/icolordarkyellow.yaml index 5d08e30e..6d4a54fd 100644 --- a/themes/icolordarkyellow.yaml +++ b/themes/icolordarkyellow.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#141414" fg: "#FFF566" diff --git a/themes/icolorlightblue.yaml b/themes/icolorlightblue.yaml index 39a8fca4..89af3ef2 100644 --- a/themes/icolorlightblue.yaml +++ b/themes/icolorlightblue.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#F5F5F5" fg: "#69C0FF" diff --git a/themes/icolorlightcyan.yaml b/themes/icolorlightcyan.yaml index 56e6b1bb..535e1e8d 100644 --- a/themes/icolorlightcyan.yaml +++ b/themes/icolorlightcyan.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#F5F5F5" fg: "#5CDBD3" diff --git a/themes/icolorlightgeekblue.yaml b/themes/icolorlightgeekblue.yaml index 15787f0e..f70bd4e4 100644 --- a/themes/icolorlightgeekblue.yaml +++ b/themes/icolorlightgeekblue.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#F5F5F5" fg: "#85A5FF" diff --git a/themes/icolorlightgold.yaml b/themes/icolorlightgold.yaml index c223ef04..dc3746be 100644 --- a/themes/icolorlightgold.yaml +++ b/themes/icolorlightgold.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#F5F5F5" fg: "#FFD666" diff --git a/themes/icolorlightgreen.yaml b/themes/icolorlightgreen.yaml index 7c82decc..18d7b26c 100644 --- a/themes/icolorlightgreen.yaml +++ b/themes/icolorlightgreen.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#F5F5F5" fg: "#95DE64" diff --git a/themes/icolorlightlime.yaml b/themes/icolorlightlime.yaml index f34cc5d9..891e54ca 100644 --- a/themes/icolorlightlime.yaml +++ b/themes/icolorlightlime.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#F5F5F5" fg: "#D3F261" diff --git a/themes/icolorlightmagenta.yaml b/themes/icolorlightmagenta.yaml index 14613b0d..a7320673 100644 --- a/themes/icolorlightmagenta.yaml +++ b/themes/icolorlightmagenta.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#F5F5F5" fg: "#FF85C0" diff --git a/themes/icolorlightorgane.yaml b/themes/icolorlightorgane.yaml index db4b8915..3a4aca95 100644 --- a/themes/icolorlightorgane.yaml +++ b/themes/icolorlightorgane.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#F5F5F5" fg: "#FFC069" diff --git a/themes/icolorlightpurple.yaml b/themes/icolorlightpurple.yaml index b7e23a9f..76473f5c 100644 --- a/themes/icolorlightpurple.yaml +++ b/themes/icolorlightpurple.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#F5F5F5" fg: "#B37FEB" diff --git a/themes/icolorlightred.yaml b/themes/icolorlightred.yaml index e38f4816..feda8e3d 100644 --- a/themes/icolorlightred.yaml +++ b/themes/icolorlightred.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#F5F5F5" fg: "#FF7875" diff --git a/themes/icolorlightvolcano.yaml b/themes/icolorlightvolcano.yaml index 1afc42d1..e702aaa0 100644 --- a/themes/icolorlightvolcano.yaml +++ b/themes/icolorlightvolcano.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#F5F5F5" fg: "#FF9C6E" diff --git a/themes/icolorlightyellow.yaml b/themes/icolorlightyellow.yaml index 9110a768..db9a5b94 100644 --- a/themes/icolorlightyellow.yaml +++ b/themes/icolorlightyellow.yaml @@ -8,6 +8,7 @@ source: author: "magnesium" repo: "https://github.com/yyong008/mg-iColors" url: "https://marketplace.visualstudio.com/items?itemName=magnesium-007.i-colors" + formats: null colors: bg: "#F5F5F5" fg: "#FFF566" diff --git a/themes/icon-group-dark.yaml b/themes/icon-group-dark.yaml deleted file mode 100644 index 2e17c7c7..00000000 --- a/themes/icon-group-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Icon Group Dark" -source: - marketplace_id: "lucidlabs.icon-group-theme" - version: "1.5.0" - installs: 0 - rating: 0 - ratings: 0 - author: "Lucid Labs" - repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.icon-group-theme" -colors: - bg: "#0E2A4A" - fg: "#E0E8F0" - black: "#05101A" - red: "#E8635A" - green: "#4CAF7D" - yellow: "#FDBD10" - blue: "#4DA6E8" - magenta: "#9B6FCF" - cyan: "#00B09B" - white: "#E0E8F0" - brightBlack: "#8098AD" - brightRed: "#F07A72" - brightGreen: "#6AD89A" - brightYellow: "#FFD04A" - brightBlue: "#6DBCF0" - brightMagenta: "#B48EE0" - brightCyan: "#33C4B0" - brightWhite: "#F0F4F8" -meta: - mode: "dark" - accent: "yellow" - hue: 254 - pair: "Icon Group Light" - contrast: - fg: 88.4 - black: 0 - red: 38.2 - green: 45.6 - yellow: 69.3 - blue: 46.8 - magenta: 32.7 - cyan: 45.8 - white: 88.4 - brightBlack: 41.3 - brightRed: 45.8 - brightGreen: 66.7 - brightYellow: 77.7 - brightBlue: 58 - brightMagenta: 46.3 - brightCyan: 56 - brightWhite: 96.4 diff --git a/themes/icon-group-light.yaml b/themes/icon-group-light.yaml deleted file mode 100644 index b2d16755..00000000 --- a/themes/icon-group-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Icon Group Light" -source: - marketplace_id: "lucidlabs.icon-group-theme" - version: "1.5.0" - installs: 0 - rating: 0 - ratings: 0 - author: "Lucid Labs" - repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.icon-group-theme" -colors: - bg: "#FFFFFF" - fg: "#15406F" - black: "#05101A" - red: "#D63B30" - green: "#009572" - yellow: "#B8860B" - blue: "#15406F" - magenta: "#7C4399" - cyan: "#00897B" - white: "#FFFFFF" - brightBlack: "#6B7D8E" - brightRed: "#E74C3C" - brightGreen: "#2ECC71" - brightYellow: "#F39C12" - brightBlue: "#006FB9" - brightMagenta: "#9B59B6" - brightCyan: "#009572" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Icon Group Dark" - contrast: - fg: 94.1 - black: 105.5 - red: 70.9 - green: 64.8 - yellow: 59.6 - blue: 94.1 - magenta: 82.8 - cyan: 69.3 - white: 0 - brightBlack: 69.3 - brightRed: 64.6 - brightGreen: 40.6 - brightYellow: 42.8 - brightBlue: 75.6 - brightMagenta: 72.1 - brightCyan: 64.8 - brightWhite: 0 diff --git a/themes/idea-islands-dark.yaml b/themes/idea-islands-dark.yaml index c7e3fa0f..47b223a0 100644 --- a/themes/idea-islands-dark.yaml +++ b/themes/idea-islands-dark.yaml @@ -2,12 +2,13 @@ name: "idea islands dark ++" source: marketplace_id: "idea-islands-dark-plus.idea-islands-dark-plus" version: "0.0.1" - installs: 211 + installs: 215 rating: 5 ratings: 1 author: "idea-islands-dark-plus by ruiming qian" repo: "https://github.com/yourusername/idea-islands-dark-plus" url: "https://marketplace.visualstudio.com/items?itemName=idea-islands-dark-plus.idea-islands-dark-plus" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/iditarod.yaml b/themes/iditarod.yaml index 8a19f91e..8b1463a6 100644 --- a/themes/iditarod.yaml +++ b/themes/iditarod.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ludaub.iditarod" version: "1.4.0" installs: 135 + rating: 0 + ratings: 0 author: "ludaub" repo: "https://github.com/ludaub/iditarod" url: "https://marketplace.visualstudio.com/items?itemName=ludaub.iditarod" + formats: null colors: bg: "#212B31" fg: "#CFD8DC" diff --git a/themes/idk.yaml b/themes/idk.yaml index 8daa41d7..958a9952 100644 --- a/themes/idk.yaml +++ b/themes/idk.yaml @@ -8,6 +8,7 @@ source: author: "Kuuhaku" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kuuhaku.idkidkidk699669969" + formats: null colors: bg: "#09020A" fg: "#D4D4D4" diff --git a/themes/idle-dark.yaml b/themes/idle-dark.yaml index 8ef2cc1d..be476ad0 100644 --- a/themes/idle-dark.yaml +++ b/themes/idle-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "luojiahai.idle-theme" version: "0.0.3" installs: 48 + rating: 0 + ratings: 0 author: "luojiahai" repo: "https://github.com/idlegram/idle-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=luojiahai.idle-theme" + formats: null colors: bg: "#0F0F0F" fg: "#CCD6DB" diff --git a/themes/idle-light.yaml b/themes/idle-light.yaml index bbbe7663..b0421e60 100644 --- a/themes/idle-light.yaml +++ b/themes/idle-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "luojiahai.idle-theme" version: "0.0.3" installs: 48 + rating: 0 + ratings: 0 author: "luojiahai" repo: "https://github.com/idlegram/idle-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=luojiahai.idle-theme" + formats: null colors: bg: "#FFFFFF" fg: "#35393B" diff --git a/themes/idx-theme-dark.yaml b/themes/idx-theme-dark.yaml deleted file mode 100644 index 54b3ead7..00000000 --- a/themes/idx-theme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Idx Theme Dark" -source: - marketplace_id: "PabitraBanerjee.idx-dark-theme" - version: "1.0.0" - installs: 6273 - rating: 5 - ratings: 2 - author: "Pabitra Banerjee" - repo: "https://github.com/PB2204/IDX-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=PabitraBanerjee.idx-dark-theme" -colors: - bg: "#171F2B" - fg: "#D9DFE7" - black: "#5D6A7D" - red: "#F76769" - green: "#17B877" - yellow: "#FFA23E" - blue: "#708FFF" - magenta: "#A87FFB" - cyan: "#25A6E9" - white: "#A4AFBD" - brightBlack: "#8B98A9" - brightRed: "#FC8F8E" - brightGreen: "#66CE98" - brightYellow: "#FFC26E" - brightBlue: "#A2B6FF" - brightMagenta: "#C8AAFF" - brightCyan: "#71C2EE" - brightWhite: "#FAFBFE" -meta: - mode: "dark" - accent: "magenta" - hue: 258 - pair: null - contrast: - fg: 84.9 - black: 22.4 - red: 44.5 - green: 50.2 - yellow: 62 - blue: 43.7 - magenta: 43.9 - cyan: 47.7 - white: 56.4 - brightBlack: 44.1 - brightRed: 56.8 - brightGreen: 63.6 - brightYellow: 74.4 - brightBlue: 62.6 - brightMagenta: 62.5 - brightCyan: 62.6 - brightWhite: 103.3 diff --git a/themes/idx-xcode-dark-improved.yaml b/themes/idx-xcode-dark-improved.yaml deleted file mode 100644 index 36052ee2..00000000 --- a/themes/idx-xcode-dark-improved.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "idx-xcode-dark-improved" -source: - marketplace_id: "CreevekCZ.idx-xcode" - version: "0.0.4" - installs: 955 - rating: 5 - ratings: 2 - author: "Jan Kožnárek" - repo: "https://github.com/CreevekCZ/idx-xcode-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=CreevekCZ.idx-xcode" -colors: - bg: "#171F2B" - fg: "#D9DFE7" - black: "#738295" - red: "#F76769" - green: "#17B877" - yellow: "#FFA23E" - blue: "#708FFF" - magenta: "#00BBFF" - cyan: "#25A6E9" - white: "#A4AFBD" - brightBlack: "#8B98A9" - brightRed: "#FC8F8E" - brightGreen: "#66CE98" - brightYellow: "#FFC26E" - brightBlue: "#A2B6FF" - brightMagenta: "#C8AAFF" - brightCyan: "#71C2EE" - brightWhite: "#FAFBFE" -meta: - mode: "dark" - accent: "orange" - hue: 258 - pair: null - contrast: - fg: 84.9 - black: 33.1 - red: 44.5 - green: 50.2 - yellow: 62 - blue: 43.7 - magenta: 57.7 - cyan: 47.7 - white: 56.4 - brightBlack: 44.1 - brightRed: 56.8 - brightGreen: 63.6 - brightYellow: 74.4 - brightBlue: 62.6 - brightMagenta: 62.5 - brightCyan: 62.6 - brightWhite: 103.3 diff --git a/themes/igniter-theme-light.yaml b/themes/igniter-theme-light.yaml index 4ce43066..f2e1d10a 100644 --- a/themes/igniter-theme-light.yaml +++ b/themes/igniter-theme-light.yaml @@ -6,6 +6,7 @@ source: author: "Igniter.js" repo: "https://github.com/felipebarcelospro/igniter-theme" url: "https://marketplace.visualstudio.com/items?itemName=Igniter-js.igniter-theme" + formats: null colors: bg: "#F7F2EE" fg: "#1B1515" diff --git a/themes/igniter-theme.yaml b/themes/igniter-theme.yaml index f7823283..3fe2b8d1 100644 --- a/themes/igniter-theme.yaml +++ b/themes/igniter-theme.yaml @@ -6,6 +6,7 @@ source: author: "Igniter.js" repo: "https://github.com/felipebarcelospro/igniter-theme" url: "https://marketplace.visualstudio.com/items?itemName=Igniter-js.igniter-theme" + formats: null colors: bg: "#161111" fg: "#EBE9E8" diff --git a/themes/ikaros-white.yaml b/themes/ikaros-white.yaml index e9501765..a00e6497 100644 --- a/themes/ikaros-white.yaml +++ b/themes/ikaros-white.yaml @@ -8,6 +8,7 @@ source: author: "HantigoZore" repo: "https://github.com/HantigoZore/AmberStudio" url: "https://marketplace.visualstudio.com/items?itemName=HantigoZore.amber-studio" + formats: null colors: bg: "#F8F5F3" fg: "#1A1614" diff --git a/themes/ikaros.yaml b/themes/ikaros.yaml index d0280b6b..65f9bf9d 100644 --- a/themes/ikaros.yaml +++ b/themes/ikaros.yaml @@ -8,6 +8,7 @@ source: author: "HantigoZore" repo: "https://github.com/HantigoZore/AmberStudio" url: "https://marketplace.visualstudio.com/items?itemName=HantigoZore.amber-studio" + formats: null colors: bg: "#0D0D0B" fg: "#E4DDD8" diff --git a/themes/ikki-vscode-dark-theme.yaml b/themes/ikki-vscode-dark-theme.yaml index d5b88bf5..cce248f9 100644 --- a/themes/ikki-vscode-dark-theme.yaml +++ b/themes/ikki-vscode-dark-theme.yaml @@ -1,4 +1,4 @@ -name: "IKKI-VSCode-Dark-Theme" +name: "IKKI VSCode Dark Theme" source: marketplace_id: "IKKI2000.ikki-vscode-dark-theme" version: "1.88.1" @@ -8,6 +8,7 @@ source: author: "IKKI" repo: "https://github.com/IKKI2000/IKKI-VSCode-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=IKKI2000.ikki-vscode-dark-theme" + formats: null colors: bg: "#535353" fg: "#D6D6D6" @@ -31,7 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null - pair: null + pair: "IKKI VSCode Light Theme" contrast: fg: 65.3 black: 77 diff --git a/themes/ikki-vscode-light-theme.yaml b/themes/ikki-vscode-light-theme.yaml index 6e2814dc..c0e4665e 100644 --- a/themes/ikki-vscode-light-theme.yaml +++ b/themes/ikki-vscode-light-theme.yaml @@ -1,4 +1,4 @@ -name: "IKKI-VSCode-Light-Theme" +name: "IKKI VSCode Light Theme" source: marketplace_id: "IKKI2000.ikki-vscode-light-theme" version: "1.88.1" @@ -8,6 +8,7 @@ source: author: "IKKI" repo: "https://github.com/IKKI2000/IKKI-VSCode-Light-Theme" url: "https://marketplace.visualstudio.com/items?itemName=IKKI2000.ikki-vscode-light-theme" + formats: null colors: bg: "#FFFCF4" fg: "#8D634A" @@ -31,7 +32,7 @@ meta: mode: "light" accent: "orange" hue: null - pair: null + pair: "IKKI VSCode Dark Theme" contrast: fg: 74.1 black: 88.8 diff --git a/themes/ikshana.yaml b/themes/ikshana.yaml index 497b3b02..cf91b1ae 100644 --- a/themes/ikshana.yaml +++ b/themes/ikshana.yaml @@ -8,6 +8,7 @@ source: author: "imabhinav.dev" repo: "https://github.com/imabhinavdev/ikshana-theme" url: "https://marketplace.visualstudio.com/items?itemName=imabhinavdev.ikshana" + formats: null colors: bg: "#1C3144" fg: "#E8E8E8" diff --git a/themes/illuminate.yaml b/themes/illuminate.yaml index f561add2..2eb013a6 100644 --- a/themes/illuminate.yaml +++ b/themes/illuminate.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "rookiepsi.illuminate" version: "1.1.0" installs: 314 + rating: 0 + ratings: 0 author: "psi​" repo: "https://github.com/rookiepsi/illuminate" url: "https://marketplace.visualstudio.com/items?itemName=rookiepsi.illuminate" + formats: null colors: bg: "#373A40" fg: "#DCDDDE" diff --git a/themes/illumination-emerald.yaml b/themes/illumination-emerald.yaml index c59961c3..08f0c3c4 100644 --- a/themes/illumination-emerald.yaml +++ b/themes/illumination-emerald.yaml @@ -6,6 +6,7 @@ source: author: "Fabius Andriamaroson" repo: null url: "https://marketplace.visualstudio.com/items?itemName=FabiusAndriamaroson.illumination" + formats: null colors: bg: "#0A0E14" fg: "#FFFFFF" diff --git a/themes/illusion.yaml b/themes/illusion.yaml deleted file mode 100644 index 05631259..00000000 --- a/themes/illusion.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Illusion" -source: - marketplace_id: "rwietter.Illusion" - version: "1.0.0" - installs: 13838 - rating: 0 - ratings: 0 - author: "Maurício Witter" - repo: "https://github.com/rwietter/illusion-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=rwietter.Illusion" -colors: - bg: "#1E1D22" - fg: "#FEFEFE" - black: "#1E1D22" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#5F5076" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 105.4 - black: 0 - red: 42.6 - green: 84.1 - yellow: 97.8 - blue: 52.9 - magenta: 53.8 - cyan: 83.2 - white: 101.2 - brightBlack: 15.1 - brightRed: 48.1 - brightGreen: 88.3 - brightYellow: 102.8 - brightBlue: 65.3 - brightMagenta: 61.8 - brightCyan: 96 - brightWhite: 106.1 diff --git a/themes/iloveagents-azure-ai-foundry-dark.yaml b/themes/iloveagents-azure-ai-foundry-dark.yaml deleted file mode 100644 index b440475f..00000000 --- a/themes/iloveagents-azure-ai-foundry-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "iLoveAgents - Azure AI Foundry (Dark)" -source: - marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" - version: "0.5.3" - installs: 161 - rating: 5 - ratings: 1 - author: "iLoveAgents" - repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" - url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" -colors: - bg: "#101224" - fg: "#E8EDF2" - black: "#1C2028" - red: "#E84855" - green: "#0FA8A0" - yellow: "#C89C26" - blue: "#0078D4" - magenta: "#E3008C" - cyan: "#1AA4E8" - white: "#E4E7EB" - brightBlack: "#384155" - brightRed: "#FF6774" - brightGreen: "#11BEAE" - brightYellow: "#DEB33A" - brightBlue: "#1995F0" - brightMagenta: "#F03A95" - brightCyan: "#33B4F2" - brightWhite: "#F2F4F6" -meta: - mode: "dark" - accent: "red" - hue: 278 - pair: null - contrast: - fg: 95 - black: 0 - red: 36.4 - green: 45.7 - yellow: 51.5 - blue: 30.3 - magenta: 32.3 - cyan: 47.9 - white: 91.4 - brightBlack: 8.1 - brightRed: 47.7 - brightGreen: 56 - brightYellow: 63.6 - brightBlue: 42.6 - brightMagenta: 38.3 - brightCyan: 55.5 - brightWhite: 99.7 diff --git a/themes/iloveagents-azure-ai-foundry-light.yaml b/themes/iloveagents-azure-ai-foundry-light.yaml deleted file mode 100644 index 43523413..00000000 --- a/themes/iloveagents-azure-ai-foundry-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "iLoveAgents - Azure AI Foundry (Light)" -source: - marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" - version: "0.5.3" - installs: 161 - rating: 5 - ratings: 1 - author: "iLoveAgents" - repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" - url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" -colors: - bg: "#FFFFFF" - fg: "#1E2530" - black: "#2F353A" - red: "#D92C3A" - green: "#079A93" - yellow: "#AE800F" - blue: "#0078D4" - magenta: "#D90082" - cyan: "#008FD8" - white: "#1E2530" - brightBlack: "#4B5563" - brightRed: "#EF4D55" - brightGreen: "#0BB2AA" - brightYellow: "#C59317" - brightBlue: "#0E8FE2" - brightMagenta: "#F03A95" - brightCyan: "#28A9E8" - brightWhite: "#374151" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 102.3 - black: 98.3 - red: 71.6 - green: 61.7 - yellow: 63 - blue: 70.7 - magenta: 71.4 - cyan: 62.4 - white: 102.3 - brightBlack: 86.3 - brightRed: 62.3 - brightGreen: 50.8 - brightYellow: 53.3 - brightBlue: 61.6 - brightMagenta: 62.7 - brightCyan: 51.1 - brightWhite: 93.9 diff --git a/themes/iloveagents-dark.yaml b/themes/iloveagents-dark.yaml deleted file mode 100644 index 95c7490f..00000000 --- a/themes/iloveagents-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "iLoveAgents Dark" -source: - marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" - version: "0.5.3" - installs: 161 - rating: 5 - ratings: 1 - author: "iLoveAgents" - repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" - url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" -colors: - bg: "#14161A" - fg: "#E5E7EB" - black: "#1F2428" - red: "#F87171" - green: "#14B8A6" - yellow: "#FBBF24" - blue: "#60A5FA" - magenta: "#A78BFA" - cyan: "#22D3EE" - white: "#E5E7EB" - brightBlack: "#374151" - brightRed: "#FCA5A5" - brightGreen: "#2DD4BF" - brightYellow: "#FCD34D" - brightBlue: "#93C5FD" - brightMagenta: "#C4B5FD" - brightCyan: "#67E8F9" - brightWhite: "#F3F4F6" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "iLoveAgents Light" - contrast: - fg: 91.3 - black: 0 - red: 48.2 - green: 52.8 - yellow: 72.8 - blue: 51.5 - magenta: 48.4 - cyan: 68.7 - white: 91.3 - brightBlack: 7.7 - brightRed: 65.6 - brightGreen: 67 - brightYellow: 81.5 - brightBlue: 68.3 - brightMagenta: 67 - brightCyan: 81.3 - brightWhite: 99.7 diff --git a/themes/iloveagents-light.yaml b/themes/iloveagents-light.yaml deleted file mode 100644 index c408f72f..00000000 --- a/themes/iloveagents-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "iLoveAgents Light" -source: - marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" - version: "0.5.3" - installs: 161 - rating: 5 - ratings: 1 - author: "iLoveAgents" - repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" - url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" -colors: - bg: "#FFFFFF" - fg: "#1F2937" - black: "#2F353A" - red: "#D92C3A" - green: "#0D766E" - yellow: "#B97300" - blue: "#2563EB" - magenta: "#8B5CF6" - cyan: "#0D6BB8" - white: "#1F2937" - brightBlack: "#4B5563" - brightRed: "#EF4D55" - brightGreen: "#109E90" - brightYellow: "#D48800" - brightBlue: "#1D4ED8" - brightMagenta: "#9E72FF" - brightCyan: "#1286D8" - brightWhite: "#374151" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "iLoveAgents Dark" - contrast: - fg: 101.5 - black: 98.3 - red: 71.6 - green: 76.9 - yellow: 65.2 - blue: 74.9 - magenta: 68.7 - cyan: 76.9 - white: 101.5 - brightBlack: 86.3 - brightRed: 62.3 - brightGreen: 60.1 - brightYellow: 54.5 - brightBlue: 82.2 - brightMagenta: 60.4 - brightCyan: 65.6 - brightWhite: 93.9 diff --git a/themes/ilyat-poimandres.yaml b/themes/ilyat-poimandres.yaml deleted file mode 100644 index 26be8987..00000000 --- a/themes/ilyat-poimandres.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ilyat Poimandres" -source: - marketplace_id: "LJWhite-WV.ilyat-vscode" - version: "0.2.0" - installs: 918 - rating: 5 - ratings: 1 - author: "LJ White" - repo: "https://github.com/theljwhite/ilyat" - url: "https://marketplace.visualstudio.com/items?itemName=LJWhite-WV.ilyat-vscode" -colors: - bg: "#252B37" - fg: "#A6ACCD" - black: "#252B37" - red: "#D0679D" - green: "#5DE4C7" - yellow: "#FFFAC2" - blue: "#89DDFF" - magenta: "#F087BD" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#A6ACCD" - brightRed: "#D0679D" - brightGreen: "#5DE4C7" - brightYellow: "#FFFAC2" - brightBlue: "#ADD7FF" - brightMagenta: "#F087BD" - brightCyan: "#ADD7FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 264 - pair: null - contrast: - fg: 54.1 - black: 0 - red: 36.2 - green: 73.4 - yellow: 99 - blue: 75.3 - magenta: 51.9 - cyan: 75.3 - white: 103.9 - brightBlack: 54.1 - brightRed: 36.2 - brightGreen: 73.4 - brightYellow: 99 - brightBlue: 75.5 - brightMagenta: 51.9 - brightCyan: 75.5 - brightWhite: 103.9 diff --git a/themes/imba-dark.yaml b/themes/imba-dark.yaml deleted file mode 100644 index d6e47aa6..00000000 --- a/themes/imba-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Imba Dark" -source: - marketplace_id: "scrimba.vsimba" - version: "4.2.3" - installs: 5039 - rating: 5 - ratings: 4 - author: "Scrimba" - repo: "https://github.com/imba/imba" - url: "https://marketplace.visualstudio.com/items?itemName=scrimba.vsimba" -colors: - bg: "#111316" - fg: "#ABB2BF" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#6BBCFF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#DBDFE7" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#CBF8AB" - brightYellow: "#FFE2AC" - brightBlue: "#6A9BFF" - brightMagenta: "#D88CE7" - brightCyan: "#70CCD8" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 59.8 - black: 0 - red: 42.4 - green: 62.6 - yellow: 70.9 - blue: 62 - magenta: 45.5 - cyan: 54.9 - white: 86.5 - brightBlack: 35.9 - brightRed: 38.8 - brightGreen: 94 - brightYellow: 90.7 - brightBlue: 48.9 - brightMagenta: 54.7 - brightCyan: 67.1 - brightWhite: 83.4 diff --git a/themes/imexoodeex.yaml b/themes/imexoodeex.yaml deleted file mode 100644 index a013327e..00000000 --- a/themes/imexoodeex.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "imexoodeex" -source: - marketplace_id: "imexoodeex.neonjet" - version: "1.1.0" - installs: 2732 - rating: 5 - ratings: 1 - author: "imexoodeex" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=imexoodeex.neonjet" -colors: - bg: "#131315" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 79.8 - black: 0 - red: 27.1 - green: 53.3 - yellow: 86 - blue: 27.8 - magenta: 30.1 - cyan: 47.9 - white: 90.4 - brightBlack: 22.4 - brightRed: 38.9 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.3 - brightMagenta: 45.7 - brightCyan: 55.7 - brightWhite: 90.4 diff --git a/themes/in-bed-by-7pm.yaml b/themes/in-bed-by-7pm.yaml index 4ea10e31..873b3cbd 100644 --- a/themes/in-bed-by-7pm.yaml +++ b/themes/in-bed-by-7pm.yaml @@ -1,13 +1,14 @@ -name: "In Bed by 7pm" +name: "In Bed By 7pm" source: marketplace_id: "sdras.inbedby7pm" version: "0.4.0" - installs: 47506 + installs: 47516 rating: 4.93 ratings: 14 author: "sarah.drasner" repo: "https://github.com/sdras/inbedby7pm" url: "https://marketplace.visualstudio.com/items?itemName=sdras.inbedby7pm" + formats: null colors: bg: "#292C3D" fg: "#EBECF1" diff --git a/themes/in-darkest-night.yaml b/themes/in-darkest-night.yaml index 32bc2de6..173c3478 100644 --- a/themes/in-darkest-night.yaml +++ b/themes/in-darkest-night.yaml @@ -8,6 +8,7 @@ source: author: "jerky676" repo: "https://github.com/jerky676/InDarkestNight" url: "https://marketplace.visualstudio.com/items?itemName=jerky676.indarkestnight" + formats: null colors: bg: "#1E1E1E" fg: "#074C2A" diff --git a/themes/in-his-earthy-elements.yaml b/themes/in-his-earthy-elements.yaml index a3a9f82f..eb2fc230 100644 --- a/themes/in-his-earthy-elements.yaml +++ b/themes/in-his-earthy-elements.yaml @@ -8,6 +8,7 @@ source: author: "chiefyangga" repo: "https://github.com/chiefyangga/in-his-earthy-elements" url: "https://marketplace.visualstudio.com/items?itemName=chiefyangga.in-his-earthy-elements" + formats: null colors: bg: "#443C2F" fg: "#B0A18B" diff --git a/themes/in-rainbows-dark.yaml b/themes/in-rainbows-dark.yaml index 10422009..70f265d7 100644 --- a/themes/in-rainbows-dark.yaml +++ b/themes/in-rainbows-dark.yaml @@ -8,6 +8,7 @@ source: author: "João Stephan" repo: "TODO" url: "https://marketplace.visualstudio.com/items?itemName=joaostephan.in-rainbows-theme" + formats: null colors: bg: "#16161D" fg: "#E6E6F0" diff --git a/themes/in-the-fog-dark.yaml b/themes/in-the-fog-dark.yaml deleted file mode 100644 index 3b1a8264..00000000 --- a/themes/in-the-fog-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "In The Fog Dark" -source: - marketplace_id: "ganevru.in-the-fog-theme" - version: "0.3.1" - installs: 3367 - rating: 5 - ratings: 3 - author: "ganevru" - repo: "https://github.com/ganevru/in-the-fog-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ganevru.in-the-fog-theme" -colors: - bg: "#24292B" - fg: "#D4D4D4" - black: "#666666" - red: "#CD6564" - green: "#AEC199" - yellow: "#FFF099" - blue: "#6D9CBE" - magenta: "#B081B9" - cyan: "#80B5B3" - white: "#EFEFEF" - brightBlack: "#666666" - brightRed: "#CD6564" - brightGreen: "#AEC199" - brightYellow: "#FFF099" - brightBlue: "#6D9CBE" - brightMagenta: "#B081B9" - brightCyan: "#80B5B3" - brightWhite: "#EFEFEF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 77 - black: 19.6 - red: 33.9 - green: 62 - yellow: 93.6 - blue: 42.5 - magenta: 39.9 - cyan: 53.6 - white: 93.9 - brightBlack: 19.6 - brightRed: 33.9 - brightGreen: 62 - brightYellow: 93.6 - brightBlue: 42.5 - brightMagenta: 39.9 - brightCyan: 53.6 - brightWhite: 93.9 diff --git a/themes/index.json b/themes/index.json index a09ad775..04d64be9 100644 --- a/themes/index.json +++ b/themes/index.json @@ -3,164 +3,186 @@ "1977": "1977.yaml", "1989": "1989.yaml", "2077": "2077.yaml", + "8008": "8008.yaml", "_common": "common.yaml", "_Dark": "dark.yaml", "_ui": "ui.yaml", + ":D": "d.yaml", ".Alpha": "alpha.yaml", ".K Relaxed": "k-relaxed.yaml", ".Theta": "theta.yaml", "'80 Neon Vibes": "80-neon-vibes.yaml", "'80 Neon Vibes - Fluor": "80-neon-vibes-fluor.yaml", "'One Moon'": "one-moon.yaml", - "{Hello World!} Theme": "hello-world-theme.yaml", "「愚純」dumDum_theme": "dumdum-theme.yaml", "「雪」snowy&mint": "snowy-mint.yaml", - "@skeswa's Noctis": "skeswa-s-noctis.yaml", - "@skeswa's Noctis Azureus": "skeswa-s-noctis-azureus.yaml", - "@skeswa's Noctis Bordo": "skeswa-s-noctis-bordo.yaml", - "@skeswa's Noctis Hibernus": "skeswa-s-noctis-hibernus.yaml", - "@skeswa's Noctis Lilac": "skeswa-s-noctis-lilac.yaml", - "@skeswa's Noctis Lux": "skeswa-s-noctis-lux.yaml", - "@skeswa's Noctis Minimus": "skeswa-s-noctis-minimus.yaml", - "@skeswa's Noctis Obscuro": "skeswa-s-noctis-obscuro.yaml", - "@skeswa's Noctis Sereno": "skeswa-s-noctis-sereno.yaml", - "@skeswa's Noctis Uva": "skeswa-s-noctis-uva.yaml", - "@skeswa's Noctis Viola": "skeswa-s-noctis-viola.yaml", - "#ROOT - Dark mode theme v0.1": "root-dark-mode-theme-v0-1.yaml", - "🏴 blackbird → dusk": "blackbird-dusk.yaml", - "🏴 blackbird → midnight": "blackbird-midnight.yaml", + "@xxtereshko/light": "xxtereshko-light.yaml", + "/dark": "dark.yaml", + "#ROOT Dark-mode theme": "root-dark-mode-theme.yaml", + ">_pvdk-theme": "pvdk-theme.yaml", + "🍡 Dango Theme": "dango-theme.yaml", "💎Fluorite theme": "fluorite-theme.yaml", + "💎Fluorite Theme": "fluorite-theme.yaml", "💜Purple-theme💜": "purple-theme.yaml", "🧊": ".yaml", "🧛‍♂️": ".yaml", - "🪽 archangel": "archangel.yaml", - "🪽 archangel → dusk": "archangel-dusk.yaml", "07 Dark": "07-dark.yaml", "07 Light": "07-light.yaml", "0A515 Dark": "0a515-dark.yaml", "0x96f Theme": "0x96f-theme.yaml", - "1️⃣": "1.yaml", - "10004ok-dark": "10004ok-dark.yaml", + "10004ok": "10004ok.yaml", "10x Dark Theme": "10x-dark-theme.yaml", "19th Century": "19th-century.yaml", - "1Dark Poncho HC": "1dark-poncho-hc.yaml", - "1mm - Dracula": "1mm-dracula.yaml", + "1Dark RainCoat": "1dark-raincoat.yaml", + "1mm Themes (1mm - Dracula)": "1mm-themes--1mm-dracula.yaml", "2_colors": "2-colors.yaml", "25時、ナイトコードで。Blue": "25-blue.yaml", "2am": "2am.yaml", - "365 Day october dark": "365-day-october-dark.yaml", + "365 Day & Night Themes (365 Day october dark)": "365-day-night-themes--365-day-october-dark.yaml", + "365 Day & Night Themes (April Dark Theme)": "365-day-night-themes--april-dark-theme.yaml", + "365 Day & Night Themes (August Dark Theme)": "365-day-night-themes--august-dark-theme.yaml", + "365 Day & Night Themes (High Contrast April Light Theme)": "365-day-night-themes--high-contrast-april-light-theme.yaml", + "365 Day & Night Themes (High Contrast April Theme)": "365-day-night-themes--high-contrast-april-theme.yaml", + "365 Day & Night Themes (High Contrast August Light Theme)": "365-day-night-themes--high-contrast-august-light-theme.yaml", + "365 Day & Night Themes (High Contrast February Dark Theme)": "365-day-night-themes--high-contrast-february-dark-theme.yaml", + "365 Day & Night Themes (High Contrast February Light Theme - Accessible)": "365-day-night-themes--high-contrast-february-light-theme-accessible.yaml", + "365 Day & Night Themes (High Contrast February Theme - Accessible)": "365-day-night-themes--high-contrast-february-theme-accessible.yaml", + "365 Day & Night Themes (High Contrast July Light Theme)": "365-day-night-themes--high-contrast-july-light-theme.yaml", + "365 Day & Night Themes (High Contrast June Light Theme)": "365-day-night-themes--high-contrast-june-light-theme.yaml", + "365 Day & Night Themes (High Contrast March Dark Theme - Accessible)": "365-day-night-themes--high-contrast-march-dark-theme-accessible.yaml", + "365 Day & Night Themes (High Contrast March Dark Theme)": "365-day-night-themes--high-contrast-march-dark-theme.yaml", + "365 Day & Night Themes (High Contrast March Light Theme - Accessible)": "365-day-night-themes--high-contrast-march-light-theme-accessible.yaml", + "365 Day & Night Themes (High Contrast March Theme - Accessible)": "365-day-night-themes--high-contrast-march-theme-accessible.yaml", + "365 Day & Night Themes (High Contrast May Light Theme)": "365-day-night-themes--high-contrast-may-light-theme.yaml", + "365 Day & Night Themes (High Contrast September Light Theme)": "365-day-night-themes--high-contrast-september-light-theme.yaml", + "365 Day & Night Themes (July Summer Vibes Dark Theme)": "365-day-night-themes--july-summer-vibes-dark-theme.yaml", + "365 Day & Night Themes (September Dark Theme)": "365-day-night-themes--september-dark-theme.yaml", + "365 Day & Night Themes (Thème Dark Aout - Contraste Élevé)": "365-day-night-themes--th-me-dark-aout-contraste-lev.yaml", + "365 Day & Night Themes (Thème Dark Avril - Vert Printemps)": "365-day-night-themes--th-me-dark-avril-vert-printemps.yaml", + "365 Day & Night Themes (Thème Dark Janvier - Bleu Foncé)": "365-day-night-themes--th-me-dark-janvier-bleu-fonc.yaml", + "365 Day & Night Themes (Thème Dark Juillet - Contraste Élevé)": "365-day-night-themes--th-me-dark-juillet-contraste-lev.yaml", + "365 Day & Night Themes (Thème Dark Juin - High Contrast)": "365-day-night-themes--th-me-dark-juin-high-contrast.yaml", + "365 Day & Night Themes (Thème High Contrast Janvier - Révisé)": "365-day-night-themes--th-me-high-contrast-janvier-r-vis.yaml", + "365 Day & Night Themes (Thème Sombre d'Automne)": "365-day-night-themes--th-me-sombre-d-automne.yaml", "365.6 coder theme": "365-6-coder-theme.yaml", + "365.6 Coder theme": "365-6-coder-theme.yaml", "3XAY": "3xay.yaml", + "4 Colours": "4-colours.yaml", "4-Colours": "4-colours.yaml", "404 - Muted": "404-muted.yaml", "404 Flat": "404-flat.yaml", - "42nd": "42nd.yaml", + "42nd (42nd)": "42nd--42nd.yaml", "4am session (aqua)": "4am-session-aqua.yaml", "4am session (blue)": "4am-session-blue.yaml", "4am session (green)": "4am-session-green.yaml", "4am session (orange)": "4am-session-orange.yaml", "4am session (red)": "4am-session-red.yaml", "4am session (yellow)": "4am-session-yellow.yaml", - "6szn": "6szn.yaml", "73nko Dark": "73nko-dark.yaml", "73nko Light": "73nko-light.yaml", "7lou Theme": "7lou-theme.yaml", - "8-Bit Dark": "8-bit-dark.yaml", - "8-Bit Light": "8-bit-light.yaml", - "8-Bit Light High Contrast": "8-bit-light-high-contrast.yaml", + "8-Bit (8-Bit Dark)": "8-bit--8-bit-dark.yaml", + "8-Bit (8-Bit Light)": "8-bit--8-bit-light.yaml", + "8-Bit-High-Contrast": "8-bit-high-contrast.yaml", "8-bit-theme": "8-bit-theme.yaml", "808s & Heartbreak Theme": "808s-heartbreak-theme.yaml", + "8ss min dark (Untitled)": "8ss-min-dark--untitled.yaml", "8V": "8v.yaml", - "8x8 - Darker": "8x8-darker.yaml", - "8x8 - Fork": "8x8-fork.yaml", - "8x8_dark - Fork": "8x8-dark-fork.yaml", + "8x8theme": "8x8theme.yaml", "9 Way Ticket": "9-way-ticket.yaml", "90s Digital Dawning": "90s-digital-dawning.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark 🧛 Vampire)": "a-colorful-github-theme-pack--a-github-dark-vampire.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark 🩶 Muted)": "a-colorful-github-theme-pack--a-github-dark-muted.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 🧛 Vampire)": "a-colorful-github-theme-pack--a-github-dark-dimmed-vampire.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 🩶 Muted)": "a-colorful-github-theme-pack--a-github-dark-dimmed-muted.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 🟤 Brown)": "a-colorful-github-theme-pack--a-github-dark-dimmed-brown.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 1 🔴 Red)": "a-colorful-github-theme-pack--a-github-dark-dimmed-1-red.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 2 🟠 Orange)": "a-colorful-github-theme-pack--a-github-dark-dimmed-2-orange.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 3 🟢 Green)": "a-colorful-github-theme-pack--a-github-dark-dimmed-3-green.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 4 🔵 Blue)": "a-colorful-github-theme-pack--a-github-dark-dimmed-4-blue.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 5 🟣 Purple)": "a-colorful-github-theme-pack--a-github-dark-dimmed-5-purple.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark High Contrast 1 🔴 Red)": "a-colorful-github-theme-pack--a-github-dark-high-contrast-1-red.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark High Contrast 2 🟠 Orange)": "a-colorful-github-theme-pack--a-github-dark-high-contrast-2-orange.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark High Contrast 3 🟢 Green)": "a-colorful-github-theme-pack--a-github-dark-high-contrast-3-green.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark High Contrast 4 🔵 Blue)": "a-colorful-github-theme-pack--a-github-dark-high-contrast-4-blue.yaml", + "A Colorful GitHub Theme Pack (A GitHub Dark High Contrast 5 🟣 Purple)": "a-colorful-github-theme-pack--a-github-dark-high-contrast-5-purple.yaml", + "A Colorful GitHub Theme Pack (A GitHub Light 1 🔴 Red)": "a-colorful-github-theme-pack--a-github-light-1-red.yaml", + "A Colorful GitHub Theme Pack (A GitHub Light 2 🟠 Orange)": "a-colorful-github-theme-pack--a-github-light-2-orange.yaml", + "A Colorful GitHub Theme Pack (A GitHub Light 3 🟢 Green)": "a-colorful-github-theme-pack--a-github-light-3-green.yaml", + "A Colorful GitHub Theme Pack (A GitHub Light 4 🔵 Blue)": "a-colorful-github-theme-pack--a-github-light-4-blue.yaml", + "A Colorful GitHub Theme Pack (A GitHub Light 5 🟣 Purple)": "a-colorful-github-theme-pack--a-github-light-5-purple.yaml", "A cup of coffee": "a-cup-of-coffee.yaml", - "A GitHub Dark 🧛 Vampire": "a-github-dark-vampire.yaml", - "A GitHub Dark 🩶 Muted": "a-github-dark-muted.yaml", - "A GitHub Dark Dimmed 🧛 Vampire": "a-github-dark-dimmed-vampire.yaml", - "A GitHub Dark Dimmed 🩶 Muted": "a-github-dark-dimmed-muted.yaml", - "A GitHub Dark Dimmed 🟤 Brown": "a-github-dark-dimmed-brown.yaml", - "A GitHub Dark Dimmed 1 🔴 Red": "a-github-dark-dimmed-1-red.yaml", - "A GitHub Dark Dimmed 2 🟠 Orange": "a-github-dark-dimmed-2-orange.yaml", - "A GitHub Dark Dimmed 3 🟢 Green": "a-github-dark-dimmed-3-green.yaml", - "A GitHub Dark Dimmed 4 🔵 Blue": "a-github-dark-dimmed-4-blue.yaml", - "A GitHub Dark Dimmed 5 🟣 Purple": "a-github-dark-dimmed-5-purple.yaml", - "A GitHub Dark High Contrast 1 🔴 Red": "a-github-dark-high-contrast-1-red.yaml", - "A GitHub Dark High Contrast 2 🟠 Orange": "a-github-dark-high-contrast-2-orange.yaml", - "A GitHub Dark High Contrast 3 🟢 Green": "a-github-dark-high-contrast-3-green.yaml", - "A GitHub Dark High Contrast 4 🔵 Blue": "a-github-dark-high-contrast-4-blue.yaml", - "A GitHub Dark High Contrast 5 🟣 Purple": "a-github-dark-high-contrast-5-purple.yaml", - "A GitHub Light 1 🔴 Red": "a-github-light-1-red.yaml", - "A GitHub Light 2 🟠 Orange": "a-github-light-2-orange.yaml", - "A GitHub Light 3 🟢 Green": "a-github-light-3-green.yaml", - "A GitHub Light 4 🔵 Blue": "a-github-light-4-blue.yaml", - "A GitHub Light 5 🟣 Purple": "a-github-light-5-purple.yaml", + "A Galaxy Far, Far Away Theme (Rogue Squadron)": "a-galaxy-far-far-away-theme--rogue-squadron.yaml", + "A Galaxy Far, Far Away Theme (The Empire)": "a-galaxy-far-far-away-theme--the-empire.yaml", + "A Pastel Fever Dream": "a-pastel-fever-dream.yaml", "a_green_cat": "a-green-cat.yaml", "a_green_cat dimmed": "a-green-cat-dimmed.yaml", + "a-cup-of-coffee (Light Red)": "a-cup-of-coffee--light-red.yaml", "A.2 Theme": "a-2-theme.yaml", - "A/J Light": "a-j-light.yaml", + "A.M. Themes": "a-m-themes.yaml", + "A24 (Minimal)": "a24--minimal.yaml", "AAUU": "aauu.yaml", "Ab-dark": "ab-dark.yaml", "abcdef": "abcdef.yaml", "Abe Land": "abe-land.yaml", "Abissal": "abissal.yaml", "ABOC": "aboc.yaml", - "ABOLKOG Dark": "abolkog-dark.yaml", - "ABOLKOG Light": "abolkog-light.yaml", + "ABOLKOG theme (ABOLKOG Dark)": "abolkog-theme--abolkog-dark.yaml", + "ABOLKOG theme (ABOLKOG Light)": "abolkog-theme--abolkog-light.yaml", "Abraham": "abraham.yaml", - "absent": "absent.yaml", - "absent-contrast": "absent-contrast.yaml", - "absent-light": "absent-light.yaml", "Abstract MH": "abstract-mh.yaml", "Abys Zora Dark": "abys-zora-dark.yaml", "Abysal Marble": "abysal-marble.yaml", "Abysal Obsidian": "abysal-obsidian.yaml", - "Abyskai": "abyskai.yaml", + "Abyski": "abyski.yaml", "Abyss": "abyss.yaml", + "Abyssal (Abyssal-Anime)": "abyssal--abyssal-anime.yaml", + "Abyssal (Abyssal-Black)": "abyssal--abyssal-black.yaml", + "Abyssal (Abyssal-Catppuccin)": "abyssal--abyssal-catppuccin.yaml", + "Abyssal (Abyssal-Dark)": "abyssal--abyssal-dark.yaml", + "Abyssal (Abyssal-Dracula)": "abyssal--abyssal-dracula.yaml", + "Abyssal (Abyssal-E-Ink)": "abyssal--abyssal-e-ink.yaml", + "Abyssal (Abyssal-Everforest)": "abyssal--abyssal-everforest.yaml", + "Abyssal (Abyssal-Gruvbox)": "abyssal--abyssal-gruvbox.yaml", + "Abyssal (Abyssal-Hacker)": "abyssal--abyssal-hacker.yaml", + "Abyssal (Abyssal-Latte)": "abyssal--abyssal-latte.yaml", + "Abyssal (Abyssal-Nord)": "abyssal--abyssal-nord.yaml", + "Abyssal (Abyssal-Tokyo-Night)": "abyssal--abyssal-tokyo-night.yaml", "Abyssal Blue": "abyssal-blue.yaml", "Abyssal Mirage": "abyssal-mirage.yaml", - "Abyssal-Anime": "abyssal-anime.yaml", - "Abyssal-Black": "abyssal-black.yaml", - "Abyssal-Catppuccin": "abyssal-catppuccin.yaml", - "Abyssal-Dark": "abyssal-dark.yaml", - "Abyssal-Dracula": "abyssal-dracula.yaml", - "Abyssal-E-Ink": "abyssal-e-ink.yaml", - "Abyssal-Everforest": "abyssal-everforest.yaml", - "Abyssal-Gruvbox": "abyssal-gruvbox.yaml", - "Abyssal-Hacker": "abyssal-hacker.yaml", - "Abyssal-Latte": "abyssal-latte.yaml", - "Abyssal-Nord": "abyssal-nord.yaml", - "Abyssal-Tokyo-Night": "abyssal-tokyo-night.yaml", + "ac-theme": "ac-theme.yaml", "Acario": "acario.yaml", - "access-color-theme": "access-color-theme.yaml", "Ace Palenight": "ace-palenight.yaml", "AceKaizen Code Theme": "acekaizen-code-theme.yaml", - "AceQuartz": "acequartz.yaml", - "Acid-Trip": "acid-trip.yaml", "aclear-dark": "aclear-dark.yaml", - "Acme": "acme.yaml", + "Acme, Go Playground Themes (Acme)": "acme-go-playground-themes--acme.yaml", + "Acme, Go Playground Themes (Go - Playground)": "acme-go-playground-themes--go-playground.yaml", + "Acme, Go Playground Themes (Go - Source)": "acme-go-playground-themes--go-source.yaml", "Aconitum": "aconitum.yaml", - "ACS - Cozy Dark": "acs-cozy-dark.yaml", + "ACS-Motion-Control": "acs-motion-control.yaml", + "Actually Minimalistic": "actually-minimalistic.yaml", + "Adam": "adam.yaml", "Adapt Dark": "adapt-dark.yaml", "ADark": "adark.yaml", "Adech Theme Legacy": "adech-theme-legacy.yaml", "Adech Theme Superior": "adech-theme-superior.yaml", "Adeol": "adeol.yaml", - "Adey Coder": "adey-coder.yaml", - "Adey Coder - Deep dark": "adey-coder-deep-dark.yaml", + "Adey Coder Theme (Adey Coder - Deep dark)": "adey-coder-theme--adey-coder-deep-dark.yaml", + "Adey Coder Theme (Adey Coder)": "adey-coder-theme--adey-coder.yaml", "Adonis": "adonis.yaml", - "Adonis+": "adonis.yaml", + "Adonis Theme (Adonis)": "adonis-theme--adonis.yaml", + "Adonis Theme (Adonis+)": "adonis-theme--adonis.yaml", + "adr-theme": "adr-theme.yaml", "Adrift": "adrift.yaml", "AdvancedBat": "advancedbat.yaml", - "AdventuresinParadise": "adventuresinparadise.yaml", + "advpara": "advpara.yaml", + "Adwaita Base16": "adwaita-base16.yaml", "aelmouny11_theme": "aelmouny11-theme.yaml", "Aeridia": "aeridia.yaml", "Aesir Theme": "aesir-theme.yaml", "Aesthetic": "aesthetic.yaml", - "Aesthetic Dark": "aesthetic-dark.yaml", "aether": "aether.yaml", + "Aether - Sublime Coding Experience (Aether Emerald)": "aether-sublime-coding-experience--aether-emerald.yaml", "Aether Abyss": "aether-abyss.yaml", "Aether Abyssal": "aether-abyssal.yaml", "Aether Arctic": "aether-arctic.yaml", @@ -169,19 +191,13 @@ "Aether Borealis": "aether-borealis.yaml", "Aether Carbon": "aether-carbon.yaml", "Aether Clarity": "aether-clarity.yaml", - "Aether Coffee": "aether-coffee.yaml", - "Aether Coffee Dark": "aether-coffee-dark.yaml", "Aether Cosmos": "aether-cosmos.yaml", - "Aether Dark": "aether-dark.yaml", - "Aether Dark Space": "aether-dark-space.yaml", "Aether Dawn": "aether-dawn.yaml", "Aether Deep Ocean": "aether-deep-ocean.yaml", "Aether Depths": "aether-depths.yaml", "Aether Dusk": "aether-dusk.yaml", - "Aether Emerald": "aether-emerald.yaml", "Aether Forest": "aether-forest.yaml", "Aether Glass": "aether-glass.yaml", - "Aether Light": "aether-light.yaml", "Aether Mariana": "aether-mariana.yaml", "Aether Matrix": "aether-matrix.yaml", "Aether Midnight": "aether-midnight.yaml", @@ -194,6 +210,12 @@ "Aether Reef": "aether-reef.yaml", "Aether Stellar": "aether-stellar.yaml", "Aether Tempest": "aether-tempest.yaml", + "Aether Themes (Aether Coffee Dark)": "aether-themes--aether-coffee-dark.yaml", + "Aether Themes (Aether Coffee)": "aether-themes--aether-coffee.yaml", + "Aether Themes (Aether Dark Space)": "aether-themes--aether-dark-space.yaml", + "Aether Themes (Aether Dark)": "aether-themes--aether-dark.yaml", + "Aether Themes (Aether Emerald)": "aether-themes--aether-emerald.yaml", + "Aether Themes (Aether Light)": "aether-themes--aether-light.yaml", "Aether Tidal": "aether-tidal.yaml", "Aether Trench Contrast": "aether-trench-contrast.yaml", "Aether Twilight": "aether-twilight.yaml", @@ -201,68 +223,67 @@ "Aether Zen": "aether-zen.yaml", "Aetherglow": "aetherglow.yaml", "Afro": "afro.yaml", - "Afterglow-Fade": "afterglow-fade.yaml", - "Afternoon Delight Subtle": "afternoon-delight-subtle.yaml", + "Afternoon Delight": "afternoon-delight.yaml", "AfterPurple": "afterpurple.yaml", - "Agathist Dark": "agathist-dark.yaml", + "Agathist Themes": "agathist-themes.yaml", "aGen Theme": "agen-theme.yaml", "Ahoy theme": "ahoy-theme.yaml", "ahroun": "ahroun.yaml", + "Aim Themes (Hack-And-Lima🍋)": "aim-themes--hack-and-lima.yaml", + "Aim Themes (Kai'sa - white - Fork)": "aim-themes--kai-sa-white-fork.yaml", + "Aim Themes (Kaisa-Dark)": "aim-themes--kaisa-dark.yaml", "Aka Kuro Light": "aka-kuro-light.yaml", "Akagami Dark": "akagami-dark.yaml", "Akagami Light": "akagami-light.yaml", - "Akari Dawn": "akari-dawn.yaml", - "Akari Night": "akari-night.yaml", + "Akari (Akari Dawn)": "akari--akari-dawn.yaml", + "Akari (Akari Night)": "akari--akari-night.yaml", + "akashi dark": "akashi-dark.yaml", "Akihabara": "akihabara.yaml", "Aklesky Golden River": "aklesky-golden-river.yaml", "Aklesky Mist of Mint": "aklesky-mist-of-mint.yaml", "Ako Theme": "ako-theme.yaml", "Aksin": "aksin.yaml", - "Akumanomi Theme": "akumanomi-theme.yaml", + "Akumanomi Theme (Akumanomi Theme)": "akumanomi-theme--akumanomi-theme.yaml", "akurdor": "akurdor.yaml", - "AL Theme - Official": "al-theme-official.yaml", "Alabaster Dark": "alabaster-dark.yaml", - "Alchemist's Orchid Dark": "alchemist-s-orchid-dark.yaml", - "Alchemist's Orchid Light": "alchemist-s-orchid-light.yaml", - "Alchemist's Orchid Sepia": "alchemist-s-orchid-sepia.yaml", + "Alabaster Dark Theme": "alabaster-dark-theme.yaml", + "Alchemist": "alchemist.yaml", + "Alchemist's Orchid (Alchemist's Orchid Dark)": "alchemist-s-orchid--alchemist-s-orchid-dark.yaml", + "Alchemist's Orchid (Alchemist's Orchid Light)": "alchemist-s-orchid--alchemist-s-orchid-light.yaml", + "Alchemist's Orchid (Alchemist's Orchid Sepia)": "alchemist-s-orchid--alchemist-s-orchid-sepia.yaml", "Alchemy Theme": "alchemy-theme.yaml", - "Aldrico's Gruvbox": "aldrico-s-gruvbox.yaml", "Alec Teal Theme": "alec-teal-theme.yaml", "Alice's Theme": "alice-s-theme.yaml", - "Aliceblue-Theme": "aliceblue-theme.yaml", - "Alien Blood": "alien-blood.yaml", - "Alien Terminal Nostromo Amber": "alien-terminal-nostromo-amber.yaml", - "Alien Terminal Nostromo Green": "alien-terminal-nostromo-green.yaml", - "Alien Terminal Sevastopol Link": "alien-terminal-sevastopol-link.yaml", + "Alien Blood (Alien Blood)": "alien-blood--alien-blood.yaml", "Alignment": "alignment.yaml", "Alignment darker": "alignment-darker.yaml", "All Blue": "all-blue.yaml", + "All Nighter Italic": "all-nighter-italic.yaml", "all-black": "all-black.yaml", - "all-nighter Theme": "all-nighter-theme.yaml", "alligator-light": "alligator-light.yaml", "alligator-solarized-dark": "alligator-solarized-dark.yaml", "alligator-solarized-light": "alligator-solarized-light.yaml", "Allomancer": "allomancer.yaml", - "allure": "allure.yaml", - "allure-contrast": "allure-contrast.yaml", - "allure-light": "allure-light.yaml", - "Alma Sakura Theme": "alma-sakura-theme.yaml", + "Alma Sakura": "alma-sakura.yaml", "Almond Cream": "almond-cream.yaml", "Aloe": "aloe.yaml", "alpha": "alpha.yaml", "alpine": "alpine.yaml", "Alpine-Warm": "alpine-warm.yaml", + "Alt Catppuccin for VSCode (Catppuccin Monokai Frappe)": "alt-catppuccin-for-vscode--catppuccin-monokai-frappe.yaml", + "Alt Catppuccin for VSCode (Catppuccin Monokai Latte)": "alt-catppuccin-for-vscode--catppuccin-monokai-latte.yaml", + "Alt Catppuccin for VSCode (Catppuccin Monokai Macchiato)": "alt-catppuccin-for-vscode--catppuccin-monokai-macchiato.yaml", + "Alt Catppuccin for VSCode (Catppuccin Monokai Mocha)": "alt-catppuccin-for-vscode--catppuccin-monokai-mocha.yaml", "Altearn": "altearn.yaml", - "Altered Matter Dopamin Owl": "altered-matter-dopamin-owl.yaml", - "alternight": "alternight.yaml", - "Altin's Love Symphony": "altin-s-love-symphony.yaml", - "Alucard Sotn": "alucard-sotn.yaml", + "AlterNight (alternight)": "alternight--alternight.yaml", + "Alucard (Alucard Sotn)": "alucard--alucard-sotn.yaml", "ALX_THEME_CLASSIC": "alx-theme-classic.yaml", "ALX_THEME_TOXIC": "alx-theme-toxic.yaml", "Amadeus Dark": "amadeus-dark.yaml", "Amadeus Dark Cobalt": "amadeus-dark-cobalt.yaml", "Amadeus Dark Pastel": "amadeus-dark-pastel.yaml", - "Amazon-Jungle": "amazon-jungle.yaml", + "Amaral pink": "amaral-pink.yaml", + "amazonFrog": "amazonfrog.yaml", "AmazonFrog": "amazonfrog.yaml", "Ambar for VSCode": "ambar-for-vscode.yaml", "Amber Delight": "amber-delight.yaml", @@ -270,56 +291,67 @@ "Amber-Red-Light": "amber-red-light.yaml", "Ambient": "ambient.yaml", "Amethyst Dreams": "amethyst-dreams.yaml", - "Amethyst Kiss Dark(Kiss Mode)": "amethyst-kiss-dark-kiss-mode.yaml", - "Amethyst Kiss Light(Kiss Mode)": "amethyst-kiss-light-kiss-mode.yaml", + "Amethyst Kiss Themes Pack (Amethyst Kiss Dark(Kiss Mode))": "amethyst-kiss-themes-pack-amethyst-kiss-dark-kiss-mode.yaml", + "Amethyst Kiss Themes Pack (Amethyst Kiss Light(Kiss Mode))": "amethyst-kiss-themes-pack-amethyst-kiss-light-kiss-mode.yaml", "Amethyst Theme": "amethyst-theme.yaml", - "Amethyst-Stone": "amethyst-stone.yaml", "amMinial": "amminial.yaml", - "Amoled Dark Theme": "amoled-dark-theme.yaml", + "AMOLED Black Theme (Amoled Dark Theme)": "amoled-black-theme--amoled-dark-theme.yaml", + "Amoled Darcula Theme": "amoled-darcula-theme.yaml", "amoledTest - Fork - Fork": "amoledtest-fork-fork.yaml", "Amora": "amora.yaml", - "Amozonia": "amozonia.yaml", - "Amp Dark": "amp-dark.yaml", - "Amp Light": "amp-light.yaml", + "Amp Theme (Amp Dark)": "amp-theme--amp-dark.yaml", + "Amp Theme (Amp Light)": "amp-theme--amp-light.yaml", + "An Old Hope Theme": "an-old-hope-theme.yaml", "Anakmun": "anakmun.yaml", "Analog Dream: Beige Terminal": "analog-dream-beige-terminal.yaml", "Analog Dream: Magnetic Night": "analog-dream-magnetic-night.yaml", "anasdev": "anasdev.yaml", "Anastasia": "anastasia.yaml", - "Andromeda": "andromeda.yaml", - "Andromeda Light Italic Bordered": "andromeda-light-italic-bordered.yaml", - "Andromeda Night": "andromeda-night.yaml", + "Andromeda Dark Theme": "andromeda-dark-theme.yaml", + "Andromeda Night (Dusk)": "andromeda-night--dusk.yaml", + "Andromeda Night (Tokyo Night Equalizer)": "andromeda-night--tokyo-night-equalizer.yaml", "Andromeda Zed": "andromeda-zed.yaml", + "Andromeda-custom": "andromeda-custom.yaml", "Andromeda-Custom": "andromeda-custom.yaml", + "andromeda-zed": "andromeda-zed.yaml", + "andy Blue": "andy-blue.yaml", "Anemones": "anemones.yaml", "angelnature2": "angelnature2.yaml", "Angrboda Dark": "angrboda-dark.yaml", "Angrboda Light": "angrboda-light.yaml", - "Angular Dark Theme": "angular-dark-theme.yaml", - "Animatrix": "animatrix.yaml", + "Angular Theme": "angular-theme.yaml", + "Anime Theme (Attack on Titan (Eren's Determination))": "anime-theme-attack-on-titan-eren-s-determination.yaml", + "Anime Theme (My Hero Academia (Deku Plus Ultra))": "anime-theme-my-hero-academia-deku-plus-ultra.yaml", + "Anime Theme (Naruto (Hokage Orange))": "anime-theme-naruto-hokage-orange.yaml", + "Anime Theme (One Piece (Straw Hat Red))": "anime-theme-one-piece-straw-hat-red.yaml", + "Anime Theme Collection": "anime-theme-collection.yaml", "animetheme": "animetheme.yaml", + "anisochromatic": "anisochromatic.yaml", "Anisochromatic": "anisochromatic.yaml", - "Ano Theme - Dark": "ano-theme-dark.yaml", - "AnOldHope": "anoldhope.yaml", - "Another-Acid-Trip": "another-acid-trip.yaml", - "anquyx": "anquyx.yaml", - "Anthropic": "anthropic.yaml", - "Anthropic Dark": "anthropic-dark.yaml", - "Anthropic Light": "anthropic-light.yaml", + "Ano Theme": "ano-theme.yaml", + "another-vscode-zenburn-theme": "another-vscode-zenburn-theme.yaml", + "Anquyx (anquyx)": "anquyx--anquyx.yaml", + "Anthropic Inspired Theme (Anthropic Dark)": "anthropic-inspired-theme--anthropic-dark.yaml", + "Anthropic Inspired Theme (Anthropic Light)": "anthropic-inspired-theme--anthropic-light.yaml", + "Anthropic Theme": "anthropic-theme.yaml", "anthropocene": "anthropocene.yaml", - "anti-glare-moonlit": "anti-glare-moonlit.yaml", - "anti-glare-nebula": "anti-glare-nebula.yaml", - "anti-glare-official": "anti-glare-official.yaml", + "Anti-Glare Theme (anti-glare-moonlit)": "anti-glare-theme--anti-glare-moonlit.yaml", + "Anti-Glare Theme (anti-glare-nebula)": "anti-glare-theme--anti-glare-nebula.yaml", + "Anti-Glare Theme (anti-glare-official)": "anti-glare-theme--anti-glare-official.yaml", "Anti-Gravity Pink": "anti-gravity-pink.yaml", "Antidote": "antidote.yaml", "Antimaterial": "antimaterial.yaml", + "AntZed (Anthropic Dark)": "antzed--anthropic-dark.yaml", + "AntZed (Anthropic Light)": "antzed--anthropic-light.yaml", "Anúbis": "an-bis.yaml", "Anubis Dark": "anubis-dark.yaml", "Anubis Dark Theme": "anubis-dark-theme.yaml", "Anubis Light": "anubis-light.yaml", "Anufemist Dark": "anufemist-dark.yaml", - "Apathy": "apathy.yaml", - "Apathy Experimental": "apathy-experimental.yaml", + "Anya": "anya.yaml", + "Anysphere Dark greener": "anysphere-dark-greener.yaml", + "Apathy Theme (Apathy Experimental)": "apathy-theme--apathy-experimental.yaml", + "Apathy Theme (Apathy)": "apathy-theme--apathy.yaml", "APcodespaces": "apcodespaces.yaml", "Apex": "apex.yaml", "Apex Carbon++": "apex-carbon.yaml", @@ -328,207 +360,206 @@ "Apex Neon++": "apex-neon.yaml", "Apex Pastel++": "apex-pastel.yaml", "Apex Steel++": "apex-steel.yaml", - "Apollo Dark": "apollo-dark.yaml", - "Apollo Light": "apollo-light.yaml", - "app.netlify.com": "app-netlify-com.yaml", + "Apollo Theme (Apollo Dark)": "apollo-theme--apollo-dark.yaml", + "Apollo Theme (Apollo Light)": "apollo-theme--apollo-light.yaml", "Apparently Purple": "apparently-purple.yaml", - "apple-dancheong-minimal-light": "apple-dancheong-minimal-light.yaml", "Apprentice": "apprentice.yaml", - "April Dark Theme": "april-dark-theme.yaml", - "Aqua-Glacier": "aqua-glacier.yaml", - "AquaMain": "aquamain.yaml", + "Aqua Material": "aqua-material.yaml", + "aqua-main": "aqua-main.yaml", "AquaNova": "aquanova.yaml", + "Aquatic blue": "aquatic-blue.yaml", "Arabian Nights": "arabian-nights.yaml", - "arabian-theme": "arabian-theme.yaml", - "Arc Dark": "arc-dark.yaml", - "Arcadia Theme Dark": "arcadia-theme-dark.yaml", - "Arcadia Theme Storm": "arcadia-theme-storm.yaml", - "Arcaea": "arcaea.yaml", + "Arasaka Inferno Theme (Blue Neon)": "arasaka-inferno-theme--blue-neon.yaml", + "Arasaka Inferno Theme (Pink Neon)": "arasaka-inferno-theme--pink-neon.yaml", + "Arasaka Inferno Theme (Red Neon)": "arasaka-inferno-theme--red-neon.yaml", + "Arcadia Theme (Arcadia Theme Dark)": "arcadia-theme--arcadia-theme-dark.yaml", + "Arcadia Theme (Arcadia Theme Storm)": "arcadia-theme--arcadia-theme-storm.yaml", + "Arcaea Theme (Arcaea)": "arcaea-theme--arcaea.yaml", + "archangel (🪽 archangel → dusk)": "archangel--archangel-dusk.yaml", + "archangel (🪽 archangel)": "archangel--archangel.yaml", "Archie-dark-color-theme": "archie-dark-color-theme.yaml", - "Architect (dark) - Fork": "architect-dark-fork.yaml", "Arctic Depth": "arctic-depth.yaml", - "Arctic Night": "arctic-night.yaml", - "Arctis": "arctis.yaml", + "Arctic Night Theme": "arctic-night-theme.yaml", + "Arctis (Arctis Dark - No Italics)": "arctis--arctis-dark-no-italics.yaml", + "Arctis (Arctis Dark)": "arctis--arctis-dark.yaml", + "Arctis (Arctis Dark+)": "arctis--arctis-dark.yaml", + "Arctis (Arctis High Contrast)": "arctis--arctis-high-contrast.yaml", + "Arctis (Arctis Light)": "arctis--arctis-light.yaml", + "Arctis (Arctis Moon)": "arctis--arctis-moon.yaml", + "Arctis (Arctis Night)": "arctis--arctis-night.yaml", + "Arctis (Arctis)": "arctis--arctis.yaml", "Arctis Dark": "arctis-dark.yaml", "Arctis Dark - No Italics": "arctis-dark-no-italics.yaml", - "Arctis Dark+": "arctis-dark.yaml", - "Arctis High Contrast": "arctis-high-contrast.yaml", - "Arctis Light": "arctis-light.yaml", - "Arctis Moon": "arctis-moon.yaml", - "Arctis Night": "arctis-night.yaml", "Arencio Argos Dark": "arencio-argos-dark.yaml", "Ares Tron Legacy": "ares-tron-legacy.yaml", "Arete Theme": "arete-theme.yaml", + "argo": "argo.yaml", "Argo": "argo.yaml", "argonaut": "argonaut.yaml", "argprocolor": "argprocolor.yaml", - "Ariake Sands": "ariake-sands.yaml", - "Ariake Sun": "ariake-sun.yaml", + "Ariake Sands (Ariake Sands)": "ariake-sands--ariake-sands.yaml", + "Ariake Sands (Ariake Sun)": "ariake-sands--ariake-sun.yaml", "aries": "aries.yaml", - "aries-Darker": "aries-darker.yaml", - "aries-Darker-High-Contrast": "aries-darker-high-contrast.yaml", - "aries-Default": "aries-default.yaml", - "aries-Lighter": "aries-lighter.yaml", - "aries-Lighter-High-Contrast": "aries-lighter-high-contrast.yaml", - "aries-Ocean": "aries-ocean.yaml", - "aries-Palenight": "aries-palenight.yaml", "Arkaios Theme": "arkaios-theme.yaml", "ArkineticTheme": "arkinetictheme.yaml", "Arkku": "arkku.yaml", "armada": "armada.yaml", - "Armada": "armada.yaml", + "Armada Theme": "armada-theme.yaml", "AroAce": "aroace.yaml", "AroAce High Contrast": "aroace-high-contrast.yaml", "AroAce Light": "aroace-light.yaml", - "Aromantic": "aromantic.yaml", "Arrakis Day": "arrakis-day.yaml", "Arrakis Night": "arrakis-night.yaml", "Arrpee": "arrpee.yaml", - "arstotzka": "arstotzka.yaml", - "arstotzka-contrast": "arstotzka-contrast.yaml", - "arstotzka-light": "arstotzka-light.yaml", "Artinpixel Turquoise Theme": "artinpixel-turquoise-theme.yaml", "Artinpixel Turquoise Theme - Dark": "artinpixel-turquoise-theme-dark.yaml", "Artisan Theme": "artisan-theme.yaml", "ArtLab Dark": "artlab-dark.yaml", "ArtLab Light": "artlab-light.yaml", "arunika": "arunika.yaml", + "Arunim's Theme": "arunim-s-theme.yaml", "Arwinux Galaxy": "arwinux-galaxy.yaml", "AS Theme": "as-theme.yaml", + "asaka-theme": "asaka-theme.yaml", "asdfasdfUntitled": "asdfasdfuntitled.yaml", - "Asexual": "asexual.yaml", "ASGTheme": "asgtheme.yaml", "Ash": "ash.yaml", - "Ash & Ember": "ash-ember.yaml", + "Ash & Ember — Warm Dark Theme": "ash-ember-warm-dark-theme.yaml", "Ash Lumen": "ash-lumen.yaml", "Ash Lumen Light": "ash-lumen-light.yaml", - "ashao-color-theme": "ashao-color-theme.yaml", + "Ashao Theme": "ashao-theme.yaml", "Ashen": "ashen.yaml", "Ashen Darker": "ashen-darker.yaml", "AShineUI": "ashineui.yaml", - "AspieSoft IntelliJ Theme": "aspiesoft-intellij-theme.yaml", + "ASP Editor": "asp-editor.yaml", + "AspieSoft IntelliJ Theme (AspieSoft IntelliJ Theme)": "aspiesoft-intellij-theme--aspiesoft-intellij-theme.yaml", "Aspire Core": "aspire-core.yaml", "Aspire Dark": "aspire-dark.yaml", "Aspire Light": "aspire-light.yaml", "Assam - Tea Gardens": "assam-tea-gardens.yaml", - "Aster Dark Theme": "aster-dark-theme.yaml", + "Aster": "aster.yaml", "Asteria": "asteria.yaml", "Astigmatism Theme": "astigmatism-theme.yaml", "Astra": "astra.yaml", - "Astra-ThemeDark": "astra-themedark.yaml", + "Astra Theme": "astra-theme.yaml", + "astra-theme": "astra-theme.yaml", "Astral": "astral.yaml", "Astral Theme": "astral-theme.yaml", - "Astro Dark": "astro-dark.yaml", - "Astro Kanagawa": "astro-kanagawa.yaml", - "Astro Light": "astro-light.yaml", + "Astro by Mike (Astro Dark)": "astro-by-mike--astro-dark.yaml", + "Astro by Mike (Astro Light)": "astro-by-mike--astro-light.yaml", + "Astro Kanagawa (Astro Kanagawa)": "astro-kanagawa--astro-kanagawa.yaml", "Astrofunk Dark": "astrofunk-dark.yaml", "Astronaut": "astronaut.yaml", "Astrus Midnight": "astrus-midnight.yaml", "Astrus Nebula": "astrus-nebula.yaml", "Astrus Standard": "astrus-standard.yaml", - "Asuka-Theme": "asuka-theme.yaml", - "Asuka-Theme-Light": "asuka-theme-light.yaml", + "Asuka Theme (Asuka-Theme-Light)": "asuka-theme--asuka-theme-light.yaml", + "Asuka Theme (Asuka-Theme)": "asuka-theme--asuka-theme.yaml", "Athabasca": "athabasca.yaml", "Athabasca Light": "athabasca-light.yaml", "Atilio": "atilio.yaml", "Atlantu": "atlantu.yaml", - "Atom Homepage - Fork": "atom-homepage-fork.yaml", - "Atom Material Theme": "atom-material-theme.yaml", + "Atom One Cyan (Atom One Dark Cyan)": "atom-one-cyan--atom-one-dark-cyan.yaml", + "Atom One Cyan (Atom One Light Cyan)": "atom-one-cyan--atom-one-light-cyan.yaml", "Atom One dark Coal": "atom-one-dark-coal.yaml", - "Atom One Dark Cyan": "atom-one-dark-cyan.yaml", - "Atom One Light Cyan": "atom-one-light-cyan.yaml", + "Atom One Dark Coal": "atom-one-dark-coal.yaml", "Atom One Light Modern": "atom-one-light-modern.yaml", + "Atom theme": "atom-theme.yaml", "AtomAx Colorblind Light": "atomax-colorblind-light.yaml", "AtomAx Dark+": "atomax-dark.yaml", "AtomAx Dark+ Colorblind": "atomax-dark-colorblind.yaml", "AtomAx Dark+ Dimmed": "atomax-dark-dimmed.yaml", "AtomAx Dark+ Tritanopia": "atomax-dark-tritanopia.yaml", "AtomAx High Contrast": "atomax-high-contrast.yaml", - "AtomAx High Contrast Light": "atomax-high-contrast-light.yaml", "AtomAx Light+": "atomax-light.yaml", "AtomAx Light+ Tritanopia": "atomax-light-tritanopia.yaml", "Atomicc": "atomicc.yaml", "Atomify": "atomify.yaml", + "Atomized Theme": "atomized-theme.yaml", "Atomized-Theme": "atomized-theme.yaml", "Atomizer Dark Island": "atomizer-dark-island.yaml", "Atomwave": "atomwave.yaml", - "Attack on Titan (Eren's Determination)": "attack-on-titan-eren-s-determination.yaml", "Attentio Flow": "attentio-flow.yaml", "Attentio Pulse": "attentio-pulse.yaml", + "attica": "attica.yaml", "Attica": "attica.yaml", "Aube": "aube.yaml", - "August - Ariake Dark": "august-ariake-dark.yaml", - "August - Arstotzka": "august-arstotzka.yaml", - "August - Arstotzka (Darker)": "august-arstotzka-darker.yaml", - "August - Arstotzka (Lighter)": "august-arstotzka-lighter.yaml", - "August - BeardedTheme Oceanic Reversed": "august-beardedtheme-oceanic-reversed.yaml", - "August - BeardedTheme Surprising Blueberry": "august-beardedtheme-surprising-blueberry.yaml", - "August - Catppuccin": "august-catppuccin.yaml", - "August - City Lights": "august-city-lights.yaml", - "August - City Lights (Darker)": "august-city-lights-darker.yaml", - "August - Drawbridge": "august-drawbridge.yaml", - "August - Drawbridge (Darker)": "august-drawbridge-darker.yaml", - "August - Gruvbox": "august-gruvbox.yaml", - "August - Gruvbox (Darker)": "august-gruvbox-darker.yaml", - "August - Kanagawa": "august-kanagawa.yaml", - "August - Kanagawa (Darker)": "august-kanagawa-darker.yaml", - "August - Material Ocean": "august-material-ocean.yaml", - "August - Material Palenight": "august-material-palenight.yaml", - "August - Night Owl": "august-night-owl.yaml", - "August - Night Owl (Darker)": "august-night-owl-darker.yaml", - "August - Nord": "august-nord.yaml", - "August - Nord (Darker)": "august-nord-darker.yaml", - "August - Radical": "august-radical.yaml", - "August - Radical 2": "august-radical-2.yaml", - "August Dark Theme": "august-dark-theme.yaml", - "Aura Dark": "aura-dark.yaml", - "Aura Dark (Soft Text)": "aura-dark-soft-text.yaml", - "Aura Dracula Spirit": "aura-dracula-spirit.yaml", - "Aura Dracula Spirit (Soft)": "aura-dracula-spirit-soft.yaml", - "Aura Dracula Spirit (SynthWave)": "aura-dracula-spirit-synthwave.yaml", - "Aura Soft Dark": "aura-soft-dark.yaml", - "Aura Soft Dark (Soft Text)": "aura-soft-dark-soft-text.yaml", + "August Themes (August - Ariake Dark)": "august-themes--august-ariake-dark.yaml", + "August Themes (August - Arstotzka (Darker))": "august-themes-august-arstotzka-darker.yaml", + "August Themes (August - Arstotzka (Lighter))": "august-themes-august-arstotzka-lighter.yaml", + "August Themes (August - Arstotzka)": "august-themes--august-arstotzka.yaml", + "August Themes (August - BeardedTheme Oceanic Reversed)": "august-themes--august-beardedtheme-oceanic-reversed.yaml", + "August Themes (August - BeardedTheme Surprising Blueberry)": "august-themes--august-beardedtheme-surprising-blueberry.yaml", + "August Themes (August - Catppuccin)": "august-themes--august-catppuccin.yaml", + "August Themes (August - City Lights (Darker))": "august-themes-august-city-lights-darker.yaml", + "August Themes (August - City Lights)": "august-themes--august-city-lights.yaml", + "August Themes (August - Drawbridge (Darker))": "august-themes-august-drawbridge-darker.yaml", + "August Themes (August - Drawbridge)": "august-themes--august-drawbridge.yaml", + "August Themes (August - Gruvbox (Darker))": "august-themes-august-gruvbox-darker.yaml", + "August Themes (August - Kanagawa (Darker))": "august-themes-august-kanagawa-darker.yaml", + "August Themes (August - Material Ocean)": "august-themes--august-material-ocean.yaml", + "August Themes (August - Material Palenight)": "august-themes--august-material-palenight.yaml", + "August Themes (August - Night Owl (Darker))": "august-themes-august-night-owl-darker.yaml", + "August Themes (August - Night Owl)": "august-themes--august-night-owl.yaml", + "August Themes (August - Nord (Darker))": "august-themes-august-nord-darker.yaml", + "August Themes (August - Nord)": "august-themes--august-nord.yaml", + "August Themes (August - Radical 2)": "august-themes--august-radical-2.yaml", + "August Themes (August - Radical)": "august-themes--august-radical.yaml", + "Aura Spirit Dracula Theme (Aura Dracula Spirit (Soft))": "aura-spirit-dracula-theme-aura-dracula-spirit-soft.yaml", + "Aura Spirit Dracula Theme (Aura Dracula Spirit (SynthWave))": "aura-spirit-dracula-theme-aura-dracula-spirit-synthwave.yaml", + "Aura Spirit Dracula Theme (Aura Dracula Spirit)": "aura-spirit-dracula-theme--aura-dracula-spirit.yaml", + "Aura Theme (Aura Dark (Soft Text))": "aura-theme-aura-dark-soft-text.yaml", + "Aura Theme (Aura Dark)": "aura-theme--aura-dark.yaml", + "Aura Theme (Aura Soft Dark (Soft Text))": "aura-theme-aura-soft-dark-soft-text.yaml", + "Aura Theme (Aura Soft Dark)": "aura-theme--aura-soft-dark.yaml", "Aurbis Dark": "aurbis-dark.yaml", "aurelConstellation": "aurelconstellation.yaml", "Aurora": "aurora.yaml", "Aurora Borealis Theme": "aurora-borealis-theme.yaml", "Aurora Borealis Theme Dark": "aurora-borealis-theme-dark.yaml", + "Aurora Evening": "aurora-evening.yaml", + "Aurora Theme - Official": "aurora-theme-official.yaml", + "Aurora Theme - Official (Aurora Dark Primary)": "aurora-theme-official--aurora-dark-primary.yaml", "AuroraBloom": "aurorabloom.yaml", "Aurorain": "aurorain.yaml", "AuroraSynth Dark": "aurorasynth-dark.yaml", "AuroraSynth Light": "aurorasynth-light.yaml", "Australian Food & Fibre Dark": "australian-food-fibre-dark.yaml", "Australian Food & Fibre Light": "australian-food-fibre-light.yaml", - "Autu Dark Theme": "autu-dark-theme.yaml", + "Autu Theme": "autu-theme.yaml", "Autumn": "autumn.yaml", - "Autumn - Fork": "autumn-fork.yaml", - "Autumn - Fork - Contrast": "autumn-fork-contrast.yaml", "Autumn Highlighter Syntax": "autumn-highlighter-syntax.yaml", + "Autumn Theme (Light)": "autumn-theme--light.yaml", + "Ava583 Dark Rose Quartz Theme": "ava583-dark-rose-quartz-theme.yaml", + "Avesta (Mono Atom)": "avesta--mono-atom.yaml", "Awesome Dark": "awesome-dark.yaml", "awesome-theme": "awesome-theme.yaml", "awesome-vscode-dark": "awesome-vscode-dark.yaml", - "Awork Dark": "awork-dark.yaml", + "awork": "awork.yaml", "Axiomatic Dark": "axiomatic-dark.yaml", "Axiomatic Light": "axiomatic-light.yaml", + "Axion Themes (Plasma Pink)": "axion-themes--plasma-pink.yaml", + "Axion Themes (Quantum Green)": "axion-themes--quantum-green.yaml", "Axis Ultra Dark": "axis-ultra-dark.yaml", "Aya Dark": "aya-dark.yaml", "Aya Light": "aya-light.yaml", "Ayame": "ayame.yaml", "Ayanokoji": "ayanokoji.yaml", "Aylin": "aylin.yaml", - "Ayu Darkvenom Transparent - borderless": "ayu-darkvenom-transparent-borderless.yaml", "Ayu Enhanced": "ayu-enhanced.yaml", - "Ayu One Dark Pro | Dark Bordered": "ayu-one-dark-pro-dark-bordered.yaml", - "Ayu One Dark Pro | Mirage": "ayu-one-dark-pro-mirage.yaml", - "Ayu One Dark Pro | Mirage Bordered": "ayu-one-dark-pro-mirage-bordered.yaml", + "Ayu One Dark Pro (deprecated) (Ayu One Dark Pro | Dark Bordered)": "ayu-one-dark-pro-deprecated--ayu-one-dark-pro-dark-bordered.yaml", + "Ayu One Dark Pro (deprecated) (Ayu One Dark Pro | Dark)": "ayu-one-dark-pro-deprecated--ayu-one-dark-pro-dark.yaml", + "Ayu One Dark Pro (deprecated) (Ayu One Dark Pro | Mirage Bordered)": "ayu-one-dark-pro-deprecated--ayu-one-dark-pro-mirage-bordered.yaml", + "Ayu One Dark Pro (deprecated) (Ayu One Dark Pro | Mirage)": "ayu-one-dark-pro-deprecated--ayu-one-dark-pro-mirage.yaml", + "Ayu Owl": "ayu-owl.yaml", + "Ayu Theme Fork": "ayu-theme-fork.yaml", + "Ayu Tokyo Night": "ayu-tokyo-night.yaml", "ayu-owl": "ayu-owl.yaml", - "AyuDark": "ayudark.yaml", - "Ayuloco Dark Bordered": "ayuloco-dark-bordered.yaml", - "Ayuloco Mirage": "ayuloco-mirage.yaml", - "Ayuloco Mirage Bordered": "ayuloco-mirage-bordered.yaml", - "AyuTokyo-color-theme": "ayutokyo-color-theme.yaml", + "Ayuloco Theme (Ayuloco Dark Bordered)": "ayuloco-theme--ayuloco-dark-bordered.yaml", + "Ayuloco Theme (Ayuloco Mirage Bordered)": "ayuloco-theme--ayuloco-mirage-bordered.yaml", + "Ayuloco Theme (Ayuloco Mirage)": "ayuloco-theme--ayuloco-mirage.yaml", "Ayyour": "ayyour.yaml", - "az0ox.theme-shadesOfBlue": "az0ox-theme-shadesofblue.yaml", + "az0ox Shades of blue": "az0ox-shades-of-blue.yaml", "Azathoth": "azathoth.yaml", "Azeny": "azeny.yaml", "Azeny Cutimaru": "azeny-cutimaru.yaml", @@ -537,17 +568,15 @@ "Azerite Dark": "azerite-dark.yaml", "Azerite Dark Soft": "azerite-dark-soft.yaml", "Azul": "azul.yaml", - "azure": "azure.yaml", + "Azul (Azul)": "azul--azul.yaml", + "Azul (GreenSpace)": "azul--greenspace.yaml", "Azure Iris Dark": "azure-iris-dark.yaml", "Azure Iris Light": "azure-iris-light.yaml", - "Azure Noir": "azure-noir.yaml", - "azure-contrast": "azure-contrast.yaml", - "Azure-Dark-Teal": "azure-dark-teal.yaml", - "azure-light": "azure-light.yaml", - "B'nT": "b-nt.yaml", + "Azure Teal": "azure-teal.yaml", "B150 Dark": "b150-dark.yaml", "B150 Light": "b150-light.yaml", "B2B Edge - Light": "b2b-edge-light.yaml", + "b715xyz": "b715xyz.yaml", "B9F36BCF530F3D6B5C9CF39D2E260A99 (Dark)": "b9f36bcf530f3d6b5c9cf39d2e260a99-dark.yaml", "B9F36BCF530F3D6B5C9CF39D2E260A99 (Light)": "b9f36bcf530f3d6b5c9cf39d2e260a99-light.yaml", "Backspace Dark": "backspace-dark.yaml", @@ -562,11 +591,13 @@ "badbird": "badbird.yaml", "Baig": "baig.yaml", "Baitul Hikmah Professional": "baitul-hikmah-professional.yaml", + "bakaneo": "bakaneo.yaml", "BakaNeo": "bakaneo.yaml", "Balance Pink - Compassion & Focus": "balance-pink-compassion-focus.yaml", "Balance Pink Colorblind - Compassion & Focus": "balance-pink-colorblind-compassion-focus.yaml", "Balance Pink High Contrast - Compassion & Focus": "balance-pink-high-contrast-compassion-focus.yaml", "Balance Pink Light - Compassion & Focus": "balance-pink-light-compassion-focus.yaml", + "bali crepuscule": "bali-crepuscule.yaml", "Bali crepuscule": "bali-crepuscule.yaml", "Ballerini Theme": "ballerini-theme.yaml", "Bam": "bam.yaml", @@ -579,92 +610,89 @@ "BandMeUp": "bandmeup.yaml", "Banjo Loans Dark": "banjo-loans-dark.yaml", "Banjo Loans Light": "banjo-loans-light.yaml", - "banner": "banner.yaml", - "banner-contrast": "banner-contrast.yaml", - "banner-light": "banner-light.yaml", - "Barbenheimer Bunker": "barbenheimer-bunker.yaml", - "Barbenheimer Dreamhouse": "barbenheimer-dreamhouse.yaml", - "Barbenheimer Nuclear Sunrise": "barbenheimer-nuclear-sunrise.yaml", + "Barbenheimer (Barbenheimer Bunker)": "barbenheimer--barbenheimer-bunker.yaml", + "Barbenheimer (Barbenheimer Dreamhouse)": "barbenheimer--barbenheimer-dreamhouse.yaml", + "Barbenheimer (Barbenheimer Nuclear Sunrise)": "barbenheimer--barbenheimer-nuclear-sunrise.yaml", "Barbie": "barbie.yaml", "Barbie Light": "barbie-light.yaml", "Barbie Theme": "barbie-theme.yaml", "Barito": "barito.yaml", "barlume": "barlume.yaml", "Barney PRO": "barney-pro.yaml", + "barstrata": "barstrata.yaml", "Barstrata": "barstrata.yaml", "Base Minor Dark Hard": "base-minor-dark-hard.yaml", "Base Minor Dark Soft": "base-minor-dark-soft.yaml", "Base Minor Soft": "base-minor-soft.yaml", - "base-color-theme": "base-color-theme.yaml", - "Base16 3024 Dark": "base16-3024-dark.yaml", - "Base16 3024 Light": "base16-3024-light.yaml", - "Base16 Apathy Dark": "base16-apathy-dark.yaml", - "Base16 Apathy Light": "base16-apathy-light.yaml", - "Base16 Ashes Dark": "base16-ashes-dark.yaml", - "Base16 Ashes Light": "base16-ashes-light.yaml", - "Base16 Bespin Dark": "base16-bespin-dark.yaml", - "Base16 Bespin Light": "base16-bespin-light.yaml", - "Base16 Brewer Dark": "base16-brewer-dark.yaml", - "Base16 Brewer Light": "base16-brewer-light.yaml", - "Base16 Bright Dark": "base16-bright-dark.yaml", - "Base16 Bright Light": "base16-bright-light.yaml", - "Base16 Codeschool Dark": "base16-codeschool-dark.yaml", - "Base16 Codeschool Light": "base16-codeschool-light.yaml", - "Base16 Default Dark": "base16-default-dark.yaml", - "Base16 Default Light": "base16-default-light.yaml", - "Base16 Eighties Dark": "base16-eighties-dark.yaml", - "Base16 Eighties Light": "base16-eighties-light.yaml", - "Base16 Embers Dark": "base16-embers-dark.yaml", - "Base16 Embers Light": "base16-embers-light.yaml", - "Base16 Flat Dark": "base16-flat-dark.yaml", - "Base16 Flat Light": "base16-flat-light.yaml", - "Base16 Google Dark": "base16-google-dark.yaml", - "Base16 Google Light": "base16-google-light.yaml", - "Base16 Grayscale Dark": "base16-grayscale-dark.yaml", - "Base16 Grayscale Light": "base16-grayscale-light.yaml", - "Base16 Green Screen Dark": "base16-green-screen-dark.yaml", - "Base16 Green Screen Light": "base16-green-screen-light.yaml", - "Base16 Harmonic16 Dark": "base16-harmonic16-dark.yaml", - "Base16 Harmonic16 Light": "base16-harmonic16-light.yaml", - "Base16 Isotope Dark": "base16-isotope-dark.yaml", - "Base16 Isotope Light": "base16-isotope-light.yaml", - "Base16 Marrakesh Dark": "base16-marrakesh-dark.yaml", - "Base16 Marrakesh Light": "base16-marrakesh-light.yaml", - "Base16 Mocha Dark": "base16-mocha-dark.yaml", - "Base16 Mocha Light": "base16-mocha-light.yaml", - "Base16 Monokai Dark": "base16-monokai-dark.yaml", - "Base16 Monokai Light": "base16-monokai-light.yaml", - "Base16 Ocean Dark": "base16-ocean-dark.yaml", - "Base16 Ocean Light": "base16-ocean-light.yaml", - "Base16 OceanicNext Dark": "base16-oceanicnext-dark.yaml", - "Base16 OceanicNext Light": "base16-oceanicnext-light.yaml", - "Base16 Paraiso Dark": "base16-paraiso-dark.yaml", - "Base16 Paraiso Light": "base16-paraiso-light.yaml", - "Base16 Pop Dark": "base16-pop-dark.yaml", - "Base16 Pop Light": "base16-pop-light.yaml", - "Base16 Railscasts Dark": "base16-railscasts-dark.yaml", - "Base16 Railscasts Light": "base16-railscasts-light.yaml", - "Base16 Shapeshifter Dark": "base16-shapeshifter-dark.yaml", - "Base16 Shapeshifter Light": "base16-shapeshifter-light.yaml", - "Base16 Solarized Dark": "base16-solarized-dark.yaml", - "Base16 Solarized Light": "base16-solarized-light.yaml", - "Base16 Summerfruit Dark": "base16-summerfruit-dark.yaml", - "Base16 Summerfruit Light": "base16-summerfruit-light.yaml", - "Base16 Tomorrow Dark": "base16-tomorrow-dark.yaml", - "Base16 Tomorrow Light": "base16-tomorrow-light.yaml", - "Base16 Twilight Dark": "base16-twilight-dark.yaml", - "Base16 Twilight Light": "base16-twilight-light.yaml", - "Base16 Unikitty Dark": "base16-unikitty-dark.yaml", - "Base16 Unikitty Light": "base16-unikitty-light.yaml", - "Base16 Woodland Dark": "base16-woodland-dark.yaml", - "basic blue": "basic-blue.yaml", - "basic_black": "basic-black.yaml", + "Base16 Themes (Base16 3024 Dark)": "base16-themes--base16-3024-dark.yaml", + "Base16 Themes (Base16 3024 Light)": "base16-themes--base16-3024-light.yaml", + "Base16 Themes (Base16 Apathy Dark)": "base16-themes--base16-apathy-dark.yaml", + "Base16 Themes (Base16 Apathy Light)": "base16-themes--base16-apathy-light.yaml", + "Base16 Themes (Base16 Ashes Dark)": "base16-themes--base16-ashes-dark.yaml", + "Base16 Themes (Base16 Ashes Light)": "base16-themes--base16-ashes-light.yaml", + "Base16 Themes (Base16 Bespin Dark)": "base16-themes--base16-bespin-dark.yaml", + "Base16 Themes (Base16 Bespin Light)": "base16-themes--base16-bespin-light.yaml", + "Base16 Themes (Base16 Brewer Dark)": "base16-themes--base16-brewer-dark.yaml", + "Base16 Themes (Base16 Brewer Light)": "base16-themes--base16-brewer-light.yaml", + "Base16 Themes (Base16 Bright Dark)": "base16-themes--base16-bright-dark.yaml", + "Base16 Themes (Base16 Bright Light)": "base16-themes--base16-bright-light.yaml", + "Base16 Themes (Base16 Codeschool Dark)": "base16-themes--base16-codeschool-dark.yaml", + "Base16 Themes (Base16 Codeschool Light)": "base16-themes--base16-codeschool-light.yaml", + "Base16 Themes (Base16 Default Dark)": "base16-themes--base16-default-dark.yaml", + "Base16 Themes (Base16 Default Light)": "base16-themes--base16-default-light.yaml", + "Base16 Themes (Base16 Eighties Dark)": "base16-themes--base16-eighties-dark.yaml", + "Base16 Themes (Base16 Eighties Light)": "base16-themes--base16-eighties-light.yaml", + "Base16 Themes (Base16 Embers Dark)": "base16-themes--base16-embers-dark.yaml", + "Base16 Themes (Base16 Embers Light)": "base16-themes--base16-embers-light.yaml", + "Base16 Themes (Base16 Flat Dark)": "base16-themes--base16-flat-dark.yaml", + "Base16 Themes (Base16 Flat Light)": "base16-themes--base16-flat-light.yaml", + "Base16 Themes (Base16 Google Dark)": "base16-themes--base16-google-dark.yaml", + "Base16 Themes (Base16 Google Light)": "base16-themes--base16-google-light.yaml", + "Base16 Themes (Base16 Grayscale Dark)": "base16-themes--base16-grayscale-dark.yaml", + "Base16 Themes (Base16 Grayscale Light)": "base16-themes--base16-grayscale-light.yaml", + "Base16 Themes (Base16 Green Screen Dark)": "base16-themes--base16-green-screen-dark.yaml", + "Base16 Themes (Base16 Green Screen Light)": "base16-themes--base16-green-screen-light.yaml", + "Base16 Themes (Base16 Harmonic16 Dark)": "base16-themes--base16-harmonic16-dark.yaml", + "Base16 Themes (Base16 Harmonic16 Light)": "base16-themes--base16-harmonic16-light.yaml", + "Base16 Themes (Base16 Isotope Dark)": "base16-themes--base16-isotope-dark.yaml", + "Base16 Themes (Base16 Isotope Light)": "base16-themes--base16-isotope-light.yaml", + "Base16 Themes (Base16 Marrakesh Dark)": "base16-themes--base16-marrakesh-dark.yaml", + "Base16 Themes (Base16 Marrakesh Light)": "base16-themes--base16-marrakesh-light.yaml", + "Base16 Themes (Base16 Mocha Dark)": "base16-themes--base16-mocha-dark.yaml", + "Base16 Themes (Base16 Mocha Light)": "base16-themes--base16-mocha-light.yaml", + "Base16 Themes (Base16 Monokai Dark)": "base16-themes--base16-monokai-dark.yaml", + "Base16 Themes (Base16 Monokai Light)": "base16-themes--base16-monokai-light.yaml", + "Base16 Themes (Base16 Ocean Dark)": "base16-themes--base16-ocean-dark.yaml", + "Base16 Themes (Base16 Ocean Light)": "base16-themes--base16-ocean-light.yaml", + "Base16 Themes (Base16 OceanicNext Dark)": "base16-themes--base16-oceanicnext-dark.yaml", + "Base16 Themes (Base16 OceanicNext Light)": "base16-themes--base16-oceanicnext-light.yaml", + "Base16 Themes (Base16 Paraiso Dark)": "base16-themes--base16-paraiso-dark.yaml", + "Base16 Themes (Base16 Paraiso Light)": "base16-themes--base16-paraiso-light.yaml", + "Base16 Themes (Base16 Pop Dark)": "base16-themes--base16-pop-dark.yaml", + "Base16 Themes (Base16 Pop Light)": "base16-themes--base16-pop-light.yaml", + "Base16 Themes (Base16 Railscasts Dark)": "base16-themes--base16-railscasts-dark.yaml", + "Base16 Themes (Base16 Railscasts Light)": "base16-themes--base16-railscasts-light.yaml", + "Base16 Themes (Base16 Shapeshifter Dark)": "base16-themes--base16-shapeshifter-dark.yaml", + "Base16 Themes (Base16 Shapeshifter Light)": "base16-themes--base16-shapeshifter-light.yaml", + "Base16 Themes (Base16 Solarized Dark)": "base16-themes--base16-solarized-dark.yaml", + "Base16 Themes (Base16 Solarized Light)": "base16-themes--base16-solarized-light.yaml", + "Base16 Themes (Base16 Summerfruit Dark)": "base16-themes--base16-summerfruit-dark.yaml", + "Base16 Themes (Base16 Summerfruit Light)": "base16-themes--base16-summerfruit-light.yaml", + "Base16 Themes (Base16 Tomorrow Dark)": "base16-themes--base16-tomorrow-dark.yaml", + "Base16 Themes (Base16 Tomorrow Light)": "base16-themes--base16-tomorrow-light.yaml", + "Base16 Themes (Base16 Twilight Dark)": "base16-themes--base16-twilight-dark.yaml", + "Base16 Themes (Base16 Twilight Light)": "base16-themes--base16-twilight-light.yaml", + "Base16 Themes (Base16 Unikitty Dark)": "base16-themes--base16-unikitty-dark.yaml", + "Base16 Themes (Base16 Unikitty Light)": "base16-themes--base16-unikitty-light.yaml", + "Base16 Themes (Base16 Woodland Dark)": "base16-themes--base16-woodland-dark.yaml", + "BasicTheme": "basictheme.yaml", "Basterdized": "basterdized.yaml", "bat": "bat.yaml", "Batcave": "batcave.yaml", - "Batsignal-light-color-theme": "batsignal-light-color-theme.yaml", + "Batsignal": "batsignal.yaml", "Battutu": "battutu.yaml", "BazmaTheme": "bazmatheme.yaml", + "bazutya": "bazutya.yaml", "Bazutya": "bazutya.yaml", "BBBAlabamaSuntan": "bbbalabamasuntan.yaml", "BBBDark": "bbbdark.yaml", @@ -672,92 +700,113 @@ "BBogdanov Dark": "bbogdanov-dark.yaml", "BBogdanov Light": "bbogdanov-light.yaml", "BC-Theme": "bc-theme.yaml", + "Beach House": "beach-house.yaml", "Beach Vibes": "beach-vibes.yaml", "Beacrisg": "beacrisg.yaml", + "Bear Theme": "bear-theme.yaml", "Bearhugs": "bearhugs.yaml", + "Beautiful UI (Material)": "beautiful-ui--material.yaml", + "Beautiful UI (Nord)": "beautiful-ui--nord.yaml", + "Beautiful UI (Nova)": "beautiful-ui--nova.yaml", + "Beautiful UI (Zenburn)": "beautiful-ui--zenburn.yaml", "becolors": "becolors.yaml", "BedarX Obsidian": "bedarx-obsidian.yaml", "BedarX Onyx": "bedarx-onyx.yaml", "BedarX Pearl": "bedarx-pearl.yaml", "BedarX Sapphire": "bedarx-sapphire.yaml", - "Bee Theme": "bee-theme.yaml", - "bee-theme-color-theme-tow": "bee-theme-color-theme-tow.yaml", + "Bee Theme (Bee Theme)": "bee-theme--bee-theme.yaml", + "Bee Theme (bee-theme-color-theme-tow)": "bee-theme--bee-theme-color-theme-tow.yaml", "Beerish": "beerish.yaml", "BeeSystemTheme": "beesystemtheme.yaml", "Beginner Theme": "beginner-theme.yaml", "Behavai": "behavai.yaml", "Behavai Vitesse": "behavai-vitesse.yaml", - "BELCH - Fork": "belch-fork.yaml", "Bellair": "bellair.yaml", "Beloco": "beloco.yaml", - "BenLaTheme Azure": "benlatheme-azure.yaml", - "Benpai Theme (Dark)": "benpai-theme-dark.yaml", + "BenLaTheme": "benlatheme.yaml", + "Benpai Theme": "benpai-theme.yaml", "Benty": "benty.yaml", "Benty Dark": "benty-dark.yaml", "Berg": "berg.yaml", "Berkeley": "berkeley.yaml", + "Berlin Postal Themes (NW21)": "berlin-postal-themes--nw21.yaml", + "Berlin Postal Themes (SW61)": "berlin-postal-themes--sw61.yaml", "Bernadoque Theme": "bernadoque-theme.yaml", - "Berry Latte Light": "berry-latte-light.yaml", - "berry-blast-theme": "berry-blast-theme.yaml", - "Bersk": "bersk.yaml", + "Berry Latte Light Theme": "berry-latte-light-theme.yaml", + "Bersk Dark Theme": "bersk-dark-theme.yaml", "bertax": "bertax.yaml", "BertDark": "bertdark.yaml", - "Beru": "beru.yaml", - "Best Themes - One Monokai": "best-themes-one-monokai.yaml", + "Beru Theme": "beru-theme.yaml", + "Best Themes Redefined 🚀 (Best Themes - Monokai Next)": "best-themes-redefined--best-themes-monokai-next.yaml", + "Best Themes Redefined 🚀 (Best Themes - One Monokai)": "best-themes-redefined--best-themes-one-monokai.yaml", "Better Coding Dark": "better-coding-dark.yaml", "Better Light": "better-light.yaml", "Better Oceanic Next": "better-oceanic-next.yaml", - "Better Selenized Dark": "better-selenized-dark.yaml", - "Better Solarized Dark": "better-solarized-dark.yaml", - "Better Solarized Dark Italic": "better-solarized-dark-italic.yaml", + "Better Solarized (Better Selenized Dark)": "better-solarized--better-selenized-dark.yaml", + "Better Solarized (Better Solarized Dark Italic)": "better-solarized--better-solarized-dark-italic.yaml", + "Better Solarized (Better Solarized Dark)": "better-solarized--better-solarized-dark.yaml", "betu-dark": "betu-dark.yaml", "betu-light": "betu-light.yaml", "betweenTTs": "betweentts.yaml", - "BHWM715 - Even Darker": "bhwm715-even-darker.yaml", - "BiancoNero": "bianconero.yaml", + "BiancoNero (BiancoNero)": "bianconero--bianconero.yaml", "Bibauporto Gray": "bibauporto-gray.yaml", "Biddeew": "biddeew.yaml", "Bifröst": "bifr-st.yaml", "BigFish": "bigfish.yaml", - "BigSur GTK Theme (Dark Blue)": "bigsur-gtk-theme-dark-blue.yaml", + "BigSurGTK-Blue": "bigsurgtk-blue.yaml", "BINI Theme": "bini-theme.yaml", - "bird": "bird.yaml", + "Bio Dark": "bio-dark.yaml", + "Bio Dark Midnight": "bio-dark-midnight.yaml", + "bird (bird)": "bird--bird.yaml", "Bit": "bit.yaml", "Bit Intense": "bit-intense.yaml", "Bit Soft": "bit-soft.yaml", "bitPurp Dark": "bitpurp-dark.yaml", + "Bits": "bits.yaml", "Bits Theme": "bits-theme.yaml", "Bits Theme Green": "bits-theme-green.yaml", "Bits Theme Green Light": "bits-theme-green-light.yaml", "Bits Theme Light": "bits-theme-light.yaml", "Bits Theme Purple": "bits-theme-purple.yaml", "Bits Theme Purple Light": "bits-theme-purple-light.yaml", + "Biu Theme (Vitesse Dark)": "biu-theme--vitesse-dark.yaml", + "Biu Theme (Vitesse Light)": "biu-theme--vitesse-light.yaml", "Bl!nk": "bl-nk.yaml", + "Blac": "blac.yaml", + "Black 'n Turquoise": "black-n-turquoise.yaml", "Black and Red": "black-and-red.yaml", "Black and White TV": "black-and-white-tv.yaml", + "Black Back Dark E-Theme": "black-back-dark-e-theme.yaml", "Black Beauty": "black-beauty.yaml", "Black Ocean": "black-ocean.yaml", "Black on Gray": "black-on-gray.yaml", "Black panther theme": "black-panther-theme.yaml", "Black Pink Rose": "black-pink-rose.yaml", + "black punk 77": "black-punk-77.yaml", "Black punk 77": "black-punk-77.yaml", "Black Purple": "black-purple.yaml", - "Black theme": "black-theme.yaml", + "Black rose": "black-rose.yaml", + "Black Total": "black-total.yaml", + "Black Void": "black-void.yaml", "black-back-dark-e-theme": "black-back-dark-e-theme.yaml", "black-color-theme": "black-color-theme.yaml", + "Black-panther-theme": "black-panther-theme.yaml", "Black-Rose": "black-rose.yaml", "black-theme": "black-theme.yaml", - "Black-Velvet-Luxe": "black-velvet-luxe.yaml", + "BLACK/PINK Theme": "black-pink-theme.yaml", "blackai-theme": "blackai-theme.yaml", "blackamp": "blackamp.yaml", "blackberry": "blackberry.yaml", + "blackbird (🏴 blackbird → dusk)": "blackbird--blackbird-dusk.yaml", + "blackbird (🏴 blackbird → midnight)": "blackbird--blackbird-midnight.yaml", "Blackboard Plus": "blackboard-plus.yaml", - "BlackCoffeeDark": "blackcoffeedark.yaml", + "BlackCoffee Dark": "blackcoffee-dark.yaml", "Blackdot": "blackdot.yaml", + "Blackforest (Everforest Dark)": "blackforest--everforest-dark.yaml", "BlackHighContrast": "blackhighcontrast.yaml", "BlackLite": "blacklite.yaml", "Blackout": "blackout.yaml", - "BLACKPINK": "blackpink.yaml", + "Blackroulette": "blackroulette.yaml", "BlackRoulette": "blackroulette.yaml", "blackula-theme": "blackula-theme.yaml", "Blacky": "blacky.yaml", @@ -772,14 +821,14 @@ "Blank Uchiha": "blank-uchiha.yaml", "Blank's Theme Reborn": "blank-s-theme-reborn.yaml", "Blazing": "blazing.yaml", + "Blazing Red": "blazing-red.yaml", + "blazydark": "blazydark.yaml", + "Blender mojo theme": "blender-mojo-theme.yaml", "Blender Mojo theme": "blender-mojo-theme.yaml", - "Blinds (Dark)": "blinds-dark.yaml", - "blink": "blink.yaml", - "blink-contrast": "blink-contrast.yaml", - "blink-light": "blink-light.yaml", + "Blinds Theme": "blinds-theme.yaml", "Blip Cursor VSCode Theme": "blip-cursor-vscode-theme.yaml", "Bloody Pie": "bloody-pie.yaml", - "Bloom 1.1.0": "bloom-1-1-0.yaml", + "bloom": "bloom.yaml", "BlooString": "bloostring.yaml", "Blossoms": "blossoms.yaml", "Blowington": "blowington.yaml", @@ -792,52 +841,48 @@ "Blue Jeans": "blue-jeans.yaml", "Blue Light Filter - Dark": "blue-light-filter-dark.yaml", "Blue Light Filter - Warm Dark": "blue-light-filter-warm-dark.yaml", - "Blue Light Theme": "blue-light-theme.yaml", + "Blue Light Theme (Blue Light Theme)": "blue-light-theme--blue-light-theme.yaml", "Blue Melon": "blue-melon.yaml", - "Blue Neon": "blue-neon.yaml", - "blue-color-theme": "blue-color-theme.yaml", - "Blue-Day": "blue-day.yaml", + "Blue Moves Theme": "blue-moves-theme.yaml", + "Blue Night (Blue-Day)": "blue-night--blue-day.yaml", + "Blue Night (Blue-Night)": "blue-night--blue-night.yaml", + "Blue Paint": "blue-paint.yaml", "blue-green-theme": "blue-green-theme.yaml", "Blue-Hacker Theme": "blue-hacker-theme.yaml", "blue-moves-color-theme": "blue-moves-color-theme.yaml", - "blue-moves-darker-color-theme": "blue-moves-darker-color-theme.yaml", - "Blue-Night": "blue-night.yaml", "Blueberry": "blueberry.yaml", "Blueberry dark theme": "blueberry-dark-theme.yaml", - "Blueberry Futuristic theme - Fork": "blueberry-futuristic-theme-fork.yaml", - "Blueberry Theme": "blueberry-theme.yaml", "bluebracket-theme": "bluebracket-theme.yaml", "BlueDark": "bluedark.yaml", "BlueGreenSpace": "bluegreenspace.yaml", "Bluelili-color-theme": "bluelili-color-theme.yaml", "BlueOrange": "blueorange.yaml", "Blueprint": "blueprint.yaml", - "Blueprint-Grid": "blueprint-grid.yaml", + "bluered": "bluered.yaml", "bluered-theme": "bluered-theme.yaml", "BlueSea": "bluesea.yaml", "BlueSlate": "blueslate.yaml", "BlueSpace": "bluespace.yaml", + "BlueSpace (Sober)": "bluespace--sober.yaml", "BlueSpace S": "bluespace-s.yaml", "BluespEXTER": "bluespexter.yaml", "BlueyOneDark": "blueyonedark.yaml", "Blufftheme": "blufftheme.yaml", "Bluish": "bluish.yaml", - "Bluloco Dark": "bluloco-dark.yaml", - "Bluloco Dark Italic": "bluloco-dark-italic.yaml", - "Bluloco Light Italic": "bluloco-light-italic.yaml", - "Blush Pink Enhanced Premium": "blush-pink-enhanced-premium.yaml", - "Blve": "blve.yaml", + "Bluloco Dark Muted W77": "bluloco-dark-muted-w77.yaml", + "Bluloco Dark Theme (Bluloco Dark)": "bluloco-dark-theme--bluloco-dark.yaml", + "Bluloco Light Theme": "bluloco-light-theme.yaml", + "Blurple": "blurple.yaml", + "Blush": "blush.yaml", + "Blve - a dark blue theme": "blve-a-dark-blue-theme.yaml", "bobascheme": "bobascheme.yaml", "bobojojo": "bobojojo.yaml", + "Bocchi-the-vscode-theme": "bocchi-the-vscode-theme.yaml", "Bocenago: Pradei": "bocenago-pradei.yaml", "Bogem's Night Owl": "bogem-s-night-owl.yaml", - "Bogster": "bogster.yaml", "Bohemian Dark": "bohemian-dark.yaml", "Bohemian Light": "bohemian-light.yaml", - "bold": "bold.yaml", - "bold-contrast": "bold-contrast.yaml", - "bold-light": "bold-light.yaml", - "bolsonaro theme": "bolsonaro-theme.yaml", + "BolsonaroDarkTheme": "bolsonarodarktheme.yaml", "Bombyx": "bombyx.yaml", "Bombyx Light": "bombyx-light.yaml", "bonfire": "bonfire.yaml", @@ -848,75 +893,71 @@ "Bootstrap Dark": "bootstrap-dark.yaml", "Bootstrap Light": "bootstrap-light.yaml", "Borderless Tokyo Night": "borderless-tokyo-night.yaml", - "Borders Blue": "borders-blue.yaml", - "Borders Dark": "borders-dark.yaml", - "Borders Darker": "borders-darker.yaml", - "Borealis": "borealis.yaml", + "Borders Dark (Borders Blue)": "borders-dark--borders-blue.yaml", + "Borders Dark (Borders Dark)": "borders-dark--borders-dark.yaml", + "Borders Dark (Borders Darker)": "borders-dark--borders-darker.yaml", + "Borealis night theme": "borealis-night-theme.yaml", + "borealis-theme": "borealis-theme.yaml", "BorealSharp": "borealsharp.yaml", "BOT2B": "bot2b.yaml", - "Botany": "botany.yaml", - "botany-color-theme": "botany-color-theme.yaml", + "Botany Theme": "botany-theme.yaml", "bougainvillea": "bougainvillea.yaml", "Boundless": "boundless.yaml", "bouquet": "bouquet.yaml", + "Bouquet": "bouquet.yaml", "BoxLang Dark (Neon)": "boxlang-dark-neon.yaml", - "boxuk": "boxuk.yaml", - "boxuk-contrast": "boxuk-contrast.yaml", - "boxuk-light": "boxuk-light.yaml", "BracketHive Theme": "brackethive-theme.yaml", - "brave": "brave.yaml", - "brave-contrast": "brave-contrast.yaml", - "brave-light": "brave-light.yaml", + "Braver's Solarized": "braver-s-solarized.yaml", "Breath2Ripoff": "breath2ripoff.yaml", "Breeze": "breeze.yaml", "Brew Theme": "brew-theme.yaml", - "Brid Purple Garden Dark": "brid-purple-garden-dark.yaml", - "Brid Purple Garden Light": "brid-purple-garden-light.yaml", + "Brid · Purple (Brid Purple Garden Dark)": "brid-purple--brid-purple-garden-dark.yaml", + "Brid · Purple (Brid Purple Garden Light)": "brid-purple--brid-purple-garden-light.yaml", "briggitehelm": "briggitehelm.yaml", - "Bright Colors Blue": "bright-colors-blue.yaml", + "Bright Colors": "bright-colors.yaml", "Bright Lights": "bright-lights.yaml", + "Brigitte Helm": "brigitte-helm.yaml", "britecore": "britecore.yaml", "British Racing Green Theme": "british-racing-green-theme.yaml", "Brogrammer Plus": "brogrammer-plus.yaml", "Broken Dreams Blue": "broken-dreams-blue.yaml", "Broken Dreams Purple": "broken-dreams-purple.yaml", + "Broly-theme": "broly-theme.yaml", "Bromium": "bromium.yaml", - "Brownhu": "brownhu.yaml", "Brownista": "brownista.yaml", "bruno's wet dream": "bruno-s-wet-dream.yaml", "BrutalCode": "brutalcode.yaml", "BTS Borahae": "bts-borahae.yaml", "BTV Dark": "btv-dark.yaml", - "Bubba Kush v1": "bubba-kush-v1.yaml", "Bubble Theme": "bubble-theme.yaml", "Bubblegum": "bubblegum.yaml", "Bubblegum Milkshake": "bubblegum-milkshake.yaml", "bubblegum-color-theme": "bubblegum-color-theme.yaml", "bubbleGumTheme": "bubblegumtheme.yaml", - "BUBY-color-theme": "buby-color-theme.yaml", + "buby": "buby.yaml", "buddha - a super minimal theme for vscode": "buddha-a-super-minimal-theme-for-vscode.yaml", "Budha": "budha.yaml", "Budokan": "budokan.yaml", "Bugged GPU": "bugged-gpu.yaml", "Buhtig": "buhtig.yaml", + "Bulbul Theme": "bulbul-theme.yaml", "Bullish Theme": "bullish-theme.yaml", "Bumblebee": "bumblebee.yaml", "Burnt Chestnut": "burnt-chestnut.yaml", "Burple Dark": "burple-dark.yaml", "BusbyVSCode": "busbyvscode.yaml", "Bushland": "bushland.yaml", + "Butrin Theme": "butrin-theme.yaml", "Butrin-Theme": "butrin-theme.yaml", - "Butter green - Fork": "butter-green-fork.yaml", + "Butter": "butter.yaml", "Buttercawfee": "buttercawfee.yaml", "Bynawers": "bynawers.yaml", "ByteGlow": "byteglow.yaml", "ByteNight": "bytenight.yaml", - "C-Carbon-6": "c-carbon-6.yaml", "c.e.o": "c-e-o.yaml", - "C/C++ Theme": "c-c-theme.yaml", - "C# Dracula": "c-dracula.yaml", + "C/C++ Theme (C/C++ Theme)": "c-c-theme--c-c-theme.yaml", "C0V3R": "c0v3r.yaml", - "Cabalyon Theme": "cabalyon-theme.yaml", + "Cabalyon": "cabalyon.yaml", "Cadet Dark Gray": "cadet-dark-gray.yaml", "Cadet Medium Gray": "cadet-medium-gray.yaml", "Café Warmth": "caf-warmth.yaml", @@ -927,143 +968,137 @@ "CAL-4700": "cal-4700.yaml", "calabaza": "calabaza.yaml", "𝐂𝐚𝐥𝐜𝐢𝐮𝐦º❍。⊹・゚✧": ".yaml", - "Calm Dark": "calm-dark.yaml", - "Calm Days, Sober Nights - Day": "calm-days-sober-nights-day.yaml", - "Calm Days, Sober Nights - Day (Sky)": "calm-days-sober-nights-day-sky.yaml", - "Calm Days, Sober Nights - Night": "calm-days-sober-nights-night.yaml", - "Calm Days, Sober Nights - Night (Sky)": "calm-days-sober-nights-night-sky.yaml", - "Calm Down Color Theme": "calm-down-color-theme.yaml", - "Calm Light": "calm-light.yaml", + "Calm Days, Sober Nights (Calm Days, Sober Nights - Day (Sky))": "calm-days-sober-nights-calm-days-sober-nights-day-sky.yaml", + "Calm Days, Sober Nights (Calm Days, Sober Nights - Day)": "calm-days-sober-nights--calm-days-sober-nights-day.yaml", + "Calm Days, Sober Nights (Calm Days, Sober Nights - Night (Sky))": "calm-days-sober-nights-calm-days-sober-nights-night-sky.yaml", + "Calm Days, Sober Nights (Calm Days, Sober Nights - Night)": "calm-days-sober-nights--calm-days-sober-nights-night.yaml", "Calm Ocean": "calm-ocean.yaml", "Calm Teal - Balance & Clarity": "calm-teal-balance-clarity.yaml", "Calm Teal High Contrast - Balance & Clarity": "calm-teal-high-contrast-balance-clarity.yaml", "Calm Teal Light - Balance & Clarity": "calm-teal-light-balance-clarity.yaml", "Calm Vision": "calm-vision.yaml", + "calm-down-theme": "calm-down-theme.yaml", "Calming Theme": "calming-theme.yaml", "calming-coding-dark-theme": "calming-coding-dark-theme.yaml", "calmnight": "calmnight.yaml", - "Calmppuccin Frappe": "calmppuccin-frappe.yaml", - "Calmppuccin Latte": "calmppuccin-latte.yaml", - "Calmppuccin Macchiato": "calmppuccin-macchiato.yaml", - "Calmppuccin Mocha": "calmppuccin-mocha.yaml", - "Calmppuccin Nitro-cold-brew": "calmppuccin-nitro-cold-brew.yaml", - "Calmppuccin Oledppuccin": "calmppuccin-oledppuccin.yaml", + "Calmppuccin (Calmppuccin Frappe)": "calmppuccin--calmppuccin-frappe.yaml", + "Calmppuccin (Calmppuccin Latte)": "calmppuccin--calmppuccin-latte.yaml", + "Calmppuccin (Calmppuccin Macchiato)": "calmppuccin--calmppuccin-macchiato.yaml", + "Calmppuccin (Calmppuccin Mocha)": "calmppuccin--calmppuccin-mocha.yaml", + "Calmppuccin (Calmppuccin Nitro-cold-brew)": "calmppuccin--calmppuccin-nitro-cold-brew.yaml", + "Calmppuccin (Calmppuccin Oledppuccin)": "calmppuccin--calmppuccin-oledppuccin.yaml", "Calmshade": "calmshade.yaml", - "camo dark": "camo-dark.yaml", + "camo": "camo.yaml", "campbell": "campbell.yaml", "Camula": "camula.yaml", "Camula Moon": "camula-moon.yaml", "Camula Sun": "camula-sun.yaml", "Candle Theme": "candle-theme.yaml", "Candy Blue": "candy-blue.yaml", - "Candy Pine": "candy-pine.yaml", + "Candý Pine (Candy Pine)": "cand-pine--candy-pine.yaml", "Candy Purple": "candy-purple.yaml", "Candy Red": "candy-red.yaml", + "Candy Shop Eclipse": "candy-shop-eclipse.yaml", "Candy-Shop-Eclipse": "candy-shop-eclipse.yaml", "Canonic Theme": "canonic-theme.yaml", "Cape Town Nights": "cape-town-nights.yaml", "Capitola": "capitola.yaml", "Capy UI": "capy-ui.yaml", "Caramel": "caramel.yaml", - "Carbon": "carbon.yaml", - "Carbon Code Amber Dark": "carbon-code-amber-dark.yaml", - "Carbon Code Amber Light": "carbon-code-amber-light.yaml", - "Carbon Code Crimson Dark": "carbon-code-crimson-dark.yaml", - "Carbon Code Crimson Light": "carbon-code-crimson-light.yaml", - "Carbon Code Dark": "carbon-code-dark.yaml", - "Carbon Code Emerald Dark": "carbon-code-emerald-dark.yaml", - "Carbon Code Emerald Light": "carbon-code-emerald-light.yaml", - "Carbon Code Light": "carbon-code-light.yaml", - "Carbon Code Rose Dark": "carbon-code-rose-dark.yaml", - "Carbon Code Rose Light": "carbon-code-rose-light.yaml", + "Carbon Candy (carbon-candy-anthracite)": "carbon-candy--carbon-candy-anthracite.yaml", + "Carbon Candy (carbon-candy-aurora)": "carbon-candy--carbon-candy-aurora.yaml", + "Carbon Candy (carbon-candy-bee)": "carbon-candy--carbon-candy-bee.yaml", + "Carbon Candy (carbon-candy-carbon)": "carbon-candy--carbon-candy-carbon.yaml", + "Carbon Candy (carbon-candy-dark)": "carbon-candy--carbon-candy-dark.yaml", + "Carbon Candy (carbon-candy-obsidian)": "carbon-candy--carbon-candy-obsidian.yaml", + "Carbon Candy (carbon-candy-palenight)": "carbon-candy--carbon-candy-palenight.yaml", + "Carbon Code Theme (Carbon Code Amber Dark)": "carbon-code-theme--carbon-code-amber-dark.yaml", + "Carbon Code Theme (Carbon Code Amber Light)": "carbon-code-theme--carbon-code-amber-light.yaml", + "Carbon Code Theme (Carbon Code Crimson Dark)": "carbon-code-theme--carbon-code-crimson-dark.yaml", + "Carbon Code Theme (Carbon Code Crimson Light)": "carbon-code-theme--carbon-code-crimson-light.yaml", + "Carbon Code Theme (Carbon Code Dark)": "carbon-code-theme--carbon-code-dark.yaml", + "Carbon Code Theme (Carbon Code Emerald Dark)": "carbon-code-theme--carbon-code-emerald-dark.yaml", + "Carbon Code Theme (Carbon Code Emerald Light)": "carbon-code-theme--carbon-code-emerald-light.yaml", + "Carbon Code Theme (Carbon Code Light)": "carbon-code-theme--carbon-code-light.yaml", + "Carbon Code Theme (Carbon Code Rose Dark)": "carbon-code-theme--carbon-code-rose-dark.yaml", + "Carbon Code Theme (Carbon Code Rose Light)": "carbon-code-theme--carbon-code-rose-light.yaml", + "Carbon Code Theme (sazardev)": "carbon-code-theme--sazardev.yaml", "Carbon Design System Theme": "carbon-design-system-theme.yaml", "Carbon One": "carbon-one.yaml", - "Carbon React Color Theme": "carbon-react-color-theme.yaml", - "Carbon React Color Theme - Maya": "carbon-react-color-theme-maya.yaml", - "Carbon React Color Theme - Maya Black": "carbon-react-color-theme-maya-black.yaml", - "carbon-candy-anthracite": "carbon-candy-anthracite.yaml", - "carbon-candy-aurora": "carbon-candy-aurora.yaml", - "carbon-candy-bee": "carbon-candy-bee.yaml", - "carbon-candy-carbon": "carbon-candy-carbon.yaml", - "carbon-candy-dark": "carbon-candy-dark.yaml", - "carbon-candy-obsidian": "carbon-candy-obsidian.yaml", - "carbon-candy-palenight": "carbon-candy-palenight.yaml", + "Carbon Theme": "carbon-theme.yaml", "carbonfox": "carbonfox.yaml", "Carbonfox": "carbonfox.yaml", "carbonight": "carbonight.yaml", "Carbonight": "carbonight.yaml", "Carbonight Dusk": "carbonight-dusk.yaml", "Carbonight Midnight": "carbonight-midnight.yaml", - "carbonight-contrast": "carbonight-contrast.yaml", - "carbonight-light": "carbonight-light.yaml", "Caret (light)": "caret-light.yaml", "Carex Dark": "carex-dark.yaml", "Carex High Contrast Dark": "carex-high-contrast-dark.yaml", "Carex Light": "carex-light.yaml", "Casa": "casa.yaml", "Casino Royal": "casino-royal.yaml", - "Cassieye Dark": "cassieye-dark.yaml", - "Cassieye Light": "cassieye-light.yaml", "Cat_Pink": "cat-pink.yaml", "Cat_Pulper": "cat-pulper.yaml", "Cat_Sleep-color-theme": "cat-sleep-color-theme.yaml", - "Catalyst": "catalyst.yaml", - "Catalyst Light": "catalyst-light.yaml", "cathayTrial": "cathaytrial.yaml", "Catppuccin Dark": "catppuccin-dark.yaml", "Catppuccin Dark Pro": "catppuccin-dark-pro.yaml", - "Catppuccin Frappé": "catppuccin-frapp.yaml", - "Catppuccin Latte": "catppuccin-latte.yaml", - "Catppuccin Macchiato": "catppuccin-macchiato.yaml", - "Catppuccin Mocha": "catppuccin-mocha.yaml", - "Catppuccin Monokai Frappe": "catppuccin-monokai-frappe.yaml", - "Catppuccin Monokai Latte": "catppuccin-monokai-latte.yaml", - "Catppuccin Monokai Macchiato": "catppuccin-monokai-macchiato.yaml", - "Catppuccin Monokai Mocha": "catppuccin-monokai-mocha.yaml", + "Catppuccin Dark Theme": "catppuccin-dark-theme.yaml", + "Catppuccin for VSCode (Catppuccin Frappé)": "catppuccin-for-vscode--catppuccin-frapp.yaml", + "Catppuccin for VSCode (Catppuccin Latte)": "catppuccin-for-vscode--catppuccin-latte.yaml", + "Catppuccin for VSCode (Catppuccin Macchiato)": "catppuccin-for-vscode--catppuccin-macchiato.yaml", + "Catppuccin for VSCode (Catppuccin Mocha)": "catppuccin-for-vscode--catppuccin-mocha.yaml", "Catthode": "catthode.yaml", - "ccat": "ccat.yaml", + "cave": "cave.yaml", + "CDS for vscode": "cds-for-vscode.yaml", + "CDS for vscode (Vanilla)": "cds-for-vscode--vanilla.yaml", "cebola-theme": "cebola-theme.yaml", "Celadon Theme": "celadon-theme.yaml", - "Celestial": "celestial.yaml", - "celestial-charm-theme": "celestial-charm-theme.yaml", + "Celestial Theme (High Contrast)": "celestial-theme--high-contrast.yaml", "Ceramic Space": "ceramic-space.yaml", "cerydra": "cerydra.yaml", + "Cerydra": "cerydra.yaml", "cfl-one": "cfl-one.yaml", "Cha Thai": "cha-thai.yaml", - "Chai Light": "chai-light.yaml", + "chai theme (Chai Light)": "chai-theme--chai-light.yaml", + "chai theme (Dark Chai)": "chai-theme--dark-chai.yaml", "Chainroot": "chainroot.yaml", - "Chalk": "chalk.yaml", + "Chalk Theme": "chalk-theme.yaml", + "chalkish": "chalkish.yaml", "Chalkish": "chalkish.yaml", "Charcoal": "charcoal.yaml", "CHARLI Health Dark": "charli-health-dark.yaml", "CHARLI Health Light": "charli-health-light.yaml", "Charmed Dark": "charmed-dark.yaml", + "ChatGP-Theme": "chatgp-theme.yaml", "ChatGPT Theme": "chatgpt-theme.yaml", - "cheese n all": "cheese-n-all.yaml", + "chee themes": "chee-themes.yaml", "Cheesewaffle Blue": "cheesewaffle-blue.yaml", - "Cheetha Green": "cheetha-green.yaml", + "CheethaTheme": "cheethatheme.yaml", "Chelsea Pride": "chelsea-pride.yaml", "Chelsea Pride Away": "chelsea-pride-away.yaml", - "Cherry": "cherry.yaml", - "Cherry Blossom Airy": "cherry-blossom-airy.yaml", - "Cherry Blossom Breeze": "cherry-blossom-breeze.yaml", - "Cherry Blossom Dark": "cherry-blossom-dark.yaml", - "Cherry Blossom Dark Reflection": "cherry-blossom-dark-reflection.yaml", - "Cherry Blossom Dark Vivid": "cherry-blossom-dark-vivid.yaml", - "Cherry Blossom Dimmed": "cherry-blossom-dimmed.yaml", - "Cherry Blossom Dimmed Dusk": "cherry-blossom-dimmed-dusk.yaml", - "Cherry Blossom Night": "cherry-blossom-night.yaml", - "Cherry Blossom Night Harmony": "cherry-blossom-night-harmony.yaml", - "Cherry Blossom Osaka": "cherry-blossom-osaka.yaml", - "Cherry Blossom Osaka Light": "cherry-blossom-osaka-light.yaml", - "Cherry Blossom Sky Vibrant": "cherry-blossom-sky-vibrant.yaml", - "Cherry Blossom Spring": "cherry-blossom-spring.yaml", - "Cherry Blossom Twilight": "cherry-blossom-twilight.yaml", - "Cherry Blossom Warm": "cherry-blossom-warm.yaml", + "Cherry (Cherry Midnight)": "cherry--cherry-midnight.yaml", + "Cherry (Cherry)": "cherry--cherry.yaml", + "Cherry Blossom": "cherry-blossom.yaml", + "Cherry Blossom Theme (Cherry Blossom Airy)": "cherry-blossom-theme--cherry-blossom-airy.yaml", + "Cherry Blossom Theme (Cherry Blossom Breeze)": "cherry-blossom-theme--cherry-blossom-breeze.yaml", + "Cherry Blossom Theme (Cherry Blossom Dark Reflection)": "cherry-blossom-theme--cherry-blossom-dark-reflection.yaml", + "Cherry Blossom Theme (Cherry Blossom Dark Vivid)": "cherry-blossom-theme--cherry-blossom-dark-vivid.yaml", + "Cherry Blossom Theme (Cherry Blossom Dark)": "cherry-blossom-theme--cherry-blossom-dark.yaml", + "Cherry Blossom Theme (Cherry Blossom Dimmed Dusk)": "cherry-blossom-theme--cherry-blossom-dimmed-dusk.yaml", + "Cherry Blossom Theme (Cherry Blossom Dimmed)": "cherry-blossom-theme--cherry-blossom-dimmed.yaml", + "Cherry Blossom Theme (Cherry Blossom Night Harmony)": "cherry-blossom-theme--cherry-blossom-night-harmony.yaml", + "Cherry Blossom Theme (Cherry Blossom Night)": "cherry-blossom-theme--cherry-blossom-night.yaml", + "Cherry Blossom Theme (Cherry Blossom Osaka Light)": "cherry-blossom-theme--cherry-blossom-osaka-light.yaml", + "Cherry Blossom Theme (Cherry Blossom Osaka)": "cherry-blossom-theme--cherry-blossom-osaka.yaml", + "Cherry Blossom Theme (Cherry Blossom Sky Vibrant)": "cherry-blossom-theme--cherry-blossom-sky-vibrant.yaml", + "Cherry Blossom Theme (Cherry Blossom Spring)": "cherry-blossom-theme--cherry-blossom-spring.yaml", + "Cherry Blossom Theme (Cherry Blossom Twilight)": "cherry-blossom-theme--cherry-blossom-twilight.yaml", + "Cherry Blossom Theme (Cherry Blossom Warm)": "cherry-blossom-theme--cherry-blossom-warm.yaml", "Cherry Delite": "cherry-delite.yaml", - "Cherry Midnight": "cherry-midnight.yaml", "Cherry Wild Theme": "cherry-wild-theme.yaml", - "cherryBlossom": "cherryblossom.yaml", + "cherry-delite": "cherry-delite.yaml", "Chiclete de uva | Theme": "chiclete-de-uva-theme.yaml", "Chilaquiles Rojos (Dark)": "chilaquiles-rojos-dark.yaml", "Chilaquiles Rojos (Light)": "chilaquiles-rojos-light.yaml", @@ -1071,32 +1106,39 @@ "Chilaquiles Verdes (Light)": "chilaquiles-verdes-light.yaml", "Chill Night Mode": "chill-night-mode.yaml", "chillhack": "chillhack.yaml", - "Chinolor": "chinolor.yaml", - "Chinolor Light": "chinolor-light.yaml", - "chocolate": "chocolate.yaml", - "chocolate-contrast": "chocolate-contrast.yaml", - "chocolate-dessert-theme": "chocolate-dessert-theme.yaml", - "chocolate-light": "chocolate-light.yaml", + "Chinolor Theme (Chinolor Light)": "chinolor-theme--chinolor-light.yaml", + "Chinolor Theme (Chinolor)": "chinolor-theme--chinolor.yaml", "CHPastel": "chpastel.yaml", "CHPastel Dark": "chpastel-dark.yaml", "CHPastel Light": "chpastel-light.yaml", "Chris Light": "chris-light.yaml", "ChrisCoding": "chriscoding.yaml", "christmas": "christmas.yaml", - "CHROMAHIN AMOLED": "chromahin-amoled.yaml", - "CHROMAHIN Dark": "chromahin-dark.yaml", - "CHROMAHIN Multi-color": "chromahin-multi-color.yaml", - "CHROMAHIN Soft": "chromahin-soft.yaml", + "Chroma Library (Deep Ocean)": "chroma-library--deep-ocean.yaml", + "Chroma Library (DNA Helix)": "chroma-library--dna-helix.yaml", + "Chroma Library (Electric Blue)": "chroma-library--electric-blue.yaml", + "Chroma Library (Midnight Purple)": "chroma-library--midnight-purple.yaml", + "Chroma Library (Neon Cyber)": "chroma-library--neon-cyber.yaml", + "Chroma Library (Neon Synthwave)": "chroma-library--neon-synthwave.yaml", + "Chroma Library (Plasma Pink)": "chroma-library--plasma-pink.yaml", + "Chroma Library (Quantum Green)": "chroma-library--quantum-green.yaml", + "Chroma Library (Solar Flare)": "chroma-library--solar-flare.yaml", + "Chroma Library (Toxic Waste)": "chroma-library--toxic-waste.yaml", + "CHROMAHIN (CHROMAHIN AMOLED)": "chromahin--chromahin-amoled.yaml", + "CHROMAHIN (CHROMAHIN Dark)": "chromahin--chromahin-dark.yaml", + "CHROMAHIN (CHROMAHIN Multi-color)": "chromahin--chromahin-multi-color.yaml", + "CHROMAHIN (CHROMAHIN Soft)": "chromahin--chromahin-soft.yaml", "Chromatic Dark": "chromatic-dark.yaml", "Chromatic Light": "chromatic-light.yaml", "Chrome DevTools": "chrome-devtools.yaml", - "chrome-green": "chrome-green.yaml", "Chromodusk Classic": "chromodusk-classic.yaml", + "Chromodynamics V3 Theme": "chromodynamics-v3-theme.yaml", "Chronica Pink": "chronica-pink.yaml", "Chronokai": "chronokai.yaml", "Cielo": "cielo.yaml", "Cinnamon": "cinnamon.yaml", - "Cinnamonroll": "cinnamonroll.yaml", + "Cinnamoroll | DARK THEME": "cinnamoroll-dark-theme.yaml", + "Cinnamoroll | LIGHT THEME": "cinnamoroll-light-theme.yaml", "citric secret": "citric-secret.yaml", "City Fog": "city-fog.yaml", "ckai-color-theme": "ckai-color-theme.yaml", @@ -1107,46 +1149,53 @@ "Clarity Design System - Dark": "clarity-design-system-dark.yaml", "Clarity Design System - Light": "clarity-design-system-light.yaml", "Claro": "claro.yaml", - "Classic Essential Colors (Blue)": "classic-essential-colors-blue.yaml", + "Clasic Harmonized": "clasic-harmonized.yaml", + "Classic macOS Theme (Zed Port) (macOS Classic Dark)": "classic-macos-theme-zed-port--macos-classic-dark.yaml", + "Classic macOS Theme (Zed Port) (macOS Classic Light)": "classic-macos-theme-zed-port--macos-classic-light.yaml", + "Classic Terminal Revisited": "classic-terminal-revisited.yaml", "classic_terminal": "classic-terminal.yaml", - "Claude Code Dark": "claude-code-dark.yaml", - "Claude Code Dark High Contrast": "claude-code-dark-high-contrast.yaml", - "Claude Code Light": "claude-code-light.yaml", - "Claude Code Light High Contrast": "claude-code-light-high-contrast.yaml", - "Claude Dark": "claude-dark.yaml", - "Claude Dark (Anthropic)": "claude-dark-anthropic.yaml", - "Claude Dark High Contrast": "claude-dark-high-contrast.yaml", - "Claude Dark Italic": "claude-dark-italic.yaml", - "Claude Light": "claude-light.yaml", + "classicTheme": "classictheme.yaml", + "Claude - Anthropic Theme": "claude-anthropic-theme.yaml", + "Claude Code Theme (Claude Code Dark High Contrast)": "claude-code-theme--claude-code-dark-high-contrast.yaml", + "Claude Code Theme (Claude Code Dark)": "claude-code-theme--claude-code-dark.yaml", + "Claude Code Theme (Claude Code Light High Contrast)": "claude-code-theme--claude-code-light-high-contrast.yaml", + "Claude Code Theme (Claude Code Light)": "claude-code-theme--claude-code-light.yaml", "Claude Mode Dark": "claude-mode-dark.yaml", "Claude Mode Light": "claude-mode-light.yaml", + "Claude Theme by jnahian (Claude Dark)": "claude-theme-by-jnahian--claude-dark.yaml", + "Claude Theme by jnahian (Claude Light)": "claude-theme-by-jnahian--claude-light.yaml", + "Claude Theme for VS Code (Claude VSCode Dark Brand)": "claude-theme-for-vs-code--claude-vscode-dark-brand.yaml", + "Claude Theme for VS Code (Claude VSCode Light Brand)": "claude-theme-for-vs-code--claude-vscode-light-brand.yaml", + "Claude Theme for VS Code/Cursor/Windsurf (Claude Dark)": "claude-theme-for-vs-code-cursor-windsurf--claude-dark.yaml", + "Claude Theme for VS Code/Cursor/Windsurf (Claude Light)": "claude-theme-for-vs-code-cursor-windsurf--claude-light.yaml", "Claude Velvet Dark": "claude-velvet-dark.yaml", "Claude Velvet Light": "claude-velvet-light.yaml", - "Claude VSCode Dark Brand": "claude-vscode-dark-brand.yaml", - "Claude VSCode Light Brand": "claude-vscode-light-brand.yaml", + "Claude VSCode Theme (Claude Dark High Contrast)": "claude-vscode-theme--claude-dark-high-contrast.yaml", + "Claude VSCode Theme (Claude Dark)": "claude-vscode-theme--claude-dark.yaml", "Claude Warm Light": "claude-warm-light.yaml", "Clean Theme Halloween": "clean-theme-halloween.yaml", "Clean White": "clean-white.yaml", + "Clear (Clear Dark)": "clear--clear-dark.yaml", "Clear Dark": "clear-dark.yaml", "Cleo": "cleo.yaml", + "Cleo (_Dark)": "cleo--dark.yaml", "clesy-theme-dark": "clesy-theme-dark.yaml", + "ClickHere": "clickhere.yaml", + "clorest": "clorest.yaml", "Clorest": "clorest.yaml", - "CloudMint Night": "cloudmint-night.yaml", "clrsync": "clrsync.yaml", "CLU Tron Legacy": "clu-tron-legacy.yaml", - "Clubcleaver Functional Matrix": "clubcleaver-functional-matrix.yaml", + "Clymate Themes for VS Code": "clymate-themes-for-vs-code.yaml", "clymate-monochrome-vsdark.color-theme": "clymate-monochrome-vsdark-color-theme.yaml", "clymate-pop-neon-vsdark.color-theme": "clymate-pop-neon-vsdark-color-theme.yaml", "clymate-vintage-vsdark.color-theme": "clymate-vintage-vsdark-color-theme.yaml", - "clymate-vsdark.color-theme": "clymate-vsdark-color-theme.yaml", "CMYK colourrrs": "cmyk-colourrrs.yaml", "Coal": "coal.yaml", - "Cobalt Next": "cobalt-next.yaml", - "Cobalt Next Dark": "cobalt-next-dark.yaml", - "Cobalt-Ice": "cobalt-ice.yaml", + "Cobalt Next (Cobalt Next Dark)": "cobalt-next--cobalt-next-dark.yaml", + "Cobalt Next (Cobalt Next)": "cobalt-next--cobalt-next.yaml", "Cobalt2": "cobalt2.yaml", "Cobalt3Dark": "cobalt3dark.yaml", - "Cobalt9": "cobalt9.yaml", + "Cobalt9 Theme (Cobalt9)": "cobalt9-theme--cobalt9.yaml", "Coco": "coco.yaml", "coco-theme": "coco-theme.yaml", "coco-theme-AU-palette": "coco-theme-au-palette.yaml", @@ -1166,128 +1215,176 @@ "coconut": "coconut.yaml", "coconut dark": "coconut-dark.yaml", "coconut dark+": "coconut-dark.yaml", + "Coconut Theme (coconut dark)": "coconut-theme--coconut-dark.yaml", "Coda": "coda.yaml", "Code Glasses - Vision Pro": "code-glasses-vision-pro.yaml", "Code Hunter - MagNum Purple": "code-hunter-magnum-purple.yaml", "Code Hunter - Spruce Wind": "code-hunter-spruce-wind.yaml", "Code Kraken ™ Theme": "code-kraken-theme.yaml", + "Code Like A Rainbow (Code_Like_a_Rainbow)": "code-like-a-rainbow--code-like-a-rainbow.yaml", + "Code Like A Rainbow (Untitled)": "code-like-a-rainbow--untitled.yaml", "Code Muse Light": "code-muse-light.yaml", - "Code Red": "code-red.yaml", - "Code Sandbox Tribute": "code-sandbox-tribute.yaml", - "Code With Colors Pro - Midnight Purple": "code-with-colors-pro-midnight-purple.yaml", - "Code_Like_a_Rainbow": "code-like-a-rainbow.yaml", + "Code With Colors Pro (Code With Colors Pro - Midnight Purple)": "code-with-colors-pro--code-with-colors-pro-midnight-purple.yaml", + "Code With Colors Pro (Theme For Codes - Dark)": "code-with-colors-pro--theme-for-codes-dark.yaml", + "Code With Colors Pro (Theme For Codes - Light)": "code-with-colors-pro--theme-for-codes-light.yaml", "Code-Dadi Dark": "code-dadi-dark.yaml", "Code-Dadi Lighter": "code-dadi-lighter.yaml", "Code33": "code33.yaml", "Codeastro Dark": "codeastro-dark.yaml", - "codebabel-theme-dark": "codebabel-theme-dark.yaml", - "codecourse": "codecourse.yaml", - "codecourse-contrast": "codecourse-contrast.yaml", - "codecourse-light": "codecourse-light.yaml", + "CodeBabel Theme Nefarious VantaBlack 💀🖤": "codebabel-theme-nefarious-vantablack.yaml", + "CodeBabel theme ObscureOrange 🔥🎃": "codebabel-theme-obscureorange.yaml", + "codebabel-theme-drk": "codebabel-theme-drk.yaml", "Codehesion Dark Theme": "codehesion-dark-theme.yaml", "Codehesion Light Theme": "codehesion-light-theme.yaml", - "Codeify dark berry color theme": "codeify-dark-berry-color-theme.yaml", + "Codeify dark theme (Codeify dark berry color theme)": "codeify-dark-theme--codeify-dark-berry-color-theme.yaml", + "Codeify dark theme (Codiefy optimas prime color theme)": "codeify-dark-theme--codiefy-optimas-prime-color-theme.yaml", "CodeItLive": "codeitlive.yaml", "CodeItLive - Light": "codeitlive-light.yaml", "Codelabs Inspired": "codelabs-inspired.yaml", + "codellsby-nightowl": "codellsby-nightowl.yaml", "Codellsby-NightOwl": "codellsby-nightowl.yaml", - "Codely Dark Theme": "codely-dark-theme.yaml", - "CodeMe": "codeme.yaml", + "Codely Dark Pro": "codely-dark-pro.yaml", + "Codely Theme": "codely-theme.yaml", + "CodeMe Theme (Ash)": "codeme-theme--ash.yaml", + "CodeMe Theme (AyuDark)": "codeme-theme--ayudark.yaml", + "CodeMe Theme (CodeMe)": "codeme-theme--codeme.yaml", + "CodeMe Theme (GoogleDark)": "codeme-theme--googledark.yaml", + "CodeMe Theme (NordicDark)": "codeme-theme--nordicdark.yaml", + "CodeMe Theme (Omni)": "codeme-theme--omni.yaml", + "CodeMe Theme (Tokyo)": "codeme-theme--tokyo.yaml", "Codeo": "codeo.yaml", "Codeo Light": "codeo-light.yaml", "codepdia": "codepdia.yaml", + "CodePen Nights": "codepen-nights.yaml", "CodePen-Nights": "codepen-nights.yaml", "CodePixel Modern Dark": "codepixel-modern-dark.yaml", "Coder Coder Dark Redefined": "coder-coder-dark-redefined.yaml", - "Coder Vai Forest": "coder-vai-forest.yaml", - "Coder Vai Light": "coder-vai-light.yaml", - "Coder Vai Ocean": "coder-vai-ocean.yaml", - "Coder Vai Purple Haze": "coder-vai-purple-haze.yaml", + "Coder Vai - Multi-Language Code Runner (Coder Vai Forest)": "coder-vai-multi-language-code-runner--coder-vai-forest.yaml", + "Coder Vai - Multi-Language Code Runner (Coder Vai Light)": "coder-vai-multi-language-code-runner--coder-vai-light.yaml", + "Coder Vai - Multi-Language Code Runner (Coder Vai Ocean)": "coder-vai-multi-language-code-runner--coder-vai-ocean.yaml", + "Coder Vai - Multi-Language Code Runner (Coder Vai Purple Haze)": "coder-vai-multi-language-code-runner--coder-vai-purple-haze.yaml", "Coder30": "coder30.yaml", - "CodeSandbox Theme": "codesandbox-theme.yaml", - "CodeSchool2 Minimal": "codeschool2-minimal.yaml", - "Codesso Unison (Beta)": "codesso-unison-beta.yaml", + "CodeSandbox Theme - github.com/isneru": "codesandbox-theme-github-com-isneru.yaml", + "codesandbox-tribute": "codesandbox-tribute.yaml", + "Codesso": "codesso.yaml", "CodeTest": "codetest.yaml", + "Codethread Black": "codethread-black.yaml", "codethread-black": "codethread-black.yaml", + "codeuccino": "codeuccino.yaml", "Codeuccino": "codeuccino.yaml", - "CodeVibe - Epic Theme": "codevibe-epic-theme.yaml", + "CodeVibe Themes": "codevibe-themes.yaml", "Codewithme - Dark CMYK": "codewithme-dark-cmyk.yaml", "Codewithme-codex": "codewithme-codex.yaml", - "Codewithsg Dark Theme": "codewithsg-dark-theme.yaml", + "codewithsg Dark": "codewithsg-dark.yaml", "CodeXFlow Themes": "codexflow-themes.yaml", - "Codiefy optimas prime color theme": "codiefy-optimas-prime-color-theme.yaml", "coding-light-theme": "coding-light-theme.yaml", "CodingWish": "codingwish.yaml", "cods": "cods.yaml", + "Cody": "cody.yaml", "coelhiN-Smooth": "coelhin-smooth.yaml", "coelhiN-Violet": "coelhin-violet.yaml", - "coffee": "coffee.yaml", - "coffee-contrast": "coffee-contrast.yaml", - "coffee-light": "coffee-light.yaml", + "Coffee Break Theme (day)": "coffee-break-theme--day.yaml", + "Coffee Break Theme (night)": "coffee-break-theme--night.yaml", + "Coffee Dark Theme (Color Coffee Dark)": "coffee-dark-theme--color-coffee-dark.yaml", "coffeespace": "coffeespace.yaml", "CoffeyScript Theme": "coffeyscript-theme.yaml", "Cognac": "cognac.yaml", - "Coimbrox Minimalist Panda": "coimbrox-minimalist-panda.yaml", - "CoimbroxThmeDark": "coimbroxthmedark.yaml", + "Coimbrox Panda Theme": "coimbrox-panda-theme.yaml", + "Coimbrox Theme": "coimbrox-theme.yaml", "Cold Night": "cold-night.yaml", "Cold Python Theme": "cold-python-theme.yaml", - "Coldark - Cold": "coldark-cold.yaml", - "Coldark - Dark": "coldark-dark.yaml", - "Collapse": "collapse.yaml", - "Color Coffee Dark": "color-coffee-dark.yaml", - "Color contrast": "color-contrast.yaml", - "Color Sea Blue": "color-sea-blue.yaml", - "Color Sea Gray": "color-sea-gray.yaml", - "Color Sea Green": "color-sea-green.yaml", - "Color Sea Orange": "color-sea-orange.yaml", - "Color Sea Purple": "color-sea-purple.yaml", - "Color Sea Red": "color-sea-red.yaml", - "Color Sea Yellow": "color-sea-yellow.yaml", + "Coldark (Coldark - Cold)": "coldark--coldark-cold.yaml", + "Coldark (Coldark - Dark)": "coldark--coldark-dark.yaml", + "collotheme": "collotheme.yaml", + "Color Contrast Theme (Color contrast)": "color-contrast-theme--color-contrast.yaml", + "Color Sea (Color Sea Blue)": "color-sea--color-sea-blue.yaml", + "Color Sea (Color Sea Gray)": "color-sea--color-sea-gray.yaml", + "Color Sea (Color Sea Green)": "color-sea--color-sea-green.yaml", + "Color Sea (Color Sea Orange)": "color-sea--color-sea-orange.yaml", + "Color Sea (Color Sea Purple)": "color-sea--color-sea-purple.yaml", + "Color Sea (Color Sea Red)": "color-sea--color-sea-red.yaml", + "Color Sea (Color Sea Yellow)": "color-sea--color-sea-yellow.yaml", + "Color Theme (Cyan Dark)": "color-theme--cyan-dark.yaml", + "Color Wheel": "color-wheel.yaml", "Colora": "colora.yaml", - "Colorbars: blue": "colorbars-blue.yaml", - "Colorbars: green": "colorbars-green.yaml", - "Colorbars: orange": "colorbars-orange.yaml", - "Colorbars: purple": "colorbars-purple.yaml", - "Colored Desert": "colored-desert.yaml", + "Colorado Theme (Theme³ Dark)": "colorado-theme--theme-dark.yaml", + "Colorado Theme (Theme³)": "colorado-theme--theme.yaml", + "Colored Desert (Colored Desert)": "colored-desert--colored-desert.yaml", + "Colored Theme (red-color-theme)": "colored-theme--red-color-theme.yaml", "Colorful Carbon": "colorful-carbon.yaml", "Colorful Carbon Dark Knight": "colorful-carbon-dark-knight.yaml", - "Colorful Light": "colorful-light.yaml", - "Colorful-Dark - Fork": "colorful-dark-fork.yaml", - "colorful-dark-theme": "colorful-dark-theme.yaml", + "Colorful dark, light and monochrome italic color themes pack (qqqoid light color)": "colorful-dark-light-and-monochrome-italic-color-themes-pack--qqqoid-light-color.yaml", + "Colorful Theme": "colorful-theme.yaml", + "Colorized Theme (1/3) (GitHub Dark Dimmed)": "colorized-theme-1-3--github-dark-dimmed.yaml", + "Colorized Theme (1/3) (GitHub Light Default)": "colorized-theme-1-3--github-light-default.yaml", + "Colorized Theme (1/3) (Kuroir Dark 01 Crimson)": "colorized-theme-1-3--kuroir-dark-01-crimson.yaml", + "Colorized Theme (1/3) (Kuroir Dark 02 Vermilion)": "colorized-theme-1-3--kuroir-dark-02-vermilion.yaml", + "Colorized Theme (1/3) (Kuroir Dark 03 Amber)": "colorized-theme-1-3--kuroir-dark-03-amber.yaml", + "Colorized Theme (1/3) (Kuroir Dark 04 Goldenrod)": "colorized-theme-1-3--kuroir-dark-04-goldenrod.yaml", + "Colorized Theme (1/3) (Kuroir Dark 06 Chartreuse)": "colorized-theme-1-3--kuroir-dark-06-chartreuse.yaml", + "Colorized Theme (1/3) (Kuroir Dark 07 Fern)": "colorized-theme-1-3--kuroir-dark-07-fern.yaml", + "Colorized Theme (1/3) (Kuroir Dark 08 Emerald)": "colorized-theme-1-3--kuroir-dark-08-emerald.yaml", + "Colorized Theme (1/3) (Kuroir Dark 09 Jade)": "colorized-theme-1-3--kuroir-dark-09-jade.yaml", + "Colorized Theme (1/3) (Kuroir Dark 11 Aqua)": "colorized-theme-1-3--kuroir-dark-11-aqua.yaml", + "Colorized Theme (1/3) (Kuroir Dark 14 Cerulean)": "colorized-theme-1-3--kuroir-dark-14-cerulean.yaml", + "Colorized Theme (1/3) (Kuroir Dark 15 Sky)": "colorized-theme-1-3--kuroir-dark-15-sky.yaml", + "Colorized Theme (1/3) (Kuroir Dark 18 Indigo)": "colorized-theme-1-3--kuroir-dark-18-indigo.yaml", + "Colorized Theme (1/3) (Kuroir Dark 20 Amethyst)": "colorized-theme-1-3--kuroir-dark-20-amethyst.yaml", + "Colorized Theme (1/3) (Kuroir Dark 21 Magenta)": "colorized-theme-1-3--kuroir-dark-21-magenta.yaml", + "Colorized Theme (1/3) (Kuroir Dark 22 Fuchsia)": "colorized-theme-1-3--kuroir-dark-22-fuchsia.yaml", + "Colorized Theme (1/3) (Kuroir Dark 23 Rose)": "colorized-theme-1-3--kuroir-dark-23-rose.yaml", + "Colorized Theme (1/3) (Kuroir Dark 24 Coral)": "colorized-theme-1-3--kuroir-dark-24-coral.yaml", + "Colorized Theme (1/3) (Kuroir Light 03 Amber)": "colorized-theme-1-3--kuroir-light-03-amber.yaml", + "Colorized Theme (1/3) (Kuroir Light 07 Fern)": "colorized-theme-1-3--kuroir-light-07-fern.yaml", + "Colorized Theme (1/3) (Kuroir Light 09 Jade)": "colorized-theme-1-3--kuroir-light-09-jade.yaml", + "Colorized Theme (1/3) (Kuroir Light 11 Aqua)": "colorized-theme-1-3--kuroir-light-11-aqua.yaml", + "Colorized Theme (1/3) (Kuroir Light 15 Sky)": "colorized-theme-1-3--kuroir-light-15-sky.yaml", + "Colorized Theme (1/3) (Kuroir Light 18 Indigo)": "colorized-theme-1-3--kuroir-light-18-indigo.yaml", + "Colorized Theme (1/3) (Kuroir Light 19 Violet)": "colorized-theme-1-3--kuroir-light-19-violet.yaml", + "Colorized Theme (1/3) (Kuroir Light 23 Rose)": "colorized-theme-1-3--kuroir-light-23-rose.yaml", + "Colorized Theme (1/3) (Kuroir Light 24 Coral)": "colorized-theme-1-3--kuroir-light-24-coral.yaml", + "colorizer": "colorizer.yaml", "Colorizer": "colorizer.yaml", "colors": "colors.yaml", - "colors.color-theme": "colors-color-theme.yaml", + "Colorsbars (Colorbars: blue)": "colorsbars--colorbars-blue.yaml", + "Colorsbars (Colorbars: green)": "colorsbars--colorbars-green.yaml", + "Colorsbars (Colorbars: orange)": "colorsbars--colorbars-orange.yaml", + "Colorsbars (Colorbars: purple)": "colorsbars--colorbars-purple.yaml", "ColorShift Material Pro": "colorshift-material-pro.yaml", "ColorShift Material Pro - Evening": "colorshift-material-pro-evening.yaml", "ColorShift Material Pro - Morning": "colorshift-material-pro-morning.yaml", - "Colorways - Cheers (Soft)": "colorways-cheers-soft.yaml", - "Columbina - Dark": "columbina-dark.yaml", - "Columbina - High Contrast": "columbina-high-contrast.yaml", + "Colorways Themes": "colorways-themes.yaml", + "columbina theme - genshin impact (Columbina - High Contrast)": "columbina-theme-genshin-impact--columbina-high-contrast.yaml", "comfy monokai": "comfy-monokai.yaml", "ComfyEyes": "comfyeyes.yaml", "commadoor": "commadoor.yaml", "commadoor dark": "commadoor-dark.yaml", "CommentsAreImportant": "commentsareimportant.yaml", - "Compline": "compline.yaml", - "component": "component.yaml", + "Community Material Theme (Community-Material-Theme-Darker-High-Contrast)": "community-material-theme--community-material-theme-darker-high-contrast.yaml", + "Community Material Theme (Community-Material-Theme-Darker)": "community-material-theme--community-material-theme-darker.yaml", + "Community Material Theme (Community-Material-Theme-Default)": "community-material-theme--community-material-theme-default.yaml", + "Community Material Theme (Community-Material-Theme-Lighter-High-Contrast)": "community-material-theme--community-material-theme-lighter-high-contrast.yaml", + "Community Material Theme (Community-Material-Theme-Lighter)": "community-material-theme--community-material-theme-lighter.yaml", + "Community Material Theme (Community-Material-Theme-Ocean)": "community-material-theme--community-material-theme-ocean.yaml", + "Community Material Theme (Community-Material-Theme-Palenight)": "community-material-theme--community-material-theme-palenight.yaml", + "Compact VS Code (Perry-the-platypus)": "compact-vs-code--perry-the-platypus.yaml", + "Compline (Compline)": "compline--compline.yaml", + "Compline (Lauds)": "compline--lauds.yaml", "comrade": "comrade.yaml", - "comrade-contrast": "comrade-contrast.yaml", "comrade-light": "comrade-light.yaml", - "Concoctis - Dark : Hard": "concoctis-dark-hard.yaml", - "Concoctis - Dark : Soft": "concoctis-dark-soft.yaml", - "Concoctis - Light : Hard": "concoctis-light-hard.yaml", - "Concoctis - Light : Soft": "concoctis-light-soft.yaml", "Concrete": "concrete.yaml", "Concrete Theme": "concrete-theme.yaml", - "Conifer Theme": "conifer-theme.yaml", + "Conifer Theme (Conifer Theme)": "conifer-theme--conifer-theme.yaml", + "Conifer Theme (Mist Theme)": "conifer-theme--mist-theme.yaml", + "Conifer Theme (Pine Cone Theme)": "conifer-theme--pine-cone-theme.yaml", "Consolvis Dark Theme": "consolvis-dark-theme.yaml", - "Contrast kai": "contrast-kai.yaml", + "Cool Cowboy Theme (Cowboy Theme)": "cool-cowboy-theme--cowboy-theme.yaml", "Cool Panda": "cool-panda.yaml", "Cool with a C": "cool-with-a-c.yaml", + "Cool-girls-theme": "cool-girls-theme.yaml", "Cooland": "cooland.yaml", - "coolnight-color-theme": "coolnight-color-theme.yaml", + "Coolnight Theme": "coolnight-theme.yaml", "CoolShine": "coolshine.yaml", - "Copper Dark": "copper-dark.yaml", "Corallike": "corallike.yaml", "Corbatita": "corbatita.yaml", "Corduroy": "corduroy.yaml", @@ -1296,170 +1393,157 @@ "Corporate Dark Theme": "corporate-dark-theme.yaml", "Cortex-theme": "cortex-theme.yaml", "Cosmic": "cosmic.yaml", - "Cosmic Dark": "cosmic-dark.yaml", - "Cosmic Decay": "cosmic-decay.yaml", - "Cosmic Gleam: Darkest": "cosmic-gleam-darkest.yaml", + "Cosmic Gleam": "cosmic-gleam.yaml", "Cosmic Iris": "cosmic-iris.yaml", + "Cosmic Pop Dark": "cosmic-pop-dark.yaml", "Cosmic Purple": "cosmic-purple.yaml", - "Cosmic Sea": "cosmic-sea.yaml", "Cosmical": "cosmical.yaml", "Cosmico": "cosmico.yaml", - "cosmicsarthak Dark": "cosmicsarthak-dark.yaml", - "cosmicsarthak Night Owl": "cosmicsarthak-night-owl.yaml", - "cosmicsarthak Red": "cosmicsarthak-red.yaml", - "cosmicsarthak-neon": "cosmicsarthak-neon.yaml", - "Cosmo": "cosmo.yaml", + "COSMO Theme": "cosmo-theme.yaml", "cosmos": "cosmos.yaml", "Cosmos Theme": "cosmos-theme.yaml", + "Cosy Orange Themes": "cosy-orange-themes.yaml", "Coucou Theme": "coucou-theme.yaml", "Couldpeak": "couldpeak.yaml", - "Cowboy Theme": "cowboy-theme.yaml", "Cozy Evenings": "cozy-evenings.yaml", "Cozy Mornings": "cozy-mornings.yaml", "CozySpace": "cozyspace.yaml", "CPA Lions": "cpa-lions.yaml", - "cr-night-theme": "cr-night-theme.yaml", + "cr-theme-night": "cr-theme-night.yaml", "Cr0wn_Gh0ul": "cr0wn-gh0ul.yaml", - "crackpot": "crackpot.yaml", - "crackpot-contrast": "crackpot-contrast.yaml", - "crackpot-light": "crackpot-light.yaml", "Crafty Theme Dark": "crafty-theme-dark.yaml", "CrazyDark": "crazydark.yaml", "Cream Charcoal": "cream-charcoal.yaml", "Creative Purple - Innovation & Imagination": "creative-purple-innovation-imagination.yaml", "Creative Purple Light - Innovation & Imagination": "creative-purple-light-innovation-imagination.yaml", "Crema": "crema.yaml", - "CRF Flamengo": "crf-flamengo.yaml", + "crf-flamengo-theme": "crf-flamengo-theme.yaml", "Crimson Sunset": "crimson-sunset.yaml", - "crisp": "crisp.yaml", - "crisp-contrast": "crisp-contrast.yaml", - "crisp-light": "crisp-light.yaml", - "Crow Dark": "crow-dark.yaml", + "Crow (Crow Dark)": "crow--crow-dark.yaml", "Crowveil - Ayu": "crowveil-ayu.yaml", - "crt": "crt.yaml", - "CRT 64": "crt-64.yaml", - "CRT Amber": "crt-amber.yaml", "CRT Apple": "crt-apple.yaml", "CRT AppleIIc": "crt-appleiic.yaml", - "CRT Blue": "crt-blue.yaml", - "CRT Green": "crt-green.yaml", "CRT Green1": "crt-green1.yaml", "CRT Green2": "crt-green2.yaml", - "CRT Red": "crt-red.yaml", + "CRT Themes (CRT 64)": "crt-themes--crt-64.yaml", + "CRT Themes (CRT Amber)": "crt-themes--crt-amber.yaml", + "CRT Themes (CRT Blue)": "crt-themes--crt-blue.yaml", + "CRT Themes (CRT Green)": "crt-themes--crt-green.yaml", + "CRT Themes (CRT Red)": "crt-themes--crt-red.yaml", "CRT-ALT": "crt-alt.yaml", - "Crypto": "crypto.yaml", - "Crystal-Quartz": "crystal-quartz.yaml", - "Crystaltine's Crystalline 4.1": "crystaltine-s-crystalline-4-1.yaml", - "Crystaltine's Crystalline 5.0": "crystaltine-s-crystalline-5-0.yaml", - "cs50-light-theme": "cs50-light-theme.yaml", + "Crystalline Theme (Crystaltine's Crystalline 4.1)": "crystalline-theme--crystaltine-s-crystalline-4-1.yaml", + "Crystalline Theme (Crystaltine's Crystalline 5.0)": "crystalline-theme--crystaltine-s-crystalline-5-0.yaml", + "cs50-theme-harvard": "cs50-theme-harvard.yaml", + "csr-blue": "csr-blue.yaml", "CSS Battle": "css-battle.yaml", "Cucumber - Dark": "cucumber-dark.yaml", "Cucumber - Light": "cucumber-light.yaml", - "Cupertino Dark": "cupertino-dark.yaml", - "Cupertino Light": "cupertino-light.yaml", + "Cupertino (Cupertino Dark)": "cupertino--cupertino-dark.yaml", + "Cupertino (Cupertino Light)": "cupertino--cupertino-light.yaml", "Curry Dark": "curry-dark.yaml", - "Cursor Dark Anysphere v0.0.1": "cursor-dark-anysphere-v0-0-1.yaml", - "Cursor Less Dark": "cursor-less-dark.yaml", - "Cursor Light": "cursor-light.yaml", - "Cursor Night Theme": "cursor-night-theme.yaml", - "Cursor Night Theme Soft": "cursor-night-theme-soft.yaml", - "Cursor Theme": "cursor-theme.yaml", - "Custom Theme": "custom-theme.yaml", + "Cursor Dark (Cursor Dark)": "cursor-dark--cursor-dark.yaml", + "Cursor Dark (Cursor Less Dark)": "cursor-dark--cursor-less-dark.yaml", + "Cursor Dark Origin": "cursor-dark-origin.yaml", + "Cursor Midnight (Cursor Dark)": "cursor-midnight--cursor-dark.yaml", + "Cursor Midnight (Cursor Light)": "cursor-midnight--cursor-light.yaml", + "Cursor Night Theme (Cursor Night Theme Soft)": "cursor-night-theme--cursor-night-theme-soft.yaml", + "Cursor Night Theme (Cursor Night Theme)": "cursor-night-theme--cursor-night-theme.yaml", + "cursor theme (Cursor Theme)": "cursor-theme--cursor-theme.yaml", + "Custom Github Dark Dimmed": "custom-github-dark-dimmed.yaml", "Custom Theme (dark)": "custom-theme-dark.yaml", "Custom Theme (light)": "custom-theme-light.yaml", - "CustomMarkTheme": "custommarktheme.yaml", - "Cyan Dark": "cyan-dark.yaml", - "Cyber Dark": "cyber-dark.yaml", - "Cyber Light": "cyber-light.yaml", - "Cyber Light Soft": "cyber-light-soft.yaml", - "Cyber Light Warm": "cyber-light-warm.yaml", - "Cyber Pastel - Violet": "cyber-pastel-violet.yaml", + "Cute Aesthetic": "cute-aesthetic.yaml", + "Cyan-theme": "cyan-theme.yaml", + "Cyber Dark (Cyber Dark)": "cyber-dark--cyber-dark.yaml", + "Cyber Dark (Cyber Light Soft)": "cyber-dark--cyber-light-soft.yaml", + "Cyber Dark (Cyber Light Warm)": "cyber-dark--cyber-light-warm.yaml", + "Cyber Dark (Cyber Light)": "cyber-dark--cyber-light.yaml", + "Cyber Dark & Qoder Themes (JavaScript Modern Dark)": "cyber-dark-qoder-themes--javascript-modern-dark.yaml", + "Cyber Dark & Qoder Themes (JavaScript Neon Dark)": "cyber-dark-qoder-themes--javascript-neon-dark.yaml", + "Cyber Dark & Qoder Themes (JavaScript Vibrant Dark)": "cyber-dark-qoder-themes--javascript-vibrant-dark.yaml", + "Cyber Dark & Qoder Themes (Qoder Dark)": "cyber-dark-qoder-themes--qoder-dark.yaml", + "Cyber Pastel Theme Pack": "cyber-pastel-theme-pack.yaml", "Cyber Purple 77": "cyber-purple-77.yaml", - "Cyber-Industrial": "cyber-industrial.yaml", - "Cyber-Pop": "cyber-pop.yaml", - "Cyberblue": "cyberblue.yaml", "CyberDude Black": "cyberdude-black.yaml", - "Cyberdyne Ghostty": "cyberdyne-ghostty.yaml", + "Cyberdyne": "cyberdyne.yaml", "cybereternals-vscode-theme": "cybereternals-vscode-theme.yaml", - "Cyberlite - Fork": "cyberlite-fork.yaml", + "Cyberlite": "cyberlite.yaml", "Cybermoon": "cybermoon.yaml", - "Cyberpink-137© Theme": "cyberpink-137-theme.yaml", "cyberpunk": "cyberpunk.yaml", "Cyberpunk": "cyberpunk.yaml", + "Cyberpunk 2021": "cyberpunk-2021.yaml", "CyberPunk 2077": "cyberpunk-2077.yaml", - "Cyberpunk 2077 - Night City Neon": "cyberpunk-2077-night-city-neon.yaml", + "Cyberpunk 2077 - Night City Theme (Cyberpunk 2077 - Night City Neon)": "cyberpunk-2077-night-city-theme--cyberpunk-2077-night-city-neon.yaml", "Cyberpunk 2077 Reloaded": "cyberpunk-2077-reloaded.yaml", - "CyberpunkCygnus Clear Grid": "cyberpunkcygnus-clear-grid.yaml", - "CyberpunkCygnus Neon Pulse": "cyberpunkcygnus-neon-pulse.yaml", - "CyberpunkCygnus Solace Flare": "cyberpunkcygnus-solace-flare.yaml", - "CyberSec Pro": "cybersec-pro.yaml", + "Cyberpunk Rebecca color theme": "cyberpunk-rebecca-color-theme.yaml", + "Cyberpunk2077 UI Theme": "cyberpunk2077-ui-theme.yaml", + "CyberpunkCygnus Color Theme (CyberpunkCygnus Clear Grid)": "cyberpunkcygnus-color-theme--cyberpunkcygnus-clear-grid.yaml", + "CyberpunkCygnus Color Theme (CyberpunkCygnus Neon Pulse)": "cyberpunkcygnus-color-theme--cyberpunkcygnus-neon-pulse.yaml", + "CyberpunkCygnus Color Theme (CyberpunkCygnus Solace Flare)": "cyberpunkcygnus-color-theme--cyberpunkcygnus-solace-flare.yaml", "cyberspace": "cyberspace.yaml", - "Cybertrauma's": "cybertrauma-s.yaml", + "Cyberspace": "cyberspace.yaml", + "CyberTrauma": "cybertrauma.yaml", "CyberTrauma's Dark Theme": "cybertrauma-s-dark-theme.yaml", "CYBERTRONIX": "cybertronix.yaml", - "cyberui": "cyberui.yaml", - "cynical-color-theme": "cynical-color-theme.yaml", - "CyperpunkRebecca": "cyperpunkrebecca.yaml", - "D2T Dark": "d2t-dark.yaml", - "D2T Dark Clean": "d2t-dark-clean.yaml", + "CyberUI - Cyberpunk Neon Theme": "cyberui-cyberpunk-neon-theme.yaml", + "CyberWave": "cyberwave.yaml", + "D2T Colorful Theme (D2T Dark Clean)": "d2t-colorful-theme--d2t-dark-clean.yaml", + "D2T Colorful Theme (D2T Dark)": "d2t-colorful-theme--d2t-dark.yaml", "Da3m0ns Dark (Italic)": "da3m0ns-dark-italic.yaml", "daet": "daet.yaml", "Dafault": "dafault.yaml", "dak-v1": "dak-v1.yaml", + "dalailahner dark": "dalailahner-dark.yaml", "dalailahner-dark": "dalailahner-dark.yaml", + "dalton": "dalton.yaml", "Dalton": "dalton.yaml", "Dan React Theme": "dan-react-theme.yaml", "Dan-light-work": "dan-light-work.yaml", "Dang-Jedi": "dang-jedi.yaml", - "DangerGray v2": "dangergray-v2.yaml", + "DangerDark": "dangerdark.yaml", "Dango theme": "dango-theme.yaml", - "Daniel Material Palenight Theme": "daniel-material-palenight-theme.yaml", "danmo": "danmo.yaml", "Dante-Color-Theme": "dante-color-theme.yaml", - "Dantes Theme": "dantes-theme.yaml", + "Dantes": "dantes.yaml", "DanteTheme": "dantetheme.yaml", - "Darcula": "darcula.yaml", - "Darcula Contrast": "darcula-contrast.yaml", - "Darcula Contrast Min": "darcula-contrast-min.yaml", - "Darcula Dark Theme": "darcula-dark-theme.yaml", + "Darcula Contrast (Darcula Contrast Min)": "darcula-contrast--darcula-contrast-min.yaml", + "Darcula Contrast (Darcula Contrast)": "darcula-contrast--darcula-contrast.yaml", + "Darcula Solid": "darcula-solid.yaml", + "Darcula Theme (JetBrains Port)": "darcula-theme--jetbrains-port.yaml", "Darcula Void": "darcula-void.yaml", - "darcula-port": "darcula-port.yaml", - "darcula-solid-color-theme": "darcula-solid-color-theme.yaml", "DarculaCode": "darculacode.yaml", - "dare": "dare.yaml", - "dare-contrast": "dare-contrast.yaml", - "dare-light": "dare-light.yaml", "dark": "dark.yaml", "Dark": "dark.yaml", "DARK": "dark.yaml", - "dark Plus moon lite": "dark-plus-moon-lite.yaml", - "Dark (molokai)": "dark-molokai.yaml", "Dark Abyss": "dark-abyss.yaml", - "Dark Aura": "dark-aura.yaml", + "Dark Alchemy Theme (DarkAlchemy-Basic)": "dark-alchemy-theme--darkalchemy-basic.yaml", + "Dark Alchemy Theme (Night Dragon)": "dark-alchemy-theme--night-dragon.yaml", + "Dark Alchemy Theme (Nightfox)": "dark-alchemy-theme--nightfox.yaml", + "Dark Amethyst": "dark-amethyst.yaml", + "dark and purple": "dark-and-purple.yaml", + "Dark Aura Theme": "dark-aura-theme.yaml", "Dark Black Developer": "dark-black-developer.yaml", - "dark blood": "dark-blood.yaml", "Dark Blue Theme": "dark-blue-theme.yaml", - "Dark Brown": "dark-brown.yaml", "Dark Brown Theme": "dark-brown-theme.yaml", "Dark Cherry Ice-Cream": "dark-cherry-ice-cream.yaml", "Dark Cherry Ice-Cream Subtle": "dark-cherry-ice-cream-subtle.yaml", - "Dark Clean": "dark-clean.yaml", - "Dark Code - Fork": "dark-code-fork.yaml", "Dark Coffee": "dark-coffee.yaml", "Dark cool theme": "dark-cool-theme.yaml", + "Dark Cool Theme": "dark-cool-theme.yaml", "Dark Decay": "dark-decay.yaml", "Dark Discord VSCode": "dark-discord-vscode.yaml", - "Dark Dust Pro": "dark-dust-pro.yaml", + "Dark Dust": "dark-dust.yaml", "Dark Edit+": "dark-edit.yaml", + "Dark Flow": "dark-flow.yaml", "Dark Forest": "dark-forest.yaml", "Dark Frost": "dark-frost.yaml", "Dark Frost Midnight": "dark-frost-midnight.yaml", "Dark Fury": "dark-fury.yaml", - "Dark Future Cyberpunk 2077": "dark-future-cyberpunk-2077.yaml", - "Dark Future Outrun": "dark-future-outrun.yaml", - "Dark Green Jungle": "dark-green-jungle.yaml", + "Dark Future (Dark Future Cyberpunk 2077)": "dark-future--dark-future-cyberpunk-2077.yaml", + "Dark Green Jungle theme": "dark-green-jungle-theme.yaml", "Dark Green Minimalist Theme": "dark-green-minimalist-theme.yaml", "Dark Grey Theme": "dark-grey-theme.yaml", + "Dark Halloween": "dark-halloween.yaml", "Dark Ink": "dark-ink.yaml", "Dark Ink And Red Accents": "dark-ink-and-red-accents.yaml", "Dark Ink Brighter": "dark-ink-brighter.yaml", @@ -1467,46 +1551,49 @@ "Dark Ink Lighter": "dark-ink-lighter.yaml", "Dark Jade": "dark-jade.yaml", "Dark Juice Bordered": "dark-juice-bordered.yaml", - "Dark Lavender": "dark-lavender.yaml", - "Dark Lavender (Black)": "dark-lavender-black.yaml", - "Dark Lavender (Soft)": "dark-lavender-soft.yaml", - "Dark Lavender (Tailwind Soft)": "dark-lavender-tailwind-soft.yaml", - "Dark Lavender (Tailwind)": "dark-lavender-tailwind.yaml", - "Dark legibility": "dark-legibility.yaml", - "Dark Lime Flat": "dark-lime-flat.yaml", - "Dark Magic": "dark-magic.yaml", - "Dark Magic - Light": "dark-magic-light.yaml", - "Dark Magic Dracula": "dark-magic-dracula.yaml", - "Dark Magic Frankenstein": "dark-magic-frankenstein.yaml", - "Dark Magic Night": "dark-magic-night.yaml", - "Dark Magic Nord": "dark-magic-nord.yaml", - "Dark Magic Tokyo": "dark-magic-tokyo.yaml", + "Dark kai": "dark-kai.yaml", + "Dark Lavender (Dark Lavender (Black))": "dark-lavender-dark-lavender-black.yaml", + "Dark Lavender (Dark Lavender (Soft))": "dark-lavender-dark-lavender-soft.yaml", + "Dark Lavender (Dark Lavender (Tailwind Soft))": "dark-lavender-dark-lavender-tailwind-soft.yaml", + "Dark Lavender (Dark Lavender (Tailwind))": "dark-lavender-dark-lavender-tailwind.yaml", + "Dark Lavender (Dark Lavender)": "dark-lavender--dark-lavender.yaml", + "Dark Magic Themes (Dark Magic - Light)": "dark-magic-themes--dark-magic-light.yaml", + "Dark Magic Themes (Dark Magic Dracula)": "dark-magic-themes--dark-magic-dracula.yaml", + "Dark Magic Themes (Dark Magic Frankenstein)": "dark-magic-themes--dark-magic-frankenstein.yaml", + "Dark Magic Themes (Dark Magic Night)": "dark-magic-themes--dark-magic-night.yaml", + "Dark Magic Themes (Dark Magic Nord)": "dark-magic-themes--dark-magic-nord.yaml", + "Dark Magic Themes (Dark Magic Tokyo)": "dark-magic-themes--dark-magic-tokyo.yaml", + "Dark Magic Themes (Dark Magic)": "dark-magic-themes--dark-magic.yaml", "Dark Marine": "dark-marine.yaml", "Dark Matter Code Neptune Medium": "dark-matter-code-neptune-medium.yaml", - "Dark Minimal Lime Theme": "dark-minimal-lime-theme.yaml", - "Dark Minimal Theme(SM)": "dark-minimal-theme-sm.yaml", - "Dark Mode": "dark-mode.yaml", + "Dark Minimal Line Free": "dark-minimal-line-free.yaml", + "Dark Minimal Theme": "dark-minimal-theme.yaml", + "Dark Mode (Dark Mode)": "dark-mode--dark-mode.yaml", "Dark Mode Lover": "dark-mode-lover.yaml", "Dark Mode Lover - Wasp": "dark-mode-lover-wasp.yaml", "Dark Mode VS": "dark-mode-vs.yaml", - "Dark Modern One without italics": "dark-modern-one-without-italics.yaml", + "Dark Modern One": "dark-modern-one.yaml", "Dark Modern+ | yuriyProgg": "dark-modern-yuriyprogg.yaml", + "Dark Molokai Theme": "dark-molokai-theme.yaml", "Dark Mono": "dark-mono.yaml", "Dark monokai": "dark-monokai.yaml", "Dark Moonlight": "dark-moonlight.yaml", - "Dark Nebula": "dark-nebula.yaml", - "Dark Neon Theme(SM)": "dark-neon-theme-sm.yaml", - "Dark Night": "dark-night.yaml", + "dark night pro": "dark-night-pro.yaml", "Dark Ocean": "dark-ocean.yaml", - "Dark Orange Flat": "dark-orange-flat.yaml", - "Dark Owl Darker": "dark-owl-darker.yaml", - "Dark Owl Darker (No Italics)": "dark-owl-darker-no-italics.yaml", + "Dark Ocean theme": "dark-ocean-theme.yaml", + "Dark Orange (Dark Lime Flat)": "dark-orange--dark-lime-flat.yaml", + "Dark Orange (Dark Orange)": "dark-orange--dark-orange.yaml", + "Dark Orange (Dark Purple Flat)": "dark-orange--dark-purple-flat.yaml", + "Dark Orange (Dark Yellow Flat)": "dark-orange--dark-yellow-flat.yaml", + "Dark Owl (Dark Owl Darker)": "dark-owl--dark-owl-darker.yaml", "Dark Pastel": "dark-pastel.yaml", "Dark Pastel Pink": "dark-pastel-pink.yaml", - "Dark Petrol - Dev": "dark-petrol-dev.yaml", + "Dark Petrol": "dark-petrol.yaml", "Dark Pie - Deep dark": "dark-pie-deep-dark.yaml", + "Dark Pink Pro": "dark-pink-pro.yaml", "Dark Pink Theme": "dark-pink-theme.yaml", "Dark Plus Chocolate": "dark-plus-chocolate.yaml", + "Dark Plus Moon light": "dark-plus-moon-light.yaml", "Dark Plus Oled Dim 100": "dark-plus-oled-dim-100.yaml", "Dark Plus Oled Dim 75": "dark-plus-oled-dim-75.yaml", "Dark Plus Oled Dim 80": "dark-plus-oled-dim-80.yaml", @@ -1514,77 +1601,86 @@ "Dark Plus Oled Dim 90": "dark-plus-oled-dim-90.yaml", "Dark Plus Oled Dim 95": "dark-plus-oled-dim-95.yaml", "Dark Purple": "dark-purple.yaml", - "Dark Purple Flat": "dark-purple-flat.yaml", "Dark Purpled Theme": "dark-purpled-theme.yaml", "Dark Rainbow": "dark-rainbow.yaml", - "Dark Reader (Dark)": "dark-reader-dark.yaml", - "Dark Reader (Light)": "dark-reader-light.yaml", - "Dark Red Theme": "dark-red-theme.yaml", - "Dark Red Theme VS-Code": "dark-red-theme-vs-code.yaml", + "Dark Refined (Refined (Charcoal))": "dark-refined-refined-charcoal.yaml", + "Dark Refined (Refined (Default))": "dark-refined-refined-default.yaml", + "Dark Refined (Refined (Dracula))": "dark-refined-refined-dracula.yaml", + "Dark Refined (Refined (Espresso))": "dark-refined-refined-espresso.yaml", + "Dark Refined (Refined (Matcha))": "dark-refined-refined-matcha.yaml", + "Dark Refined (Refined (Mocha))": "dark-refined-refined-mocha.yaml", + "Dark Refined (Refined (Night Owl))": "dark-refined-refined-night-owl.yaml", + "Dark Refined (Refined (Oceanic Next))": "dark-refined-refined-oceanic-next.yaml", + "Dark Refined (Refined (One))": "dark-refined-refined-one.yaml", + "Dark Refined (Refined (Palenight))": "dark-refined-refined-palenight.yaml", + "Dark Refined (Refined (Purple))": "dark-refined-refined-purple.yaml", + "Dark Refined (Refined (Slate))": "dark-refined-refined-slate.yaml", "Dark Sand Theme": "dark-sand-theme.yaml", "Dark Sea Green": "dark-sea-green.yaml", "Dark Sky - Fork - Fork": "dark-sky-fork-fork.yaml", - "Dark Soft Theme(SM)": "dark-soft-theme-sm.yaml", "Dark Springbok": "dark-springbok.yaml", "Dark Terminal pro": "dark-terminal-pro.yaml", "Dark Theme": "dark-theme.yaml", + "Dark Theme (Dark Minimal Theme(SM))": "dark-theme-dark-minimal-theme-sm.yaml", + "Dark Theme (Dark Neon Theme(SM))": "dark-theme-dark-neon-theme-sm.yaml", + "Dark Theme (Dark Soft Theme(SM))": "dark-theme-dark-soft-theme-sm.yaml", + "Dark Theme Blue": "dark-theme-blue.yaml", + "Dark Theme by Sanan": "dark-theme-by-sanan.yaml", "Dark Theme New": "dark-theme-new.yaml", + "Dark Theme S": "dark-theme-s.yaml", "Dark theme v2": "dark-theme-v2.yaml", + "Dark Unity": "dark-unity.yaml", "Dark Vibes": "dark-vibes.yaml", - "Dark Yellow Flat": "dark-yellow-flat.yaml", + "Dark with blue": "dark-with-blue.yaml", "Dark_1": "dark-1.yaml", "Dark_Army": "dark-army.yaml", + "dark_m_theme": "dark-m-theme.yaml", "dark_mosqueta": "dark-mosqueta.yaml", "Dark_Readin_5": "dark-readin-5.yaml", "Dark-amethyst": "dark-amethyst.yaml", + "Dark-and-Purple": "dark-and-purple.yaml", "dark-bqueiroz": "dark-bqueiroz.yaml", "dark-color-theme": "dark-color-theme.yaml", - "Dark-Crimson": "dark-crimson.yaml", "Dark-Dev Theme": "dark-dev-theme.yaml", "dark-flow": "dark-flow.yaml", "Dark-Green": "dark-green.yaml", "dark-leocode-theme": "dark-leocode-theme.yaml", "dark-mute": "dark-mute.yaml", "dark-night-pro": "dark-night-pro.yaml", - "dark-ohnagi-2020": "dark-ohnagi-2020.yaml", "dark-plus-syntax": "dark-plus-syntax.yaml", "dark-purple": "dark-purple.yaml", - "dark-solarin-2021": "dark-solarin-2021.yaml", + "dark-solarin-3": "dark-solarin-3.yaml", "dark-theme-blue": "dark-theme-blue.yaml", "dark-theme-by-sanan": "dark-theme-by-sanan.yaml", - "dark-theme-default-by-luisfelipe": "dark-theme-default-by-luisfelipe.yaml", "dark-with-blue": "dark-with-blue.yaml", "Dark-Wolf": "dark-wolf.yaml", - "dark.codely-theme": "dark-codely-theme.yaml", "Dark/Purple": "dark-purple.yaml", - "Dark/Purple - Fork": "dark-purple-fork.yaml", + "Dark&Green": "dark-green.yaml", "Dark&Green energy": "dark-green-energy.yaml", "Dark#": "dark.yaml", "Dark+ Remix (Nord)": "dark-remix-nord.yaml", "Dark+ Remix (One Dark)": "dark-remix-one-dark.yaml", "Dark+ V3": "dark-v3.yaml", "Dark+ Visual Studio": "dark-visual-studio.yaml", - "Darka": "darka.yaml", - "DarkAlchemy-Basic": "darkalchemy-basic.yaml", "Darkalicious": "darkalicious.yaml", - "DarkASP": "darkasp.yaml", "DarkBlue Theme Official": "darkblue-theme-official.yaml", - "darkblue-theme": "darkblue-theme.yaml", "darkbubble": "darkbubble.yaml", - "DarkButter": "darkbutter.yaml", + "DarkCatalyst": "darkcatalyst.yaml", "darkdarkdark": "darkdarkdark.yaml", "Darker + Monokai (Gold)": "darker-monokai-gold.yaml", "Darker Solarized": "darker-solarized.yaml", - "Darker Than Black": "darker-than-black.yaml", "Darker-B": "darker-b.yaml", + "Darkerized Better Solarized (Better Solarized Dark)": "darkerized-better-solarized--better-solarized-dark.yaml", "darkEST": "darkest.yaml", + "DarkEST Theme": "darkest-theme.yaml", + "Darkestside Theme": "darkestside-theme.yaml", "DarkestSide theme": "darkestside-theme.yaml", - "DarkFontenelesTheme": "darkfontenelestheme.yaml", "DarkFusion": "darkfusion.yaml", "DarkGreen": "darkgreen.yaml", "DarkHeist": "darkheist.yaml", + "DarkHeist ": "darkheist.yaml", "Darkish": "darkish.yaml", - "Darkit Astral": "darkit-astral.yaml", + "Darkit": "darkit.yaml", "DarkJ": "darkj.yaml", "DarkKnight": "darkknight.yaml", "darklimeteal": "darklimeteal.yaml", @@ -1595,9 +1691,9 @@ "Darkness-color-theme": "darkness-color-theme.yaml", "darkoo": "darkoo.yaml", "darkOrange": "darkorange.yaml", - "DarkPinkPro": "darkpinkpro.yaml", + "DarkOrange": "darkorange.yaml", "DarkPlastic": "darkplastic.yaml", - "DarkPurple": "darkpurple.yaml", + "darkpurpletheme": "darkpurpletheme.yaml", "Darkquark": "darkquark.yaml", "Darkr - Green": "darkr-green.yaml", "darkRed": "darkred.yaml", @@ -1608,16 +1704,22 @@ "Darkrrr - Green": "darkrrr-green.yaml", "Darkrrrr - Green": "darkrrrr-green.yaml", "Darkrrrrr - Green": "darkrrrrr-green.yaml", + "Darksharp": "darksharp.yaml", "Darksian-Theme": "darksian-theme.yaml", - "darkside": "darkside.yaml", - "darkside-contrast": "darkside-contrast.yaml", - "darkside-light": "darkside-light.yaml", "Darksome": "darksome.yaml", + "darkspace": "darkspace.yaml", "DarkSpace": "darkspace.yaml", + "Darkstack (Code Red)": "darkstack--code-red.yaml", + "Darkstack (Cyberblue)": "darkstack--cyberblue.yaml", + "Darkstack (Edgerunner)": "darkstack--edgerunner.yaml", + "Darkstack (Miami Vice)": "darkstack--miami-vice.yaml", "DarkStar": "darkstar.yaml", "DarkStash": "darkstash.yaml", "darktra": "darktra.yaml", + "Darktra": "darktra.yaml", + "darkula": "darkula.yaml", "Darkula": "darkula.yaml", + "Darkula! Dracula, but darker": "darkula-dracula-but-darker.yaml", "Darkuto": "darkuto.yaml", "darkvoid": "darkvoid.yaml", "darkvoid ocean": "darkvoid-ocean.yaml", @@ -1630,38 +1732,37 @@ "Darkwaves: Forge": "darkwaves-forge.yaml", "Darkwaves: Nebula": "darkwaves-nebula.yaml", "Darkwaves: Obsidian": "darkwaves-obsidian.yaml", - "Darkwind Default": "darkwind-default.yaml", - "Darky Purple": "darky-purple.yaml", - "Darky Purple Storm": "darky-purple-storm.yaml", + "Darkwind": "darkwind.yaml", + "Darky Purple Theme (Darky Purple Storm)": "darky-purple-theme--darky-purple-storm.yaml", + "Darky Purple Theme (Darky Purple)": "darky-purple-theme--darky-purple.yaml", "darkyamaris": "darkyamaris.yaml", - "Darth Insidious": "darth-insidious.yaml", - "Darth Invader": "darth-invader.yaml", "darthbuddy": "darthbuddy.yaml", - "DartPad": "dartpad.yaml", + "DartPad Theme (DartPad)": "dartpad-theme--dartpad.yaml", "daru": "daru.yaml", "Darwin": "darwin.yaml", "DarXmon": "darxmon.yaml", "Dashxe": "dashxe.yaml", "Davi Lacerda Dark": "davi-lacerda-dark.yaml", "Davi Lacerda Light": "davi-lacerda-light.yaml", - "david": "david.yaml", "DavionTheme": "daviontheme.yaml", "DawnBlush": "dawnblush.yaml", - "day": "day.yaml", "Day 'n' Nite": "day-n-nite.yaml", "Dayfox": "dayfox.yaml", "DaysOfWineAndRoses": "daysofwineandroses.yaml", - "dbt dark theme": "dbt-dark-theme.yaml", - "dbt Fusion": "dbt-fusion.yaml", - "dbt light theme": "dbt-light-theme.yaml", + "dbt (dbt dark theme)": "dbt--dbt-dark-theme.yaml", + "dbt (dbt Fusion)": "dbt--dbt-fusion.yaml", + "dbt (dbt light theme)": "dbt--dbt-light-theme.yaml", "DC Dark Theme": "dc-dark-theme.yaml", - "DcDevThemeRed": "dcdevthemered.yaml", + "DcDevTheme": "dcdevtheme.yaml", "Dead Club City": "dead-club-city.yaml", "deadbeef": "deadbeef.yaml", "Deadmura": "deadmura.yaml", - "DeadPool": "deadpool.yaml", + "deaving-theme": "deaving-theme.yaml", "Deaving-Theme": "deaving-theme.yaml", - "Decayce": "decayce.yaml", + "Decay (Cosmic Decay)": "decay--cosmic-decay.yaml", + "Decay (Dark Decay)": "decay--dark-decay.yaml", + "Decay (Decayce)": "decay--decayce.yaml", + "Decay (Light Decay)": "decay--light-decay.yaml", "Deco": "deco.yaml", "Deeold": "deeold.yaml", "Deep Dark": "deep-dark.yaml", @@ -1672,15 +1773,9 @@ "Deep ocean": "deep-ocean.yaml", "Deep Ocean": "deep-ocean.yaml", "Deep Purple": "deep-purple.yaml", - "Deep Purple - Fork": "deep-purple-fork.yaml", - "Deep Purple - Fork - Fork": "deep-purple-fork-fork.yaml", "Deep Rainforest": "deep-rainforest.yaml", - "Deep Space Dark": "deep-space-dark.yaml", "Deep-Ocean": "deep-ocean.yaml", - "deep-purple-theme": "deep-purple-theme.yaml", - "Deep-Sea-Navigator": "deep-sea-navigator.yaml", - "Deep-Teal": "deep-teal.yaml", - "Deep-Void": "deep-void.yaml", + "DeepSea Theme": "deepsea-theme.yaml", "Deepslime": "deepslime.yaml", "DeepWave": "deepwave.yaml", "Deepwoods Autumn Needles": "deepwoods-autumn-needles.yaml", @@ -1690,24 +1785,25 @@ "Default dimmed": "default-dimmed.yaml", "Default Enhanced": "default-enhanced.yaml", "default_theme": "default-theme.yaml", - "defaults": "defaults.yaml", - "defdo base": "defdo-base.yaml", - "defdo halloween": "defdo-halloween.yaml", + "default-dimmed": "default-dimmed.yaml", + "defdo-themes (defdo base)": "defdo-themes--defdo-base.yaml", + "defdo-themes (defdo halloween)": "defdo-themes--defdo-halloween.yaml", "Definetely Not Github's Theme": "definetely-not-github-s-theme.yaml", - "Definition-theme2023": "definition-theme2023.yaml", "dejaypiii": "dejaypiii.yaml", - "Dekirisu's Rust Theme": "dekirisu-s-rust-theme.yaml", + "Dekirisu's Rust Themes (Dekirisu's Rust Theme)": "dekirisu-s-rust-themes--dekirisu-s-rust-theme.yaml", + "Delightful green": "delightful-green.yaml", "Delowar Dark Pro": "delowar-dark-pro.yaml", "Delowar Monokai Pro": "delowar-monokai-pro.yaml", "Delowar Ocean Blue": "delowar-ocean-blue.yaml", - "Demon": "demon.yaml", "Demon Dark Pro": "demon-dark-pro.yaml", "Demon Light Pro": "demon-light-pro.yaml", "Demon Slayer Light Theme": "demon-slayer-light-theme.yaml", - "Desert": "desert.yaml", + "Demon-Hunter": "demon-hunter.yaml", + "Demon-Slayer-Light-Theme": "demon-slayer-light-theme.yaml", + "Descomplica Theme (Kyanite)": "descomplica-theme--kyanite.yaml", "Desert Tide": "desert-tide.yaml", - "Desert-Night": "desert-night.yaml", - "DesignCourse Theme": "designcourse-theme.yaml", + "desert.vim": "desert-vim.yaml", + "DesignCourse": "designcourse.yaml", "designONEv2": "designonev2.yaml", "Dessert": "dessert.yaml", "Deus Ex - MD - Dark": "deus-ex-md-dark.yaml", @@ -1719,43 +1815,105 @@ "Dev-Dev-color-theme": "dev-dev-color-theme.yaml", "dev-theme": "dev-theme.yaml", "dev.tachgurbanov": "dev-tachgurbanov.yaml", - "Dev+ Dark - Fork - Fork": "dev-dark-fork-fork.yaml", "DevCode+": "devcode.yaml", "DevDojo Seppuku": "devdojo-seppuku.yaml", "Develer Dark": "develer-dark.yaml", - "Developer Friendly Dark": "developer-friendly-dark.yaml", - "Developers theme - Fork": "developers-theme-fork.yaml", + "Devell theme": "devell-theme.yaml", + "Developer's theme (Developers theme - Fork)": "developer-s-theme--developers-theme-fork.yaml", + "Developer's theme (Green Coffee)": "developer-s-theme--green-coffee.yaml", "DevHaven (Dracula)": "devhaven-dracula.yaml", "DevJam Dark": "devjam-dark.yaml", + "DevMamudul Setup": "devmamudul-setup.yaml", "DevMedia Dark": "devmedia-dark.yaml", "DevMedia Dark Modern": "devmedia-dark-modern.yaml", "DevMedia Light": "devmedia-light.yaml", "DevOption Light": "devoption-light.yaml", + "DevPro theme": "devpro-theme.yaml", "DevR": "devr.yaml", - "DevSena (ultra dark)": "devsena-ultra-dark.yaml", + "DevSena Dark": "devsena-dark.yaml", + "DevStack (Acid-Trip)": "devstack--acid-trip.yaml", + "DevStack (Afterglow-Fade)": "devstack--afterglow-fade.yaml", + "DevStack (Amazon-Jungle)": "devstack--amazon-jungle.yaml", + "DevStack (Amethyst-Stone)": "devstack--amethyst-stone.yaml", + "DevStack (Another-Acid-Trip)": "devstack--another-acid-trip.yaml", + "DevStack (Aqua-Glacier)": "devstack--aqua-glacier.yaml", + "DevStack (Black-Velvet-Luxe)": "devstack--black-velvet-luxe.yaml", + "DevStack (Blueprint-Grid)": "devstack--blueprint-grid.yaml", + "DevStack (C-Carbon-6)": "devstack--c-carbon-6.yaml", + "DevStack (Cobalt-Ice)": "devstack--cobalt-ice.yaml", + "DevStack (Crystal-Quartz)": "devstack--crystal-quartz.yaml", + "DevStack (Cyber-Industrial)": "devstack--cyber-industrial.yaml", + "DevStack (Cyber-Pop)": "devstack--cyber-pop.yaml", + "DevStack (Dark-Crimson)": "devstack--dark-crimson.yaml", + "DevStack (Deep-Ocean)": "devstack--deep-ocean.yaml", + "DevStack (Deep-Sea-Navigator)": "devstack--deep-sea-navigator.yaml", + "DevStack (Deep-Teal)": "devstack--deep-teal.yaml", + "DevStack (Deep-Void)": "devstack--deep-void.yaml", + "DevStack (Desert-Night)": "devstack--desert-night.yaml", + "DevStack (Espresso-High)": "devstack--espresso-high.yaml", + "DevStack (Executive-Level)": "devstack--executive-level.yaml", + "DevStack (Forest-Tech)": "devstack--forest-tech.yaml", + "DevStack (Frozen-Deep)": "devstack--frozen-deep.yaml", + "DevStack (Glacier-Blue)": "devstack--glacier-blue.yaml", + "DevStack (High-Alert-Crimson)": "devstack--high-alert-crimson.yaml", + "DevStack (irrus-Float)": "devstack--irrus-float.yaml", + "DevStack (Loki)": "devstack--loki.yaml", + "DevStack (Mainframe-Terminal)": "devstack--mainframe-terminal.yaml", + "DevStack (Meadow-Whisper)": "devstack--meadow-whisper.yaml", + "DevStack (Metropolis-Sky-Scape)": "devstack--metropolis-sky-scape.yaml", + "DevStack (Midas-Touch)": "devstack--midas-touch.yaml", + "DevStack (Middle-Field-Canvas)": "devstack--middle-field-canvas.yaml", + "DevStack (Mineral-Forest)": "devstack--mineral-forest.yaml", + "DevStack (Modern-Retro)": "devstack--modern-retro.yaml", + "DevStack (Monet-Impressionism)": "devstack--monet-impressionism.yaml", + "DevStack (Nightshade-Venom)": "devstack--nightshade-venom.yaml", + "DevStack (Obsidian-Wine)": "devstack--obsidian-wine.yaml", + "DevStack (Oceanic-Gradient)": "devstack--oceanic-gradient.yaml", + "DevStack (Oceanic-Sunset)": "devstack--oceanic-sunset.yaml", + "DevStack (Office-Paper)": "devstack--office-paper.yaml", + "DevStack (Oracle-Vision)": "devstack--oracle-vision.yaml", + "DevStack (Pastel-Sorbet)": "devstack--pastel-sorbet.yaml", + "DevStack (Polymer-Flow)": "devstack--polymer-flow.yaml", + "DevStack (Retro-Arcade)": "devstack--retro-arcade.yaml", + "DevStack (Silk-Petal)": "devstack--silk-petal.yaml", + "DevStack (Smoldering-Ember)": "devstack--smoldering-ember.yaml", + "DevStack (Solar-Flare)": "devstack--solar-flare.yaml", + "DevStack (Solstice-Heat)": "devstack--solstice-heat.yaml", + "DevStack (Sonic-Pulse)": "devstack--sonic-pulse.yaml", + "DevStack (Sorbet-Swirl)": "devstack--sorbet-swirl.yaml", + "DevStack (Studio-Apartment)": "devstack--studio-apartment.yaml", + "DevStack (Synthwave-Neon)": "devstack--synthwave-neon.yaml", + "DevStack (Tactical-Ops)": "devstack--tactical-ops.yaml", + "DevStack (Tree-Hugger)": "devstack--tree-hugger.yaml", + "DevStack (Twilight-Bloom)": "devstack--twilight-bloom.yaml", + "DevStack (Vanguard-Strike)": "devstack--vanguard-strike.yaml", + "DevStack (Vintage-Heritage)": "devstack--vintage-heritage.yaml", + "DevStack (Workplace-Chatter)": "devstack--workplace-chatter.yaml", "devTheme": "devtheme.yaml", "DevTheme": "devtheme.yaml", "DevX Dark": "devx-dark.yaml", "DEW-GREY": "dew-grey.yaml", "DewArt": "dewart.yaml", + "deyvi dark": "deyvi-dark.yaml", + "DFN2023Theme": "dfn2023theme.yaml", "DFP-IDLE": "dfp-idle.yaml", "Dhamma Dark": "dhamma-dark.yaml", "Dhamma Light": "dhamma-light.yaml", + "dharam-gfx theme (Dharam-gfx-Hight-Contrast)": "dharam-gfx-theme--dharam-gfx-hight-contrast.yaml", "dharam-gfx-anthracite": "dharam-gfx-anthracite.yaml", "dharam-gfx-arc-blueberry": "dharam-gfx-arc-blueberry.yaml", "dharam-gfx-arc-eggplant": "dharam-gfx-arc-eggplant.yaml", "dharam-gfx-arc-reversed": "dharam-gfx-arc-reversed.yaml", "dharam-gfx-gold": "dharam-gfx-gold.yaml", "dharam-gfx-hacker-theme": "dharam-gfx-hacker-theme.yaml", - "Dharam-gfx-Hight-Contrast": "dharam-gfx-hight-contrast.yaml", "dharam-gfx-webdevcody": "dharam-gfx-webdevcody.yaml", - "Diabo Theme": "diabo-theme.yaml", + "Diabo": "diabo.yaml", "Diamond Theme": "diamond-theme.yaml", "digitaliss": "digitaliss.yaml", "digitaliss Light": "digitaliss-light.yaml", "digitaliss Pastel": "digitaliss-pastel.yaml", - "Dimi Theme (Dark)": "dimi-theme-dark.yaml", - "Dimi Theme (Darker)": "dimi-theme-darker.yaml", + "Dimi Theme (Dimi Theme (Dark))": "dimi-theme-dimi-theme-dark.yaml", + "Dimi Theme (Dimi Theme (Darker))": "dimi-theme-dimi-theme-darker.yaml", "Dimmed": "dimmed.yaml", "Dimmed Dark Theme": "dimmed-dark-theme.yaml", "Dimmed Theme": "dimmed-theme.yaml", @@ -1766,34 +1924,52 @@ "dislexic": "dislexic.yaml", "Div's Theme": "div-s-theme.yaml", "Dive Bar": "dive-bar.yaml", + "Diverse Dye (arabian-theme)": "diverse-dye--arabian-theme.yaml", + "Diverse Dye (berry-blast-theme)": "diverse-dye--berry-blast-theme.yaml", + "Diverse Dye (celestial-charm-theme)": "diverse-dye--celestial-charm-theme.yaml", + "Diverse Dye (chocolate-dessert-theme)": "diverse-dye--chocolate-dessert-theme.yaml", + "Diverse Dye (hot-pink-theme)": "diverse-dye--hot-pink-theme.yaml", + "Diverse Dye (hyped-down-theme)": "diverse-dye--hyped-down-theme.yaml", + "Diverse Dye (kryptonite-theme)": "diverse-dye--kryptonite-theme.yaml", + "Diverse Dye (mountain-theme)": "diverse-dye--mountain-theme.yaml", + "Diverse Dye (navy-nights-theme)": "diverse-dye--navy-nights-theme.yaml", + "Diverse Dye (neon-theme)": "diverse-dye--neon-theme.yaml", + "Diverse Dye (power-low-purple-theme)": "diverse-dye--power-low-purple-theme.yaml", + "Diverse Dye (purplexed-theme)": "diverse-dye--purplexed-theme.yaml", + "Diverse Dye (sakura-blossom-theme)": "diverse-dye--sakura-blossom-theme.yaml", + "Diverse Dye (sakura-theme)": "diverse-dye--sakura-theme.yaml", "diVision Group Dark Theme": "division-group-dark-theme.yaml", - "DJ's Purple": "dj-s-purple.yaml", "Djolof": "djolof.yaml", - "DK Dark High Contrast": "dk-dark-high-contrast.yaml", - "DNA Helix": "dna-helix.yaml", - "DoDimmed Dark": "dodimmed-dark.yaml", + "DJPurple": "djpurple.yaml", + "dk-bee": "dk-bee.yaml", + "Do You Even Dev, bro? (minimal dark)": "do-you-even-dev-bro--minimal-dark.yaml", + "Do You Even Dev, bro? (Telescope)": "do-you-even-dev-bro--telescope.yaml", + "Dobri Next - Themes and Icons (Darcula)": "dobri-next-themes-and-icons--darcula.yaml", + "Dobri Next - Themes and Icons (Eve)": "dobri-next-themes-and-icons--eve.yaml", + "Doctis (Noctis Uva)": "doctis--noctis-uva.yaml", + "Doctis (Noctis Viola)": "doctis--noctis-viola.yaml", + "DoDimmed": "dodimmed.yaml", + "DodoPool": "dodopool.yaml", "Doems Sunset": "doems-sunset.yaml", "Doli Soft Green": "doli-soft-green.yaml", - "Doli Universal": "doli-universal.yaml", - "Doli Visual Studio": "doli-visual-studio.yaml", - "Dominator Paralyzer": "dominator-paralyzer.yaml", + "Doli Theme (Doli Universal)": "doli-theme--doli-universal.yaml", + "Doli Theme (Doli Visual Studio)": "doli-theme--doli-visual-studio.yaml", + "Dominator": "dominator.yaml", "DomTheme": "domtheme.yaml", "Doom One": "doom-one.yaml", - "Doom One Dark": "doom-one-dark.yaml", - "Doom One Light": "doom-one-light.yaml", + "Doom Themes (Doom One Dark)": "doom-themes--doom-one-dark.yaml", + "Doom Themes (Doom One Light)": "doom-themes--doom-one-light.yaml", + "doom-one": "doom-one.yaml", + "dooshtheme": "dooshtheme.yaml", "DooshTheme": "dooshtheme.yaml", "dork": "dork.yaml", "Dorkmode": "dorkmode.yaml", - "Dot Developer (Dark)": "dot-developer-dark.yaml", - "dotPortal": "dotportal.yaml", + "Dot Developer Theme": "dot-developer-theme.yaml", "Dove": "dove.yaml", - "downpour": "downpour.yaml", - "downpour-contrast": "downpour-contrast.yaml", - "downpour-light": "downpour-light.yaml", "Doxa Code Color Theme": "doxa-code-color-theme.yaml", "DoYouBleed": "doyoubleed.yaml", "dqn": "dqn.yaml", - "Dr. Jones": "dr-jones.yaml", + "Draco Dark": "draco-dark.yaml", "Draco-dark": "draco-dark.yaml", "Draconica": "draconica.yaml", "dracula": "dracula.yaml", @@ -1801,115 +1977,97 @@ "Dracula At Dusk": "dracula-at-dusk.yaml", "Dracula At Midnight": "dracula-at-midnight.yaml", "Dracula At Night": "dracula-at-night.yaml", - "Dracula Dark": "dracula-dark.yaml", + "Dracula Dimmed": "dracula-dimmed.yaml", "Dracula Falcon": "dracula-falcon.yaml", "Dracula High Contract": "dracula-high-contract.yaml", - "Dracula Light": "dracula-light.yaml", "Dracula Midnight": "dracula-midnight.yaml", - "Dracula Pro": "dracula-pro.yaml", - "Dracula Pro Black": "dracula-pro-black.yaml", + "Dracula Pro Version (Dracula Pro Black)": "dracula-pro-version--dracula-pro-black.yaml", + "Dracula Pro Version (Dracula Pro)": "dracula-pro-version--dracula-pro.yaml", + "Dracula Theme Light & Dark (Dracula Dark)": "dracula-theme-light-dark--dracula-dark.yaml", + "Dracula Theme Light & Dark (Dracula Light)": "dracula-theme-light-dark--dracula-light.yaml", + "Dracula Theme with Italic Keywords": "dracula-theme-with-italic-keywords.yaml", "Dracula-2022": "dracula-2022.yaml", - "dracula-dimmed-color-theme": "dracula-dimmed-color-theme.yaml", - "dracula-gray": "dracula-gray.yaml", - "Dracula.min Light Darker Theme": "dracula-min-light-darker-theme.yaml", - "Dracula.min Light Theme": "dracula-min-light-theme.yaml", - "Dracula.min White Darker Theme": "dracula-min-white-darker-theme.yaml", - "Dracula.min White Theme": "dracula-min-white-theme.yaml", + "Dracula.min (Dracula.min Light Darker Theme)": "dracula-min--dracula-min-light-darker-theme.yaml", + "Dracula.min (Dracula.min Light Theme)": "dracula-min--dracula-min-light-theme.yaml", + "Dracula.min (Dracula.min White Darker Theme)": "dracula-min--dracula-min-white-darker-theme.yaml", + "Dracula.min (Dracula.min White Theme)": "dracula-min--dracula-min-white-theme.yaml", + "DraculaGray": "draculagray.yaml", "Draculight": "draculight.yaml", "Draculish": "draculish.yaml", - "Dragn Dark Color Theme": "dragn-dark-color-theme.yaml", - "Dragon": "dragon.yaml", + "Dragan Color Theme": "dragan-color-theme.yaml", "Dragonfly": "dragonfly.yaml", "Dragonight": "dragonight.yaml", + "Drak-Theme": "drak-theme.yaml", "Drake": "drake.yaml", - "DrakenCord Blue - Fork": "drakencord-blue-fork.yaml", + "DrakenCord Blue": "drakencord-blue.yaml", "Drakkar": "drakkar.yaml", "Draquinho": "draquinho.yaml", "Drasing Dark": "drasing-dark.yaml", - "Dreadbots - Fork": "dreadbots-fork.yaml", "dreamer-theme": "dreamer-theme.yaml", "Dreamy Lights": "dreamy-lights.yaml", - "Dribbble Theme - Light": "dribbble-theme-light.yaml", + "Dribbble Theme": "dribbble-theme.yaml", + "drifter": "drifter.yaml", "Drifter": "drifter.yaml", "drk": "drk.yaml", - "Drukalu": "drukalu.yaml", "Drukyul Dark": "drukyul-dark.yaml", "Drukyul Light": "drukyul-light.yaml", "Drux Theme": "drux-theme.yaml", "DS Rose": "ds-rose.yaml", - "DSekon Theme": "dsekon-theme.yaml", - "Duck in the Dream": "duck-in-the-dream.yaml", - "Duck in the Lake": "duck-in-the-lake.yaml", + "Duang": "duang.yaml", + "Duck Mode! (Duck in the Dream)": "duck-mode--duck-in-the-dream.yaml", + "Duck Mode! (Duck in the Lake)": "duck-mode--duck-in-the-lake.yaml", "Duck Story": "duck-story.yaml", "duckcash": "duckcash.yaml", "Duckcash": "duckcash.yaml", + "Duckcash VSCode Theme": "duckcash-vscode-theme.yaml", "DuckDevLabs": "duckdevlabs.yaml", - "Duckeys blurple": "duckeys-blurple.yaml", "Ducks": "ducks.yaml", "Ducky Light": "ducky-light.yaml", "Dukana": "dukana.yaml", - "DukeMonokai-color-theme": "dukemonokai-color-theme.yaml", + "Duke Monokai": "duke-monokai.yaml", + "Dull grey": "dull-grey.yaml", "dull-sun": "dull-sun.yaml", "dull-sun-dark": "dull-sun-dark.yaml", "dull-sun-light": "dull-sun-light.yaml", - "Dune Arrakis Incandescent": "dune-arrakis-incandescent.yaml", - "Dune Bene Gesserit": "dune-bene-gesserit.yaml", - "Dune Caladan Storm": "dune-caladan-storm.yaml", - "Dune Fremen Sietch": "dune-fremen-sietch.yaml", - "Dune Giedi Prime": "dune-giedi-prime.yaml", - "Dune Guild Navigator": "dune-guild-navigator.yaml", - "Dune Harkonnen": "dune-harkonnen.yaml", - "Dune House Atreides": "dune-house-atreides.yaml", - "Dune Ix Technology": "dune-ix-technology.yaml", - "Dune Mentat": "dune-mentat.yaml", - "Dune Muad'Dib": "dune-muad-dib.yaml", - "Dune Salusa Secundus": "dune-salusa-secundus.yaml", - "Dune Sandworm": "dune-sandworm.yaml", - "Dune Sardaukar Imperial": "dune-sardaukar-imperial.yaml", - "Dune Spacing Guild": "dune-spacing-guild.yaml", - "Dune Spice Vision": "dune-spice-vision.yaml", - "Dune Water of Life": "dune-water-of-life.yaml", - "dune-kaitain": "dune-kaitain.yaml", "Duomage": "duomage.yaml", "Durgonix Dark": "durgonix-dark.yaml", "Dusk": "dusk.yaml", "Dusk Rider": "dusk-rider.yaml", - "Duskfox": "duskfox.yaml", "DutchTheme": "dutchtheme.yaml", "dynamic": "dynamic.yaml", "Dyno": "dyno.yaml", "Dyno cute": "dyno-cute.yaml", - "DzSolarized": "dzsolarized.yaml", - "DzSolarized Dark": "dzsolarized-dark.yaml", + "Dyslexia Autumn": "dyslexia-autumn.yaml", + "DzSolarized (DzSolarized Dark)": "dzsolarized--dzsolarized-dark.yaml", + "DzSolarized (DzSolarized)": "dzsolarized--dzsolarized.yaml", "Earl Grey": "earl-grey.yaml", "Early Riser": "early-riser.yaml", "early-bird": "early-bird.yaml", "Earth Brown - Stability & Grounding": "earth-brown-stability-grounding.yaml", "Earth Collection": "earth-collection.yaml", - "earthsong": "earthsong.yaml", - "earthsong-contrast": "earthsong-contrast.yaml", - "earthsong-light": "earthsong-light.yaml", + "earthen-bog": "earthen-bog.yaml", "Easter": "easter.yaml", - "Easy Eye": "easy-eye.yaml", + "Easy Eyes Theme": "easy-eyes-theme.yaml", "Easy Light": "easy-light.yaml", - "easy-eyes-color-theme": "easy-eyes-color-theme.yaml", "Ebizome": "ebizome.yaml", + "EBONX": "ebonx.yaml", + "ecaTheme": "ecatheme.yaml", "Ecatheme": "ecatheme.yaml", "Eclipsa": "eclipsa.yaml", - "Eclipse Dark Darker": "eclipse-dark-darker.yaml", - "Eclipse Dark Flat": "eclipse-dark-flat.yaml", - "Eclipse Dawn": "eclipse-dawn.yaml", - "Eclipse Flare": "eclipse-flare.yaml", - "Eclipse Optics": "eclipse-optics.yaml", - "Eclipse Penumbra": "eclipse-penumbra.yaml", - "Eclipse Umbra": "eclipse-umbra.yaml", - "ecogest-solarized-light": "ecogest-solarized-light.yaml", - "Edge Dark": "edge-dark.yaml", - "Edge Dark (Aura)": "edge-dark-aura.yaml", - "Edge Dark (Neon)": "edge-dark-neon.yaml", - "Edge Light": "edge-light.yaml", - "Edgerunner": "edgerunner.yaml", - "Editor": "editor.yaml", + "Eclipse Dark (Eclipse Dark Darker)": "eclipse-dark--eclipse-dark-darker.yaml", + "Eclipse Dark (Eclipse Dark Flat)": "eclipse-dark--eclipse-dark-flat.yaml", + "Eclipse Dark (Eclipse Flare)": "eclipse-dark--eclipse-flare.yaml", + "Eclipse Dark (Eclipse Optics)": "eclipse-dark--eclipse-optics.yaml", + "Eclipse Dark (Eclipse Penumbra)": "eclipse-dark--eclipse-penumbra.yaml", + "Eclipse Dark (Eclipse Umbra)": "eclipse-dark--eclipse-umbra.yaml", + "Eclipse Midnight": "eclipse-midnight.yaml", + "EclipseTheme": "eclipsetheme.yaml", + "ecogest-theme": "ecogest-theme.yaml", + "Edge (Edge Dark (Aura))": "edge-edge-dark-aura.yaml", + "Edge (Edge Dark (Neon))": "edge-edge-dark-neon.yaml", + "Edge (Edge Dark)": "edge--edge-dark.yaml", + "Edge (Edge Light)": "edge--edge-light.yaml", + "Editor Theme": "editor-theme.yaml", "Edu4Dev - VSCode Theme Color": "edu4dev-vscode-theme-color.yaml", "eezoterial dark": "eezoterial-dark.yaml", "eezoterial light": "eezoterial-light.yaml", @@ -1948,37 +2106,37 @@ "Ef Tritanopia Light": "ef-tritanopia-light.yaml", "Ef Winter": "ef-winter.yaml", "EggsPlo1t": "eggsplo1t.yaml", - "Eh's Website Theme": "eh-s-website-theme.yaml", + "Eh's Web Themes": "eh-s-web-themes.yaml", "Eidolon": "eidolon.yaml", "Eidolon Less Dark": "eidolon-less-dark.yaml", - "eigen-color-theme": "eigen-color-theme.yaml", + "Eigen": "eigen.yaml", + "Eight8May Theme (poimandres dark theme)": "eight8may-theme--poimandres-dark-theme.yaml", "eiji-otieno-theme": "eiji-otieno-theme.yaml", "Ein": "ein.yaml", "eink": "eink.yaml", "Ekim": "ekim.yaml", "Eldar1984": "eldar1984.yaml", "Elderberry": "elderberry.yaml", - "Eldritch": "eldritch.yaml", - "Eldritch Dark": "eldritch-dark.yaml", - "Electric Blue": "electric-blue.yaml", - "Electric Dreams": "electric-dreams.yaml", + "Eldritch (Eldritch Dark)": "eldritch--eldritch-dark.yaml", + "Eldritch (Eldritch)": "eldritch--eldritch.yaml", + "Electric Dreams Neon": "electric-dreams-neon.yaml", "Electric Ice": "electric-ice.yaml", "Electric Ice Darker": "electric-ice-darker.yaml", - "electric labs": "electric-labs.yaml", "Electric Night": "electric-night.yaml", "Electric Sheep": "electric-sheep.yaml", - "Electric Violet - Fork": "electric-violet-fork.yaml", + "electriclabs": "electriclabs.yaml", "Electron Highlighter": "electron-highlighter.yaml", - "Electron vue": "electron-vue.yaml", + "Electron Highlighter Syntax": "electron-highlighter-syntax.yaml", + "Electron vue (Electron vue)": "electron-vue--electron-vue.yaml", "Electronic Moonlight Theme + borders": "electronic-moonlight-theme-borders.yaml", "ELEGANCEu": "eleganceu.yaml", + "Elegant black": "elegant-black.yaml", "Elegant Black": "elegant-black.yaml", "Elegant Red": "elegant-red.yaml", "ElegantError404": "eleganterror404.yaml", - "Elementary": "elementary.yaml", + "elementary Theme": "elementary-theme.yaml", "ElementOwl": "elementowl.yaml", "Elements": "elements.yaml", - "Elf Dream": "elf-dream.yaml", "Elhassan Neon Cyan": "elhassan-neon-cyan.yaml", "Elhassan Neon Dark Professional": "elhassan-neon-dark-professional.yaml", "Elhassan Neon Light Professional": "elhassan-neon-light-professional.yaml", @@ -1986,22 +2144,29 @@ "Elhassan Neon Purple": "elhassan-neon-purple.yaml", "elixir-theme-no-italics": "elixir-theme-no-italics.yaml", "elixir-theme-with-italics-less-dark-2": "elixir-theme-with-italics-less-dark-2.yaml", + "Eliza's Pride Themes (Aromantic)": "eliza-s-pride-themes--aromantic.yaml", + "Eliza's Pride Themes (Asexual)": "eliza-s-pride-themes--asexual.yaml", + "Eliza's Pride Themes (Lesbian)": "eliza-s-pride-themes--lesbian.yaml", + "Eliza's Pride Themes (Nebularomantic)": "eliza-s-pride-themes--nebularomantic.yaml", + "Eliza's Pride Themes (Omnisexual)": "eliza-s-pride-themes--omnisexual.yaml", + "Eliza's Pride Themes (Progress)": "eliza-s-pride-themes--progress.yaml", "elly": "elly.yaml", - "Elypink Dark": "elypink-dark.yaml", - "Elypink Dark (Faded)": "elypink-dark-faded.yaml", - "Elypink Light": "elypink-light.yaml", - "Elypink Light (Diamond)": "elypink-light-diamond.yaml", - "Elypink Light (Faded)": "elypink-light-faded.yaml", - "Elypink Light (Spring)": "elypink-light-spring.yaml", - "Elypink Light (Summer)": "elypink-light-summer.yaml", + "Elypink Theme (Elypink Dark (Faded))": "elypink-theme-elypink-dark-faded.yaml", + "Elypink Theme (Elypink Dark)": "elypink-theme--elypink-dark.yaml", + "Elypink Theme (Elypink Light (Diamond))": "elypink-theme-elypink-light-diamond.yaml", + "Elypink Theme (Elypink Light (Faded))": "elypink-theme-elypink-light-faded.yaml", + "Elypink Theme (Elypink Light (Spring))": "elypink-theme-elypink-light-spring.yaml", + "Elypink Theme (Elypink Light (Summer))": "elypink-theme-elypink-light-summer.yaml", + "Elypink Theme (Elypink Light)": "elypink-theme--elypink-light.yaml", + "ember": "ember.yaml", "Ember": "ember.yaml", "Ember Glow": "ember-glow.yaml", "Emberstone": "emberstone.yaml", - "Emberstone-dark-theme": "emberstone-dark-theme.yaml", + "Emberstone Theme": "emberstone-theme.yaml", "Emberwood": "emberwood.yaml", "Emerald": "emerald.yaml", - "EMERALD - Fork": "emerald-fork.yaml", - "Emerald Matrix": "emerald-matrix.yaml", + "Emerald Sky": "emerald-sky.yaml", + "emerald-kc": "emerald-kc.yaml", "Emeralds": "emeralds.yaml", "Emi Theme": "emi-theme.yaml", "emmess-Periglaciar": "emmess-periglaciar.yaml", @@ -2010,27 +2175,28 @@ "Enchant": "enchant.yaml", "Enchant - High Contrast": "enchant-high-contrast.yaml", "ENCOM": "encom.yaml", - "End-color-theme": "end-color-theme.yaml", + "End": "end.yaml", "EndeavourOS Breeze Dark": "endeavouros-breeze-dark.yaml", "EndeavourOS Dark High Contrast": "endeavouros-dark-high-contrast.yaml", "EndeavourOS Dark Night Shift": "endeavouros-dark-night-shift.yaml", "Endless Iris": "endless-iris.yaml", "Energy Red - Passion & Alertness": "energy-red-passion-alertness.yaml", "Energy Red Light - Passion & Alertness": "energy-red-light-passion-alertness.yaml", + "Energy Theme": "energy-theme.yaml", "energy-theme": "energy-theme.yaml", - "Enhanced HubSpot Theme": "enhanced-hubspot-theme.yaml", - "Enhanced Material": "enhanced-material.yaml", + "Enhanced Canvas Theme": "enhanced-canvas-theme.yaml", "Enhanced Material - Batman": "enhanced-material-batman.yaml", "Enhanced Material - Fork": "enhanced-material-fork.yaml", "Enigma": "enigma.yaml", - "Enki": "enki.yaml", - "Enki Night Owl": "enki-night-owl.yaml", - "Enki Rainbow": "enki-rainbow.yaml", - "Enki Red": "enki-red.yaml", + "Enki (Enki Night Owl)": "enki--enki-night-owl.yaml", + "Enki (Enki Rainbow)": "enki--enki-rainbow.yaml", + "Enki (Enki Red)": "enki--enki-red.yaml", + "Enki (Enki)": "enki--enki.yaml", "enlightened-ifission": "enlightened-ifission.yaml", "Enough": "enough.yaml", + "Enough with the Palenight": "enough-with-the-palenight.yaml", + "enova": "enova.yaml", "Enova": "enova.yaml", - "Entardecer": "entardecer.yaml", "Entropic Theme": "entropic-theme.yaml", "Eon React": "eon-react.yaml", "Eon Theme": "eon-theme.yaml", @@ -2040,32 +2206,30 @@ "Equinox Dark": "equinox-dark.yaml", "Equinox Light": "equinox-light.yaml", "Eralith": "eralith.yaml", - "ErikWDevTheme-color-theme": "erikwdevtheme-color-theme.yaml", - "eritbh's theme": "eritbh-s-theme.yaml", - "ErrorDark": "errordark.yaml", + "ErikWDevTheme": "erikwdevtheme.yaml", + "Erin's Theme": "erin-s-theme.yaml", "errrrrm": "errrrrm.yaml", + "escook-theme": "escook-theme.yaml", "escook-theme-light": "escook-theme-light.yaml", "Eskey Theme": "eskey-theme.yaml", - "Espresso Dark": "espresso-dark.yaml", - "Espresso Dark Theme": "espresso-dark-theme.yaml", - "Espresso-High": "espresso-high.yaml", "Etec PFA - Light": "etec-pfa-light.yaml", "Eternal Autumn": "eternal-autumn.yaml", "Eternal Summer": "eternal-summer.yaml", - "Eternals No Italic": "eternals-no-italic.yaml", + "Eternals": "eternals.yaml", "EthanLi Turquoise Dark": "ethanli-turquoise-dark.yaml", "ethereal": "ethereal.yaml", - "Ethereum Dark Blue Theme": "ethereum-dark-blue-theme.yaml", - "Ethereum Dark Grey Theme": "ethereum-dark-grey-theme.yaml", + "Ethereum Dark Theme (Ethereum Dark Blue Theme)": "ethereum-dark-theme--ethereum-dark-blue-theme.yaml", + "Ethereum Dark Theme (Ethereum Dark Grey Theme)": "ethereum-dark-theme--ethereum-dark-grey-theme.yaml", "Eva Theme": "eva-theme.yaml", - "EVA Unit-02 Theme (Enhanced Red & Grey Variation)": "eva-unit-02-theme-enhanced-red-grey-variation.yaml", - "EVA-01": "eva-01.yaml", - "EVA-01 Berserk Theme": "eva-01-berserk-theme.yaml", + "Evangelion Unit EVA-01 Theme": "evangelion-unit-eva-01-theme.yaml", + "evangelion unit-01 berserk theme": "evangelion-unit-01-berserk-theme.yaml", "EVANS": "evans.yaml", + "Evans Dark Theme": "evans-dark-theme.yaml", "evans-dark-theme": "evans-dark-theme.yaml", - "Eve": "eve.yaml", + "EVASCode: The End of Development": "evascode-the-end-of-development.yaml", "Evening Sky": "evening-sky.yaml", - "Everforest Dark": "everforest-dark.yaml", + "Everforest (Everforest Dark)": "everforest--everforest-dark.yaml", + "Everforest (Everforest Light)": "everforest--everforest-light.yaml", "Everforest Light": "everforest-light.yaml", "Everforest Night Hard": "everforest-night-hard.yaml", "Everforest Night Light Hard": "everforest-night-light-hard.yaml", @@ -2073,71 +2237,101 @@ "Everforest Night Light Soft": "everforest-night-light-soft.yaml", "Everforest Night Medium": "everforest-night-medium.yaml", "Everforest Night Soft": "everforest-night-soft.yaml", - "Everforest Pro Dark": "everforest-pro-dark.yaml", - "Everforest Pro Dark Cozy": "everforest-pro-dark-cozy.yaml", - "Everforest Pro Dark Vibrant": "everforest-pro-dark-vibrant.yaml", - "Everforest Pro Light": "everforest-pro-light.yaml", - "Everforest Pro Light Cozy": "everforest-pro-light-cozy.yaml", - "Everforest Pro Light Vibrant": "everforest-pro-light-vibrant.yaml", - "Everforest Soft": "everforest-soft.yaml", - "Evergarden": "evergarden.yaml", - "Evergarden Winter": "evergarden-winter.yaml", - "Evergarden Winter Light": "evergarden-winter-light.yaml", - "EverNex": "evernex.yaml", + "Everforest Pro (Everforest Pro Dark Cozy)": "everforest-pro--everforest-pro-dark-cozy.yaml", + "Everforest Pro (Everforest Pro Dark Vibrant)": "everforest-pro--everforest-pro-dark-vibrant.yaml", + "Everforest Pro (Everforest Pro Light Cozy)": "everforest-pro--everforest-pro-light-cozy.yaml", + "Everforest Pro (Everforest Pro Light Vibrant)": "everforest-pro--everforest-pro-light-vibrant.yaml", + "everforest-moist (Everforest Soft)": "everforest-moist--everforest-soft.yaml", + "Evergarden Theme": "evergarden-theme.yaml", + "Evergarden Winter (Evergarden Winter Light)": "evergarden-winter--evergarden-winter-light.yaml", + "Evergarden Winter (Evergarden Winter)": "evergarden-winter--evergarden-winter.yaml", + "Everything Monokai": "everything-monokai.yaml", "Evex Dark": "evex-dark.yaml", "Evondev Minimal Theme": "evondev-minimal-theme.yaml", "Evondev Tailwind Theme": "evondev-tailwind-theme.yaml", - "Evro Dark": "evro-dark.yaml", - "Evro Darker Flat": "evro-darker-flat.yaml", + "Evro Dark (Evro Dark)": "evro-dark--evro-dark.yaml", + "Evro Dark (Evro Darker Flat)": "evro-dark--evro-darker-flat.yaml", + "Exa - Theme Pack": "exa-theme-pack.yaml", "ExalandDark": "exalanddark.yaml", "ExecLabs": "execlabs.yaml", - "Executive-Level": "executive-level.yaml", "Exias Theme (Forest)": "exias-theme-forest.yaml", "Exias Theme (Town)": "exias-theme-town.yaml", "exile": "exile.yaml", - "EXOVOID Purple Better C++": "exovoid-purple-better-c.yaml", + "ExoVoid": "exovoid.yaml", "exploit": "exploit.yaml", - "Extreme Dark Theme": "extreme-dark-theme.yaml", + "exploit - エクスプロイト": "exploit.yaml", + "Extreme Theme": "extreme-theme.yaml", "Eye Care Dark": "eye-care-dark.yaml", "Eye Care Light": "eye-care-light.yaml", - "Eye Care Owl Light": "eye-care-owl-light.yaml", - "Eye Comfort Light": "eye-comfort-light.yaml", - "eye-care": "eye-care.yaml", - "eye-care-owl": "eye-care-owl.yaml", + "Eye Care Themes (Eye Care Owl Light)": "eye-care-themes--eye-care-owl-light.yaml", + "Eye Care Themes (eye-care-owl)": "eye-care-themes--eye-care-owl.yaml", + "Eye Comfort Themes (Eye Comfort Light)": "eye-comfort-themes--eye-comfort-light.yaml", + "Eyeball Dark": "eyeball-dark.yaml", "EyeBreaker": "eyebreaker.yaml", "EyeCooler": "eyecooler.yaml", "EyeGuard": "eyeguard.yaml", "EyeHealth Dark": "eyehealth-dark.yaml", "EyeHealth Plus Light": "eyehealth-plus-light.yaml", "Eyera": "eyera.yaml", + "Eyes-love-theme": "eyes-love-theme.yaml", "Eyesore": "eyesore.yaml", "ezcord": "ezcord.yaml", "ezcord-highcontrast": "ezcord-highcontrast.yaml", "ezcord-light": "ezcord-light.yaml", "ezcord-pastel": "ezcord-pastel.yaml", "ezgiturali-halloween": "ezgiturali-halloween.yaml", + "ezra": "ezra.yaml", "Ezra": "ezra.yaml", - "Fabi": "fabi.yaml", + "FA theme": "fa-theme.yaml", "FabulApps Theme": "fabulapps-theme.yaml", "Fabulous Las Vegas — After Dark": "fabulous-las-vegas-after-dark.yaml", "Fabulous Las Vegas — High Noon": "fabulous-las-vegas-high-noon.yaml", - "FADY EHAB AMER DARK THEME": "fady-ehab-amer-dark-theme.yaml", - "Fae": "fae.yaml", + "Fae Color Theme": "fae-color-theme.yaml", + "faerie-online": "faerie-online.yaml", "Faerie.Online": "faerie-online.yaml", "FakeDonald's": "fakedonald-s.yaml", "Falcon": "falcon.yaml", "FalconUI Theme": "falconui-theme.yaml", + "Fallout-Dark (Architect (dark) - Fork)": "fallout-dark-architect-dark-fork.yaml", + "Fallout-Dark (Ultrafocus - Fork - Fork)": "fallout-dark--ultrafocus-fork-fork.yaml", + "Fallout-Dark (Video-Contrast)": "fallout-dark--video-contrast.yaml", + "Fallout-Dark (VS Code Deep F.lux - Fork - Fork)": "fallout-dark--vs-code-deep-f-lux-fork-fork.yaml", + "Familiar Java Themes": "familiar-java-themes.yaml", "Famous Dev Light": "famous-dev-light.yaml", "Famous Dev Midnight": "famous-dev-midnight.yaml", "Fanuc Karel": "fanuc-karel.yaml", + "FaustVI00": "faustvi00.yaml", "fcc0ff": "fcc0ff.yaml", "fcode": "fcode.yaml", + "FEA DARK THEME": "fea-dark-theme.yaml", + "Fearless Color Themes (Untitled)": "fearless-color-themes--untitled.yaml", "Fearless Dark": "fearless-dark.yaml", + "Fedaykin (Dune Arrakis Incandescent)": "fedaykin--dune-arrakis-incandescent.yaml", + "Fedaykin (Dune Bene Gesserit)": "fedaykin--dune-bene-gesserit.yaml", + "Fedaykin (Dune Caladan Storm)": "fedaykin--dune-caladan-storm.yaml", + "Fedaykin (Dune Fremen Sietch)": "fedaykin--dune-fremen-sietch.yaml", + "Fedaykin (Dune Giedi Prime)": "fedaykin--dune-giedi-prime.yaml", + "Fedaykin (Dune Guild Navigator)": "fedaykin--dune-guild-navigator.yaml", + "Fedaykin (Dune Harkonnen)": "fedaykin--dune-harkonnen.yaml", + "Fedaykin (Dune House Atreides)": "fedaykin--dune-house-atreides.yaml", + "Fedaykin (Dune Ix Technology)": "fedaykin--dune-ix-technology.yaml", + "Fedaykin (Dune Mentat)": "fedaykin--dune-mentat.yaml", + "Fedaykin (Dune Muad'Dib)": "fedaykin--dune-muad-dib.yaml", + "Fedaykin (Dune Salusa Secundus)": "fedaykin--dune-salusa-secundus.yaml", + "Fedaykin (Dune Sandworm)": "fedaykin--dune-sandworm.yaml", + "Fedaykin (Dune Sardaukar Imperial)": "fedaykin--dune-sardaukar-imperial.yaml", + "Fedaykin (Dune Spacing Guild)": "fedaykin--dune-spacing-guild.yaml", + "Fedaykin (Dune Spice Vision)": "fedaykin--dune-spice-vision.yaml", + "Fedaykin (Dune Water of Life)": "fedaykin--dune-water-of-life.yaml", + "Fedaykin (dune-kaitain)": "fedaykin--dune-kaitain.yaml", "Feefoolec 2.0": "feefoolec-2-0.yaml", "Feels Like Progress Light": "feels-like-progress-light.yaml", "Felina": "felina.yaml", + "feline-color-theme": "feline-color-theme.yaml", "Feline-color-theme": "feline-color-theme.yaml", + "feline-theme": "feline-theme.yaml", "Feline-theme": "feline-theme.yaml", + "felipaotest": "felipaotest.yaml", "felixo-green": "felixo-green.yaml", "felixo-green-contrast": "felixo-green-contrast.yaml", "felixo-green-light": "felixo-green-light.yaml", @@ -2146,38 +2340,44 @@ "felixo-orange-light": "felixo-orange-light.yaml", "Felixoux-theme": "felixoux-theme.yaml", "Feliz-Dark": "feliz-dark.yaml", + "ferdinaldo-dark-theme": "ferdinaldo-dark-theme.yaml", "ferra": "ferra.yaml", "feta": "feta.yaml", + "Feynuus Theme": "feynuus-theme.yaml", "FictionalTheme": "fictionaltheme.yaml", + "fiestas": "fiestas.yaml", "Fiestas": "fiestas.yaml", "fifties": "fifties.yaml", + "Fifties": "fifties.yaml", "Fifty Shades of Grape": "fifty-shades-of-grape.yaml", - "Fig": "fig.yaml", - "filter-turbo-color-theme": "filter-turbo-color-theme.yaml", "filtered": "filtered.yaml", "FinalBossJeff": "finalbossjeff.yaml", + "Finger Paint Set AYMS (Themer Dark)": "finger-paint-set-ayms--themer-dark.yaml", + "Finger Paint Set AYMS (Themer Light)": "finger-paint-set-ayms--themer-light.yaml", "finn4ik666corp": "finn4ik666corp.yaml", "Firefly": "firefly.yaml", - "FireFly": "firefly.yaml", - "Firefox Dark": "firefox-dark.yaml", + "Firefly (Firefly)": "firefly--firefly.yaml", + "FireFly Pro (FireFly)": "firefly-pro--firefly.yaml", + "Firefox Theme": "firefox-theme.yaml", + "FirefoxTheme (Firefox Dark)": "firefoxtheme--firefox-dark.yaml", "Firelight": "firelight.yaml", "Fireside": "fireside.yaml", "firewatch": "firewatch.yaml", + "firsttema (Untitled)": "firsttema--untitled.yaml", "FlameLabs - Fire": "flamelabs-fire.yaml", "FlameLabs - Plasma": "flamelabs-plasma.yaml", "Flamingo Nebula": "flamingo-nebula.yaml", "Flash Green Dark": "flash-green-dark.yaml", "Flat Light": "flat-light.yaml", + "Flat UI": "flat-ui.yaml", "Flat UI & One Dark": "flat-ui-one-dark.yaml", - "Flat-Theme Gray": "flat-theme-gray.yaml", - "Flat-Theme Light": "flat-theme-light.yaml", - "flat-ui immersed": "flat-ui-immersed.yaml", + "Flat-Theme (Flat-Theme Gray)": "flat-theme--flat-theme-gray.yaml", + "Flat-Theme (Flat-Theme Light)": "flat-theme--flat-theme-light.yaml", "Flatcap": "flatcap.yaml", "Flatland Monokai Improved": "flatland-monokai-improved.yaml", "FlatUIexp": "flatuiexp.yaml", "Flavia": "flavia.yaml", - "Fleetheme": "fleetheme.yaml", - "Fleeting Theme Modern": "fleeting-theme-modern.yaml", + "Fleeting Theme": "fleeting-theme.yaml", "Fleetish": "fleetish.yaml", "FleetOneDark": "fleetonedark.yaml", "Fleety": "fleety.yaml", @@ -2198,56 +2398,55 @@ "Fleex Theme Warm Dark": "fleex-theme-warm-dark.yaml", "Fleex Theme Warm Light": "fleex-theme-warm-light.yaml", "Fleury Theme": "fleury-theme.yaml", + "flex appeal": "flex-appeal.yaml", "Flex Appeal": "flex-appeal.yaml", - "Flexoki": "flexoki.yaml", - "flippidippi light": "flippidippi-light.yaml", + "Flexoki (Flexoki)": "flexoki--flexoki.yaml", + "Flexoki Plus": "flexoki-plus.yaml", "Flora": "flora.yaml", "florence": "florence.yaml", "floriamaris": "floriamaris.yaml", - "Florist Light": "florist-light.yaml", - "florist-dark": "florist-dark.yaml", + "Florist Theme (Florist Light)": "florist-theme--florist-light.yaml", + "Florist Theme (florist-dark)": "florist-theme--florist-dark.yaml", "flow-better-theme": "flow-better-theme.yaml", "FluentBlue": "fluentblue.yaml", "Fluffy Dark Theme": "fluffy-dark-theme.yaml", "Fluffy Theme": "fluffy-theme.yaml", "Fluid Light Theme": "fluid-light-theme.yaml", + "FlukerBr theme": "flukerbr-theme.yaml", "FlukerBr-theme": "flukerbr-theme.yaml", - "Fluminense": "fluminense.yaml", - "Flutter Dark": "flutter-dark.yaml", + "Fluminense Theme": "fluminense-theme.yaml", + "Flutter Theme": "flutter-theme.yaml", + "flutter-theme-dark": "flutter-theme-dark.yaml", "Flutter-Theme-Dark": "flutter-theme-dark.yaml", "Flux": "flux.yaml", "Flux Dark": "flux-dark.yaml", - "Flux Dawn": "flux-dawn.yaml", - "Flux Daylight": "flux-daylight.yaml", - "Flux Night": "flux-night.yaml", - "Flux Twilight": "flux-twilight.yaml", + "Flux Theme (Legacy) (Flux Dawn)": "flux-theme-legacy--flux-dawn.yaml", + "Flux Theme (Legacy) (Flux Daylight)": "flux-theme-legacy--flux-daylight.yaml", + "Flux Theme (Legacy) (Flux Night)": "flux-theme-legacy--flux-night.yaml", + "Flux Theme (Legacy) (Flux Twilight)": "flux-theme-legacy--flux-twilight.yaml", "Fluxish": "fluxish.yaml", - "Foco 1.0.0": "foco-1-0-0.yaml", + "focal": "focal.yaml", + "Foco Light": "foco-light.yaml", "Focus Blue - Concentration & Trust": "focus-blue-concentration-trust.yaml", "Focus Blue Colorblind - Concentration & Trust": "focus-blue-colorblind-concentration-trust.yaml", "Focus Blue High Contrast - Concentration & Trust": "focus-blue-high-contrast-concentration-trust.yaml", "Focus Blue Light - Concentration & Trust": "focus-blue-light-concentration-trust.yaml", "Focus Dark - Fork - Fork": "focus-dark-fork-fork.yaml", - "Focus-Colors": "focus-colors.yaml", "focusOnCoding": "focusoncoding.yaml", - "fodder": "fodder.yaml", - "fodder-contrast": "fodder-contrast.yaml", - "fodder-light": "fodder-light.yaml", "Fog Hazy": "fog-hazy.yaml", - "Foggy Forest V1": "foggy-forest-v1.yaml", "Foggy Minimal": "foggy-minimal.yaml", + "foggy-forest": "foggy-forest.yaml", "fonteeboa": "fonteeboa.yaml", + "Fonteeboa": "fonteeboa.yaml", + "Forest": "forest.yaml", "Forest Green": "forest-green.yaml", "Forest Green - Vitality & Connection": "forest-green-vitality-connection.yaml", "forest light": "forest-light.yaml", "Forest Night": "forest-night.yaml", - "Forest Night - Ethereal Magic": "forest-night-ethereal-magic.yaml", - "Forest Night (Italic) Serenade": "forest-night-italic-serenade.yaml", - "Forest Night Serenade": "forest-night-serenade.yaml", - "Forest Rose": "forest-rose.yaml", + "Forest Night - Ethereal": "forest-night-ethereal.yaml", + "Forest Night Serenade (Forest Night (Italic) Serenade)": "forest-night-serenade-forest-night-italic-serenade.yaml", + "Forest Night Serenade (Forest Night Serenade)": "forest-night-serenade--forest-night-serenade.yaml", "Forest Violet": "forest-violet.yaml", - "forest-color-theme": "forest-color-theme.yaml", - "Forest-Tech": "forest-tech.yaml", "forestfly Dark": "forestfly-dark.yaml", "forestfly Dark Hard": "forestfly-dark-hard.yaml", "forestfly Light Hard": "forestfly-light-hard.yaml", @@ -2255,6 +2454,7 @@ "Forestry": "forestry.yaml", "Forge (Dark)": "forge-dark.yaml", "Forge (Light)": "forge-light.yaml", + "Forgive Green": "forgive-green.yaml", "Formal": "formal.yaml", "Formosa Dark - Ipanema Blue": "formosa-dark-ipanema-blue.yaml", "Formosa Dark - Night Green": "formosa-dark-night-green.yaml", @@ -2262,93 +2462,101 @@ "Formosa Light - Night Green": "formosa-light-night-green.yaml", "forventone": "forventone.yaml", "FORXTU": "forxtu.yaml", + "Fosphor": "fosphor.yaml", "Foundyn Dev": "foundyn-dev.yaml", - "FoxDracula-color-theme": "foxdracula-color-theme.yaml", + "Four Sages Theme": "four-sages-theme.yaml", "foxnett-nexus-theme": "foxnett-nexus-theme.yaml", + "frame": "frame.yaml", "Frankenstein": "frankenstein.yaml", - "frantic": "frantic.yaml", - "frantic-contrast": "frantic-contrast.yaml", - "frantic-light": "frantic-light.yaml", "French Rose": "french-rose.yaml", + "Fresh Green Theme": "fresh-green-theme.yaml", "Fresh Start": "fresh-start.yaml", - "fresh-green-color-theme": "fresh-green-color-theme.yaml", - "freshcut": "freshcut.yaml", - "freshcut-contrast": "freshcut-contrast.yaml", - "freshcut-light": "freshcut-light.yaml", "Fretefy": "fretefy.yaml", - "friction": "friction.yaml", - "friction-contrast": "friction-contrast.yaml", - "friction-light": "friction-light.yaml", "Fridge": "fridge.yaml", "Friendly": "friendly.yaml", + "Friendly Dark": "friendly-dark.yaml", "Frog Terminal": "frog-terminal.yaml", + "Front Matter CMS - Theme": "front-matter-cms-theme.yaml", "Front Matter CMS Theme": "front-matter-cms-theme.yaml", "Frontend Galaxy": "frontend-galaxy.yaml", - "frontier": "frontier.yaml", - "frontier-contrast": "frontier-contrast.yaml", - "frontier-light": "frontier-light.yaml", + "frost theme": "frost-theme.yaml", "frost-spark-dark": "frost-spark-dark.yaml", - "Frozen-Deep": "frozen-deep.yaml", "frubilar": "frubilar.yaml", "fruitbasket-dark": "fruitbasket-dark.yaml", "fruitbasket-light": "fruitbasket-light.yaml", "Fruity Loops": "fruity-loops.yaml", + "fruity-loops": "fruity-loops.yaml", + "ftrblue": "ftrblue.yaml", "ftrblue.": "ftrblue.yaml", "fuck-all-these-vscode-custom-ugly-themes": "fuck-all-these-vscode-custom-ugly-themes.yaml", + "FullBlack": "fullblack.yaml", + "FullstacksJS Theme": "fullstacksjs-theme.yaml", "Funchosa Dark Theme": "funchosa-dark-theme.yaml", "FunCode": "funcode.yaml", "functional": "functional.yaml", + "Functional Matrix - Clubcleaver": "functional-matrix-clubcleaver.yaml", "Furnace": "furnace.yaml", - "Furukawa Pop Theme": "furukawa-pop-theme.yaml", + "Furukawa Theme": "furukawa-theme.yaml", "Futuremotion Light": "futuremotion-light.yaml", "Futuristic Green": "futuristic-green.yaml", "Futuristt": "futuristt.yaml", - "G Dark (Blue Whale)": "g-dark-blue-whale.yaml", - "G Dark (Jacksons Purple)": "g-dark-jacksons-purple.yaml", - "G Dark (One Love)": "g-dark-one-love.yaml", - "G Dark (Valhalla)": "g-dark-valhalla.yaml", - "G Dark-light (Alice Blue)": "g-dark-light-alice-blue.yaml", - "G Dark-light (Glitter)": "g-dark-light-glitter.yaml", - "G Dark-light (Hint of Red)": "g-dark-light-hint-of-red.yaml", - "G Dark-minimal (Midnight)": "g-dark-minimal-midnight.yaml", - "G Dark-minimal-2 (Astronaut Blue)": "g-dark-minimal-2-astronaut-blue.yaml", - "G Dark-minimal-3 (Oxford Blue)": "g-dark-minimal-3-oxford-blue.yaml", - "G Dark-one-love (Black Pearl)": "g-dark-one-love-black-pearl.yaml", - "G Dark-Shader - H@ck3r (Midnight Moss)": "g-dark-shader-h-ck3r-midnight-moss.yaml", "G Dark-shader (Haiti)": "g-dark-shader-haiti.yaml", - "G Dark-Shader (Haiti)": "g-dark-shader-haiti.yaml", - "G Dark-Shader (Mirage)": "g-dark-shader-mirage.yaml", - "G Dark-Shift (Midnight Moss)": "g-dark-shift-midnight-moss.yaml", - "G Dark-shift (Vulcan)": "g-dark-shift-vulcan.yaml", + "G Dark-Themes (G Dark (Blue Whale))": "g-dark-themes-g-dark-blue-whale.yaml", + "G Dark-Themes (G Dark (Jacksons Purple))": "g-dark-themes-g-dark-jacksons-purple.yaml", + "G Dark-Themes (G Dark (One Love))": "g-dark-themes-g-dark-one-love.yaml", + "G Dark-Themes (G Dark (Valhalla))": "g-dark-themes-g-dark-valhalla.yaml", + "G Dark-Themes (G Dark-light (Alice Blue))": "g-dark-themes-g-dark-light-alice-blue.yaml", + "G Dark-Themes (G Dark-light (Glitter))": "g-dark-themes-g-dark-light-glitter.yaml", + "G Dark-Themes (G Dark-light (Hint of Red))": "g-dark-themes-g-dark-light-hint-of-red.yaml", + "G Dark-Themes (G Dark-minimal (Midnight))": "g-dark-themes-g-dark-minimal-midnight.yaml", + "G Dark-Themes (G Dark-minimal-2 (Astronaut Blue))": "g-dark-themes-g-dark-minimal-2-astronaut-blue.yaml", + "G Dark-Themes (G Dark-minimal-3 (Oxford Blue))": "g-dark-themes-g-dark-minimal-3-oxford-blue.yaml", + "G Dark-Themes (G Dark-one-love (Black Pearl))": "g-dark-themes-g-dark-one-love-black-pearl.yaml", + "G Dark-Themes (G Dark-Shader - H@ck3r (Midnight Moss))": "g-dark-themes-g-dark-shader-h-ck3r-midnight-moss.yaml", + "G Dark-Themes (G Dark-shader (Haiti))": "g-dark-themes-g-dark-shader-haiti.yaml", + "G Dark-Themes (G Dark-Shader (Haiti))": "g-dark-themes-g-dark-shader-haiti.yaml", + "G Dark-Themes (G Dark-Shader (Mirage))": "g-dark-themes-g-dark-shader-mirage.yaml", + "G Dark-Themes (G Dark-Shift (Midnight Moss))": "g-dark-themes-g-dark-shift-midnight-moss.yaml", + "G Dark-Themes (G Dark-shift (Vulcan))": "g-dark-themes-g-dark-shift-vulcan.yaml", "G.I. Reaper": "g-i-reaper.yaml", "G.I. Seraph": "g-i-seraph.yaml", "G3 Gray": "g3-gray.yaml", + "Gab Dark": "gab-dark.yaml", + "Gabi Dark": "gabi-dark.yaml", "Gagarin Theme": "gagarin-theme.yaml", "Galactic Flavored": "galactic-flavored.yaml", - "galactus": "galactus.yaml", + "galactus (galactus)": "galactus--galactus.yaml", + "galactus (jwrdark)": "galactus--jwrdark.yaml", "Galaxia": "galaxia.yaml", "Galaxian": "galaxian.yaml", - "GalaxyTheme+": "galaxytheme.yaml", + "Galaxy Theme": "galaxy-theme.yaml", + "Galaxy+": "galaxy.yaml", "Galizur": "galizur.yaml", - "GAME MODE": "game-mode.yaml", - "GameBoy Classic Dark": "gameboy-classic-dark.yaml", - "GameBoy Classic Light": "gameboy-classic-light.yaml", + "GAME MODE - Cyberpunk Theme": "game-mode-cyberpunk-theme.yaml", + "Game of Thrones - The Seven Kingdoms (GOT: Beyond the Wall)": "game-of-thrones-the-seven-kingdoms--got-beyond-the-wall.yaml", + "Game of Thrones - The Seven Kingdoms (GOT: House Baratheon)": "game-of-thrones-the-seven-kingdoms--got-house-baratheon.yaml", + "Game of Thrones - The Seven Kingdoms (GOT: House Greyjoy)": "game-of-thrones-the-seven-kingdoms--got-house-greyjoy.yaml", + "Game of Thrones - The Seven Kingdoms (GOT: House Lannister)": "game-of-thrones-the-seven-kingdoms--got-house-lannister.yaml", + "Game of Thrones - The Seven Kingdoms (GOT: House Martell)": "game-of-thrones-the-seven-kingdoms--got-house-martell.yaml", + "Game of Thrones - The Seven Kingdoms (GOT: House Stark)": "game-of-thrones-the-seven-kingdoms--got-house-stark.yaml", + "Game of Thrones - The Seven Kingdoms (GOT: House Targaryen)": "game-of-thrones-the-seven-kingdoms--got-house-targaryen.yaml", + "Game of Thrones - The Seven Kingdoms (GOT: Night's Watch)": "game-of-thrones-the-seven-kingdoms--got-night-s-watch.yaml", + "Game of Thrones - The Seven Kingdoms (GOT: The Iron Throne)": "game-of-thrones-the-seven-kingdoms--got-the-iron-throne.yaml", + "GameBoy Classic Theme (GameBoy Classic Dark)": "gameboy-classic-theme--gameboy-classic-dark.yaml", + "GameBoy Classic Theme (GameBoy Classic Light)": "gameboy-classic-theme--gameboy-classic-light.yaml", "Gamma": "gamma.yaml", - "Gamma - Fork": "gamma-fork.yaml", - "Ganbaru blue": "ganbaru-blue.yaml", - "Ganbaru Dark": "ganbaru-dark.yaml", - "Gantheory Dark": "gantheory-dark.yaml", + "Ganbaru (Ganbaru blue)": "ganbaru--ganbaru-blue.yaml", + "Ganbaru (Ganbaru Dark)": "ganbaru--ganbaru-dark.yaml", + "Gantheory Theme": "gantheory-theme.yaml", "Ganyu Theme": "ganyu-theme.yaml", - "GapStyle VS": "gapstyle-vs.yaml", - "GapStyle VS Dark Modern": "gapstyle-vs-dark-modern.yaml", + "GapStyle VS (GapStyle VS Dark Modern)": "gapstyle-vs--gapstyle-vs-dark-modern.yaml", "Garbage Oracle Dark": "garbage-oracle-dark.yaml", "Garbage Oracle Light": "garbage-oracle-light.yaml", "Gatito Next Theme": "gatito-next-theme.yaml", "Gatito Nightly Red": "gatito-nightly-red.yaml", "Gatito Theme": "gatito-theme.yaml", "gatomontesDark2": "gatomontesdark2.yaml", - "Gauss-TheTheme": "gauss-thetheme.yaml", - "gckn": "gckn.yaml", + "Gauss Theme": "gauss-theme.yaml", "GDFunkyTheme": "gdfunkytheme.yaml", "gdscript35": "gdscript35.yaml", "GearTheme": "geartheme.yaml", @@ -2358,59 +2566,75 @@ "GelGel": "gelgel.yaml", "Gems-Theme-Default": "gems-theme-default.yaml", "Gems-Theme-Light": "gems-theme-light.yaml", - "gen-theme": "gen-theme.yaml", + "gen": "gen.yaml", "Generated Color Theme": "generated-color-theme.yaml", - "Genshin Impact - Chiori": "genshin-impact-chiori.yaml", - "Genshin Impact - Chiori (Dark)": "genshin-impact-chiori-dark.yaml", - "Genshin Impact - Citlali": "genshin-impact-citlali.yaml", - "Genshin Impact - Citlali (Dark)": "genshin-impact-citlali-dark.yaml", - "Genshin Impact - Columbina": "genshin-impact-columbina.yaml", - "Genshin Impact - Furina": "genshin-impact-furina.yaml", - "Genshin Impact - Furina (Dark)": "genshin-impact-furina-dark.yaml", - "Genshin Impact - Ganyu (Dark)": "genshin-impact-ganyu-dark.yaml", - "Genshin Impact - Ganyu (High Contrast)": "genshin-impact-ganyu-high-contrast.yaml", - "Genshin Impact - Ganyu (Light)": "genshin-impact-ganyu-light.yaml", - "Genshin Impact - Il Dottore": "genshin-impact-il-dottore.yaml", - "Genshin Impact - Il Dottore (Dark)": "genshin-impact-il-dottore-dark.yaml", - "Genshin Impact - Kamisato Ayaka": "genshin-impact-kamisato-ayaka.yaml", - "Genshin Impact - Kamisato Ayaka (Dark)": "genshin-impact-kamisato-ayaka-dark.yaml", - "Genshin Impact - Layla": "genshin-impact-layla.yaml", - "Genshin Impact - Layla (Dark)": "genshin-impact-layla-dark.yaml", - "Genshin Impact - Sandrone": "genshin-impact-sandrone.yaml", - "Genshin Impact - Sandrone (Dark)": "genshin-impact-sandrone-dark.yaml", - "Genshin Impact - Scaramouche": "genshin-impact-scaramouche.yaml", - "Genshin Impact - Scaramouche (Dark)": "genshin-impact-scaramouche-dark.yaml", - "Genshin Impact - Skirk": "genshin-impact-skirk.yaml", - "Genshin Impact - Skirk (Dark)": "genshin-impact-skirk-dark.yaml", - "Genshin Impact - Wanderer": "genshin-impact-wanderer.yaml", - "Genshin Impact - Wanderer (Dark)": "genshin-impact-wanderer-dark.yaml", - "Genshin Impact - Yae Miko": "genshin-impact-yae-miko.yaml", - "Genshin Impact - Yae Miko (Dark)": "genshin-impact-yae-miko-dark.yaml", - "Genshin Impact - Yumemizuki Mizuki (Dark)": "genshin-impact-yumemizuki-mizuki-dark.yaml", - "Genshin Impact - Yumemizuki Mizuki (High Contrast)": "genshin-impact-yumemizuki-mizuki-high-contrast.yaml", - "Genshin Impact - Yumemizuki Mizuki (Light)": "genshin-impact-yumemizuki-mizuki-light.yaml", - "Genshin Vibes: Celestine Bardlight": "genshin-vibes-celestine-bardlight.yaml", - "Genshin Vibes: Damselette Whisper": "genshin-vibes-damselette-whisper.yaml", - "Genshin Vibes: Emergency Food": "genshin-vibes-emergency-food.yaml", - "Genshin Vibes: Eternal Electro Throne": "genshin-vibes-eternal-electro-throne.yaml", - "Genshin Vibes: Fontaine Spotlight": "genshin-vibes-fontaine-spotlight.yaml", - "Genshin Vibes: Frost Ritual": "genshin-vibes-frost-ritual.yaml", - "Genshin Vibes: Geo Contract Vault": "genshin-vibes-geo-contract-vault.yaml", - "Genshin Vibes: Hydrocourt Midnight": "genshin-vibes-hydrocourt-midnight.yaml", - "Genshin Vibes: Ice Oracle": "genshin-vibes-ice-oracle.yaml", - "Genshin Vibes: Kusanali Dawnbloom": "genshin-vibes-kusanali-dawnbloom.yaml", - "Genshin Vibes: Lava Glaze Inferno": "genshin-vibes-lava-glaze-inferno.yaml", - "Genshin Vibes: Morax Golden Seal": "genshin-vibes-morax-golden-seal.yaml", - "Genshin Vibes: Outrider Blaze": "genshin-vibes-outrider-blaze.yaml", - "Genshin Vibes: Pyro Scout": "genshin-vibes-pyro-scout.yaml", - "Genshin Vibes: Starry Companion": "genshin-vibes-starry-companion.yaml", - "Genshin Vibes: Stormrider Breeze": "genshin-vibes-stormrider-breeze.yaml", - "Genshin Vibes: Sunforge Ember": "genshin-vibes-sunforge-ember.yaml", - "Genshin Vibes: Veiled Harbinger": "genshin-vibes-veiled-harbinger.yaml", - "Genshin Vibes: Verdant Dreamweave": "genshin-vibes-verdant-dreamweave.yaml", - "Genshin Vibes: Violet Eternity Glow": "genshin-vibes-violet-eternity-glow.yaml", + "genshin impact & hsr color themes (Genshin Impact - Chiori (Dark))": "genshin-impact-hsr-color-themes-genshin-impact-chiori-dark.yaml", + "genshin impact & hsr color themes (Genshin Impact - Chiori)": "genshin-impact-hsr-color-themes--genshin-impact-chiori.yaml", + "genshin impact & hsr color themes (Genshin Impact - Citlali (Dark))": "genshin-impact-hsr-color-themes-genshin-impact-citlali-dark.yaml", + "genshin impact & hsr color themes (Genshin Impact - Citlali)": "genshin-impact-hsr-color-themes--genshin-impact-citlali.yaml", + "genshin impact & hsr color themes (Genshin Impact - Columbina (Dark))": "genshin-impact-hsr-color-themes-genshin-impact-columbina-dark.yaml", + "genshin impact & hsr color themes (Genshin Impact - Columbina)": "genshin-impact-hsr-color-themes--genshin-impact-columbina.yaml", + "genshin impact & hsr color themes (Genshin Impact - Furina (Dark))": "genshin-impact-hsr-color-themes-genshin-impact-furina-dark.yaml", + "genshin impact & hsr color themes (Genshin Impact - Furina)": "genshin-impact-hsr-color-themes--genshin-impact-furina.yaml", + "genshin impact & hsr color themes (Genshin Impact - Ganyu (Dark))": "genshin-impact-hsr-color-themes-genshin-impact-ganyu-dark.yaml", + "genshin impact & hsr color themes (Genshin Impact - Ganyu (High Contrast))": "genshin-impact-hsr-color-themes-genshin-impact-ganyu-high-contrast.yaml", + "genshin impact & hsr color themes (Genshin Impact - Ganyu (Light))": "genshin-impact-hsr-color-themes-genshin-impact-ganyu-light.yaml", + "genshin impact & hsr color themes (Genshin Impact - Il Dottore (Dark))": "genshin-impact-hsr-color-themes-genshin-impact-il-dottore-dark.yaml", + "genshin impact & hsr color themes (Genshin Impact - Il Dottore)": "genshin-impact-hsr-color-themes--genshin-impact-il-dottore.yaml", + "genshin impact & hsr color themes (Genshin Impact - Kamisato Ayaka (Dark))": "genshin-impact-hsr-color-themes-genshin-impact-kamisato-ayaka-dark.yaml", + "genshin impact & hsr color themes (Genshin Impact - Kamisato Ayaka)": "genshin-impact-hsr-color-themes--genshin-impact-kamisato-ayaka.yaml", + "genshin impact & hsr color themes (Genshin Impact - Layla (Dark))": "genshin-impact-hsr-color-themes-genshin-impact-layla-dark.yaml", + "genshin impact & hsr color themes (Genshin Impact - Layla)": "genshin-impact-hsr-color-themes--genshin-impact-layla.yaml", + "genshin impact & hsr color themes (Genshin Impact - Sandrone (Dark))": "genshin-impact-hsr-color-themes-genshin-impact-sandrone-dark.yaml", + "genshin impact & hsr color themes (Genshin Impact - Sandrone)": "genshin-impact-hsr-color-themes--genshin-impact-sandrone.yaml", + "genshin impact & hsr color themes (Genshin Impact - Scaramouche (Dark))": "genshin-impact-hsr-color-themes-genshin-impact-scaramouche-dark.yaml", + "genshin impact & hsr color themes (Genshin Impact - Scaramouche)": "genshin-impact-hsr-color-themes--genshin-impact-scaramouche.yaml", + "genshin impact & hsr color themes (Genshin Impact - Skirk (Dark))": "genshin-impact-hsr-color-themes-genshin-impact-skirk-dark.yaml", + "genshin impact & hsr color themes (Genshin Impact - Skirk)": "genshin-impact-hsr-color-themes--genshin-impact-skirk.yaml", + "genshin impact & hsr color themes (Genshin Impact - Wanderer (Dark))": "genshin-impact-hsr-color-themes-genshin-impact-wanderer-dark.yaml", + "genshin impact & hsr color themes (Genshin Impact - Wanderer)": "genshin-impact-hsr-color-themes--genshin-impact-wanderer.yaml", + "genshin impact & hsr color themes (Genshin Impact - Yae Miko (Dark))": "genshin-impact-hsr-color-themes-genshin-impact-yae-miko-dark.yaml", + "genshin impact & hsr color themes (Genshin Impact - Yae Miko)": "genshin-impact-hsr-color-themes--genshin-impact-yae-miko.yaml", + "genshin impact & hsr color themes (Genshin Impact - Yumemizuki Mizuki (Dark))": "genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-dark.yaml", + "genshin impact & hsr color themes (Genshin Impact - Yumemizuki Mizuki (High Contrast))": "genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-high-contrast.yaml", + "genshin impact & hsr color themes (Genshin Impact - Yumemizuki Mizuki (Light))": "genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-light.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - Aventurine (Dark))": "genshin-impact-hsr-color-themes-honkai-star-rail-aventurine-dark.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - Aventurine)": "genshin-impact-hsr-color-themes--honkai-star-rail-aventurine.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - Cyrene (Dark))": "genshin-impact-hsr-color-themes-honkai-star-rail-cyrene-dark.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - Cyrene)": "genshin-impact-hsr-color-themes--honkai-star-rail-cyrene.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - Dan Heng (Dark))": "genshin-impact-hsr-color-themes-honkai-star-rail-dan-heng-dark.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - Dan Heng)": "genshin-impact-hsr-color-themes--honkai-star-rail-dan-heng.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - Firefly (Dark))": "genshin-impact-hsr-color-themes-honkai-star-rail-firefly-dark.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - Firefly)": "genshin-impact-hsr-color-themes--honkai-star-rail-firefly.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - Kafka (Dark))": "genshin-impact-hsr-color-themes-honkai-star-rail-kafka-dark.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - Kafka)": "genshin-impact-hsr-color-themes--honkai-star-rail-kafka.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - March 7th (Dark))": "genshin-impact-hsr-color-themes-honkai-star-rail-march-7th-dark.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - March 7th)": "genshin-impact-hsr-color-themes--honkai-star-rail-march-7th.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - Robin (Dark))": "genshin-impact-hsr-color-themes-honkai-star-rail-robin-dark.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - Robin (Light Soft))": "genshin-impact-hsr-color-themes-honkai-star-rail-robin-light-soft.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - Ruan Mei (Dark))": "genshin-impact-hsr-color-themes-honkai-star-rail-ruan-mei-dark.yaml", + "genshin impact & hsr color themes (Honkai: Star Rail - Ruan Mei)": "genshin-impact-hsr-color-themes--honkai-star-rail-ruan-mei.yaml", + "Genshin Vibes (Genshin Vibes: Celestine Bardlight)": "genshin-vibes--genshin-vibes-celestine-bardlight.yaml", + "Genshin Vibes (Genshin Vibes: Damselette Whisper)": "genshin-vibes--genshin-vibes-damselette-whisper.yaml", + "Genshin Vibes (Genshin Vibes: Emergency Food)": "genshin-vibes--genshin-vibes-emergency-food.yaml", + "Genshin Vibes (Genshin Vibes: Eternal Electro Throne)": "genshin-vibes--genshin-vibes-eternal-electro-throne.yaml", + "Genshin Vibes (Genshin Vibes: Fontaine Spotlight)": "genshin-vibes--genshin-vibes-fontaine-spotlight.yaml", + "Genshin Vibes (Genshin Vibes: Frost Ritual)": "genshin-vibes--genshin-vibes-frost-ritual.yaml", + "Genshin Vibes (Genshin Vibes: Geo Contract Vault)": "genshin-vibes--genshin-vibes-geo-contract-vault.yaml", + "Genshin Vibes (Genshin Vibes: Hydrocourt Midnight)": "genshin-vibes--genshin-vibes-hydrocourt-midnight.yaml", + "Genshin Vibes (Genshin Vibes: Ice Oracle)": "genshin-vibes--genshin-vibes-ice-oracle.yaml", + "Genshin Vibes (Genshin Vibes: Kusanali Dawnbloom)": "genshin-vibes--genshin-vibes-kusanali-dawnbloom.yaml", + "Genshin Vibes (Genshin Vibes: Lava Glaze Inferno)": "genshin-vibes--genshin-vibes-lava-glaze-inferno.yaml", + "Genshin Vibes (Genshin Vibes: Morax Golden Seal)": "genshin-vibes--genshin-vibes-morax-golden-seal.yaml", + "Genshin Vibes (Genshin Vibes: Outrider Blaze)": "genshin-vibes--genshin-vibes-outrider-blaze.yaml", + "Genshin Vibes (Genshin Vibes: Pyro Scout)": "genshin-vibes--genshin-vibes-pyro-scout.yaml", + "Genshin Vibes (Genshin Vibes: Starry Companion)": "genshin-vibes--genshin-vibes-starry-companion.yaml", + "Genshin Vibes (Genshin Vibes: Stormrider Breeze)": "genshin-vibes--genshin-vibes-stormrider-breeze.yaml", + "Genshin Vibes (Genshin Vibes: Sunforge Ember)": "genshin-vibes--genshin-vibes-sunforge-ember.yaml", + "Genshin Vibes (Genshin Vibes: Veiled Harbinger)": "genshin-vibes--genshin-vibes-veiled-harbinger.yaml", + "Genshin Vibes (Genshin Vibes: Verdant Dreamweave)": "genshin-vibes--genshin-vibes-verdant-dreamweave.yaml", + "Genshin Vibes (Genshin Vibes: Violet Eternity Glow)": "genshin-vibes--genshin-vibes-violet-eternity-glow.yaml", "Gentil Dark": "gentil-dark.yaml", - "Gentle Builder": "gentle-builder.yaml", "Gentle Clean Light": "gentle-clean-light.yaml", "Gentle Clean Monokai": "gentle-clean-monokai.yaml", "Gentle Dark": "gentle-dark.yaml", @@ -2419,149 +2643,118 @@ "Gentle Light (Warmer)": "gentle-light-warmer.yaml", "Gentle Midnight": "gentle-midnight.yaml", "Gentle Midnight Warm": "gentle-midnight-warm.yaml", + "Gentle Themes (Gentle Builder)": "gentle-themes--gentle-builder.yaml", + "Gentle Themes (Gentle Dark)": "gentle-themes--gentle-dark.yaml", "GentleBlack": "gentleblack.yaml", "GFX": "gfx.yaml", + "GG Djaja": "gg-djaja.yaml", "gg-djaja-darken": "gg-djaja-darken.yaml", "gg-djaja-default": "gg-djaja-default.yaml", - "gg-djaja-light": "gg-djaja-light.yaml", "Ghibli Day": "ghibli-day.yaml", - "Ghibli Forest (Dark)": "ghibli-forest-dark.yaml", "Ghibli Night": "ghibli-night.yaml", "Ghibli Sky (Light)": "ghibli-sky-light.yaml", "ghost louise": "ghost-louise.yaml", "GhostGrey": "ghostgrey.yaml", - "Ghostty Default StyleDark": "ghostty-default-styledark.yaml", + "Ghostty Dark": "ghostty-dark.yaml", "ghostty-synthwave": "ghostty-synthwave.yaml", "gigaaa": "gigaaa.yaml", "GineticusTheme": "gineticustheme.yaml", "Ginseng": "ginseng.yaml", "Gipsy Dark": "gipsy-dark.yaml", - "girls-theme": "girls-theme.yaml", - "github": "github.yaml", "Github Blue - Dark": "github-blue-dark.yaml", "Github Blue - Darkest": "github-blue-darkest.yaml", - "Github Catppuccin Dark": "github-catppuccin-dark.yaml", - "Github Catppuccin Dark Mix": "github-catppuccin-dark-mix.yaml", + "Github Catppuccin Dark (Github Catppuccin Dark Mix)": "github-catppuccin-dark--github-catppuccin-dark-mix.yaml", + "Github Catppuccin Dark (Github Catppuccin Dark)": "github-catppuccin-dark--github-catppuccin-dark.yaml", "Github Dank Dimmed": "github-dank-dimmed.yaml", "GitHub Dark Colorblind (Grayscale)": "github-dark-colorblind-grayscale.yaml", - "GitHub Dark Default": "github-dark-default.yaml", "GitHub Dark Default (Grayscale)": "github-dark-default-grayscale.yaml", - "GitHub Dark Dimmed": "github-dark-dimmed.yaml", "GitHub Dark Dimmed (Grayscale)": "github-dark-dimmed-grayscale.yaml", "GitHub Dark High Contrast (Grayscale)": "github-dark-high-contrast-grayscale.yaml", "GitHub Dark Mode": "github-dark-mode.yaml", - "GitHub Dark Palenight": "github-dark-palenight.yaml", + "GitHub Dark Palenight (GitHub Dark Palenight)": "github-dark-palenight--github-dark-palenight.yaml", "Github Dark Tritanopia": "github-dark-tritanopia.yaml", "GitHub Dark+": "github-dark.yaml", - "GitHub Light Default": "github-light-default.yaml", - "GitHub Minimal": "github-minimal.yaml", - "GitHub Revamp": "github-revamp.yaml", - "github-colorblind": "github-colorblind.yaml", - "github-contrast": "github-contrast.yaml", + "Github Light Hight Contrast Theme": "github-light-hight-contrast-theme.yaml", + "GitHub Minimal Theme (GitHub Minimal)": "github-minimal-theme--github-minimal.yaml", + "GitHub Theme (GitHub Dark Colorblind)": "github-theme--github-dark-colorblind.yaml", + "GitHub Theme (GitHub Dark Default)": "github-theme--github-dark-default.yaml", + "GitHub Theme (GitHub Dark Dimmed)": "github-theme--github-dark-dimmed.yaml", + "GitHub Theme (GitHub Dark High Contrast)": "github-theme--github-dark-high-contrast.yaml", + "GitHub Theme (GitHub Dark)": "github-theme--github-dark.yaml", + "GitHub Theme (GitHub Light Colorblind)": "github-theme--github-light-colorblind.yaml", + "GitHub Theme (GitHub Light Default)": "github-theme--github-light-default.yaml", + "GitHub Theme (GitHub Light High Contrast)": "github-theme--github-light-high-contrast.yaml", + "GitHub Theme (GitHub Light)": "github-theme--github-light.yaml", + "Github Theme by humamafif": "github-theme-by-humamafif.yaml", + "GitHub Theme Minimal (GitHub Dark Default)": "github-theme-minimal--github-dark-default.yaml", + "GitHub Theme Minimal (GitHub Light Default)": "github-theme-minimal--github-light-default.yaml", "github-contrast-theme": "github-contrast-theme.yaml", - "github-dark-theme": "github-dark-theme.yaml", "github-light": "github-light.yaml", - "github-light-theme": "github-light-theme.yaml", + "github-revamp (GitHub Revamp)": "github-revamp--github-revamp.yaml", "Github-theme-by-humamafif": "github-theme-by-humamafif.yaml", + "gitlab": "gitlab.yaml", "GitLab": "gitlab.yaml", - "GitLab Dark": "gitlab-dark.yaml", - "GitLab Dark Grey": "gitlab-dark-grey.yaml", - "GitLab Light": "gitlab-light.yaml", - "Giyu Tomioka": "giyu-tomioka.yaml", + "GitLab WebIDE Theme (GitLab Dark Grey)": "gitlab-webide-theme--gitlab-dark-grey.yaml", + "GitLab WebIDE Theme (GitLab Dark)": "gitlab-webide-theme--gitlab-dark.yaml", + "GitLab WebIDE Theme (GitLab Light)": "gitlab-webide-theme--gitlab-light.yaml", "Giza": "giza.yaml", - "Glacier-Blue": "glacier-blue.yaml", - "glance": "glance.yaml", - "glance-contrast": "glance-contrast.yaml", - "glance-light": "glance-light.yaml", "GlassOnion": "glassonion.yaml", - "gleam-theme-minimal-dark": "gleam-theme-minimal-dark.yaml", - "Glitchly Green": "glitchly-green.yaml", + "Gleam Themes": "gleam-themes.yaml", "Gloam": "gloam.yaml", "Globe": "globe.yaml", - "gloom": "gloom.yaml", - "gloom-contrast": "gloom-contrast.yaml", - "gloom-light": "gloom-light.yaml", - "glowfish": "glowfish.yaml", - "glowfish-contrast": "glowfish-contrast.yaml", - "glowfish-light": "glowfish-light.yaml", "Glowing Sun": "glowing-sun.yaml", "Glowing Yellow": "glowing-yellow.yaml", "GlowMinerals": "glowminerals.yaml", "Glu Dark": "glu-dark.yaml", "Glu Dark Lighter": "glu-dark-lighter.yaml", - "glv's theme": "glv-s-theme.yaml", - "GMS2": "gms2.yaml", - "Gnome Base16": "gnome-base16.yaml", - "Go - Playground": "go-playground.yaml", - "Go - Source": "go-source.yaml", + "glv dark": "glv-dark.yaml", + "GMS2 theme": "gms2-theme.yaml", "Goa - Beach Paradise": "goa-beach-paradise.yaml", "GOD Theme": "god-theme.yaml", - "Godot 4": "godot-4.yaml", - "Gogh": "gogh.yaml", - "Gojo Infinity Dark": "gojo-infinity-dark.yaml", - "Goku Code - Dragon Ball Z Power (Eye-Safe)": "goku-code-dragon-ball-z-power-eye-safe.yaml", + "god-theme": "god-theme.yaml", + "Godot Theme for VS Code": "godot-theme-for-vs-code.yaml", + "Gogh Theme": "gogh-theme.yaml", "gold": "gold.yaml", "Golden Dracula": "golden-dracula.yaml", "Golden Dullahan": "golden-dullahan.yaml", - "Golden Era": "golden-era.yaml", + "Golden Era (Golden Era)": "golden-era--golden-era.yaml", "Golden Eye": "golden-eye.yaml", "Golden Rain": "golden-rain.yaml", "Golden Sky": "golden-sky.yaml", "Golden Sunset": "golden-sunset.yaml", - "Golden Wave": "golden-wave.yaml", "Golden-Blue Color Theme": "golden-blue-color-theme.yaml", - "GoldenTheme": "goldentheme.yaml", - "goldfish": "goldfish.yaml", - "goldfish-contrast": "goldfish-contrast.yaml", - "goldfish-light": "goldfish-light.yaml", + "GoldenZo": "goldenzo.yaml", "Goldream": "goldream.yaml", "Good Purple": "good-purple.yaml", - "GoodMonokai-color-theme": "goodmonokai-color-theme.yaml", + "GoodMonokai": "goodmonokai.yaml", "Goodnight": "goodnight.yaml", "Goodnight Classic": "goodnight-classic.yaml", "Gooey Theme": "gooey-theme.yaml", "Gooey-Theme": "gooey-theme.yaml", - "GoogleDark": "googledark.yaml", + "GooeyVSCTheme": "gooeyvsctheme.yaml", "Goolou": "goolou.yaml", "goose": "goose.yaml", "goosebumps": "goosebumps.yaml", "Gopher": "gopher.yaml", + "Gopher Theme Color": "gopher-theme-color.yaml", "Gorfius Orange": "gorfius-orange.yaml", "Gorfius Peace Forest": "gorfius-peace-forest.yaml", + "Gorfius Peace-Forest (Gorfius Peace Forest)": "gorfius-peace-forest--gorfius-peace-forest.yaml", + "Gorfius Peace-Smoke 2 (Gorfius Peace Forest)": "gorfius-peace-smoke-2--gorfius-peace-forest.yaml", "Gorg": "gorg.yaml", "Gosthy": "gosthy.yaml", - "GOT: Beyond the Wall": "got-beyond-the-wall.yaml", - "GOT: House Baratheon": "got-house-baratheon.yaml", - "GOT: House Greyjoy": "got-house-greyjoy.yaml", - "GOT: House Lannister": "got-house-lannister.yaml", - "GOT: House Martell": "got-house-martell.yaml", - "GOT: House Stark": "got-house-stark.yaml", - "GOT: House Targaryen": "got-house-targaryen.yaml", - "GOT: Night's Watch": "got-night-s-watch.yaml", - "GOT: The Iron Throne": "got-the-iron-throne.yaml", "gotham": "gotham.yaml", - "Gotham": "gotham.yaml", + "Gotham Theme": "gotham-theme.yaml", + "Gotham Theme Black": "gotham-theme-black.yaml", "Gothic": "gothic.yaml", - "Gothic Absinthe": "gothic-absinthe.yaml", - "Gothic Amber Fog": "gothic-amber-fog.yaml", - "Gothic Blood Moon": "gothic-blood-moon.yaml", - "Gothic Cathedral": "gothic-cathedral.yaml", - "Gothic Cemetery": "gothic-cemetery.yaml", - "Gothic Dark": "gothic-dark.yaml", - "Gothic Emerald Crypt": "gothic-emerald-crypt.yaml", - "Gothic Jester": "gothic-jester.yaml", - "Gothic Light": "gothic-light.yaml", - "Gothic Midnight Rose": "gothic-midnight-rose.yaml", - "Gothic Qaddy": "gothic-qaddy.yaml", - "Gothic Raven": "gothic-raven.yaml", - "Gothic Spider Lily": "gothic-spider-lily.yaml", - "Gothic Twilight Forest": "gothic-twilight-forest.yaml", - "Gothic Vampire": "gothic-vampire.yaml", - "Gothic Victorian Mourning": "gothic-victorian-mourning.yaml", + "gothic (Gothic Dark)": "gothic--gothic-dark.yaml", + "gothic (Gothic Light)": "gothic--gothic-light.yaml", "Gourd": "gourd.yaml", "GPTheme": "gptheme.yaml", "GPTheme Dark": "gptheme-dark.yaml", "GracefulBear": "gracefulbear.yaml", + "Gradient Theme (Firefox Dark)": "gradient-theme--firefox-dark.yaml", + "Gradient Theme (Monokai Pro)": "gradient-theme--monokai-pro.yaml", "GrandBlue": "grandblue.yaml", "GrandBlue - Pastel": "grandblue-pastel.yaml", "GrandBlue - Soft": "grandblue-soft.yaml", @@ -2571,37 +2764,32 @@ "grapevine": "grapevine.yaml", "GraphLinq Dark": "graphlinq-dark.yaml", "Grassrivers Sunset": "grassrivers-sunset.yaml", + "Gravel Pit": "gravel-pit.yaml", "gravel-pit": "gravel-pit.yaml", - "Graveyard": "graveyard.yaml", - "Graveyard - Fork - Fork": "graveyard-fork-fork.yaml", "Gravity": "gravity.yaml", "gray": "gray.yaml", + "Gray Gray Gray": "gray-gray-gray.yaml", "Gray matter": "gray-matter.yaml", "Gray Pastel": "gray-pastel.yaml", - "graygraygray": "graygraygray.yaml", "Graymium Theme": "graymium-theme.yaml", - "GrayScale301-Light": "grayscale301-light.yaml", + "GrayScale301": "grayscale301.yaml", + "GraySpace (coffeespace)": "grayspace--coffeespace.yaml", + "GraySpace (DarkSpace)": "grayspace--darkspace.yaml", + "GraySpace (Neutral)": "grayspace--neutral.yaml", + "Grean Leaf (Untitled)": "grean-leaf--untitled.yaml", "Great White": "great-white.yaml", - "Great White (Bloodloss)": "great-white-bloodloss.yaml", - "Great White (Dark)": "great-white-dark.yaml", - "Great White (Frost)": "great-white-frost.yaml", - "Great White (High Contrast Dark)": "great-white-high-contrast-dark.yaml", - "Great White (High Contrast Light)": "great-white-high-contrast-light.yaml", - "Great White (Light)": "great-white-light.yaml", - "Great White (Storm)": "great-white-storm.yaml", "Greblue": "greblue.yaml", - "Greeeeen": "greeeeen.yaml", + "Greeeeen Theme": "greeeeen-theme.yaml", "green": "green.yaml", - "Green Coffee": "green-coffee.yaml", - "Green Hacker": "green-hacker.yaml", - "Green Kingdom": "green-kingdom.yaml", - "Green Papper": "green-papper.yaml", - "Green Tree": "green-tree.yaml", - "Green Valley Forest": "green-valley-forest.yaml", - "Green Valley Matrix": "green-valley-matrix.yaml", - "Green Valley Midnight": "green-valley-midnight.yaml", - "Green Valley Mint": "green-valley-mint.yaml", - "Green Valley Neo": "green-valley-neo.yaml", + "Green paper": "green-paper.yaml", + "Green paper (Green Papper)": "green-paper--green-papper.yaml", + "Green Tree Theme (Green Tree)": "green-tree-theme--green-tree.yaml", + "Green Tree Theme (Pink Flower)": "green-tree-theme--pink-flower.yaml", + "Green Valley Theme (Green Valley Forest)": "green-valley-theme--green-valley-forest.yaml", + "Green Valley Theme (Green Valley Matrix)": "green-valley-theme--green-valley-matrix.yaml", + "Green Valley Theme (Green Valley Midnight)": "green-valley-theme--green-valley-midnight.yaml", + "Green Valley Theme (Green Valley Mint)": "green-valley-theme--green-valley-mint.yaml", + "Green Valley Theme (Green Valley Neo)": "green-valley-theme--green-valley-neo.yaml", "Green Water": "green-water.yaml", "Green Yow": "green-yow.yaml", "Green-Geek": "green-geek.yaml", @@ -2615,103 +2803,127 @@ "Greeney.": "greeney.yaml", "Greeney.v2": "greeney-v2.yaml", "greeni": "greeni.yaml", + "Greeni": "greeni.yaml", "Greenish": "greenish.yaml", "GreenMachine": "greenmachine.yaml", "GreenSpace": "greenspace.yaml", + "greenspace (24)": "greenspace--24.yaml", + "greenspace (GreenSpace)": "greenspace--greenspace.yaml", + "greenspace (Shades)": "greenspace--shades.yaml", "Grewee-colorscheme": "grewee-colorscheme.yaml", "greygull": "greygull.yaml", - "Greyout": "greyout.yaml", + "Greyout Color Theme": "greyout-color-theme.yaml", "GreyStillPlays": "greystillplays.yaml", "Grimoire": "grimoire.yaml", - "Grimoire Nox": "grimoire-nox.yaml", + "Grimoire (Grimoire Nox)": "grimoire--grimoire-nox.yaml", + "Grimoire (Grimoire)": "grimoire--grimoire.yaml", "Grove Street Noir": "grove-street-noir.yaml", - "Gru Black": "gru-black.yaml", + "Gru (Gru Black)": "gru--gru-black.yaml", "Gruber Blue": "gruber-blue.yaml", "grumbra": "grumbra.yaml", - "GrunBoxTheme": "grunboxtheme.yaml", - "grunge": "grunge.yaml", - "grunge-contrast": "grunge-contrast.yaml", - "grunge-light": "grunge-light.yaml", "Grusper": "grusper.yaml", "Gruvalized Dark": "gruvalized-dark.yaml", "Gruvalized Light": "gruvalized-light.yaml", - "Gruvbox Dark Anhoder": "gruvbox-dark-anhoder.yaml", + "GruvBox": "gruvbox.yaml", + "Gruvbox Concoctis (Concoctis - Dark : Hard)": "gruvbox-concoctis--concoctis-dark-hard.yaml", + "Gruvbox Concoctis (Concoctis - Dark : Soft)": "gruvbox-concoctis--concoctis-dark-soft.yaml", + "Gruvbox Concoctis (Concoctis - Light : Hard)": "gruvbox-concoctis--concoctis-light-hard.yaml", + "Gruvbox Concoctis (Concoctis - Light : Soft)": "gruvbox-concoctis--concoctis-light-soft.yaml", + "Gruvbox Dark Medium Theme": "gruvbox-dark-medium-theme.yaml", + "Gruvbox DrakenLords (Gruvbox DrakenLords Dark Draken)": "gruvbox-drakenlords--gruvbox-drakenlords-dark-draken.yaml", + "Gruvbox DrakenLords (Gruvbox DrakenLords Dark)": "gruvbox-drakenlords--gruvbox-drakenlords-dark.yaml", + "Gruvbox DrakenLords (Gruvbox DrakenLords Grey)": "gruvbox-drakenlords--gruvbox-drakenlords-grey.yaml", + "Gruvbox DrakenLords (Gruvbox DrakenLords Semi Dark)": "gruvbox-drakenlords--gruvbox-drakenlords-semi-dark.yaml", "Gruvbox DrakenLords Dark": "gruvbox-drakenlords-dark.yaml", - "Gruvbox DrakenLords Dark Draken": "gruvbox-drakenlords-dark-draken.yaml", - "Gruvbox DrakenLords Grey": "gruvbox-drakenlords-grey.yaml", - "Gruvbox DrakenLords Semi Dark": "gruvbox-drakenlords-semi-dark.yaml", - "Gruvbox ish Dark Hard": "gruvbox-ish-dark-hard.yaml", - "Gruvbox ish Dark Medium": "gruvbox-ish-dark-medium.yaml", - "Gruvbox ish Dark Soft": "gruvbox-ish-dark-soft.yaml", - "Gruvbox Light Medium": "gruvbox-light-medium.yaml", - "Gruvbox Light Soft": "gruvbox-light-soft.yaml", - "Gruvbox Material Dark": "gruvbox-material-dark.yaml", + "Gruvbox in Black (Aldrico's Gruvbox)": "gruvbox-in-black--aldrico-s-gruvbox.yaml", + "Gruvbox ish (Gruvbox ish Dark Hard)": "gruvbox-ish--gruvbox-ish-dark-hard.yaml", + "Gruvbox ish (Gruvbox ish Dark Medium)": "gruvbox-ish--gruvbox-ish-dark-medium.yaml", + "Gruvbox ish (Gruvbox ish Dark Soft)": "gruvbox-ish--gruvbox-ish-dark-soft.yaml", + "Gruvbox Material (Gruvbox Material Dark)": "gruvbox-material--gruvbox-material-dark.yaml", + "Gruvbox Material (Gruvbox Material Light)": "gruvbox-material--gruvbox-material-light.yaml", "Gruvbox Material Dark - Claude Hybrid": "gruvbox-material-dark-claude-hybrid.yaml", - "Gruvbox Material Flat Dark": "gruvbox-material-flat-dark.yaml", - "Gruvbox Material Flat Light": "gruvbox-material-flat-light.yaml", - "Gruvbox Material Light": "gruvbox-material-light.yaml", + "Gruvbox Material Flat (Gruvbox Material Flat Dark)": "gruvbox-material-flat--gruvbox-material-flat-dark.yaml", + "Gruvbox Material Flat (Gruvbox Material Flat Light)": "gruvbox-material-flat--gruvbox-material-flat-light.yaml", "Gruvbox Material Mix": "gruvbox-material-mix.yaml", - "Gruvbox Minor Dark Hard": "gruvbox-minor-dark-hard.yaml", - "Gruvbox Minor Dark Medium": "gruvbox-minor-dark-medium.yaml", - "Gruvbox Minor Dark Soft": "gruvbox-minor-dark-soft.yaml", - "Gruvbox Minor Light Hard": "gruvbox-minor-light-hard.yaml", - "Gruvbox Minor Light Medium": "gruvbox-minor-light-medium.yaml", - "Gruvbox Minor Light Soft": "gruvbox-minor-light-soft.yaml", + "Gruvbox Minor (Gruvbox Minor Dark Hard)": "gruvbox-minor--gruvbox-minor-dark-hard.yaml", + "Gruvbox Minor (Gruvbox Minor Dark Medium)": "gruvbox-minor--gruvbox-minor-dark-medium.yaml", + "Gruvbox Minor (Gruvbox Minor Dark Soft)": "gruvbox-minor--gruvbox-minor-dark-soft.yaml", + "Gruvbox Minor (Gruvbox Minor Light Hard)": "gruvbox-minor--gruvbox-minor-light-hard.yaml", + "Gruvbox Minor (Gruvbox Minor Light Medium)": "gruvbox-minor--gruvbox-minor-light-medium.yaml", + "Gruvbox Minor (Gruvbox Minor Light Soft)": "gruvbox-minor--gruvbox-minor-light-soft.yaml", + "gruvbox-dark-moist": "gruvbox-dark-moist.yaml", "Gruvchad": "gruvchad.yaml", - "GruvDark": "gruvdark.yaml", - "GruvDark Tokyo": "gruvdark-tokyo.yaml", - "GruvDark-GBM": "gruvdark-gbm.yaml", + "GruvDark Theme (GruvDark Tokyo)": "gruvdark-theme--gruvdark-tokyo.yaml", + "GruvDark Theme (GruvDark-GBM)": "gruvdark-theme--gruvdark-gbm.yaml", + "GruvDark Theme (GruvDark)": "gruvdark-theme--gruvdark.yaml", + "GruvDark Theme (Light GruvDark-Mono)": "gruvdark-theme--light-gruvdark-mono.yaml", + "GruvDark Theme (Light GruvDark-Tokyo)": "gruvdark-theme--light-gruvdark-tokyo.yaml", + "GruvDark Theme (Light GruvDark)": "gruvdark-theme--light-gruvdark.yaml", "Gruvvy Watermelon": "gruvvy-watermelon.yaml", "Guezwhoz": "guezwhoz.yaml", + "Gui Dark (Untitled)": "gui-dark--untitled.yaml", "GuiSaldanha Light": "guisaldanha-light.yaml", "Gujarat - Vibrant Culture": "gujarat-vibrant-culture.yaml", "Gum": "gum.yaml", - "Gumua": "gumua.yaml", "Gunivers": "gunivers.yaml", "Gunmetal Code Pro": "gunmetal-code-pro.yaml", - "GustavoGLins": "gustavoglins.yaml", + "gustavoglins-theme (GustavoGLins)": "gustavoglins-theme--gustavoglins.yaml", "Gusuku Limestone": "gusuku-limestone.yaml", "Guttenbergovitz": "guttenbergovitz.yaml", "Gvalley": "gvalley.yaml", - "Gyomei Himejima": "gyomei-himejima.yaml", "H1 (Dark) - Fork": "h1-dark-fork.yaml", "H1 (Light) - Fork": "h1-light-fork.yaml", "Haavyz": "haavyz.yaml", "Habamax": "habamax.yaml", "habamix": "habamix.yaml", "Hachiko": "hachiko.yaml", - "Hack Electron": "hack-electron.yaml", "Hack Minor": "hack-minor.yaml", - "Hack-And-Lima🍋": "hack-and-lima.yaml", "hackage-theme": "hackage-theme.yaml", - "Hacker": "hacker.yaml", + "HackElectron": "hackelectron.yaml", "Hacker Blue": "hacker-blue.yaml", "Hacker Pink": "hacker-pink.yaml", - "Hacker X": "hacker-x.yaml", + "Hacker Theme": "hacker-theme.yaml", + "Hacker X Theme (Amaranth Red & Eerie Black - Fork)": "hacker-x-theme--amaranth-red-eerie-black-fork.yaml", + "Hacker X Theme (BELCH - Fork)": "hacker-x-theme--belch-fork.yaml", + "Hacker X Theme (Dark Code - Fork)": "hacker-x-theme--dark-code-fork.yaml", + "Hacker X Theme (DevR Dark Theme - Fork)": "hacker-x-theme--devr-dark-theme-fork.yaml", + "Hacker X Theme (Electric Violet - Fork)": "hacker-x-theme--electric-violet-fork.yaml", + "Hacker X Theme (EMERALD - Fork)": "hacker-x-theme--emerald-fork.yaml", + "Hacker X Theme (Enhanced Material - Fork)": "hacker-x-theme--enhanced-material-fork.yaml", + "Hacker X Theme (HACKER BLUE - Fork)": "hacker-x-theme--hacker-blue-fork.yaml", + "Hacker X Theme (Hacker X)": "hacker-x-theme--hacker-x.yaml", + "Hacker X Theme (Hyped Down - Fork)": "hacker-x-theme--hyped-down-fork.yaml", + "Hacker X Theme (Into the unknow - Fork)": "hacker-x-theme--into-the-unknow-fork.yaml", + "Hacker X Theme (Joyful - Fork)": "hacker-x-theme--joyful-fork.yaml", + "Hacker X Theme (Kermit - Fork)": "hacker-x-theme--kermit-fork.yaml", + "Hacker X Theme (ModernUI - Fork)": "hacker-x-theme--modernui-fork.yaml", + "Hacker X Theme (Orion-Black - Fork)": "hacker-x-theme--orion-black-fork.yaml", + "Hacker X Theme (Terminal - Fork)": "hacker-x-theme--terminal-fork.yaml", + "Hacker X Theme (Underdark - Fork)": "hacker-x-theme--underdark-fork.yaml", + "Hacker X Theme (Windows 98 - Fork)": "hacker-x-theme--windows-98-fork.yaml", "Hackish": "hackish.yaml", - "Hackpot Batman vs Joker": "hackpot-batman-vs-joker.yaml", - "Hackpot Batman vs Joker Dark": "hackpot-batman-vs-joker-dark.yaml", - "Hackpot Dark Knight": "hackpot-dark-knight.yaml", - "Hackpot Darker Knight": "hackpot-darker-knight.yaml", - "Hackpot Garden": "hackpot-garden.yaml", - "Hackpot Garden Dark": "hackpot-garden-dark.yaml", - "Hackpot Garden Of Atlantis": "hackpot-garden-of-atlantis.yaml", - "Hackpot Garden Purple Haze": "hackpot-garden-purple-haze.yaml", - "Hackpot Muddy Garden": "hackpot-muddy-garden.yaml", - "Hackpot Poisoned Garden": "hackpot-poisoned-garden.yaml", + "Hackpot (Hackpot Batman vs Joker Dark)": "hackpot--hackpot-batman-vs-joker-dark.yaml", + "Hackpot (Hackpot Batman vs Joker)": "hackpot--hackpot-batman-vs-joker.yaml", + "Hackpot (Hackpot Dark Knight)": "hackpot--hackpot-dark-knight.yaml", + "Hackpot (Hackpot Darker Knight)": "hackpot--hackpot-darker-knight.yaml", + "Hackpot (Hackpot Garden Dark)": "hackpot--hackpot-garden-dark.yaml", + "Hackpot (Hackpot Garden Of Atlantis)": "hackpot--hackpot-garden-of-atlantis.yaml", + "Hackpot (Hackpot Garden Purple Haze)": "hackpot--hackpot-garden-purple-haze.yaml", + "Hackpot (Hackpot Garden)": "hackpot--hackpot-garden.yaml", + "Hackpot (Hackpot Muddy Garden)": "hackpot--hackpot-muddy-garden.yaml", + "Hackpot (Hackpot Poisoned Garden)": "hackpot--hackpot-poisoned-garden.yaml", "Hadar": "hadar.yaml", - "haidark two": "haidark-two.yaml", + "haidark": "haidark.yaml", "halcyon": "halcyon.yaml", "Halcyon": "halcyon.yaml", + "Halcyon Theme": "halcyon-theme.yaml", "half gray": "half-gray.yaml", - "halflife": "halflife.yaml", - "halflife-contrast": "halflife-contrast.yaml", - "halflife-light": "halflife-light.yaml", - "Halloween": "halloween.yaml", "Halloween Theme": "halloween-theme.yaml", + "halloween-theme": "halloween-theme.yaml", "Hallucination": "hallucination.yaml", - "HamidTheDev Professional": "hamidthedev-professional.yaml", + "HamidTheDev Pro": "hamidthedev-pro.yaml", "Hammerhead": "hammerhead.yaml", + "Hams Uno": "hams-uno.yaml", "hams-uno": "hams-uno.yaml", "Han": "han.yaml", "Happy Dark": "happy-dark.yaml", @@ -2733,48 +2945,63 @@ "Happy Heart 8 - Bright Light": "happy-heart-8-bright-light.yaml", "Happy Heart 9 - Smooth Light": "happy-heart-9-smooth-light.yaml", "Hapsida": "hapsida.yaml", - "Hard Hacker": "hard-hacker.yaml", - "Hard Hacker Darker": "hard-hacker-darker.yaml", - "Hard Hacker Light": "hard-hacker-light.yaml", - "HardDark": "harddark.yaml", + "hapsida.securisec (Dark)": "hapsida-securisec--dark.yaml", + "hapsida.securisec (Iceberg)": "hapsida-securisec--iceberg.yaml", + "hapsida.securisec (Mountain)": "hapsida-securisec--mountain.yaml", + "hapsida.securisec (Nord)": "hapsida-securisec--nord.yaml", + "hapsida.securisec (Pastel)": "hapsida-securisec--pastel.yaml", + "hapsida.securisec (Spring)": "hapsida-securisec--spring.yaml", + "hapsida.securisec (vintage)": "hapsida-securisec--vintage.yaml", + "HardHacker Theme (Hard Hacker Darker)": "hardhacker-theme--hard-hacker-darker.yaml", + "HardHacker Theme (Hard Hacker Light)": "hardhacker-theme--hard-hacker-light.yaml", + "HardHacker Theme (Hard Hacker)": "hardhacker-theme--hard-hacker.yaml", "Hardwired - Arctic Blue": "hardwired-arctic-blue.yaml", "Hardwired - Electric Lime": "hardwired-electric-lime.yaml", "Hardwired - Purple": "hardwired-purple.yaml", + "hardxs": "hardxs.yaml", "Hare Omagari": "hare-omagari.yaml", "Harley Quinn Theme": "harley-quinn-theme.yaml", - "Harmonized dark": "harmonized-dark.yaml", - "Harmonized light": "harmonized-light.yaml", - "Harmonized light (hc)": "harmonized-light-hc.yaml", + "Harmonized (Harmonized dark)": "harmonized--harmonized-dark.yaml", + "Harmonized (Harmonized light (hc))": "harmonized-harmonized-light-hc.yaml", + "Harmonized (Harmonized light)": "harmonized--harmonized-light.yaml", "Harmony Pulse": "harmony-pulse.yaml", "Harriet": "harriet.yaml", "Harrys": "harrys.yaml", "HarshadDevPro": "harshaddevpro.yaml", - "Hashirama Senju - God of Shinobi": "hashirama-senju-god-of-shinobi.yaml", + "Hashira Code Theme (Giyu Tomioka)": "hashira-code-theme--giyu-tomioka.yaml", + "Hashira Code Theme (Gyomei Himejima)": "hashira-code-theme--gyomei-himejima.yaml", + "Hashira Code Theme (Kyojuro Rengoku)": "hashira-code-theme--kyojuro-rengoku.yaml", + "Hashira Code Theme (Mitsuri Kanroji)": "hashira-code-theme--mitsuri-kanroji.yaml", + "Hashira Code Theme (Obanai Iguro)": "hashira-code-theme--obanai-iguro.yaml", + "Hashira Code Theme (Sanemi Shinazugawa)": "hashira-code-theme--sanemi-shinazugawa.yaml", + "Hashira Code Theme (Shinobu Kocho)": "hashira-code-theme--shinobu-kocho.yaml", + "Hashira Code Theme (Tokito Inspired)": "hashira-code-theme--tokito-inspired.yaml", "Haube Blue 1": "haube-blue-1.yaml", - "hawaii": "hawaii.yaml", - "hawaii-contrast": "hawaii-contrast.yaml", - "hawaii-light": "hawaii-light.yaml", - "hc-zenburn": "hc-zenburn.yaml", + "HeadFox Dark": "headfox-dark.yaml", "Hearth Dark": "hearth-dark.yaml", "Hearth Light": "hearth-light.yaml", + "HearthCode (Hearth Dark Soft)": "hearthcode--hearth-dark-soft.yaml", + "HearthCode (Hearth Dark)": "hearthcode--hearth-dark.yaml", + "HearthCode (Hearth Light)": "hearthcode--hearth-light.yaml", + "Heaven": "heaven.yaml", "Hecker Boy": "hecker-boy.yaml", "Held": "held.yaml", "Helion": "helion.yaml", - "Helios Solarized Dark": "helios-solarized-dark.yaml", - "Helios Solarized Light": "helios-solarized-light.yaml", + "Helix": "helix.yaml", + "Helix Bogster Theme": "helix-bogster-theme.yaml", "Helix+": "helix.yaml", + "hell pine": "hell-pine.yaml", "Hell Pine": "hell-pine.yaml", "Hellfire": "hellfire.yaml", + "HelloWorld Theme": "helloworld-theme.yaml", "Hendrikkels Dark": "hendrikkels-dark.yaml", "Hendrikkels Light": "hendrikkels-light.yaml", + "henriquedark": "henriquedark.yaml", "Heptapod": "heptapod.yaml", "Herakles": "herakles.yaml", "Herbal": "herbal.yaml", "hereafter.": "hereafter.yaml", "Hero Dark": "hero-dark.yaml", - "heroku": "heroku.yaml", - "heroku-contrast": "heroku-contrast.yaml", - "heroku-light": "heroku-light.yaml", "Herzha Dark": "herzha-dark.yaml", "Herzha Flux": "herzha-flux.yaml", "Herzha Vanta": "herzha-vanta.yaml", @@ -2782,95 +3009,65 @@ "hhp1614": "hhp1614.yaml", "Hi Dark": "hi-dark.yaml", "Hi Light": "hi-light.yaml", - "Hibiscus": "hibiscus.yaml", - "High Contrast April Light Theme": "high-contrast-april-light-theme.yaml", - "High Contrast April Theme": "high-contrast-april-theme.yaml", - "High Contrast August Light Theme": "high-contrast-august-light-theme.yaml", - "High Contrast February Dark Theme": "high-contrast-february-dark-theme.yaml", - "High Contrast February Light Theme - Accessible": "high-contrast-february-light-theme-accessible.yaml", - "High Contrast February Theme - Accessible": "high-contrast-february-theme-accessible.yaml", - "High Contrast July Light Theme": "high-contrast-july-light-theme.yaml", - "High Contrast June Light Theme": "high-contrast-june-light-theme.yaml", - "High Contrast March Dark Theme": "high-contrast-march-dark-theme.yaml", - "High Contrast March Dark Theme - Accessible": "high-contrast-march-dark-theme-accessible.yaml", - "High Contrast March Light Theme - Accessible": "high-contrast-march-light-theme-accessible.yaml", - "High Contrast March Theme - Accessible": "high-contrast-march-theme-accessible.yaml", - "High Contrast May Light Theme": "high-contrast-may-light-theme.yaml", - "High Contrast September Light Theme": "high-contrast-september-light-theme.yaml", + "Hibiscus Theme": "hibiscus-theme.yaml", "High Contrast Sunset": "high-contrast-sunset.yaml", - "High Tea": "high-tea.yaml", - "High-Alert-Crimson": "high-alert-crimson.yaml", + "Higher Contrast Zenburn": "higher-contrast-zenburn.yaml", + "Higher Contrast Zenburn (hc-zenburn)": "higher-contrast-zenburn--hc-zenburn.yaml", "Highflyer": "highflyer.yaml", "HighGruv": "highgruv.yaml", "Highland Winter": "highland-winter.yaml", "Himalaya Dark": "himalaya-dark.yaml", "hinode": "hinode.yaml", "Hipster Next": "hipster-next.yaml", + "hirakata": "hirakata.yaml", "Hirakata": "hirakata.yaml", - "hive": "hive.yaml", - "hive-contrast": "hive-contrast.yaml", - "hive-light": "hive-light.yaml", + "hjqTheme": "hjqtheme.yaml", "hobbyist goth": "hobbyist-goth.yaml", + "hobbyist-goth": "hobbyist-goth.yaml", "hoccacas": "hoccacas.yaml", "hocsinhnghiemtuc": "hocsinhnghiemtuc.yaml", + "Hogwarts": "hogwarts.yaml", "Holdesher Dark": "holdesher-dark.yaml", "Holo's Wisdom - Spice and Wolf Theme": "holo-s-wisdom-spice-and-wolf-theme.yaml", "Hologram Night": "hologram-night.yaml", "Holy Bible": "holy-bible.yaml", "Homebrew": "homebrew.yaml", - "HomeCooked Theme": "homecooked-theme.yaml", + "homecooked": "homecooked.yaml", "Homer": "homer.yaml", "Homey": "homey.yaml", "Honeycode": "honeycode.yaml", - "Honkai: Star Rail - Aventurine": "honkai-star-rail-aventurine.yaml", - "Honkai: Star Rail - Aventurine (Dark)": "honkai-star-rail-aventurine-dark.yaml", - "Honkai: Star Rail - Cyrene": "honkai-star-rail-cyrene.yaml", - "Honkai: Star Rail - Cyrene (Dark)": "honkai-star-rail-cyrene-dark.yaml", - "Honkai: Star Rail - Dan Heng": "honkai-star-rail-dan-heng.yaml", - "Honkai: Star Rail - Dan Heng (Dark)": "honkai-star-rail-dan-heng-dark.yaml", - "Honkai: Star Rail - Firefly": "honkai-star-rail-firefly.yaml", - "Honkai: Star Rail - Firefly (Dark)": "honkai-star-rail-firefly-dark.yaml", - "Honkai: Star Rail - Kafka": "honkai-star-rail-kafka.yaml", - "Honkai: Star Rail - Kafka (Dark)": "honkai-star-rail-kafka-dark.yaml", - "Honkai: Star Rail - March 7th": "honkai-star-rail-march-7th.yaml", - "Honkai: Star Rail - March 7th (Dark)": "honkai-star-rail-march-7th-dark.yaml", - "Honkai: Star Rail - Robin (Dark)": "honkai-star-rail-robin-dark.yaml", - "Honkai: Star Rail - Robin (Light Soft)": "honkai-star-rail-robin-light-soft.yaml", - "Honkai: Star Rail - Ruan Mei": "honkai-star-rail-ruan-mei.yaml", - "Honkai: Star Rail - Ruan Mei (Dark)": "honkai-star-rail-ruan-mei-dark.yaml", "Horimura": "horimura.yaml", - "horizon": "horizon.yaml", - "Horizon Extended": "horizon-extended.yaml", + "Horizon Extended Theme (Horizon Extended)": "horizon-extended-theme--horizon-extended.yaml", "Horizon Laker Theme": "horizon-laker-theme.yaml", - "horizon-contrast": "horizon-contrast.yaml", - "horizon-light": "horizon-light.yaml", "HorizonDark": "horizondark.yaml", - "Horror Theme": "horror-theme.yaml", + "Horror VSCode Extension": "horror-vscode-extension.yaml", "Horus": "horus.yaml", + "Horus (Untitled)": "horus--untitled.yaml", "Hot Stuff": "hot-stuff.yaml", - "hot-pink-theme": "hot-pink-theme.yaml", + "Hot-Stuff": "hot-stuff.yaml", "HotRice": "hotrice.yaml", "House of the Dragon: Team Greens": "house-of-the-dragon-team-greens.yaml", "Houston": "houston.yaml", + "HQ_Pink_Blue": "hq-pink-blue.yaml", "HQ_PINK+BLUE": "hq-pink-blue.yaml", "HTVODP": "htvodp.yaml", - "Huacat Pink Dark": "huacat-pink-dark.yaml", - "hub": "hub.yaml", - "hub-light": "hub-light.yaml", + "Huacat Pink Theme (Huacat Pink Dark)": "huacat-pink-theme--huacat-pink-dark.yaml", + "Huacat Pink Theme (Pink Theme)": "huacat-pink-theme--pink-theme.yaml", "hugodvlp": "hugodvlp.yaml", "Hulcu": "hulcu.yaml", "Hulky": "hulky.yaml", - "Human Dark": "human-dark.yaml", - "Human High Contrast": "human-high-contrast.yaml", - "Human Light": "human-light.yaml", - "Human Low Light": "human-low-light.yaml", - "Human Soft": "human-soft.yaml", - "Human Warm": "human-warm.yaml", + "Human Theme (Human Dark)": "human-theme--human-dark.yaml", + "Human Theme (Human High Contrast)": "human-theme--human-high-contrast.yaml", + "Human Theme (Human Light)": "human-theme--human-light.yaml", + "Human Theme (Human Low Light)": "human-theme--human-low-light.yaml", + "Human Theme (Human Soft)": "human-theme--human-soft.yaml", + "Human Theme (Human Warm)": "human-theme--human-warm.yaml", "Human++": "human.yaml", "Hundred Oceans": "hundred-oceans.yaml", "Hush.dark": "hush-dark.yaml", "Hush.light": "hush-light.yaml", "HuTaoTheme": "hutaotheme.yaml", + "Hybrid dim": "hybrid-dim.yaml", "Hybrid Dim": "hybrid-dim.yaml", "Hybrid Next (Gray Background)": "hybrid-next-gray-background.yaml", "hybrid theme": "hybrid-theme.yaml", @@ -2881,46 +3078,40 @@ "Hydro Sea": "hydro-sea.yaml", "Hydro Soft": "hydro-soft.yaml", "Hygge Kyst Dark": "hygge-kyst-dark.yaml", + "Hyle": "hyle.yaml", "hyle-color-theme": "hyle-color-theme.yaml", - "hyle-night-night-color-theme": "hyle-night-night-color-theme.yaml", - "Hyped Down - Fork": "hyped-down-fork.yaml", - "hyped-down-theme": "hyped-down-theme.yaml", "Hyper": "hyper.yaml", "Hyper Ctrl Theme": "hyper-ctrl-theme.yaml", + "Hyperdark theme": "hyperdark-theme.yaml", "Hyperdark Theme": "hyperdark-theme.yaml", "Hyperlink": "hyperlink.yaml", "HyperRail Theme (Hyper Syntax Colors)": "hyperrail-theme-hyper-syntax-colors.yaml", "Hypersubatomic": "hypersubatomic.yaml", "HyperVoxel": "hypervoxel.yaml", - "HyprLuna": "hyprluna.yaml", - "hyrule": "hyrule.yaml", - "hyrule-contrast": "hyrule-contrast.yaml", - "hyrule-light": "hyrule-light.yaml", + "HyprLuna Matugen Theme": "hyprluna-matugen-theme.yaml", + "i - A Minimal Theme": "i-a-minimal-theme.yaml", "I don't know": "i-don-t-know.yaml", "i-light-color-theme": "i-light-color-theme.yaml", - "i-night-color-theme": "i-night-color-theme.yaml", - "i-solarised-color-theme": "i-solarised-color-theme.yaml", - "i3 - Dark+ - Custom II": "i3-dark-custom-ii.yaml", - "i3 - Dark+ - Github Dark": "i3-dark-github-dark.yaml", - "i3 - Panda - Custom": "i3-panda-custom.yaml", - "i3 - Panda - Custom III": "i3-panda-custom-iii.yaml", + "i3 Dark Theme (i3 - Panda - Custom II)": "i3-dark-theme--i3-panda-custom-ii.yaml", + "i3 Dark Theme (i3 - Panda - Custom III)": "i3-dark-theme--i3-panda-custom-iii.yaml", + "i3 Dark Theme (i3 - Panda - Custom)": "i3-dark-theme--i3-panda-custom.yaml", "ian": "ian.yaml", - "IBM Carbon Gray 10": "ibm-carbon-gray-10.yaml", - "IBM Carbon Gray 100": "ibm-carbon-gray-100.yaml", - "IBM Carbon Gray 90": "ibm-carbon-gray-90.yaml", - "IBM Carbon White": "ibm-carbon-white.yaml", + "IBM Carbon Design System Theme (IBM Carbon Gray 10)": "ibm-carbon-design-system-theme--ibm-carbon-gray-10.yaml", + "IBM Carbon Design System Theme (IBM Carbon Gray 100)": "ibm-carbon-design-system-theme--ibm-carbon-gray-100.yaml", + "IBM Carbon Design System Theme (IBM Carbon Gray 90)": "ibm-carbon-design-system-theme--ibm-carbon-gray-90.yaml", + "IBM Carbon Design System Theme (IBM Carbon White)": "ibm-carbon-design-system-theme--ibm-carbon-white.yaml", "Icaria": "icaria.yaml", - "icatTheme": "icattheme.yaml", + "Icat Dark Theme": "icat-dark-theme.yaml", "ICC Light Theme": "icc-light-theme.yaml", - "Ice": "ice.yaml", "ICE CUBE dark": "ice-cube-dark.yaml", "ICE CUBE light": "ice-cube-light.yaml", "iceberg": "iceberg.yaml", "Iceberg": "iceberg.yaml", "IceBerg": "iceberg.yaml", + "IceBerg Dark": "iceberg-dark.yaml", "Iceberg Light": "iceberg-light.yaml", - "iceberg-contrast": "iceberg-contrast.yaml", - "iceberg-light": "iceberg-light.yaml", + "Iceberg Theme (Iceberg Light)": "iceberg-theme--iceberg-light.yaml", + "Iceberg Theme (Iceberg)": "iceberg-theme--iceberg.yaml", "Icefall": "icefall.yaml", "Iceland": "iceland.yaml", "iColorDarkBlue": "icolordarkblue.yaml", @@ -2947,55 +3138,61 @@ "iColorLightRed": "icolorlightred.yaml", "iColorLightVolcano": "icolorlightvolcano.yaml", "iColorLightYellow": "icolorlightyellow.yaml", - "Icon Group Dark": "icon-group-dark.yaml", - "Icon Group Light": "icon-group-light.yaml", + "Icon Group (Icon Group Dark)": "icon-group--icon-group-dark.yaml", + "Icon Group (Icon Group Light)": "icon-group--icon-group-light.yaml", "idea islands dark ++": "idea-islands-dark.yaml", + "Identical Sublime Text Monokai theme": "identical-sublime-text-monokai-theme.yaml", "Iditarod": "iditarod.yaml", "idk": "idk.yaml", "Idle Dark": "idle-dark.yaml", "Idle Light": "idle-light.yaml", - "Idx Theme Dark": "idx-theme-dark.yaml", - "idx-xcode-dark-improved": "idx-xcode-dark-improved.yaml", + "IDX Dark Theme": "idx-dark-theme.yaml", + "IDX Xcode - Xcode syntax and IDX Theme (idx-xcode-dark-improved)": "idx-xcode-xcode-syntax-and-idx-theme--idx-xcode-dark-improved.yaml", "Igniter Theme": "igniter-theme.yaml", "Igniter Theme (Light)": "igniter-theme-light.yaml", "IkarOS": "ikaros.yaml", "IkarOS White": "ikaros-white.yaml", + "IKKI VSCode Dark Theme": "ikki-vscode-dark-theme.yaml", + "IKKI VSCode Light Theme": "ikki-vscode-light-theme.yaml", "IKKI-VSCode-Dark-Theme": "ikki-vscode-dark-theme.yaml", "IKKI-VSCode-Light-Theme": "ikki-vscode-light-theme.yaml", "Ikshana": "ikshana.yaml", "Illuminate": "illuminate.yaml", "Illumination-Emerald": "illumination-emerald.yaml", - "Illusion": "illusion.yaml", - "iLoveAgents - Azure AI Foundry (Dark)": "iloveagents-azure-ai-foundry-dark.yaml", - "iLoveAgents - Azure AI Foundry (Light)": "iloveagents-azure-ai-foundry-light.yaml", - "iLoveAgents Dark": "iloveagents-dark.yaml", - "iLoveAgents Light": "iloveagents-light.yaml", - "Ilyat Poimandres": "ilyat-poimandres.yaml", - "Imba Dark": "imba-dark.yaml", - "imexoodeex": "imexoodeex.yaml", + "Illusion (Illusion)": "illusion--illusion.yaml", + "iLoveAgents - Azure AI Foundry Themes (iLoveAgents - Azure AI Foundry (Dark))": "iloveagents-azure-ai-foundry-themes-iloveagents-azure-ai-foundry-dark.yaml", + "iLoveAgents - Azure AI Foundry Themes (iLoveAgents - Azure AI Foundry (Light))": "iloveagents-azure-ai-foundry-themes-iloveagents-azure-ai-foundry-light.yaml", + "iLoveAgents - Azure AI Foundry Themes (iLoveAgents Dark)": "iloveagents-azure-ai-foundry-themes--iloveagents-dark.yaml", + "iLoveAgents - Azure AI Foundry Themes (iLoveAgents Light)": "iloveagents-azure-ai-foundry-themes--iloveagents-light.yaml", + "Ilyat (Ilyat Poimandres)": "ilyat--ilyat-poimandres.yaml", + "Imba": "imba.yaml", "In Bed by 7pm": "in-bed-by-7pm.yaml", + "In Bed By 7pm": "in-bed-by-7pm.yaml", "In Darkest Night": "in-darkest-night.yaml", "in his earthy elements": "in-his-earthy-elements.yaml", "In Rainbows Dark": "in-rainbows-dark.yaml", - "In The Fog Dark": "in-the-fog-dark.yaml", - "index": "index.yaml", - "Indie Dev": "indie-dev.yaml", + "In The Fog Theme": "in-the-fog-theme.yaml", "Indielayer": "indielayer.yaml", "indigo": "indigo.yaml", "Indigo and Amaranth": "indigo-and-amaranth.yaml", + "Indigo Dream": "indigo-dream.yaml", "Indigo Ice": "indigo-ice.yaml", "Indique Theme": "indique-theme.yaml", + "indique-theme": "indique-theme.yaml", "Industry": "industry.yaml", + "Inei": "inei.yaml", "Infatuation": "infatuation.yaml", "inferius": "inferius.yaml", + "Infinite Dark Purple": "infinite-dark-purple.yaml", + "Infinite Purple": "infinite-purple.yaml", "Infinitus": "infinitus.yaml", "Infinity": "infinity.yaml", "Infinity 64 Blackboard by Shingo Murata": "infinity-64-blackboard-by-shingo-murata.yaml", "Infinity 64 Whiteboard by Shingo Murata": "infinity-64-whiteboard-by-shingo-murata.yaml", - "Infinity Dark Contrast": "infinity-dark-contrast.yaml", + "Infinity Night theme": "infinity-night-theme.yaml", "Infinity Night Theme": "infinity-night-theme.yaml", "Ingeni": "ingeni.yaml", - "Inheritance": "inheritance.yaml", + "Inheritance (Inheritance)": "inheritance--inheritance.yaml", "inkpot": "inkpot.yaml", "inksea": "inksea.yaml", "inksea Dank": "inksea-dank.yaml", @@ -3006,57 +3203,56 @@ "inksea Oceanic": "inksea-oceanic.yaml", "inksea Sea Monkey": "inksea-sea-monkey.yaml", "Inkstained": "inkstained.yaml", - "Inovando Theme": "inovando-theme.yaml", - "Insane": "insane.yaml", + "Inovando": "inovando.yaml", + "insane-dark-theme": "insane-dark-theme.yaml", "Insight": "insight.yaml", "Inspiration": "inspiration.yaml", + "inspiration (Green Kingdom)": "inspiration--green-kingdom.yaml", + "inspiration (Sober Deepnight)": "inspiration--sober-deepnight.yaml", "InstaMuch": "instamuch.yaml", - "IntelliJ IDEA New UI": "intellij-idea-new-ui.yaml", + "IntelliJ IDEA Islands Theme (intellij-idea-islands-dark)": "intellij-idea-islands-theme--intellij-idea-islands-dark.yaml", + "IntelliJ IDEA Islands Theme (intellij-idea-islands-light)": "intellij-idea-islands-theme--intellij-idea-islands-light.yaml", + "IntelliJ IDEA New UI Theme": "intellij-idea-new-ui-theme.yaml", "IntelliJ Light (deaft)": "intellij-light-deaft.yaml", + "IntelliJ Theme": "intellij-theme.yaml", "intellij-dark-color-theme": "intellij-dark-color-theme.yaml", - "intellij-idea-islands-dark": "intellij-idea-islands-dark.yaml", - "intellij-idea-islands-light": "intellij-idea-islands-light.yaml", - "intellij-light-color-theme": "intellij-light-color-theme.yaml", - "IntelliYay-color-theme": "intelliyay-color-theme.yaml", - "Intergalactic": "intergalactic.yaml", + "IntelliYay Theme": "intelliyay-theme.yaml", "Interstellar": "interstellar.yaml", "Interstellar Blue": "interstellar-blue.yaml", "Interstellar Blue II": "interstellar-blue-ii.yaml", "Intility Bifrost Theme": "intility-bifrost-theme.yaml", - "Into the unknow - Fork": "into-the-unknow-fork.yaml", "Intrepid Darkness": "intrepid-darkness.yaml", "Intrepid Darkness Light": "intrepid-darkness-light.yaml", + "invi": "invi.yaml", "Invi": "invi.yaml", "ionztorm Theme": "ionztorm-theme.yaml", - "Iris Pink": "iris-pink.yaml", "IrishBruse's Color Theme": "irishbruse-s-color-theme.yaml", "ironhellrider": "ironhellrider.yaml", - "Ironman Theme Dark": "ironman-theme-dark.yaml", - "Ironman Theme Light": "ironman-theme-light.yaml", + "IronMan Theme (Light + Dark) (Ironman Theme Dark)": "ironman-theme-light-dark--ironman-theme-dark.yaml", + "IronMan Theme (Light + Dark) (Ironman Theme Light)": "ironman-theme-light-dark--ironman-theme-light.yaml", "IrOny": "irony.yaml", - "irrus-Float": "irrus-float.yaml", + "Irrelevant (mirai)": "irrelevant--mirai.yaml", + "Is them tears bro!?": "is-them-tears-bro.yaml", "is-them-tears-bro": "is-them-tears-bro.yaml", - "isatoru": "isatoru.yaml", "Islands Dark": "islands-dark.yaml", - "Islands Light": "islands-light.yaml", - "isotope": "isotope.yaml", - "isotope-contrast": "isotope-contrast.yaml", - "isotope-light": "isotope-light.yaml", + "Islands Theme (Islands Dark)": "islands-theme--islands-dark.yaml", + "Islands Theme (Islands Light)": "islands-theme--islands-light.yaml", "ITSNP Dark ": "itsnp-dark.yaml", "ITSNP Dark Cyan": "itsnp-dark-cyan.yaml", "ITSNP Dark Pink": "itsnp-dark-pink.yaml", "ITSNP Night Blue ": "itsnp-night-blue.yaml", "ITSNP Yellow ": "itsnp-yellow.yaml", - "iv : spade": "iv-spade.yaml", - "Ivalo-color-theme": "ivalo-color-theme.yaml", - "iwa's Code Theme": "iwa-s-code-theme.yaml", + "iv": "iv.yaml", + "Ivalo": "ivalo.yaml", + "iwa-code-theme": "iwa-code-theme.yaml", "J Theme": "j-theme.yaml", + "j-cardenas": "j-cardenas.yaml", "Já é cinco da manhã": "j-cinco-da-manh.yaml", "jabrms": "jabrms.yaml", "Jacaranda Theme": "jacaranda-theme.yaml", - "Jackhammar": "jackhammar.yaml", "Jaga Theme": "jaga-theme.yaml", - "Jammy Jellyfish": "jammy-jellyfish.yaml", + "JamesTheme": "jamestheme.yaml", + "Jammy Jellyfish Color Theme": "jammy-jellyfish-color-theme.yaml", "jamunTheme": "jamuntheme.yaml", "Jannchie Black": "jannchie-black.yaml", "Jannchie Dark": "jannchie-dark.yaml", @@ -3064,20 +3260,17 @@ "Jannchie Light": "jannchie-light.yaml", "Jannchie Light Soft": "jannchie-light-soft.yaml", "Janus Light": "janus-light.yaml", - "Japanese Breakfast": "japanese-breakfast.yaml", "Jartur": "jartur.yaml", - "Jarvis": "jarvis.yaml", - "Jarvis 3D": "jarvis-3d.yaml", + "Jarvis 3D - Iron Man Theme": "jarvis-3d-iron-man-theme.yaml", + "JarvisDarkTheme (Jarvis)": "jarvisdarktheme--jarvis.yaml", "Jasmine": "jasmine.yaml", "Java Dark Theme": "java-dark-theme.yaml", - "JavaScript Modern Dark": "javascript-modern-dark.yaml", - "JavaScript Neon Dark": "javascript-neon-dark.yaml", - "JavaScript Vibrant Dark": "javascript-vibrant-dark.yaml", - "jaytheme": "jaytheme.yaml", + "jaywxl": "jaywxl.yaml", "Jazari Dark": "jazari-dark.yaml", "Jazari Light": "jazari-light.yaml", + "jb Autumn": "jb-autumn.yaml", "jbpc": "jbpc.yaml", - "JCardenas": "jcardenas.yaml", + "JCEla": "jcela.yaml", "jcsoftiaBlack": "jcsoftiablack.yaml", "jcsoftiaDark": "jcsoftiadark.yaml", "jcsoftiaDarkBlue": "jcsoftiadarkblue.yaml", @@ -3085,124 +3278,121 @@ "JD's Abyss": "jd-s-abyss.yaml", "JDarkMaterial v2": "jdarkmaterial-v2.yaml", "jdh": "jdh.yaml", + "jdh-vimrc": "jdh-vimrc.yaml", "Jehuty Dark": "jehuty-dark.yaml", "Jehuty Light": "jehuty-light.yaml", "jelly": "jelly.yaml", + "Jelly Theme": "jelly-theme.yaml", "jelly-theme": "jelly-theme.yaml", "Jellybeans": "jellybeans.yaml", "Jellybeans Extended": "jellybeans-extended.yaml", + "Jellybeans Theme": "jellybeans-theme.yaml", "jellybeans-theme": "jellybeans-theme.yaml", "Jellybeans+": "jellybeans.yaml", "Jellyfish": "jellyfish.yaml", "JellyFish": "jellyfish.yaml", - "Jeng Light": "jeng-light.yaml", + "Jeng Theme Light": "jeng-theme-light.yaml", "Jetbrain-Fleet color": "jetbrain-fleet-color.yaml", - "JetBrains Dark Theme": "jetbrains-dark-theme.yaml", - "JetBrains Deep Dark Theme": "jetbrains-deep-dark-theme.yaml", - "JetBrains IDE Dark Theme": "jetbrains-ide-dark-theme.yaml", + "Jetbrains Fleet Theme": "jetbrains-fleet-theme.yaml", + "JetBrains Theme (JetBrains Dark Theme)": "jetbrains-theme--jetbrains-dark-theme.yaml", + "JetBrains Theme (JetBrains Deep Dark Theme)": "jetbrains-theme--jetbrains-deep-dark-theme.yaml", "JetCode": "jetcode.yaml", "JetDark": "jetdark.yaml", - "JetVibe Darcula": "jetvibe-darcula.yaml", - "jewel": "jewel.yaml", - "jewel-contrast": "jewel-contrast.yaml", - "jewel-light": "jewel-light.yaml", + "JetVibe": "jetvibe.yaml", "JG-VSC": "jg-vsc.yaml", - "jingle": "jingle.yaml", - "jingle-contrast": "jingle-contrast.yaml", - "jingle-light": "jingle-light.yaml", "JingleCode": "jinglecode.yaml", "Jinshi Dark Theme": "jinshi-dark-theme.yaml", "Jinshi Light Theme": "jinshi-light-theme.yaml", "jinx": "jinx.yaml", "jk": "jk.yaml", - "jker Purple Wave": "jker-purple-wave.yaml", "jngl": "jngl.yaml", - "João Campos Theme": "jo-o-campos-theme.yaml", + "João Dark Theme": "jo-o-dark-theme.yaml", "Jocelyn": "jocelyn.yaml", - "jojobii's Colors": "jojobii-s-colors.yaml", + "Joeel56 Halloween Theme": "joeel56-halloween-theme.yaml", + "joey": "joey.yaml", + "jojobii-vscode-colors": "jojobii-vscode-colors.yaml", "JokeJoke": "jokejoke.yaml", "JoKenKai": "jokenkai.yaml", "JoKenPo Obscure": "jokenpo-obscure.yaml", - "joker": "joker.yaml", "Joker Neon": "joker-neon.yaml", - "joker-contrast": "joker-contrast.yaml", - "joker-light": "joker-light.yaml", + "Jollifake": "jollifake.yaml", "JolliFake": "jollifake.yaml", "Jolly Light": "jolly-light.yaml", - "Jone Light": "jone-light.yaml", + "Jonaqhan Themes (Neutral)": "jonaqhan-themes--neutral.yaml", + "Jone Theme": "jone-theme.yaml", + "JoshBurnsXYZ VS Code Theme (Themer Dark)": "joshburnsxyz-vs-code-theme--themer-dark.yaml", + "JoshBurnsXYZ VS Code Theme (Themer Light)": "joshburnsxyz-vs-code-theme--themer-light.yaml", "Josi": "josi.yaml", "jott4c-dark": "jott4c-dark.yaml", + "Jott4c-dark": "jott4c-dark.yaml", "JoyBoy": "joyboy.yaml", - "Joyful - Fork - Fork": "joyful-fork-fork.yaml", + "jpwdarkness": "jpwdarkness.yaml", "JS Dark Theme": "js-dark-theme.yaml", "jtVSCode Dark": "jtvscode-dark.yaml", "jtVSCode Light": "jtvscode-light.yaml", "jugal13-theme": "jugal13-theme.yaml", - "juicy": "juicy.yaml", - "juicy-contrast": "juicy-contrast.yaml", - "juicy-light": "juicy-light.yaml", - "July Summer Vibes Dark Theme": "july-summer-vibes-dark-theme.yaml", "jummidark": "jummidark.yaml", "jummilight": "jummilight.yaml", - "jumper": "jumper.yaml", - "jumper-contrast": "jumper-contrast.yaml", - "jumper-light": "jumper-light.yaml", "Jungle": "jungle.yaml", "JuniorCoder": "juniorcoder.yaml", - "Just Code Already - Fork": "just-code-already-fork.yaml", - "jwrdark": "jwrdark.yaml", + "just a theme": "just-a-theme.yaml", + "Just Purple": "just-purple.yaml", + "JustCode Theme": "justcode-theme.yaml", "k-colorable dark": "k-colorable-dark.yaml", "k-colorable light": "k-colorable-light.yaml", "Kabukichō": "kabukich.yaml", "Kactus Dream Theme": "kactus-dream-theme.yaml", "Kactus Dream Theme Dark": "kactus-dream-theme-dark.yaml", - "kadaxi colors": "kadaxi-colors.yaml", + "kadaxi dark": "kadaxi-dark.yaml", "kadoku": "kadoku.yaml", "Kai": "kai.yaml", "kai.garbage": "kai-garbage.yaml", - "Kai'sa - white - Fork": "kai-sa-white-fork.yaml", - "Kailash shaw Dark Theme": "kailash-shaw-dark-theme.yaml", - "Kaimandres": "kaimandres.yaml", + "Kaimandres for VS Code": "kaimandres-for-vs-code.yaml", "Kaio": "kaio.yaml", "KaiokenKolors": "kaiokenkolors.yaml", + "KaioKenKolors": "kaiokenkolors.yaml", "kaique-theme": "kaique-theme.yaml", - "Kaisa-Dark": "kaisa-dark.yaml", - "Kali linux theme": "kali-linux-theme.yaml", + "Kali Theme (Dark Red Theme VS-Code)": "kali-theme--dark-red-theme-vs-code.yaml", "Kalia": "kalia.yaml", - "Kalidozza": "kalidozza.yaml", + "Kalidozza Theme": "kalidozza-theme.yaml", "Kalisi": "kalisi.yaml", "Kalmia": "kalmia.yaml", "Kalmia High Contrast": "kalmia-high-contrast.yaml", "kami theme": "kami-theme.yaml", - "Kanagawa Dragon": "kanagawa-dragon.yaml", + "Kanagawa": "kanagawa.yaml", + "Kanagawa Flavors (Kanagawa Dragon)": "kanagawa-flavors--kanagawa-dragon.yaml", + "Kanagawa Flavors (Kanagawa Lotus)": "kanagawa-flavors--kanagawa-lotus.yaml", + "Kanagawa Flavors (Kanagawa Wave)": "kanagawa-flavors--kanagawa-wave.yaml", "Kanagawa Light": "kanagawa-light.yaml", - "Kanagawa Lotus": "kanagawa-lotus.yaml", "Kanagawa Night": "kanagawa-night.yaml", - "Kanagawa Paper": "kanagawa-paper.yaml", + "Kanagawa Paper (Kanagawa Paper)": "kanagawa-paper--kanagawa-paper.yaml", + "Kanagawa Vague (Vague neovim Theme Extended Light)": "kanagawa-vague--vague-neovim-theme-extended-light.yaml", + "Kanagawa Vague (Vague neovim Theme Extended)": "kanagawa-vague--vague-neovim-theme-extended.yaml", "Kanagawa Wave": "kanagawa-wave.yaml", "Kanagawa Wave Light": "kanagawa-wave-light.yaml", + "kanagawa-vscode": "kanagawa-vscode.yaml", "Kanamin dark": "kanamin-dark.yaml", - "Kanao": "kanao.yaml", - "Kanso Ink": "kanso-ink.yaml", - "Kanso Mist": "kanso-mist.yaml", - "Kanso Pearl": "kanso-pearl.yaml", - "Kaolin Light Theme": "kaolin-light-theme.yaml", - "Kaolin Light Theme (alt)": "kaolin-light-theme-alt.yaml", + "Kanao (Kanao)": "kanao--kanao.yaml", + "Kanao (Pink)": "kanao--pink.yaml", + "Kanso Theme (Kanso Ink)": "kanso-theme--kanso-ink.yaml", + "Kanso Theme (Kanso Mist)": "kanso-theme--kanso-mist.yaml", + "Kanso Theme (Kanso Pearl)": "kanso-theme--kanso-pearl.yaml", + "Kaolin Themes (Kaolin Light Theme (alt))": "kaolin-themes-kaolin-light-theme-alt.yaml", + "Kaolin Themes (Kaolin Light Theme)": "kaolin-themes--kaolin-light-theme.yaml", "Kaplan Dark": "kaplan-dark.yaml", "Kara": "kara.yaml", "Karam Theme Darker": "karam-theme-darker.yaml", - "Karma": "karma.yaml", + "Karma (Karma)": "karma--karma.yaml", "Karnataka - Sandalwood State": "karnataka-sandalwood-state.yaml", "KAROU NOIR": "karou-noir.yaml", "KAROU Theme": "karou-theme.yaml", - "Karrot Theme Classic": "karrot-theme-classic.yaml", - "Karry Color Golang": "karry-color-golang.yaml", - "Kary Pro Colors - Dark": "kary-pro-colors-dark.yaml", - "Kary Pro Colors - Light": "kary-pro-colors-light.yaml", + "Karrot theme": "karrot-theme.yaml", + "Karry Color Golang Theme": "karry-color-golang-theme.yaml", + "Kary Pro Colors (Kary Pro Colors - Dark)": "kary-pro-colors--kary-pro-colors-dark.yaml", + "Kary Pro Colors (Kary Pro Colors - Light)": "kary-pro-colors--kary-pro-colors-light.yaml", "Kashi": "kashi.yaml", "KastorCode Dark Orange Theme": "kastorcode-dark-orange-theme.yaml", "KastorCode Dark Purple Theme": "kastorcode-dark-purple-theme.yaml", - "KatagawaTheme": "katagawatheme.yaml", "Kato": "kato.yaml", "kaupo": "kaupo.yaml", "kayhan": "kayhan.yaml", @@ -3210,41 +3400,32 @@ "Kaze": "kaze.yaml", "kblue-minimal": "kblue-minimal.yaml", "KDshade-darkBG": "kdshade-darkbg.yaml", - "keen": "keen.yaml", - "keen-contrast": "keen-contrast.yaml", - "keen-light": "keen-light.yaml", "Kenobi Dark Theme": "kenobi-dark-theme.yaml", "Kerala - God's Own Country": "kerala-god-s-own-country.yaml", "Kerama Deep": "kerama-deep.yaml", - "Kermit - Fork": "kermit-fork.yaml", - "Kesteren": "kesteren.yaml", + "KEVIN-KOLORS": "kevin-kolors.yaml", "KH Gold (Subtle)": "kh-gold-subtle.yaml", "KH Silver (Subtle)": "kh-silver-subtle.yaml", - "KhoaNeoStyle": "khoaneostyle.yaml", "Kiiro Dark": "kiiro-dark.yaml", "Killer Dark": "killer-dark.yaml", - "Kindfeeling": "kindfeeling.yaml", + "Kindfeeling-light": "kindfeeling-light.yaml", "kingfisher-fishing": "kingfisher-fishing.yaml", "KINN": "kinn.yaml", - "kinnitchi Neon Dark Modern": "kinnitchi-neon-dark-modern.yaml", - "Kintsugi Dark": "kintsugi-dark.yaml", - "Kintsugi Light": "kintsugi-light.yaml", + "Kinnitchi Neon Theme": "kinnitchi-neon-theme.yaml", + "Kintsugi (Kintsugi Dark)": "kintsugi--kintsugi-dark.yaml", + "Kintsugi (Kintsugi Light)": "kintsugi--kintsugi-light.yaml", "Kiona": "kiona.yaml", "Kira-Theme": "kira-theme.yaml", - "Kiranord": "kiranord.yaml", - "Kismat Default Colors": "kismat-default-colors.yaml", + "KiriKovr": "kirikovr.yaml", + "Kismat": "kismat.yaml", "Kiss": "kiss.yaml", - "Kite Dark": "kite-dark.yaml", - "Kite Darker": "kite-darker.yaml", - "Kite Light": "kite-light.yaml", + "Kite Theme (Kite Dark)": "kite-theme--kite-dark.yaml", + "Kite Theme (Kite Darker)": "kite-theme--kite-darker.yaml", + "Kite Theme (Kite Light)": "kite-theme--kite-light.yaml", "kitty catty": "kitty-catty.yaml", "kitty night": "kitty-night.yaml", - "KittyPower": "kittypower.yaml", - "kiwi": "kiwi.yaml", + "Kitty Power": "kitty-power.yaml", "Kiwi": "kiwi.yaml", - "kiwi-contrast": "kiwi-contrast.yaml", - "kiwi-light": "kiwi-light.yaml", - "Kiwisoup - Fork": "kiwisoup-fork.yaml", "KJS-Officials-Electric-Lime": "kjs-officials-electric-lime.yaml", "Knapsack": "knapsack.yaml", "KnFocus Alt": "knfocus-alt.yaml", @@ -3255,154 +3436,127 @@ "knowit-dark": "knowit-dark.yaml", "Knowlyr Dark": "knowlyr-dark.yaml", "Knowlyr Light": "knowlyr-light.yaml", - "Koala codes theme": "koala-codes-theme.yaml", + "Koala Theme": "koala-theme.yaml", "Kod Purple": "kod-purple.yaml", - "Kodex": "kodex.yaml", - "Kodex Arctic": "kodex-arctic.yaml", + "kodex (Kodex Arctic)": "kodex--kodex-arctic.yaml", + "kodex (Kodex)": "kodex--kodex.yaml", "Koffee Kreme": "koffee-kreme.yaml", "Koi Noir Lan Theme": "koi-noir-lan-theme.yaml", "Koi Noir Theme": "koi-noir-theme.yaml", - "Koi Pond Dark": "koi-pond-dark.yaml", - "Koi Pond Light": "koi-pond-light.yaml", "KokaTheme": "kokatheme.yaml", - "Koki Dark": "koki-dark.yaml", "kokubo": "kokubo.yaml", "Kolada": "kolada.yaml", "Komorebi": "komorebi.yaml", "Kong Light": "kong-light.yaml", "Konng": "konng.yaml", + "KONNG": "konng.yaml", + "Kopo Theme": "kopo-theme.yaml", "Kopo-Theme": "kopo-theme.yaml", - "korbit": "korbit.yaml", + "Korbit Theme": "korbit-theme.yaml", "Korean Dancheong Dark": "korean-dancheong-dark.yaml", + "Korean Dancheong Light": "korean-dancheong-light.yaml", "KORSR theme": "korsr-theme.yaml", + "KORSR Theme": "korsr-theme.yaml", "Kotama Otose": "kotama-otose.yaml", "Kozy": "kozy.yaml", "Kozy Darker": "kozy-darker.yaml", "kPurple": "kpurple.yaml", "Kradeno": "kradeno.yaml", + "Kraken theme": "kraken-theme.yaml", "Krb_Blue": "krb-blue.yaml", + "Krb_Blue (Krb_Violet)": "krb-blue--krb-violet.yaml", "Krb_Violet": "krb-violet.yaml", - "Kripton": "kripton.yaml", + "Kripton Flat Theme": "kripton-flat-theme.yaml", + "Krishna": "krishna.yaml", "Krishna - Default Dark Theme": "krishna-default-dark-theme.yaml", - "Krishna Dark Elegant": "krishna-dark-elegant.yaml", "Kroma Cardinal Light": "kroma-cardinal-light.yaml", "krone": "krone.yaml", "Krow-T": "krow-t.yaml", - "kryptonite-theme": "kryptonite-theme.yaml", + "KS Nova Theme": "ks-nova-theme.yaml", + "KTRZ Monokai": "ktrz-monokai.yaml", "ktrz-monokai": "ktrz-monokai.yaml", "Kubesong": "kubesong.yaml", "Kultist v2": "kultist-v2.yaml", - "Kurdish Vibrant Theme": "kurdish-vibrant-theme.yaml", + "Kurdish Theme": "kurdish-theme.yaml", "kurdor-light": "kurdor-light.yaml", "Kuro": "kuro.yaml", - "Kuro Sakura": "kuro-sakura.yaml", "kuro_theme-color-theme": "kuro-theme-color-theme.yaml", "kurodake-green": "kurodake-green.yaml", - "Kuroir Dark 01 Crimson": "kuroir-dark-01-crimson.yaml", - "Kuroir Dark 02 Vermilion": "kuroir-dark-02-vermilion.yaml", - "Kuroir Dark 03 Amber": "kuroir-dark-03-amber.yaml", - "Kuroir Dark 04 Goldenrod": "kuroir-dark-04-goldenrod.yaml", - "Kuroir Dark 06 Chartreuse": "kuroir-dark-06-chartreuse.yaml", - "Kuroir Dark 07 Fern": "kuroir-dark-07-fern.yaml", - "Kuroir Dark 08 Emerald": "kuroir-dark-08-emerald.yaml", - "Kuroir Dark 09 Jade": "kuroir-dark-09-jade.yaml", - "Kuroir Dark 11 Aqua": "kuroir-dark-11-aqua.yaml", - "Kuroir Dark 14 Cerulean": "kuroir-dark-14-cerulean.yaml", - "Kuroir Dark 15 Sky": "kuroir-dark-15-sky.yaml", - "Kuroir Dark 18 Indigo": "kuroir-dark-18-indigo.yaml", - "Kuroir Dark 20 Amethyst": "kuroir-dark-20-amethyst.yaml", - "Kuroir Dark 21 Magenta": "kuroir-dark-21-magenta.yaml", - "Kuroir Dark 22 Fuchsia": "kuroir-dark-22-fuchsia.yaml", - "Kuroir Dark 23 Rose": "kuroir-dark-23-rose.yaml", - "Kuroir Dark 24 Coral": "kuroir-dark-24-coral.yaml", - "Kuroir Light 03 Amber": "kuroir-light-03-amber.yaml", - "Kuroir Light 07 Fern": "kuroir-light-07-fern.yaml", - "Kuroir Light 09 Jade": "kuroir-light-09-jade.yaml", - "Kuroir Light 12 Teal": "kuroir-light-12-teal.yaml", - "Kuroir Light 15 Sky": "kuroir-light-15-sky.yaml", - "Kuroir Light 18 Indigo": "kuroir-light-18-indigo.yaml", - "Kuroir Light 19 Violet": "kuroir-light-19-violet.yaml", - "Kuroir Light 23 Rose": "kuroir-light-23-rose.yaml", - "Kuroir Light 24 Coral": "kuroir-light-24-coral.yaml", - "Kyanite": "kyanite.yaml", + "Kuromesi-Theme": "kuromesi-theme.yaml", + "kybern": "kybern.yaml", "Kybern": "kybern.yaml", "Kybik": "kybik.yaml", "Kybik dark": "kybik-dark.yaml", "Kyngo's Theme": "kyngo-s-theme.yaml", - "Kyojuro Rengoku": "kyojuro-rengoku.yaml", - "kyorazo_dark_theme": "kyorazo-dark-theme.yaml", - "Lackluster": "lackluster.yaml", - "Lackluster Dark": "lackluster-dark.yaml", + "kyorazo_theme": "kyorazo-theme.yaml", + "Lackluster Theme (Lackluster Dark)": "lackluster-theme--lackluster-dark.yaml", + "Lackluster Theme (Lackluster)": "lackluster-theme--lackluster.yaml", "LadyLuck-Color-Theme": "ladyluck-color-theme.yaml", "lanten-color-theme-dark": "lanten-color-theme-dark.yaml", "Lapis": "lapis.yaml", "Lapis Dark": "lapis-dark.yaml", "Lapis Light": "lapis-light.yaml", "Lapres99": "lapres99.yaml", - "laracasts": "laracasts.yaml", - "laracasts-contrast": "laracasts-contrast.yaml", - "laracasts-light": "laracasts-light.yaml", + "LaraDark": "laradark.yaml", "LaraDocs": "laradocs.yaml", - "laravel": "laravel.yaml", "Laravel": "laravel.yaml", - "laravel-contrast": "laravel-contrast.yaml", - "laravel-light": "laravel-light.yaml", + "Laravel Theme": "laravel-theme.yaml", "Lascavo Classic": "lascavo-classic.yaml", "Lascavo Classic contrast": "lascavo-classic-contrast.yaml", "Lascavo Cold": "lascavo-cold.yaml", "LaserKai": "laserkai.yaml", "Late Night": "late-night.yaml", - "Lauds": "lauds.yaml", "Lavalink": "lavalink.yaml", - "Lavanda": "lavanda.yaml", - "lavender": "lavender.yaml", - "Lavender Dark Theme": "lavender-dark-theme.yaml", - "Lavender Light theme": "lavender-light-theme.yaml", - "lavender-light": "lavender-light.yaml", + "Lavanda Color Theme": "lavanda-color-theme.yaml", + "Lavender Code Theme (Lavender Dark Theme)": "lavender-code-theme--lavender-dark-theme.yaml", + "Lavender Code Theme (Lavender Light theme)": "lavender-code-theme--lavender-light-theme.yaml", "Lazuli": "lazuli.yaml", + "Lazy Themes": "lazy-themes.yaml", "lazy yellow lemon": "lazy-yellow-lemon.yaml", + "Lazy Yellow Lemon": "lazy-yellow-lemon.yaml", "lazygreed-theme": "lazygreed-theme.yaml", - "Lazzaretti Plenatech 💟": "lazzaretti-plenatech.yaml", - "Lazzaretti Win11 🪟": "lazzaretti-win11.yaml", + "Lazzaretti's VsCode Themes (Lazzaretti Plenatech 💟)": "lazzaretti-s-vscode-themes--lazzaretti-plenatech.yaml", + "Lazzaretti's VsCode Themes (Lazzaretti Win11 🪟)": "lazzaretti-s-vscode-themes--lazzaretti-win11.yaml", "LBB Builder Dark": "lbb-builder-dark.yaml", "LBB Builder Light": "lbb-builder-light.yaml", "lc": "lc.yaml", "LCARS": "lcars.yaml", "Le moderne": "le-moderne.yaml", - "Leaf Black": "leaf-black.yaml", "Leaf Dark": "leaf-dark.yaml", "Leaf Dark Soft": "leaf-dark-soft.yaml", "Lean-Coders Dark": "lean-coders-dark.yaml", - "Learn with Sumit Theme": "learn-with-sumit-theme.yaml", + "Learn with Sumit Theme (Dark Night)": "learn-with-sumit-theme--dark-night.yaml", + "Learn with Sumit Theme (Learn with Sumit - Peace of the eye)": "learn-with-sumit-theme--learn-with-sumit-peace-of-the-eye.yaml", + "Learn with Sumit Theme (Learn with Sumit - Professional Theme)": "learn-with-sumit-theme--learn-with-sumit-professional-theme.yaml", + "Learn with Sumit Theme (Learn with Sumit - Simple as light)": "learn-with-sumit-theme--learn-with-sumit-simple-as-light.yaml", + "Learn with Sumit Theme (Learn with Sumit - Vintage)": "learn-with-sumit-theme--learn-with-sumit-vintage.yaml", + "Learn with Sumit Theme (Learn with Sumit Blue Velvet Theme)": "learn-with-sumit-theme--learn-with-sumit-blue-velvet-theme.yaml", + "Learn with Sumit Theme (Learn with Sumit Official Theme)": "learn-with-sumit-theme--learn-with-sumit-official-theme.yaml", + "Learn with Sumit Theme (Learn with Sumit Theme)": "learn-with-sumit-theme--learn-with-sumit-theme.yaml", "Lebannen Theme": "lebannen-theme.yaml", "LeehXD": "leehxd.yaml", "Leftish": "leftish.yaml", "legacy": "legacy.yaml", - "legacy-contrast": "legacy-contrast.yaml", - "legacy-light": "legacy-light.yaml", "legacy-solarized-dark-color-theme": "legacy-solarized-dark-color-theme.yaml", "legacy-solarized-light-color-theme": "legacy-solarized-light-color-theme.yaml", - "Legendary attack of blue": "legendary-attack-of-blue.yaml", - "Legendary Dark": "legendary-dark.yaml", + "Legally Blind": "legally-blind.yaml", + "Legendary Light": "legendary-light.yaml", "Legends Theme Night": "legends-theme-night.yaml", "Legends Theme Night (FYMHR Special)": "legends-theme-night-fymhr-special.yaml", "Leios": "leios.yaml", "Lemon": "lemon.yaml", "Lemonade": "lemonade.yaml", + "lenglounh-theme": "lenglounh-theme.yaml", + "lennon red": "lennon-red.yaml", "Leon": "leon.yaml", "leon_arantes": "leon-arantes.yaml", "Leonida Keys Ocean": "leonida-keys-ocean.yaml", - "Lesbian": "lesbian.yaml", "lesser": "lesser.yaml", "Lesser": "lesser.yaml", - "Let's Code!": "let-s-code.yaml", + "Leva / ump45": "leva-ump45.yaml", "Leviosa Theme": "leviosa-theme.yaml", "Levuaska": "levuaska.yaml", - "lht": "lht.yaml", "LiangLiang One Monokai": "liangliang-one-monokai.yaml", - "lichen": "lichen.yaml", - "lichen-contrast": "lichen-contrast.yaml", - "lichen-light": "lichen-light.yaml", "LiddleLabTheme": "liddlelabtheme.yaml", "Liftoff": "liftoff.yaml", "LiG Dark": "lig-dark.yaml", @@ -3411,35 +3565,36 @@ "LiG Light Soft": "lig-light-soft.yaml", "light": "light.yaml", "Light": "light.yaml", - "Light code with bars": "light-code-with-bars.yaml", - "Light Decay": "light-decay.yaml", - "Light GruvDark": "light-gruvdark.yaml", - "Light GruvDark-Mono": "light-gruvdark-mono.yaml", - "Light GruvDark-Tokyo": "light-gruvdark-tokyo.yaml", - "Light Jade": "light-jade.yaml", + "Light Brown": "light-brown.yaml", + "Light Brown Leather": "light-brown-leather.yaml", + "Light Print": "light-print.yaml", + "Light purple": "light-purple.yaml", "Light Springbok": "light-springbok.yaml", "Light Theme": "light-theme.yaml", + "Light Theme Grey": "light-theme-grey.yaml", + "Light theme with bars": "light-theme-with-bars.yaml", "Light_mosqueta": "light-mosqueta.yaml", "Light-Brown": "light-brown.yaml", "light-print": "light-print.yaml", + "light-rblx-rian": "light-rblx-rian.yaml", "LightBlack": "lightblack.yaml", "LightDelight": "lightdelight.yaml", "Lighter-A theme for Light Coders": "lighter-a-theme-for-light-coders.yaml", "lightestlighttheme": "lightestlighttheme.yaml", "Lighthaus": "lighthaus.yaml", - "Lighthouse In The Dark (Boon Island Dark)": "lighthouse-in-the-dark-boon-island-dark.yaml", - "Lighthouse In The Dark (Boon Island Light)": "lighthouse-in-the-dark-boon-island-light.yaml", - "Lighthouse In The Dark (Rose Island Dark)": "lighthouse-in-the-dark-rose-island-dark.yaml", - "Lighthouse In The Dark (Rose Island Light)": "lighthouse-in-the-dark-rose-island-light.yaml", - "Lightning": "lightning.yaml", - "Lightning Dark": "lightning-dark.yaml", - "Lightning Light": "lightning-light.yaml", - "Lightning Material - Day": "lightning-material-day.yaml", - "Lightning Material - Evening": "lightning-material-evening.yaml", - "Lightning Material - Midnight": "lightning-material-midnight.yaml", - "Lightning Material - Soft": "lightning-material-soft.yaml", - "Lightning Soft": "lightning-soft.yaml", - "Lightning Soft - Dark": "lightning-soft-dark.yaml", + "Lighthouse In The Dark (Lighthouse In The Dark (Boon Island Dark))": "lighthouse-in-the-dark-lighthouse-in-the-dark-boon-island-dark.yaml", + "Lighthouse In The Dark (Lighthouse In The Dark (Boon Island Light))": "lighthouse-in-the-dark-lighthouse-in-the-dark-boon-island-light.yaml", + "Lighthouse In The Dark (Lighthouse In The Dark (Rose Island Dark))": "lighthouse-in-the-dark-lighthouse-in-the-dark-rose-island-dark.yaml", + "Lighthouse In The Dark (Lighthouse In The Dark (Rose Island Light))": "lighthouse-in-the-dark-lighthouse-in-the-dark-rose-island-light.yaml", + "Lightning (Lightning Cloud)": "lightning--lightning-cloud.yaml", + "Lightning (Lightning Dark)": "lightning--lightning-dark.yaml", + "Lightning (Lightning Material - Day)": "lightning--lightning-material-day.yaml", + "Lightning (Lightning Material - Evening)": "lightning--lightning-material-evening.yaml", + "Lightning (Lightning Material - Midnight)": "lightning--lightning-material-midnight.yaml", + "Lightning (Lightning Material - Soft)": "lightning--lightning-material-soft.yaml", + "Lightning (Lightning Soft - Dark)": "lightning--lightning-soft-dark.yaml", + "Lightning (Lightning Soft)": "lightning--lightning-soft.yaml", + "Lightning (Lightning)": "lightning--lightning.yaml", "Lightning Theme": "lightning-theme.yaml", "LigiaPink": "ligiapink.yaml", "lilac": "lilac.yaml", @@ -3450,64 +3605,78 @@ "limpo Darker": "limpo-darker.yaml", "Linear Dark": "linear-dark.yaml", "Linear Light": "linear-light.yaml", - "Linkarzu VScode theme": "linkarzu-vscode-theme.yaml", + "Linkarzu Colors": "linkarzu-colors.yaml", "lino": "lino.yaml", - "Lino - Dark Ruby": "lino-dark-ruby.yaml", + "Lino Themes": "lino-themes.yaml", + "Linux Themes for VS Code (Arc Dark)": "linux-themes-for-vs-code--arc-dark.yaml", + "Linux Themes for VS Code (Elementary)": "linux-themes-for-vs-code--elementary.yaml", + "Linux Themes for VS Code (Yaru Dark)": "linux-themes-for-vs-code--yaru-dark.yaml", + "Linux Themes for VS Code (Yaru)": "linux-themes-for-vs-code--yaru.yaml", "Lion": "lion.yaml", "Lionel": "lionel.yaml", "Liquid Dark": "liquid-dark.yaml", "Liquid Ochre": "liquid-ochre.yaml", - "Liquid Ray": "liquid-ray.yaml", - "Liquid Ray Light": "liquid-ray-light.yaml", - "Liquid Ray Soft Pink": "liquid-ray-soft-pink.yaml", + "Liquid Ray (Liquid Ray Light)": "liquid-ray--liquid-ray-light.yaml", + "Liquid Ray (Liquid Ray Soft Pink)": "liquid-ray--liquid-ray-soft-pink.yaml", + "Liquid Ray (Liquid Ray)": "liquid-ray--liquid-ray.yaml", "Liquor Theme": "liquor-theme.yaml", "Liquorice": "liquorice.yaml", - "Little League Dark": "little-league-dark.yaml", - "Little League Darker": "little-league-darker.yaml", - "Little League Light": "little-league-light.yaml", + "Little League (Little League Dark)": "little-league--little-league-dark.yaml", + "Little League (Little League Darker)": "little-league--little-league-darker.yaml", + "Little League (Little League Light)": "little-league--little-league-light.yaml", "LiveS": "lives.yaml", "Living Twilight": "living-twilight.yaml", - "Lofi": "lofi.yaml", - "Loki": "loki.yaml", - "Loki Official - Classic": "loki-official-classic.yaml", - "Loki Official - Kang Edition": "loki-official-kang-edition.yaml", + "Loki Official (Loki Official - Classic)": "loki-official--loki-official-classic.yaml", + "Loki Official (Loki Official - Kang Edition)": "loki-official--loki-official-kang-edition.yaml", "Loki Theme": "loki-theme.yaml", "Loki Theme Contrast": "loki-theme-contrast.yaml", "lolo": "lolo.yaml", + "LOLO": "lolo.yaml", "London Underground": "london-underground.yaml", "Lone wolf dark": "lone-wolf-dark.yaml", - "Lonely": "lonely.yaml", - "lonus-dark": "lonus-dark.yaml", - "LookiFy Dark mode": "lookify-dark-mode.yaml", - "LookiFy Light mode": "lookify-light-mode.yaml", + "lone-wolf-dark": "lone-wolf-dark.yaml", + "Lonely Theme": "lonely-theme.yaml", + "lonus": "lonus.yaml", + "LookiFy - Dark & Light Themes (LookiFy Dark mode)": "lookify-dark-light-themes--lookify-dark-mode.yaml", + "LookiFy - Dark & Light Themes (LookiFy Light mode)": "lookify-dark-light-themes--lookify-light-mode.yaml", "looped": "looped.yaml", "Loopy": "loopy.yaml", "lordmorphy": "lordmorphy.yaml", "lore": "lore.yaml", "LostforIndia": "lostforindia.yaml", - "Lotus Dark": "lotus-dark.yaml", + "Lotus Dark Theme": "lotus-dark-theme.yaml", "Lotus Flat Dusk": "lotus-flat-dusk.yaml", "Lotus Flat Midnight": "lotus-flat-midnight.yaml", - "Lotus Light": "lotus-light.yaml", + "Lotus Theme (Lotus Dark)": "lotus-theme--lotus-dark.yaml", + "Lotus Theme (Lotus Light)": "lotus-theme--lotus-light.yaml", "LovePurple": "lovepurple.yaml", + "Low Eye Strain Dark Neon (cosmicsarthak Dark)": "low-eye-strain-dark-neon--cosmicsarthak-dark.yaml", + "Low Eye Strain Dark Neon (cosmicsarthak Night Owl)": "low-eye-strain-dark-neon--cosmicsarthak-night-owl.yaml", + "Low Eye Strain Dark Neon (cosmicsarthak Red)": "low-eye-strain-dark-neon--cosmicsarthak-red.yaml", + "Low Eye Strain Dark Neon (cosmicsarthak-neon)": "low-eye-strain-dark-neon--cosmicsarthak-neon.yaml", + "Low Eye Strain Dark Neon (Solarized (dark))": "low-eye-strain-dark-neon-solarized-dark.yaml", "lowlvl": "lowlvl.yaml", - "loyal": "loyal.yaml", - "loyal-contrast": "loyal-contrast.yaml", - "loyal-light": "loyal-light.yaml", + "Luan Theme": "luan-theme.yaml", "LuanSlaSlaTheme": "luanslaslatheme.yaml", - "Luau-Starlit": "luau-starlit.yaml", "lubasiverse": "lubasiverse.yaml", "lubasiverse-freewill": "lubasiverse-freewill.yaml", "Lucario": "lucario.yaml", + "Lucario Theme": "lucario-theme.yaml", "Lucid Labs Dark": "lucid-labs-dark.yaml", "Lucid Labs Light": "lucid-labs-light.yaml", - "Lucifer Terminal Dark (Hacker Edition)": "lucifer-terminal-dark-hacker-edition.yaml", + "lucid summer nights (summer)": "lucid-summer-nights--summer.yaml", + "Lucifer Dark": "lucifer-dark.yaml", "Lucky Green": "lucky-green.yaml", + "LUCKY GREEN": "lucky-green.yaml", + "lucky-green": "lucky-green.yaml", "LuckyHub": "luckyhub.yaml", "Lui": "lui.yaml", + "Luiciff Themes Pack (Dark)": "luiciff-themes-pack--dark.yaml", + "Luiciff Themes Pack (Light)": "luiciff-themes-pack--light.yaml", + "Luiciff Themes Pack (Neon)": "luiciff-themes-pack--neon.yaml", "luiz": "luiz.yaml", - "luiz-dark-theme": "luiz-dark-theme.yaml", - "Luke Skywriter": "luke-skywriter.yaml", + "Luiz Dark (luiz-dark-theme)": "luiz-dark--luiz-dark-theme.yaml", + "luk3-theme": "luk3-theme.yaml", "Lull": "lull.yaml", "LuluTheme": "lulutheme.yaml", "Lumen Dark": "lumen-dark.yaml", @@ -3515,45 +3684,45 @@ "Lumin": "lumin.yaml", "lumina": "lumina.yaml", "Lumina": "lumina.yaml", + "Lumina theme": "lumina-theme.yaml", "Luminara Void": "luminara-void.yaml", "Luminarca (Crepúsculo)": "luminarca-crep-sculo.yaml", "Luminarca (Luz)": "luminarca-luz.yaml", "Luminarca (Trevas)": "luminarca-trevas.yaml", - "LuminaShade-Amethyst": "luminashade-amethyst.yaml", - "LuminEclipse": "lumineclipse.yaml", + "LuminaShade": "luminashade.yaml", + "LuminEclips": "lumineclips.yaml", "Luminescence Theme": "luminescence-theme.yaml", - "Lumon Theme": "lumon-theme.yaml", + "Lumon": "lumon.yaml", "Lumos Black": "lumos-black.yaml", "Lumos Dark": "lumos-dark.yaml", "Lumos Dark Soft": "lumos-dark-soft.yaml", - "Lumos Light Soft": "lumos-light-soft.yaml", - "Lunar": "lunar.yaml", - "Lunar Eclipse": "lunar-eclipse.yaml", - "Lunar Eclipse Golden Hour": "lunar-eclipse-golden-hour.yaml", - "Lunar Eclipse Light": "lunar-eclipse-light.yaml", - "Lunar Pink": "lunar-pink.yaml", - "Lunar Pink Satellite": "lunar-pink-satellite.yaml", - "Lunar Theme": "lunar-theme.yaml", - "lunar vscode": "lunar-vscode.yaml", + "Lunar Color Theme": "lunar-color-theme.yaml", + "Lunar Eclipse (Lunar Eclipse Golden Hour)": "lunar-eclipse--lunar-eclipse-golden-hour.yaml", + "Lunar Eclipse (Lunar Eclipse Light)": "lunar-eclipse--lunar-eclipse-light.yaml", + "Lunar Eclipse (Lunar Eclipse)": "lunar-eclipse--lunar-eclipse.yaml", + "Lunar Eclipse (Total Lunar Eclipse)": "lunar-eclipse--total-lunar-eclipse.yaml", + "Lunar Pink Theme (Lunar Pink Satellite)": "lunar-pink-theme--lunar-pink-satellite.yaml", + "Lunar Pink Theme (Lunar Pink)": "lunar-pink-theme--lunar-pink.yaml", "Lunaria": "lunaria.yaml", + "LunarVim Dark Theme": "lunarvim-dark-theme.yaml", "Lunna Dark": "lunna-dark.yaml", "Lupine": "lupine.yaml", "lupus": "lupus.yaml", "luxark": "luxark.yaml", "luxeforest": "luxeforest.yaml", - "Lyra's Vega": "lyra-s-vega.yaml", "LzTheme": "lztheme.yaml", "m-jtgzc": "m-jtgzc.yaml", "M-Unity's Custom VSCode Theme": "m-unity-s-custom-vscode-theme.yaml", "m.": "m.yaml", + "M2 Theme": "m2-theme.yaml", "M2D - Fork": "m2d-fork.yaml", "mac-theme": "mac-theme.yaml", "Mach1 Theme": "mach1-theme.yaml", - "Machine": "machine.yaml", + "MACH1 Theme": "mach1-theme.yaml", "Macho Man": "macho-man.yaml", + "MacindowsVS": "macindowsvs.yaml", "macOS": "macos.yaml", - "macOS Classic Dark": "macos-classic-dark.yaml", - "macOS Classic Light": "macos-classic-light.yaml", + "macOS Theme": "macos-theme.yaml", "Macrodata Refiners - Classic": "macrodata-refiners-classic.yaml", "Macrodata Refiners - Cold Harbor": "macrodata-refiners-cold-harbor.yaml", "Macrodata Refiners - Defiant Jazz": "macrodata-refiners-defiant-jazz.yaml", @@ -3564,8 +3733,10 @@ "madness": "madness.yaml", "MadNight": "madnight.yaml", "Madrid Night": "madrid-night.yaml", + "Maeel Theme": "maeel-theme.yaml", "Magenta One Dark Pro": "magenta-one-dark-pro.yaml", "Magic Mushroom Theme": "magic-mushroom-theme.yaml", + "Magic Theme - Dark": "magic-theme-dark.yaml", "MagicUser": "magicuser.yaml", "MagicUser Bases": "magicuser-bases.yaml", "MagicUser Book": "magicuser-book.yaml", @@ -3599,22 +3770,18 @@ "MagicUser Veteran Blue": "magicuser-veteran-blue.yaml", "MagicUser Veteran Purple": "magicuser-veteran-purple.yaml", "MagicUser Wand Blue": "magicuser-wand-blue.yaml", - "Magnolia": "magnolia.yaml", - "magnus-dark-theme": "magnus-dark-theme.yaml", "maguh": "maguh.yaml", "Maharashtra - Land of Warriors": "maharashtra-land-of-warriors.yaml", "Mahiro": "mahiro.yaml", - "Mainframe-Terminal": "mainframe-terminal.yaml", - "Maisum Xcode Dark": "maisum-xcode-dark.yaml", - "Mak1na Theme": "mak1na-theme.yaml", - "Make Apps": "make-apps.yaml", + "Maia-Theme-Purple": "maia-theme-purple.yaml", + "Mak1na Theme (Mak1na Theme)": "mak1na-theme--mak1na-theme.yaml", + "Make Apps Theme": "make-apps-theme.yaml", "Maki Konuri": "maki-konuri.yaml", "Malachite": "malachite.yaml", "Maldi Dark": "maldi-dark.yaml", "Malibu Sunset": "malibu-sunset.yaml", "Malibun Sunrise": "malibun-sunrise.yaml", "malte": "malte.yaml", - "Man Dark Stone": "man-dark-stone.yaml", "Manatee": "manatee.yaml", "Mandacaru Syntax Theme": "mandacaru-syntax-theme.yaml", "Manhld Theme": "manhld-theme.yaml", @@ -3625,157 +3792,178 @@ "Mantissa Light": "mantissa-light.yaml", "Maomao Dark Theme": "maomao-dark-theme.yaml", "Maomao Light Theme": "maomao-light-theme.yaml", - "Maple Dark": "maple-dark.yaml", - "Maple Light": "maple-light.yaml", + "Maple Theme (Maple Dark)": "maple-theme--maple-dark.yaml", + "Maple Theme (Maple Light)": "maple-theme--maple-light.yaml", "Marble Dark": "marble-dark.yaml", "Marci1": "marci1.yaml", - "Marcial Theme": "marcial-theme.yaml", + "Marciorasf's Dracula (Darkula)": "marciorasf-s-dracula--darkula.yaml", "marcoSven": "marcosven.yaml", "Mariana": "mariana.yaml", "Mariana ": "mariana.yaml", - "Mariana (Pro)": "mariana-pro.yaml", - "Mariana Refined": "mariana-refined.yaml", - "mariana-light": "mariana-light.yaml", + "Mariana Dark Theme (Sublime Text 4 Theme)": "mariana-dark-theme--sublime-text-4-theme.yaml", + "Mariana Pro (Mariana (Pro))": "mariana-pro-mariana-pro.yaml", + "Mariana Refined Theme (Mariana Refined)": "mariana-refined-theme--mariana-refined.yaml", + "Mariana Refined Theme (mariana-light)": "mariana-refined-theme--mariana-light.yaml", + "Mariana-No-Italic": "mariana-no-italic.yaml", "Marigold Night": "marigold-night.yaml", "Mario Theme": "mario-theme.yaml", - "Marnic1505": "marnic1505.yaml", - "Maroza Cyber Chill": "maroza-cyber-chill.yaml", - "Maroza Dark Theme": "maroza-dark-theme.yaml", - "Maroza Light Theme": "maroza-light-theme.yaml", - "Maroza Soothing Aqua": "maroza-soothing-aqua.yaml", - "Maroza Zen Pro": "maroza-zen-pro.yaml", + "Marmure Dark": "marmure-dark.yaml", + "Maroon Theme": "maroon-theme.yaml", + "Maroza Theme (Maroza Cyber Chill)": "maroza-theme--maroza-cyber-chill.yaml", + "Maroza Theme (Maroza Dark Theme)": "maroza-theme--maroza-dark-theme.yaml", + "Maroza Theme (Maroza Light Theme)": "maroza-theme--maroza-light-theme.yaml", + "Maroza Theme (Maroza Soothing Aqua)": "maroza-theme--maroza-soothing-aqua.yaml", + "Maroza Theme (Maroza Zen Pro)": "maroza-theme--maroza-zen-pro.yaml", "mars": "mars.yaml", "Mars": "mars.yaml", "MarshMallow": "marshmallow.yaml", "MarsiDark": "marsidark.yaml", "MARStree": "marstree.yaml", + "Martial Theme": "martial-theme.yaml", "Marwen-Labidi-Theme": "marwen-labidi-theme.yaml", "matcha": "matcha.yaml", "Matcha": "matcha.yaml", - "Matcha Pink": "matcha-pink.yaml", + "Matcha Pastel": "matcha-pastel.yaml", "matchalk": "matchalk.yaml", + "Matchalk": "matchalk.yaml", "Matchanaa": "matchanaa.yaml", - "MatchaNeco": "matchaneco.yaml", "Matchati": "matchati.yaml", - "Material": "material.yaml", + "Material Aurora": "material-aurora.yaml", "Material Community Ansi 16": "material-community-ansi-16.yaml", + "Material Festoon": "material-festoon.yaml", + "Material Light Theme (And Dark)": "material-light-theme--and-dark.yaml", + "Material Light Theme (And Dark) (One Dark Pro)": "material-light-theme-and-dark--one-dark-pro.yaml", "Material Midnight": "material-midnight.yaml", "Material Monokai High Contrast": "material-monokai-high-contrast.yaml", - "Material Neutral": "material-neutral.yaml", + "Material Monokai Theme": "material-monokai-theme.yaml", + "Material Neutral Theme": "material-neutral-theme.yaml", "Material Ocean": "material-ocean.yaml", - "Material Rainbow": "material-rainbow.yaml", "Material Solarized": "material-solarized.yaml", - "Material Theme Dark": "material-theme-dark.yaml", "Material Theme Darker": "material-theme-darker.yaml", - "Material Theme Twilight Wave Ocean Ui ~": "material-theme-twilight-wave-ocean-ui.yaml", + "Material Theme Italicize (Material-Theme-Darker)": "material-theme-italicize--material-theme-darker.yaml", + "Material Theme Italicize (Material-Theme-Default)": "material-theme-italicize--material-theme-default.yaml", + "Material Theme Italicize (Material-Theme-Lighter-High-Contrast)": "material-theme-italicize--material-theme-lighter-high-contrast.yaml", + "Material Theme Italicize (Material-Theme-Lighter)": "material-theme-italicize--material-theme-lighter.yaml", + "Material Theme Italicize (Material-Theme-Palenight)": "material-theme-italicize--material-theme-palenight.yaml", + "Material UI": "material-ui.yaml", "material-color-theme": "material-color-theme.yaml", - "material-dark-color-theme": "material-dark-color-theme.yaml", "Material-Pure-Dark": "material-pure-dark.yaml", - "Material-Theme-DHC-Mix-In-Pycharm-Darcula-Theme": "material-theme-dhc-mix-in-pycharm-darcula-theme.yaml", "Material-Theme-Ocean": "material-theme-ocean.yaml", + "Material-tweaked": "material-tweaked.yaml", "material1": "material1.yaml", - "MaterialDarker-MonokaiST3": "materialdarker-monokaist3.yaml", "materialdarkplus": "materialdarkplus.yaml", + "MaterialDarkPlus": "materialdarkplus.yaml", "Matey": "matey.yaml", "Matitheme": "matitheme.yaml", "Matitheme Gotham": "matitheme-gotham.yaml", "Matrix": "matrix.yaml", - "Matrix Hacking Dark Theme": "matrix-hacking-dark-theme.yaml", "Matrix Mint": "matrix-mint.yaml", - "Matrix Reloaded": "matrix-reloaded.yaml", - "Matrix Reloaded 🔒 LOCKED": "matrix-reloaded-locked.yaml", + "Matrix Theme": "matrix-theme.yaml", "Matronator's Theme": "matronator-s-theme.yaml", - "Matte Atelier — Ivory": "matte-atelier-ivory.yaml", - "Matte Atelier — Obsidian": "matte-atelier-obsidian.yaml", - "Matte Atelier — Obsidian Colorblind": "matte-atelier-obsidian-colorblind.yaml", - "Matte Atelier — Obsidian High Contrast": "matte-atelier-obsidian-high-contrast.yaml", - "Matte Atelier — Rosé": "matte-atelier-ros.yaml", - "Matte Atelier — Sapphire": "matte-atelier-sapphire.yaml", + "Matte Atelier - Premium Studio Theme (Matte Atelier — Ivory)": "matte-atelier-premium-studio-theme--matte-atelier-ivory.yaml", + "Matte Atelier - Premium Studio Theme (Matte Atelier — Obsidian Colorblind)": "matte-atelier-premium-studio-theme--matte-atelier-obsidian-colorblind.yaml", + "Matte Atelier - Premium Studio Theme (Matte Atelier — Obsidian High Contrast)": "matte-atelier-premium-studio-theme--matte-atelier-obsidian-high-contrast.yaml", + "Matte Atelier - Premium Studio Theme (Matte Atelier — Obsidian)": "matte-atelier-premium-studio-theme--matte-atelier-obsidian.yaml", + "Matte Atelier - Premium Studio Theme (Matte Atelier — Rosé)": "matte-atelier-premium-studio-theme--matte-atelier-ros.yaml", + "Matte Atelier - Premium Studio Theme (Matte Atelier — Sapphire)": "matte-atelier-premium-studio-theme--matte-atelier-sapphire.yaml", "Matte Light Theme": "matte-light-theme.yaml", "MatteBlack": "matteblack.yaml", "matter": "matter.yaml", - "Matteric Dark Default": "matteric-dark-default.yaml", + "Matter": "matter.yaml", + "Matteric Theme": "matteric-theme.yaml", + "Matugen VSCode": "matugen-vscode.yaml", "MauricePlus": "mauriceplus.yaml", - "Maus Dark": "maus-dark.yaml", - "mauve": "mauve.yaml", - "mauve-contrast": "mauve-contrast.yaml", - "mauve-light": "mauve-light.yaml", + "Maus Theme": "maus-theme.yaml", "Mavaia": "mavaia.yaml", "Max2": "max2.yaml", "Maxsumon": "maxsumon.yaml", - "Mayukai": "mayukai.yaml", + "Maya React Color Theme (Carbon React Color Theme - Maya Black)": "maya-react-color-theme--carbon-react-color-theme-maya-black.yaml", + "Maya React Color Theme (Carbon React Color Theme - Maya)": "maya-react-color-theme--carbon-react-color-theme-maya.yaml", + "Maya React Color Theme (Carbon React Color Theme)": "maya-react-color-theme--carbon-react-color-theme.yaml", + "Mayukai Theme (Mayukai)": "mayukai-theme--mayukai.yaml", "Mazda-RX7-Theme": "mazda-rx7-theme.yaml", "MBP": "mbp.yaml", + "McBurger (McDark Theme)": "mcburger--mcdark-theme.yaml", "McDark Theme": "mcdark-theme.yaml", "McDonalds Theme": "mcdonalds-theme.yaml", "McYoda's Light Theme": "mcyoda-s-light-theme.yaml", - "Md Abdur Rakib": "md-abdur-rakib.yaml", - "Meadow-Whisper": "meadow-whisper.yaml", - "Meaow Dark": "meaow-dark.yaml", + "Meaow Theme (Meaow Dark)": "meaow-theme--meaow-dark.yaml", "MECHA.01": "mecha-01.yaml", "medium-dark": "medium-dark.yaml", "Mega Green": "mega-green.yaml", - "MeiNanziiii": "meinanziiii.yaml", "Meitnerium Theme": "meitnerium-theme.yaml", "mel": "mel.yaml", "melancholy": "melancholy.yaml", + "Melange Redux (Melange Redux: Light)": "melange-redux--melange-redux-light.yaml", "Melange Redux: Dark": "melange-redux-dark.yaml", - "Melange Redux: Light": "melange-redux-light.yaml", "melcr": "melcr.yaml", "Melee Island": "melee-island.yaml", "Melinoe": "melinoe.yaml", "mellow": "mellow.yaml", "Mellow": "mellow.yaml", - "mellow-contrast": "mellow-contrast.yaml", - "mellow-light": "mellow-light.yaml", "Melokai": "melokai.yaml", "MelonCode": "meloncode.yaml", "Melyon": "melyon.yaml", "Melyon Blue": "melyon-blue.yaml", "Menelik": "menelik.yaml", - "MeOceanEmerald": "meoceanemerald.yaml", + "MeOcean Themes (MeOceanEmerald)": "meocean-themes--meoceanemerald.yaml", "MeOceanGray": "meoceangray.yaml", - "Meridian": "meridian.yaml", - "Meridian Neutral": "meridian-neutral.yaml", + "Meowrch Code Theme": "meowrch-code-theme.yaml", + "Meridian Theme (Meridian Neutral)": "meridian-theme--meridian-neutral.yaml", + "Meridian Theme (Meridian)": "meridian-theme--meridian.yaml", "Merlot": "merlot.yaml", "Mesalvo Cortex": "mesalvo-cortex.yaml", - "Meshvoid": "meshvoid.yaml", - "MeshVoid_Light": "meshvoid-light.yaml", + "MeshVoid Themes (MeshVoid_Light)": "meshvoid-themes--meshvoid-light.yaml", + "MeshVoid Themes (Meshvoid)": "meshvoid-themes--meshvoid.yaml", "Metagrama": "metagrama.yaml", "Meteora": "meteora.yaml", "Metropolis": "metropolis.yaml", "Metropolis Light": "metropolis-light.yaml", - "Metropolis-Sky-Scape": "metropolis-sky-scape.yaml", "Mgldvd Theme": "mgldvd-theme.yaml", "MH Theme": "mh-theme.yaml", "mhfeizi": "mhfeizi.yaml", "mi4uokai": "mi4uokai.yaml", - "Miami Vice": "miami-vice.yaml", "miami-nights": "miami-nights.yaml", "miami-wind": "miami-wind.yaml", - "miasma-color-theme": "miasma-color-theme.yaml", + "Miasma": "miasma.yaml", "MibTema": "mibtema.yaml", "Michota": "michota.yaml", "micky-dark-black": "micky-dark-black.yaml", "micky-dark-lite": "micky-dark-lite.yaml", "micky-dark-lite-black": "micky-dark-lite-black.yaml", + "microhouse": "microhouse.yaml", "Microhouse": "microhouse.yaml", + "mid-nigth": "mid-nigth.yaml", "Midas Touch": "midas-touch.yaml", + "Midas Touch (Midas Touch)": "midas-touch--midas-touch.yaml", "Midas Touch Light": "midas-touch-light.yaml", - "Midas-Touch": "midas-touch.yaml", "Midcentury": "midcentury.yaml", - "Middle-Field-Canvas": "middle-field-canvas.yaml", "Midight Sun": "midight-sun.yaml", "Midnight Blueprint": "midnight-blueprint.yaml", "Midnight Breeze": "midnight-breeze.yaml", "Midnight Candy": "midnight-candy.yaml", - "Midnight City": "midnight-city.yaml", + "Midnight City (Midnight City)": "midnight-city--midnight-city.yaml", + "Midnight Coven: Gothic Theme Collection (Gothic Absinthe)": "midnight-coven-gothic-theme-collection--gothic-absinthe.yaml", + "Midnight Coven: Gothic Theme Collection (Gothic Amber Fog)": "midnight-coven-gothic-theme-collection--gothic-amber-fog.yaml", + "Midnight Coven: Gothic Theme Collection (Gothic Blood Moon)": "midnight-coven-gothic-theme-collection--gothic-blood-moon.yaml", + "Midnight Coven: Gothic Theme Collection (Gothic Cathedral)": "midnight-coven-gothic-theme-collection--gothic-cathedral.yaml", + "Midnight Coven: Gothic Theme Collection (Gothic Cemetery)": "midnight-coven-gothic-theme-collection--gothic-cemetery.yaml", + "Midnight Coven: Gothic Theme Collection (Gothic Emerald Crypt)": "midnight-coven-gothic-theme-collection--gothic-emerald-crypt.yaml", + "Midnight Coven: Gothic Theme Collection (Gothic Jester)": "midnight-coven-gothic-theme-collection--gothic-jester.yaml", + "Midnight Coven: Gothic Theme Collection (Gothic Midnight Rose)": "midnight-coven-gothic-theme-collection--gothic-midnight-rose.yaml", + "Midnight Coven: Gothic Theme Collection (Gothic Qaddy)": "midnight-coven-gothic-theme-collection--gothic-qaddy.yaml", + "Midnight Coven: Gothic Theme Collection (Gothic Raven)": "midnight-coven-gothic-theme-collection--gothic-raven.yaml", + "Midnight Coven: Gothic Theme Collection (Gothic Spider Lily)": "midnight-coven-gothic-theme-collection--gothic-spider-lily.yaml", + "Midnight Coven: Gothic Theme Collection (Gothic Twilight Forest)": "midnight-coven-gothic-theme-collection--gothic-twilight-forest.yaml", + "Midnight Coven: Gothic Theme Collection (Gothic Vampire)": "midnight-coven-gothic-theme-collection--gothic-vampire.yaml", + "Midnight Coven: Gothic Theme Collection (Gothic Victorian Mourning)": "midnight-coven-gothic-theme-collection--gothic-victorian-mourning.yaml", "Midnight Dark": "midnight-dark.yaml", "Midnight Darker": "midnight-darker.yaml", "Midnight Dracula": "midnight-dracula.yaml", "Midnight Embers": "midnight-embers.yaml", "Midnight Emerald": "midnight-emerald.yaml", "Midnight Forest": "midnight-forest.yaml", + "Midnight Fusion": "midnight-fusion.yaml", "Midnight Gambler": "midnight-gambler.yaml", "Midnight Grove": "midnight-grove.yaml", "Midnight Guest": "midnight-guest.yaml", @@ -3785,70 +3973,76 @@ "Midnight Lake": "midnight-lake.yaml", "Midnight Light": "midnight-light.yaml", "Midnight Marina": "midnight-marina.yaml", - "Midnight Mirage": "midnight-mirage.yaml", + "Midnight Mirage Theme": "midnight-mirage-theme.yaml", "Midnight Monochrome": "midnight-monochrome.yaml", "Midnight Monokai": "midnight-monokai.yaml", - "Midnight Moon": "midnight-moon.yaml", - "Midnight Moon Eclipse": "midnight-moon-eclipse.yaml", - "Midnight Moon Ukiyo": "midnight-moon-ukiyo.yaml", + "Midnight Moon - Themes (Midnight Moon Eclipse)": "midnight-moon-themes--midnight-moon-eclipse.yaml", + "Midnight Moon - Themes (Midnight Moon Ukiyo)": "midnight-moon-themes--midnight-moon-ukiyo.yaml", + "Midnight Moon - Themes (Midnight Moon)": "midnight-moon-themes--midnight-moon.yaml", + "Midnight Moon - Themes (Midnight Pro)": "midnight-moon-themes--midnight-pro.yaml", + "Midnight Moon - Themes (Midnight Ukiyo)": "midnight-moon-themes--midnight-ukiyo.yaml", + "Midnight Moon - Themes (Zen Mono)": "midnight-moon-themes--zen-mono.yaml", "Midnight Ocean": "midnight-ocean.yaml", - "Midnight Pastel": "midnight-pastel.yaml", - "Midnight Pro": "midnight-pro.yaml", - "Midnight Purple": "midnight-purple.yaml", "Midnight Purple Deep": "midnight-purple-deep.yaml", "Midnight Rainbow": "midnight-rainbow.yaml", "Midnight Rose Theme": "midnight-rose-theme.yaml", "Midnight Sapphire": "midnight-sapphire.yaml", - "Midnight Shadow - Fork": "midnight-shadow-fork.yaml", + "Midnight Sapphire ✨": "midnight-sapphire.yaml", + "Midnight Shadow": "midnight-shadow.yaml", "Midnight Soft": "midnight-soft.yaml", "Midnight Theme": "midnight-theme.yaml", + "Midnight Theme (Midnight Theme)": "midnight-theme--midnight-theme.yaml", "Midnight Theme Light": "midnight-theme-light.yaml", "Midnight Theme Light Soft": "midnight-theme-light-soft.yaml", - "Midnight Ukiyo": "midnight-ukiyo.yaml", "midnight-color-theme": "midnight-color-theme.yaml", "midnight-fusion": "midnight-fusion.yaml", "Midnight-Z": "midnight-z.yaml", "MidnightBlue": "midnightblue.yaml", "MidnightGlow": "midnightglow.yaml", "midt": "midt.yaml", + "Midwinter (Nord)": "midwinter--nord.yaml", "Midwinter Light": "midwinter-light.yaml", "Mihari": "mihari.yaml", "Mihari Bordered": "mihari-bordered.yaml", "Mike Sources Green CRT": "mike-sources-green-crt.yaml", - "Mike Sources Hacker": "mike-sources-hacker.yaml", "Mike Sources YellowStone": "mike-sources-yellowstone.yaml", "Mikes-Vscode-Theme-1": "mikes-vscode-theme-1.yaml", - "mikestheme (edited GulajavaMinistudio Mayukai theme)": "mikestheme-edited-gulajavaministudio-mayukai-theme.yaml", - "Miku Code": "miku-code.yaml", - "Miku Code Fusion Light": "miku-code-fusion-light.yaml", - "Miku Code Light": "miku-code-light.yaml", + "mikestheme": "mikestheme.yaml", + "Miku Code (Miku Code Fusion Light)": "miku-code--miku-code-fusion-light.yaml", + "Miku Code (Miku Code Light)": "miku-code--miku-code-light.yaml", + "Miku Code (Miku Code)": "miku-code--miku-code.yaml", + "Miku Theme": "miku-theme.yaml", "Milianor Theme": "milianor-theme.yaml", - "military - Fork": "military-fork.yaml", - "MilkyWay": "milkyway.yaml", + "Militry Green": "militry-green.yaml", + "Milky Way": "milky-way.yaml", "Mimesis Dark": "mimesis-dark.yaml", "Mimesis Light": "mimesis-light.yaml", - "Min Gruvbox": "min-gruvbox.yaml", + "Min Gruvbox Theme": "min-gruvbox-theme.yaml", + "Min Theme": "min-theme.yaml", "minai": "minai.yaml", "MinCom": "mincom.yaml", - "Mineral-Forest": "mineral-forest.yaml", + "minimal": "minimal.yaml", "Minimal": "minimal.yaml", + "Minimal (Minimal)": "minimal--minimal.yaml", + "Minimal (Shades)": "minimal--shades.yaml", + "Minimal (ThemeFramek)": "minimal--themeframek.yaml", "minimal dark": "minimal-dark.yaml", "Minimal Dark": "minimal-dark.yaml", - "minimal dark - Fork": "minimal-dark-fork.yaml", - "Minimal Monochrome Dark": "minimal-monochrome-dark.yaml", - "Minimal Monochrome Ink Dark": "minimal-monochrome-ink-dark.yaml", - "Minimal Monochrome Ink Light": "minimal-monochrome-ink-light.yaml", - "Minimal Monochrome Light": "minimal-monochrome-light.yaml", - "Minimal Monochrome Pastel Dawn": "minimal-monochrome-pastel-dawn.yaml", - "Minimal Monochrome Pastel Light": "minimal-monochrome-pastel-light.yaml", - "Minimal Monochrome Slate Dark": "minimal-monochrome-slate-dark.yaml", + "Minimal Green": "minimal-green.yaml", + "Minimal Monochrome (Minimal Monochrome Dark)": "minimal-monochrome--minimal-monochrome-dark.yaml", + "Minimal Monochrome (Minimal Monochrome Ink Dark)": "minimal-monochrome--minimal-monochrome-ink-dark.yaml", + "Minimal Monochrome (Minimal Monochrome Ink Light)": "minimal-monochrome--minimal-monochrome-ink-light.yaml", + "Minimal Monochrome (Minimal Monochrome Light)": "minimal-monochrome--minimal-monochrome-light.yaml", + "Minimal Monochrome (Minimal Monochrome Pastel Dawn)": "minimal-monochrome--minimal-monochrome-pastel-dawn.yaml", + "Minimal Monochrome (Minimal Monochrome Pastel Light)": "minimal-monochrome--minimal-monochrome-pastel-light.yaml", + "Minimal Monochrome (Minimal Monochrome Slate Dark)": "minimal-monochrome--minimal-monochrome-slate-dark.yaml", "Minimal Pastel Dark — Vibrant (Softer Yellow)": "minimal-pastel-dark-vibrant-softer-yellow.yaml", "Minimal Theme": "minimal-theme.yaml", "Minimal Wave - Floral Dark": "minimal-wave-floral-dark.yaml", "Minimal Wave - Floral Light": "minimal-wave-floral-light.yaml", "minimal_green": "minimal-green.yaml", - "Minimal-44": "minimal-44.yaml", - "Minimal-44-pro": "minimal-44-pro.yaml", + "Minimal-44 (Minimal-44-pro)": "minimal-44--minimal-44-pro.yaml", + "Minimal-44 (Minimal-44)": "minimal-44--minimal-44.yaml", "MinimalBlue": "minimalblue.yaml", "minimalesque": "minimalesque.yaml", "MinimalGold": "minimalgold.yaml", @@ -3856,53 +4050,51 @@ "Minimalistic dark theme": "minimalistic-dark-theme.yaml", "MinimalisticDarkTheme": "minimalisticdarktheme.yaml", "Minimalistik": "minimalistik.yaml", + "Minimalistik ": "minimalistik.yaml", "MinimalRed": "minimalred.yaml", "miniml-dusk": "miniml-dusk.yaml", "miniml-light": "miniml-light.yaml", "miniml-midnight": "miniml-midnight.yaml", "Minimus": "minimus.yaml", + "miniTheme": "minitheme.yaml", "MiniTheme": "minitheme.yaml", - "mink dark theme": "mink-dark-theme.yaml", - "Minokai Kalel": "minokai-kalel.yaml", + "Minokai": "minokai.yaml", "Minone": "minone.yaml", "Mint Chocolate": "mint-chocolate.yaml", - "Mint Dark": "mint-dark.yaml", - "mintchoc": "mintchoc.yaml", - "mintchoc-contrast": "mintchoc-contrast.yaml", - "mintchoc-light": "mintchoc-light.yaml", + "Mint Theme (Mint Dark)": "mint-theme--mint-dark.yaml", "MintDark": "mintdark.yaml", "Minty Dark": "minty-dark.yaml", + "mio": "mio.yaml", + "Mir2 Theme (Themer Dark)": "mir2-theme--themer-dark.yaml", + "Mir2 Theme (Themer Light)": "mir2-theme--themer-light.yaml", "mirai": "mirai.yaml", - "Mirai": "mirai.yaml", "mirajdev": "mirajdev.yaml", "Miramare": "miramare.yaml", "Mist": "mist.yaml", - "Mist Theme": "mist-theme.yaml", "Misterioso": "misterioso.yaml", - "Misty Blue": "misty-blue.yaml", + "Misty Blue (Misty Blue)": "misty-blue--misty-blue.yaml", "MistyWind": "mistywind.yaml", "Mitaverse": "mitaverse.yaml", "mitsuri": "mitsuri.yaml", - "Mitsuri Kanroji": "mitsuri-kanroji.yaml", - "Mixed Solarized Light": "mixed-solarized-light.yaml", "mk iceBlack": "mk-iceblack.yaml", "MK Mono Dark": "mk-mono-dark.yaml", "MKANET": "mkanet.yaml", + "MKANET Theme": "mkanet-theme.yaml", "MKDeveloper Theme": "mkdeveloper-theme.yaml", "mlia-dark": "mlia-dark.yaml", "mlia-light": "mlia-light.yaml", "mlia-soft": "mlia-soft.yaml", + "mlv60 vintage dark": "mlv60-vintage-dark.yaml", "mlv60 vintage light": "mlv60-vintage-light.yaml", "mlv60-vintage-dark": "mlv60-vintage-dark.yaml", + "mlv60-vintage-light": "mlv60-vintage-light.yaml", "Mocaccino Light": "mocaccino-light.yaml", "Moderate Dimm": "moderate-dimm.yaml", "Modern Dracula": "modern-dracula.yaml", "Modern Dracula | White": "modern-dracula-white.yaml", - "Modern-Retro": "modern-retro.yaml", "ModernEclipse": "moderneclipse.yaml", "ModernUI": "modernui.yaml", - "ModernUI - Fork": "modernui-fork.yaml", - "Modest pink": "modest-pink.yaml", + "Modest-Pink-Theme": "modest-pink-theme.yaml", "Modified Darker Material Theme": "modified-darker-material-theme.yaml", "Modus Operandi": "modus-operandi.yaml", "Modus Operandi Deuteranopia": "modus-operandi-deuteranopia.yaml", @@ -3912,13 +4104,14 @@ "Modus Vivendi Deuteranopia": "modus-vivendi-deuteranopia.yaml", "Modus Vivendi Tinted": "modus-vivendi-tinted.yaml", "Modus Vivendi Tritanopia": "modus-vivendi-tritanopia.yaml", - "Moegi Black": "moegi-black.yaml", - "Moegi Black Zen": "moegi-black-zen.yaml", - "Moegi Dark": "moegi-dark.yaml", - "Moegi Dawn": "moegi-dawn.yaml", - "Moegi Iris": "moegi-iris.yaml", - "Moegi Light": "moegi-light.yaml", - "Moegi Space": "moegi-space.yaml", + "Modus-Vivendi-Tinted": "modus-vivendi-tinted.yaml", + "Moegi Theme (Moegi Black Zen)": "moegi-theme--moegi-black-zen.yaml", + "Moegi Theme (Moegi Black)": "moegi-theme--moegi-black.yaml", + "Moegi Theme (Moegi Dark)": "moegi-theme--moegi-dark.yaml", + "Moegi Theme (Moegi Dawn)": "moegi-theme--moegi-dawn.yaml", + "Moegi Theme (Moegi Iris)": "moegi-theme--moegi-iris.yaml", + "Moegi Theme (Moegi Light)": "moegi-theme--moegi-light.yaml", + "Moegi Theme (Moegi Space)": "moegi-theme--moegi-space.yaml", "Moin Acme": "moin-acme.yaml", "Moin Dark": "moin-dark.yaml", "Moin Light": "moin-light.yaml", @@ -3932,136 +4125,155 @@ "Molarity - Washed": "molarity-washed.yaml", "Molineux": "molineux.yaml", "Moloch": "moloch.yaml", - "Molokai Darker": "molokai-darker.yaml", + "Molokai Dark": "molokai-dark.yaml", "Molten Aurora": "molten-aurora.yaml", - "monaco-paulsevere-color-theme": "monaco-paulsevere-color-theme.yaml", - "Monet-Impressionism": "monet-impressionism.yaml", + "Monassa": "monassa.yaml", "Monfika": "monfika.yaml", - "Mono Atom": "mono-atom.yaml", + "mono (mono dark)": "mono--mono-dark.yaml", + "mono (mono white)": "mono--mono-white.yaml", "Mono BW": "mono-bw.yaml", - "mono dark": "mono-dark.yaml", "Mono Next": "mono-next.yaml", - "mono white": "mono-white.yaml", + "Mono-Atom (Mono Atom)": "mono-atom--mono-atom.yaml", "mono-cl": "mono-cl.yaml", "Monochai Dark": "monochai-dark.yaml", - "Monochromator Dark Plain": "monochromator-dark-plain.yaml", - "Monochromator Light Plain": "monochromator-light-plain.yaml", + "Monochromator (Monochromator Dark Plain)": "monochromator--monochromator-dark-plain.yaml", + "Monochromator (Monochromator Light Plain)": "monochromator--monochromator-light-plain.yaml", "monochrome": "monochrome.yaml", "Monochrome": "monochrome.yaml", - "Monochrome (GitHub Edition)": "monochrome-github-edition.yaml", - "monochrome-dark": "monochrome-dark.yaml", - "monochrome-dark-amplified": "monochrome-dark-amplified.yaml", - "monochrome-dark-cool-gray": "monochrome-dark-cool-gray.yaml", + "Monochrome (fork by dkamyshov) (monochrome-dark-amplified)": "monochrome-fork-by-dkamyshov--monochrome-dark-amplified.yaml", + "Monochrome (fork by dkamyshov) (monochrome-dark-subtle)": "monochrome-fork-by-dkamyshov--monochrome-dark-subtle.yaml", + "Monochrome (fork by dkamyshov) (monochrome-dark)": "monochrome-fork-by-dkamyshov--monochrome-dark.yaml", + "Monochrome (fork by dkamyshov) (monochrome-light-amplified)": "monochrome-fork-by-dkamyshov--monochrome-light-amplified.yaml", + "Monochrome (fork by dkamyshov) (monochrome-light-subtle)": "monochrome-fork-by-dkamyshov--monochrome-light-subtle.yaml", + "Monochrome (fork by dkamyshov) (monochrome-light)": "monochrome-fork-by-dkamyshov--monochrome-light.yaml", + "Monochrome (Monochrome (GitHub Edition))": "monochrome-monochrome-github-edition.yaml", + "Monochrome (monochrome-dark-amplified)": "monochrome--monochrome-dark-amplified.yaml", + "Monochrome (monochrome-dark-cool-gray)": "monochrome--monochrome-dark-cool-gray.yaml", + "Monochrome (monochrome-dark-indigo)": "monochrome--monochrome-dark-indigo.yaml", + "Monochrome (monochrome-dark-subtle)": "monochrome--monochrome-dark-subtle.yaml", + "Monochrome (monochrome-dark)": "monochrome--monochrome-dark.yaml", + "Monochrome (monochrome-light-amplified)": "monochrome--monochrome-light-amplified.yaml", + "Monochrome (monochrome-light-cool-gray)": "monochrome--monochrome-light-cool-gray.yaml", + "Monochrome (monochrome-light-indigo)": "monochrome--monochrome-light-indigo.yaml", + "Monochrome (monochrome-light-subtle)": "monochrome--monochrome-light-subtle.yaml", + "Monochrome (monochrome-light)": "monochrome--monochrome-light.yaml", + "Monochrome (Monochrome)": "monochrome--monochrome.yaml", + "Monochrome Theme": "monochrome-theme.yaml", "monochrome-dark-gray": "monochrome-dark-gray.yaml", - "monochrome-dark-indigo": "monochrome-dark-indigo.yaml", "monochrome-dark-neutral": "monochrome-dark-neutral.yaml", "monochrome-dark-slate": "monochrome-dark-slate.yaml", "monochrome-dark-stone": "monochrome-dark-stone.yaml", - "monochrome-dark-subtle": "monochrome-dark-subtle.yaml", "monochrome-dark-zinc": "monochrome-dark-zinc.yaml", - "monochrome-light": "monochrome-light.yaml", - "monochrome-light-amplified": "monochrome-light-amplified.yaml", - "monochrome-light-cool-gray": "monochrome-light-cool-gray.yaml", "monochrome-light-gray": "monochrome-light-gray.yaml", - "monochrome-light-indigo": "monochrome-light-indigo.yaml", "monochrome-light-neutral": "monochrome-light-neutral.yaml", "monochrome-light-slate": "monochrome-light-slate.yaml", "monochrome-light-stone": "monochrome-light-stone.yaml", - "monochrome-light-subtle": "monochrome-light-subtle.yaml", "monochrome-light-zinc": "monochrome-light-zinc.yaml", - "Monocious-color-theme": "monocious-color-theme.yaml", + "monochrome.": "monochrome.yaml", + "Monocious": "monocious.yaml", "Monoclean Light": "monoclean-light.yaml", - "Monocr": "monocr.yaml", "MonoCraft": "monocraft.yaml", "Monoeye": "monoeye.yaml", "monokai": "monokai.yaml", - "Monokai +Red": "monokai-red.yaml", - "Monokai Classic": "monokai-classic.yaml", + "Monokai Accents (Monokai +Red)": "monokai-accents--monokai-red.yaml", + "Monokai After Dark": "monokai-after-dark.yaml", + "Monokai Air Theme": "monokai-air-theme.yaml", "Monokai Dark": "monokai-dark.yaml", - "Monokai Dark Green": "monokai-dark-green.yaml", + "Monokai Dark Green (Monokai Dark Green)": "monokai-dark-green--monokai-dark-green.yaml", + "Monokai Dark Theme": "monokai-dark-theme.yaml", "Monokai Deep Dark": "monokai-deep-dark.yaml", "Monokai Deep Ocean": "monokai-deep-ocean.yaml", + "monokai Dev (dev2)": "monokai-dev--dev2.yaml", + "monokai Dev (dev3)": "monokai-dev--dev3.yaml", + "monokai Dev (dev4)": "monokai-dev--dev4.yaml", + "monokai Dev (dev5)": "monokai-dev--dev5.yaml", + "monokai Dev (dev6)": "monokai-dev--dev6.yaml", + "monokai Dev (dev7)": "monokai-dev--dev7.yaml", + "monokai Dev (dev8)": "monokai-dev--dev8.yaml", + "monokai Dev (dev9)": "monokai-dev--dev9.yaml", "Monokai Drizzle": "monokai-drizzle.yaml", + "Monokai Faded": "monokai-faded.yaml", "Monokai Flow": "monokai-flow.yaml", "Monokai Grey": "monokai-grey.yaml", "Monokai GRS": "monokai-grs.yaml", + "Monokai GRS Elixir Fork": "monokai-grs-elixir-fork.yaml", "Monokai Midnight": "monokai-midnight.yaml", + "Monokai Night Theme": "monokai-night-theme.yaml", "Monokai Night Z Blue": "monokai-night-z-blue.yaml", + "Monokai Ocean": "monokai-ocean.yaml", "Monokai Octagon": "monokai-octagon.yaml", - "Monokai Pro": "monokai-pro.yaml", + "monokai original sublime theme": "monokai-original-sublime-theme.yaml", + "Monokai Prime": "monokai-prime.yaml", "Monokai Rain": "monokai-rain.yaml", - "Monokai Semantic": "monokai-semantic.yaml", + "Monokai Red Moon": "monokai-red-moon.yaml", + "Monokai Seti": "monokai-seti.yaml", "Monokai Sharp": "monokai-sharp.yaml", "Monokai soda darker": "monokai-soda-darker.yaml", "Monokai Storm": "monokai-storm.yaml", "Monokai supersaturated": "monokai-supersaturated.yaml", - "Monokai Theme": "monokai-theme.yaml", + "Monokai Supersaturated": "monokai-supersaturated.yaml", + "Monokai Theme use High Contrast": "monokai-theme-use-high-contrast.yaml", "Monokai Tornado": "monokai-tornado.yaml", "Monokai Underdark": "monokai-underdark.yaml", "Monokai Underdark MK": "monokai-underdark-mk.yaml", "Monokai--": "monokai.yaml", "monokai-color-theme-1": "monokai-color-theme-1.yaml", - "monokai-dark": "monokai-dark.yaml", "monokai-extended": "monokai-extended.yaml", "monokai-faded": "monokai-faded.yaml", - "monokai-hc-color-theme": "monokai-hc-color-theme.yaml", - "monokai-japan-color-theme": "monokai-japan-color-theme.yaml", - "monokai-minimal": "monokai-minimal.yaml", - "monokai-ocean-color-theme": "monokai-ocean-color-theme.yaml", - "Monokai-Okean": "monokai-okean.yaml", + "Monokai-Japan Theme": "monokai-japan-theme.yaml", + "monokai-mahesh": "monokai-mahesh.yaml", "monokai-original-sublime-theme": "monokai-original-sublime-theme.yaml", "monokai-prime": "monokai-prime.yaml", "monokai-seti-dark": "monokai-seti-dark.yaml", - "monokai-seti-light": "monokai-seti-light.yaml", - "Monokai++ Unified": "monokai-unified.yaml", + "Monokai++": "monokai.yaml", "Monokai22": "monokai22.yaml", "monokaiju": "monokaiju.yaml", "MonokaiSGQ": "monokaisgq.yaml", "Monokaizen": "monokaizen.yaml", - "Monokard": "monokard.yaml", + "Monokard Theme": "monokard-theme.yaml", "Monokong": "monokong.yaml", - "monokuro-amber": "monokuro-amber.yaml", "Monolite": "monolite.yaml", - "Monos - Blac": "monos-blac.yaml", - "Monospace Dark": "monospace-dark.yaml", - "Monospace Light": "monospace-light.yaml", + "Monolite Space (Monolite Space Dark)": "monolite-space--monolite-space-dark.yaml", + "Monolite Space (Monolite Space Gray)": "monolite-space--monolite-space-gray.yaml", + "Monospace Theme (Monospace Dark)": "monospace-theme--monospace-dark.yaml", + "Monospace Theme (Monospace Light)": "monospace-theme--monospace-light.yaml", + "Monospace Theme (Space Dark)": "monospace-theme--space-dark.yaml", + "Monospace Theme (Space Light)": "monospace-theme--space-light.yaml", "monotone": "monotone.yaml", - "Monove - Fork": "monove-fork.yaml", + "monove": "monove.yaml", "MonRch-Darc": "monrch-darc.yaml", "Montana": "montana.yaml", - "Monte Cristo Theme": "monte-cristo-theme.yaml", + "Monte Cristo": "monte-cristo.yaml", "Monza Dark": "monza-dark.yaml", - "monzo": "monzo.yaml", - "monzo-contrast": "monzo-contrast.yaml", - "monzo-light": "monzo-light.yaml", "Moon Light Theme": "moon-light-theme.yaml", "Moon Night": "moon-night.yaml", "Moon Phases": "moon-phases.yaml", "Moon Purple": "moon-purple.yaml", "Moon Violet Dark Plus": "moon-violet-dark-plus.yaml", - "Moonbloom Theme Official": "moonbloom-theme-official.yaml", + "Moonbloom Official Theme": "moonbloom-official-theme.yaml", "Moonerized Dark": "moonerized-dark.yaml", "Moonerized Light": "moonerized-light.yaml", "Moonfly": "moonfly.yaml", "Moongate Theme Dark": "moongate-theme-dark.yaml", "Moongate Theme Light": "moongate-theme-light.yaml", "MoonKai": "moonkai.yaml", - "Moonlight": "moonlight.yaml", - "Moonlight II": "moonlight-ii.yaml", + "Moonlight VSCode Theme 🌌": "moonlight-vscode-theme.yaml", + "moonokai": "moonokai.yaml", "Moonokai": "moonokai.yaml", - "Moonspell - Northern Lights": "moonspell-northern-lights.yaml", - "morass": "morass.yaml", - "morass-contrast": "morass-contrast.yaml", - "morass-light": "morass-light.yaml", + "Moonspell Themes": "moonspell-themes.yaml", + "More Colorful": "more-colorful.yaml", "more purple": "more-purple.yaml", - "morgan.codes": "morgan-codes.yaml", + "More Purple": "more-purple.yaml", + "morgan.codes-theme": "morgan-codes-theme.yaml", "Mori": "mori.yaml", "Mori Keycaps": "mori-keycaps.yaml", "Morita": "morita.yaml", + "morita (Azul)": "morita--azul.yaml", + "morita (Sober)": "morita--sober.yaml", "Morning Mist": "morning-mist.yaml", "Morning Mocha": "morning-mocha.yaml", "Morose Theme": "morose-theme.yaml", - "Mosaic": "mosaic.yaml", + "Mosaic Theme": "mosaic-theme.yaml", "Mosmmy": "mosmmy.yaml", "Moss Oracle": "moss-oracle.yaml", "MossFrame": "mossframe.yaml", @@ -4072,22 +4284,19 @@ "Motion Blue": "motion-blue.yaml", "Motiv8der's Theme": "motiv8der-s-theme.yaml", "Mount Kalaga Noir": "mount-kalaga-noir.yaml", - "mountain-theme": "mountain-theme.yaml", "Mountains and Rivers": "mountains-and-rivers.yaml", + "mourning": "mourning.yaml", "Mourning": "mourning.yaml", "Mowgli": "mowgli.yaml", "Mr Code Black": "mr-code-black.yaml", "Mr Code Gunmetal": "mr-code-gunmetal.yaml", + "Mr Robot Dark Theme": "mr-robot-dark-theme.yaml", "MS Dev Theme": "ms-dev-theme.yaml", - "MSquare Dark": "msquare-dark.yaml", - "mt-doom-theme": "mt-doom-theme.yaml", - "mud": "mud.yaml", + "Mt. Doom": "mt-doom.yaml", "Mud Theme": "mud-theme.yaml", - "mud-contrast": "mud-contrast.yaml", - "mud-light": "mud-light.yaml", "Murasaki theme": "murasaki-theme.yaml", - "Muromachi": "muromachi.yaml", - "Murora Light Lite": "murora-light-lite.yaml", + "Muromachi Deluxe": "muromachi-deluxe.yaml", + "murora": "murora.yaml", "murtadapy-green": "murtadapy-green.yaml", "MushroomSynth": "mushroomsynth.yaml", "Muted Mirage": "muted-mirage.yaml", @@ -4096,8 +4305,6 @@ "My Custom Theme": "my-custom-theme.yaml", "my dark theme": "my-dark-theme.yaml", "my dark theme - refined - updated": "my-dark-theme-refined-updated.yaml", - "My First Visual Studio Theme": "my-first-visual-studio-theme.yaml", - "My Hero Academia (Deku Plus Ultra)": "my-hero-academia-deku-plus-ultra.yaml", "My Light Theme": "my-light-theme.yaml", "my light theme - mint sand updated": "my-light-theme-mint-sand-updated.yaml", "my light theme - mint sand updated - Fork Bluesand": "my-light-theme-mint-sand-updated-fork-bluesand.yaml", @@ -4111,8 +4318,10 @@ "My Oceanic": "my-oceanic.yaml", "my theme": "my-theme.yaml", "My theme": "my-theme.yaml", + "my-custom-theme-extension": "my-custom-theme-extension.yaml", "my-dark-theme": "my-dark-theme.yaml", "my-theme": "my-theme.yaml", + "my-theme-luisfelipe": "my-theme-luisfelipe.yaml", "MyCode Dark": "mycode-dark.yaml", "MyGO!!!!!": "mygo.yaml", "Mynthra": "mynthra.yaml", @@ -4120,19 +4329,24 @@ "Myoptic v2": "myoptic-v2.yaml", "Myrteal": "myrteal.yaml", "Mystic": "mystic.yaml", + "Mystic blue": "mystic-blue.yaml", + "Mystic Dark Collection (Deep Ocean)": "mystic-dark-collection--deep-ocean.yaml", + "Mystic Fusion": "mystic-fusion.yaml", "Mystic Moonshadow": "mystic-moonshadow.yaml", + "Mystic MoonShadow Theme (Mystic Moonshadow)": "mystic-moonshadow-theme--mystic-moonshadow.yaml", "Mystic-MoonShadow": "mystic-moonshadow.yaml", "Mystico - C64": "mystico-c64.yaml", "Mystico - C64 Pepto NTSC Sony": "mystico-c64-pepto-ntsc-sony.yaml", "Mystico - C64 Pepto PAL": "mystico-c64-pepto-pal.yaml", "Mystico - Deep purple": "mystico-deep-purple.yaml", + "Mystico - Deep Purple": "mystico-deep-purple.yaml", "Mystico - Forest & Ocean": "mystico-forest-ocean.yaml", + "Mystico - mint": "mystico-mint.yaml", "Mystico - Mint": "mystico-mint.yaml", "Mystico - Plum": "mystico-plum.yaml", "Mystico - Purples": "mystico-purples.yaml", "myTheme": "mytheme.yaml", "Myūzu": "my-zu.yaml", - "MyVsCode": "myvscode.yaml", "MZ Light Grey - Sharp": "mz-light-grey-sharp.yaml", "N-DarkTheme": "n-darktheme.yaml", "n0m4D": "n0m4d.yaml", @@ -4145,113 +4359,134 @@ "Nachop Dark": "nachop-dark.yaml", "Nachop Light": "nachop-light.yaml", "Nachop Light Bordered": "nachop-light-bordered.yaml", + "Nachop theme (Piggy)": "nachop-theme--piggy.yaml", "Nada Theme": "nada-theme.yaml", - "Nairobi-dark": "nairobi-dark.yaml", + "Nairobi": "nairobi.yaml", "Nanami Madobe Theme": "nanami-madobe-theme.yaml", + "nanami-madobe-theme": "nanami-madobe-theme.yaml", "Nanowise": "nanowise.yaml", + "Naomi's Themes (Ocean Breeze)": "naomi-s-themes--ocean-breeze.yaml", + "Naomi's Themes (Sakura Dreams Dark)": "naomi-s-themes--sakura-dreams-dark.yaml", + "Naomi's Themes (Sakura Dreams)": "naomi-s-themes--sakura-dreams.yaml", + "Naomi's Themes (Trans Pride Light (Naomi))": "naomi-s-themes-trans-pride-light-naomi.yaml", + "Naomi's Themes (Witchy Dark)": "naomi-s-themes--witchy-dark.yaml", "Naps Dusk Gold": "naps-dusk-gold.yaml", "Narasimha - Fearless Dark Theme": "narasimha-fearless-dark-theme.yaml", - "Narixius One Dark": "narixius-one-dark.yaml", + "narato (Kanao)": "narato--kanao.yaml", + "Narixius Theme": "narixius-theme.yaml", "narunika": "narunika.yaml", - "Naruto (Hokage Orange)": "naruto-hokage-orange.yaml", - "Naruto Akatsuki": "naruto-akatsuki.yaml", - "Naruto Hinata Hyuga - Byakugan Vision": "naruto-hinata-hyuga-byakugan-vision.yaml", - "Naruto Hokage Dawn": "naruto-hokage-dawn.yaml", - "Naruto Itachi Uchiha - Tsukuyomi Dimension": "naruto-itachi-uchiha-tsukuyomi-dimension.yaml", - "Naruto Jiraiya - Gallant Toad Sage": "naruto-jiraiya-gallant-toad-sage.yaml", - "Naruto Kakashi Copy Ninja": "naruto-kakashi-copy-ninja.yaml", - "Naruto Kurama Nine-Tails": "naruto-kurama-nine-tails.yaml", - "Naruto Kushina Uzumaki - Red Hot-Blooded Habanero": "naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml", - "Naruto Might Guy - GATE OF DEATH MADARA BATTLE": "naruto-might-guy-gate-of-death-madara-battle.yaml", - "Naruto Might Guy Gates of Youth": "naruto-might-guy-gates-of-youth.yaml", - "Naruto Minato Namikaze - Yellow Flash": "naruto-minato-namikaze-yellow-flash.yaml", - "Naruto Pain/Nagato - Rinnegan God": "naruto-pain-nagato-rinnegan-god.yaml", - "Naruto Sage Mode": "naruto-sage-mode.yaml", - "Naruto Sakura Haruno - Cherry Blossom Storm": "naruto-sakura-haruno-cherry-blossom-storm.yaml", - "Naruto Sasuke Uchiha - Sharingan": "naruto-sasuke-uchiha-sharingan.yaml", - "Naruto Shikamaru Nara - Shadow Possession": "naruto-shikamaru-nara-shadow-possession.yaml", - "Naruto Shinobi Night": "naruto-shinobi-night.yaml", - "natasha-theme": "natasha-theme.yaml", + "Naruto Shinobi Theme (Hashirama Senju - God of Shinobi)": "naruto-shinobi-theme--hashirama-senju-god-of-shinobi.yaml", + "Naruto Shinobi Theme (Naruto Akatsuki)": "naruto-shinobi-theme--naruto-akatsuki.yaml", + "Naruto Shinobi Theme (Naruto Hinata Hyuga - Byakugan Vision)": "naruto-shinobi-theme--naruto-hinata-hyuga-byakugan-vision.yaml", + "Naruto Shinobi Theme (Naruto Hokage Dawn)": "naruto-shinobi-theme--naruto-hokage-dawn.yaml", + "Naruto Shinobi Theme (Naruto Itachi Uchiha - Tsukuyomi Dimension)": "naruto-shinobi-theme--naruto-itachi-uchiha-tsukuyomi-dimension.yaml", + "Naruto Shinobi Theme (Naruto Jiraiya - Gallant Toad Sage)": "naruto-shinobi-theme--naruto-jiraiya-gallant-toad-sage.yaml", + "Naruto Shinobi Theme (Naruto Kakashi Copy Ninja)": "naruto-shinobi-theme--naruto-kakashi-copy-ninja.yaml", + "Naruto Shinobi Theme (Naruto Kurama Nine-Tails)": "naruto-shinobi-theme--naruto-kurama-nine-tails.yaml", + "Naruto Shinobi Theme (Naruto Kushina Uzumaki - Red Hot-Blooded Habanero)": "naruto-shinobi-theme--naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml", + "Naruto Shinobi Theme (Naruto Might Guy - GATE OF DEATH MADARA BATTLE)": "naruto-shinobi-theme--naruto-might-guy-gate-of-death-madara-battle.yaml", + "Naruto Shinobi Theme (Naruto Might Guy Gates of Youth)": "naruto-shinobi-theme--naruto-might-guy-gates-of-youth.yaml", + "Naruto Shinobi Theme (Naruto Minato Namikaze - Yellow Flash)": "naruto-shinobi-theme--naruto-minato-namikaze-yellow-flash.yaml", + "Naruto Shinobi Theme (Naruto Pain/Nagato - Rinnegan God)": "naruto-shinobi-theme--naruto-pain-nagato-rinnegan-god.yaml", + "Naruto Shinobi Theme (Naruto Sage Mode)": "naruto-shinobi-theme--naruto-sage-mode.yaml", + "Naruto Shinobi Theme (Naruto Sakura Haruno - Cherry Blossom Storm)": "naruto-shinobi-theme--naruto-sakura-haruno-cherry-blossom-storm.yaml", + "Naruto Shinobi Theme (Naruto Sasuke Uchiha - Sharingan)": "naruto-shinobi-theme--naruto-sasuke-uchiha-sharingan.yaml", + "Naruto Shinobi Theme (Naruto Shikamaru Nara - Shadow Possession)": "naruto-shinobi-theme--naruto-shikamaru-nara-shadow-possession.yaml", + "Naruto Shinobi Theme (Naruto Shinobi Night)": "naruto-shinobi-theme--naruto-shinobi-night.yaml", + "Naruto Shinobi Theme (Tobirama Water Style)": "naruto-shinobi-theme--tobirama-water-style.yaml", + "Natasha Purple": "natasha-purple.yaml", "Natives in Tech Theme": "natives-in-tech-theme.yaml", "NaTTo Theme 2": "natto-theme-2.yaml", + "Natty": "natty.yaml", "Natural Faded Dark": "natural-faded-dark.yaml", + "Natural green": "natural-green.yaml", "Natural Green - Growth & Harmony": "natural-green-growth-harmony.yaml", "Natural Green Light - Growth & Harmony": "natural-green-light-growth-harmony.yaml", + "natural-faded-dark": "natural-faded-dark.yaml", "Nature": "nature.yaml", "Nature Green - Growth & Harmony": "nature-green-growth-harmony.yaml", "Nature Green Light - Growth & Harmony": "nature-green-light-growth-harmony.yaml", "nature-color-theme": "nature-color-theme.yaml", + "Naturefy Themes (Koi Pond Dark)": "naturefy-themes--koi-pond-dark.yaml", + "Naturefy Themes (Koi Pond Light)": "naturefy-themes--koi-pond-light.yaml", + "Naturefy Themes (Ukiyo-e Manuscript)": "naturefy-themes--ukiyo-e-manuscript.yaml", "Nautilus": "nautilus.yaml", "Naver": "naver.yaml", "Navy": "navy.yaml", "Navy Flat": "navy-flat.yaml", "Navy Theme": "navy-theme.yaml", - "navy-nights-theme": "navy-nights-theme.yaml", - "nb-monochrome-dark": "nb-monochrome-dark.yaml", + "nb monochrome": "nb-monochrome.yaml", "ncl5c": "ncl5c.yaml", "Nebula": "nebula.yaml", - "Nebula Dark Vibrant © Fabo IT and Media Group": "nebula-dark-vibrant-fabo-it-and-media-group.yaml", - "Nebula Nights": "nebula-nights.yaml", - "Nebula Pro Dark": "nebula-pro-dark.yaml", + "Nebula Colorscheme": "nebula-colorscheme.yaml", + "Nebula Dark": "nebula-dark.yaml", + "Nebula Dark Theme Pack": "nebula-dark-theme-pack.yaml", + "Nebula for VS Code": "nebula-for-vs-code.yaml", + "Nebula Nights Pastel": "nebula-nights-pastel.yaml", "Nebula Surge": "nebula-surge.yaml", "Nebula Symphony Dark": "nebula-symphony-dark.yaml", "Nebula Symphony Dark Pro": "nebula-symphony-dark-pro.yaml", "Nebula Symphony Light": "nebula-symphony-light.yaml", - "Nebula-color-theme": "nebula-color-theme.yaml", + "Nebula Theme": "nebula-theme.yaml", "Nebular Theme": "nebular-theme.yaml", - "Nebularomantic": "nebularomantic.yaml", "Nebulous Luna": "nebulous-luna.yaml", - "Necessity AAA Light": "necessity-aaa-light.yaml", - "Necessity-AAA": "necessity-aaa.yaml", + "Necessity (Necessity AAA Light)": "necessity--necessity-aaa-light.yaml", + "Necessity (Necessity-AAA)": "necessity--necessity-aaa.yaml", "Negative Theme": "negative-theme.yaml", "Neil's Theme": "neil-s-theme.yaml", "Neil's Theme (Dark)": "neil-s-theme-dark.yaml", "Nekhbet": "nekhbet.yaml", "neki": "neki.yaml", - "Neo Hacker Soft - Premium": "neo-hacker-soft-premium.yaml", - "Neo Seoul Dark": "neo-seoul-dark.yaml", - "Neo Seoul Light": "neo-seoul-light.yaml", - "neo-nuxt-matte": "neo-nuxt-matte.yaml", - "neo-vscode-theme": "neo-vscode-theme.yaml", + "Neki": "neki.yaml", + "Neo Nuxt Blend (neo-nuxt-matte)": "neo-nuxt-blend--neo-nuxt-matte.yaml", + "Neo Nuxt Blend (Nuxt Blend-Bleach Color Theme)": "neo-nuxt-blend--nuxt-blend-bleach-color-theme.yaml", + "Neo Nuxt Blend (Nuxt Blend)": "neo-nuxt-blend--nuxt-blend.yaml", + "Neo Seoul Theme (Neo Seoul Dark)": "neo-seoul-theme--neo-seoul-dark.yaml", + "Neo Seoul Theme (Neo Seoul Light)": "neo-seoul-theme--neo-seoul-light.yaml", + "Neo Theme": "neo-theme.yaml", "Neodark+": "neodark.yaml", "Neofusion": "neofusion.yaml", "Neogenesis": "neogenesis.yaml", "Neokai": "neokai.yaml", - "Neon Color - Dark Theme": "neon-color-dark-theme.yaml", - "Neon Cyber": "neon-cyber.yaml", - "Neon Cyberpunk": "neon-cyberpunk.yaml", - "Neon Dream Code": "neon-dream-code.yaml", - "Neon Dreams": "neon-dreams.yaml", + "Neon Color - Dark Theme (JetBrains IDE Dark Theme)": "neon-color-dark-theme--jetbrains-ide-dark-theme.yaml", + "Neon Color - Dark Theme (Matrix Hacking Dark Theme)": "neon-color-dark-theme--matrix-hacking-dark-theme.yaml", + "Neon Color - Dark Theme (Neon Color - Dark Theme)": "neon-color-dark-theme--neon-color-dark-theme.yaml", + "Neon Color - Dark Theme (One Dark Pro Theme)": "neon-color-dark-theme--one-dark-pro-theme.yaml", + "Neon Color - Dark Theme (Visual Studio Code Dark Theme)": "neon-color-dark-theme--visual-studio-code-dark-theme.yaml", + "Neon Cyberpunk Theme (Neon Cyberpunk)": "neon-cyberpunk-theme--neon-cyberpunk.yaml", + "Neon Cyberpunk Theme (Neon Glow)": "neon-cyberpunk-theme--neon-glow.yaml", + "Neon Cyberpunk Theme (Neon Matrix)": "neon-cyberpunk-theme--neon-matrix.yaml", + "Neon Cyberpunk Theme (Neon Ocean)": "neon-cyberpunk-theme--neon-ocean.yaml", + "Neon Cyberpunk Theme (Neon Sunset)": "neon-cyberpunk-theme--neon-sunset.yaml", + "Neon Cyberpunk Theme (Neon Synthwave)": "neon-cyberpunk-theme--neon-synthwave.yaml", + "Neon Cyberpunk Theme (Neon Violet)": "neon-cyberpunk-theme--neon-violet.yaml", + "Neon Dreams Theme (Neon Dreams)": "neon-dreams-theme--neon-dreams.yaml", "Neon Dusk": "neon-dusk.yaml", "Neon Forest": "neon-forest.yaml", - "Neon Glow": "neon-glow.yaml", - "Neon Green — Light": "neon-green-light.yaml", - "Neon Green — Midnight": "neon-green-midnight.yaml", + "Neon Genesis Evangelion Themes": "neon-genesis-evangelion-themes.yaml", + "Neon Green — Dark Terminal (Neon Green — Light)": "neon-green-dark-terminal--neon-green-light.yaml", + "Neon Green — Dark Terminal (Neon Green — Midnight)": "neon-green-dark-terminal--neon-green-midnight.yaml", + "Neon jet": "neon-jet.yaml", "Neon Lights": "neon-lights.yaml", - "Neon Matrix": "neon-matrix.yaml", "Neon Noir": "neon-noir.yaml", - "Neon Ocean": "neon-ocean.yaml", - "Neon Palette Themes (Red)": "neon-palette-themes-red.yaml", - "Neon Shimmer": "neon-shimmer.yaml", - "Neon Shimmer (Amethyst Core)": "neon-shimmer-amethyst-core.yaml", - "Neon Shimmer (Bubblegum Punk)": "neon-shimmer-bubblegum-punk.yaml", - "Neon Shimmer (Crimson Drive)": "neon-shimmer-crimson-drive.yaml", + "Neon Palette Themes (Neon Palette Themes (Red))": "neon-palette-themes-neon-palette-themes-red.yaml", + "Neon Shimmer (Neon Shimmer (Amethyst Core))": "neon-shimmer-neon-shimmer-amethyst-core.yaml", + "Neon Shimmer (Neon Shimmer (Bubblegum Punk))": "neon-shimmer-neon-shimmer-bubblegum-punk.yaml", + "Neon Shimmer (Neon Shimmer (Crimson Drive))": "neon-shimmer-neon-shimmer-crimson-drive.yaml", + "Neon Shimmer (Neon Shimmer)": "neon-shimmer--neon-shimmer.yaml", "Neon Side": "neon-side.yaml", - "Neon Sunset": "neon-sunset.yaml", - "Neon Synthwave": "neon-synthwave.yaml", "Neon Trench Theme": "neon-trench-theme.yaml", - "Neon Violet": "neon-violet.yaml", "Neon-Black": "neon-black.yaml", - "neon-theme": "neon-theme.yaml", "NeonAska": "neonaska.yaml", - "Neonite": "neonite.yaml", + "Neonite Theme": "neonite-theme.yaml", "neonmist": "neonmist.yaml", "NeonShaded": "neonshaded.yaml", "NeoRose VimPine": "neorose-vimpine.yaml", + "NeoRose-VimPine": "neorose-vimpine.yaml", "Neospace": "neospace.yaml", "Neospectrum Midnight": "neospectrum-midnight.yaml", "Neospectrum Mystic": "neospectrum-mystic.yaml", - "neovim-theme": "neovim-theme.yaml", + "neovim-theme (neovim-theme)": "neovim-theme--neovim-theme.yaml", "Neovim.SP": "neovim-sp.yaml", "Nephtis Dark": "nephtis-dark.yaml", "Nephtis Light": "nephtis-light.yaml", @@ -4259,11 +4494,12 @@ "Nerc One Dark B": "nerc-one-dark-b.yaml", "Nerd light": "nerd-light.yaml", "Nero": "nero.yaml", - "nestjs.codes": "nestjs-codes.yaml", - "NetBeans Harmonized": "netbeans-harmonized.yaml", + "Nest Theme": "nest-theme.yaml", + "nestjs full color theme": "nestjs-full-color-theme.yaml", + "NetBilla (Untitled)": "netbilla--untitled.yaml", "NetBilla Blue": "netbilla-blue.yaml", - "Netlify": "netlify.yaml", - "Netlify Theme": "netlify-theme.yaml", + "Netlify Theme (Netlify)": "netlify-theme--netlify.yaml", + "netlify-vscode-theme": "netlify-vscode-theme.yaml", "netrunnaz": "netrunnaz.yaml", "netstack": "netstack.yaml", "NETTSI Monokai Darker": "nettsi-monokai-darker.yaml", @@ -4271,8 +4507,10 @@ "neumatter night": "neumatter-night.yaml", "NeuralTone": "neuraltone.yaml", "Neutral": "neutral.yaml", + "Neutral (BlueSea)": "neutral--bluesea.yaml", + "Neutral (Neutral)": "neutral--neutral.yaml", + "Neutral (NeutralVI)": "neutral--neutralvi.yaml", "Neutral Gray - Minimalism & Focus": "neutral-gray-minimalism-focus.yaml", - "NeutralVI": "neutralvi.yaml", "Neutron": "neutron.yaml", "Nevada": "nevada.yaml", "nevejestvo-theme": "nevejestvo-theme.yaml", @@ -4283,73 +4521,76 @@ "NEVO": "nevo.yaml", "NEVO black": "nevo-black.yaml", "NEVO comfy": "nevo-comfy.yaml", - "NEVO pro": "nevo-pro.yaml", - "New England light theme": "new-england-light-theme.yaml", - "New Moon": "new-moon.yaml", + "New dark Railscasts": "new-dark-railscasts.yaml", + "New England": "new-england.yaml", + "New Moon Syntax Theme": "new-moon-syntax-theme.yaml", "New Owl": "new-owl.yaml", "New Retro": "new-retro.yaml", "New South Wales Dark": "new-south-wales-dark.yaml", "New South Wales Light": "new-south-wales-light.yaml", "new theme": "new-theme.yaml", + "New Wave Theme": "new-wave-theme.yaml", + "new-retro": "new-retro.yaml", "new-sphere": "new-sphere.yaml", "new-wave-theme": "new-wave-theme.yaml", "NewDarkTheme": "newdarktheme.yaml", - "Newera Dark Theme": "newera-dark-theme.yaml", - "NewRailscasts": "newrailscasts.yaml", + "newera-theme": "newera-theme.yaml", "Newspaperlike": "newspaperlike.yaml", "newsprint": "newsprint.yaml", "newsprint-invert": "newsprint-invert.yaml", "newsprint-so": "newsprint-so.yaml", - "newton": "newton.yaml", - "Newton Next (Official)": "newton-next-official.yaml", - "newton-contrast": "newton-contrast.yaml", - "newton-light": "newton-light.yaml", "NewX Light": "newx-light.yaml", + "Next Js Theme": "next-js-theme.yaml", "next-theme": "next-theme.yaml", "nextcode": "nextcode.yaml", - "NextGen Terminal": "nextgen-terminal.yaml", + "NextGen Terminal - Professional Dark Themes Collection (CyberSec Pro)": "nextgen-terminal-professional-dark-themes-collection--cybersec-pro.yaml", + "NextGen Terminal - Professional Dark Themes Collection (Matrix Reloaded 🔒 LOCKED)": "nextgen-terminal-professional-dark-themes-collection--matrix-reloaded-locked.yaml", + "NextGen Terminal - Professional Dark Themes Collection (Matrix Reloaded)": "nextgen-terminal-professional-dark-themes-collection--matrix-reloaded.yaml", + "NextGen Terminal - Professional Dark Themes Collection (NextGen Terminal)": "nextgen-terminal-professional-dark-themes-collection--nextgen-terminal.yaml", + "NextGen Terminal - Professional Dark Themes Collection (Quantum Flux)": "nextgen-terminal-professional-dark-themes-collection--quantum-flux.yaml", "Nexus": "nexus.yaml", "Nexus Dark": "nexus-dark.yaml", - "NGC Aurora Dawn": "ngc-aurora-dawn.yaml", - "NGC Aurora Night": "ngc-aurora-night.yaml", - "NGC Forest Retreat": "ngc-forest-retreat.yaml", - "NGC Midnight Base": "ngc-midnight-base.yaml", + "NGC Themes - Best Premium VS Code Themes for Developers (NGC Aurora Dawn)": "ngc-themes-best-premium-vs-code-themes-for-developers--ngc-aurora-dawn.yaml", + "NGC Themes - Best Premium VS Code Themes for Developers (NGC Aurora Night)": "ngc-themes-best-premium-vs-code-themes-for-developers--ngc-aurora-night.yaml", + "NGC Themes - Best Premium VS Code Themes for Developers (NGC Forest Retreat)": "ngc-themes-best-premium-vs-code-themes-for-developers--ngc-forest-retreat.yaml", + "NGC Themes - Best Premium VS Code Themes for Developers (NGC Midnight Base)": "ngc-themes-best-premium-vs-code-themes-for-developers--ngc-midnight-base.yaml", "ngoding bro": "ngoding-bro.yaml", - "Nibelung": "nibelung.yaml", - "Nibelung Dark": "nibelung-dark.yaml", - "Nice-Dark": "nice-dark.yaml", + "nibelung-theme-vscode (Nibelung Dark)": "nibelung-theme-vscode--nibelung-dark.yaml", + "nibelung-theme-vscode (Nibelung)": "nibelung-theme-vscode--nibelung.yaml", + "nice-dark (Nice-Dark)": "nice-dark--nice-dark.yaml", "niceDark": "nicedark.yaml", "nicedark - Fork": "nicedark-fork.yaml", - "Nicely Neon": "nicely-neon.yaml", + "Nicely Neon Theme": "nicely-neon-theme.yaml", "Nier: Automata Light Theme": "nier-automata-light-theme.yaml", "Nier: Automata Theme": "nier-automata-theme.yaml", "night": "night.yaml", "Night": "night.yaml", - "Night blue (high)": "night-blue-high.yaml", + "night blossom": "night-blossom.yaml", "Night City": "night-city.yaml", "Night Cyan": "night-cyan.yaml", - "Night Dragon": "night-dragon.yaml", + "Night Dark Theme": "night-dark-theme.yaml", "night fae theme": "night-fae-theme.yaml", + "Night Howl (night-howl)": "night-howl--night-howl.yaml", "Night Market": "night-market.yaml", - "Night Owl Oled Dim 100": "night-owl-oled-dim-100.yaml", - "Night Owl Oled Dim 75": "night-owl-oled-dim-75.yaml", - "Night Owl Oled Dim 80": "night-owl-oled-dim-80.yaml", - "Night Owl Oled Dim 85": "night-owl-oled-dim-85.yaml", - "Night Owl Oled Dim 90": "night-owl-oled-dim-90.yaml", - "Night Owl Oled Dim 95": "night-owl-oled-dim-95.yaml", + "Night Node": "night-node.yaml", + "Night Owl Oled Dim (Night Owl Oled Dim 100)": "night-owl-oled-dim--night-owl-oled-dim-100.yaml", + "Night Owl Oled Dim (Night Owl Oled Dim 75)": "night-owl-oled-dim--night-owl-oled-dim-75.yaml", + "Night Owl Oled Dim (Night Owl Oled Dim 80)": "night-owl-oled-dim--night-owl-oled-dim-80.yaml", + "Night Owl Oled Dim (Night Owl Oled Dim 85)": "night-owl-oled-dim--night-owl-oled-dim-85.yaml", + "Night Owl Oled Dim (Night Owl Oled Dim 90)": "night-owl-oled-dim--night-owl-oled-dim-90.yaml", + "Night Owl Oled Dim (Night Owl Oled Dim 95)": "night-owl-oled-dim--night-owl-oled-dim-95.yaml", "Night Pink": "night-pink.yaml", "Night Raccoon": "night-raccoon.yaml", - "Night Rainbow": "night-rainbow.yaml", - "Night Rainbow - Darker": "night-rainbow-darker.yaml", - "Night Rainbow - Purple Haze": "night-rainbow-purple-haze.yaml", + "Night Rainbow (Night Rainbow - Darker)": "night-rainbow--night-rainbow-darker.yaml", + "Night Rainbow (Night Rainbow - Purple Haze)": "night-rainbow--night-rainbow-purple-haze.yaml", + "Night Rainbow (Night Rainbow)": "night-rainbow--night-rainbow.yaml", "Night Storm": "night-storm.yaml", "Night Watchers": "night-watchers.yaml", "Night Wind Theme": "night-wind-theme.yaml", + "Night Wolf (themename)": "night-wolf--themename.yaml", "Night Yellow": "night-yellow.yaml", - "Night Zen": "night-zen.yaml", - "night-aurora": "night-aurora.yaml", + "Night Zen Theme": "night-zen-theme.yaml", "night-blossom": "night-blossom.yaml", - "night-howl": "night-howl.yaml", "Night-Stack Amber CRT": "night-stack-amber-crt.yaml", "Night-Stack Amber Dark": "night-stack-amber-dark.yaml", "Night-Stack Arctic Night": "night-stack-arctic-night.yaml", @@ -4393,22 +4634,28 @@ "Night-Stack Titanium": "night-stack-titanium.yaml", "Night-Stack Violet Dark": "night-stack-violet-dark.yaml", "Night-Stack Zen Dark": "night-stack-zen-dark.yaml", + "NightAurora": "nightaurora.yaml", "NightBlue 1": "nightblue-1.yaml", "NightBlue OLED (BETA)": "nightblue-oled-beta.yaml", - "Nightcall": "nightcall.yaml", + "Nightcall (Nightcall)": "nightcall--nightcall.yaml", "NightCode": "nightcode.yaml", "Nightdream": "nightdream.yaml", "Nightdream Monokai": "nightdream-monokai.yaml", + "nightfall": "nightfall.yaml", "Nightfly": "nightfly.yaml", - "Nightfox": "nightfox.yaml", + "Nightfox (Carbonfox)": "nightfox--carbonfox.yaml", + "Nightfox (Duskfox)": "nightfox--duskfox.yaml", + "Nightfox (Nightfox)": "nightfox--nightfox.yaml", + "Nightfox (Nordfox)": "nightfox--nordfox.yaml", + "Nightfox (Terafox)": "nightfox--terafox.yaml", "Nighthawk": "nighthawk.yaml", "Nightlife": "nightlife.yaml", "Nightly Code": "nightly-code.yaml", + "Nightly Inspiration Dark": "nightly-inspiration-dark.yaml", "Nightly-Inspiration-Dark": "nightly-inspiration-dark.yaml", "Nightmare": "nightmare.yaml", - "nightnode": "nightnode.yaml", + "nightOWL": "nightowl.yaml", "Nightshade": "nightshade.yaml", - "Nightshade-Venom": "nightshade-venom.yaml", "NightShift Lobo Dawn": "nightshift-lobo-dawn.yaml", "NightShiftLobo": "nightshiftlobo.yaml", "NightShiftLobo Obsidian": "nightshiftlobo-obsidian.yaml", @@ -4417,9 +4664,9 @@ "NightSwell": "nightswell.yaml", "Nightwing": "nightwing.yaml", "Nighty Bordered": "nighty-bordered.yaml", - "nighty-purple-color-theme": "nighty-purple-color-theme.yaml", - "NigthWolf-color-theme": "nigthwolf-color-theme.yaml", + "Nighty Purple": "nighty-purple.yaml", "nihil": "nihil.yaml", + "Nihil": "nihil.yaml", "NihilLeaf-Theme": "nihilleaf-theme.yaml", "niketa.pop.dark": "niketa-pop-dark.yaml", "niketa.pop.light": "niketa-pop-light.yaml", @@ -4427,17 +4674,23 @@ "NiketaPlus": "niketaplus.yaml", "NiketaPrettier": "niketaprettier.yaml", "Niko's TechLabs Dark": "niko-s-techlabs-dark.yaml", - "nikso-vscode-theme-dark": "nikso-vscode-theme-dark.yaml", + "Nikso Theme": "nikso-theme.yaml", "Nil UI": "nil-ui.yaml", - "Nimbus Mint Light": "nimbus-mint-light.yaml", + "Nimbuslab Theme Color": "nimbuslab-theme-color.yaml", "NinjaDark": "ninjadark.yaml", - "NiTROUS Theme (Dark)": "nitrous-theme-dark.yaml", + "Nishuuu Themes (Tara-Theme-Carbon-High-Contrast)": "nishuuu-themes--tara-theme-carbon-high-contrast.yaml", + "Nishuuu Themes (Tara-Theme-Carbon)": "nishuuu-themes--tara-theme-carbon.yaml", + "Nishuuu Themes (Tara-Theme-Deepforest)": "nishuuu-themes--tara-theme-deepforest.yaml", + "Nishuuu Themes (Tara-Theme-Ocean)": "nishuuu-themes--tara-theme-ocean.yaml", + "Nishuuu Themes (Tara-Theme-Palenight)": "nishuuu-themes--tara-theme-palenight.yaml", + "Nishuuu Themes (Tara-Theme-Teal)": "nishuuu-themes--tara-theme-teal.yaml", "nivtheme": "nivtheme.yaml", - "Nix": "nix.yaml", + "Nix (Lunar)": "nix--lunar.yaml", + "Nix (Nix)": "nix--nix.yaml", "Nkalai Dark": "nkalai-dark.yaml", "Nkalai Light": "nkalai-light.yaml", + "nloo-theme": "nloo-theme.yaml", "nloo-Theme": "nloo-theme.yaml", - "no not the lava it burns ahhh - Fork": "no-not-the-lava-it-burns-ahhh-fork.yaml", "No Pixie Blue Dark": "no-pixie-blue-dark.yaml", "No Pixie Blue Light": "no-pixie-blue-light.yaml", "No Pixie Dark": "no-pixie-dark.yaml", @@ -4446,12 +4699,26 @@ "No Pixie Light High Contrast": "no-pixie-light-high-contrast.yaml", "No Pixie Yellow Dark": "no-pixie-yellow-dark.yaml", "No Pixie Yellow Light": "no-pixie-yellow-light.yaml", + "No Theme": "no-theme.yaml", + "Noah theme": "noah-theme.yaml", "Noah Theme": "noah-theme.yaml", "NoctaliaTheme": "noctaliatheme.yaml", "Noctilux": "noctilux.yaml", - "Noctis High Contrast": "noctis-high-contrast.yaml", + "Noctis": "noctis.yaml", + "Noctis (Noctis Azureus)": "noctis--noctis-azureus.yaml", + "Noctis (Noctis Bordo)": "noctis--noctis-bordo.yaml", + "Noctis (Noctis Hibernus)": "noctis--noctis-hibernus.yaml", + "Noctis (Noctis Lilac)": "noctis--noctis-lilac.yaml", + "Noctis (Noctis Lux)": "noctis--noctis-lux.yaml", + "Noctis (Noctis Minimus)": "noctis--noctis-minimus.yaml", + "Noctis (Noctis Obscuro)": "noctis--noctis-obscuro.yaml", + "Noctis (Noctis Sereno)": "noctis--noctis-sereno.yaml", + "Noctis (Noctis Uva)": "noctis--noctis-uva.yaml", + "Noctis (Noctis Viola)": "noctis--noctis-viola.yaml", + "Noctis (Noctis)": "noctis--noctis.yaml", + "Noctis High Contrast (Noctis High Contrast)": "noctis-high-contrast--noctis-high-contrast.yaml", "Noctis Lilac": "noctis-lilac.yaml", - "Noctis Lux (Dean's version)": "noctis-lux-dean-s-version.yaml", + "Noctis lux - Medium": "noctis-lux-medium.yaml", "Noctis Lux Ansi 16": "noctis-lux-ansi-16.yaml", "Noctis Red Flow": "noctis-red-flow.yaml", "Noctua Black Rose": "noctua-black-rose.yaml", @@ -4459,25 +4726,26 @@ "Noctua Grass": "noctua-grass.yaml", "Noctua Hidden Sky": "noctua-hidden-sky.yaml", "Nocturnal": "nocturnal.yaml", + "Nocturnal Theme": "nocturnal-theme.yaml", "Nodr Cocoa": "nodr-cocoa.yaml", "Nodr Plum": "nodr-plum.yaml", "Noe": "noe.yaml", "Noel": "noel.yaml", - "Noir (Dark)": "noir-dark.yaml", - "Noir (Light)": "noir-light.yaml", - "Noir dracula": "noir-dracula.yaml", - "Noir Essence Dark": "noir-essence-dark.yaml", - "Noir Essence Light": "noir-essence-light.yaml", - "Noir Outrun": "noir-outrun.yaml", - "Noir Owl": "noir-owl.yaml", - "Noir Poimandres": "noir-poimandres.yaml", - "Noir Poimandres Black": "noir-poimandres-black.yaml", - "Noir Poimandres Dark": "noir-poimandres-dark.yaml", - "Noir Poimandres Darker": "noir-poimandres-darker.yaml", - "Noir Rosé Pine Grey": "noir-ros-pine-grey.yaml", - "Noir Rosé Pine Moon Grey": "noir-ros-pine-moon-grey.yaml", - "Noir Tokyo Night": "noir-tokyo-night.yaml", - "Noir Tokyo Night Black": "noir-tokyo-night-black.yaml", + "Noir": "noir.yaml", + "Noir (Noir dracula)": "noir--noir-dracula.yaml", + "Noir (Noir Outrun)": "noir--noir-outrun.yaml", + "Noir (Noir Owl)": "noir--noir-owl.yaml", + "Noir (Noir Poimandres Black)": "noir--noir-poimandres-black.yaml", + "Noir (Noir Poimandres Dark)": "noir--noir-poimandres-dark.yaml", + "Noir (Noir Poimandres Darker)": "noir--noir-poimandres-darker.yaml", + "Noir (Noir Rosé Pine Grey)": "noir--noir-ros-pine-grey.yaml", + "Noir (Noir Rosé Pine Moon Grey)": "noir--noir-ros-pine-moon-grey.yaml", + "Noir (Noir Tokyo Night Black)": "noir--noir-tokyo-night-black.yaml", + "Noir (Noir Tokyo Night)": "noir--noir-tokyo-night.yaml", + "Noir Essence (Noir Essence Dark)": "noir-essence--noir-essence-dark.yaml", + "Noir Essence (Noir Essence Light)": "noir-essence--noir-essence-light.yaml", + "Noir VS Code Theme (Noir (Dark))": "noir-vs-code-theme-noir-dark.yaml", + "Noir VS Code Theme (Noir (Light))": "noir-vs-code-theme-noir-light.yaml", "Noirex": "noirex.yaml", "Noirzen": "noirzen.yaml", "Nokion Clean": "nokion-clean.yaml", @@ -4490,55 +4758,57 @@ "nora-dark": "nora-dark.yaml", "nora-light-bordered": "nora-light-bordered.yaml", "Nord": "nord.yaml", - "Nord Dark Contrast": "nord-dark-contrast.yaml", - "Nord Dark Pro": "nord-dark-pro.yaml", + "Nord Dark ★★★★★": "nord-dark.yaml", + "Nord Dark Contrast (Nord Dark Contrast)": "nord-dark-contrast--nord-dark-contrast.yaml", + "Nord Dark Pro (Nord Dark Pro)": "nord-dark-pro--nord-dark-pro.yaml", + "Nord Dark Pro (One Dark Pro)": "nord-dark-pro--one-dark-pro.yaml", "Nord Deep": "nord-deep.yaml", + "Nord Deep but you can actually see comments": "nord-deep-but-you-can-actually-see-comments.yaml", "Nord Frost": "nord-frost.yaml", "Nord Jujoco": "nord-jujoco.yaml", "Nord Light": "nord-light.yaml", "Nord Midnight": "nord-midnight.yaml", "Nord Native": "nord-native.yaml", "Nord Operator Theme": "nord-operator-theme.yaml", - "Nord Palette": "nord-palette.yaml", + "Nord Palette (Nord Palette)": "nord-palette--nord-palette.yaml", "Nord Zero": "nord-zero.yaml", - "nord-bunker": "nord-bunker.yaml", "Nord-Fountain": "nord-fountain.yaml", "Nord+": "nord.yaml", "Nordark": "nordark.yaml", "Nordfox": "nordfox.yaml", - "Nordic": "nordic.yaml", "Nordic Dark": "nordic-dark.yaml", "Nordic Electric AI – Nocturne": "nordic-electric-ai-nocturne.yaml", + "Nordic Electric AI Nocturne": "nordic-electric-ai-nocturne.yaml", + "nordic-vscode": "nordic-vscode.yaml", + "nordicbox": "nordicbox.yaml", "nordicBox": "nordicbox.yaml", - "NordicDark": "nordicdark.yaml", "Nordico": "nordico.yaml", "NordishCocoa": "nordishcocoa.yaml", "NordStone": "nordstone.yaml", "Northeirn": "northeirn.yaml", "Northern Territory Dark": "northern-territory-dark.yaml", "Northern Territory Light": "northern-territory-light.yaml", - "Nosk Theme": "nosk-theme.yaml", + "nosk-orange-theme": "nosk-orange-theme.yaml", "Nostromo": "nostromo.yaml", "Not so simple": "not-so-simple.yaml", "Notchy Dark": "notchy-dark.yaml", - "notesocean vs code theme": "notesocean-vs-code-theme.yaml", + "Notes Ocean Theme": "notes-ocean-theme.yaml", "NotFlask Theme Light": "notflask-theme-light.yaml", "Nothing Dark": "nothing-dark.yaml", "Nothing Light": "nothing-light.yaml", - "Nothing OS Dark": "nothing-os-dark.yaml", - "Nothing OS Gray": "nothing-os-gray.yaml", "Notion Code Theme": "notion-code-theme.yaml", "NotionLikeTheme": "notionliketheme.yaml", - "NotTheVimGuyTheme": "notthevimguytheme.yaml", - "Nova": "nova.yaml", + "NotTheVimguy": "notthevimguy.yaml", "Nova Dark": "nova-dark.yaml", "Nova Light": "nova-light.yaml", + "Nova Theme": "nova-theme.yaml", "NOVADUST": "novadust.yaml", "November Theme - BLACK": "november-theme-black.yaml", "November Theme - DARKBLUE": "november-theme-darkblue.yaml", "nox": "nox.yaml", "Nox": "nox.yaml", - "Noxis": "noxis.yaml", + "Nox04 Theme": "nox04-theme.yaml", + "Noxis (Noxis)": "noxis--noxis.yaml", "Noxis-Light": "noxis-light.yaml", "Noxus": "noxus.yaml", "npp-color Dark hard": "npp-color-dark-hard.yaml", @@ -4561,36 +4831,35 @@ "nulzo-winter-light": "nulzo-winter-light.yaml", "Nur Dark": "nur-dark.yaml", "Nur Light": "nur-light.yaml", - "Nushu Classic": "nushu-classic.yaml", - "Nushu Dark": "nushu-dark.yaml", - "Nushu Light": "nushu-light.yaml", + "Nushu (Nushu Classic)": "nushu--nushu-classic.yaml", + "Nushu (Nushu Dark)": "nushu--nushu-dark.yaml", + "Nushu (Nushu Light)": "nushu--nushu-light.yaml", "nuTheme": "nutheme.yaml", - "Nutty Dark Theme": "nutty-dark-theme.yaml", - "Nutty Light Theme": "nutty-light-theme.yaml", - "nuuvo - space max": "nuuvo-space-max.yaml", - "Nuxt Blend": "nuxt-blend.yaml", - "Nuxt Blend-Bleach Color Theme": "nuxt-blend-bleach-color-theme.yaml", - "Nuxtian": "nuxtian.yaml", - "Nuxtian Deep Space": "nuxtian-deep-space.yaml", - "Nuxtian Light": "nuxtian-light.yaml", - "Nuxtian Nitro": "nuxtian-nitro.yaml", - "NuxtianSoloLevel": "nuxtiansololevel.yaml", - "NuxtVite": "nuxtvite.yaml", - "NuxtVoid": "nuxtvoid.yaml", - "NW21": "nw21.yaml", - "NY City Lights Theme": "ny-city-lights-theme.yaml", + "NuTheme": "nutheme.yaml", + "nuuvo": "nuuvo.yaml", + "Nuxtian (Nuxtian Deep Space)": "nuxtian--nuxtian-deep-space.yaml", + "Nuxtian (Nuxtian Light)": "nuxtian--nuxtian-light.yaml", + "Nuxtian (Nuxtian Nitro)": "nuxtian--nuxtian-nitro.yaml", + "Nuxtian (Nuxtian)": "nuxtian--nuxtian.yaml", + "Nuxtian (NuxtianSoloLevel)": "nuxtian--nuxtiansololevel.yaml", + "Nuxtian (NuxtVite)": "nuxtian--nuxtvite.yaml", + "Nuxtian (NuxtVoid)": "nuxtian--nuxtvoid.yaml", + "nvTokyo Night": "nvtokyo-night.yaml", + "NYC Winter Theme": "nyc-winter-theme.yaml", "Nyctophilia": "nyctophilia.yaml", "Nyrkes": "nyrkes.yaml", "OA515": "oa515.yaml", - "Oak": "oak.yaml", - "Oak-Dark": "oak-dark.yaml", - "Obanai Iguro": "obanai-iguro.yaml", + "Oak (Oak-Dark)": "oak--oak-dark.yaml", + "Oak (Oak)": "oak--oak.yaml", "obito akatsuki theme": "obito-akatsuki-theme.yaml", + "Obito Akatsuki Theme": "obito-akatsuki-theme.yaml", "Oblivion": "oblivion.yaml", "Oboro": "oboro.yaml", "Obsidian": "obsidian.yaml", "Obsidian Dark": "obsidian-dark.yaml", + "Obsidian Dark Theme (Rust syntax optimized)": "obsidian-dark-theme--rust-syntax-optimized.yaml", "Obsidian Ember": "obsidian-ember.yaml", + "Obsidian Ember Theme": "obsidian-ember-theme.yaml", "Obsidian Gold": "obsidian-gold.yaml", "Obsidian Light": "obsidian-light.yaml", "Obsidian Nova": "obsidian-nova.yaml", @@ -4607,20 +4876,20 @@ "Obsidian Sea": "obsidian-sea.yaml", "Obsidian Sunset": "obsidian-sunset.yaml", "Obsidian Void": "obsidian-void.yaml", - "Obsidian-Wine": "obsidian-wine.yaml", - "Obsidianite": "obsidianite.yaml", - "Obsidianite AMOLED": "obsidianite-amoled.yaml", - "OC-7 light": "oc-7-light.yaml", + "Obsidianite (Obsidianite AMOLED)": "obsidianite--obsidianite-amoled.yaml", + "Obsidianite (Obsidianite)": "obsidianite--obsidianite.yaml", + "oc7-light": "oc7-light.yaml", "Ocean": "ocean.yaml", "Ocean Blue Theme": "ocean-blue-theme.yaml", - "Ocean Breeze": "ocean-breeze.yaml", "Ocean Deep - Depth & Stability": "ocean-deep-depth-stability.yaml", "Ocean Eyes": "ocean-eyes.yaml", "Ocean Eyes Medium": "ocean-eyes-medium.yaml", "Ocean High Contrast": "ocean-high-contrast.yaml", "Ocean Mist": "ocean-mist.yaml", "Ocean Mist Light": "ocean-mist-light.yaml", + "Ocean Monokai": "ocean-monokai.yaml", "Ocean Night": "ocean-night.yaml", + "Ocean Theme": "ocean-theme.yaml", "ocean-color-theme": "ocean-color-theme.yaml", "Ocean-theme": "ocean-theme.yaml", "Oceana": "oceana.yaml", @@ -4629,262 +4898,277 @@ "Oceanic Wind": "oceanic-wind.yaml", "Oceanic Wind Cool": "oceanic-wind-cool.yaml", "Oceanic Wind Warm": "oceanic-wind-warm.yaml", - "Oceanic-Gradient": "oceanic-gradient.yaml", - "Oceanic-Sunset": "oceanic-sunset.yaml", "Oceans of Andromeda": "oceans-of-andromeda.yaml", "Ochre Dark": "ochre-dark.yaml", "Ochre Dark - Midnight": "ochre-dark-midnight.yaml", "Ochre Light": "ochre-light.yaml", "Ochre Light - Snow": "ochre-light-snow.yaml", + "OCMS Theme (red)": "ocms-theme--red.yaml", "Octalide": "octalide.yaml", "Octo Dark One": "octo-dark-one.yaml", "Octo Light": "octo-light.yaml", + "Octopus (Deep ocean)": "octopus--deep-ocean.yaml", "Octopus theme": "octopus-theme.yaml", + "Octopus Theme": "octopus-theme.yaml", "Odyssey Night": "odyssey-night.yaml", - "Office Dark": "office-dark.yaml", - "Office Light": "office-light.yaml", - "Office-Paper": "office-paper.yaml", + "Office Theme (word-color-theme)": "office-theme--word-color-theme.yaml", + "Office Theme (word-dark-theme)": "office-theme--word-dark-theme.yaml", "Ogone": "ogone.yaml", "Oh Dark Pro": "oh-dark-pro.yaml", "OhioState - Fork": "ohiostate-fork.yaml", - "OhLED_AliceBlue": "ohled-aliceblue.yaml", - "OhLED_AntiqueWhite": "ohled-antiquewhite.yaml", - "OhLED_AquaMarine": "ohled-aquamarine.yaml", - "OhLED_Azure": "ohled-azure.yaml", - "OhLED_Beige": "ohled-beige.yaml", - "OhLED_Bisque": "ohled-bisque.yaml", - "OhLED_BlanchedAlmond": "ohled-blanchedalmond.yaml", - "OhLED_Blue": "ohled-blue.yaml", - "OhLED_BlueViolet": "ohled-blueviolet.yaml", - "OhLED_Brown": "ohled-brown.yaml", - "OhLED_BurlyWood": "ohled-burlywood.yaml", - "OhLED_CadetBlue": "ohled-cadetblue.yaml", - "OhLED_Chartreuse": "ohled-chartreuse.yaml", - "OhLED_Chocolate": "ohled-chocolate.yaml", - "OhLED_Coral": "ohled-coral.yaml", - "OhLED_CornflowerBlue": "ohled-cornflowerblue.yaml", - "OhLED_Cornsilk": "ohled-cornsilk.yaml", - "OhLED_Crimson": "ohled-crimson.yaml", - "OhLED_Cyan": "ohled-cyan.yaml", - "OhLED_DarkBlue": "ohled-darkblue.yaml", - "OhLED_DarkCyan": "ohled-darkcyan.yaml", - "OhLED_DarkGoldenRod": "ohled-darkgoldenrod.yaml", - "OhLED_DarkGray": "ohled-darkgray.yaml", - "OhLED_DarkGreen": "ohled-darkgreen.yaml", - "OhLED_DarkKhaki": "ohled-darkkhaki.yaml", - "OhLED_DarkMagenta": "ohled-darkmagenta.yaml", - "OhLED_DarkOliveGreen": "ohled-darkolivegreen.yaml", - "OhLED_DarkOrange": "ohled-darkorange.yaml", - "OhLED_DarkOrchid": "ohled-darkorchid.yaml", - "OhLED_DarkRed": "ohled-darkred.yaml", - "OhLED_DarkSalmon": "ohled-darksalmon.yaml", - "OhLED_DarkSeaGreen": "ohled-darkseagreen.yaml", - "OhLED_DarkSlateBlue": "ohled-darkslateblue.yaml", - "OhLED_DarkSlateGray": "ohled-darkslategray.yaml", - "OhLED_DarkTurquoise": "ohled-darkturquoise.yaml", - "OhLED_DarkViolet": "ohled-darkviolet.yaml", - "OhLED_DeepPink": "ohled-deeppink.yaml", - "OhLED_DeepSkyBlue": "ohled-deepskyblue.yaml", - "OhLED_DimGray": "ohled-dimgray.yaml", - "OhLED_DodgerBlue": "ohled-dodgerblue.yaml", - "OhLED_FireBrick": "ohled-firebrick.yaml", - "OhLED_ForestGreen": "ohled-forestgreen.yaml", - "OhLED_Gainsboro": "ohled-gainsboro.yaml", - "OhLED_GhostWhite": "ohled-ghostwhite.yaml", - "OhLED_Gold": "ohled-gold.yaml", - "OhLED_GoldenRod": "ohled-goldenrod.yaml", - "OhLED_Gray": "ohled-gray.yaml", - "OhLED_Green": "ohled-green.yaml", - "OhLED_GreenYellow": "ohled-greenyellow.yaml", - "OhLED_HoneyDew": "ohled-honeydew.yaml", - "OhLED_HotPink": "ohled-hotpink.yaml", - "OhLED_IndianRed": "ohled-indianred.yaml", - "OhLED_Indigo": "ohled-indigo.yaml", - "OhLED_Ivory": "ohled-ivory.yaml", - "OhLED_Khaki": "ohled-khaki.yaml", - "OhLED_Lavender": "ohled-lavender.yaml", - "OhLED_LavenderBlush": "ohled-lavenderblush.yaml", - "OhLED_LawnGreen": "ohled-lawngreen.yaml", - "OhLED_LemonChiffon": "ohled-lemonchiffon.yaml", - "OhLED_LightBlue": "ohled-lightblue.yaml", - "OhLED_LightCoral": "ohled-lightcoral.yaml", - "OhLED_LightCyan": "ohled-lightcyan.yaml", - "OhLED_LightGoldenRodYellow": "ohled-lightgoldenrodyellow.yaml", - "OhLED_LightGray": "ohled-lightgray.yaml", - "OhLED_LightGreen": "ohled-lightgreen.yaml", - "OhLED_LightPink": "ohled-lightpink.yaml", - "OhLED_LightSalmon": "ohled-lightsalmon.yaml", - "OhLED_LightSeaGreen": "ohled-lightseagreen.yaml", - "OhLED_LightSkyBlue": "ohled-lightskyblue.yaml", - "OhLED_LightSlateGray": "ohled-lightslategray.yaml", - "OhLED_LightSteelBlue": "ohled-lightsteelblue.yaml", - "OhLED_LightYellow": "ohled-lightyellow.yaml", - "OhLED_Lime": "ohled-lime.yaml", - "OhLED_LimeGreen": "ohled-limegreen.yaml", - "OhLED_Linen": "ohled-linen.yaml", - "OhLED_Magenta": "ohled-magenta.yaml", - "OhLED_Maroon": "ohled-maroon.yaml", - "OhLED_MediumAquaMarine": "ohled-mediumaquamarine.yaml", - "OhLED_MediumBlue": "ohled-mediumblue.yaml", - "OhLED_MediumOrchid": "ohled-mediumorchid.yaml", - "OhLED_MediumPurple": "ohled-mediumpurple.yaml", - "OhLED_MediumSeaGreen": "ohled-mediumseagreen.yaml", - "OhLED_MediumSlateBlue": "ohled-mediumslateblue.yaml", - "OhLED_MediumSpringGreen": "ohled-mediumspringgreen.yaml", - "OhLED_MediumTurquoise": "ohled-mediumturquoise.yaml", - "OhLED_MediumVioletRed": "ohled-mediumvioletred.yaml", - "OhLED_MidnightBlue": "ohled-midnightblue.yaml", - "OhLED_MintCream": "ohled-mintcream.yaml", - "OhLED_MistyRose": "ohled-mistyrose.yaml", - "OhLED_Moccasin": "ohled-moccasin.yaml", - "OhLED_NavajoWhite": "ohled-navajowhite.yaml", - "OhLED_Navy": "ohled-navy.yaml", - "OhLED_OldLace": "ohled-oldlace.yaml", - "OhLED_Olive": "ohled-olive.yaml", - "OhLED_OliveDrab": "ohled-olivedrab.yaml", - "OhLED_Orange": "ohled-orange.yaml", - "OhLED_OrangeRed": "ohled-orangered.yaml", - "OhLED_Orchid": "ohled-orchid.yaml", - "OhLED_PaleGoldenRod": "ohled-palegoldenrod.yaml", - "OhLED_PaleGreen": "ohled-palegreen.yaml", - "OhLED_PaleTurquoise": "ohled-paleturquoise.yaml", - "OhLED_PaleVioletRed": "ohled-palevioletred.yaml", - "OhLED_PapayaWhip": "ohled-papayawhip.yaml", - "OhLED_PeachPuff": "ohled-peachpuff.yaml", - "OhLED_Peru": "ohled-peru.yaml", - "OhLED_Pink": "ohled-pink.yaml", - "OhLED_Plum": "ohled-plum.yaml", - "OhLED_PowderBlue": "ohled-powderblue.yaml", - "OhLED_Purple": "ohled-purple.yaml", - "OhLED_RebeccaPurple": "ohled-rebeccapurple.yaml", - "OhLED_Red": "ohled-red.yaml", - "OhLED_RosyBrown": "ohled-rosybrown.yaml", - "OhLED_RoyalBlue": "ohled-royalblue.yaml", - "OhLED_SaddleBrown": "ohled-saddlebrown.yaml", - "OhLED_Salmon": "ohled-salmon.yaml", - "OhLED_SandyBrown": "ohled-sandybrown.yaml", - "OhLED_SeaGreen": "ohled-seagreen.yaml", - "OhLED_SeaShell": "ohled-seashell.yaml", - "OhLED_Sienna": "ohled-sienna.yaml", - "OhLED_Silver": "ohled-silver.yaml", - "OhLED_SkyBlue": "ohled-skyblue.yaml", - "OhLED_SlateBlue": "ohled-slateblue.yaml", - "OhLED_SlateGray": "ohled-slategray.yaml", - "OhLED_Snow": "ohled-snow.yaml", - "OhLED_SpringGreen": "ohled-springgreen.yaml", - "OhLED_SteelBlue": "ohled-steelblue.yaml", - "OhLED_Tan": "ohled-tan.yaml", - "OhLED_Teal": "ohled-teal.yaml", - "OhLED_Thistle": "ohled-thistle.yaml", - "OhLED_Tomato": "ohled-tomato.yaml", - "OhLED_Turquoise": "ohled-turquoise.yaml", - "OhLED_Violet": "ohled-violet.yaml", - "OhLED_Wheat": "ohled-wheat.yaml", - "OhLED_White": "ohled-white.yaml", - "OhLED_WhiteSmoke": "ohled-whitesmoke.yaml", - "OhLED_Yellow": "ohled-yellow.yaml", - "OhLED_YellowGreen": "ohled-yellowgreen.yaml", - "OhLED_YellowOrange": "ohled-yelloworange.yaml", - "OhLED_YellowPink": "ohled-yellowpink.yaml", - "OhLED_YellowPurple": "ohled-yellowpurple.yaml", + "OhLED Themes (142-in-1) (OhLED_AliceBlue)": "ohled-themes-142-in-1--ohled-aliceblue.yaml", + "OhLED Themes (142-in-1) (OhLED_AntiqueWhite)": "ohled-themes-142-in-1--ohled-antiquewhite.yaml", + "OhLED Themes (142-in-1) (OhLED_Aqua)": "ohled-themes-142-in-1--ohled-aqua.yaml", + "OhLED Themes (142-in-1) (OhLED_AquaMarine)": "ohled-themes-142-in-1--ohled-aquamarine.yaml", + "OhLED Themes (142-in-1) (OhLED_Azure)": "ohled-themes-142-in-1--ohled-azure.yaml", + "OhLED Themes (142-in-1) (OhLED_Beige)": "ohled-themes-142-in-1--ohled-beige.yaml", + "OhLED Themes (142-in-1) (OhLED_Bisque)": "ohled-themes-142-in-1--ohled-bisque.yaml", + "OhLED Themes (142-in-1) (OhLED_BlanchedAlmond)": "ohled-themes-142-in-1--ohled-blanchedalmond.yaml", + "OhLED Themes (142-in-1) (OhLED_Blue)": "ohled-themes-142-in-1--ohled-blue.yaml", + "OhLED Themes (142-in-1) (OhLED_BlueViolet)": "ohled-themes-142-in-1--ohled-blueviolet.yaml", + "OhLED Themes (142-in-1) (OhLED_Brown)": "ohled-themes-142-in-1--ohled-brown.yaml", + "OhLED Themes (142-in-1) (OhLED_BurlyWood)": "ohled-themes-142-in-1--ohled-burlywood.yaml", + "OhLED Themes (142-in-1) (OhLED_CadetBlue)": "ohled-themes-142-in-1--ohled-cadetblue.yaml", + "OhLED Themes (142-in-1) (OhLED_Chartreuse)": "ohled-themes-142-in-1--ohled-chartreuse.yaml", + "OhLED Themes (142-in-1) (OhLED_Chocolate)": "ohled-themes-142-in-1--ohled-chocolate.yaml", + "OhLED Themes (142-in-1) (OhLED_Coral)": "ohled-themes-142-in-1--ohled-coral.yaml", + "OhLED Themes (142-in-1) (OhLED_CornflowerBlue)": "ohled-themes-142-in-1--ohled-cornflowerblue.yaml", + "OhLED Themes (142-in-1) (OhLED_Cornsilk)": "ohled-themes-142-in-1--ohled-cornsilk.yaml", + "OhLED Themes (142-in-1) (OhLED_Crimson)": "ohled-themes-142-in-1--ohled-crimson.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkBlue)": "ohled-themes-142-in-1--ohled-darkblue.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkCyan)": "ohled-themes-142-in-1--ohled-darkcyan.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkGoldenRod)": "ohled-themes-142-in-1--ohled-darkgoldenrod.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkGray)": "ohled-themes-142-in-1--ohled-darkgray.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkGreen)": "ohled-themes-142-in-1--ohled-darkgreen.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkKhaki)": "ohled-themes-142-in-1--ohled-darkkhaki.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkMagenta)": "ohled-themes-142-in-1--ohled-darkmagenta.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkOliveGreen)": "ohled-themes-142-in-1--ohled-darkolivegreen.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkOrange)": "ohled-themes-142-in-1--ohled-darkorange.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkOrchid)": "ohled-themes-142-in-1--ohled-darkorchid.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkRed)": "ohled-themes-142-in-1--ohled-darkred.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkSalmon)": "ohled-themes-142-in-1--ohled-darksalmon.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkSeaGreen)": "ohled-themes-142-in-1--ohled-darkseagreen.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkSlateBlue)": "ohled-themes-142-in-1--ohled-darkslateblue.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkSlateGray)": "ohled-themes-142-in-1--ohled-darkslategray.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkTurquoise)": "ohled-themes-142-in-1--ohled-darkturquoise.yaml", + "OhLED Themes (142-in-1) (OhLED_DarkViolet)": "ohled-themes-142-in-1--ohled-darkviolet.yaml", + "OhLED Themes (142-in-1) (OhLED_DeepPink)": "ohled-themes-142-in-1--ohled-deeppink.yaml", + "OhLED Themes (142-in-1) (OhLED_DeepSkyBlue)": "ohled-themes-142-in-1--ohled-deepskyblue.yaml", + "OhLED Themes (142-in-1) (OhLED_DimGray)": "ohled-themes-142-in-1--ohled-dimgray.yaml", + "OhLED Themes (142-in-1) (OhLED_DodgerBlue)": "ohled-themes-142-in-1--ohled-dodgerblue.yaml", + "OhLED Themes (142-in-1) (OhLED_FireBrick)": "ohled-themes-142-in-1--ohled-firebrick.yaml", + "OhLED Themes (142-in-1) (OhLED_ForestGreen)": "ohled-themes-142-in-1--ohled-forestgreen.yaml", + "OhLED Themes (142-in-1) (OhLED_Fuchsia)": "ohled-themes-142-in-1--ohled-fuchsia.yaml", + "OhLED Themes (142-in-1) (OhLED_Gainsboro)": "ohled-themes-142-in-1--ohled-gainsboro.yaml", + "OhLED Themes (142-in-1) (OhLED_GhostWhite)": "ohled-themes-142-in-1--ohled-ghostwhite.yaml", + "OhLED Themes (142-in-1) (OhLED_Gold)": "ohled-themes-142-in-1--ohled-gold.yaml", + "OhLED Themes (142-in-1) (OhLED_GoldenRod)": "ohled-themes-142-in-1--ohled-goldenrod.yaml", + "OhLED Themes (142-in-1) (OhLED_Gray)": "ohled-themes-142-in-1--ohled-gray.yaml", + "OhLED Themes (142-in-1) (OhLED_Green)": "ohled-themes-142-in-1--ohled-green.yaml", + "OhLED Themes (142-in-1) (OhLED_GreenYellow)": "ohled-themes-142-in-1--ohled-greenyellow.yaml", + "OhLED Themes (142-in-1) (OhLED_HoneyDew)": "ohled-themes-142-in-1--ohled-honeydew.yaml", + "OhLED Themes (142-in-1) (OhLED_HotPink)": "ohled-themes-142-in-1--ohled-hotpink.yaml", + "OhLED Themes (142-in-1) (OhLED_IndianRed)": "ohled-themes-142-in-1--ohled-indianred.yaml", + "OhLED Themes (142-in-1) (OhLED_Indigo)": "ohled-themes-142-in-1--ohled-indigo.yaml", + "OhLED Themes (142-in-1) (OhLED_Ivory)": "ohled-themes-142-in-1--ohled-ivory.yaml", + "OhLED Themes (142-in-1) (OhLED_Khaki)": "ohled-themes-142-in-1--ohled-khaki.yaml", + "OhLED Themes (142-in-1) (OhLED_Lavender)": "ohled-themes-142-in-1--ohled-lavender.yaml", + "OhLED Themes (142-in-1) (OhLED_LavenderBlush)": "ohled-themes-142-in-1--ohled-lavenderblush.yaml", + "OhLED Themes (142-in-1) (OhLED_LawnGreen)": "ohled-themes-142-in-1--ohled-lawngreen.yaml", + "OhLED Themes (142-in-1) (OhLED_LemonChiffon)": "ohled-themes-142-in-1--ohled-lemonchiffon.yaml", + "OhLED Themes (142-in-1) (OhLED_LightBlue)": "ohled-themes-142-in-1--ohled-lightblue.yaml", + "OhLED Themes (142-in-1) (OhLED_LightCoral)": "ohled-themes-142-in-1--ohled-lightcoral.yaml", + "OhLED Themes (142-in-1) (OhLED_LightCyan)": "ohled-themes-142-in-1--ohled-lightcyan.yaml", + "OhLED Themes (142-in-1) (OhLED_LightGoldenRodYellow)": "ohled-themes-142-in-1--ohled-lightgoldenrodyellow.yaml", + "OhLED Themes (142-in-1) (OhLED_LightGray)": "ohled-themes-142-in-1--ohled-lightgray.yaml", + "OhLED Themes (142-in-1) (OhLED_LightGreen)": "ohled-themes-142-in-1--ohled-lightgreen.yaml", + "OhLED Themes (142-in-1) (OhLED_LightPink)": "ohled-themes-142-in-1--ohled-lightpink.yaml", + "OhLED Themes (142-in-1) (OhLED_LightSalmon)": "ohled-themes-142-in-1--ohled-lightsalmon.yaml", + "OhLED Themes (142-in-1) (OhLED_LightSeaGreen)": "ohled-themes-142-in-1--ohled-lightseagreen.yaml", + "OhLED Themes (142-in-1) (OhLED_LightSkyBlue)": "ohled-themes-142-in-1--ohled-lightskyblue.yaml", + "OhLED Themes (142-in-1) (OhLED_LightSlateGray)": "ohled-themes-142-in-1--ohled-lightslategray.yaml", + "OhLED Themes (142-in-1) (OhLED_LightSteelBlue)": "ohled-themes-142-in-1--ohled-lightsteelblue.yaml", + "OhLED Themes (142-in-1) (OhLED_LightYellow)": "ohled-themes-142-in-1--ohled-lightyellow.yaml", + "OhLED Themes (142-in-1) (OhLED_Lime)": "ohled-themes-142-in-1--ohled-lime.yaml", + "OhLED Themes (142-in-1) (OhLED_LimeGreen)": "ohled-themes-142-in-1--ohled-limegreen.yaml", + "OhLED Themes (142-in-1) (OhLED_Linen)": "ohled-themes-142-in-1--ohled-linen.yaml", + "OhLED Themes (142-in-1) (OhLED_Maroon)": "ohled-themes-142-in-1--ohled-maroon.yaml", + "OhLED Themes (142-in-1) (OhLED_MediumAquaMarine)": "ohled-themes-142-in-1--ohled-mediumaquamarine.yaml", + "OhLED Themes (142-in-1) (OhLED_MediumBlue)": "ohled-themes-142-in-1--ohled-mediumblue.yaml", + "OhLED Themes (142-in-1) (OhLED_MediumOrchid)": "ohled-themes-142-in-1--ohled-mediumorchid.yaml", + "OhLED Themes (142-in-1) (OhLED_MediumPurple)": "ohled-themes-142-in-1--ohled-mediumpurple.yaml", + "OhLED Themes (142-in-1) (OhLED_MediumSeaGreen)": "ohled-themes-142-in-1--ohled-mediumseagreen.yaml", + "OhLED Themes (142-in-1) (OhLED_MediumSlateBlue)": "ohled-themes-142-in-1--ohled-mediumslateblue.yaml", + "OhLED Themes (142-in-1) (OhLED_MediumSpringGreen)": "ohled-themes-142-in-1--ohled-mediumspringgreen.yaml", + "OhLED Themes (142-in-1) (OhLED_MediumTurquoise)": "ohled-themes-142-in-1--ohled-mediumturquoise.yaml", + "OhLED Themes (142-in-1) (OhLED_MediumVioletRed)": "ohled-themes-142-in-1--ohled-mediumvioletred.yaml", + "OhLED Themes (142-in-1) (OhLED_MidnightBlue)": "ohled-themes-142-in-1--ohled-midnightblue.yaml", + "OhLED Themes (142-in-1) (OhLED_MintCream)": "ohled-themes-142-in-1--ohled-mintcream.yaml", + "OhLED Themes (142-in-1) (OhLED_MistyRose)": "ohled-themes-142-in-1--ohled-mistyrose.yaml", + "OhLED Themes (142-in-1) (OhLED_Moccasin)": "ohled-themes-142-in-1--ohled-moccasin.yaml", + "OhLED Themes (142-in-1) (OhLED_NavajoWhite)": "ohled-themes-142-in-1--ohled-navajowhite.yaml", + "OhLED Themes (142-in-1) (OhLED_Navy)": "ohled-themes-142-in-1--ohled-navy.yaml", + "OhLED Themes (142-in-1) (OhLED_OldLace)": "ohled-themes-142-in-1--ohled-oldlace.yaml", + "OhLED Themes (142-in-1) (OhLED_Olive)": "ohled-themes-142-in-1--ohled-olive.yaml", + "OhLED Themes (142-in-1) (OhLED_OliveDrab)": "ohled-themes-142-in-1--ohled-olivedrab.yaml", + "OhLED Themes (142-in-1) (OhLED_Orange)": "ohled-themes-142-in-1--ohled-orange.yaml", + "OhLED Themes (142-in-1) (OhLED_OrangeRed)": "ohled-themes-142-in-1--ohled-orangered.yaml", + "OhLED Themes (142-in-1) (OhLED_Orchid)": "ohled-themes-142-in-1--ohled-orchid.yaml", + "OhLED Themes (142-in-1) (OhLED_PaleGoldenRod)": "ohled-themes-142-in-1--ohled-palegoldenrod.yaml", + "OhLED Themes (142-in-1) (OhLED_PaleGreen)": "ohled-themes-142-in-1--ohled-palegreen.yaml", + "OhLED Themes (142-in-1) (OhLED_PaleTurquoise)": "ohled-themes-142-in-1--ohled-paleturquoise.yaml", + "OhLED Themes (142-in-1) (OhLED_PaleVioletRed)": "ohled-themes-142-in-1--ohled-palevioletred.yaml", + "OhLED Themes (142-in-1) (OhLED_PapayaWhip)": "ohled-themes-142-in-1--ohled-papayawhip.yaml", + "OhLED Themes (142-in-1) (OhLED_PeachPuff)": "ohled-themes-142-in-1--ohled-peachpuff.yaml", + "OhLED Themes (142-in-1) (OhLED_Peru)": "ohled-themes-142-in-1--ohled-peru.yaml", + "OhLED Themes (142-in-1) (OhLED_Pink)": "ohled-themes-142-in-1--ohled-pink.yaml", + "OhLED Themes (142-in-1) (OhLED_Plum)": "ohled-themes-142-in-1--ohled-plum.yaml", + "OhLED Themes (142-in-1) (OhLED_PowderBlue)": "ohled-themes-142-in-1--ohled-powderblue.yaml", + "OhLED Themes (142-in-1) (OhLED_Purple)": "ohled-themes-142-in-1--ohled-purple.yaml", + "OhLED Themes (142-in-1) (OhLED_RebeccaPurple)": "ohled-themes-142-in-1--ohled-rebeccapurple.yaml", + "OhLED Themes (142-in-1) (OhLED_Red)": "ohled-themes-142-in-1--ohled-red.yaml", + "OhLED Themes (142-in-1) (OhLED_RosyBrown)": "ohled-themes-142-in-1--ohled-rosybrown.yaml", + "OhLED Themes (142-in-1) (OhLED_RoyalBlue)": "ohled-themes-142-in-1--ohled-royalblue.yaml", + "OhLED Themes (142-in-1) (OhLED_SaddleBrown)": "ohled-themes-142-in-1--ohled-saddlebrown.yaml", + "OhLED Themes (142-in-1) (OhLED_Salmon)": "ohled-themes-142-in-1--ohled-salmon.yaml", + "OhLED Themes (142-in-1) (OhLED_SandyBrown)": "ohled-themes-142-in-1--ohled-sandybrown.yaml", + "OhLED Themes (142-in-1) (OhLED_SeaGreen)": "ohled-themes-142-in-1--ohled-seagreen.yaml", + "OhLED Themes (142-in-1) (OhLED_SeaShell)": "ohled-themes-142-in-1--ohled-seashell.yaml", + "OhLED Themes (142-in-1) (OhLED_Sienna)": "ohled-themes-142-in-1--ohled-sienna.yaml", + "OhLED Themes (142-in-1) (OhLED_Silver)": "ohled-themes-142-in-1--ohled-silver.yaml", + "OhLED Themes (142-in-1) (OhLED_SkyBlue)": "ohled-themes-142-in-1--ohled-skyblue.yaml", + "OhLED Themes (142-in-1) (OhLED_SlateBlue)": "ohled-themes-142-in-1--ohled-slateblue.yaml", + "OhLED Themes (142-in-1) (OhLED_SlateGray)": "ohled-themes-142-in-1--ohled-slategray.yaml", + "OhLED Themes (142-in-1) (OhLED_Snow)": "ohled-themes-142-in-1--ohled-snow.yaml", + "OhLED Themes (142-in-1) (OhLED_SpringGreen)": "ohled-themes-142-in-1--ohled-springgreen.yaml", + "OhLED Themes (142-in-1) (OhLED_SteelBlue)": "ohled-themes-142-in-1--ohled-steelblue.yaml", + "OhLED Themes (142-in-1) (OhLED_Tan)": "ohled-themes-142-in-1--ohled-tan.yaml", + "OhLED Themes (142-in-1) (OhLED_Teal)": "ohled-themes-142-in-1--ohled-teal.yaml", + "OhLED Themes (142-in-1) (OhLED_Thistle)": "ohled-themes-142-in-1--ohled-thistle.yaml", + "OhLED Themes (142-in-1) (OhLED_Tomato)": "ohled-themes-142-in-1--ohled-tomato.yaml", + "OhLED Themes (142-in-1) (OhLED_Turquoise)": "ohled-themes-142-in-1--ohled-turquoise.yaml", + "OhLED Themes (142-in-1) (OhLED_Violet)": "ohled-themes-142-in-1--ohled-violet.yaml", + "OhLED Themes (142-in-1) (OhLED_Wheat)": "ohled-themes-142-in-1--ohled-wheat.yaml", + "OhLED Themes (142-in-1) (OhLED_White)": "ohled-themes-142-in-1--ohled-white.yaml", + "OhLED Themes (142-in-1) (OhLED_WhiteSmoke)": "ohled-themes-142-in-1--ohled-whitesmoke.yaml", + "OhLED Themes (142-in-1) (OhLED_Yellow)": "ohled-themes-142-in-1--ohled-yellow.yaml", + "OhLED Themes (142-in-1) (OhLED_YellowGreen)": "ohled-themes-142-in-1--ohled-yellowgreen.yaml", + "OhLED Themes (142-in-1) (OhLED_YellowOrange)": "ohled-themes-142-in-1--ohled-yelloworange.yaml", + "OhLED Themes (142-in-1) (OhLED_YellowPink)": "ohled-themes-142-in-1--ohled-yellowpink.yaml", + "OhLED Themes (142-in-1) (OhLED_YellowPurple)": "ohled-themes-142-in-1--ohled-yellowpurple.yaml", "Okas theme": "okas-theme.yaml", - "Oldschool Terminal (Green)": "oldschool-terminal-green.yaml", + "OKSolar (Solarized (dark))": "oksolar-solarized-dark.yaml", + "OKSolar (Solarized (light))": "oksolar-solarized-light.yaml", + "Oldschool Theme: Windows 95 Edition": "oldschool-theme-windows-95-edition.yaml", "Oldworld": "oldworld.yaml", "OldWorld": "oldworld.yaml", "Oledge": "oledge.yaml", "Olive Dark": "olive-dark.yaml", "Olive Light": "olive-light.yaml", "Omega": "omega.yaml", - "Omni": "omni.yaml", - "Omni Customized": "omni-customized.yaml", - "Omni Customized Dark": "omni-customized-dark.yaml", - "Omni Dracula Dark": "omni-dracula-dark.yaml", - "Omni Dracula Theme": "omni-dracula-theme.yaml", - "Omni Dracula Theme Tradicional": "omni-dracula-theme-tradicional.yaml", - "Omni Dracula Theme Tradicional Contrast": "omni-dracula-theme-tradicional-contrast.yaml", - "Omni Dracula Wine Theme Tradicional": "omni-dracula-wine-theme-tradicional.yaml", - "Omni Monokai Dark": "omni-monokai-dark.yaml", - "Omni PRO": "omni-pro.yaml", - "Omnisexual": "omnisexual.yaml", - "Omnitrix Code": "omnitrix-code.yaml", + "Omni + Dracula + Dark (Focus-Colors)": "omni-dracula-dark--focus-colors.yaml", + "Omni + Dracula + Dark (Omni Dracula Dark)": "omni-dracula-dark--omni-dracula-dark.yaml", + "Omni + Dracula + Dark (Omni Monokai Dark)": "omni-dracula-dark--omni-monokai-dark.yaml", + "Omni Dark (Omni Customized Dark)": "omni-dark--omni-customized-dark.yaml", + "Omni Dracula VSCode Theme (Omni Dracula Theme Tradicional Contrast)": "omni-dracula-vscode-theme--omni-dracula-theme-tradicional-contrast.yaml", + "Omni Dracula VSCode Theme (Omni Dracula Theme Tradicional)": "omni-dracula-vscode-theme--omni-dracula-theme-tradicional.yaml", + "Omni Dracula VSCode Theme (Omni Dracula Theme)": "omni-dracula-vscode-theme--omni-dracula-theme.yaml", + "Omni Dracula VSCode Theme (Omni Dracula Wine Theme Tradicional)": "omni-dracula-vscode-theme--omni-dracula-wine-theme-tradicional.yaml", + "Omni PRO Theme (Omni PRO)": "omni-pro-theme--omni-pro.yaml", + "Omni Theme": "omni-theme.yaml", + "Omni Theme Customized": "omni-theme-customized.yaml", "omo theme": "omo-theme.yaml", "One AI theme": "one-ai-theme.yaml", - "one dark": "one-dark.yaml", "One Dark": "one-dark.yaml", + "One Dark Cloud Theme": "one-dark-cloud-theme.yaml", "One Dark Code": "one-dark-code.yaml", "One Dark Darker": "one-dark-darker.yaml", "One Dark Darker Vivid": "one-dark-darker-vivid.yaml", "One Dark Modern Pro": "one-dark-modern-pro.yaml", - "One Dark Night - Blue Boy": "one-dark-night-blue-boy.yaml", - "One Dark Night - Eye Care": "one-dark-night-eye-care.yaml", - "One Dark Night - Minimalist": "one-dark-night-minimalist.yaml", - "One Dark Night - Professional": "one-dark-night-professional.yaml", + "One Dark Night Theme (One Dark Night - Blue Boy)": "one-dark-night-theme--one-dark-night-blue-boy.yaml", + "One Dark Night Theme (One Dark Night - Eye Care)": "one-dark-night-theme--one-dark-night-eye-care.yaml", + "One Dark Night Theme (One Dark Night - Minimalist)": "one-dark-night-theme--one-dark-night-minimalist.yaml", + "One Dark Night Theme (One Dark Night - Professional)": "one-dark-night-theme--one-dark-night-professional.yaml", "One Dark NX": "one-dark-nx.yaml", "One Dark Orange": "one-dark-orange.yaml", - "One Dark Pro": "one-dark-pro.yaml", - "One Dark Pro Theme": "one-dark-pro-theme.yaml", + "One Dark Plus+ Theme": "one-dark-plus-theme.yaml", + "One Dark Pro (One Dark Pro)": "one-dark-pro--one-dark-pro.yaml", + "One Dark Pro Colorblind (Deuteranopia) (OneDark Pro - Suhayb's Version v2)": "one-dark-pro-colorblind-deuteranopia--onedark-pro-suhayb-s-version-v2.yaml", "One Dark Pro Var Night": "one-dark-pro-var-night.yaml", + "One Dark Ruby": "one-dark-ruby.yaml", + "One Dark Theme (One Dark)": "one-dark-theme--one-dark.yaml", "One Dark Vibrant Theme": "one-dark-vibrant-theme.yaml", "One Darker Pro": "one-darker-pro.yaml", - "One DarkPuccin Night": "one-darkpuccin-night.yaml", - "One DarkPuccin Vivid": "one-darkpuccin-vivid.yaml", - "One Hunter Theme": "one-hunter-theme.yaml", - "One Light Italic": "one-light-italic.yaml", + "One Darker Pro (One Darker Pro)": "one-darker-pro--one-darker-pro.yaml", + "One DarkPuccin (One DarkPuccin Night)": "one-darkpuccin--one-darkpuccin-night.yaml", + "One DarkPuccin (One DarkPuccin Vivid)": "one-darkpuccin--one-darkpuccin-vivid.yaml", + "One EyeCare Theme (OneDark)": "one-eyecare-theme--onedark.yaml", + "One Hunter Theme (One Hunter Theme)": "one-hunter-theme--one-hunter-theme.yaml", + "One Light Italic (One Light Italic)": "one-light-italic--one-light-italic.yaml", "One Light Pro": "one-light-pro.yaml", "One Material": "one-material.yaml", "One Midnight": "one-midnight.yaml", - "One Monokai (Light)": "one-monokai-light.yaml", + "One Monokai 80s Theme": "one-monokai-80s-theme.yaml", "One Monokai Darker": "one-monokai-darker.yaml", "One Monokai Forked": "one-monokai-forked.yaml", "One Monokai Michota": "one-monokai-michota.yaml", - "One Monokai Python Flat": "one-monokai-python-flat.yaml", + "One Monokai Pro": "one-monokai-pro.yaml", + "One Monokai Python (One Monokai Python)": "one-monokai-python--one-monokai-python.yaml", "One Monokai Shadow": "one-monokai-shadow.yaml", "One Monokai1": "one-monokai1.yaml", + "One Moon": "one-moon.yaml", "One More Dark": "one-more-dark.yaml", "One Pauintxi Blue": "one-pauintxi-blue.yaml", "One Pauintxi Blue++": "one-pauintxi-blue.yaml", "One Pauintxi Orange++": "one-pauintxi-orange.yaml", - "One Piece (Straw Hat Red)": "one-piece-straw-hat-red.yaml", + "One Pauintxi Theme (One Pauintxi Blue++)": "one-pauintxi-theme--one-pauintxi-blue.yaml", + "One Pauintxi Theme (One Pauintxi Orange++)": "one-pauintxi-theme--one-pauintxi-orange.yaml", + "One Piece Theme (one-piece-dark)": "one-piece-theme--one-piece-dark.yaml", + "One Piece Theme (one-piece-light)": "one-piece-theme--one-piece-light.yaml", + "one plain": "one-plain.yaml", "one-dark": "one-dark.yaml", "one-dark-cloud-theme": "one-dark-cloud-theme.yaml", "one-dark-pro": "one-dark-pro.yaml", - "one-piece-dark": "one-piece-dark.yaml", - "One-Piece-High-Contrast": "one-piece-high-contrast.yaml", - "one-piece-light": "one-piece-light.yaml", "OneBitCode": "onebitcode.yaml", - "onebitcode-theme": "onebitcode-theme.yaml", + "onebitcode-theme (darkblue-theme)": "onebitcode-theme--darkblue-theme.yaml", + "onebitcode-theme (onebitcode-theme)": "onebitcode-theme--onebitcode-theme.yaml", + "onebitcode-theme (snow theme)": "onebitcode-theme--snow-theme.yaml", "OneCalm": "onecalm.yaml", - "OneDark Pro - Suhayb's Version v2": "onedark-pro-suhayb-s-version-v2.yaml", + "onedark": "onedark.yaml", "OneDark Vibrant": "onedark-vibrant.yaml", - "onedark.nvim": "onedark-nvim.yaml", + "OneDarkPro-X": "onedarkpro-x.yaml", "Oneiroi caffeine": "oneiroi-caffeine.yaml", "Oneiroi dream": "oneiroi-dream.yaml", "Oneiroi melatonin": "oneiroi-melatonin.yaml", - "OneMonokai80s": "onemonokai80s.yaml", "OneMonokai80sOG": "onemonokai80sog.yaml", "OneNv": "onenv.yaml", + "OnePiece-Dark-Theme": "onepiece-dark-theme.yaml", "OneThing": "onething.yaml", "Oni Theme": "oni-theme.yaml", + "Only Dark Theme (BlueSpace)": "only-dark-theme--bluespace.yaml", + "Only Dark Theme (DarkSpace)": "only-dark-theme--darkspace.yaml", + "Only Dark Theme (Minimal)": "only-dark-theme--minimal.yaml", + "Only Dark Theme (OnlyDark)": "only-dark-theme--onlydark.yaml", + "Only Dark Theme (Sober)": "only-dark-theme--sober.yaml", "OnlyDark": "onlydark.yaml", "OnlyDarkLight": "onlydarklight.yaml", "Onora": "onora.yaml", "Onyx": "onyx.yaml", "Onyx Core": "onyx-core.yaml", "Onyx Ghost": "onyx-ghost.yaml", - "Onyx Theme Color": "onyx-theme-color.yaml", + "Onyx Theme Color & Experience": "onyx-theme-color-experience.yaml", "Ook": "ook.yaml", + "oolory": "oolory.yaml", "oolory-color-theme": "oolory-color-theme.yaml", - "oolory-dark-color-theme": "oolory-dark-color-theme.yaml", "openbase": "openbase.yaml", "OpenSpace": "openspace.yaml", "OpenSpace Dark": "openspace-dark.yaml", "OpenSpace Dark Flat": "openspace-dark-flat.yaml", "opmono odarkp": "opmono-odarkp.yaml", "Optimus Dark": "optimus-dark.yaml", - "Oracle-Vision": "oracle-vision.yaml", "Oradia": "oradia.yaml", "oragethemedark": "oragethemedark.yaml", - "Orago's Warm Theme": "orago-s-warm-theme.yaml", + "orago-themes": "orago-themes.yaml", "orange": "orange.yaml", "Orange": "orange.yaml", "orange coral": "orange-coral.yaml", @@ -4893,39 +5177,39 @@ "OrangeFox Dark": "orangefox-dark.yaml", "OrangeFox Light": "orangefox-light.yaml", "orangelemon": "orangelemon.yaml", - "Orangey": "orangey.yaml", - "Orangey (Darker 1)": "orangey-darker-1.yaml", - "Orangey (Darker 2)": "orangey-darker-2.yaml", - "Orangey (Lighter 1)": "orangey-lighter-1.yaml", - "Orangey (Lighter 2)": "orangey-lighter-2.yaml", + "Orangey | Color Theme (Orangey (Darker 1))": "orangey-color-theme-orangey-darker-1.yaml", + "Orangey | Color Theme (Orangey (Darker 2))": "orangey-color-theme-orangey-darker-2.yaml", + "Orangey | Color Theme (Orangey (Lighter 1))": "orangey-color-theme-orangey-lighter-1.yaml", + "Orangey | Color Theme (Orangey (Lighter 2))": "orangey-color-theme-orangey-lighter-2.yaml", + "Orangey | Color Theme (Orangey)": "orangey-color-theme--orangey.yaml", "Orbi Blue": "orbi-blue.yaml", "Orbi Red": "orbi-red.yaml", - "Orca": "orca.yaml", + "Origami Theme": "origami-theme.yaml", "origami-theme": "origami-theme.yaml", - "Origamid": "origamid.yaml", + "Origamid Next (Origamid)": "origamid-next--origamid.yaml", + "Origamid Theme": "origamid-theme.yaml", "Original Theme": "original-theme.yaml", "Orion X Black": "orion-x-black.yaml", - "Orion-Black - Fork": "orion-black-fork.yaml", "Orpheux": "orpheux.yaml", "orw": "orw.yaml", "Orwellian Nightmare": "orwellian-nightmare.yaml", - "Osaka Solarized Pro Dark": "osaka-solarized-pro-dark.yaml", - "Osaka Solarized Pro Light": "osaka-solarized-pro-light.yaml", - "Osaka Solarized Pro Monokai Storm": "osaka-solarized-pro-monokai-storm.yaml", + "Osaka Solarized Pro (Osaka Solarized Pro Dark)": "osaka-solarized-pro--osaka-solarized-pro-dark.yaml", + "Osaka Solarized Pro (Osaka Solarized Pro Light)": "osaka-solarized-pro--osaka-solarized-pro-light.yaml", + "Osaka Solarized Pro (Osaka Solarized Pro Monokai Storm)": "osaka-solarized-pro--osaka-solarized-pro-monokai-storm.yaml", "Osean Boy": "osean-boy.yaml", "Oslo Dark": "oslo-dark.yaml", - "Osmoz Dark": "osmoz-dark.yaml", + "Osmoz Dark Themes": "osmoz-dark-themes.yaml", "OSX9": "osx9.yaml", - "otakon": "otakon.yaml", - "otakon-contrast": "otakon-contrast.yaml", - "otakon-light": "otakon-light.yaml", + "OTH Theme (Light)": "oth-theme--light.yaml", + "Outer Spacemacs": "outer-spacemacs.yaml", "outer-spacemacs": "outer-spacemacs.yaml", - "Outrun Dark": "outrun-dark.yaml", - "overflow": "overflow.yaml", - "overflow-contrast": "overflow-contrast.yaml", - "overflow-light": "overflow-light.yaml", + "Outrun": "outrun.yaml", + "Outrun (Outrun Contrast)": "outrun--outrun-contrast.yaml", + "Outrun (Outrun Dark)": "outrun--outrun-dark.yaml", + "Overcast Theme (Dark Brown Theme)": "overcast-theme--dark-brown-theme.yaml", "overload": "overload.yaml", - "Overnight": "overnight.yaml", + "Overnight (Overnight)": "overnight--overnight.yaml", + "Overwatch Workshop (Overwatch Workshop 静谧)": "overwatch-workshop--overwatch-workshop.yaml", "Overwatch Workshop 静谧": "overwatch-workshop.yaml", "Owlet (Default)": "owlet-default.yaml", "Owlet (Material)": "owlet-material.yaml", @@ -4934,65 +5218,67 @@ "Owlet (Solarized)": "owlet-solarized.yaml", "Owokai": "owokai.yaml", "Owokai Hard": "owokai-hard.yaml", - "Oxocarbon Dark": "oxocarbon-dark.yaml", - "Oxocarbon Monochrom": "oxocarbon-monochrom.yaml", - "Oxocarbon OLED": "oxocarbon-oled.yaml", - "Oxocarbon OLED Monochrom": "oxocarbon-oled-monochrom.yaml", - "Oxocarbon OLED Monochrom (compatibility)": "oxocarbon-oled-monochrom-compatibility.yaml", + "Oxide Theme": "oxide-theme.yaml", + "Oxocarbon Theme (Oxocarbon Dark)": "oxocarbon-theme--oxocarbon-dark.yaml", + "Oxocarbon Theme (Oxocarbon Monochrom)": "oxocarbon-theme--oxocarbon-monochrom.yaml", + "Oxocarbon Theme (Oxocarbon OLED Monochrom (compatibility))": "oxocarbon-theme-oxocarbon-oled-monochrom-compatibility.yaml", + "Oxocarbon Theme (Oxocarbon OLED Monochrom)": "oxocarbon-theme--oxocarbon-oled-monochrom.yaml", + "Oxocarbon Theme (Oxocarbon OLED)": "oxocarbon-theme--oxocarbon-oled.yaml", "oxocarbon-5": "oxocarbon-5.yaml", "oxocarbon-port": "oxocarbon-port.yaml", - "oXocarbonix dark theme": "oxocarbonix-dark-theme.yaml", + "oXocarbonix (oXocarbonix dark theme)": "oxocarbonix--oxocarbonix-dark-theme.yaml", "Ozurac": "ozurac.yaml", "Ozzy": "ozzy.yaml", "p!nk": "p-nk.yaml", - "P. \\ Yesterday": "p-yesterday.yaml", - "P. Upright \\ Black": "p-upright-black.yaml", - "P. Upright \\ Citadel": "p-upright-citadel.yaml", - "P. Upright \\ Crimson": "p-upright-crimson.yaml", - "P. Upright \\ Dark": "p-upright-dark.yaml", - "P. Upright \\ Eggplant": "p-upright-eggplant.yaml", - "P. Upright \\ Emerald": "p-upright-emerald.yaml", - "P. Upright \\ Eucalyptus": "p-upright-eucalyptus.yaml", - "P. Upright \\ Floresta": "p-upright-floresta.yaml", - "P. Upright \\ Frost": "p-upright-frost.yaml", - "P. Upright \\ Genmaicha": "p-upright-genmaicha.yaml", - "P. Upright \\ Grizzly": "p-upright-grizzly.yaml", - "P. Upright \\ Haze": "p-upright-haze.yaml", - "P. Upright \\ Inkstone": "p-upright-inkstone.yaml", - "P. Upright \\ Leipzig": "p-upright-leipzig.yaml", - "P. Upright \\ Light": "p-upright-light.yaml", - "P. Upright \\ Machine": "p-upright-machine.yaml", - "P. Upright \\ Mist": "p-upright-mist.yaml", - "P. Upright \\ Neptune": "p-upright-neptune.yaml", - "P. Upright \\ Ornithopter": "p-upright-ornithopter.yaml", - "P. Upright \\ Ox": "p-upright-ox.yaml", - "P. Upright \\ Terabyte": "p-upright-terabyte.yaml", - "P. Upright \\ Ultramarine": "p-upright-ultramarine.yaml", - "P. Upright \\ Wolf": "p-upright-wolf.yaml", - "P. Upright \\ Yesterday": "p-upright-yesterday.yaml", - "P. Upright \\ Zenith": "p-upright-zenith.yaml", + "p33t": "p33t.yaml", "P33t": "p33t.yaml", "Pace Dark": "pace-dark.yaml", "Pace Light": "pace-light.yaml", + "Paddy Color Themes (P. \\ Black)": "paddy-color-themes--p-black.yaml", + "Paddy Color Themes (P. \\ Citadel)": "paddy-color-themes--p-citadel.yaml", + "Paddy Color Themes (P. \\ Crimson)": "paddy-color-themes--p-crimson.yaml", + "Paddy Color Themes (P. \\ Dark)": "paddy-color-themes--p-dark.yaml", + "Paddy Color Themes (P. \\ Eggplant)": "paddy-color-themes--p-eggplant.yaml", + "Paddy Color Themes (P. \\ Emerald)": "paddy-color-themes--p-emerald.yaml", + "Paddy Color Themes (P. \\ Eucalyptus)": "paddy-color-themes--p-eucalyptus.yaml", + "Paddy Color Themes (P. \\ Floresta)": "paddy-color-themes--p-floresta.yaml", + "Paddy Color Themes (P. \\ Frost)": "paddy-color-themes--p-frost.yaml", + "Paddy Color Themes (P. \\ Genmaicha)": "paddy-color-themes--p-genmaicha.yaml", + "Paddy Color Themes (P. \\ Grizzly)": "paddy-color-themes--p-grizzly.yaml", + "Paddy Color Themes (P. \\ Haze)": "paddy-color-themes--p-haze.yaml", + "Paddy Color Themes (P. \\ Inkstone)": "paddy-color-themes--p-inkstone.yaml", + "Paddy Color Themes (P. \\ Leipzig)": "paddy-color-themes--p-leipzig.yaml", + "Paddy Color Themes (P. \\ Light)": "paddy-color-themes--p-light.yaml", + "Paddy Color Themes (P. \\ Machine)": "paddy-color-themes--p-machine.yaml", + "Paddy Color Themes (P. \\ Mist)": "paddy-color-themes--p-mist.yaml", + "Paddy Color Themes (P. \\ Neptune)": "paddy-color-themes--p-neptune.yaml", + "Paddy Color Themes (P. \\ Ornithopter)": "paddy-color-themes--p-ornithopter.yaml", + "Paddy Color Themes (P. \\ Ox)": "paddy-color-themes--p-ox.yaml", + "Paddy Color Themes (P. \\ Terabyte)": "paddy-color-themes--p-terabyte.yaml", + "Paddy Color Themes (P. \\ Ultramarine)": "paddy-color-themes--p-ultramarine.yaml", + "Paddy Color Themes (P. \\ Wolf)": "paddy-color-themes--p-wolf.yaml", + "Paddy Color Themes (P. \\ Yesterday)": "paddy-color-themes--p-yesterday.yaml", + "Paddy Color Themes (P. \\ Zenith)": "paddy-color-themes--p-zenith.yaml", "padrepio": "padrepio.yaml", + "PadrePio Dark (Untitled)": "padrepio-dark--untitled.yaml", "Paigio": "paigio.yaml", + "Painful light": "painful-light.yaml", "Pale Blue": "pale-blue.yaml", "Pale Boreal Dark": "pale-boreal-dark.yaml", + "Pale Boreal Dark ": "pale-boreal-dark.yaml", "Palenight": "palenight.yaml", - "Palenight Italic": "palenight-italic.yaml", - "Palenight Material": "palenight-material.yaml", "Palenight Pro": "palenight-pro.yaml", - "Palenight Theme": "palenight-theme.yaml", - "Palenight Theme based on Olaolu Olaywuyi for Code Server": "palenight-theme-based-on-olaolu-olaywuyi-for-code-server.yaml", + "palenight-pro": "palenight-pro.yaml", "palespring": "palespring.yaml", "Palestorm": "palestorm.yaml", "Palestorm X": "palestorm-x.yaml", "Palette": "palette.yaml", "Pall Theme": "pall-theme.yaml", - "Panda Dark": "panda-dark.yaml", + "Pall-Theme": "pall-theme.yaml", + "Panda Blue": "panda-blue.yaml", "panda-blue": "panda-blue.yaml", "pandai": "pandai.yaml", - "Pandju": "pandju.yaml", + "Pandju (Pandju)": "pandju--pandju.yaml", "pantasio": "pantasio.yaml", "Pantone Amber (Dark)": "pantone-amber-dark.yaml", "Pantone Amber (Light)": "pantone-amber-light.yaml", @@ -5194,27 +5480,30 @@ "Pantone Yellow (Light)": "pantone-yellow-light.yaml", "Pantone Yellow Green (Dark)": "pantone-yellow-green-dark.yaml", "Pantone Yellow Green (Light)": "pantone-yellow-green-light.yaml", - "Papaya": "papaya.yaml", + "Pão's themes (Paulera's dark monokai)": "p-o-s-themes--paulera-s-dark-monokai.yaml", + "Pão's themes (Paulera's Lyo)": "p-o-s-themes--paulera-s-lyo.yaml", + "Papaya Theme": "papaya-theme.yaml", "PaperColorDark": "papercolordark.yaml", "Paradise": "paradise.yaml", - "Paraíso (dark)": "para-so-dark.yaml", "Parakeet Theme": "parakeet-theme.yaml", "Parchment": "parchment.yaml", + "Parchment (monochrome themes)": "parchment--monochrome-themes.yaml", "parchment-candlelight-color-theme": "parchment-candlelight-color-theme.yaml", "parchment-codex-color-theme": "parchment-codex-color-theme.yaml", "parchment-digitized-color-theme": "parchment-digitized-color-theme.yaml", - "parchment-starlight-color-theme": "parchment-starlight-color-theme.yaml", "Pare Colors Theme": "pare-colors-theme.yaml", "Parkside Light": "parkside-light.yaml", - "Paro-Paro-Solarized-Dark-Theme": "paro-paro-solarized-dark-theme.yaml", + "Paro Paro Solarized Dark": "paro-paro-solarized-dark.yaml", + "Paro Paro Themes (Paro-Paro-Solarized-Dark-Theme)": "paro-paro-themes--paro-paro-solarized-dark-theme.yaml", "pastel": "pastel.yaml", "Pastel": "pastel.yaml", - "pastel inu": "pastel-inu.yaml", - "pastel-contrast": "pastel-contrast.yaml", - "pastel-light": "pastel-light.yaml", - "Pastel-Sorbet": "pastel-sorbet.yaml", + "Pastel night": "pastel-night.yaml", + "Pastel V2": "pastel-v2.yaml", + "pastel_inu (pastel inu)": "pastel-inu--pastel-inu.yaml", + "pastel-zeke": "pastel-zeke.yaml", "Pastelefull": "pastelefull.yaml", "pastelfairy": "pastelfairy.yaml", + "Pastelization": "pastelization.yaml", "Pastellize Dark (Muted)": "pastellize-dark-muted.yaml", "Patina Colors": "patina-colors.yaml", "Patina Dark": "patina-dark.yaml", @@ -5223,43 +5512,29 @@ "Patina Stellar": "patina-stellar.yaml", "patr-theme": "patr-theme.yaml", "patricklimax": "patricklimax.yaml", - "patriot": "patriot.yaml", - "patriot-contrast": "patriot-contrast.yaml", - "patriot-light": "patriot-light.yaml", - "Paulera's dark monokai": "paulera-s-dark-monokai.yaml", - "Paulera's Lyo": "paulera-s-lyo.yaml", + "paulsevere": "paulsevere.yaml", "Paztels": "paztels.yaml", - "Peace of the eye - Dracula version": "peace-of-the-eye-dracula-version.yaml", + "PCode Theme (Tokyo Night)": "pcode-theme--tokyo-night.yaml", "Peaceful Mind": "peaceful-mind.yaml", "Peachy": "peachy.yaml", "Peachy dolphin": "peachy-dolphin.yaml", "peacock": "peacock.yaml", "Peacock": "peacock.yaml", - "peacock-contrast": "peacock-contrast.yaml", - "peacock-light": "peacock-light.yaml", - "peacocks-in-space": "peacocks-in-space.yaml", - "peacocks-in-space-contrast": "peacocks-in-space-contrast.yaml", - "peacocks-in-space-light": "peacocks-in-space-light.yaml", - "peel": "peel.yaml", - "peel-contrast": "peel-contrast.yaml", - "peel-light": "peel-light.yaml", - "penitent": "penitent.yaml", - "penitent-contrast": "penitent-contrast.yaml", - "penitent-light": "penitent-light.yaml", - "Penumbra Dark": "penumbra-dark.yaml", + "Penumbra (Penumbra Dark Contrast+)": "penumbra--penumbra-dark-contrast.yaml", + "Penumbra (Penumbra Dark Contrast++)": "penumbra--penumbra-dark-contrast.yaml", + "Penumbra (Penumbra Dark)": "penumbra--penumbra-dark.yaml", + "Penumbra (Penumbra Light)": "penumbra--penumbra-light.yaml", "Penumbra Dark Contrast+": "penumbra-dark-contrast.yaml", - "Penumbra Dark Contrast++": "penumbra-dark-contrast.yaml", - "Penumbra Light": "penumbra-light.yaml", - "perf-pink": "perf-pink.yaml", "Perfect Dark": "perfect-dark.yaml", "Perfect Grey PF Dark": "perfect-grey-pf-dark.yaml", "Perfect Grey PF Light": "perfect-grey-pf-light.yaml", - "Perfection Fresh Dark": "perfection-fresh-dark.yaml", - "Perfection Fresh Light": "perfection-fresh-light.yaml", + "perfect-dark": "perfect-dark.yaml", + "Perfection Fresh (Perfection Fresh Dark)": "perfection-fresh--perfection-fresh-dark.yaml", + "Perfection Fresh (Perfection Fresh Light)": "perfection-fresh--perfection-fresh-light.yaml", "Periwinkle Soft Dark": "periwinkle-soft-dark.yaml", "periwinkle-color-theme": "periwinkle-color-theme.yaml", - "Perplexity": "perplexity.yaml", - "Perry-the-platypus": "perry-the-platypus.yaml", + "Perplexity Theme": "perplexity-theme.yaml", + "Perseus": "perseus.yaml", "petrel": "petrel.yaml", "pg-aqualung": "pg-aqualung.yaml", "pg-blue-moon": "pg-blue-moon.yaml", @@ -5282,158 +5557,163 @@ "Phonebook Light": "phonebook-light.yaml", "Phosphor Amber Night": "phosphor-amber-night.yaml", "Phosphor Aurora": "phosphor-aurora.yaml", - "Phosphor Dark": "phosphor-dark.yaml", "Phosphor Dreams": "phosphor-dreams.yaml", "Phosphor Event Horizon": "phosphor-event-horizon.yaml", "Phosphor Forest": "phosphor-forest.yaml", "Phosphor Neon Noir": "phosphor-neon-noir.yaml", + "Phosphor Theme (Phosphor Dark)": "phosphor-theme--phosphor-dark.yaml", "Phosphor Violet Dusk": "phosphor-violet-dusk.yaml", "Phosphorus Minor": "phosphorus-minor.yaml", "Photon": "photon.yaml", - "Photonica Dark": "photonica-dark.yaml", - "Photonica Light": "photonica-light.yaml", + "Photonica (Photonica Dark)": "photonica--photonica-dark.yaml", + "Photonica (Photonica Light)": "photonica--photonica-light.yaml", "Photophore": "photophore.yaml", "Piattro": "piattro.yaml", - "Pierre Dark": "pierre-dark.yaml", - "Pierre Light": "pierre-light.yaml", - "piggy": "piggy.yaml", + "Pierre Theme (Pierre Dark)": "pierre-theme--pierre-dark.yaml", + "Pierre Theme (Pierre Light)": "pierre-theme--pierre-light.yaml", "Piggy": "piggy.yaml", "Piggy Bordered": "piggy-bordered.yaml", - "piggy-contrast": "piggy-contrast.yaml", - "piggy-light": "piggy-light.yaml", "Pillirioen": "pillirioen.yaml", - "Pine Blue": "pine-blue.yaml", - "Pine Cone Theme": "pine-cone-theme.yaml", - "Pine Editor Dark": "pine-editor-dark.yaml", - "Pine Editor Light Bold": "pine-editor-light-bold.yaml", - "Pine Forest": "pine-forest.yaml", - "Pine Forest Green (Dark)": "pine-forest-green-dark.yaml", - "Pine FriZz": "pine-frizz.yaml", - "Pine Grey": "pine-grey.yaml", + "Pine Editor Themes (Pine Blue)": "pine-editor-themes--pine-blue.yaml", + "Pine Editor Themes (Pine Editor Dark)": "pine-editor-themes--pine-editor-dark.yaml", + "Pine Editor Themes (Pine Grey !)": "pine-editor-themes--pine-grey.yaml", + "Pine Editor Themes (Pine Grey)": "pine-editor-themes--pine-grey.yaml", + "Pine Forest Green": "pine-forest-green.yaml", "Pine Grey !": "pine-grey.yaml", - "Pine Theme Original Dark Extend": "pine-theme-original-dark-extend.yaml", + "Pine Script v5 (Pine Editor Light)": "pine-script-v5--pine-editor-light.yaml", + "Pine Script v5 (Pine FriZz)": "pine-script-v5--pine-frizz.yaml", "PineApple": "pineapple.yaml", "pines": "pines.yaml", + "Pines": "pines.yaml", + "PineScript Helper (Pine Theme Dark Pro)": "pinescript-helper--pine-theme-dark-pro.yaml", + "PineScript Helper (Pine Theme Original Dark)": "pinescript-helper--pine-theme-original-dark.yaml", "Pingocho dark": "pingocho-dark.yaml", - "Pink": "pink.yaml", - "Pink - High Contrast": "pink-high-contrast.yaml", - "Pink Candy Dark": "pink-candy-dark.yaml", - "Pink Candy Dark Warm": "pink-candy-dark-warm.yaml", - "Pink Candy Light": "pink-candy-light.yaml", - "Pink Flower": "pink-flower.yaml", - "Pink Neon": "pink-neon.yaml", - "Pink Theme": "pink-theme.yaml", - "pinkAndGreen": "pinkandgreen.yaml", + "Pingocho Dark": "pingocho-dark.yaml", + "Pink & Green Pastels": "pink-green-pastels.yaml", + "Pink Candy Theme (Pink Candy Dark Warm)": "pink-candy-theme--pink-candy-dark-warm.yaml", + "Pink Candy Theme (Pink Candy Dark)": "pink-candy-theme--pink-candy-dark.yaml", + "Pink Candy Theme (Pink Candy Light)": "pink-candy-theme--pink-candy-light.yaml", + "Pink High Contrast Theme": "pink-high-contrast-theme.yaml", + "Pink Themes Collection (Forest Rose)": "pink-themes-collection--forest-rose.yaml", + "Pink Themes Collection (Iris Pink)": "pink-themes-collection--iris-pink.yaml", + "Pink Themes Collection (Matcha Pink)": "pink-themes-collection--matcha-pink.yaml", + "Pink Velvet Theme for VS Code": "pink-velvet-theme-for-vs-code.yaml", + "pink_theme-markisik": "pink-theme-markisik.yaml", + "pink-dark": "pink-dark.yaml", + "pink-serena": "pink-serena.yaml", "pinkandwhite": "pinkandwhite.yaml", "PinkCloud": "pinkcloud.yaml", - "PinkCodes Pink": "pinkcodes-pink.yaml", - "PINKDARK": "pinkdark.yaml", + "PinkCode Theme": "pinkcode-theme.yaml", + "PinkCodes Theme": "pinkcodes-theme.yaml", "PinkDopeyBug-Primordial Origin": "pinkdopeybug-primordial-origin.yaml", + "PinkLily": "pinklily.yaml", + "pinkmare": "pinkmare.yaml", "Pinkmare": "pinkmare.yaml", + "pinkpinktheme": "pinkpinktheme.yaml", + "pinkppuccin": "pinkppuccin.yaml", "Pinkppuccin": "pinkppuccin.yaml", - "Pinky Promise Dark": "pinky-promise-dark.yaml", - "Pinky Promise Light": "pinky-promise-light.yaml", - "Pinkyboo": "pinkyboo.yaml", + "Pinky Promise Theme (Pinky Promise Dark)": "pinky-promise-theme--pinky-promise-dark.yaml", + "Pinky Promise Theme (Pinky Promise Light)": "pinky-promise-theme--pinky-promise-light.yaml", + "PinkyBoo Theme": "pinkyboo-theme.yaml", "Pinot Gris": "pinot-gris.yaml", "Pinya Theme": "pinya-theme.yaml", "PipBoy Theme": "pipboy-theme.yaml", + "Pirate Flat Theme": "pirate-flat-theme.yaml", "pirate-flat-theme": "pirate-flat-theme.yaml", "Pirulug Dark": "pirulug-dark.yaml", "Pirulug Ligt": "pirulug-ligt.yaml", "Pistachio Madness": "pistachio-madness.yaml", "Pitaya smoothie": "pitaya-smoothie.yaml", - "Pittaya Theme": "pittaya-theme.yaml", - "Pittaya Theme Light": "pittaya-theme-light.yaml", - "PittCSC Theme": "pittcsc-theme.yaml", + "Pittaya Theme (Pittaya Theme Light)": "pittaya-theme--pittaya-theme-light.yaml", + "Pittaya Theme (Pittaya Theme)": "pittaya-theme--pittaya-theme.yaml", + "PittCSC": "pittcsc.yaml", "pixeye-theme": "pixeye-theme.yaml", + "pizarra": "pizarra.yaml", "Pizarra": "pizarra.yaml", + "Pizzutti Purple Cyan": "pizzutti-purple-cyan.yaml", "pk-vscode-theme": "pk-vscode-theme.yaml", "Plane": "plane.yaml", "PlantillaThemes": "plantillathemes.yaml", - "Plasma Pink": "plasma-pink.yaml", - "Plasticine": "plasticine.yaml", + "Plasticine (Plasticine)": "plasticine--plasticine.yaml", "Plasticman": "plasticman.yaml", "Platzi Theme": "platzi-theme.yaml", + "Platzi_theme": "platzi-theme.yaml", "Playground": "playground.yaml", "Playground Theme": "playground-theme.yaml", "Playground Theme Dark": "playground-theme-dark.yaml", - "pleasure": "pleasure.yaml", - "pleasure-contrast": "pleasure-contrast.yaml", - "pleasure-light": "pleasure-light.yaml", "Plotka Amethyst": "plotka-amethyst.yaml", "pls my eyes sir": "pls-my-eyes-sir.yaml", - "PlurpelVSC": "plurpelvsc.yaml", + "Plurpel!": "plurpel.yaml", "Pluto Dark": "pluto-dark.yaml", "po": "po.yaml", - "poimandres darker theme (ghostty palette)": "poimandres-darker-theme-ghostty-palette.yaml", + "poimandres (poimandres dark theme)": "poimandres--poimandres-dark-theme.yaml", + "Poimandres Darker": "poimandres-darker.yaml", "Poison Serpent": "poison-serpent.yaml", - "Polar Black": "polar-black.yaml", - "Polar Black Cherry Blossom": "polar-black-cherry-blossom.yaml", - "Polar Black Green Cactus": "polar-black-green-cactus.yaml", - "Polar Black Ice": "polar-black-ice.yaml", - "Polar Black Less Black Smoke": "polar-black-less-black-smoke.yaml", - "Polar Black Light": "polar-black-light.yaml", - "Polar Black Red": "polar-black-red.yaml", - "Polar Black Savanna": "polar-black-savanna.yaml", + "Polar": "polar.yaml", + "Polar Black (Polar Black Cherry Blossom)": "polar-black--polar-black-cherry-blossom.yaml", + "Polar Black (Polar Black Green Cactus)": "polar-black--polar-black-green-cactus.yaml", + "Polar Black (Polar Black Ice)": "polar-black--polar-black-ice.yaml", + "Polar Black (Polar Black Less Black Smoke)": "polar-black--polar-black-less-black-smoke.yaml", + "Polar Black (Polar Black Light)": "polar-black--polar-black-light.yaml", + "Polar Black (Polar Black Red)": "polar-black--polar-black-red.yaml", + "Polar Black (Polar Black Savanna)": "polar-black--polar-black-savanna.yaml", + "Polar Black (Polar Black)": "polar-black--polar-black.yaml", "Polar Ice Dark": "polar-ice-dark.yaml", "Polar Ice Light": "polar-ice-light.yaml", "Polar Light": "polar-light.yaml", "Polar Midnight": "polar-midnight.yaml", "Polar Night": "polar-night.yaml", "Polish": "polish.yaml", - "Polychrome Dark": "polychrome-dark.yaml", - "Polychrome Light": "polychrome-light.yaml", + "Polychrome themes (Polychrome Dark)": "polychrome-themes--polychrome-dark.yaml", + "Polychrome themes (Polychrome Light)": "polychrome-themes--polychrome-light.yaml", "PolyGopher Theme": "polygopher-theme.yaml", "Polykai": "polykai.yaml", "Polymath": "polymath.yaml", - "Polymer-Flow": "polymer-flow.yaml", "pookie dark": "pookie-dark.yaml", "Poolside": "poolside.yaml", - "Pop OS Cosmic": "pop-os-cosmic.yaml", + "Pop": "pop.yaml", "Popipa": "popipa.yaml", - "Popping and Locking": "popping-and-locking.yaml", + "Popping and Locking Black Theme": "popping-and-locking-black-theme.yaml", "Popping and Locking Mod": "popping-and-locking-mod.yaml", + "Popping and Locking Theme": "popping-and-locking-theme.yaml", "popsicle-color-theme": "popsicle-color-theme.yaml", "Port Gellhorn Noir": "port-gellhorn-noir.yaml", "Posh": "posh.yaml", + "Positively Wicked (Wicked)": "positively-wicked--wicked.yaml", "Posterpole": "posterpole.yaml", - "potpourri": "potpourri.yaml", - "potpourri-contrast": "potpourri-contrast.yaml", - "potpourri-light": "potpourri-light.yaml", + "Potion Theme": "potion-theme.yaml", "powder": "powder.yaml", "power dark": "power-dark.yaml", - "power-low-purple-theme": "power-low-purple-theme.yaml", + "PowerTech Themes (Office Dark)": "powertech-themes--office-dark.yaml", + "PowerTech Themes (Office Light)": "powertech-themes--office-light.yaml", "PoznajKubernetes": "poznajkubernetes.yaml", - "ppy-like": "ppy-like.yaml", - "PR-Theme": "pr-theme.yaml", - "PR-Theme Obsidian": "pr-theme-obsidian.yaml", - "PR-Theme Premium": "pr-theme-premium.yaml", + "ppy-like colours": "ppy-like-colours.yaml", + "PR-Theme (PR-Theme Obsidian)": "pr-theme--pr-theme-obsidian.yaml", + "PR-Theme (PR-Theme Premium)": "pr-theme--pr-theme-premium.yaml", + "PR-Theme (PR-Theme)": "pr-theme--pr-theme.yaml", "Pre": "pre.yaml", "Prescient": "prescient.yaml", "Pretentious Name": "pretentious-name.yaml", "Pretstyle": "pretstyle.yaml", + "Pretty Dark Theme": "pretty-dark-theme.yaml", "pretty-dark-theme": "pretty-dark-theme.yaml", "Pributan": "pributan.yaml", "Primary Dark": "primary-dark.yaml", "Primary Light": "primary-light.yaml", - "prime": "prime.yaml", - "prime-contrast": "prime-contrast.yaml", - "prime-light": "prime-light.yaml", "Primer Light": "primer-light.yaml", "Prism (Dark)": "prism-dark.yaml", "Prism (Light)": "prism-light.yaml", "Prisma": "prisma.yaml", - "PrismaPixel Studios - Dark Theme": "prismapixel-studios-dark-theme.yaml", + "PrismaPixel Studios": "prismapixel-studios.yaml", "Prismatic Dark": "prismatic-dark.yaml", "Prismatic Light": "prismatic-light.yaml", "Prismatic Void": "prismatic-void.yaml", - "PrismMagic": "prismmagic.yaml", "Pro Coding": "pro-coding.yaml", + "Pro white": "pro-white.yaml", "Professional Dark": "professional-dark.yaml", "Progenesis Dark": "progenesis-dark.yaml", "Progenesis Light": "progenesis-light.yaml", "Programmer": "programmer.yaml", - "Progress": "progress.yaml", "Progress Dark": "progress-dark.yaml", "project-dark-theme-soft": "project-dark-theme-soft.yaml", "Prom-Wiki": "prom-wiki.yaml", @@ -5441,172 +5721,511 @@ "Proper": "proper.yaml", "Proper Dracula": "proper-dracula.yaml", "Proper Pure": "proper-pure.yaml", + "Proper Purple Theme": "proper-purple-theme.yaml", "Proper Theme - Fork": "proper-theme-fork.yaml", "Proper Theme Alternate 2": "proper-theme-alternate-2.yaml", "Proper Theme Alternate Fork": "proper-theme-alternate-fork.yaml", "Proper Up for What": "proper-up-for-what.yaml", - "propurple": "propurple.yaml", "Protheme Dark": "protheme-dark.yaml", "Protheme Dark 2": "protheme-dark-2.yaml", "PS Dark": "ps-dark.yaml", "PS Light": "ps-light.yaml", "PS Mid-Blue": "ps-mid-blue.yaml", + "Ps-Syntax": "ps-syntax.yaml", "PS-Syntax": "ps-syntax.yaml", - "Pudding Dark": "pudding-dark.yaml", - "Pudding Dark · Caramel (Beta)": "pudding-dark-caramel-beta.yaml", - "Pudding Dark · Christmas": "pudding-dark-christmas.yaml", - "Pudding Light": "pudding-light.yaml", - "Pudding Light · JK": "pudding-light-jk.yaml", + "Pudding Theme (Pudding Dark · Caramel (Beta))": "pudding-theme-pudding-dark-caramel-beta.yaml", + "Pudding Theme (Pudding Dark · Christmas)": "pudding-theme--pudding-dark-christmas.yaml", + "Pudding Theme (Pudding Dark)": "pudding-theme--pudding-dark.yaml", + "Pudding Theme (Pudding Light · JK)": "pudding-theme--pudding-light-jk.yaml", + "Pudding Theme (Pudding Light)": "pudding-theme--pudding-light.yaml", "Pulpy-Orange": "pulpy-orange.yaml", "Pulsar": "pulsar.yaml", - "Pulse Balanced Purple": "pulse-balanced-purple.yaml", - "Pulse Comfort Light": "pulse-comfort-light.yaml", - "Pulse Soft Purple": "pulse-soft-purple.yaml", - "Pumpkin": "pumpkin.yaml", + "Pulse Studio Theme (Pulse Balanced Purple)": "pulse-studio-theme--pulse-balanced-purple.yaml", + "Pulse Studio Theme (Pulse Comfort Light)": "pulse-studio-theme--pulse-comfort-light.yaml", + "Pulse Studio Theme (Pulse Soft Purple)": "pulse-studio-theme--pulse-soft-purple.yaml", + "pumpkin-color-theme": "pumpkin-color-theme.yaml", "Punjab - Land of Five Rivers": "punjab-land-of-five-rivers.yaml", + "punk-runner": "punk-runner.yaml", "PunkFut": "punkfut.yaml", "Pur+ Theme V1": "pur-theme-v1.yaml", - "purble 0.0.2 - Fork - Fork": "purble-0-0-2-fork-fork.yaml", + "purddy": "purddy.yaml", "Purddy": "purddy.yaml", "Pure Black": "pure-black.yaml", "Pure Black - Monokai Inspired": "pure-black-monokai-inspired.yaml", "Pure Dark": "pure-dark.yaml", "Pure Light": "pure-light.yaml", - "Pure Monochrome": "pure-monochrome.yaml", - "PureBlack": "pureblack.yaml", - "Purgle Dark (Purple)": "purgle-dark-purple.yaml", "Puri Twilite": "puri-twilite.yaml", "purple": "purple.yaml", + "Purple And Black": "purple-and-black.yaml", "Purple Cake": "purple-cake.yaml", "Purple Cloud Theme": "purple-cloud-theme.yaml", "Purple Codain": "purple-codain.yaml", + "Purple dark": "purple-dark.yaml", "Purple Dark": "purple-dark.yaml", - "Purple Dark Theme - Unicode": "purple-dark-theme-unicode.yaml", + "Purple Dark Theme - LF": "purple-dark-theme-lf.yaml", "Purple Dream": "purple-dream.yaml", "purple galaxy": "purple-galaxy.yaml", + "Purple Haze Theme": "purple-haze-theme.yaml", "purple ish": "purple-ish.yaml", "purple ish (dimmed)": "purple-ish-dimmed.yaml", - "Purple Royal": "purple-royal.yaml", + "Purple Royal Theme": "purple-royal-theme.yaml", + "Purple Stark Theme (Stark Light)": "purple-stark-theme--stark-light.yaml", "Purple Surface Dark": "purple-surface-dark.yaml", "Purple theme": "purple-theme.yaml", "Purple Theme": "purple-theme.yaml", "Purple Twist": "purple-twist.yaml", "Purple Void": "purple-void.yaml", + "Purple Wave": "purple-wave.yaml", "purple_dark": "purple-dark.yaml", "Purple-Cloud-Minimal": "purple-cloud-minimal.yaml", - "Purple-cyan": "purple-cyan.yaml", + "Purple-Codain": "purple-codain.yaml", + "purple-theme": "purple-theme.yaml", + "Purple-Theme💜": "purple-theme.yaml", + "purple-void": "purple-void.yaml", "Purple(Dark-Black);": "purple-dark-black.yaml", "Purple(Deep Black);": "purple-deep-black.yaml", - "Purple(Deep Black); - Fork": "purple-deep-black-fork.yaml", "Purple/Dark": "purple-dark.yaml", - "PurpleAndBlack": "purpleandblack.yaml", + "purplechan": "purplechan.yaml", "Purplechan": "purplechan.yaml", "PurpleCrystal": "purplecrystal.yaml", "Purplefy": "purplefy.yaml", + "purpleish": "purpleish.yaml", "PurplePhantom": "purplephantom.yaml", "PurplePorschePheme": "purpleporschepheme.yaml", "Purpler": "purpler.yaml", - "PurpleSpace": "purplespace.yaml", + "PurpleSpace (BlueSea)": "purplespace--bluesea.yaml", + "PurpleSpace (OnlyDark)": "purplespace--onlydark.yaml", + "PurpleSpace (PurpleSpace)": "purplespace--purplespace.yaml", + "PurpleSpace (Sober)": "purplespace--sober.yaml", + "PurpleVibes": "purplevibes.yaml", "Purplexed Magic": "purplexed-magic.yaml", - "purplexed-theme": "purplexed-theme.yaml", + "purplezera": "purplezera.yaml", "Purplezera": "purplezera.yaml", "Purplish - Fork": "purplish-fork.yaml", "Purplue": "purplue.yaml", - "Purply (Dark)": "purply-dark.yaml", - "Purply (Light)": "purply-light.yaml", + "Purply Theme (Purply (Dark))": "purply-theme-purply-dark.yaml", + "Purply Theme (Purply (Light))": "purply-theme-purply-light.yaml", "Purppy": "purppy.yaml", "Purps": "purps.yaml", "Purr Light": "purr-light.yaml", - "Purrfect Marshmallow - Lavender Night": "purrfect-marshmallow-lavender-night.yaml", - "Purrfect Marshmallow - Pastel pink": "purrfect-marshmallow-pastel-pink.yaml", + "Purrfect Marshmallow Theme (Purrfect Marshmallow - Lavender Night)": "purrfect-marshmallow-theme--purrfect-marshmallow-lavender-night.yaml", + "Purrfect Marshmallow Theme (Purrfect Marshmallow - Pastel pink)": "purrfect-marshmallow-theme--purrfect-marshmallow-pastel-pink.yaml", "Purstel": "purstel.yaml", "Purupiu Theme": "purupiu-theme.yaml", - "Pushkin is White": "pushkin-is-white.yaml", + "Pushkin is White Theme": "pushkin-is-white-theme.yaml", + "Pussdev Pink Theme": "pussdev-pink-theme.yaml", "pussdev-pink-theme": "pussdev-pink-theme.yaml", "PVC (Light)": "pvc-light.yaml", "pvdk-theme": "pvdk-theme.yaml", "PyCharm Theme": "pycharm-theme.yaml", + "python-bright-colors-theme": "python-bright-colors-theme.yaml", "Python-Bright-Colors-Theme": "python-bright-colors-theme.yaml", + "Qara": "qara.yaml", "QARA": "qara.yaml", - "Qerz Theme": "qerz-theme.yaml", + "qerz-v1": "qerz-v1.yaml", "QiHui Tech": "qihui-tech.yaml", "QiHui Tech Light": "qihui-tech-light.yaml", "QiHui Tech Night": "qihui-tech-night.yaml", - "Qii Theme Dark": "qii-theme-dark.yaml", - "Qii Theme Dark Shallow": "qii-theme-dark-shallow.yaml", - "Qii Theme Light": "qii-theme-light.yaml", - "Qoder Dark": "qoder-dark.yaml", - "qqqoid light color": "qqqoid-light-color.yaml", + "Qii Theme (Qii Theme Dark Shallow)": "qii-theme--qii-theme-dark-shallow.yaml", + "Qii Theme (Qii Theme Dark)": "qii-theme--qii-theme-dark.yaml", + "Qii Theme (Qii Theme Light)": "qii-theme--qii-theme-light.yaml", + "Qt Creator-like dark theme": "qt-creator-like-dark-theme.yaml", "Qt Creator-Like Dark Theme": "qt-creator-like-dark-theme.yaml", "qtz-theme": "qtz-theme.yaml", - "Quantum": "quantum.yaml", "Quantum Blue Dark": "quantum-blue-dark.yaml", - "Quantum Dark": "quantum-dark.yaml", "Quantum Fluidity": "quantum-fluidity.yaml", - "Quantum Flux": "quantum-flux.yaml", - "Quantum Green": "quantum-green.yaml", - "Quantum Material Theme - Dark": "quantum-material-theme-dark.yaml", - "Quantum Material Theme - Light": "quantum-material-theme-light.yaml", - "Quantum Material Theme - Void": "quantum-material-theme-void.yaml", - "Quantum Mirage": "quantum-mirage.yaml", + "Quantum Material Theme (Quantum Material Theme - Dark)": "quantum-material-theme--quantum-material-theme-dark.yaml", + "Quantum Material Theme (Quantum Material Theme - Light)": "quantum-material-theme--quantum-material-theme-light.yaml", + "Quantum Material Theme (Quantum Material Theme - Void)": "quantum-material-theme--quantum-material-theme-void.yaml", "Quantum Night": "quantum-night.yaml", "Quantum Synthwave": "quantum-synthwave.yaml", + "Quantum Theme (Quantum Dark)": "quantum-theme--quantum-dark.yaml", + "Quantum Theme (Quantum Mirage)": "quantum-theme--quantum-mirage.yaml", + "Quantum Theme (Quantum)": "quantum-theme--quantum.yaml", "QuantumQubic": "quantumqubic.yaml", - "quantxz": "quantxz.yaml", "Quarkus Dark Theme": "quarkus-dark-theme.yaml", "Quartzium-Theme-Dark": "quartzium-theme-dark.yaml", - "Quartzium-Theme-Darker": "quartzium-theme-darker.yaml", - "Quartzium-Theme-Deepforest": "quartzium-theme-deepforest.yaml", - "Quartzium-Theme-Default": "quartzium-theme-default.yaml", - "Quartzium-Theme-Lighter": "quartzium-theme-lighter.yaml", "Quasar": "quasar.yaml", - "Qubik Dark": "qubik-dark.yaml", - "Qubik Light": "qubik-light.yaml", - "Queensland Dark": "queensland-dark.yaml", - "Queensland Light": "queensland-light.yaml", - "Quiet Canvas": "quiet-canvas.yaml", + "Qubik Themes (Qubik Dark)": "qubik-themes--qubik-dark.yaml", + "Qubik Themes (Qubik Light)": "qubik-themes--qubik-light.yaml", + "Queensland (Queensland Dark)": "queensland--queensland-dark.yaml", + "Queensland (Queensland Light)": "queensland--queensland-light.yaml", + "Quiet Canvas (Quiet Canvas)": "quiet-canvas--quiet-canvas.yaml", "Quiet Hacker": "quiet-hacker.yaml", "quietude": "quietude.yaml", "Quinno Darkness": "quinno-darkness.yaml", "Quirky Contrast Theme": "quirky-contrast-theme.yaml", + "Quite Night Theme": "quite-night-theme.yaml", "QuTheme": "qutheme.yaml", + "R Dark Pro": "r-dark-pro.yaml", "R Dark Pro (Filter Coolnight)": "r-dark-pro-filter-coolnight.yaml", "R Dark Pro (Filter Dark Pro)": "r-dark-pro-filter-dark-pro.yaml", "R Dark Pro (Filter Nightblack)": "r-dark-pro-filter-nightblack.yaml", "R Dark Pro (Filter Nightfall)": "r-dark-pro-filter-nightfall.yaml", "R Dark Pro (Filter Nightgrey)": "r-dark-pro-filter-nightgrey.yaml", "R Dark Pro (Filter Nightlate)": "r-dark-pro-filter-nightlate.yaml", - "R_h_zero Monokai": "r-h-zero-monokai.yaml", + "R_h_zero Theme": "r-h-zero-theme.yaml", "r.e.m": "r-e-m.yaml", "Rabbit": "rabbit.yaml", + "Rachael's Themes (Dr. Jones)": "rachael-s-themes--dr-jones.yaml", + "Rachael's Themes (High Tea)": "rachael-s-themes--high-tea.yaml", "Radiant Noir": "radiant-noir.yaml", "radium": "radium.yaml", + "Rafa-Oficial (Machine)": "rafa-oficial--machine.yaml", "RageQuit": "ragequit.yaml", "Ragnarok": "ragnarok.yaml", - "Raijū": "raij.yaml", - "Raijū - Dark": "raij-dark.yaml", + "Raijū (Raijū - Dark)": "raij--raij-dark.yaml", + "Raijū (Raijū)": "raij--raij.yaml", "Rain": "rain.yaml", "Rain City Theme": "rain-city-theme.yaml", - "rainbow": "rainbow.yaml", "Rainbow": "rainbow.yaml", + "Rainbow Material Theme": "rainbow-material-theme.yaml", "Rainbow Pastel Theme": "rainbow-pastel-theme.yaml", - "rainbow-light": "rainbow-light.yaml", "rainbow-material-theme": "rainbow-material-theme.yaml", - "RainbowDrops Dark": "rainbowdrops-dark.yaml", + "RainbowDrops": "rainbowdrops.yaml", "Rainforest Dark": "rainforest-dark.yaml", + "Rainglow (absent-contrast)": "rainglow--absent-contrast.yaml", + "Rainglow (absent-light)": "rainglow--absent-light.yaml", + "Rainglow (absent)": "rainglow--absent.yaml", + "Rainglow (allure-contrast)": "rainglow--allure-contrast.yaml", + "Rainglow (allure-light)": "rainglow--allure-light.yaml", + "Rainglow (allure)": "rainglow--allure.yaml", + "Rainglow (arstotzka-contrast)": "rainglow--arstotzka-contrast.yaml", + "Rainglow (arstotzka-light)": "rainglow--arstotzka-light.yaml", + "Rainglow (arstotzka)": "rainglow--arstotzka.yaml", + "Rainglow (azure-contrast)": "rainglow--azure-contrast.yaml", + "Rainglow (azure-light)": "rainglow--azure-light.yaml", + "Rainglow (azure)": "rainglow--azure.yaml", + "Rainglow (banner-contrast)": "rainglow--banner-contrast.yaml", + "Rainglow (banner-light)": "rainglow--banner-light.yaml", + "Rainglow (banner)": "rainglow--banner.yaml", + "Rainglow (blink-contrast)": "rainglow--blink-contrast.yaml", + "Rainglow (blink-light)": "rainglow--blink-light.yaml", + "Rainglow (blink)": "rainglow--blink.yaml", + "Rainglow (bold-contrast)": "rainglow--bold-contrast.yaml", + "Rainglow (bold-light)": "rainglow--bold-light.yaml", + "Rainglow (bold)": "rainglow--bold.yaml", + "Rainglow (boxuk-contrast)": "rainglow--boxuk-contrast.yaml", + "Rainglow (boxuk-light)": "rainglow--boxuk-light.yaml", + "Rainglow (boxuk)": "rainglow--boxuk.yaml", + "Rainglow (brave-contrast)": "rainglow--brave-contrast.yaml", + "Rainglow (brave-light)": "rainglow--brave-light.yaml", + "Rainglow (brave)": "rainglow--brave.yaml", + "Rainglow (carbonight-contrast)": "rainglow--carbonight-contrast.yaml", + "Rainglow (carbonight-light)": "rainglow--carbonight-light.yaml", + "Rainglow (carbonight)": "rainglow--carbonight.yaml", + "Rainglow (chocolate-contrast)": "rainglow--chocolate-contrast.yaml", + "Rainglow (chocolate-light)": "rainglow--chocolate-light.yaml", + "Rainglow (chocolate)": "rainglow--chocolate.yaml", + "Rainglow (codecourse-contrast)": "rainglow--codecourse-contrast.yaml", + "Rainglow (codecourse-light)": "rainglow--codecourse-light.yaml", + "Rainglow (codecourse)": "rainglow--codecourse.yaml", + "Rainglow (coffee-contrast)": "rainglow--coffee-contrast.yaml", + "Rainglow (coffee-light)": "rainglow--coffee-light.yaml", + "Rainglow (coffee)": "rainglow--coffee.yaml", + "Rainglow (comrade-contrast)": "rainglow--comrade-contrast.yaml", + "Rainglow (comrade-light)": "rainglow--comrade-light.yaml", + "Rainglow (comrade)": "rainglow--comrade.yaml", + "Rainglow (crackpot-contrast)": "rainglow--crackpot-contrast.yaml", + "Rainglow (crackpot-light)": "rainglow--crackpot-light.yaml", + "Rainglow (crackpot)": "rainglow--crackpot.yaml", + "Rainglow (crisp-contrast)": "rainglow--crisp-contrast.yaml", + "Rainglow (crisp-light)": "rainglow--crisp-light.yaml", + "Rainglow (crisp)": "rainglow--crisp.yaml", + "Rainglow (dare-contrast)": "rainglow--dare-contrast.yaml", + "Rainglow (dare-light)": "rainglow--dare-light.yaml", + "Rainglow (dare)": "rainglow--dare.yaml", + "Rainglow (darkside-contrast)": "rainglow--darkside-contrast.yaml", + "Rainglow (darkside-light)": "rainglow--darkside-light.yaml", + "Rainglow (darkside)": "rainglow--darkside.yaml", + "Rainglow (downpour-contrast)": "rainglow--downpour-contrast.yaml", + "Rainglow (downpour-light)": "rainglow--downpour-light.yaml", + "Rainglow (downpour)": "rainglow--downpour.yaml", + "Rainglow (earthsong-contrast)": "rainglow--earthsong-contrast.yaml", + "Rainglow (earthsong-light)": "rainglow--earthsong-light.yaml", + "Rainglow (earthsong)": "rainglow--earthsong.yaml", + "Rainglow (fodder-contrast)": "rainglow--fodder-contrast.yaml", + "Rainglow (fodder-light)": "rainglow--fodder-light.yaml", + "Rainglow (fodder)": "rainglow--fodder.yaml", + "Rainglow (frantic-contrast)": "rainglow--frantic-contrast.yaml", + "Rainglow (frantic-light)": "rainglow--frantic-light.yaml", + "Rainglow (frantic)": "rainglow--frantic.yaml", + "Rainglow (freshcut-contrast)": "rainglow--freshcut-contrast.yaml", + "Rainglow (freshcut-light)": "rainglow--freshcut-light.yaml", + "Rainglow (freshcut)": "rainglow--freshcut.yaml", + "Rainglow (friction-contrast)": "rainglow--friction-contrast.yaml", + "Rainglow (friction-light)": "rainglow--friction-light.yaml", + "Rainglow (friction)": "rainglow--friction.yaml", + "Rainglow (frontier-contrast)": "rainglow--frontier-contrast.yaml", + "Rainglow (frontier-light)": "rainglow--frontier-light.yaml", + "Rainglow (frontier)": "rainglow--frontier.yaml", + "Rainglow (github-contrast)": "rainglow--github-contrast.yaml", + "Rainglow (github-light)": "rainglow--github-light.yaml", + "Rainglow (github)": "rainglow--github.yaml", + "Rainglow (glance-contrast)": "rainglow--glance-contrast.yaml", + "Rainglow (glance-light)": "rainglow--glance-light.yaml", + "Rainglow (glance)": "rainglow--glance.yaml", + "Rainglow (gloom-contrast)": "rainglow--gloom-contrast.yaml", + "Rainglow (gloom-light)": "rainglow--gloom-light.yaml", + "Rainglow (gloom)": "rainglow--gloom.yaml", + "Rainglow (glowfish-contrast)": "rainglow--glowfish-contrast.yaml", + "Rainglow (glowfish-light)": "rainglow--glowfish-light.yaml", + "Rainglow (glowfish)": "rainglow--glowfish.yaml", + "Rainglow (goldfish-contrast)": "rainglow--goldfish-contrast.yaml", + "Rainglow (goldfish-light)": "rainglow--goldfish-light.yaml", + "Rainglow (goldfish)": "rainglow--goldfish.yaml", + "Rainglow (grunge-contrast)": "rainglow--grunge-contrast.yaml", + "Rainglow (grunge-light)": "rainglow--grunge-light.yaml", + "Rainglow (grunge)": "rainglow--grunge.yaml", + "Rainglow (halflife-contrast)": "rainglow--halflife-contrast.yaml", + "Rainglow (halflife-light)": "rainglow--halflife-light.yaml", + "Rainglow (halflife)": "rainglow--halflife.yaml", + "Rainglow (hawaii-contrast)": "rainglow--hawaii-contrast.yaml", + "Rainglow (hawaii-light)": "rainglow--hawaii-light.yaml", + "Rainglow (hawaii)": "rainglow--hawaii.yaml", + "Rainglow (heroku-contrast)": "rainglow--heroku-contrast.yaml", + "Rainglow (heroku-light)": "rainglow--heroku-light.yaml", + "Rainglow (heroku)": "rainglow--heroku.yaml", + "Rainglow (hive-contrast)": "rainglow--hive-contrast.yaml", + "Rainglow (hive-light)": "rainglow--hive-light.yaml", + "Rainglow (hive)": "rainglow--hive.yaml", + "Rainglow (horizon-contrast)": "rainglow--horizon-contrast.yaml", + "Rainglow (horizon-light)": "rainglow--horizon-light.yaml", + "Rainglow (horizon)": "rainglow--horizon.yaml", + "Rainglow (hub-contrast)": "rainglow--hub-contrast.yaml", + "Rainglow (hub-light)": "rainglow--hub-light.yaml", + "Rainglow (hub)": "rainglow--hub.yaml", + "Rainglow (hyrule-contrast)": "rainglow--hyrule-contrast.yaml", + "Rainglow (hyrule-light)": "rainglow--hyrule-light.yaml", + "Rainglow (hyrule)": "rainglow--hyrule.yaml", + "Rainglow (iceberg-contrast)": "rainglow--iceberg-contrast.yaml", + "Rainglow (iceberg-light)": "rainglow--iceberg-light.yaml", + "Rainglow (iceberg)": "rainglow--iceberg.yaml", + "Rainglow (isotope-contrast)": "rainglow--isotope-contrast.yaml", + "Rainglow (isotope-light)": "rainglow--isotope-light.yaml", + "Rainglow (isotope)": "rainglow--isotope.yaml", + "Rainglow (jewel-contrast)": "rainglow--jewel-contrast.yaml", + "Rainglow (jewel-light)": "rainglow--jewel-light.yaml", + "Rainglow (jewel)": "rainglow--jewel.yaml", + "Rainglow (jingle-contrast)": "rainglow--jingle-contrast.yaml", + "Rainglow (jingle-light)": "rainglow--jingle-light.yaml", + "Rainglow (jingle)": "rainglow--jingle.yaml", + "Rainglow (joker-contrast)": "rainglow--joker-contrast.yaml", + "Rainglow (joker-light)": "rainglow--joker-light.yaml", + "Rainglow (joker)": "rainglow--joker.yaml", + "Rainglow (juicy-contrast)": "rainglow--juicy-contrast.yaml", + "Rainglow (juicy-light)": "rainglow--juicy-light.yaml", + "Rainglow (juicy)": "rainglow--juicy.yaml", + "Rainglow (jumper-contrast)": "rainglow--jumper-contrast.yaml", + "Rainglow (jumper-light)": "rainglow--jumper-light.yaml", + "Rainglow (jumper)": "rainglow--jumper.yaml", + "Rainglow (keen-contrast)": "rainglow--keen-contrast.yaml", + "Rainglow (keen-light)": "rainglow--keen-light.yaml", + "Rainglow (keen)": "rainglow--keen.yaml", + "Rainglow (kiwi-contrast)": "rainglow--kiwi-contrast.yaml", + "Rainglow (kiwi-light)": "rainglow--kiwi-light.yaml", + "Rainglow (kiwi)": "rainglow--kiwi.yaml", + "Rainglow (laracasts-contrast)": "rainglow--laracasts-contrast.yaml", + "Rainglow (laracasts-light)": "rainglow--laracasts-light.yaml", + "Rainglow (laracasts)": "rainglow--laracasts.yaml", + "Rainglow (laravel-contrast)": "rainglow--laravel-contrast.yaml", + "Rainglow (laravel-light)": "rainglow--laravel-light.yaml", + "Rainglow (laravel)": "rainglow--laravel.yaml", + "Rainglow (lavender-contrast)": "rainglow--lavender-contrast.yaml", + "Rainglow (lavender-light)": "rainglow--lavender-light.yaml", + "Rainglow (lavender)": "rainglow--lavender.yaml", + "Rainglow (legacy-contrast)": "rainglow--legacy-contrast.yaml", + "Rainglow (legacy-light)": "rainglow--legacy-light.yaml", + "Rainglow (legacy)": "rainglow--legacy.yaml", + "Rainglow (lichen-contrast)": "rainglow--lichen-contrast.yaml", + "Rainglow (lichen-light)": "rainglow--lichen-light.yaml", + "Rainglow (lichen)": "rainglow--lichen.yaml", + "Rainglow (loyal-contrast)": "rainglow--loyal-contrast.yaml", + "Rainglow (loyal-light)": "rainglow--loyal-light.yaml", + "Rainglow (loyal)": "rainglow--loyal.yaml", + "Rainglow (mauve-contrast)": "rainglow--mauve-contrast.yaml", + "Rainglow (mauve-light)": "rainglow--mauve-light.yaml", + "Rainglow (mauve)": "rainglow--mauve.yaml", + "Rainglow (mellow-contrast)": "rainglow--mellow-contrast.yaml", + "Rainglow (mellow-light)": "rainglow--mellow-light.yaml", + "Rainglow (mellow)": "rainglow--mellow.yaml", + "Rainglow (mintchoc-contrast)": "rainglow--mintchoc-contrast.yaml", + "Rainglow (mintchoc-light)": "rainglow--mintchoc-light.yaml", + "Rainglow (mintchoc)": "rainglow--mintchoc.yaml", + "Rainglow (monzo-contrast)": "rainglow--monzo-contrast.yaml", + "Rainglow (monzo-light)": "rainglow--monzo-light.yaml", + "Rainglow (monzo)": "rainglow--monzo.yaml", + "Rainglow (morass-contrast)": "rainglow--morass-contrast.yaml", + "Rainglow (morass-light)": "rainglow--morass-light.yaml", + "Rainglow (morass)": "rainglow--morass.yaml", + "Rainglow (mud-contrast)": "rainglow--mud-contrast.yaml", + "Rainglow (mud-light)": "rainglow--mud-light.yaml", + "Rainglow (mud)": "rainglow--mud.yaml", + "Rainglow (newton-contrast)": "rainglow--newton-contrast.yaml", + "Rainglow (newton-light)": "rainglow--newton-light.yaml", + "Rainglow (newton)": "rainglow--newton.yaml", + "Rainglow (otakon-contrast)": "rainglow--otakon-contrast.yaml", + "Rainglow (otakon-light)": "rainglow--otakon-light.yaml", + "Rainglow (otakon)": "rainglow--otakon.yaml", + "Rainglow (overflow-contrast)": "rainglow--overflow-contrast.yaml", + "Rainglow (overflow-light)": "rainglow--overflow-light.yaml", + "Rainglow (overflow)": "rainglow--overflow.yaml", + "Rainglow (pastel-contrast)": "rainglow--pastel-contrast.yaml", + "Rainglow (pastel-light)": "rainglow--pastel-light.yaml", + "Rainglow (pastel)": "rainglow--pastel.yaml", + "Rainglow (patriot-contrast)": "rainglow--patriot-contrast.yaml", + "Rainglow (patriot-light)": "rainglow--patriot-light.yaml", + "Rainglow (patriot)": "rainglow--patriot.yaml", + "Rainglow (peacock-contrast)": "rainglow--peacock-contrast.yaml", + "Rainglow (peacock-light)": "rainglow--peacock-light.yaml", + "Rainglow (peacock)": "rainglow--peacock.yaml", + "Rainglow (peacocks-in-space-contrast)": "rainglow--peacocks-in-space-contrast.yaml", + "Rainglow (peacocks-in-space-light)": "rainglow--peacocks-in-space-light.yaml", + "Rainglow (peacocks-in-space)": "rainglow--peacocks-in-space.yaml", + "Rainglow (peel-contrast)": "rainglow--peel-contrast.yaml", + "Rainglow (peel-light)": "rainglow--peel-light.yaml", + "Rainglow (peel)": "rainglow--peel.yaml", + "Rainglow (penitent-contrast)": "rainglow--penitent-contrast.yaml", + "Rainglow (penitent-light)": "rainglow--penitent-light.yaml", + "Rainglow (penitent)": "rainglow--penitent.yaml", + "Rainglow (piggy-contrast)": "rainglow--piggy-contrast.yaml", + "Rainglow (piggy-light)": "rainglow--piggy-light.yaml", + "Rainglow (piggy)": "rainglow--piggy.yaml", + "Rainglow (pleasure-contrast)": "rainglow--pleasure-contrast.yaml", + "Rainglow (pleasure-light)": "rainglow--pleasure-light.yaml", + "Rainglow (pleasure)": "rainglow--pleasure.yaml", + "Rainglow (potpourri-contrast)": "rainglow--potpourri-contrast.yaml", + "Rainglow (potpourri-light)": "rainglow--potpourri-light.yaml", + "Rainglow (potpourri)": "rainglow--potpourri.yaml", + "Rainglow (prime-contrast)": "rainglow--prime-contrast.yaml", + "Rainglow (prime-light)": "rainglow--prime-light.yaml", + "Rainglow (prime)": "rainglow--prime.yaml", + "Rainglow (rainbow-contrast)": "rainglow--rainbow-contrast.yaml", + "Rainglow (rainbow-light)": "rainglow--rainbow-light.yaml", + "Rainglow (rainbow)": "rainglow--rainbow.yaml", + "Rainglow (rebellion-contrast)": "rainglow--rebellion-contrast.yaml", + "Rainglow (rebellion-light)": "rainglow--rebellion-light.yaml", + "Rainglow (rebellion)": "rainglow--rebellion.yaml", + "Rainglow (revelation-contrast)": "rainglow--revelation-contrast.yaml", + "Rainglow (revelation-light)": "rainglow--revelation-light.yaml", + "Rainglow (revelation)": "rainglow--revelation.yaml", + "Rainglow (scorch-contrast)": "rainglow--scorch-contrast.yaml", + "Rainglow (scorch-light)": "rainglow--scorch-light.yaml", + "Rainglow (scorch)": "rainglow--scorch.yaml", + "Rainglow (service-contrast)": "rainglow--service-contrast.yaml", + "Rainglow (service-light)": "rainglow--service-light.yaml", + "Rainglow (service)": "rainglow--service.yaml", + "Rainglow (shrek-contrast)": "rainglow--shrek-contrast.yaml", + "Rainglow (shrek-light)": "rainglow--shrek-light.yaml", + "Rainglow (shrek)": "rainglow--shrek.yaml", + "Rainglow (slate-contrast)": "rainglow--slate-contrast.yaml", + "Rainglow (slate-light)": "rainglow--slate-light.yaml", + "Rainglow (slate)": "rainglow--slate.yaml", + "Rainglow (slime-contrast)": "rainglow--slime-contrast.yaml", + "Rainglow (slime-light)": "rainglow--slime-light.yaml", + "Rainglow (slime)": "rainglow--slime.yaml", + "Rainglow (snappy-contrast)": "rainglow--snappy-contrast.yaml", + "Rainglow (snappy-light)": "rainglow--snappy-light.yaml", + "Rainglow (snappy)": "rainglow--snappy.yaml", + "Rainglow (solarflare-contrast)": "rainglow--solarflare-contrast.yaml", + "Rainglow (solarflare-light)": "rainglow--solarflare-light.yaml", + "Rainglow (solarflare)": "rainglow--solarflare.yaml", + "Rainglow (soup-contrast)": "rainglow--soup-contrast.yaml", + "Rainglow (soup-light)": "rainglow--soup-light.yaml", + "Rainglow (soup)": "rainglow--soup.yaml", + "Rainglow (sourlick-contrast)": "rainglow--sourlick-contrast.yaml", + "Rainglow (sourlick-light)": "rainglow--sourlick-light.yaml", + "Rainglow (sourlick)": "rainglow--sourlick.yaml", + "Rainglow (spearmint-contrast)": "rainglow--spearmint-contrast.yaml", + "Rainglow (spearmint-light)": "rainglow--spearmint-light.yaml", + "Rainglow (spearmint)": "rainglow--spearmint.yaml", + "Rainglow (spitfire-contrast)": "rainglow--spitfire-contrast.yaml", + "Rainglow (spitfire-light)": "rainglow--spitfire-light.yaml", + "Rainglow (spitfire)": "rainglow--spitfire.yaml", + "Rainglow (stark-contrast)": "rainglow--stark-contrast.yaml", + "Rainglow (stark-light)": "rainglow--stark-light.yaml", + "Rainglow (stark)": "rainglow--stark.yaml", + "Rainglow (stasis-contrast)": "rainglow--stasis-contrast.yaml", + "Rainglow (stasis-light)": "rainglow--stasis-light.yaml", + "Rainglow (stasis)": "rainglow--stasis.yaml", + "Rainglow (stealth-contrast)": "rainglow--stealth-contrast.yaml", + "Rainglow (stealth-light)": "rainglow--stealth-light.yaml", + "Rainglow (stealth)": "rainglow--stealth.yaml", + "Rainglow (storm-contrast)": "rainglow--storm-contrast.yaml", + "Rainglow (storm-light)": "rainglow--storm-light.yaml", + "Rainglow (storm)": "rainglow--storm.yaml", + "Rainglow (super-contrast)": "rainglow--super-contrast.yaml", + "Rainglow (super-light)": "rainglow--super-light.yaml", + "Rainglow (super)": "rainglow--super.yaml", + "Rainglow (tame-contrast)": "rainglow--tame-contrast.yaml", + "Rainglow (tame-light)": "rainglow--tame-light.yaml", + "Rainglow (tame)": "rainglow--tame.yaml", + "Rainglow (tetra-contrast)": "rainglow--tetra-contrast.yaml", + "Rainglow (tetra-light)": "rainglow--tetra-light.yaml", + "Rainglow (tetra)": "rainglow--tetra.yaml", + "Rainglow (tickle-contrast)": "rainglow--tickle-contrast.yaml", + "Rainglow (tickle-light)": "rainglow--tickle-light.yaml", + "Rainglow (tickle)": "rainglow--tickle.yaml", + "Rainglow (tonic-contrast)": "rainglow--tonic-contrast.yaml", + "Rainglow (tonic-light)": "rainglow--tonic-light.yaml", + "Rainglow (tonic)": "rainglow--tonic.yaml", + "Rainglow (tribal-contrast)": "rainglow--tribal-contrast.yaml", + "Rainglow (tribal-light)": "rainglow--tribal-light.yaml", + "Rainglow (tribal)": "rainglow--tribal.yaml", + "Rainglow (tron-contrast)": "rainglow--tron-contrast.yaml", + "Rainglow (tron-light)": "rainglow--tron-light.yaml", + "Rainglow (tron)": "rainglow--tron.yaml", + "Rainglow (turnip-contrast)": "rainglow--turnip-contrast.yaml", + "Rainglow (turnip-light)": "rainglow--turnip-light.yaml", + "Rainglow (turnip)": "rainglow--turnip.yaml", + "Rainglow (tweed-contrast)": "rainglow--tweed-contrast.yaml", + "Rainglow (tweed-light)": "rainglow--tweed-light.yaml", + "Rainglow (tweed)": "rainglow--tweed.yaml", + "Rainglow (userscape-contrast)": "rainglow--userscape-contrast.yaml", + "Rainglow (userscape-light)": "rainglow--userscape-light.yaml", + "Rainglow (userscape)": "rainglow--userscape.yaml", + "Rainglow (vegetable-contrast)": "rainglow--vegetable-contrast.yaml", + "Rainglow (vegetable-light)": "rainglow--vegetable-light.yaml", + "Rainglow (vegetable)": "rainglow--vegetable.yaml", + "Rainglow (violaceous-contrast)": "rainglow--violaceous-contrast.yaml", + "Rainglow (violaceous-light)": "rainglow--violaceous-light.yaml", + "Rainglow (violaceous)": "rainglow--violaceous.yaml", + "Rainglow (vision-colorblind)": "rainglow--vision-colorblind.yaml", + "Rainglow (vision-light-colorblind)": "rainglow--vision-light-colorblind.yaml", + "Rainglow (volatile-contrast)": "rainglow--volatile-contrast.yaml", + "Rainglow (volatile-light)": "rainglow--volatile-light.yaml", + "Rainglow (volatile)": "rainglow--volatile.yaml", + "Rainglow (warlock-contrast)": "rainglow--warlock-contrast.yaml", + "Rainglow (warlock-light)": "rainglow--warlock-light.yaml", + "Rainglow (warlock)": "rainglow--warlock.yaml", + "Rainglow (waste-contrast)": "rainglow--waste-contrast.yaml", + "Rainglow (waste-light)": "rainglow--waste-light.yaml", + "Rainglow (waste)": "rainglow--waste.yaml", + "Rainglow (yitzchok-contrast)": "rainglow--yitzchok-contrast.yaml", + "Rainglow (yitzchok-light)": "rainglow--yitzchok-light.yaml", + "Rainglow (yitzchok)": "rainglow--yitzchok.yaml", + "Rainglow (yule-contrast)": "rainglow--yule-contrast.yaml", + "Rainglow (yule-light)": "rainglow--yule-light.yaml", + "Rainglow (yule)": "rainglow--yule.yaml", + "Rainglow (zacks-contrast)": "rainglow--zacks-contrast.yaml", + "Rainglow (zacks-light)": "rainglow--zacks-light.yaml", + "Rainglow (zacks)": "rainglow--zacks.yaml", "rainx0r": "rainx0r.yaml", "Rainy Hydrangea": "rainy-hydrangea.yaml", - "RaiyanPlanet Dark Knight": "raiyanplanet-dark-knight.yaml", - "RaiyanPlanet Darkest": "raiyanplanet-darkest.yaml", - "RaiyanPlanet Purple World": "raiyanplanet-purple-world.yaml", + "Raisin": "raisin.yaml", + "Raiyanplanet Theme (RaiyanPlanet Dark Knight)": "raiyanplanet-theme--raiyanplanet-dark-knight.yaml", + "Raiyanplanet Theme (RaiyanPlanet Darkest)": "raiyanplanet-theme--raiyanplanet-darkest.yaml", + "Raiyanplanet Theme (RaiyanPlanet Purple World)": "raiyanplanet-theme--raiyanplanet-purple-world.yaml", "Rajasthan - Land of Kings": "rajasthan-land-of-kings.yaml", "Rajoyish": "rajoyish.yaml", "Rakkii Theme": "rakkii-theme.yaml", "Ramage": "ramage.yaml", + "ramazzotti": "ramazzotti.yaml", "ramazzotti flexobi": "ramazzotti-flexobi.yaml", "ramazzotti gruvbox": "ramazzotti-gruvbox.yaml", - "ramazzotti-80s": "ramazzotti-80s.yaml", - "Ramuda": "ramuda.yaml", + "ramos-theme": "ramos-theme.yaml", + "Ramuda Pink Theme": "ramuda-pink-theme.yaml", + "random": "random.yaml", "Rapture": "rapture.yaml", "Rasengan Glacier": "rasengan-glacier.yaml", "RAT Beach": "rat-beach.yaml", @@ -5616,149 +6235,134 @@ "Rate Light Soft": "rate-light-soft.yaml", "Ravenwood Dark": "ravenwood-dark.yaml", "Ravenwood Light": "ravenwood-light.yaml", + "Ravora Tema": "ravora-tema.yaml", + "rawqdark (Untitled)": "rawqdark--untitled.yaml", "Rayleigh": "rayleigh.yaml", - "RB's Desaturated": "rb-s-desaturated.yaml", + "RB's Robotic": "rb-s-robotic.yaml", "RBE Matrix Skin Theme": "rbe-matrix-skin-theme.yaml", "rblx_lua_non_italic": "rblx-lua-non-italic.yaml", - "RCW-120-V1": "rcw-120-v1.yaml", "rdcd": "rdcd.yaml", - "re:Dark": "re-dark.yaml", + "RDCD": "rdcd.yaml", "re:Eclipse": "re-eclipse.yaml", "re:Eclipse Old School": "re-eclipse-old-school.yaml", + "re:Theme": "re-theme.yaml", + "re:Theme (re:Dark)": "re-theme--re-dark.yaml", "Re:Vision": "re-vision.yaml", - "React Italic Theme": "react-italic-theme.yaml", "React Theme": "react-theme.yaml", - "rebellion": "rebellion.yaml", - "rebellion-contrast": "rebellion-contrast.yaml", - "rebellion-light": "rebellion-light.yaml", + "React Theme (M": "react-theme-m.yaml", + "Reactlyfi - Discord.js": "reactlyfi-discord-js.yaml", "recats-classic-dark": "recats-classic-dark.yaml", "recats-nova-dark": "recats-nova-dark.yaml", "RecoTheme": "recotheme.yaml", - "red": "red.yaml", "Red Black White Dark": "red-black-white-dark.yaml", "Red Black White Light": "red-black-white-light.yaml", - "Red Neon": "red-neon.yaml", - "Red One Dark Pro | Dark": "red-one-dark-pro-dark.yaml", - "Red Vintage": "red-vintage.yaml", + "RED Group's themes": "red-group-s-themes.yaml", + "Red Riptide Theme Dark (dark)": "red-riptide-theme-dark--dark.yaml", + "Red Riptide Theme Dark (gray)": "red-riptide-theme-dark--gray.yaml", + "Red Vintage Theme": "red-vintage-theme.yaml", "red-black-white": "red-black-white.yaml", - "red-color-theme": "red-color-theme.yaml", "red/grey": "red-grey.yaml", + "reddark": "reddark.yaml", "RedDark": "reddark.yaml", - "Reddit Dark Based Theme - Updated": "reddit-dark-based-theme-updated.yaml", + "Reddit-Dark-Theme-Unofficial": "reddit-dark-theme-unofficial.yaml", + "RedDragonS": "reddragons.yaml", "rediohead theme": "rediohead-theme.yaml", "redoRainbow": "redorainbow.yaml", "RedPro Dark": "redpro-dark.yaml", "RedPro Light": "redpro-light.yaml", "RedSpecter": "redspecter.yaml", - "Refined (Charcoal)": "refined-charcoal.yaml", - "Refined (Default)": "refined-default.yaml", - "Refined (Dracula)": "refined-dracula.yaml", - "Refined (Espresso)": "refined-espresso.yaml", - "Refined (Matcha)": "refined-matcha.yaml", - "Refined (Mocha)": "refined-mocha.yaml", - "Refined (Night Owl)": "refined-night-owl.yaml", - "Refined (Oceanic Next)": "refined-oceanic-next.yaml", - "Refined (One)": "refined-one.yaml", - "Refined (Palenight)": "refined-palenight.yaml", - "Refined (Purple)": "refined-purple.yaml", - "Refined (Slate)": "refined-slate.yaml", + "rEduc/C# Dracula Theme (C# Dracula)": "reduc-c-dracula-theme--c-dracula.yaml", "Regard": "regard.yaml", "RegisTheme": "registheme.yaml", - "Relaxed Theme": "relaxed-theme.yaml", - "Relaxed Theme - Dark Focus": "relaxed-theme-dark-focus.yaml", - "Relaxed Theme - Day Light": "relaxed-theme-day-light.yaml", - "Relaxed Theme - Night Warm": "relaxed-theme-night-warm.yaml", + "Relaxed": "relaxed.yaml", + "Relaxed Theme - Semantic Focus (Relaxed Theme - Dark Focus)": "relaxed-theme-semantic-focus--relaxed-theme-dark-focus.yaml", + "Relaxed Theme - Semantic Focus (Relaxed Theme - Day Light)": "relaxed-theme-semantic-focus--relaxed-theme-day-light.yaml", + "Relaxed Theme - Semantic Focus (Relaxed Theme - Night Warm)": "relaxed-theme-semantic-focus--relaxed-theme-night-warm.yaml", "Remedy - Bright (Tilted)": "remedy-bright-tilted.yaml", "Remedy - Dark (Tilted)": "remedy-dark-tilted.yaml", - "Remedyish - Bright": "remedyish-bright.yaml", - "Remedyish - Dark": "remedyish-dark.yaml", + "Remedy (Remedy - Bright (Tilted))": "remedy-remedy-bright-tilted.yaml", + "Remedy (Remedy - Dark (Tilted))": "remedy-remedy-dark-tilted.yaml", + "Repl.it Theme": "repl-it-theme.yaml", "Replicant": "replicant.yaml", - "replt.it": "replt-it.yaml", "repoman-color-theme": "repoman-color-theme.yaml", - "Resknow Dark": "resknow-dark.yaml", + "resknow": "resknow.yaml", "RessGame-Advance-Coding-Theme": "ressgame-advance-coding-theme.yaml", "Retina": "retina.yaml", - "Retro": "retro.yaml", "Retro Cathode-Ray Minimal Theme": "retro-cathode-ray-minimal-theme.yaml", - "retro green": "retro-green.yaml", - "Retro Hacker Amber": "retro-hacker-amber.yaml", - "Retro Hacker Blue": "retro-hacker-blue.yaml", - "Retro Hacker Green": "retro-hacker-green.yaml", - "Retro Hacker Green - Subtle": "retro-hacker-green-subtle.yaml", - "Retro Hacker Magenta": "retro-hacker-magenta.yaml", - "Retro Keyboard Dark": "retro-keyboard-dark.yaml", - "Retro Keyboard Light": "retro-keyboard-light.yaml", + "Retro Green Theme": "retro-green-theme.yaml", + "Retro Hacker Theme (Retro Hacker Amber)": "retro-hacker-theme--retro-hacker-amber.yaml", + "Retro Hacker Theme (Retro Hacker Blue)": "retro-hacker-theme--retro-hacker-blue.yaml", + "Retro Hacker Theme (Retro Hacker Green - Subtle)": "retro-hacker-theme--retro-hacker-green-subtle.yaml", + "Retro Hacker Theme (Retro Hacker Green)": "retro-hacker-theme--retro-hacker-green.yaml", + "Retro Hacker Theme (Retro Hacker Magenta)": "retro-hacker-theme--retro-hacker-magenta.yaml", + "Retro Keyboard Theme (Retro Keyboard Dark)": "retro-keyboard-theme--retro-keyboard-dark.yaml", + "Retro Keyboard Theme (Retro Keyboard Light)": "retro-keyboard-theme--retro-keyboard-light.yaml", "Retro Pastel Color Theme": "retro-pastel-color-theme.yaml", "retro theme": "retro-theme.yaml", + "Retro Theme": "retro-theme.yaml", "Retro Vibes": "retro-vibes.yaml", - "Retro-Arcade": "retro-arcade.yaml", - "Retrocoders": "retrocoders.yaml", - "Retronica Amber Terminal": "retronica-amber-terminal.yaml", - "Retronica Neon Nights": "retronica-neon-nights.yaml", - "Retronica Pastel Arcade": "retronica-pastel-arcade.yaml", - "Retronica Phosphor Green": "retronica-phosphor-green.yaml", - "Retronica Vintage Computing": "retronica-vintage-computing.yaml", + "Retrocoders Dark Theme": "retrocoders-dark-theme.yaml", + "Retronica (Retronica Amber Terminal)": "retronica--retronica-amber-terminal.yaml", + "Retronica (Retronica Neon Nights)": "retronica--retronica-neon-nights.yaml", + "Retronica (Retronica Pastel Arcade)": "retronica--retronica-pastel-arcade.yaml", + "Retronica (Retronica Phosphor Green)": "retronica--retronica-phosphor-green.yaml", + "Retronica (Retronica Vintage Computing)": "retronica--retronica-vintage-computing.yaml", "RetroPuNK": "retropunk.yaml", + "retroscope": "retroscope.yaml", "Retroscope": "retroscope.yaml", + "RetroWave": "retrowave.yaml", + "retrox": "retrox.yaml", "Retrox": "retrox.yaml", - "ReUI": "reui.yaml", - "ReUI II Dark": "reui-ii-dark.yaml", - "ReUI Mirage": "reui-mirage.yaml", - "revelation": "revelation.yaml", - "revelation-contrast": "revelation-contrast.yaml", - "revelation-light": "revelation-light.yaml", - "reVisual_Assist-color-theme": "revisual-assist-color-theme.yaml", + "ReUI (ReUI II Dark)": "reui--reui-ii-dark.yaml", + "ReUI (ReUI Mirage)": "reui--reui-mirage.yaml", + "ReUI (ReUI)": "reui--reui.yaml", "ReVisualAssist": "revisualassist.yaml", - "rextax bright! - Fork": "rextax-bright-fork.yaml", "Rey ❤️": "rey.yaml", - "Rezaul360 - Professional Theme": "rezaul360-professional-theme.yaml", - "Rezaul360 - Simple as light": "rezaul360-simple-as-light.yaml", - "Rezaul360 Blue Velvet Theme": "rezaul360-blue-velvet-theme.yaml", - "RG htmllessons.io": "rg-htmllessons-io.yaml", + "Rhapsody Theme (Dark)": "rhapsody-theme--dark.yaml", "Rhodes Dark": "rhodes-dark.yaml", "Rhodes Light": "rhodes-light.yaml", "Rhodium Dark": "rhodium-dark.yaml", "Rich Black, no highlighting": "rich-black-no-highlighting.yaml", "rich-black-theme": "rich-black-theme.yaml", - "Rider": "rider.yaml", "Rider Dark (Darcula)": "rider-dark-darcula.yaml", "Rider Dark (New UI)": "rider-dark-new-ui.yaml", "Rider Melon Night": "rider-melon-night.yaml", "Rigel": "rigel.yaml", + "Rik": "rik.yaml", "Rimber": "rimber.yaml", "Riskified Dark": "riskified-dark.yaml", - "Rito": "rito.yaml", + "Rito Dark Italic": "rito-dark-italic.yaml", "Rivendell": "rivendell.yaml", "Riviera theme": "riviera-theme.yaml", "Rizz Focused": "rizz-focused.yaml", "Rizz Neutral": "rizz-neutral.yaml", "Rm Dark Theme": "rm-dark-theme.yaml", - "rmondesilva-contrast": "rmondesilva-contrast.yaml", + "rmondesilva": "rmondesilva.yaml", "Roblox-Stylized Dark Theme": "roblox-stylized-dark-theme.yaml", "RoboDark": "robodark.yaml", "robolaunch": "robolaunch.yaml", - "Robot Framework Material Dark": "robot-framework-material-dark.yaml", + "Robolaunch": "robolaunch.yaml", + "Robot Framework Pro": "robot-framework-pro.yaml", "Rocinante": "rocinante.yaml", - "RockLee": "rocklee.yaml", + "Rock dark": "rock-dark.yaml", "Rocko's Modern Theme": "rocko-s-modern-theme.yaml", - "ROG Theme V1.1 Dark Alpha - Syntax Test": "rog-theme-v1-1-dark-alpha-syntax-test.yaml", - "Rogue Squadron": "rogue-squadron.yaml", - "ROHIT": "rohit.yaml", + "ROG Theme V1 Dark": "rog-theme-v1-dark.yaml", "Rohit-Kudalkar-Dark-Theme": "rohit-kudalkar-dark-theme.yaml", - "Ronin": "ronin.yaml", - "Ronin Darker": "ronin-darker.yaml", - "Root Bear": "root-bear.yaml", - "Rose Paradise": "rose-paradise.yaml", - "Rosé Pine": "ros-pine.yaml", - "Rosé Pine (no italics)": "ros-pine-no-italics.yaml", - "Rosé Pine Dawn (no italics)": "ros-pine-dawn-no-italics.yaml", - "Rosé Pine Moon": "ros-pine-moon.yaml", + "Ronin (Ronin Darker)": "ronin--ronin-darker.yaml", + "Ronin (Ronin)": "ronin--ronin.yaml", + "Rosé Pine (Rosé Pine Dawn)": "ros-pine--ros-pine-dawn.yaml", + "Rosé Pine (Rosé Pine Moon)": "ros-pine--ros-pine-moon.yaml", + "Rosé Pine (Rosé Pine)": "ros-pine--ros-pine.yaml", + "Rosé Pine Burnt": "ros-pine-burnt.yaml", + "Rose Pine NvChad VsCode Theme": "rose-pine-nvchad-vscode-theme.yaml", "Rosefall Black": "rosefall-black.yaml", "Rosefall Midnight": "rosefall-midnight.yaml", "Roselia": "roselia.yaml", "Roselia - Orbital Eden Pastel": "roselia-orbital-eden-pastel.yaml", - "Rouge": "rouge.yaml", + "Roselia Theme (Roselia)": "roselia-theme--roselia.yaml", + "Rouge Theme (Rouge)": "rouge-theme--rouge.yaml", "Roxo theme": "roxo-theme.yaml", + "RoxoTema": "roxotema.yaml", "Royal": "royal.yaml", "Royal - Fork": "royal-fork.yaml", "Royal Darker Theme": "royal-darker-theme.yaml", @@ -5778,70 +6382,70 @@ "Rui Cobalt": "rui-cobalt.yaml", "Rui Sapphire": "rui-sapphire.yaml", "Rumba Dark": "rumba-dark.yaml", - "Runic Minimal": "runic-minimal.yaml", + "Runic Theme (Runic Minimal)": "runic-theme--runic-minimal.yaml", "Running Wires": "running-wires.yaml", "ruru marijuana": "ruru-marijuana.yaml", "ruru moon": "ruru-moon.yaml", "Rust & Brown": "rust-brown.yaml", + "rustacean": "rustacean.yaml", "Rustacean": "rustacean.yaml", "Rusty": "rusty.yaml", "ryb": "ryb.yaml", "rypjaws": "rypjaws.yaml", - "s-kill": "s-kill.yaml", + "Ryuk'sTheme": "ryuk-stheme.yaml", "S-Kill": "s-kill.yaml", "sabbir - theme - 3": "sabbir-theme-3.yaml", "sacred": "sacred.yaml", "Sadhu": "sadhu.yaml", "Safari Midnight": "safari-midnight.yaml", "safe dark theme": "safe-dark-theme.yaml", - "safira": "safira.yaml", - "Saga - Nordic v1.2": "saga-nordic-v1-2.yaml", - "Saga - Oceania v1.2": "saga-oceania-v1-2.yaml", + "Safira Theme": "safira-theme.yaml", + "Saga Theme (Saga - Nordic v1.2)": "saga-theme--saga-nordic-v1-2.yaml", + "Saga Theme (Saga - Oceania v1.2)": "saga-theme--saga-oceania-v1-2.yaml", "Sage": "sage.yaml", + "Sage of Light Theme": "sage-of-light-theme.yaml", "Sage Professional": "sage-professional.yaml", "Sage Siren Theme": "sage-siren-theme.yaml", - "sage-of-light-color-theme": "sage-of-light-color-theme.yaml", - "sailor-at-sea": "sailor-at-sea.yaml", "Sakai Theme Jupiter": "sakai-theme-jupiter.yaml", "Sakai Theme Moon": "sakai-theme-moon.yaml", "Sakai Theme Saturn": "sakai-theme-saturn.yaml", "sakura": "sakura.yaml", "Sakura": "sakura.yaml", - "Sakura Blossom Midnight": "sakura-blossom-midnight.yaml", - "Sakura Dreams": "sakura-dreams.yaml", - "Sakura Dreams Dark": "sakura-dreams-dark.yaml", - "Sakura Theme": "sakura-theme.yaml", + "Sakura Blossom": "sakura-blossom.yaml", + "sakura sun": "sakura-sun.yaml", "Sakura V2 By LeRoiAdib": "sakura-v2-by-leroiadib.yaml", - "sakura-blossom-theme": "sakura-blossom-theme.yaml", + "Sakura X (Kuro Sakura)": "sakura-x--kuro-sakura.yaml", + "Sakura X (Shiro Sakura (Light)": "sakura-x--shiro-sakura-light.yaml", "sakura-theme": "sakura-theme.yaml", - "Sakya Dorje": "sakya-dorje.yaml", + "Sakya Theme": "sakya-theme.yaml", + "samacaca": "samacaca.yaml", "Samacaca": "samacaca.yaml", "samgido-theme-dark": "samgido-theme-dark.yaml", - "Samito Nest Theme": "samito-nest-theme.yaml", "Samito Nest-GraphQL Theme": "samito-nest-graphql-theme.yaml", "Samito Next Theme": "samito-next-theme.yaml", - "Samurai": "samurai.yaml", + "samito-nest-theme-vscode": "samito-nest-theme-vscode.yaml", + "Samurai (Samurai)": "samurai--samurai.yaml", "Samyak Bumb": "samyak-bumb.yaml", + "Sanam Dark Pro": "sanam-dark-pro.yaml", "sanam-dark-pro": "sanam-dark-pro.yaml", - "Sandcastle": "sandcastle.yaml", + "Sandcastle Theme": "sandcastle-theme.yaml", "sanded": "sanded.yaml", + "Sanded": "sanded.yaml", "SandStorm": "sandstorm.yaml", - "Sanemi Shinazugawa": "sanemi-shinazugawa.yaml", - "Sanrio": "sanrio.yaml", "São Paulo Night": "s-o-paulo-night.yaml", "sapporo": "sapporo.yaml", "Saransk Night": "saransk-night.yaml", "Saraswati - Cool Light Theme": "saraswati-cool-light-theme.yaml", "Sarcastic White": "sarcastic-white.yaml", "sargam": "sargam.yaml", - "satoru-gojo-blue": "satoru-gojo-blue.yaml", - "satoru-gojo-white": "satoru-gojo-white.yaml", + "Satoru-Gojo-theme (satoru-gojo-blue)": "satoru-gojo-theme--satoru-gojo-blue.yaml", + "Satoru-Gojo-theme (satoru-gojo-white)": "satoru-gojo-theme--satoru-gojo-white.yaml", "Satoshi Nakamoto Theme": "satoshi-nakamoto-theme.yaml", "Satsoomahhh": "satsoomahhh.yaml", "Satu": "satu.yaml", "Saturated Dark Terminal": "saturated-dark-terminal.yaml", "Saturn Moonlight": "saturn-moonlight.yaml", - "saturnblue-dark": "saturnblue-dark.yaml", + "saturn-darkblue": "saturn-darkblue.yaml", "Sauna Theme": "sauna-theme.yaml", "saunf": "saunf.yaml", "Sauve": "sauve.yaml", @@ -5849,7 +6453,6 @@ "Savannah Sunset": "savannah-sunset.yaml", "Save My Eyes": "save-my-eyes.yaml", "savetemin": "savetemin.yaml", - "sazardev": "sazardev.yaml", "scarlet": "scarlet.yaml", "Scarlet Witch (Dark)": "scarlet-witch-dark.yaml", "Scarlet Witch (Light)": "scarlet-witch-light.yaml", @@ -5857,18 +6460,17 @@ "Sceanic - Dark Gray": "sceanic-dark-gray.yaml", "Sceanic - Gray": "sceanic-gray.yaml", "schoero-dark": "schoero-dark.yaml", - "SchoolTheme": "schooltheme.yaml", "Schwifty": "schwifty.yaml", "Schwifty Atom One Dark": "schwifty-atom-one-dark.yaml", "Schwifty One Dark": "schwifty-one-dark.yaml", "scooby-dooby-dark": "scooby-dooby-dark.yaml", - "scorch": "scorch.yaml", - "scorch-contrast": "scorch-contrast.yaml", - "scorch-light": "scorch-light.yaml", "Scorpion Theme": "scorpion-theme.yaml", "Scuba": "scuba.yaml", - "Sea Glass": "sea-glass.yaml", + "SCY-Theme": "scy-theme.yaml", + "SD_DEEP_PURPLE_THEME": "sd-deep-purple-theme.yaml", + "Sea Glass Theme": "sea-glass-theme.yaml", "Sea Urchin": "sea-urchin.yaml", + "seabird": "seabird.yaml", "Seabrook Dark - Italic": "seabrook-dark-italic.yaml", "Seabrook Light - Italic": "seabrook-light-italic.yaml", "Seaci Base": "seaci-base.yaml", @@ -5877,7 +6479,7 @@ "Seafoam": "seafoam.yaml", "seagull": "seagull.yaml", "Sebostien Theme": "sebostien-theme.yaml", - "Secret Spring": "secret-spring.yaml", + "secretspring": "secretspring.yaml", "Section 9": "section-9.yaml", "Section 9 - Hacker": "section-9-hacker.yaml", "Section 9 - Major": "section-9-major.yaml", @@ -5889,48 +6491,48 @@ "seekode light": "seekode-light.yaml", "SeilaColor": "seilacolor.yaml", "SeilaColor 2": "seilacolor-2.yaml", - "Selene Selenized Dark": "selene-selenized-dark.yaml", - "Selene Selenized Light": "selene-selenized-light.yaml", - "selenitic-color-theme": "selenitic-color-theme.yaml", "sema": "sema.yaml", - "Semantic Noctis Lux": "semantic-noctis-lux.yaml", + "Semantic Noctis (Semantic Noctis Lux)": "semantic-noctis--semantic-noctis-lux.yaml", "semi dark theme in yellow": "semi-dark-theme-in-yellow.yaml", + "Semi dark theme in yellow": "semi-dark-theme-in-yellow.yaml", + "Senbonzakura": "senbonzakura.yaml", "SenerDark Pro – Blue-Gray": "senerdark-pro-blue-gray.yaml", "SenerDark Pro – Deep Gray": "senerdark-pro-deep-gray.yaml", "Senkorange": "senkorange.yaml", - "Senna Dark Black Theme": "senna-dark-black-theme.yaml", + "Senna Theme": "senna-theme.yaml", "Seoul Dancheong": "seoul-dancheong.yaml", "Seoul Morning": "seoul-morning.yaml", "Seoul Night": "seoul-night.yaml", - "September Dark Theme": "september-dark-theme.yaml", - "Sequoia Monochrome": "sequoia-monochrome.yaml", - "Sequoia Moonlight": "sequoia-moonlight.yaml", - "Sequoia Retro": "sequoia-retro.yaml", + "Sequoia (Sequoia Monochrome)": "sequoia--sequoia-monochrome.yaml", + "Sequoia (Sequoia Moonlight)": "sequoia--sequoia-moonlight.yaml", + "Sequoia (Sequoia Retro)": "sequoia--sequoia-retro.yaml", "Seral Dark (GitHub × Stripe)": "seral-dark-github-stripe.yaml", "Seral Light (GitHub × Stripe)": "seral-light-github-stripe.yaml", "Serein Dark": "serein-dark.yaml", "Serein Dark Soft": "serein-dark-soft.yaml", "Serein Light": "serein-light.yaml", "Serein Light Soft": "serein-light-soft.yaml", - "Serendipity Midnight": "serendipity-midnight.yaml", - "Serendipity Midnight Electric": "serendipity-midnight-electric.yaml", - "Serendipity Midnight V1": "serendipity-midnight-v1.yaml", - "Serendipity Morning": "serendipity-morning.yaml", - "Serendipity Morning V1": "serendipity-morning-v1.yaml", - "Serendipity Sunset": "serendipity-sunset.yaml", - "Serendipity Sunset V1": "serendipity-sunset-v1.yaml", + "Serendipity (Serendipity Midnight Electric)": "serendipity--serendipity-midnight-electric.yaml", + "Serendipity (Serendipity Midnight)": "serendipity--serendipity-midnight.yaml", + "Serendipity (Serendipity Morning)": "serendipity--serendipity-morning.yaml", + "Serendipity (Serendipity Sunset)": "serendipity--serendipity-sunset.yaml", + "Serendipity V1 (Serendipity Midnight V1)": "serendipity-v1--serendipity-midnight-v1.yaml", + "Serendipity V1 (Serendipity Morning V1)": "serendipity-v1--serendipity-morning-v1.yaml", + "Serendipity V1 (Serendipity Sunset V1)": "serendipity-v1--serendipity-sunset-v1.yaml", "Serene": "serene.yaml", "Serene Dawn": "serene-dawn.yaml", "Serenity Light": "serenity-light.yaml", "Serenity Moon": "serenity-moon.yaml", "Serenity Noir": "serenity-noir.yaml", - "service": "service.yaml", - "service-contrast": "service-contrast.yaml", - "service-light": "service-light.yaml", + "Set": "set.yaml", + "seti": "seti.yaml", "Seti": "seti.yaml", + "Seti_UX": "seti-ux.yaml", "seti-classic-vscode": "seti-classic-vscode.yaml", + "Sevastolink": "sevastolink.yaml", "Sewayaki Dark": "sewayaki-dark.yaml", "shaan's": "shaan-s.yaml", + "Shaan's": "shaan-s.yaml", "Shaant Shakti": "shaant-shakti.yaml", "Shaant Shakti: Mystic Roast": "shaant-shakti-mystic-roast.yaml", "Shaant Shakti: Sand Storm": "shaant-shakti-sand-storm.yaml", @@ -5956,20 +6558,37 @@ "Shaddy LightA": "shaddy-lighta.yaml", "Shade Theme": "shade-theme.yaml", "Shades": "shades.yaml", + "Shades (24)": "shades--24.yaml", + "Shades (Minimal)": "shades--minimal.yaml", + "Shades (Neutral)": "shades--neutral.yaml", + "Shades (Shades)": "shades--shades.yaml", + "Shades of Blue": "shades-of-blue.yaml", "Shades of Cyan theme": "shades-of-cyan-theme.yaml", "Shades Of Gravy": "shades-of-gravy.yaml", - "Shades of Life": "shades-of-life.yaml", - "Shades of Life (Light)": "shades-of-life-light.yaml", + "Shades of Green": "shades-of-green.yaml", + "shades of midnight blue dark theme": "shades-of-midnight-blue-dark-theme.yaml", "Shades of Midnight Blue dark theme": "shades-of-midnight-blue-dark-theme.yaml", + "Shades Of Stoicism (Shades)": "shades-of-stoicism--shades.yaml", + "Shades of Violet": "shades-of-violet.yaml", "Shades-Of-Blue": "shades-of-blue.yaml", + "shades-of-life (Shades of Life (Light))": "shades-of-life-shades-of-life-light.yaml", + "shades-of-life (Shades of Life)": "shades-of-life--shades-of-life.yaml", "shades-of-violet": "shades-of-violet.yaml", - "Shadowborn": "shadowborn.yaml", + "Shadowborn Theme for VSCode": "shadowborn-theme-for-vscode.yaml", + "ShadowDev": "shadowdev.yaml", "Shadowscape": "shadowscape.yaml", - "ShadowSpectrum": "shadowspectrum.yaml", - "Shale": "shale.yaml", + "Shale Theme (Nord)": "shale-theme--nord.yaml", "Shamrock": "shamrock.yaml", - "Sharkdark Theme": "sharkdark-theme.yaml", + "Shark Artist: Great White Theme (Great White (Bloodloss))": "shark-artist-great-white-theme-great-white-bloodloss.yaml", + "Shark Artist: Great White Theme (Great White (Dark))": "shark-artist-great-white-theme-great-white-dark.yaml", + "Shark Artist: Great White Theme (Great White (Frost))": "shark-artist-great-white-theme-great-white-frost.yaml", + "Shark Artist: Great White Theme (Great White (High Contrast Dark))": "shark-artist-great-white-theme-great-white-high-contrast-dark.yaml", + "Shark Artist: Great White Theme (Great White (High Contrast Light))": "shark-artist-great-white-theme-great-white-high-contrast-light.yaml", + "Shark Artist: Great White Theme (Great White (Light))": "shark-artist-great-white-theme-great-white-light.yaml", + "Shark Artist: Great White Theme (Great White (Storm))": "shark-artist-great-white-theme-great-white-storm.yaml", + "Sharkdark": "sharkdark.yaml", "SharpBlue": "sharpblue.yaml", + "shaughnessy-nanite-theme": "shaughnessy-nanite-theme.yaml", "Shaughnessy-Nanite-Theme": "shaughnessy-nanite-theme.yaml", "Sheme": "sheme.yaml", "ShibaInu Dark": "shibainu-dark.yaml", @@ -5978,19 +6597,18 @@ "shiina": "shiina.yaml", "Shinjuku": "shinjuku.yaml", "Shinkai": "shinkai.yaml", - "Shinobu Kocho": "shinobu-kocho.yaml", "Shion": "shion.yaml", - "SHIP-dark": "ship-dark.yaml", - "SHIP-light": "ship-light.yaml", - "Shiro Sakura (Light": "shiro-sakura-light.yaml", + "Ship at Sea": "ship-at-sea.yaml", + "SHIP-AI (SHIP-dark)": "ship-ai--ship-dark.yaml", + "SHIP-AI (SHIP-light)": "ship-ai--ship-light.yaml", + "SHIP.AI (SHIP-dark)": "ship-ai--ship-dark.yaml", + "SHIP.AI (SHIP-light)": "ship-ai--ship-light.yaml", "shirotelin": "shirotelin.yaml", "shiv-vscode-theme": "shiv-vscode-theme.yaml", - "SHIVAM": "shivam.yaml", + "Shiva": "shiva.yaml", "shoxwave": "shoxwave.yaml", - "shrek": "shrek.yaml", "Shrek": "shrek.yaml", - "shrek-contrast": "shrek-contrast.yaml", - "shrek-light": "shrek-light.yaml", + "shrekk": "shrekk.yaml", "Shuri Midnight": "shuri-midnight.yaml", "ShuviTheme": "shuvitheme.yaml", "shydl3": "shydl3.yaml", @@ -6001,20 +6619,23 @@ "sign-theme-v3": "sign-theme-v3.yaml", "sign-theme-v4": "sign-theme-v4.yaml", "siksnis.dev": "siksnis-dev.yaml", + "Silent Code Dark": "silent-code-dark.yaml", "silent-code": "silent-code.yaml", "Silicon Dark": "silicon-dark.yaml", - "Silk-Petal": "silk-petal.yaml", "SILO": "silo.yaml", "Silot (Dark Classic)": "silot-dark-classic.yaml", "Silvermist": "silvermist.yaml", "Silverwolf": "silverwolf.yaml", + "simble": "simble.yaml", "Simble": "simble.yaml", + "Simen Theme (word-color-theme)": "simen-theme--word-color-theme.yaml", + "simple 3000": "simple-3000.yaml", "Simple Muted - Dark": "simple-muted-dark.yaml", "Simple Muted - Light": "simple-muted-light.yaml", "Simple Red Dark": "simple-red-dark.yaml", + "Simple Theme (Simple Theme)": "simple-theme--simple-theme.yaml", "simple-3000": "simple-3000.yaml", "simple-calm-dark": "simple-calm-dark.yaml", - "SimpleDark": "simpledark.yaml", "Sinequanone Acid": "sinequanone-acid.yaml", "Sinequanone Apple": "sinequanone-apple.yaml", "Sinequanone Brighton": "sinequanone-brighton.yaml", @@ -6022,21 +6643,22 @@ "Sinequanone Noir": "sinequanone-noir.yaml", "Sinequanone Sunset": "sinequanone-sunset.yaml", "SinergyExt": "sinergyext.yaml", - "Sirius-Astral": "sirius-astral.yaml", - "Sirius-Glow": "sirius-glow.yaml", - "Sirius-Nebula": "sirius-nebula.yaml", - "Sirius-Pulsar": "sirius-pulsar.yaml", - "Sirius-Vesper": "sirius-vesper.yaml", - "Sirius-Vibe": "sirius-vibe.yaml", - "Sirius-Vortex": "sirius-vortex.yaml", - "Sirius-Zenith": "sirius-zenith.yaml", + "Sirius Themes (Sirius-Astral)": "sirius-themes--sirius-astral.yaml", + "Sirius Themes (Sirius-Glow)": "sirius-themes--sirius-glow.yaml", + "Sirius Themes (Sirius-Nebula)": "sirius-themes--sirius-nebula.yaml", + "Sirius Themes (Sirius-Pulsar)": "sirius-themes--sirius-pulsar.yaml", + "Sirius Themes (Sirius-Vesper)": "sirius-themes--sirius-vesper.yaml", + "Sirius Themes (Sirius-Vibe)": "sirius-themes--sirius-vibe.yaml", + "Sirius Themes (Sirius-Vortex)": "sirius-themes--sirius-vortex.yaml", + "Sirius Themes (Sirius-Zenith)": "sirius-themes--sirius-zenith.yaml", "Sissi_Ga": "sissi-ga.yaml", "sith": "sith.yaml", "Sizo Purple": "sizo-purple.yaml", "SJ Pinkish Theme": "sj-pinkish-theme.yaml", "SJ Theme": "sj-theme.yaml", - "sk5s-vsgt": "sk5s-vsgt.yaml", + "sk5s vs green theme": "sk5s-vs-green-theme.yaml", "SkeletorTheme": "skeletortheme.yaml", + "Skill (s-kill)": "skill--s-kill.yaml", "Sky At Night": "sky-at-night.yaml", "Sky Blue - Tranquility & Focus": "sky-blue-tranquility-focus.yaml", "sky-miami-vice": "sky-miami-vice.yaml", @@ -6045,35 +6667,54 @@ "Skye-wind": "skye-wind.yaml", "Skye-wind-light": "skye-wind-light.yaml", "Skyline": "skyline.yaml", - "Slack Theme Aubergine Dark": "slack-theme-aubergine-dark.yaml", - "Slack Theme Aubergine New": "slack-theme-aubergine-new.yaml", - "Slack Theme Dark": "slack-theme-dark.yaml", - "Slack Theme Hoth": "slack-theme-hoth.yaml", - "slack-theme": "slack-theme.yaml", - "slate": "slate.yaml", + "SLab Theme : Special Edition (Dracula)": "slab-theme-special-edition--dracula.yaml", + "SLab Theme (2077)": "slab-theme--2077.yaml", + "SLab Theme (Arctis Dark - No Italics)": "slab-theme--arctis-dark-no-italics.yaml", + "SLab Theme (Arctis Dark)": "slab-theme--arctis-dark.yaml", + "SLab Theme (FireFly)": "slab-theme--firefly.yaml", + "SLab Theme (Green Hacker)": "slab-theme--green-hacker.yaml", + "SLab Theme (Karma)": "slab-theme--karma.yaml", + "SLab Theme (mars)": "slab-theme--mars.yaml", + "SLab Theme (Material-Theme-Darker-High-Contrast)": "slab-theme--material-theme-darker-high-contrast.yaml", + "SLab Theme (Material-Theme-Darker)": "slab-theme--material-theme-darker.yaml", + "SLab Theme (Material-Theme-Deepforest)": "slab-theme--material-theme-deepforest.yaml", + "SLab Theme (Material-Theme-Default)": "slab-theme--material-theme-default.yaml", + "SLab Theme (Material-Theme-Lighter-High-Contrast)": "slab-theme--material-theme-lighter-high-contrast.yaml", + "SLab Theme (Material-Theme-Lighter)": "slab-theme--material-theme-lighter.yaml", + "SLab Theme (Material-Theme-Ocean)": "slab-theme--material-theme-ocean.yaml", + "SLab Theme (Material-Theme-Palenight)": "slab-theme--material-theme-palenight.yaml", + "SLab Theme (Midnight Pastel)": "slab-theme--midnight-pastel.yaml", + "SLab Theme (Monokai++ Unified)": "slab-theme--monokai-unified.yaml", + "SLab Theme (Moonlight II)": "slab-theme--moonlight-ii.yaml", + "SLab Theme (Moonlight)": "slab-theme--moonlight.yaml", + "SLab Theme (P. \\ Yesterday)": "slab-theme--p-yesterday.yaml", + "Slack Theme (Slack Theme Aubergine Dark)": "slack-theme--slack-theme-aubergine-dark.yaml", + "Slack Theme (Slack Theme Aubergine New)": "slack-theme--slack-theme-aubergine-new.yaml", + "Slack Theme (Slack Theme Dark)": "slack-theme--slack-theme-dark.yaml", + "Slack Theme (Slack Theme Hoth)": "slack-theme--slack-theme-hoth.yaml", + "Slack Theme (slack-theme)": "slack-theme--slack-theme.yaml", "Slate Black": "slate-black.yaml", "Slate Blackish": "slate-blackish.yaml", - "Slate Blue": "slate-blue.yaml", "Slate Gray": "slate-gray.yaml", "Slate Neon": "slate-neon.yaml", - "slate-contrast": "slate-contrast.yaml", - "slate-light": "slate-light.yaml", + "SlateBlues": "slateblues.yaml", "Sleepy Nights": "sleepy-nights.yaml", "Sleepy Owl - Default (Beta)": "sleepy-owl-default-beta.yaml", "Sleepy Owl - Greenwich (Beta)": "sleepy-owl-greenwich-beta.yaml", "Sleepy Owl - Oak (Beta)": "sleepy-owl-oak-beta.yaml", + "sleepy-nights": "sleepy-nights.yaml", "slime": "slime.yaml", "Slime": "slime.yaml", + "Slime Solid Theme": "slime-solid-theme.yaml", + "Slime Theme": "slime-theme.yaml", "slime-color-theme": "slime-color-theme.yaml", - "slime-contrast": "slime-contrast.yaml", - "slime-light": "slime-light.yaml", - "slime-solid-color-theme": "slime-solid-color-theme.yaml", "Slimy": "slimy.yaml", "Slimy (high-contrast)": "slimy-high-contrast.yaml", "Slimy (light)": "slimy-light.yaml", "slinkwave": "slinkwave.yaml", "sloth-highlander-theme-1": "sloth-highlander-theme-1.yaml", "sloth-highlander-theme-3": "sloth-highlander-theme-3.yaml", + "slumbersage": "slumbersage.yaml", "SmallTheme Carbon OLED": "smalltheme-carbon-oled.yaml", "smettboi-light": "smettboi-light.yaml", "Smit Amber Monochrome": "smit-amber-monochrome.yaml", @@ -6096,111 +6737,103 @@ "Smit Sunset Orange": "smit-sunset-orange.yaml", "Smit Synthwave": "smit-synthwave.yaml", "Smithy Iron": "smithy-iron.yaml", - "Smoldering-Ember": "smoldering-ember.yaml", - "Smooth (dark)": "smooth-dark.yaml", - "Smooth (light)": "smooth-light.yaml", - "Smooth Burn Dark": "smooth-burn-dark.yaml", - "Smooth Burn Dark Hard": "smooth-burn-dark-hard.yaml", - "Smooth Burn Dark Medium": "smooth-burn-dark-medium.yaml", - "Smooth Burn Light Hard": "smooth-burn-light-hard.yaml", + "Smooth Theme (Smooth (dark))": "smooth-theme-smooth-dark.yaml", + "Smooth Theme (Smooth (light))": "smooth-theme-smooth-light.yaml", + "SmoothBurn (Smooth Burn Dark Hard)": "smoothburn--smooth-burn-dark-hard.yaml", + "SmoothBurn (Smooth Burn Dark Medium)": "smoothburn--smooth-burn-dark-medium.yaml", + "SmoothBurn (Smooth Burn Dark)": "smoothburn--smooth-burn-dark.yaml", + "SmoothBurn (Smooth Burn Light Hard)": "smoothburn--smooth-burn-light-hard.yaml", "Smoothity Dark": "smoothity-dark.yaml", "SmoothTheme": "smooththeme.yaml", - "Snakedye Chocolate": "snakedye-chocolate.yaml", "snap light": "snap-light.yaml", - "Snappier": "snappier.yaml", - "snappy-contrast": "snappy-contrast.yaml", - "snappy-light": "snappy-light.yaml", - "Snazzy": "snazzy.yaml", "Snazzy Light": "snazzy-light.yaml", - "Snazzy Operator Natural": "snazzy-operator-natural.yaml", + "Snazzy Operator": "snazzy-operator.yaml", + "Snazzy Operator Softer": "snazzy-operator-softer.yaml", + "Snazzy Plus": "snazzy-plus.yaml", "Snazzy Solaris": "snazzy-solaris.yaml", - "Snazzy vs theme": "snazzy-vs-theme.yaml", - "snazzy-operator-color-theme": "snazzy-operator-color-theme.yaml", "snazzy-operator-color-theme-dark": "snazzy-operator-color-theme-dark.yaml", - "snazzy-operator-color-theme-italics": "snazzy-operator-color-theme-italics.yaml", "Snazzyfied": "snazzyfied.yaml", - "snow theme": "snow-theme.yaml", - "Snowflake-Dark-Theme": "snowflake-dark-theme.yaml", - "Snowflake-Darker-Theme": "snowflake-darker-theme.yaml", + "Snowflake Dark Theme (Snowflake-Dark-Theme)": "snowflake-dark-theme--snowflake-dark-theme.yaml", + "Snowflake Dark Theme (Snowflake-Darker-Theme)": "snowflake-dark-theme--snowflake-darker-theme.yaml", "Snoword Dark": "snoword-dark.yaml", "Snoword Dark Soft": "snoword-dark-soft.yaml", "Snoword Light": "snoword-light.yaml", "Snoword Light Soft": "snoword-light-soft.yaml", "Snowpiercer": "snowpiercer.yaml", "sober": "sober.yaml", - "Sober": "sober.yaml", "Sober Afternoon": "sober-afternoon.yaml", "Sober Deepnight": "sober-deepnight.yaml", "Sober Midnight": "sober-midnight.yaml", - "sobrio": "sobrio.yaml", - "sobrio-light": "sobrio-light.yaml", - "SOCT-color-theme": "soct-color-theme.yaml", + "SoberTheme (Sober)": "sobertheme--sober.yaml", + "Sobrio (sobrio-light)": "sobrio--sobrio-light.yaml", + "Sobrio (sobrio)": "sobrio--sobrio.yaml", + "SOCT": "soct.yaml", + "soda": "soda.yaml", "Soda": "soda.yaml", + "Soft Color Theme (Soft Dark)": "soft-color-theme--soft-dark.yaml", + "Soft Color Theme (Soft Light)": "soft-color-theme--soft-light.yaml", "Soft Colors": "soft-colors.yaml", - "Soft Dark": "soft-dark.yaml", "soft era": "soft-era.yaml", - "soft kawaii theme 1-color-theme": "soft-kawaii-theme-1-color-theme.yaml", - "Soft Light": "soft-light.yaml", "Soft Material": "soft-material.yaml", "Soft Midnight": "soft-midnight.yaml", "Soft Mood Theme": "soft-mood-theme.yaml", "soft sight": "soft-sight.yaml", "Soft Sunset Dark": "soft-sunset-dark.yaml", "Soft Yellow Light": "soft-yellow-light.yaml", + "Soft-in-black": "soft-in-black.yaml", + "soft-Kawaii-Theme": "soft-kawaii-theme.yaml", + "SoftDark": "softdark.yaml", "softie-theme": "softie-theme.yaml", - "soho-color-theme": "soho-color-theme.yaml", + "Soho Theme": "soho-theme.yaml", "Soil Theme": "soil-theme.yaml", "Solar Drift Dark Theme": "solar-drift-dark-theme.yaml", "Solar Drift Darker Theme": "solar-drift-darker-theme.yaml", "Solar Flare": "solar-flare.yaml", "Solar Future": "solar-future.yaml", - "Solar-Flare": "solar-flare.yaml", - "solarflare": "solarflare.yaml", - "solarflare-contrast": "solarflare-contrast.yaml", - "solarflare-light": "solarflare-light.yaml", + "Solar Right Theme": "solar-right-theme.yaml", + "Solara": "solara.yaml", "Solaris": "solaris.yaml", - "Solarized (dark)": "solarized-dark.yaml", - "Solarized (light)": "solarized-light.yaml", + "Solarized": "solarized.yaml", + "Solarized & Selenized (Helios Solarized Dark)": "solarized-selenized--helios-solarized-dark.yaml", + "Solarized & Selenized (Helios Solarized Light)": "solarized-selenized--helios-solarized-light.yaml", + "Solarized & Selenized (Selene Selenized Dark)": "solarized-selenized--selene-selenized-dark.yaml", + "Solarized & Selenized (Selene Selenized Light)": "solarized-selenized--selene-selenized-light.yaml", "Solarized Complete (Dark)": "solarized-complete-dark.yaml", "Solarized Complete (Light)": "solarized-complete-light.yaml", "Solarized Custom (Dark)": "solarized-custom-dark.yaml", "Solarized Custom (Light)": "solarized-custom-light.yaml", - "Solarized Dark Theme": "solarized-dark-theme.yaml", "Solarized Deep": "solarized-deep.yaml", + "Solarized Light Enhanced": "solarized-light-enhanced.yaml", "Solarized Light N": "solarized-light-n.yaml", - "Solarized Lilac": "solarized-lilac.yaml", - "Solarized Monokai (dark)": "solarized-monokai-dark.yaml", - "Solarized Neue": "solarized-neue.yaml", - "Solarized Neue Bright": "solarized-neue-bright.yaml", + "Solarized Monokai (Dark)": "solarized-monokai--dark.yaml", + "Solarized Neue & Yuki (Solarized Lilac)": "solarized-neue-yuki--solarized-lilac.yaml", + "Solarized Neue & Yuki (Solarized Neue Bright)": "solarized-neue-yuki--solarized-neue-bright.yaml", + "Solarized Neue & Yuki (Solarized Neue)": "solarized-neue-yuki--solarized-neue.yaml", + "Solarized Neue & Yuki (Solarized Yuki)": "solarized-neue-yuki--solarized-yuki.yaml", "Solarized Next": "solarized-next.yaml", + "Solarized Next+": "solarized-next.yaml", "Solarized Pro": "solarized-pro.yaml", "Solarized Right": "solarized-right.yaml", "Solarized SS Light": "solarized-ss-light.yaml", - "Solarized Yuki": "solarized-yuki.yaml", "Solarized-light-functional": "solarized-light-functional.yaml", "solarized-simon": "solarized-simon.yaml", "Solarized+": "solarized.yaml", "Solarus": "solarus.yaml", "solaryss": "solaryss.yaml", - "Solavsce packagera": "solavsce-packagera.yaml", "Solid_Dark_theme": "solid-dark-theme.yaml", - "solitude-dark": "solitude-dark.yaml", - "solitude-soft": "solitude-soft.yaml", - "Solo Leveling": "solo-leveling.yaml", - "Solstice Estival": "solstice-estival.yaml", - "Solstice Hibernal": "solstice-hibernal.yaml", - "Solstice-Heat": "solstice-heat.yaml", + "Solitude Color Theme (solitude-dark)": "solitude-color-theme--solitude-dark.yaml", + "Solitude Color Theme (solitude-soft)": "solitude-color-theme--solitude-soft.yaml", + "Solo Leveling Theme": "solo-leveling-theme.yaml", "Somber": "somber.yaml", "Something Different": "something-different.yaml", "Something Theme": "something-theme.yaml", "somewhere on a beach...": "somewhere-on-a-beach.yaml", - "Sonic-Pulse": "sonic-pulse.yaml", - "Sonokai": "sonokai.yaml", - "Sonokai Andromeda": "sonokai-andromeda.yaml", - "Sonokai Atlantis": "sonokai-atlantis.yaml", - "Sonokai Espresso": "sonokai-espresso.yaml", - "Sonokai Maia": "sonokai-maia.yaml", - "Sonokai Shusia": "sonokai-shusia.yaml", + "Sonokai (Sonokai Andromeda)": "sonokai--sonokai-andromeda.yaml", + "Sonokai (Sonokai Atlantis)": "sonokai--sonokai-atlantis.yaml", + "Sonokai (Sonokai Espresso)": "sonokai--sonokai-espresso.yaml", + "Sonokai (Sonokai Maia)": "sonokai--sonokai-maia.yaml", + "Sonokai (Sonokai Shusia)": "sonokai--sonokai-shusia.yaml", + "Sonokai (Sonokai)": "sonokai--sonokai.yaml", "Sonora Deep Signal": "sonora-deep-signal.yaml", "Sonora Deep Signal (faded)": "sonora-deep-signal-faded.yaml", "Sonora Deep Signal (vibrant)": "sonora-deep-signal-vibrant.yaml", @@ -6208,88 +6841,86 @@ "Soothing": "soothing.yaml", "Soothing Dark": "soothing-dark.yaml", "Soothing Light": "soothing-light.yaml", - "Sorbet-Swirl": "sorbet-swirl.yaml", "Sorcerer": "sorcerer.yaml", - "Soudev mega dark": "soudev-mega-dark.yaml", - "Soudev Purple Andromeda": "soudev-purple-andromeda.yaml", - "Soudev semi dark Andromeda": "soudev-semi-dark-andromeda.yaml", + "Soudev Theme (Soudev mega dark)": "soudev-theme--soudev-mega-dark.yaml", + "Soudev Theme (Soudev Purple Andromeda)": "soudev-theme--soudev-purple-andromeda.yaml", + "Soudev Theme (Soudev semi dark Andromeda)": "soudev-theme--soudev-semi-dark-andromeda.yaml", "Souei": "souei.yaml", "soul-theme": "soul-theme.yaml", "Souls Theme": "souls-theme.yaml", - "soup": "soup.yaml", - "soup-contrast": "soup-contrast.yaml", - "soup-light": "soup-light.yaml", "sourc": "sourc.yaml", "Sourcerer": "sourcerer.yaml", - "sourlick": "sourlick.yaml", - "sourlick-contrast": "sourlick-contrast.yaml", - "sourlick-light": "sourlick-light.yaml", "South Australia Dark": "south-australia-dark.yaml", "South Australia Light": "south-australia-light.yaml", "Space": "space.yaml", - "Space Dark": "space-dark.yaml", "Space Invader": "space-invader.yaml", "Space Invader - Black": "space-invader-black.yaml", "Space Invader - Darker": "space-invader-darker.yaml", "Space Invader - Light": "space-invader-light.yaml", - "Space Light": "space-light.yaml", - "Space Purple Dark": "space-purple-dark.yaml", - "Space Purple Light": "space-purple-light.yaml", + "Space Ocean Kit Refined": "space-ocean-kit-refined.yaml", + "Space Purple (Space Purple Dark)": "space-purple--space-purple-dark.yaml", + "Space Purple (Space Purple Light)": "space-purple--space-purple-light.yaml", + "Space Wars - Theme (Darth Insidious)": "space-wars-theme--darth-insidious.yaml", + "Space Wars - Theme (Darth Invader)": "space-wars-theme--darth-invader.yaml", + "Space Wars - Theme (Luke Skywriter)": "space-wars-theme--luke-skywriter.yaml", + "Space Wars - Theme (Storm Tracker)": "space-wars-theme--storm-tracker.yaml", + "Space Wars - Theme (Yoda - Mystical Force)": "space-wars-theme--yoda-mystical-force.yaml", "space-theme": "space-theme.yaml", "SpaceCamp": "spacecamp.yaml", "Spacedust": "spacedust.yaml", "SpaceGray": "spacegray.yaml", "spacegrey": "spacegrey.yaml", - "Spacemacs - dark": "spacemacs-dark.yaml", - "Spacemacs - light": "spacemacs-light.yaml", - "SpaceOceanKitRefined": "spaceoceankitrefined.yaml", + "Spacemacs (Spacemacs - dark)": "spacemacs--spacemacs-dark.yaml", + "Spacemacs (Spacemacs - light)": "spacemacs--spacemacs-light.yaml", "Spacial": "spacial.yaml", "Spades": "spades.yaml", - "Sparkle Theme": "sparkle-theme.yaml", + "Sparkle (Sparkle Theme)": "sparkle--sparkle-theme.yaml", "Speakeasy": "speakeasy.yaml", - "spearmint": "spearmint.yaml", - "spearmint-contrast": "spearmint-contrast.yaml", - "spearmint-light": "spearmint-light.yaml", - "SpiderVerse 2099": "spiderverse-2099.yaml", - "SpiderVerse Miles": "spiderverse-miles.yaml", - "SpiderVerse Spider-Man": "spiderverse-spider-man.yaml", + "SpiderVerse Theme (SpiderVerse 2099)": "spiderverse-theme--spiderverse-2099.yaml", + "SpiderVerse Theme (SpiderVerse Miles)": "spiderverse-theme--spiderverse-miles.yaml", + "SpiderVerse Theme (SpiderVerse Spider-Man)": "spiderverse-theme--spiderverse-spider-man.yaml", "Spin Theme": "spin-theme.yaml", "Spiral": "spiral.yaml", "Spirited Night": "spirited-night.yaml", - "spitfire": "spitfire.yaml", - "spitfire-contrast": "spitfire-contrast.yaml", - "spitfire-light": "spitfire-light.yaml", "Splash Theme": "splash-theme.yaml", "Splus": "splus.yaml", "Spotly Dark": "spotly-dark.yaml", "Spotly Light": "spotly-light.yaml", "Spring": "spring.yaml", "Spring Breeze Theme": "spring-breeze-theme.yaml", + "Sprinkle Pack (Azure Noir)": "sprinkle-pack--azure-noir.yaml", + "Sprinkle Pack (ChatGPT Theme)": "sprinkle-pack--chatgpt-theme.yaml", + "Sprinkle Pack (Darker Than Black)": "sprinkle-pack--darker-than-black.yaml", + "Sprinkle Pack (Elf Dream)": "sprinkle-pack--elf-dream.yaml", + "Sprinkle Pack (Ice)": "sprinkle-pack--ice.yaml", + "Sprinkle Pack (Lofi)": "sprinkle-pack--lofi.yaml", + "Sprinkle Pack (Magnolia)": "sprinkle-pack--magnolia.yaml", + "Sprinkle Pack (Pine Forest)": "sprinkle-pack--pine-forest.yaml", + "Sprinkle Pack (Sweet Lemon)": "sprinkle-pack--sweet-lemon.yaml", "sprinkles-color-theme": "sprinkles-color-theme.yaml", "spurlys theme": "spurlys-theme.yaml", - "spyder-theme-light": "spyder-theme-light.yaml", + "spyder-theme": "spyder-theme.yaml", "SQL Dark Pro - High Contrast": "sql-dark-pro-high-contrast.yaml", "Squash Theme": "squash-theme.yaml", "Squeak": "squeak.yaml", "Srcery": "srcery.yaml", - "Srcery-gagbo": "srcery-gagbo.yaml", - "ST: Borg": "st-borg.yaml", - "ST: LCARS": "st-lcars.yaml", - "Stackmeister": "stackmeister.yaml", + "Srcery (official port)": "srcery--official-port.yaml", + "Stackmeister Theme": "stackmeister-theme.yaml", "stained-glass-dark": "stained-glass-dark.yaml", "stannum": "stannum.yaml", "Star Night": "star-night.yaml", "Star Night Luna": "star-night-luna.yaml", + "Star Trek: Factions Theme Pack (ST: Borg)": "star-trek-factions-theme-pack--st-borg.yaml", + "Star Trek: Factions Theme Pack (ST: LCARS)": "star-trek-factions-theme-pack--st-lcars.yaml", "Star Wars Dark Side Theme (Global)": "star-wars-dark-side-theme-global.yaml", + "Star Wars: Planets Theme Pack": "star-wars-planets-theme-pack.yaml", "Starboy Theme": "starboy-theme.yaml", "Starburst Dark": "starburst-dark.yaml", "Starfield": "starfield.yaml", - "stark": "stark.yaml", "Stark Dark": "stark-dark.yaml", "Stark Light": "stark-light.yaml", - "stark-contrast": "stark-contrast.yaml", - "stark-light": "stark-light.yaml", "Starlight": "starlight.yaml", + "StarLight": "starlight.yaml", "Starlight - Daybreak": "starlight-daybreak.yaml", "Starlight - Light": "starlight-light.yaml", "Starlight - Midnight": "starlight-midnight.yaml", @@ -6299,13 +6930,8 @@ "Starry Pillar": "starry-pillar.yaml", "Startlite": "startlite.yaml", "Startrail": "startrail.yaml", - "stasis": "stasis.yaml", - "stasis-contrast": "stasis-contrast.yaml", - "stasis-light": "stasis-light.yaml", "stealth": "stealth.yaml", "Stealth": "stealth.yaml", - "stealth-contrast": "stealth-contrast.yaml", - "stealth-light": "stealth-light.yaml", "Steel Blue Dark": "steel-blue-dark.yaml", "Steel Phantom": "steel-phantom.yaml", "Steelbore": "steelbore.yaml", @@ -6314,68 +6940,59 @@ "Stella (High Contrast)": "stella-high-contrast.yaml", "Stella Theme": "stella-theme.yaml", "Stellar": "stellar.yaml", + "Stellar Galaxy": "stellar-galaxy.yaml", "Stellar Void": "stellar-void.yaml", "Stereo Theme": "stereo-theme.yaml", "stilla": "stilla.yaml", - "Sto Classic": "sto-classic.yaml", - "Sto Green": "sto-green.yaml", - "Sto Green Dark": "sto-green-dark.yaml", + "Sto Theme (Sto Classic)": "sto-theme--sto-classic.yaml", + "Sto Theme (Sto Green Dark)": "sto-theme--sto-green-dark.yaml", + "Sto Theme (Sto Green)": "sto-theme--sto-green.yaml", "StoneRose": "stonerose.yaml", "storm": "storm.yaml", "Storm": "storm.yaml", - "Storm Tracker": "storm-tracker.yaml", "Storm Uvadark - Fork": "storm-uvadark-fork.yaml", - "storm-contrast": "storm-contrast.yaml", - "storm-light": "storm-light.yaml", - "stormpetrel": "stormpetrel.yaml", "Stranger Theme: Dimension X": "stranger-theme-dimension-x.yaml", "Stranger Theme: Hawkins": "stranger-theme-hawkins.yaml", "Stranger Theme: Starcourt": "stranger-theme-starcourt.yaml", "Stranger Theme: The Lab": "stranger-theme-the-lab.yaml", "Stranger Theme: Tigers": "stranger-theme-tigers.yaml", "Stranger Theme: Upside Down": "stranger-theme-upside-down.yaml", - "Studio-Apartment": "studio-apartment.yaml", - "studio.bio Bio Dark Theme": "studio-bio-bio-dark-theme.yaml", - "styledark18": "styledark18.yaml", - "styledark28": "styledark28.yaml", - "stylelight33": "stylelight33.yaml", + "Strawberry Theme (Raspberry Theme)": "strawberry-theme--raspberry-theme.yaml", + "Styldev": "styldev.yaml", "stylelight35": "stylelight35.yaml", - "Stypt - Aether": "stypt-aether.yaml", + "Stypt": "stypt.yaml", "Subessence": "subessence.yaml", "Sublette": "sublette.yaml", "Sublime Breakers": "sublime-breakers.yaml", "Sublime Mariana ⎯ Semantic": "sublime-mariana-semantic.yaml", "Sublime Mariana ⎯ Test": "sublime-mariana-test.yaml", "Sublime Text 3": "sublime-text-3.yaml", - "Sublime Text 4 Theme": "sublime-text-4-theme.yaml", - "sublime-monokai-color-theme": "sublime-monokai-color-theme.yaml", + "Sublime VSCode Theme": "sublime-vscode-theme.yaml", + "sublime-ish": "sublime-ish.yaml", "sublime-vscode-theme": "sublime-vscode-theme.yaml", "Subliminal Nightfall": "subliminal-nightfall.yaml", "Subliminal-color-theme": "subliminal-color-theme.yaml", "SubliminalR": "subliminalr.yaml", - "subscribe-color": "subscribe-color.yaml", "Substrata": "substrata.yaml", "Sucrose": "sucrose.yaml", "Sufocode": "sufocode.yaml", - "Sugar Dark": "sugar-dark.yaml", - "Sugar Dark Focus": "sugar-dark-focus.yaml", - "Sugar Dark Github": "sugar-dark-github.yaml", - "Sugar Dark Midnight": "sugar-dark-midnight.yaml", - "Sugar Dark One": "sugar-dark-one.yaml", - "Sugar Dark Vitesse": "sugar-dark-vitesse.yaml", - "Sugar Dark VS": "sugar-dark-vs.yaml", - "Sugar Fleet": "sugar-fleet.yaml", - "Sugar Light": "sugar-light.yaml", - "Sugar Light Vitesse": "sugar-light-vitesse.yaml", - "Sugar Light VS": "sugar-light-vs.yaml", - "sukadia.dev/dark": "sukadia-dev-dark.yaml", + "Sugar Theme (Sugar Dark Focus)": "sugar-theme--sugar-dark-focus.yaml", + "Sugar Theme (Sugar Dark Github)": "sugar-theme--sugar-dark-github.yaml", + "Sugar Theme (Sugar Dark Midnight)": "sugar-theme--sugar-dark-midnight.yaml", + "Sugar Theme (Sugar Dark One)": "sugar-theme--sugar-dark-one.yaml", + "Sugar Theme (Sugar Dark Vitesse)": "sugar-theme--sugar-dark-vitesse.yaml", + "Sugar Theme (Sugar Dark VS)": "sugar-theme--sugar-dark-vs.yaml", + "Sugar Theme (Sugar Dark)": "sugar-theme--sugar-dark.yaml", + "Sugar Theme (Sugar Fleet)": "sugar-theme--sugar-fleet.yaml", + "Sugar Theme (Sugar Light Vitesse)": "sugar-theme--sugar-light-vitesse.yaml", + "Sugar Theme (Sugar Light VS)": "sugar-theme--sugar-light-vs.yaml", + "Sugar Theme (Sugar Light)": "sugar-theme--sugar-light.yaml", "Sulfuric Dark": "sulfuric-dark.yaml", "Sumiiro": "sumiiro.yaml", "summer": "summer.yaml", - "Summer": "summer.yaml", - "Summer Night": "summer-night.yaml", - "Summer Night Gray High Contrast": "summer-night-gray-high-contrast.yaml", - "Summer Night High Contrast": "summer-night-high-contrast.yaml", + "Summer Night Theme (Summer Night Gray High Contrast)": "summer-night-theme--summer-night-gray-high-contrast.yaml", + "Summer Night Theme (Summer Night High Contrast)": "summer-night-theme--summer-night-high-contrast.yaml", + "Summer Night Theme (Summer Night)": "summer-night-theme--summer-night.yaml", "Summer Nights": "summer-nights.yaml", "Summer Nights Lullaby": "summer-nights-lullaby.yaml", "Summer Palenight": "summer-palenight.yaml", @@ -6384,26 +7001,24 @@ "sunbather": "sunbather.yaml", "SunilCode Dark Soothing (Blue Light Reduced)": "sunilcode-dark-soothing-blue-light-reduced.yaml", "Sunny": "sunny.yaml", - "Sunset Beach Dark": "sunset-beach-dark.yaml", - "Sunset Beach Light": "sunset-beach-light.yaml", "Sunset Boulevard": "sunset-boulevard.yaml", "Sunset Noir": "sunset-noir.yaml", "Sunset serenade": "sunset-serenade.yaml", + "Sunset Serenade": "sunset-serenade.yaml", "Sunset theme": "sunset-theme.yaml", + "SunSplash monodark": "sunsplash-monodark.yaml", "sunsplash-monodark": "sunsplash-monodark.yaml", "Supa": "supa.yaml", - "super": "super.yaml", "Super Dark Cyberpunk Green": "super-dark-cyberpunk-green.yaml", "Super Dark Cyberpunk Grey": "super-dark-cyberpunk-grey.yaml", "Super Dark Cyberpunk Purple": "super-dark-cyberpunk-purple.yaml", - "super-contrast": "super-contrast.yaml", - "super-light": "super-light.yaml", + "Super Theme": "super-theme.yaml", "SuperBright": "superbright.yaml", "SuperDark": "superdark.yaml", "SuperGreatMonokai": "supergreatmonokai.yaml", - "Superman Theme": "superman-theme.yaml", "superNova": "supernova.yaml", "Supernova": "supernova.yaml", + "Supernova Theme": "supernova-theme.yaml", "Surreal": "surreal.yaml", "Susuwatari": "susuwatari.yaml", "Svelte 5 theme": "svelte-5-theme.yaml", @@ -6412,54 +7027,60 @@ "Sveltesse Dark Soft": "sveltesse-dark-soft.yaml", "Sveltesse Light": "sveltesse-light.yaml", "Sveltesse Light Soft": "sveltesse-light-soft.yaml", - "SW: Tatooine": "sw-tatooine.yaml", - "SW61": "sw61.yaml", "Swablu": "swablu.yaml", "swaminarayan": "swaminarayan.yaml", - "swamp-color-theme": "swamp-color-theme.yaml", - "Sweet Lemon": "sweet-lemon.yaml", + "Sweet Code Color Theme": "sweet-code-color-theme.yaml", + "Sweet Dracula Monokai": "sweet-dracula-monokai.yaml", "Sweet Pascal": "sweet-pascal.yaml", + "Sweet Vscode": "sweet-vscode.yaml", "sweet-vscode": "sweet-vscode.yaml", - "sweetdracula monokai": "sweetdracula-monokai.yaml", + "SweetWood (Vim Dark Hard)": "sweetwood--vim-dark-hard.yaml", "Swnb Palenight Theme": "swnb-palenight-theme.yaml", + "Swnb PaleNight Theme": "swnb-palenight-theme.yaml", "syl black": "syl-black.yaml", "syl chocolate": "syl-chocolate.yaml", "syl forest": "syl-forest.yaml", "syl ice": "syl-ice.yaml", "syl plum": "syl-plum.yaml", "syl shadow": "syl-shadow.yaml", - "Syntax Palette": "syntax-palette.yaml", + "Syntax Palette – A Color Theme for Code Creators": "syntax-palette-a-color-theme-for-code-creators.yaml", "Synthe": "synthe.yaml", "Synthesis": "synthesis.yaml", - "Synthor Dark - Fork": "synthor-dark-fork.yaml", + "Synthor Dark Theme": "synthor-dark-theme.yaml", "Synthwave": "synthwave.yaml", "Synthwave '84 - CSAV edition": "synthwave-84-csav-edition.yaml", + "Synthwave '84 csav edition": "synthwave-84-csav-edition.yaml", "Synthwave 2077": "synthwave-2077.yaml", "Synthwave 84": "synthwave-84.yaml", "Synthwave Alpha": "synthwave-alpha.yaml", "SynthWave Material Ansi 16": "synthwave-material-ansi-16.yaml", - "Synthwave-Neon": "synthwave-neon.yaml", "synthy": "synthy.yaml", + "Synthy": "synthy.yaml", "Sypher": "sypher.yaml", "syrinx": "syrinx.yaml", "sys1": "sys1.yaml", "sysop": "sysop.yaml", + "szn": "szn.yaml", "T-Theme": "t-theme.yaml", - "T3chDad Darkside - Fork": "t3chdad-darkside-fork.yaml", - "t3nsor-solo-leveling": "t3nsor-solo-leveling.yaml", + "T3chDad_Darkside": "t3chdad-darkside.yaml", + "t3nsor": "t3nsor.yaml", "Taco Syntax": "taco-syntax.yaml", - "Tactical-Ops": "tactical-ops.yaml", "tahigh": "tahigh.yaml", + "Tahiti (Retro)": "tahiti--retro.yaml", "Taiga": "taiga.yaml", - "Tail Dark Theme": "tail-dark-theme.yaml", + "Taiga Theme (Taiga)": "taiga-theme--taiga.yaml", + "tail-theme": "tail-theme.yaml", "Tailwind": "tailwind.yaml", - "Tailwind - Dark": "tailwind-dark.yaml", - "Tailwind - Darkest": "tailwind-darkest.yaml", "Tailwind Amber Dark": "tailwind-amber-dark.yaml", "Tailwind Amber Light": "tailwind-amber-light.yaml", "Tailwind Blue Dark": "tailwind-blue-dark.yaml", "Tailwind Blue Light": "tailwind-blue-light.yaml", "Tailwind Breeze": "tailwind-breeze.yaml", + "Tailwind Catalyst Theme (Catalyst Light)": "tailwind-catalyst-theme--catalyst-light.yaml", + "Tailwind Catalyst Theme (Catalyst)": "tailwind-catalyst-theme--catalyst.yaml", + "Tailwind Colour Themes (Tailwind Moon Blue)": "tailwind-colour-themes--tailwind-moon-blue.yaml", + "Tailwind Colour Themes (Tailwind Moon Grey)": "tailwind-colour-themes--tailwind-moon-grey.yaml", + "Tailwind Colour Themes (Tailwind Moon)": "tailwind-colour-themes--tailwind-moon.yaml", "Tailwind Cyan Dark": "tailwind-cyan-dark.yaml", "Tailwind Cyan Light": "tailwind-cyan-light.yaml", "Tailwind Emerald Dark": "tailwind-emerald-dark.yaml", @@ -6474,8 +7095,6 @@ "Tailwind Indigo Light": "tailwind-indigo-light.yaml", "Tailwind Lime Dark": "tailwind-lime-dark.yaml", "Tailwind Lime Light": "tailwind-lime-light.yaml", - "Tailwind Moon": "tailwind-moon.yaml", - "Tailwind Moon Blue": "tailwind-moon-blue.yaml", "Tailwind Moon Grey": "tailwind-moon-grey.yaml", "Tailwind Neutral Dark": "tailwind-neutral-dark.yaml", "Tailwind Neutral Light": "tailwind-neutral-light.yaml", @@ -6497,6 +7116,8 @@ "Tailwind Stone Light": "tailwind-stone-light.yaml", "Tailwind Teal Dark": "tailwind-teal-dark.yaml", "Tailwind Teal Light": "tailwind-teal-light.yaml", + "Tailwind Theme (Tailwind - Dark)": "tailwind-theme--tailwind-dark.yaml", + "Tailwind Theme (Tailwind - Darkest)": "tailwind-theme--tailwind-darkest.yaml", "Tailwind Violet Dark": "tailwind-violet-dark.yaml", "Tailwind Violet Light": "tailwind-violet-light.yaml", "Tailwind Yellow Dark": "tailwind-yellow-dark.yaml", @@ -6506,9 +7127,6 @@ "Taipei Night": "taipei-night.yaml", "Takenawa": "takenawa.yaml", "Takenawa - modified": "takenawa-modified.yaml", - "tame": "tame.yaml", - "tame-contrast": "tame-contrast.yaml", - "tame-light": "tame-light.yaml", "Tamil Nadu - Temple Land": "tamil-nadu-temple-land.yaml", "Tan Jade": "tan-jade.yaml", "Tangere Dark": "tangere-dark.yaml", @@ -6519,20 +7137,16 @@ "Tao theme": "tao-theme.yaml", "taquito-darker": "taquito-darker.yaml", "Taquito-Lighter": "taquito-lighter.yaml", - "Tara-Theme-Carbon": "tara-theme-carbon.yaml", - "Tara-Theme-Carbon-High-Contrast": "tara-theme-carbon-high-contrast.yaml", - "Tara-Theme-Deepforest": "tara-theme-deepforest.yaml", - "Tara-Theme-Ocean": "tara-theme-ocean.yaml", - "Tara-Theme-Palenight": "tara-theme-palenight.yaml", - "Tara-Theme-Teal": "tara-theme-teal.yaml", "TaraMandal Aurora": "taramandal-aurora.yaml", "TaraMandal Dark": "taramandal-dark.yaml", "TaraMandal True Cream": "taramandal-true-cream.yaml", "Tarbooz Dark": "tarbooz-dark.yaml", "Tarbooz Light": "tarbooz-light.yaml", "Tarbooz Underripe": "tarbooz-underripe.yaml", - "Tasmania Dark": "tasmania-dark.yaml", - "Tasmania Light": "tasmania-light.yaml", + "Tardezinha": "tardezinha.yaml", + "Tasmania (Tasmania Dark)": "tasmania--tasmania-dark.yaml", + "Tasmania (Tasmania Light)": "tasmania--tasmania-light.yaml", + "taurus": "taurus.yaml", "Taurus": "taurus.yaml", "TBFox Theme": "tbfox-theme.yaml", "TBFox Theme Light": "tbfox-theme-light.yaml", @@ -6544,9 +7158,10 @@ "Teal Crow Light": "teal-crow-light.yaml", "Tealicious": "tealicious.yaml", "tealy": "tealy.yaml", + "Tealy": "tealy.yaml", "Team Pastel Colors Theme": "team-pastel-colors-theme.yaml", - "Tears of the Kingdom - – Minimal Dark": "tears-of-the-kingdom-minimal-dark.yaml", - "Tears of the Kingdom – Minimal Dark (Midnight)": "tears-of-the-kingdom-minimal-dark-midnight.yaml", + "Tears of the Kingdom Theme (Tears of the Kingdom - – Minimal Dark)": "tears-of-the-kingdom-theme--tears-of-the-kingdom-minimal-dark.yaml", + "Tears of the Kingdom Theme (Tears of the Kingdom – Minimal Dark (Midnight))": "tears-of-the-kingdom-theme-tears-of-the-kingdom-minimal-dark-midnight.yaml", "Tearz": "tearz.yaml", "TechRazor Pro": "techrazor-pro.yaml", "techset": "techset.yaml", @@ -6558,43 +7173,46 @@ "TelaX": "telax.yaml", "telescope": "telescope.yaml", "Telescope": "telescope.yaml", - "Telescope - Fork": "telescope-fork.yaml", + "telescope-theme": "telescope-theme.yaml", "Tema dos cria": "tema-dos-cria.yaml", - "tema felipao": "tema-felipao.yaml", + "Tema dos Cria": "tema-dos-cria.yaml", + "Tema Flamengo (Dark)": "tema-flamengo--dark.yaml", "tema-dark-nero": "tema-dark-nero.yaml", "Teneblattinus": "teneblattinus.yaml", + "tenebris": "tenebris.yaml", "Tenebris": "tenebris.yaml", - "Terafox": "terafox.yaml", "Term": "term.yaml", - "Terminal": "terminal.yaml", - "Terminal - Fork": "terminal-fork.yaml", + "Terminal Theme (Minimal)": "terminal-theme--minimal.yaml", + "Terminal Theme (Shades)": "terminal-theme--shades.yaml", + "Terminal Theme (Terminal)": "terminal-theme--terminal.yaml", "TerraceCat": "terracecat.yaml", + "Terrafuture Themes": "terrafuture-themes.yaml", "Terrarium Minimal (Dark)": "terrarium-minimal-dark.yaml", "Terrarium Minimal (Light)": "terrarium-minimal-light.yaml", + "TerrorBelow": "terrorbelow.yaml", "Terrorboy-dark": "terrorboy-dark.yaml", "tesselate": "tesselate.yaml", - "Tesseract Dark": "tesseract-dark.yaml", + "Tesseract": "tesseract.yaml", "test": "test.yaml", - "Test": "test.yaml", - "tetra": "tetra.yaml", - "tetra-contrast": "tetra-contrast.yaml", - "tetra-light": "tetra-light.yaml", "Teutobourg": "teutobourg.yaml", "textmate.rstheme": "textmate-rstheme.yaml", "Thanatos": "thanatos.yaml", + "Thanos Theme": "thanos-theme.yaml", "ThatDataPurple": "thatdatapurple.yaml", - "The Best Theme Ever": "the-best-theme-ever.yaml", + "The Best Theme": "the-best-theme.yaml", "The Best VsCode Theme Ever - Light": "the-best-vscode-theme-ever-light.yaml", "The Dark Stove": "the-dark-stove.yaml", "The Digital Life": "the-digital-life.yaml", "The druid": "the-druid.yaml", - "The Empire": "the-empire.yaml", - "The End Of Development": "the-end-of-development.yaml", + "The Fato Dark": "the-fato-dark.yaml", "The Flying Dutchman": "the-flying-dutchman.yaml", "The Flying Dutchman High Contrast": "the-flying-dutchman-high-contrast.yaml", "The Flying Dutchman Soft": "the-flying-dutchman-soft.yaml", + "The Legendary Blue": "the-legendary-blue.yaml", + "The Matrix.": "the-matrix.yaml", "The Occult <-->": "the-occult.yaml", - "The One Theme": "the-one-theme.yaml", + "The One Theme (The One Theme)": "the-one-theme--the-one-theme.yaml", + "The One Theme (Untitled)": "the-one-theme--untitled.yaml", "The Only Tolerable Light Theme": "the-only-tolerable-light-theme.yaml", "The Theme": "the-theme.yaml", "the_gentleman": "the-gentleman.yaml", @@ -6602,54 +7220,55 @@ "the-orchid-dark": "the-orchid-dark.yaml", "the-orchid-light": "the-orchid-light.yaml", "the-orchid-soft": "the-orchid-soft.yaml", + "Thea Theme (Light Theme)": "thea-theme--light-theme.yaml", + "Thea Theme (Purple theme)": "thea-theme--purple-theme.yaml", "theAIsphere-dark": "theaisphere-dark.yaml", "theAIsphere-light": "theaisphere-light.yaml", - "TheBear-Dark": "thebear-dark.yaml", + "TheBear": "thebear.yaml", "TheBestThemeAlive": "thebestthemealive.yaml", "TheCodeDoctor": "thecodedoctor.yaml", "TheDarkerOne": "thedarkerone.yaml", - "Themarro": "themarro.yaml", - "Themarro Dark Contrast": "themarro-dark-contrast.yaml", - "Themarro David Remix": "themarro-david-remix.yaml", + "Themarro (Themarro Dark Contrast)": "themarro--themarro-dark-contrast.yaml", + "Themarro (Themarro David Remix)": "themarro--themarro-david-remix.yaml", + "Themarro (Themarro)": "themarro--themarro.yaml", "theme": "theme.yaml", "Theme": "theme.yaml", - "Thème Dark Aout - Contraste Élevé": "th-me-dark-aout-contraste-lev.yaml", - "Thème Dark Avril - Vert Printemps": "th-me-dark-avril-vert-printemps.yaml", - "Thème Dark Janvier - Bleu Foncé": "th-me-dark-janvier-bleu-fonc.yaml", - "Thème Dark Juillet - Contraste Élevé": "th-me-dark-juillet-contraste-lev.yaml", - "Thème Dark Juin - High Contrast": "th-me-dark-juin-high-contrast.yaml", - "Theme For Codes - Dark": "theme-for-codes-dark.yaml", - "Theme For Codes - Light": "theme-for-codes-light.yaml", - "Thème High Contrast Janvier - Révisé": "th-me-high-contrast-janvier-r-vis.yaml", + "Theme (ThemeDarker)": "theme--themedarker.yaml", + "Theme + (Dark Blue Theme)": "theme--dark-blue-theme.yaml", + "Theme + (Dark Brown Theme)": "theme--dark-brown-theme.yaml", + "theme armada": "theme-armada.yaml", + "Theme Dark": "theme-dark.yaml", + "Theme For Anyone (🧛‍♂️)": "theme-for-anyone--.yaml", + "Theme For Anyone (1️⃣)": "theme-for-anyone--1.yaml", + "Theme For Anyone (Carbon)": "theme-for-anyone--carbon.yaml", "Theme One": "theme-one.yaml", - "Thème Sombre d'Automne": "th-me-sombre-d-automne.yaml", + "Theme Rosario (Untitled)": "theme-rosario--untitled.yaml", "Theme_stick_green_dark": "theme-stick-green-dark.yaml", "theme-bear": "theme-bear.yaml", - "theme-joey": "theme-joey.yaml", + "theme-mangayo": "theme-mangayo.yaml", "theme-mk black": "theme-mk-black.yaml", "theme-mk rebuilt": "theme-mk-rebuilt.yaml", "theme-nickel": "theme-nickel.yaml", + "theme-selenitic": "theme-selenitic.yaml", "Theme-Y-Random": "theme-y-random.yaml", "Theme1": "theme1.yaml", "Theme³": "theme.yaml", "Theme³ Dark": "theme-dark.yaml", - "ThemeDarker": "themedarker.yaml", - "ThemeFramek": "themeframek.yaml", - "themegreen": "themegreen.yaml", + "themello": "themello.yaml", "Themello": "themello.yaml", - "ThemeMix": "thememix.yaml", "themename": "themename.yaml", "Themenis": "themenis.yaml", "ThemeO": "themeo.yaml", - "ThemePurple": "themepurple.yaml", "Themer Dark": "themer-dark.yaml", - "Themer Light": "themer-light.yaml", - "Themin - Mint": "themin-mint.yaml", + "Themin": "themin.yaml", "Theo-Swarg-Dark": "theo-swarg-dark.yaml", + "Theo-SwarG-Dark": "theo-swarg-dark.yaml", "thePurple": "thepurple.yaml", + "ThePurple": "thepurple.yaml", + "Think In React (🧛‍♂️)": "think-in-react--.yaml", "ThinkStorm": "thinkstorm.yaml", "Thore Blue": "thore-blue.yaml", - "Thorn": "thorn.yaml", + "Thorn (Thorn)": "thorn--thorn.yaml", "Thoughtworks Style Theme": "thoughtworks-style-theme.yaml", "Thra": "thra.yaml", "threedark": "threedark.yaml", @@ -6662,9 +7281,8 @@ "Thynaptic Pro": "thynaptic-pro.yaml", "Thynaptic Sand (Base)": "thynaptic-sand-base.yaml", "Thynaptic Sand Dark": "thynaptic-sand-dark.yaml", - "tickle": "tickle.yaml", - "tickle-contrast": "tickle-contrast.yaml", - "tickle-light": "tickle-light.yaml", + "Thzin": "thzin.yaml", + "tian-green": "tian-green.yaml", "tickle-refresh": "tickle-refresh.yaml", "Tidelight Contrast": "tidelight-contrast.yaml", "Tidelight Contrast (Light)": "tidelight-contrast-light.yaml", @@ -6676,15 +7294,14 @@ "Tidelight High Noon": "tidelight-high-noon.yaml", "Tidelight Midnight": "tidelight-midnight.yaml", "Tidelight Shore": "tidelight-shore.yaml", + "Tiger Dark": "tiger-dark.yaml", "tiktok": "tiktok.yaml", "Tim's Experiments Dark": "tim-s-experiments-dark.yaml", + "Time Flow": "time-flow.yaml", "Timir": "timir.yaml", "Timu macOS dark Theme": "timu-macos-dark-theme.yaml", "Timu macOS light Theme": "timu-macos-light-theme.yaml", "Timu Spacegrey Theme": "timu-spacegrey-theme.yaml", - "Tinacious Design Syntax": "tinacious-design-syntax.yaml", - "Tiniri Dark": "tiniri-dark.yaml", - "Tiniri Light": "tiniri-light.yaml", "Tiny Light": "tiny-light.yaml", "Titillating Midnight": "titillating-midnight.yaml", "Titillating Sunset": "titillating-sunset.yaml", @@ -6706,114 +7323,115 @@ "Tlapalli l-07: Fire Opal Light": "tlapalli-l-07-fire-opal-light.yaml", "tm2rd3": "tm2rd3.yaml", "TMNT Dark Theme": "tmnt-dark-theme.yaml", + "Tnove Dark Theme": "tnove-dark-theme.yaml", "tnove-dark-theme": "tnove-dark-theme.yaml", - "Tô on no código": "t-on-no-c-digo.yaml", - "Tobirama Water Style": "tobirama-water-style.yaml", + "To on no codigo": "to-on-no-codigo.yaml", "TodePond Theme": "todepond-theme.yaml", - "Tokito Inspired": "tokito-inspired.yaml", + "TodePond-Theme": "todepond-theme.yaml", "tokv7": "tokv7.yaml", - "Tokyo": "tokyo.yaml", - "Tokyo (Dark)": "tokyo-dark.yaml", - "Tokyo (Light)": "tokyo-light.yaml", + "Tokyo (Dark)": "tokyo-dark-akil-s.yaml", "Tokyo Dark": "tokyo-dark.yaml", + "Tokyo Dive": "tokyo-dive.yaml", "Tokyo Ghosts Dark": "tokyo-ghosts-dark.yaml", "Tokyo Ghosts Light": "tokyo-ghosts-light.yaml", - "Tokyo Gogh": "tokyo-gogh.yaml", - "Tokyo Gogh Alt": "tokyo-gogh-alt.yaml", "Tokyo Lights": "tokyo-lights.yaml", "Tokyo Midnight": "tokyo-midnight.yaml", "Tokyo Modern": "tokyo-modern.yaml", + "Tokyo Night (fork) (Tokyo Night Light)": "tokyo-night-fork--tokyo-night-light.yaml", + "Tokyo Night (fork) (Tokyo Night Storm)": "tokyo-night-fork--tokyo-night-storm.yaml", + "Tokyo Night (fork) (Tokyo Night)": "tokyo-night-fork--tokyo-night.yaml", + "Tokyo Night (Tokyo Night Light)": "tokyo-night--tokyo-night-light.yaml", + "Tokyo Night (Tokyo Night Storm)": "tokyo-night--tokyo-night-storm.yaml", + "Tokyo Night (Tokyo Night)": "tokyo-night--tokyo-night.yaml", "Tokyo Night Blackout": "tokyo-night-blackout.yaml", "Tokyo Night Bright": "tokyo-night-bright.yaml", "Tokyo Night Dark": "tokyo-night-dark.yaml", - "Tokyo Night Equalizer": "tokyo-night-equalizer.yaml", - "Tokyo Night Light": "tokyo-night-light.yaml", "Tokyo Night nv": "tokyo-night-nv.yaml", + "Tokyo Night NV": "tokyo-night-nv.yaml", "Tokyo Night Pure": "tokyo-night-pure.yaml", + "Tokyo Night Theme Damask Edition": "tokyo-night-theme-damask-edition.yaml", "Tokyo Night Void": "tokyo-night-void.yaml", "Tokyo Panda": "tokyo-panda.yaml", "tokyo-dive": "tokyo-dive.yaml", - "tokyo-night-theme": "tokyo-night-theme.yaml", - "TokyoGo": "tokyogo.yaml", - "tokyoNIGHT": "tokyonight.yaml", - "TokyoNight Moon (Lazy)": "tokyonight-moon-lazy.yaml", + "tokyo-night (Tokyo Gogh Alt)": "tokyo-night--tokyo-gogh-alt.yaml", + "tokyo-night (Tokyo Gogh)": "tokyo-night--tokyo-gogh.yaml", "Tol": "tol.yaml", - "Tomorrow Night Bright (R Classic)": "tomorrow-night-bright-r-classic.yaml", "Tomorrow Night IJ": "tomorrow-night-ij.yaml", "Tomorrow Night VS": "tomorrow-night-vs.yaml", "TomorrowMyst": "tomorrowmyst.yaml", - "tonic": "tonic.yaml", - "tonic-contrast": "tonic-contrast.yaml", - "tonic-light": "tonic-light.yaml", "TooDark": "toodark.yaml", + "TooDark-AM (One Dark Pro)": "toodark-am--one-dark-pro.yaml", "Topic: The leader": "topic-the-leader.yaml", - "Tora": "tora.yaml", + "Topl Theme (.Alpha)": "topl-theme--alpha.yaml", "torque": "torque.yaml", - "Torte Vim": "torte-vim.yaml", - "Total Lunar Eclipse": "total-lunar-eclipse.yaml", - "total-black-theme": "total-black-theme.yaml", - "Totow's Thème": "totow-s-th-me.yaml", - "Toxic Waste": "toxic-waste.yaml", - "toxic-color-theme": "toxic-color-theme.yaml", + "torte theme": "torte-theme.yaml", + "Totow's Official Thème": "totow-s-official-th-me.yaml", + "TouchFish": "touchfish.yaml", + "Toxic": "toxic.yaml", "Toy Chest": "toy-chest.yaml", + "tragicpale": "tragicpale.yaml", + "Tranquillity Theme": "tranquillity-theme.yaml", "Tranquillity-theme": "tranquillity-theme.yaml", - "Trans Pride Light (Naomi)": "trans-pride-light-naomi.yaml", + "Transparent Themes Collection": "transparent-themes-collection.yaml", "Transylvania": "transylvania.yaml", - "Tree-Hugger": "tree-hugger.yaml", "Triad Dragon": "triad-dragon.yaml", - "tribal": "tribal.yaml", - "tribal-contrast": "tribal-contrast.yaml", - "tribal-light": "tribal-light.yaml", "Tristan": "tristan.yaml", "Triumph": "triumph.yaml", "Triumph v2": "triumph-v2.yaml", - "tron": "tron.yaml", "Tron-Ares": "tron-ares.yaml", - "tron-contrast": "tron-contrast.yaml", - "tron-light": "tron-light.yaml", + "Tron-Ares-Theme": "tron-ares-theme.yaml", "Tron: Ares": "tron-ares.yaml", "trsm-night-eyes": "trsm-night-eyes.yaml", "True Dark": "true-dark.yaml", + "True Dark By Gurdish Singh": "true-dark-by-gurdish-singh.yaml", "trueAmber": "trueamber.yaml", "Tsoding Daily - 2024": "tsoding-daily-2024.yaml", "Tsuki": "tsuki.yaml", - "tsukiroku dark": "tsukiroku-dark.yaml", - "Tsukuyomi": "tsukuyomi.yaml", - "Tsukuyomi (Light)": "tsukuyomi-light.yaml", - "Tsumiki Theme": "tsumiki-theme.yaml", + "tsukiroku": "tsukiroku.yaml", + "Tsukuyomi (Tsukuyomi (Light))": "tsukuyomi-tsukuyomi-light.yaml", + "Tsukuyomi (Tsukuyomi)": "tsukuyomi--tsukuyomi.yaml", + "Tsumiki": "tsumiki.yaml", + "Ttera Themes (Botany)": "ttera-themes--botany.yaml", + "Ttera Themes (Cosmic Sea)": "ttera-themes--cosmic-sea.yaml", + "Ttera Themes (Cyberpunk)": "ttera-themes--cyberpunk.yaml", + "Ttera Themes (Dragon)": "ttera-themes--dragon.yaml", + "Ttera Themes (Golden Wave)": "ttera-themes--golden-wave.yaml", + "Ttera Themes (Gothic Vampire)": "ttera-themes--gothic-vampire.yaml", + "Ttera Themes (Intergalactic)": "ttera-themes--intergalactic.yaml", + "Ttera Themes (Jellyfish)": "ttera-themes--jellyfish.yaml", + "Ttera Themes (Koi Pond Dark)": "ttera-themes--koi-pond-dark.yaml", + "Ttera Themes (Koi Pond Light)": "ttera-themes--koi-pond-light.yaml", + "Ttera Themes (Orca)": "ttera-themes--orca.yaml", + "Ttera Themes (Panda Dark)": "ttera-themes--panda-dark.yaml", + "Ttera Themes (Sakura)": "ttera-themes--sakura.yaml", + "Ttera Themes (Sunset Beach Dark)": "ttera-themes--sunset-beach-dark.yaml", + "Ttera Themes (Sunset Beach Light)": "ttera-themes--sunset-beach-light.yaml", + "Ttera Themes (Tora)": "ttera-themes--tora.yaml", + "Ttera Themes (Ukiyo-e Aged Manuscript)": "ttera-themes--ukiyo-e-aged-manuscript.yaml", + "tudoroxo": "tudoroxo.yaml", "Tudoroxo": "tudoroxo.yaml", + "Tulin Design": "tulin-design.yaml", "tulin.design": "tulin-design.yaml", - "Tundra Dusk": "tundra-dusk.yaml", "Turbo": "turbo.yaml", - "Turbo C 3.0 Borland Style": "turbo-c-3-0-borland-style.yaml", - "turnip": "turnip.yaml", - "turnip-contrast": "turnip-contrast.yaml", - "turnip-light": "turnip-light.yaml", - "Turnstyle": "turnstyle.yaml", - "Turnstyle Darker": "turnstyle-darker.yaml", - "Turquesa/bege": "turquesa-bege.yaml", - "Tutilabs Theme": "tutilabs-theme.yaml", - "TW40 - Gigi": "tw40-gigi.yaml", - "tweed": "tweed.yaml", - "tweed-contrast": "tweed-contrast.yaml", - "tweed-light": "tweed-light.yaml", + "Turbo C.3.0-Theme": "turbo-c-3-0-theme.yaml", + "Turnstyle (Turnstyle Darker)": "turnstyle--turnstyle-darker.yaml", + "Turnstyle (Turnstyle)": "turnstyle--turnstyle.yaml", + "turquesa": "turquesa.yaml", + "tutilabs": "tutilabs.yaml", "Twentyfour": "twentyfour.yaml", "Twilight": "twilight.yaml", "Twilight Cosmos": "twilight-cosmos.yaml", "Twilight Pro": "twilight-pro.yaml", "Twilight Sage": "twilight-sage.yaml", - "Twilight-Bloom": "twilight-bloom.yaml", "TwilightSparkle": "twilightsparkle.yaml", "Twilite": "twilite.yaml", "Twilite (Darker)": "twilite-darker.yaml", "Twin Black": "twin-black.yaml", "Twin Blue": "twin-blue.yaml", "Two Firewatch": "two-firewatch.yaml", - "Two Monokai": "two-monokai.yaml", - "Two Monokai Darker": "two-monokai-darker.yaml", "TwoDark": "twodark.yaml", "Tycho Crater": "tycho-crater.yaml", - "tyh-theme-dark": "tyh-theme-dark.yaml", + "tyh-theme": "tyh-theme.yaml", "TypeDark Cyan": "typedark-cyan.yaml", "TypeDark Magenta": "typedark-magenta.yaml", "Tyrell Corporation": "tyrell-corporation.yaml", @@ -6823,8 +7441,6 @@ "UDT Eclipse (light)": "udt-eclipse-light.yaml", "ui_color": "ui-color.yaml", "ukiyo": "ukiyo.yaml", - "Ukiyo-e Aged Manuscript": "ukiyo-e-aged-manuscript.yaml", - "Ukiyo-e Manuscript": "ukiyo-e-manuscript.yaml", "Ukiyo-Tone Asahi (Morning Sun)": "ukiyo-tone-asahi-morning-sun.yaml", "Ukiyo-Tone Kachi-iro (Victory Color)": "ukiyo-tone-kachi-iro-victory-color.yaml", "Ukiyo-Tone Karesansui (Dry Landscape)": "ukiyo-tone-karesansui-dry-landscape.yaml", @@ -6833,34 +7449,62 @@ "Ukiyo-Tone Tasogare (Twilight)": "ukiyo-tone-tasogare-twilight.yaml", "Ultima": "ultima.yaml", "Ultima GWZ": "ultima-gwz.yaml", - "Ultra Instinct Mastered": "ultra-instinct-mastered.yaml", - "Ultra Instinct Mastered (Light)": "ultra-instinct-mastered-light.yaml", - "Ultra Instinct Sign": "ultra-instinct-sign.yaml", - "Ultrafocus - Fork - Fork": "ultrafocus-fork-fork.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Akari Dawn)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--akari-dawn.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Akari Night)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--akari-night.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Blush Pink Enhanced Premium)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--blush-pink-enhanced-premium.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Calm Dark)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--calm-dark.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Calm Light)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--calm-light.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (CloudMint Night)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--cloudmint-night.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Copper Dark)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--copper-dark.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Cyberpink-137© Theme)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--cyberpink-137-theme.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Deep Space Dark)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--deep-space-dark.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Emerald Matrix)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--emerald-matrix.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Espresso Dark Theme)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--espresso-dark-theme.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Espresso Dark)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--espresso-dark.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (EverNex)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--evernex.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Ghibli Forest (Dark))": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets-ghibli-forest-dark.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Goku Code - Dragon Ball Z Power (Eye-Safe))": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets-goku-code-dragon-ball-z-power-eye-safe.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Nebula Pro Dark)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nebula-pro-dark.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Neo Hacker Soft - Premium)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--neo-hacker-soft-premium.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Neon Dream Code)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--neon-dream-code.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Nimbus Mint Light)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nimbus-mint-light.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Nothing OS Dark)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nothing-os-dark.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Nothing OS Gray)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nothing-os-gray.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Nutty Dark Theme)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nutty-dark-theme.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Nutty Light Theme)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nutty-light-theme.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Omnitrix Code)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--omnitrix-code.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Rose Paradise)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--rose-paradise.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Solstice Estival)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--solstice-estival.yaml", + "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Solstice Hibernal)": "ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--solstice-hibernal.yaml", + "Ultra Instinct Theme (Ultra Instinct Mastered (Light))": "ultra-instinct-theme-ultra-instinct-mastered-light.yaml", + "Ultra Instinct Theme (Ultra Instinct Mastered)": "ultra-instinct-theme--ultra-instinct-mastered.yaml", + "Ultra Instinct Theme (Ultra Instinct Sign)": "ultra-instinct-theme--ultra-instinct-sign.yaml", "umbra": "umbra.yaml", + "Umbra": "umbra.yaml", "Umi": "umi.yaml", - "UMP 45 / LEVA": "ump-45-leva.yaml", "UnBlueLievable!": "unbluelievable.yaml", "Undefined": "undefined.yaml", "Under Theme": "under-theme.yaml", - "Underdark - Fork": "underdark-fork.yaml", + "Underdark": "underdark.yaml", "Underdark v2": "underdark-v2.yaml", "Understated": "understated.yaml", + "Unicode Purple Dark - Theme": "unicode-purple-dark-theme.yaml", "Unicorn": "unicorn.yaml", - "Unicorn dark": "unicorn-dark.yaml", + "Unicorn Dark Theme": "unicorn-dark-theme.yaml", "unicornio dark": "unicornio-dark.yaml", + "Unicornio Dark": "unicornio-dark.yaml", "UniEye": "unieye.yaml", "UniquezHD": "uniquezhd.yaml", "UnitSmash": "unitsmash.yaml", - "Unity Theme": "unity-theme.yaml", "Universe": "universe.yaml", "Universe Gray": "universe-gray.yaml", "Universe Purple": "universe-purple.yaml", - "Unlight v.2": "unlight-v-2.yaml", - "Untitled": "untitled.yaml", - "Untitled - Fork": "untitled-fork.yaml", - "Untitled - Fork - Fork": "untitled-fork-fork.yaml", + "Universe-Terkoshi": "universe-terkoshi.yaml", + "Unknown": "unknown.yaml", + "unlighted": "unlighted.yaml", + "Uno Due Tre": "uno-due-tre.yaml", "UnyoDusk": "unyodusk.yaml", + "Update": "update.yaml", "updog": "updog.yaml", "updog light": "updog-light.yaml", "Upward Dark": "upward-dark.yaml", @@ -6871,86 +7515,80 @@ "Urban Glow": "urban-glow.yaml", "UrbanJungle": "urbanjungle.yaml", "ursa": "ursa.yaml", + "Ursa": "ursa.yaml", + "USCSS Nostromo - Alien Terminal Theme (Alien Terminal Nostromo Amber)": "uscss-nostromo-alien-terminal-theme--alien-terminal-nostromo-amber.yaml", + "USCSS Nostromo - Alien Terminal Theme (Alien Terminal Nostromo Green)": "uscss-nostromo-alien-terminal-theme--alien-terminal-nostromo-green.yaml", + "USCSS Nostromo - Alien Terminal Theme (Alien Terminal Sevastopol Link)": "uscss-nostromo-alien-terminal-theme--alien-terminal-sevastopol-link.yaml", "user160": "user160.yaml", - "userscape": "userscape.yaml", - "userscape-contrast": "userscape-contrast.yaml", - "userscape-light": "userscape-light.yaml", "uTheme": "utheme.yaml", "utopia": "utopia.yaml", - "Uvadark - Rahul - Fork": "uvadark-rahul-fork.yaml", "V01D Theme": "v01d-theme.yaml", "V01D Theme alternative": "v01d-theme-alternative.yaml", "v7": "v7.yaml", "vaatu": "vaatu.yaml", "Vagalume Dev": "vagalume-dev.yaml", - "VAGruvboxTheme-color-theme": "vagruvboxtheme-color-theme.yaml", - "Vague": "vague.yaml", - "Vague neovim Theme Extended": "vague-neovim-theme-extended.yaml", - "Vague neovim Theme Extended Light": "vague-neovim-theme-extended-light.yaml", + "Vague Theme (Windsurf)": "vague-theme--windsurf.yaml", "Valary": "valary.yaml", "valkthor-dark-theme": "valkthor-dark-theme.yaml", - "Valley": "valley.yaml", - "Valorant Theme - Darker": "valorant-theme-darker.yaml", - "Valorant Theme - Remasterd": "valorant-theme-remasterd.yaml", + "Valley (Valley)": "valley--valley.yaml", + "Valorant Theme (Valorant Theme - Darker)": "valorant-theme--valorant-theme-darker.yaml", + "Valorant Theme (Valorant Theme - Remasterd)": "valorant-theme--valorant-theme-remasterd.yaml", "vampurr": "vampurr.yaml", + "Vampurr": "vampurr.yaml", "Van Gogh Theme": "van-gogh-theme.yaml", - "Vanguard-Strike": "vanguard-strike.yaml", - "Vanilla": "vanilla.yaml", - "vanilla-jade": "vanilla-jade.yaml", "vapor": "vapor.yaml", "Vapor": "vapor.yaml", - "Vaporizer Alice Dark": "vaporizer-alice-dark.yaml", - "Vaporizer Alice Light": "vaporizer-alice-light.yaml", - "Vaporizer Ava Light": "vaporizer-ava-light.yaml", - "Vaporizer Batman Dark 2022": "vaporizer-batman-dark-2022.yaml", - "Vaporizer Batman Dark Night": "vaporizer-batman-dark-night.yaml", - "Vaporizer Cloudy Light": "vaporizer-cloudy-light.yaml", - "Vaporizer Cobalt Dark": "vaporizer-cobalt-dark.yaml", - "Vaporizer Crescent Dark": "vaporizer-crescent-dark.yaml", - "Vaporizer Dark Cherry": "vaporizer-dark-cherry.yaml", - "Vaporizer Dark Coffee": "vaporizer-dark-coffee.yaml", - "Vaporizer Dark Cool 1": "vaporizer-dark-cool-1.yaml", - "Vaporizer Dark Cool 2": "vaporizer-dark-cool-2.yaml", - "Vaporizer Dark Cop": "vaporizer-dark-cop.yaml", - "Vaporizer Dark Cyber Neon 1": "vaporizer-dark-cyber-neon-1.yaml", - "Vaporizer Dark Cyber Neon 2": "vaporizer-dark-cyber-neon-2.yaml", - "Vaporizer Dark Cyber Neon 3": "vaporizer-dark-cyber-neon-3.yaml", - "Vaporizer Dark Ivy": "vaporizer-dark-ivy.yaml", - "Vaporizer Dark Joker": "vaporizer-dark-joker.yaml", - "Vaporizer Dark Matrix 2": "vaporizer-dark-matrix-2.yaml", - "Vaporizer Dark Monterey": "vaporizer-dark-monterey.yaml", - "Vaporizer Dark Painting": "vaporizer-dark-painting.yaml", - "Vaporizer Dark Pansy": "vaporizer-dark-pansy.yaml", - "Vaporizer Dark Red": "vaporizer-dark-red.yaml", - "Vaporizer Dark Stabilo": "vaporizer-dark-stabilo.yaml", - "Vaporizer Dark Turquoise": "vaporizer-dark-turquoise.yaml", - "Vaporizer Epic Red Dark": "vaporizer-epic-red-dark.yaml", - "Vaporizer Foncé Dark": "vaporizer-fonc-dark.yaml", - "Vaporizer Frozen Dark ": "vaporizer-frozen-dark.yaml", - "Vaporizer Golgi Dark": "vaporizer-golgi-dark.yaml", - "Vaporizer Half-Moon Dark": "vaporizer-half-moon-dark.yaml", - "Vaporizer Lemonade Light": "vaporizer-lemonade-light.yaml", - "Vaporizer Lemonade Solarized Light": "vaporizer-lemonade-solarized-light.yaml", - "Vaporizer Milk Light": "vaporizer-milk-light.yaml", - "Vaporizer Mini Blue Light": "vaporizer-mini-blue-light.yaml", - "Vaporizer Minimalism Light": "vaporizer-minimalism-light.yaml", - "Vaporizer Modern Light": "vaporizer-modern-light.yaml", - "Vaporizer Moon-Light Dark": "vaporizer-moon-light-dark.yaml", - "Vaporizer Phosphoric Blue": "vaporizer-phosphoric-blue.yaml", - "Vaporizer Purple Gray Dark": "vaporizer-purple-gray-dark.yaml", - "Vaporizer Soft Light": "vaporizer-soft-light.yaml", - "Vaporizer Splash Dark": "vaporizer-splash-dark.yaml", - "Vaporizer Turquoise Light": "vaporizer-turquoise-light.yaml", - "Vaporwave": "vaporwave.yaml", + "Vaporizer Dark & Light Themes (Crypto)": "vaporizer-dark-light-themes--crypto.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Alice Dark)": "vaporizer-dark-light-themes--vaporizer-alice-dark.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Alice Light)": "vaporizer-dark-light-themes--vaporizer-alice-light.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Ava Light)": "vaporizer-dark-light-themes--vaporizer-ava-light.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Batman Dark 2022)": "vaporizer-dark-light-themes--vaporizer-batman-dark-2022.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Batman Dark Night)": "vaporizer-dark-light-themes--vaporizer-batman-dark-night.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Cloudy Light)": "vaporizer-dark-light-themes--vaporizer-cloudy-light.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Cobalt Dark)": "vaporizer-dark-light-themes--vaporizer-cobalt-dark.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Crescent Dark)": "vaporizer-dark-light-themes--vaporizer-crescent-dark.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Cherry)": "vaporizer-dark-light-themes--vaporizer-dark-cherry.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Coffee)": "vaporizer-dark-light-themes--vaporizer-dark-coffee.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Cool 1)": "vaporizer-dark-light-themes--vaporizer-dark-cool-1.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Cool 2)": "vaporizer-dark-light-themes--vaporizer-dark-cool-2.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Cop)": "vaporizer-dark-light-themes--vaporizer-dark-cop.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Cyber Neon 1)": "vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-1.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Cyber Neon 2)": "vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-2.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Cyber Neon 3)": "vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-3.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Ivy)": "vaporizer-dark-light-themes--vaporizer-dark-ivy.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Joker)": "vaporizer-dark-light-themes--vaporizer-dark-joker.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Matrix 2)": "vaporizer-dark-light-themes--vaporizer-dark-matrix-2.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Monterey)": "vaporizer-dark-light-themes--vaporizer-dark-monterey.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Painting)": "vaporizer-dark-light-themes--vaporizer-dark-painting.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Pansy)": "vaporizer-dark-light-themes--vaporizer-dark-pansy.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Red)": "vaporizer-dark-light-themes--vaporizer-dark-red.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Stabilo)": "vaporizer-dark-light-themes--vaporizer-dark-stabilo.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Dark Turquoise)": "vaporizer-dark-light-themes--vaporizer-dark-turquoise.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Epic Red Dark)": "vaporizer-dark-light-themes--vaporizer-epic-red-dark.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Foncé Dark)": "vaporizer-dark-light-themes--vaporizer-fonc-dark.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Frozen Dark )": "vaporizer-dark-light-themes--vaporizer-frozen-dark.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Golgi Dark)": "vaporizer-dark-light-themes--vaporizer-golgi-dark.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Half-Moon Dark)": "vaporizer-dark-light-themes--vaporizer-half-moon-dark.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Lemonade Light)": "vaporizer-dark-light-themes--vaporizer-lemonade-light.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Lemonade Solarized Light)": "vaporizer-dark-light-themes--vaporizer-lemonade-solarized-light.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Milk Light)": "vaporizer-dark-light-themes--vaporizer-milk-light.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Mini Blue Light)": "vaporizer-dark-light-themes--vaporizer-mini-blue-light.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Minimalism Light)": "vaporizer-dark-light-themes--vaporizer-minimalism-light.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Modern Light)": "vaporizer-dark-light-themes--vaporizer-modern-light.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Moon-Light Dark)": "vaporizer-dark-light-themes--vaporizer-moon-light-dark.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Phosphoric Grey)": "vaporizer-dark-light-themes--vaporizer-phosphoric-grey.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Purple Gray Dark)": "vaporizer-dark-light-themes--vaporizer-purple-gray-dark.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Soft Light)": "vaporizer-dark-light-themes--vaporizer-soft-light.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Splash Dark)": "vaporizer-dark-light-themes--vaporizer-splash-dark.yaml", + "Vaporizer Dark & Light Themes (Vaporizer Turquoise Light)": "vaporizer-dark-light-themes--vaporizer-turquoise-light.yaml", + "Vaporwave Neon Dreams": "vaporwave-neon-dreams.yaml", "Vaquita": "vaquita.yaml", "varlet-dark": "varlet-dark.yaml", - "Vase with Twelve Sunflowers": "vase-with-twelve-sunflowers.yaml", + "Vasses TriColor Theme": "vasses-tricolor-theme.yaml", "vasses-tricolor-theme": "vasses-tricolor-theme.yaml", "vColdTheme": "vcoldtheme.yaml", "vd": "vd.yaml", "Vegas Night Details Theme": "vegas-night-details-theme.yaml", - "vegetable-contrast": "vegetable-contrast.yaml", - "vegetable-light": "vegetable-light.yaml", "vegetation": "vegetation.yaml", "Veil": "veil.yaml", "Veiled": "veiled.yaml", @@ -6966,26 +7604,30 @@ "Vela Spectrum Light+": "vela-spectrum-light.yaml", "Vela Spectrum Light+ Tritanopia": "vela-spectrum-light-tritanopia.yaml", "Velourous": "velourous.yaml", + "Velvet Chrome": "velvet-chrome.yaml", + "Velvet Mango": "velvet-mango.yaml", "Velvet Thunder": "velvet-thunder.yaml", "velvet-chrome": "velvet-chrome.yaml", "Venice Beach Sky": "venice-beach-sky.yaml", "Venom Theme": "venom-theme.yaml", - "Vercel": "vercel.yaml", - "Vercel Light": "vercel-light.yaml", + "Vercel Docs Theme (Vercel Light)": "vercel-docs-theme--vercel-light.yaml", + "Vercel Docs Theme (Vercel)": "vercel-docs-theme--vercel.yaml", + "Vercel VSCode Theme": "vercel-vscode-theme.yaml", "verdant": "verdant.yaml", "Verdantium": "verdantium.yaml", "Verdure": "verdure.yaml", - "Verner": "verner.yaml", - "version 1.0.5": "version-1-0-5.yaml", "Very Blue": "very-blue.yaml", "very fast theme": "very-fast-theme.yaml", - "Vesper ++": "vesper.yaml", + "vesper golden": "vesper-golden.yaml", "Vesper Golden": "vesper-golden.yaml", - "Vesper Purple Dark": "vesper-purple-dark.yaml", - "Vesper Purple Light": "vesper-purple-light.yaml", + "Vesper Purple Ox (Vesper Purple Dark)": "vesper-purple-ox--vesper-purple-dark.yaml", + "Vesper Purple Ox (Vesper Purple Light)": "vesper-purple-ox--vesper-purple-light.yaml", + "Vesper Purple Theme (Vesper Purple Dark)": "vesper-purple-theme--vesper-purple-dark.yaml", + "Vesper Purple Theme (Vesper Purple Light)": "vesper-purple-theme--vesper-purple-light.yaml", + "Vesper++ Lighter": "vesper-lighter.yaml", "VHS80": "vhs80.yaml", "Vi_Dark": "vi-dark.yaml", - "Vibe Dark Legacy": "vibe-dark-legacy.yaml", + "vibe": "vibe.yaml", "VibeColors Corporate Light": "vibecolors-corporate-light.yaml", "VibeColors Dark": "vibecolors-dark.yaml", "VibeColors Dynamic Dark": "vibecolors-dynamic-dark.yaml", @@ -6998,16 +7640,17 @@ "VibeColors Retro Dark": "vibecolors-retro-dark.yaml", "VibeColors Soft Dark": "vibecolors-soft-dark.yaml", "VibeColors Sunset Light": "vibecolors-sunset-light.yaml", - "Vibes": "vibes.yaml", + "Vibey Theme": "vibey-theme.yaml", "Vibra": "vibra.yaml", + "Vibrant Abyss": "vibrant-abyss.yaml", "Vibrant Dark": "vibrant-dark.yaml", "Vibrant Max": "vibrant-max.yaml", - "vibrant-abyss-vscode": "vibrant-abyss-vscode.yaml", "Vice City Noir": "vice-city-noir.yaml", "Vicious": "vicious.yaml", - "Victoria Dark": "victoria-dark.yaml", - "Victoria Light": "victoria-light.yaml", - "Video-Contrast": "video-contrast.yaml", + "Vicos' Theme": "vicos-theme.yaml", + "Victoria (Victoria Dark)": "victoria--victoria-dark.yaml", + "Victoria (Victoria Light)": "victoria--victoria-light.yaml", + "VietHoang Theme (🧛‍♂️)": "viethoang-theme--.yaml", "Vigikai": "vigikai.yaml", "VIII-III-MMV": "viii-iii-mmv.yaml", "Vikkie!!! Dark": "vikkie-dark.yaml", @@ -7016,50 +7659,61 @@ "villain-light": "villain-light.yaml", "Vim Dar11sdasdasd": "vim-dar11sdasdasd.yaml", "Vim Dark Medium": "vim-dark-medium.yaml", - "Vim Dark Soft": "vim-dark-soft.yaml", "Vim Light 1": "vim-light-1.yaml", "Vim Light 2": "vim-light-2.yaml", "Vim Light 3": "vim-light-3.yaml", "Vim Light Soft": "vim-light-soft.yaml", "Vim Night": "vim-night.yaml", + "Vim Theme (Vim Dark Hard)": "vim-theme--vim-dark-hard.yaml", + "Vim Theme (Vim Dark Medium)": "vim-theme--vim-dark-medium.yaml", + "Vim Theme (Vim Dark Soft)": "vim-theme--vim-dark-soft.yaml", + "Vim Theme (Vim Light Hard)": "vim-theme--vim-light-hard.yaml", + "Vim Theme (Vim Light Medium)": "vim-theme--vim-light-medium.yaml", + "Vim Theme (Vim Light Soft)": "vim-theme--vim-light-soft.yaml", "vin theme": "vin-theme.yaml", + "Vincent van Gogh Painting Themes (Starry Night)": "vincent-van-gogh-painting-themes--starry-night.yaml", + "Vincent van Gogh Painting Themes (Vase with Twelve Sunflowers)": "vincent-van-gogh-painting-themes--vase-with-twelve-sunflowers.yaml", "vintage": "vintage.yaml", + "Vintage": "vintage.yaml", "Vintage Rust Theme": "vintage-rust-theme.yaml", - "Vintage-Heritage": "vintage-heritage.yaml", + "Vintage Story Theme": "vintage-story-theme.yaml", "vintage-serene": "vintage-serene.yaml", "Vinyl": "vinyl.yaml", - "violaceous": "violaceous.yaml", - "violaceous-contrast": "violaceous-contrast.yaml", - "violaceous-light": "violaceous-light.yaml", "violet": "violet.yaml", "Violet Dream": "violet-dream.yaml", - "Violet Night": "violet-night.yaml", + "Violet Night Theme": "violet-night-theme.yaml", "Violet Nova": "violet-nova.yaml", "Viora": "viora.yaml", - "Viper Theme": "viper-theme.yaml", - "Vishwakarma Sunset Glow": "vishwakarma-sunset-glow.yaml", - "vision-colorblind": "vision-colorblind.yaml", - "vision-light-colorblind": "vision-light-colorblind.yaml", + "Vishwakarma Theme (Vishwakarma Sunset Glow)": "vishwakarma-theme--vishwakarma-sunset-glow.yaml", "Visual Studio & Github Light Plus": "visual-studio-github-light-plus.yaml", - "Visual Studio Code Dark Theme": "visual-studio-code-dark-theme.yaml", "Visual Studio Dark 2019": "visual-studio-dark-2019.yaml", "Visual Studio Dark 2026": "visual-studio-dark-2026.yaml", + "Visual Studio Fleet": "visual-studio-fleet.yaml", + "VisualAssistGruvboxTheme": "visualassistgruvboxtheme.yaml", "VisualOS": "visualos.yaml", - "VitePress Theme Vite Dark": "vitepress-theme-vite-dark.yaml", + "VitePress Theme (unofficial)": "vitepress-theme--unofficial.yaml", "Vitesse Dark Custom": "vitesse-dark-custom.yaml", - "Vitesse Dark Soft": "vitesse-dark-soft.yaml", "Vitesse Dragon": "vitesse-dragon.yaml", "Vitesse Dragon Dark": "vitesse-dragon-dark.yaml", "Vitesse Green Theme": "vitesse-green-theme.yaml", + "Vitesse Theme (Vitesse Black)": "vitesse-theme--vitesse-black.yaml", + "Vitesse Theme (Vitesse Dark Soft)": "vitesse-theme--vitesse-dark-soft.yaml", + "Vitesse Theme (Vitesse Dark)": "vitesse-theme--vitesse-dark.yaml", + "Vitesse Theme (Vitesse Light Soft)": "vitesse-theme--vitesse-light-soft.yaml", + "Vitesse Theme (Vitesse Light)": "vitesse-theme--vitesse-light.yaml", + "Vitesse Theme Gray (Vitesse Dark)": "vitesse-theme-gray--vitesse-dark.yaml", + "Vitesse Theme Gray (Vitesse Light)": "vitesse-theme-gray--vitesse-light.yaml", "Vitesse WebStorm Dark": "vitesse-webstorm-dark.yaml", "vitrioleuse": "vitrioleuse.yaml", "Vitruvian": "vitruvian.yaml", - "Vivid Blue": "vivid-blue.yaml", - "VividNord": "vividnord.yaml", + "Vivid Nord": "vivid-nord.yaml", "Vivido Theme": "vivido-theme.yaml", "vixn-dark": "vixn-dark.yaml", - "vkt-theme": "vkt-theme.yaml", + "VktTheme": "vkttheme.yaml", + "Vlad.studio Tiniri Theme (Tiniri Dark)": "vlad-studio-tiniri-theme--tiniri-dark.yaml", + "Vlad.studio Tiniri Theme (Tiniri Light)": "vlad-studio-tiniri-theme--tiniri-light.yaml", "Void": "void.yaml", + "Void blue": "void-blue.yaml", "Void Iris": "void-iris.yaml", "Void Nebula": "void-nebula.yaml", "vøid-contrast": "v-id-contrast.yaml", @@ -7067,31 +7721,31 @@ "Voidbloom Quazar": "voidbloom-quazar.yaml", "Voidbloom Singularity": "voidbloom-singularity.yaml", "Voidwalker": "voidwalker.yaml", - "volatile": "volatile.yaml", - "volatile-contrast": "volatile-contrast.yaml", - "volatile-light": "volatile-light.yaml", "volcanofr": "volcanofr.yaml", "volskaya": "volskaya.yaml", - "Volt Dark": "volt-dark.yaml", + "VoltDark": "voltdark.yaml", "Voodoo": "voodoo.yaml", "Voraes": "voraes.yaml", - "vortex": "vortex.yaml", "VOX AC30": "vox-ac30.yaml", "voyager": "voyager.yaml", + "VS Code Dark Red Theme": "vs-code-dark-red-theme.yaml", + "VS Code Dark Theme (Black theme)": "vs-code-dark-theme--black-theme.yaml", "VS Code Deep F.lux": "vs-code-deep-f-lux.yaml", - "VS Code Deep F.lux - Fork - Fork": "vs-code-deep-f-lux-fork-fork.yaml", - "VS Code Next.Js": "vs-code-next-js.yaml", + "VS Code Themes (Solarized Dark Theme)": "vs-code-themes--solarized-dark-theme.yaml", "VS Ghoul": "vs-ghoul.yaml", - "vs-fleet": "vs-fleet.yaml", - "vsblue": "vsblue.yaml", + "VS Muted": "vs-muted.yaml", + "VS Snazzy Theme": "vs-snazzy-theme.yaml", + "vs-dark-theme": "vs-dark-theme.yaml", + "vsblue Theme": "vsblue-theme.yaml", "VSC Military Style": "vsc-military-style.yaml", "Vsc-Blue-theme": "vsc-blue-theme.yaml", - "vsc-cyberpunk2077-theme-color-theme": "vsc-cyberpunk2077-theme-color-theme.yaml", "vsc-minimalist-theme-flat": "vsc-minimalist-theme-flat.yaml", "vsc-minimalist-theme-oak": "vsc-minimalist-theme-oak.yaml", "vsc-minimalist-theme-obsidian": "vsc-minimalist-theme-obsidian.yaml", "vsc-minimalist-theme-odp": "vsc-minimalist-theme-odp.yaml", - "vsc-solarized-light": "vsc-solarized-light.yaml", + "vsc-soft-theme": "vsc-soft-theme.yaml", + "VSCode CRT UI (CRT Amber)": "vscode-crt-ui--crt-amber.yaml", + "VSCode CRT UI (CRT Blue)": "vscode-crt-ui--crt-blue.yaml", "VSCode Forest Pro Chartreuse": "vscode-forest-pro-chartreuse.yaml", "VSCode Forest Pro Dark Green": "vscode-forest-pro-dark-green.yaml", "VSCode Forest Pro Enterprise": "vscode-forest-pro-enterprise.yaml", @@ -7109,38 +7763,38 @@ "VSCode Forest Pro Shamrock": "vscode-forest-pro-shamrock.yaml", "VSCode Forest Pro Spring Green": "vscode-forest-pro-spring-green.yaml", "VSCode Forest Pro Tea Green": "vscode-forest-pro-tea-green.yaml", + "VSCode Nofrils (Dark/Light) (VSCode Nofrils Light)": "vscode-nofrils-dark-light--vscode-nofrils-light.yaml", "VSCode Nofrils Dark": "vscode-nofrils-dark.yaml", "VSCode Nofrils GitHub Light": "vscode-nofrils-github-light.yaml", "VSCode Nofrils Gruvbox Dark": "vscode-nofrils-gruvbox-dark.yaml", "VSCode Nofrils Gruvbox Light": "vscode-nofrils-gruvbox-light.yaml", - "VSCode Nofrils Light": "vscode-nofrils-light.yaml", "VSCode Nofrils One Dark": "vscode-nofrils-one-dark.yaml", "VSCode Nofrils One Light": "vscode-nofrils-one-light.yaml", "VSCode Nofrils Sepia": "vscode-nofrils-sepia.yaml", "VSCode Nofrils Tokyo Night": "vscode-nofrils-tokyo-night.yaml", "VSCode Theme": "vscode-theme.yaml", - "vscode-bt-feynuus-color-theme": "vscode-bt-feynuus-color-theme.yaml", - "VSCODE-EPIC-color-theme": "vscode-epic-color-theme.yaml", - "vscode-material-ui": "vscode-material-ui.yaml", + "vscode-epic-theme": "vscode-epic-theme.yaml", "vscode-pink-and-puple-theme": "vscode-pink-and-puple-theme.yaml", - "vscode-sublime-ish": "vscode-sublime-ish.yaml", + "VSLook": "vslook.yaml", "VSMuted-color-theme": "vsmuted-color-theme.yaml", "VSNordTheme-dark-contrast-color-theme": "vsnordtheme-dark-contrast-color-theme.yaml", "VSNordTheme-light-color-theme": "vsnordtheme-light-color-theme.yaml", "VSNordTheme-light-contrast-color-theme": "vsnordtheme-light-contrast-color-theme.yaml", "VSTheme No Italics": "vstheme-no-italics.yaml", - "VSToolKit Theme Dark": "vstoolkit-theme-dark.yaml", + "VSToolKit": "vstoolkit.yaml", "VueJS Theme": "vuejs-theme.yaml", - "vxcode blush": "vxcode-blush.yaml", - "vxcode cream": "vxcode-cream.yaml", - "vxcode dark": "vxcode-dark.yaml", - "vxcode darker": "vxcode-darker.yaml", - "vxcode lavender": "vxcode-lavender.yaml", - "vxcode lime": "vxcode-lime.yaml", - "vxcode OLED": "vxcode-oled.yaml", + "VXcode Theme (vxcode blush)": "vxcode-theme--vxcode-blush.yaml", + "VXcode Theme (vxcode cream)": "vxcode-theme--vxcode-cream.yaml", + "VXcode Theme (vxcode dark)": "vxcode-theme--vxcode-dark.yaml", + "VXcode Theme (vxcode darker)": "vxcode-theme--vxcode-darker.yaml", + "VXcode Theme (vxcode lavender)": "vxcode-theme--vxcode-lavender.yaml", + "VXcode Theme (vxcode lime)": "vxcode-theme--vxcode-lime.yaml", + "VXcode Theme (vxcode OLED)": "vxcode-theme--vxcode-oled.yaml", "w40 Theme": "w40-theme.yaml", "Walking in the dark - RED": "walking-in-the-dark-red.yaml", + "Walking-in-the-dark-RED": "walking-in-the-dark-red.yaml", "wallbash": "wallbash.yaml", + "Wallbash": "wallbash.yaml", "Walloco Light Theme": "walloco-light-theme.yaml", "walls-fill": "walls-fill.yaml", "Wandering Mercenary": "wandering-mercenary.yaml", @@ -7148,45 +7802,44 @@ "Wangyj Bright Black": "wangyj-bright-black.yaml", "wangyj-film-black": "wangyj-film-black.yaml", "wangyj-film-light": "wangyj-film-light.yaml", - "warlock": "warlock.yaml", - "warlock-contrast": "warlock-contrast.yaml", - "warlock-light": "warlock-light.yaml", + "warm": "warm.yaml", "Warm Black": "warm-black.yaml", + "Warm Burnout": "warm-burnout.yaml", "Warm Orange - Enthusiasm & Creativity": "warm-orange-enthusiasm-creativity.yaml", "Warm Orange Theme": "warm-orange-theme.yaml", - "warm-burnout-dark": "warm-burnout-dark.yaml", "warm-burnout-light": "warm-burnout-light.yaml", - "Warmkai Pro": "warmkai-pro.yaml", - "waste": "waste.yaml", - "waste-contrast": "waste-contrast.yaml", - "waste-light": "waste-light.yaml", + "WarmKai": "warmkai.yaml", "Water Grape": "water-grape.yaml", - "Waterbyte - Classic 2022 Light": "waterbyte-classic-2022-light.yaml", + "Waterbyte Theme": "waterbyte-theme.yaml", + "watercourse": "watercourse.yaml", "WaterCourse": "watercourse.yaml", "Watermelon": "watermelon.yaml", - "Wave Delight VS Dark Cool": "wave-delight-vs-dark-cool.yaml", "WaveFire": "wavefire.yaml", - "wawdog-dark": "wawdog-dark.yaml", + "Wawdog Drak Theme": "wawdog-drak-theme.yaml", "wDark Theme": "wdark-theme.yaml", - "webc-dark": "webc-dark.yaml", + "WebC": "webc.yaml", "Webstorm Darcula Dark Theme": "webstorm-darcula-dark-theme.yaml", "Webstorm IntelliJ Darcula Theme": "webstorm-intellij-darcula-theme.yaml", "WebStorm Monokai": "webstorm-monokai.yaml", - "weiting_candycolor": "weiting-candycolor.yaml", + "weird theme": "weird-theme.yaml", + "Weiting's color": "weiting-s-color.yaml", "weitingcoder": "weitingcoder.yaml", "West Bengal - Cultural Hub": "west-bengal-cultural-hub.yaml", - "Westmont Dark": "westmont-dark.yaml", + "What the Hell": "what-the-hell.yaml", "What The Hell": "what-the-hell.yaml", + "WhatsApp": "whatsapp.yaml", "wheel-color-theme": "wheel-color-theme.yaml", - "wheel-light-color-theme": "wheel-light-color-theme.yaml", "Whiskey Coder Dark": "whiskey-coder-dark.yaml", "Whiskey Coder Light": "whiskey-coder-light.yaml", - "White Shade Color": "white-shade-color.yaml", + "Whisper": "whisper.yaml", + "White": "white.yaml", + "White Shade (White Shade Color)": "white-shade--white-shade-color.yaml", "White Winter": "white-winter.yaml", "white-blue-demo": "white-blue-demo.yaml", - "Whiteboard": "whiteboard.yaml", + "Whiteboard theme": "whiteboard-theme.yaml", "WhiteSpace": "whitespace.yaml", "Wick": "wick.yaml", + "wicked": "wicked.yaml", "Wicked": "wicked.yaml", "Widgit Monokai": "widgit-monokai.yaml", "Wiity Green": "wiity-green.yaml", @@ -7196,37 +7849,39 @@ "Wildtype": "wildtype.yaml", "WildWest": "wildwest.yaml", "Will-o'-Wisp Theme": "will-o-wisp-theme.yaml", - "willasm.emerald.sky": "willasm-emerald-sky.yaml", "Willi-Style Dracula flavour": "willi-style-dracula-flavour.yaml", - "willow": "willow.yaml", - "Win XP Luna": "win-xp-luna.yaml", + "WillisSantos": "willissantos.yaml", + "willow-theme": "willow-theme.yaml", + "Win XP": "win-xp.yaml", "Win10": "win10.yaml", "WinClassic": "winclassic.yaml", "wind": "wind.yaml", - "Wind Dark Slate": "wind-dark-slate.yaml", - "Wind Dark Zinc": "wind-dark-zinc.yaml", - "Wind Light Neutral": "wind-light-neutral.yaml", + "Wind Theme (Man Dark Stone)": "wind-theme--man-dark-stone.yaml", + "Wind Theme (Wind Dark Slate)": "wind-theme--wind-dark-slate.yaml", + "Wind Theme (Wind Dark Zinc)": "wind-theme--wind-dark-zinc.yaml", "Windows 95 Theme": "windows-95-theme.yaml", - "Windows NT": "windows-nt.yaml", - "Windows Xp Dark Luna": "windows-xp-dark-luna.yaml", + "Windows XP Dark": "windows-xp-dark.yaml", "Windu": "windu.yaml", "Windwaker": "windwaker.yaml", "Wine Garden": "wine-garden.yaml", "Winter": "winter.yaml", "Winter Pearl": "winter-pearl.yaml", + "Winter Theme": "winter-theme.yaml", "WinterIsCoding": "winteriscoding.yaml", "WinterIsCoding Gift": "winteriscoding-gift.yaml", "Winternacht Dark": "winternacht-dark.yaml", "Winternacht Light": "winternacht-light.yaml", - "wired": "wired.yaml", - "wired lighter": "wired-lighter.yaml", - "Wise Owl Material": "wise-owl-material.yaml", - "Wise Owl Material High Contrast": "wise-owl-material-high-contrast.yaml", - "Wise Owl Material Light": "wise-owl-material-light.yaml", + "Wired (Jackhammar)": "wired--jackhammar.yaml", + "Wired (Kali linux theme)": "wired--kali-linux-theme.yaml", + "Wired (wired lighter)": "wired--wired-lighter.yaml", + "Wired (wired)": "wired--wired.yaml", + "Wise Owl Material Theme (Atom Material Theme)": "wise-owl-material-theme--atom-material-theme.yaml", + "Wise Owl Material Theme (Wise Owl Material High Contrast)": "wise-owl-material-theme--wise-owl-material-high-contrast.yaml", + "Wise Owl Material Theme (Wise Owl Material Light)": "wise-owl-material-theme--wise-owl-material-light.yaml", + "Wise Owl Material Theme (Wise Owl Material)": "wise-owl-material-theme--wise-owl-material.yaml", "Wisteria": "wisteria.yaml", "Witch Elaina": "witch-elaina.yaml", "witcher": "witcher.yaml", - "Witchy Dark": "witchy-dark.yaml", "WL-Acid Wash": "wl-acid-wash.yaml", "WL-Amber Monitor": "wl-amber-monitor.yaml", "WL-Aurora Glow": "wl-aurora-glow.yaml", @@ -7275,60 +7930,61 @@ "WL-Volt Surge": "wl-volt-surge.yaml", "WL-Zen Twilight": "wl-zen-twilight.yaml", "WolfTheme": "wolftheme.yaml", - "Wolves League Dark": "wolves-league-dark.yaml", + "Wolves League Theme": "wolves-league-theme.yaml", "Woods": "woods.yaml", "Woodsmoke": "woodsmoke.yaml", "Wookie": "wookie.yaml", - "word-color-theme": "word-color-theme.yaml", + "Word": "word.yaml", "word-dark-theme": "word-dark-theme.yaml", - "Wordsmith Dark": "wordsmith-dark.yaml", - "Wordsmith Light": "wordsmith-light.yaml", - "Workplace-Chatter": "workplace-chatter.yaml", + "Wordsmith (Wordsmith Dark)": "wordsmith--wordsmith-dark.yaml", + "Wordsmith (Wordsmith Light)": "wordsmith--wordsmith-light.yaml", "wow!": "wow.yaml", + "Wrkspace Theme": "wrkspace-theme.yaml", "wrkspace-theme": "wrkspace-theme.yaml", - "Wuthering Waves : Aemeath": "wuthering-waves-aemeath.yaml", - "Wuthering Waves : Aemeath (Dark)": "wuthering-waves-aemeath-dark.yaml", - "Wuthering Waves : Augusta": "wuthering-waves-augusta.yaml", - "Wuthering Waves : Augusta (Dark)": "wuthering-waves-augusta-dark.yaml", - "Wuthering Waves : Baizhi": "wuthering-waves-baizhi.yaml", - "Wuthering Waves : Baizhi (Dark)": "wuthering-waves-baizhi-dark.yaml", - "Wuthering Waves : Brant": "wuthering-waves-brant.yaml", - "Wuthering Waves : Brant (Dark)": "wuthering-waves-brant-dark.yaml", - "Wuthering Waves : Cantarella": "wuthering-waves-cantarella.yaml", - "Wuthering Waves : Cantarella (Dark)": "wuthering-waves-cantarella-dark.yaml", - "Wuthering Waves : Carlotta": "wuthering-waves-carlotta.yaml", - "Wuthering Waves : Carlotta (Dark)": "wuthering-waves-carlotta-dark.yaml", - "Wuthering Waves : Cartethyia": "wuthering-waves-cartethyia.yaml", - "Wuthering Waves : Cartethyia (Dark)": "wuthering-waves-cartethyia-dark.yaml", - "Wuthering Waves : Changli": "wuthering-waves-changli.yaml", - "Wuthering Waves : Changli (Dark)": "wuthering-waves-changli-dark.yaml", - "Wuthering Waves : Chisa": "wuthering-waves-chisa.yaml", - "Wuthering Waves : Chisa (Dark)": "wuthering-waves-chisa-dark.yaml", - "Wuthering Waves : Galbrena": "wuthering-waves-galbrena.yaml", - "Wuthering Waves : Galbrena (Dark)": "wuthering-waves-galbrena-dark.yaml", - "Wuthering Waves : Iuno": "wuthering-waves-iuno.yaml", - "Wuthering Waves : Iuno (Dark)": "wuthering-waves-iuno-dark.yaml", - "Wuthering Waves : Jinhsi": "wuthering-waves-jinhsi.yaml", - "Wuthering Waves : Lynae": "wuthering-waves-lynae.yaml", - "Wuthering Waves : Lynae (Dark)": "wuthering-waves-lynae-dark.yaml", - "Wuthering Waves : Mornye": "wuthering-waves-mornye.yaml", - "Wuthering Waves : Mornye (Dark)": "wuthering-waves-mornye-dark.yaml", - "Wuthering Waves : Roccia": "wuthering-waves-roccia.yaml", - "Wuthering Waves : Roccia (Dark)": "wuthering-waves-roccia-dark.yaml", - "Wuthering Waves : Rover": "wuthering-waves-rover.yaml", - "Wuthering Waves : Sanhua": "wuthering-waves-sanhua.yaml", - "Wuthering Waves : Sanhua (Dark)": "wuthering-waves-sanhua-dark.yaml", - "Wuthering Waves : Scar": "wuthering-waves-scar.yaml", - "Wuthering Waves : Scar (Dark)": "wuthering-waves-scar-dark.yaml", - "Wuthering Waves : Taoqi": "wuthering-waves-taoqi.yaml", - "Wuthering Waves : The Shorekeeper": "wuthering-waves-the-shorekeeper.yaml", - "Wuthering Waves : The Shorekeeper (Dark)": "wuthering-waves-the-shorekeeper-dark.yaml", - "Wuthering Waves : Verina": "wuthering-waves-verina.yaml", - "Wuthering Waves : Verina (Dark)": "wuthering-waves-verina-dark.yaml", - "Wuthering Waves : Yinlin": "wuthering-waves-yinlin.yaml", - "Wuthering Waves : Yinlin (Dark)": "wuthering-waves-yinlin-dark.yaml", - "Wuthering Waves : Zhezhi": "wuthering-waves-zhezhi.yaml", - "Wuthering Waves : Zhezhi (Dark)": "wuthering-waves-zhezhi-dark.yaml", + "wst-theme": "wst-theme.yaml", + "wuthering waves color themes (Wuthering Waves : Aemeath (Dark))": "wuthering-waves-color-themes-wuthering-waves-aemeath-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Aemeath)": "wuthering-waves-color-themes--wuthering-waves-aemeath.yaml", + "wuthering waves color themes (Wuthering Waves : Augusta (Dark))": "wuthering-waves-color-themes-wuthering-waves-augusta-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Augusta)": "wuthering-waves-color-themes--wuthering-waves-augusta.yaml", + "wuthering waves color themes (Wuthering Waves : Baizhi (Dark))": "wuthering-waves-color-themes-wuthering-waves-baizhi-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Baizhi)": "wuthering-waves-color-themes--wuthering-waves-baizhi.yaml", + "wuthering waves color themes (Wuthering Waves : Brant (Dark))": "wuthering-waves-color-themes-wuthering-waves-brant-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Brant)": "wuthering-waves-color-themes--wuthering-waves-brant.yaml", + "wuthering waves color themes (Wuthering Waves : Cantarella (Dark))": "wuthering-waves-color-themes-wuthering-waves-cantarella-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Cantarella)": "wuthering-waves-color-themes--wuthering-waves-cantarella.yaml", + "wuthering waves color themes (Wuthering Waves : Carlotta (Dark))": "wuthering-waves-color-themes-wuthering-waves-carlotta-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Carlotta)": "wuthering-waves-color-themes--wuthering-waves-carlotta.yaml", + "wuthering waves color themes (Wuthering Waves : Cartethyia (Dark))": "wuthering-waves-color-themes-wuthering-waves-cartethyia-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Cartethyia)": "wuthering-waves-color-themes--wuthering-waves-cartethyia.yaml", + "wuthering waves color themes (Wuthering Waves : Changli (Dark))": "wuthering-waves-color-themes-wuthering-waves-changli-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Changli)": "wuthering-waves-color-themes--wuthering-waves-changli.yaml", + "wuthering waves color themes (Wuthering Waves : Chisa (Dark))": "wuthering-waves-color-themes-wuthering-waves-chisa-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Chisa)": "wuthering-waves-color-themes--wuthering-waves-chisa.yaml", + "wuthering waves color themes (Wuthering Waves : Galbrena (Dark))": "wuthering-waves-color-themes-wuthering-waves-galbrena-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Galbrena)": "wuthering-waves-color-themes--wuthering-waves-galbrena.yaml", + "wuthering waves color themes (Wuthering Waves : Iuno (Dark))": "wuthering-waves-color-themes-wuthering-waves-iuno-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Iuno)": "wuthering-waves-color-themes--wuthering-waves-iuno.yaml", + "wuthering waves color themes (Wuthering Waves : Jinhsi)": "wuthering-waves-color-themes--wuthering-waves-jinhsi.yaml", + "wuthering waves color themes (Wuthering Waves : Lynae (Dark))": "wuthering-waves-color-themes-wuthering-waves-lynae-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Lynae)": "wuthering-waves-color-themes--wuthering-waves-lynae.yaml", + "wuthering waves color themes (Wuthering Waves : Mornye (Dark))": "wuthering-waves-color-themes-wuthering-waves-mornye-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Mornye)": "wuthering-waves-color-themes--wuthering-waves-mornye.yaml", + "wuthering waves color themes (Wuthering Waves : Roccia (Dark))": "wuthering-waves-color-themes-wuthering-waves-roccia-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Roccia)": "wuthering-waves-color-themes--wuthering-waves-roccia.yaml", + "wuthering waves color themes (Wuthering Waves : Rover)": "wuthering-waves-color-themes--wuthering-waves-rover.yaml", + "wuthering waves color themes (Wuthering Waves : Sanhua (Dark))": "wuthering-waves-color-themes-wuthering-waves-sanhua-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Sanhua)": "wuthering-waves-color-themes--wuthering-waves-sanhua.yaml", + "wuthering waves color themes (Wuthering Waves : Scar (Dark))": "wuthering-waves-color-themes-wuthering-waves-scar-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Scar)": "wuthering-waves-color-themes--wuthering-waves-scar.yaml", + "wuthering waves color themes (Wuthering Waves : Taoqi)": "wuthering-waves-color-themes--wuthering-waves-taoqi.yaml", + "wuthering waves color themes (Wuthering Waves : The Shorekeeper (Dark))": "wuthering-waves-color-themes-wuthering-waves-the-shorekeeper-dark.yaml", + "wuthering waves color themes (Wuthering Waves : The Shorekeeper)": "wuthering-waves-color-themes--wuthering-waves-the-shorekeeper.yaml", + "wuthering waves color themes (Wuthering Waves : Verina (Dark))": "wuthering-waves-color-themes-wuthering-waves-verina-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Verina)": "wuthering-waves-color-themes--wuthering-waves-verina.yaml", + "wuthering waves color themes (Wuthering Waves : Yinlin (Dark))": "wuthering-waves-color-themes-wuthering-waves-yinlin-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Yinlin)": "wuthering-waves-color-themes--wuthering-waves-yinlin.yaml", + "wuthering waves color themes (Wuthering Waves : Zhezhi (Dark))": "wuthering-waves-color-themes-wuthering-waves-zhezhi-dark.yaml", + "wuthering waves color themes (Wuthering Waves : Zhezhi)": "wuthering-waves-color-themes--wuthering-waves-zhezhi.yaml", "Wye Black": "wye-black.yaml", "Wye Dark": "wye-dark.yaml", "Wye Dark Soft": "wye-dark-soft.yaml", @@ -7337,19 +7993,22 @@ "X": "x.yaml", "Xaeon Dark": "xaeon-dark.yaml", "xaidozy_Color": "xaidozy-color.yaml", + "XANPIS (xis_one)": "xanpis--xis-one.yaml", "Xanthron Light": "xanthron-light.yaml", - "xava-color-theme": "xava-color-theme.yaml", + "xavaTheme": "xavatheme.yaml", "XCeoDark": "xceodark.yaml", "xcode-dark": "xcode-dark.yaml", + "XDuppYX Themes (my dark theme)": "xduppyx-themes--my-dark-theme.yaml", "Xecoy Dark": "xecoy-dark.yaml", "Xecoy Light": "xecoy-light.yaml", "Xenon": "xenon.yaml", + "XenoviaTheme": "xenoviatheme.yaml", + "Xeon Light": "xeon-light.yaml", "Xerobi Dark Theme": "xerobi-dark-theme.yaml", "Xerobi Light Theme": "xerobi-light-theme.yaml", "Xiali Vintage Rose Dark": "xiali-vintage-rose-dark.yaml", "Xiali Vintage Rose Light": "xiali-vintage-rose-light.yaml", "Xikreti": "xikreti.yaml", - "xis_one": "xis-one.yaml", "XK Dark Catppuccin Mocha": "xk-dark-catppuccin-mocha.yaml", "XK Dark Dracula": "xk-dark-dracula.yaml", "XK Dark Gruvbox": "xk-dark-gruvbox.yaml", @@ -7361,108 +8020,105 @@ "XK Light Rosé Pine": "xk-light-ros-pine.yaml", "XK Light Solarized": "xk-light-solarized.yaml", "xLumielVSCodeTheme": "xlumielvscodetheme.yaml", + "xochil": "xochil.yaml", "Xochil": "xochil.yaml", "xotocode-dark": "xotocode-dark.yaml", "xotopio": "xotopio.yaml", + "xotopio-dark": "xotopio-dark.yaml", "Xpyjs Black": "xpyjs-black.yaml", "xresources": "xresources.yaml", + "Xresources Theme plus": "xresources-theme-plus.yaml", "xresources_bordered": "xresources-bordered.yaml", "xresources_normal_dark": "xresources-normal-dark.yaml", "xresources-bordered": "xresources-bordered.yaml", "xrodev": "xrodev.yaml", "xs": "xs.yaml", "XSTheme": "xstheme.yaml", - "xThemis-Cyan": "xthemis-cyan.yaml", "Xtree Gold": "xtree-gold.yaml", + "XTree Gold": "xtree-gold.yaml", "xViewDark": "xviewdark.yaml", - "XxHTML": "xxhtml.yaml", + "XxHTML Themes (Orange)": "xxhtml-themes--orange.yaml", + "XxHTML Themes (XxHTML)": "xxhtml-themes--xxhtml.yaml", + "xxhtml-theme (Orange)": "xxhtml-theme--orange.yaml", "xxtereshko-light": "xxtereshko-light.yaml", "xzadudu179": "xzadudu179.yaml", "y3m": "y3m.yaml", "yaast": "yaast.yaml", "yagnesh": "yagnesh.yaml", + "yalpha dark eris": "yalpha-dark-eris.yaml", "yalpha-dark-eris": "yalpha-dark-eris.yaml", - "Yami Blue": "yami-blue.yaml", + "Yami": "yami.yaml", "Yanbaru Shadow": "yanbaru-shadow.yaml", "YANUS": "yanus.yaml", "Yarra Valley": "yarra-valley.yaml", - "Yaru": "yaru.yaml", - "Yaru Dark": "yaru-dark.yaml", + "Yaru VS Code Theme (Yaru Dark)": "yaru-vs-code-theme--yaru-dark.yaml", "Yaruna Aurora": "yaruna-aurora.yaml", "Yaruna Forest": "yaruna-forest.yaml", "Yaruna Midnight": "yaruna-midnight.yaml", "Yaruna Nova": "yaruna-nova.yaml", "YD Dark": "yd-dark.yaml", "YD Light": "yd-light.yaml", - "Ydrgzm LIGHT Theme": "ydrgzm-light-theme.yaml", + "YD LIGHT Theme": "yd-light-theme.yaml", "Yelan": "yelan.yaml", + "Yelan Dark Theme": "yelan-dark-theme.yaml", "Yell": "yell.yaml", "Yellow Beryl": "yellow-beryl.yaml", - "Yellow purple theme": "yellow-purple-theme.yaml", + "Yellow dark theme": "yellow-dark-theme.yaml", + "yellow-green-blue-theme": "yellow-green-blue-theme.yaml", "Yellow-Green-Blue-Theme": "yellow-green-blue-theme.yaml", "Yellow-ish": "yellow-ish.yaml", "Yellowed": "yellowed.yaml", "Yerba": "yerba.yaml", - "Yet Another Solarized Theme (Dark)": "yet-another-solarized-theme-dark.yaml", - "Yet Another Solarized Theme (Light)": "yet-another-solarized-theme-light.yaml", + "Yet Another Solarized Theme (Yet Another Solarized Theme (Dark))": "yet-another-solarized-theme-yet-another-solarized-theme-dark.yaml", + "Yet Another Solarized Theme (Yet Another Solarized Theme (Light))": "yet-another-solarized-theme-yet-another-solarized-theme-light.yaml", "YharnizedTheme": "yharnizedtheme.yaml", "yinloonga_c++": "yinloonga-c.yaml", - "yitzchok": "yitzchok.yaml", - "yitzchok-contrast": "yitzchok-contrast.yaml", - "yitzchok-light": "yitzchok-light.yaml", "ylw-dark-theme": "ylw-dark-theme.yaml", "Yoda": "yoda.yaml", - "Yoda - Mystical Force": "yoda-mystical-force.yaml", "Yohualli Eclipse": "yohualli-eclipse.yaml", "Yohualli Lunaris": "yohualli-lunaris.yaml", "Yohualli Nebulune": "yohualli-nebulune.yaml", "Yohualli Penumbra": "yohualli-penumbra.yaml", - "Yoncé": "yonc.yaml", + "Yonce": "yonce.yaml", "yondog-dark": "yondog-dark.yaml", + "YoRHa Theme": "yorha-theme.yaml", "Yotei": "yotei.yaml", "yoth-theme-dark": "yoth-theme-dark.yaml", "yoyo theme": "yoyo-theme.yaml", "yoyo theme green": "yoyo-theme-green.yaml", "ystheme": "ystheme.yaml", - "YTheme Dark": "ytheme-dark.yaml", + "YTheme": "ytheme.yaml", "Yttrium Dark": "yttrium-dark.yaml", "Yttrium light": "yttrium-light.yaml", "yue-theme": "yue-theme.yaml", "Yukinord": "yukinord.yaml", - "yule": "yule.yaml", - "yule-contrast": "yule-contrast.yaml", - "yule-light": "yule-light.yaml", "yulon": "yulon.yaml", "yum": "yum.yaml", + "Yum": "yum.yaml", "Yurei Dark Theme": "yurei-dark-theme.yaml", "Yuru": "yuru.yaml", "yuru black": "yuru-black.yaml", - "Yuuyake - dark": "yuuyake-dark.yaml", - "yuyuko.vscode": "yuyuko-vscode.yaml", - "yuyuko.vscode ocean": "yuyuko-vscode-ocean.yaml", + "Yuuyake": "yuuyake.yaml", + "yuyuko-vim-vsc (yuyuko.vscode ocean)": "yuyuko-vim-vsc--yuyuko-vscode-ocean.yaml", + "yuyuko-vim-vsc (yuyuko.vscode)": "yuyuko-vim-vsc--yuyuko-vscode.yaml", "Z-DarkTheme": "z-darktheme.yaml", "z3r0": "z3r0.yaml", + "Z3R0": "z3r0.yaml", "Zach's Blue Theme": "zach-s-blue-theme.yaml", "ZacharyWilliamson": "zacharywilliamson.yaml", - "zacks": "zacks.yaml", - "zacks-contrast": "zacks-contrast.yaml", - "zacks-light": "zacks-light.yaml", - "Zaeri Dark": "zaeri-dark.yaml", - "zaher-color-theme": "zaher-color-theme.yaml", + "Zaeri": "zaeri.yaml", + "Zaher": "zaher.yaml", "Zan": "zan.yaml", - "Zandromeda": "zandromeda.yaml", - "zap": "zap.yaml", - "Zappts": "zappts.yaml", "ZBRA Dark": "zbra-dark.yaml", "Zeal": "zeal.yaml", - "ZednosTheme v1": "zednostheme-v1.yaml", - "Zelda-Dark": "zelda-dark.yaml", + "ZednosTheme": "zednostheme.yaml", + "Zedromeda": "zedromeda.yaml", + "zelda": "zelda.yaml", "zelzea": "zelzea.yaml", - "ZemarColorTheme": "zemarcolortheme.yaml", + "Zelzea": "zelzea.yaml", "ZeMizer Grey": "zemizer-grey.yaml", "Zen": "zen.yaml", "Zen Dark": "zen-dark.yaml", - "Zen Mono": "zen-mono.yaml", "Zen Sakura (Cherry Blossom)": "zen-sakura-cherry-blossom.yaml", "zen-theme": "zen-theme.yaml", "Zenbones Dark": "zenbones-dark.yaml", @@ -7504,6 +8160,8 @@ "Zenbones Seoulbones Light": "zenbones-seoulbones-light.yaml", "Zenbones Seoulbones Light Bright": "zenbones-seoulbones-light-bright.yaml", "Zenbones Seoulbones Light Dim": "zenbones-seoulbones-light-dim.yaml", + "Zenbones Themes (Zenbones Dark)": "zenbones-themes--zenbones-dark.yaml", + "Zenbones Themes (Zenbones Light)": "zenbones-themes--zenbones-light.yaml", "Zenbones Tokyobones Dark": "zenbones-tokyobones-dark.yaml", "Zenbones Tokyobones Dark Stark": "zenbones-tokyobones-dark-stark.yaml", "Zenbones Tokyobones Dark Warm": "zenbones-tokyobones-dark-warm.yaml", @@ -7524,44 +8182,48 @@ "Zenbones Zenwritten Light Dim": "zenbones-zenwritten-light-dim.yaml", "Zenbook UX534FTC White-Gold V1 Full Dark": "zenbook-ux534ftc-white-gold-v1-full-dark.yaml", "Zenbook UX534FTC White-Gold V2.1.95": "zenbook-ux534ftc-white-gold-v2-1-95.yaml", - "Zenburn": "zenburn.yaml", "Zene Dark Theme": "zene-dark-theme.yaml", - "Zene Light Theme": "zene-light-theme.yaml", "Zeneth": "zeneth.yaml", "ZenFlow Noir": "zenflow-noir.yaml", - "Zenith": "zenith.yaml", - "Zenith Aurora": "zenith-aurora.yaml", - "Zenith Dawn": "zenith-dawn.yaml", - "Zenith Dusk": "zenith-dusk.yaml", - "Zenith Forest": "zenith-forest.yaml", - "Zenith Midnight": "zenith-midnight.yaml", - "Zenith Neutral": "zenith-neutral.yaml", - "Zenith Ocean": "zenith-ocean.yaml", - "Zenith Rosé": "zenith-ros.yaml", - "Zenith Zen": "zenith-zen.yaml", + "Zenith Color Theme (Zenith Aurora)": "zenith-color-theme--zenith-aurora.yaml", + "Zenith Color Theme (Zenith Dawn)": "zenith-color-theme--zenith-dawn.yaml", + "Zenith Color Theme (Zenith Dusk)": "zenith-color-theme--zenith-dusk.yaml", + "Zenith Color Theme (Zenith Forest)": "zenith-color-theme--zenith-forest.yaml", + "Zenith Color Theme (Zenith Midnight)": "zenith-color-theme--zenith-midnight.yaml", + "Zenith Color Theme (Zenith Ocean)": "zenith-color-theme--zenith-ocean.yaml", + "Zenith Color Theme (Zenith Rosé)": "zenith-color-theme--zenith-ros.yaml", + "Zenith Color Theme (Zenith Zen)": "zenith-color-theme--zenith-zen.yaml", + "Zenith Theme (Zenith Neutral)": "zenith-theme--zenith-neutral.yaml", + "Zenith Theme (Zenith)": "zenith-theme--zenith.yaml", + "Zenith UI (Black Purple)": "zenith-ui--black-purple.yaml", + "Zenith UI (Deep Purple)": "zenith-ui--deep-purple.yaml", "Zenitria AMOLED": "zenitria-amoled.yaml", "ZenML": "zenml.yaml", - "Zero [WIP]": "zero-wip.yaml", + "Zero": "zero.yaml", "Zero's Solarized": "zero-s-solarized.yaml", - "Zeus Turquoise": "zeus-turquoise.yaml", - "Zeus Yelo": "zeus-yelo.yaml", + "Zeus Theme (Zeus Turquoise)": "zeus-theme--zeus-turquoise.yaml", + "Zeus Theme (Zeus Yelo)": "zeus-theme--zeus-yelo.yaml", + "zh'themes (Collapse)": "zh-themes--collapse.yaml", + "zh'themes (Monocr)": "zh-themes--monocr.yaml", + "zh'themes (zhxo'lt)": "zh-themes--zhxo-lt.yaml", + "zh'themes (zhxo'red)": "zh-themes--zhxo-red.yaml", + "zh'themes (zhxo'st)": "zh-themes--zhxo-st.yaml", + "zh'themes (zhxo'yll)": "zh-themes--zhxo-yll.yaml", "zhangpengtao-black": "zhangpengtao-black.yaml", "Zhongli": "zhongli.yaml", - "zhxo'lt": "zhxo-lt.yaml", - "zhxo'red": "zhxo-red.yaml", - "zhxo'st": "zhxo-st.yaml", - "zhxo'yll": "zhxo-yll.yaml", "Zinc": "zinc.yaml", - "Zokugun Obsidium": "zokugun-obsidium.yaml", + "Zokugun Themes": "zokugun-themes.yaml", + "Zora Dark Theme (green)": "zora-dark-theme--green.yaml", + "Zora Dark Theme (Untitled)": "zora-dark-theme--untitled.yaml", "Zora Mirage": "zora-mirage.yaml", "Zora Mirage Green": "zora-mirage-green.yaml", "ZoraDark": "zoradark.yaml", "Zordon Colors": "zordon-colors.yaml", - "Zoren Breeze": "zoren-breeze.yaml", + "Zoren Theme": "zoren-theme.yaml", "zTheme": "ztheme.yaml", "Ztok": "ztok.yaml", - "Zunda dark": "zunda-dark.yaml", - "zux purple - minimal": "zux-purple-minimal.yaml", + "Zunda": "zunda.yaml", + "Zux": "zux.yaml", "ZweL": "zwel.yaml", "Zxxn": "zxxn.yaml", "Zygomatic Blue": "zygomatic-blue.yaml", diff --git a/themes/index.yaml b/themes/index.yaml deleted file mode 100644 index 20e1baab..00000000 --- a/themes/index.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "index" -source: - marketplace_id: "sudoaugustin.vslook" - version: "0.3.2" - installs: 10351 - rating: 4.33 - ratings: 6 - author: "Augustin Joseph" - repo: "https://github.com/sudoaugustin/vslook" - url: "https://marketplace.visualstudio.com/items?itemName=sudoaugustin.vslook" -colors: - bg: "#0F172A" - fg: "#FFFFFF" - black: "#334155" - red: "#E11D48" - green: "#059669" - yellow: "#D97706" - blue: "#2563EB" - magenta: "#C026D3" - cyan: "#0891B2" - white: "#94A3B8" - brightBlack: "#1E293B" - brightRed: "#FB7185" - brightGreen: "#34D399" - brightYellow: "#FBBF24" - brightBlue: "#0EA5E9" - brightMagenta: "#E879F9" - brightCyan: "#22D3EE" - brightWhite: "#E2E8F0" -meta: - mode: "dark" - accent: "pink" - hue: 266 - pair: null - contrast: - fg: 106.8 - black: 7.4 - red: 30.1 - green: 35.9 - yellow: 42.1 - blue: 25.7 - magenta: 29.5 - cyan: 36.7 - white: 50.6 - brightBlack: 0 - brightRed: 49.2 - brightGreen: 65.1 - brightYellow: 72.6 - brightBlue: 47.9 - brightMagenta: 53 - brightCyan: 68.5 - brightWhite: 91.4 diff --git a/themes/indie-dev.yaml b/themes/indie-dev.yaml deleted file mode 100644 index 56e0166c..00000000 --- a/themes/indie-dev.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Indie Dev" -source: - marketplace_id: "Lucwx.indie-dev" - version: "0.0.2" - installs: 2539 - rating: 5 - ratings: 1 - author: "Lucwx" - repo: "https://github.com/lucwx/indie-dev" - url: "https://marketplace.visualstudio.com/items?itemName=Lucwx.indie-dev" -colors: - bg: "#1A1B26" - fg: "#A9B1D6" - black: "#363B54" - red: "#F7768E" - green: "#41A6B5" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#787C99" - brightBlack: "#363B54" - brightRed: "#F7768E" - brightGreen: "#41A6B5" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#ACB0D0" -meta: - mode: "dark" - accent: "red" - hue: 280 - pair: null - contrast: - fg: 59.3 - black: 0 - red: 49.4 - green: 45.8 - yellow: 62.2 - blue: 51.1 - magenta: 55 - cyan: 70.5 - white: 32.1 - brightBlack: 0 - brightRed: 49.4 - brightGreen: 45.8 - brightYellow: 62.2 - brightBlue: 51.1 - brightMagenta: 55 - brightCyan: 70.5 - brightWhite: 59 diff --git a/themes/indielayer.yaml b/themes/indielayer.yaml index a3b604d2..a906cab3 100644 --- a/themes/indielayer.yaml +++ b/themes/indielayer.yaml @@ -8,6 +8,7 @@ source: author: "Indielayer" repo: "https://github.com/indielayer/vscode-indielayer-theme" url: "https://marketplace.visualstudio.com/items?itemName=Indielayer.vscode-indielayer-theme" + formats: null colors: bg: "#222937" fg: "#ABB2BF" diff --git a/themes/indigo-and-amaranth.yaml b/themes/indigo-and-amaranth.yaml index 3c021e0b..f67ad7ca 100644 --- a/themes/indigo-and-amaranth.yaml +++ b/themes/indigo-and-amaranth.yaml @@ -8,6 +8,7 @@ source: author: "es-purple-theme-help" repo: null url: "https://marketplace.visualstudio.com/items?itemName=es-purple-theme-help.better-purple-theme" + formats: null colors: bg: "#1E172C" fg: "#D4D4D4" diff --git a/themes/indigo-ice.yaml b/themes/indigo-ice.yaml index 66ec4c74..3c61c79a 100644 --- a/themes/indigo-ice.yaml +++ b/themes/indigo-ice.yaml @@ -8,6 +8,7 @@ source: author: "shariemakesart" repo: "https://github.com/SharieRhea/Indigo_Ice" url: "https://marketplace.visualstudio.com/items?itemName=shariemakesart.indigo-ice-theme" + formats: null colors: bg: "#08041D" fg: "#CCCCCC" diff --git a/themes/indique-theme.yaml b/themes/indique-theme.yaml index ecb32d30..93655c95 100644 --- a/themes/indique-theme.yaml +++ b/themes/indique-theme.yaml @@ -1,4 +1,4 @@ -name: "Indique Theme" +name: "indique-theme" source: marketplace_id: "IDNQ.indique-theme" version: "1.1.0" @@ -8,6 +8,7 @@ source: author: "IDNQ" repo: "https://github.com/IDNQ/indique-theme" url: "https://marketplace.visualstudio.com/items?itemName=IDNQ.indique-theme" + formats: null colors: bg: "#16191D" fg: "#E1E4E8" diff --git a/themes/industry.yaml b/themes/industry.yaml index 7726383a..46e4c44d 100644 --- a/themes/industry.yaml +++ b/themes/industry.yaml @@ -8,6 +8,7 @@ source: author: "SGS" repo: "https://github.com/sgsks/pj_industry_vscode_theme" url: "https://marketplace.visualstudio.com/items?itemName=SGS.industry-theme" + formats: null colors: bg: "#171716" fg: "#CCCCCC" diff --git a/themes/infatuation.yaml b/themes/infatuation.yaml index b196acd2..de6427d6 100644 --- a/themes/infatuation.yaml +++ b/themes/infatuation.yaml @@ -1,52 +1,53 @@ name: "Infatuation" source: - marketplace_id: "yuna495.pinklily" - version: "1.0.6" - installs: 114 - rating: 0 - ratings: 0 - author: "yuna495" - repo: "https://github.com/yuna495/PinkLily" - url: "https://marketplace.visualstudio.com/items?itemName=yuna495.pinklily" + marketplace_id: "PixelsInTheSky.infatuation" + version: "0.1.0" + installs: 9194 + rating: 5 + ratings: 1 + author: "PixelsInTheSky" + repo: "https://github.com/Seytani/Infatuation-VS-Code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PixelsInTheSky.infatuation" + formats: null colors: - bg: "#080808" - fg: "#FD9BCC" + bg: "#2A2A2C" + fg: "#E3E3E3" black: "#000000" red: "#E73752" - green: "#00C060" - yellow: "#F7D380" - blue: "#505DF0" - magenta: "#C010A0" - cyan: "#46D2E8" - white: "#FD9BCC" - brightBlack: "#808080" - brightRed: "#FF5570" - brightGreen: "#11FF84" - brightYellow: "#FFE090" - brightBlue: "#7580FF" - brightMagenta: "#FF14E0" - brightCyan: "#80E5F2" + green: "#ADFFA6" + yellow: "#FFE7AF" + blue: "#BB57FF" + magenta: "#46D2E8" + cyan: "#FF59A0" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#E41535" + brightGreen: "#70DE66" + brightYellow: "#F7D380" + brightBlue: "#CA7DFF" + brightMagenta: "#0ABAFF" + brightCyan: "#FFA3CA" brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "pink" + accent: "magenta" hue: null pair: null contrast: - fg: 64.9 + fg: 85.9 black: 0 - red: 34.6 - green: 55.2 - yellow: 82.3 - blue: 27.4 - magenta: 26.3 - cyan: 69.4 - white: 64.9 - brightBlack: 34.7 - brightRed: 44.9 - brightGreen: 87.6 - brightYellow: 89.6 - brightBlue: 41.1 - brightMagenta: 44.1 - brightCyan: 81.6 - brightWhite: 107.8 + red: 30.8 + green: 91.2 + yellow: 89.8 + blue: 35.5 + magenta: 65.6 + cyan: 43.3 + white: 104 + brightBlack: 19.2 + brightRed: 27.5 + brightGreen: 68.7 + brightYellow: 78.5 + brightBlue: 46.6 + brightMagenta: 55.4 + brightCyan: 64 + brightWhite: 104 diff --git a/themes/inferius.yaml b/themes/inferius.yaml index 3d39866e..c1befdc3 100644 --- a/themes/inferius.yaml +++ b/themes/inferius.yaml @@ -8,6 +8,7 @@ source: author: "inferigang" repo: null url: "https://marketplace.visualstudio.com/items?itemName=inferigang.inferius" + formats: null colors: bg: "#202020" fg: "#F5F5F5" diff --git a/themes/infinitus.yaml b/themes/infinitus.yaml index c956cf4e..53e2bff8 100644 --- a/themes/infinitus.yaml +++ b/themes/infinitus.yaml @@ -8,6 +8,7 @@ source: author: "Jaya Vel Rajan" repo: "https://github.com/Jayavelrajan/Infinitus-vscode-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=jayavelrajan.infinitus-dark" + formats: null colors: bg: "#122133" fg: "#B9CDDA" diff --git a/themes/infinity-64-blackboard-by-shingo-murata.yaml b/themes/infinity-64-blackboard-by-shingo-murata.yaml index 3d2792ae..facb56c5 100644 --- a/themes/infinity-64-blackboard-by-shingo-murata.yaml +++ b/themes/infinity-64-blackboard-by-shingo-murata.yaml @@ -8,6 +8,7 @@ source: author: "Markus Rafferty" repo: "https://github.com/markusrafferty/infinity-64-theme" url: "https://marketplace.visualstudio.com/items?itemName=markusrafferty.infinity-64-theme" + formats: null colors: bg: "#1A1A1A" fg: "#DFDFDF" diff --git a/themes/infinity-64-whiteboard-by-shingo-murata.yaml b/themes/infinity-64-whiteboard-by-shingo-murata.yaml index a80419c5..c668d557 100644 --- a/themes/infinity-64-whiteboard-by-shingo-murata.yaml +++ b/themes/infinity-64-whiteboard-by-shingo-murata.yaml @@ -8,6 +8,7 @@ source: author: "Markus Rafferty" repo: "https://github.com/markusrafferty/infinity-64-theme" url: "https://marketplace.visualstudio.com/items?itemName=markusrafferty.infinity-64-theme" + formats: null colors: bg: "#F4F4F4" fg: "#303030" diff --git a/themes/infinity-dark-contrast.yaml b/themes/infinity-dark-contrast.yaml deleted file mode 100644 index 8501cb9b..00000000 --- a/themes/infinity-dark-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Infinity Dark Contrast" -source: - marketplace_id: "arthur404dev.thanos-theme" - version: "0.0.6" - installs: 6550 - rating: 5 - ratings: 3 - author: "Arthur 404 dev" - repo: "https://github.com/thanos-theme/visual-studio-code" - url: "https://marketplace.visualstudio.com/items?itemName=arthur404dev.thanos-theme" -colors: - bg: "#161926" - fg: "#B9C3D5" - black: "#1A1A1A" - red: "#FF206E" - green: "#58EBD7" - yellow: "#FABC2A" - blue: "#9D65FF" - magenta: "#00A1E4" - cyan: "#9D65FF" - white: "#C4C5B5" - brightBlack: "#625E4C" - brightRed: "#FF206E" - brightGreen: "#58EBD7" - brightYellow: "#FABC2A" - brightBlue: "#9D65FF" - brightMagenta: "#00A1E4" - brightCyan: "#9D65FF" - brightWhite: "#F6F6EF" -meta: - mode: "dark" - accent: "red" - hue: 274 - pair: null - contrast: - fg: 68.7 - black: 0 - red: 38.1 - green: 80.1 - yellow: 71.1 - blue: 36.7 - magenta: 45.8 - cyan: 36.7 - white: 69.5 - brightBlack: 18.3 - brightRed: 38.1 - brightGreen: 80.1 - brightYellow: 71.1 - brightBlue: 36.7 - brightMagenta: 45.8 - brightCyan: 36.7 - brightWhite: 100.3 diff --git a/themes/infinity-night-theme.yaml b/themes/infinity-night-theme.yaml index 7485f7ad..5839a6e9 100644 --- a/themes/infinity-night-theme.yaml +++ b/themes/infinity-night-theme.yaml @@ -1,11 +1,14 @@ -name: "Infinity Night Theme" +name: "Infinity Night theme" source: marketplace_id: "AmmarDev.Infinity-night-theme" version: "1.0.1" installs: 107 + rating: 0 + ratings: 0 author: "Ammar Dev" repo: "https://github.com/ammardevz/Infinity-Night-theme" url: "https://marketplace.visualstudio.com/items?itemName=AmmarDev.Infinity-night-theme" + formats: null colors: bg: "#1D252C" fg: "#D4D4D4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: 245 + pair: null contrast: fg: 77.7 black: 0 diff --git a/themes/infinity.yaml b/themes/infinity.yaml index fe0802e0..b8239b25 100644 --- a/themes/infinity.yaml +++ b/themes/infinity.yaml @@ -8,6 +8,7 @@ source: author: "Satvik Virmani" repo: "https://github.com/satvikvirmani/infinity-theme" url: "https://marketplace.visualstudio.com/items?itemName=satvikvirmani.infinity-theme" + formats: null colors: bg: "#1D2433" fg: "#ECECF3" diff --git a/themes/ingeni.yaml b/themes/ingeni.yaml index 60eee8de..ba4a3c1e 100644 --- a/themes/ingeni.yaml +++ b/themes/ingeni.yaml @@ -8,6 +8,7 @@ source: author: "CodeiusZ" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CodeiusZ.ingeni" + formats: null colors: bg: "#0A0917" fg: "#D4D4D4" diff --git a/themes/inheritance.yaml b/themes/inheritance.yaml deleted file mode 100644 index 92d452df..00000000 --- a/themes/inheritance.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Inheritance" -source: - marketplace_id: "icao.inheritance" - version: "0.3.0" - installs: 3311 - rating: 5 - ratings: 2 - author: "icao" - repo: "https://github.com/icao/inheritance" - url: "https://marketplace.visualstudio.com/items?itemName=icao.inheritance" -colors: - bg: "#181919" - fg: "#BAC7E4" - black: "#181919" - red: "#FF4579" - green: "#37C756" - yellow: "#FFFA9E" - blue: "#26A5FF" - magenta: "#DE7DF7" - cyan: "#00D9FF" - white: "#F8FAFD" - brightBlack: "#7992B4" - brightRed: "#FF4579" - brightGreen: "#8DFF8D" - brightYellow: "#FFFA9E" - brightBlue: "#26A5FF" - brightMagenta: "#DE7DF7" - brightCyan: "#00D9FF" - brightWhite: "#F8FAFD" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 71.3 - black: 0 - red: 41.6 - green: 57.8 - yellow: 100.8 - blue: 49.6 - magenta: 52 - cyan: 72.1 - white: 103.2 - brightBlack: 41.5 - brightRed: 41.6 - brightGreen: 90.7 - brightYellow: 100.8 - brightBlue: 49.6 - brightMagenta: 52 - brightCyan: 72.1 - brightWhite: 103.2 diff --git a/themes/inkpot.yaml b/themes/inkpot.yaml index e634cf09..411dd3f9 100644 --- a/themes/inkpot.yaml +++ b/themes/inkpot.yaml @@ -8,6 +8,7 @@ source: author: "Ast3r0id" repo: "https://github.com/et3r/inkpot" url: "https://marketplace.visualstudio.com/items?itemName=Ast3r0id.inkpot" + formats: null colors: bg: "#1B1B33" fg: "#9387C2" diff --git a/themes/inksea-dank.yaml b/themes/inksea-dank.yaml index 5954ca4b..678b49b6 100644 --- a/themes/inksea-dank.yaml +++ b/themes/inksea-dank.yaml @@ -8,6 +8,7 @@ source: author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" + formats: null colors: bg: "#121216" fg: "#B7CF9F" diff --git a/themes/inksea-dark.yaml b/themes/inksea-dark.yaml index ab7461f3..2d899144 100644 --- a/themes/inksea-dark.yaml +++ b/themes/inksea-dark.yaml @@ -8,6 +8,7 @@ source: author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" + formats: null colors: bg: "#1A1D21" fg: "#C4CAD1" diff --git a/themes/inksea-dracula.yaml b/themes/inksea-dracula.yaml index 0502411b..285b8c35 100644 --- a/themes/inksea-dracula.yaml +++ b/themes/inksea-dracula.yaml @@ -8,6 +8,7 @@ source: author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" + formats: null colors: bg: "#1E1F29" fg: "#B8C2DE" diff --git a/themes/inksea-hacker.yaml b/themes/inksea-hacker.yaml index b1d628e9..aeed67fb 100644 --- a/themes/inksea-hacker.yaml +++ b/themes/inksea-hacker.yaml @@ -8,6 +8,7 @@ source: author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" + formats: null colors: bg: "#090D0C" fg: "#BBBBBB" diff --git a/themes/inksea-midnight.yaml b/themes/inksea-midnight.yaml index bce68d09..351bef26 100644 --- a/themes/inksea-midnight.yaml +++ b/themes/inksea-midnight.yaml @@ -8,6 +8,7 @@ source: author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" + formats: null colors: bg: "#0A0B0F" fg: "#C4CAD1" diff --git a/themes/inksea-oceanic.yaml b/themes/inksea-oceanic.yaml index e0ce03aa..0747dabe 100644 --- a/themes/inksea-oceanic.yaml +++ b/themes/inksea-oceanic.yaml @@ -8,6 +8,7 @@ source: author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" + formats: null colors: bg: "#15171C" fg: "#A7AEC4" diff --git a/themes/inksea-sea-monkey.yaml b/themes/inksea-sea-monkey.yaml index c951013c..3b9fa25d 100644 --- a/themes/inksea-sea-monkey.yaml +++ b/themes/inksea-sea-monkey.yaml @@ -8,6 +8,7 @@ source: author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" + formats: null colors: bg: "#1A1D21" fg: "#C4CAD1" diff --git a/themes/inksea.yaml b/themes/inksea.yaml index 5956895c..2627ba2a 100644 --- a/themes/inksea.yaml +++ b/themes/inksea.yaml @@ -8,6 +8,7 @@ source: author: "_inkSea" repo: "https://github.com/inksea/inksea-theme" url: "https://marketplace.visualstudio.com/items?itemName=inksea.inksea-theme" + formats: null colors: bg: "#212529" fg: "#C4CAD1" diff --git a/themes/inkstained.yaml b/themes/inkstained.yaml index bd3eee4c..80314027 100644 --- a/themes/inkstained.yaml +++ b/themes/inkstained.yaml @@ -8,6 +8,7 @@ source: author: "Balint Fulop" repo: "https://github.com/bfulop/inkstained" url: "https://marketplace.visualstudio.com/items?itemName=bfulop.inkstained" + formats: null colors: bg: "#EDEBE9" fg: "#557498" diff --git a/themes/inovando-theme.yaml b/themes/inovando-theme.yaml deleted file mode 100644 index 33fa3bfd..00000000 --- a/themes/inovando-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Inovando Theme" -source: - marketplace_id: "Inovando.inovando-theme" - version: "1.0.2" - installs: 630 - rating: 0 - ratings: 0 - author: "Inovando" - repo: "https://github.com/joaorodrs/inovando-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Inovando.inovando-theme" -colors: - bg: "#191622" - fg: "#D4D4D4" - black: "#606060" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 296 - pair: null - contrast: - fg: 79.4 - black: 19.4 - red: 26.6 - green: 52.9 - yellow: 85.5 - blue: 27.3 - magenta: 29.7 - cyan: 47.5 - white: 89.9 - brightBlack: 21.9 - brightRed: 38.5 - brightGreen: 63.4 - brightYellow: 95.5 - brightBlue: 39.9 - brightMagenta: 45.3 - brightCyan: 55.3 - brightWhite: 89.9 diff --git a/themes/insane.yaml b/themes/insane.yaml deleted file mode 100644 index 28c32978..00000000 --- a/themes/insane.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Insane" -source: - marketplace_id: "VitorRubimPassos.insane-dark-theme" - version: "2.0.1" - installs: 823 - rating: 5 - ratings: 2 - author: "Vitor Rubim Passos" - repo: "https://github.com/vitorrubim1/insane-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=VitorRubimPassos.insane-dark-theme" -colors: - bg: "#111111" - fg: "#F0E68C" - black: "#000000" - red: "#FC4737" - green: "#04D361" - yellow: "#E1C542" - blue: "#4863F7" - magenta: "#633BBC" - cyan: "#1EF7D0" - white: "#C4C4CC" - brightBlack: "#8D8D99" - brightRed: "#FF7373" - brightGreen: "#67FF8A" - brightYellow: "#FFFA72" - brightBlue: "#6A80FF" - brightMagenta: "#996DFF" - brightCyan: "#7BEAEA" - brightWhite: "#8D8D99" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 89.5 - black: 0 - red: 40.7 - green: 63.9 - yellow: 71.7 - blue: 28.7 - magenta: 16.8 - cyan: 85.4 - white: 70.8 - brightBlack: 41 - brightRed: 50.6 - brightGreen: 89.2 - brightYellow: 100.5 - brightBlue: 39.8 - brightMagenta: 38.9 - brightCyan: 82.9 - brightWhite: 41 diff --git a/themes/insight.yaml b/themes/insight.yaml index 96e50979..b1b499bb 100644 --- a/themes/insight.yaml +++ b/themes/insight.yaml @@ -8,6 +8,7 @@ source: author: "Insight Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=InsightTheme.insight" + formats: null colors: bg: "#282C34" fg: "#DDDDDD" diff --git a/themes/inspiration.yaml b/themes/inspiration.yaml index 0f4176c1..2ea73412 100644 --- a/themes/inspiration.yaml +++ b/themes/inspiration.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/inspiration_themevsc" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" + formats: null colors: bg: "#140701" fg: "#EEFFFF" diff --git a/themes/instamuch.yaml b/themes/instamuch.yaml index 7ddccc41..a2b74b83 100644 --- a/themes/instamuch.yaml +++ b/themes/instamuch.yaml @@ -8,6 +8,7 @@ source: author: "uditiarora" repo: "https://github.com/uditiarora/InstaMuch-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=uditiarora.instamuch-vscode" + formats: null colors: bg: "#390039" fg: "#F5899D" diff --git a/themes/intellij-dark-color-theme.yaml b/themes/intellij-dark-color-theme.yaml index 6a08226e..6bd4159f 100644 --- a/themes/intellij-dark-color-theme.yaml +++ b/themes/intellij-dark-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "0dinD" repo: "https://gitlab.com/zerodind/familiar-java-themes" url: "https://marketplace.visualstudio.com/items?itemName=zerodind.familiar-java-themes" + formats: null colors: bg: "#2B2B2B" fg: "#A9B7C6" diff --git a/themes/intellij-idea-islands-dark.yaml b/themes/intellij-idea-islands-dark.yaml deleted file mode 100644 index c5a25927..00000000 --- a/themes/intellij-idea-islands-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "intellij-idea-islands-dark" -source: - marketplace_id: "OleksandrHavrysh.vscode-intellij-theme" - version: "1.1.1" - installs: 2852 - rating: 5 - ratings: 2 - author: "Oleksandr Havrysh" - repo: "https://github.com/a-havrysh/vscode-intellij-theme" - url: "https://marketplace.visualstudio.com/items?itemName=OleksandrHavrysh.vscode-intellij-theme" -colors: - bg: "#191A1C" - fg: "#BCBEC4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 66.1 - black: 0 - red: 26.4 - green: 52.7 - yellow: 85.3 - blue: 27.1 - magenta: 29.4 - cyan: 47.2 - white: 89.7 - brightBlack: 21.7 - brightRed: 38.2 - brightGreen: 63.2 - brightYellow: 95.3 - brightBlue: 39.7 - brightMagenta: 45 - brightCyan: 55.1 - brightWhite: 89.7 diff --git a/themes/intellij-idea-islands-light.yaml b/themes/intellij-idea-islands-light.yaml deleted file mode 100644 index 94cf14e5..00000000 --- a/themes/intellij-idea-islands-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "intellij-idea-islands-light" -source: - marketplace_id: "OleksandrHavrysh.vscode-intellij-theme" - version: "1.1.1" - installs: 2852 - rating: 5 - ratings: 2 - author: "Oleksandr Havrysh" - repo: "https://github.com/a-havrysh/vscode-intellij-theme" - url: "https://marketplace.visualstudio.com/items?itemName=OleksandrHavrysh.vscode-intellij-theme" -colors: - bg: "#FFFFFF" - fg: "#080808" - black: "#080808" - red: "#DE1B2E" - green: "#067D17" - yellow: "#9E880D" - blue: "#0033B3" - magenta: "#871094" - cyan: "#007E8A" - white: "#FFFFFF" - brightBlack: "#6C707E" - brightRed: "#F05661" - brightGreen: "#7FC784" - brightYellow: "#F2BF57" - brightBlue: "#88ADF7" - brightMagenta: "#A678F2" - brightCyan: "#00B5BC" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 105.9 - black: 105.9 - red: 71.6 - green: 75.8 - yellow: 62.5 - blue: 91.6 - magenta: 86.9 - cyan: 72.9 - white: 0 - brightBlack: 74.2 - brightRed: 60.3 - brightGreen: 39.1 - brightYellow: 30.2 - brightBlue: 44.1 - brightMagenta: 58.8 - brightCyan: 48.8 - brightWhite: 0 diff --git a/themes/intellij-idea-new-ui.yaml b/themes/intellij-idea-new-ui.yaml deleted file mode 100644 index 152155bd..00000000 --- a/themes/intellij-idea-new-ui.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "IntelliJ IDEA New UI" -source: - marketplace_id: "AnandaBibekRay.intellij-idea-new-ui-theme" - version: "1.0.5" - installs: 23361 - rating: 4 - ratings: 4 - author: "Ananda Bibek Ray" - repo: "https://github.com/anandbibek/vscode-intellij-new-ui-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AnandaBibekRay.intellij-idea-new-ui-theme" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#6E6E6E" - red: "#D70000" - green: "#5F8700" - yellow: "#AF8700" - blue: "#0087FF" - magenta: "#AF005F" - cyan: "#00AFAF" - white: "#E4E4E4" - brightBlack: "#1C1C1C" - brightRed: "#D75F00" - brightGreen: "#585858" - brightYellow: "#626262" - brightBlue: "#808080" - brightMagenta: "#5F5FAF" - brightCyan: "#8A8A8A" - brightWhite: "#FFFFD7" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 106 - black: 75.2 - red: 73.9 - green: 69 - yellow: 60.6 - blue: 62.3 - magenta: 81.9 - cyan: 51.9 - white: 13.5 - brightBlack: 104 - brightRed: 64.7 - brightGreen: 84.7 - brightYellow: 80.5 - brightBlue: 66.9 - brightMagenta: 77.9 - brightCyan: 62.1 - brightWhite: 0 diff --git a/themes/intellij-light-color-theme.yaml b/themes/intellij-light-color-theme.yaml deleted file mode 100644 index 33f018c3..00000000 --- a/themes/intellij-light-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "intellij-light-color-theme" -source: - marketplace_id: "zerodind.familiar-java-themes" - version: "0.1.7" - installs: 58663 - rating: 5 - ratings: 13 - author: "0dinD" - repo: "https://gitlab.com/zerodind/familiar-java-themes" - url: "https://marketplace.visualstudio.com/items?itemName=zerodind.familiar-java-themes" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#CD0000" - green: "#00CD00" - yellow: "#C4A000" - blue: "#0000EE" - magenta: "#CD00CD" - cyan: "#00CCCC" - white: "#AAAAAA" - brightBlack: "#555555" - brightRed: "#FF0000" - brightGreen: "#00FF00" - brightYellow: "#EAEA00" - brightBlue: "#5C5CFF" - brightMagenta: "#FF00FF" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106 - black: 106 - red: 76.3 - green: 41.4 - yellow: 49 - blue: 88.1 - magenta: 70 - cyan: 38 - white: 45.8 - brightBlack: 85.9 - brightRed: 64.1 - brightGreen: 17.1 - brightYellow: 14.2 - brightBlue: 72.3 - brightMagenta: 55.6 - brightCyan: 11.8 - brightWhite: 0 diff --git a/themes/intellij-light-deaft.yaml b/themes/intellij-light-deaft.yaml index b211f268..91686bbc 100644 --- a/themes/intellij-light-deaft.yaml +++ b/themes/intellij-light-deaft.yaml @@ -8,6 +8,7 @@ source: author: "Nejc Brelih-Wasowski" repo: "https://github.com/nejcbw/darcula-code" url: "https://marketplace.visualstudio.com/items?itemName=nejcbw.darcula-code" + formats: null colors: bg: "#FFFFFF" fg: "#080808" diff --git a/themes/intelliyay-color-theme.yaml b/themes/intelliyay-color-theme.yaml deleted file mode 100644 index 0000928a..00000000 --- a/themes/intelliyay-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "IntelliYay-color-theme" -source: - marketplace_id: "ale-ferrero.intelliyay-theme" - version: "0.0.4" - installs: 196 - rating: 0 - ratings: 0 - author: "Alejandro Ferrero" - repo: "https://github.com/aleferrero98/IntelliYay-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=ale-ferrero.intelliyay-theme" -colors: - bg: "#1E1F22" - fg: "#A9B7C6" - black: "#FFFFFF" - red: "#FF6B68" - green: "#A8C023" - yellow: "#D6BF55" - blue: "#5394EC" - magenta: "#AE8ABE" - cyan: "#299999" - white: "#999999" - brightBlack: "#555555" - brightRed: "#FF8785" - brightGreen: "#A8C023" - brightYellow: "#FFFF00" - brightBlue: "#7EAEF1" - brightMagenta: "#FF99FF" - brightCyan: "#6CDADA" - brightWhite: "#1F1F1F" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 60.5 - black: 105.9 - red: 47.1 - green: 60.5 - yellow: 66.3 - blue: 42.3 - magenta: 44.2 - cyan: 38.2 - white: 45.2 - brightBlack: 14.1 - brightRed: 54.8 - brightGreen: 60.5 - brightYellow: 100.7 - brightBlue: 55.3 - brightMagenta: 65.6 - brightCyan: 72.1 - brightWhite: 0 diff --git a/themes/intergalactic.yaml b/themes/intergalactic.yaml deleted file mode 100644 index 1fab12ee..00000000 --- a/themes/intergalactic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Intergalactic" -source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - rating: 0 - ratings: 0 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" -colors: - bg: "#0B0D14" - fg: "#F0F4F8" - black: "#0B0D14" - red: "#FF6B6B" - green: "#66FF99" - yellow: "#FFCC33" - blue: "#5599FF" - magenta: "#FF44DD" - cyan: "#00E6FF" - white: "#F0F4F8" - brightBlack: "#7A8394" - brightRed: "#FF8E8E" - brightGreen: "#88FFBB" - brightYellow: "#FFD966" - brightBlue: "#77AAFF" - brightMagenta: "#FF77EE" - brightCyan: "#4DFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 272 - pair: null - contrast: - fg: 100 - black: 0 - red: 48.8 - green: 89.8 - yellow: 79.4 - blue: 47.3 - magenta: 46.9 - cyan: 79.2 - white: 100 - brightBlack: 35.7 - brightRed: 58.8 - brightGreen: 92.6 - brightYellow: 85.5 - brightBlue: 55.8 - brightMagenta: 57 - brightCyan: 92.8 - brightWhite: 107.6 diff --git a/themes/interstellar-blue-ii.yaml b/themes/interstellar-blue-ii.yaml index 18ca9b5c..eacd5f9d 100644 --- a/themes/interstellar-blue-ii.yaml +++ b/themes/interstellar-blue-ii.yaml @@ -8,6 +8,7 @@ source: author: "JavRedstone" repo: "https://github.com/JavRedstone/interstellar-blue-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JavRedstone.interstellar-blue" + formats: null colors: bg: "#1D004B" fg: "#E381FF" diff --git a/themes/interstellar-blue.yaml b/themes/interstellar-blue.yaml index 88e2855f..e59e35e1 100644 --- a/themes/interstellar-blue.yaml +++ b/themes/interstellar-blue.yaml @@ -8,6 +8,7 @@ source: author: "JavRedstone" repo: "https://github.com/JavRedstone/interstellar-blue-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JavRedstone.interstellar-blue" + formats: null colors: bg: "#10002E" fg: "#C2A6FF" diff --git a/themes/interstellar.yaml b/themes/interstellar.yaml index 43659d21..97275d77 100644 --- a/themes/interstellar.yaml +++ b/themes/interstellar.yaml @@ -8,6 +8,7 @@ source: author: "Nikhil Kumar" repo: "https://github.com/nikumar1206/Interstellar---VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=NikhilKumar.interstellar-theme" + formats: null colors: bg: "#181818" fg: "#EAF2F1" diff --git a/themes/intility-bifrost-theme.yaml b/themes/intility-bifrost-theme.yaml index 9daeb7f7..2e066704 100644 --- a/themes/intility-bifrost-theme.yaml +++ b/themes/intility-bifrost-theme.yaml @@ -8,6 +8,8 @@ source: author: "August Gaukstad" repo: "https://github.com/Intility/bifrost-skins" url: "https://marketplace.visualstudio.com/items?itemName=augigauki.intility-bifrost-theme" + formats: + iterm2: "https://raw.githubusercontent.com/Intility/bifrost-skins/main/iTerm2/Bifrost3.0.itermcolors" colors: bg: "#071627" fg: "#DAE8F6" diff --git a/themes/into-the-unknow-fork.yaml b/themes/into-the-unknow-fork.yaml deleted file mode 100644 index d4ae69cf..00000000 --- a/themes/into-the-unknow-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Into the unknow - Fork" -source: - marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" - version: "9.0.1" - installs: 29917 - rating: 4.6 - ratings: 10 - author: "Hasibur R" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" -colors: - bg: "#171717" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106.9 - black: 0 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 90 - brightBlack: 22 - brightRed: 38.6 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90 diff --git a/themes/intrepid-darkness-light.yaml b/themes/intrepid-darkness-light.yaml index 36cbc13a..2db90e96 100644 --- a/themes/intrepid-darkness-light.yaml +++ b/themes/intrepid-darkness-light.yaml @@ -8,6 +8,7 @@ source: author: "KeineAhnung" repo: "https://github.com/TheKeineAhnung/Intrepid-Darkness" url: "https://marketplace.visualstudio.com/items?itemName=KeineAhnung.intepriddarkness" + formats: null colors: bg: "#F1F1F1" fg: "#0F0F0F" diff --git a/themes/intrepid-darkness.yaml b/themes/intrepid-darkness.yaml index 412aa5ff..cf7ef428 100644 --- a/themes/intrepid-darkness.yaml +++ b/themes/intrepid-darkness.yaml @@ -8,6 +8,7 @@ source: author: "KeineAhnung" repo: "https://github.com/TheKeineAhnung/Intrepid-Darkness" url: "https://marketplace.visualstudio.com/items?itemName=KeineAhnung.intepriddarkness" + formats: null colors: bg: "#0E0E0E" fg: "#F0F0F0" diff --git a/themes/invi.yaml b/themes/invi.yaml index 70d6d61f..cc397e7c 100644 --- a/themes/invi.yaml +++ b/themes/invi.yaml @@ -1,4 +1,4 @@ -name: "Invi" +name: "invi" source: marketplace_id: "Siris.invi" version: "0.2.2" @@ -8,6 +8,7 @@ source: author: "Siris" repo: "https://github.com/Siris01/invi-vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=Siris.invi" + formats: null colors: bg: "#1A1B26" fg: "#A9B1D6" diff --git a/themes/ionztorm-theme.yaml b/themes/ionztorm-theme.yaml index b52297f6..a26a83b8 100644 --- a/themes/ionztorm-theme.yaml +++ b/themes/ionztorm-theme.yaml @@ -8,6 +8,7 @@ source: author: "ionztorm" repo: "https://github.com/ionztorm/ionztorm-theme" url: "https://marketplace.visualstudio.com/items?itemName=ionztorm.ionztorm-theme" + formats: null colors: bg: "#16161E" fg: "#C0CAF5" diff --git a/themes/iris-pink.yaml b/themes/iris-pink.yaml deleted file mode 100644 index dd06f6fa..00000000 --- a/themes/iris-pink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Iris Pink" -source: - marketplace_id: "hongtrapt.pink-angel-themes" - version: "0.0.2" - installs: 273 - rating: 5 - ratings: 1 - author: "hongtrapt" - repo: "https://github.com/hongtra1311/pink-angel-themes" - url: "https://marketplace.visualstudio.com/items?itemName=hongtrapt.pink-angel-themes" -colors: - bg: "#2C1E3C" - fg: "#FFDBE5" - black: "#2C1E3C" - red: "#E27396" - green: "#6D9F71" - yellow: "#EA9AB2" - blue: "#5F4B8B" - magenta: "#FFDBE5" - cyan: "#337357" - white: "#FFDBE5" - brightBlack: "#2C1E3C" - brightRed: "#E27396" - brightGreen: "#6D9F71" - brightYellow: "#EA9AB2" - brightBlue: "#5F4B8B" - brightMagenta: "#FFDBE5" - brightCyan: "#337357" - brightWhite: "#FFDBE5" -meta: - mode: "dark" - accent: "red" - hue: 304 - pair: null - contrast: - fg: 87.5 - black: 0 - red: 43.4 - green: 41.4 - yellow: 57.3 - blue: 13.8 - magenta: 87.5 - cyan: 20.9 - white: 87.5 - brightBlack: 0 - brightRed: 43.4 - brightGreen: 41.4 - brightYellow: 57.3 - brightBlue: 13.8 - brightMagenta: 87.5 - brightCyan: 20.9 - brightWhite: 87.5 diff --git a/themes/irishbruse-s-color-theme.yaml b/themes/irishbruse-s-color-theme.yaml index 19846cc0..bd39b609 100644 --- a/themes/irishbruse-s-color-theme.yaml +++ b/themes/irishbruse-s-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Ethan Conneely" repo: "https://github.com/IrishBruse/IrishBruse-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=IrishBruse.dark-theme" + formats: null colors: bg: "#FFFFFF" fg: "#191D1F" diff --git a/themes/ironhellrider.yaml b/themes/ironhellrider.yaml index 85f5e939..76b11c06 100644 --- a/themes/ironhellrider.yaml +++ b/themes/ironhellrider.yaml @@ -8,6 +8,7 @@ source: author: "ironhellrider" repo: "https://bitbucket.org/Nikolay_Balkandzhiyski/ironhellrider_material_theme" url: "https://marketplace.visualstudio.com/items?itemName=ironhellrider.ironhellrider" + formats: null colors: bg: "#262836" fg: "#A1D3FF" diff --git a/themes/ironman-theme-dark.yaml b/themes/ironman-theme-dark.yaml deleted file mode 100644 index 62dccc94..00000000 --- a/themes/ironman-theme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ironman Theme Dark" -source: - marketplace_id: "rohit-chouhan.ironman-theme" - version: "1.0.6" - installs: 3739 - rating: 5 - ratings: 2 - author: "Rohit Chouhan" - repo: "https://github.com/rohit-chouhan/" - url: "https://marketplace.visualstudio.com/items?itemName=rohit-chouhan.ironman-theme" -colors: - bg: "#110E17" - fg: "#715F5F" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "dark" - accent: "pink" - hue: 300 - pair: "Ironman Theme Light" - contrast: - fg: 21.5 - black: 0 - red: 27.3 - green: 52.3 - yellow: 43.4 - blue: 15.6 - magenta: 26.7 - cyan: 40.7 - white: 15.7 - brightBlack: 22.6 - brightRed: 27.3 - brightGreen: 60.9 - brightYellow: 60.9 - brightBlue: 15.6 - brightMagenta: 26.7 - brightCyan: 40.7 - brightWhite: 53.1 diff --git a/themes/ironman-theme-light.yaml b/themes/ironman-theme-light.yaml deleted file mode 100644 index ea484dcd..00000000 --- a/themes/ironman-theme-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ironman Theme Light" -source: - marketplace_id: "rohit-chouhan.ironman-theme" - version: "1.0.6" - installs: 3739 - rating: 5 - ratings: 2 - author: "Rohit Chouhan" - repo: "https://github.com/rohit-chouhan/" - url: "https://marketplace.visualstudio.com/items?itemName=rohit-chouhan.ironman-theme" -colors: - bg: "#FFFFFF" - fg: "#715F5F" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Ironman Theme Dark" - contrast: - fg: 80 - black: 106 - red: 74 - green: 49.2 - yellow: 57.9 - blue: 86.1 - magenta: 74.6 - cyan: 60.6 - white: 85.9 - brightBlack: 78.8 - brightRed: 74 - brightGreen: 40.9 - brightYellow: 40.9 - brightBlue: 86.1 - brightMagenta: 74.6 - brightCyan: 60.6 - brightWhite: 48.5 diff --git a/themes/irony.yaml b/themes/irony.yaml index cebad730..5dbc7ba2 100644 --- a/themes/irony.yaml +++ b/themes/irony.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Priyaank.irony" version: "0.0.2" installs: 112 + rating: 0 + ratings: 0 author: "Priyaank" repo: "https://github.com/PRIYAANK2510/IrOny-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.irony" + formats: null colors: bg: "#11252C" fg: "#D4D4D4" diff --git a/themes/irrus-float.yaml b/themes/irrus-float.yaml deleted file mode 100644 index 9f9f80f2..00000000 --- a/themes/irrus-float.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "irrus-Float" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#1B1B1B" - fg: "#F2F5FC" - black: "#1B1B1B" - red: "#FF6364" - green: "#29C3A0" - yellow: "#D29922" - blue: "#FF96CB" - magenta: "#FF96CB" - cyan: "#29C3A0" - white: "#F2F5FC" - brightBlack: "#1B1B1B" - brightRed: "#FF6364" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#FF96CB" - brightMagenta: "#FF96CB" - brightCyan: "#29C3A0" - brightWhite: "#F2F5FC" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99.8 - black: 0 - red: 45.8 - green: 57.2 - yellow: 51.2 - blue: 62.3 - magenta: 62.3 - cyan: 57.2 - white: 99.8 - brightBlack: 0 - brightRed: 45.8 - brightGreen: 57.2 - brightYellow: 51.2 - brightBlue: 62.3 - brightMagenta: 62.3 - brightCyan: 57.2 - brightWhite: 99.8 diff --git a/themes/is-them-tears-bro.yaml b/themes/is-them-tears-bro.yaml index 568b31d0..54a24b8a 100644 --- a/themes/is-them-tears-bro.yaml +++ b/themes/is-them-tears-bro.yaml @@ -1,13 +1,14 @@ -name: "is-them-tears-bro" +name: "Is them tears bro!?" source: marketplace_id: "benji011.isthemtearsbro" version: "0.0.7" - installs: 1332 + installs: 1333 rating: 5 ratings: 2 author: "benji011" repo: "https://github.com/benji011/is-them-tears-bro-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=benji011.isthemtearsbro" + formats: null colors: bg: "#1E2529" fg: "#D4D4D4" diff --git a/themes/isatoru.yaml b/themes/isatoru.yaml deleted file mode 100644 index 97335aad..00000000 --- a/themes/isatoru.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "isatoru" -source: - marketplace_id: "golden.isatoru" - version: "1.0.0" - installs: 22 - rating: 0 - ratings: 0 - author: "golden" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=golden.isatoru" -colors: - bg: "#1B1B1B" - fg: "#D3D3D3" - black: "#000000" - red: "#EC2929" - green: "#0DBC79" - yellow: "#DBFF00" - blue: "#2472C8" - magenta: "#C03FFD" - cyan: "#11A8CD" - white: "#D9D9D9" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#EDFF7E" - brightBlue: "#3B8EEA" - brightMagenta: "#DB8EFF" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 78.4 - black: 0 - red: 32.7 - green: 52.6 - yellow: 96.5 - blue: 27 - magenta: 34.9 - cyan: 47.1 - white: 82.1 - brightBlack: 21.6 - brightRed: 38.1 - brightGreen: 63.1 - brightYellow: 99.7 - brightBlue: 39.6 - brightMagenta: 56.5 - brightCyan: 54.9 - brightWhite: 89.6 diff --git a/themes/islands-dark.yaml b/themes/islands-dark.yaml index 353f00e0..65c13b77 100644 --- a/themes/islands-dark.yaml +++ b/themes/islands-dark.yaml @@ -8,6 +8,7 @@ source: author: "PhanTriVietHoang" repo: "https://github.com/phantriviethoang/wip" url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.island" + formats: null colors: bg: "#181A1D" fg: "#BCBEC4" @@ -31,7 +32,7 @@ meta: mode: "dark" accent: "green" hue: null - pair: "Islands Light" + pair: null contrast: fg: 66.2 black: 0 diff --git a/themes/islands-light.yaml b/themes/islands-light.yaml deleted file mode 100644 index c615b564..00000000 --- a/themes/islands-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Islands Light" -source: - marketplace_id: "kangsou.islands-theme" - version: "1.0.5" - installs: 2889 - rating: 5 - ratings: 1 - author: "kangsou" - repo: "https://github.com/guxiaohui/islands-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kangsou.islands-theme" -colors: - bg: "#FFFFFF" - fg: "#080808" - black: "#000000" - red: "#DE1B2E" - green: "#067D17" - yellow: "#9E880D" - blue: "#0033B3" - magenta: "#871094" - cyan: "#007EBD" - white: "#808080" - brightBlack: "#6C707E" - brightRed: "#F50000" - brightGreen: "#0A8A21" - brightYellow: "#B89910" - brightBlue: "#174BE6" - brightMagenta: "#A01CAC" - brightCyan: "#0095D4" - brightWhite: "#AEB3C2" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Islands Dark" - contrast: - fg: 105.9 - black: 106 - red: 71.6 - green: 75.8 - yellow: 62.5 - blue: 91.6 - magenta: 86.9 - cyan: 70.2 - white: 66.9 - brightBlack: 74.2 - brightRed: 66.6 - brightGreen: 70.6 - brightYellow: 53.1 - brightBlue: 81.5 - brightMagenta: 80.4 - brightCyan: 60.4 - brightWhite: 41 diff --git a/themes/isotope-contrast.yaml b/themes/isotope-contrast.yaml deleted file mode 100644 index 18e029c1..00000000 --- a/themes/isotope-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "isotope-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0E0F11" - fg: "#F3EFF5" - black: "#191B1F" - red: "#BA0E2E" - green: "#72B01D" - yellow: "#B3DD49" - blue: "#FFFFFF" - magenta: "#B3DD49" - cyan: "#72B01D" - white: "#FFFFFF" - brightBlack: "#3C4049" - brightRed: "#F03E5F" - brightGreen: "#A5E251" - brightYellow: "#D7ED9F" - brightBlue: "#FFFFFF" - brightMagenta: "#D7ED9F" - brightCyan: "#A5E251" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 97.9 - black: 0 - red: 21.1 - green: 50.3 - yellow: 76.7 - blue: 107.5 - magenta: 76.7 - cyan: 50.3 - white: 107.5 - brightBlack: 8 - brightRed: 37.4 - brightGreen: 77.8 - brightYellow: 90 - brightBlue: 107.5 - brightMagenta: 90 - brightCyan: 77.8 - brightWhite: 107.5 diff --git a/themes/isotope-light.yaml b/themes/isotope-light.yaml deleted file mode 100644 index 746b4aa5..00000000 --- a/themes/isotope-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "isotope-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#454955" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#72B01D" - yellow: "#98BC3E" - blue: "#454955" - magenta: "#98BC3E" - cyan: "#72B01D" - white: "#505563" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#A5E251" - brightYellow: "#C1D888" - brightBlue: "#73798D" - brightMagenta: "#C1D888" - brightCyan: "#A5E251" - brightWhite: "#73798D" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 90.6 - black: 0 - red: 80.3 - green: 51.2 - yellow: 42.9 - blue: 90.6 - magenta: 42.9 - cyan: 51.2 - white: 85.9 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 24.9 - brightYellow: 25.7 - brightBlue: 70 - brightMagenta: 25.7 - brightCyan: 24.9 - brightWhite: 70 diff --git a/themes/isotope.yaml b/themes/isotope.yaml deleted file mode 100644 index 8e278513..00000000 --- a/themes/isotope.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "isotope" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#454955" - fg: "#F3EFF5" - black: "#505563" - red: "#BA0E2E" - green: "#72B01D" - yellow: "#B3DD49" - blue: "#FFFFFF" - magenta: "#B3DD49" - cyan: "#72B01D" - white: "#FFFFFF" - brightBlack: "#73798D" - brightRed: "#F03E5F" - brightGreen: "#A5E251" - brightYellow: "#D7ED9F" - brightBlue: "#FFFFFF" - brightMagenta: "#D7ED9F" - brightCyan: "#A5E251" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 271 - pair: null - contrast: - fg: 85.4 - black: 0 - red: 8.7 - green: 37.8 - yellow: 64.3 - blue: 95 - magenta: 64.3 - cyan: 37.8 - white: 95 - brightBlack: 18.8 - brightRed: 25 - brightGreen: 65.4 - brightYellow: 77.6 - brightBlue: 95 - brightMagenta: 77.6 - brightCyan: 65.4 - brightWhite: 95 diff --git a/themes/itsnp-dark-cyan.yaml b/themes/itsnp-dark-cyan.yaml index e0215113..a5ab41db 100644 --- a/themes/itsnp-dark-cyan.yaml +++ b/themes/itsnp-dark-cyan.yaml @@ -8,6 +8,7 @@ source: author: "Sachit" repo: "https://github.com/ASACHIT/itsnp-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" + formats: null colors: bg: "#0F111A" fg: "#DFE3FA" diff --git a/themes/itsnp-dark-pink.yaml b/themes/itsnp-dark-pink.yaml index 5c163bab..98a0d663 100644 --- a/themes/itsnp-dark-pink.yaml +++ b/themes/itsnp-dark-pink.yaml @@ -8,6 +8,7 @@ source: author: "Sachit" repo: "https://github.com/ASACHIT/itsnp-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" + formats: null colors: bg: "#0F111A" fg: "#DFE3FA" diff --git a/themes/itsnp-dark.yaml b/themes/itsnp-dark.yaml index 6edcbc3f..c29b7cb3 100644 --- a/themes/itsnp-dark.yaml +++ b/themes/itsnp-dark.yaml @@ -8,6 +8,7 @@ source: author: "Sachit" repo: "https://github.com/ASACHIT/itsnp-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" + formats: null colors: bg: "#0F111A" fg: "#C8CDE6" diff --git a/themes/itsnp-night-blue.yaml b/themes/itsnp-night-blue.yaml index 7f4c34a3..4f070fc3 100644 --- a/themes/itsnp-night-blue.yaml +++ b/themes/itsnp-night-blue.yaml @@ -8,6 +8,7 @@ source: author: "Sachit" repo: "https://github.com/ASACHIT/itsnp-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" + formats: null colors: bg: "#0F111A" fg: "#C8CDE6" diff --git a/themes/itsnp-yellow.yaml b/themes/itsnp-yellow.yaml index 8f4ce5c4..7597d7c9 100644 --- a/themes/itsnp-yellow.yaml +++ b/themes/itsnp-yellow.yaml @@ -8,6 +8,7 @@ source: author: "Sachit" repo: "https://github.com/ASACHIT/itsnp-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Sachit.itsnp-theme" + formats: null colors: bg: "#0F111A" fg: "#C8CDE6" diff --git a/themes/iv-spade.yaml b/themes/iv-spade.yaml deleted file mode 100644 index 26bdf552..00000000 --- a/themes/iv-spade.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "iv : spade" -source: - marketplace_id: "riyuzenn.iv" - version: "0.0.3" - installs: 1278 - rating: 5 - ratings: 2 - author: "riyuzenn" - repo: "https://github.com/riyuzenn/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=riyuzenn.iv" -colors: - bg: "#0C0C0C" - fg: "#A0A0A0" - black: "#212121" - red: "#9D7B7D" - green: "#7B9D7C" - yellow: "#B7976A" - blue: "#687589" - magenta: "#937193" - cyan: "#628483" - white: "#A0A0A0" - brightBlack: "#353535" - brightRed: "#A78587" - brightGreen: "#85A786" - brightYellow: "#C1A174" - brightBlue: "#8593A7" - brightMagenta: "#C8B5E6" - brightCyan: "#85A7A6" - brightWhite: "#BEBEBE" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 50.6 - black: 0 - red: 36.2 - green: 44.6 - yellow: 48.6 - blue: 29 - magenta: 32.7 - cyan: 33.5 - white: 50.6 - brightBlack: 0 - brightRed: 41 - brightGreen: 49.8 - brightYellow: 53.9 - brightBlue: 43.3 - brightMagenta: 66.8 - brightCyan: 50.9 - brightWhite: 67.2 diff --git a/themes/ivalo-color-theme.yaml b/themes/ivalo-color-theme.yaml deleted file mode 100644 index 98ab7c01..00000000 --- a/themes/ivalo-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ivalo-color-theme" -source: - marketplace_id: "naethiel.ivalo" - version: "0.1.0" - installs: 1566 - rating: 5 - ratings: 2 - author: "Naethiel" - repo: "https://github.com/naethiel/ivalo" - url: "https://marketplace.visualstudio.com/items?itemName=naethiel.ivalo" -colors: - bg: "#1B1F26" - fg: "#D8DEE9" - black: "#3B4252" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#6ED3CA" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: 262 - pair: null - contrast: - fg: 84.4 - black: 0 - red: 32 - green: 60.7 - yellow: 75.4 - blue: 47.7 - magenta: 45.5 - cyan: 68.2 - white: 91.4 - brightBlack: 14.4 - brightRed: 32 - brightGreen: 60.7 - brightYellow: 75.4 - brightBlue: 47.7 - brightMagenta: 45.5 - brightCyan: 59.6 - brightWhite: 95.3 diff --git a/themes/iwa-s-code-theme.yaml b/themes/iwa-s-code-theme.yaml deleted file mode 100644 index 76fd7553..00000000 --- a/themes/iwa-s-code-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "iwa's Code Theme" -source: - marketplace_id: "iwa.iwa-code-theme" - version: "0.1.3" - installs: 29 - rating: 0 - ratings: 0 - author: "iwa" - repo: "https://github.com/iwa/iwa-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=iwa.iwa-code-theme" -colors: - bg: "#27282E" - fg: "#ABB2BF" - black: "#202126" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#56B6C2" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D0D0D0" - brightBlack: "#808080" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#56B6C2" - brightMagenta: "#C678DD" - brightCyan: "#56B6C2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 278 - pair: null - contrast: - fg: 56.9 - black: 0 - red: 39.6 - green: 59.8 - yellow: 68.1 - blue: 52.1 - magenta: 42.6 - cyan: 52.1 - white: 74.6 - brightBlack: 31.3 - brightRed: 39.6 - brightGreen: 59.8 - brightYellow: 68.1 - brightBlue: 52.1 - brightMagenta: 42.6 - brightCyan: 52.1 - brightWhite: 104.4 diff --git a/themes/j-cinco-da-manh.yaml b/themes/j-cinco-da-manh.yaml index ec5aa5f5..2044e4f7 100644 --- a/themes/j-cinco-da-manh.yaml +++ b/themes/j-cinco-da-manh.yaml @@ -8,6 +8,7 @@ source: author: "euclidesgc" repo: "https://github.com/euclidesgc/ja-eh-5-da-manha" url: "https://marketplace.visualstudio.com/items?itemName=euclidesgc.ja-eh-5-da-manha" + formats: null colors: bg: "#060921" fg: "#50FFBE" diff --git a/themes/j-theme.yaml b/themes/j-theme.yaml index 2cb0134e..7b006b70 100644 --- a/themes/j-theme.yaml +++ b/themes/j-theme.yaml @@ -8,6 +8,7 @@ source: author: "JamesLoyd" repo: "https://github.com/JamesLoyd/JTheme" url: "https://marketplace.visualstudio.com/items?itemName=JamesLoyd.jtheme" + formats: null colors: bg: "#000000" fg: "#00F031" diff --git a/themes/jabrms.yaml b/themes/jabrms.yaml index 5d4e45d9..2a3b4946 100644 --- a/themes/jabrms.yaml +++ b/themes/jabrms.yaml @@ -8,6 +8,7 @@ source: author: "jabrms" repo: "https://github.com/jabrms/vsc-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=jabrms.jabrms-color-theme" + formats: null colors: bg: "#FFFFFF" fg: "#161616" diff --git a/themes/jacaranda-theme.yaml b/themes/jacaranda-theme.yaml index 98a94bae..eebf5350 100644 --- a/themes/jacaranda-theme.yaml +++ b/themes/jacaranda-theme.yaml @@ -2,12 +2,13 @@ name: "Jacaranda Theme" source: marketplace_id: "AlejandroHernandez.jacarandatheme" version: "0.1.8" - installs: 164 + installs: 165 rating: 0 ratings: 0 author: "Alejandro Hernandez" repo: "https://github.com/josuebautista/JacarandaTheme" url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.jacarandatheme" + formats: null colors: bg: "#00020F" fg: "#DAC7FC" diff --git a/themes/jackhammar.yaml b/themes/jackhammar.yaml deleted file mode 100644 index 0380b5dd..00000000 --- a/themes/jackhammar.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Jackhammar" -source: - marketplace_id: "minako.wired" - version: "2.0.5" - installs: 4868 - rating: 0 - ratings: 0 - author: "minako" - repo: "https://github.com/kayliese/wired" - url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" -colors: - bg: "#000011" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 80.5 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.7 - cyan: 48.5 - white: 91 - brightBlack: 23 - brightRed: 39.5 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.3 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/jaga-theme.yaml b/themes/jaga-theme.yaml index 53ee7c52..1765ef7e 100644 --- a/themes/jaga-theme.yaml +++ b/themes/jaga-theme.yaml @@ -8,6 +8,7 @@ source: author: "Sayam" repo: "https://github.com/sayampradhan/jaga-theme" url: "https://marketplace.visualstudio.com/items?itemName=Sayam.jaga-theme" + formats: null colors: bg: "#2E0015" fg: "#F4F4F9" diff --git a/themes/jammy-jellyfish.yaml b/themes/jammy-jellyfish.yaml deleted file mode 100644 index 9282097c..00000000 --- a/themes/jammy-jellyfish.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Jammy Jellyfish" -source: - marketplace_id: "kevinnorman.jammy-jellyfish-color-theme" - version: "1.1.1" - installs: 7085 - rating: 0 - ratings: 0 - author: "Kevin Norman" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=kevinnorman.jammy-jellyfish-color-theme" -colors: - bg: "#242424" - fg: "#B6B6B6" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 60.2 - black: 0 - red: 25 - green: 51.3 - yellow: 83.9 - blue: 25.7 - magenta: 28 - cyan: 45.8 - white: 88.3 - brightBlack: 20.3 - brightRed: 36.8 - brightGreen: 61.8 - brightYellow: 93.9 - brightBlue: 38.3 - brightMagenta: 43.6 - brightCyan: 53.7 - brightWhite: 88.3 diff --git a/themes/jamuntheme.yaml b/themes/jamuntheme.yaml index 877e0385..4a3944c4 100644 --- a/themes/jamuntheme.yaml +++ b/themes/jamuntheme.yaml @@ -8,6 +8,7 @@ source: author: "mohitUpadhyayRohitUpadhyayAnujUpadhyay" repo: "https://github.com/Mohit5Upadhyay/vscode-jamunDarkTheme" url: "https://marketplace.visualstudio.com/items?itemName=mohitUpadhyayRohitUpadhyayAnujUpadhyay.jamunTheme" + formats: null colors: bg: "#010107" fg: "#BECFDA" diff --git a/themes/jannchie-black.yaml b/themes/jannchie-black.yaml index 0cdf9e45..bc358339 100644 --- a/themes/jannchie-black.yaml +++ b/themes/jannchie-black.yaml @@ -8,6 +8,7 @@ source: author: "Jannchie" repo: "https://github.com/jannchie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" + formats: null colors: bg: "#000000" fg: "#DBD7CA" diff --git a/themes/jannchie-dark-soft.yaml b/themes/jannchie-dark-soft.yaml index 638e2145..493eb96f 100644 --- a/themes/jannchie-dark-soft.yaml +++ b/themes/jannchie-dark-soft.yaml @@ -8,6 +8,7 @@ source: author: "Jannchie" repo: "https://github.com/jannchie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" + formats: null colors: bg: "#171717" fg: "#D4D4D4" diff --git a/themes/jannchie-dark.yaml b/themes/jannchie-dark.yaml index cb4db854..f656a19a 100644 --- a/themes/jannchie-dark.yaml +++ b/themes/jannchie-dark.yaml @@ -8,6 +8,7 @@ source: author: "Jannchie" repo: "https://github.com/jannchie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" + formats: null colors: bg: "#0F0F0F" fg: "#D4D4D4" diff --git a/themes/jannchie-light-soft.yaml b/themes/jannchie-light-soft.yaml index 3e884db0..485a4006 100644 --- a/themes/jannchie-light-soft.yaml +++ b/themes/jannchie-light-soft.yaml @@ -8,6 +8,7 @@ source: author: "Jannchie" repo: "https://github.com/jannchie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" + formats: null colors: bg: "#F1F0E9" fg: "#393A34" diff --git a/themes/jannchie-light.yaml b/themes/jannchie-light.yaml index d9f24fc9..58bcea05 100644 --- a/themes/jannchie-light.yaml +++ b/themes/jannchie-light.yaml @@ -8,6 +8,7 @@ source: author: "Jannchie" repo: "https://github.com/jannchie/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jannchie.theme-jannchie" + formats: null colors: bg: "#FFFFFF" fg: "#393A34" diff --git a/themes/janus-light.yaml b/themes/janus-light.yaml index 47a17c6f..e76db914 100644 --- a/themes/janus-light.yaml +++ b/themes/janus-light.yaml @@ -8,6 +8,7 @@ source: author: "Janus" repo: "https://github.com/Janus1984/janus-light" url: "https://marketplace.visualstudio.com/items?itemName=Janus.janus-light" + formats: null colors: bg: "#FFFFFB" fg: "#333333" diff --git a/themes/japanese-breakfast.yaml b/themes/japanese-breakfast.yaml deleted file mode 100644 index e1a99d3b..00000000 --- a/themes/japanese-breakfast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Japanese Breakfast" -source: - marketplace_id: "bigboi.legally-blind" - version: "0.1.7" - installs: 971 - rating: 5 - ratings: 3 - author: "bigboi" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=bigboi.legally-blind" -colors: - bg: "#000000" - fg: "#D42450" - black: "#08040B" - red: "#D42450" - green: "#A9D400" - yellow: "#D95702" - blue: "#301D78" - magenta: "#D42450" - cyan: "#00A7B5" - white: "#E9C8D3" - brightBlack: "#27214D" - brightRed: "#D42450" - brightGreen: "#A9D400" - brightYellow: "#D95702" - brightBlue: "#301D78" - brightMagenta: "#D42450" - brightCyan: "#00A7B5" - brightWhite: "#C6E4E4" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 28.7 - black: 0 - red: 28.7 - green: 71.5 - yellow: 35.7 - blue: 0 - magenta: 28.7 - cyan: 46.9 - white: 78.3 - brightBlack: 0 - brightRed: 28.7 - brightGreen: 71.5 - brightYellow: 35.7 - brightBlue: 0 - brightMagenta: 28.7 - brightCyan: 46.9 - brightWhite: 86.7 diff --git a/themes/jartur.yaml b/themes/jartur.yaml index 60e5ac83..3cfdcf2f 100644 --- a/themes/jartur.yaml +++ b/themes/jartur.yaml @@ -8,6 +8,7 @@ source: author: "Jartur" repo: "https://github.com/j-artur/j-artur-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jartur.j-artur-theme" + formats: null colors: bg: "#111316" fg: "#A3ABB8" diff --git a/themes/jarvis-3d.yaml b/themes/jarvis-3d.yaml deleted file mode 100644 index fdbc8632..00000000 --- a/themes/jarvis-3d.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Jarvis 3D" -source: - marketplace_id: "nextgencode.jarvis-3d-theme" - version: "1.1.0" - installs: 77 - rating: 0 - ratings: 0 - author: "NextGenCode" - repo: "https://github.com/Mattzey/jarvis-3d-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.jarvis-3d-theme" -colors: - bg: "#0A1628" - fg: "#E0F7FF" - black: "#0A1628" - red: "#FF4757" - green: "#00FF9F" - yellow: "#FFAA00" - blue: "#4D9FFF" - magenta: "#6A5AFF" - cyan: "#00D9FF" - white: "#E0F7FF" - brightBlack: "#2D5A7A" - brightRed: "#FF6B6B" - brightGreen: "#5AFFB8" - brightYellow: "#FFD95A" - brightBlue: "#7AB8FF" - brightMagenta: "#8D7AFF" - brightCyan: "#5AFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: 258 - pair: null - contrast: - fg: 99 - black: 0 - red: 41.4 - green: 87.4 - yellow: 65.5 - blue: 48.6 - magenta: 29.1 - cyan: 72.3 - white: 99 - brightBlack: 15.7 - brightRed: 48.1 - brightGreen: 89.5 - brightYellow: 84.6 - brightBlue: 61 - brightMagenta: 40.6 - brightCyan: 92.6 - brightWhite: 106.9 diff --git a/themes/jarvis.yaml b/themes/jarvis.yaml deleted file mode 100644 index cf3d2037..00000000 --- a/themes/jarvis.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Jarvis" -source: - marketplace_id: "ArmandoChaparro.jarvisdarktheme" - version: "1.6.0" - installs: 1758 - rating: 5 - ratings: 1 - author: "Armando Chaparro" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=ArmandoChaparro.jarvisdarktheme" -colors: - bg: "#1F1F1F" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 105.9 - black: 0 - red: 25.7 - green: 52 - yellow: 84.6 - blue: 26.5 - magenta: 28.8 - cyan: 46.6 - white: 89 - brightBlack: 21.1 - brightRed: 37.6 - brightGreen: 62.6 - brightYellow: 94.7 - brightBlue: 39 - brightMagenta: 44.4 - brightCyan: 54.4 - brightWhite: 89 diff --git a/themes/jasmine.yaml b/themes/jasmine.yaml index 53ff327b..f50c2741 100644 --- a/themes/jasmine.yaml +++ b/themes/jasmine.yaml @@ -2,12 +2,13 @@ name: "Jasmine" source: marketplace_id: "maneeshaindrachapa.jasmine" version: "0.0.2" - installs: 2898 + installs: 2899 rating: 5 ratings: 3 author: "Maneesha Indrachapa" repo: "https://github.com/maneeshaindrachapa/jasmine-vscode" url: "https://marketplace.visualstudio.com/items?itemName=maneeshaindrachapa.jasmine" + formats: null colors: bg: "#1D2433" fg: "#A2AABC" diff --git a/themes/java-dark-theme.yaml b/themes/java-dark-theme.yaml index 3b8101f1..b054ca96 100644 --- a/themes/java-dark-theme.yaml +++ b/themes/java-dark-theme.yaml @@ -2,12 +2,13 @@ name: "Java Dark Theme" source: marketplace_id: "Heejunnet.java-dark-theme" version: "1.0.8" - installs: 28 + installs: 29 rating: 0 ratings: 0 author: "Heejun.net" repo: "https://github.com/popul9/java-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Heejunnet.java-dark-theme" + formats: null colors: bg: "#1E1E1E" fg: "#A9B7C6" diff --git a/themes/javascript-modern-dark.yaml b/themes/javascript-modern-dark.yaml deleted file mode 100644 index 4464bca3..00000000 --- a/themes/javascript-modern-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "JavaScript Modern Dark" -source: - marketplace_id: "tryToDEv.cyber-qoder-themes" - version: "1.2.0" - installs: 15 - rating: 0 - ratings: 0 - author: "tryToDEv" - repo: "https://github.com/shivam20/cyber-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" -colors: - bg: "#0F1117" - fg: "#E5E7EB" - black: "#0F1117" - red: "#FB923C" - green: "#34D399" - yellow: "#FBBF24" - blue: "#60A5FA" - magenta: "#A78BFA" - cyan: "#38BDF8" - white: "#E5E7EB" - brightBlack: "#64748B" - brightRed: "#FCA5A5" - brightGreen: "#6EE7B7" - brightYellow: "#FDE68A" - brightBlue: "#93C5FD" - brightMagenta: "#C4B5FD" - brightCyan: "#7DD3FC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "yellow" - hue: 271 - pair: null - contrast: - fg: 91.7 - black: 0 - red: 57.4 - green: 65.7 - yellow: 73.2 - blue: 51.9 - magenta: 48.8 - cyan: 60.1 - white: 91.7 - brightBlack: 28.1 - brightRed: 66 - brightGreen: 78.5 - brightYellow: 91.4 - brightBlue: 68.7 - brightMagenta: 67.4 - brightCyan: 73.2 - brightWhite: 107.4 diff --git a/themes/javascript-neon-dark.yaml b/themes/javascript-neon-dark.yaml deleted file mode 100644 index 8a4c8f27..00000000 --- a/themes/javascript-neon-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "JavaScript Neon Dark" -source: - marketplace_id: "tryToDEv.cyber-qoder-themes" - version: "1.2.0" - installs: 15 - rating: 0 - ratings: 0 - author: "tryToDEv" - repo: "https://github.com/shivam20/cyber-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" -colors: - bg: "#0A0E14" - fg: "#E5E7EB" - black: "#0A0E14" - red: "#FF6B00" - green: "#00FF9D" - yellow: "#FFFF00" - blue: "#00F0FF" - magenta: "#FF00FF" - cyan: "#3B82F6" - white: "#E5E7EB" - brightBlack: "#6B7280" - brightRed: "#FF8C42" - brightGreen: "#5CFFD1" - brightYellow: "#FFFF33" - brightBlue: "#33F0FF" - brightMagenta: "#FF33FF" - brightCyan: "#5C9CFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 258 - pair: null - contrast: - fg: 91.9 - black: 0 - red: 47.8 - green: 88 - yellow: 102.4 - blue: 84.2 - magenta: 45.9 - cyan: 37.5 - white: 91.9 - brightBlack: 27.8 - brightRed: 56.7 - brightGreen: 91.2 - brightYellow: 102.5 - brightBlue: 84.5 - brightMagenta: 47.6 - brightCyan: 48.8 - brightWhite: 107.6 diff --git a/themes/javascript-vibrant-dark.yaml b/themes/javascript-vibrant-dark.yaml deleted file mode 100644 index c85e0ba0..00000000 --- a/themes/javascript-vibrant-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "JavaScript Vibrant Dark" -source: - marketplace_id: "tryToDEv.cyber-qoder-themes" - version: "1.2.0" - installs: 15 - rating: 0 - ratings: 0 - author: "tryToDEv" - repo: "https://github.com/shivam20/cyber-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" -colors: - bg: "#0D0F12" - fg: "#E8E8E8" - black: "#0D0F12" - red: "#FF6B9D" - green: "#6BCB77" - yellow: "#FFEAA7" - blue: "#FF6B6B" - magenta: "#FF9F43" - cyan: "#74B9FF" - white: "#E8E8E8" - brightBlack: "#8B949E" - brightRed: "#FF9CB8" - brightGreen: "#8FD99E" - brightYellow: "#FFF2C7" - brightBlue: "#FF9C9C" - brightMagenta: "#FFB573" - brightCyan: "#9CCBFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 50.2 - green: 63.2 - yellow: 94.4 - blue: 48.7 - magenta: 62.6 - cyan: 61.6 - white: 92.6 - brightBlack: 43.7 - brightRed: 64.5 - brightGreen: 73.2 - brightYellow: 99.1 - brightBlue: 63.5 - brightMagenta: 71.1 - brightCyan: 72.3 - brightWhite: 107.5 diff --git a/themes/jaytheme.yaml b/themes/jaytheme.yaml deleted file mode 100644 index e4e1af27..00000000 --- a/themes/jaytheme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "jaytheme" -source: - marketplace_id: "Jaywxl.jaytheme" - version: "0.0.6" - installs: 53 - rating: 0 - ratings: 0 - author: "Jaywxl" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Jaywxl.jaytheme" -colors: - bg: "#06272E" - fg: "#FFB5B5" - black: "#CB4646" - red: "#CD3131" - green: "#0DBC79" - yellow: "#2C2C14" - blue: "#2472C8" - magenta: "#5687FB" - cyan: "#11A8CD" - white: "#CD7070" - brightBlack: "#FF5353" - brightRed: "#DB7878" - brightGreen: "#23D18B" - brightYellow: "#7D7D27" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#AB5252" -meta: - mode: "dark" - accent: "orange" - hue: 215 - pair: null - contrast: - fg: 70.6 - black: 27.5 - red: 25 - green: 51.3 - yellow: 0 - blue: 25.7 - magenta: 38.3 - cyan: 45.8 - white: 37.6 - brightBlack: 41.3 - brightRed: 42.5 - brightGreen: 61.8 - brightYellow: 28.9 - brightBlue: 38.3 - brightMagenta: 43.6 - brightCyan: 53.7 - brightWhite: 23.8 diff --git a/themes/jazari-dark.yaml b/themes/jazari-dark.yaml index a09ed4a3..050c105d 100644 --- a/themes/jazari-dark.yaml +++ b/themes/jazari-dark.yaml @@ -8,6 +8,7 @@ source: author: "AALA IT Solutions" repo: "https://github.com/aalasolutions/vscode-jazari" url: "https://marketplace.visualstudio.com/items?itemName=aala.jazari" + formats: null colors: bg: "#0F1114" fg: "#D0D4DC" diff --git a/themes/jazari-light.yaml b/themes/jazari-light.yaml index b2fd0321..dc7be113 100644 --- a/themes/jazari-light.yaml +++ b/themes/jazari-light.yaml @@ -8,6 +8,7 @@ source: author: "AALA IT Solutions" repo: "https://github.com/aalasolutions/vscode-jazari" url: "https://marketplace.visualstudio.com/items?itemName=aala.jazari" + formats: null colors: bg: "#E7EBF5" fg: "#24292E" diff --git a/themes/jbpc.yaml b/themes/jbpc.yaml index b05a4341..6ca3df99 100644 --- a/themes/jbpc.yaml +++ b/themes/jbpc.yaml @@ -8,6 +8,7 @@ source: author: "Infi" repo: "https://github.com/infi/jbpc" url: "https://marketplace.visualstudio.com/items?itemName=infi.jbpc" + formats: null colors: bg: "#000000" fg: "#8F93A2" diff --git a/themes/jcardenas.yaml b/themes/jcardenas.yaml deleted file mode 100644 index 41106979..00000000 --- a/themes/jcardenas.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "JCardenas" -source: - marketplace_id: "JCardenas.j-cardenas" - version: "0.0.1" - installs: 133 - rating: 0 - ratings: 0 - author: "JCardenas" - repo: "https://github.com/Car-png/jcardenas-theme" - url: "https://marketplace.visualstudio.com/items?itemName=JCardenas.j-cardenas" -colors: - bg: "#202124" - fg: "#796880" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 24.2 - black: 0 - red: 25.4 - green: 51.7 - yellow: 84.3 - blue: 26.2 - magenta: 28.5 - cyan: 46.3 - white: 88.8 - brightBlack: 20.8 - brightRed: 37.3 - brightGreen: 62.3 - brightYellow: 94.4 - brightBlue: 38.7 - brightMagenta: 44.1 - brightCyan: 54.1 - brightWhite: 88.8 diff --git a/themes/jcsoftiablack.yaml b/themes/jcsoftiablack.yaml index 5f3e7cb6..6f618b20 100644 --- a/themes/jcsoftiablack.yaml +++ b/themes/jcsoftiablack.yaml @@ -8,6 +8,7 @@ source: author: "Dark Black Theme jcsoftia" repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" + formats: null colors: bg: "#010001" fg: "#00BCD4" diff --git a/themes/jcsoftiadark.yaml b/themes/jcsoftiadark.yaml index aa330372..fc879130 100644 --- a/themes/jcsoftiadark.yaml +++ b/themes/jcsoftiadark.yaml @@ -8,6 +8,7 @@ source: author: "Dark Black Theme jcsoftia" repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" + formats: null colors: bg: "#00010B" fg: "#00BCD4" diff --git a/themes/jcsoftiadarkblue.yaml b/themes/jcsoftiadarkblue.yaml index 20f30812..799c4ec3 100644 --- a/themes/jcsoftiadarkblue.yaml +++ b/themes/jcsoftiadarkblue.yaml @@ -8,6 +8,7 @@ source: author: "Dark Black Theme jcsoftia" repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" + formats: null colors: bg: "#00050C" fg: "#B6FFFF" diff --git a/themes/jcsoftiadarkred.yaml b/themes/jcsoftiadarkred.yaml index c6bf844d..b62993c8 100644 --- a/themes/jcsoftiadarkred.yaml +++ b/themes/jcsoftiadarkred.yaml @@ -8,6 +8,7 @@ source: author: "Dark Black Theme jcsoftia" repo: "https://github.com/jcsoftia/ThemeVisualStudioCode" url: "https://marketplace.visualstudio.com/items?itemName=JCsoftIA.JCsoftIA" + formats: null colors: bg: "#070000" fg: "#00BCD4" diff --git a/themes/jd-s-abyss.yaml b/themes/jd-s-abyss.yaml index e62b7597..d8a7978e 100644 --- a/themes/jd-s-abyss.yaml +++ b/themes/jd-s-abyss.yaml @@ -8,6 +8,7 @@ source: author: "Jean-Denis Boivin" repo: "https://github.com/starburst997/jd-abyss" url: "https://marketplace.visualstudio.com/items?itemName=jdboivin.jd-abyss" + formats: null colors: bg: "#0C1018" fg: "#D0D0D9" diff --git a/themes/jdarkmaterial-v2.yaml b/themes/jdarkmaterial-v2.yaml index b6c44c0a..5c943a41 100644 --- a/themes/jdarkmaterial-v2.yaml +++ b/themes/jdarkmaterial-v2.yaml @@ -8,6 +8,7 @@ source: author: "Jijin" repo: "https://github.com/JijinJayakumar/jin-themes" url: "https://marketplace.visualstudio.com/items?itemName=Jijin.jin-themes" + formats: null colors: bg: "#0A0C0F" fg: "#D4D4D4" diff --git a/themes/jdh.yaml b/themes/jdh.yaml index b6843801..d8e8dbe7 100644 --- a/themes/jdh.yaml +++ b/themes/jdh.yaml @@ -8,6 +8,7 @@ source: author: "TopTickTom" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TopTickTom.jdh" + formats: null colors: bg: "#202020" fg: "#CFCFCF" diff --git a/themes/jehuty-dark.yaml b/themes/jehuty-dark.yaml index 2adf113f..b80f0aa1 100644 --- a/themes/jehuty-dark.yaml +++ b/themes/jehuty-dark.yaml @@ -8,6 +8,7 @@ source: author: "Meastblue" repo: "https://github.com/meastblue/orbital-frame-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" + formats: null colors: bg: "#0D1117" fg: "#EEF0F9" diff --git a/themes/jehuty-light.yaml b/themes/jehuty-light.yaml index cd386eca..76452324 100644 --- a/themes/jehuty-light.yaml +++ b/themes/jehuty-light.yaml @@ -8,6 +8,7 @@ source: author: "Meastblue" repo: "https://github.com/meastblue/orbital-frame-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" + formats: null colors: bg: "#FFFFFF" fg: "#212529" diff --git a/themes/jelly-theme.yaml b/themes/jelly-theme.yaml index 72d90c74..9d72b5be 100644 --- a/themes/jelly-theme.yaml +++ b/themes/jelly-theme.yaml @@ -1,52 +1,53 @@ -name: "jelly-theme" +name: "Jelly Theme" source: - marketplace_id: "NemanjaManojlovic.jelly" - version: "0.0.5" - installs: 20209 - rating: 5 - ratings: 3 - author: "Nemanja Manojlovic" - repo: "https://github.com/Manojlovic1998/vscode-jelly-theme" - url: "https://marketplace.visualstudio.com/items?itemName=NemanjaManojlovic.jelly" + marketplace_id: "kylethebaker.jelly-theme" + version: "0.0.4" + installs: 21829 + rating: 0 + ratings: 0 + author: "kylethebaker" + repo: "https://github.com/kylethebaker/jelly-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kylethebaker.jelly-theme" + formats: null colors: - bg: "#18181B" - fg: "#FAFAFA" - black: "#0A0A0A" - red: "#E11D48" - green: "#16A34A" - yellow: "#FBBF24" - blue: "#2563EB" - magenta: "#C026D3" - cyan: "#0891B2" - white: "#F5F5F5" - brightBlack: "#737373" - brightRed: "#FB7185" - brightGreen: "#4ADE80" - brightYellow: "#FDE68A" - brightBlue: "#60A5FA" - brightMagenta: "#E879F9" - brightCyan: "#22D3EE" - brightWhite: "#FAFAFA" + bg: "#0A0B12" + fg: "#C5C8C6" + black: "#1C1C1C" + red: "#B85335" + green: "#799D6A" + yellow: "#FFB964" + blue: "#667899" + magenta: "#8787AF" + cyan: "#668799" + white: "#546B88" + brightBlack: "#3D3A53" + brightRed: "#CF6A4C" + brightGreen: "#99AD6A" + brightYellow: "#FAD07A" + brightBlue: "#8197BF" + brightMagenta: "#C6B6EE" + brightCyan: "#8FBFDC" + brightWhite: "#E8E8D3" meta: mode: "dark" - accent: "pink" - hue: null + accent: "orange" + hue: 278 pair: null contrast: - fg: 103.4 + fg: 72.6 black: 0 - red: 30 - green: 40.8 - yellow: 72.6 - blue: 25.7 - magenta: 29.5 - cyan: 36.7 - white: 100.2 - brightBlack: 27.6 - brightRed: 49.1 - brightGreen: 70.3 - brightYellow: 90.7 - brightBlue: 51.2 - brightMagenta: 53 - brightCyan: 68.5 - brightWhite: 103.4 + red: 28.4 + green: 44 + yellow: 72.5 + blue: 30.6 + magenta: 39.6 + cyan: 35.7 + white: 24.3 + brightBlack: 0 + brightRed: 38.3 + brightGreen: 53.5 + brightYellow: 81.3 + brightBlue: 45.6 + brightMagenta: 67.4 + brightCyan: 64.2 + brightWhite: 91.8 diff --git a/themes/jelly.yaml b/themes/jelly.yaml index 73987c78..635c15dc 100644 --- a/themes/jelly.yaml +++ b/themes/jelly.yaml @@ -1,52 +1,53 @@ name: "jelly" source: - marketplace_id: "kylethebaker.jelly-theme" - version: "0.0.4" - installs: 21823 - rating: 0 - ratings: 0 - author: "kylethebaker" - repo: "https://github.com/kylethebaker/jelly-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=kylethebaker.jelly-theme" + marketplace_id: "NemanjaManojlovic.jelly" + version: "0.0.5" + installs: 20221 + rating: 5 + ratings: 3 + author: "Nemanja Manojlovic" + repo: "https://github.com/Manojlovic1998/vscode-jelly-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NemanjaManojlovic.jelly" + formats: null colors: - bg: "#0A0B12" - fg: "#C5C8C6" - black: "#1C1C1C" - red: "#B85335" - green: "#799D6A" - yellow: "#FFB964" - blue: "#667899" - magenta: "#8787AF" - cyan: "#668799" - white: "#546B88" - brightBlack: "#3D3A53" - brightRed: "#CF6A4C" - brightGreen: "#99AD6A" - brightYellow: "#FAD07A" - brightBlue: "#8197BF" - brightMagenta: "#C6B6EE" - brightCyan: "#8FBFDC" - brightWhite: "#E8E8D3" + bg: "#18181B" + fg: "#FAFAFA" + black: "#0A0A0A" + red: "#E11D48" + green: "#16A34A" + yellow: "#FBBF24" + blue: "#2563EB" + magenta: "#C026D3" + cyan: "#0891B2" + white: "#F5F5F5" + brightBlack: "#737373" + brightRed: "#FB7185" + brightGreen: "#4ADE80" + brightYellow: "#FDE68A" + brightBlue: "#60A5FA" + brightMagenta: "#E879F9" + brightCyan: "#22D3EE" + brightWhite: "#FAFAFA" meta: mode: "dark" - accent: "orange" - hue: 278 + accent: "pink" + hue: null pair: null contrast: - fg: 72.6 + fg: 103.4 black: 0 - red: 28.4 - green: 44 - yellow: 72.5 - blue: 30.6 - magenta: 39.6 - cyan: 35.7 - white: 24.3 - brightBlack: 0 - brightRed: 38.3 - brightGreen: 53.5 - brightYellow: 81.3 - brightBlue: 45.6 - brightMagenta: 67.4 - brightCyan: 64.2 - brightWhite: 91.8 + red: 30 + green: 40.8 + yellow: 72.6 + blue: 25.7 + magenta: 29.5 + cyan: 36.7 + white: 100.2 + brightBlack: 27.6 + brightRed: 49.1 + brightGreen: 70.3 + brightYellow: 90.7 + brightBlue: 51.2 + brightMagenta: 53 + brightCyan: 68.5 + brightWhite: 103.4 diff --git a/themes/jellybeans-extended.yaml b/themes/jellybeans-extended.yaml index fdf77c25..e9a2128e 100644 --- a/themes/jellybeans-extended.yaml +++ b/themes/jellybeans-extended.yaml @@ -8,6 +8,7 @@ source: author: "YoonhoLee" repo: "https://github.com/yoonholee/jellybeans-extended" url: "https://marketplace.visualstudio.com/items?itemName=YoonhoLee.jellybeans-extended" + formats: null colors: bg: "#151515" fg: "#E8E8D3" diff --git a/themes/jellybeans-theme.yaml b/themes/jellybeans-theme.yaml index 2f8d2a0d..1a757565 100644 --- a/themes/jellybeans-theme.yaml +++ b/themes/jellybeans-theme.yaml @@ -1,13 +1,14 @@ -name: "jellybeans-theme" +name: "Jellybeans Theme" source: marketplace_id: "DimitarNonov.jellybeans-theme" version: "1.14.1" - installs: 13628 + installs: 13631 rating: 5 ratings: 2 author: "Dimitar Nonov" repo: "https://github.com/DNonov/jellybeans-code" url: "https://marketplace.visualstudio.com/items?itemName=DimitarNonov.jellybeans-theme" + formats: null colors: bg: "#151515" fg: "#E8E8D3" diff --git a/themes/jellybeans.yaml b/themes/jellybeans.yaml index 51ad6c9c..bb28443f 100644 --- a/themes/jellybeans.yaml +++ b/themes/jellybeans.yaml @@ -8,6 +8,7 @@ source: author: "sdwn" repo: "https://github.com/sdawn29/jellybeans-vscode" url: "https://marketplace.visualstudio.com/items?itemName=sdwn.jellybeans-vscode-sdwn" + formats: null colors: bg: "#151515" fg: "#E8E8D3" diff --git a/themes/jellyfish.yaml b/themes/jellyfish.yaml index bfea9232..627720bd 100644 --- a/themes/jellyfish.yaml +++ b/themes/jellyfish.yaml @@ -1,52 +1,53 @@ name: "Jellyfish" source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - rating: 0 - ratings: 0 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" + marketplace_id: "nerudevs.jellyfish-dark" + version: "1.0.5" + installs: 93914 + rating: 5 + ratings: 3 + author: "neru devs" + repo: "https://github.com/isneru/vsc-themes.git#main" + url: "https://marketplace.visualstudio.com/items?itemName=nerudevs.jellyfish-dark" + formats: null colors: - bg: "#0F1419" - fg: "#C2A5F0" - black: "#2D3748" - red: "#FF66B3" - green: "#80FFEE" - yellow: "#FF99FF" - blue: "#C299FF" - magenta: "#FF66B3" - cyan: "#80FFEE" - white: "#FF99DD" - brightBlack: "#4A5568" - brightRed: "#FF80CC" - brightGreen: "#99FFF2" - brightYellow: "#FFB3FF" - brightBlue: "#D6B3FF" - brightMagenta: "#FF80CC" - brightCyan: "#B3FFF7" - brightWhite: "#FFCCEE" + bg: "#151517" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: mode: "dark" - accent: "red" - hue: 249 + accent: "pink" + hue: null pair: null contrast: - fg: 60.2 + fg: 74.8 black: 0 - red: 49.7 - green: 93.8 - yellow: 66.9 - blue: 57 - magenta: 49.7 - cyan: 93.8 - white: 64.9 - brightBlack: 15.2 - brightRed: 56.9 - brightGreen: 95.6 - brightYellow: 75.4 - brightBlue: 69 - brightMagenta: 56.9 - brightCyan: 98 - brightWhite: 84 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.5 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/jeng-light.yaml b/themes/jeng-light.yaml deleted file mode 100644 index f227a509..00000000 --- a/themes/jeng-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Jeng Light" -source: - marketplace_id: "jeng.jeng-theme-light" - version: "1.0.5" - installs: 17376 - rating: 5 - ratings: 2 - author: "jeng" - repo: "https://github.com/jengjeng/jeng-theme-light" - url: "https://marketplace.visualstudio.com/items?itemName=jeng.jeng-theme-light" -colors: - bg: "#FAFAFA" - fg: "#5C6066" - black: "#000000" - red: "#F2590C" - green: "#77CC00" - yellow: "#F29718" - blue: "#41A6D9" - magenta: "#9966CC" - cyan: "#4DBF99" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#D6656A" - brightGreen: "#A3D900" - brightYellow: "#E7C547" - brightBlue: "#6871FF" - brightMagenta: "#A37ACC" - brightCyan: "#57D9AD" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 78.5 - black: 103 - red: 57.2 - green: 35.7 - yellow: 41.5 - blue: 49.6 - magenta: 64.9 - cyan: 41.6 - white: 27.1 - brightBlack: 74.9 - brightRed: 59.5 - brightGreen: 26.5 - brightYellow: 26.7 - brightBlue: 63 - brightMagenta: 58.2 - brightCyan: 28.9 - brightWhite: 0 diff --git a/themes/jetbrain-fleet-color.yaml b/themes/jetbrain-fleet-color.yaml index b1985184..2f5613bd 100644 --- a/themes/jetbrain-fleet-color.yaml +++ b/themes/jetbrain-fleet-color.yaml @@ -8,6 +8,7 @@ source: author: "madspace" repo: "https://github.com/madspace/madspace-echo-theme" url: "https://marketplace.visualstudio.com/items?itemName=madspace.echo-theme" + formats: null colors: bg: "#0A0A0A" fg: "#606060" diff --git a/themes/jetbrains-dark-theme.yaml b/themes/jetbrains-dark-theme.yaml deleted file mode 100644 index bdbfbac8..00000000 --- a/themes/jetbrains-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "JetBrains Dark Theme" -source: - marketplace_id: "kenethriera.jb-theme" - version: "1.0.27" - installs: 5693 - rating: 5 - ratings: 4 - author: "Keneth Riera" - repo: "https://github.com/rierarizzo/jetbrains-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kenethriera.jb-theme" -colors: - bg: "#1E1F22" - fg: "#BCBEC4" - black: "#151515" - red: "#AC4142" - green: "#7E8E50" - yellow: "#E5B567" - blue: "#6C99BB" - magenta: "#9F4E85" - cyan: "#7DD6CF" - white: "#D0D0D0" - brightBlack: "#505050" - brightRed: "#AC4142" - brightGreen: "#7E8E50" - brightYellow: "#E5B567" - brightBlue: "#6C99BB" - brightMagenta: "#9F4E85" - brightCyan: "#7DD6CF" - brightWhite: "#F5F5F5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 65.5 - black: 0 - red: 21.3 - green: 36.4 - yellow: 64.8 - blue: 42.7 - magenta: 23.3 - cyan: 70.7 - white: 76.1 - brightBlack: 12.2 - brightRed: 21.3 - brightGreen: 36.4 - brightYellow: 64.8 - brightBlue: 42.7 - brightMagenta: 23.3 - brightCyan: 70.7 - brightWhite: 99.3 diff --git a/themes/jetbrains-deep-dark-theme.yaml b/themes/jetbrains-deep-dark-theme.yaml deleted file mode 100644 index ecd585ce..00000000 --- a/themes/jetbrains-deep-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "JetBrains Deep Dark Theme" -source: - marketplace_id: "kenethriera.jb-theme" - version: "1.0.27" - installs: 5693 - rating: 5 - ratings: 4 - author: "Keneth Riera" - repo: "https://github.com/rierarizzo/jetbrains-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kenethriera.jb-theme" -colors: - bg: "#121314" - fg: "#BBBEBF" - black: "#2A2A2A" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#ABB2BF" - brightBlack: "#2A2A2A" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#61AFEF" - brightMagenta: "#C678DD" - brightCyan: "#56B6C2" - brightWhite: "#ABB2BF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 66.5 - black: 0 - red: 42.4 - green: 62.6 - yellow: 70.9 - blue: 55 - magenta: 45.5 - cyan: 54.9 - white: 59.8 - brightBlack: 0 - brightRed: 42.4 - brightGreen: 62.6 - brightYellow: 70.9 - brightBlue: 55 - brightMagenta: 45.5 - brightCyan: 54.9 - brightWhite: 59.8 diff --git a/themes/jetbrains-ide-dark-theme.yaml b/themes/jetbrains-ide-dark-theme.yaml deleted file mode 100644 index 5091de35..00000000 --- a/themes/jetbrains-ide-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "JetBrains IDE Dark Theme" -source: - marketplace_id: "mdmarufsarker.maruf-sarker" - version: "0.1.1" - installs: 29154 - rating: 5 - ratings: 6 - author: "Md. Maruf Sarker" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" -colors: - bg: "#0C1924" - fg: "#2FE2FF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 245 - pair: null - contrast: - fg: 76.7 - black: 0 - red: 26.6 - green: 52.9 - yellow: 85.5 - blue: 27.3 - magenta: 29.6 - cyan: 47.4 - white: 89.9 - brightBlack: 21.9 - brightRed: 38.4 - brightGreen: 63.4 - brightYellow: 95.5 - brightBlue: 39.9 - brightMagenta: 45.2 - brightCyan: 55.3 - brightWhite: 89.9 diff --git a/themes/jetcode.yaml b/themes/jetcode.yaml index 92fe28ef..4e9ba8cf 100644 --- a/themes/jetcode.yaml +++ b/themes/jetcode.yaml @@ -8,6 +8,7 @@ source: author: "justanotherbyte" repo: "https://github.com/justanotherbyte/jetcode" url: "https://marketplace.visualstudio.com/items?itemName=justanotherbyte.jetcode" + formats: null colors: bg: "#1E1F22" fg: "#CACCD2" diff --git a/themes/jetdark.yaml b/themes/jetdark.yaml index 0239b1df..959be300 100644 --- a/themes/jetdark.yaml +++ b/themes/jetdark.yaml @@ -8,6 +8,7 @@ source: author: "Alexander Alekseenko" repo: "https://github.com/Akaike/vsc-jetdark-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.jetdark" + formats: null colors: bg: "#1E1F22" fg: "#CED0D6" diff --git a/themes/jetvibe-darcula.yaml b/themes/jetvibe-darcula.yaml deleted file mode 100644 index 315d478d..00000000 --- a/themes/jetvibe-darcula.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "JetVibe Darcula" -source: - marketplace_id: "igorhaf.jetvibe" - version: "0.1.11" - installs: 80 - rating: 0 - ratings: 0 - author: "Igor Herson" - repo: "https://github.com/igorhaf/jetvibe" - url: "https://marketplace.visualstudio.com/items?itemName=igorhaf.jetvibe" -colors: - bg: "#1E1F22" - fg: "#E2E8F0" - black: "#000000" - red: "#CC6666" - green: "#6A8759" - yellow: "#C2C277" - blue: "#6699CC" - magenta: "#B77DBA" - cyan: "#5FB3B3" - white: "#A9B7C6" - brightBlack: "#5B5B5B" - brightRed: "#FF6B68" - brightGreen: "#8DCB6C" - brightYellow: "#E6E677" - brightBlue: "#7CA7D8" - brightMagenta: "#CFA0D4" - brightCyan: "#7FCFCF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 90.5 - black: 0 - red: 35.5 - green: 32.2 - yellow: 65.4 - blue: 43.2 - magenta: 41.2 - cyan: 52.1 - white: 60.5 - brightBlack: 16.5 - brightRed: 47.1 - brightGreen: 63.7 - brightYellow: 86.2 - brightBlue: 50.8 - brightMagenta: 57.4 - brightCyan: 67.7 - brightWhite: 105.9 diff --git a/themes/jewel-contrast.yaml b/themes/jewel-contrast.yaml deleted file mode 100644 index 4a345f31..00000000 --- a/themes/jewel-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "jewel-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#141619" - fg: "#C0CCDB" - black: "#1F2227" - red: "#BA0E2E" - green: "#6299C4" - yellow: "#C262C4" - blue: "#62C47C" - magenta: "#6299C4" - cyan: "#62C47C" - white: "#D0D9E4" - brightBlack: "#414852" - brightRed: "#F03E5F" - brightGreen: "#ACC9E0" - brightYellow: "#DFACE0" - brightBlue: "#ACE0BA" - brightMagenta: "#ACC9E0" - brightCyan: "#ACE0BA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 74 - black: 0 - red: 20.6 - green: 43.6 - yellow: 37.7 - blue: 59 - magenta: 43.6 - cyan: 59 - white: 82 - brightBlack: 10.1 - brightRed: 36.9 - brightGreen: 70.7 - brightYellow: 65.8 - brightBlue: 79.5 - brightMagenta: 70.7 - brightCyan: 79.5 - brightWhite: 107 diff --git a/themes/jewel-light.yaml b/themes/jewel-light.yaml deleted file mode 100644 index 007e1b28..00000000 --- a/themes/jewel-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "jewel-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#5C6470" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#6299C4" - yellow: "#C262C4" - blue: "#62C47C" - magenta: "#6299C4" - cyan: "#62C47C" - white: "#68717E" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#ACC9E0" - brightYellow: "#DFACE0" - brightBlue: "#ACE0BA" - brightMagenta: "#ACC9E0" - brightCyan: "#ACE0BA" - brightWhite: "#8F97A3" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 79.9 - black: 0 - red: 80.3 - green: 57.3 - yellow: 63.1 - blue: 42.3 - magenta: 57.3 - cyan: 42.3 - white: 74.2 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 31.1 - brightYellow: 35.8 - brightBlue: 22.9 - brightMagenta: 31.1 - brightCyan: 22.9 - brightWhite: 56 diff --git a/themes/jewel.yaml b/themes/jewel.yaml deleted file mode 100644 index 719b4672..00000000 --- a/themes/jewel.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "jewel" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#32373D" - fg: "#C0CCDB" - black: "#3D444B" - red: "#BA0E2E" - green: "#6299C4" - yellow: "#C262C4" - blue: "#62C47C" - magenta: "#6299C4" - cyan: "#62C47C" - white: "#D0D9E4" - brightBlack: "#606A75" - brightRed: "#F03E5F" - brightGreen: "#ACC9E0" - brightYellow: "#DFACE0" - brightBlue: "#ACE0BA" - brightMagenta: "#ACC9E0" - brightCyan: "#ACE0BA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 253 - pair: null - contrast: - fg: 68 - black: 0 - red: 14.7 - green: 37.6 - yellow: 31.7 - blue: 53.1 - magenta: 37.6 - cyan: 53.1 - white: 76.1 - brightBlack: 17.4 - brightRed: 31 - brightGreen: 64.8 - brightYellow: 59.8 - brightBlue: 73.5 - brightMagenta: 64.8 - brightCyan: 73.5 - brightWhite: 101 diff --git a/themes/jg-vsc.yaml b/themes/jg-vsc.yaml index 2c01719b..f3bc8843 100644 --- a/themes/jg-vsc.yaml +++ b/themes/jg-vsc.yaml @@ -8,6 +8,7 @@ source: author: "Jason Guro" repo: "https://github.com/jay-guro/jg-vsc" url: "https://marketplace.visualstudio.com/items?itemName=JasonGuro.jg-vsc" + formats: null colors: bg: "#2F274A" fg: "#E0DEF4" diff --git a/themes/jingle-contrast.yaml b/themes/jingle-contrast.yaml deleted file mode 100644 index 75f077b5..00000000 --- a/themes/jingle-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "jingle-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0D1011" - fg: "#C0CCDB" - black: "#181E1F" - red: "#BA0E2E" - green: "#E06D5C" - yellow: "#7EC579" - blue: "#98ABB7" - magenta: "#E06D5C" - cyan: "#7EC579" - white: "#D0D9E4" - brightBlack: "#39464B" - brightRed: "#F03E5F" - brightGreen: "#F0BAB2" - brightYellow: "#C3E4C0" - brightBlue: "#D4DCE1" - brightMagenta: "#F0BAB2" - brightCyan: "#C3E4C0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 74.5 - black: 0 - red: 21.1 - green: 42.3 - yellow: 61.6 - blue: 54.8 - magenta: 42.3 - cyan: 61.6 - white: 82.5 - brightBlack: 9.4 - brightRed: 37.4 - brightGreen: 72.1 - brightYellow: 84.4 - brightBlue: 84.2 - brightMagenta: 72.1 - brightCyan: 84.4 - brightWhite: 107.5 diff --git a/themes/jingle-light.yaml b/themes/jingle-light.yaml deleted file mode 100644 index a35da7bf..00000000 --- a/themes/jingle-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "jingle-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#485860" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#E06D5C" - yellow: "#7EC579" - blue: "#98ABB7" - magenta: "#E06D5C" - cyan: "#7EC579" - white: "#53656F" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#F0BAB2" - brightYellow: "#C3E4C0" - brightBlue: "#D4DCE1" - brightMagenta: "#F0BAB2" - brightCyan: "#C3E4C0" - brightWhite: "#768D98" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 85.7 - black: 0 - red: 80.3 - green: 59 - yellow: 40.3 - blue: 46.8 - magenta: 59 - cyan: 40.3 - white: 80.3 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 30.2 - brightYellow: 18.7 - brightBlue: 18.9 - brightMagenta: 30.2 - brightCyan: 18.7 - brightWhite: 62.4 diff --git a/themes/jingle.yaml b/themes/jingle.yaml deleted file mode 100644 index 945b7016..00000000 --- a/themes/jingle.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "jingle" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#283035" - fg: "#C0CCDB" - black: "#333D44" - red: "#BA0E2E" - green: "#E06D5C" - yellow: "#7EC579" - blue: "#98ABB7" - magenta: "#E06D5C" - cyan: "#7EC579" - white: "#D0D9E4" - brightBlack: "#54656F" - brightRed: "#F03E5F" - brightGreen: "#F0BAB2" - brightYellow: "#C3E4C0" - brightBlue: "#D4DCE1" - brightMagenta: "#F0BAB2" - brightCyan: "#C3E4C0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 235 - pair: null - contrast: - fg: 70 - black: 0 - red: 16.6 - green: 37.9 - yellow: 57.2 - blue: 50.4 - magenta: 37.9 - cyan: 57.2 - white: 78.1 - brightBlack: 16.7 - brightRed: 32.9 - brightGreen: 67.7 - brightYellow: 80 - brightBlue: 79.7 - brightMagenta: 67.7 - brightCyan: 80 - brightWhite: 103 diff --git a/themes/jinglecode.yaml b/themes/jinglecode.yaml index 3b1ba65a..a43a613f 100644 --- a/themes/jinglecode.yaml +++ b/themes/jinglecode.yaml @@ -8,6 +8,7 @@ source: author: "ayyucedemirbas" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ayyucedemirbas.jinglecode" + formats: null colors: bg: "#0F1A23" fg: "#FFD700" diff --git a/themes/jinshi-dark-theme.yaml b/themes/jinshi-dark-theme.yaml index 1a01a3be..8a44114c 100644 --- a/themes/jinshi-dark-theme.yaml +++ b/themes/jinshi-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Matheus Montemurro" repo: "https://github.com/montemurro19/apothecary-diary-theme" url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" + formats: null colors: bg: "#2A1B3D" fg: "#F4F1F8" diff --git a/themes/jinshi-light-theme.yaml b/themes/jinshi-light-theme.yaml index d86662b2..e0399020 100644 --- a/themes/jinshi-light-theme.yaml +++ b/themes/jinshi-light-theme.yaml @@ -8,6 +8,7 @@ source: author: "Matheus Montemurro" repo: "https://github.com/montemurro19/apothecary-diary-theme" url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" + formats: null colors: bg: "#FDFCFF" fg: "#2A1B3D" diff --git a/themes/jinx.yaml b/themes/jinx.yaml index 2836badc..80b2e418 100644 --- a/themes/jinx.yaml +++ b/themes/jinx.yaml @@ -8,6 +8,8 @@ source: author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" + formats: + nvim: "https://raw.githubusercontent.com/volskaya/irrelevant/main/extensions/neovim/lua/irrelevant/colors.lua" colors: bg: "#1C1C1C" fg: "#FFFFFF" diff --git a/themes/jk.yaml b/themes/jk.yaml index 69cb7765..519756ac 100644 --- a/themes/jk.yaml +++ b/themes/jk.yaml @@ -8,6 +8,7 @@ source: author: "JsonKody" repo: "https://github.com/JsonKody/jk-theme" url: "https://marketplace.visualstudio.com/items?itemName=JsonKody.jk" + formats: null colors: bg: "#14101D" fg: "#FFFFFF" diff --git a/themes/jker-purple-wave.yaml b/themes/jker-purple-wave.yaml deleted file mode 100644 index 607f387a..00000000 --- a/themes/jker-purple-wave.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "jker Purple Wave" -source: - marketplace_id: "jker.purple-wave" - version: "1.0.1" - installs: 8191 - rating: 0 - ratings: 0 - author: "jker" - repo: "https://github.com/guidolee/jker-purple-wave" - url: "https://marketplace.visualstudio.com/items?itemName=jker.purple-wave" -colors: - bg: "#1F1929" - fg: "#D4D4D4" - black: "#7F7F7F" - red: "#E15A60" - green: "#99C794" - yellow: "#FFE2A9" - blue: "#6699CC" - magenta: "#C594C5" - cyan: "#5FB3B3" - white: "#D4D4D4" - brightBlack: "#7F7F7F" - brightRed: "#E15A60" - brightGreen: "#99C794" - brightYellow: "#FFE2A9" - brightBlue: "#6699CC" - brightMagenta: "#C594C5" - brightCyan: "#5FB3B3" - brightWhite: "#D4D4D4" -meta: - mode: "dark" - accent: "orange" - hue: 301 - pair: null - contrast: - fg: 78.9 - black: 32.7 - red: 37.3 - green: 64.3 - yellow: 89.6 - blue: 43.6 - magenta: 51.5 - cyan: 52.5 - white: 78.9 - brightBlack: 32.7 - brightRed: 37.3 - brightGreen: 64.3 - brightYellow: 89.6 - brightBlue: 43.6 - brightMagenta: 51.5 - brightCyan: 52.5 - brightWhite: 78.9 diff --git a/themes/jngl.yaml b/themes/jngl.yaml index 71c0fd02..b4cb60d8 100644 --- a/themes/jngl.yaml +++ b/themes/jngl.yaml @@ -8,6 +8,7 @@ source: author: "jrnxf" repo: "https://github.com/jrnxf/jngl" url: "https://marketplace.visualstudio.com/items?itemName=jrnxf.jngl" + formats: null colors: bg: "#132D2F" fg: "#E6EAEA" diff --git a/themes/jo-o-campos-theme.yaml b/themes/jo-o-campos-theme.yaml deleted file mode 100644 index dd34b6f1..00000000 --- a/themes/jo-o-campos-theme.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "João Campos Theme" -source: - marketplace_id: "JooCampos.joao-campos-dark-theme" - version: "0.0.6" - installs: 28 - author: "João Campos" - repo: "https://github.com/joaonevescampos/joao-campos-theme" - url: "https://marketplace.visualstudio.com/items?itemName=JooCampos.joao-campos-dark-theme" -colors: - bg: "#141D2E" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 263 - pair: null - contrast: - fg: 106.1 - black: 0 - red: 26 - green: 52.3 - yellow: 84.9 - blue: 26.7 - magenta: 29 - cyan: 46.8 - white: 89.3 - brightBlack: 21.3 - brightRed: 37.8 - brightGreen: 62.8 - brightYellow: 94.9 - brightBlue: 39.3 - brightMagenta: 44.6 - brightCyan: 54.7 - brightWhite: 89.3 diff --git a/themes/jocelyn.yaml b/themes/jocelyn.yaml index 1062bf81..e9475753 100644 --- a/themes/jocelyn.yaml +++ b/themes/jocelyn.yaml @@ -8,6 +8,7 @@ source: author: "sspantz" repo: "https://github.com/sspantz/jocelyn-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=sspantz.jocelyn" + formats: null colors: bg: "#2A2A2E" fg: "#B1B1B3" diff --git a/themes/jojobii-s-colors.yaml b/themes/jojobii-s-colors.yaml deleted file mode 100644 index 6bf5247e..00000000 --- a/themes/jojobii-s-colors.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "jojobii's Colors" -source: - marketplace_id: "jojobii.jojobii-vscode-colors" - version: "0.1.0" - installs: 253 - rating: 0 - ratings: 0 - author: "jojobii" - repo: "https://github.com/jojobii-arks/jojobii-arks" - url: "https://marketplace.visualstudio.com/items?itemName=jojobii.jojobii-vscode-colors" -colors: - bg: "#282A3A" - fg: "#EAF2F1" - black: "#3A3D4B" - red: "#FF657A" - green: "#BAD761" - yellow: "#FFD76D" - blue: "#FF9B5E" - magenta: "#C39AC9" - cyan: "#9CD1BB" - white: "#EAF2F1" - brightBlack: "#696D77" - brightRed: "#FF657A" - brightGreen: "#BAD761" - brightYellow: "#FFD76D" - brightBlue: "#FF9B5E" - brightMagenta: "#C39AC9" - brightCyan: "#9CD1BB" - brightWhite: "#EAF2F1" -meta: - mode: "dark" - accent: "orange" - hue: 279 - pair: null - contrast: - fg: 94.2 - black: 0 - red: 44.2 - green: 71.3 - yellow: 81 - blue: 58 - magenta: 50.9 - cyan: 67.9 - white: 94.2 - brightBlack: 22 - brightRed: 44.2 - brightGreen: 71.3 - brightYellow: 81 - brightBlue: 58 - brightMagenta: 50.9 - brightCyan: 67.9 - brightWhite: 94.2 diff --git a/themes/jokejoke.yaml b/themes/jokejoke.yaml index 66898166..c41d2381 100644 --- a/themes/jokejoke.yaml +++ b/themes/jokejoke.yaml @@ -8,6 +8,7 @@ source: author: "CodeBabel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CodeBabel.codebabel-theme-jok" + formats: null colors: bg: "#131111" fg: "#D4D4D4" diff --git a/themes/jokenkai.yaml b/themes/jokenkai.yaml index 22551fcc..ca6c3057 100644 --- a/themes/jokenkai.yaml +++ b/themes/jokenkai.yaml @@ -8,6 +8,7 @@ source: author: "Eduardo Almeida" repo: "https://github.com/JoKenPo/jokenpo-theme" url: "https://marketplace.visualstudio.com/items?itemName=EduardoAlmeida.jokenpo-theme" + formats: null colors: bg: "#222222" fg: "#E1E1E6" diff --git a/themes/jokenpo-obscure.yaml b/themes/jokenpo-obscure.yaml index 5d491ca6..7dfaa672 100644 --- a/themes/jokenpo-obscure.yaml +++ b/themes/jokenpo-obscure.yaml @@ -8,6 +8,7 @@ source: author: "Eduardo Almeida" repo: "https://github.com/JoKenPo/jokenpo-theme" url: "https://marketplace.visualstudio.com/items?itemName=EduardoAlmeida.jokenpo-theme" + formats: null colors: bg: "#191622" fg: "#E1E1E6" diff --git a/themes/joker-contrast.yaml b/themes/joker-contrast.yaml deleted file mode 100644 index 04e3c28f..00000000 --- a/themes/joker-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "joker-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#141619" - fg: "#C0CCDB" - black: "#1F2227" - red: "#BA0E2E" - green: "#00B27D" - yellow: "#9A6FC4" - blue: "#FFFFFF" - magenta: "#00B27D" - cyan: "#9A6FC4" - white: "#D0D9E4" - brightBlack: "#414852" - brightRed: "#F03E5F" - brightGreen: "#19FFBB" - brightYellow: "#CDB7E2" - brightBlue: "#FFFFFF" - brightMagenta: "#19FFBB" - brightCyan: "#CDB7E2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 74 - black: 0 - red: 20.6 - green: 48.7 - yellow: 34.9 - blue: 107 - magenta: 48.7 - cyan: 34.9 - white: 82 - brightBlack: 10.1 - brightRed: 36.9 - brightGreen: 88.4 - brightYellow: 67.4 - brightBlue: 107 - brightMagenta: 88.4 - brightCyan: 67.4 - brightWhite: 107 diff --git a/themes/joker-light.yaml b/themes/joker-light.yaml deleted file mode 100644 index 2773fa20..00000000 --- a/themes/joker-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "joker-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#4A5159" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#00B27D" - yellow: "#9A6FC4" - blue: "#4A5159" - magenta: "#00B27D" - cyan: "#9A6FC4" - white: "#565E67" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#19FFBB" - brightYellow: "#CDB7E2" - brightBlue: "#798490" - brightMagenta: "#19FFBB" - brightCyan: "#CDB7E2" - brightWhite: "#798490" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 87.9 - black: 0 - red: 80.3 - green: 52.3 - yellow: 65.9 - blue: 87.9 - magenta: 52.3 - cyan: 65.9 - white: 82.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 14.5 - brightYellow: 34.3 - brightBlue: 65.6 - brightMagenta: 14.5 - brightCyan: 34.3 - brightWhite: 65.6 diff --git a/themes/joker-neon.yaml b/themes/joker-neon.yaml index 9c1e784a..a5cfdbd7 100644 --- a/themes/joker-neon.yaml +++ b/themes/joker-neon.yaml @@ -8,6 +8,7 @@ source: author: "fidelp27" repo: "https://github.com/fidelp27/joker-neon-theme" url: "https://marketplace.visualstudio.com/items?itemName=fidelp27.joker-neon-theme" + formats: null colors: bg: "#0A0514" fg: "#E8E4F0" diff --git a/themes/joker.yaml b/themes/joker.yaml deleted file mode 100644 index 4af4a37c..00000000 --- a/themes/joker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "joker" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#32373D" - fg: "#C0CCDB" - black: "#3D444B" - red: "#BA0E2E" - green: "#00B27D" - yellow: "#9A6FC4" - blue: "#FFFFFF" - magenta: "#00B27D" - cyan: "#9A6FC4" - white: "#D0D9E4" - brightBlack: "#606A75" - brightRed: "#F03E5F" - brightGreen: "#19FFBB" - brightYellow: "#CDB7E2" - brightBlue: "#FFFFFF" - brightMagenta: "#19FFBB" - brightCyan: "#CDB7E2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 253 - pair: null - contrast: - fg: 68 - black: 0 - red: 14.7 - green: 42.7 - yellow: 28.9 - blue: 101 - magenta: 42.7 - cyan: 28.9 - white: 76.1 - brightBlack: 17.4 - brightRed: 31 - brightGreen: 82.4 - brightYellow: 61.4 - brightBlue: 101 - brightMagenta: 82.4 - brightCyan: 61.4 - brightWhite: 101 diff --git a/themes/jollifake.yaml b/themes/jollifake.yaml index bda26022..2359dd24 100644 --- a/themes/jollifake.yaml +++ b/themes/jollifake.yaml @@ -1,13 +1,14 @@ -name: "JolliFake" +name: "Jollifake" source: marketplace_id: "jeooo.jollifake" version: "1.0.0" - installs: 1038 + installs: 1039 rating: 0 ratings: 0 author: "jeooo`" repo: "https://github.com/jeoooo/jollifake" url: "https://marketplace.visualstudio.com/items?itemName=jeooo.jollifake" + formats: null colors: bg: "#FFFFFF" fg: "#A80C13" diff --git a/themes/jolly-light.yaml b/themes/jolly-light.yaml index fbc44eea..e03a27f4 100644 --- a/themes/jolly-light.yaml +++ b/themes/jolly-light.yaml @@ -8,6 +8,7 @@ source: author: "Sean Brynjolfsson" repo: "https://github.com/jolfss/jolly-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SeanBrynjolfsson.jolly" + formats: null colors: bg: "#EEF2F7" fg: "#002A5E" diff --git a/themes/jone-light.yaml b/themes/jone-light.yaml deleted file mode 100644 index 1dd20686..00000000 --- a/themes/jone-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Jone Light" -source: - marketplace_id: "jonxie.jone-theme" - version: "0.3.2" - installs: 1041 - rating: 0 - ratings: 0 - author: "Jone Xie" - repo: "https://github.com/Jefxie/jone-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jonxie.jone-theme" -colors: - bg: "#F2F2F2" - fg: "#2B312C" - black: "#000000" - red: "#EE3F4D" - green: "#96C24E" - yellow: "#F9D367" - blue: "#619AC3" - magenta: "#D276A3" - cyan: "#57C3C2" - white: "#E4DFD7" - brightBlack: "#2B312C" - brightRed: "#EE3F4D" - brightGreen: "#41AE3C" - brightYellow: "#B78D12" - brightBlue: "#619AC3" - brightMagenta: "#CC5595" - brightCyan: "#12AA9C" - brightWhite: "#CEC3DC" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92 - black: 98.3 - red: 56.8 - green: 32.6 - yellow: 13.4 - blue: 49.3 - magenta: 49.4 - cyan: 33.2 - white: 8.4 - brightBlack: 92 - brightRed: 56.8 - brightGreen: 46.6 - brightYellow: 49.7 - brightBlue: 49.3 - brightMagenta: 58.6 - brightCyan: 47 - brightWhite: 22.2 diff --git a/themes/josi.yaml b/themes/josi.yaml index 6afd66de..26c8764c 100644 --- a/themes/josi.yaml +++ b/themes/josi.yaml @@ -8,6 +8,7 @@ source: author: "Fabio Ruicci" repo: "git://github.com/fabioruicci/josi-theme" url: "https://marketplace.visualstudio.com/items?itemName=fabioruicci.josi" + formats: null colors: bg: "#282C34" fg: "#C1D0D2" diff --git a/themes/jott4c-dark.yaml b/themes/jott4c-dark.yaml index 0759f750..564f9341 100644 --- a/themes/jott4c-dark.yaml +++ b/themes/jott4c-dark.yaml @@ -1,4 +1,4 @@ -name: "jott4c-dark" +name: "Jott4c-dark" source: marketplace_id: "jott4c.jott4c-dark" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "junior alencar da cunha" repo: null url: "https://marketplace.visualstudio.com/items?itemName=jott4c.jott4c-dark" + formats: null colors: bg: "#141417" fg: "#FBFBFB" diff --git a/themes/joyboy.yaml b/themes/joyboy.yaml index b2a10034..d65044e2 100644 --- a/themes/joyboy.yaml +++ b/themes/joyboy.yaml @@ -8,6 +8,7 @@ source: author: "Aditya Prasad" repo: "https://github.com/AdityaP183/joyboy" url: "https://marketplace.visualstudio.com/items?itemName=AdityaPrasad.joyboy-vscode-theme" + formats: null colors: bg: "#0F0F17" fg: "#EEFFFF" diff --git a/themes/joyful-fork-fork.yaml b/themes/joyful-fork-fork.yaml deleted file mode 100644 index a7f25128..00000000 --- a/themes/joyful-fork-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Joyful - Fork - Fork" -source: - marketplace_id: "EmeAim.aim" - version: "0.0.8" - installs: 1797 - rating: 5 - ratings: 1 - author: "EmeAim" - repo: "https://github.com/EmePin/aim-themes" - url: "https://marketplace.visualstudio.com/items?itemName=EmeAim.aim" -colors: - bg: "#373E4D" - fg: "#F9F9F9" - black: "#000000" - red: "#FA5AA4" - green: "#2BE491" - yellow: "#FA946E" - blue: "#89CCF7" - magenta: "#CF8EF4" - cyan: "#63C5EA" - white: "#F9F9F9" - brightBlack: "#666666" - brightRed: "#FA74B2" - brightGreen: "#44EB9F" - brightYellow: "#FAA687" - brightBlue: "#A1D5F7" - brightMagenta: "#D8A6F4" - brightCyan: "#7ACBEA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 265 - pair: null - contrast: - fg: 94.8 - black: 9 - red: 37.3 - green: 65.1 - yellow: 50 - blue: 62 - magenta: 46.3 - cyan: 55.8 - white: 94.8 - brightBlack: 13.9 - brightRed: 43.3 - brightGreen: 69.5 - brightYellow: 56.5 - brightBlue: 68 - brightMagenta: 55.5 - brightCyan: 59.7 - brightWhite: 98.8 diff --git a/themes/js-dark-theme.yaml b/themes/js-dark-theme.yaml index f12aa598..bdec9ec4 100644 --- a/themes/js-dark-theme.yaml +++ b/themes/js-dark-theme.yaml @@ -2,12 +2,13 @@ name: "JS Dark Theme" source: marketplace_id: "AbdulnasirOlcan.js-dark-theme" version: "1.1.3" - installs: 2215 + installs: 2216 rating: 5 ratings: 3 author: "Abdulnasir Olcan" repo: "https://github.com/jsdeveloperr/JS-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=AbdulnasirOlcan.js-dark-theme" + formats: null colors: bg: "#0E0D1A" fg: "#75767E" diff --git a/themes/jtvscode-dark.yaml b/themes/jtvscode-dark.yaml index 494e4ec6..b465296d 100644 --- a/themes/jtvscode-dark.yaml +++ b/themes/jtvscode-dark.yaml @@ -8,6 +8,7 @@ source: author: "javiert.dev" repo: "https://github.com/javiertdev/jtVSCode" url: "https://marketplace.visualstudio.com/items?itemName=javiertdev.jtvscode" + formats: null colors: bg: "#141414" fg: "#D4D4D4" diff --git a/themes/jtvscode-light.yaml b/themes/jtvscode-light.yaml index 8800b6b3..15a056e0 100644 --- a/themes/jtvscode-light.yaml +++ b/themes/jtvscode-light.yaml @@ -8,6 +8,7 @@ source: author: "javiert.dev" repo: "https://github.com/javiertdev/jtVSCode" url: "https://marketplace.visualstudio.com/items?itemName=javiertdev.jtvscode" + formats: null colors: bg: "#FFFFFF" fg: "#212121" diff --git a/themes/jugal13-theme.yaml b/themes/jugal13-theme.yaml index 5495dc43..8ddf92e9 100644 --- a/themes/jugal13-theme.yaml +++ b/themes/jugal13-theme.yaml @@ -8,6 +8,7 @@ source: author: "Jugal" repo: "https://github.com/jugalw13/jugal13-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jugal13.jugal13-theme" + formats: null colors: bg: "#000015" fg: "#FFFFFF" diff --git a/themes/juicy-contrast.yaml b/themes/juicy-contrast.yaml deleted file mode 100644 index 47fe5b0a..00000000 --- a/themes/juicy-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "juicy-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#000000" - fg: "#E3E2E0" - black: "#0D0D0D" - red: "#BA0E2E" - green: "#FF4E50" - yellow: "#3BC7B8" - blue: "#C3CB4C" - magenta: "#EDB92E" - cyan: "#F85931" - white: "#EFEFED" - brightBlack: "#333333" - brightRed: "#F03E5F" - brightGreen: "#FFB4B5" - brightYellow: "#8ADED5" - brightBlue: "#DDE29B" - brightMagenta: "#F5D88C" - brightCyan: "#FBA894" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.2 - black: 0 - red: 21.5 - green: 43.2 - yellow: 61.8 - blue: 70.7 - magenta: 69 - cyan: 43 - white: 97.3 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 73 - brightYellow: 77.7 - brightBlue: 85.9 - brightMagenta: 84.5 - brightCyan: 66.9 - brightWhite: 107.9 diff --git a/themes/juicy-light.yaml b/themes/juicy-light.yaml deleted file mode 100644 index 8499132d..00000000 --- a/themes/juicy-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "juicy-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#F0F0F0" - fg: "#333333" - black: "#FDFDFD" - red: "#BA0E2E" - green: "#FF4E50" - yellow: "#3BC7B8" - blue: "#C3CB4C" - magenta: "#EDB92E" - cyan: "#F85931" - white: "#404040" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#FFB4B5" - brightYellow: "#8ADED5" - brightBlue: "#DDE29B" - brightMagenta: "#F5D88C" - brightCyan: "#FBA894" - brightWhite: "#666666" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.8 - black: 0 - red: 71.4 - green: 49.6 - yellow: 31.6 - blue: 23 - magenta: 24.7 - cyan: 49.8 - white: 85.2 - brightBlack: 7.6 - brightRed: 55 - brightGreen: 20.9 - brightYellow: 16.5 - brightBlue: 8.8 - brightMagenta: 10.1 - brightCyan: 26.7 - brightWhite: 69.8 diff --git a/themes/juicy.yaml b/themes/juicy.yaml deleted file mode 100644 index bf2693dd..00000000 --- a/themes/juicy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "juicy" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#222222" - fg: "#E3E2E0" - black: "#2F2F2F" - red: "#BA0E2E" - green: "#FF4E50" - yellow: "#3BC7B8" - blue: "#C3CB4C" - magenta: "#EDB92E" - cyan: "#F85931" - white: "#EFEFED" - brightBlack: "#555555" - brightRed: "#F03E5F" - brightGreen: "#FFB4B5" - brightYellow: "#8ADED5" - brightBlue: "#DDE29B" - brightMagenta: "#F5D88C" - brightCyan: "#FBA894" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 86.8 - black: 0 - red: 19.1 - green: 40.8 - yellow: 59.4 - blue: 68.3 - magenta: 66.6 - cyan: 40.6 - white: 94.9 - brightBlack: 13.7 - brightRed: 35.4 - brightGreen: 70.5 - brightYellow: 75.2 - brightBlue: 83.5 - brightMagenta: 82.1 - brightCyan: 64.4 - brightWhite: 105.5 diff --git a/themes/july-summer-vibes-dark-theme.yaml b/themes/july-summer-vibes-dark-theme.yaml deleted file mode 100644 index 2379bc38..00000000 --- a/themes/july-summer-vibes-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "July Summer Vibes Dark Theme" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#002B36" - fg: "#FFFFFF" - black: "#073642" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#6C71C4" - cyan: "#2AA198" - white: "#FFFFFF" - brightBlack: "#586E75" - brightRed: "#DC322F" - brightGreen: "#859900" - brightYellow: "#B58900" - brightBlue: "#268BD2" - brightMagenta: "#6C71C4" - brightCyan: "#2AA198" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 220 - pair: null - contrast: - fg: 104.4 - black: 0 - red: 27.7 - green: 39.2 - yellow: 39.2 - blue: 34.3 - magenta: 28 - cyan: 40 - white: 104.4 - brightBlack: 21.5 - brightRed: 27.7 - brightGreen: 39.2 - brightYellow: 39.2 - brightBlue: 34.3 - brightMagenta: 28 - brightCyan: 40 - brightWhite: 104.4 diff --git a/themes/jummidark.yaml b/themes/jummidark.yaml index eaa07aca..d71fad74 100644 --- a/themes/jummidark.yaml +++ b/themes/jummidark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "jummiterm.jummiterm-vscode" version: "0.0.4" installs: 163 + rating: 0 + ratings: 0 author: "jummiterm" repo: "https://github.com/jcherven/jummiterm-vscode" url: "https://marketplace.visualstudio.com/items?itemName=jummiterm.jummiterm-vscode" + formats: null colors: bg: "#262626" fg: "#E4E4E4" diff --git a/themes/jummilight.yaml b/themes/jummilight.yaml index c0a12066..fd8e74a8 100644 --- a/themes/jummilight.yaml +++ b/themes/jummilight.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "jummiterm.jummiterm-vscode" version: "0.0.4" installs: 163 + rating: 0 + ratings: 0 author: "jummiterm" repo: "https://github.com/jcherven/jummiterm-vscode" url: "https://marketplace.visualstudio.com/items?itemName=jummiterm.jummiterm-vscode" + formats: null colors: bg: "#E4E4E4" fg: "#262626" diff --git a/themes/jumper-contrast.yaml b/themes/jumper-contrast.yaml deleted file mode 100644 index 8b853eee..00000000 --- a/themes/jumper-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "jumper-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0E1111" - fg: "#8DA0A0" - black: "#191F1F" - red: "#BA0E2E" - green: "#36A595" - yellow: "#F6DA40" - blue: "#DB515C" - magenta: "#E08E4C" - cyan: "#36A595" - white: "#9BACAC" - brightBlack: "#3C4949" - brightRed: "#F03E5F" - brightGreen: "#71D0C3" - brightYellow: "#FBEDA1" - brightBlue: "#ECA6AB" - brightMagenta: "#EFC5A3" - brightCyan: "#71D0C3" - brightWhite: "#C5CECE" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 48.4 - black: 0 - red: 21 - green: 44.8 - yellow: 83.9 - blue: 35.4 - magenta: 51.3 - cyan: 44.8 - white: 55 - brightBlack: 10.3 - brightRed: 37.3 - brightGreen: 68.2 - brightYellow: 94.9 - brightBlue: 63.8 - brightMagenta: 75.8 - brightCyan: 68.2 - brightWhite: 75.3 diff --git a/themes/jumper-light.yaml b/themes/jumper-light.yaml deleted file mode 100644 index 5817a036..00000000 --- a/themes/jumper-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "jumper-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#222A2A" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#36A595" - yellow: "#C9B230" - blue: "#DB515C" - magenta: "#E08E4C" - cyan: "#36A595" - white: "#2D3838" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#71D0C3" - brightYellow: "#E0D27F" - brightBlue: "#ECA6AB" - brightMagenta: "#EFC5A3" - brightCyan: "#71D0C3" - brightWhite: "#506262" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 101.5 - black: 0 - red: 80.3 - green: 56.5 - yellow: 41.5 - blue: 65.8 - magenta: 50.2 - cyan: 56.5 - white: 97.7 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 33.9 - brightYellow: 24.6 - brightBlue: 38.1 - brightMagenta: 26.8 - brightCyan: 33.9 - brightWhite: 82 diff --git a/themes/jumper.yaml b/themes/jumper.yaml deleted file mode 100644 index 0038eac7..00000000 --- a/themes/jumper.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "jumper" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#222A2A" - fg: "#8DA0A0" - black: "#2D3838" - red: "#BA0E2E" - green: "#36A595" - yellow: "#F6DA40" - blue: "#DB515C" - magenta: "#E08E4C" - cyan: "#36A595" - white: "#9BACAC" - brightBlack: "#506262" - brightRed: "#F03E5F" - brightGreen: "#71D0C3" - brightYellow: "#FBEDA1" - brightBlue: "#ECA6AB" - brightMagenta: "#EFC5A3" - brightCyan: "#71D0C3" - brightWhite: "#C5CECE" -meta: - mode: "dark" - accent: "orange" - hue: 197 - pair: null - contrast: - fg: 45.3 - black: 0 - red: 18 - green: 41.7 - yellow: 80.8 - blue: 32.3 - magenta: 48.2 - cyan: 41.7 - white: 51.9 - brightBlack: 16.4 - brightRed: 34.3 - brightGreen: 65.1 - brightYellow: 91.8 - brightBlue: 60.7 - brightMagenta: 72.7 - brightCyan: 65.1 - brightWhite: 72.2 diff --git a/themes/jungle.yaml b/themes/jungle.yaml index 06d9dd69..2f162331 100644 --- a/themes/jungle.yaml +++ b/themes/jungle.yaml @@ -8,6 +8,7 @@ source: author: "neru devs" repo: "https://github.com/isneru/vsc-themes.git#main" url: "https://marketplace.visualstudio.com/items?itemName=nerudevs.jungle-scenario" + formats: null colors: bg: "#111713" fg: "#B08968" diff --git a/themes/juniorcoder.yaml b/themes/juniorcoder.yaml index 2daf0719..7c24aa54 100644 --- a/themes/juniorcoder.yaml +++ b/themes/juniorcoder.yaml @@ -8,6 +8,7 @@ source: author: "JuniorCoder" repo: "https://github.com/juniorcoder2008/theme" url: "https://marketplace.visualstudio.com/items?itemName=JuniorCoder.juniorcoders-theme" + formats: null colors: bg: "#292C35" fg: "#F6FFFF" diff --git a/themes/just-code-already-fork.yaml b/themes/just-code-already-fork.yaml deleted file mode 100644 index 771cf5db..00000000 --- a/themes/just-code-already-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Just Code Already - Fork" -source: - marketplace_id: "FaustVI00.FaustVI00" - version: "0.0.1" - installs: 79 - rating: 5 - ratings: 1 - author: "FaustVI00" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=FaustVI00.FaustVI00" -colors: - bg: "#282E44" - fg: "#FFFADF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 272 - pair: null - contrast: - fg: 99.2 - black: 0 - red: 22.8 - green: 49.1 - yellow: 81.7 - blue: 23.5 - magenta: 25.9 - cyan: 43.7 - white: 86.1 - brightBlack: 18.2 - brightRed: 34.7 - brightGreen: 59.7 - brightYellow: 91.8 - brightBlue: 36.1 - brightMagenta: 41.5 - brightCyan: 51.5 - brightWhite: 86.1 diff --git a/themes/jwrdark.yaml b/themes/jwrdark.yaml deleted file mode 100644 index c14191de..00000000 --- a/themes/jwrdark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "jwrdark" -source: - marketplace_id: "oloier.jwrdark" - version: "0.2.0" - installs: 160 - rating: 0 - ratings: 0 - author: "oloier" - repo: "https://github.com/oloier/jwrdark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=oloier.jwrdark" -colors: - bg: "#0C0C0C" - fg: "#999999" - black: "#242424" - red: "#8A2F58" - green: "#7E63B2" - yellow: "#914E89" - blue: "#3E6287" - magenta: "#5E468C" - cyan: "#2B7694" - white: "#899CA1" - brightBlack: "#474747" - brightRed: "#CF4F88" - brightGreen: "#53A6A6" - brightYellow: "#BF85CC" - brightBlue: "#4779B3" - brightMagenta: "#7F62B3" - brightCyan: "#47959E" - brightWhite: "#C0C0C0" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 47 - black: 0 - red: 14.9 - green: 27.9 - yellow: 23.1 - blue: 20.1 - magenta: 15.3 - cyan: 26.6 - white: 46.8 - brightBlack: 10.7 - brightRed: 34.1 - brightGreen: 47.2 - brightYellow: 47.5 - brightBlue: 30.3 - brightMagenta: 27.8 - brightCyan: 39.5 - brightWhite: 68.4 diff --git a/themes/k-colorable-dark.yaml b/themes/k-colorable-dark.yaml index 73b6d049..fe60e3d0 100644 --- a/themes/k-colorable-dark.yaml +++ b/themes/k-colorable-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "hasparus.k-colorable-theme" version: "0.3.2" installs: 44 + rating: 0 + ratings: 0 author: "hasparus" repo: "https://github.com/hasparus/k-colorable" url: "https://marketplace.visualstudio.com/items?itemName=hasparus.k-colorable-theme" + formats: null colors: bg: "#242A2C" fg: "#CFD3C5" diff --git a/themes/k-colorable-light.yaml b/themes/k-colorable-light.yaml index 4a96a683..61fffb1e 100644 --- a/themes/k-colorable-light.yaml +++ b/themes/k-colorable-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "hasparus.k-colorable-theme" version: "0.3.2" installs: 44 + rating: 0 + ratings: 0 author: "hasparus" repo: "https://github.com/hasparus/k-colorable" url: "https://marketplace.visualstudio.com/items?itemName=hasparus.k-colorable-theme" + formats: null colors: bg: "#FFFFFF" fg: "#4F533F" diff --git a/themes/k-relaxed.yaml b/themes/k-relaxed.yaml index d828b505..445647c8 100644 --- a/themes/k-relaxed.yaml +++ b/themes/k-relaxed.yaml @@ -8,6 +8,7 @@ source: author: "Tarik Kavaz" repo: "https://github.com/tarikkavaz/K-Relaxed-VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=tarikkavaz.k-relaxed" + formats: null colors: bg: "#181A28" fg: "#D6D8E1" diff --git a/themes/kabukich.yaml b/themes/kabukich.yaml index a9aa5925..553371a1 100644 --- a/themes/kabukich.yaml +++ b/themes/kabukich.yaml @@ -2,12 +2,13 @@ name: "Kabukichō" source: marketplace_id: "VictoriaDrake.kabukicho" version: "0.0.6" - installs: 23230 + installs: 23234 rating: 4.57 ratings: 7 author: "Victoria Drake" repo: "https://github.com/victoriadrake/kabukicho-vscode" url: "https://marketplace.visualstudio.com/items?itemName=VictoriaDrake.kabukicho" + formats: null colors: bg: "#1F1529" fg: "#D4CDDE" diff --git a/themes/kactus-dream-theme-dark.yaml b/themes/kactus-dream-theme-dark.yaml index 652d3c51..d5adb4a9 100644 --- a/themes/kactus-dream-theme-dark.yaml +++ b/themes/kactus-dream-theme-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ColcaStudios.kactus-dream-theme" version: "1.0.1" installs: 60 + rating: 0 + ratings: 0 author: "Colca Studios" repo: "https://github.com/colcastudios/Kactus-Dream-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ColcaStudios.kactus-dream-theme" + formats: null colors: bg: "#211B26" fg: "#D4D4D4" diff --git a/themes/kactus-dream-theme.yaml b/themes/kactus-dream-theme.yaml index d8ea6d5d..fe897fc3 100644 --- a/themes/kactus-dream-theme.yaml +++ b/themes/kactus-dream-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ColcaStudios.kactus-dream-theme" version: "1.0.1" installs: 60 + rating: 0 + ratings: 0 author: "Colca Studios" repo: "https://github.com/colcastudios/Kactus-Dream-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ColcaStudios.kactus-dream-theme" + formats: null colors: bg: "#FBFBFB" fg: "#353535" diff --git a/themes/kadaxi-colors.yaml b/themes/kadaxi-colors.yaml deleted file mode 100644 index cd7ccb7c..00000000 --- a/themes/kadaxi-colors.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "kadaxi colors" -source: - marketplace_id: "kadaxi.kadaxi-dark-theme" - version: "0.1.1" - installs: 83 - rating: 0 - ratings: 0 - author: "kadaxi" - repo: "https://github.com/kadaxi/kadaxi-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kadaxi.kadaxi-dark-theme" -colors: - bg: "#191919" - fg: "#FDFDFD" - black: "#000000" - red: "#A54C3F" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#497099" - magenta: "#C792EA" - cyan: "#68A3A4" - white: "#FFFFFF" - brightBlack: "#4A4A4A" - brightRed: "#A54C3F" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#497099" - brightMagenta: "#C792EA" - brightCyan: "#68A3A4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 105.3 - black: 0 - red: 22.7 - green: 84 - yellow: 78.7 - blue: 25 - magenta: 53.5 - cyan: 46 - white: 106.7 - brightBlack: 10.7 - brightRed: 22.7 - brightGreen: 84 - brightYellow: 78.7 - brightBlue: 25 - brightMagenta: 53.5 - brightCyan: 46 - brightWhite: 106.7 diff --git a/themes/kadoku.yaml b/themes/kadoku.yaml index 19b910b9..f3fe01f5 100644 --- a/themes/kadoku.yaml +++ b/themes/kadoku.yaml @@ -8,6 +8,7 @@ source: author: "ktnyt" repo: "https://github.com/ktnyt/kadoku" url: "https://marketplace.visualstudio.com/items?itemName=ktnyt.kadoku" + formats: null colors: bg: "#34343B" fg: "#E0E0E0" diff --git a/themes/kai-garbage.yaml b/themes/kai-garbage.yaml index e858b7b4..2d40cbb9 100644 --- a/themes/kai-garbage.yaml +++ b/themes/kai-garbage.yaml @@ -8,6 +8,7 @@ source: author: "Kai kaci" repo: "https://github.com/Lukalukito/kai.garbage-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=Kaikaci.dark-garbage-theme" + formats: null colors: bg: "#272D3B" fg: "#D2E2FF" diff --git a/themes/kai-sa-white-fork.yaml b/themes/kai-sa-white-fork.yaml deleted file mode 100644 index 0654f838..00000000 --- a/themes/kai-sa-white-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kai'sa - white - Fork" -source: - marketplace_id: "EmeAim.aim" - version: "0.0.8" - installs: 1797 - rating: 5 - ratings: 1 - author: "EmeAim" - repo: "https://github.com/EmePin/aim-themes" - url: "https://marketplace.visualstudio.com/items?itemName=EmeAim.aim" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106 - black: 106 - red: 74 - green: 48 - yellow: 17 - blue: 73.3 - magenta: 70.9 - cyan: 53.3 - white: 12.9 - brightBlack: 78.8 - brightRed: 62.1 - brightGreen: 37.9 - brightYellow: 7.7 - brightBlue: 60.7 - brightMagenta: 55.4 - brightCyan: 45.7 - brightWhite: 12.9 diff --git a/themes/kai.yaml b/themes/kai.yaml index 00b23753..e3a05c46 100644 --- a/themes/kai.yaml +++ b/themes/kai.yaml @@ -8,6 +8,7 @@ source: author: "Igor Dimitrijević" repo: "https://github.com/igorskyflyer/vscode-theme-kai" url: "https://marketplace.visualstudio.com/items?itemName=igordvlpr.kai-theme" + formats: null colors: bg: "#0C0C15" fg: "#D4D4D4" diff --git a/themes/kailash-shaw-dark-theme.yaml b/themes/kailash-shaw-dark-theme.yaml deleted file mode 100644 index 1d3f50c1..00000000 --- a/themes/kailash-shaw-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kailash shaw Dark Theme" -source: - marketplace_id: "vs-code-red-theme.vs-code-red-theme" - version: "0.3.0" - installs: 596 - rating: 0 - ratings: 0 - author: "vs-code-red-theme" - repo: "https://github.com/karmickphp61/vs-code-red-theme" - url: "https://marketplace.visualstudio.com/items?itemName=vs-code-red-theme.vs-code-red-theme" -colors: - bg: "#070B11" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 257 - pair: null - contrast: - fg: 107.7 - black: 0 - red: 27.5 - green: 53.8 - yellow: 86.4 - blue: 28.3 - magenta: 30.6 - cyan: 48.4 - white: 90.8 - brightBlack: 22.9 - brightRed: 39.4 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.8 - brightMagenta: 46.2 - brightCyan: 56.2 - brightWhite: 90.8 diff --git a/themes/kaimandres.yaml b/themes/kaimandres.yaml deleted file mode 100644 index cc7c73a9..00000000 --- a/themes/kaimandres.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kaimandres" -source: - marketplace_id: "martellev.kaimandres-vscode" - version: "1.3.1" - installs: 66 - rating: 5 - ratings: 1 - author: "MartelleV" - repo: "https://github.com/MartelleV/kaimandres-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=martellev.kaimandres-vscode" -colors: - bg: "#16161E" - fg: "#E4E4EB" - black: "#16161E" - red: "#D0679D" - green: "#91D7A3" - yellow: "#FFFAC2" - blue: "#78A9FF" - magenta: "#F087BD" - cyan: "#89DDFF" - white: "#E4E4EB" - brightBlack: "#767C9D" - brightRed: "#EA9BBA" - brightGreen: "#A8E6B8" - brightYellow: "#E7D66D" - brightBlue: "#ADD7FF" - brightMagenta: "#D0C9FF" - brightCyan: "#A3E5FF" - brightWhite: "#E4E4EB" -meta: - mode: "dark" - accent: "red" - hue: 285 - pair: null - contrast: - fg: 89.7 - black: 0 - red: 39.2 - green: 72 - yellow: 102 - blue: 54.8 - magenta: 54.9 - cyan: 78.3 - white: 89.7 - brightBlack: 32.6 - brightRed: 59.8 - brightGreen: 81.8 - brightYellow: 79.9 - brightBlue: 78.6 - brightMagenta: 76.5 - brightCyan: 84.1 - brightWhite: 89.7 diff --git a/themes/kaio.yaml b/themes/kaio.yaml index 6cdb97d0..82445b7c 100644 --- a/themes/kaio.yaml +++ b/themes/kaio.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ciiqr.theme-kaio" version: "1.5.0" installs: 139 + rating: 0 + ratings: 0 author: "ciiqr" repo: "https://github.com/ciiqr/vscode-extensions" url: "https://marketplace.visualstudio.com/items?itemName=ciiqr.theme-kaio" + formats: null colors: bg: "#292524" fg: "#F5F5F4" diff --git a/themes/kaiokenkolors.yaml b/themes/kaiokenkolors.yaml index b36fea30..e4a4a791 100644 --- a/themes/kaiokenkolors.yaml +++ b/themes/kaiokenkolors.yaml @@ -1,13 +1,14 @@ -name: "KaiokenKolors" +name: "KaioKenKolors" source: marketplace_id: "gallahaad.kaiokenkolors" version: "0.0.1" - installs: 40 + installs: 41 rating: 5 ratings: 1 author: "Gallahaad" repo: "https://github.com/Gallahaad/KaiokenKolors" url: "https://marketplace.visualstudio.com/items?itemName=gallahaad.kaiokenkolors" + formats: null colors: bg: "#00143D" fg: "#D4D4D4" diff --git a/themes/kaique-theme.yaml b/themes/kaique-theme.yaml index d231f558..f4f66829 100644 --- a/themes/kaique-theme.yaml +++ b/themes/kaique-theme.yaml @@ -8,6 +8,7 @@ source: author: "Kaique Oliveira Santos" repo: null url: "https://marketplace.visualstudio.com/items?itemName=KaiqueOliveiraSantos.kaique-theme" + formats: null colors: bg: "#040404" fg: "#676873" diff --git a/themes/kaisa-dark.yaml b/themes/kaisa-dark.yaml deleted file mode 100644 index 6760d4df..00000000 --- a/themes/kaisa-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kaisa-Dark" -source: - marketplace_id: "EmeAim.aim" - version: "0.0.8" - installs: 1797 - rating: 5 - ratings: 1 - author: "EmeAim" - repo: "https://github.com/EmePin/aim-themes" - url: "https://marketplace.visualstudio.com/items?itemName=EmeAim.aim" -colors: - bg: "#232536" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 279 - pair: null - contrast: - fg: 77.4 - black: 0 - red: 24.6 - green: 50.9 - yellow: 83.5 - blue: 25.3 - magenta: 27.6 - cyan: 45.4 - white: 87.9 - brightBlack: 19.9 - brightRed: 36.4 - brightGreen: 61.4 - brightYellow: 93.5 - brightBlue: 37.9 - brightMagenta: 43.3 - brightCyan: 53.3 - brightWhite: 87.9 diff --git a/themes/kali-linux-theme.yaml b/themes/kali-linux-theme.yaml deleted file mode 100644 index a11555ff..00000000 --- a/themes/kali-linux-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kali linux theme" -source: - marketplace_id: "minako.wired" - version: "2.0.5" - installs: 4868 - rating: 0 - ratings: 0 - author: "minako" - repo: "https://github.com/kayliese/wired" - url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" -colors: - bg: "#222735" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 269 - pair: null - contrast: - fg: 77.2 - black: 0 - red: 24.4 - green: 50.7 - yellow: 83.3 - blue: 25.1 - magenta: 27.4 - cyan: 45.2 - white: 87.7 - brightBlack: 19.7 - brightRed: 36.2 - brightGreen: 61.2 - brightYellow: 93.3 - brightBlue: 37.7 - brightMagenta: 43.1 - brightCyan: 53.1 - brightWhite: 87.7 diff --git a/themes/kalia.yaml b/themes/kalia.yaml index 99dc4e5d..b084b23c 100644 --- a/themes/kalia.yaml +++ b/themes/kalia.yaml @@ -2,12 +2,13 @@ name: "Kalia" source: marketplace_id: "krasimir.kalia" version: "1.43.0" - installs: 4088 + installs: 4089 rating: 5 ratings: 2 author: "Krasimir Tsonev" repo: "https://github.com/krasimir/kalia" url: "https://marketplace.visualstudio.com/items?itemName=krasimir.kalia" + formats: null colors: bg: "#090909" fg: "#C7C7C7" diff --git a/themes/kalidozza.yaml b/themes/kalidozza.yaml deleted file mode 100644 index 0df733b2..00000000 --- a/themes/kalidozza.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kalidozza" -source: - marketplace_id: "afrolino02.Kalidozza-theme" - version: "0.0.1" - installs: 30 - rating: 4 - ratings: 1 - author: "afrolino02" - repo: "https://github.com/Kalidozza-theme/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=afrolino02.Kalidozza-theme" -colors: - bg: "#0D0701" - fg: "#D4D4D4" - black: "#1D1D1D" - red: "#EA5656" - green: "#32EA36" - yellow: "#F9E05B" - blue: "#4F9BEE" - magenta: "#D74CD7" - cyan: "#00A59D" - white: "#E5E5E5" - brightBlack: "#969696" - brightRed: "#D17D7D" - brightGreen: "#60C262" - brightYellow: "#FFFF93" - brightBlue: "#88B7EA" - brightMagenta: "#F590F5" - brightCyan: "#84F9F3" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: 79 - pair: null - contrast: - fg: 80.4 - black: 0 - red: 39.7 - green: 75.8 - yellow: 87.6 - blue: 46.8 - magenta: 39.4 - cyan: 44.9 - white: 90.9 - brightBlack: 45.5 - brightRed: 44.9 - brightGreen: 58.2 - brightYellow: 104 - brightBlue: 61.2 - brightMagenta: 62.3 - brightCyan: 91.8 - brightWhite: 90.9 diff --git a/themes/kalisi.yaml b/themes/kalisi.yaml index 64de3fe8..40d260ed 100644 --- a/themes/kalisi.yaml +++ b/themes/kalisi.yaml @@ -8,6 +8,7 @@ source: author: "freeo" repo: "https://github.com/freeo/vscode-kalisi" url: "https://marketplace.visualstudio.com/items?itemName=freeo.vscode-kalisi" + formats: null colors: bg: "#FAFAFA" fg: "#000000" diff --git a/themes/kalmia-high-contrast.yaml b/themes/kalmia-high-contrast.yaml index a953028b..c69c04c8 100644 --- a/themes/kalmia-high-contrast.yaml +++ b/themes/kalmia-high-contrast.yaml @@ -8,6 +8,7 @@ source: author: "Qexat" repo: "https://github.com/qexat/kalmia" url: "https://marketplace.visualstudio.com/items?itemName=qexat.kalmia" + formats: null colors: bg: "#171115" fg: "#EDBFDB" diff --git a/themes/kalmia.yaml b/themes/kalmia.yaml index 99b1a769..6f267002 100644 --- a/themes/kalmia.yaml +++ b/themes/kalmia.yaml @@ -8,6 +8,7 @@ source: author: "Qexat" repo: "https://github.com/qexat/kalmia" url: "https://marketplace.visualstudio.com/items?itemName=qexat.kalmia" + formats: null colors: bg: "#2E232A" fg: "#E9AFD2" diff --git a/themes/kami-theme.yaml b/themes/kami-theme.yaml index ec1e0c24..f5a50d96 100644 --- a/themes/kami-theme.yaml +++ b/themes/kami-theme.yaml @@ -8,6 +8,7 @@ source: author: "Ruhan" repo: "https://github.com/Ruhannn/kami-theme" url: "https://marketplace.visualstudio.com/items?itemName=Ruhan.kami-theme" + formats: null colors: bg: "#1B141F" fg: "#D4D4D4" diff --git a/themes/kanagawa-dragon.yaml b/themes/kanagawa-dragon.yaml deleted file mode 100644 index 4bfcc579..00000000 --- a/themes/kanagawa-dragon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kanagawa Dragon" -source: - marketplace_id: "metaphore.kanagawa-vscode-color-theme" - version: "0.5.0" - installs: 29588 - rating: 5 - ratings: 6 - author: "metapho.re" - repo: "https://github.com/metapho-re/kanagawa-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=metaphore.kanagawa-vscode-color-theme" -colors: - bg: "#181616" - fg: "#C5C9C5" - black: "#0D0C0C" - red: "#C4746E" - green: "#8A9A7B" - yellow: "#C4B28A" - blue: "#8BA4B0" - magenta: "#A292A3" - cyan: "#8EA4A2" - white: "#C8C093" - brightBlack: "#A6A69C" - brightRed: "#E46876" - brightGreen: "#87A987" - brightYellow: "#E6C384" - brightBlue: "#7FB4CA" - brightMagenta: "#938AA9" - brightCyan: "#7AA89F" - brightWhite: "#C5C9C5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 72.3 - black: 0 - red: 38.8 - green: 44.1 - yellow: 60.6 - blue: 49.9 - magenta: 45.1 - cyan: 49.7 - white: 67.1 - brightBlack: 52.7 - brightRed: 42 - brightGreen: 50.1 - brightYellow: 72.2 - brightBlue: 56.6 - brightMagenta: 40.9 - brightCyan: 49.4 - brightWhite: 72.3 diff --git a/themes/kanagawa-light.yaml b/themes/kanagawa-light.yaml index 1c162969..d482cf71 100644 --- a/themes/kanagawa-light.yaml +++ b/themes/kanagawa-light.yaml @@ -8,6 +8,7 @@ source: author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" + formats: null colors: bg: "#2D2A2E" fg: "#D4C4A8" diff --git a/themes/kanagawa-lotus.yaml b/themes/kanagawa-lotus.yaml deleted file mode 100644 index eb4ebb1c..00000000 --- a/themes/kanagawa-lotus.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kanagawa Lotus" -source: - marketplace_id: "metaphore.kanagawa-vscode-color-theme" - version: "0.5.0" - installs: 29588 - rating: 5 - ratings: 6 - author: "metapho.re" - repo: "https://github.com/metapho-re/kanagawa-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=metaphore.kanagawa-vscode-color-theme" -colors: - bg: "#F2ECBC" - fg: "#545464" - black: "#1F1F28" - red: "#C84053" - green: "#6F894E" - yellow: "#77713F" - blue: "#4D699B" - magenta: "#B35B79" - cyan: "#597B75" - white: "#545464" - brightBlack: "#8A8980" - brightRed: "#D7474B" - brightGreen: "#6E915F" - brightYellow: "#836F4A" - brightBlue: "#6693BF" - brightMagenta: "#624C83" - brightCyan: "#5E857A" - brightWhite: "#43436C" -meta: - mode: "light" - accent: "orange" - hue: 102 - pair: null - contrast: - fg: 73.6 - black: 91 - red: 60.5 - green: 54.3 - yellow: 62.2 - blue: 65.2 - magenta: 58.5 - cyan: 60 - white: 73.6 - brightBlack: 50.5 - brightRed: 56.4 - brightGreen: 51 - brightYellow: 61.3 - brightBlue: 47.3 - brightMagenta: 73 - brightCyan: 55.9 - brightWhite: 79.2 diff --git a/themes/kanagawa-night.yaml b/themes/kanagawa-night.yaml index 7661a0d5..4c54ec74 100644 --- a/themes/kanagawa-night.yaml +++ b/themes/kanagawa-night.yaml @@ -2,12 +2,13 @@ name: "Kanagawa Night" source: marketplace_id: "Avetis.kanagawa-night" version: "1.0.1" - installs: 1264 + installs: 1265 rating: 0 ratings: 0 author: "Avetis" repo: "https://github.com/AvetisDN/kanagawa-night" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.kanagawa-night" + formats: null colors: bg: "#1F1F28" fg: "#E2DDC2" diff --git a/themes/kanagawa-paper.yaml b/themes/kanagawa-paper.yaml deleted file mode 100644 index d5a00e0b..00000000 --- a/themes/kanagawa-paper.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kanagawa Paper" -source: - marketplace_id: "SimonHo.kanagawa-paper" - version: "1.0.10" - installs: 5479 - rating: 5 - ratings: 3 - author: "sho-87" - repo: "https://github.com/sho-87/kanagawa-paper.vscode" - url: "https://marketplace.visualstudio.com/items?itemName=SimonHo.kanagawa-paper" -colors: - bg: "#1F1F28" - fg: "#DCD7BA" - black: "#0D0C0C" - red: "#C4746E" - green: "#8A9A7B" - yellow: "#C4B28A" - blue: "#8BA4B0" - magenta: "#A292A3" - cyan: "#8EA4A2" - white: "#C8C093" - brightBlack: "#A6A69C" - brightRed: "#E46876" - brightGreen: "#87A987" - brightYellow: "#E6C384" - brightBlue: "#7FB4CA" - brightMagenta: "#938AA9" - brightCyan: "#7AA89F" - brightWhite: "#C5C9C5" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 79.7 - black: 0 - red: 37.7 - green: 42.9 - yellow: 59.5 - blue: 48.8 - magenta: 44 - cyan: 48.5 - white: 66 - brightBlack: 51.6 - brightRed: 40.9 - brightGreen: 48.9 - brightYellow: 71.1 - brightBlue: 55.5 - brightMagenta: 39.7 - brightCyan: 48.3 - brightWhite: 71.1 diff --git a/themes/kanagawa-wave-light.yaml b/themes/kanagawa-wave-light.yaml index a7dc03a3..d8be8be9 100644 --- a/themes/kanagawa-wave-light.yaml +++ b/themes/kanagawa-wave-light.yaml @@ -8,6 +8,7 @@ source: author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" + formats: null colors: bg: "#F5E6D3" fg: "#1C2841" diff --git a/themes/kanagawa-wave.yaml b/themes/kanagawa-wave.yaml index 10cc8dbe..05738299 100644 --- a/themes/kanagawa-wave.yaml +++ b/themes/kanagawa-wave.yaml @@ -8,6 +8,7 @@ source: author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" + formats: null colors: bg: "#2D2A2E" fg: "#C5B18D" diff --git a/themes/kanamin-dark.yaml b/themes/kanamin-dark.yaml index 77b40e90..e2219110 100644 --- a/themes/kanamin-dark.yaml +++ b/themes/kanamin-dark.yaml @@ -8,6 +8,7 @@ source: author: "vladoo" repo: "https://github.com/vlaadoo/kanamin-theme" url: "https://marketplace.visualstudio.com/items?itemName=vladoo.kanamin-theme" + formats: null colors: bg: "#121417" fg: "#B0B0BA" diff --git a/themes/kanao.yaml b/themes/kanao.yaml deleted file mode 100644 index 11e33864..00000000 --- a/themes/kanao.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kanao" -source: - marketplace_id: "BayuSetiawan.kanao" - version: "1.4.0" - installs: 1890 - rating: 3.5 - ratings: 2 - author: "Bayu Setiawan" - repo: "https://github.com/Bayusetiawan45/kanao" - url: "https://marketplace.visualstudio.com/items?itemName=BayuSetiawan.kanao" -colors: - bg: "#F5EEE6" - fg: "#776B5D" - black: "#F5EEE6" - red: "#E82424" - green: "#76946A" - yellow: "#FF9E3B" - blue: "#EEC759" - magenta: "#AC7D88" - cyan: "#776B5D" - white: "#776B5D" - brightBlack: "#F4DFC8" - brightRed: "#FF5D62" - brightGreen: "#98BB6C" - brightYellow: "#65647C" - brightBlue: "#7FB4CA" - brightMagenta: "#D27E99" - brightCyan: "#A3D4D5" - brightWhite: "#776B5D" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 66.2 - black: 0 - red: 59.3 - green: 51.7 - yellow: 30.2 - blue: 18.2 - magenta: 52.7 - cyan: 66.2 - white: 66.2 - brightBlack: 0 - brightRed: 46.2 - brightGreen: 33.2 - brightYellow: 69.1 - brightBlue: 35 - brightMagenta: 45.9 - brightCyan: 18.3 - brightWhite: 66.2 diff --git a/themes/kanso-ink.yaml b/themes/kanso-ink.yaml deleted file mode 100644 index abe57c9c..00000000 --- a/themes/kanso-ink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kanso Ink" -source: - marketplace_id: "Webhooked.kanso-theme" - version: "0.2.3" - installs: 3037 - rating: 5 - ratings: 6 - author: "Webhooked" - repo: "https://github.com/webhooked/kanso-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" -colors: - bg: "#14171D" - fg: "#C5C9C7" - black: "#22262D" - red: "#C4746E" - green: "#8A9A7B" - yellow: "#C4B28A" - blue: "#8BA4B0" - magenta: "#A292A3" - cyan: "#8EA4A2" - white: "#C5C9C7" - brightBlack: "#9E9B93" - brightRed: "#E46876" - brightGreen: "#87A987" - brightYellow: "#E6C384" - brightBlue: "#7FB4CA" - brightMagenta: "#938AA9" - brightCyan: "#7AA89F" - brightWhite: "#C5C9C7" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 72.3 - black: 0 - red: 38.8 - green: 44 - yellow: 60.6 - blue: 49.9 - magenta: 45.1 - cyan: 49.6 - white: 72.3 - brightBlack: 47.3 - brightRed: 42 - brightGreen: 50 - brightYellow: 72.1 - brightBlue: 56.6 - brightMagenta: 40.8 - brightCyan: 49.4 - brightWhite: 72.3 diff --git a/themes/kanso-mist.yaml b/themes/kanso-mist.yaml deleted file mode 100644 index 13c9c3b9..00000000 --- a/themes/kanso-mist.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kanso Mist" -source: - marketplace_id: "Webhooked.kanso-theme" - version: "0.2.3" - installs: 3037 - rating: 5 - ratings: 6 - author: "Webhooked" - repo: "https://github.com/webhooked/kanso-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" -colors: - bg: "#2F3036" - fg: "#C5C9C7" - black: "#43464E" - red: "#C4746E" - green: "#8A9A7B" - yellow: "#C4B28A" - blue: "#8BA4B0" - magenta: "#A292A3" - cyan: "#8EA4A2" - white: "#C5C9C7" - brightBlack: "#9E9B93" - brightRed: "#E46876" - brightGreen: "#87A987" - brightYellow: "#E6C384" - brightBlue: "#7FB4CA" - brightMagenta: "#938AA9" - brightCyan: "#7AA89F" - brightWhite: "#C5C9C7" -meta: - mode: "dark" - accent: "orange" - hue: 278 - pair: null - contrast: - fg: 68.1 - black: 0 - red: 34.6 - green: 39.8 - yellow: 56.4 - blue: 45.7 - magenta: 40.9 - cyan: 45.4 - white: 68.1 - brightBlack: 43.1 - brightRed: 37.8 - brightGreen: 45.9 - brightYellow: 68 - brightBlue: 52.4 - brightMagenta: 36.7 - brightCyan: 45.2 - brightWhite: 68.1 diff --git a/themes/kanso-pearl.yaml b/themes/kanso-pearl.yaml deleted file mode 100644 index 64f3b9de..00000000 --- a/themes/kanso-pearl.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kanso Pearl" -source: - marketplace_id: "Webhooked.kanso-theme" - version: "0.2.3" - installs: 3037 - rating: 5 - ratings: 6 - author: "Webhooked" - repo: "https://github.com/webhooked/kanso-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" -colors: - bg: "#F2F1EF" - fg: "#22262D" - black: "#1F1F28" - red: "#C84053" - green: "#6F894E" - yellow: "#77713F" - blue: "#4D699B" - magenta: "#B35B79" - cyan: "#597B75" - white: "#22262D" - brightBlack: "#6D6D69" - brightRed: "#D7474B" - brightGreen: "#6E915F" - brightYellow: "#836F4A" - brightBlue: "#6693BF" - brightMagenta: "#624C83" - brightCyan: "#5E857A" - brightWhite: "#43436C" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 93.8 - black: 95 - red: 64.4 - green: 58.2 - yellow: 66.1 - blue: 69.1 - magenta: 62.4 - cyan: 64 - white: 93.8 - brightBlack: 67.5 - brightRed: 60.3 - brightGreen: 55 - brightYellow: 65.3 - brightBlue: 51.2 - brightMagenta: 76.9 - brightCyan: 59.9 - brightWhite: 83.1 diff --git a/themes/kaolin-light-theme-alt.yaml b/themes/kaolin-light-theme-alt.yaml deleted file mode 100644 index d2ff5356..00000000 --- a/themes/kaolin-light-theme-alt.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kaolin Light Theme (alt)" -source: - marketplace_id: "zed-nait.kaolin-vscode-themes" - version: "0.1.0" - installs: 4898 - rating: 5 - ratings: 2 - author: "zed-nait" - repo: "https://github.com/zed-nait/kaolin-vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=zed-nait.kaolin-vscode-themes" -colors: - bg: "#FBFBFB" - fg: "#383E3F" - black: "#383E3F" - red: "#E84C58" - green: "#13665F" - yellow: "#E36B3F" - blue: "#3B84CC" - magenta: "#A9779C" - cyan: "#6FACB3" - white: "#D4D4D6" - brightBlack: "#545C5E" - brightRed: "#E84C58" - brightGreen: "#317A56" - brightYellow: "#C5882C" - brightBlue: "#4C7A90" - brightMagenta: "#6D46E3" - brightCyan: "#008B8B" - brightWhite: "#F5F6F5" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 92.8 - black: 92.8 - red: 61.5 - green: 80.7 - yellow: 56.9 - blue: 63.9 - magenta: 61.3 - cyan: 47.5 - white: 20.3 - brightBlack: 81.3 - brightRed: 61.5 - brightGreen: 73.1 - brightYellow: 54.4 - brightBlue: 70 - brightMagenta: 75.8 - brightCyan: 65.5 - brightWhite: 0 diff --git a/themes/kaolin-light-theme.yaml b/themes/kaolin-light-theme.yaml deleted file mode 100644 index b5508ffc..00000000 --- a/themes/kaolin-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kaolin Light Theme" -source: - marketplace_id: "zed-nait.kaolin-vscode-themes" - version: "0.1.0" - installs: 4898 - rating: 5 - ratings: 2 - author: "zed-nait" - repo: "https://github.com/zed-nait/kaolin-vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=zed-nait.kaolin-vscode-themes" -colors: - bg: "#EDEEEB" - fg: "#383E3F" - black: "#383E3F" - red: "#E84C58" - green: "#13665F" - yellow: "#E36B3F" - blue: "#3B84CC" - magenta: "#A9779C" - cyan: "#6FACB3" - white: "#C8CCC3" - brightBlack: "#545C5E" - brightRed: "#E84C58" - brightGreen: "#317A56" - brightYellow: "#C5882C" - brightBlue: "#4C7A90" - brightMagenta: "#6D46E3" - brightCyan: "#008B8B" - brightWhite: "#F5F6F5" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 84.9 - black: 84.9 - red: 53.6 - green: 72.7 - yellow: 48.9 - blue: 55.9 - magenta: 53.3 - cyan: 39.6 - white: 17.8 - brightBlack: 73.3 - brightRed: 53.6 - brightGreen: 65.1 - brightYellow: 46.5 - brightBlue: 62 - brightMagenta: 67.8 - brightCyan: 57.6 - brightWhite: 0 diff --git a/themes/kaplan-dark.yaml b/themes/kaplan-dark.yaml index 98221f91..1ca4cb97 100644 --- a/themes/kaplan-dark.yaml +++ b/themes/kaplan-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Abyadando.kaplan-dark-theme" version: "0.1.0" installs: 286 + rating: 0 + ratings: 0 author: "Abyadando" repo: "https://github.com/abyadando/kaplan-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Abyadando.kaplan-dark-theme" + formats: null colors: bg: "#1D1D1D" fg: "#FFD86C" diff --git a/themes/kara.yaml b/themes/kara.yaml index e2853498..9d13a4ed 100644 --- a/themes/kara.yaml +++ b/themes/kara.yaml @@ -8,6 +8,7 @@ source: author: "metecan" repo: "https://github.com/metecan/kara" url: "https://marketplace.visualstudio.com/items?itemName=metecan.kara" + formats: null colors: bg: "#0A0A0A" fg: "#ADADAD" diff --git a/themes/karam-theme-darker.yaml b/themes/karam-theme-darker.yaml index 7c058bd1..85d809f6 100644 --- a/themes/karam-theme-darker.yaml +++ b/themes/karam-theme-darker.yaml @@ -8,6 +8,7 @@ source: author: "Kareem Reda" repo: "https://github.com/DevKareemReda/Karam-Theme" url: "https://marketplace.visualstudio.com/items?itemName=KareemReda.karam-theme-darker" + formats: null colors: bg: "#070707" fg: "#FFFFFF" diff --git a/themes/karma.yaml b/themes/karma.yaml deleted file mode 100644 index 6278ed89..00000000 --- a/themes/karma.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Karma" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#0A0E14" - fg: "#F7F1FF" - black: "#0A0E14" - red: "#FC618D" - green: "#7BD88F" - yellow: "#FCE566" - blue: "#FD9353" - magenta: "#AF98E6" - cyan: "#5AD4E6" - white: "#F7F1FF" - brightBlack: "#69676C" - brightRed: "#FC618D" - brightGreen: "#7BD88F" - brightYellow: "#FCE566" - brightBlue: "#FD9353" - brightMagenta: "#AF98E6" - brightCyan: "#5AD4E6" - brightWhite: "#F7F1FF" -meta: - mode: "dark" - accent: "red" - hue: 258 - pair: null - contrast: - fg: 99.9 - black: 0 - red: 47 - green: 70.9 - yellow: 90.3 - blue: 58.6 - magenta: 52.9 - cyan: 70.7 - white: 99.9 - brightBlack: 23.5 - brightRed: 47 - brightGreen: 70.9 - brightYellow: 90.3 - brightBlue: 58.6 - brightMagenta: 52.9 - brightCyan: 70.7 - brightWhite: 99.9 diff --git a/themes/karnataka-sandalwood-state.yaml b/themes/karnataka-sandalwood-state.yaml index 4cc8717b..af733efe 100644 --- a/themes/karnataka-sandalwood-state.yaml +++ b/themes/karnataka-sandalwood-state.yaml @@ -8,6 +8,7 @@ source: author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" + formats: null colors: bg: "#1A1614" fg: "#F5E8D8" diff --git a/themes/karou-noir.yaml b/themes/karou-noir.yaml index d2bfdbc2..9f35b2b6 100644 --- a/themes/karou-noir.yaml +++ b/themes/karou-noir.yaml @@ -8,6 +8,7 @@ source: author: "HAAZIQ-ALI" repo: "https://github.com/HAAZIQ-ALI/KAROU-Theme" url: "https://marketplace.visualstudio.com/items?itemName=HAAZIQ-ALI.karou-theme" + formats: null colors: bg: "#1A1C2E" fg: "#E4F0FB" diff --git a/themes/karou-theme.yaml b/themes/karou-theme.yaml index 5529d913..4e00ad4e 100644 --- a/themes/karou-theme.yaml +++ b/themes/karou-theme.yaml @@ -8,6 +8,7 @@ source: author: "HAAZIQ-ALI" repo: "https://github.com/HAAZIQ-ALI/KAROU-Theme" url: "https://marketplace.visualstudio.com/items?itemName=HAAZIQ-ALI.karou-theme" + formats: null colors: bg: "#242933" fg: "#D8DEE9" diff --git a/themes/karrot-theme-classic.yaml b/themes/karrot-theme-classic.yaml deleted file mode 100644 index 22c0913e..00000000 --- a/themes/karrot-theme-classic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Karrot Theme Classic" -source: - marketplace_id: "ooAkira.Karrot" - version: "0.0.7" - installs: 2628 - rating: 4.83 - ratings: 6 - author: "ooAkira" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=ooAkira.Karrot" -colors: - bg: "#202020" - fg: "#9EA4B2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 50.8 - black: 0 - red: 25.6 - green: 51.9 - yellow: 84.5 - blue: 26.3 - magenta: 28.6 - cyan: 46.4 - white: 88.9 - brightBlack: 20.9 - brightRed: 37.4 - brightGreen: 62.4 - brightYellow: 94.5 - brightBlue: 38.9 - brightMagenta: 44.3 - brightCyan: 54.3 - brightWhite: 88.9 diff --git a/themes/karry-color-golang.yaml b/themes/karry-color-golang.yaml deleted file mode 100644 index 2137f87e..00000000 --- a/themes/karry-color-golang.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Karry Color Golang" -source: - marketplace_id: "fcunhaneto.karry-color-golang-theme" - version: "0.1.0" - installs: 14482 - rating: 0 - ratings: 0 - author: "fcunhaneto" - repo: "git+https://github.com/fcunhaneto/vscode-karry-color-golang-theme/" - url: "https://marketplace.visualstudio.com/items?itemName=fcunhaneto.karry-color-golang-theme" -colors: - bg: "#FCE7CD" - fg: "#435E75" - black: "#906F41" - red: "#B80012" - green: "#49A634" - yellow: "#B2891B" - blue: "#00578B" - magenta: "#774673" - cyan: "#008B8B" - white: "#2D485D" - brightBlack: "#B59262" - brightRed: "#E80018" - brightGreen: "#2F8C1C" - brightYellow: "#D5AA38" - brightBlue: "#0071B2" - brightMagenta: "#8D648A" - brightCyan: "#00A8A8" - brightWhite: "#435E75" -meta: - mode: "light" - accent: "orange" - hue: 73 - pair: null - contrast: - fg: 70.9 - black: 59.6 - red: 68.7 - green: 45.1 - yellow: 47 - blue: 73.6 - magenta: 72.4 - cyan: 55.5 - white: 79.6 - brightBlack: 42.8 - brightRed: 57.4 - brightGreen: 56.8 - brightYellow: 30.3 - brightBlue: 62.9 - brightMagenta: 61.2 - brightCyan: 42.7 - brightWhite: 70.9 diff --git a/themes/kary-pro-colors-dark.yaml b/themes/kary-pro-colors-dark.yaml deleted file mode 100644 index 638474b4..00000000 --- a/themes/kary-pro-colors-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kary Pro Colors - Dark" -source: - marketplace_id: "karyfoundation.theme-karyfoundation-themes" - version: "37.0.0" - installs: 158331 - rating: 4.81 - ratings: 26 - author: "Pouya Kary" - repo: "https://github.com/pouyakary/procolors" - url: "https://marketplace.visualstudio.com/items?itemName=karyfoundation.theme-karyfoundation-themes" -colors: - bg: "#1A1A1A" - fg: "#CCCCCC" - black: "#1A1A1A" - red: "#D38569" - green: "#7DA76F" - yellow: "#BC9550" - blue: "#819DC2" - magenta: "#B98EB2" - cyan: "#819DC2" - white: "#CCCCCC" - brightBlack: "#474747" - brightRed: "#D38569" - brightGreen: "#7DA76F" - brightYellow: "#BC9550" - brightBlue: "#819DC2" - brightMagenta: "#B98EB2" - brightCyan: "#819DC2" - brightWhite: "#F7F7F7" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Kary Pro Colors - Light" - contrast: - fg: 74.3 - black: 0 - red: 45.9 - green: 47.4 - yellow: 47 - blue: 46.8 - magenta: 47.1 - cyan: 46.8 - white: 74.3 - brightBlack: 9.6 - brightRed: 45.9 - brightGreen: 47.4 - brightYellow: 47 - brightBlue: 46.8 - brightMagenta: 47.1 - brightCyan: 46.8 - brightWhite: 101.3 diff --git a/themes/kary-pro-colors-light.yaml b/themes/kary-pro-colors-light.yaml deleted file mode 100644 index 610e9106..00000000 --- a/themes/kary-pro-colors-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kary Pro Colors - Light" -source: - marketplace_id: "karyfoundation.theme-karyfoundation-themes" - version: "37.0.0" - installs: 158331 - rating: 4.81 - ratings: 26 - author: "Pouya Kary" - repo: "https://github.com/pouyakary/procolors" - url: "https://marketplace.visualstudio.com/items?itemName=karyfoundation.theme-karyfoundation-themes" -colors: - bg: "#F0F6FB" - fg: "#3778B7" - black: "#1A1A1A" - red: "#C94824" - green: "#428226" - yellow: "#A56416" - blue: "#3778B7" - magenta: "#B052A1" - cyan: "#3778B7" - white: "#F7F7F7" - brightBlack: "#9B9B9B" - brightRed: "#C94824" - brightGreen: "#428226" - brightYellow: "#A56416" - brightBlue: "#3778B7" - brightMagenta: "#B052A1" - brightCyan: "#3778B7" - brightWhite: "#F7F7F7" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Kary Pro Colors - Dark" - contrast: - fg: 66 - black: 98.4 - red: 66 - green: 66.6 - yellow: 66.6 - blue: 66 - magenta: 65.5 - cyan: 66 - white: 0 - brightBlack: 47.7 - brightRed: 66 - brightGreen: 66.6 - brightYellow: 66.6 - brightBlue: 66 - brightMagenta: 65.5 - brightCyan: 66 - brightWhite: 0 diff --git a/themes/kashi.yaml b/themes/kashi.yaml index b67efeeb..d51c3b43 100644 --- a/themes/kashi.yaml +++ b/themes/kashi.yaml @@ -8,6 +8,7 @@ source: author: "Nikharso" repo: "https://github.com/nikharso/kashi" url: "https://marketplace.visualstudio.com/items?itemName=Nikharso.kashi" + formats: null colors: bg: "#1A1C21" fg: "#C5C9C7" diff --git a/themes/kastorcode-dark-orange-theme.yaml b/themes/kastorcode-dark-orange-theme.yaml index 251608ce..f1ddacd1 100644 --- a/themes/kastorcode-dark-orange-theme.yaml +++ b/themes/kastorcode-dark-orange-theme.yaml @@ -2,12 +2,13 @@ name: "KastorCode Dark Orange Theme" source: marketplace_id: "kastorcode.kastorcode-dark-orange-theme" version: "1.0.1" - installs: 6969 + installs: 6970 rating: 5 ratings: 1 author: "KastorCode" repo: "https://github.com/kastorcode/kastorcode-dark-orange-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kastorcode.kastorcode-dark-orange-theme" + formats: null colors: bg: "#190802" fg: "#FFFFFF" diff --git a/themes/kastorcode-dark-purple-theme.yaml b/themes/kastorcode-dark-purple-theme.yaml index 4c62e930..7b29c2be 100644 --- a/themes/kastorcode-dark-purple-theme.yaml +++ b/themes/kastorcode-dark-purple-theme.yaml @@ -2,12 +2,13 @@ name: "KastorCode Dark Purple Theme" source: marketplace_id: "kastorcode.kastorcode-dark-purple-theme" version: "1.0.0" - installs: 4413 + installs: 4416 rating: 5 ratings: 1 author: "KastorCode" repo: "https://github.com/kastorcode/kastorcode-dark-purple-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=kastorcode.kastorcode-dark-purple-theme" + formats: null colors: bg: "#0A0714" fg: "#FFFFFF" diff --git a/themes/katagawatheme.yaml b/themes/katagawatheme.yaml deleted file mode 100644 index 9780dca6..00000000 --- a/themes/katagawatheme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "KatagawaTheme" -source: - marketplace_id: "hikionori.kanagawa-vscode-theme" - version: "0.1.0" - installs: 6856 - rating: 5 - ratings: 2 - author: "hikionori" - repo: "https://github.com/hikionori/kanagawa-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=hikionori.kanagawa-vscode-theme" -colors: - bg: "#16161D" - fg: "#DCD7BA" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 285 - pair: null - contrast: - fg: 80.8 - black: 0 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.5 - magenta: 29.8 - cyan: 47.6 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.6 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90.1 diff --git a/themes/kato.yaml b/themes/kato.yaml index de76a680..a19f5919 100644 --- a/themes/kato.yaml +++ b/themes/kato.yaml @@ -8,6 +8,7 @@ source: author: "Ghaz" repo: "https://github.com/GhazanfarShahbaz/Kato-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Ghaz.Kato" + formats: null colors: bg: "#272727" fg: "#9A9A9A" diff --git a/themes/kaupo.yaml b/themes/kaupo.yaml index 1bdbd737..5998b8cb 100644 --- a/themes/kaupo.yaml +++ b/themes/kaupo.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "sc-mitton.kaupo" version: "0.0.3" installs: 124 + rating: 0 + ratings: 0 author: "sc-mitton" repo: "https://github.com/sc-mitton/kaupo" url: "https://marketplace.visualstudio.com/items?itemName=sc-mitton.kaupo" + formats: null colors: bg: "#2A2A28" fg: "#F8F8F2" diff --git a/themes/kayhan.yaml b/themes/kayhan.yaml index bdec8204..27a04156 100644 --- a/themes/kayhan.yaml +++ b/themes/kayhan.yaml @@ -8,6 +8,7 @@ source: author: "Kazim Kayhan" repo: "https://github.com/kazim-kayhan/kayhan-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=KazimKayhan.kayhan-color-theme" + formats: null colors: bg: "#212426" fg: "#FFFFFF" diff --git a/themes/kayto.yaml b/themes/kayto.yaml index 8241ba3b..999cc166 100644 --- a/themes/kayto.yaml +++ b/themes/kayto.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "nelsonafonso.kayto" version: "0.0.2" installs: 34 + rating: 0 + ratings: 0 author: "nelson" repo: null url: "https://marketplace.visualstudio.com/items?itemName=nelsonafonso.kayto" + formats: null colors: bg: "#0D0F0E" fg: "#D4D4D4" diff --git a/themes/kaze.yaml b/themes/kaze.yaml index f3ee3c97..4f8debee 100644 --- a/themes/kaze.yaml +++ b/themes/kaze.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "2interactive.kaze" version: "1.0.0" installs: 56 + rating: 0 + ratings: 0 author: "2interactive" repo: "https://github.com/Sebystien/kaze" url: "https://marketplace.visualstudio.com/items?itemName=2interactive.kaze" + formats: null colors: bg: "#1B222D" fg: "#D7D4FF" diff --git a/themes/kblue-minimal.yaml b/themes/kblue-minimal.yaml index 810fbcc4..9fa29561 100644 --- a/themes/kblue-minimal.yaml +++ b/themes/kblue-minimal.yaml @@ -8,6 +8,7 @@ source: author: "Rodrigo Franca" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rodrigokzk12.kblue-minimal" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/kdshade-darkbg.yaml b/themes/kdshade-darkbg.yaml index 9a3461ab..3a9d9ded 100644 --- a/themes/kdshade-darkbg.yaml +++ b/themes/kdshade-darkbg.yaml @@ -8,6 +8,7 @@ source: author: "kdl" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kdl.kdshade" + formats: null colors: bg: "#111111" fg: "#EEFFFF" diff --git a/themes/keen-contrast.yaml b/themes/keen-contrast.yaml deleted file mode 100644 index 748471ce..00000000 --- a/themes/keen-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "keen-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#0D0D0D" - red: "#BA0E2E" - green: "#6F8B94" - yellow: "#8767B7" - blue: "#B5DB99" - magenta: "#6F8B94" - cyan: "#8767B7" - white: "#FFFFFF" - brightBlack: "#333333" - brightRed: "#F03E5F" - brightGreen: "#AABABF" - brightYellow: "#BEACD8" - brightBlue: "#ECF6E4" - brightMagenta: "#AABABF" - brightCyan: "#BEACD8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 21.5 - green: 37.9 - yellow: 30.5 - blue: 77.9 - magenta: 37.9 - cyan: 30.5 - white: 107.9 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 63.5 - brightYellow: 61.6 - brightBlue: 99.8 - brightMagenta: 63.5 - brightCyan: 61.6 - brightWhite: 107.9 diff --git a/themes/keen-light.yaml b/themes/keen-light.yaml deleted file mode 100644 index 23a19dda..00000000 --- a/themes/keen-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "keen-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#CCCCCC" - fg: "#111111" - black: "#D9D9D9" - red: "#BA0E2E" - green: "#6F8B94" - yellow: "#8767B7" - blue: "#7C9669" - magenta: "#6F8B94" - cyan: "#8767B7" - white: "#1E1E1E" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#AABABF" - brightYellow: "#BEACD8" - brightBlue: "#B0C0A5" - brightMagenta: "#AABABF" - brightCyan: "#BEACD8" - brightWhite: "#444444" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 75.8 - black: 0 - red: 50.8 - green: 34.3 - yellow: 41.7 - blue: 30.5 - magenta: 34.3 - cyan: 41.7 - white: 74.1 - brightBlack: 30.8 - brightRed: 34.3 - brightGreen: 9.3 - brightYellow: 11.2 - brightBlue: 0 - brightMagenta: 9.3 - brightCyan: 11.2 - brightWhite: 63.1 diff --git a/themes/keen.yaml b/themes/keen.yaml deleted file mode 100644 index 5eea00a0..00000000 --- a/themes/keen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "keen" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#111111" - fg: "#CCCCCC" - black: "#1E1E1E" - red: "#BA0E2E" - green: "#6F8B94" - yellow: "#8767B7" - blue: "#B5DB99" - magenta: "#6F8B94" - cyan: "#8767B7" - white: "#D9D9D9" - brightBlack: "#444444" - brightRed: "#F03E5F" - brightGreen: "#AABABF" - brightYellow: "#BEACD8" - brightBlue: "#ECF6E4" - brightMagenta: "#AABABF" - brightCyan: "#BEACD8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 75.2 - black: 0 - red: 21 - green: 37.4 - yellow: 30 - blue: 77.4 - magenta: 37.4 - cyan: 30 - white: 83 - brightBlack: 9.3 - brightRed: 37.3 - brightGreen: 63 - brightYellow: 61.1 - brightBlue: 99.3 - brightMagenta: 63 - brightCyan: 61.1 - brightWhite: 107.4 diff --git a/themes/kenobi-dark-theme.yaml b/themes/kenobi-dark-theme.yaml index 02b2c3df..b63518f4 100644 --- a/themes/kenobi-dark-theme.yaml +++ b/themes/kenobi-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Bruno DaSilva" repo: "https://github.com/Brunno-DaSilva/Kenobi-dark-vs-code-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=BrunoDaSilva.kenobi-dark-theme" + formats: null colors: bg: "#060931" fg: "#9999E6" diff --git a/themes/kerala-god-s-own-country.yaml b/themes/kerala-god-s-own-country.yaml index 524e5c0e..e73432cc 100644 --- a/themes/kerala-god-s-own-country.yaml +++ b/themes/kerala-god-s-own-country.yaml @@ -8,6 +8,7 @@ source: author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" + formats: null colors: bg: "#1A1A1A" fg: "#E0E0E0" diff --git a/themes/kerama-deep.yaml b/themes/kerama-deep.yaml index f42c8f47..69c9ab88 100644 --- a/themes/kerama-deep.yaml +++ b/themes/kerama-deep.yaml @@ -8,6 +8,7 @@ source: author: "Keny Yahat" repo: "https://github.com/ky12228121/okinawan" url: "https://marketplace.visualstudio.com/items?itemName=ky12228121.okinawan-themes" + formats: null colors: bg: "#0F1C2E" fg: "#DCE1E6" diff --git a/themes/kermit-fork.yaml b/themes/kermit-fork.yaml deleted file mode 100644 index c9f9b203..00000000 --- a/themes/kermit-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kermit - Fork" -source: - marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" - version: "9.0.1" - installs: 29917 - rating: 4.6 - ratings: 10 - author: "Hasibur R" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" -colors: - bg: "#1E1E1E" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/kesteren.yaml b/themes/kesteren.yaml deleted file mode 100644 index 87720b48..00000000 --- a/themes/kesteren.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kesteren" -source: - marketplace_id: "Coachonko.kesteren-theme" - version: "3.1.1" - installs: 310 - rating: 5 - ratings: 1 - author: "Coachonko" - repo: "https://github.com/Coachonko/Kesteren" - url: "https://marketplace.visualstudio.com/items?itemName=Coachonko.kesteren-theme" -colors: - bg: "#1D2021" - fg: "#EBDBB2" - black: "#1D2021" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#EBDBB2" - brightBlack: "#665C54" - brightRed: "#FB4934" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#8EC07C" - brightWhite: "#FBF1C7" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83.3 - black: 0 - red: 24.2 - green: 41.9 - yellow: 51.5 - blue: 30.5 - magenta: 30.7 - cyan: 40.9 - white: 83.3 - brightBlack: 17.5 - brightRed: 39.1 - brightGreen: 60.1 - brightYellow: 70.8 - brightBlue: 47.6 - brightMagenta: 46.9 - brightCyan: 59.1 - brightWhite: 96.3 diff --git a/themes/kh-gold-subtle.yaml b/themes/kh-gold-subtle.yaml index 7bf0df9b..661dff85 100644 --- a/themes/kh-gold-subtle.yaml +++ b/themes/kh-gold-subtle.yaml @@ -8,6 +8,7 @@ source: author: "Ed Morales" repo: "https://github.com/emoralesb05/kh-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=emoralesb05.kh-vscode-theme" + formats: null colors: bg: "#09070F" fg: "#F7F1E2" diff --git a/themes/kh-silver-subtle.yaml b/themes/kh-silver-subtle.yaml index 68060a0c..0719d6ec 100644 --- a/themes/kh-silver-subtle.yaml +++ b/themes/kh-silver-subtle.yaml @@ -8,6 +8,7 @@ source: author: "Ed Morales" repo: "https://github.com/emoralesb05/kh-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=emoralesb05.kh-vscode-theme" + formats: null colors: bg: "#0C1018" fg: "#F4F8FF" diff --git a/themes/khoaneostyle.yaml b/themes/khoaneostyle.yaml deleted file mode 100644 index 51d0ddf5..00000000 --- a/themes/khoaneostyle.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "KhoaNeoStyle" -source: - marketplace_id: "wentallout.khoaneostyle" - version: "0.0.2" - installs: 44 - author: "wentallout" - repo: "https://github.com/wentallout/khoaneostyle" - url: "https://marketplace.visualstudio.com/items?itemName=wentallout.khoaneostyle" -colors: - bg: "#191622" - fg: "#E1E1E6" - black: "#201B2D" - red: "#FF79C6" - green: "#67E480" - yellow: "#E7DE79" - blue: "#78D1E1" - magenta: "#988BC7" - cyan: "#A1EFE4" - white: "#E1E1E6" - brightBlack: "#626483" - brightRed: "#ED4556" - brightGreen: "#00F769" - brightYellow: "#E7DE79" - brightBlue: "#78D1E1" - brightMagenta: "#988BC7" - brightCyan: "#A4FFFF" - brightWhite: "#F7F7FB" -meta: - mode: "dark" - accent: "green" - hue: 296 - pair: null - contrast: - fg: 87.6 - black: 0 - red: 54.5 - green: 74.5 - yellow: 83.6 - blue: 69.9 - magenta: 43.2 - cyan: 87.2 - white: 87.6 - brightBlack: 22.1 - brightRed: 36.7 - brightGreen: 81.8 - brightYellow: 83.6 - brightBlue: 69.9 - brightMagenta: 43.2 - brightCyan: 96.7 - brightWhite: 101.7 diff --git a/themes/kiiro-dark.yaml b/themes/kiiro-dark.yaml index 8c16373c..61bf411f 100644 --- a/themes/kiiro-dark.yaml +++ b/themes/kiiro-dark.yaml @@ -8,6 +8,7 @@ source: author: "kiiroOvO" repo: "https://github.com/kiiroOvO/kiiro-theme" url: "https://marketplace.visualstudio.com/items?itemName=kiiroOvO.kiiro-theme" + formats: null colors: bg: "#202020" fg: "#DDDDDD" diff --git a/themes/killer-dark.yaml b/themes/killer-dark.yaml index d43c9b69..334994d1 100644 --- a/themes/killer-dark.yaml +++ b/themes/killer-dark.yaml @@ -8,6 +8,7 @@ source: author: "Austin Billings" repo: "https://github.com/austinbillings/killer-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AustinBillings.killer-theme" + formats: null colors: bg: "#131415" fg: "#F6F4F4" diff --git a/themes/kindfeeling.yaml b/themes/kindfeeling.yaml deleted file mode 100644 index 6c2d1f3e..00000000 --- a/themes/kindfeeling.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kindfeeling" -source: - marketplace_id: "Aromatibus.kindfeeling" - version: "0.3.19" - installs: 3598 - rating: 5 - ratings: 3 - author: "Aromatibus" - repo: "https://github.com/Aromatibus/vscode-kindfeeling-light" - url: "https://marketplace.visualstudio.com/items?itemName=Aromatibus.kindfeeling" -colors: - bg: "#FFEEF9" - fg: "#101010" - black: "#D0D0D0" - red: "#FF0086" - green: "#00C918" - yellow: "#FD8900" - blue: "#3777E6" - magenta: "#AD00A1" - cyan: "#1FAAAA" - white: "#151515" - brightBlack: "#B0B0B0" - brightRed: "#FF0086" - brightGreen: "#00C918" - brightYellow: "#ABA800" - brightBlue: "#3777E6" - brightMagenta: "#AD00A1" - brightCyan: "#1FAAAA" - brightWhite: "#202020" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 98 - black: 17.6 - red: 54.8 - green: 35.9 - yellow: 39.2 - blue: 61.5 - magenta: 71.9 - cyan: 46.6 - white: 97.5 - brightBlack: 35.2 - brightRed: 54.8 - brightGreen: 35.9 - brightYellow: 41.8 - brightBlue: 61.5 - brightMagenta: 71.9 - brightCyan: 46.6 - brightWhite: 95.8 diff --git a/themes/kingfisher-fishing.yaml b/themes/kingfisher-fishing.yaml index 7be47121..df8bf300 100644 --- a/themes/kingfisher-fishing.yaml +++ b/themes/kingfisher-fishing.yaml @@ -8,6 +8,7 @@ source: author: "williamsteffens" repo: "https://github.com/williamsteffens/vscode-kingfisher-fishing-after-dark-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamsteffens.kingfisher-fishing-after-dark" + formats: null colors: bg: "#22282E" fg: "#E1E4E8" diff --git a/themes/kinn.yaml b/themes/kinn.yaml index 597ba979..2206eddb 100644 --- a/themes/kinn.yaml +++ b/themes/kinn.yaml @@ -8,6 +8,7 @@ source: author: "KINN Theme" repo: "https://github.com/KChakhalyan/KINN" url: "https://marketplace.visualstudio.com/items?itemName=kinn-theme.kinn-theme-vscode" + formats: null colors: bg: "#283139" fg: "#CDCDCD" diff --git a/themes/kinnitchi-neon-dark-modern.yaml b/themes/kinnitchi-neon-dark-modern.yaml deleted file mode 100644 index a2a92780..00000000 --- a/themes/kinnitchi-neon-dark-modern.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "kinnitchi Neon Dark Modern" -source: - marketplace_id: "Kinnitchi.kinnitchi-theme" - version: "0.4.0" - installs: 1210 - rating: 0 - ratings: 0 - author: "Kinnitchi" - repo: "https://github.com/Kinnitchi/kinnitchi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Kinnitchi.kinnitchi-theme" -colors: - bg: "#1E1E1E" - fg: "#D4D4D4" - black: "#1E1E1E" - red: "#FF5A5A" - green: "#72F1B8" - yellow: "#FEDE5D" - blue: "#7CB7FF" - magenta: "#FF7EDB" - cyan: "#FFFFFF" - white: "#C5C8C6" - brightBlack: "#1E1E1E" - brightRed: "#FF5A5A" - brightGreen: "#72F1B8" - brightYellow: "#FEDE5D" - brightBlue: "#7CB7FF" - brightMagenta: "#FF7EDB" - brightCyan: "#FFFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.7 - black: 0 - red: 43.5 - green: 82.5 - yellow: 85.8 - blue: 59.8 - magenta: 56.1 - cyan: 106 - white: 71 - brightBlack: 0 - brightRed: 43.5 - brightGreen: 82.5 - brightYellow: 85.8 - brightBlue: 59.8 - brightMagenta: 56.1 - brightCyan: 106 - brightWhite: 106 diff --git a/themes/kintsugi-dark.yaml b/themes/kintsugi-dark.yaml deleted file mode 100644 index 60d8740e..00000000 --- a/themes/kintsugi-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kintsugi Dark" -source: - marketplace_id: "ahmedhatem.kintsugi" - version: "0.1.1" - installs: 544 - rating: 5 - ratings: 2 - author: "Ahmed Hatem" - repo: "https://github.com/ahatem/vscode-kintsugi" - url: "https://marketplace.visualstudio.com/items?itemName=ahmedhatem.kintsugi" -colors: - bg: "#161618" - fg: "#DDDDDD" - black: "#131314" - red: "#B38F8F" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#6C7A8A" - magenta: "#B3A3D3" - cyan: "#6AC6F2" - white: "#DDDDDD" - brightBlack: "#444444" - brightRed: "#D9A6A6" - brightGreen: "#C3DE9C" - brightYellow: "#FBE4A8" - brightBlue: "#8FA3B3" - brightMagenta: "#D3A3D3" - brightCyan: "#8AC6F2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: "Kintsugi Light" - contrast: - fg: 85.1 - black: 0 - red: 45.6 - green: 61.7 - yellow: 76.5 - blue: 30.3 - magenta: 55.6 - cyan: 65.2 - white: 85.1 - brightBlack: 8.9 - brightRed: 60.1 - brightGreen: 80 - brightYellow: 90.5 - brightBlue: 50.1 - brightMagenta: 60 - brightCyan: 67.3 - brightWhite: 107 diff --git a/themes/kintsugi-light.yaml b/themes/kintsugi-light.yaml deleted file mode 100644 index c6bf8435..00000000 --- a/themes/kintsugi-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kintsugi Light" -source: - marketplace_id: "ahmedhatem.kintsugi" - version: "0.1.1" - installs: 544 - rating: 5 - ratings: 2 - author: "Ahmed Hatem" - repo: "https://github.com/ahatem/vscode-kintsugi" - url: "https://marketplace.visualstudio.com/items?itemName=ahmedhatem.kintsugi" -colors: - bg: "#FAF8F2" - fg: "#4A463D" - black: "#4A463D" - red: "#C94E4E" - green: "#6A9955" - yellow: "#D9A03B" - blue: "#4A7096" - magenta: "#A24857" - cyan: "#3A7E3D" - white: "#F5F2EA" - brightBlack: "#938E83" - brightRed: "#C94E4E" - brightGreen: "#6A9955" - brightYellow: "#D9A03B" - brightBlue: "#4A7096" - brightMagenta: "#A24857" - brightCyan: "#3A7E3D" - brightWhite: "#FAF8F2" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Kintsugi Dark" - contrast: - fg: 87.6 - black: 87.6 - red: 66.2 - green: 56.5 - yellow: 41.4 - blue: 71.4 - magenta: 74.5 - cyan: 69.9 - white: 0 - brightBlack: 55.8 - brightRed: 66.2 - brightGreen: 56.5 - brightYellow: 41.4 - brightBlue: 71.4 - brightMagenta: 74.5 - brightCyan: 69.9 - brightWhite: 0 diff --git a/themes/kiona.yaml b/themes/kiona.yaml index 522c1632..31d8ab0d 100644 --- a/themes/kiona.yaml +++ b/themes/kiona.yaml @@ -8,6 +8,7 @@ source: author: "Isaac Garcia Villacres" repo: "https://github.com/isaacgarciavillacres/Hue-mans" url: "https://marketplace.visualstudio.com/items?itemName=isaacgarciavillacres.hue-mans-color-themes" + formats: null colors: bg: "#181819" fg: "#D4D4D4" diff --git a/themes/kira-theme.yaml b/themes/kira-theme.yaml index 9b42dda6..a66818b2 100644 --- a/themes/kira-theme.yaml +++ b/themes/kira-theme.yaml @@ -8,6 +8,7 @@ source: author: "Christian Romero Oliva" repo: "https://github.com/cromeoli/kira-theme" url: "https://marketplace.visualstudio.com/items?itemName=pnemonic.kira-theme" + formats: null colors: bg: "#0A0A0A" fg: "#E5E5E5" diff --git a/themes/kiranord.yaml b/themes/kiranord.yaml deleted file mode 100644 index 7b082ac5..00000000 --- a/themes/kiranord.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Kiranord" -source: - marketplace_id: "kiranojhanp.kiranord" - version: "0.0.3" - installs: 62 - author: "kiranojhanp" - repo: "https://github.com/kiranojhanp/vscode-theme-kiranord" - url: "https://marketplace.visualstudio.com/items?itemName=kiranojhanp.kiranord" -colors: - bg: "#1D2129" - fg: "#D8DEE9" - black: "#292E39" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 84.1 - black: 0 - red: 31.7 - green: 60.4 - yellow: 75.1 - blue: 47.4 - magenta: 45.2 - cyan: 61.4 - white: 91.1 - brightBlack: 14.1 - brightRed: 31.7 - brightGreen: 60.4 - brightYellow: 75.1 - brightBlue: 47.4 - brightMagenta: 45.2 - brightCyan: 59.3 - brightWhite: 95 diff --git a/themes/kismat-default-colors.yaml b/themes/kismat-default-colors.yaml deleted file mode 100644 index b3a876ff..00000000 --- a/themes/kismat-default-colors.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kismat Default Colors" -source: - marketplace_id: "naren.kismat" - version: "0.0.10" - installs: 261 - rating: 0 - ratings: 0 - author: "Naren" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=naren.kismat" -colors: - bg: "#20232A" - fg: "#B2B2CE" - black: "#000000" - red: "#EF3B7D" - green: "#6BD679" - yellow: "#FAC863" - blue: "#79B6F2" - magenta: "#FF69C1" - cyan: "#55B5DB" - white: "#F1FAEE" - brightBlack: "#000000" - brightRed: "#EF3B7D" - brightGreen: "#6BD679" - brightYellow: "#FAC863" - brightBlue: "#79B6F2" - brightMagenta: "#FF69C1" - brightCyan: "#55B5DB" - brightWhite: "#F1FAEE" -meta: - mode: "dark" - accent: "red" - hue: 267 - pair: null - contrast: - fg: 59.3 - black: 0 - red: 35.4 - green: 66.2 - yellow: 75.2 - blue: 57.6 - magenta: 49.1 - cyan: 53.8 - white: 100.2 - brightBlack: 0 - brightRed: 35.4 - brightGreen: 66.2 - brightYellow: 75.2 - brightBlue: 57.6 - brightMagenta: 49.1 - brightCyan: 53.8 - brightWhite: 100.2 diff --git a/themes/kiss.yaml b/themes/kiss.yaml index 3ddcaa17..c2558178 100644 --- a/themes/kiss.yaml +++ b/themes/kiss.yaml @@ -8,6 +8,9 @@ source: author: "rileytwo" repo: "https://github.com/rileytwo/kiss" url: "https://marketplace.visualstudio.com/items?itemName=rileytwo.kiss" + formats: + iterm2: "https://raw.githubusercontent.com/rileytwo/kiss/main/iterm2/kiss.itermcolors" + sublime: "https://raw.githubusercontent.com/rileytwo/kiss/main/textmate/kiss.tmTheme" colors: bg: "#181818" fg: "#FCFCFC" diff --git a/themes/kite-dark.yaml b/themes/kite-dark.yaml deleted file mode 100644 index 0cfa5005..00000000 --- a/themes/kite-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kite Dark" -source: - marketplace_id: "Zhouscar.vscode-theme-kite-wcag" - version: "0.0.1" - installs: 1278 - rating: 0 - ratings: 0 - author: "Zhouscar" - repo: "https://github.com/Zhouscar/vscode-theme-kite-hc" - url: "https://marketplace.visualstudio.com/items?itemName=Zhouscar.vscode-theme-kite-wcag" -colors: - bg: "#2D353E" - fg: "#C7CED6" - black: "#000913" - red: "#C8433C" - green: "#4FC83C" - yellow: "#C8BF3C" - blue: "#3C7DC8" - magenta: "#9E3CC8" - cyan: "#3CA3C8" - white: "#CBCED2" - brightBlack: "#606871" - brightRed: "#F14F46" - brightGreen: "#53EC3C" - brightYellow: "#F1E646" - brightBlue: "#5097E7" - brightMagenta: "#D165FF" - brightCyan: "#46C3F1" - brightWhite: "#E6E8EA" -meta: - mode: "dark" - accent: "green" - hue: 251 - pair: "Kite Light" - contrast: - fg: 70.2 - black: 0 - red: 22.8 - green: 53.7 - yellow: 59.9 - blue: 26.5 - magenta: 19.9 - cyan: 40.8 - white: 70.5 - brightBlack: 17.3 - brightRed: 33.8 - brightGreen: 71.7 - brightYellow: 82.9 - brightBlue: 38.7 - brightMagenta: 39.7 - brightCyan: 57 - brightWhite: 86.6 diff --git a/themes/kite-darker.yaml b/themes/kite-darker.yaml deleted file mode 100644 index e0a9d271..00000000 --- a/themes/kite-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kite Darker" -source: - marketplace_id: "Zhouscar.vscode-theme-kite-wcag" - version: "0.0.1" - installs: 1278 - rating: 0 - ratings: 0 - author: "Zhouscar" - repo: "https://github.com/Zhouscar/vscode-theme-kite-hc" - url: "https://marketplace.visualstudio.com/items?itemName=Zhouscar.vscode-theme-kite-wcag" -colors: - bg: "#22282F" - fg: "#C7CED6" - black: "#000913" - red: "#C8433C" - green: "#4FC83C" - yellow: "#C8BF3C" - blue: "#3C7DC8" - magenta: "#9E3CC8" - cyan: "#3CA3C8" - white: "#CBCED2" - brightBlack: "#606871" - brightRed: "#F14F46" - brightGreen: "#53EC3C" - brightYellow: "#F1E646" - brightBlue: "#5097E7" - brightMagenta: "#D165FF" - brightCyan: "#46C3F1" - brightWhite: "#E6E8EA" -meta: - mode: "dark" - accent: "green" - hue: 252 - pair: null - contrast: - fg: 73 - black: 0 - red: 25.7 - green: 56.5 - yellow: 62.7 - blue: 29.4 - magenta: 22.7 - cyan: 43.6 - white: 73.3 - brightBlack: 20.2 - brightRed: 36.6 - brightGreen: 74.5 - brightYellow: 85.7 - brightBlue: 41.6 - brightMagenta: 42.5 - brightCyan: 59.9 - brightWhite: 89.4 diff --git a/themes/kite-light.yaml b/themes/kite-light.yaml deleted file mode 100644 index 5748db10..00000000 --- a/themes/kite-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kite Light" -source: - marketplace_id: "Zhouscar.vscode-theme-kite-wcag" - version: "0.0.1" - installs: 1278 - rating: 0 - ratings: 0 - author: "Zhouscar" - repo: "https://github.com/Zhouscar/vscode-theme-kite-hc" - url: "https://marketplace.visualstudio.com/items?itemName=Zhouscar.vscode-theme-kite-wcag" -colors: - bg: "#FFFFFF" - fg: "#04274E" - black: "#000913" - red: "#C8433C" - green: "#4FC83C" - yellow: "#C8BF3C" - blue: "#3C7DC8" - magenta: "#9E3CC8" - cyan: "#3CA3C8" - white: "#78818C" - brightBlack: "#606871" - brightRed: "#F14F46" - brightGreen: "#53EC3C" - brightYellow: "#F1E646" - brightBlue: "#5097E7" - brightMagenta: "#D165FF" - brightCyan: "#46C3F1" - brightWhite: "#949BA4" -meta: - mode: "light" - accent: "green" - hue: null - pair: "Kite Dark" - contrast: - fg: 101.5 - black: 105.9 - red: 72.7 - green: 42.3 - yellow: 36.4 - blue: 68.9 - magenta: 75.7 - cyan: 54.9 - white: 66.9 - brightBlack: 78.3 - brightRed: 61.7 - brightGreen: 25.3 - brightYellow: 14.7 - brightBlue: 56.9 - brightMagenta: 55.9 - brightCyan: 39.1 - brightWhite: 54 diff --git a/themes/kitty-catty.yaml b/themes/kitty-catty.yaml index 1b894c1f..b2f0cf27 100644 --- a/themes/kitty-catty.yaml +++ b/themes/kitty-catty.yaml @@ -8,6 +8,7 @@ source: author: "HAAZIQ-ALI" repo: "https://github.com/HAAZIQ-ALI/KAROU-Theme" url: "https://marketplace.visualstudio.com/items?itemName=HAAZIQ-ALI.karou-theme" + formats: null colors: bg: "#0D0F10" fg: "#D8DFE5" diff --git a/themes/kitty-night.yaml b/themes/kitty-night.yaml index 34502e23..c8f6eddc 100644 --- a/themes/kitty-night.yaml +++ b/themes/kitty-night.yaml @@ -8,6 +8,7 @@ source: author: "goldyflakes" repo: null url: "https://marketplace.visualstudio.com/items?itemName=goldyflakes.kitty-night" + formats: null colors: bg: "#222024" fg: "#FFFFFF" diff --git a/themes/kittypower.yaml b/themes/kittypower.yaml deleted file mode 100644 index a73790c2..00000000 --- a/themes/kittypower.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "KittyPower" -source: - marketplace_id: "Eduardo-Escoto.kittypower" - version: "0.0.9" - installs: 862 - rating: 5 - ratings: 1 - author: "Eduardo Escoto" - repo: "https://github.com/eduardo-escoto/KittyPower" - url: "https://marketplace.visualstudio.com/items?itemName=Eduardo-Escoto.kittypower" -colors: - bg: "#0E1C26" - fg: "#FF8657" - black: "#B8B8B8" - red: "#F52727" - green: "#8EFFCA" - yellow: "#FFE300" - blue: "#63ADFF" - magenta: "#CAB7FF" - cyan: "#95EAFF" - white: "#FFFFFF" - brightBlack: "#948787" - brightRed: "#FF4949" - brightGreen: "#3FFFB2" - brightYellow: "#FFF678" - brightBlue: "#0079FF" - brightMagenta: "#9C59FF" - brightCyan: "#06CEFF" - brightWhite: "#E8E8E8" -meta: - mode: "dark" - accent: "orange" - hue: 241 - pair: null - contrast: - fg: 54.1 - black: 62.6 - red: 34.7 - green: 92.4 - yellow: 88.1 - blue: 54.6 - magenta: 68.1 - cyan: 84.8 - white: 106.4 - brightBlack: 38.1 - brightRed: 40.9 - brightGreen: 88.1 - brightYellow: 97.8 - brightBlue: 33.4 - brightMagenta: 33.8 - brightCyan: 66.7 - brightWhite: 91.5 diff --git a/themes/kiwi-contrast.yaml b/themes/kiwi-contrast.yaml deleted file mode 100644 index 118609d5..00000000 --- a/themes/kiwi-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "kiwi-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0C0F0E" - fg: "#EDEBE6" - black: "#171D1B" - red: "#BA0E2E" - green: "#229986" - yellow: "#95C72A" - blue: "#0B6D5C" - magenta: "#229986" - cyan: "#95C72A" - white: "#F8F7F5" - brightBlack: "#394843" - brightRed: "#F03E5F" - brightGreen: "#4AD7C0" - brightYellow: "#BFE275" - brightBlue: "#14CAAA" - brightMagenta: "#4AD7C0" - brightCyan: "#BFE275" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.5 - black: 0 - red: 21.2 - green: 39 - yellow: 63.4 - blue: 20.8 - magenta: 39 - cyan: 63.4 - white: 102.3 - brightBlack: 9.8 - brightRed: 37.5 - brightGreen: 69.8 - brightYellow: 81 - brightBlue: 61.7 - brightMagenta: 69.8 - brightCyan: 81 - brightWhite: 107.5 diff --git a/themes/kiwi-light.yaml b/themes/kiwi-light.yaml deleted file mode 100644 index 7457045b..00000000 --- a/themes/kiwi-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "kiwi-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#555555" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#229986" - yellow: "#95C72A" - blue: "#0B6D5C" - magenta: "#229986" - cyan: "#95C72A" - white: "#626262" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#4AD7C0" - brightYellow: "#BFE275" - brightBlue: "#14CAAA" - brightMagenta: "#4AD7C0" - brightCyan: "#BFE275" - brightWhite: "#888888" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 85.9 - black: 0 - red: 80.3 - green: 62.3 - yellow: 38.6 - blue: 80.7 - magenta: 62.3 - cyan: 38.6 - white: 80.5 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 32.6 - brightYellow: 21.9 - brightBlue: 40.2 - brightMagenta: 32.6 - brightCyan: 21.9 - brightWhite: 63.1 diff --git a/themes/kiwi.yaml b/themes/kiwi.yaml deleted file mode 100644 index 9cf9c7bb..00000000 --- a/themes/kiwi.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "kiwi" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2A3330" - fg: "#EDEBE6" - black: "#36413D" - red: "#BA0E2E" - green: "#229986" - yellow: "#95C72A" - blue: "#0B6D5C" - magenta: "#229986" - cyan: "#95C72A" - white: "#F8F7F5" - brightBlack: "#586B65" - brightRed: "#F03E5F" - brightGreen: "#4AD7C0" - brightYellow: "#BFE275" - brightBlue: "#14CAAA" - brightMagenta: "#4AD7C0" - brightCyan: "#BFE275" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 173 - pair: null - contrast: - fg: 89.5 - black: 0 - red: 16.1 - green: 34 - yellow: 58.4 - blue: 15.8 - magenta: 34 - cyan: 58.4 - white: 97.3 - brightBlack: 18.1 - brightRed: 32.4 - brightGreen: 64.7 - brightYellow: 76 - brightBlue: 56.7 - brightMagenta: 64.7 - brightCyan: 76 - brightWhite: 102.5 diff --git a/themes/kiwisoup-fork.yaml b/themes/kiwisoup-fork.yaml deleted file mode 100644 index 40e87534..00000000 --- a/themes/kiwisoup-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kiwisoup - Fork" -source: - marketplace_id: "0xJariel.chatgp-theme" - version: "0.0.5" - installs: 2496 - rating: 5 - ratings: 1 - author: "0xJariel" - repo: "https://github.com/0xJariel/ChatGP-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=0xJariel.chatgp-theme" -colors: - bg: "#303038" - fg: "#D4D4D4" - black: "#000000" - red: "#C03738" - green: "#43B67B" - yellow: "#E2E249" - blue: "#386FA4" - magenta: "#9736BA" - cyan: "#4EB7D1" - white: "#E5E5E5" - brightBlack: "#626161" - brightRed: "#F05D5E" - brightGreen: "#5FDB9C" - brightYellow: "#F2F28B" - brightBlue: "#4B9AE6" - brightMagenta: "#BC64BC" - brightCyan: "#6BDDF9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 286 - pair: null - contrast: - fg: 75.2 - black: 0 - red: 20.4 - green: 47 - yellow: 79.8 - blue: 20.4 - magenta: 17.9 - cyan: 51.2 - white: 85.8 - brightBlack: 15.8 - brightRed: 37.4 - brightGreen: 66.3 - brightYellow: 90.6 - brightBlue: 40.5 - brightMagenta: 32.3 - brightCyan: 71.8 - brightWhite: 102.6 diff --git a/themes/kjs-officials-electric-lime.yaml b/themes/kjs-officials-electric-lime.yaml index 774272c5..95bfb21e 100644 --- a/themes/kjs-officials-electric-lime.yaml +++ b/themes/kjs-officials-electric-lime.yaml @@ -8,6 +8,7 @@ source: author: "KJS - Officials" repo: null url: "https://marketplace.visualstudio.com/items?itemName=KJS-Officials.kjs-officials----electriclime" + formats: null colors: bg: "#0E0F0B" fg: "#C9CD9A" diff --git a/themes/knapsack.yaml b/themes/knapsack.yaml index f73aa95e..928e910b 100644 --- a/themes/knapsack.yaml +++ b/themes/knapsack.yaml @@ -8,6 +8,7 @@ source: author: "VersionMaybe." repo: "https://github.com/VersionMaybe/vs-code-knapsack" url: "https://marketplace.visualstudio.com/items?itemName=versionmaybe.knapsack-theme" + formats: null colors: bg: "#212229" fg: "#FFFFFF" diff --git a/themes/knfocus-alt.yaml b/themes/knfocus-alt.yaml index 1c2a7281..c3d84248 100644 --- a/themes/knfocus-alt.yaml +++ b/themes/knfocus-alt.yaml @@ -8,6 +8,7 @@ source: author: "Knighttower" repo: "https://github.com/knighttower/vscode-theme-knfocus" url: "https://marketplace.visualstudio.com/items?itemName=Knighttower.knfocus" + formats: null colors: bg: "#191919" fg: "#62295F" diff --git a/themes/knfocus-base.yaml b/themes/knfocus-base.yaml index eebfdd5f..b203613b 100644 --- a/themes/knfocus-base.yaml +++ b/themes/knfocus-base.yaml @@ -8,6 +8,7 @@ source: author: "Knighttower" repo: "https://github.com/knighttower/vscode-theme-knfocus" url: "https://marketplace.visualstudio.com/items?itemName=Knighttower.knfocus" + formats: null colors: bg: "#191919" fg: "#946802" diff --git a/themes/knight-vscode.yaml b/themes/knight-vscode.yaml index d7cf93a7..8398fc3b 100644 --- a/themes/knight-vscode.yaml +++ b/themes/knight-vscode.yaml @@ -8,6 +8,7 @@ source: author: "Kerogs" repo: "https://github.com/kerogs/knight-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Kerogs.knight-vscode" + formats: null colors: bg: "#1C1F26" fg: "#D4D4D4" diff --git a/themes/knoctal-dark.yaml b/themes/knoctal-dark.yaml index 17060839..3ec0e353 100644 --- a/themes/knoctal-dark.yaml +++ b/themes/knoctal-dark.yaml @@ -8,6 +8,7 @@ source: author: "Knoctal" repo: "https://github.com/najmiter/knoctal-theme" url: "https://marketplace.visualstudio.com/items?itemName=najmiter.knoctal-theme" + formats: null colors: bg: "#1F2024" fg: "#E0E0E0" diff --git a/themes/knoctal-darker.yaml b/themes/knoctal-darker.yaml index a7e866f6..7e5ff641 100644 --- a/themes/knoctal-darker.yaml +++ b/themes/knoctal-darker.yaml @@ -8,6 +8,7 @@ source: author: "Knoctal" repo: "https://github.com/najmiter/knoctal-theme" url: "https://marketplace.visualstudio.com/items?itemName=najmiter.knoctal-theme" + formats: null colors: bg: "#181818" fg: "#E0E0E0" diff --git a/themes/knowit-dark.yaml b/themes/knowit-dark.yaml index 6b6b9145..5a1b8751 100644 --- a/themes/knowit-dark.yaml +++ b/themes/knowit-dark.yaml @@ -8,6 +8,7 @@ source: author: "KnowIT" repo: "https://github.com/JoseRa-KnowIT/knowit-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=knowit.knowit-color-theme" + formats: null colors: bg: "#090C13" fg: "#D6D6D6" diff --git a/themes/knowlyr-dark.yaml b/themes/knowlyr-dark.yaml index 92fa2558..5d2f8975 100644 --- a/themes/knowlyr-dark.yaml +++ b/themes/knowlyr-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Knowlyr.knowlyr-theme" version: "3.0.0" installs: 15 + rating: 0 + ratings: 0 author: "Knowlyr" repo: "https://github.com/liuxiaotong/knowlyr-theme" url: "https://marketplace.visualstudio.com/items?itemName=Knowlyr.knowlyr-theme" + formats: null colors: bg: "#151C1A" fg: "#BCBEC4" diff --git a/themes/knowlyr-light.yaml b/themes/knowlyr-light.yaml index d747c22d..ff3ad34a 100644 --- a/themes/knowlyr-light.yaml +++ b/themes/knowlyr-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Knowlyr.knowlyr-theme" version: "3.0.0" installs: 15 + rating: 0 + ratings: 0 author: "Knowlyr" repo: "https://github.com/liuxiaotong/knowlyr-theme" url: "https://marketplace.visualstudio.com/items?itemName=Knowlyr.knowlyr-theme" + formats: null colors: bg: "#F0F5F3" fg: "#2B2D30" diff --git a/themes/koala-codes-theme.yaml b/themes/koala-codes-theme.yaml deleted file mode 100644 index 0850cf26..00000000 --- a/themes/koala-codes-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Koala codes theme" -source: - marketplace_id: "VigneshwaranK.koala" - version: "0.0.2" - installs: 789 - rating: 0 - ratings: 0 - author: "Vigneshwaran K" - repo: "https://github.com/Vigneshwaran-dev/Koala-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=VigneshwaranK.koala" -colors: - bg: "#18191D" - fg: "#D4D4D4" - black: "#282A36" - red: "#FD6969" - green: "#B4FFE2" - yellow: "#FFFFA5" - blue: "#248AC8" - magenta: "#DA86DA" - cyan: "#5DD9F8" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#FF5353" - brightGreen: "#47CF99" - brightYellow: "#FFFF5D" - brightBlue: "#3B8EEA" - brightMagenta: "#A46CEE" - brightCyan: "#0CD2FF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 79.3 - black: 0 - red: 46.9 - green: 96.6 - yellow: 103.3 - blue: 35.5 - magenta: 51.9 - cyan: 73.3 - white: 89.8 - brightBlack: 21.8 - brightRed: 42.8 - brightGreen: 63.5 - brightYellow: 101.9 - brightBlue: 39.8 - brightMagenta: 38 - brightCyan: 68.7 - brightWhite: 89.8 diff --git a/themes/kod-purple.yaml b/themes/kod-purple.yaml index d560d5e2..9c27efdb 100644 --- a/themes/kod-purple.yaml +++ b/themes/kod-purple.yaml @@ -8,6 +8,7 @@ source: author: "Andrew Kodkod" repo: "https://github.com/akodkod/kod-purple-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndrewKodkod.kod-purple-theme" + formats: null colors: bg: "#1A1F30" fg: "#C6C6D7" diff --git a/themes/kodex-arctic.yaml b/themes/kodex-arctic.yaml deleted file mode 100644 index 92c935d5..00000000 --- a/themes/kodex-arctic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kodex Arctic" -source: - marketplace_id: "pnx.kodex" - version: "0.4.1" - installs: 233 - rating: 5 - ratings: 1 - author: "Henrik Hautakoski" - repo: "https://github.com/pnx/kodex-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=pnx.kodex" -colors: - bg: "#282A33" - fg: "#F1F1F1" - black: "#000000" - red: "#CC817F" - green: "#7CCFAF" - yellow: "#FFCC99" - blue: "#8AC6F2" - magenta: "#9999CC" - cyan: "#8ABEB7" - white: "#F1F1F1" - brightBlack: "#000000" - brightRed: "#CC817F" - brightGreen: "#7CCFAF" - brightYellow: "#FFCC99" - brightBlue: "#8AC6F2" - brightMagenta: "#9999CC" - brightCyan: "#8ABEB7" - brightWhite: "#F1F1F1" -meta: - mode: "dark" - accent: "teal" - hue: 275 - pair: null - contrast: - fg: 94.8 - black: 0 - red: 41.5 - green: 64.2 - yellow: 77.5 - blue: 64.3 - magenta: 45.6 - cyan: 57.9 - white: 94.8 - brightBlack: 0 - brightRed: 41.5 - brightGreen: 64.2 - brightYellow: 77.5 - brightBlue: 64.3 - brightMagenta: 45.6 - brightCyan: 57.9 - brightWhite: 94.8 diff --git a/themes/kodex.yaml b/themes/kodex.yaml deleted file mode 100644 index 55a7ac39..00000000 --- a/themes/kodex.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kodex" -source: - marketplace_id: "pnx.kodex" - version: "0.4.1" - installs: 233 - rating: 5 - ratings: 1 - author: "Henrik Hautakoski" - repo: "https://github.com/pnx/kodex-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=pnx.kodex" -colors: - bg: "#1D232C" - fg: "#F1F1F1" - black: "#000000" - red: "#CC817F" - green: "#7CCFAF" - yellow: "#FFCC99" - blue: "#8AC6F2" - magenta: "#9999CC" - cyan: "#8ABEB7" - white: "#F1F1F1" - brightBlack: "#000000" - brightRed: "#CC817F" - brightGreen: "#7CCFAF" - brightYellow: "#FFCC99" - brightBlue: "#8AC6F2" - brightMagenta: "#9999CC" - brightCyan: "#8ABEB7" - brightWhite: "#F1F1F1" -meta: - mode: "dark" - accent: "teal" - hue: 258 - pair: null - contrast: - fg: 96.2 - black: 0 - red: 42.8 - green: 65.6 - yellow: 78.8 - blue: 65.7 - magenta: 47 - cyan: 59.3 - white: 96.2 - brightBlack: 0 - brightRed: 42.8 - brightGreen: 65.6 - brightYellow: 78.8 - brightBlue: 65.7 - brightMagenta: 47 - brightCyan: 59.3 - brightWhite: 96.2 diff --git a/themes/koffee-kreme.yaml b/themes/koffee-kreme.yaml index 20c1ded6..a4898657 100644 --- a/themes/koffee-kreme.yaml +++ b/themes/koffee-kreme.yaml @@ -8,6 +8,7 @@ source: author: "AchroDev" repo: "https://github.com/AchroDev/koffee-kreme" url: "https://marketplace.visualstudio.com/items?itemName=AchroDev.koffee-kreme" + formats: null colors: bg: "#ECE0D1" fg: "#38220F" diff --git a/themes/koi-noir-lan-theme.yaml b/themes/koi-noir-lan-theme.yaml index fb408935..af34d57e 100644 --- a/themes/koi-noir-lan-theme.yaml +++ b/themes/koi-noir-lan-theme.yaml @@ -8,6 +8,7 @@ source: author: "wangx" repo: "https://github.com/wangx7/koi-noir-theme" url: "https://marketplace.visualstudio.com/items?itemName=wangx123.koi-noir-theme" + formats: null colors: bg: "#0F1119" fg: "#BABED8" diff --git a/themes/koi-noir-theme.yaml b/themes/koi-noir-theme.yaml index d95815e9..2791ec7e 100644 --- a/themes/koi-noir-theme.yaml +++ b/themes/koi-noir-theme.yaml @@ -8,6 +8,7 @@ source: author: "wangx" repo: "https://github.com/wangx7/koi-noir-theme" url: "https://marketplace.visualstudio.com/items?itemName=wangx123.koi-noir-theme" + formats: null colors: bg: "#000000" fg: "#BABED8" diff --git a/themes/koi-pond-dark.yaml b/themes/koi-pond-dark.yaml deleted file mode 100644 index cd29f78d..00000000 --- a/themes/koi-pond-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Koi Pond Dark" -source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - rating: 0 - ratings: 0 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" -colors: - bg: "#0F1419" - fg: "#C7D2CC" - black: "#2D3B4F" - red: "#D73027" - green: "#7FB069" - yellow: "#F4A261" - blue: "#2166AC" - magenta: "#762A83" - cyan: "#5AAE61" - white: "#C7D2CC" - brightBlack: "#5C6B73" - brightRed: "#E85749" - brightGreen: "#8BC275" - brightYellow: "#F6B73C" - brightBlue: "#4393C3" - brightMagenta: "#9970AB" - brightCyan: "#7FB069" - brightWhite: "#E8F0E8" -meta: - mode: "dark" - accent: "orange" - hue: 249 - pair: "Koi Pond Light" - contrast: - fg: 77 - black: 0 - red: 29.1 - green: 51.8 - yellow: 61.6 - blue: 22 - magenta: 12.6 - cyan: 48.4 - white: 77 - brightBlack: 23.5 - brightRed: 38.7 - brightGreen: 60.9 - brightYellow: 69.2 - brightBlue: 39.9 - brightMagenta: 33.8 - brightCyan: 51.8 - brightWhite: 95.9 diff --git a/themes/koi-pond-light.yaml b/themes/koi-pond-light.yaml deleted file mode 100644 index 4b1bdf44..00000000 --- a/themes/koi-pond-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Koi Pond Light" -source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - rating: 0 - ratings: 0 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" -colors: - bg: "#FCFAF4" - fg: "#2C3E34" - black: "#2C3E34" - red: "#D73027" - green: "#2D5016" - yellow: "#D68910" - blue: "#2166AC" - magenta: "#762A83" - cyan: "#1A7431" - white: "#F7F3E9" - brightBlack: "#6B6B52" - brightRed: "#E85749" - brightGreen: "#3D6626" - brightYellow: "#F4A261" - brightBlue: "#4393C3" - brightMagenta: "#9970AB" - brightCyan: "#2D8F47" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Koi Pond Dark" - contrast: - fg: 93.2 - black: 93.2 - red: 68.9 - green: 88.2 - yellow: 50.8 - blue: 76.1 - magenta: 85.9 - cyan: 75.9 - white: 0 - brightBlack: 74.2 - brightRed: 59.3 - brightGreen: 80 - brightYellow: 37 - brightBlue: 58.1 - brightMagenta: 64.2 - brightCyan: 64.7 - brightWhite: 0 diff --git a/themes/kokatheme.yaml b/themes/kokatheme.yaml index b9ab649f..616274ec 100644 --- a/themes/kokatheme.yaml +++ b/themes/kokatheme.yaml @@ -8,6 +8,7 @@ source: author: "Sabe" repo: "https://github.com/SabeDoesThings/Koka-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Sabe.koka-theme" + formats: null colors: bg: "#1F2123" fg: "#D5D3D1" diff --git a/themes/koki-dark.yaml b/themes/koki-dark.yaml deleted file mode 100644 index a6543881..00000000 --- a/themes/koki-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Koki Dark" -source: - marketplace_id: "hky.theme-koki" - version: "0.0.5" - installs: 188 - rating: 0 - ratings: 0 - author: "hky" - repo: "https://github.com/hky301/vscode-theme-koki" - url: "https://marketplace.visualstudio.com/items?itemName=hky.theme-koki" -colors: - bg: "#121212" - fg: "#DBD7CA" - black: "#393A34" - red: "#CB7676" - green: "#4D9375" - yellow: "#E6CC77" - blue: "#6394BF" - magenta: "#DB889A" - cyan: "#5EAAB5" - white: "#FFFFFF" - brightBlack: "#777777" - brightRed: "#CB7676" - brightGreen: "#4D9375" - brightYellow: "#E6CC77" - brightBlue: "#6394BF" - brightMagenta: "#DB889A" - brightCyan: "#5EAAB5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 81.7 - black: 0 - red: 41.2 - green: 37.1 - yellow: 76 - blue: 41.8 - magenta: 50.3 - cyan: 49.7 - white: 107.3 - brightBlack: 30 - brightRed: 41.2 - brightGreen: 37.1 - brightYellow: 76 - brightBlue: 41.8 - brightMagenta: 50.3 - brightCyan: 49.7 - brightWhite: 107.3 diff --git a/themes/kokubo.yaml b/themes/kokubo.yaml index 1f54a348..eb5301a3 100644 --- a/themes/kokubo.yaml +++ b/themes/kokubo.yaml @@ -8,6 +8,7 @@ source: author: "Kongaloosh" repo: "git push --set-upstream origin main" url: "https://marketplace.visualstudio.com/items?itemName=Kongaloosh.kongaloosh" + formats: null colors: bg: "#3A3D3F" fg: "#CEE5C2" diff --git a/themes/kolada.yaml b/themes/kolada.yaml index ac9ea45e..94bb656a 100644 --- a/themes/kolada.yaml +++ b/themes/kolada.yaml @@ -2,12 +2,13 @@ name: "Kolada" source: marketplace_id: "KaliaHayes.kolada" version: "0.4.0" - installs: 7962 + installs: 7974 rating: 5 ratings: 4 author: "Kalia Hayes" repo: "https://github.com/KaliaHayes/Kolada-VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=KaliaHayes.kolada" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/komorebi.yaml b/themes/komorebi.yaml index eccb9315..c505749f 100644 --- a/themes/komorebi.yaml +++ b/themes/komorebi.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "sergibarroso.komorebi" version: "1.0.2" installs: 414 + rating: 0 + ratings: 0 author: "Sergi Barroso" repo: "https://github.com/sergibarroso/vscode-themes-komorebi" url: "https://marketplace.visualstudio.com/items?itemName=sergibarroso.komorebi" + formats: null colors: bg: "#FFFCF4" fg: "#657B83" diff --git a/themes/kong-light.yaml b/themes/kong-light.yaml index 83b447c3..99972206 100644 --- a/themes/kong-light.yaml +++ b/themes/kong-light.yaml @@ -8,6 +8,7 @@ source: author: "zeaphoo" repo: "https://github.com/zeaphoo/kong-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=zeaphoo.kong-vscode-theme" + formats: null colors: bg: "#F5F5F5" fg: "#1F2328" diff --git a/themes/konng.yaml b/themes/konng.yaml index 7e26a59e..6f7daf6e 100644 --- a/themes/konng.yaml +++ b/themes/konng.yaml @@ -1,50 +1,53 @@ -name: "Konng" +name: "KONNG" source: - marketplace_id: "dockerissoslow.konngPublishTest" - version: "2.0.2" - installs: 351 - author: "dockerissoslow" - repo: "https://github.com/fengwei2002/vscode-theme-KONNG" - url: "https://marketplace.visualstudio.com/items?itemName=dockerissoslow.konngPublishTest" + marketplace_id: "OvO.konng" + version: "5.0.0" + installs: 1352 + rating: 5 + ratings: 3 + author: "fengwei2002" + repo: "https://github.com/funcdfs/vscode-theme-lesser" + url: "https://marketplace.visualstudio.com/items?itemName=OvO.konng" + formats: null colors: - bg: "#1C1E26" + bg: "#211D25" fg: "#ABB2BF" - black: "#544F4F" - red: "#E15A60" - green: "#42B983" - yellow: "#FAC863" - blue: "#406285" - magenta: "#C594C5" - cyan: "#DD1EDD" - white: "#B4B4B4" - brightBlack: "#544F4F" - brightRed: "#E15A60" - brightGreen: "#1F593F" - brightYellow: "#FAC863" - brightBlue: "#406285" - brightMagenta: "#C594C5" - brightCyan: "#9E2494" - brightWhite: "#B4B4B4" + black: "#2A2530" + red: "#FF8080" + green: "#7DD3C0" + yellow: "#FFF2B3" + blue: "#6A9BE8" + magenta: "#AFB6FF" + cyan: "#80FFB5" + white: "#BDC3CF" + brightBlack: "#636D83" + brightRed: "#FF8080" + brightGreen: "#7DD3C0" + brightYellow: "#FFF2B3" + brightBlue: "#6A9BE8" + brightMagenta: "#AFB6FF" + brightCyan: "#80FFB5" + brightWhite: "#EEEEEE" meta: mode: "dark" - accent: "pink" - hue: 274 + accent: "orange" + hue: 308 pair: null contrast: fg: 58.5 - black: 12.4 - red: 37 - green: 51.9 - yellow: 75.9 - blue: 18.5 - magenta: 51.2 - cyan: 34.8 - white: 59.9 - brightBlack: 12.4 - brightRed: 37 - brightGreen: 12.1 - brightYellow: 75.9 - brightBlue: 18.5 - brightMagenta: 51.2 - brightCyan: 18.2 - brightWhite: 59.9 + black: 0 + red: 52.8 + green: 68.8 + yellow: 96.9 + blue: 46 + magenta: 64 + cyan: 90.3 + white: 68.2 + brightBlack: 24.1 + brightRed: 52.8 + brightGreen: 68.8 + brightYellow: 96.9 + brightBlue: 46 + brightMagenta: 64 + brightCyan: 90.3 + brightWhite: 94.8 diff --git a/themes/kopo-theme.yaml b/themes/kopo-theme.yaml index 0959cf61..9d9733b4 100644 --- a/themes/kopo-theme.yaml +++ b/themes/kopo-theme.yaml @@ -1,4 +1,4 @@ -name: "Kopo-Theme" +name: "Kopo Theme" source: marketplace_id: "Itayon.kopo-theme" version: "1.0.1" @@ -8,6 +8,7 @@ source: author: "Itayon" repo: "https://github.com/KopoCorp/VS-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Itayon.kopo-theme" + formats: null colors: bg: "#191920" fg: "#E8E8E8" diff --git a/themes/korbit.yaml b/themes/korbit.yaml deleted file mode 100644 index 211c6e2a..00000000 --- a/themes/korbit.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "korbit" -source: - marketplace_id: "RATIU5DEV.korbit-theme" - version: "0.1.2" - installs: 981 - rating: 5 - ratings: 1 - author: "RATIU5DEV" - repo: "https://github.com/RATIU5/korbit" - url: "https://marketplace.visualstudio.com/items?itemName=RATIU5DEV.korbit-theme" -colors: - bg: "#2A2725" - fg: "#A79C95" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E2D5CC" - brightBlack: "#655D56" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#F4E6DB" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 46.4 - black: 0 - red: 24.4 - green: 50.6 - yellow: 83.3 - blue: 25.1 - magenta: 27.4 - cyan: 45.2 - white: 79.1 - brightBlack: 16.5 - brightRed: 36.2 - brightGreen: 61.2 - brightYellow: 93.3 - brightBlue: 37.6 - brightMagenta: 43 - brightCyan: 53 - brightWhite: 89.8 diff --git a/themes/korean-dancheong-dark.yaml b/themes/korean-dancheong-dark.yaml index b847654a..f3f91624 100644 --- a/themes/korean-dancheong-dark.yaml +++ b/themes/korean-dancheong-dark.yaml @@ -2,12 +2,13 @@ name: "Korean Dancheong Dark" source: marketplace_id: "weston0713.korean-dancheong-dark" version: "1.1.2" - installs: 190 + installs: 194 rating: 0 ratings: 0 author: "weston0713" repo: "https://github.com/HC-kang/korean-dancheong-dark" url: "https://marketplace.visualstudio.com/items?itemName=weston0713.korean-dancheong-dark" + formats: null colors: bg: "#121A16" fg: "#EAE2D8" @@ -31,7 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 163 - pair: null + pair: "Korean Dancheong Light" contrast: fg: 88.6 black: 0 diff --git a/themes/korsr-theme.yaml b/themes/korsr-theme.yaml index e1e0aa90..332fd7b8 100644 --- a/themes/korsr-theme.yaml +++ b/themes/korsr-theme.yaml @@ -1,4 +1,4 @@ -name: "KORSR theme" +name: "KORSR Theme" source: marketplace_id: "Killuox.korsr-theme" version: "0.7.0" @@ -8,6 +8,7 @@ source: author: "Killuox" repo: "https://github.com/killuox/korsr-theme" url: "https://marketplace.visualstudio.com/items?itemName=Killuox.korsr-theme" + formats: null colors: bg: "#21242C" fg: "#DCE5F8" diff --git a/themes/kotama-otose.yaml b/themes/kotama-otose.yaml index 8eb003c1..a6231912 100644 --- a/themes/kotama-otose.yaml +++ b/themes/kotama-otose.yaml @@ -8,6 +8,7 @@ source: author: "hashpp" repo: "https://github.com/hash112/veritas-code" url: "https://marketplace.visualstudio.com/items?itemName=hashpp.veritas-code" + formats: null colors: bg: "#302D2C" fg: "#FFFFFF" diff --git a/themes/kozy-darker.yaml b/themes/kozy-darker.yaml index ee91fea8..8a8ba9d0 100644 --- a/themes/kozy-darker.yaml +++ b/themes/kozy-darker.yaml @@ -8,6 +8,7 @@ source: author: "Artezio" repo: "https://github.com/Kozy-theme/vscode-cozy" url: "https://marketplace.visualstudio.com/items?itemName=Artezio.kozy-theme" + formats: null colors: bg: "#161C20" fg: "#9CACB6" diff --git a/themes/kozy.yaml b/themes/kozy.yaml index 99a34ab9..c6bdb729 100644 --- a/themes/kozy.yaml +++ b/themes/kozy.yaml @@ -8,6 +8,7 @@ source: author: "Artezio" repo: "https://github.com/Kozy-theme/vscode-cozy" url: "https://marketplace.visualstudio.com/items?itemName=Artezio.kozy-theme" + formats: null colors: bg: "#1A242A" fg: "#9CACB6" diff --git a/themes/kpurple.yaml b/themes/kpurple.yaml index ff31c03e..a75fd31f 100644 --- a/themes/kpurple.yaml +++ b/themes/kpurple.yaml @@ -8,6 +8,7 @@ source: author: "Kaan Kuscu" repo: "https://github.com/ksckaan1/kpurple-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ksckaan1.kpurple" + formats: null colors: bg: "#2C165C" fg: "#FFFFFF" diff --git a/themes/kradeno.yaml b/themes/kradeno.yaml index 2de12546..91ce503d 100644 --- a/themes/kradeno.yaml +++ b/themes/kradeno.yaml @@ -8,6 +8,7 @@ source: author: "Neo Wees" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NeoWees.onebadass-theme-neowees" + formats: null colors: bg: "#1E2227" fg: "#ABB2BF" diff --git a/themes/krb-blue.yaml b/themes/krb-blue.yaml index 0164246a..3668ece8 100644 --- a/themes/krb-blue.yaml +++ b/themes/krb-blue.yaml @@ -8,6 +8,7 @@ source: author: "KUSHAL SAHA" repo: "https://github.com/krbfx/krbblue" url: "https://marketplace.visualstudio.com/items?itemName=KUSHALSAHA.krbblue" + formats: null colors: bg: "#252F32" fg: "#949494" diff --git a/themes/krb-violet.yaml b/themes/krb-violet.yaml index 1d08cb65..46e3a481 100644 --- a/themes/krb-violet.yaml +++ b/themes/krb-violet.yaml @@ -1,15 +1,16 @@ name: "Krb_Violet" source: - marketplace_id: "KUSHALSAHA.krbblue" - version: "2.0.0" - installs: 241 + marketplace_id: "KUSHALSAHA.krbviolet" + version: "1.0.2" + installs: 810 rating: 0 ratings: 0 author: "KUSHAL SAHA" - repo: "https://github.com/krbfx/krbblue" - url: "https://marketplace.visualstudio.com/items?itemName=KUSHALSAHA.krbblue" + repo: "https://github.com/krbfx/krbviolet" + url: "https://marketplace.visualstudio.com/items?itemName=KUSHALSAHA.krbviolet" + formats: null colors: - bg: "#403A4B" + bg: "#312A3F" fg: "#D4D4D4" black: "#000000" red: "#CD3131" @@ -30,23 +31,23 @@ colors: meta: mode: "dark" accent: "pink" - hue: 301 + hue: 299 pair: null contrast: - fg: 71.7 - black: 8.6 - red: 19 - green: 45.3 - yellow: 69.6 - blue: 19.7 - magenta: 22 - cyan: 39.8 - white: 82.3 - brightBlack: 14.3 - brightRed: 30.8 - brightGreen: 55.8 - brightYellow: 94.5 - brightBlue: 32.3 - brightMagenta: 37.6 - brightCyan: 47.7 - brightWhite: 82.3 + fg: 75.9 + black: 0 + red: 23.2 + green: 49.4 + yellow: 73.7 + blue: 23.9 + magenta: 26.2 + cyan: 44 + white: 86.5 + brightBlack: 18.5 + brightRed: 35 + brightGreen: 60 + brightYellow: 98.7 + brightBlue: 36.4 + brightMagenta: 41.8 + brightCyan: 51.8 + brightWhite: 86.5 diff --git a/themes/kripton.yaml b/themes/kripton.yaml deleted file mode 100644 index a7debe93..00000000 --- a/themes/kripton.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kripton" -source: - marketplace_id: "IanMuchina.kripton-flat" - version: "0.0.2" - installs: 1184 - rating: 0 - ratings: 0 - author: "Ian Muchina" - repo: "https://github.com/ianmuchina/kripton-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=IanMuchina.kripton-flat" -colors: - bg: "#131519" - fg: "#B3B1AD" - black: "#0E0E11" - red: "#EA6C73" - green: "#91B362" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#FAE994" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F24732" - brightGreen: "#B8BB26" - brightYellow: "#F24732" - brightBlue: "#59C2FF" - brightMagenta: "#40EF4B" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 59.4 - black: 0 - red: 44.2 - green: 54.4 - yellow: 66.8 - blue: 60.8 - magenta: 92.2 - cyan: 78.1 - white: 71.9 - brightBlack: 23.1 - brightRed: 37.9 - brightGreen: 61.4 - brightYellow: 37.9 - brightBlue: 63.5 - brightMagenta: 78.1 - brightCyan: 81.1 - brightWhite: 107.1 diff --git a/themes/krishna-dark-elegant.yaml b/themes/krishna-dark-elegant.yaml deleted file mode 100644 index d7cdcf65..00000000 --- a/themes/krishna-dark-elegant.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Krishna Dark Elegant" -source: - marketplace_id: "dcoder.krsna" - version: "1.0.4" - installs: 103 - rating: 5 - ratings: 1 - author: "dcoder" - repo: "https://github.com/Dhruv-Arora-Git/Krsna-VS" - url: "https://marketplace.visualstudio.com/items?itemName=dcoder.krsna" -colors: - bg: "#1D2938" - fg: "#E8DCCB" - black: "#1D2938" - red: "#EF5350" - green: "#A5D6A7" - yellow: "#FBC02D" - blue: "#64B5F6" - magenta: "#BA68C8" - cyan: "#4DD0E1" - white: "#E8DCCB" - brightBlack: "#1D2938" - brightRed: "#EF5350" - brightGreen: "#A5D6A7" - brightYellow: "#FBC02D" - brightBlue: "#64B5F6" - brightMagenta: "#BA68C8" - brightCyan: "#4DD0E1" - brightWhite: "#E8DCCB" -meta: - mode: "dark" - accent: "orange" - hue: 254 - pair: null - contrast: - fg: 82.8 - black: 0 - red: 36.8 - green: 70.9 - yellow: 70.6 - blue: 55.3 - magenta: 35.4 - cyan: 64.9 - white: 82.8 - brightBlack: 0 - brightRed: 36.8 - brightGreen: 70.9 - brightYellow: 70.6 - brightBlue: 55.3 - brightMagenta: 35.4 - brightCyan: 64.9 - brightWhite: 82.8 diff --git a/themes/krishna-default-dark-theme.yaml b/themes/krishna-default-dark-theme.yaml index 6b68fc9c..f91c4f60 100644 --- a/themes/krishna-default-dark-theme.yaml +++ b/themes/krishna-default-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Bhoot Studio" repo: "https://github.com/DebkantaMondal/Bhoot-VS-Theme" url: "https://marketplace.visualstudio.com/items?itemName=BhootStudio.bhoot-theme" + formats: null colors: bg: "#000D1A" fg: "#D9E0EE" diff --git a/themes/kroma-cardinal-light.yaml b/themes/kroma-cardinal-light.yaml index 82193164..72509a7c 100644 --- a/themes/kroma-cardinal-light.yaml +++ b/themes/kroma-cardinal-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "quzma.vscode-kroma" version: "1.5.0" installs: 82 + rating: 0 + ratings: 0 author: "Darko Kuzmanovic" repo: "https://github.com/DarkoKuzmanovic/vscode-kroma" url: "https://marketplace.visualstudio.com/items?itemName=quzma.vscode-kroma" + formats: null colors: bg: "#FFFFFF" fg: "#202124" diff --git a/themes/krone.yaml b/themes/krone.yaml index c70720b7..30bba58f 100644 --- a/themes/krone.yaml +++ b/themes/krone.yaml @@ -8,6 +8,8 @@ source: author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" + formats: + nvim: "https://raw.githubusercontent.com/volskaya/irrelevant/main/extensions/neovim/lua/irrelevant/colors.lua" colors: bg: "#1C1C1C" fg: "#FFFFFF" diff --git a/themes/krow-t.yaml b/themes/krow-t.yaml index b5b88530..5680a652 100644 --- a/themes/krow-t.yaml +++ b/themes/krow-t.yaml @@ -8,6 +8,7 @@ source: author: "Davi dos Santos Freitas" repo: "https://github.com/Nasalis/Krow-t-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DavidosSantosFreitas.krow-t" + formats: null colors: bg: "#151515" fg: "#D4D4D4" diff --git a/themes/kryptonite-theme.yaml b/themes/kryptonite-theme.yaml deleted file mode 100644 index c9f58b1f..00000000 --- a/themes/kryptonite-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "kryptonite-theme" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - rating: 5 - ratings: 3 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#002811" - fg: "#D7A201" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#C99808" - blue: "#7BF5CD" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#B2B2B2" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#FBFB69" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 153 - pair: null - contrast: - fg: 54.1 - black: 0 - red: 25.1 - green: 51.4 - yellow: 48.3 - blue: 85 - magenta: 28.2 - cyan: 46 - white: 88.4 - brightBlack: 58.1 - brightRed: 37 - brightGreen: 62 - brightYellow: 98.2 - brightBlue: 38.4 - brightMagenta: 43.8 - brightCyan: 53.8 - brightWhite: 88.4 diff --git a/themes/ktrz-monokai.yaml b/themes/ktrz-monokai.yaml index 690702d0..65d90f00 100644 --- a/themes/ktrz-monokai.yaml +++ b/themes/ktrz-monokai.yaml @@ -1,13 +1,14 @@ -name: "ktrz-monokai" +name: "KTRZ Monokai" source: marketplace_id: "ixkaito.ktrz-monokai" version: "0.1.7" - installs: 11063 + installs: 11064 rating: 5 ratings: 2 author: "Kite" repo: "https://github.com/ixkaito/ktrz-monokai" url: "https://marketplace.visualstudio.com/items?itemName=ixkaito.ktrz-monokai" + formats: null colors: bg: "#26292C" fg: "#F8F8F8" diff --git a/themes/kubesong.yaml b/themes/kubesong.yaml index 3a8fa102..0c911309 100644 --- a/themes/kubesong.yaml +++ b/themes/kubesong.yaml @@ -2,12 +2,13 @@ name: "Kubesong" source: marketplace_id: "Kubes.kubesong" version: "1.0.13" - installs: 1083 + installs: 1084 rating: 5 ratings: 1 author: "Kubes" repo: "https://github.com/helgelol/kubesong-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Kubes.kubesong" + formats: null colors: bg: "#252C34" fg: "#EBD1B7" diff --git a/themes/kultist-v2.yaml b/themes/kultist-v2.yaml index 1783cf41..4f17dcac 100644 --- a/themes/kultist-v2.yaml +++ b/themes/kultist-v2.yaml @@ -8,6 +8,7 @@ source: author: "codekult" repo: "https://github.com/codekult/kultist-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=codekult.kultist-color-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/kurdish-vibrant-theme.yaml b/themes/kurdish-vibrant-theme.yaml deleted file mode 100644 index c765e6ba..00000000 --- a/themes/kurdish-vibrant-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kurdish Vibrant Theme" -source: - marketplace_id: "miladkermanji8639.kurdish-theme" - version: "1.1.0" - installs: 29 - rating: 5 - ratings: 1 - author: "miladkermanji8639" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=miladkermanji8639.kurdish-theme" -colors: - bg: "#1A1122" - fg: "#FFFFFF" - black: "#1A1122" - red: "#FF5555" - green: "#55FF55" - yellow: "#FFFF55" - blue: "#5555FF" - magenta: "#FF55FF" - cyan: "#55FFFF" - white: "#BBBBBB" - brightBlack: "#1A1122" - brightRed: "#FF5555" - brightGreen: "#55FF55" - brightYellow: "#FFFF55" - brightBlue: "#5555FF" - brightMagenta: "#FF55FF" - brightCyan: "#55FFFF" - brightWhite: "#BBBBBB" -meta: - mode: "dark" - accent: "pink" - hue: 308 - pair: null - contrast: - fg: 107 - black: 0 - red: 43.6 - green: 87.3 - yellow: 102.3 - blue: 26.5 - magenta: 51 - cyan: 92.5 - white: 64.9 - brightBlack: 0 - brightRed: 43.6 - brightGreen: 87.3 - brightYellow: 102.3 - brightBlue: 26.5 - brightMagenta: 51 - brightCyan: 92.5 - brightWhite: 64.9 diff --git a/themes/kurdor-light.yaml b/themes/kurdor-light.yaml index b2800546..9476eebe 100644 --- a/themes/kurdor-light.yaml +++ b/themes/kurdor-light.yaml @@ -8,6 +8,7 @@ source: author: "KurdorTheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rashidfarhad.kurdor" + formats: null colors: bg: "#F8F9FA" fg: "#5C6166" diff --git a/themes/kuro-sakura.yaml b/themes/kuro-sakura.yaml deleted file mode 100644 index 285166df..00000000 --- a/themes/kuro-sakura.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuro Sakura" -source: - marketplace_id: "cnrxad.sakura-x" - version: "1.0.0" - installs: 181 - rating: 0 - ratings: 0 - author: "cnrxad" - repo: "https://github.com/cnrxad/sakura-x" - url: "https://marketplace.visualstudio.com/items?itemName=cnrxad.sakura-x" -colors: - bg: "#1A1B26" - fg: "#C0CAF5" - black: "#1A1B26" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#9D4EDD" - cyan: "#56B6C2" - white: "#C0CAF5" - brightBlack: "#1A1B26" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#61AFEF" - brightMagenta: "#9D4EDD" - brightCyan: "#56B6C2" - brightWhite: "#C0CAF5" -meta: - mode: "dark" - accent: "magenta" - hue: 280 - pair: null - contrast: - fg: 73.8 - black: 0 - red: 41.5 - green: 61.7 - yellow: 70 - blue: 54.1 - magenta: 28.8 - cyan: 54 - white: 73.8 - brightBlack: 0 - brightRed: 41.5 - brightGreen: 61.7 - brightYellow: 70 - brightBlue: 54.1 - brightMagenta: 28.8 - brightCyan: 54 - brightWhite: 73.8 diff --git a/themes/kuro-theme-color-theme.yaml b/themes/kuro-theme-color-theme.yaml index 8e315f65..05cd700b 100644 --- a/themes/kuro-theme-color-theme.yaml +++ b/themes/kuro-theme-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "kuro_anh" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kuroanh.kuro-theme" + formats: null colors: bg: "#181A1F" fg: "#BBBBBB" diff --git a/themes/kuro.yaml b/themes/kuro.yaml index f88b4d9e..860f7ea7 100644 --- a/themes/kuro.yaml +++ b/themes/kuro.yaml @@ -8,6 +8,7 @@ source: author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-morfonica-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.morfonica-theme" + formats: null colors: bg: "#282C34" fg: "#F1F5F9" diff --git a/themes/kurodake-green.yaml b/themes/kurodake-green.yaml index a61c7f71..82fa9569 100644 --- a/themes/kurodake-green.yaml +++ b/themes/kurodake-green.yaml @@ -6,6 +6,7 @@ source: author: "awesometaro" repo: null url: "https://marketplace.visualstudio.com/items?itemName=awesometaro.awesome-green" + formats: null colors: bg: "#060A06" fg: "#55C455" diff --git a/themes/kuroir-dark-01-crimson.yaml b/themes/kuroir-dark-01-crimson.yaml deleted file mode 100644 index 17bb30d7..00000000 --- a/themes/kuroir-dark-01-crimson.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 01 Crimson" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#232020" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.3 - black: 16.7 - red: 45.6 - green: 45.3 - yellow: 45.5 - blue: 45.3 - magenta: 45.1 - cyan: 59.7 - white: 46.2 - brightBlack: 23.8 - brightRed: 58.2 - brightGreen: 57.9 - brightYellow: 58.1 - brightBlue: 58 - brightMagenta: 71.9 - brightCyan: 68.2 - brightWhite: 80.4 diff --git a/themes/kuroir-dark-02-vermilion.yaml b/themes/kuroir-dark-02-vermilion.yaml deleted file mode 100644 index a6d4547b..00000000 --- a/themes/kuroir-dark-02-vermilion.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 02 Vermilion" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#232120" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.2 - black: 16.6 - red: 45.5 - green: 45.2 - yellow: 45.4 - blue: 45.2 - magenta: 45 - cyan: 59.6 - white: 46.1 - brightBlack: 23.7 - brightRed: 58.1 - brightGreen: 57.8 - brightYellow: 58 - brightBlue: 57.9 - brightMagenta: 71.8 - brightCyan: 68.1 - brightWhite: 80.3 diff --git a/themes/kuroir-dark-03-amber.yaml b/themes/kuroir-dark-03-amber.yaml deleted file mode 100644 index 66bdd97a..00000000 --- a/themes/kuroir-dark-03-amber.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 03 Amber" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#232220" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Kuroir Light 03 Amber" - contrast: - fg: 78.1 - black: 16.5 - red: 45.4 - green: 45.1 - yellow: 45.3 - blue: 45.1 - magenta: 44.9 - cyan: 59.4 - white: 46 - brightBlack: 23.6 - brightRed: 58 - brightGreen: 57.6 - brightYellow: 57.9 - brightBlue: 57.8 - brightMagenta: 71.7 - brightCyan: 68 - brightWhite: 80.2 diff --git a/themes/kuroir-dark-04-goldenrod.yaml b/themes/kuroir-dark-04-goldenrod.yaml deleted file mode 100644 index 84d2c14f..00000000 --- a/themes/kuroir-dark-04-goldenrod.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 04 Goldenrod" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#23211F" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.2 - black: 16.6 - red: 45.5 - green: 45.2 - yellow: 45.4 - blue: 45.2 - magenta: 45 - cyan: 59.6 - white: 46.2 - brightBlack: 23.7 - brightRed: 58.1 - brightGreen: 57.8 - brightYellow: 58 - brightBlue: 57.9 - brightMagenta: 71.8 - brightCyan: 68.1 - brightWhite: 80.3 diff --git a/themes/kuroir-dark-06-chartreuse.yaml b/themes/kuroir-dark-06-chartreuse.yaml deleted file mode 100644 index e4504fd9..00000000 --- a/themes/kuroir-dark-06-chartreuse.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 06 Chartreuse" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#22221F" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.1 - black: 16.5 - red: 45.4 - green: 45.1 - yellow: 45.3 - blue: 45.1 - magenta: 44.9 - cyan: 59.5 - white: 46.1 - brightBlack: 23.6 - brightRed: 58.1 - brightGreen: 57.7 - brightYellow: 57.9 - brightBlue: 57.8 - brightMagenta: 71.7 - brightCyan: 68 - brightWhite: 80.2 diff --git a/themes/kuroir-dark-07-fern.yaml b/themes/kuroir-dark-07-fern.yaml deleted file mode 100644 index 22088ea8..00000000 --- a/themes/kuroir-dark-07-fern.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 07 Fern" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#212220" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Kuroir Light 07 Fern" - contrast: - fg: 78.1 - black: 16.5 - red: 45.4 - green: 45.1 - yellow: 45.3 - blue: 45.2 - magenta: 44.9 - cyan: 59.5 - white: 46.1 - brightBlack: 23.6 - brightRed: 58.1 - brightGreen: 57.7 - brightYellow: 58 - brightBlue: 57.8 - brightMagenta: 71.7 - brightCyan: 68.1 - brightWhite: 80.2 diff --git a/themes/kuroir-dark-08-emerald.yaml b/themes/kuroir-dark-08-emerald.yaml deleted file mode 100644 index daa4cf18..00000000 --- a/themes/kuroir-dark-08-emerald.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 08 Emerald" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#202220" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.2 - black: 16.6 - red: 45.4 - green: 45.2 - yellow: 45.4 - blue: 45.2 - magenta: 45 - cyan: 59.5 - white: 46.1 - brightBlack: 23.7 - brightRed: 58.1 - brightGreen: 57.7 - brightYellow: 58 - brightBlue: 57.9 - brightMagenta: 71.8 - brightCyan: 68.1 - brightWhite: 80.3 diff --git a/themes/kuroir-dark-09-jade.yaml b/themes/kuroir-dark-09-jade.yaml deleted file mode 100644 index 3d5e0fb1..00000000 --- a/themes/kuroir-dark-09-jade.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 09 Jade" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#202221" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Kuroir Light 09 Jade" - contrast: - fg: 78.1 - black: 16.6 - red: 45.4 - green: 45.1 - yellow: 45.4 - blue: 45.2 - magenta: 44.9 - cyan: 59.5 - white: 46.1 - brightBlack: 23.6 - brightRed: 58.1 - brightGreen: 57.7 - brightYellow: 58 - brightBlue: 57.9 - brightMagenta: 71.7 - brightCyan: 68.1 - brightWhite: 80.2 diff --git a/themes/kuroir-dark-11-aqua.yaml b/themes/kuroir-dark-11-aqua.yaml deleted file mode 100644 index 9ac99bc1..00000000 --- a/themes/kuroir-dark-11-aqua.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 11 Aqua" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#202222" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.1 - black: 16.6 - red: 45.4 - green: 45.1 - yellow: 45.3 - blue: 45.2 - magenta: 44.9 - cyan: 59.5 - white: 46.1 - brightBlack: 23.6 - brightRed: 58.1 - brightGreen: 57.7 - brightYellow: 58 - brightBlue: 57.9 - brightMagenta: 71.7 - brightCyan: 68.1 - brightWhite: 80.2 diff --git a/themes/kuroir-dark-14-cerulean.yaml b/themes/kuroir-dark-14-cerulean.yaml deleted file mode 100644 index 24dda8d5..00000000 --- a/themes/kuroir-dark-14-cerulean.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 14 Cerulean" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#202122" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.2 - black: 16.7 - red: 45.5 - green: 45.2 - yellow: 45.5 - blue: 45.3 - magenta: 45 - cyan: 59.6 - white: 46.2 - brightBlack: 23.7 - brightRed: 58.2 - brightGreen: 57.8 - brightYellow: 58.1 - brightBlue: 58 - brightMagenta: 71.8 - brightCyan: 68.2 - brightWhite: 80.3 diff --git a/themes/kuroir-dark-15-sky.yaml b/themes/kuroir-dark-15-sky.yaml deleted file mode 100644 index 0abbfa87..00000000 --- a/themes/kuroir-dark-15-sky.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 15 Sky" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#212122" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Kuroir Light 15 Sky" - contrast: - fg: 78.2 - black: 16.6 - red: 45.5 - green: 45.2 - yellow: 45.4 - blue: 45.2 - magenta: 45 - cyan: 59.6 - white: 46.2 - brightBlack: 23.7 - brightRed: 58.2 - brightGreen: 57.8 - brightYellow: 58.1 - brightBlue: 57.9 - brightMagenta: 71.8 - brightCyan: 68.1 - brightWhite: 80.3 diff --git a/themes/kuroir-dark-18-indigo.yaml b/themes/kuroir-dark-18-indigo.yaml deleted file mode 100644 index 20f3d3c1..00000000 --- a/themes/kuroir-dark-18-indigo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 18 Indigo" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#212022" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Kuroir Light 18 Indigo" - contrast: - fg: 78.3 - black: 16.7 - red: 45.6 - green: 45.3 - yellow: 45.5 - blue: 45.4 - magenta: 45.1 - cyan: 59.7 - white: 46.3 - brightBlack: 23.8 - brightRed: 58.3 - brightGreen: 57.9 - brightYellow: 58.2 - brightBlue: 58 - brightMagenta: 71.9 - brightCyan: 68.2 - brightWhite: 80.4 diff --git a/themes/kuroir-dark-20-amethyst.yaml b/themes/kuroir-dark-20-amethyst.yaml deleted file mode 100644 index 9e2c0d77..00000000 --- a/themes/kuroir-dark-20-amethyst.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 20 Amethyst" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#222122" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.2 - black: 16.6 - red: 45.5 - green: 45.2 - yellow: 45.4 - blue: 45.2 - magenta: 45 - cyan: 59.6 - white: 46.2 - brightBlack: 23.7 - brightRed: 58.1 - brightGreen: 57.8 - brightYellow: 58 - brightBlue: 57.9 - brightMagenta: 71.8 - brightCyan: 68.1 - brightWhite: 80.3 diff --git a/themes/kuroir-dark-21-magenta.yaml b/themes/kuroir-dark-21-magenta.yaml deleted file mode 100644 index 25edec89..00000000 --- a/themes/kuroir-dark-21-magenta.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 21 Magenta" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#222022" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.3 - black: 16.7 - red: 45.6 - green: 45.3 - yellow: 45.5 - blue: 45.3 - magenta: 45.1 - cyan: 59.7 - white: 46.3 - brightBlack: 23.8 - brightRed: 58.2 - brightGreen: 57.9 - brightYellow: 58.1 - brightBlue: 58 - brightMagenta: 71.9 - brightCyan: 68.2 - brightWhite: 80.4 diff --git a/themes/kuroir-dark-22-fuchsia.yaml b/themes/kuroir-dark-22-fuchsia.yaml deleted file mode 100644 index 85ddccd4..00000000 --- a/themes/kuroir-dark-22-fuchsia.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 22 Fuchsia" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#222121" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.2 - black: 16.6 - red: 45.5 - green: 45.2 - yellow: 45.4 - blue: 45.2 - magenta: 45 - cyan: 59.6 - white: 46.2 - brightBlack: 23.7 - brightRed: 58.1 - brightGreen: 57.8 - brightYellow: 58 - brightBlue: 57.9 - brightMagenta: 71.8 - brightCyan: 68.1 - brightWhite: 80.3 diff --git a/themes/kuroir-dark-23-rose.yaml b/themes/kuroir-dark-23-rose.yaml deleted file mode 100644 index adc859bd..00000000 --- a/themes/kuroir-dark-23-rose.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 23 Rose" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#232021" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Kuroir Light 23 Rose" - contrast: - fg: 78.3 - black: 16.7 - red: 45.6 - green: 45.3 - yellow: 45.5 - blue: 45.3 - magenta: 45.1 - cyan: 59.6 - white: 46.2 - brightBlack: 23.8 - brightRed: 58.2 - brightGreen: 57.8 - brightYellow: 58.1 - brightBlue: 58 - brightMagenta: 71.9 - brightCyan: 68.2 - brightWhite: 80.4 diff --git a/themes/kuroir-dark-24-coral.yaml b/themes/kuroir-dark-24-coral.yaml deleted file mode 100644 index 0fd41262..00000000 --- a/themes/kuroir-dark-24-coral.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Dark 24 Coral" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#222120" - fg: "#D4D4D4" - black: "#545D68" - red: "#F47067" - green: "#57AB5A" - yellow: "#C69026" - blue: "#539BF5" - magenta: "#B083F0" - cyan: "#39C5CF" - white: "#909DAB" - brightBlack: "#636E7B" - brightRed: "#FF938A" - brightGreen: "#6BC46D" - brightYellow: "#DAAA3F" - brightBlue: "#6CB6FF" - brightMagenta: "#DCBDFB" - brightCyan: "#56D4DD" - brightWhite: "#CDD9E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Kuroir Light 24 Coral" - contrast: - fg: 78.2 - black: 16.6 - red: 45.5 - green: 45.2 - yellow: 45.4 - blue: 45.2 - magenta: 45 - cyan: 59.6 - white: 46.2 - brightBlack: 23.7 - brightRed: 58.2 - brightGreen: 57.8 - brightYellow: 58 - brightBlue: 57.9 - brightMagenta: 71.8 - brightCyan: 68.1 - brightWhite: 80.3 diff --git a/themes/kuroir-light-03-amber.yaml b/themes/kuroir-light-03-amber.yaml deleted file mode 100644 index 796d9e56..00000000 --- a/themes/kuroir-light-03-amber.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Light 03 Amber" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#FEFDFC" - fg: "#000000" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Kuroir Dark 03 Amber" - contrast: - fg: 104.9 - black: 100.4 - red: 73.7 - green: 84.1 - yellow: 96.9 - blue: 73.8 - magenta: 73.2 - cyan: 72.7 - white: 70.5 - brightBlack: 80.7 - brightRed: 84.1 - brightGreen: 73.5 - brightYellow: 90.9 - brightBlue: 59.6 - brightMagenta: 58.2 - brightCyan: 62.2 - brightWhite: 56.1 diff --git a/themes/kuroir-light-07-fern.yaml b/themes/kuroir-light-07-fern.yaml deleted file mode 100644 index ec676f42..00000000 --- a/themes/kuroir-light-07-fern.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Light 07 Fern" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#FDFEFC" - fg: "#000000" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Kuroir Dark 07 Fern" - contrast: - fg: 105.2 - black: 100.7 - red: 74 - green: 84.4 - yellow: 97.2 - blue: 74.1 - magenta: 73.5 - cyan: 73 - white: 70.8 - brightBlack: 81 - brightRed: 84.4 - brightGreen: 73.8 - brightYellow: 91.2 - brightBlue: 59.9 - brightMagenta: 58.5 - brightCyan: 62.5 - brightWhite: 56.4 diff --git a/themes/kuroir-light-09-jade.yaml b/themes/kuroir-light-09-jade.yaml deleted file mode 100644 index 874ce053..00000000 --- a/themes/kuroir-light-09-jade.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Light 09 Jade" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#FDFEFD" - fg: "#000000" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Kuroir Dark 09 Jade" - contrast: - fg: 105.3 - black: 100.7 - red: 74 - green: 84.5 - yellow: 97.2 - blue: 74.2 - magenta: 73.5 - cyan: 73 - white: 70.8 - brightBlack: 81 - brightRed: 84.5 - brightGreen: 73.8 - brightYellow: 91.3 - brightBlue: 59.9 - brightMagenta: 58.5 - brightCyan: 62.6 - brightWhite: 56.4 diff --git a/themes/kuroir-light-12-teal.yaml b/themes/kuroir-light-12-teal.yaml deleted file mode 100644 index 7ceb9e47..00000000 --- a/themes/kuroir-light-12-teal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Light 12 Teal" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#FDFEFE" - fg: "#000000" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 105.3 - black: 100.8 - red: 74 - green: 84.5 - yellow: 97.2 - blue: 74.2 - magenta: 73.6 - cyan: 73.1 - white: 70.9 - brightBlack: 81.1 - brightRed: 84.5 - brightGreen: 73.9 - brightYellow: 91.3 - brightBlue: 60 - brightMagenta: 58.6 - brightCyan: 62.6 - brightWhite: 56.5 diff --git a/themes/kuroir-light-15-sky.yaml b/themes/kuroir-light-15-sky.yaml deleted file mode 100644 index 07edb561..00000000 --- a/themes/kuroir-light-15-sky.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Light 15 Sky" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#FDFDFF" - fg: "#000000" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Kuroir Dark 15 Sky" - contrast: - fg: 104.9 - black: 100.4 - red: 73.7 - green: 84.1 - yellow: 96.9 - blue: 73.8 - magenta: 73.2 - cyan: 72.7 - white: 70.5 - brightBlack: 80.7 - brightRed: 84.1 - brightGreen: 73.5 - brightYellow: 90.9 - brightBlue: 59.6 - brightMagenta: 58.2 - brightCyan: 62.2 - brightWhite: 56.1 diff --git a/themes/kuroir-light-18-indigo.yaml b/themes/kuroir-light-18-indigo.yaml deleted file mode 100644 index c5cba621..00000000 --- a/themes/kuroir-light-18-indigo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Light 18 Indigo" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#FDFDFE" - fg: "#000000" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Kuroir Dark 18 Indigo" - contrast: - fg: 104.9 - black: 100.3 - red: 73.6 - green: 84.1 - yellow: 96.8 - blue: 73.8 - magenta: 73.2 - cyan: 72.6 - white: 70.4 - brightBlack: 80.6 - brightRed: 84.1 - brightGreen: 73.4 - brightYellow: 90.9 - brightBlue: 59.6 - brightMagenta: 58.2 - brightCyan: 62.2 - brightWhite: 56 diff --git a/themes/kuroir-light-19-violet.yaml b/themes/kuroir-light-19-violet.yaml deleted file mode 100644 index 4fdbd2ec..00000000 --- a/themes/kuroir-light-19-violet.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Light 19 Violet" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#FEFDFF" - fg: "#000000" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 105.1 - black: 100.5 - red: 73.8 - green: 84.3 - yellow: 97 - blue: 74 - magenta: 73.3 - cyan: 72.8 - white: 70.6 - brightBlack: 80.8 - brightRed: 84.2 - brightGreen: 73.6 - brightYellow: 91.1 - brightBlue: 59.7 - brightMagenta: 58.3 - brightCyan: 62.4 - brightWhite: 56.2 diff --git a/themes/kuroir-light-23-rose.yaml b/themes/kuroir-light-23-rose.yaml deleted file mode 100644 index 666dc18e..00000000 --- a/themes/kuroir-light-23-rose.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Light 23 Rose" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#FFFDFD" - fg: "#000000" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Kuroir Dark 23 Rose" - contrast: - fg: 105.1 - black: 100.5 - red: 73.8 - green: 84.3 - yellow: 97 - blue: 74 - magenta: 73.4 - cyan: 72.8 - white: 70.7 - brightBlack: 80.8 - brightRed: 84.3 - brightGreen: 73.7 - brightYellow: 91.1 - brightBlue: 59.8 - brightMagenta: 58.4 - brightCyan: 62.4 - brightWhite: 56.2 diff --git a/themes/kuroir-light-24-coral.yaml b/themes/kuroir-light-24-coral.yaml deleted file mode 100644 index 3d0da81c..00000000 --- a/themes/kuroir-light-24-coral.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kuroir Light 24 Coral" -source: - marketplace_id: "6o8.kuroir-github-vscode-theme" - version: "25.1.11" - installs: 235 - rating: 5 - ratings: 4 - author: "6o8" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=6o8.kuroir-github-vscode-theme" -colors: - bg: "#FFFDFC" - fg: "#000000" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Kuroir Dark 24 Coral" - contrast: - fg: 105.1 - black: 100.5 - red: 73.8 - green: 84.3 - yellow: 97 - blue: 74 - magenta: 73.3 - cyan: 72.8 - white: 70.6 - brightBlack: 80.8 - brightRed: 84.2 - brightGreen: 73.6 - brightYellow: 91.1 - brightBlue: 59.7 - brightMagenta: 58.3 - brightCyan: 62.4 - brightWhite: 56.2 diff --git a/themes/kyanite.yaml b/themes/kyanite.yaml deleted file mode 100644 index d09adf6a..00000000 --- a/themes/kyanite.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kyanite" -source: - marketplace_id: "NyctibiusVII.nyctibiusvii-theme" - version: "1.1.4" - installs: 254 - rating: 5 - ratings: 1 - author: "NyctibiusVII" - repo: "https://github.com/NyctibiusVII/nyctibiusvii-theme" - url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.nyctibiusvii-theme" -colors: - bg: "#071321" - fg: "#737EA1" - black: "#414141" - red: "#C93838" - green: "#01AB6A" - yellow: "#D3C554" - blue: "#0C5CB4" - magenta: "#BC3FBC" - cyan: "#41CCEA" - white: "#DEDEDE" - brightBlack: "#666666" - brightRed: "#FF5555" - brightGreen: "#00E88F" - brightYellow: "#F0E484" - brightBlue: "#238BFF" - brightMagenta: "#D670D6" - brightCyan: "#8BE9FD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 253 - pair: null - contrast: - fg: 33.6 - black: 8.1 - red: 27 - green: 45.3 - yellow: 69.7 - blue: 19.4 - magenta: 30.1 - cyan: 66 - white: 86 - brightBlack: 22.4 - brightRed: 43.7 - brightGreen: 75.2 - brightYellow: 88.2 - brightBlue: 40.4 - brightMagenta: 45.7 - brightCyan: 84.3 - brightWhite: 107.2 diff --git a/themes/kybern.yaml b/themes/kybern.yaml index 61c79ff4..ecd78687 100644 --- a/themes/kybern.yaml +++ b/themes/kybern.yaml @@ -1,4 +1,4 @@ -name: "Kybern" +name: "kybern" source: marketplace_id: "EnzoMourany.kybern" version: "0.1.0" @@ -8,6 +8,7 @@ source: author: "Enzo Mourany" repo: "https://github.com/enzo-mourany/kybern-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=EnzoMourany.kybern" + formats: null colors: bg: "#0B0E14" fg: "#FFFFFF" diff --git a/themes/kybik-dark.yaml b/themes/kybik-dark.yaml index 27aace4a..c54117d5 100644 --- a/themes/kybik-dark.yaml +++ b/themes/kybik-dark.yaml @@ -8,6 +8,7 @@ source: author: "Kybik" repo: "https://github.com/Kybikcube/Kybik" url: "https://marketplace.visualstudio.com/items?itemName=Kybik.kybik" + formats: null colors: bg: "#14151B" fg: "#A9A9A9" diff --git a/themes/kybik.yaml b/themes/kybik.yaml index 855720e0..f18fafcf 100644 --- a/themes/kybik.yaml +++ b/themes/kybik.yaml @@ -8,6 +8,7 @@ source: author: "Kybik" repo: "https://github.com/Kybikcube/Kybik" url: "https://marketplace.visualstudio.com/items?itemName=Kybik.kybik" + formats: null colors: bg: "#1C1E26" fg: "#A9A9A9" diff --git a/themes/kyngo-s-theme.yaml b/themes/kyngo-s-theme.yaml index 8c5f2e5b..2289aea3 100644 --- a/themes/kyngo-s-theme.yaml +++ b/themes/kyngo-s-theme.yaml @@ -8,6 +8,7 @@ source: author: "Kyngo" repo: "https://github.com/Kyngo/functional-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=kyngo.functional-dark" + formats: null colors: bg: "#23272E" fg: "#D4D4D4" diff --git a/themes/kyojuro-rengoku.yaml b/themes/kyojuro-rengoku.yaml deleted file mode 100644 index 8f7043f3..00000000 --- a/themes/kyojuro-rengoku.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Kyojuro Rengoku" -source: - marketplace_id: "devLocifer.hashira-code-theme" - version: "0.0.1" - installs: 739 - rating: 5 - ratings: 1 - author: "devLocifer" - repo: "https://github.com/diazdjul19/hashira-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" -colors: - bg: "#282A36" - fg: "#F8F8F2" - black: "#282A36" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#8BE9FD" - magenta: "#BD93F9" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF5555" - brightGreen: "#50FA7B" - brightYellow: "#F1FA8C" - brightBlue: "#8BE9FD" - brightMagenta: "#BD93F9" - brightCyan: "#8BE9FD" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "green" - hue: 278 - pair: null - contrast: - fg: 99 - black: 0 - red: 40.4 - green: 81.9 - yellow: 95.6 - blue: 81 - magenta: 50.7 - cyan: 81 - white: 99 - brightBlack: 25.1 - brightRed: 40.4 - brightGreen: 81.9 - brightYellow: 95.6 - brightBlue: 81 - brightMagenta: 50.7 - brightCyan: 81 - brightWhite: 99 diff --git a/themes/kyorazo-dark-theme.yaml b/themes/kyorazo-dark-theme.yaml deleted file mode 100644 index a935e9e2..00000000 --- a/themes/kyorazo-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "kyorazo_dark_theme" -source: - marketplace_id: "WilliamKyorazo.kyorazo-theme" - version: "1.0.2" - installs: 4876 - rating: 0 - ratings: 0 - author: "William Kyorazo" - repo: "https://github.com/bywilliams/kyorazo_theme_vscode" - url: "https://marketplace.visualstudio.com/items?itemName=WilliamKyorazo.kyorazo-theme" -colors: - bg: "#1C1C1D" - fg: "#FFFFFF" - black: "#1B2430" - red: "#CD3131" - green: "#0DBC79" - yellow: "#B5B4D5" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#FFA500" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106.3 - black: 0 - red: 26.1 - green: 52.4 - yellow: 61.8 - blue: 26.8 - magenta: 29.2 - cyan: 47 - white: 89.4 - brightBlack: 21.5 - brightRed: 38 - brightGreen: 63 - brightYellow: 63.1 - brightBlue: 39.4 - brightMagenta: 44.8 - brightCyan: 54.8 - brightWhite: 89.4 diff --git a/themes/lackluster-dark.yaml b/themes/lackluster-dark.yaml deleted file mode 100644 index f5cbcc44..00000000 --- a/themes/lackluster-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lackluster Dark" -source: - marketplace_id: "CoderSauce.lackluster-theme" - version: "1.0.0" - installs: 217 - rating: 0 - ratings: 0 - author: "CoderSauce" - repo: "https://github.com/slugbyte/lackluster.nvim" - url: "https://marketplace.visualstudio.com/items?itemName=CoderSauce.lackluster-theme" -colors: - bg: "#191919" - fg: "#7A7A7A" - black: "#000000" - red: "#D70000" - green: "#789978" - yellow: "#ABAB77" - blue: "#7788AA" - magenta: "#708090" - cyan: "#DEEEED" - white: "#CCCCCC" - brightBlack: "#444444" - brightRed: "#D70000" - brightGreen: "#789978" - brightYellow: "#ABAB77" - brightBlue: "#7788AA" - brightMagenta: "#708090" - brightCyan: "#DEEEED" - brightWhite: "#DDDDDD" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 30.7 - black: 0 - red: 26.5 - green: 41.7 - yellow: 53.9 - blue: 37.2 - magenta: 32.7 - cyan: 93.4 - white: 74.4 - brightBlack: 8.6 - brightRed: 26.5 - brightGreen: 41.7 - brightYellow: 53.9 - brightBlue: 37.2 - brightMagenta: 32.7 - brightCyan: 93.4 - brightWhite: 84.8 diff --git a/themes/lackluster.yaml b/themes/lackluster.yaml deleted file mode 100644 index 45141a81..00000000 --- a/themes/lackluster.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lackluster" -source: - marketplace_id: "CoderSauce.lackluster-theme" - version: "1.0.0" - installs: 217 - rating: 0 - ratings: 0 - author: "CoderSauce" - repo: "https://github.com/slugbyte/lackluster.nvim" - url: "https://marketplace.visualstudio.com/items?itemName=CoderSauce.lackluster-theme" -colors: - bg: "#191919" - fg: "#CCCCCC" - black: "#000000" - red: "#D70000" - green: "#789978" - yellow: "#ABAB77" - blue: "#7788AA" - magenta: "#708090" - cyan: "#DEEEED" - white: "#CCCCCC" - brightBlack: "#444444" - brightRed: "#D70000" - brightGreen: "#789978" - brightYellow: "#ABAB77" - brightBlue: "#7788AA" - brightMagenta: "#708090" - brightCyan: "#DEEEED" - brightWhite: "#DDDDDD" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 74.4 - black: 0 - red: 26.5 - green: 41.7 - yellow: 53.9 - blue: 37.2 - magenta: 32.7 - cyan: 93.4 - white: 74.4 - brightBlack: 8.6 - brightRed: 26.5 - brightGreen: 41.7 - brightYellow: 53.9 - brightBlue: 37.2 - brightMagenta: 32.7 - brightCyan: 93.4 - brightWhite: 84.8 diff --git a/themes/ladyluck-color-theme.yaml b/themes/ladyluck-color-theme.yaml index 7d1a1a36..9700953e 100644 --- a/themes/ladyluck-color-theme.yaml +++ b/themes/ladyluck-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "ILadyLuckI" repo: "https://github.com/ILadyLuckI/ladyluck-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=ILadyLuckI.ladyluck-color-theme" + formats: null colors: bg: "#1D0A1D" fg: "#F5F5F5" diff --git a/themes/lanten-color-theme-dark.yaml b/themes/lanten-color-theme-dark.yaml index 444dd820..92458217 100644 --- a/themes/lanten-color-theme-dark.yaml +++ b/themes/lanten-color-theme-dark.yaml @@ -8,6 +8,7 @@ source: author: "lanten" repo: "https://github.com/lanten/vscode-lanten-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=lanten.lanten-color-theme" + formats: null colors: bg: "#232933" fg: "#D8DEE9" diff --git a/themes/lapis-dark.yaml b/themes/lapis-dark.yaml index 89d38320..713eeee2 100644 --- a/themes/lapis-dark.yaml +++ b/themes/lapis-dark.yaml @@ -8,6 +8,7 @@ source: author: "Alex Barnett" repo: "https://github.com/aslbarnett/lapis-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AlexBarnett.lapis-vscode" + formats: null colors: bg: "#15181E" fg: "#D6E2FF" diff --git a/themes/lapis-light.yaml b/themes/lapis-light.yaml index bb20a654..a993a2b0 100644 --- a/themes/lapis-light.yaml +++ b/themes/lapis-light.yaml @@ -8,6 +8,7 @@ source: author: "Alex Barnett" repo: "https://github.com/aslbarnett/lapis-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AlexBarnett.lapis-vscode" + formats: null colors: bg: "#F5F8FF" fg: "#2D3953" diff --git a/themes/lapis.yaml b/themes/lapis.yaml index 7c238d20..8f070d2c 100644 --- a/themes/lapis.yaml +++ b/themes/lapis.yaml @@ -8,6 +8,7 @@ source: author: "Alex Barnett" repo: "https://github.com/aslbarnett/lapis-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AlexBarnett.lapis-vscode" + formats: null colors: bg: "#1B1F27" fg: "#D6E2FF" diff --git a/themes/lapres99.yaml b/themes/lapres99.yaml index c8dfef67..2e3a84f6 100644 --- a/themes/lapres99.yaml +++ b/themes/lapres99.yaml @@ -8,6 +8,7 @@ source: author: "pigeoncodes" repo: "https://github.com/ppigeoncodes/Lapres" url: "https://marketplace.visualstudio.com/items?itemName=pigeoncodes.lapres" + formats: null colors: bg: "#112B3C" fg: "#FFFFFF" diff --git a/themes/laracasts-contrast.yaml b/themes/laracasts-contrast.yaml deleted file mode 100644 index 06efb86a..00000000 --- a/themes/laracasts-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "laracasts-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#292D33" - fg: "#C0CCDB" - black: "#343941" - red: "#BA0E2E" - green: "#00B1B3" - yellow: "#EF6733" - blue: "#FFFFFF" - magenta: "#00B1B3" - cyan: "#EF6733" - white: "#D0D9E4" - brightBlack: "#565F6C" - brightRed: "#F03E5F" - brightGreen: "#1AFCFF" - brightYellow: "#F6AD92" - brightBlue: "#FFFFFF" - brightMagenta: "#1AFCFF" - brightCyan: "#F6AD92" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 258 - pair: null - contrast: - fg: 70.5 - black: 0 - red: 17.1 - green: 46.7 - yellow: 39.5 - blue: 103.5 - magenta: 46.7 - cyan: 39.5 - white: 78.5 - brightBlack: 15.4 - brightRed: 33.4 - brightGreen: 86.3 - brightYellow: 63.3 - brightBlue: 103.5 - brightMagenta: 86.3 - brightCyan: 63.3 - brightWhite: 103.5 diff --git a/themes/laracasts-light.yaml b/themes/laracasts-light.yaml deleted file mode 100644 index c3c133b2..00000000 --- a/themes/laracasts-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "laracasts-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#4D545D" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#00B1B3" - yellow: "#EF6733" - blue: "#4D545D" - magenta: "#00B1B3" - cyan: "#EF6733" - white: "#59616B" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#1AFCFF" - brightYellow: "#F6AD92" - brightBlue: "#7D8793" - brightMagenta: "#1AFCFF" - brightCyan: "#F6AD92" - brightWhite: "#7D8793" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 86.6 - black: 0 - red: 80.3 - green: 50.8 - yellow: 57.9 - blue: 86.6 - magenta: 50.8 - cyan: 57.9 - white: 81.3 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 13.2 - brightYellow: 34.9 - brightBlue: 64.1 - brightMagenta: 13.2 - brightCyan: 34.9 - brightWhite: 64.1 diff --git a/themes/laracasts.yaml b/themes/laracasts.yaml deleted file mode 100644 index 0f2324ed..00000000 --- a/themes/laracasts.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "laracasts" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#4D545D" - fg: "#C0CCDB" - black: "#59616B" - red: "#BA0E2E" - green: "#00B1B3" - yellow: "#EF6733" - blue: "#FFFFFF" - magenta: "#00B1B3" - cyan: "#EF6733" - white: "#D0D9E4" - brightBlack: "#7D8793" - brightRed: "#F03E5F" - brightGreen: "#1AFCFF" - brightYellow: "#F6AD92" - brightBlue: "#FFFFFF" - brightMagenta: "#1AFCFF" - brightCyan: "#F6AD92" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 255 - pair: null - contrast: - fg: 58.4 - black: 0 - red: 0 - green: 34.6 - yellow: 27.4 - blue: 91.4 - magenta: 34.6 - cyan: 27.4 - white: 66.4 - brightBlack: 21.1 - brightRed: 21.3 - brightGreen: 74.2 - brightYellow: 51.2 - brightBlue: 91.4 - brightMagenta: 74.2 - brightCyan: 51.2 - brightWhite: 91.4 diff --git a/themes/laradocs.yaml b/themes/laradocs.yaml index 818a2ef3..79126b62 100644 --- a/themes/laradocs.yaml +++ b/themes/laradocs.yaml @@ -8,6 +8,7 @@ source: author: "Goudmane Oualid" repo: "https://github.com/goudmane/LaraDocs" url: "https://marketplace.visualstudio.com/items?itemName=ogoudmane.laradocs-vscode" + formats: null colors: bg: "#252A37" fg: "#A2AABC" diff --git a/themes/laravel-contrast.yaml b/themes/laravel-contrast.yaml deleted file mode 100644 index a17fa91d..00000000 --- a/themes/laravel-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "laravel-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#0D0D0D" - red: "#BA0E2E" - green: "#FFC48C" - yellow: "#FC6B0A" - blue: "#FC580C" - magenta: "#FFA927" - cyan: "#FFC48C" - white: "#FFFFFF" - brightBlack: "#333333" - brightRed: "#F03E5F" - brightGreen: "#FFF8F2" - brightYellow: "#FDA86F" - brightBlue: "#FD9D71" - brightMagenta: "#FFD28D" - brightCyan: "#FFF8F2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 21.5 - green: 77.8 - yellow: 47.4 - blue: 43.6 - magenta: 66.2 - cyan: 77.8 - white: 107.9 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 104 - brightYellow: 66.3 - brightBlue: 62.6 - brightMagenta: 83.5 - brightCyan: 104 - brightWhite: 107.9 diff --git a/themes/laravel-light.yaml b/themes/laravel-light.yaml deleted file mode 100644 index fedafb9c..00000000 --- a/themes/laravel-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "laravel-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#FFC48C" - yellow: "#FC6B0A" - blue: "#FC580C" - magenta: "#FFA927" - cyan: "#FFC48C" - white: "#515151" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#FFF8F2" - brightYellow: "#FDA86F" - brightBlue: "#FD9D71" - brightMagenta: "#FFD28D" - brightCyan: "#FFF8F2" - brightWhite: "#777777" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 80.3 - green: 25.3 - yellow: 54.4 - blue: 58.1 - magenta: 36.3 - cyan: 25.3 - white: 87.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 0 - brightYellow: 36.2 - brightBlue: 39.7 - brightMagenta: 19.9 - brightCyan: 0 - brightWhite: 71.1 diff --git a/themes/laravel.yaml b/themes/laravel.yaml deleted file mode 100644 index 974260e3..00000000 --- a/themes/laravel.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "laravel" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2E2C2B" - fg: "#DEDEDE" - black: "#3B3937" - red: "#BA0E2E" - green: "#FFC48C" - yellow: "#FC6B0A" - blue: "#FC580C" - magenta: "#FFA927" - cyan: "#FFC48C" - white: "#EBEBEB" - brightBlack: "#635E5C" - brightRed: "#F03E5F" - brightGreen: "#FFF8F2" - brightYellow: "#FDA86F" - brightBlue: "#FD9D71" - brightMagenta: "#FFD28D" - brightCyan: "#FFF8F2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82.3 - black: 0 - red: 17.2 - green: 73.5 - yellow: 43.1 - blue: 39.3 - magenta: 61.9 - cyan: 73.5 - white: 90.5 - brightBlack: 15.8 - brightRed: 33.5 - brightGreen: 99.7 - brightYellow: 62 - brightBlue: 58.3 - brightMagenta: 79.2 - brightCyan: 99.7 - brightWhite: 103.6 diff --git a/themes/lascavo-classic-contrast.yaml b/themes/lascavo-classic-contrast.yaml index 490b0191..3a1a9bc1 100644 --- a/themes/lascavo-classic-contrast.yaml +++ b/themes/lascavo-classic-contrast.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "mdrsh.lascavo" version: "0.2.5" installs: 146 + rating: 0 + ratings: 0 author: "mdrsh" repo: "https://github.com/mdrsh/lascavo-theme" url: "https://marketplace.visualstudio.com/items?itemName=mdrsh.lascavo" + formats: null colors: bg: "#202022" fg: "#FFFFFF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 105.7 black: 0 diff --git a/themes/lascavo-classic.yaml b/themes/lascavo-classic.yaml index 5d147e43..a70c522f 100644 --- a/themes/lascavo-classic.yaml +++ b/themes/lascavo-classic.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "mdrsh.lascavo" version: "0.2.5" installs: 146 + rating: 0 + ratings: 0 author: "mdrsh" repo: "https://github.com/mdrsh/lascavo-theme" url: "https://marketplace.visualstudio.com/items?itemName=mdrsh.lascavo" + formats: null colors: bg: "#202022" fg: "#FFFFFF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 105.7 black: 0 diff --git a/themes/lascavo-cold.yaml b/themes/lascavo-cold.yaml index ef803c82..160c2b40 100644 --- a/themes/lascavo-cold.yaml +++ b/themes/lascavo-cold.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "mdrsh.lascavo" version: "0.2.5" installs: 146 + rating: 0 + ratings: 0 author: "mdrsh" repo: "https://github.com/mdrsh/lascavo-theme" url: "https://marketplace.visualstudio.com/items?itemName=mdrsh.lascavo" + formats: null colors: bg: "#20272F" fg: "#FFFFFF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 252 + pair: null contrast: fg: 104.7 black: 0 diff --git a/themes/laserkai.yaml b/themes/laserkai.yaml index ebe98e1a..ad86366d 100644 --- a/themes/laserkai.yaml +++ b/themes/laserkai.yaml @@ -2,12 +2,13 @@ name: "LaserKai" source: marketplace_id: "itsmelion.laserkai" version: "1.4.3" - installs: 1936 + installs: 1937 rating: 5 ratings: 1 author: "Christhopher Lion" repo: "https://github.com/itsmelion/laserwave" url: "https://marketplace.visualstudio.com/items?itemName=itsmelion.laserkai" + formats: null colors: bg: "#222228" fg: "#F7F1FF" diff --git a/themes/late-night.yaml b/themes/late-night.yaml index a85c02b3..89fe8447 100644 --- a/themes/late-night.yaml +++ b/themes/late-night.yaml @@ -8,6 +8,7 @@ source: author: "Özgür Güneş" repo: "https://github.com/ozgurgunes/vscode-late-night-theme" url: "https://marketplace.visualstudio.com/items?itemName=ozgurgunes.vscode-late-night-theme" + formats: null colors: bg: "#1E1E1E" fg: "#D5D5D5" diff --git a/themes/lauds.yaml b/themes/lauds.yaml deleted file mode 100644 index 3c0149d8..00000000 --- a/themes/lauds.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lauds" -source: - marketplace_id: "rivethorn.compline" - version: "1.0.1" - installs: 548 - rating: 5 - ratings: 1 - author: "Rivethorn" - repo: "https://github.com/jblais493/compline" - url: "https://marketplace.visualstudio.com/items?itemName=rivethorn.compline" -colors: - bg: "#F0EFEB" - fg: "#1A1D21" - black: "#5F5C58" - red: "#8B6666" - green: "#5A6B5A" - yellow: "#8B7E52" - blue: "#5A6B7A" - magenta: "#8B7E52" - cyan: "#64757D" - white: "#7D7A75" - brightBlack: "#9B9894" - brightRed: "#8B6666" - brightGreen: "#5A6B5A" - brightYellow: "#8B7E52" - brightBlue: "#5A6B7A" - brightMagenta: "#8B7E52" - brightCyan: "#64757D" - brightWhite: "#2D2A27" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 94.3 - black: 73.3 - red: 65.1 - green: 69 - yellow: 58 - blue: 67.9 - magenta: 58 - cyan: 63.7 - white: 60 - brightBlack: 45.4 - brightRed: 65.1 - brightGreen: 69 - brightYellow: 58 - brightBlue: 67.9 - brightMagenta: 58 - brightCyan: 63.7 - brightWhite: 91.5 diff --git a/themes/lavalink.yaml b/themes/lavalink.yaml index 59763b96..3badb130 100644 --- a/themes/lavalink.yaml +++ b/themes/lavalink.yaml @@ -8,6 +8,7 @@ source: author: "iwin siju" repo: "https://github.com/XOUT1/Lavalink-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=iwinsiju.lavalink-color-theme" + formats: null colors: bg: "#03161D" fg: "#EAEAEA" diff --git a/themes/lavanda.yaml b/themes/lavanda.yaml deleted file mode 100644 index d3251c2c..00000000 --- a/themes/lavanda.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lavanda" -source: - marketplace_id: "TheodorLundin.lavanda-color-theme" - version: "1.1.0" - installs: 138 - rating: 5 - ratings: 1 - author: "Theodor Lundin" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=TheodorLundin.lavanda-color-theme" -colors: - bg: "#191C2A" - fg: "#AAAAAA" - black: "#000000" - red: "#DB5355" - green: "#7EEF8C" - yellow: "#FEF376" - blue: "#5599FF" - magenta: "#D90E80" - cyan: "#07C1D8" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#FE6D6F" - brightGreen: "#B7FFC0" - brightYellow: "#FFFABF" - brightBlue: "#66A3FF" - brightMagenta: "#E64CA2" - brightCyan: "#0DE4FF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "red" - hue: 275 - pair: null - contrast: - fg: 54.6 - black: 0 - red: 34.4 - green: 81 - yellow: 96 - blue: 45.9 - magenta: 28.6 - cyan: 58.3 - white: 89.3 - brightBlack: 21.4 - brightRed: 47.7 - brightGreen: 95.1 - brightYellow: 101.2 - brightBlue: 50.6 - brightMagenta: 38 - brightCyan: 76.9 - brightWhite: 89.3 diff --git a/themes/lavender-dark-theme.yaml b/themes/lavender-dark-theme.yaml deleted file mode 100644 index bad33338..00000000 --- a/themes/lavender-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lavender Dark Theme" -source: - marketplace_id: "LavenderTheme.lavender-code-theme" - version: "1.0.1" - installs: 1592 - rating: 5 - ratings: 1 - author: "Ademir Silva" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=LavenderTheme.lavender-code-theme" -colors: - bg: "#221B28" - fg: "#D4D4D4" - black: "#454545" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 309 - pair: "Lavender Light theme" - contrast: - fg: 78.7 - black: 8.4 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.8 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.6 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/lavender-light-theme.yaml b/themes/lavender-light-theme.yaml deleted file mode 100644 index ef1bb325..00000000 --- a/themes/lavender-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lavender Light theme" -source: - marketplace_id: "LavenderTheme.lavender-code-theme" - version: "1.0.1" - installs: 1592 - rating: 5 - ratings: 1 - author: "Ademir Silva" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=LavenderTheme.lavender-code-theme" -colors: - bg: "#F9F7FB" - fg: "#6B6B6B" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Lavender Dark Theme" - contrast: - fg: 72.2 - black: 101.7 - red: 69.6 - green: 44.9 - yellow: 53.6 - blue: 81.7 - magenta: 70.2 - cyan: 56.2 - white: 81.6 - brightBlack: 74.4 - brightRed: 69.6 - brightGreen: 36.6 - brightYellow: 36.6 - brightBlue: 81.7 - brightMagenta: 70.2 - brightCyan: 56.2 - brightWhite: 44.1 diff --git a/themes/lavender-light.yaml b/themes/lavender-light.yaml deleted file mode 100644 index 2524c301..00000000 --- a/themes/lavender-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "lavender-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#29222E" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#A29DFA" - yellow: "#B657FF" - blue: "#F5B0EF" - magenta: "#8E6DA6" - cyan: "#8E69C9" - white: "#362D3D" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#FEFEFF" - brightYellow: "#E2BDFF" - brightBlue: "#FFFFFF" - brightMagenta: "#BFACCD" - brightCyan: "#C7B4E4" - brightWhite: "#5D4D69" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 102.3 - black: 0 - red: 80.3 - green: 47.2 - yellow: 63.1 - blue: 30.3 - magenta: 69.6 - cyan: 68.7 - white: 99.4 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 0 - brightYellow: 27.7 - brightBlue: 0 - brightMagenta: 41.1 - brightCyan: 36.1 - brightWhite: 86.7 diff --git a/themes/lavender.yaml b/themes/lavender.yaml deleted file mode 100644 index 06855442..00000000 --- a/themes/lavender.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "lavender" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#29222E" - fg: "#E0CEED" - black: "#362D3D" - red: "#BA0E2E" - green: "#A29DFA" - yellow: "#B657FF" - blue: "#F5B0EF" - magenta: "#8E6DA6" - cyan: "#8E69C9" - white: "#ECE1F4" - brightBlack: "#5D4D69" - brightRed: "#F03E5F" - brightGreen: "#FEFEFF" - brightYellow: "#E2BDFF" - brightBlue: "#FFFFFF" - brightMagenta: "#BFACCD" - brightCyan: "#C7B4E4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 311 - pair: null - contrast: - fg: 77.9 - black: 0 - red: 18.6 - green: 51.9 - yellow: 35.7 - blue: 69.6 - magenta: 29.2 - cyan: 30.1 - white: 88.1 - brightBlack: 12.5 - brightRed: 34.9 - brightGreen: 104.4 - brightYellow: 72.3 - brightBlue: 105 - brightMagenta: 58.3 - brightCyan: 63.6 - brightWhite: 105 diff --git a/themes/lazuli.yaml b/themes/lazuli.yaml index f1eddc0d..f5669f7c 100644 --- a/themes/lazuli.yaml +++ b/themes/lazuli.yaml @@ -8,6 +8,7 @@ source: author: "Ian Gaunt" repo: "https://github.com/i9nn/lazuli" url: "https://marketplace.visualstudio.com/items?itemName=IanGaunt.lazuli" + formats: null colors: bg: "#1D252C" fg: "#6B8598" diff --git a/themes/lazy-yellow-lemon.yaml b/themes/lazy-yellow-lemon.yaml index e5156de2..b3d5bdd2 100644 --- a/themes/lazy-yellow-lemon.yaml +++ b/themes/lazy-yellow-lemon.yaml @@ -1,4 +1,4 @@ -name: "lazy yellow lemon" +name: "Lazy Yellow Lemon" source: marketplace_id: "arnorhs.lazy-yellow-lemon" version: "0.0.2" @@ -8,6 +8,7 @@ source: author: "Arnor Heidar Sigurdsson" repo: "https://github.com/arnorhs/lazy-yellow-lemon" url: "https://marketplace.visualstudio.com/items?itemName=arnorhs.lazy-yellow-lemon" + formats: null colors: bg: "#FFFCD2" fg: "#000000" diff --git a/themes/lazygreed-theme.yaml b/themes/lazygreed-theme.yaml index 7815ab6b..d91c4674 100644 --- a/themes/lazygreed-theme.yaml +++ b/themes/lazygreed-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "LazyGreed.lazygreed-theme" version: "0.0.9" installs: 18 + rating: 0 + ratings: 0 author: "LazyGreed" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LazyGreed.lazygreed-theme" + formats: null colors: bg: "#191921" fg: "#FFFFFF" diff --git a/themes/lazzaretti-plenatech.yaml b/themes/lazzaretti-plenatech.yaml deleted file mode 100644 index e0fdf64f..00000000 --- a/themes/lazzaretti-plenatech.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lazzaretti Plenatech 💟" -source: - marketplace_id: "IgorLazzaretti.lazzaretti-s-vscode-themes" - version: "0.0.2" - installs: 37 - rating: 0 - ratings: 0 - author: "Igor Lazzaretti" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=IgorLazzaretti.lazzaretti-s-vscode-themes" -colors: - bg: "#000000" - fg: "#B390FF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 52.8 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/lazzaretti-win11.yaml b/themes/lazzaretti-win11.yaml deleted file mode 100644 index 8b27a3db..00000000 --- a/themes/lazzaretti-win11.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lazzaretti Win11 🪟" -source: - marketplace_id: "IgorLazzaretti.lazzaretti-s-vscode-themes" - version: "0.0.2" - installs: 37 - rating: 0 - ratings: 0 - author: "Igor Lazzaretti" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=IgorLazzaretti.lazzaretti-s-vscode-themes" -colors: - bg: "#13141D" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 280 - pair: null - contrast: - fg: 79.7 - black: 0 - red: 26.9 - green: 53.2 - yellow: 85.8 - blue: 27.6 - magenta: 30 - cyan: 47.8 - white: 90.2 - brightBlack: 22.3 - brightRed: 38.8 - brightGreen: 63.7 - brightYellow: 95.8 - brightBlue: 40.2 - brightMagenta: 45.6 - brightCyan: 55.6 - brightWhite: 90.2 diff --git a/themes/lbb-builder-dark.yaml b/themes/lbb-builder-dark.yaml index da281c45..cf27025a 100644 --- a/themes/lbb-builder-dark.yaml +++ b/themes/lbb-builder-dark.yaml @@ -3,9 +3,14 @@ source: marketplace_id: "LifeBusinessBuilders.lbb-vsc-theme" version: "1.1.4" installs: 12 + rating: 0 + ratings: 0 author: "LifeBusiness Builders" repo: "https://github.com/LifeBusinessBuilders/lbb-vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=LifeBusinessBuilders.lbb-vsc-theme" + formats: + iterm2: "https://raw.githubusercontent.com/LifeBusinessBuilders/lbb-vsc-theme/main/extras/iterm2/LBB Builder Dark.itermcolors" + windows-terminal: "https://raw.githubusercontent.com/LifeBusinessBuilders/lbb-vsc-theme/main/extras/windows-terminal/schemes.json" colors: bg: "#1E1E2E" fg: "#D9E0EE" diff --git a/themes/lbb-builder-light.yaml b/themes/lbb-builder-light.yaml index 0dd99539..b06115d1 100644 --- a/themes/lbb-builder-light.yaml +++ b/themes/lbb-builder-light.yaml @@ -3,9 +3,14 @@ source: marketplace_id: "LifeBusinessBuilders.lbb-vsc-theme" version: "1.1.4" installs: 12 + rating: 0 + ratings: 0 author: "LifeBusiness Builders" repo: "https://github.com/LifeBusinessBuilders/lbb-vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=LifeBusinessBuilders.lbb-vsc-theme" + formats: + iterm2: "https://raw.githubusercontent.com/LifeBusinessBuilders/lbb-vsc-theme/main/extras/iterm2/LBB Builder Dark.itermcolors" + windows-terminal: "https://raw.githubusercontent.com/LifeBusinessBuilders/lbb-vsc-theme/main/extras/windows-terminal/schemes.json" colors: bg: "#F7F8FC" fg: "#2B2D33" diff --git a/themes/lc.yaml b/themes/lc.yaml index bdc82616..e37d2d75 100644 --- a/themes/lc.yaml +++ b/themes/lc.yaml @@ -8,6 +8,7 @@ source: author: "gronk-droid" repo: "https://github.com/gronk-droid/lowcontrast" url: "https://marketplace.visualstudio.com/items?itemName=gronk-droid.lowcontrast" + formats: null colors: bg: "#2D2A2E" fg: "#978C8C" diff --git a/themes/lcars.yaml b/themes/lcars.yaml index 0868e90d..de3d6a1b 100644 --- a/themes/lcars.yaml +++ b/themes/lcars.yaml @@ -8,6 +8,7 @@ source: author: "hayzey" repo: "https://github.com/hayzey/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=hayzey.lcars-theme" + formats: null colors: bg: "#000000" fg: "#F5F6FA" diff --git a/themes/le-moderne.yaml b/themes/le-moderne.yaml index 16eb6dd6..55126f2d 100644 --- a/themes/le-moderne.yaml +++ b/themes/le-moderne.yaml @@ -8,6 +8,7 @@ source: author: "Edgar Remy" repo: "https://github.com/edgaremy/lemoderne-theme" url: "https://marketplace.visualstudio.com/items?itemName=edgaremy.le-moderne" + formats: null colors: bg: "#1E1E1E" fg: "#C4C4C4" diff --git a/themes/leaf-black.yaml b/themes/leaf-black.yaml deleted file mode 100644 index 585e45fe..00000000 --- a/themes/leaf-black.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Leaf Black" -source: - marketplace_id: "leafphp.leaf-theme" - version: "0.1.1" - installs: 2642 - rating: 4 - ratings: 1 - author: "Leaf PHP" - repo: "https://github.com/mychidarko/vscode-theme-leaf" - url: "https://marketplace.visualstudio.com/items?itemName=leafphp.leaf-theme" -colors: - bg: "#000000" - fg: "#DBD7CA" - black: "#393A34" - red: "#CB7676" - green: "#4D9375" - yellow: "#E6CC77" - blue: "#6394BF" - magenta: "#D9739F" - cyan: "#5EAAB5" - white: "#DBD7CA" - brightBlack: "#777777" - brightRed: "#CB7676" - brightGreen: "#4D9375" - brightYellow: "#E6CC77" - brightBlue: "#6394BF" - brightMagenta: "#D9739F" - brightCyan: "#5EAAB5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 82.3 - black: 0 - red: 41.8 - green: 37.7 - yellow: 76.6 - blue: 42.4 - magenta: 44.9 - cyan: 50.3 - white: 82.3 - brightBlack: 30.6 - brightRed: 41.8 - brightGreen: 37.7 - brightYellow: 76.6 - brightBlue: 42.4 - brightMagenta: 44.9 - brightCyan: 50.3 - brightWhite: 107.9 diff --git a/themes/leaf-dark-soft.yaml b/themes/leaf-dark-soft.yaml index bca7b524..15f57074 100644 --- a/themes/leaf-dark-soft.yaml +++ b/themes/leaf-dark-soft.yaml @@ -8,6 +8,7 @@ source: author: "Leaf PHP" repo: "https://github.com/mychidarko/vscode-theme-leaf" url: "https://marketplace.visualstudio.com/items?itemName=leafphp.leaf-theme" + formats: null colors: bg: "#002F3B" fg: "#DBD7CA" diff --git a/themes/leaf-dark.yaml b/themes/leaf-dark.yaml index 8ef963ff..d3a80589 100644 --- a/themes/leaf-dark.yaml +++ b/themes/leaf-dark.yaml @@ -8,6 +8,7 @@ source: author: "Leaf PHP" repo: "https://github.com/mychidarko/vscode-theme-leaf" url: "https://marketplace.visualstudio.com/items?itemName=leafphp.leaf-theme" + formats: null colors: bg: "#001318" fg: "#DBD7CA" diff --git a/themes/lean-coders-dark.yaml b/themes/lean-coders-dark.yaml index 3156a5e7..2b0eb4bf 100644 --- a/themes/lean-coders-dark.yaml +++ b/themes/lean-coders-dark.yaml @@ -8,6 +8,7 @@ source: author: "Julian Pufler" repo: "https://github.com/puf17640/lean-coders-theme" url: "https://marketplace.visualstudio.com/items?itemName=JulianPufler.lean-coders-theme" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/learn-with-sumit-theme.yaml b/themes/learn-with-sumit-theme.yaml deleted file mode 100644 index 5e8f26b5..00000000 --- a/themes/learn-with-sumit-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Learn with Sumit Theme" -source: - marketplace_id: "SumitSaha.learn-with-sumit-theme" - version: "12.1.0" - installs: 157511 - rating: 4.97 - ratings: 595 - author: "Learn with Sumit" - repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" -colors: - bg: "#171C2A" - fg: "#FFFFFF" - black: "#171C2A" - red: "#E35535" - green: "#52AB62" - yellow: "#FFD866" - blue: "#00B3BD" - magenta: "#E991E3" - cyan: "#78E8C6" - white: "#FFFFFF" - brightBlack: "#00B3BD" - brightRed: "#E35535" - brightGreen: "#52AB62" - brightYellow: "#FFD866" - brightBlue: "#00B3BD" - brightMagenta: "#E991E3" - brightCyan: "#78E8C6" - brightWhite: "#00B3BD" -meta: - mode: "dark" - accent: "orange" - hue: 269 - pair: null - contrast: - fg: 106.2 - black: 0 - red: 36 - green: 45.8 - yellow: 83.7 - blue: 50.8 - magenta: 57.9 - cyan: 79 - white: 106.2 - brightBlack: 50.8 - brightRed: 36 - brightGreen: 45.8 - brightYellow: 83.7 - brightBlue: 50.8 - brightMagenta: 57.9 - brightCyan: 79 - brightWhite: 50.8 diff --git a/themes/lebannen-theme.yaml b/themes/lebannen-theme.yaml index 91684798..9a19a809 100644 --- a/themes/lebannen-theme.yaml +++ b/themes/lebannen-theme.yaml @@ -8,6 +8,7 @@ source: author: "dorrajmachai" repo: "https://github.com/dorrajmachai/vscode-lebannen-theme" url: "https://marketplace.visualstudio.com/items?itemName=dorrajmachai.lebannen-theme" + formats: null colors: bg: "#0F1019" fg: "#C6C6C6" diff --git a/themes/leehxd.yaml b/themes/leehxd.yaml index 682b1e4e..44941b47 100644 --- a/themes/leehxd.yaml +++ b/themes/leehxd.yaml @@ -2,10 +2,13 @@ name: "LeehXD" source: marketplace_id: "LeehXD.LeehXD" version: "0.0.6" - installs: 295 + installs: 296 + rating: 5 + ratings: 1 author: "leehxd" repo: "https://github.com/LeehXD/computaria-theme" url: "https://marketplace.visualstudio.com/items?itemName=LeehXD.LeehXD" + formats: null colors: bg: "#191A28" fg: "#FFFFFF" diff --git a/themes/leftish.yaml b/themes/leftish.yaml index 03ce9845..24971fb3 100644 --- a/themes/leftish.yaml +++ b/themes/leftish.yaml @@ -8,6 +8,7 @@ source: author: "Philippa Markovics" repo: "https://github.com/philippamarkovics/leftish" url: "https://marketplace.visualstudio.com/items?itemName=unkai.leftish" + formats: null colors: bg: "#FFFFFF" fg: "#333333" diff --git a/themes/legacy-contrast.yaml b/themes/legacy-contrast.yaml deleted file mode 100644 index 6df755db..00000000 --- a/themes/legacy-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "legacy-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#080A0C" - fg: "#AEC2E0" - black: "#12171B" - red: "#BA0E2E" - green: "#267FB5" - yellow: "#FFFFFF" - blue: "#FFB20D" - magenta: "#748AA6" - cyan: "#267FB5" - white: "#C0D0E7" - brightBlack: "#313D49" - brightRed: "#F03E5F" - brightGreen: "#63B0DE" - brightYellow: "#FFFFFF" - brightBlue: "#FFD273" - brightMagenta: "#B2BECE" - brightCyan: "#63B0DE" - brightWhite: "#F8FAFC" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 68.7 - black: 0 - red: 21.4 - green: 31.5 - yellow: 107.7 - blue: 69.3 - magenta: 38.5 - cyan: 31.5 - white: 77.1 - brightBlack: 0 - brightRed: 37.7 - brightGreen: 55 - brightYellow: 107.7 - brightBlue: 82.9 - brightMagenta: 66.6 - brightCyan: 55 - brightWhite: 104.3 diff --git a/themes/legacy-light.yaml b/themes/legacy-light.yaml deleted file mode 100644 index 99ac9b64..00000000 --- a/themes/legacy-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "legacy-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#267FB5" - yellow: "#222222" - blue: "#FFB20D" - magenta: "#748AA6" - cyan: "#267FB5" - white: "#515151" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#63B0DE" - brightYellow: "#555555" - brightBlue: "#FFD273" - brightMagenta: "#B2BECE" - brightCyan: "#63B0DE" - brightWhite: "#777777" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 80.3 - green: 70 - yellow: 102.9 - blue: 33.2 - magenta: 63 - cyan: 70 - white: 87.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 46.9 - brightYellow: 85.9 - brightBlue: 20.4 - brightMagenta: 35.7 - brightCyan: 46.9 - brightWhite: 71.1 diff --git a/themes/legacy-solarized-dark-color-theme.yaml b/themes/legacy-solarized-dark-color-theme.yaml index e5530921..fbaf7955 100644 --- a/themes/legacy-solarized-dark-color-theme.yaml +++ b/themes/legacy-solarized-dark-color-theme.yaml @@ -8,6 +8,9 @@ source: author: "Ryan Olson" repo: "https://github.com/ryanolsonx/vscode-solarized-theme" url: "https://marketplace.visualstudio.com/items?itemName=ryanolsonx.solarized" + formats: + iterm2: "https://raw.githubusercontent.com/ryanolsonx/vscode-solarized-theme/master/Solarized Dark.itermcolors" + zed: "https://raw.githubusercontent.com/ryanolsonx/vscode-solarized-theme/master/themes/legacy-solarized-dark-color-theme.json" colors: bg: "#002B36" fg: "#839496" diff --git a/themes/legacy-solarized-light-color-theme.yaml b/themes/legacy-solarized-light-color-theme.yaml index 78691466..edb2c927 100644 --- a/themes/legacy-solarized-light-color-theme.yaml +++ b/themes/legacy-solarized-light-color-theme.yaml @@ -8,6 +8,9 @@ source: author: "Ryan Olson" repo: "https://github.com/ryanolsonx/vscode-solarized-theme" url: "https://marketplace.visualstudio.com/items?itemName=ryanolsonx.solarized" + formats: + iterm2: "https://raw.githubusercontent.com/ryanolsonx/vscode-solarized-theme/master/Solarized Dark.itermcolors" + zed: "https://raw.githubusercontent.com/ryanolsonx/vscode-solarized-theme/master/themes/legacy-solarized-dark-color-theme.json" colors: bg: "#FDF6E3" fg: "#657B83" diff --git a/themes/legendary-attack-of-blue.yaml b/themes/legendary-attack-of-blue.yaml deleted file mode 100644 index 41812d3c..00000000 --- a/themes/legendary-attack-of-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Legendary attack of blue" -source: - marketplace_id: "Akshath.the-legendary-blue" - version: "0.0.1" - installs: 112 - rating: 0 - ratings: 0 - author: "Akshath" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Akshath.the-legendary-blue" -colors: - bg: "#171936" - fg: "#FDFB75" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#FFFF00" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#FF6767" - brightGreen: "#00FF10" - brightYellow: "#FFFF67" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#00CDFF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: 278 - pair: null - contrast: - fg: 99.7 - black: 0 - red: 26.1 - green: 52.4 - yellow: 101.1 - blue: 26.8 - magenta: 29.1 - cyan: 46.9 - white: 89.4 - brightBlack: 21.4 - brightRed: 46.5 - brightGreen: 84.9 - brightYellow: 101.7 - brightBlue: 39.4 - brightMagenta: 44.8 - brightCyan: 66 - brightWhite: 89.4 diff --git a/themes/legendary-dark.yaml b/themes/legendary-dark.yaml deleted file mode 100644 index f194c435..00000000 --- a/themes/legendary-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Legendary Dark" -source: - marketplace_id: "LlewellynPaintsil.legendary-light" - version: "1.0.0" - installs: 3077 - rating: 5 - ratings: 2 - author: "Llewellyn Adonteng Paintsil" - repo: "https://github.com/Llewellyn500/legendary-light" - url: "https://marketplace.visualstudio.com/items?itemName=LlewellynPaintsil.legendary-light" -colors: - bg: "#F9F9F9" - fg: "#383B44" - black: "#D5D6DD" - red: "#D52753" - green: "#23974A" - yellow: "#DF631C" - blue: "#2196F3" - magenta: "#823FF1" - cyan: "#27618D" - white: "#2196F3" - brightBlack: "#E4E5ED" - brightRed: "#FF6480" - brightGreen: "#3CBC66" - brightYellow: "#C5A332" - brightBlue: "#2196F3" - brightMagenta: "#CE33C0" - brightCyan: "#6D93BB" - brightWhite: "#26272D" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 92.3 - black: 17.8 - red: 68.9 - green: 61 - yellow: 58.6 - blue: 54.1 - magenta: 72 - cyan: 78.8 - white: 54.1 - brightBlack: 9.1 - brightRed: 50.1 - brightGreen: 44.2 - brightYellow: 44 - brightBlue: 54.1 - brightMagenta: 65 - brightCyan: 55.7 - brightWhite: 98.2 diff --git a/themes/legends-theme-night-fymhr-special.yaml b/themes/legends-theme-night-fymhr-special.yaml index 1e571e11..9be8728a 100644 --- a/themes/legends-theme-night-fymhr-special.yaml +++ b/themes/legends-theme-night-fymhr-special.yaml @@ -8,6 +8,7 @@ source: author: "Mahmood Hassan Rameem" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rameem2003.legends-theme" + formats: null colors: bg: "#03072F" fg: "#12CC22" diff --git a/themes/legends-theme-night.yaml b/themes/legends-theme-night.yaml index edd7ee42..0bcec636 100644 --- a/themes/legends-theme-night.yaml +++ b/themes/legends-theme-night.yaml @@ -8,6 +8,7 @@ source: author: "Mahmood Hassan Rameem" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rameem2003.legends-theme" + formats: null colors: bg: "#08152C" fg: "#F7AE04" diff --git a/themes/leios.yaml b/themes/leios.yaml index 3892cfc3..fb253b2b 100644 --- a/themes/leios.yaml +++ b/themes/leios.yaml @@ -8,6 +8,7 @@ source: author: "jahtomini" repo: "https://github.com/jahtomini/leios" url: "https://marketplace.visualstudio.com/items?itemName=JahtominiOgunderu.leios-theme" + formats: null colors: bg: "#22242A" fg: "#ABB2BF" diff --git a/themes/lemon.yaml b/themes/lemon.yaml index 447adf56..835946db 100644 --- a/themes/lemon.yaml +++ b/themes/lemon.yaml @@ -8,6 +8,7 @@ source: author: "Aditya" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Inductor.lemon" + formats: null colors: bg: "#1B1D2A" fg: "#8E90A9" diff --git a/themes/lemonade.yaml b/themes/lemonade.yaml index bcd39956..b136c014 100644 --- a/themes/lemonade.yaml +++ b/themes/lemonade.yaml @@ -8,6 +8,7 @@ source: author: "dennerrondinely" repo: "https://github.com/dennerrondinely/lemonade" url: "https://marketplace.visualstudio.com/items?itemName=Denner.lemonade-theme" + formats: null colors: bg: "#2A2D34" fg: "#E8E8E8" diff --git a/themes/leon-arantes.yaml b/themes/leon-arantes.yaml index f74dee79..eb02552e 100644 --- a/themes/leon-arantes.yaml +++ b/themes/leon-arantes.yaml @@ -8,6 +8,7 @@ source: author: "Leon's Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Leon-Theme.leon-theme" + formats: null colors: bg: "#1E1E1E" fg: "#F6F6F4" diff --git a/themes/leon.yaml b/themes/leon.yaml index 0e93d627..5006dc3b 100644 --- a/themes/leon.yaml +++ b/themes/leon.yaml @@ -8,6 +8,7 @@ source: author: "David Bell" repo: "https://github.com/dtbell99/leon" url: "https://marketplace.visualstudio.com/items?itemName=DavidBell.leon" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/leonida-keys-ocean.yaml b/themes/leonida-keys-ocean.yaml index 3058114b..5feb1b3c 100644 --- a/themes/leonida-keys-ocean.yaml +++ b/themes/leonida-keys-ocean.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#1E2A3A" fg: "#F0F8FF" diff --git a/themes/lesbian.yaml b/themes/lesbian.yaml deleted file mode 100644 index f77b528a..00000000 --- a/themes/lesbian.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lesbian" -source: - marketplace_id: "ElizaMuss.elizas-pride-themes" - version: "1.0.2" - installs: 848 - rating: 0 - ratings: 0 - author: "Eliza Muss" - repo: "https://github.com/The-Gamer69/elizas-pride-themes" - url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#868686" - red: "#D62900" - green: "#33D057" - yellow: "#E1C542" - blue: "#469DF1" - magenta: "#A50062" - cyan: "#39CDE2" - white: "#D4D4D4" - brightBlack: "#ABABAB" - brightRed: "#FF9B55" - brightGreen: "#23D18B" - brightYellow: "#FFE05B" - brightBlue: "#74BCFF" - brightMagenta: "#D462A6" - brightCyan: "#74F2FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.9 - black: 37.6 - red: 28.8 - green: 63.2 - yellow: 72.2 - blue: 47.5 - magenta: 18.1 - cyan: 66.5 - white: 80.5 - brightBlack: 56.8 - brightRed: 61.9 - brightGreen: 64.5 - brightYellow: 88.7 - brightBlue: 63.2 - brightMagenta: 40.3 - brightCyan: 88.1 - brightWhite: 107.9 diff --git a/themes/lesser.yaml b/themes/lesser.yaml index c763db7c..050f6729 100644 --- a/themes/lesser.yaml +++ b/themes/lesser.yaml @@ -1,52 +1,53 @@ -name: "lesser" +name: "Lesser" source: - marketplace_id: "OvO.konng" - version: "5.0.0" - installs: 1352 + marketplace_id: "funcdfs.lesser" + version: "1.4.3" + installs: 61 rating: 5 - ratings: 3 - author: "fengwei2002" + ratings: 1 + author: "funcdfs" repo: "https://github.com/funcdfs/vscode-theme-lesser" - url: "https://marketplace.visualstudio.com/items?itemName=OvO.konng" + url: "https://marketplace.visualstudio.com/items?itemName=funcdfs.lesser" + formats: null colors: - bg: "#211D25" - fg: "#ABB2BF" - black: "#2A2530" - red: "#FF8080" - green: "#7DD3C0" - yellow: "#FFF2B3" - blue: "#6A9BE8" - magenta: "#AFB6FF" - cyan: "#80FFB5" - white: "#BDC3CF" - brightBlack: "#636D83" - brightRed: "#FF8080" - brightGreen: "#7DD3C0" - brightYellow: "#FFF2B3" - brightBlue: "#6A9BE8" - brightMagenta: "#AFB6FF" - brightCyan: "#80FFB5" - brightWhite: "#EEEEEE" + bg: "#1F1F1F" + fg: "#E4E4E4" + black: "#181818" + red: "#E05050" + green: "#5CB85C" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#E4E4E4" + brightBlack: "#6B6B6B" + brightRed: "#F07178" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" meta: mode: "dark" accent: "orange" - hue: 308 + hue: null pair: null contrast: - fg: 58.5 + fg: 88.4 black: 0 - red: 52.8 - green: 68.8 - yellow: 96.9 - blue: 46 - magenta: 64 - cyan: 90.3 - white: 68.2 - brightBlack: 24.1 - brightRed: 52.8 - brightGreen: 68.8 - brightYellow: 96.9 - brightBlue: 46 - brightMagenta: 64 - brightCyan: 90.3 - brightWhite: 94.8 + red: 34.5 + green: 51.5 + yellow: 69.6 + blue: 53.7 + magenta: 44.2 + cyan: 53.6 + white: 88.4 + brightBlack: 23.2 + brightRed: 45.6 + brightGreen: 61.3 + brightYellow: 69.6 + brightBlue: 53.7 + brightMagenta: 44.2 + brightCyan: 53.6 + brightWhite: 105.9 diff --git a/themes/let-s-code.yaml b/themes/let-s-code.yaml deleted file mode 100644 index ccd886d0..00000000 --- a/themes/let-s-code.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Let's Code!" -source: - marketplace_id: "ChrisK.welovecoding" - version: "0.0.1" - installs: 1700 - rating: 5 - ratings: 1 - author: "ChrisK" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=ChrisK.welovecoding" -colors: - bg: "#13171B" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 248 - pair: null - contrast: - fg: 79.5 - black: 0 - red: 26.7 - green: 53 - yellow: 85.7 - blue: 27.5 - magenta: 29.8 - cyan: 47.6 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.6 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90.1 diff --git a/themes/leviosa-theme.yaml b/themes/leviosa-theme.yaml index c682eb2b..3a8f7f6a 100644 --- a/themes/leviosa-theme.yaml +++ b/themes/leviosa-theme.yaml @@ -2,12 +2,13 @@ name: "Leviosa Theme" source: marketplace_id: "slatchma.leviosa-theme" version: "1.0.0" - installs: 901 + installs: 902 rating: 5 ratings: 1 author: "slatchma" repo: "https://github.com/slatchma/leviosa-theme" url: "https://marketplace.visualstudio.com/items?itemName=slatchma.leviosa-theme" + formats: null colors: bg: "#1E2126" fg: "#F78544" diff --git a/themes/levuaska.yaml b/themes/levuaska.yaml index d4c7a154..0c586d2f 100644 --- a/themes/levuaska.yaml +++ b/themes/levuaska.yaml @@ -8,6 +8,7 @@ source: author: "Aiden Lee I think" repo: "https://github.com/snaapsh0t12/Levuaska" url: "https://marketplace.visualstudio.com/items?itemName=AidenLeeIthink.levuaska" + formats: null colors: bg: "#0F0F17" fg: "#D4D4D4" diff --git a/themes/lht.yaml b/themes/lht.yaml deleted file mode 100644 index bb5e93ed..00000000 --- a/themes/lht.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "lht" -source: - marketplace_id: "u29dc.set" - version: "2.0.7" - installs: 1570 - rating: 0 - ratings: 0 - author: "iinfin" - repo: "https://github.com/u29dc/set-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=u29dc.set" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#0A0A0A" - red: "#7F7F7F" - green: "#7F7F7F" - yellow: "#191919" - blue: "#7F7F7F" - magenta: "#7F7F7F" - cyan: "#7F7F7F" - white: "#F5F5F5" - brightBlack: "#000000" - brightRed: "#7F7F7F" - brightGreen: "#7F7F7F" - brightYellow: "#7F7F7F" - brightBlue: "#7F7F7F" - brightMagenta: "#7F7F7F" - brightCyan: "#7F7F7F" - brightWhite: "#CCCCCC" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 106 - black: 105.8 - red: 67.4 - green: 67.4 - yellow: 104.4 - blue: 67.4 - magenta: 67.4 - cyan: 67.4 - white: 0 - brightBlack: 106 - brightRed: 67.4 - brightGreen: 67.4 - brightYellow: 67.4 - brightBlue: 67.4 - brightMagenta: 67.4 - brightCyan: 67.4 - brightWhite: 27.3 diff --git a/themes/liangliang-one-monokai.yaml b/themes/liangliang-one-monokai.yaml index 60ae1da1..d592ca19 100644 --- a/themes/liangliang-one-monokai.yaml +++ b/themes/liangliang-one-monokai.yaml @@ -8,6 +8,7 @@ source: author: "liangliang" repo: "https://github.com/LiangLiang723/liangliang-one-monokai" url: "https://marketplace.visualstudio.com/items?itemName=liangliang.liangliang-one-monokai" + formats: null colors: bg: "#282C34" fg: "#ABB2BF" diff --git a/themes/lichen-contrast.yaml b/themes/lichen-contrast.yaml deleted file mode 100644 index ca52c441..00000000 --- a/themes/lichen-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "lichen-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#090D11" - fg: "#9CADBC" - black: "#121A22" - red: "#BA0E2E" - green: "#249388" - yellow: "#9CE878" - blue: "#1A9D6B" - magenta: "#246C82" - cyan: "#1A9D6B" - white: "#ABBAC6" - brightBlack: "#2C4054" - brightRed: "#F03E5F" - brightGreen: "#4AD3C5" - brightYellow: "#DCF7CF" - brightBlue: "#3EDFA2" - brightMagenta: "#41AACB" - brightCyan: "#3EDFA2" - brightWhite: "#D9DFE5" -meta: - mode: "dark" - accent: "orange" - hue: 248 - pair: null - contrast: - fg: 56.4 - black: 0 - red: 21.2 - green: 36.8 - yellow: 80.7 - blue: 39.9 - magenta: 22.2 - cyan: 39.9 - white: 63.7 - brightBlack: 7.7 - brightRed: 37.5 - brightGreen: 68.1 - brightYellow: 97.1 - brightBlue: 72.3 - brightMagenta: 49.9 - brightCyan: 72.3 - brightWhite: 86.5 diff --git a/themes/lichen-light.yaml b/themes/lichen-light.yaml deleted file mode 100644 index 9f4f4733..00000000 --- a/themes/lichen-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "lichen-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#E6E9ED" - fg: "#414549" - black: "#F5F6F8" - red: "#BA0E2E" - green: "#249388" - yellow: "#64964C" - blue: "#1A9D6B" - magenta: "#246C82" - cyan: "#1A9D6B" - white: "#4D5256" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#4AD3C5" - brightYellow: "#9AC286" - brightBlue: "#3EDFA2" - brightMagenta: "#41AACB" - brightCyan: "#3EDFA2" - brightWhite: "#71787F" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 79.2 - black: 0 - red: 67.1 - green: 51.4 - yellow: 49.2 - blue: 48.4 - magenta: 66.2 - cyan: 48.4 - white: 74.2 - brightBlack: 12.5 - brightRed: 50.7 - brightGreen: 21 - brightYellow: 25.8 - brightBlue: 17 - brightMagenta: 38.5 - brightCyan: 17 - brightWhite: 57.9 diff --git a/themes/lichen.yaml b/themes/lichen.yaml deleted file mode 100644 index 98a1bad2..00000000 --- a/themes/lichen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "lichen" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#1A252F" - fg: "#9CADBC" - black: "#23323F" - red: "#BA0E2E" - green: "#249388" - yellow: "#9CE878" - blue: "#1A9D6B" - magenta: "#246C82" - cyan: "#1A9D6B" - white: "#ABBAC6" - brightBlack: "#3E5971" - brightRed: "#F03E5F" - brightGreen: "#4AD3C5" - brightYellow: "#DCF7CF" - brightBlue: "#3EDFA2" - brightMagenta: "#41AACB" - brightCyan: "#3EDFA2" - brightWhite: "#D9DFE5" -meta: - mode: "dark" - accent: "orange" - hue: 246 - pair: null - contrast: - fg: 53.9 - black: 0 - red: 18.8 - green: 34.3 - yellow: 78.2 - blue: 37.4 - magenta: 19.7 - cyan: 37.4 - white: 61.2 - brightBlack: 13.9 - brightRed: 35.1 - brightGreen: 65.7 - brightYellow: 94.6 - brightBlue: 69.8 - brightMagenta: 47.4 - brightCyan: 69.8 - brightWhite: 84 diff --git a/themes/liddlelabtheme.yaml b/themes/liddlelabtheme.yaml index e7a1c736..45b05a62 100644 --- a/themes/liddlelabtheme.yaml +++ b/themes/liddlelabtheme.yaml @@ -8,6 +8,7 @@ source: author: "mikeliddle" repo: "https://github.com/mikeliddle/liddlelab-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mikeliddle.LiddleLab-Theme" + formats: null colors: bg: "#000000" fg: "#D4D4D4" diff --git a/themes/liftoff.yaml b/themes/liftoff.yaml index 3b9f790c..55de7f98 100644 --- a/themes/liftoff.yaml +++ b/themes/liftoff.yaml @@ -8,6 +8,7 @@ source: author: "Kevin Pek" repo: "https://github.com/kevin-pek/liftoff-vscode" url: "https://marketplace.visualstudio.com/items?itemName=KevinPek.liftoff" + formats: null colors: bg: "#17161F" fg: "#E0DEF2" diff --git a/themes/lig-dark-soft.yaml b/themes/lig-dark-soft.yaml index 51ec0794..ec48a94e 100644 --- a/themes/lig-dark-soft.yaml +++ b/themes/lig-dark-soft.yaml @@ -8,6 +8,7 @@ source: author: "froQ" repo: "https://github.com/Fro-Q/vscode-theme-LiG" url: "https://marketplace.visualstudio.com/items?itemName=froQ.lig-theme" + formats: null colors: bg: "#272828" fg: "#B7B3B0" diff --git a/themes/lig-dark.yaml b/themes/lig-dark.yaml index 23b8636f..8e17a103 100644 --- a/themes/lig-dark.yaml +++ b/themes/lig-dark.yaml @@ -8,6 +8,7 @@ source: author: "froQ" repo: "https://github.com/Fro-Q/vscode-theme-LiG" url: "https://marketplace.visualstudio.com/items?itemName=froQ.lig-theme" + formats: null colors: bg: "#0F1010" fg: "#B7B3B0" diff --git a/themes/lig-light-soft.yaml b/themes/lig-light-soft.yaml index 6b70bbf6..5e1d1187 100644 --- a/themes/lig-light-soft.yaml +++ b/themes/lig-light-soft.yaml @@ -8,6 +8,7 @@ source: author: "froQ" repo: "https://github.com/Fro-Q/vscode-theme-LiG" url: "https://marketplace.visualstudio.com/items?itemName=froQ.lig-theme" + formats: null colors: bg: "#E6E0DD" fg: "#575655" diff --git a/themes/lig-light.yaml b/themes/lig-light.yaml index 344c1e40..cbc4167c 100644 --- a/themes/lig-light.yaml +++ b/themes/lig-light.yaml @@ -8,6 +8,7 @@ source: author: "froQ" repo: "https://github.com/Fro-Q/vscode-theme-LiG" url: "https://marketplace.visualstudio.com/items?itemName=froQ.lig-theme" + formats: null colors: bg: "#FFF9F5" fg: "#575655" diff --git a/themes/light-brown.yaml b/themes/light-brown.yaml index 66517ad0..ff493f0e 100644 --- a/themes/light-brown.yaml +++ b/themes/light-brown.yaml @@ -1,13 +1,14 @@ -name: "Light-Brown" +name: "Light Brown" source: marketplace_id: "bakrimoharram.light-brown" version: "0.0.2" - installs: 3615 + installs: 3620 rating: 5 ratings: 1 author: "bakrimoharram" repo: "https://github.com/bakrimoharram/light-brown-theme" url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.light-brown" + formats: null colors: bg: "#DBCAAF" fg: "#4D4D4D" diff --git a/themes/light-code-with-bars.yaml b/themes/light-code-with-bars.yaml deleted file mode 100644 index 38b51f32..00000000 --- a/themes/light-code-with-bars.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Light code with bars" -source: - marketplace_id: "nicegyuha.light-theme-with-bars" - version: "0.1.5" - installs: 253 - rating: 0 - ratings: 0 - author: "Gyuha Shin" - repo: "https://github.com/gyuha/light-theme-with-bars" - url: "https://marketplace.visualstudio.com/items?itemName=nicegyuha.light-theme-with-bars" -colors: - bg: "#FFFFFF" - fg: "#908D8D" - black: "#000000" - red: "#FF0C00" - green: "#00BA51" - yellow: "#D0D500" - blue: "#0072F0" - magenta: "#FF00FF" - cyan: "#1D9F86" - white: "#A3A3A3" - brightBlack: "#6F6F6F" - brightRed: "#F77878" - brightGreen: "#79EEAC" - brightYellow: "#E6EA76" - brightBlue: "#3D9AFF" - brightMagenta: "#EC78EC" - brightCyan: "#58D3BC" - brightWhite: "#CBCBCB" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 60.3 - black: 106 - red: 64.1 - green: 49.7 - yellow: 26.5 - blue: 70.3 - magenta: 55.6 - cyan: 60 - white: 49.5 - brightBlack: 74.8 - brightRed: 51.1 - brightGreen: 20.6 - brightYellow: 13.9 - brightBlue: 54.8 - brightMagenta: 48.3 - brightCyan: 34.1 - brightWhite: 27.9 diff --git a/themes/light-decay.yaml b/themes/light-decay.yaml deleted file mode 100644 index 477695c5..00000000 --- a/themes/light-decay.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Light Decay" -source: - marketplace_id: "decaycs.decay" - version: "1.0.9" - installs: 37708 - rating: 5 - ratings: 3 - author: "decaycs" - repo: "https://github.com/decaycs/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" -colors: - bg: "#DEE1E6" - fg: "#101419" - black: "#C5C8CD" - red: "#BD3C42" - green: "#69B373" - yellow: "#CEAC67" - blue: "#4D82C8" - magenta: "#A367CB" - cyan: "#519BC6" - white: "#DEE1E6" - brightBlack: "#989BA0" - brightRed: "#BD3C42" - brightGreen: "#69B373" - brightYellow: "#E9A180" - brightBlue: "#4D82C8" - brightMagenta: "#A367CB" - brightCyan: "#519BC6" - brightWhite: "#101419" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Dark Decay" - contrast: - fg: 87.3 - black: 11.9 - red: 58.1 - green: 31.7 - yellow: 24.6 - blue: 48.7 - magenta: 48.5 - cyan: 39.5 - white: 0 - brightBlack: 35.9 - brightRed: 58.1 - brightGreen: 31.7 - brightYellow: 23.8 - brightBlue: 48.7 - brightMagenta: 48.5 - brightCyan: 39.5 - brightWhite: 87.3 diff --git a/themes/light-gruvdark-mono.yaml b/themes/light-gruvdark-mono.yaml deleted file mode 100644 index 2cb853e1..00000000 --- a/themes/light-gruvdark-mono.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Light GruvDark-Mono" -source: - marketplace_id: "darianmorat.darian-theme" - version: "2.1.6" - installs: 3178 - rating: 5 - ratings: 1 - author: "Darian Toledo" - repo: "https://github.com/darianmorat/gruvdark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" -colors: - bg: "#F9F6E4" - fg: "#111111" - black: "#4F3829" - red: "#C14A4A" - green: "#008000" - yellow: "#BF6702" - blue: "#0C69B6" - magenta: "#945E80" - cyan: "#4C7A5D" - white: "#928374" - brightBlack: "#111111" - brightRed: "#C14A4A" - brightGreen: "#008000" - brightYellow: "#BF6702" - brightBlue: "#0C69B6" - brightMagenta: "#945E80" - brightCyan: "#4C7A5D" - brightWhite: "#D1CFC4" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 99.6 - black: 89.4 - red: 67 - green: 68.9 - yellow: 61.7 - blue: 72 - magenta: 68.9 - cyan: 68.4 - white: 58.6 - brightBlack: 99.6 - brightRed: 67 - brightGreen: 68.9 - brightYellow: 61.7 - brightBlue: 72 - brightMagenta: 68.9 - brightCyan: 68.4 - brightWhite: 20.1 diff --git a/themes/light-gruvdark-tokyo.yaml b/themes/light-gruvdark-tokyo.yaml deleted file mode 100644 index 3ff44131..00000000 --- a/themes/light-gruvdark-tokyo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Light GruvDark-Tokyo" -source: - marketplace_id: "darianmorat.darian-theme" - version: "2.1.6" - installs: 3178 - rating: 5 - ratings: 1 - author: "Darian Toledo" - repo: "https://github.com/darianmorat/gruvdark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" -colors: - bg: "#F9F6E4" - fg: "#111111" - black: "#4F3829" - red: "#C14A4A" - green: "#008000" - yellow: "#BF6702" - blue: "#23669C" - magenta: "#945E80" - cyan: "#4C7A5D" - white: "#928374" - brightBlack: "#111111" - brightRed: "#C14A4A" - brightGreen: "#008000" - brightYellow: "#BF6702" - brightBlue: "#23669C" - brightMagenta: "#945E80" - brightCyan: "#4C7A5D" - brightWhite: "#D1CFC4" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 99.6 - black: 89.4 - red: 67 - green: 68.9 - yellow: 61.7 - blue: 74.3 - magenta: 68.9 - cyan: 68.4 - white: 58.6 - brightBlack: 99.6 - brightRed: 67 - brightGreen: 68.9 - brightYellow: 61.7 - brightBlue: 74.3 - brightMagenta: 68.9 - brightCyan: 68.4 - brightWhite: 20.1 diff --git a/themes/light-gruvdark.yaml b/themes/light-gruvdark.yaml deleted file mode 100644 index 7bfe0ad6..00000000 --- a/themes/light-gruvdark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Light GruvDark" -source: - marketplace_id: "darianmorat.darian-theme" - version: "2.1.6" - installs: 3178 - rating: 5 - ratings: 1 - author: "Darian Toledo" - repo: "https://github.com/darianmorat/gruvdark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" -colors: - bg: "#FBF1C7" - fg: "#111111" - black: "#4F3829" - red: "#C14A4A" - green: "#008000" - yellow: "#BF6702" - blue: "#23669C" - magenta: "#945E80" - cyan: "#4C7A5D" - white: "#928374" - brightBlack: "#111111" - brightRed: "#C14A4A" - brightGreen: "#008000" - brightYellow: "#BF6702" - brightBlue: "#23669C" - brightMagenta: "#945E80" - brightCyan: "#4C7A5D" - brightWhite: "#F2E5BC" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 96.7 - black: 86.5 - red: 64.1 - green: 66 - yellow: 58.8 - blue: 71.4 - magenta: 66 - cyan: 65.5 - white: 55.7 - brightBlack: 96.7 - brightRed: 64.1 - brightGreen: 66 - brightYellow: 58.8 - brightBlue: 71.4 - brightMagenta: 66 - brightCyan: 65.5 - brightWhite: 0 diff --git a/themes/light-jade.yaml b/themes/light-jade.yaml deleted file mode 100644 index cdbc329e..00000000 --- a/themes/light-jade.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Light Jade" -source: - marketplace_id: "edca-jadetheme.jade" - version: "0.0.2" - installs: 1054 - rating: 5 - ratings: 1 - author: "ErikDCAlmeida" - repo: "https://github.com/ErikDCAlmeida/jade-theme" - url: "https://marketplace.visualstudio.com/items?itemName=edca-jadetheme.jade" -colors: - bg: "#FBFBFB" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Dark Jade" - contrast: - fg: 103.6 - black: 103.6 - red: 71.6 - green: 46.8 - yellow: 55.5 - blue: 83.7 - magenta: 72.2 - cyan: 58.2 - white: 83.5 - brightBlack: 76.4 - brightRed: 71.6 - brightGreen: 38.5 - brightYellow: 38.5 - brightBlue: 83.7 - brightMagenta: 72.2 - brightCyan: 58.2 - brightWhite: 46.1 diff --git a/themes/light-mosqueta.yaml b/themes/light-mosqueta.yaml index fc5f7b8e..bd07340d 100644 --- a/themes/light-mosqueta.yaml +++ b/themes/light-mosqueta.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Paku.mosqueta" version: "1.0.0" installs: 141 + rating: 0 + ratings: 0 author: "Paku" repo: "https://github.com/pa-ku/mosqueta_vstheme" url: "https://marketplace.visualstudio.com/items?itemName=Paku.mosqueta" + formats: null colors: bg: "#F8F4F4" fg: "#90007D" diff --git a/themes/light-print.yaml b/themes/light-print.yaml index 52bf309d..dc48e0fc 100644 --- a/themes/light-print.yaml +++ b/themes/light-print.yaml @@ -1,4 +1,4 @@ -name: "light-print" +name: "Light Print" source: marketplace_id: "AymanAli.light-print" version: "1.0.1" @@ -8,6 +8,7 @@ source: author: "Ayman Ali" repo: "https://github.com/aymanabuali/light-print" url: "https://marketplace.visualstudio.com/items?itemName=AymanAli.light-print" + formats: null colors: bg: "#FFFFFF" fg: "#262626" diff --git a/themes/light-springbok.yaml b/themes/light-springbok.yaml index 10cdee9c..578e5aad 100644 --- a/themes/light-springbok.yaml +++ b/themes/light-springbok.yaml @@ -8,6 +8,7 @@ source: author: "chrp" repo: "https://github.com/christophehurpeau/springbok-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=chrp.springbok-theme" + formats: null colors: bg: "#FEFEFE" fg: "#707070" diff --git a/themes/light-theme.yaml b/themes/light-theme.yaml index 463d9fc5..d00b854e 100644 --- a/themes/light-theme.yaml +++ b/themes/light-theme.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#EEEEEE" fg: "#000000" diff --git a/themes/light.yaml b/themes/light.yaml index 37adaf2d..da0e244c 100644 --- a/themes/light.yaml +++ b/themes/light.yaml @@ -8,6 +8,7 @@ source: author: "SatanAlphabet" repo: "https://github.com/SatanAlphabet/vscode-matugen" url: "https://marketplace.visualstudio.com/items?itemName=SatanAlphabet.matugen-vscode" + formats: null colors: bg: "#FFF7FB" fg: "#1F1A1F" diff --git a/themes/lightblack.yaml b/themes/lightblack.yaml index ced05a29..6d427a91 100644 --- a/themes/lightblack.yaml +++ b/themes/lightblack.yaml @@ -8,6 +8,7 @@ source: author: "theboringkid" repo: null url: "https://marketplace.visualstudio.com/items?itemName=theboringkid.lightblack" + formats: null colors: bg: "#000000" fg: "#F0F0F0" diff --git a/themes/lightdelight.yaml b/themes/lightdelight.yaml index 96feabce..f46c4f76 100644 --- a/themes/lightdelight.yaml +++ b/themes/lightdelight.yaml @@ -8,6 +8,7 @@ source: author: "Dimitar Nonov" repo: "https://github.com/DNonov/lightDelight" url: "https://marketplace.visualstudio.com/items?itemName=DimitarNonov.lightDelight" + formats: null colors: bg: "#FFFFFF" fg: "#222222" diff --git a/themes/lighter-a-theme-for-light-coders.yaml b/themes/lighter-a-theme-for-light-coders.yaml index d0659168..00ac9318 100644 --- a/themes/lighter-a-theme-for-light-coders.yaml +++ b/themes/lighter-a-theme-for-light-coders.yaml @@ -8,6 +8,7 @@ source: author: "Pro Gamer" repo: "https://github.com/Pro-The-Dev-Op/Pro-s-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ProGamer.pro-ggamer" + formats: null colors: bg: "#FFFFFF" fg: "#FF0000" diff --git a/themes/lightestlighttheme.yaml b/themes/lightestlighttheme.yaml index 3bbc05bc..ec2e42f8 100644 --- a/themes/lightestlighttheme.yaml +++ b/themes/lightestlighttheme.yaml @@ -8,6 +8,7 @@ source: author: "Shaswot Dhungana" repo: "https://github.com/Shaswot-Dhungana/Lightest-Light-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Shaswot-Dhungana.lightestlighttheme" + formats: null colors: bg: "#FAF9F6" fg: "#000000" diff --git a/themes/lighthaus.yaml b/themes/lighthaus.yaml index 8e78acc6..400dc935 100644 --- a/themes/lighthaus.yaml +++ b/themes/lighthaus.yaml @@ -8,6 +8,7 @@ source: author: "Lighthaus" repo: "https://github.com/lighthaus-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=lighthaus-theme.lighthaus-vscode" + formats: null colors: bg: "#18191E" fg: "#FFFADE" diff --git a/themes/lighthouse-in-the-dark-boon-island-dark.yaml b/themes/lighthouse-in-the-dark-boon-island-dark.yaml deleted file mode 100644 index aecd72db..00000000 --- a/themes/lighthouse-in-the-dark-boon-island-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Lighthouse In The Dark (Boon Island Dark)" -source: - marketplace_id: "CodeTime.lighthouse-in-the-dark" - version: "0.1.0" - installs: 271 - author: "Code Time" - repo: "https://github.com/afj176/lighthouse-in-the-dark" - url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.lighthouse-in-the-dark" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#FF6B6B" - green: "#00FF7F" - yellow: "#FFFF00" - blue: "#00BFFF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#FF8888" - brightGreen: "#66FF99" - brightYellow: "#FFFF66" - brightBlue: "#66D9FF" - brightMagenta: "#FF66FF" - brightCyan: "#66FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 107.9 - black: 0 - red: 49.1 - green: 87.6 - yellow: 102.7 - blue: 61.4 - magenta: 46.2 - cyan: 92.2 - white: 107.9 - brightBlack: 23 - brightRed: 57.2 - brightGreen: 90 - brightYellow: 103.3 - brightBlue: 75.3 - brightMagenta: 54.8 - brightCyan: 94 - brightWhite: 107.9 diff --git a/themes/lighthouse-in-the-dark-boon-island-light.yaml b/themes/lighthouse-in-the-dark-boon-island-light.yaml deleted file mode 100644 index c9039e93..00000000 --- a/themes/lighthouse-in-the-dark-boon-island-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Lighthouse In The Dark (Boon Island Light)" -source: - marketplace_id: "CodeTime.lighthouse-in-the-dark" - version: "0.1.0" - installs: 271 - author: "Code Time" - repo: "https://github.com/afj176/lighthouse-in-the-dark" - url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.lighthouse-in-the-dark" -colors: - bg: "#FFFFFF" - fg: "#1A1A1A" - black: "#1A1A1A" - red: "#D73A49" - green: "#28A745" - yellow: "#8B6914" - blue: "#0366D6" - magenta: "#9B4DCA" - cyan: "#00A896" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#FF6B6B" - brightGreen: "#4AE168" - brightYellow: "#CCAA00" - brightBlue: "#2188FF" - brightMagenta: "#B366E0" - brightCyan: "#00D4BE" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "green" - hue: null - contrast: - fg: 104.3 - black: 104.3 - red: 70.4 - green: 57.9 - yellow: 74.9 - blue: 76.2 - magenta: 73.2 - cyan: 55.8 - white: 0 - brightBlack: 78.8 - brightRed: 52.8 - brightGreen: 30.3 - brightYellow: 44.2 - brightBlue: 61.7 - brightMagenta: 62.8 - brightCyan: 35 - brightWhite: 0 diff --git a/themes/lighthouse-in-the-dark-rose-island-dark.yaml b/themes/lighthouse-in-the-dark-rose-island-dark.yaml deleted file mode 100644 index 99b62846..00000000 --- a/themes/lighthouse-in-the-dark-rose-island-dark.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Lighthouse In The Dark (Rose Island Dark)" -source: - marketplace_id: "CodeTime.lighthouse-in-the-dark" - version: "0.1.0" - installs: 271 - author: "Code Time" - repo: "https://github.com/afj176/lighthouse-in-the-dark" - url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.lighthouse-in-the-dark" -colors: - bg: "#1E1410" - fg: "#F5F0E8" - black: "#1E1410" - red: "#FF6B9D" - green: "#98C379" - yellow: "#FFB86C" - blue: "#61AFEF" - magenta: "#FF00FF" - cyan: "#56B6C2" - white: "#F5F0E8" - brightBlack: "#6B5A45" - brightRed: "#FF8BB0" - brightGreen: "#B8E89D" - brightYellow: "#FFD89C" - brightBlue: "#8BCEFF" - brightMagenta: "#FF66FF" - brightCyan: "#7DD6E2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 43 - contrast: - fg: 97.4 - black: 0 - red: 49.6 - green: 62.3 - yellow: 71.5 - blue: 54.7 - magenta: 45.3 - cyan: 54.6 - white: 97.4 - brightBlack: 18.2 - brightRed: 58.4 - brightGreen: 83.5 - brightYellow: 85.5 - brightBlue: 71.6 - brightMagenta: 53.9 - brightCyan: 72.7 - brightWhite: 106.9 diff --git a/themes/lighthouse-in-the-dark-rose-island-light.yaml b/themes/lighthouse-in-the-dark-rose-island-light.yaml deleted file mode 100644 index 26c3d464..00000000 --- a/themes/lighthouse-in-the-dark-rose-island-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Lighthouse In The Dark (Rose Island Light)" -source: - marketplace_id: "CodeTime.lighthouse-in-the-dark" - version: "0.1.0" - installs: 271 - author: "Code Time" - repo: "https://github.com/afj176/lighthouse-in-the-dark" - url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.lighthouse-in-the-dark" -colors: - bg: "#D5CAAE" - fg: "#1A1612" - black: "#1A1612" - red: "#A83D45" - green: "#4A7C59" - yellow: "#8B6914" - blue: "#2E6B8A" - magenta: "#8B2EB8" - cyan: "#2E7A7A" - white: "#D5CAAE" - brightBlack: "#6B5A45" - brightRed: "#CC4D55" - brightGreen: "#5A9C69" - brightYellow: "#A87A18" - brightBlue: "#3E8BAA" - brightMagenta: "#AB3ED8" - brightCyan: "#3E9A9A" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: 89 - contrast: - fg: 74.4 - black: 74.4 - red: 49.5 - green: 43.3 - yellow: 44.6 - blue: 48.8 - magenta: 51.3 - cyan: 44.2 - white: 0 - brightBlack: 52.4 - brightRed: 39.5 - brightGreen: 29.7 - brightYellow: 35.4 - brightBlue: 35.3 - brightMagenta: 41.7 - brightCyan: 30.2 - brightWhite: 31.7 diff --git a/themes/lightning-dark.yaml b/themes/lightning-dark.yaml deleted file mode 100644 index cee0f4fa..00000000 --- a/themes/lightning-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lightning Dark" -source: - marketplace_id: "zevross.lightning" - version: "2.1.1" - installs: 891 - rating: 0 - ratings: 0 - author: "Zev Ross" - repo: "https://github.com/Zev18/lightning" - url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" -colors: - bg: "#1A1745" - fg: "#76C6FF" - black: "#000000" - red: "#CF3E5B" - green: "#44EABD" - yellow: "#F5C86E" - blue: "#2681F9" - magenta: "#9172FF" - cyan: "#3EC5FF" - white: "#C4C6CB" - brightBlack: "#333333" - brightRed: "#FF477E" - brightGreen: "#66FFDE" - brightYellow: "#F07178" - brightBlue: "#44B1FF" - brightMagenta: "#B76DFF" - brightCyan: "#21FBFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 281 - pair: "Lightning Light" - contrast: - fg: 65.7 - black: 0 - red: 28.4 - green: 77.2 - yellow: 75.2 - blue: 35.2 - magenta: 37.8 - cyan: 62.8 - white: 70.1 - brightBlack: 0 - brightRed: 41.3 - brightGreen: 90.5 - brightYellow: 45.7 - brightBlue: 54.4 - brightMagenta: 41.5 - brightCyan: 88.3 - brightWhite: 105.9 diff --git a/themes/lightning-light.yaml b/themes/lightning-light.yaml deleted file mode 100644 index 9d859edc..00000000 --- a/themes/lightning-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lightning Light" -source: - marketplace_id: "zevross.lightning" - version: "2.1.1" - installs: 891 - rating: 0 - ratings: 0 - author: "Zev Ross" - repo: "https://github.com/Zev18/lightning" - url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" -colors: - bg: "#F1FBFF" - fg: "#3475A2" - black: "#000000" - red: "#CF3E5B" - green: "#44EABD" - yellow: "#F5C86E" - blue: "#2681F9" - magenta: "#9172FF" - cyan: "#38B2E7" - white: "#C4C6CB" - brightBlack: "#787878" - brightRed: "#FE2B64" - brightGreen: "#2BBA93" - brightYellow: "#FAA630" - brightBlue: "#2680FF" - brightMagenta: "#BC47B2" - brightCyan: "#1C95BE" - brightWhite: "#CEDCDE" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Lightning Dark" - contrast: - fg: 70.8 - black: 102.6 - red: 67.9 - green: 20.6 - yellow: 22.5 - blue: 61 - magenta: 58.4 - cyan: 43.7 - white: 27.2 - brightBlack: 67.2 - brightRed: 58.7 - brightGreen: 44.4 - brightYellow: 34.7 - brightBlue: 60.9 - brightMagenta: 66.9 - brightCyan: 58.1 - brightWhite: 16.3 diff --git a/themes/lightning-material-day.yaml b/themes/lightning-material-day.yaml deleted file mode 100644 index 2abee3c4..00000000 --- a/themes/lightning-material-day.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lightning Material - Day" -source: - marketplace_id: "zevross.lightning" - version: "2.1.1" - installs: 891 - rating: 0 - ratings: 0 - author: "Zev Ross" - repo: "https://github.com/Zev18/lightning" - url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" -colors: - bg: "#F3FAFF" - fg: "#3475A2" - black: "#000000" - red: "#CF3E5B" - green: "#44EABD" - yellow: "#F5C86E" - blue: "#2681F9" - magenta: "#9172FF" - cyan: "#38B2E7" - white: "#C4C6CB" - brightBlack: "#787878" - brightRed: "#FE2B64" - brightGreen: "#2BBA93" - brightYellow: "#FAA630" - brightBlue: "#2680FF" - brightMagenta: "#BC47B2" - brightCyan: "#1C95BE" - brightWhite: "#CEDCDE" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Lightning Material - Midnight" - contrast: - fg: 70.6 - black: 102.4 - red: 67.7 - green: 20.4 - yellow: 22.3 - blue: 60.9 - magenta: 58.2 - cyan: 43.5 - white: 27 - brightBlack: 67 - brightRed: 58.5 - brightGreen: 44.2 - brightYellow: 34.5 - brightBlue: 60.7 - brightMagenta: 66.7 - brightCyan: 57.9 - brightWhite: 16.1 diff --git a/themes/lightning-material-evening.yaml b/themes/lightning-material-evening.yaml deleted file mode 100644 index c27e1b40..00000000 --- a/themes/lightning-material-evening.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lightning Material - Evening" -source: - marketplace_id: "zevross.lightning" - version: "2.1.1" - installs: 891 - rating: 0 - ratings: 0 - author: "Zev Ross" - repo: "https://github.com/Zev18/lightning" - url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" -colors: - bg: "#202657" - fg: "#76C6FF" - black: "#000000" - red: "#CF3E5B" - green: "#44EABD" - yellow: "#F5C86E" - blue: "#2681F9" - magenta: "#9172FF" - cyan: "#3EC5FF" - white: "#C4C6CB" - brightBlack: "#333333" - brightRed: "#FF477E" - brightGreen: "#66FFDE" - brightYellow: "#F07178" - brightBlue: "#44B1FF" - brightMagenta: "#B76DFF" - brightCyan: "#21FBFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 274 - pair: null - contrast: - fg: 63.5 - black: 0 - red: 26.2 - green: 75 - yellow: 73 - blue: 33 - magenta: 35.7 - cyan: 60.6 - white: 68 - brightBlack: 0 - brightRed: 39.1 - brightGreen: 88.3 - brightYellow: 43.5 - brightBlue: 52.2 - brightMagenta: 39.3 - brightCyan: 86.1 - brightWhite: 103.7 diff --git a/themes/lightning-material-midnight.yaml b/themes/lightning-material-midnight.yaml deleted file mode 100644 index 4e5e536e..00000000 --- a/themes/lightning-material-midnight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lightning Material - Midnight" -source: - marketplace_id: "zevross.lightning" - version: "2.1.1" - installs: 891 - rating: 0 - ratings: 0 - author: "Zev Ross" - repo: "https://github.com/Zev18/lightning" - url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" -colors: - bg: "#2F2857" - fg: "#76C6FF" - black: "#000000" - red: "#CF3E5B" - green: "#44EABD" - yellow: "#F5C86E" - blue: "#2681F9" - magenta: "#9172FF" - cyan: "#3EC5FF" - white: "#C4C6CB" - brightBlack: "#333333" - brightRed: "#FF477E" - brightGreen: "#66FFDE" - brightYellow: "#F07178" - brightBlue: "#44B1FF" - brightMagenta: "#B76DFF" - brightCyan: "#21FBFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 287 - pair: "Lightning Material - Day" - contrast: - fg: 62.7 - black: 0 - red: 25.4 - green: 74.2 - yellow: 72.2 - blue: 32.2 - magenta: 34.8 - cyan: 59.8 - white: 67.1 - brightBlack: 0 - brightRed: 38.3 - brightGreen: 87.5 - brightYellow: 42.6 - brightBlue: 51.4 - brightMagenta: 38.5 - brightCyan: 85.3 - brightWhite: 102.9 diff --git a/themes/lightning-material-soft.yaml b/themes/lightning-material-soft.yaml deleted file mode 100644 index 249df6f7..00000000 --- a/themes/lightning-material-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lightning Material - Soft" -source: - marketplace_id: "zevross.lightning" - version: "2.1.1" - installs: 891 - rating: 0 - ratings: 0 - author: "Zev Ross" - repo: "https://github.com/Zev18/lightning" - url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" -colors: - bg: "#262B3D" - fg: "#76C6FF" - black: "#000000" - red: "#CF3E5B" - green: "#44EABD" - yellow: "#F5C86E" - blue: "#2681F9" - magenta: "#9172FF" - cyan: "#3EC5FF" - white: "#C4C6CB" - brightBlack: "#333333" - brightRed: "#FF477E" - brightGreen: "#66FFDE" - brightYellow: "#F07178" - brightBlue: "#44B1FF" - brightMagenta: "#B76DFF" - brightCyan: "#21FBFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 272 - pair: null - contrast: - fg: 63.4 - black: 0 - red: 26.2 - green: 75 - yellow: 72.9 - blue: 33 - magenta: 35.6 - cyan: 60.5 - white: 67.9 - brightBlack: 0 - brightRed: 39.1 - brightGreen: 88.2 - brightYellow: 43.4 - brightBlue: 52.2 - brightMagenta: 39.3 - brightCyan: 86 - brightWhite: 103.7 diff --git a/themes/lightning-soft-dark.yaml b/themes/lightning-soft-dark.yaml deleted file mode 100644 index 8840818d..00000000 --- a/themes/lightning-soft-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lightning Soft - Dark" -source: - marketplace_id: "zevross.lightning" - version: "2.1.1" - installs: 891 - rating: 0 - ratings: 0 - author: "Zev Ross" - repo: "https://github.com/Zev18/lightning" - url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" -colors: - bg: "#212135" - fg: "#76C6FF" - black: "#000000" - red: "#CF3E5B" - green: "#44EABD" - yellow: "#F5C86E" - blue: "#2681F9" - magenta: "#9172FF" - cyan: "#3EC5FF" - white: "#C4C6CB" - brightBlack: "#333333" - brightRed: "#FF477E" - brightGreen: "#66FFDE" - brightYellow: "#F07178" - brightBlue: "#44B1FF" - brightMagenta: "#B76DFF" - brightCyan: "#21FBFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 283 - pair: null - contrast: - fg: 65 - black: 0 - red: 27.8 - green: 76.6 - yellow: 74.5 - blue: 34.6 - magenta: 37.2 - cyan: 62.1 - white: 69.5 - brightBlack: 0 - brightRed: 40.7 - brightGreen: 89.8 - brightYellow: 45 - brightBlue: 53.7 - brightMagenta: 40.9 - brightCyan: 87.6 - brightWhite: 105.3 diff --git a/themes/lightning-soft.yaml b/themes/lightning-soft.yaml deleted file mode 100644 index 37ba30a4..00000000 --- a/themes/lightning-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lightning Soft" -source: - marketplace_id: "zevross.lightning" - version: "2.1.1" - installs: 891 - rating: 0 - ratings: 0 - author: "Zev Ross" - repo: "https://github.com/Zev18/lightning" - url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" -colors: - bg: "#171724" - fg: "#76C6FF" - black: "#000000" - red: "#CF3E5B" - green: "#44EABD" - yellow: "#F5C86E" - blue: "#2681F9" - magenta: "#9172FF" - cyan: "#3EC5FF" - white: "#C4C6CB" - brightBlack: "#333333" - brightRed: "#FF477E" - brightGreen: "#66FFDE" - brightYellow: "#F07178" - brightBlue: "#44B1FF" - brightMagenta: "#B76DFF" - brightCyan: "#21FBFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 284 - pair: null - contrast: - fg: 66.5 - black: 0 - red: 29.2 - green: 78 - yellow: 76 - blue: 36 - magenta: 38.6 - cyan: 63.6 - white: 70.9 - brightBlack: 0 - brightRed: 42.1 - brightGreen: 91.3 - brightYellow: 46.5 - brightBlue: 55.2 - brightMagenta: 42.3 - brightCyan: 89.1 - brightWhite: 106.7 diff --git a/themes/lightning-theme.yaml b/themes/lightning-theme.yaml index 467cdc60..3958891b 100644 --- a/themes/lightning-theme.yaml +++ b/themes/lightning-theme.yaml @@ -2,12 +2,13 @@ name: "Lightning Theme" source: marketplace_id: "gugahnstn.lightning-theme" version: "0.0.1" - installs: 157 + installs: 158 rating: 0 ratings: 0 author: "Gustavo Nogueira" repo: "https://github.com/Gugahnstn/lightning-theme" url: "https://marketplace.visualstudio.com/items?itemName=gugahnstn.lightning-theme" + formats: null colors: bg: "#18181A" fg: "#D4D4D4" diff --git a/themes/lightning.yaml b/themes/lightning.yaml deleted file mode 100644 index a5709f22..00000000 --- a/themes/lightning.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lightning" -source: - marketplace_id: "zevross.lightning" - version: "2.1.1" - installs: 891 - rating: 0 - ratings: 0 - author: "Zev Ross" - repo: "https://github.com/Zev18/lightning" - url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" -colors: - bg: "#0E0C29" - fg: "#76C6FF" - black: "#000000" - red: "#CF3E5B" - green: "#44EABD" - yellow: "#F5C86E" - blue: "#2681F9" - magenta: "#9172FF" - cyan: "#3EC5FF" - white: "#C4C6CB" - brightBlack: "#333333" - brightRed: "#FF477E" - brightGreen: "#66FFDE" - brightYellow: "#F07178" - brightBlue: "#44B1FF" - brightMagenta: "#B76DFF" - brightCyan: "#21FBFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 282 - pair: null - contrast: - fg: 67.1 - black: 0 - red: 29.8 - green: 78.6 - yellow: 76.6 - blue: 36.6 - magenta: 39.3 - cyan: 64.2 - white: 71.6 - brightBlack: 0 - brightRed: 42.7 - brightGreen: 91.9 - brightYellow: 47.1 - brightBlue: 55.8 - brightMagenta: 42.9 - brightCyan: 89.7 - brightWhite: 107.4 diff --git a/themes/ligiapink.yaml b/themes/ligiapink.yaml index f6d77427..ba9f1983 100644 --- a/themes/ligiapink.yaml +++ b/themes/ligiapink.yaml @@ -8,6 +8,7 @@ source: author: "CodeBabel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CodeBabel.codebabel-obscure-pink" + formats: null colors: bg: "#0B010A" fg: "#D4D4D4" diff --git a/themes/lilac-dreams.yaml b/themes/lilac-dreams.yaml index c57b8487..79f62ee7 100644 --- a/themes/lilac-dreams.yaml +++ b/themes/lilac-dreams.yaml @@ -8,6 +8,7 @@ source: author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" + formats: null colors: bg: "#2D2A2E" fg: "#A8A2C7" diff --git a/themes/lilac-grove.yaml b/themes/lilac-grove.yaml index c759430e..66dfe73e 100644 --- a/themes/lilac-grove.yaml +++ b/themes/lilac-grove.yaml @@ -8,6 +8,7 @@ source: author: "Inna Sodri" repo: "https://example.com/inna/lilac-grove-bundle" url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.lilac-grove-bundle" + formats: null colors: bg: "#0E0F13" fg: "#E8EAF0" diff --git a/themes/lilac.yaml b/themes/lilac.yaml deleted file mode 100644 index 4a765697..00000000 --- a/themes/lilac.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "lilac" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - rating: 5 - ratings: 3 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#080709" - fg: "#E0CEED" - black: "#151217" - red: "#BA0E2E" - green: "#A29DFA" - yellow: "#B657FF" - blue: "#F5B0EF" - magenta: "#8E6DA6" - cyan: "#8E69C9" - white: "#ECE1F4" - brightBlack: "#3B3442" - brightRed: "#F03E5F" - brightGreen: "#FEFEFF" - brightYellow: "#E2BDFF" - brightBlue: "#FFFFFF" - brightMagenta: "#BFACCD" - brightCyan: "#C7B4E4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 80.7 - black: 0 - red: 21.4 - green: 54.7 - yellow: 38.5 - blue: 72.4 - magenta: 31.9 - cyan: 32.9 - white: 90.8 - brightBlack: 0 - brightRed: 37.7 - brightGreen: 107.2 - brightYellow: 75.1 - brightBlue: 107.8 - brightMagenta: 61.1 - brightCyan: 66.4 - brightWhite: 107.8 diff --git a/themes/lima-theme.yaml b/themes/lima-theme.yaml index 31699f9d..4c48f3ce 100644 --- a/themes/lima-theme.yaml +++ b/themes/lima-theme.yaml @@ -8,6 +8,7 @@ source: author: "Adriano Lima" repo: "https://github.com/adrianulima/lima-theme" url: "https://marketplace.visualstudio.com/items?itemName=AdrianoLima.adrianulima-theme" + formats: null colors: bg: "#222428" fg: "#E0F0F0" diff --git a/themes/limpo-dark.yaml b/themes/limpo-dark.yaml index a3e9a49f..89fc8543 100644 --- a/themes/limpo-dark.yaml +++ b/themes/limpo-dark.yaml @@ -8,6 +8,7 @@ source: author: "zieu" repo: "https://github.com/zieu/limpo" url: "https://marketplace.visualstudio.com/items?itemName=zieu.limpo" + formats: null colors: bg: "#18202B" fg: "#D6D7DE" diff --git a/themes/limpo-darker.yaml b/themes/limpo-darker.yaml index bead8920..ecce6e49 100644 --- a/themes/limpo-darker.yaml +++ b/themes/limpo-darker.yaml @@ -8,6 +8,7 @@ source: author: "zieu" repo: "https://github.com/zieu/limpo" url: "https://marketplace.visualstudio.com/items?itemName=zieu.limpo" + formats: null colors: bg: "#1B1E21" fg: "#D6D7DE" diff --git a/themes/linear-dark.yaml b/themes/linear-dark.yaml index 3336f928..a82179ea 100644 --- a/themes/linear-dark.yaml +++ b/themes/linear-dark.yaml @@ -8,6 +8,7 @@ source: author: "Linear" repo: "https://github.com/linear/linear-theme" url: "https://marketplace.visualstudio.com/items?itemName=linear-app.linear-app-theme" + formats: null colors: bg: "#101012" fg: "#E3E4E7" diff --git a/themes/linear-light.yaml b/themes/linear-light.yaml index f5b97bfc..34d04758 100644 --- a/themes/linear-light.yaml +++ b/themes/linear-light.yaml @@ -8,6 +8,7 @@ source: author: "Linear" repo: "https://github.com/linear/linear-theme" url: "https://marketplace.visualstudio.com/items?itemName=linear-app.linear-app-theme" + formats: null colors: bg: "#FCFCFC" fg: "#1A1A1F" diff --git a/themes/linkarzu-vscode-theme.yaml b/themes/linkarzu-vscode-theme.yaml deleted file mode 100644 index 6c7294ae..00000000 --- a/themes/linkarzu-vscode-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Linkarzu VScode theme" -source: - marketplace_id: "linkarzu.linkarzu-vscolors" - version: "0.7.0" - installs: 492 - rating: 5 - ratings: 1 - author: "linkarzu" - repo: "https://github.com/linkarzu/linkarzu-vscolors" - url: "https://marketplace.visualstudio.com/items?itemName=linkarzu.linkarzu-vscolors" -colors: - bg: "#0D1116" - fg: "#EBFAFA" - black: "#0D1116" - red: "#04D1F9" - green: "#5FA9F4" - yellow: "#1682EF" - blue: "#37F499" - magenta: "#1682EF" - cyan: "#19DFCF" - white: "#EBFAFA" - brightBlack: "#987AFB" - brightRed: "#04D1F9" - brightGreen: "#5FA9F4" - brightYellow: "#1682EF" - brightBlue: "#37F499" - brightMagenta: "#1682EF" - brightCyan: "#19DFCF" - brightWhite: "#EBFAFA" -meta: - mode: "dark" - accent: "teal" - hue: 254 - pair: null - contrast: - fg: 102.1 - black: 0 - red: 68.7 - green: 53 - yellow: 36 - blue: 82.3 - magenta: 36 - cyan: 73.2 - white: 102.1 - brightBlack: 42 - brightRed: 68.7 - brightGreen: 53 - brightYellow: 36 - brightBlue: 82.3 - brightMagenta: 36 - brightCyan: 73.2 - brightWhite: 102.1 diff --git a/themes/lino-dark-ruby.yaml b/themes/lino-dark-ruby.yaml deleted file mode 100644 index 03856fc2..00000000 --- a/themes/lino-dark-ruby.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lino - Dark Ruby" -source: - marketplace_id: "Lino.lino-themes" - version: "0.0.1" - installs: 270 - rating: 0 - ratings: 0 - author: "Lino" - repo: "https://github.com/AronCodes21/lino-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Lino.lino-themes" -colors: - bg: "#0D0D0D" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#9B9B9B" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.6 - black: 0 - red: 27.5 - green: 53.7 - yellow: 86.4 - blue: 28.2 - magenta: 30.5 - cyan: 48.3 - white: 48 - brightBlack: 22.8 - brightRed: 39.3 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 90.8 diff --git a/themes/lino.yaml b/themes/lino.yaml index 7d6d0c0b..e5a30d8e 100644 --- a/themes/lino.yaml +++ b/themes/lino.yaml @@ -8,6 +8,7 @@ source: author: "Aryan Mann" repo: "https://github.com/aryan-mann/lino-theme" url: "https://marketplace.visualstudio.com/items?itemName=AryanMann.lino-theme" + formats: null colors: bg: "#F7F7F7" fg: "#89979B" diff --git a/themes/lion.yaml b/themes/lion.yaml index 3fb65c78..d942c9a6 100644 --- a/themes/lion.yaml +++ b/themes/lion.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Jesztar.lion" version: "0.0.1" installs: 377 + rating: 0 + ratings: 0 author: "Jesztar" repo: "https://github.com/a-jesztar/lion" url: "https://marketplace.visualstudio.com/items?itemName=Jesztar.lion" + formats: null colors: bg: "#181818" fg: "#D4D4D4" diff --git a/themes/lionel.yaml b/themes/lionel.yaml index bcbea42e..86647c02 100644 --- a/themes/lionel.yaml +++ b/themes/lionel.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Tksi.lionel-theme" version: "0.0.5" installs: 256 + rating: 0 + ratings: 0 author: "Tksi" repo: "https://github.com/Tksi/lionel-theme" url: "https://marketplace.visualstudio.com/items?itemName=Tksi.lionel-theme" + formats: null colors: bg: "#2D2E30" fg: "#ABB2BF" diff --git a/themes/liquid-dark.yaml b/themes/liquid-dark.yaml index 53360e6b..1d13147e 100644 --- a/themes/liquid-dark.yaml +++ b/themes/liquid-dark.yaml @@ -8,6 +8,7 @@ source: author: "Dragos Popa" repo: "https://github.com/dxp611/liquid-white" url: "https://marketplace.visualstudio.com/items?itemName=dxp611.liquid-white" + formats: null colors: bg: "#202124" fg: "#E8EAED" diff --git a/themes/liquid-ochre.yaml b/themes/liquid-ochre.yaml index d5f2f19f..f0675562 100644 --- a/themes/liquid-ochre.yaml +++ b/themes/liquid-ochre.yaml @@ -8,6 +8,7 @@ source: author: "Dragos Popa" repo: "https://github.com/dxp611/liquid-white" url: "https://marketplace.visualstudio.com/items?itemName=dxp611.liquid-white" + formats: null colors: bg: "#1A160A" fg: "#FFFFFF" diff --git a/themes/liquid-ray-light.yaml b/themes/liquid-ray-light.yaml deleted file mode 100644 index 8846b223..00000000 --- a/themes/liquid-ray-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Liquid Ray Light" -source: - marketplace_id: "wiidede.liquid-ray" - version: "1.4.3" - installs: 1903 - rating: 5 - ratings: 2 - author: "wiidede" - repo: "https://github.com/wiidede/Liquid-Ray" - url: "https://marketplace.visualstudio.com/items?itemName=wiidede.liquid-ray" -colors: - bg: "#FFFFFF" - fg: "#606060" - black: "#252526" - red: "#FF7477" - green: "#44D62C" - yellow: "#FFCE0E" - blue: "#00BFFF" - magenta: "#FF2BD3" - cyan: "#00B796" - white: "#ACA79F" - brightBlack: "#AAAAAA" - brightRed: "#FF7477" - brightGreen: "#44D62C" - brightYellow: "#FFCE0E" - brightBlue: "#00BFFF" - brightMagenta: "#FF2BD3" - brightCyan: "#00B796" - brightWhite: "#DDDDDD" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 81.3 - black: 102.2 - red: 50.5 - green: 36.3 - yellow: 22.8 - blue: 40.9 - magenta: 57.4 - cyan: 49.4 - white: 47.1 - brightBlack: 45.8 - brightRed: 50.5 - brightGreen: 36.3 - brightYellow: 22.8 - brightBlue: 40.9 - brightMagenta: 57.4 - brightCyan: 49.4 - brightWhite: 17.6 diff --git a/themes/liquid-ray-soft-pink.yaml b/themes/liquid-ray-soft-pink.yaml deleted file mode 100644 index 4bfe95a1..00000000 --- a/themes/liquid-ray-soft-pink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Liquid Ray Soft Pink" -source: - marketplace_id: "wiidede.liquid-ray" - version: "1.4.3" - installs: 1903 - rating: 5 - ratings: 2 - author: "wiidede" - repo: "https://github.com/wiidede/Liquid-Ray" - url: "https://marketplace.visualstudio.com/items?itemName=wiidede.liquid-ray" -colors: - bg: "#FDFBF2" - fg: "#606060" - black: "#252526" - red: "#FF7477" - green: "#44D62C" - yellow: "#FFCE0E" - blue: "#00BFFF" - magenta: "#FF2BD3" - cyan: "#00B796" - white: "#ACA79F" - brightBlack: "#AAAAAA" - brightRed: "#FF7477" - brightGreen: "#44D62C" - brightYellow: "#FFCE0E" - brightBlue: "#00BFFF" - brightMagenta: "#FF2BD3" - brightCyan: "#00B796" - brightWhite: "#DDDDDD" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.8 - black: 99.7 - red: 47.9 - green: 33.8 - yellow: 20.3 - blue: 38.4 - magenta: 54.9 - cyan: 46.9 - white: 44.6 - brightBlack: 43.3 - brightRed: 47.9 - brightGreen: 33.8 - brightYellow: 20.3 - brightBlue: 38.4 - brightMagenta: 54.9 - brightCyan: 46.9 - brightWhite: 15 diff --git a/themes/liquid-ray.yaml b/themes/liquid-ray.yaml deleted file mode 100644 index 87a11db4..00000000 --- a/themes/liquid-ray.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Liquid Ray" -source: - marketplace_id: "wiidede.liquid-ray" - version: "1.4.3" - installs: 1903 - rating: 5 - ratings: 2 - author: "wiidede" - repo: "https://github.com/wiidede/Liquid-Ray" - url: "https://marketplace.visualstudio.com/items?itemName=wiidede.liquid-ray" -colors: - bg: "#252526" - fg: "#ACA79F" - black: "#606060" - red: "#FF7276" - green: "#44D62C" - yellow: "#FFE900" - blue: "#009ACE" - magenta: "#EA27C2" - cyan: "#00B796" - white: "#ACA79F" - brightBlack: "#777777" - brightRed: "#FF7276" - brightGreen: "#44D62C" - brightYellow: "#FFE900" - brightBlue: "#009ACE" - brightMagenta: "#EA27C2" - brightCyan: "#00B796" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 52 - black: 17.6 - red: 48 - green: 63.2 - yellow: 89.3 - blue: 40 - magenta: 35.3 - cyan: 49.6 - white: 52 - brightBlack: 27.6 - brightRed: 48 - brightGreen: 63.2 - brightYellow: 89.3 - brightBlue: 40 - brightMagenta: 35.3 - brightCyan: 49.6 - brightWhite: 105 diff --git a/themes/liquor-theme.yaml b/themes/liquor-theme.yaml index 5c22b5a7..49b5ec08 100644 --- a/themes/liquor-theme.yaml +++ b/themes/liquor-theme.yaml @@ -8,6 +8,7 @@ source: author: "gen9009" repo: "https://github.com/gen9009/Liquor-Theme" url: "https://marketplace.visualstudio.com/items?itemName=gen9009.Liquor-Theme" + formats: null colors: bg: "#0A0A0A" fg: "#595959" diff --git a/themes/liquorice.yaml b/themes/liquorice.yaml index 8a4591fe..ccf28e2b 100644 --- a/themes/liquorice.yaml +++ b/themes/liquorice.yaml @@ -8,6 +8,7 @@ source: author: "Gabriele Meucci" repo: "https://github.com/walele993/fable_a_vsc_theme" url: "https://marketplace.visualstudio.com/items?itemName=walele993.fable-code-theme" + formats: null colors: bg: "#000000" fg: "#CCCCCC" diff --git a/themes/little-league-dark.yaml b/themes/little-league-dark.yaml deleted file mode 100644 index 95f07e03..00000000 --- a/themes/little-league-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Little League Dark" -source: - marketplace_id: "MatthewStrom.little-league" - version: "1.3.1" - installs: 565 - rating: 0 - ratings: 0 - author: "Matthew Ström" - repo: "https://github.com/ilikescience/little-league" - url: "https://marketplace.visualstudio.com/items?itemName=MatthewStrom.little-league" -colors: - bg: "#28282D" - fg: "#EDEDED" - black: "#28282D" - red: "#F78C6C" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#89B4FE" - magenta: "#CF89FE" - cyan: "#64B5F6" - white: "#EDEDED" - brightBlack: "#8D8D8E" - brightRed: "#EF6C6A" - brightGreen: "#99C88D" - brightYellow: "#F9E59B" - brightBlue: "#6494F6" - brightMagenta: "#BB64F6" - brightCyan: "#78CAFB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: "Little League Light" - contrast: - fg: 92.6 - black: 0 - red: 52.5 - green: 81.7 - yellow: 76.4 - blue: 57.9 - magenta: 51 - cyan: 55.2 - white: 92.6 - brightBlack: 37.6 - brightRed: 42.3 - brightGreen: 62.6 - brightYellow: 87.7 - brightBlue: 42.4 - brightMagenta: 37.8 - brightCyan: 65.7 - brightWhite: 104.4 diff --git a/themes/little-league-darker.yaml b/themes/little-league-darker.yaml deleted file mode 100644 index 50f92388..00000000 --- a/themes/little-league-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Little League Darker" -source: - marketplace_id: "MatthewStrom.little-league" - version: "1.3.1" - installs: 565 - rating: 0 - ratings: 0 - author: "Matthew Ström" - repo: "https://github.com/ilikescience/little-league" - url: "https://marketplace.visualstudio.com/items?itemName=MatthewStrom.little-league" -colors: - bg: "#1B1B1E" - fg: "#EDEDED" - black: "#28282D" - red: "#F78C6C" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#89B4FE" - magenta: "#CF89FE" - cyan: "#64B5F6" - white: "#EDEDED" - brightBlack: "#8D8D8E" - brightRed: "#EF6C6A" - brightGreen: "#99C88D" - brightYellow: "#F9E59B" - brightBlue: "#6494F6" - brightMagenta: "#BB64F6" - brightCyan: "#78CAFB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 94.6 - black: 0 - red: 54.5 - green: 83.7 - yellow: 78.5 - blue: 59.9 - magenta: 53.1 - cyan: 57.3 - white: 94.6 - brightBlack: 39.6 - brightRed: 44.4 - brightGreen: 64.6 - brightYellow: 89.7 - brightBlue: 44.5 - brightMagenta: 39.8 - brightCyan: 67.8 - brightWhite: 106.4 diff --git a/themes/little-league-light.yaml b/themes/little-league-light.yaml deleted file mode 100644 index fb78a455..00000000 --- a/themes/little-league-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Little League Light" -source: - marketplace_id: "MatthewStrom.little-league" - version: "1.3.1" - installs: 565 - rating: 0 - ratings: 0 - author: "Matthew Ström" - repo: "https://github.com/ilikescience/little-league" - url: "https://marketplace.visualstudio.com/items?itemName=MatthewStrom.little-league" -colors: - bg: "#FFFFFF" - fg: "#5A5A5D" - black: "#F5F5F5" - red: "#CA7967" - green: "#4E864E" - yellow: "#A8853D" - blue: "#4771E2" - magenta: "#A447E2" - cyan: "#3472C7" - white: "#35353B" - brightBlack: "#5A5A5D" - brightRed: "#EF6C6A" - brightGreen: "#AED88D" - brightYellow: "#D5A23C" - brightBlue: "#6494F6" - brightMagenta: "#BB64F6" - brightCyan: "#4095DF" - brightWhite: "#5A5A5D" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Little League Dark" - contrast: - fg: 83.8 - black: 0 - red: 59.7 - green: 69.9 - yellow: 61.9 - blue: 70.4 - magenta: 71 - cyan: 72.9 - white: 97.8 - brightBlack: 83.8 - brightRed: 55.9 - brightGreen: 27.5 - brightYellow: 45.5 - brightBlue: 55.8 - brightMagenta: 60.4 - brightCyan: 58.8 - brightWhite: 83.8 diff --git a/themes/lives.yaml b/themes/lives.yaml index f2ff9893..d3e695d9 100644 --- a/themes/lives.yaml +++ b/themes/lives.yaml @@ -8,6 +8,7 @@ source: author: "Lorenzo Arcidiacono" repo: null url: "https://marketplace.visualstudio.com/items?itemName=devarci.livesignage" + formats: null colors: bg: "#1B1B1B" fg: "#E8E8E8" diff --git a/themes/living-twilight.yaml b/themes/living-twilight.yaml index 7dea943b..339cd066 100644 --- a/themes/living-twilight.yaml +++ b/themes/living-twilight.yaml @@ -8,6 +8,7 @@ source: author: "illumincrotty" repo: "https://github.com/illumincrotty/VSCode-Themes" url: "https://marketplace.visualstudio.com/items?itemName=illumincrotty.living-twilight" + formats: null colors: bg: "#1B1B1D" fg: "#BEBABF" diff --git a/themes/lofi.yaml b/themes/lofi.yaml deleted file mode 100644 index 9ef2cabe..00000000 --- a/themes/lofi.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lofi" -source: - marketplace_id: "kgnio.sprinklepack" - version: "0.2.5" - installs: 81 - rating: 5 - ratings: 2 - author: "Kagan Mamak" - repo: "https://github.com/kgnio/sprinklepack" - url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" -colors: - bg: "#FAF8F5" - fg: "#2E2C2B" - black: "#BCB8B1" - red: "#E07A5F" - green: "#B5E48C" - yellow: "#F2CC8F" - blue: "#84A59D" - magenta: "#DDBEA9" - cyan: "#8EC5FC" - white: "#2E2C2B" - brightBlack: "#BCB8B1" - brightRed: "#E29578" - brightGreen: "#C1E1C1" - brightYellow: "#FFE8A3" - brightBlue: "#A0C4FF" - brightMagenta: "#E9CFC4" - brightCyan: "#B6DFF7" - brightWhite: "#000000" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.5 - black: 34.1 - red: 51.6 - green: 17.5 - yellow: 20.1 - blue: 47.9 - magenta: 27.8 - cyan: 29.8 - white: 96.5 - brightBlack: 34.1 - brightRed: 42.8 - brightGreen: 16.1 - brightYellow: 0 - brightBlue: 28.5 - brightMagenta: 18.6 - brightCyan: 15.7 - brightWhite: 102 diff --git a/themes/loki-official-classic.yaml b/themes/loki-official-classic.yaml deleted file mode 100644 index 89da8014..00000000 --- a/themes/loki-official-classic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Loki Official - Classic" -source: - marketplace_id: "SeuFernandez.loki-official-theme" - version: "0.1.53" - installs: 1880 - rating: 5 - ratings: 4 - author: "SeuFernandez" - repo: "https://github.com/seufernandez/loki-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SeuFernandez.loki-official-theme" -colors: - bg: "#1D1D1D" - fg: "#F8F8F2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 101.3 - black: 0 - red: 26 - green: 52.3 - yellow: 84.9 - blue: 26.7 - magenta: 29.1 - cyan: 46.9 - white: 89.3 - brightBlack: 21.3 - brightRed: 37.9 - brightGreen: 62.8 - brightYellow: 94.9 - brightBlue: 39.3 - brightMagenta: 44.7 - brightCyan: 54.7 - brightWhite: 89.3 diff --git a/themes/loki-official-kang-edition.yaml b/themes/loki-official-kang-edition.yaml deleted file mode 100644 index 3d4e2100..00000000 --- a/themes/loki-official-kang-edition.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Loki Official - Kang Edition" -source: - marketplace_id: "SeuFernandez.loki-official-theme" - version: "0.1.53" - installs: 1880 - rating: 5 - ratings: 4 - author: "SeuFernandez" - repo: "https://github.com/seufernandez/loki-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SeuFernandez.loki-official-theme" -colors: - bg: "#1D1C24" - fg: "#F8F8F2" - black: "#151320" - red: "#FF5555" - green: "#8AFF80" - yellow: "#FFFF80" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#80FFEA" - white: "#F8F8F2" - brightBlack: "#5F5594" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 291 - pair: null - contrast: - fg: 101.3 - black: 0 - red: 42.7 - green: 89.7 - yellow: 102 - blue: 53 - magenta: 53.9 - cyan: 92.6 - white: 101.3 - brightBlack: 17.9 - brightRed: 48.1 - brightGreen: 88.4 - brightYellow: 102.9 - brightBlue: 65.4 - brightMagenta: 61.9 - brightCyan: 96.1 - brightWhite: 106.2 diff --git a/themes/loki-theme-contrast.yaml b/themes/loki-theme-contrast.yaml index 602116f8..d366ffd5 100644 --- a/themes/loki-theme-contrast.yaml +++ b/themes/loki-theme-contrast.yaml @@ -8,6 +8,7 @@ source: author: "Outbound" repo: "https://github.com/melquisedecfelipe/loki-theme" url: "https://marketplace.visualstudio.com/items?itemName=Outbound.loki-theme" + formats: null colors: bg: "#121212" fg: "#E4E4E7" diff --git a/themes/loki-theme.yaml b/themes/loki-theme.yaml index 5598ddbd..e788c350 100644 --- a/themes/loki-theme.yaml +++ b/themes/loki-theme.yaml @@ -8,6 +8,7 @@ source: author: "Outbound" repo: "https://github.com/melquisedecfelipe/loki-theme" url: "https://marketplace.visualstudio.com/items?itemName=Outbound.loki-theme" + formats: null colors: bg: "#121212" fg: "#E5E5E5" diff --git a/themes/loki.yaml b/themes/loki.yaml deleted file mode 100644 index d858ee77..00000000 --- a/themes/loki.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Loki" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#252525" - fg: "#FBFBFB" - black: "#252525" - red: "#DC2828" - green: "#29C3A0" - yellow: "#D29922" - blue: "#14E699" - magenta: "#14E699" - cyan: "#29C3A0" - white: "#FBFBFB" - brightBlack: "#252525" - brightRed: "#DC2828" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#14E699" - brightMagenta: "#14E699" - brightCyan: "#29C3A0" - brightWhite: "#FBFBFB" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.3 - black: 0 - red: 27.3 - green: 55.7 - yellow: 49.8 - blue: 72.3 - magenta: 72.3 - cyan: 55.7 - white: 102.3 - brightBlack: 0 - brightRed: 27.3 - brightGreen: 55.7 - brightYellow: 49.8 - brightBlue: 72.3 - brightMagenta: 72.3 - brightCyan: 55.7 - brightWhite: 102.3 diff --git a/themes/lolo.yaml b/themes/lolo.yaml index 8c3ecacb..f96b5526 100644 --- a/themes/lolo.yaml +++ b/themes/lolo.yaml @@ -1,4 +1,4 @@ -name: "lolo" +name: "LOLO" source: marketplace_id: "Alencar26.lolo" version: "0.0.2" @@ -8,6 +8,7 @@ source: author: "André Alencar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Alencar26.lolo" + formats: null colors: bg: "#282F34" fg: "#BBBBBB" diff --git a/themes/london-underground.yaml b/themes/london-underground.yaml index 6a95448b..aaa91c5e 100644 --- a/themes/london-underground.yaml +++ b/themes/london-underground.yaml @@ -8,6 +8,7 @@ source: author: "kaplich" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sergeykaplich.london-underground" + formats: null colors: bg: "#0E1326" fg: "#E7EAF0" diff --git a/themes/lone-wolf-dark.yaml b/themes/lone-wolf-dark.yaml index 2fcba4aa..ed544272 100644 --- a/themes/lone-wolf-dark.yaml +++ b/themes/lone-wolf-dark.yaml @@ -1,4 +1,4 @@ -name: "Lone wolf dark" +name: "lone-wolf-dark" source: marketplace_id: "Sidwebworks.lone-wolf-dark" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Sidwebworks" repo: "https://github.com/sidwebworks/lone-wolf-dark" url: "https://marketplace.visualstudio.com/items?itemName=Sidwebworks.lone-wolf-dark" + formats: null colors: bg: "#181818" fg: "#DBD7CA" diff --git a/themes/lonely.yaml b/themes/lonely.yaml deleted file mode 100644 index c04ef12a..00000000 --- a/themes/lonely.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lonely" -source: - marketplace_id: "Rajdeep-Ray.lonely-theme" - version: "0.0.2" - installs: 1214 - rating: 5 - ratings: 2 - author: "Rajdeep Ray" - repo: "https://github.com/Rajdeep-Ray/Lonely-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Rajdeep-Ray.lonely-theme" -colors: - bg: "#24292E" - fg: "#EEFFFF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "pink" - hue: 248 - pair: null - contrast: - fg: 102 - black: 0 - red: 34.2 - green: 57.8 - yellow: 46.1 - blue: 47.1 - magenta: 36.5 - cyan: 50 - white: 88.1 - brightBlack: 12.9 - brightRed: 43.6 - brightGreen: 74.3 - brightYellow: 58.7 - brightBlue: 61.2 - brightMagenta: 47.7 - brightCyan: 65.3 - brightWhite: 80.5 diff --git a/themes/lonus-dark.yaml b/themes/lonus-dark.yaml deleted file mode 100644 index 31d920a4..00000000 --- a/themes/lonus-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "lonus-dark" -source: - marketplace_id: "Aerglonus.Lonus-dark" - version: "1.3.1" - installs: 10556 - rating: 0 - ratings: 0 - author: "Aerglonus" - repo: "https://github.com/Aerglonus/lonus-dark" - url: "https://marketplace.visualstudio.com/items?itemName=Aerglonus.Lonus-dark" -colors: - bg: "#1C1D21" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.8 - black: 0 - red: 26 - green: 52.3 - yellow: 84.9 - blue: 26.7 - magenta: 29 - cyan: 46.8 - white: 89.3 - brightBlack: 21.3 - brightRed: 37.8 - brightGreen: 62.8 - brightYellow: 94.9 - brightBlue: 39.3 - brightMagenta: 44.7 - brightCyan: 54.7 - brightWhite: 89.3 diff --git a/themes/lookify-dark-mode.yaml b/themes/lookify-dark-mode.yaml deleted file mode 100644 index 0cc5c30d..00000000 --- a/themes/lookify-dark-mode.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "LookiFy Dark mode" -source: - marketplace_id: "prince.lookify" - version: "0.1.0" - installs: 641 - rating: 5 - ratings: 4 - author: "prince" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=prince.lookify" -colors: - bg: "#1B1E28" - fg: "#E1E3E6" - black: "#1C1F27" - red: "#FF6F61" - green: "#61D1B2" - yellow: "#FFD580" - blue: "#3C91E6" - magenta: "#E798B3" - cyan: "#61D1B2" - white: "#A4B9C9" - brightBlack: "#4B6075" - brightRed: "#FF9282" - brightGreen: "#61D1B2" - brightYellow: "#FFD580" - brightBlue: "#3C91E6" - brightMagenta: "#E798B3" - brightCyan: "#61D1B2" - brightWhite: "#E1E3E6" -meta: - mode: "dark" - accent: "orange" - hue: 272 - pair: "LookiFy Light mode" - contrast: - fg: 87.8 - black: 0 - red: 47.9 - green: 65.7 - yellow: 82.6 - blue: 40 - magenta: 57.1 - cyan: 65.7 - white: 61.1 - brightBlack: 17.8 - brightRed: 58 - brightGreen: 65.7 - brightYellow: 82.6 - brightBlue: 40 - brightMagenta: 57.1 - brightCyan: 65.7 - brightWhite: 87.8 diff --git a/themes/lookify-light-mode.yaml b/themes/lookify-light-mode.yaml deleted file mode 100644 index fff76ae6..00000000 --- a/themes/lookify-light-mode.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "LookiFy Light mode" -source: - marketplace_id: "prince.lookify" - version: "0.1.0" - installs: 641 - rating: 5 - ratings: 4 - author: "prince" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=prince.lookify" -colors: - bg: "#F6F7FA" - fg: "#2C2C2C" - black: "#F0F8FC" - red: "#D74C3C" - green: "#61D1B2" - yellow: "#FFD64D" - blue: "#3A8DD5" - magenta: "#E2A3B8" - cyan: "#61D1B2" - white: "#2C2C2C" - brightBlack: "#A8C8E9" - brightRed: "#FF6F61" - brightGreen: "#00B300" - brightYellow: "#FFFF00" - brightBlue: "#007FFF" - brightMagenta: "#D74C3C" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "green" - hue: null - pair: "LookiFy Dark mode" - contrast: - fg: 95.8 - black: 0 - red: 63.3 - green: 30.2 - yellow: 14.5 - blue: 57.8 - magenta: 35.5 - cyan: 30.2 - white: 95.8 - brightBlack: 26.7 - brightRed: 47.3 - brightGreen: 48.5 - brightYellow: 0 - brightBlue: 60.1 - brightMagenta: 63.3 - brightCyan: 0 - brightWhite: 0 diff --git a/themes/looped.yaml b/themes/looped.yaml index 22ee0fad..4e6d7cb8 100644 --- a/themes/looped.yaml +++ b/themes/looped.yaml @@ -8,6 +8,7 @@ source: author: "Ratul Maharaj" repo: "https://github.com/RatulMaharaj/nightwind" url: "https://marketplace.visualstudio.com/items?itemName=RatulMaharaj.nightwind" + formats: null colors: bg: "#111827" fg: "#F9FAFB" diff --git a/themes/loopy.yaml b/themes/loopy.yaml index c1c5dae9..6906b7d7 100644 --- a/themes/loopy.yaml +++ b/themes/loopy.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "kokoscript.loopytheme" version: "1.0.1" installs: 465 + rating: 0 + ratings: 0 author: "kokoscript" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kokoscript.loopytheme" + formats: null colors: bg: "#333355" fg: "#FFFFFF" diff --git a/themes/lordmorphy.yaml b/themes/lordmorphy.yaml index e982071d..26ec8e20 100644 --- a/themes/lordmorphy.yaml +++ b/themes/lordmorphy.yaml @@ -8,6 +8,7 @@ source: author: "lordmorphy" repo: null url: "https://marketplace.visualstudio.com/items?itemName=lordmorphy.lordmorphy" + formats: null colors: bg: "#1E1E1E" fg: "#14B8A6" diff --git a/themes/lore.yaml b/themes/lore.yaml index 0e17a2dd..7810cf28 100644 --- a/themes/lore.yaml +++ b/themes/lore.yaml @@ -8,6 +8,8 @@ source: author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" + formats: + nvim: "https://raw.githubusercontent.com/volskaya/irrelevant/main/extensions/neovim/lua/irrelevant/colors.lua" colors: bg: "#1C1C1C" fg: "#FFFFFF" diff --git a/themes/lostforindia.yaml b/themes/lostforindia.yaml index 499e4329..97fd88e1 100644 --- a/themes/lostforindia.yaml +++ b/themes/lostforindia.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "LostforIndia.LostforIndia" version: "2.1.0" installs: 33 + rating: 0 + ratings: 0 author: "Lost for India" repo: "https://github.com/ashut0shk/LostforIndia" url: "https://marketplace.visualstudio.com/items?itemName=LostforIndia.LostforIndia" + formats: null colors: bg: "#FDFDFE" fg: "#9AA83A" diff --git a/themes/lotus-dark.yaml b/themes/lotus-dark.yaml deleted file mode 100644 index 0a4952aa..00000000 --- a/themes/lotus-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lotus Dark" -source: - marketplace_id: "SkyLiss.lotus-theme" - version: "1.1.5" - installs: 12514 - rating: 5 - ratings: 3 - author: "SkyLissh" - repo: "https://github.com/SkyLissh/lotus-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=SkyLiss.lotus-theme" -colors: - bg: "#222222" - fg: "#FCFCFA" - black: "#222222" - red: "#D33C62" - green: "#81B84A" - yellow: "#C09C31" - blue: "#D97645" - magenta: "#7B6CC9" - cyan: "#4EADB8" - white: "#939293" - brightBlack: "#595959" - brightRed: "#FF6188" - brightGreen: "#A9DC76" - brightYellow: "#FFF48A" - brightBlue: "#FC9867" - brightMagenta: "#AB9DF2" - brightCyan: "#78DCE8" - brightWhite: "#FCFCFA" -meta: - mode: "dark" - accent: "red" - hue: null - pair: "Lotus Light" - contrast: - fg: 103.4 - black: 0 - red: 28.7 - green: 53.2 - yellow: 48.7 - blue: 40.9 - magenta: 29.3 - cyan: 48.5 - white: 41.3 - brightBlack: 15.3 - brightRed: 45.4 - brightGreen: 73.9 - brightYellow: 96.2 - brightBlue: 58.2 - brightMagenta: 52.8 - brightCyan: 74 - brightWhite: 103.4 diff --git a/themes/lotus-flat-dusk.yaml b/themes/lotus-flat-dusk.yaml index 8e274f88..62102b00 100644 --- a/themes/lotus-flat-dusk.yaml +++ b/themes/lotus-flat-dusk.yaml @@ -8,6 +8,7 @@ source: author: "alewtschuk" repo: "https://github.com/alewtschuk/lotus-flat-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=alewtschuk.lotus-flat-dark-theme" + formats: null colors: bg: "#131419" fg: "#ABB2BF" diff --git a/themes/lotus-flat-midnight.yaml b/themes/lotus-flat-midnight.yaml index fabdcc4c..21e3d07a 100644 --- a/themes/lotus-flat-midnight.yaml +++ b/themes/lotus-flat-midnight.yaml @@ -8,6 +8,7 @@ source: author: "alewtschuk" repo: "https://github.com/alewtschuk/lotus-flat-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=alewtschuk.lotus-flat-dark-theme" + formats: null colors: bg: "#08090A" fg: "#ABB2BF" diff --git a/themes/lotus-light.yaml b/themes/lotus-light.yaml deleted file mode 100644 index f87b859e..00000000 --- a/themes/lotus-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lotus Light" -source: - marketplace_id: "SkyLiss.lotus-theme" - version: "1.1.5" - installs: 12514 - rating: 5 - ratings: 3 - author: "SkyLissh" - repo: "https://github.com/SkyLissh/lotus-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=SkyLiss.lotus-theme" -colors: - bg: "#FFF0F6" - fg: "#121212" - black: "#222222" - red: "#D33C62" - green: "#81B84A" - yellow: "#C09C31" - blue: "#D97645" - magenta: "#7B6CC9" - cyan: "#4EADB8" - white: "#C7C7C5" - brightBlack: "#595959" - brightRed: "#FF6188" - brightGreen: "#6FDE00" - brightYellow: "#CF9A00" - brightBlue: "#FC9867" - brightMagenta: "#836DF2" - brightCyan: "#78DCE8" - brightWhite: "#C7C7C5" -meta: - mode: "light" - accent: "green" - hue: null - pair: "Lotus Dark" - contrast: - fg: 98.5 - black: 96.2 - red: 63.8 - green: 39.7 - yellow: 44.1 - blue: 51.7 - magenta: 63.2 - cyan: 44.3 - white: 23.5 - brightBlack: 77.6 - brightRed: 47.3 - brightGreen: 24.2 - brightYellow: 42.7 - brightBlue: 34.9 - brightMagenta: 59.1 - brightCyan: 19.9 - brightWhite: 23.5 diff --git a/themes/lovepurple.yaml b/themes/lovepurple.yaml index 203741c6..d7f576ca 100644 --- a/themes/lovepurple.yaml +++ b/themes/lovepurple.yaml @@ -8,6 +8,7 @@ source: author: "MahdiBehkar" repo: "https://codeberg.org/behkar/lovely_purple_theme" url: "https://marketplace.visualstudio.com/items?itemName=MahdiBehkar.lovely-purple-theme" + formats: null colors: bg: "#CD9EF7" fg: "#F7F7F7" diff --git a/themes/lowlvl.yaml b/themes/lowlvl.yaml index cb61765c..f63fef2c 100644 --- a/themes/lowlvl.yaml +++ b/themes/lowlvl.yaml @@ -8,6 +8,7 @@ source: author: "Ben-Whitesell" repo: "https://github.com/bwhitesell/LowLVL/" url: "https://marketplace.visualstudio.com/items?itemName=Ben-Whitesell.lowlvl" + formats: null colors: bg: "#313233" fg: "#EEFFFF" diff --git a/themes/loyal-contrast.yaml b/themes/loyal-contrast.yaml deleted file mode 100644 index 22ee6a83..00000000 --- a/themes/loyal-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "loyal-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#1D1B23" - fg: "#BBB1C9" - black: "#292631" - red: "#BA0E2E" - green: "#3CBBB1" - yellow: "#EE4266" - blue: "#B3ADBA" - magenta: "#9484D6" - cyan: "#B3ADBA" - white: "#C8C0D3" - brightBlack: "#4D475D" - brightRed: "#F03E5F" - brightGreen: "#85D8D1" - brightYellow: "#F6A0B2" - brightBlue: "#E6E4E9" - brightMagenta: "#D7D0EF" - brightCyan: "#E6E4E9" - brightWhite: "#F0EDF3" -meta: - mode: "dark" - accent: "orange" - hue: 297 - pair: null - contrast: - fg: 60.8 - black: 0 - red: 19.9 - green: 54.5 - yellow: 36.4 - blue: 57.5 - magenta: 40.8 - cyan: 57.5 - white: 68.9 - brightBlack: 10.4 - brightRed: 36.2 - brightGreen: 72.7 - brightYellow: 62.7 - brightBlue: 89.3 - brightMagenta: 78.9 - brightCyan: 89.3 - brightWhite: 95.2 diff --git a/themes/loyal-light.yaml b/themes/loyal-light.yaml deleted file mode 100644 index bc14a8bd..00000000 --- a/themes/loyal-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "loyal-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#413E4F" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#3CBBB1" - yellow: "#EE4266" - blue: "#B3ADBA" - magenta: "#9484D6" - cyan: "#B3ADBA" - white: "#4D495D" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#85D8D1" - brightYellow: "#F6A0B2" - brightBlue: "#E6E4E9" - brightMagenta: "#D7D0EF" - brightCyan: "#E6E4E9" - brightWhite: "#706B88" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.1 - black: 0 - red: 80.3 - green: 46 - yellow: 63.7 - blue: 43 - magenta: 59.3 - cyan: 43 - white: 89.7 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 28.6 - brightYellow: 38.1 - brightBlue: 13 - brightMagenta: 22.8 - brightCyan: 13 - brightWhite: 75 diff --git a/themes/loyal.yaml b/themes/loyal.yaml deleted file mode 100644 index 5034d83b..00000000 --- a/themes/loyal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "loyal" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#413E4F" - fg: "#BBB1C9" - black: "#4D495D" - red: "#BA0E2E" - green: "#3CBBB1" - yellow: "#EE4266" - blue: "#B3ADBA" - magenta: "#9484D6" - cyan: "#B3ADBA" - white: "#C8C0D3" - brightBlack: "#706B88" - brightRed: "#F03E5F" - brightGreen: "#85D8D1" - brightYellow: "#F6A0B2" - brightBlue: "#E6E4E9" - brightMagenta: "#D7D0EF" - brightCyan: "#E6E4E9" - brightWhite: "#F0EDF3" -meta: - mode: "dark" - accent: "orange" - hue: 293 - pair: null - contrast: - fg: 52.6 - black: 0 - red: 11.7 - green: 46.3 - yellow: 28.2 - blue: 49.3 - magenta: 32.6 - cyan: 49.3 - white: 60.7 - brightBlack: 16.9 - brightRed: 28 - brightGreen: 64.5 - brightYellow: 54.4 - brightBlue: 81.1 - brightMagenta: 70.7 - brightCyan: 81.1 - brightWhite: 87 diff --git a/themes/luanslaslatheme.yaml b/themes/luanslaslatheme.yaml index 5c4e3503..88304db5 100644 --- a/themes/luanslaslatheme.yaml +++ b/themes/luanslaslatheme.yaml @@ -8,6 +8,7 @@ source: author: "LuanThierry" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LuanThierry.luanslasla-theme" + formats: null colors: bg: "#0E0E15" fg: "#FFFFFF" diff --git a/themes/luau-starlit.yaml b/themes/luau-starlit.yaml deleted file mode 100644 index 0affdd05..00000000 --- a/themes/luau-starlit.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Luau-Starlit" -source: - marketplace_id: "starlit-studios.luaux-starlit" - version: "0.1.7" - installs: 90 - rating: 0 - ratings: 0 - author: "Starlit" - repo: "https://github.com/auro67/luaux" - url: "https://marketplace.visualstudio.com/items?itemName=starlit-studios.luaux-starlit" -colors: - bg: "#030303" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.5 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/lubasiverse-freewill.yaml b/themes/lubasiverse-freewill.yaml index 5a2b406a..f0038108 100644 --- a/themes/lubasiverse-freewill.yaml +++ b/themes/lubasiverse-freewill.yaml @@ -6,6 +6,7 @@ source: author: "lubasiverse" repo: "https://github.com/yourusername/lubasiverse" url: "https://marketplace.visualstudio.com/items?itemName=lubasiverse.lubasiverse" + formats: null colors: bg: "#000000" fg: "#D4D4DC" diff --git a/themes/lubasiverse.yaml b/themes/lubasiverse.yaml index 36b38540..2748e5b1 100644 --- a/themes/lubasiverse.yaml +++ b/themes/lubasiverse.yaml @@ -6,6 +6,7 @@ source: author: "lubasiverse" repo: "https://github.com/yourusername/lubasiverse" url: "https://marketplace.visualstudio.com/items?itemName=lubasiverse.lubasiverse" + formats: null colors: bg: "#000000" fg: "#C8C8D0" diff --git a/themes/lucario.yaml b/themes/lucario.yaml index cfd0d16a..6b2f9d59 100644 --- a/themes/lucario.yaml +++ b/themes/lucario.yaml @@ -2,12 +2,13 @@ name: "Lucario" source: marketplace_id: "Ikuyadeu.lucario" version: "0.2.0" - installs: 7861 + installs: 7862 rating: 5 ratings: 2 author: "Yuki Ueda" repo: "https://github.com/Ikuyadeu/Lucario-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Ikuyadeu.lucario" + formats: null colors: bg: "#2B3E50" fg: "#F8F8F2" diff --git a/themes/lucid-labs-dark.yaml b/themes/lucid-labs-dark.yaml index ef30af9f..fa6f0eb6 100644 --- a/themes/lucid-labs-dark.yaml +++ b/themes/lucid-labs-dark.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.lucid-labs-theme" + formats: null colors: bg: "#271D3B" fg: "#E8E0F0" diff --git a/themes/lucid-labs-light.yaml b/themes/lucid-labs-light.yaml index 55a23a02..227e9678 100644 --- a/themes/lucid-labs-light.yaml +++ b/themes/lucid-labs-light.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.lucid-labs-theme" + formats: null colors: bg: "#FFFFFF" fg: "#271D3B" diff --git a/themes/lucifer-terminal-dark-hacker-edition.yaml b/themes/lucifer-terminal-dark-hacker-edition.yaml deleted file mode 100644 index ba8b90d3..00000000 --- a/themes/lucifer-terminal-dark-hacker-edition.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lucifer Terminal Dark (Hacker Edition)" -source: - marketplace_id: "NishantUnavane.lucifer-dark" - version: "1.1.0" - installs: 51 - rating: 5 - ratings: 1 - author: "Nishant Unavane" - repo: "https://github.com/IamNishant51/Lucifer-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=NishantUnavane.lucifer-dark" -colors: - bg: "#0B0E14" - fg: "#E0E8F0" - black: "#2A2F3A" - red: "#E76F7C" - green: "#73DDAA" - yellow: "#F7E16D" - blue: "#5BA9E2" - magenta: "#CC88D9" - cyan: "#66E2F5" - white: "#E0E8F0" - brightBlack: "#6A7B8E" - brightRed: "#FF8A96" - brightGreen: "#88FFC9" - brightYellow: "#FFF18A" - brightBlue: "#7EC2FA" - brightMagenta: "#E0A0F0" - brightCyan: "#88F5FF" - brightWhite: "#F0F6FC" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 91.9 - black: 0 - red: 45.1 - green: 73.7 - yellow: 87.8 - blue: 51.8 - magenta: 51.1 - cyan: 78.7 - white: 91.9 - brightBlack: 31.3 - brightRed: 57.8 - brightGreen: 93.1 - brightYellow: 96.9 - brightBlue: 65.8 - brightMagenta: 63.2 - brightCyan: 90.4 - brightWhite: 101.1 diff --git a/themes/lucky-green.yaml b/themes/lucky-green.yaml index 5f8ae4e0..b473b9de 100644 --- a/themes/lucky-green.yaml +++ b/themes/lucky-green.yaml @@ -1,4 +1,4 @@ -name: "Lucky Green" +name: "LUCKY GREEN" source: marketplace_id: "J3NGGG26.Greeny" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "J3NGGG26" repo: null url: "https://marketplace.visualstudio.com/items?itemName=J3NGGG26.Greeny" + formats: null colors: bg: "#050F0E" fg: "#40FF9C" diff --git a/themes/luckyhub.yaml b/themes/luckyhub.yaml index 1c4daf05..9a37c7c4 100644 --- a/themes/luckyhub.yaml +++ b/themes/luckyhub.yaml @@ -8,6 +8,7 @@ source: author: "Lucas Caspirro Gitti Alcaraz" repo: "https://github.com/Luck-CGA/MyTheme" url: "https://marketplace.visualstudio.com/items?itemName=LuckCGA.lucky-hub" + formats: null colors: bg: "#1E1E1E" fg: "#99C49B" diff --git a/themes/lui.yaml b/themes/lui.yaml index f8106f99..d04129d7 100644 --- a/themes/lui.yaml +++ b/themes/lui.yaml @@ -8,6 +8,7 @@ source: author: "Miu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Miu.lui" + formats: null colors: bg: "#171A1F" fg: "#E7EAEF" diff --git a/themes/luiz-dark-theme.yaml b/themes/luiz-dark-theme.yaml deleted file mode 100644 index 22e1cc8a..00000000 --- a/themes/luiz-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "luiz-dark-theme" -source: - marketplace_id: "LUIZDARKTHEME.luiz-dark-theme" - version: "0.0.8" - installs: 2946 - rating: 5 - ratings: 1 - author: "LUIZ DARK THEME" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=LUIZDARKTHEME.luiz-dark-theme" -colors: - bg: "#0D0D0D" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.6 - black: 0 - red: 27.5 - green: 53.7 - yellow: 86.4 - blue: 28.2 - magenta: 30.5 - cyan: 48.3 - white: 90.8 - brightBlack: 22.8 - brightRed: 39.3 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 90.8 diff --git a/themes/luiz.yaml b/themes/luiz.yaml index f5ca1957..98ec6bfd 100644 --- a/themes/luiz.yaml +++ b/themes/luiz.yaml @@ -8,6 +8,7 @@ source: author: "Luizneton13" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Luizneton13.deeptheme" + formats: null colors: bg: "#101019" fg: "#E0E0E0" diff --git a/themes/luke-skywriter.yaml b/themes/luke-skywriter.yaml deleted file mode 100644 index 58c27f3a..00000000 --- a/themes/luke-skywriter.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Luke Skywriter" -source: - marketplace_id: "Dutchorange.space-wars" - version: "1.1.7" - installs: 1711 - rating: 5 - ratings: 3 - author: "Dutchorange" - repo: "https://github.com/entropy-glitch/space-wars" - url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" -colors: - bg: "#1C2A3D" - fg: "#E9E9E9" - black: "#2C3B4E" - red: "#FF9B9B" - green: "#9BE0AE" - yellow: "#FFE0A0" - blue: "#87CEEB" - magenta: "#E0B0FF" - cyan: "#98E0E8" - white: "#E9E9E9" - brightBlack: "#6B8299" - brightRed: "#FFB0B0" - brightGreen: "#B0FFB0" - brightYellow: "#FFE8B0" - brightBlue: "#B0E8FF" - brightMagenta: "#FFB0E8" - brightCyan: "#B0FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 256 - pair: null - contrast: - fg: 89.8 - black: 0 - red: 59.7 - green: 74.7 - yellow: 86.3 - blue: 67.4 - magenta: 66.3 - cyan: 76.8 - white: 89.8 - brightBlack: 30.8 - brightRed: 67.6 - brightGreen: 91.9 - brightYellow: 90.4 - brightBlue: 83.9 - brightMagenta: 70.1 - brightCyan: 95.1 - brightWhite: 104.1 diff --git a/themes/lull.yaml b/themes/lull.yaml index 5576772d..6046d1d0 100644 --- a/themes/lull.yaml +++ b/themes/lull.yaml @@ -8,6 +8,7 @@ source: author: "Lull" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Lull.lull-theme" + formats: null colors: bg: "#212121" fg: "#E1E2DE" diff --git a/themes/lulutheme.yaml b/themes/lulutheme.yaml index a3b5cb9e..5ffa7b67 100644 --- a/themes/lulutheme.yaml +++ b/themes/lulutheme.yaml @@ -8,6 +8,7 @@ source: author: "Aylen Martinez" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LuluAylen00.lulutheme" + formats: null colors: bg: "#060205" fg: "#D4D4D4" diff --git a/themes/lumen-dark.yaml b/themes/lumen-dark.yaml index 5c2117fd..2adc9c53 100644 --- a/themes/lumen-dark.yaml +++ b/themes/lumen-dark.yaml @@ -2,12 +2,13 @@ name: "Lumen Dark" source: marketplace_id: "devimicael.lumen-dark" version: "1.0.5" - installs: 342 + installs: 344 rating: 0 ratings: 0 author: "Devimicael" repo: "https://github.com/devimicael/lumen-dark" url: "https://marketplace.visualstudio.com/items?itemName=devimicael.lumen-dark" + formats: null colors: bg: "#1A1B1E" fg: "#E8EAED" diff --git a/themes/lumenrift.yaml b/themes/lumenrift.yaml index d159465a..0c8bcbe7 100644 --- a/themes/lumenrift.yaml +++ b/themes/lumenrift.yaml @@ -8,6 +8,7 @@ source: author: "Satyam Rana" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SatyamRana.the-prime-themes" + formats: null colors: bg: "#F5FEFD" fg: "#2C3E50" diff --git a/themes/lumin.yaml b/themes/lumin.yaml index 330049d2..bcfd0c6c 100644 --- a/themes/lumin.yaml +++ b/themes/lumin.yaml @@ -8,6 +8,7 @@ source: author: "thisisroi" repo: "https://github.com/thisisroi/lumin-theme" url: "https://marketplace.visualstudio.com/items?itemName=thisisroi.lumin" + formats: null colors: bg: "#252525" fg: "#8E8E8E" diff --git a/themes/lumina.yaml b/themes/lumina.yaml index 90fd3cd1..a98c2285 100644 --- a/themes/lumina.yaml +++ b/themes/lumina.yaml @@ -8,6 +8,7 @@ source: author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.lumina" + formats: null colors: bg: "#F5F5F5" fg: "#333333" diff --git a/themes/luminara-void.yaml b/themes/luminara-void.yaml index cdfb1e9d..e5bf0c9c 100644 --- a/themes/luminara-void.yaml +++ b/themes/luminara-void.yaml @@ -8,6 +8,7 @@ source: author: "zaid_khan" repo: "https://github.com/zaidkhan/novaflux-theme" url: "https://marketplace.visualstudio.com/items?itemName=zaidkhan.novaflux" + formats: null colors: bg: "#0B001A" fg: "#ECECEC" diff --git a/themes/luminarca-crep-sculo.yaml b/themes/luminarca-crep-sculo.yaml index 2c896c67..c23e0f0d 100644 --- a/themes/luminarca-crep-sculo.yaml +++ b/themes/luminarca-crep-sculo.yaml @@ -8,6 +8,7 @@ source: author: "Ricarth Lima" repo: "https://github.com/ricarthlima/luminarca-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=ricarthlima.luminarca-theme" + formats: null colors: bg: "#1D2227" fg: "#E0F7FA" diff --git a/themes/luminarca-luz.yaml b/themes/luminarca-luz.yaml index 8a9bc4a4..bf09a7cb 100644 --- a/themes/luminarca-luz.yaml +++ b/themes/luminarca-luz.yaml @@ -8,6 +8,7 @@ source: author: "Ricarth Lima" repo: "https://github.com/ricarthlima/luminarca-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=ricarthlima.luminarca-theme" + formats: null colors: bg: "#E6F7FF" fg: "#111821" diff --git a/themes/luminarca-trevas.yaml b/themes/luminarca-trevas.yaml index 2a2d4368..5dac1870 100644 --- a/themes/luminarca-trevas.yaml +++ b/themes/luminarca-trevas.yaml @@ -8,6 +8,7 @@ source: author: "Ricarth Lima" repo: "https://github.com/ricarthlima/luminarca-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=ricarthlima.luminarca-theme" + formats: null colors: bg: "#0A0F14" fg: "#E0F7FA" diff --git a/themes/luminashade-amethyst.yaml b/themes/luminashade-amethyst.yaml deleted file mode 100644 index fd2a5e0f..00000000 --- a/themes/luminashade-amethyst.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "LuminaShade-Amethyst" -source: - marketplace_id: "JackPritomSoren.luminashade" - version: "1.0.5" - installs: 140 - rating: 0 - ratings: 0 - author: "Jack Pritom Soren" - repo: "https://github.com/jps27CSE/LuminaShade-VSCode-Extension" - url: "https://marketplace.visualstudio.com/items?itemName=JackPritomSoren.luminashade" -colors: - bg: "#1E1B2C" - fg: "#E0DFE8" - black: "#1B1826" - red: "#FF9AB8" - green: "#7FE6A5" - yellow: "#FFDF80" - blue: "#8FD8FF" - magenta: "#C18FFF" - cyan: "#A0C0FF" - white: "#E0DFE8" - brightBlack: "#7E7399" - brightRed: "#FFB6C1" - brightGreen: "#A0D6A0" - brightYellow: "#FFE699" - brightBlue: "#B0E0FF" - brightMagenta: "#D4BFFF" - brightCyan: "#C0D0FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 292 - pair: null - contrast: - fg: 86.1 - black: 0 - red: 62.5 - green: 77.2 - yellow: 87.1 - blue: 75.6 - magenta: 52.6 - cyan: 66.6 - white: 86.1 - brightBlack: 29.6 - brightRed: 72.4 - brightGreen: 71.9 - brightYellow: 90.8 - brightBlue: 82.2 - brightMagenta: 72.2 - brightCyan: 76.8 - brightWhite: 106.1 diff --git a/themes/lumineclipse.yaml b/themes/lumineclipse.yaml deleted file mode 100644 index c8627ac2..00000000 --- a/themes/lumineclipse.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "LuminEclipse" -source: - marketplace_id: "ramonebidhem.lumineclips" - version: "0.0.1" - installs: 73 - rating: 0 - ratings: 0 - author: "Mehdi" - repo: "https://github.com/ramonebidhem/LuminEclips" - url: "https://marketplace.visualstudio.com/items?itemName=ramonebidhem.lumineclips" -colors: - bg: "#00141A" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 218 - pair: null - contrast: - fg: 107.3 - black: 0 - red: 27.1 - green: 53.4 - yellow: 86 - blue: 27.8 - magenta: 30.1 - cyan: 47.9 - white: 90.4 - brightBlack: 22.4 - brightRed: 38.9 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.4 - brightMagenta: 45.8 - brightCyan: 55.8 - brightWhite: 90.4 diff --git a/themes/luminescence-theme.yaml b/themes/luminescence-theme.yaml index 6ebef01d..ba182e77 100644 --- a/themes/luminescence-theme.yaml +++ b/themes/luminescence-theme.yaml @@ -2,12 +2,13 @@ name: "Luminescence Theme" source: marketplace_id: "andreluis-oliveira.material-palenight-high-constrast-theme" version: "2.1.11" - installs: 2769 + installs: 2770 rating: 5 ratings: 1 author: "andreluis-oliveira" repo: "https://github.com/andreluis-oliveira/vscode-palenight-theme-high-contrast" url: "https://marketplace.visualstudio.com/items?itemName=andreluis-oliveira.material-palenight-high-constrast-theme" + formats: null colors: bg: "#151720" fg: "#E6EDF3" diff --git a/themes/lumon-theme.yaml b/themes/lumon-theme.yaml deleted file mode 100644 index 130edde1..00000000 --- a/themes/lumon-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lumon Theme" -source: - marketplace_id: "cluzier.lumon" - version: "0.0.42" - installs: 208 - rating: 5 - ratings: 1 - author: "Conner Luzier" - repo: "https://github.com/cluzier/lumon" - url: "https://marketplace.visualstudio.com/items?itemName=cluzier.lumon" -colors: - bg: "#081E28" - fg: "#79E6FF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 230 - pair: null - contrast: - fg: 80.9 - black: 0 - red: 26.1 - green: 52.4 - yellow: 85 - blue: 26.8 - magenta: 29.2 - cyan: 46.9 - white: 89.4 - brightBlack: 21.4 - brightRed: 38 - brightGreen: 62.9 - brightYellow: 95 - brightBlue: 39.4 - brightMagenta: 44.8 - brightCyan: 54.8 - brightWhite: 89.4 diff --git a/themes/lumos-black.yaml b/themes/lumos-black.yaml index a8acfb1d..b3c97d71 100644 --- a/themes/lumos-black.yaml +++ b/themes/lumos-black.yaml @@ -8,6 +8,7 @@ source: author: "nyxb" repo: "https://github.com/nyxb/vscode-theme-lumos" url: "https://marketplace.visualstudio.com/items?itemName=nyxb.theme-lumos" + formats: null colors: bg: "#000000" fg: "#DBD7CA" diff --git a/themes/lumos-dark-soft.yaml b/themes/lumos-dark-soft.yaml index a28cce54..6bf78933 100644 --- a/themes/lumos-dark-soft.yaml +++ b/themes/lumos-dark-soft.yaml @@ -8,6 +8,7 @@ source: author: "nyxb" repo: "https://github.com/nyxb/vscode-theme-lumos" url: "https://marketplace.visualstudio.com/items?itemName=nyxb.theme-lumos" + formats: null colors: bg: "#222222" fg: "#DBD7CA" @@ -31,7 +32,7 @@ meta: mode: "dark" accent: "red" hue: null - pair: "Lumos Light Soft" + pair: null contrast: fg: 79.9 black: 0 diff --git a/themes/lumos-dark.yaml b/themes/lumos-dark.yaml index 4a82389f..93979148 100644 --- a/themes/lumos-dark.yaml +++ b/themes/lumos-dark.yaml @@ -8,6 +8,7 @@ source: author: "nyxb" repo: "https://github.com/nyxb/vscode-theme-lumos" url: "https://marketplace.visualstudio.com/items?itemName=nyxb.theme-lumos" + formats: null colors: bg: "#121212" fg: "#DBD7CA" diff --git a/themes/lumos-light-soft.yaml b/themes/lumos-light-soft.yaml deleted file mode 100644 index 8cc4366e..00000000 --- a/themes/lumos-light-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lumos Light Soft" -source: - marketplace_id: "nyxb.theme-lumos" - version: "0.0.12" - installs: 874 - rating: 0 - ratings: 0 - author: "nyxb" - repo: "https://github.com/nyxb/vscode-theme-lumos" - url: "https://marketplace.visualstudio.com/items?itemName=nyxb.theme-lumos" -colors: - bg: "#F1F0E9" - fg: "#393A34" - black: "#121212" - red: "#AB5959" - green: "#1E754F" - yellow: "#BDA437" - blue: "#296AA3" - magenta: "#A13865" - cyan: "#2993A3" - white: "#DBD7CA" - brightBlack: "#AAAAAA" - brightRed: "#AB5959" - brightGreen: "#1E754F" - brightYellow: "#BDA437" - brightBlue: "#296AA3" - brightMagenta: "#A13865" - brightCyan: "#2993A3" - brightWhite: "#DDDDDD" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Lumos Dark Soft" - contrast: - fg: 87.4 - black: 96.2 - red: 64.4 - green: 68.8 - yellow: 39.2 - blue: 69.1 - magenta: 72 - cyan: 54.4 - white: 12 - brightBlack: 36.7 - brightRed: 64.4 - brightGreen: 68.8 - brightYellow: 39.2 - brightBlue: 69.1 - brightMagenta: 72 - brightCyan: 54.4 - brightWhite: 8.5 diff --git a/themes/lunar-eclipse-golden-hour.yaml b/themes/lunar-eclipse-golden-hour.yaml deleted file mode 100644 index 15d4460f..00000000 --- a/themes/lunar-eclipse-golden-hour.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lunar Eclipse Golden Hour" -source: - marketplace_id: "ginfuru.lunar-eclipse" - version: "0.1.4" - installs: 10316 - rating: 5 - ratings: 1 - author: "Ed Heltzel" - repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" -colors: - bg: "#191C1D" - fg: "#AFA188" - black: "#F4EBC2" - red: "#C7231C" - green: "#939214" - yellow: "#D09420" - blue: "#00B6C2" - magenta: "#85598E" - cyan: "#5F8F61" - white: "#191C1D" - brightBlack: "#666666" - brightRed: "#ED4531" - brightGreen: "#AEB124" - brightYellow: "#EFB52D" - brightBlue: "#7D9D91" - brightMagenta: "#B37EC8" - brightCyan: "#8BBC79" - brightWhite: "#F4EBC2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 50.7 - black: 92.9 - red: 23.6 - green: 40 - yellow: 49.1 - blue: 52.4 - magenta: 22.9 - cyan: 35.1 - white: 0 - brightBlack: 21.5 - brightRed: 35.8 - brightGreen: 55.3 - brightYellow: 66.3 - brightBlue: 44.2 - brightMagenta: 42.2 - brightCyan: 57.5 - brightWhite: 92.9 diff --git a/themes/lunar-eclipse-light.yaml b/themes/lunar-eclipse-light.yaml deleted file mode 100644 index 4fff4f88..00000000 --- a/themes/lunar-eclipse-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lunar Eclipse Light" -source: - marketplace_id: "ginfuru.lunar-eclipse" - version: "0.1.4" - installs: 10316 - rating: 5 - ratings: 1 - author: "Ed Heltzel" - repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" -colors: - bg: "#F4F2F6" - fg: "#455059" - black: "#63828A" - red: "#FF0046" - green: "#1EA330" - yellow: "#C06736" - blue: "#0F7CD7" - magenta: "#B016EE" - cyan: "#007874" - white: "#A19CBC" - brightBlack: "#303742" - brightRed: "#FF3A70" - brightGreen: "#30B95E" - brightYellow: "#AB5200" - brightBlue: "#09A1ED" - brightMagenta: "#BF45F3" - brightCyan: "#009793" - brightWhite: "#958FB7" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 81.2 - black: 61 - red: 56.4 - green: 52.6 - yellow: 59.7 - blue: 61.8 - magenta: 65.2 - cyan: 68.7 - white: 43.9 - brightBlack: 90.2 - brightRed: 53.1 - brightGreen: 42.2 - brightYellow: 68.6 - brightBlue: 46.8 - brightMagenta: 58.2 - brightCyan: 55.6 - brightWhite: 50 diff --git a/themes/lunar-eclipse.yaml b/themes/lunar-eclipse.yaml deleted file mode 100644 index 19ef6fa9..00000000 --- a/themes/lunar-eclipse.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lunar Eclipse" -source: - marketplace_id: "ginfuru.lunar-eclipse" - version: "0.1.4" - installs: 10316 - rating: 5 - ratings: 1 - author: "Ed Heltzel" - repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" -colors: - bg: "#171131" - fg: "#EEEEEE" - black: "#63828A" - red: "#FF0046" - green: "#2DAE58" - yellow: "#CF9C00" - blue: "#09A1ED" - magenta: "#EA00D9" - cyan: "#AF79FE" - white: "#DDE4F1" - brightBlack: "#303742" - brightRed: "#FF2E87" - brightGreen: "#25DA6A" - brightYellow: "#FFC104" - brightBlue: "#41B9FF" - brightMagenta: "#C75AF3" - brightCyan: "#16DAD6" - brightWhite: "#E3EEFE" -meta: - mode: "dark" - accent: "pink" - hue: 288 - pair: null - contrast: - fg: 95.7 - black: 32.3 - red: 36.9 - green: 46.3 - yellow: 52.2 - blue: 46.7 - magenta: 37.7 - cyan: 44.3 - white: 89.1 - brightBlack: 0 - brightRed: 39.9 - brightGreen: 67.2 - brightYellow: 74.1 - brightBlue: 58.6 - brightMagenta: 40 - brightCyan: 70.6 - brightWhite: 95.1 diff --git a/themes/lunar-pink-satellite.yaml b/themes/lunar-pink-satellite.yaml deleted file mode 100644 index ebce57d3..00000000 --- a/themes/lunar-pink-satellite.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lunar Pink Satellite" -source: - marketplace_id: "nicolasdschmidt.lunar-pink" - version: "1.4.0" - installs: 194473 - rating: 5 - ratings: 11 - author: "Nícolas D. Schmidt" - repo: "https://github.com/tronfy/lunar-pink" - url: "https://marketplace.visualstudio.com/items?itemName=nicolasdschmidt.lunar-pink" -colors: - bg: "#262626" - fg: "#DDDDDD" - black: "#777777" - red: "#C50000" - green: "#23AD09" - yellow: "#F0B800" - blue: "#004AAA" - magenta: "#A7097A" - cyan: "#05A6A8" - white: "#DDDDDD" - brightBlack: "#AAAAAA" - brightRed: "#FF0000" - brightGreen: "#2AE609" - brightYellow: "#FFD900" - brightBlue: "#008CFF" - brightMagenta: "#E621AF" - brightCyan: "#09E4E6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 82.9 - black: 27.5 - red: 20.5 - green: 43 - yellow: 65.9 - blue: 11.5 - magenta: 16.3 - cyan: 42.8 - white: 82.9 - brightBlack: 53.2 - brightRed: 34.5 - brightGreen: 70.5 - brightYellow: 82 - brightBlue: 38.1 - brightMagenta: 32.9 - brightCyan: 74.1 - brightWhite: 104.8 diff --git a/themes/lunar-pink.yaml b/themes/lunar-pink.yaml deleted file mode 100644 index 5cbf79c0..00000000 --- a/themes/lunar-pink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lunar Pink" -source: - marketplace_id: "nicolasdschmidt.lunar-pink" - version: "1.4.0" - installs: 194473 - rating: 5 - ratings: 11 - author: "Nícolas D. Schmidt" - repo: "https://github.com/tronfy/lunar-pink" - url: "https://marketplace.visualstudio.com/items?itemName=nicolasdschmidt.lunar-pink" -colors: - bg: "#131313" - fg: "#DDDDDD" - black: "#777777" - red: "#C50000" - green: "#23AD09" - yellow: "#F0B800" - blue: "#004AAA" - magenta: "#A7097A" - cyan: "#05A6A8" - white: "#DDDDDD" - brightBlack: "#AAAAAA" - brightRed: "#FF0000" - brightGreen: "#2AE609" - brightYellow: "#FFD900" - brightBlue: "#008CFF" - brightMagenta: "#E621AF" - brightCyan: "#09E4E6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 85.4 - black: 29.9 - red: 23 - green: 45.4 - yellow: 68.4 - blue: 14 - magenta: 18.8 - cyan: 45.2 - white: 85.4 - brightBlack: 55.6 - brightRed: 36.9 - brightGreen: 72.9 - brightYellow: 84.5 - brightBlue: 40.5 - brightMagenta: 35.3 - brightCyan: 76.6 - brightWhite: 107.2 diff --git a/themes/lunar-theme.yaml b/themes/lunar-theme.yaml deleted file mode 100644 index 38d03f94..00000000 --- a/themes/lunar-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lunar Theme" -source: - marketplace_id: "MarcMarcet.lunar-color-theme" - version: "0.2.1" - installs: 829 - rating: 0 - ratings: 0 - author: "Marc Marcet" - repo: "https://github.com/marc-marcet/lunar-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MarcMarcet.lunar-color-theme" -colors: - bg: "#10061D" - fg: "#D4D4D4" - black: "#4F4F4F" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 302 - pair: null - contrast: - fg: 80.2 - black: 13.6 - red: 27.5 - green: 53.8 - yellow: 86.4 - blue: 28.2 - magenta: 30.5 - cyan: 48.3 - white: 90.8 - brightBlack: 22.8 - brightRed: 39.3 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 90.8 diff --git a/themes/lunar-vscode.yaml b/themes/lunar-vscode.yaml deleted file mode 100644 index 6996611c..00000000 --- a/themes/lunar-vscode.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "lunar vscode" -source: - marketplace_id: "JuniorSchmidt.lunar-vscode-theme" - version: "1.0.8" - installs: 4286 - rating: 5 - ratings: 2 - author: "Junior Schmidt" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=JuniorSchmidt.lunar-vscode-theme" -colors: - bg: "#1A1B26" - fg: "#AFB9E0" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 280 - pair: null - contrast: - fg: 63.7 - black: 0 - red: 26.2 - green: 52.5 - yellow: 85.1 - blue: 26.9 - magenta: 29.2 - cyan: 47 - white: 89.5 - brightBlack: 21.5 - brightRed: 38 - brightGreen: 63 - brightYellow: 95.1 - brightBlue: 39.5 - brightMagenta: 44.8 - brightCyan: 54.9 - brightWhite: 89.5 diff --git a/themes/lunar.yaml b/themes/lunar.yaml deleted file mode 100644 index 45a4ac46..00000000 --- a/themes/lunar.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lunar" -source: - marketplace_id: "alvarosannas.nix" - version: "1.4.8" - installs: 2950 - rating: 5 - ratings: 1 - author: "Alvaro Santana" - repo: "https://github.com/alvarosannas/nix" - url: "https://marketplace.visualstudio.com/items?itemName=alvarosannas.nix" -colors: - bg: "#1C1E26" - fg: "#F8F8F2" - black: "#1A1A1A" - red: "#F24B78" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#30BCED" - magenta: "#A978FF" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#1A1A1A" - brightRed: "#F24B78" - brightGreen: "#50FA7B" - brightYellow: "#F1FA8C" - brightBlue: "#30BCED" - brightMagenta: "#A978FF" - brightCyan: "#8BE9FD" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "green" - hue: 274 - pair: null - contrast: - fg: 101.1 - black: 0 - red: 38.7 - green: 84 - yellow: 97.7 - blue: 57.4 - magenta: 42.5 - cyan: 83.1 - white: 101.1 - brightBlack: 0 - brightRed: 38.7 - brightGreen: 84 - brightYellow: 97.7 - brightBlue: 57.4 - brightMagenta: 42.5 - brightCyan: 83.1 - brightWhite: 101.1 diff --git a/themes/lunaria.yaml b/themes/lunaria.yaml index cba3d4fb..68e3badf 100644 --- a/themes/lunaria.yaml +++ b/themes/lunaria.yaml @@ -8,6 +8,7 @@ source: author: "Avetis" repo: "https://github.com/AvetisDN/lunaria-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.lunaria" + formats: null colors: bg: "#323F46" fg: "#DFE2ED" diff --git a/themes/lunna-dark.yaml b/themes/lunna-dark.yaml index ea4f50c2..14378112 100644 --- a/themes/lunna-dark.yaml +++ b/themes/lunna-dark.yaml @@ -8,6 +8,7 @@ source: author: "ryangustav" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ryangustav.lunna-dark-theme" + formats: null colors: bg: "#0E0013" fg: "#FF91DE" diff --git a/themes/lupine.yaml b/themes/lupine.yaml index aca36dc7..292eba21 100644 --- a/themes/lupine.yaml +++ b/themes/lupine.yaml @@ -8,6 +8,7 @@ source: author: "Katie Linero" repo: "https://github.com/katie7r/lupine-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=katie7r.lupine-color-theme" + formats: null colors: bg: "#010D00" fg: "#E4F2F1" diff --git a/themes/lupus.yaml b/themes/lupus.yaml index 28a9a8a1..30caa644 100644 --- a/themes/lupus.yaml +++ b/themes/lupus.yaml @@ -8,6 +8,7 @@ source: author: "Johann Woelper" repo: "https://github.com/woelper/lupus-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jwoelper.lupus" + formats: null colors: bg: "#4B4A4A" fg: "#DEDEDE" diff --git a/themes/luxark.yaml b/themes/luxark.yaml index cf69116d..2928238e 100644 --- a/themes/luxark.yaml +++ b/themes/luxark.yaml @@ -8,6 +8,7 @@ source: author: "gionkez" repo: "https://github.com/dellarosciagiorgio/luxark" url: "https://marketplace.visualstudio.com/items?itemName=gnkz.luxark" + formats: null colors: bg: "#252525" fg: "#C0C0C0" diff --git a/themes/luxeforest.yaml b/themes/luxeforest.yaml index 4dc7313a..4b8a19da 100644 --- a/themes/luxeforest.yaml +++ b/themes/luxeforest.yaml @@ -8,6 +8,7 @@ source: author: "gaopow" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gaopow.luxeforest" + formats: null colors: bg: "#001503" fg: "#FFDABC" diff --git a/themes/lyra-s-vega.yaml b/themes/lyra-s-vega.yaml deleted file mode 100644 index 60633947..00000000 --- a/themes/lyra-s-vega.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Lyra's Vega" -source: - marketplace_id: "Mubariz.a-pastel-fever-dream" - version: "1.0.1" - installs: 4449 - rating: 0 - ratings: 0 - author: "Mubariz" - repo: "https://github.com/Cyna298/a-pastel-fever-dream" - url: "https://marketplace.visualstudio.com/items?itemName=Mubariz.a-pastel-fever-dream" -colors: - bg: "#1E1E1E" - fg: "#BEBEBE" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 65.6 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/lztheme.yaml b/themes/lztheme.yaml index ff2207df..2f9e07b0 100644 --- a/themes/lztheme.yaml +++ b/themes/lztheme.yaml @@ -8,6 +8,7 @@ source: author: "LzTheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LzTheme.LzTheme" + formats: null colors: bg: "#1D1D1D" fg: "#B0B0B0" diff --git a/themes/m-jtgzc.yaml b/themes/m-jtgzc.yaml index e5df479f..3428f55c 100644 --- a/themes/m-jtgzc.yaml +++ b/themes/m-jtgzc.yaml @@ -8,6 +8,7 @@ source: author: "Melih Ozdemir" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MelihOzdemir.jatgozic" + formats: null colors: bg: "#111010" fg: "#00FFF3" diff --git a/themes/m-unity-s-custom-vscode-theme.yaml b/themes/m-unity-s-custom-vscode-theme.yaml index 0157ba52..bda56046 100644 --- a/themes/m-unity-s-custom-vscode-theme.yaml +++ b/themes/m-unity-s-custom-vscode-theme.yaml @@ -8,6 +8,7 @@ source: author: "M-Unity Software" repo: null url: "https://marketplace.visualstudio.com/items?itemName=M-UnitySoftware.m-unity-s-custom-vs-code-theme" + formats: null colors: bg: "#160000" fg: "#FF0000" diff --git a/themes/m.yaml b/themes/m.yaml index f17f8f34..59f6c551 100644 --- a/themes/m.yaml +++ b/themes/m.yaml @@ -8,6 +8,7 @@ source: author: "deeckard" repo: null url: "https://marketplace.visualstudio.com/items?itemName=deeckardlabs.deeckard-m-theme" + formats: null colors: bg: "#0F0F0F" fg: "#515151" diff --git a/themes/m2d-fork.yaml b/themes/m2d-fork.yaml index fd4c4e2b..3aecac37 100644 --- a/themes/m2d-fork.yaml +++ b/themes/m2d-fork.yaml @@ -8,6 +8,7 @@ source: author: "Venice Technology" repo: null url: "https://marketplace.visualstudio.com/items?itemName=VeniceTechnology.venice" + formats: null colors: bg: "#303841" fg: "#D9DEE9" diff --git a/themes/mac-theme.yaml b/themes/mac-theme.yaml index 66c65481..039a1a0a 100644 --- a/themes/mac-theme.yaml +++ b/themes/mac-theme.yaml @@ -8,6 +8,7 @@ source: author: "zmgawr0" repo: null url: "https://marketplace.visualstudio.com/items?itemName=zmgawr0.rosegoldmac" + formats: null colors: bg: "#141322" fg: "#94B4C4" diff --git a/themes/mach1-theme.yaml b/themes/mach1-theme.yaml index ed6f23ce..2c7c95d0 100644 --- a/themes/mach1-theme.yaml +++ b/themes/mach1-theme.yaml @@ -1,4 +1,4 @@ -name: "Mach1 Theme" +name: "MACH1 Theme" source: marketplace_id: "mach1-theme-color.mach1-theme-color" version: "1.0.3" @@ -8,6 +8,7 @@ source: author: "MACH1-Theme" repo: "https://github.com/agnos-goncalves/mach1-theme-color-vscode" url: "https://marketplace.visualstudio.com/items?itemName=mach1-theme-color.mach1-theme-color" + formats: null colors: bg: "#090E3A" fg: "#D4D4D4" diff --git a/themes/machine.yaml b/themes/machine.yaml deleted file mode 100644 index 4f95de98..00000000 --- a/themes/machine.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Machine" -source: - marketplace_id: "rafaelburghausen.rafa-theme" - version: "3.0.6" - installs: 1204 - rating: 5 - ratings: 1 - author: "rafaelburghausen" - repo: "https://github.com/marcos-burghausen/Extensao-Rafa" - url: "https://marketplace.visualstudio.com/items?itemName=rafaelburghausen.rafa-theme" -colors: - bg: "#273136" - fg: "#F2FFFC" - black: "#3A4449" - red: "#FF6D7E" - green: "#A2E57B" - yellow: "#FFED72" - blue: "#FFB270" - magenta: "#BAA0F8" - cyan: "#7CD5F1" - white: "#F2FFFC" - brightBlack: "#6B7678" - brightRed: "#FF6D7E" - brightGreen: "#A2E57B" - brightYellow: "#FFED72" - brightBlue: "#FFB270" - brightMagenta: "#BAA0F8" - brightCyan: "#7CD5F1" - brightWhite: "#F2FFFC" -meta: - mode: "dark" - accent: "orange" - hue: 230 - pair: null - contrast: - fg: 100.9 - black: 0 - red: 45 - green: 75 - yellow: 89.9 - blue: 65.3 - magenta: 53.6 - cyan: 68.9 - white: 100.9 - brightBlack: 24.2 - brightRed: 45 - brightGreen: 75 - brightYellow: 89.9 - brightBlue: 65.3 - brightMagenta: 53.6 - brightCyan: 68.9 - brightWhite: 100.9 diff --git a/themes/macho-man.yaml b/themes/macho-man.yaml index 931810bd..9781166c 100644 --- a/themes/macho-man.yaml +++ b/themes/macho-man.yaml @@ -8,6 +8,7 @@ source: author: "Keith Brewster" repo: "https://github.com/brewsterbhg/machoman-vscode" url: "https://marketplace.visualstudio.com/items?itemName=switchcasebreak.macho-man" + formats: null colors: bg: "#27221F" fg: "#E9F459" diff --git a/themes/macos-classic-dark.yaml b/themes/macos-classic-dark.yaml deleted file mode 100644 index 3d5d0e3c..00000000 --- a/themes/macos-classic-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "macOS Classic Dark" -source: - marketplace_id: "MacOSClassicTheme.macos-classic-theme" - version: "0.1.0" - installs: 216 - author: "CHENJIE" - repo: "https://github.com/wavyhair/vscode-macos-classic-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MacOSClassicTheme.macos-classic-theme" -colors: - bg: "#131313" - fg: "#DDDDDD" - black: "#E8E4CF" - red: "#A8473B" - green: "#76BA53" - yellow: "#E1D797" - blue: "#082190" - magenta: "#AE30C2" - cyan: "#3DB6B0" - white: "#131313" - brightBlack: "#57564F" - brightRed: "#DD6F61" - brightGreen: "#9DE478" - brightYellow: "#857F5C" - brightBlue: "#81A9F6" - brightMagenta: "#D86DE9" - brightCyan: "#5BDFD8" - brightWhite: "#3A3A3A" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: "macOS Classic Light" - contrast: - fg: 85.4 - black: 89.4 - red: 22.8 - green: 55.2 - yellow: 80.7 - blue: 0 - magenta: 26.2 - cyan: 53.2 - white: 0 - brightBlack: 15.7 - brightRed: 42.1 - brightGreen: 78.4 - brightYellow: 33.3 - brightBlue: 55.2 - brightMagenta: 46.6 - brightCyan: 75 - brightWhite: 0 diff --git a/themes/macos-classic-light.yaml b/themes/macos-classic-light.yaml deleted file mode 100644 index 4ad29046..00000000 --- a/themes/macos-classic-light.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "macOS Classic Light" -source: - marketplace_id: "MacOSClassicTheme.macos-classic-theme" - version: "0.1.0" - installs: 216 - author: "CHENJIE" - repo: "https://github.com/wavyhair/vscode-macos-classic-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MacOSClassicTheme.macos-classic-theme" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#C5060B" - green: "#277F2B" - yellow: "#8E7823" - blue: "#282BFF" - magenta: "#AE30C2" - cyan: "#00767C" - white: "#FFFFFF" - brightBlack: "#4A4A4A" - brightRed: "#D9564E" - brightGreen: "#35BD33" - brightYellow: "#BDA400" - brightBlue: "#5685F4" - brightMagenta: "#D75CE7" - brightCyan: "#20B1C9" - brightWhite: "#999999" -meta: - mode: "light" - accent: "purple" - hue: null - pair: "macOS Classic Dark" - contrast: - fg: 106 - black: 106 - red: 78.1 - green: 74.5 - yellow: 69.8 - blue: 83.4 - magenta: 74.8 - cyan: 76.4 - white: 0 - brightBlack: 90.3 - brightRed: 65.6 - brightGreen: 48.1 - brightYellow: 48.5 - brightBlue: 61.9 - brightMagenta: 58.4 - brightCyan: 49.7 - brightWhite: 54.6 diff --git a/themes/macos.yaml b/themes/macos.yaml index 38aab931..0c736c4b 100644 --- a/themes/macos.yaml +++ b/themes/macos.yaml @@ -8,6 +8,7 @@ source: author: "sidiousvic" repo: "https://github.com/sidiousvic/glitch-dark-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sidiousvic.glitch-dark" + formats: null colors: bg: "#0F0F0F" fg: "#FFFFFF" diff --git a/themes/macrodata-refiners-classic.yaml b/themes/macrodata-refiners-classic.yaml index 28c7eb24..33cb899a 100644 --- a/themes/macrodata-refiners-classic.yaml +++ b/themes/macrodata-refiners-classic.yaml @@ -8,6 +8,7 @@ source: author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" + formats: null colors: bg: "#04090D" fg: "#B0B8B8" diff --git a/themes/macrodata-refiners-cold-harbor.yaml b/themes/macrodata-refiners-cold-harbor.yaml index a36d7b73..5f81848c 100644 --- a/themes/macrodata-refiners-cold-harbor.yaml +++ b/themes/macrodata-refiners-cold-harbor.yaml @@ -8,6 +8,7 @@ source: author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" + formats: null colors: bg: "#020508" fg: "#AAB5C0" diff --git a/themes/macrodata-refiners-defiant-jazz.yaml b/themes/macrodata-refiners-defiant-jazz.yaml index 552ff6ca..983566b0 100644 --- a/themes/macrodata-refiners-defiant-jazz.yaml +++ b/themes/macrodata-refiners-defiant-jazz.yaml @@ -8,6 +8,7 @@ source: author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" + formats: null colors: bg: "#000000" fg: "#CCC0D0" diff --git a/themes/macrodata-refiners-ortbo.yaml b/themes/macrodata-refiners-ortbo.yaml index a54387fe..789fb6f5 100644 --- a/themes/macrodata-refiners-ortbo.yaml +++ b/themes/macrodata-refiners-ortbo.yaml @@ -8,6 +8,7 @@ source: author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" + formats: null colors: bg: "#F8FAFB" fg: "#2A3A48" diff --git a/themes/macrodata-refiners-sweet-vitriol.yaml b/themes/macrodata-refiners-sweet-vitriol.yaml index a97bbf00..4a5e74fa 100644 --- a/themes/macrodata-refiners-sweet-vitriol.yaml +++ b/themes/macrodata-refiners-sweet-vitriol.yaml @@ -8,6 +8,7 @@ source: author: "guinetik" repo: "https://github.com/guinetik/macrodata-refiners-severance-theme" url: "https://marketplace.visualstudio.com/items?itemName=guinetik.macrodata-refiners-severance-theme" + formats: null colors: bg: "#F5F2ED" fg: "#3A4A54" diff --git a/themes/mad-dark-volt.yaml b/themes/mad-dark-volt.yaml index 90bf8457..6001eb63 100644 --- a/themes/mad-dark-volt.yaml +++ b/themes/mad-dark-volt.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "rohanb1997.mad-dark-volt" version: "0.0.1" installs: 61 + rating: 0 + ratings: 0 author: "Rohan Bhattacharjee" repo: "https://github.com/rohanb1997/mad-dark-volt" url: "https://marketplace.visualstudio.com/items?itemName=rohanb1997.mad-dark-volt" + formats: null colors: bg: "#0C1821" fg: "#F5F1ED" diff --git a/themes/madak17z-darkmode-testing.yaml b/themes/madak17z-darkmode-testing.yaml index 011f9e81..04092f58 100644 --- a/themes/madak17z-darkmode-testing.yaml +++ b/themes/madak17z-darkmode-testing.yaml @@ -8,6 +8,7 @@ source: author: "MadAk17z" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MadAk17z.madak17z-darkmode-testing" + formats: null colors: bg: "#131313" fg: "#13C5DB" diff --git a/themes/madness.yaml b/themes/madness.yaml index caf96741..b0d0ae97 100644 --- a/themes/madness.yaml +++ b/themes/madness.yaml @@ -8,6 +8,7 @@ source: author: "sonia13marker" repo: "https://github.com/sonia13marker/color-theme-madness" url: "https://marketplace.visualstudio.com/items?itemName=sonia13marker.madness" + formats: null colors: bg: "#1E1E1E" fg: "#7F848E" diff --git a/themes/madnight.yaml b/themes/madnight.yaml index 86a41b86..20bb1a3c 100644 --- a/themes/madnight.yaml +++ b/themes/madnight.yaml @@ -8,6 +8,7 @@ source: author: "Aakash Chandra" repo: "https://github.com/aakashchndr/MadNight" url: "https://marketplace.visualstudio.com/items?itemName=aakashchndr.madnight" + formats: null colors: bg: "#0B0B2C" fg: "#D4D4D4" diff --git a/themes/madrid-night.yaml b/themes/madrid-night.yaml index e803bfa6..7bb6e4e6 100644 --- a/themes/madrid-night.yaml +++ b/themes/madrid-night.yaml @@ -8,6 +8,7 @@ source: author: "joncode" repo: "https://github.com/jonpena/vscode-madrid-night-theme" url: "https://marketplace.visualstudio.com/items?itemName=jonpena.madrid-night-theme" + formats: null colors: bg: "#191826" fg: "#A9B1D6" diff --git a/themes/magenta-one-dark-pro.yaml b/themes/magenta-one-dark-pro.yaml index 5d7bd45f..e359cdb6 100644 --- a/themes/magenta-one-dark-pro.yaml +++ b/themes/magenta-one-dark-pro.yaml @@ -2,12 +2,13 @@ name: "Magenta One Dark Pro" source: marketplace_id: "pit00.magenta-one-dark-pro" version: "1.0.0" - installs: 3497 + installs: 3500 rating: 0 ratings: 0 author: "Pitu" repo: "https://github.com/pit00/magenta-one-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=pit00.magenta-one-dark-pro" + formats: null colors: bg: "#0A1016" fg: "#B3B1AD" diff --git a/themes/magic-mushroom-theme.yaml b/themes/magic-mushroom-theme.yaml index c4c2666f..73d9fdd4 100644 --- a/themes/magic-mushroom-theme.yaml +++ b/themes/magic-mushroom-theme.yaml @@ -8,6 +8,7 @@ source: author: "Braian Vaylet" repo: "https://github.com/BraianVaylet/magic-mushroom-theme" url: "https://marketplace.visualstudio.com/items?itemName=BraianVaylet.magic-mushroom" + formats: null colors: bg: "#0E0F1B" fg: "#EDECEE" diff --git a/themes/magicuser-bases.yaml b/themes/magicuser-bases.yaml index aa471855..18aee824 100644 --- a/themes/magicuser-bases.yaml +++ b/themes/magicuser-bases.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#181F28" fg: "#D8D8D8" diff --git a/themes/magicuser-book.yaml b/themes/magicuser-book.yaml index 89bdc03f..09ca1067 100644 --- a/themes/magicuser-book.yaml +++ b/themes/magicuser-book.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#E8E8E8" fg: "#000000" diff --git a/themes/magicuser-camouflage-light.yaml b/themes/magicuser-camouflage-light.yaml index fc8f5c4a..16c3fa96 100644 --- a/themes/magicuser-camouflage-light.yaml +++ b/themes/magicuser-camouflage-light.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#E1E8D3" fg: "#000000" diff --git a/themes/magicuser-camouflage.yaml b/themes/magicuser-camouflage.yaml index 1a1990f8..56c9efa9 100644 --- a/themes/magicuser-camouflage.yaml +++ b/themes/magicuser-camouflage.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#24281C" fg: "#D8D8D8" diff --git a/themes/magicuser-day.yaml b/themes/magicuser-day.yaml index 94e9f7b9..0263f869 100644 --- a/themes/magicuser-day.yaml +++ b/themes/magicuser-day.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#E1E1E1" fg: "#000000" diff --git a/themes/magicuser-light-blue.yaml b/themes/magicuser-light-blue.yaml index 1a96da69..5a9ff4e8 100644 --- a/themes/magicuser-light-blue.yaml +++ b/themes/magicuser-light-blue.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#E8EFFF" fg: "#000000" diff --git a/themes/magicuser-light-gray.yaml b/themes/magicuser-light-gray.yaml index d89e4cce..a255dcd1 100644 --- a/themes/magicuser-light-gray.yaml +++ b/themes/magicuser-light-gray.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#F1F1F1" fg: "#000000" diff --git a/themes/magicuser-light-green.yaml b/themes/magicuser-light-green.yaml index 89df39f2..59b4d4f6 100644 --- a/themes/magicuser-light-green.yaml +++ b/themes/magicuser-light-green.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#E1FBE1" fg: "#000000" diff --git a/themes/magicuser-light-orange.yaml b/themes/magicuser-light-orange.yaml index 7d115eab..aafeb684 100644 --- a/themes/magicuser-light-orange.yaml +++ b/themes/magicuser-light-orange.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#FFF0E1" fg: "#000000" diff --git a/themes/magicuser-light-purple.yaml b/themes/magicuser-light-purple.yaml index 98175413..dba407fc 100644 --- a/themes/magicuser-light-purple.yaml +++ b/themes/magicuser-light-purple.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#DDD3FF" fg: "#000000" diff --git a/themes/magicuser-light.yaml b/themes/magicuser-light.yaml index 85962de0..553777ca 100644 --- a/themes/magicuser-light.yaml +++ b/themes/magicuser-light.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/magicuser-neblina.yaml b/themes/magicuser-neblina.yaml index c00ebd74..7e3cfaf8 100644 --- a/themes/magicuser-neblina.yaml +++ b/themes/magicuser-neblina.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#D8D8D8" fg: "#000000" diff --git a/themes/magicuser-night-neblina.yaml b/themes/magicuser-night-neblina.yaml index 716be8fc..5e69b1af 100644 --- a/themes/magicuser-night-neblina.yaml +++ b/themes/magicuser-night-neblina.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#080808" fg: "#D8D8D8" diff --git a/themes/magicuser-night.yaml b/themes/magicuser-night.yaml index aff58d0c..fb1126ea 100644 --- a/themes/magicuser-night.yaml +++ b/themes/magicuser-night.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#001122" fg: "#D8D8D8" diff --git a/themes/magicuser-paladin.yaml b/themes/magicuser-paladin.yaml index 709463d3..d2b39430 100644 --- a/themes/magicuser-paladin.yaml +++ b/themes/magicuser-paladin.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#001833" fg: "#D8D8D8" diff --git a/themes/magicuser-path.yaml b/themes/magicuser-path.yaml index 4325e474..bb9e0fe9 100644 --- a/themes/magicuser-path.yaml +++ b/themes/magicuser-path.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#0C1221" fg: "#A3A3A3" diff --git a/themes/magicuser-power.yaml b/themes/magicuser-power.yaml index cfb17217..9b61a396 100644 --- a/themes/magicuser-power.yaml +++ b/themes/magicuser-power.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#1B1235" fg: "#D8D8D8" diff --git a/themes/magicuser-purple-night.yaml b/themes/magicuser-purple-night.yaml index 5427c31d..da7db494 100644 --- a/themes/magicuser-purple-night.yaml +++ b/themes/magicuser-purple-night.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#110022" fg: "#D8D8D8" diff --git a/themes/magicuser-purple.yaml b/themes/magicuser-purple.yaml index a57c37d8..fe3dc091 100644 --- a/themes/magicuser-purple.yaml +++ b/themes/magicuser-purple.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#330048" fg: "#D8D8D8" diff --git a/themes/magicuser-room-lamp.yaml b/themes/magicuser-room-lamp.yaml index 2879f20e..95eef97d 100644 --- a/themes/magicuser-room-lamp.yaml +++ b/themes/magicuser-room-lamp.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#2F0F18" fg: "#D8D8D8" diff --git a/themes/magicuser-sea.yaml b/themes/magicuser-sea.yaml index 6a479d9e..8afd2253 100644 --- a/themes/magicuser-sea.yaml +++ b/themes/magicuser-sea.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#D1DBF1" fg: "#000000" diff --git a/themes/magicuser-space.yaml b/themes/magicuser-space.yaml index 5409ff7f..9ec8cc63 100644 --- a/themes/magicuser-space.yaml +++ b/themes/magicuser-space.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#000000" fg: "#D8D8D8" diff --git a/themes/magicuser-specialist.yaml b/themes/magicuser-specialist.yaml index e47159fa..b8341cd1 100644 --- a/themes/magicuser-specialist.yaml +++ b/themes/magicuser-specialist.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#E1F1E8" fg: "#000000" diff --git a/themes/magicuser-staff.yaml b/themes/magicuser-staff.yaml index 2ae08599..abed5e7a 100644 --- a/themes/magicuser-staff.yaml +++ b/themes/magicuser-staff.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#181A32" fg: "#A3A3A3" diff --git a/themes/magicuser-sun.yaml b/themes/magicuser-sun.yaml index d52fd2e1..5b8dd48c 100644 --- a/themes/magicuser-sun.yaml +++ b/themes/magicuser-sun.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#F8F3C5" fg: "#000000" diff --git a/themes/magicuser-talisman.yaml b/themes/magicuser-talisman.yaml index b401e613..8eafb6ad 100644 --- a/themes/magicuser-talisman.yaml +++ b/themes/magicuser-talisman.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#001A14" fg: "#D8D8D8" diff --git a/themes/magicuser-teal-night.yaml b/themes/magicuser-teal-night.yaml index 4774afab..8da15088 100644 --- a/themes/magicuser-teal-night.yaml +++ b/themes/magicuser-teal-night.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#001212" fg: "#D8D8D8" diff --git a/themes/magicuser-teal.yaml b/themes/magicuser-teal.yaml index cf2d91a9..4a42498f 100644 --- a/themes/magicuser-teal.yaml +++ b/themes/magicuser-teal.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#002828" fg: "#D8D8D8" diff --git a/themes/magicuser-veteran-blue.yaml b/themes/magicuser-veteran-blue.yaml index 0168cb9e..ff92c86f 100644 --- a/themes/magicuser-veteran-blue.yaml +++ b/themes/magicuser-veteran-blue.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#000918" fg: "#CFCFCF" diff --git a/themes/magicuser-veteran-purple.yaml b/themes/magicuser-veteran-purple.yaml index 30cdae6f..2f31cf85 100644 --- a/themes/magicuser-veteran-purple.yaml +++ b/themes/magicuser-veteran-purple.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#200028" fg: "#CFCFCF" diff --git a/themes/magicuser-veteran.yaml b/themes/magicuser-veteran.yaml index 2d0bca35..4a9a34e0 100644 --- a/themes/magicuser-veteran.yaml +++ b/themes/magicuser-veteran.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#00180F" fg: "#CFCFCF" diff --git a/themes/magicuser-wand-blue.yaml b/themes/magicuser-wand-blue.yaml index 27e9483d..c475cd14 100644 --- a/themes/magicuser-wand-blue.yaml +++ b/themes/magicuser-wand-blue.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#1F1F1F" fg: "#D8D8D8" diff --git a/themes/magicuser.yaml b/themes/magicuser.yaml index f9e41056..a8a3c03f 100644 --- a/themes/magicuser.yaml +++ b/themes/magicuser.yaml @@ -8,6 +8,7 @@ source: author: "Bernardo Pires" repo: "https://github.com/drbap/magicuser-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=BernardoPires.magicuser-color-themes" + formats: null colors: bg: "#002248" fg: "#D8D8D8" diff --git a/themes/magnolia.yaml b/themes/magnolia.yaml deleted file mode 100644 index e8a599e2..00000000 --- a/themes/magnolia.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Magnolia" -source: - marketplace_id: "kgnio.sprinklepack" - version: "0.2.5" - installs: 81 - rating: 5 - ratings: 2 - author: "Kagan Mamak" - repo: "https://github.com/kgnio/sprinklepack" - url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" -colors: - bg: "#FAF6EF" - fg: "#3C2C21" - black: "#C2B4A3" - red: "#A3312C" - green: "#4F764D" - yellow: "#C77C2E" - blue: "#3A6EA5" - magenta: "#B07CBF" - cyan: "#6B4A3E" - white: "#3C2C21" - brightBlack: "#BDA68F" - brightRed: "#D94C4C" - brightGreen: "#6C9C6C" - brightYellow: "#E4A64F" - brightBlue: "#739FCB" - brightMagenta: "#D2A3E0" - brightCyan: "#A1733B" - brightWhite: "#000000" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.5 - black: 34.3 - red: 77.7 - green: 70.6 - yellow: 55 - blue: 71.1 - magenta: 54.4 - cyan: 82 - white: 94.5 - brightBlack: 40.8 - brightRed: 62.2 - brightGreen: 53.7 - brightYellow: 36.4 - brightBlue: 48.4 - brightMagenta: 35.6 - brightCyan: 63.5 - brightWhite: 100.9 diff --git a/themes/magnus-dark-theme.yaml b/themes/magnus-dark-theme.yaml deleted file mode 100644 index 5d2e7aee..00000000 --- a/themes/magnus-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "magnus-dark-theme" -source: - marketplace_id: "Magic-Themes.magic-theme" - version: "0.0.3" - installs: 2571 - rating: 5 - ratings: 1 - author: "Magic-Themes" - repo: "https://github.com/sonumagnus/Magnet-Theme-VS-Code" - url: "https://marketplace.visualstudio.com/items?itemName=Magic-Themes.magic-theme" -colors: - bg: "#292C3E" - fg: "#C1D3D6" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 277 - pair: null - contrast: - fg: 73.4 - black: 0 - red: 23.3 - green: 49.5 - yellow: 82.2 - blue: 24 - magenta: 26.3 - cyan: 44.1 - white: 86.6 - brightBlack: 18.6 - brightRed: 35.1 - brightGreen: 60.1 - brightYellow: 92.2 - brightBlue: 36.5 - brightMagenta: 41.9 - brightCyan: 51.9 - brightWhite: 86.6 diff --git a/themes/maguh.yaml b/themes/maguh.yaml index eb4ca64f..d80befb2 100644 --- a/themes/maguh.yaml +++ b/themes/maguh.yaml @@ -8,6 +8,7 @@ source: author: "tassianoalencar" repo: "https://github.com/tassianoalencar/maguh-vscode" url: "https://marketplace.visualstudio.com/items?itemName=tassianoalencar.maguh-theme" + formats: null colors: bg: "#1C1C1C" fg: "#D4D4D4" diff --git a/themes/maharashtra-land-of-warriors.yaml b/themes/maharashtra-land-of-warriors.yaml index d487223d..7bc03746 100644 --- a/themes/maharashtra-land-of-warriors.yaml +++ b/themes/maharashtra-land-of-warriors.yaml @@ -8,6 +8,7 @@ source: author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" + formats: null colors: bg: "#1A1612" fg: "#F0E6D2" diff --git a/themes/mahiro.yaml b/themes/mahiro.yaml index a1851438..5e022319 100644 --- a/themes/mahiro.yaml +++ b/themes/mahiro.yaml @@ -8,6 +8,7 @@ source: author: "rynco" repo: "https://github.com/01010101lzy/mihari" url: "https://marketplace.visualstudio.com/items?itemName=rynco.mihari" + formats: null colors: bg: "#E9F2FA" fg: "#454D63" diff --git a/themes/mainframe-terminal.yaml b/themes/mainframe-terminal.yaml deleted file mode 100644 index ccd058e2..00000000 --- a/themes/mainframe-terminal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Mainframe-Terminal" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#0E111B" - fg: "#D8DFE4" - black: "#0E111B" - red: "#FF1648" - green: "#29C3A0" - yellow: "#D29922" - blue: "#26ACF4" - magenta: "#26ACF4" - cyan: "#29C3A0" - white: "#D8DFE4" - brightBlack: "#0E111B" - brightRed: "#FF1648" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#26ACF4" - brightMagenta: "#26ACF4" - brightCyan: "#29C3A0" - brightWhite: "#D8DFE4" -meta: - mode: "dark" - accent: "orange" - hue: 271 - pair: null - contrast: - fg: 86 - black: 0 - red: 37.7 - green: 58.1 - yellow: 52.2 - blue: 52.3 - magenta: 52.3 - cyan: 58.1 - white: 86 - brightBlack: 0 - brightRed: 37.7 - brightGreen: 58.1 - brightYellow: 52.2 - brightBlue: 52.3 - brightMagenta: 52.3 - brightCyan: 58.1 - brightWhite: 86 diff --git a/themes/maisum-xcode-dark.yaml b/themes/maisum-xcode-dark.yaml deleted file mode 100644 index 97dc22ee..00000000 --- a/themes/maisum-xcode-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Maisum Xcode Dark" -source: - marketplace_id: "MaisUmDev.maisum-xcode-theme-dark" - version: "0.1.1" - installs: 2606 - rating: 5 - ratings: 2 - author: "Mais Um Dev" - repo: "https://github.com/maisumdev/timeflow-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MaisUmDev.maisum-xcode-theme-dark" -colors: - bg: "#000000" - fg: "#D0BF69" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 67.7 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/mak1na-theme.yaml b/themes/mak1na-theme.yaml deleted file mode 100644 index f44f0241..00000000 --- a/themes/mak1na-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Mak1na Theme" -source: - marketplace_id: "KevinMancini.palenight-mak1na-theme" - version: "0.0.3" - installs: 84 - rating: 5 - ratings: 1 - author: "Kevin Mancini" - repo: "https://github.com/KevinMancini/palenight-mak1na-theme" - url: "https://marketplace.visualstudio.com/items?itemName=KevinMancini.palenight-mak1na-theme" -colors: - bg: "#201A24" - fg: "#BFC7D5" - black: "#826998" - red: "#FF5572" - green: "#A9C77D" - yellow: "#F1B866" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#826998" - brightRed: "#FF5572" - brightGreen: "#C3E88D" - brightYellow: "#F1B866" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 312 - pair: null - contrast: - fg: 70.7 - black: 27.2 - red: 43.4 - green: 65.2 - yellow: 68.3 - blue: 55.3 - magenta: 53.1 - cyan: 77.6 - white: 106.3 - brightBlack: 27.2 - brightRed: 43.4 - brightGreen: 83.6 - brightYellow: 68.3 - brightBlue: 55.3 - brightMagenta: 53.1 - brightCyan: 77.6 - brightWhite: 106.3 diff --git a/themes/make-apps.yaml b/themes/make-apps.yaml deleted file mode 100644 index 513b5982..00000000 --- a/themes/make-apps.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Make Apps" -source: - marketplace_id: "dannyconnell.make-apps-theme" - version: "1.0.4" - installs: 19989 - rating: 5 - ratings: 4 - author: "Danny Connell" - repo: "https://github.com/dannyconnell/vscode-make-apps-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dannyconnell.make-apps-theme" -colors: - bg: "#242E33" - fg: "#C5C8C6" - black: "#242E33" - red: "#A54242" - green: "#8C9440" - yellow: "#DE935F" - blue: "#81A2BE" - magenta: "#85678F" - cyan: "#5E8D87" - white: "#6C7A80" - brightBlack: "#7A7A7A" - brightRed: "#CC6666" - brightGreen: "#B5BD68" - brightYellow: "#F0C674" - brightBlue: "#99DBFF" - brightMagenta: "#B294BB" - brightCyan: "#8ABEB7" - brightWhite: "#C5C8C6" -meta: - mode: "dark" - accent: "orange" - hue: 230 - pair: null - contrast: - fg: 68.5 - black: 0 - red: 17.8 - green: 37.4 - yellow: 49 - blue: 45.5 - magenta: 23.8 - cyan: 32.5 - white: 26.5 - brightBlack: 27.6 - brightRed: 33.1 - brightGreen: 59 - brightYellow: 71.2 - brightBlue: 75.2 - brightMagenta: 45.5 - brightCyan: 57.5 - brightWhite: 68.5 diff --git a/themes/maki-konuri.yaml b/themes/maki-konuri.yaml index 94c0b34c..b4022b38 100644 --- a/themes/maki-konuri.yaml +++ b/themes/maki-konuri.yaml @@ -8,6 +8,7 @@ source: author: "hashpp" repo: "https://github.com/hash112/veritas-code" url: "https://marketplace.visualstudio.com/items?itemName=hashpp.veritas-code" + formats: null colors: bg: "#303048" fg: "#FFFFFF" diff --git a/themes/malachite.yaml b/themes/malachite.yaml index 30b021be..2546c854 100644 --- a/themes/malachite.yaml +++ b/themes/malachite.yaml @@ -8,6 +8,7 @@ source: author: "Switch.er.oo" repo: "https://github.com/Switch-er-oo/Malachite-1.0" url: "https://marketplace.visualstudio.com/items?itemName=Switcheroo.malachite-10" + formats: null colors: bg: "#111010" fg: "#D3D1D0" diff --git a/themes/maldi-dark.yaml b/themes/maldi-dark.yaml index 6ed720a4..6a2526e6 100644 --- a/themes/maldi-dark.yaml +++ b/themes/maldi-dark.yaml @@ -8,6 +8,7 @@ source: author: "Matheus Maldi" repo: "https://github.com/msmaldi/maldi-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=msmaldi.maldi-vscode-theme" + formats: null colors: bg: "#000000" fg: "#E6EDF3" diff --git a/themes/malibu-sunset.yaml b/themes/malibu-sunset.yaml index fa7b2a27..02f28554 100644 --- a/themes/malibu-sunset.yaml +++ b/themes/malibu-sunset.yaml @@ -8,6 +8,7 @@ source: author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/malibutheme" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.malibu" + formats: null colors: bg: "#1F1D32" fg: "#F2E9E1" diff --git a/themes/malibun-sunrise.yaml b/themes/malibun-sunrise.yaml index c0cab8d5..09a36870 100644 --- a/themes/malibun-sunrise.yaml +++ b/themes/malibun-sunrise.yaml @@ -8,6 +8,7 @@ source: author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/malibutheme" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.malibu" + formats: null colors: bg: "#FAF4ED" fg: "#526479" diff --git a/themes/malte.yaml b/themes/malte.yaml index e1ff9c54..8c4522fc 100644 --- a/themes/malte.yaml +++ b/themes/malte.yaml @@ -8,6 +8,7 @@ source: author: "samkaj" repo: "https://github.com/samkaj/malte" url: "https://marketplace.visualstudio.com/items?itemName=samkaj.malte" + formats: null colors: bg: "#101010" fg: "#ECECEC" diff --git a/themes/man-dark-stone.yaml b/themes/man-dark-stone.yaml deleted file mode 100644 index fb4ef31e..00000000 --- a/themes/man-dark-stone.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Man Dark Stone" -source: - marketplace_id: "calvinludwig.wind-theme" - version: "1.0.0" - installs: 1682 - rating: 5 - ratings: 3 - author: "Calvin Ludwig" - repo: "https://github.com/calvinludwig/wind-theme" - url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" -colors: - bg: "#1C1917" - fg: "#D6D3D1" - black: "#292524" - red: "#F43F5E" - green: "#22C55E" - yellow: "#FACC15" - blue: "#3B82F6" - magenta: "#A855F7" - cyan: "#06B6D4" - white: "#F5F5F4" - brightBlack: "#44403C" - brightRed: "#FB7185" - brightGreen: "#4ADE80" - brightYellow: "#FDE047" - brightBlue: "#60A5FA" - brightMagenta: "#C084FC" - brightCyan: "#22D3EE" - brightWhite: "#FAFAF9" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 78.9 - black: 0 - red: 37.5 - green: 56.5 - yellow: 77.5 - blue: 36.5 - magenta: 34.1 - cyan: 53.6 - white: 100 - brightBlack: 7.4 - brightRed: 49 - brightGreen: 70.2 - brightYellow: 86.9 - brightBlue: 51.1 - brightMagenta: 49.4 - brightCyan: 68.3 - brightWhite: 103.2 diff --git a/themes/manatee.yaml b/themes/manatee.yaml index 02bdf8eb..50846f5e 100644 --- a/themes/manatee.yaml +++ b/themes/manatee.yaml @@ -8,6 +8,7 @@ source: author: "anemones" repo: "https://github.com/radio-alice/anemone-colors" url: "https://marketplace.visualstudio.com/items?itemName=anemones.anemone-colors" + formats: null colors: bg: "#D5DBFF" fg: "#150049" diff --git a/themes/mandacaru-syntax-theme.yaml b/themes/mandacaru-syntax-theme.yaml index 0e7b49dc..7ce12958 100644 --- a/themes/mandacaru-syntax-theme.yaml +++ b/themes/mandacaru-syntax-theme.yaml @@ -8,6 +8,7 @@ source: author: "Francisco Thiago" repo: "https://github.com/oxechicao/mandacaru-vs" url: "https://marketplace.visualstudio.com/items?itemName=oxechicao.mandacaru-syntax-theme" + formats: null colors: bg: "#302834" fg: "#F8F8EB" diff --git a/themes/manhld-theme.yaml b/themes/manhld-theme.yaml index 47384556..1cf45899 100644 --- a/themes/manhld-theme.yaml +++ b/themes/manhld-theme.yaml @@ -8,6 +8,7 @@ source: author: "Le Manh" repo: "https://github.com/leducmanh120/manhld-theme" url: "https://marketplace.visualstudio.com/items?itemName=leducmanh.manhld-theme" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/manjaro-owl.yaml b/themes/manjaro-owl.yaml index 08f79adf..d07d8418 100644 --- a/themes/manjaro-owl.yaml +++ b/themes/manjaro-owl.yaml @@ -8,6 +8,7 @@ source: author: "Asapdotid" repo: "https://github.com/asapdotid/vscode-manjaro-theme" url: "https://marketplace.visualstudio.com/items?itemName=Asapdotid.manjaro-dark" + formats: null colors: bg: "#1B2224" fg: "#DDE8EA" diff --git a/themes/manners.yaml b/themes/manners.yaml index ae72e9a5..3fb41965 100644 --- a/themes/manners.yaml +++ b/themes/manners.yaml @@ -8,6 +8,7 @@ source: author: "Sajan Srikanthan" repo: "https://github.com/sajansrikanthan/Manners-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SajanSrikanthan.manners" + formats: null colors: bg: "#070504" fg: "#DDDFE9" diff --git a/themes/manoshi.yaml b/themes/manoshi.yaml index ca900814..b31023cd 100644 --- a/themes/manoshi.yaml +++ b/themes/manoshi.yaml @@ -2,10 +2,13 @@ name: "Manoshi" source: marketplace_id: "JisanMahmud.Manoshi" version: "0.0.25444" - installs: 81 + installs: 82 + rating: 0 + ratings: 0 author: "Jisan Mahmud" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JisanMahmud.Manoshi" + formats: null colors: bg: "#011019" fg: "#ABB2BF" diff --git a/themes/mantissa-dark.yaml b/themes/mantissa-dark.yaml index f568f169..69d40a4a 100644 --- a/themes/mantissa-dark.yaml +++ b/themes/mantissa-dark.yaml @@ -8,6 +8,7 @@ source: author: "jhrunnoe" repo: "https://github.com/jebrunnoe/Mantissa" url: "https://marketplace.visualstudio.com/items?itemName=jhrunnoe.mantissa" + formats: null colors: bg: "#353E45" fg: "#FAF7F0" diff --git a/themes/mantissa-light.yaml b/themes/mantissa-light.yaml index 99b96152..cf6c3861 100644 --- a/themes/mantissa-light.yaml +++ b/themes/mantissa-light.yaml @@ -8,6 +8,7 @@ source: author: "jhrunnoe" repo: "https://github.com/jebrunnoe/Mantissa" url: "https://marketplace.visualstudio.com/items?itemName=jhrunnoe.mantissa" + formats: null colors: bg: "#FAF7F0" fg: "#657B83" diff --git a/themes/maomao-dark-theme.yaml b/themes/maomao-dark-theme.yaml index c7093e0a..4a65b39c 100644 --- a/themes/maomao-dark-theme.yaml +++ b/themes/maomao-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Matheus Montemurro" repo: "https://github.com/montemurro19/apothecary-diary-theme" url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" + formats: null colors: bg: "#22322E" fg: "#F8F7F3" diff --git a/themes/maomao-light-theme.yaml b/themes/maomao-light-theme.yaml index 6c66b23d..eaf232b1 100644 --- a/themes/maomao-light-theme.yaml +++ b/themes/maomao-light-theme.yaml @@ -8,6 +8,7 @@ source: author: "Matheus Montemurro" repo: "https://github.com/montemurro19/apothecary-diary-theme" url: "https://marketplace.visualstudio.com/items?itemName=apothecary-diary-theme.apothecary-diary-theme" + formats: null colors: bg: "#F8F7F3" fg: "#22322E" diff --git a/themes/maple-dark.yaml b/themes/maple-dark.yaml deleted file mode 100644 index d48cf3f6..00000000 --- a/themes/maple-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Maple Dark" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#1E1E1F" - fg: "#CBD5E1" - black: "#333333" - red: "#EDABAB" - green: "#A4DFAE" - yellow: "#EECFA0" - blue: "#8FC7FF" - magenta: "#D2CCFF" - cyan: "#A1E8E5" - white: "#F3F2F2" - brightBlack: "#666666" - brightRed: "#FFC4C4" - brightGreen: "#BDF8C7" - brightYellow: "#FFE8B9" - brightBlue: "#A8E0FF" - brightMagenta: "#EBE5FF" - brightCyan: "#BAFFFE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: "Maple Light" - contrast: - fg: 78.5 - black: 0 - red: 64.4 - green: 76.9 - yellow: 78.3 - blue: 68 - magenta: 77.2 - cyan: 83.1 - white: 97.6 - brightBlack: 21.2 - brightRed: 77.7 - brightGreen: 92.3 - brightYellow: 92.5 - brightBlue: 81.3 - brightMagenta: 91.3 - brightCyan: 97.8 - brightWhite: 106 diff --git a/themes/maple-light.yaml b/themes/maple-light.yaml deleted file mode 100644 index 4d3ae839..00000000 --- a/themes/maple-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Maple Light" -source: - marketplace_id: "acidev.ac-theme" - version: "0.0.51" - installs: 207 - rating: 5 - ratings: 1 - author: "acidev" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=acidev.ac-theme" -colors: - bg: "#FFFFFE" - fg: "#475569" - black: "#333333" - red: "#BD5151" - green: "#547000" - yellow: "#9C5E1C" - blue: "#057D9E" - magenta: "#726293" - cyan: "#127D52" - white: "#F3F2F2" - brightBlack: "#666666" - brightRed: "#BD5151" - brightGreen: "#547000" - brightYellow: "#9C5E1C" - brightBlue: "#057D9E" - brightMagenta: "#726293" - brightCyan: "#127D52" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Maple Dark" - contrast: - fg: 86.3 - black: 98.6 - red: 72 - green: 78.2 - yellow: 75.5 - blue: 72.3 - magenta: 76.9 - cyan: 75 - white: 0 - brightBlack: 78.7 - brightRed: 72 - brightGreen: 78.2 - brightYellow: 75.5 - brightBlue: 72.3 - brightMagenta: 76.9 - brightCyan: 75 - brightWhite: 0 diff --git a/themes/marble-dark.yaml b/themes/marble-dark.yaml index 7cefe223..33606329 100644 --- a/themes/marble-dark.yaml +++ b/themes/marble-dark.yaml @@ -8,6 +8,7 @@ source: author: "Visa_Dev" repo: "https://github.com/vizakan10/Marble-Studio-X" url: "https://marketplace.visualstudio.com/items?itemName=VisaDev.marble-studio-x" + formats: null colors: bg: "#0F1624" fg: "#D7E3F4" diff --git a/themes/marci1.yaml b/themes/marci1.yaml index 63beaeb2..f4c71b12 100644 --- a/themes/marci1.yaml +++ b/themes/marci1.yaml @@ -8,6 +8,7 @@ source: author: "Marci Ribeiro" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MarciRibeiro.marci-theme" + formats: null colors: bg: "#212121" fg: "#FD9BB6" diff --git a/themes/marcial-theme.yaml b/themes/marcial-theme.yaml deleted file mode 100644 index 92e6b692..00000000 --- a/themes/marcial-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Marcial Theme" -source: - marketplace_id: "martial-theme.martial-theme" - version: "0.0.1" - installs: 664 - rating: 5 - ratings: 1 - author: "Martial Theme" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=martial-theme.martial-theme" -colors: - bg: "#252634" - fg: "#ABB2BF" - black: "#264EB2" - red: "#E05561" - green: "#8CC265" - yellow: "#F0EA4A" - blue: "#F0EA4A" - magenta: "#C162DE" - cyan: "#4C41C7" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0EA4A" - brightBlue: "#F0EA4A" - brightMagenta: "#DE73FF" - brightCyan: "#F0EA4A" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: 281 - pair: null - contrast: - fg: 57.1 - black: 13.4 - red: 34.4 - green: 58.1 - yellow: 87.5 - blue: 87.5 - magenta: 36.8 - cyan: 14.1 - white: 80.8 - brightBlack: 13.2 - brightRed: 43.8 - brightGreen: 74.5 - brightYellow: 87.5 - brightBlue: 87.5 - brightMagenta: 48 - brightCyan: 87.5 - brightWhite: 88.4 diff --git a/themes/marcosven.yaml b/themes/marcosven.yaml index 8012c43f..dd936534 100644 --- a/themes/marcosven.yaml +++ b/themes/marcosven.yaml @@ -8,6 +8,7 @@ source: author: "marcoSven" repo: "https://github.com/marcoSven/masrcoSven_VSCode" url: "https://marketplace.visualstudio.com/items?itemName=marcoSven.marcosventheme" + formats: null colors: bg: "#1F2225" fg: "#ABB2BF" diff --git a/themes/mariana-light.yaml b/themes/mariana-light.yaml deleted file mode 100644 index 908ee3b1..00000000 --- a/themes/mariana-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mariana-light" -source: - marketplace_id: "mani-sh-reddy.mariana-refined" - version: "0.1.4" - installs: 3261 - rating: 5 - ratings: 3 - author: "Manish Reddy" - repo: "https://github.com/mani-sh-reddy/mariana-refined" - url: "https://marketplace.visualstudio.com/items?itemName=mani-sh-reddy.mariana-refined" -colors: - bg: "#FCFDFD" - fg: "#333333" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 97.3 - black: 104.7 - red: 72.7 - green: 47.9 - yellow: 56.6 - blue: 84.7 - magenta: 73.2 - cyan: 59.3 - white: 84.6 - brightBlack: 77.4 - brightRed: 72.7 - brightGreen: 39.6 - brightYellow: 39.6 - brightBlue: 84.7 - brightMagenta: 73.2 - brightCyan: 59.3 - brightWhite: 47.1 diff --git a/themes/mariana-pro.yaml b/themes/mariana-pro.yaml deleted file mode 100644 index 0d883fe9..00000000 --- a/themes/mariana-pro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Mariana (Pro)" -source: - marketplace_id: "rickynormandeau.mariana-pro" - version: "3.0.12" - installs: 48810 - rating: 4.5 - ratings: 8 - author: "ricky.normandeau" - repo: "https://github.com/n0rmand0/Mariana-Pro-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=rickynormandeau.mariana-pro" -colors: - bg: "#3D3734" - fg: "#FFFFFF" - black: "#FFFFFF" - red: "#EE6A6F" - green: "#A3CE9E" - yellow: "#FAB763" - blue: "#6699CC" - magenta: "#C594C5" - cyan: "#6699CC" - white: "#FFFFFF" - brightBlack: "#FFFFFF" - brightRed: "#EE6A6F" - brightGreen: "#A3CE9E" - brightYellow: "#FAB763" - brightBlue: "#6699CC" - brightMagenta: "#C594C5" - brightCyan: "#6699CC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 100.5 - black: 100.5 - red: 38 - green: 62.9 - yellow: 63.7 - blue: 37.8 - magenta: 45.7 - cyan: 37.8 - white: 100.5 - brightBlack: 100.5 - brightRed: 38 - brightGreen: 62.9 - brightYellow: 63.7 - brightBlue: 37.8 - brightMagenta: 45.7 - brightCyan: 37.8 - brightWhite: 100.5 diff --git a/themes/mariana-refined.yaml b/themes/mariana-refined.yaml deleted file mode 100644 index 34e5cafd..00000000 --- a/themes/mariana-refined.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Mariana Refined" -source: - marketplace_id: "mani-sh-reddy.mariana-refined" - version: "0.1.4" - installs: 3261 - rating: 5 - ratings: 3 - author: "Manish Reddy" - repo: "https://github.com/mani-sh-reddy/mariana-refined" - url: "https://marketplace.visualstudio.com/items?itemName=mani-sh-reddy.mariana-refined" -colors: - bg: "#2E3842" - fg: "#C2C6D1" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 248 - pair: null - contrast: - fg: 65.1 - black: 0 - red: 20.7 - green: 47 - yellow: 79.6 - blue: 21.5 - magenta: 23.8 - cyan: 41.6 - white: 84 - brightBlack: 16.1 - brightRed: 32.6 - brightGreen: 57.6 - brightYellow: 89.7 - brightBlue: 34 - brightMagenta: 39.4 - brightCyan: 49.4 - brightWhite: 84 diff --git a/themes/mariana.yaml b/themes/mariana.yaml index 2277ad63..7f16f047 100644 --- a/themes/mariana.yaml +++ b/themes/mariana.yaml @@ -1,13 +1,14 @@ name: "Mariana" source: - marketplace_id: "zwyyy456.mariana-st" - version: "0.1.2" - installs: 227 - rating: 4 - ratings: 1 - author: "zwyyy456" - repo: "https://github.com/zwyyy456/vscode-mariana" - url: "https://marketplace.visualstudio.com/items?itemName=zwyyy456.mariana-st" + marketplace_id: "mightbesimon.mariana-sublime" + version: "1.2.0" + installs: 12719 + rating: 5 + ratings: 10 + author: "mightbesimon" + repo: "https://github.com/mightbesimon/vscode-mariana" + url: "https://marketplace.visualstudio.com/items?itemName=mightbesimon.mariana-sublime" + formats: null colors: bg: "#303841" fg: "#D8DEE9" diff --git a/themes/marigold-night.yaml b/themes/marigold-night.yaml index 551f7294..d66a7cde 100644 --- a/themes/marigold-night.yaml +++ b/themes/marigold-night.yaml @@ -8,6 +8,7 @@ source: author: "Coopert1no" repo: "https://github.com/Coopert1no/marigold-theme" url: "https://marketplace.visualstudio.com/items?itemName=Coopert1no.marigold-theme" + formats: null colors: bg: "#130F0F" fg: "#F5DEB3" diff --git a/themes/mario-theme.yaml b/themes/mario-theme.yaml index e41a5f03..2ccacac1 100644 --- a/themes/mario-theme.yaml +++ b/themes/mario-theme.yaml @@ -2,12 +2,13 @@ name: "Mario Theme" source: marketplace_id: "alphatr.mario-theme" version: "1.1.1" - installs: 5482 + installs: 5487 rating: 0 ratings: 0 author: "alphatr" repo: "https://github.com/alphatr/vscode-mario-theme" url: "https://marketplace.visualstudio.com/items?itemName=alphatr.mario-theme" + formats: null colors: bg: "#282C34" fg: "#ABB2BF" diff --git a/themes/marnic1505.yaml b/themes/marnic1505.yaml deleted file mode 100644 index 6a9910dc..00000000 --- a/themes/marnic1505.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Marnic1505" -source: - marketplace_id: "Marnic1505.more-colorful" - version: "0.0.1" - installs: 760 - rating: 5 - ratings: 2 - author: "Marnic1505" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Marnic1505.more-colorful" -colors: - bg: "#000000" - fg: "#00FFF3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 91.6 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/maroza-cyber-chill.yaml b/themes/maroza-cyber-chill.yaml deleted file mode 100644 index ed65129f..00000000 --- a/themes/maroza-cyber-chill.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Maroza Cyber Chill" -source: - marketplace_id: "thirawat27.maroza-theme" - version: "1.0.4" - installs: 331 - rating: 5 - ratings: 2 - author: "thirawat27" - repo: "https://github.com/thirawat27/maroza-theme" - url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" -colors: - bg: "#1A1B26" - fg: "#D9E1FF" - black: "#1A1B26" - red: "#FF7590" - green: "#A6E26E" - yellow: "#FFC777" - blue: "#82B1FF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#B8C2F5" - brightBlack: "#606B9F" - brightRed: "#FF7590" - brightGreen: "#A6E26E" - brightYellow: "#FFC777" - brightBlue: "#89DDFF" - brightMagenta: "#C792EA" - brightCyan: "#82B1FF" - brightWhite: "#D9E1FF" -meta: - mode: "dark" - accent: "red" - hue: 280 - pair: null - contrast: - fg: 87.4 - black: 0 - red: 50.9 - green: 77.2 - yellow: 77 - blue: 58.1 - magenta: 53.2 - cyan: 77.7 - white: 69.6 - brightBlack: 24.9 - brightRed: 50.9 - brightGreen: 77.2 - brightYellow: 77 - brightBlue: 77.7 - brightMagenta: 53.2 - brightCyan: 58.1 - brightWhite: 87.4 diff --git a/themes/maroza-dark-theme.yaml b/themes/maroza-dark-theme.yaml deleted file mode 100644 index 83e67396..00000000 --- a/themes/maroza-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Maroza Dark Theme" -source: - marketplace_id: "thirawat27.maroza-theme" - version: "1.0.4" - installs: 331 - rating: 5 - ratings: 2 - author: "thirawat27" - repo: "https://github.com/thirawat27/maroza-theme" - url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" -colors: - bg: "#0C1021" - fg: "#D3D3D3" - black: "#3C4048" - red: "#FF6E6E" - green: "#7BD88F" - yellow: "#E7C36F" - blue: "#58A6FF" - magenta: "#D77BE2" - cyan: "#4CA3B2" - white: "#E4E4E7" - brightBlack: "#8892B0" - brightRed: "#FF9E9E" - brightGreen: "#98E4A9" - brightYellow: "#F0D58F" - brightBlue: "#67E8F9" - brightMagenta: "#E699FF" - brightCyan: "#65D9EF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 272 - pair: "Maroza Light Theme" - contrast: - fg: 79.3 - black: 7.9 - red: 49.3 - green: 70.7 - yellow: 72.3 - blue: 52.2 - magenta: 49.5 - cyan: 45.9 - white: 90 - brightBlack: 43.3 - brightRed: 64 - brightGreen: 79.4 - brightYellow: 82 - brightBlue: 81.6 - brightMagenta: 62.6 - brightCyan: 73.8 - brightWhite: 107.3 diff --git a/themes/maroza-light-theme.yaml b/themes/maroza-light-theme.yaml deleted file mode 100644 index 272ac98e..00000000 --- a/themes/maroza-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Maroza Light Theme" -source: - marketplace_id: "thirawat27.maroza-theme" - version: "1.0.4" - installs: 331 - rating: 5 - ratings: 2 - author: "thirawat27" - repo: "https://github.com/thirawat27/maroza-theme" - url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" -colors: - bg: "#FBFAFF" - fg: "#111827" - black: "#374151" - red: "#EF4444" - green: "#22C55E" - yellow: "#F97316" - blue: "#3B82F6" - magenta: "#A855F7" - cyan: "#06B6D4" - white: "#475569" - brightBlack: "#64748B" - brightRed: "#F87171" - brightGreen: "#4ADE80" - brightYellow: "#FB923C" - brightBlue: "#60A5FA" - brightMagenta: "#C084FC" - brightCyan: "#22D3EE" - brightWhite: "#111827" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Maroza Dark Theme" - contrast: - fg: 101.9 - black: 91.3 - red: 61.2 - green: 41.7 - yellow: 50.5 - blue: 61.2 - magenta: 63.6 - cyan: 44.5 - white: 83.7 - brightBlack: 70.4 - brightRed: 50.1 - brightGreen: 28.6 - brightYellow: 41.6 - brightBlue: 46.9 - brightMagenta: 48.6 - brightCyan: 30.4 - brightWhite: 101.9 diff --git a/themes/maroza-soothing-aqua.yaml b/themes/maroza-soothing-aqua.yaml deleted file mode 100644 index 7088e5cb..00000000 --- a/themes/maroza-soothing-aqua.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Maroza Soothing Aqua" -source: - marketplace_id: "thirawat27.maroza-theme" - version: "1.0.4" - installs: 331 - rating: 5 - ratings: 2 - author: "thirawat27" - repo: "https://github.com/thirawat27/maroza-theme" - url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" -colors: - bg: "#1E1E2E" - fg: "#E4E8F0" - black: "#1E1E2E" - red: "#FF7A8A" - green: "#9AF580" - yellow: "#FFE085" - blue: "#7CC7FF" - magenta: "#D09EFF" - cyan: "#5EF5D1" - white: "#C5CCE4" - brightBlack: "#7A8097" - brightRed: "#FF7A8A" - brightGreen: "#9AF580" - brightYellow: "#FFE085" - brightBlue: "#7CC7FF" - brightMagenta: "#D09EFF" - brightCyan: "#5EF5D1" - brightWhite: "#E4E8F0" -meta: - mode: "dark" - accent: "green" - hue: 284 - pair: null - contrast: - fg: 90.7 - black: 0 - red: 51.4 - green: 85.4 - yellow: 87.3 - blue: 66.4 - magenta: 59.3 - cyan: 84.3 - white: 73.9 - brightBlack: 33 - brightRed: 51.4 - brightGreen: 85.4 - brightYellow: 87.3 - brightBlue: 66.4 - brightMagenta: 59.3 - brightCyan: 84.3 - brightWhite: 90.7 diff --git a/themes/maroza-zen-pro.yaml b/themes/maroza-zen-pro.yaml deleted file mode 100644 index e9ecf642..00000000 --- a/themes/maroza-zen-pro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Maroza Zen Pro" -source: - marketplace_id: "thirawat27.maroza-theme" - version: "1.0.4" - installs: 331 - rating: 5 - ratings: 2 - author: "thirawat27" - repo: "https://github.com/thirawat27/maroza-theme" - url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" -colors: - bg: "#1E222A" - fg: "#D4D4D4" - black: "#2A323D" - red: "#E8987A" - green: "#98C379" - yellow: "#E8B87A" - blue: "#7EB8C4" - magenta: "#C9A8D4" - cyan: "#7EB8C4" - white: "#D4D4D4" - brightBlack: "#6B7D8A" - brightRed: "#F0A088" - brightGreen: "#A8D389" - brightYellow: "#F0C888" - brightBlue: "#8EC8D4" - brightMagenta: "#D9B8E4" - brightCyan: "#8EC8D4" - brightWhite: "#EEEEEE" -meta: - mode: "dark" - accent: "green" - hue: 264 - pair: null - contrast: - fg: 78.1 - black: 0 - red: 54.9 - green: 60.9 - yellow: 66.4 - blue: 56.5 - magenta: 58.9 - cyan: 56.5 - white: 78.1 - brightBlack: 29.8 - brightRed: 59.4 - brightGreen: 70 - brightYellow: 74.4 - brightBlue: 65.4 - brightMagenta: 68.1 - brightCyan: 65.4 - brightWhite: 94.4 diff --git a/themes/mars.yaml b/themes/mars.yaml index 364a37c8..b779460d 100644 --- a/themes/mars.yaml +++ b/themes/mars.yaml @@ -8,6 +8,7 @@ source: author: "Luke Banicevic" repo: "https://github.com/banaboi/Mars" url: "https://marketplace.visualstudio.com/items?itemName=LukeBanicevic.mars-theme" + formats: null colors: bg: "#393939" fg: "#CCCCCC" diff --git a/themes/marshmallow.yaml b/themes/marshmallow.yaml index c67bcaf0..5e681cdb 100644 --- a/themes/marshmallow.yaml +++ b/themes/marshmallow.yaml @@ -8,6 +8,7 @@ source: author: "WhirlingPlumageStudio" repo: "https://github.com/doctorbetaq/marshmallow-theme-visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=WhirlingPlumage-studio.marshmallow" + formats: null colors: bg: "#252E33" fg: "#A0ECF1" diff --git a/themes/marsidark.yaml b/themes/marsidark.yaml index 2499988b..51ee6b99 100644 --- a/themes/marsidark.yaml +++ b/themes/marsidark.yaml @@ -8,6 +8,7 @@ source: author: "marsi" repo: "https://github.com/marsidev/MarsiDarkTheme" url: "https://marketplace.visualstudio.com/items?itemName=marsi.marsidark" + formats: null colors: bg: "#353042" fg: "#ABB2BF" diff --git a/themes/marstree.yaml b/themes/marstree.yaml index f6c4812c..af782b7e 100644 --- a/themes/marstree.yaml +++ b/themes/marstree.yaml @@ -8,6 +8,7 @@ source: author: "MARStree Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MARStreeTheme.MARStreeTheme" + formats: null colors: bg: "#0F2443" fg: "#B4B4B4" diff --git a/themes/marwen-labidi-theme.yaml b/themes/marwen-labidi-theme.yaml index 0d7861f4..977ace14 100644 --- a/themes/marwen-labidi-theme.yaml +++ b/themes/marwen-labidi-theme.yaml @@ -8,6 +8,7 @@ source: author: "Marwen Labidi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MarwenLabidi.marwen-labidi-theme" + formats: null colors: bg: "#111111" fg: "#A7A7A7" diff --git a/themes/matcha-pink.yaml b/themes/matcha-pink.yaml deleted file mode 100644 index bb2ef540..00000000 --- a/themes/matcha-pink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Matcha Pink" -source: - marketplace_id: "hongtrapt.pink-angel-themes" - version: "0.0.2" - installs: 273 - rating: 5 - ratings: 1 - author: "hongtrapt" - repo: "https://github.com/hongtra1311/pink-angel-themes" - url: "https://marketplace.visualstudio.com/items?itemName=hongtrapt.pink-angel-themes" -colors: - bg: "#F3FFF6" - fg: "#337357" - black: "#333333" - red: "#E27396" - green: "#6D9F71" - yellow: "#EA9AB2" - blue: "#4A6D7C" - magenta: "#E27396" - cyan: "#337357" - white: "#000000" - brightBlack: "#333333" - brightRed: "#E27396" - brightGreen: "#6D9F71" - brightYellow: "#EA9AB2" - brightBlue: "#4A6D7C" - brightMagenta: "#E27396" - brightCyan: "#337357" - brightWhite: "#000000" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 76.1 - black: 96.8 - red: 53.7 - green: 55.6 - yellow: 40.2 - blue: 75.9 - magenta: 53.7 - cyan: 76.1 - white: 104.2 - brightBlack: 96.8 - brightRed: 53.7 - brightGreen: 55.6 - brightYellow: 40.2 - brightBlue: 75.9 - brightMagenta: 53.7 - brightCyan: 76.1 - brightWhite: 104.2 diff --git a/themes/matcha.yaml b/themes/matcha.yaml index f7c3edc7..31e9aeac 100644 --- a/themes/matcha.yaml +++ b/themes/matcha.yaml @@ -1,52 +1,53 @@ name: "Matcha" source: - marketplace_id: "Falyssa.matcha-pastel-theme" - version: "0.1.4" - installs: 239 + marketplace_id: "lucafalasco.matcha" + version: "0.0.12" + installs: 16967 rating: 5 - ratings: 1 - author: "Falyssa" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Falyssa.matcha-pastel-theme" + ratings: 2 + author: "Luca Falasco" + repo: "https://github.com/lucafalasco/matcha" + url: "https://marketplace.visualstudio.com/items?itemName=lucafalasco.matcha" + formats: null colors: - bg: "#FFFFFF" - fg: "#8E8E8E" - black: "#000000" - red: "#E64F4F" - green: "#7FD17F" - yellow: "#E0D473" - blue: "#87B9EE" - magenta: "#EC93EC" - cyan: "#80CDE0" - white: "#555555" - brightBlack: "#666666" - brightRed: "#E64B4B" - brightGreen: "#6EBC6E" - brightYellow: "#C7B94A" - brightBlue: "#5D8EC2" - brightMagenta: "#D18AD1" - brightCyan: "#6EB5C7" - brightWhite: "#A5A5A5" + bg: "#273136" + fg: "#D1DED3" + black: "#323E45" + red: "#C6A685" + green: "#A4B07E" + yellow: "#C0AE69" + blue: "#7EA4B0" + magenta: "#8A7EB0" + cyan: "#7EB0A3" + white: "#D1DED3" + brightBlack: "#323E45" + brightRed: "#C6A685" + brightGreen: "#A4B07E" + brightYellow: "#C0AE69" + brightBlue: "#7EA4B0" + brightMagenta: "#8A7EB0" + brightCyan: "#7EB0A3" + brightWhite: "#D1DED3" meta: - mode: "light" - accent: "orange" - hue: null + mode: "dark" + accent: "green" + hue: 230 pair: null contrast: - fg: 60.1 - black: 106 - red: 64 - green: 34.8 - yellow: 24 - blue: 40 - magenta: 41.1 - cyan: 33 - white: 85.9 - brightBlack: 78.8 - brightRed: 64.7 - brightGreen: 45.4 - brightYellow: 38.8 - brightBlue: 61.8 - brightMagenta: 49.6 - brightCyan: 45.4 - brightWhite: 48.5 + fg: 79.5 + black: 0 + red: 52.1 + green: 51.5 + yellow: 53.7 + blue: 44.8 + magenta: 32.2 + cyan: 49.1 + white: 79.5 + brightBlack: 0 + brightRed: 52.1 + brightGreen: 51.5 + brightYellow: 53.7 + brightBlue: 44.8 + brightMagenta: 32.2 + brightCyan: 49.1 + brightWhite: 79.5 diff --git a/themes/matchalk.yaml b/themes/matchalk.yaml index 03ed9efd..68c258ad 100644 --- a/themes/matchalk.yaml +++ b/themes/matchalk.yaml @@ -1,13 +1,14 @@ -name: "matchalk" +name: "Matchalk" source: marketplace_id: "lucafalasco.matchalk" version: "0.0.7" - installs: 4244 + installs: 4245 rating: 3.67 ratings: 3 author: "Luca Falasco" repo: "https://github.com/lucafalasco/matchalk" url: "https://marketplace.visualstudio.com/items?itemName=lucafalasco.matchalk" + formats: null colors: bg: "#273136" fg: "#D1DED3" diff --git a/themes/matchanaa.yaml b/themes/matchanaa.yaml index 83f9b6f8..1305147b 100644 --- a/themes/matchanaa.yaml +++ b/themes/matchanaa.yaml @@ -8,6 +8,7 @@ source: author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-roselia-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" + formats: null colors: bg: "#191919" fg: "#D3C6AA" diff --git a/themes/matchaneco.yaml b/themes/matchaneco.yaml deleted file mode 100644 index cfabf4ae..00000000 --- a/themes/matchaneco.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "MatchaNeco" -source: - marketplace_id: "necosawa.matchaneco" - version: "0.0.5" - installs: 762 - rating: 0 - ratings: 0 - author: "necosawa" - repo: "https://github.com/necosawa/matchaneco" - url: "https://marketplace.visualstudio.com/items?itemName=necosawa.matchaneco" -colors: - bg: "#273136" - fg: "#D1DED3" - black: "#323E45" - red: "#C6A685" - green: "#A4B07E" - yellow: "#C0AE69" - blue: "#7EA4B0" - magenta: "#8A7EB0" - cyan: "#7EB0A3" - white: "#D1DED3" - brightBlack: "#323E45" - brightRed: "#C6A685" - brightGreen: "#A4B07E" - brightYellow: "#C0AE69" - brightBlue: "#7EA4B0" - brightMagenta: "#8A7EB0" - brightCyan: "#7EB0A3" - brightWhite: "#D1DED3" -meta: - mode: "dark" - accent: "green" - hue: 230 - pair: null - contrast: - fg: 79.5 - black: 0 - red: 52.1 - green: 51.5 - yellow: 53.7 - blue: 44.8 - magenta: 32.2 - cyan: 49.1 - white: 79.5 - brightBlack: 0 - brightRed: 52.1 - brightGreen: 51.5 - brightYellow: 53.7 - brightBlue: 44.8 - brightMagenta: 32.2 - brightCyan: 49.1 - brightWhite: 79.5 diff --git a/themes/matchati.yaml b/themes/matchati.yaml index 450222bf..71ce2a08 100644 --- a/themes/matchati.yaml +++ b/themes/matchati.yaml @@ -8,6 +8,7 @@ source: author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-roselia-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" + formats: null colors: bg: "#141B1E" fg: "#DADADA" diff --git a/themes/material-color-theme.yaml b/themes/material-color-theme.yaml index c9307cdd..9feb2af8 100644 --- a/themes/material-color-theme.yaml +++ b/themes/material-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Jonathan Durán" repo: "https://github.com/JonaDuran/Material-Light-Theme" url: "https://marketplace.visualstudio.com/items?itemName=JonaDuran.my-light-theme" + formats: null colors: bg: "#FAFAFA" fg: "#212121" diff --git a/themes/material-community-ansi-16.yaml b/themes/material-community-ansi-16.yaml index 6dbfe868..d66c22b0 100644 --- a/themes/material-community-ansi-16.yaml +++ b/themes/material-community-ansi-16.yaml @@ -8,6 +8,8 @@ source: author: "chtenb" repo: "https://github.com/chtenb/vscode-ansi16" url: "https://marketplace.visualstudio.com/items?itemName=ctenbrinke.ansi16" + formats: + sublime: "https://raw.githubusercontent.com/chtenb/vscode-ansi16/main/themes/material-ansi16.tmTheme" colors: bg: "#263238" fg: "#EEFFFF" diff --git a/themes/material-dark-color-theme.yaml b/themes/material-dark-color-theme.yaml deleted file mode 100644 index a95f3ff5..00000000 --- a/themes/material-dark-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "material-dark-color-theme" -source: - marketplace_id: "JonaDuran.my-light-theme" - version: "1.1.9" - installs: 31519 - rating: 5 - ratings: 5 - author: "Jonathan Durán" - repo: "https://github.com/JonaDuran/Material-Light-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=JonaDuran.my-light-theme" -colors: - bg: "#282828" - fg: "#D0D0D0" - black: "#212121" - red: "#E57373" - green: "#8BC34A" - yellow: "#E5C07B" - blue: "#40C4FF" - magenta: "#EA80FC" - cyan: "#00BCD4" - white: "#D0D0D0" - brightBlack: "#212121" - brightRed: "#E57373" - brightGreen: "#8BC34A" - brightYellow: "#E5C07B" - brightBlue: "#40C4FF" - brightMagenta: "#EA80FC" - brightCyan: "#00BCD4" - brightWhite: "#D0D0D0" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 74.6 - black: 0 - red: 42.3 - green: 57.9 - yellow: 68.1 - blue: 60.9 - magenta: 53 - cyan: 54.1 - white: 74.6 - brightBlack: 0 - brightRed: 42.3 - brightGreen: 57.9 - brightYellow: 68.1 - brightBlue: 60.9 - brightMagenta: 53 - brightCyan: 54.1 - brightWhite: 74.6 diff --git a/themes/material-midnight.yaml b/themes/material-midnight.yaml index 16ab69e3..554e85fc 100644 --- a/themes/material-midnight.yaml +++ b/themes/material-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Suraj Kumar" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SurajKumar.material-midnight" + formats: null colors: bg: "#282C34" fg: "#DEE2E6" diff --git a/themes/material-monokai-high-contrast.yaml b/themes/material-monokai-high-contrast.yaml index 503f8ea2..0c821d86 100644 --- a/themes/material-monokai-high-contrast.yaml +++ b/themes/material-monokai-high-contrast.yaml @@ -8,6 +8,7 @@ source: author: "Cystee" repo: "https://github.com/Cystee/VCEyeFriendTheme" url: "https://marketplace.visualstudio.com/items?itemName=Cystee.vceyefriendtheme" + formats: null colors: bg: "#263238" fg: "#FFFFFF" diff --git a/themes/material-neutral.yaml b/themes/material-neutral.yaml deleted file mode 100644 index 406d6923..00000000 --- a/themes/material-neutral.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Material Neutral" -source: - marketplace_id: "bernardodsanderson.theme-material-neutral" - version: "0.9.8" - installs: 60024 - rating: 4.46 - ratings: 13 - author: "bernardodsanderson" - repo: "https://gitlab.com/bernardodsanderson/material-neutral-theme" - url: "https://marketplace.visualstudio.com/items?itemName=bernardodsanderson.theme-material-neutral" -colors: - bg: "#263238" - fg: "#B2CCD6" - black: "#263238" - red: "#FA6981" - green: "#C3E88D" - yellow: "#FFCC00" - blue: "#82AAFF" - magenta: "#F77669" - cyan: "#7FCAC3" - white: "#B2CCD6" - brightBlack: "#65737E" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#FFCC00" - brightBlue: "#82AAFF" - brightMagenta: "#F77669" - brightCyan: "#7FCAC3" - brightWhite: "#B2CCD6" -meta: - mode: "dark" - accent: "red" - hue: 230 - pair: null - contrast: - fg: 67.9 - black: 0 - red: 42.9 - green: 80 - yellow: 74.4 - blue: 51.7 - magenta: 44.7 - cyan: 61.6 - white: 67.9 - brightBlack: 22.7 - brightRed: 28.8 - brightGreen: 57.5 - brightYellow: 74.4 - brightBlue: 51.7 - brightMagenta: 44.7 - brightCyan: 61.6 - brightWhite: 67.9 diff --git a/themes/material-ocean.yaml b/themes/material-ocean.yaml index f403d4fd..e4eb75b6 100644 --- a/themes/material-ocean.yaml +++ b/themes/material-ocean.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AgraeonLabs.dev-themes" version: "0.1.0" installs: 283 + rating: 0 + ratings: 0 author: "Agraeon Labs" repo: "https://github.com/adiagcodelance/VS-Code-Themes" url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" + formats: null colors: bg: "#0F111A" fg: "#8F93A2" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 275 + pair: null contrast: fg: 43.7 black: 0 diff --git a/themes/material-pure-dark.yaml b/themes/material-pure-dark.yaml index 31b61c02..52e7ede3 100644 --- a/themes/material-pure-dark.yaml +++ b/themes/material-pure-dark.yaml @@ -8,6 +8,7 @@ source: author: "Kasper liu" repo: "https://github.com/Kasper-Liu/VSC-Material-Pure-Dark-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Kasperliu.material-pure-dark" + formats: null colors: bg: "#000000" fg: "#A6ACCD" diff --git a/themes/material-rainbow.yaml b/themes/material-rainbow.yaml deleted file mode 100644 index de62ec42..00000000 --- a/themes/material-rainbow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Material Rainbow" -source: - marketplace_id: "VitPetrov.material-festoon" - version: "1.4.1" - installs: 196 - rating: 0 - ratings: 0 - author: "VitPetrov" - repo: "https://github.com/VitalyPetrov/material-festoon" - url: "https://marketplace.visualstudio.com/items?itemName=VitPetrov.material-festoon" -colors: - bg: "#2E2E2E" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 75.8 - black: 0 - red: 23.1 - green: 49.3 - yellow: 82 - blue: 23.8 - magenta: 26.1 - cyan: 43.9 - white: 86.4 - brightBlack: 18.4 - brightRed: 34.9 - brightGreen: 59.9 - brightYellow: 92 - brightBlue: 36.3 - brightMagenta: 41.7 - brightCyan: 51.7 - brightWhite: 86.4 diff --git a/themes/material-solarized.yaml b/themes/material-solarized.yaml index 50df684f..28e276e6 100644 --- a/themes/material-solarized.yaml +++ b/themes/material-solarized.yaml @@ -3,9 +3,13 @@ source: marketplace_id: "syahrizaldev.material-solarized" version: "1.4.7" installs: 266 + rating: 0 + ratings: 0 author: "Syahrizal" repo: "https://github.com/syahrizaldev/material-solarized" url: "https://marketplace.visualstudio.com/items?itemName=syahrizaldev.material-solarized" + formats: + zed: "https://raw.githubusercontent.com/syahrizaldev/material-solarized/main/theme/material-solarized-color-theme.json" colors: bg: "#101A1E" fg: "#E3E8E8" diff --git a/themes/material-theme-dark.yaml b/themes/material-theme-dark.yaml deleted file mode 100644 index 4b95c296..00000000 --- a/themes/material-theme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Material Theme Dark" -source: - marketplace_id: "terrafuture-themes.terrafuture-themes" - version: "0.2.3" - installs: 1673 - rating: 5 - ratings: 1 - author: "Terrafuture Themes" - repo: "https://github.com/jdgn94/terrafuture-themes" - url: "https://marketplace.visualstudio.com/items?itemName=terrafuture-themes.terrafuture-themes" -colors: - bg: "#1D212F" - fg: "#EEFFFF" - black: "#000000" - red: "#F44336" - green: "#4CAF50" - yellow: "#FFC107" - blue: "#2196F3" - magenta: "#D80073" - cyan: "#00BCD4" - white: "#EEFFFF" - brightBlack: "#101010" - brightRed: "#E57373" - brightGreen: "#81C784" - brightYellow: "#FFF176" - brightBlue: "#64B5F6" - brightMagenta: "#D82283" - brightCyan: "#4DD0E1" - brightWhite: "#DDDDDD" -meta: - mode: "dark" - accent: "red" - hue: 272 - pair: null - contrast: - fg: 103.2 - black: 0 - red: 36.4 - green: 46.2 - yellow: 72.8 - blue: 41.7 - magenta: 27.2 - cyan: 55.2 - white: 103.2 - brightBlack: 0 - brightRed: 43.4 - brightGreen: 61.1 - brightYellow: 94.5 - brightBlue: 56.4 - brightMagenta: 28.6 - brightCyan: 66.1 - brightWhite: 83.7 diff --git a/themes/material-theme-dhc-mix-in-pycharm-darcula-theme.yaml b/themes/material-theme-dhc-mix-in-pycharm-darcula-theme.yaml deleted file mode 100644 index 4f91dc92..00000000 --- a/themes/material-theme-dhc-mix-in-pycharm-darcula-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Material-Theme-DHC-Mix-In-Pycharm-Darcula-Theme" -source: - marketplace_id: "alexzshl.material-theme-dhc-mix-in-pycharm-darcula-theme" - version: "0.0.8" - installs: 3034 - rating: 0 - ratings: 0 - author: "alexzshl" - repo: "https://github.com/alexzshl/vsc-material-theme-dhc-mix-in-pycharm-darcula-theme" - url: "https://marketplace.visualstudio.com/items?itemName=alexzshl.material-theme-dhc-mix-in-pycharm-darcula-theme" -colors: - bg: "#212121" - fg: "#EEFFFF" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#4A4A4A" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 103.3 - black: 0 - red: 45.3 - green: 82.9 - yellow: 77.7 - blue: 54.7 - magenta: 52.5 - cyan: 77 - white: 105.6 - brightBlack: 9.7 - brightRed: 45.3 - brightGreen: 82.9 - brightYellow: 77.7 - brightBlue: 54.7 - brightMagenta: 52.5 - brightCyan: 77 - brightWhite: 105.6 diff --git a/themes/material-theme-twilight-wave-ocean-ui.yaml b/themes/material-theme-twilight-wave-ocean-ui.yaml deleted file mode 100644 index d1eaf627..00000000 --- a/themes/material-theme-twilight-wave-ocean-ui.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Material Theme Twilight Wave Ocean Ui ~" -source: - marketplace_id: "ZahidNazir.Material-Theme-Twilight-Wave" - version: "0.0.3" - installs: 2567 - rating: 5 - ratings: 2 - author: "Zahid Nazir" - repo: "https://github.com/Tactition/Twilight-Wave-VsCode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=ZahidNazir.Material-Theme-Twilight-Wave" -colors: - bg: "#0F111A" - fg: "#BABED8" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#464B5D" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 275 - pair: null - contrast: - fg: 67.6 - black: 0 - red: 47.1 - green: 84.7 - yellow: 79.4 - blue: 56.4 - magenta: 54.2 - cyan: 78.7 - white: 107.3 - brightBlack: 12 - brightRed: 47.1 - brightGreen: 84.7 - brightYellow: 79.4 - brightBlue: 56.4 - brightMagenta: 54.2 - brightCyan: 78.7 - brightWhite: 107.3 diff --git a/themes/material.yaml b/themes/material.yaml deleted file mode 100644 index c71c2b99..00000000 --- a/themes/material.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Material" -source: - marketplace_id: "swashata.beautiful-ui" - version: "1.7.0" - installs: 121108 - rating: 4.38 - ratings: 13 - author: "swashata" - repo: "https://github.com/swashata/vscode-beautiful-ui" - url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" -colors: - bg: "#253137" - fg: "#E6FFFF" - black: "#000000" - red: "#D81E00" - green: "#5EA702" - yellow: "#CFAE00" - blue: "#427AB3" - magenta: "#89658E" - cyan: "#00A7AA" - white: "#DBDED8" - brightBlack: "#686A66" - brightRed: "#F54235" - brightGreen: "#99E343" - brightYellow: "#FDEB61" - brightBlue: "#84B0D8" - brightMagenta: "#BC94B7" - brightCyan: "#37E6E8" - brightWhite: "#F1F1F0" -meta: - mode: "dark" - accent: "orange" - hue: 230 - pair: null - contrast: - fg: 99.6 - black: 0 - red: 23.6 - green: 40.5 - yellow: 55 - blue: 25.7 - magenta: 23.1 - cyan: 41.4 - white: 81 - brightBlack: 19.5 - brightRed: 33.9 - brightGreen: 72.5 - brightYellow: 88.5 - brightBlue: 52.1 - brightMagenta: 46.1 - brightCyan: 73.8 - brightWhite: 93.7 diff --git a/themes/material1.yaml b/themes/material1.yaml index e8ac05d8..900bd43a 100644 --- a/themes/material1.yaml +++ b/themes/material1.yaml @@ -8,6 +8,7 @@ source: author: "gungorn" repo: "https://github.com/gungorn/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=gungorn.themes-by-gungorn" + formats: null colors: bg: "#1B1E2B" fg: "#B4B4B4" diff --git a/themes/materialdarker-monokaist3.yaml b/themes/materialdarker-monokaist3.yaml deleted file mode 100644 index 823a39d3..00000000 --- a/themes/materialdarker-monokaist3.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "MaterialDarker-MonokaiST3" -source: - marketplace_id: "xckomorebi.everythingmonokai" - version: "0.1.1" - installs: 818 - rating: 0 - ratings: 0 - author: "xckomorebi" - repo: "https://github.com/xckomorebi/EverythingMonokai" - url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.everythingmonokai" -colors: - bg: "#212121" - fg: "#EEFFFF" - black: "#454444" - red: "#ED5E7B" - green: "#99D798" - yellow: "#E2C264" - blue: "#52AED8" - magenta: "#E27DE2" - cyan: "#76B7BC" - white: "#C1C0C0" - brightBlack: "#666565" - brightRed: "#EA99AA" - brightGreen: "#B1D3B0" - brightYellow: "#E7E698" - brightBlue: "#80C7E7" - brightMagenta: "#EB9DEB" - brightCyan: "#A5E1E1" - brightWhite: "#E5E4E4" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 103.3 - black: 7.6 - red: 40.6 - green: 71 - yellow: 69.2 - blue: 50.9 - magenta: 50.3 - cyan: 55.3 - white: 66.5 - brightBlack: 20.4 - brightRed: 57.2 - brightGreen: 72.3 - brightYellow: 86.7 - brightBlue: 65.1 - brightMagenta: 61.8 - brightCyan: 79.5 - brightWhite: 88.3 diff --git a/themes/materialdarkplus.yaml b/themes/materialdarkplus.yaml index d44ce648..974f3e92 100644 --- a/themes/materialdarkplus.yaml +++ b/themes/materialdarkplus.yaml @@ -1,4 +1,4 @@ -name: "materialdarkplus" +name: "MaterialDarkPlus" source: marketplace_id: "SteveSevetS.materialdarkplus" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "SteveSevetS" repo: "https://github.com/SteveSevetS/materialdarkplus" url: "https://marketplace.visualstudio.com/items?itemName=SteveSevetS.materialdarkplus" + formats: null colors: bg: "#1E1E1E" fg: "#EEFFFF" diff --git a/themes/matey.yaml b/themes/matey.yaml index 971d4646..ac0e0218 100644 --- a/themes/matey.yaml +++ b/themes/matey.yaml @@ -8,6 +8,7 @@ source: author: "Jordan Garcia" repo: "https://github.com/arickho/matey-vscode" url: "https://marketplace.visualstudio.com/items?itemName=arickho.matey-vscode" + formats: null colors: bg: "#1D2433" fg: "#C9CCC7" diff --git a/themes/matitheme-gotham.yaml b/themes/matitheme-gotham.yaml index 6b448365..3f7c96ad 100644 --- a/themes/matitheme-gotham.yaml +++ b/themes/matitheme-gotham.yaml @@ -8,6 +8,7 @@ source: author: "Omatita" repo: "https://github.com/Omatita/matitheme" url: "https://marketplace.visualstudio.com/items?itemName=Omatita.matitheme" + formats: null colors: bg: "#121212" fg: "#D1D1D1" diff --git a/themes/matitheme.yaml b/themes/matitheme.yaml index c01b44a7..16bdb134 100644 --- a/themes/matitheme.yaml +++ b/themes/matitheme.yaml @@ -8,6 +8,7 @@ source: author: "Omatita" repo: "https://github.com/Omatita/matitheme" url: "https://marketplace.visualstudio.com/items?itemName=Omatita.matitheme" + formats: null colors: bg: "#151515" fg: "#DBC5C5" diff --git a/themes/matrix-hacking-dark-theme.yaml b/themes/matrix-hacking-dark-theme.yaml deleted file mode 100644 index 04b52c27..00000000 --- a/themes/matrix-hacking-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Matrix Hacking Dark Theme" -source: - marketplace_id: "mdmarufsarker.maruf-sarker" - version: "0.1.1" - installs: 29154 - rating: 5 - ratings: 6 - author: "Md. Maruf Sarker" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" -colors: - bg: "#001019" - fg: "#22C21D" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 231 - pair: null - contrast: - fg: 55.3 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28 - magenta: 30.4 - cyan: 48.2 - white: 90.6 - brightBlack: 22.6 - brightRed: 39.2 - brightGreen: 64.1 - brightYellow: 96.2 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/matrix-mint.yaml b/themes/matrix-mint.yaml index d14c16d5..6aabe94f 100644 --- a/themes/matrix-mint.yaml +++ b/themes/matrix-mint.yaml @@ -2,12 +2,13 @@ name: "Matrix Mint" source: marketplace_id: "Barkerbg001.matrix-mint-vscode" version: "1.1.0" - installs: 282 + installs: 285 rating: 0 ratings: 0 author: "Barkerbg001" repo: "https://github.com/barkerbg001/matrix-mint-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Barkerbg001.matrix-mint-vscode" + formats: null colors: bg: "#0F1F0F" fg: "#A2AABC" diff --git a/themes/matrix-reloaded-locked.yaml b/themes/matrix-reloaded-locked.yaml deleted file mode 100644 index b93cedc9..00000000 --- a/themes/matrix-reloaded-locked.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Matrix Reloaded 🔒 LOCKED" -source: - marketplace_id: "nextgencode.nextgen-terminal" - version: "1.2.1" - installs: 105 - author: "NextGenCode" - repo: "https://github.com/Mattzey/nextgen-terminal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" -colors: - bg: "#000000" - fg: "#444444" - black: "#000000" - red: "#FF3333" - green: "#555555" - yellow: "#888888" - blue: "#444444" - magenta: "#555555" - cyan: "#555555" - white: "#555555" - brightBlack: "#222222" - brightRed: "#FF0000" - brightGreen: "#666666" - brightYellow: "#888888" - brightBlue: "#444444" - brightMagenta: "#666666" - brightCyan: "#555555" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 9.8 - black: 0 - red: 39.6 - green: 16.1 - yellow: 38.6 - blue: 9.8 - magenta: 16.1 - cyan: 16.1 - white: 16.1 - brightBlack: 0 - brightRed: 37.5 - brightGreen: 23 - brightYellow: 38.6 - brightBlue: 9.8 - brightMagenta: 23 - brightCyan: 16.1 - brightWhite: 107.9 diff --git a/themes/matrix-reloaded.yaml b/themes/matrix-reloaded.yaml deleted file mode 100644 index 08e4f858..00000000 --- a/themes/matrix-reloaded.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Matrix Reloaded" -source: - marketplace_id: "nextgencode.nextgen-terminal" - version: "1.2.1" - installs: 105 - author: "NextGenCode" - repo: "https://github.com/Mattzey/nextgen-terminal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" -colors: - bg: "#000000" - fg: "#00CC00" - black: "#000000" - red: "#FF3333" - green: "#00FF00" - yellow: "#CCFF00" - blue: "#00CC44" - magenta: "#00FF66" - cyan: "#66FF00" - white: "#00FF00" - brightBlack: "#004400" - brightRed: "#FF0000" - brightGreen: "#39FF14" - brightYellow: "#CCFF00" - brightBlue: "#00CC00" - brightMagenta: "#98FB98" - brightCyan: "#00FF66" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 60.3 - black: 0 - red: 39.6 - green: 86.5 - yellow: 96.2 - blue: 60.6 - magenta: 87.1 - cyan: 88.4 - white: 86.5 - brightBlack: 0 - brightRed: 37.5 - brightGreen: 87 - brightYellow: 96.2 - brightBlue: 60.3 - brightMagenta: 90.9 - brightCyan: 87.1 - brightWhite: 107.9 diff --git a/themes/matrix.yaml b/themes/matrix.yaml index 5340b480..a554b0ac 100644 --- a/themes/matrix.yaml +++ b/themes/matrix.yaml @@ -2,12 +2,13 @@ name: "Matrix" source: marketplace_id: "PabloAndroetto.a-matrix-theme" version: "0.0.3" - installs: 1799 + installs: 1803 rating: 0 ratings: 0 author: "Pablo Androetto" repo: "https://github.com/androettop/matrix-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=PabloAndroetto.a-matrix-theme" + formats: null colors: bg: "#0F191C" fg: "#426644" diff --git a/themes/matronator-s-theme.yaml b/themes/matronator-s-theme.yaml index d7750430..20b78b23 100644 --- a/themes/matronator-s-theme.yaml +++ b/themes/matronator-s-theme.yaml @@ -8,6 +8,7 @@ source: author: "Matronator" repo: "https://github.com/matronator/mtr-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=matronator.mtrtheme" + formats: null colors: bg: "#1B1313" fg: "#D3D3D3" diff --git a/themes/matte-atelier-ivory.yaml b/themes/matte-atelier-ivory.yaml deleted file mode 100644 index c0ef9b91..00000000 --- a/themes/matte-atelier-ivory.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Matte Atelier — Ivory" -source: - marketplace_id: "aadityanarayan.matte-atelier" - version: "1.0.0" - installs: 25 - author: "aadityanarayan" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" -colors: - bg: "#F0ECE4" - fg: "#2C2A26" - black: "#2C2A26" - red: "#984848" - green: "#487848" - yellow: "#9A7830" - blue: "#4A7090" - magenta: "#7A5A90" - cyan: "#3A7878" - white: "#F0ECE4" - brightBlack: "#8C8880" - brightRed: "#A85858" - brightGreen: "#588858" - brightYellow: "#A88838" - brightBlue: "#5A80A0" - brightMagenta: "#8A6AA0" - brightCyan: "#4A8888" - brightWhite: "#F8F4EC" -meta: - mode: "light" - accent: "orange" - hue: 85 - pair: null - contrast: - fg: 90 - black: 90 - red: 69.6 - green: 64.4 - yellow: 57.1 - blue: 64.8 - magenta: 67.3 - cyan: 63.8 - white: 0 - brightBlack: 51.8 - brightRed: 63.1 - brightGreen: 57.3 - brightYellow: 49.9 - brightBlue: 57.6 - brightMagenta: 60.2 - brightCyan: 56.6 - brightWhite: 0 diff --git a/themes/matte-atelier-obsidian-colorblind.yaml b/themes/matte-atelier-obsidian-colorblind.yaml deleted file mode 100644 index bd8afdb3..00000000 --- a/themes/matte-atelier-obsidian-colorblind.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Matte Atelier — Obsidian Colorblind" -source: - marketplace_id: "aadityanarayan.matte-atelier" - version: "1.0.0" - installs: 25 - author: "aadityanarayan" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" -colors: - bg: "#141416" - fg: "#D8D6D0" - black: "#1A1A1E" - red: "#C87858" - green: "#5898B0" - yellow: "#D4A850" - blue: "#5B98C8" - magenta: "#A888C8" - cyan: "#60C8D8" - white: "#D8D6D0" - brightBlack: "#4C4A44" - brightRed: "#D89878" - brightGreen: "#78B8C8" - brightYellow: "#E0BE68" - brightBlue: "#78B0D0" - brightMagenta: "#C0A0E0" - brightCyan: "#78D8E0" - brightWhite: "#EAE8E2" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 81 - black: 0 - red: 40.4 - green: 41.7 - yellow: 58.1 - blue: 43.2 - magenta: 44.5 - cyan: 64.3 - white: 81 - brightBlack: 11.2 - brightRed: 53.8 - brightGreen: 57.9 - brightYellow: 68.9 - brightBlue: 55 - brightMagenta: 57.1 - brightCyan: 73.4 - brightWhite: 92.2 diff --git a/themes/matte-atelier-obsidian-high-contrast.yaml b/themes/matte-atelier-obsidian-high-contrast.yaml deleted file mode 100644 index 06f6be13..00000000 --- a/themes/matte-atelier-obsidian-high-contrast.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Matte Atelier — Obsidian High Contrast" -source: - marketplace_id: "aadityanarayan.matte-atelier" - version: "1.0.0" - installs: 25 - author: "aadityanarayan" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" -colors: - bg: "#0A0A0C" - fg: "#EEECE6" - black: "#111114" - red: "#D08080" - green: "#80AA80" - yellow: "#E0BE78" - blue: "#90B5D0" - magenta: "#B89ED0" - cyan: "#7CC0C0" - white: "#EEECE6" - brightBlack: "#585550" - brightRed: "#E0A0A0" - brightGreen: "#A0CCA0" - brightYellow: "#EACE8A" - brightBlue: "#A8C8E0" - brightMagenta: "#D0B8E0" - brightCyan: "#98D8D8" - brightWhite: "#F8F6F0" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 95.3 - black: 0 - red: 45.6 - green: 50.5 - yellow: 69.8 - blue: 59.6 - magenta: 55.1 - cyan: 61.9 - white: 95.3 - brightBlack: 16.1 - brightRed: 59.6 - brightGreen: 69 - brightYellow: 78.3 - brightBlue: 70.7 - brightMagenta: 68.8 - brightCyan: 75.9 - brightWhite: 101.8 diff --git a/themes/matte-atelier-obsidian.yaml b/themes/matte-atelier-obsidian.yaml deleted file mode 100644 index cc55bee5..00000000 --- a/themes/matte-atelier-obsidian.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Matte Atelier — Obsidian" -source: - marketplace_id: "aadityanarayan.matte-atelier" - version: "1.0.0" - installs: 25 - author: "aadityanarayan" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" -colors: - bg: "#141416" - fg: "#D4D2CD" - black: "#1A1A1E" - red: "#B07070" - green: "#6B8A6B" - yellow: "#C9A86C" - blue: "#7A9BB5" - magenta: "#9B85B5" - cyan: "#6B9E9E" - white: "#D4D2CD" - brightBlack: "#4A4843" - brightRed: "#C08888" - brightGreen: "#88A888" - brightYellow: "#D4B87A" - brightBlue: "#8AB0CC" - brightMagenta: "#B098CC" - brightCyan: "#80B8B8" - brightWhite: "#E8E6E0" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 78.6 - black: 0 - red: 34.7 - green: 35.1 - yellow: 56.9 - blue: 45.4 - magenta: 40.9 - cyan: 44.5 - white: 78.6 - brightBlack: 10.5 - brightRed: 45.1 - brightGreen: 50 - brightYellow: 65 - brightBlue: 56.2 - brightMagenta: 51.1 - brightCyan: 57.8 - brightWhite: 90.9 diff --git a/themes/matte-atelier-ros.yaml b/themes/matte-atelier-ros.yaml deleted file mode 100644 index 6d3fef5a..00000000 --- a/themes/matte-atelier-ros.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Matte Atelier — Rosé" -source: - marketplace_id: "aadityanarayan.matte-atelier" - version: "1.0.0" - installs: 25 - author: "aadityanarayan" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" -colors: - bg: "#181212" - fg: "#D8D0CC" - black: "#1E1618" - red: "#C08080" - green: "#80A080" - yellow: "#C8A060" - blue: "#7890A8" - magenta: "#A07898" - cyan: "#6B9898" - white: "#D8D0CC" - brightBlack: "#4A4442" - brightRed: "#D09898" - brightGreen: "#98B898" - brightYellow: "#D4B070" - brightBlue: "#90A8C0" - brightMagenta: "#B890B0" - brightCyan: "#80B0B0" - brightWhite: "#E8E0DC" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 78.3 - black: 0 - red: 42.4 - green: 45.9 - yellow: 53.6 - blue: 40.6 - magenta: 36.2 - cyan: 41.9 - white: 78.3 - brightBlack: 9.6 - brightRed: 53.5 - brightGreen: 58.7 - brightYellow: 61.7 - brightBlue: 53 - brightMagenta: 48.2 - brightCyan: 54.1 - brightWhite: 88.1 diff --git a/themes/matte-atelier-sapphire.yaml b/themes/matte-atelier-sapphire.yaml deleted file mode 100644 index 210787a9..00000000 --- a/themes/matte-atelier-sapphire.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Matte Atelier — Sapphire" -source: - marketplace_id: "aadityanarayan.matte-atelier" - version: "1.0.0" - installs: 25 - author: "aadityanarayan" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" -colors: - bg: "#0E1420" - fg: "#C8CCD8" - black: "#141A28" - red: "#B87878" - green: "#78A078" - yellow: "#C8A868" - blue: "#7098C0" - magenta: "#9080B8" - cyan: "#60A0A0" - white: "#C8CCD8" - brightBlack: "#404858" - brightRed: "#C89090" - brightGreen: "#90B890" - brightYellow: "#D4B878" - brightBlue: "#88B0D0" - brightMagenta: "#A898D0" - brightCyan: "#78B8B8" - brightWhite: "#E0E4E8" -meta: - mode: "dark" - accent: "yellow" - hue: 264 - pair: null - contrast: - fg: 75 - black: 0 - red: 38.5 - green: 44.9 - yellow: 56.7 - blue: 44.1 - magenta: 38.2 - cyan: 44.6 - white: 75 - brightBlack: 10.4 - brightRed: 49.2 - brightGreen: 57.6 - brightYellow: 65 - brightBlue: 56.2 - brightMagenta: 50.3 - brightCyan: 57.2 - brightWhite: 89.3 diff --git a/themes/matte-light-theme.yaml b/themes/matte-light-theme.yaml index eb06d94c..e9a04e8c 100644 --- a/themes/matte-light-theme.yaml +++ b/themes/matte-light-theme.yaml @@ -8,6 +8,7 @@ source: author: "bgmeulem" repo: "https://github.com/bgmeulem/matte-light" url: "https://marketplace.visualstudio.com/items?itemName=bgmeulem.matte-light" + formats: null colors: bg: "#E2E2E2" fg: "#4B4B4B" diff --git a/themes/matteblack.yaml b/themes/matteblack.yaml index 790f6269..70f2e2db 100644 --- a/themes/matteblack.yaml +++ b/themes/matteblack.yaml @@ -2,12 +2,13 @@ name: "MatteBlack" source: marketplace_id: "TahaYVR.matteblack" version: "1.0.2" - installs: 27912 + installs: 27984 rating: 5 ratings: 1 author: "Taha YVR" repo: "https://github.com/tahayvr/matte-black-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TahaYVR.matteblack" + formats: null colors: bg: "#121212" fg: "#EAEAEA" diff --git a/themes/matter.yaml b/themes/matter.yaml index e5a7d946..0042018c 100644 --- a/themes/matter.yaml +++ b/themes/matter.yaml @@ -1,13 +1,14 @@ -name: "matter" +name: "Matter" source: - marketplace_id: "Idzu.matter-brighter" + marketplace_id: "TobiasTimm.matter" version: "1.0.0" - installs: 48 - rating: 0 - ratings: 0 - author: "Idzu" - repo: "https://github.com/Idzu/MatterBrighter" - url: "https://marketplace.visualstudio.com/items?itemName=Idzu.matter-brighter" + installs: 2322 + rating: 5 + ratings: 1 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/vscode-matter-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.matter" + formats: null colors: bg: "#14191F" fg: "#E6E6E6" diff --git a/themes/matteric-dark-default.yaml b/themes/matteric-dark-default.yaml deleted file mode 100644 index b04c6f6c..00000000 --- a/themes/matteric-dark-default.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Matteric Dark Default" -source: - marketplace_id: "rodinalex.matteric" - version: "1.1.0" - installs: 494 - rating: 0 - ratings: 0 - author: "Alexey Rodin" - repo: "https://github.com/philosatom/vscode-theme-matteric" - url: "https://marketplace.visualstudio.com/items?itemName=rodinalex.matteric" -colors: - bg: "#1B1F23" - fg: "#ACAEB0" - black: "#16191C" - red: "#E35339" - green: "#84A360" - yellow: "#D9C671" - blue: "#315173" - magenta: "#4B4063" - cyan: "#6F91AD" - white: "#ACAEB0" - brightBlack: "#4D535C" - brightRed: "#E35339" - brightGreen: "#9FC474" - brightYellow: "#D9C671" - brightBlue: "#5389C2" - brightMagenta: "#A087D4" - brightCyan: "#89B3D5" - brightWhite: "#D2D4D6" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 56.4 - black: 0 - red: 35.4 - green: 45.5 - yellow: 70.2 - blue: 12 - magenta: 8.6 - cyan: 39.2 - white: 56.4 - brightBlack: 13.2 - brightRed: 35.4 - brightGreen: 62.4 - brightYellow: 70.2 - brightBlue: 35.6 - brightMagenta: 42.7 - brightCyan: 56.6 - brightWhite: 78.4 diff --git a/themes/mauriceplus.yaml b/themes/mauriceplus.yaml index f27ebae1..f08b1e71 100644 --- a/themes/mauriceplus.yaml +++ b/themes/mauriceplus.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "MauricePreiss.MauricePlus" version: "1.0.0" installs: 91 + rating: 0 + ratings: 0 author: "Maurice Preiss" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MauricePreiss.MauricePlus" + formats: null colors: bg: "#131313" fg: "#D4D4D4" diff --git a/themes/maus-dark.yaml b/themes/maus-dark.yaml deleted file mode 100644 index c8c92fee..00000000 --- a/themes/maus-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Maus Dark" -source: - marketplace_id: "moonmaus.maus-theme" - version: "0.0.8" - installs: 174 - rating: 0 - ratings: 0 - author: "Moon Maus" - repo: "https://github.com/moonmaus/maus-theme" - url: "https://marketplace.visualstudio.com/items?itemName=moonmaus.maus-theme" -colors: - bg: "#0C0D0F" - fg: "#8F98A3" - black: "#1F2227" - red: "#BA0E2E" - green: "#00A373" - yellow: "#9A6FC4" - blue: "#C5D1E0" - magenta: "#00A373" - cyan: "#9A6FC4" - white: "#D0D9E4" - brightBlack: "#414852" - brightRed: "#F03E5F" - brightGreen: "#19FFBB" - brightYellow: "#C5D1E0" - brightBlue: "#C5D1E0" - brightMagenta: "#19FFBB" - brightCyan: "#CDB7E2" - brightWhite: "#C5D1E0" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 45.9 - black: 0 - red: 21.2 - green: 42.5 - yellow: 35.5 - blue: 77.6 - magenta: 42.5 - cyan: 35.5 - white: 82.6 - brightBlack: 10.8 - brightRed: 37.5 - brightGreen: 89 - brightYellow: 77.6 - brightBlue: 77.6 - brightMagenta: 89 - brightCyan: 68 - brightWhite: 77.6 diff --git a/themes/mauve-contrast.yaml b/themes/mauve-contrast.yaml deleted file mode 100644 index df4193f6..00000000 --- a/themes/mauve-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mauve-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#191119" - fg: "#AF92B2" - black: "#281B28" - red: "#BA0E2E" - green: "#C89933" - yellow: "#74526C" - blue: "#DBD053" - magenta: "#C89933" - cyan: "#DBD053" - white: "#BAA1BD" - brightBlack: "#563A56" - brightRed: "#F03E5F" - brightGreen: "#DFC282" - brightYellow: "#A884A0" - brightBlue: "#EDE7A7" - brightMagenta: "#DFC282" - brightCyan: "#EDE7A7" - brightWhite: "#DBCEDC" -meta: - mode: "dark" - accent: "orange" - hue: 326 - pair: null - contrast: - fg: 47.7 - black: 0 - red: 20.8 - green: 50.5 - yellow: 18.5 - blue: 75.5 - magenta: 50.5 - cyan: 75.5 - white: 54.9 - brightBlack: 9 - brightRed: 37.1 - brightGreen: 70.9 - brightYellow: 41.3 - brightBlue: 90 - brightMagenta: 70.9 - brightCyan: 90 - brightWhite: 78.5 diff --git a/themes/mauve-light.yaml b/themes/mauve-light.yaml deleted file mode 100644 index 7c2124e9..00000000 --- a/themes/mauve-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mauve-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#372638" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#C89933" - yellow: "#74526C" - blue: "#DBD053" - magenta: "#C89933" - cyan: "#DBD053" - white: "#463047" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#DFC282" - brightYellow: "#A884A0" - brightBlue: "#EDE7A7" - brightMagenta: "#DFC282" - brightCyan: "#EDE7A7" - brightWhite: "#734F75" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 100.6 - black: 0 - red: 80.3 - green: 50.7 - yellow: 82.7 - blue: 26.8 - magenta: 50.7 - cyan: 26.8 - white: 97.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 31.1 - brightYellow: 59.7 - brightBlue: 13.2 - brightMagenta: 31.1 - brightCyan: 13.2 - brightWhite: 83.2 diff --git a/themes/mauve.yaml b/themes/mauve.yaml deleted file mode 100644 index 2051f97c..00000000 --- a/themes/mauve.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mauve" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#372638" - fg: "#AF92B2" - black: "#463047" - red: "#BA0E2E" - green: "#C89933" - yellow: "#74526C" - blue: "#DBD053" - magenta: "#C89933" - cyan: "#DBD053" - white: "#BAA1BD" - brightBlack: "#734F75" - brightRed: "#F03E5F" - brightGreen: "#DFC282" - brightYellow: "#A884A0" - brightBlue: "#EDE7A7" - brightMagenta: "#DFC282" - brightCyan: "#EDE7A7" - brightWhite: "#DBCEDC" -meta: - mode: "dark" - accent: "orange" - hue: 325 - pair: null - contrast: - fg: 44.2 - black: 0 - red: 17.3 - green: 47 - yellow: 15 - blue: 71.9 - magenta: 47 - cyan: 71.9 - white: 51.4 - brightBlack: 14.5 - brightRed: 33.6 - brightGreen: 67.4 - brightYellow: 37.8 - brightBlue: 86.5 - brightMagenta: 67.4 - brightCyan: 86.5 - brightWhite: 75 diff --git a/themes/mavaia.yaml b/themes/mavaia.yaml index 956b7cec..19795c66 100644 --- a/themes/mavaia.yaml +++ b/themes/mavaia.yaml @@ -8,6 +8,7 @@ source: author: "Thynaptic" repo: "https://github.com/cassianwolfe/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" + formats: null colors: bg: "#0A0A0A" fg: "#FAFAFA" diff --git a/themes/max2.yaml b/themes/max2.yaml index 8efcb168..368f35c4 100644 --- a/themes/max2.yaml +++ b/themes/max2.yaml @@ -8,6 +8,7 @@ source: author: "Ayush Gautam" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AyushGautam.Max2" + formats: null colors: bg: "#000108" fg: "#FF008F" diff --git a/themes/maxsumon.yaml b/themes/maxsumon.yaml index 595af4af..586e2034 100644 --- a/themes/maxsumon.yaml +++ b/themes/maxsumon.yaml @@ -8,6 +8,7 @@ source: author: "Maxsumon" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Maxsumontheme.Maxsumon" + formats: null colors: bg: "#09121F" fg: "#BCBCBC" diff --git a/themes/mayukai.yaml b/themes/mayukai.yaml deleted file mode 100644 index d2580da5..00000000 --- a/themes/mayukai.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Mayukai" -source: - marketplace_id: "rafaelburghausen.rafa-theme" - version: "3.0.6" - installs: 1204 - rating: 5 - ratings: 1 - author: "rafaelburghausen" - repo: "https://github.com/marcos-burghausen/Extensao-Rafa" - url: "https://marketplace.visualstudio.com/items?itemName=rafaelburghausen.rafa-theme" -colors: - bg: "#141824" - fg: "#CBCEBC" - black: "#191E2A" - red: "#ED8274" - green: "#A6CC70" - yellow: "#FAD07B" - blue: "#95E6CB" - magenta: "#CFBAFA" - cyan: "#95E6CB" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F28779" - brightGreen: "#BAE67E" - brightYellow: "#FFD580" - brightBlue: "#95E6CB" - brightMagenta: "#D4BFFF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 270 - pair: null - contrast: - fg: 74.6 - black: 0 - red: 50.2 - green: 67.3 - yellow: 80.3 - blue: 80.7 - magenta: 69.9 - cyan: 80.7 - white: 71.5 - brightBlack: 22.7 - brightRed: 52.7 - brightGreen: 81.8 - brightYellow: 83.4 - brightBlue: 80.7 - brightMagenta: 72.8 - brightCyan: 80.7 - brightWhite: 106.7 diff --git a/themes/mazda-rx7-theme.yaml b/themes/mazda-rx7-theme.yaml index 1c4baa53..0770ca63 100644 --- a/themes/mazda-rx7-theme.yaml +++ b/themes/mazda-rx7-theme.yaml @@ -8,6 +8,7 @@ source: author: "Mazda-RX7-Theme" repo: "https://github.com/jklaiven/mazda-rx7-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mazda-RX7-Theme.mazda-rx7-theme" + formats: null colors: bg: "#0C0C0C" fg: "#FFA400" diff --git a/themes/mbp.yaml b/themes/mbp.yaml index b088e4cf..2347cf45 100644 --- a/themes/mbp.yaml +++ b/themes/mbp.yaml @@ -8,6 +8,7 @@ source: author: "mbp_dsm" repo: "https://github.com/DanielSDM/mbp" url: "https://marketplace.visualstudio.com/items?itemName=mbp.mbp" + formats: null colors: bg: "#100E13" fg: "#FFFFFF" diff --git a/themes/mcdark-theme.yaml b/themes/mcdark-theme.yaml index 6e1725f6..79c96d1e 100644 --- a/themes/mcdark-theme.yaml +++ b/themes/mcdark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Jamie McDonald" repo: "https://github.com/mcd005/mcdark-theme" url: "https://marketplace.visualstudio.com/items?itemName=mcd005.mcdark-theme" + formats: null colors: bg: "#0D1117" fg: "#C9D1D9" diff --git a/themes/mcdonalds-theme.yaml b/themes/mcdonalds-theme.yaml index eced8084..60edbc11 100644 --- a/themes/mcdonalds-theme.yaml +++ b/themes/mcdonalds-theme.yaml @@ -2,12 +2,13 @@ name: "McDonalds Theme" source: marketplace_id: "OttonielMatheus.mcdonalds-theme" version: "0.0.1" - installs: 4588 + installs: 4595 rating: 5 ratings: 2 author: "Ottoniel Matheus" repo: null url: "https://marketplace.visualstudio.com/items?itemName=OttonielMatheus.mcdonalds-theme" + formats: null colors: bg: "#4F0000" fg: "#FFEF00" diff --git a/themes/mcyoda-s-light-theme.yaml b/themes/mcyoda-s-light-theme.yaml index bcb66963..6c02da80 100644 --- a/themes/mcyoda-s-light-theme.yaml +++ b/themes/mcyoda-s-light-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "McYoda.mcyoda-s-light-theme" version: "0.0.4" installs: 142 + rating: 0 + ratings: 0 author: "McYoda" repo: null url: "https://marketplace.visualstudio.com/items?itemName=McYoda.mcyoda-s-light-theme" + formats: null colors: bg: "#FAFAFA" fg: "#000000" diff --git a/themes/md-abdur-rakib.yaml b/themes/md-abdur-rakib.yaml deleted file mode 100644 index 0a9d8c5d..00000000 --- a/themes/md-abdur-rakib.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Md Abdur Rakib" -source: - marketplace_id: "tscmdabdurrakib.md-abdur-rakib-theme" - version: "1.1.3" - installs: 1739 - rating: 5 - ratings: 1 - author: "Md Abdur Rakib" - repo: "https://github.com/tscmdabdurrakib/md-abdur-rakib-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tscmdabdurrakib.md-abdur-rakib-theme" -colors: - bg: "#0E0D1A" - fg: "#DDDFE9" - black: "#0E0D1A" - red: "#FA1313" - green: "#00C82B" - yellow: "#FFE553" - blue: "#8C97EA" - magenta: "#FF00F2" - cyan: "#8C97EA" - white: "#FFFFFF" - brightBlack: "#5966CC" - brightRed: "#FA1313" - brightGreen: "#17F648" - brightYellow: "#FFFFFF" - brightBlue: "#8C97EA" - brightMagenta: "#FF00F2" - brightCyan: "#23DEFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 287 - pair: null - contrast: - fg: 87.1 - black: 0 - red: 36.1 - green: 58.1 - yellow: 90.5 - blue: 48.9 - magenta: 44.9 - cyan: 48.9 - white: 107.5 - brightBlack: 27 - brightRed: 36.1 - brightGreen: 81.6 - brightYellow: 107.5 - brightBlue: 48.9 - brightMagenta: 44.9 - brightCyan: 75.4 - brightWhite: 107.5 diff --git a/themes/meadow-whisper.yaml b/themes/meadow-whisper.yaml deleted file mode 100644 index f3db8971..00000000 --- a/themes/meadow-whisper.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Meadow-Whisper" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#1A1512" - fg: "#E9D4B3" - black: "#1A1512" - red: "#F9281D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#8A906D" - magenta: "#8A906D" - cyan: "#29C3A0" - white: "#E9D4B3" - brightBlack: "#1A1512" - brightRed: "#F9281D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#8A906D" - brightMagenta: "#8A906D" - brightCyan: "#29C3A0" - brightWhite: "#E9D4B3" -meta: - mode: "dark" - accent: "orange" - hue: 53 - pair: null - contrast: - fg: 81.2 - black: 0 - red: 36.2 - green: 57.7 - yellow: 51.8 - blue: 40 - magenta: 40 - cyan: 57.7 - white: 81.2 - brightBlack: 0 - brightRed: 36.2 - brightGreen: 57.7 - brightYellow: 51.8 - brightBlue: 40 - brightMagenta: 40 - brightCyan: 57.7 - brightWhite: 81.2 diff --git a/themes/meaow-dark.yaml b/themes/meaow-dark.yaml deleted file mode 100644 index b0a6a73a..00000000 --- a/themes/meaow-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Meaow Dark" -source: - marketplace_id: "meaow-dev.meaow-theme" - version: "0.0.1" - installs: 7 - rating: 5 - ratings: 1 - author: "MeaowDev" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=meaow-dev.meaow-theme" -colors: - bg: "#1F1F1F" - fg: "#C0BCBC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 64.8 - black: 0 - red: 25.7 - green: 52 - yellow: 84.6 - blue: 26.5 - magenta: 28.8 - cyan: 46.6 - white: 89 - brightBlack: 21.1 - brightRed: 37.6 - brightGreen: 62.6 - brightYellow: 94.7 - brightBlue: 39 - brightMagenta: 44.4 - brightCyan: 54.4 - brightWhite: 89 diff --git a/themes/mecha-01.yaml b/themes/mecha-01.yaml index 8d8f5a56..611f518a 100644 --- a/themes/mecha-01.yaml +++ b/themes/mecha-01.yaml @@ -2,12 +2,13 @@ name: "MECHA.01" source: marketplace_id: "Bytemore.mecha-01" version: "0.12.0" - installs: 3199 + installs: 3202 rating: 4.67 ratings: 3 author: "Bytemore" repo: "https://github.com/gianmazzoran/mecha-01" url: "https://marketplace.visualstudio.com/items?itemName=Bytemore.mecha-01" + formats: null colors: bg: "#1D1A2F" fg: "#D4D4D4" diff --git a/themes/medium-dark.yaml b/themes/medium-dark.yaml index 70381435..7cd6de4d 100644 --- a/themes/medium-dark.yaml +++ b/themes/medium-dark.yaml @@ -8,6 +8,7 @@ source: author: "chriszo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=chriszo.medium-dark" + formats: null colors: bg: "#161611" fg: "#CCCCCC" diff --git a/themes/mega-green.yaml b/themes/mega-green.yaml index a9da2e25..369da42d 100644 --- a/themes/mega-green.yaml +++ b/themes/mega-green.yaml @@ -8,6 +8,7 @@ source: author: "Isaac" repo: "https://github.com/XxHTMLStudios/xxhtml-theme" url: "https://marketplace.visualstudio.com/items?itemName=xxhtml.xxhtml-themes" + formats: null colors: bg: "#002717" fg: "#B4B4B4" diff --git a/themes/meinanziiii.yaml b/themes/meinanziiii.yaml deleted file mode 100644 index 50e7e622..00000000 --- a/themes/meinanziiii.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "MeiNanziiii" -source: - marketplace_id: "MeiNanziiii.mei-pastel" - version: "0.1.0" - installs: 6811 - rating: 0 - ratings: 0 - author: "MeiNanziiii" - repo: "https://github.com/oplotDev/pastel" - url: "https://marketplace.visualstudio.com/items?itemName=MeiNanziiii.mei-pastel" -colors: - bg: "#1E1E1E" - fg: "#909090" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 40.8 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/meitnerium-theme.yaml b/themes/meitnerium-theme.yaml index eb4b4765..f9f2efc1 100644 --- a/themes/meitnerium-theme.yaml +++ b/themes/meitnerium-theme.yaml @@ -8,6 +8,7 @@ source: author: "c-jaenicke" repo: "https://github.com/c-jaenicke/meitnerium-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=c-jaenicke.meitnerium-theme" + formats: null colors: bg: "#21262B" fg: "#FEFBEC" diff --git a/themes/mel.yaml b/themes/mel.yaml index 9803960e..68bbf355 100644 --- a/themes/mel.yaml +++ b/themes/mel.yaml @@ -8,6 +8,7 @@ source: author: "Jake Evans" repo: "https://github.com/jakeevans00/arcane-themes" url: "https://marketplace.visualstudio.com/items?itemName=jakeevans00.arcane" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/melancholy.yaml b/themes/melancholy.yaml index 3b680dd3..7bee59e5 100644 --- a/themes/melancholy.yaml +++ b/themes/melancholy.yaml @@ -8,6 +8,7 @@ source: author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.melancholy" + formats: null colors: bg: "#040404" fg: "#3F5A6D" diff --git a/themes/melange-redux-dark.yaml b/themes/melange-redux-dark.yaml index d5126afd..0cdad083 100644 --- a/themes/melange-redux-dark.yaml +++ b/themes/melange-redux-dark.yaml @@ -8,6 +8,7 @@ source: author: "fostertheweb" repo: "https://github.com/fostertheweb/melange-redux" url: "https://marketplace.visualstudio.com/items?itemName=fostertheweb.melange-redux-iterum" + formats: null colors: bg: "#292522" fg: "#ECE1D7" @@ -31,7 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null - pair: "Melange Redux: Light" + pair: null contrast: fg: 86.5 black: 54 diff --git a/themes/melange-redux-light.yaml b/themes/melange-redux-light.yaml deleted file mode 100644 index 12c93b4c..00000000 --- a/themes/melange-redux-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Melange Redux: Light" -source: - marketplace_id: "fostertheweb.melange-redux-iterum" - version: "0.2.7" - installs: 416 - rating: 0 - ratings: 0 - author: "fostertheweb" - repo: "https://github.com/fostertheweb/melange-redux" - url: "https://marketplace.visualstudio.com/items?itemName=fostertheweb.melange-redux-iterum" -colors: - bg: "#F1F1F1" - fg: "#423324" - black: "#7D6658" - red: "#BF0021" - green: "#3A684A" - yellow: "#A06D00" - blue: "#465AA4" - magenta: "#BE79BB" - cyan: "#3D6568" - white: "#F1F1F1" - brightBlack: "#54433A" - brightRed: "#BF0021" - brightGreen: "#3A684A" - brightYellow: "#A06D00" - brightBlue: "#465AA4" - brightMagenta: "#BE79BB" - brightCyan: "#3D6568" - brightWhite: "#E9E1DB" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Melange Redux: Dark" - contrast: - fg: 89.4 - black: 68.4 - red: 71.1 - green: 73.5 - yellow: 62.5 - blue: 73.5 - magenta: 50.2 - cyan: 73.6 - white: 0 - brightBlack: 83.3 - brightRed: 71.1 - brightGreen: 73.5 - brightYellow: 62.5 - brightBlue: 73.5 - brightMagenta: 50.2 - brightCyan: 73.6 - brightWhite: 0 diff --git a/themes/melcr.yaml b/themes/melcr.yaml index a2a4c61b..d736b14a 100644 --- a/themes/melcr.yaml +++ b/themes/melcr.yaml @@ -8,6 +8,7 @@ source: author: "melcr" repo: null url: "https://marketplace.visualstudio.com/items?itemName=melcr.melcr" + formats: null colors: bg: "#131B1F" fg: "#FFE8AC" diff --git a/themes/melee-island.yaml b/themes/melee-island.yaml index fc9dc19f..dd8f0ab5 100644 --- a/themes/melee-island.yaml +++ b/themes/melee-island.yaml @@ -8,6 +8,7 @@ source: author: "Victor Chirino" repo: "https://github.com/vicchirino/monkey-island-theme" url: "https://marketplace.visualstudio.com/items?itemName=VictorChirino.monkey-island-theme" + formats: null colors: bg: "#060565" fg: "#A6A6A6" diff --git a/themes/melinoe.yaml b/themes/melinoe.yaml index 84e57a67..67fa1b61 100644 --- a/themes/melinoe.yaml +++ b/themes/melinoe.yaml @@ -8,6 +8,7 @@ source: author: "ltatarev" repo: "https://github.com/ltatarev/melinoe-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ltatarev.melinoe" + formats: null colors: bg: "#201328" fg: "#FFB6E0" diff --git a/themes/mellow-contrast.yaml b/themes/mellow-contrast.yaml deleted file mode 100644 index ed86866f..00000000 --- a/themes/mellow-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mellow-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0B0A09" - fg: "#F8F8F2" - black: "#191714" - red: "#BA0E2E" - green: "#F2BC79" - yellow: "#1F8181" - blue: "#F28972" - magenta: "#F2BC79" - cyan: "#F55D79" - white: "#FFFFFF" - brightBlack: "#433D37" - brightRed: "#F03E5F" - brightGreen: "#FBEAD6" - brightYellow: "#37CFCF" - brightBlue: "#FBD7CF" - brightMagenta: "#FBEAD6" - brightCyan: "#FBBDC8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.8 - black: 0 - red: 21.4 - green: 71.9 - yellow: 29.6 - blue: 54.1 - magenta: 71.9 - cyan: 44.2 - white: 107.7 - brightBlack: 7.6 - brightRed: 37.6 - brightGreen: 95.6 - brightYellow: 66.3 - brightBlue: 87 - brightMagenta: 95.6 - brightCyan: 76.2 - brightWhite: 107.7 diff --git a/themes/mellow-light.yaml b/themes/mellow-light.yaml deleted file mode 100644 index 69fdae7e..00000000 --- a/themes/mellow-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mellow-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#555555" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#F2BC79" - yellow: "#1F8181" - blue: "#F28972" - magenta: "#F2BC79" - cyan: "#F55D79" - white: "#626262" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#FBEAD6" - brightYellow: "#37CFCF" - brightBlue: "#FBD7CF" - brightMagenta: "#FBEAD6" - brightCyan: "#FBBDC8" - brightWhite: "#888888" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 85.9 - black: 0 - red: 80.3 - green: 30.7 - yellow: 71.9 - blue: 47.7 - magenta: 30.7 - cyan: 57.4 - white: 80.5 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 8.5 - brightYellow: 36 - brightBlue: 16.5 - brightMagenta: 8.5 - brightCyan: 26.6 - brightWhite: 63.1 diff --git a/themes/mellow.yaml b/themes/mellow.yaml index fc1f65c5..790614bc 100644 --- a/themes/mellow.yaml +++ b/themes/mellow.yaml @@ -1,13 +1,14 @@ name: "Mellow" source: - marketplace_id: "Umi-l.mellow-minimal-theme" - version: "0.0.2" - installs: 608 - rating: 0 - ratings: 0 - author: "Umi-l" - repo: "https://github.com/Umi-L/mellow-minimal" - url: "https://marketplace.visualstudio.com/items?itemName=Umi-l.mellow-minimal-theme" + marketplace_id: "kvrohit.mellow-theme" + version: "0.0.1" + installs: 1492 + rating: 5 + ratings: 3 + author: "Rohit K Viswanath" + repo: "https://github.com/kvrohit/mellow-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kvrohit.mellow-theme" + formats: null colors: bg: "#161617" fg: "#C9C7CD" diff --git a/themes/melokai.yaml b/themes/melokai.yaml index 71674204..84fb1027 100644 --- a/themes/melokai.yaml +++ b/themes/melokai.yaml @@ -8,6 +8,7 @@ source: author: "miller2676" repo: "https://github.com/mel-miller/melokai-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=miller2676.melokai" + formats: null colors: bg: "#303030" fg: "#FCFCFC" diff --git a/themes/meloncode.yaml b/themes/meloncode.yaml index 0f38c9c6..74ca867e 100644 --- a/themes/meloncode.yaml +++ b/themes/meloncode.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Hicoffeman.hicoffeman" version: "0.0.3" installs: 79 + rating: 0 + ratings: 0 author: "Hicoffeman" repo: "https://github.com/Hicoffeman/HicoffemanVS" url: "https://marketplace.visualstudio.com/items?itemName=Hicoffeman.hicoffeman" + formats: null colors: bg: "#171010" fg: "#E5E4CC" diff --git a/themes/melyon-blue.yaml b/themes/melyon-blue.yaml index 26471070..a0456b19 100644 --- a/themes/melyon-blue.yaml +++ b/themes/melyon-blue.yaml @@ -8,6 +8,7 @@ source: author: "cair71" repo: "https://github.com/CA1R7/melyon" url: "https://marketplace.visualstudio.com/items?itemName=cair71.melyon-vscode" + formats: null colors: bg: "#0D111B" fg: "#A2AABC" diff --git a/themes/melyon.yaml b/themes/melyon.yaml index cd08d753..d55c6f5e 100644 --- a/themes/melyon.yaml +++ b/themes/melyon.yaml @@ -8,6 +8,7 @@ source: author: "cair71" repo: "https://github.com/CA1R7/melyon" url: "https://marketplace.visualstudio.com/items?itemName=cair71.melyon-vscode" + formats: null colors: bg: "#0D111B" fg: "#A2AABC" diff --git a/themes/menelik.yaml b/themes/menelik.yaml index 9466a32c..707035c9 100644 --- a/themes/menelik.yaml +++ b/themes/menelik.yaml @@ -8,6 +8,7 @@ source: author: "Mansa Muntari" repo: "https://github.com/Mansa-Muntari/menelik-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=mansa-muntari.menelik-theme" + formats: null colors: bg: "#0D0D0D" fg: "#D9D9D9" diff --git a/themes/meoceanemerald.yaml b/themes/meoceanemerald.yaml deleted file mode 100644 index 488c412b..00000000 --- a/themes/meoceanemerald.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "MeOceanEmerald" -source: - marketplace_id: "JaianeOliveira.meoceanthemes" - version: "0.0.5" - installs: 9236 - rating: 0 - ratings: 0 - author: "Jaiane Oliveira" - repo: "https://github.com/JaianeOliveira/meocean-themes" - url: "https://marketplace.visualstudio.com/items?itemName=JaianeOliveira.meoceanthemes" -colors: - bg: "#1F1F1F" - fg: "#F1F1F1" - black: "#000000" - red: "#E20E4A" - green: "#3FB48D" - yellow: "#E5B010" - blue: "#7066B6" - magenta: "#A469CF" - cyan: "#5AC2D3" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#FF0C51" - brightGreen: "#57FFC7" - brightYellow: "#FFC71F" - brightBlue: "#8F80FF" - brightMagenta: "#CA82FF" - brightCyan: "#67EAFF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.7 - black: 0 - red: 29 - green: 49.8 - yellow: 62.2 - blue: 25.7 - magenta: 34.3 - cyan: 59.9 - white: 89 - brightBlack: 21.1 - brightRed: 36.2 - brightGreen: 88.9 - brightYellow: 75.6 - brightBlue: 41.6 - brightMagenta: 49.8 - brightCyan: 81.5 - brightWhite: 89 diff --git a/themes/meoceangray.yaml b/themes/meoceangray.yaml index 2d480ec0..f5427322 100644 --- a/themes/meoceangray.yaml +++ b/themes/meoceangray.yaml @@ -8,6 +8,7 @@ source: author: "Jaiane Oliveira" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JaianeOliveira.meoceangray" + formats: null colors: bg: "#1F1F1F" fg: "#F1F1F1" diff --git a/themes/meridian-neutral.yaml b/themes/meridian-neutral.yaml deleted file mode 100644 index 0750e580..00000000 --- a/themes/meridian-neutral.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Meridian Neutral" -source: - marketplace_id: "britown.vscode-theme-meridian" - version: "0.0.14" - installs: 166 - rating: 0 - ratings: 0 - author: "Britown" - repo: "https://github.com/bkuzmanoski/vscode-theme-meridian" - url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-meridian" -colors: - bg: "#FCFCFC" - fg: "#353535" - black: "#353535" - red: "#B03645" - green: "#446F53" - yellow: "#9F5A38" - blue: "#3378A3" - magenta: "#9F5090" - cyan: "#417B81" - white: "#BBBBBB" - brightBlack: "#8E8E8E" - brightRed: "#DE6E7C" - brightGreen: "#68AE7F" - brightYellow: "#D68C67" - brightBlue: "#61ABDA" - brightMagenta: "#CF86C1" - brightCyan: "#65B8C1" - brightWhite: "#6E6E6E" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.2 - black: 96.2 - red: 77.5 - green: 76.9 - yellow: 74 - blue: 71.4 - magenta: 73.7 - cyan: 71.4 - white: 34.9 - brightBlack: 58.3 - brightRed: 56.6 - brightGreen: 49.5 - brightYellow: 50.2 - brightBlue: 47.4 - brightMagenta: 50.1 - brightCyan: 43.2 - brightWhite: 73.4 diff --git a/themes/meridian.yaml b/themes/meridian.yaml deleted file mode 100644 index 8703f57a..00000000 --- a/themes/meridian.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Meridian" -source: - marketplace_id: "britown.vscode-theme-meridian" - version: "0.0.14" - installs: 166 - rating: 0 - ratings: 0 - author: "Britown" - repo: "https://github.com/bkuzmanoski/vscode-theme-meridian" - url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-meridian" -colors: - bg: "#FCFCFD" - fg: "#2E363C" - black: "#2E363C" - red: "#B03645" - green: "#446F53" - yellow: "#9F5A38" - blue: "#3378A3" - magenta: "#9F5090" - cyan: "#417B81" - white: "#B4BBC2" - brightBlack: "#839099" - brightRed: "#DE6E7C" - brightGreen: "#68AE7F" - brightYellow: "#D68C67" - brightBlue: "#61ABDA" - brightMagenta: "#CF86C1" - brightCyan: "#65B8C1" - brightWhite: "#637079" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.3 - black: 96.3 - red: 77.5 - green: 77 - yellow: 74.1 - blue: 71.4 - magenta: 73.8 - cyan: 71.4 - white: 35.5 - brightBlack: 58.3 - brightRed: 56.6 - brightGreen: 49.6 - brightYellow: 50.3 - brightBlue: 47.4 - brightMagenta: 50.2 - brightCyan: 43.2 - brightWhite: 73.4 diff --git a/themes/merlot.yaml b/themes/merlot.yaml index e68d76e1..f5acdf0d 100644 --- a/themes/merlot.yaml +++ b/themes/merlot.yaml @@ -8,6 +8,7 @@ source: author: "yoobdev" repo: "https://github.com/kimkom369/VSCode-Theme-Pack" url: "https://marketplace.visualstudio.com/items?itemName=yubiDev.yoobdev" + formats: null colors: bg: "#A53860" fg: "#F9DBBD" diff --git a/themes/mesalvo-cortex.yaml b/themes/mesalvo-cortex.yaml index c0e2c3d2..6ba5c1d6 100644 --- a/themes/mesalvo-cortex.yaml +++ b/themes/mesalvo-cortex.yaml @@ -8,6 +8,7 @@ source: author: "PolGubau" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PolGubau.mesalvo" + formats: null colors: bg: "#011011" fg: "#EAFEFF" diff --git a/themes/meshvoid-light.yaml b/themes/meshvoid-light.yaml deleted file mode 100644 index 6671f675..00000000 --- a/themes/meshvoid-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "MeshVoid_Light" -source: - marketplace_id: "MeshVoid.theme-meshvoid" - version: "1.3.1" - installs: 726 - rating: 0 - ratings: 0 - author: "MeshVoid" - repo: "https://github.com/MeshVoid/VSC_MeshVoid_Theme" - url: "https://marketplace.visualstudio.com/items?itemName=MeshVoid.theme-meshvoid" -colors: - bg: "#A7A7A7" - fg: "#000000" - black: "#000000" - red: "#B00000" - green: "#007300" - yellow: "#808400" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#FFFFFF" - brightBlack: "#5E5E5E" - brightRed: "#C24E4E" - brightGreen: "#00FF00" - brightYellow: "#F8FF00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#D7D5D5" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 56.6 - black: 56.6 - red: 33.4 - green: 30.2 - yellow: 17.9 - blue: 36.6 - magenta: 25.1 - cyan: 11.1 - white: 52.4 - brightBlack: 32.7 - brightRed: 22.3 - brightGreen: 31 - brightYellow: 46.2 - brightBlue: 36.6 - brightMagenta: 25.1 - brightCyan: 11.1 - brightWhite: 25.9 diff --git a/themes/meshvoid.yaml b/themes/meshvoid.yaml deleted file mode 100644 index 52a21c99..00000000 --- a/themes/meshvoid.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Meshvoid" -source: - marketplace_id: "MeshVoid.theme-meshvoid" - version: "1.3.1" - installs: 726 - rating: 0 - ratings: 0 - author: "MeshVoid" - repo: "https://github.com/MeshVoid/VSC_MeshVoid_Theme" - url: "https://marketplace.visualstudio.com/items?itemName=MeshVoid.theme-meshvoid" -colors: - bg: "#474747" - fg: "#E4E4E4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.3 - black: 12.5 - red: 15.6 - green: 41.9 - yellow: 74.5 - blue: 16.3 - magenta: 18.7 - cyan: 36.5 - white: 78.9 - brightBlack: 10.9 - brightRed: 27.5 - brightGreen: 52.4 - brightYellow: 84.5 - brightBlue: 28.9 - brightMagenta: 34.3 - brightCyan: 44.3 - brightWhite: 78.9 diff --git a/themes/metagrama.yaml b/themes/metagrama.yaml index 76df9cb4..17104ca0 100644 --- a/themes/metagrama.yaml +++ b/themes/metagrama.yaml @@ -8,6 +8,7 @@ source: author: "Zentropia" repo: "https://github.com/zentropia/vscode-theme-metagrama" url: "https://marketplace.visualstudio.com/items?itemName=Zentropia.theme-metagrama" + formats: null colors: bg: "#FFFAF4" fg: "#282828" diff --git a/themes/meteora.yaml b/themes/meteora.yaml index ac1f5057..bc738ca6 100644 --- a/themes/meteora.yaml +++ b/themes/meteora.yaml @@ -2,12 +2,13 @@ name: "Meteora" source: marketplace_id: "pjmiravalle.meteora" version: "0.0.1" - installs: 848 + installs: 849 rating: 0 ratings: 0 author: "Patrick Miravalle" repo: "https://github.com/pjmiravalle/meteora-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=pjmiravalle.meteora" + formats: null colors: bg: "#15151B" fg: "#A9B1D6" diff --git a/themes/metropolis-light.yaml b/themes/metropolis-light.yaml index ad8e68dc..ccabfc1a 100644 --- a/themes/metropolis-light.yaml +++ b/themes/metropolis-light.yaml @@ -8,6 +8,7 @@ source: author: "Fabian Deckmann" repo: "https://github.com/ffjaervik/metropolis-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=FabianDeckmann.metropolis" + formats: null colors: bg: "#F5F7FA" fg: "#2D3748" diff --git a/themes/metropolis-sky-scape.yaml b/themes/metropolis-sky-scape.yaml deleted file mode 100644 index 5fb06817..00000000 --- a/themes/metropolis-sky-scape.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Metropolis-Sky-Scape" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#333333" - fg: "#F4F4DD" - black: "#333333" - red: "#FF4400" - green: "#29C3A0" - yellow: "#D29922" - blue: "#FFBE14" - magenta: "#FFBE14" - cyan: "#29C3A0" - white: "#F4F4DD" - brightBlack: "#333333" - brightRed: "#FF4400" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#FFBE14" - brightMagenta: "#FFBE14" - brightCyan: "#29C3A0" - brightWhite: "#F4F4DD" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 93.8 - black: 0 - red: 35.4 - green: 52.8 - yellow: 46.8 - blue: 68.1 - magenta: 68.1 - cyan: 52.8 - white: 93.8 - brightBlack: 0 - brightRed: 35.4 - brightGreen: 52.8 - brightYellow: 46.8 - brightBlue: 68.1 - brightMagenta: 68.1 - brightCyan: 52.8 - brightWhite: 93.8 diff --git a/themes/metropolis.yaml b/themes/metropolis.yaml index d1a561cb..11ce647a 100644 --- a/themes/metropolis.yaml +++ b/themes/metropolis.yaml @@ -8,6 +8,7 @@ source: author: "Fabian Deckmann" repo: "https://github.com/ffjaervik/metropolis-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=FabianDeckmann.metropolis" + formats: null colors: bg: "#081F2C" fg: "#3CDBC0" diff --git a/themes/mgldvd-theme.yaml b/themes/mgldvd-theme.yaml index 23384957..5a36af54 100644 --- a/themes/mgldvd-theme.yaml +++ b/themes/mgldvd-theme.yaml @@ -8,6 +8,7 @@ source: author: "Mgldvd" repo: "https://github.com/mgldvd/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mgldvd.mgldvd" + formats: null colors: bg: "#F0F0F0" fg: "#6E6A86" diff --git a/themes/mh-theme.yaml b/themes/mh-theme.yaml index 0664aaee..bd9e01d5 100644 --- a/themes/mh-theme.yaml +++ b/themes/mh-theme.yaml @@ -8,6 +8,7 @@ source: author: "Pana Miguel" repo: "https://github.com/MHP24/vsc-mh-theme" url: "https://marketplace.visualstudio.com/items?itemName=PanaMiguel.mh-theme" + formats: null colors: bg: "#292D3E" fg: "#D4DCE0" diff --git a/themes/mhfeizi.yaml b/themes/mhfeizi.yaml index c6b0ec9c..a0d842d5 100644 --- a/themes/mhfeizi.yaml +++ b/themes/mhfeizi.yaml @@ -8,6 +8,7 @@ source: author: "mhfeizi" repo: "https://github.com/mhfeizi/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mhfeizi.mhfeizi-vscode-theme" + formats: null colors: bg: "#0A0E0F" fg: "#FFFFFF" diff --git a/themes/mi4uokai.yaml b/themes/mi4uokai.yaml index e765c317..fbc1ab81 100644 --- a/themes/mi4uokai.yaml +++ b/themes/mi4uokai.yaml @@ -8,6 +8,7 @@ source: author: "Michał mi4uu Lipiński" repo: "https://github.com/mi4uu/mi4uokai-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Michami4uuLipiski.mi4uokai" + formats: null colors: bg: "#273136" fg: "#F2FFFC" diff --git a/themes/miami-nights.yaml b/themes/miami-nights.yaml index ad065e98..70d849b9 100644 --- a/themes/miami-nights.yaml +++ b/themes/miami-nights.yaml @@ -8,6 +8,7 @@ source: author: "hater" repo: "https://github.com/Kondor777200/miami-nights" url: "https://marketplace.visualstudio.com/items?itemName=hater.miami-nights" + formats: null colors: bg: "#0F0F10" fg: "#FFFFFF" diff --git a/themes/miami-vice.yaml b/themes/miami-vice.yaml deleted file mode 100644 index 70c71c95..00000000 --- a/themes/miami-vice.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Miami Vice" -source: - marketplace_id: "Noqs.darkstack" - version: "1.1.1" - installs: 2842 - rating: 0 - ratings: 0 - author: "Noqs" - repo: "https://github.com/NoxQ/Darkstack" - url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" -colors: - bg: "#101719" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#FFFE9F" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#1BE7FF" - white: "#D4D4D4" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#F899E9" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 217 - pair: null - contrast: - fg: 79.6 - black: 0 - red: 26.8 - green: 53.1 - yellow: 103 - blue: 27.5 - magenta: 29.9 - cyan: 79.2 - white: 79.6 - brightBlack: 22.1 - brightRed: 38.7 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 64.1 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/miami-wind.yaml b/themes/miami-wind.yaml index b07c5544..caa60bc5 100644 --- a/themes/miami-wind.yaml +++ b/themes/miami-wind.yaml @@ -8,6 +8,7 @@ source: author: "hanakin" repo: "https://github.com/hanakin/miami-wind-vscode" url: "https://marketplace.visualstudio.com/items?itemName=hanakin.miami-wind" + formats: null colors: bg: "#1E1E2E" fg: "#CDD6F4" diff --git a/themes/miasma-color-theme.yaml b/themes/miasma-color-theme.yaml deleted file mode 100644 index 61a1ad1f..00000000 --- a/themes/miasma-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "miasma-color-theme" -source: - marketplace_id: "wavebeem.four-sages-vscode" - version: "1.0.0" - installs: 208 - rating: 0 - ratings: 0 - author: "Sage Fennel" - repo: "https://github.com/wavebeem/four-sages-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.four-sages-vscode" -colors: - bg: "#223130" - fg: "#C0D2D0" - black: "#23504E" - red: "#FF95A9" - green: "#81D943" - yellow: "#FF9C75" - blue: "#8FBEFF" - magenta: "#F58EFF" - cyan: "#00DDD4" - white: "#FFFFFF" - brightBlack: "#23504E" - brightRed: "#FF95A9" - brightGreen: "#81D943" - brightYellow: "#FF9C75" - brightBlue: "#8FBEFF" - brightMagenta: "#F58EFF" - brightCyan: "#00DDD4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 191 - pair: null - contrast: - fg: 72.3 - black: 0 - red: 57.3 - green: 66 - yellow: 58 - blue: 61.3 - magenta: 57.8 - cyan: 68.2 - white: 103.2 - brightBlack: 0 - brightRed: 57.3 - brightGreen: 66 - brightYellow: 58 - brightBlue: 61.3 - brightMagenta: 57.8 - brightCyan: 68.2 - brightWhite: 103.2 diff --git a/themes/mibtema.yaml b/themes/mibtema.yaml index 09f3b6a1..34f231d7 100644 --- a/themes/mibtema.yaml +++ b/themes/mibtema.yaml @@ -8,6 +8,7 @@ source: author: "Mib Tema" repo: "https://github.com/sidicastro/mib-tema" url: "https://marketplace.visualstudio.com/items?itemName=MibTema.mib-tema" + formats: null colors: bg: "#2A2D3B" fg: "#D4D4D4" diff --git a/themes/michota.yaml b/themes/michota.yaml index 8fd6a6ed..9a54d2c9 100644 --- a/themes/michota.yaml +++ b/themes/michota.yaml @@ -8,6 +8,7 @@ source: author: "michota" repo: "https://github.com/Michota/michota-theme" url: "https://marketplace.visualstudio.com/items?itemName=michota.Michota" + formats: null colors: bg: "#202020" fg: "#ABB2BF" diff --git a/themes/micky-dark-black.yaml b/themes/micky-dark-black.yaml index 10b8c3ba..ec717774 100644 --- a/themes/micky-dark-black.yaml +++ b/themes/micky-dark-black.yaml @@ -8,6 +8,7 @@ source: author: "Micky" repo: "https://github.com/meetusadadiya/micky-dark" url: "https://marketplace.visualstudio.com/items?itemName=Micky.micky-dark" + formats: null colors: bg: "#000000" fg: "#B3B1AD" diff --git a/themes/micky-dark-lite-black.yaml b/themes/micky-dark-lite-black.yaml index 7db180d4..af067b68 100644 --- a/themes/micky-dark-lite-black.yaml +++ b/themes/micky-dark-lite-black.yaml @@ -8,6 +8,7 @@ source: author: "Micky" repo: "https://github.com/meetusadadiya/micky-dark" url: "https://marketplace.visualstudio.com/items?itemName=Micky.micky-dark" + formats: null colors: bg: "#202020" fg: "#B3B1AD" diff --git a/themes/micky-dark-lite.yaml b/themes/micky-dark-lite.yaml index eb05d0cd..86c7a921 100644 --- a/themes/micky-dark-lite.yaml +++ b/themes/micky-dark-lite.yaml @@ -8,6 +8,7 @@ source: author: "Micky" repo: "https://github.com/meetusadadiya/micky-dark" url: "https://marketplace.visualstudio.com/items?itemName=Micky.micky-dark" + formats: null colors: bg: "#1A1C25" fg: "#B3B1AD" diff --git a/themes/microhouse.yaml b/themes/microhouse.yaml index f70d04f7..5dcc5c46 100644 --- a/themes/microhouse.yaml +++ b/themes/microhouse.yaml @@ -1,4 +1,4 @@ -name: "Microhouse" +name: "microhouse" source: marketplace_id: "DiscreteProjects.microhouse" version: "0.1.3" @@ -8,6 +8,7 @@ source: author: "Discrete_Projects" repo: "https://github.com/discrete-projects/op-one" url: "https://marketplace.visualstudio.com/items?itemName=DiscreteProjects.microhouse" + formats: null colors: bg: "#0E0C11" fg: "#E9E9E9" diff --git a/themes/midas-touch-light.yaml b/themes/midas-touch-light.yaml index d9c2d188..2276099b 100644 --- a/themes/midas-touch-light.yaml +++ b/themes/midas-touch-light.yaml @@ -8,6 +8,7 @@ source: author: "vshakitskiy" repo: "https://github.com/vshakitskiy/midas_touch" url: "https://marketplace.visualstudio.com/items?itemName=vshakitskiy.midas-touch" + formats: null colors: bg: "#FFE8ED" fg: "#803947" diff --git a/themes/midas-touch.yaml b/themes/midas-touch.yaml deleted file mode 100644 index 014a4848..00000000 --- a/themes/midas-touch.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Midas-Touch" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#0C0A09" - fg: "#FAFAF9" - black: "#0C0A09" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#FACC15" - magenta: "#FACC15" - cyan: "#29C3A0" - white: "#FAFAF9" - brightBlack: "#0C0A09" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#FACC15" - brightMagenta: "#FACC15" - brightCyan: "#29C3A0" - brightWhite: "#FAFAF9" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 104.4 - black: 0 - red: 10.2 - green: 58.5 - yellow: 52.5 - blue: 78.6 - magenta: 78.6 - cyan: 58.5 - white: 104.4 - brightBlack: 0 - brightRed: 10.2 - brightGreen: 58.5 - brightYellow: 52.5 - brightBlue: 78.6 - brightMagenta: 78.6 - brightCyan: 58.5 - brightWhite: 104.4 diff --git a/themes/midcentury.yaml b/themes/midcentury.yaml index 9c4a39e0..265b00e3 100644 --- a/themes/midcentury.yaml +++ b/themes/midcentury.yaml @@ -8,6 +8,7 @@ source: author: "Adam Schuster" repo: "https://github.com/atomicguy/midcentury" url: "https://marketplace.visualstudio.com/items?itemName=Atompowered.midcentury" + formats: null colors: bg: "#321513" fg: "#FBE5C6" diff --git a/themes/middle-field-canvas.yaml b/themes/middle-field-canvas.yaml deleted file mode 100644 index d9268fe8..00000000 --- a/themes/middle-field-canvas.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Middle-Field-Canvas" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#0A0A0A" - fg: "#FAFAFA" - black: "#0A0A0A" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#FAFAFA" - magenta: "#FAFAFA" - cyan: "#29C3A0" - white: "#FAFAFA" - brightBlack: "#0A0A0A" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#FAFAFA" - brightMagenta: "#FAFAFA" - brightCyan: "#29C3A0" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 104.4 - black: 0 - red: 10.2 - green: 58.5 - yellow: 52.6 - blue: 104.4 - magenta: 104.4 - cyan: 58.5 - white: 104.4 - brightBlack: 0 - brightRed: 10.2 - brightGreen: 58.5 - brightYellow: 52.6 - brightBlue: 104.4 - brightMagenta: 104.4 - brightCyan: 58.5 - brightWhite: 104.4 diff --git a/themes/midight-sun.yaml b/themes/midight-sun.yaml index 398ca06d..d355bdd1 100644 --- a/themes/midight-sun.yaml +++ b/themes/midight-sun.yaml @@ -8,6 +8,7 @@ source: author: "Perfect Nkosi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PerfectNkosi.midnight-sun" + formats: null colors: bg: "#031622" fg: "#D4D4D4" diff --git a/themes/midnight-blueprint.yaml b/themes/midnight-blueprint.yaml index 9b590238..4082e23d 100644 --- a/themes/midnight-blueprint.yaml +++ b/themes/midnight-blueprint.yaml @@ -8,6 +8,7 @@ source: author: "Gagan Goswami" repo: "https://github.com/GaganGoswami/midnight-blueprint-theme" url: "https://marketplace.visualstudio.com/items?itemName=GaganGoswami.midnight-blueprint" + formats: null colors: bg: "#1A1F2E" fg: "#9DB7D6" diff --git a/themes/midnight-breeze.yaml b/themes/midnight-breeze.yaml index 7f4aa4cb..9f76af6e 100644 --- a/themes/midnight-breeze.yaml +++ b/themes/midnight-breeze.yaml @@ -8,6 +8,8 @@ source: author: "Leandro Aparecido de Siqueira" repo: "https://github.com/leandroaps/midnight-breeze" url: "https://marketplace.visualstudio.com/items?itemName=leandroaps.vscode-theme-midnight-breeze" + formats: + iterm2: "https://raw.githubusercontent.com/leandroaps/midnight-breeze/main/themes/MidnightBreeze.itermcolors" colors: bg: "#1A1C2C" fg: "#D6DEEB" diff --git a/themes/midnight-candy.yaml b/themes/midnight-candy.yaml index 6ac1d32c..512ac359 100644 --- a/themes/midnight-candy.yaml +++ b/themes/midnight-candy.yaml @@ -8,6 +8,7 @@ source: author: "Rav Goundar" repo: "https://github.com/ravgoundar/midnight_candy" url: "https://marketplace.visualstudio.com/items?itemName=RavGoundar.midnight-candy" + formats: null colors: bg: "#0D1017" fg: "#FFFFFF" diff --git a/themes/midnight-city.yaml b/themes/midnight-city.yaml deleted file mode 100644 index e07bcd86..00000000 --- a/themes/midnight-city.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Midnight City" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#0D011E" - fg: "#FFFFD8" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 300 - pair: null - contrast: - fg: 106 - black: 0 - red: 44.2 - green: 85.7 - yellow: 99.4 - blue: 54.4 - magenta: 55.4 - cyan: 84.8 - white: 102.8 - brightBlack: 28.8 - brightRed: 49.6 - brightGreen: 89.8 - brightYellow: 104.3 - brightBlue: 66.9 - brightMagenta: 63.4 - brightCyan: 97.6 - brightWhite: 107.7 diff --git a/themes/midnight-color-theme.yaml b/themes/midnight-color-theme.yaml index 6463017b..04f004d8 100644 --- a/themes/midnight-color-theme.yaml +++ b/themes/midnight-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Sage Fennel" repo: "https://github.com/wavebeem/vscode-theme-unoduetre" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" + formats: null colors: bg: "#2C1F47" fg: "#DFD1FA" diff --git a/themes/midnight-dark.yaml b/themes/midnight-dark.yaml index f998fe24..17dd6af1 100644 --- a/themes/midnight-dark.yaml +++ b/themes/midnight-dark.yaml @@ -8,6 +8,7 @@ source: author: "ExtRise" repo: "https://github.com/extrise/midnight-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" + formats: null colors: bg: "#1A1B26" fg: "#C0CAF5" diff --git a/themes/midnight-darker.yaml b/themes/midnight-darker.yaml index d857b185..045002bd 100644 --- a/themes/midnight-darker.yaml +++ b/themes/midnight-darker.yaml @@ -8,6 +8,7 @@ source: author: "Éwerton Ferreira" repo: "https://github.com/thewerthon/midnight" url: "https://marketplace.visualstudio.com/items?itemName=thewerthon.thewerthon-midnight" + formats: null colors: bg: "#1A1F26" fg: "#ABB2BF" diff --git a/themes/midnight-dracula.yaml b/themes/midnight-dracula.yaml index d1e0c10a..2173088d 100644 --- a/themes/midnight-dracula.yaml +++ b/themes/midnight-dracula.yaml @@ -8,6 +8,7 @@ source: author: "jvbs" repo: "https://github.com/jvbs/midnight-dracula" url: "https://marketplace.visualstudio.com/items?itemName=jvbs.midnight-dracula" + formats: null colors: bg: "#0B0D0F" fg: "#F8F8F2" diff --git a/themes/midnight-embers.yaml b/themes/midnight-embers.yaml index 3561f07d..238d2cf0 100644 --- a/themes/midnight-embers.yaml +++ b/themes/midnight-embers.yaml @@ -8,6 +8,7 @@ source: author: "ShadowSlayer" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ShadowSlayer.midnightembers" + formats: null colors: bg: "#1B1D20" fg: "#943232" diff --git a/themes/midnight-emerald.yaml b/themes/midnight-emerald.yaml index acb5818c..9ffbc7dd 100644 --- a/themes/midnight-emerald.yaml +++ b/themes/midnight-emerald.yaml @@ -8,6 +8,7 @@ source: author: "SaptanshuWanjari" repo: "https://github.com/SaptanshuWanjari/Midnight-Emerald" url: "https://marketplace.visualstudio.com/items?itemName=SaptanshuWanjari.midnight-emerald-theme" + formats: null colors: bg: "#15141B" fg: "#F8FAFC" diff --git a/themes/midnight-forest.yaml b/themes/midnight-forest.yaml index cc9df33a..38491be3 100644 --- a/themes/midnight-forest.yaml +++ b/themes/midnight-forest.yaml @@ -8,6 +8,7 @@ source: author: "ExtRise" repo: "https://github.com/extrise/midnight-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" + formats: null colors: bg: "#0D1117" fg: "#C9D1D9" diff --git a/themes/midnight-fusion.yaml b/themes/midnight-fusion.yaml index 74bb7f0d..1433590c 100644 --- a/themes/midnight-fusion.yaml +++ b/themes/midnight-fusion.yaml @@ -1,4 +1,4 @@ -name: "midnight-fusion" +name: "Midnight Fusion" source: marketplace_id: "Abdulrahmansde.midnight-fusion" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Abdulrahman" repo: "https://github.com/abdulrehman-codecrafter/Vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Abdulrahmansde.midnight-fusion" + formats: null colors: bg: "#030C1B" fg: "#E06C75" diff --git a/themes/midnight-gambler.yaml b/themes/midnight-gambler.yaml index 31771838..598c8d4a 100644 --- a/themes/midnight-gambler.yaml +++ b/themes/midnight-gambler.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#0D0D0D" fg: "#F8F8FF" diff --git a/themes/midnight-grove.yaml b/themes/midnight-grove.yaml index 74016f82..e47734e9 100644 --- a/themes/midnight-grove.yaml +++ b/themes/midnight-grove.yaml @@ -8,6 +8,7 @@ source: author: "lela" repo: "https://github.com/lelamanolio/midnight-grove-vstheme" url: "https://marketplace.visualstudio.com/items?itemName=lela.midnight-grove" + formats: null colors: bg: "#07130F" fg: "#D6DEEB" diff --git a/themes/midnight-guest.yaml b/themes/midnight-guest.yaml index bdb826d4..f2a51d1f 100644 --- a/themes/midnight-guest.yaml +++ b/themes/midnight-guest.yaml @@ -8,6 +8,7 @@ source: author: "flover" repo: null url: "https://marketplace.visualstudio.com/items?itemName=flover.fromis-day" + formats: null colors: bg: "#2D2B55" fg: "#FFFFFF" diff --git a/themes/midnight-high-contrast-dark.yaml b/themes/midnight-high-contrast-dark.yaml index 80915900..5c7b6705 100644 --- a/themes/midnight-high-contrast-dark.yaml +++ b/themes/midnight-high-contrast-dark.yaml @@ -8,6 +8,7 @@ source: author: "ExtRise" repo: "https://github.com/extrise/midnight-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/midnight-high-contrast-light.yaml b/themes/midnight-high-contrast-light.yaml index 5d20e49f..6d54f7ab 100644 --- a/themes/midnight-high-contrast-light.yaml +++ b/themes/midnight-high-contrast-light.yaml @@ -8,6 +8,7 @@ source: author: "ExtRise" repo: "https://github.com/extrise/midnight-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/midnight-koi.yaml b/themes/midnight-koi.yaml index eda6dffd..f0c432b4 100644 --- a/themes/midnight-koi.yaml +++ b/themes/midnight-koi.yaml @@ -8,6 +8,7 @@ source: author: "scottydotcom" repo: "https://github.com/scottydotcom/midnight-koi" url: "https://marketplace.visualstudio.com/items?itemName=scottydotcom.scottydotcom-dark-theme" + formats: null colors: bg: "#131419" fg: "#BBBBBB" diff --git a/themes/midnight-lake.yaml b/themes/midnight-lake.yaml index 482d5a12..2b3fa151 100644 --- a/themes/midnight-lake.yaml +++ b/themes/midnight-lake.yaml @@ -8,6 +8,7 @@ source: author: "Chiramium" repo: "https://github.com/Chiramium/Midnight-Lake" url: "https://marketplace.visualstudio.com/items?itemName=Chiramium.midnightlake" + formats: null colors: bg: "#1E1E1E" fg: "#DBDBDB" diff --git a/themes/midnight-light.yaml b/themes/midnight-light.yaml index 7bb54e04..c73a5860 100644 --- a/themes/midnight-light.yaml +++ b/themes/midnight-light.yaml @@ -8,6 +8,7 @@ source: author: "ExtRise" repo: "https://github.com/extrise/midnight-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" + formats: null colors: bg: "#FAFAFA" fg: "#2E3440" diff --git a/themes/midnight-marina.yaml b/themes/midnight-marina.yaml index 7916ca35..7e608650 100644 --- a/themes/midnight-marina.yaml +++ b/themes/midnight-marina.yaml @@ -8,6 +8,7 @@ source: author: "Muddyblack" repo: "https://github.com/Muddyblack/midnight-marina-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Muddyblack.midnight-marina" + formats: null colors: bg: "#03233A" fg: "#CBE0F0" diff --git a/themes/midnight-mirage.yaml b/themes/midnight-mirage.yaml deleted file mode 100644 index 64d8b0dd..00000000 --- a/themes/midnight-mirage.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Midnight Mirage" -source: - marketplace_id: "puszkarek.midnight-mirage-theme" - version: "0.1.6" - installs: 565 - rating: 5 - ratings: 1 - author: "Puszkarek" - repo: "https://github.com/Puszkarek/midnight-mirage-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.midnight-mirage-theme" -colors: - bg: "#313B43" - fg: "#DBDDE1" - black: "#111111" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#DBDDE1" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#F2F3F5" -meta: - mode: "dark" - accent: "pink" - hue: 242 - pair: null - contrast: - fg: 78.1 - black: 0 - red: 19.9 - green: 46.2 - yellow: 78.8 - blue: 20.6 - magenta: 22.9 - cyan: 40.7 - white: 78.1 - brightBlack: 15.2 - brightRed: 31.8 - brightGreen: 56.7 - brightYellow: 88.8 - brightBlue: 33.2 - brightMagenta: 38.6 - brightCyan: 48.6 - brightWhite: 92.1 diff --git a/themes/midnight-monochrome.yaml b/themes/midnight-monochrome.yaml index 2b600b52..627d0ad6 100644 --- a/themes/midnight-monochrome.yaml +++ b/themes/midnight-monochrome.yaml @@ -8,6 +8,7 @@ source: author: "ExtRise" repo: "https://github.com/extrise/midnight-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" + formats: null colors: bg: "#0D0D0D" fg: "#E5E5E5" diff --git a/themes/midnight-monokai.yaml b/themes/midnight-monokai.yaml index 2723e10f..0292dac3 100644 --- a/themes/midnight-monokai.yaml +++ b/themes/midnight-monokai.yaml @@ -8,6 +8,7 @@ source: author: "Andrew Sen" repo: "https://github.com/platformer/vscode-midnight-monokai" url: "https://marketplace.visualstudio.com/items?itemName=AndrewSen.vscode-midnight-monokai" + formats: null colors: bg: "#0F0F0F" fg: "#DDDDDD" diff --git a/themes/midnight-moon-eclipse.yaml b/themes/midnight-moon-eclipse.yaml deleted file mode 100644 index 1426a094..00000000 --- a/themes/midnight-moon-eclipse.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Midnight Moon Eclipse" -source: - marketplace_id: "Noxire.midnight-themepack" - version: "1.2.0" - installs: 544 - rating: 0 - ratings: 0 - author: "Noxire" - repo: "https://github.com/Noxire-Hash/midnight-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" -colors: - bg: "#1A1D32" - fg: "#D8E3FA" - black: "#1A1D32" - red: "#FF6380" - green: "#98BB6C" - yellow: "#E6C384" - blue: "#72D0B3" - magenta: "#D18FD7" - cyan: "#72D0B3" - white: "#D8E3FA" - brightBlack: "#4A4F7A" - brightRed: "#FF6380" - brightGreen: "#98BB6C" - brightYellow: "#E6C384" - brightBlue: "#72D0B3" - brightMagenta: "#D18FD7" - brightCyan: "#72D0B3" - brightWhite: "#D8E3FA" -meta: - mode: "dark" - accent: "red" - hue: 277 - pair: null - contrast: - fg: 87.5 - black: 0 - red: 46 - green: 57.6 - yellow: 71.2 - blue: 66.1 - magenta: 52.3 - cyan: 66.1 - white: 87.5 - brightBlack: 13.1 - brightRed: 46 - brightGreen: 57.6 - brightYellow: 71.2 - brightBlue: 66.1 - brightMagenta: 52.3 - brightCyan: 66.1 - brightWhite: 87.5 diff --git a/themes/midnight-moon-ukiyo.yaml b/themes/midnight-moon-ukiyo.yaml deleted file mode 100644 index 51918f09..00000000 --- a/themes/midnight-moon-ukiyo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Midnight Moon Ukiyo" -source: - marketplace_id: "Noxire.midnight-themepack" - version: "1.2.0" - installs: 544 - rating: 0 - ratings: 0 - author: "Noxire" - repo: "https://github.com/Noxire-Hash/midnight-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" -colors: - bg: "#1F1F28" - fg: "#DCD7BA" - black: "#16161D" - red: "#C34043" - green: "#98BB6C" - yellow: "#E6C384" - blue: "#7E9CD8" - magenta: "#957FB8" - cyan: "#7FB4CA" - white: "#DCD7BA" - brightBlack: "#54546D" - brightRed: "#C34043" - brightGreen: "#98BB6C" - brightYellow: "#E6C384" - brightBlue: "#7E9CD8" - brightMagenta: "#957FB8" - brightCyan: "#7FB4CA" - brightWhite: "#DCD7BA" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 79.7 - black: 0 - red: 25.6 - green: 57.4 - yellow: 71.1 - blue: 46.7 - magenta: 37.1 - cyan: 55.5 - white: 79.7 - brightBlack: 14.5 - brightRed: 25.6 - brightGreen: 57.4 - brightYellow: 71.1 - brightBlue: 46.7 - brightMagenta: 37.1 - brightCyan: 55.5 - brightWhite: 79.7 diff --git a/themes/midnight-moon.yaml b/themes/midnight-moon.yaml deleted file mode 100644 index f62436b3..00000000 --- a/themes/midnight-moon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Midnight Moon" -source: - marketplace_id: "Noxire.midnight-themepack" - version: "1.2.0" - installs: 544 - rating: 0 - ratings: 0 - author: "Noxire" - repo: "https://github.com/Noxire-Hash/midnight-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" -colors: - bg: "#0B0E1A" - fg: "#C9D1D9" - black: "#484F58" - red: "#F85149" - green: "#7EE787" - yellow: "#F0D852" - blue: "#79C0FF" - magenta: "#D2A8FF" - cyan: "#39C5CF" - white: "#C9D1D9" - brightBlack: "#484F58" - brightRed: "#FF6B6B" - brightGreen: "#56D364" - brightYellow: "#FFEA7F" - brightBlue: "#58A6FF" - brightMagenta: "#B180D7" - brightCyan: "#56D4DD" - brightWhite: "#F0F6FC" -meta: - mode: "dark" - accent: "orange" - hue: 273 - pair: null - contrast: - fg: 77.7 - black: 13.2 - red: 41.6 - green: 78.2 - yellow: 82.3 - blue: 64.9 - magenta: 64.7 - cyan: 61.5 - white: 77.7 - brightBlack: 13.2 - brightRed: 48.7 - brightGreen: 65.6 - brightYellow: 93.4 - brightBlue: 52.3 - brightMagenta: 44.5 - brightCyan: 70.1 - brightWhite: 101 diff --git a/themes/midnight-ocean.yaml b/themes/midnight-ocean.yaml index bdc035ce..7010a658 100644 --- a/themes/midnight-ocean.yaml +++ b/themes/midnight-ocean.yaml @@ -8,6 +8,7 @@ source: author: "ExtRise" repo: "https://github.com/extrise/midnight-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" + formats: null colors: bg: "#0F1419" fg: "#BFDBFE" diff --git a/themes/midnight-pastel.yaml b/themes/midnight-pastel.yaml deleted file mode 100644 index 9ee9e7e3..00000000 --- a/themes/midnight-pastel.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Midnight Pastel" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#212121" - fg: "#FFFFFF" - black: "#000000" - red: "#FF4081" - green: "#64FFDA" - yellow: "#FFD740" - blue: "#00B0FF" - magenta: "#EA80FC" - cyan: "#64FFDA" - white: "#FFFFFF" - brightBlack: "#4A4A4A" - brightRed: "#FF4081" - brightGreen: "#64FFBA" - brightYellow: "#FFD740" - brightBlue: "#00B0FF" - brightMagenta: "#EA80FC" - brightCyan: "#64FFDA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 105.6 - black: 0 - red: 40.2 - green: 89.9 - yellow: 82.2 - blue: 52.7 - magenta: 54.2 - cyan: 89.9 - white: 105.6 - brightBlack: 9.7 - brightRed: 40.2 - brightGreen: 88.7 - brightYellow: 82.2 - brightBlue: 52.7 - brightMagenta: 54.2 - brightCyan: 89.9 - brightWhite: 105.6 diff --git a/themes/midnight-pro.yaml b/themes/midnight-pro.yaml deleted file mode 100644 index 66a30efc..00000000 --- a/themes/midnight-pro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Midnight Pro" -source: - marketplace_id: "Noxire.midnight-themepack" - version: "1.2.0" - installs: 544 - rating: 0 - ratings: 0 - author: "Noxire" - repo: "https://github.com/Noxire-Hash/midnight-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" -colors: - bg: "#131821" - fg: "#D8E3F0" - black: "#0A0E17" - red: "#FF6B88" - green: "#7FE7A5" - yellow: "#FFD47B" - blue: "#8AB8FF" - magenta: "#C77DFF" - cyan: "#7DCFFF" - white: "#E6F1FF" - brightBlack: "#0A0E17" - brightRed: "#FF8FA3" - brightGreen: "#95EFBB" - brightYellow: "#FFE095" - brightBlue: "#9FC5FF" - brightMagenta: "#D89EFF" - brightCyan: "#95DBFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 262 - pair: null - contrast: - fg: 87.8 - black: 0 - red: 48.8 - green: 78.3 - yellow: 82.9 - blue: 62 - magenta: 48.9 - cyan: 70.9 - white: 96.8 - brightBlack: 0 - brightRed: 58.9 - brightGreen: 84.6 - brightYellow: 88.7 - brightBlue: 69.3 - brightMagenta: 61.5 - brightCyan: 78.1 - brightWhite: 106.8 diff --git a/themes/midnight-purple-deep.yaml b/themes/midnight-purple-deep.yaml index 87f8c3ca..c8648498 100644 --- a/themes/midnight-purple-deep.yaml +++ b/themes/midnight-purple-deep.yaml @@ -8,6 +8,7 @@ source: author: "Barbara_Xavier" repo: "https://github.com/bxstars/midnight-purple-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=bxstars-code.midnight-purple-dark-theme" + formats: null colors: bg: "#141523" fg: "#E6E7F2" diff --git a/themes/midnight-purple.yaml b/themes/midnight-purple.yaml deleted file mode 100644 index 0f7d117a..00000000 --- a/themes/midnight-purple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Midnight Purple" -source: - marketplace_id: "CodewithBismillah.chroma-library" - version: "1.2.1" - installs: 358 - rating: 5 - ratings: 1 - author: "Code with Bismillah" - repo: "https://github.com/mubashir1837/Chroma-Library" - url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" -colors: - bg: "#0F0A1A" - fg: "#C080FF" - black: "#000000" - red: "#FF4080" - green: "#80FF40" - yellow: "#FFFF40" - blue: "#4080FF" - magenta: "#BF00FF" - cyan: "#40FFFF" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#FF4080" - brightGreen: "#80FF40" - brightYellow: "#FFFF40" - brightBlue: "#4080FF" - brightMagenta: "#BF00FF" - brightCyan: "#40FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 297 - pair: null - contrast: - fg: 49.5 - black: 0 - red: 42.1 - green: 89.6 - yellow: 102.6 - blue: 37.8 - magenta: 32.8 - cyan: 92.5 - white: 107.6 - brightBlack: 0 - brightRed: 42.1 - brightGreen: 89.6 - brightYellow: 102.6 - brightBlue: 37.8 - brightMagenta: 32.8 - brightCyan: 92.5 - brightWhite: 107.6 diff --git a/themes/midnight-rainbow.yaml b/themes/midnight-rainbow.yaml index af85c626..0e74e8f0 100644 --- a/themes/midnight-rainbow.yaml +++ b/themes/midnight-rainbow.yaml @@ -2,12 +2,13 @@ name: "Midnight Rainbow" source: marketplace_id: "parallaxshiftdj.midnightrainbow" version: "1.0.11" - installs: 2335 + installs: 2336 rating: 5 ratings: 1 author: "Parallax Shift" repo: null url: "https://marketplace.visualstudio.com/items?itemName=parallaxshiftdj.midnightrainbow" + formats: null colors: bg: "#090018" fg: "#FFFFFF" diff --git a/themes/midnight-rose-theme.yaml b/themes/midnight-rose-theme.yaml index 99fd6f38..9d723077 100644 --- a/themes/midnight-rose-theme.yaml +++ b/themes/midnight-rose-theme.yaml @@ -2,12 +2,13 @@ name: "Midnight Rose Theme" source: marketplace_id: "nathan-dev.midnight-rose-theme" version: "1.1.4" - installs: 119 + installs: 120 rating: 5 ratings: 2 author: "Nathan-extension" repo: "https://github.com/nathan/rose-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=nathan-dev.midnight-rose-theme" + formats: null colors: bg: "#161616" fg: "#EAE0E2" diff --git a/themes/midnight-sapphire.yaml b/themes/midnight-sapphire.yaml index 062c1610..eae216e8 100644 --- a/themes/midnight-sapphire.yaml +++ b/themes/midnight-sapphire.yaml @@ -1,13 +1,14 @@ -name: "Midnight Sapphire" +name: "Midnight Sapphire ✨" source: marketplace_id: "hassancoder1.midnight-sapphire" version: "1.1.0" - installs: 597 + installs: 598 rating: 0 ratings: 0 author: "HassanCoder" repo: "https://github.com/hassancoder1/midnight-sapphire-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=hassancoder1.midnight-sapphire" + formats: null colors: bg: "#1B1E2A" fg: "#FFFFFF" diff --git a/themes/midnight-shadow-fork.yaml b/themes/midnight-shadow-fork.yaml deleted file mode 100644 index a2b89131..00000000 --- a/themes/midnight-shadow-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Midnight Shadow - Fork" -source: - marketplace_id: "Vjecni.Midnight-Shadow" - version: "0.8.0" - installs: 196 - rating: 0 - ratings: 0 - author: "Vjecni" - repo: "https://github.com/Vjecni/midnight-shadow-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vjecni.Midnight-Shadow" -colors: - bg: "#18191D" - fg: "#FFFFFF" - black: "#1A1D25" - red: "#CD3131" - green: "#0DBC79" - yellow: "#9B9B00" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#A9A9A9" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106.6 - black: 0 - red: 26.5 - green: 52.8 - yellow: 44.5 - blue: 27.2 - magenta: 29.5 - cyan: 47.3 - white: 89.8 - brightBlack: 54.5 - brightRed: 38.3 - brightGreen: 63.3 - brightYellow: 95.4 - brightBlue: 39.8 - brightMagenta: 45.1 - brightCyan: 55.2 - brightWhite: 89.8 diff --git a/themes/midnight-soft.yaml b/themes/midnight-soft.yaml index 3c6890e7..eddf92e5 100644 --- a/themes/midnight-soft.yaml +++ b/themes/midnight-soft.yaml @@ -8,6 +8,7 @@ source: author: "ExtRise" repo: "https://github.com/extrise/midnight-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=ExtRise.midnight-dark-theme" + formats: null colors: bg: "#1E1E2E" fg: "#CDD6F4" diff --git a/themes/midnight-theme-light-soft.yaml b/themes/midnight-theme-light-soft.yaml index ea7f8c09..78b626e2 100644 --- a/themes/midnight-theme-light-soft.yaml +++ b/themes/midnight-theme-light-soft.yaml @@ -8,6 +8,7 @@ source: author: "Kaivan Wong" repo: "https://github.com/kaivanwong/vscode-midnight-theme" url: "https://marketplace.visualstudio.com/items?itemName=kaivanwong.vscode-midnight-theme" + formats: null colors: bg: "#F1F0E9" fg: "#393A34" diff --git a/themes/midnight-theme-light.yaml b/themes/midnight-theme-light.yaml index 14e31e13..f425bdc0 100644 --- a/themes/midnight-theme-light.yaml +++ b/themes/midnight-theme-light.yaml @@ -8,6 +8,7 @@ source: author: "Kaivan Wong" repo: "https://github.com/kaivanwong/vscode-midnight-theme" url: "https://marketplace.visualstudio.com/items?itemName=kaivanwong.vscode-midnight-theme" + formats: null colors: bg: "#FFFFFF" fg: "#393A34" diff --git a/themes/midnight-theme.yaml b/themes/midnight-theme.yaml index 6d8e79f0..716a5307 100644 --- a/themes/midnight-theme.yaml +++ b/themes/midnight-theme.yaml @@ -8,6 +8,7 @@ source: author: "khanghy1000" repo: "https://github.com/khanghy1000/Midnight-Theme" url: "https://marketplace.visualstudio.com/items?itemName=khanghy1000.midnight-ray-theme" + formats: null colors: bg: "#191C1F" fg: "#FFFFFF" diff --git a/themes/midnight-ukiyo.yaml b/themes/midnight-ukiyo.yaml deleted file mode 100644 index 2c3e9dee..00000000 --- a/themes/midnight-ukiyo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Midnight Ukiyo" -source: - marketplace_id: "Noxire.midnight-themepack" - version: "1.2.0" - installs: 544 - rating: 0 - ratings: 0 - author: "Noxire" - repo: "https://github.com/Noxire-Hash/midnight-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" -colors: - bg: "#1F1F28" - fg: "#DCD7BA" - black: "#16161D" - red: "#E82424" - green: "#98BB6C" - yellow: "#D4A574" - blue: "#7E9CD8" - magenta: "#957FB8" - cyan: "#6BB6C7" - white: "#DCD7BA" - brightBlack: "#54546D" - brightRed: "#F85149" - brightGreen: "#A8C685" - brightYellow: "#E6B886" - brightBlue: "#8BA4F0" - brightMagenta: "#A68DBF" - brightCyan: "#7DCAE9" - brightWhite: "#F0F0E7" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 79.7 - black: 0 - red: 30.7 - green: 57.4 - yellow: 56.3 - blue: 46.7 - magenta: 37.1 - cyan: 54.8 - white: 79.7 - brightBlack: 14.5 - brightRed: 39.8 - brightGreen: 64.4 - brightYellow: 66.7 - brightBlue: 52.3 - brightMagenta: 44.1 - brightCyan: 66.5 - brightWhite: 95.6 diff --git a/themes/midnight-z.yaml b/themes/midnight-z.yaml index 631f3f02..2999bbb3 100644 --- a/themes/midnight-z.yaml +++ b/themes/midnight-z.yaml @@ -8,6 +8,7 @@ source: author: "Zach Green" repo: "https://github.com/git@github.com:zachjamesgreen/Midnight-Z.git" url: "https://marketplace.visualstudio.com/items?itemName=ZachGreen.midnight-z" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/midnightblue.yaml b/themes/midnightblue.yaml index ca243950..83af1b92 100644 --- a/themes/midnightblue.yaml +++ b/themes/midnightblue.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "priteshlad3.katanax" version: "0.0.1" installs: 9 + rating: 0 + ratings: 0 author: "priteshlad3" repo: "https://github.com/pritesh88/katanax-theme" url: "https://marketplace.visualstudio.com/items?itemName=priteshlad3.katanax" + formats: null colors: bg: "#0D1B3E" fg: "#D4E8F8" diff --git a/themes/midnightglow.yaml b/themes/midnightglow.yaml index 49d06176..29a22bbb 100644 --- a/themes/midnightglow.yaml +++ b/themes/midnightglow.yaml @@ -8,6 +8,7 @@ source: author: "Dumilde Matos" repo: "https://github.com/dumildematos/midnight-glow" url: "https://marketplace.visualstudio.com/items?itemName=dumildematos.midnight-glow" + formats: null colors: bg: "#040413" fg: "#D4D4D4" diff --git a/themes/midt.yaml b/themes/midt.yaml index 33accf7f..1388143e 100644 --- a/themes/midt.yaml +++ b/themes/midt.yaml @@ -8,6 +8,7 @@ source: author: "Mark Hougaard Jensen" repo: "https://github.com/marksdk/theme-midt" url: "https://marketplace.visualstudio.com/items?itemName=marksdk.midt" + formats: null colors: bg: "#1F1726" fg: "#FFFCF5" diff --git a/themes/midwinter-light.yaml b/themes/midwinter-light.yaml index bb368d05..0f075502 100644 --- a/themes/midwinter-light.yaml +++ b/themes/midwinter-light.yaml @@ -8,6 +8,7 @@ source: author: "Tim Hull" repo: "https://www.github.com/mtyn/midwinter" url: "https://marketplace.visualstudio.com/items?itemName=merithayan.midwinter" + formats: null colors: bg: "#FFFFFF" fg: "#303036" diff --git a/themes/mihari-bordered.yaml b/themes/mihari-bordered.yaml index 0f375fa9..bb74bb44 100644 --- a/themes/mihari-bordered.yaml +++ b/themes/mihari-bordered.yaml @@ -8,6 +8,7 @@ source: author: "rynco" repo: "https://github.com/01010101lzy/mihari" url: "https://marketplace.visualstudio.com/items?itemName=rynco.mihari" + formats: null colors: bg: "#1E252A" fg: "#C4CDD5" diff --git a/themes/mihari.yaml b/themes/mihari.yaml index 47a7dfeb..28fd6a74 100644 --- a/themes/mihari.yaml +++ b/themes/mihari.yaml @@ -8,6 +8,7 @@ source: author: "rynco" repo: "https://github.com/01010101lzy/mihari" url: "https://marketplace.visualstudio.com/items?itemName=rynco.mihari" + formats: null colors: bg: "#1E252A" fg: "#C4CDD5" diff --git a/themes/mike-sources-green-crt.yaml b/themes/mike-sources-green-crt.yaml index 998a774a..50220ad6 100644 --- a/themes/mike-sources-green-crt.yaml +++ b/themes/mike-sources-green-crt.yaml @@ -8,6 +8,7 @@ source: author: "Mike Sources" repo: "https://github.com/mwfontes/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mikesources.mike-sources-pack" + formats: null colors: bg: "#081D02" fg: "#38C41F" diff --git a/themes/mike-sources-hacker.yaml b/themes/mike-sources-hacker.yaml deleted file mode 100644 index 86c30db4..00000000 --- a/themes/mike-sources-hacker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Mike Sources Hacker" -source: - marketplace_id: "mikesources.mike-sources-pack" - version: "1.1.1" - installs: 325 - rating: 0 - ratings: 0 - author: "Mike Sources" - repo: "https://github.com/mwfontes/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=mikesources.mike-sources-pack" -colors: - bg: "#000E14" - fg: "#7DF9FF" - black: "#606060" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#C2C2C2" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 222 - pair: null - contrast: - fg: 91.8 - black: 20.2 - red: 27.4 - green: 53.7 - yellow: 86.3 - blue: 28.1 - magenta: 30.5 - cyan: 48.3 - white: 90.7 - brightBlack: 69.5 - brightRed: 39.3 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 90.7 diff --git a/themes/mike-sources-yellowstone.yaml b/themes/mike-sources-yellowstone.yaml index 8630db85..719d07d9 100644 --- a/themes/mike-sources-yellowstone.yaml +++ b/themes/mike-sources-yellowstone.yaml @@ -8,6 +8,7 @@ source: author: "Mike Sources" repo: "https://github.com/mwfontes/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mikesources.mike-sources-pack" + formats: null colors: bg: "#FCC22D" fg: "#000000" diff --git a/themes/mikes-vscode-theme-1.yaml b/themes/mikes-vscode-theme-1.yaml index a01f8ed9..a738a5e5 100644 --- a/themes/mikes-vscode-theme-1.yaml +++ b/themes/mikes-vscode-theme-1.yaml @@ -8,6 +8,7 @@ source: author: "MikeT" repo: "https://github.com/MichaelTitmouse/Mikes-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=MikeT.Mikes-color-theme" + formats: null colors: bg: "#23272E" fg: "#ABB2BF" diff --git a/themes/mikestheme-edited-gulajavaministudio-mayukai-theme.yaml b/themes/mikestheme-edited-gulajavaministudio-mayukai-theme.yaml deleted file mode 100644 index 1c18f256..00000000 --- a/themes/mikestheme-edited-gulajavaministudio-mayukai-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mikestheme (edited GulajavaMinistudio Mayukai theme)" -source: - marketplace_id: "mikep.mikestheme" - version: "0.0.1" - installs: 98 - rating: 0 - ratings: 0 - author: "mikep" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=mikep.mikestheme" -colors: - bg: "#1A1D25" - fg: "#F5F5DF" - black: "#1E232E" - red: "#ED8274" - green: "#A6CC70" - yellow: "#FAD07B" - blue: "#95E6CB" - magenta: "#CFBAFA" - cyan: "#95E6CB" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F28779" - brightGreen: "#8ADBB7" - brightYellow: "#FFD17A" - brightBlue: "#95E6CB" - brightMagenta: "#CCA0FF" - brightCyan: "#95E6CB" - brightWhite: "#FDFDFD" -meta: - mode: "dark" - accent: "magenta" - hue: 269 - pair: null - contrast: - fg: 98.6 - black: 0 - red: 49.6 - green: 66.8 - yellow: 79.8 - blue: 80.2 - magenta: 69.3 - cyan: 80.2 - white: 71 - brightBlack: 22.2 - brightRed: 52.2 - brightGreen: 73.3 - brightYellow: 81 - brightBlue: 80.2 - brightMagenta: 59.7 - brightCyan: 80.2 - brightWhite: 104.8 diff --git a/themes/miku-code-fusion-light.yaml b/themes/miku-code-fusion-light.yaml deleted file mode 100644 index fe477cd0..00000000 --- a/themes/miku-code-fusion-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Miku Code Fusion Light" -source: - marketplace_id: "biglexj.miku-code" - version: "1.3.6" - installs: 2157 - rating: 5 - ratings: 1 - author: "biglexj" - repo: "https://github.com/biglexj/miku-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=biglexj.miku-code" -colors: - bg: "#FFFFFF" - fg: "#0891B2" - black: "#24292F" - red: "#DC2626" - green: "#059669" - yellow: "#EAB308" - blue: "#3B82F6" - magenta: "#9333EA" - cyan: "#0891B2" - white: "#D1D5DB" - brightBlack: "#6E7781" - brightRed: "#DC2626" - brightGreen: "#10B981" - brightYellow: "#FACC15" - brightBlue: "#2563EB" - brightMagenta: "#A855F7" - brightCyan: "#06B6D4" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 63.8 - black: 101.5 - red: 71.6 - green: 64.6 - yellow: 36.4 - blue: 63.9 - magenta: 75.6 - cyan: 63.8 - white: 22.4 - brightBlack: 71.6 - brightRed: 71.6 - brightGreen: 49.1 - brightYellow: 24.4 - brightBlue: 74.9 - brightMagenta: 66.2 - brightCyan: 47.1 - brightWhite: 0 diff --git a/themes/miku-code-light.yaml b/themes/miku-code-light.yaml deleted file mode 100644 index 5812e786..00000000 --- a/themes/miku-code-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Miku Code Light" -source: - marketplace_id: "biglexj.miku-code" - version: "1.3.6" - installs: 2157 - rating: 5 - ratings: 1 - author: "biglexj" - repo: "https://github.com/biglexj/miku-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=biglexj.miku-code" -colors: - bg: "#FFFFFF" - fg: "#29CCD0" - black: "#24292F" - red: "#DC2626" - green: "#059669" - yellow: "#EAB308" - blue: "#3B82F6" - magenta: "#9333EA" - cyan: "#1C868A" - white: "#D1D5DB" - brightBlack: "#6E7781" - brightRed: "#DC2626" - brightGreen: "#10B981" - brightYellow: "#FACC15" - brightBlue: "#2563EB" - brightMagenta: "#A855F7" - brightCyan: "#06B6D4" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 37.6 - black: 101.5 - red: 71.6 - green: 64.6 - yellow: 36.4 - blue: 63.9 - magenta: 75.6 - cyan: 69.7 - white: 22.4 - brightBlack: 71.6 - brightRed: 71.6 - brightGreen: 49.1 - brightYellow: 24.4 - brightBlue: 74.9 - brightMagenta: 66.2 - brightCyan: 47.1 - brightWhite: 0 diff --git a/themes/miku-code.yaml b/themes/miku-code.yaml deleted file mode 100644 index 965d2f92..00000000 --- a/themes/miku-code.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Miku Code" -source: - marketplace_id: "biglexj.miku-code" - version: "1.3.6" - installs: 2157 - rating: 5 - ratings: 1 - author: "biglexj" - repo: "https://github.com/biglexj/miku-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=biglexj.miku-code" -colors: - bg: "#1A1B26" - fg: "#7DCFFF" - black: "#A9B1D6" - red: "#F2074D" - green: "#00D4AA" - yellow: "#E5E510" - blue: "#8EAEF2" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#BEBEBE" - brightBlack: "#D8DDF5" - brightRed: "#FF0F6F" - brightGreen: "#00FFCC" - brightYellow: "#F5F543" - brightBlue: "#6596FF" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FBFDFF" -meta: - mode: "dark" - accent: "red" - hue: 280 - pair: null - contrast: - fg: 70.5 - black: 59.3 - red: 33.3 - green: 65.2 - yellow: 85.1 - blue: 57.1 - magenta: 29.2 - cyan: 47 - white: 65.9 - brightBlack: 85 - brightRed: 37.3 - brightGreen: 88.3 - brightYellow: 95.1 - brightBlue: 45.8 - brightMagenta: 44.8 - brightCyan: 54.9 - brightWhite: 104.8 diff --git a/themes/milianor-theme.yaml b/themes/milianor-theme.yaml index 8833ba92..39878a13 100644 --- a/themes/milianor-theme.yaml +++ b/themes/milianor-theme.yaml @@ -8,6 +8,7 @@ source: author: "Max Miliano" repo: "https://github.com/maxmx03/milianor-theme" url: "https://marketplace.visualstudio.com/items?itemName=MaxMilianoDelCantoQuezada.milianor-theme" + formats: null colors: bg: "#2B2E4A" fg: "#F6EFEB" diff --git a/themes/military-fork.yaml b/themes/military-fork.yaml deleted file mode 100644 index e2c1c0b1..00000000 --- a/themes/military-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "military - Fork" -source: - marketplace_id: "xynny.militrygreen" - version: "0.0.1" - installs: 726 - rating: 5 - ratings: 1 - author: "xynny" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=xynny.militrygreen" -colors: - bg: "#20261E" - fg: "#B8C9B6" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 138 - pair: null - contrast: - fg: 68.3 - black: 0 - red: 24.9 - green: 51.2 - yellow: 83.8 - blue: 25.6 - magenta: 28 - cyan: 45.8 - white: 88.2 - brightBlack: 20.2 - brightRed: 36.8 - brightGreen: 61.7 - brightYellow: 93.8 - brightBlue: 38.2 - brightMagenta: 43.6 - brightCyan: 53.6 - brightWhite: 88.2 diff --git a/themes/milkyway.yaml b/themes/milkyway.yaml deleted file mode 100644 index 336adb6b..00000000 --- a/themes/milkyway.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "MilkyWay" -source: - marketplace_id: "motrdevua.milkyway" - version: "1.0.0" - installs: 845 - rating: 0 - ratings: 0 - author: "motrdevua" - repo: "https://github.com/motrdevua/MilkyWay" - url: "https://marketplace.visualstudio.com/items?itemName=motrdevua.milkyway" -colors: - bg: "#282C34" - fg: "#CBCDD2" - black: "#333842" - red: "#EB365D" - green: "#93EF1F" - yellow: "#FFCA2A" - blue: "#42A5F5" - magenta: "#EB365D" - cyan: "#42A5F5" - white: "#CBCDD2" - brightBlack: "#333842" - brightRed: "#EB365D" - brightGreen: "#93EF1F" - brightYellow: "#FFCA2A" - brightBlue: "#42A5F5" - brightMagenta: "#93EF1F" - brightCyan: "#42A5F5" - brightWhite: "#CBCDD2" -meta: - mode: "dark" - accent: "green" - hue: 264 - pair: null - contrast: - fg: 72 - black: 0 - red: 31.5 - green: 78.6 - yellow: 74.6 - blue: 46.5 - magenta: 31.5 - cyan: 46.5 - white: 72 - brightBlack: 0 - brightRed: 31.5 - brightGreen: 78.6 - brightYellow: 74.6 - brightBlue: 46.5 - brightMagenta: 78.6 - brightCyan: 46.5 - brightWhite: 72 diff --git a/themes/mimesis-dark.yaml b/themes/mimesis-dark.yaml index e6d82cfb..0495dbc7 100644 --- a/themes/mimesis-dark.yaml +++ b/themes/mimesis-dark.yaml @@ -8,6 +8,7 @@ source: author: "Alexander Dyriavin" repo: "https://github.com/dyriavin/mimesis-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderDyriavin.mimesis" + formats: null colors: bg: "#202020" fg: "#E9ECEC" diff --git a/themes/mimesis-light.yaml b/themes/mimesis-light.yaml index aa243393..8e3c8671 100644 --- a/themes/mimesis-light.yaml +++ b/themes/mimesis-light.yaml @@ -8,6 +8,7 @@ source: author: "Alexander Dyriavin" repo: "https://github.com/dyriavin/mimesis-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderDyriavin.mimesis" + formats: null colors: bg: "#FFFFFF" fg: "#24292E" diff --git a/themes/min-gruvbox.yaml b/themes/min-gruvbox.yaml deleted file mode 100644 index a8006221..00000000 --- a/themes/min-gruvbox.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Min Gruvbox" -source: - marketplace_id: "cnmorocho.min-gruvbox-theme" - version: "0.0.10" - installs: 3530 - rating: 5 - ratings: 1 - author: "Carlos Nahuel Morocho" - repo: "https://github.com/cnmorocho/min-gruvbox-theme" - url: "https://marketplace.visualstudio.com/items?itemName=cnmorocho.min-gruvbox-theme" -colors: - bg: "#1A1A1A" - fg: "#FBF1C7" - black: "#2A2A2A" - red: "#EA6962" - green: "#A9B665" - yellow: "#D8A657" - blue: "#7DAEA3" - magenta: "#D3869B" - cyan: "#89B482" - white: "#D4BE98" - brightBlack: "#2A2A2A" - brightRed: "#EA6962" - brightGreen: "#A9B665" - brightYellow: "#D8A657" - brightBlue: "#7DAEA3" - brightMagenta: "#D3869B" - brightCyan: "#89B482" - brightWhite: "#D4BE98" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 97 - black: 0 - red: 42.6 - green: 57.7 - yellow: 57.5 - blue: 51.9 - magenta: 47.6 - cyan: 54.3 - white: 67.7 - brightBlack: 0 - brightRed: 42.6 - brightGreen: 57.7 - brightYellow: 57.5 - brightBlue: 51.9 - brightMagenta: 47.6 - brightCyan: 54.3 - brightWhite: 67.7 diff --git a/themes/minai.yaml b/themes/minai.yaml index a70d1398..4a110ca7 100644 --- a/themes/minai.yaml +++ b/themes/minai.yaml @@ -8,6 +8,7 @@ source: author: "arrow2nd" repo: "https://github.com/arrow2nd/minai-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=arrow2nd.minai" + formats: null colors: bg: "#232934" fg: "#E8E2D6" diff --git a/themes/mincom.yaml b/themes/mincom.yaml index bf5453df..15b17a87 100644 --- a/themes/mincom.yaml +++ b/themes/mincom.yaml @@ -8,6 +8,7 @@ source: author: "brimell" repo: null url: "https://marketplace.visualstudio.com/items?itemName=brimell.mincom-theme" + formats: null colors: bg: "#10121D" fg: "#F2F2F2" diff --git a/themes/mineral-forest.yaml b/themes/mineral-forest.yaml deleted file mode 100644 index 9f08abfd..00000000 --- a/themes/mineral-forest.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Mineral-Forest" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#061409" - fg: "#E7EEEC" - black: "#061409" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#95B2A8" - magenta: "#95B2A8" - cyan: "#29C3A0" - white: "#E7EEEC" - brightBlack: "#061409" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#95B2A8" - brightMagenta: "#95B2A8" - brightCyan: "#29C3A0" - brightWhite: "#E7EEEC" -meta: - mode: "dark" - accent: "yellow" - hue: 150 - pair: null - contrast: - fg: 95.2 - black: 0 - red: 9.8 - green: 58.1 - yellow: 52.2 - blue: 56.6 - magenta: 56.6 - cyan: 58.1 - white: 95.2 - brightBlack: 0 - brightRed: 9.8 - brightGreen: 58.1 - brightYellow: 52.2 - brightBlue: 56.6 - brightMagenta: 56.6 - brightCyan: 58.1 - brightWhite: 95.2 diff --git a/themes/minimal-44-pro.yaml b/themes/minimal-44-pro.yaml deleted file mode 100644 index fb2ae1ee..00000000 --- a/themes/minimal-44-pro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Minimal-44-pro" -source: - marketplace_id: "Yazeed.minimal-44" - version: "0.0.4" - installs: 321 - rating: 0 - ratings: 0 - author: "Yazeed" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Yazeed.minimal-44" -colors: - bg: "#1D1D1D" - fg: "#DAD9E2" - black: "#000000" - red: "#E8627D" - green: "#8CD782" - yellow: "#CFB577" - blue: "#81BCDC" - magenta: "#EB89D2" - cyan: "#96A8E6" - white: "#DBB47E" - brightBlack: "#DBA578" - brightRed: "#DE6B74" - brightGreen: "#9CD089" - brightYellow: "#DDBB6B" - brightBlue: "#8DD0DD" - brightMagenta: "#DF8BBF" - brightCyan: "#7AC068" - brightWhite: "#FDF4C1" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 82.4 - black: 0 - red: 41 - green: 69.9 - yellow: 62.1 - blue: 60.3 - magenta: 54.9 - cyan: 54.6 - white: 63.6 - brightBlack: 57.9 - brightRed: 40.7 - brightGreen: 68.2 - brightYellow: 66.3 - brightBlue: 70.1 - brightMagenta: 52.4 - brightCyan: 57.4 - brightWhite: 98.2 diff --git a/themes/minimal-44.yaml b/themes/minimal-44.yaml deleted file mode 100644 index b56a06c7..00000000 --- a/themes/minimal-44.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Minimal-44" -source: - marketplace_id: "Yazeed.minimal-44" - version: "0.0.4" - installs: 321 - rating: 0 - ratings: 0 - author: "Yazeed" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Yazeed.minimal-44" -colors: - bg: "#16181F" - fg: "#B9C4D1" - black: "#1D2021" - red: "#E6646F" - green: "#8EDC88" - yellow: "#D7B970" - blue: "#8FAFDF" - magenta: "#E291C3" - cyan: "#7FA8E2" - white: "#DCB885" - brightBlack: "#E9B992" - brightRed: "#C56255" - brightGreen: "#8EC878" - brightYellow: "#C5A14D" - brightBlue: "#71B8C6" - brightMagenta: "#D88BBA" - brightCyan: "#A3DBC6" - brightWhite: "#FDF4C1" -meta: - mode: "dark" - accent: "orange" - hue: 273 - pair: null - contrast: - fg: 69.1 - black: 0 - red: 41.2 - green: 73.2 - yellow: 65.3 - blue: 56.8 - magenta: 55.5 - cyan: 52.9 - white: 66.1 - brightBlack: 68.9 - brightRed: 33.7 - brightGreen: 63.5 - brightYellow: 52.8 - brightBlue: 57 - brightMagenta: 51.5 - brightCyan: 76.5 - brightWhite: 98.7 diff --git a/themes/minimal-dark-fork.yaml b/themes/minimal-dark-fork.yaml deleted file mode 100644 index 7abcf981..00000000 --- a/themes/minimal-dark-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "minimal dark - Fork" -source: - marketplace_id: "arunim-io.arunim-theme" - version: "0.0.2" - installs: 30 - rating: 0 - ratings: 0 - author: "Mugdha Arunim Ahmed" - repo: "https://github.com/arunim-io/arunim-theme" - url: "https://marketplace.visualstudio.com/items?itemName=arunim-io.arunim-theme" -colors: - bg: "#0F0F0F" - fg: "#D4D4D4" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.1 - black: 9.5 - red: 37.4 - green: 61 - yellow: 49.2 - blue: 50.3 - magenta: 39.7 - cyan: 53.1 - white: 83.7 - brightBlack: 16.1 - brightRed: 46.7 - brightGreen: 77.4 - brightYellow: 61.9 - brightBlue: 64.4 - brightMagenta: 50.9 - brightCyan: 68.4 - brightWhite: 91.3 diff --git a/themes/minimal-dark.yaml b/themes/minimal-dark.yaml index c8559170..0d01996a 100644 --- a/themes/minimal-dark.yaml +++ b/themes/minimal-dark.yaml @@ -8,6 +8,7 @@ source: author: "ArturGuedx" repo: "https://github.com/ArturGuedes/MinimalDark" url: "https://marketplace.visualstudio.com/items?itemName=ArturGuedx.minimaldark" + formats: null colors: bg: "#3C3F41" fg: "#999999" diff --git a/themes/minimal-green.yaml b/themes/minimal-green.yaml index 977b4ce7..19ec44bb 100644 --- a/themes/minimal-green.yaml +++ b/themes/minimal-green.yaml @@ -1,13 +1,14 @@ -name: "minimal_green" +name: "Minimal Green" source: marketplace_id: "moldaz.minimal-green" version: "0.0.7" - installs: 11293 + installs: 11298 rating: 5 ratings: 9 author: "moldaz" repo: "https://github.com/mdoyleaz/vs-code-theme-minimal_green" url: "https://marketplace.visualstudio.com/items?itemName=moldaz.minimal-green" + formats: null colors: bg: "#28282B" fg: "#B2B3AA" diff --git a/themes/minimal-monochrome-dark.yaml b/themes/minimal-monochrome-dark.yaml deleted file mode 100644 index 0cd1004d..00000000 --- a/themes/minimal-monochrome-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Minimal Monochrome Dark" -source: - marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" - version: "0.3.1" - installs: 168 - author: "Arihant Verma" - repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" -colors: - bg: "#121212" - fg: "#D4D4D4" - black: "#1A1A1A" - red: "#F5A3A7" - green: "#8BCFAC" - yellow: "#F0C674" - blue: "#89B4D4" - magenta: "#C9A5E0" - cyan: "#7DD4D0" - white: "#D0D0D0" - brightBlack: "#646464" - brightRed: "#FFB8BA" - brightGreen: "#A8E6C3" - brightYellow: "#FFE082" - brightBlue: "#A8D1F0" - brightMagenta: "#D9B8F0" - brightCyan: "#9DE5E0" - brightWhite: "#FCFCFC" -meta: - mode: "dark" - accent: "green" - hue: null - pair: "Minimal Monochrome Light" - contrast: - fg: 79.9 - black: 0 - red: 64.1 - green: 68.5 - yellow: 75 - blue: 58.3 - magenta: 60.3 - cyan: 71.3 - white: 77.5 - brightBlack: 21.6 - brightRed: 74.1 - brightGreen: 82.6 - brightYellow: 88.8 - brightBlue: 75 - brightMagenta: 70.5 - brightCyan: 82.4 - brightWhite: 105.3 diff --git a/themes/minimal-monochrome-ink-dark.yaml b/themes/minimal-monochrome-ink-dark.yaml deleted file mode 100644 index 85b9692f..00000000 --- a/themes/minimal-monochrome-ink-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Minimal Monochrome Ink Dark" -source: - marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" - version: "0.3.1" - installs: 168 - author: "Arihant Verma" - repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" -colors: - bg: "#1C1E22" - fg: "#D4D8DE" - black: "#1C1E22" - red: "#F5A3A7" - green: "#8BCFAC" - yellow: "#F0C674" - blue: "#89B4D4" - magenta: "#C9A5E0" - cyan: "#7DD4D0" - white: "#D0D0D0" - brightBlack: "#5A5F68" - brightRed: "#FFB8BA" - brightGreen: "#A8E6C3" - brightYellow: "#FFE082" - brightBlue: "#A8D1F0" - brightMagenta: "#D9B8F0" - brightCyan: "#9DE5E0" - brightWhite: "#FAFBFC" -meta: - mode: "dark" - accent: "green" - hue: null - pair: "Minimal Monochrome Ink Light" - contrast: - fg: 80.9 - black: 0 - red: 62.8 - green: 67.3 - yellow: 73.8 - blue: 57.1 - magenta: 59.1 - cyan: 70 - white: 76.2 - brightBlack: 18.1 - brightRed: 72.8 - brightGreen: 81.3 - brightYellow: 87.5 - brightBlue: 73.7 - brightMagenta: 69.3 - brightCyan: 81.1 - brightWhite: 103.3 diff --git a/themes/minimal-monochrome-ink-light.yaml b/themes/minimal-monochrome-ink-light.yaml deleted file mode 100644 index 78dd0c38..00000000 --- a/themes/minimal-monochrome-ink-light.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Minimal Monochrome Ink Light" -source: - marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" - version: "0.3.1" - installs: 168 - author: "Arihant Verma" - repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" -colors: - bg: "#FAFBFC" - fg: "#2C3038" - black: "#1A1A1A" - red: "#C97A7D" - green: "#5A9E6F" - yellow: "#B8893A" - blue: "#5A8FB8" - magenta: "#8B6BA8" - cyan: "#4A9EA8" - white: "#D0D0D0" - brightBlack: "#7A808A" - brightRed: "#B56B6B" - brightGreen: "#4D8B5E" - brightYellow: "#A67830" - brightBlue: "#4A7FA8" - brightMagenta: "#7D5D9A" - brightCyan: "#3D8F99" - brightWhite: "#FAFBFC" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: "Minimal Monochrome Ink Dark" - contrast: - fg: 97.1 - black: 101.8 - red: 56.5 - green: 56.6 - yellow: 55.9 - blue: 59.6 - magenta: 68 - cyan: 55.4 - white: 22.5 - brightBlack: 64.6 - brightRed: 64.4 - brightGreen: 65.2 - brightYellow: 64 - brightBlue: 67.1 - brightMagenta: 74.2 - brightCyan: 62.4 - brightWhite: 0 diff --git a/themes/minimal-monochrome-light.yaml b/themes/minimal-monochrome-light.yaml deleted file mode 100644 index d0fa627d..00000000 --- a/themes/minimal-monochrome-light.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Minimal Monochrome Light" -source: - marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" - version: "0.3.1" - installs: 168 - author: "Arihant Verma" - repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" -colors: - bg: "#FCFCFC" - fg: "#000000" - black: "#1A1A1A" - red: "#C97A7D" - green: "#5A9E6F" - yellow: "#B8893A" - blue: "#5A8FB8" - magenta: "#8B6BA8" - cyan: "#4A9EA8" - white: "#D0D0D0" - brightBlack: "#646464" - brightRed: "#B56B6B" - brightGreen: "#4D8B5E" - brightYellow: "#A67830" - brightBlue: "#4A7FA8" - brightMagenta: "#7D5D9A" - brightCyan: "#3D8F99" - brightWhite: "#FCFCFC" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: "Minimal Monochrome Dark" - contrast: - fg: 104.2 - black: 102.5 - red: 57.2 - green: 57.3 - yellow: 56.6 - blue: 60.3 - magenta: 68.7 - cyan: 56.1 - white: 23.2 - brightBlack: 77.8 - brightRed: 65.1 - brightGreen: 65.9 - brightYellow: 64.7 - brightBlue: 67.8 - brightMagenta: 74.9 - brightCyan: 63.1 - brightWhite: 0 diff --git a/themes/minimal-monochrome-pastel-dawn.yaml b/themes/minimal-monochrome-pastel-dawn.yaml deleted file mode 100644 index c804185f..00000000 --- a/themes/minimal-monochrome-pastel-dawn.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Minimal Monochrome Pastel Dawn" -source: - marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" - version: "0.3.1" - installs: 168 - author: "Arihant Verma" - repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" -colors: - bg: "#FAF4ED" - fg: "#575279" - black: "#1A1A1A" - red: "#C97A7D" - green: "#5A9E6F" - yellow: "#B8893A" - blue: "#5A8FB8" - magenta: "#8B6BA8" - cyan: "#4A9EA8" - white: "#D9D3CB" - brightBlack: "#797593" - brightRed: "#B56B6B" - brightGreen: "#4D8B5E" - brightYellow: "#A67830" - brightBlue: "#4A7FA8" - brightMagenta: "#7D5D9A" - brightCyan: "#3D8F99" - brightWhite: "#FAF4ED" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 79.1 - black: 98.2 - red: 52.9 - green: 53 - yellow: 52.3 - blue: 56 - magenta: 64.4 - cyan: 51.8 - white: 16.8 - brightBlack: 64.4 - brightRed: 60.8 - brightGreen: 61.6 - brightYellow: 60.4 - brightBlue: 63.5 - brightMagenta: 70.6 - brightCyan: 58.8 - brightWhite: 0 diff --git a/themes/minimal-monochrome-pastel-light.yaml b/themes/minimal-monochrome-pastel-light.yaml deleted file mode 100644 index d634a2b3..00000000 --- a/themes/minimal-monochrome-pastel-light.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Minimal Monochrome Pastel Light" -source: - marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" - version: "0.3.1" - installs: 168 - author: "Arihant Verma" - repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" -colors: - bg: "#F8F6F2" - fg: "#575279" - black: "#1A1A1A" - red: "#C97A7D" - green: "#5A9E6F" - yellow: "#B8893A" - blue: "#5A8FB8" - magenta: "#8B6BA8" - cyan: "#4A9EA8" - white: "#D5D2CC" - brightBlack: "#797593" - brightRed: "#B56B6B" - brightGreen: "#4D8B5E" - brightYellow: "#A67830" - brightBlue: "#4A7FA8" - brightMagenta: "#7D5D9A" - brightCyan: "#3D8F99" - brightWhite: "#F8F6F2" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 79.9 - black: 99 - red: 53.7 - green: 53.8 - yellow: 53.1 - blue: 56.8 - magenta: 65.2 - cyan: 52.6 - white: 18.5 - brightBlack: 65.2 - brightRed: 61.6 - brightGreen: 62.4 - brightYellow: 61.2 - brightBlue: 64.3 - brightMagenta: 71.4 - brightCyan: 59.6 - brightWhite: 0 diff --git a/themes/minimal-monochrome-slate-dark.yaml b/themes/minimal-monochrome-slate-dark.yaml deleted file mode 100644 index 603374d5..00000000 --- a/themes/minimal-monochrome-slate-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Minimal Monochrome Slate Dark" -source: - marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" - version: "0.3.1" - installs: 168 - author: "Arihant Verma" - repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" -colors: - bg: "#121212" - fg: "#EEEEEE" - black: "#1A1A1A" - red: "#F5A3A7" - green: "#8BCFAC" - yellow: "#F0C674" - blue: "#89B4D4" - magenta: "#C9A5E0" - cyan: "#7DD4D0" - white: "#D0D0D0" - brightBlack: "#646464" - brightRed: "#FFB8BA" - brightGreen: "#A8E6C3" - brightYellow: "#FFE082" - brightBlue: "#A8D1F0" - brightMagenta: "#D9B8F0" - brightCyan: "#9DE5E0" - brightWhite: "#FCFCFC" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 96.2 - black: 0 - red: 64.1 - green: 68.5 - yellow: 75 - blue: 58.3 - magenta: 60.3 - cyan: 71.3 - white: 77.5 - brightBlack: 21.6 - brightRed: 74.1 - brightGreen: 82.6 - brightYellow: 88.8 - brightBlue: 75 - brightMagenta: 70.5 - brightCyan: 82.4 - brightWhite: 105.3 diff --git a/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml b/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml index 1944e12a..4ae90841 100644 --- a/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml +++ b/themes/minimal-pastel-dark-vibrant-softer-yellow.yaml @@ -8,6 +8,7 @@ source: author: "Amir Majdi" repo: "https://github.com/Amir-Majdi/minimal-themes" url: "https://marketplace.visualstudio.com/items?itemName=amirmajdi.minimal-themes-amirmajdi" + formats: null colors: bg: "#0A0A0A" fg: "#FFFFFF" diff --git a/themes/minimal-theme.yaml b/themes/minimal-theme.yaml index 5dd5be7a..8cd6e441 100644 --- a/themes/minimal-theme.yaml +++ b/themes/minimal-theme.yaml @@ -8,6 +8,7 @@ source: author: "optimizion" repo: null url: "https://marketplace.visualstudio.com/items?itemName=optimizion.vscode-minimal-theme" + formats: null colors: bg: "#303030" fg: "#CCCCCC" diff --git a/themes/minimal-wave-floral-dark.yaml b/themes/minimal-wave-floral-dark.yaml index 807131ef..e5d19d2c 100644 --- a/themes/minimal-wave-floral-dark.yaml +++ b/themes/minimal-wave-floral-dark.yaml @@ -8,6 +8,7 @@ source: author: "annalifatou" repo: "https://github.com/annalifatou/minimal-wave" url: "https://marketplace.visualstudio.com/items?itemName=annalifatou.minimal-wave" + formats: null colors: bg: "#121316" fg: "#FFFFFF" diff --git a/themes/minimal-wave-floral-light.yaml b/themes/minimal-wave-floral-light.yaml index 0d6aad1a..0e509ee2 100644 --- a/themes/minimal-wave-floral-light.yaml +++ b/themes/minimal-wave-floral-light.yaml @@ -8,6 +8,7 @@ source: author: "annalifatou" repo: "https://github.com/annalifatou/minimal-wave" url: "https://marketplace.visualstudio.com/items?itemName=annalifatou.minimal-wave" + formats: null colors: bg: "#FFFFFF" fg: "#121316" diff --git a/themes/minimal.yaml b/themes/minimal.yaml index 0d1abeda..57f177c8 100644 --- a/themes/minimal.yaml +++ b/themes/minimal.yaml @@ -1,52 +1,53 @@ name: "Minimal" source: - marketplace_id: "amirmajdi.minimal-themes-amirmajdi" - version: "1.0.7" - installs: 331 + marketplace_id: "EphraimAtta-Duncan.vscode-minimal-theme-dark" + version: "0.0.1" + installs: 1459 rating: 0 ratings: 0 - author: "Amir Majdi" - repo: "https://github.com/Amir-Majdi/minimal-themes" - url: "https://marketplace.visualstudio.com/items?itemName=amirmajdi.minimal-themes-amirmajdi" + author: "Ephraim Atta-Duncan" + repo: "https://github.com/dephraiim/minimal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=EphraimAtta-Duncan.vscode-minimal-theme-dark" + formats: null colors: - bg: "#222222" - fg: "#FFFFFF" - black: "#222222" - red: "#E29090" - green: "#B5BD68" - yellow: "#F7DF9B" - blue: "#81A2BE" - magenta: "#B294BB" - cyan: "#8ABEB7" - white: "#FFFFFF" - brightBlack: "#222222" - brightRed: "#E29090" - brightGreen: "#B5BD68" - brightYellow: "#F7DF9B" - brightBlue: "#81A2BE" - brightMagenta: "#B294BB" - brightCyan: "#8ABEB7" - brightWhite: "#FFFFFF" + bg: "#2A2A29" + fg: "#CED3DB" + black: "#2A2A29" + red: "#F44336" + green: "#00E676" + yellow: "#FFDE03" + blue: "#206DAC" + magenta: "#FF0266" + cyan: "#00E676" + white: "#613F83" + brightBlack: "#232635" + brightRed: "#FB4934" + brightGreen: "#CACC53" + brightYellow: "#FABD2F" + brightBlue: "#00E676" + brightMagenta: "#DF6495" + brightCyan: "#8EC07C" + brightWhite: "#F9FBFC" meta: mode: "dark" - accent: "green" + accent: "red" hue: null pair: null contrast: - fg: 105.5 + fg: 75.8 black: 0 - red: 51.9 - green: 61 - yellow: 85.8 - blue: 47.5 - magenta: 47.5 - cyan: 59.4 - white: 105.5 + red: 34.9 + green: 70.5 + yellow: 83.5 + blue: 21.1 + magenta: 34.7 + cyan: 70.5 + white: 10.1 brightBlack: 0 - brightRed: 51.9 - brightGreen: 61 - brightYellow: 85.8 - brightBlue: 47.5 - brightMagenta: 47.5 - brightCyan: 59.4 - brightWhite: 105.5 + brightRed: 37.3 + brightGreen: 68.3 + brightYellow: 69 + brightBlue: 70.5 + brightMagenta: 38.3 + brightCyan: 57.3 + brightWhite: 101.2 diff --git a/themes/minimalblue.yaml b/themes/minimalblue.yaml index a56ade4d..b380cbb2 100644 --- a/themes/minimalblue.yaml +++ b/themes/minimalblue.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "MiguelLuisHernandezBrocat.minimalblue" version: "0.0.1" installs: 93 + rating: 0 + ratings: 0 author: "Miguel Luis HernandezBrocat" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MiguelLuisHernandezBrocat.minimalblue" + formats: null colors: bg: "#0D0D19" fg: "#D5D0D0" diff --git a/themes/minimalesque.yaml b/themes/minimalesque.yaml index 056e64b7..caf7f908 100644 --- a/themes/minimalesque.yaml +++ b/themes/minimalesque.yaml @@ -8,6 +8,7 @@ source: author: "Yassin Software" repo: "https://github.com/Yassine914/MinimalesqueTheme" url: "https://marketplace.visualstudio.com/items?itemName=y-software.minimalesque" + formats: null colors: bg: "#1B1F26" fg: "#D4D4D4" diff --git a/themes/minimalgold.yaml b/themes/minimalgold.yaml index 17038a2e..bf00b8be 100644 --- a/themes/minimalgold.yaml +++ b/themes/minimalgold.yaml @@ -8,6 +8,7 @@ source: author: "Diego Jose Letelier" repo: null url: "https://marketplace.visualstudio.com/items?itemName=diegoleteliers.minimalgold" + formats: null colors: bg: "#212121" fg: "#ABB2BF" diff --git a/themes/minimalist.yaml b/themes/minimalist.yaml index d530872f..460b2ebd 100644 --- a/themes/minimalist.yaml +++ b/themes/minimalist.yaml @@ -8,6 +8,7 @@ source: author: "bchadwic" repo: null url: "https://marketplace.visualstudio.com/items?itemName=bchadwic.minimalist-theme-bchadwic" + formats: null colors: bg: "#000000" fg: "#C4C4C4" diff --git a/themes/minimalistic-dark-theme.yaml b/themes/minimalistic-dark-theme.yaml index c0fefd8e..f1a1f3be 100644 --- a/themes/minimalistic-dark-theme.yaml +++ b/themes/minimalistic-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Lerskk" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Lerskk.minimalistic-dark-theme" + formats: null colors: bg: "#171717" fg: "#D4D4D4" diff --git a/themes/minimalisticdarktheme.yaml b/themes/minimalisticdarktheme.yaml index 71cbedca..652c3381 100644 --- a/themes/minimalisticdarktheme.yaml +++ b/themes/minimalisticdarktheme.yaml @@ -8,6 +8,7 @@ source: author: "Miguel Luis HernandezBrocat" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MiguelLuisHernandezBrocat.minimalisticdarktheme" + formats: null colors: bg: "#0D0D17" fg: "#D4D4D4" diff --git a/themes/minimalistik.yaml b/themes/minimalistik.yaml index 76e86e4e..c6b6a1b8 100644 --- a/themes/minimalistik.yaml +++ b/themes/minimalistik.yaml @@ -1,4 +1,4 @@ -name: "Minimalistik" +name: "Minimalistik " source: marketplace_id: "LeonardoKist.minimalistik-theme" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Leonardo Kist" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LeonardoKist.minimalistik-theme" + formats: null colors: bg: "#0D0F12" fg: "#AEB2B2" diff --git a/themes/minimalred.yaml b/themes/minimalred.yaml index 38d0196b..1db684b6 100644 --- a/themes/minimalred.yaml +++ b/themes/minimalred.yaml @@ -8,6 +8,7 @@ source: author: "psykeroe" repo: "https://github.com/psykeroe/psykeroe-minimalred-theme" url: "https://marketplace.visualstudio.com/items?itemName=psykeroe.psykeroe-minimalred-theme" + formats: null colors: bg: "#03050F" fg: "#D2D7DF" diff --git a/themes/miniml-dusk.yaml b/themes/miniml-dusk.yaml index 00eeed22..9e5202c1 100644 --- a/themes/miniml-dusk.yaml +++ b/themes/miniml-dusk.yaml @@ -8,6 +8,7 @@ source: author: "pantherandcub" repo: "https://github.com/Panther-Cub/miniml" url: "https://marketplace.visualstudio.com/items?itemName=pantherandcub.miniml" + formats: null colors: bg: "#121212" fg: "#B4B4B4" diff --git a/themes/miniml-light.yaml b/themes/miniml-light.yaml index 64d6eed5..50a5c9d1 100644 --- a/themes/miniml-light.yaml +++ b/themes/miniml-light.yaml @@ -8,6 +8,7 @@ source: author: "pantherandcub" repo: "https://github.com/Panther-Cub/miniml" url: "https://marketplace.visualstudio.com/items?itemName=pantherandcub.miniml" + formats: null colors: bg: "#F8F9FA" fg: "#2D4F4F" diff --git a/themes/miniml-midnight.yaml b/themes/miniml-midnight.yaml index b27483d8..55d71630 100644 --- a/themes/miniml-midnight.yaml +++ b/themes/miniml-midnight.yaml @@ -8,6 +8,7 @@ source: author: "pantherandcub" repo: "https://github.com/Panther-Cub/miniml" url: "https://marketplace.visualstudio.com/items?itemName=pantherandcub.miniml" + formats: null colors: bg: "#000000" fg: "#B4B4B4" diff --git a/themes/minimus.yaml b/themes/minimus.yaml index e334d0c9..64efcb23 100644 --- a/themes/minimus.yaml +++ b/themes/minimus.yaml @@ -8,6 +8,7 @@ source: author: "Mauro Paternina" repo: "https://github.com/spaceinvadev/minimus-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=spaceinvadev.minimus-theme" + formats: null colors: bg: "#FFFFFF" fg: "#343A40" diff --git a/themes/minitheme.yaml b/themes/minitheme.yaml index df07c792..a2354217 100644 --- a/themes/minitheme.yaml +++ b/themes/minitheme.yaml @@ -1,4 +1,4 @@ -name: "MiniTheme" +name: "miniTheme" source: marketplace_id: "Orobiti.orobiti" version: "1.0.0" @@ -8,6 +8,7 @@ source: author: "Orobiti" repo: "https://github.com/MtheusR/MinimalTheme-Dark-VsCode" url: "https://marketplace.visualstudio.com/items?itemName=Orobiti.orobiti" + formats: null colors: bg: "#1A1B26" fg: "#E4E1C4" diff --git a/themes/mink-dark-theme.yaml b/themes/mink-dark-theme.yaml deleted file mode 100644 index dae40637..00000000 --- a/themes/mink-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mink dark theme" -source: - marketplace_id: "minken.dark-m-theme" - version: "0.2.16" - installs: 289 - rating: 0 - ratings: 0 - author: "minken" - repo: "git://https://github.com/magnushagglund/theme/repository" - url: "https://marketplace.visualstudio.com/items?itemName=minken.dark-m-theme" -colors: - bg: "#2D2D2D" - fg: "#84FABF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 85.7 - black: 0 - red: 23.3 - green: 49.6 - yellow: 82.2 - blue: 24 - magenta: 26.3 - cyan: 44.1 - white: 86.6 - brightBlack: 18.6 - brightRed: 35.1 - brightGreen: 60.1 - brightYellow: 92.2 - brightBlue: 36.6 - brightMagenta: 41.9 - brightCyan: 52 - brightWhite: 86.6 diff --git a/themes/minokai-kalel.yaml b/themes/minokai-kalel.yaml deleted file mode 100644 index d62c946e..00000000 --- a/themes/minokai-kalel.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Minokai Kalel" -source: - marketplace_id: "gabrielvictordev.minokai" - version: "0.1.0" - installs: 77 - rating: 5 - ratings: 1 - author: "gabrielvictordev" - repo: "https://github.com/gabrielvictorjs/minokai" - url: "https://marketplace.visualstudio.com/items?itemName=gabrielvictordev.minokai" -colors: - bg: "#191C25" - fg: "#A6ACCD" - black: "#2E313D" - red: "#CF8164" - green: "#76A065" - yellow: "#AB924C" - blue: "#8296B0" - magenta: "#A18DAF" - cyan: "#659EA2" - white: "#B5B4C9" - brightBlack: "#5B5F71" - brightRed: "#FE9F7C" - brightGreen: "#92C47E" - brightYellow: "#D2B45F" - brightBlue: "#A0B9D8" - brightMagenta: "#C6AED7" - brightCyan: "#7DC2C7" - brightWhite: "#F0ECFE" -meta: - mode: "dark" - accent: "orange" - hue: 271 - pair: null - contrast: - fg: 56.5 - black: 0 - red: 43.6 - green: 43.5 - yellow: 43.3 - blue: 43.1 - magenta: 43.2 - cyan: 43.4 - white: 61.2 - brightBlack: 18.8 - brightRed: 62.1 - brightGreen: 61.7 - brightYellow: 61.8 - brightBlue: 61.7 - brightMagenta: 61.7 - brightCyan: 61.7 - brightWhite: 95.3 diff --git a/themes/minone.yaml b/themes/minone.yaml index 4b27f679..596139fb 100644 --- a/themes/minone.yaml +++ b/themes/minone.yaml @@ -2,12 +2,13 @@ name: "Minone" source: marketplace_id: "miguelravila.minone" version: "0.2.2" - installs: 2386 + installs: 2387 rating: 5 ratings: 1 author: "miguelravila" repo: "https://github.com/MiguelRAvila/Minone" url: "https://marketplace.visualstudio.com/items?itemName=miguelravila.minone" + formats: null colors: bg: "#24272A" fg: "#D8D8D8" diff --git a/themes/mint-chocolate.yaml b/themes/mint-chocolate.yaml index 05b84349..1a1c6bde 100644 --- a/themes/mint-chocolate.yaml +++ b/themes/mint-chocolate.yaml @@ -2,12 +2,13 @@ name: "Mint Chocolate" source: marketplace_id: "onulu.mint-chocolate" version: "1.0.1" - installs: 579 + installs: 581 rating: 5 ratings: 1 author: "onulu" repo: "https://github.com/onulu/mint-chocolate-theme" url: "https://marketplace.visualstudio.com/items?itemName=onulu.mint-chocolate" + formats: null colors: bg: "#302721" fg: "#C9D5D0" diff --git a/themes/mint-dark.yaml b/themes/mint-dark.yaml deleted file mode 100644 index 5150975c..00000000 --- a/themes/mint-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Mint Dark" -source: - marketplace_id: "marcbruederlin.mint-theme" - version: "0.1.2" - installs: 9169 - rating: 5 - ratings: 2 - author: "Marc Brüderlin" - repo: "https://github.com/marcbruederlin/vscode-mint-theme" - url: "https://marketplace.visualstudio.com/items?itemName=marcbruederlin.mint-theme" -colors: - bg: "#060606" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.8 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.7 - cyan: 48.5 - white: 91 - brightBlack: 23 - brightRed: 39.5 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.3 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/mintchoc-contrast.yaml b/themes/mintchoc-contrast.yaml deleted file mode 100644 index f106d904..00000000 --- a/themes/mintchoc-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mintchoc-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0C0A08" - fg: "#BABABA" - black: "#1B1712" - red: "#BA0E2E" - green: "#9D8262" - yellow: "#008D62" - blue: "#00E08C" - magenta: "#9D8262" - cyan: "#008D62" - white: "#C7C7C7" - brightBlack: "#493D31" - brightRed: "#F03E5F" - brightGreen: "#C4B4A1" - brightYellow: "#00F3A9" - brightBlue: "#47FFBA" - brightMagenta: "#C4B4A1" - brightCyan: "#00F3A9" - brightWhite: "#EDEDED" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 65 - black: 0 - red: 21.3 - green: 37.8 - yellow: 33.1 - blue: 71.6 - magenta: 37.8 - cyan: 33.1 - white: 72.6 - brightBlack: 8 - brightRed: 37.6 - brightGreen: 62.9 - brightYellow: 82.2 - brightBlue: 89.8 - brightMagenta: 62.9 - brightCyan: 82.2 - brightWhite: 96 diff --git a/themes/mintchoc-light.yaml b/themes/mintchoc-light.yaml deleted file mode 100644 index 4578574c..00000000 --- a/themes/mintchoc-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mintchoc-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#9D8262" - yellow: "#008D62" - blue: "#00E08C" - magenta: "#9D8262" - cyan: "#008D62" - white: "#515151" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#C4B4A1" - brightYellow: "#00F3A9" - brightBlue: "#47FFBA" - brightMagenta: "#C4B4A1" - brightCyan: "#00F3A9" - brightWhite: "#777777" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 80.3 - green: 63.8 - yellow: 68.4 - blue: 31 - magenta: 63.8 - cyan: 68.4 - white: 87.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 39.3 - brightYellow: 21 - brightBlue: 13.9 - brightMagenta: 39.3 - brightCyan: 21 - brightWhite: 71.1 diff --git a/themes/mintchoc.yaml b/themes/mintchoc.yaml deleted file mode 100644 index 3c0a0701..00000000 --- a/themes/mintchoc.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mintchoc" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2B221C" - fg: "#BABABA" - black: "#3A2E26" - red: "#BA0E2E" - green: "#9D8262" - yellow: "#008D62" - blue: "#00E08C" - magenta: "#9D8262" - cyan: "#008D62" - white: "#C7C7C7" - brightBlack: "#695344" - brightRed: "#F03E5F" - brightGreen: "#C4B4A1" - brightYellow: "#00F3A9" - brightBlue: "#47FFBA" - brightMagenta: "#C4B4A1" - brightCyan: "#00F3A9" - brightWhite: "#EDEDED" -meta: - mode: "dark" - accent: "orange" - hue: 55 - pair: null - contrast: - fg: 62.5 - black: 0 - red: 18.8 - green: 35.2 - yellow: 30.5 - blue: 69.1 - magenta: 35.2 - cyan: 30.5 - white: 70 - brightBlack: 14.4 - brightRed: 35.1 - brightGreen: 60.4 - brightYellow: 79.6 - brightBlue: 87.2 - brightMagenta: 60.4 - brightCyan: 79.6 - brightWhite: 93.4 diff --git a/themes/mintdark.yaml b/themes/mintdark.yaml index 8ae8b57e..acb3fd68 100644 --- a/themes/mintdark.yaml +++ b/themes/mintdark.yaml @@ -8,6 +8,7 @@ source: author: "Daniel Lvovsky" repo: "https://github.com/DanielLvovsky/MintDark/issues" url: "https://marketplace.visualstudio.com/items?itemName=daniel-lvovsky.mintdark-theme" + formats: null colors: bg: "#1D1D1D" fg: "#D8E9E2" diff --git a/themes/minty-dark.yaml b/themes/minty-dark.yaml index d1529b4e..d860c7c8 100644 --- a/themes/minty-dark.yaml +++ b/themes/minty-dark.yaml @@ -8,6 +8,7 @@ source: author: "Shanuka Kavinda" repo: "https://github.com/shanukavinda/Minty" url: "https://marketplace.visualstudio.com/items?itemName=ShanukaKFernando.Minty" + formats: null colors: bg: "#1E1E1F" fg: "#D4D4D4" diff --git a/themes/mirai.yaml b/themes/mirai.yaml deleted file mode 100644 index ddacb907..00000000 --- a/themes/mirai.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mirai" -source: - marketplace_id: "Volskaya.irrelevant" - version: "0.0.2" - installs: 33 - rating: 0 - ratings: 0 - author: "Volskaya" - repo: "https://github.com/volskaya/irrelevant" - url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" -colors: - bg: "#1C1C1C" - fg: "#FFFFFF" - black: "#1C1C1C" - red: "#FCF707" - green: "#FF1652" - yellow: "#FCF707" - blue: "#878787" - magenta: "#979797" - cyan: "#A6A6A6" - white: "#444444" - brightBlack: "#666666" - brightRed: "#FCF707" - brightGreen: "#FF1652" - brightYellow: "#DDDDDD" - brightBlue: "#878787" - brightMagenta: "#979797" - brightCyan: "#A6A6A6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 106.3 - black: 0 - red: 96.8 - green: 36.8 - yellow: 96.8 - blue: 36.6 - magenta: 44.6 - cyan: 52.5 - white: 8.3 - brightBlack: 21.5 - brightRed: 96.8 - brightGreen: 36.8 - brightYellow: 84.4 - brightBlue: 36.6 - brightMagenta: 44.6 - brightCyan: 52.5 - brightWhite: 106.3 diff --git a/themes/mirajdev.yaml b/themes/mirajdev.yaml index 5eb131a7..97169a95 100644 --- a/themes/mirajdev.yaml +++ b/themes/mirajdev.yaml @@ -8,6 +8,7 @@ source: author: "mirajdev" repo: "https://github.com/miraj-2302/mirajdev" url: "https://marketplace.visualstudio.com/items?itemName=mirajdev.mirajdev" + formats: null colors: bg: "#000000" fg: "#B311CB" diff --git a/themes/miramare.yaml b/themes/miramare.yaml index 505286fc..6be101f9 100644 --- a/themes/miramare.yaml +++ b/themes/miramare.yaml @@ -8,6 +8,7 @@ source: author: "Francisco Bach" repo: "https://github.com/franbach/miramare-vscode" url: "https://marketplace.visualstudio.com/items?itemName=FranciscoBach.miramare" + formats: null colors: bg: "#2A2426" fg: "#E6D6AC" diff --git a/themes/mist-theme.yaml b/themes/mist-theme.yaml deleted file mode 100644 index 23579c8f..00000000 --- a/themes/mist-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Mist Theme" -source: - marketplace_id: "imalbert.conifer-theme" - version: "2.4.3" - installs: 1380 - rating: 5 - ratings: 3 - author: "imalbert" - repo: "https://github.com/imalbert/conifer-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=imalbert.conifer-theme" -colors: - bg: "#36424C" - fg: "#C4CFD3" - black: "#44535F" - red: "#C96E54" - green: "#57B2B0" - yellow: "#57B2B0" - blue: "#95A8B1" - magenta: "#C4CFD4" - cyan: "#57B2B0" - white: "#C4CFD3" - brightBlack: "#C4CFD3" - brightRed: "#C96E54" - brightGreen: "#57B2B0" - brightYellow: "#57B2B0" - brightBlue: "#95A8B1" - brightMagenta: "#C4CFD4" - brightCyan: "#6AC8BF" - brightWhite: "#9FDCD5" -meta: - mode: "dark" - accent: "orange" - hue: 244 - pair: null - contrast: - fg: 66.3 - black: 0 - red: 28.5 - green: 43.1 - yellow: 43.1 - blue: 43.5 - magenta: 66.4 - cyan: 43.1 - white: 66.3 - brightBlack: 66.3 - brightRed: 28.5 - brightGreen: 43.1 - brightYellow: 43.1 - brightBlue: 43.5 - brightMagenta: 66.4 - brightCyan: 54.5 - brightWhite: 68.4 diff --git a/themes/mist.yaml b/themes/mist.yaml index 1e9c0456..72613c90 100644 --- a/themes/mist.yaml +++ b/themes/mist.yaml @@ -8,6 +8,7 @@ source: author: "Florent ROUGIER" repo: "https://github.com/Flo-Rougier/misty" url: "https://marketplace.visualstudio.com/items?itemName=florentrougier.misty" + formats: null colors: bg: "#1A2730" fg: "#FBE179" diff --git a/themes/misterioso.yaml b/themes/misterioso.yaml index febd3b56..e765d5a3 100644 --- a/themes/misterioso.yaml +++ b/themes/misterioso.yaml @@ -8,6 +8,7 @@ source: author: "Rakesh C" repo: "https://github.com/rkcy/misterioso-theme" url: "https://marketplace.visualstudio.com/items?itemName=rkcy.misterioso-theme" + formats: null colors: bg: "#415160" fg: "#E1E1E0" diff --git a/themes/misty-blue.yaml b/themes/misty-blue.yaml deleted file mode 100644 index 62770d51..00000000 --- a/themes/misty-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Misty Blue" -source: - marketplace_id: "d33f2gmbrsg2mlf32hg27to6utjbqm52vmxqbxml6x25odnimcoq.MistyBlue" - version: "0.0.6" - installs: 2319 - rating: 5 - ratings: 3 - author: "Yashwanth Byalla" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=d33f2gmbrsg2mlf32hg27to6utjbqm52vmxqbxml6x25odnimcoq.MistyBlue" -colors: - bg: "#0A0A0A" - fg: "#AF8BFF" - black: "#FFFFFF" - red: "#FF3333" - green: "#00FF64" - yellow: "#FFE779" - blue: "#1584FF" - magenta: "#FF02FF" - cyan: "#0AE1FF" - white: "#A3A3A3" - brightBlack: "#666666" - brightRed: "#FF6767" - brightGreen: "#97FFB1" - brightYellow: "#FFCE00" - brightBlue: "#95CCFF" - brightMagenta: "#FF9AFF" - brightCyan: "#8EF4FF" - brightWhite: "#C9C9C9" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 50.5 - black: 107.7 - red: 39.5 - green: 87 - yellow: 92.2 - blue: 38.3 - magenta: 46.1 - cyan: 77 - white: 52.3 - brightBlack: 22.9 - brightRed: 48 - brightGreen: 93.4 - brightYellow: 80.3 - brightBlue: 72.4 - brightMagenta: 67.7 - brightCyan: 90.5 - brightWhite: 73.7 diff --git a/themes/mistywind.yaml b/themes/mistywind.yaml index 85d8a51e..751db164 100644 --- a/themes/mistywind.yaml +++ b/themes/mistywind.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "priteshlad3.katanax" version: "0.0.1" installs: 9 + rating: 0 + ratings: 0 author: "priteshlad3" repo: "https://github.com/pritesh88/katanax-theme" url: "https://marketplace.visualstudio.com/items?itemName=priteshlad3.katanax" + formats: null colors: bg: "#0A1F30" fg: "#BDE8F8" diff --git a/themes/mitaverse.yaml b/themes/mitaverse.yaml index 24740ebc..6c48c73a 100644 --- a/themes/mitaverse.yaml +++ b/themes/mitaverse.yaml @@ -8,6 +8,7 @@ source: author: "Jipy" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Jipyyes.jipy-mitaverse" + formats: null colors: bg: "#200315" fg: "#FEFE55" diff --git a/themes/mitsuri-kanroji.yaml b/themes/mitsuri-kanroji.yaml deleted file mode 100644 index 8af386cd..00000000 --- a/themes/mitsuri-kanroji.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Mitsuri Kanroji" -source: - marketplace_id: "devLocifer.hashira-code-theme" - version: "0.0.1" - installs: 739 - rating: 5 - ratings: 1 - author: "devLocifer" - repo: "https://github.com/diazdjul19/hashira-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" -colors: - bg: "#0F172A" - fg: "#D1D5DB" - black: "#0F172A" - red: "#EF4444" - green: "#A3E635" - yellow: "#F59E0B" - blue: "#3B82F6" - magenta: "#8B5CF6" - cyan: "#14B8A6" - white: "#E5E7EB" - brightBlack: "#6B7280" - brightRed: "#F472B6" - brightGreen: "#A7F3D0" - brightYellow: "#FCD34D" - brightBlue: "#60A5FA" - brightMagenta: "#D8B4FE" - brightCyan: "#6EE7B7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 266 - pair: null - contrast: - fg: 79.8 - black: 0 - red: 36.7 - green: 78.6 - yellow: 59.3 - blue: 36.7 - magenta: 31.8 - cyan: 52.6 - white: 91.1 - brightBlack: 27 - brightRed: 49.8 - brightGreen: 88.8 - brightYellow: 81.3 - brightBlue: 51.3 - brightMagenta: 69.2 - brightCyan: 78 - brightWhite: 106.8 diff --git a/themes/mitsuri.yaml b/themes/mitsuri.yaml index 474a8539..ceed5e99 100644 --- a/themes/mitsuri.yaml +++ b/themes/mitsuri.yaml @@ -8,6 +8,7 @@ source: author: "KonvSuu" repo: "https://github.com/kovsu/mitsuri" url: "https://marketplace.visualstudio.com/items?itemName=KonvSuu.mitsuri-theme" + formats: null colors: bg: "#0F0D0E" fg: "#F9F4DA" diff --git a/themes/mixed-solarized-light.yaml b/themes/mixed-solarized-light.yaml deleted file mode 100644 index 337096ef..00000000 --- a/themes/mixed-solarized-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Mixed Solarized Light" -source: - marketplace_id: "imkasen.vscode-solarized-light-enhanced" - version: "0.6.3" - installs: 52 - rating: 0 - ratings: 0 - author: "Kasen" - repo: "https://github.com/imkasen/vscode-solarized-light-enhanced" - url: "https://marketplace.visualstudio.com/items?itemName=imkasen.vscode-solarized-light-enhanced" -colors: - bg: "#FDF6E3" - fg: "#53676D" - black: "#073642" - red: "#CC1729" - green: "#428B00" - yellow: "#A78300" - blue: "#006DCE" - magenta: "#C44392" - cyan: "#00978A" - white: "#EEE8D5" - brightBlack: "#586E75" - brightRed: "#DC322F" - brightGreen: "#859900" - brightYellow: "#B58900" - brightBlue: "#268BD2" - brightMagenta: "#D33682" - brightCyan: "#2AA198" - brightWhite: "#FBF3DB" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 74.5 - black: 93.7 - red: 70.8 - green: 63.8 - yellow: 57.8 - blue: 69.5 - magenta: 65.8 - cyan: 58 - white: 0 - brightBlack: 71.6 - brightRed: 65.3 - brightGreen: 53.8 - brightYellow: 53.8 - brightBlue: 58.7 - brightMagenta: 65 - brightCyan: 53.1 - brightWhite: 0 diff --git a/themes/mk-iceblack.yaml b/themes/mk-iceblack.yaml index a2ee0258..cec0dbab 100644 --- a/themes/mk-iceblack.yaml +++ b/themes/mk-iceblack.yaml @@ -8,6 +8,7 @@ source: author: "mk-02" repo: "https://github.com/leeminki02/theme-mk" url: "https://marketplace.visualstudio.com/items?itemName=dev-mk02.theme-mk" + formats: null colors: bg: "#2F2F2F" fg: "#CDCECE" diff --git a/themes/mk-mono-dark.yaml b/themes/mk-mono-dark.yaml index 9ef6dc53..ace106fe 100644 --- a/themes/mk-mono-dark.yaml +++ b/themes/mk-mono-dark.yaml @@ -8,6 +8,7 @@ source: author: "MVTKVM" repo: "https://github.com/matkammusic/mk-mono" url: "https://marketplace.visualstudio.com/items?itemName=mvtkvm.mk-mono" + formats: null colors: bg: "#000000" fg: "#AAAAAA" diff --git a/themes/mkanet.yaml b/themes/mkanet.yaml index b7ae25c1..82ef2518 100644 --- a/themes/mkanet.yaml +++ b/themes/mkanet.yaml @@ -8,6 +8,7 @@ source: author: "Michael K. Avanessian" repo: "https://github.com/mkanet/MKANET-Theme-V2" url: "https://marketplace.visualstudio.com/items?itemName=MKANET.mkanet-theme-v2" + formats: null colors: bg: "#C0C0C0" fg: "#464668" diff --git a/themes/mkdeveloper-theme.yaml b/themes/mkdeveloper-theme.yaml index 23420f63..f7f9f593 100644 --- a/themes/mkdeveloper-theme.yaml +++ b/themes/mkdeveloper-theme.yaml @@ -8,6 +8,7 @@ source: author: "mukunthan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mukunthan.mkdeveloper-theme" + formats: null colors: bg: "#000E26" fg: "#FF8300" diff --git a/themes/mlia-dark.yaml b/themes/mlia-dark.yaml index 91fb25fb..2e4fac66 100644 --- a/themes/mlia-dark.yaml +++ b/themes/mlia-dark.yaml @@ -6,6 +6,7 @@ source: author: "grdthh" repo: "https://github.com/hashyael/mlia" url: "https://marketplace.visualstudio.com/items?itemName=grdthh.mliaa" + formats: null colors: bg: "#171717" fg: "#AAAAAA" diff --git a/themes/mlia-light.yaml b/themes/mlia-light.yaml index 23b23b25..64eb4fbf 100644 --- a/themes/mlia-light.yaml +++ b/themes/mlia-light.yaml @@ -6,6 +6,7 @@ source: author: "grdthh" repo: "https://github.com/hashyael/mlia" url: "https://marketplace.visualstudio.com/items?itemName=grdthh.mliaa" + formats: null colors: bg: "#EBEBEB" fg: "#515151" diff --git a/themes/mlia-soft.yaml b/themes/mlia-soft.yaml index cf80dc0a..386f6ac7 100644 --- a/themes/mlia-soft.yaml +++ b/themes/mlia-soft.yaml @@ -6,6 +6,7 @@ source: author: "grdthh" repo: "https://github.com/hashyael/mlia" url: "https://marketplace.visualstudio.com/items?itemName=grdthh.mliaa" + formats: null colors: bg: "#222222" fg: "#CCCCCC" diff --git a/themes/mlv60-vintage-dark.yaml b/themes/mlv60-vintage-dark.yaml index 77c39bab..6fda06ee 100644 --- a/themes/mlv60-vintage-dark.yaml +++ b/themes/mlv60-vintage-dark.yaml @@ -1,4 +1,4 @@ -name: "mlv60-vintage-dark" +name: "mlv60 vintage dark" source: marketplace_id: "mlv60.mlv60-vintage-dark" version: "1.0.5" @@ -8,6 +8,7 @@ source: author: "mlv60" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mlv60.mlv60-vintage-dark" + formats: null colors: bg: "#010004" fg: "#FFFFFF" diff --git a/themes/mlv60-vintage-light.yaml b/themes/mlv60-vintage-light.yaml index 90155080..bbdffb16 100644 --- a/themes/mlv60-vintage-light.yaml +++ b/themes/mlv60-vintage-light.yaml @@ -1,11 +1,14 @@ -name: "mlv60 vintage light" +name: "mlv60-vintage-light" source: marketplace_id: "mlv60.mlv60-vintage-light" version: "1.0.0" installs: 107 + rating: 0 + ratings: 0 author: "mlv60" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mlv60.mlv60-vintage-light" + formats: null colors: bg: "#FFF7D6" fg: "#1F040C" diff --git a/themes/mocaccino-light.yaml b/themes/mocaccino-light.yaml index 80295536..96332de2 100644 --- a/themes/mocaccino-light.yaml +++ b/themes/mocaccino-light.yaml @@ -2,12 +2,13 @@ name: "Mocaccino Light" source: marketplace_id: "unbotheredbill.mocaccino-light" version: "1.0.2" - installs: 53 + installs: 55 rating: 5 ratings: 1 author: "unbotheredbill" repo: "https://github.com/unbotheredbill/mocaccino-light" url: "https://marketplace.visualstudio.com/items?itemName=unbotheredbill.mocaccino-light" + formats: null colors: bg: "#FAF4E8" fg: "#6B5344" diff --git a/themes/moderate-dimm.yaml b/themes/moderate-dimm.yaml index a7e0c107..42a9f894 100644 --- a/themes/moderate-dimm.yaml +++ b/themes/moderate-dimm.yaml @@ -8,6 +8,7 @@ source: author: "Ivnjey" repo: "https://github.com/Ivnjey/theme-by-ivnjey" url: "https://marketplace.visualstudio.com/items?itemName=Ivnjey.theme-by-ivnjey" + formats: null colors: bg: "#1B222A" fg: "#DBDCDC" diff --git a/themes/modern-dracula-white.yaml b/themes/modern-dracula-white.yaml index 063a2124..bec891f0 100644 --- a/themes/modern-dracula-white.yaml +++ b/themes/modern-dracula-white.yaml @@ -8,6 +8,7 @@ source: author: "Lucas Lomiento" repo: "https://github.com/LucasLomiento/modern-dracula-theme" url: "https://marketplace.visualstudio.com/items?itemName=LucasLomiento.modern-dracula-theme" + formats: null colors: bg: "#101012" fg: "#F4F0E0" diff --git a/themes/modern-dracula.yaml b/themes/modern-dracula.yaml index e0db8b35..65a3e472 100644 --- a/themes/modern-dracula.yaml +++ b/themes/modern-dracula.yaml @@ -8,6 +8,7 @@ source: author: "Lucas Lomiento" repo: "https://github.com/LucasLomiento/modern-dracula-theme" url: "https://marketplace.visualstudio.com/items?itemName=LucasLomiento.modern-dracula-theme" + formats: null colors: bg: "#101012" fg: "#EC6AB3" diff --git a/themes/modern-retro.yaml b/themes/modern-retro.yaml deleted file mode 100644 index 991c006c..00000000 --- a/themes/modern-retro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Modern-Retro" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#151E29" - fg: "#F5F5F5" - black: "#151E29" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#FC4F83" - magenta: "#FC4F83" - cyan: "#29C3A0" - white: "#F5F5F5" - brightBlack: "#151E29" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#FC4F83" - brightMagenta: "#FC4F83" - brightCyan: "#29C3A0" - brightWhite: "#F5F5F5" -meta: - mode: "dark" - accent: "red" - hue: 254 - pair: null - contrast: - fg: 99.5 - black: 0 - red: 8.6 - green: 56.9 - yellow: 50.9 - blue: 42.1 - magenta: 42.1 - cyan: 56.9 - white: 99.5 - brightBlack: 0 - brightRed: 8.6 - brightGreen: 56.9 - brightYellow: 50.9 - brightBlue: 42.1 - brightMagenta: 42.1 - brightCyan: 56.9 - brightWhite: 99.5 diff --git a/themes/moderneclipse.yaml b/themes/moderneclipse.yaml index c5976aad..af4158cc 100644 --- a/themes/moderneclipse.yaml +++ b/themes/moderneclipse.yaml @@ -8,6 +8,7 @@ source: author: "Cydo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Cydo.moderneclipse" + formats: null colors: bg: "#212121" fg: "#EEFFFF" diff --git a/themes/modernui-fork.yaml b/themes/modernui-fork.yaml deleted file mode 100644 index a3c2a38f..00000000 --- a/themes/modernui-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ModernUI - Fork" -source: - marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" - version: "9.0.1" - installs: 29917 - rating: 4.6 - ratings: 10 - author: "Hasibur R" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" -colors: - bg: "#171616" - fg: "#D9D9D9" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#0969FF" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 82.6 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.7 - blue: 29.2 - magenta: 29.8 - cyan: 47.6 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.6 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.4 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/modernui.yaml b/themes/modernui.yaml index 0d0ac6d1..f9cc832e 100644 --- a/themes/modernui.yaml +++ b/themes/modernui.yaml @@ -8,6 +8,7 @@ source: author: "gus_luz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gusluz.modernui" + formats: null colors: bg: "#171616" fg: "#FFFFFF" diff --git a/themes/modest-pink.yaml b/themes/modest-pink.yaml deleted file mode 100644 index 3828b1df..00000000 --- a/themes/modest-pink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Modest pink" -source: - marketplace_id: "GabbyCostlow.modest-pink-theme" - version: "0.0.1" - installs: 137 - rating: 0 - ratings: 0 - author: "Gabby Costlow" - repo: "https://github.com/gcostlow/Modest-Pink-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=GabbyCostlow.modest-pink-theme" -colors: - bg: "#FFF5EC" - fg: "#000000" - black: "#000000" - red: "#CD5E5E" - green: "#7BC07B" - yellow: "#9DA106" - blue: "#8CA4BE" - magenta: "#A763A7" - cyan: "#57B2C9" - white: "#6D6D6D" - brightBlack: "#666666" - brightRed: "#DB6565" - brightGreen: "#4AE04A" - brightYellow: "#B5BA00" - brightBlue: "#69A7EA" - brightMagenta: "#BC64BC" - brightCyan: "#85D3E6" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 101 - black: 101 - red: 61 - green: 37.5 - yellow: 48.5 - blue: 45.2 - magenta: 63.8 - cyan: 42.7 - white: 70.6 - brightBlack: 73.7 - brightRed: 56.6 - brightGreen: 26.1 - brightYellow: 35.9 - brightBlue: 44.3 - brightMagenta: 59.1 - brightCyan: 24.8 - brightWhite: 43.4 diff --git a/themes/modified-darker-material-theme.yaml b/themes/modified-darker-material-theme.yaml index a6fc175b..ab8c3fab 100644 --- a/themes/modified-darker-material-theme.yaml +++ b/themes/modified-darker-material-theme.yaml @@ -8,6 +8,7 @@ source: author: "k-r" repo: "https://github.com/KevinRamsunder/material-theme-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=k-r.modified-darker-material-theme" + formats: null colors: bg: "#1F2123" fg: "#FFFFFF" diff --git a/themes/modus-operandi-deuteranopia.yaml b/themes/modus-operandi-deuteranopia.yaml index 5ae702c6..7b4391b5 100644 --- a/themes/modus-operandi-deuteranopia.yaml +++ b/themes/modus-operandi-deuteranopia.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "tukinami-seika.modus-t" version: "0.0.1" installs: 87 + rating: 0 + ratings: 0 author: "月波 清火" repo: "https://github.com/tukinami/vscode-modus-t" url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/modus-operandi-tinted.yaml b/themes/modus-operandi-tinted.yaml index 25ab774e..f6d38bda 100644 --- a/themes/modus-operandi-tinted.yaml +++ b/themes/modus-operandi-tinted.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "tukinami-seika.modus-t" version: "0.0.1" installs: 87 + rating: 0 + ratings: 0 author: "月波 清火" repo: "https://github.com/tukinami/vscode-modus-t" url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" + formats: null colors: bg: "#FBF7F0" fg: "#000000" diff --git a/themes/modus-operandi-tritanopia.yaml b/themes/modus-operandi-tritanopia.yaml index f84a28f7..ea5f0c26 100644 --- a/themes/modus-operandi-tritanopia.yaml +++ b/themes/modus-operandi-tritanopia.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "tukinami-seika.modus-t" version: "0.0.1" installs: 87 + rating: 0 + ratings: 0 author: "月波 清火" repo: "https://github.com/tukinami/vscode-modus-t" url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/modus-operandi.yaml b/themes/modus-operandi.yaml index 0a3c618b..68d1ec49 100644 --- a/themes/modus-operandi.yaml +++ b/themes/modus-operandi.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "tukinami-seika.modus-t" version: "0.0.1" installs: 87 + rating: 0 + ratings: 0 author: "月波 清火" repo: "https://github.com/tukinami/vscode-modus-t" url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/modus-vivendi-deuteranopia.yaml b/themes/modus-vivendi-deuteranopia.yaml index db260c31..d500f04b 100644 --- a/themes/modus-vivendi-deuteranopia.yaml +++ b/themes/modus-vivendi-deuteranopia.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "tukinami-seika.modus-t" version: "0.0.1" installs: 87 + rating: 0 + ratings: 0 author: "月波 清火" repo: "https://github.com/tukinami/vscode-modus-t" url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/modus-vivendi-tinted.yaml b/themes/modus-vivendi-tinted.yaml index e806e809..4681b932 100644 --- a/themes/modus-vivendi-tinted.yaml +++ b/themes/modus-vivendi-tinted.yaml @@ -1,4 +1,4 @@ -name: "Modus Vivendi Tinted" +name: "Modus-Vivendi-Tinted" source: marketplace_id: "morokiane.modus-vivendi-tinted" version: "0.0.5" @@ -8,6 +8,7 @@ source: author: "morokiane" repo: "https://github.com/Morokiane/Modus-Vivendi-Tinted-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=morokiane.modus-vivendi-tinted" + formats: null colors: bg: "#0D0E1C" fg: "#FFFFFF" diff --git a/themes/modus-vivendi-tritanopia.yaml b/themes/modus-vivendi-tritanopia.yaml index bc0a28d6..0495b930 100644 --- a/themes/modus-vivendi-tritanopia.yaml +++ b/themes/modus-vivendi-tritanopia.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "tukinami-seika.modus-t" version: "0.0.1" installs: 87 + rating: 0 + ratings: 0 author: "月波 清火" repo: "https://github.com/tukinami/vscode-modus-t" url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/modus-vivendi.yaml b/themes/modus-vivendi.yaml index cca7b2a7..5bcccfdb 100644 --- a/themes/modus-vivendi.yaml +++ b/themes/modus-vivendi.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "tukinami-seika.modus-t" version: "0.0.1" installs: 87 + rating: 0 + ratings: 0 author: "月波 清火" repo: "https://github.com/tukinami/vscode-modus-t" url: "https://marketplace.visualstudio.com/items?itemName=tukinami-seika.modus-t" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/moegi-black-zen.yaml b/themes/moegi-black-zen.yaml deleted file mode 100644 index e083a801..00000000 --- a/themes/moegi-black-zen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Moegi Black Zen" -source: - marketplace_id: "ddiu8081.moegi-theme" - version: "0.7.1" - installs: 36950 - rating: 5 - ratings: 22 - author: "Diu" - repo: "https://github.com/moegi-design/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" -colors: - bg: "#0D0D0D" - fg: "#DDDDDD" - black: "#292929" - red: "#AD8686" - green: "#859891" - yellow: "#B3AA8F" - blue: "#7789A3" - magenta: "#8E7A93" - cyan: "#698A8E" - white: "#ADADAD" - brightBlack: "#393939" - brightRed: "#BD9696" - brightGreen: "#95A8A1" - brightYellow: "#C3BA9F" - brightBlue: "#8799B3" - brightMagenta: "#9E8AA3" - brightCyan: "#799A9E" - brightWhite: "#BDBDBD" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 85.8 - black: 0 - red: 42.1 - green: 44.2 - yellow: 56.1 - blue: 38.2 - magenta: 34.8 - cyan: 36.5 - white: 57.6 - brightBlack: 0 - brightRed: 50.3 - brightGreen: 52.6 - brightYellow: 65 - brightBlue: 46.2 - brightMagenta: 42.6 - brightCyan: 44.4 - brightWhite: 66.6 diff --git a/themes/moegi-black.yaml b/themes/moegi-black.yaml deleted file mode 100644 index 557d83fa..00000000 --- a/themes/moegi-black.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Moegi Black" -source: - marketplace_id: "ddiu8081.moegi-theme" - version: "0.7.1" - installs: 36950 - rating: 5 - ratings: 22 - author: "Diu" - repo: "https://github.com/moegi-design/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" -colors: - bg: "#0D0D0D" - fg: "#DDDDDD" - black: "#333333" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#DDDDDD" - brightBlack: "#666666" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#F6F6F6" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Moegi Dawn" - contrast: - fg: 85.8 - black: 0 - red: 45.6 - green: 53 - yellow: 74.6 - blue: 45.7 - magenta: 48.2 - cyan: 57.1 - white: 85.8 - brightBlack: 22.8 - brightRed: 53.4 - brightGreen: 61.6 - brightYellow: 84.3 - brightBlue: 54 - brightMagenta: 56.7 - brightCyan: 65.9 - brightWhite: 101.7 diff --git a/themes/moegi-dark.yaml b/themes/moegi-dark.yaml deleted file mode 100644 index ce385771..00000000 --- a/themes/moegi-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Moegi Dark" -source: - marketplace_id: "ddiu8081.moegi-theme" - version: "0.7.1" - installs: 36950 - rating: 5 - ratings: 22 - author: "Diu" - repo: "https://github.com/moegi-design/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" -colors: - bg: "#202020" - fg: "#DDDDDD" - black: "#333333" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#DDDDDD" - brightBlack: "#666666" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#F6F6F6" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Moegi Light" - contrast: - fg: 83.9 - black: 0 - red: 43.7 - green: 51.2 - yellow: 72.8 - blue: 43.8 - magenta: 46.4 - cyan: 55.3 - white: 83.9 - brightBlack: 20.9 - brightRed: 51.6 - brightGreen: 59.8 - brightYellow: 82.4 - brightBlue: 52.1 - brightMagenta: 54.9 - brightCyan: 64.1 - brightWhite: 99.8 diff --git a/themes/moegi-dawn.yaml b/themes/moegi-dawn.yaml deleted file mode 100644 index 777dede6..00000000 --- a/themes/moegi-dawn.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Moegi Dawn" -source: - marketplace_id: "ddiu8081.moegi-theme" - version: "0.7.1" - installs: 36950 - rating: 5 - ratings: 22 - author: "Diu" - repo: "https://github.com/moegi-design/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" -colors: - bg: "#FFF9F3" - fg: "#483F37" - black: "#685F57" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#E8DFD7" - brightBlack: "#988F87" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#FAF3ED" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Moegi Black" - contrast: - fg: 90.8 - black: 78.1 - red: 52.9 - green: 45.6 - yellow: 24.9 - blue: 52.8 - magenta: 50.3 - cyan: 41.7 - white: 12.5 - brightBlack: 55.8 - brightRed: 45.2 - brightGreen: 37.3 - brightYellow: 15.9 - brightBlue: 44.7 - brightMagenta: 42 - brightCyan: 33.2 - brightWhite: 0 diff --git a/themes/moegi-iris.yaml b/themes/moegi-iris.yaml deleted file mode 100644 index b59b6644..00000000 --- a/themes/moegi-iris.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Moegi Iris" -source: - marketplace_id: "ddiu8081.moegi-theme" - version: "0.7.1" - installs: 36950 - rating: 5 - ratings: 22 - author: "Diu" - repo: "https://github.com/moegi-design/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" -colors: - bg: "#F5F2F9" - fg: "#433748" - black: "#635768" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#E8DFD7" - brightBlack: "#938798" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#EFEAF5" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 88.8 - black: 76.4 - red: 48.9 - green: 41.6 - yellow: 21 - blue: 48.8 - magenta: 46.3 - cyan: 37.7 - white: 8.5 - brightBlack: 54.6 - brightRed: 41.2 - brightGreen: 33.4 - brightYellow: 11.9 - brightBlue: 40.7 - brightMagenta: 38.1 - brightCyan: 29.2 - brightWhite: 0 diff --git a/themes/moegi-light.yaml b/themes/moegi-light.yaml deleted file mode 100644 index ef9a5e05..00000000 --- a/themes/moegi-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Moegi Light" -source: - marketplace_id: "ddiu8081.moegi-theme" - version: "0.7.1" - installs: 36950 - rating: 5 - ratings: 22 - author: "Diu" - repo: "https://github.com/moegi-design/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" -colors: - bg: "#FFFFFF" - fg: "#333333" - black: "#555555" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#DDDDDD" - brightBlack: "#888888" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#EEEEEE" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Moegi Dark" - contrast: - fg: 98.7 - black: 85.9 - red: 56 - green: 48.7 - yellow: 28 - blue: 55.8 - magenta: 53.4 - cyan: 44.7 - white: 17.6 - brightBlack: 63.1 - brightRed: 48.3 - brightGreen: 40.4 - brightYellow: 19 - brightBlue: 47.8 - brightMagenta: 45.1 - brightCyan: 36.3 - brightWhite: 7.6 diff --git a/themes/moegi-space.yaml b/themes/moegi-space.yaml deleted file mode 100644 index 48ab9584..00000000 --- a/themes/moegi-space.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Moegi Space" -source: - marketplace_id: "ddiu8081.moegi-theme" - version: "0.7.1" - installs: 36950 - rating: 5 - ratings: 22 - author: "Diu" - repo: "https://github.com/moegi-design/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" -colors: - bg: "#221E30" - fg: "#DDD8E4" - black: "#38324D" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#DDDDDD" - brightBlack: "#68627D" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#F6F6F6" -meta: - mode: "dark" - accent: "orange" - hue: 294 - pair: null - contrast: - fg: 81.9 - black: 0 - red: 43.6 - green: 51.1 - yellow: 72.7 - blue: 43.7 - magenta: 46.3 - cyan: 55.2 - white: 83.8 - brightBlack: 20.6 - brightRed: 51.5 - brightGreen: 59.7 - brightYellow: 82.3 - brightBlue: 52 - brightMagenta: 54.8 - brightCyan: 64 - brightWhite: 99.7 diff --git a/themes/moin-acme.yaml b/themes/moin-acme.yaml index 0133c18d..4afe1cf5 100644 --- a/themes/moin-acme.yaml +++ b/themes/moin-acme.yaml @@ -8,6 +8,7 @@ source: author: "nwwdles" repo: "https://gitlab.com/nwwdles/vscode-moin-theme" url: "https://marketplace.visualstudio.com/items?itemName=nwwdles.moin-theme" + formats: null colors: bg: "#FFFFEF" fg: "#000000" diff --git a/themes/moin-dark.yaml b/themes/moin-dark.yaml index 733b8eb0..bb076fcf 100644 --- a/themes/moin-dark.yaml +++ b/themes/moin-dark.yaml @@ -8,6 +8,7 @@ source: author: "nwwdles" repo: "https://gitlab.com/nwwdles/vscode-moin-theme" url: "https://marketplace.visualstudio.com/items?itemName=nwwdles.moin-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/moin-light.yaml b/themes/moin-light.yaml index 570cf57b..ac7eaadb 100644 --- a/themes/moin-light.yaml +++ b/themes/moin-light.yaml @@ -8,6 +8,7 @@ source: author: "nwwdles" repo: "https://gitlab.com/nwwdles/vscode-moin-theme" url: "https://marketplace.visualstudio.com/items?itemName=nwwdles.moin-theme" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/moin-soft-dark.yaml b/themes/moin-soft-dark.yaml index d091de5b..4c73f69c 100644 --- a/themes/moin-soft-dark.yaml +++ b/themes/moin-soft-dark.yaml @@ -8,6 +8,7 @@ source: author: "nwwdles" repo: "https://gitlab.com/nwwdles/vscode-moin-theme" url: "https://marketplace.visualstudio.com/items?itemName=nwwdles.moin-theme" + formats: null colors: bg: "#161616" fg: "#FFFFFF" diff --git a/themes/mojito-pro-dark.yaml b/themes/mojito-pro-dark.yaml index 910de458..15a2161b 100644 --- a/themes/mojito-pro-dark.yaml +++ b/themes/mojito-pro-dark.yaml @@ -8,6 +8,7 @@ source: author: "mishatoshi" repo: "https://github.com/mishatoshi/mojito-pro-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mishatoshi.mojito-pro-vscode-theme" + formats: null colors: bg: "#101814" fg: "#D8F3E6" diff --git a/themes/mojito-pro.yaml b/themes/mojito-pro.yaml index 1ba392ec..a40ac962 100644 --- a/themes/mojito-pro.yaml +++ b/themes/mojito-pro.yaml @@ -8,6 +8,7 @@ source: author: "mishatoshi" repo: "https://github.com/mishatoshi/mojito-pro-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mishatoshi.mojito-pro-vscode-theme" + formats: null colors: bg: "#0A1E14" fg: "#D8F3E6" diff --git a/themes/mokka-fork-darken-blue.yaml b/themes/mokka-fork-darken-blue.yaml index eed7da52..aaf4b455 100644 --- a/themes/mokka-fork-darken-blue.yaml +++ b/themes/mokka-fork-darken-blue.yaml @@ -8,6 +8,7 @@ source: author: "Ivan Tsybko" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tsybko22.mokka-fork" + formats: null colors: bg: "#212529" fg: "#97A1A8" diff --git a/themes/mokka.yaml b/themes/mokka.yaml index 761b1c94..86c2c0b2 100644 --- a/themes/mokka.yaml +++ b/themes/mokka.yaml @@ -8,6 +8,7 @@ source: author: "Ivan Tsybko" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tsybko22.mokka-fork" + formats: null colors: bg: "#191919" fg: "#A0A0A0" diff --git a/themes/mol-lurity-theme-soft-fixed.yaml b/themes/mol-lurity-theme-soft-fixed.yaml index f846ad25..4371222e 100644 --- a/themes/mol-lurity-theme-soft-fixed.yaml +++ b/themes/mol-lurity-theme-soft-fixed.yaml @@ -8,6 +8,7 @@ source: author: "malvee" repo: "https://github.com/0xMALVEE/molarity-theme" url: "https://marketplace.visualstudio.com/items?itemName=malvee.molarity-theme" + formats: null colors: bg: "#101124" fg: "#D4D4D4" diff --git a/themes/mol-lurity-theme.yaml b/themes/mol-lurity-theme.yaml index fca8e6b3..cd8e27e8 100644 --- a/themes/mol-lurity-theme.yaml +++ b/themes/mol-lurity-theme.yaml @@ -8,6 +8,7 @@ source: author: "malvee" repo: "https://github.com/0xMALVEE/molarity-theme" url: "https://marketplace.visualstudio.com/items?itemName=malvee.molarity-theme" + formats: null colors: bg: "#00010F" fg: "#D4D4D4" diff --git a/themes/molarity-washed.yaml b/themes/molarity-washed.yaml index 9c9820cb..ca6c1827 100644 --- a/themes/molarity-washed.yaml +++ b/themes/molarity-washed.yaml @@ -8,6 +8,7 @@ source: author: "malvee" repo: "https://github.com/0xMALVEE/molarity-theme" url: "https://marketplace.visualstudio.com/items?itemName=malvee.molarity-theme" + formats: null colors: bg: "#1E1A32" fg: "#8B9DFF" diff --git a/themes/molineux.yaml b/themes/molineux.yaml index 3968a5cf..c0a98133 100644 --- a/themes/molineux.yaml +++ b/themes/molineux.yaml @@ -8,6 +8,7 @@ source: author: "Archie Hicklin" repo: "https://github.com/ArchieHicklin/Molineux-Theme-for-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=archiehicklin.molineux" + formats: null colors: bg: "#222222" fg: "#BAD2D7" diff --git a/themes/moloch.yaml b/themes/moloch.yaml index 58b283dc..2d93e0d6 100644 --- a/themes/moloch.yaml +++ b/themes/moloch.yaml @@ -8,6 +8,7 @@ source: author: "CyberBoost" repo: "https://github.com/bernie-gengel/themesmith" url: "https://marketplace.visualstudio.com/items?itemName=CyberBoost.themesmith" + formats: null colors: bg: "#0A0A0A" fg: "#D4D4D4" diff --git a/themes/molokai-darker.yaml b/themes/molokai-darker.yaml deleted file mode 100644 index 5b05ef9c..00000000 --- a/themes/molokai-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Molokai Darker" -source: - marketplace_id: "gabrielcaussi.molokai-dark" - version: "1.1.0" - installs: 2808 - rating: 5 - ratings: 1 - author: "Gabriel Caussi" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=gabrielcaussi.molokai-dark" -colors: - bg: "#111111" - fg: "#F8F8F2" - black: "#000000" - red: "#FF0044" - green: "#82B414" - yellow: "#FD971F" - blue: "#266C98" - magenta: "#AC0CB1" - cyan: "#AE81FF" - white: "#CCCCCC" - brightBlack: "#808080" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E6DB74" - brightBlue: "#7070F0" - brightMagenta: "#D63AE1" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 102.5 - black: 0 - red: 37.4 - green: 53.1 - yellow: 59.2 - blue: 23 - magenta: 22.9 - cyan: 47 - white: 75.2 - brightBlack: 34.3 - brightRed: 37.8 - brightGreen: 77.5 - brightYellow: 82.6 - brightBlue: 34.3 - brightMagenta: 37.2 - brightCyan: 73.9 - brightWhite: 102.5 diff --git a/themes/molten-aurora.yaml b/themes/molten-aurora.yaml index b8ea0d5f..1f450de9 100644 --- a/themes/molten-aurora.yaml +++ b/themes/molten-aurora.yaml @@ -8,6 +8,7 @@ source: author: "Inna Sodri" repo: "https://example.com/inna/molten-aurora-theme" url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.molten-aurora-theme" + formats: null colors: bg: "#0C0D0F" fg: "#E9E6E1" diff --git a/themes/monaco-paulsevere-color-theme.yaml b/themes/monaco-paulsevere-color-theme.yaml deleted file mode 100644 index c94167b6..00000000 --- a/themes/monaco-paulsevere-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monaco-paulsevere-color-theme" -source: - marketplace_id: "PaulSevere.paulsevere" - version: "0.0.1" - installs: 7 - rating: 0 - ratings: 0 - author: "Paul Severe" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=PaulSevere.paulsevere" -colors: - bg: "#2D2A2E" - fg: "#FCFCFA" - black: "#403E41" - red: "#FF6188" - green: "#A9DC76" - yellow: "#7BB77E" - blue: "#FC9867" - magenta: "#AB9DF2" - cyan: "#78DCE8" - white: "#FCFCFA" - brightBlack: "#727072" - brightRed: "#FF6188" - brightGreen: "#A9DC76" - brightYellow: "#7BB77E" - brightBlue: "#FC9867" - brightMagenta: "#AB9DF2" - brightCyan: "#78DCE8" - brightWhite: "#FCFCFA" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 101.8 - black: 0 - red: 43.8 - green: 72.3 - yellow: 51.7 - blue: 56.6 - magenta: 51.2 - cyan: 72.4 - white: 101.8 - brightBlack: 23.6 - brightRed: 43.8 - brightGreen: 72.3 - brightYellow: 51.7 - brightBlue: 56.6 - brightMagenta: 51.2 - brightCyan: 72.4 - brightWhite: 101.8 diff --git a/themes/monet-impressionism.yaml b/themes/monet-impressionism.yaml deleted file mode 100644 index 64fe6dc7..00000000 --- a/themes/monet-impressionism.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monet-Impressionism" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#262626" - fg: "#C3C1BA" - black: "#262626" - red: "#F14444" - green: "#29C3A0" - yellow: "#D29922" - blue: "#D87757" - magenta: "#D87757" - cyan: "#29C3A0" - white: "#C3C1BA" - brightBlack: "#262626" - brightRed: "#F14444" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#D87757" - brightMagenta: "#D87757" - brightCyan: "#29C3A0" - brightWhite: "#C3C1BA" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 66.1 - black: 0 - red: 35.2 - green: 55.6 - yellow: 49.6 - blue: 40.6 - magenta: 40.6 - cyan: 55.6 - white: 66.1 - brightBlack: 0 - brightRed: 35.2 - brightGreen: 55.6 - brightYellow: 49.6 - brightBlue: 40.6 - brightMagenta: 40.6 - brightCyan: 55.6 - brightWhite: 66.1 diff --git a/themes/monfika.yaml b/themes/monfika.yaml index 7147bd8d..b7e1001f 100644 --- a/themes/monfika.yaml +++ b/themes/monfika.yaml @@ -8,6 +8,7 @@ source: author: "markosmk" repo: "https://github.com/markosmk/monfika-pro" url: "https://marketplace.visualstudio.com/items?itemName=markosmk.monfika-pro" + formats: null colors: bg: "#2F313D" fg: "#E9E9E9" diff --git a/themes/mono-atom.yaml b/themes/mono-atom.yaml deleted file mode 100644 index 18340495..00000000 --- a/themes/mono-atom.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Mono Atom" -source: - marketplace_id: "Avetis.mono-atom" - version: "0.0.3" - installs: 14191 - rating: 4 - ratings: 2 - author: "Avetis" - repo: "https://github.com/AvetisDN/mono-atom-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Avetis.mono-atom" -colors: - bg: "#222428" - fg: "#D4DAE1" - black: "#000000" - red: "#E62C2C" - green: "#0DBC79" - yellow: "#E6BD1E" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#C6CCD1" - brightBlack: "#666666" - brightRed: "#F56464" - brightGreen: "#23D18B" - brightYellow: "#EADC6A" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 81 - black: 0 - red: 30.2 - green: 51.3 - yellow: 66.7 - blue: 25.7 - magenta: 28 - cyan: 45.8 - white: 72.4 - brightBlack: 20.3 - brightRed: 42.5 - brightGreen: 61.8 - brightYellow: 81.2 - brightBlue: 38.3 - brightMagenta: 43.7 - brightCyan: 53.7 - brightWhite: 105.2 diff --git a/themes/mono-bw.yaml b/themes/mono-bw.yaml index 446338f4..df2d5550 100644 --- a/themes/mono-bw.yaml +++ b/themes/mono-bw.yaml @@ -8,6 +8,7 @@ source: author: "Anfeket" repo: null url: "https://marketplace.visualstudio.com/items?itemName=anfeket.mono-bw" + formats: null colors: bg: "#000000" fg: "#929292" diff --git a/themes/mono-cl.yaml b/themes/mono-cl.yaml index fb30fc66..fb06d2ad 100644 --- a/themes/mono-cl.yaml +++ b/themes/mono-cl.yaml @@ -8,6 +8,7 @@ source: author: "arx9781" repo: null url: "https://marketplace.visualstudio.com/items?itemName=arx9781.mono-cl" + formats: null colors: bg: "#191919" fg: "#D4D4D4" diff --git a/themes/mono-dark.yaml b/themes/mono-dark.yaml deleted file mode 100644 index 6cbb3243..00000000 --- a/themes/mono-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mono dark" -source: - marketplace_id: "StepanVanzuriak.mono" - version: "0.0.2" - installs: 57812 - rating: 5 - ratings: 2 - author: "Stepan Vanzuriak" - repo: "https://github.com/stepanvanzuriak/mono" - url: "https://marketplace.visualstudio.com/items?itemName=StepanVanzuriak.mono" -colors: - bg: "#111111" - fg: "#BBBBBB" - black: "#BBBBBB" - red: "#8E8E8E" - green: "#999999" - yellow: "#777777" - blue: "#B0B0B0" - magenta: "#A4A4A4" - cyan: "#828282" - white: "#6C6C6C" - brightBlack: "#BBBBBB" - brightRed: "#8E8E8E" - brightGreen: "#999999" - brightYellow: "#777777" - brightBlue: "#B0B0B0" - brightMagenta: "#A4A4A4" - brightCyan: "#828282" - brightWhite: "#6C6C6C" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 65.2 - black: 65.2 - red: 41.1 - green: 46.7 - yellow: 30.1 - blue: 59 - magenta: 52.5 - cyan: 35.2 - white: 25.1 - brightBlack: 65.2 - brightRed: 41.1 - brightGreen: 46.7 - brightYellow: 30.1 - brightBlue: 59 - brightMagenta: 52.5 - brightCyan: 35.2 - brightWhite: 25.1 diff --git a/themes/mono-next.yaml b/themes/mono-next.yaml index 3c571337..7890d2b4 100644 --- a/themes/mono-next.yaml +++ b/themes/mono-next.yaml @@ -8,6 +8,7 @@ source: author: "MonoNext" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MonoNext.mono-next" + formats: null colors: bg: "#222222" fg: "#F7F1FF" diff --git a/themes/mono-white.yaml b/themes/mono-white.yaml deleted file mode 100644 index 52b827f8..00000000 --- a/themes/mono-white.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mono white" -source: - marketplace_id: "StepanVanzuriak.mono" - version: "0.0.2" - installs: 57812 - rating: 5 - ratings: 2 - author: "Stepan Vanzuriak" - repo: "https://github.com/stepanvanzuriak/mono" - url: "https://marketplace.visualstudio.com/items?itemName=StepanVanzuriak.mono" -colors: - bg: "#F0F0F0" - fg: "#0F0F0F" - black: "#0F0F0F" - red: "#4B4B4B" - green: "#3C3C3C" - yellow: "#696969" - blue: "#1E1E1E" - magenta: "#2D2D2D" - cyan: "#5A5A5A" - white: "#787878" - brightBlack: "#0F0F0F" - brightRed: "#4B4B4B" - brightGreen: "#3C3C3C" - brightYellow: "#696969" - brightBlue: "#1E1E1E" - brightMagenta: "#2D2D2D" - brightCyan: "#5A5A5A" - brightWhite: "#787878" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 96.6 - black: 96.6 - red: 81 - green: 86.6 - yellow: 68.5 - blue: 94.7 - magenta: 91.4 - cyan: 75 - white: 61.7 - brightBlack: 96.6 - brightRed: 81 - brightGreen: 86.6 - brightYellow: 68.5 - brightBlue: 94.7 - brightMagenta: 91.4 - brightCyan: 75 - brightWhite: 61.7 diff --git a/themes/monochai-dark.yaml b/themes/monochai-dark.yaml index 76f95350..854c8d4f 100644 --- a/themes/monochai-dark.yaml +++ b/themes/monochai-dark.yaml @@ -8,6 +8,7 @@ source: author: "381181295" repo: "https://github.com/381181295/monochai" url: "https://marketplace.visualstudio.com/items?itemName=381181295.monochai" + formats: null colors: bg: "#101010" fg: "#AAAAAA" diff --git a/themes/monochromator-dark-plain.yaml b/themes/monochromator-dark-plain.yaml deleted file mode 100644 index 3dddf588..00000000 --- a/themes/monochromator-dark-plain.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monochromator Dark Plain" -source: - marketplace_id: "beem.monochromator" - version: "0.31.1" - installs: 555 - rating: 5 - ratings: 1 - author: "Josias Beem" - repo: "https://codeberg.org/beem/monochromator" - url: "https://marketplace.visualstudio.com/items?itemName=beem.monochromator" -colors: - bg: "#0F0F12" - fg: "#E7E7E7" - black: "#0F0F12" - red: "#FE303A" - green: "#30DF81" - yellow: "#FFF556" - blue: "#02A9FF" - magenta: "#D559FF" - cyan: "#00F3FF" - white: "#808086" - brightBlack: "#808086" - brightRed: "#FE303A" - brightGreen: "#30DF81" - brightYellow: "#FFF556" - brightBlue: "#02A9FF" - brightMagenta: "#D559FF" - brightCyan: "#00F3FF" - brightWhite: "#E7E7E7" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: "Monochromator Light Plain" - contrast: - fg: 91.9 - black: 0 - red: 38.8 - green: 71 - yellow: 97.9 - blue: 51.7 - magenta: 43.8 - cyan: 85.6 - white: 34.6 - brightBlack: 34.6 - brightRed: 38.8 - brightGreen: 71 - brightYellow: 97.9 - brightBlue: 51.7 - brightMagenta: 43.8 - brightCyan: 85.6 - brightWhite: 91.9 diff --git a/themes/monochromator-light-plain.yaml b/themes/monochromator-light-plain.yaml deleted file mode 100644 index d2cfa3c4..00000000 --- a/themes/monochromator-light-plain.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monochromator Light Plain" -source: - marketplace_id: "beem.monochromator" - version: "0.31.1" - installs: 555 - rating: 5 - ratings: 1 - author: "Josias Beem" - repo: "https://codeberg.org/beem/monochromator" - url: "https://marketplace.visualstudio.com/items?itemName=beem.monochromator" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#E01B24" - green: "#017F45" - yellow: "#927E00" - blue: "#2563EB" - magenta: "#CF207E" - cyan: "#01AACF" - white: "#76767C" - brightBlack: "#76767C" - brightRed: "#E01B24" - brightGreen: "#017F45" - brightYellow: "#927E00" - brightBlue: "#2563EB" - brightMagenta: "#CF207E" - brightCyan: "#01AACF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Monochromator Dark Plain" - contrast: - fg: 106 - black: 106 - red: 71.2 - green: 74.5 - yellow: 67.4 - blue: 74.9 - magenta: 73.1 - cyan: 52.4 - white: 71.4 - brightBlack: 71.4 - brightRed: 71.2 - brightGreen: 74.5 - brightYellow: 67.4 - brightBlue: 74.9 - brightMagenta: 73.1 - brightCyan: 52.4 - brightWhite: 0 diff --git a/themes/monochrome-dark-amplified.yaml b/themes/monochrome-dark-amplified.yaml deleted file mode 100644 index 20ece3d4..00000000 --- a/themes/monochrome-dark-amplified.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monochrome-dark-amplified" -source: - marketplace_id: "anotherglitchinthematrix.monochrome" - version: "2.4.3" - installs: 47953 - rating: 4.38 - ratings: 8 - author: "glitch" - repo: "https://github.com/anotherglitchinthematrix/monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" -colors: - bg: "#000000" - fg: "#B3B3B3" - black: "#000000" - red: "#808080" - green: "#4D4D4D" - yellow: "#B3B3B3" - blue: "#333333" - magenta: "#999999" - cyan: "#666666" - white: "#CCCCCC" - brightBlack: "#1A1A1A" - brightRed: "#808080" - brightGreen: "#4D4D4D" - brightYellow: "#B3B3B3" - brightBlue: "#333333" - brightMagenta: "#999999" - brightCyan: "#666666" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 61.2 - black: 0 - red: 34.8 - green: 13.1 - yellow: 61.2 - blue: 0 - magenta: 47.2 - cyan: 23 - white: 75.7 - brightBlack: 0 - brightRed: 34.8 - brightGreen: 13.1 - brightYellow: 61.2 - brightBlue: 0 - brightMagenta: 47.2 - brightCyan: 23 - brightWhite: 107.9 diff --git a/themes/monochrome-dark-cool-gray.yaml b/themes/monochrome-dark-cool-gray.yaml deleted file mode 100644 index 052ce4d9..00000000 --- a/themes/monochrome-dark-cool-gray.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monochrome-dark-cool-gray" -source: - marketplace_id: "anotherglitchinthematrix.monochrome" - version: "2.4.3" - installs: 47953 - rating: 4.38 - ratings: 8 - author: "glitch" - repo: "https://github.com/anotherglitchinthematrix/monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" -colors: - bg: "#111827" - fg: "#B4B7BC" - black: "#111827" - red: "#858991" - green: "#575C67" - yellow: "#B3B6BB" - blue: "#3F4551" - magenta: "#9CA0A6" - cyan: "#6E727C" - white: "#CBCDD1" - brightBlack: "#282F3C" - brightRed: "#858991" - brightGreen: "#575C67" - brightYellow: "#B3B6BB" - brightBlue: "#3F4551" - brightMagenta: "#9CA0A6" - brightCyan: "#6E727C" - brightWhite: "#F9FAFB" -meta: - mode: "dark" - accent: "purple" - hue: 265 - pair: null - contrast: - fg: 62.2 - black: 0 - red: 37.8 - green: 17.7 - yellow: 61.6 - blue: 8.9 - magenta: 49.5 - cyan: 27.1 - white: 75 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 17.7 - brightYellow: 61.6 - brightBlue: 8.9 - brightMagenta: 49.5 - brightCyan: 27.1 - brightWhite: 103.3 diff --git a/themes/monochrome-dark-gray.yaml b/themes/monochrome-dark-gray.yaml index b7a2754d..75a7e0cc 100644 --- a/themes/monochrome-dark-gray.yaml +++ b/themes/monochrome-dark-gray.yaml @@ -8,6 +8,7 @@ source: author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" + formats: null colors: bg: "#111827" fg: "#F3F4F6" diff --git a/themes/monochrome-dark-indigo.yaml b/themes/monochrome-dark-indigo.yaml deleted file mode 100644 index 79bd3ea9..00000000 --- a/themes/monochrome-dark-indigo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monochrome-dark-indigo" -source: - marketplace_id: "anotherglitchinthematrix.monochrome" - version: "2.4.3" - installs: 47953 - rating: 4.38 - ratings: 8 - author: "glitch" - repo: "https://github.com/anotherglitchinthematrix/monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" -colors: - bg: "#0F172A" - fg: "#B3B6BD" - black: "#0F172A" - red: "#848993" - green: "#555B69" - yellow: "#B2B6BD" - blue: "#3E4454" - magenta: "#9B9FA8" - cyan: "#6C727E" - white: "#C9CDD2" - brightBlack: "#262E3F" - brightRed: "#848993" - brightGreen: "#555B69" - brightYellow: "#B2B6BD" - brightBlue: "#3E4454" - brightMagenta: "#9B9FA8" - brightCyan: "#6C727E" - brightWhite: "#F8FAFC" -meta: - mode: "dark" - accent: "purple" - hue: 266 - pair: null - contrast: - fg: 61.7 - black: 0 - red: 37.9 - green: 17.3 - yellow: 61.6 - blue: 8.8 - magenta: 49.1 - cyan: 27 - white: 74.9 - brightBlack: 0 - brightRed: 37.9 - brightGreen: 17.3 - brightYellow: 61.6 - brightBlue: 8.8 - brightMagenta: 49.1 - brightCyan: 27 - brightWhite: 103.3 diff --git a/themes/monochrome-dark-neutral.yaml b/themes/monochrome-dark-neutral.yaml index 836e39b1..1f1c5446 100644 --- a/themes/monochrome-dark-neutral.yaml +++ b/themes/monochrome-dark-neutral.yaml @@ -8,6 +8,7 @@ source: author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" + formats: null colors: bg: "#171717" fg: "#F5F5F5" diff --git a/themes/monochrome-dark-slate.yaml b/themes/monochrome-dark-slate.yaml index a57e9ebc..537ffa99 100644 --- a/themes/monochrome-dark-slate.yaml +++ b/themes/monochrome-dark-slate.yaml @@ -8,6 +8,7 @@ source: author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" + formats: null colors: bg: "#0F172A" fg: "#F1F5F9" diff --git a/themes/monochrome-dark-stone.yaml b/themes/monochrome-dark-stone.yaml index 8238dda9..880e02c2 100644 --- a/themes/monochrome-dark-stone.yaml +++ b/themes/monochrome-dark-stone.yaml @@ -8,6 +8,7 @@ source: author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" + formats: null colors: bg: "#1C1917" fg: "#F5F5F4" diff --git a/themes/monochrome-dark-subtle.yaml b/themes/monochrome-dark-subtle.yaml deleted file mode 100644 index 6177d493..00000000 --- a/themes/monochrome-dark-subtle.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monochrome-dark-subtle" -source: - marketplace_id: "anotherglitchinthematrix.monochrome" - version: "2.4.3" - installs: 47953 - rating: 4.38 - ratings: 8 - author: "glitch" - repo: "https://github.com/anotherglitchinthematrix/monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" -colors: - bg: "#0A1219" - fg: "#ACB1B6" - black: "#0A1219" - red: "#7E8489" - green: "#4F565C" - yellow: "#ACB1B6" - blue: "#383F46" - magenta: "#959A9F" - cyan: "#666D73" - white: "#C3C8CC" - brightBlack: "#21292F" - brightRed: "#7E8489" - brightGreen: "#4F565C" - brightYellow: "#ACB1B6" - brightBlue: "#383F46" - brightMagenta: "#959A9F" - brightCyan: "#666D73" - brightWhite: "#F1F5F9" -meta: - mode: "dark" - accent: "indigo" - hue: 246 - pair: null - contrast: - fg: 59.2 - black: 0 - red: 35.7 - green: 15.6 - yellow: 59.2 - blue: 7.3 - magenta: 46.8 - cyan: 25.1 - white: 72.3 - brightBlack: 0 - brightRed: 35.7 - brightGreen: 15.6 - brightYellow: 59.2 - brightBlue: 7.3 - brightMagenta: 46.8 - brightCyan: 25.1 - brightWhite: 100.4 diff --git a/themes/monochrome-dark-zinc.yaml b/themes/monochrome-dark-zinc.yaml index 3d3a797c..4bf16488 100644 --- a/themes/monochrome-dark-zinc.yaml +++ b/themes/monochrome-dark-zinc.yaml @@ -8,6 +8,7 @@ source: author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" + formats: null colors: bg: "#18181B" fg: "#F4F4F5" diff --git a/themes/monochrome-dark.yaml b/themes/monochrome-dark.yaml deleted file mode 100644 index 378a8bc0..00000000 --- a/themes/monochrome-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monochrome-dark" -source: - marketplace_id: "anotherglitchinthematrix.monochrome" - version: "2.4.3" - installs: 47953 - rating: 4.38 - ratings: 8 - author: "glitch" - repo: "https://github.com/anotherglitchinthematrix/monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" -colors: - bg: "#101010" - fg: "#AAAAAA" - black: "#101010" - red: "#7E7E7E" - green: "#525252" - yellow: "#A9A9A9" - blue: "#3C3C3C" - magenta: "#939393" - cyan: "#686868" - white: "#BFBFBF" - brightBlack: "#262626" - brightRed: "#7E7E7E" - brightGreen: "#525252" - brightYellow: "#A9A9A9" - brightBlue: "#3C3C3C" - brightMagenta: "#939393" - brightCyan: "#686868" - brightWhite: "#EBEBEB" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 55.8 - black: 0 - red: 33.4 - green: 14.5 - yellow: 55.3 - blue: 0 - magenta: 43.7 - cyan: 23.5 - white: 67.6 - brightBlack: 0 - brightRed: 33.4 - brightGreen: 14.5 - brightYellow: 55.3 - brightBlue: 0 - brightMagenta: 43.7 - brightCyan: 23.5 - brightWhite: 94.4 diff --git a/themes/monochrome-github-edition.yaml b/themes/monochrome-github-edition.yaml deleted file mode 100644 index 35878a9b..00000000 --- a/themes/monochrome-github-edition.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monochrome (GitHub Edition)" -source: - marketplace_id: "toufiqahmedshr.monochrome-theme" - version: "1.1.0" - installs: 3264 - rating: 3.33 - ratings: 3 - author: "Toufiq Ahmed" - repo: "https://github.com/toufiq-ahmed/monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=toufiqahmedshr.monochrome-theme" -colors: - bg: "#0D1117" - fg: "#EEFFFF" - black: "#3B4252" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: 258 - pair: null - contrast: - fg: 105.1 - black: 8.6 - red: 33.5 - green: 62.2 - yellow: 76.9 - blue: 49.2 - magenta: 47 - cyan: 63.2 - white: 92.9 - brightBlack: 15.9 - brightRed: 33.5 - brightGreen: 62.2 - brightYellow: 76.9 - brightBlue: 49.2 - brightMagenta: 47 - brightCyan: 61.1 - brightWhite: 96.7 diff --git a/themes/monochrome-light-amplified.yaml b/themes/monochrome-light-amplified.yaml deleted file mode 100644 index 0466df92..00000000 --- a/themes/monochrome-light-amplified.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monochrome-light-amplified" -source: - marketplace_id: "anotherglitchinthematrix.monochrome" - version: "2.4.3" - installs: 47953 - rating: 4.38 - ratings: 8 - author: "glitch" - repo: "https://github.com/anotherglitchinthematrix/monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" -colors: - bg: "#FFFFFF" - fg: "#4C4C4C" - black: "#FFFFFF" - red: "#808080" - green: "#B3B3B3" - yellow: "#4D4D4D" - blue: "#CCCCCC" - magenta: "#666666" - cyan: "#999999" - white: "#333333" - brightBlack: "#E6E6E6" - brightRed: "#808080" - brightGreen: "#B3B3B3" - brightYellow: "#4D4D4D" - brightBlue: "#CCCCCC" - brightMagenta: "#666666" - brightCyan: "#999999" - brightWhite: "#000000" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 89.5 - black: 0 - red: 66.9 - green: 41 - yellow: 89.1 - blue: 27.3 - magenta: 78.8 - cyan: 54.6 - white: 98.7 - brightBlack: 12.3 - brightRed: 66.9 - brightGreen: 41 - brightYellow: 89.1 - brightBlue: 27.3 - brightMagenta: 78.8 - brightCyan: 54.6 - brightWhite: 106 diff --git a/themes/monochrome-light-cool-gray.yaml b/themes/monochrome-light-cool-gray.yaml deleted file mode 100644 index 02be3aa2..00000000 --- a/themes/monochrome-light-cool-gray.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monochrome-light-cool-gray" -source: - marketplace_id: "anotherglitchinthematrix.monochrome" - version: "2.4.3" - installs: 47953 - rating: 4.38 - ratings: 8 - author: "glitch" - repo: "https://github.com/anotherglitchinthematrix/monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" -colors: - bg: "#F9FAFB" - fg: "#565B66" - black: "#F9FAFB" - red: "#858991" - green: "#B3B6BB" - yellow: "#575C67" - blue: "#CBCDD1" - magenta: "#6E727C" - cyan: "#9CA0A6" - white: "#3F4551" - brightBlack: "#E2E3E6" - brightRed: "#858991" - brightGreen: "#B3B6BB" - brightYellow: "#575C67" - brightBlue: "#CBCDD1" - brightMagenta: "#6E727C" - brightCyan: "#9CA0A6" - brightWhite: "#111827" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 80.4 - black: 0 - red: 59.6 - green: 36.5 - yellow: 80 - blue: 23.7 - magenta: 70.4 - cyan: 48.2 - white: 89.2 - brightBlack: 11 - brightRed: 59.6 - brightGreen: 36.5 - brightYellow: 80 - brightBlue: 23.7 - brightMagenta: 70.4 - brightCyan: 48.2 - brightWhite: 101.4 diff --git a/themes/monochrome-light-gray.yaml b/themes/monochrome-light-gray.yaml index 82ab9ade..f02110a9 100644 --- a/themes/monochrome-light-gray.yaml +++ b/themes/monochrome-light-gray.yaml @@ -8,6 +8,7 @@ source: author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" + formats: null colors: bg: "#F3F4F6" fg: "#111827" diff --git a/themes/monochrome-light-indigo.yaml b/themes/monochrome-light-indigo.yaml deleted file mode 100644 index 84d797ea..00000000 --- a/themes/monochrome-light-indigo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monochrome-light-indigo" -source: - marketplace_id: "anotherglitchinthematrix.monochrome" - version: "2.4.3" - installs: 47953 - rating: 4.38 - ratings: 8 - author: "glitch" - repo: "https://github.com/anotherglitchinthematrix/monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" -colors: - bg: "#F8FAFC" - fg: "#545B69" - black: "#F8FAFC" - red: "#848993" - green: "#B2B6BD" - yellow: "#555B69" - blue: "#C9CDD2" - magenta: "#6C727E" - cyan: "#9B9FA8" - white: "#3E4454" - brightBlack: "#E1E3E7" - brightRed: "#848993" - brightGreen: "#B2B6BD" - brightYellow: "#555B69" - brightBlue: "#C9CDD2" - brightMagenta: "#6C727E" - brightCyan: "#9B9FA8" - brightWhite: "#0F172A" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 80.4 - black: 0 - red: 59.5 - green: 36.4 - yellow: 80.3 - blue: 23.8 - magenta: 70.4 - cyan: 48.5 - white: 89.4 - brightBlack: 11 - brightRed: 59.5 - brightGreen: 36.4 - brightYellow: 80.3 - brightBlue: 23.8 - brightMagenta: 70.4 - brightCyan: 48.5 - brightWhite: 101.4 diff --git a/themes/monochrome-light-neutral.yaml b/themes/monochrome-light-neutral.yaml index 6aad181c..0f499c0d 100644 --- a/themes/monochrome-light-neutral.yaml +++ b/themes/monochrome-light-neutral.yaml @@ -8,6 +8,7 @@ source: author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" + formats: null colors: bg: "#F5F5F5" fg: "#171717" diff --git a/themes/monochrome-light-slate.yaml b/themes/monochrome-light-slate.yaml index 7541b2f2..ea15afca 100644 --- a/themes/monochrome-light-slate.yaml +++ b/themes/monochrome-light-slate.yaml @@ -8,6 +8,7 @@ source: author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" + formats: null colors: bg: "#F1F5F9" fg: "#0F172A" diff --git a/themes/monochrome-light-stone.yaml b/themes/monochrome-light-stone.yaml index 1bac4182..2c0d1140 100644 --- a/themes/monochrome-light-stone.yaml +++ b/themes/monochrome-light-stone.yaml @@ -8,6 +8,7 @@ source: author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" + formats: null colors: bg: "#F5F5F4" fg: "#1C1917" diff --git a/themes/monochrome-light-subtle.yaml b/themes/monochrome-light-subtle.yaml deleted file mode 100644 index 0e41ae2b..00000000 --- a/themes/monochrome-light-subtle.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monochrome-light-subtle" -source: - marketplace_id: "anotherglitchinthematrix.monochrome" - version: "2.4.3" - installs: 47953 - rating: 4.38 - ratings: 8 - author: "glitch" - repo: "https://github.com/anotherglitchinthematrix/monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" -colors: - bg: "#F1F5F9" - fg: "#4F565C" - black: "#F1F5F9" - red: "#7E8489" - green: "#ACB1B6" - yellow: "#4F565C" - blue: "#C3C8CC" - magenta: "#666D73" - cyan: "#959A9F" - white: "#383F46" - brightBlack: "#DADEE3" - brightRed: "#7E8489" - brightGreen: "#ACB1B6" - brightYellow: "#4F565C" - brightBlue: "#C3C8CC" - brightMagenta: "#666D73" - brightCyan: "#959A9F" - brightWhite: "#0A1219" -meta: - mode: "light" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 79.6 - black: 0 - red: 59.1 - green: 36.2 - yellow: 79.6 - blue: 23.7 - magenta: 69.8 - cyan: 48.2 - white: 88.5 - brightBlack: 11 - brightRed: 59.1 - brightGreen: 36.2 - brightYellow: 79.6 - brightBlue: 23.7 - brightMagenta: 69.8 - brightCyan: 48.2 - brightWhite: 99 diff --git a/themes/monochrome-light-zinc.yaml b/themes/monochrome-light-zinc.yaml index 60e925ee..35f6a505 100644 --- a/themes/monochrome-light-zinc.yaml +++ b/themes/monochrome-light-zinc.yaml @@ -8,6 +8,7 @@ source: author: "Carl Assmann" repo: "https://github.com/ccssmnn/monochrome" url: "https://marketplace.visualstudio.com/items?itemName=ccssmnn.monochrome-tailwind-colors" + formats: null colors: bg: "#F4F4F5" fg: "#18181B" diff --git a/themes/monochrome-light.yaml b/themes/monochrome-light.yaml deleted file mode 100644 index 9c98db9c..00000000 --- a/themes/monochrome-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monochrome-light" -source: - marketplace_id: "anotherglitchinthematrix.monochrome" - version: "2.4.3" - installs: 47953 - rating: 4.38 - ratings: 8 - author: "glitch" - repo: "https://github.com/anotherglitchinthematrix/monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" -colors: - bg: "#EBEBEB" - fg: "#515151" - black: "#EBEBEB" - red: "#7E7E7E" - green: "#A9A9A9" - yellow: "#525252" - blue: "#BFBFBF" - magenta: "#686868" - cyan: "#939393" - white: "#3C3C3C" - brightBlack: "#D5D5D5" - brightRed: "#7E7E7E" - brightGreen: "#A9A9A9" - brightYellow: "#525252" - brightBlue: "#BFBFBF" - brightMagenta: "#686868" - brightCyan: "#939393" - brightWhite: "#101010" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 75.7 - black: 0 - red: 56 - green: 34.5 - yellow: 75.3 - blue: 22.7 - magenta: 66 - cyan: 45.8 - white: 83.7 - brightBlack: 10.3 - brightRed: 56 - brightGreen: 34.5 - brightYellow: 75.3 - brightBlue: 22.7 - brightMagenta: 66 - brightCyan: 45.8 - brightWhite: 93.6 diff --git a/themes/monochrome.yaml b/themes/monochrome.yaml index 2250d43b..4b78c054 100644 --- a/themes/monochrome.yaml +++ b/themes/monochrome.yaml @@ -1,52 +1,53 @@ -name: "Monochrome" +name: "monochrome." source: - marketplace_id: "toufiqahmedshr.monochrome-theme" - version: "1.1.0" - installs: 3264 - rating: 3.33 - ratings: 3 - author: "Toufiq Ahmed" - repo: "https://github.com/toufiq-ahmed/monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=toufiqahmedshr.monochrome-theme" + marketplace_id: "simojanhunen.monochrome-color-theme" + version: "0.0.3" + installs: 1692 + rating: 5 + ratings: 1 + author: "Simo Janhunen" + repo: "https://github.com/simojanhunen/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=simojanhunen.monochrome-color-theme" + formats: null colors: - bg: "#1A1A1A" - fg: "#EEFFFF" - black: "#3B4252" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" + bg: "#101010" + fg: "#EAEAEA" + black: "#101010" + red: "#7E7E7E" + green: "#525252" + yellow: "#A9A9A9" + blue: "#3C3C3C" + magenta: "#939393" + cyan: "#686868" + white: "#BFBFBF" + brightBlack: "#262626" + brightRed: "#7E7E7E" + brightGreen: "#525252" + brightYellow: "#A9A9A9" + brightBlue: "#3C3C3C" + brightMagenta: "#939393" + brightCyan: "#686868" + brightWhite: "#EBEBEB" meta: mode: "dark" - accent: "orange" + accent: "yellow" hue: null pair: null contrast: - fg: 104.2 - black: 7.8 - red: 32.6 - green: 61.3 - yellow: 76.1 - blue: 48.3 - magenta: 46.1 - cyan: 62.3 - white: 92 - brightBlack: 15.1 - brightRed: 32.6 - brightGreen: 61.3 - brightYellow: 76.1 - brightBlue: 48.3 - brightMagenta: 46.1 - brightCyan: 60.2 - brightWhite: 95.9 + fg: 93.8 + black: 0 + red: 33.4 + green: 14.5 + yellow: 55.3 + blue: 0 + magenta: 43.7 + cyan: 23.5 + white: 67.6 + brightBlack: 0 + brightRed: 33.4 + brightGreen: 14.5 + brightYellow: 55.3 + brightBlue: 0 + brightMagenta: 43.7 + brightCyan: 23.5 + brightWhite: 94.4 diff --git a/themes/monocious-color-theme.yaml b/themes/monocious-color-theme.yaml deleted file mode 100644 index 54498f78..00000000 --- a/themes/monocious-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monocious-color-theme" -source: - marketplace_id: "vinihvc.monocious" - version: "1.0.0" - installs: 84 - rating: 0 - ratings: 0 - author: "Vinicius Vicentini" - repo: "https://github.com/vinihvc/monocious" - url: "https://marketplace.visualstudio.com/items?itemName=vinihvc.monocious" -colors: - bg: "#1D1D25" - fg: "#FFFFFF" - black: "#333333" - red: "#FF3399" - green: "#00D364" - yellow: "#F9DA78" - blue: "#00BFFF" - magenta: "#8C6BC8" - cyan: "#00CED1" - white: "#FFFFFF" - brightBlack: "#3D3D56" - brightRed: "#FF3399" - brightGreen: "#00D364" - brightYellow: "#F9DA78" - brightBlue: "#00BFFF" - brightMagenta: "#CC66FF" - brightCyan: "#00CED1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 285 - pair: null - contrast: - fg: 106.1 - black: 0 - red: 40.2 - green: 62.7 - yellow: 83.8 - blue: 59.6 - magenta: 31.4 - cyan: 63.8 - white: 106.1 - brightBlack: 0 - brightRed: 40.2 - brightGreen: 62.7 - brightYellow: 83.8 - brightBlue: 59.6 - brightMagenta: 43.4 - brightCyan: 63.8 - brightWhite: 106.1 diff --git a/themes/monoclean-light.yaml b/themes/monoclean-light.yaml index 11b93cfd..b41970da 100644 --- a/themes/monoclean-light.yaml +++ b/themes/monoclean-light.yaml @@ -8,6 +8,7 @@ source: author: "Reaper" repo: "https://github.com/barelyhuman/vscode-monoclean-theme" url: "https://marketplace.visualstudio.com/items?itemName=barelyreaper.monoclean" + formats: null colors: bg: "#EFEFEF" fg: "#16161B" diff --git a/themes/monocr.yaml b/themes/monocr.yaml deleted file mode 100644 index 534e34b3..00000000 --- a/themes/monocr.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monocr" -source: - marketplace_id: "shwuy.zhxo-themes" - version: "2.0.1" - installs: 1481 - rating: 5 - ratings: 4 - author: "shwuy" - repo: "https://github.com/sxhk0/.theme" - url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" -colors: - bg: "#1C1C20" - fg: "#B7BECB" - black: "#3B3B3B" - red: "#E03C3C" - green: "#22CD8B" - yellow: "#EEC051" - blue: "#668BE2" - magenta: "#A34BB0" - cyan: "#10CCD5" - white: "#CBCBCB" - brightBlack: "#66676F" - brightRed: "#F08359" - brightGreen: "#3FE6A3" - brightYellow: "#FBFB7B" - brightBlue: "#81A6FD" - brightMagenta: "#C970D6" - brightCyan: "#4DEAEA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 65.6 - black: 0 - red: 31.7 - green: 61 - yellow: 70.7 - blue: 39.8 - magenta: 26 - cyan: 63.2 - white: 73.5 - brightBlack: 22 - brightRed: 50.1 - brightGreen: 74.5 - brightYellow: 99.5 - brightBlue: 53.6 - brightMagenta: 42.5 - brightCyan: 79.8 - brightWhite: 106.3 diff --git a/themes/monocraft.yaml b/themes/monocraft.yaml index 98b5bb93..90617ab9 100644 --- a/themes/monocraft.yaml +++ b/themes/monocraft.yaml @@ -2,12 +2,13 @@ name: "MonoCraft" source: marketplace_id: "cdztt.monocraft" version: "2.1.0" - installs: 3970 + installs: 3975 rating: 0 ratings: 0 author: "cdztt" repo: "https://github.com/cdztt/monocraft-VSCodeColorTheme" url: "https://marketplace.visualstudio.com/items?itemName=cdztt.monocraft" + formats: null colors: bg: "#272822" fg: "#CCC8C8" diff --git a/themes/monoeye.yaml b/themes/monoeye.yaml index 1f121ac0..6db279b0 100644 --- a/themes/monoeye.yaml +++ b/themes/monoeye.yaml @@ -8,6 +8,7 @@ source: author: "Eyemono Rin" repo: "https://github.com/eyemono/monoeye-vscode" url: "https://marketplace.visualstudio.com/items?itemName=EyemonoRin.monoeye" + formats: null colors: bg: "#19151F" fg: "#F2EEF6" diff --git a/themes/monokai-classic.yaml b/themes/monokai-classic.yaml deleted file mode 100644 index 97dfe0a9..00000000 --- a/themes/monokai-classic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monokai Classic" -source: - marketplace_id: "shaobeichen.gradient-theme" - version: "1.19.0" - installs: 24140 - rating: 4.71 - ratings: 7 - author: "shaobeichen" - repo: "https://github.com/shaobeichen/gradient-theme" - url: "https://marketplace.visualstudio.com/items?itemName=shaobeichen.gradient-theme" -colors: - bg: "#272822" - fg: "#FDFFF1" - black: "#3B3C35" - red: "#F92672" - green: "#A6E22E" - yellow: "#E6DB74" - blue: "#FD971F" - magenta: "#AE81FF" - cyan: "#66D9EF" - white: "#FDFFF1" - brightBlack: "#6E7066" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E6DB74" - brightBlue: "#FD971F" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#FDFFF1" -meta: - mode: "dark" - accent: "red" - hue: 115 - pair: null - contrast: - fg: 103.6 - black: 0 - red: 35 - green: 74.7 - yellow: 79.7 - blue: 56.4 - magenta: 44.2 - cyan: 71.1 - white: 103.6 - brightBlack: 23.6 - brightRed: 35 - brightGreen: 74.7 - brightYellow: 79.7 - brightBlue: 56.4 - brightMagenta: 44.2 - brightCyan: 71.1 - brightWhite: 103.6 diff --git a/themes/monokai-color-theme-1.yaml b/themes/monokai-color-theme-1.yaml index 33a70583..ea5da0bd 100644 --- a/themes/monokai-color-theme-1.yaml +++ b/themes/monokai-color-theme-1.yaml @@ -8,6 +8,7 @@ source: author: "Dat Vo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=datvo.theme-monokai-v2" + formats: null colors: bg: "#1D1E16" fg: "#FFFFFF" diff --git a/themes/monokai-dark-green.yaml b/themes/monokai-dark-green.yaml deleted file mode 100644 index 4ce5a091..00000000 --- a/themes/monokai-dark-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monokai Dark Green" -source: - marketplace_id: "alvaro-israel-nunes-leite.theme-monokai-dark-green" - version: "0.1.4" - installs: 4830 - rating: 0 - ratings: 0 - author: "Alvaro Israel Nunes Leite" - repo: "https://github.com/AlvaroIsrael/monokai-dark-green" - url: "https://marketplace.visualstudio.com/items?itemName=alvaro-israel-nunes-leite.theme-monokai-dark-green" -colors: - bg: "#1A1A1A" - fg: "#CFBFAD" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F32569" - brightGreen: "#B1F325" - brightYellow: "#C3E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#CFBFAD" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 68.1 - black: 0 - red: 24.3 - green: 52.7 - yellow: 57.3 - blue: 34.3 - magenta: 31.9 - cyan: 50.1 - white: 88.2 - brightBlack: 21.7 - brightRed: 35.2 - brightGreen: 86 - brightYellow: 79.7 - brightBlue: 49.5 - brightMagenta: 46.2 - brightCyan: 73.1 - brightWhite: 68.1 diff --git a/themes/monokai-dark.yaml b/themes/monokai-dark.yaml deleted file mode 100644 index 9b578687..00000000 --- a/themes/monokai-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monokai Dark" -source: - marketplace_id: "Treevel.monokai-dark-theme" - version: "0.0.3" - installs: 445 - rating: 0 - ratings: 0 - author: "Treevel" - repo: "https://github.com/treevel/vscode-theme-monokai-dark" - url: "https://marketplace.visualstudio.com/items?itemName=Treevel.monokai-dark-theme" -colors: - bg: "#1E1E1E" - fg: "#D4D4D4" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 78.7 - black: 0 - red: 23.8 - green: 52.2 - yellow: 56.8 - blue: 33.8 - magenta: 31.4 - cyan: 49.6 - white: 87.7 - brightBlack: 21.2 - brightRed: 36.5 - brightGreen: 76.2 - brightYellow: 83.1 - brightBlue: 49 - brightMagenta: 45.7 - brightCyan: 72.6 - brightWhite: 101.1 diff --git a/themes/monokai-deep-dark.yaml b/themes/monokai-deep-dark.yaml index 588a7fd1..5055f122 100644 --- a/themes/monokai-deep-dark.yaml +++ b/themes/monokai-deep-dark.yaml @@ -1,13 +1,14 @@ name: "Monokai Deep Dark" source: - marketplace_id: "JaimishLakhani.superman-theme" - version: "1.2.0" - installs: 123 - rating: 0 - ratings: 0 - author: "Jaimish Lakhani" - repo: "https://github.com/jaimishlakhani/superman-theme" - url: "https://marketplace.visualstudio.com/items?itemName=JaimishLakhani.superman-theme" + marketplace_id: "initialzgq.monokai-deep-dark" + version: "0.1.4" + installs: 604 + rating: 5 + ratings: 1 + author: "initialzgq" + repo: "https://github.com/initialqing/monokai-deep-dark" + url: "https://marketplace.visualstudio.com/items?itemName=initialzgq.monokai-deep-dark" + formats: null colors: bg: "#000000" fg: "#F8F8F2" diff --git a/themes/monokai-deep-ocean.yaml b/themes/monokai-deep-ocean.yaml index 8128a988..d96b13d2 100644 --- a/themes/monokai-deep-ocean.yaml +++ b/themes/monokai-deep-ocean.yaml @@ -8,6 +8,7 @@ source: author: "Michelle Mounde" repo: "https://github.com/michellemounde/monokai-rainstorm" url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" + formats: null colors: bg: "#0A0A2A" fg: "#FFFFFF" diff --git a/themes/monokai-drizzle.yaml b/themes/monokai-drizzle.yaml index 18381daa..747e4050 100644 --- a/themes/monokai-drizzle.yaml +++ b/themes/monokai-drizzle.yaml @@ -8,6 +8,7 @@ source: author: "Michelle Mounde" repo: "https://github.com/michellemounde/monokai-rainstorm" url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" + formats: null colors: bg: "#133245" fg: "#DCE2E8" diff --git a/themes/monokai-extended.yaml b/themes/monokai-extended.yaml index a08cec8a..6c972a5b 100644 --- a/themes/monokai-extended.yaml +++ b/themes/monokai-extended.yaml @@ -8,6 +8,7 @@ source: author: "Raj Pal" repo: null url: "https://marketplace.visualstudio.com/items?itemName=RajPal.monokai-extended" + formats: null colors: bg: "#2C2525" fg: "#FFFFFF" diff --git a/themes/monokai-faded.yaml b/themes/monokai-faded.yaml index 2dab7326..6fec2b3f 100644 --- a/themes/monokai-faded.yaml +++ b/themes/monokai-faded.yaml @@ -1,4 +1,4 @@ -name: "monokai-faded" +name: "Monokai Faded" source: marketplace_id: "dionmunk.theme-monokai-faded" version: "1.0.4" @@ -8,6 +8,7 @@ source: author: "Dion Munk" repo: "https://github.com/dionmunk/vscode-theme-monokai-faded" url: "https://marketplace.visualstudio.com/items?itemName=dionmunk.theme-monokai-faded" + formats: null colors: bg: "#202020" fg: "#F8F8F8" diff --git a/themes/monokai-flow.yaml b/themes/monokai-flow.yaml index 8bf80eda..956b7a94 100644 --- a/themes/monokai-flow.yaml +++ b/themes/monokai-flow.yaml @@ -1,52 +1,53 @@ name: "Monokai Flow" source: - marketplace_id: "MaheshSinghChouhan.monokai-mahesh" - version: "0.0.1" - installs: 229 - rating: 0 - ratings: 0 - author: "Mahesh Singh Chouhan" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=MaheshSinghChouhan.monokai-mahesh" + marketplace_id: "ahmed-hadjou.monokai-flow" + version: "0.0.3" + installs: 2931 + rating: 5 + ratings: 3 + author: "Ahmed Hadjou" + repo: "https://github.com/hidjou/vs-code-theme-monokai-flow" + url: "https://marketplace.visualstudio.com/items?itemName=ahmed-hadjou.monokai-flow" + formats: null colors: bg: "#171717" - fg: "#55B5B5" - black: "#333333" - red: "#C4265E" - green: "#14A333" - yellow: "#E6E62B" - blue: "#6A7EC8" - magenta: "#734DB9" - cyan: "#49CAE0" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#00FF00" + fg: "#F8F8F2" + black: "#272822" + red: "#F92672" + green: "#A6E22E" + yellow: "#E2E22E" + blue: "#66D9EF" + magenta: "#AE81FF" + cyan: "#66D9EF" + white: "#F8F8F2" + brightBlack: "#75715E" + brightRed: "#F92672" brightGreen: "#A6E22E" brightYellow: "#E2E22E" - brightBlue: "#819AFF" + brightBlue: "#66D9EF" brightMagenta: "#AE81FF" brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" + brightWhite: "#F9F8F5" meta: mode: "dark" - accent: "green" + accent: "red" hue: null pair: null contrast: - fg: 53.5 + fg: 102 black: 0 - red: 24.6 - green: 40.7 - yellow: 86.3 - blue: 34.6 - magenta: 21.1 - cyan: 64.5 - white: 88.5 - brightBlack: 22 - brightRed: 85.5 + red: 37.3 + green: 77 + yellow: 83.9 + blue: 73.4 + magenta: 46.5 + cyan: 73.4 + white: 102 + brightBlack: 26.7 + brightRed: 37.3 brightGreen: 77 brightYellow: 83.9 - brightBlue: 49.9 + brightBlue: 73.4 brightMagenta: 46.5 brightCyan: 73.4 - brightWhite: 102 + brightWhite: 102.2 diff --git a/themes/monokai-grey.yaml b/themes/monokai-grey.yaml index da30a69f..573de5d3 100644 --- a/themes/monokai-grey.yaml +++ b/themes/monokai-grey.yaml @@ -8,6 +8,7 @@ source: author: "Laurent Tréguier" repo: "https://github.com/LaurentTreguier/vscode-monokai-grey" url: "https://marketplace.visualstudio.com/items?itemName=LaurentTreguier.monokai-grey" + formats: null colors: bg: "#252729" fg: "#DFDFDF" diff --git a/themes/monokai-grs.yaml b/themes/monokai-grs.yaml index 8264b424..90104795 100644 --- a/themes/monokai-grs.yaml +++ b/themes/monokai-grs.yaml @@ -1,15 +1,16 @@ name: "Monokai GRS" source: - marketplace_id: "ChrisFreeze.monokai-grs-elixir" - version: "0.1.0" - installs: 1 - rating: 0 - ratings: 0 - author: "Chris Freeze" - repo: "https://github.com/cjfreeze/Monokai-GRS" - url: "https://marketplace.visualstudio.com/items?itemName=ChrisFreeze.monokai-grs-elixir" + marketplace_id: "GoliafRS.monokai-grs" + version: "1.0.15" + installs: 28368 + rating: 5 + ratings: 5 + author: "GoliafRS" + repo: "https://github.com/goliafrs/monokai" + url: "https://marketplace.visualstudio.com/items?itemName=GoliafRS.monokai-grs" + formats: null colors: - bg: "#202020" + bg: "#161616" fg: "#F0F0F0" black: "#505050" red: "#D32F2F" @@ -33,20 +34,20 @@ meta: hue: null pair: null contrast: - fg: 95.9 - black: 12.1 - red: 26.7 - green: 31.6 - yellow: 72 - blue: 28.2 - magenta: 12.9 - cyan: 37.5 - white: 95.9 - brightBlack: 18.4 - brightRed: 36.1 - brightGreen: 72.2 - brightYellow: 90.6 - brightBlue: 33 - brightMagenta: 34.6 - brightCyan: 76.9 - brightWhite: 105.8 + fg: 97.1 + black: 13.3 + red: 27.9 + green: 32.8 + yellow: 73.2 + blue: 29.4 + magenta: 14.1 + cyan: 38.7 + white: 97.1 + brightBlack: 19.6 + brightRed: 37.3 + brightGreen: 73.4 + brightYellow: 91.8 + brightBlue: 34.3 + brightMagenta: 35.8 + brightCyan: 78.1 + brightWhite: 107 diff --git a/themes/monokai-hc-color-theme.yaml b/themes/monokai-hc-color-theme.yaml deleted file mode 100644 index 3a758bfa..00000000 --- a/themes/monokai-hc-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monokai-hc-color-theme" -source: - marketplace_id: "iZDT.theme-monokai-hc" - version: "1.0.1" - installs: 5113 - rating: 5 - ratings: 1 - author: "iZDT" - repo: "https://github.com/Simple-Tools/VSCode-MonokaiHC-theme" - url: "https://marketplace.visualstudio.com/items?itemName=iZDT.theme-monokai-hc" -colors: - bg: "#000000" - fg: "#F8F8F2" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 103 - black: 0 - red: 25.6 - green: 54 - yellow: 58.7 - blue: 35.6 - magenta: 33.2 - cyan: 51.5 - white: 89.5 - brightBlack: 23 - brightRed: 38.3 - brightGreen: 78 - brightYellow: 84.9 - brightBlue: 50.9 - brightMagenta: 47.5 - brightCyan: 74.4 - brightWhite: 103 diff --git a/themes/monokai-japan-color-theme.yaml b/themes/monokai-japan-color-theme.yaml deleted file mode 100644 index afc2c7a6..00000000 --- a/themes/monokai-japan-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monokai-japan-color-theme" -source: - marketplace_id: "Minorin.theme-monokai-japan" - version: "1.0.1" - installs: 2921 - rating: 5 - ratings: 1 - author: "Minorin" - repo: "https://github.com/minorin22/Monokai-Japan" - url: "https://marketplace.visualstudio.com/items?itemName=Minorin.theme-monokai-japan" -colors: - bg: "#272727" - fg: "#FBFBF8" - black: "#434944" - red: "#DA5673" - green: "#7BB75B" - yellow: "#EEBF35" - blue: "#5CABDC" - magenta: "#7457A2" - cyan: "#87C7D4" - white: "#FBFBF8" - brightBlack: "#6B6B6B" - brightRed: "#DBA2B4" - brightGreen: "#898E38" - brightYellow: "#8A6B3D" - brightBlue: "#126B8C" - brightMagenta: "#B595CF" - brightCyan: "#44A9BA" - brightWhite: "#BFC2BC" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 101.8 - black: 7.8 - red: 33.8 - green: 51.7 - yellow: 68.4 - blue: 49.4 - magenta: 19.7 - cyan: 63.6 - white: 101.8 - brightBlack: 21.9 - brightRed: 57.2 - brightGreen: 35.9 - brightYellow: 24.3 - brightBlue: 19 - brightMagenta: 48.4 - brightCyan: 45.7 - brightWhite: 65.9 diff --git a/themes/monokai-midnight.yaml b/themes/monokai-midnight.yaml index f68cf4d3..2386e18a 100644 --- a/themes/monokai-midnight.yaml +++ b/themes/monokai-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Syahrizal" repo: "https://github.com/syahrizaldev/monokai-midnight" url: "https://marketplace.visualstudio.com/items?itemName=syahrizaldev.monokai-midnight" + formats: null colors: bg: "#0E0E11" fg: "#E2E4E9" diff --git a/themes/monokai-minimal.yaml b/themes/monokai-minimal.yaml deleted file mode 100644 index 2e287914..00000000 --- a/themes/monokai-minimal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monokai-minimal" -source: - marketplace_id: "auanK.monokai-minimal" - version: "0.0.0" - installs: 216 - rating: 0 - ratings: 0 - author: "auanK" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=auanK.monokai-minimal" -colors: - bg: "#0F0F0F" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.1 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28.1 - magenta: 30.4 - cyan: 48.2 - white: 90.6 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/monokai-night-z-blue.yaml b/themes/monokai-night-z-blue.yaml index 6a5718a5..5bda1c80 100644 --- a/themes/monokai-night-z-blue.yaml +++ b/themes/monokai-night-z-blue.yaml @@ -8,6 +8,7 @@ source: author: "Ziv Kaplan" repo: "https://github.com/zivkaplan/monokai-night-z" url: "https://marketplace.visualstudio.com/items?itemName=ZivKaplan.monokai-night-z" + formats: null colors: bg: "#21252B" fg: "#F8F8F2" diff --git a/themes/monokai-ocean-color-theme.yaml b/themes/monokai-ocean-color-theme.yaml deleted file mode 100644 index 4091f792..00000000 --- a/themes/monokai-ocean-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monokai-ocean-color-theme" -source: - marketplace_id: "rofrol.monokai-ocean" - version: "1.0.6" - installs: 10813 - rating: 4 - ratings: 3 - author: "rofrol" - repo: "https://github.com/rofrol/monokai-ocean" - url: "https://marketplace.visualstudio.com/items?itemName=rofrol.monokai-ocean" -colors: - bg: "#191E29" - fg: "#C0C0C0" - black: "#403E41" - red: "#FF6188" - green: "#A9DC76" - yellow: "#E6C866" - blue: "#FC9867" - magenta: "#AB9DF2" - cyan: "#78DCE8" - white: "#BEC4CB" - brightBlack: "#727072" - brightRed: "#FF6188" - brightGreen: "#A9DC76" - brightYellow: "#E6C866" - brightBlue: "#FC9867" - brightMagenta: "#AB9DF2" - brightCyan: "#78DCE8" - brightWhite: "#BEC4CB" -meta: - mode: "dark" - accent: "red" - hue: 266 - pair: null - contrast: - fg: 66.8 - black: 0 - red: 46 - green: 74.4 - yellow: 72.8 - blue: 58.8 - magenta: 53.4 - cyan: 74.6 - white: 68.7 - brightBlack: 25.8 - brightRed: 46 - brightGreen: 74.4 - brightYellow: 72.8 - brightBlue: 58.8 - brightMagenta: 53.4 - brightCyan: 74.6 - brightWhite: 68.7 diff --git a/themes/monokai-octagon.yaml b/themes/monokai-octagon.yaml index f99e5f68..ea5da7f9 100644 --- a/themes/monokai-octagon.yaml +++ b/themes/monokai-octagon.yaml @@ -8,6 +8,7 @@ source: author: "Mohamed Suliman" repo: "https://github.com/mhmdsulimn/MS-Dev-Theme" url: "https://marketplace.visualstudio.com/items?itemName=mhmdsulimn.msdev-vscode" + formats: null colors: bg: "#282A39" fg: "#E9F1F0" diff --git a/themes/monokai-okean.yaml b/themes/monokai-okean.yaml deleted file mode 100644 index 4e3a2a2c..00000000 --- a/themes/monokai-okean.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monokai-Okean" -source: - marketplace_id: "grantorino-publisher.theme-ocean-monokai" - version: "0.0.3" - installs: 936 - rating: 0 - ratings: 0 - author: "grantorino" - repo: "https://github.com/grantorin/theme-ocean-monokai" - url: "https://marketplace.visualstudio.com/items?itemName=grantorino-publisher.theme-ocean-monokai" -colors: - bg: "#253238" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 228 - pair: null - contrast: - fg: 75.3 - black: 0 - red: 22.6 - green: 48.9 - yellow: 81.5 - blue: 23.3 - magenta: 25.6 - cyan: 43.4 - white: 85.9 - brightBlack: 17.9 - brightRed: 34.4 - brightGreen: 59.4 - brightYellow: 91.5 - brightBlue: 35.9 - brightMagenta: 41.2 - brightCyan: 51.3 - brightWhite: 85.9 diff --git a/themes/monokai-original-sublime-theme.yaml b/themes/monokai-original-sublime-theme.yaml index 06da90e7..4b08bead 100644 --- a/themes/monokai-original-sublime-theme.yaml +++ b/themes/monokai-original-sublime-theme.yaml @@ -1,13 +1,14 @@ -name: "monokai-original-sublime-theme" +name: "monokai original sublime theme" source: marketplace_id: "badrouu-laabed.monokai-original-sublime-theme" version: "1.0.0" - installs: 13539 + installs: 13543 rating: 5 ratings: 1 author: "badrouu-laabed" repo: "https://github.com/Badrouu17/monokai-original-sublime-theme" url: "https://marketplace.visualstudio.com/items?itemName=badrouu-laabed.monokai-original-sublime-theme" + formats: null colors: bg: "#272822" fg: "#F8F8F2" diff --git a/themes/monokai-prime.yaml b/themes/monokai-prime.yaml index a348fc03..f85410cc 100644 --- a/themes/monokai-prime.yaml +++ b/themes/monokai-prime.yaml @@ -1,4 +1,4 @@ -name: "monokai-prime" +name: "Monokai Prime" source: marketplace_id: "nhoekstra.monokai-prime" version: "0.0.2" @@ -8,6 +8,7 @@ source: author: "Nicholas Hoekstra" repo: "https://github.com/nhoekstra/monokai-prime" url: "https://marketplace.visualstudio.com/items?itemName=nhoekstra.monokai-prime" + formats: null colors: bg: "#1E1E1E" fg: "#F8F8F2" diff --git a/themes/monokai-pro.yaml b/themes/monokai-pro.yaml deleted file mode 100644 index 3f2f6133..00000000 --- a/themes/monokai-pro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monokai Pro" -source: - marketplace_id: "shaobeichen.gradient-theme" - version: "1.19.0" - installs: 24140 - rating: 4.71 - ratings: 7 - author: "shaobeichen" - repo: "https://github.com/shaobeichen/gradient-theme" - url: "https://marketplace.visualstudio.com/items?itemName=shaobeichen.gradient-theme" -colors: - bg: "#2D2A2E" - fg: "#FCFCFA" - black: "#403E41" - red: "#FF6188" - green: "#A9DC76" - yellow: "#FFD866" - blue: "#FC9867" - magenta: "#AB9DF2" - cyan: "#78DCE8" - white: "#FCFCFA" - brightBlack: "#727072" - brightRed: "#FF6188" - brightGreen: "#A9DC76" - brightYellow: "#FFD866" - brightBlue: "#FC9867" - brightMagenta: "#AB9DF2" - brightCyan: "#78DCE8" - brightWhite: "#FCFCFA" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 101.8 - black: 0 - red: 43.8 - green: 72.3 - yellow: 81.3 - blue: 56.6 - magenta: 51.2 - cyan: 72.4 - white: 101.8 - brightBlack: 23.6 - brightRed: 43.8 - brightGreen: 72.3 - brightYellow: 81.3 - brightBlue: 56.6 - brightMagenta: 51.2 - brightCyan: 72.4 - brightWhite: 101.8 diff --git a/themes/monokai-rain.yaml b/themes/monokai-rain.yaml index cad44b1d..1ce275de 100644 --- a/themes/monokai-rain.yaml +++ b/themes/monokai-rain.yaml @@ -8,6 +8,7 @@ source: author: "Michelle Mounde" repo: "https://github.com/michellemounde/monokai-rainstorm" url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" + formats: null colors: bg: "#323A42" fg: "#DCE2E8" diff --git a/themes/monokai-red.yaml b/themes/monokai-red.yaml deleted file mode 100644 index 673678fb..00000000 --- a/themes/monokai-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monokai +Red" -source: - marketplace_id: "tw.monokai-accent" - version: "0.0.7" - installs: 13334 - rating: 5 - ratings: 4 - author: "tw" - repo: "https://github.com/tw-studio/monokai-accent" - url: "https://marketplace.visualstudio.com/items?itemName=tw.monokai-accent" -colors: - bg: "#242424" - fg: "#F6F6F6" - black: "#222222" - red: "#FC618D" - green: "#7BD88F" - yellow: "#FCE566" - blue: "#FD9353" - magenta: "#948AE3" - cyan: "#5AD4E6" - white: "#F7F1FF" - brightBlack: "#69676C" - brightRed: "#FC618D" - brightGreen: "#7BD88F" - brightYellow: "#FCE566" - brightBlue: "#FD9353" - brightMagenta: "#948AE3" - brightCyan: "#5AD4E6" - brightWhite: "#F7F1FF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 99.2 - black: 0 - red: 44.6 - green: 68.5 - yellow: 87.9 - blue: 56.2 - magenta: 42.5 - cyan: 68.3 - white: 97.5 - brightBlack: 21.1 - brightRed: 44.6 - brightGreen: 68.5 - brightYellow: 87.9 - brightBlue: 56.2 - brightMagenta: 42.5 - brightCyan: 68.3 - brightWhite: 97.5 diff --git a/themes/monokai-semantic.yaml b/themes/monokai-semantic.yaml deleted file mode 100644 index 477ce49b..00000000 --- a/themes/monokai-semantic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monokai Semantic" -source: - marketplace_id: "GoliafRS.monokai-semantic" - version: "1.0.0" - installs: 572 - rating: 0 - ratings: 0 - author: "GoliafRS" - repo: "https://github.com/goliafrs/monokai-semantic" - url: "https://marketplace.visualstudio.com/items?itemName=GoliafRS.monokai-semantic" -colors: - bg: "#161616" - fg: "#F0F0F0" - black: "#505050" - red: "#D32F2F" - green: "#388E3C" - yellow: "#FBC02D" - blue: "#1976D2" - magenta: "#7B1FA2" - cyan: "#0097A7" - white: "#F0F0F0" - brightBlack: "#606060" - brightRed: "#FF1744" - brightGreen: "#00E676" - brightYellow: "#FFEA00" - brightBlue: "#2979FF" - brightMagenta: "#D500F9" - brightCyan: "#00E5FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 97.1 - black: 13.3 - red: 27.9 - green: 32.8 - yellow: 73.2 - blue: 29.4 - magenta: 14.1 - cyan: 38.7 - white: 97.1 - brightBlack: 19.6 - brightRed: 37.3 - brightGreen: 73.4 - brightYellow: 91.8 - brightBlue: 34.3 - brightMagenta: 35.8 - brightCyan: 78.1 - brightWhite: 107 diff --git a/themes/monokai-seti-dark.yaml b/themes/monokai-seti-dark.yaml index 6bd3867f..dda7ea88 100644 --- a/themes/monokai-seti-dark.yaml +++ b/themes/monokai-seti-dark.yaml @@ -8,6 +8,7 @@ source: author: "Aditya Mukherjee" repo: "https://github.com/adityavm/vscode-monokai-seti" url: "https://marketplace.visualstudio.com/items?itemName=adityavm.vscode-monokai-seti" + formats: null colors: bg: "#15191B" fg: "#D1D4D3" diff --git a/themes/monokai-seti-light.yaml b/themes/monokai-seti-light.yaml deleted file mode 100644 index 7ea825c9..00000000 --- a/themes/monokai-seti-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monokai-seti-light" -source: - marketplace_id: "adityavm.vscode-monokai-seti" - version: "0.0.8" - installs: 19548 - rating: 5 - ratings: 1 - author: "Aditya Mukherjee" - repo: "https://github.com/adityavm/vscode-monokai-seti" - url: "https://marketplace.visualstudio.com/items?itemName=adityavm.vscode-monokai-seti" -colors: - bg: "#FFFFFF" - fg: "#272727" - black: "#000000" - red: "#EA6C6D" - green: "#99BF4D" - yellow: "#ECA944" - blue: "#3199E1" - magenta: "#9E75C7" - cyan: "#46BA94" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07171" - brightGreen: "#86B300" - brightYellow: "#E6BB00" - brightBlue: "#399EE6" - brightMagenta: "#A37ACC" - brightCyan: "#4CBF99" - brightWhite: "#D1D1D1" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 101.8 - black: 106 - red: 56.9 - green: 41.4 - yellow: 39.3 - blue: 57.6 - magenta: 63.5 - cyan: 47.2 - white: 30.1 - brightBlack: 77.9 - brightRed: 54.4 - brightGreen: 48.5 - brightYellow: 34 - brightBlue: 55.1 - brightMagenta: 61.1 - brightCyan: 44.6 - brightWhite: 24.5 diff --git a/themes/monokai-sharp.yaml b/themes/monokai-sharp.yaml index 390a26e5..daeb989b 100644 --- a/themes/monokai-sharp.yaml +++ b/themes/monokai-sharp.yaml @@ -8,6 +8,7 @@ source: author: "0b5vr" repo: "https://github.com/0b5vr/vscode-monokai-sharp" url: "https://marketplace.visualstudio.com/items?itemName=0b5vr.theme-monokaisharp" + formats: null colors: bg: "#191A1F" fg: "#D0EDFF" diff --git a/themes/monokai-soda-darker.yaml b/themes/monokai-soda-darker.yaml index edac900c..c6862ca9 100644 --- a/themes/monokai-soda-darker.yaml +++ b/themes/monokai-soda-darker.yaml @@ -8,6 +8,7 @@ source: author: "Carlos Santos" repo: "https://github.com/carlossantos74/Monokai-Theme" url: "https://marketplace.visualstudio.com/items?itemName=carlossantos74.monokai-classic-darker" + formats: null colors: bg: "#1C1C1C" fg: "#FFFFFF" diff --git a/themes/monokai-storm.yaml b/themes/monokai-storm.yaml index c4f875ef..35209e42 100644 --- a/themes/monokai-storm.yaml +++ b/themes/monokai-storm.yaml @@ -8,6 +8,7 @@ source: author: "Michelle Mounde" repo: "https://github.com/michellemounde/monokai-rainstorm" url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" + formats: null colors: bg: "#2A353F" fg: "#FFFFFF" diff --git a/themes/monokai-supersaturated.yaml b/themes/monokai-supersaturated.yaml index e7287cd1..a5147dc2 100644 --- a/themes/monokai-supersaturated.yaml +++ b/themes/monokai-supersaturated.yaml @@ -1,4 +1,4 @@ -name: "Monokai supersaturated" +name: "Monokai Supersaturated" source: marketplace_id: "Limespy.monokai-supersat" version: "1.0.5" @@ -8,6 +8,7 @@ source: author: "Limespy" repo: "https://github.com/Limespy/monokai-supersat" url: "https://marketplace.visualstudio.com/items?itemName=Limespy.monokai-supersat" + formats: null colors: bg: "#000000" fg: "#CCCCCC" diff --git a/themes/monokai-tornado.yaml b/themes/monokai-tornado.yaml index ffa03c7a..a0216db8 100644 --- a/themes/monokai-tornado.yaml +++ b/themes/monokai-tornado.yaml @@ -8,6 +8,7 @@ source: author: "Michelle Mounde" repo: "https://github.com/michellemounde/monokai-rainstorm" url: "https://marketplace.visualstudio.com/items?itemName=mimo.monokai-rain" + formats: null colors: bg: "#2E2E2E" fg: "#FFFFFF" diff --git a/themes/monokai-underdark-mk.yaml b/themes/monokai-underdark-mk.yaml index f7d6c897..dae3c8e8 100644 --- a/themes/monokai-underdark-mk.yaml +++ b/themes/monokai-underdark-mk.yaml @@ -8,6 +8,7 @@ source: author: "Maksudul Haque" repo: "https://github.com/saadmk11/vsc-monokai-underdark-mk-theme" url: "https://marketplace.visualstudio.com/items?itemName=saadmk11.monokai-underdark-mk" + formats: null colors: bg: "#0A0A0A" fg: "#F9F9F9" diff --git a/themes/monokai-underdark.yaml b/themes/monokai-underdark.yaml index 51286859..61b8109b 100644 --- a/themes/monokai-underdark.yaml +++ b/themes/monokai-underdark.yaml @@ -2,12 +2,13 @@ name: "Monokai Underdark" source: marketplace_id: "zrthxn.monokai-underdark" version: "0.0.5" - installs: 149 + installs: 150 rating: 5 ratings: 1 author: "zrthxn" repo: "https://github.com/zrthxn/monokai-underdark" url: "https://marketplace.visualstudio.com/items?itemName=zrthxn.monokai-underdark" + formats: null colors: bg: "#111111" fg: "#FFFFFF" diff --git a/themes/monokai-unified.yaml b/themes/monokai-unified.yaml deleted file mode 100644 index 2c550f54..00000000 --- a/themes/monokai-unified.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monokai++ Unified" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#1C1C1C" - fg: "#CCCCCC" - black: "#1C1C1C" - red: "#E62A19" - green: "#2BE98A" - yellow: "#E6DB74" - blue: "#328EFF" - magenta: "#F92672" - cyan: "#49E0FD" - white: "#CCCCCC" - brightBlack: "#696D70" - brightRed: "#E62A19" - brightGreen: "#2BE98A" - brightYellow: "#E6DB74" - brightBlue: "#328EFF" - brightMagenta: "#F92672" - brightCyan: "#49E0FD" - brightWhite: "#F1F1F1" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 74.1 - black: 0 - red: 31.1 - green: 75 - yellow: 81.5 - blue: 40.8 - magenta: 36.7 - cyan: 75.8 - white: 74.1 - brightBlack: 24.2 - brightRed: 31.1 - brightGreen: 75 - brightYellow: 81.5 - brightBlue: 40.8 - brightMagenta: 36.7 - brightCyan: 75.8 - brightWhite: 97.1 diff --git a/themes/monokai22.yaml b/themes/monokai22.yaml index 0beb2188..01957e08 100644 --- a/themes/monokai22.yaml +++ b/themes/monokai22.yaml @@ -8,6 +8,8 @@ source: author: "henderjon" repo: "https://github.com/henderjon/monokai22" url: "https://marketplace.visualstudio.com/items?itemName=henderjon.monokai22" + formats: + sublime: "https://raw.githubusercontent.com/henderjon/monokai22/dev/archives/monokai-no-italic.tmTheme" colors: bg: "#1E1E1E" fg: "#F8F8F2" diff --git a/themes/monokaiju.yaml b/themes/monokaiju.yaml index 72b1c346..c517d3db 100644 --- a/themes/monokaiju.yaml +++ b/themes/monokaiju.yaml @@ -8,6 +8,7 @@ source: author: "konapun" repo: "https://github.com/konapun/monokaiju" url: "https://marketplace.visualstudio.com/items?itemName=konapun.monokaiju" + formats: null colors: bg: "#1A1D1E" fg: "#F8F8F2" diff --git a/themes/monokaisgq.yaml b/themes/monokaisgq.yaml index 4d52a04d..4a8b2693 100644 --- a/themes/monokaisgq.yaml +++ b/themes/monokaisgq.yaml @@ -8,6 +8,8 @@ source: author: "marketideas" repo: "https://github.com/marketideas/MonokaiSGQ" url: "https://marketplace.visualstudio.com/items?itemName=marketideas.monokaisgq" + formats: + sublime: "https://raw.githubusercontent.com/marketideas/MonokaiSGQ/main/themes/Monokai-SGQ.tmTheme" colors: bg: "#000000" fg: "#00FFFF" diff --git a/themes/monokaizen.yaml b/themes/monokaizen.yaml index c6b7db46..446d9546 100644 --- a/themes/monokaizen.yaml +++ b/themes/monokaizen.yaml @@ -8,6 +8,7 @@ source: author: "Alexander Sanchez" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AlexanderSanchez.monokaizen" + formats: null colors: bg: "#272822" fg: "#F8F8F1" diff --git a/themes/monokard.yaml b/themes/monokard.yaml deleted file mode 100644 index 1e85c32e..00000000 --- a/themes/monokard.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monokard" -source: - marketplace_id: "gfrcsd.monokard" - version: "2.0.0" - installs: 945 - rating: 0 - ratings: 0 - author: "gfrcsd" - repo: "https://github.com/gfrcsd/vscode-monokard" - url: "https://marketplace.visualstudio.com/items?itemName=gfrcsd.monokard" -colors: - bg: "#1F1F1F" - fg: "#DDDDDD" - black: "#333333" - red: "#F92672" - green: "#0FD589" - yellow: "#FFEE99" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#66D8EE" - white: "#E3E3DD" - brightBlack: "#8C8C8C" - brightRed: "#D3201F" - brightGreen: "#A6E22E" - brightYellow: "#FD971E" - brightBlue: "#3BC0F0" - brightMagenta: "#6C71C4" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 84 - black: 0 - red: 36.3 - green: 64.3 - yellow: 94.2 - blue: 33.7 - magenta: 31.2 - cyan: 71.9 - white: 87.5 - brightBlack: 38.6 - brightRed: 25.6 - brightGreen: 76 - brightYellow: 57.7 - brightBlue: 59.5 - brightMagenta: 29.5 - brightCyan: 72.4 - brightWhite: 101 diff --git a/themes/monokong.yaml b/themes/monokong.yaml index e7e456cc..6d6aa777 100644 --- a/themes/monokong.yaml +++ b/themes/monokong.yaml @@ -8,6 +8,7 @@ source: author: "iosuck" repo: null url: "https://marketplace.visualstudio.com/items?itemName=iosuck.monokong" + formats: null colors: bg: "#1E1E1E" fg: "#F8F8F2" diff --git a/themes/monokuro-amber.yaml b/themes/monokuro-amber.yaml deleted file mode 100644 index f317ee74..00000000 --- a/themes/monokuro-amber.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monokuro-amber" -source: - marketplace_id: "hjqInAmood-fiber.hjqTheme" - version: "0.1.5" - installs: 118 - rating: 5 - ratings: 1 - author: "hjqInAmood" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=hjqInAmood-fiber.hjqTheme" -colors: - bg: "#282828" - fg: "#FFCC44" - black: "#333333" - red: "#C4265E" - green: "#FAA70C" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#F0B940" - brightBlack: "#666666" - brightRed: "#00CC99" - brightGreen: "#EE629F" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#F0B940" - brightWhite: "#F0B940" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 76.4 - black: 0 - red: 22.2 - green: 61 - yellow: 55.2 - blue: 32.2 - magenta: 29.8 - cyan: 48 - white: 66.2 - brightBlack: 19.6 - brightRed: 58.9 - brightGreen: 41.7 - brightYellow: 81.5 - brightBlue: 47.4 - brightMagenta: 44.1 - brightCyan: 66.2 - brightWhite: 66.2 diff --git a/themes/monolite.yaml b/themes/monolite.yaml index 87f61721..c84d5008 100644 --- a/themes/monolite.yaml +++ b/themes/monolite.yaml @@ -8,6 +8,7 @@ source: author: "Bauke Posthuma" repo: "https://github.com/baukeposthuma/monolite" url: "https://marketplace.visualstudio.com/items?itemName=baukeposthuma.monolite" + formats: null colors: bg: "#191C28" fg: "#FFFFFF" diff --git a/themes/monos-blac.yaml b/themes/monos-blac.yaml deleted file mode 100644 index 882fac8a..00000000 --- a/themes/monos-blac.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monos - Blac" -source: - marketplace_id: "0xdhrv.blac" - version: "0.0.1" - installs: 2175 - rating: 5 - ratings: 1 - author: "Dhruv Suthar" - repo: "https://github.com/0xdhrv/monos" - url: "https://marketplace.visualstudio.com/items?itemName=0xdhrv.blac" -colors: - bg: "#161616" - fg: "#A0A0A0" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 49.9 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.7 - blue: 27.5 - magenta: 29.8 - cyan: 47.6 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.7 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.5 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/monospace-dark.yaml b/themes/monospace-dark.yaml deleted file mode 100644 index 0c4551ce..00000000 --- a/themes/monospace-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monospace Dark" -source: - marketplace_id: "keksiqc.idx-monospace-theme" - version: "1.5.0" - installs: 31590 - rating: 5 - ratings: 9 - author: "Keksi" - repo: "https://github.com/keksiqc/monospace-theme" - url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" -colors: - bg: "#171F2B" - fg: "#D9DFE7" - black: "#738295" - red: "#F76769" - green: "#17B877" - yellow: "#FFA23E" - blue: "#708FFF" - magenta: "#A87FFB" - cyan: "#25A6E9" - white: "#A4AFBD" - brightBlack: "#8B98A9" - brightRed: "#FC8F8E" - brightGreen: "#66CE98" - brightYellow: "#FFC26E" - brightBlue: "#A2B6FF" - brightMagenta: "#C8AAFF" - brightCyan: "#71C2EE" - brightWhite: "#FAFBFE" -meta: - mode: "dark" - accent: "magenta" - hue: 258 - pair: "Monospace Light" - contrast: - fg: 84.9 - black: 33.1 - red: 44.5 - green: 50.2 - yellow: 62 - blue: 43.7 - magenta: 43.9 - cyan: 47.7 - white: 56.4 - brightBlack: 44.1 - brightRed: 56.8 - brightGreen: 63.6 - brightYellow: 74.4 - brightBlue: 62.6 - brightMagenta: 62.5 - brightCyan: 62.6 - brightWhite: 103.3 diff --git a/themes/monospace-light.yaml b/themes/monospace-light.yaml deleted file mode 100644 index 8df7d7f1..00000000 --- a/themes/monospace-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monospace Light" -source: - marketplace_id: "keksiqc.idx-monospace-theme" - version: "1.5.0" - installs: 31590 - rating: 5 - ratings: 9 - author: "Keksi" - repo: "https://github.com/keksiqc/monospace-theme" - url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" -colors: - bg: "#FFFFFF" - fg: "#1F2939" - black: "#333E4F" - red: "#D03941" - green: "#007B49" - yellow: "#A65921" - blue: "#3C60DD" - magenta: "#6F4CDE" - cyan: "#0075A2" - white: "#5D6A7D" - brightBlack: "#000000" - brightRed: "#A52430" - brightGreen: "#00522F" - brightYellow: "#904B1A" - brightBlue: "#002487" - brightMagenta: "#4D21BB" - brightCyan: "#00607E" - brightWhite: "#475365" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Monospace Dark" - contrast: - fg: 101.4 - black: 95 - red: 72.2 - green: 76 - yellow: 75.1 - blue: 76.2 - magenta: 77.3 - cyan: 75 - white: 77.4 - brightBlack: 106 - brightRed: 83.8 - brightGreen: 91.1 - brightYellow: 82 - brightBlue: 98.3 - brightMagenta: 90.3 - brightCyan: 83.9 - brightWhite: 87.1 diff --git a/themes/monove-fork.yaml b/themes/monove-fork.yaml deleted file mode 100644 index 1ad7c0fb..00000000 --- a/themes/monove-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monove - Fork" -source: - marketplace_id: "0xdhrv.monove" - version: "0.0.2" - installs: 123 - rating: 0 - ratings: 0 - author: "Dhruv Suthar" - repo: "https://github.com/0xdhrv/monove-vscode-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=0xdhrv.monove" -colors: - bg: "#000000" - fg: "#CDCDCD" - black: "#000000" - red: "#717171" - green: "#4B4B4B" - yellow: "#8F8F8F" - blue: "#3C3C3C" - magenta: "#575757" - cyan: "#444444" - white: "#CDCDCD" - brightBlack: "#3C3C3C" - brightRed: "#909090" - brightGreen: "#575757" - brightYellow: "#8F8F8F" - brightBlue: "#444444" - brightMagenta: "#717171" - brightCyan: "#4B4B4B" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 76.3 - black: 0 - red: 27.8 - green: 12.3 - yellow: 42.1 - blue: 0 - magenta: 16.9 - cyan: 9.8 - white: 76.3 - brightBlack: 0 - brightRed: 42.6 - brightGreen: 16.9 - brightYellow: 42.1 - brightBlue: 9.8 - brightMagenta: 27.8 - brightCyan: 12.3 - brightWhite: 107.9 diff --git a/themes/monrch-darc.yaml b/themes/monrch-darc.yaml index efa8c093..97430523 100644 --- a/themes/monrch-darc.yaml +++ b/themes/monrch-darc.yaml @@ -8,6 +8,7 @@ source: author: "MonRch" repo: "https://github.com/Rahul-Encoded/MonRchDarc" url: "https://marketplace.visualstudio.com/items?itemName=MonRch.monrch-darc" + formats: null colors: bg: "#1E1B29" fg: "#ADEBB3" diff --git a/themes/montana.yaml b/themes/montana.yaml index 9d9635b2..780e3f45 100644 --- a/themes/montana.yaml +++ b/themes/montana.yaml @@ -8,6 +8,7 @@ source: author: "Nicos Tsourektsidis" repo: "https://github.com/nicotsou/montana-theme" url: "https://marketplace.visualstudio.com/items?itemName=NicotsouThemes.montana" + formats: null colors: bg: "#0C0340" fg: "#EDEDED" diff --git a/themes/monte-cristo-theme.yaml b/themes/monte-cristo-theme.yaml deleted file mode 100644 index b155e189..00000000 --- a/themes/monte-cristo-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Monte Cristo Theme" -source: - marketplace_id: "monte-cristo-theme.monte-cristo" - version: "1.1.0" - installs: 142 - rating: 0 - ratings: 0 - author: "Monte Cristo Theme" - repo: "https://github.com/monte-cristos/visual-studio-code" - url: "https://marketplace.visualstudio.com/items?itemName=monte-cristo-theme.monte-cristo" -colors: - bg: "#1C1D26" - fg: "#FAFAFA" - black: "#140021" - red: "#FF2E52" - green: "#30F1A0" - yellow: "#FFF94B" - blue: "#0060E0" - magenta: "#FF4396" - cyan: "#42D3F2" - white: "#FAFAFA" - brightBlack: "#00B3F5" - brightRed: "#FF505F" - brightGreen: "#53FEBE" - brightYellow: "#FFEA7F" - brightBlue: "#00B3F5" - brightMagenta: "#FF6BBB" - brightCyan: "#00DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 280 - pair: null - contrast: - fg: 102.8 - black: 0 - red: 37.8 - green: 79.5 - yellow: 98.3 - blue: 22.9 - magenta: 41.8 - cyan: 68.6 - white: 102.8 - brightBlack: 53.8 - brightRed: 42 - brightGreen: 88.1 - brightYellow: 92 - brightBlue: 53.8 - brightMagenta: 50.1 - brightCyan: 73.4 - brightWhite: 106.1 diff --git a/themes/monza-dark.yaml b/themes/monza-dark.yaml index 01ea0846..f9a8c0fa 100644 --- a/themes/monza-dark.yaml +++ b/themes/monza-dark.yaml @@ -8,6 +8,7 @@ source: author: "James Gulland" repo: "https://github.com/james-gulland/monza-dark-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.monza-dark-theme" + formats: null colors: bg: "#1B1C22" fg: "#88DBFD" diff --git a/themes/monzo-contrast.yaml b/themes/monzo-contrast.yaml deleted file mode 100644 index f328a4f3..00000000 --- a/themes/monzo-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monzo-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0B1421" - fg: "#B0CBF4" - black: "#112034" - red: "#BA0E2E" - green: "#98BAA6" - yellow: "#247888" - blue: "#E6CE9F" - magenta: "#E14D61" - cyan: "#247888" - white: "#C6DAF7" - brightBlack: "#24426D" - brightRed: "#F03E5F" - brightGreen: "#D5E3DB" - brightYellow: "#44B8CE" - brightBlue: "#FBF7F0" - brightMagenta: "#F0A4AE" - brightCyan: "#44B8CE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 258 - pair: null - contrast: - fg: 73.2 - black: 0 - red: 20.8 - green: 60 - yellow: 26.1 - blue: 77.7 - magenta: 35.8 - cyan: 26.1 - white: 82.4 - brightBlack: 8.5 - brightRed: 37.1 - brightGreen: 86.9 - brightYellow: 55.6 - brightBlue: 102.1 - brightMagenta: 63.6 - brightCyan: 55.6 - brightWhite: 107.1 diff --git a/themes/monzo-light.yaml b/themes/monzo-light.yaml deleted file mode 100644 index 7bee5c56..00000000 --- a/themes/monzo-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monzo-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#5A79A8" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#98BAA6" - yellow: "#247888" - blue: "#BA9B5E" - magenta: "#E14D61" - cyan: "#247888" - white: "#6B87B1" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#D5E3DB" - brightYellow: "#44B8CE" - brightBlue: "#D9C7A5" - brightMagenta: "#F0A4AE" - brightCyan: "#44B8CE" - brightWhite: "#9DAFCB" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 70.7 - black: 0 - red: 80.3 - green: 41.5 - yellow: 74.9 - blue: 51.5 - magenta: 65.1 - cyan: 74.9 - white: 64.2 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 16.1 - brightYellow: 45.7 - brightBlue: 29 - brightMagenta: 38 - brightCyan: 45.7 - brightWhite: 43.9 diff --git a/themes/monzo.yaml b/themes/monzo.yaml deleted file mode 100644 index 67ef8a44..00000000 --- a/themes/monzo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "monzo" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#15243B" - fg: "#B0CBF4" - black: "#1C2F4E" - red: "#BA0E2E" - green: "#98BAA6" - yellow: "#247888" - blue: "#E6CE9F" - magenta: "#E14D61" - cyan: "#247888" - white: "#C6DAF7" - brightBlack: "#305286" - brightRed: "#F03E5F" - brightGreen: "#D5E3DB" - brightYellow: "#44B8CE" - brightBlue: "#FBF7F0" - brightMagenta: "#F0A4AE" - brightCyan: "#44B8CE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 259 - pair: null - contrast: - fg: 71.2 - black: 0 - red: 18.7 - green: 57.9 - yellow: 24.1 - blue: 75.7 - magenta: 33.8 - cyan: 24.1 - white: 80.3 - brightBlack: 12.3 - brightRed: 35 - brightGreen: 84.8 - brightYellow: 53.6 - brightBlue: 100.1 - brightMagenta: 61.6 - brightCyan: 53.6 - brightWhite: 105.1 diff --git a/themes/moon-light-theme.yaml b/themes/moon-light-theme.yaml index edb0d616..db14a5fd 100644 --- a/themes/moon-light-theme.yaml +++ b/themes/moon-light-theme.yaml @@ -2,12 +2,13 @@ name: "Moon Light Theme" source: marketplace_id: "mukunthan.moon-light-theme" version: "0.0.1" - installs: 3498 + installs: 3499 rating: 5 ratings: 1 author: "mukunthan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mukunthan.moon-light-theme" + formats: null colors: bg: "#001130" fg: "#8659FF" diff --git a/themes/moon-night.yaml b/themes/moon-night.yaml index af3b1d2e..c9219711 100644 --- a/themes/moon-night.yaml +++ b/themes/moon-night.yaml @@ -8,6 +8,7 @@ source: author: "rahulmhto" repo: "https://github.com/rahullm9/rahulmhto-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=rahulmhto.rahulmhto" + formats: null colors: bg: "#020317" fg: "#FFFFFF" diff --git a/themes/moon-phases.yaml b/themes/moon-phases.yaml index 6982ae56..0f1aadf2 100644 --- a/themes/moon-phases.yaml +++ b/themes/moon-phases.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AgraeonLabs.dev-themes" version: "0.1.0" installs: 283 + rating: 0 + ratings: 0 author: "Agraeon Labs" repo: "https://github.com/adiagcodelance/VS-Code-Themes" url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" + formats: null colors: bg: "#212A31" fg: "#D3D9D4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 242 + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/moon-purple.yaml b/themes/moon-purple.yaml index 7a00c094..4be82146 100644 --- a/themes/moon-purple.yaml +++ b/themes/moon-purple.yaml @@ -2,12 +2,13 @@ name: "Moon Purple" source: marketplace_id: "Imagineee.moon-purple" version: "1.0.3" - installs: 12916 + installs: 12921 rating: 5 ratings: 3 author: "Imagineee" repo: "https://github.com/imagineeeinc/Moon-Purple" url: "https://marketplace.visualstudio.com/items?itemName=Imagineee.moon-purple" + formats: null colors: bg: "#0C0015" fg: "#FFFFFF" diff --git a/themes/moon-violet-dark-plus.yaml b/themes/moon-violet-dark-plus.yaml index 03b6a0d4..96bbfa60 100644 --- a/themes/moon-violet-dark-plus.yaml +++ b/themes/moon-violet-dark-plus.yaml @@ -2,12 +2,13 @@ name: "Moon Violet Dark Plus" source: marketplace_id: "moondevaa.moon-violet-dark-plus" version: "0.1.9" - installs: 8129 + installs: 8136 rating: 5 ratings: 1 author: "moondevaa" repo: "https://github.com/AaBbdev29/moon-violet-dark-plus" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.moon-violet-dark-plus" + formats: null colors: bg: "#1F1F1F" fg: "#FFE79B" diff --git a/themes/moonbloom-theme-official.yaml b/themes/moonbloom-theme-official.yaml deleted file mode 100644 index 3ed43a96..00000000 --- a/themes/moonbloom-theme-official.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Moonbloom Theme Official" -source: - marketplace_id: "Moonbloom.moonbloom-theme" - version: "1.1.2" - installs: 838 - rating: 5 - ratings: 1 - author: "Moonbloom" - repo: "https://github.com/moonbloom-theme/visual-studio-code" - url: "https://marketplace.visualstudio.com/items?itemName=Moonbloom.moonbloom-theme" -colors: - bg: "#1D1E27" - fg: "#D1D2E8" - black: "#191A21" - red: "#E66D75" - green: "#93C591" - yellow: "#D9B469" - blue: "#5A9BCF" - magenta: "#BB83D8" - cyan: "#4FA8B8" - white: "#9B9BBA" - brightBlack: "#8282A9" - brightRed: "#F17C88" - brightGreen: "#A1D79F" - brightYellow: "#E8C87E" - brightBlue: "#6EB4E0" - brightMagenta: "#C993E9" - brightCyan: "#68C7D6" - brightWhite: "#E1E2ED" -meta: - mode: "dark" - accent: "orange" - hue: 280 - pair: null - contrast: - fg: 78.3 - black: 0 - red: 42.6 - green: 62.4 - yellow: 62.7 - blue: 43.5 - magenta: 45.3 - cyan: 46.9 - white: 47.6 - brightBlack: 35.4 - brightRed: 49.1 - brightGreen: 72.3 - brightYellow: 73.5 - brightBlue: 55.7 - brightMagenta: 53.4 - brightCyan: 63 - brightWhite: 87.6 diff --git a/themes/moonerized-dark.yaml b/themes/moonerized-dark.yaml index 70fdc5f6..31ebe950 100644 --- a/themes/moonerized-dark.yaml +++ b/themes/moonerized-dark.yaml @@ -8,6 +8,7 @@ source: author: "Brody Reid" repo: "https://worktree.ca/bb/moonerized" url: "https://marketplace.visualstudio.com/items?itemName=brodyreid.moonerized-theme" + formats: null colors: bg: "#192330" fg: "#DBDBDD" diff --git a/themes/moonerized-light.yaml b/themes/moonerized-light.yaml index bfede01b..d8e05422 100644 --- a/themes/moonerized-light.yaml +++ b/themes/moonerized-light.yaml @@ -8,6 +8,7 @@ source: author: "Brody Reid" repo: "https://worktree.ca/bb/moonerized" url: "https://marketplace.visualstudio.com/items?itemName=brodyreid.moonerized-theme" + formats: null colors: bg: "#FAF9FA" fg: "#64646E" diff --git a/themes/moonfly.yaml b/themes/moonfly.yaml index 33dd6974..e67efe92 100644 --- a/themes/moonfly.yaml +++ b/themes/moonfly.yaml @@ -8,6 +8,7 @@ source: author: "jgenc" repo: "https://github.com/jgenc/moonfly-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=jgenc.moonfly-vscode-theme" + formats: null colors: bg: "#080808" fg: "#D3D3D3" diff --git a/themes/moongate-theme-dark.yaml b/themes/moongate-theme-dark.yaml index 28bb2a97..cc936225 100644 --- a/themes/moongate-theme-dark.yaml +++ b/themes/moongate-theme-dark.yaml @@ -8,6 +8,7 @@ source: author: "yuelinghuashu" repo: "https://github.com/yuelinghuashu/moongate-theme" url: "https://marketplace.visualstudio.com/items?itemName=yuelinghuashu.moongate-theme" + formats: null colors: bg: "#0F172A" fg: "#E2E8F0" diff --git a/themes/moongate-theme-light.yaml b/themes/moongate-theme-light.yaml index 39577874..787c5daa 100644 --- a/themes/moongate-theme-light.yaml +++ b/themes/moongate-theme-light.yaml @@ -8,6 +8,7 @@ source: author: "yuelinghuashu" repo: "https://github.com/yuelinghuashu/moongate-theme" url: "https://marketplace.visualstudio.com/items?itemName=yuelinghuashu.moongate-theme" + formats: null colors: bg: "#F9FAFB" fg: "#1E293B" diff --git a/themes/moonkai.yaml b/themes/moonkai.yaml index 3b6b38b7..1f759a3e 100644 --- a/themes/moonkai.yaml +++ b/themes/moonkai.yaml @@ -8,6 +8,7 @@ source: author: "Halcolo" repo: "https://github.com/halcolo/MoonKai" url: "https://marketplace.visualstudio.com/items?itemName=halcolo.moonkai" + formats: null colors: bg: "#212634" fg: "#E4F0FF" diff --git a/themes/moonlight-ii.yaml b/themes/moonlight-ii.yaml deleted file mode 100644 index 09a29c48..00000000 --- a/themes/moonlight-ii.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Moonlight II" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#222436" - fg: "#C8D3F5" - black: "#000000" - red: "#FF757F" - green: "#C3E88D" - yellow: "#FFC777" - blue: "#82AAFF" - magenta: "#FCA7EA" - cyan: "#86E1FC" - white: "#C8D3F5" - brightBlack: "#828BB8" - brightRed: "#FF757F" - brightGreen: "#C3E88D" - brightYellow: "#FFC777" - brightBlue: "#82AAFF" - brightMagenta: "#FCA7EA" - brightCyan: "#86E1FC" - brightWhite: "#C8D3F5" -meta: - mode: "dark" - accent: "orange" - hue: 279 - pair: null - contrast: - fg: 77.2 - black: 0 - red: 48.9 - green: 82.2 - yellow: 75.6 - blue: 54 - magenta: 67.3 - cyan: 77.8 - white: 77.2 - brightBlack: 38.2 - brightRed: 48.9 - brightGreen: 82.2 - brightYellow: 75.6 - brightBlue: 54 - brightMagenta: 67.3 - brightCyan: 77.8 - brightWhite: 77.2 diff --git a/themes/moonlight.yaml b/themes/moonlight.yaml deleted file mode 100644 index 6541f4a1..00000000 --- a/themes/moonlight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Moonlight" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#212337" - fg: "#AAB3E5" - black: "#000000" - red: "#FF5370" - green: "#C7F59B" - yellow: "#FFDB8E" - blue: "#70B0FF" - magenta: "#BAACFF" - cyan: "#7FDAFF" - white: "#E4F3FA" - brightBlack: "#7C85B3" - brightRed: "#FF5370" - brightGreen: "#C7F59B" - brightYellow: "#FFDB8E" - brightBlue: "#70B0FF" - brightMagenta: "#BAACFF" - brightCyan: "#7FDAFF" - brightWhite: "#E4F3FA" -meta: - mode: "dark" - accent: "red" - hue: 279 - pair: null - contrast: - fg: 59.8 - black: 0 - red: 41.8 - green: 89.4 - yellow: 84.6 - blue: 55.2 - magenta: 60.5 - cyan: 74.3 - white: 95.5 - brightBlack: 35.4 - brightRed: 41.8 - brightGreen: 89.4 - brightYellow: 84.6 - brightBlue: 55.2 - brightMagenta: 60.5 - brightCyan: 74.3 - brightWhite: 95.5 diff --git a/themes/moonokai.yaml b/themes/moonokai.yaml index af1abb5f..f8b74b89 100644 --- a/themes/moonokai.yaml +++ b/themes/moonokai.yaml @@ -1,4 +1,4 @@ -name: "Moonokai" +name: "moonokai" source: marketplace_id: "mtayllan.moonokai" version: "0.0.4" @@ -8,6 +8,7 @@ source: author: "mtayllan" repo: "https://github.com/mtayllan/moonokai" url: "https://marketplace.visualstudio.com/items?itemName=mtayllan.moonokai" + formats: null colors: bg: "#0F111B" fg: "#FFFFFF" diff --git a/themes/moonspell-northern-lights.yaml b/themes/moonspell-northern-lights.yaml deleted file mode 100644 index e24ba6e5..00000000 --- a/themes/moonspell-northern-lights.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Moonspell - Northern Lights" -source: - marketplace_id: "Oodri.moonspell-themes" - version: "0.1.2" - installs: 354 - rating: 5 - ratings: 1 - author: "Oodri" - repo: "https://github.com/ElvannAbendroth/moonspell-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Oodri.moonspell-themes" -colors: - bg: "#16191E" - fg: "#7B88A1" - black: "#B8B8B8" - red: "#DDA2F6" - green: "#A571F4" - yellow: "#B396F9" - blue: "#9AEFEA" - magenta: "#DDA2F6" - cyan: "#9AEFEA" - white: "#E1E1E1" - brightBlack: "#E1E1E1" - brightRed: "#DDA2F6" - brightGreen: "#A571F4" - brightYellow: "#B396F9" - brightBlue: "#9AEFEA" - brightMagenta: "#DDA2F6" - brightCyan: "#9AEFEA" - brightWhite: "#E1E1E1" -meta: - mode: "dark" - accent: "magenta" - hue: 261 - pair: null - contrast: - fg: 37.2 - black: 62.8 - red: 62.9 - green: 39.9 - yellow: 53.1 - blue: 86.8 - magenta: 62.9 - cyan: 86.8 - white: 87.3 - brightBlack: 87.3 - brightRed: 62.9 - brightGreen: 39.9 - brightYellow: 53.1 - brightBlue: 86.8 - brightMagenta: 62.9 - brightCyan: 86.8 - brightWhite: 87.3 diff --git a/themes/morass-contrast.yaml b/themes/morass-contrast.yaml deleted file mode 100644 index b8cf06f8..00000000 --- a/themes/morass-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "morass-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#1A1F1D" - fg: "#E4E3E1" - black: "#262D2A" - red: "#BA0E2E" - green: "#FDEC5A" - yellow: "#68875A" - blue: "#AFB54C" - magenta: "#AFD0C4" - cyan: "#677C71" - white: "#F0F0EE" - brightBlack: "#495651" - brightRed: "#F03E5F" - brightGreen: "#FEF8BF" - brightYellow: "#9DB691" - brightBlue: "#CFD394" - brightMagenta: "#EFF6F3" - brightCyan: "#9CADA4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 88 - black: 0 - red: 19.7 - green: 92 - yellow: 32.2 - blue: 57.1 - magenta: 71.9 - cyan: 28.8 - white: 96.1 - brightBlack: 13.6 - brightRed: 36 - brightGreen: 100 - brightYellow: 57 - brightBlue: 75.3 - brightMagenta: 99 - brightCyan: 53.8 - brightWhite: 106.1 diff --git a/themes/morass-light.yaml b/themes/morass-light.yaml deleted file mode 100644 index 24309b96..00000000 --- a/themes/morass-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "morass-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#CEC040" - yellow: "#68875A" - blue: "#AFB54C" - magenta: "#80A396" - cyan: "#677C71" - white: "#515151" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#E3DB91" - brightYellow: "#9DB691" - brightBlue: "#CFD394" - brightMagenta: "#BBCEC7" - brightCyan: "#9CADA4" - brightWhite: "#777777" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 80.3 - green: 35.2 - yellow: 67.6 - blue: 43.3 - magenta: 53.3 - cyan: 71 - white: 87.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 20.1 - brightYellow: 43.4 - brightBlue: 25.9 - brightMagenta: 28.6 - brightCyan: 46.4 - brightWhite: 71.1 diff --git a/themes/morass.yaml b/themes/morass.yaml deleted file mode 100644 index 7ce21481..00000000 --- a/themes/morass.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "morass" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#313A36" - fg: "#E4E3E1" - black: "#3D4843" - red: "#BA0E2E" - green: "#FDEC5A" - yellow: "#68875A" - blue: "#AFB54C" - magenta: "#AFD0C4" - cyan: "#677C71" - white: "#F0F0EE" - brightBlack: "#607169" - brightRed: "#F03E5F" - brightGreen: "#FEF8BF" - brightYellow: "#9DB691" - brightBlue: "#CFD394" - brightMagenta: "#EFF6F3" - brightCyan: "#9CADA4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 167 - pair: null - contrast: - fg: 82.5 - black: 0 - red: 14.2 - green: 86.5 - yellow: 26.8 - blue: 51.6 - magenta: 66.4 - cyan: 23.4 - white: 90.7 - brightBlack: 18.8 - brightRed: 30.5 - brightGreen: 94.5 - brightYellow: 51.5 - brightBlue: 69.9 - brightMagenta: 93.6 - brightCyan: 48.4 - brightWhite: 100.6 diff --git a/themes/more-purple.yaml b/themes/more-purple.yaml index 8191449f..0adf3704 100644 --- a/themes/more-purple.yaml +++ b/themes/more-purple.yaml @@ -1,4 +1,4 @@ -name: "more purple" +name: "More Purple" source: marketplace_id: "Immortal.more-purple" version: "0.1.1" @@ -8,6 +8,7 @@ source: author: "Immortal" repo: "https://github.com/ImmortalNameless/more-purple" url: "https://marketplace.visualstudio.com/items?itemName=Immortal.more-purple" + formats: null colors: bg: "#1F072C" fg: "#C4016F" diff --git a/themes/morgan-codes.yaml b/themes/morgan-codes.yaml deleted file mode 100644 index 870ba4d2..00000000 --- a/themes/morgan-codes.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "morgan.codes" -source: - marketplace_id: "morgan-codes.morgan-codes-vscode-theme" - version: "0.0.5" - installs: 49380 - rating: 4.64 - ratings: 11 - author: "morgan-codes" - repo: "https://github.com/morganrmarie/morgancodes-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=morgan-codes.morgan-codes-vscode-theme" -colors: - bg: "#111111" - fg: "#FF8B56" - black: "#2A3134" - red: "#FC4384" - green: "#55E513" - yellow: "#A553C6" - blue: "#FC4384" - magenta: "#AE89FE" - cyan: "#708387" - white: "#D5D5D0" - brightBlack: "#4A4E4F" - brightRed: "#FC4384" - brightGreen: "#55E513" - brightYellow: "#41F0FF" - brightBlue: "#41F0FF" - brightMagenta: "#AE89FE" - brightCyan: "#41F0FF" - brightWhite: "#F9F9F4" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 56.4 - black: 0 - red: 41.7 - green: 73.6 - yellow: 30.3 - blue: 41.7 - magenta: 49.4 - cyan: 34.1 - white: 80.4 - brightBlack: 12.7 - brightRed: 41.7 - brightGreen: 73.6 - brightYellow: 84.6 - brightBlue: 84.6 - brightMagenta: 49.4 - brightCyan: 84.6 - brightWhite: 103.2 diff --git a/themes/mori-keycaps.yaml b/themes/mori-keycaps.yaml index fe02c24b..e7f0a4da 100644 --- a/themes/mori-keycaps.yaml +++ b/themes/mori-keycaps.yaml @@ -8,6 +8,7 @@ source: author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" + formats: null colors: bg: "#2D2A2E" fg: "#A08B7A" diff --git a/themes/mori.yaml b/themes/mori.yaml index a60a105d..662bd4eb 100644 --- a/themes/mori.yaml +++ b/themes/mori.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "rajshekhardev.mori" version: "0.0.3" installs: 184 + rating: 0 + ratings: 0 author: "Raj Shekhar Dev" repo: "https://github.com/blankRSD/mori" url: "https://marketplace.visualstudio.com/items?itemName=rajshekhardev.mori" + formats: null colors: bg: "#FFF5DE" fg: "#000000" diff --git a/themes/morita.yaml b/themes/morita.yaml index 10eee692..2c592c39 100644 --- a/themes/morita.yaml +++ b/themes/morita.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/MyThemes" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" + formats: null colors: bg: "#0A0012" fg: "#DDDDDD" diff --git a/themes/morning-mist.yaml b/themes/morning-mist.yaml index 3841eff5..93883529 100644 --- a/themes/morning-mist.yaml +++ b/themes/morning-mist.yaml @@ -8,6 +8,7 @@ source: author: "ThemePlanet - Verdant" repo: "https://github.com/Ukt01/themeplanet-verdant" url: "https://marketplace.visualstudio.com/items?itemName=ThemePlanet-Verdant.themeplanet-verdant" + formats: null colors: bg: "#F5F7F2" fg: "#2D3748" diff --git a/themes/morning-mocha.yaml b/themes/morning-mocha.yaml index 0b665f48..b37b76e9 100644 --- a/themes/morning-mocha.yaml +++ b/themes/morning-mocha.yaml @@ -8,6 +8,7 @@ source: author: "Goldenwere" repo: "https://git.goldenwere.com/lightling/lightling" url: "https://marketplace.visualstudio.com/items?itemName=goldenwere.morning-mocha" + formats: null colors: bg: "#EADECC" fg: "#000000" diff --git a/themes/morose-theme.yaml b/themes/morose-theme.yaml index de3bf395..72d3ab87 100644 --- a/themes/morose-theme.yaml +++ b/themes/morose-theme.yaml @@ -6,6 +6,7 @@ source: author: "morose" repo: null url: "https://marketplace.visualstudio.com/items?itemName=morose.morose-theme" + formats: null colors: bg: "#202020" fg: "#B5B5B5" diff --git a/themes/mosaic.yaml b/themes/mosaic.yaml deleted file mode 100644 index 5bc51df2..00000000 --- a/themes/mosaic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Mosaic" -source: - marketplace_id: "vitoravelino.mosaic" - version: "0.0.1" - installs: 11258 - rating: 5 - ratings: 2 - author: "vitoravelino" - repo: "https://github.com/vitoravelino/vscode-mosaic" - url: "https://marketplace.visualstudio.com/items?itemName=vitoravelino.mosaic" -colors: - bg: "#232834" - fg: "#DADBC0" - black: "#191E2A" - red: "#ED8274" - green: "#A6CC70" - yellow: "#FAD07B" - blue: "#8BCCD6" - magenta: "#CFBAFA" - cyan: "#95E6CB" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F28779" - brightGreen: "#BAE67E" - brightYellow: "#FFD580" - brightBlue: "#8BCCD6" - brightMagenta: "#D4BFFF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 267 - pair: null - contrast: - fg: 80.1 - black: 0 - red: 47.9 - green: 65 - yellow: 78 - blue: 66 - magenta: 67.6 - cyan: 78.4 - white: 69.2 - brightBlack: 20.4 - brightRed: 50.4 - brightGreen: 79.5 - brightYellow: 81.1 - brightBlue: 66 - brightMagenta: 70.5 - brightCyan: 78.4 - brightWhite: 104.4 diff --git a/themes/mosmmy.yaml b/themes/mosmmy.yaml index 656c8b7a..ba5fbea1 100644 --- a/themes/mosmmy.yaml +++ b/themes/mosmmy.yaml @@ -8,6 +8,7 @@ source: author: "Moser Jose" repo: "https://github.com/moser-jose/mosmmy-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=moserjose.mosmmy-theme" + formats: null colors: bg: "#222222" fg: "#F7F8F3" diff --git a/themes/moss-oracle.yaml b/themes/moss-oracle.yaml index 5407b1bf..9c9b3ab9 100644 --- a/themes/moss-oracle.yaml +++ b/themes/moss-oracle.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "InnaSodri.moss-oracle-theme" version: "1.0.0" installs: 187 + rating: 0 + ratings: 0 author: "Inna Sodri" repo: "https://github.com/InnaSodri/moss-oracle" url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.moss-oracle-theme" + formats: null colors: bg: "#0F1410" fg: "#E3D9B0" diff --git a/themes/mossframe-light.yaml b/themes/mossframe-light.yaml index db827a2d..b8b17b47 100644 --- a/themes/mossframe-light.yaml +++ b/themes/mossframe-light.yaml @@ -8,6 +8,7 @@ source: author: "404mat" repo: "https://github.com/404mat/mossframe" url: "https://marketplace.visualstudio.com/items?itemName=404mat.mossframe" + formats: null colors: bg: "#F9F5ED" fg: "#000000" diff --git a/themes/mossframe-neon-darker-legacy.yaml b/themes/mossframe-neon-darker-legacy.yaml index 20888bcc..f061c506 100644 --- a/themes/mossframe-neon-darker-legacy.yaml +++ b/themes/mossframe-neon-darker-legacy.yaml @@ -8,6 +8,7 @@ source: author: "404mat" repo: "https://github.com/404mat/mossframe" url: "https://marketplace.visualstudio.com/items?itemName=404mat.mossframe" + formats: null colors: bg: "#0F1114" fg: "#A6ACCD" diff --git a/themes/mossframe-neon-legacy.yaml b/themes/mossframe-neon-legacy.yaml index ba723d3d..8c01e3d8 100644 --- a/themes/mossframe-neon-legacy.yaml +++ b/themes/mossframe-neon-legacy.yaml @@ -8,6 +8,7 @@ source: author: "404mat" repo: "https://github.com/404mat/mossframe" url: "https://marketplace.visualstudio.com/items?itemName=404mat.mossframe" + formats: null colors: bg: "#1B1E28" fg: "#A6ACCD" diff --git a/themes/mossframe.yaml b/themes/mossframe.yaml index 648b7a88..5dd86985 100644 --- a/themes/mossframe.yaml +++ b/themes/mossframe.yaml @@ -8,6 +8,7 @@ source: author: "404mat" repo: "https://github.com/404mat/mossframe" url: "https://marketplace.visualstudio.com/items?itemName=404mat.mossframe" + formats: null colors: bg: "#101010" fg: "#6A7782" diff --git a/themes/mother-stretch-my-hands.yaml b/themes/mother-stretch-my-hands.yaml index 3ebc9b49..7d41bdd2 100644 --- a/themes/mother-stretch-my-hands.yaml +++ b/themes/mother-stretch-my-hands.yaml @@ -6,6 +6,7 @@ source: author: "chiefyangga" repo: "" url: "https://marketplace.visualstudio.com/items?itemName=chiefyangga.bianca" + formats: null colors: bg: "#141417" fg: "#C8C8C8" diff --git a/themes/motion-blue.yaml b/themes/motion-blue.yaml index cecc96c5..cd03a2c0 100644 --- a/themes/motion-blue.yaml +++ b/themes/motion-blue.yaml @@ -8,6 +8,7 @@ source: author: "5ett" repo: "https://github.com/5ett/motion-blue" url: "https://marketplace.visualstudio.com/items?itemName=5ett.motion-blue" + formats: null colors: bg: "#183752" fg: "#BBD5ED" diff --git a/themes/motiv8der-s-theme.yaml b/themes/motiv8der-s-theme.yaml index 0036db1c..b07f582c 100644 --- a/themes/motiv8der-s-theme.yaml +++ b/themes/motiv8der-s-theme.yaml @@ -8,6 +8,7 @@ source: author: "IntoCode" repo: "https://github.com/Justin-Diner/IntoCode_VSCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=IntoCode.motiv8der-dark-theme" + formats: null colors: bg: "#131313" fg: "#F5ECEC" diff --git a/themes/mount-kalaga-noir.yaml b/themes/mount-kalaga-noir.yaml index ba67f59c..94819fc8 100644 --- a/themes/mount-kalaga-noir.yaml +++ b/themes/mount-kalaga-noir.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#2F4F2F" fg: "#FFFFFF" diff --git a/themes/mountain-theme.yaml b/themes/mountain-theme.yaml deleted file mode 100644 index 9f19c3d8..00000000 --- a/themes/mountain-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mountain-theme" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - rating: 5 - ratings: 3 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#0F0F0F" - fg: "#F0F0F0" - black: "#000000" - red: "#AC8A8C" - green: "#8AAC8B" - yellow: "#ACA98A" - blue: "#8A98AC" - magenta: "#AC8AAC" - cyan: "#8AACAB" - white: "#E7E7E7" - brightBlack: "#4C4C4C" - brightRed: "#C49EA0" - brightGreen: "#9EC49F" - brightYellow: "#C4C19E" - brightBlue: "#A5B4CB" - brightMagenta: "#C49EC4" - brightCyan: "#9EC3C4" - brightWhite: "#F0F0F0" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 97.7 - black: 0 - red: 43.4 - green: 52.3 - yellow: 54.6 - blue: 45.7 - magenta: 44.7 - cyan: 53.4 - white: 91.9 - brightBlack: 12.3 - brightRed: 54.4 - brightGreen: 65 - brightYellow: 67.9 - brightBlue: 60.7 - brightMagenta: 55.9 - brightCyan: 66 - brightWhite: 97.7 diff --git a/themes/mountains-and-rivers.yaml b/themes/mountains-and-rivers.yaml index 8864acc6..da32816c 100644 --- a/themes/mountains-and-rivers.yaml +++ b/themes/mountains-and-rivers.yaml @@ -8,6 +8,7 @@ source: author: "yshwaker" repo: "https://github.com/yshwaker/mountains-and-rivers-theme" url: "https://marketplace.visualstudio.com/items?itemName=yshwaker.mountains-and-rivers-theme" + formats: null colors: bg: "#F8F6F5" fg: "#1E2128" diff --git a/themes/mourning.yaml b/themes/mourning.yaml index a2c475b9..6f8ba47e 100644 --- a/themes/mourning.yaml +++ b/themes/mourning.yaml @@ -1,4 +1,4 @@ -name: "Mourning" +name: "mourning" source: marketplace_id: "zakj.mourning" version: "0.0.5" @@ -8,6 +8,7 @@ source: author: "zakj" repo: "https://github.com/zakj/vscode-mourning" url: "https://marketplace.visualstudio.com/items?itemName=zakj.mourning" + formats: null colors: bg: "#1C1C1C" fg: "#8A8A8A" diff --git a/themes/mowgli.yaml b/themes/mowgli.yaml index 76c193bd..223c145b 100644 --- a/themes/mowgli.yaml +++ b/themes/mowgli.yaml @@ -8,6 +8,7 @@ source: author: "Siddharth Abbineni" repo: "https://github.com/wapenshaw/mowgli/" url: "https://marketplace.visualstudio.com/items?itemName=wapenshaw.mowgli" + formats: null colors: bg: "#0F1519" fg: "#DCDCDC" diff --git a/themes/mr-code-black.yaml b/themes/mr-code-black.yaml index bd345d7d..162f9fe8 100644 --- a/themes/mr-code-black.yaml +++ b/themes/mr-code-black.yaml @@ -8,6 +8,7 @@ source: author: "Ahmad Jubran" repo: "https://github.com/ahmadjubran/mr-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=AhmadJubran.mr-code" + formats: null colors: bg: "#0F1014" fg: "#D8DEE9" diff --git a/themes/mr-code-gunmetal.yaml b/themes/mr-code-gunmetal.yaml index 82bbb694..15ade34e 100644 --- a/themes/mr-code-gunmetal.yaml +++ b/themes/mr-code-gunmetal.yaml @@ -8,6 +8,7 @@ source: author: "Ahmad Jubran" repo: "https://github.com/ahmadjubran/mr-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=AhmadJubran.mr-code" + formats: null colors: bg: "#292F3A" fg: "#D8DEE9" diff --git a/themes/ms-dev-theme.yaml b/themes/ms-dev-theme.yaml index e03fa5bd..c26ffbc7 100644 --- a/themes/ms-dev-theme.yaml +++ b/themes/ms-dev-theme.yaml @@ -8,6 +8,7 @@ source: author: "Mohamed Suliman" repo: "https://github.com/mhmdsulimn/MS-Dev-Theme" url: "https://marketplace.visualstudio.com/items?itemName=mhmdsulimn.msdev-vscode" + formats: null colors: bg: "#0D1117" fg: "#D0D0D0" diff --git a/themes/msquare-dark.yaml b/themes/msquare-dark.yaml deleted file mode 100644 index 6fe4fbae..00000000 --- a/themes/msquare-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "MSquare Dark" -source: - marketplace_id: "MaranT.m2-theme" - version: "1.0.1" - installs: 1 - rating: 0 - ratings: 0 - author: "MaranT" - repo: "https://github.com/maran-t/m2-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MaranT.m2-theme" -colors: - bg: "#0D1117" - fg: "#E6EDF3" - black: "#0D1117" - red: "#F47067" - green: "#8DDB8C" - yellow: "#F69D50" - blue: "#6CB6FF" - magenta: "#DCBDFB" - cyan: "#76E3EA" - white: "#E6EDF3" - brightBlack: "#484F58" - brightRed: "#FF7A72" - brightGreen: "#A8E6A1" - brightYellow: "#FFD470" - brightBlue: "#A5D6FF" - brightMagenta: "#EACFFF" - brightCyan: "#A5F0F5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 258 - pair: null - contrast: - fg: 95 - black: 0 - red: 47.3 - green: 73.4 - yellow: 60.2 - blue: 59.7 - magenta: 73.6 - cyan: 79.3 - white: 95 - brightBlack: 13.1 - brightRed: 52.3 - brightGreen: 81.5 - brightYellow: 83.3 - brightBlue: 77.9 - brightMagenta: 83 - brightCyan: 89.5 - brightWhite: 107.4 diff --git a/themes/mt-doom-theme.yaml b/themes/mt-doom-theme.yaml deleted file mode 100644 index 0bbf3ae7..00000000 --- a/themes/mt-doom-theme.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "mt-doom-theme" -source: - marketplace_id: "nathanhedemark.greyandorange" - version: "2.1.9" - installs: 488 - author: "nathanhedemark" - repo: "https://github.com/NathanH2111/Mt.-Doom-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=nathanhedemark.greyandorange" -colors: - bg: "#060707" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#F8F8F8" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.4 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.7 - cyan: 48.5 - white: 103.2 - brightBlack: 23 - brightRed: 39.5 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 40.9 - brightMagenta: 46.3 - brightCyan: 56.3 - brightWhite: 91 diff --git a/themes/mud-contrast.yaml b/themes/mud-contrast.yaml deleted file mode 100644 index 122c85a7..00000000 --- a/themes/mud-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mud-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0D0B0B" - fg: "#FFFFFF" - black: "#1B1717" - red: "#BA0E2E" - green: "#F2C12F" - yellow: "#F55239" - blue: "#8EE350" - magenta: "#F8553C" - cyan: "#EABA2C" - white: "#FFFFFF" - brightBlack: "#443A3A" - brightRed: "#F03E5F" - brightGreen: "#F8DE8F" - brightYellow: "#FAA79A" - brightBlue: "#C7F1A8" - brightMagenta: "#FCAB9E" - brightCyan: "#F3D889" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.7 - black: 0 - red: 21.3 - green: 72.8 - yellow: 41 - blue: 76.5 - magenta: 42.2 - cyan: 68.7 - white: 107.7 - brightBlack: 0 - brightRed: 37.6 - brightGreen: 87.5 - brightYellow: 66.3 - brightBlue: 90.5 - brightMagenta: 68.2 - brightCyan: 83.9 - brightWhite: 107.7 diff --git a/themes/mud-light.yaml b/themes/mud-light.yaml deleted file mode 100644 index 88654199..00000000 --- a/themes/mud-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mud-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#EDE8E8" - fg: "#555555" - black: "#F8F6F6" - red: "#BA0E2E" - green: "#C4A446" - yellow: "#D16F60" - blue: "#88AD6E" - magenta: "#D16F60" - cyan: "#C4A446" - white: "#626262" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#DDCA93" - brightYellow: "#E8B7AF" - brightBlue: "#BDD2AF" - brightMagenta: "#E8B7AF" - brightCyan: "#DDCA93" - brightWhite: "#888888" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 73 - black: 0 - red: 67.4 - green: 34.2 - yellow: 48.3 - blue: 36.8 - magenta: 48.3 - cyan: 34.2 - white: 67.5 - brightBlack: 12.2 - brightRed: 50.9 - brightGreen: 14.8 - brightYellow: 19.7 - brightBlue: 14.6 - brightMagenta: 19.7 - brightCyan: 14.8 - brightWhite: 50.1 diff --git a/themes/mud-theme.yaml b/themes/mud-theme.yaml index fa7e45c7..20dcf0e5 100644 --- a/themes/mud-theme.yaml +++ b/themes/mud-theme.yaml @@ -8,6 +8,7 @@ source: author: "DarkMannn" repo: "https://github.com/DarkMannn/mud-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.mud-theme" + formats: null colors: bg: "#191919" fg: "#DBDBDB" diff --git a/themes/mud.yaml b/themes/mud.yaml deleted file mode 100644 index 4bfd0f8f..00000000 --- a/themes/mud.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "mud" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#403635" - fg: "#FFFFFF" - black: "#4E4241" - red: "#BA0E2E" - green: "#E9C865" - yellow: "#FF9787" - blue: "#B5DB99" - magenta: "#FF9787" - cyan: "#E9C865" - white: "#FFFFFF" - brightBlack: "#786563" - brightRed: "#F03E5F" - brightGreen: "#F6E8BE" - brightYellow: "#FFEFED" - brightBlue: "#ECF6E4" - brightMagenta: "#FFEFED" - brightCyan: "#F6E8BE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 25 - pair: null - contrast: - fg: 100.5 - black: 0 - red: 14.1 - green: 67.7 - yellow: 54.2 - blue: 70.5 - magenta: 54.2 - cyan: 67.7 - white: 100.5 - brightBlack: 17.1 - brightRed: 30.4 - brightGreen: 85.8 - brightYellow: 92.2 - brightBlue: 92.4 - brightMagenta: 92.2 - brightCyan: 85.8 - brightWhite: 100.5 diff --git a/themes/murasaki-theme.yaml b/themes/murasaki-theme.yaml index eaf76b47..dbeede28 100644 --- a/themes/murasaki-theme.yaml +++ b/themes/murasaki-theme.yaml @@ -8,6 +8,7 @@ source: author: "WesleyBarbosa" repo: "https://github.com/Wesley216/murasaki-theme" url: "https://marketplace.visualstudio.com/items?itemName=WesleyBarbosa.murasaki-theme" + formats: null colors: bg: "#15141B" fg: "#EDECEE" diff --git a/themes/muromachi.yaml b/themes/muromachi.yaml deleted file mode 100644 index a7ad4a7d..00000000 --- a/themes/muromachi.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Muromachi" -source: - marketplace_id: "Hoodnight.muromachi-deluxe" - version: "1.0.8" - installs: 861 - rating: 5 - ratings: 1 - author: "Charlie Timlock" - repo: "https://github.com/ctimlock/muromachi" - url: "https://marketplace.visualstudio.com/items?itemName=Hoodnight.muromachi-deluxe" -colors: - bg: "#1D1E1F" - fg: "#F8F8F2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 101.2 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.6 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/murora-light-lite.yaml b/themes/murora-light-lite.yaml deleted file mode 100644 index d1ae8729..00000000 --- a/themes/murora-light-lite.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Murora Light Lite" -source: - marketplace_id: "MuhammadMwinchande.murora" - version: "0.1.0" - installs: 114 - rating: 4 - ratings: 1 - author: "Muhammad Mwinchande" - repo: "https://github.com/ammwinchande/murora" - url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMwinchande.murora" -colors: - bg: "#FFFFFF" - fg: "#222222" - black: "#333333" - red: "#E84135" - green: "#34A853" - yellow: "#FCBC05" - blue: "#4285F4" - magenta: "#EA4334" - cyan: "#4ADC6E" - white: "#222222" - brightBlack: "#555555" - brightRed: "#FF3E25" - brightGreen: "#4ADC6E" - brightYellow: "#FCDE00" - brightBlue: "#4FAFFF" - brightMagenta: "#EA4334" - brightCyan: "#4ADC6E" - brightWhite: "#222222" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.9 - black: 98.7 - red: 66 - green: 57 - yellow: 30.2 - blue: 62.8 - magenta: 65.3 - cyan: 32.6 - white: 102.9 - brightBlack: 85.9 - brightRed: 61.1 - brightGreen: 32.6 - brightYellow: 16.8 - brightBlue: 46.2 - brightMagenta: 65.3 - brightCyan: 32.6 - brightWhite: 102.9 diff --git a/themes/murtadapy-green.yaml b/themes/murtadapy-green.yaml index 054daffd..c90ccf88 100644 --- a/themes/murtadapy-green.yaml +++ b/themes/murtadapy-green.yaml @@ -8,6 +8,7 @@ source: author: "Maltarouti" repo: "https://github.com/murtadapy/colored-programmer" url: "https://marketplace.visualstudio.com/items?itemName=Maltarouti.colored-programmer" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/mushroomsynth.yaml b/themes/mushroomsynth.yaml index 1663cab5..ddd061ca 100644 --- a/themes/mushroomsynth.yaml +++ b/themes/mushroomsynth.yaml @@ -8,6 +8,7 @@ source: author: "TjasaZil" repo: "https://github.com/TjasaZil/mushroomsynth" url: "https://marketplace.visualstudio.com/items?itemName=TjasaZil.mushroomsynth" + formats: null colors: bg: "#182031" fg: "#DDD5FF" diff --git a/themes/muted-mirage.yaml b/themes/muted-mirage.yaml index 48395501..665cefcc 100644 --- a/themes/muted-mirage.yaml +++ b/themes/muted-mirage.yaml @@ -8,6 +8,7 @@ source: author: "Mouhany" repo: "https://github.com/mouhany/muted-mirage" url: "https://marketplace.visualstudio.com/items?itemName=mouhany.muted-mirage" + formats: null colors: bg: "#1B202C" fg: "#878889" diff --git a/themes/mutenight.yaml b/themes/mutenight.yaml index a6623c3d..1da68bfc 100644 --- a/themes/mutenight.yaml +++ b/themes/mutenight.yaml @@ -8,6 +8,7 @@ source: author: "sqwibDev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sqwibDev.mutenight" + formats: null colors: bg: "#000000" fg: "#BFC7D5" diff --git a/themes/mwone-dark.yaml b/themes/mwone-dark.yaml index dcc93318..30d6d44a 100644 --- a/themes/mwone-dark.yaml +++ b/themes/mwone-dark.yaml @@ -8,6 +8,7 @@ source: author: "Mwone" repo: "https://github.com/FabienLacorre/Mwone-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mwone.mwone-dark" + formats: null colors: bg: "#1B1F23" fg: "#FFFFFF" diff --git a/themes/my-custom-theme.yaml b/themes/my-custom-theme.yaml index e055cfbc..4377b2e8 100644 --- a/themes/my-custom-theme.yaml +++ b/themes/my-custom-theme.yaml @@ -8,6 +8,7 @@ source: author: "Daniel Duc" repo: "https://github.com/binhduc1211/daniel-yaruna-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" + formats: null colors: bg: "#2E3440" fg: "#E5E9F0" diff --git a/themes/my-dark-theme-refined-updated.yaml b/themes/my-dark-theme-refined-updated.yaml index f2191d15..29db7606 100644 --- a/themes/my-dark-theme-refined-updated.yaml +++ b/themes/my-dark-theme-refined-updated.yaml @@ -8,6 +8,7 @@ source: author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" + formats: null colors: bg: "#202D3A" fg: "#4FA158" diff --git a/themes/my-first-visual-studio-theme.yaml b/themes/my-first-visual-studio-theme.yaml deleted file mode 100644 index 55ef48f6..00000000 --- a/themes/my-first-visual-studio-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "My First Visual Studio Theme" -source: - marketplace_id: "Bulbul.bulbul-theme" - version: "0.0.1" - installs: 40 - rating: 0 - ratings: 0 - author: "Bulbul" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Bulbul.bulbul-theme" -colors: - bg: "#323131" - fg: "#C7C7C7" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#6FFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 67.3 - black: 0 - red: 22.3 - green: 48.6 - yellow: 81.2 - blue: 23 - magenta: 25.4 - cyan: 43.2 - white: 89 - brightBlack: 17.6 - brightRed: 34.2 - brightGreen: 59.1 - brightYellow: 91.2 - brightBlue: 35.6 - brightMagenta: 41 - brightCyan: 51 - brightWhite: 85.6 diff --git a/themes/my-hero-academia-deku-plus-ultra.yaml b/themes/my-hero-academia-deku-plus-ultra.yaml deleted file mode 100644 index f54779d4..00000000 --- a/themes/my-hero-academia-deku-plus-ultra.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "My Hero Academia (Deku Plus Ultra)" -source: - marketplace_id: "LunaCode.anime-theme" - version: "0.0.3" - installs: 377 - rating: 5 - ratings: 3 - author: "LunaCode" - repo: "https://github.com/BuildXO/anime-theme-pack" - url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" -colors: - bg: "#0A1E1A" - fg: "#E0F7E9" - black: "#1F3D36" - red: "#E53935" - green: "#4CAF50" - yellow: "#FFC107" - blue: "#42A5F5" - magenta: "#AB47BC" - cyan: "#26C6DA" - white: "#CFE8DC" - brightBlack: "#5A7A6F" - brightRed: "#FF5252" - brightGreen: "#69F0AE" - brightYellow: "#FFD740" - brightBlue: "#448AFF" - brightMagenta: "#E040FB" - brightCyan: "#18FFFF" - brightWhite: "#F5FFF8" -meta: - mode: "dark" - accent: "pink" - hue: 179 - pair: null - contrast: - fg: 97.5 - black: 0 - red: 32.5 - green: 47.1 - yellow: 73.7 - blue: 49.3 - magenta: 27.5 - cyan: 61.1 - white: 87.8 - brightBlack: 27.5 - brightRed: 42.4 - brightGreen: 81.6 - brightYellow: 83 - brightBlue: 40.1 - brightMagenta: 40.8 - brightCyan: 90.8 - brightWhite: 104.7 diff --git a/themes/my-light-theme-blue-dark.yaml b/themes/my-light-theme-blue-dark.yaml index 36a50a43..2f3bdec8 100644 --- a/themes/my-light-theme-blue-dark.yaml +++ b/themes/my-light-theme-blue-dark.yaml @@ -8,6 +8,7 @@ source: author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" + formats: null colors: bg: "#2A4056" fg: "#E6FFA0" diff --git a/themes/my-light-theme-blue.yaml b/themes/my-light-theme-blue.yaml index 175c747c..2b8ab386 100644 --- a/themes/my-light-theme-blue.yaml +++ b/themes/my-light-theme-blue.yaml @@ -8,6 +8,7 @@ source: author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" + formats: null colors: bg: "#5F8590" fg: "#D4D4D4" diff --git a/themes/my-light-theme-light-green-fork-updated.yaml b/themes/my-light-theme-light-green-fork-updated.yaml index 85f5cfe6..bdb58533 100644 --- a/themes/my-light-theme-light-green-fork-updated.yaml +++ b/themes/my-light-theme-light-green-fork-updated.yaml @@ -8,6 +8,7 @@ source: author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" + formats: null colors: bg: "#729F94" fg: "#D4D4D4" diff --git a/themes/my-light-theme-light-green-paperblue-fork.yaml b/themes/my-light-theme-light-green-paperblue-fork.yaml index 97452831..2d5c9831 100644 --- a/themes/my-light-theme-light-green-paperblue-fork.yaml +++ b/themes/my-light-theme-light-green-paperblue-fork.yaml @@ -8,6 +8,7 @@ source: author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" + formats: null colors: bg: "#F2F2F2" fg: "#5761B4" diff --git a/themes/my-light-theme-light-green-papermint-updated.yaml b/themes/my-light-theme-light-green-papermint-updated.yaml index 8f1f84ac..c2f73602 100644 --- a/themes/my-light-theme-light-green-papermint-updated.yaml +++ b/themes/my-light-theme-light-green-papermint-updated.yaml @@ -8,6 +8,7 @@ source: author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" + formats: null colors: bg: "#F2F2F2" fg: "#5761B4" diff --git a/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml b/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml index 6dded5cb..6e5af1f8 100644 --- a/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml +++ b/themes/my-light-theme-mint-sand-updated-fork-bluesand.yaml @@ -8,6 +8,7 @@ source: author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" + formats: null colors: bg: "#EEE6D6" fg: "#000000" diff --git a/themes/my-light-theme-mint-sand-updated.yaml b/themes/my-light-theme-mint-sand-updated.yaml index 579d9f12..ea9a8855 100644 --- a/themes/my-light-theme-mint-sand-updated.yaml +++ b/themes/my-light-theme-mint-sand-updated.yaml @@ -8,6 +8,7 @@ source: author: "XDxppyx" repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" + formats: null colors: bg: "#EEE6D6" fg: "#000000" diff --git a/themes/my-light-theme.yaml b/themes/my-light-theme.yaml index 708ee2ea..2f364bbb 100644 --- a/themes/my-light-theme.yaml +++ b/themes/my-light-theme.yaml @@ -8,6 +8,7 @@ source: author: "Akilan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Akilan.akil" + formats: null colors: bg: "#FFFFFF" fg: "#333333" diff --git a/themes/my-monokai.yaml b/themes/my-monokai.yaml index 22d5344f..5bc6b24d 100644 --- a/themes/my-monokai.yaml +++ b/themes/my-monokai.yaml @@ -8,6 +8,7 @@ source: author: "vicobill" repo: "https://github.com/vicobll/my-monokai" url: "https://marketplace.visualstudio.com/items?itemName=vicobill.my-monokai" + formats: null colors: bg: "#262720" fg: "#979EAB" diff --git a/themes/my-ocean-theme.yaml b/themes/my-ocean-theme.yaml index 60fd6451..2a71a023 100644 --- a/themes/my-ocean-theme.yaml +++ b/themes/my-ocean-theme.yaml @@ -8,6 +8,7 @@ source: author: "Akilan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Akilan.akil" + formats: null colors: bg: "#0D1117" fg: "#C9D1D9" diff --git a/themes/my-oceanic.yaml b/themes/my-oceanic.yaml index 70dfccf3..e95afe1e 100644 --- a/themes/my-oceanic.yaml +++ b/themes/my-oceanic.yaml @@ -8,6 +8,7 @@ source: author: "ZAndy" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ZAndy.my-oceanic-theme" + formats: null colors: bg: "#263238" fg: "#C3CEE3" diff --git a/themes/my-theme.yaml b/themes/my-theme.yaml index c6e8a1d0..5d15cb55 100644 --- a/themes/my-theme.yaml +++ b/themes/my-theme.yaml @@ -8,6 +8,7 @@ source: author: "yanchenliu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=yanchenliu.lyc-theme" + formats: null colors: bg: "#223443" fg: "#F8CA4F" diff --git a/themes/my-zu.yaml b/themes/my-zu.yaml index e181279c..9b8dabb7 100644 --- a/themes/my-zu.yaml +++ b/themes/my-zu.yaml @@ -8,6 +8,7 @@ source: author: "Myuzu" repo: "https://github.com/EduardBOP/Myuzu-Theme" url: "https://marketplace.visualstudio.com/items?itemName=myuzu-eop.myuzu" + formats: null colors: bg: "#2A2626" fg: "#E0D4C0" diff --git a/themes/mycode-dark.yaml b/themes/mycode-dark.yaml index 2dddf1e9..971d944b 100644 --- a/themes/mycode-dark.yaml +++ b/themes/mycode-dark.yaml @@ -8,6 +8,7 @@ source: author: "KorotkovVitaliy" repo: "https://github.com/korotkovv/mycode-dark" url: "https://marketplace.visualstudio.com/items?itemName=KorotkovVitaliy.mycode-dark" + formats: null colors: bg: "#171717" fg: "#D4D4D4" diff --git a/themes/mygo.yaml b/themes/mygo.yaml index 962a8231..9abe8c35 100644 --- a/themes/mygo.yaml +++ b/themes/mygo.yaml @@ -8,6 +8,7 @@ source: author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-roselia-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" + formats: null colors: bg: "#1E293B" fg: "#93C5FD" diff --git a/themes/mynthra.yaml b/themes/mynthra.yaml index 499a4290..99fd3a0f 100644 --- a/themes/mynthra.yaml +++ b/themes/mynthra.yaml @@ -8,6 +8,7 @@ source: author: "Mynthra" repo: "https://github.com/hamzakargin/Mynthra" url: "https://marketplace.visualstudio.com/items?itemName=Mynthra.mynthra-theme" + formats: null colors: bg: "#1E1E2E" fg: "#CDD6F4" diff --git a/themes/myoptic-v2.yaml b/themes/myoptic-v2.yaml index a2247c8f..a14b4b5a 100644 --- a/themes/myoptic-v2.yaml +++ b/themes/myoptic-v2.yaml @@ -8,6 +8,7 @@ source: author: "doitalldev" repo: "https://github.com/doitalldev/myoptic-Theme" url: "https://marketplace.visualstudio.com/items?itemName=doitalldev.myoptic-Theme-color-theme" + formats: null colors: bg: "#FFFFFF" fg: "#222222" diff --git a/themes/myoptic.yaml b/themes/myoptic.yaml index 260583e6..4137d5e7 100644 --- a/themes/myoptic.yaml +++ b/themes/myoptic.yaml @@ -8,6 +8,7 @@ source: author: "refactor_this" repo: "https://github.com/refactor-this/myoptic-Theme" url: "https://marketplace.visualstudio.com/items?itemName=refactorthis.myoptic" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/myrteal.yaml b/themes/myrteal.yaml index e8c89b06..d80dfcfd 100644 --- a/themes/myrteal.yaml +++ b/themes/myrteal.yaml @@ -8,6 +8,7 @@ source: author: "enes" repo: "https://github.com/enesozturk/myrteal" url: "https://marketplace.visualstudio.com/items?itemName=enesozturk.myrteal" + formats: null colors: bg: "#171717" fg: "#A1A1A1" diff --git a/themes/mystic-moonshadow.yaml b/themes/mystic-moonshadow.yaml index 54acf3f2..703b8a2c 100644 --- a/themes/mystic-moonshadow.yaml +++ b/themes/mystic-moonshadow.yaml @@ -8,6 +8,7 @@ source: author: "TechArtem" repo: "https://github.com/Rabbitarts/mystic-moonshadow-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=TechArtem.mystic-moonshadow" + formats: null colors: bg: "#1A2035" fg: "#8795A3" diff --git a/themes/mystic.yaml b/themes/mystic.yaml index 37a54f7f..03f48592 100644 --- a/themes/mystic.yaml +++ b/themes/mystic.yaml @@ -8,6 +8,7 @@ source: author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null colors: bg: "#1A1A1A" fg: "#C2C2C2" diff --git a/themes/mystico-c64-pepto-ntsc-sony.yaml b/themes/mystico-c64-pepto-ntsc-sony.yaml index 7b35fa4e..18e27bcf 100644 --- a/themes/mystico-c64-pepto-ntsc-sony.yaml +++ b/themes/mystico-c64-pepto-ntsc-sony.yaml @@ -8,6 +8,7 @@ source: author: "Chibantichic" repo: "https://github.com/chibanti/mystico-c64-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-c64" + formats: null colors: bg: "#212E78" fg: "#959FD0" diff --git a/themes/mystico-c64-pepto-pal.yaml b/themes/mystico-c64-pepto-pal.yaml index 814e24ca..1b19ba0b 100644 --- a/themes/mystico-c64-pepto-pal.yaml +++ b/themes/mystico-c64-pepto-pal.yaml @@ -8,6 +8,7 @@ source: author: "Chibantichic" repo: "https://github.com/chibanti/mystico-c64-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-c64" + formats: null colors: bg: "#352879" fg: "#8073BF" diff --git a/themes/mystico-c64.yaml b/themes/mystico-c64.yaml index e974d7e4..25cea9f3 100644 --- a/themes/mystico-c64.yaml +++ b/themes/mystico-c64.yaml @@ -8,6 +8,7 @@ source: author: "Chibantichic" repo: "https://github.com/chibanti/mystico-c64-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-c64" + formats: null colors: bg: "#3E31A2" fg: "#9085E0" diff --git a/themes/mystico-deep-purple.yaml b/themes/mystico-deep-purple.yaml index dad67e48..8e388227 100644 --- a/themes/mystico-deep-purple.yaml +++ b/themes/mystico-deep-purple.yaml @@ -1,4 +1,4 @@ -name: "Mystico - Deep purple" +name: "Mystico - Deep Purple" source: marketplace_id: "Chibantichic.mystico-deep-purple" version: "0.28.0" @@ -8,6 +8,7 @@ source: author: "Chibantichic" repo: "https://github.com/chibanti/mystico-deep-purple-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-deep-purple" + formats: null colors: bg: "#0B0324" fg: "#93BCF0" diff --git a/themes/mystico-forest-ocean.yaml b/themes/mystico-forest-ocean.yaml index 1936bba5..bae0a6b2 100644 --- a/themes/mystico-forest-ocean.yaml +++ b/themes/mystico-forest-ocean.yaml @@ -8,6 +8,7 @@ source: author: "Chibantichic" repo: "https://github.com/chibanti/mystico-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico" + formats: null colors: bg: "#011324" fg: "#D4D4D4" diff --git a/themes/mystico-mint.yaml b/themes/mystico-mint.yaml index b0c53420..0071c42c 100644 --- a/themes/mystico-mint.yaml +++ b/themes/mystico-mint.yaml @@ -1,4 +1,4 @@ -name: "Mystico - Mint" +name: "Mystico - mint" source: marketplace_id: "Chibantichic.mystico-mint" version: "0.8.0" @@ -8,6 +8,7 @@ source: author: "Chibantichic" repo: "https://github.com/chibanti/mystico-mint-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-mint" + formats: null colors: bg: "#060808" fg: "#F0F2F5" diff --git a/themes/mystico-plum.yaml b/themes/mystico-plum.yaml index 8203a46c..9fea0f40 100644 --- a/themes/mystico-plum.yaml +++ b/themes/mystico-plum.yaml @@ -8,6 +8,7 @@ source: author: "Chibantichic" repo: "https://github.com/chibanti/mystico-plum-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-plum" + formats: null colors: bg: "#0A0408" fg: "#F8EDF3" diff --git a/themes/mystico-purples.yaml b/themes/mystico-purples.yaml index 839822c0..d85af4b6 100644 --- a/themes/mystico-purples.yaml +++ b/themes/mystico-purples.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Chibantichic.mystico-purples" version: "0.9.0" installs: 213 + rating: 0 + ratings: 0 author: "Chibantichic" repo: "https://github.com/chibanti/mystico-purples-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Chibantichic.mystico-purples" + formats: null colors: bg: "#0D021D" fg: "#D4D4D4" diff --git a/themes/myvscode.yaml b/themes/myvscode.yaml deleted file mode 100644 index e69a67a2..00000000 --- a/themes/myvscode.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "MyVsCode" -source: - marketplace_id: "Parth.mycolortheme" - version: "0.0.8" - installs: 2370 - rating: 5 - ratings: 1 - author: "Parth" - repo: "https://github.com/parthpanchal123/MyCustomVsTheme" - url: "https://marketplace.visualstudio.com/items?itemName=Parth.mycolortheme" -colors: - bg: "#1B1E2A" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 274 - pair: null - contrast: - fg: 78.6 - black: 0 - red: 25.8 - green: 52.1 - yellow: 84.7 - blue: 26.5 - magenta: 28.9 - cyan: 46.7 - white: 89.1 - brightBlack: 21.1 - brightRed: 37.7 - brightGreen: 62.6 - brightYellow: 94.7 - brightBlue: 39.1 - brightMagenta: 44.5 - brightCyan: 54.5 - brightWhite: 89.1 diff --git a/themes/mz-light-grey-sharp.yaml b/themes/mz-light-grey-sharp.yaml index 719ddd22..043a0653 100644 --- a/themes/mz-light-grey-sharp.yaml +++ b/themes/mz-light-grey-sharp.yaml @@ -8,6 +8,7 @@ source: author: "Malaz-YI" repo: "https://github.com/Malaz-YI/MZ-Light-Grey-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Malaz-YI.mz-light-grey" + formats: null colors: bg: "#EEEEEE" fg: "#000000" diff --git a/themes/n-darktheme.yaml b/themes/n-darktheme.yaml index af8428c2..2cd25334 100644 --- a/themes/n-darktheme.yaml +++ b/themes/n-darktheme.yaml @@ -8,6 +8,7 @@ source: author: "Akakø" repo: "https://github.com/Akako0/N-darkTheme" url: "https://marketplace.visualstudio.com/items?itemName=Akako.n-darktheme" + formats: null colors: bg: "#171722" fg: "#EEF0FF" diff --git a/themes/n0m4d.yaml b/themes/n0m4d.yaml index 9af194d0..db42e0da 100644 --- a/themes/n0m4d.yaml +++ b/themes/n0m4d.yaml @@ -8,6 +8,7 @@ source: author: "iamnahid" repo: "https://github.com/iamnahid/VS-themes" url: "https://marketplace.visualstudio.com/items?itemName=iamnahid.n0m4D" + formats: null colors: bg: "#1C1B22" fg: "#E6E6E6" diff --git a/themes/n7-lilac.yaml b/themes/n7-lilac.yaml index a711e594..5aa55ba5 100644 --- a/themes/n7-lilac.yaml +++ b/themes/n7-lilac.yaml @@ -8,6 +8,7 @@ source: author: "N7n" repo: "https://github.com/NSHoffman/N7-Themes" url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" + formats: null colors: bg: "#101316" fg: "#AFB7BF" diff --git a/themes/n7-maya.yaml b/themes/n7-maya.yaml index 9cd642d9..35037463 100644 --- a/themes/n7-maya.yaml +++ b/themes/n7-maya.yaml @@ -8,6 +8,7 @@ source: author: "N7n" repo: "https://github.com/NSHoffman/N7-Themes" url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" + formats: null colors: bg: "#101316" fg: "#AFB7BF" diff --git a/themes/n7-night-vision.yaml b/themes/n7-night-vision.yaml index c01075e1..24d8e38e 100644 --- a/themes/n7-night-vision.yaml +++ b/themes/n7-night-vision.yaml @@ -8,6 +8,7 @@ source: author: "N7n" repo: "https://github.com/NSHoffman/N7-Themes" url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" + formats: null colors: bg: "#0D0F12" fg: "#AFB7BF" diff --git a/themes/n7-purple-green.yaml b/themes/n7-purple-green.yaml index 1ca099bf..b9f716ec 100644 --- a/themes/n7-purple-green.yaml +++ b/themes/n7-purple-green.yaml @@ -8,6 +8,7 @@ source: author: "N7n" repo: "https://github.com/NSHoffman/N7-Themes" url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" + formats: null colors: bg: "#101316" fg: "#AFB7BF" diff --git a/themes/n7-red-flare.yaml b/themes/n7-red-flare.yaml index 415b20de..a4a5f6e8 100644 --- a/themes/n7-red-flare.yaml +++ b/themes/n7-red-flare.yaml @@ -8,6 +8,7 @@ source: author: "N7n" repo: "https://github.com/NSHoffman/N7-Themes" url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" + formats: null colors: bg: "#101316" fg: "#AFB7BF" diff --git a/themes/n7-soft-pink.yaml b/themes/n7-soft-pink.yaml index 977c86aa..6c66e2a9 100644 --- a/themes/n7-soft-pink.yaml +++ b/themes/n7-soft-pink.yaml @@ -8,6 +8,7 @@ source: author: "N7n" repo: "https://github.com/NSHoffman/N7-Themes" url: "https://marketplace.visualstudio.com/items?itemName=N7n.n7-vscode-themes" + formats: null colors: bg: "#0D0F12" fg: "#AFB7BF" diff --git a/themes/nachop-dark.yaml b/themes/nachop-dark.yaml index f872485b..65181369 100644 --- a/themes/nachop-dark.yaml +++ b/themes/nachop-dark.yaml @@ -8,6 +8,7 @@ source: author: "Nachop Peralta" repo: "https://github.com/nachop51/nachop-theme" url: "https://marketplace.visualstudio.com/items?itemName=nachop51.nachop-theme" + formats: null colors: bg: "#191C21" fg: "#DCDFEB" diff --git a/themes/nachop-light-bordered.yaml b/themes/nachop-light-bordered.yaml index 466e00b3..b910d33f 100644 --- a/themes/nachop-light-bordered.yaml +++ b/themes/nachop-light-bordered.yaml @@ -8,6 +8,7 @@ source: author: "Nachop Peralta" repo: "https://github.com/nachop51/nachop-theme" url: "https://marketplace.visualstudio.com/items?itemName=nachop51.nachop-theme" + formats: null colors: bg: "#F8F4FA" fg: "#5C6166" diff --git a/themes/nachop-light.yaml b/themes/nachop-light.yaml index 59fc49e5..23bf767c 100644 --- a/themes/nachop-light.yaml +++ b/themes/nachop-light.yaml @@ -8,6 +8,7 @@ source: author: "Nachop Peralta" repo: "https://github.com/nachop51/nachop-theme" url: "https://marketplace.visualstudio.com/items?itemName=nachop51.nachop-theme" + formats: null colors: bg: "#F5F3F5" fg: "#5C6166" diff --git a/themes/nada-theme.yaml b/themes/nada-theme.yaml index 5d58e13d..50c63637 100644 --- a/themes/nada-theme.yaml +++ b/themes/nada-theme.yaml @@ -8,6 +8,7 @@ source: author: "Adan Perez" repo: "https://github.com/adanperez/nada-theme" url: "https://marketplace.visualstudio.com/items?itemName=nada.nada" + formats: null colors: bg: "#212733" fg: "#D9D7CE" diff --git a/themes/nairobi-dark.yaml b/themes/nairobi-dark.yaml deleted file mode 100644 index acd78abe..00000000 --- a/themes/nairobi-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nairobi-dark" -source: - marketplace_id: "AmaniJ.nairobi-dark" - version: "0.0.1" - installs: 390 - rating: 5 - ratings: 1 - author: "Amani. J" - repo: "https://github.com/amani-joseph/Nairobi-dark-VS-Code-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=AmaniJ.nairobi-dark" -colors: - bg: "#030D22" - fg: "#4AC9B8" - black: "#3A1B75" - red: "#EE1682" - green: "#06AD00" - yellow: "#FFD400" - blue: "#3787D6" - magenta: "#EA00D9" - cyan: "#0AB2FA" - white: "#F2F8FF" - brightBlack: "#5C6D75" - brightRed: "#FF2E97" - brightGreen: "#3DD69C" - brightYellow: "#FFD400" - brightBlue: "#5994CE" - brightMagenta: "#EA00D9" - brightCyan: "#4BC5FA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 260 - pair: null - contrast: - fg: 62.8 - black: 0 - red: 35.1 - green: 45.5 - yellow: 82.6 - blue: 36.6 - magenta: 38.3 - cyan: 55.1 - white: 102.4 - brightBlack: 24.5 - brightRed: 41.2 - brightGreen: 67.5 - brightYellow: 82.6 - brightBlue: 42.2 - brightMagenta: 38.3 - brightCyan: 64.4 - brightWhite: 107.5 diff --git a/themes/nanami-madobe-theme.yaml b/themes/nanami-madobe-theme.yaml index 64a72d12..41576304 100644 --- a/themes/nanami-madobe-theme.yaml +++ b/themes/nanami-madobe-theme.yaml @@ -1,13 +1,14 @@ -name: "Nanami Madobe Theme" +name: "nanami-madobe-theme" source: marketplace_id: "tyvy.nanami-madobe-theme" version: "2.0.0" - installs: 191 + installs: 192 rating: 5 ratings: 1 author: "tyvy" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tyvy.nanami-madobe-theme" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/nanowise.yaml b/themes/nanowise.yaml index ec06ba48..0136b4bf 100644 --- a/themes/nanowise.yaml +++ b/themes/nanowise.yaml @@ -8,6 +8,7 @@ source: author: "nanowise" repo: "https://github.com/istevkovski/nanowise-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nanowise.nanowise" + formats: null colors: bg: "#FAFBFC" fg: "#565869" diff --git a/themes/naps-dusk-gold.yaml b/themes/naps-dusk-gold.yaml index 27a8ce52..0927ce43 100644 --- a/themes/naps-dusk-gold.yaml +++ b/themes/naps-dusk-gold.yaml @@ -6,6 +6,7 @@ source: author: "kimmojae" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kimmojae.naps-theme" + formats: null colors: bg: "#1E2629" fg: "#C5C8C6" diff --git a/themes/narasimha-fearless-dark-theme.yaml b/themes/narasimha-fearless-dark-theme.yaml index 3a951226..5f369e81 100644 --- a/themes/narasimha-fearless-dark-theme.yaml +++ b/themes/narasimha-fearless-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Bhoot Studio" repo: "https://github.com/DebkantaMondal/Bhoot-VS-Theme" url: "https://marketplace.visualstudio.com/items?itemName=BhootStudio.bhoot-theme" + formats: null colors: bg: "#0A0A0A" fg: "#F8F8F2" diff --git a/themes/narixius-one-dark.yaml b/themes/narixius-one-dark.yaml deleted file mode 100644 index 14e56096..00000000 --- a/themes/narixius-one-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Narixius One Dark" -source: - marketplace_id: "Narixius.narixius-vscode-theme" - version: "0.0.13" - installs: 121 - rating: 5 - ratings: 1 - author: "Narixius" - repo: "https://github.com/Narixius/narixius-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Narixius.narixius-vscode-theme" -colors: - bg: "#0F1419" - fg: "#BFBAB0" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: 249 - pair: null - contrast: - fg: 64.7 - black: 9.2 - red: 37 - green: 60.7 - yellow: 48.9 - blue: 50 - magenta: 39.4 - cyan: 52.8 - white: 83.4 - brightBlack: 15.8 - brightRed: 46.4 - brightGreen: 77.1 - brightYellow: 61.5 - brightBlue: 64.1 - brightMagenta: 50.6 - brightCyan: 68.1 - brightWhite: 91 diff --git a/themes/narunika.yaml b/themes/narunika.yaml index f5eca8d9..4f318577 100644 --- a/themes/narunika.yaml +++ b/themes/narunika.yaml @@ -2,12 +2,13 @@ name: "narunika" source: marketplace_id: "sandifa.narunika" version: "4.2.4" - installs: 103 + installs: 104 rating: 0 ratings: 0 author: "sandifa" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sandifa.narunika" + formats: null colors: bg: "#202231" fg: "#DEE0EF" diff --git a/themes/naruto-akatsuki.yaml b/themes/naruto-akatsuki.yaml deleted file mode 100644 index 0311c4ff..00000000 --- a/themes/naruto-akatsuki.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Akatsuki" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#0A0A0A" - fg: "#E8E8E8" - black: "#1A1A1A" - red: "#DC143C" - green: "#888888" - yellow: "#FF6B6B" - blue: "#B22222" - magenta: "#8B0000" - cyan: "#666666" - white: "#E8E8E8" - brightBlack: "#444444" - brightRed: "#FF4444" - brightGreen: "#AAAAAA" - brightYellow: "#FF8888" - brightBlue: "#FF6666" - brightMagenta: "#DC143C" - brightCyan: "#999999" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.8 - black: 0 - red: 29.3 - green: 38.5 - yellow: 49 - blue: 20.4 - magenta: 11.4 - cyan: 22.9 - white: 92.8 - brightBlack: 9.7 - brightRed: 41.5 - brightGreen: 56.1 - brightYellow: 57 - brightBlue: 47.8 - brightMagenta: 29.3 - brightCyan: 47 - brightWhite: 107.7 diff --git a/themes/naruto-hinata-hyuga-byakugan-vision.yaml b/themes/naruto-hinata-hyuga-byakugan-vision.yaml deleted file mode 100644 index d7817b74..00000000 --- a/themes/naruto-hinata-hyuga-byakugan-vision.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Hinata Hyuga - Byakugan Vision" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#2A1F35" - fg: "#F5E6FA" - black: "#1C1C1C" - red: "#FFB6C1" - green: "#D8BFD8" - yellow: "#FFF5EE" - blue: "#00BFFF" - magenta: "#DDA0DD" - cyan: "#87CEEB" - white: "#F8F8FF" - brightBlack: "#191970" - brightRed: "#FFC0CB" - brightGreen: "#E6E6FA" - brightYellow: "#FFFAF0" - brightBlue: "#87CEEB" - brightMagenta: "#E6E6FA" - brightCyan: "#00BFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "indigo" - hue: 307 - pair: null - contrast: - fg: 92 - black: 0 - red: 71.4 - green: 69.7 - yellow: 99.7 - blue: 58.7 - magenta: 59.3 - cyan: 68.4 - white: 100.9 - brightBlack: 0 - brightRed: 75.6 - brightGreen: 89.9 - brightYellow: 102.1 - brightBlue: 68.4 - brightMagenta: 89.9 - brightCyan: 58.7 - brightWhite: 105.2 diff --git a/themes/naruto-hokage-dawn.yaml b/themes/naruto-hokage-dawn.yaml deleted file mode 100644 index 4fd74960..00000000 --- a/themes/naruto-hokage-dawn.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Hokage Dawn" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#1A1A1A" - fg: "#FFFAF0" - black: "#1A1A1A" - red: "#E74C3C" - green: "#27AE60" - yellow: "#F39C12" - blue: "#5DADE2" - magenta: "#8E44AD" - cyan: "#17A2B8" - white: "#E8E8E8" - brightBlack: "#808080" - brightRed: "#E67E22" - brightGreen: "#4CAF50" - brightYellow: "#FFD700" - brightBlue: "#00A8E8" - brightMagenta: "#9C27B0" - brightCyan: "#00CED1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 103.5 - black: 0 - red: 35.8 - green: 46 - yellow: 58.1 - blue: 52.5 - magenta: 21.7 - cyan: 43.7 - white: 91.6 - brightBlack: 33.4 - brightRed: 46.4 - brightGreen: 47.2 - brightYellow: 82.9 - brightBlue: 48.8 - brightMagenta: 20.4 - brightCyan: 64.2 - brightWhite: 106.5 diff --git a/themes/naruto-hokage-orange.yaml b/themes/naruto-hokage-orange.yaml deleted file mode 100644 index 565cf38e..00000000 --- a/themes/naruto-hokage-orange.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto (Hokage Orange)" -source: - marketplace_id: "LunaCode.anime-theme" - version: "0.0.3" - installs: 377 - rating: 5 - ratings: 3 - author: "LunaCode" - repo: "https://github.com/BuildXO/anime-theme-pack" - url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" -colors: - bg: "#1A1612" - fg: "#F5E6D3" - black: "#3A3428" - red: "#DC143C" - green: "#32CD32" - yellow: "#FFD700" - blue: "#4169E1" - magenta: "#9370DB" - cyan: "#00CED1" - white: "#DDD5C7" - brightBlack: "#6B5F4F" - brightRed: "#FF6B6B" - brightGreen: "#7FFF00" - brightYellow: "#FFEC8B" - brightBlue: "#6495ED" - brightMagenta: "#BA55D3" - brightCyan: "#00FFFF" - brightWhite: "#FFF8DC" -meta: - mode: "dark" - accent: "green" - hue: 67 - pair: null - contrast: - fg: 92 - black: 0 - red: 28.5 - green: 60.4 - yellow: 83.3 - blue: 27.5 - magenta: 35.7 - cyan: 64.6 - white: 80.6 - brightBlack: 19.8 - brightRed: 48.1 - brightGreen: 88.7 - brightYellow: 94 - brightBlue: 44.7 - brightMagenta: 34.5 - brightCyan: 91.2 - brightWhite: 102 diff --git a/themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml b/themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml deleted file mode 100644 index 0c3a01a0..00000000 --- a/themes/naruto-itachi-uchiha-tsukuyomi-dimension.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Itachi Uchiha - Tsukuyomi Dimension" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#0A0505" - fg: "#E8D8D8" - black: "#0A0A0A" - red: "#DC143C" - green: "#8B0000" - yellow: "#B22222" - blue: "#4B0082" - magenta: "#8B008B" - cyan: "#6A0DAD" - white: "#D8D8D8" - brightBlack: "#3A2A2A" - brightRed: "#FF6347" - brightGreen: "#DC143C" - brightYellow: "#FF8888" - brightBlue: "#9370DB" - brightMagenta: "#DDA0DD" - brightCyan: "#D8BFD8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 19 - pair: null - contrast: - fg: 85.1 - black: 0 - red: 29.4 - green: 11.5 - yellow: 20.5 - blue: 0 - magenta: 15 - cyan: 12.7 - white: 82.9 - brightBlack: 0 - brightRed: 46.7 - brightGreen: 29.4 - brightYellow: 57.1 - brightBlue: 36.6 - brightMagenta: 61.9 - brightCyan: 72.4 - brightWhite: 107.8 diff --git a/themes/naruto-jiraiya-gallant-toad-sage.yaml b/themes/naruto-jiraiya-gallant-toad-sage.yaml deleted file mode 100644 index fad18afc..00000000 --- a/themes/naruto-jiraiya-gallant-toad-sage.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Jiraiya - Gallant Toad Sage" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#1A1408" - fg: "#F5F5DC" - black: "#1A1A1A" - red: "#DC143C" - green: "#228B22" - yellow: "#FFD700" - blue: "#4169E1" - magenta: "#FFB6C1" - cyan: "#32CD32" - white: "#F5F5DC" - brightBlack: "#4A4430" - brightRed: "#FF6347" - brightGreen: "#90EE90" - brightYellow: "#FFEA00" - brightBlue: "#5DADE2" - brightMagenta: "#FFD1DC" - brightCyan: "#7FFF00" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 84 - pair: null - contrast: - fg: 99.4 - black: 0 - red: 28.7 - green: 30.9 - yellow: 83.4 - blue: 27.7 - magenta: 73.3 - cyan: 60.5 - white: 99.4 - brightBlack: 9.1 - brightRed: 46 - brightGreen: 82.7 - brightYellow: 91.9 - brightBlue: 53 - brightMagenta: 85 - brightCyan: 88.8 - brightWhite: 107.1 diff --git a/themes/naruto-kakashi-copy-ninja.yaml b/themes/naruto-kakashi-copy-ninja.yaml deleted file mode 100644 index b39d30ab..00000000 --- a/themes/naruto-kakashi-copy-ninja.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Kakashi Copy Ninja" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#0F1214" - fg: "#C0C0C0" - black: "#1A1A1A" - red: "#DC143C" - green: "#A8A8A8" - yellow: "#C0C0C0" - blue: "#00BFFF" - magenta: "#4B0082" - cyan: "#1E90FF" - white: "#E0E0E0" - brightBlack: "#4A4A4A" - brightRed: "#FF6666" - brightGreen: "#C8C8C8" - brightYellow: "#E8E8E8" - brightBlue: "#40C8FF" - brightMagenta: "#6B20B2" - brightCyan: "#50B0FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 68.1 - black: 0 - red: 28.9 - green: 54.6 - yellow: 68.1 - blue: 60.9 - magenta: 0 - cyan: 42.2 - white: 87.3 - brightBlack: 11.4 - brightRed: 47.4 - brightGreen: 72.8 - brightYellow: 92.4 - brightBlue: 65.6 - brightMagenta: 13.6 - brightCyan: 55.8 - brightWhite: 107.3 diff --git a/themes/naruto-kurama-nine-tails.yaml b/themes/naruto-kurama-nine-tails.yaml deleted file mode 100644 index 58e6f69b..00000000 --- a/themes/naruto-kurama-nine-tails.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Kurama Nine-Tails" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#1A0A00" - fg: "#FFF5E6" - black: "#1A1A1A" - red: "#DC143C" - green: "#AA8860" - yellow: "#FFD700" - blue: "#FF8C00" - magenta: "#FF6666" - cyan: "#FFA500" - white: "#FFF5E6" - brightBlack: "#4A3020" - brightRed: "#FF4466" - brightGreen: "#CCAA88" - brightYellow: "#FFEA00" - brightBlue: "#FFAA44" - brightMagenta: "#FF8888" - brightCyan: "#FFCC66" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 62 - pair: null - contrast: - fg: 101.6 - black: 0 - red: 29.1 - green: 41.2 - yellow: 83.9 - blue: 56.3 - magenta: 47.5 - cyan: 64.3 - white: 101.6 - brightBlack: 0 - brightRed: 41.8 - brightGreen: 59.1 - brightYellow: 92.3 - brightBlue: 66.4 - brightMagenta: 56.7 - brightCyan: 79.9 - brightWhite: 107.5 diff --git a/themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml b/themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml deleted file mode 100644 index a2e5f2f8..00000000 --- a/themes/naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Kushina Uzumaki - Red Hot-Blooded Habanero" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#1A0505" - fg: "#FFF0E6" - black: "#1A0A0A" - red: "#DC143C" - green: "#FFD700" - yellow: "#FFA500" - blue: "#FF8C00" - magenta: "#FF6347" - cyan: "#FF4500" - white: "#FFF0E6" - brightBlack: "#5A3A3A" - brightRed: "#FF6347" - brightGreen: "#FFEA00" - brightYellow: "#FFD700" - brightBlue: "#FFA500" - brightMagenta: "#FF8C00" - brightCyan: "#FF4500" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 23 - pair: null - contrast: - fg: 99.4 - black: 0 - red: 29.2 - green: 83.9 - yellow: 64.4 - blue: 56.4 - magenta: 46.5 - cyan: 41.1 - white: 99.4 - brightBlack: 9.1 - brightRed: 46.5 - brightGreen: 92.4 - brightYellow: 83.9 - brightBlue: 64.4 - brightMagenta: 56.4 - brightCyan: 41.1 - brightWhite: 107.6 diff --git a/themes/naruto-might-guy-gate-of-death-madara-battle.yaml b/themes/naruto-might-guy-gate-of-death-madara-battle.yaml deleted file mode 100644 index 2e16af08..00000000 --- a/themes/naruto-might-guy-gate-of-death-madara-battle.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Might Guy - GATE OF DEATH MADARA BATTLE" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#1A0000" - fg: "#FFE4E1" - black: "#1A0000" - red: "#FF0000" - green: "#DC143C" - yellow: "#FF6347" - blue: "#000080" - magenta: "#8B0000" - cyan: "#B22222" - white: "#FFE4E1" - brightBlack: "#6A3020" - brightRed: "#FF6347" - brightGreen: "#FF4500" - brightYellow: "#FFA500" - brightBlue: "#4169E1" - brightMagenta: "#DC143C" - brightCyan: "#FF6347" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 29 - pair: null - contrast: - fg: 93.8 - black: 0 - red: 37.2 - green: 29.2 - yellow: 46.5 - blue: 0 - magenta: 11.3 - cyan: 20.2 - white: 93.8 - brightBlack: 8.9 - brightRed: 46.5 - brightGreen: 41.1 - brightYellow: 64.4 - brightBlue: 28.2 - brightMagenta: 29.2 - brightCyan: 46.5 - brightWhite: 107.6 diff --git a/themes/naruto-might-guy-gates-of-youth.yaml b/themes/naruto-might-guy-gates-of-youth.yaml deleted file mode 100644 index 28511a11..00000000 --- a/themes/naruto-might-guy-gates-of-youth.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Might Guy Gates of Youth" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#0A1A0A" - fg: "#F0FFF0" - black: "#1A1A1A" - red: "#DC143C" - green: "#00FF00" - yellow: "#FFD700" - blue: "#1E90FF" - magenta: "#FF4500" - cyan: "#32CD32" - white: "#F0FFF0" - brightBlack: "#3A5A3A" - brightRed: "#FF6666" - brightGreen: "#7FFF00" - brightYellow: "#FFEA00" - brightBlue: "#40C8FF" - brightMagenta: "#FF6347" - brightCyan: "#90EE90" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 144 - pair: null - contrast: - fg: 104.1 - black: 0 - red: 28.5 - green: 85.5 - yellow: 83.2 - blue: 41.7 - magenta: 40.4 - cyan: 60.4 - white: 104.1 - brightBlack: 14.2 - brightRed: 46.9 - brightGreen: 88.6 - brightYellow: 91.7 - brightBlue: 65.1 - brightMagenta: 45.8 - brightCyan: 82.5 - brightWhite: 106.9 diff --git a/themes/naruto-minato-namikaze-yellow-flash.yaml b/themes/naruto-minato-namikaze-yellow-flash.yaml deleted file mode 100644 index 6c72bec7..00000000 --- a/themes/naruto-minato-namikaze-yellow-flash.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Minato Namikaze - Yellow Flash" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#0A0F1A" - fg: "#F5F5DC" - black: "#1A1A1A" - red: "#DC143C" - green: "#32CD32" - yellow: "#FFD700" - blue: "#00BFFF" - magenta: "#FF8C00" - cyan: "#87CEEB" - white: "#F5F5DC" - brightBlack: "#4A5A6A" - brightRed: "#FF6666" - brightGreen: "#90EE90" - brightYellow: "#FFEA00" - brightBlue: "#40C8FF" - brightMagenta: "#FFA500" - brightCyan: "#B0E0E6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 265 - pair: null - contrast: - fg: 99.8 - black: 0 - red: 29.1 - green: 61 - yellow: 83.9 - blue: 61 - magenta: 56.3 - cyan: 70.8 - white: 99.8 - brightBlack: 17 - brightRed: 47.5 - brightGreen: 83.1 - brightYellow: 92.3 - brightBlue: 65.7 - brightMagenta: 64.3 - brightCyan: 82.2 - brightWhite: 107.5 diff --git a/themes/naruto-pain-nagato-rinnegan-god.yaml b/themes/naruto-pain-nagato-rinnegan-god.yaml deleted file mode 100644 index 931049cf..00000000 --- a/themes/naruto-pain-nagato-rinnegan-god.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Pain/Nagato - Rinnegan God" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#0F0F14" - fg: "#E8E8F0" - black: "#1C1C1C" - red: "#DC143C" - green: "#708090" - yellow: "#C0C0C0" - blue: "#6A0DAD" - magenta: "#9370DB" - cyan: "#8B008B" - white: "#F5F5DC" - brightBlack: "#36454F" - brightRed: "#FF6347" - brightGreen: "#90A0B0" - brightYellow: "#E8E8E8" - brightBlue: "#9370DB" - brightMagenta: "#BA55D3" - brightCyan: "#DA70D6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 92.9 - black: 0 - red: 29.1 - green: 33.5 - yellow: 68.2 - blue: 12.3 - magenta: 36.3 - cyan: 14.7 - white: 99.8 - brightBlack: 9.1 - brightRed: 46.4 - brightGreen: 49.4 - brightYellow: 92.5 - brightBlue: 36.3 - brightMagenta: 35.1 - brightCyan: 46.7 - brightWhite: 107.5 diff --git a/themes/naruto-sage-mode.yaml b/themes/naruto-sage-mode.yaml deleted file mode 100644 index a00620ff..00000000 --- a/themes/naruto-sage-mode.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Sage Mode" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#1A2410" - fg: "#F5F5DC" - black: "#1A1A1A" - red: "#8B6914" - green: "#3D6B1F" - yellow: "#F4C430" - blue: "#708090" - magenta: "#8B7355" - cyan: "#DAA520" - white: "#F5F5DC" - brightBlack: "#4A5A40" - brightRed: "#A67C2A" - brightGreen: "#5D8B2F" - brightYellow: "#FFD740" - brightBlue: "#90A8B8" - brightMagenta: "#B89365" - brightCyan: "#FFB730" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 130 - pair: null - contrast: - fg: 97.9 - black: 0 - red: 24.5 - green: 18.3 - yellow: 72.3 - blue: 31.6 - magenta: 28.3 - cyan: 56 - white: 97.9 - brightBlack: 13.9 - brightRed: 34.1 - brightGreen: 31.9 - brightYellow: 82.2 - brightBlue: 51 - brightMagenta: 45.1 - brightCyan: 69.1 - brightWhite: 105.6 diff --git a/themes/naruto-sakura-haruno-cherry-blossom-storm.yaml b/themes/naruto-sakura-haruno-cherry-blossom-storm.yaml deleted file mode 100644 index 802c74a8..00000000 --- a/themes/naruto-sakura-haruno-cherry-blossom-storm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Sakura Haruno - Cherry Blossom Storm" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#1A0F14" - fg: "#F0FFFF" - black: "#1C1C1C" - red: "#DC143C" - green: "#98FB98" - yellow: "#FFB7C5" - blue: "#90EE90" - magenta: "#9370DB" - cyan: "#00FA9A" - white: "#F0FFFF" - brightBlack: "#708090" - brightRed: "#B22222" - brightGreen: "#90EE90" - brightYellow: "#FF69B4" - brightBlue: "#00FA9A" - brightMagenta: "#8B008B" - brightCyan: "#98FB98" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 350 - pair: null - contrast: - fg: 105.2 - black: 0 - red: 28.9 - green: 90.3 - yellow: 74.1 - blue: 82.9 - magenta: 36.1 - cyan: 84.9 - white: 105.2 - brightBlack: 33.3 - brightRed: 19.9 - brightGreen: 82.9 - brightYellow: 50.5 - brightBlue: 84.9 - brightMagenta: 14.5 - brightCyan: 90.3 - brightWhite: 107.3 diff --git a/themes/naruto-sasuke-uchiha-sharingan.yaml b/themes/naruto-sasuke-uchiha-sharingan.yaml deleted file mode 100644 index 734e117b..00000000 --- a/themes/naruto-sasuke-uchiha-sharingan.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Sasuke Uchiha - Sharingan" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#0A0000" - fg: "#E8E8E8" - black: "#1A1A1A" - red: "#FF0066" - green: "#7A7A9A" - yellow: "#FFD700" - blue: "#4169E1" - magenta: "#8B00FF" - cyan: "#00CED1" - white: "#E8E8F0" - brightBlack: "#3A3A5A" - brightRed: "#FF3388" - brightGreen: "#9A9ABA" - brightYellow: "#FFEA00" - brightBlue: "#5A8AFF" - brightMagenta: "#9370DB" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 29 - pair: null - contrast: - fg: 92.9 - black: 0 - red: 38.5 - green: 33.2 - yellow: 84.2 - blue: 28.5 - magenta: 24.7 - cyan: 65.5 - white: 93.3 - brightBlack: 7.5 - brightRed: 41.4 - brightGreen: 49.1 - brightYellow: 92.7 - brightBlue: 42.5 - brightMagenta: 36.7 - brightCyan: 92.1 - brightWhite: 107.9 diff --git a/themes/naruto-shikamaru-nara-shadow-possession.yaml b/themes/naruto-shikamaru-nara-shadow-possession.yaml deleted file mode 100644 index 3ea9d1cd..00000000 --- a/themes/naruto-shikamaru-nara-shadow-possession.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Shikamaru Nara - Shadow Possession" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#0D0D0D" - fg: "#D0D0D0" - black: "#1A1A1A" - red: "#696969" - green: "#6B8E23" - yellow: "#8B9A6B" - blue: "#556B2F" - magenta: "#808080" - cyan: "#2F4F2F" - white: "#C0C0C0" - brightBlack: "#4A4A4A" - brightRed: "#A9A9A9" - brightGreen: "#9ACD32" - brightYellow: "#BDB76B" - brightBlue: "#6B8E23" - brightMagenta: "#A9A9A9" - brightCyan: "#556B2F" - brightWhite: "#E0E0E0" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 77.8 - black: 0 - red: 24.1 - green: 36 - yellow: 44.4 - blue: 21.9 - magenta: 34.5 - cyan: 10.9 - white: 68.4 - brightBlack: 11.7 - brightRed: 55.4 - brightGreen: 66.7 - brightYellow: 61.7 - brightBlue: 36 - brightMagenta: 55.4 - brightCyan: 21.9 - brightWhite: 87.6 diff --git a/themes/naruto-shinobi-night.yaml b/themes/naruto-shinobi-night.yaml deleted file mode 100644 index ce553ed2..00000000 --- a/themes/naruto-shinobi-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Naruto Shinobi Night" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#0D0D0D" - fg: "#F5F5DC" - black: "#0D0D0D" - red: "#CC0000" - green: "#4CAF50" - yellow: "#FFD700" - blue: "#4A90E2" - magenta: "#9C27B0" - cyan: "#00CED1" - white: "#E8E8E8" - brightBlack: "#6C6C6C" - brightRed: "#FF0000" - brightGreen: "#27AE60" - brightYellow: "#FFC107" - brightBlue: "#5DADE2" - brightMagenta: "#8E44AD" - brightCyan: "#17A2B8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99.9 - black: 0 - red: 24.9 - green: 48.3 - yellow: 84 - blue: 41.4 - magenta: 21.5 - cyan: 65.3 - white: 92.7 - brightBlack: 25.4 - brightRed: 37.3 - brightGreen: 47.1 - brightYellow: 74.9 - brightBlue: 53.6 - brightMagenta: 22.7 - brightCyan: 44.7 - brightWhite: 107.6 diff --git a/themes/natasha-theme.yaml b/themes/natasha-theme.yaml deleted file mode 100644 index af9f1e71..00000000 --- a/themes/natasha-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "natasha-theme" -source: - marketplace_id: "LucasAlmeida.natasha-tema" - version: "1.6.0" - installs: 1805 - rating: 5 - ratings: 1 - author: "Lucas Almeida" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=LucasAlmeida.natasha-tema" -colors: - bg: "#221A34" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 297 - pair: null - contrast: - fg: 105.9 - black: 0 - red: 25.8 - green: 52.1 - yellow: 84.7 - blue: 26.5 - magenta: 28.8 - cyan: 46.6 - white: 89.1 - brightBlack: 21.1 - brightRed: 37.6 - brightGreen: 62.6 - brightYellow: 94.7 - brightBlue: 39.1 - brightMagenta: 44.4 - brightCyan: 54.5 - brightWhite: 89.1 diff --git a/themes/natives-in-tech-theme.yaml b/themes/natives-in-tech-theme.yaml index a247c5f8..6c226f01 100644 --- a/themes/natives-in-tech-theme.yaml +++ b/themes/natives-in-tech-theme.yaml @@ -6,6 +6,7 @@ source: author: "Natives in Tech" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NativesinTech.natives-in-tech-vs-code-theme" + formats: null colors: bg: "#1E1E1E" fg: "#C2C2C2" diff --git a/themes/natto-theme-2.yaml b/themes/natto-theme-2.yaml index 77573941..3de65467 100644 --- a/themes/natto-theme-2.yaml +++ b/themes/natto-theme-2.yaml @@ -8,6 +8,7 @@ source: author: "nattohen" repo: null url: "https://marketplace.visualstudio.com/items?itemName=nattohen.NaTTo-Theme" + formats: null colors: bg: "#1F1F1F" fg: "#84FFE2" diff --git a/themes/natural-faded-dark.yaml b/themes/natural-faded-dark.yaml index f87c5142..896f059f 100644 --- a/themes/natural-faded-dark.yaml +++ b/themes/natural-faded-dark.yaml @@ -1,4 +1,4 @@ -name: "Natural Faded Dark" +name: "natural-faded-dark" source: marketplace_id: "null4bl3.natural-faded-dark" version: "0.1.3" @@ -8,6 +8,7 @@ source: author: "null4bl3" repo: "https://github.com/null4bl3/natural-faded-dark" url: "https://marketplace.visualstudio.com/items?itemName=null4bl3.natural-faded-dark" + formats: null colors: bg: "#171717" fg: "#F0F0F0" diff --git a/themes/natural-green-growth-harmony.yaml b/themes/natural-green-growth-harmony.yaml index b783e495..285402ea 100644 --- a/themes/natural-green-growth-harmony.yaml +++ b/themes/natural-green-growth-harmony.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#0A1A0A" fg: "#E8F5E9" diff --git a/themes/natural-green-light-growth-harmony.yaml b/themes/natural-green-light-growth-harmony.yaml index c9fb4a8b..8bf2b865 100644 --- a/themes/natural-green-light-growth-harmony.yaml +++ b/themes/natural-green-light-growth-harmony.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#F5FAF5" fg: "#0A1A0A" diff --git a/themes/nature-color-theme.yaml b/themes/nature-color-theme.yaml index bf510fc9..195a0303 100644 --- a/themes/nature-color-theme.yaml +++ b/themes/nature-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Sage Fennel" repo: "https://github.com/wavebeem/vscode-theme-unoduetre" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" + formats: null colors: bg: "#EAF6F2" fg: "#006B47" diff --git a/themes/nature-green-growth-harmony.yaml b/themes/nature-green-growth-harmony.yaml index 43afdaa1..1d9015a3 100644 --- a/themes/nature-green-growth-harmony.yaml +++ b/themes/nature-green-growth-harmony.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#0D1B0D" fg: "#E8F5E8" diff --git a/themes/nature-green-light-growth-harmony.yaml b/themes/nature-green-light-growth-harmony.yaml index cf180dec..dad47f59 100644 --- a/themes/nature-green-light-growth-harmony.yaml +++ b/themes/nature-green-light-growth-harmony.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#F5FAF5" fg: "#0D1B0D" diff --git a/themes/nature.yaml b/themes/nature.yaml index eb09a83d..f0f234bb 100644 --- a/themes/nature.yaml +++ b/themes/nature.yaml @@ -8,6 +8,7 @@ source: author: "Jonaqhan" repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" + formats: null colors: bg: "#182426" fg: "#5EC3FF" diff --git a/themes/nautilus.yaml b/themes/nautilus.yaml index e5ec5f48..12ad619c 100644 --- a/themes/nautilus.yaml +++ b/themes/nautilus.yaml @@ -8,6 +8,7 @@ source: author: "Sam Marxz" repo: "https://github.com/sammarxz/nautilus-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sammarxz.nautiulus-theme" + formats: null colors: bg: "#0A0B11" fg: "#B3B1AD" diff --git a/themes/naver.yaml b/themes/naver.yaml index ba7836df..c8ffa5cb 100644 --- a/themes/naver.yaml +++ b/themes/naver.yaml @@ -8,6 +8,7 @@ source: author: "Inticoy" repo: "https://github.com/inticoy/naver-theme" url: "https://marketplace.visualstudio.com/items?itemName=Inticoy.naver-theme" + formats: null colors: bg: "#FFFFFF" fg: "#666666" diff --git a/themes/navy-flat.yaml b/themes/navy-flat.yaml index cd1b04aa..6b0c6c97 100644 --- a/themes/navy-flat.yaml +++ b/themes/navy-flat.yaml @@ -8,6 +8,7 @@ source: author: "Willothy" repo: "https://github.com/willothy/navy-flat" url: "https://marketplace.visualstudio.com/items?itemName=Willothy.navy-flat" + formats: null colors: bg: "#141F34" fg: "#D9D9D9" diff --git a/themes/navy-nights-theme.yaml b/themes/navy-nights-theme.yaml deleted file mode 100644 index 2e8e5c66..00000000 --- a/themes/navy-nights-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "navy-nights-theme" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - rating: 5 - ratings: 3 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#030C1B" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 256 - pair: null - contrast: - fg: 80.2 - black: 0 - red: 27.4 - green: 53.7 - yellow: 86.4 - blue: 28.2 - magenta: 30.5 - cyan: 48.3 - white: 90.8 - brightBlack: 22.8 - brightRed: 39.3 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 90.8 diff --git a/themes/navy-theme.yaml b/themes/navy-theme.yaml index e7f7787c..5743c85d 100644 --- a/themes/navy-theme.yaml +++ b/themes/navy-theme.yaml @@ -8,6 +8,7 @@ source: author: "orS" repo: "https://github.com/orshemtov/navy-theme" url: "https://marketplace.visualstudio.com/items?itemName=orS.navytheme" + formats: null colors: bg: "#151924" fg: "#ABB2BF" diff --git a/themes/navy.yaml b/themes/navy.yaml index 73ef0d40..03543115 100644 --- a/themes/navy.yaml +++ b/themes/navy.yaml @@ -8,6 +8,7 @@ source: author: "Enzo Shiraishi" repo: "https://github.com/eshiraishi/navy-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=eshiraishi.navy-theme" + formats: null colors: bg: "#151A1F" fg: "#E6E6E6" diff --git a/themes/nb-monochrome-dark.yaml b/themes/nb-monochrome-dark.yaml deleted file mode 100644 index 9d168905..00000000 --- a/themes/nb-monochrome-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "nb-monochrome-dark" -source: - marketplace_id: "nicco.n234234" - version: "0.2.0" - installs: 416 - rating: 5 - ratings: 1 - author: "nicco" - repo: "https://github.com/nicco-b/n" - url: "https://marketplace.visualstudio.com/items?itemName=nicco.n234234" -colors: - bg: "#1D1D1B" - fg: "#EBEBEB" - black: "#1D1D1B" - red: "#E88388" - green: "#98C379" - yellow: "#EACB8D" - blue: "#71BBEF" - magenta: "#D290E4" - cyan: "#66C2CD" - white: "#B9BFCB" - brightBlack: "#313131" - brightRed: "#E88388" - brightGreen: "#A7CB8C" - brightYellow: "#E3CA7F" - brightBlue: "#72BEF3" - brightMagenta: "#D191E4" - brightCyan: "#64C2CD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 93.1 - black: 0 - red: 49.5 - green: 61.6 - yellow: 75.6 - blue: 59.9 - magenta: 53.7 - cyan: 60.5 - white: 66.2 - brightBlack: 0 - brightRed: 49.5 - brightGreen: 67.1 - brightYellow: 73.8 - brightBlue: 61.5 - brightMagenta: 53.9 - brightCyan: 60.4 - brightWhite: 106.2 diff --git a/themes/ncl5c.yaml b/themes/ncl5c.yaml index e6d9cb10..2488a936 100644 --- a/themes/ncl5c.yaml +++ b/themes/ncl5c.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "JohannesFreutel.ncl5c" version: "4.1.3" installs: 34 + rating: 0 + ratings: 0 author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.ncl5c" + formats: null colors: bg: "#0E0D13" fg: "#826962" diff --git a/themes/nebula-color-theme.yaml b/themes/nebula-color-theme.yaml deleted file mode 100644 index f0d70f74..00000000 --- a/themes/nebula-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nebula-color-theme" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#27273A" - fg: "#FCF6FF" - black: "#353551" - red: "#E34F8C" - green: "#97F36D" - yellow: "#F8C275" - blue: "#C7ADFB" - magenta: "#E752A1" - cyan: "#24E8D8" - white: "#FBD3E1" - brightBlack: "#919CB9" - brightRed: "#F36F98" - brightGreen: "#AFFA90" - brightYellow: "#FAFAA0" - brightBlue: "#74D6E9" - brightMagenta: "#F799C7" - brightCyan: "#8DF9F9" - brightWhite: "#D7D6DF" -meta: - mode: "dark" - accent: "red" - hue: 284 - pair: null - contrast: - fg: 99.6 - black: 0 - red: 35 - green: 82.2 - yellow: 71.7 - blue: 61.5 - magenta: 37.2 - cyan: 75.1 - white: 82.6 - brightBlack: 45.2 - brightRed: 45.1 - brightGreen: 88.5 - brightYellow: 97.7 - brightBlue: 69.8 - brightMagenta: 59.4 - brightCyan: 89.2 - brightWhite: 78.6 diff --git a/themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml b/themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml deleted file mode 100644 index 1a1fa653..00000000 --- a/themes/nebula-dark-vibrant-fabo-it-and-media-group.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nebula Dark Vibrant © Fabo IT and Media Group" -source: - marketplace_id: "Fabocode.nebula-dark-theme" - version: "1.0.0" - installs: 34 - rating: 5 - ratings: 1 - author: "Fabocode" - repo: "https://github.com/FaboCodeDev/nebula-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Fabocode.nebula-dark-theme" -colors: - bg: "#121212" - fg: "#F8F9FA" - black: "#121212" - red: "#FF6B6B" - green: "#51CF66" - yellow: "#FF922B" - blue: "#339AF0" - magenta: "#DA77F2" - cyan: "#20C997" - white: "#F8F9FA" - brightBlack: "#6C757D" - brightRed: "#FF6B6B" - brightGreen: "#51CF66" - brightYellow: "#FF922B" - brightBlue: "#339AF0" - brightMagenta: "#DA77F2" - brightCyan: "#20C997" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 103.2 - black: 0 - red: 48.5 - green: 63.3 - yellow: 58 - blue: 45.1 - magenta: 50 - cyan: 60.5 - white: 103.2 - brightBlack: 28.5 - brightRed: 48.5 - brightGreen: 63.3 - brightYellow: 58 - brightBlue: 45.1 - brightMagenta: 50 - brightCyan: 60.5 - brightWhite: 107.3 diff --git a/themes/nebula-nights.yaml b/themes/nebula-nights.yaml deleted file mode 100644 index 13cc8015..00000000 --- a/themes/nebula-nights.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nebula Nights" -source: - marketplace_id: "Tom-Fynes.nebula-nights-pastel" - version: "1.2.0" - installs: 724 - rating: 5 - ratings: 1 - author: "Tom-Fynes" - repo: "https://github.com/tom-fynes/nebula-nights" - url: "https://marketplace.visualstudio.com/items?itemName=Tom-Fynes.nebula-nights-pastel" -colors: - bg: "#404E5C" - fg: "#B7C3F3" - black: "#363E4A" - red: "#D05786" - green: "#94FBAB" - yellow: "#DD7596" - blue: "#B8E1FF" - magenta: "#BCB6FF" - cyan: "#A9FFF7" - white: "#B7C3F3" - brightBlack: "#363E4A" - brightRed: "#D05786" - brightGreen: "#94FBAB" - brightYellow: "#DD7596" - brightBlue: "#B8E1FF" - brightMagenta: "#BCB6FF" - brightCyan: "#A9FFF7" - brightWhite: "#B7C3F3" -meta: - mode: "dark" - accent: "red" - hue: 249 - pair: null - contrast: - fg: 57.3 - black: 0 - red: 21.9 - green: 77.1 - yellow: 31.8 - blue: 71.2 - magenta: 53.4 - cyan: 83.8 - white: 57.3 - brightBlack: 0 - brightRed: 21.9 - brightGreen: 77.1 - brightYellow: 31.8 - brightBlue: 71.2 - brightMagenta: 53.4 - brightCyan: 83.8 - brightWhite: 57.3 diff --git a/themes/nebula-pro-dark.yaml b/themes/nebula-pro-dark.yaml deleted file mode 100644 index b1645eb8..00000000 --- a/themes/nebula-pro-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nebula Pro Dark" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#1E1F29" - fg: "#F8F8F2" - black: "#1E1F29" - red: "#FF6188" - green: "#A9DC76" - yellow: "#FFD866" - blue: "#78DCE8" - magenta: "#AB9DF2" - cyan: "#78DCE8" - white: "#F8F8F2" - brightBlack: "#5A5D6E" - brightRed: "#FF6188" - brightGreen: "#A9DC76" - brightYellow: "#FFD866" - brightBlue: "#78DCE8" - brightMagenta: "#AB9DF2" - brightCyan: "#A9DC76" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: 280 - pair: null - contrast: - fg: 100.9 - black: 0 - red: 45.7 - green: 74.2 - yellow: 83.3 - blue: 74.4 - magenta: 53.2 - cyan: 74.4 - white: 100.9 - brightBlack: 17.5 - brightRed: 45.7 - brightGreen: 74.2 - brightYellow: 83.3 - brightBlue: 74.4 - brightMagenta: 53.2 - brightCyan: 74.2 - brightWhite: 100.9 diff --git a/themes/nebula-surge.yaml b/themes/nebula-surge.yaml index b08f4c51..8b1ada6c 100644 --- a/themes/nebula-surge.yaml +++ b/themes/nebula-surge.yaml @@ -8,6 +8,7 @@ source: author: "DefinitionGroup" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DefinitionGroup.nebula-surge" + formats: null colors: bg: "#000000" fg: "#80C0FF" diff --git a/themes/nebula-symphony-dark-pro.yaml b/themes/nebula-symphony-dark-pro.yaml index 501cd05c..82b03511 100644 --- a/themes/nebula-symphony-dark-pro.yaml +++ b/themes/nebula-symphony-dark-pro.yaml @@ -8,6 +8,7 @@ source: author: "Keevdev" repo: "https://github.com/keeevdev/nebula-symphony" url: "https://marketplace.visualstudio.com/items?itemName=Keevdev.nebula-symphony" + formats: null colors: bg: "#0A0B10" fg: "#D0D0E0" diff --git a/themes/nebula-symphony-dark.yaml b/themes/nebula-symphony-dark.yaml index 851b8be5..7b0f1d27 100644 --- a/themes/nebula-symphony-dark.yaml +++ b/themes/nebula-symphony-dark.yaml @@ -8,6 +8,7 @@ source: author: "Keevdev" repo: "https://github.com/keeevdev/nebula-symphony" url: "https://marketplace.visualstudio.com/items?itemName=Keevdev.nebula-symphony" + formats: null colors: bg: "#12121F" fg: "#D0D0E0" diff --git a/themes/nebula-symphony-light.yaml b/themes/nebula-symphony-light.yaml index 3d51a2f0..7dc32684 100644 --- a/themes/nebula-symphony-light.yaml +++ b/themes/nebula-symphony-light.yaml @@ -8,6 +8,7 @@ source: author: "Keevdev" repo: "https://github.com/keeevdev/nebula-symphony" url: "https://marketplace.visualstudio.com/items?itemName=Keevdev.nebula-symphony" + formats: null colors: bg: "#FFFFFF" fg: "#424242" diff --git a/themes/nebula.yaml b/themes/nebula.yaml index 6b2ca180..e7e006a9 100644 --- a/themes/nebula.yaml +++ b/themes/nebula.yaml @@ -1,17 +1,18 @@ name: "Nebula" source: - marketplace_id: "KrisSchultz.nova-theme" - version: "1.1.0" - installs: 85 + marketplace_id: "KaydenNolin.darknebula" + version: "0.0.1" + installs: 670 rating: 0 ratings: 0 - author: "Kris Schultz" - repo: "https://github.com/Krxtopher/vscode-theme-nova" - url: "https://marketplace.visualstudio.com/items?itemName=KrisSchultz.nova-theme" + author: "Nebula" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=KaydenNolin.darknebula" + formats: null colors: - bg: "#190E2A" - fg: "#FFFFFF" - black: "#3D3D3D" + bg: "#000000" + fg: "#C7C7C7" + black: "#000000" red: "#CD3131" green: "#0DBC79" yellow: "#E5E510" @@ -30,23 +31,23 @@ colors: meta: mode: "dark" accent: "pink" - hue: 299 + hue: null pair: null contrast: - fg: 107.1 + fg: 72.7 black: 0 - red: 26.9 - green: 53.2 - yellow: 85.8 - blue: 27.6 - magenta: 30 - cyan: 47.8 - white: 90.2 - brightBlack: 22.2 - brightRed: 38.8 - brightGreen: 63.7 - brightYellow: 95.8 - brightBlue: 40.2 - brightMagenta: 45.6 - brightCyan: 55.6 - brightWhite: 90.2 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/nebular-theme.yaml b/themes/nebular-theme.yaml index 152160ec..4416725f 100644 --- a/themes/nebular-theme.yaml +++ b/themes/nebular-theme.yaml @@ -8,6 +8,7 @@ source: author: "Obsilab" repo: "https://github.com/LucasPlacentino/nebular-vscode" url: "https://marketplace.visualstudio.com/items?itemName=obsilab.nebular" + formats: null colors: bg: "#1B1B1B" fg: "#D3CAD7" diff --git a/themes/nebularomantic.yaml b/themes/nebularomantic.yaml deleted file mode 100644 index 6d6d9190..00000000 --- a/themes/nebularomantic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nebularomantic" -source: - marketplace_id: "ElizaMuss.elizas-pride-themes" - version: "1.0.2" - installs: 848 - rating: 0 - ratings: 0 - author: "Eliza Muss" - repo: "https://github.com/The-Gamer69/elizas-pride-themes" - url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#868686" - red: "#FF5470" - green: "#33D057" - yellow: "#E1C542" - blue: "#469DF1" - magenta: "#E557F9" - cyan: "#305A7A" - white: "#D4D4D4" - brightBlack: "#ABABAB" - brightRed: "#FF718A" - brightGreen: "#23D18B" - brightYellow: "#FFE05B" - brightBlue: "#74BCFF" - brightMagenta: "#EC84FF" - brightCyan: "#3E8DA6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 37.6 - red: 44.8 - green: 63.2 - yellow: 72.2 - blue: 47.5 - magenta: 46.4 - cyan: 16.7 - white: 80.5 - brightBlack: 56.8 - brightRed: 51.3 - brightGreen: 64.5 - brightYellow: 88.7 - brightBlue: 63.2 - brightMagenta: 58.1 - brightCyan: 36.6 - brightWhite: 107.9 diff --git a/themes/nebulous-luna.yaml b/themes/nebulous-luna.yaml index 8a521667..66f86496 100644 --- a/themes/nebulous-luna.yaml +++ b/themes/nebulous-luna.yaml @@ -8,6 +8,7 @@ source: author: "jtpeller" repo: "https://github.com/jtpeller/nebulous-color-themes" url: "https://marketplace.visualstudio.com/items?itemName=jtpeller.nebulous-color-themes" + formats: null colors: bg: "#CFCFCF" fg: "#000000" diff --git a/themes/necessity-aaa-light.yaml b/themes/necessity-aaa-light.yaml deleted file mode 100644 index 3d0ed76e..00000000 --- a/themes/necessity-aaa-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Necessity AAA Light" -source: - marketplace_id: "vxint.necessity" - version: "1.8.0" - installs: 59 - rating: 5 - ratings: 1 - author: "Vortex Interactive" - repo: "https://github.com/vortexint/Necessity" - url: "https://marketplace.visualstudio.com/items?itemName=vxint.necessity" -colors: - bg: "#F5F5F5" - fg: "#1E1E1E" - black: "#5A5A5A" - red: "#8B0000" - green: "#006400" - yellow: "#A06A00" - blue: "#005F9E" - magenta: "#562D80" - cyan: "#004C5C" - white: "#3A3A3A" - brightBlack: "#7A7A7A" - brightRed: "#C51A1B" - brightGreen: "#098658" - brightYellow: "#B58500" - brightBlue: "#007ACC" - brightMagenta: "#800080" - brightCyan: "#267F99" - brightWhite: "#1E1E1E" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 97.7 - black: 77.9 - red: 84.8 - green: 79.2 - yellow: 65.7 - blue: 76.5 - magenta: 87 - cyan: 85.8 - white: 90.3 - brightBlack: 63.8 - brightRed: 71.6 - brightGreen: 65.5 - brightYellow: 54.4 - brightBlue: 64.6 - brightMagenta: 83.6 - brightCyan: 65.6 - brightWhite: 97.7 diff --git a/themes/necessity-aaa.yaml b/themes/necessity-aaa.yaml deleted file mode 100644 index decc2106..00000000 --- a/themes/necessity-aaa.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Necessity-AAA" -source: - marketplace_id: "vxint.necessity" - version: "1.8.0" - installs: 59 - rating: 5 - ratings: 1 - author: "Vortex Interactive" - repo: "https://github.com/vortexint/Necessity" - url: "https://marketplace.visualstudio.com/items?itemName=vxint.necessity" -colors: - bg: "#2F2F2F" - fg: "#DCDCDC" - black: "#3A3A3A" - red: "#D16969" - green: "#87B379" - yellow: "#CCA700" - blue: "#569CD6" - magenta: "#C586C0" - cyan: "#69D8C6" - white: "#DCDCDC" - brightBlack: "#8A8A8A" - brightRed: "#F48771" - brightGreen: "#A0CC93" - brightYellow: "#D9B51A" - brightBlue: "#70A0D6" - brightMagenta: "#D699D6" - brightCyan: "#80E0D0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 80.5 - black: 0 - red: 34.3 - green: 49.9 - yellow: 51.9 - blue: 41.1 - magenta: 43.4 - cyan: 67.2 - white: 80.5 - brightBlack: 34.7 - brightRed: 49.2 - brightGreen: 63.8 - brightYellow: 59.3 - brightBlue: 44.2 - brightMagenta: 53.3 - brightCyan: 72.8 - brightWhite: 103 diff --git a/themes/negative-theme.yaml b/themes/negative-theme.yaml index 6f84c576..4f329b88 100644 --- a/themes/negative-theme.yaml +++ b/themes/negative-theme.yaml @@ -8,6 +8,7 @@ source: author: "Negative" repo: "https://github.com/joaom00/negative-theme" url: "https://marketplace.visualstudio.com/items?itemName=Negative.negative-theme" + formats: null colors: bg: "#0F111A" fg: "#8F93A2" diff --git a/themes/neil-s-theme-dark.yaml b/themes/neil-s-theme-dark.yaml index 012ed75e..efff31e3 100644 --- a/themes/neil-s-theme-dark.yaml +++ b/themes/neil-s-theme-dark.yaml @@ -8,6 +8,7 @@ source: author: "N Anderson" repo: "https://github.com/njpanderson/neils-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=njp-anderson.neils-vscode-theme" + formats: null colors: bg: "#272C30" fg: "#D3C6AA" diff --git a/themes/neil-s-theme.yaml b/themes/neil-s-theme.yaml index 9547babf..d2b56d0b 100644 --- a/themes/neil-s-theme.yaml +++ b/themes/neil-s-theme.yaml @@ -8,6 +8,7 @@ source: author: "N Anderson" repo: "https://github.com/njpanderson/neils-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=njp-anderson.neils-vscode-theme" + formats: null colors: bg: "#FAFAFA" fg: "#000000" diff --git a/themes/nekhbet.yaml b/themes/nekhbet.yaml index 32739469..014a5a6f 100644 --- a/themes/nekhbet.yaml +++ b/themes/nekhbet.yaml @@ -8,6 +8,7 @@ source: author: "inamdarminaz" repo: "https://github.com/inamdarminaz/nekhbet" url: "https://marketplace.visualstudio.com/items?itemName=inamdarminaz.nekhbet" + formats: null colors: bg: "#1B1B1B" fg: "#F5F5F5" diff --git a/themes/neki.yaml b/themes/neki.yaml index fa79b8e5..aea04d18 100644 --- a/themes/neki.yaml +++ b/themes/neki.yaml @@ -1,4 +1,4 @@ -name: "neki" +name: "Neki" source: marketplace_id: "Azelky.neki" version: "1.1.1" @@ -8,6 +8,7 @@ source: author: "Azelky" repo: "https://github.com/azelky/neki-theme" url: "https://marketplace.visualstudio.com/items?itemName=Azelky.neki" + formats: null colors: bg: "#2A293E" fg: "#D4D4D4" diff --git a/themes/neo-hacker-soft-premium.yaml b/themes/neo-hacker-soft-premium.yaml deleted file mode 100644 index caad4d7e..00000000 --- a/themes/neo-hacker-soft-premium.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neo Hacker Soft - Premium" -source: - marketplace_id: "SecureDev01.theme-icon-pack" - version: "1.0.4" - installs: 906 - rating: 0 - ratings: 0 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/theme-icon-pack" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.theme-icon-pack" -colors: - bg: "#0A0C0A" - fg: "#00D463" - black: "#0A0C0A" - red: "#FF5370" - green: "#00FF66" - yellow: "#FFEE58" - blue: "#40C4FF" - magenta: "#FF80FF" - cyan: "#1AFF8C" - white: "#00D463" - brightBlack: "#2D5A3D" - brightRed: "#FF6B8A" - brightGreen: "#00FF88" - brightYellow: "#FFF176" - brightBlue: "#64B5F6" - brightMagenta: "#FF99FF" - brightCyan: "#4DFFB3" - brightWhite: "#33FFAA" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 64.7 - black: 0 - red: 44.4 - green: 86.9 - yellow: 94.8 - blue: 64.1 - magenta: 60.4 - cyan: 87.7 - white: 64.7 - brightBlack: 14.5 - brightRed: 49.7 - brightGreen: 87.6 - brightYellow: 96.6 - brightBlue: 58.6 - brightMagenta: 67.4 - brightCyan: 89.7 - brightWhite: 88.8 diff --git a/themes/neo-nuxt-matte.yaml b/themes/neo-nuxt-matte.yaml deleted file mode 100644 index 67debd52..00000000 --- a/themes/neo-nuxt-matte.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "neo-nuxt-matte" -source: - marketplace_id: "CeoDev.neo-nuxt3-blend" - version: "3.3.4" - installs: 2699 - rating: 5 - ratings: 1 - author: "Vantol Bennett" - repo: "https://github.com/titan-65/neo-nuxt" - url: "https://marketplace.visualstudio.com/items?itemName=CeoDev.neo-nuxt3-blend" -colors: - bg: "#0C0C0D" - fg: "#76767D" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 30.1 - black: 0 - red: 27.5 - green: 53.8 - yellow: 86.4 - blue: 28.2 - magenta: 30.5 - cyan: 48.3 - white: 90.8 - brightBlack: 22.8 - brightRed: 39.3 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.8 - brightMagenta: 46.2 - brightCyan: 56.2 - brightWhite: 90.8 diff --git a/themes/neo-seoul-dark.yaml b/themes/neo-seoul-dark.yaml deleted file mode 100644 index 4e5a984b..00000000 --- a/themes/neo-seoul-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neo Seoul Dark" -source: - marketplace_id: "taotao7.neo-seoul-theme" - version: "0.0.3" - installs: 251 - rating: 5 - ratings: 1 - author: "taotao7" - repo: "https://github.com/taotao7/neoseoul-theme" - url: "https://marketplace.visualstudio.com/items?itemName=taotao7.neo-seoul-theme" -colors: - bg: "#3A3A3A" - fg: "#D0D0D0" - black: "#3A3A3A" - red: "#E12672" - green: "#719872" - yellow: "#FFD787" - blue: "#7299BC" - magenta: "#E19972" - cyan: "#98BCBD" - white: "#D0D0D0" - brightBlack: "#565656" - brightRed: "#BF2172" - brightGreen: "#98BC99" - brightYellow: "#FFDE99" - brightBlue: "#98BEDE" - brightMagenta: "#FFBD98" - brightCyan: "#BCDEDE" - brightWhite: "#F1F1F1" -meta: - mode: "dark" - accent: "red" - hue: null - pair: "Neo Seoul Light" - contrast: - fg: 70.2 - black: 0 - red: 24.7 - green: 33.9 - yellow: 77.6 - blue: 37.2 - magenta: 48.3 - cyan: 54.6 - white: 70.2 - brightBlack: 8.6 - brightRed: 16.9 - brightGreen: 53.2 - brightYellow: 81.1 - brightBlue: 57 - brightMagenta: 67.5 - brightCyan: 74.7 - brightWhite: 90.8 diff --git a/themes/neo-seoul-light.yaml b/themes/neo-seoul-light.yaml deleted file mode 100644 index 67b786d5..00000000 --- a/themes/neo-seoul-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neo Seoul Light" -source: - marketplace_id: "taotao7.neo-seoul-theme" - version: "0.0.3" - installs: 251 - rating: 5 - ratings: 1 - author: "taotao7" - repo: "https://github.com/taotao7/neoseoul-theme" - url: "https://marketplace.visualstudio.com/items?itemName=taotao7.neo-seoul-theme" -colors: - bg: "#DADADA" - fg: "#4E4E4E" - black: "#DADADA" - red: "#BF2172" - green: "#719872" - yellow: "#875F5F" - blue: "#25709A" - magenta: "#875F5F" - cyan: "#009799" - white: "#4E4E4E" - brightBlack: "#C8C8C8" - brightRed: "#E12672" - brightGreen: "#98BC99" - brightYellow: "#FFDE99" - brightBlue: "#98BEDE" - brightMagenta: "#FFBD98" - brightCyan: "#BCDEDE" - brightWhite: "#262626" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Neo Seoul Dark" - contrast: - fg: 67.1 - black: 0 - red: 55.3 - green: 38.2 - yellow: 55.6 - blue: 55.1 - magenta: 55.6 - cyan: 41 - white: 67.1 - brightBlack: 7.9 - brightRed: 47.4 - brightGreen: 19.5 - brightYellow: 0 - brightBlue: 15.9 - brightMagenta: 0 - brightCyan: 0 - brightWhite: 80.4 diff --git a/themes/neo-vscode-theme.yaml b/themes/neo-vscode-theme.yaml deleted file mode 100644 index 4a2ab66e..00000000 --- a/themes/neo-vscode-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "neo-vscode-theme" -source: - marketplace_id: "palashmon.theme-neo" - version: "1.1.1" - installs: 2099 - rating: 5 - ratings: 3 - author: "Palash Mondal" - repo: "https://github.com/palashmon/neo-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=palashmon.theme-neo" -colors: - bg: "#0B1B2D" - fg: "#89C4F4" - black: "#000000" - red: "#F64747" - green: "#3AD900" - yellow: "#65E6B8" - blue: "#0088FF" - magenta: "#DDA0DD" - cyan: "#80FCFF" - white: "#FFFFFF" - brightBlack: "#0050A4" - brightRed: "#F64747" - brightGreen: "#3AD900" - brightYellow: "#65E6B8" - brightBlue: "#0088FF" - brightMagenta: "#DDA0DD" - brightCyan: "#80FCFF" - brightWhite: "#193549" -meta: - mode: "dark" - accent: "green" - hue: 253 - pair: null - contrast: - fg: 66 - black: 0 - red: 38.5 - green: 65.8 - yellow: 76.7 - blue: 38.3 - magenta: 60.6 - cyan: 92.3 - white: 106.4 - brightBlack: 14.2 - brightRed: 38.5 - brightGreen: 65.8 - brightYellow: 76.7 - brightBlue: 38.3 - brightMagenta: 60.6 - brightCyan: 92.3 - brightWhite: 0 diff --git a/themes/neodark.yaml b/themes/neodark.yaml index c1ec98d9..d177d279 100644 --- a/themes/neodark.yaml +++ b/themes/neodark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Henriquehnnm.Neo-plus" version: "1.3.9" installs: 59 + rating: 0 + ratings: 0 author: "Henrique" repo: "https://github.com/Henriquehnnm/neoplus" url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.Neo-plus" + formats: null colors: bg: "#1E1E1E" fg: "#F5F5F5" diff --git a/themes/neofusion.yaml b/themes/neofusion.yaml index b722690f..8168d109 100644 --- a/themes/neofusion.yaml +++ b/themes/neofusion.yaml @@ -8,6 +8,7 @@ source: author: "diegoulloao" repo: "https://github.com/diegoulloao/neofusion.vscode" url: "https://marketplace.visualstudio.com/items?itemName=diegoulloao.neofusion-theme" + formats: null colors: bg: "#06101E" fg: "#FD5E3A" diff --git a/themes/neogenesis.yaml b/themes/neogenesis.yaml index 5343aea9..5666309b 100644 --- a/themes/neogenesis.yaml +++ b/themes/neogenesis.yaml @@ -8,6 +8,7 @@ source: author: "Neogenesis" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Neogenesis.neogenesis-theme" + formats: null colors: bg: "#0A0525" fg: "#D6DEEB" diff --git a/themes/neokai.yaml b/themes/neokai.yaml index c37d00bd..893dbe49 100644 --- a/themes/neokai.yaml +++ b/themes/neokai.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Henriquehnnm.Neo-plus" version: "1.3.9" installs: 59 + rating: 0 + ratings: 0 author: "Henrique" repo: "https://github.com/Henriquehnnm/neoplus" url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.Neo-plus" + formats: null colors: bg: "#322F2F" fg: "#EAEAEA" diff --git a/themes/neon-black.yaml b/themes/neon-black.yaml index b2399c9f..6715a678 100644 --- a/themes/neon-black.yaml +++ b/themes/neon-black.yaml @@ -8,6 +8,7 @@ source: author: "Ethan04" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Ethan04.Neon-Black" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/neon-color-dark-theme.yaml b/themes/neon-color-dark-theme.yaml deleted file mode 100644 index 3f304744..00000000 --- a/themes/neon-color-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Color - Dark Theme" -source: - marketplace_id: "mdmarufsarker.maruf-sarker" - version: "0.1.1" - installs: 29154 - rating: 5 - ratings: 6 - author: "Md. Maruf Sarker" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" -colors: - bg: "#0C1924" - fg: "#00DBFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 245 - pair: null - contrast: - fg: 73.1 - black: 0 - red: 26.6 - green: 52.9 - yellow: 85.5 - blue: 27.3 - magenta: 29.6 - cyan: 47.4 - white: 89.9 - brightBlack: 21.9 - brightRed: 38.4 - brightGreen: 63.4 - brightYellow: 95.5 - brightBlue: 39.9 - brightMagenta: 45.2 - brightCyan: 55.3 - brightWhite: 89.9 diff --git a/themes/neon-cyber.yaml b/themes/neon-cyber.yaml deleted file mode 100644 index 16bd79ef..00000000 --- a/themes/neon-cyber.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Cyber" -source: - marketplace_id: "CodewithBismillah.chroma-library" - version: "1.2.1" - installs: 358 - rating: 5 - ratings: 1 - author: "Code with Bismillah" - repo: "https://github.com/mubashir1837/Chroma-Library" - url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" -colors: - bg: "#0A0A0F" - fg: "#E0E0FF" - black: "#000000" - red: "#FF0080" - green: "#00FF80" - yellow: "#FFFF00" - blue: "#0080FF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#FF4080" - brightGreen: "#40FF80" - brightYellow: "#FFFF40" - brightBlue: "#4080FF" - brightMagenta: "#FF40FF" - brightCyan: "#40FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 285 - pair: null - contrast: - fg: 89.3 - black: 0 - red: 39.1 - green: 87.4 - yellow: 102.5 - blue: 36.9 - magenta: 46.1 - cyan: 92 - white: 107.7 - brightBlack: 22.9 - brightRed: 42.3 - brightGreen: 88 - brightYellow: 102.7 - brightBlue: 37.9 - brightMagenta: 49 - brightCyan: 92.6 - brightWhite: 107.7 diff --git a/themes/neon-cyberpunk.yaml b/themes/neon-cyberpunk.yaml deleted file mode 100644 index 9cbb8b94..00000000 --- a/themes/neon-cyberpunk.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Cyberpunk" -source: - marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" - version: "1.0.0" - installs: 1549 - rating: 0 - ratings: 0 - author: "Little Waterfall" - repo: "https://github.com/LittleWaterfall/vscode-neon-glow" - url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" -colors: - bg: "#000010" - fg: "#F0F0FF" - black: "#102030" - red: "#FF0040" - green: "#00FF40" - yellow: "#FF8000" - blue: "#0080FF" - magenta: "#FF0080" - cyan: "#00FFFF" - white: "#F0F0FF" - brightBlack: "#404060" - brightRed: "#FF4060" - brightGreen: "#40FF60" - brightYellow: "#FFA040" - brightBlue: "#40A0FF" - brightMagenta: "#FF40A0" - brightCyan: "#40FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 264 - pair: null - contrast: - fg: 98.7 - black: 0 - red: 37.8 - green: 86.7 - yellow: 53.3 - blue: 37 - magenta: 39.2 - cyan: 92.1 - white: 98.7 - brightBlack: 9.5 - brightRed: 41.6 - brightGreen: 87.6 - brightYellow: 63.2 - brightBlue: 49.4 - brightMagenta: 43.6 - brightCyan: 92.7 - brightWhite: 107.9 diff --git a/themes/neon-dream-code.yaml b/themes/neon-dream-code.yaml deleted file mode 100644 index ecdb679d..00000000 --- a/themes/neon-dream-code.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Dream Code" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#0A0E27" - fg: "#E4F0FB" - black: "#0A0E27" - red: "#FF2A6D" - green: "#05FFA1" - yellow: "#FFE600" - blue: "#5C9FFF" - magenta: "#BD5EFF" - cyan: "#00D4E8" - white: "#B8C5D6" - brightBlack: "#3D4A7A" - brightRed: "#FF2A6D" - brightGreen: "#05FFA1" - brightYellow: "#FFFB00" - brightBlue: "#7AB8FF" - brightMagenta: "#D896FF" - brightCyan: "#00F0FF" - brightWhite: "#E4F0FB" -meta: - mode: "dark" - accent: "red" - hue: 273 - pair: null - contrast: - fg: 96.5 - black: 0 - red: 39.4 - green: 87.9 - yellow: 90.4 - blue: 49.7 - magenta: 40.5 - cyan: 69.1 - white: 70.2 - brightBlack: 12.4 - brightRed: 39.4 - brightGreen: 87.9 - brightYellow: 100.2 - brightBlue: 61.4 - brightMagenta: 59.5 - brightCyan: 84 - brightWhite: 96.5 diff --git a/themes/neon-dreams.yaml b/themes/neon-dreams.yaml deleted file mode 100644 index 19fdd982..00000000 --- a/themes/neon-dreams.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Dreams" -source: - marketplace_id: "CursorThemes.neon-dreams-theme" - version: "1.5.0" - installs: 614 - rating: 5 - ratings: 1 - author: "Cursor Themes" - repo: "https://github.com/Cursor-Themes/neon_dreams" - url: "https://marketplace.visualstudio.com/items?itemName=CursorThemes.neon-dreams-theme" -colors: - bg: "#1A0F1A" - fg: "#E8D8E8" - black: "#1A0F1A" - red: "#DD77AA" - green: "#99DDAA" - yellow: "#DDAA77" - blue: "#88CCDD" - magenta: "#DD77DD" - cyan: "#77DDCC" - white: "#E8D8E8" - brightBlack: "#5A4A5A" - brightRed: "#EE88BB" - brightGreen: "#AAEEBB" - brightYellow: "#EEBB88" - brightBlue: "#99DDEE" - brightMagenta: "#EE88EE" - brightCyan: "#88EECC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 327 - pair: null - contrast: - fg: 85.2 - black: 0 - red: 46.5 - green: 76 - yellow: 61 - blue: 68.9 - magenta: 49.1 - cyan: 74.9 - white: 85.2 - brightBlack: 13.2 - brightRed: 55 - brightGreen: 86.3 - brightYellow: 70.7 - brightBlue: 78.9 - brightMagenta: 57.8 - brightCyan: 84.2 - brightWhite: 107.2 diff --git a/themes/neon-dusk.yaml b/themes/neon-dusk.yaml index fb4402ee..6bb3d55b 100644 --- a/themes/neon-dusk.yaml +++ b/themes/neon-dusk.yaml @@ -8,6 +8,7 @@ source: author: "manufdz19" repo: "https://github.com/manufdz19/neon-dusk-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=manufdz19.neon-dusk-theme" + formats: null colors: bg: "#1D1D21" fg: "#E0E0E0" diff --git a/themes/neon-forest.yaml b/themes/neon-forest.yaml index ae39ae19..5b0c120a 100644 --- a/themes/neon-forest.yaml +++ b/themes/neon-forest.yaml @@ -8,6 +8,7 @@ source: author: "maxludden" repo: "https://github.com/maxludden/neon-forest" url: "https://marketplace.visualstudio.com/items?itemName=maxludden.neon-forest" + formats: null colors: bg: "#000F03" fg: "#D4D4D4" diff --git a/themes/neon-glow.yaml b/themes/neon-glow.yaml deleted file mode 100644 index 9bbebe04..00000000 --- a/themes/neon-glow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Glow" -source: - marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" - version: "1.0.0" - installs: 1549 - rating: 0 - ratings: 0 - author: "Little Waterfall" - repo: "https://github.com/LittleWaterfall/vscode-neon-glow" - url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" -colors: - bg: "#0A0A14" - fg: "#E0E6FF" - black: "#1A1A2E" - red: "#FF3366" - green: "#00FF80" - yellow: "#FFAA00" - blue: "#3366FF" - magenta: "#FF0080" - cyan: "#00FFFF" - white: "#E0E6FF" - brightBlack: "#4A4A66" - brightRed: "#FF6699" - brightGreen: "#66FFAA" - brightYellow: "#FFCC66" - brightBlue: "#6699FF" - brightMagenta: "#FF66AA" - brightCyan: "#66FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 284 - pair: null - contrast: - fg: 91.9 - black: 0 - red: 40.2 - green: 87.4 - yellow: 66.3 - blue: 29.7 - magenta: 39.1 - cyan: 92 - white: 91.9 - brightBlack: 12.7 - brightRed: 49.2 - brightGreen: 90.3 - brightYellow: 80.1 - brightBlue: 48.4 - brightMagenta: 49.9 - brightCyan: 93.8 - brightWhite: 107.7 diff --git a/themes/neon-green-light.yaml b/themes/neon-green-light.yaml deleted file mode 100644 index e1cde709..00000000 --- a/themes/neon-green-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Green — Light" -source: - marketplace_id: "luongnv89.neon-green-theme" - version: "1.2.1" - installs: 31 - rating: 0 - ratings: 0 - author: "luongnv89" - repo: "https://github.com/luongnv89/vscode-theme-neon-green" - url: "https://marketplace.visualstudio.com/items?itemName=luongnv89.neon-green-theme" -colors: - bg: "#F0FAF0" - fg: "#2A2D3E" - black: "#1B1A2E" - red: "#C4284A" - green: "#0D9E00" - yellow: "#B37800" - blue: "#8394FF" - magenta: "#BF41FF" - cyan: "#00C8B4" - white: "#D9E0EB" - brightBlack: "#3E6E40" - brightRed: "#E8405A" - brightGreen: "#18B818" - brightYellow: "#D09000" - brightBlue: "#A1AFFF" - brightMagenta: "#D770FF" - brightCyan: "#33EAD0" - brightWhite: "#F0F3FA" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Neon Green — Midnight" - contrast: - fg: 95.5 - black: 99.2 - red: 71.8 - green: 57.7 - yellow: 60 - blue: 48.3 - magenta: 60.4 - cyan: 36.1 - white: 11.5 - brightBlack: 75.1 - brightRed: 60.9 - brightGreen: 46.3 - brightYellow: 48 - brightBlue: 35.9 - brightMagenta: 47.9 - brightCyan: 19 - brightWhite: 0 diff --git a/themes/neon-green-midnight.yaml b/themes/neon-green-midnight.yaml deleted file mode 100644 index c5418ab1..00000000 --- a/themes/neon-green-midnight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Green — Midnight" -source: - marketplace_id: "luongnv89.neon-green-theme" - version: "1.2.1" - installs: 31 - rating: 0 - ratings: 0 - author: "luongnv89" - repo: "https://github.com/luongnv89/vscode-theme-neon-green" - url: "https://marketplace.visualstudio.com/items?itemName=luongnv89.neon-green-theme" -colors: - bg: "#0E0E1A" - fg: "#D5DCE8" - black: "#1B1A2E" - red: "#FF5555" - green: "#39FF14" - yellow: "#FFB347" - blue: "#8394FF" - magenta: "#BF41FF" - cyan: "#00FFE2" - white: "#D9E0EB" - brightBlack: "#505370" - brightRed: "#FF7777" - brightGreen: "#4DFF4D" - brightYellow: "#FFC87D" - brightBlue: "#A1AFFF" - brightMagenta: "#D770FF" - brightCyan: "#33FFEB" - brightWhite: "#F0F3FA" -meta: - mode: "dark" - accent: "green" - hue: 283 - pair: "Neon Green — Light" - contrast: - fg: 84.7 - black: 0 - red: 44 - green: 86.6 - yellow: 69.7 - blue: 48.5 - magenta: 36.2 - cyan: 90.4 - white: 87.1 - brightBlack: 15.7 - brightRed: 51.8 - brightGreen: 87.4 - brightYellow: 78.7 - brightBlue: 61.3 - brightMagenta: 48.9 - brightCyan: 91.1 - brightWhite: 99.5 diff --git a/themes/neon-lights.yaml b/themes/neon-lights.yaml index 68e8747f..08010b31 100644 --- a/themes/neon-lights.yaml +++ b/themes/neon-lights.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "annliu.neon-lights" version: "0.0.1" installs: 2 + rating: 0 + ratings: 0 author: "annliu" repo: "git+https://github.com/ann-liu/neon-lights-theme" url: "https://marketplace.visualstudio.com/items?itemName=annliu.neon-lights" + formats: null colors: bg: "#2F2D31" fg: "#E6E6E6" diff --git a/themes/neon-matrix.yaml b/themes/neon-matrix.yaml deleted file mode 100644 index b318f3a5..00000000 --- a/themes/neon-matrix.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Matrix" -source: - marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" - version: "1.0.0" - installs: 1549 - rating: 0 - ratings: 0 - author: "Little Waterfall" - repo: "https://github.com/LittleWaterfall/vscode-neon-glow" - url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" -colors: - bg: "#000000" - fg: "#00FF00" - black: "#000000" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFFF00" - blue: "#0080FF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#808080" - brightRed: "#FF8080" - brightGreen: "#80FF80" - brightYellow: "#FFFF80" - brightBlue: "#8080FF" - brightMagenta: "#FF80FF" - brightCyan: "#80FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 86.5 - black: 0 - red: 37.5 - green: 86.5 - yellow: 102.7 - blue: 37.1 - magenta: 46.2 - cyan: 92.2 - white: 107.9 - brightBlack: 34.8 - brightRed: 54.7 - brightGreen: 90.8 - brightYellow: 103.7 - brightBlue: 42.1 - brightMagenta: 60.6 - brightCyan: 95.3 - brightWhite: 107.9 diff --git a/themes/neon-noir.yaml b/themes/neon-noir.yaml index 24fa8ce8..343ee67b 100644 --- a/themes/neon-noir.yaml +++ b/themes/neon-noir.yaml @@ -8,6 +8,7 @@ source: author: "Mustafa Özdemir" repo: null url: "https://marketplace.visualstudio.com/items?itemName=codeM.mystic-dark-collection" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/neon-ocean.yaml b/themes/neon-ocean.yaml deleted file mode 100644 index 97db3037..00000000 --- a/themes/neon-ocean.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Ocean" -source: - marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" - version: "1.0.0" - installs: 1549 - rating: 0 - ratings: 0 - author: "Little Waterfall" - repo: "https://github.com/LittleWaterfall/vscode-neon-glow" - url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" -colors: - bg: "#000510" - fg: "#00FFFF" - black: "#000000" - red: "#FF6B6B" - green: "#00FF80" - yellow: "#FFA500" - blue: "#00D4FF" - magenta: "#B19CD9" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#4A90E2" - brightRed: "#FF8E8E" - brightGreen: "#80FF9A" - brightYellow: "#FFB84D" - brightBlue: "#66E0FF" - brightMagenta: "#D4B3FF" - brightCyan: "#80FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 251 - pair: null - contrast: - fg: 92.1 - black: 0 - red: 49.1 - green: 87.5 - yellow: 64.7 - blue: 70.9 - magenta: 54.1 - cyan: 92.1 - white: 107.8 - brightBlack: 41.7 - brightRed: 59 - brightGreen: 91.4 - brightYellow: 71.9 - brightBlue: 78.6 - brightMagenta: 69.3 - brightCyan: 95.2 - brightWhite: 107.8 diff --git a/themes/neon-palette-themes-red.yaml b/themes/neon-palette-themes-red.yaml deleted file mode 100644 index eb873355..00000000 --- a/themes/neon-palette-themes-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Palette Themes (Red)" -source: - marketplace_id: "Jofa8.neon-palette-themes" - version: "0.0.1" - installs: 1870 - rating: 5 - ratings: 1 - author: "Jofa8" - repo: "https://github.com/Jofa8/neon-palette-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Jofa8.neon-palette-themes" -colors: - bg: "#12130F" - fg: "#D0CCD1" - black: "#000000" - red: "#CD3131" - green: "#7FE960" - yellow: "#FFEC03" - blue: "#03B4FF" - magenta: "#FF5CE4" - cyan: "#02E1D9" - white: "#D0CCD1" - brightBlack: "#8C8C8C" - brightRed: "#FF5E5E" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 75.8 - black: 0 - red: 27.1 - green: 78.3 - yellow: 93 - blue: 56.1 - magenta: 50.6 - cyan: 74.5 - white: 75.8 - brightBlack: 40 - brightRed: 45.6 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.4 - brightMagenta: 45.8 - brightCyan: 55.8 - brightWhite: 90.4 diff --git a/themes/neon-shimmer-amethyst-core.yaml b/themes/neon-shimmer-amethyst-core.yaml deleted file mode 100644 index 2ec55ccf..00000000 --- a/themes/neon-shimmer-amethyst-core.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Shimmer (Amethyst Core)" -source: - marketplace_id: "piperunner.neon-shimmer" - version: "1.2.0" - installs: 16857 - rating: 5 - ratings: 2 - author: "Pipe Runner" - repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" - url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" -colors: - bg: "#070012" - fg: "#E6D9FF" - black: "#070012" - red: "#8E4AF5" - green: "#73C991" - yellow: "#FFDF7E" - blue: "#B377FF" - magenta: "#B377FF" - cyan: "#04D9C4" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#8E4AF5" - brightGreen: "#04D9C4" - brightYellow: "#EE4CFC" - brightBlue: "#A78BFF" - brightMagenta: "#D1A3FF" - brightCyan: "#45FFED" - brightWhite: "#E6D9FF" -meta: - mode: "dark" - accent: "pink" - hue: 304 - pair: null - contrast: - fg: 87.1 - black: 0 - red: 29.6 - green: 63.7 - yellow: 88.8 - blue: 45.4 - magenta: 45.4 - cyan: 70.2 - white: 91 - brightBlack: 23 - brightRed: 29.6 - brightGreen: 70.2 - brightYellow: 46.7 - brightBlue: 49.6 - brightMagenta: 63.2 - brightCyan: 91.9 - brightWhite: 87.1 diff --git a/themes/neon-shimmer-bubblegum-punk.yaml b/themes/neon-shimmer-bubblegum-punk.yaml deleted file mode 100644 index 0e16ca1f..00000000 --- a/themes/neon-shimmer-bubblegum-punk.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Shimmer (Bubblegum Punk)" -source: - marketplace_id: "piperunner.neon-shimmer" - version: "1.2.0" - installs: 16857 - rating: 5 - ratings: 2 - author: "Pipe Runner" - repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" - url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" -colors: - bg: "#080006" - fg: "#FFD9F2" - black: "#080006" - red: "#EE4CFC" - green: "#73C991" - yellow: "#FFDF7E" - blue: "#EE05F2" - magenta: "#EE4CFC" - cyan: "#FFFFFF" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F22294" - brightGreen: "#8E4AF5" - brightYellow: "#FFDF7E" - brightBlue: "#A78BFF" - brightMagenta: "#EE4CFC" - brightCyan: "#45FFED" - brightWhite: "#FFD9F2" -meta: - mode: "dark" - accent: "pink" - hue: 335 - pair: null - contrast: - fg: 90.2 - black: 0 - red: 46.7 - green: 63.7 - yellow: 88.8 - blue: 41.4 - magenta: 46.7 - cyan: 107.9 - white: 91 - brightBlack: 23 - brightRed: 37.5 - brightGreen: 29.7 - brightYellow: 88.8 - brightBlue: 49.7 - brightMagenta: 46.7 - brightCyan: 92 - brightWhite: 90.2 diff --git a/themes/neon-shimmer-crimson-drive.yaml b/themes/neon-shimmer-crimson-drive.yaml deleted file mode 100644 index ee84fb47..00000000 --- a/themes/neon-shimmer-crimson-drive.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Shimmer (Crimson Drive)" -source: - marketplace_id: "piperunner.neon-shimmer" - version: "1.2.0" - installs: 16857 - rating: 5 - ratings: 2 - author: "Pipe Runner" - repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" - url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" -colors: - bg: "#0A0103" - fg: "#FFB3D9" - black: "#0A0103" - red: "#E64471" - green: "#73C991" - yellow: "#FFDF7E" - blue: "#FF845E" - magenta: "#E64471" - cyan: "#FFFFFF" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#E64471" - brightGreen: "#FF845E" - brightYellow: "#FFDF7E" - brightBlue: "#A78BFF" - brightMagenta: "#FF487B" - brightCyan: "#45FFED" - brightWhite: "#FFB3D9" -meta: - mode: "dark" - accent: "red" - hue: 2 - pair: null - contrast: - fg: 74.1 - black: 0 - red: 36.7 - green: 63.7 - yellow: 88.8 - blue: 55 - magenta: 36.7 - cyan: 107.9 - white: 91 - brightBlack: 23 - brightRed: 36.7 - brightGreen: 55 - brightYellow: 88.8 - brightBlue: 49.6 - brightMagenta: 43.3 - brightCyan: 92 - brightWhite: 74.1 diff --git a/themes/neon-shimmer.yaml b/themes/neon-shimmer.yaml deleted file mode 100644 index 66b3c3eb..00000000 --- a/themes/neon-shimmer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Shimmer" -source: - marketplace_id: "piperunner.neon-shimmer" - version: "1.2.0" - installs: 16857 - rating: 5 - ratings: 2 - author: "Pipe Runner" - repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" - url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#E64471" - green: "#73C991" - yellow: "#FFD11B" - blue: "#8968FF" - magenta: "#EE4CFC" - cyan: "#04D9C4" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#FF487B" - brightGreen: "#A6E422" - brightYellow: "#FFDF7E" - brightBlue: "#A78BFF" - brightMagenta: "#F942FF" - brightCyan: "#45FFED" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 36.7 - green: 63.8 - yellow: 81.7 - blue: 36.3 - magenta: 46.7 - cyan: 70.2 - white: 91 - brightBlack: 23 - brightRed: 43.3 - brightGreen: 78.9 - brightYellow: 88.8 - brightBlue: 49.7 - brightMagenta: 48 - brightCyan: 92 - brightWhite: 107.9 diff --git a/themes/neon-side.yaml b/themes/neon-side.yaml index 72bc4158..d7c43459 100644 --- a/themes/neon-side.yaml +++ b/themes/neon-side.yaml @@ -8,6 +8,7 @@ source: author: "Sebastian HT" repo: "https://github.com/sebastian-huamani/Extencion-vs" url: "https://marketplace.visualstudio.com/items?itemName=SebastianHT.fp" + formats: null colors: bg: "#1A1818" fg: "#959696" diff --git a/themes/neon-sunset.yaml b/themes/neon-sunset.yaml deleted file mode 100644 index c4b003ea..00000000 --- a/themes/neon-sunset.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Sunset" -source: - marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" - version: "1.0.0" - installs: 1549 - rating: 0 - ratings: 0 - author: "Little Waterfall" - repo: "https://github.com/LittleWaterfall/vscode-neon-glow" - url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" -colors: - bg: "#0A0500" - fg: "#FFAA00" - black: "#000000" - red: "#FF4444" - green: "#88FF00" - yellow: "#FFDD00" - blue: "#4488FF" - magenta: "#FF8844" - cyan: "#44FFFF" - white: "#FFFFFF" - brightBlack: "#CC6600" - brightRed: "#FF6666" - brightGreen: "#AAFF44" - brightYellow: "#FFEE44" - brightBlue: "#66AAFF" - brightMagenta: "#FFAA66" - brightCyan: "#66FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 82 - pair: null - contrast: - fg: 66.4 - black: 0 - red: 41.6 - green: 90.2 - yellow: 86.8 - blue: 40.8 - magenta: 55.8 - cyan: 92.8 - white: 107.8 - brightBlack: 36.4 - brightRed: 47.9 - brightGreen: 93 - brightYellow: 94.8 - brightBlue: 55 - brightMagenta: 67.2 - brightCyan: 93.9 - brightWhite: 107.8 diff --git a/themes/neon-synthwave.yaml b/themes/neon-synthwave.yaml deleted file mode 100644 index 2b2123db..00000000 --- a/themes/neon-synthwave.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Synthwave" -source: - marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" - version: "1.0.0" - installs: 1549 - rating: 0 - ratings: 0 - author: "Little Waterfall" - repo: "https://github.com/LittleWaterfall/vscode-neon-glow" - url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" -colors: - bg: "#1A0033" - fg: "#FFEEFF" - black: "#330066" - red: "#FF2080" - green: "#80FF80" - yellow: "#FF9900" - blue: "#8080FF" - magenta: "#FF80FF" - cyan: "#80FFFF" - white: "#FFEEFF" - brightBlack: "#663399" - brightRed: "#FF40A0" - brightGreen: "#A0FFA0" - brightYellow: "#FFB340" - brightBlue: "#A0A0FF" - brightMagenta: "#FFA0FF" - brightCyan: "#A0FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 301 - pair: null - contrast: - fg: 99.2 - black: 0 - red: 39.1 - green: 90 - yellow: 59.9 - blue: 41.3 - magenta: 59.8 - cyan: 94.5 - white: 99.2 - brightBlack: 13 - brightRed: 42.8 - brightGreen: 93 - brightYellow: 69.2 - brightBlue: 55.2 - brightMagenta: 69 - brightCyan: 96.7 - brightWhite: 107.1 diff --git a/themes/neon-theme.yaml b/themes/neon-theme.yaml deleted file mode 100644 index e1db01d1..00000000 --- a/themes/neon-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "neon-theme" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - rating: 5 - ratings: 3 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#202328" - fg: "#CCCCCC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 261 - pair: null - contrast: - fg: 73.1 - black: 0 - red: 25.2 - green: 51.5 - yellow: 84.1 - blue: 25.9 - magenta: 28.2 - cyan: 46 - white: 88.5 - brightBlack: 20.5 - brightRed: 37 - brightGreen: 62 - brightYellow: 94.1 - brightBlue: 38.5 - brightMagenta: 43.8 - brightCyan: 53.9 - brightWhite: 88.5 diff --git a/themes/neon-trench-theme.yaml b/themes/neon-trench-theme.yaml index 185be138..a715acb5 100644 --- a/themes/neon-trench-theme.yaml +++ b/themes/neon-trench-theme.yaml @@ -8,6 +8,7 @@ source: author: "WebCraftID" repo: null url: "https://marketplace.visualstudio.com/items?itemName=WebCraftID.neontrench" + formats: null colors: bg: "#00071B" fg: "#FFFFFF" diff --git a/themes/neon-violet.yaml b/themes/neon-violet.yaml deleted file mode 100644 index b8645cc0..00000000 --- a/themes/neon-violet.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neon Violet" -source: - marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" - version: "1.0.0" - installs: 1549 - rating: 0 - ratings: 0 - author: "Little Waterfall" - repo: "https://github.com/LittleWaterfall/vscode-neon-glow" - url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" -colors: - bg: "#050008" - fg: "#CC66FF" - black: "#000000" - red: "#FF3366" - green: "#88FF44" - yellow: "#FF8800" - blue: "#4488FF" - magenta: "#CC66FF" - cyan: "#44FFCC" - white: "#FFFFFF" - brightBlack: "#8844CC" - brightRed: "#FF6688" - brightGreen: "#AEFF66" - brightYellow: "#FFAA44" - brightBlue: "#66AAFF" - brightMagenta: "#EE88FF" - brightCyan: "#66FFEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 317 - pair: null - contrast: - fg: 45.2 - black: 0 - red: 40.4 - green: 90.4 - yellow: 55.5 - blue: 40.8 - magenta: 45.2 - cyan: 90.5 - white: 107.9 - brightBlack: 24.4 - brightRed: 48.8 - brightGreen: 93.8 - brightYellow: 66.8 - brightBlue: 55 - brightMagenta: 59.5 - brightCyan: 93.1 - brightWhite: 107.9 diff --git a/themes/neonaska.yaml b/themes/neonaska.yaml index 1f8dbc2a..ebfd78f4 100644 --- a/themes/neonaska.yaml +++ b/themes/neonaska.yaml @@ -8,6 +8,7 @@ source: author: "Askka" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Askka.neon-aska-theme" + formats: null colors: bg: "#1A181B" fg: "#FFFFFF" diff --git a/themes/neonite.yaml b/themes/neonite.yaml deleted file mode 100644 index a6f66e4e..00000000 --- a/themes/neonite.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Neonite" -source: - marketplace_id: "MohamedElsherbiny.neonite-theme" - version: "1.3.0" - installs: 628 - rating: 5 - ratings: 1 - author: "Mohamed Elsherbiny" - repo: "https://github.com/MoElsherbiny/vscode-neonite-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MohamedElsherbiny.neonite-theme" -colors: - bg: "#0A0E14" - fg: "#F0F4FC" - black: "#1A1E24" - red: "#FF6E6E" - green: "#76FF8F" - yellow: "#FFE68A" - blue: "#9D6CFF" - magenta: "#FF92DF" - cyan: "#6CF3FF" - white: "#FFFFFF" - brightBlack: "#4A4F5B" - brightRed: "#FF9191" - brightGreen: "#9AFFA9" - brightYellow: "#FFF4A3" - brightBlue: "#B28CFF" - brightMagenta: "#FFACE5" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 258 - pair: null - contrast: - fg: 100.2 - black: 0 - red: 49.5 - green: 90.3 - yellow: 91.9 - blue: 39.3 - magenta: 63.3 - cyan: 87.9 - white: 107.6 - brightBlack: 13.5 - brightRed: 59.7 - brightGreen: 93.3 - brightYellow: 98.9 - brightBlue: 51.1 - brightMagenta: 71.9 - brightCyan: 97.5 - brightWhite: 107.6 diff --git a/themes/neonmist.yaml b/themes/neonmist.yaml index 198b525a..7bc4b829 100644 --- a/themes/neonmist.yaml +++ b/themes/neonmist.yaml @@ -8,6 +8,7 @@ source: author: "lo.cafe" repo: "https://github.com/neonmist/vscode" url: "https://marketplace.visualstudio.com/items?itemName=locafe.neonmist" + formats: null colors: bg: "#252335" fg: "#999999" diff --git a/themes/neonshaded.yaml b/themes/neonshaded.yaml index 8d69788e..688d29d5 100644 --- a/themes/neonshaded.yaml +++ b/themes/neonshaded.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "kashan.NeonShaded" version: "0.0.1" installs: 36 + rating: 0 + ratings: 0 author: "kashan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kashan.NeonShaded" + formats: null colors: bg: "#1E1E1E" fg: "#BABABA" diff --git a/themes/neorose-vimpine.yaml b/themes/neorose-vimpine.yaml index 26299f05..146413e8 100644 --- a/themes/neorose-vimpine.yaml +++ b/themes/neorose-vimpine.yaml @@ -1,13 +1,14 @@ -name: "NeoRose VimPine" +name: "NeoRose-VimPine" source: marketplace_id: "rexcor.neorose-vimpine" version: "0.3.1" - installs: 2723 + installs: 2725 rating: 5 ratings: 3 author: "rexcor" repo: "https://github.com/rexcor/NeoRose-VimPine" url: "https://marketplace.visualstudio.com/items?itemName=rexcor.neorose-vimpine" + formats: null colors: bg: "#191724" fg: "#E0DEF4" diff --git a/themes/neospace.yaml b/themes/neospace.yaml index b8e4f21b..a92b6b25 100644 --- a/themes/neospace.yaml +++ b/themes/neospace.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Henriquehnnm.Neo-plus" version: "1.3.9" installs: 59 + rating: 0 + ratings: 0 author: "Henrique" repo: "https://github.com/Henriquehnnm/neoplus" url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.Neo-plus" + formats: null colors: bg: "#2C2A3D" fg: "#B7BCFF" diff --git a/themes/neospectrum-midnight.yaml b/themes/neospectrum-midnight.yaml index 7b5254d4..e251ba7a 100644 --- a/themes/neospectrum-midnight.yaml +++ b/themes/neospectrum-midnight.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "RifkiJayaAfandi.neospectrum" version: "1.0.0" installs: 29 + rating: 0 + ratings: 0 author: "Rifki Jaya Afandi" repo: "https://github.com/ikyyydev/neospectrum-theme" url: "https://marketplace.visualstudio.com/items?itemName=RifkiJayaAfandi.neospectrum" + formats: null colors: bg: "#0E141B" fg: "#F8F8F2" diff --git a/themes/neospectrum-mystic.yaml b/themes/neospectrum-mystic.yaml index 6b94ee86..9f581101 100644 --- a/themes/neospectrum-mystic.yaml +++ b/themes/neospectrum-mystic.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "RifkiJayaAfandi.neospectrum" version: "1.0.0" installs: 29 + rating: 0 + ratings: 0 author: "Rifki Jaya Afandi" repo: "https://github.com/ikyyydev/neospectrum-theme" url: "https://marketplace.visualstudio.com/items?itemName=RifkiJayaAfandi.neospectrum" + formats: null colors: bg: "#1E1B2E" fg: "#D0D0E0" diff --git a/themes/neovim-sp.yaml b/themes/neovim-sp.yaml index e9d0cbc1..852bef72 100644 --- a/themes/neovim-sp.yaml +++ b/themes/neovim-sp.yaml @@ -2,12 +2,13 @@ name: "Neovim.SP" source: marketplace_id: "suman-pakira.neovim-Sp" version: "4.5.0" - installs: 765 + installs: 766 rating: 5 ratings: 1 author: "suman-pakira" repo: "https://github.com/maxwithbug/myVscodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=suman-pakira.neovim-Sp" + formats: null colors: bg: "#25334F" fg: "#FFFFFF" diff --git a/themes/neovim-theme.yaml b/themes/neovim-theme.yaml deleted file mode 100644 index 0ad50f84..00000000 --- a/themes/neovim-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "neovim-theme" -source: - marketplace_id: "GustavoLins05.neovim-theme" - version: "4.0.0" - installs: 839 - rating: 0 - ratings: 0 - author: "Gustavo Lins" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=GustavoLins05.neovim-theme" -colors: - bg: "#141618" - fg: "#F8FAFC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 103.5 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.7 - blue: 27.5 - magenta: 29.9 - cyan: 47.7 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.7 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.5 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/nephtis-dark.yaml b/themes/nephtis-dark.yaml index 61643291..7921dcee 100644 --- a/themes/nephtis-dark.yaml +++ b/themes/nephtis-dark.yaml @@ -8,6 +8,7 @@ source: author: "Meastblue" repo: "https://github.com/meastblue/orbital-frame-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" + formats: null colors: bg: "#1A1611" fg: "#F4F0E6" diff --git a/themes/nephtis-light.yaml b/themes/nephtis-light.yaml index cf1675c4..ede50d35 100644 --- a/themes/nephtis-light.yaml +++ b/themes/nephtis-light.yaml @@ -8,6 +8,7 @@ source: author: "Meastblue" repo: "https://github.com/meastblue/orbital-frame-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Meastblue.orbital-frame" + formats: null colors: bg: "#FFFFFF" fg: "#44403C" diff --git a/themes/nerc-one-dark-a.yaml b/themes/nerc-one-dark-a.yaml index e3aa6d55..ab90f528 100644 --- a/themes/nerc-one-dark-a.yaml +++ b/themes/nerc-one-dark-a.yaml @@ -8,6 +8,7 @@ source: author: "Nercone" repo: "https://github.com/DiamondGotCat/nerc-one-themes" url: "https://marketplace.visualstudio.com/items?itemName=Nercone.nerc-one-themes" + formats: null colors: bg: "#1A1A1A" fg: "#D4D4D4" diff --git a/themes/nerc-one-dark-b.yaml b/themes/nerc-one-dark-b.yaml index 876b797d..8098e957 100644 --- a/themes/nerc-one-dark-b.yaml +++ b/themes/nerc-one-dark-b.yaml @@ -8,6 +8,7 @@ source: author: "Nercone" repo: "https://github.com/DiamondGotCat/nerc-one-themes" url: "https://marketplace.visualstudio.com/items?itemName=Nercone.nerc-one-themes" + formats: null colors: bg: "#1A1A1A" fg: "#D4D4D4" diff --git a/themes/nerd-light.yaml b/themes/nerd-light.yaml index ce98c83d..8ee37331 100644 --- a/themes/nerd-light.yaml +++ b/themes/nerd-light.yaml @@ -8,6 +8,7 @@ source: author: "Ashin Berish" repo: "https://github.com/ashinberish/nerd-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AshinBerish.nerd-theme" + formats: null colors: bg: "#EDF2F4" fg: "#171C28" diff --git a/themes/nero.yaml b/themes/nero.yaml index 2ff43673..c4d66ae5 100644 --- a/themes/nero.yaml +++ b/themes/nero.yaml @@ -8,6 +8,7 @@ source: author: "Mhirii" repo: "https://github.com/Mhirii/nero-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Mhirii.nero" + formats: null colors: bg: "#0D1C2E" fg: "#A9C7D6" diff --git a/themes/nestjs-codes.yaml b/themes/nestjs-codes.yaml deleted file mode 100644 index f7bcc0d8..00000000 --- a/themes/nestjs-codes.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "nestjs.codes" -source: - marketplace_id: "EstevamSouza.nestjs-codes-vscode-theme" - version: "0.0.4" - installs: 10567 - rating: 0 - ratings: 0 - author: "Estevam Souza" - repo: "https://github.com/estevam5s/nestjs-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=EstevamSouza.nestjs-codes-vscode-theme" -colors: - bg: "#000000" - fg: "#FF8B56" - black: "#EE0F0F" - red: "#610692" - green: "#55E513" - yellow: "#A553C6" - blue: "#F00909" - magenta: "#AE89FE" - cyan: "#708387" - white: "#D5D5D0" - brightBlack: "#FF0000" - brightRed: "#A706EC" - brightGreen: "#A308EB" - brightYellow: "#F10202" - brightBlue: "#F10707" - brightMagenta: "#F60707" - brightCyan: "#FF0D0D" - brightWhite: "#FA100C" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 56.9 - black: 33.4 - red: 9.4 - green: 74.1 - yellow: 30.8 - blue: 33.8 - magenta: 49.9 - cyan: 34.6 - white: 80.9 - brightBlack: 37.5 - brightRed: 27.1 - brightGreen: 26.4 - brightYellow: 34 - brightBlue: 34 - brightMagenta: 35.3 - brightCyan: 37.6 - brightWhite: 36.4 diff --git a/themes/netbeans-harmonized.yaml b/themes/netbeans-harmonized.yaml deleted file mode 100644 index beecd54b..00000000 --- a/themes/netbeans-harmonized.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NetBeans Harmonized" -source: - marketplace_id: "drkcode.clasic-harmonized-theme" - version: "0.0.5" - installs: 559 - rating: 0 - ratings: 0 - author: "drkcode" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=drkcode.clasic-harmonized-theme" -colors: - bg: "#F9F4E7" - fg: "#333333" - black: "#073642" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#586E75" - brightRed: "#CB4B16" - brightGreen: "#586E75" - brightYellow: "#657B83" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#93A1A1" - brightWhite: "#EEE8D5" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.2 - black: 92.5 - red: 64.1 - green: 52.6 - yellow: 52.6 - blue: 57.5 - magenta: 63.8 - cyan: 51.8 - white: 0 - brightBlack: 70.4 - brightRed: 64.6 - brightGreen: 70.4 - brightYellow: 64.5 - brightBlue: 52.3 - brightMagenta: 63.8 - brightCyan: 45.5 - brightWhite: 0 diff --git a/themes/netbilla-blue.yaml b/themes/netbilla-blue.yaml index 31d5cf1f..c9bba7ee 100644 --- a/themes/netbilla-blue.yaml +++ b/themes/netbilla-blue.yaml @@ -8,6 +8,7 @@ source: author: "Totoshi" repo: "https://github.com/aryanxxvii/fleet-theme" url: "https://marketplace.visualstudio.com/items?itemName=Totoshi.netbilla-vscode-theme-dark" + formats: null colors: bg: "#101010" fg: "#F2F2F2" diff --git a/themes/netlify-theme.yaml b/themes/netlify-theme.yaml deleted file mode 100644 index 864bf68d..00000000 --- a/themes/netlify-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Netlify Theme" -source: - marketplace_id: "ohheyjosh.netlify-vscode-theme" - version: "1.2.4" - installs: 523 - rating: 0 - ratings: 0 - author: "ohheyjosh" - repo: "https://github.com/ohheyjosh/netlify-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ohheyjosh.netlify-vscode-theme" -colors: - bg: "#0B1113" - fg: "#F7F8F8" - black: "#2D3B41" - red: "#FF6969" - green: "#43D860" - yellow: "#FFAD43" - blue: "#43B4D8" - magenta: "#C57AA2" - cyan: "#00AD9F" - white: "#F7F8F8" - brightBlack: "#2D3B41" - brightRed: "#F25481" - brightGreen: "#01DF2E" - brightYellow: "#FFD26E" - brightBlue: "#C4E8F3" - brightMagenta: "#FFB8B8" - brightCyan: "#38FFEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 220 - pair: null - contrast: - fg: 102.7 - black: 0 - red: 48.2 - green: 67.2 - yellow: 67.4 - blue: 54.7 - magenta: 43 - cyan: 48 - white: 102.7 - brightBlack: 0 - brightRed: 41.9 - brightGreen: 69.4 - brightYellow: 82.5 - brightBlue: 88.6 - brightMagenta: 74.1 - brightCyan: 91.3 - brightWhite: 107.4 diff --git a/themes/netlify.yaml b/themes/netlify.yaml deleted file mode 100644 index d42a9754..00000000 --- a/themes/netlify.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Netlify" -source: - marketplace_id: "austincondiff.netlify-vscode-theme" - version: "1.0.4" - installs: 4682 - rating: 5 - ratings: 3 - author: "Austin Condiff" - repo: "https://github.com/austincondiff/netlify-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=austincondiff.netlify-vscode-theme" -colors: - bg: "#FFFFFF" - fg: "#0E1E25" - black: "#E3E4EB" - red: "#D04747" - green: "#7BA63B" - yellow: "#E3A323" - blue: "#6749D0" - magenta: "#B74A9D" - cyan: "#00978F" - white: "#0E1E25" - brightBlack: "#616C7A" - brightRed: "#FFA5A5" - brightGreen: "#CDECA1" - brightYellow: "#FFE98D" - brightBlue: "#BAA6FF" - brightMagenta: "#F5A8E3" - brightCyan: "#78F0E6" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 103.9 - black: 13.3 - red: 70.2 - green: 54.5 - yellow: 43.1 - blue: 79.9 - magenta: 71.9 - cyan: 63 - white: 103.9 - brightBlack: 76.6 - brightRed: 35.4 - brightGreen: 15 - brightYellow: 10.5 - brightBlue: 41.1 - brightMagenta: 33.6 - brightCyan: 17.6 - brightWhite: 0 diff --git a/themes/netrunnaz.yaml b/themes/netrunnaz.yaml index 3a4775c5..e7959c4e 100644 --- a/themes/netrunnaz.yaml +++ b/themes/netrunnaz.yaml @@ -8,6 +8,7 @@ source: author: "netrunnaz" repo: "https://github.com/netrunnaz/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=netrunnaz.netrunnaz" + formats: null colors: bg: "#191A1F" fg: "#888888" diff --git a/themes/netstack.yaml b/themes/netstack.yaml index 051fe549..4f7002f0 100644 --- a/themes/netstack.yaml +++ b/themes/netstack.yaml @@ -8,6 +8,7 @@ source: author: "euheimr" repo: "https://github.com/euheimr/netstack-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=euheimr.netstack" + formats: null colors: bg: "#0F0F0F" fg: "#CBCBCB" diff --git a/themes/nettsi-monokai-darker.yaml b/themes/nettsi-monokai-darker.yaml index 62b761f9..0788ce78 100644 --- a/themes/nettsi-monokai-darker.yaml +++ b/themes/nettsi-monokai-darker.yaml @@ -8,6 +8,7 @@ source: author: "overengineer" repo: null url: "https://marketplace.visualstudio.com/items?itemName=overengineer.nettsi-monokai-dark" + formats: null colors: bg: "#07080A" fg: "#D4D4D4" diff --git a/themes/netuno.yaml b/themes/netuno.yaml index ca4ff2a2..1f8ceb83 100644 --- a/themes/netuno.yaml +++ b/themes/netuno.yaml @@ -8,6 +8,7 @@ source: author: "Doug Bichir" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DougBichir.themes" + formats: null colors: bg: "#052022" fg: "#89DDFF" diff --git a/themes/neumatter-night.yaml b/themes/neumatter-night.yaml index 6da776bc..4e1327a2 100644 --- a/themes/neumatter-night.yaml +++ b/themes/neumatter-night.yaml @@ -8,6 +8,7 @@ source: author: "cal" repo: "https://github.com/Clyng57/neumatter-theme" url: "https://marketplace.visualstudio.com/items?itemName=cal.neumatter-theme" + formats: null colors: bg: "#292929" fg: "#F2F2F2" diff --git a/themes/neuraltone.yaml b/themes/neuraltone.yaml index 6cb69e24..98e16bc4 100644 --- a/themes/neuraltone.yaml +++ b/themes/neuraltone.yaml @@ -8,6 +8,7 @@ source: author: "Kaio Dutra" repo: "https://github.com/kaioodutra/neural-tone-theme" url: "https://marketplace.visualstudio.com/items?itemName=KaioDutra.neural-tone-theme" + formats: null colors: bg: "#02021C" fg: "#DFDFF4" diff --git a/themes/neutral-gray-minimalism-focus.yaml b/themes/neutral-gray-minimalism-focus.yaml index 5a578000..cf286f1f 100644 --- a/themes/neutral-gray-minimalism-focus.yaml +++ b/themes/neutral-gray-minimalism-focus.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#1A1A1A" fg: "#FAFAFA" diff --git a/themes/neutral.yaml b/themes/neutral.yaml index b260b81a..29b9ccea 100644 --- a/themes/neutral.yaml +++ b/themes/neutral.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://git@github.com/yesomac/vs-sober" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.sober-code" + formats: null colors: bg: "#15161A" fg: "#EEFFFF" diff --git a/themes/neutralvi.yaml b/themes/neutralvi.yaml deleted file mode 100644 index e2ef14cc..00000000 --- a/themes/neutralvi.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NeutralVI" -source: - marketplace_id: "YesCode.neutral" - version: "0.0.9" - installs: 608 - rating: 5 - ratings: 1 - author: "YesCode" - repo: "https://github.com/yesomac/NeutralThemeVSC" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.neutral" -colors: - bg: "#0C0104" - fg: "#FEEEFF" - black: "#1D2021" - red: "#FB543F" - green: "#95C085" - yellow: "#FAC03B" - blue: "#00A1F9" - magenta: "#8F4673" - cyan: "#8BA59B" - white: "#A89984" - brightBlack: "#665C54" - brightRed: "#FB543F" - brightGreen: "#F9F8FA" - brightYellow: "#20473A" - brightBlue: "#0D6678" - brightMagenta: "#8F4673" - brightCyan: "#8BA59B" - brightWhite: "#FDF4C1" -meta: - mode: "dark" - accent: "orange" - hue: 358 - pair: null - contrast: - fg: 99.8 - black: 0 - red: 42.9 - green: 61.9 - yellow: 74 - blue: 48.5 - magenta: 20.5 - cyan: 50.4 - white: 48.2 - brightBlack: 19.5 - brightRed: 42.9 - brightGreen: 103.4 - brightYellow: 8.5 - brightBlue: 19.7 - brightMagenta: 20.5 - brightCyan: 50.4 - brightWhite: 99.8 diff --git a/themes/neutron.yaml b/themes/neutron.yaml index b074262c..227b9359 100644 --- a/themes/neutron.yaml +++ b/themes/neutron.yaml @@ -8,6 +8,7 @@ source: author: "Avetis" repo: "https://github.com/AvetisDN/neutron-palette" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.neutron-palette" + formats: null colors: bg: "#24262B" fg: "#E6E8EF" diff --git a/themes/nevada.yaml b/themes/nevada.yaml index 7747e9f1..e5029d43 100644 --- a/themes/nevada.yaml +++ b/themes/nevada.yaml @@ -8,6 +8,7 @@ source: author: "leecommamichael" repo: null url: "https://marketplace.visualstudio.com/items?itemName=michaellee.nevada-color-theme" + formats: null colors: bg: "#5AC0AD" fg: "#000000" diff --git a/themes/nevejestvo-theme.yaml b/themes/nevejestvo-theme.yaml index a3556c30..fc4239ed 100644 --- a/themes/nevejestvo-theme.yaml +++ b/themes/nevejestvo-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "nevejestvo.nevejestvo-theme" version: "0.0.3" installs: 68 + rating: 0 + ratings: 0 author: "nevejestvo" repo: "https://github.com/nevejestvo/nevejestvo-theme" url: "https://marketplace.visualstudio.com/items?itemName=nevejestvo.nevejestvo-theme" + formats: null colors: bg: "#273136" fg: "#D4D4D4" diff --git a/themes/never-be-lost-day.yaml b/themes/never-be-lost-day.yaml index 173e59cc..6cc447ec 100644 --- a/themes/never-be-lost-day.yaml +++ b/themes/never-be-lost-day.yaml @@ -8,6 +8,7 @@ source: author: "Fred Vatin" repo: "https://github.com/Fred-Vatin/never-be-lost" url: "https://marketplace.visualstudio.com/items?itemName=Fred-Vatin.never-be-lost" + formats: null colors: bg: "#1E2224" fg: "#E7E7E7" diff --git a/themes/never-be-lost-night.yaml b/themes/never-be-lost-night.yaml index ca811667..d4911579 100644 --- a/themes/never-be-lost-night.yaml +++ b/themes/never-be-lost-night.yaml @@ -8,6 +8,7 @@ source: author: "Fred Vatin" repo: "https://github.com/Fred-Vatin/never-be-lost" url: "https://marketplace.visualstudio.com/items?itemName=Fred-Vatin.never-be-lost" + formats: null colors: bg: "#131415" fg: "#E7E7E7" diff --git a/themes/nevermore.yaml b/themes/nevermore.yaml index e7f9e4cb..c45a6a94 100644 --- a/themes/nevermore.yaml +++ b/themes/nevermore.yaml @@ -8,6 +8,7 @@ source: author: "Cassio Cardoso" repo: "https://github.com/cassiocardoso/nevermore-theme" url: "https://marketplace.visualstudio.com/items?itemName=cassiocardoso.nevermore" + formats: null colors: bg: "#131214" fg: "#F4F3F3" diff --git a/themes/neverwhere.yaml b/themes/neverwhere.yaml index 08c65f21..d1cdb23f 100644 --- a/themes/neverwhere.yaml +++ b/themes/neverwhere.yaml @@ -8,6 +8,7 @@ source: author: "Tylan Davis" repo: "https://github.com/tylandavis/neverwhere-theme" url: "https://marketplace.visualstudio.com/items?itemName=tylandavis.neverwhere-theme" + formats: null colors: bg: "#1D1F1F" fg: "#B0C9C9" diff --git a/themes/nevo-black.yaml b/themes/nevo-black.yaml index 95ee003b..7c84056d 100644 --- a/themes/nevo-black.yaml +++ b/themes/nevo-black.yaml @@ -8,6 +8,7 @@ source: author: "nevo" repo: "https://github.com/iknevo/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=nevo.nevo-theme" + formats: null colors: bg: "#000000" fg: "#B2CACD" diff --git a/themes/nevo-comfy.yaml b/themes/nevo-comfy.yaml index 3a49eecc..bbafba69 100644 --- a/themes/nevo-comfy.yaml +++ b/themes/nevo-comfy.yaml @@ -8,6 +8,7 @@ source: author: "nevo" repo: "https://github.com/iknevo/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=nevo.nevo-theme" + formats: null colors: bg: "#1D2021" fg: "#85EFFF" diff --git a/themes/nevo-pro.yaml b/themes/nevo-pro.yaml deleted file mode 100644 index 5db5ac4e..00000000 --- a/themes/nevo-pro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NEVO pro" -source: - marketplace_id: "nevo.nevo-theme" - version: "19.3.1" - installs: 377 - rating: 5 - ratings: 1 - author: "nevo" - repo: "https://github.com/iknevo/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nevo.nevo-theme" -colors: - bg: "#0A0F17" - fg: "#BAC6DB" - black: "#01060E" - red: "#EA6C73" - green: "#91B362" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#FAE994" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#C2D94C" - brightYellow: "#FFB454" - brightBlue: "#69C8FF" - brightMagenta: "#FFEE99" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 260 - pair: null - contrast: - fg: 71.3 - black: 0 - red: 44.7 - green: 54.8 - yellow: 67.2 - blue: 61.2 - magenta: 92.6 - cyan: 78.5 - white: 72.3 - brightBlack: 23.5 - brightRed: 47.2 - brightGreen: 76.5 - brightYellow: 70.2 - brightBlue: 67.4 - brightMagenta: 95.8 - brightCyan: 81.5 - brightWhite: 107.5 diff --git a/themes/nevo.yaml b/themes/nevo.yaml index 62721e02..dc460e2a 100644 --- a/themes/nevo.yaml +++ b/themes/nevo.yaml @@ -8,6 +8,7 @@ source: author: "nevo" repo: "https://github.com/iknevo/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=nevo.nevo-theme" + formats: null colors: bg: "#021012" fg: "#B2CACD" diff --git a/themes/new-england-light-theme.yaml b/themes/new-england-light-theme.yaml deleted file mode 100644 index bd7c29fc..00000000 --- a/themes/new-england-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "New England light theme" -source: - marketplace_id: "dustypomerleau.new-england" - version: "0.10.0" - installs: 7010 - rating: 5 - ratings: 1 - author: "Dusty Pomerleau" - repo: "https://github.com/dustypomerleau/new-england" - url: "https://marketplace.visualstudio.com/items?itemName=dustypomerleau.new-england" -colors: - bg: "#FDF1D4" - fg: "#3E454E" - black: "#3E454E" - red: "#660000" - green: "#859900" - yellow: "#664400" - blue: "#43596F" - magenta: "#490049" - cyan: "#2C5851" - white: "#97907F" - brightBlack: "#3A485B" - brightRed: "#800000" - brightGreen: "#859900" - brightYellow: "#9A4E32" - brightBlue: "#587182" - brightMagenta: "#490049" - brightCyan: "#407875" - brightWhite: "#585550" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 84.6 - black: 84.6 - red: 89.9 - green: 51.1 - yellow: 81.9 - blue: 77.2 - magenta: 92.9 - cyan: 79.7 - white: 51 - brightBlack: 83.5 - brightRed: 85 - brightGreen: 51.1 - brightYellow: 71.6 - brightBlue: 67.4 - brightMagenta: 92.9 - brightCyan: 66.8 - brightWhite: 77.9 diff --git a/themes/new-moon.yaml b/themes/new-moon.yaml deleted file mode 100644 index 0599dea0..00000000 --- a/themes/new-moon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "New Moon" -source: - marketplace_id: "ganevru.solid-moon-theme" - version: "0.0.7" - installs: 667 - rating: 0 - ratings: 0 - author: "ganevru" - repo: "https://github.com/ganevru/solid-moon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ganevru.solid-moon-theme" -colors: - bg: "#2D2D2D" - fg: "#B3B9C5" - black: "#666666" - red: "#F2777A" - green: "#92D192" - yellow: "#FFD479" - blue: "#6AB0F3" - magenta: "#E1A6F2" - cyan: "#62CFCF" - white: "#FFFFFF" - brightBlack: "#777777" - brightRed: "#F2777A" - brightGreen: "#92D192" - brightYellow: "#FFD479" - brightBlue: "#6AB0F3" - brightMagenta: "#E1A6F2" - brightCyan: "#62CFCF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 60 - black: 18.6 - red: 45.1 - green: 65.3 - yellow: 79.5 - blue: 52.4 - magenta: 61.4 - cyan: 63.5 - white: 103.4 - brightBlack: 26.1 - brightRed: 45.1 - brightGreen: 65.3 - brightYellow: 79.5 - brightBlue: 52.4 - brightMagenta: 61.4 - brightCyan: 63.5 - brightWhite: 103.4 diff --git a/themes/new-owl.yaml b/themes/new-owl.yaml index 7564aa19..c5f5eaf3 100644 --- a/themes/new-owl.yaml +++ b/themes/new-owl.yaml @@ -8,6 +8,7 @@ source: author: "CarlosVQ" repo: "https://github.com/carlosvq/vscode-new-owl" url: "https://marketplace.visualstudio.com/items?itemName=CarlosVQ.vscode-new-owl" + formats: null colors: bg: "#0A1D2B" fg: "#CDD3DE" diff --git a/themes/new-retro.yaml b/themes/new-retro.yaml index 920224a8..3b79f757 100644 --- a/themes/new-retro.yaml +++ b/themes/new-retro.yaml @@ -1,4 +1,4 @@ -name: "New Retro" +name: "new-retro" source: marketplace_id: "new-retro.new-retro" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "New Retro" repo: null url: "https://marketplace.visualstudio.com/items?itemName=new-retro.new-retro" + formats: null colors: bg: "#25272E" fg: "#B3B9C5" diff --git a/themes/new-south-wales-dark.yaml b/themes/new-south-wales-dark.yaml index 4bc84b49..b5dc14e3 100644 --- a/themes/new-south-wales-dark.yaml +++ b/themes/new-south-wales-dark.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.new-south-wales-theme" + formats: null colors: bg: "#0D0E14" fg: "#E8EDF3" diff --git a/themes/new-south-wales-light.yaml b/themes/new-south-wales-light.yaml index 90d4b5b2..b6802c3d 100644 --- a/themes/new-south-wales-light.yaml +++ b/themes/new-south-wales-light.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.new-south-wales-theme" + formats: null colors: bg: "#FFFFFF" fg: "#0D0E14" diff --git a/themes/new-sphere.yaml b/themes/new-sphere.yaml index 9f1ec389..eb3efa68 100644 --- a/themes/new-sphere.yaml +++ b/themes/new-sphere.yaml @@ -8,6 +8,7 @@ source: author: "Sharaf Feyzullayev" repo: "https://github.com/FSharafff/new-sphere" url: "https://marketplace.visualstudio.com/items?itemName=FSharaf.new-sphere" + formats: null colors: bg: "#0C0C0F" fg: "#D4D4D4" diff --git a/themes/new-theme.yaml b/themes/new-theme.yaml index cc2bd039..c49cdc2e 100644 --- a/themes/new-theme.yaml +++ b/themes/new-theme.yaml @@ -8,6 +8,7 @@ source: author: "undefined" repo: "https://github.com/Abipravi1/abipravitheme" url: "https://marketplace.visualstudio.com/items?itemName=undefined.abipravi" + formats: null colors: bg: "#0B000F" fg: "#00FF58" diff --git a/themes/new-wave-theme.yaml b/themes/new-wave-theme.yaml index d5ae970e..4037c85b 100644 --- a/themes/new-wave-theme.yaml +++ b/themes/new-wave-theme.yaml @@ -1,4 +1,4 @@ -name: "new-wave-theme" +name: "New Wave Theme" source: marketplace_id: "Fdiazg.new-wave-theme" version: "0.0.2" @@ -8,6 +8,7 @@ source: author: "Fdiazg" repo: "https://github.com/Fdiazg/new-wave-theme" url: "https://marketplace.visualstudio.com/items?itemName=Fdiazg.new-wave-theme" + formats: null colors: bg: "#262335" fg: "#EEFFFF" diff --git a/themes/newdarktheme.yaml b/themes/newdarktheme.yaml index 35093b4b..e4b52436 100644 --- a/themes/newdarktheme.yaml +++ b/themes/newdarktheme.yaml @@ -8,6 +8,7 @@ source: author: "FeliksLv" repo: "https://github.com/FeliksLv01/NewDarkTheme" url: "https://marketplace.visualstudio.com/items?itemName=FeliksLv.new-dark" + formats: null colors: bg: "#1E1F22" fg: "#CECDCE" diff --git a/themes/newera-dark-theme.yaml b/themes/newera-dark-theme.yaml deleted file mode 100644 index fddb8f7a..00000000 --- a/themes/newera-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Newera Dark Theme" -source: - marketplace_id: "sguerson.newera-theme" - version: "1.1.2" - installs: 49 - rating: 0 - ratings: 0 - author: "sguerson" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=sguerson.newera-theme" -colors: - bg: "#1A1E2C" - fg: "#E0E0E0" - black: "#CECFD3" - red: "#BCBCBC" - green: "#B2B2B2" - yellow: "#E9FF70" - blue: "#E9FF70" - magenta: "#8367C7" - cyan: "#70D6FF" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#ADADAB" - brightGreen: "#E9FF70" - brightYellow: "#8367C7" - brightBlue: "#8367C7" - brightMagenta: "#70D6FF" - brightCyan: "#C2C0C1" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: 272 - pair: null - contrast: - fg: 86 - black: 75.6 - red: 64.4 - green: 58.7 - yellow: 98.5 - blue: 98.5 - magenta: 29.1 - cyan: 72.5 - white: 89.1 - brightBlack: 21.1 - brightRed: 55.9 - brightGreen: 98.5 - brightYellow: 29.1 - brightBlue: 29.1 - brightMagenta: 72.5 - brightCyan: 67 - brightWhite: 89.1 diff --git a/themes/newrailscasts.yaml b/themes/newrailscasts.yaml deleted file mode 100644 index e5191f9f..00000000 --- a/themes/newrailscasts.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NewRailscasts" -source: - marketplace_id: "carakan.new-railscasts" - version: "1.0.68" - installs: 4018 - rating: 4.75 - ratings: 4 - author: "Carlos Ramos" - repo: "https://github.com/carakan/new-railscasts-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=carakan.new-railscasts" -colors: - bg: "#202020" - fg: "#FEF9E1" - black: "#212121" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#F3F5F5" - brightBlack: "#4A4A4A" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 101.4 - black: 0 - red: 45.5 - green: 83.1 - yellow: 77.8 - blue: 54.8 - magenta: 52.6 - cyan: 77.1 - white: 98.9 - brightBlack: 9.8 - brightRed: 45.5 - brightGreen: 83.1 - brightYellow: 77.8 - brightBlue: 54.8 - brightMagenta: 52.6 - brightCyan: 77.1 - brightWhite: 105.8 diff --git a/themes/newspaperlike.yaml b/themes/newspaperlike.yaml index c2b717d0..904f96fe 100644 --- a/themes/newspaperlike.yaml +++ b/themes/newspaperlike.yaml @@ -8,6 +8,7 @@ source: author: "PaperFanz" repo: "https://github.com/PaperFanz/newspaperlike" url: "https://marketplace.visualstudio.com/items?itemName=PaperFanz.newspaperlike" + formats: null colors: bg: "#D8D8D8" fg: "#272727" diff --git a/themes/newsprint-invert.yaml b/themes/newsprint-invert.yaml index e876b7c1..1aad0d86 100644 --- a/themes/newsprint-invert.yaml +++ b/themes/newsprint-invert.yaml @@ -8,6 +8,8 @@ source: author: "lumiknit" repo: "https://github.com/lumiknit/vscode-newsprint-theme" url: "https://marketplace.visualstudio.com/items?itemName=lumiknit.newsprint" + formats: + sublime: "https://raw.githubusercontent.com/lumiknit/vscode-newsprint-theme/main/Newsprint.tmTheme" colors: bg: "#1F1F1F" fg: "#BBBBBB" diff --git a/themes/newsprint-so.yaml b/themes/newsprint-so.yaml index 76b49185..ce450e86 100644 --- a/themes/newsprint-so.yaml +++ b/themes/newsprint-so.yaml @@ -8,6 +8,8 @@ source: author: "lumiknit" repo: "https://github.com/lumiknit/vscode-newsprint-theme" url: "https://marketplace.visualstudio.com/items?itemName=lumiknit.newsprint" + formats: + sublime: "https://raw.githubusercontent.com/lumiknit/vscode-newsprint-theme/main/Newsprint.tmTheme" colors: bg: "#F2F2F2" fg: "#0C0D0F" diff --git a/themes/newsprint.yaml b/themes/newsprint.yaml index 7eb374da..6705a9bf 100644 --- a/themes/newsprint.yaml +++ b/themes/newsprint.yaml @@ -8,6 +8,8 @@ source: author: "lumiknit" repo: "https://github.com/lumiknit/vscode-newsprint-theme" url: "https://marketplace.visualstudio.com/items?itemName=lumiknit.newsprint" + formats: + sublime: "https://raw.githubusercontent.com/lumiknit/vscode-newsprint-theme/main/Newsprint.tmTheme" colors: bg: "#F2F2F2" fg: "#444444" diff --git a/themes/newton-contrast.yaml b/themes/newton-contrast.yaml deleted file mode 100644 index b0ccef99..00000000 --- a/themes/newton-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "newton-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#121014" - fg: "#EAEBFF" - black: "#1F1B22" - red: "#BA0E2E" - green: "#FA824C" - yellow: "#FFBF69" - blue: "#3C91E6" - magenta: "#FA824C" - cyan: "#FFBF69" - white: "#FFFFFF" - brightBlack: "#453D4D" - brightRed: "#F03E5F" - brightGreen: "#FDC7AF" - brightYellow: "#FFEBCF" - brightBlue: "#96C4F2" - brightMagenta: "#FDC7AF" - brightCyan: "#FFEBCF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 95.2 - black: 0 - red: 21 - green: 52.7 - yellow: 74.6 - blue: 41.4 - magenta: 52.7 - cyan: 74.6 - white: 107.4 - brightBlack: 8 - brightRed: 37.3 - brightGreen: 79.2 - brightYellow: 96 - brightBlue: 67.9 - brightMagenta: 79.2 - brightCyan: 96 - brightWhite: 107.4 diff --git a/themes/newton-light.yaml b/themes/newton-light.yaml deleted file mode 100644 index abc6e4b2..00000000 --- a/themes/newton-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "newton-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#FA824C" - yellow: "#FFBF69" - blue: "#3C91E6" - magenta: "#FA824C" - cyan: "#FFBF69" - white: "#515151" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#FDC7AF" - brightYellow: "#FFEBCF" - brightBlue: "#96C4F2" - brightMagenta: "#FDC7AF" - brightCyan: "#FFEBCF" - brightWhite: "#777777" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 80.3 - green: 48.8 - yellow: 27.8 - blue: 59.9 - magenta: 48.8 - cyan: 27.8 - white: 87.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 23.5 - brightYellow: 7.8 - brightBlue: 34.2 - brightMagenta: 23.5 - brightCyan: 7.8 - brightWhite: 71.1 diff --git a/themes/newton-next-official.yaml b/themes/newton-next-official.yaml index 110e8b53..223370ca 100644 --- a/themes/newton-next-official.yaml +++ b/themes/newton-next-official.yaml @@ -8,6 +8,7 @@ source: author: "Marco Bertolini" repo: "https://github.com/bertolinimarco/vscode-theme-newton-next" url: "https://marketplace.visualstudio.com/items?itemName=devberto.theme-newton-next" + formats: null colors: bg: "#1A1A1A" fg: "#CBCCC6" diff --git a/themes/newton.yaml b/themes/newton.yaml deleted file mode 100644 index 11853ca6..00000000 --- a/themes/newton.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "newton" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#342E37" - fg: "#EAEBFF" - black: "#413A45" - red: "#BA0E2E" - green: "#FA824C" - yellow: "#FFBF69" - blue: "#3C91E6" - magenta: "#FA824C" - cyan: "#FFBF69" - white: "#FFFFFF" - brightBlack: "#695C6F" - brightRed: "#F03E5F" - brightGreen: "#FDC7AF" - brightYellow: "#FFEBCF" - brightBlue: "#96C4F2" - brightMagenta: "#FDC7AF" - brightCyan: "#FFEBCF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 315 - pair: null - contrast: - fg: 90.5 - black: 0 - red: 16.4 - green: 48.1 - yellow: 70 - blue: 36.7 - magenta: 48.1 - cyan: 70 - white: 102.7 - brightBlack: 15.6 - brightRed: 32.7 - brightGreen: 74.5 - brightYellow: 91.4 - brightBlue: 63.2 - brightMagenta: 74.5 - brightCyan: 91.4 - brightWhite: 102.7 diff --git a/themes/newx-light.yaml b/themes/newx-light.yaml index ccd4e8c0..1d4aadb8 100644 --- a/themes/newx-light.yaml +++ b/themes/newx-light.yaml @@ -8,6 +8,7 @@ source: author: "xiongshuo" repo: "http://gitlab.alibaba-inc.com/ais-cost-group/time-manager" url: "https://marketplace.visualstudio.com/items?itemName=xiongshuo1225.newx-time-manager" + formats: null colors: bg: "#F6F7FA" fg: "#2B3547" diff --git a/themes/next-theme.yaml b/themes/next-theme.yaml index afd33dd7..4ad53a0c 100644 --- a/themes/next-theme.yaml +++ b/themes/next-theme.yaml @@ -8,6 +8,7 @@ source: author: "akirco" repo: "https://github.com/akirco/seaBear-theme" url: "https://marketplace.visualstudio.com/items?itemName=akirco.seabear-theme" + formats: null colors: bg: "#1F2023" fg: "#8DBCA4" diff --git a/themes/nextcode.yaml b/themes/nextcode.yaml index 00352922..6a49cada 100644 --- a/themes/nextcode.yaml +++ b/themes/nextcode.yaml @@ -8,6 +8,7 @@ source: author: "Abraham" repo: "https://github.com/abeprincec/nextcode" url: "https://marketplace.visualstudio.com/items?itemName=Abraham.nextcode" + formats: null colors: bg: "#162636" fg: "#FFFFFF" diff --git a/themes/nextgen-terminal.yaml b/themes/nextgen-terminal.yaml deleted file mode 100644 index b01e6cad..00000000 --- a/themes/nextgen-terminal.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "NextGen Terminal" -source: - marketplace_id: "nextgencode.nextgen-terminal" - version: "1.2.1" - installs: 105 - author: "NextGenCode" - repo: "https://github.com/Mattzey/nextgen-terminal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" -colors: - bg: "#000000" - fg: "#00FF41" - black: "#000000" - red: "#FF0055" - green: "#00FF41" - yellow: "#FFAA00" - blue: "#00AAFF" - magenta: "#FF00FF" - cyan: "#00D9FF" - white: "#FFFFFF" - brightBlack: "#4A4A4A" - brightRed: "#FF3377" - brightGreen: "#39FF14" - brightYellow: "#FFC107" - brightBlue: "#2196F3" - brightMagenta: "#FF77FF" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 86.7 - black: 0 - red: 38.2 - green: 86.7 - yellow: 66.5 - blue: 52.5 - magenta: 46.2 - cyan: 73.3 - white: 107.9 - brightBlack: 12 - brightRed: 40.9 - brightGreen: 87 - brightYellow: 75.1 - brightBlue: 44 - brightMagenta: 58.4 - brightCyan: 92.2 - brightWhite: 107.9 diff --git a/themes/nexus-dark.yaml b/themes/nexus-dark.yaml index 13d6382d..da182f6d 100644 --- a/themes/nexus-dark.yaml +++ b/themes/nexus-dark.yaml @@ -8,6 +8,7 @@ source: author: "Pankaj Ghosh" repo: "https://github.com/iampankajghosh/nexus-dark" url: "https://marketplace.visualstudio.com/items?itemName=pankajghosh.nexus-dark" + formats: null colors: bg: "#0C0C0C" fg: "#FAFAFA" diff --git a/themes/nexus.yaml b/themes/nexus.yaml index 8483bb1d..a3898850 100644 --- a/themes/nexus.yaml +++ b/themes/nexus.yaml @@ -8,6 +8,7 @@ source: author: "Zac de Lusignan" repo: "https://github.com/lusignan/nexus-vscode" url: "https://marketplace.visualstudio.com/items?itemName=lusignan.nexus" + formats: null colors: bg: "#21222A" fg: "#A3A9D0" diff --git a/themes/ngc-aurora-dawn.yaml b/themes/ngc-aurora-dawn.yaml deleted file mode 100644 index dbd68d17..00000000 --- a/themes/ngc-aurora-dawn.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NGC Aurora Dawn" -source: - marketplace_id: "nextgencode.ngen-themes" - version: "1.1.0" - installs: 73 - rating: 0 - ratings: 0 - author: "NextGenCode" - repo: "https://github.com/Mattzey/Ngen-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" -colors: - bg: "#F8F6FF" - fg: "#1A2332" - black: "#2C3E50" - red: "#D63447" - green: "#4BC98A" - yellow: "#E68935" - blue: "#3D9AED" - magenta: "#B794F6" - cyan: "#4BC98A" - white: "#8A95A6" - brightBlack: "#556575" - brightRed: "#E54D5F" - brightGreen: "#5FD49F" - brightYellow: "#F09C4D" - brightBlue: "#57B0FF" - brightMagenta: "#CAAAF9" - brightCyan: "#5FD49F" - brightWhite: "#E8EDF2" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "NGC Aurora Night" - contrast: - fg: 98 - black: 90.7 - red: 66.6 - green: 35.9 - yellow: 46.1 - blue: 51.3 - magenta: 43.3 - cyan: 35.9 - white: 52.4 - brightBlack: 75.2 - brightRed: 59.6 - brightGreen: 29.6 - brightYellow: 38.2 - brightBlue: 40.7 - brightMagenta: 33.3 - brightCyan: 29.6 - brightWhite: 0 diff --git a/themes/ngc-aurora-night.yaml b/themes/ngc-aurora-night.yaml deleted file mode 100644 index dc571948..00000000 --- a/themes/ngc-aurora-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NGC Aurora Night" -source: - marketplace_id: "nextgencode.ngen-themes" - version: "1.1.0" - installs: 73 - rating: 0 - ratings: 0 - author: "NextGenCode" - repo: "https://github.com/Mattzey/Ngen-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" -colors: - bg: "#1B2028" - fg: "#E0E6ED" - black: "#151A1F" - red: "#FF6B80" - green: "#5DE4A4" - yellow: "#FFB560" - blue: "#57B5FF" - magenta: "#B794F6" - cyan: "#5DE4A4" - white: "#E0E6ED" - brightBlack: "#6B7B8C" - brightRed: "#FF8599" - brightGreen: "#75F0BC" - brightYellow: "#FFC47A" - brightBlue: "#73C6FF" - brightMagenta: "#CAAAF9" - brightCyan: "#75F0BC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 260 - pair: "NGC Aurora Dawn" - contrast: - fg: 89.1 - black: 0 - red: 47.5 - green: 74 - yellow: 69 - blue: 56.6 - magenta: 51.9 - cyan: 74 - white: 89.1 - brightBlack: 29.5 - brightRed: 54.8 - brightGreen: 82 - brightYellow: 75.3 - brightBlue: 65.4 - brightMagenta: 62.2 - brightCyan: 82 - brightWhite: 105.8 diff --git a/themes/ngc-forest-retreat.yaml b/themes/ngc-forest-retreat.yaml deleted file mode 100644 index 760f7913..00000000 --- a/themes/ngc-forest-retreat.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NGC Forest Retreat" -source: - marketplace_id: "nextgencode.ngen-themes" - version: "1.1.0" - installs: 73 - rating: 0 - ratings: 0 - author: "NextGenCode" - repo: "https://github.com/Mattzey/Ngen-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" -colors: - bg: "#1D2321" - fg: "#D9DCD6" - black: "#1D2321" - red: "#D97969" - green: "#86B98A" - yellow: "#D4A574" - blue: "#77A5A5" - magenta: "#C8A8B8" - cyan: "#86B98A" - white: "#D9DCD6" - brightBlack: "#6B7D70" - brightRed: "#E99484" - brightGreen: "#9FCDA3" - brightYellow: "#E4BC8F" - brightBlue: "#8FBFBF" - brightMagenta: "#DABCCB" - brightCyan: "#9FCDA3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82.4 - black: 0 - red: 42.4 - green: 55.4 - yellow: 56 - blue: 46.8 - magenta: 57.5 - cyan: 55.4 - white: 82.4 - brightBlack: 28.9 - brightRed: 54.1 - brightGreen: 67.2 - brightYellow: 67.9 - brightBlue: 60.7 - brightMagenta: 68.6 - brightCyan: 67.2 - brightWhite: 105.5 diff --git a/themes/ngc-midnight-base.yaml b/themes/ngc-midnight-base.yaml deleted file mode 100644 index 7a011522..00000000 --- a/themes/ngc-midnight-base.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NGC Midnight Base" -source: - marketplace_id: "nextgencode.ngen-themes" - version: "1.1.0" - installs: 73 - rating: 0 - ratings: 0 - author: "NextGenCode" - repo: "https://github.com/Mattzey/Ngen-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" -colors: - bg: "#1A1D23" - fg: "#D4D4D6" - black: "#151820" - red: "#FF6B6B" - green: "#7DD3A0" - yellow: "#DCC38B" - blue: "#6FA0E6" - magenta: "#E8A5C2" - cyan: "#7DD3A0" - white: "#D4D4D6" - brightBlack: "#6B7280" - brightRed: "#FF8585" - brightGreen: "#95E7B5" - brightYellow: "#E8D1A0" - brightBlue: "#8AB7F0" - brightMagenta: "#F2BFD8" - brightCyan: "#95E7B5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 78.9 - black: 0 - red: 47.4 - green: 67.8 - yellow: 70.1 - blue: 48.3 - magenta: 62.5 - cyan: 67.8 - white: 78.9 - brightBlack: 26.4 - brightRed: 54.5 - brightGreen: 79.8 - brightYellow: 78.4 - brightBlue: 60.1 - brightMagenta: 74.7 - brightCyan: 79.8 - brightWhite: 106.2 diff --git a/themes/ngoding-bro.yaml b/themes/ngoding-bro.yaml index 003e40dc..b72e4283 100644 --- a/themes/ngoding-bro.yaml +++ b/themes/ngoding-bro.yaml @@ -8,6 +8,7 @@ source: author: "Micola Arighi" repo: "https://github.com/micolarighi/my-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=MicolaArighi.ngoding-bro" + formats: null colors: bg: "#252934" fg: "#D4D4D4" diff --git a/themes/nibelung-dark.yaml b/themes/nibelung-dark.yaml deleted file mode 100644 index fb529610..00000000 --- a/themes/nibelung-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nibelung Dark" -source: - marketplace_id: "veschin.nibelung-theme-vscode" - version: "0.1.0" - installs: 82 - rating: 5 - ratings: 2 - author: "Oleg Veschin" - repo: "https://github.com/veschin/nibelung-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=veschin.nibelung-theme-vscode" -colors: - bg: "#212529" - fg: "#ADB5BD" - black: "#343A40" - red: "#FFADAD" - green: "#CAFFBF" - yellow: "#FDFFB6" - blue: "#9FA0FF" - magenta: "#FFC6FF" - cyan: "#9BF6FF" - white: "#FFD6A5" - brightBlack: "#495057" - brightRed: "#FFADAD" - brightGreen: "#CAFFBF" - brightYellow: "#FDFFB6" - brightBlue: "#9BF6FF" - brightMagenta: "#FFC6FF" - brightCyan: "#CAFFBF" - brightWhite: "#A0C4FF" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 58.9 - black: 0 - red: 67.3 - green: 95.8 - yellow: 101.9 - blue: 53 - magenta: 80.4 - cyan: 89.8 - white: 83 - brightBlack: 11 - brightRed: 67.3 - brightGreen: 95.8 - brightYellow: 101.9 - brightBlue: 89.8 - brightMagenta: 80.4 - brightCyan: 95.8 - brightWhite: 67.2 diff --git a/themes/nibelung.yaml b/themes/nibelung.yaml deleted file mode 100644 index 498af6bb..00000000 --- a/themes/nibelung.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nibelung" -source: - marketplace_id: "veschin.nibelung-theme-vscode" - version: "0.1.0" - installs: 82 - rating: 5 - ratings: 2 - author: "Oleg Veschin" - repo: "https://github.com/veschin/nibelung-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=veschin.nibelung-theme-vscode" -colors: - bg: "#F8F9FA" - fg: "#343A40" - black: "#ADB5BD" - red: "#FAD2E1" - green: "#E2ECE9" - yellow: "#FFF1E6" - blue: "#9BB1FF" - magenta: "#FDE2E4" - cyan: "#BEE1E6" - white: "#E9ECEF" - brightBlack: "#ADB5BD" - brightRed: "#FAD2E1" - brightGreen: "#E2ECE9" - brightYellow: "#FFF1E6" - brightBlue: "#9BB1FF" - brightMagenta: "#FDE2E4" - brightCyan: "#BEE1E6" - brightWhite: "#E9ECEF" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 92.8 - black: 36.9 - red: 14.2 - green: 0 - yellow: 0 - blue: 36.8 - magenta: 7.3 - cyan: 15.3 - white: 0 - brightBlack: 36.9 - brightRed: 14.2 - brightGreen: 0 - brightYellow: 0 - brightBlue: 36.8 - brightMagenta: 7.3 - brightCyan: 15.3 - brightWhite: 0 diff --git a/themes/nice-dark.yaml b/themes/nice-dark.yaml deleted file mode 100644 index d63534f9..00000000 --- a/themes/nice-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nice-Dark" -source: - marketplace_id: "MarcosBatisaldo.nice-dark" - version: "1.1.3" - installs: 458 - rating: 5 - ratings: 1 - author: "Marcos Batisaldo" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=MarcosBatisaldo.nice-dark" -colors: - bg: "#191919" - fg: "#C3C8D1" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 71.9 - black: 0 - red: 26.5 - green: 52.8 - yellow: 85.4 - blue: 27.2 - magenta: 29.5 - cyan: 47.3 - white: 89.8 - brightBlack: 21.8 - brightRed: 38.3 - brightGreen: 63.3 - brightYellow: 95.4 - brightBlue: 39.8 - brightMagenta: 45.2 - brightCyan: 55.2 - brightWhite: 89.8 diff --git a/themes/nicedark-fork.yaml b/themes/nicedark-fork.yaml index 6070ce3c..e5d6ef81 100644 --- a/themes/nicedark-fork.yaml +++ b/themes/nicedark-fork.yaml @@ -8,6 +8,7 @@ source: author: "FathyMuhamed" repo: "https://github.com/FathyMuhamed/darkTheme" url: "https://marketplace.visualstudio.com/items?itemName=niceDark.nicedark" + formats: null colors: bg: "#193549" fg: "#FCFCFC" diff --git a/themes/nicedark.yaml b/themes/nicedark.yaml index c6364f1a..cbb4cff8 100644 --- a/themes/nicedark.yaml +++ b/themes/nicedark.yaml @@ -8,6 +8,7 @@ source: author: "FathyMuhamed" repo: "https://github.com/FathyMuhamed/darkTheme" url: "https://marketplace.visualstudio.com/items?itemName=niceDark.nicedark" + formats: null colors: bg: "#193549" fg: "#D6DEEB" diff --git a/themes/nicely-neon.yaml b/themes/nicely-neon.yaml deleted file mode 100644 index f84cc60d..00000000 --- a/themes/nicely-neon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nicely Neon" -source: - marketplace_id: "eight84.nicely-neon-theme" - version: "1.9.8" - installs: 310 - rating: 0 - ratings: 0 - author: "eight84" - repo: "https://github.com/eight84/nicely-neon-theme" - url: "https://marketplace.visualstudio.com/items?itemName=eight84.nicely-neon-theme" -colors: - bg: "#18181C" - fg: "#E0E0E0" - black: "#18181C" - red: "#FE6262" - green: "#1AFF90" - yellow: "#FEE462" - blue: "#62A8FE" - magenta: "#FE62B5" - cyan: "#62FECA" - white: "#E0E0E0" - brightBlack: "#18181C" - brightRed: "#FE6262" - brightGreen: "#62FE9B" - brightYellow: "#FEE462" - brightBlue: "#62A8FE" - brightMagenta: "#FE62B5" - brightCyan: "#62FECA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 86.7 - black: 0 - red: 45.6 - green: 86.9 - yellow: 89.3 - blue: 52.8 - magenta: 48.4 - cyan: 89.8 - white: 86.7 - brightBlack: 0 - brightRed: 45.6 - brightGreen: 88.2 - brightYellow: 89.3 - brightBlue: 52.8 - brightMagenta: 48.4 - brightCyan: 89.8 - brightWhite: 106.7 diff --git a/themes/nier-automata-light-theme.yaml b/themes/nier-automata-light-theme.yaml index 0b900dbf..b082e2fd 100644 --- a/themes/nier-automata-light-theme.yaml +++ b/themes/nier-automata-light-theme.yaml @@ -2,12 +2,13 @@ name: "Nier: Automata Light Theme" source: marketplace_id: "b5261b62-5943-495a-a2cd-2b281ddb7a76.vscode-nier-automata-theme" version: "1.0.0" - installs: 15582 + installs: 15588 rating: 5 ratings: 2 author: "Shelune" repo: "https://github.com/shelune/vscode-nier-automata-light" url: "https://marketplace.visualstudio.com/items?itemName=b5261b62-5943-495a-a2cd-2b281ddb7a76.vscode-nier-automata-theme" + formats: null colors: bg: "#DAD3BA" fg: "#4E4B42" diff --git a/themes/nier-automata-theme.yaml b/themes/nier-automata-theme.yaml index 682ce050..765a3155 100644 --- a/themes/nier-automata-theme.yaml +++ b/themes/nier-automata-theme.yaml @@ -2,12 +2,13 @@ name: "Nier: Automata Theme" source: marketplace_id: "israelyagopereira.nier-automata-theme" version: "0.0.4" - installs: 2277 + installs: 2280 rating: 0 ratings: 0 author: "Israel Yago Pereira" repo: "https://github.com/israelyago/nier-automata-vscode" url: "https://marketplace.visualstudio.com/items?itemName=israelyagopereira.nier-automata-theme" + formats: null colors: bg: "#E7DEC9" fg: "#3E3B35" diff --git a/themes/night-aurora.yaml b/themes/night-aurora.yaml deleted file mode 100644 index 320b3dd6..00000000 --- a/themes/night-aurora.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "night-aurora" -source: - marketplace_id: "NightAurora.nightaurora" - version: "0.1.9" - installs: 56 - rating: 0 - ratings: 0 - author: "NightAurora" - repo: "https://github.com/justizha/NIghtAurora" - url: "https://marketplace.visualstudio.com/items?itemName=NightAurora.nightaurora" -colors: - bg: "#22213A" - fg: "#9C97BD" - black: "#22213A" - red: "#CA7658" - green: "#57BE69" - yellow: "#C6B766" - blue: "#1F5596" - magenta: "#5F2050" - cyan: "#75D7C4" - white: "#A8A2CA" - brightBlack: "#6E75A8" - brightRed: "#BA1F81" - brightGreen: "#2AE66C" - brightYellow: "#EFF21A" - brightBlue: "#0E4BF2" - brightMagenta: "#8D0462" - brightCyan: "#1BE6BD" - brightWhite: "#A8A2CA" -meta: - mode: "dark" - accent: "purple" - hue: 285 - pair: null - contrast: - fg: 45.6 - black: 0 - red: 38.2 - green: 53.5 - yellow: 60.3 - blue: 13.6 - magenta: 0 - cyan: 69.5 - white: 51.7 - brightBlack: 28.5 - brightRed: 21.5 - brightGreen: 71.6 - brightYellow: 91.4 - brightBlue: 18.8 - brightMagenta: 10.8 - brightCyan: 73.7 - brightWhite: 51.7 diff --git a/themes/night-blossom.yaml b/themes/night-blossom.yaml index 1404658c..6a975455 100644 --- a/themes/night-blossom.yaml +++ b/themes/night-blossom.yaml @@ -1,4 +1,4 @@ -name: "night-blossom" +name: "night blossom" source: marketplace_id: "RustedTurnip.night-blossom" version: "0.1.0" @@ -8,6 +8,7 @@ source: author: "RustedTurnip" repo: "https://github.com/RustedTurnip/night-blossom" url: "https://marketplace.visualstudio.com/items?itemName=RustedTurnip.night-blossom" + formats: null colors: bg: "#00041F" fg: "#FFEBF7" diff --git a/themes/night-blue-high.yaml b/themes/night-blue-high.yaml deleted file mode 100644 index 083aae09..00000000 --- a/themes/night-blue-high.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Night blue (high)" -source: - marketplace_id: "voidjmp-vscode-extensions.vscode-theme-night-blue" - version: "0.0.6" - installs: 66 - rating: 0 - ratings: 0 - author: "voidjmp-vscode-extensions" - repo: "https://github.com/VoIdJMp/vscode-theme-night-blue" - url: "https://marketplace.visualstudio.com/items?itemName=voidjmp-vscode-extensions.vscode-theme-night-blue" -colors: - bg: "#000851" - fg: "#FFFFFF" - black: "#111111" - red: "#FF9DA4" - green: "#D1F1A9" - yellow: "#FFEEAD" - blue: "#BBDAFF" - magenta: "#EBBBFF" - cyan: "#99FFFF" - white: "#CCCCCC" - brightBlack: "#333333" - brightRed: "#FF7882" - brightGreen: "#B8F171" - brightYellow: "#FFE580" - brightBlue: "#80BAFF" - brightMagenta: "#D778FF" - brightCyan: "#78FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 264 - pair: null - contrast: - fg: 106.4 - black: 0 - red: 62.9 - green: 90.3 - yellow: 95.2 - blue: 80.8 - magenta: 74.3 - cyan: 95.4 - white: 74.2 - brightBlack: 0 - brightRed: 51.2 - brightGreen: 86.3 - brightYellow: 90 - brightBlue: 61.7 - brightMagenta: 49.8 - brightCyan: 93.3 - brightWhite: 106.4 diff --git a/themes/night-city.yaml b/themes/night-city.yaml index f597bc14..347c1ebe 100644 --- a/themes/night-city.yaml +++ b/themes/night-city.yaml @@ -2,12 +2,13 @@ name: "Night City" source: marketplace_id: "GibMalFeuerzeugBitte.night-city" version: "0.0.6" - installs: 69 + installs: 73 rating: 5 ratings: 1 author: "GibMalFeuerzeugBitte" repo: "https://github.com/GibMalFeuerzeugBitte/Night-City" url: "https://marketplace.visualstudio.com/items?itemName=GibMalFeuerzeugBitte.night-city" + formats: null colors: bg: "#0F1419" fg: "#E0E0E8" diff --git a/themes/night-cyan.yaml b/themes/night-cyan.yaml index d4f8405c..cbc25d58 100644 --- a/themes/night-cyan.yaml +++ b/themes/night-cyan.yaml @@ -8,6 +8,7 @@ source: author: "er-codee" repo: "https://github.com/Ernesto-Rosas/Themes-ER" url: "https://marketplace.visualstudio.com/items?itemName=er-codee.themes-er" + formats: null colors: bg: "#181818" fg: "#C8C6BF" diff --git a/themes/night-dragon.yaml b/themes/night-dragon.yaml deleted file mode 100644 index 1550c590..00000000 --- a/themes/night-dragon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Night Dragon" -source: - marketplace_id: "DarkAlchemy.darkalchemy" - version: "0.0.3" - installs: 576 - rating: 5 - ratings: 2 - author: "Dark Alchemy" - repo: "https://github.com/dark-alchemy/darkalchemy-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=DarkAlchemy.darkalchemy" -colors: - bg: "#151824" - fg: "#FFFFFF" - black: "#000000" - red: "#DA8548" - green: "#23D18B" - yellow: "#ECBE7B" - blue: "#00BFF8" - magenta: "#BC3FBC" - cyan: "#46D9FF" - white: "#E5E5E5" - brightBlack: "#CFCFCF" - brightRed: "#DA8548" - brightGreen: "#23D18B" - brightYellow: "#ECBE7B" - brightBlue: "#00BFF8" - brightMagenta: "#D670D6" - brightCyan: "#46D9FF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 273 - pair: null - contrast: - fg: 106.7 - black: 0 - red: 46.7 - green: 63.4 - yellow: 70.7 - blue: 59.8 - magenta: 29.6 - cyan: 72.9 - white: 89.8 - brightBlack: 76.3 - brightRed: 46.7 - brightGreen: 63.4 - brightYellow: 70.7 - brightBlue: 59.8 - brightMagenta: 45.2 - brightCyan: 72.9 - brightWhite: 89.8 diff --git a/themes/night-fae-theme.yaml b/themes/night-fae-theme.yaml index d9642af2..2d0f8d75 100644 --- a/themes/night-fae-theme.yaml +++ b/themes/night-fae-theme.yaml @@ -8,6 +8,7 @@ source: author: "Savannah Ostrowski" repo: "https://github.com/savannahostrowski/shadowlands-themes" url: "https://marketplace.visualstudio.com/items?itemName=SavannahOstrowski.shadowlands-themes" + formats: null colors: bg: "#242147" fg: "#ABB2BF" diff --git a/themes/night-howl.yaml b/themes/night-howl.yaml deleted file mode 100644 index 3b9340bb..00000000 --- a/themes/night-howl.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "night-howl" -source: - marketplace_id: "Matia.night-howl" - version: "1.3.0" - installs: 2997 - rating: 5 - ratings: 3 - author: "Matia" - repo: "https://github.com/mattcroat/night-howl" - url: "https://marketplace.visualstudio.com/items?itemName=Matia.night-howl" -colors: - bg: "#101E2C" - fg: "#BDD2E7" - black: "#000000" - red: "#FF7878" - green: "#AAE682" - yellow: "#FFDC96" - blue: "#00B1FF" - magenta: "#FF50FF" - cyan: "#00DCDC" - white: "#BDD2E7" - brightBlack: "#5F82A5" - brightRed: "#FF7878" - brightGreen: "#AAE682" - brightYellow: "#FFDC96" - brightBlue: "#00B1FF" - brightMagenta: "#FF50FF" - brightCyan: "#00DCDC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 249 - pair: null - contrast: - fg: 76 - black: 0 - red: 50.7 - green: 79.7 - yellow: 86.3 - blue: 53.7 - magenta: 49.4 - cyan: 71 - white: 76 - brightBlack: 32.5 - brightRed: 50.7 - brightGreen: 79.7 - brightYellow: 86.3 - brightBlue: 53.7 - brightMagenta: 49.4 - brightCyan: 71 - brightWhite: 106.1 diff --git a/themes/night-market.yaml b/themes/night-market.yaml index 3a4f598a..5fe41dba 100644 --- a/themes/night-market.yaml +++ b/themes/night-market.yaml @@ -8,6 +8,7 @@ source: author: "Icycoldveins" repo: "https://github.com/icycoldveins/Ide-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Icycoldveins.verum-monokai-themes" + formats: null colors: bg: "#2D2A2E" fg: "#9B59B6" diff --git a/themes/night-owl-oled-dim-100.yaml b/themes/night-owl-oled-dim-100.yaml deleted file mode 100644 index 864c1d4f..00000000 --- a/themes/night-owl-oled-dim-100.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Night Owl Oled Dim 100" -source: - marketplace_id: "WeiyuWang.night-owl-oled-dim" - version: "1.0.1" - installs: 4590 - rating: 5 - ratings: 1 - author: "Weiyu Wang" - repo: "https://github.com/wwang1110/night-owl-oled-dim" - url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" -colors: - bg: "#000000" - fg: "#D6DEEB" - black: "#011627" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 86.2 - black: 0 - red: 40.3 - green: 68.3 - yellow: 83.1 - blue: 56.9 - magenta: 54.8 - cyan: 60.7 - white: 107.9 - brightBlack: 16.6 - brightRed: 40.3 - brightGreen: 68.3 - brightYellow: 94.7 - brightBlue: 56.9 - brightMagenta: 54.8 - brightCyan: 75 - brightWhite: 107.9 diff --git a/themes/night-owl-oled-dim-75.yaml b/themes/night-owl-oled-dim-75.yaml deleted file mode 100644 index dce702c1..00000000 --- a/themes/night-owl-oled-dim-75.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Night Owl Oled Dim 75" -source: - marketplace_id: "WeiyuWang.night-owl-oled-dim" - version: "1.0.1" - installs: 4590 - rating: 5 - ratings: 1 - author: "Weiyu Wang" - repo: "https://github.com/wwang1110/night-owl-oled-dim" - url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" -colors: - bg: "#000000" - fg: "#A0A6B0" - black: "#00101D" - red: "#B33E3C" - green: "#19A352" - yellow: "#93AB5A" - blue: "#617FBF" - magenta: "#956DAF" - cyan: "#18957E" - white: "#BFBFBF" - brightBlack: "#414040" - brightRed: "#B33E3C" - brightGreen: "#19A352" - brightYellow: "#BFB06F" - brightBlue: "#617FBF" - brightMagenta: "#956DAF" - brightCyan: "#5FA497" - brightWhite: "#BFBFBF" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 53.8 - black: 0 - red: 24.1 - green: 42.1 - yellow: 51.9 - blue: 34.8 - magenta: 33.4 - cyan: 37.3 - white: 68 - brightBlack: 8.5 - brightRed: 24.1 - brightGreen: 42.1 - brightYellow: 59.5 - brightBlue: 34.8 - brightMagenta: 33.4 - brightCyan: 46.6 - brightWhite: 68 diff --git a/themes/night-owl-oled-dim-80.yaml b/themes/night-owl-oled-dim-80.yaml deleted file mode 100644 index 4f1d5b76..00000000 --- a/themes/night-owl-oled-dim-80.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Night Owl Oled Dim 80" -source: - marketplace_id: "WeiyuWang.night-owl-oled-dim" - version: "1.0.1" - installs: 4590 - rating: 5 - ratings: 1 - author: "Weiyu Wang" - repo: "https://github.com/wwang1110/night-owl-oled-dim" - url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" -colors: - bg: "#000000" - fg: "#ABB1BC" - black: "#00111F" - red: "#BF4240" - green: "#1BAE58" - yellow: "#9DB660" - blue: "#6888CC" - magenta: "#9F74BB" - cyan: "#1A9F86" - white: "#CCCCCC" - brightBlack: "#454444" - brightRed: "#BF4240" - brightGreen: "#1BAE58" - brightYellow: "#CCBC77" - brightBlue: "#6888CC" - brightMagenta: "#9F74BB" - brightCyan: "#65AFA1" - brightWhite: "#CCCCCC" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 59.9 - black: 0 - red: 27.1 - green: 47.1 - yellow: 57.6 - blue: 39.1 - magenta: 37.3 - cyan: 41.7 - white: 75.7 - brightBlack: 9.9 - brightRed: 27.1 - brightGreen: 47.1 - brightYellow: 66.2 - brightBlue: 39.1 - brightMagenta: 37.3 - brightCyan: 51.9 - brightWhite: 75.7 diff --git a/themes/night-owl-oled-dim-85.yaml b/themes/night-owl-oled-dim-85.yaml deleted file mode 100644 index c8b39787..00000000 --- a/themes/night-owl-oled-dim-85.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Night Owl Oled Dim 85" -source: - marketplace_id: "WeiyuWang.night-owl-oled-dim" - version: "1.0.1" - installs: 4590 - rating: 5 - ratings: 1 - author: "Weiyu Wang" - repo: "https://github.com/wwang1110/night-owl-oled-dim" - url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" -colors: - bg: "#000000" - fg: "#B5BCC7" - black: "#001221" - red: "#CB4644" - green: "#1CB95D" - yellow: "#A7C166" - blue: "#6E90D8" - magenta: "#A97CC6" - cyan: "#1CA98E" - white: "#D8D8D8" - brightBlack: "#494949" - brightRed: "#CB4644" - brightGreen: "#1CB95D" - brightYellow: "#D8C77E" - brightBlue: "#6E90D8" - brightMagenta: "#A97CC6" - brightCyan: "#6BBAAB" - brightWhite: "#D8D8D8" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 66 - black: 0 - red: 30.2 - green: 52.1 - yellow: 63.5 - blue: 43.1 - magenta: 41.6 - cyan: 46.3 - white: 82.9 - brightBlack: 11.6 - brightRed: 30.2 - brightGreen: 52.1 - brightYellow: 72.6 - brightBlue: 43.1 - brightMagenta: 41.6 - brightCyan: 57.4 - brightWhite: 82.9 diff --git a/themes/night-owl-oled-dim-90.yaml b/themes/night-owl-oled-dim-90.yaml deleted file mode 100644 index deea9e39..00000000 --- a/themes/night-owl-oled-dim-90.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Night Owl Oled Dim 90" -source: - marketplace_id: "WeiyuWang.night-owl-oled-dim" - version: "1.0.1" - installs: 4590 - rating: 5 - ratings: 1 - author: "Weiyu Wang" - repo: "https://github.com/wwang1110/night-owl-oled-dim" - url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" -colors: - bg: "#000000" - fg: "#C0C7D3" - black: "#001323" - red: "#D74A48" - green: "#1EC463" - yellow: "#B1CD6C" - blue: "#7599E5" - magenta: "#B383D2" - cyan: "#1DB397" - white: "#E5E5E5" - brightBlack: "#4E4D4D" - brightRed: "#D74A48" - brightGreen: "#1EC463" - brightYellow: "#E5D386" - brightBlue: "#7599E5" - brightMagenta: "#B383D2" - brightCyan: "#72C5B5" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 72.4 - black: 0 - red: 33.4 - green: 57.4 - yellow: 70 - blue: 47.7 - magenta: 45.8 - cyan: 51 - white: 91 - brightBlack: 13.2 - brightRed: 33.4 - brightGreen: 57.4 - brightYellow: 79.8 - brightBlue: 47.7 - brightMagenta: 45.8 - brightCyan: 63.1 - brightWhite: 91 diff --git a/themes/night-owl-oled-dim-95.yaml b/themes/night-owl-oled-dim-95.yaml deleted file mode 100644 index d3b378e6..00000000 --- a/themes/night-owl-oled-dim-95.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Night Owl Oled Dim 95" -source: - marketplace_id: "WeiyuWang.night-owl-oled-dim" - version: "1.0.1" - installs: 4590 - rating: 5 - ratings: 1 - author: "Weiyu Wang" - repo: "https://github.com/wwang1110/night-owl-oled-dim" - url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" -colors: - bg: "#000000" - fg: "#CBD2DF" - black: "#001425" - red: "#E34E4C" - green: "#20CF68" - yellow: "#BBD872" - blue: "#7BA1F2" - magenta: "#BD8ADE" - cyan: "#1FBD9F" - white: "#F2F2F2" - brightBlack: "#525151" - brightRed: "#E34E4C" - brightGreen: "#20CF68" - brightYellow: "#F2DF8D" - brightBlue: "#7BA1F2" - brightMagenta: "#BD8ADE" - brightCyan: "#78D0BF" - brightWhite: "#F2F2F2" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 79 - black: 0 - red: 36.8 - green: 62.7 - yellow: 76.2 - blue: 52.1 - magenta: 50 - cyan: 55.7 - white: 99.3 - brightBlack: 14.7 - brightRed: 36.8 - brightGreen: 62.7 - brightYellow: 87.1 - brightBlue: 52.1 - brightMagenta: 50 - brightCyan: 68.9 - brightWhite: 99.3 diff --git a/themes/night-pink.yaml b/themes/night-pink.yaml index 166d8978..0e42ca21 100644 --- a/themes/night-pink.yaml +++ b/themes/night-pink.yaml @@ -8,6 +8,7 @@ source: author: "er-codee" repo: "https://github.com/Ernesto-Rosas/Themes-ER" url: "https://marketplace.visualstudio.com/items?itemName=er-codee.themes-er" + formats: null colors: bg: "#181818" fg: "#C8C6BF" diff --git a/themes/night-raccoon.yaml b/themes/night-raccoon.yaml index 208761d9..69ae02c7 100644 --- a/themes/night-raccoon.yaml +++ b/themes/night-raccoon.yaml @@ -8,6 +8,7 @@ source: author: "RaccoonishDeveloper" repo: "https://github.com/RaccoonishDeveloper/Night-Raccoon-Theme" url: "https://marketplace.visualstudio.com/items?itemName=RaccoonishDeveloper.night-raccoon" + formats: null colors: bg: "#0F1419" fg: "#D4D4D4" diff --git a/themes/night-rainbow-darker.yaml b/themes/night-rainbow-darker.yaml deleted file mode 100644 index 3ebe06c0..00000000 --- a/themes/night-rainbow-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Night Rainbow - Darker" -source: - marketplace_id: "allan-carlos.night-rainbow" - version: "3.0.0" - installs: 10397 - rating: 5 - ratings: 1 - author: "Allan Carlos" - repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" -colors: - bg: "#000000" - fg: "#E0E0E0" - black: "#000000" - red: "#FF0055" - green: "#00FFAA" - yellow: "#FFFF00" - blue: "#00C3FF" - magenta: "#FF00FF" - cyan: "#00FFCC" - white: "#E0E0E0" - brightBlack: "#666666" - brightRed: "#FF0055" - brightGreen: "#00FFAA" - brightYellow: "#FFFF00" - brightBlue: "#00C3FF" - brightMagenta: "#FF00FF" - brightCyan: "#00FFCC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 87.9 - black: 0 - red: 38.2 - green: 88.7 - yellow: 102.7 - blue: 63.2 - magenta: 46.2 - cyan: 89.8 - white: 87.9 - brightBlack: 23 - brightRed: 38.2 - brightGreen: 88.7 - brightYellow: 102.7 - brightBlue: 63.2 - brightMagenta: 46.2 - brightCyan: 89.8 - brightWhite: 107.9 diff --git a/themes/night-rainbow-purple-haze.yaml b/themes/night-rainbow-purple-haze.yaml deleted file mode 100644 index f1f8bb16..00000000 --- a/themes/night-rainbow-purple-haze.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Night Rainbow - Purple Haze" -source: - marketplace_id: "allan-carlos.night-rainbow" - version: "3.0.0" - installs: 10397 - rating: 5 - ratings: 1 - author: "Allan Carlos" - repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" -colors: - bg: "#121212" - fg: "#E0E0E0" - black: "#000000" - red: "#FF0055" - green: "#BA68C8" - yellow: "#FFFF00" - blue: "#DDA0DD" - magenta: "#FF69B4" - cyan: "#B19CD9" - white: "#E0E0E0" - brightBlack: "#666666" - brightRed: "#FF0055" - brightGreen: "#BA68C8" - brightYellow: "#FFFF00" - brightBlue: "#DDA0DD" - brightMagenta: "#FF69B4" - brightCyan: "#B19CD9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 87.3 - black: 0 - red: 37.6 - green: 38.3 - yellow: 102.1 - blue: 61.4 - magenta: 50.5 - cyan: 53.5 - white: 87.3 - brightBlack: 22.5 - brightRed: 37.6 - brightGreen: 38.3 - brightYellow: 102.1 - brightBlue: 61.4 - brightMagenta: 50.5 - brightCyan: 53.5 - brightWhite: 107.3 diff --git a/themes/night-rainbow.yaml b/themes/night-rainbow.yaml deleted file mode 100644 index aef87df2..00000000 --- a/themes/night-rainbow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Night Rainbow" -source: - marketplace_id: "allan-carlos.night-rainbow" - version: "3.0.0" - installs: 10397 - rating: 5 - ratings: 1 - author: "Allan Carlos" - repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" -colors: - bg: "#121212" - fg: "#E0E0E0" - black: "#000000" - red: "#FF0055" - green: "#00FFAA" - yellow: "#FFFF00" - blue: "#00C3FF" - magenta: "#FF00FF" - cyan: "#00FFCC" - white: "#E0E0E0" - brightBlack: "#666666" - brightRed: "#FF0055" - brightGreen: "#00FFAA" - brightYellow: "#FFFF00" - brightBlue: "#00C3FF" - brightMagenta: "#FF00FF" - brightCyan: "#00FFCC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 87.3 - black: 0 - red: 37.6 - green: 88.1 - yellow: 102.1 - blue: 62.6 - magenta: 45.6 - cyan: 89.3 - white: 87.3 - brightBlack: 22.5 - brightRed: 37.6 - brightGreen: 88.1 - brightYellow: 102.1 - brightBlue: 62.6 - brightMagenta: 45.6 - brightCyan: 89.3 - brightWhite: 107.3 diff --git a/themes/night-stack-amber-crt.yaml b/themes/night-stack-amber-crt.yaml index 8e89ddc4..1e6ad26a 100644 --- a/themes/night-stack-amber-crt.yaml +++ b/themes/night-stack-amber-crt.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#120A02" fg: "#FFB347" diff --git a/themes/night-stack-amber-dark.yaml b/themes/night-stack-amber-dark.yaml index ffbd5af3..12cdef90 100644 --- a/themes/night-stack-amber-dark.yaml +++ b/themes/night-stack-amber-dark.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0A0703" fg: "#FFEFD8" diff --git a/themes/night-stack-arctic-night.yaml b/themes/night-stack-arctic-night.yaml index 27553a58..fb4012ed 100644 --- a/themes/night-stack-arctic-night.yaml +++ b/themes/night-stack-arctic-night.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#060A10" fg: "#E6F6FF" diff --git a/themes/night-stack-aurora.yaml b/themes/night-stack-aurora.yaml index f6be5ca4..088d9e6e 100644 --- a/themes/night-stack-aurora.yaml +++ b/themes/night-stack-aurora.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0A0B12" fg: "#E6E9FF" diff --git a/themes/night-stack-carbon-green.yaml b/themes/night-stack-carbon-green.yaml index 6d9729b9..cae80483 100644 --- a/themes/night-stack-carbon-green.yaml +++ b/themes/night-stack-carbon-green.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0F1115" fg: "#D4E4D4" diff --git a/themes/night-stack-carbon.yaml b/themes/night-stack-carbon.yaml index 638df477..8474631a 100644 --- a/themes/night-stack-carbon.yaml +++ b/themes/night-stack-carbon.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0B0C0F" fg: "#D2D4D8" diff --git a/themes/night-stack-circuit.yaml b/themes/night-stack-circuit.yaml index a62fb1c5..7f12fa6a 100644 --- a/themes/night-stack-circuit.yaml +++ b/themes/night-stack-circuit.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#06100B" fg: "#E6FFF2" diff --git a/themes/night-stack-copper-dark.yaml b/themes/night-stack-copper-dark.yaml index 43b43320..b5c869f8 100644 --- a/themes/night-stack-copper-dark.yaml +++ b/themes/night-stack-copper-dark.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0D0705" fg: "#FFE8DC" diff --git a/themes/night-stack-crimson-dark.yaml b/themes/night-stack-crimson-dark.yaml index c9ed701e..d607df7d 100644 --- a/themes/night-stack-crimson-dark.yaml +++ b/themes/night-stack-crimson-dark.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0A0507" fg: "#FFE4E6" diff --git a/themes/night-stack-deep-work.yaml b/themes/night-stack-deep-work.yaml index f3f44719..1ddce586 100644 --- a/themes/night-stack-deep-work.yaml +++ b/themes/night-stack-deep-work.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0C1117" fg: "#D4DAE3" diff --git a/themes/night-stack-desert-dusk.yaml b/themes/night-stack-desert-dusk.yaml index cc9f3474..fbdf5df7 100644 --- a/themes/night-stack-desert-dusk.yaml +++ b/themes/night-stack-desert-dusk.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0D0804" fg: "#FFECDD" diff --git a/themes/night-stack-dos-blue.yaml b/themes/night-stack-dos-blue.yaml index 13e9ba55..8ccafc10 100644 --- a/themes/night-stack-dos-blue.yaml +++ b/themes/night-stack-dos-blue.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#000080" fg: "#FFFFFF" diff --git a/themes/night-stack-ember-dark.yaml b/themes/night-stack-ember-dark.yaml index 8cd42ac5..da63dc2c 100644 --- a/themes/night-stack-ember-dark.yaml +++ b/themes/night-stack-ember-dark.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0B0604" fg: "#FFE7D6" diff --git a/themes/night-stack-eyestrain-green.yaml b/themes/night-stack-eyestrain-green.yaml index abc72b55..cadb9ded 100644 --- a/themes/night-stack-eyestrain-green.yaml +++ b/themes/night-stack-eyestrain-green.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#101512" fg: "#D6EFD6" diff --git a/themes/night-stack-forest-night.yaml b/themes/night-stack-forest-night.yaml index 51339cf3..0439583b 100644 --- a/themes/night-stack-forest-night.yaml +++ b/themes/night-stack-forest-night.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#070B08" fg: "#E6F3EA" diff --git a/themes/night-stack-frost.yaml b/themes/night-stack-frost.yaml index 4c7ad218..cf3a9c39 100644 --- a/themes/night-stack-frost.yaml +++ b/themes/night-stack-frost.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#060A0F" fg: "#D9F2FF" diff --git a/themes/night-stack-graphite.yaml b/themes/night-stack-graphite.yaml index c356e2b9..6d719a54 100644 --- a/themes/night-stack-graphite.yaml +++ b/themes/night-stack-graphite.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0C0D10" fg: "#D8D9DC" diff --git a/themes/night-stack-green-neon.yaml b/themes/night-stack-green-neon.yaml index 33a20fb6..445caf9a 100644 --- a/themes/night-stack-green-neon.yaml +++ b/themes/night-stack-green-neon.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0A0F0A" fg: "#C8FFC8" diff --git a/themes/night-stack-hacker-soft.yaml b/themes/night-stack-hacker-soft.yaml index 961791a5..03e7d732 100644 --- a/themes/night-stack-hacker-soft.yaml +++ b/themes/night-stack-hacker-soft.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0D1110" fg: "#CFE8CF" diff --git a/themes/night-stack-hologram.yaml b/themes/night-stack-hologram.yaml index a9793505..d4e410ba 100644 --- a/themes/night-stack-hologram.yaml +++ b/themes/night-stack-hologram.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#090A14" fg: "#E6E6FF" diff --git a/themes/night-stack-indigo-dark.yaml b/themes/night-stack-indigo-dark.yaml index fd33339f..ad9dd14e 100644 --- a/themes/night-stack-indigo-dark.yaml +++ b/themes/night-stack-indigo-dark.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#07070F" fg: "#E0E7FF" diff --git a/themes/night-stack-ion.yaml b/themes/night-stack-ion.yaml index 9be768dd..b76de496 100644 --- a/themes/night-stack-ion.yaml +++ b/themes/night-stack-ion.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#030908" fg: "#E6FFF7" diff --git a/themes/night-stack-low-contrast-pro.yaml b/themes/night-stack-low-contrast-pro.yaml index 1331500b..0eaa4939 100644 --- a/themes/night-stack-low-contrast-pro.yaml +++ b/themes/night-stack-low-contrast-pro.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#111318" fg: "#C8CDD5" diff --git a/themes/night-stack-midnight-blue.yaml b/themes/night-stack-midnight-blue.yaml index 9d81673a..7652ddc5 100644 --- a/themes/night-stack-midnight-blue.yaml +++ b/themes/night-stack-midnight-blue.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#050A14" fg: "#C7E6FF" diff --git a/themes/night-stack-mono-focus.yaml b/themes/night-stack-mono-focus.yaml index 904dcba7..b08bb606 100644 --- a/themes/night-stack-mono-focus.yaml +++ b/themes/night-stack-mono-focus.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0A0A0A" fg: "#E5E5E5" diff --git a/themes/night-stack-neo-tokyo.yaml b/themes/night-stack-neo-tokyo.yaml index 931454eb..43e8838d 100644 --- a/themes/night-stack-neo-tokyo.yaml +++ b/themes/night-stack-neo-tokyo.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0A0A12" fg: "#F5E9FF" diff --git a/themes/night-stack-night-city.yaml b/themes/night-stack-night-city.yaml index 4a9afa93..cc7510fe 100644 --- a/themes/night-stack-night-city.yaml +++ b/themes/night-stack-night-city.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0B0F1A" fg: "#E6F0FF" diff --git a/themes/night-stack-noir.yaml b/themes/night-stack-noir.yaml index 7052d514..88980207 100644 --- a/themes/night-stack-noir.yaml +++ b/themes/night-stack-noir.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#000000" fg: "#E5E5E5" diff --git a/themes/night-stack-obsidian-glass.yaml b/themes/night-stack-obsidian-glass.yaml index 1b3cc2a5..5e6b809e 100644 --- a/themes/night-stack-obsidian-glass.yaml +++ b/themes/night-stack-obsidian-glass.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0A0C12" fg: "#E6E9EF" diff --git a/themes/night-stack-obsidian.yaml b/themes/night-stack-obsidian.yaml index 5940a91e..59c71de0 100644 --- a/themes/night-stack-obsidian.yaml +++ b/themes/night-stack-obsidian.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0B0E14" fg: "#D6DEEB" diff --git a/themes/night-stack-ocean-abyss.yaml b/themes/night-stack-ocean-abyss.yaml index 0451f34c..d0d6ebf5 100644 --- a/themes/night-stack-ocean-abyss.yaml +++ b/themes/night-stack-ocean-abyss.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#040B12" fg: "#D8F2FF" diff --git a/themes/night-stack-onyx.yaml b/themes/night-stack-onyx.yaml index 9e2f66be..6d59a139 100644 --- a/themes/night-stack-onyx.yaml +++ b/themes/night-stack-onyx.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#020202" fg: "#E5E5E5" diff --git a/themes/night-stack-phosphor-green.yaml b/themes/night-stack-phosphor-green.yaml index 77c8155a..de60b55e 100644 --- a/themes/night-stack-phosphor-green.yaml +++ b/themes/night-stack-phosphor-green.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#020A02" fg: "#33FF33" diff --git a/themes/night-stack-plasma.yaml b/themes/night-stack-plasma.yaml index 6281ad0a..1b95f576 100644 --- a/themes/night-stack-plasma.yaml +++ b/themes/night-stack-plasma.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#070511" fg: "#FFE6FF" diff --git a/themes/night-stack-pure-hacker.yaml b/themes/night-stack-pure-hacker.yaml index 5e72983c..fdba4ed7 100644 --- a/themes/night-stack-pure-hacker.yaml +++ b/themes/night-stack-pure-hacker.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#000000" fg: "#00FF00" diff --git a/themes/night-stack-quantum.yaml b/themes/night-stack-quantum.yaml index 0ae81bcf..c641ca33 100644 --- a/themes/night-stack-quantum.yaml +++ b/themes/night-stack-quantum.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#05070F" fg: "#DCE6FF" diff --git a/themes/night-stack-retro-wave.yaml b/themes/night-stack-retro-wave.yaml index 91bb9bdb..59dd5824 100644 --- a/themes/night-stack-retro-wave.yaml +++ b/themes/night-stack-retro-wave.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0A0412" fg: "#F8E1FF" diff --git a/themes/night-stack-slate.yaml b/themes/night-stack-slate.yaml index f7122d30..2ae5acf1 100644 --- a/themes/night-stack-slate.yaml +++ b/themes/night-stack-slate.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0F1115" fg: "#D4D7DD" diff --git a/themes/night-stack-street-grid.yaml b/themes/night-stack-street-grid.yaml index eb4b3402..64477fb9 100644 --- a/themes/night-stack-street-grid.yaml +++ b/themes/night-stack-street-grid.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0C0615" fg: "#F3E8FF" diff --git a/themes/night-stack-teal-dark.yaml b/themes/night-stack-teal-dark.yaml index 352c0631..503af39f 100644 --- a/themes/night-stack-teal-dark.yaml +++ b/themes/night-stack-teal-dark.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#040A0A" fg: "#D9FFFB" diff --git a/themes/night-stack-titanium.yaml b/themes/night-stack-titanium.yaml index 9d4b9db6..a2659c79 100644 --- a/themes/night-stack-titanium.yaml +++ b/themes/night-stack-titanium.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0C0F14" fg: "#DCE3EA" diff --git a/themes/night-stack-violet-dark.yaml b/themes/night-stack-violet-dark.yaml index 4c5c2a02..c73e34e8 100644 --- a/themes/night-stack-violet-dark.yaml +++ b/themes/night-stack-violet-dark.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#070509" fg: "#F3E8FF" diff --git a/themes/night-stack-zen-dark.yaml b/themes/night-stack-zen-dark.yaml index ff670094..bb6a55ef 100644 --- a/themes/night-stack-zen-dark.yaml +++ b/themes/night-stack-zen-dark.yaml @@ -8,6 +8,7 @@ source: author: "Saragam Ghimire" repo: "https://github.com/codewithsg/night-stack" url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.night-stack" + formats: null colors: bg: "#0E1116" fg: "#D6D9DF" diff --git a/themes/night-storm.yaml b/themes/night-storm.yaml index fe7a7867..ab5da033 100644 --- a/themes/night-storm.yaml +++ b/themes/night-storm.yaml @@ -8,6 +8,7 @@ source: author: "Luciano Oliveira" repo: "https://github.com/luciano-work/night-storm-theme" url: "https://marketplace.visualstudio.com/items?itemName=LucianoOliveira.lanno-night-storm" + formats: null colors: bg: "#232323" fg: "#B6B6B6" diff --git a/themes/night-watchers.yaml b/themes/night-watchers.yaml index 7159abc4..1fc32fc0 100644 --- a/themes/night-watchers.yaml +++ b/themes/night-watchers.yaml @@ -8,6 +8,7 @@ source: author: "Kiran" repo: "https://github.com/Kiranism/night-watchers-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Kiranism.nightwatchers" + formats: null colors: bg: "#263238" fg: "#EEFFFF" diff --git a/themes/night-wind-theme.yaml b/themes/night-wind-theme.yaml index d6e1f074..1de67b9e 100644 --- a/themes/night-wind-theme.yaml +++ b/themes/night-wind-theme.yaml @@ -8,6 +8,7 @@ source: author: "gawnatep" repo: "https://github.com/gabrielsalves1/Night-Wind-Theme-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=gawnatep.night-wind-theme" + formats: null colors: bg: "#161636" fg: "#D4D4D4" diff --git a/themes/night-yellow.yaml b/themes/night-yellow.yaml index 2134d7ff..367f356c 100644 --- a/themes/night-yellow.yaml +++ b/themes/night-yellow.yaml @@ -8,6 +8,7 @@ source: author: "er-codee" repo: "https://github.com/Ernesto-Rosas/Themes-ER" url: "https://marketplace.visualstudio.com/items?itemName=er-codee.themes-er" + formats: null colors: bg: "#181818" fg: "#C8C6BF" diff --git a/themes/night-zen.yaml b/themes/night-zen.yaml deleted file mode 100644 index 389df83d..00000000 --- a/themes/night-zen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Night Zen" -source: - marketplace_id: "sachin915.logan-night-theme" - version: "0.0.2" - installs: 4 - rating: 0 - ratings: 0 - author: "sachin" - repo: "https://github.com/sachin915t/logan-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sachin915.logan-night-theme" -colors: - bg: "#0F1117" - fg: "#D4D4D4" - black: "#282C34" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#ABB2BF" - brightBlack: "#282C34" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#61AFEF" - brightMagenta: "#C678DD" - brightCyan: "#56B6C2" - brightWhite: "#ABB2BF" -meta: - mode: "dark" - accent: "pink" - hue: 271 - pair: null - contrast: - fg: 80 - black: 0 - red: 42.6 - green: 62.8 - yellow: 71.1 - blue: 55.2 - magenta: 45.6 - cyan: 55.1 - white: 59.9 - brightBlack: 0 - brightRed: 42.6 - brightGreen: 62.8 - brightYellow: 71.1 - brightBlue: 55.2 - brightMagenta: 45.6 - brightCyan: 55.1 - brightWhite: 59.9 diff --git a/themes/night.yaml b/themes/night.yaml index 3b032e40..41345d87 100644 --- a/themes/night.yaml +++ b/themes/night.yaml @@ -2,12 +2,13 @@ name: "Night" source: marketplace_id: "fem12N.night" version: "1.1.1" - installs: 8334 + installs: 8345 rating: 5 ratings: 1 author: "fem12N" repo: "https://github.com/FEM12/Night" url: "https://marketplace.visualstudio.com/items?itemName=fem12N.night" + formats: null colors: bg: "#24283B" fg: "#FFFFFF" diff --git a/themes/nightblue-1.yaml b/themes/nightblue-1.yaml index 0bab1e9f..f4faf099 100644 --- a/themes/nightblue-1.yaml +++ b/themes/nightblue-1.yaml @@ -8,6 +8,7 @@ source: author: "YeeKi" repo: "https://github.com/kenneth2001/NightBlue" url: "https://marketplace.visualstudio.com/items?itemName=yeekiiiiii.nightblue" + formats: null colors: bg: "#161922" fg: "#A6ACCD" diff --git a/themes/nightblue-oled-beta.yaml b/themes/nightblue-oled-beta.yaml index a2bfde8f..42b22590 100644 --- a/themes/nightblue-oled-beta.yaml +++ b/themes/nightblue-oled-beta.yaml @@ -8,6 +8,7 @@ source: author: "YeeKi" repo: "https://github.com/kenneth2001/NightBlue" url: "https://marketplace.visualstudio.com/items?itemName=yeekiiiiii.nightblue" + formats: null colors: bg: "#000000" fg: "#A6ACCD" diff --git a/themes/nightcall.yaml b/themes/nightcall.yaml deleted file mode 100644 index 410faedf..00000000 --- a/themes/nightcall.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nightcall" -source: - marketplace_id: "bpat86.nightcall" - version: "1.0.0" - installs: 8133 - rating: 5 - ratings: 3 - author: "Bobby Patterson" - repo: "https://github.com/bpat86/nightcall-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=bpat86.nightcall" -colors: - bg: "#141629" - fg: "#E4CCFF" - black: "#141629" - red: "#F4598E" - green: "#85D483" - yellow: "#D9F99D" - blue: "#639EE5" - magenta: "#C792EA" - cyan: "#67E8F9" - white: "#E4CCFF" - brightBlack: "#575656" - brightRed: "#F4598E" - brightGreen: "#86EFAC" - brightYellow: "#F2E3BF" - brightBlue: "#7E90FF" - brightMagenta: "#C792EA" - brightCyan: "#A5F3FC" - brightWhite: "#E4CCFF" -meta: - mode: "dark" - accent: "red" - hue: 278 - pair: null - contrast: - fg: 80.3 - black: 0 - red: 43 - green: 68.6 - yellow: 95.3 - blue: 47.3 - magenta: 53.7 - cyan: 81.1 - white: 80.3 - brightBlack: 15.5 - brightRed: 43 - brightGreen: 83 - brightYellow: 89.3 - brightBlue: 46 - brightMagenta: 53.7 - brightCyan: 90.7 - brightWhite: 80.3 diff --git a/themes/nightcode.yaml b/themes/nightcode.yaml index a4f3ab64..741eba8f 100644 --- a/themes/nightcode.yaml +++ b/themes/nightcode.yaml @@ -8,6 +8,7 @@ source: author: "Carlos Pereira" repo: null url: "https://marketplace.visualstudio.com/items?itemName=carlos-dev-pereira.nightcode" + formats: null colors: bg: "#1D252C" fg: "#B7C5D3" diff --git a/themes/nightdream-monokai.yaml b/themes/nightdream-monokai.yaml index 8e0e77e6..3959be15 100644 --- a/themes/nightdream-monokai.yaml +++ b/themes/nightdream-monokai.yaml @@ -8,6 +8,7 @@ source: author: "mrheio" repo: "https://github.com/masterodi/nightdream-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mrheio.nightdream" + formats: null colors: bg: "#282A39" fg: "#FFFFFF" diff --git a/themes/nightdream.yaml b/themes/nightdream.yaml index 3448a79e..4f4c2a25 100644 --- a/themes/nightdream.yaml +++ b/themes/nightdream.yaml @@ -8,6 +8,7 @@ source: author: "mrheio" repo: "https://github.com/masterodi/nightdream-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=mrheio.nightdream" + formats: null colors: bg: "#20232F" fg: "#DFE6FF" diff --git a/themes/nightfly.yaml b/themes/nightfly.yaml index 70c219fb..71ca4b25 100644 --- a/themes/nightfly.yaml +++ b/themes/nightfly.yaml @@ -8,6 +8,7 @@ source: author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null colors: bg: "#00080E" fg: "#FFFFFB" diff --git a/themes/nightfox.yaml b/themes/nightfox.yaml deleted file mode 100644 index d70f6fc9..00000000 --- a/themes/nightfox.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nightfox" -source: - marketplace_id: "DarkAlchemy.darkalchemy" - version: "0.0.3" - installs: 576 - rating: 5 - ratings: 2 - author: "Dark Alchemy" - repo: "https://github.com/dark-alchemy/darkalchemy-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=DarkAlchemy.darkalchemy" -colors: - bg: "#212E3F" - fg: "#FFFFFF" - black: "#000000" - red: "#DA8548" - green: "#23D18B" - yellow: "#ECBE7B" - blue: "#00BFF8" - magenta: "#BC3FBC" - cyan: "#46D9FF" - white: "#E5E5E5" - brightBlack: "#CFCFCF" - brightRed: "#DA8548" - brightGreen: "#23D18B" - brightYellow: "#ECBE7B" - brightBlue: "#00BFF8" - brightMagenta: "#D670D6" - brightCyan: "#46D9FF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 255 - pair: null - contrast: - fg: 103.4 - black: 0 - red: 43.3 - green: 60 - yellow: 67.4 - blue: 56.4 - magenta: 26.2 - cyan: 69.6 - white: 86.5 - brightBlack: 73 - brightRed: 43.3 - brightGreen: 60 - brightYellow: 67.4 - brightBlue: 56.4 - brightMagenta: 41.9 - brightCyan: 69.6 - brightWhite: 86.5 diff --git a/themes/nighthawk.yaml b/themes/nighthawk.yaml index 01d38d97..423ae591 100644 --- a/themes/nighthawk.yaml +++ b/themes/nighthawk.yaml @@ -8,6 +8,7 @@ source: author: "Ezz" repo: "https://github.com/ezzak/nighthawk" url: "https://marketplace.visualstudio.com/items?itemName=ezzak.nighthawk" + formats: null colors: bg: "#0B162D" fg: "#FFFD" diff --git a/themes/nightlife.yaml b/themes/nightlife.yaml index a3664d1f..0700d494 100644 --- a/themes/nightlife.yaml +++ b/themes/nightlife.yaml @@ -8,6 +8,7 @@ source: author: "Vincent Yovian" repo: "https://github.com/spacesick/nightlife-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=spacesick.nightlife-vscode-theme" + formats: null colors: bg: "#0F1118" fg: "#EFF4F6" diff --git a/themes/nightly-code.yaml b/themes/nightly-code.yaml index 9424115e..61e1722e 100644 --- a/themes/nightly-code.yaml +++ b/themes/nightly-code.yaml @@ -8,6 +8,7 @@ source: author: "SpikySpike" repo: "https://github.com/SpikySpike/nightly-code" url: "https://marketplace.visualstudio.com/items?itemName=SpikySpike.nightly-code" + formats: null colors: bg: "#1E1626" fg: "#D3D3D3" diff --git a/themes/nightly-inspiration-dark.yaml b/themes/nightly-inspiration-dark.yaml index d5636c24..2d6f2f6c 100644 --- a/themes/nightly-inspiration-dark.yaml +++ b/themes/nightly-inspiration-dark.yaml @@ -1,11 +1,14 @@ -name: "Nightly-Inspiration-Dark" +name: "Nightly Inspiration Dark" source: marketplace_id: "GGRusty.nightly-inspiration-dark" version: "1.0.3" installs: 308 + rating: 0 + ratings: 0 author: "GGRusty" repo: "https://github.com/GGRusty/nightly-inspiration-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=GGRusty.nightly-inspiration-dark" + formats: null colors: bg: "#00161A" fg: "#F2EEE7" diff --git a/themes/nightmare.yaml b/themes/nightmare.yaml index 36cd6adf..6e37427c 100644 --- a/themes/nightmare.yaml +++ b/themes/nightmare.yaml @@ -8,6 +8,7 @@ source: author: "OsirisX3R0" repo: "https://github.com/OsirisX3R0/nightmare" url: "https://marketplace.visualstudio.com/items?itemName=OsirisX3R0.nightmare-theme-vscode" + formats: null colors: bg: "#111111" fg: "#BBBBBB" diff --git a/themes/nightnode.yaml b/themes/nightnode.yaml deleted file mode 100644 index 479fb5cc..00000000 --- a/themes/nightnode.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "nightnode" -source: - marketplace_id: "AyushKhatri.nightnode" - version: "1.1.2" - installs: 1224 - rating: 5 - ratings: 1 - author: "Ayush Khatri" - repo: "https://github.com/ayush-khatrii/night-node" - url: "https://marketplace.visualstudio.com/items?itemName=AyushKhatri.nightnode" -colors: - bg: "#0F0F0F" - fg: "#F7F7F7" - black: "#000000" - red: "#CD3131" - green: "#00FF4B" - yellow: "#E5E510" - blue: "#2071CB" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 102.2 - black: 0 - red: 27.3 - green: 86.4 - yellow: 86.2 - blue: 27.9 - magenta: 30.4 - cyan: 48.2 - white: 107.5 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/nightshade-venom.yaml b/themes/nightshade-venom.yaml deleted file mode 100644 index 7cab9216..00000000 --- a/themes/nightshade-venom.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nightshade-Venom" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#020817" - fg: "#F8FAFC" - black: "#020817" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#6D28D9" - magenta: "#6D28D9" - cyan: "#29C3A0" - white: "#F8FAFC" - brightBlack: "#020817" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#6D28D9" - brightMagenta: "#6D28D9" - brightCyan: "#29C3A0" - brightWhite: "#F8FAFC" -meta: - mode: "dark" - accent: "magenta" - hue: 259 - pair: null - contrast: - fg: 104.3 - black: 0 - red: 10.2 - green: 58.5 - yellow: 52.6 - blue: 18.5 - magenta: 18.5 - cyan: 58.5 - white: 104.3 - brightBlack: 0 - brightRed: 10.2 - brightGreen: 58.5 - brightYellow: 52.6 - brightBlue: 18.5 - brightMagenta: 18.5 - brightCyan: 58.5 - brightWhite: 104.3 diff --git a/themes/nightshade.yaml b/themes/nightshade.yaml index 1f3e699c..cf4e94f5 100644 --- a/themes/nightshade.yaml +++ b/themes/nightshade.yaml @@ -8,6 +8,7 @@ source: author: "rbolsius" repo: "https://github.com/rbolsius/vscode-theme-nightshade" url: "https://marketplace.visualstudio.com/items?itemName=rbolsius.theme-nightshade" + formats: null colors: bg: "#222222" fg: "#DCDCD0" diff --git a/themes/nightshift-lobo-dawn.yaml b/themes/nightshift-lobo-dawn.yaml index 3d932237..cd05925b 100644 --- a/themes/nightshift-lobo-dawn.yaml +++ b/themes/nightshift-lobo-dawn.yaml @@ -8,6 +8,7 @@ source: author: "Nightshift Lobo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NightshiftLobo.nightshiftlobo" + formats: null colors: bg: "#F4F1E8" fg: "#2E3440" diff --git a/themes/nightshiftlobo-obsidian.yaml b/themes/nightshiftlobo-obsidian.yaml index 147c2919..19d022aa 100644 --- a/themes/nightshiftlobo-obsidian.yaml +++ b/themes/nightshiftlobo-obsidian.yaml @@ -8,6 +8,7 @@ source: author: "Nightshift Lobo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NightshiftLobo.nightshiftlobo" + formats: null colors: bg: "#141821" fg: "#D9DEEA" diff --git a/themes/nightshiftlobo-shadow.yaml b/themes/nightshiftlobo-shadow.yaml index 83c2a57d..4cd8fa3d 100644 --- a/themes/nightshiftlobo-shadow.yaml +++ b/themes/nightshiftlobo-shadow.yaml @@ -8,6 +8,7 @@ source: author: "Nightshift Lobo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NightshiftLobo.nightshiftlobo" + formats: null colors: bg: "#10131A" fg: "#D6DBE8" diff --git a/themes/nightshiftlobo.yaml b/themes/nightshiftlobo.yaml index 00f7954d..73d0c2a7 100644 --- a/themes/nightshiftlobo.yaml +++ b/themes/nightshiftlobo.yaml @@ -8,6 +8,7 @@ source: author: "Nightshift Lobo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NightshiftLobo.nightshiftlobo" + formats: null colors: bg: "#0D1016" fg: "#D4D8E4" diff --git a/themes/nightsky.yaml b/themes/nightsky.yaml index bc814043..0d0b0f4e 100644 --- a/themes/nightsky.yaml +++ b/themes/nightsky.yaml @@ -8,6 +8,7 @@ source: author: "abeilles" repo: "https://github.com/Abeilles8/NightSky" url: "https://marketplace.visualstudio.com/items?itemName=abeilles.NightSky" + formats: null colors: bg: "#00004E" fg: "#FFFFFF" diff --git a/themes/nightswell.yaml b/themes/nightswell.yaml index fc3fd57a..d6547765 100644 --- a/themes/nightswell.yaml +++ b/themes/nightswell.yaml @@ -8,6 +8,7 @@ source: author: "TrueMyst" repo: "https://github.com/TrueMyst/NightSwell" url: "https://marketplace.visualstudio.com/items?itemName=TrueMyst.night-swell" + formats: null colors: bg: "#1C1D30" fg: "#D4D4D4" diff --git a/themes/nightwing.yaml b/themes/nightwing.yaml index c1703cb6..a8b4b4aa 100644 --- a/themes/nightwing.yaml +++ b/themes/nightwing.yaml @@ -8,6 +8,7 @@ source: author: "Bartek Wielgosz 💻" repo: "https://github.com/bwielgosz/nightwing-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=bwielgosz.nightwing" + formats: null colors: bg: "#01111F" fg: "#D6DEEB" diff --git a/themes/nighty-bordered.yaml b/themes/nighty-bordered.yaml index 3f03f1a4..cbf50b8b 100644 --- a/themes/nighty-bordered.yaml +++ b/themes/nighty-bordered.yaml @@ -8,6 +8,7 @@ source: author: "Nachop Peralta" repo: "https://github.com/nachop51/nachop-theme" url: "https://marketplace.visualstudio.com/items?itemName=nachop51.nachop-theme" + formats: null colors: bg: "#1D1A24" fg: "#EDECEE" diff --git a/themes/nighty-purple-color-theme.yaml b/themes/nighty-purple-color-theme.yaml deleted file mode 100644 index 4e183634..00000000 --- a/themes/nighty-purple-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "nighty-purple-color-theme" -source: - marketplace_id: "ExBrain.nighty-purple" - version: "1.0.2" - installs: 346 - rating: 0 - ratings: 0 - author: "ExBrain" - repo: "https://github.com/exbraiin/VsCodeTheme" - url: "https://marketplace.visualstudio.com/items?itemName=ExBrain.nighty-purple" -colors: - bg: "#1E1E2E" - fg: "#D0D4EE" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: 284 - pair: null - contrast: - fg: 79.2 - black: 0 - red: 23.6 - green: 52 - yellow: 56.6 - blue: 33.6 - magenta: 31.2 - cyan: 49.4 - white: 87.4 - brightBlack: 21 - brightRed: 36.3 - brightGreen: 75.9 - brightYellow: 82.9 - brightBlue: 48.8 - brightMagenta: 45.5 - brightCyan: 72.4 - brightWhite: 100.9 diff --git a/themes/nigthwolf-color-theme.yaml b/themes/nigthwolf-color-theme.yaml deleted file mode 100644 index 838225aa..00000000 --- a/themes/nigthwolf-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NigthWolf-color-theme" -source: - marketplace_id: "daniloBrayann.night-wolfdark" - version: "0.0.10" - installs: 320 - rating: 0 - ratings: 0 - author: "daniloBrayann" - repo: "https://github.com/danilobrayann/dev-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.night-wolfdark" -colors: - bg: "#282A36" - fg: "#E6E6E6" - black: "#21222C" - red: "#FF5555" - green: "#F2560A" - yellow: "#02FA8D" - blue: "#00FF9E" - magenta: "#D9FF02" - cyan: "#0B33EE" - white: "#FFFFFF" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: 278 - pair: null - contrast: - fg: 87.7 - black: 0 - red: 40.4 - green: 37 - yellow: 81.3 - blue: 84.4 - magenta: 93.7 - cyan: 13 - white: 103.9 - brightBlack: 25.1 - brightRed: 45.9 - brightGreen: 86.1 - brightYellow: 100.6 - brightBlue: 63.2 - brightMagenta: 59.7 - brightCyan: 93.8 - brightWhite: 103.9 diff --git a/themes/nihil.yaml b/themes/nihil.yaml index df285f41..f08e8735 100644 --- a/themes/nihil.yaml +++ b/themes/nihil.yaml @@ -1,13 +1,14 @@ -name: "nihil" +name: "Nihil" source: marketplace_id: "CocaineJohnsson.nihil" version: "1.0.2" - installs: 284 + installs: 285 rating: 0 ratings: 0 author: "Cocaine Johnsson" repo: "https://github.com/CocaineJohnsson/vscode-nihil-theme" url: "https://marketplace.visualstudio.com/items?itemName=CocaineJohnsson.nihil" + formats: null colors: bg: "#161616" fg: "#FCE8CB" diff --git a/themes/nihilleaf-theme.yaml b/themes/nihilleaf-theme.yaml index c6a55a5b..ef791a48 100644 --- a/themes/nihilleaf-theme.yaml +++ b/themes/nihilleaf-theme.yaml @@ -2,12 +2,13 @@ name: "NihilLeaf-Theme" source: marketplace_id: "NihilLeaf.nihilleaf-theme" version: "1.0.3" - installs: 874 + installs: 910 rating: 0 ratings: 0 author: "NihilLeaf" repo: "https://github.com/NihilLeaf/NihilLeaf-VScode-Green-Theme" url: "https://marketplace.visualstudio.com/items?itemName=NihilLeaf.nihilleaf-theme" + formats: null colors: bg: "#091820" fg: "#EAF0D8" diff --git a/themes/niketa-pop-dark.yaml b/themes/niketa-pop-dark.yaml index 51850c62..dc64f9f8 100644 --- a/themes/niketa-pop-dark.yaml +++ b/themes/niketa-pop-dark.yaml @@ -8,6 +8,7 @@ source: author: "selfrefactor" repo: "https://github.com/selfrefactor/allegory-theme" url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" + formats: null colors: bg: "#3F3B39" fg: "#DEDEDE" diff --git a/themes/niketa-pop-light.yaml b/themes/niketa-pop-light.yaml index 8a7c41c8..c7e783a9 100644 --- a/themes/niketa-pop-light.yaml +++ b/themes/niketa-pop-light.yaml @@ -8,6 +8,7 @@ source: author: "selfrefactor" repo: "https://github.com/selfrefactor/allegory-theme" url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" + formats: null colors: bg: "#FFFFFF" fg: "#403C3A" diff --git a/themes/niketaoasis.yaml b/themes/niketaoasis.yaml index cd236514..b4a17d7c 100644 --- a/themes/niketaoasis.yaml +++ b/themes/niketaoasis.yaml @@ -8,6 +8,7 @@ source: author: "selfrefactor" repo: "https://github.com/selfrefactor/allegory-theme" url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" + formats: null colors: bg: "#1F2430" fg: "#D8DEEE" diff --git a/themes/niketaplus.yaml b/themes/niketaplus.yaml index 8240e13d..fb9060b1 100644 --- a/themes/niketaplus.yaml +++ b/themes/niketaplus.yaml @@ -8,6 +8,7 @@ source: author: "selfrefactor" repo: "https://github.com/selfrefactor/allegory-theme" url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" + formats: null colors: bg: "#1E1E1E" fg: "#DCDCDC" diff --git a/themes/niketaprettier.yaml b/themes/niketaprettier.yaml index b89eabbb..0550cdb6 100644 --- a/themes/niketaprettier.yaml +++ b/themes/niketaprettier.yaml @@ -8,6 +8,7 @@ source: author: "selfrefactor" repo: "https://github.com/selfrefactor/allegory-theme" url: "https://marketplace.visualstudio.com/items?itemName=selfrefactor.allegory-theme" + formats: null colors: bg: "#1A2B34" fg: "#CEE2EE" diff --git a/themes/niko-s-techlabs-dark.yaml b/themes/niko-s-techlabs-dark.yaml index fff9afa8..07218fce 100644 --- a/themes/niko-s-techlabs-dark.yaml +++ b/themes/niko-s-techlabs-dark.yaml @@ -8,6 +8,7 @@ source: author: "Niko's TechLabs" repo: "https://gitlab.com/nikos-techlabs/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ntl.ntl-theme" + formats: null colors: bg: "#171717" fg: "#E8E8E8" diff --git a/themes/nikso-vscode-theme-dark.yaml b/themes/nikso-vscode-theme-dark.yaml deleted file mode 100644 index 747a70a7..00000000 --- a/themes/nikso-vscode-theme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "nikso-vscode-theme-dark" -source: - marketplace_id: "thenikso.nikso-vscode-theme" - version: "2.0.0" - installs: 96 - rating: 0 - ratings: 0 - author: "thenikso" - repo: "https://github.com/thenikso/nikso-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=thenikso.nikso-vscode-theme" -colors: - bg: "#282C33" - fg: "#D1D7E0" - black: "#414141" - red: "#D73A49" - green: "#90D259" - yellow: "#F7C400" - blue: "#005CC5" - magenta: "#FF73FD" - cyan: "#0BC7D7" - white: "#BFBFBF" - brightBlack: "#989898" - brightRed: "#FA6F71" - brightGreen: "#35D61C" - brightYellow: "#FFCA39" - brightBlue: "#1C23D6" - brightMagenta: "#FF00FF" - brightCyan: "#3CD7E7" - brightWhite: "#E0E0E0" -meta: - mode: "dark" - accent: "pink" - hue: 262 - pair: null - contrast: - fg: 77.8 - black: 0 - red: 27 - green: 64.6 - yellow: 70.8 - blue: 17.2 - magenta: 53.2 - cyan: 58.5 - white: 63.8 - brightBlack: 42.5 - brightRed: 44.9 - brightGreen: 61.5 - brightYellow: 74.7 - brightBlue: 8.5 - brightMagenta: 42 - brightCyan: 67.3 - brightWhite: 83.7 diff --git a/themes/nil-ui.yaml b/themes/nil-ui.yaml index 5787d3eb..47a11ea0 100644 --- a/themes/nil-ui.yaml +++ b/themes/nil-ui.yaml @@ -8,6 +8,7 @@ source: author: "Petr Stepchenko" repo: "https://github.com/Nitrino/vscode-theme-nil-ui" url: "https://marketplace.visualstudio.com/items?itemName=Nitrino.nil-ui" + formats: null colors: bg: "#262A32" fg: "#B5BDCA" diff --git a/themes/nimbus-mint-light.yaml b/themes/nimbus-mint-light.yaml deleted file mode 100644 index cf511d4d..00000000 --- a/themes/nimbus-mint-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nimbus Mint Light" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#F5F8FA" - fg: "#2D3748" - black: "#2D3748" - red: "#DC2626" - green: "#16A349" - yellow: "#B45309" - blue: "#0072C6" - magenta: "#A31DB1" - cyan: "#00A3A3" - white: "#E5E9F0" - brightBlack: "#718096" - brightRed: "#E03E3E" - brightGreen: "#26A769" - brightYellow: "#D97706" - brightBlue: "#1A85FF" - brightMagenta: "#C838C6" - brightCyan: "#0F9F9F" - brightWhite: "#F5F8FA" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 93 - black: 93 - red: 67.1 - green: 55.3 - yellow: 69.6 - blue: 69.2 - magenta: 75 - cyan: 52.9 - white: 0 - brightBlack: 63 - brightRed: 63.6 - brightGreen: 52.8 - brightYellow: 54 - brightBlue: 58.4 - brightMagenta: 64.4 - brightCyan: 54.7 - brightWhite: 0 diff --git a/themes/ninjadark.yaml b/themes/ninjadark.yaml index db9b0fe0..6c46ed21 100644 --- a/themes/ninjadark.yaml +++ b/themes/ninjadark.yaml @@ -8,6 +8,7 @@ source: author: "Manikandan" repo: "https://github.com/mani-cmd/ninjadark" url: "https://marketplace.visualstudio.com/items?itemName=Manikandan.ninjadark" + formats: null colors: bg: "#171728" fg: "#FFFFFF" diff --git a/themes/nitrous-theme-dark.yaml b/themes/nitrous-theme-dark.yaml index 6a80df0e..b97c0415 100644 --- a/themes/nitrous-theme-dark.yaml +++ b/themes/nitrous-theme-dark.yaml @@ -8,6 +8,7 @@ source: author: "NiTROUS Cloud" repo: "https://github.com/scar45/nitrous-vscode-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=nitrous-cloud.nitrous-vscode-color-theme" + formats: null colors: bg: "#091833" fg: "#B0B0F7" diff --git a/themes/nivtheme.yaml b/themes/nivtheme.yaml index b341cfbe..70c022ba 100644 --- a/themes/nivtheme.yaml +++ b/themes/nivtheme.yaml @@ -8,6 +8,7 @@ source: author: "nivwer" repo: "https://github.com/nivwer/nivthemes" url: "https://marketplace.visualstudio.com/items?itemName=nivwer.nivthemes" + formats: null colors: bg: "#000000" fg: "#A3A2B3" diff --git a/themes/nix.yaml b/themes/nix.yaml deleted file mode 100644 index 7343ab2c..00000000 --- a/themes/nix.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nix" -source: - marketplace_id: "alvarosannas.nix" - version: "1.4.8" - installs: 2950 - rating: 5 - ratings: 1 - author: "Alvaro Santana" - repo: "https://github.com/alvarosannas/nix" - url: "https://marketplace.visualstudio.com/items?itemName=alvarosannas.nix" -colors: - bg: "#1A1A1A" - fg: "#F8F8F2" - black: "#1A1A1A" - red: "#F24B78" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#30BCED" - magenta: "#A978FF" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#1A1A1A" - brightRed: "#F24B78" - brightGreen: "#50FA7B" - brightYellow: "#F1FA8C" - brightBlue: "#30BCED" - brightMagenta: "#A978FF" - brightCyan: "#8BE9FD" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 101.6 - black: 0 - red: 39.3 - green: 84.5 - yellow: 98.2 - blue: 58 - magenta: 43 - cyan: 83.6 - white: 101.6 - brightBlack: 0 - brightRed: 39.3 - brightGreen: 84.5 - brightYellow: 98.2 - brightBlue: 58 - brightMagenta: 43 - brightCyan: 83.6 - brightWhite: 101.6 diff --git a/themes/nkalai-dark.yaml b/themes/nkalai-dark.yaml index f56fa4d6..74166c74 100644 --- a/themes/nkalai-dark.yaml +++ b/themes/nkalai-dark.yaml @@ -8,6 +8,7 @@ source: author: "Tsepo Nkalai" repo: "https://github.com/nkalait/nkalai-vscode-colour-themes" url: "https://marketplace.visualstudio.com/items?itemName=nkalait.nkalai-theme" + formats: null colors: bg: "#1E2A30" fg: "#E6E2D9" diff --git a/themes/nkalai-light.yaml b/themes/nkalai-light.yaml index a4cd99b4..b8ff537a 100644 --- a/themes/nkalai-light.yaml +++ b/themes/nkalai-light.yaml @@ -8,6 +8,7 @@ source: author: "Tsepo Nkalai" repo: "https://github.com/nkalait/nkalai-vscode-colour-themes" url: "https://marketplace.visualstudio.com/items?itemName=nkalait.nkalai-theme" + formats: null colors: bg: "#E8E3D3" fg: "#2F291F" diff --git a/themes/nloo-theme.yaml b/themes/nloo-theme.yaml index d3facde7..094aa263 100644 --- a/themes/nloo-theme.yaml +++ b/themes/nloo-theme.yaml @@ -1,4 +1,4 @@ -name: "nloo-Theme" +name: "nloo-theme" source: marketplace_id: "nloo.nlootheme" version: "0.0.4" @@ -8,6 +8,7 @@ source: author: "nloo" repo: "https://github.com/n-loo/nielstheme" url: "https://marketplace.visualstudio.com/items?itemName=nloo.nlootheme" + formats: null colors: bg: "#3B3947" fg: "#EFEEE3" diff --git a/themes/no-not-the-lava-it-burns-ahhh-fork.yaml b/themes/no-not-the-lava-it-burns-ahhh-fork.yaml deleted file mode 100644 index ce8d8eea..00000000 --- a/themes/no-not-the-lava-it-burns-ahhh-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "no not the lava it burns ahhh - Fork" -source: - marketplace_id: "xynny.painfullight-theme" - version: "0.0.1" - installs: 417 - rating: 5 - ratings: 2 - author: "xynny" - repo: "https://github.com/xynnylol/vsthemes" - url: "https://marketplace.visualstudio.com/items?itemName=xynny.painfullight-theme" -colors: - bg: "#411200" - fg: "#FFFFFF" - black: "#FF00B3" - red: "#FF0000" - green: "#046D45" - yellow: "#828200" - blue: "#1A5CA5" - magenta: "#FF00FF" - cyan: "#969B00" - white: "#055BFF" - brightBlack: "#059600" - brightRed: "#FF006C" - brightGreen: "#044F31" - brightYellow: "#929255" - brightBlue: "#174905" - brightMagenta: "#FF43FF" - brightCyan: "#002E03" - brightWhite: "#FF6C00" -meta: - mode: "dark" - accent: "pink" - hue: 41 - pair: null - contrast: - fg: 105.1 - black: 38.6 - red: 34.8 - green: 17.8 - yellow: 31 - blue: 16.4 - magenta: 43.4 - cyan: 42.4 - white: 23.7 - brightBlack: 33.2 - brightRed: 35.9 - brightGreen: 7.6 - brightYellow: 39.2 - brightBlue: 0 - brightMagenta: 46.7 - brightCyan: 0 - brightWhite: 45.5 diff --git a/themes/no-pixie-blue-dark.yaml b/themes/no-pixie-blue-dark.yaml index 86d7cc1d..866eeef3 100644 --- a/themes/no-pixie-blue-dark.yaml +++ b/themes/no-pixie-blue-dark.yaml @@ -8,6 +8,8 @@ source: author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" + formats: + iterm2: "https://raw.githubusercontent.com/nopixie/nopixie-theme/main/iterm/No Pixie Blue Dark.itermcolors" colors: bg: "#242B38" fg: "#F0F5FA" diff --git a/themes/no-pixie-blue-light.yaml b/themes/no-pixie-blue-light.yaml index 70b8dbbf..7cc255d5 100644 --- a/themes/no-pixie-blue-light.yaml +++ b/themes/no-pixie-blue-light.yaml @@ -8,6 +8,8 @@ source: author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" + formats: + iterm2: "https://raw.githubusercontent.com/nopixie/nopixie-theme/main/iterm/No Pixie Blue Dark.itermcolors" colors: bg: "#F8FAFE" fg: "#2A3340" diff --git a/themes/no-pixie-dark-high-contrast.yaml b/themes/no-pixie-dark-high-contrast.yaml index 3872079e..d7300170 100644 --- a/themes/no-pixie-dark-high-contrast.yaml +++ b/themes/no-pixie-dark-high-contrast.yaml @@ -8,6 +8,8 @@ source: author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" + formats: + iterm2: "https://raw.githubusercontent.com/nopixie/nopixie-theme/main/iterm/No Pixie Blue Dark.itermcolors" colors: bg: "#101010" fg: "#FFFFFF" diff --git a/themes/no-pixie-dark.yaml b/themes/no-pixie-dark.yaml index faf08ae5..393fa377 100644 --- a/themes/no-pixie-dark.yaml +++ b/themes/no-pixie-dark.yaml @@ -8,6 +8,8 @@ source: author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" + formats: + iterm2: "https://raw.githubusercontent.com/nopixie/nopixie-theme/main/iterm/No Pixie Blue Dark.itermcolors" colors: bg: "#252A33" fg: "#F0F3F8" diff --git a/themes/no-pixie-light-high-contrast.yaml b/themes/no-pixie-light-high-contrast.yaml index fd64ae13..c9f365dd 100644 --- a/themes/no-pixie-light-high-contrast.yaml +++ b/themes/no-pixie-light-high-contrast.yaml @@ -8,6 +8,8 @@ source: author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" + formats: + iterm2: "https://raw.githubusercontent.com/nopixie/nopixie-theme/main/iterm/No Pixie Blue Dark.itermcolors" colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/no-pixie-light.yaml b/themes/no-pixie-light.yaml index d1d3e7b3..0dafdccf 100644 --- a/themes/no-pixie-light.yaml +++ b/themes/no-pixie-light.yaml @@ -8,6 +8,8 @@ source: author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" + formats: + iterm2: "https://raw.githubusercontent.com/nopixie/nopixie-theme/main/iterm/No Pixie Blue Dark.itermcolors" colors: bg: "#FFFFFF" fg: "#2A2F38" diff --git a/themes/no-pixie-yellow-dark.yaml b/themes/no-pixie-yellow-dark.yaml index c969cd49..770267de 100644 --- a/themes/no-pixie-yellow-dark.yaml +++ b/themes/no-pixie-yellow-dark.yaml @@ -8,6 +8,8 @@ source: author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" + formats: + iterm2: "https://raw.githubusercontent.com/nopixie/nopixie-theme/main/iterm/No Pixie Blue Dark.itermcolors" colors: bg: "#352B23" fg: "#F8F4E8" diff --git a/themes/no-pixie-yellow-light.yaml b/themes/no-pixie-yellow-light.yaml index 94f59b50..75196f5b 100644 --- a/themes/no-pixie-yellow-light.yaml +++ b/themes/no-pixie-yellow-light.yaml @@ -8,6 +8,8 @@ source: author: "No Pixie" repo: "https://github.com/nopixie/nopixie-theme" url: "https://marketplace.visualstudio.com/items?itemName=no-pixie.nopixie-theme" + formats: + iterm2: "https://raw.githubusercontent.com/nopixie/nopixie-theme/main/iterm/No Pixie Blue Dark.itermcolors" colors: bg: "#FFFDF0" fg: "#3A2F18" diff --git a/themes/noah-theme.yaml b/themes/noah-theme.yaml index 31a52dd7..a64d9f0f 100644 --- a/themes/noah-theme.yaml +++ b/themes/noah-theme.yaml @@ -1,4 +1,4 @@ -name: "Noah Theme" +name: "Noah theme" source: marketplace_id: "johnnyghost.noah-theme" version: "0.4.4" @@ -8,6 +8,7 @@ source: author: "johnnyghost" repo: "https://github.com/johnnyghost/vsc-noah-theme" url: "https://marketplace.visualstudio.com/items?itemName=johnnyghost.noah-theme" + formats: null colors: bg: "#1A1B26" fg: "#A9B1D6" diff --git a/themes/noctaliatheme.yaml b/themes/noctaliatheme.yaml index ed9dc5cb..979aed56 100644 --- a/themes/noctaliatheme.yaml +++ b/themes/noctaliatheme.yaml @@ -2,12 +2,13 @@ name: "NoctaliaTheme" source: marketplace_id: "Noctalia.noctaliatheme" version: "0.0.5" - installs: 1310 + installs: 1327 rating: 0 ratings: 0 author: "Noctalia Team" repo: "https://github.com/tuibird/noctalia-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Noctalia.noctaliatheme" + formats: null colors: bg: "#070722" fg: "#FFFFFF" diff --git a/themes/noctilux.yaml b/themes/noctilux.yaml index 097b8bb5..86c91f5e 100644 --- a/themes/noctilux.yaml +++ b/themes/noctilux.yaml @@ -8,6 +8,7 @@ source: author: "madgrid" repo: "https://github.com/madgrid/vscode-noctilux" url: "https://marketplace.visualstudio.com/items?itemName=madgrid.noctilux-theme" + formats: null colors: bg: "#0A0B0A" fg: "#FFFFFF" diff --git a/themes/noctis-high-contrast.yaml b/themes/noctis-high-contrast.yaml deleted file mode 100644 index 874b06c1..00000000 --- a/themes/noctis-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noctis High Contrast" -source: - marketplace_id: "Kamen.noctis-high-contrast" - version: "10.39.1" - installs: 47803 - rating: 5 - ratings: 6 - author: "Kamen" - repo: "https://github.com/KamenKolev/noctis-hc" - url: "https://marketplace.visualstudio.com/items?itemName=Kamen.noctis-high-contrast" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#CD0000" - green: "#00CD00" - yellow: "#CDCD00" - blue: "#0000FF" - magenta: "#CD00CD" - cyan: "#00CDCD" - white: "#E5E5E5" - brightBlack: "#7F7F7F" - brightRed: "#FF0000" - brightGreen: "#00FF00" - brightYellow: "#FFFF00" - brightBlue: "#5C5CFF" - brightMagenta: "#FF00FF" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 25.4 - green: 60.8 - yellow: 72.5 - blue: 16.2 - magenta: 31.7 - cyan: 64.9 - white: 91 - brightBlack: 34.3 - brightRed: 37.5 - brightGreen: 86.5 - brightYellow: 102.7 - brightBlue: 29.4 - brightMagenta: 46.2 - brightCyan: 92.2 - brightWhite: 107.9 diff --git a/themes/noctis-lilac.yaml b/themes/noctis-lilac.yaml index f0def548..23a5f9c6 100644 --- a/themes/noctis-lilac.yaml +++ b/themes/noctis-lilac.yaml @@ -8,6 +8,7 @@ source: author: "Ramly" repo: "https://github.com/Ramly23/my-clean-theme" url: "https://marketplace.visualstudio.com/items?itemName=Ramly.my-clean-theme" + formats: null colors: bg: "#F2F1F8" fg: "#0C006B" diff --git a/themes/noctis-lux-ansi-16.yaml b/themes/noctis-lux-ansi-16.yaml index db15d24b..78f347b6 100644 --- a/themes/noctis-lux-ansi-16.yaml +++ b/themes/noctis-lux-ansi-16.yaml @@ -8,6 +8,8 @@ source: author: "chtenb" repo: "https://github.com/chtenb/vscode-ansi16" url: "https://marketplace.visualstudio.com/items?itemName=ctenbrinke.ansi16" + formats: + sublime: "https://raw.githubusercontent.com/chtenb/vscode-ansi16/main/themes/material-ansi16.tmTheme" colors: bg: "#FEF8EC" fg: "#005661" diff --git a/themes/noctis-lux-dean-s-version.yaml b/themes/noctis-lux-dean-s-version.yaml deleted file mode 100644 index ee8eb429..00000000 --- a/themes/noctis-lux-dean-s-version.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noctis Lux (Dean's version)" -source: - marketplace_id: "DeanRTaylor1.noctis-lux-medium" - version: "0.4.0" - installs: 1147 - rating: 5 - ratings: 1 - author: "DeanRTaylor1" - repo: "https://github.com/DeanRTaylor1/noctis-lux-deans-version" - url: "https://marketplace.visualstudio.com/items?itemName=DeanRTaylor1.noctis-lux-medium" -colors: - bg: "#F6E5CB" - fg: "#005661" - black: "#003B42" - red: "#E34E1C" - green: "#00B368" - yellow: "#F49725" - blue: "#0094F0" - magenta: "#FF5792" - cyan: "#00BDD6" - white: "#8CA6A6" - brightBlack: "#004D57" - brightRed: "#FF4000" - brightGreen: "#00D17A" - brightYellow: "#FF8C00" - brightBlue: "#0FA3FF" - brightMagenta: "#FF6B9F" - brightCyan: "#00CBE6" - brightWhite: "#BBC3C4" -meta: - mode: "light" - accent: "orange" - hue: 79 - pair: null - contrast: - fg: 74.3 - black: 83.5 - red: 51.2 - green: 38.2 - yellow: 30 - blue: 44.7 - magenta: 41.3 - cyan: 29.9 - white: 36.4 - brightBlack: 77.5 - brightRed: 46.8 - brightGreen: 24.3 - brightYellow: 31.3 - brightBlue: 38 - brightMagenta: 37.1 - brightCyan: 23 - brightWhite: 19.1 diff --git a/themes/noctis-red-flow.yaml b/themes/noctis-red-flow.yaml index d7ca3c4a..ab574507 100644 --- a/themes/noctis-red-flow.yaml +++ b/themes/noctis-red-flow.yaml @@ -8,6 +8,7 @@ source: author: "Doc" repo: "https://github.com/doc-code-hub/noctis" url: "https://marketplace.visualstudio.com/items?itemName=doc-extentions.doctis" + formats: null colors: bg: "#3D0613" fg: "#CBBEC2" diff --git a/themes/noctua-black-rose.yaml b/themes/noctua-black-rose.yaml index 9fc2dbd3..1e15e6d2 100644 --- a/themes/noctua-black-rose.yaml +++ b/themes/noctua-black-rose.yaml @@ -8,6 +8,7 @@ source: author: "Firstbober" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Firstbober.noctua-theme" + formats: null colors: bg: "#101010" fg: "#AAAAAA" diff --git a/themes/noctua-dark-leaf.yaml b/themes/noctua-dark-leaf.yaml index 49505e93..288159e9 100644 --- a/themes/noctua-dark-leaf.yaml +++ b/themes/noctua-dark-leaf.yaml @@ -8,6 +8,7 @@ source: author: "Firstbober" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Firstbober.noctua-theme" + formats: null colors: bg: "#001010" fg: "#AAAAAA" diff --git a/themes/noctua-grass.yaml b/themes/noctua-grass.yaml index 4524d32d..17c09aba 100644 --- a/themes/noctua-grass.yaml +++ b/themes/noctua-grass.yaml @@ -8,6 +8,7 @@ source: author: "Firstbober" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Firstbober.noctua-theme" + formats: null colors: bg: "#101A10" fg: "#AAAAAA" diff --git a/themes/noctua-hidden-sky.yaml b/themes/noctua-hidden-sky.yaml index 0d24044c..8991984b 100644 --- a/themes/noctua-hidden-sky.yaml +++ b/themes/noctua-hidden-sky.yaml @@ -8,6 +8,7 @@ source: author: "Firstbober" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Firstbober.noctua-theme" + formats: null colors: bg: "#10101E" fg: "#AAAAAA" diff --git a/themes/nocturnal.yaml b/themes/nocturnal.yaml index 925aebf9..b7256018 100644 --- a/themes/nocturnal.yaml +++ b/themes/nocturnal.yaml @@ -8,6 +8,7 @@ source: author: "JaimeStill" repo: "https://github.com/JaimeStill/nocturnal" url: "https://marketplace.visualstudio.com/items?itemName=JaimeStill.nocturnal" + formats: null colors: bg: "#000000" fg: "#F7F7F7" diff --git a/themes/nodr-cocoa.yaml b/themes/nodr-cocoa.yaml index e0488d6a..10ce2be5 100644 --- a/themes/nodr-cocoa.yaml +++ b/themes/nodr-cocoa.yaml @@ -8,6 +8,7 @@ source: author: "Samuel Bran" repo: "https://github.com/samuelbran/Nodr" url: "https://marketplace.visualstudio.com/items?itemName=samuelbran.nodr" + formats: null colors: bg: "#262020" fg: "#938686" diff --git a/themes/nodr-plum.yaml b/themes/nodr-plum.yaml index 1e9ad7fa..9e176974 100644 --- a/themes/nodr-plum.yaml +++ b/themes/nodr-plum.yaml @@ -8,6 +8,7 @@ source: author: "Samuel Bran" repo: "https://github.com/samuelbran/Nodr" url: "https://marketplace.visualstudio.com/items?itemName=samuelbran.nodr" + formats: null colors: bg: "#2A2739" fg: "#8A86A1" diff --git a/themes/noe.yaml b/themes/noe.yaml index 7b3cb198..b6c30113 100644 --- a/themes/noe.yaml +++ b/themes/noe.yaml @@ -8,6 +8,7 @@ source: author: "kaylie" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kaylie.noe" + formats: null colors: bg: "#414E58" fg: "#D6DEEB" diff --git a/themes/noel.yaml b/themes/noel.yaml index 46ad286c..e8cfd6a3 100644 --- a/themes/noel.yaml +++ b/themes/noel.yaml @@ -8,6 +8,8 @@ source: author: "arzg" repo: "https://github.com/arzg/noel" url: "https://marketplace.visualstudio.com/items?itemName=arzg.noel" + formats: + iterm2: "https://raw.githubusercontent.com/arzg/noel/master/noel.itermcolors" colors: bg: "#2A3235" fg: "#DEEEF3" diff --git a/themes/noir-dark.yaml b/themes/noir-dark.yaml deleted file mode 100644 index fb961739..00000000 --- a/themes/noir-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir (Dark)" -source: - marketplace_id: "SectorZ.noir-vs-code-theme" - version: "1.5.0" - installs: 771 - rating: 0 - ratings: 0 - author: "Sector Z" - repo: "https://github.com/SenpaiSumpie/Noir" - url: "https://marketplace.visualstudio.com/items?itemName=SectorZ.noir-vs-code-theme" -colors: - bg: "#191919" - fg: "#FFFFFF" - black: "#585858" - red: "#FF4444" - green: "#0FFFA3" - yellow: "#FFFF11" - blue: "#3896FF" - magenta: "#FF58FF" - cyan: "#15D1FF" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#FF6262" - brightGreen: "#44FFB4" - brightYellow: "#FFFFAA" - brightBlue: "#58A7FF" - brightMagenta: "#FF87FF" - brightCyan: "#30D6FF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106.7 - black: 16.1 - red: 40.4 - green: 87.2 - yellow: 101.5 - blue: 44.2 - magenta: 51.1 - cyan: 68.3 - white: 89.8 - brightBlack: 21.8 - brightRed: 45.8 - brightGreen: 88.5 - brightYellow: 103.5 - brightBlue: 51.9 - brightMagenta: 61.2 - brightCyan: 71 - brightWhite: 89.8 diff --git a/themes/noir-dracula.yaml b/themes/noir-dracula.yaml deleted file mode 100644 index 30f9e944..00000000 --- a/themes/noir-dracula.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir dracula" -source: - marketplace_id: "andrewberty.noir-theme-bundle" - version: "1.7.0" - installs: 13972 - rating: 5 - ratings: 3 - author: "andrewberty" - repo: "https://github.com/andrew-george/Noir-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" -colors: - bg: "#000000" - fg: "#CCCCCC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 75.7 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/noir-essence-dark.yaml b/themes/noir-essence-dark.yaml deleted file mode 100644 index e1b5c149..00000000 --- a/themes/noir-essence-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir Essence Dark" -source: - marketplace_id: "u1145h.u1145h-heme-ark" - version: "0.6.1" - installs: 1487 - rating: 5 - ratings: 1 - author: "u1145h" - repo: "https://github.com/u1145h/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=u1145h.u1145h-heme-ark" -colors: - bg: "#111314" - fg: "#F7F3EA" - black: "#2B2D2D" - red: "#EA6962" - green: "#89B482" - yellow: "#E78A4E" - blue: "#7DAEA3" - magenta: "#D3869B" - cyan: "#A9B665" - white: "#F7F3EA" - brightBlack: "#434545" - brightRed: "#EA6962" - brightGreen: "#89B482" - brightYellow: "#E78A4E" - brightBlue: "#7DAEA3" - brightMagenta: "#D3869B" - brightCyan: "#A9B665" - brightWhite: "#F7F3EA" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Noir Essence Light" - contrast: - fg: 99.5 - black: 0 - red: 43.3 - green: 55 - yellow: 51.2 - blue: 52.6 - magenta: 48.4 - cyan: 58.4 - white: 99.5 - brightBlack: 9.4 - brightRed: 43.3 - brightGreen: 55 - brightYellow: 51.2 - brightBlue: 52.6 - brightMagenta: 48.4 - brightCyan: 58.4 - brightWhite: 99.5 diff --git a/themes/noir-essence-light.yaml b/themes/noir-essence-light.yaml deleted file mode 100644 index 40e40d6a..00000000 --- a/themes/noir-essence-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir Essence Light" -source: - marketplace_id: "u1145h.u1145h-heme-ark" - version: "0.6.1" - installs: 1487 - rating: 5 - ratings: 1 - author: "u1145h" - repo: "https://github.com/u1145h/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=u1145h.u1145h-heme-ark" -colors: - bg: "#F7F3EA" - fg: "#000000" - black: "#111314" - red: "#D15F59" - green: "#A9B665" - yellow: "#EADB62" - blue: "#699289" - magenta: "#C47D90" - cyan: "#81A97A" - white: "#C7C3BA" - brightBlack: "#666666" - brightRed: "#EA6962" - brightGreen: "#A9B665" - brightYellow: "#EADB62" - brightBlue: "#7DAEA3" - brightMagenta: "#D3869B" - brightCyan: "#89B482" - brightWhite: "#B4B1AA" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Noir Essence Dark" - contrast: - fg: 99 - black: 98.2 - red: 58.1 - green: 36.1 - yellow: 13 - blue: 55.1 - magenta: 51.3 - cyan: 44.7 - white: 25.2 - brightBlack: 71.7 - brightRed: 50.8 - brightGreen: 36.1 - brightYellow: 13 - brightBlue: 41.7 - brightMagenta: 45.9 - brightCyan: 39.4 - brightWhite: 35 diff --git a/themes/noir-light.yaml b/themes/noir-light.yaml deleted file mode 100644 index d43fd6ce..00000000 --- a/themes/noir-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir (Light)" -source: - marketplace_id: "SectorZ.noir-vs-code-theme" - version: "1.5.0" - installs: 771 - rating: 0 - ratings: 0 - author: "Sector Z" - repo: "https://github.com/SenpaiSumpie/Noir" - url: "https://marketplace.visualstudio.com/items?itemName=SectorZ.noir-vs-code-theme" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00B600" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106 - black: 106 - red: 74 - green: 51.9 - yellow: 57.9 - blue: 86.1 - magenta: 74.6 - cyan: 60.6 - white: 85.9 - brightBlack: 78.8 - brightRed: 74 - brightGreen: 40.9 - brightYellow: 40.9 - brightBlue: 86.1 - brightMagenta: 74.6 - brightCyan: 60.6 - brightWhite: 48.5 diff --git a/themes/noir-outrun.yaml b/themes/noir-outrun.yaml deleted file mode 100644 index 2befd8a6..00000000 --- a/themes/noir-outrun.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir Outrun" -source: - marketplace_id: "andrewberty.noir-theme-bundle" - version: "1.7.0" - installs: 13972 - rating: 5 - ratings: 3 - author: "andrewberty" - repo: "https://github.com/andrew-george/Noir-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" -colors: - bg: "#0B081F" - fg: "#F2F3F7" - black: "#283034" - red: "#FF2E97" - green: "#62A9CF" - yellow: "#FFD400" - blue: "#42C6FF" - magenta: "#FF2AFC" - cyan: "#42C6FF" - white: "#D9E0E9" - brightBlack: "#435056" - brightRed: "#FF2E97" - brightGreen: "#ADD0E5" - brightYellow: "#FFD400" - brightBlue: "#42C6FF" - brightMagenta: "#FF2AFC" - brightCyan: "#42C6FF" - brightWhite: "#F4F6F9" -meta: - mode: "dark" - accent: "pink" - hue: 286 - pair: null - contrast: - fg: 99.8 - black: 0 - red: 41.3 - green: 51.1 - yellow: 82.7 - blue: 65 - magenta: 46.8 - cyan: 65 - white: 87.1 - brightBlack: 13.2 - brightRed: 41.3 - brightGreen: 74.8 - brightYellow: 82.7 - brightBlue: 65 - brightMagenta: 46.8 - brightCyan: 65 - brightWhite: 101.6 diff --git a/themes/noir-owl.yaml b/themes/noir-owl.yaml deleted file mode 100644 index fde82a70..00000000 --- a/themes/noir-owl.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir Owl" -source: - marketplace_id: "andrewberty.noir-theme-bundle" - version: "1.7.0" - installs: 13972 - rating: 5 - ratings: 3 - author: "andrewberty" - repo: "https://github.com/andrew-george/Noir-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" -colors: - bg: "#010C18" - fg: "#D6DEEB" - black: "#010C18" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 245 - pair: null - contrast: - fg: 86 - black: 0 - red: 40.1 - green: 68 - yellow: 82.8 - blue: 56.7 - magenta: 54.5 - cyan: 60.5 - white: 107.6 - brightBlack: 16.3 - brightRed: 40.1 - brightGreen: 68 - brightYellow: 94.5 - brightBlue: 56.7 - brightMagenta: 54.5 - brightCyan: 74.7 - brightWhite: 107.6 diff --git a/themes/noir-poimandres-black.yaml b/themes/noir-poimandres-black.yaml deleted file mode 100644 index c90088e0..00000000 --- a/themes/noir-poimandres-black.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir Poimandres Black" -source: - marketplace_id: "andrewberty.noir-theme-bundle" - version: "1.7.0" - installs: 13972 - rating: 5 - ratings: 3 - author: "andrewberty" - repo: "https://github.com/andrew-george/Noir-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" -colors: - bg: "#000000" - fg: "#A6ACCD" - black: "#000000" - red: "#D0679D" - green: "#5DE4C7" - yellow: "#FFFAC2" - blue: "#89DDFF" - magenta: "#F087BD" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#A6ACCD" - brightRed: "#D0679D" - brightGreen: "#5DE4C7" - brightYellow: "#FFFAC2" - brightBlue: "#ADD7FF" - brightMagenta: "#F087BD" - brightCyan: "#ADD7FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 58.1 - black: 0 - red: 40.2 - green: 77.4 - yellow: 103 - blue: 79.3 - magenta: 55.9 - cyan: 79.3 - white: 107.9 - brightBlack: 58.1 - brightRed: 40.2 - brightGreen: 77.4 - brightYellow: 103 - brightBlue: 79.6 - brightMagenta: 55.9 - brightCyan: 79.6 - brightWhite: 107.9 diff --git a/themes/noir-poimandres-dark.yaml b/themes/noir-poimandres-dark.yaml deleted file mode 100644 index b24e1f4b..00000000 --- a/themes/noir-poimandres-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir Poimandres Dark" -source: - marketplace_id: "andrewberty.noir-theme-bundle" - version: "1.7.0" - installs: 13972 - rating: 5 - ratings: 3 - author: "andrewberty" - repo: "https://github.com/andrew-george/Noir-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" -colors: - bg: "#12131B" - fg: "#A6ACCD" - black: "#12131B" - red: "#D0679D" - green: "#5DE4C7" - yellow: "#FFFAC2" - blue: "#89DDFF" - magenta: "#F087BD" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#A6ACCD" - brightRed: "#D0679D" - brightGreen: "#5DE4C7" - brightYellow: "#FFFAC2" - brightBlue: "#ADD7FF" - brightMagenta: "#F087BD" - brightCyan: "#ADD7FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 279 - pair: null - contrast: - fg: 57.4 - black: 0 - red: 39.5 - green: 76.7 - yellow: 102.3 - blue: 78.6 - magenta: 55.2 - cyan: 78.6 - white: 107.2 - brightBlack: 57.4 - brightRed: 39.5 - brightGreen: 76.7 - brightYellow: 102.3 - brightBlue: 78.9 - brightMagenta: 55.2 - brightCyan: 78.9 - brightWhite: 107.2 diff --git a/themes/noir-poimandres-darker.yaml b/themes/noir-poimandres-darker.yaml deleted file mode 100644 index 69e0d476..00000000 --- a/themes/noir-poimandres-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir Poimandres Darker" -source: - marketplace_id: "andrewberty.noir-theme-bundle" - version: "1.7.0" - installs: 13972 - rating: 5 - ratings: 3 - author: "andrewberty" - repo: "https://github.com/andrew-george/Noir-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" -colors: - bg: "#0F1017" - fg: "#A6ACCD" - black: "#0F1017" - red: "#D0679D" - green: "#5DE4C7" - yellow: "#FFFAC2" - blue: "#89DDFF" - magenta: "#F087BD" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#A6ACCD" - brightRed: "#D0679D" - brightGreen: "#5DE4C7" - brightYellow: "#FFFAC2" - brightBlue: "#ADD7FF" - brightMagenta: "#F087BD" - brightCyan: "#ADD7FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 278 - pair: null - contrast: - fg: 57.7 - black: 0 - red: 39.8 - green: 76.9 - yellow: 102.6 - blue: 78.8 - magenta: 55.4 - cyan: 78.8 - white: 107.4 - brightBlack: 57.7 - brightRed: 39.8 - brightGreen: 76.9 - brightYellow: 102.6 - brightBlue: 79.1 - brightMagenta: 55.4 - brightCyan: 79.1 - brightWhite: 107.4 diff --git a/themes/noir-poimandres.yaml b/themes/noir-poimandres.yaml deleted file mode 100644 index 973686a4..00000000 --- a/themes/noir-poimandres.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir Poimandres" -source: - marketplace_id: "andrewberty.noir-theme-bundle" - version: "1.7.0" - installs: 13972 - rating: 5 - ratings: 3 - author: "andrewberty" - repo: "https://github.com/andrew-george/Noir-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" -colors: - bg: "#1B1E28" - fg: "#A6ACCD" - black: "#1B1E28" - red: "#D0679D" - green: "#5DE4C7" - yellow: "#FFFAC2" - blue: "#89DDFF" - magenta: "#F087BD" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#A6ACCD" - brightRed: "#D0679D" - brightGreen: "#5DE4C7" - brightYellow: "#FFFAC2" - brightBlue: "#ADD7FF" - brightMagenta: "#F087BD" - brightCyan: "#ADD7FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 272 - pair: null - contrast: - fg: 56.3 - black: 0 - red: 38.3 - green: 75.5 - yellow: 101.1 - blue: 77.4 - magenta: 54 - cyan: 77.4 - white: 106 - brightBlack: 56.3 - brightRed: 38.3 - brightGreen: 75.5 - brightYellow: 101.1 - brightBlue: 77.7 - brightMagenta: 54 - brightCyan: 77.7 - brightWhite: 106 diff --git a/themes/noir-ros-pine-grey.yaml b/themes/noir-ros-pine-grey.yaml deleted file mode 100644 index 345c9f41..00000000 --- a/themes/noir-ros-pine-grey.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir Rosé Pine Grey" -source: - marketplace_id: "andrewberty.noir-theme-bundle" - version: "1.7.0" - installs: 13972 - rating: 5 - ratings: 3 - author: "andrewberty" - repo: "https://github.com/andrew-george/Noir-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" -colors: - bg: "#090909" - fg: "#E0DEF4" - black: "#26233A" - red: "#EB6F92" - green: "#31748F" - yellow: "#F6C177" - blue: "#9CCFD8" - magenta: "#C4A7E7" - cyan: "#EBBCBA" - white: "#E0DEF4" - brightBlack: "#908CAA" - brightRed: "#EB6F92" - brightGreen: "#31748F" - brightYellow: "#F6C177" - brightBlue: "#9CCFD8" - brightMagenta: "#C4A7E7" - brightCyan: "#EBBCBA" - brightWhite: "#E0DEF4" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 87.8 - black: 0 - red: 46.8 - green: 26 - yellow: 74.5 - blue: 72.2 - magenta: 61.2 - cyan: 72.7 - white: 87.8 - brightBlack: 42.1 - brightRed: 46.8 - brightGreen: 26 - brightYellow: 74.5 - brightBlue: 72.2 - brightMagenta: 61.2 - brightCyan: 72.7 - brightWhite: 87.8 diff --git a/themes/noir-ros-pine-moon-grey.yaml b/themes/noir-ros-pine-moon-grey.yaml deleted file mode 100644 index 7234020e..00000000 --- a/themes/noir-ros-pine-moon-grey.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir Rosé Pine Moon Grey" -source: - marketplace_id: "andrewberty.noir-theme-bundle" - version: "1.7.0" - installs: 13972 - rating: 5 - ratings: 3 - author: "andrewberty" - repo: "https://github.com/andrew-george/Noir-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" -colors: - bg: "#090909" - fg: "#E0DEF4" - black: "#393552" - red: "#EB6F92" - green: "#3E8FB0" - yellow: "#F6C177" - blue: "#9CCFD8" - magenta: "#C4A7E7" - cyan: "#EA9A97" - white: "#E0DEF4" - brightBlack: "#908CAA" - brightRed: "#EB6F92" - brightGreen: "#3E8FB0" - brightYellow: "#F6C177" - brightBlue: "#9CCFD8" - brightMagenta: "#C4A7E7" - brightCyan: "#EA9A97" - brightWhite: "#E0DEF4" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 87.8 - black: 0 - red: 46.8 - green: 37.8 - yellow: 74.5 - blue: 72.2 - magenta: 61.2 - cyan: 59 - white: 87.8 - brightBlack: 42.1 - brightRed: 46.8 - brightGreen: 37.8 - brightYellow: 74.5 - brightBlue: 72.2 - brightMagenta: 61.2 - brightCyan: 59 - brightWhite: 87.8 diff --git a/themes/noir-tokyo-night-black.yaml b/themes/noir-tokyo-night-black.yaml deleted file mode 100644 index b6212a2d..00000000 --- a/themes/noir-tokyo-night-black.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir Tokyo Night Black" -source: - marketplace_id: "andrewberty.noir-theme-bundle" - version: "1.7.0" - installs: 13972 - rating: 5 - ratings: 3 - author: "andrewberty" - repo: "https://github.com/andrew-george/Noir-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" -colors: - bg: "#000000" - fg: "#A9B1D6" - black: "#363B54" - red: "#F7768E" - green: "#41A6B5" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#787C99" - brightBlack: "#363B54" - brightRed: "#F7768E" - brightGreen: "#41A6B5" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#ACB0D0" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 60.9 - black: 0 - red: 50.9 - green: 47.4 - yellow: 63.7 - blue: 52.7 - magenta: 56.6 - cyan: 72.1 - white: 33.6 - brightBlack: 0 - brightRed: 50.9 - brightGreen: 47.4 - brightYellow: 63.7 - brightBlue: 52.7 - brightMagenta: 56.6 - brightCyan: 72.1 - brightWhite: 60.5 diff --git a/themes/noir-tokyo-night.yaml b/themes/noir-tokyo-night.yaml deleted file mode 100644 index 484daf64..00000000 --- a/themes/noir-tokyo-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noir Tokyo Night" -source: - marketplace_id: "andrewberty.noir-theme-bundle" - version: "1.7.0" - installs: 13972 - rating: 5 - ratings: 3 - author: "andrewberty" - repo: "https://github.com/andrew-george/Noir-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" -colors: - bg: "#08080B" - fg: "#A9B1D6" - black: "#363B54" - red: "#F7768E" - green: "#41A6B5" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#787C99" - brightBlack: "#363B54" - brightRed: "#F7768E" - brightGreen: "#41A6B5" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#ACB0D0" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 60.8 - black: 0 - red: 50.8 - green: 47.3 - yellow: 63.7 - blue: 52.6 - magenta: 56.5 - cyan: 72 - white: 33.5 - brightBlack: 0 - brightRed: 50.8 - brightGreen: 47.3 - brightYellow: 63.7 - brightBlue: 52.6 - brightMagenta: 56.5 - brightCyan: 72 - brightWhite: 60.4 diff --git a/themes/noirex.yaml b/themes/noirex.yaml index 5c342028..26e15aac 100644 --- a/themes/noirex.yaml +++ b/themes/noirex.yaml @@ -8,6 +8,7 @@ source: author: "anexlab" repo: "https://github.com/anexlab/noirex" url: "https://marketplace.visualstudio.com/items?itemName=anexlab.noirex" + formats: null colors: bg: "#0F111A" fg: "#8F93A2" diff --git a/themes/noirzen.yaml b/themes/noirzen.yaml index e0ae0d99..1aff4bcd 100644 --- a/themes/noirzen.yaml +++ b/themes/noirzen.yaml @@ -8,6 +8,7 @@ source: author: "e108" repo: "https://github.com/Q2x38b/noirzen" url: "https://marketplace.visualstudio.com/items?itemName=e108.noirzen-theme" + formats: null colors: bg: "#181818" fg: "#D4D4D4" diff --git a/themes/nokion-clean.yaml b/themes/nokion-clean.yaml index 62233f20..eff59f0d 100644 --- a/themes/nokion-clean.yaml +++ b/themes/nokion-clean.yaml @@ -2,12 +2,13 @@ name: "Nokion Clean" source: marketplace_id: "NokionThemes.nokion-clean" version: "0.1.2" - installs: 294 + installs: 295 rating: 5 ratings: 1 author: "Nokion" repo: "https://github.com/Vbrand01/nokion-clean" url: "https://marketplace.visualstudio.com/items?itemName=NokionThemes.nokion-clean" + formats: null colors: bg: "#0A0A0A" fg: "#E8E8E8" diff --git a/themes/noll-tta.yaml b/themes/noll-tta.yaml index 83a3c553..c3216492 100644 --- a/themes/noll-tta.yaml +++ b/themes/noll-tta.yaml @@ -8,6 +8,7 @@ source: author: "Oleksii Shytikov" repo: "https://github.com/shytikov/nollatta" url: "https://marketplace.visualstudio.com/items?itemName=shytikov.nollatta" + formats: null colors: bg: "#FFFFFF" fg: "#232731" diff --git a/themes/non-arbitrary-colors-theme.yaml b/themes/non-arbitrary-colors-theme.yaml index 3f001dd7..05bee26e 100644 --- a/themes/non-arbitrary-colors-theme.yaml +++ b/themes/non-arbitrary-colors-theme.yaml @@ -8,6 +8,7 @@ source: author: "Michel Novus" repo: "https://github.com/michelnovus/non-arbitrary-colors-theme" url: "https://marketplace.visualstudio.com/items?itemName=michelnovus.non-arbitrary-colors-theme" + formats: null colors: bg: "#121212" fg: "#E0E0E0" diff --git a/themes/noname-ui-next.yaml b/themes/noname-ui-next.yaml index e7a40301..945959e7 100644 --- a/themes/noname-ui-next.yaml +++ b/themes/noname-ui-next.yaml @@ -8,6 +8,7 @@ source: author: "iseos" repo: "https://github.com/iseos/noname-ui" url: "https://marketplace.visualstudio.com/items?itemName=iseos.noname-ui" + formats: null colors: bg: "#1F2226" fg: "#ABB2BF" diff --git a/themes/noname-ui.yaml b/themes/noname-ui.yaml index 30bd1425..40fb78bc 100644 --- a/themes/noname-ui.yaml +++ b/themes/noname-ui.yaml @@ -8,6 +8,7 @@ source: author: "iseos" repo: "https://github.com/iseos/noname-ui" url: "https://marketplace.visualstudio.com/items?itemName=iseos.noname-ui" + formats: null colors: bg: "#21252B" fg: "#ABB2BF" diff --git a/themes/noori.yaml b/themes/noori.yaml index cb1bef58..efce778c 100644 --- a/themes/noori.yaml +++ b/themes/noori.yaml @@ -2,12 +2,13 @@ name: "noori" source: marketplace_id: "indigo.noori" version: "2.1.0" - installs: 866 + installs: 867 rating: 5 ratings: 1 author: "indigo" repo: "https://github.com/gabriela-tomazzi/birdTheme" url: "https://marketplace.visualstudio.com/items?itemName=indigo.noori" + formats: null colors: bg: "#131216" fg: "#D7CDBA" diff --git a/themes/noparanoia.yaml b/themes/noparanoia.yaml index 2ebf8688..9844e8d5 100644 --- a/themes/noparanoia.yaml +++ b/themes/noparanoia.yaml @@ -8,6 +8,7 @@ source: author: "NoParanoia" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NoParanoia.noparanoia" + formats: null colors: bg: "#282828" fg: "#BBBBBB" diff --git a/themes/nora-dark.yaml b/themes/nora-dark.yaml index a08e2df4..f5f350cb 100644 --- a/themes/nora-dark.yaml +++ b/themes/nora-dark.yaml @@ -8,6 +8,7 @@ source: author: "NoraCora" repo: "https://github.com/Sathmin-Januth/NoraCora-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Sathmin-Januth.nora" + formats: null colors: bg: "#0B0E14" fg: "#BFBDB6" diff --git a/themes/nora-light-bordered.yaml b/themes/nora-light-bordered.yaml index 3c9a5528..4d2de6c5 100644 --- a/themes/nora-light-bordered.yaml +++ b/themes/nora-light-bordered.yaml @@ -8,6 +8,7 @@ source: author: "NoraCora" repo: "https://github.com/Sathmin-Januth/NoraCora-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Sathmin-Januth.nora" + formats: null colors: bg: "#FCFCFC" fg: "#5C6166" diff --git a/themes/nord-bunker.yaml b/themes/nord-bunker.yaml deleted file mode 100644 index 4ed6fd35..00000000 --- a/themes/nord-bunker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "nord-bunker" -source: - marketplace_id: "sldobri.nord-5-stars" - version: "1.0.1" - installs: 10785 - rating: 2.75 - ratings: 4 - author: "dobbbri" - repo: "https://github.com/sldobri/nord-5-stars" - url: "https://marketplace.visualstudio.com/items?itemName=sldobri.nord-5-stars" -colors: - bg: "#0B1015" - fg: "#D8DEE9" - black: "#3B4252" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: 249 - pair: null - contrast: - fg: 86 - black: 8.7 - red: 33.6 - green: 62.3 - yellow: 77 - blue: 49.2 - magenta: 47.1 - cyan: 63.3 - white: 92.9 - brightBlack: 16 - brightRed: 33.6 - brightGreen: 62.3 - brightYellow: 77 - brightBlue: 49.2 - brightMagenta: 47.1 - brightCyan: 61.2 - brightWhite: 96.8 diff --git a/themes/nord-dark-contrast.yaml b/themes/nord-dark-contrast.yaml deleted file mode 100644 index d5ce529c..00000000 --- a/themes/nord-dark-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nord Dark Contrast" -source: - marketplace_id: "simojanhunen.nord-dark-contrast" - version: "0.4.0" - installs: 8767 - rating: 5 - ratings: 1 - author: "Simo Janhunen" - repo: "https://github.com/simojanhunen/nord-dark-contrast" - url: "https://marketplace.visualstudio.com/items?itemName=simojanhunen.nord-dark-contrast" -colors: - bg: "#212121" - fg: "#D8DEE9" - black: "#3B4252" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 84.1 - black: 0 - red: 31.7 - green: 60.4 - yellow: 75.1 - blue: 47.4 - magenta: 45.2 - cyan: 61.4 - white: 91.1 - brightBlack: 14.1 - brightRed: 31.7 - brightGreen: 60.4 - brightYellow: 75.1 - brightBlue: 47.4 - brightMagenta: 45.2 - brightCyan: 59.3 - brightWhite: 95 diff --git a/themes/nord-dark-pro.yaml b/themes/nord-dark-pro.yaml deleted file mode 100644 index d7df577b..00000000 --- a/themes/nord-dark-pro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nord Dark Pro" -source: - marketplace_id: "Curve.nord-dark-pro" - version: "0.0.6" - installs: 13171 - rating: 0 - ratings: 0 - author: "Curve" - repo: "https://github.com/Curve/Nord-Dark-Pro" - url: "https://marketplace.visualstudio.com/items?itemName=Curve.nord-dark-pro" -colors: - bg: "#232731" - fg: "#A4B2CA" - black: "#2E3440" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#8FBCBB" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#ECEFF4" - brightBlack: "#3B4252" - brightRed: "#C6737B" - brightGreen: "#B0C79C" - brightYellow: "#EED4A0" - brightBlue: "#9EC5C4" - brightMagenta: "#BE9DB8" - brightCyan: "#9AC9D7" - brightWhite: "#D8DEE9" -meta: - mode: "dark" - accent: "orange" - hue: 268 - pair: null - contrast: - fg: 56.9 - black: 0 - red: 30.7 - green: 59.4 - yellow: 74.1 - blue: 58.3 - magenta: 44.2 - cyan: 60.4 - white: 94 - brightBlack: 0 - brightRed: 37 - brightGreen: 65.1 - brightYellow: 79 - brightBlue: 63.9 - brightMagenta: 51.2 - brightCyan: 66.2 - brightWhite: 83.1 diff --git a/themes/nord-deep.yaml b/themes/nord-deep.yaml index a0ca0590..f80bd277 100644 --- a/themes/nord-deep.yaml +++ b/themes/nord-deep.yaml @@ -1,17 +1,18 @@ name: "Nord Deep" source: - marketplace_id: "BalintGyarmathy.nord-deep-visible-comments" - version: "0.1.0" - installs: 2379 - rating: 2 - ratings: 1 - author: "Bálint Gyarmathy" - repo: "https://github.com/gyaur/vscode-theme-nord-deep" - url: "https://marketplace.visualstudio.com/items?itemName=BalintGyarmathy.nord-deep-visible-comments" + marketplace_id: "marlosirapuan.nord-deep" + version: "0.1.625" + installs: 62744 + rating: 4.89 + ratings: 9 + author: "Marlos Irapuan" + repo: "https://github.com/marlosirapuan/vscode-theme-nord-deep" + url: "https://marketplace.visualstudio.com/items?itemName=marlosirapuan.nord-deep" + formats: null colors: - bg: "#232731" + bg: "#1D2129" fg: "#D8DEE9" - black: "#3B4252" + black: "#292E39" red: "#BF616A" green: "#A3BE8C" yellow: "#EBCB8B" @@ -30,23 +31,23 @@ colors: meta: mode: "dark" accent: "orange" - hue: 268 + hue: 264 pair: null contrast: - fg: 83.1 + fg: 84.1 black: 0 - red: 30.7 - green: 59.4 - yellow: 74.1 - blue: 46.4 - magenta: 44.2 - cyan: 60.4 - white: 90.1 - brightBlack: 13.1 - brightRed: 30.7 - brightGreen: 59.4 - brightYellow: 74.1 - brightBlue: 46.4 - brightMagenta: 44.2 - brightCyan: 58.3 - brightWhite: 94 + red: 31.7 + green: 60.4 + yellow: 75.1 + blue: 47.4 + magenta: 45.2 + cyan: 61.4 + white: 91.1 + brightBlack: 14.1 + brightRed: 31.7 + brightGreen: 60.4 + brightYellow: 75.1 + brightBlue: 47.4 + brightMagenta: 45.2 + brightCyan: 59.3 + brightWhite: 95 diff --git a/themes/nord-fountain.yaml b/themes/nord-fountain.yaml deleted file mode 100644 index 64595279..00000000 --- a/themes/nord-fountain.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nord-Fountain" -source: - marketplace_id: "internet-corey.nord-fountain" - version: "0.0.1" - installs: 388 - rating: 0 - ratings: 0 - author: "internet-corey" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=internet-corey.nord-fountain" -colors: - bg: "#272C36" - fg: "#D8DEE9" - black: "#2E3440" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 82.2 - black: 0 - red: 29.8 - green: 58.5 - yellow: 73.2 - blue: 45.4 - magenta: 43.3 - cyan: 59.5 - white: 89.1 - brightBlack: 12.2 - brightRed: 29.8 - brightGreen: 58.5 - brightYellow: 73.2 - brightBlue: 45.4 - brightMagenta: 43.3 - brightCyan: 57.4 - brightWhite: 93 diff --git a/themes/nord-frost.yaml b/themes/nord-frost.yaml index b58e5f00..0a113c09 100644 --- a/themes/nord-frost.yaml +++ b/themes/nord-frost.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AgraeonLabs.dev-themes" version: "0.1.0" installs: 283 + rating: 0 + ratings: 0 author: "Agraeon Labs" repo: "https://github.com/adiagcodelance/VS-Code-Themes" url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" + formats: null colors: bg: "#2E3440" fg: "#D8DEE9" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 264 + pair: null contrast: fg: 80.3 black: 0 diff --git a/themes/nord-jujoco.yaml b/themes/nord-jujoco.yaml index 862c1b77..615e0e34 100644 --- a/themes/nord-jujoco.yaml +++ b/themes/nord-jujoco.yaml @@ -8,6 +8,7 @@ source: author: "Jujoco" repo: "https://github.com/jujoco/nord-jujoco-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jujoco.nord-jujoco" + formats: null colors: bg: "#191D24" fg: "#E8E8E9" diff --git a/themes/nord-light.yaml b/themes/nord-light.yaml index 2694b104..0e5ad381 100644 --- a/themes/nord-light.yaml +++ b/themes/nord-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "IllegalStudio.nord-light-theme" version: "1.0.0" installs: 55 + rating: 0 + ratings: 0 author: "Illegal Studio" repo: "https://github.com/nord-light/vscode" url: "https://marketplace.visualstudio.com/items?itemName=IllegalStudio.nord-light-theme" + formats: null colors: bg: "#ECEFF4" fg: "#2E3440" diff --git a/themes/nord-midnight.yaml b/themes/nord-midnight.yaml index 081ce400..4d553139 100644 --- a/themes/nord-midnight.yaml +++ b/themes/nord-midnight.yaml @@ -2,12 +2,13 @@ name: "Nord Midnight" source: marketplace_id: "adorabilis.nord-midnight" version: "0.0.1" - installs: 4995 + installs: 5006 rating: 5 ratings: 3 author: "adorabilis" repo: "https://github.com/adorabilis/nord-midnight-vscode" url: "https://marketplace.visualstudio.com/items?itemName=adorabilis.nord-midnight" + formats: null colors: bg: "#1A1D23" fg: "#D8DEE9" diff --git a/themes/nord-native.yaml b/themes/nord-native.yaml index bc53b1ae..40cc8ae7 100644 --- a/themes/nord-native.yaml +++ b/themes/nord-native.yaml @@ -2,12 +2,13 @@ name: "Nord Native" source: marketplace_id: "divanvisagie.nord-native-theme" version: "0.0.7" - installs: 9781 + installs: 9785 rating: 5 ratings: 2 author: "Divan Visagie" repo: "git+https://github.com/divanvisagie/nord-native" url: "https://marketplace.visualstudio.com/items?itemName=divanvisagie.nord-native-theme" + formats: null colors: bg: "#1B1B1B" fg: "#D8D8D8" diff --git a/themes/nord-operator-theme.yaml b/themes/nord-operator-theme.yaml index 5c2ed6d1..8f4e7be2 100644 --- a/themes/nord-operator-theme.yaml +++ b/themes/nord-operator-theme.yaml @@ -8,6 +8,7 @@ source: author: "tom byrer" repo: "https://github.com/tomByrer/nord-city-theme" url: "https://marketplace.visualstudio.com/items?itemName=tomByrer.nord-city-theme" + formats: null colors: bg: "#0B0D10" fg: "#D8DEE9" diff --git a/themes/nord-palette.yaml b/themes/nord-palette.yaml deleted file mode 100644 index bafb2330..00000000 --- a/themes/nord-palette.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nord Palette" -source: - marketplace_id: "Avetis.nord-palette" - version: "0.1.0" - installs: 27396 - rating: 5 - ratings: 5 - author: "Avetis" - repo: "https://github.com/AvetisDN/nord-palette" - url: "https://marketplace.visualstudio.com/items?itemName=Avetis.nord-palette" -colors: - bg: "#323843" - fg: "#E5E9F0" - black: "#000000" - red: "#BF414A" - green: "#53AE4C" - yellow: "#CBAB5B" - blue: "#4E519C" - magenta: "#B45EAD" - cyan: "#49B8DB" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#BF666F" - brightGreen: "#73BE6C" - brightYellow: "#EBCB8B" - brightBlue: "#5E81AC" - brightMagenta: "#B48EAD" - brightCyan: "#88C0D0" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: 263 - pair: null - contrast: - fg: 86.1 - black: 0 - red: 19.9 - green: 41.2 - yellow: 51.6 - blue: 10.5 - magenta: 26.8 - cyan: 50 - white: 83.8 - brightBlack: 15.8 - brightRed: 28.1 - brightGreen: 50.6 - brightYellow: 70.2 - brightBlue: 27 - brightMagenta: 40.3 - brightCyan: 56.5 - brightWhite: 83.8 diff --git a/themes/nord-zero.yaml b/themes/nord-zero.yaml index 4d766995..cf279b5d 100644 --- a/themes/nord-zero.yaml +++ b/themes/nord-zero.yaml @@ -2,12 +2,13 @@ name: "Nord Zero" source: marketplace_id: "Behrami.nord-zero" version: "0.2.6" - installs: 765 + installs: 766 rating: 0 ratings: 0 author: "Behrami" repo: "https://github.com/QendrimBehrami/nord-zero" url: "https://marketplace.visualstudio.com/items?itemName=Behrami.nord-zero" + formats: null colors: bg: "#151820" fg: "#D8DEE9" diff --git a/themes/nord.yaml b/themes/nord.yaml index 1bf584f0..9dd23937 100644 --- a/themes/nord.yaml +++ b/themes/nord.yaml @@ -1,52 +1,53 @@ name: "Nord" source: - marketplace_id: "swashata.beautiful-ui" - version: "1.7.0" - installs: 121108 - rating: 4.38 - ratings: 13 - author: "swashata" - repo: "https://github.com/swashata/vscode-beautiful-ui" - url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" + marketplace_id: "Nord.nord" + version: "0.0.1" + installs: 17054 + rating: 0 + ratings: 0 + author: "Freezy" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Nord.nord" + formats: null colors: - bg: "#2F3541" + bg: "#272C36" fg: "#D8DEE9" - black: "#000000" - red: "#D81E00" - green: "#5EA702" - yellow: "#CFAE00" - blue: "#427AB3" - magenta: "#89658E" - cyan: "#00A7AA" - white: "#DBDED8" - brightBlack: "#686A66" - brightRed: "#F54235" - brightGreen: "#99E343" - brightYellow: "#FDEB61" - brightBlue: "#84B0D8" - brightMagenta: "#BC94B7" - brightCyan: "#37E6E8" - brightWhite: "#F1F1F0" + black: "#2E3440" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" meta: mode: "dark" accent: "orange" hue: 264 pair: null contrast: - fg: 80 + fg: 82.2 black: 0 - red: 22.2 - green: 39.1 - yellow: 53.6 - blue: 24.3 - magenta: 21.7 - cyan: 40 - white: 79.6 - brightBlack: 18.1 - brightRed: 32.5 - brightGreen: 71.1 - brightYellow: 87.1 - brightBlue: 50.7 - brightMagenta: 44.7 - brightCyan: 72.4 - brightWhite: 92.3 + red: 29.8 + green: 58.5 + yellow: 73.2 + blue: 45.4 + magenta: 43.3 + cyan: 59.5 + white: 89.1 + brightBlack: 12.2 + brightRed: 29.8 + brightGreen: 58.5 + brightYellow: 73.2 + brightBlue: 45.4 + brightMagenta: 43.3 + brightCyan: 57.4 + brightWhite: 93 diff --git a/themes/nordark.yaml b/themes/nordark.yaml index 6d249a60..eaba44f9 100644 --- a/themes/nordark.yaml +++ b/themes/nordark.yaml @@ -8,6 +8,7 @@ source: author: "V8v" repo: "https://github.com/highglorious/darknorde" url: "https://marketplace.visualstudio.com/items?itemName=highglorious.darknorde" + formats: null colors: bg: "#0D121C" fg: "#D8DEE9" diff --git a/themes/nordfox.yaml b/themes/nordfox.yaml index 7df30c5f..d20c06c4 100644 --- a/themes/nordfox.yaml +++ b/themes/nordfox.yaml @@ -8,6 +8,7 @@ source: author: "Fr4nk1in" repo: "https://github.com/Fr4nk1inCs/nordfox-vsc" url: "https://marketplace.visualstudio.com/items?itemName=Fr4nk1in.nordfox-vsc" + formats: null colors: bg: "#2E3440" fg: "#CDCECF" diff --git a/themes/nordic-dark.yaml b/themes/nordic-dark.yaml index 2dc5197f..a1d2247a 100644 --- a/themes/nordic-dark.yaml +++ b/themes/nordic-dark.yaml @@ -8,6 +8,7 @@ source: author: "Adi Kurniawan" repo: "https://github.com/adikurniawanid/rhapsody-theme" url: "https://marketplace.visualstudio.com/items?itemName=AdiKurniawan.rhapsody-theme" + formats: null colors: bg: "#2E3440" fg: "#D8DEE9" diff --git a/themes/nordic-electric-ai-nocturne.yaml b/themes/nordic-electric-ai-nocturne.yaml index f65d7329..a60f9329 100644 --- a/themes/nordic-electric-ai-nocturne.yaml +++ b/themes/nordic-electric-ai-nocturne.yaml @@ -1,4 +1,4 @@ -name: "Nordic Electric AI – Nocturne" +name: "Nordic Electric AI Nocturne" source: marketplace_id: "freyja-one.nordic-electric-ai" version: "1.0.2" @@ -8,6 +8,10 @@ source: author: "freyja-one" repo: "https://github.com/CosmicFreyjaLab/aurora-colorschemes" url: "https://marketplace.visualstudio.com/items?itemName=freyja-one.nordic-electric-ai" + formats: + iterm2: "https://raw.githubusercontent.com/CosmicFreyjaLab/aurora-colorschemes/main/iterm/nordic_electric_ai.itermcolors" + kitty: "https://raw.githubusercontent.com/CosmicFreyjaLab/aurora-colorschemes/main/kitty/nordic_electric_ai_kitty.conf" + android-studio: "https://raw.githubusercontent.com/CosmicFreyjaLab/aurora-colorschemes/main/jetbrains/nordic_electric_ai.icls" colors: bg: "#101628" fg: "#CBDAF3" diff --git a/themes/nordic.yaml b/themes/nordic.yaml deleted file mode 100644 index 3dcaaa87..00000000 --- a/themes/nordic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nordic" -source: - marketplace_id: "bonchol.nordic-vscode" - version: "0.2.0" - installs: 5717 - rating: 5 - ratings: 1 - author: "bonchol" - repo: "https://github.com/bonchol/nordic-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=bonchol.nordic-vscode" -colors: - bg: "#242933" - fg: "#ECEFF4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 93.6 - black: 0 - red: 24.1 - green: 50.4 - yellow: 83 - blue: 24.8 - magenta: 27.1 - cyan: 44.9 - white: 87.4 - brightBlack: 19.4 - brightRed: 36 - brightGreen: 60.9 - brightYellow: 93 - brightBlue: 37.4 - brightMagenta: 42.8 - brightCyan: 52.8 - brightWhite: 87.4 diff --git a/themes/nordicbox.yaml b/themes/nordicbox.yaml index ac493d8f..b0ae1aed 100644 --- a/themes/nordicbox.yaml +++ b/themes/nordicbox.yaml @@ -1,4 +1,4 @@ -name: "nordicBox" +name: "nordicbox" source: marketplace_id: "fedmag.nordicbox" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "fedmag" repo: "https://github.com/fedmag/nordicbox" url: "https://marketplace.visualstudio.com/items?itemName=fedmag.nordicbox" + formats: null colors: bg: "#1D2021" fg: "#D8DEE9" diff --git a/themes/nordicdark.yaml b/themes/nordicdark.yaml deleted file mode 100644 index 275669ea..00000000 --- a/themes/nordicdark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NordicDark" -source: - marketplace_id: "Avetis.codeme-theme" - version: "0.1.1" - installs: 8080 - rating: 0 - ratings: 0 - author: "Avetis" - repo: "https://github.com/AvetisDN/codeme-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" -colors: - bg: "#252A34" - fg: "#E5E9F0" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E9F0" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 89.5 - black: 0 - red: 23.9 - green: 50.2 - yellow: 82.8 - blue: 24.6 - magenta: 27 - cyan: 44.8 - white: 89.5 - brightBlack: 19.2 - brightRed: 35.8 - brightGreen: 60.7 - brightYellow: 92.8 - brightBlue: 37.2 - brightMagenta: 42.6 - brightCyan: 52.6 - brightWhite: 104.1 diff --git a/themes/nordico.yaml b/themes/nordico.yaml index 3be578ca..c9d543a8 100644 --- a/themes/nordico.yaml +++ b/themes/nordico.yaml @@ -8,6 +8,7 @@ source: author: "madprops" repo: "https://github.com/madprops/Nordico" url: "https://marketplace.visualstudio.com/items?itemName=madprops.nordico" + formats: null colors: bg: "#252933" fg: "#D8DEE9" diff --git a/themes/nordishcocoa.yaml b/themes/nordishcocoa.yaml index 0a6770b9..fb9c8aa1 100644 --- a/themes/nordishcocoa.yaml +++ b/themes/nordishcocoa.yaml @@ -8,6 +8,7 @@ source: author: "Greg Pasquariello" repo: "https://github.com/gpasq/VisualStudioCodeThemeNordishCocoa" url: "https://marketplace.visualstudio.com/items?itemName=GregPasquariello.nordishcocoa" + formats: null colors: bg: "#333333" fg: "#D8DEE9" diff --git a/themes/nordstone.yaml b/themes/nordstone.yaml index f3c916f0..3c6af00b 100644 --- a/themes/nordstone.yaml +++ b/themes/nordstone.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ruicsh.vscode-theme-nordstone" version: "0.1.1" installs: 311 + rating: 0 + ratings: 0 author: "Rui Costa" repo: "https://github.com/ruicsh/vscode-theme-nordstone" url: "https://marketplace.visualstudio.com/items?itemName=ruicsh.vscode-theme-nordstone" + formats: null colors: bg: "#171717" fg: "#D8DEE9" diff --git a/themes/northeirn.yaml b/themes/northeirn.yaml index 9981cc02..41709c81 100644 --- a/themes/northeirn.yaml +++ b/themes/northeirn.yaml @@ -8,6 +8,7 @@ source: author: "Murilo Nascimento" repo: "https://github.com/murilonicemento/northeirn-theme" url: "https://marketplace.visualstudio.com/items?itemName=murilonicemento.northeirn" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/northern-territory-dark.yaml b/themes/northern-territory-dark.yaml index 82388383..160f1351 100644 --- a/themes/northern-territory-dark.yaml +++ b/themes/northern-territory-dark.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.northern-territory-theme" + formats: null colors: bg: "#120E0A" fg: "#E8EDF3" diff --git a/themes/northern-territory-light.yaml b/themes/northern-territory-light.yaml index 48899c99..dc61d5c8 100644 --- a/themes/northern-territory-light.yaml +++ b/themes/northern-territory-light.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.northern-territory-theme" + formats: null colors: bg: "#FFFFFF" fg: "#120E0A" diff --git a/themes/nosk-theme.yaml b/themes/nosk-theme.yaml deleted file mode 100644 index a4382be2..00000000 --- a/themes/nosk-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nosk Theme" -source: - marketplace_id: "Noskfivem.nosk" - version: "0.0.1" - installs: 656 - rating: 0 - ratings: 0 - author: "NoskYT" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Noskfivem.nosk" -colors: - bg: "#1E1E1E" - fg: "#FF7EEB" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 57 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/nostromo.yaml b/themes/nostromo.yaml index d4c2961d..8a6cf75e 100644 --- a/themes/nostromo.yaml +++ b/themes/nostromo.yaml @@ -8,6 +8,7 @@ source: author: "Martin Theimer" repo: "https://github.com/pappkamerad/nostromo-theme-visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=martintheimer.nostromo-theme" + formats: null colors: bg: "#282E33" fg: "#FDFAE9" diff --git a/themes/not-so-simple.yaml b/themes/not-so-simple.yaml index 9da4221b..50d17635 100644 --- a/themes/not-so-simple.yaml +++ b/themes/not-so-simple.yaml @@ -8,6 +8,7 @@ source: author: "SimpleShiva" repo: "https://github.com/thomas-lefloch/not-so-simple" url: "https://marketplace.visualstudio.com/items?itemName=SimpleShiva.not-so-simple" + formats: null colors: bg: "#191919" fg: "#DBDBDB" diff --git a/themes/notchy-dark.yaml b/themes/notchy-dark.yaml index efb344a9..94c1ec1a 100644 --- a/themes/notchy-dark.yaml +++ b/themes/notchy-dark.yaml @@ -8,6 +8,7 @@ source: author: "Notchy" repo: "https://github.com/chnotchy/notchy-theme" url: "https://marketplace.visualstudio.com/items?itemName=chnotchy.notchy-theme" + formats: null colors: bg: "#051521" fg: "#AAABAE" diff --git a/themes/notesocean-vs-code-theme.yaml b/themes/notesocean-vs-code-theme.yaml deleted file mode 100644 index 8e4cb148..00000000 --- a/themes/notesocean-vs-code-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "notesocean vs code theme" -source: - marketplace_id: "Notesocean.notesocean" - version: "0.2.0" - installs: 326 - rating: 5 - ratings: 1 - author: "Notesocean" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Notesocean.notesocean" -colors: - bg: "#28282A" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 104.4 - black: 0 - red: 24.2 - green: 50.5 - yellow: 83.1 - blue: 25 - magenta: 27.3 - cyan: 45.1 - white: 104.4 - brightBlack: 19.6 - brightRed: 36.1 - brightGreen: 61.1 - brightYellow: 93.2 - brightBlue: 37.5 - brightMagenta: 42.9 - brightCyan: 52.9 - brightWhite: 87.5 diff --git a/themes/notflask-theme-light.yaml b/themes/notflask-theme-light.yaml index 148f41a7..dbeebf81 100644 --- a/themes/notflask-theme-light.yaml +++ b/themes/notflask-theme-light.yaml @@ -8,6 +8,7 @@ source: author: "Daniel Flask" repo: null url: "https://marketplace.visualstudio.com/items?itemName=notflask.notflask-theme" + formats: null colors: bg: "#F8F9FA" fg: "#5C6166" diff --git a/themes/nothing-dark.yaml b/themes/nothing-dark.yaml index cef07ee6..e62de4c9 100644 --- a/themes/nothing-dark.yaml +++ b/themes/nothing-dark.yaml @@ -8,6 +8,7 @@ source: author: "nothing-design" repo: "https://github.com/nothing-design/nothing-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nothing-design.nothing-theme" + formats: null colors: bg: "#0A0A0A" fg: "#E8E8E8" diff --git a/themes/nothing-light.yaml b/themes/nothing-light.yaml index 6b96eb5b..4e404a68 100644 --- a/themes/nothing-light.yaml +++ b/themes/nothing-light.yaml @@ -8,6 +8,7 @@ source: author: "nothing-design" repo: "https://github.com/nothing-design/nothing-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nothing-design.nothing-theme" + formats: null colors: bg: "#FFFFFF" fg: "#2A2A2A" diff --git a/themes/nothing-os-dark.yaml b/themes/nothing-os-dark.yaml deleted file mode 100644 index b630823e..00000000 --- a/themes/nothing-os-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nothing OS Dark" -source: - marketplace_id: "xexefe.nothing-os-theme" - version: "1.2.0" - installs: 219 - rating: 5 - ratings: 1 - author: "xexefe" - repo: "https://github.com/shahriaravi/nothing-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=xexefe.nothing-os-theme" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#D71921" - green: "#50FA7B" - yellow: "#FFAA00" - blue: "#666666" - magenta: "#D71921" - cyan: "#AAAAAA" - white: "#CCCCCC" - brightBlack: "#333333" - brightRed: "#FF2D35" - brightGreen: "#50FA7B" - brightYellow: "#FFAA00" - brightBlue: "#888888" - brightMagenta: "#D71921" - brightCyan: "#CCCCCC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 28.2 - green: 85.9 - yellow: 66.5 - blue: 23 - magenta: 28.2 - cyan: 56.2 - white: 75.7 - brightBlack: 0 - brightRed: 39.2 - brightGreen: 85.9 - brightYellow: 66.5 - brightBlue: 38.6 - brightMagenta: 28.2 - brightCyan: 75.7 - brightWhite: 107.9 diff --git a/themes/nothing-os-gray.yaml b/themes/nothing-os-gray.yaml deleted file mode 100644 index baf258a6..00000000 --- a/themes/nothing-os-gray.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nothing OS Gray" -source: - marketplace_id: "xexefe.nothing-os-theme" - version: "1.2.0" - installs: 219 - rating: 5 - ratings: 1 - author: "xexefe" - repo: "https://github.com/shahriaravi/nothing-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=xexefe.nothing-os-theme" -colors: - bg: "#14151F" - fg: "#FFFFFF" - black: "#14151F" - red: "#D71921" - green: "#50FA7B" - yellow: "#FFAA00" - blue: "#6B6E82" - magenta: "#D71921" - cyan: "#A0A3B5" - white: "#C5C8D9" - brightBlack: "#4D4F62" - brightRed: "#FF2D35" - brightGreen: "#50FA7B" - brightYellow: "#FFBB33" - brightBlue: "#8A8D9E" - brightMagenta: "#D71921" - brightCyan: "#C5C8D9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 280 - pair: null - contrast: - fg: 107 - black: 0 - red: 27.3 - green: 85 - yellow: 65.6 - blue: 26.1 - magenta: 27.3 - cyan: 52 - white: 72.8 - brightBlack: 13.4 - brightRed: 38.3 - brightGreen: 85 - brightYellow: 72 - brightBlue: 40.5 - brightMagenta: 27.3 - brightCyan: 72.8 - brightWhite: 107 diff --git a/themes/notion-code-theme.yaml b/themes/notion-code-theme.yaml index 6504f9e7..99c91c9c 100644 --- a/themes/notion-code-theme.yaml +++ b/themes/notion-code-theme.yaml @@ -2,12 +2,13 @@ name: "Notion Code Theme" source: marketplace_id: "HarshitGangwar.notion-code-theme" version: "0.0.2" - installs: 5258 + installs: 5260 rating: 5 ratings: 2 author: "Harshit Gangwar" repo: "https://github.com/harshjoeyit/vscode-notion-theme" url: "https://marketplace.visualstudio.com/items?itemName=HarshitGangwar.notion-code-theme" + formats: null colors: bg: "#F7F6F3" fg: "#37352F" diff --git a/themes/notionliketheme.yaml b/themes/notionliketheme.yaml index 1ed00f83..1fd7e490 100644 --- a/themes/notionliketheme.yaml +++ b/themes/notionliketheme.yaml @@ -8,6 +8,7 @@ source: author: "TARA6" repo: "https://github.com/tarataracodfish/notion-like-theme" url: "https://marketplace.visualstudio.com/items?itemName=TARA6.notion-like-theme" + formats: null colors: bg: "#FFFFFF" fg: "#37352F" diff --git a/themes/notthevimguytheme.yaml b/themes/notthevimguytheme.yaml deleted file mode 100644 index 871be610..00000000 --- a/themes/notthevimguytheme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NotTheVimGuyTheme" -source: - marketplace_id: "rysah.notthevimguy" - version: "0.0.1" - installs: 21 - rating: 0 - ratings: 0 - author: "Rysah" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=rysah.notthevimguy" -colors: - bg: "#0A0701" - fg: "#90868D" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 93 - pair: null - contrast: - fg: 38.9 - black: 0 - red: 27.6 - green: 53.9 - yellow: 86.6 - blue: 28.4 - magenta: 30.7 - cyan: 48.5 - white: 91 - brightBlack: 23 - brightRed: 39.5 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 40.9 - brightMagenta: 46.3 - brightCyan: 56.3 - brightWhite: 91 diff --git a/themes/nova-dark.yaml b/themes/nova-dark.yaml index c5762d16..6ba04c5d 100644 --- a/themes/nova-dark.yaml +++ b/themes/nova-dark.yaml @@ -8,6 +8,7 @@ source: author: "tw4" repo: "https://github.com/tw4/nova-lang" url: "https://marketplace.visualstudio.com/items?itemName=tw4.nova-language-extension" + formats: null colors: bg: "#1E1E2E" fg: "#CDD6F4" diff --git a/themes/nova-light.yaml b/themes/nova-light.yaml index 90ef8047..8b7bae70 100644 --- a/themes/nova-light.yaml +++ b/themes/nova-light.yaml @@ -8,6 +8,7 @@ source: author: "tw4" repo: "https://github.com/tw4/nova-lang" url: "https://marketplace.visualstudio.com/items?itemName=tw4.nova-language-extension" + formats: null colors: bg: "#FAF4ED" fg: "#575279" diff --git a/themes/nova.yaml b/themes/nova.yaml deleted file mode 100644 index 8bb4f5b2..00000000 --- a/themes/nova.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nova" -source: - marketplace_id: "swashata.beautiful-ui" - version: "1.7.0" - installs: 121108 - rating: 4.38 - ratings: 13 - author: "swashata" - repo: "https://github.com/swashata/vscode-beautiful-ui" - url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" -colors: - bg: "#3B4B54" - fg: "#C5D4DD" - black: "#000000" - red: "#D81E00" - green: "#5EA702" - yellow: "#CFAE00" - blue: "#427AB3" - magenta: "#89658E" - cyan: "#00A7AA" - white: "#DBDED8" - brightBlack: "#686A66" - brightRed: "#F54235" - brightGreen: "#99E343" - brightYellow: "#FDEB61" - brightBlue: "#84B0D8" - brightMagenta: "#BC94B7" - brightCyan: "#37E6E8" - brightWhite: "#F1F1F0" -meta: - mode: "dark" - accent: "orange" - hue: 233 - pair: null - contrast: - fg: 66.4 - black: 13.2 - red: 15.9 - green: 32.8 - yellow: 47.2 - blue: 17.9 - magenta: 15.3 - cyan: 33.7 - white: 73.3 - brightBlack: 11.8 - brightRed: 26.1 - brightGreen: 64.8 - brightYellow: 80.7 - brightBlue: 44.4 - brightMagenta: 38.4 - brightCyan: 66 - brightWhite: 86 diff --git a/themes/novadust.yaml b/themes/novadust.yaml index 3b8f3da0..edfd89f2 100644 --- a/themes/novadust.yaml +++ b/themes/novadust.yaml @@ -2,12 +2,13 @@ name: "NOVADUST" source: marketplace_id: "novadust.novadust" version: "0.0.3" - installs: 960 + installs: 961 rating: 5 ratings: 3 author: "NOVADUST" repo: "https://github.com/mmartamg/novadust-vscode" url: "https://marketplace.visualstudio.com/items?itemName=novadust.novadust" + formats: null colors: bg: "#1D2833" fg: "#CFD1D1" diff --git a/themes/november-theme-black.yaml b/themes/november-theme-black.yaml index 92e699c7..b6a42f79 100644 --- a/themes/november-theme-black.yaml +++ b/themes/november-theme-black.yaml @@ -8,6 +8,7 @@ source: author: "Abdullah Rehmani" repo: "https://github.com/Abdullah-Rehmani-222" url: "https://marketplace.visualstudio.com/items?itemName=AbdullahRehmani.november-theme" + formats: null colors: bg: "#000000" fg: "#EEFFFF" diff --git a/themes/november-theme-darkblue.yaml b/themes/november-theme-darkblue.yaml index 387e0add..40f7fffd 100644 --- a/themes/november-theme-darkblue.yaml +++ b/themes/november-theme-darkblue.yaml @@ -8,6 +8,7 @@ source: author: "Abdullah Rehmani" repo: "https://github.com/Abdullah-Rehmani-222" url: "https://marketplace.visualstudio.com/items?itemName=AbdullahRehmani.november-theme" + formats: null colors: bg: "#05001D" fg: "#EEFFFF" diff --git a/themes/nox.yaml b/themes/nox.yaml index 776a659d..9b0e743f 100644 --- a/themes/nox.yaml +++ b/themes/nox.yaml @@ -1,52 +1,53 @@ -name: "nox" +name: "Nox" source: - marketplace_id: "JohannesFreutel.noxx" - version: "0.0.1" - installs: 44 - rating: 0 - ratings: 0 - author: "JohannesFreutel" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.noxx" + marketplace_id: "jshstw.nox" + version: "0.7.2" + installs: 1073 + rating: 5 + ratings: 2 + author: "Josh Stow" + repo: "https://github.com/joshstow/nox" + url: "https://marketplace.visualstudio.com/items?itemName=jshstw.nox" + formats: null colors: - bg: "#0A0E1B" - fg: "#E5A6A6" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" + bg: "#1D1D1D" + fg: "#EEFFFF" + black: "#1D1D1D" + red: "#F92672" + green: "#A6E22E" + yellow: "#FFDC17" + blue: "#0F8ADF" + magenta: "#AE81FF" + cyan: "#66D9EF" + white: "#EEFFFF" + brightBlack: "#929292" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#FFDC17" + brightBlue: "#0F8ADF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#EEFFFF" meta: mode: "dark" - accent: "pink" - hue: 270 + accent: "red" + hue: null pair: null contrast: - fg: 62.5 + fg: 103.9 black: 0 - red: 27.4 - green: 53.6 - yellow: 86.3 - blue: 28.1 - magenta: 30.4 - cyan: 48.2 - white: 90.7 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.7 + red: 36.6 + green: 76.3 + yellow: 84.7 + blue: 36.3 + magenta: 45.8 + cyan: 72.7 + white: 103.9 + brightBlack: 41.9 + brightRed: 36.6 + brightGreen: 76.3 + brightYellow: 84.7 + brightBlue: 36.3 + brightMagenta: 45.8 + brightCyan: 72.7 + brightWhite: 103.9 diff --git a/themes/noxis-light.yaml b/themes/noxis-light.yaml index dfdc72ec..eeea2c9d 100644 --- a/themes/noxis-light.yaml +++ b/themes/noxis-light.yaml @@ -8,6 +8,7 @@ source: author: "Valentino Cossar" repo: "https://github.com/valentinocossar/noxis" url: "https://marketplace.visualstudio.com/items?itemName=valentinocossar.noxis" + formats: null colors: bg: "#FFFFFF" fg: "#434F65" diff --git a/themes/noxis.yaml b/themes/noxis.yaml deleted file mode 100644 index f3726a43..00000000 --- a/themes/noxis.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Noxis" -source: - marketplace_id: "valentinocossar.noxis" - version: "1.1.0" - installs: 67 - rating: 0 - ratings: 0 - author: "Valentino Cossar" - repo: "https://github.com/valentinocossar/noxis" - url: "https://marketplace.visualstudio.com/items?itemName=valentinocossar.noxis" -colors: - bg: "#090A0F" - fg: "#8E95B4" - black: "#35394B" - red: "#E75A5A" - green: "#A9EFA3" - yellow: "#FEE17C" - blue: "#4C71F6" - magenta: "#5654BC" - cyan: "#70E3EB" - white: "#FFFFFF" - brightBlack: "#35394B" - brightRed: "#E75A5A" - brightGreen: "#A9EFA3" - brightYellow: "#FEE17C" - brightBlue: "#4C71F6" - brightMagenta: "#5654BC" - brightCyan: "#70E3EB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: 276 - pair: null - contrast: - fg: 45.6 - black: 0 - red: 39.9 - green: 86.4 - yellow: 89.3 - blue: 33 - magenta: 21.1 - cyan: 79.3 - white: 107.7 - brightBlack: 0 - brightRed: 39.9 - brightGreen: 86.4 - brightYellow: 89.3 - brightBlue: 33 - brightMagenta: 21.1 - brightCyan: 79.3 - brightWhite: 107.7 diff --git a/themes/noxus.yaml b/themes/noxus.yaml index 80b82514..470d8794 100644 --- a/themes/noxus.yaml +++ b/themes/noxus.yaml @@ -8,6 +8,7 @@ source: author: "alicanbasak" repo: "https://github.com/alicanbasak/noxus-theme" url: "https://marketplace.visualstudio.com/items?itemName=alicanbasak.noxus-theme" + formats: null colors: bg: "#282C34" fg: "#EEFFFF" diff --git a/themes/npp-color-dark-hard.yaml b/themes/npp-color-dark-hard.yaml index ac2625c0..c5d2e2df 100644 --- a/themes/npp-color-dark-hard.yaml +++ b/themes/npp-color-dark-hard.yaml @@ -8,6 +8,7 @@ source: author: "gaoyia" repo: "https://github.com/gaoyia/npp-theme" url: "https://marketplace.visualstudio.com/items?itemName=gaoyia.npp-theme" + formats: null colors: bg: "#212424" fg: "#ABB2BF" diff --git a/themes/npp-color-light-hard.yaml b/themes/npp-color-light-hard.yaml index 0d185bb5..db56ca95 100644 --- a/themes/npp-color-light-hard.yaml +++ b/themes/npp-color-light-hard.yaml @@ -8,6 +8,7 @@ source: author: "gaoyia" repo: "https://github.com/gaoyia/npp-theme" url: "https://marketplace.visualstudio.com/items?itemName=gaoyia.npp-theme" + formats: null colors: bg: "#F9F5D7" fg: "#3F4249" diff --git a/themes/nstlgy-dark-josh-w-comeau-inspired.yaml b/themes/nstlgy-dark-josh-w-comeau-inspired.yaml index efb65e56..572fa0cb 100644 --- a/themes/nstlgy-dark-josh-w-comeau-inspired.yaml +++ b/themes/nstlgy-dark-josh-w-comeau-inspired.yaml @@ -8,6 +8,7 @@ source: author: "grymmjack" repo: "https://github.com/grymmjack/vscode-nstlgy-dark-joshwcomeau-theme" url: "https://marketplace.visualstudio.com/items?itemName=grymmjack.vscode-nstlgy-dark-joshwcomeau-theme" + formats: null colors: bg: "#1C1E26" fg: "#FFFFFF" diff --git a/themes/ntt1.yaml b/themes/ntt1.yaml index 58135794..dc359070 100644 --- a/themes/ntt1.yaml +++ b/themes/ntt1.yaml @@ -6,6 +6,7 @@ source: author: "NatalietheNerd" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NatalietheNerd.ntt-1" + formats: null colors: bg: "#343446" fg: "#F6F6F4" diff --git a/themes/nuclear-z-light.yaml b/themes/nuclear-z-light.yaml index 2107967e..e29a0347 100644 --- a/themes/nuclear-z-light.yaml +++ b/themes/nuclear-z-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "NuclleaR.nuclear-light" version: "1.0.0" installs: 468 + rating: 0 + ratings: 0 author: "Sergey Korenuk" repo: "https://github.com/NuclleaR/vscode-theme-nuclear-light" url: "https://marketplace.visualstudio.com/items?itemName=NuclleaR.nuclear-light" + formats: null colors: bg: "#FFF7EE" fg: "#383838" diff --git a/themes/nudark.yaml b/themes/nudark.yaml index 3494c65c..c8057d33 100644 --- a/themes/nudark.yaml +++ b/themes/nudark.yaml @@ -8,6 +8,7 @@ source: author: "Necdet UYGUR" repo: "https://github.com/necdetuygur/nudark" url: "https://marketplace.visualstudio.com/items?itemName=necdetuygur.nudark" + formats: null colors: bg: "#0D1117" fg: "#C9D1D9" diff --git a/themes/nuitp-le-theme.yaml b/themes/nuitp-le-theme.yaml index dd16b5e4..0912d1fe 100644 --- a/themes/nuitp-le-theme.yaml +++ b/themes/nuitp-le-theme.yaml @@ -8,6 +8,7 @@ source: author: "Anqo" repo: "https://github.com/ohanqo/nuitpale-theme" url: "https://marketplace.visualstudio.com/items?itemName=Anqo.nuitpale-theme" + formats: null colors: bg: "#232529" fg: "#BFC7D5" diff --git a/themes/null-theme-absolute-black.yaml b/themes/null-theme-absolute-black.yaml index c668cdac..a2c8d858 100644 --- a/themes/null-theme-absolute-black.yaml +++ b/themes/null-theme-absolute-black.yaml @@ -8,6 +8,7 @@ source: author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" + formats: null colors: bg: "#000000" fg: "#B0E0E6" diff --git a/themes/null-theme-electric-enhanced.yaml b/themes/null-theme-electric-enhanced.yaml index b782dd9e..ace78506 100644 --- a/themes/null-theme-electric-enhanced.yaml +++ b/themes/null-theme-electric-enhanced.yaml @@ -8,6 +8,7 @@ source: author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" + formats: null colors: bg: "#050510" fg: "#E0E0E0" diff --git a/themes/null-theme-midnight-enhanced.yaml b/themes/null-theme-midnight-enhanced.yaml index e773ab76..5e97f11d 100644 --- a/themes/null-theme-midnight-enhanced.yaml +++ b/themes/null-theme-midnight-enhanced.yaml @@ -8,6 +8,7 @@ source: author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" + formats: null colors: bg: "#0B0B16" fg: "#EAEAFF" diff --git a/themes/null-theme-muted.yaml b/themes/null-theme-muted.yaml index 931643d5..06de73d4 100644 --- a/themes/null-theme-muted.yaml +++ b/themes/null-theme-muted.yaml @@ -8,6 +8,7 @@ source: author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" + formats: null colors: bg: "#0F0F0F" fg: "#B0C4DE" diff --git a/themes/null-theme-near-black.yaml b/themes/null-theme-near-black.yaml index fae00120..4470d135 100644 --- a/themes/null-theme-near-black.yaml +++ b/themes/null-theme-near-black.yaml @@ -8,6 +8,7 @@ source: author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" + formats: null colors: bg: "#0A0A0A" fg: "#C8C8C8" diff --git a/themes/null-theme-pastel.yaml b/themes/null-theme-pastel.yaml index 50b8ad07..d29d7dce 100644 --- a/themes/null-theme-pastel.yaml +++ b/themes/null-theme-pastel.yaml @@ -8,6 +8,7 @@ source: author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" + formats: null colors: bg: "#1A1A1F" fg: "#D4D4D9" diff --git a/themes/null-theme-synthwave.yaml b/themes/null-theme-synthwave.yaml index a89da971..e21c7821 100644 --- a/themes/null-theme-synthwave.yaml +++ b/themes/null-theme-synthwave.yaml @@ -8,6 +8,7 @@ source: author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" + formats: null colors: bg: "#0F0F1F" fg: "#E0E0E0" diff --git a/themes/null-theme-vivid.yaml b/themes/null-theme-vivid.yaml index 344e617a..ed91527f 100644 --- a/themes/null-theme-vivid.yaml +++ b/themes/null-theme-vivid.yaml @@ -8,6 +8,7 @@ source: author: "kimberlycasamina" repo: "https://github.com/kimicasamina/vscode-null-theme" url: "https://marketplace.visualstudio.com/items?itemName=kimberlycasamina.null-theme" + formats: null colors: bg: "#0D0D0D" fg: "#00F5FF" diff --git a/themes/nultramarine.yaml b/themes/nultramarine.yaml index 1a0eccda..2860942b 100644 --- a/themes/nultramarine.yaml +++ b/themes/nultramarine.yaml @@ -8,6 +8,7 @@ source: author: "catapillie" repo: "https://github.com/catapillie/nultramarine.git#master" url: "https://marketplace.visualstudio.com/items?itemName=catapillie.nultramarine" + formats: null colors: bg: "#010610" fg: "#B6B8CB" diff --git a/themes/nulzo-relax.yaml b/themes/nulzo-relax.yaml index 73719645..25a42457 100644 --- a/themes/nulzo-relax.yaml +++ b/themes/nulzo-relax.yaml @@ -8,6 +8,7 @@ source: author: "nulzo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=nulzo.nulzo-relax" + formats: null colors: bg: "#1400FF" fg: "#FF0000" diff --git a/themes/nulzo-winter-light.yaml b/themes/nulzo-winter-light.yaml index 5935ac90..63ccbb57 100644 --- a/themes/nulzo-winter-light.yaml +++ b/themes/nulzo-winter-light.yaml @@ -8,6 +8,7 @@ source: author: "nulzo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=nulzo.nulzo-winter-light" + formats: null colors: bg: "#EEEFF0" fg: "#555555" diff --git a/themes/nur-dark.yaml b/themes/nur-dark.yaml index 78d71683..fae34c16 100644 --- a/themes/nur-dark.yaml +++ b/themes/nur-dark.yaml @@ -8,6 +8,9 @@ source: author: "Michele Fenu" repo: "https://github.com/michelefenu/nur" url: "https://marketplace.visualstudio.com/items?itemName=michelefenu.nur-theme-vscode" + formats: + ghostty: "https://raw.githubusercontent.com/michelefenu/nur/main/ghostty/LICENSE" + iterm2: "https://raw.githubusercontent.com/michelefenu/nur/main/iterm2/themes/nur-iterm2-dark.itermcolors" colors: bg: "#23272B" fg: "#E2DBC4" diff --git a/themes/nur-light.yaml b/themes/nur-light.yaml index 82094786..446aa346 100644 --- a/themes/nur-light.yaml +++ b/themes/nur-light.yaml @@ -8,6 +8,9 @@ source: author: "Michele Fenu" repo: "https://github.com/michelefenu/nur" url: "https://marketplace.visualstudio.com/items?itemName=michelefenu.nur-theme-vscode" + formats: + ghostty: "https://raw.githubusercontent.com/michelefenu/nur/main/ghostty/LICENSE" + iterm2: "https://raw.githubusercontent.com/michelefenu/nur/main/iterm2/themes/nur-iterm2-dark.itermcolors" colors: bg: "#F8F5ED" fg: "#5A5E6B" diff --git a/themes/nushu-classic.yaml b/themes/nushu-classic.yaml deleted file mode 100644 index 8be63431..00000000 --- a/themes/nushu-classic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nushu Classic" -source: - marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" - version: "2.2.18" - installs: 32063 - rating: 5 - ratings: 8 - author: "wheredoesyourmindgo" - repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" -colors: - bg: "#F8F6F1" - fg: "#24292E" - black: "#D1D5DA" - red: "#9E1C23" - green: "#165C26" - yellow: "#B08800" - blue: "#3A1D6E" - magenta: "#99306F" - cyan: "#032F62" - white: "#444D56" - brightBlack: "#6A737D" - brightRed: "#B31D28" - brightGreen: "#176F2C" - brightYellow: "#DBAB09" - brightBlue: "#4C2889" - brightMagenta: "#B93A86" - brightCyan: "#044289" - brightWhite: "#E1E4E8" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.2 - black: 17.1 - red: 80.6 - green: 82.3 - yellow: 54.8 - blue: 93.8 - magenta: 78 - cyan: 93.8 - white: 84.2 - brightBlack: 68.1 - brightRed: 76 - brightGreen: 75.5 - brightYellow: 36.3 - brightBlue: 88.8 - brightMagenta: 69.7 - brightCyan: 86.7 - brightWhite: 8.4 diff --git a/themes/nushu-dark.yaml b/themes/nushu-dark.yaml deleted file mode 100644 index 1a896447..00000000 --- a/themes/nushu-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nushu Dark" -source: - marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" - version: "2.2.18" - installs: 32063 - rating: 5 - ratings: 8 - author: "wheredoesyourmindgo" - repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" -colors: - bg: "#25211D" - fg: "#D7CFC7" - black: "#484F58" - red: "#FF7B72" - green: "#3FB950" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FFA198" - brightGreen: "#56D364" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: "Nushu Light" - contrast: - fg: 75.8 - black: 11.2 - red: 50.7 - green: 50.2 - yellow: 50.3 - blue: 50.3 - magenta: 50.3 - cyan: 59.5 - white: 62.2 - brightBlack: 27.4 - brightRed: 63 - brightGreen: 63.6 - brightYellow: 62.8 - brightBlue: 62.9 - brightMagenta: 62.7 - brightCyan: 68.1 - brightWhite: 105.5 diff --git a/themes/nushu-light.yaml b/themes/nushu-light.yaml deleted file mode 100644 index 0398a914..00000000 --- a/themes/nushu-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nushu Light" -source: - marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" - version: "2.2.18" - installs: 32063 - rating: 5 - ratings: 8 - author: "wheredoesyourmindgo" - repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" -colors: - bg: "#F8F6F1" - fg: "#2B2822" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#6639BA" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#8250DF" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Nushu Dark" - contrast: - fg: 96.2 - black: 96.1 - red: 69.4 - green: 79.9 - yellow: 92.6 - blue: 69.6 - magenta: 79.5 - cyan: 68.5 - white: 66.3 - brightBlack: 76.4 - brightRed: 79.9 - brightGreen: 69.3 - brightYellow: 86.7 - brightBlue: 55.4 - brightMagenta: 69 - brightCyan: 58 - brightWhite: 51.9 diff --git a/themes/nutheme.yaml b/themes/nutheme.yaml index 19046b25..6d5a2d0b 100644 --- a/themes/nutheme.yaml +++ b/themes/nutheme.yaml @@ -1,4 +1,4 @@ -name: "nuTheme" +name: "NuTheme" source: marketplace_id: "TheWebDev.nutheme" version: "0.2.1" @@ -8,6 +8,7 @@ source: author: "TheWebDev" repo: "https://github.com/stevie2codes/TatangoTheme" url: "https://marketplace.visualstudio.com/items?itemName=TheWebDev.nutheme" + formats: null colors: bg: "#1D1F21" fg: "#FFFFFF" diff --git a/themes/nutty-dark-theme.yaml b/themes/nutty-dark-theme.yaml deleted file mode 100644 index 44b29c2c..00000000 --- a/themes/nutty-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nutty Dark Theme" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#1A1410" - fg: "#E8DDD0" - black: "#2A1F16" - red: "#E6543A" - green: "#7A9A2F" - yellow: "#FF8C42" - blue: "#4D8FA3" - magenta: "#B57AB8" - cyan: "#5FABC5" - white: "#D0CAB8" - brightBlack: "#5A4D3F" - brightRed: "#FF6F54" - brightGreen: "#8FB544" - brightYellow: "#FFA459" - brightBlue: "#6AADC5" - brightMagenta: "#D099D4" - brightCyan: "#7DC5DD" - brightWhite: "#FFFEF9" -meta: - mode: "dark" - accent: "orange" - hue: 56 - pair: "Nutty Light Theme" - contrast: - fg: 86.1 - black: 0 - red: 37.4 - green: 41.4 - yellow: 56.1 - blue: 37 - magenta: 41.1 - cyan: 50.7 - white: 73.7 - brightBlack: 13 - brightRed: 48.7 - brightGreen: 54.6 - brightYellow: 64.1 - brightBlue: 52.1 - brightMagenta: 56.3 - brightCyan: 64.9 - brightWhite: 106.3 diff --git a/themes/nutty-light-theme.yaml b/themes/nutty-light-theme.yaml deleted file mode 100644 index cb7788e7..00000000 --- a/themes/nutty-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nutty Light Theme" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#FFFEF9" - fg: "#2A1F16" - black: "#2A1F16" - red: "#C4361A" - green: "#4A6414" - yellow: "#CC6600" - blue: "#2D5F75" - magenta: "#7A3F7D" - cyan: "#2D5F75" - white: "#EBE8DF" - brightBlack: "#5A4D3F" - brightRed: "#D65B3E" - brightGreen: "#5A7A1A" - brightYellow: "#E67D22" - brightBlue: "#3D7B91" - brightMagenta: "#955A99" - brightCyan: "#4D8FA3" - brightWhite: "#FFFEF9" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Nutty Dark Theme" - contrast: - fg: 102.3 - black: 102.3 - red: 74.9 - green: 82.3 - yellow: 64.6 - blue: 83.3 - magenta: 84.7 - cyan: 83.3 - white: 10.4 - brightBlack: 87.6 - brightRed: 64.8 - brightGreen: 73.5 - brightYellow: 53.7 - brightBlue: 72 - brightMagenta: 73.7 - brightCyan: 63.1 - brightWhite: 0 diff --git a/themes/nuuvo-space-max.yaml b/themes/nuuvo-space-max.yaml deleted file mode 100644 index b34cc170..00000000 --- a/themes/nuuvo-space-max.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "nuuvo - space max" -source: - marketplace_id: "jacksonhardy.nuuvo" - version: "0.0.3" - installs: 49 - author: "jacksonhardy" - repo: "https://github.com/jacksonhardy/nuuvo-themes" - url: "https://marketplace.visualstudio.com/items?itemName=jacksonhardy.nuuvo" -colors: - bg: "#2B2B2B" - fg: "#CBC1D5" - black: "#B2B2B2" - red: "#BA2F59" - green: "#91DF8A" - yellow: "#FFB30F" - blue: "#3A81C3" - magenta: "#800080" - cyan: "#8D81FF" - white: "#B2B2B2" - brightBlack: "#B2B2B2" - brightRed: "#F2241F" - brightGreen: "#67FF59" - brightYellow: "#B1951D" - brightBlue: "#D7DFFF" - brightMagenta: "#A31DB1" - brightCyan: "#B5ADFF" - brightWhite: "#B2B2B2" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 67.3 - black: 56.6 - red: 20.1 - green: 72 - yellow: 65.7 - blue: 29.7 - magenta: 8.6 - cyan: 39.6 - white: 56.6 - brightBlack: 56.6 - brightRed: 31.2 - brightGreen: 84.8 - brightYellow: 42.3 - brightBlue: 83.8 - brightMagenta: 18.3 - brightCyan: 59.1 - brightWhite: 56.6 diff --git a/themes/nuxt-blend-bleach-color-theme.yaml b/themes/nuxt-blend-bleach-color-theme.yaml deleted file mode 100644 index 898562f1..00000000 --- a/themes/nuxt-blend-bleach-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nuxt Blend-Bleach Color Theme" -source: - marketplace_id: "CeoDev.neo-nuxt3-blend" - version: "3.3.4" - installs: 2699 - rating: 5 - ratings: 1 - author: "Vantol Bennett" - repo: "https://github.com/titan-65/neo-nuxt" - url: "https://marketplace.visualstudio.com/items?itemName=CeoDev.neo-nuxt3-blend" -colors: - bg: "#FFFFFF" - fg: "#76767D" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#000000" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 71.3 - black: 106 - red: 74 - green: 49.2 - yellow: 57.9 - blue: 86.1 - magenta: 74.6 - cyan: 60.6 - white: 106 - brightBlack: 78.8 - brightRed: 74 - brightGreen: 40.9 - brightYellow: 40.9 - brightBlue: 86.1 - brightMagenta: 74.6 - brightCyan: 60.6 - brightWhite: 48.5 diff --git a/themes/nuxt-blend.yaml b/themes/nuxt-blend.yaml deleted file mode 100644 index 0d6d87e6..00000000 --- a/themes/nuxt-blend.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nuxt Blend" -source: - marketplace_id: "CeoDev.neo-nuxt3-blend" - version: "3.3.4" - installs: 2699 - rating: 5 - ratings: 1 - author: "Vantol Bennett" - repo: "https://github.com/titan-65/neo-nuxt" - url: "https://marketplace.visualstudio.com/items?itemName=CeoDev.neo-nuxt3-blend" -colors: - bg: "#021C24" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 221 - pair: null - contrast: - fg: 106.5 - black: 0 - red: 26.4 - green: 52.7 - yellow: 85.3 - blue: 27.1 - magenta: 29.4 - cyan: 47.2 - white: 106.5 - brightBlack: 21.7 - brightRed: 38.2 - brightGreen: 63.2 - brightYellow: 95.3 - brightBlue: 39.7 - brightMagenta: 45 - brightCyan: 55.1 - brightWhite: 106.5 diff --git a/themes/nuxtian-deep-space.yaml b/themes/nuxtian-deep-space.yaml deleted file mode 100644 index cb7b3da4..00000000 --- a/themes/nuxtian-deep-space.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nuxtian Deep Space" -source: - marketplace_id: "MashedPotatoStudios.nuxtian" - version: "0.3.5" - installs: 417 - rating: 0 - ratings: 0 - author: "Mashed Potato Studios" - repo: "https://github.com/mashed-potato-studios/nuxtian" - url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" -colors: - bg: "#050B1D" - fg: "#CBD5E1" - black: "#050B1D" - red: "#FF5370" - green: "#00DC82" - yellow: "#CBD5E1" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#F7ECE9" - brightBlack: "#27272A" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#E2E8F0" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#F7ECE9" -meta: - mode: "dark" - accent: "red" - hue: 266 - pair: null - contrast: - fg: 80.1 - black: 0 - red: 44.4 - green: 69.3 - yellow: 80.1 - blue: 56.7 - magenta: 54.5 - cyan: 79 - white: 96.6 - brightBlack: 0 - brightRed: 44.4 - brightGreen: 84.9 - brightYellow: 92.2 - brightBlue: 56.7 - brightMagenta: 54.5 - brightCyan: 79 - brightWhite: 96.6 diff --git a/themes/nuxtian-light.yaml b/themes/nuxtian-light.yaml deleted file mode 100644 index b5bb7778..00000000 --- a/themes/nuxtian-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nuxtian Light" -source: - marketplace_id: "MashedPotatoStudios.nuxtian" - version: "0.3.5" - installs: 417 - rating: 0 - ratings: 0 - author: "Mashed Potato Studios" - repo: "https://github.com/mashed-potato-studios/nuxtian" - url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" -colors: - bg: "#F8FAFC" - fg: "#1E293B" - black: "#0F172A" - red: "#F43F5E" - green: "#00DC82" - yellow: "#64748B" - blue: "#3B82F6" - magenta: "#A855F7" - cyan: "#06B6D4" - white: "#F8FAFC" - brightBlack: "#334155" - brightRed: "#F43F5E" - brightGreen: "#4ADE80" - brightYellow: "#94A3B8" - brightBlue: "#3B82F6" - brightMagenta: "#A855F7" - brightCyan: "#06B6D4" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 98.2 - black: 101.4 - red: 59.7 - green: 29.9 - yellow: 69.9 - blue: 60.7 - magenta: 63.1 - cyan: 44 - white: 0 - brightBlack: 90.9 - brightRed: 59.7 - brightGreen: 28.1 - brightYellow: 47 - brightBlue: 60.7 - brightMagenta: 63.1 - brightCyan: 44 - brightWhite: 0 diff --git a/themes/nuxtian-nitro.yaml b/themes/nuxtian-nitro.yaml deleted file mode 100644 index 23e0550c..00000000 --- a/themes/nuxtian-nitro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nuxtian Nitro" -source: - marketplace_id: "MashedPotatoStudios.nuxtian" - version: "0.3.5" - installs: 417 - rating: 0 - ratings: 0 - author: "Mashed Potato Studios" - repo: "https://github.com/mashed-potato-studios/nuxtian" - url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" -colors: - bg: "#111111" - fg: "#FFFFFF" - black: "#000000" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFFF00" - blue: "#FF3366" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#FF0000" - brightGreen: "#00FF00" - brightYellow: "#FFFF00" - brightBlue: "#FF3366" - brightMagenta: "#FF00FF" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.4 - black: 0 - red: 37 - green: 86 - yellow: 102.2 - blue: 39.9 - magenta: 45.7 - cyan: 91.7 - white: 107.4 - brightBlack: 22.5 - brightRed: 37 - brightGreen: 86 - brightYellow: 102.2 - brightBlue: 39.9 - brightMagenta: 45.7 - brightCyan: 91.7 - brightWhite: 107.4 diff --git a/themes/nuxtian.yaml b/themes/nuxtian.yaml deleted file mode 100644 index b70587c5..00000000 --- a/themes/nuxtian.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Nuxtian" -source: - marketplace_id: "MashedPotatoStudios.nuxtian" - version: "0.3.5" - installs: 417 - rating: 0 - ratings: 0 - author: "Mashed Potato Studios" - repo: "https://github.com/mashed-potato-studios/nuxtian" - url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" -colors: - bg: "#10162A" - fg: "#CBD5E1" - black: "#10162A" - red: "#FF5370" - green: "#00DC82" - yellow: "#CBD5E1" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#F7ECE9" - brightBlack: "#27272A" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#E2E8F0" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#F7ECE9" -meta: - mode: "dark" - accent: "red" - hue: 270 - pair: null - contrast: - fg: 79.3 - black: 0 - red: 43.6 - green: 68.5 - yellow: 79.3 - blue: 55.9 - magenta: 53.7 - cyan: 78.2 - white: 95.8 - brightBlack: 0 - brightRed: 43.6 - brightGreen: 84.1 - brightYellow: 91.5 - brightBlue: 55.9 - brightMagenta: 53.7 - brightCyan: 78.2 - brightWhite: 95.8 diff --git a/themes/nuxtiansololevel.yaml b/themes/nuxtiansololevel.yaml deleted file mode 100644 index df1a43db..00000000 --- a/themes/nuxtiansololevel.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NuxtianSoloLevel" -source: - marketplace_id: "MashedPotatoStudios.nuxtian" - version: "0.3.5" - installs: 417 - rating: 0 - ratings: 0 - author: "Mashed Potato Studios" - repo: "https://github.com/mashed-potato-studios/nuxtian" - url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" -colors: - bg: "#171717" - fg: "#FFFFFF" - black: "#3B3B3B" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#888787" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 106.9 - black: 0 - red: 43.6 - green: 84.2 - yellow: 78.9 - blue: 55.9 - magenta: 53.7 - cyan: 78.2 - white: 106.9 - brightBlack: 37.2 - brightRed: 43.6 - brightGreen: 84.2 - brightYellow: 78.9 - brightBlue: 55.9 - brightMagenta: 53.7 - brightCyan: 78.2 - brightWhite: 106.9 diff --git a/themes/nuxtvite.yaml b/themes/nuxtvite.yaml deleted file mode 100644 index b03b970a..00000000 --- a/themes/nuxtvite.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NuxtVite" -source: - marketplace_id: "MashedPotatoStudios.nuxtian" - version: "0.3.5" - installs: 417 - rating: 0 - ratings: 0 - author: "Mashed Potato Studios" - repo: "https://github.com/mashed-potato-studios/nuxtian" - url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" -colors: - bg: "#15131B" - fg: "#CBD5E1" - black: "#15131B" - red: "#FF5370" - green: "#00DC82" - yellow: "#CBD5E1" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#F7ECE9" - brightBlack: "#27272A" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#E2E8F0" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#F7ECE9" -meta: - mode: "dark" - accent: "red" - hue: 296 - pair: null - contrast: - fg: 79.6 - black: 0 - red: 43.9 - green: 68.8 - yellow: 79.6 - blue: 56.2 - magenta: 54 - cyan: 78.5 - white: 96.1 - brightBlack: 0 - brightRed: 43.9 - brightGreen: 84.4 - brightYellow: 91.8 - brightBlue: 56.2 - brightMagenta: 54 - brightCyan: 78.5 - brightWhite: 96.1 diff --git a/themes/nuxtvoid.yaml b/themes/nuxtvoid.yaml deleted file mode 100644 index af17276f..00000000 --- a/themes/nuxtvoid.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NuxtVoid" -source: - marketplace_id: "MashedPotatoStudios.nuxtian" - version: "0.3.5" - installs: 417 - rating: 0 - ratings: 0 - author: "Mashed Potato Studios" - repo: "https://github.com/mashed-potato-studios/nuxtian" - url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" -colors: - bg: "#FFFFFF" - fg: "#6B7280" - black: "#1F2937" - red: "#EF4444" - green: "#10B981" - yellow: "#F59E0B" - blue: "#3B82F6" - magenta: "#8B5CF6" - cyan: "#06B6D4" - white: "#F9FAFB" - brightBlack: "#6B7280" - brightRed: "#FCA5A5" - brightGreen: "#A7F3D0" - brightYellow: "#FDE68A" - brightBlue: "#93C5FD" - brightMagenta: "#C4B5FD" - brightCyan: "#A5F3FC" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 73.6 - black: 101.5 - red: 63.8 - green: 49.1 - yellow: 41.8 - blue: 63.9 - magenta: 68.7 - cyan: 47.1 - white: 0 - brightBlack: 73.6 - brightRed: 35.9 - brightGreen: 13.9 - brightYellow: 12.1 - brightBlue: 33.4 - brightMagenta: 34.7 - brightCyan: 12.2 - brightWhite: 0 diff --git a/themes/nw21.yaml b/themes/nw21.yaml deleted file mode 100644 index 21227ebb..00000000 --- a/themes/nw21.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NW21" -source: - marketplace_id: "heikopanjas.berlin-postal-themes" - version: "2.0.2" - installs: 38 - rating: 5 - ratings: 1 - author: "Heiko Panjas" - repo: "https://github.com/heikopanjas/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=heikopanjas.berlin-postal-themes" -colors: - bg: "#E8EEFE" - fg: "#1F2328" - black: "#24292F" - red: "#D1242F" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#656D76" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: 269 - pair: null - contrast: - fg: 92.6 - black: 91.4 - red: 64.1 - green: 75.1 - yellow: 87.9 - blue: 64.8 - magenta: 64.2 - cyan: 63.7 - white: 61.5 - brightBlack: 66 - brightRed: 75.1 - brightGreen: 64.5 - brightYellow: 81.9 - brightBlue: 50.6 - brightMagenta: 49.2 - brightCyan: 53.2 - brightWhite: 47.1 diff --git a/themes/ny-city-lights-theme.yaml b/themes/ny-city-lights-theme.yaml deleted file mode 100644 index 55e1227a..00000000 --- a/themes/ny-city-lights-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "NY City Lights Theme" -source: - marketplace_id: "nycdude.nyc-lights" - version: "0.7.5" - installs: 4683 - rating: 5 - ratings: 2 - author: "iamalmiir" - repo: "https://github.com/iamalmiir/nyc_winter_vsc_theme" - url: "https://marketplace.visualstudio.com/items?itemName=nycdude.nyc-lights" -colors: - bg: "#282D44" - fg: "#EEFFFF" - black: "#414868" - red: "#F7768E" - green: "#73DACA" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#7982A9" - brightBlack: "#414868" - brightRed: "#F7768E" - brightGreen: "#73DACA" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#A9B1D6" -meta: - mode: "dark" - accent: "red" - hue: 274 - pair: null - contrast: - fg: 100.8 - black: 0 - red: 46.2 - green: 69 - yellow: 59 - blue: 48 - magenta: 51.8 - cyan: 67.3 - white: 31.8 - brightBlack: 0 - brightRed: 46.2 - brightGreen: 69 - brightYellow: 59 - brightBlue: 48 - brightMagenta: 51.8 - brightCyan: 67.3 - brightWhite: 56.2 diff --git a/themes/nyctophilia.yaml b/themes/nyctophilia.yaml index 9b79b836..ba096ed1 100644 --- a/themes/nyctophilia.yaml +++ b/themes/nyctophilia.yaml @@ -8,6 +8,7 @@ source: author: "Abhiraj Chaudhuri" repo: "https://github.com/abhie7/NyctophiliaTheme" url: "https://marketplace.visualstudio.com/items?itemName=abhiraj-chaudhuri.nyctophilia-color-theme" + formats: null colors: bg: "#05070A" fg: "#4BE496" diff --git a/themes/nyrkes.yaml b/themes/nyrkes.yaml index d8178d83..efe044f3 100644 --- a/themes/nyrkes.yaml +++ b/themes/nyrkes.yaml @@ -8,6 +8,7 @@ source: author: "TapioJokinen" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TapioJokinen.nyrkes-theme" + formats: null colors: bg: "#1F1F1F" fg: "#D3D3D3" diff --git a/themes/oa515.yaml b/themes/oa515.yaml index 52a925ce..2bf6820d 100644 --- a/themes/oa515.yaml +++ b/themes/oa515.yaml @@ -8,6 +8,7 @@ source: author: "kingllama" repo: "https://github.com/kingllama/vscode-OA515" url: "https://marketplace.visualstudio.com/items?itemName=kingllama.oa515" + formats: null colors: bg: "#F7F4EB" fg: "#1E1C04" diff --git a/themes/oak-dark.yaml b/themes/oak-dark.yaml deleted file mode 100644 index 6ef00505..00000000 --- a/themes/oak-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Oak-Dark" -source: - marketplace_id: "Rekihyt.oak" - version: "2.1.7" - installs: 752 - rating: 0 - ratings: 0 - author: "Rekihyt" - repo: "https://github.com/rekihyt/oak" - url: "https://marketplace.visualstudio.com/items?itemName=Rekihyt.oak" -colors: - bg: "#202020" - fg: "#E0E0E0" - black: "#FFFFFF" - red: "#C26F9B" - green: "#52B84E" - yellow: "#CFA957" - blue: "#458FDD" - magenta: "#9779DF" - cyan: "#49B4BE" - white: "#000000" - brightBlack: "#FFFFFF" - brightRed: "#B44882" - brightGreen: "#30B040" - brightYellow: "#FFE1A2" - brightBlue: "#7CACE0" - brightMagenta: "#A493CC" - brightCyan: "#74C9D1" - brightWhite: "#303030" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 85.8 - black: 105.8 - red: 37.5 - green: 50.7 - yellow: 56.4 - blue: 38.7 - magenta: 37.9 - cyan: 51.9 - white: 0 - brightBlack: 105.8 - brightRed: 25.6 - brightGreen: 45.8 - brightYellow: 88.4 - brightBlue: 53.2 - brightMagenta: 46.5 - brightCyan: 64.2 - brightWhite: 0 diff --git a/themes/oak.yaml b/themes/oak.yaml deleted file mode 100644 index 3e529f2a..00000000 --- a/themes/oak.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Oak" -source: - marketplace_id: "Rekihyt.oak" - version: "2.1.7" - installs: 752 - rating: 0 - ratings: 0 - author: "Rekihyt" - repo: "https://github.com/rekihyt/oak" - url: "https://marketplace.visualstudio.com/items?itemName=Rekihyt.oak" -colors: - bg: "#F5F5F5" - fg: "#505050" - black: "#000000" - red: "#C26F9B" - green: "#52B84E" - yellow: "#8A671E" - blue: "#5086CE" - magenta: "#9779DF" - cyan: "#49B4BE" - white: "#FFFFFF" - brightBlack: "#303030" - brightRed: "#B44882" - brightGreen: "#30B040" - brightYellow: "#CFA957" - brightBlue: "#7CACE0" - brightMagenta: "#A493CC" - brightCyan: "#74C9D1" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 82 - black: 100.1 - red: 56.1 - green: 43.2 - yellow: 69.6 - blue: 58.6 - magenta: 55.7 - cyan: 42 - white: 0 - brightBlack: 93.6 - brightRed: 68 - brightGreen: 47.9 - brightYellow: 37.6 - brightBlue: 40.8 - brightMagenta: 47.2 - brightCyan: 30.2 - brightWhite: 0 diff --git a/themes/obanai-iguro.yaml b/themes/obanai-iguro.yaml deleted file mode 100644 index 4510cd47..00000000 --- a/themes/obanai-iguro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Obanai Iguro" -source: - marketplace_id: "devLocifer.hashira-code-theme" - version: "0.0.1" - installs: 739 - rating: 5 - ratings: 1 - author: "devLocifer" - repo: "https://github.com/diazdjul19/hashira-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" -colors: - bg: "#1F2430" - fg: "#DADBC0" - black: "#191E2A" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#CFBAFA" - cyan: "#98C379" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F28779" - brightGreen: "#BAE67E" - brightYellow: "#FFD580" - brightBlue: "#61AFEF" - brightMagenta: "#D4BFFF" - brightCyan: "#BAE67E" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 267 - pair: null - contrast: - fg: 80.8 - black: 0 - red: 40.3 - green: 60.5 - yellow: 68.8 - blue: 52.9 - magenta: 68.3 - cyan: 60.5 - white: 69.9 - brightBlack: 21.1 - brightRed: 51.1 - brightGreen: 80.2 - brightYellow: 81.8 - brightBlue: 52.9 - brightMagenta: 71.2 - brightCyan: 80.2 - brightWhite: 105.1 diff --git a/themes/obito-akatsuki-theme.yaml b/themes/obito-akatsuki-theme.yaml index a7299603..0013d96a 100644 --- a/themes/obito-akatsuki-theme.yaml +++ b/themes/obito-akatsuki-theme.yaml @@ -1,13 +1,14 @@ -name: "obito akatsuki theme" +name: "Obito Akatsuki Theme" source: marketplace_id: "obito-dev.obito-akatsuki-theme" version: "1.2.0" - installs: 697 + installs: 698 rating: 0 ratings: 0 author: "obito-dev" repo: "https://github.com/ton-user/obito-akatsuki-theme" url: "https://marketplace.visualstudio.com/items?itemName=obito-dev.obito-akatsuki-theme" + formats: null colors: bg: "#0D0C0C" fg: "#E8D5D5" diff --git a/themes/oblivion.yaml b/themes/oblivion.yaml index 4b45bbb1..1f5d90c4 100644 --- a/themes/oblivion.yaml +++ b/themes/oblivion.yaml @@ -8,6 +8,7 @@ source: author: "AustinHou" repo: "https://github.com/PhoenixFieryn/oblivion-theme" url: "https://marketplace.visualstudio.com/items?itemName=AustinHou.oblivion-theme" + formats: null colors: bg: "#030C1B" fg: "#FB79DA" diff --git a/themes/oboro.yaml b/themes/oboro.yaml index a89fd4c7..ee746392 100644 --- a/themes/oboro.yaml +++ b/themes/oboro.yaml @@ -8,6 +8,7 @@ source: author: "Kusefiru" repo: "https://github.com/Kusefiru/Oboro" url: "https://marketplace.visualstudio.com/items?itemName=Kusefiru.oboro" + formats: null colors: bg: "#222036" fg: "#D8D2F0" diff --git a/themes/obsidian-dark.yaml b/themes/obsidian-dark.yaml index 7c9e8636..bcaf9962 100644 --- a/themes/obsidian-dark.yaml +++ b/themes/obsidian-dark.yaml @@ -1,15 +1,16 @@ name: "Obsidian Dark" source: - marketplace_id: "dwrolvink.obsidian-dark-theme-rust" + marketplace_id: "Hamza-Aziane.obsidian-dark" version: "1.0.0" - installs: 3355 + installs: 19472 rating: 5 - ratings: 1 - author: "dwrolvink" - repo: "https://github.com/dwrolvink/obsidian-dark-theme-rust" - url: "https://marketplace.visualstudio.com/items?itemName=dwrolvink.obsidian-dark-theme-rust" + ratings: 8 + author: "Hamza Aziane" + repo: "https://github.com/Hamza-Aziane/obsidian-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Hamza-Aziane.obsidian-dark" + formats: null colors: - bg: "#10151A" + bg: "#11151A" fg: "#C9D1D9" black: "#484F58" red: "#FF7B72" @@ -30,10 +31,10 @@ colors: meta: mode: "dark" accent: "green" - hue: 248 + hue: 254 pair: "Obsidian Light" contrast: - fg: 77.3 + fg: 77.2 black: 12.8 red: 52.3 green: 51.8 @@ -41,12 +42,12 @@ meta: blue: 51.9 magenta: 51.9 cyan: 61.1 - white: 63.8 + white: 63.7 brightBlack: 29 - brightRed: 64.6 + brightRed: 64.5 brightGreen: 65.2 brightYellow: 64.4 - brightBlue: 64.5 + brightBlue: 64.4 brightMagenta: 64.3 brightCyan: 69.6 brightWhite: 100.6 diff --git a/themes/obsidian-ember.yaml b/themes/obsidian-ember.yaml index 413cef18..428122d2 100644 --- a/themes/obsidian-ember.yaml +++ b/themes/obsidian-ember.yaml @@ -2,12 +2,13 @@ name: "Obsidian Ember" source: marketplace_id: "Bloody.obsidian-ember" version: "1.0.0" - installs: 159 + installs: 161 rating: 0 ratings: 0 author: "Bloody" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Bloody.obsidian-ember" + formats: null colors: bg: "#0A0C12" fg: "#A29A8F" diff --git a/themes/obsidian-gold.yaml b/themes/obsidian-gold.yaml index cfa9a96a..50cc911e 100644 --- a/themes/obsidian-gold.yaml +++ b/themes/obsidian-gold.yaml @@ -2,12 +2,13 @@ name: "Obsidian Gold" source: marketplace_id: "Samux.obsidian-gold-theme" version: "0.0.1" - installs: 248 + installs: 249 rating: 0 ratings: 0 author: "Samux" repo: "https://github.com/samuelferfort/obsidian-gold" url: "https://marketplace.visualstudio.com/items?itemName=Samux.obsidian-gold-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/obsidian-light.yaml b/themes/obsidian-light.yaml index 2b1abfd7..ffe79205 100644 --- a/themes/obsidian-light.yaml +++ b/themes/obsidian-light.yaml @@ -8,6 +8,7 @@ source: author: "narcilee7" repo: "https://github.com/narcilee7/obsidian-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=narcilee7.obsidian-light" + formats: null colors: bg: "#FFFFFF" fg: "#2E2E2E" diff --git a/themes/obsidian-nova.yaml b/themes/obsidian-nova.yaml index 5f1b8654..1e6c3329 100644 --- a/themes/obsidian-nova.yaml +++ b/themes/obsidian-nova.yaml @@ -8,6 +8,7 @@ source: author: "JaSperryTech" repo: "https://github.com/JaSperryTech-Main/nova-theme" url: "https://marketplace.visualstudio.com/items?itemName=JaSperryTech.obsidian-nova" + formats: null colors: bg: "#232632" fg: "#AFB5CF" diff --git a/themes/obsidian-pro-dark-blue-purple.yaml b/themes/obsidian-pro-dark-blue-purple.yaml index 7d2d8996..7814cb44 100644 --- a/themes/obsidian-pro-dark-blue-purple.yaml +++ b/themes/obsidian-pro-dark-blue-purple.yaml @@ -8,6 +8,7 @@ source: author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" + formats: null colors: bg: "#09090B" fg: "#ECECF1" diff --git a/themes/obsidian-pro-dark-pink-purple.yaml b/themes/obsidian-pro-dark-pink-purple.yaml index 8019ffee..6da8c6b6 100644 --- a/themes/obsidian-pro-dark-pink-purple.yaml +++ b/themes/obsidian-pro-dark-pink-purple.yaml @@ -8,6 +8,7 @@ source: author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" + formats: null colors: bg: "#0A0A0C" fg: "#EDEDF2" diff --git a/themes/obsidian-pro-dark-purple-neon.yaml b/themes/obsidian-pro-dark-purple-neon.yaml index 70dd2037..cad3d2ba 100644 --- a/themes/obsidian-pro-dark-purple-neon.yaml +++ b/themes/obsidian-pro-dark-purple-neon.yaml @@ -8,6 +8,7 @@ source: author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" + formats: null colors: bg: "#0A0A0A" fg: "#F4F4F5" diff --git a/themes/obsidian-pro-dark-purple-pastel.yaml b/themes/obsidian-pro-dark-purple-pastel.yaml index dddced23..c060b08b 100644 --- a/themes/obsidian-pro-dark-purple-pastel.yaml +++ b/themes/obsidian-pro-dark-purple-pastel.yaml @@ -8,6 +8,7 @@ source: author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" + formats: null colors: bg: "#0B0B0B" fg: "#EAEAEC" diff --git a/themes/obsidian-pro-dark-purple.yaml b/themes/obsidian-pro-dark-purple.yaml index 1c155cc1..69a274b4 100644 --- a/themes/obsidian-pro-dark-purple.yaml +++ b/themes/obsidian-pro-dark-purple.yaml @@ -8,6 +8,7 @@ source: author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" + formats: null colors: bg: "#0A0A0A" fg: "#E4E4E7" diff --git a/themes/obsidian-pro-dark.yaml b/themes/obsidian-pro-dark.yaml index 4e1a570b..473ab279 100644 --- a/themes/obsidian-pro-dark.yaml +++ b/themes/obsidian-pro-dark.yaml @@ -8,6 +8,7 @@ source: author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" + formats: null colors: bg: "#0A0A0A" fg: "#E4E4E7" diff --git a/themes/obsidian-pro-white-purple.yaml b/themes/obsidian-pro-white-purple.yaml index 95f424cb..13f7533f 100644 --- a/themes/obsidian-pro-white-purple.yaml +++ b/themes/obsidian-pro-white-purple.yaml @@ -8,6 +8,7 @@ source: author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" + formats: null colors: bg: "#FAFAFA" fg: "#222222" diff --git a/themes/obsidian-pro-white.yaml b/themes/obsidian-pro-white.yaml index 4c11ff6b..933a9d4f 100644 --- a/themes/obsidian-pro-white.yaml +++ b/themes/obsidian-pro-white.yaml @@ -8,6 +8,7 @@ source: author: "williamkoller" repo: "https://github.com/williamkoller/obsidian-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=williamkoller.obsidian-pro-theme" + formats: null colors: bg: "#FAFAFA" fg: "#1F1F1F" diff --git a/themes/obsidian-pulse-light-theme.yaml b/themes/obsidian-pulse-light-theme.yaml index c05225d4..781996ff 100644 --- a/themes/obsidian-pulse-light-theme.yaml +++ b/themes/obsidian-pulse-light-theme.yaml @@ -8,6 +8,7 @@ source: author: "Mehdi Zayani" repo: "https://github.com/mehdi-zayani/obsidian-pulse-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=MehdiZayani.obsidian-pulse-theme" + formats: null colors: bg: "#ECECEC" fg: "#333333" diff --git a/themes/obsidian-pulse-theme.yaml b/themes/obsidian-pulse-theme.yaml index 144c11a3..defdede9 100644 --- a/themes/obsidian-pulse-theme.yaml +++ b/themes/obsidian-pulse-theme.yaml @@ -8,6 +8,7 @@ source: author: "Mehdi Zayani" repo: "https://github.com/mehdi-zayani/obsidian-pulse-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=MehdiZayani.obsidian-pulse-theme" + formats: null colors: bg: "#1B1D2A" fg: "#D8DEE9" diff --git a/themes/obsidian-sea.yaml b/themes/obsidian-sea.yaml index f6015a58..f95fc8d0 100644 --- a/themes/obsidian-sea.yaml +++ b/themes/obsidian-sea.yaml @@ -2,12 +2,13 @@ name: "Obsidian Sea" source: marketplace_id: "eight84.obsidian-sea" version: "1.8.0" - installs: 66 + installs: 68 rating: 0 ratings: 0 author: "eight84" repo: "https://github.com/eight84/obsidian-sea-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=eight84.obsidian-sea" + formats: null colors: bg: "#0F111A" fg: "#E0E6ED" diff --git a/themes/obsidian-sunset.yaml b/themes/obsidian-sunset.yaml index 0c0222da..02bc1d18 100644 --- a/themes/obsidian-sunset.yaml +++ b/themes/obsidian-sunset.yaml @@ -2,12 +2,13 @@ name: "Obsidian Sunset" source: marketplace_id: "lczerniawski.obsidiansunset" version: "1.5.2" - installs: 1026 + installs: 1027 rating: 5 ratings: 2 author: "Łukasz Czerniawski" repo: "https://github.com/lczerniawski/ObsidianSunset" url: "https://marketplace.visualstudio.com/items?itemName=lczerniawski.obsidiansunset" + formats: null colors: bg: "#171615" fg: "#BFBDB6" diff --git a/themes/obsidian-void.yaml b/themes/obsidian-void.yaml index 1116e20c..ec2b562e 100644 --- a/themes/obsidian-void.yaml +++ b/themes/obsidian-void.yaml @@ -8,6 +8,7 @@ source: author: "Mohammad Hasani" repo: "https://github.com/mohammadhasanii/obsidian-void" url: "https://marketplace.visualstudio.com/items?itemName=MohammadHasani.obsidian-void" + formats: null colors: bg: "#10121C" fg: "#EEFFFF" diff --git a/themes/obsidian-wine.yaml b/themes/obsidian-wine.yaml deleted file mode 100644 index 238abdac..00000000 --- a/themes/obsidian-wine.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Obsidian-Wine" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#131420" - fg: "#F2F2F2" - black: "#131420" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#E74040" - magenta: "#E74040" - cyan: "#29C3A0" - white: "#F2F2F2" - brightBlack: "#131420" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#E74040" - brightMagenta: "#E74040" - brightCyan: "#29C3A0" - brightWhite: "#F2F2F2" -meta: - mode: "dark" - accent: "orange" - hue: 280 - pair: null - contrast: - fg: 98.5 - black: 0 - red: 9.5 - green: 57.8 - yellow: 51.9 - blue: 34.6 - magenta: 34.6 - cyan: 57.8 - white: 98.5 - brightBlack: 0 - brightRed: 9.5 - brightGreen: 57.8 - brightYellow: 51.9 - brightBlue: 34.6 - brightMagenta: 34.6 - brightCyan: 57.8 - brightWhite: 98.5 diff --git a/themes/obsidian.yaml b/themes/obsidian.yaml index 06d96408..8d6ec0c2 100644 --- a/themes/obsidian.yaml +++ b/themes/obsidian.yaml @@ -8,6 +8,7 @@ source: author: "Burty" repo: "https://github.com/georgeeburt/obsidian-theme" url: "https://marketplace.visualstudio.com/items?itemName=georgeburt.obsidian-vscode" + formats: null colors: bg: "#2C2C2C" fg: "#E8E8E8" diff --git a/themes/obsidianite-amoled.yaml b/themes/obsidianite-amoled.yaml deleted file mode 100644 index 1a83fd5b..00000000 --- a/themes/obsidianite-amoled.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Obsidianite AMOLED" -source: - marketplace_id: "shd0w.obsidianite-vscode" - version: "1.0.1" - installs: 2 - rating: 0 - ratings: 0 - author: "shd0w" - repo: "https://github.com/shd0w/obsidianite-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=shd0w.obsidianite-vscode" -colors: - bg: "#000000" - fg: "#BEBEBE" - black: "#000000" - red: "#F4569D" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#0FB6D6" - white: "#BEBEBE" - brightBlack: "#5C6370" - brightRed: "#FF79C6" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#5FD7FF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 67.5 - black: 0 - red: 44.1 - green: 85.9 - yellow: 99.6 - blue: 52.7 - magenta: 56.6 - cyan: 55 - white: 67.5 - brightBlack: 21.6 - brightRed: 55.6 - brightGreen: 90 - brightYellow: 104.5 - brightBlue: 67.1 - brightMagenta: 63.6 - brightCyan: 74.1 - brightWhite: 103 diff --git a/themes/obsidianite.yaml b/themes/obsidianite.yaml deleted file mode 100644 index 3f14a2f1..00000000 --- a/themes/obsidianite.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Obsidianite" -source: - marketplace_id: "shd0w.obsidianite-vscode" - version: "1.0.1" - installs: 2 - rating: 0 - ratings: 0 - author: "shd0w" - repo: "https://github.com/shd0w/obsidianite-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=shd0w.obsidianite-vscode" -colors: - bg: "#100E17" - fg: "#BEBEBE" - black: "#0D0B12" - red: "#F4569D" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#0FB6D6" - white: "#BEBEBE" - brightBlack: "#5C6370" - brightRed: "#FF79C6" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#5FD7FF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "green" - hue: 295 - pair: null - contrast: - fg: 67.1 - black: 0 - red: 43.7 - green: 85.5 - yellow: 99.2 - blue: 52.3 - magenta: 56.2 - cyan: 54.6 - white: 67.1 - brightBlack: 21.2 - brightRed: 55.2 - brightGreen: 89.6 - brightYellow: 104.1 - brightBlue: 66.7 - brightMagenta: 63.2 - brightCyan: 73.7 - brightWhite: 102.6 diff --git a/themes/oc-7-light.yaml b/themes/oc-7-light.yaml deleted file mode 100644 index 6078c254..00000000 --- a/themes/oc-7-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OC-7 light" -source: - marketplace_id: "7off.oc7-light" - version: "0.0.1" - installs: 1099 - rating: 0 - ratings: 0 - author: "Anatoliy Semenov" - repo: "https://github.com/7off/vscode-oc7light-theme" - url: "https://marketplace.visualstudio.com/items?itemName=7off.oc7-light" -colors: - bg: "#F9F9F9" - fg: "#383A42" - black: "#D5D6DD" - red: "#D52753" - green: "#23974A" - yellow: "#DF631C" - blue: "#275FE4" - magenta: "#823FF1" - cyan: "#27618D" - white: "#000000" - brightBlack: "#A0A1A7" - brightRed: "#FF6480" - brightGreen: "#3CBC66" - brightYellow: "#F57D00" - brightBlue: "#0099E1" - brightMagenta: "#CE33C0" - brightCyan: "#6D93BB" - brightWhite: "#26272D" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 92.6 - black: 17.8 - red: 68.9 - green: 61 - yellow: 58.6 - blue: 73 - magenta: 72 - cyan: 78.8 - white: 102.5 - brightBlack: 46.8 - brightRed: 50.1 - brightGreen: 44.2 - brightYellow: 47.9 - brightBlue: 54.4 - brightMagenta: 65 - brightCyan: 55.7 - brightWhite: 98.2 diff --git a/themes/ocean-blue-theme.yaml b/themes/ocean-blue-theme.yaml index a9180afd..60dc81de 100644 --- a/themes/ocean-blue-theme.yaml +++ b/themes/ocean-blue-theme.yaml @@ -8,6 +8,7 @@ source: author: "wipaaa" repo: "https://github.com/wipaaa/vscode-oceanish-blue-theme" url: "https://marketplace.visualstudio.com/items?itemName=wipaaaid.oceanish-blue-theme" + formats: null colors: bg: "#000717" fg: "#A6DEFF" diff --git a/themes/ocean-breeze.yaml b/themes/ocean-breeze.yaml deleted file mode 100644 index 418d0726..00000000 --- a/themes/ocean-breeze.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ocean Breeze" -source: - marketplace_id: "nhcarrigan.naomis-themes" - version: "2.3.0" - installs: 68 - rating: 0 - ratings: 0 - author: "NHCarrigan" - repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" -colors: - bg: "#012A22" - fg: "#ABFCEC" - black: "#001610" - red: "#FF6B6B" - green: "#4DDBBA" - yellow: "#FFD93D" - blue: "#6BC5FF" - magenta: "#FF92DF" - cyan: "#89FFEA" - white: "#C4FCF2" - brightBlack: "#012A22" - brightRed: "#FF8585" - brightGreen: "#6BEDCC" - brightYellow: "#FFE074" - brightBlue: "#92D5FF" - brightMagenta: "#FFB2E7" - brightCyan: "#A9FFF0" - brightWhite: "#E2FCF8" -meta: - mode: "dark" - accent: "orange" - hue: 176 - pair: null - contrast: - fg: 93 - black: 0 - red: 46.1 - green: 68.9 - yellow: 82.3 - blue: 63.6 - magenta: 60.6 - cyan: 91.8 - white: 95.6 - brightBlack: 0 - brightRed: 53.2 - brightGreen: 79.7 - brightYellow: 86.1 - brightBlue: 73.3 - brightMagenta: 71.5 - brightCyan: 94.5 - brightWhite: 99.3 diff --git a/themes/ocean-color-theme.yaml b/themes/ocean-color-theme.yaml index 60409e82..5a294a0c 100644 --- a/themes/ocean-color-theme.yaml +++ b/themes/ocean-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Sage Fennel" repo: "https://github.com/wavebeem/vscode-theme-unoduetre" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" + formats: null colors: bg: "#1C2B4A" fg: "#D1DFFA" diff --git a/themes/ocean-deep-depth-stability.yaml b/themes/ocean-deep-depth-stability.yaml index b117f450..27d775ea 100644 --- a/themes/ocean-deep-depth-stability.yaml +++ b/themes/ocean-deep-depth-stability.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#0A1929" fg: "#E3F2FD" diff --git a/themes/ocean-eyes-medium.yaml b/themes/ocean-eyes-medium.yaml index 948da458..1348f004 100644 --- a/themes/ocean-eyes-medium.yaml +++ b/themes/ocean-eyes-medium.yaml @@ -8,6 +8,7 @@ source: author: "Seth Cox" repo: "https://github.com/sethaddison/ocean-eyes-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SethCox.ocean-eyes" + formats: null colors: bg: "#1F2937" fg: "#FFF9F1" diff --git a/themes/ocean-eyes.yaml b/themes/ocean-eyes.yaml index 2118a057..0b7b63a4 100644 --- a/themes/ocean-eyes.yaml +++ b/themes/ocean-eyes.yaml @@ -8,6 +8,7 @@ source: author: "Seth Cox" repo: "https://github.com/sethaddison/ocean-eyes-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SethCox.ocean-eyes" + formats: null colors: bg: "#14202C" fg: "#FFF9F1" diff --git a/themes/ocean-high-contrast.yaml b/themes/ocean-high-contrast.yaml index e1a8e88c..ba294125 100644 --- a/themes/ocean-high-contrast.yaml +++ b/themes/ocean-high-contrast.yaml @@ -2,12 +2,13 @@ name: "Ocean High Contrast" source: marketplace_id: "NotYasho.ocean-high-contrast" version: "4.1.0" - installs: 9851 + installs: 9858 rating: 5 ratings: 3 author: "NotYasho" repo: "https://github.com/NotYasho/ocean-high-contrast" url: "https://marketplace.visualstudio.com/items?itemName=NotYasho.ocean-high-contrast" + formats: null colors: bg: "#0B0C13" fg: "#E6EAFC" diff --git a/themes/ocean-mist-light.yaml b/themes/ocean-mist-light.yaml index c34c64cc..19512cde 100644 --- a/themes/ocean-mist-light.yaml +++ b/themes/ocean-mist-light.yaml @@ -8,6 +8,7 @@ source: author: "Malik Haziq" repo: "https://github.com/Malik-Haziq/Ocean-Mist-Vscode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=MalikHaziq.ocean-mist" + formats: null colors: bg: "#242E30" fg: "#D4D4D4" diff --git a/themes/ocean-mist.yaml b/themes/ocean-mist.yaml index 4245ceb6..5275f9b5 100644 --- a/themes/ocean-mist.yaml +++ b/themes/ocean-mist.yaml @@ -8,6 +8,7 @@ source: author: "Malik Haziq" repo: "https://github.com/Malik-Haziq/Ocean-Mist-Vscode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=MalikHaziq.ocean-mist" + formats: null colors: bg: "#101E21" fg: "#D4D4D4" diff --git a/themes/ocean-night.yaml b/themes/ocean-night.yaml index 59ff779d..dff5f281 100644 --- a/themes/ocean-night.yaml +++ b/themes/ocean-night.yaml @@ -8,6 +8,7 @@ source: author: "Kayden Ireland" repo: "https://github.com/kaydenireland/vs-kiki" url: "https://marketplace.visualstudio.com/items?itemName=KaydenIreland.kiki-themes" + formats: null colors: bg: "#1E272E" fg: "#E8F5F7" diff --git a/themes/ocean-theme.yaml b/themes/ocean-theme.yaml index 9562dd53..225f8dbb 100644 --- a/themes/ocean-theme.yaml +++ b/themes/ocean-theme.yaml @@ -1,52 +1,53 @@ -name: "Ocean-theme" +name: "Ocean Theme" source: - marketplace_id: "NathanHermes.dark-ocean-theme" - version: "0.0.0" - installs: 494 + marketplace_id: "Sent2Dev.ocean-theme" + version: "1.0.0" + installs: 233 rating: 0 ratings: 0 - author: "NathanHermes" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=NathanHermes.dark-ocean-theme" + author: "Sent2Dev" + repo: "https://github.com/Sent2Dev/ocean-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Sent2Dev.ocean-theme" + formats: null colors: - bg: "#131622" - fg: "#8F93A2" + bg: "#005486" + fg: "#00DBFF" black: "#000000" - red: "#E25822" - green: "#14B37D" - yellow: "#F2F27A" - blue: "#3A75C4" - magenta: "#703FAF" - cyan: "#87D3F8" - white: "#F3EFE0" - brightBlack: "#FFFFFF" - brightRed: "#E25822" - brightGreen: "#14B37D" - brightYellow: "#F2F27A" - brightBlue: "#3A75C4" - brightMagenta: "#703FAF" - brightCyan: "#87D3F8" - brightWhite: "#FFFFFF" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#ADADAD" meta: mode: "dark" - accent: "orange" - hue: 273 + accent: "pink" + hue: 245 pair: null contrast: - fg: 43.3 - black: 0 - red: 36.9 - green: 49.1 - yellow: 94.5 - blue: 28.7 - magenta: 17.4 - cyan: 73.2 - white: 96.3 - brightBlack: 106.9 - brightRed: 36.9 - brightGreen: 49.1 - brightYellow: 94.5 - brightBlue: 28.7 - brightMagenta: 17.4 - brightCyan: 73.2 - brightWhite: 106.9 + fg: 58.3 + black: 16.7 + red: 11.8 + green: 38.1 + yellow: 70.7 + blue: 12.5 + magenta: 14.9 + cyan: 32.7 + white: 75.1 + brightBlack: 0 + brightRed: 23.7 + brightGreen: 48.6 + brightYellow: 80.7 + brightBlue: 25.1 + brightMagenta: 30.5 + brightCyan: 40.5 + brightWhite: 42 diff --git a/themes/ocean.yaml b/themes/ocean.yaml index c637bb35..4df7c53e 100644 --- a/themes/ocean.yaml +++ b/themes/ocean.yaml @@ -1,52 +1,53 @@ name: "Ocean" source: - marketplace_id: "Sent2Dev.ocean-theme" - version: "1.0.0" - installs: 233 + marketplace_id: "cluzier.ocean" + version: "0.0.1" + installs: 13556 rating: 0 ratings: 0 - author: "Sent2Dev" - repo: "https://github.com/Sent2Dev/ocean-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Sent2Dev.ocean-theme" + author: "Conner Luzier" + repo: "https://github.com/cluzier/Ocean" + url: "https://marketplace.visualstudio.com/items?itemName=cluzier.ocean" + formats: null colors: - bg: "#005486" - fg: "#00DBFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#ADADAD" + bg: "#24305E" + fg: "#A2AABC" + black: "#2F3B54" + red: "#F76C6C" + green: "#BAE67E" + yellow: "#F8E9A1" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#F76C6C" + brightGreen: "#BAE67E" + brightYellow: "#F8E9A1" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" meta: mode: "dark" - accent: "pink" - hue: 245 + accent: "orange" + hue: 270 pair: null contrast: - fg: 58.3 - black: 16.7 - red: 11.8 - green: 38.1 - yellow: 70.7 - blue: 12.5 - magenta: 14.9 - cyan: 32.7 - white: 75.1 + fg: 50.1 + black: 0 + red: 41.6 + green: 76.9 + yellow: 87.1 + blue: 62.8 + magenta: 56.3 + cyan: 62.8 + white: 50.1 brightBlack: 0 - brightRed: 23.7 - brightGreen: 48.6 - brightYellow: 80.7 - brightBlue: 25.1 - brightMagenta: 30.5 - brightCyan: 40.5 - brightWhite: 42 + brightRed: 41.6 + brightGreen: 76.9 + brightYellow: 87.1 + brightBlue: 62.8 + brightMagenta: 56.3 + brightCyan: 62.8 + brightWhite: 50.1 diff --git a/themes/oceana.yaml b/themes/oceana.yaml index 76afd76f..0e123d87 100644 --- a/themes/oceana.yaml +++ b/themes/oceana.yaml @@ -8,6 +8,7 @@ source: author: "marzeq" repo: "https://github.com/marzeq/oceana" url: "https://marketplace.visualstudio.com/items?itemName=marzeq.oceana" + formats: null colors: bg: "#102424" fg: "#D4D4D4" diff --git a/themes/oceanic-gradient.yaml b/themes/oceanic-gradient.yaml deleted file mode 100644 index 1b2cc848..00000000 --- a/themes/oceanic-gradient.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Oceanic-Gradient" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#020231" - fg: "#CDF1F9" - black: "#020231" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#CDF1F9" - magenta: "#CDF1F9" - cyan: "#29C3A0" - white: "#CDF1F9" - brightBlack: "#020231" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#CDF1F9" - brightMagenta: "#CDF1F9" - brightCyan: "#29C3A0" - brightWhite: "#CDF1F9" -meta: - mode: "dark" - accent: "yellow" - hue: 268 - pair: null - contrast: - fg: 94.1 - black: 0 - red: 9.9 - green: 58.2 - yellow: 52.2 - blue: 94.1 - magenta: 94.1 - cyan: 58.2 - white: 94.1 - brightBlack: 0 - brightRed: 9.9 - brightGreen: 58.2 - brightYellow: 52.2 - brightBlue: 94.1 - brightMagenta: 94.1 - brightCyan: 58.2 - brightWhite: 94.1 diff --git a/themes/oceanic-primal-color-theme.yaml b/themes/oceanic-primal-color-theme.yaml index f62b7cec..522de290 100644 --- a/themes/oceanic-primal-color-theme.yaml +++ b/themes/oceanic-primal-color-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "barlog-m.oceanic-primal-color-theme" version: "0.0.4" installs: 297 + rating: 0 + ratings: 0 author: "Barlog M." repo: "https://github.com/barlog-m/oceanic-primal-visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=barlog-m.oceanic-primal-color-theme" + formats: null colors: bg: "#1B2B34" fg: "#CDD3DE" diff --git a/themes/oceanic-solitude.yaml b/themes/oceanic-solitude.yaml index 6d5c938b..2939109d 100644 --- a/themes/oceanic-solitude.yaml +++ b/themes/oceanic-solitude.yaml @@ -8,6 +8,7 @@ source: author: "Delfim Celestino" repo: "https://github.com/DelfimCelestino/oceanic-solitude" url: "https://marketplace.visualstudio.com/items?itemName=DelfimCelestino.oceanic-solitude" + formats: null colors: bg: "#1E293B" fg: "#94A3B8" diff --git a/themes/oceanic-sunset.yaml b/themes/oceanic-sunset.yaml deleted file mode 100644 index 9526c379..00000000 --- a/themes/oceanic-sunset.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Oceanic-Sunset" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#011D23" - fg: "#EDF1F2" - black: "#011D23" - red: "#7C1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#F26389" - magenta: "#F26389" - cyan: "#29C3A0" - white: "#EDF1F2" - brightBlack: "#011D23" - brightRed: "#7C1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#F26389" - brightMagenta: "#F26389" - brightCyan: "#29C3A0" - brightWhite: "#EDF1F2" -meta: - mode: "dark" - accent: "red" - hue: 214 - pair: null - contrast: - fg: 96.8 - black: 0 - red: 8.4 - green: 57.2 - yellow: 51.3 - blue: 44 - magenta: 44 - cyan: 57.2 - white: 96.8 - brightBlack: 0 - brightRed: 8.4 - brightGreen: 57.2 - brightYellow: 51.3 - brightBlue: 44 - brightMagenta: 44 - brightCyan: 57.2 - brightWhite: 96.8 diff --git a/themes/oceanic-wind-cool.yaml b/themes/oceanic-wind-cool.yaml index 8e91e6f0..d95ee871 100644 --- a/themes/oceanic-wind-cool.yaml +++ b/themes/oceanic-wind-cool.yaml @@ -8,6 +8,7 @@ source: author: "Javier Fernández" repo: "https://github.com/javifm86/oceanic-wind" url: "https://marketplace.visualstudio.com/items?itemName=javifm.oceanic-wind" + formats: null colors: bg: "#1E293B" fg: "#E2E8F0" diff --git a/themes/oceanic-wind-warm.yaml b/themes/oceanic-wind-warm.yaml index 6f71aa3d..cb2bd6af 100644 --- a/themes/oceanic-wind-warm.yaml +++ b/themes/oceanic-wind-warm.yaml @@ -8,6 +8,7 @@ source: author: "Javier Fernández" repo: "https://github.com/javifm86/oceanic-wind" url: "https://marketplace.visualstudio.com/items?itemName=javifm.oceanic-wind" + formats: null colors: bg: "#292524" fg: "#E2E8F0" diff --git a/themes/oceanic-wind.yaml b/themes/oceanic-wind.yaml index 605a1bc5..ec39d7bc 100644 --- a/themes/oceanic-wind.yaml +++ b/themes/oceanic-wind.yaml @@ -8,6 +8,7 @@ source: author: "Javier Fernández" repo: "https://github.com/javifm86/oceanic-wind" url: "https://marketplace.visualstudio.com/items?itemName=javifm.oceanic-wind" + formats: null colors: bg: "#27272A" fg: "#E2E8F0" diff --git a/themes/oceans-of-andromeda.yaml b/themes/oceans-of-andromeda.yaml index 8aca99f4..3dd4c393 100644 --- a/themes/oceans-of-andromeda.yaml +++ b/themes/oceans-of-andromeda.yaml @@ -8,6 +8,7 @@ source: author: "Sampan Verma" repo: "https://github.com/samlovescoding/oceans-of-andromeda" url: "https://marketplace.visualstudio.com/items?itemName=samlovescoding.oceans-of-andromeda" + formats: null colors: bg: "#111D1E" fg: "#639CAA" diff --git a/themes/ochre-dark-midnight.yaml b/themes/ochre-dark-midnight.yaml index 5f95b929..d2f33396 100644 --- a/themes/ochre-dark-midnight.yaml +++ b/themes/ochre-dark-midnight.yaml @@ -8,6 +8,7 @@ source: author: "ochre-crafts" repo: "https://github.com/ochre-crafts/ochre-theme" url: "https://marketplace.visualstudio.com/items?itemName=ochre-crafts.ochre" + formats: null colors: bg: "#0A0A0A" fg: "#F5F5F5" diff --git a/themes/ochre-dark.yaml b/themes/ochre-dark.yaml index fe0f7bc8..10b27697 100644 --- a/themes/ochre-dark.yaml +++ b/themes/ochre-dark.yaml @@ -8,6 +8,7 @@ source: author: "ochre-crafts" repo: "https://github.com/ochre-crafts/ochre-theme" url: "https://marketplace.visualstudio.com/items?itemName=ochre-crafts.ochre" + formats: null colors: bg: "#171717" fg: "#F5F5F5" diff --git a/themes/ochre-light-snow.yaml b/themes/ochre-light-snow.yaml index dac5c0c4..e594ede0 100644 --- a/themes/ochre-light-snow.yaml +++ b/themes/ochre-light-snow.yaml @@ -8,6 +8,7 @@ source: author: "ochre-crafts" repo: "https://github.com/ochre-crafts/ochre-theme" url: "https://marketplace.visualstudio.com/items?itemName=ochre-crafts.ochre" + formats: null colors: bg: "#FAFAFA" fg: "#171717" diff --git a/themes/ochre-light.yaml b/themes/ochre-light.yaml index c328af21..726d31e1 100644 --- a/themes/ochre-light.yaml +++ b/themes/ochre-light.yaml @@ -8,6 +8,7 @@ source: author: "ochre-crafts" repo: "https://github.com/ochre-crafts/ochre-theme" url: "https://marketplace.visualstudio.com/items?itemName=ochre-crafts.ochre" + formats: null colors: bg: "#F5EDE0" fg: "#2C1F10" diff --git a/themes/octalide.yaml b/themes/octalide.yaml index 892d5678..118f67d0 100644 --- a/themes/octalide.yaml +++ b/themes/octalide.yaml @@ -8,6 +8,7 @@ source: author: "octalide" repo: "https://github.com/octalide/octalide-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=octalide.octalide-color-theme" + formats: null colors: bg: "#000000" fg: "#BBBBBB" diff --git a/themes/octo-dark-one.yaml b/themes/octo-dark-one.yaml index 8eec51a9..87a4bcd3 100644 --- a/themes/octo-dark-one.yaml +++ b/themes/octo-dark-one.yaml @@ -8,6 +8,7 @@ source: author: "avalynndev" repo: "https://github.com/uzukidev/octo-theme" url: "https://marketplace.visualstudio.com/items?itemName=avalynndev.octo-theme" + formats: null colors: bg: "#282C34" fg: "#D4D4D4" diff --git a/themes/octo-light.yaml b/themes/octo-light.yaml index fdb8b007..97e00fba 100644 --- a/themes/octo-light.yaml +++ b/themes/octo-light.yaml @@ -8,6 +8,7 @@ source: author: "avalynndev" repo: "https://github.com/uzukidev/octo-theme" url: "https://marketplace.visualstudio.com/items?itemName=avalynndev.octo-theme" + formats: null colors: bg: "#F6F6F6" fg: "#000000" diff --git a/themes/octopus-theme.yaml b/themes/octopus-theme.yaml index ec4514fb..4399c1a8 100644 --- a/themes/octopus-theme.yaml +++ b/themes/octopus-theme.yaml @@ -1,4 +1,4 @@ -name: "Octopus theme" +name: "Octopus Theme" source: marketplace_id: "DiamondRaft1575.octopus-theme" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "DiamondRaft1575" repo: "https://github.com/PythonRaft1575/Octopus-Theme" url: "https://marketplace.visualstudio.com/items?itemName=DiamondRaft1575.octopus-theme" + formats: null colors: bg: "#0D1E34" fg: "#D4D4D4" diff --git a/themes/odyssey-night.yaml b/themes/odyssey-night.yaml index b2fd3e19..9f0b4d65 100644 --- a/themes/odyssey-night.yaml +++ b/themes/odyssey-night.yaml @@ -8,6 +8,7 @@ source: author: "odese" repo: "https://github.com/odese/odyssey-night" url: "https://marketplace.visualstudio.com/items?itemName=odese.odyssey-night" + formats: null colors: bg: "#13141C" fg: "#D7DAE0" diff --git a/themes/office-dark.yaml b/themes/office-dark.yaml deleted file mode 100644 index c6408480..00000000 --- a/themes/office-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Office Dark" -source: - marketplace_id: "PowerTech.powerthemes" - version: "23.1.31" - installs: 6961 - rating: 0 - ratings: 0 - author: "PowerTech" - repo: "https://github.com/powertech-center/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=PowerTech.powerthemes" -colors: - bg: "#262626" - fg: "#F6F6F6" - black: "#000000" - red: "#ED7D31" - green: "#70AD47" - yellow: "#FFC000" - blue: "#4472C4" - magenta: "#8064A2" - cyan: "#5B9BD5" - white: "#F6F6F6" - brightBlack: "#A5A5A5" - brightRed: "#F4B183" - brightGreen: "#A8D08D" - brightYellow: "#FFD965" - brightBlue: "#8EAADB" - brightMagenta: "#B2A1C7" - brightCyan: "#9CC3E5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: "Office Light" - contrast: - fg: 98.9 - black: 0 - red: 45.8 - green: 46.5 - yellow: 71.7 - blue: 26.1 - magenta: 24.6 - cyan: 42.7 - white: 98.9 - brightBlack: 50.4 - brightRed: 65.3 - brightGreen: 68.1 - brightYellow: 82.7 - brightBlue: 52.6 - brightMagenta: 52 - brightCyan: 64.7 - brightWhite: 104.8 diff --git a/themes/office-light.yaml b/themes/office-light.yaml deleted file mode 100644 index 6c7c80f6..00000000 --- a/themes/office-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Office Light" -source: - marketplace_id: "PowerTech.powerthemes" - version: "23.1.31" - installs: 6961 - rating: 0 - ratings: 0 - author: "PowerTech" - repo: "https://github.com/powertech-center/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=PowerTech.powerthemes" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#F4B183" - green: "#A8D08D" - yellow: "#FFD965" - blue: "#8EAADB" - magenta: "#B2A1C7" - cyan: "#9CC3E5" - white: "#A5A5A5" - brightBlack: "#808080" - brightRed: "#ED7D31" - brightGreen: "#70AD47" - brightYellow: "#FFC000" - brightBlue: "#4472C4" - brightMagenta: "#8064A2" - brightCyan: "#5B9BD5" - brightWhite: "#C9C9C9" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: "Office Dark" - contrast: - fg: 106 - black: 106 - red: 34.2 - green: 31.6 - yellow: 17.8 - blue: 46.4 - magenta: 46.9 - cyan: 34.8 - white: 48.5 - brightBlack: 66.9 - brightRed: 52.9 - brightGreen: 52.3 - brightYellow: 28.2 - brightBlue: 72.5 - brightMagenta: 74 - brightCyan: 56 - brightWhite: 29 diff --git a/themes/office-paper.yaml b/themes/office-paper.yaml deleted file mode 100644 index cfa0277f..00000000 --- a/themes/office-paper.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Office-Paper" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#0F182B" - fg: "#E4E8EF" - black: "#0F182B" - red: "#F14444" - green: "#29C3A0" - yellow: "#D29922" - blue: "#818CF9" - magenta: "#818CF9" - cyan: "#29C3A0" - white: "#E4E8EF" - brightBlack: "#0F182B" - brightRed: "#F14444" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#818CF9" - brightMagenta: "#818CF9" - brightCyan: "#29C3A0" - brightWhite: "#E4E8EF" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 91.5 - black: 0 - red: 37.1 - green: 57.5 - yellow: 51.5 - blue: 44.4 - magenta: 44.4 - cyan: 57.5 - white: 91.5 - brightBlack: 0 - brightRed: 37.1 - brightGreen: 57.5 - brightYellow: 51.5 - brightBlue: 44.4 - brightMagenta: 44.4 - brightCyan: 57.5 - brightWhite: 91.5 diff --git a/themes/ogone.yaml b/themes/ogone.yaml index 2c41e23b..a73b5891 100644 --- a/themes/ogone.yaml +++ b/themes/ogone.yaml @@ -8,6 +8,7 @@ source: author: "Rudy Alula" repo: "https://github.com/SRNV/Otone" url: "https://marketplace.visualstudio.com/items?itemName=SRNV.otone" + formats: null colors: bg: "#1A181D" fg: "#C4C4C4" diff --git a/themes/oh-dark-pro.yaml b/themes/oh-dark-pro.yaml index f61c7ca9..41af748b 100644 --- a/themes/oh-dark-pro.yaml +++ b/themes/oh-dark-pro.yaml @@ -8,6 +8,7 @@ source: author: "Cassio Maciel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=CassioMaciel.ohdark" + formats: null colors: bg: "#141416" fg: "#ABB2BF" diff --git a/themes/ohiostate-fork.yaml b/themes/ohiostate-fork.yaml index 94922942..ba3d7f30 100644 --- a/themes/ohiostate-fork.yaml +++ b/themes/ohiostate-fork.yaml @@ -8,6 +8,7 @@ source: author: "KynardCorp" repo: null url: "https://marketplace.visualstudio.com/items?itemName=KynardCorp.my-custom-theme" + formats: null colors: bg: "#480018" fg: "#5C5C5C" diff --git a/themes/ohled-aliceblue.yaml b/themes/ohled-aliceblue.yaml deleted file mode 100644 index 48212d48..00000000 --- a/themes/ohled-aliceblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_AliceBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#F0F8FF" - black: "#F0F8FF" - red: "#B0B6BB" - green: "#C0C6CC" - yellow: "#909599" - blue: "#E0E7EE" - magenta: "#D0D7DD" - cyan: "#A0A5AA" - white: "#808488" - brightBlack: "#F0F8FF" - brightRed: "#B0B6BB" - brightGreen: "#C0C6CC" - brightYellow: "#909599" - brightBlue: "#E0E7EE" - brightMagenta: "#D0D7DD" - brightCyan: "#A0A5AA" - brightWhite: "#808488" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 102.5 - black: 102.5 - red: 62.4 - green: 71.6 - yellow: 44.8 - blue: 91.7 - magenta: 81.7 - cyan: 53.2 - white: 36.4 - brightBlack: 102.5 - brightRed: 62.4 - brightGreen: 71.6 - brightYellow: 44.8 - brightBlue: 91.7 - brightMagenta: 81.7 - brightCyan: 53.2 - brightWhite: 36.4 diff --git a/themes/ohled-antiquewhite.yaml b/themes/ohled-antiquewhite.yaml deleted file mode 100644 index b26b7672..00000000 --- a/themes/ohled-antiquewhite.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_AntiqueWhite" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FAEBD7" - black: "#FAEBD7" - red: "#B7AC9E" - green: "#C8BCAC" - yellow: "#968D81" - blue: "#E9DBC9" - magenta: "#D9CCBA" - cyan: "#A79D8F" - white: "#857D73" - brightBlack: "#FAEBD7" - brightRed: "#B7AC9E" - brightGreen: "#C8BCAC" - brightYellow: "#968D81" - brightBlue: "#E9DBC9" - brightMagenta: "#D9CCBA" - brightCyan: "#A79D8F" - brightWhite: "#857D73" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 96.1 - black: 96.1 - red: 58.2 - green: 67.2 - yellow: 41.7 - blue: 85.9 - magenta: 76.7 - cyan: 49.9 - white: 33.9 - brightBlack: 96.1 - brightRed: 58.2 - brightGreen: 67.2 - brightYellow: 41.7 - brightBlue: 85.9 - brightMagenta: 76.7 - brightCyan: 49.9 - brightWhite: 33.9 diff --git a/themes/ohled-aquamarine.yaml b/themes/ohled-aquamarine.yaml deleted file mode 100644 index 4fe77373..00000000 --- a/themes/ohled-aquamarine.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_AquaMarine" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#7FFFD4" - black: "#7FFFD4" - red: "#5DBB9B" - green: "#66CCAA" - yellow: "#4C997F" - blue: "#77EEC6" - magenta: "#6EDDB8" - cyan: "#55AA8D" - white: "#448871" - brightBlack: "#7FFFD4" - brightRed: "#5DBB9B" - brightGreen: "#66CCAA" - brightYellow: "#4C997F" - brightBlue: "#77EEC6" - brightMagenta: "#6EDDB8" - brightCyan: "#55AA8D" - brightWhite: "#448871" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 93.3 - black: 93.3 - red: 56.5 - green: 65.2 - yellow: 40.3 - blue: 83.6 - magenta: 74.2 - cyan: 48.2 - white: 32.9 - brightBlack: 93.3 - brightRed: 56.5 - brightGreen: 65.2 - brightYellow: 40.3 - brightBlue: 83.6 - brightMagenta: 74.2 - brightCyan: 48.2 - brightWhite: 32.9 diff --git a/themes/ohled-azure.yaml b/themes/ohled-azure.yaml deleted file mode 100644 index 7f49d48a..00000000 --- a/themes/ohled-azure.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Azure" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#F0FFFF" - black: "#F0FFFF" - red: "#B0BBBB" - green: "#C0CCCC" - yellow: "#909999" - blue: "#E0EEEE" - magenta: "#D0DDDD" - cyan: "#A0AAAA" - white: "#808888" - brightBlack: "#F0FFFF" - brightRed: "#B0BBBB" - brightGreen: "#C0CCCC" - brightYellow: "#909999" - brightBlue: "#E0EEEE" - brightMagenta: "#D0DDDD" - brightCyan: "#A0AAAA" - brightWhite: "#808888" -meta: - mode: "dark" - accent: "cyan" - hue: null - pair: null - contrast: - fg: 105.8 - black: 105.8 - red: 64.5 - green: 74.2 - yellow: 46.2 - blue: 94.9 - magenta: 84.4 - cyan: 55.1 - white: 37.8 - brightBlack: 105.8 - brightRed: 64.5 - brightGreen: 74.2 - brightYellow: 46.2 - brightBlue: 94.9 - brightMagenta: 84.4 - brightCyan: 55.1 - brightWhite: 37.8 diff --git a/themes/ohled-beige.yaml b/themes/ohled-beige.yaml deleted file mode 100644 index 547dfd4a..00000000 --- a/themes/ohled-beige.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Beige" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#F5F5DC" - black: "#F5F5DC" - red: "#B4B4A1" - green: "#C4C4B0" - yellow: "#939384" - blue: "#E5E5CD" - magenta: "#D4D4BF" - cyan: "#A3A393" - white: "#838375" - brightBlack: "#F5F5DC" - brightRed: "#B4B4A1" - brightGreen: "#C4C4B0" - brightYellow: "#939384" - brightBlue: "#E5E5CD" - brightMagenta: "#D4D4BF" - brightCyan: "#A3A393" - brightWhite: "#838375" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 100.2 - black: 100.2 - red: 61.1 - green: 70.2 - yellow: 43.6 - blue: 90 - magenta: 79.6 - cyan: 51.9 - white: 35.7 - brightBlack: 100.2 - brightRed: 61.1 - brightGreen: 70.2 - brightYellow: 43.6 - brightBlue: 90 - brightMagenta: 79.6 - brightCyan: 51.9 - brightWhite: 35.7 diff --git a/themes/ohled-bisque.yaml b/themes/ohled-bisque.yaml deleted file mode 100644 index 3dfd08c8..00000000 --- a/themes/ohled-bisque.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Bisque" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFE4C4" - black: "#FFE4C4" - red: "#BBA790" - green: "#CCB69D" - yellow: "#998976" - blue: "#EED5B7" - magenta: "#DDC6AA" - cyan: "#AA9883" - white: "#887A69" - brightBlack: "#FFE4C4" - brightRed: "#BBA790" - brightGreen: "#CCB69D" - brightYellow: "#998976" - brightBlue: "#EED5B7" - brightMagenta: "#DDC6AA" - brightCyan: "#AA9883" - brightWhite: "#887A69" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 93 - black: 93 - red: 56.3 - green: 64.8 - yellow: 40.3 - blue: 83.4 - magenta: 74.1 - cyan: 48.1 - white: 32.9 - brightBlack: 93 - brightRed: 56.3 - brightGreen: 64.8 - brightYellow: 40.3 - brightBlue: 83.4 - brightMagenta: 74.1 - brightCyan: 48.1 - brightWhite: 32.9 diff --git a/themes/ohled-blanchedalmond.yaml b/themes/ohled-blanchedalmond.yaml deleted file mode 100644 index 55755f1d..00000000 --- a/themes/ohled-blanchedalmond.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_BlanchedAlmond" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFEBCD" - black: "#FFEBCD" - red: "#BBAC96" - green: "#CCBCA4" - yellow: "#998D7B" - blue: "#EEDBBF" - magenta: "#DDCCB2" - cyan: "#AA9D89" - white: "#887D6D" - brightBlack: "#FFEBCD" - brightRed: "#BBAC96" - brightGreen: "#CCBCA4" - brightYellow: "#998D7B" - brightBlue: "#EEDBBF" - brightMagenta: "#DDCCB2" - brightCyan: "#AA9D89" - brightWhite: "#887D6D" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 96.5 - black: 96.5 - red: 58.4 - green: 67.5 - yellow: 41.8 - blue: 86.3 - magenta: 76.9 - cyan: 50.1 - white: 34 - brightBlack: 96.5 - brightRed: 58.4 - brightGreen: 67.5 - brightYellow: 41.8 - brightBlue: 86.3 - brightMagenta: 76.9 - brightCyan: 50.1 - brightWhite: 34 diff --git a/themes/ohled-blue.yaml b/themes/ohled-blue.yaml deleted file mode 100644 index 9de2074c..00000000 --- a/themes/ohled-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Blue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#5E5EFF" - black: "#5E5EFF" - red: "#4545BB" - green: "#4B4BCC" - yellow: "#383899" - blue: "#5858EE" - magenta: "#5151DD" - cyan: "#3F3FAA" - white: "#323288" - brightBlack: "#5E5EFF" - brightRed: "#4545BB" - brightGreen: "#4B4BCC" - brightYellow: "#383899" - brightBlue: "#5858EE" - brightMagenta: "#5151DD" - brightCyan: "#3F3FAA" - brightWhite: "#323288" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 30 - black: 30 - red: 16.7 - green: 19.8 - yellow: 10.7 - blue: 26.6 - magenta: 23 - cyan: 13.7 - white: 8 - brightBlack: 30 - brightRed: 16.7 - brightGreen: 19.8 - brightYellow: 10.7 - brightBlue: 26.6 - brightMagenta: 23 - brightCyan: 13.7 - brightWhite: 8 diff --git a/themes/ohled-blueviolet.yaml b/themes/ohled-blueviolet.yaml deleted file mode 100644 index 207959ed..00000000 --- a/themes/ohled-blueviolet.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_BlueViolet" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#964DE8" - black: "#964DE8" - red: "#6E38AA" - green: "#783EBA" - yellow: "#5A2E8B" - blue: "#8C48D9" - magenta: "#8243C9" - cyan: "#64339B" - white: "#50297C" - brightBlack: "#964DE8" - brightRed: "#6E38AA" - brightGreen: "#783EBA" - brightYellow: "#5A2E8B" - brightBlue: "#8C48D9" - brightMagenta: "#8243C9" - brightCyan: "#64339B" - brightWhite: "#50297C" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 30.1 - black: 30.1 - red: 16.6 - green: 20 - yellow: 10.8 - blue: 26.6 - magenta: 23.2 - cyan: 13.7 - white: 8.1 - brightBlack: 30.1 - brightRed: 16.6 - brightGreen: 20 - brightYellow: 10.8 - brightBlue: 26.6 - brightMagenta: 23.2 - brightCyan: 13.7 - brightWhite: 8.1 diff --git a/themes/ohled-brown.yaml b/themes/ohled-brown.yaml deleted file mode 100644 index 18ca96ef..00000000 --- a/themes/ohled-brown.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Brown" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#B45959" - black: "#B45959" - red: "#844141" - green: "#904747" - yellow: "#6C3535" - blue: "#A85353" - magenta: "#9C4D4D" - cyan: "#783B3B" - white: "#602F2F" - brightBlack: "#B45959" - brightRed: "#844141" - brightGreen: "#904747" - brightYellow: "#6C3535" - brightBlue: "#A85353" - brightMagenta: "#9C4D4D" - brightCyan: "#783B3B" - brightWhite: "#602F2F" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 29.8 - black: 29.8 - red: 16.5 - green: 19.6 - yellow: 10.6 - blue: 26.3 - magenta: 22.9 - cyan: 13.5 - white: 7.9 - brightBlack: 29.8 - brightRed: 16.5 - brightGreen: 19.6 - brightYellow: 10.6 - brightBlue: 26.3 - brightMagenta: 22.9 - brightCyan: 13.5 - brightWhite: 7.9 diff --git a/themes/ohled-burlywood.yaml b/themes/ohled-burlywood.yaml deleted file mode 100644 index d3a6d676..00000000 --- a/themes/ohled-burlywood.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_BurlyWood" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#DEB887" - black: "#DEB887" - red: "#A38763" - green: "#B2936C" - yellow: "#856E51" - blue: "#CFAC7E" - magenta: "#C09F75" - cyan: "#947B5A" - white: "#766248" - brightBlack: "#DEB887" - brightRed: "#A38763" - brightGreen: "#B2936C" - brightYellow: "#856E51" - brightBlue: "#CFAC7E" - brightMagenta: "#C09F75" - brightCyan: "#947B5A" - brightWhite: "#766248" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 67.6 - black: 67.6 - red: 40.4 - green: 46.8 - yellow: 28.2 - blue: 60.5 - magenta: 53.2 - cyan: 34.3 - white: 22.7 - brightBlack: 67.6 - brightRed: 40.4 - brightGreen: 46.8 - brightYellow: 28.2 - brightBlue: 60.5 - brightMagenta: 53.2 - brightCyan: 34.3 - brightWhite: 22.7 diff --git a/themes/ohled-cadetblue.yaml b/themes/ohled-cadetblue.yaml deleted file mode 100644 index 218ebb8f..00000000 --- a/themes/ohled-cadetblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_CadetBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#5F9EA0" - black: "#5F9EA0" - red: "#467475" - green: "#4C7E80" - yellow: "#395F60" - blue: "#599395" - magenta: "#52898B" - cyan: "#3F696B" - white: "#335455" - brightBlack: "#5F9EA0" - brightRed: "#467475" - brightGreen: "#4C7E80" - brightYellow: "#395F60" - brightBlue: "#599395" - brightMagenta: "#52898B" - brightCyan: "#3F696B" - brightWhite: "#335455" -meta: - mode: "dark" - accent: "cyan" - hue: null - pair: null - contrast: - fg: 44.5 - black: 44.5 - red: 25.9 - green: 30.1 - yellow: 17.6 - blue: 39.4 - magenta: 34.8 - cyan: 21.5 - white: 13.7 - brightBlack: 44.5 - brightRed: 25.9 - brightGreen: 30.1 - brightYellow: 17.6 - brightBlue: 39.4 - brightMagenta: 34.8 - brightCyan: 21.5 - brightWhite: 13.7 diff --git a/themes/ohled-chartreuse.yaml b/themes/ohled-chartreuse.yaml deleted file mode 100644 index 05f6c278..00000000 --- a/themes/ohled-chartreuse.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Chartreuse" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#7FFF00" - black: "#7FFF00" - red: "#5DBB00" - green: "#66CC00" - yellow: "#4C9900" - blue: "#77EE00" - magenta: "#6EDD00" - cyan: "#55AA00" - white: "#448800" - brightBlack: "#7FFF00" - brightRed: "#5DBB00" - brightGreen: "#66CC00" - brightYellow: "#4C9900" - brightBlue: "#77EE00" - brightMagenta: "#6EDD00" - brightCyan: "#55AA00" - brightWhite: "#448800" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 89.7 - black: 89.7 - red: 54.2 - green: 62.6 - yellow: 38.7 - blue: 80.3 - magenta: 71.3 - cyan: 46.3 - white: 31.5 - brightBlack: 89.7 - brightRed: 54.2 - brightGreen: 62.6 - brightYellow: 38.7 - brightBlue: 80.3 - brightMagenta: 71.3 - brightCyan: 46.3 - brightWhite: 31.5 diff --git a/themes/ohled-chocolate.yaml b/themes/ohled-chocolate.yaml deleted file mode 100644 index b3471456..00000000 --- a/themes/ohled-chocolate.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Chocolate" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#D2691E" - black: "#D2691E" - red: "#9A4D16" - green: "#A85418" - yellow: "#7E3F12" - blue: "#C4621C" - magenta: "#B65B1A" - cyan: "#8C4614" - white: "#703810" - brightBlack: "#D2691E" - brightRed: "#9A4D16" - brightGreen: "#A85418" - brightYellow: "#7E3F12" - brightBlue: "#C4621C" - brightMagenta: "#B65B1A" - brightCyan: "#8C4614" - brightWhite: "#703810" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 38.3 - black: 38.3 - red: 21.9 - green: 25.8 - yellow: 14.7 - blue: 34 - magenta: 29.8 - cyan: 18.2 - white: 11.3 - brightBlack: 38.3 - brightRed: 21.9 - brightGreen: 25.8 - brightYellow: 14.7 - brightBlue: 34 - brightMagenta: 29.8 - brightCyan: 18.2 - brightWhite: 11.3 diff --git a/themes/ohled-coral.yaml b/themes/ohled-coral.yaml deleted file mode 100644 index d13538fb..00000000 --- a/themes/ohled-coral.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Coral" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FF7F50" - black: "#FF7F50" - red: "#BB5D3B" - green: "#CC6640" - yellow: "#994C30" - blue: "#EE774B" - magenta: "#DD6E45" - cyan: "#AA5535" - white: "#88442B" - brightBlack: "#FF7F50" - brightRed: "#BB5D3B" - brightGreen: "#CC6640" - brightYellow: "#994C30" - brightBlue: "#EE774B" - brightMagenta: "#DD6E45" - brightCyan: "#AA5535" - brightWhite: "#88442B" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 53.5 - black: 53.5 - red: 31.4 - green: 36.7 - yellow: 21.7 - blue: 47.8 - magenta: 42 - cyan: 26.6 - white: 17.3 - brightBlack: 53.5 - brightRed: 31.4 - brightGreen: 36.7 - brightYellow: 21.7 - brightBlue: 47.8 - brightMagenta: 42 - brightCyan: 26.6 - brightWhite: 17.3 diff --git a/themes/ohled-cornflowerblue.yaml b/themes/ohled-cornflowerblue.yaml deleted file mode 100644 index a14e03a9..00000000 --- a/themes/ohled-cornflowerblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_CornflowerBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#6495ED" - black: "#6495ED" - red: "#496DAE" - green: "#5077BE" - yellow: "#3C598E" - blue: "#5D8BDD" - magenta: "#5781CD" - cyan: "#43639E" - white: "#354F7E" - brightBlack: "#6495ED" - brightRed: "#496DAE" - brightGreen: "#5077BE" - brightYellow: "#3C598E" - brightBlue: "#5D8BDD" - brightMagenta: "#5781CD" - brightCyan: "#43639E" - brightWhite: "#354F7E" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 45.7 - black: 45.7 - red: 26.4 - green: 31 - yellow: 18 - blue: 40.6 - magenta: 35.7 - cyan: 22.1 - white: 14 - brightBlack: 45.7 - brightRed: 26.4 - brightGreen: 31 - brightYellow: 18 - brightBlue: 40.6 - brightMagenta: 35.7 - brightCyan: 22.1 - brightWhite: 14 diff --git a/themes/ohled-cornsilk.yaml b/themes/ohled-cornsilk.yaml deleted file mode 100644 index 0adbd0db..00000000 --- a/themes/ohled-cornsilk.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Cornsilk" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFF8DC" - black: "#FFF8DC" - red: "#BBB6A1" - green: "#CCC6B0" - yellow: "#999584" - blue: "#EEE7CD" - magenta: "#DDD7BF" - cyan: "#AAA593" - white: "#888475" - brightBlack: "#FFF8DC" - brightRed: "#BBB6A1" - brightGreen: "#CCC6B0" - brightYellow: "#999584" - brightBlue: "#EEE7CD" - brightMagenta: "#DDD7BF" - brightCyan: "#AAA593" - brightWhite: "#888475" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 103 - black: 103 - red: 62.7 - green: 72 - yellow: 45 - blue: 92.2 - magenta: 82.1 - cyan: 53.5 - white: 36.6 - brightBlack: 103 - brightRed: 62.7 - brightGreen: 72 - brightYellow: 45 - brightBlue: 92.2 - brightMagenta: 82.1 - brightCyan: 53.5 - brightWhite: 36.6 diff --git a/themes/ohled-crimson.yaml b/themes/ohled-crimson.yaml deleted file mode 100644 index 37c9b53a..00000000 --- a/themes/ohled-crimson.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Crimson" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#DE2946" - black: "#DE2946" - red: "#A31E33" - green: "#B22138" - yellow: "#85192A" - blue: "#CF2641" - magenta: "#C0243D" - cyan: "#941B2F" - white: "#761625" - brightBlack: "#DE2946" - brightRed: "#A31E33" - brightGreen: "#B22138" - brightYellow: "#85192A" - brightBlue: "#CF2641" - brightMagenta: "#C0243D" - brightCyan: "#941B2F" - brightWhite: "#761625" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 31.1 - black: 31.1 - red: 17.4 - green: 20.7 - yellow: 11.3 - blue: 27.4 - magenta: 23.9 - cyan: 14.2 - white: 8.4 - brightBlack: 31.1 - brightRed: 17.4 - brightGreen: 20.7 - brightYellow: 11.3 - brightBlue: 27.4 - brightMagenta: 23.9 - brightCyan: 14.2 - brightWhite: 8.4 diff --git a/themes/ohled-cyan.yaml b/themes/ohled-cyan.yaml deleted file mode 100644 index b207f7cc..00000000 --- a/themes/ohled-cyan.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Cyan" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#00FFFF" - black: "#00FFFF" - red: "#00BBBB" - green: "#00CCCC" - yellow: "#009999" - blue: "#00EEEE" - magenta: "#00DDDD" - cyan: "#00AAAA" - white: "#008888" - brightBlack: "#00FFFF" - brightRed: "#00BBBB" - brightGreen: "#00CCCC" - brightYellow: "#009999" - brightBlue: "#00EEEE" - brightMagenta: "#00DDDD" - brightCyan: "#00AAAA" - brightWhite: "#008888" -meta: - mode: "dark" - accent: "cyan" - hue: null - pair: null - contrast: - fg: 92.2 - black: 92.2 - red: 55.8 - green: 64.4 - yellow: 39.8 - blue: 82.6 - magenta: 73.3 - cyan: 47.6 - white: 32.5 - brightBlack: 92.2 - brightRed: 55.8 - brightGreen: 64.4 - brightYellow: 39.8 - brightBlue: 82.6 - brightMagenta: 73.3 - brightCyan: 47.6 - brightWhite: 32.5 diff --git a/themes/ohled-darkblue.yaml b/themes/ohled-darkblue.yaml deleted file mode 100644 index 8f4f86a2..00000000 --- a/themes/ohled-darkblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#6E6EAD" - black: "#6E6EAD" - red: "#51517F" - green: "#58588A" - yellow: "#424268" - blue: "#6767A1" - magenta: "#5F5F96" - cyan: "#494973" - white: "#3B3B5C" - brightBlack: "#6E6EAD" - brightRed: "#51517F" - brightGreen: "#58588A" - brightYellow: "#424268" - brightBlue: "#6767A1" - brightMagenta: "#5F5F96" - brightCyan: "#494973" - brightWhite: "#3B3B5C" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 29.3 - black: 29.3 - red: 16.3 - green: 19.3 - yellow: 10.5 - blue: 26 - magenta: 22.4 - cyan: 13.1 - white: 7.9 - brightBlack: 29.3 - brightRed: 16.3 - brightGreen: 19.3 - brightYellow: 10.5 - brightBlue: 26 - brightMagenta: 22.4 - brightCyan: 13.1 - brightWhite: 7.9 diff --git a/themes/ohled-darkcyan.yaml b/themes/ohled-darkcyan.yaml deleted file mode 100644 index c984e327..00000000 --- a/themes/ohled-darkcyan.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkCyan" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#008B8B" - black: "#008B8B" - red: "#006666" - green: "#006F6F" - yellow: "#005353" - blue: "#008282" - magenta: "#007878" - cyan: "#005D5D" - white: "#004A4A" - brightBlack: "#008B8B" - brightRed: "#006666" - brightGreen: "#006F6F" - brightYellow: "#005353" - brightBlue: "#008282" - brightMagenta: "#007878" - brightCyan: "#005D5D" - brightWhite: "#004A4A" -meta: - mode: "dark" - accent: "cyan" - hue: null - pair: null - contrast: - fg: 33.7 - black: 33.7 - red: 19 - green: 22.4 - yellow: 12.4 - blue: 30 - magenta: 25.9 - cyan: 15.8 - white: 9.5 - brightBlack: 33.7 - brightRed: 19 - brightGreen: 22.4 - brightYellow: 12.4 - brightBlue: 30 - brightMagenta: 25.9 - brightCyan: 15.8 - brightWhite: 9.5 diff --git a/themes/ohled-darkgoldenrod.yaml b/themes/ohled-darkgoldenrod.yaml deleted file mode 100644 index b9324645..00000000 --- a/themes/ohled-darkgoldenrod.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkGoldenRod" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#B8860B" - black: "#B8860B" - red: "#876208" - green: "#936B09" - yellow: "#6E5007" - blue: "#AC7D0A" - magenta: "#9F740A" - cyan: "#7B5907" - white: "#624706" - brightBlack: "#B8860B" - brightRed: "#876208" - brightGreen: "#936B09" - brightYellow: "#6E5007" - brightBlue: "#AC7D0A" - brightMagenta: "#9F740A" - brightCyan: "#7B5907" - brightWhite: "#624706" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 42.1 - black: 42.1 - red: 24.2 - green: 28.4 - yellow: 16.3 - blue: 37.4 - magenta: 32.8 - cyan: 20.2 - white: 12.7 - brightBlack: 42.1 - brightRed: 24.2 - brightGreen: 28.4 - brightYellow: 16.3 - brightBlue: 37.4 - brightMagenta: 32.8 - brightCyan: 20.2 - brightWhite: 12.7 diff --git a/themes/ohled-darkgray.yaml b/themes/ohled-darkgray.yaml deleted file mode 100644 index 085600cc..00000000 --- a/themes/ohled-darkgray.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkGray" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#A9A9A9" - black: "#A9A9A9" - red: "#7C7C7C" - green: "#878787" - yellow: "#656565" - blue: "#9E9E9E" - magenta: "#929292" - cyan: "#717171" - white: "#5A5A5A" - brightBlack: "#A9A9A9" - brightRed: "#7C7C7C" - brightGreen: "#878787" - brightYellow: "#656565" - brightBlue: "#9E9E9E" - brightMagenta: "#929292" - brightCyan: "#717171" - brightWhite: "#5A5A5A" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 55.7 - black: 55.7 - red: 32.9 - green: 38.1 - yellow: 22.6 - blue: 49.8 - magenta: 43.6 - cyan: 27.8 - white: 18.1 - brightBlack: 55.7 - brightRed: 32.9 - brightGreen: 38.1 - brightYellow: 22.6 - brightBlue: 49.8 - brightMagenta: 43.6 - brightCyan: 27.8 - brightWhite: 18.1 diff --git a/themes/ohled-darkgreen.yaml b/themes/ohled-darkgreen.yaml deleted file mode 100644 index 40ebc30d..00000000 --- a/themes/ohled-darkgreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkGreen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#527F52" - black: "#527F52" - red: "#3C5D3C" - green: "#426642" - yellow: "#314C31" - blue: "#4D774D" - magenta: "#476E47" - cyan: "#375537" - white: "#2C442C" - brightBlack: "#527F52" - brightRed: "#3C5D3C" - brightGreen: "#426642" - brightYellow: "#314C31" - brightBlue: "#4D774D" - brightMagenta: "#476E47" - brightCyan: "#375537" - brightWhite: "#2C442C" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 29.5 - black: 29.5 - red: 16.3 - green: 19.6 - yellow: 10.5 - blue: 26.2 - magenta: 22.6 - cyan: 13.5 - white: 7.9 - brightBlack: 29.5 - brightRed: 16.3 - brightGreen: 19.6 - brightYellow: 10.5 - brightBlue: 26.2 - brightMagenta: 22.6 - brightCyan: 13.5 - brightWhite: 7.9 diff --git a/themes/ohled-darkkhaki.yaml b/themes/ohled-darkkhaki.yaml deleted file mode 100644 index acde3de3..00000000 --- a/themes/ohled-darkkhaki.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkKhaki" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#BDB76B" - black: "#BDB76B" - red: "#8B864E" - green: "#979256" - yellow: "#716E40" - blue: "#B0AB64" - magenta: "#A49F5D" - cyan: "#7E7A47" - white: "#656239" - brightBlack: "#BDB76B" - brightRed: "#8B864E" - brightGreen: "#979256" - brightYellow: "#716E40" - brightBlue: "#B0AB64" - brightMagenta: "#A49F5D" - brightCyan: "#7E7A47" - brightWhite: "#656239" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 61.9 - black: 61.9 - red: 36.7 - green: 42.5 - yellow: 25.7 - blue: 55.3 - magenta: 49.1 - cyan: 31.1 - white: 20.7 - brightBlack: 61.9 - brightRed: 36.7 - brightGreen: 42.5 - brightYellow: 25.7 - brightBlue: 55.3 - brightMagenta: 49.1 - brightCyan: 31.1 - brightWhite: 20.7 diff --git a/themes/ohled-darkmagenta.yaml b/themes/ohled-darkmagenta.yaml deleted file mode 100644 index f7c9c73f..00000000 --- a/themes/ohled-darkmagenta.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkMagenta" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#A25AA2" - black: "#A25AA2" - red: "#774277" - green: "#824882" - yellow: "#613661" - blue: "#975497" - magenta: "#8C4E8C" - cyan: "#6C3C6C" - white: "#563056" - brightBlack: "#A25AA2" - brightRed: "#774277" - brightGreen: "#824882" - brightYellow: "#613661" - brightBlue: "#975497" - brightMagenta: "#8C4E8C" - brightCyan: "#6C3C6C" - brightWhite: "#563056" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 29.7 - black: 29.7 - red: 16.5 - green: 19.7 - yellow: 10.6 - blue: 26.2 - magenta: 22.8 - cyan: 13.5 - white: 7.9 - brightBlack: 29.7 - brightRed: 16.5 - brightGreen: 19.7 - brightYellow: 10.6 - brightBlue: 26.2 - brightMagenta: 22.8 - brightCyan: 13.5 - brightWhite: 7.9 diff --git a/themes/ohled-darkolivegreen.yaml b/themes/ohled-darkolivegreen.yaml deleted file mode 100644 index 9beaafca..00000000 --- a/themes/ohled-darkolivegreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkOliveGreen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#697B4F" - black: "#697B4F" - red: "#4D5A3A" - green: "#54623F" - yellow: "#3F4A2F" - blue: "#62734A" - magenta: "#5B6B44" - cyan: "#465235" - white: "#38422A" - brightBlack: "#697B4F" - brightRed: "#4D5A3A" - brightGreen: "#54623F" - brightYellow: "#3F4A2F" - brightBlue: "#62734A" - brightMagenta: "#5B6B44" - brightCyan: "#465235" - brightWhite: "#38422A" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 29.6 - black: 29.6 - red: 16.3 - green: 19.4 - yellow: 10.6 - blue: 26.2 - magenta: 22.9 - cyan: 13.4 - white: 8 - brightBlack: 29.6 - brightRed: 16.3 - brightGreen: 19.4 - brightYellow: 10.6 - brightBlue: 26.2 - brightMagenta: 22.9 - brightCyan: 13.4 - brightWhite: 8 diff --git a/themes/ohled-darkorange.yaml b/themes/ohled-darkorange.yaml deleted file mode 100644 index 34aa5889..00000000 --- a/themes/ohled-darkorange.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkOrange" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FF8C00" - black: "#FF8C00" - red: "#BB6700" - green: "#CC7000" - yellow: "#995400" - blue: "#EE8300" - magenta: "#DD7900" - cyan: "#AA5D00" - white: "#884B00" - brightBlack: "#FF8C00" - brightRed: "#BB6700" - brightGreen: "#CC7000" - brightYellow: "#995400" - brightBlue: "#EE8300" - brightMagenta: "#DD7900" - brightCyan: "#AA5D00" - brightWhite: "#884B00" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 56.7 - black: 56.7 - red: 33.6 - green: 38.9 - yellow: 23.3 - blue: 50.7 - magenta: 44.5 - cyan: 28.2 - white: 18.6 - brightBlack: 56.7 - brightRed: 33.6 - brightGreen: 38.9 - brightYellow: 23.3 - brightBlue: 50.7 - brightMagenta: 44.5 - brightCyan: 28.2 - brightWhite: 18.6 diff --git a/themes/ohled-darkorchid.yaml b/themes/ohled-darkorchid.yaml deleted file mode 100644 index 6adae3b7..00000000 --- a/themes/ohled-darkorchid.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkOrchid" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#A24DD2" - black: "#A24DD2" - red: "#77389A" - green: "#823EA8" - yellow: "#612E7E" - blue: "#9748C4" - magenta: "#8C43B6" - cyan: "#6C338C" - white: "#562970" - brightBlack: "#A24DD2" - brightRed: "#77389A" - brightGreen: "#823EA8" - brightYellow: "#612E7E" - brightBlue: "#9748C4" - brightMagenta: "#8C43B6" - brightCyan: "#6C338C" - brightWhite: "#562970" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 30.1 - black: 30.1 - red: 16.7 - green: 20 - yellow: 10.8 - blue: 26.6 - magenta: 23.1 - cyan: 13.6 - white: 8 - brightBlack: 30.1 - brightRed: 16.7 - brightGreen: 20 - brightYellow: 10.8 - brightBlue: 26.6 - brightMagenta: 23.1 - brightCyan: 13.6 - brightWhite: 8 diff --git a/themes/ohled-darkred.yaml b/themes/ohled-darkred.yaml deleted file mode 100644 index 30e97fd1..00000000 --- a/themes/ohled-darkred.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkRed" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#A66262" - black: "#A66262" - red: "#7A4848" - green: "#854E4E" - yellow: "#643B3B" - blue: "#9B5B5B" - magenta: "#905555" - cyan: "#6F4141" - white: "#593434" - brightBlack: "#A66262" - brightRed: "#7A4848" - brightGreen: "#854E4E" - brightYellow: "#643B3B" - brightBlue: "#9B5B5B" - brightMagenta: "#905555" - brightCyan: "#6F4141" - brightWhite: "#593434" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 29.8 - black: 29.8 - red: 16.6 - green: 19.6 - yellow: 10.8 - blue: 26.2 - magenta: 23 - cyan: 13.5 - white: 8 - brightBlack: 29.8 - brightRed: 16.6 - brightGreen: 19.6 - brightYellow: 10.8 - brightBlue: 26.2 - brightMagenta: 23 - brightCyan: 13.5 - brightWhite: 8 diff --git a/themes/ohled-darksalmon.yaml b/themes/ohled-darksalmon.yaml deleted file mode 100644 index 90574271..00000000 --- a/themes/ohled-darksalmon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkSalmon" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#E9967A" - black: "#E9967A" - red: "#AB6E59" - green: "#BA7862" - yellow: "#8C5A49" - blue: "#D98C72" - magenta: "#CA826A" - cyan: "#9B6451" - white: "#7C5041" - brightBlack: "#E9967A" - brightRed: "#AB6E59" - brightGreen: "#BA7862" - brightYellow: "#8C5A49" - brightBlue: "#D98C72" - brightMagenta: "#CA826A" - brightCyan: "#9B6451" - brightWhite: "#7C5041" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 56.8 - black: 56.8 - red: 33.6 - green: 39 - yellow: 23.3 - blue: 50.6 - magenta: 44.8 - cyan: 28.3 - white: 18.6 - brightBlack: 56.8 - brightRed: 33.6 - brightGreen: 39 - brightYellow: 23.3 - brightBlue: 50.6 - brightMagenta: 44.8 - brightCyan: 28.3 - brightWhite: 18.6 diff --git a/themes/ohled-darkseagreen.yaml b/themes/ohled-darkseagreen.yaml deleted file mode 100644 index fe3153c8..00000000 --- a/themes/ohled-darkseagreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkSeaGreen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#8FBC8F" - black: "#8FBC8F" - red: "#698A69" - green: "#729672" - yellow: "#567156" - blue: "#85AF85" - magenta: "#7CA37C" - cyan: "#5F7D5F" - white: "#4C644C" - brightBlack: "#8FBC8F" - brightRed: "#698A69" - brightGreen: "#729672" - brightYellow: "#567156" - brightBlue: "#85AF85" - brightMagenta: "#7CA37C" - brightCyan: "#5F7D5F" - brightWhite: "#4C644C" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 60 - black: 60 - red: 35.6 - green: 41.1 - yellow: 24.9 - blue: 53.3 - magenta: 47.3 - cyan: 29.9 - white: 19.7 - brightBlack: 60 - brightRed: 35.6 - brightGreen: 41.1 - brightYellow: 24.9 - brightBlue: 53.3 - brightMagenta: 47.3 - brightCyan: 29.9 - brightWhite: 19.7 diff --git a/themes/ohled-darkslateblue.yaml b/themes/ohled-darkslateblue.yaml deleted file mode 100644 index 919c7cfa..00000000 --- a/themes/ohled-darkslateblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkSlateBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#746EA3" - black: "#746EA3" - red: "#555178" - green: "#5D5882" - yellow: "#464262" - blue: "#6C6798" - magenta: "#655F8D" - cyan: "#4D496D" - white: "#3E3B57" - brightBlack: "#746EA3" - brightRed: "#555178" - brightGreen: "#5D5882" - brightYellow: "#464262" - brightBlue: "#6C6798" - brightMagenta: "#655F8D" - brightCyan: "#4D496D" - brightWhite: "#3E3B57" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 29.3 - black: 29.3 - red: 16.3 - green: 19.3 - yellow: 10.5 - blue: 25.9 - magenta: 22.5 - cyan: 13.2 - white: 7.9 - brightBlack: 29.3 - brightRed: 16.3 - brightGreen: 19.3 - brightYellow: 10.5 - brightBlue: 25.9 - brightMagenta: 22.5 - brightCyan: 13.2 - brightWhite: 7.9 diff --git a/themes/ohled-darkslategray.yaml b/themes/ohled-darkslategray.yaml deleted file mode 100644 index e0cfc915..00000000 --- a/themes/ohled-darkslategray.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkSlateGray" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#677878" - black: "#677878" - red: "#4C5858" - green: "#526060" - yellow: "#3E4848" - blue: "#607070" - magenta: "#596868" - cyan: "#455050" - white: "#374040" - brightBlack: "#677878" - brightRed: "#4C5858" - brightGreen: "#526060" - brightYellow: "#3E4848" - brightBlue: "#607070" - brightMagenta: "#596868" - brightCyan: "#455050" - brightWhite: "#374040" -meta: - mode: "dark" - accent: "cyan" - hue: null - pair: null - contrast: - fg: 29.5 - black: 29.5 - red: 16.4 - green: 19.4 - yellow: 10.6 - blue: 26 - magenta: 22.6 - cyan: 13.4 - white: 7.9 - brightBlack: 29.5 - brightRed: 16.4 - brightGreen: 19.4 - brightYellow: 10.6 - brightBlue: 26 - brightMagenta: 22.6 - brightCyan: 13.4 - brightWhite: 7.9 diff --git a/themes/ohled-darkturquoise.yaml b/themes/ohled-darkturquoise.yaml deleted file mode 100644 index 578c1585..00000000 --- a/themes/ohled-darkturquoise.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkTurquoise" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#00CED1" - black: "#00CED1" - red: "#009799" - green: "#00A5A7" - yellow: "#007C7D" - blue: "#00C0C3" - magenta: "#00B3B5" - cyan: "#00898B" - white: "#006E6F" - brightBlack: "#00CED1" - brightRed: "#009799" - brightGreen: "#00A5A7" - brightYellow: "#007C7D" - brightBlue: "#00C0C3" - brightMagenta: "#00B3B5" - brightCyan: "#00898B" - brightWhite: "#006E6F" -meta: - mode: "dark" - accent: "cyan" - hue: null - pair: null - contrast: - fg: 65.6 - black: 65.6 - red: 39 - green: 45.4 - yellow: 27.5 - blue: 58.5 - magenta: 52 - cyan: 33 - white: 22.1 - brightBlack: 65.6 - brightRed: 39 - brightGreen: 45.4 - brightYellow: 27.5 - brightBlue: 58.5 - brightMagenta: 52 - brightCyan: 33 - brightWhite: 22.1 diff --git a/themes/ohled-darkviolet.yaml b/themes/ohled-darkviolet.yaml deleted file mode 100644 index 7980f11e..00000000 --- a/themes/ohled-darkviolet.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DarkViolet" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#A249DC" - black: "#A249DC" - red: "#7736A1" - green: "#823AB0" - yellow: "#612C84" - blue: "#9744CD" - magenta: "#8C3FBF" - cyan: "#6C3193" - white: "#562775" - brightBlack: "#A249DC" - brightRed: "#7736A1" - brightGreen: "#823AB0" - brightYellow: "#612C84" - brightBlue: "#9744CD" - brightMagenta: "#8C3FBF" - brightCyan: "#6C3193" - brightWhite: "#562775" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 30.2 - black: 30.2 - red: 16.8 - green: 19.9 - yellow: 10.9 - blue: 26.5 - magenta: 23.1 - cyan: 13.8 - white: 8.1 - brightBlack: 30.2 - brightRed: 16.8 - brightGreen: 19.9 - brightYellow: 10.9 - brightBlue: 26.5 - brightMagenta: 23.1 - brightCyan: 13.8 - brightWhite: 8.1 diff --git a/themes/ohled-deeppink.yaml b/themes/ohled-deeppink.yaml deleted file mode 100644 index 3402cdeb..00000000 --- a/themes/ohled-deeppink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DeepPink" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FF1493" - black: "#FF1493" - red: "#BB0F6C" - green: "#CC1076" - yellow: "#990C58" - blue: "#EE1389" - magenta: "#DD117F" - cyan: "#AA0D62" - white: "#880B4E" - brightBlack: "#FF1493" - brightRed: "#BB0F6C" - brightGreen: "#CC1076" - brightYellow: "#990C58" - brightBlue: "#EE1389" - brightMagenta: "#DD117F" - brightCyan: "#AA0D62" - brightWhite: "#880B4E" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 40.1 - black: 40.1 - red: 23.1 - green: 27.1 - yellow: 15.5 - blue: 35.6 - magenta: 31.3 - cyan: 19.2 - white: 12 - brightBlack: 40.1 - brightRed: 23.1 - brightGreen: 27.1 - brightYellow: 15.5 - brightBlue: 35.6 - brightMagenta: 31.3 - brightCyan: 19.2 - brightWhite: 12 diff --git a/themes/ohled-deepskyblue.yaml b/themes/ohled-deepskyblue.yaml deleted file mode 100644 index 7c37c54d..00000000 --- a/themes/ohled-deepskyblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DeepSkyBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#00BFFF" - black: "#00BFFF" - red: "#008CBB" - green: "#0099CC" - yellow: "#007399" - blue: "#00B2EE" - magenta: "#00A6DD" - cyan: "#007FAA" - white: "#006688" - brightBlack: "#00BFFF" - brightRed: "#008CBB" - brightGreen: "#0099CC" - brightYellow: "#007399" - brightBlue: "#00B2EE" - brightMagenta: "#00A6DD" - brightCyan: "#007FAA" - brightWhite: "#006688" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 61.4 - black: 61.4 - red: 36.4 - green: 42.4 - yellow: 25.6 - blue: 54.7 - magenta: 48.6 - cyan: 30.7 - white: 20.4 - brightBlack: 61.4 - brightRed: 36.4 - brightGreen: 42.4 - brightYellow: 25.6 - brightBlue: 54.7 - brightMagenta: 48.6 - brightCyan: 30.7 - brightWhite: 20.4 diff --git a/themes/ohled-dimgray.yaml b/themes/ohled-dimgray.yaml deleted file mode 100644 index 52218705..00000000 --- a/themes/ohled-dimgray.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DimGray" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#747474" - black: "#747474" - red: "#555555" - green: "#5D5D5D" - yellow: "#464646" - blue: "#6C6C6C" - magenta: "#656565" - cyan: "#4D4D4D" - white: "#3E3E3E" - brightBlack: "#747474" - brightRed: "#555555" - brightGreen: "#5D5D5D" - brightYellow: "#464646" - brightBlue: "#6C6C6C" - brightMagenta: "#656565" - brightCyan: "#4D4D4D" - brightWhite: "#3E3E3E" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 29.2 - black: 29.2 - red: 16.1 - green: 19.3 - yellow: 10.5 - blue: 25.6 - magenta: 22.6 - cyan: 13.1 - white: 7.8 - brightBlack: 29.2 - brightRed: 16.1 - brightGreen: 19.3 - brightYellow: 10.5 - brightBlue: 25.6 - brightMagenta: 22.6 - brightCyan: 13.1 - brightWhite: 7.8 diff --git a/themes/ohled-dodgerblue.yaml b/themes/ohled-dodgerblue.yaml deleted file mode 100644 index 67c24de8..00000000 --- a/themes/ohled-dodgerblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_DodgerBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#1E90FF" - black: "#1E90FF" - red: "#166ABB" - green: "#1873CC" - yellow: "#125699" - blue: "#1C86EE" - magenta: "#1A7DDD" - cyan: "#1460AA" - white: "#104D88" - brightBlack: "#1E90FF" - brightRed: "#166ABB" - brightGreen: "#1873CC" - brightYellow: "#125699" - brightBlue: "#1C86EE" - brightMagenta: "#1A7DDD" - brightCyan: "#1460AA" - brightWhite: "#104D88" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 42.7 - black: 42.7 - red: 24.8 - green: 28.9 - yellow: 16.6 - blue: 37.8 - magenta: 33.4 - cyan: 20.6 - white: 13.1 - brightBlack: 42.7 - brightRed: 24.8 - brightGreen: 28.9 - brightYellow: 16.6 - brightBlue: 37.8 - brightMagenta: 33.4 - brightCyan: 20.6 - brightWhite: 13.1 diff --git a/themes/ohled-firebrick.yaml b/themes/ohled-firebrick.yaml deleted file mode 100644 index 54ca59d4..00000000 --- a/themes/ohled-firebrick.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_FireBrick" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#BE5252" - black: "#BE5252" - red: "#8B3C3C" - green: "#984242" - yellow: "#723131" - blue: "#B14D4D" - magenta: "#A54747" - cyan: "#7F3737" - white: "#652C2C" - brightBlack: "#BE5252" - brightRed: "#8B3C3C" - brightGreen: "#984242" - brightYellow: "#723131" - brightBlue: "#B14D4D" - brightMagenta: "#A54747" - brightCyan: "#7F3737" - brightWhite: "#652C2C" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 30 - black: 30 - red: 16.6 - green: 19.9 - yellow: 10.7 - blue: 26.5 - magenta: 23.1 - cyan: 13.8 - white: 8.1 - brightBlack: 30 - brightRed: 16.6 - brightGreen: 19.9 - brightYellow: 10.7 - brightBlue: 26.5 - brightMagenta: 23.1 - brightCyan: 13.8 - brightWhite: 8.1 diff --git a/themes/ohled-forestgreen.yaml b/themes/ohled-forestgreen.yaml deleted file mode 100644 index 783635e0..00000000 --- a/themes/ohled-forestgreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_ForestGreen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#228B22" - black: "#228B22" - red: "#196619" - green: "#1B6F1B" - yellow: "#145314" - blue: "#208220" - magenta: "#1D781D" - cyan: "#175D17" - white: "#124A12" - brightBlack: "#228B22" - brightRed: "#196619" - brightGreen: "#1B6F1B" - brightYellow: "#145314" - brightBlue: "#208220" - brightMagenta: "#1D781D" - brightCyan: "#175D17" - brightWhite: "#124A12" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 31.7 - black: 31.7 - red: 17.8 - green: 21 - yellow: 11.5 - blue: 28.2 - magenta: 24.3 - cyan: 14.7 - white: 8.7 - brightBlack: 31.7 - brightRed: 17.8 - brightGreen: 21 - brightYellow: 11.5 - brightBlue: 28.2 - brightMagenta: 24.3 - brightCyan: 14.7 - brightWhite: 8.7 diff --git a/themes/ohled-gainsboro.yaml b/themes/ohled-gainsboro.yaml deleted file mode 100644 index 9b7f90db..00000000 --- a/themes/ohled-gainsboro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Gainsboro" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#DCDCDC" - black: "#DCDCDC" - red: "#A1A1A1" - green: "#B0B0B0" - yellow: "#848484" - blue: "#CDCDCD" - magenta: "#BFBFBF" - cyan: "#939393" - white: "#757575" - brightBlack: "#DCDCDC" - brightRed: "#A1A1A1" - brightGreen: "#B0B0B0" - brightYellow: "#848484" - brightBlue: "#CDCDCD" - brightMagenta: "#BFBFBF" - brightCyan: "#939393" - brightWhite: "#757575" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 85.4 - black: 85.4 - red: 51.4 - green: 59.5 - yellow: 36.7 - blue: 76.3 - magenta: 68 - cyan: 44.1 - white: 29.6 - brightBlack: 85.4 - brightRed: 51.4 - brightGreen: 59.5 - brightYellow: 36.7 - brightBlue: 76.3 - brightMagenta: 68 - brightCyan: 44.1 - brightWhite: 29.6 diff --git a/themes/ohled-ghostwhite.yaml b/themes/ohled-ghostwhite.yaml deleted file mode 100644 index deb207ce..00000000 --- a/themes/ohled-ghostwhite.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_GhostWhite" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#F8F8FF" - black: "#F8F8FF" - red: "#B6B6BB" - green: "#C6C6CC" - yellow: "#959599" - blue: "#E7E7EE" - magenta: "#D7D7DD" - cyan: "#A5A5AA" - white: "#848488" - brightBlack: "#F8F8FF" - brightRed: "#B6B6BB" - brightGreen: "#C6C6CC" - brightYellow: "#959599" - brightBlue: "#E7E7EE" - brightMagenta: "#D7D7DD" - brightCyan: "#A5A5AA" - brightWhite: "#848488" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 103.6 - black: 103.6 - red: 63.1 - green: 72.4 - yellow: 45.3 - blue: 92.6 - magenta: 82.6 - cyan: 53.7 - white: 36.8 - brightBlack: 103.6 - brightRed: 63.1 - brightGreen: 72.4 - brightYellow: 45.3 - brightBlue: 92.6 - brightMagenta: 82.6 - brightCyan: 53.7 - brightWhite: 36.8 diff --git a/themes/ohled-gold.yaml b/themes/ohled-gold.yaml deleted file mode 100644 index 7c697639..00000000 --- a/themes/ohled-gold.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Gold" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFD700" - black: "#FFD700" - red: "#BB9E00" - green: "#CCAC00" - yellow: "#998100" - blue: "#EEC900" - magenta: "#DDBA00" - cyan: "#AA8F00" - white: "#887300" - brightBlack: "#FFD700" - brightRed: "#BB9E00" - brightGreen: "#CCAC00" - brightYellow: "#998100" - brightBlue: "#EEC900" - brightMagenta: "#DDBA00" - brightCyan: "#AA8F00" - brightWhite: "#887300" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 84.3 - black: 84.3 - red: 51 - green: 58.7 - yellow: 36.1 - blue: 75.6 - magenta: 66.8 - cyan: 43.2 - white: 29.5 - brightBlack: 84.3 - brightRed: 51 - brightGreen: 58.7 - brightYellow: 36.1 - brightBlue: 75.6 - brightMagenta: 66.8 - brightCyan: 43.2 - brightWhite: 29.5 diff --git a/themes/ohled-goldenrod.yaml b/themes/ohled-goldenrod.yaml deleted file mode 100644 index 410a43a9..00000000 --- a/themes/ohled-goldenrod.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_GoldenRod" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#DAA520" - black: "#DAA520" - red: "#A07917" - green: "#AE841A" - yellow: "#836313" - blue: "#CB9A1E" - magenta: "#BD8F1C" - cyan: "#916E15" - white: "#745811" - brightBlack: "#DAA520" - brightRed: "#A07917" - brightGreen: "#AE841A" - brightYellow: "#836313" - brightBlue: "#CB9A1E" - brightMagenta: "#BD8F1C" - brightCyan: "#916E15" - brightWhite: "#745811" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 58.3 - black: 58.3 - red: 34.5 - green: 40 - yellow: 24 - blue: 51.9 - magenta: 45.9 - cyan: 29.1 - white: 19.1 - brightBlack: 58.3 - brightRed: 34.5 - brightGreen: 40 - brightYellow: 24 - brightBlue: 51.9 - brightMagenta: 45.9 - brightCyan: 29.1 - brightWhite: 19.1 diff --git a/themes/ohled-gray.yaml b/themes/ohled-gray.yaml deleted file mode 100644 index 3c4f1b48..00000000 --- a/themes/ohled-gray.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Gray" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#808080" - black: "#808080" - red: "#5E5E5E" - green: "#666666" - yellow: "#4D4D4D" - blue: "#777777" - magenta: "#6F6F6F" - cyan: "#555555" - white: "#444444" - brightBlack: "#808080" - brightRed: "#5E5E5E" - brightGreen: "#666666" - brightYellow: "#4D4D4D" - brightBlue: "#777777" - brightMagenta: "#6F6F6F" - brightCyan: "#555555" - brightWhite: "#444444" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 34.8 - black: 34.8 - red: 19.7 - green: 23 - yellow: 13.1 - blue: 30.6 - magenta: 27 - cyan: 16.1 - white: 9.8 - brightBlack: 34.8 - brightRed: 19.7 - brightGreen: 23 - brightYellow: 13.1 - brightBlue: 30.6 - brightMagenta: 27 - brightCyan: 16.1 - brightWhite: 9.8 diff --git a/themes/ohled-green.yaml b/themes/ohled-green.yaml deleted file mode 100644 index ae601b58..00000000 --- a/themes/ohled-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Green" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#288628" - black: "#288628" - red: "#1D621D" - green: "#206B20" - yellow: "#185018" - blue: "#257D25" - magenta: "#237423" - cyan: "#1B591B" - white: "#154715" - brightBlack: "#288628" - brightRed: "#1D621D" - brightGreen: "#206B20" - brightYellow: "#185018" - brightBlue: "#257D25" - brightMagenta: "#237423" - brightCyan: "#1B591B" - brightWhite: "#154715" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 29.9 - black: 29.9 - red: 16.5 - green: 19.7 - yellow: 10.6 - blue: 26.4 - magenta: 23 - cyan: 13.5 - white: 7.9 - brightBlack: 29.9 - brightRed: 16.5 - brightGreen: 19.7 - brightYellow: 10.6 - brightBlue: 26.4 - brightMagenta: 23 - brightCyan: 13.5 - brightWhite: 7.9 diff --git a/themes/ohled-greenyellow.yaml b/themes/ohled-greenyellow.yaml deleted file mode 100644 index a4e8d6d7..00000000 --- a/themes/ohled-greenyellow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_GreenYellow" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#ADFF2F" - black: "#ADFF2F" - red: "#7FBB22" - green: "#8ACC26" - yellow: "#68991C" - blue: "#A1EE2C" - magenta: "#96DD29" - cyan: "#73AA1F" - white: "#5C8819" - brightBlack: "#ADFF2F" - brightRed: "#7FBB22" - brightGreen: "#8ACC26" - brightYellow: "#68991C" - brightBlue: "#A1EE2C" - brightMagenta: "#96DD29" - brightCyan: "#73AA1F" - brightWhite: "#5C8819" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 93.2 - black: 93.2 - red: 56.5 - green: 65.1 - yellow: 40.3 - blue: 83.4 - magenta: 74.1 - cyan: 48.2 - white: 32.8 - brightBlack: 93.2 - brightRed: 56.5 - brightGreen: 65.1 - brightYellow: 40.3 - brightBlue: 83.4 - brightMagenta: 74.1 - brightCyan: 48.2 - brightWhite: 32.8 diff --git a/themes/ohled-honeydew.yaml b/themes/ohled-honeydew.yaml deleted file mode 100644 index 18f538dd..00000000 --- a/themes/ohled-honeydew.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_HoneyDew" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#F0FFF0" - black: "#F0FFF0" - red: "#B0BBB0" - green: "#C0CCC0" - yellow: "#909990" - blue: "#E0EEE0" - magenta: "#D0DDD0" - cyan: "#A0AAA0" - white: "#808880" - brightBlack: "#F0FFF0" - brightRed: "#B0BBB0" - brightGreen: "#C0CCC0" - brightYellow: "#909990" - brightBlue: "#E0EEE0" - brightMagenta: "#D0DDD0" - brightCyan: "#A0AAA0" - brightWhite: "#808880" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 105.1 - black: 105.1 - red: 64 - green: 73.7 - yellow: 45.9 - blue: 94.3 - magenta: 83.8 - cyan: 54.7 - white: 37.5 - brightBlack: 105.1 - brightRed: 64 - brightGreen: 73.7 - brightYellow: 45.9 - brightBlue: 94.3 - brightMagenta: 83.8 - brightCyan: 54.7 - brightWhite: 37.5 diff --git a/themes/ohled-hotpink.yaml b/themes/ohled-hotpink.yaml deleted file mode 100644 index 966a1d18..00000000 --- a/themes/ohled-hotpink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_HotPink" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FF69B4" - black: "#FF69B4" - red: "#BB4D84" - green: "#CC5490" - yellow: "#993F6C" - blue: "#EE62A8" - magenta: "#DD5B9C" - cyan: "#AA4678" - white: "#883860" - brightBlack: "#FF69B4" - brightRed: "#BB4D84" - brightGreen: "#CC5490" - brightYellow: "#993F6C" - brightBlue: "#EE62A8" - brightMagenta: "#DD5B9C" - brightCyan: "#AA4678" - brightWhite: "#883860" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 51.1 - black: 51.1 - red: 30 - green: 34.9 - yellow: 20.6 - blue: 45.5 - magenta: 40.1 - cyan: 25.2 - white: 16.3 - brightBlack: 51.1 - brightRed: 30 - brightGreen: 34.9 - brightYellow: 20.6 - brightBlue: 45.5 - brightMagenta: 40.1 - brightCyan: 25.2 - brightWhite: 16.3 diff --git a/themes/ohled-indianred.yaml b/themes/ohled-indianred.yaml deleted file mode 100644 index 33018e8d..00000000 --- a/themes/ohled-indianred.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_IndianRed" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#CD5C5C" - black: "#CD5C5C" - red: "#964343" - green: "#A44A4A" - yellow: "#7B3737" - blue: "#BF5656" - magenta: "#B25050" - cyan: "#893D3D" - white: "#6D3131" - brightBlack: "#CD5C5C" - brightRed: "#964343" - brightGreen: "#A44A4A" - brightYellow: "#7B3737" - brightBlue: "#BF5656" - brightMagenta: "#B25050" - brightCyan: "#893D3D" - brightWhite: "#6D3131" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 35.1 - black: 35.1 - red: 19.7 - green: 23.6 - yellow: 13.1 - blue: 31.1 - magenta: 27.3 - cyan: 16.4 - white: 10 - brightBlack: 35.1 - brightRed: 19.7 - brightGreen: 23.6 - brightYellow: 13.1 - brightBlue: 31.1 - brightMagenta: 27.3 - brightCyan: 16.4 - brightWhite: 10 diff --git a/themes/ohled-indigo.yaml b/themes/ohled-indigo.yaml deleted file mode 100644 index da46fe66..00000000 --- a/themes/ohled-indigo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Indigo" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#806AA3" - black: "#806AA3" - red: "#5E4E78" - green: "#665582" - yellow: "#4D4062" - blue: "#776398" - magenta: "#6F5C8D" - cyan: "#55476D" - white: "#443957" - brightBlack: "#806AA3" - brightRed: "#5E4E78" - brightGreen: "#665582" - brightYellow: "#4D4062" - brightBlue: "#776398" - brightMagenta: "#6F5C8D" - brightCyan: "#55476D" - brightWhite: "#443957" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 29.4 - black: 29.4 - red: 16.4 - green: 19.3 - yellow: 10.6 - blue: 25.9 - magenta: 22.6 - cyan: 13.4 - white: 7.9 - brightBlack: 29.4 - brightRed: 16.4 - brightGreen: 19.3 - brightYellow: 10.6 - brightBlue: 25.9 - brightMagenta: 22.6 - brightCyan: 13.4 - brightWhite: 7.9 diff --git a/themes/ohled-ivory.yaml b/themes/ohled-ivory.yaml deleted file mode 100644 index bf6bb7dd..00000000 --- a/themes/ohled-ivory.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Ivory" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFFFF0" - black: "#FFFFF0" - red: "#BBBBB0" - green: "#CCCCC0" - yellow: "#999990" - blue: "#EEEEE0" - magenta: "#DDDDD0" - cyan: "#AAAAA0" - white: "#888880" - brightBlack: "#FFFFF0" - brightRed: "#BBBBB0" - brightGreen: "#CCCCC0" - brightYellow: "#999990" - brightBlue: "#EEEEE0" - brightMagenta: "#DDDDD0" - brightCyan: "#AAAAA0" - brightWhite: "#888880" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 107.2 - black: 107.2 - red: 65.3 - green: 75.2 - yellow: 46.9 - blue: 96.1 - magenta: 85.5 - cyan: 55.9 - white: 38.4 - brightBlack: 107.2 - brightRed: 65.3 - brightGreen: 75.2 - brightYellow: 46.9 - brightBlue: 96.1 - brightMagenta: 85.5 - brightCyan: 55.9 - brightWhite: 38.4 diff --git a/themes/ohled-khaki.yaml b/themes/ohled-khaki.yaml deleted file mode 100644 index 6ad5c9bb..00000000 --- a/themes/ohled-khaki.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Khaki" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#F0E68C" - black: "#F0E68C" - red: "#B0A967" - green: "#C0B870" - yellow: "#908A54" - blue: "#E0D783" - magenta: "#D0C779" - cyan: "#A0995D" - white: "#807B4B" - brightBlack: "#F0E68C" - brightRed: "#B0A967" - brightGreen: "#C0B870" - brightYellow: "#908A54" - brightBlue: "#E0D783" - brightMagenta: "#D0C779" - brightCyan: "#A0995D" - brightWhite: "#807B4B" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 90 - black: 90 - red: 54.6 - green: 62.8 - yellow: 38.8 - blue: 80.8 - magenta: 71.4 - cyan: 46.3 - white: 31.7 - brightBlack: 90 - brightRed: 54.6 - brightGreen: 62.8 - brightYellow: 38.8 - brightBlue: 80.8 - brightMagenta: 71.4 - brightCyan: 46.3 - brightWhite: 31.7 diff --git a/themes/ohled-lavender.yaml b/themes/ohled-lavender.yaml deleted file mode 100644 index c11246e2..00000000 --- a/themes/ohled-lavender.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Lavender" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#E6E6FA" - black: "#E6E6FA" - red: "#A9A9B7" - green: "#B8B8C8" - yellow: "#8A8A96" - blue: "#D7D7E9" - magenta: "#C7C7D9" - cyan: "#9999A7" - white: "#7B7B85" - brightBlack: "#E6E6FA" - brightRed: "#A9A9B7" - brightGreen: "#B8B8C8" - brightYellow: "#8A8A96" - brightBlue: "#D7D7E9" - brightMagenta: "#C7C7D9" - brightCyan: "#9999A7" - brightWhite: "#7B7B85" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 92.6 - black: 92.6 - red: 56.3 - green: 64.7 - yellow: 40.1 - blue: 83.2 - magenta: 73.5 - cyan: 47.7 - white: 32.8 - brightBlack: 92.6 - brightRed: 56.3 - brightGreen: 64.7 - brightYellow: 40.1 - brightBlue: 83.2 - brightMagenta: 73.5 - brightCyan: 47.7 - brightWhite: 32.8 diff --git a/themes/ohled-lavenderblush.yaml b/themes/ohled-lavenderblush.yaml deleted file mode 100644 index b4f90f88..00000000 --- a/themes/ohled-lavenderblush.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LavenderBlush" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFF0F5" - black: "#FFF0F5" - red: "#BBB0B4" - green: "#CCC0C4" - yellow: "#999093" - blue: "#EEE0E5" - magenta: "#DDD0D4" - cyan: "#AAA0A3" - white: "#888083" - brightBlack: "#FFF0F5" - brightRed: "#BBB0B4" - brightGreen: "#CCC0C4" - brightYellow: "#999093" - brightBlue: "#EEE0E5" - brightMagenta: "#DDD0D4" - brightCyan: "#AAA0A3" - brightWhite: "#888083" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 100.4 - black: 100.4 - red: 61.1 - green: 70.3 - yellow: 43.7 - blue: 90 - magenta: 80 - cyan: 52.1 - white: 35.7 - brightBlack: 100.4 - brightRed: 61.1 - brightGreen: 70.3 - brightYellow: 43.7 - brightBlue: 90 - brightMagenta: 80 - brightCyan: 52.1 - brightWhite: 35.7 diff --git a/themes/ohled-lawngreen.yaml b/themes/ohled-lawngreen.yaml deleted file mode 100644 index 0e1256c7..00000000 --- a/themes/ohled-lawngreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LawnGreen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#7CFC00" - black: "#7CFC00" - red: "#5BB900" - green: "#63CA00" - yellow: "#4A9700" - blue: "#74EB00" - magenta: "#6BDA00" - cyan: "#53A800" - white: "#428600" - brightBlack: "#7CFC00" - brightRed: "#5BB900" - brightGreen: "#63CA00" - brightYellow: "#4A9700" - brightBlue: "#74EB00" - brightMagenta: "#6BDA00" - brightCyan: "#53A800" - brightWhite: "#428600" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 87.9 - black: 87.9 - red: 53.2 - green: 61.5 - yellow: 37.7 - blue: 78.6 - magenta: 69.6 - cyan: 45.3 - white: 30.6 - brightBlack: 87.9 - brightRed: 53.2 - brightGreen: 61.5 - brightYellow: 37.7 - brightBlue: 78.6 - brightMagenta: 69.6 - brightCyan: 45.3 - brightWhite: 30.6 diff --git a/themes/ohled-lemonchiffon.yaml b/themes/ohled-lemonchiffon.yaml deleted file mode 100644 index 2e458067..00000000 --- a/themes/ohled-lemonchiffon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LemonChiffon" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFFACD" - black: "#FFFACD" - red: "#BBB796" - green: "#CCC8A4" - yellow: "#99967B" - blue: "#EEE9BF" - magenta: "#DDD9B2" - cyan: "#AAA789" - white: "#88856D" - brightBlack: "#FFFACD" - brightRed: "#BBB796" - brightGreen: "#CCC8A4" - brightYellow: "#99967B" - brightBlue: "#EEE9BF" - brightMagenta: "#DDD9B2" - brightCyan: "#AAA789" - brightWhite: "#88856D" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 103.4 - black: 103.4 - red: 62.8 - green: 72.5 - yellow: 45.1 - blue: 92.6 - magenta: 82.6 - cyan: 53.9 - white: 36.7 - brightBlack: 103.4 - brightRed: 62.8 - brightGreen: 72.5 - brightYellow: 45.1 - brightBlue: 92.6 - brightMagenta: 82.6 - brightCyan: 53.9 - brightWhite: 36.7 diff --git a/themes/ohled-lightblue.yaml b/themes/ohled-lightblue.yaml deleted file mode 100644 index 1b6c5e65..00000000 --- a/themes/ohled-lightblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LightBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#ADD8E6" - black: "#ADD8E6" - red: "#7F9EA9" - green: "#8AADB8" - yellow: "#68828A" - blue: "#A1CAD7" - magenta: "#96BBC7" - cyan: "#739099" - white: "#5C737B" - brightBlack: "#ADD8E6" - brightRed: "#7F9EA9" - brightGreen: "#8AADB8" - brightYellow: "#68828A" - brightBlue: "#A1CAD7" - brightMagenta: "#96BBC7" - brightCyan: "#739099" - brightWhite: "#5C737B" -meta: - mode: "dark" - accent: "blue" - hue: null - pair: null - contrast: - fg: 78.7 - black: 78.7 - red: 47.2 - green: 54.8 - yellow: 33.7 - blue: 70.5 - magenta: 62.3 - cyan: 40.2 - white: 27.1 - brightBlack: 78.7 - brightRed: 47.2 - brightGreen: 54.8 - brightYellow: 33.7 - brightBlue: 70.5 - brightMagenta: 62.3 - brightCyan: 40.2 - brightWhite: 27.1 diff --git a/themes/ohled-lightcoral.yaml b/themes/ohled-lightcoral.yaml deleted file mode 100644 index cf13daeb..00000000 --- a/themes/ohled-lightcoral.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LightCoral" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#F08080" - black: "#F08080" - red: "#B05E5E" - green: "#C06666" - yellow: "#904D4D" - blue: "#E07777" - magenta: "#D06F6F" - cyan: "#A05555" - white: "#804444" - brightBlack: "#F08080" - brightRed: "#B05E5E" - brightGreen: "#C06666" - brightYellow: "#904D4D" - brightBlue: "#E07777" - brightMagenta: "#D06F6F" - brightCyan: "#A05555" - brightWhite: "#804444" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 51.7 - black: 51.7 - red: 30.4 - green: 35.3 - yellow: 21 - blue: 45.9 - magenta: 40.6 - cyan: 25.4 - white: 16.5 - brightBlack: 51.7 - brightRed: 30.4 - brightGreen: 35.3 - brightYellow: 21 - brightBlue: 45.9 - brightMagenta: 40.6 - brightCyan: 25.4 - brightWhite: 16.5 diff --git a/themes/ohled-lightcyan.yaml b/themes/ohled-lightcyan.yaml deleted file mode 100644 index 883bdb59..00000000 --- a/themes/ohled-lightcyan.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LightCyan" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#E0FFFF" - black: "#E0FFFF" - red: "#A4BBBB" - green: "#B3CCCC" - yellow: "#869999" - blue: "#D1EEEE" - magenta: "#C2DDDD" - cyan: "#95AAAA" - white: "#778888" - brightBlack: "#E0FFFF" - brightRed: "#A4BBBB" - brightGreen: "#B3CCCC" - brightYellow: "#869999" - brightBlue: "#D1EEEE" - brightMagenta: "#C2DDDD" - brightCyan: "#95AAAA" - brightWhite: "#778888" -meta: - mode: "dark" - accent: "cyan" - hue: null - pair: null - contrast: - fg: 103.8 - black: 103.8 - red: 63.2 - green: 72.7 - yellow: 45.3 - blue: 93.1 - magenta: 82.7 - cyan: 54 - white: 37 - brightBlack: 103.8 - brightRed: 63.2 - brightGreen: 72.7 - brightYellow: 45.3 - brightBlue: 93.1 - brightMagenta: 82.7 - brightCyan: 54 - brightWhite: 37 diff --git a/themes/ohled-lightgoldenrodyellow.yaml b/themes/ohled-lightgoldenrodyellow.yaml deleted file mode 100644 index 3b8c3b7c..00000000 --- a/themes/ohled-lightgoldenrodyellow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LightGoldenRodYellow" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FAFAD2" - black: "#FAFAD2" - red: "#B7B79A" - green: "#C8C8A8" - yellow: "#96967E" - blue: "#E9E9C4" - magenta: "#D9D9B6" - cyan: "#A7A78C" - white: "#858570" - brightBlack: "#FAFAD2" - brightRed: "#B7B79A" - brightGreen: "#C8C8A8" - brightYellow: "#96967E" - brightBlue: "#E9E9C4" - brightMagenta: "#D9D9B6" - brightCyan: "#A7A78C" - brightWhite: "#858570" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 102.9 - black: 102.9 - red: 62.4 - green: 72.1 - yellow: 44.8 - blue: 92 - magenta: 82.2 - cyan: 53.7 - white: 36.5 - brightBlack: 102.9 - brightRed: 62.4 - brightGreen: 72.1 - brightYellow: 44.8 - brightBlue: 92 - brightMagenta: 82.2 - brightCyan: 53.7 - brightWhite: 36.5 diff --git a/themes/ohled-lightgray.yaml b/themes/ohled-lightgray.yaml deleted file mode 100644 index 7a62b72b..00000000 --- a/themes/ohled-lightgray.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LightGray" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#D3D3D3" - black: "#D3D3D3" - red: "#9B9B9B" - green: "#A9A9A9" - yellow: "#7F7F7F" - blue: "#C5C5C5" - magenta: "#B7B7B7" - cyan: "#8D8D8D" - white: "#717171" - brightBlack: "#D3D3D3" - brightRed: "#9B9B9B" - brightGreen: "#A9A9A9" - brightYellow: "#7F7F7F" - brightBlue: "#C5C5C5" - brightMagenta: "#B7B7B7" - brightCyan: "#8D8D8D" - brightWhite: "#717171" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 79.9 - black: 79.9 - red: 48.2 - green: 55.7 - yellow: 34.3 - blue: 71.5 - magenta: 63.5 - cyan: 41.1 - white: 27.8 - brightBlack: 79.9 - brightRed: 48.2 - brightGreen: 55.7 - brightYellow: 34.3 - brightBlue: 71.5 - brightMagenta: 63.5 - brightCyan: 41.1 - brightWhite: 27.8 diff --git a/themes/ohled-lightgreen.yaml b/themes/ohled-lightgreen.yaml deleted file mode 100644 index 242cfcc1..00000000 --- a/themes/ohled-lightgreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LightGreen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#90EE90" - black: "#90EE90" - red: "#6AAF6A" - green: "#73BE73" - yellow: "#568F56" - blue: "#86DE86" - magenta: "#7DCE7D" - cyan: "#609F60" - white: "#4D7F4D" - brightBlack: "#90EE90" - brightRed: "#6AAF6A" - brightGreen: "#73BE73" - brightYellow: "#568F56" - brightBlue: "#86DE86" - brightMagenta: "#7DCE7D" - brightCyan: "#609F60" - brightWhite: "#4D7F4D" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 83.5 - black: 83.5 - red: 50.6 - green: 58 - yellow: 35.8 - blue: 74.7 - magenta: 66.2 - cyan: 43 - white: 29.1 - brightBlack: 83.5 - brightRed: 50.6 - brightGreen: 58 - brightYellow: 35.8 - brightBlue: 74.7 - brightMagenta: 66.2 - brightCyan: 43 - brightWhite: 29.1 diff --git a/themes/ohled-lightpink.yaml b/themes/ohled-lightpink.yaml deleted file mode 100644 index 12dd8f44..00000000 --- a/themes/ohled-lightpink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LightPink" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFB6C1" - black: "#FFB6C1" - red: "#BB858E" - green: "#CC929A" - yellow: "#996D74" - blue: "#EEAAB4" - magenta: "#DD9EA7" - cyan: "#AA7981" - white: "#886167" - brightBlack: "#FFB6C1" - brightRed: "#BB858E" - brightGreen: "#CC929A" - brightYellow: "#996D74" - brightBlue: "#EEAAB4" - brightMagenta: "#DD9EA7" - brightCyan: "#AA7981" - brightWhite: "#886167" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 74.2 - black: 74.2 - red: 44.4 - green: 51.6 - yellow: 31.4 - blue: 66.4 - magenta: 58.8 - cyan: 37.7 - white: 25.4 - brightBlack: 74.2 - brightRed: 44.4 - brightGreen: 51.6 - brightYellow: 31.4 - brightBlue: 66.4 - brightMagenta: 58.8 - brightCyan: 37.7 - brightWhite: 25.4 diff --git a/themes/ohled-lightsalmon.yaml b/themes/ohled-lightsalmon.yaml deleted file mode 100644 index c78d8f96..00000000 --- a/themes/ohled-lightsalmon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LightSalmon" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFA07A" - black: "#FFA07A" - red: "#BB7559" - green: "#CC8062" - yellow: "#996049" - blue: "#EE9572" - magenta: "#DD8B6A" - cyan: "#AA6B51" - white: "#885541" - brightBlack: "#FFA07A" - brightRed: "#BB7559" - brightGreen: "#CC8062" - brightYellow: "#996049" - brightBlue: "#EE9572" - brightMagenta: "#DD8B6A" - brightCyan: "#AA6B51" - brightWhite: "#885541" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 64.2 - black: 64.2 - red: 38.1 - green: 44.3 - yellow: 26.8 - blue: 57.2 - magenta: 50.8 - cyan: 32.4 - white: 21.4 - brightBlack: 64.2 - brightRed: 38.1 - brightGreen: 44.3 - brightYellow: 26.8 - brightBlue: 57.2 - brightMagenta: 50.8 - brightCyan: 32.4 - brightWhite: 21.4 diff --git a/themes/ohled-lightseagreen.yaml b/themes/ohled-lightseagreen.yaml deleted file mode 100644 index b0b3eb98..00000000 --- a/themes/ohled-lightseagreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LightSeaGreen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#20B2AA" - black: "#20B2AA" - red: "#17837D" - green: "#1A8E88" - yellow: "#136B66" - blue: "#1EA69F" - magenta: "#1C9A93" - cyan: "#157771" - white: "#115F5B" - brightBlack: "#20B2AA" - brightRed: "#17837D" - brightGreen: "#1A8E88" - brightYellow: "#136B66" - brightBlue: "#1EA69F" - brightMagenta: "#1C9A93" - brightCyan: "#157771" - brightWhite: "#115F5B" -meta: - mode: "dark" - accent: "cyan" - hue: null - pair: null - contrast: - fg: 51.3 - black: 51.3 - red: 30.2 - green: 34.9 - yellow: 20.8 - blue: 45.6 - magenta: 40.1 - cyan: 25.4 - white: 16.4 - brightBlack: 51.3 - brightRed: 30.2 - brightGreen: 34.9 - brightYellow: 20.8 - brightBlue: 45.6 - brightMagenta: 40.1 - brightCyan: 25.4 - brightWhite: 16.4 diff --git a/themes/ohled-lightskyblue.yaml b/themes/ohled-lightskyblue.yaml deleted file mode 100644 index 11461262..00000000 --- a/themes/ohled-lightskyblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LightSkyBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#87CEFA" - black: "#87CEFA" - red: "#6397B7" - green: "#6CA5C8" - yellow: "#517C96" - blue: "#7EC0E9" - magenta: "#75B3D9" - cyan: "#5A89A7" - white: "#486E85" - brightBlack: "#87CEFA" - brightRed: "#6397B7" - brightGreen: "#6CA5C8" - brightYellow: "#517C96" - brightBlue: "#7EC0E9" - brightMagenta: "#75B3D9" - brightCyan: "#5A89A7" - brightWhite: "#486E85" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 72 - black: 72 - red: 43.1 - green: 50 - yellow: 30.6 - blue: 64.2 - magenta: 57.2 - cyan: 36.5 - white: 24.6 - brightBlack: 72 - brightRed: 43.1 - brightGreen: 50 - brightYellow: 30.6 - brightBlue: 64.2 - brightMagenta: 57.2 - brightCyan: 36.5 - brightWhite: 24.6 diff --git a/themes/ohled-lightslategray.yaml b/themes/ohled-lightslategray.yaml deleted file mode 100644 index 53a9118a..00000000 --- a/themes/ohled-lightslategray.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LightSlateGray" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#778899" - black: "#778899" - red: "#576470" - green: "#5F6D7A" - yellow: "#47525C" - blue: "#6F7F8F" - magenta: "#677685" - cyan: "#4F5B66" - white: "#3F4952" - brightBlack: "#778899" - brightRed: "#576470" - brightGreen: "#5F6D7A" - brightYellow: "#47525C" - brightBlue: "#6F7F8F" - brightMagenta: "#677685" - brightCyan: "#4F5B66" - brightWhite: "#3F4952" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 37.7 - black: 37.7 - red: 21.5 - green: 25.3 - yellow: 14.4 - blue: 33.4 - magenta: 29.3 - cyan: 17.9 - white: 11.2 - brightBlack: 37.7 - brightRed: 21.5 - brightGreen: 25.3 - brightYellow: 14.4 - brightBlue: 33.4 - brightMagenta: 29.3 - brightCyan: 17.9 - brightWhite: 11.2 diff --git a/themes/ohled-lightsteelblue.yaml b/themes/ohled-lightsteelblue.yaml deleted file mode 100644 index d877cbe6..00000000 --- a/themes/ohled-lightsteelblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LightSteelBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#B0C4DE" - black: "#B0C4DE" - red: "#8190A3" - green: "#8D9DB2" - yellow: "#6A7685" - blue: "#A4B7CF" - magenta: "#99AAC0" - cyan: "#758394" - white: "#5E6976" - brightBlack: "#B0C4DE" - brightRed: "#8190A3" - brightGreen: "#8D9DB2" - brightYellow: "#6A7685" - brightBlue: "#A4B7CF" - brightMagenta: "#99AAC0" - brightCyan: "#758394" - brightWhite: "#5E6976" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 69.8 - black: 69.8 - red: 41.9 - green: 48.5 - yellow: 29.6 - blue: 62.4 - magenta: 55.3 - cyan: 35.5 - white: 23.8 - brightBlack: 69.8 - brightRed: 41.9 - brightGreen: 48.5 - brightYellow: 29.6 - brightBlue: 62.4 - brightMagenta: 55.3 - brightCyan: 35.5 - brightWhite: 23.8 diff --git a/themes/ohled-lightyellow.yaml b/themes/ohled-lightyellow.yaml deleted file mode 100644 index ba7f37da..00000000 --- a/themes/ohled-lightyellow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LightYellow" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFFFE0" - black: "#FFFFE0" - red: "#BBBBA4" - green: "#CCCCB3" - yellow: "#999986" - blue: "#EEEED1" - magenta: "#DDDDC2" - cyan: "#AAAA95" - white: "#888877" - brightBlack: "#FFFFE0" - brightRed: "#BBBBA4" - brightGreen: "#CCCCB3" - brightYellow: "#999986" - brightBlue: "#EEEED1" - brightMagenta: "#DDDDC2" - brightCyan: "#AAAA95" - brightWhite: "#888877" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 106.5 - black: 106.5 - red: 64.9 - green: 74.7 - yellow: 46.5 - blue: 95.5 - magenta: 84.9 - cyan: 55.5 - white: 38.1 - brightBlack: 106.5 - brightRed: 64.9 - brightGreen: 74.7 - brightYellow: 46.5 - brightBlue: 95.5 - brightMagenta: 84.9 - brightCyan: 55.5 - brightWhite: 38.1 diff --git a/themes/ohled-lime.yaml b/themes/ohled-lime.yaml deleted file mode 100644 index c1eee4ec..00000000 --- a/themes/ohled-lime.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Lime" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#00FF00" - black: "#00FF00" - red: "#00BB00" - green: "#00CC00" - yellow: "#009900" - blue: "#00EE00" - magenta: "#00DD00" - cyan: "#00AA00" - white: "#008800" - brightBlack: "#00FF00" - brightRed: "#00BB00" - brightGreen: "#00CC00" - brightYellow: "#009900" - brightBlue: "#00EE00" - brightMagenta: "#00DD00" - brightCyan: "#00AA00" - brightWhite: "#008800" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 86.5 - black: 86.5 - red: 52.3 - green: 60.3 - yellow: 37.2 - blue: 77.5 - magenta: 68.7 - cyan: 44.5 - white: 30.2 - brightBlack: 86.5 - brightRed: 52.3 - brightGreen: 60.3 - brightYellow: 37.2 - brightBlue: 77.5 - brightMagenta: 68.7 - brightCyan: 44.5 - brightWhite: 30.2 diff --git a/themes/ohled-limegreen.yaml b/themes/ohled-limegreen.yaml deleted file mode 100644 index 912e92c5..00000000 --- a/themes/ohled-limegreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_LimeGreen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#32CD32" - black: "#32CD32" - red: "#259625" - green: "#28A428" - yellow: "#1E7B1E" - blue: "#2FBF2F" - magenta: "#2BB22B" - cyan: "#218921" - white: "#1B6D1B" - brightBlack: "#32CD32" - brightRed: "#259625" - brightGreen: "#28A428" - brightYellow: "#1E7B1E" - brightBlue: "#2FBF2F" - brightMagenta: "#2BB22B" - brightCyan: "#218921" - brightWhite: "#1B6D1B" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 61.4 - black: 61.4 - red: 36.3 - green: 42.3 - yellow: 25.4 - blue: 54.6 - magenta: 48.6 - cyan: 30.9 - white: 20.3 - brightBlack: 61.4 - brightRed: 36.3 - brightGreen: 42.3 - brightYellow: 25.4 - brightBlue: 54.6 - brightMagenta: 48.6 - brightCyan: 30.9 - brightWhite: 20.3 diff --git a/themes/ohled-linen.yaml b/themes/ohled-linen.yaml deleted file mode 100644 index 28cfd8bc..00000000 --- a/themes/ohled-linen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Linen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FAF0E6" - black: "#FAF0E6" - red: "#B7B0A9" - green: "#C8C0B8" - yellow: "#96908A" - blue: "#E9E0D7" - magenta: "#D9D0C7" - cyan: "#A7A099" - white: "#85807B" - brightBlack: "#FAF0E6" - brightRed: "#B7B0A9" - brightGreen: "#C8C0B8" - brightYellow: "#96908A" - brightBlue: "#E9E0D7" - brightMagenta: "#D9D0C7" - brightCyan: "#A7A099" - brightWhite: "#85807B" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 99 - black: 99 - red: 60.1 - green: 69.3 - yellow: 43 - blue: 88.7 - magenta: 78.9 - cyan: 51.4 - white: 35.1 - brightBlack: 99 - brightRed: 60.1 - brightGreen: 69.3 - brightYellow: 43 - brightBlue: 88.7 - brightMagenta: 78.9 - brightCyan: 51.4 - brightWhite: 35.1 diff --git a/themes/ohled-magenta.yaml b/themes/ohled-magenta.yaml deleted file mode 100644 index 18012671..00000000 --- a/themes/ohled-magenta.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Magenta" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FF00FF" - black: "#FF00FF" - red: "#BB00BB" - green: "#CC00CC" - yellow: "#990099" - blue: "#EE00EE" - magenta: "#DD00DD" - cyan: "#AA00AA" - white: "#880088" - brightBlack: "#FF00FF" - brightRed: "#BB00BB" - brightGreen: "#CC00CC" - brightYellow: "#990099" - brightBlue: "#EE00EE" - brightMagenta: "#DD00DD" - brightCyan: "#AA00AA" - brightWhite: "#880088" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 46.2 - black: 46.2 - red: 26.9 - green: 31.4 - yellow: 18.4 - blue: 41.1 - magenta: 36.2 - cyan: 22.5 - white: 14.4 - brightBlack: 46.2 - brightRed: 26.9 - brightGreen: 31.4 - brightYellow: 18.4 - brightBlue: 41.1 - brightMagenta: 36.2 - brightCyan: 22.5 - brightWhite: 14.4 diff --git a/themes/ohled-maroon.yaml b/themes/ohled-maroon.yaml deleted file mode 100644 index 5f735e69..00000000 --- a/themes/ohled-maroon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Maroon" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#9F6565" - black: "#9F6565" - red: "#754A4A" - green: "#7F5151" - yellow: "#5F3D3D" - blue: "#945E5E" - magenta: "#8A5858" - cyan: "#6A4343" - white: "#553636" - brightBlack: "#9F6565" - brightRed: "#754A4A" - brightGreen: "#7F5151" - brightYellow: "#5F3D3D" - brightBlue: "#945E5E" - brightMagenta: "#8A5858" - brightCyan: "#6A4343" - brightWhite: "#553636" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 29.6 - black: 29.6 - red: 16.4 - green: 19.5 - yellow: 10.6 - blue: 26 - magenta: 22.9 - cyan: 13.3 - white: 7.9 - brightBlack: 29.6 - brightRed: 16.4 - brightGreen: 19.5 - brightYellow: 10.6 - brightBlue: 26 - brightMagenta: 22.9 - brightCyan: 13.3 - brightWhite: 7.9 diff --git a/themes/ohled-mediumaquamarine.yaml b/themes/ohled-mediumaquamarine.yaml deleted file mode 100644 index a3415b8c..00000000 --- a/themes/ohled-mediumaquamarine.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_MediumAquaMarine" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#66CDAA" - black: "#66CDAA" - red: "#4B967D" - green: "#52A488" - yellow: "#3D7B66" - blue: "#5FBF9F" - magenta: "#58B293" - cyan: "#448971" - white: "#366D5B" - brightBlack: "#66CDAA" - brightRed: "#4B967D" - brightGreen: "#52A488" - brightYellow: "#3D7B66" - brightBlue: "#5FBF9F" - brightMagenta: "#58B293" - brightCyan: "#448971" - brightWhite: "#366D5B" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 65.7 - black: 65.7 - red: 39 - green: 45.4 - yellow: 27.5 - blue: 58.5 - magenta: 52 - cyan: 33.3 - white: 21.9 - brightBlack: 65.7 - brightRed: 39 - brightGreen: 45.4 - brightYellow: 27.5 - brightBlue: 58.5 - brightMagenta: 52 - brightCyan: 33.3 - brightWhite: 21.9 diff --git a/themes/ohled-mediumblue.yaml b/themes/ohled-mediumblue.yaml deleted file mode 100644 index 0101a5c5..00000000 --- a/themes/ohled-mediumblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_MediumBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#6666E0" - black: "#6666E0" - red: "#4B4BA4" - green: "#5252B3" - yellow: "#3D3D86" - blue: "#5F5FD1" - magenta: "#5858C2" - cyan: "#444495" - white: "#363677" - brightBlack: "#6666E0" - brightRed: "#4B4BA4" - brightGreen: "#5252B3" - brightYellow: "#3D3D86" - brightBlue: "#5F5FD1" - brightMagenta: "#5858C2" - brightCyan: "#444495" - brightWhite: "#363677" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 29.9 - black: 29.9 - red: 16.6 - green: 19.8 - yellow: 10.6 - blue: 26.3 - magenta: 22.8 - cyan: 13.6 - white: 7.9 - brightBlack: 29.9 - brightRed: 16.6 - brightGreen: 19.8 - brightYellow: 10.6 - brightBlue: 26.3 - brightMagenta: 22.8 - brightCyan: 13.6 - brightWhite: 7.9 diff --git a/themes/ohled-mediumorchid.yaml b/themes/ohled-mediumorchid.yaml deleted file mode 100644 index 78d7999e..00000000 --- a/themes/ohled-mediumorchid.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_MediumOrchid" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#BA55D3" - black: "#BA55D3" - red: "#883E9B" - green: "#9544A9" - yellow: "#70337F" - blue: "#AE4FC5" - magenta: "#A14AB7" - cyan: "#7C398D" - white: "#632D71" - brightBlack: "#BA55D3" - brightRed: "#883E9B" - brightGreen: "#9544A9" - brightYellow: "#70337F" - brightBlue: "#AE4FC5" - brightMagenta: "#A14AB7" - brightCyan: "#7C398D" - brightWhite: "#632D71" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 35.5 - black: 35.5 - red: 20 - green: 23.8 - yellow: 13.4 - blue: 31.4 - magenta: 27.5 - cyan: 16.7 - white: 10.2 - brightBlack: 35.5 - brightRed: 20 - brightGreen: 23.8 - brightYellow: 13.4 - brightBlue: 31.4 - brightMagenta: 27.5 - brightCyan: 16.7 - brightWhite: 10.2 diff --git a/themes/ohled-mediumpurple.yaml b/themes/ohled-mediumpurple.yaml deleted file mode 100644 index 341aae14..00000000 --- a/themes/ohled-mediumpurple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_MediumPurple" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#9370DB" - black: "#9370DB" - red: "#6C52A1" - green: "#765AAF" - yellow: "#584383" - blue: "#8969CC" - magenta: "#7F61BE" - cyan: "#624B92" - white: "#4E3C75" - brightBlack: "#9370DB" - brightRed: "#6C52A1" - brightGreen: "#765AAF" - brightYellow: "#584383" - brightBlue: "#8969CC" - brightMagenta: "#7F61BE" - brightCyan: "#624B92" - brightWhite: "#4E3C75" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 36.7 - black: 36.7 - red: 20.9 - green: 24.7 - yellow: 13.8 - blue: 32.6 - magenta: 28.4 - cyan: 17.4 - white: 10.7 - brightBlack: 36.7 - brightRed: 20.9 - brightGreen: 24.7 - brightYellow: 13.8 - brightBlue: 32.6 - brightMagenta: 28.4 - brightCyan: 17.4 - brightWhite: 10.7 diff --git a/themes/ohled-mediumseagreen.yaml b/themes/ohled-mediumseagreen.yaml deleted file mode 100644 index 9955e5f7..00000000 --- a/themes/ohled-mediumseagreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_MediumSeaGreen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#3CB371" - black: "#3CB371" - red: "#2C8353" - green: "#308F5A" - yellow: "#246B44" - blue: "#38A769" - magenta: "#349B62" - cyan: "#28774B" - white: "#205F3C" - brightBlack: "#3CB371" - brightRed: "#2C8353" - brightGreen: "#308F5A" - brightYellow: "#246B44" - brightBlue: "#38A769" - brightMagenta: "#349B62" - brightCyan: "#28774B" - brightWhite: "#205F3C" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 50.4 - black: 50.4 - red: 29.4 - green: 34.4 - yellow: 20.2 - blue: 44.9 - magenta: 39.5 - cyan: 24.7 - white: 15.9 - brightBlack: 50.4 - brightRed: 29.4 - brightGreen: 34.4 - brightYellow: 20.2 - brightBlue: 44.9 - brightMagenta: 39.5 - brightCyan: 24.7 - brightWhite: 15.9 diff --git a/themes/ohled-mediumslateblue.yaml b/themes/ohled-mediumslateblue.yaml deleted file mode 100644 index 8aefaff2..00000000 --- a/themes/ohled-mediumslateblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_MediumSlateBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#7B68EE" - black: "#7B68EE" - red: "#5A4CAF" - green: "#6253BE" - yellow: "#4A3E8F" - blue: "#7361DE" - magenta: "#6B5ACE" - cyan: "#52459F" - white: "#42377F" - brightBlack: "#7B68EE" - brightRed: "#5A4CAF" - brightGreen: "#6253BE" - brightYellow: "#4A3E8F" - brightBlue: "#7361DE" - brightMagenta: "#6B5ACE" - brightCyan: "#52459F" - brightWhite: "#42377F" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 33.4 - black: 33.4 - red: 18.8 - green: 22.1 - yellow: 12.3 - blue: 29.6 - magenta: 25.8 - cyan: 15.5 - white: 9.3 - brightBlack: 33.4 - brightRed: 18.8 - brightGreen: 22.1 - brightYellow: 12.3 - brightBlue: 29.6 - brightMagenta: 25.8 - brightCyan: 15.5 - brightWhite: 9.3 diff --git a/themes/ohled-mediumspringgreen.yaml b/themes/ohled-mediumspringgreen.yaml deleted file mode 100644 index 42f5e92e..00000000 --- a/themes/ohled-mediumspringgreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_MediumSpringGreen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#00FA9A" - black: "#00FA9A" - red: "#00B771" - green: "#00C87B" - yellow: "#00965C" - blue: "#00E990" - magenta: "#00D985" - cyan: "#00A767" - white: "#008552" - brightBlack: "#00FA9A" - brightRed: "#00B771" - brightGreen: "#00C87B" - brightYellow: "#00965C" - brightBlue: "#00E990" - brightMagenta: "#00D985" - brightCyan: "#00A767" - brightWhite: "#008552" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 85.5 - black: 85.5 - red: 51.5 - green: 59.6 - yellow: 36.7 - blue: 76.4 - magenta: 68.1 - cyan: 44.2 - white: 29.7 - brightBlack: 85.5 - brightRed: 51.5 - brightGreen: 59.6 - brightYellow: 36.7 - brightBlue: 76.4 - brightMagenta: 68.1 - brightCyan: 44.2 - brightWhite: 29.7 diff --git a/themes/ohled-mediumturquoise.yaml b/themes/ohled-mediumturquoise.yaml deleted file mode 100644 index 7da529e8..00000000 --- a/themes/ohled-mediumturquoise.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_MediumTurquoise" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#48D1CC" - black: "#48D1CC" - red: "#359996" - green: "#3AA7A3" - yellow: "#2B7D7A" - blue: "#43C3BE" - magenta: "#3EB5B1" - cyan: "#308B88" - white: "#266F6D" - brightBlack: "#48D1CC" - brightRed: "#359996" - brightGreen: "#3AA7A3" - brightYellow: "#2B7D7A" - brightBlue: "#43C3BE" - brightMagenta: "#3EB5B1" - brightCyan: "#308B88" - brightWhite: "#266F6D" -meta: - mode: "dark" - accent: "cyan" - hue: null - pair: null - contrast: - fg: 67.7 - black: 67.7 - red: 40.3 - green: 46.8 - yellow: 28.2 - blue: 60.4 - magenta: 53.5 - cyan: 34.1 - white: 22.7 - brightBlack: 67.7 - brightRed: 40.3 - brightGreen: 46.8 - brightYellow: 28.2 - brightBlue: 60.4 - brightMagenta: 53.5 - brightCyan: 34.1 - brightWhite: 22.7 diff --git a/themes/ohled-mediumvioletred.yaml b/themes/ohled-mediumvioletred.yaml deleted file mode 100644 index 3ce5ccce..00000000 --- a/themes/ohled-mediumvioletred.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_MediumVioletRed" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#CC388D" - black: "#CC388D" - red: "#962967" - green: "#A32D71" - yellow: "#7A2255" - blue: "#BE3484" - magenta: "#B1317A" - cyan: "#88255E" - white: "#6D1E4B" - brightBlack: "#CC388D" - brightRed: "#962967" - brightGreen: "#A32D71" - brightYellow: "#7A2255" - brightBlue: "#BE3484" - brightMagenta: "#B1317A" - brightCyan: "#88255E" - brightWhite: "#6D1E4B" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 30.6 - black: 30.6 - red: 17.1 - green: 20.2 - yellow: 11 - blue: 26.9 - magenta: 23.6 - cyan: 13.9 - white: 8.3 - brightBlack: 30.6 - brightRed: 17.1 - brightGreen: 20.2 - brightYellow: 11 - brightBlue: 26.9 - brightMagenta: 23.6 - brightCyan: 13.9 - brightWhite: 8.3 diff --git a/themes/ohled-midnightblue.yaml b/themes/ohled-midnightblue.yaml deleted file mode 100644 index 70eece81..00000000 --- a/themes/ohled-midnightblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_MidnightBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#717199" - black: "#717199" - red: "#535370" - green: "#5A5A7A" - yellow: "#44445C" - blue: "#69698F" - magenta: "#626285" - cyan: "#4B4B66" - white: "#3C3C52" - brightBlack: "#717199" - brightRed: "#535370" - brightGreen: "#5A5A7A" - brightYellow: "#44445C" - brightBlue: "#69698F" - brightMagenta: "#626285" - brightCyan: "#4B4B66" - brightWhite: "#3C3C52" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 29.4 - black: 29.4 - red: 16.3 - green: 19.2 - yellow: 10.6 - blue: 25.8 - magenta: 22.7 - cyan: 13.2 - white: 7.8 - brightBlack: 29.4 - brightRed: 16.3 - brightGreen: 19.2 - brightYellow: 10.6 - brightBlue: 25.8 - brightMagenta: 22.7 - brightCyan: 13.2 - brightWhite: 7.8 diff --git a/themes/ohled-mintcream.yaml b/themes/ohled-mintcream.yaml deleted file mode 100644 index c612da4e..00000000 --- a/themes/ohled-mintcream.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_MintCream" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#F5FFFA" - black: "#F5FFFA" - red: "#B4BBB7" - green: "#C4CCC8" - yellow: "#939996" - blue: "#E5EEE9" - magenta: "#D4DDD9" - cyan: "#A3AAA7" - white: "#838885" - brightBlack: "#F5FFFA" - brightRed: "#B4BBB7" - brightGreen: "#C4CCC8" - brightYellow: "#939996" - brightBlue: "#E5EEE9" - brightMagenta: "#D4DDD9" - brightCyan: "#A3AAA7" - brightWhite: "#838885" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 106.3 - black: 106.3 - red: 64.7 - green: 74.5 - yellow: 46.4 - blue: 95.3 - magenta: 84.7 - cyan: 55.3 - white: 38 - brightBlack: 106.3 - brightRed: 64.7 - brightGreen: 74.5 - brightYellow: 46.4 - brightBlue: 95.3 - brightMagenta: 84.7 - brightCyan: 55.3 - brightWhite: 38 diff --git a/themes/ohled-mistyrose.yaml b/themes/ohled-mistyrose.yaml deleted file mode 100644 index e1512799..00000000 --- a/themes/ohled-mistyrose.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_MistyRose" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFE4E1" - black: "#FFE4E1" - red: "#BBA7A5" - green: "#CCB6B4" - yellow: "#998987" - blue: "#EED5D2" - magenta: "#DDC6C3" - cyan: "#AA9896" - white: "#887A78" - brightBlack: "#FFE4E1" - brightRed: "#BBA7A5" - brightGreen: "#CCB6B4" - brightYellow: "#998987" - brightBlue: "#EED5D2" - brightMagenta: "#DDC6C3" - brightCyan: "#AA9896" - brightWhite: "#887A78" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.1 - black: 94.1 - red: 57 - green: 65.7 - yellow: 40.8 - blue: 84.4 - magenta: 75.1 - cyan: 48.7 - white: 33.4 - brightBlack: 94.1 - brightRed: 57 - brightGreen: 65.7 - brightYellow: 40.8 - brightBlue: 84.4 - brightMagenta: 75.1 - brightCyan: 48.7 - brightWhite: 33.4 diff --git a/themes/ohled-moccasin.yaml b/themes/ohled-moccasin.yaml deleted file mode 100644 index de77775d..00000000 --- a/themes/ohled-moccasin.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Moccasin" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFE4B5" - black: "#FFE4B5" - red: "#BBA785" - green: "#CCB691" - yellow: "#99896D" - blue: "#EED5A9" - magenta: "#DDC69D" - cyan: "#AA9879" - white: "#887A61" - brightBlack: "#FFE4B5" - brightRed: "#BBA785" - brightGreen: "#CCB691" - brightYellow: "#99896D" - brightBlue: "#EED5A9" - brightMagenta: "#DDC69D" - brightCyan: "#AA9879" - brightWhite: "#887A61" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 92.5 - black: 92.5 - red: 56 - green: 64.5 - yellow: 40.1 - blue: 82.9 - magenta: 73.7 - cyan: 47.8 - white: 32.7 - brightBlack: 92.5 - brightRed: 56 - brightGreen: 64.5 - brightYellow: 40.1 - brightBlue: 82.9 - brightMagenta: 73.7 - brightCyan: 47.8 - brightWhite: 32.7 diff --git a/themes/ohled-navajowhite.yaml b/themes/ohled-navajowhite.yaml deleted file mode 100644 index 7207f311..00000000 --- a/themes/ohled-navajowhite.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_NavajoWhite" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFDEAD" - black: "#FFDEAD" - red: "#BBA37F" - green: "#CCB28A" - yellow: "#998568" - blue: "#EECFA1" - magenta: "#DDC096" - cyan: "#AA9473" - white: "#88765C" - brightBlack: "#FFDEAD" - brightRed: "#BBA37F" - brightGreen: "#CCB28A" - brightYellow: "#998568" - brightBlue: "#EECFA1" - brightMagenta: "#DDC096" - brightCyan: "#AA9473" - brightWhite: "#88765C" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 89.6 - black: 89.6 - red: 54.3 - green: 62.7 - yellow: 38.6 - blue: 80.1 - magenta: 71.1 - cyan: 46.2 - white: 31.3 - brightBlack: 89.6 - brightRed: 54.3 - brightGreen: 62.7 - brightYellow: 38.6 - brightBlue: 80.1 - brightMagenta: 71.1 - brightCyan: 46.2 - brightWhite: 31.3 diff --git a/themes/ohled-navy.yaml b/themes/ohled-navy.yaml deleted file mode 100644 index 14024d0e..00000000 --- a/themes/ohled-navy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Navy" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#6F6FA5" - black: "#6F6FA5" - red: "#515179" - green: "#595984" - yellow: "#434363" - blue: "#68689A" - magenta: "#60608F" - cyan: "#4A4A6E" - white: "#3B3B58" - brightBlack: "#6F6FA5" - brightRed: "#515179" - brightGreen: "#595984" - brightYellow: "#434363" - brightBlue: "#68689A" - brightMagenta: "#60608F" - brightCyan: "#4A4A6E" - brightWhite: "#3B3B58" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 29.3 - black: 29.3 - red: 16 - green: 19.3 - yellow: 10.5 - blue: 26 - magenta: 22.4 - cyan: 13.2 - white: 7.7 - brightBlack: 29.3 - brightRed: 16 - brightGreen: 19.3 - brightYellow: 10.5 - brightBlue: 26 - brightMagenta: 22.4 - brightCyan: 13.2 - brightWhite: 7.7 diff --git a/themes/ohled-oldlace.yaml b/themes/ohled-oldlace.yaml deleted file mode 100644 index e6177cb8..00000000 --- a/themes/ohled-oldlace.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_OldLace" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FDF5E6" - black: "#FDF5E6" - red: "#BAB4A9" - green: "#CAC4B8" - yellow: "#98938A" - blue: "#ECE5D7" - magenta: "#DBD4C7" - cyan: "#A9A399" - white: "#87837B" - brightBlack: "#FDF5E6" - brightRed: "#BAB4A9" - brightGreen: "#CAC4B8" - brightYellow: "#98938A" - brightBlue: "#ECE5D7" - brightMagenta: "#DBD4C7" - brightCyan: "#A9A399" - brightWhite: "#87837B" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 101.8 - black: 101.8 - red: 62.1 - green: 71.2 - yellow: 44.3 - blue: 91.4 - magenta: 80.9 - cyan: 52.8 - white: 36.3 - brightBlack: 101.8 - brightRed: 62.1 - brightGreen: 71.2 - brightYellow: 44.3 - brightBlue: 91.4 - brightMagenta: 80.9 - brightCyan: 52.8 - brightWhite: 36.3 diff --git a/themes/ohled-olive.yaml b/themes/ohled-olive.yaml deleted file mode 100644 index b4b7c31b..00000000 --- a/themes/ohled-olive.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Olive" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#808000" - black: "#808000" - red: "#5E5E00" - green: "#666600" - yellow: "#4D4D00" - blue: "#777700" - magenta: "#6F6F00" - cyan: "#555500" - white: "#444400" - brightBlack: "#808000" - brightRed: "#5E5E00" - brightGreen: "#666600" - brightYellow: "#4D4D00" - brightBlue: "#777700" - brightMagenta: "#6F6F00" - brightCyan: "#555500" - brightWhite: "#444400" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 32.9 - black: 32.9 - red: 18.5 - green: 21.7 - yellow: 12.2 - blue: 28.9 - magenta: 25.5 - cyan: 15.1 - white: 9.1 - brightBlack: 32.9 - brightRed: 18.5 - brightGreen: 21.7 - brightYellow: 12.2 - brightBlue: 28.9 - brightMagenta: 25.5 - brightCyan: 15.1 - brightWhite: 9.1 diff --git a/themes/ohled-olivedrab.yaml b/themes/ohled-olivedrab.yaml deleted file mode 100644 index 8c280f89..00000000 --- a/themes/ohled-olivedrab.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_OliveDrab" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#6B8E23" - black: "#6B8E23" - red: "#4E681A" - green: "#56721C" - yellow: "#405515" - blue: "#648521" - magenta: "#5D7B1E" - cyan: "#475F17" - white: "#394C13" - brightBlack: "#6B8E23" - brightRed: "#4E681A" - brightGreen: "#56721C" - brightYellow: "#405515" - brightBlue: "#648521" - brightMagenta: "#5D7B1E" - brightCyan: "#475F17" - brightWhite: "#394C13" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 36.2 - black: 36.2 - red: 20.5 - green: 24.4 - yellow: 13.6 - blue: 32.3 - magenta: 28.1 - cyan: 17.1 - white: 10.6 - brightBlack: 36.2 - brightRed: 20.5 - brightGreen: 24.4 - brightYellow: 13.6 - brightBlue: 32.3 - brightMagenta: 28.1 - brightCyan: 17.1 - brightWhite: 10.6 diff --git a/themes/ohled-orange.yaml b/themes/ohled-orange.yaml deleted file mode 100644 index 415e10b2..00000000 --- a/themes/ohled-orange.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Orange" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFA500" - black: "#FFA500" - red: "#BB7900" - green: "#CC8400" - yellow: "#996300" - blue: "#EE9A00" - magenta: "#DD8F00" - cyan: "#AA6E00" - white: "#885800" - brightBlack: "#FFA500" - brightRed: "#BB7900" - brightGreen: "#CC8400" - brightYellow: "#996300" - brightBlue: "#EE9A00" - brightMagenta: "#DD8F00" - brightCyan: "#AA6E00" - brightWhite: "#885800" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 64.7 - black: 64.7 - red: 38.5 - green: 44.7 - yellow: 27 - blue: 57.8 - magenta: 51.1 - cyan: 32.6 - white: 21.7 - brightBlack: 64.7 - brightRed: 38.5 - brightGreen: 44.7 - brightYellow: 27 - brightBlue: 57.8 - brightMagenta: 51.1 - brightCyan: 32.6 - brightWhite: 21.7 diff --git a/themes/ohled-orangered.yaml b/themes/ohled-orangered.yaml deleted file mode 100644 index 0f8e6ea0..00000000 --- a/themes/ohled-orangered.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_OrangeRed" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FF4500" - black: "#FF4500" - red: "#BB3300" - green: "#CC3700" - yellow: "#992900" - blue: "#EE4000" - magenta: "#DD3C00" - cyan: "#AA2E00" - white: "#882500" - brightBlack: "#FF4500" - brightRed: "#BB3300" - brightGreen: "#CC3700" - brightYellow: "#992900" - brightBlue: "#EE4000" - brightMagenta: "#DD3C00" - brightCyan: "#AA2E00" - brightWhite: "#882500" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 41.4 - black: 41.4 - red: 23.9 - green: 27.9 - yellow: 16.1 - blue: 36.7 - magenta: 32.3 - cyan: 19.9 - white: 12.5 - brightBlack: 41.4 - brightRed: 23.9 - brightGreen: 27.9 - brightYellow: 16.1 - brightBlue: 36.7 - brightMagenta: 32.3 - brightCyan: 19.9 - brightWhite: 12.5 diff --git a/themes/ohled-orchid.yaml b/themes/ohled-orchid.yaml deleted file mode 100644 index b78c7dcc..00000000 --- a/themes/ohled-orchid.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Orchid" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#DA70D6" - black: "#DA70D6" - red: "#A0529D" - green: "#AE5AAB" - yellow: "#834380" - blue: "#CB69C8" - magenta: "#BD61B9" - cyan: "#914B8F" - white: "#743C72" - brightBlack: "#DA70D6" - brightRed: "#A0529D" - brightGreen: "#AE5AAB" - brightYellow: "#834380" - brightBlue: "#CB69C8" - brightMagenta: "#BD61B9" - brightCyan: "#914B8F" - brightWhite: "#743C72" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 47.1 - black: 47.1 - red: 27.4 - green: 32.1 - yellow: 18.7 - blue: 42 - magenta: 36.9 - cyan: 23 - white: 14.8 - brightBlack: 47.1 - brightRed: 27.4 - brightGreen: 32.1 - brightYellow: 18.7 - brightBlue: 42 - brightMagenta: 36.9 - brightCyan: 23 - brightWhite: 14.8 diff --git a/themes/ohled-palegoldenrod.yaml b/themes/ohled-palegoldenrod.yaml deleted file mode 100644 index 215fa32f..00000000 --- a/themes/ohled-palegoldenrod.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_PaleGoldenRod" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#EEE8AA" - black: "#EEE8AA" - red: "#AFAA7D" - green: "#BEBA88" - yellow: "#8F8B66" - blue: "#DED99F" - magenta: "#CEC993" - cyan: "#9F9B71" - white: "#7F7C5B" - brightBlack: "#EEE8AA" - brightRed: "#AFAA7D" - brightGreen: "#BEBA88" - brightYellow: "#8F8B66" - brightBlue: "#DED99F" - brightMagenta: "#CEC993" - brightCyan: "#9F9B71" - brightWhite: "#7F7C5B" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 91.4 - black: 91.4 - red: 55.4 - green: 64 - yellow: 39.4 - blue: 82.1 - magenta: 72.6 - cyan: 47.4 - white: 32.3 - brightBlack: 91.4 - brightRed: 55.4 - brightGreen: 64 - brightYellow: 39.4 - brightBlue: 82.1 - brightMagenta: 72.6 - brightCyan: 47.4 - brightWhite: 32.3 diff --git a/themes/ohled-palegreen.yaml b/themes/ohled-palegreen.yaml deleted file mode 100644 index fd07f65c..00000000 --- a/themes/ohled-palegreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_PaleGreen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#98FB98" - black: "#98FB98" - red: "#6FB86F" - green: "#7AC97A" - yellow: "#5B975B" - blue: "#8EEA8E" - magenta: "#84DA84" - cyan: "#65A765" - white: "#518651" - brightBlack: "#98FB98" - brightRed: "#6FB86F" - brightGreen: "#7AC97A" - brightYellow: "#5B975B" - brightBlue: "#8EEA8E" - brightMagenta: "#84DA84" - brightCyan: "#65A765" - brightWhite: "#518651" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 90.9 - black: 90.9 - red: 55 - green: 63.6 - yellow: 39.4 - blue: 81.3 - magenta: 72.5 - cyan: 46.8 - white: 32 - brightBlack: 90.9 - brightRed: 55 - brightGreen: 63.6 - brightYellow: 39.4 - brightBlue: 81.3 - brightMagenta: 72.5 - brightCyan: 46.8 - brightWhite: 32 diff --git a/themes/ohled-paleturquoise.yaml b/themes/ohled-paleturquoise.yaml deleted file mode 100644 index e332d617..00000000 --- a/themes/ohled-paleturquoise.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_PaleTurquoise" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#AFEEEE" - black: "#AFEEEE" - red: "#80AFAF" - green: "#8CBEBE" - yellow: "#698F8F" - blue: "#A3DEDE" - magenta: "#98CECE" - cyan: "#759F9F" - white: "#5D7F7F" - brightBlack: "#AFEEEE" - brightRed: "#80AFAF" - brightGreen: "#8CBEBE" - brightYellow: "#698F8F" - brightBlue: "#A3DEDE" - brightMagenta: "#98CECE" - brightCyan: "#759F9F" - brightWhite: "#5D7F7F" -meta: - mode: "dark" - accent: "cyan" - hue: null - pair: null - contrast: - fg: 89.5 - black: 89.5 - red: 54.4 - green: 62.3 - yellow: 38.7 - blue: 80.1 - magenta: 71.1 - cyan: 46.4 - white: 31.4 - brightBlack: 89.5 - brightRed: 54.4 - brightGreen: 62.3 - brightYellow: 38.7 - brightBlue: 80.1 - brightMagenta: 71.1 - brightCyan: 46.4 - brightWhite: 31.4 diff --git a/themes/ohled-palevioletred.yaml b/themes/ohled-palevioletred.yaml deleted file mode 100644 index 27826ee2..00000000 --- a/themes/ohled-palevioletred.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_PaleVioletRed" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#DB7093" - black: "#DB7093" - red: "#A1526C" - green: "#AF5A76" - yellow: "#834358" - blue: "#CC6989" - magenta: "#BE617F" - cyan: "#924B62" - white: "#753C4E" - brightBlack: "#DB7093" - brightRed: "#A1526C" - brightGreen: "#AF5A76" - brightYellow: "#834358" - brightBlue: "#CC6989" - brightMagenta: "#BE617F" - brightCyan: "#924B62" - brightWhite: "#753C4E" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 44.1 - black: 44.1 - red: 25.6 - green: 29.9 - yellow: 17.2 - blue: 39.2 - magenta: 34.4 - cyan: 21.4 - white: 13.6 - brightBlack: 44.1 - brightRed: 25.6 - brightGreen: 29.9 - brightYellow: 17.2 - brightBlue: 39.2 - brightMagenta: 34.4 - brightCyan: 21.4 - brightWhite: 13.6 diff --git a/themes/ohled-papayawhip.yaml b/themes/ohled-papayawhip.yaml deleted file mode 100644 index c22e2941..00000000 --- a/themes/ohled-papayawhip.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_PapayaWhip" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFEFD5" - black: "#FFEFD5" - red: "#BBAF9C" - green: "#CCBFAA" - yellow: "#998F80" - blue: "#EEDFC7" - magenta: "#DDCFB9" - cyan: "#AA9F8E" - white: "#887F72" - brightBlack: "#FFEFD5" - brightRed: "#BBAF9C" - brightGreen: "#CCBFAA" - brightYellow: "#998F80" - brightBlue: "#EEDFC7" - brightMagenta: "#DDCFB9" - brightCyan: "#AA9F8E" - brightWhite: "#887F72" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 98.6 - black: 98.6 - red: 59.8 - green: 68.9 - yellow: 42.7 - blue: 88.3 - magenta: 78.5 - cyan: 51 - white: 34.8 - brightBlack: 98.6 - brightRed: 59.8 - brightGreen: 68.9 - brightYellow: 42.7 - brightBlue: 88.3 - brightMagenta: 78.5 - brightCyan: 51 - brightWhite: 34.8 diff --git a/themes/ohled-peachpuff.yaml b/themes/ohled-peachpuff.yaml deleted file mode 100644 index c9cd2029..00000000 --- a/themes/ohled-peachpuff.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_PeachPuff" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFDAB9" - black: "#FFDAB9" - red: "#BBA088" - green: "#CCAE94" - yellow: "#99836F" - blue: "#EECBAD" - magenta: "#DDBDA0" - cyan: "#AA917B" - white: "#887463" - brightBlack: "#FFDAB9" - brightRed: "#BBA088" - brightGreen: "#CCAE94" - brightYellow: "#99836F" - brightBlue: "#EECBAD" - brightMagenta: "#DDBDA0" - brightCyan: "#AA917B" - brightWhite: "#887463" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 88.2 - black: 88.2 - red: 53.4 - green: 61.4 - yellow: 38.1 - blue: 78.8 - magenta: 70.2 - cyan: 45.4 - white: 30.8 - brightBlack: 88.2 - brightRed: 53.4 - brightGreen: 61.4 - brightYellow: 38.1 - brightBlue: 78.8 - brightMagenta: 70.2 - brightCyan: 45.4 - brightWhite: 30.8 diff --git a/themes/ohled-peru.yaml b/themes/ohled-peru.yaml deleted file mode 100644 index 00149f90..00000000 --- a/themes/ohled-peru.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Peru" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#CD853F" - black: "#CD853F" - red: "#96622E" - green: "#A46A32" - yellow: "#7B5026" - blue: "#BF7C3B" - magenta: "#B27337" - cyan: "#89592A" - white: "#6D4722" - brightBlack: "#CD853F" - brightRed: "#96622E" - brightGreen: "#A46A32" - brightYellow: "#7B5026" - brightBlue: "#BF7C3B" - brightMagenta: "#B27337" - brightCyan: "#89592A" - brightWhite: "#6D4722" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 45.5 - black: 45.5 - red: 26.5 - green: 30.8 - yellow: 18.1 - blue: 40.4 - magenta: 35.6 - cyan: 22.2 - white: 14.1 - brightBlack: 45.5 - brightRed: 26.5 - brightGreen: 30.8 - brightYellow: 18.1 - brightBlue: 40.4 - brightMagenta: 35.6 - brightCyan: 22.2 - brightWhite: 14.1 diff --git a/themes/ohled-pink.yaml b/themes/ohled-pink.yaml deleted file mode 100644 index 84f14916..00000000 --- a/themes/ohled-pink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Pink" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFC0CB" - black: "#FFC0CB" - red: "#BB8D95" - green: "#CC9AA2" - yellow: "#99737A" - blue: "#EEB3BD" - magenta: "#DDA6B0" - cyan: "#AA8087" - white: "#88666C" - brightBlack: "#FFC0CB" - brightRed: "#BB8D95" - brightGreen: "#CC9AA2" - brightYellow: "#99737A" - brightBlue: "#EEB3BD" - brightMagenta: "#DDA6B0" - brightCyan: "#AA8087" - brightWhite: "#88666C" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 78.3 - black: 78.3 - red: 47.2 - green: 54.6 - yellow: 33.3 - blue: 70 - magenta: 62 - cyan: 40.1 - white: 26.9 - brightBlack: 78.3 - brightRed: 47.2 - brightGreen: 54.6 - brightYellow: 33.3 - brightBlue: 70 - brightMagenta: 62 - brightCyan: 40.1 - brightWhite: 26.9 diff --git a/themes/ohled-plum.yaml b/themes/ohled-plum.yaml deleted file mode 100644 index 7fa35385..00000000 --- a/themes/ohled-plum.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Plum" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#DDA0DD" - black: "#DDA0DD" - red: "#A275A2" - green: "#B180B1" - yellow: "#856085" - blue: "#CE95CE" - magenta: "#C08BC0" - cyan: "#936B93" - white: "#765576" - brightBlack: "#DDA0DD" - brightRed: "#A275A2" - brightGreen: "#B180B1" - brightYellow: "#856085" - brightBlue: "#CE95CE" - brightMagenta: "#C08BC0" - brightCyan: "#936B93" - brightWhite: "#765576" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 62 - black: 62 - red: 36.7 - green: 42.8 - yellow: 25.8 - blue: 55.2 - magenta: 49.1 - cyan: 31.2 - white: 20.6 - brightBlack: 62 - brightRed: 36.7 - brightGreen: 42.8 - brightYellow: 25.8 - brightBlue: 55.2 - brightMagenta: 49.1 - brightCyan: 31.2 - brightWhite: 20.6 diff --git a/themes/ohled-powderblue.yaml b/themes/ohled-powderblue.yaml deleted file mode 100644 index f1bbd388..00000000 --- a/themes/ohled-powderblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_PowderBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#B0E0E6" - black: "#B0E0E6" - red: "#81A4A9" - green: "#8DB3B8" - yellow: "#6A868A" - blue: "#A4D1D7" - magenta: "#99C2C7" - cyan: "#759599" - white: "#5E777B" - brightBlack: "#B0E0E6" - brightRed: "#81A4A9" - brightGreen: "#8DB3B8" - brightYellow: "#6A868A" - brightBlue: "#A4D1D7" - brightMagenta: "#99C2C7" - brightCyan: "#759599" - brightWhite: "#5E777B" -meta: - mode: "dark" - accent: "blue" - hue: null - pair: null - contrast: - fg: 82.6 - black: 82.6 - red: 49.7 - green: 57.5 - yellow: 35.3 - blue: 73.9 - magenta: 65.6 - cyan: 42.3 - white: 28.6 - brightBlack: 82.6 - brightRed: 49.7 - brightGreen: 57.5 - brightYellow: 35.3 - brightBlue: 73.9 - brightMagenta: 65.6 - brightCyan: 42.3 - brightWhite: 28.6 diff --git a/themes/ohled-purple.yaml b/themes/ohled-purple.yaml deleted file mode 100644 index 599d2f2d..00000000 --- a/themes/ohled-purple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Purple" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#9C5F9C" - black: "#9C5F9C" - red: "#724672" - green: "#7D4C7D" - yellow: "#5E395E" - blue: "#925992" - magenta: "#875287" - cyan: "#683F68" - white: "#533353" - brightBlack: "#9C5F9C" - brightRed: "#724672" - brightGreen: "#7D4C7D" - brightYellow: "#5E395E" - brightBlue: "#925992" - brightMagenta: "#875287" - brightCyan: "#683F68" - brightWhite: "#533353" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 29.7 - black: 29.7 - red: 16.5 - green: 19.6 - yellow: 10.7 - blue: 26.4 - magenta: 22.7 - cyan: 13.4 - white: 8 - brightBlack: 29.7 - brightRed: 16.5 - brightGreen: 19.6 - brightYellow: 10.7 - brightBlue: 26.4 - brightMagenta: 22.7 - brightCyan: 13.4 - brightWhite: 8 diff --git a/themes/ohled-rebeccapurple.yaml b/themes/ohled-rebeccapurple.yaml deleted file mode 100644 index 9c01f7e7..00000000 --- a/themes/ohled-rebeccapurple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_RebeccaPurple" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#8566AD" - black: "#8566AD" - red: "#624B7F" - green: "#6A528A" - yellow: "#503D68" - blue: "#7C5FA1" - magenta: "#735896" - cyan: "#594473" - white: "#47365C" - brightBlack: "#8566AD" - brightRed: "#624B7F" - brightGreen: "#6A528A" - brightYellow: "#503D68" - brightBlue: "#7C5FA1" - brightMagenta: "#735896" - brightCyan: "#594473" - brightWhite: "#47365C" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 29.4 - black: 29.4 - red: 16.4 - green: 19.4 - yellow: 10.5 - blue: 25.8 - magenta: 22.5 - cyan: 13.3 - white: 7.7 - brightBlack: 29.4 - brightRed: 16.4 - brightGreen: 19.4 - brightYellow: 10.5 - brightBlue: 25.8 - brightMagenta: 22.5 - brightCyan: 13.3 - brightWhite: 7.7 diff --git a/themes/ohled-red.yaml b/themes/ohled-red.yaml deleted file mode 100644 index 63fdc3a2..00000000 --- a/themes/ohled-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Red" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FF0000" - black: "#FF0000" - red: "#BB0000" - green: "#CC0000" - yellow: "#990000" - blue: "#EE0000" - magenta: "#DD0000" - cyan: "#AA0000" - white: "#880000" - brightBlack: "#FF0000" - brightRed: "#BB0000" - brightGreen: "#CC0000" - brightYellow: "#990000" - brightBlue: "#EE0000" - brightMagenta: "#DD0000" - brightCyan: "#AA0000" - brightWhite: "#880000" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 37.5 - black: 37.5 - red: 21.4 - green: 25.2 - yellow: 14.3 - blue: 33.3 - magenta: 29.2 - cyan: 17.8 - white: 11 - brightBlack: 37.5 - brightRed: 21.4 - brightGreen: 25.2 - brightYellow: 14.3 - brightBlue: 33.3 - brightMagenta: 29.2 - brightCyan: 17.8 - brightWhite: 11 diff --git a/themes/ohled-rosybrown.yaml b/themes/ohled-rosybrown.yaml deleted file mode 100644 index d2a2b27f..00000000 --- a/themes/ohled-rosybrown.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_RosyBrown" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#BC8F8F" - black: "#BC8F8F" - red: "#8A6969" - green: "#967272" - yellow: "#715656" - blue: "#AF8585" - magenta: "#A37C7C" - cyan: "#7D5F5F" - white: "#644C4C" - brightBlack: "#BC8F8F" - brightRed: "#8A6969" - brightGreen: "#967272" - brightYellow: "#715656" - brightBlue: "#AF8585" - brightMagenta: "#A37C7C" - brightCyan: "#7D5F5F" - brightWhite: "#644C4C" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 47.8 - black: 47.8 - red: 27.9 - green: 32.4 - yellow: 19.2 - blue: 42.3 - magenta: 37.5 - cyan: 23.2 - white: 14.9 - brightBlack: 47.8 - brightRed: 27.9 - brightGreen: 32.4 - brightYellow: 19.2 - brightBlue: 42.3 - brightMagenta: 37.5 - brightCyan: 23.2 - brightWhite: 14.9 diff --git a/themes/ohled-royalblue.yaml b/themes/ohled-royalblue.yaml deleted file mode 100644 index 88dc65ca..00000000 --- a/themes/ohled-royalblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_RoyalBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#476CE2" - black: "#476CE2" - red: "#344FA6" - green: "#3956B5" - yellow: "#2B4188" - blue: "#4265D3" - magenta: "#3E5EC4" - cyan: "#2F4897" - white: "#263A79" - brightBlack: "#476CE2" - brightRed: "#344FA6" - brightGreen: "#3956B5" - brightYellow: "#2B4188" - brightBlue: "#4265D3" - brightMagenta: "#3E5EC4" - brightCyan: "#2F4897" - brightWhite: "#263A79" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 29.8 - black: 29.8 - red: 16.5 - green: 19.5 - yellow: 10.7 - blue: 26.3 - magenta: 23 - cyan: 13.5 - white: 8.1 - brightBlack: 29.8 - brightRed: 16.5 - brightGreen: 19.5 - brightYellow: 10.7 - brightBlue: 26.3 - brightMagenta: 23 - brightCyan: 13.5 - brightWhite: 8.1 diff --git a/themes/ohled-saddlebrown.yaml b/themes/ohled-saddlebrown.yaml deleted file mode 100644 index 4f07d7d5..00000000 --- a/themes/ohled-saddlebrown.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_SaddleBrown" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#9D6852" - black: "#9D6852" - red: "#734C3C" - green: "#7E5342" - yellow: "#5E3E31" - blue: "#93614D" - magenta: "#885A47" - cyan: "#694537" - white: "#54372C" - brightBlack: "#9D6852" - brightRed: "#734C3C" - brightGreen: "#7E5342" - brightYellow: "#5E3E31" - brightBlue: "#93614D" - brightMagenta: "#885A47" - brightCyan: "#694537" - brightWhite: "#54372C" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 29.7 - black: 29.7 - red: 16.4 - green: 19.6 - yellow: 10.5 - blue: 26.2 - magenta: 22.8 - cyan: 13.4 - white: 7.9 - brightBlack: 29.7 - brightRed: 16.4 - brightGreen: 19.6 - brightYellow: 10.5 - brightBlue: 26.2 - brightMagenta: 22.8 - brightCyan: 13.4 - brightWhite: 7.9 diff --git a/themes/ohled-salmon.yaml b/themes/ohled-salmon.yaml deleted file mode 100644 index eaf60e6f..00000000 --- a/themes/ohled-salmon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Salmon" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FA8072" - black: "#FA8072" - red: "#B75E54" - green: "#C8665B" - yellow: "#964D44" - blue: "#E9776A" - magenta: "#D96F63" - cyan: "#A7554C" - white: "#85443D" - brightBlack: "#FA8072" - brightRed: "#B75E54" - brightGreen: "#C8665B" - brightYellow: "#964D44" - brightBlue: "#E9776A" - brightMagenta: "#D96F63" - brightCyan: "#A7554C" - brightWhite: "#85443D" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 53.3 - black: 53.3 - red: 31.3 - green: 36.4 - yellow: 21.7 - blue: 47.3 - magenta: 42 - cyan: 26.4 - white: 17.1 - brightBlack: 53.3 - brightRed: 31.3 - brightGreen: 36.4 - brightYellow: 21.7 - brightBlue: 47.3 - brightMagenta: 42 - brightCyan: 26.4 - brightWhite: 17.1 diff --git a/themes/ohled-sandybrown.yaml b/themes/ohled-sandybrown.yaml deleted file mode 100644 index 1e8bcf97..00000000 --- a/themes/ohled-sandybrown.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_SandyBrown" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#F4A460" - black: "#F4A460" - red: "#B37846" - green: "#C3834D" - yellow: "#92623A" - blue: "#E4995A" - magenta: "#D38E53" - cyan: "#A36D40" - white: "#825733" - brightBlack: "#F4A460" - brightRed: "#B37846" - brightGreen: "#C3834D" - brightYellow: "#92623A" - brightBlue: "#E4995A" - brightMagenta: "#D38E53" - brightCyan: "#A36D40" - brightWhite: "#825733" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 63 - black: 63 - red: 37.4 - green: 43.4 - yellow: 26 - blue: 56.3 - magenta: 49.6 - cyan: 31.6 - white: 20.9 - brightBlack: 63 - brightRed: 37.4 - brightGreen: 43.4 - brightYellow: 26 - brightBlue: 56.3 - brightMagenta: 49.6 - brightCyan: 31.6 - brightWhite: 20.9 diff --git a/themes/ohled-seagreen.yaml b/themes/ohled-seagreen.yaml deleted file mode 100644 index bb42c10b..00000000 --- a/themes/ohled-seagreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_SeaGreen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#2E8B57" - black: "#2E8B57" - red: "#226640" - green: "#256F46" - yellow: "#1C5334" - blue: "#2B8251" - magenta: "#28784B" - cyan: "#1F5D3A" - white: "#194A2E" - brightBlack: "#2E8B57" - brightRed: "#226640" - brightGreen: "#256F46" - brightYellow: "#1C5334" - brightBlue: "#2B8251" - brightMagenta: "#28784B" - brightCyan: "#1F5D3A" - brightWhite: "#194A2E" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 32.7 - black: 32.7 - red: 18.4 - green: 21.6 - yellow: 11.9 - blue: 29 - magenta: 25.1 - cyan: 15.2 - white: 9.1 - brightBlack: 32.7 - brightRed: 18.4 - brightGreen: 21.6 - brightYellow: 11.9 - brightBlue: 29 - brightMagenta: 25.1 - brightCyan: 15.2 - brightWhite: 9.1 diff --git a/themes/ohled-seashell.yaml b/themes/ohled-seashell.yaml deleted file mode 100644 index e9e81b2a..00000000 --- a/themes/ohled-seashell.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_SeaShell" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFF5EE" - black: "#FFF5EE" - red: "#BBB4AF" - green: "#CCC4BE" - yellow: "#99938F" - blue: "#EEE5DE" - magenta: "#DDD4CE" - cyan: "#AAA39F" - white: "#88837F" - brightBlack: "#FFF5EE" - brightRed: "#BBB4AF" - brightGreen: "#CCC4BE" - brightYellow: "#99938F" - brightBlue: "#EEE5DE" - brightMagenta: "#DDD4CE" - brightCyan: "#AAA39F" - brightWhite: "#88837F" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 102.4 - black: 102.4 - red: 62.4 - green: 71.7 - yellow: 44.6 - blue: 92 - magenta: 81.4 - cyan: 53.1 - white: 36.6 - brightBlack: 102.4 - brightRed: 62.4 - brightGreen: 71.7 - brightYellow: 44.6 - brightBlue: 92 - brightMagenta: 81.4 - brightCyan: 53.1 - brightWhite: 36.6 diff --git a/themes/ohled-sienna.yaml b/themes/ohled-sienna.yaml deleted file mode 100644 index c274268f..00000000 --- a/themes/ohled-sienna.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Sienna" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#A86248" - black: "#A86248" - red: "#7B4835" - green: "#864E3A" - yellow: "#653B2B" - blue: "#9D5B43" - magenta: "#92553E" - cyan: "#704130" - white: "#5A3426" - brightBlack: "#A86248" - brightRed: "#7B4835" - brightGreen: "#864E3A" - brightYellow: "#653B2B" - brightBlue: "#9D5B43" - brightMagenta: "#92553E" - brightCyan: "#704130" - brightWhite: "#5A3426" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 29.6 - black: 29.6 - red: 16.4 - green: 19.3 - yellow: 10.6 - blue: 26 - magenta: 22.8 - cyan: 13.3 - white: 7.9 - brightBlack: 29.6 - brightRed: 16.4 - brightGreen: 19.3 - brightYellow: 10.6 - brightBlue: 26 - brightMagenta: 22.8 - brightCyan: 13.3 - brightWhite: 7.9 diff --git a/themes/ohled-silver.yaml b/themes/ohled-silver.yaml deleted file mode 100644 index c6935b4e..00000000 --- a/themes/ohled-silver.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Silver" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#C0C0C0" - black: "#C0C0C0" - red: "#8D8D8D" - green: "#9A9A9A" - yellow: "#737373" - blue: "#B3B3B3" - magenta: "#A6A6A6" - cyan: "#808080" - white: "#666666" - brightBlack: "#C0C0C0" - brightRed: "#8D8D8D" - brightGreen: "#9A9A9A" - brightYellow: "#737373" - brightBlue: "#B3B3B3" - brightMagenta: "#A6A6A6" - brightCyan: "#808080" - brightWhite: "#666666" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 68.6 - black: 68.6 - red: 41.1 - green: 47.7 - yellow: 28.7 - blue: 61.2 - magenta: 54.1 - cyan: 34.8 - white: 23 - brightBlack: 68.6 - brightRed: 41.1 - brightGreen: 47.7 - brightYellow: 28.7 - brightBlue: 61.2 - brightMagenta: 54.1 - brightCyan: 34.8 - brightWhite: 23 diff --git a/themes/ohled-skyblue.yaml b/themes/ohled-skyblue.yaml deleted file mode 100644 index 5ab95d15..00000000 --- a/themes/ohled-skyblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_SkyBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#87CEEB" - black: "#87CEEB" - red: "#6397AC" - green: "#6CA5BC" - yellow: "#517C8D" - blue: "#7EC0DB" - magenta: "#75B3CC" - cyan: "#5A899D" - white: "#486E7D" - brightBlack: "#87CEEB" - brightRed: "#6397AC" - brightGreen: "#6CA5BC" - brightYellow: "#517C8D" - brightBlue: "#7EC0DB" - brightMagenta: "#75B3CC" - brightCyan: "#5A899D" - brightWhite: "#486E7D" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 71.2 - black: 71.2 - red: 42.6 - green: 49.4 - yellow: 30.2 - blue: 63.5 - magenta: 56.5 - cyan: 36 - white: 24.2 - brightBlack: 71.2 - brightRed: 42.6 - brightGreen: 49.4 - brightYellow: 30.2 - brightBlue: 63.5 - brightMagenta: 56.5 - brightCyan: 36 - brightWhite: 24.2 diff --git a/themes/ohled-slateblue.yaml b/themes/ohled-slateblue.yaml deleted file mode 100644 index 965545b3..00000000 --- a/themes/ohled-slateblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_SlateBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#7365D1" - black: "#7365D1" - red: "#544A99" - green: "#5C51A7" - yellow: "#453D7D" - blue: "#6B5EC3" - magenta: "#6458B5" - cyan: "#4D438B" - white: "#3D366F" - brightBlack: "#7365D1" - brightRed: "#544A99" - brightGreen: "#5C51A7" - brightYellow: "#453D7D" - brightBlue: "#6B5EC3" - brightMagenta: "#6458B5" - brightCyan: "#4D438B" - brightWhite: "#3D366F" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 29.6 - black: 29.6 - red: 16.3 - green: 19.5 - yellow: 10.6 - blue: 26 - magenta: 22.9 - cyan: 13.3 - white: 7.9 - brightBlack: 29.6 - brightRed: 16.3 - brightGreen: 19.5 - brightYellow: 10.6 - brightBlue: 26 - brightMagenta: 22.9 - brightCyan: 13.3 - brightWhite: 7.9 diff --git a/themes/ohled-slategray.yaml b/themes/ohled-slategray.yaml deleted file mode 100644 index 973f1b29..00000000 --- a/themes/ohled-slategray.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_SlateGray" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#708090" - black: "#708090" - red: "#525E6A" - green: "#5A6673" - yellow: "#434D56" - blue: "#697786" - magenta: "#616F7D" - cyan: "#4B5560" - white: "#3C444D" - brightBlack: "#708090" - brightRed: "#525E6A" - brightGreen: "#5A6673" - brightYellow: "#434D56" - brightBlue: "#697786" - brightMagenta: "#616F7D" - brightCyan: "#4B5560" - brightWhite: "#3C444D" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 33.9 - black: 33.9 - red: 19.1 - green: 22.5 - yellow: 12.6 - blue: 29.8 - magenta: 26.2 - cyan: 15.7 - white: 9.5 - brightBlack: 33.9 - brightRed: 19.1 - brightGreen: 22.5 - brightYellow: 12.6 - brightBlue: 29.8 - brightMagenta: 26.2 - brightCyan: 15.7 - brightWhite: 9.5 diff --git a/themes/ohled-snow.yaml b/themes/ohled-snow.yaml deleted file mode 100644 index d862037c..00000000 --- a/themes/ohled-snow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Snow" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFFAFA" - black: "#FFFAFA" - red: "#BBB7B7" - green: "#CCC8C8" - yellow: "#999696" - blue: "#EEE9E9" - magenta: "#DDD9D9" - cyan: "#AAA7A7" - white: "#888585" - brightBlack: "#FFFAFA" - brightRed: "#BBB7B7" - brightGreen: "#CCC8C8" - brightYellow: "#999696" - brightBlue: "#EEE9E9" - brightMagenta: "#DDD9D9" - brightCyan: "#AAA7A7" - brightWhite: "#888585" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 105.3 - black: 105.3 - red: 64 - green: 73.8 - yellow: 46 - blue: 94.2 - magenta: 84.1 - cyan: 55 - white: 37.5 - brightBlack: 105.3 - brightRed: 64 - brightGreen: 73.8 - brightYellow: 46 - brightBlue: 94.2 - brightMagenta: 84.1 - brightCyan: 55 - brightWhite: 37.5 diff --git a/themes/ohled-springgreen.yaml b/themes/ohled-springgreen.yaml deleted file mode 100644 index 9f883985..00000000 --- a/themes/ohled-springgreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_SpringGreen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#00FF7F" - black: "#00FF7F" - red: "#00BB5D" - green: "#00CC66" - yellow: "#00994C" - blue: "#00EE77" - magenta: "#00DD6E" - cyan: "#00AA55" - white: "#008844" - brightBlack: "#00FF7F" - brightRed: "#00BB5D" - brightGreen: "#00CC66" - brightYellow: "#00994C" - brightBlue: "#00EE77" - brightMagenta: "#00DD6E" - brightCyan: "#00AA55" - brightWhite: "#008844" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 87.6 - black: 87.6 - red: 52.9 - green: 61.1 - yellow: 37.7 - blue: 78.4 - magenta: 69.6 - cyan: 45.1 - white: 30.7 - brightBlack: 87.6 - brightRed: 52.9 - brightGreen: 61.1 - brightYellow: 37.7 - brightBlue: 78.4 - brightMagenta: 69.6 - brightCyan: 45.1 - brightWhite: 30.7 diff --git a/themes/ohled-steelblue.yaml b/themes/ohled-steelblue.yaml deleted file mode 100644 index 384b34d9..00000000 --- a/themes/ohled-steelblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_SteelBlue" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#4682B4" - black: "#4682B4" - red: "#335F84" - green: "#386890" - yellow: "#2A4E6C" - blue: "#4179A8" - magenta: "#3D719C" - cyan: "#2F5778" - white: "#254560" - brightBlack: "#4682B4" - brightRed: "#335F84" - brightGreen: "#386890" - brightYellow: "#2A4E6C" - brightBlue: "#4179A8" - brightMagenta: "#3D719C" - brightCyan: "#2F5778" - brightWhite: "#254560" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 33.6 - black: 33.6 - red: 18.8 - green: 22.4 - yellow: 12.5 - blue: 29.6 - magenta: 26.1 - cyan: 15.7 - white: 9.4 - brightBlack: 33.6 - brightRed: 18.8 - brightGreen: 22.4 - brightYellow: 12.5 - brightBlue: 29.6 - brightMagenta: 26.1 - brightCyan: 15.7 - brightWhite: 9.4 diff --git a/themes/ohled-tan.yaml b/themes/ohled-tan.yaml deleted file mode 100644 index 618cee2e..00000000 --- a/themes/ohled-tan.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Tan" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#D2B48C" - black: "#D2B48C" - red: "#9A8467" - green: "#A89070" - yellow: "#7E6C54" - blue: "#C4A883" - magenta: "#B69C79" - cyan: "#8C785D" - white: "#70604B" - brightBlack: "#D2B48C" - brightRed: "#9A8467" - brightGreen: "#A89070" - brightYellow: "#7E6C54" - brightBlue: "#C4A883" - brightMagenta: "#B69C79" - brightCyan: "#8C785D" - brightWhite: "#70604B" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 64.4 - black: 64.4 - red: 38.3 - green: 44.5 - yellow: 26.8 - blue: 57.5 - magenta: 50.8 - cyan: 32.4 - white: 21.6 - brightBlack: 64.4 - brightRed: 38.3 - brightGreen: 44.5 - brightYellow: 26.8 - brightBlue: 57.5 - brightMagenta: 50.8 - brightCyan: 32.4 - brightWhite: 21.6 diff --git a/themes/ohled-teal.yaml b/themes/ohled-teal.yaml deleted file mode 100644 index eff62440..00000000 --- a/themes/ohled-teal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Teal" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#128282" - black: "#128282" - red: "#0D5F5F" - green: "#0E6868" - yellow: "#0B4E4E" - blue: "#117979" - magenta: "#107171" - cyan: "#0C5757" - white: "#0A4545" - brightBlack: "#128282" - brightRed: "#0D5F5F" - brightGreen: "#0E6868" - brightYellow: "#0B4E4E" - brightBlue: "#117979" - brightMagenta: "#107171" - brightCyan: "#0C5757" - brightWhite: "#0A4545" -meta: - mode: "dark" - accent: "cyan" - hue: null - pair: null - contrast: - fg: 30 - black: 30 - red: 16.5 - green: 19.8 - yellow: 10.8 - blue: 26.4 - magenta: 23.2 - cyan: 13.8 - white: 8 - brightBlack: 30 - brightRed: 16.5 - brightGreen: 19.8 - brightYellow: 10.8 - brightBlue: 26.4 - brightMagenta: 23.2 - brightCyan: 13.8 - brightWhite: 8 diff --git a/themes/ohled-thistle.yaml b/themes/ohled-thistle.yaml deleted file mode 100644 index 8cec593e..00000000 --- a/themes/ohled-thistle.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Thistle" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#D8BFD8" - black: "#D8BFD8" - red: "#9E8C9E" - green: "#AD99AD" - yellow: "#827382" - blue: "#CAB2CA" - magenta: "#BBA6BB" - cyan: "#907F90" - white: "#736673" - brightBlack: "#D8BFD8" - brightRed: "#9E8C9E" - brightGreen: "#AD99AD" - brightYellow: "#827382" - brightBlue: "#CAB2CA" - brightMagenta: "#BBA6BB" - brightCyan: "#907F90" - brightWhite: "#736673" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 72.5 - black: 72.5 - red: 43.3 - green: 50.4 - yellow: 30.8 - blue: 64.8 - magenta: 57.5 - cyan: 36.8 - white: 24.7 - brightBlack: 72.5 - brightRed: 43.3 - brightGreen: 50.4 - brightYellow: 30.8 - brightBlue: 64.8 - brightMagenta: 57.5 - brightCyan: 36.8 - brightWhite: 24.7 diff --git a/themes/ohled-tomato.yaml b/themes/ohled-tomato.yaml deleted file mode 100644 index 9cb71e33..00000000 --- a/themes/ohled-tomato.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Tomato" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FF6347" - black: "#FF6347" - red: "#BB4934" - green: "#CC4F39" - yellow: "#993B2B" - blue: "#EE5C42" - magenta: "#DD563E" - cyan: "#AA422F" - white: "#883526" - brightBlack: "#FF6347" - brightRed: "#BB4934" - brightGreen: "#CC4F39" - brightYellow: "#993B2B" - brightBlue: "#EE5C42" - brightMagenta: "#DD563E" - brightCyan: "#AA422F" - brightWhite: "#883526" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 46.8 - black: 46.8 - red: 27.3 - green: 31.8 - yellow: 18.6 - blue: 41.5 - magenta: 36.7 - cyan: 22.8 - white: 14.7 - brightBlack: 46.8 - brightRed: 27.3 - brightGreen: 31.8 - brightYellow: 18.6 - brightBlue: 41.5 - brightMagenta: 36.7 - brightCyan: 22.8 - brightWhite: 14.7 diff --git a/themes/ohled-turquoise.yaml b/themes/ohled-turquoise.yaml deleted file mode 100644 index ba49c6f2..00000000 --- a/themes/ohled-turquoise.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Turquoise" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#40E0D0" - black: "#40E0D0" - red: "#2FA499" - green: "#33B3A6" - yellow: "#26867D" - blue: "#3CD1C2" - magenta: "#37C2B4" - cyan: "#2B958B" - white: "#22776F" - brightBlack: "#40E0D0" - brightRed: "#2FA499" - brightGreen: "#33B3A6" - brightYellow: "#26867D" - brightBlue: "#3CD1C2" - brightMagenta: "#37C2B4" - brightCyan: "#2B958B" - brightWhite: "#22776F" -meta: - mode: "dark" - accent: "cyan" - hue: null - pair: null - contrast: - fg: 74.9 - black: 74.9 - red: 44.8 - green: 51.9 - yellow: 31.6 - blue: 66.9 - magenta: 59.2 - cyan: 38.1 - white: 25.5 - brightBlack: 74.9 - brightRed: 44.8 - brightGreen: 51.9 - brightYellow: 31.6 - brightBlue: 66.9 - brightMagenta: 59.2 - brightCyan: 38.1 - brightWhite: 25.5 diff --git a/themes/ohled-violet.yaml b/themes/ohled-violet.yaml deleted file mode 100644 index fbb469f4..00000000 --- a/themes/ohled-violet.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Violet" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#EE82EE" - black: "#EE82EE" - red: "#AF5FAF" - green: "#BE68BE" - yellow: "#8F4E8F" - blue: "#DE79DE" - magenta: "#CE71CE" - cyan: "#9F579F" - white: "#7F457F" - brightBlack: "#EE82EE" - brightRed: "#AF5FAF" - brightGreen: "#BE68BE" - brightYellow: "#8F4E8F" - brightBlue: "#DE79DE" - brightMagenta: "#CE71CE" - brightCyan: "#9F579F" - brightWhite: "#7F457F" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 56.8 - black: 56.8 - red: 33.6 - green: 38.9 - yellow: 23.3 - blue: 50.5 - magenta: 44.8 - cyan: 28.4 - white: 18.5 - brightBlack: 56.8 - brightRed: 33.6 - brightGreen: 38.9 - brightYellow: 23.3 - brightBlue: 50.5 - brightMagenta: 44.8 - brightCyan: 28.4 - brightWhite: 18.5 diff --git a/themes/ohled-wheat.yaml b/themes/ohled-wheat.yaml deleted file mode 100644 index cdb6c9fa..00000000 --- a/themes/ohled-wheat.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Wheat" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#F5DEB3" - black: "#F5DEB3" - red: "#B4A383" - green: "#C4B28F" - yellow: "#93856B" - blue: "#E5CFA7" - magenta: "#D4C09B" - cyan: "#A39477" - white: "#83765F" - brightBlack: "#F5DEB3" - brightRed: "#B4A383" - brightGreen: "#C4B28F" - brightYellow: "#93856B" - brightBlue: "#E5CFA7" - brightMagenta: "#D4C09B" - brightCyan: "#A39477" - brightWhite: "#83765F" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 88.2 - black: 88.2 - red: 53.5 - green: 61.7 - yellow: 37.9 - blue: 79 - magenta: 69.9 - cyan: 45.4 - white: 30.8 - brightBlack: 88.2 - brightRed: 53.5 - brightGreen: 61.7 - brightYellow: 37.9 - brightBlue: 79 - brightMagenta: 69.9 - brightCyan: 45.4 - brightWhite: 30.8 diff --git a/themes/ohled-white.yaml b/themes/ohled-white.yaml deleted file mode 100644 index 8879db45..00000000 --- a/themes/ohled-white.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_White" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#FFFFFF" - red: "#BBBBBB" - green: "#CCCCCC" - yellow: "#999999" - blue: "#EEEEEE" - magenta: "#DDDDDD" - cyan: "#AAAAAA" - white: "#888888" - brightBlack: "#FFFFFF" - brightRed: "#BBBBBB" - brightGreen: "#CCCCCC" - brightYellow: "#999999" - brightBlue: "#EEEEEE" - brightMagenta: "#DDDDDD" - brightCyan: "#AAAAAA" - brightWhite: "#888888" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 107.9 - black: 107.9 - red: 65.7 - green: 75.7 - yellow: 47.2 - blue: 96.8 - magenta: 86 - cyan: 56.2 - white: 38.6 - brightBlack: 107.9 - brightRed: 65.7 - brightGreen: 75.7 - brightYellow: 47.2 - brightBlue: 96.8 - brightMagenta: 86 - brightCyan: 56.2 - brightWhite: 38.6 diff --git a/themes/ohled-whitesmoke.yaml b/themes/ohled-whitesmoke.yaml deleted file mode 100644 index 007b0551..00000000 --- a/themes/ohled-whitesmoke.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_WhiteSmoke" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#F5F5F5" - black: "#F5F5F5" - red: "#B4B4B4" - green: "#C4C4C4" - yellow: "#939393" - blue: "#E5E5E5" - magenta: "#D4D4D4" - cyan: "#A3A3A3" - white: "#838383" - brightBlack: "#F5F5F5" - brightRed: "#B4B4B4" - brightGreen: "#C4C4C4" - brightYellow: "#939393" - brightBlue: "#E5E5E5" - brightMagenta: "#D4D4D4" - brightCyan: "#A3A3A3" - brightWhite: "#838383" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 101.3 - black: 101.3 - red: 61.8 - green: 70.9 - yellow: 44.1 - blue: 91 - magenta: 80.5 - cyan: 52.5 - white: 36.2 - brightBlack: 101.3 - brightRed: 61.8 - brightGreen: 70.9 - brightYellow: 44.1 - brightBlue: 91 - brightMagenta: 80.5 - brightCyan: 52.5 - brightWhite: 36.2 diff --git a/themes/ohled-yellow.yaml b/themes/ohled-yellow.yaml deleted file mode 100644 index 0a6fa0b4..00000000 --- a/themes/ohled-yellow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_Yellow" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFFF00" - black: "#FFFF00" - red: "#BBBB00" - green: "#CCCC00" - yellow: "#999900" - blue: "#EEEE00" - magenta: "#DDDD00" - cyan: "#AAAA00" - white: "#888800" - brightBlack: "#FFFF00" - brightRed: "#BBBB00" - brightGreen: "#CCCC00" - brightYellow: "#999900" - brightBlue: "#EEEE00" - brightMagenta: "#DDDD00" - brightCyan: "#AAAA00" - brightWhite: "#888800" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 102.7 - black: 102.7 - red: 62.5 - green: 72 - yellow: 44.8 - blue: 92.1 - magenta: 81.8 - cyan: 53.4 - white: 36.6 - brightBlack: 102.7 - brightRed: 62.5 - brightGreen: 72 - brightYellow: 44.8 - brightBlue: 92.1 - brightMagenta: 81.8 - brightCyan: 53.4 - brightWhite: 36.6 diff --git a/themes/ohled-yellowgreen.yaml b/themes/ohled-yellowgreen.yaml deleted file mode 100644 index 6fb0e5cf..00000000 --- a/themes/ohled-yellowgreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_YellowGreen" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#9ACD32" - black: "#9ACD32" - red: "#719625" - green: "#7BA428" - yellow: "#5C7B1E" - blue: "#90BF2F" - magenta: "#85B22B" - cyan: "#678921" - white: "#526D1B" - brightBlack: "#9ACD32" - brightRed: "#719625" - brightGreen: "#7BA428" - brightYellow: "#5C7B1E" - brightBlue: "#90BF2F" - brightMagenta: "#85B22B" - brightCyan: "#678921" - brightWhite: "#526D1B" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 67 - black: 67 - red: 39.8 - green: 46.3 - yellow: 28 - blue: 59.7 - magenta: 53.1 - cyan: 34 - white: 22.5 - brightBlack: 67 - brightRed: 39.8 - brightGreen: 46.3 - brightYellow: 28 - brightBlue: 59.7 - brightMagenta: 53.1 - brightCyan: 34 - brightWhite: 22.5 diff --git a/themes/ohled-yelloworange.yaml b/themes/ohled-yelloworange.yaml deleted file mode 100644 index 6bca043e..00000000 --- a/themes/ohled-yelloworange.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_YellowOrange" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFAE42" - black: "#FFAE42" - red: "#BB8030" - green: "#CC8B35" - yellow: "#996828" - blue: "#EEA23E" - magenta: "#DD9739" - cyan: "#AA742C" - white: "#885D23" - brightBlack: "#FFAE42" - brightRed: "#BB8030" - brightGreen: "#CC8B35" - brightYellow: "#996828" - brightBlue: "#EEA23E" - brightMagenta: "#DD9739" - brightCyan: "#AA742C" - brightWhite: "#885D23" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 68.2 - black: 68.2 - red: 40.8 - green: 47.1 - yellow: 28.5 - blue: 60.8 - magenta: 54 - cyan: 34.5 - white: 23.1 - brightBlack: 68.2 - brightRed: 40.8 - brightGreen: 47.1 - brightYellow: 28.5 - brightBlue: 60.8 - brightMagenta: 54 - brightCyan: 34.5 - brightWhite: 23.1 diff --git a/themes/ohled-yellowpink.yaml b/themes/ohled-yellowpink.yaml deleted file mode 100644 index a362a012..00000000 --- a/themes/ohled-yellowpink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_YellowPink" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFB0B0" - black: "#FFB0B0" - red: "#BB8181" - green: "#CC8D8D" - yellow: "#996A6A" - blue: "#EEA4A4" - magenta: "#DD9999" - cyan: "#AA7575" - white: "#885E5E" - brightBlack: "#FFB0B0" - brightRed: "#BB8181" - brightGreen: "#CC8D8D" - brightYellow: "#996A6A" - brightBlue: "#EEA4A4" - brightMagenta: "#DD9999" - brightCyan: "#AA7575" - brightWhite: "#885E5E" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 71.3 - black: 71.3 - red: 42.7 - green: 49.5 - yellow: 30.2 - blue: 63.7 - magenta: 56.7 - cyan: 36.1 - white: 24.3 - brightBlack: 71.3 - brightRed: 42.7 - brightGreen: 49.5 - brightYellow: 30.2 - brightBlue: 63.7 - brightMagenta: 56.7 - brightCyan: 36.1 - brightWhite: 24.3 diff --git a/themes/ohled-yellowpurple.yaml b/themes/ohled-yellowpurple.yaml deleted file mode 100644 index c4699e00..00000000 --- a/themes/ohled-yellowpurple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OhLED_YellowPurple" -source: - marketplace_id: "Ophuscado.ohled-themes" - version: "1.0.1" - installs: 10963 - rating: 3 - ratings: 2 - author: "Ophuscado" - repo: "https://github.com/Ophuscado/vscode-ohled-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" -colors: - bg: "#000000" - fg: "#FFB0FF" - black: "#FFB0FF" - red: "#BB81BB" - green: "#CC8DCC" - yellow: "#996A99" - blue: "#EEA4EE" - magenta: "#DD99DD" - cyan: "#AA75AA" - white: "#885E88" - brightBlack: "#FFB0FF" - brightRed: "#BB81BB" - brightGreen: "#CC8DCC" - brightYellow: "#996A99" - brightBlue: "#EEA4EE" - brightMagenta: "#DD99DD" - brightCyan: "#AA75AA" - brightWhite: "#885E88" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 75.1 - black: 75.1 - red: 45 - green: 52.2 - yellow: 32 - blue: 67.1 - magenta: 59.7 - cyan: 38.2 - white: 25.8 - brightBlack: 75.1 - brightRed: 45 - brightGreen: 52.2 - brightYellow: 32 - brightBlue: 67.1 - brightMagenta: 59.7 - brightCyan: 38.2 - brightWhite: 25.8 diff --git a/themes/okas-theme.yaml b/themes/okas-theme.yaml index 17116181..949100c7 100644 --- a/themes/okas-theme.yaml +++ b/themes/okas-theme.yaml @@ -8,6 +8,7 @@ source: author: "Breno de Freitas" repo: null url: "https://marketplace.visualstudio.com/items?itemName=brenokas.okas-theme" + formats: null colors: bg: "#1D1D1D" fg: "#B4B4B4" diff --git a/themes/oldschool-terminal-green.yaml b/themes/oldschool-terminal-green.yaml deleted file mode 100644 index 4f517fbe..00000000 --- a/themes/oldschool-terminal-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Oldschool Terminal (Green)" -source: - marketplace_id: "ericson-willians.oldschool-theme-win95-edition" - version: "1.0.0" - installs: 6536 - rating: 5 - ratings: 2 - author: "Ericson Willians Rocha Pires" - repo: "https://github.com/EricsonWillians/oldschool-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.oldschool-theme-win95-edition" -colors: - bg: "#000000" - fg: "#00FF00" - black: "#000000" - red: "#FF0000" - green: "#33FF00" - yellow: "#FFFF00" - blue: "#3333FF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#CCCCCC" - brightBlack: "#666666" - brightRed: "#FF6666" - brightGreen: "#66FF66" - brightYellow: "#FFFF66" - brightBlue: "#6666FF" - brightMagenta: "#FF66FF" - brightCyan: "#66FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 86.5 - black: 0 - red: 37.5 - green: 86.8 - yellow: 102.7 - blue: 19.8 - magenta: 46.2 - cyan: 92.2 - white: 75.7 - brightBlack: 23 - brightRed: 47.9 - brightGreen: 89 - brightYellow: 103.3 - brightBlue: 32.6 - brightMagenta: 54.8 - brightCyan: 94 - brightWhite: 107.9 diff --git a/themes/oldworld.yaml b/themes/oldworld.yaml index c8b03f9b..feacbbb6 100644 --- a/themes/oldworld.yaml +++ b/themes/oldworld.yaml @@ -2,12 +2,13 @@ name: "OldWorld" source: marketplace_id: "diegogomez16.oldworld" version: "0.0.6" - installs: 163 + installs: 164 rating: 0 ratings: 0 author: "diego.gomez16" repo: "https://github.com/dgox16/oldworld.vscode" url: "https://marketplace.visualstudio.com/items?itemName=diegogomez16.oldworld" + formats: null colors: bg: "#161617" fg: "#C9C7CD" diff --git a/themes/oledge.yaml b/themes/oledge.yaml index 4a5e241d..76331c56 100644 --- a/themes/oledge.yaml +++ b/themes/oledge.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "axross.vscode-theme-oledge" version: "1.0.0" installs: 257 + rating: 0 + ratings: 0 author: "axross" repo: "https://github.com/axross/vscode-theme-oledge" url: "https://marketplace.visualstudio.com/items?itemName=axross.vscode-theme-oledge" + formats: null colors: bg: "#000000" fg: "#D1D5DB" diff --git a/themes/olive-dark.yaml b/themes/olive-dark.yaml index a8ea32e5..cb4d7c96 100644 --- a/themes/olive-dark.yaml +++ b/themes/olive-dark.yaml @@ -8,6 +8,7 @@ source: author: "Jeigsaw" repo: "https://github.com/Jeigsaw/olive-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jeigsaw.olive-dark-theme" + formats: null colors: bg: "#1F1F1E" fg: "#A7A7A7" diff --git a/themes/olive-light.yaml b/themes/olive-light.yaml index a1f8087d..a5b332ce 100644 --- a/themes/olive-light.yaml +++ b/themes/olive-light.yaml @@ -8,6 +8,7 @@ source: author: "Jeigsaw" repo: "https://github.com/Jeigsaw/olive-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=Jeigsaw.olive-light-theme" + formats: null colors: bg: "#FBFBFB" fg: "#4D4D4D" diff --git a/themes/omega.yaml b/themes/omega.yaml index 2734a427..f8f1aa1e 100644 --- a/themes/omega.yaml +++ b/themes/omega.yaml @@ -8,6 +8,7 @@ source: author: "Royal Cat Studios" repo: "https://github.com/connordavis107/omega-dark" url: "https://marketplace.visualstudio.com/items?itemName=royal-cat-studios.omega-dark" + formats: null colors: bg: "#0C0C0C" fg: "#D7EBE0" diff --git a/themes/omni-customized-dark.yaml b/themes/omni-customized-dark.yaml deleted file mode 100644 index 45afc39f..00000000 --- a/themes/omni-customized-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Omni Customized Dark" -source: - marketplace_id: "adrian7123.theme-omni-customized-dark" - version: "1.0.2" - installs: 4030 - rating: 0 - ratings: 0 - author: "adrian7123" - repo: "https://github.com/adrian7123/vs-code-omni-customized-dark" - url: "https://marketplace.visualstudio.com/items?itemName=adrian7123.theme-omni-customized-dark" -colors: - bg: "#000000" - fg: "#E1E1E6" - black: "#000000" - red: "#FF79C6" - green: "#67E480" - yellow: "#E7DE79" - blue: "#78D1E1" - magenta: "#988BC7" - cyan: "#A1EFE4" - white: "#E1E1E6" - brightBlack: "#626483" - brightRed: "#ED4556" - brightGreen: "#00F769" - brightYellow: "#E7DE79" - brightBlue: "#78D1E1" - brightMagenta: "#988BC7" - brightCyan: "#A4FFFF" - brightWhite: "#F7F7FB" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 88.7 - black: 0 - red: 55.6 - green: 75.6 - yellow: 84.7 - blue: 71 - magenta: 44.3 - cyan: 88.3 - white: 88.7 - brightBlack: 23.2 - brightRed: 37.8 - brightGreen: 82.9 - brightYellow: 84.7 - brightBlue: 71 - brightMagenta: 44.3 - brightCyan: 97.8 - brightWhite: 102.8 diff --git a/themes/omni-customized.yaml b/themes/omni-customized.yaml deleted file mode 100644 index 67bf6751..00000000 --- a/themes/omni-customized.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Omni Customized" -source: - marketplace_id: "dtsf.theme-omni-customized" - version: "1.0.10" - installs: 7087 - rating: 0 - ratings: 0 - author: "datsfilipe" - repo: "https://github.com/datsfilipe/vs-code-omni-customized" - url: "https://marketplace.visualstudio.com/items?itemName=dtsf.theme-omni-customized" -colors: - bg: "#191919" - fg: "#E1E1E6" - black: "#161616" - red: "#FF79C6" - green: "#67E480" - yellow: "#E7DE79" - blue: "#78D1E1" - magenta: "#988BC7" - cyan: "#A1EFE4" - white: "#E1E1E6" - brightBlack: "#626483" - brightRed: "#ED4556" - brightGreen: "#00F769" - brightYellow: "#E7DE79" - brightBlue: "#78D1E1" - brightMagenta: "#988BC7" - brightCyan: "#A4FFFF" - brightWhite: "#F7F7FB" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 87.5 - black: 0 - red: 54.4 - green: 74.4 - yellow: 83.4 - blue: 69.7 - magenta: 43 - cyan: 87.1 - white: 87.5 - brightBlack: 21.9 - brightRed: 36.6 - brightGreen: 81.7 - brightYellow: 83.4 - brightBlue: 69.7 - brightMagenta: 43 - brightCyan: 96.6 - brightWhite: 101.6 diff --git a/themes/omni-dracula-dark.yaml b/themes/omni-dracula-dark.yaml deleted file mode 100644 index 8646b85b..00000000 --- a/themes/omni-dracula-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Omni Dracula Dark" -source: - marketplace_id: "Wellington-A.omni-dracula-dark" - version: "1.0.7" - installs: 4766 - rating: 0 - ratings: 0 - author: "Wellington-A" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" -colors: - bg: "#0A0A0A" - fg: "#FFFFFF" - black: "#545454" - red: "#F06B6B" - green: "#4CDDA6" - yellow: "#E5E510" - blue: "#42D9FF" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#A3A3A3" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3BC1EA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.7 - black: 15.6 - red: 45.7 - green: 72 - yellow: 86.5 - blue: 73.8 - magenta: 30.6 - cyan: 48.4 - white: 90.9 - brightBlack: 52.3 - brightRed: 39.4 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 61.4 - brightMagenta: 46.2 - brightCyan: 56.3 - brightWhite: 90.9 diff --git a/themes/omni-dracula-theme-tradicional-contrast.yaml b/themes/omni-dracula-theme-tradicional-contrast.yaml deleted file mode 100644 index 91cf386e..00000000 --- a/themes/omni-dracula-theme-tradicional-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Omni Dracula Theme Tradicional Contrast" -source: - marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" - version: "1.0.7" - installs: 36326 - rating: 5 - ratings: 4 - author: "Thiago Lúcio Bittencourt" - repo: "https://github.com/thiagolucio/omni-dracula-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" -colors: - bg: "#1B202C" - fg: "#F8F8F2" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 267 - pair: null - contrast: - fg: 100.8 - black: 0 - red: 42.3 - green: 83.7 - yellow: 97.4 - blue: 52.5 - magenta: 53.4 - cyan: 82.8 - white: 100.8 - brightBlack: 26.9 - brightRed: 47.7 - brightGreen: 87.9 - brightYellow: 102.4 - brightBlue: 65 - brightMagenta: 61.5 - brightCyan: 95.6 - brightWhite: 105.7 diff --git a/themes/omni-dracula-theme-tradicional.yaml b/themes/omni-dracula-theme-tradicional.yaml deleted file mode 100644 index 7319a875..00000000 --- a/themes/omni-dracula-theme-tradicional.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Omni Dracula Theme Tradicional" -source: - marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" - version: "1.0.7" - installs: 36326 - rating: 5 - ratings: 4 - author: "Thiago Lúcio Bittencourt" - repo: "https://github.com/thiagolucio/omni-dracula-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" -colors: - bg: "#282A36" - fg: "#F8F8F2" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 278 - pair: null - contrast: - fg: 99 - black: 0 - red: 40.4 - green: 81.9 - yellow: 95.6 - blue: 50.7 - magenta: 51.6 - cyan: 81 - white: 99 - brightBlack: 25.1 - brightRed: 45.9 - brightGreen: 86.1 - brightYellow: 100.6 - brightBlue: 63.2 - brightMagenta: 59.7 - brightCyan: 93.8 - brightWhite: 103.9 diff --git a/themes/omni-dracula-theme.yaml b/themes/omni-dracula-theme.yaml deleted file mode 100644 index 47591671..00000000 --- a/themes/omni-dracula-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Omni Dracula Theme" -source: - marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" - version: "1.0.7" - installs: 36326 - rating: 5 - ratings: 4 - author: "Thiago Lúcio Bittencourt" - repo: "https://github.com/thiagolucio/omni-dracula-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" -colors: - bg: "#282A36" - fg: "#FFFFFF" - black: "#545454" - red: "#F06B6B" - green: "#4CDDA6" - yellow: "#E5E510" - blue: "#42D9FF" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#A3A3A3" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3BC1EA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 278 - pair: null - contrast: - fg: 103.9 - black: 11.8 - red: 41.9 - green: 68.1 - yellow: 82.7 - blue: 70 - magenta: 26.8 - cyan: 44.6 - white: 87.1 - brightBlack: 48.5 - brightRed: 35.6 - brightGreen: 60.6 - brightYellow: 92.7 - brightBlue: 57.6 - brightMagenta: 42.4 - brightCyan: 52.4 - brightWhite: 87.1 diff --git a/themes/omni-dracula-wine-theme-tradicional.yaml b/themes/omni-dracula-wine-theme-tradicional.yaml deleted file mode 100644 index 480fc97b..00000000 --- a/themes/omni-dracula-wine-theme-tradicional.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Omni Dracula Wine Theme Tradicional" -source: - marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" - version: "1.0.7" - installs: 36326 - rating: 5 - ratings: 4 - author: "Thiago Lúcio Bittencourt" - repo: "https://github.com/thiagolucio/omni-dracula-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" -colors: - bg: "#2C2122" - fg: "#E6DAE0" - black: "#2C2122" - red: "#FA7F7F" - green: "#8AFD80" - yellow: "#FFFF81" - blue: "#B382D9" - magenta: "#FF82C3" - cyan: "#82FFEC" - white: "#E6DAE0" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#2CDA9D" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#F786AA" - brightCyan: "#A4FFFF" - brightWhite: "#FFF2F9" -meta: - mode: "dark" - accent: "green" - hue: 12 - pair: null - contrast: - fg: 83.3 - black: 0 - red: 50.7 - green: 87.7 - yellow: 101 - blue: 43.2 - magenta: 55 - cyan: 91.8 - white: 83.3 - brightBlack: 26.3 - brightRed: 47.1 - brightGreen: 66.9 - brightYellow: 101.8 - brightBlue: 64.4 - brightMagenta: 53.4 - brightCyan: 95.1 - brightWhite: 98.8 diff --git a/themes/omni-monokai-dark.yaml b/themes/omni-monokai-dark.yaml deleted file mode 100644 index a9b99d5e..00000000 --- a/themes/omni-monokai-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Omni Monokai Dark" -source: - marketplace_id: "Wellington-A.omni-dracula-dark" - version: "1.0.7" - installs: 4766 - rating: 0 - ratings: 0 - author: "Wellington-A" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" -colors: - bg: "#0A0A0A" - fg: "#F7E767" - black: "#3D3D3D" - red: "#FF3333" - green: "#00FF64" - yellow: "#FFE779" - blue: "#1584FF" - magenta: "#FF02FF" - cyan: "#0AE1FF" - white: "#A3A3A3" - brightBlack: "#666666" - brightRed: "#FF6767" - brightGreen: "#97FFB1" - brightYellow: "#FFCE00" - brightBlue: "#95CCFF" - brightMagenta: "#FF9AFF" - brightCyan: "#8EF4FF" - brightWhite: "#C9C9C9" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 90.6 - black: 7.3 - red: 39.5 - green: 87 - yellow: 92.2 - blue: 38.3 - magenta: 46.1 - cyan: 77 - white: 52.3 - brightBlack: 22.9 - brightRed: 48 - brightGreen: 93.4 - brightYellow: 80.3 - brightBlue: 72.4 - brightMagenta: 67.7 - brightCyan: 90.5 - brightWhite: 73.7 diff --git a/themes/omni-pro.yaml b/themes/omni-pro.yaml deleted file mode 100644 index 6c37df0a..00000000 --- a/themes/omni-pro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Omni PRO" -source: - marketplace_id: "viniciusamelio.theme-omni-pro" - version: "1.0.15" - installs: 2484 - rating: 5 - ratings: 1 - author: "viniciusamelio" - repo: "https://github.com/viniciusamelio/omni-pro" - url: "https://marketplace.visualstudio.com/items?itemName=viniciusamelio.theme-omni-pro" -colors: - bg: "#191622" - fg: "#E1E1E6" - black: "#201B2D" - red: "#FF79C6" - green: "#67E480" - yellow: "#E7DE79" - blue: "#78D1E1" - magenta: "#B78AC9" - cyan: "#A1EFE4" - white: "#E1E1E6" - brightBlack: "#B78AC9" - brightRed: "#ED4556" - brightGreen: "#00F769" - brightYellow: "#E7DE79" - brightBlue: "#78D1E1" - brightMagenta: "#B78AC9" - brightCyan: "#A4FFFF" - brightWhite: "#F7F7FB" -meta: - mode: "dark" - accent: "green" - hue: 296 - pair: null - contrast: - fg: 87.6 - black: 0 - red: 54.5 - green: 74.5 - yellow: 83.6 - blue: 69.9 - magenta: 46.9 - cyan: 87.2 - white: 87.6 - brightBlack: 46.9 - brightRed: 36.7 - brightGreen: 81.8 - brightYellow: 83.6 - brightBlue: 69.9 - brightMagenta: 46.9 - brightCyan: 96.7 - brightWhite: 101.7 diff --git a/themes/omni.yaml b/themes/omni.yaml deleted file mode 100644 index c1051429..00000000 --- a/themes/omni.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Omni" -source: - marketplace_id: "Avetis.codeme-theme" - version: "0.1.1" - installs: 8080 - rating: 0 - ratings: 0 - author: "Avetis" - repo: "https://github.com/AvetisDN/codeme-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" -colors: - bg: "#1E171D" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 331 - pair: null - contrast: - fg: 79.2 - black: 0 - red: 26.5 - green: 52.8 - yellow: 85.4 - blue: 27.2 - magenta: 29.5 - cyan: 47.3 - white: 89.8 - brightBlack: 21.8 - brightRed: 38.3 - brightGreen: 63.3 - brightYellow: 95.4 - brightBlue: 39.8 - brightMagenta: 45.1 - brightCyan: 55.2 - brightWhite: 89.8 diff --git a/themes/omnisexual.yaml b/themes/omnisexual.yaml deleted file mode 100644 index fe2290fc..00000000 --- a/themes/omnisexual.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Omnisexual" -source: - marketplace_id: "ElizaMuss.elizas-pride-themes" - version: "1.0.2" - installs: 848 - rating: 0 - ratings: 0 - author: "Eliza Muss" - repo: "https://github.com/The-Gamer69/elizas-pride-themes" - url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#868686" - red: "#FF5470" - green: "#33D057" - yellow: "#E1C542" - blue: "#665EFF" - magenta: "#FF53BE" - cyan: "#8CA6FF" - white: "#D4D4D4" - brightBlack: "#ABABAB" - brightRed: "#FF718A" - brightGreen: "#23D18B" - brightYellow: "#FFE05B" - brightBlue: "#ABA7FF" - brightMagenta: "#FFA1DB" - brightCyan: "#C0CEFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 107.9 - black: 37.6 - red: 44.8 - green: 63.2 - yellow: 72.2 - blue: 30.6 - magenta: 47.6 - cyan: 56.2 - white: 80.5 - brightBlack: 56.8 - brightRed: 51.3 - brightGreen: 64.5 - brightYellow: 88.7 - brightBlue: 59.7 - brightMagenta: 68.1 - brightCyan: 77.7 - brightWhite: 107.9 diff --git a/themes/omnitrix-code.yaml b/themes/omnitrix-code.yaml deleted file mode 100644 index 0fbb73b5..00000000 --- a/themes/omnitrix-code.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Omnitrix Code" -source: - marketplace_id: "SecureDev01.theme-icon-pack" - version: "1.0.4" - installs: 906 - rating: 0 - ratings: 0 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/theme-icon-pack" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.theme-icon-pack" -colors: - bg: "#0A1612" - fg: "#E0F2E9" - black: "#0A1612" - red: "#FF3333" - green: "#00FF41" - yellow: "#FFCC00" - blue: "#4DA6FF" - magenta: "#FF00FF" - cyan: "#00E6E6" - white: "#A8D4BB" - brightBlack: "#2D6650" - brightRed: "#FF4D4D" - brightGreen: "#00FF41" - brightYellow: "#FFFF00" - brightBlue: "#66B3FF" - brightMagenta: "#FF66FF" - brightCyan: "#00FFFF" - brightWhite: "#E0F2E9" -meta: - mode: "dark" - accent: "pink" - hue: 171 - pair: null - contrast: - fg: 95.8 - black: 0 - red: 38.9 - green: 86 - yellow: 78.9 - blue: 51.5 - magenta: 45.5 - cyan: 77.5 - white: 73.7 - brightBlack: 18.3 - brightRed: 42.3 - brightGreen: 86 - brightYellow: 102 - brightBlue: 57.9 - brightMagenta: 54.1 - brightCyan: 91.4 - brightWhite: 95.8 diff --git a/themes/omo-theme.yaml b/themes/omo-theme.yaml index c3aea9e8..2653f753 100644 --- a/themes/omo-theme.yaml +++ b/themes/omo-theme.yaml @@ -8,6 +8,7 @@ source: author: "Omid Moghadasi" repo: "https://github.com/omoghadasi/omo-theme" url: "https://marketplace.visualstudio.com/items?itemName=omoghadasi.omo-theme" + formats: null colors: bg: "#292D3E" fg: "#ABB2BF" diff --git a/themes/one-ai-theme.yaml b/themes/one-ai-theme.yaml index 844036d1..b265057f 100644 --- a/themes/one-ai-theme.yaml +++ b/themes/one-ai-theme.yaml @@ -2,12 +2,13 @@ name: "One AI theme" source: marketplace_id: "OneAI.oneai-vscode-theme" version: "0.0.3" - installs: 1250 + installs: 1252 rating: 0 ratings: 0 author: "One AI" repo: "https://github.com/michgur/oneai-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=OneAI.oneai-vscode-theme" + formats: null colors: bg: "#14141C" fg: "#A1A1AB" diff --git a/themes/one-dark-cloud-theme.yaml b/themes/one-dark-cloud-theme.yaml index 64d9ad08..04cd71d5 100644 --- a/themes/one-dark-cloud-theme.yaml +++ b/themes/one-dark-cloud-theme.yaml @@ -1,4 +1,4 @@ -name: "one-dark-cloud-theme" +name: "One Dark Cloud Theme" source: marketplace_id: "oleg-moroz.one-dark-cloud-theme" version: "1.1.2" @@ -8,6 +8,7 @@ source: author: "Oleg Moroz" repo: "https://github.com/moroz0751/vscode-one-dark-cloud" url: "https://marketplace.visualstudio.com/items?itemName=oleg-moroz.one-dark-cloud-theme" + formats: null colors: bg: "#282C34" fg: "#ABB2BF" diff --git a/themes/one-dark-code.yaml b/themes/one-dark-code.yaml index fb22a1ee..d4de5442 100644 --- a/themes/one-dark-code.yaml +++ b/themes/one-dark-code.yaml @@ -8,6 +8,7 @@ source: author: "LucasOe" repo: "https://github.com/LucasOe/one-dark-code" url: "https://marketplace.visualstudio.com/items?itemName=LucasOe.one-dark-code" + formats: null colors: bg: "#282C34" fg: "#ABB2BF" diff --git a/themes/one-dark-darker-vivid.yaml b/themes/one-dark-darker-vivid.yaml index 3e5240ad..4c2fbaac 100644 --- a/themes/one-dark-darker-vivid.yaml +++ b/themes/one-dark-darker-vivid.yaml @@ -8,6 +8,7 @@ source: author: "DevBlooming" repo: "https://github.com/DevBlooming/one-dark-darker-theme" url: "https://marketplace.visualstudio.com/items?itemName=DevBlooming.one-dark-darker-theme" + formats: null colors: bg: "#23272E" fg: "#ABB2BF" diff --git a/themes/one-dark-darker.yaml b/themes/one-dark-darker.yaml index a9811020..c39aa9bf 100644 --- a/themes/one-dark-darker.yaml +++ b/themes/one-dark-darker.yaml @@ -1,13 +1,14 @@ name: "One Dark Darker" source: - marketplace_id: "lazyComedian.sentimental-dark" - version: "0.1.4" - installs: 518 - rating: 0 - ratings: 0 - author: "lazyComedian" - repo: "https://github.com/lazycomedian/SentimentalDark" - url: "https://marketplace.visualstudio.com/items?itemName=lazyComedian.sentimental-dark" + marketplace_id: "JoelCrosby.one-dark-darker" + version: "1.0.4" + installs: 82939 + rating: 5 + ratings: 8 + author: "Joel Crosby" + repo: "https://github.com/JoelCrosby/OneDarkDarker" + url: "https://marketplace.visualstudio.com/items?itemName=JoelCrosby.one-dark-darker" + formats: null colors: bg: "#181A1F" fg: "#ABB2BF" diff --git a/themes/one-dark-modern-pro.yaml b/themes/one-dark-modern-pro.yaml index 496a1df8..92210e4b 100644 --- a/themes/one-dark-modern-pro.yaml +++ b/themes/one-dark-modern-pro.yaml @@ -2,12 +2,13 @@ name: "One Dark Modern Pro" source: marketplace_id: "aleksa-codes.one-dark-modern-pro" version: "1.0.10" - installs: 2144 + installs: 2153 rating: 5 ratings: 1 author: "aleksa-codes" repo: "https://github.com/aleksa-codes/one-dark-modern-pro" url: "https://marketplace.visualstudio.com/items?itemName=aleksa-codes.one-dark-modern-pro" + formats: null colors: bg: "#1F1F1F" fg: "#CCCCCC" diff --git a/themes/one-dark-night-blue-boy.yaml b/themes/one-dark-night-blue-boy.yaml deleted file mode 100644 index edad0b20..00000000 --- a/themes/one-dark-night-blue-boy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "One Dark Night - Blue Boy" -source: - marketplace_id: "sojibahmed.one-dark-night-theme" - version: "0.0.7" - installs: 1363 - rating: 0 - ratings: 0 - author: "sojibAhmedSafi" - repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" -colors: - bg: "#001B36" - fg: "#939393" - black: "#000000" - red: "#940000" - green: "#00774A" - yellow: "#8E7400" - blue: "#004194" - magenta: "#860086" - cyan: "#06989A" - white: "#B2B2B2" - brightBlack: "#686868" - brightRed: "#BA0000" - brightGreen: "#00965A" - brightYellow: "#8A8A00" - brightBlue: "#0052A9" - brightMagenta: "#8A008A" - brightCyan: "#008E8E" - brightWhite: "#9B9B9B" -meta: - mode: "dark" - accent: "pink" - hue: 250 - pair: null - contrast: - fg: 42.5 - black: 0 - red: 11.7 - green: 22.7 - yellow: 28.9 - blue: 9.3 - magenta: 12.4 - cyan: 37.9 - white: 59.1 - brightBlack: 22.3 - brightRed: 19.6 - brightGreen: 35.1 - brightYellow: 35.9 - brightBlue: 15 - brightMagenta: 13.3 - brightCyan: 33.4 - brightWhite: 46.6 diff --git a/themes/one-dark-night-eye-care.yaml b/themes/one-dark-night-eye-care.yaml deleted file mode 100644 index 516786ac..00000000 --- a/themes/one-dark-night-eye-care.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "One Dark Night - Eye Care" -source: - marketplace_id: "sojibahmed.one-dark-night-theme" - version: "0.0.7" - installs: 1363 - rating: 0 - ratings: 0 - author: "sojibAhmedSafi" - repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" -colors: - bg: "#171C2A" - fg: "#ADADAD" - black: "#5A5A5A" - red: "#9D0000" - green: "#006D5D" - yellow: "#997729" - blue: "#2472C8" - magenta: "#A700A7" - cyan: "#007B99" - white: "#C0C0C0" - brightBlack: "#666666" - brightRed: "#CF0000" - brightGreen: "#00B298" - brightYellow: "#7D5700" - brightBlue: "#3B8EEA" - brightMagenta: "#CF00CF" - brightCyan: "#009AC0" - brightWhite: "#C9C9C9" -meta: - mode: "dark" - accent: "pink" - hue: 269 - pair: null - contrast: - fg: 56.2 - black: 16.5 - red: 13.5 - green: 19.5 - yellow: 31.4 - blue: 26.8 - magenta: 20.1 - cyan: 26.7 - white: 67 - brightBlack: 21.4 - brightRed: 24.3 - brightGreen: 48.8 - brightYellow: 18.3 - brightBlue: 39.4 - brightMagenta: 30.6 - brightCyan: 40.5 - brightWhite: 72.3 diff --git a/themes/one-dark-night-minimalist.yaml b/themes/one-dark-night-minimalist.yaml deleted file mode 100644 index 970594bb..00000000 --- a/themes/one-dark-night-minimalist.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "One Dark Night - Minimalist" -source: - marketplace_id: "sojibahmed.one-dark-night-theme" - version: "0.0.7" - installs: 1363 - rating: 0 - ratings: 0 - author: "sojibAhmedSafi" - repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" -colors: - bg: "#181A26" - fg: "#A3A3A3" - black: "#000000" - red: "#940000" - green: "#00774A" - yellow: "#8E7400" - blue: "#004194" - magenta: "#860086" - cyan: "#06989A" - white: "#B2B2B2" - brightBlack: "#686868" - brightRed: "#BA0000" - brightGreen: "#00965A" - brightYellow: "#8A8A00" - brightBlue: "#0052A9" - brightMagenta: "#8A008A" - brightCyan: "#008E8E" - brightWhite: "#9B9B9B" -meta: - mode: "dark" - accent: "pink" - hue: 277 - pair: null - contrast: - fg: 51 - black: 0 - red: 11.9 - green: 22.8 - yellow: 29.1 - blue: 9.5 - magenta: 12.5 - cyan: 38.1 - white: 59.2 - brightBlack: 22.5 - brightRed: 19.8 - brightGreen: 35.3 - brightYellow: 36.1 - brightBlue: 15.1 - brightMagenta: 13.4 - brightCyan: 33.6 - brightWhite: 46.8 diff --git a/themes/one-dark-night-professional.yaml b/themes/one-dark-night-professional.yaml deleted file mode 100644 index 91cc06b6..00000000 --- a/themes/one-dark-night-professional.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "One Dark Night - Professional" -source: - marketplace_id: "sojibahmed.one-dark-night-theme" - version: "0.0.7" - installs: 1363 - rating: 0 - ratings: 0 - author: "sojibAhmedSafi" - repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" -colors: - bg: "#030C1B" - fg: "#BFBFBF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 256 - pair: null - contrast: - fg: 67.8 - black: 0 - red: 27.4 - green: 53.7 - yellow: 86.4 - blue: 28.2 - magenta: 30.5 - cyan: 48.3 - white: 90.8 - brightBlack: 22.8 - brightRed: 39.3 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 90.8 diff --git a/themes/one-dark-nx.yaml b/themes/one-dark-nx.yaml index 888f01a4..84e11ea0 100644 --- a/themes/one-dark-nx.yaml +++ b/themes/one-dark-nx.yaml @@ -8,6 +8,7 @@ source: author: "vxna" repo: "https://github.com/vxna/one-dark-nx" url: "https://marketplace.visualstudio.com/items?itemName=vxna.one-dark-nx" + formats: null colors: bg: "#282C34" fg: "#C8C8C8" diff --git a/themes/one-dark-orange.yaml b/themes/one-dark-orange.yaml index 556123b4..e26ee5e3 100644 --- a/themes/one-dark-orange.yaml +++ b/themes/one-dark-orange.yaml @@ -8,6 +8,7 @@ source: author: "odibje" repo: "https://github.com/od-b/one-dark-orange" url: "https://marketplace.visualstudio.com/items?itemName=odibje.one-dark-orange" + formats: null colors: bg: "#1A1F27" fg: "#ABB2BF" diff --git a/themes/one-dark-pro-theme.yaml b/themes/one-dark-pro-theme.yaml deleted file mode 100644 index 99443dc3..00000000 --- a/themes/one-dark-pro-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "One Dark Pro Theme" -source: - marketplace_id: "mdmarufsarker.maruf-sarker" - version: "0.1.1" - installs: 29154 - rating: 5 - ratings: 6 - author: "Md. Maruf Sarker" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" -colors: - bg: "#0C1924" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "pink" - hue: 245 - pair: null - contrast: - fg: 59.3 - black: 8.7 - red: 36.6 - green: 60.2 - yellow: 48.5 - blue: 49.5 - magenta: 38.9 - cyan: 52.4 - white: 90.5 - brightBlack: 15.3 - brightRed: 46 - brightGreen: 76.6 - brightYellow: 61.1 - brightBlue: 63.6 - brightMagenta: 50.1 - brightCyan: 67.7 - brightWhite: 82.9 diff --git a/themes/one-dark-pro-var-night.yaml b/themes/one-dark-pro-var-night.yaml index 71de2a96..b68eb2e6 100644 --- a/themes/one-dark-pro-var-night.yaml +++ b/themes/one-dark-pro-var-night.yaml @@ -8,6 +8,7 @@ source: author: "csstools" repo: "https://github.com/csstools/onedarkprovar-theme" url: "https://marketplace.visualstudio.com/items?itemName=csstools.onedarkprovar" + formats: null colors: bg: "#1A1A1A" fg: "#ABB2BF" diff --git a/themes/one-dark-pro.yaml b/themes/one-dark-pro.yaml deleted file mode 100644 index e2e8a2e4..00000000 --- a/themes/one-dark-pro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "One Dark Pro" -source: - marketplace_id: "wilfison.one-dark-ruby" - version: "0.0.4" - installs: 228 - rating: 0 - ratings: 0 - author: "Wilfison" - repo: "https://github.com/wilfison/one-dark-ruby" - url: "https://marketplace.visualstudio.com/items?itemName=wilfison.one-dark-ruby" -colors: - bg: "#1E1E1E" - fg: "#ABB2BF" - black: "#2D3139" - red: "#F94B65" - green: "#89CA78" - yellow: "#58EB7E" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#89CA78" - brightYellow: "#58EB7E" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "One Light Pro" - contrast: - fg: 58.6 - black: 0 - red: 39.9 - green: 63.3 - yellow: 76.6 - blue: 53.8 - magenta: 44.3 - cyan: 53.7 - white: 82.2 - brightBlack: 34.7 - brightRed: 37.6 - brightGreen: 63.3 - brightYellow: 76.6 - brightBlue: 40.6 - brightMagenta: 11.9 - brightCyan: 53.7 - brightWhite: 82.2 diff --git a/themes/one-dark-vibrant-theme.yaml b/themes/one-dark-vibrant-theme.yaml index 6b71efae..215fc5a0 100644 --- a/themes/one-dark-vibrant-theme.yaml +++ b/themes/one-dark-vibrant-theme.yaml @@ -8,6 +8,7 @@ source: author: "José Rodríguez " repo: "https://github.com/josergz/one-dark-vibrant-theme" url: "https://marketplace.visualstudio.com/items?itemName=josergz.one-dark-vibrant-theme" + formats: null colors: bg: "#121212" fg: "#E0E0E0" diff --git a/themes/one-dark.yaml b/themes/one-dark.yaml deleted file mode 100644 index 99dfb435..00000000 --- a/themes/one-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "one dark" -source: - marketplace_id: "kavinkumar.one-dark-custom-theme" - version: "0.0.4" - installs: 222 - rating: 5 - ratings: 1 - author: "kavinkumar" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=kavinkumar.one-dark-custom-theme" -colors: - bg: "#191818" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 79.4 - black: 0 - red: 26.6 - green: 52.9 - yellow: 85.5 - blue: 27.3 - magenta: 29.6 - cyan: 47.4 - white: 89.9 - brightBlack: 21.9 - brightRed: 38.4 - brightGreen: 63.4 - brightYellow: 95.5 - brightBlue: 39.9 - brightMagenta: 45.2 - brightCyan: 55.3 - brightWhite: 89.9 diff --git a/themes/one-darker-pro.yaml b/themes/one-darker-pro.yaml index 5b9f8d91..7441e966 100644 --- a/themes/one-darker-pro.yaml +++ b/themes/one-darker-pro.yaml @@ -8,6 +8,7 @@ source: author: "Pieersx" repo: "https://github.com/pieersx/onedarker-pro" url: "https://marketplace.visualstudio.com/items?itemName=pieersx.onedarker-pro" + formats: null colors: bg: "#181818" fg: "#ABB2BF" @@ -31,7 +32,7 @@ meta: mode: "dark" accent: "pink" hue: null - pair: null + pair: "One Light Pro" contrast: fg: 59.3 black: 8.7 diff --git a/themes/one-darkpuccin-night.yaml b/themes/one-darkpuccin-night.yaml deleted file mode 100644 index 5ee948bc..00000000 --- a/themes/one-darkpuccin-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "One DarkPuccin Night" -source: - marketplace_id: "ni3rav.one-darkppuccin" - version: "0.0.4" - installs: 939 - rating: 5 - ratings: 2 - author: "ni3rav" - repo: "https://github.com/ni3rav/one-darkppuccin" - url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.one-darkppuccin" -colors: - bg: "#16191D" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 59.2 - black: 8.7 - red: 36.5 - green: 60.2 - yellow: 48.4 - blue: 49.5 - magenta: 38.9 - cyan: 52.3 - white: 82.9 - brightBlack: 15.3 - brightRed: 45.9 - brightGreen: 76.6 - brightYellow: 61 - brightBlue: 63.6 - brightMagenta: 50.1 - brightCyan: 67.6 - brightWhite: 90.5 diff --git a/themes/one-darkpuccin-vivid.yaml b/themes/one-darkpuccin-vivid.yaml deleted file mode 100644 index 1f3531be..00000000 --- a/themes/one-darkpuccin-vivid.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "One DarkPuccin Vivid" -source: - marketplace_id: "ni3rav.one-darkppuccin" - version: "0.0.4" - installs: 939 - rating: 5 - ratings: 2 - author: "ni3rav" - repo: "https://github.com/ni3rav/one-darkppuccin" - url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.one-darkppuccin" -colors: - bg: "#2D3138" - fg: "#B0B4BA" - black: "#444B58" - red: "#E45C68" - green: "#91C96A" - yellow: "#D79758" - blue: "#4FADF8" - magenta: "#C769E5" - cyan: "#47BBC9" - white: "#DCE0E5" - brightBlack: "#555C6D" - brightRed: "#FF6875" - brightGreen: "#AAE57B" - brightYellow: "#F4AA62" - brightBlue: "#52CCFF" - brightMagenta: "#E67BFF" - brightCyan: "#51D9E8" - brightWhite: "#EAEAEA" -meta: - mode: "dark" - accent: "pink" - hue: 262 - pair: null - contrast: - fg: 56.3 - black: 0 - red: 34.8 - green: 59.7 - yellow: 48.1 - blue: 49.3 - magenta: 37.8 - cyan: 52.2 - white: 82.3 - brightBlack: 13.6 - brightRed: 43.4 - brightGreen: 75.5 - brightYellow: 59.9 - brightBlue: 63.2 - brightMagenta: 49.4 - brightCyan: 67.9 - brightWhite: 88.9 diff --git a/themes/one-hunter-theme.yaml b/themes/one-hunter-theme.yaml deleted file mode 100644 index fec5f79b..00000000 --- a/themes/one-hunter-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "One Hunter Theme" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#000000" - fg: "#DCE3EA" - black: "#34393E" - red: "#E61F44" - green: "#5BD1B9" - yellow: "#43AAF9" - blue: "#43AAF9" - magenta: "#DD4F7D" - cyan: "#B267E6" - white: "#DCE3EA" - brightBlack: "#454D54" - brightRed: "#E61F44" - brightGreen: "#B7F0E5" - brightYellow: "#A7D1F5" - brightBlue: "#A7D1F5" - brightMagenta: "#DD4F7D" - brightCyan: "#D7C9F0" - brightWhite: "#DCE3EA" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.2 - black: 0 - red: 32.4 - green: 67.6 - yellow: 53 - blue: 53 - magenta: 36.8 - cyan: 39.4 - white: 89.2 - brightBlack: 12.7 - brightRed: 32.4 - brightGreen: 90.8 - brightYellow: 75.8 - brightBlue: 75.8 - brightMagenta: 36.8 - brightCyan: 77.6 - brightWhite: 89.2 diff --git a/themes/one-light-italic.yaml b/themes/one-light-italic.yaml deleted file mode 100644 index 333262e8..00000000 --- a/themes/one-light-italic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "One Light Italic" -source: - marketplace_id: "laggardkernel.vscode-theme-onelight" - version: "0.2.1" - installs: 10325 - rating: 0 - ratings: 0 - author: "laggardkernel" - repo: "https://github.com/laggardkernel/vscode-theme-onelight" - url: "https://marketplace.visualstudio.com/items?itemName=laggardkernel.vscode-theme-onelight" -colors: - bg: "#FAFAFA" - fg: "#24292E" - black: "#383A42" - red: "#E45649" - green: "#50A14F" - yellow: "#C18401" - blue: "#2F5AF3" - magenta: "#A626A4" - cyan: "#00B7EB" - white: "#FAFAFA" - brightBlack: "#797979" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#4B72FF" - brightMagenta: "#C678DD" - brightCyan: "#00B7EB" - brightWhite: "#FAFAFA" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 98.5 - black: 93.2 - red: 60.4 - green: 56 - yellow: 55.8 - blue: 73.2 - magenta: 76.2 - cyan: 42.4 - white: 0 - brightBlack: 67.2 - brightRed: 55.7 - brightGreen: 36.1 - brightYellow: 28.2 - brightBlue: 64.5 - brightMagenta: 52.7 - brightCyan: 42.4 - brightWhite: 0 diff --git a/themes/one-light-pro.yaml b/themes/one-light-pro.yaml index 06d088d5..127a7026 100644 --- a/themes/one-light-pro.yaml +++ b/themes/one-light-pro.yaml @@ -1,13 +1,14 @@ name: "One Light Pro" source: - marketplace_id: "smdfuck.best-themes" - version: "0.0.15" - installs: 149 + marketplace_id: "andrewm098.OneLight-Pro" + version: "1.0.1" + installs: 21021 rating: 5 - ratings: 1 - author: "smdfuck" - repo: "https://github.com/smdfuck/best-themes" - url: "https://marketplace.visualstudio.com/items?itemName=smdfuck.best-themes" + ratings: 2 + author: "andrewm098" + repo: "https://github.com/andrew-ma/One-Light-Pro" + url: "https://marketplace.visualstudio.com/items?itemName=andrewm098.OneLight-Pro" + formats: null colors: bg: "#E4E0CC" fg: "#111113" @@ -31,7 +32,7 @@ meta: mode: "light" accent: "pink" hue: 98 - pair: "One Dark Pro" + pair: "One Darker Pro" contrast: fg: 86.8 black: 83.3 diff --git a/themes/one-material.yaml b/themes/one-material.yaml index 27a329df..3e02b95b 100644 --- a/themes/one-material.yaml +++ b/themes/one-material.yaml @@ -8,6 +8,7 @@ source: author: "VVekslyer" repo: "https://github.com/VVekslyer/one-material-theme" url: "https://marketplace.visualstudio.com/items?itemName=VVekslyer.one-material-theme" + formats: null colors: bg: "#24282C" fg: "#ABB2BF" diff --git a/themes/one-midnight.yaml b/themes/one-midnight.yaml index 2c2d83db..b6add03f 100644 --- a/themes/one-midnight.yaml +++ b/themes/one-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Violet Iapalucci" repo: "https://github.com/one-midnight-theme/vscode-one-midnight" url: "https://marketplace.visualstudio.com/items?itemName=violetiapalucci.one-midnight" + formats: null colors: bg: "#060115" fg: "#ABB2BF" diff --git a/themes/one-monokai-darker.yaml b/themes/one-monokai-darker.yaml index 86e744f2..45803ffc 100644 --- a/themes/one-monokai-darker.yaml +++ b/themes/one-monokai-darker.yaml @@ -1,15 +1,16 @@ name: "One Monokai Darker" source: - marketplace_id: "zzhua095.one-monokai-pro" - version: "0.1.3" - installs: 629 - rating: 0 - ratings: 0 - author: "zzhua" - repo: "https://github.com/Huazzi/vscode-one-monokai-darker" - url: "https://marketplace.visualstudio.com/items?itemName=zzhua095.one-monokai-pro" + marketplace_id: "OneMonokaiDarker.onemonokaidarker" + version: "0.3.0" + installs: 2006 + rating: 5 + ratings: 1 + author: "One Monokai Darker" + repo: "https://github.com/sergiopani/pani-theme" + url: "https://marketplace.visualstudio.com/items?itemName=OneMonokaiDarker.onemonokaidarker" + formats: null colors: - bg: "#1E2227" + bg: "#23272E" fg: "#ABB2BF" black: "#2D3139" red: "#E06C75" @@ -30,23 +31,23 @@ colors: meta: mode: "dark" accent: "orange" - hue: 254 + hue: 262 pair: null contrast: - fg: 58 + fg: 57.2 black: 0 - red: 40.7 - green: 60.9 - yellow: 69.2 - blue: 40.1 - magenta: 43.8 - cyan: 53.2 - white: 81.7 - brightBlack: 34.2 - brightRed: 37.1 - brightGreen: 60.9 - brightYellow: 69.2 - brightBlue: 40.1 - brightMagenta: 11.4 - brightCyan: 53.2 - brightWhite: 81.7 + red: 39.9 + green: 60.1 + yellow: 68.3 + blue: 39.3 + magenta: 42.9 + cyan: 52.3 + white: 80.8 + brightBlack: 33.3 + brightRed: 36.2 + brightGreen: 60.1 + brightYellow: 68.3 + brightBlue: 39.3 + brightMagenta: 10.5 + brightCyan: 52.3 + brightWhite: 80.8 diff --git a/themes/one-monokai-forked.yaml b/themes/one-monokai-forked.yaml index 1724efa8..0a67e015 100644 --- a/themes/one-monokai-forked.yaml +++ b/themes/one-monokai-forked.yaml @@ -8,6 +8,7 @@ source: author: "mub" repo: "https://github.com/mubdiur/vscode-one-monokai" url: "https://marketplace.visualstudio.com/items?itemName=mub.one-monokai-forked" + formats: null colors: bg: "#131417" fg: "#ABB2BF" diff --git a/themes/one-monokai-light.yaml b/themes/one-monokai-light.yaml deleted file mode 100644 index fa128ccf..00000000 --- a/themes/one-monokai-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "One Monokai (Light)" -source: - marketplace_id: "CheapeOne.one-monokai-light" - version: "1.0.4" - installs: 4284 - rating: 5 - ratings: 2 - author: "CheapeOne" - repo: "https://github.com/cheapeone/vscode-one-monokai" - url: "https://marketplace.visualstudio.com/items?itemName=CheapeOne.one-monokai-light" -colors: - bg: "#FFFFFF" - fg: "#24292E" - black: "#24292E" - red: "#D73A49" - green: "#28A745" - yellow: "#DBAB09" - blue: "#0366D6" - magenta: "#5A32A3" - cyan: "#1B7C83" - white: "#6A737D" - brightBlack: "#959DA5" - brightRed: "#CB2431" - brightGreen: "#22863A" - brightYellow: "#B08800" - brightBlue: "#005CC5" - brightMagenta: "#5A32A3" - brightCyan: "#3192AA" - brightWhite: "#D1D5DA" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 101.5 - black: 101.5 - red: 70.4 - green: 57.9 - yellow: 41.6 - blue: 76.2 - magenta: 89.2 - cyan: 73.8 - white: 73.4 - brightBlack: 53.1 - brightRed: 75.5 - brightGreen: 71.7 - brightYellow: 60.1 - brightBlue: 80.5 - brightMagenta: 89.2 - brightCyan: 63.3 - brightWhite: 22.4 diff --git a/themes/one-monokai-michota.yaml b/themes/one-monokai-michota.yaml index 787beff9..c434735e 100644 --- a/themes/one-monokai-michota.yaml +++ b/themes/one-monokai-michota.yaml @@ -8,6 +8,7 @@ source: author: "michota" repo: "https://github.com/Michota/one-monokai-michota" url: "https://marketplace.visualstudio.com/items?itemName=michota.one-monokai-michota" + formats: null colors: bg: "#202020" fg: "#ABB2BF" diff --git a/themes/one-monokai-python-flat.yaml b/themes/one-monokai-python-flat.yaml deleted file mode 100644 index e541b14c..00000000 --- a/themes/one-monokai-python-flat.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "One Monokai Python Flat" -source: - marketplace_id: "NoThlnG.one-monokai-python" - version: "0.5.0" - installs: 20243 - rating: 5 - ratings: 2 - author: "nxht" - repo: "https://github.com/nxht/one-monokai-python" - url: "https://marketplace.visualstudio.com/items?itemName=NoThlnG.one-monokai-python" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#528BFF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 56.2 - black: 0 - red: 38.9 - green: 59.1 - yellow: 67.4 - blue: 38.3 - magenta: 41.9 - cyan: 51.4 - white: 79.8 - brightBlack: 32.3 - brightRed: 35.2 - brightGreen: 59.1 - brightYellow: 67.4 - brightBlue: 38.3 - brightMagenta: 9.5 - brightCyan: 51.4 - brightWhite: 79.8 diff --git a/themes/one-monokai-shadow.yaml b/themes/one-monokai-shadow.yaml index 0b441423..8252b023 100644 --- a/themes/one-monokai-shadow.yaml +++ b/themes/one-monokai-shadow.yaml @@ -2,12 +2,13 @@ name: "One Monokai Shadow" source: marketplace_id: "2A5F.one-monokai-shadow" version: "1.0.1" - installs: 1990 + installs: 1991 rating: 5 ratings: 2 author: "2A5F" repo: "https://github.com/2A5F/one-monokai-shadow" url: "https://marketplace.visualstudio.com/items?itemName=2A5F.one-monokai-shadow" + formats: null colors: bg: "#1E1E1E" fg: "#CCCCCC" diff --git a/themes/one-monokai1.yaml b/themes/one-monokai1.yaml index 8a5152dc..9feda06a 100644 --- a/themes/one-monokai1.yaml +++ b/themes/one-monokai1.yaml @@ -8,6 +8,7 @@ source: author: "tnnmigga" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tnnmigga.tnnmigga-dark" + formats: null colors: bg: "#282C34" fg: "#ABB2BF" diff --git a/themes/one-moon.yaml b/themes/one-moon.yaml index 88697ff0..d80f655b 100644 --- a/themes/one-moon.yaml +++ b/themes/one-moon.yaml @@ -1,4 +1,4 @@ -name: "'One Moon'" +name: "One Moon" source: marketplace_id: "ThisNameWasTaken.one-moon" version: "1.2.0" @@ -8,6 +8,7 @@ source: author: "ThisNameWasTaken" repo: "https://github.com/ThisNameWasTaken/one-moon" url: "https://marketplace.visualstudio.com/items?itemName=ThisNameWasTaken.one-moon" + formats: null colors: bg: "#242B2E" fg: "#D4D4D4" diff --git a/themes/one-more-dark.yaml b/themes/one-more-dark.yaml index 1d8af969..e023628c 100644 --- a/themes/one-more-dark.yaml +++ b/themes/one-more-dark.yaml @@ -8,6 +8,7 @@ source: author: "Avetis" repo: "https://github.com/AvetisDN/onemoredark" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.onemoredark" + formats: null colors: bg: "#1B2027" fg: "#ECF2F8" diff --git a/themes/one-pauintxi-blue.yaml b/themes/one-pauintxi-blue.yaml index 35e27db1..1da997b1 100644 --- a/themes/one-pauintxi-blue.yaml +++ b/themes/one-pauintxi-blue.yaml @@ -8,6 +8,7 @@ source: author: "Marcos Ramos Adsuara" repo: null url: "https://marketplace.visualstudio.com/items?itemName=marcosramos87.one-pauintxi-theme" + formats: null colors: bg: "#202020" fg: "#ECDBB5" diff --git a/themes/one-piece-dark.yaml b/themes/one-piece-dark.yaml deleted file mode 100644 index 32a1829e..00000000 --- a/themes/one-piece-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "one-piece-dark" -source: - marketplace_id: "LeonardoTozoni.one-piece-theme" - version: "2.0.0" - installs: 8061 - rating: 5 - ratings: 4 - author: "Leonardo Tozoni" - repo: "https://github.com/Leonardo-Tozoni/one-piece-theme" - url: "https://marketplace.visualstudio.com/items?itemName=LeonardoTozoni.one-piece-theme" -colors: - bg: "#1A1F2E" - fg: "#E8E8E8" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 270 - pair: null - contrast: - fg: 90.9 - black: 0 - red: 25.7 - green: 52 - yellow: 84.6 - blue: 26.4 - magenta: 28.7 - cyan: 46.5 - white: 89 - brightBlack: 21 - brightRed: 37.5 - brightGreen: 62.5 - brightYellow: 94.6 - brightBlue: 39 - brightMagenta: 44.3 - brightCyan: 54.4 - brightWhite: 89 diff --git a/themes/one-piece-high-contrast.yaml b/themes/one-piece-high-contrast.yaml deleted file mode 100644 index 1b1aa076..00000000 --- a/themes/one-piece-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "One-Piece-High-Contrast" -source: - marketplace_id: "TeteDeCactus.onepiece-dark-theme" - version: "0.0.1" - installs: 7812 - rating: 0 - ratings: 0 - author: "TeteDeCactus" - repo: "https://github.com/tetedecactus/VScode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=TeteDeCactus.onepiece-dark-theme" -colors: - bg: "#000000" - fg: "#00FFDB" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 90.5 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/one-piece-light.yaml b/themes/one-piece-light.yaml deleted file mode 100644 index e50ccafd..00000000 --- a/themes/one-piece-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "one-piece-light" -source: - marketplace_id: "LeonardoTozoni.one-piece-theme" - version: "2.0.0" - installs: 8061 - rating: 5 - ratings: 4 - author: "Leonardo Tozoni" - repo: "https://github.com/Leonardo-Tozoni/one-piece-theme" - url: "https://marketplace.visualstudio.com/items?itemName=LeonardoTozoni.one-piece-theme" -colors: - bg: "#FFFBEB" - fg: "#1A1A1A" - black: "#1A1A1A" - red: "#B91C1C" - green: "#059669" - yellow: "#D97706" - blue: "#0B5394" - magenta: "#7C3AED" - cyan: "#0891B2" - white: "#D4D4D4" - brightBlack: "#7A8B99" - brightRed: "#DC2626" - brightGreen: "#10B981" - brightYellow: "#F59E0B" - brightBlue: "#0369A1" - brightMagenta: "#9333EA" - brightCyan: "#0D9488" - brightWhite: "#F5F5F5" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 101.7 - black: 101.7 - red: 77.7 - green: 62.1 - yellow: 56 - blue: 84.1 - magenta: 74.9 - cyan: 61.3 - white: 20.2 - brightBlack: 60.2 - brightRed: 69 - brightGreen: 46.6 - brightYellow: 39.2 - brightBlue: 76.5 - brightMagenta: 73.1 - brightCyan: 61.9 - brightWhite: 0 diff --git a/themes/one-piece-straw-hat-red.yaml b/themes/one-piece-straw-hat-red.yaml deleted file mode 100644 index 4b30889d..00000000 --- a/themes/one-piece-straw-hat-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "One Piece (Straw Hat Red)" -source: - marketplace_id: "LunaCode.anime-theme" - version: "0.0.3" - installs: 377 - rating: 5 - ratings: 3 - author: "LunaCode" - repo: "https://github.com/BuildXO/anime-theme-pack" - url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" -colors: - bg: "#1C1215" - fg: "#F0E8DC" - black: "#3C2A32" - red: "#E74C3C" - green: "#2ECC71" - yellow: "#F1C40F" - blue: "#3498DB" - magenta: "#9B59B6" - cyan: "#1ABC9C" - white: "#E0D4C8" - brightBlack: "#7A6570" - brightRed: "#FF6B6B" - brightGreen: "#4ECDC4" - brightYellow: "#FFE66D" - brightBlue: "#5DADE2" - brightMagenta: "#D2B4DE" - brightCyan: "#76D7C4" - brightWhite: "#FFF8E7" -meta: - mode: "dark" - accent: "orange" - hue: 359 - pair: null - contrast: - fg: 92.7 - black: 0 - red: 36.3 - green: 60.9 - yellow: 73.2 - blue: 42.7 - magenta: 28.8 - cyan: 54.3 - white: 80.8 - brightBlack: 24.3 - brightRed: 48.3 - brightGreen: 64.9 - brightYellow: 90.8 - brightBlue: 53 - brightMagenta: 66.8 - brightCyan: 71.5 - brightWhite: 102.7 diff --git a/themes/onebitcode-theme.yaml b/themes/onebitcode-theme.yaml deleted file mode 100644 index 03859789..00000000 --- a/themes/onebitcode-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "onebitcode-theme" -source: - marketplace_id: "guicastro13.onebitcode-theme" - version: "0.0.5" - installs: 2293 - rating: 5 - ratings: 2 - author: "guicastro13" - repo: "https://github.com/guicastro13/onebitcode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" -colors: - bg: "#1B1B1B" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106.4 - black: 0 - red: 26.3 - green: 52.6 - yellow: 85.2 - blue: 27 - magenta: 29.3 - cyan: 47.1 - white: 89.6 - brightBlack: 21.6 - brightRed: 38.1 - brightGreen: 63.1 - brightYellow: 95.2 - brightBlue: 39.6 - brightMagenta: 44.9 - brightCyan: 54.9 - brightWhite: 89.6 diff --git a/themes/onebitcode.yaml b/themes/onebitcode.yaml index 1c5e414e..962d7699 100644 --- a/themes/onebitcode.yaml +++ b/themes/onebitcode.yaml @@ -8,6 +8,7 @@ source: author: "OneBitCode" repo: "https://github.com/isaacpontes/onebitcode-theme" url: "https://marketplace.visualstudio.com/items?itemName=OneBitCode.rockstar-theme" + formats: null colors: bg: "#252525" fg: "#E5E5E5" diff --git a/themes/onecalm.yaml b/themes/onecalm.yaml index 15a3f652..1f85677d 100644 --- a/themes/onecalm.yaml +++ b/themes/onecalm.yaml @@ -8,6 +8,7 @@ source: author: "volkovpishet" repo: "https://github.com/volkovpishet/one-calm-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=volkovpishet.one-calm-theme" + formats: null colors: bg: "#2D3440" fg: "#FFFFFF" diff --git a/themes/onedark-nvim.yaml b/themes/onedark-nvim.yaml deleted file mode 100644 index 7e05fa53..00000000 --- a/themes/onedark-nvim.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "onedark.nvim" -source: - marketplace_id: "bartoszmaka95.onedark" - version: "0.2.1" - installs: 8582 - rating: 0 - ratings: 0 - author: "bartoszmaka95" - repo: "https://github.com/bartoszmaka/vscode-onedark" - url: "https://marketplace.visualstudio.com/items?itemName=bartoszmaka95.onedark" -colors: - bg: "#1A212E" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "pink" - hue: 263 - pair: null - contrast: - fg: 58.1 - black: 7.6 - red: 35.5 - green: 59.1 - yellow: 47.3 - blue: 48.4 - magenta: 37.8 - cyan: 51.3 - white: 89.4 - brightBlack: 14.2 - brightRed: 44.8 - brightGreen: 75.5 - brightYellow: 60 - brightBlue: 62.5 - brightMagenta: 49 - brightCyan: 66.5 - brightWhite: 81.8 diff --git a/themes/onedark-pro-suhayb-s-version-v2.yaml b/themes/onedark-pro-suhayb-s-version-v2.yaml deleted file mode 100644 index 86d0f658..00000000 --- a/themes/onedark-pro-suhayb-s-version-v2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OneDark Pro - Suhayb's Version v2" -source: - marketplace_id: "Suhaybu.onedarkpro-colorblind" - version: "1.0.1" - installs: 2280 - rating: 5 - ratings: 1 - author: "Suhaybu" - repo: "https://github.com/suhaybu/onedarkpro-colorblind" - url: "https://marketplace.visualstudio.com/items?itemName=Suhaybu.onedarkpro-colorblind" -colors: - bg: "#282C34" - fg: "#E4EBFF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 90.7 - black: 0 - red: 33.5 - green: 57.2 - yellow: 45.4 - blue: 46.5 - magenta: 35.9 - cyan: 49.3 - white: 79.8 - brightBlack: 12.3 - brightRed: 42.9 - brightGreen: 73.6 - brightYellow: 58 - brightBlue: 60.5 - brightMagenta: 47.1 - brightCyan: 64.6 - brightWhite: 87.4 diff --git a/themes/onedark-vibrant.yaml b/themes/onedark-vibrant.yaml index 253ad0d9..114292c7 100644 --- a/themes/onedark-vibrant.yaml +++ b/themes/onedark-vibrant.yaml @@ -2,12 +2,13 @@ name: "OneDark Vibrant" source: marketplace_id: "onedark-vibrant-theme-dev.onedark-vibrant-vscode" version: "1.2.1" - installs: 20 + installs: 21 rating: 0 ratings: 0 author: "onedark-vibrant-theme-dev" repo: "https://github.com/aschoettler/onedark-vibrant" url: "https://marketplace.visualstudio.com/items?itemName=onedark-vibrant-theme-dev.onedark-vibrant-vscode" + formats: null colors: bg: "#1A1B26" fg: "#DCDFE4" diff --git a/themes/oneiroi-caffeine.yaml b/themes/oneiroi-caffeine.yaml index ad8aecc9..0bb80271 100644 --- a/themes/oneiroi-caffeine.yaml +++ b/themes/oneiroi-caffeine.yaml @@ -8,6 +8,7 @@ source: author: "OneiroiTheme" repo: "https://github.com/OneiroiTheme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=OneiroiTheme.oneiroi-theme-vscode" + formats: null colors: bg: "#ECEEF3" fg: "#181C20" diff --git a/themes/oneiroi-dream.yaml b/themes/oneiroi-dream.yaml index 38e62704..fb4af156 100644 --- a/themes/oneiroi-dream.yaml +++ b/themes/oneiroi-dream.yaml @@ -8,6 +8,7 @@ source: author: "OneiroiTheme" repo: "https://github.com/OneiroiTheme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=OneiroiTheme.oneiroi-theme-vscode" + formats: null colors: bg: "#25282C" fg: "#E0E2E8" diff --git a/themes/oneiroi-melatonin.yaml b/themes/oneiroi-melatonin.yaml index d5004271..82632bf9 100644 --- a/themes/oneiroi-melatonin.yaml +++ b/themes/oneiroi-melatonin.yaml @@ -8,6 +8,7 @@ source: author: "OneiroiTheme" repo: "https://github.com/OneiroiTheme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=OneiroiTheme.oneiroi-theme-vscode" + formats: null colors: bg: "#1C2024" fg: "#E0E2E8" diff --git a/themes/onemonokai80s.yaml b/themes/onemonokai80s.yaml deleted file mode 100644 index 421f6edc..00000000 --- a/themes/onemonokai80s.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "OneMonokai80s" -source: - marketplace_id: "axiomaticstudios.one-monokai-80s" - version: "2.6.6" - installs: 61824 - rating: 5 - ratings: 6 - author: "Axiomatic Studios" - repo: "https://github.com/marcelo-mason/one-monokai-80s" - url: "https://marketplace.visualstudio.com/items?itemName=axiomaticstudios.one-monokai-80s" -colors: - bg: "#1F2237" - fg: "#A6B1C9" - black: "#6F7887" - red: "#E57685" - green: "#86BB94" - yellow: "#C9B999" - blue: "#61A2EF" - magenta: "#D491CF" - cyan: "#56B6C2" - white: "#A6B1C9" - brightBlack: "#6F7887" - brightRed: "#E57685" - brightGreen: "#86BB94" - brightYellow: "#C9B999" - brightBlue: "#61A2EF" - brightMagenta: "#D491CF" - brightCyan: "#56B6C2" - brightWhite: "#A6B1C9" -meta: - mode: "dark" - accent: "red" - hue: 277 - pair: null - contrast: - fg: 57.2 - black: 28.1 - red: 44.3 - green: 56.3 - yellow: 62.8 - blue: 47.8 - magenta: 52.2 - cyan: 52.9 - white: 57.2 - brightBlack: 28.1 - brightRed: 44.3 - brightGreen: 56.3 - brightYellow: 62.8 - brightBlue: 47.8 - brightMagenta: 52.2 - brightCyan: 52.9 - brightWhite: 57.2 diff --git a/themes/onemonokai80sog.yaml b/themes/onemonokai80sog.yaml index a564b072..9767136e 100644 --- a/themes/onemonokai80sog.yaml +++ b/themes/onemonokai80sog.yaml @@ -8,6 +8,7 @@ source: author: "Axiomatic Studios" repo: "https://github.com/marcelo-mason/one-monokai-80s" url: "https://marketplace.visualstudio.com/items?itemName=axiomaticstudios.one-monokai-80s" + formats: null colors: bg: "#282C34" fg: "#BEC2CA" diff --git a/themes/onenv.yaml b/themes/onenv.yaml index f78efb02..794b7a83 100644 --- a/themes/onenv.yaml +++ b/themes/onenv.yaml @@ -8,6 +8,7 @@ source: author: "OneNv" repo: "https://github.com/udan-jayanith/onenv" url: "https://marketplace.visualstudio.com/items?itemName=udan-jayanith-jayakody.onenv" + formats: null colors: bg: "#161B22" fg: "#ECF2F8" diff --git a/themes/onething.yaml b/themes/onething.yaml index e67a5003..815a33a2 100644 --- a/themes/onething.yaml +++ b/themes/onething.yaml @@ -8,6 +8,7 @@ source: author: "Entuent" repo: "https://github.com/shmatt/onething-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Entuent.onething-vscode-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/oni-theme.yaml b/themes/oni-theme.yaml index aa146ef7..b9316923 100644 --- a/themes/oni-theme.yaml +++ b/themes/oni-theme.yaml @@ -2,12 +2,13 @@ name: "Oni Theme" source: marketplace_id: "onikijo.oni-color-theme" version: "1.1.3" - installs: 189 + installs: 190 rating: 0 ratings: 0 author: "onikijo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=onikijo.oni-color-theme" + formats: null colors: bg: "#292A2F" fg: "#FFFFFF" diff --git a/themes/onlydark.yaml b/themes/onlydark.yaml index f82611c4..eb38da7c 100644 --- a/themes/onlydark.yaml +++ b/themes/onlydark.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/inspiration_themevsc" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" + formats: null colors: bg: "#1A1A1A" fg: "#EEFFFF" diff --git a/themes/onlydarklight.yaml b/themes/onlydarklight.yaml index c259a52d..763657dd 100644 --- a/themes/onlydarklight.yaml +++ b/themes/onlydarklight.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "YesCode.only-dark-theme" version: "0.0.16" installs: 383 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/yesomac/only_dark" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" + formats: null colors: bg: "#08090A" fg: "#EEFFFF" diff --git a/themes/onora.yaml b/themes/onora.yaml index cad7bb1f..d3396c0d 100644 --- a/themes/onora.yaml +++ b/themes/onora.yaml @@ -8,6 +8,7 @@ source: author: "Robert Jenko" repo: null url: "https://marketplace.visualstudio.com/items?itemName=NolanJenko.abelian" + formats: null colors: bg: "#232E35" fg: "#EEFFFF" diff --git a/themes/onyx-core.yaml b/themes/onyx-core.yaml index 5ca1f1fb..f328be2d 100644 --- a/themes/onyx-core.yaml +++ b/themes/onyx-core.yaml @@ -8,6 +8,7 @@ source: author: "Dmytro Zelenetskyi" repo: "https://github.com/zemd/vscode-theme-zemd" url: "https://marketplace.visualstudio.com/items?itemName=zemd.zemd-theme-dark" + formats: null colors: bg: "#272727" fg: "#B0B0B0" diff --git a/themes/onyx-ghost.yaml b/themes/onyx-ghost.yaml index b41e2aab..6f2dc090 100644 --- a/themes/onyx-ghost.yaml +++ b/themes/onyx-ghost.yaml @@ -8,6 +8,7 @@ source: author: "Dmytro Zelenetskyi" repo: "https://github.com/zemd/vscode-theme-zemd" url: "https://marketplace.visualstudio.com/items?itemName=zemd.zemd-theme-dark" + formats: null colors: bg: "#242424" fg: "#B0B0B0" diff --git a/themes/onyx-theme-color.yaml b/themes/onyx-theme-color.yaml deleted file mode 100644 index 82dbb36c..00000000 --- a/themes/onyx-theme-color.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Onyx Theme Color" -source: - marketplace_id: "dev-onyx.onyx-theme" - version: "1.2.0" - installs: 72 - rating: 5 - ratings: 1 - author: "dev-onyx" - repo: "https://github.com/dev-onyx/onyx-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dev-onyx.onyx-theme" -colors: - bg: "#121212" - fg: "#E4E4E4" - black: "#242424" - red: "#FC6B83" - green: "#3FA266" - yellow: "#D2943E" - blue: "#CCCCCC" - magenta: "#B48EAD" - cyan: "#CCCCCC" - white: "#E4E4E4" - brightBlack: "#E4E4E4" - brightRed: "#FC6B83" - brightGreen: "#70B489" - brightYellow: "#F1B467" - brightBlue: "#BEBEBE" - brightMagenta: "#B48EAD" - brightCyan: "#CCCCCC" - brightWhite: "#E4E4E4" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 89.8 - black: 0 - red: 48.5 - green: 42.3 - yellow: 50.6 - blue: 75.1 - magenta: 46.9 - cyan: 75.1 - white: 89.8 - brightBlack: 89.8 - brightRed: 48.5 - brightGreen: 53.4 - brightYellow: 67.8 - brightBlue: 66.9 - brightMagenta: 46.9 - brightCyan: 75.1 - brightWhite: 89.8 diff --git a/themes/onyx.yaml b/themes/onyx.yaml index ca933b26..63b83382 100644 --- a/themes/onyx.yaml +++ b/themes/onyx.yaml @@ -1,52 +1,53 @@ name: "Onyx" source: - marketplace_id: "Priyaank.ether" - version: "2.0.1" - installs: 55 + marketplace_id: "doay.onyx" + version: "0.0.4" + installs: 1235 rating: 0 ratings: 0 - author: "Priyaank" - repo: "https://github.com/PRIYAANK2510/Ether" - url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.ether" + author: "Doa Yakut Kilic" + repo: "https://github.com/doayakut/onyx" + url: "https://marketplace.visualstudio.com/items?itemName=doay.onyx" + formats: null colors: - bg: "#1F1F1F" - fg: "#808080" - black: "#181818" - red: "#A94B67" - green: "#499F71" - yellow: "#B4927A" - blue: "#73B3E4" - magenta: "#556FB6" - cyan: "#83918E" - white: "#DFDFDF" - brightBlack: "#707070" - brightRed: "#C15D7D" - brightGreen: "#5AB585" - brightYellow: "#CAA78E" - brightBlue: "#8BC4ED" - brightMagenta: "#6A83C7" - brightCyan: "#9AA8A5" - brightWhite: "#F0F0F0" + bg: "#222222" + fg: "#CCCCCC" + black: "#000000" + red: "#AA3731" + green: "#448C27" + yellow: "#CB9000" + blue: "#325CC0" + magenta: "#7A3E9D" + cyan: "#0083B2" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#F05050" + brightGreen: "#60CB00" + brightYellow: "#FFBC5D" + brightBlue: "#007ACC" + brightMagenta: "#E64CE6" + brightCyan: "#00AACB" + brightWhite: "#CCCCCC" meta: mode: "dark" - accent: "red" + accent: "pink" hue: null pair: null contrast: - fg: 32.8 + fg: 73.2 black: 0 - red: 23.4 - green: 40.3 - yellow: 45.1 - blue: 55.7 - magenta: 26.3 - cyan: 39.6 - white: 85.3 - brightBlack: 25.4 - brightRed: 32 - brightGreen: 51 - brightYellow: 56.3 - brightBlue: 65.2 - brightMagenta: 35.3 - brightCyan: 51.5 - brightWhite: 96.1 + red: 18.8 + green: 30.7 + yellow: 46 + blue: 19.3 + magenta: 15.8 + cyan: 30.2 + white: 73.2 + brightBlack: 28.1 + brightRed: 37.6 + brightGreen: 59.4 + brightYellow: 71.3 + brightBlue: 28.6 + brightMagenta: 41.1 + brightCyan: 46.8 + brightWhite: 73.2 diff --git a/themes/ook.yaml b/themes/ook.yaml index c50de7aa..fe9ef666 100644 --- a/themes/ook.yaml +++ b/themes/ook.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dustinwilson.ook" version: "0.0.1" installs: 232 + rating: 0 + ratings: 0 author: "Dustin Wilson" repo: "https://github.com/dustinwilson/ook-syntax-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dustinwilson.ook" + formats: null colors: bg: "#1F1F1F" fg: "#B1B7B8" diff --git a/themes/oolory-color-theme.yaml b/themes/oolory-color-theme.yaml index 9e29a633..e6a80bba 100644 --- a/themes/oolory-color-theme.yaml +++ b/themes/oolory-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Michał Gutowski" repo: "https://gitlab.com/gtwsky_/oolory" url: "https://marketplace.visualstudio.com/items?itemName=gtwsky.oolory" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/oolory-dark-color-theme.yaml b/themes/oolory-dark-color-theme.yaml deleted file mode 100644 index 30384240..00000000 --- a/themes/oolory-dark-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "oolory-dark-color-theme" -source: - marketplace_id: "gtwsky.oolory" - version: "2.0.0" - installs: 2116 - rating: 5 - ratings: 1 - author: "Michał Gutowski" - repo: "https://gitlab.com/gtwsky_/oolory" - url: "https://marketplace.visualstudio.com/items?itemName=gtwsky.oolory" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#FFFFFF" - red: "#FF0032" - green: "#00FF68" - yellow: "#FFCA00" - blue: "#004BFF" - magenta: "#D700FF" - cyan: "#00D2FF" - white: "#FFFFFF" - brightBlack: "#FFFFFF" - brightRed: "#FF0032" - brightGreen: "#00FF68" - brightYellow: "#FFCA00" - brightBlue: "#004BFF" - brightMagenta: "#D700FF" - brightCyan: "#00D2FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 107.9 - red: 37.7 - green: 87.2 - yellow: 78.8 - blue: 22.9 - magenta: 37.6 - cyan: 70 - white: 107.9 - brightBlack: 107.9 - brightRed: 37.7 - brightGreen: 87.2 - brightYellow: 78.8 - brightBlue: 22.9 - brightMagenta: 37.6 - brightCyan: 70 - brightWhite: 107.9 diff --git a/themes/openbase.yaml b/themes/openbase.yaml index 86eb5219..332a68fb 100644 --- a/themes/openbase.yaml +++ b/themes/openbase.yaml @@ -8,6 +8,7 @@ source: author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null colors: bg: "#0A0F18" fg: "#B8C6E0" diff --git a/themes/openspace-dark-flat.yaml b/themes/openspace-dark-flat.yaml index 8ca1fec4..f09681d7 100644 --- a/themes/openspace-dark-flat.yaml +++ b/themes/openspace-dark-flat.yaml @@ -8,6 +8,7 @@ source: author: "Open Space Technology" repo: "https://github.com/hunqng/openspace-theme" url: "https://marketplace.visualstudio.com/items?itemName=OpenSpace.openspace-theme" + formats: null colors: bg: "#191919" fg: "#E1E1E1" diff --git a/themes/openspace-dark.yaml b/themes/openspace-dark.yaml index f4789ae3..edcd015a 100644 --- a/themes/openspace-dark.yaml +++ b/themes/openspace-dark.yaml @@ -8,6 +8,7 @@ source: author: "Open Space Technology" repo: "https://github.com/hunqng/openspace-theme" url: "https://marketplace.visualstudio.com/items?itemName=OpenSpace.openspace-theme" + formats: null colors: bg: "#2A2D31" fg: "#E1E1E1" diff --git a/themes/openspace.yaml b/themes/openspace.yaml index 842dff80..fcfbae9c 100644 --- a/themes/openspace.yaml +++ b/themes/openspace.yaml @@ -8,6 +8,7 @@ source: author: "Open Space Technology" repo: "https://github.com/hunqng/openspace-theme" url: "https://marketplace.visualstudio.com/items?itemName=OpenSpace.openspace-theme" + formats: null colors: bg: "#2A2D33" fg: "#E1E1E1" diff --git a/themes/opmono-odarkp.yaml b/themes/opmono-odarkp.yaml index 50b1a090..6a1a195f 100644 --- a/themes/opmono-odarkp.yaml +++ b/themes/opmono-odarkp.yaml @@ -2,12 +2,13 @@ name: "opmono odarkp" source: marketplace_id: "russellmars.opmono-odarkp" version: "0.0.2" - installs: 538 + installs: 539 rating: 0 ratings: 0 author: "russellmars" repo: "https://github.com/russellmars/opmono-odarkp" url: "https://marketplace.visualstudio.com/items?itemName=russellmars.opmono-odarkp" + formats: null colors: bg: "#282C34" fg: "#C8C8C8" diff --git a/themes/optimus-dark.yaml b/themes/optimus-dark.yaml index c7437605..67f132d4 100644 --- a/themes/optimus-dark.yaml +++ b/themes/optimus-dark.yaml @@ -8,6 +8,7 @@ source: author: "Opt Systems" repo: "https://github.com/opt-systems/optimus-dark-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=optsystems.optimus-dark-vscode-theme" + formats: null colors: bg: "#121212" fg: "#FFFFFF" diff --git a/themes/oracle-vision.yaml b/themes/oracle-vision.yaml deleted file mode 100644 index 93a3ea27..00000000 --- a/themes/oracle-vision.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Oracle-Vision" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#0E1A1F" - fg: "#45E8E8" - black: "#0E1A1F" - red: "#F14444" - green: "#29C3A0" - yellow: "#D29922" - blue: "#1DB8CE" - magenta: "#1DB8CE" - cyan: "#29C3A0" - white: "#45E8E8" - brightBlack: "#0E1A1F" - brightRed: "#F14444" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#1DB8CE" - brightMagenta: "#1DB8CE" - brightCyan: "#29C3A0" - brightWhite: "#45E8E8" -meta: - mode: "dark" - accent: "orange" - hue: 226 - pair: null - contrast: - fg: 78.9 - black: 0 - red: 37.1 - green: 57.5 - yellow: 51.5 - blue: 54.4 - magenta: 54.4 - cyan: 57.5 - white: 78.9 - brightBlack: 0 - brightRed: 37.1 - brightGreen: 57.5 - brightYellow: 51.5 - brightBlue: 54.4 - brightMagenta: 54.4 - brightCyan: 57.5 - brightWhite: 78.9 diff --git a/themes/oradia.yaml b/themes/oradia.yaml index 12716851..c3d531dd 100644 --- a/themes/oradia.yaml +++ b/themes/oradia.yaml @@ -8,6 +8,7 @@ source: author: "Hansespinosa2" repo: "https://github.com/Hansespinosa2/oradia-theme" url: "https://marketplace.visualstudio.com/items?itemName=Hansespinosa2.oradia-theme" + formats: null colors: bg: "#1B1B1B" fg: "#BFD9CA" diff --git a/themes/oragethemedark.yaml b/themes/oragethemedark.yaml index d664cf01..ab6fd9f9 100644 --- a/themes/oragethemedark.yaml +++ b/themes/oragethemedark.yaml @@ -8,6 +8,7 @@ source: author: "daniloBrayann" repo: "https://github.com/danilobrayann/dev-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.blue-theme-dark" + formats: null colors: bg: "#19191A" fg: "#878784" diff --git a/themes/orago-s-warm-theme.yaml b/themes/orago-s-warm-theme.yaml deleted file mode 100644 index d87dd867..00000000 --- a/themes/orago-s-warm-theme.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Orago's Warm Theme" -source: - marketplace_id: "orago.orago-themes" - version: "0.0.4" - installs: 24 - author: "orago" - repo: "https://github.com/Orago/orago-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=orago.orago-themes" -colors: - bg: "#A1663D" - fg: "#1A1108" - black: "#003B42" - red: "#E34E1C" - green: "#00B368" - yellow: "#F49725" - blue: "#0094F0" - magenta: "#FF5792" - cyan: "#00BDD6" - white: "#8CA6A6" - brightBlack: "#004D57" - brightRed: "#FF4000" - brightGreen: "#00D17A" - brightYellow: "#FF8C00" - brightBlue: "#0FA3FF" - brightMagenta: "#FF6B9F" - brightCyan: "#00CBE6" - brightWhite: "#BBC3C4" -meta: - mode: "light" - accent: "orange" - hue: 54 - pair: null - contrast: - fg: 30.9 - black: 23.4 - red: 0 - green: 19.4 - yellow: 27.9 - blue: 12.8 - magenta: 16.2 - cyan: 28 - white: 21.3 - brightBlack: 17.3 - brightRed: 10.7 - brightGreen: 33.8 - brightYellow: 26.6 - brightBlue: 19.7 - brightMagenta: 20.5 - brightCyan: 35.2 - brightWhite: 39.3 diff --git a/themes/orange-coral.yaml b/themes/orange-coral.yaml index c672bc9c..98ad2fde 100644 --- a/themes/orange-coral.yaml +++ b/themes/orange-coral.yaml @@ -1,13 +1,14 @@ name: "orange coral" source: - marketplace_id: "FinnyComet.coral-ico" - version: "1.6.0" - installs: 545 + marketplace_id: "FinnyComet.coral" + version: "1.9.0" + installs: 1464 rating: 0 ratings: 0 author: "Lorenzo" repo: "https://github.com/FinnyComet32985/Coral-theme-for-vs-code" - url: "https://marketplace.visualstudio.com/items?itemName=FinnyComet.coral-ico" + url: "https://marketplace.visualstudio.com/items?itemName=FinnyComet.coral" + formats: null colors: bg: "#131C26" fg: "#D4D4D4" diff --git a/themes/orange-dark.yaml b/themes/orange-dark.yaml index 15c94174..beefda41 100644 --- a/themes/orange-dark.yaml +++ b/themes/orange-dark.yaml @@ -8,6 +8,7 @@ source: author: "RaphtikGHG" repo: null url: "https://marketplace.visualstudio.com/items?itemName=RaphtikGHG.orange-dark" + formats: null colors: bg: "#1E1E1E" fg: "#BCBCBC" diff --git a/themes/orange-ocean.yaml b/themes/orange-ocean.yaml index c205184b..68573f4f 100644 --- a/themes/orange-ocean.yaml +++ b/themes/orange-ocean.yaml @@ -8,6 +8,7 @@ source: author: "Ender Bonnet" repo: "https://github.com/enBonnet/Orange-ocean-theme" url: "https://marketplace.visualstudio.com/items?itemName=enbonnet.orange-ocean" + formats: null colors: bg: "#040D10" fg: "#F8F4F9" diff --git a/themes/orange.yaml b/themes/orange.yaml index 1d6f2d4c..2cf19d80 100644 --- a/themes/orange.yaml +++ b/themes/orange.yaml @@ -8,6 +8,7 @@ source: author: "natecrow" repo: "https://github.com/natecrow/consonance-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" + formats: null colors: bg: "#111111" fg: "#C8C4D7" diff --git a/themes/orangefox-dark.yaml b/themes/orangefox-dark.yaml index a6ce784c..f43cd73a 100644 --- a/themes/orangefox-dark.yaml +++ b/themes/orangefox-dark.yaml @@ -8,6 +8,7 @@ source: author: "Darko Kuzmanovic" repo: "https://github.com/DarkoKuzmanovic/orangefox" url: "https://marketplace.visualstudio.com/items?itemName=quzma.orangefox" + formats: null colors: bg: "#202124" fg: "#CCCCCC" diff --git a/themes/orangefox-light.yaml b/themes/orangefox-light.yaml index 564823f5..430c24b9 100644 --- a/themes/orangefox-light.yaml +++ b/themes/orangefox-light.yaml @@ -8,6 +8,7 @@ source: author: "Darko Kuzmanovic" repo: "https://github.com/DarkoKuzmanovic/orangefox" url: "https://marketplace.visualstudio.com/items?itemName=quzma.orangefox" + formats: null colors: bg: "#FFFFFF" fg: "#2C2C2C" diff --git a/themes/orangelemon.yaml b/themes/orangelemon.yaml index 9e1f484c..d378f332 100644 --- a/themes/orangelemon.yaml +++ b/themes/orangelemon.yaml @@ -8,6 +8,7 @@ source: author: "trisdo687" repo: "https://github.com/tsdenouden/orangelemonTheme" url: "https://marketplace.visualstudio.com/items?itemName=trisdo687.orangelemon" + formats: null colors: bg: "#242322" fg: "#A58D7B" diff --git a/themes/orangey-darker-1.yaml b/themes/orangey-darker-1.yaml deleted file mode 100644 index a6c13ee0..00000000 --- a/themes/orangey-darker-1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Orangey (Darker 1)" -source: - marketplace_id: "ricafolio.orangey-vscode-theme" - version: "1.1.1" - installs: 973 - rating: 5 - ratings: 2 - author: "ricafolio" - repo: "https://github.com/ricafolio/orangey-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" -colors: - bg: "#141414" - fg: "#F2E4DB" - black: "#000000" - red: "#EF4823" - green: "#82B200" - yellow: "#EFD023" - blue: "#023E8A" - magenta: "#B200A9" - cyan: "#0096C7" - white: "#CAC8A9" - brightBlack: "#666666" - brightRed: "#F37256" - brightGreen: "#DEFF39" - brightYellow: "#F3DB56" - brightBlue: "#0077B6" - brightMagenta: "#EE00E2" - brightCyan: "#00B4D8" - brightWhite: "#B2B184" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 91.2 - black: 0 - red: 37.4 - green: 52 - yellow: 78 - blue: 8.8 - magenta: 23.2 - cyan: 40.2 - white: 71.6 - brightBlack: 22.3 - brightRed: 47 - brightGreen: 97.7 - brightYellow: 83.8 - brightBlue: 27.9 - brightMagenta: 39.5 - brightCyan: 53.5 - brightWhite: 58 diff --git a/themes/orangey-darker-2.yaml b/themes/orangey-darker-2.yaml deleted file mode 100644 index 9821a1bd..00000000 --- a/themes/orangey-darker-2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Orangey (Darker 2)" -source: - marketplace_id: "ricafolio.orangey-vscode-theme" - version: "1.1.1" - installs: 973 - rating: 5 - ratings: 2 - author: "ricafolio" - repo: "https://github.com/ricafolio/orangey-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" -colors: - bg: "#0B0B0B" - fg: "#F2E4DB" - black: "#000000" - red: "#EF4823" - green: "#82B200" - yellow: "#EFD023" - blue: "#023E8A" - magenta: "#B200A9" - cyan: "#0096C7" - white: "#CAC8A9" - brightBlack: "#666666" - brightRed: "#F37256" - brightGreen: "#DEFF39" - brightYellow: "#F3DB56" - brightBlue: "#0077B6" - brightMagenta: "#EE00E2" - brightCyan: "#00B4D8" - brightWhite: "#B2B184" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 91.8 - black: 0 - red: 37.9 - green: 52.5 - yellow: 78.6 - blue: 9.3 - magenta: 23.8 - cyan: 40.8 - white: 72.2 - brightBlack: 22.9 - brightRed: 47.6 - brightGreen: 98.2 - brightYellow: 84.4 - brightBlue: 28.4 - brightMagenta: 40.1 - brightCyan: 54.1 - brightWhite: 58.5 diff --git a/themes/orangey-lighter-1.yaml b/themes/orangey-lighter-1.yaml deleted file mode 100644 index f937c806..00000000 --- a/themes/orangey-lighter-1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Orangey (Lighter 1)" -source: - marketplace_id: "ricafolio.orangey-vscode-theme" - version: "1.1.1" - installs: 973 - rating: 5 - ratings: 2 - author: "ricafolio" - repo: "https://github.com/ricafolio/orangey-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" -colors: - bg: "#222222" - fg: "#F2E4DB" - black: "#000000" - red: "#EF4823" - green: "#82B200" - yellow: "#EFD023" - blue: "#023E8A" - magenta: "#B200A9" - cyan: "#0096C7" - white: "#CAC8A9" - brightBlack: "#666666" - brightRed: "#F37256" - brightGreen: "#DEFF39" - brightYellow: "#F3DB56" - brightBlue: "#0077B6" - brightMagenta: "#EE00E2" - brightCyan: "#00B4D8" - brightWhite: "#B2B184" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 89.5 - black: 0 - red: 35.7 - green: 50.3 - yellow: 76.3 - blue: 0 - magenta: 21.5 - cyan: 38.5 - white: 69.9 - brightBlack: 20.6 - brightRed: 45.3 - brightGreen: 96 - brightYellow: 82.1 - brightBlue: 26.2 - brightMagenta: 37.8 - brightCyan: 51.8 - brightWhite: 56.3 diff --git a/themes/orangey-lighter-2.yaml b/themes/orangey-lighter-2.yaml deleted file mode 100644 index e1f8c897..00000000 --- a/themes/orangey-lighter-2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Orangey (Lighter 2)" -source: - marketplace_id: "ricafolio.orangey-vscode-theme" - version: "1.1.1" - installs: 973 - rating: 5 - ratings: 2 - author: "ricafolio" - repo: "https://github.com/ricafolio/orangey-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" -colors: - bg: "#272727" - fg: "#F2E4DB" - black: "#000000" - red: "#EF4823" - green: "#82B200" - yellow: "#EFD023" - blue: "#023E8A" - magenta: "#B200A9" - cyan: "#0096C7" - white: "#CAC8A9" - brightBlack: "#666666" - brightRed: "#F37256" - brightGreen: "#DEFF39" - brightYellow: "#F3DB56" - brightBlue: "#0077B6" - brightMagenta: "#EE00E2" - brightCyan: "#00B4D8" - brightWhite: "#B2B184" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 88.7 - black: 0 - red: 34.8 - green: 49.4 - yellow: 75.5 - blue: 0 - magenta: 20.7 - cyan: 37.7 - white: 69.1 - brightBlack: 19.8 - brightRed: 44.5 - brightGreen: 95.2 - brightYellow: 81.3 - brightBlue: 25.3 - brightMagenta: 37 - brightCyan: 51 - brightWhite: 55.4 diff --git a/themes/orangey.yaml b/themes/orangey.yaml deleted file mode 100644 index 6efcf37a..00000000 --- a/themes/orangey.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Orangey" -source: - marketplace_id: "ricafolio.orangey-vscode-theme" - version: "1.1.1" - installs: 973 - rating: 5 - ratings: 2 - author: "ricafolio" - repo: "https://github.com/ricafolio/orangey-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" -colors: - bg: "#1C1C1C" - fg: "#F2E4DB" - black: "#000000" - red: "#EF4823" - green: "#82B200" - yellow: "#EFD023" - blue: "#023E8A" - magenta: "#B200A9" - cyan: "#0096C7" - white: "#CAC8A9" - brightBlack: "#666666" - brightRed: "#F37256" - brightGreen: "#DEFF39" - brightYellow: "#F3DB56" - brightBlue: "#0077B6" - brightMagenta: "#EE00E2" - brightCyan: "#00B4D8" - brightWhite: "#B2B184" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 90.4 - black: 0 - red: 36.5 - green: 51.1 - yellow: 77.2 - blue: 7.9 - magenta: 22.4 - cyan: 39.4 - white: 70.8 - brightBlack: 21.5 - brightRed: 46.2 - brightGreen: 96.8 - brightYellow: 83 - brightBlue: 27 - brightMagenta: 38.7 - brightCyan: 52.7 - brightWhite: 57.1 diff --git a/themes/orbi-blue.yaml b/themes/orbi-blue.yaml index d2904f54..803aaf35 100644 --- a/themes/orbi-blue.yaml +++ b/themes/orbi-blue.yaml @@ -8,6 +8,7 @@ source: author: "AnishDe12020" repo: "https://github.com/AnishDe12020/orbi" url: "https://marketplace.visualstudio.com/items?itemName=anishde12020.orbi" + formats: null colors: bg: "#000000" fg: "#868690" diff --git a/themes/orbi-red.yaml b/themes/orbi-red.yaml index d6e93542..824ea3a5 100644 --- a/themes/orbi-red.yaml +++ b/themes/orbi-red.yaml @@ -8,6 +8,7 @@ source: author: "AnishDe12020" repo: "https://github.com/AnishDe12020/orbi" url: "https://marketplace.visualstudio.com/items?itemName=anishde12020.orbi" + formats: null colors: bg: "#000000" fg: "#868690" diff --git a/themes/orca.yaml b/themes/orca.yaml deleted file mode 100644 index 0ccb7e65..00000000 --- a/themes/orca.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Orca" -source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - rating: 0 - ratings: 0 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#444444" - green: "#666666" - yellow: "#555555" - blue: "#333333" - magenta: "#777777" - cyan: "#888888" - white: "#FFFFFF" - brightBlack: "#222222" - brightRed: "#666666" - brightGreen: "#888888" - brightYellow: "#777777" - brightBlue: "#555555" - brightMagenta: "#999999" - brightCyan: "#AAAAAA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 9.8 - green: 23 - yellow: 16.1 - blue: 0 - magenta: 30.6 - cyan: 38.6 - white: 107.9 - brightBlack: 0 - brightRed: 23 - brightGreen: 38.6 - brightYellow: 30.6 - brightBlue: 16.1 - brightMagenta: 47.2 - brightCyan: 56.2 - brightWhite: 107.9 diff --git a/themes/origami-theme.yaml b/themes/origami-theme.yaml index 8ef15c7f..b776c033 100644 --- a/themes/origami-theme.yaml +++ b/themes/origami-theme.yaml @@ -1,4 +1,4 @@ -name: "origami-theme" +name: "Origami Theme" source: marketplace_id: "febriadji.origami-theme" version: "0.0.5" @@ -8,6 +8,7 @@ source: author: "febriadji" repo: "git+https://github.com/febriadj/vscode-origami-theme" url: "https://marketplace.visualstudio.com/items?itemName=febriadji.origami-theme" + formats: null colors: bg: "#0F111A" fg: "#FFFFFF" diff --git a/themes/origamid.yaml b/themes/origamid.yaml deleted file mode 100644 index d3a45e7d..00000000 --- a/themes/origamid.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Origamid" -source: - marketplace_id: "origamid.origamid-theme" - version: "1.1.7" - installs: 63070 - rating: 5 - ratings: 5 - author: "Origamid" - repo: "https://github.com/origamid/origamid-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=origamid.origamid-theme" -colors: - bg: "#222222" - fg: "#FFFFFF" - black: "#363537" - red: "#99BBFE" - green: "#FFDD44" - yellow: "#88BB44" - blue: "#99BBFE" - magenta: "#99BBFF" - cyan: "#DDAAFF" - white: "#FFFFFF" - brightBlack: "#69676C" - brightRed: "#99BBFE" - brightGreen: "#FFDD44" - brightYellow: "#88BB44" - brightBlue: "#99BBFE" - brightMagenta: "#99BBFF" - brightCyan: "#DDAAFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 105.5 - black: 0 - red: 63.2 - green: 84.7 - yellow: 55 - blue: 63.2 - magenta: 63.2 - cyan: 65 - white: 105.5 - brightBlack: 21.4 - brightRed: 63.2 - brightGreen: 84.7 - brightYellow: 55 - brightBlue: 63.2 - brightMagenta: 63.2 - brightCyan: 65 - brightWhite: 105.5 diff --git a/themes/original-theme.yaml b/themes/original-theme.yaml index 0eb16036..4b05d7c2 100644 --- a/themes/original-theme.yaml +++ b/themes/original-theme.yaml @@ -8,6 +8,7 @@ source: author: "RLabs Inc." repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" + formats: null colors: bg: "#131211" fg: "#F7F5F5" diff --git a/themes/orion-black-fork.yaml b/themes/orion-black-fork.yaml deleted file mode 100644 index 3354c216..00000000 --- a/themes/orion-black-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Orion-Black - Fork" -source: - marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" - version: "9.0.1" - installs: 29917 - rating: 4.6 - ratings: 10 - author: "Hasibur R" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/orion-x-black.yaml b/themes/orion-x-black.yaml index 73c707e7..7c8a5d36 100644 --- a/themes/orion-x-black.yaml +++ b/themes/orion-x-black.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Orion.orion-x-black" version: "0.0.1" installs: 360 + rating: 0 + ratings: 0 author: "Orion" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Orion.orion-x-black" + formats: null colors: bg: "#000000" fg: "#DFDFDF" diff --git a/themes/orpheux.yaml b/themes/orpheux.yaml index 7af4c75f..072316ae 100644 --- a/themes/orpheux.yaml +++ b/themes/orpheux.yaml @@ -8,6 +8,7 @@ source: author: "orpheux666" repo: "https://github.com/orpheux/orpheux_vsc_theme" url: "https://marketplace.visualstudio.com/items?itemName=orpheux666.Orpheux" + formats: null colors: bg: "#292C3E" fg: "#F9F9F9" diff --git a/themes/orw.yaml b/themes/orw.yaml index 2ad7ac04..5d881a5b 100644 --- a/themes/orw.yaml +++ b/themes/orw.yaml @@ -8,6 +8,7 @@ source: author: "obsqrbtz" repo: "https://github.com/obsqrbtz/orw-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=obsqrbtz.orw-colorscheme" + formats: null colors: bg: "#0E1414" fg: "#ACBFB5" diff --git a/themes/orwellian-nightmare.yaml b/themes/orwellian-nightmare.yaml index f4745caa..5ae1a783 100644 --- a/themes/orwellian-nightmare.yaml +++ b/themes/orwellian-nightmare.yaml @@ -8,6 +8,7 @@ source: author: "Yovenzor Singh" repo: "https://github.com/Yovenzor/Orwellian-Nightmare" url: "https://marketplace.visualstudio.com/items?itemName=YovenzorSingh.orwellian-nightmare" + formats: null colors: bg: "#0A0A13" fg: "#FFFFFF" diff --git a/themes/osaka-solarized-pro-dark.yaml b/themes/osaka-solarized-pro-dark.yaml deleted file mode 100644 index 49ea3772..00000000 --- a/themes/osaka-solarized-pro-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Osaka Solarized Pro Dark" -source: - marketplace_id: "AashishKumar-3002.osaka-solarized-pro" - version: "1.0.2" - installs: 551 - rating: 0 - ratings: 0 - author: "AashishKumar-3002" - repo: "https://github.com/AashishKumar-3002/osaka-solarized-pro-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AashishKumar-3002.osaka-solarized-pro" -colors: - bg: "#002731" - fg: "#A5B4B9" - black: "#002731" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#445056" - brightRed: "#E85D67" - brightGreen: "#9BB528" - brightYellow: "#CCB525" - brightBlue: "#5DB6EB" - brightMagenta: "#E899C3" - brightCyan: "#35A8A5" - brightWhite: "#FDF6E3" -meta: - mode: "dark" - accent: "orange" - hue: 219 - pair: "Osaka Solarized Pro Light" - contrast: - fg: 57.5 - black: 0 - red: 28.4 - green: 39.9 - yellow: 39.9 - blue: 34.9 - magenta: 28.6 - cyan: 40.6 - white: 90.1 - brightBlack: 10.7 - brightRed: 38.3 - brightGreen: 53.6 - brightYellow: 59.6 - brightBlue: 55.3 - brightMagenta: 57.4 - brightCyan: 44.3 - brightWhite: 99.3 diff --git a/themes/osaka-solarized-pro-light.yaml b/themes/osaka-solarized-pro-light.yaml deleted file mode 100644 index f09753a1..00000000 --- a/themes/osaka-solarized-pro-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Osaka Solarized Pro Light" -source: - marketplace_id: "AashishKumar-3002.osaka-solarized-pro" - version: "1.0.2" - installs: 551 - rating: 0 - ratings: 0 - author: "AashishKumar-3002" - repo: "https://github.com/AashishKumar-3002/osaka-solarized-pro-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AashishKumar-3002.osaka-solarized-pro" -colors: - bg: "#FDF6E3" - fg: "#657B83" - black: "#002731" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#586E75" - brightRed: "#E85D67" - brightGreen: "#9BB528" - brightYellow: "#CCB525" - brightBlue: "#5DB6EB" - brightMagenta: "#E899C3" - brightCyan: "#35A8A5" - brightWhite: "#FDF6E3" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Osaka Solarized Pro Dark" - contrast: - fg: 65.7 - black: 97.2 - red: 65.3 - green: 53.8 - yellow: 53.8 - blue: 58.7 - magenta: 65 - cyan: 53.1 - white: 0 - brightBlack: 71.6 - brightRed: 55.4 - brightGreen: 40.4 - brightYellow: 34.7 - brightBlue: 38.8 - brightMagenta: 36.8 - brightCyan: 49.4 - brightWhite: 0 diff --git a/themes/osaka-solarized-pro-monokai-storm.yaml b/themes/osaka-solarized-pro-monokai-storm.yaml deleted file mode 100644 index 0908372f..00000000 --- a/themes/osaka-solarized-pro-monokai-storm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Osaka Solarized Pro Monokai Storm" -source: - marketplace_id: "AashishKumar-3002.osaka-solarized-pro" - version: "1.0.2" - installs: 551 - rating: 0 - ratings: 0 - author: "AashishKumar-3002" - repo: "https://github.com/AashishKumar-3002/osaka-solarized-pro-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AashishKumar-3002.osaka-solarized-pro" -colors: - bg: "#181825" - fg: "#CDD6F4" - black: "#45475A" - red: "#F38BA8" - green: "#A9DC76" - yellow: "#F9E2AF" - blue: "#89B4FA" - magenta: "#CBA6F7" - cyan: "#94E2D5" - white: "#BAC2DE" - brightBlack: "#585B70" - brightRed: "#F38BA8" - brightGreen: "#A9DC76" - brightYellow: "#F9E2AF" - brightBlue: "#89B4FA" - brightMagenta: "#F5C2E7" - brightCyan: "#94E2D5" - brightWhite: "#A6ADC8" -meta: - mode: "dark" - accent: "green" - hue: 284 - pair: null - contrast: - fg: 80.8 - black: 10.1 - red: 55.5 - green: 75 - yellow: 89.2 - blue: 59.9 - magenta: 61.6 - cyan: 79.1 - white: 68.9 - brightBlack: 17.7 - brightRed: 55.5 - brightGreen: 75 - brightYellow: 89.2 - brightBlue: 59.9 - brightMagenta: 77.5 - brightCyan: 79.1 - brightWhite: 57 diff --git a/themes/osean-boy.yaml b/themes/osean-boy.yaml index 3071a747..ba6d68b6 100644 --- a/themes/osean-boy.yaml +++ b/themes/osean-boy.yaml @@ -8,6 +8,7 @@ source: author: "Sreehari521" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Sreehari521.osean-boy" + formats: null colors: bg: "#111326" fg: "#FFFFFF" diff --git a/themes/oslo-dark.yaml b/themes/oslo-dark.yaml index 09fb50bf..45217aff 100644 --- a/themes/oslo-dark.yaml +++ b/themes/oslo-dark.yaml @@ -8,6 +8,7 @@ source: author: "Lazerai" repo: "https://github.com/LAZERAI/oslo-dark" url: "https://marketplace.visualstudio.com/items?itemName=lazerai.oslo-dark" + formats: null colors: bg: "#1A1A1A" fg: "#C8F0FA" diff --git a/themes/osmoz-dark.yaml b/themes/osmoz-dark.yaml deleted file mode 100644 index c900efaa..00000000 --- a/themes/osmoz-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Osmoz Dark" -source: - marketplace_id: "ArthurRasera.osmoz" - version: "1.1.1" - installs: 59 - rating: 5 - ratings: 2 - author: "Arthur Rasera" - repo: "https://github.com/Raseraa0/osmoz-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ArthurRasera.osmoz" -colors: - bg: "#1E1A3A" - fg: "#B9B5CF" - black: "#1E1E1E" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D0D0D0" - brightBlack: "#666666" - brightRed: "#FF7B82" - brightGreen: "#B4F59E" - brightYellow: "#FFD98F" - brightBlue: "#82CFFF" - brightMagenta: "#E19EF5" - brightCyan: "#6FE7F7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 287 - pair: null - contrast: - fg: 62 - black: 0 - red: 41.1 - green: 61.3 - yellow: 69.6 - blue: 53.7 - magenta: 44.2 - cyan: 53.6 - white: 76.1 - brightBlack: 21.1 - brightRed: 51.5 - brightGreen: 88.5 - brightYellow: 84.6 - brightBlue: 70.4 - brightMagenta: 61.4 - brightCyan: 80 - brightWhite: 105.9 diff --git a/themes/osx9.yaml b/themes/osx9.yaml index ff533556..d1647bda 100644 --- a/themes/osx9.yaml +++ b/themes/osx9.yaml @@ -8,6 +8,7 @@ source: author: "novidash" repo: "https://github.com/skeltonmod/OSX9VSCODE" url: "https://marketplace.visualstudio.com/items?itemName=novidash.classicplatinum" + formats: null colors: bg: "#D1DCF8" fg: "#725482" diff --git a/themes/otakon-contrast.yaml b/themes/otakon-contrast.yaml deleted file mode 100644 index b25e5f3d..00000000 --- a/themes/otakon-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "otakon-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#171417" - fg: "#F9F3F9" - black: "#252025" - red: "#BA0E2E" - green: "#B1A6CA" - yellow: "#F6E6EB" - blue: "#E484B2" - magenta: "#CACBDD" - cyan: "#F0B9D4" - white: "#FFFFFF" - brightBlack: "#4E434E" - brightRed: "#F03E5F" - brightGreen: "#E9E6F0" - brightYellow: "#FFFFFF" - brightBlue: "#F6D8E6" - brightMagenta: "#FFFFFF" - brightCyan: "#FFFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 100.3 - black: 0 - red: 20.7 - green: 56.2 - yellow: 93.3 - blue: 51.5 - magenta: 75 - cyan: 72.8 - white: 107.1 - brightBlack: 9.9 - brightRed: 37 - brightGreen: 91.7 - brightYellow: 107.1 - brightBlue: 87 - brightMagenta: 107.1 - brightCyan: 107.1 - brightWhite: 107.1 diff --git a/themes/otakon-light.yaml b/themes/otakon-light.yaml deleted file mode 100644 index 0d0de0a5..00000000 --- a/themes/otakon-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "otakon-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#514B60" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#B1A6CA" - yellow: "#C6B3B9" - blue: "#E484B2" - magenta: "#A8A9BF" - cyan: "#F0B9D4" - white: "#5D566E" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#E9E6F0" - brightYellow: "#F2EDEF" - brightBlue: "#F6D8E6" - brightMagenta: "#E3E3EA" - brightCyan: "#FFFFFF" - brightWhite: "#827A97" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 88.7 - black: 0 - red: 80.3 - green: 45.1 - yellow: 38.5 - blue: 49.6 - magenta: 45.6 - cyan: 29.3 - white: 84.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 11.5 - brightYellow: 7.4 - brightBlue: 15.9 - brightMagenta: 13.8 - brightCyan: 0 - brightWhite: 67.8 diff --git a/themes/otakon.yaml b/themes/otakon.yaml deleted file mode 100644 index 29a8c2c5..00000000 --- a/themes/otakon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "otakon" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#3F373F" - fg: "#F9F3F9" - black: "#4D434D" - red: "#BA0E2E" - green: "#B1A6CA" - yellow: "#F6E6EB" - blue: "#E484B2" - magenta: "#CACBDD" - cyan: "#F0B9D4" - white: "#FFFFFF" - brightBlack: "#756775" - brightRed: "#F03E5F" - brightGreen: "#E9E6F0" - brightYellow: "#FFFFFF" - brightBlue: "#F6D8E6" - brightMagenta: "#FFFFFF" - brightCyan: "#FFFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 326 - pair: null - contrast: - fg: 93.4 - black: 0 - red: 13.8 - green: 49.2 - yellow: 86.4 - blue: 44.6 - magenta: 68 - cyan: 65.8 - white: 100.2 - brightBlack: 17.6 - brightRed: 30.1 - brightGreen: 84.8 - brightYellow: 100.2 - brightBlue: 80.1 - brightMagenta: 100.2 - brightCyan: 100.2 - brightWhite: 100.2 diff --git a/themes/outer-spacemacs.yaml b/themes/outer-spacemacs.yaml index 7031c0f0..1144d491 100644 --- a/themes/outer-spacemacs.yaml +++ b/themes/outer-spacemacs.yaml @@ -1,4 +1,4 @@ -name: "outer-spacemacs" +name: "Outer Spacemacs" source: marketplace_id: "lucaspin.outer-spacemacs" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Lucas Pinheiro" repo: "https://github.com/lucaspin/outer-spacemacs" url: "https://marketplace.visualstudio.com/items?itemName=lucaspin.outer-spacemacs" + formats: null colors: bg: "#212026" fg: "#CBC1D5" diff --git a/themes/outrun-dark.yaml b/themes/outrun-dark.yaml deleted file mode 100644 index cfcd9531..00000000 --- a/themes/outrun-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Outrun Dark" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#161130" - fg: "#EBECF8" - black: "#283034" - red: "#FF2E97" - green: "#62A9CF" - yellow: "#FFD400" - blue: "#42C6FF" - magenta: "#FF2AFC" - cyan: "#42C6FF" - white: "#D9E0E9" - brightBlack: "#435056" - brightRed: "#FF2E97" - brightGreen: "#ADD0E5" - brightYellow: "#FFD400" - brightBlue: "#42C6FF" - brightMagenta: "#FF2AFC" - brightCyan: "#42C6FF" - brightWhite: "#F4F6F9" -meta: - mode: "dark" - accent: "pink" - hue: 287 - pair: null - contrast: - fg: 94.9 - black: 0 - red: 40.6 - green: 50.4 - yellow: 82 - blue: 64.3 - magenta: 46.1 - cyan: 64.3 - white: 86.4 - brightBlack: 12.5 - brightRed: 40.6 - brightGreen: 74.1 - brightYellow: 82 - brightBlue: 64.3 - brightMagenta: 46.1 - brightCyan: 64.3 - brightWhite: 100.8 diff --git a/themes/overflow-contrast.yaml b/themes/overflow-contrast.yaml deleted file mode 100644 index b5269aee..00000000 --- a/themes/overflow-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "overflow-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#14181C" - fg: "#AEB9C4" - black: "#1F252B" - red: "#BA0E2E" - green: "#FE532C" - yellow: "#B0CA48" - blue: "#1F9AA8" - magenta: "#FE532C" - cyan: "#B0CA48" - white: "#BDC6CF" - brightBlack: "#3F4B57" - brightRed: "#F03E5F" - brightGreen: "#FEA692" - brightYellow: "#D2E197" - brightBlue: "#4FD0DE" - brightMagenta: "#FEA692" - brightCyan: "#D2E197" - brightWhite: "#E9ECEF" -meta: - mode: "dark" - accent: "orange" - hue: 248 - pair: null - contrast: - fg: 62.7 - black: 0 - red: 20.4 - green: 42.3 - yellow: 67 - blue: 40 - magenta: 42.3 - cyan: 67 - white: 70.4 - brightBlack: 10.8 - brightRed: 36.7 - brightGreen: 65.6 - brightYellow: 82.9 - brightBlue: 67.3 - brightMagenta: 65.6 - brightCyan: 82.9 - brightWhite: 94.1 diff --git a/themes/overflow-light.yaml b/themes/overflow-light.yaml deleted file mode 100644 index 8bfeb71b..00000000 --- a/themes/overflow-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "overflow-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#3E4956" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#FE532C" - yellow: "#B0CA48" - blue: "#1F9AA8" - magenta: "#FE532C" - cyan: "#B0CA48" - white: "#495665" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#FEA692" - brightYellow: "#D2E197" - brightBlue: "#4FD0DE" - brightMagenta: "#FEA692" - brightCyan: "#D2E197" - brightWhite: "#697B91" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 91.1 - black: 0 - red: 80.3 - green: 58.4 - yellow: 34.5 - blue: 60.6 - magenta: 58.4 - cyan: 34.5 - white: 86 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 35.8 - brightYellow: 19.5 - brightBlue: 34.2 - brightMagenta: 35.8 - brightCyan: 19.5 - brightWhite: 70 diff --git a/themes/overflow.yaml b/themes/overflow.yaml deleted file mode 100644 index b2be901d..00000000 --- a/themes/overflow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "overflow" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#252C33" - fg: "#AEB9C4" - black: "#303942" - red: "#BA0E2E" - green: "#FE532C" - yellow: "#B0CA48" - blue: "#1F9AA8" - magenta: "#FE532C" - cyan: "#B0CA48" - white: "#BDC6CF" - brightBlack: "#505F6E" - brightRed: "#F03E5F" - brightGreen: "#FEA692" - brightYellow: "#D2E197" - brightBlue: "#4FD0DE" - brightMagenta: "#FEA692" - brightCyan: "#D2E197" - brightWhite: "#E9ECEF" -meta: - mode: "dark" - accent: "orange" - hue: 248 - pair: null - contrast: - fg: 59.7 - black: 0 - red: 17.4 - green: 39.3 - yellow: 63.9 - blue: 37 - magenta: 39.3 - cyan: 63.9 - white: 67.3 - brightBlack: 15.4 - brightRed: 33.7 - brightGreen: 62.6 - brightYellow: 79.9 - brightBlue: 64.3 - brightMagenta: 62.6 - brightCyan: 79.9 - brightWhite: 91.1 diff --git a/themes/overload.yaml b/themes/overload.yaml index 3d95dc83..da66a595 100644 --- a/themes/overload.yaml +++ b/themes/overload.yaml @@ -8,6 +8,7 @@ source: author: "0xp" repo: "https://github.com/panukettu/vscode-overload" url: "https://marketplace.visualstudio.com/items?itemName=0xp.overload" + formats: null colors: bg: "#121212" fg: "#BFBDB6" diff --git a/themes/overnight.yaml b/themes/overnight.yaml deleted file mode 100644 index 0b2539d5..00000000 --- a/themes/overnight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Overnight" -source: - marketplace_id: "cev.overnight" - version: "1.8.4" - installs: 25656 - rating: 5 - ratings: 9 - author: "cev" - repo: "https://github.com/cevr/overnight" - url: "https://marketplace.visualstudio.com/items?itemName=cev.overnight" -colors: - bg: "#0E1729" - fg: "#D6D9E0" - black: "#2E384D" - red: "#F87086" - green: "#BBD99E" - yellow: "#ECC48D" - blue: "#8EACE3" - magenta: "#C792EA" - cyan: "#92D8E6" - white: "#D6D9E0" - brightBlack: "#3D485F" - brightRed: "#FFB3B3" - brightGreen: "#C9E2AF" - brightYellow: "#ECC48D" - brightBlue: "#ACD1F5" - brightMagenta: "#CCB3FF" - brightCyan: "#A5E0EC" - brightWhite: "#F2F2F2" -meta: - mode: "dark" - accent: "red" - hue: 263 - pair: null - contrast: - fg: 82.4 - black: 0 - red: 48.4 - green: 76.7 - yellow: 73.6 - blue: 55.9 - magenta: 53.7 - cyan: 75.2 - white: 82.4 - brightBlack: 10.2 - brightRed: 71.4 - brightGreen: 82.9 - brightYellow: 73.6 - brightBlue: 75.2 - brightMagenta: 67.2 - brightCyan: 80.8 - brightWhite: 98.3 diff --git a/themes/owlet-default.yaml b/themes/owlet-default.yaml index 7e763256..c2ba5a0c 100644 --- a/themes/owlet-default.yaml +++ b/themes/owlet-default.yaml @@ -8,6 +8,8 @@ source: author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" + formats: + zed: "https://raw.githubusercontent.com/itsjonq/owlet/master/themes/owlet-theme-solarized.json" colors: bg: "#1E222A" fg: "#D6DEEB" diff --git a/themes/owlet-material.yaml b/themes/owlet-material.yaml index 09e8f8e1..fef8acf8 100644 --- a/themes/owlet-material.yaml +++ b/themes/owlet-material.yaml @@ -8,6 +8,8 @@ source: author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" + formats: + zed: "https://raw.githubusercontent.com/itsjonq/owlet/master/themes/owlet-theme-solarized.json" colors: bg: "#273237" fg: "#D6DEEB" diff --git a/themes/owlet-mono.yaml b/themes/owlet-mono.yaml index a30423e2..a44c73c6 100644 --- a/themes/owlet-mono.yaml +++ b/themes/owlet-mono.yaml @@ -8,6 +8,8 @@ source: author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" + formats: + zed: "https://raw.githubusercontent.com/itsjonq/owlet/master/themes/owlet-theme-solarized.json" colors: bg: "#101010" fg: "#EEEEEE" diff --git a/themes/owlet-outrun.yaml b/themes/owlet-outrun.yaml index af952795..1d433c25 100644 --- a/themes/owlet-outrun.yaml +++ b/themes/owlet-outrun.yaml @@ -8,6 +8,8 @@ source: author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" + formats: + zed: "https://raw.githubusercontent.com/itsjonq/owlet/master/themes/owlet-theme-solarized.json" colors: bg: "#0D0221" fg: "#D6DEEB" diff --git a/themes/owlet-solarized.yaml b/themes/owlet-solarized.yaml index cff756a8..3973d313 100644 --- a/themes/owlet-solarized.yaml +++ b/themes/owlet-solarized.yaml @@ -8,6 +8,8 @@ source: author: "itsjonq" repo: "https://github.com/itsjonq/owlet" url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.owlet" + formats: + zed: "https://raw.githubusercontent.com/itsjonq/owlet/master/themes/owlet-theme-solarized.json" colors: bg: "#0D2B35" fg: "#D6DEEB" diff --git a/themes/owokai-hard.yaml b/themes/owokai-hard.yaml index 3516c6a0..a207a80a 100644 --- a/themes/owokai-hard.yaml +++ b/themes/owokai-hard.yaml @@ -8,6 +8,7 @@ source: author: "fluffyfen" repo: "https://github.com/toiletbril/Owokai" url: "https://marketplace.visualstudio.com/items?itemName=fluffyfen.owokai-theme" + formats: null colors: bg: "#161618" fg: "#DDDDDD" diff --git a/themes/owokai.yaml b/themes/owokai.yaml index ab8aa0cc..929fbb01 100644 --- a/themes/owokai.yaml +++ b/themes/owokai.yaml @@ -8,6 +8,7 @@ source: author: "fluffyfen" repo: "https://github.com/toiletbril/Owokai" url: "https://marketplace.visualstudio.com/items?itemName=fluffyfen.owokai-theme" + formats: null colors: bg: "#1C1C1B" fg: "#EBE9D7" diff --git a/themes/oxocarbon-5.yaml b/themes/oxocarbon-5.yaml index 23aa7773..55a323e1 100644 --- a/themes/oxocarbon-5.yaml +++ b/themes/oxocarbon-5.yaml @@ -8,6 +8,7 @@ source: author: "yrumad" repo: "https://github.com/DaKili/oxocarbon-5" url: "https://marketplace.visualstudio.com/items?itemName=yrumad.oxocarbon-5" + formats: null colors: bg: "#FFFFFF" fg: "#161616" diff --git a/themes/oxocarbon-dark.yaml b/themes/oxocarbon-dark.yaml deleted file mode 100644 index 0ad26521..00000000 --- a/themes/oxocarbon-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Oxocarbon Dark" -source: - marketplace_id: "NyoomEngineering.oxocarbon-vscode" - version: "1.2.0" - installs: 1561 - rating: 5 - ratings: 1 - author: "Nyoom Engineering" - repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" -colors: - bg: "#161616" - fg: "#F2F4F8" - black: "#161616" - red: "#78A9FF" - green: "#FF7EB6" - yellow: "#42BE65" - blue: "#08BDBA" - magenta: "#82CFFF" - cyan: "#33B1FF" - white: "#DDE1E6" - brightBlack: "#525252" - brightRed: "#78A9FF" - brightGreen: "#FF7EB6" - brightYellow: "#42BE65" - brightBlue: "#08BDBA" - brightMagenta: "#82CFFF" - brightCyan: "#33B1FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 99.6 - black: 0 - red: 54.9 - green: 55.2 - yellow: 54.4 - blue: 55.8 - magenta: 71.5 - cyan: 55 - white: 87.3 - brightBlack: 14 - brightRed: 54.9 - brightGreen: 55.2 - brightYellow: 54.4 - brightBlue: 55.8 - brightMagenta: 71.5 - brightCyan: 55 - brightWhite: 107 diff --git a/themes/oxocarbon-monochrom.yaml b/themes/oxocarbon-monochrom.yaml deleted file mode 100644 index c8dd8649..00000000 --- a/themes/oxocarbon-monochrom.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Oxocarbon Monochrom" -source: - marketplace_id: "NyoomEngineering.oxocarbon-vscode" - version: "1.2.0" - installs: 1561 - rating: 5 - ratings: 1 - author: "Nyoom Engineering" - repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" -colors: - bg: "#161616" - fg: "#F2F4F8" - black: "#161616" - red: "#A8A8A8" - green: "#A8A8A8" - yellow: "#A8A8A8" - blue: "#A8A8A8" - magenta: "#C6C6C6" - cyan: "#A8A8A8" - white: "#DDE1E6" - brightBlack: "#525252" - brightRed: "#A8A8A8" - brightGreen: "#A8A8A8" - brightYellow: "#A8A8A8" - brightBlue: "#A8A8A8" - brightMagenta: "#C6C6C6" - brightCyan: "#A8A8A8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 99.6 - black: 0 - red: 54.2 - green: 54.2 - yellow: 54.2 - blue: 54.2 - magenta: 71.2 - cyan: 54.2 - white: 87.3 - brightBlack: 14 - brightRed: 54.2 - brightGreen: 54.2 - brightYellow: 54.2 - brightBlue: 54.2 - brightMagenta: 71.2 - brightCyan: 54.2 - brightWhite: 107 diff --git a/themes/oxocarbon-oled-monochrom-compatibility.yaml b/themes/oxocarbon-oled-monochrom-compatibility.yaml deleted file mode 100644 index d1519138..00000000 --- a/themes/oxocarbon-oled-monochrom-compatibility.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Oxocarbon OLED Monochrom (compatibility)" -source: - marketplace_id: "NyoomEngineering.oxocarbon-vscode" - version: "1.2.0" - installs: 1561 - rating: 5 - ratings: 1 - author: "Nyoom Engineering" - repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" -colors: - bg: "#000000" - fg: "#F2F4F8" - black: "#000000" - red: "#A8A8A8" - green: "#A8A8A8" - yellow: "#A8A8A8" - blue: "#A8A8A8" - magenta: "#C6C6C6" - cyan: "#A8A8A8" - white: "#DDE1E6" - brightBlack: "#393939" - brightRed: "#A8A8A8" - brightGreen: "#A8A8A8" - brightYellow: "#A8A8A8" - brightBlue: "#A8A8A8" - brightMagenta: "#C6C6C6" - brightCyan: "#A8A8A8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 100.6 - black: 0 - red: 55.2 - green: 55.2 - yellow: 55.2 - blue: 55.2 - magenta: 72.1 - cyan: 55.2 - white: 88.2 - brightBlack: 0 - brightRed: 55.2 - brightGreen: 55.2 - brightYellow: 55.2 - brightBlue: 55.2 - brightMagenta: 72.1 - brightCyan: 55.2 - brightWhite: 107.9 diff --git a/themes/oxocarbon-oled-monochrom.yaml b/themes/oxocarbon-oled-monochrom.yaml deleted file mode 100644 index 62362211..00000000 --- a/themes/oxocarbon-oled-monochrom.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Oxocarbon OLED Monochrom" -source: - marketplace_id: "NyoomEngineering.oxocarbon-vscode" - version: "1.2.0" - installs: 1561 - rating: 5 - ratings: 1 - author: "Nyoom Engineering" - repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" -colors: - bg: "#FFFFFF" - fg: "#0D0B07" - black: "#FFFFFF" - red: "#575757" - green: "#575757" - yellow: "#575757" - blue: "#575757" - magenta: "#393939" - cyan: "#575757" - white: "#221E19" - brightBlack: "#C6C6C6" - brightRed: "#575757" - brightGreen: "#575757" - brightYellow: "#575757" - brightBlue: "#575757" - brightMagenta: "#393939" - brightCyan: "#575757" - brightWhite: "#000000" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 105.8 - black: 0 - red: 85.1 - green: 85.1 - yellow: 85.1 - blue: 85.1 - magenta: 96.6 - cyan: 85.1 - white: 103.5 - brightBlack: 30.7 - brightRed: 85.1 - brightGreen: 85.1 - brightYellow: 85.1 - brightBlue: 85.1 - brightMagenta: 96.6 - brightCyan: 85.1 - brightWhite: 106 diff --git a/themes/oxocarbon-oled.yaml b/themes/oxocarbon-oled.yaml deleted file mode 100644 index f34df477..00000000 --- a/themes/oxocarbon-oled.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Oxocarbon OLED" -source: - marketplace_id: "NyoomEngineering.oxocarbon-vscode" - version: "1.2.0" - installs: 1561 - rating: 5 - ratings: 1 - author: "Nyoom Engineering" - repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" -colors: - bg: "#000000" - fg: "#F2F4F8" - black: "#000000" - red: "#78A9FF" - green: "#FF7EB6" - yellow: "#42BE65" - blue: "#08BDBA" - magenta: "#82CFFF" - cyan: "#33B1FF" - white: "#DDE1E6" - brightBlack: "#393939" - brightRed: "#78A9FF" - brightGreen: "#FF7EB6" - brightYellow: "#42BE65" - brightBlue: "#08BDBA" - brightMagenta: "#82CFFF" - brightCyan: "#33B1FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 100.6 - black: 0 - red: 55.8 - green: 56.1 - yellow: 55.3 - blue: 56.7 - magenta: 72.4 - cyan: 55.9 - white: 88.2 - brightBlack: 0 - brightRed: 55.8 - brightGreen: 56.1 - brightYellow: 55.3 - brightBlue: 56.7 - brightMagenta: 72.4 - brightCyan: 55.9 - brightWhite: 107.9 diff --git a/themes/oxocarbon-port.yaml b/themes/oxocarbon-port.yaml index c36df061..821647f8 100644 --- a/themes/oxocarbon-port.yaml +++ b/themes/oxocarbon-port.yaml @@ -8,6 +8,7 @@ source: author: "beamlnwza" repo: null url: "https://marketplace.visualstudio.com/items?itemName=beamlnwza.oxocarbon-port" + formats: null colors: bg: "#161616" fg: "#474747" diff --git a/themes/oxocarbonix-dark-theme.yaml b/themes/oxocarbonix-dark-theme.yaml deleted file mode 100644 index 8cd521ff..00000000 --- a/themes/oxocarbonix-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "oXocarbonix dark theme" -source: - marketplace_id: "RonitGandhi.oxocarbonix" - version: "2.3.1" - installs: 453 - rating: 2 - ratings: 1 - author: "Ronit Gandhi" - repo: "https://github.com/ronit18/oXocarbonix-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=RonitGandhi.oxocarbonix" -colors: - bg: "#161616" - fg: "#E6E9EF" - black: "#161616" - red: "#FF7EB6" - green: "#BE95FF" - yellow: "#FA973B" - blue: "#75A5F8" - magenta: "#D093FF" - cyan: "#75A5F8" - white: "#FFFFFF" - brightBlack: "#E6E9EF" - brightRed: "#FF7EB6" - brightGreen: "#BE95FF" - brightYellow: "#FA973B" - brightBlue: "#FFFFFF" - brightMagenta: "#D093FF" - brightCyan: "#FFFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 92.5 - black: 0 - red: 55.2 - green: 54.9 - yellow: 58.4 - blue: 52.6 - magenta: 56.9 - cyan: 52.6 - white: 107 - brightBlack: 92.5 - brightRed: 55.2 - brightGreen: 54.9 - brightYellow: 58.4 - brightBlue: 107 - brightMagenta: 56.9 - brightCyan: 107 - brightWhite: 107 diff --git a/themes/ozurac.yaml b/themes/ozurac.yaml index 9cbd401e..4be0e9f2 100644 --- a/themes/ozurac.yaml +++ b/themes/ozurac.yaml @@ -8,6 +8,7 @@ source: author: "gb-bittencourt" repo: "https://github.com/gb-bittencourt/Ozurac" url: "https://marketplace.visualstudio.com/items?itemName=gb-bittencourt.ozurac" + formats: null colors: bg: "#121212" fg: "#D4D4D4" diff --git a/themes/ozzy.yaml b/themes/ozzy.yaml index e83f2307..67c7db6b 100644 --- a/themes/ozzy.yaml +++ b/themes/ozzy.yaml @@ -2,12 +2,13 @@ name: "Ozzy" source: marketplace_id: "ozzy.ozzy" version: "1.0.4" - installs: 660 + installs: 661 rating: 5 ratings: 1 author: "ozzy" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ozzy.ozzy" + formats: null colors: bg: "#252C34" fg: "#EEFFFF" diff --git a/themes/p-nk.yaml b/themes/p-nk.yaml index 473c3150..d510e89a 100644 --- a/themes/p-nk.yaml +++ b/themes/p-nk.yaml @@ -8,6 +8,7 @@ source: author: "mochi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mochi.yumekawa-theme" + formats: null colors: bg: "#141414" fg: "#BABABA" diff --git a/themes/p-upright-black.yaml b/themes/p-upright-black.yaml deleted file mode 100644 index c467423e..00000000 --- a/themes/p-upright-black.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Black" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#000000" - fg: "#F5DCBC" - black: "#3D3735" - red: "#EB1B00" - green: "#00A824" - yellow: "#FFBB00" - blue: "#2867B9" - magenta: "#D31353" - cyan: "#0BC2A3" - white: "#F5DCBC" - brightBlack: "#504D47" - brightRed: "#FF604B" - brightGreen: "#18D356" - brightYellow: "#FFD037" - brightBlue: "#43A4FF" - brightMagenta: "#FF24B6" - brightCyan: "#2AFDDA" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: null - pair: "P. Upright \ Light" - contrast: - fg: 87.7 - black: 0 - red: 33 - green: 43.7 - yellow: 72.8 - blue: 24 - magenta: 27.8 - cyan: 58.1 - white: 87.7 - brightBlack: 13.2 - brightRed: 46.2 - brightGreen: 64.3 - brightYellow: 81.4 - brightBlue: 51.1 - brightMagenta: 42.3 - brightCyan: 89.6 - brightWhite: 95.1 diff --git a/themes/p-upright-citadel.yaml b/themes/p-upright-citadel.yaml deleted file mode 100644 index d961b138..00000000 --- a/themes/p-upright-citadel.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Citadel" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#092630" - fg: "#E3B19D" - black: "#205263" - red: "#FF4128" - green: "#14AD35" - yellow: "#EBA31C" - blue: "#173FC3" - magenta: "#DB0F8D" - cyan: "#03D6DD" - white: "#E3B19D" - brightBlack: "#215769" - brightRed: "#FF5A44" - brightGreen: "#48EC7F" - brightYellow: "#FFD54C" - brightBlue: "#509FFF" - brightMagenta: "#FF46C8" - brightCyan: "#8FEBF2" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "pink" - hue: 224 - pair: null - contrast: - fg: 63.7 - black: 10.3 - red: 38.3 - green: 43.5 - yellow: 57.7 - blue: 11.9 - magenta: 28.6 - cyan: 67.3 - white: 63.7 - brightBlack: 12 - brightRed: 42.4 - brightGreen: 75.8 - brightYellow: 81.1 - brightBlue: 47 - brightMagenta: 43.6 - brightCyan: 83 - brightWhite: 92.5 diff --git a/themes/p-upright-crimson.yaml b/themes/p-upright-crimson.yaml deleted file mode 100644 index 39539f9e..00000000 --- a/themes/p-upright-crimson.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Crimson" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#FFFFFF" - fg: "#2B2B2B" - black: "#000000" - red: "#B61702" - green: "#009C22" - yellow: "#D68B01" - blue: "#1E5FB4" - magenta: "#D600C4" - cyan: "#0CB4B4" - white: "#C5C5C5" - brightBlack: "#3F3F3F" - brightRed: "#E43E28" - brightGreen: "#04B941" - brightYellow: "#FFB618" - brightBlue: "#2186E4" - brightMagenta: "#FF24E2" - brightCyan: "#12D6CC" - brightWhite: "#E4E4E4" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 100.9 - black: 106 - red: 81.2 - green: 63.1 - yellow: 53.2 - blue: 80.7 - magenta: 68.7 - cyan: 49.5 - white: 31.2 - brightBlack: 94.5 - brightRed: 67.4 - brightGreen: 50.3 - brightYellow: 31.8 - brightBlue: 64.5 - brightMagenta: 56.9 - brightCyan: 33.4 - brightWhite: 13.5 diff --git a/themes/p-upright-dark.yaml b/themes/p-upright-dark.yaml deleted file mode 100644 index d24da37d..00000000 --- a/themes/p-upright-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Dark" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#111212" - fg: "#DFC6BA" - black: "#4E4846" - red: "#CE3521" - green: "#05A829" - yellow: "#D37D0D" - blue: "#276AC2" - magenta: "#E0024C" - cyan: "#04C4A4" - white: "#DFC6BA" - brightBlack: "#6E6B64" - brightRed: "#FF553E" - brightGreen: "#69CB73" - brightYellow: "#FFAE18" - brightBlue: "#50A9FD" - brightMagenta: "#FF3478" - brightCyan: "#28F5D3" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 74.4 - black: 11.1 - red: 27.7 - green: 43.2 - yellow: 43.3 - blue: 25 - magenta: 29.9 - cyan: 58.4 - white: 74.4 - brightBlack: 24.7 - brightRed: 43.5 - brightGreen: 62.8 - brightYellow: 67.4 - brightBlue: 52.8 - brightMagenta: 40.4 - brightCyan: 84.5 - brightWhite: 94.6 diff --git a/themes/p-upright-eggplant.yaml b/themes/p-upright-eggplant.yaml deleted file mode 100644 index 9e588520..00000000 --- a/themes/p-upright-eggplant.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Eggplant" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#1C1525" - fg: "#FFD9BB" - black: "#39353D" - red: "#CE3521" - green: "#05A829" - yellow: "#D37D0D" - blue: "#276AC2" - magenta: "#E0024C" - cyan: "#04C4A4" - white: "#CFB5A9" - brightBlack: "#4B4750" - brightRed: "#FF553E" - brightGreen: "#2DDD68" - brightYellow: "#FFB618" - brightBlue: "#50A9FD" - brightMagenta: "#FF3478" - brightCyan: "#28F5D3" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: 304 - pair: null - contrast: - fg: 86.7 - black: 0 - red: 27.1 - green: 42.6 - yellow: 42.7 - blue: 24.4 - magenta: 29.3 - cyan: 57.9 - white: 64.1 - brightBlack: 10.3 - brightRed: 42.9 - brightGreen: 68.6 - brightYellow: 69.8 - brightBlue: 52.2 - brightMagenta: 39.8 - brightCyan: 84 - brightWhite: 94 diff --git a/themes/p-upright-emerald.yaml b/themes/p-upright-emerald.yaml deleted file mode 100644 index 44302b87..00000000 --- a/themes/p-upright-emerald.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Emerald" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#0A1A13" - fg: "#FAD6B9" - black: "#353D36" - red: "#CE3521" - green: "#05A829" - yellow: "#D3840D" - blue: "#3A76C4" - magenta: "#E0024C" - cyan: "#34B6A0" - white: "#CFB5A9" - brightBlack: "#47504A" - brightRed: "#FF553E" - brightGreen: "#2DDD68" - brightYellow: "#FFB618" - brightBlue: "#65B4FF" - brightMagenta: "#FF3478" - brightCyan: "#69F7DF" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: 164 - pair: null - contrast: - fg: 84.7 - black: 0 - red: 27.2 - green: 42.7 - yellow: 44.9 - blue: 29 - magenta: 29.4 - cyan: 51.9 - white: 64.2 - brightBlack: 12.3 - brightRed: 43 - brightGreen: 68.7 - brightYellow: 69.9 - brightBlue: 57.9 - brightMagenta: 39.9 - brightCyan: 87.4 - brightWhite: 94.1 diff --git a/themes/p-upright-eucalyptus.yaml b/themes/p-upright-eucalyptus.yaml deleted file mode 100644 index 6fc6faec..00000000 --- a/themes/p-upright-eucalyptus.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Eucalyptus" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#21241E" - fg: "#E7B07D" - black: "#3D3735" - red: "#AD5145" - green: "#6EA03D" - yellow: "#B88F51" - blue: "#5477A5" - magenta: "#AE5975" - cyan: "#549878" - white: "#FAE5D6" - brightBlack: "#504D47" - brightRed: "#E35E4D" - brightGreen: "#8AC255" - brightYellow: "#E8B455" - brightBlue: "#6FB2D1" - brightMagenta: "#D66C8F" - brightCyan: "#7BC09D" - brightWhite: "#FFF2EC" -meta: - mode: "dark" - accent: "orange" - hue: 129 - pair: null - contrast: - fg: 63.1 - black: 0 - red: 23.9 - green: 41.3 - yellow: 43.1 - blue: 27.2 - magenta: 26.9 - cyan: 37.5 - white: 90.8 - brightBlack: 10.6 - brightRed: 37.2 - brightGreen: 58.4 - brightYellow: 64.1 - brightBlue: 53.4 - brightMagenta: 39.4 - brightCyan: 58 - brightWhite: 98.3 diff --git a/themes/p-upright-floresta.yaml b/themes/p-upright-floresta.yaml deleted file mode 100644 index 28dc2757..00000000 --- a/themes/p-upright-floresta.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Floresta" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#07171A" - fg: "#FFD4C7" - black: "#26362F" - red: "#EC1C00" - green: "#068020" - yellow: "#D3940D" - blue: "#3465A5" - magenta: "#C40B71" - cyan: "#08A087" - white: "#FFD4C7" - brightBlack: "#3E4E45" - brightRed: "#FF6551" - brightGreen: "#24CA5B" - brightYellow: "#FFCA37" - brightBlue: "#3191EB" - brightMagenta: "#FF24BD" - brightCyan: "#2AE6C6" - brightWhite: "#FFFBF9" -meta: - mode: "dark" - accent: "pink" - hue: 211 - pair: null - contrast: - fg: 85.4 - black: 0 - red: 32.4 - green: 26.3 - yellow: 50.2 - blue: 21.6 - magenta: 24.2 - cyan: 41.2 - white: 85.4 - brightBlack: 11.3 - brightRed: 46.5 - brightGreen: 59.3 - brightYellow: 78.1 - brightBlue: 41.1 - brightMagenta: 41.8 - brightCyan: 76.1 - brightWhite: 104.9 diff --git a/themes/p-upright-frost.yaml b/themes/p-upright-frost.yaml deleted file mode 100644 index ba3145bc..00000000 --- a/themes/p-upright-frost.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Frost" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#FFFFFF" - fg: "#186554" - black: "#000000" - red: "#B61702" - green: "#068020" - yellow: "#D37D0D" - blue: "#3465A5" - magenta: "#C40B48" - cyan: "#08A087" - white: "#A5B4AB" - brightBlack: "#4A574D" - brightRed: "#D43E2A" - brightGreen: "#1B9E47" - brightYellow: "#FF9B18" - brightBlue: "#3A89D3" - brightMagenta: "#FF246D" - brightCyan: "#1BDFBE" - brightWhite: "#C7CECB" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 83.7 - black: 106 - red: 81.2 - green: 74.5 - yellow: 57.9 - blue: 79.3 - magenta: 77.8 - cyan: 59.6 - white: 42.5 - brightBlack: 86.4 - brightRed: 71 - brightGreen: 61.8 - brightYellow: 40.9 - brightBlue: 64.1 - brightMagenta: 62.1 - brightCyan: 29.8 - brightWhite: 27.1 diff --git a/themes/p-upright-genmaicha.yaml b/themes/p-upright-genmaicha.yaml deleted file mode 100644 index 9c6abe93..00000000 --- a/themes/p-upright-genmaicha.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Genmaicha" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#F8DCA8" - fg: "#232729" - black: "#232729" - red: "#B61702" - green: "#009C22" - yellow: "#D68B01" - blue: "#1E5FB4" - magenta: "#D600C4" - cyan: "#0CB4B4" - white: "#C5C5C5" - brightBlack: "#3F3F3F" - brightRed: "#E43E28" - brightGreen: "#04B941" - brightYellow: "#FFB618" - brightBlue: "#2186E4" - brightMagenta: "#FF24E2" - brightCyan: "#12D6CC" - brightWhite: "#E4E4E4" -meta: - mode: "light" - accent: "pink" - hue: 83 - pair: null - contrast: - fg: 83.3 - black: 83.3 - red: 62.5 - green: 44.5 - yellow: 34.6 - blue: 62.1 - magenta: 50.1 - cyan: 30.9 - white: 12.6 - brightBlack: 75.8 - brightRed: 48.8 - brightGreen: 31.7 - brightYellow: 13.2 - brightBlue: 45.9 - brightMagenta: 38.3 - brightCyan: 14.8 - brightWhite: 0 diff --git a/themes/p-upright-grizzly.yaml b/themes/p-upright-grizzly.yaml deleted file mode 100644 index bf6f6d1e..00000000 --- a/themes/p-upright-grizzly.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Grizzly" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#201612" - fg: "#F1BC94" - black: "#3C312D" - red: "#DA2811" - green: "#399227" - yellow: "#C98621" - blue: "#3465A5" - magenta: "#C40B48" - cyan: "#08A087" - white: "#F1BC94" - brightBlack: "#4B4138" - brightRed: "#FD4931" - brightGreen: "#26BE21" - brightYellow: "#FFB618" - brightBlue: "#3A89D3" - brightMagenta: "#FF3C7D" - brightCyan: "#1BDFBE" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: 43 - pair: null - contrast: - fg: 71.4 - black: 0 - red: 28.5 - green: 34 - yellow: 43.7 - blue: 21.3 - magenta: 22.9 - cyan: 40.9 - white: 71.4 - brightBlack: 8.2 - brightRed: 40.5 - brightGreen: 52.8 - brightYellow: 69.7 - brightBlue: 36.4 - brightMagenta: 40.7 - brightCyan: 71.9 - brightWhite: 94 diff --git a/themes/p-upright-haze.yaml b/themes/p-upright-haze.yaml deleted file mode 100644 index 78c3a915..00000000 --- a/themes/p-upright-haze.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Haze" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#5B405B" - fg: "#E4CBC4" - black: "#745874" - red: "#D66B5D" - green: "#3FD15E" - yellow: "#FAC534" - blue: "#4F8CDB" - magenta: "#FF58BF" - cyan: "#30E9CA" - white: "#FFFBFA" - brightBlack: "#8D748D" - brightRed: "#FF8D7E" - brightGreen: "#90FCB4" - brightYellow: "#FFD885" - brightBlue: "#6FB7FA" - brightMagenta: "#FF84EB" - brightCyan: "#55FFE3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 327 - pair: null - contrast: - fg: 65.4 - black: 8.2 - red: 27.5 - green: 51.3 - yellow: 63.2 - blue: 27.2 - magenta: 35.6 - cyan: 65.9 - white: 92.9 - brightBlack: 20 - brightRed: 45.5 - brightGreen: 78.8 - brightYellow: 73.1 - brightBlue: 47.7 - brightMagenta: 47.6 - brightCyan: 79.2 - brightWhite: 95 diff --git a/themes/p-upright-inkstone.yaml b/themes/p-upright-inkstone.yaml deleted file mode 100644 index fc4f161e..00000000 --- a/themes/p-upright-inkstone.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Inkstone" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#111B22" - fg: "#F5D8C3" - black: "#353D3D" - red: "#CE3521" - green: "#05A829" - yellow: "#D39E0D" - blue: "#276AC2" - magenta: "#E0024C" - cyan: "#04C4A4" - white: "#CFB5A9" - brightBlack: "#475050" - brightRed: "#FF553E" - brightGreen: "#2DDD68" - brightYellow: "#FFC918" - brightBlue: "#50A9FD" - brightMagenta: "#FF3478" - brightCyan: "#28F5D3" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: 239 - pair: null - contrast: - fg: 84.8 - black: 0 - red: 26.9 - green: 42.4 - yellow: 53.2 - blue: 24.2 - magenta: 29.1 - cyan: 57.7 - white: 63.9 - brightBlack: 12.2 - brightRed: 42.7 - brightGreen: 68.5 - brightYellow: 77 - brightBlue: 52.1 - brightMagenta: 39.6 - brightCyan: 83.8 - brightWhite: 93.8 diff --git a/themes/p-upright-leipzig.yaml b/themes/p-upright-leipzig.yaml deleted file mode 100644 index 0f3624a4..00000000 --- a/themes/p-upright-leipzig.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Leipzig" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#221B1D" - fg: "#E7C4A3" - black: "#3D3735" - red: "#BE4939" - green: "#2A9842" - yellow: "#D39E0D" - blue: "#4C6F9D" - magenta: "#C63263" - cyan: "#39B7A2" - white: "#CFB5A9" - brightBlack: "#504A47" - brightRed: "#EF5C48" - brightGreen: "#53C666" - brightYellow: "#FFC918" - brightBlue: "#6FACE5" - brightMagenta: "#F15488" - brightCyan: "#4DEDD2" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: 359 - pair: null - contrast: - fg: 72.9 - black: 0 - red: 26.3 - green: 35.8 - yellow: 52.9 - blue: 24.6 - magenta: 25.5 - cyan: 51.9 - white: 63.6 - brightBlack: 10.7 - brightRed: 40.2 - brightGreen: 58 - brightYellow: 76.7 - brightBlue: 53 - brightMagenta: 40.6 - brightCyan: 80.1 - brightWhite: 93.4 diff --git a/themes/p-upright-light.yaml b/themes/p-upright-light.yaml deleted file mode 100644 index 01de2344..00000000 --- a/themes/p-upright-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Light" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#F3E7E2" - fg: "#423926" - black: "#000000" - red: "#B61702" - green: "#068020" - yellow: "#EE8F13" - blue: "#3465A5" - magenta: "#C40B48" - cyan: "#08A087" - white: "#CFB5A9" - brightBlack: "#5C5442" - brightRed: "#D43E2A" - brightGreen: "#1B9E47" - brightYellow: "#FFC936" - brightBlue: "#3A89D3" - brightMagenta: "#FF246D" - brightCyan: "#1BDFBE" - brightWhite: "#FAE8E0" -meta: - mode: "light" - accent: "red" - hue: 44 - pair: "P. Upright \ Black" - contrast: - fg: 83.4 - black: 93.2 - red: 68.3 - green: 61.7 - yellow: 34.9 - blue: 66.5 - magenta: 64.9 - cyan: 46.8 - white: 24.3 - brightBlack: 73.2 - brightRed: 58.1 - brightGreen: 49 - brightYellow: 11.8 - brightBlue: 51.2 - brightMagenta: 49.3 - brightCyan: 16.9 - brightWhite: 0 diff --git a/themes/p-upright-machine.yaml b/themes/p-upright-machine.yaml deleted file mode 100644 index 7e3767c4..00000000 --- a/themes/p-upright-machine.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Machine" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#393837" - fg: "#F7DBC5" - black: "#747270" - red: "#E9523E" - green: "#25AC42" - yellow: "#EB780D" - blue: "#5595BD" - magenta: "#E02D69" - cyan: "#46B9B9" - white: "#FAE5D6" - brightBlack: "#868686" - brightRed: "#FF8170" - brightGreen: "#2FEC6E" - brightYellow: "#FFAF37" - brightBlue: "#73BCF8" - brightMagenta: "#FF6D9E" - brightCyan: "#7BE6E6" - brightWhite: "#FFF2EC" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 80.5 - black: 21.1 - red: 31.2 - green: 38.6 - yellow: 39.7 - blue: 34.5 - magenta: 25.3 - cyan: 48.5 - white: 86 - brightBlack: 30.3 - brightRed: 47.3 - brightGreen: 70.2 - brightYellow: 61.1 - brightBlue: 55.4 - brightMagenta: 43.7 - brightCyan: 74 - brightWhite: 93.6 diff --git a/themes/p-upright-mist.yaml b/themes/p-upright-mist.yaml deleted file mode 100644 index 20abce2b..00000000 --- a/themes/p-upright-mist.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Mist" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#3A4444" - fg: "#FFE3CC" - black: "#606D6D" - red: "#FA5C47" - green: "#25AC42" - yellow: "#CCA63C" - blue: "#4779BB" - magenta: "#E02D69" - cyan: "#46B9B9" - white: "#FAE5D6" - brightBlack: "#899494" - brightRed: "#FD8677" - brightGreen: "#2FEC6E" - brightYellow: "#FFDD47" - brightBlue: "#68B6FF" - brightMagenta: "#FF6D9E" - brightCyan: "#7BE6E6" - brightWhite: "#FFF2EC" -meta: - mode: "dark" - accent: "green" - hue: 197 - pair: null - contrast: - fg: 82.4 - black: 14.5 - red: 33.8 - green: 35.5 - yellow: 46.2 - blue: 20.6 - magenta: 22.2 - cyan: 45.4 - white: 82.9 - brightBlack: 33 - brightRed: 45.3 - brightGreen: 67.1 - brightYellow: 76.7 - brightBlue: 49.5 - brightMagenta: 40.6 - brightCyan: 70.9 - brightWhite: 90.5 diff --git a/themes/p-upright-neptune.yaml b/themes/p-upright-neptune.yaml deleted file mode 100644 index 30a244b8..00000000 --- a/themes/p-upright-neptune.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Neptune" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#070C25" - fg: "#FDC0BE" - black: "#242334" - red: "#E72006" - green: "#068020" - yellow: "#D37D0D" - blue: "#3465A5" - magenta: "#C40B48" - cyan: "#08A087" - white: "#CFA9BB" - brightBlack: "#444367" - brightRed: "#F7614D" - brightGreen: "#1B9E47" - brightYellow: "#FF9B18" - brightBlue: "#3A89D3" - brightMagenta: "#FF246D" - brightCyan: "#1BDFBE" - brightWhite: "#FAE0E8" -meta: - mode: "dark" - accent: "red" - hue: 271 - pair: null - contrast: - fg: 77.1 - black: 0 - red: 31.8 - green: 26.8 - yellow: 43.4 - blue: 22.1 - magenta: 23.6 - cyan: 41.7 - white: 61 - brightBlack: 10.4 - brightRed: 44.3 - brightGreen: 39.4 - brightYellow: 61 - brightBlue: 37.2 - brightMagenta: 39.1 - brightCyan: 72.6 - brightWhite: 91.5 diff --git a/themes/p-upright-ornithopter.yaml b/themes/p-upright-ornithopter.yaml deleted file mode 100644 index 00b7a594..00000000 --- a/themes/p-upright-ornithopter.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Ornithopter" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#3D3028" - fg: "#F5DCBC" - black: "#55453B" - red: "#E74935" - green: "#98BD5C" - yellow: "#EF951E" - blue: "#8EB7CA" - magenta: "#CA405E" - cyan: "#78C0B4" - white: "#F5DCBC" - brightBlack: "#726054" - brightRed: "#FF7562" - brightGreen: "#C1E954" - brightYellow: "#FFC31E" - brightBlue: "#67D7DB" - brightMagenta: "#F85E91" - brightCyan: "#98FCD6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 53 - pair: null - contrast: - fg: 81.9 - black: 0 - red: 30.8 - green: 54.3 - yellow: 50.6 - blue: 54.3 - magenta: 23.9 - cyan: 55.5 - white: 81.9 - brightBlack: 16.2 - brightRed: 45.5 - brightGreen: 78.7 - brightYellow: 70.2 - brightBlue: 66.7 - brightMagenta: 40.2 - brightCyan: 87.7 - brightWhite: 102.1 diff --git a/themes/p-upright-ox.yaml b/themes/p-upright-ox.yaml deleted file mode 100644 index e81dee88..00000000 --- a/themes/p-upright-ox.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Ox" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#1F0C0F" - fg: "#ECAF87" - black: "#332726" - red: "#BC1600" - green: "#39A150" - yellow: "#D39E0D" - blue: "#4075A7" - magenta: "#D0245E" - cyan: "#29AD97" - white: "#CFB5A9" - brightBlack: "#4D3232" - brightRed: "#FF2E13" - brightGreen: "#73C84C" - brightYellow: "#FFC918" - brightBlue: "#62B2E4" - brightMagenta: "#EF4980" - brightCyan: "#60DEC9" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "orange" - hue: 11 - pair: null - contrast: - fg: 65.8 - black: 0 - red: 21.3 - green: 41.2 - yellow: 53.9 - blue: 27.5 - magenta: 27.5 - cyan: 47.8 - white: 64.6 - brightBlack: 0 - brightRed: 38.4 - brightGreen: 61.3 - brightYellow: 77.7 - brightBlue: 55.7 - brightMagenta: 39.3 - brightCyan: 74.1 - brightWhite: 94.5 diff --git a/themes/p-upright-terabyte.yaml b/themes/p-upright-terabyte.yaml deleted file mode 100644 index bbb12e56..00000000 --- a/themes/p-upright-terabyte.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Terabyte" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#0B1A1A" - fg: "#E6D4B2" - black: "#243D36" - red: "#A94133" - green: "#3BCE16" - yellow: "#B47D36" - blue: "#4A89AD" - magenta: "#CB3E43" - cyan: "#6CFFBD" - white: "#E8BFA1" - brightBlack: "#406662" - brightRed: "#E46857" - brightGreen: "#8FE560" - brightYellow: "#FFCB2F" - brightBlue: "#68BBDB" - brightMagenta: "#F3777B" - brightCyan: "#C0FFE6" - brightWhite: "#FAECE0" -meta: - mode: "dark" - accent: "green" - hue: 196 - pair: null - contrast: - fg: 80.5 - black: 0 - red: 21.4 - green: 60.8 - yellow: 37.8 - blue: 34.9 - magenta: 27.9 - cyan: 90.3 - white: 71.5 - brightBlack: 19.1 - brightRed: 41.2 - brightGreen: 76.9 - brightYellow: 78.2 - brightBlue: 58.8 - brightMagenta: 48.7 - brightCyan: 98 - brightWhite: 95.8 diff --git a/themes/p-upright-ultramarine.yaml b/themes/p-upright-ultramarine.yaml deleted file mode 100644 index 1de68be4..00000000 --- a/themes/p-upright-ultramarine.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Ultramarine" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#050809" - fg: "#FFFFFF" - black: "#454545" - red: "#CE3521" - green: "#24943C" - yellow: "#BB8F18" - blue: "#276AC2" - magenta: "#E0024C" - cyan: "#04BEC4" - white: "#FFFFFF" - brightBlack: "#707070" - brightRed: "#FF553E" - brightGreen: "#76DD61" - brightYellow: "#FFD518" - brightBlue: "#50A9FD" - brightMagenta: "#FF3478" - brightCyan: "#28F5EB" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 107.8 - black: 10.1 - red: 28.2 - green: 35.6 - yellow: 45.6 - blue: 25.5 - magenta: 30.4 - cyan: 57.5 - white: 107.8 - brightBlack: 27.3 - brightRed: 44 - brightGreen: 72.3 - brightYellow: 83.3 - brightBlue: 53.3 - brightMagenta: 40.9 - brightCyan: 86.1 - brightWhite: 95 diff --git a/themes/p-upright-wolf.yaml b/themes/p-upright-wolf.yaml deleted file mode 100644 index 3581a28d..00000000 --- a/themes/p-upright-wolf.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Wolf" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#221F1E" - fg: "#DCBD9D" - black: "#473E3B" - red: "#B61702" - green: "#74AD45" - yellow: "#D37D0D" - blue: "#3465A5" - magenta: "#C40B48" - cyan: "#08A087" - white: "#DCBD9D" - brightBlack: "#575249" - brightRed: "#D43E2A" - brightGreen: "#84C32B" - brightYellow: "#FF9B18" - brightBlue: "#3A89D3" - brightMagenta: "#FF246D" - brightCyan: "#1BDFBE" - brightWhite: "#FAE8E0" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 67.8 - black: 0 - red: 18.6 - green: 47.7 - yellow: 41.8 - blue: 20.4 - magenta: 22 - cyan: 40 - white: 67.8 - brightBlack: 13.1 - brightRed: 28.6 - brightGreen: 58.4 - brightYellow: 59.3 - brightBlue: 35.5 - brightMagenta: 37.5 - brightCyan: 70.9 - brightWhite: 93.1 diff --git a/themes/p-upright-yesterday.yaml b/themes/p-upright-yesterday.yaml deleted file mode 100644 index d01819e5..00000000 --- a/themes/p-upright-yesterday.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Yesterday" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#23282A" - fg: "#F1CAC0" - black: "#374344" - red: "#F04129" - green: "#25AC42" - yellow: "#CCA63C" - blue: "#4779BB" - magenta: "#E02D69" - cyan: "#46B9B9" - white: "#FAE5D6" - brightBlack: "#556661" - brightRed: "#FF634F" - brightGreen: "#2FEC6E" - brightYellow: "#FFDD47" - brightBlue: "#68B6FF" - brightMagenta: "#FF6D9E" - brightCyan: "#7BE6E6" - brightWhite: "#FFF2EC" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 76.3 - black: 0 - red: 34.1 - green: 42.7 - yellow: 53.4 - blue: 27.7 - magenta: 29.3 - cyan: 52.5 - white: 90.1 - brightBlack: 18.2 - brightRed: 43.6 - brightGreen: 74.3 - brightYellow: 83.8 - brightBlue: 56.7 - brightMagenta: 47.8 - brightCyan: 78 - brightWhite: 97.6 diff --git a/themes/p-upright-zenith.yaml b/themes/p-upright-zenith.yaml deleted file mode 100644 index 13deab04..00000000 --- a/themes/p-upright-zenith.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. Upright \ Zenith" -source: - marketplace_id: "yile-ou.paddy-color-theme" - version: "1.11.9" - installs: 74789 - rating: 5 - ratings: 20 - author: "Yile" - repo: "https://github.com/yl92/paddy-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" -colors: - bg: "#140D1A" - fg: "#F3B8BA" - black: "#331F38" - red: "#EC1C00" - green: "#016F33" - yellow: "#D3940D" - blue: "#3465A5" - magenta: "#C40B71" - cyan: "#0891A0" - white: "#B886FF" - brightBlack: "#483247" - brightRed: "#FF6551" - brightGreen: "#3AB4A6" - brightYellow: "#FFCA37" - brightBlue: "#3191EB" - brightMagenta: "#FF24BD" - brightCyan: "#2AE6C6" - brightWhite: "#FFFBF9" -meta: - mode: "dark" - accent: "pink" - hue: 308 - pair: null - contrast: - fg: 72.1 - black: 0 - red: 32.8 - green: 20.6 - yellow: 50.6 - blue: 22 - magenta: 24.6 - cyan: 36.5 - white: 49.9 - brightBlack: 0 - brightRed: 46.9 - brightGreen: 52 - brightYellow: 78.5 - brightBlue: 41.4 - brightMagenta: 42.2 - brightCyan: 76.5 - brightWhite: 105.3 diff --git a/themes/p-yesterday.yaml b/themes/p-yesterday.yaml deleted file mode 100644 index 0108780e..00000000 --- a/themes/p-yesterday.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "P. \ Yesterday" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#23282A" - fg: "#F1D5C0" - black: "#374344" - red: "#F04129" - green: "#25AC42" - yellow: "#CCA63C" - blue: "#4779BB" - magenta: "#E02D69" - cyan: "#46B9B9" - white: "#FAE5D6" - brightBlack: "#556661" - brightRed: "#FF634F" - brightGreen: "#2FEC6E" - brightYellow: "#FFDD47" - brightBlue: "#68B6FF" - brightMagenta: "#FF6D9E" - brightCyan: "#7BE6E6" - brightWhite: "#FFF2EC" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 80.9 - black: 0 - red: 34.1 - green: 42.7 - yellow: 53.4 - blue: 27.7 - magenta: 29.3 - cyan: 52.5 - white: 90.1 - brightBlack: 18.2 - brightRed: 43.6 - brightGreen: 74.3 - brightYellow: 83.8 - brightBlue: 56.7 - brightMagenta: 47.8 - brightCyan: 78 - brightWhite: 97.6 diff --git a/themes/p33t.yaml b/themes/p33t.yaml index 19616983..01fe7826 100644 --- a/themes/p33t.yaml +++ b/themes/p33t.yaml @@ -1,4 +1,4 @@ -name: "P33t" +name: "p33t" source: marketplace_id: "P33t.p33t" version: "0.0.2" @@ -8,6 +8,7 @@ source: author: "P33t" repo: null url: "https://marketplace.visualstudio.com/items?itemName=P33t.p33t" + formats: null colors: bg: "#0A0A0A" fg: "#D4D4D4" diff --git a/themes/pace-dark.yaml b/themes/pace-dark.yaml index 4efe3892..d22c1bf4 100644 --- a/themes/pace-dark.yaml +++ b/themes/pace-dark.yaml @@ -8,6 +8,7 @@ source: author: "Fabian Hiller" repo: "https://github.com/fabian-hiller/vscode-pace-theme" url: "https://marketplace.visualstudio.com/items?itemName=fabian-hiller.pace-theme" + formats: null colors: bg: "#111827" fg: "#94A3B8" diff --git a/themes/pace-light.yaml b/themes/pace-light.yaml index f50f4614..ddc5595c 100644 --- a/themes/pace-light.yaml +++ b/themes/pace-light.yaml @@ -8,6 +8,7 @@ source: author: "Fabian Hiller" repo: "https://github.com/fabian-hiller/vscode-pace-theme" url: "https://marketplace.visualstudio.com/items?itemName=fabian-hiller.pace-theme" + formats: null colors: bg: "#FFFFFF" fg: "#64748B" diff --git a/themes/padrepio.yaml b/themes/padrepio.yaml index 0bde6be7..3e59ae84 100644 --- a/themes/padrepio.yaml +++ b/themes/padrepio.yaml @@ -8,6 +8,7 @@ source: author: "Houlz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Houlz.padrepio" + formats: null colors: bg: "#111111" fg: "#D9D9D2" diff --git a/themes/paigio.yaml b/themes/paigio.yaml index 944ed08c..5e06c80e 100644 --- a/themes/paigio.yaml +++ b/themes/paigio.yaml @@ -8,6 +8,7 @@ source: author: "plewg" repo: "https://github.com/plewg/toybox" url: "https://marketplace.visualstudio.com/items?itemName=plewg.toybox" + formats: null colors: bg: "#252525" fg: "#F5F5F4" diff --git a/themes/pale-blue.yaml b/themes/pale-blue.yaml index d5d57d33..70f2e4d5 100644 --- a/themes/pale-blue.yaml +++ b/themes/pale-blue.yaml @@ -8,6 +8,7 @@ source: author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-roselia-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" + formats: null colors: bg: "#111827" fg: "#F1F5F9" diff --git a/themes/pale-boreal-dark.yaml b/themes/pale-boreal-dark.yaml index 2197aaf0..fb7bea19 100644 --- a/themes/pale-boreal-dark.yaml +++ b/themes/pale-boreal-dark.yaml @@ -1,13 +1,14 @@ -name: "Pale Boreal Dark" +name: "Pale Boreal Dark " source: marketplace_id: "MuriloSambuite.pale-boreal-dark-theme" version: "1.0.8" - installs: 3181 + installs: 3182 rating: 5 ratings: 1 author: "Murilo Sambuite" repo: "https://github.com/sambuite/pale-boreal-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=MuriloSambuite.pale-boreal-dark-theme" + formats: null colors: bg: "#0E0D17" fg: "#EDECEE" diff --git a/themes/palenight-italic.yaml b/themes/palenight-italic.yaml deleted file mode 100644 index e13ec685..00000000 --- a/themes/palenight-italic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Palenight Italic" -source: - marketplace_id: "nesterman.material-nest-theme" - version: "1.0.40" - installs: 5494 - rating: 0 - ratings: 0 - author: "Nick Nesterov" - repo: "https://github.com/nesterman/vscode-nest-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nesterman.material-nest-theme" -colors: - bg: "#FFFFFF" - fg: "#597078" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 76 - black: 106 - red: 57.1 - green: 18.3 - yellow: 23.3 - blue: 45.2 - magenta: 47.3 - cyan: 23.9 - white: 0 - brightBlack: 74.3 - brightRed: 57.1 - brightGreen: 18.3 - brightYellow: 23.3 - brightBlue: 45.2 - brightMagenta: 47.3 - brightCyan: 23.9 - brightWhite: 0 diff --git a/themes/palenight-material.yaml b/themes/palenight-material.yaml deleted file mode 100644 index c3671a7d..00000000 --- a/themes/palenight-material.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Palenight Material" -source: - marketplace_id: "Lebster.enough-with-the-palenight" - version: "1.0.6" - installs: 7176 - rating: 0 - ratings: 0 - author: "Lebster" - repo: "https://github.com/LebsterFace/enough-with-the-palenight" - url: "https://marketplace.visualstudio.com/items?itemName=Lebster.enough-with-the-palenight" -colors: - bg: "#292D3E" - fg: "#BFC7D5" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 274 - pair: null - contrast: - fg: 67.7 - black: 0 - red: 40 - green: 80.6 - yellow: 75.3 - blue: 52.3 - magenta: 50.1 - cyan: 74.6 - white: 103.3 - brightBlack: 22.8 - brightRed: 40 - brightGreen: 80.6 - brightYellow: 75.3 - brightBlue: 52.3 - brightMagenta: 50.1 - brightCyan: 74.6 - brightWhite: 103.3 diff --git a/themes/palenight-pro.yaml b/themes/palenight-pro.yaml index 30729444..b04b5bee 100644 --- a/themes/palenight-pro.yaml +++ b/themes/palenight-pro.yaml @@ -1,11 +1,14 @@ -name: "Palenight Pro" +name: "palenight-pro" source: marketplace_id: "indranilhalderdev.palenight-pro" version: "1.0.0" installs: 294 + rating: 0 + ratings: 0 author: "Indranil Halder" repo: "https://github.com/indranildeveloper/palenight-pro" url: "https://marketplace.visualstudio.com/items?itemName=indranilhalderdev.palenight-pro" + formats: null colors: bg: "#282D3F" fg: "#BABED8" diff --git a/themes/palenight-theme-based-on-olaolu-olaywuyi-for-code-server.yaml b/themes/palenight-theme-based-on-olaolu-olaywuyi-for-code-server.yaml deleted file mode 100644 index 5db548d2..00000000 --- a/themes/palenight-theme-based-on-olaolu-olaywuyi-for-code-server.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Palenight Theme based on Olaolu Olaywuyi for Code Server" -source: - marketplace_id: "mdixon18.palenight" - version: "0.0.1" - installs: 17134 - rating: 0 - ratings: 0 - author: "mdixon18" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=mdixon18.palenight" -colors: - bg: "#292D3E" - fg: "#BFC7D5" - black: "#676E95" - red: "#FF5572" - green: "#A9C77D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#FF5572" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 274 - pair: null - contrast: - fg: 67.7 - black: 22.8 - red: 40.4 - green: 62.2 - yellow: 75.3 - blue: 52.3 - magenta: 50.1 - cyan: 74.6 - white: 103.3 - brightBlack: 22.8 - brightRed: 40.4 - brightGreen: 80.6 - brightYellow: 75.3 - brightBlue: 52.3 - brightMagenta: 50.1 - brightCyan: 74.6 - brightWhite: 103.3 diff --git a/themes/palenight-theme.yaml b/themes/palenight-theme.yaml deleted file mode 100644 index c293b791..00000000 --- a/themes/palenight-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Palenight Theme" -source: - marketplace_id: "anaksholeh.unknown" - version: "0.0.5" - installs: 321 - rating: 0 - ratings: 0 - author: "anak sholeh" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=anaksholeh.unknown" -colors: - bg: "#373F4B" - fg: "#BFC7D5" - black: "#676E95" - red: "#FF5572" - green: "#A9C77D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#FF5572" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 258 - pair: null - contrast: - fg: 63.1 - black: 18.2 - red: 35.7 - green: 57.6 - yellow: 70.7 - blue: 47.7 - magenta: 45.5 - cyan: 70 - white: 98.6 - brightBlack: 18.2 - brightRed: 35.7 - brightGreen: 75.9 - brightYellow: 70.7 - brightBlue: 47.7 - brightMagenta: 45.5 - brightCyan: 70 - brightWhite: 98.6 diff --git a/themes/palenight.yaml b/themes/palenight.yaml index e05083e8..b655a525 100644 --- a/themes/palenight.yaml +++ b/themes/palenight.yaml @@ -1,49 +1,53 @@ name: "Palenight" source: - marketplace_id: "AgraeonLabs.dev-themes" - version: "0.1.0" - installs: 283 - author: "Agraeon Labs" - repo: "https://github.com/adiagcodelance/VS-Code-Themes" - url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" + marketplace_id: "mdixon18.palenight" + version: "0.0.1" + installs: 17135 + rating: 0 + ratings: 0 + author: "mdixon18" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mdixon18.palenight" + formats: null colors: bg: "#292D3E" - fg: "#A6ACCD" - black: "#292D3E" - red: "#F07178" - green: "#C3E88D" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" yellow: "#FFCB6B" blue: "#82AAFF" magenta: "#C792EA" cyan: "#89DDFF" - white: "#EEFFFF" - brightBlack: "#292D3E" - brightRed: "#F07178" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" brightGreen: "#C3E88D" brightYellow: "#FFCB6B" brightBlue: "#82AAFF" brightMagenta: "#C792EA" brightCyan: "#89DDFF" - brightWhite: "#EEFFFF" + brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "orange" + accent: "red" hue: 274 + pair: null contrast: - fg: 53.5 - black: 0 - red: 43 - green: 80.6 + fg: 67.7 + black: 22.8 + red: 40.4 + green: 62.2 yellow: 75.3 blue: 52.3 magenta: 50.1 cyan: 74.6 - white: 101 - brightBlack: 0 - brightRed: 43 + white: 103.3 + brightBlack: 22.8 + brightRed: 40.4 brightGreen: 80.6 brightYellow: 75.3 brightBlue: 52.3 brightMagenta: 50.1 brightCyan: 74.6 - brightWhite: 101 + brightWhite: 103.3 diff --git a/themes/palespring.yaml b/themes/palespring.yaml index 3407624c..1a5bf150 100644 --- a/themes/palespring.yaml +++ b/themes/palespring.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "palespring.palespring" version: "0.0.1" installs: 255 + rating: 0 + ratings: 0 author: "lucast" repo: "https://github.com/luciantr24/palespring" url: "https://marketplace.visualstudio.com/items?itemName=palespring.palespring" + formats: null colors: bg: "#006A8B" fg: "#FFFBF8" diff --git a/themes/palestorm-x.yaml b/themes/palestorm-x.yaml index 3410cf66..022df14e 100644 --- a/themes/palestorm-x.yaml +++ b/themes/palestorm-x.yaml @@ -8,6 +8,7 @@ source: author: "Alexander Alekseenko" repo: "https://github.com/Akaike/vsc-palestorm-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.palestorm" + formats: null colors: bg: "#202127" fg: "#D9D9D9" diff --git a/themes/palestorm.yaml b/themes/palestorm.yaml index 8ad2ee88..b62b0982 100644 --- a/themes/palestorm.yaml +++ b/themes/palestorm.yaml @@ -8,6 +8,7 @@ source: author: "Alexander Alekseenko" repo: "https://github.com/Akaike/vsc-palestorm-theme" url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.palestorm" + formats: null colors: bg: "#282D3F" fg: "#BEC6D4" diff --git a/themes/palette.yaml b/themes/palette.yaml index d66ce40f..b98639b6 100644 --- a/themes/palette.yaml +++ b/themes/palette.yaml @@ -2,12 +2,13 @@ name: "Palette" source: marketplace_id: "palette-theme.Palette-Dark" version: "0.2.0" - installs: 5842 + installs: 5847 rating: 5 ratings: 2 author: "Zakiullah" repo: "https://github.com/zbarakzai/Palette-VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=palette-theme.Palette-Dark" + formats: null colors: bg: "#162636" fg: "#D6DEEB" diff --git a/themes/pall-theme.yaml b/themes/pall-theme.yaml index d7a45ad6..fd858f3f 100644 --- a/themes/pall-theme.yaml +++ b/themes/pall-theme.yaml @@ -1,4 +1,4 @@ -name: "Pall Theme" +name: "Pall-Theme" source: marketplace_id: "Goek.pall" version: "0.0.5" @@ -8,6 +8,7 @@ source: author: "Goek" repo: "https://github.com/aligoek/Pall-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Goek.pall" + formats: null colors: bg: "#EBEEF5" fg: "#292B4F" diff --git a/themes/panda-blue.yaml b/themes/panda-blue.yaml index d1e3c91b..d8a0ec4c 100644 --- a/themes/panda-blue.yaml +++ b/themes/panda-blue.yaml @@ -1,11 +1,14 @@ -name: "panda-blue" +name: "Panda Blue" source: marketplace_id: "VishalMaurya.panda-blue" version: "0.0.4" installs: 158 + rating: 0 + ratings: 0 author: "Vishal Maurya" repo: "https://github.com/maurya-07/panda-blue" url: "https://marketplace.visualstudio.com/items?itemName=VishalMaurya.panda-blue" + formats: null colors: bg: "#0C034B" fg: "#FFFFFF" diff --git a/themes/panda-dark.yaml b/themes/panda-dark.yaml deleted file mode 100644 index ff9ac528..00000000 --- a/themes/panda-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Panda Dark" -source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - rating: 0 - ratings: 0 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" -colors: - bg: "#0D0D0D" - fg: "#F5F5F5" - black: "#2D2D2D" - red: "#D2691E" - green: "#7DB46C" - yellow: "#DAA520" - blue: "#8FBC8F" - magenta: "#CD853F" - cyan: "#90EE90" - white: "#E6E6E6" - brightBlack: "#4A4A4A" - brightRed: "#FF7F50" - brightGreen: "#98FB98" - brightYellow: "#F0E68C" - brightBlue: "#AFEEEE" - brightMagenta: "#DEB887" - brightCyan: "#E0FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 101 - black: 0 - red: 38.1 - green: 53.9 - yellow: 58 - blue: 59.7 - magenta: 45.2 - cyan: 83.2 - white: 91.4 - brightBlack: 11.7 - brightRed: 53.2 - brightGreen: 90.6 - brightYellow: 89.7 - brightBlue: 89.3 - brightMagenta: 67.3 - brightCyan: 103.6 - brightWhite: 107.6 diff --git a/themes/pandai.yaml b/themes/pandai.yaml index 29e14d1e..d6177367 100644 --- a/themes/pandai.yaml +++ b/themes/pandai.yaml @@ -8,6 +8,7 @@ source: author: "tenf0ld" repo: "https://github.com/tenf0ld/pandai" url: "https://marketplace.visualstudio.com/items?itemName=tenf0ld.pandai-dark" + formats: null colors: bg: "#4A4E69" fg: "#B4B4B4" diff --git a/themes/pandju.yaml b/themes/pandju.yaml deleted file mode 100644 index 48be2f53..00000000 --- a/themes/pandju.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pandju" -source: - marketplace_id: "TobiasTimm.pandju" - version: "1.0.1" - installs: 2734 - rating: 5 - ratings: 1 - author: "Tobias Timm" - repo: "https://github.com/tobiastimm/pandju" - url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.pandju" -colors: - bg: "#171D2B" - fg: "#E6E6E6" - black: "#6F7899" - red: "#F4326D" - green: "#17F9D7" - yellow: "#FFEDBB" - blue: "#A188F1" - magenta: "#FF75B5" - cyan: "#F7B773" - white: "#D7E2FF" - brightBlack: "#6F7899" - brightRed: "#F4326D" - brightGreen: "#17F9D7" - brightYellow: "#FFEDBB" - brightBlue: "#A188F1" - brightMagenta: "#FF75B5" - brightCyan: "#F7B773" - brightWhite: "#D7E2FF" -meta: - mode: "dark" - accent: "red" - hue: 266 - pair: null - contrast: - fg: 89.9 - black: 29.8 - red: 36.1 - green: 85.5 - yellow: 95 - blue: 45.3 - magenta: 52.1 - cyan: 69.1 - white: 87.4 - brightBlack: 29.8 - brightRed: 36.1 - brightGreen: 85.5 - brightYellow: 95 - brightBlue: 45.3 - brightMagenta: 52.1 - brightCyan: 69.1 - brightWhite: 87.4 diff --git a/themes/pantasio.yaml b/themes/pantasio.yaml index dcd5f48b..a2119150 100644 --- a/themes/pantasio.yaml +++ b/themes/pantasio.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "pantasio.pkit" version: "0.0.3" installs: 116 + rating: 0 + ratings: 0 author: "pantasio" repo: "https://github.com/pantasio/pkit-VScode-theme" url: "https://marketplace.visualstudio.com/items?itemName=pantasio.pkit" + formats: null colors: bg: "#131A24" fg: "#FFEFB8" diff --git a/themes/pantone-amber-dark.yaml b/themes/pantone-amber-dark.yaml index 1c86c07e..100c5a06 100644 --- a/themes/pantone-amber-dark.yaml +++ b/themes/pantone-amber-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#221A04" fg: "#E2DBCA" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 90 + pair: null contrast: fg: 83.5 black: 0 diff --git a/themes/pantone-amber-light.yaml b/themes/pantone-amber-light.yaml index cbb97a4b..fbdc9bdb 100644 --- a/themes/pantone-amber-light.yaml +++ b/themes/pantone-amber-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F4" fg: "#2F2305" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.5 black: 97.5 diff --git a/themes/pantone-aqua-dark.yaml b/themes/pantone-aqua-dark.yaml index d0db6368..9accb0e5 100644 --- a/themes/pantone-aqua-dark.yaml +++ b/themes/pantone-aqua-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#001D21" fg: "#CBDEE4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 207 + pair: null contrast: fg: 83.1 black: 0 diff --git a/themes/pantone-aqua-light.yaml b/themes/pantone-aqua-light.yaml index 5f3b125e..785cfb7e 100644 --- a/themes/pantone-aqua-light.yaml +++ b/themes/pantone-aqua-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F5F7F9" fg: "#00282D" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.4 black: 97.4 diff --git a/themes/pantone-aqua-sky-dark.yaml b/themes/pantone-aqua-sky-dark.yaml index bf01cf33..ef114efe 100644 --- a/themes/pantone-aqua-sky-dark.yaml +++ b/themes/pantone-aqua-sky-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#0F181B" fg: "#D3DFE5" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 220 + pair: null contrast: fg: 85 black: 0 diff --git a/themes/pantone-aqua-sky-light.yaml b/themes/pantone-aqua-sky-light.yaml index a7fd1519..a357ede1 100644 --- a/themes/pantone-aqua-sky-light.yaml +++ b/themes/pantone-aqua-sky-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F5F8F9" fg: "#121D22" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.5 black: 99.5 diff --git a/themes/pantone-baby-blue-dark.yaml b/themes/pantone-baby-blue-dark.yaml index 4da5d965..a6a77fec 100644 --- a/themes/pantone-baby-blue-dark.yaml +++ b/themes/pantone-baby-blue-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#151A1B" fg: "#D7E0E5" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/pantone-baby-blue-light.yaml b/themes/pantone-baby-blue-light.yaml index 83700863..b6f59f84 100644 --- a/themes/pantone-baby-blue-light.yaml +++ b/themes/pantone-baby-blue-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F6F8F9" fg: "#1A2022" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99 black: 99 diff --git a/themes/pantone-blue-iris-dark.yaml b/themes/pantone-blue-iris-dark.yaml index 17b0d4f6..f121d8d3 100644 --- a/themes/pantone-blue-iris-dark.yaml +++ b/themes/pantone-blue-iris-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#0E0F19" fg: "#CECFD5" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 280 + pair: null contrast: fg: 77.2 black: 0 diff --git a/themes/pantone-blue-iris-light.yaml b/themes/pantone-blue-iris-light.yaml index 0579d2a5..d4966d4e 100644 --- a/themes/pantone-blue-iris-light.yaml +++ b/themes/pantone-blue-iris-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F4F5F5" fg: "#141423" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.8 black: 98.8 diff --git a/themes/pantone-blue-turquoise-dark.yaml b/themes/pantone-blue-turquoise-dark.yaml index 6752ab17..350256de 100644 --- a/themes/pantone-blue-turquoise-dark.yaml +++ b/themes/pantone-blue-turquoise-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#0D1C1C" fg: "#DEE5E5" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 196 + pair: null contrast: fg: 88.8 black: 0 diff --git a/themes/pantone-blue-turquoise-light.yaml b/themes/pantone-blue-turquoise-light.yaml index 7f889393..b2f469db 100644 --- a/themes/pantone-blue-turquoise-light.yaml +++ b/themes/pantone-blue-turquoise-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F9F9F9" fg: "#0C1A1A" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101 black: 101 diff --git a/themes/pantone-blush-dark.yaml b/themes/pantone-blush-dark.yaml index 5daf6b23..65f0c8a0 100644 --- a/themes/pantone-blush-dark.yaml +++ b/themes/pantone-blush-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1D1515" fg: "#E3D4D8" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 18 + pair: null contrast: fg: 81.7 black: 0 diff --git a/themes/pantone-blush-light.yaml b/themes/pantone-blush-light.yaml index eac2d173..3a84ee2d 100644 --- a/themes/pantone-blush-light.yaml +++ b/themes/pantone-blush-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F5F6" fg: "#241A1A" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.3 black: 98.3 diff --git a/themes/pantone-blush-pink-dark.yaml b/themes/pantone-blush-pink-dark.yaml index 03c2f94a..e654825e 100644 --- a/themes/pantone-blush-pink-dark.yaml +++ b/themes/pantone-blush-pink-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1D1618" fg: "#E3D4DA" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 359 + pair: null contrast: fg: 81.7 black: 0 diff --git a/themes/pantone-blush-pink-light.yaml b/themes/pantone-blush-pink-light.yaml index 40e9228c..370779a6 100644 --- a/themes/pantone-blush-pink-light.yaml +++ b/themes/pantone-blush-pink-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F5F6" fg: "#251B1E" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.1 black: 98.1 diff --git a/themes/pantone-brick-red-dark.yaml b/themes/pantone-brick-red-dark.yaml index 80a5a6ce..8a5d0bf3 100644 --- a/themes/pantone-brick-red-dark.yaml +++ b/themes/pantone-brick-red-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1A0807" fg: "#F2E6E2" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 25 + pair: null contrast: fg: 92.8 black: 0 diff --git a/themes/pantone-brick-red-light.yaml b/themes/pantone-brick-red-light.yaml index af442af7..747373e3 100644 --- a/themes/pantone-brick-red-light.yaml +++ b/themes/pantone-brick-red-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFBFA" fg: "#230B09" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.9 black: 102.9 diff --git a/themes/pantone-bright-green-dark.yaml b/themes/pantone-bright-green-dark.yaml index 66c4d3ca..94221324 100644 --- a/themes/pantone-bright-green-dark.yaml +++ b/themes/pantone-bright-green-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#001C0A" fg: "#D8E5DD" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 153 + pair: null contrast: fg: 87.8 black: 0 diff --git a/themes/pantone-bright-green-light.yaml b/themes/pantone-bright-green-light.yaml index b160be5d..08556aeb 100644 --- a/themes/pantone-bright-green-light.yaml +++ b/themes/pantone-bright-green-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F9F9" fg: "#00270E" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.2 black: 99.2 diff --git a/themes/pantone-burgundy-dark.yaml b/themes/pantone-burgundy-dark.yaml index 10428501..d0c7a40d 100644 --- a/themes/pantone-burgundy-dark.yaml +++ b/themes/pantone-burgundy-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#190407" fg: "#DDCACF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 12 + pair: null contrast: fg: 76.9 black: 0 diff --git a/themes/pantone-burgundy-light.yaml b/themes/pantone-burgundy-light.yaml index c69cfdd7..d67cb773 100644 --- a/themes/pantone-burgundy-light.yaml +++ b/themes/pantone-burgundy-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F7F4F5" fg: "#23060A" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99 black: 99 diff --git a/themes/pantone-burnt-orange-dark.yaml b/themes/pantone-burnt-orange-dark.yaml index 6df2325e..cff51af0 100644 --- a/themes/pantone-burnt-orange-dark.yaml +++ b/themes/pantone-burnt-orange-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#291100" fg: "#F8EAE0" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 57 + pair: null contrast: fg: 94.5 black: 0 diff --git a/themes/pantone-burnt-orange-light.yaml b/themes/pantone-burnt-orange-light.yaml index 6c2691e8..fc523b28 100644 --- a/themes/pantone-burnt-orange-light.yaml +++ b/themes/pantone-burnt-orange-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFBFA" fg: "#381800" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 100.7 black: 100.7 diff --git a/themes/pantone-cerulean-dark.yaml b/themes/pantone-cerulean-dark.yaml index f2237b04..d8360edd 100644 --- a/themes/pantone-cerulean-dark.yaml +++ b/themes/pantone-cerulean-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#131619" fg: "#D3D6D9" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 80.6 black: 0 diff --git a/themes/pantone-cerulean-light.yaml b/themes/pantone-cerulean-light.yaml index 1e7744d9..22fe2fba 100644 --- a/themes/pantone-cerulean-light.yaml +++ b/themes/pantone-cerulean-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F5F5F6" fg: "#171B20" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.2 black: 98.2 diff --git a/themes/pantone-chartreuse-dark.yaml b/themes/pantone-chartreuse-dark.yaml index ba766852..f0fce2a3 100644 --- a/themes/pantone-chartreuse-dark.yaml +++ b/themes/pantone-chartreuse-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#232300" fg: "#E3E0C8" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 110 + pair: null contrast: fg: 84.9 black: 0 diff --git a/themes/pantone-chartreuse-light.yaml b/themes/pantone-chartreuse-light.yaml index 9212a198..fa1c8888 100644 --- a/themes/pantone-chartreuse-light.yaml +++ b/themes/pantone-chartreuse-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F4" fg: "#313100" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 94.9 black: 94.9 diff --git a/themes/pantone-chili-pepper-dark.yaml b/themes/pantone-chili-pepper-dark.yaml index f8d3e731..5722e77a 100644 --- a/themes/pantone-chili-pepper-dark.yaml +++ b/themes/pantone-chili-pepper-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#190408" fg: "#DDCACF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 9 + pair: null contrast: fg: 76.9 black: 0 diff --git a/themes/pantone-chili-pepper-light.yaml b/themes/pantone-chili-pepper-light.yaml index c9662fa0..65b84be7 100644 --- a/themes/pantone-chili-pepper-light.yaml +++ b/themes/pantone-chili-pepper-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F7F4F5" fg: "#22060B" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.1 black: 99.1 diff --git a/themes/pantone-chocolate-dark.yaml b/themes/pantone-chocolate-dark.yaml index 1c57a64f..64a94974 100644 --- a/themes/pantone-chocolate-dark.yaml +++ b/themes/pantone-chocolate-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#170D06" fg: "#EDE6E1" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 58 + pair: null contrast: fg: 92 black: 0 diff --git a/themes/pantone-chocolate-light.yaml b/themes/pantone-chocolate-light.yaml index 94bb1171..5b9944a4 100644 --- a/themes/pantone-chocolate-light.yaml +++ b/themes/pantone-chocolate-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FCFBFA" fg: "#140B05" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 103.3 black: 103.3 diff --git a/themes/pantone-classic-blue-dark.yaml b/themes/pantone-classic-blue-dark.yaml index 31a9d11e..2f6c0d80 100644 --- a/themes/pantone-classic-blue-dark.yaml +++ b/themes/pantone-classic-blue-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#041320" fg: "#D8DCE0" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 245 + pair: null contrast: fg: 84.4 black: 0 diff --git a/themes/pantone-classic-blue-light.yaml b/themes/pantone-classic-blue-light.yaml index ea62cb48..73844f27 100644 --- a/themes/pantone-classic-blue-light.yaml +++ b/themes/pantone-classic-blue-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F8F9" fg: "#03111C" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.2 black: 101.2 diff --git a/themes/pantone-classic-red-dark.yaml b/themes/pantone-classic-red-dark.yaml index 920fd98a..dcd5f8ff 100644 --- a/themes/pantone-classic-red-dark.yaml +++ b/themes/pantone-classic-red-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#230704" fg: "#F5E6E2" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 31 + pair: null contrast: fg: 92.9 black: 0 diff --git a/themes/pantone-classic-red-light.yaml b/themes/pantone-classic-red-light.yaml index cd13d525..e0813d71 100644 --- a/themes/pantone-classic-red-light.yaml +++ b/themes/pantone-classic-red-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFBFA" fg: "#300906" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.1 black: 102.1 diff --git a/themes/pantone-cobalt-blue-dark.yaml b/themes/pantone-cobalt-blue-dark.yaml index e68c701a..63522528 100644 --- a/themes/pantone-cobalt-blue-dark.yaml +++ b/themes/pantone-cobalt-blue-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#03101A" fg: "#D6DCE1" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 240 + pair: null contrast: fg: 84.4 black: 0 diff --git a/themes/pantone-cobalt-blue-light.yaml b/themes/pantone-cobalt-blue-light.yaml index 5bf1a8cb..7b134bb2 100644 --- a/themes/pantone-cobalt-blue-light.yaml +++ b/themes/pantone-cobalt-blue-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F7F8F8" fg: "#041623" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 100.6 black: 100.6 diff --git a/themes/pantone-coral-dark.yaml b/themes/pantone-coral-dark.yaml index 08c84cfb..707f3119 100644 --- a/themes/pantone-coral-dark.yaml +++ b/themes/pantone-coral-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1F100E" fg: "#F8ECE7" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 28 + pair: null contrast: fg: 96.2 black: 0 diff --git a/themes/pantone-coral-light.yaml b/themes/pantone-coral-light.yaml index 6a29a692..52dde1b3 100644 --- a/themes/pantone-coral-light.yaml +++ b/themes/pantone-coral-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFCFB" fg: "#261411" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.7 black: 102.7 diff --git a/themes/pantone-cornflower-blue-dark.yaml b/themes/pantone-cornflower-blue-dark.yaml index c79dc929..afa6fff3 100644 --- a/themes/pantone-cornflower-blue-dark.yaml +++ b/themes/pantone-cornflower-blue-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#0C1624" fg: "#CDD2DA" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 257 + pair: null contrast: fg: 78.1 black: 0 diff --git a/themes/pantone-cornflower-blue-light.yaml b/themes/pantone-cornflower-blue-light.yaml index 0ced7f21..8da4b4a1 100644 --- a/themes/pantone-cornflower-blue-light.yaml +++ b/themes/pantone-cornflower-blue-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F4F5F6" fg: "#0C1422" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99 black: 99 diff --git a/themes/pantone-cyan-dark.yaml b/themes/pantone-cyan-dark.yaml index ab2c1ef3..44ea88f3 100644 --- a/themes/pantone-cyan-dark.yaml +++ b/themes/pantone-cyan-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#001C20" fg: "#CBDEE3" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 208 + pair: null contrast: fg: 83.2 black: 0 diff --git a/themes/pantone-cyan-light.yaml b/themes/pantone-cyan-light.yaml index f1fd7319..ba99d2f6 100644 --- a/themes/pantone-cyan-light.yaml +++ b/themes/pantone-cyan-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F5F7F9" fg: "#00272C" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.6 black: 97.6 diff --git a/themes/pantone-dark-brown-dark.yaml b/themes/pantone-dark-brown-dark.yaml index 141835dd..54e7387f 100644 --- a/themes/pantone-dark-brown-dark.yaml +++ b/themes/pantone-dark-brown-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#130B0B" fg: "#D8CBCF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 19 + pair: null contrast: fg: 76.7 black: 0 diff --git a/themes/pantone-dark-brown-light.yaml b/themes/pantone-dark-brown-light.yaml index edee8305..dad8899d 100644 --- a/themes/pantone-dark-brown-light.yaml +++ b/themes/pantone-dark-brown-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F7F4F5" fg: "#110909" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.6 black: 99.6 diff --git a/themes/pantone-dark-maroon-dark.yaml b/themes/pantone-dark-maroon-dark.yaml index ad227b36..4e062ca4 100644 --- a/themes/pantone-dark-maroon-dark.yaml +++ b/themes/pantone-dark-maroon-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#140507" fg: "#DBCACF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 11 + pair: null contrast: fg: 76.8 black: 0 diff --git a/themes/pantone-dark-maroon-light.yaml b/themes/pantone-dark-maroon-light.yaml index f04bfda2..662a8c20 100644 --- a/themes/pantone-dark-maroon-light.yaml +++ b/themes/pantone-dark-maroon-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F7F4F5" fg: "#1B0709" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.4 black: 99.4 diff --git a/themes/pantone-dark-red-dark.yaml b/themes/pantone-dark-red-dark.yaml index 337338ea..42eea176 100644 --- a/themes/pantone-dark-red-dark.yaml +++ b/themes/pantone-dark-red-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#190408" fg: "#DDCACF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 9 + pair: null contrast: fg: 76.9 black: 0 diff --git a/themes/pantone-dark-red-light.yaml b/themes/pantone-dark-red-light.yaml index 4375638d..00f4bb12 100644 --- a/themes/pantone-dark-red-light.yaml +++ b/themes/pantone-dark-red-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F7F4F5" fg: "#23060B" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99 black: 99 diff --git a/themes/pantone-deep-pink-dark.yaml b/themes/pantone-deep-pink-dark.yaml index e83052e8..93a6c383 100644 --- a/themes/pantone-deep-pink-dark.yaml +++ b/themes/pantone-deep-pink-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#22030E" fg: "#E1C9D2" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 1 + pair: null contrast: fg: 76.9 black: 0 diff --git a/themes/pantone-deep-pink-light.yaml b/themes/pantone-deep-pink-light.yaml index b62e2782..2dcbbdd8 100644 --- a/themes/pantone-deep-pink-light.yaml +++ b/themes/pantone-deep-pink-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F4F5" fg: "#2F0414" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.4 black: 98.4 diff --git a/themes/pantone-dusty-blue-dark.yaml b/themes/pantone-dusty-blue-dark.yaml index d3d88bb3..42c2b53e 100644 --- a/themes/pantone-dusty-blue-dark.yaml +++ b/themes/pantone-dusty-blue-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#141A1D" fg: "#D3DDE2" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 230 + pair: null contrast: fg: 83.7 black: 0 diff --git a/themes/pantone-dusty-blue-light.yaml b/themes/pantone-dusty-blue-light.yaml index 217c0e6a..13765c68 100644 --- a/themes/pantone-dusty-blue-light.yaml +++ b/themes/pantone-dusty-blue-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F5F7F8" fg: "#12181B" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.7 black: 99.7 diff --git a/themes/pantone-emerald-dark.yaml b/themes/pantone-emerald-dark.yaml index e5ccfa41..bb5c43a8 100644 --- a/themes/pantone-emerald-dark.yaml +++ b/themes/pantone-emerald-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#00251D" fg: "#D8E3E1" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 175 + pair: null contrast: fg: 86 black: 0 diff --git a/themes/pantone-emerald-light.yaml b/themes/pantone-emerald-light.yaml index 90cbe7f3..ca380c8b 100644 --- a/themes/pantone-emerald-light.yaml +++ b/themes/pantone-emerald-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F9F9" fg: "#002119" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 100 black: 100 diff --git a/themes/pantone-flame-orange-dark.yaml b/themes/pantone-flame-orange-dark.yaml index ed9c6275..60187e86 100644 --- a/themes/pantone-flame-orange-dark.yaml +++ b/themes/pantone-flame-orange-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1F0F08" fg: "#F8EBE4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 44 + pair: null contrast: fg: 95.6 black: 0 diff --git a/themes/pantone-flame-orange-light.yaml b/themes/pantone-flame-orange-light.yaml index fc1e8b94..344e475f 100644 --- a/themes/pantone-flame-orange-light.yaml +++ b/themes/pantone-flame-orange-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFCFA" fg: "#26120A" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.8 black: 102.8 diff --git a/themes/pantone-forest-green-dark.yaml b/themes/pantone-forest-green-dark.yaml index 7b44281f..b501881a 100644 --- a/themes/pantone-forest-green-dark.yaml +++ b/themes/pantone-forest-green-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#0C1908" fg: "#D9DBCB" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 139 + pair: null contrast: fg: 82.9 black: 0 diff --git a/themes/pantone-forest-green-light.yaml b/themes/pantone-forest-green-light.yaml index abfb422e..d744fbb2 100644 --- a/themes/pantone-forest-green-light.yaml +++ b/themes/pantone-forest-green-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F7F7F4" fg: "#11220A" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.7 black: 98.7 diff --git a/themes/pantone-fuchsia-rose-dark.yaml b/themes/pantone-fuchsia-rose-dark.yaml index 976ba06e..3cd2e2cd 100644 --- a/themes/pantone-fuchsia-rose-dark.yaml +++ b/themes/pantone-fuchsia-rose-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#200B13" fg: "#E0CDD4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 357 + pair: null contrast: fg: 78.5 black: 0 diff --git a/themes/pantone-fuchsia-rose-light.yaml b/themes/pantone-fuchsia-rose-light.yaml index 2a9df0e4..529a5deb 100644 --- a/themes/pantone-fuchsia-rose-light.yaml +++ b/themes/pantone-fuchsia-rose-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F4F6" fg: "#1E0A12" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.3 black: 99.3 diff --git a/themes/pantone-gold-dark.yaml b/themes/pantone-gold-dark.yaml index eaa2ed98..f28fbe00 100644 --- a/themes/pantone-gold-dark.yaml +++ b/themes/pantone-gold-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#15130C" fg: "#DDD8CD" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 94 + pair: null contrast: fg: 82.5 black: 0 diff --git a/themes/pantone-gold-light.yaml b/themes/pantone-gold-light.yaml index e3efe746..5d7089ff 100644 --- a/themes/pantone-gold-light.yaml +++ b/themes/pantone-gold-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F4" fg: "#1D1A11" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.5 black: 99.5 diff --git a/themes/pantone-golden-yellow-dark.yaml b/themes/pantone-golden-yellow-dark.yaml index b8e1d1a9..69d6978c 100644 --- a/themes/pantone-golden-yellow-dark.yaml +++ b/themes/pantone-golden-yellow-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1C1509" fg: "#EFE6D9" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 80 + pair: null contrast: fg: 91.4 black: 0 diff --git a/themes/pantone-golden-yellow-light.yaml b/themes/pantone-golden-yellow-light.yaml index d35b5bfe..a3a68987 100644 --- a/themes/pantone-golden-yellow-light.yaml +++ b/themes/pantone-golden-yellow-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FBFAF7" fg: "#231A0C" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101 black: 101 diff --git a/themes/pantone-graphite-dark.yaml b/themes/pantone-graphite-dark.yaml index 3958096c..a2d60e6a 100644 --- a/themes/pantone-graphite-dark.yaml +++ b/themes/pantone-graphite-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#0C0D0E" fg: "#CDCFD0" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 77 black: 0 diff --git a/themes/pantone-graphite-light.yaml b/themes/pantone-graphite-light.yaml index dc98f2e0..93d4a7e3 100644 --- a/themes/pantone-graphite-light.yaml +++ b/themes/pantone-graphite-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F4F5F5" fg: "#111213" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.2 black: 99.2 diff --git a/themes/pantone-green-dark.yaml b/themes/pantone-green-dark.yaml index d1154091..1fce07d8 100644 --- a/themes/pantone-green-dark.yaml +++ b/themes/pantone-green-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#131E05" fg: "#DCDDCA" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 129 + pair: null contrast: fg: 83.6 black: 0 diff --git a/themes/pantone-green-light.yaml b/themes/pantone-green-light.yaml index 9a801b79..d08852e2 100644 --- a/themes/pantone-green-light.yaml +++ b/themes/pantone-green-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F4" fg: "#1A2A07" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.3 black: 97.3 diff --git a/themes/pantone-greenery-dark.yaml b/themes/pantone-greenery-dark.yaml index 91c24c3e..3d119de5 100644 --- a/themes/pantone-greenery-dark.yaml +++ b/themes/pantone-greenery-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#161C0C" fg: "#DDDDCD" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 126 + pair: null contrast: fg: 84 black: 0 diff --git a/themes/pantone-greenery-light.yaml b/themes/pantone-greenery-light.yaml index a55e6797..a99858e4 100644 --- a/themes/pantone-greenery-light.yaml +++ b/themes/pantone-greenery-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F4" fg: "#1E2710" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.6 black: 97.6 diff --git a/themes/pantone-honeysuckle-dark.yaml b/themes/pantone-honeysuckle-dark.yaml index d7b5f78e..df646b97 100644 --- a/themes/pantone-honeysuckle-dark.yaml +++ b/themes/pantone-honeysuckle-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#230D12" fg: "#E1CDD4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 7 + pair: null contrast: fg: 78.4 black: 0 diff --git a/themes/pantone-honeysuckle-light.yaml b/themes/pantone-honeysuckle-light.yaml index 2208cc00..1c83d5cc 100644 --- a/themes/pantone-honeysuckle-light.yaml +++ b/themes/pantone-honeysuckle-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F4F6" fg: "#210C11" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.1 black: 99.1 diff --git a/themes/pantone-hot-pink-dark.yaml b/themes/pantone-hot-pink-dark.yaml index 9d9a3011..42b98b2e 100644 --- a/themes/pantone-hot-pink-dark.yaml +++ b/themes/pantone-hot-pink-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#250A11" fg: "#E2CCD4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 6 + pair: null contrast: fg: 78.2 black: 0 diff --git a/themes/pantone-hot-pink-light.yaml b/themes/pantone-hot-pink-light.yaml index 9d741ed3..a5226224 100644 --- a/themes/pantone-hot-pink-light.yaml +++ b/themes/pantone-hot-pink-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F4F6" fg: "#230910" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.1 black: 99.1 diff --git a/themes/pantone-ice-blue-dark.yaml b/themes/pantone-ice-blue-dark.yaml index 1a2d8261..3f9ec52f 100644 --- a/themes/pantone-ice-blue-dark.yaml +++ b/themes/pantone-ice-blue-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#121A1C" fg: "#D6E0E6" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 215 + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/pantone-ice-blue-light.yaml b/themes/pantone-ice-blue-light.yaml index 4ba4c69b..bbe8f922 100644 --- a/themes/pantone-ice-blue-light.yaml +++ b/themes/pantone-ice-blue-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F6F8F9" fg: "#172023" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.1 black: 99.1 diff --git a/themes/pantone-illuminating-dark.yaml b/themes/pantone-illuminating-dark.yaml index e116c1c4..b3089b14 100644 --- a/themes/pantone-illuminating-dark.yaml +++ b/themes/pantone-illuminating-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1D1B09" fg: "#E4E0CD" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 103 + pair: null contrast: fg: 86.2 black: 0 diff --git a/themes/pantone-illuminating-light.yaml b/themes/pantone-illuminating-light.yaml index 5dd873dc..df4fec57 100644 --- a/themes/pantone-illuminating-light.yaml +++ b/themes/pantone-illuminating-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F4" fg: "#25210C" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.3 black: 98.3 diff --git a/themes/pantone-indigo-dark.yaml b/themes/pantone-indigo-dark.yaml index 572f8e83..9fcf0500 100644 --- a/themes/pantone-indigo-dark.yaml +++ b/themes/pantone-indigo-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#040916" fg: "#CACDD4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 263 + pair: null contrast: fg: 76.1 black: 0 diff --git a/themes/pantone-indigo-light.yaml b/themes/pantone-indigo-light.yaml index 9dc78c54..ba033049 100644 --- a/themes/pantone-indigo-light.yaml +++ b/themes/pantone-indigo-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F4F5F5" fg: "#060C1F" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.5 black: 99.5 diff --git a/themes/pantone-khaki-dark.yaml b/themes/pantone-khaki-dark.yaml index b09437ed..be16cb37 100644 --- a/themes/pantone-khaki-dark.yaml +++ b/themes/pantone-khaki-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#161410" fg: "#EBE5DD" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 90.7 black: 0 diff --git a/themes/pantone-khaki-light.yaml b/themes/pantone-khaki-light.yaml index 5844b9a7..358f6f63 100644 --- a/themes/pantone-khaki-light.yaml +++ b/themes/pantone-khaki-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FBF9F8" fg: "#1C1814" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.1 black: 101.1 diff --git a/themes/pantone-lavender-dark.yaml b/themes/pantone-lavender-dark.yaml index 69172fae..28772725 100644 --- a/themes/pantone-lavender-dark.yaml +++ b/themes/pantone-lavender-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#171021" fg: "#D2D0D8" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 302 + pair: null contrast: fg: 78 black: 0 diff --git a/themes/pantone-lavender-light.yaml b/themes/pantone-lavender-light.yaml index d4420cbb..fea9b799 100644 --- a/themes/pantone-lavender-light.yaml +++ b/themes/pantone-lavender-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F5F5F6" fg: "#160F1F" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.3 black: 99.3 diff --git a/themes/pantone-lilac-dark.yaml b/themes/pantone-lilac-dark.yaml index 448abefc..f1e9d964 100644 --- a/themes/pantone-lilac-dark.yaml +++ b/themes/pantone-lilac-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1C191B" fg: "#E2D7DC" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 82.7 black: 0 diff --git a/themes/pantone-lilac-light.yaml b/themes/pantone-lilac-light.yaml index ffe084ed..0683cec3 100644 --- a/themes/pantone-lilac-light.yaml +++ b/themes/pantone-lilac-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F5F6" fg: "#232022" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.6 black: 97.6 diff --git a/themes/pantone-lime-green-dark.yaml b/themes/pantone-lime-green-dark.yaml index d5e5bcc4..bbda551a 100644 --- a/themes/pantone-lime-green-dark.yaml +++ b/themes/pantone-lime-green-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#182200" fg: "#DEDFC8" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 124 + pair: null contrast: fg: 84.2 black: 0 diff --git a/themes/pantone-lime-green-light.yaml b/themes/pantone-lime-green-light.yaml index a57aecf7..a05a1e61 100644 --- a/themes/pantone-lime-green-light.yaml +++ b/themes/pantone-lime-green-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F4" fg: "#212F00" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 96.1 black: 96.1 diff --git a/themes/pantone-living-coral-dark.yaml b/themes/pantone-living-coral-dark.yaml index d658d7f6..6aa0f64a 100644 --- a/themes/pantone-living-coral-dark.yaml +++ b/themes/pantone-living-coral-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1F0D0C" fg: "#F8EBE6" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 24 + pair: null contrast: fg: 95.8 black: 0 diff --git a/themes/pantone-living-coral-light.yaml b/themes/pantone-living-coral-light.yaml index 21d480a8..726daf9e 100644 --- a/themes/pantone-living-coral-light.yaml +++ b/themes/pantone-living-coral-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFBFB" fg: "#26110F" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.4 black: 102.4 diff --git a/themes/pantone-marsala-dark.yaml b/themes/pantone-marsala-dark.yaml index b8b47457..0401d75f 100644 --- a/themes/pantone-marsala-dark.yaml +++ b/themes/pantone-marsala-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#180D0D" fg: "#DDCDD2" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 19 + pair: null contrast: fg: 78.2 black: 0 diff --git a/themes/pantone-marsala-light.yaml b/themes/pantone-marsala-light.yaml index 891b0cf4..8a39491d 100644 --- a/themes/pantone-marsala-light.yaml +++ b/themes/pantone-marsala-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F7F4F5" fg: "#211212" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.6 black: 98.6 diff --git a/themes/pantone-mauve-dark.yaml b/themes/pantone-mauve-dark.yaml index 6f584a51..254082a1 100644 --- a/themes/pantone-mauve-dark.yaml +++ b/themes/pantone-mauve-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#140C10" fg: "#DBCDD3" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 347 + pair: null contrast: fg: 78 black: 0 diff --git a/themes/pantone-mauve-light.yaml b/themes/pantone-mauve-light.yaml index 877a72d5..42c580e8 100644 --- a/themes/pantone-mauve-light.yaml +++ b/themes/pantone-mauve-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F7F4F6" fg: "#1C1115" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.9 black: 98.9 diff --git a/themes/pantone-mimosa-dark.yaml b/themes/pantone-mimosa-dark.yaml index 2aafa1a1..fb93b127 100644 --- a/themes/pantone-mimosa-dark.yaml +++ b/themes/pantone-mimosa-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1D170A" fg: "#E4DECE" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 86 + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/pantone-mimosa-light.yaml b/themes/pantone-mimosa-light.yaml index 4a520ad8..79d87a4b 100644 --- a/themes/pantone-mimosa-light.yaml +++ b/themes/pantone-mimosa-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F4" fg: "#241D0C" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.8 black: 98.8 diff --git a/themes/pantone-mint-green-dark.yaml b/themes/pantone-mint-green-dark.yaml index cbeea5b3..c40c216b 100644 --- a/themes/pantone-mint-green-dark.yaml +++ b/themes/pantone-mint-green-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#101917" fg: "#E1E7E6" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 180 + pair: null contrast: fg: 90.4 black: 0 diff --git a/themes/pantone-mint-green-light.yaml b/themes/pantone-mint-green-light.yaml index 54af9722..642bcd6a 100644 --- a/themes/pantone-mint-green-light.yaml +++ b/themes/pantone-mint-green-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F9F9F9" fg: "#141F1D" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 100.2 black: 100.2 diff --git a/themes/pantone-mocha-mousse-dark.yaml b/themes/pantone-mocha-mousse-dark.yaml index 93834726..76ba0a26 100644 --- a/themes/pantone-mocha-mousse-dark.yaml +++ b/themes/pantone-mocha-mousse-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1A1310" fg: "#F2EBE7" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 44 + pair: null contrast: fg: 94.8 black: 0 diff --git a/themes/pantone-mocha-mousse-light.yaml b/themes/pantone-mocha-mousse-light.yaml index 8208633c..096a34da 100644 --- a/themes/pantone-mocha-mousse-light.yaml +++ b/themes/pantone-mocha-mousse-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFCFB" fg: "#19120F" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 103.4 black: 103.4 diff --git a/themes/pantone-navy-dark.yaml b/themes/pantone-navy-dark.yaml index e2d4e020..232f7487 100644 --- a/themes/pantone-navy-dark.yaml +++ b/themes/pantone-navy-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#070B1B" fg: "#CACCD2" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 271 + pair: null contrast: fg: 75.4 black: 0 diff --git a/themes/pantone-navy-light.yaml b/themes/pantone-navy-light.yaml index 9854e141..dda0c4bf 100644 --- a/themes/pantone-navy-light.yaml +++ b/themes/pantone-navy-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F4F4F5" fg: "#060918" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.3 black: 99.3 diff --git a/themes/pantone-neon-blue-dark.yaml b/themes/pantone-neon-blue-dark.yaml index b88cdf28..29be4f1d 100644 --- a/themes/pantone-neon-blue-dark.yaml +++ b/themes/pantone-neon-blue-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#001D24" fg: "#CBDEE5" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 216 + pair: null contrast: fg: 83.1 black: 0 diff --git a/themes/pantone-neon-blue-light.yaml b/themes/pantone-neon-blue-light.yaml index 9bdcccb8..8210d27f 100644 --- a/themes/pantone-neon-blue-light.yaml +++ b/themes/pantone-neon-blue-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F5F7F9" fg: "#002831" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.3 black: 97.3 diff --git a/themes/pantone-neon-green-dark.yaml b/themes/pantone-neon-green-dark.yaml index 38e0062f..75634d85 100644 --- a/themes/pantone-neon-green-dark.yaml +++ b/themes/pantone-neon-green-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#0E1F0F" fg: "#E0EBE1" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 145 + pair: null contrast: fg: 91.4 black: 0 diff --git a/themes/pantone-neon-green-light.yaml b/themes/pantone-neon-green-light.yaml index 24569cfa..5c27c05d 100644 --- a/themes/pantone-neon-green-light.yaml +++ b/themes/pantone-neon-green-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F9FAF9" fg: "#122612" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.7 black: 99.7 diff --git a/themes/pantone-neon-orange-dark.yaml b/themes/pantone-neon-orange-dark.yaml index 9dae1721..7463e276 100644 --- a/themes/pantone-neon-orange-dark.yaml +++ b/themes/pantone-neon-orange-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1F0D0A" fg: "#F8EAE6" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 30 + pair: null contrast: fg: 95.3 black: 0 diff --git a/themes/pantone-neon-orange-light.yaml b/themes/pantone-neon-orange-light.yaml index ebbb1929..82242e64 100644 --- a/themes/pantone-neon-orange-light.yaml +++ b/themes/pantone-neon-orange-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFBFA" fg: "#26100D" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.5 black: 102.5 diff --git a/themes/pantone-neon-pink-dark.yaml b/themes/pantone-neon-pink-dark.yaml index 3f7bce94..5b639fa7 100644 --- a/themes/pantone-neon-pink-dark.yaml +++ b/themes/pantone-neon-pink-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1F0713" fg: "#E4CCD7" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 351 + pair: null contrast: fg: 78.9 black: 0 diff --git a/themes/pantone-neon-pink-light.yaml b/themes/pantone-neon-pink-light.yaml index 976686b7..f93b68df 100644 --- a/themes/pantone-neon-pink-light.yaml +++ b/themes/pantone-neon-pink-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F4F6" fg: "#260918" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.9 black: 98.9 diff --git a/themes/pantone-neon-yellow-dark.yaml b/themes/pantone-neon-yellow-dark.yaml index 83e8e574..9f709e6c 100644 --- a/themes/pantone-neon-yellow-dark.yaml +++ b/themes/pantone-neon-yellow-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#252508" fg: "#E4E0CC" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 109 + pair: null contrast: fg: 84.8 black: 0 diff --git a/themes/pantone-neon-yellow-light.yaml b/themes/pantone-neon-yellow-light.yaml index 8b38181e..6a7a9e92 100644 --- a/themes/pantone-neon-yellow-light.yaml +++ b/themes/pantone-neon-yellow-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F4" fg: "#232308" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.1 black: 98.1 diff --git a/themes/pantone-olive-green-dark.yaml b/themes/pantone-olive-green-dark.yaml index a2cd7609..70acf367 100644 --- a/themes/pantone-olive-green-dark.yaml +++ b/themes/pantone-olive-green-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#161706" fg: "#DDDACB" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 112 + pair: null contrast: fg: 83 black: 0 diff --git a/themes/pantone-olive-green-light.yaml b/themes/pantone-olive-green-light.yaml index 93ee83ae..04494ccc 100644 --- a/themes/pantone-olive-green-light.yaml +++ b/themes/pantone-olive-green-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F4" fg: "#1E1F09" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.9 black: 98.9 diff --git a/themes/pantone-orange-dark.yaml b/themes/pantone-orange-dark.yaml index e0f39f25..e118c1fa 100644 --- a/themes/pantone-orange-dark.yaml +++ b/themes/pantone-orange-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#290D00" fg: "#F8E8E0" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 49 + pair: null contrast: fg: 93.8 black: 0 diff --git a/themes/pantone-orange-light.yaml b/themes/pantone-orange-light.yaml index 40d4dc30..f359d4e7 100644 --- a/themes/pantone-orange-light.yaml +++ b/themes/pantone-orange-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFBFA" fg: "#381200" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.1 black: 101.1 diff --git a/themes/pantone-peach-dark.yaml b/themes/pantone-peach-dark.yaml index e684ed46..ea109407 100644 --- a/themes/pantone-peach-dark.yaml +++ b/themes/pantone-peach-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1D130D" fg: "#F7EEE7" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 52 + pair: null contrast: fg: 96.8 black: 0 diff --git a/themes/pantone-peach-fuzz-dark.yaml b/themes/pantone-peach-fuzz-dark.yaml index dd5413f2..cc992e37 100644 --- a/themes/pantone-peach-fuzz-dark.yaml +++ b/themes/pantone-peach-fuzz-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1F1712" fg: "#F8F0EA" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 54 + pair: null contrast: fg: 97.7 black: 0 diff --git a/themes/pantone-peach-fuzz-light.yaml b/themes/pantone-peach-fuzz-light.yaml index dd803409..a5406dd2 100644 --- a/themes/pantone-peach-fuzz-light.yaml +++ b/themes/pantone-peach-fuzz-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFCFB" fg: "#261D17" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.8 black: 101.8 diff --git a/themes/pantone-peach-light.yaml b/themes/pantone-peach-light.yaml index b970d383..20a44623 100644 --- a/themes/pantone-peach-light.yaml +++ b/themes/pantone-peach-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFCFB" fg: "#251811" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.4 black: 102.4 diff --git a/themes/pantone-peacock-green-dark.yaml b/themes/pantone-peacock-green-dark.yaml index 84093c41..f6d383da 100644 --- a/themes/pantone-peacock-green-dark.yaml +++ b/themes/pantone-peacock-green-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#071211" fg: "#DBE0E0" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 189 + pair: null contrast: fg: 86.8 black: 0 diff --git a/themes/pantone-peacock-green-light.yaml b/themes/pantone-peacock-green-light.yaml index 3b52129b..a6e2ad8d 100644 --- a/themes/pantone-peacock-green-light.yaml +++ b/themes/pantone-peacock-green-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F9F9" fg: "#0A1818" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.1 black: 101.1 diff --git a/themes/pantone-pewter-dark.yaml b/themes/pantone-pewter-dark.yaml index c6b386c2..15c6ee83 100644 --- a/themes/pantone-pewter-dark.yaml +++ b/themes/pantone-pewter-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#121313" fg: "#E3E4E4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 89.6 black: 0 diff --git a/themes/pantone-pewter-light.yaml b/themes/pantone-pewter-light.yaml index a0f6f24b..ec46881d 100644 --- a/themes/pantone-pewter-light.yaml +++ b/themes/pantone-pewter-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F9F9F9" fg: "#171818" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101 black: 101 diff --git a/themes/pantone-plum-dark.yaml b/themes/pantone-plum-dark.yaml index 90d7de15..e375ea5c 100644 --- a/themes/pantone-plum-dark.yaml +++ b/themes/pantone-plum-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#180B14" fg: "#D9CBD1" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 339 + pair: null contrast: fg: 76.8 black: 0 diff --git a/themes/pantone-plum-light.yaml b/themes/pantone-plum-light.yaml index d413d161..2e837592 100644 --- a/themes/pantone-plum-light.yaml +++ b/themes/pantone-plum-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F7F4F5" fg: "#150911" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.5 black: 99.5 diff --git a/themes/pantone-poppy-dark.yaml b/themes/pantone-poppy-dark.yaml index 6e9540db..2ef05299 100644 --- a/themes/pantone-poppy-dark.yaml +++ b/themes/pantone-poppy-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#210908" fg: "#F5E7E3" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 25 + pair: null contrast: fg: 93.5 black: 0 diff --git a/themes/pantone-poppy-light.yaml b/themes/pantone-poppy-light.yaml index 20471edd..5912fb3b 100644 --- a/themes/pantone-poppy-light.yaml +++ b/themes/pantone-poppy-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFBFA" fg: "#1F0808" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 103.2 black: 103.2 diff --git a/themes/pantone-process-blue-dark.yaml b/themes/pantone-process-blue-dark.yaml index 86a58398..9d65eaef 100644 --- a/themes/pantone-process-blue-dark.yaml +++ b/themes/pantone-process-blue-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#001520" fg: "#CBDBE3" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 232 + pair: null contrast: fg: 82.4 black: 0 diff --git a/themes/pantone-process-blue-light.yaml b/themes/pantone-process-blue-light.yaml index c6c8476a..b1cb0557 100644 --- a/themes/pantone-process-blue-light.yaml +++ b/themes/pantone-process-blue-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F5F7F9" fg: "#001D2C" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99 black: 99 diff --git a/themes/pantone-purple-dark.yaml b/themes/pantone-purple-dark.yaml index a1828f6a..b0432a90 100644 --- a/themes/pantone-purple-dark.yaml +++ b/themes/pantone-purple-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#170223" fg: "#D9C8D6" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 311 + pair: null contrast: fg: 75.7 black: 0 diff --git a/themes/pantone-purple-light.yaml b/themes/pantone-purple-light.yaml index 48322efa..de349562 100644 --- a/themes/pantone-purple-light.yaml +++ b/themes/pantone-purple-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F7F4F6" fg: "#14011F" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.5 black: 99.5 diff --git a/themes/pantone-radiant-orchid-dark.yaml b/themes/pantone-radiant-orchid-dark.yaml index 0ff7ade9..c8ae2ad1 100644 --- a/themes/pantone-radiant-orchid-dark.yaml +++ b/themes/pantone-radiant-orchid-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1C101A" fg: "#DFCFD8" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 333 + pair: null contrast: fg: 79.2 black: 0 diff --git a/themes/pantone-radiant-orchid-light.yaml b/themes/pantone-radiant-orchid-light.yaml index bfb5f6ea..1ff23457 100644 --- a/themes/pantone-radiant-orchid-light.yaml +++ b/themes/pantone-radiant-orchid-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F4F6" fg: "#1B0F18" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.2 black: 99.2 diff --git a/themes/pantone-rose-quartz-dark.yaml b/themes/pantone-rose-quartz-dark.yaml index f5a8c6a3..ae47e2f3 100644 --- a/themes/pantone-rose-quartz-dark.yaml +++ b/themes/pantone-rose-quartz-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1E1818" fg: "#E3D6DA" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 82.4 black: 0 diff --git a/themes/pantone-rose-quartz-light.yaml b/themes/pantone-rose-quartz-light.yaml index 45a081b5..4ed92fc5 100644 --- a/themes/pantone-rose-quartz-light.yaml +++ b/themes/pantone-rose-quartz-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F5F6" fg: "#251E1E" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 97.8 black: 97.8 diff --git a/themes/pantone-royal-blue-dark.yaml b/themes/pantone-royal-blue-dark.yaml index b5aa3829..2dba77c8 100644 --- a/themes/pantone-royal-blue-dark.yaml +++ b/themes/pantone-royal-blue-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#000A1A" fg: "#C8CDD6" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 251 + pair: null contrast: fg: 75.8 black: 0 diff --git a/themes/pantone-royal-blue-light.yaml b/themes/pantone-royal-blue-light.yaml index c7b89479..c6ddc9d1 100644 --- a/themes/pantone-royal-blue-light.yaml +++ b/themes/pantone-royal-blue-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F4F5F5" fg: "#000D24" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.4 black: 99.4 diff --git a/themes/pantone-ruby-dark.yaml b/themes/pantone-ruby-dark.yaml index 9bfc3fd3..8ff2cd97 100644 --- a/themes/pantone-ruby-dark.yaml +++ b/themes/pantone-ruby-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1F070D" fg: "#DBCACF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 7 + pair: null contrast: fg: 76.4 black: 0 diff --git a/themes/pantone-ruby-light.yaml b/themes/pantone-ruby-light.yaml index 7b5edecf..228bb1a9 100644 --- a/themes/pantone-ruby-light.yaml +++ b/themes/pantone-ruby-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F7F4F5" fg: "#1B060B" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.4 black: 99.4 diff --git a/themes/pantone-saffron-dark.yaml b/themes/pantone-saffron-dark.yaml index addc702c..4253f1b2 100644 --- a/themes/pantone-saffron-dark.yaml +++ b/themes/pantone-saffron-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1F1409" fg: "#F8EEE5" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 65 + pair: null contrast: fg: 96.8 black: 0 diff --git a/themes/pantone-saffron-light.yaml b/themes/pantone-saffron-light.yaml index 6546bfa2..abd73e1a 100644 --- a/themes/pantone-saffron-light.yaml +++ b/themes/pantone-saffron-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFCFA" fg: "#261A0C" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.1 black: 102.1 diff --git a/themes/pantone-sage-dark.yaml b/themes/pantone-sage-dark.yaml index 697b50a9..445bc298 100644 --- a/themes/pantone-sage-dark.yaml +++ b/themes/pantone-sage-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#141510" fg: "#DFDDD1" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85 black: 0 diff --git a/themes/pantone-sage-light.yaml b/themes/pantone-sage-light.yaml index 1c4c1676..7775ea84 100644 --- a/themes/pantone-sage-light.yaml +++ b/themes/pantone-sage-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F5" fg: "#181A14" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.6 black: 99.6 diff --git a/themes/pantone-salmon-dark.yaml b/themes/pantone-salmon-dark.yaml index 06eba077..4f8f5660 100644 --- a/themes/pantone-salmon-dark.yaml +++ b/themes/pantone-salmon-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1E1311" fg: "#F7EEE9" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 30 + pair: null contrast: fg: 96.9 black: 0 diff --git a/themes/pantone-salmon-light.yaml b/themes/pantone-salmon-light.yaml index 911fd1b8..b3fe7288 100644 --- a/themes/pantone-salmon-light.yaml +++ b/themes/pantone-salmon-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFCFB" fg: "#251815" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.3 black: 102.3 diff --git a/themes/pantone-sand-dark.yaml b/themes/pantone-sand-dark.yaml index 3249e0ee..57f7af4a 100644 --- a/themes/pantone-sand-dark.yaml +++ b/themes/pantone-sand-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#191713" fg: "#E2DED3" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85.7 black: 0 diff --git a/themes/pantone-sand-dollar-dark.yaml b/themes/pantone-sand-dollar-dark.yaml index 5b7eef7c..e7f93fac 100644 --- a/themes/pantone-sand-dollar-dark.yaml +++ b/themes/pantone-sand-dollar-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1B1917" fg: "#F6F1ED" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 97.9 black: 0 diff --git a/themes/pantone-sand-dollar-light.yaml b/themes/pantone-sand-dollar-light.yaml index a597a985..0a681a03 100644 --- a/themes/pantone-sand-dollar-light.yaml +++ b/themes/pantone-sand-dollar-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFCFB" fg: "#211F1D" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.7 black: 101.7 diff --git a/themes/pantone-sand-light.yaml b/themes/pantone-sand-light.yaml index ddce918b..1257bb1d 100644 --- a/themes/pantone-sand-light.yaml +++ b/themes/pantone-sand-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F5" fg: "#201D17" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99 black: 99 diff --git a/themes/pantone-serenity-dark.yaml b/themes/pantone-serenity-dark.yaml index 9a5e6f09..57d3cc49 100644 --- a/themes/pantone-serenity-dark.yaml +++ b/themes/pantone-serenity-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#121419" fg: "#D2D5D9" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 268 + pair: null contrast: fg: 80.2 black: 0 diff --git a/themes/pantone-serenity-light.yaml b/themes/pantone-serenity-light.yaml index e50e60da..02899ad3 100644 --- a/themes/pantone-serenity-light.yaml +++ b/themes/pantone-serenity-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F5F5F6" fg: "#16191F" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.5 black: 98.5 diff --git a/themes/pantone-sienna-dark.yaml b/themes/pantone-sienna-dark.yaml index d5a15178..3c3cbca9 100644 --- a/themes/pantone-sienna-dark.yaml +++ b/themes/pantone-sienna-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#140907" fg: "#EFE7E3" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 32 + pair: null contrast: fg: 93 black: 0 diff --git a/themes/pantone-sienna-light.yaml b/themes/pantone-sienna-light.yaml index da6ce60e..167d0a4c 100644 --- a/themes/pantone-sienna-light.yaml +++ b/themes/pantone-sienna-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FCFBFA" fg: "#1B0D0A" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 103 black: 103 diff --git a/themes/pantone-silver-dark.yaml b/themes/pantone-silver-dark.yaml index 52f55862..75cd79bc 100644 --- a/themes/pantone-silver-dark.yaml +++ b/themes/pantone-silver-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#161717" fg: "#DEDFE0" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 86.2 black: 0 diff --git a/themes/pantone-silver-light.yaml b/themes/pantone-silver-light.yaml index 39e5fe95..93debfd3 100644 --- a/themes/pantone-silver-light.yaml +++ b/themes/pantone-silver-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F8F8" fg: "#151515" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 100.8 black: 100.8 diff --git a/themes/pantone-sky-blue-dark.yaml b/themes/pantone-sky-blue-dark.yaml index 73e93cf5..bd45c9b5 100644 --- a/themes/pantone-sky-blue-dark.yaml +++ b/themes/pantone-sky-blue-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#071923" fg: "#CEDDE4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 235 + pair: null contrast: fg: 83.4 black: 0 diff --git a/themes/pantone-sky-blue-light.yaml b/themes/pantone-sky-blue-light.yaml index f7624425..8fc5da3e 100644 --- a/themes/pantone-sky-blue-light.yaml +++ b/themes/pantone-sky-blue-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F5F7F9" fg: "#071821" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.8 black: 99.8 diff --git a/themes/pantone-slate-blue-dark.yaml b/themes/pantone-slate-blue-dark.yaml index 374d8105..12e92db2 100644 --- a/themes/pantone-slate-blue-dark.yaml +++ b/themes/pantone-slate-blue-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#0C121A" fg: "#CDD1D6" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 256 + pair: null contrast: fg: 77.8 black: 0 diff --git a/themes/pantone-slate-blue-light.yaml b/themes/pantone-slate-blue-light.yaml index e421b795..12acab5b 100644 --- a/themes/pantone-slate-blue-light.yaml +++ b/themes/pantone-slate-blue-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F4F5F5" fg: "#101824" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.5 black: 98.5 diff --git a/themes/pantone-steel-blue-dark.yaml b/themes/pantone-steel-blue-dark.yaml index f3501c59..ac606dab 100644 --- a/themes/pantone-steel-blue-dark.yaml +++ b/themes/pantone-steel-blue-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#0F1417" fg: "#D1DADF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 82.6 black: 0 diff --git a/themes/pantone-steel-blue-light.yaml b/themes/pantone-steel-blue-light.yaml index 8fcb109d..fc77a59e 100644 --- a/themes/pantone-steel-blue-light.yaml +++ b/themes/pantone-steel-blue-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F5F7F8" fg: "#141B1F" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.3 black: 99.3 diff --git a/themes/pantone-tan-dark.yaml b/themes/pantone-tan-dark.yaml index 9702f1e2..57bf57e1 100644 --- a/themes/pantone-tan-dark.yaml +++ b/themes/pantone-tan-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#181612" fg: "#E1DDD3" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 85.2 black: 0 diff --git a/themes/pantone-tan-light.yaml b/themes/pantone-tan-light.yaml index f175b4be..f48d2d84 100644 --- a/themes/pantone-tan-light.yaml +++ b/themes/pantone-tan-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F5" fg: "#1E1C17" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.2 black: 99.2 diff --git a/themes/pantone-tangerine-tango-dark.yaml b/themes/pantone-tangerine-tango-dark.yaml index f9cdba48..a7bc715d 100644 --- a/themes/pantone-tangerine-tango-dark.yaml +++ b/themes/pantone-tangerine-tango-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#230A08" fg: "#F6E7E3" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 27 + pair: null contrast: fg: 93.5 black: 0 diff --git a/themes/pantone-tangerine-tango-light.yaml b/themes/pantone-tangerine-tango-light.yaml index 2b2f11bf..0e89e938 100644 --- a/themes/pantone-tangerine-tango-light.yaml +++ b/themes/pantone-tangerine-tango-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFBFA" fg: "#210A08" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 103 black: 103 diff --git a/themes/pantone-teal-dark.yaml b/themes/pantone-teal-dark.yaml index 62b4031b..8db607a9 100644 --- a/themes/pantone-teal-dark.yaml +++ b/themes/pantone-teal-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#001C20" fg: "#CBD9DE" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 208 + pair: null contrast: fg: 80.7 black: 0 diff --git a/themes/pantone-teal-light.yaml b/themes/pantone-teal-light.yaml index fa9d73a0..a591f874 100644 --- a/themes/pantone-teal-light.yaml +++ b/themes/pantone-teal-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F5F7F8" fg: "#00181C" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.8 black: 99.8 diff --git a/themes/pantone-tigerlily-dark.yaml b/themes/pantone-tigerlily-dark.yaml index f0dadf49..e81a7fbe 100644 --- a/themes/pantone-tigerlily-dark.yaml +++ b/themes/pantone-tigerlily-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#240E0A" fg: "#F6E9E4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 32 + pair: null contrast: fg: 94.3 black: 0 diff --git a/themes/pantone-tigerlily-light.yaml b/themes/pantone-tigerlily-light.yaml index 5e653dbd..7a2fa486 100644 --- a/themes/pantone-tigerlily-light.yaml +++ b/themes/pantone-tigerlily-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFBFA" fg: "#220D09" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.9 black: 102.9 diff --git a/themes/pantone-true-red-dark.yaml b/themes/pantone-true-red-dark.yaml index 785a0d1c..951d6a6e 100644 --- a/themes/pantone-true-red-dark.yaml +++ b/themes/pantone-true-red-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1F0408" fg: "#DFCACF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 13 + pair: null contrast: fg: 77 black: 0 diff --git a/themes/pantone-true-red-light.yaml b/themes/pantone-true-red-light.yaml index 9874dc0f..3cd4c23c 100644 --- a/themes/pantone-true-red-light.yaml +++ b/themes/pantone-true-red-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F4F5" fg: "#2A050B" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.8 black: 98.8 diff --git a/themes/pantone-turquoise-classic-dark.yaml b/themes/pantone-turquoise-classic-dark.yaml index c0961a29..7893cf06 100644 --- a/themes/pantone-turquoise-classic-dark.yaml +++ b/themes/pantone-turquoise-classic-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#001A18" fg: "#D8E4E3" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 188 + pair: null contrast: fg: 87.7 black: 0 diff --git a/themes/pantone-turquoise-classic-light.yaml b/themes/pantone-turquoise-classic-light.yaml index 522a36a4..f001e87d 100644 --- a/themes/pantone-turquoise-classic-light.yaml +++ b/themes/pantone-turquoise-classic-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F9F9" fg: "#002422" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.5 black: 99.5 diff --git a/themes/pantone-turquoise-dark.yaml b/themes/pantone-turquoise-dark.yaml index 9771f5fe..f9201882 100644 --- a/themes/pantone-turquoise-dark.yaml +++ b/themes/pantone-turquoise-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#0B1D1B" fg: "#DDE6E4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 186 + pair: null contrast: fg: 89 black: 0 diff --git a/themes/pantone-turquoise-light.yaml b/themes/pantone-turquoise-light.yaml index a7699775..204c7ad6 100644 --- a/themes/pantone-turquoise-light.yaml +++ b/themes/pantone-turquoise-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F9F9" fg: "#0F2825" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.7 black: 98.7 diff --git a/themes/pantone-ultimate-gray-dark.yaml b/themes/pantone-ultimate-gray-dark.yaml index 8e6ea69c..195f9b6d 100644 --- a/themes/pantone-ultimate-gray-dark.yaml +++ b/themes/pantone-ultimate-gray-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#181818" fg: "#E1E1E2" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 87.4 black: 0 diff --git a/themes/pantone-ultimate-gray-light.yaml b/themes/pantone-ultimate-gray-light.yaml index c09397c3..5489d82a 100644 --- a/themes/pantone-ultimate-gray-light.yaml +++ b/themes/pantone-ultimate-gray-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F9F9F9" fg: "#161617" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.2 black: 101.2 diff --git a/themes/pantone-ultra-violet-dark.yaml b/themes/pantone-ultra-violet-dark.yaml index 6b247c2f..b5ed4d43 100644 --- a/themes/pantone-ultra-violet-dark.yaml +++ b/themes/pantone-ultra-violet-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#0F0C16" fg: "#CFCED4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 298 + pair: null contrast: fg: 77 black: 0 diff --git a/themes/pantone-ultra-violet-light.yaml b/themes/pantone-ultra-violet-light.yaml index 41ce6f4b..ac6699f3 100644 --- a/themes/pantone-ultra-violet-light.yaml +++ b/themes/pantone-ultra-violet-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F5F5F5" fg: "#15101F" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.2 black: 99.2 diff --git a/themes/pantone-very-peri-dark.yaml b/themes/pantone-very-peri-dark.yaml index cb541e7f..bc040286 100644 --- a/themes/pantone-very-peri-dark.yaml +++ b/themes/pantone-very-peri-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#10101B" fg: "#CFD0D6" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 284 + pair: null contrast: fg: 77.7 black: 0 diff --git a/themes/pantone-very-peri-light.yaml b/themes/pantone-very-peri-light.yaml index a570778a..1c53b31e 100644 --- a/themes/pantone-very-peri-light.yaml +++ b/themes/pantone-very-peri-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F5F5F5" fg: "#0F0F1A" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.5 black: 99.5 diff --git a/themes/pantone-violet-dark.yaml b/themes/pantone-violet-dark.yaml index 169e4ea7..7fddd48e 100644 --- a/themes/pantone-violet-dark.yaml +++ b/themes/pantone-violet-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#190D1A" fg: "#DDCDD8" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 324 + pair: null contrast: fg: 78.3 black: 0 diff --git a/themes/pantone-violet-light.yaml b/themes/pantone-violet-light.yaml index d4a205da..8f82c078 100644 --- a/themes/pantone-violet-light.yaml +++ b/themes/pantone-violet-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F7F4F6" fg: "#231124" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.4 black: 98.4 diff --git a/themes/pantone-viva-magenta-dark.yaml b/themes/pantone-viva-magenta-dark.yaml index c3e45951..96c9bef3 100644 --- a/themes/pantone-viva-magenta-dark.yaml +++ b/themes/pantone-viva-magenta-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1E060C" fg: "#DFCAD1" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 6 + pair: null contrast: fg: 77.1 black: 0 diff --git a/themes/pantone-viva-magenta-light.yaml b/themes/pantone-viva-magenta-light.yaml index fb47b435..368adc63 100644 --- a/themes/pantone-viva-magenta-light.yaml +++ b/themes/pantone-viva-magenta-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F4F5" fg: "#290810" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.8 black: 98.8 diff --git a/themes/pantone-warm-gray-dark.yaml b/themes/pantone-warm-gray-dark.yaml index 9bc17bf6..d53ab2d3 100644 --- a/themes/pantone-warm-gray-dark.yaml +++ b/themes/pantone-warm-gray-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1A1918" fg: "#F4F2F0" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 98.3 black: 0 diff --git a/themes/pantone-warm-gray-light.yaml b/themes/pantone-warm-gray-light.yaml index 40bf7448..32dbb591 100644 --- a/themes/pantone-warm-gray-light.yaml +++ b/themes/pantone-warm-gray-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFCFC" fg: "#20201E" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.6 black: 101.6 diff --git a/themes/pantone-warm-red-dark.yaml b/themes/pantone-warm-red-dark.yaml index b523e85f..1a988a7a 100644 --- a/themes/pantone-warm-red-dark.yaml +++ b/themes/pantone-warm-red-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#1E0807" fg: "#F8E7E4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 25 + pair: null contrast: fg: 94.1 black: 0 diff --git a/themes/pantone-warm-red-light.yaml b/themes/pantone-warm-red-light.yaml index add42789..c0d890b8 100644 --- a/themes/pantone-warm-red-light.yaml +++ b/themes/pantone-warm-red-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FDFBFA" fg: "#250A09" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 102.8 black: 102.8 diff --git a/themes/pantone-wheat-dark.yaml b/themes/pantone-wheat-dark.yaml index 2554a339..40d92866 100644 --- a/themes/pantone-wheat-dark.yaml +++ b/themes/pantone-wheat-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#18150F" fg: "#ECE6DC" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 85 + pair: null contrast: fg: 91.2 black: 0 diff --git a/themes/pantone-wheat-light.yaml b/themes/pantone-wheat-light.yaml index 36b21449..20fe8c0d 100644 --- a/themes/pantone-wheat-light.yaml +++ b/themes/pantone-wheat-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#FBFAF8" fg: "#1E1A13" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 101.2 black: 101.2 diff --git a/themes/pantone-wine-dark.yaml b/themes/pantone-wine-dark.yaml index 772f037f..e3d561f3 100644 --- a/themes/pantone-wine-dark.yaml +++ b/themes/pantone-wine-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#16080E" fg: "#DCCBD2" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 353 + pair: null contrast: fg: 77.4 black: 0 diff --git a/themes/pantone-wine-light.yaml b/themes/pantone-wine-light.yaml index 27c1cb84..d85d40c8 100644 --- a/themes/pantone-wine-light.yaml +++ b/themes/pantone-wine-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F7F4F5" fg: "#1F0B14" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 99.1 black: 99.1 diff --git a/themes/pantone-yellow-dark.yaml b/themes/pantone-yellow-dark.yaml index aed8e63f..0423599f 100644 --- a/themes/pantone-yellow-dark.yaml +++ b/themes/pantone-yellow-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#292007" fg: "#E5DECB" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 89 + pair: null contrast: fg: 84.5 black: 0 diff --git a/themes/pantone-yellow-green-dark.yaml b/themes/pantone-yellow-green-dark.yaml index ffe85c0a..30fa63df 100644 --- a/themes/pantone-yellow-green-dark.yaml +++ b/themes/pantone-yellow-green-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#202300" fg: "#E1DFC8" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 114 + pair: null contrast: fg: 84.3 black: 0 diff --git a/themes/pantone-yellow-green-light.yaml b/themes/pantone-yellow-green-light.yaml index d894be87..7984722e 100644 --- a/themes/pantone-yellow-green-light.yaml +++ b/themes/pantone-yellow-green-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F4" fg: "#2C3000" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 95.4 black: 95.4 diff --git a/themes/pantone-yellow-light.yaml b/themes/pantone-yellow-light.yaml index 27ba011d..11695423 100644 --- a/themes/pantone-yellow-light.yaml +++ b/themes/pantone-yellow-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AndlzEngineering.pantone-theme" version: "0.1.0" installs: 11 + rating: 0 + ratings: 0 author: "Andlz Engineering" repo: "https://github.com/and-lz/pantone-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=AndlzEngineering.pantone-theme" + formats: null colors: bg: "#F8F7F4" fg: "#261E07" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.6 black: 98.6 diff --git a/themes/papaya.yaml b/themes/papaya.yaml deleted file mode 100644 index 31a9f97a..00000000 --- a/themes/papaya.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Papaya" -source: - marketplace_id: "fethalen.papaya" - version: "0.1.2" - installs: 4328 - rating: 5 - ratings: 1 - author: "fethalen" - repo: "git://github.com/fethalen/papaya" - url: "https://marketplace.visualstudio.com/items?itemName=fethalen.papaya" -colors: - bg: "#1F1E24" - fg: "#B6D3E3" - black: "#2A2732" - red: "#C35066" - green: "#608867" - yellow: "#CDA55E" - blue: "#366DB8" - magenta: "#8F64CB" - cyan: "#5A7491" - white: "#D8D8D8" - brightBlack: "#686868" - brightRed: "#D76979" - brightGreen: "#75BC77" - brightYellow: "#F0C06B" - brightBlue: "#3688F7" - brightMagenta: "#CA61B2" - brightCyan: "#82B9D8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: 293 - pair: null - contrast: - fg: 75.3 - black: 0 - red: 29.1 - green: 32.2 - yellow: 54.9 - blue: 24.3 - magenta: 30 - cyan: 26.2 - white: 81 - brightBlack: 22 - brightRed: 38.8 - brightGreen: 55.4 - brightYellow: 71.1 - brightBlue: 37.8 - brightMagenta: 36.8 - brightCyan: 58.7 - brightWhite: 105.9 diff --git a/themes/papercolordark.yaml b/themes/papercolordark.yaml index 6d4c65f8..e7ff6257 100644 --- a/themes/papercolordark.yaml +++ b/themes/papercolordark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "HarisKhan-777.papercolor-dark-theme" version: "1.0.0" installs: 76 + rating: 0 + ratings: 0 author: "Haris Khan" repo: "https://github.com/RealHaris/paper-color-dark-vscode-cursor-theme" url: "https://marketplace.visualstudio.com/items?itemName=HarisKhan-777.papercolor-dark-theme" + formats: null colors: bg: "#1C1C1C" fg: "#D0D0D0" diff --git a/themes/para-so-dark.yaml b/themes/para-so-dark.yaml deleted file mode 100644 index 3f3d679d..00000000 --- a/themes/para-so-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Paraíso (dark)" -source: - marketplace_id: "treffynnon.paraiso-dark-vscode-theme" - version: "1.0.2" - installs: 220 - rating: 0 - ratings: 0 - author: "treffynnon" - repo: "https://github.com/treffynnon/paraiso-dark-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=treffynnon.paraiso-dark-vscode-theme" -colors: - bg: "#2F1E2E" - fg: "#A39E9B" - black: "#2F1E2E" - red: "#EF6155" - green: "#48B685" - yellow: "#FEC418" - blue: "#06B6EF" - magenta: "#815BA4" - cyan: "#5BC4BF" - white: "#A39E9B" - brightBlack: "#776E71" - brightRed: "#EF6155" - brightGreen: "#48B685" - brightYellow: "#FEC418" - brightBlue: "#06B6EF" - brightMagenta: "#815BA4" - brightCyan: "#5BC4BF" - brightWhite: "#E7E9DB" -meta: - mode: "dark" - accent: "orange" - hue: 329 - pair: null - contrast: - fg: 47.5 - black: 0 - red: 40.3 - green: 49.9 - yellow: 73.4 - blue: 53.7 - magenta: 22.8 - cyan: 59.1 - white: 47.5 - brightBlack: 24.8 - brightRed: 40.3 - brightGreen: 49.9 - brightYellow: 73.4 - brightBlue: 53.7 - brightMagenta: 22.8 - brightCyan: 59.1 - brightWhite: 89.9 diff --git a/themes/paradise.yaml b/themes/paradise.yaml index 7a8e57ff..3fe240f4 100644 --- a/themes/paradise.yaml +++ b/themes/paradise.yaml @@ -8,6 +8,7 @@ source: author: "Manas" repo: "https://github.com/paradise-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=Manas.paradise-vscode" + formats: null colors: bg: "#151515" fg: "#E8E3E3" diff --git a/themes/parakeet-theme.yaml b/themes/parakeet-theme.yaml index 70c02a2f..95c1e763 100644 --- a/themes/parakeet-theme.yaml +++ b/themes/parakeet-theme.yaml @@ -8,6 +8,7 @@ source: author: "NyctibiusVII" repo: "https://github.com/Descomplica-ADS/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.descomplica-theme" + formats: null colors: bg: "#000000" fg: "#2AC7E3" diff --git a/themes/parchment-candlelight-color-theme.yaml b/themes/parchment-candlelight-color-theme.yaml index 5fe8e92c..59768709 100644 --- a/themes/parchment-candlelight-color-theme.yaml +++ b/themes/parchment-candlelight-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Jonas Hvid" repo: "https://github.com/c2d7fa/vscode-parchment-light" url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" + formats: null colors: bg: "#1F160D" fg: "#ECCFBB" diff --git a/themes/parchment-codex-color-theme.yaml b/themes/parchment-codex-color-theme.yaml index 3ce59d22..54b0b0ce 100644 --- a/themes/parchment-codex-color-theme.yaml +++ b/themes/parchment-codex-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Jonas Hvid" repo: "https://github.com/c2d7fa/vscode-parchment-light" url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" + formats: null colors: bg: "#FBF9F8" fg: "#372F28" diff --git a/themes/parchment-digitized-color-theme.yaml b/themes/parchment-digitized-color-theme.yaml index 9029fd46..84fbd2d7 100644 --- a/themes/parchment-digitized-color-theme.yaml +++ b/themes/parchment-digitized-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Jonas Hvid" repo: "https://github.com/c2d7fa/vscode-parchment-light" url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" + formats: null colors: bg: "#F9F9F9" fg: "#303030" diff --git a/themes/parchment-starlight-color-theme.yaml b/themes/parchment-starlight-color-theme.yaml deleted file mode 100644 index df365153..00000000 --- a/themes/parchment-starlight-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "parchment-starlight-color-theme" -source: - marketplace_id: "johv.parchment-light" - version: "1.10.0" - installs: 3883 - rating: 5 - ratings: 2 - author: "Jonas Hvid" - repo: "https://github.com/c2d7fa/vscode-parchment-light" - url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" -colors: - bg: "#181818" - fg: "#D4D4D4" - black: "#474747" - red: "#DB868A" - green: "#89A768" - yellow: "#B69A69" - blue: "#7E9FD4" - magenta: "#B290D4" - cyan: "#6EA7AC" - white: "#C6C6C6" - brightBlack: "#303030" - brightRed: "#D55D63" - brightGreen: "#728C56" - brightYellow: "#988057" - brightBlue: "#6285BB" - brightMagenta: "#9E70C7" - brightCyan: "#5C8C90" - brightWhite: "#D4D4D4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 79.4 - black: 9.8 - red: 48.7 - green: 48.5 - yellow: 48.6 - blue: 48.5 - magenta: 48.7 - cyan: 48.5 - white: 71 - brightBlack: 0 - brightRed: 36 - brightGreen: 35.5 - brightYellow: 35.3 - brightBlue: 35.5 - brightMagenta: 35.6 - brightCyan: 35.6 - brightWhite: 79.4 diff --git a/themes/parchment.yaml b/themes/parchment.yaml index b8561caf..9497c076 100644 --- a/themes/parchment.yaml +++ b/themes/parchment.yaml @@ -8,6 +8,7 @@ source: author: "lumiknit" repo: "https://github.com/lumiknit/vscode-parchment-theme/" url: "https://marketplace.visualstudio.com/items?itemName=lumiknit.parchment" + formats: null colors: bg: "#F1EDE6" fg: "#000000" diff --git a/themes/pare-colors-theme.yaml b/themes/pare-colors-theme.yaml index 5a1324ee..6e2cbbed 100644 --- a/themes/pare-colors-theme.yaml +++ b/themes/pare-colors-theme.yaml @@ -8,6 +8,7 @@ source: author: "Jere Liimatainen" repo: "https://github.com/jliima/vscode-pare-colors-theme" url: "https://marketplace.visualstudio.com/items?itemName=jliima.pare-colors-theme" + formats: null colors: bg: "#131C24" fg: "#CFDCEB" diff --git a/themes/parkside-light.yaml b/themes/parkside-light.yaml index 74ce437b..10da5bd8 100644 --- a/themes/parkside-light.yaml +++ b/themes/parkside-light.yaml @@ -2,12 +2,13 @@ name: "Parkside Light" source: marketplace_id: "marcuskaz.parkside-light-theme" version: "1.3.4" - installs: 22 + installs: 23 rating: 5 ratings: 1 author: "Marcus Kazmierczak" repo: "https://github.com/mkaz/parkside-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=marcuskaz.parkside-light-theme" + formats: null colors: bg: "#FFF7F4" fg: "#2D2828" diff --git a/themes/paro-paro-solarized-dark-theme.yaml b/themes/paro-paro-solarized-dark-theme.yaml deleted file mode 100644 index 8709c1ba..00000000 --- a/themes/paro-paro-solarized-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Paro-Paro-Solarized-Dark-Theme" -source: - marketplace_id: "Paro-Paro.paro-paro-solarized-dark" - version: "1.2.2" - installs: 98 - rating: 0 - ratings: 0 - author: "Paro-Paro" - repo: "https://github.com/paro-paro/paro-paro-solarized-dark" - url: "https://marketplace.visualstudio.com/items?itemName=Paro-Paro.paro-paro-solarized-dark" -colors: - bg: "#212121" - fg: "#EEFFFF" - black: "#000000" - red: "#FF0000" - green: "#1EC81E" - yellow: "#F0CC09" - blue: "#1460D2" - magenta: "#C792EA" - cyan: "#00BBBB" - white: "#EEFFFF" - brightBlack: "#002B36" - brightRed: "#CB4B16" - brightGreen: "#586E75" - brightYellow: "#657B83" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#93A1A1" - brightWhite: "#FDF6E3" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 103.3 - black: 0 - red: 35.3 - green: 56.3 - yellow: 74.9 - blue: 21.3 - magenta: 52.5 - cyan: 53.6 - white: 103.3 - brightBlack: 0 - brightRed: 28.4 - brightGreen: 22.7 - brightYellow: 28.5 - brightBlue: 40.7 - brightMagenta: 29.2 - brightCyan: 47.6 - brightWhite: 99.8 diff --git a/themes/pastel-contrast.yaml b/themes/pastel-contrast.yaml deleted file mode 100644 index d6687be3..00000000 --- a/themes/pastel-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "pastel-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0F0F0F" - fg: "#EEEEEE" - black: "#1C1C1C" - red: "#BA0E2E" - green: "#9474A9" - yellow: "#04C4A5" - blue: "#C56C6C" - magenta: "#C5906C" - cyan: "#E2E060" - white: "#FBFBFB" - brightBlack: "#424242" - brightRed: "#F03E5F" - brightGreen: "#C5B3D0" - brightYellow: "#33FBDB" - brightBlue: "#E2B5B5" - brightMagenta: "#E2C7B5" - brightCyan: "#F2F1B6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.4 - black: 0 - red: 21.1 - green: 34.6 - yellow: 58.7 - blue: 37.4 - magenta: 48.1 - cyan: 84.1 - white: 104.9 - brightBlack: 8.8 - brightRed: 37.4 - brightGreen: 64.4 - brightYellow: 88.3 - brightBlue: 68.1 - brightMagenta: 75.3 - brightCyan: 96.1 - brightWhite: 107.5 diff --git a/themes/pastel-inu.yaml b/themes/pastel-inu.yaml deleted file mode 100644 index 1af34c81..00000000 --- a/themes/pastel-inu.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "pastel inu" -source: - marketplace_id: "d-end.pastel-inu" - version: "0.0.6" - installs: 1571 - rating: 5 - ratings: 1 - author: "d end" - repo: "https://github.com/itsdend/pastel_inu" - url: "https://marketplace.visualstudio.com/items?itemName=d-end.pastel-inu" -colors: - bg: "#24273A" - fg: "#EB87B6" - black: "#8A3868" - red: "#FC50B4" - green: "#4FC8B7" - yellow: "#F9E2AF" - blue: "#7AC3FF" - magenta: "#D179EE" - cyan: "#F2D5CF" - white: "#699DAD" - brightBlack: "#8A3868" - brightRed: "#FC50B4" - brightGreen: "#4FC8B7" - brightYellow: "#F9E2AF" - brightBlue: "#7AC3FF" - brightMagenta: "#D179EE" - brightCyan: "#F2D5CF" - brightWhite: "#699DAD" -meta: - mode: "dark" - accent: "red" - hue: 277 - pair: null - contrast: - fg: 51.1 - black: 13.4 - red: 42.4 - green: 59.3 - yellow: 87 - blue: 63.1 - magenta: 45.8 - cyan: 81.4 - white: 41.8 - brightBlack: 13.4 - brightRed: 42.4 - brightGreen: 59.3 - brightYellow: 87 - brightBlue: 63.1 - brightMagenta: 45.8 - brightCyan: 81.4 - brightWhite: 41.8 diff --git a/themes/pastel-light.yaml b/themes/pastel-light.yaml deleted file mode 100644 index c9142547..00000000 --- a/themes/pastel-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "pastel-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#222222" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#9474A9" - yellow: "#04C4A5" - blue: "#C56C6C" - magenta: "#C5906C" - cyan: "#E2E060" - white: "#2F2F2F" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#C5B3D0" - brightYellow: "#33FBDB" - brightBlue: "#E2B5B5" - brightMagenta: "#E2C7B5" - brightCyan: "#F2F1B6" - brightWhite: "#555555" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.9 - black: 0 - red: 80.3 - green: 66.7 - yellow: 43.1 - blue: 63.9 - magenta: 53.4 - cyan: 19 - white: 99.8 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 37.7 - brightYellow: 15.1 - brightBlue: 34.1 - brightMagenta: 27.3 - brightCyan: 7.8 - brightWhite: 85.9 diff --git a/themes/pastel-sorbet.yaml b/themes/pastel-sorbet.yaml deleted file mode 100644 index 1d132a53..00000000 --- a/themes/pastel-sorbet.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pastel-Sorbet" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#091F1B" - fg: "#EAFFD1" - black: "#091F1B" - red: "#7C1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#95DFD2" - magenta: "#95DFD2" - cyan: "#29C3A0" - white: "#EAFFD1" - brightBlack: "#091F1B" - brightRed: "#7C1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#95DFD2" - brightMagenta: "#95DFD2" - brightCyan: "#29C3A0" - brightWhite: "#EAFFD1" -meta: - mode: "dark" - accent: "yellow" - hue: 180 - pair: null - contrast: - fg: 101.5 - black: 0 - red: 8.3 - green: 57.1 - yellow: 51.1 - blue: 77.3 - magenta: 77.3 - cyan: 57.1 - white: 101.5 - brightBlack: 0 - brightRed: 8.3 - brightGreen: 57.1 - brightYellow: 51.1 - brightBlue: 77.3 - brightMagenta: 77.3 - brightCyan: 57.1 - brightWhite: 101.5 diff --git a/themes/pastel.yaml b/themes/pastel.yaml index f8dd6d9a..f00a19c3 100644 --- a/themes/pastel.yaml +++ b/themes/pastel.yaml @@ -1,52 +1,53 @@ name: "Pastel" source: - marketplace_id: "Tsun.Pastelization" - version: "0.0.3" - installs: 407 + marketplace_id: "MeiNanziiii.mei-pastel" + version: "0.1.0" + installs: 6811 rating: 0 ratings: 0 - author: "Tsun" - repo: "https://github.com/HEKYPTO/Pastelization" - url: "https://marketplace.visualstudio.com/items?itemName=Tsun.Pastelization" + author: "MeiNanziiii" + repo: "https://github.com/oplotDev/pastel" + url: "https://marketplace.visualstudio.com/items?itemName=MeiNanziiii.mei-pastel" + formats: null colors: - bg: "#FFFFFF" - fg: "#665D61" - black: "#868686" - red: "#FF726A" - green: "#98D198" - yellow: "#FFFB54" - blue: "#708EB4" - magenta: "#C486B0" - cyan: "#79D2E6" - white: "#F4F5F1" - brightBlack: "#ABABAB" - brightRed: "#FF0D00" - brightGreen: "#13C913" - brightYellow: "#FFFDA3" - brightBlue: "#B4C8EA" - brightMagenta: "#EC53BB" - brightCyan: "#0DDBDB" - brightWhite: "#FFFFFF" + bg: "#1E1E1E" + fg: "#909090" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: - mode: "light" - accent: "orange" + mode: "dark" + accent: "pink" hue: null pair: null contrast: - fg: 81.6 - black: 64 - red: 51.2 - green: 32.3 - yellow: 0 - blue: 61.2 - magenta: 54.4 - cyan: 31 - white: 0 - brightBlack: 45.3 - brightRed: 64.1 - brightGreen: 43.2 - brightYellow: 0 - brightBlue: 30.2 - brightMagenta: 58.5 - brightCyan: 30.5 - brightWhite: 0 + fg: 40.8 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/pastelefull.yaml b/themes/pastelefull.yaml index 86fcbb92..6e9e1b1d 100644 --- a/themes/pastelefull.yaml +++ b/themes/pastelefull.yaml @@ -8,6 +8,7 @@ source: author: "Harley Torrisi" repo: "https://github.com/Harley-Torrisi/Paselefull" url: "https://marketplace.visualstudio.com/items?itemName=HarleyTorrisi.pastelefull" + formats: null colors: bg: "#22272E" fg: "#D4D4D4" diff --git a/themes/pastelfairy.yaml b/themes/pastelfairy.yaml index b1e1f349..c3a6e662 100644 --- a/themes/pastelfairy.yaml +++ b/themes/pastelfairy.yaml @@ -8,6 +8,7 @@ source: author: "tomixy" repo: "https://github.com/tetracalibers/PastelFairy" url: "https://marketplace.visualstudio.com/items?itemName=tetracalibers.pastelfairy" + formats: null colors: bg: "#FFFFFF" fg: "#B2BEC3" diff --git a/themes/pastellize-dark-muted.yaml b/themes/pastellize-dark-muted.yaml index aacd0f39..650a9a92 100644 --- a/themes/pastellize-dark-muted.yaml +++ b/themes/pastellize-dark-muted.yaml @@ -8,6 +8,7 @@ source: author: "vulfpeck" repo: "https://github.com/Vulfpeck/pastellize" url: "https://marketplace.visualstudio.com/items?itemName=vulfpeck.pastellize" + formats: null colors: bg: "#1F1628" fg: "#FFFFFF" diff --git a/themes/patina-colors.yaml b/themes/patina-colors.yaml index b158c0c3..452a9fd1 100644 --- a/themes/patina-colors.yaml +++ b/themes/patina-colors.yaml @@ -8,6 +8,7 @@ source: author: "SantiagoBobrik" repo: "https://github.com/SantiagoBobrik/patina-colors" url: "https://marketplace.visualstudio.com/items?itemName=SantiagoBobrik.patina-colors" + formats: null colors: bg: "#121211" fg: "#D8D8C6" diff --git a/themes/patina-dark-soft.yaml b/themes/patina-dark-soft.yaml index db88c9cc..e112b121 100644 --- a/themes/patina-dark-soft.yaml +++ b/themes/patina-dark-soft.yaml @@ -3,9 +3,17 @@ source: marketplace_id: "LuisCMarkmann.patina-theme" version: "0.9.0" installs: 43 + rating: 0 + ratings: 0 author: "Luis C. Markmann" repo: "https://github.com/lmarkmann/patina-theme" url: "https://marketplace.visualstudio.com/items?itemName=LuisCMarkmann.patina-theme" + formats: + ghostty: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/ghostty/patina-dark" + alacritty: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/alacritty/patina-dark.toml" + kitty: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/kitty/patina-dark.conf" + android-studio: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/intellij/Patina_Dark.icls" + zed: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/zed/patina-dark.json" colors: bg: "#1A1A1A" fg: "#C8C4B8" @@ -29,6 +37,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 69.6 black: 0 diff --git a/themes/patina-dark.yaml b/themes/patina-dark.yaml index 4fc28c33..5cd65560 100644 --- a/themes/patina-dark.yaml +++ b/themes/patina-dark.yaml @@ -3,9 +3,17 @@ source: marketplace_id: "LuisCMarkmann.patina-theme" version: "0.9.0" installs: 43 + rating: 0 + ratings: 0 author: "Luis C. Markmann" repo: "https://github.com/lmarkmann/patina-theme" url: "https://marketplace.visualstudio.com/items?itemName=LuisCMarkmann.patina-theme" + formats: + ghostty: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/ghostty/patina-dark" + alacritty: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/alacritty/patina-dark.toml" + kitty: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/kitty/patina-dark.conf" + android-studio: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/intellij/Patina_Dark.icls" + zed: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/zed/patina-dark.json" colors: bg: "#121212" fg: "#DBD7CA" diff --git a/themes/patina-light.yaml b/themes/patina-light.yaml index 53bdbf51..1fb3af2f 100644 --- a/themes/patina-light.yaml +++ b/themes/patina-light.yaml @@ -3,9 +3,17 @@ source: marketplace_id: "LuisCMarkmann.patina-theme" version: "0.9.0" installs: 43 + rating: 0 + ratings: 0 author: "Luis C. Markmann" repo: "https://github.com/lmarkmann/patina-theme" url: "https://marketplace.visualstudio.com/items?itemName=LuisCMarkmann.patina-theme" + formats: + ghostty: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/ghostty/patina-dark" + alacritty: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/alacritty/patina-dark.toml" + kitty: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/kitty/patina-dark.conf" + android-studio: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/intellij/Patina_Dark.icls" + zed: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/zed/patina-dark.json" colors: bg: "#DDD7C4" fg: "#393A34" diff --git a/themes/patina-stellar.yaml b/themes/patina-stellar.yaml index 8818df9f..69426053 100644 --- a/themes/patina-stellar.yaml +++ b/themes/patina-stellar.yaml @@ -3,9 +3,17 @@ source: marketplace_id: "LuisCMarkmann.patina-theme" version: "0.9.0" installs: 43 + rating: 0 + ratings: 0 author: "Luis C. Markmann" repo: "https://github.com/lmarkmann/patina-theme" url: "https://marketplace.visualstudio.com/items?itemName=LuisCMarkmann.patina-theme" + formats: + ghostty: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/ghostty/patina-dark" + alacritty: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/alacritty/patina-dark.toml" + kitty: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/kitty/patina-dark.conf" + android-studio: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/intellij/Patina_Dark.icls" + zed: "https://raw.githubusercontent.com/lmarkmann/patina-theme/main/zed/patina-dark.json" colors: bg: "#F5F2ED" fg: "#393A34" @@ -29,6 +37,7 @@ meta: mode: "light" accent: "green" hue: null + pair: null contrast: fg: 88.9 black: 88.9 diff --git a/themes/patr-theme.yaml b/themes/patr-theme.yaml index 1ed0b6ab..3f28ad1e 100644 --- a/themes/patr-theme.yaml +++ b/themes/patr-theme.yaml @@ -8,6 +8,7 @@ source: author: "Patr Cloud" repo: null url: "https://marketplace.visualstudio.com/items?itemName=patr-cloud.patr-theme" + formats: null colors: bg: "#0D0526" fg: "#FFFFFF" diff --git a/themes/patricklimax.yaml b/themes/patricklimax.yaml index 8565a816..585530e9 100644 --- a/themes/patricklimax.yaml +++ b/themes/patricklimax.yaml @@ -8,6 +8,7 @@ source: author: "patricklimax" repo: "www.github.com/patricklimax/vscode-theme-trick" url: "https://marketplace.visualstudio.com/items?itemName=patricklimax.theme-trick" + formats: null colors: bg: "#121119" fg: "#C276FF" diff --git a/themes/patriot-contrast.yaml b/themes/patriot-contrast.yaml deleted file mode 100644 index 823369fa..00000000 --- a/themes/patriot-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "patriot-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0D0E0F" - fg: "#CAD9E3" - black: "#191B1D" - red: "#BA0E2E" - green: "#DE333C" - yellow: "#2E6FD9" - blue: "#FFFFFF" - magenta: "#BBBCC4" - cyan: "#DE333C" - white: "#DBE5EC" - brightBlack: "#3C4146" - brightRed: "#F03E5F" - brightGreen: "#EC8B90" - brightYellow: "#84AAE9" - brightBlue: "#FFFFFF" - brightMagenta: "#F2F2F3" - brightCyan: "#EC8B90" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 81.8 - black: 0 - red: 21.2 - green: 31.5 - yellow: 28.7 - blue: 107.6 - magenta: 66.2 - cyan: 31.5 - white: 89.7 - brightBlack: 8.3 - brightRed: 37.5 - brightGreen: 54.2 - brightYellow: 55.3 - brightBlue: 107.6 - brightMagenta: 99.1 - brightCyan: 54.2 - brightWhite: 107.6 diff --git a/themes/patriot-light.yaml b/themes/patriot-light.yaml deleted file mode 100644 index 94ec3d80..00000000 --- a/themes/patriot-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "patriot-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#333333" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#DE333C" - yellow: "#2E6FD9" - blue: "#333333" - magenta: "#AAAAAA" - cyan: "#DE333C" - white: "#404040" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#EC8B90" - brightYellow: "#84AAE9" - brightBlue: "#666666" - brightMagenta: "#DDDDDD" - brightCyan: "#EC8B90" - brightWhite: "#666666" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.7 - black: 0 - red: 80.3 - green: 69.8 - yellow: 72.7 - blue: 98.7 - magenta: 45.8 - cyan: 69.8 - white: 94.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 47.5 - brightYellow: 46.4 - brightBlue: 78.8 - brightMagenta: 17.6 - brightCyan: 47.5 - brightWhite: 78.8 diff --git a/themes/patriot.yaml b/themes/patriot.yaml deleted file mode 100644 index 1d82cd8a..00000000 --- a/themes/patriot.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "patriot" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2D3133" - fg: "#CAD9E3" - black: "#393E41" - red: "#BA0E2E" - green: "#DE333C" - yellow: "#2E6FD9" - blue: "#FFFFFF" - magenta: "#BBBCC4" - cyan: "#DE333C" - white: "#DBE5EC" - brightBlack: "#5D6569" - brightRed: "#F03E5F" - brightGreen: "#EC8B90" - brightYellow: "#84AAE9" - brightBlue: "#FFFFFF" - brightMagenta: "#F2F2F3" - brightCyan: "#EC8B90" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 76.9 - black: 0 - red: 16.3 - green: 26.7 - yellow: 23.8 - blue: 102.7 - magenta: 61.3 - cyan: 26.7 - white: 84.8 - brightBlack: 16.9 - brightRed: 32.6 - brightGreen: 49.4 - brightYellow: 50.5 - brightBlue: 102.7 - brightMagenta: 94.2 - brightCyan: 49.4 - brightWhite: 102.7 diff --git a/themes/paulera-s-dark-monokai.yaml b/themes/paulera-s-dark-monokai.yaml deleted file mode 100644 index 81f3fc82..00000000 --- a/themes/paulera-s-dark-monokai.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Paulera's dark monokai" -source: - marketplace_id: "Paulera.paulerathemes" - version: "1.4.3" - installs: 1867 - rating: 0 - ratings: 0 - author: "Paulera" - repo: "https://github.com/paulo-evangelista" - url: "https://marketplace.visualstudio.com/items?itemName=Paulera.paulerathemes" -colors: - bg: "#151515" - fg: "#F7F1FF" - black: "#363537" - red: "#FC618D" - green: "#7BD88F" - yellow: "#B781DB" - blue: "#FD9353" - magenta: "#948AE3" - cyan: "#5AD4E6" - white: "#F7F1FF" - brightBlack: "#69676C" - brightRed: "#FC618D" - brightGreen: "#7BD88F" - brightYellow: "#B781DB" - brightBlue: "#FD9353" - brightMagenta: "#948AE3" - brightCyan: "#5AD4E6" - brightWhite: "#F7F1FF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 99.4 - black: 0 - red: 46.5 - green: 70.4 - yellow: 45.5 - blue: 58.1 - magenta: 44.4 - cyan: 70.2 - white: 99.4 - brightBlack: 23 - brightRed: 46.5 - brightGreen: 70.4 - brightYellow: 45.5 - brightBlue: 58.1 - brightMagenta: 44.4 - brightCyan: 70.2 - brightWhite: 99.4 diff --git a/themes/paulera-s-lyo.yaml b/themes/paulera-s-lyo.yaml deleted file mode 100644 index 899dc442..00000000 --- a/themes/paulera-s-lyo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Paulera's Lyo" -source: - marketplace_id: "Paulera.paulerathemes" - version: "1.4.3" - installs: 1867 - rating: 0 - ratings: 0 - author: "Paulera" - repo: "https://github.com/paulo-evangelista" - url: "https://marketplace.visualstudio.com/items?itemName=Paulera.paulerathemes" -colors: - bg: "#151515" - fg: "#F7F1FF" - black: "#363537" - red: "#FC618D" - green: "#7BD88F" - yellow: "#5AD4E6" - blue: "#FD9353" - magenta: "#5AD4E6" - cyan: "#5AD4E6" - white: "#F7F1FF" - brightBlack: "#69676C" - brightRed: "#FC618D" - brightGreen: "#7BD88F" - brightYellow: "#5AD4E6" - brightBlue: "#FD9353" - brightMagenta: "#5AD4E6" - brightCyan: "#5AD4E6" - brightWhite: "#F7F1FF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 99.4 - black: 0 - red: 46.5 - green: 70.4 - yellow: 70.2 - blue: 58.1 - magenta: 70.2 - cyan: 70.2 - white: 99.4 - brightBlack: 23 - brightRed: 46.5 - brightGreen: 70.4 - brightYellow: 70.2 - brightBlue: 58.1 - brightMagenta: 70.2 - brightCyan: 70.2 - brightWhite: 99.4 diff --git a/themes/paztels.yaml b/themes/paztels.yaml index 0d336557..45615e55 100644 --- a/themes/paztels.yaml +++ b/themes/paztels.yaml @@ -8,6 +8,7 @@ source: author: "SonicFixation" repo: "https://github.com/SonicFixation/Paztels" url: "https://marketplace.visualstudio.com/items?itemName=SonicFixation.Paztels" + formats: null colors: bg: "#202121" fg: "#BEBEBE" diff --git a/themes/peace-of-the-eye-dracula-version.yaml b/themes/peace-of-the-eye-dracula-version.yaml deleted file mode 100644 index 072214c5..00000000 --- a/themes/peace-of-the-eye-dracula-version.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Peace of the eye - Dracula version" -source: - marketplace_id: "HasibX2000.slabs" - version: "0.0.2" - installs: 3516 - rating: 0 - ratings: 0 - author: "Hasibur Rahman" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slabs" -colors: - bg: "#122033" - fg: "#FFFFFF" - black: "#122033" - red: "#E35535" - green: "#52AB62" - yellow: "#FFD866" - blue: "#00B3BD" - magenta: "#E991E3" - cyan: "#78E8C6" - white: "#FFFFFF" - brightBlack: "#00B3BD" - brightRed: "#E35535" - brightGreen: "#52AB62" - brightYellow: "#FFD866" - brightBlue: "#00B3BD" - brightMagenta: "#E991E3" - brightCyan: "#78E8C6" - brightWhite: "#00B3BD" -meta: - mode: "dark" - accent: "orange" - hue: 256 - pair: null - contrast: - fg: 105.8 - black: 0 - red: 35.6 - green: 45.3 - yellow: 83.2 - blue: 50.3 - magenta: 57.4 - cyan: 78.6 - white: 105.8 - brightBlack: 50.3 - brightRed: 35.6 - brightGreen: 45.3 - brightYellow: 83.2 - brightBlue: 50.3 - brightMagenta: 57.4 - brightCyan: 78.6 - brightWhite: 50.3 diff --git a/themes/peaceful-mind.yaml b/themes/peaceful-mind.yaml index 80abd3e6..180952c4 100644 --- a/themes/peaceful-mind.yaml +++ b/themes/peaceful-mind.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "glitchlover.peaceful-mind" version: "2.1.0" installs: 71 + rating: 0 + ratings: 0 author: "glitchlover" repo: "https://github.com/glitchlover/peaceful-mind" url: "https://marketplace.visualstudio.com/items?itemName=glitchlover.peaceful-mind" + formats: null colors: bg: "#161924" fg: "#89A7B0" diff --git a/themes/peachy-dolphin.yaml b/themes/peachy-dolphin.yaml index a030527a..87a6a70e 100644 --- a/themes/peachy-dolphin.yaml +++ b/themes/peachy-dolphin.yaml @@ -8,6 +8,7 @@ source: author: "Durelius" repo: "https://github.com/durelius/notyet" url: "https://marketplace.visualstudio.com/items?itemName=Durelius.peachy-dolphin" + formats: null colors: bg: "#181818" fg: "#F0F0F0" diff --git a/themes/peachy.yaml b/themes/peachy.yaml index 18a3f3d1..6dc32fc0 100644 --- a/themes/peachy.yaml +++ b/themes/peachy.yaml @@ -2,12 +2,13 @@ name: "Peachy" source: marketplace_id: "Beamaia.peachy" version: "0.0.1" - installs: 1649 + installs: 1650 rating: 5 ratings: 2 author: "Beamaia" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Beamaia.peachy" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/peacock-contrast.yaml b/themes/peacock-contrast.yaml deleted file mode 100644 index d0d5c812..00000000 --- a/themes/peacock-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "peacock-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0C0C0B" - fg: "#FFFFFF" - black: "#191917" - red: "#BA0E2E" - green: "#26A6A6" - yellow: "#FF5D38" - blue: "#BCD42A" - magenta: "#26A6A6" - cyan: "#FF5D38" - white: "#FFFFFF" - brightBlack: "#41413C" - brightRed: "#F03E5F" - brightGreen: "#59D9D9" - brightYellow: "#FFB09E" - brightBlue: "#D7E67E" - brightMagenta: "#59D9D9" - brightCyan: "#FFB09E" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.7 - black: 0 - red: 21.3 - green: 45.8 - yellow: 45.2 - blue: 73.5 - magenta: 45.8 - cyan: 45.2 - white: 107.7 - brightBlack: 8.5 - brightRed: 37.6 - brightGreen: 72.5 - brightYellow: 70.5 - brightBlue: 86.1 - brightMagenta: 72.5 - brightCyan: 70.5 - brightWhite: 107.7 diff --git a/themes/peacock-light.yaml b/themes/peacock-light.yaml deleted file mode 100644 index cdc04fd2..00000000 --- a/themes/peacock-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "peacock-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#333333" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#26A6A6" - yellow: "#FF5D38" - blue: "#BCD42A" - magenta: "#26A6A6" - cyan: "#FF5D38" - white: "#404040" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#59D9D9" - brightYellow: "#FFB09E" - brightBlue: "#D7E67E" - brightMagenta: "#59D9D9" - brightCyan: "#FFB09E" - brightWhite: "#666666" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.7 - black: 0 - red: 80.3 - green: 55.8 - yellow: 56.3 - blue: 29.2 - magenta: 55.8 - cyan: 56.3 - white: 94.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 30.1 - brightYellow: 32 - brightBlue: 17.3 - brightMagenta: 30.1 - brightCyan: 32 - brightWhite: 78.8 diff --git a/themes/peacock.yaml b/themes/peacock.yaml index 56f0b7bf..9b4a29ea 100644 --- a/themes/peacock.yaml +++ b/themes/peacock.yaml @@ -1,52 +1,53 @@ -name: "peacock" +name: "Peacock" source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" + marketplace_id: "marnix.peacock" + version: "1.1.6" + installs: 33098 + rating: 5 + ratings: 2 + author: "Marnix Koops" + repo: "https://github.com/marnixkoops/peacock" + url: "https://marketplace.visualstudio.com/items?itemName=marnix.peacock" + formats: null colors: - bg: "#2B2A27" - fg: "#EDE0CE" - black: "#383733" - red: "#BA0E2E" - green: "#26A6A6" - yellow: "#FF5D38" - blue: "#BCD42A" - magenta: "#26A6A6" - cyan: "#FF5D38" - white: "#F4ECE1" - brightBlack: "#605E57" - brightRed: "#F03E5F" - brightGreen: "#59D9D9" - brightYellow: "#FFB09E" - brightBlue: "#D7E67E" - brightMagenta: "#59D9D9" - brightCyan: "#FFB09E" - brightWhite: "#FFFFFF" + bg: "#1E2336" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" meta: mode: "dark" - accent: "orange" - hue: null + accent: "pink" + hue: 272 pair: null contrast: - fg: 85.1 + fg: 57.7 black: 0 - red: 17.7 - green: 42.2 - yellow: 41.6 - blue: 69.8 - magenta: 42.2 - cyan: 41.6 - white: 92.3 - brightBlack: 15.8 - brightRed: 34 - brightGreen: 68.9 - brightYellow: 66.9 - brightBlue: 82.5 - brightMagenta: 68.9 - brightCyan: 66.9 - brightWhite: 104 + red: 35 + green: 58.6 + yellow: 46.9 + blue: 47.9 + magenta: 37.3 + cyan: 50.8 + white: 88.9 + brightBlack: 13.7 + brightRed: 44.4 + brightGreen: 75 + brightYellow: 59.5 + brightBlue: 62 + brightMagenta: 48.5 + brightCyan: 66.1 + brightWhite: 81.3 diff --git a/themes/peacocks-in-space-contrast.yaml b/themes/peacocks-in-space-contrast.yaml deleted file mode 100644 index 0805422e..00000000 --- a/themes/peacocks-in-space-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "peacocks-in-space-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#121419" - fg: "#DEE3EC" - black: "#1D2028" - red: "#BA0E2E" - green: "#26A6A6" - yellow: "#FF5D38" - blue: "#BCD42A" - magenta: "#26A6A6" - cyan: "#FF5D38" - white: "#EEF1F5" - brightBlack: "#3D4354" - brightRed: "#F03E5F" - brightGreen: "#59D9D9" - brightYellow: "#FFB09E" - brightBlue: "#D7E67E" - brightMagenta: "#59D9D9" - brightCyan: "#FFB09E" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 268 - pair: null - contrast: - fg: 88.8 - black: 0 - red: 20.8 - green: 45.3 - yellow: 44.7 - blue: 72.9 - magenta: 45.3 - cyan: 44.7 - white: 97.7 - brightBlack: 8.8 - brightRed: 37.1 - brightGreen: 72 - brightYellow: 70 - brightBlue: 85.6 - brightMagenta: 72 - brightCyan: 70 - brightWhite: 107.1 diff --git a/themes/peacocks-in-space-light.yaml b/themes/peacocks-in-space-light.yaml deleted file mode 100644 index b5772eb5..00000000 --- a/themes/peacocks-in-space-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "peacocks-in-space-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#DEE3EC" - fg: "#2B303B" - black: "#EEF1F5" - red: "#BA0E2E" - green: "#26A6A6" - yellow: "#FF5D38" - blue: "#A6B73A" - magenta: "#26A6A6" - cyan: "#FF5D38" - white: "#363C4A" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#59D9D9" - brightYellow: "#FFB09E" - brightBlue: "#CBD780" - brightMagenta: "#59D9D9" - brightCyan: "#FFB09E" - brightWhite: "#566076" -meta: - mode: "light" - accent: "orange" - hue: 262 - pair: null - contrast: - fg: 82.9 - black: 0 - red: 63.6 - green: 39 - yellow: 39.6 - blue: 26.9 - magenta: 39 - cyan: 39.6 - white: 78.8 - brightBlack: 16.5 - brightRed: 47.2 - brightGreen: 13.4 - brightYellow: 15.3 - brightBlue: 8.4 - brightMagenta: 13.4 - brightCyan: 15.3 - brightWhite: 64.7 diff --git a/themes/peacocks-in-space.yaml b/themes/peacocks-in-space.yaml deleted file mode 100644 index 0986ab18..00000000 --- a/themes/peacocks-in-space.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "peacocks-in-space" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2B303B" - fg: "#DEE3EC" - black: "#363C4A" - red: "#BA0E2E" - green: "#26A6A6" - yellow: "#FF5D38" - blue: "#BCD42A" - magenta: "#26A6A6" - cyan: "#FF5D38" - white: "#EEF1F5" - brightBlack: "#566076" - brightRed: "#F03E5F" - brightGreen: "#59D9D9" - brightYellow: "#FFB09E" - brightBlue: "#D7E67E" - brightMagenta: "#59D9D9" - brightCyan: "#FFB09E" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 266 - pair: null - contrast: - fg: 84.4 - black: 0 - red: 16.4 - green: 40.9 - yellow: 40.3 - blue: 68.6 - magenta: 40.9 - cyan: 40.3 - white: 93.4 - brightBlack: 15.4 - brightRed: 32.7 - brightGreen: 67.6 - brightYellow: 65.6 - brightBlue: 81.2 - brightMagenta: 67.6 - brightCyan: 65.6 - brightWhite: 102.8 diff --git a/themes/peel-contrast.yaml b/themes/peel-contrast.yaml deleted file mode 100644 index 6cc1d112..00000000 --- a/themes/peel-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "peel-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0C0B0A" - fg: "#EDEBE6" - black: "#1A1816" - red: "#BA0E2E" - green: "#94C7B6" - yellow: "#D3643B" - blue: "#D6E1C7" - magenta: "#94C7B6" - cyan: "#D3643B" - white: "#F8F7F5" - brightBlack: "#443E38" - brightRed: "#F03E5F" - brightGreen: "#D7EAE4" - brightYellow: "#E6A68E" - brightBlue: "#FFFFFF" - brightMagenta: "#D7EAE4" - brightCyan: "#E6A68E" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.7 - black: 0 - red: 21.3 - green: 66.4 - yellow: 37.4 - blue: 85.8 - magenta: 66.4 - cyan: 37.4 - white: 102.5 - brightBlack: 7.9 - brightRed: 37.6 - brightGreen: 91.3 - brightYellow: 62.1 - brightBlue: 107.7 - brightMagenta: 91.3 - brightCyan: 62.1 - brightWhite: 107.7 diff --git a/themes/peel-light.yaml b/themes/peel-light.yaml deleted file mode 100644 index 0a95a2a6..00000000 --- a/themes/peel-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "peel-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#333333" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#94C7B6" - yellow: "#D3643B" - blue: "#B2BCA4" - magenta: "#94C7B6" - cyan: "#D3643B" - white: "#404040" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#D7EAE4" - brightYellow: "#E6A68E" - brightBlue: "#E4E7DF" - brightMagenta: "#D7EAE4" - brightCyan: "#E6A68E" - brightWhite: "#666666" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.7 - black: 0 - red: 80.3 - green: 35.9 - yellow: 64.1 - blue: 38.2 - magenta: 35.9 - cyan: 64.1 - white: 94.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 12.5 - brightYellow: 40 - brightBlue: 12.4 - brightMagenta: 12.5 - brightCyan: 40 - brightWhite: 78.8 diff --git a/themes/peel.yaml b/themes/peel.yaml deleted file mode 100644 index fcb78d03..00000000 --- a/themes/peel.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "peel" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#23201C" - fg: "#EDEBE6" - black: "#312D27" - red: "#BA0E2E" - green: "#94C7B6" - yellow: "#D3643B" - blue: "#D6E1C7" - magenta: "#94C7B6" - cyan: "#D3643B" - white: "#F8F7F5" - brightBlack: "#5C5449" - brightRed: "#F03E5F" - brightGreen: "#D7EAE4" - brightYellow: "#E6A68E" - brightBlue: "#FFFFFF" - brightMagenta: "#D7EAE4" - brightCyan: "#E6A68E" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.7 - black: 0 - red: 19.3 - green: 64.4 - yellow: 35.4 - blue: 83.8 - magenta: 64.4 - cyan: 35.4 - white: 100.5 - brightBlack: 14 - brightRed: 35.6 - brightGreen: 89.3 - brightYellow: 60.1 - brightBlue: 105.7 - brightMagenta: 89.3 - brightCyan: 60.1 - brightWhite: 105.7 diff --git a/themes/penitent-contrast.yaml b/themes/penitent-contrast.yaml deleted file mode 100644 index efba7a3c..00000000 --- a/themes/penitent-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "penitent-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#101C18" - fg: "#B9CEC7" - black: "#192C26" - red: "#BA0E2E" - green: "#E54334" - yellow: "#EA983A" - blue: "#11A361" - magenta: "#E54334" - cyan: "#EA983A" - white: "#C8D8D3" - brightBlack: "#355D50" - brightRed: "#F03E5F" - brightGreen: "#F1978E" - brightYellow: "#F4C896" - brightBlue: "#31E996" - brightMagenta: "#F1978E" - brightCyan: "#F4C896" - brightWhite: "#F5F8F7" -meta: - mode: "dark" - accent: "orange" - hue: 172 - pair: null - contrast: - fg: 72.7 - black: 0 - red: 20.2 - green: 33.9 - yellow: 55.3 - blue: 41 - magenta: 33.9 - cyan: 55.3 - white: 79.4 - brightBlack: 15.1 - brightRed: 36.5 - brightGreen: 57.8 - brightYellow: 76.5 - brightBlue: 75.6 - brightMagenta: 57.8 - brightCyan: 76.5 - brightWhite: 101.5 diff --git a/themes/penitent-light.yaml b/themes/penitent-light.yaml deleted file mode 100644 index dbbf0908..00000000 --- a/themes/penitent-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "penitent-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#33564B" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#E54334" - yellow: "#EA983A" - blue: "#11A361" - magenta: "#E54334" - cyan: "#EA983A" - white: "#3C6659" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#F1978E" - brightYellow: "#F4C896" - brightBlue: "#31E996" - brightMagenta: "#F1978E" - brightCyan: "#F4C896" - brightWhite: "#599683" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 88.2 - black: 0 - red: 80.3 - green: 66.4 - yellow: 45.5 - blue: 59.4 - magenta: 66.4 - cyan: 45.5 - white: 82.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 43 - brightYellow: 25.2 - brightBlue: 26.1 - brightMagenta: 43 - brightCyan: 25.2 - brightWhite: 61.8 diff --git a/themes/penitent.yaml b/themes/penitent.yaml deleted file mode 100644 index 90b7ff04..00000000 --- a/themes/penitent.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "penitent" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#1F352E" - fg: "#B9CEC7" - black: "#28453C" - red: "#BA0E2E" - green: "#E54334" - yellow: "#EA983A" - blue: "#11A361" - magenta: "#E54334" - cyan: "#EA983A" - white: "#C8D8D3" - brightBlack: "#457566" - brightRed: "#F03E5F" - brightGreen: "#F1978E" - brightYellow: "#F4C896" - brightBlue: "#31E996" - brightMagenta: "#F1978E" - brightCyan: "#F4C896" - brightWhite: "#F5F8F7" -meta: - mode: "dark" - accent: "orange" - hue: 172 - pair: null - contrast: - fg: 68.7 - black: 0 - red: 16.2 - green: 29.9 - yellow: 51.3 - blue: 37 - magenta: 29.9 - cyan: 51.3 - white: 75.4 - brightBlack: 20.3 - brightRed: 32.5 - brightGreen: 53.8 - brightYellow: 72.5 - brightBlue: 71.6 - brightMagenta: 53.8 - brightCyan: 72.5 - brightWhite: 97.5 diff --git a/themes/penumbra-dark-contrast.yaml b/themes/penumbra-dark-contrast.yaml deleted file mode 100644 index 9056878d..00000000 --- a/themes/penumbra-dark-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Penumbra Dark Contrast++" -source: - marketplace_id: "PenumbraTheme.penumbra" - version: "0.4.0" - installs: 11883 - rating: 5 - ratings: 3 - author: "Penumbra Theme" - repo: "https://github.com/nealmckee/penumbra_vscode" - url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" -colors: - bg: "#181B1F" - fg: "#AEAEAE" - black: "#0D0F13" - red: "#F48E74" - green: "#61C68A" - yellow: "#C7AD40" - blue: "#97A6FF" - magenta: "#E18DCE" - cyan: "#1AC2E1" - white: "#FFF7ED" - brightBlack: "#636363" - brightRed: "#F48E74" - brightGreen: "#61C68A" - brightYellow: "#C7AD40" - brightBlue: "#97A6FF" - brightMagenta: "#E18DCE" - brightCyan: "#1AC2E1" - brightWhite: "#FFFDFB" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 57 - black: 0 - red: 54.8 - green: 59.7 - yellow: 57.2 - blue: 55.8 - magenta: 54.3 - cyan: 59.6 - white: 101.9 - brightBlack: 20.4 - brightRed: 54.8 - brightGreen: 59.7 - brightYellow: 57.2 - brightBlue: 55.8 - brightMagenta: 54.3 - brightCyan: 59.6 - brightWhite: 105.3 diff --git a/themes/penumbra-dark.yaml b/themes/penumbra-dark.yaml deleted file mode 100644 index 8dfaedba..00000000 --- a/themes/penumbra-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Penumbra Dark" -source: - marketplace_id: "PenumbraTheme.penumbra" - version: "0.4.0" - installs: 11883 - rating: 5 - ratings: 3 - author: "Penumbra Theme" - repo: "https://github.com/nealmckee/penumbra_vscode" - url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" -colors: - bg: "#303338" - fg: "#8F8F8F" - black: "#24272B" - red: "#CB7459" - green: "#46A473" - yellow: "#A38F2D" - blue: "#7E87D6" - magenta: "#BD72A8" - cyan: "#00A0BE" - white: "#FFF7ED" - brightBlack: "#636363" - brightRed: "#CB7459" - brightGreen: "#46A473" - brightYellow: "#A38F2D" - brightBlue: "#7E87D6" - brightMagenta: "#BD72A8" - brightCyan: "#00A0BE" - brightWhite: "#FFFDFB" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: "Penumbra Light" - contrast: - fg: 36.3 - black: 0 - red: 34.8 - green: 38.5 - yellow: 36.6 - blue: 35.4 - magenta: 34.4 - cyan: 38.6 - white: 97.5 - brightBlack: 16 - brightRed: 34.8 - brightGreen: 38.5 - brightYellow: 36.6 - brightBlue: 35.4 - brightMagenta: 34.4 - brightCyan: 38.6 - brightWhite: 100.9 diff --git a/themes/penumbra-light.yaml b/themes/penumbra-light.yaml deleted file mode 100644 index e52098c8..00000000 --- a/themes/penumbra-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Penumbra Light" -source: - marketplace_id: "PenumbraTheme.penumbra" - version: "0.4.0" - installs: 11883 - rating: 5 - ratings: 3 - author: "Penumbra Theme" - repo: "https://github.com/nealmckee/penumbra_vscode" - url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" -colors: - bg: "#FFF7ED" - fg: "#8F8F8F" - black: "#FFFDFB" - red: "#CB7459" - green: "#46A473" - yellow: "#A38F2D" - blue: "#7E87D6" - magenta: "#BD72A8" - cyan: "#00A0BE" - white: "#3E4044" - brightBlack: "#BEBEBE" - brightRed: "#CB7459" - brightGreen: "#46A473" - brightYellow: "#A38F2D" - brightBlue: "#7E87D6" - brightMagenta: "#BD72A8" - brightCyan: "#00A0BE" - brightWhite: "#24272B" -meta: - mode: "light" - accent: "purple" - hue: null - pair: "Penumbra Dark" - contrast: - fg: 55.5 - black: 0 - red: 57 - green: 53.3 - yellow: 55.1 - blue: 56.4 - magenta: 57.4 - cyan: 53.2 - white: 90 - brightBlack: 30.9 - brightRed: 57 - brightGreen: 53.3 - brightYellow: 55.1 - brightBlue: 56.4 - brightMagenta: 57.4 - brightCyan: 53.2 - brightWhite: 97.7 diff --git a/themes/perf-pink.yaml b/themes/perf-pink.yaml deleted file mode 100644 index 3fe5dbb4..00000000 --- a/themes/perf-pink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "perf-pink" -source: - marketplace_id: "tselmeg.pink-serena" - version: "0.2.0" - installs: 2490 - rating: 0 - ratings: 0 - author: "Serena" - repo: "https://github.com/utselmeg/perf-pink-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tselmeg.pink-serena" -colors: - bg: "#111010" - fg: "#FFE9F2" - black: "#262626" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#BCBCBC" - brightBlack: "#6F6666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 96.7 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28 - magenta: 30.3 - cyan: 48.1 - white: 65.9 - brightBlack: 23.4 - brightRed: 39.1 - brightGreen: 64.1 - brightYellow: 96.2 - brightBlue: 40.6 - brightMagenta: 45.9 - brightCyan: 56 - brightWhite: 107.4 diff --git a/themes/perfect-dark.yaml b/themes/perfect-dark.yaml index 0619b6cf..7d4ed39c 100644 --- a/themes/perfect-dark.yaml +++ b/themes/perfect-dark.yaml @@ -1,4 +1,4 @@ -name: "Perfect Dark" +name: "perfect-dark" source: marketplace_id: "PerfectThings.perfect-dark" version: "0.0.7" @@ -8,6 +8,7 @@ source: author: "Perfect Things" repo: "https://github.com/perfect-things/vscode-perfect-dark" url: "https://marketplace.visualstudio.com/items?itemName=PerfectThings.perfect-dark" + formats: null colors: bg: "#292A2B" fg: "#ABB2BF" diff --git a/themes/perfect-grey-pf-dark.yaml b/themes/perfect-grey-pf-dark.yaml index 521dff41..bb80feee 100644 --- a/themes/perfect-grey-pf-dark.yaml +++ b/themes/perfect-grey-pf-dark.yaml @@ -8,6 +8,7 @@ source: author: "PF" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PF.perfect-grey-pf" + formats: null colors: bg: "#55575C" fg: "#D8E2EC" diff --git a/themes/perfect-grey-pf-light.yaml b/themes/perfect-grey-pf-light.yaml index 175a2a63..0b0cbe38 100644 --- a/themes/perfect-grey-pf-light.yaml +++ b/themes/perfect-grey-pf-light.yaml @@ -8,6 +8,7 @@ source: author: "PF" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PF.perfect-grey-pf" + formats: null colors: bg: "#FBFBFD" fg: "#343B59" diff --git a/themes/perfection-fresh-dark.yaml b/themes/perfection-fresh-dark.yaml deleted file mode 100644 index dc282eb0..00000000 --- a/themes/perfection-fresh-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Perfection Fresh Dark" -source: - marketplace_id: "lucidlabs.perfection-fresh-theme" - version: "1.4.0" - installs: 13 - rating: 0 - ratings: 0 - author: "Lucid Labs" - repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.perfection-fresh-theme" -colors: - bg: "#141414" - fg: "#E8E6E2" - black: "#0A0A0A" - red: "#E05050" - green: "#78D68A" - yellow: "#F0C850" - blue: "#5AABE0" - magenta: "#D070B8" - cyan: "#4DB8A0" - white: "#E8E6E2" - brightBlack: "#999999" - brightRed: "#E87272" - brightGreen: "#90E8A0" - brightYellow: "#F8D868" - brightBlue: "#78BFE8" - brightMagenta: "#E090C8" - brightCyan: "#68C8B0" - brightWhite: "#F0EEEA" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Perfection Fresh Light" - contrast: - fg: 91 - black: 0 - red: 35.8 - green: 69.2 - yellow: 75.1 - blue: 52 - magenta: 42.9 - cyan: 53.9 - white: 91 - brightBlack: 46.5 - brightRed: 45.3 - brightGreen: 80.2 - brightYellow: 83.5 - brightBlue: 62.6 - brightMagenta: 55.5 - brightCyan: 63 - brightWhite: 96.1 diff --git a/themes/perfection-fresh-light.yaml b/themes/perfection-fresh-light.yaml deleted file mode 100644 index 4efc87e8..00000000 --- a/themes/perfection-fresh-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Perfection Fresh Light" -source: - marketplace_id: "lucidlabs.perfection-fresh-theme" - version: "1.4.0" - installs: 13 - rating: 0 - ratings: 0 - author: "Lucid Labs" - repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.perfection-fresh-theme" -colors: - bg: "#FFFFFF" - fg: "#1A1A1A" - black: "#1A1A1A" - red: "#CC2936" - green: "#1B5633" - yellow: "#A86B20" - blue: "#2874A6" - magenta: "#8B2870" - cyan: "#186B5E" - white: "#FFFFFF" - brightBlack: "#6B6B6B" - brightRed: "#E03040" - brightGreen: "#238040" - brightYellow: "#B87828" - brightBlue: "#3088C0" - brightMagenta: "#A03888" - brightCyan: "#208070" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Perfection Fresh Dark" - contrast: - fg: 104.3 - black: 104.3 - red: 74.9 - green: 89.4 - yellow: 70.1 - blue: 74.7 - magenta: 86.7 - cyan: 81.3 - white: 0 - brightBlack: 76.5 - brightRed: 69.6 - brightGreen: 73.9 - brightYellow: 63.8 - brightBlue: 65.9 - brightMagenta: 79.9 - brightCyan: 72.9 - brightWhite: 0 diff --git a/themes/periwinkle-color-theme.yaml b/themes/periwinkle-color-theme.yaml deleted file mode 100644 index 342d73cd..00000000 --- a/themes/periwinkle-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "periwinkle-color-theme" -source: - marketplace_id: "wavebeem.theme-unoduetre" - version: "5.11.1" - installs: 4290 - rating: 5 - ratings: 5 - author: "Sage Fennel" - repo: "https://github.com/wavebeem/vscode-theme-unoduetre" - url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" -colors: - bg: "#EAEAF6" - fg: "#0D0D73" - black: "#0F041B" - red: "#AB1732" - green: "#33754B" - yellow: "#9B5636" - blue: "#452DCD" - magenta: "#B620AF" - cyan: "#237385" - white: "#E6E6E6" - brightBlack: "#0F041B" - brightRed: "#AB1732" - brightGreen: "#33754B" - brightYellow: "#9B5636" - brightBlue: "#452DCD" - brightMagenta: "#B620AF" - brightCyan: "#237385" - brightWhite: "#E6E6E6" -meta: - mode: "light" - accent: "pink" - hue: 286 - pair: null - contrast: - fg: 89.8 - black: 93.9 - red: 71.4 - green: 65.6 - yellow: 65.5 - blue: 75.8 - magenta: 63.9 - cyan: 64.9 - white: 0 - brightBlack: 93.9 - brightRed: 71.4 - brightGreen: 65.6 - brightYellow: 65.5 - brightBlue: 75.8 - brightMagenta: 63.9 - brightCyan: 64.9 - brightWhite: 0 diff --git a/themes/periwinkle-soft-dark.yaml b/themes/periwinkle-soft-dark.yaml index e678c93d..e9f46d1b 100644 --- a/themes/periwinkle-soft-dark.yaml +++ b/themes/periwinkle-soft-dark.yaml @@ -8,6 +8,7 @@ source: author: "Karelle Hofler" repo: "https://github.com/itskarelleh/periwinkle-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=itskarelleh.periwinkle" + formats: null colors: bg: "#9083D1" fg: "#282247" diff --git a/themes/perplexity.yaml b/themes/perplexity.yaml deleted file mode 100644 index 4071f50c..00000000 --- a/themes/perplexity.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Perplexity" -source: - marketplace_id: "cottonable.perplexity" - version: "1.0.2" - installs: 6590 - rating: 5 - ratings: 1 - author: "cottonable" - repo: "https://github.com/cottonable/perplexity-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=cottonable.perplexity" -colors: - bg: "#191A1A" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106.6 - black: 0 - red: 26.4 - green: 52.7 - yellow: 85.3 - blue: 27.1 - magenta: 29.5 - cyan: 47.3 - white: 89.7 - brightBlack: 21.7 - brightRed: 38.3 - brightGreen: 63.2 - brightYellow: 95.3 - brightBlue: 39.7 - brightMagenta: 45.1 - brightCyan: 55.1 - brightWhite: 89.7 diff --git a/themes/perry-the-platypus.yaml b/themes/perry-the-platypus.yaml deleted file mode 100644 index a578a6cf..00000000 --- a/themes/perry-the-platypus.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Perry-the-platypus" -source: - marketplace_id: "ArkaBanerjee.compact-vs-code" - version: "1.1.1" - installs: 106 - rating: 0 - ratings: 0 - author: "Arka Banerjee" - repo: "https://github.com/thearkabanerjee/Compact-VS-Code" - url: "https://marketplace.visualstudio.com/items?itemName=ArkaBanerjee.compact-vs-code" -colors: - bg: "#131A26" - fg: "#B3BAC8" - black: "#212121" - red: "#FF5252" - green: "#8BC34A" - yellow: "#FFCA28" - blue: "#00BCD4" - magenta: "#AA00FF" - cyan: "#00E5FF" - white: "#E0E0E0" - brightBlack: "#616161" - brightRed: "#FF8A80" - brightGreen: "#C6FF00" - brightYellow: "#FFE082" - brightBlue: "#80D8FF" - brightMagenta: "#EA80FC" - brightCyan: "#84FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 261 - pair: null - contrast: - fg: 63.6 - black: 0 - red: 42.5 - green: 60 - yellow: 77.5 - blue: 56.2 - magenta: 28.1 - cyan: 77.7 - white: 86.6 - brightBlack: 19.6 - brightRed: 56.2 - brightGreen: 94.2 - brightYellow: 88 - brightBlue: 75 - brightMagenta: 55.1 - brightCyan: 94.2 - brightWhite: 106.6 diff --git a/themes/petrel.yaml b/themes/petrel.yaml index 924470c0..13dfc2bf 100644 --- a/themes/petrel.yaml +++ b/themes/petrel.yaml @@ -8,6 +8,7 @@ source: author: "bbrakenhoff" repo: "https://github.com/bbrakenhoff/seabird-vscode" url: "https://marketplace.visualstudio.com/items?itemName=bbrakenhoff.seabird" + formats: null colors: bg: "#0B141A" fg: "#787E82" diff --git a/themes/pg-aqualung.yaml b/themes/pg-aqualung.yaml index 06dde992..27895509 100644 --- a/themes/pg-aqualung.yaml +++ b/themes/pg-aqualung.yaml @@ -8,6 +8,7 @@ source: author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" + formats: null colors: bg: "#070E15" fg: "#EBF0F0" diff --git a/themes/pg-blue-moon.yaml b/themes/pg-blue-moon.yaml index b7cbe922..822a7bca 100644 --- a/themes/pg-blue-moon.yaml +++ b/themes/pg-blue-moon.yaml @@ -8,6 +8,7 @@ source: author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" + formats: null colors: bg: "#070815" fg: "#E9EDF0" diff --git a/themes/pg-forest.yaml b/themes/pg-forest.yaml index 00ae94ea..65f2758e 100644 --- a/themes/pg-forest.yaml +++ b/themes/pg-forest.yaml @@ -8,6 +8,7 @@ source: author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" + formats: null colors: bg: "#171716" fg: "#E6EAE0" diff --git a/themes/pg-may-be-concrete.yaml b/themes/pg-may-be-concrete.yaml index e7c20bc5..6caee35c 100644 --- a/themes/pg-may-be-concrete.yaml +++ b/themes/pg-may-be-concrete.yaml @@ -8,6 +8,7 @@ source: author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" + formats: null colors: bg: "#29343D" fg: "#EAECF2" diff --git a/themes/pg-mud-puddle.yaml b/themes/pg-mud-puddle.yaml index b7b45e83..03490904 100644 --- a/themes/pg-mud-puddle.yaml +++ b/themes/pg-mud-puddle.yaml @@ -8,6 +8,7 @@ source: author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" + formats: null colors: bg: "#413D38" fg: "#F5F3F1" diff --git a/themes/pg-plum-great.yaml b/themes/pg-plum-great.yaml index 6f8e4f1b..3cd3a1c4 100644 --- a/themes/pg-plum-great.yaml +++ b/themes/pg-plum-great.yaml @@ -8,6 +8,7 @@ source: author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" + formats: null colors: bg: "#141019" fg: "#E6DFE8" diff --git a/themes/pg-plum-groovy.yaml b/themes/pg-plum-groovy.yaml index 77d5ed36..58d9351e 100644 --- a/themes/pg-plum-groovy.yaml +++ b/themes/pg-plum-groovy.yaml @@ -8,6 +8,7 @@ source: author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" + formats: null colors: bg: "#141019" fg: "#E4DCE6" diff --git a/themes/pg-punkin-spice.yaml b/themes/pg-punkin-spice.yaml index a01d5548..1ab47cfa 100644 --- a/themes/pg-punkin-spice.yaml +++ b/themes/pg-punkin-spice.yaml @@ -8,6 +8,7 @@ source: author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" + formats: null colors: bg: "#171515" fg: "#928B8C" diff --git a/themes/pg-red-clay.yaml b/themes/pg-red-clay.yaml index 1eba40dd..09666cc5 100644 --- a/themes/pg-red-clay.yaml +++ b/themes/pg-red-clay.yaml @@ -8,6 +8,7 @@ source: author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" + formats: null colors: bg: "#493936" fg: "#F5EDEE" diff --git a/themes/pg-ridgeline.yaml b/themes/pg-ridgeline.yaml index be45adcb..3c041bf7 100644 --- a/themes/pg-ridgeline.yaml +++ b/themes/pg-ridgeline.yaml @@ -8,6 +8,7 @@ source: author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" + formats: null colors: bg: "#3D3729" fg: "#A9C2C1" diff --git a/themes/pg-ruby-clay.yaml b/themes/pg-ruby-clay.yaml index 179939f0..6bb0fa32 100644 --- a/themes/pg-ruby-clay.yaml +++ b/themes/pg-ruby-clay.yaml @@ -8,6 +8,7 @@ source: author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" + formats: null colors: bg: "#322D2C" fg: "#C7BEB9" diff --git a/themes/pg-ruby-soho.yaml b/themes/pg-ruby-soho.yaml index ce326f4c..9228e68e 100644 --- a/themes/pg-ruby-soho.yaml +++ b/themes/pg-ruby-soho.yaml @@ -8,6 +8,7 @@ source: author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" + formats: null colors: bg: "#170E0E" fg: "#F0E8E9" diff --git a/themes/pg-slax.yaml b/themes/pg-slax.yaml index 8817b70e..c39d520e 100644 --- a/themes/pg-slax.yaml +++ b/themes/pg-slax.yaml @@ -8,6 +8,7 @@ source: author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" + formats: null colors: bg: "#1A1D1F" fg: "#CFC9B0" diff --git a/themes/pg-steely-daniel.yaml b/themes/pg-steely-daniel.yaml index 2e38af7b..e5b9b68e 100644 --- a/themes/pg-steely-daniel.yaml +++ b/themes/pg-steely-daniel.yaml @@ -8,6 +8,7 @@ source: author: "brennacodes" repo: "https://github.com/brennacodes/plum_good_theme" url: "https://marketplace.visualstudio.com/items?itemName=brennacodes.plum-good-theme" + formats: null colors: bg: "#272A2C" fg: "#C7C2AC" diff --git a/themes/pglight.yaml b/themes/pglight.yaml index b42317ef..04e7521a 100644 --- a/themes/pglight.yaml +++ b/themes/pglight.yaml @@ -8,6 +8,7 @@ source: author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null colors: bg: "#F5F2F0" fg: "#041214" diff --git a/themes/phantom.yaml b/themes/phantom.yaml index 7d5785f3..3070e995 100644 --- a/themes/phantom.yaml +++ b/themes/phantom.yaml @@ -8,6 +8,7 @@ source: author: "Myna Vu" repo: "https://github.com/mynavu/Phantom-Theme" url: "https://marketplace.visualstudio.com/items?itemName=MynaVu.phantom-theme" + formats: null colors: bg: "#191724" fg: "#FFFFFF" diff --git a/themes/phocus.yaml b/themes/phocus.yaml index 5d1044eb..6aac5e5b 100644 --- a/themes/phocus.yaml +++ b/themes/phocus.yaml @@ -8,6 +8,7 @@ source: author: "Philipp Schaffrath" repo: "https://github.com/phocus/vscode" url: "https://marketplace.visualstudio.com/items?itemName=phisch.phocus-vscode" + formats: null colors: bg: "#141414" fg: "#D4D4D4" diff --git a/themes/phonebook-dark.yaml b/themes/phonebook-dark.yaml index 2a228e6f..1cfbdac4 100644 --- a/themes/phonebook-dark.yaml +++ b/themes/phonebook-dark.yaml @@ -8,6 +8,7 @@ source: author: "Nick Carnival" repo: "https://github.com/nickcarnival/vscode-phonebook" url: "https://marketplace.visualstudio.com/items?itemName=nick-carnival.phonebook-theme" + formats: null colors: bg: "#2C2621" fg: "#E7C56F" diff --git a/themes/phonebook-light.yaml b/themes/phonebook-light.yaml index 7508ed2b..45d0f72b 100644 --- a/themes/phonebook-light.yaml +++ b/themes/phonebook-light.yaml @@ -8,6 +8,7 @@ source: author: "Nick Carnival" repo: "https://github.com/nickcarnival/vscode-phonebook" url: "https://marketplace.visualstudio.com/items?itemName=nick-carnival.phonebook-theme" + formats: null colors: bg: "#E4D7C4" fg: "#4A341C" diff --git a/themes/phosphor-amber-night.yaml b/themes/phosphor-amber-night.yaml index 36fea4b4..29caada5 100644 --- a/themes/phosphor-amber-night.yaml +++ b/themes/phosphor-amber-night.yaml @@ -8,6 +8,7 @@ source: author: "glide.build" repo: "https://github.com/mo-shawa/phosphor-themes" url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" + formats: null colors: bg: "#1E2028" fg: "#B3B8C5" diff --git a/themes/phosphor-aurora.yaml b/themes/phosphor-aurora.yaml index 85d8ec1d..d9acecfb 100644 --- a/themes/phosphor-aurora.yaml +++ b/themes/phosphor-aurora.yaml @@ -8,6 +8,7 @@ source: author: "glide.build" repo: "https://github.com/mo-shawa/phosphor-themes" url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" + formats: null colors: bg: "#080C18" fg: "#C0D0E8" diff --git a/themes/phosphor-dark.yaml b/themes/phosphor-dark.yaml deleted file mode 100644 index 2f0c020c..00000000 --- a/themes/phosphor-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Phosphor Dark" -source: - marketplace_id: "phosphor-icons.phosphor-theme" - version: "0.1.2" - installs: 1671 - rating: 5 - ratings: 3 - author: "Phosphor Icons" - repo: "https://github.com/phosphor-icons/theme" - url: "https://marketplace.visualstudio.com/items?itemName=phosphor-icons.phosphor-theme" -colors: - bg: "#2A2926" - fg: "#C9C5BF" - black: "#656461" - red: "#BC6F4F" - green: "#A4B55B" - yellow: "#D6971E" - blue: "#4E76B4" - magenta: "#9D6DEC" - cyan: "#5197A7" - white: "#EEEAE3" - brightBlack: "#656461" - brightRed: "#CF5F31" - brightGreen: "#C4E456" - brightYellow: "#F8C666" - brightBlue: "#6283E8" - brightMagenta: "#B38CFF" - brightCyan: "#6DB8D7" - brightWhite: "#F7F5F1" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 68.1 - black: 18.6 - red: 32.8 - green: 54.2 - yellow: 49 - blue: 26.3 - magenta: 34.7 - cyan: 37.7 - white: 90.8 - brightBlack: 18.6 - brightRed: 31.9 - brightGreen: 78.8 - brightYellow: 73 - brightBlue: 35.3 - brightMagenta: 47.9 - brightCyan: 55.1 - brightWhite: 97.7 diff --git a/themes/phosphor-dreams.yaml b/themes/phosphor-dreams.yaml index 4d69c410..ca51e582 100644 --- a/themes/phosphor-dreams.yaml +++ b/themes/phosphor-dreams.yaml @@ -8,6 +8,7 @@ source: author: "glide.build" repo: "https://github.com/mo-shawa/phosphor-themes" url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" + formats: null colors: bg: "#040604" fg: "#22DD22" diff --git a/themes/phosphor-event-horizon.yaml b/themes/phosphor-event-horizon.yaml index d63893c7..3ee24411 100644 --- a/themes/phosphor-event-horizon.yaml +++ b/themes/phosphor-event-horizon.yaml @@ -8,6 +8,7 @@ source: author: "glide.build" repo: "https://github.com/mo-shawa/phosphor-themes" url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" + formats: null colors: bg: "#000000" fg: "#CC9999" diff --git a/themes/phosphor-forest.yaml b/themes/phosphor-forest.yaml index 34000fce..0b85bfed 100644 --- a/themes/phosphor-forest.yaml +++ b/themes/phosphor-forest.yaml @@ -8,6 +8,7 @@ source: author: "glide.build" repo: "https://github.com/mo-shawa/phosphor-themes" url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" + formats: null colors: bg: "#141C18" fg: "#A7B5B0" diff --git a/themes/phosphor-neon-noir.yaml b/themes/phosphor-neon-noir.yaml index cc5a9441..8b185803 100644 --- a/themes/phosphor-neon-noir.yaml +++ b/themes/phosphor-neon-noir.yaml @@ -8,6 +8,7 @@ source: author: "glide.build" repo: "https://github.com/mo-shawa/phosphor-themes" url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" + formats: null colors: bg: "#0D0D18" fg: "#C5C5D0" diff --git a/themes/phosphor-violet-dusk.yaml b/themes/phosphor-violet-dusk.yaml index 1b5ee76f..ef3bd107 100644 --- a/themes/phosphor-violet-dusk.yaml +++ b/themes/phosphor-violet-dusk.yaml @@ -8,6 +8,7 @@ source: author: "glide.build" repo: "https://github.com/mo-shawa/phosphor-themes" url: "https://marketplace.visualstudio.com/items?itemName=glidebuild.phosphor-themes" + formats: null colors: bg: "#171422" fg: "#B8B5C8" diff --git a/themes/phosphorus-minor.yaml b/themes/phosphorus-minor.yaml index c271d7eb..607a1e21 100644 --- a/themes/phosphorus-minor.yaml +++ b/themes/phosphorus-minor.yaml @@ -8,6 +8,7 @@ source: author: "adamsome" repo: "https://github.com/adamsome/vscode-theme-phosphorus-minor" url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-phosphorus-minor" + formats: null colors: bg: "#000000" fg: "#A8A29E" diff --git a/themes/photon.yaml b/themes/photon.yaml index 0722ac37..b4227222 100644 --- a/themes/photon.yaml +++ b/themes/photon.yaml @@ -6,6 +6,7 @@ source: author: "Frontverse" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Frontverse.frontverse-photon" + formats: null colors: bg: "#0F0F0F" fg: "#717171" diff --git a/themes/photonica-dark.yaml b/themes/photonica-dark.yaml deleted file mode 100644 index 9eef7a22..00000000 --- a/themes/photonica-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Photonica Dark" -source: - marketplace_id: "ConAntares.Photonica" - version: "1.0.10" - installs: 17846 - rating: 5 - ratings: 6 - author: "Luke Niu" - repo: "https://github.com/Photonico/Photonica" - url: "https://marketplace.visualstudio.com/items?itemName=ConAntares.Photonica" -colors: - bg: "#191919" - fg: "#F0F0F0" - black: "#3C3C3C" - red: "#FF5064" - green: "#64F050" - yellow: "#FFC814" - blue: "#1496F0" - magenta: "#AF8CF0" - cyan: "#28B4B4" - white: "#F0F0F0" - brightBlack: "#646464" - brightRed: "#FF7878" - brightGreen: "#C8FF46" - brightYellow: "#FFDC64" - brightBlue: "#1EA0FF" - brightMagenta: "#D28CFA" - brightCyan: "#8CE1E1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: "Photonica Light" - contrast: - fg: 96.8 - black: 0 - red: 42.6 - green: 79.5 - yellow: 76.7 - blue: 42.5 - magenta: 48.7 - cyan: 51.5 - white: 96.8 - brightBlack: 21 - brightRed: 51.2 - brightGreen: 94.8 - brightYellow: 85.8 - brightBlue: 47.5 - brightMagenta: 54.4 - brightCyan: 78.6 - brightWhite: 106.7 diff --git a/themes/photonica-light.yaml b/themes/photonica-light.yaml deleted file mode 100644 index 6ac5e14b..00000000 --- a/themes/photonica-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Photonica Light" -source: - marketplace_id: "ConAntares.Photonica" - version: "1.0.10" - installs: 17846 - rating: 5 - ratings: 6 - author: "Luke Niu" - repo: "https://github.com/Photonico/Photonica" - url: "https://marketplace.visualstudio.com/items?itemName=ConAntares.Photonica" -colors: - bg: "#FFFFFF" - fg: "#141414" - black: "#141414" - red: "#E14646" - green: "#50A028" - yellow: "#F0B414" - blue: "#1496F0" - magenta: "#7864C8" - cyan: "#3CB4A0" - white: "#C8C8C8" - brightBlack: "#646464" - brightRed: "#FF5050" - brightGreen: "#5FC33C" - brightYellow: "#FFBE46" - brightBlue: "#19A0FF" - brightMagenta: "#9178F0" - brightCyan: "#46D2B4" - brightWhite: "#F0F0F0" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Photonica Dark" - contrast: - fg: 105.1 - black: 105.1 - red: 66.7 - green: 59.8 - yellow: 35 - blue: 58.1 - magenta: 72.5 - cyan: 49.6 - white: 29.5 - brightBlack: 79.6 - brightRed: 58.2 - brightGreen: 43.9 - brightYellow: 28.6 - brightBlue: 53.2 - brightMagenta: 61.4 - brightCyan: 35.4 - brightWhite: 0 diff --git a/themes/photophore.yaml b/themes/photophore.yaml index cd6092ab..d39d32d3 100644 --- a/themes/photophore.yaml +++ b/themes/photophore.yaml @@ -8,6 +8,7 @@ source: author: "Kenzie Bottoms" repo: "git+https://github.com/kenziebottoms/vscode-theme-photophore" url: "https://marketplace.visualstudio.com/items?itemName=kenziebottoms.photophore" + formats: null colors: bg: "#1C0333" fg: "#F9FFF0" diff --git a/themes/piattro.yaml b/themes/piattro.yaml index 3b0b6654..0e93c35d 100644 --- a/themes/piattro.yaml +++ b/themes/piattro.yaml @@ -8,6 +8,7 @@ source: author: "Flo Edelmann" repo: null url: "https://marketplace.visualstudio.com/items?itemName=floedelmann.piattro" + formats: null colors: bg: "#FAFAFA" fg: "#505050" diff --git a/themes/pierre-dark.yaml b/themes/pierre-dark.yaml deleted file mode 100644 index 331cdf7d..00000000 --- a/themes/pierre-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pierre Dark" -source: - marketplace_id: "pierrecomputer.pierre-theme" - version: "0.0.24" - installs: 297 - rating: 5 - ratings: 1 - author: "The Pierre Computer Co" - repo: "https://github.com/pierrecomputer/theme" - url: "https://marketplace.visualstudio.com/items?itemName=pierrecomputer.pierre-theme" -colors: - bg: "#070707" - fg: "#FBFBFB" - black: "#141415" - red: "#FF2E3F" - green: "#0DBE4E" - yellow: "#FFCA00" - blue: "#009FFF" - magenta: "#C635E4" - cyan: "#08C0EF" - white: "#C6C6C8" - brightBlack: "#141415" - brightRed: "#FF2E3F" - brightGreen: "#0DBE4E" - brightYellow: "#FFCA00" - brightBlue: "#009FFF" - brightMagenta: "#C635E4" - brightCyan: "#08C0EF" - brightWhite: "#C6C6C8" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: "Pierre Light" - contrast: - fg: 105.2 - black: 0 - red: 39.3 - green: 54.1 - yellow: 78.7 - blue: 48.1 - magenta: 34.2 - cyan: 60.8 - white: 72.1 - brightBlack: 0 - brightRed: 39.3 - brightGreen: 54.1 - brightYellow: 78.7 - brightBlue: 48.1 - brightMagenta: 34.2 - brightCyan: 60.8 - brightWhite: 72.1 diff --git a/themes/pierre-light.yaml b/themes/pierre-light.yaml deleted file mode 100644 index 94e0ff14..00000000 --- a/themes/pierre-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pierre Light" -source: - marketplace_id: "pierrecomputer.pierre-theme" - version: "0.0.24" - installs: 297 - rating: 5 - ratings: 1 - author: "The Pierre Computer Co" - repo: "https://github.com/pierrecomputer/theme" - url: "https://marketplace.visualstudio.com/items?itemName=pierrecomputer.pierre-theme" -colors: - bg: "#FFFFFF" - fg: "#070707" - black: "#1F1F21" - red: "#FF2E3F" - green: "#0DBE4E" - yellow: "#FFCA00" - blue: "#009FFF" - magenta: "#C635E4" - cyan: "#08C0EF" - white: "#C6C6C8" - brightBlack: "#1F1F21" - brightRed: "#FF2E3F" - brightGreen: "#0DBE4E" - brightYellow: "#FFCA00" - brightBlue: "#009FFF" - brightMagenta: "#C635E4" - brightCyan: "#08C0EF" - brightWhite: "#C6C6C8" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Pierre Dark" - contrast: - fg: 106 - black: 103.4 - red: 62.3 - green: 47.9 - yellow: 24.4 - blue: 53.7 - magenta: 67.4 - cyan: 41.4 - white: 30.6 - brightBlack: 103.4 - brightRed: 62.3 - brightGreen: 47.9 - brightYellow: 24.4 - brightBlue: 53.7 - brightMagenta: 67.4 - brightCyan: 41.4 - brightWhite: 30.6 diff --git a/themes/piggy-bordered.yaml b/themes/piggy-bordered.yaml index 56baf89f..449f3fad 100644 --- a/themes/piggy-bordered.yaml +++ b/themes/piggy-bordered.yaml @@ -8,6 +8,7 @@ source: author: "Nachop Peralta" repo: "https://github.com/nachop51/nachop-theme" url: "https://marketplace.visualstudio.com/items?itemName=nachop51.nachop-theme" + formats: null colors: bg: "#242430" fg: "#DDC8EB" diff --git a/themes/piggy-contrast.yaml b/themes/piggy-contrast.yaml deleted file mode 100644 index 10364389..00000000 --- a/themes/piggy-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "piggy-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#1C1618" - fg: "#EDEBE6" - black: "#2A2124" - red: "#BA0E2E" - green: "#F52E62" - yellow: "#FD6A5D" - blue: "#FF5D80" - magenta: "#FD6A5D" - cyan: "#F52E62" - white: "#F8F7F5" - brightBlack: "#554349" - brightRed: "#F03E5F" - brightGreen: "#FA8FAB" - brightYellow: "#FEC7C2" - brightBlue: "#FFC3D0" - brightMagenta: "#FEC7C2" - brightCyan: "#FA8FAB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 356 - pair: null - contrast: - fg: 93.8 - black: 0 - red: 20.4 - green: 36.4 - yellow: 47.1 - blue: 45.7 - magenta: 47.1 - cyan: 36.4 - white: 101.6 - brightBlack: 10.1 - brightRed: 36.7 - brightGreen: 58.3 - brightYellow: 79.5 - brightBlue: 78.6 - brightMagenta: 79.5 - brightCyan: 58.3 - brightWhite: 106.8 diff --git a/themes/piggy-light.yaml b/themes/piggy-light.yaml deleted file mode 100644 index 0b537abf..00000000 --- a/themes/piggy-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "piggy-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#F52E62" - yellow: "#FD6A5D" - blue: "#FF5D80" - magenta: "#FD6A5D" - cyan: "#F52E62" - white: "#515151" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#FA8FAB" - brightYellow: "#FEC7C2" - brightBlue: "#FFC3D0" - brightMagenta: "#FEC7C2" - brightCyan: "#FA8FAB" - brightWhite: "#777777" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 80.3 - green: 64.2 - yellow: 53.7 - blue: 55 - magenta: 53.7 - cyan: 64.2 - white: 87.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 42.8 - brightYellow: 22.7 - brightBlue: 23.5 - brightMagenta: 22.7 - brightCyan: 42.8 - brightWhite: 71.1 diff --git a/themes/piggy.yaml b/themes/piggy.yaml deleted file mode 100644 index cbe77340..00000000 --- a/themes/piggy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "piggy" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#3D2F34" - fg: "#EDEBE6" - black: "#4B3A40" - red: "#BA0E2E" - green: "#F52E62" - yellow: "#FD6A5D" - blue: "#FF5D80" - magenta: "#FD6A5D" - cyan: "#F52E62" - white: "#F8F7F5" - brightBlack: "#775B65" - brightRed: "#F03E5F" - brightGreen: "#FA8FAB" - brightYellow: "#FEC7C2" - brightBlue: "#FFC3D0" - brightMagenta: "#FEC7C2" - brightCyan: "#FA8FAB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 355 - pair: null - contrast: - fg: 89.1 - black: 0 - red: 15.7 - green: 31.7 - yellow: 42.4 - blue: 41 - magenta: 42.4 - cyan: 31.7 - white: 96.8 - brightBlack: 15.8 - brightRed: 32 - brightGreen: 53.6 - brightYellow: 74.7 - brightBlue: 73.9 - brightMagenta: 74.7 - brightCyan: 53.6 - brightWhite: 102.1 diff --git a/themes/pillirioen.yaml b/themes/pillirioen.yaml index 5251e35d..d67ab3fe 100644 --- a/themes/pillirioen.yaml +++ b/themes/pillirioen.yaml @@ -8,6 +8,7 @@ source: author: "Benjamin Vasquez" repo: "https://github.com/Be-njamin/pillirioen" url: "https://marketplace.visualstudio.com/items?itemName=Be-njamin.pillirioen" + formats: null colors: bg: "#21262D" fg: "#9199A1" diff --git a/themes/pine-blue.yaml b/themes/pine-blue.yaml deleted file mode 100644 index c212cf9e..00000000 --- a/themes/pine-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pine Blue" -source: - marketplace_id: "JeylaniB.pine-editor-themes" - version: "1.0.0" - installs: 12531 - rating: 5 - ratings: 1 - author: "JeylaniB" - repo: "https://github.com/jeyllani/pinethemes" - url: "https://marketplace.visualstudio.com/items?itemName=JeylaniB.pine-editor-themes" -colors: - bg: "#01101C" - fg: "#D6DEEB" - black: "#01101C" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 240 - pair: null - contrast: - fg: 85.8 - black: 0 - red: 39.9 - green: 67.8 - yellow: 82.6 - blue: 56.5 - magenta: 54.3 - cyan: 60.3 - white: 107.4 - brightBlack: 16.2 - brightRed: 39.9 - brightGreen: 67.8 - brightYellow: 94.3 - brightBlue: 56.5 - brightMagenta: 54.3 - brightCyan: 74.6 - brightWhite: 107.4 diff --git a/themes/pine-cone-theme.yaml b/themes/pine-cone-theme.yaml deleted file mode 100644 index 68de99f7..00000000 --- a/themes/pine-cone-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pine Cone Theme" -source: - marketplace_id: "imalbert.conifer-theme" - version: "2.4.3" - installs: 1380 - rating: 5 - ratings: 3 - author: "imalbert" - repo: "https://github.com/imalbert/conifer-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=imalbert.conifer-theme" -colors: - bg: "#232922" - fg: "#D3D9D2" - black: "#2E352C" - red: "#A96E55" - green: "#BCBC62" - yellow: "#BCBC62" - blue: "#889985" - magenta: "#D3D9D3" - cyan: "#BCBC62" - white: "#D3D9D2" - brightBlack: "#D3D9D2" - brightRed: "#A96E55" - brightGreen: "#BCBC62" - brightYellow: "#BCBC62" - brightBlue: "#889985" - brightMagenta: "#D3D9D3" - brightCyan: "#C5C581" - brightWhite: "#EBDFC1" -meta: - mode: "dark" - accent: "green" - hue: 141 - pair: null - contrast: - fg: 79.1 - black: 0 - red: 29.9 - green: 60.4 - yellow: 60.4 - blue: 41.4 - magenta: 79.2 - cyan: 60.4 - white: 79.1 - brightBlack: 79.1 - brightRed: 29.9 - brightGreen: 60.4 - brightYellow: 60.4 - brightBlue: 41.4 - brightMagenta: 79.2 - brightCyan: 66 - brightWhite: 84.4 diff --git a/themes/pine-editor-dark.yaml b/themes/pine-editor-dark.yaml deleted file mode 100644 index 32b73272..00000000 --- a/themes/pine-editor-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pine Editor Dark" -source: - marketplace_id: "JeylaniB.pine-editor-themes" - version: "1.0.0" - installs: 12531 - rating: 5 - ratings: 1 - author: "JeylaniB" - repo: "https://github.com/jeyllani/pinethemes" - url: "https://marketplace.visualstudio.com/items?itemName=JeylaniB.pine-editor-themes" -colors: - bg: "#131621" - fg: "#D6DEEB" - black: "#131621" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 272 - pair: null - contrast: - fg: 85.3 - black: 0 - red: 39.4 - green: 67.3 - yellow: 82.1 - blue: 56 - magenta: 53.8 - cyan: 59.7 - white: 106.9 - brightBlack: 15.6 - brightRed: 39.4 - brightGreen: 67.3 - brightYellow: 93.8 - brightBlue: 56 - brightMagenta: 53.8 - brightCyan: 74 - brightWhite: 106.9 diff --git a/themes/pine-editor-light-bold.yaml b/themes/pine-editor-light-bold.yaml deleted file mode 100644 index 3a013da8..00000000 --- a/themes/pine-editor-light-bold.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pine Editor Light Bold" -source: - marketplace_id: "JeylaniB.pine-editor-themes" - version: "1.0.0" - installs: 12531 - rating: 5 - ratings: 1 - author: "JeylaniB" - repo: "https://github.com/jeyllani/pinethemes" - url: "https://marketplace.visualstudio.com/items?itemName=JeylaniB.pine-editor-themes" -colors: - bg: "#FBFBFB" - fg: "#403F53" - black: "#403F53" - red: "#DE3D3B" - green: "#08916A" - yellow: "#E0AF02" - blue: "#288ED7" - magenta: "#D6438A" - cyan: "#2962FF" - white: "#F0F0F0" - brightBlack: "#403F53" - brightRed: "#DE3D3B" - brightGreen: "#08916A" - brightYellow: "#DAAA01" - brightBlue: "#288ED7" - brightMagenta: "#D6438A" - brightCyan: "#2962FF" - brightWhite: "#F0F0F0" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 91.3 - black: 91.3 - red: 66.3 - green: 64.2 - yellow: 37 - blue: 60.1 - magenta: 65.3 - cyan: 70.7 - white: 0 - brightBlack: 91.3 - brightRed: 66.3 - brightGreen: 64.2 - brightYellow: 39.7 - brightBlue: 60.1 - brightMagenta: 65.3 - brightCyan: 70.7 - brightWhite: 0 diff --git a/themes/pine-forest-green-dark.yaml b/themes/pine-forest-green-dark.yaml deleted file mode 100644 index f7924c52..00000000 --- a/themes/pine-forest-green-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pine Forest Green (Dark)" -source: - marketplace_id: "felix-tjernberg.pine-forest-green" - version: "1.0.1" - installs: 1420 - rating: 0 - ratings: 0 - author: "Felix Tjernberg" - repo: "https://github.com/felix-tjernberg/pine-forest-green" - url: "https://marketplace.visualstudio.com/items?itemName=felix-tjernberg.pine-forest-green" -colors: - bg: "#08190A" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 147 - pair: null - contrast: - fg: 107 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.7 - blue: 27.5 - magenta: 29.8 - cyan: 47.6 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.7 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.5 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/pine-forest.yaml b/themes/pine-forest.yaml deleted file mode 100644 index 0b578585..00000000 --- a/themes/pine-forest.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pine Forest" -source: - marketplace_id: "kgnio.sprinklepack" - version: "0.2.5" - installs: 81 - rating: 5 - ratings: 2 - author: "Kagan Mamak" - repo: "https://github.com/kgnio/sprinklepack" - url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" -colors: - bg: "#1B1717" - fg: "#CAC9C9" - black: "#2C2828" - red: "#FF5861" - green: "#1FB854" - yellow: "#FFBE00" - blue: "#1FB8AB" - magenta: "#BA9AB6" - cyan: "#84CBA5" - white: "#DCE1DF" - brightBlack: "#3C3A3A" - brightRed: "#FF7373" - brightGreen: "#2BFF88" - brightYellow: "#FFE36E" - brightBlue: "#74D9D0" - brightMagenta: "#D9A5D4" - brightCyan: "#AAEEDD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 72.9 - black: 0 - red: 44 - green: 50.4 - yellow: 72.8 - blue: 52.8 - magenta: 51.7 - cyan: 65.4 - white: 86.7 - brightBlack: 0 - brightRed: 50 - brightGreen: 86.9 - brightYellow: 89.2 - brightBlue: 72.5 - brightMagenta: 61.5 - brightCyan: 87.2 - brightWhite: 106.8 diff --git a/themes/pine-frizz.yaml b/themes/pine-frizz.yaml deleted file mode 100644 index 1be14fea..00000000 --- a/themes/pine-frizz.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pine FriZz" -source: - marketplace_id: "TradesDontLie.pinescript-v6-vscode" - version: "0.1.0" - installs: 4946 - rating: 0 - ratings: 0 - author: "TradesDontLie" - repo: "https://github.com/yourusername/Pine-Script-v6-VS-Code" - url: "https://marketplace.visualstudio.com/items?itemName=TradesDontLie.pinescript-v6-vscode" -colors: - bg: "#22262E" - fg: "#FFFFFF" - black: "#22262E" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#ADFF2F" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#ADFF2F" -meta: - mode: "dark" - accent: "green" - hue: 264 - pair: null - contrast: - fg: 104.8 - black: 0 - red: 37.2 - green: 65.2 - yellow: 80 - blue: 53.9 - magenta: 51.7 - cyan: 57.6 - white: 90.1 - brightBlack: 13.5 - brightRed: 37.2 - brightGreen: 65.2 - brightYellow: 91.6 - brightBlue: 53.9 - brightMagenta: 51.7 - brightCyan: 71.9 - brightWhite: 90.1 diff --git a/themes/pine-grey.yaml b/themes/pine-grey.yaml deleted file mode 100644 index ffd68915..00000000 --- a/themes/pine-grey.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pine Grey" -source: - marketplace_id: "JeylaniB.pine-editor-themes" - version: "1.0.0" - installs: 12531 - rating: 5 - ratings: 1 - author: "JeylaniB" - repo: "https://github.com/jeyllani/pinethemes" - url: "https://marketplace.visualstudio.com/items?itemName=JeylaniB.pine-editor-themes" -colors: - bg: "#22262E" - fg: "#D6DEEB" - black: "#22262E" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 264 - pair: null - contrast: - fg: 83.1 - black: 0 - red: 37.2 - green: 65.2 - yellow: 80 - blue: 53.9 - magenta: 51.7 - cyan: 57.6 - white: 104.8 - brightBlack: 13.5 - brightRed: 37.2 - brightGreen: 65.2 - brightYellow: 91.6 - brightBlue: 53.9 - brightMagenta: 51.7 - brightCyan: 71.9 - brightWhite: 104.8 diff --git a/themes/pine-theme-original-dark-extend.yaml b/themes/pine-theme-original-dark-extend.yaml deleted file mode 100644 index 7b8af337..00000000 --- a/themes/pine-theme-original-dark-extend.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pine Theme Original Dark Extend" -source: - marketplace_id: "salbert11.pinescript-helper" - version: "3.4.3" - installs: 9799 - rating: 5 - ratings: 2 - author: "salbert11" - repo: "https://github.com/salbert11/pinescript" - url: "https://marketplace.visualstudio.com/items?itemName=salbert11.pinescript-helper" -colors: - bg: "#131623" - fg: "#FFFFFF" - black: "#131722" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#E17518" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#E17518" -meta: - mode: "dark" - accent: "teal" - hue: 274 - pair: null - contrast: - fg: 106.9 - black: 0 - red: 39.3 - green: 67.3 - yellow: 82.1 - blue: 55.9 - magenta: 53.8 - cyan: 59.7 - white: 43.3 - brightBlack: 15.6 - brightRed: 39.3 - brightGreen: 67.3 - brightYellow: 93.7 - brightBlue: 55.9 - brightMagenta: 53.8 - brightCyan: 74 - brightWhite: 43.3 diff --git a/themes/pineapple.yaml b/themes/pineapple.yaml index fbbb1c57..37d02afb 100644 --- a/themes/pineapple.yaml +++ b/themes/pineapple.yaml @@ -8,6 +8,7 @@ source: author: "Ashin Berish" repo: "https://github.com/ashinberish/PineApple-theme-VScode" url: "https://marketplace.visualstudio.com/items?itemName=AshinBerish.pineapple" + formats: null colors: bg: "#F6FFE8" fg: "#171C28" diff --git a/themes/pines.yaml b/themes/pines.yaml index 81157a24..13f955e6 100644 --- a/themes/pines.yaml +++ b/themes/pines.yaml @@ -1,4 +1,4 @@ -name: "pines" +name: "Pines" source: marketplace_id: "deeppines.pines-visual-studio-code" version: "0.3.0" @@ -8,6 +8,7 @@ source: author: "Lucas Kane" repo: "https://github.com/deeppines/pines-visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=deeppines.pines-visual-studio-code" + formats: null colors: bg: "#253447" fg: "#D4D4D4" diff --git a/themes/pingocho-dark.yaml b/themes/pingocho-dark.yaml index ee95345c..ba7e81a5 100644 --- a/themes/pingocho-dark.yaml +++ b/themes/pingocho-dark.yaml @@ -1,4 +1,4 @@ -name: "Pingocho dark" +name: "Pingocho Dark" source: marketplace_id: "pingocho.pingocho-dark" version: "1.0.4" @@ -8,6 +8,7 @@ source: author: "Leo Marello" repo: "https://github.com/lmarello/pingocho-dark-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=pingocho.pingocho-dark" + formats: null colors: bg: "#15181F" fg: "#D5D5D5" diff --git a/themes/pink-candy-dark-warm.yaml b/themes/pink-candy-dark-warm.yaml deleted file mode 100644 index 76c78b7f..00000000 --- a/themes/pink-candy-dark-warm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pink Candy Dark Warm" -source: - marketplace_id: "kuba-p.theme-pink-candy" - version: "1.6.0" - installs: 31786 - rating: 5 - ratings: 3 - author: "kuba_p" - repo: "https://github.com/KubaP/vscode-pink-candy" - url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" -colors: - bg: "#1D2021" - fg: "#BDAE93" - black: "#FBF1C7" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#1D2021" - brightBlack: "#666666" - brightRed: "#FB4934" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#8EC07C" - brightWhite: "#FBF1C7" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 57.3 - black: 96.3 - red: 24.2 - green: 41.9 - yellow: 51.5 - blue: 30.5 - magenta: 30.7 - cyan: 40.9 - white: 0 - brightBlack: 21 - brightRed: 39.1 - brightGreen: 60.1 - brightYellow: 70.8 - brightBlue: 47.6 - brightMagenta: 46.9 - brightCyan: 59.1 - brightWhite: 96.3 diff --git a/themes/pink-candy-dark.yaml b/themes/pink-candy-dark.yaml deleted file mode 100644 index c3ff0aa2..00000000 --- a/themes/pink-candy-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pink Candy Dark" -source: - marketplace_id: "kuba-p.theme-pink-candy" - version: "1.6.0" - installs: 31786 - rating: 5 - ratings: 3 - author: "kuba_p" - repo: "https://github.com/KubaP/vscode-pink-candy" - url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" -colors: - bg: "#22222A" - fg: "#ABB2BF" - black: "#FFFFFF" - red: "#FF0046" - green: "#2DAE58" - yellow: "#CF9C00" - blue: "#09A1ED" - magenta: "#C010EF" - cyan: "#13BBB7" - white: "#22222A" - brightBlack: "#666666" - brightRed: "#FF2E87" - brightGreen: "#25DA6A" - brightYellow: "#FFC104" - brightBlue: "#41B9FF" - brightMagenta: "#C75AF3" - brightCyan: "#16DAD6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 285 - pair: "Pink Candy Light" - contrast: - fg: 57.9 - black: 105.4 - red: 35.4 - green: 44.8 - yellow: 50.7 - blue: 45.1 - magenta: 29.4 - cyan: 53.2 - white: 0 - brightBlack: 20.5 - brightRed: 38.4 - brightGreen: 65.7 - brightYellow: 72.6 - brightBlue: 57.1 - brightMagenta: 38.5 - brightCyan: 69.1 - brightWhite: 105.4 diff --git a/themes/pink-candy-light.yaml b/themes/pink-candy-light.yaml deleted file mode 100644 index ad18204a..00000000 --- a/themes/pink-candy-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pink Candy Light" -source: - marketplace_id: "kuba-p.theme-pink-candy" - version: "1.6.0" - installs: 31786 - rating: 5 - ratings: 3 - author: "kuba_p" - repo: "https://github.com/KubaP/vscode-pink-candy" - url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" -colors: - bg: "#FAFBFC" - fg: "#565869" - black: "#FAFBFC" - red: "#FF5C57" - green: "#2DAE58" - yellow: "#C69613" - blue: "#09A1ED" - magenta: "#C75AF3" - cyan: "#27B0AC" - white: "#565869" - brightBlack: "#8B8FA0" - brightRed: "#DB3839" - brightGreen: "#1E9347" - brightYellow: "#A1790C" - brightBlue: "#1684C2" - brightMagenta: "#A853CB" - brightCyan: "#288D8A" - brightWhite: "#343545" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Pink Candy Dark" - contrast: - fg: 81.8 - black: 0 - red: 53.6 - green: 52 - yellow: 49.7 - blue: 51.7 - magenta: 58.2 - cyan: 48.8 - white: 81.8 - brightBlack: 56.9 - brightRed: 67.5 - brightGreen: 63.9 - brightYellow: 64.6 - brightBlue: 65.2 - brightMagenta: 67.5 - brightCyan: 64.4 - brightWhite: 95.1 diff --git a/themes/pink-flower.yaml b/themes/pink-flower.yaml deleted file mode 100644 index fcbf7648..00000000 --- a/themes/pink-flower.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pink Flower" -source: - marketplace_id: "stevennyang.green-tree" - version: "1.2.1" - installs: 5716 - rating: 5 - ratings: 1 - author: "Steven N. Yang" - repo: "https://github.com/snyang/vscode-theme-green-tree" - url: "https://marketplace.visualstudio.com/items?itemName=stevennyang.green-tree" -colors: - bg: "#FFF0F1" - fg: "#232323" - black: "#000000" - red: "#FF0000" - green: "#3CB371" - yellow: "#BDB76B" - blue: "#0000FF" - magenta: "#FF00FF" - cyan: "#00BFFF" - white: "#3CB371" - brightBlack: "#708090" - brightRed: "#8B0000" - brightGreen: "#3CB371" - brightYellow: "#BDB76B" - brightBlue: "#00008B" - brightMagenta: "#8B008B" - brightCyan: "#87CEFA" - brightWhite: "#3CB371" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 95.7 - black: 99.1 - red: 57.2 - green: 44.5 - yellow: 33.4 - blue: 78.9 - magenta: 48.6 - cyan: 33.9 - white: 44.5 - brightBlack: 60.8 - brightRed: 83.8 - brightGreen: 44.5 - brightYellow: 33.4 - brightBlue: 93 - brightMagenta: 80.1 - brightCyan: 23.8 - brightWhite: 44.5 diff --git a/themes/pink-high-contrast.yaml b/themes/pink-high-contrast.yaml deleted file mode 100644 index b3d97338..00000000 --- a/themes/pink-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pink - High Contrast" -source: - marketplace_id: "madamelasagna.madamelasagna" - version: "1.0.3" - installs: 159 - rating: 0 - ratings: 0 - author: "madamelasagna" - repo: "https://github.com/alyssapinnock/pink-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=madamelasagna.madamelasagna" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#BC8DAB" - red: "#EC3737" - green: "#5AFFF7" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#EC34EC" - cyan: "#75BEFF" - white: "#F2A2D6" - brightBlack: "#666666" - brightRed: "#FF7B7B" - brightGreen: "#77E2B7" - brightYellow: "#F7F79A" - brightBlue: "#3B8EEA" - brightMagenta: "#EA8FEA" - brightCyan: "#29B8DB" - brightWhite: "#FFB3F7" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 48.2 - red: 35.4 - green: 93.1 - yellow: 86.6 - blue: 28.4 - magenta: 42.4 - cyan: 64.1 - white: 65.8 - brightBlack: 23 - brightRed: 53.3 - brightGreen: 77.1 - brightYellow: 99.3 - brightBlue: 41 - brightMagenta: 59.5 - brightCyan: 56.4 - brightWhite: 75.7 diff --git a/themes/pink-neon.yaml b/themes/pink-neon.yaml deleted file mode 100644 index 09931a73..00000000 --- a/themes/pink-neon.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Pink Neon" -source: - marketplace_id: "puszkarek.arasaka-inferno-vscode-theme" - version: "1.2.0" - installs: 268 - author: "Puszkarek" - repo: "https://github.com/Puszkarek/arasaka-inferno-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.arasaka-inferno-vscode-theme" -colors: - bg: "#160E17" - fg: "#63A6FD" - black: "#160E17" - red: "#FF2E6E" - green: "#D425A5" - yellow: "#F0B437" - blue: "#00FFCC" - magenta: "#FF00AA" - cyan: "#00FFF7" - white: "#D425A5" - brightBlack: "#050305" - brightRed: "#FF2E6E" - brightGreen: "#D425A5" - brightYellow: "#F0B437" - brightBlue: "#00FFCC" - brightMagenta: "#FF00A8" - brightCyan: "#00FFF7" - brightWhite: "#8FBFFF" -meta: - mode: "dark" - accent: "red" - hue: 323 - pair: null - contrast: - fg: 52.6 - black: 0 - red: 39.7 - green: 31.2 - yellow: 67.2 - blue: 89.3 - magenta: 40.4 - cyan: 91.3 - white: 31.2 - brightBlack: 0 - brightRed: 39.7 - brightGreen: 31.2 - brightYellow: 67.2 - brightBlue: 89.3 - brightMagenta: 40.3 - brightCyan: 91.3 - brightWhite: 66 diff --git a/themes/pink-theme.yaml b/themes/pink-theme.yaml deleted file mode 100644 index f2eb0de7..00000000 --- a/themes/pink-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pink Theme" -source: - marketplace_id: "huacat.pink-theme" - version: "1.1.2" - installs: 71499 - rating: 5 - ratings: 12 - author: "huacat" - repo: "https://github.com/huacat1017/huacat.pink-theme" - url: "https://marketplace.visualstudio.com/items?itemName=huacat.pink-theme" -colors: - bg: "#F5EAF5" - fg: "#72696F" - black: "#38313B" - red: "#D14040" - green: "#3D8B1C" - yellow: "#C4990D" - blue: "#5782DF" - magenta: "#9045D6" - cyan: "#3CA89A" - white: "#72696F" - brightBlack: "#6B5D72" - brightRed: "#DB6363" - brightGreen: "#62AD44" - brightYellow: "#E2B213" - brightBlue: "#88A4E2" - brightMagenta: "#A770DB" - brightCyan: "#6AC0B9" - brightWhite: "#978C94" -meta: - mode: "light" - accent: "magenta" - hue: 326 - pair: null - contrast: - fg: 65.8 - black: 88 - red: 60.6 - green: 58.7 - yellow: 40.9 - blue: 53.9 - magenta: 64.7 - cyan: 44.4 - white: 65.8 - brightBlack: 70 - brightRed: 51.5 - brightGreen: 42.7 - brightYellow: 27.4 - brightBlue: 38.2 - brightMagenta: 51.9 - brightCyan: 31.1 - brightWhite: 49.1 diff --git a/themes/pink.yaml b/themes/pink.yaml deleted file mode 100644 index 6057f397..00000000 --- a/themes/pink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pink" -source: - marketplace_id: "BayuSetiawan.kanao" - version: "1.4.0" - installs: 1890 - rating: 3.5 - ratings: 2 - author: "Bayu Setiawan" - repo: "https://github.com/Bayusetiawan45/kanao" - url: "https://marketplace.visualstudio.com/items?itemName=BayuSetiawan.kanao" -colors: - bg: "#FFECF0" - fg: "#E000A8" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 59.5 - black: 97.4 - red: 65.4 - green: 40.6 - yellow: 49.3 - blue: 77.4 - magenta: 65.9 - cyan: 52 - white: 77.3 - brightBlack: 70.1 - brightRed: 65.4 - brightGreen: 32.3 - brightYellow: 32.3 - brightBlue: 77.4 - brightMagenta: 65.9 - brightCyan: 52 - brightWhite: 39.8 diff --git a/themes/pinkandgreen.yaml b/themes/pinkandgreen.yaml deleted file mode 100644 index 165266d4..00000000 --- a/themes/pinkandgreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "pinkAndGreen" -source: - marketplace_id: "sebula.pinkandgreen" - version: "0.0.1" - installs: 435 - rating: 0 - ratings: 0 - author: "Sebula" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=sebula.pinkandgreen" -colors: - bg: "#1E1E1E" - fg: "#FFB6B6" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 71.9 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/pinkandwhite.yaml b/themes/pinkandwhite.yaml index 22bb07c2..bd506d78 100644 --- a/themes/pinkandwhite.yaml +++ b/themes/pinkandwhite.yaml @@ -8,6 +8,7 @@ source: author: "Aninha Pardini" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AninhaPardini.pinkandwhite" + formats: null colors: bg: "#FFFFFF" fg: "#C441B6" diff --git a/themes/pinkcloud.yaml b/themes/pinkcloud.yaml index bf13fb9f..e3fa8e93 100644 --- a/themes/pinkcloud.yaml +++ b/themes/pinkcloud.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "priteshlad3.katanax" version: "0.0.1" installs: 9 + rating: 0 + ratings: 0 author: "priteshlad3" repo: "https://github.com/pritesh88/katanax-theme" url: "https://marketplace.visualstudio.com/items?itemName=priteshlad3.katanax" + formats: null colors: bg: "#F8EEF2" fg: "#2A2A3A" diff --git a/themes/pinkcodes-pink.yaml b/themes/pinkcodes-pink.yaml deleted file mode 100644 index 4a60714a..00000000 --- a/themes/pinkcodes-pink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "PinkCodes Pink" -source: - marketplace_id: "PinkCodes.pinkcodes" - version: "0.0.22" - installs: 4040 - rating: 5 - ratings: 2 - author: "PinkCodes" - repo: "https://github.com/pinkc0des/pinkcodes-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=PinkCodes.pinkcodes" -colors: - bg: "#0B010B" - fg: "#D4D4D4" - black: "#0B010B" - red: "#F03880" - green: "#5DD465" - yellow: "#DAD16F" - blue: "#78D1E1" - magenta: "#988BC7" - cyan: "#A1EFE4" - white: "#E1E1E6" - brightBlack: "#626483" - brightRed: "#ED4556" - brightGreen: "#00F769" - brightYellow: "#DAD16F" - brightBlue: "#78D1E1" - brightMagenta: "#988BC7" - brightCyan: "#A4FFFF" - brightWhite: "#F7F7FB" -meta: - mode: "dark" - accent: "green" - hue: 328 - pair: null - contrast: - fg: 80.4 - black: 0 - red: 38 - green: 66.7 - yellow: 76.8 - blue: 70.9 - magenta: 44.2 - cyan: 88.2 - white: 88.7 - brightBlack: 23.1 - brightRed: 37.8 - brightGreen: 82.9 - brightYellow: 76.8 - brightBlue: 70.9 - brightMagenta: 44.2 - brightCyan: 97.7 - brightWhite: 102.7 diff --git a/themes/pinkdark.yaml b/themes/pinkdark.yaml deleted file mode 100644 index 468ada5b..00000000 --- a/themes/pinkdark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "PINKDARK" -source: - marketplace_id: "srtakennedy.pink-dark" - version: "0.0.8" - installs: 3077 - rating: 0 - ratings: 0 - author: "srtakennedy" - repo: "https://github.com/SrtaKennedy" - url: "https://marketplace.visualstudio.com/items?itemName=srtakennedy.pink-dark" -colors: - bg: "#242223" - fg: "#FFCCD5" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 81 - black: 0 - red: 25.2 - green: 51.5 - yellow: 84.1 - blue: 25.9 - magenta: 28.3 - cyan: 46.1 - white: 88.5 - brightBlack: 20.5 - brightRed: 37.1 - brightGreen: 62 - brightYellow: 94.1 - brightBlue: 38.5 - brightMagenta: 43.9 - brightCyan: 53.9 - brightWhite: 88.5 diff --git a/themes/pinkdopeybug-primordial-origin.yaml b/themes/pinkdopeybug-primordial-origin.yaml index 5cb99817..e2fe24e4 100644 --- a/themes/pinkdopeybug-primordial-origin.yaml +++ b/themes/pinkdopeybug-primordial-origin.yaml @@ -8,6 +8,7 @@ source: author: "PinkDopeyBug" repo: "https://github.com/PinkDopeyBug/pinkdopeybug-theme" url: "https://marketplace.visualstudio.com/items?itemName=PinkDopeyBug.pinkdopeybug" + formats: null colors: bg: "#F0F0F0" fg: "#1E1E1E" diff --git a/themes/pinkmare.yaml b/themes/pinkmare.yaml index 5f9ea17f..fcd58d37 100644 --- a/themes/pinkmare.yaml +++ b/themes/pinkmare.yaml @@ -1,13 +1,15 @@ -name: "Pinkmare" +name: "pinkmare" source: marketplace_id: "Matsuuu.pinkmare" version: "0.4.0" - installs: 1333 + installs: 1334 rating: 0 ratings: 0 author: "Matsuuu" repo: "https://github.com/Matsuuu/pinkmare" url: "https://marketplace.visualstudio.com/items?itemName=Matsuuu.pinkmare" + formats: + vim: "https://raw.githubusercontent.com/Matsuuu/pinkmare/main/colors/pinkmare.vim" colors: bg: "#202330" fg: "#FAE8B6" diff --git a/themes/pinkppuccin.yaml b/themes/pinkppuccin.yaml index 5288737d..962f53fe 100644 --- a/themes/pinkppuccin.yaml +++ b/themes/pinkppuccin.yaml @@ -1,4 +1,4 @@ -name: "Pinkppuccin" +name: "pinkppuccin" source: marketplace_id: "mamir.pinkppuccin" version: "1.1.0" @@ -8,6 +8,7 @@ source: author: "mamir" repo: "https://github.com/musaamir/pinkppuccin" url: "https://marketplace.visualstudio.com/items?itemName=mamir.pinkppuccin" + formats: null colors: bg: "#231E2D" fg: "#DCD1F4" diff --git a/themes/pinky-promise-dark.yaml b/themes/pinky-promise-dark.yaml deleted file mode 100644 index abdece57..00000000 --- a/themes/pinky-promise-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pinky Promise Dark" -source: - marketplace_id: "ZubairIbnZamir.pinky-promise-theme" - version: "1.0.6" - installs: 458 - rating: 0 - ratings: 0 - author: "Zubair Ibn Zamir" - repo: "https://github.com/2u841r/pinky-promise-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ZubairIbnZamir.pinky-promise-theme" -colors: - bg: "#1D1921" - fg: "#D2C7E1" - black: "#7A6483" - red: "#F888B5" - green: "#96D0BB" - yellow: "#FFBC9E" - blue: "#A2DBFF" - magenta: "#BAA4ED" - cyan: "#96D0BB" - white: "#D2C7E1" - brightBlack: "#7A6483" - brightRed: "#F888B5" - brightGreen: "#96D0BB" - brightYellow: "#FFBC9E" - brightBlue: "#A2DBFF" - brightMagenta: "#E8A5E4" - brightCyan: "#96D0BB" - brightWhite: "#F2EBFA" -meta: - mode: "dark" - accent: "red" - hue: 308 - pair: "Pinky Promise Light" - contrast: - fg: 73.9 - black: 24.1 - red: 55.9 - green: 69.6 - yellow: 73.8 - blue: 78.9 - magenta: 57.9 - cyan: 69.6 - white: 73.9 - brightBlack: 24.1 - brightRed: 55.9 - brightGreen: 69.6 - brightYellow: 73.8 - brightBlue: 78.9 - brightMagenta: 64.4 - brightCyan: 69.6 - brightWhite: 95.1 diff --git a/themes/pinky-promise-light.yaml b/themes/pinky-promise-light.yaml deleted file mode 100644 index c73d4528..00000000 --- a/themes/pinky-promise-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pinky Promise Light" -source: - marketplace_id: "ZubairIbnZamir.pinky-promise-theme" - version: "1.0.6" - installs: 458 - rating: 0 - ratings: 0 - author: "Zubair Ibn Zamir" - repo: "https://github.com/2u841r/pinky-promise-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ZubairIbnZamir.pinky-promise-theme" -colors: - bg: "#F5EDFA" - fg: "#673C8B" - black: "#A289A9" - red: "#C51478" - green: "#487E70" - yellow: "#D2626C" - blue: "#5579BC" - magenta: "#6C4CBC" - cyan: "#487E70" - white: "#673C8B" - brightBlack: "#A289A9" - brightRed: "#C51478" - brightGreen: "#487E70" - brightYellow: "#D2626C" - brightBlue: "#5579BC" - brightMagenta: "#B74CBB" - brightCyan: "#487E70" - brightWhite: "#563271" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Pinky Promise Dark" - contrast: - fg: 78.6 - black: 49.4 - red: 66.9 - green: 63.3 - yellow: 54.8 - blue: 60.8 - magenta: 71.4 - cyan: 63.3 - white: 78.6 - brightBlack: 49.4 - brightRed: 66.9 - brightGreen: 63.3 - brightYellow: 54.8 - brightBlue: 60.8 - brightMagenta: 60.8 - brightCyan: 63.3 - brightWhite: 83.9 diff --git a/themes/pinkyboo.yaml b/themes/pinkyboo.yaml deleted file mode 100644 index 8b83c0db..00000000 --- a/themes/pinkyboo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pinkyboo" -source: - marketplace_id: "kissa1001.pinkyboo-theme" - version: "1.0.3" - installs: 3325 - rating: 0 - ratings: 0 - author: "kissa1001" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=kissa1001.pinkyboo-theme" -colors: - bg: "#FBFBFB" - fg: "#5A5A5A" - black: "#747273" - red: "#CD3131" - green: "#00BC00" - yellow: "#F0E43B" - blue: "#7FB8F5" - magenta: "#FF13B9" - cyan: "#0598BC" - white: "#FFAFEB" - brightBlack: "#B3B3B3" - brightRed: "#E25555" - brightGreen: "#14CE14" - brightYellow: "#EBC13F" - brightBlue: "#7FB3EC" - brightMagenta: "#FF71E2" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 81.5 - black: 70.8 - red: 71.6 - green: 46.8 - yellow: 13.4 - blue: 38.2 - magenta: 57.5 - cyan: 58.2 - white: 26.8 - brightBlack: 38.7 - brightRed: 61.4 - brightGreen: 38.5 - brightYellow: 28.3 - brightBlue: 40.7 - brightMagenta: 44.4 - brightCyan: 58.2 - brightWhite: 46.1 diff --git a/themes/pinot-gris.yaml b/themes/pinot-gris.yaml index df207c82..3e369325 100644 --- a/themes/pinot-gris.yaml +++ b/themes/pinot-gris.yaml @@ -8,6 +8,7 @@ source: author: "Dionis Uliu" repo: "https://github.com/DionisUliu/dionis-theme" url: "https://marketplace.visualstudio.com/items?itemName=DionisUliu.dionis-theme" + formats: null colors: bg: "#24202C" fg: "#D4D4D4" diff --git a/themes/pinya-theme.yaml b/themes/pinya-theme.yaml index 126a95bd..65b29fd8 100644 --- a/themes/pinya-theme.yaml +++ b/themes/pinya-theme.yaml @@ -8,6 +8,7 @@ source: author: "Pinya" repo: "https://github.com/CarlesRojas/pinya-theme" url: "https://marketplace.visualstudio.com/items?itemName=Pinya.pinya-theme" + formats: null colors: bg: "#090909" fg: "#E3E3E3" diff --git a/themes/pipboy-theme.yaml b/themes/pipboy-theme.yaml index a9728895..61e80137 100644 --- a/themes/pipboy-theme.yaml +++ b/themes/pipboy-theme.yaml @@ -8,6 +8,7 @@ source: author: "smv7" repo: "https://github.com/smv7/pipboy-theme" url: "https://marketplace.visualstudio.com/items?itemName=smv7.pipboy-theme" + formats: null colors: bg: "#04210F" fg: "#3DE289" diff --git a/themes/pirate-flat-theme.yaml b/themes/pirate-flat-theme.yaml index db721500..8ed21202 100644 --- a/themes/pirate-flat-theme.yaml +++ b/themes/pirate-flat-theme.yaml @@ -1,4 +1,4 @@ -name: "pirate-flat-theme" +name: "Pirate Flat Theme" source: marketplace_id: "Pinperepette.pirate-flat-theme" version: "0.1.1" @@ -8,6 +8,7 @@ source: author: "Pinperepette" repo: "https://github.com/Pinperepette/pirate-flat" url: "https://marketplace.visualstudio.com/items?itemName=Pinperepette.pirate-flat-theme" + formats: null colors: bg: "#272822" fg: "#F5EEEE" diff --git a/themes/pirulug-dark.yaml b/themes/pirulug-dark.yaml index 84cfd874..73a0f232 100644 --- a/themes/pirulug-dark.yaml +++ b/themes/pirulug-dark.yaml @@ -8,6 +8,7 @@ source: author: "Pirulug" repo: "https://github.com/pirulug/pirulug-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Pirulug.pirulug-theme" + formats: null colors: bg: "#0D1017" fg: "#E0DFD0" diff --git a/themes/pirulug-ligt.yaml b/themes/pirulug-ligt.yaml index e9a96d6a..427a268b 100644 --- a/themes/pirulug-ligt.yaml +++ b/themes/pirulug-ligt.yaml @@ -8,6 +8,7 @@ source: author: "Pirulug" repo: "https://github.com/pirulug/pirulug-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Pirulug.pirulug-theme" + formats: null colors: bg: "#F6F7F9" fg: "#1F2328" diff --git a/themes/pistachio-madness.yaml b/themes/pistachio-madness.yaml index 0b91ca29..8271cf30 100644 --- a/themes/pistachio-madness.yaml +++ b/themes/pistachio-madness.yaml @@ -2,12 +2,13 @@ name: "Pistachio Madness" source: marketplace_id: "yubiDev.pistachio-madness-theme" version: "0.0.7" - installs: 236 + installs: 237 rating: 0 ratings: 0 author: "yoobdev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=yubiDev.pistachio-madness-theme" + formats: null colors: bg: "#66A387" fg: "#00EE89" diff --git a/themes/pitaya-smoothie.yaml b/themes/pitaya-smoothie.yaml index 642191cd..4b97f2f8 100644 --- a/themes/pitaya-smoothie.yaml +++ b/themes/pitaya-smoothie.yaml @@ -8,6 +8,8 @@ source: author: "Tania Allard" repo: "https://github.com/trallard/pitaya_smoothie" url: "https://marketplace.visualstudio.com/items?itemName=trallard.pitaya-smoothie" + formats: + sublime: "https://raw.githubusercontent.com/trallard/pitaya_smoothie/main/themes/pitaya_milkshake.tmTheme" colors: bg: "#181036" fg: "#FEFEFF" diff --git a/themes/pittaya-theme-light.yaml b/themes/pittaya-theme-light.yaml deleted file mode 100644 index 4991ed4e..00000000 --- a/themes/pittaya-theme-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pittaya Theme Light" -source: - marketplace_id: "pittaya-org.pittaya-theme" - version: "1.0.1" - installs: 45 - rating: 5 - ratings: 2 - author: "pittaya-org" - repo: "https://github.com/pittaya-ui/pittaya-theme" - url: "https://marketplace.visualstudio.com/items?itemName=pittaya-org.pittaya-theme" -colors: - bg: "#FAFAFA" - fg: "#2A2A2A" - black: "#000000" - red: "#D91656" - green: "#2F9E44" - yellow: "#D97900" - blue: "#1864AB" - magenta: "#AE3EC9" - cyan: "#0C8599" - white: "#2A2A2A" - brightBlack: "#606060" - brightRed: "#FF637E" - brightGreen: "#50C878" - brightYellow: "#FFAA00" - brightBlue: "#4D9FFF" - brightMagenta: "#DA77F2" - brightCyan: "#15AABF" - brightWhite: "#1A1A1A" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 98.1 - black: 103 - red: 69.4 - green: 58.6 - yellow: 55 - blue: 76.9 - magenta: 69.7 - cyan: 66.6 - white: 98.1 - brightBlack: 78.3 - brightRed: 50.9 - brightGreen: 38.4 - brightYellow: 33 - brightBlue: 49.4 - brightMagenta: 48.3 - brightCyan: 50.2 - brightWhite: 101.3 diff --git a/themes/pittaya-theme.yaml b/themes/pittaya-theme.yaml deleted file mode 100644 index caf20049..00000000 --- a/themes/pittaya-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pittaya Theme" -source: - marketplace_id: "pittaya-org.pittaya-theme" - version: "1.0.1" - installs: 45 - rating: 5 - ratings: 2 - author: "pittaya-org" - repo: "https://github.com/pittaya-ui/pittaya-theme" - url: "https://marketplace.visualstudio.com/items?itemName=pittaya-org.pittaya-theme" -colors: - bg: "#1A1A1A" - fg: "#E8E8E8" - black: "#1A1A1A" - red: "#FF637E" - green: "#8FD460" - yellow: "#FFCC66" - blue: "#4D9FFF" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#E0E0E0" - brightBlack: "#606060" - brightRed: "#FF637E" - brightGreen: "#8FD460" - brightYellow: "#FFCC66" - brightBlue: "#4D9FFF" - brightMagenta: "#FF79C6" - brightCyan: "#8BE9FD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 91.6 - black: 0 - red: 46.6 - green: 68.5 - yellow: 78.9 - blue: 48.2 - magenta: 54.2 - cyan: 83.6 - white: 86.5 - brightBlack: 19.2 - brightRed: 46.6 - brightGreen: 68.5 - brightYellow: 78.9 - brightBlue: 48.2 - brightMagenta: 54.2 - brightCyan: 83.6 - brightWhite: 106.5 diff --git a/themes/pittcsc-theme.yaml b/themes/pittcsc-theme.yaml deleted file mode 100644 index ff7cfd24..00000000 --- a/themes/pittcsc-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "PittCSC Theme" -source: - marketplace_id: "QuentinRomeroLauro.pittcsc-theme" - version: "0.1.2" - installs: 80 - rating: 5 - ratings: 11 - author: "Quentin Romero Lauro" - repo: "https://github.com/QuentinRomeroLauro/PittCSC-VSCode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=QuentinRomeroLauro.pittcsc-theme" -colors: - bg: "#1E1E1E" - fg: "#F8F8F2" - black: "#252525" - red: "#F08080" - green: "#98C379" - yellow: "#E5C875" - blue: "#E5C875" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#E0E0E0" - brightBlack: "#252525" - brightRed: "#FF9090" - brightGreen: "#A8D389" - brightYellow: "#F5D885" - brightBlue: "#F5D885" - brightMagenta: "#D688ED" - brightCyan: "#66C6D2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 101.1 - black: 0 - red: 49.9 - green: 61.4 - yellow: 72.9 - blue: 72.9 - magenta: 44.3 - cyan: 53.7 - white: 86 - brightBlack: 0 - brightRed: 57.9 - brightGreen: 70.6 - brightYellow: 82.5 - brightBlue: 82.5 - brightMagenta: 52.4 - brightCyan: 62.3 - brightWhite: 106 diff --git a/themes/pixeye-theme.yaml b/themes/pixeye-theme.yaml index 3acef6f3..e79394fd 100644 --- a/themes/pixeye-theme.yaml +++ b/themes/pixeye-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Pixeye.pixeye-theme" version: "0.1.2" installs: 40 + rating: 0 + ratings: 0 author: "Pixeye" repo: "https://github.com/PixeyeHQ/pixeye-theme-vs" url: "https://marketplace.visualstudio.com/items?itemName=Pixeye.pixeye-theme" + formats: null colors: bg: "#FAFAFA" fg: "#766E6B" diff --git a/themes/pizarra.yaml b/themes/pizarra.yaml index f831169e..21aa5188 100644 --- a/themes/pizarra.yaml +++ b/themes/pizarra.yaml @@ -1,11 +1,14 @@ -name: "Pizarra" +name: "pizarra" source: marketplace_id: "afgomez.pizarra" version: "0.2.1" installs: 278 + rating: 0 + ratings: 0 author: "Alejandro Fernández" repo: "http://github.com/afgomez/pizarra.vscode" url: "https://marketplace.visualstudio.com/items?itemName=afgomez.pizarra" + formats: null colors: bg: "#171717" fg: "#FFFFFF" diff --git a/themes/pk-vscode-theme.yaml b/themes/pk-vscode-theme.yaml index c00c5b29..84cd7d36 100644 --- a/themes/pk-vscode-theme.yaml +++ b/themes/pk-vscode-theme.yaml @@ -8,6 +8,7 @@ source: author: "krudi" repo: "https://github.com/krudi/pk-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=krudi.pk-vscode-theme" + formats: null colors: bg: "#202020" fg: "#E1E4E8" diff --git a/themes/plane.yaml b/themes/plane.yaml index 42d919f2..ca194416 100644 --- a/themes/plane.yaml +++ b/themes/plane.yaml @@ -8,6 +8,7 @@ source: author: "Plane theme" repo: "https://github.com/wfpaisa/plane-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Planetheme.plane-theme" + formats: null colors: bg: "#222635" fg: "#FFFFFF" diff --git a/themes/plantillathemes.yaml b/themes/plantillathemes.yaml index 51a96916..6528fa1a 100644 --- a/themes/plantillathemes.yaml +++ b/themes/plantillathemes.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/inspiration_themevsc" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" + formats: null colors: bg: "#020F31" fg: "#FFFFFF" diff --git a/themes/plasma-pink.yaml b/themes/plasma-pink.yaml deleted file mode 100644 index c03f1e11..00000000 --- a/themes/plasma-pink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Plasma Pink" -source: - marketplace_id: "CodewithBismillah.chroma-library" - version: "1.2.1" - installs: 358 - rating: 5 - ratings: 1 - author: "Code with Bismillah" - repo: "https://github.com/mubashir1837/Chroma-Library" - url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" -colors: - bg: "#1A0A1A" - fg: "#FFE0FF" - black: "#000000" - red: "#FF1493" - green: "#FF69B4" - yellow: "#FFC0CB" - blue: "#DA70D6" - magenta: "#FF00FF" - cyan: "#DDA0DD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#FF69B4" - brightGreen: "#FFB6C1" - brightYellow: "#FFE4E1" - brightBlue: "#EE82EE" - brightMagenta: "#FF40FF" - brightCyan: "#F0E0FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 327 - pair: null - contrast: - fg: 93.3 - black: 0 - red: 39.6 - green: 50.6 - yellow: 77.8 - blue: 46.6 - magenta: 45.7 - cyan: 61.5 - white: 107.4 - brightBlack: 22.5 - brightRed: 50.6 - brightGreen: 73.7 - brightYellow: 93.6 - brightBlue: 56.3 - brightMagenta: 48.6 - brightCyan: 91.1 - brightWhite: 107.4 diff --git a/themes/plasticine.yaml b/themes/plasticine.yaml deleted file mode 100644 index 0cb62fd4..00000000 --- a/themes/plasticine.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Plasticine" -source: - marketplace_id: "myxlxal.plasticine" - version: "0.7.1" - installs: 845 - rating: 5 - ratings: 1 - author: "Myxlxal" - repo: "https://github.com/OlegKrechkovskiy/plasticine" - url: "https://marketplace.visualstudio.com/items?itemName=myxlxal.plasticine" -colors: - bg: "#21252B" - fg: "#A9B2C3" - black: "#5F6672" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#B57EDC" - cyan: "#56B6C2" - white: "#A9B2C3" - brightBlack: "#5F6672" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#61AFEF" - brightMagenta: "#B57EDC" - brightCyan: "#56B6C2" - brightWhite: "#A9B2C3" -meta: - mode: "dark" - accent: "magenta" - hue: 258 - pair: null - contrast: - fg: 57.5 - black: 20 - red: 40.2 - green: 60.4 - yellow: 68.7 - blue: 52.8 - magenta: 42.3 - cyan: 52.7 - white: 57.5 - brightBlack: 20 - brightRed: 40.2 - brightGreen: 60.4 - brightYellow: 68.7 - brightBlue: 52.8 - brightMagenta: 42.3 - brightCyan: 52.7 - brightWhite: 57.5 diff --git a/themes/plasticman.yaml b/themes/plasticman.yaml index abfa189c..b9e29ad3 100644 --- a/themes/plasticman.yaml +++ b/themes/plasticman.yaml @@ -8,6 +8,7 @@ source: author: "silvncr" repo: null url: "https://marketplace.visualstudio.com/items?itemName=silvncr.plasticman" + formats: null colors: bg: "#1F1F47" fg: "#EA5C00" diff --git a/themes/platzi-theme.yaml b/themes/platzi-theme.yaml index 02b5fbc9..eca32aa7 100644 --- a/themes/platzi-theme.yaml +++ b/themes/platzi-theme.yaml @@ -1,4 +1,4 @@ -name: "Platzi Theme" +name: "Platzi_theme" source: marketplace_id: "YesCode.platzi-theme" version: "0.0.9" @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/platziTheme" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.platzi-theme" + formats: null colors: bg: "#03091E" fg: "#EEFFFF" diff --git a/themes/playground-theme-dark.yaml b/themes/playground-theme-dark.yaml index 0700467b..def3e90e 100644 --- a/themes/playground-theme-dark.yaml +++ b/themes/playground-theme-dark.yaml @@ -8,6 +8,7 @@ source: author: "zer0deck" repo: "https://github.com/zer0deck/Playground-Themes-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=zer0deck.playground-theme-dark" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/playground-theme.yaml b/themes/playground-theme.yaml index 51e21d38..e4705fad 100644 --- a/themes/playground-theme.yaml +++ b/themes/playground-theme.yaml @@ -8,6 +8,7 @@ source: author: "zer0deck" repo: "https://github.com/zer0deck/Playground-Themes-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=zer0deck.playground-theme-light" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/playground.yaml b/themes/playground.yaml index ccfbdfcc..66ae6165 100644 --- a/themes/playground.yaml +++ b/themes/playground.yaml @@ -8,6 +8,7 @@ source: author: "KidTokio" repo: null url: "https://marketplace.visualstudio.com/items?itemName=KidTokio.playground-academy-theme" + formats: null colors: bg: "#16141B" fg: "#FFFFFF" diff --git a/themes/pleasure-contrast.yaml b/themes/pleasure-contrast.yaml deleted file mode 100644 index 22c125ba..00000000 --- a/themes/pleasure-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "pleasure-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#17191C" - fg: "#C0CCDB" - black: "#23262A" - red: "#BA0E2E" - green: "#A175BA" - yellow: "#DD5D7A" - blue: "#A1CBC6" - magenta: "#DD5D7A" - cyan: "#A1CBC6" - white: "#D0D9E4" - brightBlack: "#454B54" - brightRed: "#F03E5F" - brightGreen: "#CFB9DC" - brightYellow: "#EFB1BF" - brightBlue: "#E3EFEE" - brightMagenta: "#EFB1BF" - brightCyan: "#E3EFEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 73.7 - black: 0 - red: 20.3 - green: 36.6 - yellow: 38.1 - blue: 69 - magenta: 38.1 - cyan: 69 - white: 81.7 - brightBlack: 10.9 - brightRed: 36.6 - brightGreen: 67.8 - brightYellow: 68.3 - brightBlue: 94.6 - brightMagenta: 68.3 - brightCyan: 94.6 - brightWhite: 106.7 diff --git a/themes/pleasure-light.yaml b/themes/pleasure-light.yaml deleted file mode 100644 index 18a1ca7f..00000000 --- a/themes/pleasure-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "pleasure-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#474E56" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#A175BA" - yellow: "#DD5D7A" - blue: "#A1CBC6" - magenta: "#DD5D7A" - cyan: "#A1CBC6" - white: "#535B64" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#CFB9DC" - brightYellow: "#EFB1BF" - brightBlue: "#E3EFEE" - brightMagenta: "#EFB1BF" - brightCyan: "#E3EFEE" - brightWhite: "#76818D" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.1 - black: 0 - red: 80.3 - green: 63.9 - yellow: 62.4 - blue: 32.5 - magenta: 62.4 - cyan: 32.5 - white: 83.8 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 33.6 - brightYellow: 33.1 - brightBlue: 8.5 - brightMagenta: 33.1 - brightCyan: 8.5 - brightWhite: 67 diff --git a/themes/pleasure.yaml b/themes/pleasure.yaml deleted file mode 100644 index 506d6e00..00000000 --- a/themes/pleasure.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "pleasure" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#32373D" - fg: "#C0CCDB" - black: "#3D444B" - red: "#BA0E2E" - green: "#A175BA" - yellow: "#DD5D7A" - blue: "#A1CBC6" - magenta: "#DD5D7A" - cyan: "#A1CBC6" - white: "#D0D9E4" - brightBlack: "#606A75" - brightRed: "#F03E5F" - brightGreen: "#CFB9DC" - brightYellow: "#EFB1BF" - brightBlue: "#E3EFEE" - brightMagenta: "#EFB1BF" - brightCyan: "#E3EFEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 253 - pair: null - contrast: - fg: 68 - black: 0 - red: 14.7 - green: 31 - yellow: 32.5 - blue: 63.4 - magenta: 32.5 - cyan: 63.4 - white: 76.1 - brightBlack: 17.4 - brightRed: 31 - brightGreen: 62.2 - brightYellow: 62.7 - brightBlue: 88.9 - brightMagenta: 62.7 - brightCyan: 88.9 - brightWhite: 101 diff --git a/themes/plotka-amethyst.yaml b/themes/plotka-amethyst.yaml index 36959aab..4eafd2b4 100644 --- a/themes/plotka-amethyst.yaml +++ b/themes/plotka-amethyst.yaml @@ -8,6 +8,7 @@ source: author: "Vitoria Lopes" repo: "https://github.com/vilopesp/plotka-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=vilopesp.plotka-theme" + formats: null colors: bg: "#141414" fg: "#F8F8F2" diff --git a/themes/pls-my-eyes-sir.yaml b/themes/pls-my-eyes-sir.yaml index b1812ee0..10919a9e 100644 --- a/themes/pls-my-eyes-sir.yaml +++ b/themes/pls-my-eyes-sir.yaml @@ -6,6 +6,7 @@ source: author: "King Mika" repo: null url: "https://marketplace.visualstudio.com/items?itemName=KingMika.plsmyeyes" + formats: null colors: bg: "#000000" fg: "#D4D4D4" diff --git a/themes/plurpelvsc.yaml b/themes/plurpelvsc.yaml deleted file mode 100644 index 09bba8a3..00000000 --- a/themes/plurpelvsc.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "PlurpelVSC" -source: - marketplace_id: "JhonLikesFloppa.plurpel" - version: "2.1.0" - installs: 715 - rating: 5 - ratings: 2 - author: "SahalMoh" - repo: "https://github.com/Plurpel/Plurpel-VSC" - url: "https://marketplace.visualstudio.com/items?itemName=JhonLikesFloppa.plurpel" -colors: - bg: "#242038" - fg: "#F7ECE1" - black: "#242038" - red: "#E06C75" - green: "#98C379" - yellow: "#D19A66" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#F7ECE1" - brightBlack: "#CAC4CE" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#61AFEF" - brightMagenta: "#C678DD" - brightCyan: "#56B6C2" - brightWhite: "#F7ECE1" -meta: - mode: "dark" - accent: "pink" - hue: 291 - pair: null - contrast: - fg: 93.9 - black: 0 - red: 40.4 - green: 60.6 - yellow: 51 - blue: 53 - magenta: 43.5 - cyan: 52.9 - white: 93.9 - brightBlack: 69.5 - brightRed: 40.4 - brightGreen: 60.6 - brightYellow: 68.9 - brightBlue: 53 - brightMagenta: 43.5 - brightCyan: 52.9 - brightWhite: 93.9 diff --git a/themes/pluto-dark.yaml b/themes/pluto-dark.yaml index 7d830c8d..c0477c93 100644 --- a/themes/pluto-dark.yaml +++ b/themes/pluto-dark.yaml @@ -8,6 +8,7 @@ source: author: "pluto theme" repo: "https://github.com/devincapriola/pluto" url: "https://marketplace.visualstudio.com/items?itemName=plutotheme.plutotheme" + formats: null colors: bg: "#1B1D23" fg: "#CCCCCC" diff --git a/themes/po.yaml b/themes/po.yaml index 6715efd2..4fdf70d3 100644 --- a/themes/po.yaml +++ b/themes/po.yaml @@ -8,6 +8,8 @@ source: author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" + formats: + nvim: "https://raw.githubusercontent.com/volskaya/irrelevant/main/extensions/neovim/lua/irrelevant/colors.lua" colors: bg: "#1C1C1C" fg: "#FFFFFF" diff --git a/themes/poimandres-darker-theme-ghostty-palette.yaml b/themes/poimandres-darker-theme-ghostty-palette.yaml deleted file mode 100644 index 5446e6c3..00000000 --- a/themes/poimandres-darker-theme-ghostty-palette.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "poimandres darker theme (ghostty palette)" -source: - marketplace_id: "FawwazFirdaus.poimandres-darker" - version: "0.1.1" - installs: 62 - rating: 0 - ratings: 0 - author: "Fawwaz Firdaus" - repo: "https://github.com/fawwazfirdaus/poimandres-darker-theme" - url: "https://marketplace.visualstudio.com/items?itemName=FawwazFirdaus.poimandres-darker" -colors: - bg: "#16161E" - fg: "#A6ACCD" - black: "#16161E" - red: "#D0679D" - green: "#5DE4C7" - yellow: "#FFFAC2" - blue: "#89DDFF" - magenta: "#FCC5E9" - cyan: "#ADD7FF" - white: "#FFFFFF" - brightBlack: "#A6ACCD" - brightRed: "#D0679D" - brightGreen: "#5DE4C7" - brightYellow: "#FFFAC2" - brightBlue: "#ADD7FF" - brightMagenta: "#FAE4FC" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 285 - pair: null - contrast: - fg: 57.2 - black: 0 - red: 39.2 - green: 76.4 - yellow: 102 - blue: 78.3 - magenta: 80.2 - cyan: 78.6 - white: 106.9 - brightBlack: 57.2 - brightRed: 39.2 - brightGreen: 76.4 - brightYellow: 102 - brightBlue: 78.6 - brightMagenta: 93.7 - brightCyan: 78.3 - brightWhite: 106.9 diff --git a/themes/poison-serpent.yaml b/themes/poison-serpent.yaml index 5f696e11..0380ac18 100644 --- a/themes/poison-serpent.yaml +++ b/themes/poison-serpent.yaml @@ -8,6 +8,7 @@ source: author: "Krisada-3131" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Krisada-3131.serpentine-syntax" + formats: null colors: bg: "#040C0B" fg: "#F2E6E9" diff --git a/themes/polar-black-cherry-blossom.yaml b/themes/polar-black-cherry-blossom.yaml deleted file mode 100644 index c9dc0385..00000000 --- a/themes/polar-black-cherry-blossom.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Polar Black Cherry Blossom" -source: - marketplace_id: "nionx01.polar-black-themes" - version: "0.0.5" - installs: 190 - rating: 4 - ratings: 1 - author: "nionx01" - repo: "https://github.com/nionx01/polar-black-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" -colors: - bg: "#000000" - fg: "#F0D6E0" - black: "#000000" - red: "#E8B0C8" - green: "#E8B0C8" - yellow: "#E8B0C8" - blue: "#E8B0C8" - magenta: "#E8B0C8" - cyan: "#E8B0C8" - white: "#E8B0C8" - brightBlack: "#5A3A4A" - brightRed: "#E8B0C8" - brightGreen: "#E8B0C8" - brightYellow: "#E8B0C8" - brightBlue: "#E8B0C8" - brightMagenta: "#E8B0C8" - brightCyan: "#E8B0C8" - brightWhite: "#E8B0C8" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 85.8 - black: 0 - red: 68.4 - green: 68.4 - yellow: 68.4 - blue: 68.4 - magenta: 68.4 - cyan: 68.4 - white: 68.4 - brightBlack: 9.8 - brightRed: 68.4 - brightGreen: 68.4 - brightYellow: 68.4 - brightBlue: 68.4 - brightMagenta: 68.4 - brightCyan: 68.4 - brightWhite: 68.4 diff --git a/themes/polar-black-green-cactus.yaml b/themes/polar-black-green-cactus.yaml deleted file mode 100644 index 98d85bc5..00000000 --- a/themes/polar-black-green-cactus.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Polar Black Green Cactus" -source: - marketplace_id: "nionx01.polar-black-themes" - version: "0.0.5" - installs: 190 - rating: 4 - ratings: 1 - author: "nionx01" - repo: "https://github.com/nionx01/polar-black-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" -colors: - bg: "#000000" - fg: "#D0E8D0" - black: "#000000" - red: "#70C880" - green: "#70C880" - yellow: "#70C880" - blue: "#70C880" - magenta: "#70C880" - cyan: "#70C880" - white: "#70C880" - brightBlack: "#3A5A3A" - brightRed: "#70C880" - brightGreen: "#70C880" - brightYellow: "#70C880" - brightBlue: "#70C880" - brightMagenta: "#70C880" - brightCyan: "#70C880" - brightWhite: "#70C880" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 88.8 - black: 0 - red: 62.7 - green: 62.7 - yellow: 62.7 - blue: 62.7 - magenta: 62.7 - cyan: 62.7 - white: 62.7 - brightBlack: 15.2 - brightRed: 62.7 - brightGreen: 62.7 - brightYellow: 62.7 - brightBlue: 62.7 - brightMagenta: 62.7 - brightCyan: 62.7 - brightWhite: 62.7 diff --git a/themes/polar-black-ice.yaml b/themes/polar-black-ice.yaml deleted file mode 100644 index bb205657..00000000 --- a/themes/polar-black-ice.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Polar Black Ice" -source: - marketplace_id: "nionx01.polar-black-themes" - version: "0.0.5" - installs: 190 - rating: 4 - ratings: 1 - author: "nionx01" - repo: "https://github.com/nionx01/polar-black-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" -colors: - bg: "#000000" - fg: "#D8EDF5" - black: "#000000" - red: "#B8DCE8" - green: "#B8DCE8" - yellow: "#B8DCE8" - blue: "#B8DCE8" - magenta: "#B8DCE8" - cyan: "#B8DCE8" - white: "#B8DCE8" - brightBlack: "#3E4550" - brightRed: "#B8DCE8" - brightGreen: "#B8DCE8" - brightYellow: "#B8DCE8" - brightBlue: "#B8DCE8" - brightMagenta: "#B8DCE8" - brightCyan: "#B8DCE8" - brightWhite: "#B8DCE8" -meta: - mode: "dark" - accent: "blue" - hue: null - pair: null - contrast: - fg: 93.8 - black: 0 - red: 81.7 - green: 81.7 - yellow: 81.7 - blue: 81.7 - magenta: 81.7 - cyan: 81.7 - white: 81.7 - brightBlack: 10 - brightRed: 81.7 - brightGreen: 81.7 - brightYellow: 81.7 - brightBlue: 81.7 - brightMagenta: 81.7 - brightCyan: 81.7 - brightWhite: 81.7 diff --git a/themes/polar-black-less-black-smoke.yaml b/themes/polar-black-less-black-smoke.yaml deleted file mode 100644 index 3a3b65c8..00000000 --- a/themes/polar-black-less-black-smoke.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Polar Black Less Black Smoke" -source: - marketplace_id: "nionx01.polar-black-themes" - version: "0.0.5" - installs: 190 - rating: 4 - ratings: 1 - author: "nionx01" - repo: "https://github.com/nionx01/polar-black-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" -colors: - bg: "#101010" - fg: "#FFFFFF" - black: "#101010" - red: "#FFFFFF" - green: "#FFFFFF" - yellow: "#FFFFFF" - blue: "#FFFFFF" - magenta: "#FFFFFF" - cyan: "#FFFFFF" - white: "#FFFFFF" - brightBlack: "#444444" - brightRed: "#FFFFFF" - brightGreen: "#FFFFFF" - brightYellow: "#FFFFFF" - brightBlue: "#FFFFFF" - brightMagenta: "#FFFFFF" - brightCyan: "#FFFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 107.4 - black: 0 - red: 107.4 - green: 107.4 - yellow: 107.4 - blue: 107.4 - magenta: 107.4 - cyan: 107.4 - white: 107.4 - brightBlack: 9.4 - brightRed: 107.4 - brightGreen: 107.4 - brightYellow: 107.4 - brightBlue: 107.4 - brightMagenta: 107.4 - brightCyan: 107.4 - brightWhite: 107.4 diff --git a/themes/polar-black-light.yaml b/themes/polar-black-light.yaml deleted file mode 100644 index 21880b32..00000000 --- a/themes/polar-black-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Polar Black Light" -source: - marketplace_id: "nionx01.polar-black-themes" - version: "0.0.5" - installs: 190 - rating: 4 - ratings: 1 - author: "nionx01" - repo: "https://github.com/nionx01/polar-black-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" -colors: - bg: "#FAFAFA" - fg: "#2A2A2A" - black: "#2A2A2A" - red: "#C03848" - green: "#4A7A28" - yellow: "#A07808" - blue: "#2A5AAA" - magenta: "#7848A0" - cyan: "#1A6EA0" - white: "#FAFAFA" - brightBlack: "#888888" - brightRed: "#C03848" - brightGreen: "#4A7A28" - brightYellow: "#A07808" - brightBlue: "#1A6EA0" - brightMagenta: "#7848A0" - brightCyan: "#1A6EA0" - brightWhite: "#FAFAFA" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.1 - black: 98.1 - red: 72.7 - green: 72.1 - yellow: 64.5 - blue: 79.6 - magenta: 78.9 - cyan: 74.3 - white: 0 - brightBlack: 60.1 - brightRed: 72.7 - brightGreen: 72.1 - brightYellow: 64.5 - brightBlue: 74.3 - brightMagenta: 78.9 - brightCyan: 74.3 - brightWhite: 0 diff --git a/themes/polar-black-red.yaml b/themes/polar-black-red.yaml deleted file mode 100644 index 2f7de080..00000000 --- a/themes/polar-black-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Polar Black Red" -source: - marketplace_id: "nionx01.polar-black-themes" - version: "0.0.5" - installs: 190 - rating: 4 - ratings: 1 - author: "nionx01" - repo: "https://github.com/nionx01/polar-black-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" -colors: - bg: "#000000" - fg: "#E8D0D0" - black: "#000000" - red: "#D04040" - green: "#D04040" - yellow: "#D04040" - blue: "#D04040" - magenta: "#D04040" - cyan: "#D04040" - white: "#D04040" - brightBlack: "#5A3838" - brightRed: "#D04040" - brightGreen: "#D04040" - brightYellow: "#D04040" - brightBlue: "#D04040" - brightMagenta: "#D04040" - brightCyan: "#D04040" - brightWhite: "#D04040" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 81.4 - black: 0 - red: 30.3 - green: 30.3 - yellow: 30.3 - blue: 30.3 - magenta: 30.3 - cyan: 30.3 - white: 30.3 - brightBlack: 8.9 - brightRed: 30.3 - brightGreen: 30.3 - brightYellow: 30.3 - brightBlue: 30.3 - brightMagenta: 30.3 - brightCyan: 30.3 - brightWhite: 30.3 diff --git a/themes/polar-black-savanna.yaml b/themes/polar-black-savanna.yaml deleted file mode 100644 index 134342ff..00000000 --- a/themes/polar-black-savanna.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Polar Black Savanna" -source: - marketplace_id: "nionx01.polar-black-themes" - version: "0.0.5" - installs: 190 - rating: 4 - ratings: 1 - author: "nionx01" - repo: "https://github.com/nionx01/polar-black-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" -colors: - bg: "#000000" - fg: "#E8DCC8" - black: "#000000" - red: "#D8A858" - green: "#D8A858" - yellow: "#D8A858" - blue: "#D8A858" - magenta: "#D8A858" - cyan: "#D8A858" - white: "#D8A858" - brightBlack: "#5A5040" - brightRed: "#D8A858" - brightGreen: "#D8A858" - brightYellow: "#D8A858" - brightBlue: "#D8A858" - brightMagenta: "#D8A858" - brightCyan: "#D8A858" - brightWhite: "#D8A858" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 86.2 - black: 0 - red: 59.6 - green: 59.6 - yellow: 59.6 - blue: 59.6 - magenta: 59.6 - cyan: 59.6 - white: 59.6 - brightBlack: 14.7 - brightRed: 59.6 - brightGreen: 59.6 - brightYellow: 59.6 - brightBlue: 59.6 - brightMagenta: 59.6 - brightCyan: 59.6 - brightWhite: 59.6 diff --git a/themes/polar-black.yaml b/themes/polar-black.yaml deleted file mode 100644 index 357eeca3..00000000 --- a/themes/polar-black.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Polar Black" -source: - marketplace_id: "nionx01.polar-black-themes" - version: "0.0.5" - installs: 190 - rating: 4 - ratings: 1 - author: "nionx01" - repo: "https://github.com/nionx01/polar-black-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#FFFFFF" - green: "#FFFFFF" - yellow: "#FFFFFF" - blue: "#FFFFFF" - magenta: "#FFFFFF" - cyan: "#FFFFFF" - white: "#FFFFFF" - brightBlack: "#444444" - brightRed: "#FFFFFF" - brightGreen: "#FFFFFF" - brightYellow: "#FFFFFF" - brightBlue: "#FFFFFF" - brightMagenta: "#FFFFFF" - brightCyan: "#FFFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 107.9 - green: 107.9 - yellow: 107.9 - blue: 107.9 - magenta: 107.9 - cyan: 107.9 - white: 107.9 - brightBlack: 9.8 - brightRed: 107.9 - brightGreen: 107.9 - brightYellow: 107.9 - brightBlue: 107.9 - brightMagenta: 107.9 - brightCyan: 107.9 - brightWhite: 107.9 diff --git a/themes/polar-ice-dark.yaml b/themes/polar-ice-dark.yaml index 57d28e0f..ea842909 100644 --- a/themes/polar-ice-dark.yaml +++ b/themes/polar-ice-dark.yaml @@ -8,6 +8,7 @@ source: author: "Henrique Barcelos" repo: "https://github.com/hbarcelos/polar-ice-vscode" url: "https://marketplace.visualstudio.com/items?itemName=hbarcelos.theme-polar-ice-vscode" + formats: null colors: bg: "#44484F" fg: "#C7F3FF" diff --git a/themes/polar-ice-light.yaml b/themes/polar-ice-light.yaml index ad247fb5..09e43f17 100644 --- a/themes/polar-ice-light.yaml +++ b/themes/polar-ice-light.yaml @@ -8,6 +8,7 @@ source: author: "Henrique Barcelos" repo: "https://github.com/hbarcelos/polar-ice-vscode" url: "https://marketplace.visualstudio.com/items?itemName=hbarcelos.theme-polar-ice-vscode" + formats: null colors: bg: "#DBF7FF" fg: "#3E444F" diff --git a/themes/polar-light.yaml b/themes/polar-light.yaml index e15bd211..a392a6f3 100644 --- a/themes/polar-light.yaml +++ b/themes/polar-light.yaml @@ -8,6 +8,7 @@ source: author: "Postnumbers" repo: "https://github.com/postnumbers/polar-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.polar-themes" + formats: null colors: bg: "#FFFFFF" fg: "#2E3440" diff --git a/themes/polar-midnight.yaml b/themes/polar-midnight.yaml index 078e408f..5ceed136 100644 --- a/themes/polar-midnight.yaml +++ b/themes/polar-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Postnumbers" repo: "https://github.com/postnumbers/polar-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.polar-themes" + formats: null colors: bg: "#000000" fg: "#D8DEE9" diff --git a/themes/polar-night.yaml b/themes/polar-night.yaml index 77c99f4f..b40b86e4 100644 --- a/themes/polar-night.yaml +++ b/themes/polar-night.yaml @@ -8,6 +8,7 @@ source: author: "Postnumbers" repo: "https://github.com/postnumbers/polar-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.polar-themes" + formats: null colors: bg: "#191D24" fg: "#D8DEE9" diff --git a/themes/polish.yaml b/themes/polish.yaml index e49d3b78..dd4dc3f0 100644 --- a/themes/polish.yaml +++ b/themes/polish.yaml @@ -8,6 +8,7 @@ source: author: "zhiking" repo: "https://github.com/zyj1022/vscode-polish-theme" url: "https://marketplace.visualstudio.com/items?itemName=zhiking.polish-theme" + formats: null colors: bg: "#F4F4F4" fg: "#5C6066" diff --git a/themes/polychrome-dark.yaml b/themes/polychrome-dark.yaml deleted file mode 100644 index 5ebfe5be..00000000 --- a/themes/polychrome-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Polychrome Dark" -source: - marketplace_id: "cdonohue.polychrome-vscode-themes" - version: "1.0.0" - installs: 6861 - rating: 0 - ratings: 0 - author: "Chad Donohue" - repo: "https://github.com/cdonohue/polychrome-vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=cdonohue.polychrome-vscode-themes" -colors: - bg: "#2A2833" - fg: "#BBB4D8" - black: "#484459" - red: "#FF6347" - green: "#A59CCC" - yellow: "#FFE685" - blue: "#BBB4D8" - magenta: "#FFE685" - cyan: "#767092" - white: "#F5F5F5" - brightBlack: "#B7A870" - brightRed: "#FFE685" - brightGreen: "#A59CCC" - brightYellow: "#B7A870" - brightBlue: "#D2CDE5" - brightMagenta: "#B7A870" - brightCyan: "#D2CDE5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 293 - pair: "Polychrome Light" - contrast: - fg: 60.6 - black: 0 - red: 43.1 - green: 48.2 - yellow: 88.4 - blue: 60.6 - magenta: 88.4 - cyan: 25.6 - white: 97.6 - brightBlack: 51.6 - brightRed: 88.4 - brightGreen: 48.2 - brightYellow: 51.6 - brightBlue: 74.3 - brightMagenta: 51.6 - brightCyan: 74.3 - brightWhite: 104.2 diff --git a/themes/polychrome-light.yaml b/themes/polychrome-light.yaml deleted file mode 100644 index b803ef0c..00000000 --- a/themes/polychrome-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Polychrome Light" -source: - marketplace_id: "cdonohue.polychrome-vscode-themes" - version: "1.0.0" - installs: 6861 - rating: 0 - ratings: 0 - author: "Chad Donohue" - repo: "https://github.com/cdonohue/polychrome-vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=cdonohue.polychrome-vscode-themes" -colors: - bg: "#FBFAF9" - fg: "#502DB4" - black: "#D1C2F9" - red: "#F42A2A" - green: "#6B3DF1" - yellow: "#A97E50" - blue: "#502DB4" - magenta: "#A97E50" - cyan: "#9E7FF5" - white: "#F5F5F5" - brightBlack: "#BDA58C" - brightRed: "#A97E50" - brightGreen: "#6B3DF1" - brightYellow: "#BDA58C" - brightBlue: "#351E78" - brightMagenta: "#BDA58C" - brightCyan: "#351E78" - brightWhite: "#000000" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Polychrome Dark" - contrast: - fg: 86.4 - black: 25.5 - red: 62.6 - green: 75.6 - yellow: 60.9 - blue: 86.4 - magenta: 60.9 - cyan: 54.7 - white: 0 - brightBlack: 43.5 - brightRed: 60.9 - brightGreen: 75.6 - brightYellow: 43.5 - brightBlue: 95.8 - brightMagenta: 43.5 - brightCyan: 95.8 - brightWhite: 103.1 diff --git a/themes/polygopher-theme.yaml b/themes/polygopher-theme.yaml index 3f383af8..98ac3d31 100644 --- a/themes/polygopher-theme.yaml +++ b/themes/polygopher-theme.yaml @@ -8,6 +8,7 @@ source: author: "Safak" repo: "https://github.com/safak7/poly-gopher-dark-blue" url: "https://marketplace.visualstudio.com/items?itemName=Safak.poly-gopher-dark-blue" + formats: null colors: bg: "#000000" fg: "#00ADD8" diff --git a/themes/polykai.yaml b/themes/polykai.yaml index 8bab5b6e..6ffdad30 100644 --- a/themes/polykai.yaml +++ b/themes/polykai.yaml @@ -2,12 +2,13 @@ name: "Polykai" source: marketplace_id: "adamgraham.polykai-theme" version: "1.0.1" - installs: 16966 + installs: 16972 rating: 5 ratings: 5 author: "Adam Graham" repo: "https://github.com/adamgraham/polykai-vscode" url: "https://marketplace.visualstudio.com/items?itemName=adamgraham.polykai-theme" + formats: null colors: bg: "#141818" fg: "#F8F8F8" diff --git a/themes/polymath.yaml b/themes/polymath.yaml index 7d6229ca..d1dbaeae 100644 --- a/themes/polymath.yaml +++ b/themes/polymath.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Polymath.polymath" version: "1.0.0" installs: 23 + rating: 5 + ratings: 1 author: "Polymath" repo: "https://github.com/polymath-com/theme.git#main" url: "https://marketplace.visualstudio.com/items?itemName=Polymath.polymath" + formats: null colors: bg: "#000000" fg: "#808080" diff --git a/themes/polymer-flow.yaml b/themes/polymer-flow.yaml deleted file mode 100644 index c80feec4..00000000 --- a/themes/polymer-flow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Polymer-Flow" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#0D0A0E" - fg: "#F2ECF3" - black: "#0D0A0E" - red: "#DF0C07" - green: "#29C3A0" - yellow: "#D29922" - blue: "#6D65FE" - magenta: "#6D65FE" - cyan: "#29C3A0" - white: "#F2ECF3" - brightBlack: "#0D0A0E" - brightRed: "#DF0C07" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#6D65FE" - brightMagenta: "#6D65FE" - brightCyan: "#29C3A0" - brightWhite: "#F2ECF3" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.5 - black: 0 - red: 29.5 - green: 58.5 - yellow: 52.5 - blue: 32.6 - magenta: 32.6 - cyan: 58.5 - white: 96.5 - brightBlack: 0 - brightRed: 29.5 - brightGreen: 58.5 - brightYellow: 52.5 - brightBlue: 32.6 - brightMagenta: 32.6 - brightCyan: 58.5 - brightWhite: 96.5 diff --git a/themes/pookie-dark.yaml b/themes/pookie-dark.yaml index 18263d22..27eba9f5 100644 --- a/themes/pookie-dark.yaml +++ b/themes/pookie-dark.yaml @@ -8,6 +8,7 @@ source: author: "Jyototheworld" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Jyototheworld.jyototheworld" + formats: null colors: bg: "#000000" fg: "#FFC1C1" diff --git a/themes/poolside.yaml b/themes/poolside.yaml index d7f9a8d9..8889c48c 100644 --- a/themes/poolside.yaml +++ b/themes/poolside.yaml @@ -8,6 +8,7 @@ source: author: "nsgrantham" repo: "https://github.com/nsgrantham/poolside-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nsgrantham.poolside" + formats: null colors: bg: "#1F1B36" fg: "#F0F0FC" diff --git a/themes/pop-os-cosmic.yaml b/themes/pop-os-cosmic.yaml deleted file mode 100644 index 01d43fba..00000000 --- a/themes/pop-os-cosmic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pop OS Cosmic" -source: - marketplace_id: "Feiron.cosmic-pop-dark" - version: "0.1.1" - installs: 814 - rating: 5 - ratings: 1 - author: "Feiron" - repo: "https://github.com/pawelrogowski/cosmic-pop-dark" - url: "https://marketplace.visualstudio.com/items?itemName=Feiron.cosmic-pop-dark" -colors: - bg: "#262626" - fg: "#A0A4A5" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 49.5 - black: 0 - red: 24.6 - green: 50.9 - yellow: 83.5 - blue: 25.3 - magenta: 27.7 - cyan: 45.5 - white: 104.8 - brightBlack: 20 - brightRed: 36.5 - brightGreen: 61.5 - brightYellow: 93.6 - brightBlue: 37.9 - brightMagenta: 43.3 - brightCyan: 53.3 - brightWhite: 87.9 diff --git a/themes/popipa.yaml b/themes/popipa.yaml index a03758b4..32fc1214 100644 --- a/themes/popipa.yaml +++ b/themes/popipa.yaml @@ -8,6 +8,7 @@ source: author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-roselia-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" + formats: null colors: bg: "#141629" fg: "#BB9AF7" diff --git a/themes/popping-and-locking-mod.yaml b/themes/popping-and-locking-mod.yaml index 535a62d1..0bec59fd 100644 --- a/themes/popping-and-locking-mod.yaml +++ b/themes/popping-and-locking-mod.yaml @@ -8,6 +8,7 @@ source: author: "Wes Hicks" repo: "https://github.com/weshicks/popping-and-locking-mod-vscode" url: "https://marketplace.visualstudio.com/items?itemName=WesHicks.popping-and-locking-mod" + formats: null colors: bg: "#242424" fg: "#F2E5BC" diff --git a/themes/popping-and-locking.yaml b/themes/popping-and-locking.yaml deleted file mode 100644 index ce3c3ec9..00000000 --- a/themes/popping-and-locking.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Popping and Locking" -source: - marketplace_id: "philsinatra.popping-and-locking-vscode-black" - version: "1.1.7" - installs: 40563 - rating: 5 - ratings: 4 - author: "Phil Sinatra" - repo: "https://github.com/philsinatra/popping-and-locking-vscode-black" - url: "https://marketplace.visualstudio.com/items?itemName=philsinatra.popping-and-locking-vscode-black" -colors: - bg: "#000000" - fg: "#F2E5BC" - black: "#1D2021" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#F42C3E" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#99C6CA" - brightMagenta: "#D3869B" - brightCyan: "#7EC16E" - brightWhite: "#EBDBB2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 91.2 - black: 0 - red: 26.3 - green: 43.9 - yellow: 53.5 - blue: 32.6 - magenta: 32.7 - cyan: 43 - white: 48.2 - brightBlack: 37.4 - brightRed: 36.5 - brightGreen: 62.2 - brightYellow: 72.8 - brightBlue: 67.4 - brightMagenta: 49 - brightCyan: 60 - brightWhite: 85.4 diff --git a/themes/popsicle-color-theme.yaml b/themes/popsicle-color-theme.yaml index d1c2b607..f03232dd 100644 --- a/themes/popsicle-color-theme.yaml +++ b/themes/popsicle-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Sage Fennel" repo: "https://github.com/wavebeem/fresh-green-vscode" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.fresh-green-vscode" + formats: null colors: bg: "#FFFFFF" fg: "#380000" diff --git a/themes/port-gellhorn-noir.yaml b/themes/port-gellhorn-noir.yaml index a872747c..94cd833b 100644 --- a/themes/port-gellhorn-noir.yaml +++ b/themes/port-gellhorn-noir.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#1C1C1C" fg: "#FFFFFF" diff --git a/themes/posh.yaml b/themes/posh.yaml index 9713ceea..aa8da01d 100644 --- a/themes/posh.yaml +++ b/themes/posh.yaml @@ -8,6 +8,7 @@ source: author: "Lucas de Castro" repo: "https://github.com/lucasdecstro/posh" url: "https://marketplace.visualstudio.com/items?itemName=lucasdecastro.posh" + formats: null colors: bg: "#181818" fg: "#E8E8E8" diff --git a/themes/posterpole.yaml b/themes/posterpole.yaml index f95fb056..b5c9865c 100644 --- a/themes/posterpole.yaml +++ b/themes/posterpole.yaml @@ -8,6 +8,7 @@ source: author: "ilof2" repo: "https://github.com/posterpole/vscode" url: "https://marketplace.visualstudio.com/items?itemName=ilof2.posterpole-theme" + formats: null colors: bg: "#24232A" fg: "#AFA79D" diff --git a/themes/potpourri-contrast.yaml b/themes/potpourri-contrast.yaml deleted file mode 100644 index b977d648..00000000 --- a/themes/potpourri-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "potpourri-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0D0C0C" - fg: "#F8F8F2" - black: "#1A1818" - red: "#BA0E2E" - green: "#C491C4" - yellow: "#ED1153" - blue: "#B866FA" - magenta: "#ED1153" - cyan: "#F76ACB" - white: "#FFFFFF" - brightBlack: "#423D3D" - brightRed: "#F03E5F" - brightGreen: "#E8D3E8" - brightYellow: "#F56F97" - brightBlue: "#E6C9FD" - brightMagenta: "#F56F97" - brightCyan: "#FCCBED" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 102.7 - black: 0 - red: 21.3 - green: 51.6 - yellow: 33.6 - blue: 41.4 - magenta: 33.6 - cyan: 50.5 - white: 107.7 - brightBlack: 7.6 - brightRed: 37.6 - brightGreen: 83.5 - brightYellow: 48.9 - brightBlue: 80.2 - brightMagenta: 48.9 - brightCyan: 83.5 - brightWhite: 107.7 diff --git a/themes/potpourri-light.yaml b/themes/potpourri-light.yaml deleted file mode 100644 index 2b9f42ae..00000000 --- a/themes/potpourri-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "potpourri-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#333333" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#C491C4" - yellow: "#ED1153" - blue: "#B866FA" - magenta: "#ED1153" - cyan: "#F76ACB" - white: "#404040" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#E8D3E8" - brightYellow: "#F56F97" - brightBlue: "#E6C9FD" - brightMagenta: "#F56F97" - brightCyan: "#FCCBED" - brightWhite: "#666666" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 98.7 - black: 0 - red: 80.3 - green: 50.1 - yellow: 67.8 - blue: 60.1 - magenta: 67.8 - cyan: 51.1 - white: 94.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 19.7 - brightYellow: 52.7 - brightBlue: 22.8 - brightMagenta: 52.7 - brightCyan: 19.7 - brightWhite: 78.8 diff --git a/themes/potpourri.yaml b/themes/potpourri.yaml deleted file mode 100644 index 6072bb77..00000000 --- a/themes/potpourri.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "potpourri" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2E2B2C" - fg: "#F8F8F2" - black: "#3B3739" - red: "#BA0E2E" - green: "#C491C4" - yellow: "#ED1153" - blue: "#B866FA" - magenta: "#ED1153" - cyan: "#F76ACB" - white: "#FFFFFF" - brightBlack: "#635C5E" - brightRed: "#F03E5F" - brightGreen: "#E8D3E8" - brightYellow: "#F56F97" - brightBlue: "#E6C9FD" - brightMagenta: "#F56F97" - brightCyan: "#FCCBED" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 98.8 - black: 0 - red: 17.3 - green: 47.7 - yellow: 29.7 - blue: 37.4 - magenta: 29.7 - cyan: 46.6 - white: 103.7 - brightBlack: 15.4 - brightRed: 33.6 - brightGreen: 79.5 - brightYellow: 44.9 - brightBlue: 76.2 - brightMagenta: 44.9 - brightCyan: 79.5 - brightWhite: 103.7 diff --git a/themes/powder.yaml b/themes/powder.yaml index 63b70ab6..fe17f58e 100644 --- a/themes/powder.yaml +++ b/themes/powder.yaml @@ -8,6 +8,8 @@ source: author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" + formats: + nvim: "https://raw.githubusercontent.com/volskaya/irrelevant/main/extensions/neovim/lua/irrelevant/colors.lua" colors: bg: "#1C1C1C" fg: "#FFFFFF" diff --git a/themes/power-dark.yaml b/themes/power-dark.yaml index 0152eb7e..4c41df80 100644 --- a/themes/power-dark.yaml +++ b/themes/power-dark.yaml @@ -8,6 +8,7 @@ source: author: "Axum Softwares" repo: null url: "https://marketplace.visualstudio.com/items?itemName=axuminication.codica-theme" + formats: null colors: bg: "#2B272B" fg: "#D4D4D4" diff --git a/themes/power-low-purple-theme.yaml b/themes/power-low-purple-theme.yaml deleted file mode 100644 index fab80ad4..00000000 --- a/themes/power-low-purple-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "power-low-purple-theme" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - rating: 5 - ratings: 3 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#352E40" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 302 - pair: null - contrast: - fg: 102.5 - black: 0 - red: 22.3 - green: 48.6 - yellow: 81.2 - blue: 23 - magenta: 25.4 - cyan: 43.2 - white: 85.6 - brightBlack: 17.6 - brightRed: 34.2 - brightGreen: 59.1 - brightYellow: 91.2 - brightBlue: 35.6 - brightMagenta: 41 - brightCyan: 51 - brightWhite: 85.6 diff --git a/themes/poznajkubernetes.yaml b/themes/poznajkubernetes.yaml index 690e1b05..775a77ae 100644 --- a/themes/poznajkubernetes.yaml +++ b/themes/poznajkubernetes.yaml @@ -8,6 +8,7 @@ source: author: "Poznaj Kubernetes" repo: "https://github.com/poznajkubernetes/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=poznajkubernetes.theme-poznajkubernetes" + formats: null colors: bg: "#232323" fg: "#F8F8F2" diff --git a/themes/ppy-like.yaml b/themes/ppy-like.yaml deleted file mode 100644 index 1475b78b..00000000 --- a/themes/ppy-like.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ppy-like" -source: - marketplace_id: "Fran4end.ppy-light" - version: "0.0.1" - installs: 60 - rating: 0 - ratings: 0 - author: "Fran4end" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Fran4end.ppy-light" -colors: - bg: "#20202A" - fg: "#D7D7FF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 285 - pair: null - contrast: - fg: 82.1 - black: 0 - red: 25.5 - green: 51.8 - yellow: 84.4 - blue: 26.2 - magenta: 28.5 - cyan: 46.3 - white: 88.8 - brightBlack: 20.8 - brightRed: 37.3 - brightGreen: 62.3 - brightYellow: 94.4 - brightBlue: 38.8 - brightMagenta: 44.1 - brightCyan: 54.2 - brightWhite: 88.8 diff --git a/themes/pr-theme-obsidian.yaml b/themes/pr-theme-obsidian.yaml deleted file mode 100644 index 92b71da4..00000000 --- a/themes/pr-theme-obsidian.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "PR-Theme Obsidian" -source: - marketplace_id: "PrincePatelPR26.PrincePatelPR26" - version: "0.0.2" - installs: 27 - rating: 5 - ratings: 1 - author: "Prince Patel" - repo: "https://github.com/imprince26/PR-Theme-VSCode" - url: "https://marketplace.visualstudio.com/items?itemName=PrincePatelPR26.PrincePatelPR26" -colors: - bg: "#0B0F14" - fg: "#CFD6E4" - black: "#0B0F14" - red: "#F7768E" - green: "#98C379" - yellow: "#E5C07B" - blue: "#8AB4F8" - magenta: "#C792EA" - cyan: "#7DCFFF" - white: "#CFD6E4" - brightBlack: "#4E5666" - brightRed: "#F7768E" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#8AB4F8" - brightMagenta: "#C792EA" - brightCyan: "#7DCFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 254 - pair: null - contrast: - fg: 81.1 - black: 0 - red: 50.6 - green: 62.9 - yellow: 71.2 - blue: 60.7 - magenta: 54.4 - cyan: 71.7 - white: 81.1 - brightBlack: 16 - brightRed: 50.6 - brightGreen: 62.9 - brightYellow: 71.2 - brightBlue: 60.7 - brightMagenta: 54.4 - brightCyan: 71.7 - brightWhite: 107.5 diff --git a/themes/pr-theme-premium.yaml b/themes/pr-theme-premium.yaml deleted file mode 100644 index 48a6670c..00000000 --- a/themes/pr-theme-premium.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "PR-Theme Premium" -source: - marketplace_id: "PrincePatelPR26.PrincePatelPR26" - version: "0.0.2" - installs: 27 - rating: 5 - ratings: 1 - author: "Prince Patel" - repo: "https://github.com/imprince26/PR-Theme-VSCode" - url: "https://marketplace.visualstudio.com/items?itemName=PrincePatelPR26.PrincePatelPR26" -colors: - bg: "#0F1117" - fg: "#D6DBE6" - black: "#0B0D12" - red: "#F7768E" - green: "#3DD6A5" - yellow: "#F2C97D" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#D6DBE6" - brightBlack: "#4F5868" - brightRed: "#F7768E" - brightGreen: "#3DD6A5" - brightYellow: "#F2C97D" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 271 - pair: null - contrast: - fg: 84.1 - black: 0 - red: 50.4 - green: 67.7 - yellow: 76.8 - blue: 52.2 - magenta: 56 - cyan: 71.5 - white: 84.1 - brightBlack: 16.6 - brightRed: 50.4 - brightGreen: 67.7 - brightYellow: 76.8 - brightBlue: 52.2 - brightMagenta: 56 - brightCyan: 71.5 - brightWhite: 107.4 diff --git a/themes/pr-theme.yaml b/themes/pr-theme.yaml deleted file mode 100644 index 9797021c..00000000 --- a/themes/pr-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "PR-Theme" -source: - marketplace_id: "PrincePatelPR26.PrincePatelPR26" - version: "0.0.2" - installs: 27 - rating: 5 - ratings: 1 - author: "Prince Patel" - repo: "https://github.com/imprince26/PR-Theme-VSCode" - url: "https://marketplace.visualstudio.com/items?itemName=PrincePatelPR26.PrincePatelPR26" -colors: - bg: "#0D0D0D" - fg: "#C5C5C5" - black: "#000000" - red: "#FF5370" - green: "#2EB67D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#545454" - brightRed: "#FF5370" - brightGreen: "#2EB67D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 71.3 - black: 0 - red: 44.4 - green: 51.5 - yellow: 79.7 - blue: 56.7 - magenta: 54.5 - cyan: 79 - white: 107.6 - brightBlack: 15.5 - brightRed: 44.4 - brightGreen: 51.5 - brightYellow: 79.7 - brightBlue: 56.7 - brightMagenta: 54.5 - brightCyan: 79 - brightWhite: 107.6 diff --git a/themes/pre.yaml b/themes/pre.yaml index c15b7940..cc30f683 100644 --- a/themes/pre.yaml +++ b/themes/pre.yaml @@ -2,12 +2,16 @@ name: "Pre" source: marketplace_id: "leandromatos.pre" version: "0.0.7" - installs: 13044 + installs: 13046 rating: 0 ratings: 0 author: "Leandro Matos" repo: "https://github.com/leandromatos/pre-theme" url: "https://marketplace.visualstudio.com/items?itemName=leandromatos.pre" + formats: + iterm2: "https://raw.githubusercontent.com/leandromatos/pre-theme/master/iterm/Pre.itermcolors" + warp: "https://raw.githubusercontent.com/leandromatos/pre-theme/master/warp/pre.yaml" + sublime: "https://raw.githubusercontent.com/leandromatos/pre-theme/master/sublime/Theme - Pre/Pre.tmTheme" colors: bg: "#292929" fg: "#F8F8F8" diff --git a/themes/prescient.yaml b/themes/prescient.yaml index 5fe6922f..7583ce05 100644 --- a/themes/prescient.yaml +++ b/themes/prescient.yaml @@ -8,6 +8,7 @@ source: author: "Zev Ross" repo: "https://github.com/zev18/prescient-theme" url: "https://marketplace.visualstudio.com/items?itemName=zevross.prescient-theme" + formats: null colors: bg: "#1E1F2C" fg: "#89859F" diff --git a/themes/pretentious-name.yaml b/themes/pretentious-name.yaml index 06f688ba..6ac8b897 100644 --- a/themes/pretentious-name.yaml +++ b/themes/pretentious-name.yaml @@ -8,6 +8,8 @@ source: author: "zhiayang" repo: "https://github.com/zhiayang/vscode-theme-pretentious-name" url: "https://marketplace.visualstudio.com/items?itemName=zhiayang.pretentious-name" + formats: + sublime: "https://raw.githubusercontent.com/zhiayang/vscode-theme-pretentious-name/master/themes/Pretentious Name Light.tmTheme" colors: bg: "#1A1A1A" fg: "#ABB2BF" diff --git a/themes/pretstyle.yaml b/themes/pretstyle.yaml index 0dd00c7e..c5a98b4c 100644 --- a/themes/pretstyle.yaml +++ b/themes/pretstyle.yaml @@ -2,10 +2,13 @@ name: "Pretstyle" source: marketplace_id: "xPretti.pretstyle" version: "1.0.2" - installs: 24 + installs: 25 + rating: 0 + ratings: 0 author: "xPretti" repo: "https://github.com/xPretti/pretstyle" url: "https://marketplace.visualstudio.com/items?itemName=xPretti.pretstyle" + formats: null colors: bg: "#1C2125" fg: "#E1E4E8" diff --git a/themes/pretty-dark-theme.yaml b/themes/pretty-dark-theme.yaml index d32b9f72..fccbeeef 100644 --- a/themes/pretty-dark-theme.yaml +++ b/themes/pretty-dark-theme.yaml @@ -1,13 +1,14 @@ -name: "pretty-dark-theme" +name: "Pretty Dark Theme" source: marketplace_id: "CJL.pretty-dark-theme" version: "1.0.3" - installs: 1992 + installs: 1997 rating: 0 ratings: 0 author: "CJL" repo: "https://github.com/beixiyo/vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=CJL.pretty-dark-theme" + formats: null colors: bg: "#191815" fg: "#C2C2C2" diff --git a/themes/pributan.yaml b/themes/pributan.yaml index d6710c17..ea4aa272 100644 --- a/themes/pributan.yaml +++ b/themes/pributan.yaml @@ -8,6 +8,7 @@ source: author: "Kusuma J." repo: "https://github.com/sensnerd/Pributan" url: "https://marketplace.visualstudio.com/items?itemName=sensnerd.pributan" + formats: null colors: bg: "#22262D" fg: "#ABB2BF" diff --git a/themes/primary-dark.yaml b/themes/primary-dark.yaml index 30dff387..29cb32b4 100644 --- a/themes/primary-dark.yaml +++ b/themes/primary-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "negativeone.primary-theme" version: "0.2.1" installs: 231 + rating: 0 + ratings: 0 author: "negative.one" repo: "https://github.com/OliverDudgeon/primary-vscode" url: "https://marketplace.visualstudio.com/items?itemName=negativeone.primary-theme" + formats: null colors: bg: "#27241F" fg: "#C9AF96" diff --git a/themes/primary-light.yaml b/themes/primary-light.yaml index 62553993..4e26d13b 100644 --- a/themes/primary-light.yaml +++ b/themes/primary-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "negativeone.primary-theme" version: "0.2.1" installs: 231 + rating: 0 + ratings: 0 author: "negative.one" repo: "https://github.com/OliverDudgeon/primary-vscode" url: "https://marketplace.visualstudio.com/items?itemName=negativeone.primary-theme" + formats: null colors: bg: "#F6F5F2" fg: "#3A3022" diff --git a/themes/prime-contrast.yaml b/themes/prime-contrast.yaml deleted file mode 100644 index 054ea22f..00000000 --- a/themes/prime-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "prime-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0B0B11" - fg: "#9090B2" - black: "#151520" - red: "#BA0E2E" - green: "#9D50BA" - yellow: "#EE4266" - blue: "#FFD23F" - magenta: "#F3FCF0" - cyan: "#EE4266" - white: "#9F9FBC" - brightBlack: "#33334F" - brightRed: "#F03E5F" - brightGreen: "#C699D7" - brightYellow: "#F6A0B2" - brightBlue: "#FFEAA5" - brightMagenta: "#FFFFFF" - brightCyan: "#F6A0B2" - brightWhite: "#CCCCDC" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 43.8 - black: 0 - red: 21.3 - green: 28 - yellow: 37.8 - blue: 82.1 - magenta: 103.9 - cyan: 37.8 - white: 51.4 - brightBlack: 0 - brightRed: 37.6 - brightGreen: 55.6 - brightYellow: 64 - brightBlue: 94.5 - brightMagenta: 107.7 - brightCyan: 64 - brightWhite: 76.2 diff --git a/themes/prime-light.yaml b/themes/prime-light.yaml deleted file mode 100644 index b5da8a03..00000000 --- a/themes/prime-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "prime-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#3D3D5B" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#9D50BA" - yellow: "#EE4266" - blue: "#FFD23F" - magenta: "#727C6F" - cyan: "#EE4266" - white: "#47476A" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#C699D7" - brightYellow: "#F6A0B2" - brightBlue: "#FFEAA5" - brightMagenta: "#A6ADA4" - brightCyan: "#F6A0B2" - brightWhite: "#666698" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.1 - black: 0 - red: 80.3 - green: 73.5 - yellow: 63.7 - blue: 21 - magenta: 70.2 - cyan: 63.7 - white: 90.2 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 46.3 - brightYellow: 38.1 - brightBlue: 9.5 - brightMagenta: 45.4 - brightCyan: 38.1 - brightWhite: 76.7 diff --git a/themes/prime.yaml b/themes/prime.yaml deleted file mode 100644 index 93036419..00000000 --- a/themes/prime.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "prime" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#202030" - fg: "#9090B2" - black: "#2A2A3F" - red: "#BA0E2E" - green: "#9D50BA" - yellow: "#EE4266" - blue: "#FFD23F" - magenta: "#F3FCF0" - cyan: "#EE4266" - white: "#9F9FBC" - brightBlack: "#49496D" - brightRed: "#F03E5F" - brightGreen: "#C699D7" - brightYellow: "#F6A0B2" - brightBlue: "#FFEAA5" - brightMagenta: "#FFFFFF" - brightCyan: "#F6A0B2" - brightWhite: "#CCCCDC" -meta: - mode: "dark" - accent: "orange" - hue: 284 - pair: null - contrast: - fg: 41.7 - black: 0 - red: 19.1 - green: 25.9 - yellow: 35.6 - blue: 80 - magenta: 101.7 - cyan: 35.6 - white: 49.2 - brightBlack: 10.5 - brightRed: 35.4 - brightGreen: 53.5 - brightYellow: 61.9 - brightBlue: 92.3 - brightMagenta: 105.5 - brightCyan: 61.9 - brightWhite: 74 diff --git a/themes/primer-light.yaml b/themes/primer-light.yaml index be11a77f..f96bcf5f 100644 --- a/themes/primer-light.yaml +++ b/themes/primer-light.yaml @@ -2,12 +2,13 @@ name: "Primer Light" source: marketplace_id: "andrewmarkle.primer-light" version: "0.0.8" - installs: 43116 + installs: 43123 rating: 4 ratings: 2 author: "Andrew Markle" repo: "https://github.com/andrewmarkle/primer-light" url: "https://marketplace.visualstudio.com/items?itemName=andrewmarkle.primer-light" + formats: null colors: bg: "#FFFFFF" fg: "#333333" diff --git a/themes/prism-dark.yaml b/themes/prism-dark.yaml index c71816ee..94734bb6 100644 --- a/themes/prism-dark.yaml +++ b/themes/prism-dark.yaml @@ -8,6 +8,7 @@ source: author: "Adrien Friggeri" repo: "https://github.com/friggeri/prism" url: "https://marketplace.visualstudio.com/items?itemName=friggeri.prism-vscode-theme" + formats: null colors: bg: "#242728" fg: "#FAFAFA" diff --git a/themes/prism-light.yaml b/themes/prism-light.yaml index 7d0b40ed..8a32fbd4 100644 --- a/themes/prism-light.yaml +++ b/themes/prism-light.yaml @@ -8,6 +8,7 @@ source: author: "Adrien Friggeri" repo: "https://github.com/friggeri/prism" url: "https://marketplace.visualstudio.com/items?itemName=friggeri.prism-vscode-theme" + formats: null colors: bg: "#FFFFFF" fg: "#242728" diff --git a/themes/prisma.yaml b/themes/prisma.yaml index b0f42bba..d66ce60c 100644 --- a/themes/prisma.yaml +++ b/themes/prisma.yaml @@ -2,12 +2,13 @@ name: "Prisma" source: marketplace_id: "Quernest.prisma" version: "0.0.3" - installs: 8583 + installs: 8588 rating: 5 ratings: 1 author: "Quernest" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Quernest.prisma" + formats: null colors: bg: "#1D1D1D" fg: "#F7F7F7" diff --git a/themes/prismapixel-studios-dark-theme.yaml b/themes/prismapixel-studios-dark-theme.yaml deleted file mode 100644 index c7f5f40f..00000000 --- a/themes/prismapixel-studios-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "PrismaPixel Studios - Dark Theme" -source: - marketplace_id: "PrismaPixel-Studios.prismapixel-studios-theme" - version: "0.0.1" - installs: 228 - rating: 5 - ratings: 1 - author: "PrismaPixel Studios" - repo: "https://github.com/PrismaPixelStudios/PrismaPixel_Studios-vscode_theme" - url: "https://marketplace.visualstudio.com/items?itemName=PrismaPixel-Studios.prismapixel-studios-theme" -colors: - bg: "#2D2D2D" - fg: "#989998" - black: "#000000" - red: "#E1251B" - green: "#009D4F" - yellow: "#FFE800" - blue: "#1A428A" - magenta: "#E31D93" - cyan: "#00B2E3" - white: "#FFFFFF" - brightBlack: "#353331" - brightRed: "#FF9C8F" - brightGreen: "#78CC99" - brightYellow: "#FFF98D" - brightBlue: "#92AFEC" - brightMagenta: "#F08FC8" - brightCyan: "#81D3F7" - brightWhite: "#F1F1F2" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 42.6 - black: 0 - red: 26.7 - green: 35 - yellow: 87.4 - blue: 0 - magenta: 29.3 - cyan: 49.6 - white: 103.4 - brightBlack: 0 - brightRed: 59 - brightGreen: 61.3 - brightYellow: 96.6 - brightBlue: 54.6 - brightMagenta: 54.3 - brightCyan: 69.2 - brightWhite: 94.3 diff --git a/themes/prismatic-dark.yaml b/themes/prismatic-dark.yaml index afd706ab..9c65000b 100644 --- a/themes/prismatic-dark.yaml +++ b/themes/prismatic-dark.yaml @@ -8,6 +8,7 @@ source: author: "Chris Klimas" repo: "https://github.com/klembot/prismatic-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=cklimas.prismatic" + formats: null colors: bg: "#242424" fg: "#CCCCCC" diff --git a/themes/prismatic-light.yaml b/themes/prismatic-light.yaml index dd78777a..be6fbca8 100644 --- a/themes/prismatic-light.yaml +++ b/themes/prismatic-light.yaml @@ -8,6 +8,7 @@ source: author: "Chris Klimas" repo: "https://github.com/klembot/prismatic-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=cklimas.prismatic" + formats: null colors: bg: "#F5F2F0" fg: "#000000" diff --git a/themes/prismatic-void.yaml b/themes/prismatic-void.yaml index 3b67343d..bbd92bdb 100644 --- a/themes/prismatic-void.yaml +++ b/themes/prismatic-void.yaml @@ -8,6 +8,7 @@ source: author: "Chris Klimas" repo: "https://github.com/klembot/prismatic-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=cklimas.prismatic" + formats: null colors: bg: "#000000" fg: "#AAAAAA" diff --git a/themes/prismmagic.yaml b/themes/prismmagic.yaml deleted file mode 100644 index e13c0ceb..00000000 --- a/themes/prismmagic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "PrismMagic" -source: - marketplace_id: "PrismMagicTheme.PrismMagic" - version: "0.8.0" - installs: 47 - rating: 0 - ratings: 0 - author: "PrismMagic Theme" - repo: "https://github.com/slotherinee/PrismMagic" - url: "https://marketplace.visualstudio.com/items?itemName=PrismMagicTheme.PrismMagic" -colors: - bg: "#282A36" - fg: "#F8F8F2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 278 - pair: null - contrast: - fg: 99 - black: 0 - red: 23.8 - green: 50 - yellow: 82.7 - blue: 24.5 - magenta: 26.8 - cyan: 44.6 - white: 87.1 - brightBlack: 19.1 - brightRed: 35.6 - brightGreen: 60.6 - brightYellow: 92.7 - brightBlue: 37 - brightMagenta: 42.4 - brightCyan: 52.4 - brightWhite: 87.1 diff --git a/themes/pro-coding.yaml b/themes/pro-coding.yaml index 5e739f18..6fee659f 100644 --- a/themes/pro-coding.yaml +++ b/themes/pro-coding.yaml @@ -8,6 +8,7 @@ source: author: "Hasibur Rahman" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.pro-coding" + formats: null colors: bg: "#0F0F0F" fg: "#D9D9D9" diff --git a/themes/professional-dark.yaml b/themes/professional-dark.yaml index 3cf7ebb1..52b5dc30 100644 --- a/themes/professional-dark.yaml +++ b/themes/professional-dark.yaml @@ -8,6 +8,7 @@ source: author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.professional-dark" + formats: null colors: bg: "#0F0F0F" fg: "#FFFFFF" diff --git a/themes/progenesis-dark.yaml b/themes/progenesis-dark.yaml index 0be5bc84..4953cb75 100644 --- a/themes/progenesis-dark.yaml +++ b/themes/progenesis-dark.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.progenesis-theme" + formats: null colors: bg: "#181C26" fg: "#E2E6EF" diff --git a/themes/progenesis-light.yaml b/themes/progenesis-light.yaml index 2c74736e..bc5aa78a 100644 --- a/themes/progenesis-light.yaml +++ b/themes/progenesis-light.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.progenesis-theme" + formats: null colors: bg: "#F8F9FB" fg: "#2A2D35" diff --git a/themes/programmer.yaml b/themes/programmer.yaml index dab6cf00..013a9228 100644 --- a/themes/programmer.yaml +++ b/themes/programmer.yaml @@ -8,6 +8,7 @@ source: author: "paradoxfm" repo: "https://github.com/paradoxfm/programmer" url: "https://marketplace.visualstudio.com/items?itemName=paradoxfm.programmer" + formats: null colors: bg: "#1B2427" fg: "#D4D4D4" diff --git a/themes/progress-dark.yaml b/themes/progress-dark.yaml index 77b50ccb..ea7b5f35 100644 --- a/themes/progress-dark.yaml +++ b/themes/progress-dark.yaml @@ -8,6 +8,7 @@ source: author: "Philipp Comans" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PhilippComans.feels-like-progress" + formats: null colors: bg: "#0C1C15" fg: "#FFFFFF" diff --git a/themes/progress.yaml b/themes/progress.yaml deleted file mode 100644 index 808c24d2..00000000 --- a/themes/progress.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Progress" -source: - marketplace_id: "ElizaMuss.elizas-pride-themes" - version: "1.0.2" - installs: 848 - rating: 0 - ratings: 0 - author: "Eliza Muss" - repo: "https://github.com/The-Gamer69/elizas-pride-themes" - url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#868686" - red: "#BE1A21" - green: "#06BF00" - yellow: "#FDD817" - blue: "#2472C8" - magenta: "#6D2480" - cyan: "#68B4CB" - white: "#E5E5E5" - brightBlack: "#ABABAB" - brightRed: "#E2212A" - brightGreen: "#06BF00" - brightYellow: "#E3FF00" - brightBlue: "#0077E8" - brightMagenta: "#D945FF" - brightCyan: "#83E3FF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 37.6 - red: 22.6 - green: 54.1 - yellow: 84.4 - blue: 28.4 - magenta: 11.2 - cyan: 56.1 - white: 91 - brightBlack: 56.8 - brightRed: 31.2 - brightGreen: 54.1 - brightYellow: 98.9 - brightBlue: 32.2 - brightMagenta: 41.9 - brightCyan: 81.7 - brightWhite: 91 diff --git a/themes/project-dark-theme-soft.yaml b/themes/project-dark-theme-soft.yaml index 7848a36f..2af7eef4 100644 --- a/themes/project-dark-theme-soft.yaml +++ b/themes/project-dark-theme-soft.yaml @@ -8,6 +8,7 @@ source: author: "Matheu Góes" repo: "https://github.com/matheugoes/project-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=matheugoes.project-dark-theme" + formats: null colors: bg: "#171717" fg: "#D4D4D4" diff --git a/themes/prom-wiki.yaml b/themes/prom-wiki.yaml index 7601c095..8e52c8eb 100644 --- a/themes/prom-wiki.yaml +++ b/themes/prom-wiki.yaml @@ -8,6 +8,7 @@ source: author: "keveen Menezes" repo: "https://github.com/KeveenMenezes/Prometheus" url: "https://marketplace.visualstudio.com/items?itemName=KeveenMenezes.Prometheus" + formats: null colors: bg: "#1B1B1B" fg: "#888888" diff --git a/themes/pronight.yaml b/themes/pronight.yaml index d6d6439f..7f6b642a 100644 --- a/themes/pronight.yaml +++ b/themes/pronight.yaml @@ -8,6 +8,7 @@ source: author: "Huzaifa Mushtaq" repo: "https://github.com/huzaifamushtaqdev/pronight" url: "https://marketplace.visualstudio.com/items?itemName=huzaifamushtaq.pronight" + formats: null colors: bg: "#050912" fg: "#DFE6F5" diff --git a/themes/proper-dracula.yaml b/themes/proper-dracula.yaml index 9d51e097..d0047dc9 100644 --- a/themes/proper-dracula.yaml +++ b/themes/proper-dracula.yaml @@ -8,6 +8,7 @@ source: author: "properup" repo: "https://github.com/sirpeebs/proper-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" + formats: null colors: bg: "#252836" fg: "#FFFFFF" diff --git a/themes/proper-pure.yaml b/themes/proper-pure.yaml index ea5d1d6d..ee2a0527 100644 --- a/themes/proper-pure.yaml +++ b/themes/proper-pure.yaml @@ -8,6 +8,7 @@ source: author: "properup" repo: "https://github.com/sirpeebs/proper-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" + formats: null colors: bg: "#1F2846" fg: "#866DFF" diff --git a/themes/proper-theme-alternate-2.yaml b/themes/proper-theme-alternate-2.yaml index 3e40dd61..27d66ad5 100644 --- a/themes/proper-theme-alternate-2.yaml +++ b/themes/proper-theme-alternate-2.yaml @@ -8,6 +8,7 @@ source: author: "properup" repo: "https://github.com/sirpeebs/proper-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" + formats: null colors: bg: "#171C2A" fg: "#D4C9FF" diff --git a/themes/proper-theme-alternate-fork.yaml b/themes/proper-theme-alternate-fork.yaml index c9f9d5a5..d03b4376 100644 --- a/themes/proper-theme-alternate-fork.yaml +++ b/themes/proper-theme-alternate-fork.yaml @@ -8,6 +8,7 @@ source: author: "properup" repo: "https://github.com/sirpeebs/proper-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" + formats: null colors: bg: "#191E30" fg: "#D4C9FF" diff --git a/themes/proper-theme-fork.yaml b/themes/proper-theme-fork.yaml index 60584997..26a90c2c 100644 --- a/themes/proper-theme-fork.yaml +++ b/themes/proper-theme-fork.yaml @@ -8,6 +8,7 @@ source: author: "properup" repo: "https://github.com/sirpeebs/proper-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" + formats: null colors: bg: "#181F3B" fg: "#D4C9FF" diff --git a/themes/proper-up-for-what.yaml b/themes/proper-up-for-what.yaml index 9421c865..df0fb3ee 100644 --- a/themes/proper-up-for-what.yaml +++ b/themes/proper-up-for-what.yaml @@ -8,6 +8,7 @@ source: author: "properup" repo: "https://github.com/sirpeebs/proper-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" + formats: null colors: bg: "#151832" fg: "#3C3556" diff --git a/themes/proper.yaml b/themes/proper.yaml index 1ab3e32d..90830641 100644 --- a/themes/proper.yaml +++ b/themes/proper.yaml @@ -8,6 +8,7 @@ source: author: "properup" repo: "https://github.com/sirpeebs/proper-theme" url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-theme" + formats: null colors: bg: "#151D3D" fg: "#FF62C9" diff --git a/themes/propurple.yaml b/themes/propurple.yaml deleted file mode 100644 index 50f40d42..00000000 --- a/themes/propurple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "propurple" -source: - marketplace_id: "properup.proper-purple-theme" - version: "0.2.5" - installs: 1091 - rating: 0 - ratings: 0 - author: "properup" - repo: "https://github.com/sirpeebs/proper-purple-theme" - url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-purple-theme" -colors: - bg: "#011330" - fg: "#FFE26C" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 257 - pair: null - contrast: - fg: 88.9 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.7 - blue: 27.5 - magenta: 29.9 - cyan: 47.7 - white: 90.1 - brightBlack: 22.2 - brightRed: 38.7 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.5 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/protheme-dark-2.yaml b/themes/protheme-dark-2.yaml index 75beb181..6afac96f 100644 --- a/themes/protheme-dark-2.yaml +++ b/themes/protheme-dark-2.yaml @@ -6,6 +6,7 @@ source: author: "omar basheer" repo: "https://github.com/omar-basheer/ProTheme" url: "https://marketplace.visualstudio.com/items?itemName=omarbasheer.protheme" + formats: null colors: bg: "#242529" fg: "#EEFFFF" diff --git a/themes/protheme-dark.yaml b/themes/protheme-dark.yaml index e7d0efd3..c2938a6f 100644 --- a/themes/protheme-dark.yaml +++ b/themes/protheme-dark.yaml @@ -6,6 +6,7 @@ source: author: "omar basheer" repo: "https://github.com/omar-basheer/ProTheme" url: "https://marketplace.visualstudio.com/items?itemName=omarbasheer.protheme" + formats: null colors: bg: "#2A2B35" fg: "#FFFFFF" diff --git a/themes/ps-dark.yaml b/themes/ps-dark.yaml index c5489e8b..3b29c60b 100644 --- a/themes/ps-dark.yaml +++ b/themes/ps-dark.yaml @@ -8,6 +8,7 @@ source: author: "Pavel Sanchez" repo: "https://github.com/PaleBluDot/starburst-theme" url: "https://marketplace.visualstudio.com/items?itemName=ps-designs.startbust-theme" + formats: null colors: bg: "#171717" fg: "#D4D4D4" diff --git a/themes/ps-light.yaml b/themes/ps-light.yaml index 0eb62d96..f2e2ba24 100644 --- a/themes/ps-light.yaml +++ b/themes/ps-light.yaml @@ -8,6 +8,7 @@ source: author: "Pavel Sanchez" repo: "https://github.com/PaleBluDot/starburst-theme" url: "https://marketplace.visualstudio.com/items?itemName=ps-designs.startbust-theme" + formats: null colors: bg: "#BABABA" fg: "#1C1A1A" diff --git a/themes/ps-mid-blue.yaml b/themes/ps-mid-blue.yaml index 2478480e..d97d2ab2 100644 --- a/themes/ps-mid-blue.yaml +++ b/themes/ps-mid-blue.yaml @@ -8,6 +8,7 @@ source: author: "Pavel Sanchez" repo: "https://github.com/PaleBluDot/starburst-theme" url: "https://marketplace.visualstudio.com/items?itemName=ps-designs.startbust-theme" + formats: null colors: bg: "#252B30" fg: "#D4D4D4" diff --git a/themes/ps-syntax.yaml b/themes/ps-syntax.yaml index 218e1e9a..8868540e 100644 --- a/themes/ps-syntax.yaml +++ b/themes/ps-syntax.yaml @@ -1,4 +1,4 @@ -name: "PS-Syntax" +name: "Ps-Syntax" source: marketplace_id: "pstaub.ps-syntax" version: "0.0.4" @@ -8,6 +8,7 @@ source: author: "pstaub" repo: "https://github.com/pstaubs/ps-syntax" url: "https://marketplace.visualstudio.com/items?itemName=pstaub.ps-syntax" + formats: null colors: bg: "#1D1F21" fg: "#FFFFFF" diff --git a/themes/pudding-dark-caramel-beta.yaml b/themes/pudding-dark-caramel-beta.yaml deleted file mode 100644 index 996ee67f..00000000 --- a/themes/pudding-dark-caramel-beta.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pudding Dark · Caramel (Beta)" -source: - marketplace_id: "Bitcookies.pudding-vscode-theme" - version: "3.1.5" - installs: 1914 - rating: 5 - ratings: 2 - author: "Bitcookies" - repo: "https://github.com/bitcookies/pudding-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" -colors: - bg: "#1B1C2B" - fg: "#D0D2DA" - black: "#151621" - red: "#F97583" - green: "#A8D4A9" - yellow: "#F9CB7E" - blue: "#79B8FF" - magenta: "#B392F0" - cyan: "#39C5CF" - white: "#E1E4E8" - brightBlack: "#151621" - brightRed: "#F97583" - brightGreen: "#A8D4A9" - brightYellow: "#F9CB7E" - brightBlue: "#79B8FF" - brightMagenta: "#B392F0" - brightCyan: "#39C5CF" - brightWhite: "#E1E4E8" -meta: - mode: "dark" - accent: "orange" - hue: 281 - pair: null - contrast: - fg: 77.6 - black: 0 - red: 49 - green: 72.1 - yellow: 77.6 - blue: 60.1 - magenta: 50.6 - cyan: 60.1 - white: 88.4 - brightBlack: 0 - brightRed: 49 - brightGreen: 72.1 - brightYellow: 77.6 - brightBlue: 60.1 - brightMagenta: 50.6 - brightCyan: 60.1 - brightWhite: 88.4 diff --git a/themes/pudding-dark-christmas.yaml b/themes/pudding-dark-christmas.yaml deleted file mode 100644 index 7265b1bb..00000000 --- a/themes/pudding-dark-christmas.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pudding Dark · Christmas" -source: - marketplace_id: "Bitcookies.pudding-vscode-theme" - version: "3.1.5" - installs: 1914 - rating: 5 - ratings: 2 - author: "Bitcookies" - repo: "https://github.com/bitcookies/pudding-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" -colors: - bg: "#09100A" - fg: "#A3C1E8" - black: "#586069" - red: "#EA4A5A" - green: "#34D058" - yellow: "#FFEA7F" - blue: "#2188FF" - magenta: "#B392F0" - cyan: "#39C5CF" - white: "#D0D2DA" - brightBlack: "#959DA5" - brightRed: "#F97583" - brightGreen: "#85E89D" - brightYellow: "#FFEA7F" - brightBlue: "#79B8FF" - brightMagenta: "#B392F0" - brightCyan: "#56D4DD" - brightWhite: "#FAFBFC" -meta: - mode: "dark" - accent: "green" - hue: 149 - pair: null - contrast: - fg: 67.4 - black: 19.8 - red: 37.6 - green: 62.9 - yellow: 93.4 - blue: 39.6 - magenta: 52 - cyan: 61.5 - white: 79 - brightBlack: 48.4 - brightRed: 50.4 - brightGreen: 79.7 - brightYellow: 93.4 - brightBlue: 61.5 - brightMagenta: 52 - brightCyan: 70.1 - brightWhite: 104.8 diff --git a/themes/pudding-dark.yaml b/themes/pudding-dark.yaml deleted file mode 100644 index 33a30b25..00000000 --- a/themes/pudding-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pudding Dark" -source: - marketplace_id: "Bitcookies.pudding-vscode-theme" - version: "3.1.5" - installs: 1914 - rating: 5 - ratings: 2 - author: "Bitcookies" - repo: "https://github.com/bitcookies/pudding-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" -colors: - bg: "#1B1C2B" - fg: "#A3C1E8" - black: "#586069" - red: "#EA4A5A" - green: "#34D058" - yellow: "#FFEA7F" - blue: "#2188FF" - magenta: "#B392F0" - cyan: "#39C5CF" - white: "#D0D2DA" - brightBlack: "#959DA5" - brightRed: "#F97583" - brightGreen: "#85E89D" - brightYellow: "#FFEA7F" - brightBlue: "#79B8FF" - brightMagenta: "#B392F0" - brightCyan: "#56D4DD" - brightWhite: "#FAFBFC" -meta: - mode: "dark" - accent: "green" - hue: 281 - pair: "Pudding Light" - contrast: - fg: 66 - black: 18.4 - red: 36.2 - green: 61.5 - yellow: 92 - blue: 38.2 - magenta: 50.6 - cyan: 60.1 - white: 77.6 - brightBlack: 47 - brightRed: 49 - brightGreen: 78.3 - brightYellow: 92 - brightBlue: 60.1 - brightMagenta: 50.6 - brightCyan: 68.7 - brightWhite: 103.4 diff --git a/themes/pudding-light-jk.yaml b/themes/pudding-light-jk.yaml deleted file mode 100644 index 485bf722..00000000 --- a/themes/pudding-light-jk.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pudding Light · JK" -source: - marketplace_id: "Bitcookies.pudding-vscode-theme" - version: "3.1.5" - installs: 1914 - rating: 5 - ratings: 2 - author: "Bitcookies" - repo: "https://github.com/bitcookies/pudding-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" -colors: - bg: "#EEF3F7" - fg: "#6C84B0" - black: "#24292E" - red: "#D73A49" - green: "#28A745" - yellow: "#DBAB09" - blue: "#0366D6" - magenta: "#5A32A3" - cyan: "#1B7C83" - white: "#6A737D" - brightBlack: "#959DA5" - brightRed: "#CB2431" - brightGreen: "#22863A" - brightYellow: "#B08800" - brightBlue: "#005CC5" - brightMagenta: "#5A32A3" - brightCyan: "#3192AA" - brightWhite: "#D1D5DA" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 57.6 - black: 93.9 - red: 62.8 - green: 50.3 - yellow: 34 - blue: 68.6 - magenta: 81.6 - cyan: 66.2 - white: 65.8 - brightBlack: 45.5 - brightRed: 67.9 - brightGreen: 64.1 - brightYellow: 52.5 - brightBlue: 72.9 - brightMagenta: 81.6 - brightCyan: 55.7 - brightWhite: 14.9 diff --git a/themes/pudding-light.yaml b/themes/pudding-light.yaml deleted file mode 100644 index 6f33e872..00000000 --- a/themes/pudding-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pudding Light" -source: - marketplace_id: "Bitcookies.pudding-vscode-theme" - version: "3.1.5" - installs: 1914 - rating: 5 - ratings: 2 - author: "Bitcookies" - repo: "https://github.com/bitcookies/pudding-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" -colors: - bg: "#F9ECDD" - fg: "#A88809" - black: "#24292E" - red: "#D73A49" - green: "#28A745" - yellow: "#DBAB09" - blue: "#0366D6" - magenta: "#5A32A3" - cyan: "#1B7C83" - white: "#6A737D" - brightBlack: "#959DA5" - brightRed: "#CB2431" - brightGreen: "#22863A" - brightYellow: "#B08800" - brightBlue: "#005CC5" - brightMagenta: "#5A32A3" - brightCyan: "#3192AA" - brightWhite: "#803618" -meta: - mode: "light" - accent: "orange" - hue: 71 - pair: "Pudding Dark" - contrast: - fg: 51 - black: 91.3 - red: 60.2 - green: 47.7 - yellow: 31.4 - blue: 66 - magenta: 79 - cyan: 63.6 - white: 63.2 - brightBlack: 42.9 - brightRed: 65.3 - brightGreen: 61.5 - brightYellow: 49.9 - brightBlue: 70.3 - brightMagenta: 79 - brightCyan: 53.1 - brightWhite: 78.6 diff --git a/themes/pulpy-orange.yaml b/themes/pulpy-orange.yaml index 4efedf4c..dfbdd121 100644 --- a/themes/pulpy-orange.yaml +++ b/themes/pulpy-orange.yaml @@ -2,12 +2,13 @@ name: "Pulpy-Orange" source: marketplace_id: "Tinuthampi.Pulpy-Orange" version: "0.0.3" - installs: 2430 + installs: 2431 rating: 5 ratings: 1 author: "Tinu thampi" repo: "https://github.com/Tinu-thampi13/Pulpy-Orange" url: "https://marketplace.visualstudio.com/items?itemName=Tinuthampi.Pulpy-Orange" + formats: null colors: bg: "#1B1B1B" fg: "#FFB3B3" diff --git a/themes/pulsar.yaml b/themes/pulsar.yaml index 24c2a267..55e5bc3d 100644 --- a/themes/pulsar.yaml +++ b/themes/pulsar.yaml @@ -8,6 +8,7 @@ source: author: "Damian Mrowiec" repo: "https://github.com/dmrowiec-pl/pulsar-theme" url: "https://marketplace.visualstudio.com/items?itemName=dmrowiec-pl.pulsar-theme" + formats: null colors: bg: "#1E1E1E" fg: "#C5C8C6" diff --git a/themes/pulse-balanced-purple.yaml b/themes/pulse-balanced-purple.yaml deleted file mode 100644 index ba98a717..00000000 --- a/themes/pulse-balanced-purple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pulse Balanced Purple" -source: - marketplace_id: "IrvinBenitez.Pulse-theme-vscode" - version: "1.0.2" - installs: 105 - rating: 5 - ratings: 1 - author: "Irvin Benitez" - repo: "https://github.com/PulseStudio07/VScode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" -colors: - bg: "#1E1E2E" - fg: "#D5D5E3" - black: "#1E1E2E" - red: "#D89AAA" - green: "#A8C99A" - yellow: "#DDC8A3" - blue: "#9D9DDB" - magenta: "#C49AD8" - cyan: "#9AD8D8" - white: "#D5D5E3" - brightBlack: "#5A5A6E" - brightRed: "#E8AABA" - brightGreen: "#B8D9AA" - brightYellow: "#EDD8B3" - brightBlue: "#ADADEB" - brightMagenta: "#D4AAE8" - brightCyan: "#AAE8E8" - brightWhite: "#EBEBF5" -meta: - mode: "dark" - accent: "magenta" - hue: 284 - pair: null - contrast: - fg: 79.7 - black: 0 - red: 54.7 - green: 66.3 - yellow: 72.7 - blue: 50.2 - magenta: 53.9 - cyan: 74.2 - white: 79.7 - brightBlack: 16.7 - brightRed: 63.5 - brightGreen: 75.7 - brightYellow: 82.4 - brightBlue: 58.9 - brightMagenta: 62.7 - brightCyan: 83.8 - brightWhite: 93.3 diff --git a/themes/pulse-comfort-light.yaml b/themes/pulse-comfort-light.yaml deleted file mode 100644 index 41250b13..00000000 --- a/themes/pulse-comfort-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pulse Comfort Light" -source: - marketplace_id: "IrvinBenitez.Pulse-theme-vscode" - version: "1.0.2" - installs: 105 - rating: 5 - ratings: 1 - author: "Irvin Benitez" - repo: "https://github.com/PulseStudio07/VScode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" -colors: - bg: "#F5F2F8" - fg: "#2E2838" - black: "#3E3848" - red: "#B8576D" - green: "#5D9857" - yellow: "#C89F4D" - blue: "#5D6DBB" - magenta: "#9D57B8" - cyan: "#4D9D9D" - white: "#E5E0ED" - brightBlack: "#6A5E7E" - brightRed: "#C8677D" - brightGreen: "#6DA867" - brightYellow: "#D8AF5D" - brightBlue: "#6D7DCB" - brightMagenta: "#AD67C8" - brightCyan: "#5DADAD" - brightWhite: "#F5F0FD" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 93.8 - black: 88.9 - red: 64 - green: 54.8 - yellow: 41.2 - blue: 66.1 - magenta: 65 - cyan: 51.6 - white: 7.5 - brightBlack: 72.8 - brightRed: 57 - brightGreen: 47 - brightYellow: 32.9 - brightBlue: 58.8 - brightMagenta: 58 - brightCyan: 43.7 - brightWhite: 0 diff --git a/themes/pulse-soft-purple.yaml b/themes/pulse-soft-purple.yaml deleted file mode 100644 index 5f1c7ae9..00000000 --- a/themes/pulse-soft-purple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pulse Soft Purple" -source: - marketplace_id: "IrvinBenitez.Pulse-theme-vscode" - version: "1.0.2" - installs: 105 - rating: 5 - ratings: 1 - author: "Irvin Benitez" - repo: "https://github.com/PulseStudio07/VScode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" -colors: - bg: "#2A2A35" - fg: "#D0D0DD" - black: "#2A2A35" - red: "#C9919E" - green: "#9DB899" - yellow: "#D4C49D" - blue: "#9D9DC9" - magenta: "#B899C9" - cyan: "#99C9C9" - white: "#D0D0DD" - brightBlack: "#5A5A6A" - brightRed: "#D9A1AE" - brightGreen: "#ADC8A9" - brightYellow: "#E4D4AD" - brightBlue: "#ADAED9" - brightMagenta: "#C8A9D9" - brightCyan: "#A9D9D9" - brightWhite: "#E5E5F0" -meta: - mode: "dark" - accent: "magenta" - hue: 285 - pair: null - contrast: - fg: 74.6 - black: 0 - red: 46.9 - green: 55.9 - yellow: 67.6 - blue: 47.2 - magenta: 49.1 - cyan: 64.7 - white: 74.6 - brightBlack: 14.6 - brightRed: 55.5 - brightGreen: 64.9 - brightYellow: 77.2 - brightBlue: 56.3 - brightMagenta: 57.8 - brightCyan: 74.1 - brightWhite: 87.5 diff --git a/themes/pumpkin.yaml b/themes/pumpkin.yaml deleted file mode 100644 index ac56e3fd..00000000 --- a/themes/pumpkin.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pumpkin" -source: - marketplace_id: "IvanPerez9.pumpkin-color-theme" - version: "0.3.0" - installs: 695 - rating: 5 - ratings: 1 - author: "IvanPerez9" - repo: "https://github.com/IvanPerez9/pumpkin-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=IvanPerez9.pumpkin-color-theme" -colors: - bg: "#171616" - fg: "#A7B5E0" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#0969FF" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 61.9 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.7 - blue: 29.2 - magenta: 29.8 - cyan: 47.6 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.6 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.4 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/punjab-land-of-five-rivers.yaml b/themes/punjab-land-of-five-rivers.yaml index 81452168..9d5de0f8 100644 --- a/themes/punjab-land-of-five-rivers.yaml +++ b/themes/punjab-land-of-five-rivers.yaml @@ -8,6 +8,7 @@ source: author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" + formats: null colors: bg: "#1A1714" fg: "#F5F0E8" diff --git a/themes/punkfut.yaml b/themes/punkfut.yaml index 294e987f..2c11301b 100644 --- a/themes/punkfut.yaml +++ b/themes/punkfut.yaml @@ -6,6 +6,7 @@ source: author: "PowerThemes" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PowerThemes.punkfut-vscode-theme" + formats: null colors: bg: "#0C0C0C" fg: "#FFFFFF" diff --git a/themes/pur-theme-v1.yaml b/themes/pur-theme-v1.yaml index 5487ef61..37c8f1c7 100644 --- a/themes/pur-theme-v1.yaml +++ b/themes/pur-theme-v1.yaml @@ -8,6 +8,7 @@ source: author: "DevEduardo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=DevEduardo.purplus-theme" + formats: null colors: bg: "#181820" fg: "#D4D4D4" diff --git a/themes/purble-0-0-2-fork-fork.yaml b/themes/purble-0-0-2-fork-fork.yaml deleted file mode 100644 index 91ebd98d..00000000 --- a/themes/purble-0-0-2-fork-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "purble 0.0.2 - Fork - Fork" -source: - marketplace_id: "PSJoon.psjoon" - version: "0.0.3" - installs: 5174 - rating: 5 - ratings: 2 - author: "PSJoon" - repo: "https://github.com/PSjoon/testes" - url: "https://marketplace.visualstudio.com/items?itemName=PSJoon.psjoon" -colors: - bg: "#0A0115" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 305 - pair: null - contrast: - fg: 107.8 - black: 0 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.3 - magenta: 30.7 - cyan: 48.5 - white: 90.9 - brightBlack: 23 - brightRed: 39.5 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.9 - brightMagenta: 46.3 - brightCyan: 56.3 - brightWhite: 90.9 diff --git a/themes/purddy.yaml b/themes/purddy.yaml index cd1c3934..0e7203f4 100644 --- a/themes/purddy.yaml +++ b/themes/purddy.yaml @@ -1,4 +1,4 @@ -name: "Purddy" +name: "purddy" source: marketplace_id: "Cyphernetes.purddy" version: "0.0.2" @@ -8,6 +8,7 @@ source: author: "Avital Tamir" repo: "https://github.com/AvitalTamir/vscode-purddy-theme" url: "https://marketplace.visualstudio.com/items?itemName=Cyphernetes.purddy" + formats: null colors: bg: "#FFF1E6" fg: "#5C3D2E" diff --git a/themes/pure-black-monokai-inspired.yaml b/themes/pure-black-monokai-inspired.yaml index 70327d16..7a5be844 100644 --- a/themes/pure-black-monokai-inspired.yaml +++ b/themes/pure-black-monokai-inspired.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "PureBlack-MonokaiInspired.pureblackmonokaiinspired" version: "0.0.11" installs: 267 + rating: 0 + ratings: 0 author: "Pure Black - Monokai Inspired" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PureBlack-MonokaiInspired.pureblackmonokaiinspired" + formats: null colors: bg: "#000000" fg: "#F7F1FF" diff --git a/themes/pure-black.yaml b/themes/pure-black.yaml index 4163d691..1611f440 100644 --- a/themes/pure-black.yaml +++ b/themes/pure-black.yaml @@ -2,12 +2,13 @@ name: "Pure Black" source: marketplace_id: "SscSPs.pure-black" version: "0.1.0" - installs: 4230 + installs: 4231 rating: 3.67 ratings: 3 author: "Sahil Soni" repo: "https://github.com/SscSPs/pure-black-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SscSPs.pure-black" + formats: null colors: bg: "#000000" fg: "#DFDFDF" diff --git a/themes/pure-dark.yaml b/themes/pure-dark.yaml index b102047e..cfc0b673 100644 --- a/themes/pure-dark.yaml +++ b/themes/pure-dark.yaml @@ -8,6 +8,7 @@ source: author: "Anindra" repo: "https://github.com/meanindra/codeavenge-vscode.git#master" url: "https://marketplace.visualstudio.com/items?itemName=Anindra.puredark" + formats: null colors: bg: "#171717" fg: "#D4D4D4" diff --git a/themes/pure-light.yaml b/themes/pure-light.yaml index 833a6580..3c45c0cd 100644 --- a/themes/pure-light.yaml +++ b/themes/pure-light.yaml @@ -8,6 +8,7 @@ source: author: "me7uiz" repo: "https://github.com/meluiz/pure-themes" url: "https://marketplace.visualstudio.com/items?itemName=me7uiz.pure-themes" + formats: null colors: bg: "#FFFFFF" fg: "#27272A" diff --git a/themes/pure-monochrome.yaml b/themes/pure-monochrome.yaml deleted file mode 100644 index 2b3892a8..00000000 --- a/themes/pure-monochrome.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Pure Monochrome" -source: - marketplace_id: "username918r818.pure-monochrome" - version: "0.0.1" - installs: 245 - author: "username918r818" - repo: "https://github.com/username918r818/pure-monochrome" - url: "https://marketplace.visualstudio.com/items?itemName=username918r818.pure-monochrome" -colors: - bg: "#101010" - fg: "#EAEAEA" - black: "#101010" - red: "#7E7E7E" - green: "#525252" - yellow: "#A9A9A9" - blue: "#3C3C3C" - magenta: "#939393" - cyan: "#686868" - white: "#BFBFBF" - brightBlack: "#262626" - brightRed: "#7E7E7E" - brightGreen: "#525252" - brightYellow: "#A9A9A9" - brightBlue: "#3C3C3C" - brightMagenta: "#939393" - brightCyan: "#686868" - brightWhite: "#EBEBEB" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 93.8 - black: 0 - red: 33.4 - green: 14.5 - yellow: 55.3 - blue: 0 - magenta: 43.7 - cyan: 23.5 - white: 67.6 - brightBlack: 0 - brightRed: 33.4 - brightGreen: 14.5 - brightYellow: 55.3 - brightBlue: 0 - brightMagenta: 43.7 - brightCyan: 23.5 - brightWhite: 94.4 diff --git a/themes/pureblack.yaml b/themes/pureblack.yaml deleted file mode 100644 index d643b723..00000000 --- a/themes/pureblack.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "PureBlack" -source: - marketplace_id: "jeandeaual.noir" - version: "0.0.2" - installs: 1501 - rating: 0 - ratings: 0 - author: "jeandeaual" - repo: "https://github.com/jeandeaual/vscode-theme-noir" - url: "https://marketplace.visualstudio.com/items?itemName=jeandeaual.noir" -colors: - bg: "#000000" - fg: "#F2E5BC" - black: "#1D2021" - red: "#CC241D" - green: "#98971A" - yellow: "#13772C" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#F42C3E" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#99C6CA" - brightMagenta: "#D3869B" - brightCyan: "#7EC16E" - brightWhite: "#EBDBB2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 91.2 - black: 0 - red: 26.3 - green: 43.9 - yellow: 23.9 - blue: 32.6 - magenta: 32.7 - cyan: 43 - white: 48.2 - brightBlack: 37.4 - brightRed: 36.5 - brightGreen: 62.2 - brightYellow: 72.8 - brightBlue: 67.4 - brightMagenta: 49 - brightCyan: 60 - brightWhite: 85.4 diff --git a/themes/purgle-dark-purple.yaml b/themes/purgle-dark-purple.yaml deleted file mode 100644 index 736e68fa..00000000 --- a/themes/purgle-dark-purple.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Purgle Dark (Purple)" -source: - marketplace_id: "rmsyntax.rmsyntax-purgle-dark" - version: "0.0.6" - installs: 45 - author: "rmsyntax" - repo: "https://github.com/ROMANSYNTAX32/Purgle-Dark" - url: "https://marketplace.visualstudio.com/items?itemName=rmsyntax.rmsyntax-purgle-dark" -colors: - bg: "#3B202F" - fg: "#8FA1B5" - black: "#170E13" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#4775FF" - magenta: "#BC3FBC" - cyan: "#57EFFF" - white: "#DBDBDB" - brightBlack: "#2C1F26" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#B1F0FF" - brightWhite: "#D1A5BE" -meta: - mode: "dark" - accent: "pink" - hue: 346 - pair: null - contrast: - fg: 46.7 - black: 0 - red: 24.1 - green: 50.4 - yellow: 83 - blue: 31.2 - magenta: 27.1 - cyan: 81.6 - white: 81.1 - brightBlack: 0 - brightRed: 35.9 - brightGreen: 60.9 - brightYellow: 93 - brightBlue: 37.4 - brightMagenta: 42.7 - brightCyan: 87.9 - brightWhite: 56.7 diff --git a/themes/puri-twilite.yaml b/themes/puri-twilite.yaml index 86464fe1..1d14f8f2 100644 --- a/themes/puri-twilite.yaml +++ b/themes/puri-twilite.yaml @@ -8,6 +8,7 @@ source: author: "Sayam" repo: "https://github.com/sayampradhan/puri-twilite" url: "https://marketplace.visualstudio.com/items?itemName=Sayam.puri-twilite" + formats: null colors: bg: "#240702" fg: "#FFFFFF" diff --git a/themes/purple-cake.yaml b/themes/purple-cake.yaml index 2e998d9f..f7b35595 100644 --- a/themes/purple-cake.yaml +++ b/themes/purple-cake.yaml @@ -8,6 +8,7 @@ source: author: "jker" repo: "https://github.com/guidolee/jker-purple-cake" url: "https://marketplace.visualstudio.com/items?itemName=jker.purple-cake" + formats: null colors: bg: "#221F25" fg: "#F4F4F5" diff --git a/themes/purple-cloud-minimal.yaml b/themes/purple-cloud-minimal.yaml index 33d17547..af9f6730 100644 --- a/themes/purple-cloud-minimal.yaml +++ b/themes/purple-cloud-minimal.yaml @@ -8,6 +8,7 @@ source: author: "Keith-sys" repo: "https://github.com/Keith-sys/purple-cloud-theme" url: "https://marketplace.visualstudio.com/items?itemName=Keith-sys.purple-cloud-theme" + formats: null colors: bg: "#090B10" fg: "#FFFFFF" diff --git a/themes/purple-cloud-theme.yaml b/themes/purple-cloud-theme.yaml index a00df5ae..454ef012 100644 --- a/themes/purple-cloud-theme.yaml +++ b/themes/purple-cloud-theme.yaml @@ -8,6 +8,7 @@ source: author: "Keith-sys" repo: "https://github.com/Keith-sys/purple-cloud-theme" url: "https://marketplace.visualstudio.com/items?itemName=Keith-sys.purple-cloud-theme" + formats: null colors: bg: "#0F111A" fg: "#FFFFFF" diff --git a/themes/purple-codain.yaml b/themes/purple-codain.yaml index f7f26273..53032080 100644 --- a/themes/purple-codain.yaml +++ b/themes/purple-codain.yaml @@ -1,13 +1,14 @@ -name: "Purple Codain" +name: "Purple-Codain" source: marketplace_id: "ymaninho.theme-purple-codain" version: "0.0.6" - installs: 3759 + installs: 3769 rating: 5 ratings: 1 author: "ymaninho" repo: "https://github.com/ymaninho54/Theme-Vscode-Purple" url: "https://marketplace.visualstudio.com/items?itemName=ymaninho.theme-purple-codain" + formats: null colors: bg: "#151515" fg: "#E1E1E0" diff --git a/themes/purple-cyan.yaml b/themes/purple-cyan.yaml deleted file mode 100644 index 17d28fff..00000000 --- a/themes/purple-cyan.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Purple-cyan" -source: - marketplace_id: "Pizzutti.pizzutti-purple-cyan" - version: "1.0.1" - installs: 158 - rating: 0 - ratings: 0 - author: "Pizzutti" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Pizzutti.pizzutti-purple-cyan" -colors: - bg: "#282828" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 77 - black: 0 - red: 24.3 - green: 50.6 - yellow: 83.2 - blue: 25 - magenta: 27.3 - cyan: 45.1 - white: 87.6 - brightBlack: 19.6 - brightRed: 36.1 - brightGreen: 61.1 - brightYellow: 93.2 - brightBlue: 37.6 - brightMagenta: 42.9 - brightCyan: 53 - brightWhite: 87.6 diff --git a/themes/purple-dark-black.yaml b/themes/purple-dark-black.yaml index 261f0ba9..ac4e6576 100644 --- a/themes/purple-dark-black.yaml +++ b/themes/purple-dark-black.yaml @@ -8,6 +8,7 @@ source: author: "Fishappy0" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Fishappy0.purple-deep-black" + formats: null colors: bg: "#060606" fg: "#BEA0FF" diff --git a/themes/purple-dark-theme-unicode.yaml b/themes/purple-dark-theme-unicode.yaml deleted file mode 100644 index 459b084c..00000000 --- a/themes/purple-dark-theme-unicode.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Purple Dark Theme - Unicode" -source: - marketplace_id: "LeehXD.unicode-purple-dark-theme" - version: "0.0.4" - installs: 960 - rating: 5 - ratings: 1 - author: "leehxd" - repo: "https://github.com/LeehXD/unicode-purple-dark" - url: "https://marketplace.visualstudio.com/items?itemName=LeehXD.unicode-purple-dark-theme" -colors: - bg: "#000000" - fg: "#F7F7F7" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 102.6 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/purple-dark.yaml b/themes/purple-dark.yaml index ea64ab9b..b2861e30 100644 --- a/themes/purple-dark.yaml +++ b/themes/purple-dark.yaml @@ -1,52 +1,53 @@ -name: "Purple/Dark" +name: "Purple dark" source: - marketplace_id: "purple-theme-vs.purple-theme-vscode" - version: "0.0.2" - installs: 2773 + marketplace_id: "JefersonPc.purple-dark" + version: "15.0.5" + installs: 220 rating: 0 ratings: 0 - author: "purple-theme-vs" - repo: "https://github.com/dbedoya04/purple-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=purple-theme-vs.purple-theme-vscode" + author: "JefersonPc" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JefersonPc.purple-dark" + formats: null colors: - bg: "#000000" - fg: "#D4D4D4" + bg: "#1E1E1E" + fg: "#FFFFFF" black: "#000000" red: "#CD3131" green: "#0DBC79" yellow: "#E5E510" - blue: "#7E24C8" + blue: "#2472C8" magenta: "#BC3FBC" - cyan: "#6F11CD" - white: "#E5E5E5" + cyan: "#11A8CD" + white: "#FFFFFF" brightBlack: "#666666" brightRed: "#F14C4C" brightGreen: "#23D18B" brightYellow: "#F5F543" - brightBlue: "#9B3BEA" + brightBlue: "#3B8EEA" brightMagenta: "#D670D6" - brightCyan: "#6929DB" - brightWhite: "#E5E5E5" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" meta: mode: "dark" - accent: "magenta" + accent: "pink" hue: null pair: null contrast: - fg: 80.5 + fg: 106 black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 18.8 - magenta: 30.8 - cyan: 16.3 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 28.2 - brightMagenta: 46.4 - brightCyan: 18.5 - brightWhite: 91 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 106 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 106 diff --git a/themes/purple-deep-black-fork.yaml b/themes/purple-deep-black-fork.yaml deleted file mode 100644 index 8a369f71..00000000 --- a/themes/purple-deep-black-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Purple(Deep Black); - Fork" -source: - marketplace_id: "Alle.darkpurpletheme" - version: "0.0.1" - installs: 13 - rating: 0 - ratings: 0 - author: "Alle" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Alle.darkpurpletheme" -colors: - bg: "#17001F" - fg: "#89DDE6" - black: "#474747" - red: "#CD3131" - green: "#0DBC20" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#757575" - brightRed: "#FF6A6A" - brightGreen: "#68FF6A" - brightYellow: "#FFFF82" - brightBlue: "#3B8EEA" - brightMagenta: "#EE7DEE" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: 317 - pair: null - contrast: - fg: 77.5 - black: 10.5 - red: 27.3 - green: 52.4 - yellow: 86.2 - blue: 28.1 - magenta: 30.4 - cyan: 48.2 - white: 90.6 - brightBlack: 29.3 - brightRed: 48.5 - brightGreen: 88.8 - brightYellow: 103.4 - brightBlue: 40.6 - brightMagenta: 55.1 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/purple-deep-black.yaml b/themes/purple-deep-black.yaml index 01e455d9..02a31768 100644 --- a/themes/purple-deep-black.yaml +++ b/themes/purple-deep-black.yaml @@ -8,6 +8,7 @@ source: author: "Fishappy0" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Fishappy0.purple-deep-black" + formats: null colors: bg: "#000000" fg: "#BEA0FF" diff --git a/themes/purple-dream.yaml b/themes/purple-dream.yaml index 1495abbd..5df5f950 100644 --- a/themes/purple-dream.yaml +++ b/themes/purple-dream.yaml @@ -2,12 +2,13 @@ name: "Purple Dream" source: marketplace_id: "LR6549-extensions.purple-dream" version: "1.8.7" - installs: 558 + installs: 559 rating: 0 ratings: 0 author: "LR6549" repo: null url: "https://marketplace.visualstudio.com/items?itemName=LR6549-extensions.purple-dream" + formats: null colors: bg: "#100719" fg: "#F7D0FF" diff --git a/themes/purple-galaxy.yaml b/themes/purple-galaxy.yaml index 6139402b..4fcfe01e 100644 --- a/themes/purple-galaxy.yaml +++ b/themes/purple-galaxy.yaml @@ -8,6 +8,7 @@ source: author: "kiro-tagama" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kiro-tagama.purple-galaxy-theme" + formats: null colors: bg: "#0A0A0A" fg: "#ABB2BF" diff --git a/themes/purple-ish-dimmed.yaml b/themes/purple-ish-dimmed.yaml index 6e877f3b..62f64f41 100644 --- a/themes/purple-ish-dimmed.yaml +++ b/themes/purple-ish-dimmed.yaml @@ -8,6 +8,7 @@ source: author: "Felipe Massola" repo: "https://github.com/massoladb/purple-ish" url: "https://marketplace.visualstudio.com/items?itemName=massoladb.purple-ish" + formats: null colors: bg: "#151515" fg: "#FFFFFF" diff --git a/themes/purple-ish.yaml b/themes/purple-ish.yaml index b7e81c65..bfe3c1c1 100644 --- a/themes/purple-ish.yaml +++ b/themes/purple-ish.yaml @@ -8,6 +8,7 @@ source: author: "Felipe Massola" repo: "https://github.com/massoladb/purple-ish" url: "https://marketplace.visualstudio.com/items?itemName=massoladb.purple-ish" + formats: null colors: bg: "#2D2D36" fg: "#FFFFFF" diff --git a/themes/purple-royal.yaml b/themes/purple-royal.yaml deleted file mode 100644 index b7def46f..00000000 --- a/themes/purple-royal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Purple Royal" -source: - marketplace_id: "DarkMannn.purple-royal-theme" - version: "0.0.5" - installs: 817 - rating: 0 - ratings: 0 - author: "DarkMannn" - repo: "https://github.com/DarkMannn/purple-royal-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.purple-royal-theme" -colors: - bg: "#191919" - fg: "#DBDBDB" - black: "#000000" - red: "#CD6161" - green: "#2BB681" - yellow: "#E2E298" - blue: "#3B7AC0" - magenta: "#7851A9" - cyan: "#2EACCB" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#FF8181" - brightGreen: "#4FE4A8" - brightYellow: "#F7F780" - brightBlue: "#50A3FF" - brightMagenta: "#AE87E0" - brightCyan: "#42CCEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 83.6 - black: 0 - red: 35.1 - green: 50.6 - yellow: 85.3 - blue: 29.9 - magenta: 21.2 - cyan: 49.3 - white: 89.8 - brightBlack: 21.8 - brightRed: 53.8 - brightGreen: 74.5 - brightYellow: 97.5 - brightBlue: 50 - brightMagenta: 45.9 - brightCyan: 65.7 - brightWhite: 106.7 diff --git a/themes/purple-surface-dark.yaml b/themes/purple-surface-dark.yaml index d92c78fd..7df25513 100644 --- a/themes/purple-surface-dark.yaml +++ b/themes/purple-surface-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AgraeonLabs.dev-themes" version: "0.1.0" installs: 283 + rating: 0 + ratings: 0 author: "Agraeon Labs" repo: "https://github.com/adiagcodelance/VS-Code-Themes" url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" + formats: null colors: bg: "#121212" fg: "#E0E0E0" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "green" hue: null + pair: null contrast: fg: 87.3 black: 0 diff --git a/themes/purple-theme.yaml b/themes/purple-theme.yaml index 05001bd8..b85cc242 100644 --- a/themes/purple-theme.yaml +++ b/themes/purple-theme.yaml @@ -8,6 +8,7 @@ source: author: "Otávio de Souza Cardoso" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ma1on3se.purple-theme" + formats: null colors: bg: "#22142B" fg: "#FFFFFF" diff --git a/themes/purple-twist.yaml b/themes/purple-twist.yaml index c9a7b291..b02f3bdb 100644 --- a/themes/purple-twist.yaml +++ b/themes/purple-twist.yaml @@ -8,6 +8,7 @@ source: author: "Vishal Maurya" repo: "https://github.com/maurya-07/zenith-ui" url: "https://marketplace.visualstudio.com/items?itemName=VishalMaurya.zenith-ui" + formats: null colors: bg: "#1D0038" fg: "#19E6AC" diff --git a/themes/purple-void.yaml b/themes/purple-void.yaml index aef6b17d..2db17559 100644 --- a/themes/purple-void.yaml +++ b/themes/purple-void.yaml @@ -1,52 +1,53 @@ -name: "Purple Void" +name: "purple-void" source: - marketplace_id: "Rej.purpleVoid" - version: "1.0.3" - installs: 5015 - rating: 5 - ratings: 2 - author: "Rej" - repo: "https://github.com/Rejdesu/purpleVoid" - url: "https://marketplace.visualstudio.com/items?itemName=Rej.purpleVoid" + marketplace_id: "ErykOlliver.purple-void" + version: "1.0.1" + installs: 1169 + rating: 0 + ratings: 0 + author: "ErykOlliver" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ErykOlliver.purple-void" + formats: null colors: - bg: "#000000" - fg: "#D4D4D4" - black: "#333333" + bg: "#0C0A1B" + fg: "#9AFFFA" + black: "#000000" red: "#CD3131" green: "#0DBC79" yellow: "#E5E510" blue: "#2472C8" magenta: "#BC3FBC" cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#444444" + white: "#E5E5E5" + brightBlack: "#666666" brightRed: "#F14C4C" brightGreen: "#23D18B" brightYellow: "#F5F543" brightBlue: "#3B8EEA" brightMagenta: "#D670D6" brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" + brightWhite: "#E5E5E5" meta: mode: "dark" accent: "pink" - hue: null + hue: 287 pair: null contrast: - fg: 80.5 + fg: 96.5 black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 107.9 - brightBlack: 9.8 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 107.9 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/purple.yaml b/themes/purple.yaml index 3d440d02..103c6990 100644 --- a/themes/purple.yaml +++ b/themes/purple.yaml @@ -1,52 +1,53 @@ name: "purple" source: - marketplace_id: "natecrow.consonance-themes" - version: "1.2.0" - installs: 317 - rating: 0 - ratings: 0 - author: "natecrow" - repo: "https://github.com/natecrow/consonance-vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" + marketplace_id: "PSJoon.psjoon" + version: "0.0.3" + installs: 5179 + rating: 5 + ratings: 2 + author: "PSJoon" + repo: "https://github.com/PSjoon/testes" + url: "https://marketplace.visualstudio.com/items?itemName=PSJoon.psjoon" + formats: null colors: - bg: "#111111" - fg: "#D1C4B4" + bg: "#0A0115" + fg: "#FFFFFF" black: "#000000" - red: "#D8BEE1" - green: "#C487DE" - yellow: "#EFAFFF" - blue: "#807567" - magenta: "#9A60B4" - cyan: "#AE96B7" - white: "#EDE0D0" - brightBlack: "#807567" - brightRed: "#D8BEE1" - brightGreen: "#C487DE" - brightYellow: "#EFAFFF" - brightBlue: "#807567" - brightMagenta: "#9A60B4" - brightCyan: "#AE96B7" - brightWhite: "#FFFDEC" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: mode: "dark" accent: "pink" - hue: null + hue: 305 pair: null contrast: - fg: 71.5 + fg: 107.8 black: 0 - red: 72 - green: 49.7 - yellow: 71.5 - blue: 29.9 - magenta: 30.4 - cyan: 49.4 - white: 88.5 - brightBlack: 29.9 - brightRed: 72 - brightGreen: 49.7 - brightYellow: 71.5 - brightBlue: 29.9 - brightMagenta: 30.4 - brightCyan: 49.4 - brightWhite: 105.6 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/purpleandblack.yaml b/themes/purpleandblack.yaml deleted file mode 100644 index 13539ea0..00000000 --- a/themes/purpleandblack.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "PurpleAndBlack" -source: - marketplace_id: "Pab-Theme.purpleandblack" - version: "0.0.2" - installs: 986 - rating: 0 - ratings: 0 - author: "Pab-Theme" - repo: "https://github.com/DweOfisial/Theme-Visual-PaB" - url: "https://marketplace.visualstudio.com/items?itemName=Pab-Theme.purpleandblack" -colors: - bg: "#1D1D1D" - fg: "#9B9B9B" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 46.5 - black: 0 - red: 26 - green: 52.3 - yellow: 84.9 - blue: 26.7 - magenta: 29.1 - cyan: 46.9 - white: 106.2 - brightBlack: 21.3 - brightRed: 37.9 - brightGreen: 62.8 - brightYellow: 94.9 - brightBlue: 39.3 - brightMagenta: 44.7 - brightCyan: 54.7 - brightWhite: 89.3 diff --git a/themes/purplechan.yaml b/themes/purplechan.yaml index 91025ece..ddda58b7 100644 --- a/themes/purplechan.yaml +++ b/themes/purplechan.yaml @@ -1,4 +1,4 @@ -name: "Purplechan" +name: "purplechan" source: marketplace_id: "morizkay.purplechan" version: "0.0.7" @@ -8,6 +8,7 @@ source: author: "Morizkay" repo: "https://github.com/blangkohq/purplechan" url: "https://marketplace.visualstudio.com/items?itemName=morizkay.purplechan" + formats: null colors: bg: "#000000" fg: "#FF00AA" diff --git a/themes/purplecrystal.yaml b/themes/purplecrystal.yaml index b7a645ce..b3399255 100644 --- a/themes/purplecrystal.yaml +++ b/themes/purplecrystal.yaml @@ -8,6 +8,7 @@ source: author: "PyJOJO" repo: "https://github.com/SakuraMYK/PyCodeJOJO" url: "https://marketplace.visualstudio.com/items?itemName=PyJOJO.pycodejojo" + formats: null colors: bg: "#2A1B3D" fg: "#E4CCFF" diff --git a/themes/purplefy.yaml b/themes/purplefy.yaml index f3c1a888..e8a7babc 100644 --- a/themes/purplefy.yaml +++ b/themes/purplefy.yaml @@ -8,6 +8,7 @@ source: author: "Victor Lima" repo: "https://github.com/victorlim4/victory-theme" url: "https://marketplace.visualstudio.com/items?itemName=VictorLima.victory-theme" + formats: null colors: bg: "#110E16" fg: "#EDECEE" diff --git a/themes/purplephantom.yaml b/themes/purplephantom.yaml index ca2c3911..359979cf 100644 --- a/themes/purplephantom.yaml +++ b/themes/purplephantom.yaml @@ -8,6 +8,7 @@ source: author: "PyJOJO" repo: "https://github.com/SakuraMYK/PyCodeJOJO" url: "https://marketplace.visualstudio.com/items?itemName=PyJOJO.pycodejojo" + formats: null colors: bg: "#1A1B26" fg: "#A9B1D6" diff --git a/themes/purpleporschepheme.yaml b/themes/purpleporschepheme.yaml index 3fcb9784..635b0532 100644 --- a/themes/purpleporschepheme.yaml +++ b/themes/purpleporschepheme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "MeinhartThomas.purpleporschepheme" version: "0.0.3" installs: 26 + rating: 0 + ratings: 0 author: "MeinhartThomas" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MeinhartThomas.purpleporschepheme" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/purpler.yaml b/themes/purpler.yaml index fb06fe77..600e9454 100644 --- a/themes/purpler.yaml +++ b/themes/purpler.yaml @@ -8,6 +8,7 @@ source: author: "jeffwdiaz" repo: "https://github.com/jeffwdiaz/purpler" url: "https://marketplace.visualstudio.com/items?itemName=jeffwdiaz.purpler" + formats: null colors: bg: "#1D1824" fg: "#848CFF" diff --git a/themes/purplespace.yaml b/themes/purplespace.yaml deleted file mode 100644 index 77a4c566..00000000 --- a/themes/purplespace.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "PurpleSpace" -source: - marketplace_id: "YesCode.purplespace" - version: "0.0.7" - installs: 4010 - rating: 5 - ratings: 1 - author: "YesCode" - repo: "https://github.com/yesomac/purplespace" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.purplespace" -colors: - bg: "#FFE7FF" - fg: "#200120" - black: "#1D2021" - red: "#FB543F" - green: "#95C085" - yellow: "#FAC03B" - blue: "#00A1F9" - magenta: "#8F4673" - cyan: "#8BA59B" - white: "#A89984" - brightBlack: "#665C54" - brightRed: "#FB543F" - brightGreen: "#0687FF" - brightYellow: "#FFCC80" - brightBlue: "#0D6678" - brightMagenta: "#8F4673" - brightCyan: "#8BA59B" - brightWhite: "#FDF4C1" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 95.2 - black: 93.4 - red: 48.8 - green: 30.3 - yellow: 18.8 - blue: 43.3 - magenta: 71.4 - cyan: 41.5 - white: 43.6 - brightBlack: 72.3 - brightRed: 48.8 - brightGreen: 52.3 - brightYellow: 12.5 - brightBlue: 72.2 - brightMagenta: 71.4 - brightCyan: 41.5 - brightWhite: 0 diff --git a/themes/purplexed-magic.yaml b/themes/purplexed-magic.yaml index 4b1ee4e9..9466d40d 100644 --- a/themes/purplexed-magic.yaml +++ b/themes/purplexed-magic.yaml @@ -8,6 +8,7 @@ source: author: "mylifeismarvelous" repo: null url: "https://marketplace.visualstudio.com/items?itemName=mylifeismarvelous.purplexed-magic" + formats: null colors: bg: "#1D1B22" fg: "#8A6EFF" diff --git a/themes/purplexed-theme.yaml b/themes/purplexed-theme.yaml deleted file mode 100644 index ce09422a..00000000 --- a/themes/purplexed-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "purplexed-theme" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - rating: 5 - ratings: 3 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#1D1B22" - fg: "#8E7FCC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 298 - pair: null - contrast: - fg: 38 - black: 0 - red: 26.1 - green: 52.4 - yellow: 85 - blue: 26.9 - magenta: 29.2 - cyan: 47 - white: 89.4 - brightBlack: 21.5 - brightRed: 38 - brightGreen: 63 - brightYellow: 95.1 - brightBlue: 39.4 - brightMagenta: 44.8 - brightCyan: 54.8 - brightWhite: 89.4 diff --git a/themes/purplezera.yaml b/themes/purplezera.yaml index 6de1934f..24f43b96 100644 --- a/themes/purplezera.yaml +++ b/themes/purplezera.yaml @@ -1,4 +1,4 @@ -name: "Purplezera" +name: "purplezera" source: marketplace_id: "gabrielqueirozdev.purplezera" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Gabriel Queiroz" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gabrielqueirozdev.purplezera" + formats: null colors: bg: "#212121" fg: "#FFFFFF" diff --git a/themes/purplish-fork.yaml b/themes/purplish-fork.yaml index 26864344..7ca6545f 100644 --- a/themes/purplish-fork.yaml +++ b/themes/purplish-fork.yaml @@ -8,6 +8,7 @@ source: author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.purple-theme" + formats: null colors: bg: "#191218" fg: "#D4D4D4" diff --git a/themes/purplue.yaml b/themes/purplue.yaml index 471ff9be..274db0a5 100644 --- a/themes/purplue.yaml +++ b/themes/purplue.yaml @@ -6,6 +6,7 @@ source: author: "ICU2D" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ICU2D.purpule" + formats: null colors: bg: "#1A1A1A" fg: "#FFFFFF" diff --git a/themes/purply-dark.yaml b/themes/purply-dark.yaml deleted file mode 100644 index 37ce90f2..00000000 --- a/themes/purply-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Purply (Dark)" -source: - marketplace_id: "jeremy-gower.purply-theme" - version: "2.0.5" - installs: 3049 - rating: 5 - ratings: 2 - author: "Jeremy Gower" - repo: "https://github.com/jdgower/purply-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jeremy-gower.purply-theme" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#282C34" - red: "#FF6B8A" - green: "#22C55E" - yellow: "#FFB347" - blue: "#7DD3FC" - magenta: "#C4A7E7" - cyan: "#06B6D4" - white: "#ABB2BF" - brightBlack: "#6B5B73" - brightRed: "#FF8FA3" - brightGreen: "#4ADE80" - brightYellow: "#FCD34D" - brightBlue: "#93C5FD" - brightMagenta: "#DDD6FE" - brightCyan: "#67E8F9" - brightWhite: "#F8FAFC" -meta: - mode: "dark" - accent: "green" - hue: 264 - pair: null - contrast: - fg: 56.2 - black: 0 - red: 45.7 - green: 53.6 - yellow: 65.8 - blue: 69.5 - magenta: 57.1 - cyan: 50.7 - white: 56.2 - brightBlack: 16.6 - brightRed: 55.8 - brightGreen: 67.3 - brightYellow: 78.2 - brightBlue: 65 - brightMagenta: 80.4 - brightCyan: 78 - brightWhite: 100.2 diff --git a/themes/purply-light.yaml b/themes/purply-light.yaml deleted file mode 100644 index c37c547d..00000000 --- a/themes/purply-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Purply (Light)" -source: - marketplace_id: "jeremy-gower.purply-theme" - version: "2.0.5" - installs: 3049 - rating: 5 - ratings: 2 - author: "Jeremy Gower" - repo: "https://github.com/jdgower/purply-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jeremy-gower.purply-theme" -colors: - bg: "#FFFFFF" - fg: "#333333" - black: "#1F2937" - red: "#DC2626" - green: "#059669" - yellow: "#D97706" - blue: "#0284C7" - magenta: "#7C3AED" - cyan: "#0891B2" - white: "#F3F4F6" - brightBlack: "#6B7280" - brightRed: "#EF4444" - brightGreen: "#10B981" - brightYellow: "#F59E0B" - brightBlue: "#3B82F6" - brightMagenta: "#8B5CF6" - brightCyan: "#06B6D4" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 98.7 - black: 101.5 - red: 71.6 - green: 64.6 - yellow: 58.5 - blue: 67.5 - magenta: 77.5 - cyan: 63.8 - white: 0 - brightBlack: 73.6 - brightRed: 63.8 - brightGreen: 49.1 - brightYellow: 41.8 - brightBlue: 63.9 - brightMagenta: 68.7 - brightCyan: 47.1 - brightWhite: 0 diff --git a/themes/purppy.yaml b/themes/purppy.yaml index b1e05e58..f8ff78d3 100644 --- a/themes/purppy.yaml +++ b/themes/purppy.yaml @@ -8,6 +8,7 @@ source: author: "Daniel Lazaro" repo: "https://github.com/1izardo/purppy-vs-code" url: "https://marketplace.visualstudio.com/items?itemName=1izardo.purppy-vs-code" + formats: null colors: bg: "#332E40" fg: "#DDD8E8" diff --git a/themes/purps.yaml b/themes/purps.yaml index f5c90409..614024f1 100644 --- a/themes/purps.yaml +++ b/themes/purps.yaml @@ -8,6 +8,7 @@ source: author: "amessytheme" repo: "https://gihub.com/mtdowner/Purps" url: "https://marketplace.visualstudio.com/items?itemName=amessytheme.Purps" + formats: null colors: bg: "#FFFFFF" fg: "#AA00FF" diff --git a/themes/purr-light.yaml b/themes/purr-light.yaml index ee3aa52d..449b5ee9 100644 --- a/themes/purr-light.yaml +++ b/themes/purr-light.yaml @@ -8,6 +8,7 @@ source: author: "Ryuu" repo: "https://github.com/ryuudotgg/vscode-purr" url: "https://marketplace.visualstudio.com/items?itemName=ryuu.vscode-purr" + formats: null colors: bg: "#FFFFFF" fg: "#2E3440" diff --git a/themes/purrfect-marshmallow-lavender-night.yaml b/themes/purrfect-marshmallow-lavender-night.yaml deleted file mode 100644 index ee3fea0c..00000000 --- a/themes/purrfect-marshmallow-lavender-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Purrfect Marshmallow - Lavender Night" -source: - marketplace_id: "diananyamai.purrfect-marshmallow-theme" - version: "0.0.3" - installs: 310 - rating: 5 - ratings: 5 - author: "diana nyamai" - repo: "https://github.com/Diana-nyamai/purrfect-marshmallow-theme" - url: "https://marketplace.visualstudio.com/items?itemName=diananyamai.purrfect-marshmallow-theme" -colors: - bg: "#2A2638" - fg: "#EFE8FF" - black: "#2A2638" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#EFE8FF" - brightBlack: "#6D5B8E" - brightRed: "#FF6B8A" - brightGreen: "#D5F5A8" - brightYellow: "#FFD88E" - brightBlue: "#9FC5FF" - brightMagenta: "#D8A9F5" - brightCyan: "#A8F0FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 294 - pair: null - contrast: - fg: 91.5 - black: 0 - red: 41.1 - green: 81.6 - yellow: 76.4 - blue: 53.4 - magenta: 51.2 - cyan: 75.7 - white: 91.5 - brightBlack: 18.6 - brightRed: 46.4 - brightGreen: 90.7 - brightYellow: 82.6 - brightBlue: 66.8 - brightMagenta: 62.2 - brightCyan: 87.2 - brightWhite: 104.3 diff --git a/themes/purrfect-marshmallow-pastel-pink.yaml b/themes/purrfect-marshmallow-pastel-pink.yaml deleted file mode 100644 index f81d36ed..00000000 --- a/themes/purrfect-marshmallow-pastel-pink.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Purrfect Marshmallow - Pastel pink" -source: - marketplace_id: "diananyamai.purrfect-marshmallow-theme" - version: "0.0.3" - installs: 310 - rating: 5 - ratings: 5 - author: "diana nyamai" - repo: "https://github.com/Diana-nyamai/purrfect-marshmallow-theme" - url: "https://marketplace.visualstudio.com/items?itemName=diananyamai.purrfect-marshmallow-theme" -colors: - bg: "#F7EBF2" - fg: "#5C5470" - black: "#5C5470" - red: "#FF5370" - green: "#82C99E" - yellow: "#FFB366" - blue: "#6BA5E7" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#EFE8FF" - brightBlack: "#8A7F9D" - brightRed: "#FF6B8A" - brightGreen: "#A0E6B8" - brightYellow: "#FFCC88" - brightBlue: "#8FC2FF" - brightMagenta: "#DDA9F5" - brightCyan: "#A8F0FF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 74.6 - black: 74.6 - red: 47.1 - green: 27.2 - yellow: 22.2 - blue: 40.2 - magenta: 37.2 - cyan: 13.9 - white: 0 - brightBlack: 55 - brightRed: 41.9 - brightGreen: 11.3 - brightYellow: 12.3 - brightBlue: 24.8 - brightMagenta: 26 - brightCyan: 0 - brightWhite: 8.8 diff --git a/themes/purstel.yaml b/themes/purstel.yaml index fd02f94e..966c3aa4 100644 --- a/themes/purstel.yaml +++ b/themes/purstel.yaml @@ -8,6 +8,7 @@ source: author: "synanesthetics" repo: "https://github.com/synanesthetics/Purstel" url: "https://marketplace.visualstudio.com/items?itemName=synanesthetics.purstel-theme" + formats: null colors: bg: "#15111B" fg: "#CDD6F4" diff --git a/themes/purupiu-theme.yaml b/themes/purupiu-theme.yaml index 17502f2f..bb532615 100644 --- a/themes/purupiu-theme.yaml +++ b/themes/purupiu-theme.yaml @@ -8,6 +8,7 @@ source: author: "Isadora" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Isadora.purupiu-theme" + formats: null colors: bg: "#1E1E1E" fg: "#FFE084" diff --git a/themes/pushkin-is-white.yaml b/themes/pushkin-is-white.yaml deleted file mode 100644 index 91606a65..00000000 --- a/themes/pushkin-is-white.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Pushkin is White" -source: - marketplace_id: "ispushkin.pushkin-is-white-theme" - version: "0.0.7" - installs: 12365 - rating: 5 - ratings: 4 - author: "IS. Pushkin" - repo: "https://github.com/llatigid/Pushkin-is-White-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=ispushkin.pushkin-is-white-theme" -colors: - bg: "#F4F4F4" - fg: "#000000" - black: "#262626" - red: "#D70000" - green: "#5F8700" - yellow: "#AF8700" - blue: "#0087FF" - magenta: "#AF005F" - cyan: "#00AFAF" - white: "#808080" - brightBlack: "#1C1C1C" - brightRed: "#D75F00" - brightGreen: "#585858" - brightYellow: "#626262" - brightBlue: "#808080" - brightMagenta: "#5F5FAF" - brightCyan: "#808080" - brightWhite: "#808080" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99.5 - black: 95.5 - red: 67.4 - green: 62.5 - yellow: 54 - blue: 55.7 - magenta: 75.3 - cyan: 45.3 - white: 60.3 - brightBlack: 97.4 - brightRed: 58.1 - brightGreen: 78.1 - brightYellow: 73.9 - brightBlue: 60.3 - brightMagenta: 71.3 - brightCyan: 60.3 - brightWhite: 60.3 diff --git a/themes/pussdev-pink-theme.yaml b/themes/pussdev-pink-theme.yaml index e85bc806..1573d25f 100644 --- a/themes/pussdev-pink-theme.yaml +++ b/themes/pussdev-pink-theme.yaml @@ -1,13 +1,14 @@ -name: "pussdev-pink-theme" +name: "Pussdev Pink Theme" source: marketplace_id: "pussdev.pussdev-pink-theme" version: "1.0.0" - installs: 219 + installs: 220 rating: 0 ratings: 0 author: "pussdev" repo: "https://github.com/pussdev/pussdev-pink-theme" url: "https://marketplace.visualstudio.com/items?itemName=pussdev.pussdev-pink-theme" + formats: null colors: bg: "#333333" fg: "#D1D1D1" diff --git a/themes/pvc-light.yaml b/themes/pvc-light.yaml index c9d6000b..da0fa44b 100644 --- a/themes/pvc-light.yaml +++ b/themes/pvc-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "friggeri.pvc-vscode-theme" version: "1.0.8" installs: 251 + rating: 0 + ratings: 0 author: "Adrien Friggeri" repo: "https://github.com/friggeri/pvc" url: "https://marketplace.visualstudio.com/items?itemName=friggeri.pvc-vscode-theme" + formats: null colors: bg: "#FFFFFF" fg: "#242728" diff --git a/themes/pvdk-theme.yaml b/themes/pvdk-theme.yaml index d8e91100..93dc9bd4 100644 --- a/themes/pvdk-theme.yaml +++ b/themes/pvdk-theme.yaml @@ -1,4 +1,4 @@ -name: "pvdk-theme" +name: ">_pvdk-theme" source: marketplace_id: "gpovidaiko.pvdk-theme" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "gpovidaiko" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gpovidaiko.pvdk-theme" + formats: null colors: bg: "#161316" fg: "#F8F1F8" diff --git a/themes/pycharm-theme.yaml b/themes/pycharm-theme.yaml index e5d7e835..7851f6b4 100644 --- a/themes/pycharm-theme.yaml +++ b/themes/pycharm-theme.yaml @@ -8,6 +8,8 @@ source: author: "Keneth Riera" repo: "https://github.com/rierarizzo/pycharm-kr-theme" url: "https://marketplace.visualstudio.com/items?itemName=kenethriera.jb-pycharm-theme" + formats: + android-studio: "https://raw.githubusercontent.com/rierarizzo/pycharm-kr-theme/main/jetbrains-dark-color-scheme.icls" colors: bg: "#212121" fg: "#D0D0D0" diff --git a/themes/python-bright-colors-theme.yaml b/themes/python-bright-colors-theme.yaml index cd2384e0..7da6d95f 100644 --- a/themes/python-bright-colors-theme.yaml +++ b/themes/python-bright-colors-theme.yaml @@ -1,13 +1,14 @@ -name: "Python-Bright-Colors-Theme" +name: "python-bright-colors-theme" source: marketplace_id: "Meda2dAsada.python-bright-colors-theme" version: "0.0.1" - installs: 893 + installs: 894 rating: 5 ratings: 1 author: "Meda2dAsada" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Meda2dAsada.python-bright-colors-theme" + formats: null colors: bg: "#300F38" fg: "#D664FF" diff --git a/themes/qara.yaml b/themes/qara.yaml index ea136248..359c58b9 100644 --- a/themes/qara.yaml +++ b/themes/qara.yaml @@ -1,4 +1,4 @@ -name: "QARA" +name: "Qara" source: marketplace_id: "HasanHasanli.qara" version: "2.2.0" @@ -8,6 +8,7 @@ source: author: "Hasan Hasanli" repo: "https://github.com/hasan-li/qara-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=HasanHasanli.qara" + formats: null colors: bg: "#1A2128" fg: "#C8CED9" diff --git a/themes/qerz-theme.yaml b/themes/qerz-theme.yaml deleted file mode 100644 index deb94c3d..00000000 --- a/themes/qerz-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Qerz Theme" -source: - marketplace_id: "GabrielQueir0z.qerz-v1" - version: "0.0.0" - installs: 30 - rating: 0 - ratings: 0 - author: "GabrielQueir0z" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=GabrielQueir0z.qerz-v1" -colors: - bg: "#0F0F0F" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.5 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28.1 - magenta: 30.4 - cyan: 48.2 - white: 107.5 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 107.5 diff --git a/themes/qihui-tech-light.yaml b/themes/qihui-tech-light.yaml index 6b423e4f..0405dce4 100644 --- a/themes/qihui-tech-light.yaml +++ b/themes/qihui-tech-light.yaml @@ -8,6 +8,7 @@ source: author: "Damon Song Yu" repo: "https://github.com/damonsongyu-source/vscode-qihui-theme" url: "https://marketplace.visualstudio.com/items?itemName=DamonSongYu.qihui-tech" + formats: null colors: bg: "#FFFFFF" fg: "#2A332B" diff --git a/themes/qihui-tech-night.yaml b/themes/qihui-tech-night.yaml index 920248fb..3a67acff 100644 --- a/themes/qihui-tech-night.yaml +++ b/themes/qihui-tech-night.yaml @@ -8,6 +8,7 @@ source: author: "Damon Song Yu" repo: "https://github.com/damonsongyu-source/vscode-qihui-theme" url: "https://marketplace.visualstudio.com/items?itemName=DamonSongYu.qihui-tech" + formats: null colors: bg: "#0F1C15" fg: "#E3E5D4" diff --git a/themes/qihui-tech.yaml b/themes/qihui-tech.yaml index f6f8f20f..faba21ea 100644 --- a/themes/qihui-tech.yaml +++ b/themes/qihui-tech.yaml @@ -8,6 +8,7 @@ source: author: "Damon Song Yu" repo: "https://github.com/damonsongyu-source/vscode-qihui-theme" url: "https://marketplace.visualstudio.com/items?itemName=DamonSongYu.qihui-tech" + formats: null colors: bg: "#344E41" fg: "#DAD7CD" diff --git a/themes/qii-theme-dark-shallow.yaml b/themes/qii-theme-dark-shallow.yaml deleted file mode 100644 index 23f3b309..00000000 --- a/themes/qii-theme-dark-shallow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Qii Theme Dark Shallow" -source: - marketplace_id: "qiqi29.qii-theme" - version: "1.6.4" - installs: 3877 - rating: 5 - ratings: 2 - author: "qiqi29" - repo: "https://github.com/Qiqi29/qii-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" -colors: - bg: "#1E2227" - fg: "#CACBD4" - black: "#2D3139" - red: "#E68096" - green: "#A7E28B" - yellow: "#E2B77E" - blue: "#82B8FA" - magenta: "#C589E0" - cyan: "#75CAD3" - white: "#CACBD4" - brightBlack: "#7F848E" - brightRed: "#E68096" - brightGreen: "#A7E28B" - brightYellow: "#E2B77E" - brightBlue: "#82B8FA" - brightMagenta: "#C589E0" - brightCyan: "#75CAD3" - brightWhite: "#CACBD4" -meta: - mode: "dark" - accent: "magenta" - hue: 254 - pair: null - contrast: - fg: 73 - black: 0 - red: 48.1 - green: 77 - yellow: 65.2 - blue: 59.8 - magenta: 48.7 - cyan: 64.5 - white: 73 - brightBlack: 34.2 - brightRed: 48.1 - brightGreen: 77 - brightYellow: 65.2 - brightBlue: 59.8 - brightMagenta: 48.7 - brightCyan: 64.5 - brightWhite: 73 diff --git a/themes/qii-theme-dark.yaml b/themes/qii-theme-dark.yaml deleted file mode 100644 index ba0e3224..00000000 --- a/themes/qii-theme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Qii Theme Dark" -source: - marketplace_id: "qiqi29.qii-theme" - version: "1.6.4" - installs: 3877 - rating: 5 - ratings: 2 - author: "qiqi29" - repo: "https://github.com/Qiqi29/qii-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" -colors: - bg: "#18191B" - fg: "#CACBD4" - black: "#2D3139" - red: "#E68096" - green: "#A7E28B" - yellow: "#E2B77E" - blue: "#82B8FA" - magenta: "#C589E0" - cyan: "#75CAD3" - white: "#CACBD4" - brightBlack: "#7F848E" - brightRed: "#E68096" - brightGreen: "#A7E28B" - brightYellow: "#E2B77E" - brightBlue: "#82B8FA" - brightMagenta: "#C589E0" - brightCyan: "#75CAD3" - brightWhite: "#CACBD4" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: "Qii Theme Light" - contrast: - fg: 74.1 - black: 0 - red: 49.2 - green: 78.2 - yellow: 66.4 - blue: 61 - magenta: 49.8 - cyan: 65.7 - white: 74.1 - brightBlack: 35.3 - brightRed: 49.2 - brightGreen: 78.2 - brightYellow: 66.4 - brightBlue: 61 - brightMagenta: 49.8 - brightCyan: 65.7 - brightWhite: 74.1 diff --git a/themes/qii-theme-light.yaml b/themes/qii-theme-light.yaml deleted file mode 100644 index bc39729b..00000000 --- a/themes/qii-theme-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Qii Theme Light" -source: - marketplace_id: "qiqi29.qii-theme" - version: "1.6.4" - installs: 3877 - rating: 5 - ratings: 2 - author: "qiqi29" - repo: "https://github.com/Qiqi29/qii-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" -colors: - bg: "#FAFAFA" - fg: "#5D5F62" - black: "#2D3139" - red: "#E1496A" - green: "#4CA438" - yellow: "#FF9900" - blue: "#2F86F0" - magenta: "#C82FBB" - cyan: "#0DA6A6" - white: "#5D5F62" - brightBlack: "#7F848E" - brightRed: "#E1496A" - brightGreen: "#4CA438" - brightYellow: "#FF9900" - brightBlue: "#2F86F0" - brightMagenta: "#C82FBB" - brightCyan: "#0DA6A6" - brightWhite: "#5D5F62" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Qii Theme Dark" - contrast: - fg: 78.9 - black: 96.3 - red: 62.5 - green: 55.2 - yellow: 38.5 - blue: 60.4 - magenta: 67.4 - cyan: 53 - white: 78.9 - brightBlack: 62.1 - brightRed: 62.5 - brightGreen: 55.2 - brightYellow: 38.5 - brightBlue: 60.4 - brightMagenta: 67.4 - brightCyan: 53 - brightWhite: 78.9 diff --git a/themes/qoder-dark.yaml b/themes/qoder-dark.yaml deleted file mode 100644 index 9cf7b915..00000000 --- a/themes/qoder-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Qoder Dark" -source: - marketplace_id: "tryToDEv.cyber-qoder-themes" - version: "1.2.0" - installs: 15 - rating: 0 - ratings: 0 - author: "tryToDEv" - repo: "https://github.com/shivam20/cyber-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" -colors: - bg: "#0F0F14" - fg: "#E6E6F0" - black: "#12121A" - red: "#FF6B6B" - green: "#6CFF9C" - yellow: "#FFD166" - blue: "#9D7CFF" - magenta: "#C77DFF" - cyan: "#78D9FF" - white: "#F0F0FF" - brightBlack: "#4A4A6A" - brightRed: "#FF8E8E" - brightGreen: "#8AFFB8" - brightYellow: "#FFE082" - brightBlue: "#B89CFF" - brightMagenta: "#D9A8FF" - brightCyan: "#93E2FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 285 - pair: null - contrast: - fg: 91.7 - black: 0 - red: 48.7 - green: 90 - yellow: 81.9 - blue: 43.6 - magenta: 49.6 - cyan: 75.9 - white: 98.4 - brightBlack: 12.7 - brightRed: 58.7 - brightGreen: 92.5 - brightYellow: 88.9 - brightBlue: 57 - brightMagenta: 65.7 - brightCyan: 81.9 - brightWhite: 107.5 diff --git a/themes/qqqoid-light-color.yaml b/themes/qqqoid-light-color.yaml deleted file mode 100644 index d48b3dc4..00000000 --- a/themes/qqqoid-light-color.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "qqqoid light color" -source: - marketplace_id: "SalavatDSamigoullin.another-one-theme-pack" - version: "0.0.6" - installs: 333 - rating: 0 - ratings: 0 - author: "Salavat D. Samigoullin" - repo: "https://github.com/SalavatSamigoullin/qqqoid-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SalavatDSamigoullin.another-one-theme-pack" -colors: - bg: "#FFFFFF" - fg: "#24292E" - black: "#24292E" - red: "#D73A49" - green: "#28A745" - yellow: "#DBAB09" - blue: "#0366D6" - magenta: "#7C3AED" - cyan: "#1B7C83" - white: "#6A737D" - brightBlack: "#959DA5" - brightRed: "#CB2431" - brightGreen: "#22863A" - brightYellow: "#B08800" - brightBlue: "#2563EB" - brightMagenta: "#7C3AED" - brightCyan: "#3192AA" - brightWhite: "#D1D5DA" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 101.5 - black: 101.5 - red: 70.4 - green: 57.9 - yellow: 41.6 - blue: 76.2 - magenta: 77.5 - cyan: 73.8 - white: 73.4 - brightBlack: 53.1 - brightRed: 75.5 - brightGreen: 71.7 - brightYellow: 60.1 - brightBlue: 74.9 - brightMagenta: 77.5 - brightCyan: 63.3 - brightWhite: 22.4 diff --git a/themes/qt-creator-like-dark-theme.yaml b/themes/qt-creator-like-dark-theme.yaml index ec41bf6a..1921392b 100644 --- a/themes/qt-creator-like-dark-theme.yaml +++ b/themes/qt-creator-like-dark-theme.yaml @@ -1,13 +1,14 @@ -name: "Qt Creator-Like Dark Theme" +name: "Qt Creator-like dark theme" source: marketplace_id: "MichaelH.qtlike-dark-theme" version: "0.0.1" - installs: 3268 + installs: 3269 rating: 0 ratings: 0 author: "Michael H" repo: "https://github.com/Michael-H7/vscode-qtlike-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=MichaelH.qtlike-dark-theme" + formats: null colors: bg: "#2E2F30" fg: "#D6CF9A" diff --git a/themes/qtz-theme.yaml b/themes/qtz-theme.yaml index e95e0943..9b86b095 100644 --- a/themes/qtz-theme.yaml +++ b/themes/qtz-theme.yaml @@ -8,6 +8,7 @@ source: author: "qiupeng" repo: "https://gitcode.com/qiupeng/qtz-theme" url: "https://marketplace.visualstudio.com/items?itemName=qiupeng.qtz-theme" + formats: null colors: bg: "#303845" fg: "#CCCAC2" diff --git a/themes/quantum-blue-dark.yaml b/themes/quantum-blue-dark.yaml index f717e892..af19dff8 100644 --- a/themes/quantum-blue-dark.yaml +++ b/themes/quantum-blue-dark.yaml @@ -8,6 +8,7 @@ source: author: "YasserElgammal" repo: "https://github.com/YasserElgammal/quantum-blue-theme" url: "https://marketplace.visualstudio.com/items?itemName=6233c1c4-89f3-48cf-8c88-156b07876860.quantum-blue-theme" + formats: null colors: bg: "#050B1A" fg: "#E2E6F0" diff --git a/themes/quantum-dark.yaml b/themes/quantum-dark.yaml deleted file mode 100644 index a6842cf4..00000000 --- a/themes/quantum-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Quantum Dark" -source: - marketplace_id: "CalebEphrem.quantum" - version: "2.0.3" - installs: 414 - rating: 5 - ratings: 2 - author: "Caleb Ephrem" - repo: "https://github.com/calebephrem/quantum-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" -colors: - bg: "#000017" - fg: "#E5E5E5" - black: "#1E232B" - red: "#EA6C73" - green: "#7FD962" - yellow: "#DDCC55" - blue: "#53BDFA" - magenta: "#CDA1FA" - cyan: "#70EFEF" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAFF4C" - brightYellow: "#FFDD70" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#00DDEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 264 - pair: null - contrast: - fg: 90.9 - black: 0 - red: 45 - green: 71 - yellow: 74.7 - blue: 61.5 - magenta: 61.6 - cyan: 85.5 - white: 72.6 - brightBlack: 23.8 - brightRed: 47.5 - brightGreen: 93 - brightYellow: 87.6 - brightBlue: 64.3 - brightMagenta: 64.3 - brightCyan: 74.1 - brightWhite: 107.8 diff --git a/themes/quantum-fluidity.yaml b/themes/quantum-fluidity.yaml index 99c7e8d0..57d27d35 100644 --- a/themes/quantum-fluidity.yaml +++ b/themes/quantum-fluidity.yaml @@ -8,6 +8,7 @@ source: author: "i4cdeath" repo: "https://github.com/I4cTime/quantum-fluidity-theme" url: "https://marketplace.visualstudio.com/items?itemName=i4cdeath.quantum-fluidity-theme" + formats: null colors: bg: "#050505" fg: "#F8F9FA" diff --git a/themes/quantum-flux.yaml b/themes/quantum-flux.yaml deleted file mode 100644 index f8660a72..00000000 --- a/themes/quantum-flux.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Quantum Flux" -source: - marketplace_id: "nextgencode.nextgen-terminal" - version: "1.2.1" - installs: 105 - author: "NextGenCode" - repo: "https://github.com/Mattzey/nextgen-terminal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" -colors: - bg: "#000000" - fg: "#64FFDA" - black: "#000000" - red: "#FF006E" - green: "#06FFA5" - yellow: "#D946EF" - blue: "#00F0FF" - magenta: "#B024FF" - cyan: "#00D9FF" - white: "#64FFDA" - brightBlack: "#7B2CBF" - brightRed: "#FF006E" - brightGreen: "#06FFA5" - brightYellow: "#D946EF" - brightBlue: "#00F0FF" - brightMagenta: "#FF00FF" - brightCyan: "#00D9FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 92.2 - black: 0 - red: 38.8 - green: 88.5 - yellow: 40.7 - blue: 84.5 - magenta: 31.3 - cyan: 73.3 - white: 92.2 - brightBlack: 18.4 - brightRed: 38.8 - brightGreen: 88.5 - brightYellow: 40.7 - brightBlue: 84.5 - brightMagenta: 46.2 - brightCyan: 73.3 - brightWhite: 107.9 diff --git a/themes/quantum-green.yaml b/themes/quantum-green.yaml deleted file mode 100644 index c09da745..00000000 --- a/themes/quantum-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Quantum Green" -source: - marketplace_id: "CodewithBismillah.chroma-library" - version: "1.2.1" - installs: 358 - rating: 5 - ratings: 1 - author: "Code with Bismillah" - repo: "https://github.com/mubashir1837/Chroma-Library" - url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" -colors: - bg: "#0A1A0A" - fg: "#E0FFE0" - black: "#000000" - red: "#FF4040" - green: "#00FF00" - yellow: "#FFFF40" - blue: "#4040FF" - magenta: "#FF40FF" - cyan: "#40FFFF" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#FF6060" - brightGreen: "#40FF40" - brightYellow: "#FFFF60" - brightBlue: "#6060FF" - brightMagenta: "#FF60FF" - brightCyan: "#60FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 144 - pair: null - contrast: - fg: 101.4 - black: 0 - red: 40.1 - green: 85.5 - yellow: 101.9 - blue: 21.2 - magenta: 48.1 - cyan: 91.8 - white: 106.9 - brightBlack: 22 - brightRed: 45.6 - brightGreen: 86.3 - brightYellow: 102.2 - brightBlue: 29.6 - brightMagenta: 52.7 - brightCyan: 92.7 - brightWhite: 106.9 diff --git a/themes/quantum-material-theme-dark.yaml b/themes/quantum-material-theme-dark.yaml deleted file mode 100644 index c0c1236a..00000000 --- a/themes/quantum-material-theme-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Quantum Material Theme - Dark" -source: - marketplace_id: "michaelmendez.quantum-material-theme" - version: "0.0.7" - installs: 118 - author: "Michael Méndez" - repo: "https://github.com/michaelmendez/quantum-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=michaelmendez.quantum-material-theme" -colors: - bg: "#101119" - fg: "#DADADA" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#D19BF4" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#464B5D" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#D19BF4" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 279 - pair: "Quantum Material Theme - Light" - contrast: - fg: 83.6 - black: 0 - red: 44.1 - green: 84.7 - yellow: 79.4 - blue: 56.4 - magenta: 59.3 - cyan: 78.7 - white: 107.3 - brightBlack: 12 - brightRed: 44.1 - brightGreen: 84.7 - brightYellow: 79.4 - brightBlue: 56.4 - brightMagenta: 59.3 - brightCyan: 78.7 - brightWhite: 107.3 diff --git a/themes/quantum-material-theme-light.yaml b/themes/quantum-material-theme-light.yaml deleted file mode 100644 index 4145a850..00000000 --- a/themes/quantum-material-theme-light.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Quantum Material Theme - Light" -source: - marketplace_id: "michaelmendez.quantum-material-theme" - version: "0.0.7" - installs: 118 - author: "Michael Méndez" - repo: "https://github.com/michaelmendez/quantum-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=michaelmendez.quantum-material-theme" -colors: - bg: "#FAFAFA" - fg: "#1A1D23" - black: "#263238" - red: "#E53935" - green: "#43A047" - yellow: "#FDD835" - blue: "#1976D2" - magenta: "#8E24AA" - cyan: "#00ACC1" - white: "#CFD8DC" - brightBlack: "#546E7A" - brightRed: "#EF5350" - brightGreen: "#66BB6A" - brightYellow: "#FFCA28" - brightBlue: "#42A5F5" - brightMagenta: "#AB47BC" - brightCyan: "#26C6DA" - brightWhite: "#ECEFF1" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Quantum Material Theme - Dark" - contrast: - fg: 100.8 - black: 96.5 - red: 64.7 - green: 57.1 - yellow: 16 - blue: 68.4 - magenta: 80.2 - cyan: 49.3 - white: 18.4 - brightBlack: 73.9 - brightRed: 58.4 - brightGreen: 43.4 - brightYellow: 21.3 - brightBlue: 48.2 - brightMagenta: 69.7 - brightCyan: 36.8 - brightWhite: 0 diff --git a/themes/quantum-material-theme-void.yaml b/themes/quantum-material-theme-void.yaml deleted file mode 100644 index eb62947a..00000000 --- a/themes/quantum-material-theme-void.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Quantum Material Theme - Void" -source: - marketplace_id: "michaelmendez.quantum-material-theme" - version: "0.0.7" - installs: 118 - author: "Michael Méndez" - repo: "https://github.com/michaelmendez/quantum-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=michaelmendez.quantum-material-theme" -colors: - bg: "#0B0A0B" - fg: "#D0D0D0" - black: "#000000" - red: "#EF5370" - green: "#B3D87D" - yellow: "#EFBB6B" - blue: "#729AFF" - magenta: "#C18BE4" - cyan: "#79CDFF" - white: "#FFFFFF" - brightBlack: "#3A3A4D" - brightRed: "#EF5370" - brightGreen: "#B3D87D" - brightYellow: "#EFBB6B" - brightBlue: "#729AFF" - brightMagenta: "#C18BE4" - brightCyan: "#79CDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 77.9 - black: 0 - red: 40.8 - green: 75.4 - yellow: 70.7 - blue: 49.6 - magenta: 51.2 - cyan: 70.7 - white: 107.7 - brightBlack: 0 - brightRed: 40.8 - brightGreen: 75.4 - brightYellow: 70.7 - brightBlue: 49.6 - brightMagenta: 51.2 - brightCyan: 70.7 - brightWhite: 107.7 diff --git a/themes/quantum-mirage.yaml b/themes/quantum-mirage.yaml deleted file mode 100644 index e1accdc2..00000000 --- a/themes/quantum-mirage.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Quantum Mirage" -source: - marketplace_id: "CalebEphrem.quantum" - version: "2.0.3" - installs: 414 - rating: 5 - ratings: 2 - author: "Caleb Ephrem" - repo: "https://github.com/calebephrem/quantum-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" -colors: - bg: "#141530" - fg: "#E5E5E5" - black: "#1E232B" - red: "#EA6C73" - green: "#7FD962" - yellow: "#DDCC55" - blue: "#53BDFA" - magenta: "#CDA1FA" - cyan: "#70EFEF" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAFF4C" - brightYellow: "#FFDD70" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#00DDEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 279 - pair: null - contrast: - fg: 89.9 - black: 0 - red: 43.9 - green: 69.9 - yellow: 73.6 - blue: 60.4 - magenta: 60.5 - cyan: 84.4 - white: 71.6 - brightBlack: 22.7 - brightRed: 46.4 - brightGreen: 92 - brightYellow: 86.5 - brightBlue: 63.2 - brightMagenta: 63.3 - brightCyan: 73 - brightWhite: 106.7 diff --git a/themes/quantum-night.yaml b/themes/quantum-night.yaml index 3a9d9bc3..926c95ed 100644 --- a/themes/quantum-night.yaml +++ b/themes/quantum-night.yaml @@ -2,12 +2,13 @@ name: "Quantum Night" source: marketplace_id: "NGdust.quantum-night" version: "1.0.0" - installs: 98 + installs: 99 rating: 5 ratings: 1 author: "NGdust" repo: "https://github.com/NGdust/quantum-night" url: "https://marketplace.visualstudio.com/items?itemName=NGdust.quantum-night" + formats: null colors: bg: "#1A1B26" fg: "#E4F0FB" diff --git a/themes/quantum-synthwave.yaml b/themes/quantum-synthwave.yaml index dcb52041..e41b8f8e 100644 --- a/themes/quantum-synthwave.yaml +++ b/themes/quantum-synthwave.yaml @@ -2,12 +2,13 @@ name: "Quantum Synthwave" source: marketplace_id: "GatomontesRoselll.quantum-vscode" version: "0.1.22" - installs: 640 + installs: 642 rating: 5 ratings: 2 author: "GatomontesRoseIII" repo: "https://github.com/ramirezherreranoeelvis/quantum-vscode" url: "https://marketplace.visualstudio.com/items?itemName=GatomontesRoselll.quantum-vscode" + formats: null colors: bg: "#040014" fg: "#F2F3F7" diff --git a/themes/quantum.yaml b/themes/quantum.yaml deleted file mode 100644 index a65e2156..00000000 --- a/themes/quantum.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Quantum" -source: - marketplace_id: "CalebEphrem.quantum" - version: "2.0.3" - installs: 414 - rating: 5 - ratings: 2 - author: "Caleb Ephrem" - repo: "https://github.com/calebephrem/quantum-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" -colors: - bg: "#040527" - fg: "#E5E5E5" - black: "#1E232B" - red: "#EA6C73" - green: "#7FD962" - yellow: "#DDCC55" - blue: "#53BDFA" - magenta: "#CDA1FA" - cyan: "#70EFEF" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAFF4C" - brightYellow: "#FFDD70" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#00DDEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 272 - pair: null - contrast: - fg: 90.7 - black: 0 - red: 44.8 - green: 70.7 - yellow: 74.4 - blue: 61.3 - magenta: 61.3 - cyan: 85.3 - white: 72.4 - brightBlack: 23.6 - brightRed: 47.3 - brightGreen: 92.8 - brightYellow: 87.4 - brightBlue: 64.1 - brightMagenta: 64.1 - brightCyan: 73.9 - brightWhite: 107.6 diff --git a/themes/quantumqubic.yaml b/themes/quantumqubic.yaml index fbb17250..d34b0adc 100644 --- a/themes/quantumqubic.yaml +++ b/themes/quantumqubic.yaml @@ -8,6 +8,7 @@ source: author: "Furkan Gökhasan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=furkangkhsn.quantumqubic" + formats: null colors: bg: "#263238" fg: "#FFFFFF" diff --git a/themes/quantxz.yaml b/themes/quantxz.yaml deleted file mode 100644 index ae8eb7a9..00000000 --- a/themes/quantxz.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "quantxz" -source: - marketplace_id: "quantxz.quantxz" - version: "0.0.9" - installs: 1990 - rating: 5 - ratings: 1 - author: "anderson" - repo: "https://github.com/quantxz/dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=quantxz.quantxz" -colors: - bg: "#1C1E26" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 274 - pair: null - contrast: - fg: 78.6 - black: 0 - red: 25.8 - green: 52.1 - yellow: 84.7 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.1 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.1 - brightMagenta: 44.5 - brightCyan: 54.5 - brightWhite: 89.1 diff --git a/themes/quarkus-dark-theme.yaml b/themes/quarkus-dark-theme.yaml index dd83f867..275f1206 100644 --- a/themes/quarkus-dark-theme.yaml +++ b/themes/quarkus-dark-theme.yaml @@ -2,12 +2,13 @@ name: "Quarkus Dark Theme" source: marketplace_id: "tsurdilovic.theme-quarkus-dark" version: "0.0.1" - installs: 8881 + installs: 8882 rating: 0 ratings: 0 author: "Tihomir Surdilovic" repo: "https://github.com/tsurdilo/theme-quarkus-dark" url: "https://marketplace.visualstudio.com/items?itemName=tsurdilovic.theme-quarkus-dark" + formats: null colors: bg: "#282A36" fg: "#4A97E8" diff --git a/themes/quartzium-theme-dark.yaml b/themes/quartzium-theme-dark.yaml index 27f24454..1ae17a7f 100644 --- a/themes/quartzium-theme-dark.yaml +++ b/themes/quartzium-theme-dark.yaml @@ -8,6 +8,7 @@ source: author: "gautamankoji" repo: null url: "https://marketplace.visualstudio.com/items?itemName=gautamankoji.quartzium-theme" + formats: null colors: bg: "#141414" fg: "#D4D4D4" diff --git a/themes/quartzium-theme-darker.yaml b/themes/quartzium-theme-darker.yaml deleted file mode 100644 index ae992496..00000000 --- a/themes/quartzium-theme-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Quartzium-Theme-Darker" -source: - marketplace_id: "gautamankoji.quartzium-theme" - version: "0.0.1" - installs: 158 - rating: 5 - ratings: 1 - author: "gautamankoji" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=gautamankoji.quartzium-theme" -colors: - bg: "#212121" - fg: "#EEFFFF" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#545454" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 103.3 - black: 0 - red: 45.3 - green: 82.9 - yellow: 77.7 - blue: 54.7 - magenta: 52.5 - cyan: 77 - white: 105.6 - brightBlack: 13.5 - brightRed: 45.3 - brightGreen: 82.9 - brightYellow: 77.7 - brightBlue: 54.7 - brightMagenta: 52.5 - brightCyan: 77 - brightWhite: 105.6 diff --git a/themes/quartzium-theme-deepforest.yaml b/themes/quartzium-theme-deepforest.yaml deleted file mode 100644 index 7f606ecb..00000000 --- a/themes/quartzium-theme-deepforest.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Quartzium-Theme-Deepforest" -source: - marketplace_id: "gautamankoji.quartzium-theme" - version: "0.0.1" - installs: 158 - rating: 5 - ratings: 1 - author: "gautamankoji" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=gautamankoji.quartzium-theme" -colors: - bg: "#141F1D" - fg: "#C2EDD3" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#6FA0DE" - magenta: "#A68DCD" - cyan: "#74C9DE" - white: "#FFFFFF" - brightBlack: "#476352" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#6FA0DE" - brightMagenta: "#A68DCD" - brightCyan: "#74C9DE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 182 - pair: null - contrast: - fg: 88 - black: 0 - red: 45.9 - green: 83.5 - yellow: 78.2 - blue: 47.8 - magenta: 45.2 - cyan: 65.2 - white: 106.2 - brightBlack: 17.5 - brightRed: 45.9 - brightGreen: 83.5 - brightYellow: 78.2 - brightBlue: 47.8 - brightMagenta: 45.2 - brightCyan: 65.2 - brightWhite: 106.2 diff --git a/themes/quartzium-theme-default.yaml b/themes/quartzium-theme-default.yaml deleted file mode 100644 index 3d56fad0..00000000 --- a/themes/quartzium-theme-default.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Quartzium-Theme-Default" -source: - marketplace_id: "gautamankoji.quartzium-theme" - version: "0.0.1" - installs: 158 - rating: 5 - ratings: 1 - author: "gautamankoji" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=gautamankoji.quartzium-theme" -colors: - bg: "#263238" - fg: "#EEFFFF" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#546E7A" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 230 - pair: null - contrast: - fg: 100.4 - black: 0 - red: 42.4 - green: 80 - yellow: 74.7 - blue: 51.7 - magenta: 49.6 - cyan: 74.1 - white: 102.7 - brightBlack: 19.7 - brightRed: 42.4 - brightGreen: 80 - brightYellow: 74.7 - brightBlue: 51.7 - brightMagenta: 49.6 - brightCyan: 74.1 - brightWhite: 102.7 diff --git a/themes/quartzium-theme-lighter.yaml b/themes/quartzium-theme-lighter.yaml deleted file mode 100644 index 033ded91..00000000 --- a/themes/quartzium-theme-lighter.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Quartzium-Theme-Lighter" -source: - marketplace_id: "gautamankoji.quartzium-theme" - version: "0.0.1" - installs: 158 - rating: 5 - ratings: 1 - author: "gautamankoji" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=gautamankoji.quartzium-theme" -colors: - bg: "#FAFAFA" - fg: "#90A4AE" - black: "#000000" - red: "#E53935" - green: "#91B859" - yellow: "#E2931D" - blue: "#6182B8" - magenta: "#9C3EDA" - cyan: "#39ADB5" - white: "#FFFFFF" - brightBlack: "#90A4AE" - brightRed: "#E53935" - brightGreen: "#91B859" - brightYellow: "#E2931D" - brightBlue: "#6182B8" - brightMagenta: "#9C3EDA" - brightCyan: "#39ADB5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 47.6 - black: 103 - red: 64.7 - green: 41.9 - yellow: 45.6 - blue: 63.3 - magenta: 71.3 - cyan: 48.8 - white: 0 - brightBlack: 47.6 - brightRed: 64.7 - brightGreen: 41.9 - brightYellow: 45.6 - brightBlue: 63.3 - brightMagenta: 71.3 - brightCyan: 48.8 - brightWhite: 0 diff --git a/themes/quasar.yaml b/themes/quasar.yaml index 795b3d1f..1489d5d2 100644 --- a/themes/quasar.yaml +++ b/themes/quasar.yaml @@ -2,12 +2,13 @@ name: "Quasar" source: marketplace_id: "AarushAgarwal.quasar" version: "0.4.0" - installs: 1585 + installs: 1586 rating: 0 ratings: 0 author: "Aarush Agarwal" repo: "https://github.com/AgarwalAarush/Quasar" url: "https://marketplace.visualstudio.com/items?itemName=AarushAgarwal.quasar" + formats: null colors: bg: "#1E2025" fg: "#F5F5F5" diff --git a/themes/qubik-dark.yaml b/themes/qubik-dark.yaml deleted file mode 100644 index f3fb25e3..00000000 --- a/themes/qubik-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Qubik Dark" -source: - marketplace_id: "qnbhd.qubik-themes" - version: "0.0.1" - installs: 21 - rating: 0 - ratings: 0 - author: "Templin Konstantin" - repo: "https://github.com/qnbhd/qubik-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=qnbhd.qubik-themes" -colors: - bg: "#0B0B0F" - fg: "#E6E6E6" - black: "#0B0B0F" - red: "#D84F68" - green: "#54C0A3" - yellow: "#E6E7A3" - blue: "#479FFA" - magenta: "#9592A4" - cyan: "#54C0A3" - white: "#E6E6E6" - brightBlack: "#46474F" - brightRed: "#FF5C5C" - brightGreen: "#54C0A3" - brightYellow: "#F9B98C" - brightBlue: "#479FFA" - brightMagenta: "#9592A4" - brightCyan: "#54C0A3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Qubik Light" - contrast: - fg: 91.5 - black: 0 - red: 34.9 - green: 58.4 - yellow: 89.4 - blue: 48.7 - magenta: 44.4 - cyan: 58.4 - white: 91.5 - brightBlack: 10.8 - brightRed: 45.6 - brightGreen: 58.4 - brightYellow: 72.3 - brightBlue: 48.7 - brightMagenta: 44.4 - brightCyan: 58.4 - brightWhite: 107.7 diff --git a/themes/qubik-light.yaml b/themes/qubik-light.yaml deleted file mode 100644 index 51823c61..00000000 --- a/themes/qubik-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Qubik Light" -source: - marketplace_id: "qnbhd.qubik-themes" - version: "0.0.1" - installs: 21 - rating: 0 - ratings: 0 - author: "Templin Konstantin" - repo: "https://github.com/qnbhd/qubik-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=qnbhd.qubik-themes" -colors: - bg: "#FFFFFF" - fg: "#202020" - black: "#000000" - red: "#C83A4A" - green: "#3C9C7A" - yellow: "#9A9530" - blue: "#1B63B4" - magenta: "#706A80" - cyan: "#3C9C7A" - white: "#E0E0E0" - brightBlack: "#808080" - brightRed: "#FF4D4D" - brightGreen: "#3C9C7A" - brightYellow: "#D47F34" - brightBlue: "#1B63B4" - brightMagenta: "#706A80" - brightCyan: "#3C9C7A" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Qubik Dark" - contrast: - fg: 103.3 - black: 106 - red: 73.7 - green: 60.9 - yellow: 58.2 - blue: 79.6 - magenta: 75.6 - cyan: 60.9 - white: 15.8 - brightBlack: 66.9 - brightRed: 58.7 - brightGreen: 60.9 - brightYellow: 57 - brightBlue: 79.6 - brightMagenta: 75.6 - brightCyan: 60.9 - brightWhite: 0 diff --git a/themes/queensland-dark.yaml b/themes/queensland-dark.yaml deleted file mode 100644 index 1ee4b802..00000000 --- a/themes/queensland-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Queensland Dark" -source: - marketplace_id: "lucidlabs.queensland-theme" - version: "1.4.0" - installs: 2 - rating: 0 - ratings: 0 - author: "Lucid Labs" - repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.queensland-theme" -colors: - bg: "#131212" - fg: "#E8EDF3" - black: "#131212" - red: "#E22339" - green: "#6BBE27" - yellow: "#FFCC2C" - blue: "#005EB8" - magenta: "#73182C" - cyan: "#0085B3" - white: "#E8EDF3" - brightBlack: "#78797E" - brightRed: "#FF4D5E" - brightGreen: "#78D65B" - brightYellow: "#FFE066" - brightBlue: "#3D8FD6" - brightMagenta: "#C88DF7" - brightCyan: "#33A8CC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Queensland Light" - contrast: - fg: 95.1 - black: 0 - red: 30.9 - green: 55.9 - yellow: 79.1 - blue: 20.3 - magenta: 7.5 - cyan: 32.8 - white: 95.1 - brightBlack: 31 - brightRed: 42.7 - brightGreen: 68.4 - brightYellow: 88.2 - brightBlue: 39.5 - brightMagenta: 53.6 - brightCyan: 48.4 - brightWhite: 107.3 diff --git a/themes/queensland-light.yaml b/themes/queensland-light.yaml deleted file mode 100644 index 93bf0b63..00000000 --- a/themes/queensland-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Queensland Light" -source: - marketplace_id: "lucidlabs.queensland-theme" - version: "1.4.0" - installs: 2 - rating: 0 - ratings: 0 - author: "Lucid Labs" - repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.queensland-theme" -colors: - bg: "#FFFFFF" - fg: "#131212" - black: "#131212" - red: "#E22339" - green: "#0A690D" - yellow: "#B38800" - blue: "#005EB8" - magenta: "#73182C" - cyan: "#006A8F" - white: "#FFFFFF" - brightBlack: "#78797E" - brightRed: "#8A1220" - brightGreen: "#339D37" - brightYellow: "#FFCC2C" - brightBlue: "#004D99" - brightMagenta: "#5A1222" - brightCyan: "#0085B3" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Queensland Dark" - contrast: - fg: 105.2 - black: 105.2 - red: 70.2 - green: 83.3 - yellow: 59.7 - blue: 80.9 - magenta: 94.4 - cyan: 79.8 - white: 0 - brightBlack: 70.1 - brightRed: 90.5 - brightGreen: 62 - brightYellow: 23.5 - brightBlue: 88 - brightMagenta: 99.2 - brightCyan: 68.3 - brightWhite: 0 diff --git a/themes/quiet-canvas.yaml b/themes/quiet-canvas.yaml deleted file mode 100644 index 2f973535..00000000 --- a/themes/quiet-canvas.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Quiet Canvas" -source: - marketplace_id: "kevinwolfcr.vscode-quiet-canvas" - version: "1.0.0" - installs: 1749 - rating: 5 - ratings: 1 - author: "(deprecated) Kevin Wolf" - repo: "https://github.com/kevinwolfcr/vscode-quiet-canvas" - url: "https://marketplace.visualstudio.com/items?itemName=kevinwolfcr.vscode-quiet-canvas" -colors: - bg: "#FCFCFD" - fg: "#7E808A" - black: "#EBEBEF" - red: "#EB9091" - green: "#5BB98C" - yellow: "#C9AA45" - blue: "#5EB0EF" - magenta: "#E38EC3" - cyan: "#3DB9CF" - white: "#60646C" - brightBlack: "#DDDDE3" - brightRed: "#C62A2F" - brightGreen: "#18794E" - brightYellow: "#775F28" - brightBlue: "#0B68CB" - brightMagenta: "#C41C87" - brightCyan: "#0C7792" - brightWhite: "#1C2024" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 65 - black: 7.4 - red: 44.4 - green: 45.3 - yellow: 42.5 - blue: 44.4 - magenta: 44.4 - cyan: 43.7 - white: 78 - brightBlack: 15.6 - brightRed: 74.5 - brightGreen: 74.8 - brightYellow: 78.5 - brightBlue: 74.7 - brightMagenta: 73.5 - brightCyan: 73.3 - brightWhite: 101.6 diff --git a/themes/quiet-hacker.yaml b/themes/quiet-hacker.yaml index eb16dc69..422f1963 100644 --- a/themes/quiet-hacker.yaml +++ b/themes/quiet-hacker.yaml @@ -2,12 +2,13 @@ name: "Quiet Hacker" source: marketplace_id: "ManuelArtero.quiet-hacker" version: "1.0.1" - installs: 37 + installs: 38 rating: 0 ratings: 0 author: "Manuel Artero" repo: "https://github.com/manuartero/vscode-theme-quiet-hacker" url: "https://marketplace.visualstudio.com/items?itemName=ManuelArtero.quiet-hacker" + formats: null colors: bg: "#000000" fg: "#A0C8A0" diff --git a/themes/quietude.yaml b/themes/quietude.yaml index 376091c1..a6370c02 100644 --- a/themes/quietude.yaml +++ b/themes/quietude.yaml @@ -8,6 +8,7 @@ source: author: "rafaelrcamargo" repo: "https://github.com/rafaelrcamargo/quietude" url: "https://marketplace.visualstudio.com/items?itemName=cmrg.quietude" + formats: null colors: bg: "#1A1A1F" fg: "#BAB39C" diff --git a/themes/quinno-darkness.yaml b/themes/quinno-darkness.yaml index 04ab8d31..3374c7a9 100644 --- a/themes/quinno-darkness.yaml +++ b/themes/quinno-darkness.yaml @@ -8,6 +8,7 @@ source: author: "alistairjoel" repo: "https://github.com/alistairjoelquinn/quinno_darkness" url: "https://marketplace.visualstudio.com/items?itemName=alistairjoel.quinnodarkness" + formats: null colors: bg: "#38302E" fg: "#D4D4D4" diff --git a/themes/quirky-contrast-theme.yaml b/themes/quirky-contrast-theme.yaml index 6a3c54ed..b19eef40 100644 --- a/themes/quirky-contrast-theme.yaml +++ b/themes/quirky-contrast-theme.yaml @@ -8,6 +8,7 @@ source: author: "DarkMannn" repo: "https://github.com/DarkMannn/quirky-contrast-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.quirky-contrast-theme" + formats: null colors: bg: "#1D1D1D" fg: "#DDDDDD" diff --git a/themes/qutheme.yaml b/themes/qutheme.yaml index 2a57878f..77cb195c 100644 --- a/themes/qutheme.yaml +++ b/themes/qutheme.yaml @@ -8,6 +8,7 @@ source: author: "Yoyo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Yoyo0904.qutheme" + formats: null colors: bg: "#2E3440" fg: "#ABB2BF" diff --git a/themes/r-dark-pro-filter-coolnight.yaml b/themes/r-dark-pro-filter-coolnight.yaml index 68ba3114..1015ff2e 100644 --- a/themes/r-dark-pro-filter-coolnight.yaml +++ b/themes/r-dark-pro-filter-coolnight.yaml @@ -8,6 +8,7 @@ source: author: "Rezky P. Budihartono" repo: "https://github.com/rezkycodes/rdark.pro" url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" + formats: null colors: bg: "#0E1112" fg: "#ABB2BF" diff --git a/themes/r-dark-pro-filter-dark-pro.yaml b/themes/r-dark-pro-filter-dark-pro.yaml index dd6d9c25..c2dc23b8 100644 --- a/themes/r-dark-pro-filter-dark-pro.yaml +++ b/themes/r-dark-pro-filter-dark-pro.yaml @@ -8,6 +8,7 @@ source: author: "Rezky P. Budihartono" repo: "https://github.com/rezkycodes/rdark.pro" url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" + formats: null colors: bg: "#0C0F14" fg: "#ABB2BF" diff --git a/themes/r-dark-pro-filter-nightblack.yaml b/themes/r-dark-pro-filter-nightblack.yaml index f9a618ea..4c16dae9 100644 --- a/themes/r-dark-pro-filter-nightblack.yaml +++ b/themes/r-dark-pro-filter-nightblack.yaml @@ -8,6 +8,7 @@ source: author: "Rezky P. Budihartono" repo: "https://github.com/rezkycodes/rdark.pro" url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" + formats: null colors: bg: "#121517" fg: "#ABB2BF" diff --git a/themes/r-dark-pro-filter-nightfall.yaml b/themes/r-dark-pro-filter-nightfall.yaml index 0a55b23c..96709537 100644 --- a/themes/r-dark-pro-filter-nightfall.yaml +++ b/themes/r-dark-pro-filter-nightfall.yaml @@ -8,6 +8,7 @@ source: author: "Rezky P. Budihartono" repo: "https://github.com/rezkycodes/rdark.pro" url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" + formats: null colors: bg: "#181920" fg: "#ABB2BF" diff --git a/themes/r-dark-pro-filter-nightgrey.yaml b/themes/r-dark-pro-filter-nightgrey.yaml index 7e1fa4a5..9e3d1a68 100644 --- a/themes/r-dark-pro-filter-nightgrey.yaml +++ b/themes/r-dark-pro-filter-nightgrey.yaml @@ -8,6 +8,7 @@ source: author: "Rezky P. Budihartono" repo: "https://github.com/rezkycodes/rdark.pro" url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" + formats: null colors: bg: "#222222" fg: "#ABB2BF" diff --git a/themes/r-dark-pro-filter-nightlate.yaml b/themes/r-dark-pro-filter-nightlate.yaml index fd82a8e9..88c63378 100644 --- a/themes/r-dark-pro-filter-nightlate.yaml +++ b/themes/r-dark-pro-filter-nightlate.yaml @@ -8,6 +8,7 @@ source: author: "Rezky P. Budihartono" repo: "https://github.com/rezkycodes/rdark.pro" url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" + formats: null colors: bg: "#16161E" fg: "#ABB2BF" diff --git a/themes/r-e-m.yaml b/themes/r-e-m.yaml index 2460d15d..3526baa4 100644 --- a/themes/r-e-m.yaml +++ b/themes/r-e-m.yaml @@ -8,6 +8,7 @@ source: author: "anya vyazemskaya" repo: null url: "https://marketplace.visualstudio.com/items?itemName=anyavyazemskaya.r-e-m" + formats: null colors: bg: "#2D3543" fg: "#CDC6FF" diff --git a/themes/r-h-zero-monokai.yaml b/themes/r-h-zero-monokai.yaml deleted file mode 100644 index d5dfe0ee..00000000 --- a/themes/r-h-zero-monokai.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "R_h_zero Monokai" -source: - marketplace_id: "Rhzero.rhzero-theme" - version: "0.0.2" - installs: 345 - rating: 5 - ratings: 2 - author: "R_h_zero" - repo: "https://github.com/chouchouxsl/vscode-theme-R_h_zero" - url: "https://marketplace.visualstudio.com/items?itemName=Rhzero.rhzero-theme" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#2D3139" - red: "#E06C75" - green: "#4D9375" - yellow: "#E5C07B" - blue: "#528BFF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#4D9375" - brightYellow: "#E5C07B" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 56.2 - black: 0 - red: 38.9 - green: 33.5 - yellow: 67.4 - blue: 38.3 - magenta: 41.9 - cyan: 51.4 - white: 79.8 - brightBlack: 32.3 - brightRed: 35.2 - brightGreen: 33.5 - brightYellow: 67.4 - brightBlue: 38.3 - brightMagenta: 9.5 - brightCyan: 51.4 - brightWhite: 79.8 diff --git a/themes/rabbit.yaml b/themes/rabbit.yaml index 848b65fb..7b1a9e22 100644 --- a/themes/rabbit.yaml +++ b/themes/rabbit.yaml @@ -8,6 +8,7 @@ source: author: "Playful Rabbit" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PlayfulRabbit.rabbit-theme" + formats: null colors: bg: "#07010F" fg: "#FFDF25" diff --git a/themes/radiant-noir.yaml b/themes/radiant-noir.yaml index 3e470323..16c8dfc3 100644 --- a/themes/radiant-noir.yaml +++ b/themes/radiant-noir.yaml @@ -8,6 +8,7 @@ source: author: "marina-barbosa" repo: null url: "https://marketplace.visualstudio.com/items?itemName=marina-barbosa.canopus-theme" + formats: null colors: bg: "#0E1419" fg: "#BDD1D4" diff --git a/themes/radium.yaml b/themes/radium.yaml index 39234900..b11981e3 100644 --- a/themes/radium.yaml +++ b/themes/radium.yaml @@ -8,6 +8,7 @@ source: author: "Andrew Nijmeh" repo: "https://github.com/radium-theme/vsc" url: "https://marketplace.visualstudio.com/items?itemName=AndrewNijmeh.radium" + formats: null colors: bg: "#011100" fg: "#FFFFFF" diff --git a/themes/ragequit.yaml b/themes/ragequit.yaml index f72a6de4..f6c9e1d0 100644 --- a/themes/ragequit.yaml +++ b/themes/ragequit.yaml @@ -8,6 +8,7 @@ source: author: "Yuri Rage" repo: "https://github.com/yuri-rage/vscode-theme-ragequit" url: "https://marketplace.visualstudio.com/items?itemName=YuriRage.ragequit" + formats: null colors: bg: "#0A0E16" fg: "#C8C4CE" diff --git a/themes/ragnarok.yaml b/themes/ragnarok.yaml index 25ee795c..c13fb9a1 100644 --- a/themes/ragnarok.yaml +++ b/themes/ragnarok.yaml @@ -8,6 +8,7 @@ source: author: "Filip Dzankic" repo: "https://github.com/CaptRagnarok/vscode-ragnarok-coder-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=RagnarokCoding.ragnarok-coder-dark" + formats: null colors: bg: "#131313" fg: "#C6CFE2" diff --git a/themes/raij-dark.yaml b/themes/raij-dark.yaml deleted file mode 100644 index b666aadc..00000000 --- a/themes/raij-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Raijū - Dark" -source: - marketplace_id: "csmith23.raiju-contrast" - version: "0.0.2" - installs: 239 - rating: 0 - ratings: 0 - author: "coleman smith" - repo: "https://github.com/csmith23/raiju" - url: "https://marketplace.visualstudio.com/items?itemName=csmith23.raiju-contrast" -colors: - bg: "#171D2B" - fg: "#E6E6E6" - black: "#6F7899" - red: "#A188F1" - green: "#7EBBBB" - yellow: "#FFEDCB" - blue: "#8D9AD1" - magenta: "#CEB3F7" - cyan: "#A7A7EE" - white: "#D7E2FF" - brightBlack: "#6F7899" - brightRed: "#A188F1" - brightGreen: "#7EBBBB" - brightYellow: "#FFEDCB" - brightBlue: "#8D9AD1" - brightMagenta: "#CEB3F7" - brightCyan: "#A7A7EE" - brightWhite: "#D7E2FF" -meta: - mode: "dark" - accent: "magenta" - hue: 266 - pair: null - contrast: - fg: 89.9 - black: 29.8 - red: 45.3 - green: 58 - yellow: 95.5 - blue: 47.2 - magenta: 66.3 - cyan: 56.4 - white: 87.4 - brightBlack: 29.8 - brightRed: 45.3 - brightGreen: 58 - brightYellow: 95.5 - brightBlue: 47.2 - brightMagenta: 66.3 - brightCyan: 56.4 - brightWhite: 87.4 diff --git a/themes/raij.yaml b/themes/raij.yaml deleted file mode 100644 index 55049c56..00000000 --- a/themes/raij.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Raijū" -source: - marketplace_id: "csmith23.raiju-contrast" - version: "0.0.2" - installs: 239 - rating: 0 - ratings: 0 - author: "coleman smith" - repo: "https://github.com/csmith23/raiju" - url: "https://marketplace.visualstudio.com/items?itemName=csmith23.raiju-contrast" -colors: - bg: "#262B3B" - fg: "#E6E6E6" - black: "#6F7899" - red: "#A188F1" - green: "#7EBBBB" - yellow: "#FFEDCB" - blue: "#8D9AD1" - magenta: "#CEB3F7" - cyan: "#A7A7EE" - white: "#D7E2FF" - brightBlack: "#6F7899" - brightRed: "#A188F1" - brightGreen: "#7EBBBB" - brightYellow: "#FFEDCB" - brightBlue: "#8D9AD1" - brightMagenta: "#CEB3F7" - brightCyan: "#A7A7EE" - brightWhite: "#D7E2FF" -meta: - mode: "dark" - accent: "magenta" - hue: 271 - pair: null - contrast: - fg: 87.5 - black: 27.4 - red: 42.9 - green: 55.7 - yellow: 93.1 - blue: 44.8 - magenta: 63.9 - cyan: 54.1 - white: 85 - brightBlack: 27.4 - brightRed: 42.9 - brightGreen: 55.7 - brightYellow: 93.1 - brightBlue: 44.8 - brightMagenta: 63.9 - brightCyan: 54.1 - brightWhite: 85 diff --git a/themes/rain-city-theme.yaml b/themes/rain-city-theme.yaml index 27faadfa..9175402e 100644 --- a/themes/rain-city-theme.yaml +++ b/themes/rain-city-theme.yaml @@ -8,6 +8,7 @@ source: author: "DaniSyam" repo: "https://github.com/danisyam/rain-city-theme" url: "https://marketplace.visualstudio.com/items?itemName=DaniSyam.rain-city-theme" + formats: null colors: bg: "#F0F4F8" fg: "#2C3E50" diff --git a/themes/rain.yaml b/themes/rain.yaml index d673d939..b920e404 100644 --- a/themes/rain.yaml +++ b/themes/rain.yaml @@ -8,6 +8,7 @@ source: author: "Getcode" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Getcode.raindiaz" + formats: null colors: bg: "#0E151B" fg: "#FFFFFF" diff --git a/themes/rainbow-light.yaml b/themes/rainbow-light.yaml deleted file mode 100644 index be3b8c64..00000000 --- a/themes/rainbow-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "rainbow-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#B3CC57" - yellow: "#EF746F" - blue: "#FFBE40" - magenta: "#3FB4C5" - cyan: "#F86F50" - white: "#515151" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#D6E4A5" - brightYellow: "#F9CDCB" - brightBlue: "#FFE1A6" - brightMagenta: "#8DD3DD" - brightCyan: "#FCC0B2" - brightWhite: "#777777" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 80.3 - green: 33.2 - yellow: 53.9 - blue: 28.7 - magenta: 48 - cyan: 53.8 - white: 87.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 17.4 - brightYellow: 20.9 - brightBlue: 13.2 - brightMagenta: 29.7 - brightCyan: 26.2 - brightWhite: 71.1 diff --git a/themes/rainbow-material-theme.yaml b/themes/rainbow-material-theme.yaml index be019204..7e2b8ef7 100644 --- a/themes/rainbow-material-theme.yaml +++ b/themes/rainbow-material-theme.yaml @@ -1,4 +1,4 @@ -name: "rainbow-material-theme" +name: "Rainbow Material Theme" source: marketplace_id: "yasgreen93.rainbow-material-theme" version: "0.3.0" @@ -8,6 +8,7 @@ source: author: "yasgreen93" repo: "https://github.com/yasgreen93/rainbow-material-theme" url: "https://marketplace.visualstudio.com/items?itemName=yasgreen93.rainbow-material-theme" + formats: null colors: bg: "#202020" fg: "#B8B8B8" diff --git a/themes/rainbow-pastel-theme.yaml b/themes/rainbow-pastel-theme.yaml index d504930a..9103e1df 100644 --- a/themes/rainbow-pastel-theme.yaml +++ b/themes/rainbow-pastel-theme.yaml @@ -8,6 +8,7 @@ source: author: "Tash" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Tash.tashpastel" + formats: null colors: bg: "#061B26" fg: "#F5F5F5" diff --git a/themes/rainbow.yaml b/themes/rainbow.yaml deleted file mode 100644 index c78848c9..00000000 --- a/themes/rainbow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "rainbow" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#373C42" - fg: "#C7D0D9" - black: "#434950" - red: "#BA0E2E" - green: "#B3CC57" - yellow: "#EF746F" - blue: "#FFBE40" - magenta: "#3FB4C5" - cyan: "#F86F50" - white: "#D6DDE3" - brightBlack: "#656F7A" - brightRed: "#F03E5F" - brightGreen: "#D6E4A5" - brightYellow: "#F9CDCB" - brightBlue: "#FFE1A6" - brightMagenta: "#8DD3DD" - brightCyan: "#FCC0B2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 253 - pair: null - contrast: - fg: 69 - black: 0 - red: 13.2 - green: 61.1 - yellow: 39.6 - blue: 65.8 - magenta: 45.7 - cyan: 39.6 - white: 77 - brightBlack: 18.1 - brightRed: 29.4 - brightGreen: 77.9 - brightYellow: 74.2 - brightBlue: 82.3 - brightMagenta: 64.8 - brightCyan: 68.5 - brightWhite: 99.5 diff --git a/themes/rainbowdrops-dark.yaml b/themes/rainbowdrops-dark.yaml deleted file mode 100644 index 1a58b04a..00000000 --- a/themes/rainbowdrops-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "RainbowDrops Dark" -source: - marketplace_id: "WithOutCat.theme-rainbowdrops" - version: "3.0.0" - installs: 5115 - rating: 5 - ratings: 1 - author: "WithOutCat" - repo: "https://github.com/withoutcat/rainbowdrops" - url: "https://marketplace.visualstudio.com/items?itemName=WithOutCat.theme-rainbowdrops" -colors: - bg: "#202020" - fg: "#D9E8F7" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 89.6 - black: 0 - red: 23.5 - green: 51.9 - yellow: 56.5 - blue: 33.5 - magenta: 31.1 - cyan: 49.3 - white: 87.4 - brightBlack: 20.9 - brightRed: 36.2 - brightGreen: 75.9 - brightYellow: 82.8 - brightBlue: 48.7 - brightMagenta: 45.4 - brightCyan: 72.3 - brightWhite: 100.9 diff --git a/themes/rainforest-dark.yaml b/themes/rainforest-dark.yaml index 6c6fa800..21e8fd5b 100644 --- a/themes/rainforest-dark.yaml +++ b/themes/rainforest-dark.yaml @@ -8,6 +8,7 @@ source: author: "Gyde" repo: "https://github.com/GlennDoesGit/rainforestdark" url: "https://marketplace.visualstudio.com/items?itemName=Gyde.rainforestdark" + formats: null colors: bg: "#0F141E" fg: "#CAD2E0" diff --git a/themes/rainx0r.yaml b/themes/rainx0r.yaml index 049aac8b..234856d9 100644 --- a/themes/rainx0r.yaml +++ b/themes/rainx0r.yaml @@ -8,6 +8,7 @@ source: author: "rainx0r" repo: "https://github.com/rainx0r/rainx0r-theme" url: "https://marketplace.visualstudio.com/items?itemName=rainx0r.rainx0r-theme" + formats: null colors: bg: "#0E181B" fg: "#F8FBFC" diff --git a/themes/rainy-hydrangea.yaml b/themes/rainy-hydrangea.yaml index e3c7c648..62dab703 100644 --- a/themes/rainy-hydrangea.yaml +++ b/themes/rainy-hydrangea.yaml @@ -8,6 +8,7 @@ source: author: "okenakt" repo: "https://github.com/okenakt/rainy-hydrangea" url: "https://marketplace.visualstudio.com/items?itemName=okenakt.rainy-hydrangea" + formats: null colors: bg: "#21272E" fg: "#C3C5C7" diff --git a/themes/raiyanplanet-dark-knight.yaml b/themes/raiyanplanet-dark-knight.yaml deleted file mode 100644 index 8a9867c2..00000000 --- a/themes/raiyanplanet-dark-knight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "RaiyanPlanet Dark Knight" -source: - marketplace_id: "RaiyanPlanet.raiyanplanet-dark-theme" - version: "0.0.1" - installs: 98 - rating: 0 - ratings: 0 - author: "Raiyan Planet" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=RaiyanPlanet.raiyanplanet-dark-theme" -colors: - bg: "#11121B" - fg: "#A9B1D6" - black: "#363B54" - red: "#F7768E" - green: "#73DACA" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#787C99" - brightBlack: "#363B54" - brightRed: "#F7768E" - brightGreen: "#73DACA" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#ACB0D0" -meta: - mode: "dark" - accent: "red" - hue: 280 - pair: null - contrast: - fg: 60.3 - black: 0 - red: 50.3 - green: 73.2 - yellow: 63.1 - blue: 52.1 - magenta: 55.9 - cyan: 71.4 - white: 33 - brightBlack: 0 - brightRed: 50.3 - brightGreen: 73.2 - brightYellow: 63.1 - brightBlue: 52.1 - brightMagenta: 55.9 - brightCyan: 71.4 - brightWhite: 59.9 diff --git a/themes/raiyanplanet-darkest.yaml b/themes/raiyanplanet-darkest.yaml deleted file mode 100644 index 0befd8ac..00000000 --- a/themes/raiyanplanet-darkest.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "RaiyanPlanet Darkest" -source: - marketplace_id: "RaiyanPlanet.raiyanplanet-dark-theme" - version: "0.0.1" - installs: 98 - rating: 0 - ratings: 0 - author: "Raiyan Planet" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=RaiyanPlanet.raiyanplanet-dark-theme" -colors: - bg: "#000000" - fg: "#A9B1D6" - black: "#363B54" - red: "#F7768E" - green: "#73DACA" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#787C99" - brightBlack: "#363B54" - brightRed: "#F7768E" - brightGreen: "#73DACA" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#ACB0D0" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 60.9 - black: 0 - red: 50.9 - green: 73.8 - yellow: 63.7 - blue: 52.7 - magenta: 56.6 - cyan: 72.1 - white: 33.6 - brightBlack: 0 - brightRed: 50.9 - brightGreen: 73.8 - brightYellow: 63.7 - brightBlue: 52.7 - brightMagenta: 56.6 - brightCyan: 72.1 - brightWhite: 60.5 diff --git a/themes/raiyanplanet-purple-world.yaml b/themes/raiyanplanet-purple-world.yaml deleted file mode 100644 index 8caa7b77..00000000 --- a/themes/raiyanplanet-purple-world.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "RaiyanPlanet Purple World" -source: - marketplace_id: "RaiyanPlanet.raiyanplanet-dark-theme" - version: "0.0.1" - installs: 98 - rating: 0 - ratings: 0 - author: "Raiyan Planet" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=RaiyanPlanet.raiyanplanet-dark-theme" -colors: - bg: "#121420" - fg: "#BFC7D5" - black: "#676E95" - red: "#FF5572" - green: "#A9C77D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#FF5572" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 277 - pair: null - contrast: - fg: 71.6 - black: 26.6 - red: 44.2 - green: 66 - yellow: 79.1 - blue: 56.1 - magenta: 54 - cyan: 78.5 - white: 107.1 - brightBlack: 26.6 - brightRed: 44.2 - brightGreen: 84.4 - brightYellow: 79.1 - brightBlue: 56.1 - brightMagenta: 54 - brightCyan: 78.5 - brightWhite: 107.1 diff --git a/themes/rajasthan-land-of-kings.yaml b/themes/rajasthan-land-of-kings.yaml index 4249dc69..e63a0588 100644 --- a/themes/rajasthan-land-of-kings.yaml +++ b/themes/rajasthan-land-of-kings.yaml @@ -8,6 +8,7 @@ source: author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" + formats: null colors: bg: "#1E1410" fg: "#F4E8D8" diff --git a/themes/rajoyish.yaml b/themes/rajoyish.yaml index a78c185c..9536a764 100644 --- a/themes/rajoyish.yaml +++ b/themes/rajoyish.yaml @@ -8,6 +8,7 @@ source: author: "Rajesh Budhathoki" repo: "https://github.com/rajoyish/rajoyish-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=RajeshBudhathoki.rajoyish" + formats: null colors: bg: "#FAFBFC" fg: "#1B0273" diff --git a/themes/rakkii-theme.yaml b/themes/rakkii-theme.yaml index 916d14ea..3e86da8e 100644 --- a/themes/rakkii-theme.yaml +++ b/themes/rakkii-theme.yaml @@ -8,6 +8,7 @@ source: author: "Rakkii-Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Rakkii-Theme.rakkii" + formats: null colors: bg: "#221136" fg: "#FFFFFF" diff --git a/themes/ramage.yaml b/themes/ramage.yaml index 6d73789a..1740c76b 100644 --- a/themes/ramage.yaml +++ b/themes/ramage.yaml @@ -8,6 +8,7 @@ source: author: "Conobi" repo: "https://github.com/Donokami/ramage-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Conobi.ramage-vscode" + formats: null colors: bg: "#1D2434" fg: "#B3BDD6" diff --git a/themes/ramazzotti-80s.yaml b/themes/ramazzotti-80s.yaml deleted file mode 100644 index e37fa04f..00000000 --- a/themes/ramazzotti-80s.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ramazzotti-80s" -source: - marketplace_id: "panquequelol.ramazzotti" - version: "2.2.0" - installs: 561 - rating: 0 - ratings: 0 - author: "panquequelol" - repo: "https://github.com/panquequelol/ramazzotti" - url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.ramazzotti" -colors: - bg: "#1C1B1A" - fg: "#BEC2CA" - black: "#6F7887" - red: "#E06C75" - green: "#9AC181" - yellow: "#D6C294" - blue: "#61AFEF" - magenta: "#CA90D0" - cyan: "#56B6C2" - white: "#BEC2CA" - brightBlack: "#6F7887" - brightRed: "#E06C75" - brightGreen: "#9AC181" - brightYellow: "#D6C294" - brightBlue: "#61AFEF" - brightMagenta: "#CA90D0" - brightCyan: "#56B6C2" - brightWhite: "#E3E5E8" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 68.2 - black: 29.3 - red: 41.6 - green: 61.3 - yellow: 69.3 - blue: 54.2 - magenta: 51.6 - cyan: 54.1 - white: 68.2 - brightBlack: 29.3 - brightRed: 41.6 - brightGreen: 61.3 - brightYellow: 69.3 - brightBlue: 54.2 - brightMagenta: 51.6 - brightCyan: 54.1 - brightWhite: 89.4 diff --git a/themes/ramazzotti-flexobi.yaml b/themes/ramazzotti-flexobi.yaml index 119342f6..dce461f8 100644 --- a/themes/ramazzotti-flexobi.yaml +++ b/themes/ramazzotti-flexobi.yaml @@ -8,6 +8,7 @@ source: author: "panquequelol" repo: "https://github.com/panquequelol/ramazzotti" url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.ramazzotti" + formats: null colors: bg: "#100F0F" fg: "#DBD7CA" diff --git a/themes/ramazzotti-gruvbox.yaml b/themes/ramazzotti-gruvbox.yaml index 07e5c871..960cf68e 100644 --- a/themes/ramazzotti-gruvbox.yaml +++ b/themes/ramazzotti-gruvbox.yaml @@ -8,6 +8,7 @@ source: author: "panquequelol" repo: "https://github.com/panquequelol/ramazzotti" url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.ramazzotti" + formats: null colors: bg: "#100F0F" fg: "#EBDBB2" diff --git a/themes/ramuda.yaml b/themes/ramuda.yaml deleted file mode 100644 index 2effcd93..00000000 --- a/themes/ramuda.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ramuda" -source: - marketplace_id: "RienZhang.theme-ramuda-pink-dark" - version: "1.0.0" - installs: 4819 - rating: 5 - ratings: 3 - author: "RienZhang" - repo: "https://github.com/fifthfir/Play" - url: "https://marketplace.visualstudio.com/items?itemName=RienZhang.theme-ramuda-pink-dark" -colors: - bg: "#251C2C" - fg: "#FFF0F5" - black: "#000000" - red: "#FFA0BF" - green: "#55E3B1" - yellow: "#FBFF00" - blue: "#FF83BB" - magenta: "#FFADC8" - cyan: "#80FCFF" - white: "#FFFFFF" - brightBlack: "#7575F1" - brightRed: "#FF9CBD" - brightGreen: "#3AD900" - brightYellow: "#FFE100" - brightBlue: "#68FCE8" - brightMagenta: "#FB94FF" - brightCyan: "#F69FC9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 310 - pair: null - contrast: - fg: 98.3 - black: 0 - red: 64.4 - green: 73.7 - yellow: 100.1 - blue: 55.6 - magenta: 69.1 - cyan: 91.7 - white: 105.8 - brightBlack: 34.6 - brightRed: 63 - brightGreen: 65.2 - brightYellow: 86.6 - brightBlue: 89.3 - brightMagenta: 63.3 - brightCyan: 62.8 - brightWhite: 105.8 diff --git a/themes/rapture.yaml b/themes/rapture.yaml index b8a44ea5..e35e4c9a 100644 --- a/themes/rapture.yaml +++ b/themes/rapture.yaml @@ -2,12 +2,13 @@ name: "Rapture" source: marketplace_id: "Pustur.rapture-vscode" version: "1.7.0" - installs: 4843 + installs: 4867 rating: 5 ratings: 3 author: "Pustur" repo: "https://github.com/Pustur/rapture-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Pustur.rapture-vscode" + formats: null colors: bg: "#111E2A" fg: "#C0C9E5" diff --git a/themes/rasengan-glacier.yaml b/themes/rasengan-glacier.yaml index de6566b0..0ede1942 100644 --- a/themes/rasengan-glacier.yaml +++ b/themes/rasengan-glacier.yaml @@ -8,6 +8,7 @@ source: author: "The Half Blood Prince" repo: "https://github.com/the-halfbloodprince/rasengan-glacier" url: "https://marketplace.visualstudio.com/items?itemName=TheHalfBloodPrince.rasengan-glacier" + formats: null colors: bg: "#000000" fg: "#D4D4D4" diff --git a/themes/rat-beach.yaml b/themes/rat-beach.yaml index 5855062b..9c1ae054 100644 --- a/themes/rat-beach.yaml +++ b/themes/rat-beach.yaml @@ -8,6 +8,7 @@ source: author: "41e4 Consulting" repo: "https://github.com/41e4/rat-beach" url: "https://marketplace.visualstudio.com/items?itemName=41e4.rat-beach" + formats: null colors: bg: "#F2F0ED" fg: "#515151" diff --git a/themes/rate-dark-cold.yaml b/themes/rate-dark-cold.yaml index 3907f78d..212b5699 100644 --- a/themes/rate-dark-cold.yaml +++ b/themes/rate-dark-cold.yaml @@ -8,6 +8,7 @@ source: author: "Roll7" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Roll7.rate-theme" + formats: null colors: bg: "#2E3440" fg: "#C8E4F0" diff --git a/themes/rate-dark.yaml b/themes/rate-dark.yaml index a88d6113..9e050c4b 100644 --- a/themes/rate-dark.yaml +++ b/themes/rate-dark.yaml @@ -8,6 +8,7 @@ source: author: "Roll7" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Roll7.rate-theme" + formats: null colors: bg: "#0E1117" fg: "#DBD7CA" diff --git a/themes/rate-light-soft.yaml b/themes/rate-light-soft.yaml index a795f364..0a5b2120 100644 --- a/themes/rate-light-soft.yaml +++ b/themes/rate-light-soft.yaml @@ -8,6 +8,7 @@ source: author: "Roll7" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Roll7.rate-theme" + formats: null colors: bg: "#FFFFF0" fg: "#393A34" diff --git a/themes/rate-light.yaml b/themes/rate-light.yaml index 50bac512..7a8f117c 100644 --- a/themes/rate-light.yaml +++ b/themes/rate-light.yaml @@ -8,6 +8,7 @@ source: author: "Roll7" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Roll7.rate-theme" + formats: null colors: bg: "#F8F8FF" fg: "#393A34" diff --git a/themes/ravenwood-dark.yaml b/themes/ravenwood-dark.yaml index bffd0741..52eeaa76 100644 --- a/themes/ravenwood-dark.yaml +++ b/themes/ravenwood-dark.yaml @@ -8,6 +8,7 @@ source: author: "Raymond Thurman" repo: "https://github.com/raythurman2386/ravenwood-vscode" url: "https://marketplace.visualstudio.com/items?itemName=RaymondThurman.ravenwood" + formats: null colors: bg: "#222822" fg: "#E8D5B7" diff --git a/themes/ravenwood-light.yaml b/themes/ravenwood-light.yaml index a99d99d0..8c03bd53 100644 --- a/themes/ravenwood-light.yaml +++ b/themes/ravenwood-light.yaml @@ -8,6 +8,7 @@ source: author: "Raymond Thurman" repo: "https://github.com/raythurman2386/ravenwood-vscode" url: "https://marketplace.visualstudio.com/items?itemName=RaymondThurman.ravenwood" + formats: null colors: bg: "#FDF6E3" fg: "#3D4C53" diff --git a/themes/rayleigh.yaml b/themes/rayleigh.yaml index 29c7809b..5517bb78 100644 --- a/themes/rayleigh.yaml +++ b/themes/rayleigh.yaml @@ -8,6 +8,7 @@ source: author: "rayleigh" repo: "https://github.com/ctvnjhnrmmlp/rayleigh" url: "https://marketplace.visualstudio.com/items?itemName=rayleigh.rayleigh" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/rb-s-desaturated.yaml b/themes/rb-s-desaturated.yaml deleted file mode 100644 index 05608665..00000000 --- a/themes/rb-s-desaturated.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "RB's Desaturated" -source: - marketplace_id: "TrexTheRobot.rb-color-theme" - version: "1.1.0" - installs: 44 - rating: 0 - ratings: 0 - author: "TrexTheRobot" - repo: "https://github.com/jamiej1212/vsColorTheme" - url: "https://marketplace.visualstudio.com/items?itemName=TrexTheRobot.rb-color-theme" -colors: - bg: "#1D1D1D" - fg: "#D3D3D3" - black: "#000000" - red: "#B84646" - green: "#30B884" - yellow: "#D7D736" - blue: "#52749B" - magenta: "#AD50AD" - cyan: "#4F8C9B" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#BA5B5B" - brightGreen: "#5EE6AF" - brightYellow: "#F5D143" - brightBlue: "#7C9EC4" - brightMagenta: "#A961A9" - brightCyan: "#7CBFCF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 78.2 - black: 0 - red: 24.7 - green: 51.2 - yellow: 76.7 - blue: 26.4 - magenta: 28.3 - cyan: 34.8 - white: 89.3 - brightBlack: 21.3 - brightRed: 29.6 - brightGreen: 75.8 - brightYellow: 78.6 - brightBlue: 46.5 - brightMagenta: 31.1 - brightCyan: 60.6 - brightWhite: 89.3 diff --git a/themes/rbe-matrix-skin-theme.yaml b/themes/rbe-matrix-skin-theme.yaml index 652d4ccb..72b54b52 100644 --- a/themes/rbe-matrix-skin-theme.yaml +++ b/themes/rbe-matrix-skin-theme.yaml @@ -2,12 +2,13 @@ name: "RBE Matrix Skin Theme" source: marketplace_id: "RudeBoyEnterprises.rbe-matrix-skin-theme" version: "1.0.2" - installs: 17711 + installs: 17713 rating: 5 ratings: 4 author: "Rude Boy Enterprises" repo: "https://github.com/skamansam/vscode-rbe-matrix-theme" url: "https://marketplace.visualstudio.com/items?itemName=RudeBoyEnterprises.rbe-matrix-skin-theme" + formats: null colors: bg: "#000000" fg: "#00FF00" diff --git a/themes/rblx-lua-non-italic.yaml b/themes/rblx-lua-non-italic.yaml index d741739a..076f0e80 100644 --- a/themes/rblx-lua-non-italic.yaml +++ b/themes/rblx-lua-non-italic.yaml @@ -8,6 +8,7 @@ source: author: "Sky City Studio" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SkyCityStudio.roblox-lua-themes-dark" + formats: null colors: bg: "#1E1E1E" fg: "#C5C8C6" diff --git a/themes/rcw-120-v1.yaml b/themes/rcw-120-v1.yaml deleted file mode 100644 index c4ad7f6a..00000000 --- a/themes/rcw-120-v1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "RCW-120-V1" -source: - marketplace_id: "alexeymasasin.rcw-120" - version: "1.0.0" - installs: 69 - rating: 0 - ratings: 0 - author: "Alexey Masasin" - repo: "https://github.com/alexeymasasin/RCW-120.git#main" - url: "https://marketplace.visualstudio.com/items?itemName=alexeymasasin.rcw-120" -colors: - bg: "#111018" - fg: "#F5FAFF" - black: "#666666" - red: "#BC3333" - green: "#45D393" - yellow: "#B0A153" - blue: "#8258DE" - magenta: "#BC41C9" - cyan: "#029CC2" - white: "#E5E5E5" - brightBlack: "#969696" - brightRed: "#E63F3F" - brightGreen: "#53FFB1" - brightYellow: "#DBC965" - brightBlue: "#915FFF" - brightMagenta: "#D64BE4" - brightCyan: "#03B4E0" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 290 - pair: null - contrast: - fg: 103.6 - black: 22.5 - red: 23.8 - green: 65.9 - yellow: 50.6 - blue: 28.5 - magenta: 31.4 - cyan: 42.5 - white: 90.5 - brightBlack: 45.1 - brightRed: 34.6 - brightGreen: 89.5 - brightYellow: 72.9 - brightBlue: 34.6 - brightMagenta: 39.6 - brightCyan: 54.2 - brightWhite: 90.5 diff --git a/themes/rdcd.yaml b/themes/rdcd.yaml index bb3df192..8f757d4a 100644 --- a/themes/rdcd.yaml +++ b/themes/rdcd.yaml @@ -1,4 +1,4 @@ -name: "rdcd" +name: "RDCD" source: marketplace_id: "shoizz.rdcd" version: "0.1.0" @@ -8,6 +8,7 @@ source: author: "denis" repo: "git+https://github.com/Shoizz/rdcd-theme" url: "https://marketplace.visualstudio.com/items?itemName=shoizz.rdcd" + formats: null colors: bg: "#161820" fg: "#CED3DB" diff --git a/themes/re-dark.yaml b/themes/re-dark.yaml deleted file mode 100644 index a94278e9..00000000 --- a/themes/re-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "re:Dark" -source: - marketplace_id: "Cydo.re-dark" - version: "0.2.1" - installs: 61 - rating: 0 - ratings: 0 - author: "Cydo" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-dark" -colors: - bg: "#212121" - fg: "#EEFFFF" - black: "#000000" - red: "#D30700" - green: "#92C202" - yellow: "#CAAC00" - blue: "#429AFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#2C2C2C" - brightRed: "#FF0800" - brightGreen: "#CAFF29" - brightYellow: "#FBFF00" - brightBlue: "#85BEFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 103.3 - black: 0 - red: 24.6 - green: 58.9 - yellow: 56.2 - blue: 44.9 - magenta: 52.5 - cyan: 77 - white: 105.6 - brightBlack: 0 - brightRed: 35.3 - brightGreen: 93.8 - brightYellow: 99.9 - brightBlue: 63 - brightMagenta: 52.5 - brightCyan: 77 - brightWhite: 105.6 diff --git a/themes/re-eclipse-old-school.yaml b/themes/re-eclipse-old-school.yaml index e23493c4..10b284af 100644 --- a/themes/re-eclipse-old-school.yaml +++ b/themes/re-eclipse-old-school.yaml @@ -8,6 +8,7 @@ source: author: "Cydo" repo: "https://github.com/CydoEntis/reThemes" url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" + formats: null colors: bg: "#212121" fg: "#EEFFFF" diff --git a/themes/re-eclipse.yaml b/themes/re-eclipse.yaml index a0e64737..078966b4 100644 --- a/themes/re-eclipse.yaml +++ b/themes/re-eclipse.yaml @@ -8,6 +8,7 @@ source: author: "Cydo" repo: "https://github.com/CydoEntis/reThemes" url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" + formats: null colors: bg: "#212121" fg: "#EEFFFF" diff --git a/themes/re-vision.yaml b/themes/re-vision.yaml index eff4a0b2..e02cee9d 100644 --- a/themes/re-vision.yaml +++ b/themes/re-vision.yaml @@ -8,6 +8,7 @@ source: author: "Likivik" repo: "https://github.com/Likivik/Re-Vision" url: "https://marketplace.visualstudio.com/items?itemName=Likivik.re-vision" + formats: null colors: bg: "#FCFCFC" fg: "#2C2C2C" diff --git a/themes/react-italic-theme.yaml b/themes/react-italic-theme.yaml deleted file mode 100644 index 3fcdea92..00000000 --- a/themes/react-italic-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "React Italic Theme" -source: - marketplace_id: "barrsan.react-italic-theme-vscode" - version: "1.0.7" - installs: 2653 - rating: 0 - ratings: 0 - author: "Alex Baretsky" - repo: "https://github.com/barrsan/react-italic-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=barrsan.react-italic-theme-vscode" -colors: - bg: "#282C34" - fg: "#F8F8F2" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 264 - pair: null - contrast: - fg: 98.8 - black: 0 - red: 40.2 - green: 81.7 - yellow: 95.3 - blue: 50.4 - magenta: 51.4 - cyan: 80.8 - white: 98.8 - brightBlack: 24.8 - brightRed: 45.6 - brightGreen: 85.8 - brightYellow: 100.3 - brightBlue: 62.9 - brightMagenta: 59.4 - brightCyan: 93.6 - brightWhite: 103.7 diff --git a/themes/react-theme.yaml b/themes/react-theme.yaml index 3aedc491..382a06c1 100644 --- a/themes/react-theme.yaml +++ b/themes/react-theme.yaml @@ -1,15 +1,16 @@ name: "React Theme" source: - marketplace_id: "MamoruDS.react-theme-vscode" - version: "1.4.5" - installs: 3450 - rating: 0 - ratings: 0 - author: "Mamoru" - repo: "https://github.com/MamoruDS/react-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=MamoruDS.react-theme-vscode" + marketplace_id: "mikaelkristiansson87.react-theme-vscode" + version: "2.0.0" + installs: 106458 + rating: 5 + ratings: 4 + author: "mikaelkristiansson" + repo: "https://github.com/mikaelkristiansson/react-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=mikaelkristiansson87.react-theme-vscode" + formats: null colors: - bg: "#23272E" + bg: "#282C34" fg: "#F8F8F2" black: "#21222C" red: "#FF5555" @@ -30,23 +31,23 @@ colors: meta: mode: "dark" accent: "green" - hue: 262 + hue: 264 pair: null contrast: - fg: 99.8 + fg: 98.8 black: 0 - red: 41.2 - green: 82.7 - yellow: 96.3 - blue: 51.4 - magenta: 52.4 - cyan: 81.7 - white: 99.8 - brightBlack: 25.8 - brightRed: 46.6 - brightGreen: 86.8 - brightYellow: 101.3 - brightBlue: 63.9 - brightMagenta: 60.4 - brightCyan: 94.6 - brightWhite: 104.7 + red: 40.2 + green: 81.7 + yellow: 95.3 + blue: 50.4 + magenta: 51.4 + cyan: 80.8 + white: 98.8 + brightBlack: 24.8 + brightRed: 45.6 + brightGreen: 85.8 + brightYellow: 100.3 + brightBlue: 62.9 + brightMagenta: 59.4 + brightCyan: 93.6 + brightWhite: 103.7 diff --git a/themes/rebellion-contrast.yaml b/themes/rebellion-contrast.yaml deleted file mode 100644 index e46318e0..00000000 --- a/themes/rebellion-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "rebellion-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0C0C09" - fg: "#D6C7AB" - black: "#1B1B14" - red: "#BA0E2E" - green: "#FE5F00" - yellow: "#988F2A" - blue: "#8E7547" - magenta: "#FE5F00" - cyan: "#988F2A" - white: "#DED2BC" - brightBlack: "#464635" - brightRed: "#F03E5F" - brightGreen: "#FF9F65" - brightYellow: "#D1C757" - brightBlue: "#BEA77D" - brightMagenta: "#FF9F65" - brightCyan: "#D1C757" - brightWhite: "#F7F5F0" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 73.4 - black: 0 - red: 21.3 - green: 45.2 - yellow: 40.8 - blue: 31.1 - magenta: 45.2 - cyan: 40.8 - white: 79.8 - brightBlack: 10 - brightRed: 37.6 - brightGreen: 63.2 - brightYellow: 70.7 - brightBlue: 55.9 - brightMagenta: 63.2 - brightCyan: 70.7 - brightWhite: 101.1 diff --git a/themes/rebellion-light.yaml b/themes/rebellion-light.yaml deleted file mode 100644 index f228a2c6..00000000 --- a/themes/rebellion-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "rebellion-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#EDE8DE" - fg: "#443A27" - black: "#F6F3EF" - red: "#BA0E2E" - green: "#FE5F00" - yellow: "#988F2A" - blue: "#8E7547" - magenta: "#FE5F00" - cyan: "#988F2A" - white: "#544830" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#FF9F65" - brightYellow: "#D1C757" - brightBlue: "#BEA77D" - brightMagenta: "#FF9F65" - brightCyan: "#D1C757" - brightWhite: "#85714C" -meta: - mode: "light" - accent: "orange" - hue: 85 - pair: null - contrast: - fg: 82.4 - black: 0 - red: 67 - green: 43 - yellow: 47.3 - blue: 57 - magenta: 43 - cyan: 47.3 - white: 77.1 - brightBlack: 12.7 - brightRed: 50.5 - brightGreen: 25.5 - brightYellow: 18.4 - brightBlue: 32.5 - brightMagenta: 25.5 - brightCyan: 18.4 - brightWhite: 59.3 diff --git a/themes/rebellion.yaml b/themes/rebellion.yaml deleted file mode 100644 index 8f115ed3..00000000 --- a/themes/rebellion.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "rebellion" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#23231A" - fg: "#D6C7AB" - black: "#323225" - red: "#BA0E2E" - green: "#FE5F00" - yellow: "#988F2A" - blue: "#8E7547" - magenta: "#FE5F00" - cyan: "#988F2A" - white: "#DED2BC" - brightBlack: "#5E5E45" - brightRed: "#F03E5F" - brightGreen: "#FF9F65" - brightYellow: "#D1C757" - brightBlue: "#BEA77D" - brightMagenta: "#FF9F65" - brightCyan: "#D1C757" - brightWhite: "#F7F5F0" -meta: - mode: "dark" - accent: "orange" - hue: 108 - pair: null - contrast: - fg: 71.1 - black: 0 - red: 19 - green: 42.9 - yellow: 38.5 - blue: 28.8 - magenta: 42.9 - cyan: 38.5 - white: 77.5 - brightBlack: 16.6 - brightRed: 35.3 - brightGreen: 60.9 - brightYellow: 68.5 - brightBlue: 53.6 - brightMagenta: 60.9 - brightCyan: 68.5 - brightWhite: 98.8 diff --git a/themes/recats-classic-dark.yaml b/themes/recats-classic-dark.yaml index 4cd1bcfc..de097c43 100644 --- a/themes/recats-classic-dark.yaml +++ b/themes/recats-classic-dark.yaml @@ -8,6 +8,7 @@ source: author: "senelway" repo: "https://github.com/recats/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=senelway.recats-classic-dark" + formats: null colors: bg: "#20242C" fg: "#DADCDD" diff --git a/themes/recats-nova-dark.yaml b/themes/recats-nova-dark.yaml index 28558689..b385d5f3 100644 --- a/themes/recats-nova-dark.yaml +++ b/themes/recats-nova-dark.yaml @@ -8,6 +8,7 @@ source: author: "senelway" repo: "https://github.com/recats/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=senelway.recats-classic-dark" + formats: null colors: bg: "#14161E" fg: "#F2F4F4" diff --git a/themes/recotheme.yaml b/themes/recotheme.yaml index 24fcc06d..5bbc5071 100644 --- a/themes/recotheme.yaml +++ b/themes/recotheme.yaml @@ -8,6 +8,7 @@ source: author: "reco_luan" repo: "https://github.com/recoluan/vscode-theme-reco" url: "https://marketplace.visualstudio.com/items?itemName=recoluan.vscode-theme-reco" + formats: null colors: bg: "#222225" fg: "#D6D6DD" diff --git a/themes/red-black-white-dark.yaml b/themes/red-black-white-dark.yaml index 1038cc9d..95084bdb 100644 --- a/themes/red-black-white-dark.yaml +++ b/themes/red-black-white-dark.yaml @@ -8,6 +8,7 @@ source: author: "chenzilve" repo: null url: "https://marketplace.visualstudio.com/items?itemName=chenzilve.gundam-rx78-theme" + formats: null colors: bg: "#080C14" fg: "#E0E0E0" diff --git a/themes/red-black-white-light.yaml b/themes/red-black-white-light.yaml index 2ad11171..5bfc1f02 100644 --- a/themes/red-black-white-light.yaml +++ b/themes/red-black-white-light.yaml @@ -8,6 +8,7 @@ source: author: "chenzilve" repo: null url: "https://marketplace.visualstudio.com/items?itemName=chenzilve.gundam-rx78-theme" + formats: null colors: bg: "#FFFFFF" fg: "#212121" diff --git a/themes/red-black-white.yaml b/themes/red-black-white.yaml index fc032b6d..9978dbbd 100644 --- a/themes/red-black-white.yaml +++ b/themes/red-black-white.yaml @@ -8,6 +8,7 @@ source: author: "ckorzon" repo: "https://github.com/ckorzon/VSCode-Red-Black-White-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ckorzon.red-black-white-theme" + formats: null colors: bg: "#000000" fg: "#BFBDB6" diff --git a/themes/red-color-theme.yaml b/themes/red-color-theme.yaml deleted file mode 100644 index d11659a3..00000000 --- a/themes/red-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "red-color-theme" -source: - marketplace_id: "electropol-fr.coloredtheme" - version: "1.3.0" - installs: 4210 - rating: 5 - ratings: 1 - author: "electropol.fr" - repo: "https://github.com/FrankSAURET/colored-theme" - url: "https://marketplace.visualstudio.com/items?itemName=electropol-fr.coloredtheme" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#FF0000" - green: "#00FF22" - yellow: "#FFEE00" - blue: "#40BFFA" - magenta: "#FF00DD" - cyan: "#00EEFF" - white: "#EEEEEE" - brightBlack: "#808080" - brightRed: "#ED7D31" - brightGreen: "#70AD47" - brightYellow: "#FFC000" - brightBlue: "#4472C4" - brightMagenta: "#DAC2F7" - brightCyan: "#5B9BD5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106 - black: 106 - red: 64.1 - green: 17.1 - yellow: 9.6 - blue: 40.5 - magenta: 58 - cyan: 19.9 - white: 7.6 - brightBlack: 66.9 - brightRed: 52.9 - brightGreen: 52.3 - brightYellow: 28.2 - brightBlue: 72.5 - brightMagenta: 27.4 - brightCyan: 56 - brightWhite: 0 diff --git a/themes/red-grey.yaml b/themes/red-grey.yaml index d4be4d0a..bbbeeb02 100644 --- a/themes/red-grey.yaml +++ b/themes/red-grey.yaml @@ -8,6 +8,7 @@ source: author: "kociumba" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kociumba.red-noir-theme" + formats: null colors: bg: "#191919" fg: "#C9C9C9" diff --git a/themes/red-neon.yaml b/themes/red-neon.yaml deleted file mode 100644 index 0dd6319e..00000000 --- a/themes/red-neon.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Red Neon" -source: - marketplace_id: "puszkarek.arasaka-inferno-vscode-theme" - version: "1.2.0" - installs: 268 - author: "Puszkarek" - repo: "https://github.com/Puszkarek/arasaka-inferno-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.arasaka-inferno-vscode-theme" -colors: - bg: "#0E0E17" - fg: "#FF6872" - black: "#0E0E17" - red: "#FF2E6E" - green: "#FF3845" - yellow: "#F0B437" - blue: "#2570D4" - magenta: "#FF00AA" - cyan: "#00FFF7" - white: "#FF3845" - brightBlack: "#030305" - brightRed: "#FF2E6E" - brightGreen: "#FF3845" - brightYellow: "#F0B437" - brightBlue: "#2570D4" - brightMagenta: "#FF00A8" - brightCyan: "#00FFF7" - brightWhite: "#FFACAC" -meta: - mode: "dark" - accent: "red" - hue: 284 - pair: null - contrast: - fg: 48.2 - black: 0 - red: 39.8 - green: 39.9 - yellow: 67.3 - blue: 28.3 - magenta: 40.6 - cyan: 91.4 - white: 39.9 - brightBlack: 0 - brightRed: 39.8 - brightGreen: 39.9 - brightYellow: 67.3 - brightBlue: 28.3 - brightMagenta: 40.5 - brightCyan: 91.4 - brightWhite: 69.4 diff --git a/themes/red-one-dark-pro-dark.yaml b/themes/red-one-dark-pro-dark.yaml deleted file mode 100644 index e9c8d12d..00000000 --- a/themes/red-one-dark-pro-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Red One Dark Pro | Dark" -source: - marketplace_id: "giladgd.red-one-dark-pro" - version: "1.5.0" - installs: 35445 - rating: 5 - ratings: 2 - author: "Gilad S." - repo: "https://gitlab.com/giladgd/red-one-dark-pro" - url: "https://marketplace.visualstudio.com/items?itemName=giladgd.red-one-dark-pro" -colors: - bg: "#0A0E14" - fg: "#B3B1AD" - black: "#01060E" - red: "#EA6C73" - green: "#91B362" - yellow: "#F9AF4F" - blue: "#53BDFA" - magenta: "#FAE994" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#C2D94C" - brightYellow: "#FFB454" - brightBlue: "#59C2FF" - brightMagenta: "#FFEE99" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 258 - pair: null - contrast: - fg: 59.9 - black: 0 - red: 44.7 - green: 54.9 - yellow: 67.3 - blue: 61.3 - magenta: 92.7 - cyan: 78.6 - white: 72.4 - brightBlack: 23.6 - brightRed: 47.3 - brightGreen: 76.6 - brightYellow: 70.3 - brightBlue: 64 - brightMagenta: 95.9 - brightCyan: 81.6 - brightWhite: 107.6 diff --git a/themes/red-vintage.yaml b/themes/red-vintage.yaml deleted file mode 100644 index ff577f2d..00000000 --- a/themes/red-vintage.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Red Vintage" -source: - marketplace_id: "Crnobog.red-vintage-theme" - version: "0.0.2" - installs: 141 - rating: 0 - ratings: 0 - author: "Crnobog" - repo: "https://github.com/crnobog69/red-vintage" - url: "https://marketplace.visualstudio.com/items?itemName=Crnobog.red-vintage-theme" -colors: - bg: "#1C1414" - fg: "#D4C7B9" - black: "#1C1414" - red: "#A13C32" - green: "#8C7C60" - yellow: "#C9A554" - blue: "#5C5088" - magenta: "#976983" - cyan: "#807C99" - white: "#D4C7B9" - brightBlack: "#8A7570" - brightRed: "#D4827C" - brightGreen: "#B0A68D" - brightYellow: "#E6CC94" - brightBlue: "#9590B3" - brightMagenta: "#C498B3" - brightCyan: "#B0ACC9" - brightWhite: "#E9D9C9" -meta: - mode: "dark" - accent: "orange" - hue: 18 - pair: null - contrast: - fg: 72.9 - black: 0 - red: 19.3 - green: 32.9 - yellow: 55.2 - blue: 16.5 - magenta: 29.6 - cyan: 33.5 - white: 72.9 - brightBlack: 30.8 - brightRed: 46 - brightGreen: 53.5 - brightYellow: 76.4 - brightBlue: 43.7 - brightMagenta: 52.5 - brightCyan: 58.2 - brightWhite: 84.1 diff --git a/themes/red.yaml b/themes/red.yaml deleted file mode 100644 index b2a5dcb4..00000000 --- a/themes/red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "red" -source: - marketplace_id: "BrennoFruhauf.ocms-theme" - version: "0.0.1" - installs: 394 - rating: 5 - ratings: 3 - author: "Brenno Fruhauf" - repo: "https://github.com/brennofruhauf/ocms-theme" - url: "https://marketplace.visualstudio.com/items?itemName=BrennoFruhauf.ocms-theme" -colors: - bg: "#131313" - fg: "#EBEBEB" - black: "#FFFFFF" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 94.2 - black: 107.2 - red: 27.1 - green: 53.4 - yellow: 86 - blue: 27.8 - magenta: 30.1 - cyan: 47.9 - white: 90.4 - brightBlack: 22.4 - brightRed: 38.9 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.4 - brightMagenta: 45.7 - brightCyan: 55.8 - brightWhite: 90.4 diff --git a/themes/reddark.yaml b/themes/reddark.yaml index 9799e749..5bff9150 100644 --- a/themes/reddark.yaml +++ b/themes/reddark.yaml @@ -1,4 +1,4 @@ -name: "RedDark" +name: "reddark" source: marketplace_id: "Valentrj.reddark" version: "0.0.4" @@ -8,6 +8,7 @@ source: author: "Valentrj" repo: "https://imgur.com/XD3tFix" url: "https://marketplace.visualstudio.com/items?itemName=Valentrj.reddark" + formats: null colors: bg: "#210000" fg: "#FFFFFF" diff --git a/themes/reddit-dark-based-theme-updated.yaml b/themes/reddit-dark-based-theme-updated.yaml deleted file mode 100644 index e78512df..00000000 --- a/themes/reddit-dark-based-theme-updated.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Reddit Dark Based Theme - Updated" -source: - marketplace_id: "IntoCode.reddit-dark-theme-unofficial" - version: "2.6.0" - installs: 209 - rating: 0 - ratings: 0 - author: "IntoCode" - repo: "https://github.com/Justin-Diner/reddit_dark_based_vscode_theme" - url: "https://marketplace.visualstudio.com/items?itemName=IntoCode.reddit-dark-theme-unofficial" -colors: - bg: "#1A1A1B" - fg: "#D7DADC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E1E1E1" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E1E1E1" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 82.5 - black: 0 - red: 26.4 - green: 52.7 - yellow: 85.3 - blue: 27.1 - magenta: 29.4 - cyan: 47.2 - white: 87.2 - brightBlack: 21.7 - brightRed: 38.2 - brightGreen: 63.2 - brightYellow: 95.3 - brightBlue: 39.7 - brightMagenta: 45 - brightCyan: 55.1 - brightWhite: 87.2 diff --git a/themes/rediohead-theme.yaml b/themes/rediohead-theme.yaml index ccf397e3..155100ec 100644 --- a/themes/rediohead-theme.yaml +++ b/themes/rediohead-theme.yaml @@ -8,6 +8,7 @@ source: author: "ChiliMelon" repo: "https://github.com/chilimelon/rediohead_theme" url: "https://marketplace.visualstudio.com/items?itemName=ChiliMelon.rediohead-theme" + formats: null colors: bg: "#1C1414" fg: "#D9BCBC" diff --git a/themes/redorainbow.yaml b/themes/redorainbow.yaml index 37d80625..aade7a4e 100644 --- a/themes/redorainbow.yaml +++ b/themes/redorainbow.yaml @@ -8,6 +8,7 @@ source: author: "re-do" repo: "https://github.com/re-do/redo-rainbow-theme" url: "https://marketplace.visualstudio.com/items?itemName=re-do.redo-rainbow-theme" + formats: null colors: bg: "#1B1B1B" fg: "#CBCDD2" diff --git a/themes/redpro-dark.yaml b/themes/redpro-dark.yaml index d768f61e..83d4de73 100644 --- a/themes/redpro-dark.yaml +++ b/themes/redpro-dark.yaml @@ -8,6 +8,7 @@ source: author: "Dimitar Dimitrov" repo: "https://github.com/DaGhostman/vs-red-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=DaGhostman.red-pro-theme" + formats: null colors: bg: "#111112" fg: "#ABB2BF" diff --git a/themes/redpro-light.yaml b/themes/redpro-light.yaml index fb14fb6a..48c6cfe1 100644 --- a/themes/redpro-light.yaml +++ b/themes/redpro-light.yaml @@ -8,6 +8,7 @@ source: author: "Dimitar Dimitrov" repo: "https://github.com/DaGhostman/vs-red-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=DaGhostman.red-pro-theme" + formats: null colors: bg: "#EEEEED" fg: "#544D40" diff --git a/themes/redspecter.yaml b/themes/redspecter.yaml index 6fe6c983..a9fd7e44 100644 --- a/themes/redspecter.yaml +++ b/themes/redspecter.yaml @@ -2,12 +2,13 @@ name: "RedSpecter" source: marketplace_id: "AngelicaWisnes.redspecter" version: "0.0.1" - installs: 53 + installs: 54 rating: 0 ratings: 0 author: "AngelicaWisnes" repo: "https://github.com/AngelicaWisnes/redspecter" url: "https://marketplace.visualstudio.com/items?itemName=AngelicaWisnes.redspecter" + formats: null colors: bg: "#240011" fg: "#FF0077" diff --git a/themes/refined-charcoal.yaml b/themes/refined-charcoal.yaml deleted file mode 100644 index d6279e33..00000000 --- a/themes/refined-charcoal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Refined (Charcoal)" -source: - marketplace_id: "itsjonq.dark-refined" - version: "0.0.11" - installs: 10801 - rating: 5 - ratings: 3 - author: "itsjonq" - repo: "https://github.com/itsjonq/dark-refined" - url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" -colors: - bg: "#101010" - fg: "#D6DEEB" - black: "#101010" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ECC48D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 85.8 - black: 0 - red: 39.9 - green: 67.8 - yellow: 74.3 - blue: 56.5 - magenta: 54.3 - cyan: 60.3 - white: 107.4 - brightBlack: 16.2 - brightRed: 39.9 - brightGreen: 67.8 - brightYellow: 94.3 - brightBlue: 56.5 - brightMagenta: 54.3 - brightCyan: 74.6 - brightWhite: 107.4 diff --git a/themes/refined-default.yaml b/themes/refined-default.yaml deleted file mode 100644 index 747f8267..00000000 --- a/themes/refined-default.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Refined (Default)" -source: - marketplace_id: "itsjonq.dark-refined" - version: "0.0.11" - installs: 10801 - rating: 5 - ratings: 3 - author: "itsjonq" - repo: "https://github.com/itsjonq/dark-refined" - url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" -colors: - bg: "#1E1E1E" - fg: "#D6DEEB" - black: "#1E1E1E" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ECC48D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 84.4 - black: 0 - red: 38.5 - green: 66.4 - yellow: 72.9 - blue: 55.1 - magenta: 52.9 - cyan: 58.9 - white: 106 - brightBlack: 14.7 - brightRed: 38.5 - brightGreen: 66.4 - brightYellow: 92.9 - brightBlue: 55.1 - brightMagenta: 52.9 - brightCyan: 73.2 - brightWhite: 106 diff --git a/themes/refined-dracula.yaml b/themes/refined-dracula.yaml deleted file mode 100644 index 4ffe4fdb..00000000 --- a/themes/refined-dracula.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Refined (Dracula)" -source: - marketplace_id: "itsjonq.dark-refined" - version: "0.0.11" - installs: 10801 - rating: 5 - ratings: 3 - author: "itsjonq" - repo: "https://github.com/itsjonq/dark-refined" - url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" -colors: - bg: "#282A36" - fg: "#D6DEEB" - black: "#282A36" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ECC48D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 278 - pair: null - contrast: - fg: 82.3 - black: 0 - red: 36.4 - green: 64.3 - yellow: 70.8 - blue: 53 - magenta: 50.8 - cyan: 56.7 - white: 103.9 - brightBlack: 12.6 - brightRed: 36.4 - brightGreen: 64.3 - brightYellow: 90.8 - brightBlue: 53 - brightMagenta: 50.8 - brightCyan: 71 - brightWhite: 103.9 diff --git a/themes/refined-espresso.yaml b/themes/refined-espresso.yaml deleted file mode 100644 index 0cd89dd3..00000000 --- a/themes/refined-espresso.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Refined (Espresso)" -source: - marketplace_id: "itsjonq.dark-refined" - version: "0.0.11" - installs: 10801 - rating: 5 - ratings: 3 - author: "itsjonq" - repo: "https://github.com/itsjonq/dark-refined" - url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" -colors: - bg: "#1D1813" - fg: "#D6DEEB" - black: "#1D1813" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ECC48D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 67 - pair: null - contrast: - fg: 85 - black: 0 - red: 39.1 - green: 67 - yellow: 73.5 - blue: 55.7 - magenta: 53.6 - cyan: 59.5 - white: 106.7 - brightBlack: 15.4 - brightRed: 39.1 - brightGreen: 67 - brightYellow: 93.5 - brightBlue: 55.7 - brightMagenta: 53.6 - brightCyan: 73.8 - brightWhite: 106.7 diff --git a/themes/refined-matcha.yaml b/themes/refined-matcha.yaml deleted file mode 100644 index c4370170..00000000 --- a/themes/refined-matcha.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Refined (Matcha)" -source: - marketplace_id: "itsjonq.dark-refined" - version: "0.0.11" - installs: 10801 - rating: 5 - ratings: 3 - author: "itsjonq" - repo: "https://github.com/itsjonq/dark-refined" - url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" -colors: - bg: "#191E1E" - fg: "#D6DEEB" - black: "#191E1E" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ECC48D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 84.5 - black: 0 - red: 38.6 - green: 66.5 - yellow: 73 - blue: 55.2 - magenta: 53.1 - cyan: 59 - white: 106.2 - brightBlack: 14.9 - brightRed: 38.6 - brightGreen: 66.5 - brightYellow: 93 - brightBlue: 55.2 - brightMagenta: 53.1 - brightCyan: 73.3 - brightWhite: 106.2 diff --git a/themes/refined-mocha.yaml b/themes/refined-mocha.yaml deleted file mode 100644 index e77ae1a6..00000000 --- a/themes/refined-mocha.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Refined (Mocha)" -source: - marketplace_id: "itsjonq.dark-refined" - version: "0.0.11" - installs: 10801 - rating: 5 - ratings: 3 - author: "itsjonq" - repo: "https://github.com/itsjonq/dark-refined" - url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" -colors: - bg: "#2C251E" - fg: "#D6DEEB" - black: "#2C251E" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ECC48D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 67 - pair: null - contrast: - fg: 83.1 - black: 0 - red: 37.2 - green: 65.1 - yellow: 71.6 - blue: 53.8 - magenta: 51.6 - cyan: 57.6 - white: 104.8 - brightBlack: 13.5 - brightRed: 37.2 - brightGreen: 65.1 - brightYellow: 91.6 - brightBlue: 53.8 - brightMagenta: 51.6 - brightCyan: 71.9 - brightWhite: 104.8 diff --git a/themes/refined-night-owl.yaml b/themes/refined-night-owl.yaml deleted file mode 100644 index 55c3af40..00000000 --- a/themes/refined-night-owl.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Refined (Night Owl)" -source: - marketplace_id: "itsjonq.dark-refined" - version: "0.0.11" - installs: 10801 - rating: 5 - ratings: 3 - author: "itsjonq" - repo: "https://github.com/itsjonq/dark-refined" - url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" -colors: - bg: "#011627" - fg: "#D6DEEB" - black: "#011627" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ECC48D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 244 - pair: null - contrast: - fg: 85.3 - black: 0 - red: 39.4 - green: 67.3 - yellow: 73.8 - blue: 56 - magenta: 53.8 - cyan: 59.8 - white: 107 - brightBlack: 15.7 - brightRed: 39.4 - brightGreen: 67.3 - brightYellow: 93.8 - brightBlue: 56 - brightMagenta: 53.8 - brightCyan: 74.1 - brightWhite: 107 diff --git a/themes/refined-oceanic-next.yaml b/themes/refined-oceanic-next.yaml deleted file mode 100644 index 640b16ad..00000000 --- a/themes/refined-oceanic-next.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Refined (Oceanic Next)" -source: - marketplace_id: "itsjonq.dark-refined" - version: "0.0.11" - installs: 10801 - rating: 5 - ratings: 3 - author: "itsjonq" - repo: "https://github.com/itsjonq/dark-refined" - url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" -colors: - bg: "#1B2B34" - fg: "#D6DEEB" - black: "#1B2B34" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ECC48D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 234 - pair: null - contrast: - fg: 82.6 - black: 0 - red: 36.7 - green: 64.6 - yellow: 71 - blue: 53.3 - magenta: 51.1 - cyan: 57 - white: 104.2 - brightBlack: 12.9 - brightRed: 36.7 - brightGreen: 64.6 - brightYellow: 91.1 - brightBlue: 53.3 - brightMagenta: 51.1 - brightCyan: 71.3 - brightWhite: 104.2 diff --git a/themes/refined-one.yaml b/themes/refined-one.yaml deleted file mode 100644 index 26230ba6..00000000 --- a/themes/refined-one.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Refined (One)" -source: - marketplace_id: "itsjonq.dark-refined" - version: "0.0.11" - installs: 10801 - rating: 5 - ratings: 3 - author: "itsjonq" - repo: "https://github.com/itsjonq/dark-refined" - url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" -colors: - bg: "#282C34" - fg: "#D6DEEB" - black: "#282C34" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ECC48D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 264 - pair: null - contrast: - fg: 82 - black: 0 - red: 36.1 - green: 64.1 - yellow: 70.5 - blue: 52.7 - magenta: 50.6 - cyan: 56.5 - white: 103.7 - brightBlack: 12.4 - brightRed: 36.1 - brightGreen: 64.1 - brightYellow: 90.5 - brightBlue: 52.7 - brightMagenta: 50.6 - brightCyan: 70.8 - brightWhite: 103.7 diff --git a/themes/refined-palenight.yaml b/themes/refined-palenight.yaml deleted file mode 100644 index 8367ff22..00000000 --- a/themes/refined-palenight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Refined (Palenight)" -source: - marketplace_id: "itsjonq.dark-refined" - version: "0.0.11" - installs: 10801 - rating: 5 - ratings: 3 - author: "itsjonq" - repo: "https://github.com/itsjonq/dark-refined" - url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" -colors: - bg: "#292D3E" - fg: "#D6DEEB" - black: "#292D3E" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ECC48D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 274 - pair: null - contrast: - fg: 81.6 - black: 0 - red: 35.7 - green: 63.6 - yellow: 70.1 - blue: 52.3 - magenta: 50.1 - cyan: 56.1 - white: 103.3 - brightBlack: 12 - brightRed: 35.7 - brightGreen: 63.6 - brightYellow: 90.1 - brightBlue: 52.3 - brightMagenta: 50.1 - brightCyan: 70.4 - brightWhite: 103.3 diff --git a/themes/refined-purple.yaml b/themes/refined-purple.yaml deleted file mode 100644 index dbd0cc66..00000000 --- a/themes/refined-purple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Refined (Purple)" -source: - marketplace_id: "itsjonq.dark-refined" - version: "0.0.11" - installs: 10801 - rating: 5 - ratings: 3 - author: "itsjonq" - repo: "https://github.com/itsjonq/dark-refined" - url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" -colors: - bg: "#221E46" - fg: "#D6DEEB" - black: "#221E46" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ECC48D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 285 - pair: null - contrast: - fg: 83.5 - black: 0 - red: 37.6 - green: 65.5 - yellow: 72 - blue: 54.2 - magenta: 52 - cyan: 58 - white: 105.1 - brightBlack: 13.8 - brightRed: 37.6 - brightGreen: 65.5 - brightYellow: 92 - brightBlue: 54.2 - brightMagenta: 52 - brightCyan: 72.2 - brightWhite: 105.1 diff --git a/themes/refined-slate.yaml b/themes/refined-slate.yaml deleted file mode 100644 index 9f2c6aef..00000000 --- a/themes/refined-slate.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Refined (Slate)" -source: - marketplace_id: "itsjonq.dark-refined" - version: "0.0.11" - installs: 10801 - rating: 5 - ratings: 3 - author: "itsjonq" - repo: "https://github.com/itsjonq/dark-refined" - url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" -colors: - bg: "#141820" - fg: "#D6DEEB" - black: "#141820" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ECC48D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 264 - pair: null - contrast: - fg: 85.1 - black: 0 - red: 39.2 - green: 67.1 - yellow: 73.6 - blue: 55.8 - magenta: 53.7 - cyan: 59.6 - white: 106.8 - brightBlack: 15.5 - brightRed: 39.2 - brightGreen: 67.1 - brightYellow: 93.6 - brightBlue: 55.8 - brightMagenta: 53.7 - brightCyan: 73.9 - brightWhite: 106.8 diff --git a/themes/regard.yaml b/themes/regard.yaml index c9b1d96c..a89ffabb 100644 --- a/themes/regard.yaml +++ b/themes/regard.yaml @@ -8,6 +8,7 @@ source: author: "nasmevka" repo: "https://gitlab.com/regard_theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=nasmevka.regard" + formats: null colors: bg: "#1D1F20" fg: "#F4ECF0" diff --git a/themes/registheme.yaml b/themes/registheme.yaml index 64f9d3b3..84b99916 100644 --- a/themes/registheme.yaml +++ b/themes/registheme.yaml @@ -6,6 +6,7 @@ source: author: "raige" repo: "https://github.com/raige38/regisTheme" url: "https://marketplace.visualstudio.com/items?itemName=raige.RegisTheme" + formats: null colors: bg: "#1D1D1D" fg: "#FFF0D1" diff --git a/themes/relaxed-theme-dark-focus.yaml b/themes/relaxed-theme-dark-focus.yaml deleted file mode 100644 index 13116d04..00000000 --- a/themes/relaxed-theme-dark-focus.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Relaxed Theme - Dark Focus" -source: - marketplace_id: "nomad-in-code.relaxed-theme-semantic-focus" - version: "0.0.13" - installs: 140 - rating: 0 - ratings: 0 - author: "nomad-in-code" - repo: "https://github.com/chaluvadis/relax-theme-semantic-focus" - url: "https://marketplace.visualstudio.com/items?itemName=nomad-in-code.relaxed-theme-semantic-focus" -colors: - bg: "#2B2F34" - fg: "#DDE1E6" - black: "#151515" - red: "#C4776F" - green: "#8FAE6B" - yellow: "#D7C27E" - blue: "#85A7BF" - magenta: "#A47AA7" - cyan: "#B9D3EA" - white: "#DDE1E6" - brightBlack: "#8A8F98" - brightRed: "#C4776F" - brightGreen: "#8FAE6B" - brightYellow: "#D7C27E" - brightBlue: "#85A7BF" - brightMagenta: "#A47AA7" - brightCyan: "#B9D3EA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 254 - pair: null - contrast: - fg: 83.4 - black: 0 - red: 35.9 - green: 48.3 - yellow: 65.6 - blue: 47.4 - magenta: 33.9 - cyan: 73.1 - white: 83.4 - brightBlack: 37.1 - brightRed: 35.9 - brightGreen: 48.3 - brightYellow: 65.6 - brightBlue: 47.4 - brightMagenta: 33.9 - brightCyan: 73.1 - brightWhite: 103.1 diff --git a/themes/relaxed-theme-day-light.yaml b/themes/relaxed-theme-day-light.yaml deleted file mode 100644 index 42e0c833..00000000 --- a/themes/relaxed-theme-day-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Relaxed Theme - Day Light" -source: - marketplace_id: "nomad-in-code.relaxed-theme-semantic-focus" - version: "0.0.13" - installs: 140 - rating: 0 - ratings: 0 - author: "nomad-in-code" - repo: "https://github.com/chaluvadis/relax-theme-semantic-focus" - url: "https://marketplace.visualstudio.com/items?itemName=nomad-in-code.relaxed-theme-semantic-focus" -colors: - bg: "#F3F4F6" - fg: "#2A2F37" - black: "#4A4A4A" - red: "#B03E34" - green: "#4B7D53" - yellow: "#8B6F2E" - blue: "#2F6D86" - magenta: "#7A4F7F" - cyan: "#3F5F8F" - white: "#2A2F37" - brightBlack: "#9B9FA5" - brightRed: "#C36E67" - brightGreen: "#789E7E" - brightYellow: "#A89362" - brightBlue: "#6391A4" - brightMagenta: "#9B7B9F" - brightCyan: "#6F87AB" - brightWhite: "#5F6369" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 93.3 - black: 83.7 - red: 71.8 - green: 66.7 - yellow: 66.3 - blue: 72 - magenta: 75.3 - cyan: 75.4 - white: 93.3 - brightBlack: 45.2 - brightRed: 57.2 - brightGreen: 50.1 - brightYellow: 50 - brightBlue: 55.2 - brightMagenta: 57.6 - brightCyan: 57.6 - brightWhite: 73.6 diff --git a/themes/relaxed-theme-night-warm.yaml b/themes/relaxed-theme-night-warm.yaml deleted file mode 100644 index b0c6eaf1..00000000 --- a/themes/relaxed-theme-night-warm.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Relaxed Theme - Night Warm" -source: - marketplace_id: "nomad-in-code.relaxed-theme-semantic-focus" - version: "0.0.13" - installs: 140 - rating: 0 - ratings: 0 - author: "nomad-in-code" - repo: "https://github.com/chaluvadis/relax-theme-semantic-focus" - url: "https://marketplace.visualstudio.com/items?itemName=nomad-in-code.relaxed-theme-semantic-focus" -colors: - bg: "#2F3336" - fg: "#E3E0DC" - black: "#151515" - red: "#CE6F65" - green: "#95AD63" - yellow: "#D6B56F" - blue: "#8FA0A0" - magenta: "#A6789F" - cyan: "#C7D4E2" - white: "#E3E0DC" - brightBlack: "#908A82" - brightRed: "#CE6F65" - brightGreen: "#95AD63" - brightYellow: "#D6B56F" - brightBlue: "#8FA0A0" - brightMagenta: "#A6789F" - brightCyan: "#C7D4E2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82.4 - black: 0 - red: 34.3 - green: 47.4 - yellow: 59 - blue: 43.4 - magenta: 32.3 - cyan: 73.8 - white: 82.4 - brightBlack: 34.3 - brightRed: 34.3 - brightGreen: 47.4 - brightYellow: 59 - brightBlue: 43.4 - brightMagenta: 32.3 - brightCyan: 73.8 - brightWhite: 102.2 diff --git a/themes/relaxed-theme.yaml b/themes/relaxed-theme.yaml deleted file mode 100644 index c4967954..00000000 --- a/themes/relaxed-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Relaxed Theme" -source: - marketplace_id: "mischah.relaxed-theme" - version: "1.0.5" - installs: 31469 - rating: 5 - ratings: 9 - author: "Michael Kühnel" - repo: "https://github.com/Relaxed-Theme/vscode-theme-releaxed" - url: "https://marketplace.visualstudio.com/items?itemName=mischah.relaxed-theme" -colors: - bg: "#2E333B" - fg: "#D9D9D9" - black: "#151515" - red: "#BC5653" - green: "#909D63" - yellow: "#EBC17A" - blue: "#6A8799" - magenta: "#B06698" - cyan: "#C9DFFF" - white: "#D9D9D9" - brightBlack: "#636363" - brightRed: "#BC5653" - brightGreen: "#A0AC77" - brightYellow: "#EBC17A" - brightBlue: "#7EAAC7" - brightMagenta: "#B48EAD" - brightCyan: "#ACBBD0" - brightWhite: "#F7F7F7" -meta: - mode: "dark" - accent: "orange" - hue: 260 - pair: null - contrast: - fg: 77.8 - black: 0 - red: 24.7 - green: 40.4 - yellow: 67.1 - blue: 30.5 - magenta: 28.5 - cyan: 80.4 - white: 77.8 - brightBlack: 16 - brightRed: 24.7 - brightGreen: 48.5 - brightYellow: 67.1 - brightBlue: 47.5 - brightMagenta: 41.7 - brightCyan: 59.2 - brightWhite: 96.8 diff --git a/themes/remedy-bright-tilted.yaml b/themes/remedy-bright-tilted.yaml index 40c44bfb..d53be24f 100644 --- a/themes/remedy-bright-tilted.yaml +++ b/themes/remedy-bright-tilted.yaml @@ -8,6 +8,7 @@ source: author: "Vishwakarma Industries" repo: "https://github.com/vishwakarmaindustries/vscode-remedy" url: "https://marketplace.visualstudio.com/items?itemName=VishwakarmaIndustries0abhishek.vishwakarma-remedy" + formats: null colors: bg: "#FFFFFF" fg: "#282828" diff --git a/themes/remedy-dark-tilted.yaml b/themes/remedy-dark-tilted.yaml index e997b281..4f28fde7 100644 --- a/themes/remedy-dark-tilted.yaml +++ b/themes/remedy-dark-tilted.yaml @@ -8,6 +8,7 @@ source: author: "Vishwakarma Industries" repo: "https://github.com/vishwakarmaindustries/vscode-remedy" url: "https://marketplace.visualstudio.com/items?itemName=VishwakarmaIndustries0abhishek.vishwakarma-remedy" + formats: null colors: bg: "#212E3D" fg: "#BBBBBB" diff --git a/themes/remedyish-bright.yaml b/themes/remedyish-bright.yaml deleted file mode 100644 index b38aa53c..00000000 --- a/themes/remedyish-bright.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Remedyish - Bright" -source: - marketplace_id: "sjsepan.sjsepan-remedyish" - version: "0.0.3" - installs: 115 - author: "sjsepan" - repo: "https://gitlab.com/sjsepan/sjsepan-remedyish" - url: "https://marketplace.visualstudio.com/items?itemName=sjsepan.sjsepan-remedyish" -colors: - bg: "#FEF8EB" - fg: "#563D0E" - black: "#282A2E" - red: "#A54242" - green: "#8C9440" - yellow: "#DE935F" - blue: "#5F819D" - magenta: "#85678F" - cyan: "#5E8D87" - white: "#707880" - brightBlack: "#9CA19E" - brightRed: "#CC6666" - brightGreen: "#B5BD68" - brightYellow: "#D79A22" - brightBlue: "#81A2BE" - brightMagenta: "#B294BB" - brightCyan: "#8ABEB7" - brightWhite: "#535961" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: "Remedyish - Dark" - contrast: - fg: 89.5 - black: 97.2 - red: 75.7 - green: 56 - yellow: 44.7 - blue: 64.2 - magenta: 69.6 - cyan: 60.8 - white: 67.2 - brightBlack: 47.2 - brightRed: 60.3 - brightGreen: 35 - brightYellow: 44.2 - brightBlue: 48 - brightMagenta: 48 - brightCyan: 36.5 - brightWhite: 80.6 diff --git a/themes/remedyish-dark.yaml b/themes/remedyish-dark.yaml deleted file mode 100644 index ac5f10e1..00000000 --- a/themes/remedyish-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Remedyish - Dark" -source: - marketplace_id: "sjsepan.sjsepan-remedyish" - version: "0.0.3" - installs: 115 - author: "sjsepan" - repo: "https://gitlab.com/sjsepan/sjsepan-remedyish" - url: "https://marketplace.visualstudio.com/items?itemName=sjsepan.sjsepan-remedyish" -colors: - bg: "#3F3433" - fg: "#F7E0B4" - black: "#282A2E" - red: "#A54242" - green: "#8C9440" - yellow: "#DE935F" - blue: "#5F819D" - magenta: "#85678F" - cyan: "#5E8D87" - white: "#707880" - brightBlack: "#535961" - brightRed: "#CC6666" - brightGreen: "#B5BD68" - brightYellow: "#F0C674" - brightBlue: "#81A2BE" - brightMagenta: "#B294BB" - brightCyan: "#8ABEB7" - brightWhite: "#EEEFEE" -meta: - mode: "dark" - accent: "orange" - hue: 24 - pair: "Remedyish - Bright" - contrast: - fg: 82.6 - black: 0 - red: 15.3 - green: 34.9 - yellow: 46.5 - blue: 26.6 - magenta: 21.3 - cyan: 30 - white: 23.7 - brightBlack: 10.6 - brightRed: 30.6 - brightGreen: 56.5 - brightYellow: 68.7 - brightBlue: 43 - brightMagenta: 43 - brightCyan: 55 - brightWhite: 90.4 diff --git a/themes/replicant.yaml b/themes/replicant.yaml index 14b9cd41..dcc88cd7 100644 --- a/themes/replicant.yaml +++ b/themes/replicant.yaml @@ -8,6 +8,7 @@ source: author: "Kenzie Bottoms" repo: "https://github.com/kenziebottoms/vscode-theme-replicant" url: "https://marketplace.visualstudio.com/items?itemName=kenziebottoms.replicant" + formats: null colors: bg: "#00234A" fg: "#E7F7FF" diff --git a/themes/replt-it.yaml b/themes/replt-it.yaml deleted file mode 100644 index adaa2b26..00000000 --- a/themes/replt-it.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "replt.it" -source: - marketplace_id: "manigandancodes.repl-it-theme" - version: "0.4.0" - installs: 7622 - rating: 5 - ratings: 2 - author: "Manigandan Saravanan" - repo: "https://github.com/manigandancodes/repl.it-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=manigandancodes.repl-it-theme" -colors: - bg: "#111B31" - fg: "#D6DEEB" - black: "#011627" - red: "#EF5350" - green: "#22DA6E" - yellow: "#ADDB67" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 265 - pair: null - contrast: - fg: 84.6 - black: 0 - red: 38.7 - green: 66.7 - yellow: 74.4 - blue: 55.4 - magenta: 53.2 - cyan: 59.1 - white: 106.3 - brightBlack: 15 - brightRed: 38.7 - brightGreen: 66.7 - brightYellow: 93.1 - brightBlue: 55.4 - brightMagenta: 53.2 - brightCyan: 73.4 - brightWhite: 106.3 diff --git a/themes/repoman-color-theme.yaml b/themes/repoman-color-theme.yaml index 08f1629b..8d8d09df 100644 --- a/themes/repoman-color-theme.yaml +++ b/themes/repoman-color-theme.yaml @@ -6,6 +6,7 @@ source: author: "Kevin Lee Drum" repo: null url: "https://marketplace.visualstudio.com/items?itemName=kevinleedrum.repoman" + formats: null colors: bg: "#141817" fg: "#DEE5E3" diff --git a/themes/resknow-dark.yaml b/themes/resknow-dark.yaml deleted file mode 100644 index 16618f83..00000000 --- a/themes/resknow-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Resknow Dark" -source: - marketplace_id: "Resknow.resknow" - version: "0.0.4" - installs: 21 - rating: 0 - ratings: 0 - author: "Resknow" - repo: "https://github.com/resknow/resknow-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Resknow.resknow" -colors: - bg: "#020617" - fg: "#E2E8F0" - black: "#020617" - red: "#DC3657" - green: "#23D18B" - yellow: "#FFC368" - blue: "#2B7ECA" - magenta: "#AD5DCA" - cyan: "#24C0CF" - white: "#E2E8F0" - brightBlack: "#64748B" - brightRed: "#F4587E" - brightGreen: "#5DE9C1" - brightYellow: "#FEDFCA" - brightBlue: "#EA2E85" - brightMagenta: "#CC75F4" - brightCyan: "#EF5E9C" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "red" - hue: 265 - pair: null - contrast: - fg: 92.4 - black: 0 - red: 32 - green: 64.4 - yellow: 76.5 - blue: 32.6 - magenta: 34.3 - cyan: 59.1 - white: 92.4 - brightBlack: 28.5 - brightRed: 43.3 - brightGreen: 79.5 - brightYellow: 90.7 - brightBlue: 35.8 - brightMagenta: 47.8 - brightCyan: 44.3 - brightWhite: 104.5 diff --git a/themes/ressgame-advance-coding-theme.yaml b/themes/ressgame-advance-coding-theme.yaml index f5e2045b..497d07f2 100644 --- a/themes/ressgame-advance-coding-theme.yaml +++ b/themes/ressgame-advance-coding-theme.yaml @@ -6,6 +6,7 @@ source: author: "RessGame" repo: "https://github.com/RessGame/Advance-Coding-Gold-Theme" url: "https://marketplace.visualstudio.com/items?itemName=RessGame.ressgame-advance-coding-gold-theme" + formats: null colors: bg: "#1D343D" fg: "#FFFFFF" diff --git a/themes/retina.yaml b/themes/retina.yaml index 21d4d887..bbe26365 100644 --- a/themes/retina.yaml +++ b/themes/retina.yaml @@ -2,12 +2,13 @@ name: "Retina" source: marketplace_id: "RafaCMur.retina" version: "0.0.6" - installs: 1785 + installs: 1792 rating: 5 ratings: 4 author: "RafaCMur" repo: "https://github.com/RafaCMur/retina" url: "https://marketplace.visualstudio.com/items?itemName=RafaCMur.retina" + formats: null colors: bg: "#1C1C1C" fg: "#DDDDDD" diff --git a/themes/retro-arcade.yaml b/themes/retro-arcade.yaml deleted file mode 100644 index b8c4a6e3..00000000 --- a/themes/retro-arcade.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retro-Arcade" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#1A0008" - fg: "#F7F8D8" - black: "#1A0008" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#FF145B" - magenta: "#FF145B" - cyan: "#29C3A0" - white: "#F7F8D8" - brightBlack: "#1A0008" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#FF145B" - brightMagenta: "#FF145B" - brightCyan: "#29C3A0" - brightWhite: "#F7F8D8" -meta: - mode: "dark" - accent: "red" - hue: 1 - pair: null - contrast: - fg: 101.4 - black: 0 - red: 10.1 - green: 58.4 - yellow: 52.4 - blue: 38.2 - magenta: 38.2 - cyan: 58.4 - white: 101.4 - brightBlack: 0 - brightRed: 10.1 - brightGreen: 58.4 - brightYellow: 52.4 - brightBlue: 38.2 - brightMagenta: 38.2 - brightCyan: 58.4 - brightWhite: 101.4 diff --git a/themes/retro-cathode-ray-minimal-theme.yaml b/themes/retro-cathode-ray-minimal-theme.yaml index e1bda9c1..7bf97047 100644 --- a/themes/retro-cathode-ray-minimal-theme.yaml +++ b/themes/retro-cathode-ray-minimal-theme.yaml @@ -2,12 +2,13 @@ name: "Retro Cathode-Ray Minimal Theme" source: marketplace_id: "xXBalestraroXx.wired-reality-theme" version: "1.0.0" - installs: 241 + installs: 243 rating: 0 ratings: 0 author: "xXBalestraroXx" repo: "https://github.com/xxbalestraroxx/WiredRealityTheme" url: "https://marketplace.visualstudio.com/items?itemName=xXBalestraroXx.wired-reality-theme" + formats: null colors: bg: "#181D20" fg: "#D0D0D0" diff --git a/themes/retro-green.yaml b/themes/retro-green.yaml deleted file mode 100644 index 25a32e2e..00000000 --- a/themes/retro-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "retro green" -source: - marketplace_id: "LelinPadhan.retro-green-theme-vscode" - version: "1.1.6" - installs: 5480 - rating: 5 - ratings: 4 - author: "Lelin Padhan" - repo: "https://github.com/Lelin07/retro-green-theme" - url: "https://marketplace.visualstudio.com/items?itemName=LelinPadhan.retro-green-theme-vscode" -colors: - bg: "#121610" - fg: "#46D999" - black: "#46D999" - red: "#9BFEDA" - green: "#46D999" - yellow: "#9BFEDA" - blue: "#46D999" - magenta: "#46D999" - cyan: "#46D999" - white: "#46D999" - brightBlack: "#46D999" - brightRed: "#9BFEDA" - brightGreen: "#23D18B" - brightYellow: "#9BFEDA" - brightBlue: "#46D999" - brightMagenta: "#46D999" - brightCyan: "#46D999" - brightWhite: "#46D999" -meta: - mode: "dark" - accent: "teal" - hue: 135 - pair: null - contrast: - fg: 68.7 - black: 68.7 - red: 94.1 - green: 68.7 - yellow: 94.1 - blue: 68.7 - magenta: 68.7 - cyan: 68.7 - white: 68.7 - brightBlack: 68.7 - brightRed: 94.1 - brightGreen: 63.7 - brightYellow: 94.1 - brightBlue: 68.7 - brightMagenta: 68.7 - brightCyan: 68.7 - brightWhite: 68.7 diff --git a/themes/retro-hacker-amber.yaml b/themes/retro-hacker-amber.yaml deleted file mode 100644 index a88e1050..00000000 --- a/themes/retro-hacker-amber.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retro Hacker Amber" -source: - marketplace_id: "devxi.retro-hacker-theme" - version: "1.3.0" - installs: 4283 - rating: 5 - ratings: 2 - author: "devxi" - repo: "https://github.com/elmersh/retro-hacker-theme" - url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" -colors: - bg: "#1A1006" - fg: "#FFB000" - black: "#000000" - red: "#FF0000" - green: "#FF9D00" - yellow: "#E99F17" - blue: "#87CEEB" - magenta: "#DDA0DD" - cyan: "#00CED1" - white: "#FFE0D0" - brightBlack: "#3A2B1A" - brightRed: "#FF4444" - brightGreen: "#FFB000" - brightYellow: "#FFFF00" - brightBlue: "#ADD8E6" - brightMagenta: "#EE82EE" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 67 - pair: null - contrast: - fg: 68 - black: 0 - red: 36.9 - green: 61.4 - yellow: 58 - blue: 70.5 - magenta: 61.4 - cyan: 65 - white: 91.1 - brightBlack: 0 - brightRed: 41 - brightGreen: 68 - brightYellow: 102.1 - brightBlue: 78.1 - brightMagenta: 56.2 - brightCyan: 91.6 - brightWhite: 107.3 diff --git a/themes/retro-hacker-blue.yaml b/themes/retro-hacker-blue.yaml deleted file mode 100644 index ff4a38db..00000000 --- a/themes/retro-hacker-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retro Hacker Blue" -source: - marketplace_id: "devxi.retro-hacker-theme" - version: "1.3.0" - installs: 4283 - rating: 5 - ratings: 2 - author: "devxi" - repo: "https://github.com/elmersh/retro-hacker-theme" - url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" -colors: - bg: "#010111" - fg: "#5EAFFF" - black: "#000000" - red: "#FF5A5A" - green: "#4682B4" - yellow: "#FFD700" - blue: "#3B85D8" - magenta: "#8A5EC0" - cyan: "#00CED1" - white: "#E0EEFF" - brightBlack: "#1A1A1A" - brightRed: "#FF8080" - brightGreen: "#6CB8F0" - brightYellow: "#FFFF00" - brightBlue: "#5EAFFF" - brightMagenta: "#B07CFF" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 272 - pair: null - contrast: - fg: 56.5 - black: 0 - red: 45.3 - green: 33.6 - yellow: 84.2 - blue: 36.5 - magenta: 29.1 - cyan: 65.5 - white: 95.7 - brightBlack: 0 - brightRed: 54.7 - brightGreen: 60.1 - brightYellow: 102.7 - brightBlue: 56.5 - brightMagenta: 46.3 - brightCyan: 92.1 - brightWhite: 107.8 diff --git a/themes/retro-hacker-green-subtle.yaml b/themes/retro-hacker-green-subtle.yaml deleted file mode 100644 index 6d68d83b..00000000 --- a/themes/retro-hacker-green-subtle.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retro Hacker Green - Subtle" -source: - marketplace_id: "devxi.retro-hacker-theme" - version: "1.3.0" - installs: 4283 - rating: 5 - ratings: 2 - author: "devxi" - repo: "https://github.com/elmersh/retro-hacker-theme" - url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" -colors: - bg: "#000000" - fg: "#00FF41" - black: "#000000" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFD700" - blue: "#7FFF00" - magenta: "#AAFF00" - cyan: "#7FFF00" - white: "#CCCCCC" - brightBlack: "#333333" - brightRed: "#FF3333" - brightGreen: "#00FF41" - brightYellow: "#FFFF00" - brightBlue: "#AAFF00" - brightMagenta: "#FFD700" - brightCyan: "#AAFF00" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 86.7 - black: 0 - red: 37.5 - green: 86.5 - yellow: 84.3 - blue: 89.7 - magenta: 92.8 - cyan: 89.7 - white: 75.7 - brightBlack: 0 - brightRed: 39.6 - brightGreen: 86.7 - brightYellow: 102.7 - brightBlue: 92.8 - brightMagenta: 84.3 - brightCyan: 92.8 - brightWhite: 107.9 diff --git a/themes/retro-hacker-green.yaml b/themes/retro-hacker-green.yaml deleted file mode 100644 index fde1d2c6..00000000 --- a/themes/retro-hacker-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retro Hacker Green" -source: - marketplace_id: "devxi.retro-hacker-theme" - version: "1.3.0" - installs: 4283 - rating: 5 - ratings: 2 - author: "devxi" - repo: "https://github.com/elmersh/retro-hacker-theme" - url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" -colors: - bg: "#000100" - fg: "#FFD700" - black: "#000000" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFD700" - blue: "#66FF66" - magenta: "#AAFF00" - cyan: "#5AFF31" - white: "#E0FFE0" - brightBlack: "#1A1A1A" - brightRed: "#FF4444" - brightGreen: "#00FF00" - brightYellow: "#FFFF00" - brightBlue: "#AAFF00" - brightMagenta: "#FFD700" - brightCyan: "#AEEE00" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 142 - pair: null - contrast: - fg: 84.3 - black: 0 - red: 37.5 - green: 86.5 - yellow: 84.3 - blue: 89 - magenta: 92.8 - cyan: 88 - white: 102.4 - brightBlack: 0 - brightRed: 41.6 - brightGreen: 86.5 - brightYellow: 102.7 - brightBlue: 92.8 - brightMagenta: 84.3 - brightCyan: 84.5 - brightWhite: 107.9 diff --git a/themes/retro-hacker-magenta.yaml b/themes/retro-hacker-magenta.yaml deleted file mode 100644 index 30589d7b..00000000 --- a/themes/retro-hacker-magenta.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retro Hacker Magenta" -source: - marketplace_id: "devxi.retro-hacker-theme" - version: "1.3.0" - installs: 4283 - rating: 5 - ratings: 2 - author: "devxi" - repo: "https://github.com/elmersh/retro-hacker-theme" - url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" -colors: - bg: "#000000" - fg: "#FF00FF" - black: "#000000" - red: "#FF0000" - green: "#FF00FF" - yellow: "#FF69B4" - blue: "#FF1493" - magenta: "#FF69B4" - cyan: "#FF1493" - white: "#CCCCCC" - brightBlack: "#333333" - brightRed: "#FF3333" - brightGreen: "#FF00FF" - brightYellow: "#FFAADD" - brightBlue: "#FF69B4" - brightMagenta: "#FFAADD" - brightCyan: "#FF69B4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 46.2 - black: 0 - red: 37.5 - green: 46.2 - yellow: 51.1 - blue: 40.1 - magenta: 51.1 - cyan: 40.1 - white: 75.7 - brightBlack: 0 - brightRed: 39.6 - brightGreen: 46.2 - brightYellow: 71.2 - brightBlue: 51.1 - brightMagenta: 71.2 - brightCyan: 51.1 - brightWhite: 107.9 diff --git a/themes/retro-keyboard-dark.yaml b/themes/retro-keyboard-dark.yaml deleted file mode 100644 index 7fb3f7ba..00000000 --- a/themes/retro-keyboard-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retro Keyboard Dark" -source: - marketplace_id: "nicolasmengual.retro-keyboard-theme" - version: "1.1.2" - installs: 64 - rating: 5 - ratings: 2 - author: "Nicolás Mengual" - repo: "https://github.com/nmengual/retro-keyboard-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nicolasmengual.retro-keyboard-theme" -colors: - bg: "#2A2520" - fg: "#EDE4D6" - black: "#2A2520" - red: "#E06060" - green: "#8BBF9C" - yellow: "#E8C060" - blue: "#8AAEC4" - magenta: "#B89ED6" - cyan: "#88CCC0" - white: "#EDE4D6" - brightBlack: "#8A7E6E" - brightRed: "#F07878" - brightGreen: "#A8D4B4" - brightYellow: "#F0D478" - brightBlue: "#A8C8DC" - brightMagenta: "#D0B8E8" - brightCyan: "#A0DCD4" - brightWhite: "#F5F0E8" -meta: - mode: "dark" - accent: "orange" - hue: 67 - pair: "Retro Keyboard Light" - contrast: - fg: 88 - black: 0 - red: 36.8 - green: 58.3 - yellow: 68.5 - blue: 52.7 - magenta: 52.5 - cyan: 65.2 - white: 88 - brightBlack: 31.5 - brightRed: 46.3 - brightGreen: 71.1 - brightYellow: 78.5 - brightBlue: 67.5 - brightMagenta: 66.4 - brightCyan: 75.4 - brightWhite: 95.3 diff --git a/themes/retro-keyboard-light.yaml b/themes/retro-keyboard-light.yaml deleted file mode 100644 index a65a22d5..00000000 --- a/themes/retro-keyboard-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retro Keyboard Light" -source: - marketplace_id: "nicolasmengual.retro-keyboard-theme" - version: "1.1.2" - installs: 64 - rating: 5 - ratings: 2 - author: "Nicolás Mengual" - repo: "https://github.com/nmengual/retro-keyboard-theme" - url: "https://marketplace.visualstudio.com/items?itemName=nicolasmengual.retro-keyboard-theme" -colors: - bg: "#F5F0E8" - fg: "#3D3529" - black: "#3D3529" - red: "#C04040" - green: "#3E8A5E" - yellow: "#8A6A10" - blue: "#3E7A94" - magenta: "#7E5EAA" - cyan: "#3A8A80" - white: "#EDE4D6" - brightBlack: "#7A6E5E" - brightRed: "#D94B4B" - brightGreen: "#5E9E74" - brightYellow: "#A87A18" - brightBlue: "#5E8EA4" - brightMagenta: "#9B7BBE" - brightCyan: "#5A9A90" - brightWhite: "#F5F0E8" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Retro Keyboard Dark" - contrast: - fg: 89 - black: 89 - red: 66.1 - green: 60.1 - yellow: 66.2 - blue: 64.2 - magenta: 66.8 - cyan: 59.3 - white: 0 - brightBlack: 65.8 - brightRed: 59 - brightGreen: 50.1 - brightYellow: 57.1 - brightBlue: 54.6 - brightMagenta: 54.1 - brightCyan: 51.1 - brightWhite: 0 diff --git a/themes/retro-pastel-color-theme.yaml b/themes/retro-pastel-color-theme.yaml index 8f1fefb1..2d5cd392 100644 --- a/themes/retro-pastel-color-theme.yaml +++ b/themes/retro-pastel-color-theme.yaml @@ -2,12 +2,13 @@ name: "Retro Pastel Color Theme" source: marketplace_id: "klyap.retro-pastel-color-theme" version: "0.0.3" - installs: 7663 + installs: 7665 rating: 5 ratings: 1 author: "klyap" repo: "https://github.com/klyap/vscode-retro-pastel-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=klyap.retro-pastel-color-theme" + formats: null colors: bg: "#416D60" fg: "#FFB5B5" diff --git a/themes/retro-theme.yaml b/themes/retro-theme.yaml index 55eae5ec..8f6d8ba8 100644 --- a/themes/retro-theme.yaml +++ b/themes/retro-theme.yaml @@ -1,49 +1,53 @@ -name: "retro theme" +name: "Retro Theme" source: - marketplace_id: "mssxmt.vintage-story-theme" - version: "0.1.2" - installs: 10 - author: "mssxmt" - repo: "https://github.com/mssxmt/vintage-story-theme" - url: "https://marketplace.visualstudio.com/items?itemName=mssxmt.vintage-story-theme" + marketplace_id: "RylanReese.retro-theme" + version: "0.4.0" + installs: 1571 + rating: 5 + ratings: 2 + author: "Rylan Reese" + repo: "https://github.com/RAC11/retro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RylanReese.retro-theme" + formats: null colors: - bg: "#0C5071" - fg: "#D4D4D4" + bg: "#1C1D46" + fg: "#FFFFFF" black: "#000000" red: "#CD3131" green: "#0DBC79" - yellow: "#E5E510" + yellow: "#FFFF1B" blue: "#2472C8" magenta: "#BC3FBC" - cyan: "#00CDFF" - white: "#E5E5E5" + cyan: "#11A8CD" + white: "#D7D7D7" brightBlack: "#666666" brightRed: "#F14C4C" brightGreen: "#23D18B" brightYellow: "#F5F543" - brightBlue: "#1383FF" + brightBlue: "#3B8EEA" brightMagenta: "#D670D6" brightCyan: "#29B8DB" brightWhite: "#E5E5E5" meta: mode: "dark" accent: "pink" - hue: 236 + hue: 279 + pair: null contrast: - fg: 66.7 - black: 14.4 - red: 13.9 - green: 40.2 - yellow: 72.8 - blue: 14.6 - magenta: 17 - cyan: 53.9 - white: 77.2 - brightBlack: 9.2 - brightRed: 25.8 - brightGreen: 50.7 - brightYellow: 82.8 - brightBlue: 24.3 - brightMagenta: 32.6 - brightCyan: 42.6 - brightWhite: 77.2 + fg: 105.4 + black: 0 + red: 25.2 + green: 51.5 + yellow: 100.2 + blue: 25.9 + magenta: 28.3 + cyan: 46.1 + white: 79.8 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/retro-vibes.yaml b/themes/retro-vibes.yaml index e714a24f..fb0d9227 100644 --- a/themes/retro-vibes.yaml +++ b/themes/retro-vibes.yaml @@ -2,12 +2,13 @@ name: "Retro Vibes" source: marketplace_id: "Babadzhanov.retro-vibes" version: "1.0.3" - installs: 10462 + installs: 10463 rating: 0 ratings: 0 author: "Simeon Babadzhanov" repo: "https://github.com/Babadzhanov/retro-vibes" url: "https://marketplace.visualstudio.com/items?itemName=Babadzhanov.retro-vibes" + formats: null colors: bg: "#1A202D" fg: "#C4CCE4" diff --git a/themes/retro.yaml b/themes/retro.yaml deleted file mode 100644 index 2f61e42e..00000000 --- a/themes/retro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retro" -source: - marketplace_id: "RylanReese.retro-theme" - version: "0.4.0" - installs: 1570 - rating: 5 - ratings: 2 - author: "Rylan Reese" - repo: "https://github.com/RAC11/retro-theme" - url: "https://marketplace.visualstudio.com/items?itemName=RylanReese.retro-theme" -colors: - bg: "#1C1D46" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#FFFF1B" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#D7D7D7" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 279 - pair: null - contrast: - fg: 105.4 - black: 0 - red: 25.2 - green: 51.5 - yellow: 100.2 - blue: 25.9 - magenta: 28.3 - cyan: 46.1 - white: 79.8 - brightBlack: 20.6 - brightRed: 37.1 - brightGreen: 62 - brightYellow: 94.1 - brightBlue: 38.5 - brightMagenta: 43.9 - brightCyan: 53.9 - brightWhite: 88.5 diff --git a/themes/retrocoders.yaml b/themes/retrocoders.yaml deleted file mode 100644 index ff8864d8..00000000 --- a/themes/retrocoders.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retrocoders" -source: - marketplace_id: "adanyc.retrocoders" - version: "1.0.11" - installs: 352 - rating: 4.67 - ratings: 3 - author: "adanyc" - repo: "https://github.com/adanyc/vscode-retrocoders-theme" - url: "https://marketplace.visualstudio.com/items?itemName=adanyc.retrocoders" -colors: - bg: "#1D2833" - fg: "#CFD1D1" - black: "#1D2833" - red: "#FF695D" - green: "#B9E678" - yellow: "#FFD580" - blue: "#5FCBC3" - magenta: "#D689E3" - cyan: "#85DDA2" - white: "#F7F5E9" - brightBlack: "#596D84" - brightRed: "#FF695D" - brightGreen: "#B9E678" - brightYellow: "#FFD580" - brightBlue: "#5FCBC3" - brightMagenta: "#D689E3" - brightCyan: "#85DDA2" - brightWhite: "#F7F5E9" -meta: - mode: "dark" - accent: "orange" - hue: 249 - pair: null - contrast: - fg: 75.1 - black: 0 - red: 45.1 - green: 79.4 - yellow: 81.2 - blue: 62.1 - magenta: 50.6 - cyan: 71.6 - white: 97.8 - brightBlack: 22 - brightRed: 45.1 - brightGreen: 79.4 - brightYellow: 81.2 - brightBlue: 62.1 - brightMagenta: 50.6 - brightCyan: 71.6 - brightWhite: 97.8 diff --git a/themes/retronica-amber-terminal.yaml b/themes/retronica-amber-terminal.yaml deleted file mode 100644 index e2fbb016..00000000 --- a/themes/retronica-amber-terminal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retronica Amber Terminal" -source: - marketplace_id: "adham.retronica" - version: "1.0.0" - installs: 183 - rating: 5 - ratings: 1 - author: "Adham" - repo: "https://github.com/adham-dev/retronica" - url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" -colors: - bg: "#0F0E0A" - fg: "#D8C8A8" - black: "#1A1810" - red: "#D88060" - green: "#A8C080" - yellow: "#D8B060" - blue: "#A8A080" - magenta: "#C8A080" - cyan: "#B8C090" - white: "#D8C8A8" - brightBlack: "#5A5040" - brightRed: "#E8A080" - brightGreen: "#C0D8A0" - brightYellow: "#E8C880" - brightBlue: "#C0B8A0" - brightMagenta: "#E0C0A0" - brightCyan: "#D0D8B0" - brightWhite: "#F0E8D0" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 73.9 - black: 0 - red: 46.1 - green: 63.4 - yellow: 62.4 - blue: 50.4 - magenta: 54.7 - cyan: 65.6 - white: 73.9 - brightBlack: 14.4 - brightRed: 59.8 - brightGreen: 77.6 - brightYellow: 75.1 - brightBlue: 63.8 - brightMagenta: 71.5 - brightCyan: 80 - brightWhite: 92.7 diff --git a/themes/retronica-neon-nights.yaml b/themes/retronica-neon-nights.yaml deleted file mode 100644 index 11a727ea..00000000 --- a/themes/retronica-neon-nights.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retronica Neon Nights" -source: - marketplace_id: "adham.retronica" - version: "1.0.0" - installs: 183 - rating: 5 - ratings: 1 - author: "Adham" - repo: "https://github.com/adham-dev/retronica" - url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" -colors: - bg: "#1A1525" - fg: "#D4C5E8" - black: "#2A2440" - red: "#D87A7A" - green: "#8AC0A0" - yellow: "#D8B87A" - blue: "#7A9AD8" - magenta: "#C97AA0" - cyan: "#7AC0C8" - white: "#D4C5E8" - brightBlack: "#5A4A7A" - brightRed: "#E89A9A" - brightGreen: "#A0D8B8" - brightYellow: "#E8D09A" - brightBlue: "#9AB8E8" - brightMagenta: "#E09AC0" - brightCyan: "#9AD8E0" - brightWhite: "#F0E8F8" -meta: - mode: "dark" - accent: "orange" - hue: 298 - pair: null - contrast: - fg: 74 - black: 0 - red: 44.2 - green: 60.8 - yellow: 65.3 - blue: 46.6 - magenta: 42.9 - cyan: 61.2 - white: 74 - brightBlack: 14 - brightRed: 57.8 - brightGreen: 74.3 - brightYellow: 78.4 - brightBlue: 62.1 - brightMagenta: 57.9 - brightCyan: 75.5 - brightWhite: 93.7 diff --git a/themes/retronica-pastel-arcade.yaml b/themes/retronica-pastel-arcade.yaml deleted file mode 100644 index bfa55073..00000000 --- a/themes/retronica-pastel-arcade.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retronica Pastel Arcade" -source: - marketplace_id: "adham.retronica" - version: "1.0.0" - installs: 183 - rating: 5 - ratings: 1 - author: "Adham" - repo: "https://github.com/adham-dev/retronica" - url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" -colors: - bg: "#F8F5F0" - fg: "#4A4555" - black: "#4A4555" - red: "#C06060" - green: "#609070" - yellow: "#B08040" - blue: "#5080A0" - magenta: "#A06080" - cyan: "#508090" - white: "#F0EBE5" - brightBlack: "#7A7080" - brightRed: "#D08080" - brightGreen: "#70A080" - brightYellow: "#C09050" - brightBlue: "#6090B0" - brightMagenta: "#B07090" - brightCyan: "#6090A0" - brightWhite: "#F8F5F0" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 85.5 - black: 85.5 - red: 62.2 - green: 58.4 - yellow: 56.6 - blue: 63.5 - magenta: 66.6 - cyan: 64.2 - white: 0 - brightBlack: 66.9 - brightRed: 50.2 - brightGreen: 50.7 - brightYellow: 48.8 - brightBlue: 56 - brightMagenta: 59.3 - brightCyan: 56.7 - brightWhite: 0 diff --git a/themes/retronica-phosphor-green.yaml b/themes/retronica-phosphor-green.yaml deleted file mode 100644 index f406f561..00000000 --- a/themes/retronica-phosphor-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retronica Phosphor Green" -source: - marketplace_id: "adham.retronica" - version: "1.0.0" - installs: 183 - rating: 5 - ratings: 1 - author: "Adham" - repo: "https://github.com/adham-dev/retronica" - url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" -colors: - bg: "#0A0F0A" - fg: "#A8D8A8" - black: "#101810" - red: "#D08080" - green: "#80D080" - yellow: "#C0C080" - blue: "#80A0A0" - magenta: "#A090A0" - cyan: "#80C0B0" - white: "#A8D8A8" - brightBlack: "#406040" - brightRed: "#E0A0A0" - brightGreen: "#A0F0A0" - brightYellow: "#D8D8A0" - brightBlue: "#A0C0C0" - brightMagenta: "#C0B0C0" - brightCyan: "#A0E0D0" - brightWhite: "#C8F8C8" -meta: - mode: "dark" - accent: "green" - hue: 145 - pair: null - contrast: - fg: 75.3 - black: 0 - red: 45.5 - green: 67.1 - yellow: 66.2 - blue: 47.4 - magenta: 44.7 - cyan: 61.3 - white: 75.3 - brightBlack: 17.2 - brightRed: 59.5 - brightGreen: 85.9 - brightYellow: 80.6 - brightBlue: 64.8 - brightMagenta: 61.9 - brightCyan: 79.8 - brightWhite: 95 diff --git a/themes/retronica-vintage-computing.yaml b/themes/retronica-vintage-computing.yaml deleted file mode 100644 index aec1e22b..00000000 --- a/themes/retronica-vintage-computing.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Retronica Vintage Computing" -source: - marketplace_id: "adham.retronica" - version: "1.0.0" - installs: 183 - rating: 5 - ratings: 1 - author: "Adham" - repo: "https://github.com/adham-dev/retronica" - url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" -colors: - bg: "#F5F0E8" - fg: "#3A4048" - black: "#3A4048" - red: "#B06060" - green: "#508060" - yellow: "#A07840" - blue: "#507088" - magenta: "#886878" - cyan: "#507878" - white: "#EDE8E0" - brightBlack: "#686860" - brightRed: "#C07070" - brightGreen: "#609070" - brightYellow: "#B08850" - brightBlue: "#608098" - brightMagenta: "#987888" - brightCyan: "#608888" - brightWhite: "#F5F0E8" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 85.7 - black: 85.7 - red: 62.2 - green: 63 - yellow: 58.5 - blue: 67.3 - magenta: 65.2 - cyan: 65.2 - white: 0 - brightBlack: 69.5 - brightRed: 55 - brightGreen: 55.6 - brightYellow: 51 - brightBlue: 60.1 - brightMagenta: 57.8 - brightCyan: 57.8 - brightWhite: 0 diff --git a/themes/retropunk.yaml b/themes/retropunk.yaml index 01911b83..b3ac4bc8 100644 --- a/themes/retropunk.yaml +++ b/themes/retropunk.yaml @@ -8,6 +8,7 @@ source: author: "TrXVIISGiL" repo: "https://github.com/UponCr0ws/ReTroPuNK" url: "https://marketplace.visualstudio.com/items?itemName=TrXVIISGiL.retropunk-trx" + formats: null colors: bg: "#0D012C" fg: "#FF2F87" diff --git a/themes/retroscope.yaml b/themes/retroscope.yaml index 2a8cccc4..248f10d3 100644 --- a/themes/retroscope.yaml +++ b/themes/retroscope.yaml @@ -1,4 +1,4 @@ -name: "Retroscope" +name: "retroscope" source: marketplace_id: "dvsu.retroscope" version: "0.2.4" @@ -8,6 +8,7 @@ source: author: "David Su" repo: "https://github.com/dvsu/retroscope" url: "https://marketplace.visualstudio.com/items?itemName=dvsu.retroscope" + formats: null colors: bg: "#1D1B19" fg: "#C9B19F" diff --git a/themes/retrox.yaml b/themes/retrox.yaml index 817fb1fe..01a30e35 100644 --- a/themes/retrox.yaml +++ b/themes/retrox.yaml @@ -1,4 +1,4 @@ -name: "Retrox" +name: "retrox" source: marketplace_id: "dalloriam.retrox" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "William Dussault" repo: "https://github.com/dalloriam/retrox" url: "https://marketplace.visualstudio.com/items?itemName=dalloriam.retrox" + formats: null colors: bg: "#0E1418" fg: "#D2D1D4" diff --git a/themes/reui-ii-dark.yaml b/themes/reui-ii-dark.yaml deleted file mode 100644 index 8404dc35..00000000 --- a/themes/reui-ii-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ReUI II Dark" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#1E232E" - fg: "#FFFFFF" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 266 - pair: null - contrast: - fg: 105.3 - black: 0 - red: 41.8 - green: 83.3 - yellow: 97 - blue: 52.1 - magenta: 53 - cyan: 82.4 - white: 100.4 - brightBlack: 26.5 - brightRed: 47.3 - brightGreen: 87.5 - brightYellow: 102 - brightBlue: 64.5 - brightMagenta: 61 - brightCyan: 95.2 - brightWhite: 105.3 diff --git a/themes/reui-mirage.yaml b/themes/reui-mirage.yaml deleted file mode 100644 index f2f7cdeb..00000000 --- a/themes/reui-mirage.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ReUI Mirage" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#18273A" - fg: "#FFFFFF" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 255 - pair: null - contrast: - fg: 104.7 - black: 0 - red: 41.2 - green: 82.7 - yellow: 96.4 - blue: 51.5 - magenta: 52.4 - cyan: 81.8 - white: 99.8 - brightBlack: 25.9 - brightRed: 46.7 - brightGreen: 86.9 - brightYellow: 101.4 - brightBlue: 63.9 - brightMagenta: 60.4 - brightCyan: 94.6 - brightWhite: 104.7 diff --git a/themes/reui.yaml b/themes/reui.yaml deleted file mode 100644 index 80661ad7..00000000 --- a/themes/reui.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ReUI" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#282C34" - fg: "#FFFFFF" - black: "#21222C" - red: "#FF5555" - green: "#50FA7B" - yellow: "#F1FA8C" - blue: "#BD93F9" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#F8F8F2" - brightBlack: "#6272A4" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFFFA5" - brightBlue: "#D6ACFF" - brightMagenta: "#FF92DF" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 264 - pair: null - contrast: - fg: 103.7 - black: 0 - red: 40.2 - green: 81.7 - yellow: 95.3 - blue: 50.4 - magenta: 51.4 - cyan: 80.8 - white: 98.8 - brightBlack: 24.8 - brightRed: 45.6 - brightGreen: 85.8 - brightYellow: 100.3 - brightBlue: 62.9 - brightMagenta: 59.4 - brightCyan: 93.6 - brightWhite: 103.7 diff --git a/themes/revelation-contrast.yaml b/themes/revelation-contrast.yaml deleted file mode 100644 index daa02a69..00000000 --- a/themes/revelation-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "revelation-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0C0B0B" - fg: "#DEDEDE" - black: "#191717" - red: "#BA0E2E" - green: "#4E5D84" - yellow: "#617FA0" - blue: "#95C2E8" - magenta: "#C2DCF2" - cyan: "#FFBB29" - white: "#EBEBEB" - brightBlack: "#413C3C" - brightRed: "#F03E5F" - brightGreen: "#8391B5" - brightYellow: "#A1B3C6" - brightBlue: "#E9F2FA" - brightMagenta: "#FFFFFF" - brightCyan: "#FFDB8F" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 86.5 - black: 0 - red: 21.3 - green: 19.5 - yellow: 32.9 - blue: 66.7 - magenta: 83.1 - cyan: 72.7 - white: 94.6 - brightBlack: 7.3 - brightRed: 37.6 - brightGreen: 43.1 - brightYellow: 59.9 - brightBlue: 98.3 - brightMagenta: 107.7 - brightCyan: 87.2 - brightWhite: 107.7 diff --git a/themes/revelation-light.yaml b/themes/revelation-light.yaml deleted file mode 100644 index ba4002da..00000000 --- a/themes/revelation-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "revelation-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#555555" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#4E5D84" - yellow: "#617FA0" - blue: "#95C2E8" - magenta: "#91ABC1" - cyan: "#FFBB29" - white: "#626262" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#8391B5" - brightYellow: "#A1B3C6" - brightBlue: "#E9F2FA" - brightMagenta: "#D2DDE6" - brightCyan: "#FFDB8F" - brightWhite: "#888888" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 85.9 - black: 0 - red: 80.3 - green: 82.3 - yellow: 68.6 - blue: 35.6 - magenta: 47 - cyan: 29.9 - white: 80.5 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 58.5 - brightYellow: 42.2 - brightBlue: 0 - brightMagenta: 18.5 - brightCyan: 16.2 - brightWhite: 63.1 diff --git a/themes/revelation.yaml b/themes/revelation.yaml deleted file mode 100644 index 6a61c25e..00000000 --- a/themes/revelation.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "revelation" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2E2C2B" - fg: "#DEDEDE" - black: "#3B3937" - red: "#BA0E2E" - green: "#4E5D84" - yellow: "#617FA0" - blue: "#95C2E8" - magenta: "#C2DCF2" - cyan: "#FFBB29" - white: "#EBEBEB" - brightBlack: "#635E5C" - brightRed: "#F03E5F" - brightGreen: "#8391B5" - brightYellow: "#A1B3C6" - brightBlue: "#E9F2FA" - brightMagenta: "#FFFFFF" - brightCyan: "#FFDB8F" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82.3 - black: 0 - red: 17.2 - green: 15.3 - yellow: 28.8 - blue: 62.6 - magenta: 79 - cyan: 68.6 - white: 90.5 - brightBlack: 15.8 - brightRed: 33.5 - brightGreen: 38.9 - brightYellow: 55.7 - brightBlue: 94.2 - brightMagenta: 103.6 - brightCyan: 83.1 - brightWhite: 103.6 diff --git a/themes/revisual-assist-color-theme.yaml b/themes/revisual-assist-color-theme.yaml deleted file mode 100644 index aa4ab6e6..00000000 --- a/themes/revisual-assist-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "reVisual_Assist-color-theme" -source: - marketplace_id: "Cydo.re-theme" - version: "3.0.0" - installs: 696 - rating: 0 - ratings: 0 - author: "Cydo" - repo: "https://github.com/CydoEntis/reThemes" - url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" -colors: - bg: "#1E1E1E" - fg: "#D4D4D4" - black: "#1E1E1E" - red: "#CC241D" - green: "#87AD72" - yellow: "#CEA800" - blue: "#569CD6" - magenta: "#D8A0DF" - cyan: "#4CE2E2" - white: "#EEEEEE" - brightBlack: "#131313" - brightRed: "#FB4934" - brightGreen: "#B5CEA8" - brightYellow: "#FFD700" - brightBlue: "#7ABCF3" - brightMagenta: "#F0C2F7" - brightCyan: "#9FFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.7 - black: 0 - red: 24.4 - green: 50.3 - yellow: 55.6 - blue: 44.2 - magenta: 59.5 - cyan: 75.2 - white: 94.9 - brightBlack: 0 - brightRed: 39.3 - brightGreen: 70.6 - brightYellow: 82.4 - brightBlue: 61 - brightMagenta: 77 - brightCyan: 95.5 - brightWhite: 106 diff --git a/themes/revisualassist.yaml b/themes/revisualassist.yaml index 771fb1ca..9a330ca4 100644 --- a/themes/revisualassist.yaml +++ b/themes/revisualassist.yaml @@ -8,6 +8,7 @@ source: author: "PainE" repo: "https://github.com/lua9520/ReVisualAssist-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=PainE.revisualassist" + formats: null colors: bg: "#272727" fg: "#D4D4D4" diff --git a/themes/rextax-bright-fork.yaml b/themes/rextax-bright-fork.yaml deleted file mode 100644 index 8f70b11a..00000000 --- a/themes/rextax-bright-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "rextax bright! - Fork" -source: - marketplace_id: "xynny.prowhite-theme" - version: "0.0.1" - installs: 1580 - rating: 0 - ratings: 0 - author: "xynny" - repo: "https://github.com/xynnylol/vsthemes" - url: "https://marketplace.visualstudio.com/items?itemName=xynny.prowhite-theme" -colors: - bg: "#F9F9F9" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 102.5 - black: 102.5 - red: 70.4 - green: 45.6 - yellow: 54.3 - blue: 82.5 - magenta: 71 - cyan: 57 - white: 82.3 - brightBlack: 75.2 - brightRed: 70.4 - brightGreen: 37.3 - brightYellow: 37.4 - brightBlue: 82.5 - brightMagenta: 71 - brightCyan: 57 - brightWhite: 44.9 diff --git a/themes/rey.yaml b/themes/rey.yaml index ea6ea10f..0e5da877 100644 --- a/themes/rey.yaml +++ b/themes/rey.yaml @@ -8,6 +8,7 @@ source: author: "Reliann" repo: "https://github.com/Reliann/obsessed-VScode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Reliann.obsessed" + formats: null colors: bg: "#13131F" fg: "#D4D4D4" diff --git a/themes/rezaul360-blue-velvet-theme.yaml b/themes/rezaul360-blue-velvet-theme.yaml deleted file mode 100644 index a7433851..00000000 --- a/themes/rezaul360-blue-velvet-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Rezaul360 Blue Velvet Theme" -source: - marketplace_id: "Rezaul360Theme.rezaul360-theme" - version: "0.0.5" - installs: 188 - rating: 0 - ratings: 0 - author: "Rezaul360" - repo: "https://github.com/rezaul360/rezaul360-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Rezaul360Theme.rezaul360-theme" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#40444C" - red: "#F81141" - green: "#23974A" - yellow: "#FD7E57" - blue: "#285BFF" - magenta: "#8C62FD" - cyan: "#3A8AB2" - white: "#CDD3E0" - brightBlack: "#8F9AAE" - brightRed: "#FC4A6D" - brightGreen: "#37BD58" - brightYellow: "#F6BE48" - brightBlue: "#199FFD" - brightMagenta: "#FC58F6" - brightCyan: "#50ACAE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 56.2 - black: 0 - red: 32.1 - green: 32.8 - yellow: 48.7 - blue: 22.6 - magenta: 30.8 - cyan: 31.8 - white: 75.5 - brightBlack: 43.2 - brightRed: 38.3 - brightGreen: 50.1 - brightYellow: 68.5 - brightBlue: 43.9 - brightMagenta: 46.9 - brightCyan: 45.9 - brightWhite: 103.7 diff --git a/themes/rezaul360-professional-theme.yaml b/themes/rezaul360-professional-theme.yaml deleted file mode 100644 index fc882a15..00000000 --- a/themes/rezaul360-professional-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Rezaul360 - Professional Theme" -source: - marketplace_id: "Rezaul360Theme.rezaul360-theme" - version: "0.0.5" - installs: 188 - rating: 0 - ratings: 0 - author: "Rezaul360" - repo: "https://github.com/rezaul360/rezaul360-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Rezaul360Theme.rezaul360-theme" -colors: - bg: "#1C1E2E" - fg: "#C8D3F5" - black: "#000000" - red: "#FF757F" - green: "#C3E88D" - yellow: "#FFC777" - blue: "#82AAFF" - magenta: "#FCA7EA" - cyan: "#86E1FC" - white: "#C8D3F5" - brightBlack: "#828BB8" - brightRed: "#FF757F" - brightGreen: "#C3E88D" - brightYellow: "#FFC777" - brightBlue: "#82AAFF" - brightMagenta: "#FCA7EA" - brightCyan: "#86E1FC" - brightWhite: "#C8D3F5" -meta: - mode: "dark" - accent: "orange" - hue: 278 - pair: null - contrast: - fg: 78.2 - black: 0 - red: 49.9 - green: 83.2 - yellow: 76.5 - blue: 54.9 - magenta: 68.3 - cyan: 78.8 - white: 78.2 - brightBlack: 39.2 - brightRed: 49.9 - brightGreen: 83.2 - brightYellow: 76.5 - brightBlue: 54.9 - brightMagenta: 68.3 - brightCyan: 78.8 - brightWhite: 78.2 diff --git a/themes/rezaul360-simple-as-light.yaml b/themes/rezaul360-simple-as-light.yaml deleted file mode 100644 index c2f8f430..00000000 --- a/themes/rezaul360-simple-as-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Rezaul360 - Simple as light" -source: - marketplace_id: "Rezaul360Theme.rezaul360-theme" - version: "0.0.5" - installs: 188 - rating: 0 - ratings: 0 - author: "Rezaul360" - repo: "https://github.com/rezaul360/rezaul360-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Rezaul360Theme.rezaul360-theme" -colors: - bg: "#FFFFFF" - fg: "#455059" - black: "#FFFFFF" - red: "#C13838" - green: "#37AE6F" - yellow: "#C9A022" - blue: "#3398DB" - magenta: "#CC71BC" - cyan: "#24B5A8" - white: "#455059" - brightBlack: "#3398DB" - brightRed: "#C13838" - brightGreen: "#37AE6F" - brightYellow: "#C9A022" - brightBlue: "#3398DB" - brightMagenta: "#CC71BC" - brightCyan: "#24B5A8" - brightWhite: "#3398DB" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 88.5 - black: 0 - red: 75.7 - green: 53.8 - yellow: 48.2 - blue: 58.3 - magenta: 58.3 - cyan: 49.4 - white: 88.5 - brightBlack: 58.3 - brightRed: 75.7 - brightGreen: 53.8 - brightYellow: 48.2 - brightBlue: 58.3 - brightMagenta: 58.3 - brightCyan: 49.4 - brightWhite: 58.3 diff --git a/themes/rg-htmllessons-io.yaml b/themes/rg-htmllessons-io.yaml deleted file mode 100644 index 16a3b512..00000000 --- a/themes/rg-htmllessons-io.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "RG htmllessons.io" -source: - marketplace_id: "htmllessonsru.red-group-themes" - version: "0.0.7" - installs: 6438 - rating: 4.08 - ratings: 13 - author: "htmllessons_io" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=htmllessonsru.red-group-themes" -colors: - bg: "#1D1D1D" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.8 - black: 0 - red: 26 - green: 52.3 - yellow: 84.9 - blue: 26.7 - magenta: 29.1 - cyan: 46.9 - white: 89.3 - brightBlack: 21.3 - brightRed: 37.9 - brightGreen: 62.8 - brightYellow: 94.9 - brightBlue: 39.3 - brightMagenta: 44.7 - brightCyan: 54.7 - brightWhite: 89.3 diff --git a/themes/rhodes-dark.yaml b/themes/rhodes-dark.yaml index a6084125..1dfd1a98 100644 --- a/themes/rhodes-dark.yaml +++ b/themes/rhodes-dark.yaml @@ -8,6 +8,8 @@ source: author: "gaebalgom" repo: "https://github.com/dodok8/rhodes-theme" url: "https://marketplace.visualstudio.com/items?itemName=gaebalgom.rhodes" + formats: + zed: "https://raw.githubusercontent.com/dodok8/rhodes-theme/master/zed/rhodes.json" colors: bg: "#1A1A1A" fg: "#FDFDFD" diff --git a/themes/rhodes-light.yaml b/themes/rhodes-light.yaml index 6036ba2f..50a82c47 100644 --- a/themes/rhodes-light.yaml +++ b/themes/rhodes-light.yaml @@ -8,6 +8,8 @@ source: author: "gaebalgom" repo: "https://github.com/dodok8/rhodes-theme" url: "https://marketplace.visualstudio.com/items?itemName=gaebalgom.rhodes" + formats: + zed: "https://raw.githubusercontent.com/dodok8/rhodes-theme/master/zed/rhodes.json" colors: bg: "#FDFDFD" fg: "#241E1F" diff --git a/themes/rhodium-dark.yaml b/themes/rhodium-dark.yaml index 950582ea..32ea5bce 100644 --- a/themes/rhodium-dark.yaml +++ b/themes/rhodium-dark.yaml @@ -8,6 +8,7 @@ source: author: "mataga" repo: "https://github.com/merzainc/rhodium" url: "https://marketplace.visualstudio.com/items?itemName=mataga.rhodium" + formats: null colors: bg: "#111827" fg: "#F9FAFB" diff --git a/themes/rich-black-no-highlighting.yaml b/themes/rich-black-no-highlighting.yaml index 2eb3a20e..fa0906f1 100644 --- a/themes/rich-black-no-highlighting.yaml +++ b/themes/rich-black-no-highlighting.yaml @@ -8,6 +8,7 @@ source: author: "Kris Bastiani" repo: "https://github.com/Kris-Bastiani/vscode-theme-rich-black-no-highlighting" url: "https://marketplace.visualstudio.com/items?itemName=KrisBastiani.vscode-theme-rich-black-no-highlighting" + formats: null colors: bg: "#010203" fg: "#FFFFFF" diff --git a/themes/rich-black-theme.yaml b/themes/rich-black-theme.yaml index 6f5e506a..399d87c4 100644 --- a/themes/rich-black-theme.yaml +++ b/themes/rich-black-theme.yaml @@ -8,6 +8,7 @@ source: author: "Marius Begby" repo: "https://github.com/mariusbegby/rich-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=mariusbegby.rich-black-theme" + formats: null colors: bg: "#0F1217" fg: "#CCCCCC" diff --git a/themes/rider-dark-darcula.yaml b/themes/rider-dark-darcula.yaml index 89249e39..0de3df6a 100644 --- a/themes/rider-dark-darcula.yaml +++ b/themes/rider-dark-darcula.yaml @@ -8,6 +8,7 @@ source: author: "Gasrulle" repo: "https://github.com/gasrulle/gasrulle-theme" url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" + formats: null colors: bg: "#2B2B2B" fg: "#A9B7C6" diff --git a/themes/rider-dark-new-ui.yaml b/themes/rider-dark-new-ui.yaml index cb473a03..c877afbc 100644 --- a/themes/rider-dark-new-ui.yaml +++ b/themes/rider-dark-new-ui.yaml @@ -8,6 +8,7 @@ source: author: "Gasrulle" repo: "https://github.com/gasrulle/gasrulle-theme" url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" + formats: null colors: bg: "#1E1F22" fg: "#BCBEC4" diff --git a/themes/rider-melon-night.yaml b/themes/rider-melon-night.yaml index 024edf68..cd92774d 100644 --- a/themes/rider-melon-night.yaml +++ b/themes/rider-melon-night.yaml @@ -8,6 +8,7 @@ source: author: "AbYzzX" repo: "https://github.com/abYzzX/vscode.rider.melon.night" url: "https://marketplace.visualstudio.com/items?itemName=AbYzzX.rider-melon-theme" + formats: null colors: bg: "#262626" fg: "#D0D0D0" diff --git a/themes/rider.yaml b/themes/rider.yaml deleted file mode 100644 index d1419a01..00000000 --- a/themes/rider.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Rider" -source: - marketplace_id: "arzg.intellij-theme" - version: "1.11.0" - installs: 97329 - rating: 5 - ratings: 1 - author: "arzg" - repo: "https://github.com/arzg/intellij-theme" - url: "https://marketplace.visualstudio.com/items?itemName=arzg.intellij-theme" -colors: - bg: "#2B2B2B" - fg: "#B4B4B4" - black: "#313131" - red: "#F0524F" - green: "#5C962C" - yellow: "#A68A0D" - blue: "#3993D4" - magenta: "#A771BF" - cyan: "#00A3A3" - white: "#B4B4B4" - brightBlack: "#818181" - brightRed: "#FF4050" - brightGreen: "#4FC414" - brightYellow: "#E5BF00" - brightBlue: "#1FB0FF" - brightMagenta: "#ED7EED" - brightCyan: "#00E5E5" - brightWhite: "#B4B4B4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 57.7 - black: 0 - red: 36.3 - green: 34.4 - yellow: 36.9 - blue: 37.3 - magenta: 33.7 - cyan: 40.4 - white: 57.7 - brightBlack: 31.2 - brightRed: 37.3 - brightGreen: 53.8 - brightYellow: 66 - brightBlue: 51.1 - brightMagenta: 51.5 - brightCyan: 73.6 - brightWhite: 57.7 diff --git a/themes/rigel.yaml b/themes/rigel.yaml index 321c558a..2f3390ef 100644 --- a/themes/rigel.yaml +++ b/themes/rigel.yaml @@ -8,6 +8,7 @@ source: author: "mrmartineau" repo: "https://github.com/mrmartineau/rigel-vscode" url: "https://marketplace.visualstudio.com/items?itemName=mrmartineau.rigel-vscode" + formats: null colors: bg: "#002536" fg: "#E5E5DB" diff --git a/themes/rimber.yaml b/themes/rimber.yaml index e04f8404..071bbcbf 100644 --- a/themes/rimber.yaml +++ b/themes/rimber.yaml @@ -8,6 +8,7 @@ source: author: "Utsav" repo: "https://github.com/Utsav2931/Rimber" url: "https://marketplace.visualstudio.com/items?itemName=Utsav.Rimber" + formats: null colors: bg: "#262728" fg: "#9EB2BA" diff --git a/themes/riskified-dark.yaml b/themes/riskified-dark.yaml index ced8f1b2..f7c1cc31 100644 --- a/themes/riskified-dark.yaml +++ b/themes/riskified-dark.yaml @@ -8,6 +8,7 @@ source: author: "eliorc" repo: "https://github.com/eliorc/riskified-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=eliorc.riskified-theme" + formats: null colors: bg: "#080E3F" fg: "#E7EAEF" diff --git a/themes/rito.yaml b/themes/rito.yaml deleted file mode 100644 index 192435fe..00000000 --- a/themes/rito.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Rito" -source: - marketplace_id: "EminBayrak.rito-dark" - version: "0.0.2" - installs: 76 - rating: 0 - ratings: 0 - author: "Emin Bayrak" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=EminBayrak.rito-dark" -colors: - bg: "#32373D" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 253 - pair: null - contrast: - fg: 73.7 - black: 0 - red: 20.9 - green: 47.2 - yellow: 79.8 - blue: 21.6 - magenta: 23.9 - cyan: 41.7 - white: 84.2 - brightBlack: 16.2 - brightRed: 32.7 - brightGreen: 57.7 - brightYellow: 89.8 - brightBlue: 34.2 - brightMagenta: 39.5 - brightCyan: 49.6 - brightWhite: 84.2 diff --git a/themes/rivendell.yaml b/themes/rivendell.yaml index a0bbc7a0..bd71edf4 100644 --- a/themes/rivendell.yaml +++ b/themes/rivendell.yaml @@ -8,6 +8,7 @@ source: author: "sortbyfirstname" repo: "https://github.com/sortbyfirstname/rivendell-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sortbyfirstname.rivendell" + formats: null colors: bg: "#FEFAE0" fg: "#000000" diff --git a/themes/riviera-theme.yaml b/themes/riviera-theme.yaml index 45059d66..89093e6c 100644 --- a/themes/riviera-theme.yaml +++ b/themes/riviera-theme.yaml @@ -8,6 +8,8 @@ source: author: "Las" repo: "https://github.com/laander/riviera-theme" url: "https://marketplace.visualstudio.com/items?itemName=laander.riviera" + formats: + iterm2: "https://raw.githubusercontent.com/laander/riviera-theme/main/iterm2/riviera.itermcolors" colors: bg: "#101114" fg: "#E9E9ED" diff --git a/themes/rizz-focused.yaml b/themes/rizz-focused.yaml index ff891ce4..e96a9f94 100644 --- a/themes/rizz-focused.yaml +++ b/themes/rizz-focused.yaml @@ -8,6 +8,7 @@ source: author: "ThemeMeBabe by Diksha" repo: "https://github.com/dikshaa2909/ThemeMeBabe" url: "https://marketplace.visualstudio.com/items?itemName=thememebabe.thememebabe" + formats: null colors: bg: "#0D1B0D" fg: "#E8F5E8" diff --git a/themes/rizz-neutral.yaml b/themes/rizz-neutral.yaml index 671f2c45..9bcbbc86 100644 --- a/themes/rizz-neutral.yaml +++ b/themes/rizz-neutral.yaml @@ -8,6 +8,7 @@ source: author: "ThemeMeBabe by Diksha" repo: "https://github.com/dikshaa2909/ThemeMeBabe" url: "https://marketplace.visualstudio.com/items?itemName=thememebabe.thememebabe" + formats: null colors: bg: "#0F1419" fg: "#E6FFFF" diff --git a/themes/rm-dark-theme.yaml b/themes/rm-dark-theme.yaml index 17bcc004..7b619f1f 100644 --- a/themes/rm-dark-theme.yaml +++ b/themes/rm-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "raihaninfo" repo: "https://github.com/raihaninfo/rm-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=raihaninfo.rm-dark-theme" + formats: null colors: bg: "#041225" fg: "#FFFFFF" diff --git a/themes/rmondesilva-contrast.yaml b/themes/rmondesilva-contrast.yaml deleted file mode 100644 index 49975248..00000000 --- a/themes/rmondesilva-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "rmondesilva-contrast" -source: - marketplace_id: "rmondesilva.rmondesilva" - version: "0.0.1" - installs: 87 - rating: 0 - ratings: 0 - author: "Richmond De Silva" - repo: "https://github.com/rmondesilva/vscode-color-theme-rmondesilva" - url: "https://marketplace.visualstudio.com/items?itemName=rmondesilva.rmondesilva" -colors: - bg: "#121414" - fg: "#D6DBDB" - black: "#1E2121" - red: "#BA0E2E" - green: "#A7DA1E" - yellow: "#9BB7A7" - blue: "#F9F7F1" - magenta: "#9BB7A7" - cyan: "#C24E4B" - white: "#E4E7E7" - brightBlack: "#424A4A" - brightRed: "#F03E5F" - brightGreen: "#A7DA1E" - brightYellow: "#D6E2DB" - brightBlue: "#FFFFFF" - brightMagenta: "#D6E2DB" - brightCyan: "#DC9997" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83.4 - black: 0 - red: 20.8 - green: 73.5 - yellow: 59.1 - blue: 101.9 - magenta: 59.1 - cyan: 29.2 - white: 91.2 - brightBlack: 10.7 - brightRed: 37.1 - brightGreen: 73.5 - brightYellow: 86.6 - brightBlue: 107.2 - brightMagenta: 86.6 - brightCyan: 55.7 - brightWhite: 107.2 diff --git a/themes/roblox-stylized-dark-theme.yaml b/themes/roblox-stylized-dark-theme.yaml index 2c95cadc..9995ce49 100644 --- a/themes/roblox-stylized-dark-theme.yaml +++ b/themes/roblox-stylized-dark-theme.yaml @@ -2,12 +2,13 @@ name: "Roblox-Stylized Dark Theme" source: marketplace_id: "Raspberry05.robloxtheme" version: "0.0.1" - installs: 1090 + installs: 1091 rating: 0 ratings: 0 author: "Raspberry" repo: "https://github.com/Raspberry05/robloxTheme" url: "https://marketplace.visualstudio.com/items?itemName=Raspberry05.robloxtheme" + formats: null colors: bg: "#252525" fg: "#CCCCCC" diff --git a/themes/robodark.yaml b/themes/robodark.yaml index 8c903d9c..2d439af9 100644 --- a/themes/robodark.yaml +++ b/themes/robodark.yaml @@ -2,12 +2,13 @@ name: "RoboDark" source: marketplace_id: "LaVeglia00148.robodark" version: "1.11.2" - installs: 2509 + installs: 2510 rating: 5 ratings: 1 author: "Chad LaVeglia" repo: "https://github.com/cjesq24/RoboDark" url: "https://marketplace.visualstudio.com/items?itemName=LaVeglia00148.robodark" + formats: null colors: bg: "#010102" fg: "#ABB2BF" diff --git a/themes/robolaunch.yaml b/themes/robolaunch.yaml index 5594f76d..573da78d 100644 --- a/themes/robolaunch.yaml +++ b/themes/robolaunch.yaml @@ -1,4 +1,4 @@ -name: "robolaunch" +name: "Robolaunch" source: marketplace_id: "gokhangunduz.robolaunch" version: "1.3.6" @@ -8,6 +8,7 @@ source: author: "Gökhan Gündüz" repo: "https://github.com/gokhangunduz/robolaunch-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=gokhangunduz.robolaunch" + formats: null colors: bg: "#000000" fg: "#D1C5C0" diff --git a/themes/robot-framework-material-dark.yaml b/themes/robot-framework-material-dark.yaml deleted file mode 100644 index 503263d4..00000000 --- a/themes/robot-framework-material-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Robot Framework Material Dark" -source: - marketplace_id: "ConnectionsSystem.robotframework-pro" - version: "2.1.4" - installs: 293 - rating: 0 - ratings: 0 - author: "Connections System" - repo: "https://github.com/Skisperd/robotframework-pro-extension" - url: "https://marketplace.visualstudio.com/items?itemName=ConnectionsSystem.robotframework-pro" -colors: - bg: "#263238" - fg: "#EEFFFF" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 230 - pair: null - contrast: - fg: 100.4 - black: 0 - red: 39.4 - green: 80 - yellow: 74.7 - blue: 51.7 - magenta: 49.6 - cyan: 74.1 - white: 102.7 - brightBlack: 0 - brightRed: 39.4 - brightGreen: 80 - brightYellow: 74.7 - brightBlue: 51.7 - brightMagenta: 49.6 - brightCyan: 74.1 - brightWhite: 102.7 diff --git a/themes/rocinante.yaml b/themes/rocinante.yaml index 8e9387bb..e309585e 100644 --- a/themes/rocinante.yaml +++ b/themes/rocinante.yaml @@ -8,6 +8,7 @@ source: author: "A-Abra" repo: "https://github.com/A-Abra/rocinante-vscode" url: "https://marketplace.visualstudio.com/items?itemName=A-Abra.Rocinante" + formats: null colors: bg: "#1A1B26" fg: "#FFD34E" diff --git a/themes/rocklee.yaml b/themes/rocklee.yaml deleted file mode 100644 index f3c81608..00000000 --- a/themes/rocklee.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "RockLee" -source: - marketplace_id: "MdTalhaZubayer.rocklee" - version: "0.0.6" - installs: 1562 - rating: 5 - ratings: 2 - author: "Md Talha Zubayer" - repo: "https://github.com/MdTalhaZubayer/rocklee" - url: "https://marketplace.visualstudio.com/items?itemName=MdTalhaZubayer.rocklee" -colors: - bg: "#2D2627" - fg: "#E2DCDD" - black: "#3B3233" - red: "#BA0E2E" - green: "#F0A56C" - yellow: "#689D81" - blue: "#D8CA96" - magenta: "#F0A56C" - cyan: "#689D81" - white: "#EEEAEB" - brightBlack: "#645557" - brightRed: "#F03E5F" - brightGreen: "#F9DEC9" - brightYellow: "#A6C5B5" - brightBlue: "#F4F0E0" - brightMagenta: "#F9DEC9" - brightCyan: "#A6C5B5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 8 - pair: null - contrast: - fg: 82.9 - black: 0 - red: 18.1 - green: 59.5 - yellow: 40.2 - blue: 71.1 - magenta: 59.5 - cyan: 40.2 - white: 91.4 - brightBlack: 14.1 - brightRed: 34.4 - brightGreen: 86.2 - brightYellow: 64 - brightBlue: 94.5 - brightMagenta: 86.2 - brightCyan: 64 - brightWhite: 104.5 diff --git a/themes/rocko-s-modern-theme.yaml b/themes/rocko-s-modern-theme.yaml index 3dba28d2..76eb8ceb 100644 --- a/themes/rocko-s-modern-theme.yaml +++ b/themes/rocko-s-modern-theme.yaml @@ -8,6 +8,7 @@ source: author: "elethan" repo: "https://github.com/el-ethan/rocko-theme" url: "https://marketplace.visualstudio.com/items?itemName=elethan.rocko-theme" + formats: null colors: bg: "#292D3E" fg: "#C1B8EF" diff --git a/themes/rog-theme-v1-1-dark-alpha-syntax-test.yaml b/themes/rog-theme-v1-1-dark-alpha-syntax-test.yaml deleted file mode 100644 index 0c87d67b..00000000 --- a/themes/rog-theme-v1-1-dark-alpha-syntax-test.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "ROG Theme V1.1 Dark Alpha - Syntax Test" -source: - marketplace_id: "ELITENOTORIOUSTHEPRESTIGIOUS.rog-theme-v1-dark" - version: "1.1.0" - installs: 236 - author: "ELITE NOTORIOUS THE PRESTIGIOUS" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=ELITENOTORIOUSTHEPRESTIGIOUS.rog-theme-v1-dark" -colors: - bg: "#000000" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 0 - black: 0 - red: 27.7 - green: 52.7 - yellow: 43.8 - blue: 16 - magenta: 27.1 - cyan: 41.1 - white: 16.1 - brightBlack: 23 - brightRed: 27.7 - brightGreen: 61.4 - brightYellow: 61.3 - brightBlue: 16 - brightMagenta: 27.1 - brightCyan: 41.1 - brightWhite: 53.5 diff --git a/themes/rogue-squadron.yaml b/themes/rogue-squadron.yaml deleted file mode 100644 index 60e9cba1..00000000 --- a/themes/rogue-squadron.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Rogue Squadron" -source: - marketplace_id: "DanMad.a-galaxy-far-far-away-theme" - version: "3.3.1" - installs: 4613 - rating: 5 - ratings: 3 - author: "DanMad" - repo: "https://github.com/danmad/a-galaxy-far-far-away-theme" - url: "https://marketplace.visualstudio.com/items?itemName=DanMad.a-galaxy-far-far-away-theme" -colors: - bg: "#010203" - fg: "#CACDCF" - black: "#04070B" - red: "#BC5F5D" - green: "#85ADBC" - yellow: "#C1B398" - blue: "#538397" - magenta: "#BC5F5D" - cyan: "#85ADBC" - white: "#C1B398" - brightBlack: "#538397" - brightRed: "#BC5F5D" - brightGreen: "#85ADBC" - brightYellow: "#C1B398" - brightBlue: "#538397" - brightMagenta: "#BC5F5D" - brightCyan: "#85ADBC" - brightWhite: "#C1B398" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 76 - black: 0 - red: 32.7 - green: 54.5 - yellow: 62 - blue: 33.2 - magenta: 32.7 - cyan: 54.5 - white: 62 - brightBlack: 33.2 - brightRed: 32.7 - brightGreen: 54.5 - brightYellow: 62 - brightBlue: 33.2 - brightMagenta: 32.7 - brightCyan: 54.5 - brightWhite: 62 diff --git a/themes/rohit-kudalkar-dark-theme.yaml b/themes/rohit-kudalkar-dark-theme.yaml index cee3a586..974a1a5d 100644 --- a/themes/rohit-kudalkar-dark-theme.yaml +++ b/themes/rohit-kudalkar-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "rohitkudalkar-dark-theme" repo: "https://github.com/rohitkudalkar92/rohitkudalkar-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=rohitkudalkar-dark-theme.rohitkudalkar-dark-theme" + formats: null colors: bg: "#000000" fg: "#F5F543" diff --git a/themes/rohit.yaml b/themes/rohit.yaml deleted file mode 100644 index 721f8c23..00000000 --- a/themes/rohit.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ROHIT" -source: - marketplace_id: "ROHIT-SINGH.EBONX" - version: "1.0.2" - installs: 43 - rating: 0 - ratings: 0 - author: "ROHIT-SINGH" - repo: "https://github.com/ROHIT-SINGH-1/EBONX" - url: "https://marketplace.visualstudio.com/items?itemName=ROHIT-SINGH.EBONX" -colors: - bg: "#0D0D0D" - fg: "#6688CC" - black: "#111111" - red: "#FF9DA4" - green: "#D1F1A9" - yellow: "#FFEEAD" - blue: "#BBDAFF" - magenta: "#EBBBFF" - cyan: "#99FFFF" - white: "#CCCCCC" - brightBlack: "#333333" - brightRed: "#FF7882" - brightGreen: "#B8F171" - brightYellow: "#FFE580" - brightBlue: "#80BAFF" - brightMagenta: "#D778FF" - brightCyan: "#78FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 38.7 - black: 0 - red: 64.1 - green: 91.6 - yellow: 96.5 - blue: 82.1 - magenta: 75.5 - cyan: 96.7 - white: 75.4 - brightBlack: 0 - brightRed: 52.5 - brightGreen: 87.6 - brightYellow: 91.3 - brightBlue: 62.9 - brightMagenta: 51 - brightCyan: 94.6 - brightWhite: 107.6 diff --git a/themes/ronin-darker.yaml b/themes/ronin-darker.yaml deleted file mode 100644 index 42f4cb3c..00000000 --- a/themes/ronin-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ronin Darker" -source: - marketplace_id: "ZachBauer.ronin" - version: "1.7.0" - installs: 1118 - rating: 0 - ratings: 0 - author: "Zach Bauer" - repo: "https://github.com/azbauer8/Ronin" - url: "https://marketplace.visualstudio.com/items?itemName=ZachBauer.ronin" -colors: - bg: "#181818" - fg: "#CCCCCC" - black: "#1D2025" - red: "#E06C75" - green: "#9AC181" - yellow: "#EDD6A3" - blue: "#4FB0FF" - magenta: "#DB7F99" - cyan: "#50CDDD" - white: "#BAC4D6" - brightBlack: "#4F6695" - brightRed: "#E06C75" - brightGreen: "#9AC181" - brightYellow: "#EDD6A3" - brightBlue: "#4FB0FF" - brightMagenta: "#DB7F99" - brightCyan: "#50CDDD" - brightWhite: "#E3E5E8" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 74.6 - black: 0 - red: 42 - green: 61.7 - yellow: 81.9 - blue: 55.2 - magenta: 47.1 - cyan: 65.8 - white: 69.4 - brightBlack: 22.1 - brightRed: 42 - brightGreen: 61.7 - brightYellow: 81.9 - brightBlue: 55.2 - brightMagenta: 47.1 - brightCyan: 65.8 - brightWhite: 89.8 diff --git a/themes/ronin.yaml b/themes/ronin.yaml deleted file mode 100644 index b550093d..00000000 --- a/themes/ronin.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ronin" -source: - marketplace_id: "ZachBauer.ronin" - version: "1.7.0" - installs: 1118 - rating: 0 - ratings: 0 - author: "Zach Bauer" - repo: "https://github.com/azbauer8/Ronin" - url: "https://marketplace.visualstudio.com/items?itemName=ZachBauer.ronin" -colors: - bg: "#18181B" - fg: "#BAC4D6" - black: "#1D2025" - red: "#E06C75" - green: "#9AC181" - yellow: "#EDD6A3" - blue: "#4FB0FF" - magenta: "#DB7F99" - cyan: "#50CDDD" - white: "#BAC4D6" - brightBlack: "#4F6695" - brightRed: "#E06C75" - brightGreen: "#9AC181" - brightYellow: "#EDD6A3" - brightBlue: "#4FB0FF" - brightMagenta: "#DB7F99" - brightCyan: "#50CDDD" - brightWhite: "#E3E5E8" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 69.4 - black: 0 - red: 41.9 - green: 61.6 - yellow: 81.9 - blue: 55.2 - magenta: 47.1 - cyan: 65.8 - white: 69.4 - brightBlack: 22.1 - brightRed: 41.9 - brightGreen: 61.6 - brightYellow: 81.9 - brightBlue: 55.2 - brightMagenta: 47.1 - brightCyan: 65.8 - brightWhite: 89.8 diff --git a/themes/root-bear.yaml b/themes/root-bear.yaml deleted file mode 100644 index c9bcb9b9..00000000 --- a/themes/root-bear.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Root Bear" -source: - marketplace_id: "Reuben.root-bear" - version: "0.2.1" - installs: 7010 - rating: 5 - ratings: 2 - author: "RobiMez" - repo: "https://github.com/RobiMez/void_blue" - url: "https://marketplace.visualstudio.com/items?itemName=Reuben.root-bear" -colors: - bg: "#0A0E14" - fg: "#F7F1FF" - black: "#0A0E14" - red: "#FC618D" - green: "#7BD88F" - yellow: "#FCE566" - blue: "#FD9353" - magenta: "#948AE3" - cyan: "#5AD4E6" - white: "#F7F1FF" - brightBlack: "#69676C" - brightRed: "#FC618D" - brightGreen: "#7BD88F" - brightYellow: "#FCE566" - brightBlue: "#FD9353" - brightMagenta: "#948AE3" - brightCyan: "#5AD4E6" - brightWhite: "#F7F1FF" -meta: - mode: "dark" - accent: "red" - hue: 258 - pair: null - contrast: - fg: 99.9 - black: 0 - red: 47 - green: 70.9 - yellow: 90.3 - blue: 58.6 - magenta: 44.9 - cyan: 70.7 - white: 99.9 - brightBlack: 23.5 - brightRed: 47 - brightGreen: 70.9 - brightYellow: 90.3 - brightBlue: 58.6 - brightMagenta: 44.9 - brightCyan: 70.7 - brightWhite: 99.9 diff --git a/themes/root-dark-mode-theme-v0-1.yaml b/themes/root-dark-mode-theme-v0-1.yaml deleted file mode 100644 index b20d6b71..00000000 --- a/themes/root-dark-mode-theme-v0-1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "#ROOT - Dark mode theme v0.1" -source: - marketplace_id: "fiedri.root-dark-theme" - version: "0.0.5" - installs: 26 - rating: 0 - ratings: 0 - author: "fiedri" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=fiedri.root-dark-theme" -colors: - bg: "#0A0A0A" - fg: "#FFFFFF" - black: "#888888" - red: "#FF003C" - green: "#00FF41" - yellow: "#FCEE0A" - blue: "#00F3FF" - magenta: "#BC3FBC" - cyan: "#0AFFC9" - white: "#FFFFFF" - brightBlack: "#555555" - brightRed: "#FF0055" - brightGreen: "#39FF14" - brightYellow: "#FFF600" - brightBlue: "#00FFFF" - brightMagenta: "#D670D6" - brightCyan: "#4DF9FF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 107.7 - black: 38.5 - red: 37.7 - green: 86.6 - yellow: 94 - blue: 85.9 - magenta: 30.6 - cyan: 89.6 - white: 107.7 - brightBlack: 16 - brightRed: 38.1 - brightGreen: 86.8 - brightYellow: 98.2 - brightBlue: 92 - brightMagenta: 46.2 - brightCyan: 89.9 - brightWhite: 90.9 diff --git a/themes/ros-pine-dawn-no-italics.yaml b/themes/ros-pine-dawn-no-italics.yaml deleted file mode 100644 index 67691ac2..00000000 --- a/themes/ros-pine-dawn-no-italics.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Rosé Pine Dawn (no italics)" -source: - marketplace_id: "mvllow.rose-pine" - version: "2.15.0" - installs: 299415 - rating: 4.73 - ratings: 22 - author: "Rosé Pine" - repo: "https://github.com/rose-pine/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=mvllow.rose-pine" -colors: - bg: "#FAF4ED" - fg: "#575279" - black: "#F2E9E1" - red: "#B4637A" - green: "#286983" - yellow: "#EA9D34" - blue: "#56949F" - magenta: "#907AA9" - cyan: "#D7827E" - white: "#575279" - brightBlack: "#797593" - brightRed: "#B4637A" - brightGreen: "#286983" - brightYellow: "#EA9D34" - brightBlue: "#56949F" - brightMagenta: "#907AA9" - brightCyan: "#D7827E" - brightWhite: "#575279" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 79.1 - black: 0 - red: 62.5 - green: 74.2 - yellow: 37.8 - blue: 55.6 - magenta: 59.3 - cyan: 48.2 - white: 79.1 - brightBlack: 64.4 - brightRed: 62.5 - brightGreen: 74.2 - brightYellow: 37.8 - brightBlue: 55.6 - brightMagenta: 59.3 - brightCyan: 48.2 - brightWhite: 79.1 diff --git a/themes/ros-pine-moon.yaml b/themes/ros-pine-moon.yaml deleted file mode 100644 index c60c1c16..00000000 --- a/themes/ros-pine-moon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Rosé Pine Moon" -source: - marketplace_id: "mvllow.rose-pine" - version: "2.15.0" - installs: 299415 - rating: 4.73 - ratings: 22 - author: "Rosé Pine" - repo: "https://github.com/rose-pine/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=mvllow.rose-pine" -colors: - bg: "#232136" - fg: "#E0DEF4" - black: "#393552" - red: "#EB6F92" - green: "#3E8FB0" - yellow: "#F6C177" - blue: "#9CCFD8" - magenta: "#C4A7E7" - cyan: "#EA9A97" - white: "#E0DEF4" - brightBlack: "#908CAA" - brightRed: "#EB6F92" - brightGreen: "#3E8FB0" - brightYellow: "#F6C177" - brightBlue: "#9CCFD8" - brightMagenta: "#C4A7E7" - brightCyan: "#EA9A97" - brightWhite: "#E0DEF4" -meta: - mode: "dark" - accent: "red" - hue: 288 - pair: null - contrast: - fg: 85.3 - black: 0 - red: 44.2 - green: 35.2 - yellow: 71.9 - blue: 69.7 - magenta: 58.7 - cyan: 56.5 - white: 85.3 - brightBlack: 39.6 - brightRed: 44.2 - brightGreen: 35.2 - brightYellow: 71.9 - brightBlue: 69.7 - brightMagenta: 58.7 - brightCyan: 56.5 - brightWhite: 85.3 diff --git a/themes/ros-pine-no-italics.yaml b/themes/ros-pine-no-italics.yaml deleted file mode 100644 index e15118ee..00000000 --- a/themes/ros-pine-no-italics.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Rosé Pine (no italics)" -source: - marketplace_id: "mvllow.rose-pine" - version: "2.15.0" - installs: 299415 - rating: 4.73 - ratings: 22 - author: "Rosé Pine" - repo: "https://github.com/rose-pine/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=mvllow.rose-pine" -colors: - bg: "#191724" - fg: "#E0DEF4" - black: "#26233A" - red: "#EB6F92" - green: "#31748F" - yellow: "#F6C177" - blue: "#9CCFD8" - magenta: "#C4A7E7" - cyan: "#EBBCBA" - white: "#E0DEF4" - brightBlack: "#908CAA" - brightRed: "#EB6F92" - brightGreen: "#31748F" - brightYellow: "#F6C177" - brightBlue: "#9CCFD8" - brightMagenta: "#C4A7E7" - brightCyan: "#EBBCBA" - brightWhite: "#E0DEF4" -meta: - mode: "dark" - accent: "red" - hue: 291 - pair: null - contrast: - fg: 86.8 - black: 0 - red: 45.7 - green: 24.9 - yellow: 73.4 - blue: 71.2 - magenta: 60.1 - cyan: 71.6 - white: 86.8 - brightBlack: 41.1 - brightRed: 45.7 - brightGreen: 24.9 - brightYellow: 73.4 - brightBlue: 71.2 - brightMagenta: 60.1 - brightCyan: 71.6 - brightWhite: 86.8 diff --git a/themes/ros-pine.yaml b/themes/ros-pine.yaml deleted file mode 100644 index 7b108f51..00000000 --- a/themes/ros-pine.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Rosé Pine" -source: - marketplace_id: "SulSami.rose-pine-burnt" - version: "1.0.3" - installs: 3259 - rating: 0 - ratings: 0 - author: "Sami" - repo: "https://github.com/rose-pine-vscode/vscode" - url: "https://marketplace.visualstudio.com/items?itemName=SulSami.rose-pine-burnt" -colors: - bg: "#0E0A01" - fg: "#C0CAF5" - black: "#26233A" - red: "#EB6F92" - green: "#31748F" - yellow: "#F6C177" - blue: "#9CCFD8" - magenta: "#C4A7E7" - cyan: "#EBBCBA" - white: "#C0CAF5" - brightBlack: "#908CAA" - brightRed: "#EB6F92" - brightGreen: "#31748F" - brightYellow: "#F6C177" - brightBlue: "#9CCFD8" - brightMagenta: "#C4A7E7" - brightCyan: "#EBBCBA" - brightWhite: "#C0CAF5" -meta: - mode: "dark" - accent: "red" - hue: 94 - pair: null - contrast: - fg: 75.2 - black: 0 - red: 46.7 - green: 25.9 - yellow: 74.4 - blue: 72.2 - magenta: 61.2 - cyan: 72.6 - white: 75.2 - brightBlack: 42.1 - brightRed: 46.7 - brightGreen: 25.9 - brightYellow: 74.4 - brightBlue: 72.2 - brightMagenta: 61.2 - brightCyan: 72.6 - brightWhite: 75.2 diff --git a/themes/rose-paradise.yaml b/themes/rose-paradise.yaml deleted file mode 100644 index b330e11e..00000000 --- a/themes/rose-paradise.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Rose Paradise" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#FFF5F7" - fg: "#2D1B2E" - black: "#4A2A3D" - red: "#D81B60" - green: "#4CAF50" - yellow: "#FFA726" - blue: "#4A90E2" - magenta: "#AB47BC" - cyan: "#26C6DA" - white: "#4A2A3D" - brightBlack: "#8D6678" - brightRed: "#E91E63" - brightGreen: "#66BB6A" - brightYellow: "#FFB74D" - brightBlue: "#64B5F6" - brightMagenta: "#BA68C8" - brightCyan: "#4DD0E1" - brightWhite: "#2D1B2E" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 98.4 - black: 93.5 - red: 67.6 - green: 48.7 - yellow: 32.4 - blue: 55.4 - magenta: 68.1 - cyan: 35.2 - white: 93.5 - brightBlack: 69.2 - brightRed: 63.4 - brightGreen: 41.8 - brightYellow: 26.5 - brightBlue: 38.8 - brightMagenta: 58.2 - brightCyan: 29.6 - brightWhite: 98.4 diff --git a/themes/rosefall-black.yaml b/themes/rosefall-black.yaml index be8fd813..37546d4a 100644 --- a/themes/rosefall-black.yaml +++ b/themes/rosefall-black.yaml @@ -8,6 +8,7 @@ source: author: "Ádám Horváth" repo: "https://github.com/vorhdam/rosefall" url: "https://marketplace.visualstudio.com/items?itemName=vorhdam.rosefall" + formats: null colors: bg: "#0C0C0E" fg: "#ABB2BF" diff --git a/themes/rosefall-midnight.yaml b/themes/rosefall-midnight.yaml index 25cec651..14e15280 100644 --- a/themes/rosefall-midnight.yaml +++ b/themes/rosefall-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Ádám Horváth" repo: "https://github.com/vorhdam/rosefall" url: "https://marketplace.visualstudio.com/items?itemName=vorhdam.rosefall" + formats: null colors: bg: "#060607" fg: "#ABB2BF" diff --git a/themes/roselia-orbital-eden-pastel.yaml b/themes/roselia-orbital-eden-pastel.yaml index e2ed0a00..6eb3ff8b 100644 --- a/themes/roselia-orbital-eden-pastel.yaml +++ b/themes/roselia-orbital-eden-pastel.yaml @@ -8,6 +8,7 @@ source: author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-roselia-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" + formats: null colors: bg: "#232634" fg: "#D9E0EE" diff --git a/themes/roselia.yaml b/themes/roselia.yaml index 31a90b81..614bf13e 100644 --- a/themes/roselia.yaml +++ b/themes/roselia.yaml @@ -8,6 +8,7 @@ source: author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-morfonica-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.morfonica-theme" + formats: null colors: bg: "#1A1B26" fg: "#EEEEEE" diff --git a/themes/rouge.yaml b/themes/rouge.yaml deleted file mode 100644 index 696b1180..00000000 --- a/themes/rouge.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Rouge" -source: - marketplace_id: "josef.rouge-theme" - version: "2.1.6" - installs: 53325 - rating: 4.91 - ratings: 11 - author: "josef" - repo: "https://github.com/josefaidt/rouge-theme" - url: "https://marketplace.visualstudio.com/items?itemName=josef.rouge-theme" -colors: - bg: "#172030" - fg: "#BBBBBB" - black: "#374E73" - red: "#C6797E" - green: "#ADB9A4" - yellow: "#ECE7AC" - blue: "#6E94B9" - magenta: "#B18BB1" - cyan: "#8AB6C1" - white: "#E3E4E8" - brightBlack: "#3F5A85" - brightRed: "#D19498" - brightGreen: "#BEC8B7" - brightYellow: "#F2EFC7" - brightBlue: "#98B3CD" - brightMagenta: "#CCB3CC" - brightCyan: "#ABCBD3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 262 - pair: null - contrast: - fg: 63.6 - black: 11.2 - red: 39.9 - green: 60.3 - yellow: 88.6 - blue: 40.7 - magenta: 44.1 - cyan: 56.8 - white: 88.3 - brightBlack: 15.8 - brightRed: 50.9 - brightGreen: 69.3 - brightYellow: 94 - brightBlue: 57.4 - brightMagenta: 63.4 - brightCyan: 69.6 - brightWhite: 105.8 diff --git a/themes/roxo-theme.yaml b/themes/roxo-theme.yaml index 52e3ce50..d62fff1d 100644 --- a/themes/roxo-theme.yaml +++ b/themes/roxo-theme.yaml @@ -2,12 +2,13 @@ name: "Roxo theme" source: marketplace_id: "rellyson.roxo-theme-vscode" version: "1.2.1" - installs: 749 + installs: 752 rating: 0 ratings: 0 author: "Rellyson Silva" repo: "https://github.com/roxo-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=rellyson.roxo-theme-vscode" + formats: null colors: bg: "#120D17" fg: "#E0DEF4" diff --git a/themes/royal-darker-theme.yaml b/themes/royal-darker-theme.yaml index 884935f7..9ee40c81 100644 --- a/themes/royal-darker-theme.yaml +++ b/themes/royal-darker-theme.yaml @@ -6,6 +6,7 @@ source: author: "Eric Hideki" repo: null url: "https://marketplace.visualstudio.com/items?itemName=EricHideki.Royal-Dark-Theme" + formats: null colors: bg: "#292736" fg: "#E6E4FF" diff --git a/themes/royal-fork.yaml b/themes/royal-fork.yaml index 9df4465d..43c1dd15 100644 --- a/themes/royal-fork.yaml +++ b/themes/royal-fork.yaml @@ -6,6 +6,7 @@ source: author: "Eric Hideki" repo: null url: "https://marketplace.visualstudio.com/items?itemName=EricHideki.Royal-Dark-Theme" + formats: null colors: bg: "#322F45" fg: "#E6E4FF" diff --git a/themes/royal.yaml b/themes/royal.yaml index 62918926..2785384f 100644 --- a/themes/royal.yaml +++ b/themes/royal.yaml @@ -8,6 +8,7 @@ source: author: "Eshwar B.Y" repo: null url: "https://marketplace.visualstudio.com/items?itemName=EshwarBY.royal" + formats: null colors: bg: "#000000" fg: "#F2F2F2" diff --git a/themes/royalty-theme.yaml b/themes/royalty-theme.yaml index 62d37c43..5ec27300 100644 --- a/themes/royalty-theme.yaml +++ b/themes/royalty-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Alcash55.royaltytheme" version: "2.2.0" installs: 179 + rating: 0 + ratings: 0 author: "Alcash55" repo: "https://github.com/alcash55/Royalty-VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Alcash55.royaltytheme" + formats: null colors: bg: "#4A4063" fg: "#FFFFFF" diff --git a/themes/rozen.yaml b/themes/rozen.yaml index ed6ab46a..fd593e7d 100644 --- a/themes/rozen.yaml +++ b/themes/rozen.yaml @@ -8,6 +8,7 @@ source: author: "TehMatcha" repo: "https://github.com/MatchaTi/cool-roselia-theme" url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" + formats: null colors: bg: "#121726" fg: "#C2C8DB" diff --git a/themes/rs-dark.yaml b/themes/rs-dark.yaml index bb984081..e063f413 100644 --- a/themes/rs-dark.yaml +++ b/themes/rs-dark.yaml @@ -8,6 +8,7 @@ source: author: "resure" repo: "https://github.com/resure/rs-theme" url: "https://marketplace.visualstudio.com/items?itemName=resure.rs-theme" + formats: null colors: bg: "#292A30" fg: "#F0F0F0" diff --git a/themes/rsikified-dark-purple.yaml b/themes/rsikified-dark-purple.yaml index 89c79741..92ba6f42 100644 --- a/themes/rsikified-dark-purple.yaml +++ b/themes/rsikified-dark-purple.yaml @@ -8,6 +8,7 @@ source: author: "eliorc" repo: "https://github.com/eliorc/riskified-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=eliorc.riskified-theme" + formats: null colors: bg: "#0F1862" fg: "#E7EAEF" diff --git a/themes/rubecula.yaml b/themes/rubecula.yaml index e6e200b9..48b60e8a 100644 --- a/themes/rubecula.yaml +++ b/themes/rubecula.yaml @@ -8,6 +8,7 @@ source: author: "Andreas Backx" repo: "https://github.com/Rubecula/VS-Code" url: "https://marketplace.visualstudio.com/items?itemName=andreasbackx.rubecula" + formats: null colors: bg: "#1C1C1C" fg: "#CECECE" diff --git a/themes/rubi-theme.yaml b/themes/rubi-theme.yaml index b01f02f7..c29a7647 100644 --- a/themes/rubi-theme.yaml +++ b/themes/rubi-theme.yaml @@ -8,6 +8,7 @@ source: author: "Serez Dev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sd-tools.sd-ruby-extension-vs" + formats: null colors: bg: "#3B0000" fg: "#DBCEA3" diff --git a/themes/ruby-nights-garnet-midnight.yaml b/themes/ruby-nights-garnet-midnight.yaml index 14f5e7d5..763d758a 100644 --- a/themes/ruby-nights-garnet-midnight.yaml +++ b/themes/ruby-nights-garnet-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Ledian Leka" repo: "https://github.com/Ledian63S/ruby-nights" url: "https://marketplace.visualstudio.com/items?itemName=lekaledian.ruby-nights" + formats: null colors: bg: "#0F080E" fg: "#BAC6DB" diff --git a/themes/ruby-nights-garnet.yaml b/themes/ruby-nights-garnet.yaml index cd77b195..e4fa5f22 100644 --- a/themes/ruby-nights-garnet.yaml +++ b/themes/ruby-nights-garnet.yaml @@ -8,6 +8,7 @@ source: author: "Ledian Leka" repo: "https://github.com/Ledian63S/ruby-nights" url: "https://marketplace.visualstudio.com/items?itemName=lekaledian.ruby-nights" + formats: null colors: bg: "#170E16" fg: "#BAC6DB" diff --git a/themes/ruby-nights-ruby-midnight.yaml b/themes/ruby-nights-ruby-midnight.yaml index 965c37ab..8a1a3379 100644 --- a/themes/ruby-nights-ruby-midnight.yaml +++ b/themes/ruby-nights-ruby-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Ledian Leka" repo: "https://github.com/Ledian63S/ruby-nights" url: "https://marketplace.visualstudio.com/items?itemName=lekaledian.ruby-nights" + formats: null colors: bg: "#0F090A" fg: "#BAC6DB" diff --git a/themes/ruby-nights-ruby.yaml b/themes/ruby-nights-ruby.yaml index 67c24631..df31b24d 100644 --- a/themes/ruby-nights-ruby.yaml +++ b/themes/ruby-nights-ruby.yaml @@ -8,6 +8,7 @@ source: author: "Ledian Leka" repo: "https://github.com/Ledian63S/ruby-nights" url: "https://marketplace.visualstudio.com/items?itemName=lekaledian.ruby-nights" + formats: null colors: bg: "#170F10" fg: "#BAC6DB" diff --git a/themes/ruby-sea.yaml b/themes/ruby-sea.yaml index 42ad2bbf..04122e32 100644 --- a/themes/ruby-sea.yaml +++ b/themes/ruby-sea.yaml @@ -8,6 +8,7 @@ source: author: "Barkerbg001" repo: "https://github.com/barkerbg001/Ruby-Sea" url: "https://marketplace.visualstudio.com/items?itemName=Barkerbg001.rubysea-vscode" + formats: null colors: bg: "#122236" fg: "#A2AABC" diff --git a/themes/rudydev-theme-edited-tokyo-night-storm.yaml b/themes/rudydev-theme-edited-tokyo-night-storm.yaml index d46c9f84..7071318c 100644 --- a/themes/rudydev-theme-edited-tokyo-night-storm.yaml +++ b/themes/rudydev-theme-edited-tokyo-night-storm.yaml @@ -8,6 +8,7 @@ source: author: "RudyDev" repo: "https://github.com/Rudy-Code/theme-vsc-v1" url: "https://marketplace.visualstudio.com/items?itemName=RudyDev.rudydev-theme-v1" + formats: null colors: bg: "#011C31" fg: "#A9B1D6" diff --git a/themes/rufendev-green-purple.yaml b/themes/rufendev-green-purple.yaml index 66fbd5d2..ad910c51 100644 --- a/themes/rufendev-green-purple.yaml +++ b/themes/rufendev-green-purple.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "rufendev-extensions.rufendev-green-purple" version: "0.0.1" installs: 261 + rating: 0 + ratings: 0 author: "rufendev-extensions" repo: "https://github.com/RufenDev/rufendev-green-purple" url: "https://marketplace.visualstudio.com/items?itemName=rufendev-extensions.rufendev-green-purple" + formats: null colors: bg: "#212126" fg: "#ACACC2" diff --git a/themes/rui-cobalt.yaml b/themes/rui-cobalt.yaml index fd62fce5..bc2abba5 100644 --- a/themes/rui-cobalt.yaml +++ b/themes/rui-cobalt.yaml @@ -8,6 +8,7 @@ source: author: "Rui Xiao" repo: "https://github.com/ruixiao85/VSCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=ruixiao85.rui-color-themes" + formats: null colors: bg: "#002F61" fg: "#E0E0E0" diff --git a/themes/rui-sapphire.yaml b/themes/rui-sapphire.yaml index 795958cb..b4331a07 100644 --- a/themes/rui-sapphire.yaml +++ b/themes/rui-sapphire.yaml @@ -8,6 +8,7 @@ source: author: "Rui Xiao" repo: "https://github.com/ruixiao85/VSCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=ruixiao85.rui-color-themes" + formats: null colors: bg: "#002954" fg: "#E0E0E0" diff --git a/themes/rumba-dark.yaml b/themes/rumba-dark.yaml index 8ed5e779..1cd6f6ba 100644 --- a/themes/rumba-dark.yaml +++ b/themes/rumba-dark.yaml @@ -8,6 +8,7 @@ source: author: "Xoifail" repo: "https://github.com/XoifaiI/rumba" url: "https://marketplace.visualstudio.com/items?itemName=Xoifail.rumba-lang" + formats: null colors: bg: "#202227" fg: "#BCBEC8" diff --git a/themes/runic-minimal.yaml b/themes/runic-minimal.yaml deleted file mode 100644 index 33c0b83f..00000000 --- a/themes/runic-minimal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Runic Minimal" -source: - marketplace_id: "pyxel.runic-theme" - version: "1.2.0" - installs: 2355 - rating: 5 - ratings: 1 - author: "Pyxel" - repo: "https://github.com/xpyxel/runic-theme" - url: "https://marketplace.visualstudio.com/items?itemName=pyxel.runic-theme" -colors: - bg: "#181A1B" - fg: "#D1D1D1" - black: "#000000" - red: "#FF3B30" - green: "#4CD964" - yellow: "#FFCC00" - blue: "#0095FF" - magenta: "#FF2D55" - cyan: "#5AC8FA" - white: "#FFFFFF" - brightBlack: "#686868" - brightRed: "#FF3B30" - brightGreen: "#4CD964" - brightYellow: "#FFCC00" - brightBlue: "#0095FF" - brightMagenta: "#FF2D55" - brightCyan: "#5AC8FA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 77.4 - black: 0 - red: 39.1 - green: 67.2 - yellow: 78.3 - blue: 43.1 - magenta: 38.3 - cyan: 65.4 - white: 106.6 - brightBlack: 22.6 - brightRed: 39.1 - brightGreen: 67.2 - brightYellow: 78.3 - brightBlue: 43.1 - brightMagenta: 38.3 - brightCyan: 65.4 - brightWhite: 106.6 diff --git a/themes/running-wires.yaml b/themes/running-wires.yaml index bcab7d1b..23dcdaaa 100644 --- a/themes/running-wires.yaml +++ b/themes/running-wires.yaml @@ -8,6 +8,7 @@ source: author: "Lorenzo Arcidiacono" repo: null url: "https://marketplace.visualstudio.com/items?itemName=devarci.running-wires" + formats: null colors: bg: "#161A1D" fg: "#D3D3D3" diff --git a/themes/ruru-marijuana.yaml b/themes/ruru-marijuana.yaml index 402c7a80..a0ed200f 100644 --- a/themes/ruru-marijuana.yaml +++ b/themes/ruru-marijuana.yaml @@ -8,6 +8,7 @@ source: author: "ruru" repo: "https://github.com/ruru-m07/ruru-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=ruru-m07.ruru-theme" + formats: null colors: bg: "#0D120E" fg: "#D4D4D4" diff --git a/themes/ruru-moon.yaml b/themes/ruru-moon.yaml index d37588fc..a95575cb 100644 --- a/themes/ruru-moon.yaml +++ b/themes/ruru-moon.yaml @@ -8,6 +8,7 @@ source: author: "ruru" repo: "https://github.com/ruru-m07/ruru-theme-vsc" url: "https://marketplace.visualstudio.com/items?itemName=ruru-m07.ruru-theme" + formats: null colors: bg: "#131313" fg: "#D4D4D4" diff --git a/themes/rust-brown.yaml b/themes/rust-brown.yaml index c442edd0..da5ec99b 100644 --- a/themes/rust-brown.yaml +++ b/themes/rust-brown.yaml @@ -2,12 +2,13 @@ name: "Rust & Brown" source: marketplace_id: "LukianovII.rust-and-brown" version: "1.0.0" - installs: 8 + installs: 9 rating: 0 ratings: 0 author: "LukianovII" repo: "https://github.com/LukianovII/rust-and-brown-vscode" url: "https://marketplace.visualstudio.com/items?itemName=LukianovII.rust-and-brown" + formats: null colors: bg: "#1A1612" fg: "#FFFBF5" diff --git a/themes/rustacean.yaml b/themes/rustacean.yaml index 2a96aae5..06571342 100644 --- a/themes/rustacean.yaml +++ b/themes/rustacean.yaml @@ -1,4 +1,4 @@ -name: "Rustacean" +name: "rustacean" source: marketplace_id: "SkylarCoelho.rustacean" version: "0.0.3" @@ -8,6 +8,7 @@ source: author: "Skylar Coelho" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SkylarCoelho.rustacean" + formats: null colors: bg: "#171203" fg: "#5F5A4D" diff --git a/themes/rusty.yaml b/themes/rusty.yaml index 324831e7..8057635c 100644 --- a/themes/rusty.yaml +++ b/themes/rusty.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "tyanderson91.rusty-venture" version: "1.0.6" installs: 494 + rating: 0 + ratings: 0 author: "tyanderson91" repo: "https://github.com/tyanderson91/rusty-venture" url: "https://marketplace.visualstudio.com/items?itemName=tyanderson91.rusty-venture" + formats: null colors: bg: "#1B1B1B" fg: "#E4E4E4" diff --git a/themes/ryb.yaml b/themes/ryb.yaml index 15921f28..a5c5b61d 100644 --- a/themes/ryb.yaml +++ b/themes/ryb.yaml @@ -8,6 +8,7 @@ source: author: "Alexey Andreenko" repo: null url: "https://marketplace.visualstudio.com/items?itemName=aland97.redyellowblue" + formats: null colors: bg: "#111111" fg: "#EEEEFF" diff --git a/themes/rypjaws.yaml b/themes/rypjaws.yaml index b512b74c..8ba38bc7 100644 --- a/themes/rypjaws.yaml +++ b/themes/rypjaws.yaml @@ -8,6 +8,7 @@ source: author: "Mihir Panchal" repo: "https://github.com/MihirRajeshPanchal/rypjaws" url: "https://marketplace.visualstudio.com/items?itemName=MihirPanchal.rypjaws" + formats: null colors: bg: "#3A3F47" fg: "#ABB2BF" diff --git a/themes/s-kill.yaml b/themes/s-kill.yaml deleted file mode 100644 index ddb40ed3..00000000 --- a/themes/s-kill.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "s-kill" -source: - marketplace_id: "metamorphosis.skill" - version: "0.4.0" - installs: 1198 - rating: 4.5 - ratings: 2 - author: "metamorphosis" - repo: "https://github.com/frontendmonster/vscode-skill-theme" - url: "https://marketplace.visualstudio.com/items?itemName=metamorphosis.skill" -colors: - bg: "#293340" - fg: "#EEEEEE" - black: "#1D212B" - red: "#FE8183" - green: "#61BA86" - yellow: "#FFEC8E" - blue: "#4CB2FF" - magenta: "#D5A1F8" - cyan: "#00EEFF" - white: "#CDD2E9" - brightBlack: "#546386" - brightRed: "#FE8183" - brightGreen: "#9FFCA7" - brightYellow: "#FFB68E" - brightBlue: "#4CB2FF" - brightMagenta: "#D5A1F8" - brightCyan: "#00EEFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 255 - pair: null - contrast: - fg: 91.1 - black: 0 - red: 49.2 - green: 49.9 - yellow: 89.3 - blue: 51.4 - magenta: 57 - cyan: 77.8 - white: 74.1 - brightBlack: 16.2 - brightRed: 49.2 - brightGreen: 86.7 - brightYellow: 66.8 - brightBlue: 51.4 - brightMagenta: 57 - brightCyan: 77.8 - brightWhite: 102.2 diff --git a/themes/s-o-paulo-night.yaml b/themes/s-o-paulo-night.yaml index bb909154..21b721f8 100644 --- a/themes/s-o-paulo-night.yaml +++ b/themes/s-o-paulo-night.yaml @@ -8,6 +8,9 @@ source: author: "CarlosDanielDev" repo: "https://github.com/CarlosDanielDev/saopaulo-night" url: "https://marketplace.visualstudio.com/items?itemName=carlosdanieldev.saopaulo-night" + formats: + vim: "https://raw.githubusercontent.com/CarlosDanielDev/saopaulo-night/main/packages/neovim/colors/saopaulo-night.vim" + nvim: "https://raw.githubusercontent.com/CarlosDanielDev/saopaulo-night/main/packages/neovim/lua/saopaulo-night/init.lua" colors: bg: "#1A1D23" fg: "#B4B8C4" diff --git a/themes/sabbir-theme-3.yaml b/themes/sabbir-theme-3.yaml index 2acfffbb..bdd6acde 100644 --- a/themes/sabbir-theme-3.yaml +++ b/themes/sabbir-theme-3.yaml @@ -8,6 +8,7 @@ source: author: "Md Sabbir" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MdSabbir.sabbir-theme-3" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/sacred.yaml b/themes/sacred.yaml index c885c48b..83ef9f1e 100644 --- a/themes/sacred.yaml +++ b/themes/sacred.yaml @@ -6,6 +6,7 @@ source: author: "Shayan Chakraborty" repo: "https://github.com/shayansgithub/thetriotheme" url: "https://marketplace.visualstudio.com/items?itemName=ShayanChakraborty.sacred" + formats: null colors: bg: "#000000" fg: "#FF2EF2" diff --git a/themes/sadhu.yaml b/themes/sadhu.yaml index 0b3dd302..d11b0072 100644 --- a/themes/sadhu.yaml +++ b/themes/sadhu.yaml @@ -8,6 +8,7 @@ source: author: "bosiakov" repo: "https://github.com/bosiakov/vscode-theme-sadhu" url: "https://marketplace.visualstudio.com/items?itemName=bosiakov.theme-sadhu" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/safari-midnight.yaml b/themes/safari-midnight.yaml index ad9a259b..106d22ae 100644 --- a/themes/safari-midnight.yaml +++ b/themes/safari-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Tanaka Chinengundu" repo: "https://github.com/taqsblaze/savannah-code" url: "https://marketplace.visualstudio.com/items?itemName=TanakaChinengundu.savannah-code" + formats: null colors: bg: "#0F0D0A" fg: "#E8E0D0" diff --git a/themes/safe-dark-theme.yaml b/themes/safe-dark-theme.yaml deleted file mode 100644 index 72cd7f28..00000000 --- a/themes/safe-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "safe dark theme" -source: - marketplace_id: "brenoLucasN.safe-dark-theme" - version: "1.0.2" - installs: 431 - rating: 5 - ratings: 1 - author: "Breno Lucas" - repo: "https://github.com/brenoLucasN/safe-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=brenoLucasN.safe-dark-theme" -colors: - bg: "#1A1A1A" - fg: "#D8DEE9" - black: "#2A2A2A" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#FFFFFF" - brightBlack: "#505050" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#88C0D0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 85 - black: 0 - red: 32.6 - green: 61.3 - yellow: 76.1 - blue: 48.3 - magenta: 46.1 - cyan: 62.3 - white: 106.5 - brightBlack: 12.9 - brightRed: 32.6 - brightGreen: 61.3 - brightYellow: 76.1 - brightBlue: 48.3 - brightMagenta: 46.1 - brightCyan: 62.3 - brightWhite: 106.5 diff --git a/themes/safira.yaml b/themes/safira.yaml deleted file mode 100644 index 0803a333..00000000 --- a/themes/safira.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "safira" -source: - marketplace_id: "yinz.safira" - version: "0.0.9" - installs: 10363 - rating: 5 - ratings: 8 - author: "Yinz" - repo: "https://github.com/yinzdev/safira-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=yinz.safira" -colors: - bg: "#161D26" - fg: "#DCDEDF" - black: "#5E5E5E" - red: "#FF465C" - green: "#0ED78A" - yellow: "#FFCE57" - blue: "#64C7FF" - magenta: "#E560E6" - cyan: "#00C5D3" - white: "#DCDEDF" - brightBlack: "#8C8C8C" - brightRed: "#FF465C" - brightGreen: "#2ADD75" - brightYellow: "#FFCE57" - brightBlue: "#82AAFF" - brightMagenta: "#FF64FF" - brightCyan: "#A6F8E9" - brightWhite: "#EBEBEB" -meta: - mode: "dark" - accent: "pink" - hue: 255 - pair: null - contrast: - fg: 84.8 - black: 18.1 - red: 40.6 - green: 65.6 - yellow: 79.2 - blue: 65.4 - magenta: 45.1 - cyan: 59.9 - white: 84.8 - brightBlack: 38.9 - brightRed: 40.6 - brightGreen: 68.3 - brightYellow: 79.2 - brightBlue: 55.3 - brightMagenta: 52.8 - brightCyan: 91.7 - brightWhite: 93.2 diff --git a/themes/saga-nordic-v1-2.yaml b/themes/saga-nordic-v1-2.yaml deleted file mode 100644 index 207ddffa..00000000 --- a/themes/saga-nordic-v1-2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Saga - Nordic v1.2" -source: - marketplace_id: "bcwsea.theme-saga" - version: "1.2.0" - installs: 2870 - rating: 5 - ratings: 3 - author: "bcwsea" - repo: "https://github.com/bcwdev/theme-saga" - url: "https://marketplace.visualstudio.com/items?itemName=bcwsea.theme-saga" -colors: - bg: "#001420" - fg: "#86949D" - black: "#4B4B4B" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 235 - pair: null - contrast: - fg: 42.8 - black: 11.6 - red: 27 - green: 53.3 - yellow: 85.9 - blue: 27.7 - magenta: 30.1 - cyan: 47.9 - white: 90.3 - brightBlack: 22.4 - brightRed: 38.9 - brightGreen: 63.8 - brightYellow: 95.9 - brightBlue: 40.3 - brightMagenta: 45.7 - brightCyan: 55.7 - brightWhite: 90.3 diff --git a/themes/saga-oceania-v1-2.yaml b/themes/saga-oceania-v1-2.yaml deleted file mode 100644 index 5f9ae6a2..00000000 --- a/themes/saga-oceania-v1-2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Saga - Oceania v1.2" -source: - marketplace_id: "bcwsea.theme-saga" - version: "1.2.0" - installs: 2870 - rating: 5 - ratings: 3 - author: "bcwsea" - repo: "https://github.com/bcwdev/theme-saga" - url: "https://marketplace.visualstudio.com/items?itemName=bcwsea.theme-saga" -colors: - bg: "#191514" - fg: "#A59A89" - black: "#4B4B4B" - red: "#CD3131" - green: "#689C6B" - yellow: "#FEF97B" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#75CB7A" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 47.5 - black: 11.4 - red: 26.8 - green: 41.7 - yellow: 99.7 - blue: 27.5 - magenta: 29.9 - cyan: 47.7 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.7 - brightGreen: 63.3 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.5 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/sage-of-light-color-theme.yaml b/themes/sage-of-light-color-theme.yaml deleted file mode 100644 index f16d0d5d..00000000 --- a/themes/sage-of-light-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "sage-of-light-color-theme" -source: - marketplace_id: "wavebeem.sage-of-light-vscode" - version: "1.0.1" - installs: 276 - rating: 0 - ratings: 0 - author: "Sage Fennel" - repo: "https://github.com/wavebeem/sage-of-light-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.sage-of-light-vscode" -colors: - bg: "#FFFFFF" - fg: "#003836" - black: "#484848" - red: "#D2004F" - green: "#008800" - yellow: "#B74700" - blue: "#006FD6" - magenta: "#A200E9" - cyan: "#008188" - white: "#FFFFFF" - brightBlack: "#484848" - brightRed: "#D2004F" - brightGreen: "#008800" - brightYellow: "#B74700" - brightBlue: "#006FD6" - brightMagenta: "#A200E9" - brightCyan: "#008188" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 98.8 - black: 91.1 - red: 74.5 - green: 71.4 - yellow: 75.8 - blue: 73.4 - magenta: 75.7 - cyan: 71.9 - white: 0 - brightBlack: 91.1 - brightRed: 74.5 - brightGreen: 71.4 - brightYellow: 75.8 - brightBlue: 73.4 - brightMagenta: 75.7 - brightCyan: 71.9 - brightWhite: 0 diff --git a/themes/sage-professional.yaml b/themes/sage-professional.yaml index fb71fa5a..20c373da 100644 --- a/themes/sage-professional.yaml +++ b/themes/sage-professional.yaml @@ -2,12 +2,13 @@ name: "Sage Professional" source: marketplace_id: "cubancodepath.jv-sage-professional" version: "2.1.0" - installs: 8 + installs: 10 rating: 0 ratings: 0 author: "Bárbaro Javier" repo: "https://github.com/cubancodepath/sage-professional-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=cubancodepath.jv-sage-professional" + formats: null colors: bg: "#1E2A2E" fg: "#D4DDD8" diff --git a/themes/sage-siren-theme.yaml b/themes/sage-siren-theme.yaml index 08a48d9f..c656fe03 100644 --- a/themes/sage-siren-theme.yaml +++ b/themes/sage-siren-theme.yaml @@ -8,6 +8,7 @@ source: author: "c3ne3s" repo: null url: "https://marketplace.visualstudio.com/items?itemName=c3ne3s.sage-siren-theme" + formats: null colors: bg: "#141716" fg: "#F8FAFC" diff --git a/themes/sage.yaml b/themes/sage.yaml index 30d2ab7f..a47e4c6b 100644 --- a/themes/sage.yaml +++ b/themes/sage.yaml @@ -6,6 +6,7 @@ source: author: "nashpatty" repo: null url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.sage-theme" + formats: null colors: bg: "#262626" fg: "#BCBCBC" diff --git a/themes/sailor-at-sea.yaml b/themes/sailor-at-sea.yaml deleted file mode 100644 index 205e9b88..00000000 --- a/themes/sailor-at-sea.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "sailor-at-sea" -source: - marketplace_id: "rikkarth.ship-at-sea" - version: "0.0.3" - installs: 564 - rating: 5 - ratings: 2 - author: "rikkarth" - repo: "https://github.com/rikkarth/ship-at-sea" - url: "https://marketplace.visualstudio.com/items?itemName=rikkarth.ship-at-sea" -colors: - bg: "#070707" - fg: "#EAEAEA" - black: "#231E1A" - red: "#E64528" - green: "#F5B56A" - yellow: "#F07E1B" - blue: "#D0A46C" - magenta: "#F28E43" - cyan: "#BFAFA4" - white: "#EAEAEA" - brightBlack: "#6E625A" - brightRed: "#E64528" - brightGreen: "#F5B56A" - brightYellow: "#F07E1B" - brightBlue: "#D0A46C" - brightMagenta: "#F28E43" - brightCyan: "#BFAFA4" - brightWhite: "#EAEAEA" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.1 - black: 0 - red: 35.6 - green: 69.5 - yellow: 49.6 - blue: 57.2 - magenta: 54.9 - cyan: 60.5 - white: 94.1 - brightBlack: 22.2 - brightRed: 35.6 - brightGreen: 69.5 - brightYellow: 49.6 - brightBlue: 57.2 - brightMagenta: 54.9 - brightCyan: 60.5 - brightWhite: 94.1 diff --git a/themes/sakai-theme-jupiter.yaml b/themes/sakai-theme-jupiter.yaml index caedf044..f7e6f753 100644 --- a/themes/sakai-theme-jupiter.yaml +++ b/themes/sakai-theme-jupiter.yaml @@ -8,6 +8,7 @@ source: author: "Sakai" repo: "https://github.com/Sakai-UI/Sakai-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Sakai.sakai" + formats: null colors: bg: "#232136" fg: "#E0DEF4" diff --git a/themes/sakai-theme-moon.yaml b/themes/sakai-theme-moon.yaml index 87f52688..6b5d2cc7 100644 --- a/themes/sakai-theme-moon.yaml +++ b/themes/sakai-theme-moon.yaml @@ -8,6 +8,7 @@ source: author: "Sakai" repo: "https://github.com/Sakai-UI/Sakai-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Sakai.sakai" + formats: null colors: bg: "#191724" fg: "#E0DEF4" diff --git a/themes/sakai-theme-saturn.yaml b/themes/sakai-theme-saturn.yaml index 5e576e54..80a8273d 100644 --- a/themes/sakai-theme-saturn.yaml +++ b/themes/sakai-theme-saturn.yaml @@ -8,6 +8,7 @@ source: author: "Sakai" repo: "https://github.com/Sakai-UI/Sakai-Theme" url: "https://marketplace.visualstudio.com/items?itemName=Sakai.sakai" + formats: null colors: bg: "#212836" fg: "#E0DEF4" diff --git a/themes/sakura-blossom-midnight.yaml b/themes/sakura-blossom-midnight.yaml deleted file mode 100644 index 82b73519..00000000 --- a/themes/sakura-blossom-midnight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sakura Blossom Midnight" -source: - marketplace_id: "agustinhopneto.sakura-blossom" - version: "0.0.4" - installs: 1415 - rating: 5 - ratings: 2 - author: "Agustinho Neto" - repo: "https://github.com/agustinhopneto/sakura-blossom" - url: "https://marketplace.visualstudio.com/items?itemName=agustinhopneto.sakura-blossom" -colors: - bg: "#1D161B" - fg: "#D1C7CA" - black: "#332430" - red: "#C05039" - green: "#70CD9E" - yellow: "#E3B75F" - blue: "#85C1E9" - magenta: "#B6A3E5" - cyan: "#F688A5" - white: "#D1C7CA" - brightBlack: "#9F898F" - brightRed: "#C05039" - brightGreen: "#70CD9E" - brightYellow: "#E3B75F" - brightBlue: "#85C1E9" - brightMagenta: "#B6A3E5" - brightCyan: "#F688A5" - brightWhite: "#D1C7CA" -meta: - mode: "dark" - accent: "orange" - hue: 337 - pair: null - contrast: - fg: 73 - black: 0 - red: 28.5 - green: 64.7 - yellow: 66 - blue: 64.1 - magenta: 56.8 - cyan: 55.2 - white: 73 - brightBlack: 40.7 - brightRed: 28.5 - brightGreen: 64.7 - brightYellow: 66 - brightBlue: 64.1 - brightMagenta: 56.8 - brightCyan: 55.2 - brightWhite: 73 diff --git a/themes/sakura-blossom-theme.yaml b/themes/sakura-blossom-theme.yaml deleted file mode 100644 index 1a07f105..00000000 --- a/themes/sakura-blossom-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "sakura-blossom-theme" -source: - marketplace_id: "DevangTomar.vscode-diverse-dye" - version: "1.3.0" - installs: 2595 - rating: 5 - ratings: 3 - author: "Devang Tomar ⭐" - repo: "https://github.com/devangtomar/vscode-diverse-dye" - url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" -colors: - bg: "#21222E" - fg: "#F2A2D6" - black: "#BC8DAB" - red: "#EC3737" - green: "#5AFFF7" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#EC34EC" - cyan: "#75BEFF" - white: "#F2A2D6" - brightBlack: "#666666" - brightRed: "#FF7B7B" - brightGreen: "#77E2B7" - brightYellow: "#F7F79A" - brightBlue: "#3B8EEA" - brightMagenta: "#EA8FEA" - brightCyan: "#29B8DB" - brightWhite: "#FFB3F7" -meta: - mode: "dark" - accent: "pink" - hue: 281 - pair: null - contrast: - fg: 63.2 - black: 45.6 - red: 32.9 - green: 90.6 - yellow: 84.1 - blue: 25.9 - magenta: 39.9 - cyan: 61.6 - white: 63.2 - brightBlack: 20.5 - brightRed: 50.7 - brightGreen: 74.5 - brightYellow: 96.7 - brightBlue: 38.4 - brightMagenta: 56.9 - brightCyan: 53.8 - brightWhite: 73.1 diff --git a/themes/sakura-dreams-dark.yaml b/themes/sakura-dreams-dark.yaml deleted file mode 100644 index 35537811..00000000 --- a/themes/sakura-dreams-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sakura Dreams Dark" -source: - marketplace_id: "nhcarrigan.naomis-themes" - version: "2.3.0" - installs: 68 - rating: 0 - ratings: 0 - author: "NHCarrigan" - repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" -colors: - bg: "#2A0A18" - fg: "#FFB6C1" - black: "#4A112A" - red: "#FF69B4" - green: "#E35A8F" - yellow: "#D45A88" - blue: "#C96385" - magenta: "#E35A8F" - cyan: "#FF9AAC" - white: "#FFD1DC" - brightBlack: "#3A0D22" - brightRed: "#FF1493" - brightGreen: "#FF77A8" - brightYellow: "#FFB6C1" - brightBlue: "#D87093" - brightMagenta: "#FF85A2" - brightCyan: "#FFAFC5" - brightWhite: "#FFF5F7" -meta: - mode: "dark" - accent: "red" - hue: 356 - pair: null - contrast: - fg: 73.1 - black: 0 - red: 50 - green: 39.6 - yellow: 36.3 - blue: 36 - magenta: 39.6 - cyan: 62.7 - white: 84.7 - brightBlack: 0 - brightRed: 39.1 - brightGreen: 52.7 - brightYellow: 73.1 - brightBlue: 42.4 - brightMagenta: 56.1 - brightCyan: 70.7 - brightWhite: 101.7 diff --git a/themes/sakura-dreams.yaml b/themes/sakura-dreams.yaml deleted file mode 100644 index 9f559885..00000000 --- a/themes/sakura-dreams.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sakura Dreams" -source: - marketplace_id: "nhcarrigan.naomis-themes" - version: "2.3.0" - installs: 68 - rating: 0 - ratings: 0 - author: "NHCarrigan" - repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" -colors: - bg: "#FFEFEF" - fg: "#D87093" - black: "#FFE4E8" - red: "#FF1493" - green: "#FF69B4" - yellow: "#FFB6C1" - blue: "#DB7093" - magenta: "#FF85A2" - cyan: "#FFAFC5" - white: "#FFD1DC" - brightBlack: "#FFEFEF" - brightRed: "#FF0066" - brightGreen: "#FF77A8" - brightYellow: "#FFA6C9" - brightBlue: "#F08080" - brightMagenta: "#FF9AAC" - brightCyan: "#FFC0CB" - brightWhite: "#FFF5F7" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 50.8 - black: 0 - red: 54.1 - green: 43.4 - yellow: 21.3 - blue: 50.3 - magenta: 37.5 - cyan: 23.5 - white: 10.3 - brightBlack: 0 - brightRed: 55.7 - brightGreen: 40.8 - brightYellow: 26.3 - brightBlue: 42.8 - brightMagenta: 31.2 - brightCyan: 17.4 - brightWhite: 0 diff --git a/themes/sakura-theme.yaml b/themes/sakura-theme.yaml deleted file mode 100644 index 7e99d3d0..00000000 --- a/themes/sakura-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sakura Theme" -source: - marketplace_id: "AetherDes.sakura-aetherdes" - version: "0.0.1" - installs: 1087 - rating: 0 - ratings: 0 - author: "AetherDes" - repo: "https://github.com/AetherDeS/Sakura-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=AetherDes.sakura-aetherdes" -colors: - bg: "#070B11" - fg: "#00D7FF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 257 - pair: null - contrast: - fg: 72.1 - black: 0 - red: 27.5 - green: 53.8 - yellow: 86.4 - blue: 28.3 - magenta: 30.6 - cyan: 48.4 - white: 90.8 - brightBlack: 22.9 - brightRed: 39.4 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.8 - brightMagenta: 46.2 - brightCyan: 56.2 - brightWhite: 90.8 diff --git a/themes/sakura-v2-by-leroiadib.yaml b/themes/sakura-v2-by-leroiadib.yaml index a2311107..ff633081 100644 --- a/themes/sakura-v2-by-leroiadib.yaml +++ b/themes/sakura-v2-by-leroiadib.yaml @@ -8,6 +8,7 @@ source: author: "LeRoiAdib" repo: "https://github.com/RomainLAU/Sakura-Theme" url: "https://marketplace.visualstudio.com/items?itemName=LeRoiAdib.sakura-v2-lra" + formats: null colors: bg: "#20252C" fg: "#FBEAF5" diff --git a/themes/sakura.yaml b/themes/sakura.yaml index 3ea3df28..d3880fdb 100644 --- a/themes/sakura.yaml +++ b/themes/sakura.yaml @@ -8,6 +8,8 @@ source: author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" + formats: + nvim: "https://raw.githubusercontent.com/volskaya/irrelevant/main/extensions/neovim/lua/irrelevant/colors.lua" colors: bg: "#1C1C1C" fg: "#FFFFFF" diff --git a/themes/sakya-dorje.yaml b/themes/sakya-dorje.yaml deleted file mode 100644 index 8ec0a1b6..00000000 --- a/themes/sakya-dorje.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sakya Dorje" -source: - marketplace_id: "mouselee.sakya-theme" - version: "0.2.0" - installs: 19 - rating: 5 - ratings: 1 - author: "mouselee" - repo: "https://github.com/XuanLee-HEALER/sakya-theme" - url: "https://marketplace.visualstudio.com/items?itemName=mouselee.sakya-theme" -colors: - bg: "#1B1B2A" - fg: "#E8E0D4" - black: "#0C0C14" - red: "#BB4441" - green: "#527559" - yellow: "#D2B450" - blue: "#5B8AB8" - magenta: "#C88090" - cyan: "#527559" - white: "#C4BCAE" - brightBlack: "#46465C" - brightRed: "#BB4441" - brightGreen: "#527559" - brightYellow: "#E0C888" - brightBlue: "#5B8AB8" - brightMagenta: "#C88090" - brightCyan: "#527559" - brightWhite: "#E8E0D4" -meta: - mode: "dark" - accent: "orange" - hue: 284 - pair: null - contrast: - fg: 86.8 - black: 0 - red: 25 - green: 24.4 - yellow: 61.5 - blue: 36.2 - magenta: 43.3 - cyan: 24.4 - white: 65.1 - brightBlack: 9.6 - brightRed: 25 - brightGreen: 24.4 - brightYellow: 72.8 - brightBlue: 36.2 - brightMagenta: 43.3 - brightCyan: 24.4 - brightWhite: 86.8 diff --git a/themes/samacaca.yaml b/themes/samacaca.yaml index 908caff8..069b34c4 100644 --- a/themes/samacaca.yaml +++ b/themes/samacaca.yaml @@ -1,4 +1,4 @@ -name: "Samacaca" +name: "samacaca" source: marketplace_id: "josymarss.samacaca" version: "1.1.0" @@ -8,6 +8,7 @@ source: author: "josymarss" repo: "https://github.com/josymarss/samacaca" url: "https://marketplace.visualstudio.com/items?itemName=josymarss.samacaca" + formats: null colors: bg: "#091624" fg: "#FFFFFF" diff --git a/themes/samgido-theme-dark.yaml b/themes/samgido-theme-dark.yaml index a3e026a9..d1a33719 100644 --- a/themes/samgido-theme-dark.yaml +++ b/themes/samgido-theme-dark.yaml @@ -8,6 +8,7 @@ source: author: "Samuel Gido" repo: null url: "https://marketplace.visualstudio.com/items?itemName=samuelgido.samgido-theme" + formats: null colors: bg: "#1A191A" fg: "#8C8C8C" diff --git a/themes/samito-nest-graphql-theme.yaml b/themes/samito-nest-graphql-theme.yaml index c948e9c3..4496d6fd 100644 --- a/themes/samito-nest-graphql-theme.yaml +++ b/themes/samito-nest-graphql-theme.yaml @@ -8,6 +8,7 @@ source: author: "samito-themes" repo: "https://github.com/SamitoX4/samito-nest-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=samito-themes.samito-nest-graphql-theme-vscode" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/samito-nest-theme.yaml b/themes/samito-nest-theme.yaml deleted file mode 100644 index 6ab98986..00000000 --- a/themes/samito-nest-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Samito Nest Theme" -source: - marketplace_id: "samito-themes.samito-nest-theme-vscode" - version: "0.0.1" - installs: 1790 - rating: 0 - ratings: 0 - author: "samito-themes" - repo: "https://github.com/SamitoX4/samito-nest-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=samito-themes.samito-nest-theme-vscode" -colors: - bg: "#0A0A0A" - fg: "#F5F5F5" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#F5F5F5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#AE0000" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 101.2 - black: 0 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.3 - magenta: 30.6 - cyan: 48.4 - white: 101.2 - brightBlack: 22.9 - brightRed: 39.4 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.9 - brightMagenta: 46.2 - brightCyan: 56.3 - brightWhite: 18.5 diff --git a/themes/samito-next-theme.yaml b/themes/samito-next-theme.yaml index 63091232..1e67395e 100644 --- a/themes/samito-next-theme.yaml +++ b/themes/samito-next-theme.yaml @@ -8,6 +8,7 @@ source: author: "samito-themes" repo: "https://github.com/SamitoX4/samito-nest-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=samito-themes.samito-next-theme-vscode" + formats: null colors: bg: "#080808" fg: "#FFFFFF" diff --git a/themes/samurai.yaml b/themes/samurai.yaml deleted file mode 100644 index d6bbdd7f..00000000 --- a/themes/samurai.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Samurai" -source: - marketplace_id: "ParsaSam.samurai" - version: "0.5.3" - installs: 2180 - rating: 5 - ratings: 3 - author: "Parsa Samadnejad" - repo: "https://github.com/TroddenSpade/Samurai-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=ParsaSam.samurai" -colors: - bg: "#222222" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#D9D9D9" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.1 - black: 0 - red: 25.3 - green: 51.6 - yellow: 84.2 - blue: 26 - magenta: 28.3 - cyan: 46.1 - white: 81.1 - brightBlack: 20.6 - brightRed: 37.1 - brightGreen: 62.1 - brightYellow: 94.2 - brightBlue: 38.6 - brightMagenta: 44 - brightCyan: 54 - brightWhite: 105.5 diff --git a/themes/samyak-bumb.yaml b/themes/samyak-bumb.yaml index 9071aff3..647f9569 100644 --- a/themes/samyak-bumb.yaml +++ b/themes/samyak-bumb.yaml @@ -8,6 +8,7 @@ source: author: "Samyak Bumb" repo: "https://github.com/Samyak-Bumb/Samyak-Bumb-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SamyakBumb.samyak" + formats: null colors: bg: "#00002A" fg: "#BACCE0" diff --git a/themes/sanam-dark-pro.yaml b/themes/sanam-dark-pro.yaml index 64dcc4a7..c25013b7 100644 --- a/themes/sanam-dark-pro.yaml +++ b/themes/sanam-dark-pro.yaml @@ -1,4 +1,4 @@ -name: "sanam-dark-pro" +name: "Sanam Dark Pro" source: marketplace_id: "sanam.sanam-dark-pro" version: "0.0.4" @@ -8,6 +8,7 @@ source: author: "Sanam Pakuwal" repo: "https://github.com/sanamhub/sanam-dark-pro" url: "https://marketplace.visualstudio.com/items?itemName=sanam.sanam-dark-pro" + formats: null colors: bg: "#000000" fg: "#DBDBDB" diff --git a/themes/sandcastle.yaml b/themes/sandcastle.yaml deleted file mode 100644 index 896465c0..00000000 --- a/themes/sandcastle.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sandcastle" -source: - marketplace_id: "ryanolsonx.sandcastle" - version: "0.1.0" - installs: 846 - rating: 0 - ratings: 0 - author: "Ryan Olson" - repo: "https://github.com/ryanolsonx/vscode-sandcastle-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ryanolsonx.sandcastle" -colors: - bg: "#272C35" - fg: "#FFF4BA" - black: "#000000" - red: "#C15E7A" - green: "#7AA697" - yellow: "#A67C2C" - blue: "#3D8C8C" - magenta: "#B17000" - cyan: "#7AA697" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#C15E7A" - brightGreen: "#7AA697" - brightYellow: "#A67C2C" - brightBlue: "#3D8C8C" - brightMagenta: "#B17000" - brightCyan: "#7AA697" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "yellow" - hue: 262 - pair: null - contrast: - fg: 95.7 - black: 0 - red: 29.9 - green: 45.1 - yellow: 32.2 - blue: 30.9 - magenta: 30.1 - cyan: 45.1 - white: 86.8 - brightBlack: 18.9 - brightRed: 29.9 - brightGreen: 45.1 - brightYellow: 32.2 - brightBlue: 30.9 - brightMagenta: 30.1 - brightCyan: 45.1 - brightWhite: 86.8 diff --git a/themes/sanded.yaml b/themes/sanded.yaml index d7487be0..186e7290 100644 --- a/themes/sanded.yaml +++ b/themes/sanded.yaml @@ -1,4 +1,4 @@ -name: "sanded" +name: "Sanded" source: marketplace_id: "PaulBoelens.sanded" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Paul Boelens" repo: "https://dev.azure.com/zerorain/_git/sanded" url: "https://marketplace.visualstudio.com/items?itemName=PaulBoelens.sanded" + formats: null colors: bg: "#FFF7E3" fg: "#C9C9C9" diff --git a/themes/sandstorm.yaml b/themes/sandstorm.yaml index e1a842c8..31a4da99 100644 --- a/themes/sandstorm.yaml +++ b/themes/sandstorm.yaml @@ -8,6 +8,7 @@ source: author: "parano" repo: "https://github.com/parsa-ra/SandStorm-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=parano.theme-sandstorm" + formats: null colors: bg: "#A3987A" fg: "#212917" diff --git a/themes/sanemi-shinazugawa.yaml b/themes/sanemi-shinazugawa.yaml deleted file mode 100644 index 6c495927..00000000 --- a/themes/sanemi-shinazugawa.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sanemi Shinazugawa" -source: - marketplace_id: "devLocifer.hashira-code-theme" - version: "0.0.1" - installs: 739 - rating: 5 - ratings: 1 - author: "devLocifer" - repo: "https://github.com/diazdjul19/hashira-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#CD5C5C" - green: "#006400" - yellow: "#B8860B" - blue: "#4682B4" - magenta: "#8B008B" - cyan: "#008B8B" - white: "#D3D3D3" - brightBlack: "#696969" - brightRed: "#FF0000" - brightGreen: "#00FF00" - brightYellow: "#FFFF00" - brightBlue: "#0000FF" - brightMagenta: "#FF00FF" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106 - black: 106 - red: 66.5 - green: 85.1 - yellow: 59.6 - blue: 68 - magenta: 87 - cyan: 67.9 - white: 23.3 - brightBlack: 77.4 - brightRed: 64.1 - brightGreen: 17.1 - brightYellow: 0 - brightBlue: 85.8 - brightMagenta: 55.6 - brightCyan: 11.8 - brightWhite: 0 diff --git a/themes/sanrio.yaml b/themes/sanrio.yaml deleted file mode 100644 index 14c0e16f..00000000 --- a/themes/sanrio.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sanrio" -source: - marketplace_id: "dango.cinnamoroll-dark-theme" - version: "1.1.1" - installs: 652 - rating: 5 - ratings: 1 - author: "Daniel Radosa" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=dango.cinnamoroll-dark-theme" -colors: - bg: "#191919" - fg: "#FF7B7B" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 52.1 - black: 0 - red: 26.5 - green: 51.5 - yellow: 42.6 - blue: 14.8 - magenta: 25.9 - cyan: 39.9 - white: 14.9 - brightBlack: 21.8 - brightRed: 26.5 - brightGreen: 60.1 - brightYellow: 60.1 - brightBlue: 14.8 - brightMagenta: 25.9 - brightCyan: 39.9 - brightWhite: 52.3 diff --git a/themes/sapporo.yaml b/themes/sapporo.yaml index ed77a0d5..689705ff 100644 --- a/themes/sapporo.yaml +++ b/themes/sapporo.yaml @@ -8,6 +8,7 @@ source: author: "Feefoolec" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Feefoolec.sapporo" + formats: null colors: bg: "#1C1C1F" fg: "#ADADBA" diff --git a/themes/saransk-night.yaml b/themes/saransk-night.yaml index 9612ecf5..140cca09 100644 --- a/themes/saransk-night.yaml +++ b/themes/saransk-night.yaml @@ -8,6 +8,7 @@ source: author: "Aleksander Savushkin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AleksanderSavushkin.saransk-night" + formats: null colors: bg: "#20293B" fg: "#D4D4D4" diff --git a/themes/saraswati-cool-light-theme.yaml b/themes/saraswati-cool-light-theme.yaml index 1a356e79..92cafbec 100644 --- a/themes/saraswati-cool-light-theme.yaml +++ b/themes/saraswati-cool-light-theme.yaml @@ -8,6 +8,7 @@ source: author: "Bhoot Studio" repo: "https://github.com/DebkantaMondal/Bhoot-VS-Theme" url: "https://marketplace.visualstudio.com/items?itemName=BhootStudio.bhoot-theme" + formats: null colors: bg: "#FDFDFD" fg: "#1F1F1F" diff --git a/themes/sarcastic-white.yaml b/themes/sarcastic-white.yaml index 73afa4cb..6f37866f 100644 --- a/themes/sarcastic-white.yaml +++ b/themes/sarcastic-white.yaml @@ -8,6 +8,10 @@ source: author: "Tristan White" repo: "https://github.com/triss90/sarcastic_white" url: "https://marketplace.visualstudio.com/items?itemName=TristanWhite.sarcastic-white" + formats: + iterm2: "https://raw.githubusercontent.com/triss90/sarcastic_white/master/public_html/ports/iterm2/sarcastic-white.itermcolors" + warp: "https://raw.githubusercontent.com/triss90/sarcastic_white/master/public_html/ports/warp/sarcastic-white.yaml" + sublime: "https://raw.githubusercontent.com/triss90/sarcastic_white/master/sarcastic-white-sublimetext4/Sarcastic White.sublime-color-scheme" colors: bg: "#171423" fg: "#D8DDE7" diff --git a/themes/sargam.yaml b/themes/sargam.yaml index aa9b33f1..665a3a28 100644 --- a/themes/sargam.yaml +++ b/themes/sargam.yaml @@ -8,6 +8,7 @@ source: author: "sargam" repo: "https://github.com/SargamDesign/sargam-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sargam.sargam" + formats: null colors: bg: "#100F0F" fg: "#E7E5DF" diff --git a/themes/satoru-gojo-blue.yaml b/themes/satoru-gojo-blue.yaml deleted file mode 100644 index bc43fb33..00000000 --- a/themes/satoru-gojo-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "satoru-gojo-blue" -source: - marketplace_id: "dev-alm.satoru-gojo-theme" - version: "0.1.8" - installs: 1317 - rating: 0 - ratings: 0 - author: "Gustavo Cezar de Almeida" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=dev-alm.satoru-gojo-theme" -colors: - bg: "#000000" - fg: "#FFE300" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 89.5 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/satoru-gojo-white.yaml b/themes/satoru-gojo-white.yaml deleted file mode 100644 index 56477ae0..00000000 --- a/themes/satoru-gojo-white.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "satoru-gojo-white" -source: - marketplace_id: "dev-alm.satoru-gojo-theme" - version: "0.1.8" - installs: 1317 - rating: 0 - ratings: 0 - author: "Gustavo Cezar de Almeida" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=dev-alm.satoru-gojo-theme" -colors: - bg: "#000000" - fg: "#44FF00" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 87.2 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/satoshi-nakamoto-theme.yaml b/themes/satoshi-nakamoto-theme.yaml index 8b8d70c3..6e97d49a 100644 --- a/themes/satoshi-nakamoto-theme.yaml +++ b/themes/satoshi-nakamoto-theme.yaml @@ -8,6 +8,7 @@ source: author: "Michael Macaulay" repo: "https://github.com/MichaelMacaulay/Satoshi-Nakamoto_Theme" url: "https://marketplace.visualstudio.com/items?itemName=Michael-Macaulay.satoshi-nakamoto-theme" + formats: null colors: bg: "#0E0D1A" fg: "#DDDFE9" diff --git a/themes/satsoomahhh.yaml b/themes/satsoomahhh.yaml index 7a49bd35..2d6994ce 100644 --- a/themes/satsoomahhh.yaml +++ b/themes/satsoomahhh.yaml @@ -8,6 +8,7 @@ source: author: "booleohhh" repo: null url: "https://marketplace.visualstudio.com/items?itemName=booleohhh.satsoomahhh-theme" + formats: null colors: bg: "#222222" fg: "#ABB2BF" diff --git a/themes/satu.yaml b/themes/satu.yaml index 9347a738..a7593bad 100644 --- a/themes/satu.yaml +++ b/themes/satu.yaml @@ -8,6 +8,7 @@ source: author: "Docutheme" repo: "https://github.com/feanra/docutheme" url: "https://marketplace.visualstudio.com/items?itemName=Docutheme.docutheme" + formats: null colors: bg: "#373741" fg: "#81ECF3" diff --git a/themes/saturated-dark-terminal.yaml b/themes/saturated-dark-terminal.yaml index c9c20bab..16f6f5d2 100644 --- a/themes/saturated-dark-terminal.yaml +++ b/themes/saturated-dark-terminal.yaml @@ -8,6 +8,7 @@ source: author: "Pukima" repo: "https://github.com/Pukimaa/SDTerminal-vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=Pukima.sd-terminal" + formats: null colors: bg: "#000000" fg: "#EEFFFF" diff --git a/themes/saturn-moonlight.yaml b/themes/saturn-moonlight.yaml index 4b7e2543..904f45b4 100644 --- a/themes/saturn-moonlight.yaml +++ b/themes/saturn-moonlight.yaml @@ -8,6 +8,7 @@ source: author: "Artur Sponchiado" repo: "https://github.com/arturspon/SaturnMoonlight" url: "https://marketplace.visualstudio.com/items?itemName=ArturSponchiado.saturnmoonlight" + formats: null colors: bg: "#2B2E4A" fg: "#D4D4D4" diff --git a/themes/saturnblue-dark.yaml b/themes/saturnblue-dark.yaml deleted file mode 100644 index 5911b3c6..00000000 --- a/themes/saturnblue-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "saturnblue-dark" -source: - marketplace_id: "saturn-darkblue.saturn-darkblue" - version: "0.0.1" - installs: 236 - author: "saturn-darkblue" - repo: "https://github.com/wesvm/vscode-saturn-darkblue" - url: "https://marketplace.visualstudio.com/items?itemName=saturn-darkblue.saturn-darkblue" -colors: - bg: "#0D1117" - fg: "#DDDDDD" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 258 - pair: null - contrast: - fg: 85.5 - black: 0 - red: 27.2 - green: 53.5 - yellow: 86.1 - blue: 27.9 - magenta: 30.3 - cyan: 48.1 - white: 90.5 - brightBlack: 22.5 - brightRed: 39.1 - brightGreen: 64 - brightYellow: 96.1 - brightBlue: 40.5 - brightMagenta: 45.9 - brightCyan: 55.9 - brightWhite: 90.5 diff --git a/themes/sauna-theme.yaml b/themes/sauna-theme.yaml index 45b173fa..b96acf24 100644 --- a/themes/sauna-theme.yaml +++ b/themes/sauna-theme.yaml @@ -8,6 +8,7 @@ source: author: "sauna" repo: "https://github.com/wearesauna/theme" url: "https://marketplace.visualstudio.com/items?itemName=sauna.sauna-theme" + formats: null colors: bg: "#151535" fg: "#A5B6FF" diff --git a/themes/saunf.yaml b/themes/saunf.yaml index f226edf7..638df725 100644 --- a/themes/saunf.yaml +++ b/themes/saunf.yaml @@ -8,6 +8,7 @@ source: author: "hnrchrdl" repo: "https://github.com/hnrchrdl/saunf-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=hnrchrdl.saunf-theme-vscode" + formats: null colors: bg: "#2C3A47" fg: "#FFFFFF" diff --git a/themes/sauve.yaml b/themes/sauve.yaml index fc2d4333..712b80cd 100644 --- a/themes/sauve.yaml +++ b/themes/sauve.yaml @@ -8,6 +8,7 @@ source: author: "Chris Pikul" repo: "https://github.com/chris-pikul/vscode-suave" url: "https://marketplace.visualstudio.com/items?itemName=chris-pikul.suave" + formats: null colors: bg: "#0A0A09" fg: "#EEEEDF" diff --git a/themes/savannah-dawn.yaml b/themes/savannah-dawn.yaml index 659e49cc..762ded36 100644 --- a/themes/savannah-dawn.yaml +++ b/themes/savannah-dawn.yaml @@ -8,6 +8,7 @@ source: author: "Tanaka Chinengundu" repo: "https://github.com/taqsblaze/savannah-code" url: "https://marketplace.visualstudio.com/items?itemName=TanakaChinengundu.savannah-code" + formats: null colors: bg: "#F5EFE0" fg: "#2E2416" diff --git a/themes/savannah-sunset.yaml b/themes/savannah-sunset.yaml index c4dc3a3c..df3f2ce4 100644 --- a/themes/savannah-sunset.yaml +++ b/themes/savannah-sunset.yaml @@ -8,6 +8,7 @@ source: author: "Tanaka Chinengundu" repo: "https://github.com/taqsblaze/savannah-code" url: "https://marketplace.visualstudio.com/items?itemName=TanakaChinengundu.savannah-code" + formats: null colors: bg: "#1C1A17" fg: "#CFCFCF" diff --git a/themes/save-my-eyes.yaml b/themes/save-my-eyes.yaml index 337aa5ef..f193b515 100644 --- a/themes/save-my-eyes.yaml +++ b/themes/save-my-eyes.yaml @@ -8,6 +8,7 @@ source: author: "ZaphodAndo" repo: "https://github.com/ZaphodAndo/save-my-eyes" url: "https://marketplace.visualstudio.com/items?itemName=ZaphodAndo.save-my-eyes" + formats: null colors: bg: "#2D2D2D" fg: "#B3B9C5" diff --git a/themes/savetemin.yaml b/themes/savetemin.yaml index 5015afd3..76c6bb17 100644 --- a/themes/savetemin.yaml +++ b/themes/savetemin.yaml @@ -8,6 +8,7 @@ source: author: "Ulises Basualdo" repo: "https://github.com/ulisesbasualdo/savetemin" url: "https://marketplace.visualstudio.com/items?itemName=ulisesbasualdo.savetemin" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/sazardev.yaml b/themes/sazardev.yaml deleted file mode 100644 index b7995503..00000000 --- a/themes/sazardev.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "sazardev" -source: - marketplace_id: "sazardev.carbon-code-theme" - version: "1.2.0" - installs: 903 - rating: 5 - ratings: 1 - author: "sazardev" - repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" -colors: - bg: "#0A0C0A" - fg: "#F5F5F5" - black: "#000000" - red: "#FF0055" - green: "#00FF88" - yellow: "#FFDD00" - blue: "#0088FF" - magenta: "#FF00DD" - cyan: "#00FFDD" - white: "#FFFFFF" - brightBlack: "#333333" - brightRed: "#FF3377" - brightGreen: "#33FFAA" - brightYellow: "#FFEE33" - brightBlue: "#3399FF" - brightMagenta: "#FF33EE" - brightCyan: "#33FFEE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 101.1 - black: 0 - red: 38 - green: 87.6 - yellow: 86.7 - blue: 39.6 - magenta: 43.6 - cyan: 90.3 - white: 107.7 - brightBlack: 0 - brightRed: 40.7 - brightGreen: 88.8 - brightYellow: 94.5 - brightBlue: 46.2 - brightMagenta: 46.5 - brightCyan: 91.5 - brightWhite: 107.7 diff --git a/themes/scarlet-witch-dark.yaml b/themes/scarlet-witch-dark.yaml index 89cd3f99..675b45d6 100644 --- a/themes/scarlet-witch-dark.yaml +++ b/themes/scarlet-witch-dark.yaml @@ -8,6 +8,7 @@ source: author: "BoBenc" repo: "https://github.com/BoBenc/Scarlet-Witch-Theme" url: "https://marketplace.visualstudio.com/items?itemName=BoBenc.scarlet-witch-theme" + formats: null colors: bg: "#120414" fg: "#F5E6D3" diff --git a/themes/scarlet-witch-light.yaml b/themes/scarlet-witch-light.yaml index 9297246e..d5348c0d 100644 --- a/themes/scarlet-witch-light.yaml +++ b/themes/scarlet-witch-light.yaml @@ -8,6 +8,7 @@ source: author: "BoBenc" repo: "https://github.com/BoBenc/Scarlet-Witch-Theme" url: "https://marketplace.visualstudio.com/items?itemName=BoBenc.scarlet-witch-theme" + formats: null colors: bg: "#FAF5FB" fg: "#1A0C15" diff --git a/themes/scarlet.yaml b/themes/scarlet.yaml index b19f2cd3..83c17f4b 100644 --- a/themes/scarlet.yaml +++ b/themes/scarlet.yaml @@ -8,6 +8,7 @@ source: author: "Ethylia" repo: "https://github.com/Ethylia/vscode-scarlet-theme" url: "https://marketplace.visualstudio.com/items?itemName=Ethylia.scarlet-theme" + formats: null colors: bg: "#151515" fg: "#CDCDCD" diff --git a/themes/sceanic-dark-gray.yaml b/themes/sceanic-dark-gray.yaml index 3a6a5866..06b68225 100644 --- a/themes/sceanic-dark-gray.yaml +++ b/themes/sceanic-dark-gray.yaml @@ -8,6 +8,7 @@ source: author: "Tobias Timm" repo: "https://github.com/tobiastimm/sceanic" url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.sceanic" + formats: null colors: bg: "#1E232E" fg: "#CED4DE" diff --git a/themes/sceanic-gray.yaml b/themes/sceanic-gray.yaml index 3ca8d456..2f5f3826 100644 --- a/themes/sceanic-gray.yaml +++ b/themes/sceanic-gray.yaml @@ -8,6 +8,7 @@ source: author: "Tobias Timm" repo: "https://github.com/tobiastimm/sceanic" url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.sceanic" + formats: null colors: bg: "#2B303B" fg: "#CED4DE" diff --git a/themes/sceanic.yaml b/themes/sceanic.yaml index a7451ae2..34316c19 100644 --- a/themes/sceanic.yaml +++ b/themes/sceanic.yaml @@ -8,6 +8,7 @@ source: author: "Tobias Timm" repo: "https://github.com/tobiastimm/sceanic" url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.sceanic" + formats: null colors: bg: "#1A2A32" fg: "#CED4DE" diff --git a/themes/schoero-dark.yaml b/themes/schoero-dark.yaml index bb907d0d..cd021dd1 100644 --- a/themes/schoero-dark.yaml +++ b/themes/schoero-dark.yaml @@ -8,6 +8,7 @@ source: author: "schoero" repo: "https://github.com/schoero/schoero-dark" url: "https://marketplace.visualstudio.com/items?itemName=schoero.schoero-dark" + formats: null colors: bg: "#282C34" fg: "#B1B6C1" diff --git a/themes/schooltheme.yaml b/themes/schooltheme.yaml deleted file mode 100644 index 7bbb9496..00000000 --- a/themes/schooltheme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "SchoolTheme" -source: - marketplace_id: "BasicTheme.basictheme" - version: "0.0.1" - installs: 19 - rating: 0 - ratings: 0 - author: "BasicTheme" - repo: "https://github.com/joaov-fer/basictheme" - url: "https://marketplace.visualstudio.com/items?itemName=BasicTheme.basictheme" -colors: - bg: "#2C2525" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 18 - pair: null - contrast: - fg: 77.3 - black: 0 - red: 24.5 - green: 50.8 - yellow: 83.4 - blue: 25.2 - magenta: 27.6 - cyan: 45.4 - white: 87.8 - brightBlack: 19.8 - brightRed: 36.4 - brightGreen: 61.3 - brightYellow: 93.4 - brightBlue: 37.8 - brightMagenta: 43.2 - brightCyan: 53.2 - brightWhite: 87.8 diff --git a/themes/schwifty-atom-one-dark.yaml b/themes/schwifty-atom-one-dark.yaml index 0a5be9a0..f6e2545e 100644 --- a/themes/schwifty-atom-one-dark.yaml +++ b/themes/schwifty-atom-one-dark.yaml @@ -8,6 +8,7 @@ source: author: "decrypteddesign" repo: "https://github.com/mcqua007/schwifty" url: "https://marketplace.visualstudio.com/items?itemName=decrypteddesign.Schwifty" + formats: null colors: bg: "#282C34" fg: "#ABB2BF" diff --git a/themes/schwifty-one-dark.yaml b/themes/schwifty-one-dark.yaml index d7ed0644..a0a1f07d 100644 --- a/themes/schwifty-one-dark.yaml +++ b/themes/schwifty-one-dark.yaml @@ -8,6 +8,7 @@ source: author: "decrypteddesign" repo: "https://github.com/mcqua007/schwifty" url: "https://marketplace.visualstudio.com/items?itemName=decrypteddesign.Schwifty" + formats: null colors: bg: "#282C34" fg: "#ABB2BF" diff --git a/themes/schwifty.yaml b/themes/schwifty.yaml index 7d19eabe..cf19dcbf 100644 --- a/themes/schwifty.yaml +++ b/themes/schwifty.yaml @@ -8,6 +8,7 @@ source: author: "Simcha York" repo: "https://github.com/SimchaYork/schwifty" url: "https://marketplace.visualstudio.com/items?itemName=SimchaWood.schwifty" + formats: null colors: bg: "#1F262A" fg: "#92B6C7" diff --git a/themes/scooby-dooby-dark.yaml b/themes/scooby-dooby-dark.yaml index f184e0a8..6d10d682 100644 --- a/themes/scooby-dooby-dark.yaml +++ b/themes/scooby-dooby-dark.yaml @@ -8,6 +8,7 @@ source: author: "Cristina Genduso" repo: "https://github.com/cristinagenduso/scooby-dooby-dark" url: "https://marketplace.visualstudio.com/items?itemName=CristinaGenduso.scooby-dooby-dark" + formats: null colors: bg: "#0E0E0E" fg: "#EBDBB2" diff --git a/themes/scorch-contrast.yaml b/themes/scorch-contrast.yaml deleted file mode 100644 index 81debce7..00000000 --- a/themes/scorch-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "scorch-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#160D0E" - fg: "#BAA0A2" - black: "#261618" - red: "#BA0E2E" - green: "#D39452" - yellow: "#BD4549" - blue: "#CF9E51" - magenta: "#F6EA82" - cyan: "#E77757" - white: "#C5AFB0" - brightBlack: "#563337" - brightRed: "#F03E5F" - brightGreen: "#E8C6A3" - brightYellow: "#D89093" - brightBlue: "#E5CBA1" - brightMagenta: "#FDFAE1" - brightCyan: "#F4BFB0" - brightWhite: "#E5DBDC" -meta: - mode: "dark" - accent: "orange" - hue: 11 - pair: null - contrast: - fg: 53.7 - black: 0 - red: 21.1 - green: 51.2 - yellow: 26.9 - blue: 54 - magenta: 92.1 - cyan: 46.2 - white: 61.4 - brightBlack: 0 - brightRed: 37.4 - brightGreen: 75.1 - brightYellow: 52.2 - brightBlue: 76.7 - brightMagenta: 103.5 - brightCyan: 74.7 - brightWhite: 85.8 diff --git a/themes/scorch-light.yaml b/themes/scorch-light.yaml deleted file mode 100644 index 624928f7..00000000 --- a/themes/scorch-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "scorch-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#F2EDED" - fg: "#514242" - black: "#FDFCFC" - red: "#BA0E2E" - green: "#D39452" - yellow: "#BD4549" - blue: "#CF9E51" - magenta: "#C6BB57" - cyan: "#E77757" - white: "#5F4D4D" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#E8C6A3" - brightYellow: "#D89093" - brightBlue: "#E5CBA1" - brightMagenta: "#E0DAA3" - brightCyan: "#F4BFB0" - brightWhite: "#897070" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82 - black: 0 - red: 70.3 - green: 40.3 - yellow: 64.3 - blue: 37.5 - magenta: 27.9 - cyan: 45.2 - white: 77.4 - brightBlack: 8.9 - brightRed: 53.8 - brightGreen: 17.4 - brightYellow: 39.3 - brightBlue: 15.9 - brightMagenta: 10.4 - brightCyan: 17.8 - brightWhite: 61.5 diff --git a/themes/scorch.yaml b/themes/scorch.yaml deleted file mode 100644 index b52fe64b..00000000 --- a/themes/scorch.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "scorch" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#392123" - fg: "#BAA0A2" - black: "#492A2D" - red: "#BA0E2E" - green: "#D39452" - yellow: "#BD4549" - blue: "#CF9E51" - magenta: "#F6EA82" - cyan: "#E77757" - white: "#C5AFB0" - brightBlack: "#7A464B" - brightRed: "#F03E5F" - brightGreen: "#E8C6A3" - brightYellow: "#D89093" - brightBlue: "#E5CBA1" - brightMagenta: "#FDFAE1" - brightCyan: "#F4BFB0" - brightWhite: "#E5DBDC" -meta: - mode: "dark" - accent: "orange" - hue: 14 - pair: null - contrast: - fg: 50.7 - black: 0 - red: 18 - green: 48.1 - yellow: 23.9 - blue: 51 - magenta: 89 - cyan: 43.1 - white: 58.4 - brightBlack: 12.8 - brightRed: 34.3 - brightGreen: 72.1 - brightYellow: 49.2 - brightBlue: 73.7 - brightMagenta: 100.4 - brightCyan: 71.6 - brightWhite: 82.7 diff --git a/themes/scorpion-theme.yaml b/themes/scorpion-theme.yaml index c5ec0cf8..9f11afa4 100644 --- a/themes/scorpion-theme.yaml +++ b/themes/scorpion-theme.yaml @@ -8,6 +8,7 @@ source: author: "Tudor Alexandru" repo: "https://github.com/tudorale/scorpion-theme" url: "https://marketplace.visualstudio.com/items?itemName=TudorAlexandru.scorpion" + formats: null colors: bg: "#222B4D" fg: "#FFFFFF" diff --git a/themes/scuba.yaml b/themes/scuba.yaml index 86682999..0305c051 100644 --- a/themes/scuba.yaml +++ b/themes/scuba.yaml @@ -8,6 +8,7 @@ source: author: "AsqrB" repo: "https://github.com/AsqrB/ScubaTheme" url: "https://marketplace.visualstudio.com/items?itemName=AsqrB.scuba" + formats: null colors: bg: "#01051F" fg: "#8592FF" diff --git a/themes/sea-glass.yaml b/themes/sea-glass.yaml deleted file mode 100644 index 9baed78c..00000000 --- a/themes/sea-glass.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sea Glass" -source: - marketplace_id: "KyleStewart.sea-glass-color-theme" - version: "0.4.0" - installs: 4862 - rating: 5 - ratings: 1 - author: "Kyle Stewart" - repo: "https://github.com/KStew1017/sea-glass-vscode-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=KyleStewart.sea-glass-color-theme" -colors: - bg: "#1D2021" - fg: "#EBDBB2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 83.3 - black: 0 - red: 25.7 - green: 52 - yellow: 84.6 - blue: 26.4 - magenta: 28.7 - cyan: 46.5 - white: 89 - brightBlack: 21 - brightRed: 37.5 - brightGreen: 62.5 - brightYellow: 94.6 - brightBlue: 39 - brightMagenta: 44.3 - brightCyan: 54.4 - brightWhite: 89 diff --git a/themes/sea-urchin.yaml b/themes/sea-urchin.yaml index dee4cdc9..beea216f 100644 --- a/themes/sea-urchin.yaml +++ b/themes/sea-urchin.yaml @@ -8,6 +8,7 @@ source: author: "anemones" repo: "https://github.com/radio-alice/anemone-colors" url: "https://marketplace.visualstudio.com/items?itemName=anemones.anemone-colors" + formats: null colors: bg: "#150049" fg: "#E6DCFF" diff --git a/themes/seabrook-dark-italic.yaml b/themes/seabrook-dark-italic.yaml index 42de9681..78ab5d89 100644 --- a/themes/seabrook-dark-italic.yaml +++ b/themes/seabrook-dark-italic.yaml @@ -8,6 +8,7 @@ source: author: "sortbyfirstname" repo: "https://github.com/sortbyfirstname/seabrook-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sortbyfirstname.seabrook" + formats: null colors: bg: "#212529" fg: "#DEE2E6" diff --git a/themes/seabrook-light-italic.yaml b/themes/seabrook-light-italic.yaml index 21aaf1ee..e76e5023 100644 --- a/themes/seabrook-light-italic.yaml +++ b/themes/seabrook-light-italic.yaml @@ -8,6 +8,7 @@ source: author: "sortbyfirstname" repo: "https://github.com/sortbyfirstname/seabrook-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=sortbyfirstname.seabrook" + formats: null colors: bg: "#DEE2E6" fg: "#212529" diff --git a/themes/seaci-base.yaml b/themes/seaci-base.yaml index 4ee1eb40..b3e740bc 100644 --- a/themes/seaci-base.yaml +++ b/themes/seaci-base.yaml @@ -8,6 +8,7 @@ source: author: "seaci" repo: "https://github.com/LeonCry/seaci-theme" url: "https://marketplace.visualstudio.com/items?itemName=seaci.seaci-theme" + formats: null colors: bg: "#262626" fg: "#DDDDDD" diff --git a/themes/seaci-dark.yaml b/themes/seaci-dark.yaml index 855e7638..b58229e8 100644 --- a/themes/seaci-dark.yaml +++ b/themes/seaci-dark.yaml @@ -8,6 +8,7 @@ source: author: "seaci" repo: "https://github.com/LeonCry/seaci-theme" url: "https://marketplace.visualstudio.com/items?itemName=seaci.seaci-theme" + formats: null colors: bg: "#181818" fg: "#DDDDDD" diff --git a/themes/seafarer.yaml b/themes/seafarer.yaml index 054e9250..6d2c880c 100644 --- a/themes/seafarer.yaml +++ b/themes/seafarer.yaml @@ -8,6 +8,7 @@ source: author: "TomJones" repo: "https://gitlab.com/lostVkng/seafarer-theme" url: "https://marketplace.visualstudio.com/items?itemName=lostVkng.seafarer-vscode" + formats: null colors: bg: "#1F2430" fg: "#CED4DD" diff --git a/themes/seafoam.yaml b/themes/seafoam.yaml index e86f1034..2f299c6a 100644 --- a/themes/seafoam.yaml +++ b/themes/seafoam.yaml @@ -2,12 +2,13 @@ name: "Seafoam" source: marketplace_id: "ScottishPuffin.theme-sf" version: "1.2.5" - installs: 134 + installs: 135 rating: 0 ratings: 0 author: "ScottishPuffin" repo: "https://github.com/WeeScottishPuffin/Seafoam" url: "https://marketplace.visualstudio.com/items?itemName=ScottishPuffin.theme-sf" + formats: null colors: bg: "#152526" fg: "#D4E7D4" diff --git a/themes/seagull.yaml b/themes/seagull.yaml index 21ab411b..6fc6aa19 100644 --- a/themes/seagull.yaml +++ b/themes/seagull.yaml @@ -8,6 +8,7 @@ source: author: "bbrakenhoff" repo: "https://github.com/bbrakenhoff/seabird-vscode" url: "https://marketplace.visualstudio.com/items?itemName=bbrakenhoff.seabird" + formats: null colors: bg: "#FFFFFF" fg: "#6D767D" diff --git a/themes/sebostien-theme.yaml b/themes/sebostien-theme.yaml index b57ca994..f0fb4cb6 100644 --- a/themes/sebostien-theme.yaml +++ b/themes/sebostien-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "sebostien.sebostien-theme" version: "0.1.1" installs: 144 + rating: 0 + ratings: 0 author: "sebostien" repo: "https://github.com/sebostien/sebostien-theme" url: "https://marketplace.visualstudio.com/items?itemName=sebostien.sebostien-theme" + formats: null colors: bg: "#1A1A1A" fg: "#D6DEEB" diff --git a/themes/secret-spring.yaml b/themes/secret-spring.yaml deleted file mode 100644 index 2acd5285..00000000 --- a/themes/secret-spring.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Secret Spring" -source: - marketplace_id: "wildtype.secretspring" - version: "0.0.5" - installs: 65 - rating: 0 - ratings: 0 - author: "wildtype" - repo: "https://github.com/wtype/secretspring" - url: "https://marketplace.visualstudio.com/items?itemName=wildtype.secretspring" -colors: - bg: "#11161F" - fg: "#D5E6F6" - black: "#11161F" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#70A7F5" - magenta: "#9FD7FF" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#70A7F5" - brightMagenta: "#9FD7FF" - brightCyan: "#DCE2B5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 262 - pair: null - contrast: - fg: 89.3 - black: 0 - red: 39.4 - green: 67.4 - yellow: 82.2 - blue: 52.9 - magenta: 77.3 - cyan: 59.8 - white: 107 - brightBlack: 15.7 - brightRed: 39.4 - brightGreen: 67.4 - brightYellow: 93.8 - brightBlue: 52.9 - brightMagenta: 77.3 - brightCyan: 85.7 - brightWhite: 107 diff --git a/themes/section-9-hacker.yaml b/themes/section-9-hacker.yaml index c56a8e69..966c0391 100644 --- a/themes/section-9-hacker.yaml +++ b/themes/section-9-hacker.yaml @@ -8,6 +8,7 @@ source: author: "y4m3" repo: "https://github.com/y4m3/vscode-section9-theme" url: "https://marketplace.visualstudio.com/items?itemName=y4m3.section9-theme" + formats: null colors: bg: "#081208" fg: "#7CDC87" diff --git a/themes/section-9-major.yaml b/themes/section-9-major.yaml index 523cf998..8486d6a3 100644 --- a/themes/section-9-major.yaml +++ b/themes/section-9-major.yaml @@ -8,6 +8,7 @@ source: author: "y4m3" repo: "https://github.com/y4m3/vscode-section9-theme" url: "https://marketplace.visualstudio.com/items?itemName=y4m3.section9-theme" + formats: null colors: bg: "#15121A" fg: "#C5C8C6" diff --git a/themes/section-9-ranger.yaml b/themes/section-9-ranger.yaml index 215696c2..6a6122f4 100644 --- a/themes/section-9-ranger.yaml +++ b/themes/section-9-ranger.yaml @@ -8,6 +8,7 @@ source: author: "y4m3" repo: "https://github.com/y4m3/vscode-section9-theme" url: "https://marketplace.visualstudio.com/items?itemName=y4m3.section9-theme" + formats: null colors: bg: "#20241C" fg: "#D0D0C8" diff --git a/themes/section-9.yaml b/themes/section-9.yaml index 88ff5bcc..231a7479 100644 --- a/themes/section-9.yaml +++ b/themes/section-9.yaml @@ -8,6 +8,7 @@ source: author: "y4m3" repo: "https://github.com/y4m3/vscode-section9-theme" url: "https://marketplace.visualstudio.com/items?itemName=y4m3.section9-theme" + formats: null colors: bg: "#0E121A" fg: "#A8B0BE" diff --git a/themes/secunda.yaml b/themes/secunda.yaml index 88059aaf..062b09ba 100644 --- a/themes/secunda.yaml +++ b/themes/secunda.yaml @@ -8,6 +8,7 @@ source: author: "Rodger Jordas" repo: "https://github.com/rmjordas/secunda" url: "https://marketplace.visualstudio.com/items?itemName=ruj.secunda" + formats: null colors: bg: "#26292C" fg: "#DDDDDD" diff --git a/themes/secuoyas-code.yaml b/themes/secuoyas-code.yaml index 59b7addc..3bf62f72 100644 --- a/themes/secuoyas-code.yaml +++ b/themes/secuoyas-code.yaml @@ -8,6 +8,8 @@ source: author: "Secuoyas" repo: "https://github.com/Secuoyas-Experience/secuoyas-theme" url: "https://marketplace.visualstudio.com/items?itemName=Secuoyas.secuoyas-code" + formats: + iterm2: "https://raw.githubusercontent.com/Secuoyas-Experience/secuoyas-theme/master/assets/secuoyas-20.itermcolors" colors: bg: "#101010" fg: "#ACB5C3" diff --git a/themes/sedona.yaml b/themes/sedona.yaml index bb935bf4..f412c91b 100644 --- a/themes/sedona.yaml +++ b/themes/sedona.yaml @@ -8,6 +8,7 @@ source: author: "interactiveRob" repo: "https://github.com/interactiveRob/sedona-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=interactiveRob.sedona" + formats: null colors: bg: "#1F1C39" fg: "#D4D4D4" diff --git a/themes/seed7-tokyo-night-dark.yaml b/themes/seed7-tokyo-night-dark.yaml index c18ff177..4a384e97 100644 --- a/themes/seed7-tokyo-night-dark.yaml +++ b/themes/seed7-tokyo-night-dark.yaml @@ -8,6 +8,7 @@ source: author: "Yehuda Gurovich" repo: "https://github.com/YehudaGurovich/seed7-language-support" url: "https://marketplace.visualstudio.com/items?itemName=YehudaGurovich.seed7-language-support" + formats: null colors: bg: "#1A1A1A" fg: "#C5C5C5" diff --git a/themes/seekode-light.yaml b/themes/seekode-light.yaml index 438ad144..4469f028 100644 --- a/themes/seekode-light.yaml +++ b/themes/seekode-light.yaml @@ -8,6 +8,7 @@ source: author: "seekode-official" repo: "https://github.com/seekode/seekode-vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=seekode-official.seekode-new-theme" + formats: null colors: bg: "#ECEFF4" fg: "#212121" diff --git a/themes/seilacolor-2.yaml b/themes/seilacolor-2.yaml index 0071609e..cc13f66d 100644 --- a/themes/seilacolor-2.yaml +++ b/themes/seilacolor-2.yaml @@ -8,6 +8,7 @@ source: author: "SeilaColor" repo: "https://github.com/meunik/seilacolor" url: "https://marketplace.visualstudio.com/items?itemName=SeilaColor.seilacolor" + formats: null colors: bg: "#1D1D1D" fg: "#BABABA" diff --git a/themes/seilacolor.yaml b/themes/seilacolor.yaml index 5088e4b0..4a5fe84a 100644 --- a/themes/seilacolor.yaml +++ b/themes/seilacolor.yaml @@ -8,6 +8,7 @@ source: author: "SeilaColor" repo: "https://github.com/meunik/seilacolor" url: "https://marketplace.visualstudio.com/items?itemName=SeilaColor.seilacolor" + formats: null colors: bg: "#111111" fg: "#BABABA" diff --git a/themes/selene-selenized-dark.yaml b/themes/selene-selenized-dark.yaml deleted file mode 100644 index 203a8324..00000000 --- a/themes/selene-selenized-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Selene Selenized Dark" -source: - marketplace_id: "santoso-wijaya.helios-selene" - version: "0.3.18" - installs: 3055 - rating: 5 - ratings: 4 - author: "Santoso Wijaya" - repo: "https://github.com/santoso-wijaya/vscode-helios-selene" - url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" -colors: - bg: "#053D48" - fg: "#C8D7D8" - black: "#0E4956" - red: "#FD564E" - green: "#80B83C" - yellow: "#E3B230" - blue: "#0096F5" - magenta: "#F176BD" - cyan: "#39C7B9" - white: "#ADBCBC" - brightBlack: "#053D48" - brightRed: "#F38649" - brightGreen: "#80B83C" - brightYellow: "#E3B230" - brightBlue: "#0096F5" - brightMagenta: "#A58CEC" - brightCyan: "#0096F5" - brightWhite: "#C8D7D8" -meta: - mode: "dark" - accent: "orange" - hue: 215 - pair: "Selene Selenized Light" - contrast: - fg: 73.1 - black: 0 - red: 36.6 - green: 48 - yellow: 57.3 - blue: 36.6 - magenta: 44.2 - cyan: 54.4 - white: 57.2 - brightBlack: 0 - brightRed: 45.5 - brightGreen: 48 - brightYellow: 57.3 - brightBlue: 36.6 - brightMagenta: 41 - brightCyan: 36.6 - brightWhite: 73.1 diff --git a/themes/selene-selenized-light.yaml b/themes/selene-selenized-light.yaml deleted file mode 100644 index 92e089e2..00000000 --- a/themes/selene-selenized-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Selene Selenized Light" -source: - marketplace_id: "santoso-wijaya.helios-selene" - version: "0.3.18" - installs: 3055 - rating: 5 - ratings: 4 - author: "Santoso Wijaya" - repo: "https://github.com/santoso-wijaya/vscode-helios-selene" - url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" -colors: - bg: "#FEF3DA" - fg: "#384C52" - black: "#F0E4CC" - red: "#D4212B" - green: "#539100" - yellow: "#B38800" - blue: "#0073D2" - magenta: "#CB4C99" - cyan: "#009C8F" - white: "#52666D" - brightBlack: "#FEF3DA" - brightRed: "#C75D20" - brightGreen: "#539100" - brightYellow: "#B38800" - brightBlue: "#0073D2" - brightMagenta: "#7D64C5" - brightCyan: "#0073D2" - brightWhite: "#384C52" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Selene Selenized Dark" - contrast: - fg: 84 - black: 0 - red: 67 - green: 59.2 - yellow: 53 - blue: 65.8 - magenta: 61.2 - cyan: 54.3 - white: 73.4 - brightBlack: 0 - brightRed: 61.5 - brightGreen: 59.2 - brightYellow: 53 - brightBlue: 65.8 - brightMagenta: 65.5 - brightCyan: 65.8 - brightWhite: 84 diff --git a/themes/selenitic-color-theme.yaml b/themes/selenitic-color-theme.yaml deleted file mode 100644 index 59fc17f8..00000000 --- a/themes/selenitic-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "selenitic-color-theme" -source: - marketplace_id: "fopitz.theme-selenitic" - version: "0.1.0" - installs: 951 - rating: 5 - ratings: 1 - author: "Forrest Pitz" - repo: "https://forrestpitz.visualstudio.com/_git/Seleitic%20Theme" - url: "https://marketplace.visualstudio.com/items?itemName=fopitz.theme-selenitic" -colors: - bg: "#333333" - fg: "#F8F8F2" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#EFC986" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 97.1 - black: 0 - red: 19.8 - green: 48.2 - yellow: 52.8 - blue: 29.8 - magenta: 27.4 - cyan: 45.6 - white: 83.6 - brightBlack: 17.2 - brightRed: 71.2 - brightGreen: 72.1 - brightYellow: 79.1 - brightBlue: 45 - brightMagenta: 41.7 - brightCyan: 68.6 - brightWhite: 97.1 diff --git a/themes/sema.yaml b/themes/sema.yaml index 23d8b012..86111323 100644 --- a/themes/sema.yaml +++ b/themes/sema.yaml @@ -2,12 +2,13 @@ name: "sema" source: marketplace_id: "arzg.sema" version: "1.12.1" - installs: 4718 + installs: 4719 rating: 5 ratings: 2 author: "arzg" repo: "https://github.com/arzg/sema" url: "https://marketplace.visualstudio.com/items?itemName=arzg.sema" + formats: null colors: bg: "#0F0F0F" fg: "#D6D6D6" diff --git a/themes/semantic-noctis-lux.yaml b/themes/semantic-noctis-lux.yaml deleted file mode 100644 index 8e6df957..00000000 --- a/themes/semantic-noctis-lux.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Semantic Noctis Lux" -source: - marketplace_id: "jnooree.semantic-noctis" - version: "1.3.3" - installs: 2745 - rating: 0 - ratings: 0 - author: "Nuri Jung" - repo: "https://github.com/jnooree/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=jnooree.semantic-noctis" -colors: - bg: "#FEF9F0" - fg: "#004D57" - black: "#003B42" - red: "#E34E1C" - green: "#00B368" - yellow: "#F49725" - blue: "#0094F0" - magenta: "#FF5792" - cyan: "#00BDD6" - white: "#8CA6A6" - brightBlack: "#518A90" - brightRed: "#FF4000" - brightGreen: "#00D17A" - brightYellow: "#FF8C00" - brightBlue: "#0FA3FF" - brightMagenta: "#FF6B9F" - brightCyan: "#00CBE6" - brightWhite: "#BBC3C4" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 88.3 - black: 94.3 - red: 62.1 - green: 49 - yellow: 40.8 - blue: 55.5 - magenta: 52.2 - cyan: 40.8 - white: 47.2 - brightBlack: 63 - brightRed: 57.6 - brightGreen: 35.1 - brightYellow: 42.1 - brightBlue: 48.8 - brightMagenta: 47.9 - brightCyan: 33.8 - brightWhite: 29.9 diff --git a/themes/semi-dark-theme-in-yellow.yaml b/themes/semi-dark-theme-in-yellow.yaml index 5f428e4b..2b4c906a 100644 --- a/themes/semi-dark-theme-in-yellow.yaml +++ b/themes/semi-dark-theme-in-yellow.yaml @@ -1,13 +1,14 @@ -name: "semi dark theme in yellow" +name: "Semi dark theme in yellow" source: marketplace_id: "moondevaa.Semi-dark-theme-in-yellow" version: "0.2.4" - installs: 2846 + installs: 2847 rating: 5 ratings: 2 author: "moondevaa" repo: "https://github.com/AaBbdev29/semi-dark-theme-in-yellow" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.Semi-dark-theme-in-yellow" + formats: null colors: bg: "#414143" fg: "#98DBE8" diff --git a/themes/senerdark-pro-blue-gray.yaml b/themes/senerdark-pro-blue-gray.yaml index 33c1fde3..b5862a5f 100644 --- a/themes/senerdark-pro-blue-gray.yaml +++ b/themes/senerdark-pro-blue-gray.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "seneryty.senerdark" version: "0.0.2" installs: 25 + rating: 0 + ratings: 0 author: "seneryty" repo: "https://github.com/SENERYTY-DEV/seneryty" url: "https://marketplace.visualstudio.com/items?itemName=seneryty.senerdark" + formats: null colors: bg: "#11171D" fg: "#C9D1D9" diff --git a/themes/senerdark-pro-deep-gray.yaml b/themes/senerdark-pro-deep-gray.yaml index 17aeb92b..3f23172f 100644 --- a/themes/senerdark-pro-deep-gray.yaml +++ b/themes/senerdark-pro-deep-gray.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "seneryty.senerdark" version: "0.0.2" installs: 25 + rating: 0 + ratings: 0 author: "seneryty" repo: "https://github.com/SENERYTY-DEV/seneryty" url: "https://marketplace.visualstudio.com/items?itemName=seneryty.senerdark" + formats: null colors: bg: "#1E1E1E" fg: "#E8E8E8" diff --git a/themes/senkorange.yaml b/themes/senkorange.yaml index 2848a1a5..1ffdf5c3 100644 --- a/themes/senkorange.yaml +++ b/themes/senkorange.yaml @@ -8,6 +8,7 @@ source: author: "Michii" repo: "https://github.com/hi-doki/Senkorange" url: "https://marketplace.visualstudio.com/items?itemName=Michii.senkorange" + formats: null colors: bg: "#2B251E" fg: "#FEFAE6" diff --git a/themes/senna-dark-black-theme.yaml b/themes/senna-dark-black-theme.yaml deleted file mode 100644 index 33db6dd5..00000000 --- a/themes/senna-dark-black-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Senna Dark Black Theme" -source: - marketplace_id: "vitorvxj.senna-theme" - version: "1.0.3" - installs: 116 - rating: 5 - ratings: 1 - author: "XJ" - repo: "https://github.com/vitorvxj/Senna-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=vitorvxj.senna-theme" -colors: - bg: "#131313" - fg: "#24FFEA" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 90.6 - black: 0 - red: 27.1 - green: 53.4 - yellow: 86 - blue: 27.8 - magenta: 30.1 - cyan: 47.9 - white: 90.4 - brightBlack: 22.4 - brightRed: 38.9 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.4 - brightMagenta: 45.7 - brightCyan: 55.8 - brightWhite: 90.4 diff --git a/themes/seoul-dancheong.yaml b/themes/seoul-dancheong.yaml index 89c8e28b..68386e1b 100644 --- a/themes/seoul-dancheong.yaml +++ b/themes/seoul-dancheong.yaml @@ -8,6 +8,7 @@ source: author: "Hue" repo: "https://github.com/hue-lovemakr/lovema-kr" url: "https://marketplace.visualstudio.com/items?itemName=lovema-kr.theme-seoul" + formats: null colors: bg: "#262F2B" fg: "#D8C8B2" diff --git a/themes/seoul-morning.yaml b/themes/seoul-morning.yaml index fd4928b4..301bfd38 100644 --- a/themes/seoul-morning.yaml +++ b/themes/seoul-morning.yaml @@ -8,6 +8,7 @@ source: author: "Hue" repo: "https://github.com/hue-lovemakr/lovema-kr" url: "https://marketplace.visualstudio.com/items?itemName=lovema-kr.theme-seoul" + formats: null colors: bg: "#FCFCFC" fg: "#2F3E37" diff --git a/themes/seoul-night.yaml b/themes/seoul-night.yaml index 670516d3..ded8cac5 100644 --- a/themes/seoul-night.yaml +++ b/themes/seoul-night.yaml @@ -8,6 +8,7 @@ source: author: "Hue" repo: "https://github.com/hue-lovemakr/lovema-kr" url: "https://marketplace.visualstudio.com/items?itemName=lovema-kr.theme-seoul" + formats: null colors: bg: "#1D1E23" fg: "#D8C8B2" diff --git a/themes/september-dark-theme.yaml b/themes/september-dark-theme.yaml deleted file mode 100644 index f3db5536..00000000 --- a/themes/september-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "September Dark Theme" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#1A202C" - fg: "#F8F9FA" - black: "#1A202C" - red: "#E53E3E" - green: "#38A169" - yellow: "#D69E2E" - blue: "#3182CE" - magenta: "#805AD5" - cyan: "#319795" - white: "#F8F9FA" - brightBlack: "#2D3748" - brightRed: "#FC8181" - brightGreen: "#48BB78" - brightYellow: "#ECC94B" - brightBlue: "#4299E1" - brightMagenta: "#9F7AEA" - brightCyan: "#81E6D9" - brightWhite: "#EDF2F7" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 101.7 - black: 0 - red: 32.6 - green: 40.2 - yellow: 53.1 - blue: 32.4 - magenta: 26.4 - cyan: 37.3 - white: 101.7 - brightBlack: 0 - brightRed: 52.3 - brightGreen: 52.5 - brightYellow: 73.5 - brightBlue: 42.6 - brightMagenta: 39.9 - brightCyan: 78.9 - brightWhite: 96.8 diff --git a/themes/sequoia-monochrome.yaml b/themes/sequoia-monochrome.yaml deleted file mode 100644 index 18230c4d..00000000 --- a/themes/sequoia-monochrome.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sequoia Monochrome" -source: - marketplace_id: "wicked-labs.sequoia" - version: "1.31.3" - installs: 23654 - rating: 4.89 - ratings: 9 - author: "Michael Andreuzza " - repo: "https://github.com/Sequoia-Theme/vs-code" - url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" -colors: - bg: "#0F1014" - fg: "#868690" - black: "#131317" - red: "#999EB2" - green: "#626983" - yellow: "#D3D5DE" - blue: "#7C829D" - magenta: "#E2E4ED" - cyan: "#B6BAC8" - white: "#868690" - brightBlack: "#575861" - brightRed: "#999EB2" - brightGreen: "#626983" - brightYellow: "#D3D5DE" - brightBlue: "#7C829D" - brightMagenta: "#E2E4ED" - brightCyan: "#B6BAC8" - brightWhite: "#868690" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 37.6 - black: 0 - red: 49.6 - green: 24.2 - yellow: 80.8 - blue: 35.7 - magenta: 90.1 - cyan: 64.9 - white: 37.6 - brightBlack: 17 - brightRed: 49.6 - brightGreen: 24.2 - brightYellow: 80.8 - brightBlue: 35.7 - brightMagenta: 90.1 - brightCyan: 64.9 - brightWhite: 37.6 diff --git a/themes/sequoia-moonlight.yaml b/themes/sequoia-moonlight.yaml deleted file mode 100644 index 91f9775b..00000000 --- a/themes/sequoia-moonlight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sequoia Moonlight" -source: - marketplace_id: "wicked-labs.sequoia" - version: "1.31.3" - installs: 23654 - rating: 4.89 - ratings: 9 - author: "Michael Andreuzza " - repo: "https://github.com/Sequoia-Theme/vs-code" - url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" -colors: - bg: "#0F1014" - fg: "#868690" - black: "#131317" - red: "#F58EE0" - green: "#8EB6F5" - yellow: "#9898A6" - blue: "#C58FFF" - magenta: "#FDFDFE" - cyan: "#FFBB88" - white: "#868690" - brightBlack: "#575861" - brightRed: "#F58EE0" - brightGreen: "#8EB6F5" - brightYellow: "#9898A6" - brightBlue: "#C58FFF" - brightMagenta: "#FDFDFE" - brightCyan: "#FFBB88" - brightWhite: "#868690" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 37.6 - black: 0 - red: 60.2 - green: 61.6 - yellow: 46.8 - blue: 54.5 - magenta: 106.2 - cyan: 73.7 - white: 37.6 - brightBlack: 17 - brightRed: 60.2 - brightGreen: 61.6 - brightYellow: 46.8 - brightBlue: 54.5 - brightMagenta: 106.2 - brightCyan: 73.7 - brightWhite: 37.6 diff --git a/themes/sequoia-retro.yaml b/themes/sequoia-retro.yaml deleted file mode 100644 index 6987007a..00000000 --- a/themes/sequoia-retro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sequoia Retro" -source: - marketplace_id: "wicked-labs.sequoia" - version: "1.31.3" - installs: 23654 - rating: 4.89 - ratings: 9 - author: "Michael Andreuzza " - repo: "https://github.com/Sequoia-Theme/vs-code" - url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" -colors: - bg: "#0F1014" - fg: "#868690" - black: "#131317" - red: "#829FA7" - green: "#648F68" - yellow: "#DA674B" - blue: "#5C87A4" - magenta: "#E8B246" - cyan: "#A27E57" - white: "#868690" - brightBlack: "#575861" - brightRed: "#E8B246" - brightGreen: "#648F68" - brightYellow: "#DA674B" - brightBlue: "#5C87A4" - brightMagenta: "#829FA7" - brightCyan: "#A27E57" - brightWhite: "#868690" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 37.6 - black: 0 - red: 47.3 - green: 36.7 - yellow: 39.4 - blue: 35.3 - magenta: 65.2 - cyan: 36.6 - white: 37.6 - brightBlack: 17 - brightRed: 65.2 - brightGreen: 36.7 - brightYellow: 39.4 - brightBlue: 35.3 - brightMagenta: 47.3 - brightCyan: 36.6 - brightWhite: 37.6 diff --git a/themes/seral-dark-github-stripe.yaml b/themes/seral-dark-github-stripe.yaml index 4b4bfb65..d099497c 100644 --- a/themes/seral-dark-github-stripe.yaml +++ b/themes/seral-dark-github-stripe.yaml @@ -8,6 +8,7 @@ source: author: "Ali Yilmaz" repo: "https://github.com/aliyilmazco/seral-theme" url: "https://marketplace.visualstudio.com/items?itemName=aliyilmazco.seral-theme" + formats: null colors: bg: "#021024" fg: "#F0F6FC" diff --git a/themes/seral-light-github-stripe.yaml b/themes/seral-light-github-stripe.yaml index 4fa0b638..8af1a5ce 100644 --- a/themes/seral-light-github-stripe.yaml +++ b/themes/seral-light-github-stripe.yaml @@ -8,6 +8,7 @@ source: author: "Ali Yilmaz" repo: "https://github.com/aliyilmazco/seral-theme" url: "https://marketplace.visualstudio.com/items?itemName=aliyilmazco.seral-theme" + formats: null colors: bg: "#FFFFFF" fg: "#24292F" diff --git a/themes/serein-dark-soft.yaml b/themes/serein-dark-soft.yaml index dd0ec8b3..9cbaadd5 100644 --- a/themes/serein-dark-soft.yaml +++ b/themes/serein-dark-soft.yaml @@ -8,6 +8,7 @@ source: author: "abei" repo: "https://github.com/abeixiaolu/vscode-theme-serein" url: "https://marketplace.visualstudio.com/items?itemName=abei.theme-serein" + formats: null colors: bg: "#222222" fg: "#DBD7CA" diff --git a/themes/serein-dark.yaml b/themes/serein-dark.yaml index 1467dbd8..18f0e8c7 100644 --- a/themes/serein-dark.yaml +++ b/themes/serein-dark.yaml @@ -8,6 +8,7 @@ source: author: "abei" repo: "https://github.com/abeixiaolu/vscode-theme-serein" url: "https://marketplace.visualstudio.com/items?itemName=abei.theme-serein" + formats: null colors: bg: "#0F0F0F" fg: "#DBD7CA" diff --git a/themes/serein-light-soft.yaml b/themes/serein-light-soft.yaml index 10706e2e..7c9e9b3b 100644 --- a/themes/serein-light-soft.yaml +++ b/themes/serein-light-soft.yaml @@ -8,6 +8,7 @@ source: author: "abei" repo: "https://github.com/abeixiaolu/vscode-theme-serein" url: "https://marketplace.visualstudio.com/items?itemName=abei.theme-serein" + formats: null colors: bg: "#FFFAF3" fg: "#393A34" diff --git a/themes/serein-light.yaml b/themes/serein-light.yaml index cec9f851..46bea1e8 100644 --- a/themes/serein-light.yaml +++ b/themes/serein-light.yaml @@ -8,6 +8,7 @@ source: author: "abei" repo: "https://github.com/abeixiaolu/vscode-theme-serein" url: "https://marketplace.visualstudio.com/items?itemName=abei.theme-serein" + formats: null colors: bg: "#FFFFFF" fg: "#393A34" diff --git a/themes/serendipity-midnight-electric.yaml b/themes/serendipity-midnight-electric.yaml deleted file mode 100644 index 2efb5567..00000000 --- a/themes/serendipity-midnight-electric.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Serendipity Midnight Electric" -source: - marketplace_id: "wicked-labs.wvsc-serendipity" - version: "1.66.2" - installs: 70595 - rating: 4.76 - ratings: 17 - author: "Michael Andreuzza " - repo: "https://github.com/Serendipity-Theme/vs-code" - url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" -colors: - bg: "#0A0E15" - fg: "#ACB9D9" - black: "#1C1C1C" - red: "#9E81C9" - green: "#748E4E" - yellow: "#C8A662" - blue: "#78A9FF" - magenta: "#E879F9" - cyan: "#73D0FF" - white: "#9CA3AF" - brightBlack: "#6B7280" - brightRed: "#D4BFFF" - brightGreen: "#A6CC70" - brightYellow: "#FAD07B" - brightBlue: "#78A9FF" - brightMagenta: "#F0ABFC" - brightCyan: "#67E8F9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 261 - pair: null - contrast: - fg: 64.3 - black: 0 - red: 41.5 - green: 37.1 - yellow: 56.3 - blue: 55.5 - magenta: 53.8 - cyan: 71.6 - white: 51.9 - brightBlack: 27.8 - brightRed: 73.7 - brightGreen: 68.2 - brightYellow: 81.2 - brightBlue: 55.5 - brightMagenta: 70.3 - brightCyan: 81.9 - brightWhite: 107.6 diff --git a/themes/serendipity-midnight-v1.yaml b/themes/serendipity-midnight-v1.yaml deleted file mode 100644 index 3a362a22..00000000 --- a/themes/serendipity-midnight-v1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Serendipity Midnight V1" -source: - marketplace_id: "wicked-labs.old-serendipity" - version: "0.6.0" - installs: 4491 - rating: 5 - ratings: 1 - author: "Michael Andreuzza " - repo: "https://github.com/michael-andreuzza/old-serendipity" - url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.old-serendipity" -colors: - bg: "#0A0E15" - fg: "#F6F6F6" - black: "#1C1C1C" - red: "#BE95FF" - green: "#748E4E" - yellow: "#C8A662" - blue: "#78A9FF" - magenta: "#E879F9" - cyan: "#22D3EE" - white: "#9CA3AF" - brightBlack: "#6B7280" - brightRed: "#D4BFFF" - brightGreen: "#A6CC70" - brightYellow: "#FAD07B" - brightBlue: "#8BB6FF" - brightMagenta: "#F0ABFC" - brightCyan: "#67E8F9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 261 - pair: "Serendipity Morning V1" - contrast: - fg: 101.6 - black: 0 - red: 55.5 - green: 37.1 - yellow: 56.3 - blue: 55.5 - magenta: 53.8 - cyan: 69.3 - white: 51.9 - brightBlack: 27.8 - brightRed: 73.7 - brightGreen: 68.2 - brightYellow: 81.2 - brightBlue: 62.1 - brightMagenta: 70.3 - brightCyan: 81.9 - brightWhite: 107.6 diff --git a/themes/serendipity-midnight.yaml b/themes/serendipity-midnight.yaml deleted file mode 100644 index 7b4f4eaf..00000000 --- a/themes/serendipity-midnight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Serendipity Midnight" -source: - marketplace_id: "wicked-labs.wvsc-serendipity" - version: "1.66.2" - installs: 70595 - rating: 4.76 - ratings: 17 - author: "Michael Andreuzza " - repo: "https://github.com/Serendipity-Theme/vs-code" - url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" -colors: - bg: "#151726" - fg: "#DEE0EF" - black: "#232534" - red: "#EE8679" - green: "#5BA2D0" - yellow: "#A78BFA" - blue: "#94B8FF" - magenta: "#9CCFD8" - cyan: "#F8D2C9" - white: "#DEE0EF" - brightBlack: "#8D8F9E" - brightRed: "#EE8679" - brightGreen: "#5BA2D0" - brightYellow: "#A78BFA" - brightBlue: "#94B8FF" - brightMagenta: "#9CCFD8" - brightCyan: "#F8D2C9" - brightWhite: "#DEE0EF" -meta: - mode: "dark" - accent: "magenta" - hue: 278 - pair: "Serendipity Morning" - contrast: - fg: 87.2 - black: 0 - red: 51.7 - green: 47.1 - yellow: 48.2 - blue: 62.9 - magenta: 71.2 - cyan: 83.2 - white: 87.2 - brightBlack: 41.3 - brightRed: 51.7 - brightGreen: 47.1 - brightYellow: 48.2 - brightBlue: 62.9 - brightMagenta: 71.2 - brightCyan: 83.2 - brightWhite: 87.2 diff --git a/themes/serendipity-morning-v1.yaml b/themes/serendipity-morning-v1.yaml deleted file mode 100644 index 06fd0588..00000000 --- a/themes/serendipity-morning-v1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Serendipity Morning V1" -source: - marketplace_id: "wicked-labs.old-serendipity" - version: "0.6.0" - installs: 4491 - rating: 5 - ratings: 1 - author: "Michael Andreuzza " - repo: "https://github.com/michael-andreuzza/old-serendipity" - url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.old-serendipity" -colors: - bg: "#FFFFFF" - fg: "#575F66" - black: "#1C1C1C" - red: "#8568B2" - green: "#748E4E" - yellow: "#C8A662" - blue: "#6087CC" - magenta: "#E879F9" - cyan: "#1BA8BE" - white: "#9CA3AF" - brightBlack: "#6B7280" - brightRed: "#9177B9" - brightGreen: "#A6CC70" - brightYellow: "#FAD07B" - brightBlue: "#78A9FF" - brightMagenta: "#F0ABFC" - brightCyan: "#5FC2D1" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Serendipity Midnight V1" - contrast: - fg: 82.2 - black: 104 - red: 71.5 - green: 64.2 - yellow: 45.5 - blue: 63.4 - magenta: 47.9 - cyan: 54 - white: 49.8 - brightBlack: 73.6 - brightRed: 65.3 - brightGreen: 34.1 - brightYellow: 21.8 - brightBlue: 46.3 - brightMagenta: 32.1 - brightCyan: 40.3 - brightWhite: 0 diff --git a/themes/serendipity-morning.yaml b/themes/serendipity-morning.yaml deleted file mode 100644 index a9ee9687..00000000 --- a/themes/serendipity-morning.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Serendipity Morning" -source: - marketplace_id: "wicked-labs.wvsc-serendipity" - version: "1.66.2" - installs: 70595 - rating: 4.76 - ratings: 17 - author: "Michael Andreuzza " - repo: "https://github.com/Serendipity-Theme/vs-code" - url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" -colors: - bg: "#FDFDFE" - fg: "#4E5377" - black: "#D8DAE4" - red: "#D26A5D" - green: "#3788BE" - yellow: "#886CDB" - blue: "#7397DE" - magenta: "#77AAB3" - cyan: "#F19A8E" - white: "#4E5377" - brightBlack: "#5F6488" - brightRed: "#D26A5D" - brightGreen: "#3788BE" - brightYellow: "#886CDB" - brightBlue: "#7397DE" - brightMagenta: "#77AAB3" - brightCyan: "#F19A8E" - brightWhite: "#4E5377" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Serendipity Midnight" - contrast: - fg: 84.6 - black: 18 - red: 61.2 - green: 64.7 - yellow: 66.2 - blue: 54.2 - magenta: 49 - cyan: 40.9 - white: 84.6 - brightBlack: 77.5 - brightRed: 61.2 - brightGreen: 64.7 - brightYellow: 66.2 - brightBlue: 54.2 - brightMagenta: 49 - brightCyan: 40.9 - brightWhite: 84.6 diff --git a/themes/serendipity-sunset-v1.yaml b/themes/serendipity-sunset-v1.yaml deleted file mode 100644 index 52571351..00000000 --- a/themes/serendipity-sunset-v1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Serendipity Sunset V1" -source: - marketplace_id: "wicked-labs.old-serendipity" - version: "0.6.0" - installs: 4491 - rating: 5 - ratings: 1 - author: "Michael Andreuzza " - repo: "https://github.com/michael-andreuzza/old-serendipity" - url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.old-serendipity" -colors: - bg: "#1E2431" - fg: "#F6F6F6" - black: "#1C1C1C" - red: "#BE95FF" - green: "#748E4E" - yellow: "#C8A662" - blue: "#78A9FF" - magenta: "#E879F9" - cyan: "#22D3EE" - white: "#9CA3AF" - brightBlack: "#6B7280" - brightRed: "#D4BFFF" - brightGreen: "#A6CC70" - brightYellow: "#FAD07B" - brightBlue: "#8BB6FF" - brightMagenta: "#F0ABFC" - brightCyan: "#67E8F9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 265 - pair: null - contrast: - fg: 99.2 - black: 0 - red: 53.1 - green: 34.7 - yellow: 53.8 - blue: 53 - magenta: 51.3 - cyan: 66.8 - white: 49.4 - brightBlack: 25.4 - brightRed: 71.2 - brightGreen: 65.7 - brightYellow: 78.7 - brightBlue: 59.7 - brightMagenta: 67.9 - brightCyan: 79.4 - brightWhite: 105.1 diff --git a/themes/serendipity-sunset.yaml b/themes/serendipity-sunset.yaml deleted file mode 100644 index aecfadba..00000000 --- a/themes/serendipity-sunset.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Serendipity Sunset" -source: - marketplace_id: "wicked-labs.wvsc-serendipity" - version: "1.66.2" - installs: 70595 - rating: 4.76 - ratings: 17 - author: "Michael Andreuzza " - repo: "https://github.com/Serendipity-Theme/vs-code" - url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" -colors: - bg: "#202231" - fg: "#DEE0EF" - black: "#363847" - red: "#D1918F" - green: "#709BBD" - yellow: "#A392DC" - blue: "#A0B6E8" - magenta: "#AAC9D4" - cyan: "#D6B4B4" - white: "#DEE0EF" - brightBlack: "#6B6D7C" - brightRed: "#D1918F" - brightGreen: "#709BBD" - brightYellow: "#A392DC" - brightBlue: "#A0B6E8" - brightMagenta: "#AAC9D4" - brightCyan: "#D6B4B4" - brightWhite: "#DEE0EF" -meta: - mode: "dark" - accent: "magenta" - hue: 278 - pair: null - contrast: - fg: 85.7 - black: 0 - red: 49.1 - green: 43.2 - yellow: 46.5 - blue: 60.3 - magenta: 68.3 - cyan: 63.7 - white: 85.7 - brightBlack: 23.8 - brightRed: 49.1 - brightGreen: 43.2 - brightYellow: 46.5 - brightBlue: 60.3 - brightMagenta: 68.3 - brightCyan: 63.7 - brightWhite: 85.7 diff --git a/themes/serene-dawn.yaml b/themes/serene-dawn.yaml index b98cf21e..84ea14df 100644 --- a/themes/serene-dawn.yaml +++ b/themes/serene-dawn.yaml @@ -8,6 +8,7 @@ source: author: "happyMix" repo: "https://github.com/happymix555/serene-dawn-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=happyMix.serene-dawn" + formats: null colors: bg: "#FDFCF8" fg: "#3A3A3A" diff --git a/themes/serene.yaml b/themes/serene.yaml index c318304b..b09fa94e 100644 --- a/themes/serene.yaml +++ b/themes/serene.yaml @@ -2,12 +2,13 @@ name: "Serene" source: marketplace_id: "thisisroi.serene" version: "1.0.2" - installs: 1436 + installs: 1437 rating: 5 ratings: 1 author: "thisisroi" repo: "https://github.com/thisisroi/serene-theme" url: "https://marketplace.visualstudio.com/items?itemName=thisisroi.serene" + formats: null colors: bg: "#201928" fg: "#9A88B0" diff --git a/themes/serenity-light.yaml b/themes/serenity-light.yaml index 1fa63294..d3291405 100644 --- a/themes/serenity-light.yaml +++ b/themes/serenity-light.yaml @@ -6,6 +6,7 @@ source: author: "Emmett Hintz" repo: "https://github.com/EmmettHintz/serenity" url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.serenity" + formats: null colors: bg: "#FAF4ED" fg: "#575279" diff --git a/themes/serenity-moon.yaml b/themes/serenity-moon.yaml index 2217441a..6f885362 100644 --- a/themes/serenity-moon.yaml +++ b/themes/serenity-moon.yaml @@ -6,6 +6,7 @@ source: author: "Emmett Hintz" repo: "https://github.com/EmmettHintz/serenity" url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.serenity" + formats: null colors: bg: "#232136" fg: "#E7D2C5" diff --git a/themes/serenity-noir.yaml b/themes/serenity-noir.yaml index 709cfe67..57930037 100644 --- a/themes/serenity-noir.yaml +++ b/themes/serenity-noir.yaml @@ -6,6 +6,7 @@ source: author: "Emmett Hintz" repo: "https://github.com/EmmettHintz/serenity" url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.serenity" + formats: null colors: bg: "#0F1014" fg: "#E7D2C5" diff --git a/themes/service-contrast.yaml b/themes/service-contrast.yaml deleted file mode 100644 index aae2adf0..00000000 --- a/themes/service-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "service-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0C0C0C" - fg: "#E8E1DE" - black: "#191919" - red: "#BA0E2E" - green: "#6C8375" - yellow: "#A0AFA1" - blue: "#F0F5F5" - magenta: "#A0AFA1" - cyan: "#6C8375" - white: "#F2EFED" - brightBlack: "#3F3F3F" - brightRed: "#F03E5F" - brightGreen: "#A2B3A9" - brightYellow: "#D7DED8" - brightBlue: "#FFFFFF" - brightMagenta: "#D7DED8" - brightCyan: "#A2B3A9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.1 - black: 0 - red: 21.3 - green: 33.4 - yellow: 56.6 - blue: 100.4 - magenta: 56.6 - cyan: 33.4 - white: 97.5 - brightBlack: 7.9 - brightRed: 37.6 - brightGreen: 58.7 - brightYellow: 85.2 - brightBlue: 107.7 - brightMagenta: 85.2 - brightCyan: 58.7 - brightWhite: 107.7 diff --git a/themes/service-light.yaml b/themes/service-light.yaml deleted file mode 100644 index a25e8c25..00000000 --- a/themes/service-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "service-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#4D5151" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#6C8375" - yellow: "#A0AFA1" - blue: "#8C9191" - magenta: "#A0AFA1" - cyan: "#6C8375" - white: "#595E5E" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#A2B3A9" - brightYellow: "#D7DED8" - brightBlue: "#C0C3C3" - brightMagenta: "#D7DED8" - brightCyan: "#A2B3A9" - brightWhite: "#7F8585" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 87.9 - black: 0 - red: 80.3 - green: 68 - yellow: 45.3 - blue: 59.2 - magenta: 45.3 - cyan: 68 - white: 82.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 43.3 - brightYellow: 18.1 - brightBlue: 32.7 - brightMagenta: 18.1 - brightCyan: 43.3 - brightWhite: 65.1 diff --git a/themes/service.yaml b/themes/service.yaml deleted file mode 100644 index af6b9b3f..00000000 --- a/themes/service.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "service" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#252727" - fg: "#E8E1DE" - black: "#313434" - red: "#BA0E2E" - green: "#6C8375" - yellow: "#A0AFA1" - blue: "#F0F5F5" - magenta: "#A0AFA1" - cyan: "#6C8375" - white: "#F2EFED" - brightBlack: "#575B5B" - brightRed: "#F03E5F" - brightGreen: "#A2B3A9" - brightYellow: "#D7DED8" - brightBlue: "#FFFFFF" - brightMagenta: "#D7DED8" - brightCyan: "#A2B3A9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 86.1 - black: 0 - red: 18.3 - green: 30.4 - yellow: 53.6 - blue: 97.4 - magenta: 53.6 - cyan: 30.4 - white: 94.5 - brightBlack: 15 - brightRed: 34.6 - brightGreen: 55.7 - brightYellow: 82.3 - brightBlue: 104.7 - brightMagenta: 82.3 - brightCyan: 55.7 - brightWhite: 104.7 diff --git a/themes/seti-classic-vscode.yaml b/themes/seti-classic-vscode.yaml index a5aeaa44..fb0e3ed3 100644 --- a/themes/seti-classic-vscode.yaml +++ b/themes/seti-classic-vscode.yaml @@ -8,6 +8,7 @@ source: author: "ecool" repo: "https://github.com/ecool/seti-classic-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ecool.seti-classic-vscode" + formats: null colors: bg: "#191B1C" fg: "#D4D7D6" diff --git a/themes/seti.yaml b/themes/seti.yaml index befe30e1..1f624eca 100644 --- a/themes/seti.yaml +++ b/themes/seti.yaml @@ -1,13 +1,14 @@ -name: "Seti" +name: "seti" source: marketplace_id: "seti.seti" version: "0.0.6" - installs: 22001 + installs: 22003 rating: 5 ratings: 1 author: "sriosv" repo: "https://github.com/Sarchis/seti-syntax" url: "https://marketplace.visualstudio.com/items?itemName=seti.seti" + formats: null colors: bg: "#0E1112" fg: "#ABB2BF" diff --git a/themes/sewayaki-dark.yaml b/themes/sewayaki-dark.yaml index 633d07da..2eae732b 100644 --- a/themes/sewayaki-dark.yaml +++ b/themes/sewayaki-dark.yaml @@ -8,6 +8,7 @@ source: author: "Kitsune Labs" repo: "https://github.com/Kitsune-Labs/Sewayaki-Dark" url: "https://marketplace.visualstudio.com/items?itemName=Kitsune-Labs.sewayaki-dark" + formats: null colors: bg: "#22272E" fg: "#ABB2BF" diff --git a/themes/shaan-s.yaml b/themes/shaan-s.yaml index 007f4343..8fcafeb7 100644 --- a/themes/shaan-s.yaml +++ b/themes/shaan-s.yaml @@ -1,4 +1,4 @@ -name: "shaan's" +name: "Shaan's" source: marketplace_id: "ShaanMephobic.shaans" version: "1.0.2" @@ -8,6 +8,7 @@ source: author: "Shaan Mephobic" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ShaanMephobic.shaans" + formats: null colors: bg: "#292C36" fg: "#E1E4E8" diff --git a/themes/shaant-shakti-mystic-roast.yaml b/themes/shaant-shakti-mystic-roast.yaml index 3ed399dd..3f9bdfc4 100644 --- a/themes/shaant-shakti-mystic-roast.yaml +++ b/themes/shaant-shakti-mystic-roast.yaml @@ -8,6 +8,7 @@ source: author: "Aadityaa" repo: "https://github.com/Aditya-Ace/Shaant-Shakti" url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" + formats: null colors: bg: "#1B1614" fg: "#EBDCC8" diff --git a/themes/shaant-shakti-sand-storm.yaml b/themes/shaant-shakti-sand-storm.yaml index 9682dc37..492ba51a 100644 --- a/themes/shaant-shakti-sand-storm.yaml +++ b/themes/shaant-shakti-sand-storm.yaml @@ -8,6 +8,7 @@ source: author: "Aadityaa" repo: "https://github.com/Aditya-Ace/Shaant-Shakti" url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" + formats: null colors: bg: "#181614" fg: "#F0E6D2" diff --git a/themes/shaant-shakti-soul-drift.yaml b/themes/shaant-shakti-soul-drift.yaml index 0ebb1abd..3ff0156c 100644 --- a/themes/shaant-shakti-soul-drift.yaml +++ b/themes/shaant-shakti-soul-drift.yaml @@ -8,6 +8,7 @@ source: author: "Aadityaa" repo: "https://github.com/Aditya-Ace/Shaant-Shakti" url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" + formats: null colors: bg: "#141314" fg: "#F8F8F2" diff --git a/themes/shaant-shakti-spfx-sanctuary.yaml b/themes/shaant-shakti-spfx-sanctuary.yaml index b116f171..983973b0 100644 --- a/themes/shaant-shakti-spfx-sanctuary.yaml +++ b/themes/shaant-shakti-spfx-sanctuary.yaml @@ -8,6 +8,7 @@ source: author: "Aadityaa" repo: "https://github.com/Aditya-Ace/Shaant-Shakti" url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" + formats: null colors: bg: "#0F1419" fg: "#E8F4FD" diff --git a/themes/shaant-shakti.yaml b/themes/shaant-shakti.yaml index f535e7cf..cbf92be5 100644 --- a/themes/shaant-shakti.yaml +++ b/themes/shaant-shakti.yaml @@ -8,6 +8,7 @@ source: author: "Aadityaa" repo: "https://github.com/Aditya-Ace/Shaant-Shakti" url: "https://marketplace.visualstudio.com/items?itemName=shaant-shakti.shaant-shakti-color-theme" + formats: null colors: bg: "#0B0C10" fg: "#F8F8F2" diff --git a/themes/shadcn-blue-light.yaml b/themes/shadcn-blue-light.yaml index a50b9a01..795c0192 100644 --- a/themes/shadcn-blue-light.yaml +++ b/themes/shadcn-blue-light.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#FFFFFF" fg: "#09090B" diff --git a/themes/shadcn-green-dark.yaml b/themes/shadcn-green-dark.yaml index 8fec97cc..f4653011 100644 --- a/themes/shadcn-green-dark.yaml +++ b/themes/shadcn-green-dark.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#09090B" fg: "#FAFAFA" diff --git a/themes/shadcn-green-light.yaml b/themes/shadcn-green-light.yaml index 61938999..6eabc837 100644 --- a/themes/shadcn-green-light.yaml +++ b/themes/shadcn-green-light.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#FFFFFF" fg: "#09090B" diff --git a/themes/shadcn-neutral-dark.yaml b/themes/shadcn-neutral-dark.yaml index 9a99ab6f..3d6ae8e6 100644 --- a/themes/shadcn-neutral-dark.yaml +++ b/themes/shadcn-neutral-dark.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#0A0A0A" fg: "#FAFAFA" diff --git a/themes/shadcn-neutral-light.yaml b/themes/shadcn-neutral-light.yaml index df0e5358..424669c5 100644 --- a/themes/shadcn-neutral-light.yaml +++ b/themes/shadcn-neutral-light.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#FFFFFF" fg: "#0A0A0A" diff --git a/themes/shadcn-orange-dark.yaml b/themes/shadcn-orange-dark.yaml index 6afbf119..f7f845a1 100644 --- a/themes/shadcn-orange-dark.yaml +++ b/themes/shadcn-orange-dark.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#09090B" fg: "#FAFAFA" diff --git a/themes/shadcn-orange-light.yaml b/themes/shadcn-orange-light.yaml index f43b8b7e..0d018515 100644 --- a/themes/shadcn-orange-light.yaml +++ b/themes/shadcn-orange-light.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#FFFFFF" fg: "#09090B" diff --git a/themes/shadcn-red-dark.yaml b/themes/shadcn-red-dark.yaml index abd48bbf..b5a74f8a 100644 --- a/themes/shadcn-red-dark.yaml +++ b/themes/shadcn-red-dark.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#09090B" fg: "#FAFAFA" diff --git a/themes/shadcn-red-light.yaml b/themes/shadcn-red-light.yaml index 1cf29899..4e70239a 100644 --- a/themes/shadcn-red-light.yaml +++ b/themes/shadcn-red-light.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#FFFFFF" fg: "#09090B" diff --git a/themes/shadcn-rose-dark.yaml b/themes/shadcn-rose-dark.yaml index 43034f6c..dd1d980a 100644 --- a/themes/shadcn-rose-dark.yaml +++ b/themes/shadcn-rose-dark.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#09090B" fg: "#FAFAFA" diff --git a/themes/shadcn-rose-light.yaml b/themes/shadcn-rose-light.yaml index a5884162..763bbfd3 100644 --- a/themes/shadcn-rose-light.yaml +++ b/themes/shadcn-rose-light.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#FFFFFF" fg: "#09090B" diff --git a/themes/shadcn-violet-dark.yaml b/themes/shadcn-violet-dark.yaml index 0e4ddaed..23ee0c3f 100644 --- a/themes/shadcn-violet-dark.yaml +++ b/themes/shadcn-violet-dark.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#09090B" fg: "#FAFAFA" diff --git a/themes/shadcn-violet-light.yaml b/themes/shadcn-violet-light.yaml index b719a28c..99eaffb0 100644 --- a/themes/shadcn-violet-light.yaml +++ b/themes/shadcn-violet-light.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#FFFFFF" fg: "#09090B" diff --git a/themes/shadcn-vivid.yaml b/themes/shadcn-vivid.yaml index 99c2a43d..5377f1ef 100644 --- a/themes/shadcn-vivid.yaml +++ b/themes/shadcn-vivid.yaml @@ -8,6 +8,7 @@ source: author: "Chiziaruhoma Ogbonda" repo: "https://github.com/zfinix/shadcn-vivid-theme" url: "https://marketplace.visualstudio.com/items?itemName=chiziaruhoma.shadcn-vivid-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/shadcn-yellow-dark.yaml b/themes/shadcn-yellow-dark.yaml index 46c1ab90..c29eb86e 100644 --- a/themes/shadcn-yellow-dark.yaml +++ b/themes/shadcn-yellow-dark.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#09090B" fg: "#FAFAFA" diff --git a/themes/shadcn-yellow-light.yaml b/themes/shadcn-yellow-light.yaml index 9b895f58..d4c2eda7 100644 --- a/themes/shadcn-yellow-light.yaml +++ b/themes/shadcn-yellow-light.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad-Sulman" repo: "https://github.com/yourrepo/prism-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Muhammad-Sulman.prism-vscode-themes" + formats: null colors: bg: "#FFFFFF" fg: "#09090B" diff --git a/themes/shaddy-lighta.yaml b/themes/shaddy-lighta.yaml index 5dc26694..6417cbb1 100644 --- a/themes/shaddy-lighta.yaml +++ b/themes/shaddy-lighta.yaml @@ -8,6 +8,7 @@ source: author: "Francisco" repo: "https://github.com/franciscoamado/shaddy-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Francisco.shaddy" + formats: null colors: bg: "#FAFAFA" fg: "#0A0A0A" diff --git a/themes/shaddy.yaml b/themes/shaddy.yaml index ab09a428..6a0fd876 100644 --- a/themes/shaddy.yaml +++ b/themes/shaddy.yaml @@ -8,6 +8,7 @@ source: author: "Francisco" repo: "https://github.com/franciscoamado/shaddy-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Francisco.shaddy" + formats: null colors: bg: "#0A0A0A" fg: "#FAFAFA" diff --git a/themes/shade-theme.yaml b/themes/shade-theme.yaml index 284fcb6c..9558409b 100644 --- a/themes/shade-theme.yaml +++ b/themes/shade-theme.yaml @@ -8,6 +8,7 @@ source: author: "RLabs Inc." repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" + formats: null colors: bg: "#171717" fg: "#FFFFFF" diff --git a/themes/shades-of-blue.yaml b/themes/shades-of-blue.yaml index 9f301327..96ea331a 100644 --- a/themes/shades-of-blue.yaml +++ b/themes/shades-of-blue.yaml @@ -1,4 +1,4 @@ -name: "Shades-Of-Blue" +name: "Shades of Blue" source: marketplace_id: "bakrimoharram.shades-of-blue" version: "0.0.6" @@ -8,6 +8,7 @@ source: author: "bakrimoharram" repo: "https://github.com/bakrimoharram/shades-of-blue" url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.shades-of-blue" + formats: null colors: bg: "#172243" fg: "#4782C0" diff --git a/themes/shades-of-cyan-theme.yaml b/themes/shades-of-cyan-theme.yaml index 448c9f05..6bf1beb4 100644 --- a/themes/shades-of-cyan-theme.yaml +++ b/themes/shades-of-cyan-theme.yaml @@ -2,12 +2,13 @@ name: "Shades of Cyan theme" source: marketplace_id: "moondevaa.shades-of-cyan-theme" version: "0.1.1" - installs: 4948 + installs: 4956 rating: 5 ratings: 1 author: "moondevaa" repo: "https://github.com/AaBbdev29/Shades-of-Cyan-Theme" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.shades-of-cyan-theme" + formats: null colors: bg: "#00101A" fg: "#C4D8E2" diff --git a/themes/shades-of-gravy.yaml b/themes/shades-of-gravy.yaml index 47ddf2ed..0a491645 100644 --- a/themes/shades-of-gravy.yaml +++ b/themes/shades-of-gravy.yaml @@ -8,6 +8,7 @@ source: author: "Mr. Icecream" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Mr-Icecream.shades-of-gravy" + formats: null colors: bg: "#444649" fg: "#C5C7C1" diff --git a/themes/shades-of-life-light.yaml b/themes/shades-of-life-light.yaml deleted file mode 100644 index cfdee05a..00000000 --- a/themes/shades-of-life-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Shades of Life (Light)" -source: - marketplace_id: "rafael-bertelli-borges.shades-of-life" - version: "0.0.2" - installs: 92 - rating: 0 - ratings: 0 - author: "Rafael Bertelli Borges" - repo: "https://github.com/rafaelbertelli/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=rafael-bertelli-borges.shades-of-life" -colors: - bg: "#EEECEC" - fg: "#271718" - black: "#000000" - red: "#5E2B22" - green: "#00A74E" - yellow: "#41481E" - blue: "#41287D" - magenta: "#3A1E48" - cyan: "#276B6B" - white: "#C48100" - brightBlack: "#464646" - brightRed: "#FF5C3E" - brightGreen: "#00AD52" - brightYellow: "#728A00" - brightBlue: "#8F60FF" - brightMagenta: "#9E2AD7" - brightCyan: "#009D9D" - brightWhite: "#898900" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 93 - black: 95 - red: 84.9 - green: 47 - yellow: 81.4 - blue: 85 - magenta: 89.9 - cyan: 69.5 - white: 48.3 - brightBlack: 80.8 - brightRed: 45.4 - brightGreen: 44.4 - brightYellow: 55.4 - brightBlue: 55.5 - brightMagenta: 65.5 - brightCyan: 49 - brightWhite: 53.6 diff --git a/themes/shades-of-life.yaml b/themes/shades-of-life.yaml deleted file mode 100644 index be44c501..00000000 --- a/themes/shades-of-life.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Shades of Life" -source: - marketplace_id: "rafael-bertelli-borges.shades-of-life" - version: "0.0.2" - installs: 92 - rating: 0 - ratings: 0 - author: "Rafael Bertelli Borges" - repo: "https://github.com/rafaelbertelli/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=rafael-bertelli-borges.shades-of-life" -colors: - bg: "#1D0A2F" - fg: "#E0E0E0" - black: "#000000" - red: "#FF3A00" - green: "#00FF50" - yellow: "#FFCC00" - blue: "#00CCFF" - magenta: "#880088" - cyan: "#00BCD4" - white: "#FFFFFF" - brightBlack: "#757575" - brightRed: "#FF3A00" - brightGreen: "#00FF50" - brightYellow: "#FFCC00" - brightBlue: "#00CCFF" - brightMagenta: "#880088" - brightCyan: "#00BCD4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 304 - pair: null - contrast: - fg: 87 - black: 0 - red: 39.2 - green: 86 - yellow: 78.7 - blue: 66.3 - magenta: 13.5 - cyan: 56.6 - white: 107 - brightBlack: 28.8 - brightRed: 39.2 - brightGreen: 86 - brightYellow: 78.7 - brightBlue: 66.3 - brightMagenta: 13.5 - brightCyan: 56.6 - brightWhite: 107 diff --git a/themes/shades-of-midnight-blue-dark-theme.yaml b/themes/shades-of-midnight-blue-dark-theme.yaml index 8cbaae81..68208939 100644 --- a/themes/shades-of-midnight-blue-dark-theme.yaml +++ b/themes/shades-of-midnight-blue-dark-theme.yaml @@ -1,13 +1,14 @@ -name: "Shades of Midnight Blue dark theme" +name: "shades of midnight blue dark theme" source: marketplace_id: "moondevaa.shadesofmidnightbluedarktheme" version: "0.5.8" - installs: 17323 + installs: 17344 rating: 5 ratings: 1 author: "moondevaa" repo: "https://github.com/AaBbdev29/shades-of-midnight-blue-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.shadesofmidnightbluedarktheme" + formats: null colors: bg: "#00001C" fg: "#DDE7A0" diff --git a/themes/shades-of-violet.yaml b/themes/shades-of-violet.yaml index 7adfe6cd..232ecc20 100644 --- a/themes/shades-of-violet.yaml +++ b/themes/shades-of-violet.yaml @@ -1,4 +1,4 @@ -name: "shades-of-violet" +name: "Shades of Violet" source: marketplace_id: "bakrimoharram.shades-of-violet" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "bakrimoharram" repo: "https://github.com/bakrimoharram/purple-blue-theme" url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.shades-of-violet" + formats: null colors: bg: "#1C1728" fg: "#D1C7D3" diff --git a/themes/shades.yaml b/themes/shades.yaml index 9c5f0054..7a09698e 100644 --- a/themes/shades.yaml +++ b/themes/shades.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/MyThemes" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" + formats: null colors: bg: "#FAF4FD" fg: "#1A0017" diff --git a/themes/shadowborn.yaml b/themes/shadowborn.yaml deleted file mode 100644 index 805c94a1..00000000 --- a/themes/shadowborn.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Shadowborn" -source: - marketplace_id: "RyzenFromFire.vscode-shadowborn-theme" - version: "1.0.2" - installs: 439 - rating: 0 - ratings: 0 - author: "RyzenFromFire" - repo: "https://github.com/RyzenFromFire/vscode-shadowborn" - url: "https://marketplace.visualstudio.com/items?itemName=RyzenFromFire.vscode-shadowborn-theme" -colors: - bg: "#202023" - fg: "#CCCCCC" - black: "#0D0F0F" - red: "#BC0104" - green: "#4AAA27" - yellow: "#FE9109" - blue: "#0E386E" - magenta: "#942661" - cyan: "#10A2BF" - white: "#E5E5E5" - brightBlack: "#72504B" - brightRed: "#FB4934" - brightGreen: "#80E847" - brightYellow: "#FABD2F" - brightBlue: "#0287FF" - brightMagenta: "#D600BC" - brightCyan: "#28D9FF" - brightWhite: "#F2F2F2" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 73.5 - black: 0 - red: 19.5 - green: 43.7 - yellow: 55.8 - blue: 0 - magenta: 14.1 - cyan: 43.2 - white: 88.9 - brightBlack: 15.3 - brightRed: 39 - brightGreen: 76 - brightYellow: 70.6 - brightBlue: 37.3 - brightMagenta: 30.3 - brightCyan: 71.3 - brightWhite: 97.2 diff --git a/themes/shadowscape.yaml b/themes/shadowscape.yaml index ee83d47e..fd9b2ce3 100644 --- a/themes/shadowscape.yaml +++ b/themes/shadowscape.yaml @@ -8,6 +8,7 @@ source: author: "KJS - Officials" repo: "https://github.com/ShKev03/Shadowscape" url: "https://marketplace.visualstudio.com/items?itemName=KJS-Officials.shadowscape" + formats: null colors: bg: "#1C1F1E" fg: "#FFFFFF" diff --git a/themes/shadowspectrum.yaml b/themes/shadowspectrum.yaml deleted file mode 100644 index 8babf948..00000000 --- a/themes/shadowspectrum.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ShadowSpectrum" -source: - marketplace_id: "ShadowSpectrum.shadow-dev" - version: "0.20.0" - installs: 69 - rating: 0 - ratings: 0 - author: "ShadowSpectrum" - repo: "https://github.com/alvin-dennis/shadow-dev" - url: "https://marketplace.visualstudio.com/items?itemName=ShadowSpectrum.shadow-dev" -colors: - bg: "#0B0A0A" - fg: "#FFFFFF" - black: "#131212" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#BEBABA" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.7 - black: 0 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.3 - magenta: 30.6 - cyan: 48.4 - white: 65.5 - brightBlack: 22.9 - brightRed: 39.4 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.9 - brightMagenta: 46.2 - brightCyan: 56.3 - brightWhite: 90.9 diff --git a/themes/shale.yaml b/themes/shale.yaml deleted file mode 100644 index e9a35299..00000000 --- a/themes/shale.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Shale" -source: - marketplace_id: "mullakhmetov.shale" - version: "0.1.1" - installs: 5738 - rating: 4.75 - ratings: 4 - author: "mullakhmetov" - repo: "https://github.com/mullakhmetov/vscode-theme-shale" - url: "https://marketplace.visualstudio.com/items?itemName=mullakhmetov.shale" -colors: - bg: "#2E3440" - fg: "#D8DEE9" - black: "#3B4252" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#E5E9F0" - brightBlack: "#4C566A" - brightRed: "#BF616A" - brightGreen: "#A3BE8C" - brightYellow: "#EBCB8B" - brightBlue: "#81A1C1" - brightMagenta: "#B48EAD" - brightCyan: "#8FBCBB" - brightWhite: "#ECEFF4" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 80.3 - black: 0 - red: 27.9 - green: 56.6 - yellow: 71.3 - blue: 43.6 - magenta: 41.4 - cyan: 57.6 - white: 87.3 - brightBlack: 10.3 - brightRed: 27.9 - brightGreen: 56.6 - brightYellow: 71.3 - brightBlue: 43.6 - brightMagenta: 41.4 - brightCyan: 55.5 - brightWhite: 91.2 diff --git a/themes/shamrock.yaml b/themes/shamrock.yaml index df47dc07..06f52828 100644 --- a/themes/shamrock.yaml +++ b/themes/shamrock.yaml @@ -8,6 +8,7 @@ source: author: "DymNomZ" repo: "https://github.com/DymNomZ/Shamrock" url: "https://marketplace.visualstudio.com/items?itemName=DymNomZ.dymnomz-shamrock" + formats: null colors: bg: "#001A0C" fg: "#00913D" diff --git a/themes/sharkdark-theme.yaml b/themes/sharkdark-theme.yaml deleted file mode 100644 index 5e0ff7c2..00000000 --- a/themes/sharkdark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sharkdark Theme" -source: - marketplace_id: "Sharkdark.sharkdark" - version: "0.0.1" - installs: 352 - rating: 0 - ratings: 0 - author: "Sharkdark" - repo: "https://github.com/dann-dann/sharkdark" - url: "https://marketplace.visualstudio.com/items?itemName=Sharkdark.sharkdark" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#FF595E" - green: "#CEF144" - yellow: "#FDA331" - blue: "#AD9CFF" - magenta: "#D381C3" - cyan: "#76C7B7" - white: "#FAFAFA" - brightBlack: "#B0B0B0" - brightRed: "#FB0120" - brightGreen: "#A1C659" - brightYellow: "#FDA331" - brightBlue: "#729FCF" - brightMagenta: "#D381C3" - brightCyan: "#76C7B7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 45.3 - green: 89.7 - yellow: 63.8 - blue: 56 - magenta: 49.3 - cyan: 64.4 - white: 104.6 - brightBlack: 59.5 - brightRed: 36.6 - brightGreen: 64.9 - brightYellow: 63.8 - brightBlue: 48.5 - brightMagenta: 49.3 - brightCyan: 64.4 - brightWhite: 107.9 diff --git a/themes/sharpblue.yaml b/themes/sharpblue.yaml index fecf898b..7b8d31b4 100644 --- a/themes/sharpblue.yaml +++ b/themes/sharpblue.yaml @@ -8,6 +8,7 @@ source: author: "Katy248" repo: "https://github.com/Katy248/SharpBlue-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=Katy248.sharpblue-theme" + formats: null colors: bg: "#081921" fg: "#FDF9F7" diff --git a/themes/shaughnessy-nanite-theme.yaml b/themes/shaughnessy-nanite-theme.yaml index 8191d86f..05349a19 100644 --- a/themes/shaughnessy-nanite-theme.yaml +++ b/themes/shaughnessy-nanite-theme.yaml @@ -1,4 +1,4 @@ -name: "Shaughnessy-Nanite-Theme" +name: "shaughnessy-nanite-theme" source: marketplace_id: "AbdulShabazz.shaughnessy-nanite-theme" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Abdul Shabazz" repo: "https://github.com/AbdulShabaaz/shaughnessy-nanite-theme" url: "https://marketplace.visualstudio.com/items?itemName=AbdulShabazz.shaughnessy-nanite-theme" + formats: null colors: bg: "#24292E" fg: "#EEFFFF" diff --git a/themes/sheme.yaml b/themes/sheme.yaml index bcc889de..6711c10c 100644 --- a/themes/sheme.yaml +++ b/themes/sheme.yaml @@ -8,6 +8,7 @@ source: author: "shoedler" repo: "https://github.com/shoedler/vscode-sheme" url: "https://marketplace.visualstudio.com/items?itemName=shoedler.sheme" + formats: null colors: bg: "#0F111A" fg: "#7F849C" diff --git a/themes/shibainu-dark.yaml b/themes/shibainu-dark.yaml index e808587b..3ba64c14 100644 --- a/themes/shibainu-dark.yaml +++ b/themes/shibainu-dark.yaml @@ -8,6 +8,7 @@ source: author: "hky" repo: "https://github.com/hky301/vscode-theme-koki" url: "https://marketplace.visualstudio.com/items?itemName=hky.theme-ShibaInu" + formats: null colors: bg: "#0E0F11" fg: "#DBD7CA" diff --git a/themes/shibuya.yaml b/themes/shibuya.yaml index 289e46bb..e14f163d 100644 --- a/themes/shibuya.yaml +++ b/themes/shibuya.yaml @@ -2,12 +2,13 @@ name: "Shibuya" source: marketplace_id: "jeroen-meijer.shibuya" version: "1.0.2" - installs: 9103 + installs: 9104 rating: 5 ratings: 3 author: "Jeroen Meijer" repo: "https://github.com/jeroen-meijer/shibuya" url: "https://marketplace.visualstudio.com/items?itemName=jeroen-meijer.shibuya" + formats: null colors: bg: "#0C0D12" fg: "#C7CCD4" diff --git a/themes/shifting-sands.yaml b/themes/shifting-sands.yaml index 77e947df..82846e4f 100644 --- a/themes/shifting-sands.yaml +++ b/themes/shifting-sands.yaml @@ -8,6 +8,7 @@ source: author: "Mr Lizard & Company" repo: "https://github.com/webstek/shifting_sands" url: "https://marketplace.visualstudio.com/items?itemName=MrLizardAndCompany.shifting-sands" + formats: null colors: bg: "#D1B799" fg: "#534F4F" diff --git a/themes/shiina.yaml b/themes/shiina.yaml index 2c5bdc75..8b222360 100644 --- a/themes/shiina.yaml +++ b/themes/shiina.yaml @@ -8,6 +8,7 @@ source: author: "yamaimo" repo: "https://github.com/yarnaimo/shiina" url: "https://marketplace.visualstudio.com/items?itemName=yarnaimo.shiina-theme" + formats: null colors: bg: "#F5F5F5" fg: "#434E55" diff --git a/themes/shinjuku.yaml b/themes/shinjuku.yaml index be50fc26..82b82a09 100644 --- a/themes/shinjuku.yaml +++ b/themes/shinjuku.yaml @@ -8,6 +8,7 @@ source: author: "Samir Roy" repo: "https://github.com/samir-roy/shinjuku-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SamirRoy.shinjuku-vscode-theme" + formats: null colors: bg: "#191922" fg: "#D8DEE9" diff --git a/themes/shinkai.yaml b/themes/shinkai.yaml index 579099c0..65604e50 100644 --- a/themes/shinkai.yaml +++ b/themes/shinkai.yaml @@ -8,6 +8,7 @@ source: author: "Tobias Timm" repo: "https://github.com/tobiastimm/umi" url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.umi" + formats: null colors: bg: "#02112B" fg: "#D4D4D4" diff --git a/themes/shinobu-kocho.yaml b/themes/shinobu-kocho.yaml deleted file mode 100644 index 66ba1d33..00000000 --- a/themes/shinobu-kocho.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Shinobu Kocho" -source: - marketplace_id: "devLocifer.hashira-code-theme" - version: "0.0.1" - installs: 739 - rating: 5 - ratings: 1 - author: "devLocifer" - repo: "https://github.com/diazdjul19/hashira-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" -colors: - bg: "#1F2430" - fg: "#DADBC0" - black: "#191E2A" - red: "#ED8274" - green: "#A6CC70" - yellow: "#FAD07B" - blue: "#95E6CB" - magenta: "#CFBAFA" - cyan: "#95E6CB" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F28779" - brightGreen: "#BAE67E" - brightYellow: "#FFD580" - brightBlue: "#95E6CB" - brightMagenta: "#D4BFFF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 267 - pair: null - contrast: - fg: 80.8 - black: 0 - red: 48.6 - green: 65.7 - yellow: 78.7 - blue: 79.1 - magenta: 68.3 - cyan: 79.1 - white: 69.9 - brightBlack: 21.1 - brightRed: 51.1 - brightGreen: 80.2 - brightYellow: 81.8 - brightBlue: 79.1 - brightMagenta: 71.2 - brightCyan: 79.1 - brightWhite: 105.1 diff --git a/themes/shion.yaml b/themes/shion.yaml index 184484f0..6546d8f7 100644 --- a/themes/shion.yaml +++ b/themes/shion.yaml @@ -8,6 +8,7 @@ source: author: "Henri Lima" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.shadowrealm-rebirth" + formats: null colors: bg: "#1A1A1A" fg: "#F2F2F2" diff --git a/themes/ship-dark.yaml b/themes/ship-dark.yaml deleted file mode 100644 index ee5d4ce7..00000000 --- a/themes/ship-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "SHIP-dark" -source: - marketplace_id: "SHIPAI.shipai" - version: "0.0.1" - installs: 95 - rating: 0 - ratings: 0 - author: "SHIP.AI" - repo: "https://github.com/vkyprmr/ship-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SHIPAI.shipai" -colors: - bg: "#171C26" - fg: "#E2E8F0" - black: "#000000" - red: "#B40000" - green: "#019746" - yellow: "#DAB22E" - blue: "#064A9A" - magenta: "#A4005D" - cyan: "#006EC8" - white: "#DEDEDE" - brightBlack: "#3D4454" - brightRed: "#FF0400" - brightGreen: "#00FF6E" - brightYellow: "#FFEC00" - brightBlue: "#0077FF" - brightMagenta: "#FA8685" - brightCyan: "#009DFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 264 - pair: null - contrast: - fg: 90.9 - black: 0 - red: 18.3 - green: 35.2 - yellow: 61.7 - blue: 11.9 - magenta: 16.1 - cyan: 25.3 - white: 85.1 - brightBlack: 8.2 - brightRed: 36 - brightGreen: 85.7 - brightYellow: 92.1 - brightBlue: 32.6 - brightMagenta: 53.9 - brightCyan: 45.8 - brightWhite: 106.3 diff --git a/themes/ship-light.yaml b/themes/ship-light.yaml deleted file mode 100644 index c7c23ffd..00000000 --- a/themes/ship-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "SHIP-light" -source: - marketplace_id: "SHIPAI.shipai" - version: "0.0.1" - installs: 95 - rating: 0 - ratings: 0 - author: "SHIP.AI" - repo: "https://github.com/vkyprmr/ship-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=SHIPAI.shipai" -colors: - bg: "#E2E8F0" - fg: "#171C26" - black: "#000000" - red: "#B40000" - green: "#019746" - yellow: "#DAB22E" - blue: "#064A9A" - magenta: "#A4005D" - cyan: "#006EC8" - white: "#DEDEDE" - brightBlack: "#3D4454" - brightRed: "#FF0400" - brightGreen: "#00FF6E" - brightYellow: "#FFEC00" - brightBlue: "#0077FF" - brightMagenta: "#FA8685" - brightCyan: "#009DFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: 256 - pair: null - contrast: - fg: 90 - black: 92.1 - red: 68 - green: 50.9 - yellow: 25.1 - blue: 74.8 - magenta: 70.3 - cyan: 60.9 - white: 0 - brightBlack: 78.6 - brightRed: 50.1 - brightGreen: 0 - brightYellow: 0 - brightBlue: 53.5 - brightMagenta: 32.6 - brightCyan: 40.4 - brightWhite: 13.4 diff --git a/themes/shiro-sakura-light.yaml b/themes/shiro-sakura-light.yaml deleted file mode 100644 index bae91519..00000000 --- a/themes/shiro-sakura-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Shiro Sakura (Light" -source: - marketplace_id: "cnrxad.sakura-x" - version: "1.0.0" - installs: 181 - rating: 0 - ratings: 0 - author: "cnrxad" - repo: "https://github.com/cnrxad/sakura-x" - url: "https://marketplace.visualstudio.com/items?itemName=cnrxad.sakura-x" -colors: - bg: "#FFF6FA" - fg: "#403344" - black: "#FFFFFF" - red: "#E05297" - green: "#70C17C" - yellow: "#E5B85C" - blue: "#82A0F8" - magenta: "#D191FF" - cyan: "#7AD2D1" - white: "#403344" - brightBlack: "#FFFFFF" - brightRed: "#E05297" - brightGreen: "#70C17C" - brightYellow: "#E5B85C" - brightBlue: "#82A0F8" - brightMagenta: "#D191FF" - brightCyan: "#7AD2D1" - brightWhite: "#403344" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 93.1 - black: 0 - red: 58.8 - green: 38.8 - yellow: 30.7 - blue: 45.3 - magenta: 40.7 - cyan: 27.9 - white: 93.1 - brightBlack: 0 - brightRed: 58.8 - brightGreen: 38.8 - brightYellow: 30.7 - brightBlue: 45.3 - brightMagenta: 40.7 - brightCyan: 27.9 - brightWhite: 93.1 diff --git a/themes/shirotelin.yaml b/themes/shirotelin.yaml index bc10593e..e6cbe7f9 100644 --- a/themes/shirotelin.yaml +++ b/themes/shirotelin.yaml @@ -8,6 +8,7 @@ source: author: "yasukotelin" repo: "https://github.com/yasukotelin/shirotelin-vscode" url: "https://marketplace.visualstudio.com/items?itemName=yasukotelin.shirotelin" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/shiv-vscode-theme.yaml b/themes/shiv-vscode-theme.yaml index 57707359..3c09fa06 100644 --- a/themes/shiv-vscode-theme.yaml +++ b/themes/shiv-vscode-theme.yaml @@ -8,6 +8,7 @@ source: author: "shivananda sai" repo: "https://github.com/ssk090/shiv-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=shivanandasai.shiv-vscode-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/shivam.yaml b/themes/shivam.yaml deleted file mode 100644 index 4269d27d..00000000 --- a/themes/shivam.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "SHIVAM" -source: - marketplace_id: "youcancallmeEvans.shivamvscodetheme" - version: "0.0.1" - installs: 82 - rating: 0 - ratings: 0 - author: "Shiva" - repo: "https://github.com/youcancallmeEvans/shivamvscodetheme" - url: "https://marketplace.visualstudio.com/items?itemName=youcancallmeEvans.shivamvscodetheme" -colors: - bg: "#1F1D1D" - fg: "#AF8BFF" - black: "#3D3D3D" - red: "#FF3333" - green: "#00FF64" - yellow: "#FFE779" - blue: "#1584FF" - magenta: "#FF02FF" - cyan: "#0AE1FF" - white: "#A3A3A3" - brightBlack: "#666666" - brightRed: "#FF6767" - brightGreen: "#97FFB1" - brightYellow: "#FFCE00" - brightBlue: "#95CCFF" - brightMagenta: "#FF9AFF" - brightCyan: "#8EF4FF" - brightWhite: "#C9C9C9" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 48.9 - black: 0 - red: 37.9 - green: 85.3 - yellow: 90.5 - blue: 36.7 - magenta: 44.4 - cyan: 75.3 - white: 50.7 - brightBlack: 21.3 - brightRed: 46.4 - brightGreen: 91.8 - brightYellow: 78.7 - brightBlue: 70.8 - brightMagenta: 66.1 - brightCyan: 88.9 - brightWhite: 72.1 diff --git a/themes/shoxwave.yaml b/themes/shoxwave.yaml index 37424032..325e0fb8 100644 --- a/themes/shoxwave.yaml +++ b/themes/shoxwave.yaml @@ -8,6 +8,7 @@ source: author: "Colt Shivers" repo: "https://github.com/shoxwave/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Shoxwave.shoxwave-vscode-theme" + formats: null colors: bg: "#646464" fg: "#D4D4D4" diff --git a/themes/shrek-contrast.yaml b/themes/shrek-contrast.yaml deleted file mode 100644 index 5e0e5edd..00000000 --- a/themes/shrek-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "shrek-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#0D0D0D" - red: "#BA0E2E" - green: "#B2DE62" - yellow: "#857A5E" - blue: "#F0F2EB" - magenta: "#BFB59B" - cyan: "#B2DE62" - white: "#FFFFFF" - brightBlack: "#333333" - brightRed: "#F03E5F" - brightGreen: "#DBF0B6" - brightYellow: "#B4AB95" - brightBlue: "#FFFFFF" - brightMagenta: "#E7E3D9" - brightCyan: "#DBF0B6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 21.5 - green: 77.8 - yellow: 32.3 - blue: 98.7 - magenta: 62.6 - cyan: 77.8 - white: 107.9 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 93 - brightYellow: 57.1 - brightBlue: 107.9 - brightMagenta: 89.9 - brightCyan: 93 - brightWhite: 107.9 diff --git a/themes/shrek-light.yaml b/themes/shrek-light.yaml deleted file mode 100644 index 59f51450..00000000 --- a/themes/shrek-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "shrek-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#222222" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#B2DE62" - yellow: "#857A5E" - blue: "#AFB2A7" - magenta: "#BFB59B" - cyan: "#B2DE62" - white: "#2F2F2F" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#DBF0B6" - brightYellow: "#B4AB95" - brightBlue: "#E0E2DD" - brightMagenta: "#E7E3D9" - brightCyan: "#DBF0B6" - brightWhite: "#555555" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.9 - black: 0 - red: 80.3 - green: 25.3 - yellow: 69.4 - blue: 42.3 - magenta: 39.7 - cyan: 25.3 - white: 99.8 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 11.1 - brightYellow: 45 - brightBlue: 15.1 - brightMagenta: 14 - brightCyan: 11.1 - brightWhite: 85.9 diff --git a/themes/shrek.yaml b/themes/shrek.yaml deleted file mode 100644 index 71166c67..00000000 --- a/themes/shrek.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "shrek" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#222222" - fg: "#FFFFFF" - black: "#2F2F2F" - red: "#BA0E2E" - green: "#B2DE62" - yellow: "#857A5E" - blue: "#F0F2EB" - magenta: "#BFB59B" - cyan: "#B2DE62" - white: "#FFFFFF" - brightBlack: "#555555" - brightRed: "#F03E5F" - brightGreen: "#DBF0B6" - brightYellow: "#B4AB95" - brightBlue: "#FFFFFF" - brightMagenta: "#E7E3D9" - brightCyan: "#DBF0B6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 105.5 - black: 0 - red: 19.1 - green: 75.4 - yellow: 29.9 - blue: 96.3 - magenta: 60.2 - cyan: 75.4 - white: 105.5 - brightBlack: 13.7 - brightRed: 35.4 - brightGreen: 90.6 - brightYellow: 54.7 - brightBlue: 105.5 - brightMagenta: 87.4 - brightCyan: 90.6 - brightWhite: 105.5 diff --git a/themes/shuri-midnight.yaml b/themes/shuri-midnight.yaml index 4f16a94b..a313b2bb 100644 --- a/themes/shuri-midnight.yaml +++ b/themes/shuri-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Keny Yahat" repo: "https://github.com/ky12228121/okinawan" url: "https://marketplace.visualstudio.com/items?itemName=ky12228121.okinawan-themes" + formats: null colors: bg: "#150A0A" fg: "#DCE1E6" diff --git a/themes/shuvitheme.yaml b/themes/shuvitheme.yaml index 70100a16..9a56ab2e 100644 --- a/themes/shuvitheme.yaml +++ b/themes/shuvitheme.yaml @@ -8,6 +8,7 @@ source: author: "Shuvi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Shuvi-0.shuvitheme" + formats: null colors: bg: "#151515" fg: "#ABB2BF" diff --git a/themes/shydl3.yaml b/themes/shydl3.yaml index dd507543..e772bac7 100644 --- a/themes/shydl3.yaml +++ b/themes/shydl3.yaml @@ -8,6 +8,7 @@ source: author: "shydl3" repo: null url: "https://marketplace.visualstudio.com/items?itemName=shydl3.shydl3" + formats: null colors: bg: "#131313" fg: "#E8E8E8" diff --git a/themes/siberia.yaml b/themes/siberia.yaml index 6448c495..01d80532 100644 --- a/themes/siberia.yaml +++ b/themes/siberia.yaml @@ -8,6 +8,7 @@ source: author: "Pavel" repo: "https://github.com/siberia-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=pavel-shatalov.siberia-theme" + formats: null colors: bg: "#292D39" fg: "#97A6D7" diff --git a/themes/side-punk-sql.yaml b/themes/side-punk-sql.yaml index aa337adf..89470a13 100644 --- a/themes/side-punk-sql.yaml +++ b/themes/side-punk-sql.yaml @@ -8,6 +8,7 @@ source: author: "HuachiWu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HuachiWu.side-punk-theme" + formats: null colors: bg: "#23262F" fg: "#F8F8F2" diff --git a/themes/sidev-monokai-dim-ts.yaml b/themes/sidev-monokai-dim-ts.yaml index 7bafa697..95b7c494 100644 --- a/themes/sidev-monokai-dim-ts.yaml +++ b/themes/sidev-monokai-dim-ts.yaml @@ -8,6 +8,7 @@ source: author: "slavko.ivanovic" repo: "https://github.com/slavkoivanovic/sidev-monokai-dim-ts" url: "https://marketplace.visualstudio.com/items?itemName=sidev.monokai-dim-ts" + formats: null colors: bg: "#242424" fg: "#C5C8C6" diff --git a/themes/siemor.yaml b/themes/siemor.yaml index 2665ff8d..e081c6f7 100644 --- a/themes/siemor.yaml +++ b/themes/siemor.yaml @@ -8,6 +8,7 @@ source: author: "Dimitrios Lytras" repo: "https://github.com/DimitrisNL/siemor" url: "https://marketplace.visualstudio.com/items?itemName=dnlytras.siemor" + formats: null colors: bg: "#21252B" fg: "#B0BCD3" diff --git a/themes/sign-theme-v3.yaml b/themes/sign-theme-v3.yaml index 6d5532b4..e2a2db4a 100644 --- a/themes/sign-theme-v3.yaml +++ b/themes/sign-theme-v3.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "weuoimi.sign-theme-vs-code" version: "0.1.2" installs: 83 + rating: 0 + ratings: 0 author: "weuoimi" repo: "https://github.com/stakhovyak/vs-sign-theme" url: "https://marketplace.visualstudio.com/items?itemName=weuoimi.sign-theme-vs-code" + formats: null colors: bg: "#29282A" fg: "#EEEFE6" diff --git a/themes/sign-theme-v4.yaml b/themes/sign-theme-v4.yaml index 623514f1..98eef603 100644 --- a/themes/sign-theme-v4.yaml +++ b/themes/sign-theme-v4.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "weuoimi.sign-theme-vs-code" version: "0.1.2" installs: 83 + rating: 0 + ratings: 0 author: "weuoimi" repo: "https://github.com/stakhovyak/vs-sign-theme" url: "https://marketplace.visualstudio.com/items?itemName=weuoimi.sign-theme-vs-code" + formats: null colors: bg: "#2B2826" fg: "#CBCBCD" diff --git a/themes/siksnis-dev.yaml b/themes/siksnis-dev.yaml index 38db7d1c..1369b966 100644 --- a/themes/siksnis-dev.yaml +++ b/themes/siksnis-dev.yaml @@ -8,6 +8,7 @@ source: author: "siksnisdev" repo: "https://github.com/msiksnis/siksnis.dev-theme" url: "https://marketplace.visualstudio.com/items?itemName=siksnisdev.siksnis-dev-theme" + formats: null colors: bg: "#111111" fg: "#FF8B56" diff --git a/themes/silent-code.yaml b/themes/silent-code.yaml deleted file mode 100644 index 03fcc6f0..00000000 --- a/themes/silent-code.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "silent-code" -source: - marketplace_id: "tirthdabgar.silent-code" - version: "0.0.2" - installs: 1 - rating: 0 - ratings: 0 - author: "Tirth Dabgar" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=tirthdabgar.silent-code" -colors: - bg: "#0F111A" - fg: "#CFD8DC" - black: "#0C0E14" - red: "#FF5370" - green: "#98C379" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#CFD8DC" - brightBlack: "#3B4252" - brightRed: "#FF6B81" - brightGreen: "#B6F2A0" - brightYellow: "#FFD580" - brightBlue: "#9BBCFF" - brightMagenta: "#D7AEFB" - brightCyan: "#9FEFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 275 - pair: null - contrast: - fg: 81.4 - black: 0 - red: 44.1 - green: 62.7 - yellow: 79.4 - blue: 56.4 - magenta: 54.2 - cyan: 78.7 - white: 81.4 - brightBlack: 8.6 - brightRed: 49.1 - brightGreen: 88.6 - brightYellow: 84 - brightBlue: 65.7 - brightMagenta: 67.2 - brightCyan: 88.9 - brightWhite: 107.3 diff --git a/themes/silicon-dark.yaml b/themes/silicon-dark.yaml index 42f18ad8..b3965e84 100644 --- a/themes/silicon-dark.yaml +++ b/themes/silicon-dark.yaml @@ -8,6 +8,7 @@ source: author: "Janis Altherr" repo: "https://gitlab.com/janis/silicon" url: "https://marketplace.visualstudio.com/items?itemName=lobidu.vscode-theme-silicon" + formats: null colors: bg: "#1E1E1E" fg: "#B4C2C2" diff --git a/themes/silk-petal.yaml b/themes/silk-petal.yaml deleted file mode 100644 index 546531b3..00000000 --- a/themes/silk-petal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Silk-Petal" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#252525" - fg: "#FBFBFB" - black: "#252525" - red: "#DC2828" - green: "#29C3A0" - yellow: "#D29922" - blue: "#D924F5" - magenta: "#D924F5" - cyan: "#29C3A0" - white: "#FBFBFB" - brightBlack: "#252525" - brightRed: "#DC2828" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#D924F5" - brightMagenta: "#D924F5" - brightCyan: "#29C3A0" - brightWhite: "#FBFBFB" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 102.3 - black: 0 - red: 27.3 - green: 55.7 - yellow: 49.8 - blue: 35.1 - magenta: 35.1 - cyan: 55.7 - white: 102.3 - brightBlack: 0 - brightRed: 27.3 - brightGreen: 55.7 - brightYellow: 49.8 - brightBlue: 35.1 - brightMagenta: 35.1 - brightCyan: 55.7 - brightWhite: 102.3 diff --git a/themes/silo.yaml b/themes/silo.yaml index 7316d964..84c5da39 100644 --- a/themes/silo.yaml +++ b/themes/silo.yaml @@ -8,6 +8,7 @@ source: author: "mp76" repo: "https://github.com/marepilc/silo" url: "https://marketplace.visualstudio.com/items?itemName=mp76.silo" + formats: null colors: bg: "#2F2C2B" fg: "#D5CFC9" diff --git a/themes/silot-dark-classic.yaml b/themes/silot-dark-classic.yaml index 3a6eb54b..77625164 100644 --- a/themes/silot-dark-classic.yaml +++ b/themes/silot-dark-classic.yaml @@ -8,6 +8,7 @@ source: author: "Joshim Uddin" repo: "https://github.com/joshimcse/vscode-syloti-theme" url: "https://marketplace.visualstudio.com/items?itemName=Joshimcse.silot-ui-theme" + formats: null colors: bg: "#242424" fg: "#D9D9D9" diff --git a/themes/silvermist.yaml b/themes/silvermist.yaml index f966570d..e6fe136f 100644 --- a/themes/silvermist.yaml +++ b/themes/silvermist.yaml @@ -8,6 +8,7 @@ source: author: "Salman Tahir" repo: "https://github.com/salmanjt/silvermist" url: "https://marketplace.visualstudio.com/items?itemName=salmanjt.silvermist" + formats: null colors: bg: "#1D2834" fg: "#D5DEE1" diff --git a/themes/silverwolf.yaml b/themes/silverwolf.yaml index c18ff0d7..06631acd 100644 --- a/themes/silverwolf.yaml +++ b/themes/silverwolf.yaml @@ -8,6 +8,7 @@ source: author: "PlutonicVoid" repo: "https://github.com/ThanatosSystemOmegaVI/silverwolf-theme" url: "https://marketplace.visualstudio.com/items?itemName=PlutonicVoid.silverwolf" + formats: null colors: bg: "#1B1B1F" fg: "#FFFFFF" diff --git a/themes/simble.yaml b/themes/simble.yaml index 1d9f6b2c..600d8807 100644 --- a/themes/simble.yaml +++ b/themes/simble.yaml @@ -1,4 +1,4 @@ -name: "Simble" +name: "simble" source: marketplace_id: "tylandavis.simble-theme" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "Tylan Davis" repo: "https://github.com/tylandavis/simble-theme" url: "https://marketplace.visualstudio.com/items?itemName=tylandavis.simble-theme" + formats: null colors: bg: "#111111" fg: "#888888" diff --git a/themes/simple-3000.yaml b/themes/simple-3000.yaml index d0f106e3..3f351a26 100644 --- a/themes/simple-3000.yaml +++ b/themes/simple-3000.yaml @@ -1,4 +1,4 @@ -name: "simple-3000" +name: "simple 3000" source: marketplace_id: "simpleshadow.simple-3000" version: "0.0.17" @@ -8,6 +8,7 @@ source: author: "simpleshadow" repo: "https://github.com/simpleshadow/simple-3000" url: "https://marketplace.visualstudio.com/items?itemName=simpleshadow.simple-3000" + formats: null colors: bg: "#0D111A" fg: "#FFFFFF" diff --git a/themes/simple-calm-dark.yaml b/themes/simple-calm-dark.yaml index 2a45dd4e..f9135ec1 100644 --- a/themes/simple-calm-dark.yaml +++ b/themes/simple-calm-dark.yaml @@ -8,6 +8,7 @@ source: author: "Arie Syukron" repo: "https://github.com/syukronarie/simple-calm-dark" url: "https://marketplace.visualstudio.com/items?itemName=syukronarie.simple-calm-dark" + formats: null colors: bg: "#0C0C0C" fg: "#AAAAAA" diff --git a/themes/simple-muted-dark.yaml b/themes/simple-muted-dark.yaml index 07d25784..3f6346f0 100644 --- a/themes/simple-muted-dark.yaml +++ b/themes/simple-muted-dark.yaml @@ -8,6 +8,7 @@ source: author: "Kang8m" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kang8m.simple-muted" + formats: null colors: bg: "#231F20" fg: "#EFE6DD" diff --git a/themes/simple-muted-light.yaml b/themes/simple-muted-light.yaml index 7ae10c65..b16bef31 100644 --- a/themes/simple-muted-light.yaml +++ b/themes/simple-muted-light.yaml @@ -8,6 +8,7 @@ source: author: "Kang8m" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Kang8m.simple-muted" + formats: null colors: bg: "#D9D9D6" fg: "#212721" diff --git a/themes/simple-red-dark.yaml b/themes/simple-red-dark.yaml index 1090b9a2..1ede0e46 100644 --- a/themes/simple-red-dark.yaml +++ b/themes/simple-red-dark.yaml @@ -8,6 +8,7 @@ source: author: "Dionannd" repo: "https://github.com/dionannd/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Dionannd.simpledark-vscode-theme" + formats: null colors: bg: "#11101D" fg: "#EDECEE" diff --git a/themes/simpledark.yaml b/themes/simpledark.yaml deleted file mode 100644 index 47b5cba3..00000000 --- a/themes/simpledark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "SimpleDark" -source: - marketplace_id: "jovejonovski.softdark" - version: "1.0.3" - installs: 1024 - rating: 0 - ratings: 0 - author: "Jove Jonovski" - repo: "https://github.com/datyin/softdark" - url: "https://marketplace.visualstudio.com/items?itemName=jovejonovski.softdark" -colors: - bg: "#161E20" - fg: "#8D9FA3" - black: "#000000" - red: "#D15F5F" - green: "#5EA55E" - yellow: "#BBA466" - blue: "#6DA6E7" - magenta: "#B972B9" - cyan: "#20E2E2" - white: "#EFEFEF" - brightBlack: "#666666" - brightRed: "#DB9696" - brightGreen: "#86CC86" - brightYellow: "#BEAC7A" - brightBlue: "#89BAF1" - brightMagenta: "#E49FE4" - brightCyan: "#7DE0E0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 215 - pair: null - contrast: - fg: 46.9 - black: 0 - red: 35 - green: 43.7 - yellow: 52.4 - blue: 50.6 - magenta: 38.7 - cyan: 74.5 - white: 95.7 - brightBlack: 21.4 - brightRed: 53.5 - brightGreen: 64.5 - brightYellow: 56.3 - brightBlue: 61.3 - brightMagenta: 61.5 - brightCyan: 76.6 - brightWhite: 106.2 diff --git a/themes/sinequanone-acid.yaml b/themes/sinequanone-acid.yaml index e90164ed..ffd34ea3 100644 --- a/themes/sinequanone-acid.yaml +++ b/themes/sinequanone-acid.yaml @@ -6,6 +6,7 @@ source: author: "Emmett Hintz" repo: "https://github.com/Sinequanone-Themes/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" + formats: null colors: bg: "#232136" fg: "#E7D2C5" diff --git a/themes/sinequanone-apple.yaml b/themes/sinequanone-apple.yaml index 1a199348..3b9a9add 100644 --- a/themes/sinequanone-apple.yaml +++ b/themes/sinequanone-apple.yaml @@ -6,6 +6,7 @@ source: author: "Emmett Hintz" repo: "https://github.com/Sinequanone-Themes/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" + formats: null colors: bg: "#FAF4ED" fg: "#575279" diff --git a/themes/sinequanone-brighton.yaml b/themes/sinequanone-brighton.yaml index 4a8df261..b10ba559 100644 --- a/themes/sinequanone-brighton.yaml +++ b/themes/sinequanone-brighton.yaml @@ -6,6 +6,7 @@ source: author: "Emmett Hintz" repo: "https://github.com/Sinequanone-Themes/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" + formats: null colors: bg: "#FAF4ED" fg: "#575279" diff --git a/themes/sinequanone-carbon.yaml b/themes/sinequanone-carbon.yaml index b1505160..c65830df 100644 --- a/themes/sinequanone-carbon.yaml +++ b/themes/sinequanone-carbon.yaml @@ -6,6 +6,7 @@ source: author: "Emmett Hintz" repo: "https://github.com/Sinequanone-Themes/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" + formats: null colors: bg: "#0F1014" fg: "#868690" diff --git a/themes/sinequanone-noir.yaml b/themes/sinequanone-noir.yaml index aadf9214..18e08e0f 100644 --- a/themes/sinequanone-noir.yaml +++ b/themes/sinequanone-noir.yaml @@ -6,6 +6,7 @@ source: author: "Emmett Hintz" repo: "https://github.com/Sinequanone-Themes/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" + formats: null colors: bg: "#0F1014" fg: "#868690" diff --git a/themes/sinequanone-sunset.yaml b/themes/sinequanone-sunset.yaml index d3de7ca0..9cc4ab89 100644 --- a/themes/sinequanone-sunset.yaml +++ b/themes/sinequanone-sunset.yaml @@ -6,6 +6,7 @@ source: author: "Emmett Hintz" repo: "https://github.com/Sinequanone-Themes/vs-code" url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.sinequanone" + formats: null colors: bg: "#232136" fg: "#E7D2C5" diff --git a/themes/sinergyext.yaml b/themes/sinergyext.yaml index 76ca2807..51787ce4 100644 --- a/themes/sinergyext.yaml +++ b/themes/sinergyext.yaml @@ -8,6 +8,7 @@ source: author: "jefersonquiguantar" repo: "https://github.com/jefersonqui/Sinergy" url: "https://marketplace.visualstudio.com/items?itemName=jefersonquiguantar.sinergy" + formats: null colors: bg: "#04293A" fg: "#FBFF00" diff --git a/themes/sirius-astral.yaml b/themes/sirius-astral.yaml deleted file mode 100644 index bae29507..00000000 --- a/themes/sirius-astral.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sirius-Astral" -source: - marketplace_id: "VLMADev.siriusthemes" - version: "1.1.5" - installs: 512 - rating: 5 - ratings: 1 - author: "VLMADev" - repo: "https://github.com/VLMADev/siriusthemes" - url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" -colors: - bg: "#0C0C0C" - fg: "#E8E8E8" - black: "#353535" - red: "#E06C75" - green: "#A4D29A" - yellow: "#F0C270" - blue: "#BB6CC1" - magenta: "#D685D6" - cyan: "#7BD2D2" - white: "#E8E8E8" - brightBlack: "#7A7A7A" - brightRed: "#F07C85" - brightGreen: "#B4E2A4" - brightYellow: "#FFE280" - brightBlue: "#B88BC2" - brightMagenta: "#E292D2" - brightCyan: "#8CE2E2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 92.7 - black: 0 - red: 42.9 - green: 71.8 - yellow: 73.7 - blue: 39.4 - magenta: 51.7 - cyan: 70.7 - white: 92.7 - brightBlack: 31.7 - brightRed: 50.5 - brightGreen: 81.1 - brightYellow: 90 - brightBlue: 47.9 - brightMagenta: 57.5 - brightCyan: 80.1 - brightWhite: 107.7 diff --git a/themes/sirius-glow.yaml b/themes/sirius-glow.yaml deleted file mode 100644 index 25f8c404..00000000 --- a/themes/sirius-glow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sirius-Glow" -source: - marketplace_id: "VLMADev.siriusthemes" - version: "1.1.5" - installs: 512 - rating: 5 - ratings: 1 - author: "VLMADev" - repo: "https://github.com/VLMADev/siriusthemes" - url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" -colors: - bg: "#0D1117" - fg: "#E6EDF3" - black: "#484F58" - red: "#F85149" - green: "#7EE787" - yellow: "#F7CC6B" - blue: "#00D4AA" - magenta: "#D2A8FF" - cyan: "#00D4AA" - white: "#E6EDF3" - brightBlack: "#6E7681" - brightRed: "#F85149" - brightGreen: "#7EE787" - brightYellow: "#F7CC6B" - brightBlue: "#00D4AA" - brightMagenta: "#D2A8FF" - brightCyan: "#00D4AA" - brightWhite: "#F0F6FC" -meta: - mode: "dark" - accent: "orange" - hue: 258 - pair: null - contrast: - fg: 95 - black: 13.1 - red: 41.4 - green: 78.1 - yellow: 78.5 - blue: 66.3 - magenta: 64.6 - cyan: 66.3 - white: 95 - brightBlack: 29.3 - brightRed: 41.4 - brightGreen: 78.1 - brightYellow: 78.5 - brightBlue: 66.3 - brightMagenta: 64.6 - brightCyan: 66.3 - brightWhite: 100.9 diff --git a/themes/sirius-nebula.yaml b/themes/sirius-nebula.yaml deleted file mode 100644 index 11572c09..00000000 --- a/themes/sirius-nebula.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sirius-Nebula" -source: - marketplace_id: "VLMADev.siriusthemes" - version: "1.1.5" - installs: 512 - rating: 5 - ratings: 1 - author: "VLMADev" - repo: "https://github.com/VLMADev/siriusthemes" - url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" -colors: - bg: "#000000" - fg: "#F8F8F8" - black: "#3A3A3A" - red: "#E85A5A" - green: "#85D685" - yellow: "#FFD485" - blue: "#90D690" - magenta: "#D685D6" - cyan: "#85D6D6" - white: "#F8F8F8" - brightBlack: "#7A7A7A" - brightRed: "#E85A5A" - brightGreen: "#85D685" - brightYellow: "#FFD485" - brightBlue: "#90D690" - brightMagenta: "#D685D6" - brightCyan: "#85D6D6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 103.3 - black: 0 - red: 40.2 - green: 70.7 - yellow: 84.2 - blue: 71.9 - magenta: 52 - cyan: 73.6 - white: 103.3 - brightBlack: 31.9 - brightRed: 40.2 - brightGreen: 70.7 - brightYellow: 84.2 - brightBlue: 71.9 - brightMagenta: 52 - brightCyan: 73.6 - brightWhite: 107.9 diff --git a/themes/sirius-pulsar.yaml b/themes/sirius-pulsar.yaml deleted file mode 100644 index b786b244..00000000 --- a/themes/sirius-pulsar.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sirius-Pulsar" -source: - marketplace_id: "VLMADev.siriusthemes" - version: "1.1.5" - installs: 512 - rating: 5 - ratings: 1 - author: "VLMADev" - repo: "https://github.com/VLMADev/siriusthemes" - url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" -colors: - bg: "#272822" - fg: "#F8F8F2" - black: "#3B3A32" - red: "#F92672" - green: "#A6E22E" - yellow: "#E6DB74" - blue: "#A87AB2" - magenta: "#FD5FF1" - cyan: "#A6E22E" - white: "#F8F8F2" - brightBlack: "#75715E" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E6DB74" - brightBlue: "#A87AB2" - brightMagenta: "#FD5FF1" - brightCyan: "#A6E22E" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "pink" - hue: 115 - pair: null - contrast: - fg: 99.6 - black: 0 - red: 35 - green: 74.7 - yellow: 79.7 - blue: 36.4 - magenta: 48.8 - cyan: 74.7 - white: 99.6 - brightBlack: 24.3 - brightRed: 35 - brightGreen: 74.7 - brightYellow: 79.7 - brightBlue: 36.4 - brightMagenta: 48.8 - brightCyan: 74.7 - brightWhite: 99.6 diff --git a/themes/sirius-vesper.yaml b/themes/sirius-vesper.yaml deleted file mode 100644 index f7a26071..00000000 --- a/themes/sirius-vesper.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sirius-Vesper" -source: - marketplace_id: "VLMADev.siriusthemes" - version: "1.1.5" - installs: 512 - rating: 5 - ratings: 1 - author: "VLMADev" - repo: "https://github.com/VLMADev/siriusthemes" - url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" -colors: - bg: "#1F2428" - fg: "#E6E1CF" - black: "#363B46" - red: "#F26D5B" - green: "#C2D94C" - yellow: "#F29668" - blue: "#D4BFFF" - magenta: "#FF8F40" - cyan: "#A6CC70" - white: "#E6E1CF" - brightBlack: "#5C6773" - brightRed: "#F26D5B" - brightGreen: "#C2D94C" - brightYellow: "#F29668" - brightBlue: "#D4BFFF" - brightMagenta: "#FF8F40" - brightCyan: "#A6CC70" - brightWhite: "#E6E1CF" -meta: - mode: "dark" - accent: "orange" - hue: 242 - pair: null - contrast: - fg: 85.8 - black: 0 - red: 43.8 - green: 74.3 - yellow: 55.4 - blue: 71.4 - magenta: 55.2 - cyan: 65.8 - white: 85.8 - brightBlack: 20.3 - brightRed: 43.8 - brightGreen: 74.3 - brightYellow: 55.4 - brightBlue: 71.4 - brightMagenta: 55.2 - brightCyan: 65.8 - brightWhite: 85.8 diff --git a/themes/sirius-vibe.yaml b/themes/sirius-vibe.yaml deleted file mode 100644 index e81c7784..00000000 --- a/themes/sirius-vibe.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sirius-Vibe" -source: - marketplace_id: "VLMADev.siriusthemes" - version: "1.1.5" - installs: 512 - rating: 5 - ratings: 1 - author: "VLMADev" - repo: "https://github.com/VLMADev/siriusthemes" - url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" -colors: - bg: "#1E1E1E" - fg: "#E8E8E8" - black: "#1E1E1E" - red: "#F44336" - green: "#4CAF50" - yellow: "#FFEB3B" - blue: "#81C784" - magenta: "#E91E63" - cyan: "#4DB6AC" - white: "#E8E8E8" - brightBlack: "#757575" - brightRed: "#FFCDD2" - brightGreen: "#C8E6C9" - brightYellow: "#FFF9C4" - brightBlue: "#A5D6A7" - brightMagenta: "#F8BBD9" - brightCyan: "#B2DFDB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 91.1 - black: 0 - red: 36.9 - green: 46.7 - yellow: 91.5 - blue: 61.6 - magenta: 31.8 - cyan: 52.4 - white: 91.1 - brightBlack: 27.8 - brightRed: 81.9 - brightGreen: 84.9 - brightYellow: 100.8 - brightBlue: 72.5 - brightMagenta: 74 - brightCyan: 80 - brightWhite: 106 diff --git a/themes/sirius-vortex.yaml b/themes/sirius-vortex.yaml deleted file mode 100644 index 430e9840..00000000 --- a/themes/sirius-vortex.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sirius-Vortex" -source: - marketplace_id: "VLMADev.siriusthemes" - version: "1.1.5" - installs: 512 - rating: 5 - ratings: 1 - author: "VLMADev" - repo: "https://github.com/VLMADev/siriusthemes" - url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" -colors: - bg: "#1A1611" - fg: "#F4F4F4" - black: "#5A4D3E" - red: "#FF6B6B" - green: "#98D982" - yellow: "#FFD700" - blue: "#FF9500" - magenta: "#FF6B6B" - cyan: "#FF9500" - white: "#F4F4F4" - brightBlack: "#8B7355" - brightRed: "#FF6B6B" - brightGreen: "#98D982" - brightYellow: "#FFD700" - brightBlue: "#FF9500" - brightMagenta: "#FF6B6B" - brightCyan: "#FF9500" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 73 - pair: null - contrast: - fg: 99.7 - black: 12.9 - red: 48.1 - green: 72.6 - yellow: 83.3 - blue: 58.5 - magenta: 48.1 - cyan: 58.5 - white: 99.7 - brightBlack: 29.6 - brightRed: 48.1 - brightGreen: 72.6 - brightYellow: 83.3 - brightBlue: 58.5 - brightMagenta: 48.1 - brightCyan: 58.5 - brightWhite: 106.9 diff --git a/themes/sirius-zenith.yaml b/themes/sirius-zenith.yaml deleted file mode 100644 index f3653076..00000000 --- a/themes/sirius-zenith.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sirius-Zenith" -source: - marketplace_id: "VLMADev.siriusthemes" - version: "1.1.5" - installs: 512 - rating: 5 - ratings: 1 - author: "VLMADev" - repo: "https://github.com/VLMADev/siriusthemes" - url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" -colors: - bg: "#1A1A1A" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#FFD93D" - blue: "#D2691E" - magenta: "#BC3FBC" - cyan: "#B8860B" - white: "#F2F2F2" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#CD853F" - brightMagenta: "#D670D6" - brightCyan: "#DAA520" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 79.2 - black: 0 - red: 26.4 - green: 52.7 - yellow: 84 - blue: 37 - magenta: 29.4 - cyan: 40.8 - white: 98 - brightBlack: 21.7 - brightRed: 38.2 - brightGreen: 63.2 - brightYellow: 95.3 - brightBlue: 44.1 - brightMagenta: 45 - brightCyan: 56.9 - brightWhite: 106.5 diff --git a/themes/sissi-ga.yaml b/themes/sissi-ga.yaml index 0e2a5563..1bc196b3 100644 --- a/themes/sissi-ga.yaml +++ b/themes/sissi-ga.yaml @@ -8,6 +8,7 @@ source: author: "Novias" repo: "https://github.com/NOVIAS/Sissi-ga" url: "https://marketplace.visualstudio.com/items?itemName=Novias.sissi-ga" + formats: null colors: bg: "#2A2A2A" fg: "#FFFFFF" diff --git a/themes/sith.yaml b/themes/sith.yaml index 1e6c57c0..f085e30f 100644 --- a/themes/sith.yaml +++ b/themes/sith.yaml @@ -8,6 +8,7 @@ source: author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.sith" + formats: null colors: bg: "#16151B" fg: "#F0F0F0" diff --git a/themes/sizo-purple.yaml b/themes/sizo-purple.yaml index 9fc84461..39a7ce3a 100644 --- a/themes/sizo-purple.yaml +++ b/themes/sizo-purple.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Sizo.sizo-purple" version: "1.0.3" installs: 48 + rating: 0 + ratings: 0 author: "Sizo" repo: "https://github.com/sizoroot/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Sizo.sizo-purple" + formats: null colors: bg: "#151517" fg: "#CBCBCB" diff --git a/themes/sj-pinkish-theme.yaml b/themes/sj-pinkish-theme.yaml index 510d381c..f84f524c 100644 --- a/themes/sj-pinkish-theme.yaml +++ b/themes/sj-pinkish-theme.yaml @@ -8,6 +8,7 @@ source: author: "SAKSHAM JOSHI" repo: "https://github.com/saksham-joshi/SJ-Theme-VsCode" url: "https://marketplace.visualstudio.com/items?itemName=SAKSHAMJOSHI.sj-azure-theme" + formats: null colors: bg: "#0D0A1E" fg: "#FDFEFF" diff --git a/themes/sj-theme.yaml b/themes/sj-theme.yaml index 30030948..00b3cda3 100644 --- a/themes/sj-theme.yaml +++ b/themes/sj-theme.yaml @@ -8,6 +8,7 @@ source: author: "SAKSHAM JOSHI" repo: "https://github.com/saksham-joshi/SJ-Theme-VsCode" url: "https://marketplace.visualstudio.com/items?itemName=SAKSHAMJOSHI.sj-azure-theme" + formats: null colors: bg: "#0D1F2D" fg: "#C8E6F4" diff --git a/themes/sk5s-vsgt.yaml b/themes/sk5s-vsgt.yaml deleted file mode 100644 index c49c4c5f..00000000 --- a/themes/sk5s-vsgt.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "sk5s-vsgt" -source: - marketplace_id: "sk5s.sk5s-vs-green-theme" - version: "1.5.0" - installs: 1590 - rating: 4 - ratings: 1 - author: "sk5s" - repo: "https://github.com/sk5s/sk5s-vsgt" - url: "https://marketplace.visualstudio.com/items?itemName=sk5s.sk5s-vs-green-theme" -colors: - bg: "#1E1E1E" - fg: "#EFFAF5" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 101 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/skeletortheme.yaml b/themes/skeletortheme.yaml index 6468ed88..d5fde340 100644 --- a/themes/skeletortheme.yaml +++ b/themes/skeletortheme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "mhommet.skeletortheme" version: "1.0.3" installs: 34 + rating: 0 + ratings: 0 author: "mhommet" repo: "https://github.com/mhommet/skeletortheme" url: "https://marketplace.visualstudio.com/items?itemName=mhommet.skeletortheme" + formats: null colors: bg: "#21222C" fg: "#FFFFFF" diff --git a/themes/skeswa-s-noctis-azureus.yaml b/themes/skeswa-s-noctis-azureus.yaml deleted file mode 100644 index 8536d1e9..00000000 --- a/themes/skeswa-s-noctis-azureus.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "@skeswa's Noctis Azureus" -source: - marketplace_id: "skeswa.skeswa-noctis" - version: "10.45.1" - installs: 4673 - rating: 0 - ratings: 0 - author: "Sandile Keswa" - repo: "https://github.com/skeswa/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" -colors: - bg: "#07273B" - fg: "#BECFDA" - black: "#28353E" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#AEC3D0" - brightBlack: "#475E6C" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#BECFDA" -meta: - mode: "dark" - accent: "orange" - hue: 241 - pair: null - contrast: - fg: 72.9 - black: 0 - red: 38.5 - green: 75 - yellow: 65 - blue: 50 - magenta: 43.6 - cyan: 68.5 - white: 65.5 - brightBlack: 15.5 - brightRed: 43.8 - brightGreen: 77.2 - brightYellow: 51.8 - brightBlue: 55.3 - brightMagenta: 56 - brightCyan: 71.9 - brightWhite: 72.9 diff --git a/themes/skeswa-s-noctis-bordo.yaml b/themes/skeswa-s-noctis-bordo.yaml deleted file mode 100644 index 80d3e21b..00000000 --- a/themes/skeswa-s-noctis-bordo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "@skeswa's Noctis Bordo" -source: - marketplace_id: "skeswa.skeswa-noctis" - version: "10.45.1" - installs: 4673 - rating: 0 - ratings: 0 - author: "Sandile Keswa" - repo: "https://github.com/skeswa/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" -colors: - bg: "#322A2D" - fg: "#CBBEC2" - black: "#47393E" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#B9ACB0" - brightBlack: "#69545B" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#CBBEC2" -meta: - mode: "dark" - accent: "orange" - hue: 353 - pair: null - contrast: - fg: 65 - black: 0 - red: 37.3 - green: 73.7 - yellow: 63.7 - blue: 48.7 - magenta: 42.4 - cyan: 67.3 - white: 54.8 - brightBlack: 13.6 - brightRed: 42.5 - brightGreen: 75.9 - brightYellow: 50.6 - brightBlue: 54 - brightMagenta: 54.7 - brightCyan: 70.6 - brightWhite: 65 diff --git a/themes/skeswa-s-noctis-hibernus.yaml b/themes/skeswa-s-noctis-hibernus.yaml deleted file mode 100644 index 6f3a1a17..00000000 --- a/themes/skeswa-s-noctis-hibernus.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "@skeswa's Noctis Hibernus" -source: - marketplace_id: "skeswa.skeswa-noctis" - version: "10.45.1" - installs: 4673 - rating: 0 - ratings: 0 - author: "Sandile Keswa" - repo: "https://github.com/skeswa/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" -colors: - bg: "#F4F6F6" - fg: "#005661" - black: "#003B42" - red: "#E34E1C" - green: "#00B368" - yellow: "#F49725" - blue: "#0094F0" - magenta: "#FF5792" - cyan: "#00BDD6" - white: "#8CA6A6" - brightBlack: "#004D57" - brightRed: "#FF4000" - brightGreen: "#00D17A" - brightYellow: "#FF8C00" - brightBlue: "#0FA3FF" - brightMagenta: "#FF6B9F" - brightCyan: "#00CBE6" - brightWhite: "#BBC3C4" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82.8 - black: 92 - red: 59.7 - green: 46.7 - yellow: 38.5 - blue: 53.2 - magenta: 49.9 - cyan: 38.5 - white: 44.9 - brightBlack: 86 - brightRed: 55.3 - brightGreen: 32.8 - brightYellow: 39.8 - brightBlue: 46.5 - brightMagenta: 45.6 - brightCyan: 31.5 - brightWhite: 27.6 diff --git a/themes/skeswa-s-noctis-lilac.yaml b/themes/skeswa-s-noctis-lilac.yaml deleted file mode 100644 index d082e448..00000000 --- a/themes/skeswa-s-noctis-lilac.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "@skeswa's Noctis Lilac" -source: - marketplace_id: "skeswa.skeswa-noctis" - version: "10.45.1" - installs: 4673 - rating: 0 - ratings: 0 - author: "Sandile Keswa" - repo: "https://github.com/skeswa/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" -colors: - bg: "#F2F1F8" - fg: "#0C006B" - black: "#0C006B" - red: "#E34E1C" - green: "#00B368" - yellow: "#F49725" - blue: "#0094F0" - magenta: "#FF5792" - cyan: "#00BDD6" - white: "#8CA6A6" - brightBlack: "#0F0080" - brightRed: "#FF4000" - brightGreen: "#00D17A" - brightYellow: "#FF8C00" - brightBlue: "#0FA3FF" - brightMagenta: "#FF6B9F" - brightCyan: "#00CBE6" - brightWhite: "#BBC3C4" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.6 - black: 94.6 - red: 57.5 - green: 44.5 - yellow: 36.2 - blue: 50.9 - magenta: 47.6 - cyan: 36.2 - white: 42.6 - brightBlack: 92.9 - brightRed: 53 - brightGreen: 30.5 - brightYellow: 37.5 - brightBlue: 44.2 - brightMagenta: 43.3 - brightCyan: 29.3 - brightWhite: 25.3 diff --git a/themes/skeswa-s-noctis-lux.yaml b/themes/skeswa-s-noctis-lux.yaml deleted file mode 100644 index 03b53a1e..00000000 --- a/themes/skeswa-s-noctis-lux.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "@skeswa's Noctis Lux" -source: - marketplace_id: "skeswa.skeswa-noctis" - version: "10.45.1" - installs: 4673 - rating: 0 - ratings: 0 - author: "Sandile Keswa" - repo: "https://github.com/skeswa/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" -colors: - bg: "#FEF8EC" - fg: "#005661" - black: "#003B42" - red: "#E34E1C" - green: "#00B368" - yellow: "#F49725" - blue: "#0094F0" - magenta: "#FF5792" - cyan: "#00BDD6" - white: "#8CA6A6" - brightBlack: "#004D57" - brightRed: "#FF4000" - brightGreen: "#00D17A" - brightYellow: "#FF8C00" - brightBlue: "#0FA3FF" - brightMagenta: "#FF6B9F" - brightCyan: "#00CBE6" - brightWhite: "#BBC3C4" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 84.5 - black: 93.7 - red: 61.5 - green: 48.5 - yellow: 40.2 - blue: 54.9 - magenta: 51.6 - cyan: 40.2 - white: 46.6 - brightBlack: 87.7 - brightRed: 57 - brightGreen: 34.5 - brightYellow: 41.5 - brightBlue: 48.2 - brightMagenta: 47.3 - brightCyan: 33.3 - brightWhite: 29.3 diff --git a/themes/skeswa-s-noctis-minimus.yaml b/themes/skeswa-s-noctis-minimus.yaml deleted file mode 100644 index 8ab13438..00000000 --- a/themes/skeswa-s-noctis-minimus.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "@skeswa's Noctis Minimus" -source: - marketplace_id: "skeswa.skeswa-noctis" - version: "10.45.1" - installs: 4673 - rating: 0 - ratings: 0 - author: "Sandile Keswa" - repo: "https://github.com/skeswa/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" -colors: - bg: "#1B2932" - fg: "#C5CDD3" - black: "#182A35" - red: "#C08872" - green: "#72C09F" - yellow: "#C8A984" - blue: "#6196B8" - magenta: "#C28097" - cyan: "#72B7C0" - white: "#C5CDD3" - brightBlack: "#425866" - brightRed: "#CA8468" - brightGreen: "#84C8AB" - brightYellow: "#D1AA7B" - brightBlue: "#68A4CA" - brightMagenta: "#C88DA2" - brightCyan: "#84C0C8" - brightWhite: "#C5D1D3" -meta: - mode: "dark" - accent: "orange" - hue: 237 - pair: null - contrast: - fg: 72.2 - black: 0 - red: 41.9 - green: 56.7 - yellow: 55.1 - blue: 39.3 - magenta: 40.9 - cyan: 54.1 - white: 72.2 - brightBlack: 12.8 - brightRed: 42 - brightGreen: 62 - brightYellow: 56.6 - brightBlue: 46.1 - brightMagenta: 46.3 - brightCyan: 59.6 - brightWhite: 73.9 diff --git a/themes/skeswa-s-noctis-obscuro.yaml b/themes/skeswa-s-noctis-obscuro.yaml deleted file mode 100644 index 33360b95..00000000 --- a/themes/skeswa-s-noctis-obscuro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "@skeswa's Noctis Obscuro" -source: - marketplace_id: "skeswa.skeswa-noctis" - version: "10.45.1" - installs: 4673 - rating: 0 - ratings: 0 - author: "Sandile Keswa" - repo: "https://github.com/skeswa/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" -colors: - bg: "#031417" - fg: "#B2CACD" - black: "#324A4D" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#B2CACD" - brightBlack: "#47686C" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#C1D4D7" -meta: - mode: "dark" - accent: "orange" - hue: 209 - pair: null - contrast: - fg: 71.2 - black: 10 - red: 40.9 - green: 77.4 - yellow: 67.4 - blue: 52.4 - magenta: 46 - cyan: 70.9 - white: 71.2 - brightBlack: 21 - brightRed: 46.2 - brightGreen: 79.6 - brightYellow: 54.3 - brightBlue: 57.7 - brightMagenta: 58.4 - brightCyan: 74.3 - brightWhite: 77.7 diff --git a/themes/skeswa-s-noctis-sereno.yaml b/themes/skeswa-s-noctis-sereno.yaml deleted file mode 100644 index 8d1d7d4e..00000000 --- a/themes/skeswa-s-noctis-sereno.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "@skeswa's Noctis Sereno" -source: - marketplace_id: "skeswa.skeswa-noctis" - version: "10.45.1" - installs: 4673 - rating: 0 - ratings: 0 - author: "Sandile Keswa" - repo: "https://github.com/skeswa/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" -colors: - bg: "#062E32" - fg: "#B2CACD" - black: "#324A4D" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#B2CACD" - brightBlack: "#47686C" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#C1D4D7" -meta: - mode: "dark" - accent: "orange" - hue: 205 - pair: null - contrast: - fg: 68 - black: 0 - red: 37.7 - green: 74.1 - yellow: 64.1 - blue: 49.2 - magenta: 42.8 - cyan: 67.7 - white: 68 - brightBlack: 17.8 - brightRed: 42.9 - brightGreen: 76.3 - brightYellow: 51 - brightBlue: 54.4 - brightMagenta: 55.2 - brightCyan: 71 - brightWhite: 74.5 diff --git a/themes/skeswa-s-noctis-uva.yaml b/themes/skeswa-s-noctis-uva.yaml deleted file mode 100644 index c4b83cbe..00000000 --- a/themes/skeswa-s-noctis-uva.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "@skeswa's Noctis Uva" -source: - marketplace_id: "skeswa.skeswa-noctis" - version: "10.45.1" - installs: 4673 - rating: 0 - ratings: 0 - author: "Sandile Keswa" - repo: "https://github.com/skeswa/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" -colors: - bg: "#292640" - fg: "#C5C2D6" - black: "#302F3D" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#B6B3CC" - brightBlack: "#504E65" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#C5C2D6" -meta: - mode: "dark" - accent: "orange" - hue: 288 - pair: null - contrast: - fg: 67.3 - black: 0 - red: 37.8 - green: 74.3 - yellow: 64.3 - blue: 49.3 - magenta: 42.9 - cyan: 67.8 - white: 59 - brightBlack: 10.6 - brightRed: 43.1 - brightGreen: 76.5 - brightYellow: 51.2 - brightBlue: 54.6 - brightMagenta: 55.3 - brightCyan: 71.2 - brightWhite: 67.3 diff --git a/themes/skeswa-s-noctis-viola.yaml b/themes/skeswa-s-noctis-viola.yaml deleted file mode 100644 index f98d0a09..00000000 --- a/themes/skeswa-s-noctis-viola.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "@skeswa's Noctis Viola" -source: - marketplace_id: "skeswa.skeswa-noctis" - version: "10.45.1" - installs: 4673 - rating: 0 - ratings: 0 - author: "Sandile Keswa" - repo: "https://github.com/skeswa/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" -colors: - bg: "#30243D" - fg: "#CCBFD9" - black: "#362F3D" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#BFAFCF" - brightBlack: "#594E65" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#CCBFD9" -meta: - mode: "dark" - accent: "orange" - hue: 306 - pair: null - contrast: - fg: 67.2 - black: 0 - red: 37.8 - green: 74.3 - yellow: 64.3 - blue: 49.3 - magenta: 42.9 - cyan: 67.8 - white: 58.7 - brightBlack: 11.4 - brightRed: 43.1 - brightGreen: 76.5 - brightYellow: 51.1 - brightBlue: 54.6 - brightMagenta: 55.3 - brightCyan: 71.2 - brightWhite: 67.2 diff --git a/themes/skeswa-s-noctis.yaml b/themes/skeswa-s-noctis.yaml deleted file mode 100644 index 7512ff73..00000000 --- a/themes/skeswa-s-noctis.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "@skeswa's Noctis" -source: - marketplace_id: "skeswa.skeswa-noctis" - version: "10.45.1" - installs: 4673 - rating: 0 - ratings: 0 - author: "Sandile Keswa" - repo: "https://github.com/skeswa/noctis" - url: "https://marketplace.visualstudio.com/items?itemName=skeswa.skeswa-noctis" -colors: - bg: "#052529" - fg: "#B2CACD" - black: "#324A4D" - red: "#E66533" - green: "#49E9A6" - yellow: "#E4B781" - blue: "#49ACE9" - magenta: "#DF769B" - cyan: "#49D6E9" - white: "#B2CACD" - brightBlack: "#47686C" - brightRed: "#E97749" - brightGreen: "#60EBB1" - brightYellow: "#E69533" - brightBlue: "#60B6EB" - brightMagenta: "#E798B3" - brightCyan: "#60DBEB" - brightWhite: "#C1D4D7" -meta: - mode: "dark" - accent: "orange" - hue: 207 - pair: null - contrast: - fg: 69.4 - black: 8.2 - red: 39.1 - green: 75.6 - yellow: 65.6 - blue: 50.6 - magenta: 44.2 - cyan: 69.1 - white: 69.4 - brightBlack: 19.2 - brightRed: 44.4 - brightGreen: 77.8 - brightYellow: 52.5 - brightBlue: 55.9 - brightMagenta: 56.6 - brightCyan: 72.5 - brightWhite: 75.9 diff --git a/themes/sky-at-night.yaml b/themes/sky-at-night.yaml index 2ee3209f..ebcac5ac 100644 --- a/themes/sky-at-night.yaml +++ b/themes/sky-at-night.yaml @@ -8,6 +8,7 @@ source: author: "Ayush Chugh" repo: "https://github.com/Ayush-Chugh-2006/Sky-At-Night-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AyushChugh.sky-at-night" + formats: null colors: bg: "#0C121A" fg: "#CCCCCC" diff --git a/themes/sky-blue-tranquility-focus.yaml b/themes/sky-blue-tranquility-focus.yaml index 0e846d3e..afdd2c20 100644 --- a/themes/sky-blue-tranquility-focus.yaml +++ b/themes/sky-blue-tranquility-focus.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#0A1628" fg: "#E0F7FA" diff --git a/themes/sky-miami-vice.yaml b/themes/sky-miami-vice.yaml index 8048a94a..12dd9ef7 100644 --- a/themes/sky-miami-vice.yaml +++ b/themes/sky-miami-vice.yaml @@ -8,6 +8,7 @@ source: author: "sky-designs" repo: "https://gitlab.com/mskyberg/sky-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=sky-designs.sky-themes" + formats: null colors: bg: "#000E31" fg: "#F70A5A" diff --git a/themes/sky-neon.yaml b/themes/sky-neon.yaml index 211ed878..23b60f91 100644 --- a/themes/sky-neon.yaml +++ b/themes/sky-neon.yaml @@ -8,6 +8,7 @@ source: author: "sky-designs" repo: "https://gitlab.com/mskyberg/sky-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=sky-designs.sky-themes" + formats: null colors: bg: "#180049" fg: "#F70A5A" diff --git a/themes/sky-real-abyss.yaml b/themes/sky-real-abyss.yaml index fc9a205c..6ad4e7f9 100644 --- a/themes/sky-real-abyss.yaml +++ b/themes/sky-real-abyss.yaml @@ -8,6 +8,7 @@ source: author: "sky-designs" repo: "https://gitlab.com/mskyberg/sky-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=sky-designs.sky-themes" + formats: null colors: bg: "#000C18" fg: "#6688CC" diff --git a/themes/skye-wind-light.yaml b/themes/skye-wind-light.yaml index 7283e5f5..25b54250 100644 --- a/themes/skye-wind-light.yaml +++ b/themes/skye-wind-light.yaml @@ -8,6 +8,7 @@ source: author: "wilmarj" repo: "https://github.com/wilmarjongkind/skye-wind" url: "https://marketplace.visualstudio.com/items?itemName=wilmarj.skye-wind" + formats: null colors: bg: "#1B293B" fg: "#B8C1CC" diff --git a/themes/skye-wind.yaml b/themes/skye-wind.yaml index 2d53698a..cffdc000 100644 --- a/themes/skye-wind.yaml +++ b/themes/skye-wind.yaml @@ -8,6 +8,7 @@ source: author: "wilmarj" repo: "https://github.com/wilmarjongkind/skye-wind" url: "https://marketplace.visualstudio.com/items?itemName=wilmarj.skye-wind" + formats: null colors: bg: "#0F1723" fg: "#B8C1CC" diff --git a/themes/skyline.yaml b/themes/skyline.yaml index ce2d3e49..e1e94a48 100644 --- a/themes/skyline.yaml +++ b/themes/skyline.yaml @@ -8,6 +8,9 @@ source: author: "Hydralite" repo: "https://github.com/hydralite/skyline" url: "https://marketplace.visualstudio.com/items?itemName=hydralite.hydralite-skyline" + formats: + android-studio: "https://raw.githubusercontent.com/hydralite/skyline/master/intellij/skyline.icls" + sublime: "https://raw.githubusercontent.com/hydralite/skyline/master/themes/skyline.tmTheme" colors: bg: "#1C1E26" fg: "#FFFFFF" diff --git a/themes/slack-theme-aubergine-dark.yaml b/themes/slack-theme-aubergine-dark.yaml deleted file mode 100644 index 9fd807ba..00000000 --- a/themes/slack-theme-aubergine-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Slack Theme Aubergine Dark" -source: - marketplace_id: "felipe-mendes.slack-theme" - version: "1.9.17" - installs: 514505 - rating: 4.64 - ratings: 22 - author: "Felipe Mendes" - repo: "https://github.com/felipemendes/slack-theme" - url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" -colors: - bg: "#3E313C" - fg: "#F6F6F4" - black: "#000000" - red: "#E53935" - green: "#91B859" - yellow: "#FFB62C" - blue: "#6182B8" - magenta: "#7C4DFF" - cyan: "#39ADB5" - white: "#FFFFFF" - brightBlack: "#90A4AE" - brightRed: "#E53935" - brightGreen: "#91B859" - brightYellow: "#FFB62C" - brightBlue: "#6182B8" - brightMagenta: "#7C4DFF" - brightCyan: "#39ADB5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 331 - pair: null - contrast: - fg: 95.4 - black: 0 - red: 27.6 - green: 50.8 - yellow: 64.6 - blue: 29 - magenta: 22.7 - cyan: 43.7 - white: 101.5 - brightBlack: 44.9 - brightRed: 27.6 - brightGreen: 50.8 - brightYellow: 64.6 - brightBlue: 29 - brightMagenta: 22.7 - brightCyan: 43.7 - brightWhite: 101.5 diff --git a/themes/slack-theme-aubergine-new.yaml b/themes/slack-theme-aubergine-new.yaml deleted file mode 100644 index 24477d61..00000000 --- a/themes/slack-theme-aubergine-new.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Slack Theme Aubergine New" -source: - marketplace_id: "felipe-mendes.slack-theme" - version: "1.9.17" - installs: 514505 - rating: 4.64 - ratings: 22 - author: "Felipe Mendes" - repo: "https://github.com/felipemendes/slack-theme" - url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" -colors: - bg: "#FFFFFF" - fg: "#383A42" - black: "#000000" - red: "#E53935" - green: "#91B859" - yellow: "#ECB22E" - blue: "#6182B8" - magenta: "#7C4DFF" - cyan: "#39ADB5" - white: "#FFFFFF" - brightBlack: "#90A4AE" - brightRed: "#E53935" - brightGreen: "#91B859" - brightYellow: "#ECB22E" - brightBlue: "#6182B8" - brightMagenta: "#7C4DFF" - brightCyan: "#39ADB5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 96.2 - black: 106 - red: 67.7 - green: 44.9 - yellow: 36.3 - blue: 66.3 - magenta: 72.6 - cyan: 51.8 - white: 0 - brightBlack: 50.6 - brightRed: 67.7 - brightGreen: 44.9 - brightYellow: 36.3 - brightBlue: 66.3 - brightMagenta: 72.6 - brightCyan: 51.8 - brightWhite: 0 diff --git a/themes/slack-theme-dark.yaml b/themes/slack-theme-dark.yaml deleted file mode 100644 index 880c717d..00000000 --- a/themes/slack-theme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Slack Theme Dark" -source: - marketplace_id: "tanmay.slack-theme" - version: "1.0.0" - installs: 5530 - rating: 3 - ratings: 2 - author: "tanmay" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=tanmay.slack-theme" -colors: - bg: "#14101A" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#EDB625" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#FDBFFF" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#6B266D" - brightWhite: "#A5A5A5" -meta: - mode: "dark" - accent: "pink" - hue: 303 - pair: null - contrast: - fg: 107.3 - black: 0 - red: 27.2 - green: 52.2 - yellow: 67.3 - blue: 15.4 - magenta: 26.6 - cyan: 79.6 - white: 15.5 - brightBlack: 22.5 - brightRed: 27.2 - brightGreen: 60.8 - brightYellow: 60.8 - brightBlue: 15.4 - brightMagenta: 26.6 - brightCyan: 9.6 - brightWhite: 53 diff --git a/themes/slack-theme-hoth.yaml b/themes/slack-theme-hoth.yaml deleted file mode 100644 index 7af4ecf3..00000000 --- a/themes/slack-theme-hoth.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Slack Theme Hoth" -source: - marketplace_id: "felipe-mendes.slack-theme" - version: "1.9.17" - installs: 514505 - rating: 4.64 - ratings: 22 - author: "Felipe Mendes" - repo: "https://github.com/felipemendes/slack-theme" - url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#E53935" - green: "#91B859" - yellow: "#FFB62C" - blue: "#6182B8" - magenta: "#7C4DFF" - cyan: "#39ADB5" - white: "#FFFFFF" - brightBlack: "#90A4AE" - brightRed: "#E53935" - brightGreen: "#91B859" - brightYellow: "#FFB62C" - brightBlue: "#6182B8" - brightMagenta: "#7C4DFF" - brightCyan: "#39ADB5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 106 - black: 106 - red: 67.7 - green: 44.9 - yellow: 31.7 - blue: 66.3 - magenta: 72.6 - cyan: 51.8 - white: 0 - brightBlack: 50.6 - brightRed: 67.7 - brightGreen: 44.9 - brightYellow: 31.7 - brightBlue: 66.3 - brightMagenta: 72.6 - brightCyan: 51.8 - brightWhite: 0 diff --git a/themes/slack-theme.yaml b/themes/slack-theme.yaml deleted file mode 100644 index a5b31b9a..00000000 --- a/themes/slack-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "slack-theme" -source: - marketplace_id: "tanmay.slack-theme" - version: "1.0.0" - installs: 5530 - rating: 3 - ratings: 2 - author: "tanmay" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=tanmay.slack-theme" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#EDB625" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#6B266D" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#6B266D" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106 - black: 106 - red: 74 - green: 49.2 - yellow: 34.7 - blue: 86.1 - magenta: 74.6 - cyan: 92.3 - white: 85.9 - brightBlack: 78.8 - brightRed: 74 - brightGreen: 40.9 - brightYellow: 40.9 - brightBlue: 86.1 - brightMagenta: 74.6 - brightCyan: 92.3 - brightWhite: 48.5 diff --git a/themes/slate-black.yaml b/themes/slate-black.yaml index 96d91aaf..d39ac8d1 100644 --- a/themes/slate-black.yaml +++ b/themes/slate-black.yaml @@ -6,6 +6,7 @@ source: author: "Postnumbers" repo: "https://github.com/postnumbers/slate-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.slate-themes" + formats: null colors: bg: "#000000" fg: "#CDD0D8" diff --git a/themes/slate-blackish.yaml b/themes/slate-blackish.yaml index a1c454f9..609e8402 100644 --- a/themes/slate-blackish.yaml +++ b/themes/slate-blackish.yaml @@ -6,6 +6,7 @@ source: author: "Postnumbers" repo: "https://github.com/postnumbers/slate-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.slate-themes" + formats: null colors: bg: "#16191D" fg: "#CDD0D8" diff --git a/themes/slate-blue.yaml b/themes/slate-blue.yaml deleted file mode 100644 index dde4c4d8..00000000 --- a/themes/slate-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Slate Blue" -source: - marketplace_id: "MasterSJit.slateblues" - version: "1.0.1" - installs: 16 - rating: 0 - ratings: 0 - author: "Master S Jit" - repo: "https://github.com/MasterSJit/slate-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MasterSJit.slateblues" -colors: - bg: "#232830" - fg: "#DCDFE4" - black: "#1E2229" - red: "#E06C75" - green: "#98C379" - yellow: "#D19A66" - blue: "#61AFEF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#ABB2BF" - brightBlack: "#5C6370" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#61AFEF" - brightMagenta: "#C678DD" - brightCyan: "#56B6C2" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 260 - pair: null - contrast: - fg: 83.7 - black: 0 - red: 39.7 - green: 59.9 - yellow: 50.3 - blue: 52.3 - magenta: 42.8 - cyan: 52.2 - white: 57 - brightBlack: 18.2 - brightRed: 39.7 - brightGreen: 59.9 - brightYellow: 68.2 - brightBlue: 52.3 - brightMagenta: 42.8 - brightCyan: 52.2 - brightWhite: 104.5 diff --git a/themes/slate-contrast.yaml b/themes/slate-contrast.yaml deleted file mode 100644 index 917ea17c..00000000 --- a/themes/slate-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "slate-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#19191F" - fg: "#EBEBF4" - black: "#24242D" - red: "#BA0E2E" - green: "#566981" - yellow: "#89A7B1" - blue: "#CBDAD5" - magenta: "#566981" - cyan: "#89A7B1" - white: "#FBFBFD" - brightBlack: "#474757" - brightRed: "#F03E5F" - brightGreen: "#8B9CB2" - brightYellow: "#C6D5DA" - brightBlue: "#FFFFFF" - brightMagenta: "#8B9CB2" - brightCyan: "#C6D5DA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 94 - black: 0 - red: 20.2 - green: 22.4 - yellow: 50.7 - blue: 80.8 - magenta: 22.4 - cyan: 50.7 - white: 104 - brightBlack: 10.1 - brightRed: 36.5 - brightGreen: 46.6 - brightYellow: 78.2 - brightBlue: 106.6 - brightMagenta: 46.6 - brightCyan: 78.2 - brightWhite: 106.6 diff --git a/themes/slate-gray.yaml b/themes/slate-gray.yaml index 6e78e3e4..894087f9 100644 --- a/themes/slate-gray.yaml +++ b/themes/slate-gray.yaml @@ -6,6 +6,7 @@ source: author: "Postnumbers" repo: "https://github.com/postnumbers/slate-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=postnumbers.slate-themes" + formats: null colors: bg: "#2B313B" fg: "#D4D7DD" diff --git a/themes/slate-light.yaml b/themes/slate-light.yaml deleted file mode 100644 index 232fff0b..00000000 --- a/themes/slate-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "slate-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#19191F" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#566981" - yellow: "#89A7B1" - blue: "#9AADA7" - magenta: "#566981" - cyan: "#89A7B1" - white: "#24242D" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#8B9CB2" - brightYellow: "#C6D5DA" - brightBlue: "#D2DBD8" - brightMagenta: "#8B9CB2" - brightCyan: "#C6D5DA" - brightWhite: "#474757" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 104.3 - black: 0 - red: 80.3 - green: 78.1 - yellow: 50 - blue: 46.5 - magenta: 78.1 - cyan: 50 - white: 102.3 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 53.9 - brightYellow: 23.7 - brightBlue: 19.9 - brightMagenta: 53.9 - brightCyan: 23.7 - brightWhite: 91 diff --git a/themes/slate-neon.yaml b/themes/slate-neon.yaml index 9fde20de..0d9069c7 100644 --- a/themes/slate-neon.yaml +++ b/themes/slate-neon.yaml @@ -8,6 +8,7 @@ source: author: "Oskar Sodel" repo: "https://github.com/k4rdel/slate-neon" url: "https://marketplace.visualstudio.com/items?itemName=OskarSodel.slate-neon" + formats: null colors: bg: "#101013" fg: "#E4E4E4" diff --git a/themes/slate.yaml b/themes/slate.yaml deleted file mode 100644 index ec43a147..00000000 --- a/themes/slate.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "slate" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#3D3D4C" - fg: "#EBEBF4" - black: "#48485A" - red: "#BA0E2E" - green: "#566981" - yellow: "#89A7B1" - blue: "#CBDAD5" - magenta: "#566981" - cyan: "#89A7B1" - white: "#FBFBFD" - brightBlack: "#6A6A85" - brightRed: "#F03E5F" - brightGreen: "#8B9CB2" - brightYellow: "#C6D5DA" - brightBlue: "#FFFFFF" - brightMagenta: "#8B9CB2" - brightCyan: "#C6D5DA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 86 - black: 0 - red: 12.3 - green: 14.4 - yellow: 42.7 - blue: 72.8 - magenta: 14.4 - cyan: 42.7 - white: 96.1 - brightBlack: 16.5 - brightRed: 28.6 - brightGreen: 38.7 - brightYellow: 70.2 - brightBlue: 98.7 - brightMagenta: 38.7 - brightCyan: 70.2 - brightWhite: 98.7 diff --git a/themes/sleepy-nights.yaml b/themes/sleepy-nights.yaml index ae13d243..a1404e03 100644 --- a/themes/sleepy-nights.yaml +++ b/themes/sleepy-nights.yaml @@ -1,4 +1,4 @@ -name: "Sleepy Nights" +name: "sleepy-nights" source: marketplace_id: "deformal.sleepy-nights" version: "0.0.2" @@ -8,6 +8,7 @@ source: author: "saurabh jainwal" repo: "https://github.com/deformal/sleepy-nights" url: "https://marketplace.visualstudio.com/items?itemName=deformal.sleepy-nights" + formats: null colors: bg: "#21252B" fg: "#DFD0B8" diff --git a/themes/sleepy-owl-default-beta.yaml b/themes/sleepy-owl-default-beta.yaml index 8d646bf4..2a587ee2 100644 --- a/themes/sleepy-owl-default-beta.yaml +++ b/themes/sleepy-owl-default-beta.yaml @@ -8,6 +8,7 @@ source: author: "Sleepy Owl Theme" repo: "https://github.com/santosned/vsc-sleepy-owl-theme" url: "https://marketplace.visualstudio.com/items?itemName=santosned.theme-sleepy-owl" + formats: null colors: bg: "#24242F" fg: "#C7C7CF" diff --git a/themes/sleepy-owl-greenwich-beta.yaml b/themes/sleepy-owl-greenwich-beta.yaml index 11876f55..f654d923 100644 --- a/themes/sleepy-owl-greenwich-beta.yaml +++ b/themes/sleepy-owl-greenwich-beta.yaml @@ -8,6 +8,7 @@ source: author: "Sleepy Owl Theme" repo: "https://github.com/santosned/vsc-sleepy-owl-theme" url: "https://marketplace.visualstudio.com/items?itemName=santosned.theme-sleepy-owl" + formats: null colors: bg: "#24272D" fg: "#C7C7CF" diff --git a/themes/sleepy-owl-oak-beta.yaml b/themes/sleepy-owl-oak-beta.yaml index b6e049d6..2b25b4b8 100644 --- a/themes/sleepy-owl-oak-beta.yaml +++ b/themes/sleepy-owl-oak-beta.yaml @@ -8,6 +8,7 @@ source: author: "Sleepy Owl Theme" repo: "https://github.com/santosned/vsc-sleepy-owl-theme" url: "https://marketplace.visualstudio.com/items?itemName=santosned.theme-sleepy-owl" + formats: null colors: bg: "#29292F" fg: "#C8C8CD" diff --git a/themes/slime-color-theme.yaml b/themes/slime-color-theme.yaml deleted file mode 100644 index 1e363ca5..00000000 --- a/themes/slime-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "slime-color-theme" -source: - marketplace_id: "smlombardi.slime" - version: "3.2.1" - installs: 129894 - rating: 4.95 - ratings: 20 - author: "smlombardi" - repo: "https://github.com/smlombardi/theme-slime" - url: "https://marketplace.visualstudio.com/items?itemName=smlombardi.slime" -colors: - bg: "#1E2324" - fg: "#E0E0E0" - black: "#666666" - red: "#CD6564" - green: "#AEC199" - yellow: "#FFF099" - blue: "#6D9CBE" - magenta: "#B081B9" - cyan: "#80B5B3" - white: "#EFEFEF" - brightBlack: "#666666" - brightRed: "#CD6564" - brightGreen: "#AEC199" - brightYellow: "#FFF099" - brightBlue: "#6D9CBE" - brightMagenta: "#B081B9" - brightCyan: "#80B5B3" - brightWhite: "#EFEFEF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 85.4 - black: 20.6 - red: 34.9 - green: 63.1 - yellow: 94.7 - blue: 43.6 - magenta: 40.9 - cyan: 54.6 - white: 95 - brightBlack: 20.6 - brightRed: 34.9 - brightGreen: 63.1 - brightYellow: 94.7 - brightBlue: 43.6 - brightMagenta: 40.9 - brightCyan: 54.6 - brightWhite: 95 diff --git a/themes/slime-contrast.yaml b/themes/slime-contrast.yaml deleted file mode 100644 index 591e3dca..00000000 --- a/themes/slime-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "slime-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0B0C0D" - fg: "#FFFFFF" - black: "#17191B" - red: "#BA0E2E" - green: "#D8E778" - yellow: "#6A9EC5" - blue: "#D0B123" - magenta: "#689DC5" - cyan: "#DFBF29" - white: "#FFFFFF" - brightBlack: "#3A3F44" - brightRed: "#F03E5F" - brightGreen: "#F1F6CF" - brightYellow: "#B3CEE2" - brightBlue: "#E7D272" - brightMagenta: "#B2CDE1" - brightCyan: "#ECDA82" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107.7 - black: 0 - red: 21.3 - green: 86.6 - yellow: 46.7 - blue: 61.1 - magenta: 46.2 - cyan: 69 - white: 107.7 - brightBlack: 7.7 - brightRed: 37.6 - brightGreen: 99.4 - brightYellow: 74.4 - brightBlue: 79 - brightMagenta: 73.8 - brightCyan: 83.6 - brightWhite: 107.7 diff --git a/themes/slime-light.yaml b/themes/slime-light.yaml deleted file mode 100644 index 51007743..00000000 --- a/themes/slime-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "slime-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#333333" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#8B9355" - yellow: "#9FB3C2" - blue: "#C7AF3F" - magenta: "#9FB3C2" - cyan: "#C7AF3F" - white: "#404040" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#B8BF8F" - brightYellow: "#DDE4EA" - brightBlue: "#DED08E" - brightMagenta: "#DDE4EA" - brightCyan: "#DED08E" - brightWhite: "#666666" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.7 - black: 0 - red: 80.3 - green: 60.1 - yellow: 42.6 - blue: 42.8 - magenta: 42.6 - cyan: 42.8 - white: 94.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 36.9 - brightYellow: 14.1 - brightBlue: 25.4 - brightMagenta: 14.1 - brightCyan: 25.4 - brightWhite: 78.8 diff --git a/themes/slime-solid-color-theme.yaml b/themes/slime-solid-color-theme.yaml deleted file mode 100644 index cb104f69..00000000 --- a/themes/slime-solid-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "slime-solid-color-theme" -source: - marketplace_id: "ganevru.slime-solid" - version: "1.0.0" - installs: 1729 - rating: 5 - ratings: 1 - author: "ganevru" - repo: "https://github.com/ganevru/theme-slime-solid" - url: "https://marketplace.visualstudio.com/items?itemName=ganevru.slime-solid" -colors: - bg: "#24292B" - fg: "#E0E0E0" - black: "#666666" - red: "#CD6564" - green: "#AEC199" - yellow: "#FFF099" - blue: "#6D9CBE" - magenta: "#B081B9" - cyan: "#80B5B3" - white: "#EFEFEF" - brightBlack: "#666666" - brightRed: "#CD6564" - brightGreen: "#AEC199" - brightYellow: "#FFF099" - brightBlue: "#6D9CBE" - brightMagenta: "#B081B9" - brightCyan: "#80B5B3" - brightWhite: "#EFEFEF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 84.4 - black: 19.6 - red: 33.9 - green: 62 - yellow: 93.6 - blue: 42.5 - magenta: 39.9 - cyan: 53.6 - white: 93.9 - brightBlack: 19.6 - brightRed: 33.9 - brightGreen: 62 - brightYellow: 93.6 - brightBlue: 42.5 - brightMagenta: 39.9 - brightCyan: 53.6 - brightWhite: 93.9 diff --git a/themes/slime.yaml b/themes/slime.yaml index e7ab8d20..8b5797c2 100644 --- a/themes/slime.yaml +++ b/themes/slime.yaml @@ -8,6 +8,7 @@ source: author: "Luan Piegas" repo: "https://github.com/LuanPiegas/Slime-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=luanpiegas.slime-color-theme" + formats: null colors: bg: "#0A0A0A" fg: "#FFFFFF" diff --git a/themes/slimy-high-contrast.yaml b/themes/slimy-high-contrast.yaml index 4592f410..420536a0 100644 --- a/themes/slimy-high-contrast.yaml +++ b/themes/slimy-high-contrast.yaml @@ -8,6 +8,7 @@ source: author: "Chance Strickland" repo: "https://github.com/chancestrickland/slimy" url: "https://marketplace.visualstudio.com/items?itemName=chancestrickland.slimy-theme" + formats: null colors: bg: "#121515" fg: "#E0E0E0" diff --git a/themes/slimy-light.yaml b/themes/slimy-light.yaml index 6bd943e4..412bbd7f 100644 --- a/themes/slimy-light.yaml +++ b/themes/slimy-light.yaml @@ -8,6 +8,7 @@ source: author: "Chance Strickland" repo: "https://github.com/chancestrickland/slimy" url: "https://marketplace.visualstudio.com/items?itemName=chancestrickland.slimy-theme" + formats: null colors: bg: "#F4F4F4" fg: "#121515" diff --git a/themes/slimy.yaml b/themes/slimy.yaml index 517c0ff5..82a1d4a5 100644 --- a/themes/slimy.yaml +++ b/themes/slimy.yaml @@ -8,6 +8,7 @@ source: author: "Chance Strickland" repo: "https://github.com/chancestrickland/slimy" url: "https://marketplace.visualstudio.com/items?itemName=chancestrickland.slimy-theme" + formats: null colors: bg: "#242B2B" fg: "#E0E0E0" diff --git a/themes/slinkwave.yaml b/themes/slinkwave.yaml index 354f8616..1d051aea 100644 --- a/themes/slinkwave.yaml +++ b/themes/slinkwave.yaml @@ -8,6 +8,7 @@ source: author: "Ben Holmes" repo: "https://github.com/slinkity/slinkwave-themes" url: "https://marketplace.visualstudio.com/items?itemName=bholmesdev.slinkwave" + formats: null colors: bg: "#19102D" fg: "#FFF1F6" diff --git a/themes/sloth-highlander-theme-1.yaml b/themes/sloth-highlander-theme-1.yaml index 61112a9a..4ad2cf73 100644 --- a/themes/sloth-highlander-theme-1.yaml +++ b/themes/sloth-highlander-theme-1.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "fernandoncidade1.sloth-highlander-theme-1" version: "0.0.3" installs: 79 + rating: 0 + ratings: 0 author: "fernandoncidade1" repo: "https://github.com/fernandoncidade/sloth-highlander-theme-1" url: "https://marketplace.visualstudio.com/items?itemName=fernandoncidade1.sloth-highlander-theme-1" + formats: null colors: bg: "#05050B" fg: "#D4D4D4" diff --git a/themes/sloth-highlander-theme-3.yaml b/themes/sloth-highlander-theme-3.yaml index 23a7f615..2cee061c 100644 --- a/themes/sloth-highlander-theme-3.yaml +++ b/themes/sloth-highlander-theme-3.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "fernandoncidade1.sloth-highlander-theme-1" version: "0.0.3" installs: 79 + rating: 0 + ratings: 0 author: "fernandoncidade1" repo: "https://github.com/fernandoncidade/sloth-highlander-theme-1" url: "https://marketplace.visualstudio.com/items?itemName=fernandoncidade1.sloth-highlander-theme-1" + formats: null colors: bg: "#0D0E14" fg: "#F8F8F2" diff --git a/themes/smalltheme-carbon-oled.yaml b/themes/smalltheme-carbon-oled.yaml index 105c1f9f..d5b6142c 100644 --- a/themes/smalltheme-carbon-oled.yaml +++ b/themes/smalltheme-carbon-oled.yaml @@ -8,6 +8,7 @@ source: author: "HowManySmall" repo: "https://github.com/HowManySmall/small-theme" url: "https://marketplace.visualstudio.com/items?itemName=howmanysmall.small-theme" + formats: null colors: bg: "#000000" fg: "#F4F4F4" diff --git a/themes/smettboi-light.yaml b/themes/smettboi-light.yaml index 913ff588..eceee9f2 100644 --- a/themes/smettboi-light.yaml +++ b/themes/smettboi-light.yaml @@ -8,6 +8,7 @@ source: author: "smettboi" repo: "https://github.com/zaneadix/smettboi-themes" url: "https://marketplace.visualstudio.com/items?itemName=smettboi.smettboi-themes" + formats: null colors: bg: "#EBECF0" fg: "#292938" diff --git a/themes/smit-amber-monochrome.yaml b/themes/smit-amber-monochrome.yaml index 583e918d..63e4308e 100644 --- a/themes/smit-amber-monochrome.yaml +++ b/themes/smit-amber-monochrome.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#1A1510" fg: "#F4A460" diff --git a/themes/smit-arctic-cyan.yaml b/themes/smit-arctic-cyan.yaml index 6a68bedc..cbc247d7 100644 --- a/themes/smit-arctic-cyan.yaml +++ b/themes/smit-arctic-cyan.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#1A2429" fg: "#C5E5F5" diff --git a/themes/smit-black-slate.yaml b/themes/smit-black-slate.yaml index 6bfb6d25..4ae8d365 100644 --- a/themes/smit-black-slate.yaml +++ b/themes/smit-black-slate.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#0B0E14" fg: "#E6EAF0" diff --git a/themes/smit-coffee.yaml b/themes/smit-coffee.yaml index b845e4fa..f21d2b2d 100644 --- a/themes/smit-coffee.yaml +++ b/themes/smit-coffee.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#2A1F1A" fg: "#E6D4C4" diff --git a/themes/smit-crimson-red.yaml b/themes/smit-crimson-red.yaml index 6bc9600a..fa9661ab 100644 --- a/themes/smit-crimson-red.yaml +++ b/themes/smit-crimson-red.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#2A1A1F" fg: "#F5C5D5" diff --git a/themes/smit-dark.yaml b/themes/smit-dark.yaml index 16262404..0fa98287 100644 --- a/themes/smit-dark.yaml +++ b/themes/smit-dark.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#0F1419" fg: "#E0E8FF" diff --git a/themes/smit-deep-ocean.yaml b/themes/smit-deep-ocean.yaml index b2536bfa..7666c7b5 100644 --- a/themes/smit-deep-ocean.yaml +++ b/themes/smit-deep-ocean.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#0F1419" fg: "#A8D4E6" diff --git a/themes/smit-forest-green.yaml b/themes/smit-forest-green.yaml index ceca7e52..d00ca24e 100644 --- a/themes/smit-forest-green.yaml +++ b/themes/smit-forest-green.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#1A2419" fg: "#C5E5B4" diff --git a/themes/smit-gruvbox-inspired.yaml b/themes/smit-gruvbox-inspired.yaml index abcc53da..2423bd7b 100644 --- a/themes/smit-gruvbox-inspired.yaml +++ b/themes/smit-gruvbox-inspired.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#282828" fg: "#EBDBB2" diff --git a/themes/smit-high-contrast.yaml b/themes/smit-high-contrast.yaml index 2a2bafcb..01396d88 100644 --- a/themes/smit-high-contrast.yaml +++ b/themes/smit-high-contrast.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/smit-low-light.yaml b/themes/smit-low-light.yaml index 84946b06..f8857ead 100644 --- a/themes/smit-low-light.yaml +++ b/themes/smit-low-light.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#1A1A1A" fg: "#FFFFFF" diff --git a/themes/smit-matrix.yaml b/themes/smit-matrix.yaml index e07f20fd..b49b6c7b 100644 --- a/themes/smit-matrix.yaml +++ b/themes/smit-matrix.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#000000" fg: "#00FF00" diff --git a/themes/smit-midnight-purple.yaml b/themes/smit-midnight-purple.yaml index c6cac3a1..f4a1ae6e 100644 --- a/themes/smit-midnight-purple.yaml +++ b/themes/smit-midnight-purple.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#0A0A0F" fg: "#D4C5F9" diff --git a/themes/smit-minimal-dark.yaml b/themes/smit-minimal-dark.yaml index d6bb30e9..572cf72d 100644 --- a/themes/smit-minimal-dark.yaml +++ b/themes/smit-minimal-dark.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#1A1A1A" fg: "#C0C0C0" diff --git a/themes/smit-monokai-inspired.yaml b/themes/smit-monokai-inspired.yaml index d95d8db5..a00c47fc 100644 --- a/themes/smit-monokai-inspired.yaml +++ b/themes/smit-monokai-inspired.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#272822" fg: "#F8F8F2" diff --git a/themes/smit-neon-cyberpunk.yaml b/themes/smit-neon-cyberpunk.yaml index acb1fde9..b1ce4b09 100644 --- a/themes/smit-neon-cyberpunk.yaml +++ b/themes/smit-neon-cyberpunk.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#0A0A0F" fg: "#00FFFF" diff --git a/themes/smit-soft-dark.yaml b/themes/smit-soft-dark.yaml index 5968e831..b4e0efc6 100644 --- a/themes/smit-soft-dark.yaml +++ b/themes/smit-soft-dark.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#2B2D3A" fg: "#C7CDD8" diff --git a/themes/smit-sunset-orange.yaml b/themes/smit-sunset-orange.yaml index 545a213b..d8b09b7a 100644 --- a/themes/smit-sunset-orange.yaml +++ b/themes/smit-sunset-orange.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#2A1F1A" fg: "#F5D5B8" diff --git a/themes/smit-synthwave.yaml b/themes/smit-synthwave.yaml index 599314a0..84f37ee5 100644 --- a/themes/smit-synthwave.yaml +++ b/themes/smit-synthwave.yaml @@ -8,6 +8,7 @@ source: author: "Smit Dudhat" repo: "https://github.com/SmitDudhat/smit-theme" url: "https://marketplace.visualstudio.com/items?itemName=SmitDudhat.smit-theme" + formats: null colors: bg: "#1A0A28" fg: "#F0D0FF" diff --git a/themes/smithy-iron.yaml b/themes/smithy-iron.yaml index 7fc3965e..f1a63e1a 100644 --- a/themes/smithy-iron.yaml +++ b/themes/smithy-iron.yaml @@ -8,6 +8,7 @@ source: author: "Michael Assaf" repo: "https://github.com/smithy-theme/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=michaelassaf.dark-smithy" + formats: null colors: bg: "#151716" fg: "#FFFFFF" diff --git a/themes/smoldering-ember.yaml b/themes/smoldering-ember.yaml deleted file mode 100644 index 4ef980a2..00000000 --- a/themes/smoldering-ember.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Smoldering-Ember" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#252525" - fg: "#FBFBFB" - black: "#252525" - red: "#DC2828" - green: "#29C3A0" - yellow: "#D29922" - blue: "#4D4FEF" - magenta: "#4D4FEF" - cyan: "#29C3A0" - white: "#FBFBFB" - brightBlack: "#252525" - brightRed: "#DC2828" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#4D4FEF" - brightMagenta: "#4D4FEF" - brightCyan: "#29C3A0" - brightWhite: "#FBFBFB" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 102.3 - black: 0 - red: 27.3 - green: 55.7 - yellow: 49.8 - blue: 21.1 - magenta: 21.1 - cyan: 55.7 - white: 102.3 - brightBlack: 0 - brightRed: 27.3 - brightGreen: 55.7 - brightYellow: 49.8 - brightBlue: 21.1 - brightMagenta: 21.1 - brightCyan: 55.7 - brightWhite: 102.3 diff --git a/themes/smooth-burn-dark-hard.yaml b/themes/smooth-burn-dark-hard.yaml deleted file mode 100644 index e236d9ab..00000000 --- a/themes/smooth-burn-dark-hard.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Smooth Burn Dark Hard" -source: - marketplace_id: "AndreaCombette.smoothburn" - version: "0.5.4" - installs: 937 - rating: 5 - ratings: 1 - author: "AndreaCombette" - repo: "https://github.com/Chatr0uge/smoothburn-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" -colors: - bg: "#121827" - fg: "#F9D4A8" - black: "#23334E" - red: "#DA223A" - green: "#A77166" - yellow: "#D9735B" - blue: "#417283" - magenta: "#A77166" - cyan: "#818785" - white: "#9B968C" - brightBlack: "#818785" - brightRed: "#F44159" - brightGreen: "#F09162" - brightYellow: "#F09162" - brightBlue: "#9B968C" - brightMagenta: "#C5937C" - brightCyan: "#9B968C" - brightWhite: "#F9D4A8" -meta: - mode: "dark" - accent: "orange" - hue: 267 - pair: "Smooth Burn Light Hard" - contrast: - fg: 83 - black: 0 - red: 28.4 - green: 32.9 - yellow: 41.7 - blue: 24.3 - magenta: 32.9 - cyan: 36.3 - white: 44.7 - brightBlack: 36.3 - brightRed: 37.8 - brightGreen: 54.8 - brightYellow: 54.8 - brightBlue: 44.7 - brightMagenta: 48.7 - brightCyan: 44.7 - brightWhite: 83 diff --git a/themes/smooth-burn-dark-medium.yaml b/themes/smooth-burn-dark-medium.yaml deleted file mode 100644 index 51f66e11..00000000 --- a/themes/smooth-burn-dark-medium.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Smooth Burn Dark Medium" -source: - marketplace_id: "AndreaCombette.smoothburn" - version: "0.5.4" - installs: 937 - rating: 5 - ratings: 1 - author: "AndreaCombette" - repo: "https://github.com/Chatr0uge/smoothburn-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" -colors: - bg: "#1E2539" - fg: "#F9D4A8" - black: "#23334E" - red: "#DA223A" - green: "#A77166" - yellow: "#D9735B" - blue: "#417283" - magenta: "#A77166" - cyan: "#818785" - white: "#9B968C" - brightBlack: "#818785" - brightRed: "#F44159" - brightGreen: "#F09162" - brightYellow: "#F09162" - brightBlue: "#9B968C" - brightMagenta: "#C5937C" - brightCyan: "#9B968C" - brightWhite: "#F9D4A8" -meta: - mode: "dark" - accent: "orange" - hue: 269 - pair: null - contrast: - fg: 81.1 - black: 0 - red: 26.5 - green: 31.1 - yellow: 39.9 - blue: 22.4 - magenta: 31.1 - cyan: 34.4 - white: 42.8 - brightBlack: 34.4 - brightRed: 35.9 - brightGreen: 53 - brightYellow: 53 - brightBlue: 42.8 - brightMagenta: 46.9 - brightCyan: 42.8 - brightWhite: 81.1 diff --git a/themes/smooth-burn-dark.yaml b/themes/smooth-burn-dark.yaml deleted file mode 100644 index d24dd1a8..00000000 --- a/themes/smooth-burn-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Smooth Burn Dark" -source: - marketplace_id: "AndreaCombette.smoothburn" - version: "0.5.4" - installs: 937 - rating: 5 - ratings: 1 - author: "AndreaCombette" - repo: "https://github.com/Chatr0uge/smoothburn-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" -colors: - bg: "#23334E" - fg: "#F8BD94" - black: "#23334E" - red: "#A77166" - green: "#C5937C" - yellow: "#C5937C" - blue: "#61767D" - magenta: "#A77166" - cyan: "#61767D" - white: "#CBB39B" - brightBlack: "#A77166" - brightRed: "#A77166" - brightGreen: "#C5937C" - brightYellow: "#F8BD94" - brightBlue: "#9B968C" - brightMagenta: "#9B968C" - brightCyan: "#CBB39B" - brightWhite: "#F8BD94" -meta: - mode: "dark" - accent: "yellow" - hue: 260 - pair: null - contrast: - fg: 68.2 - black: 0 - red: 28.3 - green: 44 - yellow: 44 - blue: 22.7 - magenta: 28.3 - cyan: 22.7 - white: 57.6 - brightBlack: 28.3 - brightRed: 28.3 - brightGreen: 44 - brightYellow: 68.2 - brightBlue: 40 - brightMagenta: 40 - brightCyan: 57.6 - brightWhite: 68.2 diff --git a/themes/smooth-burn-light-hard.yaml b/themes/smooth-burn-light-hard.yaml deleted file mode 100644 index 19411f53..00000000 --- a/themes/smooth-burn-light-hard.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Smooth Burn Light Hard" -source: - marketplace_id: "AndreaCombette.smoothburn" - version: "0.5.4" - installs: 937 - rating: 5 - ratings: 1 - author: "AndreaCombette" - repo: "https://github.com/Chatr0uge/smoothburn-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" -colors: - bg: "#F9EAC1" - fg: "#23334E" - black: "#F9D4A8" - red: "#DA223A" - green: "#A77166" - yellow: "#D9735B" - blue: "#417283" - magenta: "#A77166" - cyan: "#818785" - white: "#845457" - brightBlack: "#818785" - brightRed: "#75131E" - brightGreen: "#845457" - brightYellow: "#C44D4D" - brightBlue: "#305975" - brightMagenta: "#845457" - brightCyan: "#417283" - brightWhite: "#23334E" -meta: - mode: "light" - accent: "orange" - hue: 90 - pair: "Smooth Burn Dark Hard" - contrast: - fg: 86.7 - black: 0 - red: 60.1 - green: 55.5 - yellow: 46.8 - blue: 64.3 - magenta: 55.5 - cyan: 52.2 - white: 68.8 - brightBlack: 52.2 - brightRed: 82.5 - brightGreen: 68.8 - brightYellow: 59.5 - brightBlue: 73.8 - brightMagenta: 68.8 - brightCyan: 64.3 - brightWhite: 86.7 diff --git a/themes/smooth-dark.yaml b/themes/smooth-dark.yaml deleted file mode 100644 index 1c122d46..00000000 --- a/themes/smooth-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Smooth (dark)" -source: - marketplace_id: "segersniels.smooth" - version: "0.2.1" - installs: 490 - author: "segersniels" - repo: "https://github.com/segersniels/smooth-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=segersniels.smooth" -colors: - bg: "#383838" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 73.2 - black: 0 - red: 20.4 - green: 46.7 - yellow: 79.3 - blue: 21.1 - magenta: 23.5 - cyan: 41.3 - white: 83.7 - brightBlack: 15.7 - brightRed: 32.3 - brightGreen: 57.2 - brightYellow: 89.3 - brightBlue: 33.7 - brightMagenta: 39.1 - brightCyan: 49.1 - brightWhite: 83.7 diff --git a/themes/smooth-light.yaml b/themes/smooth-light.yaml deleted file mode 100644 index eb01b118..00000000 --- a/themes/smooth-light.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Smooth (light)" -source: - marketplace_id: "segersniels.smooth" - version: "0.2.1" - installs: 490 - author: "segersniels" - repo: "https://github.com/segersniels/smooth-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=segersniels.smooth" -colors: - bg: "#FAF4ED" - fg: "#575279" - black: "#616161" - red: "#EB6F92" - green: "#60B79B" - yellow: "#F2B968" - blue: "#3FA2CA" - magenta: "#AA8ACD" - cyan: "#3494A0" - white: "#575279" - brightBlack: "#A8A8A8" - brightRed: "#EB6F92" - brightGreen: "#60B79B" - brightYellow: "#F2B968" - brightBlue: "#3FA2CA" - brightMagenta: "#AA8ACD" - brightCyan: "#3494A0" - brightWhite: "#575279" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 79.1 - black: 74.8 - red: 48.8 - green: 41.1 - yellow: 26.1 - blue: 49 - magenta: 49.3 - cyan: 56.9 - white: 79.1 - brightBlack: 40.8 - brightRed: 48.8 - brightGreen: 41.1 - brightYellow: 26.1 - brightBlue: 49 - brightMagenta: 49.3 - brightCyan: 56.9 - brightWhite: 79.1 diff --git a/themes/smoothity-dark.yaml b/themes/smoothity-dark.yaml index 61234f30..b7786600 100644 --- a/themes/smoothity-dark.yaml +++ b/themes/smoothity-dark.yaml @@ -8,6 +8,7 @@ source: author: "neinja007" repo: null url: "https://marketplace.visualstudio.com/items?itemName=neinja007.smoothity-dark" + formats: null colors: bg: "#FF0000" fg: "#FF0000" diff --git a/themes/smooththeme.yaml b/themes/smooththeme.yaml index bfca4628..20a4b6fa 100644 --- a/themes/smooththeme.yaml +++ b/themes/smooththeme.yaml @@ -8,6 +8,7 @@ source: author: "Sagnik Dey" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SagnikDey.smooththeme" + formats: null colors: bg: "#33303D" fg: "#DB754D" diff --git a/themes/snakedye-chocolate.yaml b/themes/snakedye-chocolate.yaml deleted file mode 100644 index ce288c38..00000000 --- a/themes/snakedye-chocolate.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Snakedye Chocolate" -source: - marketplace_id: "btarg.cosy-orange-theme" - version: "1.3.0" - installs: 709 - rating: 3.5 - ratings: 2 - author: "btarg" - repo: "https://github.com/btarg/vscode-cosy-orange-theme" - url: "https://marketplace.visualstudio.com/items?itemName=btarg.cosy-orange-theme" -colors: - bg: "#252221" - fg: "#A89C8A" - black: "#252221" - red: "#C65F5F" - green: "#859E82" - yellow: "#D9B27C" - blue: "#728797" - magenta: "#998396" - cyan: "#829E9B" - white: "#C8BAA4" - brightBlack: "#3D3837" - brightRed: "#D87575" - brightGreen: "#9AB598" - brightYellow: "#E5C592" - brightBlue: "#88A0B0" - brightMagenta: "#B099AC" - brightCyan: "#98B5B1" - brightWhite: "#D1C6B4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 47 - black: 0 - red: 32 - green: 43.8 - yellow: 61.7 - blue: 34.3 - magenta: 36.9 - cyan: 44.4 - white: 63.6 - brightBlack: 0 - brightRed: 41.3 - brightGreen: 55.8 - brightYellow: 71.7 - brightBlue: 46.6 - brightMagenta: 48.2 - brightCyan: 56.5 - brightWhite: 70.3 diff --git a/themes/snap-light.yaml b/themes/snap-light.yaml index d005a348..3e3f35b5 100644 --- a/themes/snap-light.yaml +++ b/themes/snap-light.yaml @@ -6,6 +6,7 @@ source: author: "sharmag44" repo: "https://github.com/sharmag44/snaptheme" url: "https://marketplace.visualstudio.com/items?itemName=sharmag44.snaptheme" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/snappier.yaml b/themes/snappier.yaml deleted file mode 100644 index 42ed7115..00000000 --- a/themes/snappier.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Snappier" -source: - marketplace_id: "bertieblackman.snappier" - version: "1.0.1" - installs: 4472 - rating: 5 - ratings: 1 - author: "Bertie Blackman" - repo: "https://github.com/covertbert/vscode-snappier-theme" - url: "https://marketplace.visualstudio.com/items?itemName=bertieblackman.snappier" -colors: - bg: "#393939" - fg: "#E3E2E0" - black: "#464646" - red: "#BA0E2E" - green: "#4EA1DF" - yellow: "#F66153" - blue: "#808DD3" - magenta: "#F66153" - cyan: "#808DD3" - white: "#EFEFED" - brightBlack: "#6C6C6C" - brightRed: "#F03E5F" - brightGreen: "#A4CFEF" - brightYellow: "#FBBAB4" - brightBlue: "#CCD1ED" - brightMagenta: "#FBBAB4" - brightCyan: "#CCD1ED" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 81.6 - black: 0 - red: 13.9 - green: 40.5 - yellow: 36.9 - blue: 35.6 - magenta: 36.9 - cyan: 35.6 - white: 89.7 - brightBlack: 18 - brightRed: 30.2 - brightGreen: 66.7 - brightYellow: 66.9 - brightBlue: 71.8 - brightMagenta: 66.9 - brightCyan: 71.8 - brightWhite: 100.3 diff --git a/themes/snappy-contrast.yaml b/themes/snappy-contrast.yaml deleted file mode 100644 index 47c6fd91..00000000 --- a/themes/snappy-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "snappy-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0C0C0C" - fg: "#E3E2E0" - black: "#191919" - red: "#BA0E2E" - green: "#4EA1DF" - yellow: "#F66153" - blue: "#808DD3" - magenta: "#F66153" - cyan: "#808DD3" - white: "#EFEFED" - brightBlack: "#3F3F3F" - brightRed: "#F03E5F" - brightGreen: "#A4CFEF" - brightYellow: "#FBBAB4" - brightBlue: "#CCD1ED" - brightMagenta: "#FBBAB4" - brightCyan: "#CCD1ED" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89 - black: 0 - red: 21.3 - green: 47.9 - yellow: 44.3 - blue: 43 - magenta: 44.3 - cyan: 43 - white: 97.1 - brightBlack: 7.9 - brightRed: 37.6 - brightGreen: 74 - brightYellow: 74.2 - brightBlue: 79.2 - brightMagenta: 74.2 - brightCyan: 79.2 - brightWhite: 107.7 diff --git a/themes/snappy-light.yaml b/themes/snappy-light.yaml deleted file mode 100644 index 31a31f1e..00000000 --- a/themes/snappy-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "snappy-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#555555" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#4EA1DF" - yellow: "#F66153" - blue: "#808DD3" - magenta: "#DA564A" - cyan: "#606AA1" - white: "#626262" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#A4CFEF" - brightYellow: "#FBBAB4" - brightBlue: "#CCD1ED" - brightMagenta: "#EBA59F" - brightCyan: "#A0A6C7" - brightWhite: "#888888" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 85.9 - black: 0 - red: 80.3 - green: 53.7 - yellow: 57.2 - blue: 58.5 - magenta: 65.4 - cyan: 75.5 - white: 80.5 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 28.6 - brightYellow: 28.4 - brightBlue: 23.8 - brightMagenta: 39 - brightCyan: 47.2 - brightWhite: 63.1 diff --git a/themes/snazzy-light.yaml b/themes/snazzy-light.yaml index bd5a2fe5..91d91c62 100644 --- a/themes/snazzy-light.yaml +++ b/themes/snazzy-light.yaml @@ -2,12 +2,13 @@ name: "Snazzy Light" source: marketplace_id: "loilo.snazzy-light" version: "1.4.1" - installs: 161547 + installs: 161593 rating: 4.78 ratings: 9 author: "Florian Reuschel" repo: "https://github.com/loilo/vscode-snazzy-light" url: "https://marketplace.visualstudio.com/items?itemName=loilo.snazzy-light" + formats: null colors: bg: "#FAFBFC" fg: "#565869" diff --git a/themes/snazzy-operator-color-theme-dark.yaml b/themes/snazzy-operator-color-theme-dark.yaml index 20ff7459..29733dfc 100644 --- a/themes/snazzy-operator-color-theme-dark.yaml +++ b/themes/snazzy-operator-color-theme-dark.yaml @@ -8,6 +8,7 @@ source: author: "Hasibur Rahman" repo: "https://github.com/HasibX2000/SLab" url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null colors: bg: "#141622" fg: "#EFF0EB" diff --git a/themes/snazzy-operator-color-theme-italics.yaml b/themes/snazzy-operator-color-theme-italics.yaml deleted file mode 100644 index fef0e9c4..00000000 --- a/themes/snazzy-operator-color-theme-italics.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "snazzy-operator-color-theme-italics" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#282A36" - fg: "#EFF0EB" - black: "#282A36" - red: "#FF5C57" - green: "#5AF78E" - yellow: "#FFBC58" - blue: "#57C7FF" - magenta: "#FF6AC1" - cyan: "#9AEDFE" - white: "#EFF0EB" - brightBlack: "#6C6E75" - brightRed: "#FF5C57" - brightGreen: "#5AF78E" - brightYellow: "#FFBC58" - brightBlue: "#57C7FF" - brightMagenta: "#FF6AC1" - brightCyan: "#9AEDFE" - brightWhite: "#EFF0EB" -meta: - mode: "dark" - accent: "red" - hue: 278 - pair: null - contrast: - fg: 93.7 - black: 0 - red: 41.7 - green: 81.1 - yellow: 69.7 - blue: 62.5 - magenta: 48 - cyan: 84.1 - white: 93.7 - brightBlack: 22.6 - brightRed: 41.7 - brightGreen: 81.1 - brightYellow: 69.7 - brightBlue: 62.5 - brightMagenta: 48 - brightCyan: 84.1 - brightWhite: 93.7 diff --git a/themes/snazzy-operator-color-theme.yaml b/themes/snazzy-operator-color-theme.yaml deleted file mode 100644 index 5c6a6182..00000000 --- a/themes/snazzy-operator-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "snazzy-operator-color-theme" -source: - marketplace_id: "aaronthomas.vscode-snazzy-operator" - version: "1.1.3" - installs: 181981 - rating: 4.5 - ratings: 4 - author: "Aaron Thomas" - repo: "https://github.com/aaronthomas/vscode-snazzy-operator" - url: "https://marketplace.visualstudio.com/items?itemName=aaronthomas.vscode-snazzy-operator" -colors: - bg: "#282A36" - fg: "#EFF0EB" - black: "#282A36" - red: "#FF5C57" - green: "#5AF78E" - yellow: "#F3F99D" - blue: "#57C7FF" - magenta: "#FF6AC1" - cyan: "#9AEDFE" - white: "#EFF0EB" - brightBlack: "#282A36" - brightRed: "#FF5C57" - brightGreen: "#5AF78E" - brightYellow: "#F3F99D" - brightBlue: "#57C7FF" - brightMagenta: "#FF6AC1" - brightCyan: "#9AEDFE" - brightWhite: "#EFF0EB" -meta: - mode: "dark" - accent: "red" - hue: 278 - pair: null - contrast: - fg: 93.7 - black: 0 - red: 41.7 - green: 81.1 - yellow: 95.8 - blue: 62.5 - magenta: 48 - cyan: 84.1 - white: 93.7 - brightBlack: 0 - brightRed: 41.7 - brightGreen: 81.1 - brightYellow: 95.8 - brightBlue: 62.5 - brightMagenta: 48 - brightCyan: 84.1 - brightWhite: 93.7 diff --git a/themes/snazzy-operator-natural.yaml b/themes/snazzy-operator-natural.yaml deleted file mode 100644 index cad86d3f..00000000 --- a/themes/snazzy-operator-natural.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Snazzy Operator Natural" -source: - marketplace_id: "BenCai.snazzy-operator-natural" - version: "0.0.10" - installs: 2983 - rating: 5 - ratings: 2 - author: "Ben Cai" - repo: "https://github.com/code0312/VSCode-Theme-Snazzy" - url: "https://marketplace.visualstudio.com/items?itemName=BenCai.snazzy-operator-natural" -colors: - bg: "#282A36" - fg: "#EFF0EB" - black: "#282A36" - red: "#FF716C" - green: "#5AF78E" - yellow: "#F758FF" - blue: "#57C7FF" - magenta: "#FF6AC1" - cyan: "#9AEDFE" - white: "#EFF0EB" - brightBlack: "#6C6E75" - brightRed: "#FF716C" - brightGreen: "#5AF78E" - brightYellow: "#F758FF" - brightBlue: "#57C7FF" - brightMagenta: "#FF6AC1" - brightCyan: "#9AEDFE" - brightWhite: "#EFF0EB" -meta: - mode: "dark" - accent: "pink" - hue: 278 - pair: null - contrast: - fg: 93.7 - black: 0 - red: 46.5 - green: 81.1 - yellow: 46.7 - blue: 62.5 - magenta: 48 - cyan: 84.1 - white: 93.7 - brightBlack: 22.6 - brightRed: 46.5 - brightGreen: 81.1 - brightYellow: 46.7 - brightBlue: 62.5 - brightMagenta: 48 - brightCyan: 84.1 - brightWhite: 93.7 diff --git a/themes/snazzy-solaris.yaml b/themes/snazzy-solaris.yaml index 6274e70b..72d13eaf 100644 --- a/themes/snazzy-solaris.yaml +++ b/themes/snazzy-solaris.yaml @@ -2,12 +2,13 @@ name: "Snazzy Solaris" source: marketplace_id: "SlayVict.snazzy-light-operator" version: "1.1.1" - installs: 548 + installs: 549 rating: 0 ratings: 0 author: "SlayVict" repo: "https://github.com/SlayVic/snazzy-solaris" url: "https://marketplace.visualstudio.com/items?itemName=SlayVict.snazzy-light-operator" + formats: null colors: bg: "#FFF8EC" fg: "#565869" diff --git a/themes/snazzy-vs-theme.yaml b/themes/snazzy-vs-theme.yaml deleted file mode 100644 index 9f79c63e..00000000 --- a/themes/snazzy-vs-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Snazzy vs theme" -source: - marketplace_id: "xdae.vscode-snazzy-theme" - version: "0.1.0" - installs: 3069 - rating: 5 - ratings: 2 - author: "jose miguel bejarano" - repo: "https://github.com/xDae/vscode-snazzy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=xdae.vscode-snazzy-theme" -colors: - bg: "#282A36" - fg: "#EFF0EB" - black: "#282A36" - red: "#FF5C57" - green: "#5AF78E" - yellow: "#F3F99D" - blue: "#57C7FF" - magenta: "#FF6AC1" - cyan: "#9AEDFE" - white: "#F1F1F0" - brightBlack: "#686868" - brightRed: "#FF5C57" - brightGreen: "#5AF78E" - brightYellow: "#F3F99D" - brightBlue: "#57C7FF" - brightMagenta: "#FF6AC1" - brightCyan: "#9AEDFE" - brightWhite: "#EFF0EB" -meta: - mode: "dark" - accent: "red" - hue: 278 - pair: null - contrast: - fg: 93.7 - black: 0 - red: 41.7 - green: 81.1 - yellow: 95.8 - blue: 62.5 - magenta: 48 - cyan: 84.1 - white: 94.7 - brightBlack: 19.9 - brightRed: 41.7 - brightGreen: 81.1 - brightYellow: 95.8 - brightBlue: 62.5 - brightMagenta: 48 - brightCyan: 84.1 - brightWhite: 93.7 diff --git a/themes/snazzy.yaml b/themes/snazzy.yaml deleted file mode 100644 index fd219b05..00000000 --- a/themes/snazzy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Snazzy" -source: - marketplace_id: "SnazzyTheme.snazzy-vscode" - version: "0.0.1" - installs: 7430 - rating: 5 - ratings: 1 - author: "SnazzyTheme" - repo: "https://github.com/snazzytheme/snazzy-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=SnazzyTheme.snazzy-vscode" -colors: - bg: "#1D2433" - fg: "#A2AABC" - black: "#2F3B54" - red: "#EF6B73" - green: "#BAE67E" - yellow: "#FFCC66" - blue: "#5CCFE6" - magenta: "#C3A6FF" - cyan: "#5CCFE6" - white: "#A2AABC" - brightBlack: "#444A5E" - brightRed: "#EF6B73" - brightGreen: "#BAE67E" - brightYellow: "#FFCC66" - brightBlue: "#5CCFE6" - brightMagenta: "#C3A6FF" - brightCyan: "#5CCFE6" - brightWhite: "#A2AABC" -meta: - mode: "dark" - accent: "orange" - hue: 265 - pair: null - contrast: - fg: 53.3 - black: 0 - red: 43.1 - green: 80.2 - yellow: 77.5 - blue: 66.1 - magenta: 59.6 - cyan: 66.1 - white: 53.3 - brightBlack: 9.4 - brightRed: 43.1 - brightGreen: 80.2 - brightYellow: 77.5 - brightBlue: 66.1 - brightMagenta: 59.6 - brightCyan: 66.1 - brightWhite: 53.3 diff --git a/themes/snazzyfied.yaml b/themes/snazzyfied.yaml index 8474db85..ec663088 100644 --- a/themes/snazzyfied.yaml +++ b/themes/snazzyfied.yaml @@ -2,12 +2,13 @@ name: "Snazzyfied" source: marketplace_id: "meister.vscode-theme-snazzyfied" version: "0.4.0" - installs: 146 + installs: 147 rating: 0 ratings: 0 author: "Martin Kapp" repo: "https://github.com/meister/vscode-snazzyfied" url: "https://marketplace.visualstudio.com/items?itemName=meister.vscode-theme-snazzyfied" + formats: null colors: bg: "#282A36" fg: "#DEE1DB" diff --git a/themes/snow-theme.yaml b/themes/snow-theme.yaml deleted file mode 100644 index 65831e39..00000000 --- a/themes/snow-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "snow theme" -source: - marketplace_id: "guicastro13.onebitcode-theme" - version: "0.0.5" - installs: 2293 - rating: 5 - ratings: 2 - author: "guicastro13" - repo: "https://github.com/guicastro13/onebitcode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" -colors: - bg: "#FDF6E3" - fg: "#909090" - black: "#767676" - red: "#E74856" - green: "#574657" - yellow: "#9B9665" - blue: "#474F88" - magenta: "#B46E90" - cyan: "#81D6BC" - white: "#928F8F" - brightBlack: "#767676" - brightRed: "#E74856" - brightGreen: "#574657" - brightYellow: "#9B9665" - brightBlue: "#474F88" - brightMagenta: "#B46E90" - brightCyan: "#81D6BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 53.9 - black: 66.3 - red: 59.5 - green: 84.5 - yellow: 51.7 - blue: 81.3 - magenta: 59.8 - cyan: 25.3 - white: 54.1 - brightBlack: 66.3 - brightRed: 59.5 - brightGreen: 84.5 - brightYellow: 51.7 - brightBlue: 81.3 - brightMagenta: 59.8 - brightCyan: 25.3 - brightWhite: 43.2 diff --git a/themes/snowflake-dark-theme.yaml b/themes/snowflake-dark-theme.yaml deleted file mode 100644 index 1cf8cdeb..00000000 --- a/themes/snowflake-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Snowflake-Dark-Theme" -source: - marketplace_id: "snowflake107.snowflake-dark" - version: "1.0.2" - installs: 4870 - rating: 5 - ratings: 2 - author: "Snowflake Studio ❄" - repo: "https://github.com/DevSnowflake/VSCode-Snowflake" - url: "https://marketplace.visualstudio.com/items?itemName=snowflake107.snowflake-dark" -colors: - bg: "#0F111A" - fg: "#A6ACCD" - black: "#000000" - red: "#FF787A" - green: "#37C463" - yellow: "#E3CE4B" - blue: "#82AAFF" - magenta: "#EB459E" - cyan: "#717BF0" - white: "#FFFFFF" - brightBlack: "#585C6E" - brightRed: "#FF787A" - brightGreen: "#37C463" - brightYellow: "#E3CE4B" - brightBlue: "#82AAFF" - brightMagenta: "#EB459E" - brightCyan: "#717BF0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 275 - pair: null - contrast: - fg: 57.6 - black: 0 - red: 52 - green: 57.2 - yellow: 75.8 - blue: 56.4 - magenta: 39 - cyan: 37.5 - white: 107.3 - brightBlack: 18.6 - brightRed: 52 - brightGreen: 57.2 - brightYellow: 75.8 - brightBlue: 56.4 - brightMagenta: 39 - brightCyan: 37.5 - brightWhite: 107.3 diff --git a/themes/snowflake-darker-theme.yaml b/themes/snowflake-darker-theme.yaml deleted file mode 100644 index ba8e9a57..00000000 --- a/themes/snowflake-darker-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Snowflake-Darker-Theme" -source: - marketplace_id: "snowflake107.snowflake-dark" - version: "1.0.2" - installs: 4870 - rating: 5 - ratings: 2 - author: "Snowflake Studio ❄" - repo: "https://github.com/DevSnowflake/VSCode-Snowflake" - url: "https://marketplace.visualstudio.com/items?itemName=snowflake107.snowflake-dark" -colors: - bg: "#090B10" - fg: "#A6ACCD" - black: "#000000" - red: "#FF787A" - green: "#37C463" - yellow: "#E3CE4B" - blue: "#82AAFF" - magenta: "#EB459E" - cyan: "#717BF0" - white: "#FFFFFF" - brightBlack: "#585C6E" - brightRed: "#FF787A" - brightGreen: "#37C463" - brightYellow: "#E3CE4B" - brightBlue: "#82AAFF" - brightMagenta: "#EB459E" - brightCyan: "#717BF0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 268 - pair: null - contrast: - fg: 58 - black: 0 - red: 52.3 - green: 57.6 - yellow: 76.2 - blue: 56.7 - magenta: 39.4 - cyan: 37.9 - white: 107.7 - brightBlack: 19 - brightRed: 52.3 - brightGreen: 57.6 - brightYellow: 76.2 - brightBlue: 56.7 - brightMagenta: 39.4 - brightCyan: 37.9 - brightWhite: 107.7 diff --git a/themes/snoword-dark-soft.yaml b/themes/snoword-dark-soft.yaml index 64249b63..4f30d08d 100644 --- a/themes/snoword-dark-soft.yaml +++ b/themes/snoword-dark-soft.yaml @@ -8,6 +8,7 @@ source: author: "Snoword Theme" repo: "https://github.com/snowords/vscode-theme-vitesse" url: "https://marketplace.visualstudio.com/items?itemName=Snoword.theme-snoword" + formats: null colors: bg: "#222222" fg: "#DBD7CA" diff --git a/themes/snoword-dark.yaml b/themes/snoword-dark.yaml index bdd4bbe2..cf7f5a68 100644 --- a/themes/snoword-dark.yaml +++ b/themes/snoword-dark.yaml @@ -8,6 +8,7 @@ source: author: "Snoword Theme" repo: "https://github.com/snowords/vscode-theme-vitesse" url: "https://marketplace.visualstudio.com/items?itemName=Snoword.theme-snoword" + formats: null colors: bg: "#121212" fg: "#DBD7CA" diff --git a/themes/snoword-light-soft.yaml b/themes/snoword-light-soft.yaml index 27dab8f9..6069deb2 100644 --- a/themes/snoword-light-soft.yaml +++ b/themes/snoword-light-soft.yaml @@ -8,6 +8,7 @@ source: author: "Snoword Theme" repo: "https://github.com/snowords/vscode-theme-vitesse" url: "https://marketplace.visualstudio.com/items?itemName=Snoword.theme-snoword" + formats: null colors: bg: "#F1F0E9" fg: "#393A34" diff --git a/themes/snoword-light.yaml b/themes/snoword-light.yaml index 7dd9e4f4..3e4774f3 100644 --- a/themes/snoword-light.yaml +++ b/themes/snoword-light.yaml @@ -8,6 +8,7 @@ source: author: "Snoword Theme" repo: "https://github.com/snowords/vscode-theme-vitesse" url: "https://marketplace.visualstudio.com/items?itemName=Snoword.theme-snoword" + formats: null colors: bg: "#FFFFFF" fg: "#393A34" diff --git a/themes/snowpiercer.yaml b/themes/snowpiercer.yaml index bb7d4adc..fb45c96e 100644 --- a/themes/snowpiercer.yaml +++ b/themes/snowpiercer.yaml @@ -2,12 +2,13 @@ name: "Snowpiercer" source: marketplace_id: "SajanSrikanthan.snowpiercer" version: "0.0.1" - installs: 145 + installs: 146 rating: 0 ratings: 0 author: "Sajan Srikanthan" repo: "https://github.com/sajansrikanthan/Snowpiercer-VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SajanSrikanthan.snowpiercer" + formats: null colors: bg: "#000B12" fg: "#D4D4D4" diff --git a/themes/snowy-mint.yaml b/themes/snowy-mint.yaml index 8ee936d6..893cbf9d 100644 --- a/themes/snowy-mint.yaml +++ b/themes/snowy-mint.yaml @@ -8,6 +8,7 @@ source: author: "jstmax! - ceez2exst" repo: "https://github.com/jstmaxlol/snowymint" url: "https://marketplace.visualstudio.com/items?itemName=jstmax.snowymint" + formats: null colors: bg: "#2C2C2C" fg: "#E4E4E4" diff --git a/themes/sober-afternoon.yaml b/themes/sober-afternoon.yaml index e3b6152d..d4760010 100644 --- a/themes/sober-afternoon.yaml +++ b/themes/sober-afternoon.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/sober" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.soberTheme" + formats: null colors: bg: "#14243A" fg: "#D8EAFF" diff --git a/themes/sober-deepnight.yaml b/themes/sober-deepnight.yaml index 86f1a5d8..9c25a889 100644 --- a/themes/sober-deepnight.yaml +++ b/themes/sober-deepnight.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/sober" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.soberTheme" + formats: null colors: bg: "#010E22" fg: "#DAE3FC" diff --git a/themes/sober-midnight.yaml b/themes/sober-midnight.yaml index a79de8de..3f5dacd5 100644 --- a/themes/sober-midnight.yaml +++ b/themes/sober-midnight.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/sober" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.soberTheme" + formats: null colors: bg: "#091E3B" fg: "#D8EAFF" diff --git a/themes/sober.yaml b/themes/sober.yaml deleted file mode 100644 index ce3415d0..00000000 --- a/themes/sober.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sober" -source: - marketplace_id: "YesCode.sober-code" - version: "0.0.7" - installs: 128 - rating: 0 - ratings: 0 - author: "YesCode" - repo: "https://git@github.com/yesomac/vs-sober" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.sober-code" -colors: - bg: "#0E1020" - fg: "#CDCDCD" - black: "#1D211D" - red: "#FB543F" - green: "#95C085" - yellow: "#FAC03B" - blue: "#00F95F" - magenta: "#8F4673" - cyan: "#8BA59B" - white: "#A89984" - brightBlack: "#665C54" - brightRed: "#FB543F" - brightGreen: "#788AEC" - brightYellow: "#DFE6E9" - brightBlue: "#0D6678" - brightMagenta: "#8F4673" - brightCyan: "#8BA59B" - brightWhite: "#FDF4C1" -meta: - mode: "dark" - accent: "green" - hue: 277 - pair: null - contrast: - fg: 75.7 - black: 0 - red: 42.4 - green: 61.4 - yellow: 73.5 - blue: 83.3 - magenta: 20 - cyan: 49.9 - white: 47.7 - brightBlack: 19 - brightRed: 42.4 - brightGreen: 42.6 - brightYellow: 90.3 - brightBlue: 19.2 - brightMagenta: 20 - brightCyan: 49.9 - brightWhite: 99.3 diff --git a/themes/sobrio-light.yaml b/themes/sobrio-light.yaml deleted file mode 100644 index 59831c72..00000000 --- a/themes/sobrio-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "sobrio-light" -source: - marketplace_id: "elvessousa.sobrio" - version: "0.2.0" - installs: 2229 - rating: 0 - ratings: 0 - author: "Elves Sousa" - repo: "https://github.com/elvessousa/sobrio-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=elvessousa.sobrio" -colors: - bg: "#FFFFFF" - fg: "#202020" - black: "#AFAFAF" - red: "#CC5500" - green: "#00DDAA" - yellow: "#AF875F" - blue: "#6787AF" - magenta: "#DD4C4F" - cyan: "#5FAFAF" - white: "#FFFFFF" - brightBlack: "#8F8F8F" - brightRed: "#DD4C4F" - brightGreen: "#5FAFAF" - brightYellow: "#FFDD55" - brightBlue: "#9787AF" - brightMagenta: "#DD4C4F" - brightCyan: "#5FAFAF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 103.3 - black: 43.2 - red: 69 - green: 31.5 - yellow: 59.8 - blue: 64.6 - magenta: 66.5 - cyan: 49.8 - white: 0 - brightBlack: 59.6 - brightRed: 66.5 - brightGreen: 49.8 - brightYellow: 16.4 - brightBlue: 60.1 - brightMagenta: 66.5 - brightCyan: 49.8 - brightWhite: 0 diff --git a/themes/sobrio.yaml b/themes/sobrio.yaml deleted file mode 100644 index 824c9f87..00000000 --- a/themes/sobrio.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "sobrio" -source: - marketplace_id: "elvessousa.sobrio" - version: "0.2.0" - installs: 2229 - rating: 0 - ratings: 0 - author: "Elves Sousa" - repo: "https://github.com/elvessousa/sobrio-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=elvessousa.sobrio" -colors: - bg: "#202020" - fg: "#FFFFFF" - black: "#3A3B3F" - red: "#CC5500" - green: "#00DDAA" - yellow: "#D7AF87" - blue: "#87AFD7" - magenta: "#FD6389" - cyan: "#7CDCE7" - white: "#FFFFFF" - brightBlack: "#5F5F5F" - brightRed: "#FD6389" - brightGreen: "#7CFFE7" - brightYellow: "#FFDD55" - brightBlue: "#D7D7FF" - brightMagenta: "#FD6389" - brightCyan: "#7CDCE7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 105.8 - black: 0 - red: 30.5 - green: 69.1 - yellow: 60.9 - blue: 54.7 - magenta: 45.7 - cyan: 74.5 - white: 105.8 - brightBlack: 18 - brightRed: 45.7 - brightGreen: 91.8 - brightYellow: 85.2 - brightBlue: 82.2 - brightMagenta: 45.7 - brightCyan: 74.5 - brightWhite: 105.8 diff --git a/themes/soct-color-theme.yaml b/themes/soct-color-theme.yaml deleted file mode 100644 index ade1c931..00000000 --- a/themes/soct-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "SOCT-color-theme" -source: - marketplace_id: "MsSus.soct" - version: "0.0.2" - installs: 27 - rating: 5 - ratings: 1 - author: "Ms.Sus" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=MsSus.soct" -colors: - bg: "#131313" - fg: "#FFFFFF" - black: "#000000" - red: "#FF3362" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#D9D9D9" - brightBlack: "#666666" - brightRed: "#FF0060" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#C9C9C9" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 107.2 - black: 0 - red: 39.7 - green: 53.4 - yellow: 86 - blue: 27.8 - magenta: 30.1 - cyan: 47.9 - white: 82.9 - brightBlack: 22.4 - brightRed: 37.8 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.4 - brightMagenta: 45.7 - brightCyan: 55.8 - brightWhite: 73.2 diff --git a/themes/soda.yaml b/themes/soda.yaml index 8adeea92..bca825e0 100644 --- a/themes/soda.yaml +++ b/themes/soda.yaml @@ -1,13 +1,14 @@ -name: "Soda" +name: "soda" source: marketplace_id: "fnando.soda" version: "0.0.3" - installs: 1195 + installs: 1196 rating: 0 ratings: 0 author: "Nando Vieira" repo: "https://github.com/fnando/vscode-soda" url: "https://marketplace.visualstudio.com/items?itemName=fnando.soda" + formats: null colors: bg: "#FFFFFF" fg: "#272727" diff --git a/themes/soft-colors.yaml b/themes/soft-colors.yaml index 1695bed9..1c0f52cf 100644 --- a/themes/soft-colors.yaml +++ b/themes/soft-colors.yaml @@ -8,6 +8,7 @@ source: author: "NyctibiusVII" repo: "https://github.com/Descomplica-ADS/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.descomplica-theme" + formats: null colors: bg: "#231F2E" fg: "#B4B4B4" diff --git a/themes/soft-dark.yaml b/themes/soft-dark.yaml deleted file mode 100644 index 7fcddf7f..00000000 --- a/themes/soft-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Soft Dark" -source: - marketplace_id: "Gerrnperl.soft-color-theme" - version: "0.0.2" - installs: 1895 - rating: 5 - ratings: 2 - author: "Gerrnperl" - repo: "https://github.com/Gerrnperl/vscode-soft-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Gerrnperl.soft-color-theme" -colors: - bg: "#252525" - fg: "#E6FFF3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: "Soft Light" - contrast: - fg: 101.1 - black: 0 - red: 24.8 - green: 51.1 - yellow: 83.7 - blue: 25.5 - magenta: 27.9 - cyan: 45.6 - white: 88.1 - brightBlack: 20.1 - brightRed: 36.7 - brightGreen: 61.6 - brightYellow: 93.7 - brightBlue: 38.1 - brightMagenta: 43.5 - brightCyan: 53.5 - brightWhite: 88.1 diff --git a/themes/soft-era.yaml b/themes/soft-era.yaml index 31d072af..a362b91e 100644 --- a/themes/soft-era.yaml +++ b/themes/soft-era.yaml @@ -2,12 +2,14 @@ name: "soft era" source: marketplace_id: "soft-aesthetic.soft-era-theme" version: "1.0.3" - installs: 37416 + installs: 37422 rating: 4.4 ratings: 5 author: "soft aesthetic" repo: "https://github.com/soft-aesthetic/soft-era-vs-code" url: "https://marketplace.visualstudio.com/items?itemName=soft-aesthetic.soft-era-theme" + formats: + sublime: "https://raw.githubusercontent.com/soft-aesthetic/soft-era-vs-code/master/themes/soft-era-test-1.tmTheme" colors: bg: "#F9F5F5" fg: "#C29BA3" diff --git a/themes/soft-kawaii-theme-1-color-theme.yaml b/themes/soft-kawaii-theme-1-color-theme.yaml deleted file mode 100644 index a89e9bb0..00000000 --- a/themes/soft-kawaii-theme-1-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "soft kawaii theme 1-color-theme" -source: - marketplace_id: "AiminHm.soft-kawaii-theme" - version: "1.0.2" - installs: 286 - rating: 0 - ratings: 0 - author: "AiminHm" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=AiminHm.soft-kawaii-theme" -colors: - bg: "#210D19" - fg: "#FF93E2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#D4D4D4" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 344 - pair: null - contrast: - fg: 63.3 - black: 0 - red: 26.9 - green: 53.2 - yellow: 85.8 - blue: 27.6 - magenta: 30 - cyan: 47.8 - white: 79.7 - brightBlack: 22.2 - brightRed: 38.8 - brightGreen: 63.7 - brightYellow: 95.8 - brightBlue: 40.2 - brightMagenta: 45.6 - brightCyan: 55.6 - brightWhite: 90.2 diff --git a/themes/soft-light.yaml b/themes/soft-light.yaml deleted file mode 100644 index 1a593ea0..00000000 --- a/themes/soft-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Soft Light" -source: - marketplace_id: "Gerrnperl.soft-color-theme" - version: "0.0.2" - installs: 1895 - rating: 5 - ratings: 2 - author: "Gerrnperl" - repo: "https://github.com/Gerrnperl/vscode-soft-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Gerrnperl.soft-color-theme" -colors: - bg: "#F8FFF3" - fg: "#5A5A5A" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Soft Dark" - contrast: - fg: 82.5 - black: 104.7 - red: 72.6 - green: 47.9 - yellow: 56.5 - blue: 84.7 - magenta: 73.2 - cyan: 59.2 - white: 84.5 - brightBlack: 77.4 - brightRed: 72.6 - brightGreen: 39.5 - brightYellow: 39.6 - brightBlue: 84.7 - brightMagenta: 73.2 - brightCyan: 59.2 - brightWhite: 47.1 diff --git a/themes/soft-material.yaml b/themes/soft-material.yaml index c0869945..5f7ac476 100644 --- a/themes/soft-material.yaml +++ b/themes/soft-material.yaml @@ -8,6 +8,7 @@ source: author: "sainnhe" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.soft-material" + formats: null colors: bg: "#F9F5F5" fg: "#BE9898" diff --git a/themes/soft-midnight.yaml b/themes/soft-midnight.yaml index b03eba17..28b0ffc6 100644 --- a/themes/soft-midnight.yaml +++ b/themes/soft-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Jean Castle" repo: "https://github.com/jeangoo/soft-midnight" url: "https://marketplace.visualstudio.com/items?itemName=JeanCastle.soft-midnight" + formats: null colors: bg: "#1A1B26" fg: "#E6D9A2" diff --git a/themes/soft-mood-theme.yaml b/themes/soft-mood-theme.yaml index cef62f7f..cd2b4321 100644 --- a/themes/soft-mood-theme.yaml +++ b/themes/soft-mood-theme.yaml @@ -8,6 +8,7 @@ source: author: "cdub" repo: "https://github.com/cwon07/softmoodvscode" url: "https://marketplace.visualstudio.com/items?itemName=cdub.soft-mood-theme-dark" + formats: null colors: bg: "#22292A" fg: "#CDC9C9" diff --git a/themes/soft-sight.yaml b/themes/soft-sight.yaml index 9ad34890..c142fd3b 100644 --- a/themes/soft-sight.yaml +++ b/themes/soft-sight.yaml @@ -2,12 +2,13 @@ name: "soft sight" source: marketplace_id: "sajibsrs.soft-sight" version: "0.3.1" - installs: 11779 + installs: 11784 rating: 5 ratings: 10 author: "Sajidur Rahman" repo: "https://github.com/sajibsrs/soft-sight" url: "https://marketplace.visualstudio.com/items?itemName=sajibsrs.soft-sight" + formats: null colors: bg: "#232533" fg: "#C3C6E2" diff --git a/themes/soft-sunset-dark.yaml b/themes/soft-sunset-dark.yaml index 3c119df4..980b1358 100644 --- a/themes/soft-sunset-dark.yaml +++ b/themes/soft-sunset-dark.yaml @@ -8,6 +8,7 @@ source: author: "brainkit" repo: "https://github.com/brainkit/vs-code-soft-sunset-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=brainkit.soft-sunset-dark" + formats: null colors: bg: "#24201A" fg: "#C8C0A8" diff --git a/themes/soft-yellow-light.yaml b/themes/soft-yellow-light.yaml index f706af7d..edb20973 100644 --- a/themes/soft-yellow-light.yaml +++ b/themes/soft-yellow-light.yaml @@ -2,12 +2,13 @@ name: "Soft Yellow Light" source: marketplace_id: "SwaggyPinguin.soft-yellow-light" version: "0.0.6" - installs: 2282 + installs: 2284 rating: 0 ratings: 0 author: "SwaggyPinguin" repo: "https://github.com/SwaggyPinguin/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=SwaggyPinguin.soft-yellow-light" + formats: null colors: bg: "#F9F3DF" fg: "#BC0000" diff --git a/themes/softie-theme.yaml b/themes/softie-theme.yaml index 841d5d21..43bbc22d 100644 --- a/themes/softie-theme.yaml +++ b/themes/softie-theme.yaml @@ -8,6 +8,7 @@ source: author: "filipondios" repo: "https://github.com/dpv927/softie-theme" url: "https://marketplace.visualstudio.com/items?itemName=filipondios.softie-theme" + formats: null colors: bg: "#292932" fg: "#CBC6C6" diff --git a/themes/soho-color-theme.yaml b/themes/soho-color-theme.yaml deleted file mode 100644 index 2c410e61..00000000 --- a/themes/soho-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "soho-color-theme" -source: - marketplace_id: "smlombardi.soho" - version: "2.1.3" - installs: 3066 - rating: 5 - ratings: 2 - author: "smlombardi" - repo: "https://github.com/smlombardi/theme-soho" - url: "https://marketplace.visualstudio.com/items?itemName=smlombardi.soho" -colors: - bg: "#F0F0F0" - fg: "#363636" - black: "#666666" - red: "#CD6564" - green: "#AEC199" - yellow: "#DAC340" - blue: "#6D9CBE" - magenta: "#B081B9" - cyan: "#80B5B3" - white: "#EFEFEF" - brightBlack: "#666666" - brightRed: "#CD6564" - brightGreen: "#AEC199" - brightYellow: "#DAC340" - brightBlue: "#6D9CBE" - brightMagenta: "#B081B9" - brightCyan: "#80B5B3" - brightWhite: "#EFEFEF" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 88.7 - black: 69.8 - red: 55.4 - green: 28 - yellow: 23.5 - blue: 46.8 - magenta: 49.5 - cyan: 36.1 - white: 0 - brightBlack: 69.8 - brightRed: 55.4 - brightGreen: 28 - brightYellow: 23.5 - brightBlue: 46.8 - brightMagenta: 49.5 - brightCyan: 36.1 - brightWhite: 0 diff --git a/themes/soil-theme.yaml b/themes/soil-theme.yaml index 0cfee76b..c4a0e1cd 100644 --- a/themes/soil-theme.yaml +++ b/themes/soil-theme.yaml @@ -8,6 +8,7 @@ source: author: "Codesbiome" repo: "https://github.com/codesbiome/soil-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=codesbiome.soil-theme-vscode" + formats: null colors: bg: "#222222" fg: "#ACA490" diff --git a/themes/solar-drift-dark-theme.yaml b/themes/solar-drift-dark-theme.yaml index 75274343..22201fac 100644 --- a/themes/solar-drift-dark-theme.yaml +++ b/themes/solar-drift-dark-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "JamesGulland.solar-drift-dark-theme" version: "2.6.0" installs: 85 + rating: 0 + ratings: 0 author: "James Gulland" repo: "https://github.com/james-gulland/solar-drift-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.solar-drift-dark-theme" + formats: null colors: bg: "#252B37" fg: "#7F8BAD" diff --git a/themes/solar-drift-darker-theme.yaml b/themes/solar-drift-darker-theme.yaml index 7a231bac..ba1cab29 100644 --- a/themes/solar-drift-darker-theme.yaml +++ b/themes/solar-drift-darker-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "JamesGulland.solar-drift-dark-theme" version: "2.6.0" installs: 85 + rating: 0 + ratings: 0 author: "James Gulland" repo: "https://github.com/james-gulland/solar-drift-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.solar-drift-dark-theme" + formats: null colors: bg: "#23272E" fg: "#7F8BAD" diff --git a/themes/solar-flare.yaml b/themes/solar-flare.yaml deleted file mode 100644 index 50b0ed20..00000000 --- a/themes/solar-flare.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Solar-Flare" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#0C0A09" - fg: "#FAFAF9" - black: "#0C0A09" - red: "#DC2626" - green: "#29C3A0" - yellow: "#D29922" - blue: "#EA580C" - magenta: "#EA580C" - cyan: "#29C3A0" - white: "#FAFAF9" - brightBlack: "#0C0A09" - brightRed: "#DC2626" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#EA580C" - brightMagenta: "#EA580C" - brightCyan: "#29C3A0" - brightWhite: "#FAFAF9" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 104.4 - black: 0 - red: 30 - green: 58.5 - yellow: 52.5 - blue: 39.4 - magenta: 39.4 - cyan: 58.5 - white: 104.4 - brightBlack: 0 - brightRed: 30 - brightGreen: 58.5 - brightYellow: 52.5 - brightBlue: 39.4 - brightMagenta: 39.4 - brightCyan: 58.5 - brightWhite: 104.4 diff --git a/themes/solar-future.yaml b/themes/solar-future.yaml index 5cabdc3b..9017abb5 100644 --- a/themes/solar-future.yaml +++ b/themes/solar-future.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AgraeonLabs.dev-themes" version: "0.1.0" installs: 283 + rating: 0 + ratings: 0 author: "Agraeon Labs" repo: "https://github.com/adiagcodelance/VS-Code-Themes" url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" + formats: null colors: bg: "#2C3531" fg: "#D1E8E2" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 167 + pair: null contrast: fg: 83.9 black: 0 diff --git a/themes/solarflare-contrast.yaml b/themes/solarflare-contrast.yaml deleted file mode 100644 index 7621cd74..00000000 --- a/themes/solarflare-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "solarflare-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#000000" - fg: "#E3E2E0" - black: "#0D0D0D" - red: "#BA0E2E" - green: "#FC913A" - yellow: "#FF4E50" - blue: "#EDE574" - magenta: "#FF4E50" - cyan: "#FC913A" - white: "#EFEFED" - brightBlack: "#333333" - brightRed: "#F03E5F" - brightGreen: "#FEC99E" - brightYellow: "#FFB4B5" - brightBlue: "#F9F6CE" - brightMagenta: "#FFB4B5" - brightCyan: "#FEC99E" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.2 - black: 0 - red: 21.5 - green: 57.8 - yellow: 43.2 - blue: 88.6 - magenta: 43.2 - cyan: 57.8 - white: 97.3 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 80.1 - brightYellow: 73 - brightBlue: 100.7 - brightMagenta: 73 - brightCyan: 80.1 - brightWhite: 107.9 diff --git a/themes/solarflare-light.yaml b/themes/solarflare-light.yaml deleted file mode 100644 index 991b2245..00000000 --- a/themes/solarflare-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "solarflare-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#222222" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#D87627" - yellow: "#FF4E50" - blue: "#C6BB15" - magenta: "#FF4E50" - cyan: "#D87627" - white: "#2F2F2F" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#E8AD7D" - brightYellow: "#FFB4B5" - brightBlue: "#EDE354" - brightMagenta: "#FFB4B5" - brightCyan: "#E8AD7D" - brightWhite: "#555555" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.9 - black: 0 - red: 80.3 - green: 58.9 - yellow: 58.5 - blue: 38.5 - magenta: 58.5 - cyan: 58.9 - white: 99.8 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 37.7 - brightYellow: 29.9 - brightBlue: 16.4 - brightMagenta: 29.9 - brightCyan: 37.7 - brightWhite: 85.9 diff --git a/themes/solarflare.yaml b/themes/solarflare.yaml deleted file mode 100644 index 2ea1e6e6..00000000 --- a/themes/solarflare.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "solarflare" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#222222" - fg: "#E3E2E0" - black: "#2F2F2F" - red: "#BA0E2E" - green: "#FC913A" - yellow: "#FF4E50" - blue: "#EDE574" - magenta: "#FF4E50" - cyan: "#FC913A" - white: "#EFEFED" - brightBlack: "#555555" - brightRed: "#F03E5F" - brightGreen: "#FEC99E" - brightYellow: "#FFB4B5" - brightBlue: "#F9F6CE" - brightMagenta: "#FFB4B5" - brightCyan: "#FEC99E" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 86.8 - black: 0 - red: 19.1 - green: 55.4 - yellow: 40.8 - blue: 86.2 - magenta: 40.8 - cyan: 55.4 - white: 94.9 - brightBlack: 13.7 - brightRed: 35.4 - brightGreen: 77.7 - brightYellow: 70.5 - brightBlue: 98.3 - brightMagenta: 70.5 - brightCyan: 77.7 - brightWhite: 105.5 diff --git a/themes/solaris.yaml b/themes/solaris.yaml index 3eace486..0be160ed 100644 --- a/themes/solaris.yaml +++ b/themes/solaris.yaml @@ -8,6 +8,7 @@ source: author: "SkiffOn" repo: "https://github.com/KonstantinChuper/Solaris" url: "https://marketplace.visualstudio.com/items?itemName=SkiffOn.solaris-theme-ultra" + formats: null colors: bg: "#1B1B1B" fg: "#837184" diff --git a/themes/solarized-complete-dark.yaml b/themes/solarized-complete-dark.yaml index 13da3655..11fa8b81 100644 --- a/themes/solarized-complete-dark.yaml +++ b/themes/solarized-complete-dark.yaml @@ -8,6 +8,8 @@ source: author: "AH-oss" repo: "https://github.com/jmatilai/solarized-complete" url: "https://marketplace.visualstudio.com/items?itemName=AH-oss.solarized-complete" + formats: + zed: "https://raw.githubusercontent.com/jmatilai/solarized-complete/master/themes/solarized-complete-dark-color-theme.json" colors: bg: "#002B36" fg: "#839496" diff --git a/themes/solarized-complete-light.yaml b/themes/solarized-complete-light.yaml index 619ca874..fdec756a 100644 --- a/themes/solarized-complete-light.yaml +++ b/themes/solarized-complete-light.yaml @@ -8,6 +8,8 @@ source: author: "AH-oss" repo: "https://github.com/jmatilai/solarized-complete" url: "https://marketplace.visualstudio.com/items?itemName=AH-oss.solarized-complete" + formats: + zed: "https://raw.githubusercontent.com/jmatilai/solarized-complete/master/themes/solarized-complete-dark-color-theme.json" colors: bg: "#FDF6E3" fg: "#657B83" diff --git a/themes/solarized-custom-dark.yaml b/themes/solarized-custom-dark.yaml index af016292..52775fd8 100644 --- a/themes/solarized-custom-dark.yaml +++ b/themes/solarized-custom-dark.yaml @@ -8,6 +8,7 @@ source: author: "AH-oss" repo: "https://github.com/jmatilai/soft2000" url: "https://marketplace.visualstudio.com/items?itemName=AH-oss.soft2000" + formats: null colors: bg: "#2F2F56" fg: "#8E8EA9" diff --git a/themes/solarized-custom-light.yaml b/themes/solarized-custom-light.yaml index 32770d72..ae4319eb 100644 --- a/themes/solarized-custom-light.yaml +++ b/themes/solarized-custom-light.yaml @@ -8,6 +8,7 @@ source: author: "AH-oss" repo: "https://github.com/jmatilai/soft2000" url: "https://marketplace.visualstudio.com/items?itemName=AH-oss.soft2000" + formats: null colors: bg: "#F0E3CB" fg: "#7E7EA0" diff --git a/themes/solarized-dark-theme.yaml b/themes/solarized-dark-theme.yaml deleted file mode 100644 index 21e03f01..00000000 --- a/themes/solarized-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Solarized Dark Theme" -source: - marketplace_id: "mjlaufer.vscode-themes" - version: "0.1.0" - installs: 1788 - rating: 0 - ratings: 0 - author: "mjlaufer" - repo: "https://github.com/mjlaufer/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=mjlaufer.vscode-themes" -colors: - bg: "#FDF6E3" - fg: "#657B83" - black: "#FDF6E3" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#657B83" - brightBlack: "#FDF6E3" - brightRed: "#DC322F" - brightGreen: "#859900" - brightYellow: "#B58900" - brightBlue: "#268BD2" - brightMagenta: "#D33682" - brightCyan: "#2AA198" - brightWhite: "#657B83" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 65.7 - black: 0 - red: 65.3 - green: 53.8 - yellow: 53.8 - blue: 58.7 - magenta: 65 - cyan: 53.1 - white: 65.7 - brightBlack: 0 - brightRed: 65.3 - brightGreen: 53.8 - brightYellow: 53.8 - brightBlue: 58.7 - brightMagenta: 65 - brightCyan: 53.1 - brightWhite: 65.7 diff --git a/themes/solarized-dark.yaml b/themes/solarized-dark.yaml deleted file mode 100644 index ded96360..00000000 --- a/themes/solarized-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Solarized (dark)" -source: - marketplace_id: "QuarkQuartet-IRW.doom-solarized" - version: "0.0.1" - installs: 472 - rating: 0 - ratings: 0 - author: "QuarkQuartet" - repo: "https://github.com/quarkquartet/doom-solarized-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=QuarkQuartet-IRW.doom-solarized" -colors: - bg: "#002B36" - fg: "#839496" - black: "#073642" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#002B36" - brightRed: "#CB4B16" - brightGreen: "#586E75" - brightYellow: "#657B83" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#93A1A1" - brightWhite: "#FDF6E3" -meta: - mode: "dark" - accent: "orange" - hue: 220 - pair: null - contrast: - fg: 39.5 - black: 0 - red: 27.7 - green: 39.2 - yellow: 39.2 - blue: 34.3 - magenta: 28 - cyan: 40 - white: 89.5 - brightBlack: 0 - brightRed: 27.2 - brightGreen: 21.5 - brightYellow: 27.3 - brightBlue: 39.5 - brightMagenta: 28 - brightCyan: 46.4 - brightWhite: 98.6 diff --git a/themes/solarized-deep.yaml b/themes/solarized-deep.yaml index d9d51f37..00a24649 100644 --- a/themes/solarized-deep.yaml +++ b/themes/solarized-deep.yaml @@ -8,6 +8,8 @@ source: author: "j4rviscmd" repo: "https://github.com/j4rviscmd/vscode-theme-solarized-deep" url: "https://marketplace.visualstudio.com/items?itemName=j4rviscmd.solarized-deep" + formats: + zed: "https://raw.githubusercontent.com/j4rviscmd/vscode-theme-solarized-deep/main/themes/solarized-deep-color-theme.json" colors: bg: "#000A0F" fg: "#93A1A1" diff --git a/themes/solarized-light-functional.yaml b/themes/solarized-light-functional.yaml index 28de55f9..a0a87d0f 100644 --- a/themes/solarized-light-functional.yaml +++ b/themes/solarized-light-functional.yaml @@ -2,12 +2,15 @@ name: "Solarized-light-functional" source: marketplace_id: "veggiemonk.solarized-light-functional" version: "2.0.0" - installs: 3699 + installs: 3700 rating: 5 ratings: 1 author: "veggiemonk" repo: "https://github.com/veggiemonk/theme-solarized-light-functional" url: "https://marketplace.visualstudio.com/items?itemName=veggiemonk.solarized-light-functional" + formats: + sublime: "https://raw.githubusercontent.com/veggiemonk/theme-solarized-light-functional/master/themes/Solarized-light.tmTheme" + zed: "https://raw.githubusercontent.com/veggiemonk/theme-solarized-light-functional/master/themes/Solarized-light-functional-color-theme.json" colors: bg: "#FDF6E3" fg: "#586E75" diff --git a/themes/solarized-light-n.yaml b/themes/solarized-light-n.yaml index 24c4c6d7..7ffed452 100644 --- a/themes/solarized-light-n.yaml +++ b/themes/solarized-light-n.yaml @@ -2,12 +2,13 @@ name: "Solarized Light N" source: marketplace_id: "naren.solarized-n" version: "0.0.2" - installs: 537 + installs: 538 rating: 0 ratings: 0 author: "Naren" repo: null url: "https://marketplace.visualstudio.com/items?itemName=naren.solarized-n" + formats: null colors: bg: "#FDF6E3" fg: "#839496" diff --git a/themes/solarized-light.yaml b/themes/solarized-light.yaml deleted file mode 100644 index d2e603b5..00000000 --- a/themes/solarized-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Solarized (light)" -source: - marketplace_id: "Braver.vscode-solarized" - version: "2.1.0" - installs: 38112 - rating: 4.17 - ratings: 6 - author: "Koen Lageveen" - repo: "https://github.com/braver/vscode-solarized" - url: "https://marketplace.visualstudio.com/items?itemName=Braver.vscode-solarized" -colors: - bg: "#FDF6E3" - fg: "#657B83" - black: "#073642" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#002B36" - brightRed: "#CB4B16" - brightGreen: "#586E75" - brightYellow: "#657B83" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#93A1A1" - brightWhite: "#FDF6E3" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 65.7 - black: 93.7 - red: 65.3 - green: 53.8 - yellow: 53.8 - blue: 58.7 - magenta: 65 - cyan: 53.1 - white: 0 - brightBlack: 96.4 - brightRed: 65.8 - brightGreen: 71.6 - brightYellow: 65.7 - brightBlue: 53.5 - brightMagenta: 65 - brightCyan: 46.7 - brightWhite: 0 diff --git a/themes/solarized-lilac.yaml b/themes/solarized-lilac.yaml deleted file mode 100644 index 89a7349b..00000000 --- a/themes/solarized-lilac.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Solarized Lilac" -source: - marketplace_id: "diamondmind.solarized-neue" - version: "0.26.0" - installs: 4083 - rating: 5 - ratings: 1 - author: "Phillip Sauerbeck" - repo: "https://github.com/pmsaue0/solarized-neue" - url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" -colors: - bg: "#E5E5EB" - fg: "#403F53" - black: "#403F53" - red: "#DE3D3B" - green: "#08916A" - yellow: "#E0AF02" - blue: "#288ED7" - magenta: "#D6438A" - cyan: "#8382E6" - white: "#F0F0F0" - brightBlack: "#403F53" - brightRed: "#DE3D3B" - brightGreen: "#08916A" - brightYellow: "#DAAA01" - brightBlue: "#288ED7" - brightMagenta: "#D6438A" - brightCyan: "#8382E6" - brightWhite: "#F0F0F0" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.7 - black: 78.7 - red: 53.6 - green: 51.5 - yellow: 24.3 - blue: 47.4 - magenta: 52.6 - cyan: 45.5 - white: 0 - brightBlack: 78.7 - brightRed: 53.6 - brightGreen: 51.5 - brightYellow: 27 - brightBlue: 47.4 - brightMagenta: 52.6 - brightCyan: 45.5 - brightWhite: 0 diff --git a/themes/solarized-monokai-dark.yaml b/themes/solarized-monokai-dark.yaml deleted file mode 100644 index b37e1b03..00000000 --- a/themes/solarized-monokai-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Solarized Monokai (dark)" -source: - marketplace_id: "linjing.solarized-dark-monokai" - version: "1.0.0" - installs: 6 - author: "linjing" - repo: "https://github.com/quickmove/solarized-dark-monokai" - url: "https://marketplace.visualstudio.com/items?itemName=linjing.solarized-dark-monokai" -colors: - bg: "#002732" - fg: "#839496" - black: "#073642" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#002B36" - brightRed: "#CB4B16" - brightGreen: "#586E75" - brightYellow: "#657B83" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#93A1A1" - brightWhite: "#FDF6E3" -meta: - mode: "dark" - accent: "orange" - hue: 221 - pair: null - contrast: - fg: 40.2 - black: 0 - red: 28.3 - green: 39.9 - yellow: 39.9 - blue: 34.9 - magenta: 28.6 - cyan: 40.6 - white: 90.1 - brightBlack: 0 - brightRed: 27.8 - brightGreen: 22.1 - brightYellow: 27.9 - brightBlue: 40.2 - brightMagenta: 28.6 - brightCyan: 47.1 - brightWhite: 99.3 diff --git a/themes/solarized-neue-bright.yaml b/themes/solarized-neue-bright.yaml deleted file mode 100644 index 8757eb4c..00000000 --- a/themes/solarized-neue-bright.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Solarized Neue Bright" -source: - marketplace_id: "diamondmind.solarized-neue" - version: "0.26.0" - installs: 4083 - rating: 5 - ratings: 1 - author: "Phillip Sauerbeck" - repo: "https://github.com/pmsaue0/solarized-neue" - url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" -colors: - bg: "#0B293E" - fg: "#A2B7B9" - black: "#93A1A1" - red: "#DE3D3B" - green: "#08916A" - yellow: "#E0AF02" - blue: "#288ED7" - magenta: "#D6438A" - cyan: "#2AA298" - white: "#212121" - brightBlack: "#93A1A1" - brightRed: "#DE3D3B" - brightGreen: "#08916A" - brightYellow: "#DAAA01" - brightBlue: "#288ED7" - brightMagenta: "#D6438A" - brightCyan: "#2AA298" - brightWhite: "#212121" -meta: - mode: "dark" - accent: "orange" - hue: 243 - pair: null - contrast: - fg: 57.8 - black: 46.5 - red: 29.6 - green: 31.7 - yellow: 59.6 - blue: 35.8 - magenta: 30.6 - cyan: 40.5 - white: 0 - brightBlack: 46.5 - brightRed: 29.6 - brightGreen: 31.7 - brightYellow: 56.7 - brightBlue: 35.8 - brightMagenta: 30.6 - brightCyan: 40.5 - brightWhite: 0 diff --git a/themes/solarized-neue.yaml b/themes/solarized-neue.yaml deleted file mode 100644 index 15fadfba..00000000 --- a/themes/solarized-neue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Solarized Neue" -source: - marketplace_id: "diamondmind.solarized-neue" - version: "0.26.0" - installs: 4083 - rating: 5 - ratings: 1 - author: "Phillip Sauerbeck" - repo: "https://github.com/pmsaue0/solarized-neue" - url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" -colors: - bg: "#042029" - fg: "#839496" - black: "#4A4A4A" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#4A4A4A" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 223 - pair: null - contrast: - fg: 41.2 - black: 10.1 - red: 42.8 - green: 83.4 - yellow: 78.1 - blue: 55.1 - magenta: 52.9 - cyan: 77.4 - white: 106.1 - brightBlack: 10.1 - brightRed: 42.8 - brightGreen: 83.4 - brightYellow: 78.1 - brightBlue: 55.1 - brightMagenta: 52.9 - brightCyan: 77.4 - brightWhite: 106.1 diff --git a/themes/solarized-next.yaml b/themes/solarized-next.yaml index eab9c56f..9ae376ab 100644 --- a/themes/solarized-next.yaml +++ b/themes/solarized-next.yaml @@ -1,4 +1,4 @@ -name: "Solarized Next" +name: "Solarized Next+" source: marketplace_id: "Gipphe.solarized-next-plus" version: "2.1.4" @@ -8,6 +8,8 @@ source: author: "Gipphe" repo: "https://github.com/Gipphe/solarized-next" url: "https://marketplace.visualstudio.com/items?itemName=Gipphe.solarized-next-plus" + formats: + zed: "https://raw.githubusercontent.com/Gipphe/solarized-next/master/themes/Solarized Next-color-theme.json" colors: bg: "#002B36" fg: "#839496" diff --git a/themes/solarized-pro.yaml b/themes/solarized-pro.yaml index 2c155577..605f6a99 100644 --- a/themes/solarized-pro.yaml +++ b/themes/solarized-pro.yaml @@ -2,12 +2,14 @@ name: "Solarized Pro" source: marketplace_id: "IIInsomnia.solarized-pro" version: "1.0.13" - installs: 1347 + installs: 1348 rating: 5 ratings: 2 author: "noble-gase" repo: "https://github.com/noble-gase/ng" url: "https://marketplace.visualstudio.com/items?itemName=IIInsomnia.solarized-pro" + formats: + zed: "https://raw.githubusercontent.com/noble-gase/ng/main/themes/solarized-pro-color-theme.json" colors: bg: "#002B36" fg: "#839496" diff --git a/themes/solarized-right.yaml b/themes/solarized-right.yaml index 14eedc31..29cb85f9 100644 --- a/themes/solarized-right.yaml +++ b/themes/solarized-right.yaml @@ -1,13 +1,14 @@ name: "Solarized Right" source: - marketplace_id: "Mukoopa.SolarizedRightMukoopa" + marketplace_id: "Mukkopa.SolarizedRight" version: "0.0.1" - installs: 1 + installs: 51 rating: 0 ratings: 0 - author: "Mukoopa" + author: "Mukeh" repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Mukoopa.SolarizedRightMukoopa" + url: "https://marketplace.visualstudio.com/items?itemName=Mukkopa.SolarizedRight" + formats: null colors: bg: "#FFF6EA" fg: "#000000" diff --git a/themes/solarized-simon.yaml b/themes/solarized-simon.yaml index b16e08f3..db0cd04f 100644 --- a/themes/solarized-simon.yaml +++ b/themes/solarized-simon.yaml @@ -8,6 +8,8 @@ source: author: "Simon Alford" repo: "https://github.com/simonalford42/dotfiles" url: "https://marketplace.visualstudio.com/items?itemName=SimonAlford.solarized-simon" + formats: + zed: "https://raw.githubusercontent.com/simonalford42/dotfiles/main/config/iterm_solarized.json" colors: bg: "#002B36" fg: "#C3C8C8" diff --git a/themes/solarized-ss-light.yaml b/themes/solarized-ss-light.yaml index cfe6a1d5..34f6cb71 100644 --- a/themes/solarized-ss-light.yaml +++ b/themes/solarized-ss-light.yaml @@ -2,12 +2,13 @@ name: "Solarized SS Light" source: marketplace_id: "sergeysinoptik.solarized-ss-light-theme" version: "1.1.1" - installs: 1238 + installs: 1240 rating: 0 ratings: 0 author: "sergeysinoptik" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sergeysinoptik.solarized-ss-light-theme" + formats: null colors: bg: "#FFF2CE" fg: "#000000" diff --git a/themes/solarized-yuki.yaml b/themes/solarized-yuki.yaml deleted file mode 100644 index 0dea005f..00000000 --- a/themes/solarized-yuki.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Solarized Yuki" -source: - marketplace_id: "diamondmind.solarized-neue" - version: "0.26.0" - installs: 4083 - rating: 5 - ratings: 1 - author: "Phillip Sauerbeck" - repo: "https://github.com/pmsaue0/solarized-neue" - url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" -colors: - bg: "#FEFEFE" - fg: "#403F53" - black: "#403F53" - red: "#DE3D3B" - green: "#08916A" - yellow: "#E0AF02" - blue: "#288ED7" - magenta: "#D6438A" - cyan: "#2AA298" - white: "#F0F0F0" - brightBlack: "#403F53" - brightRed: "#DE3D3B" - brightGreen: "#08916A" - brightYellow: "#DAAA01" - brightBlue: "#288ED7" - brightMagenta: "#D6438A" - brightCyan: "#2AA298" - brightWhite: "#F0F0F0" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 93.1 - black: 93.1 - red: 68.1 - green: 66 - yellow: 38.8 - blue: 61.9 - magenta: 67.1 - cyan: 57.3 - white: 0 - brightBlack: 93.1 - brightRed: 68.1 - brightGreen: 66 - brightYellow: 41.5 - brightBlue: 61.9 - brightMagenta: 67.1 - brightCyan: 57.3 - brightWhite: 0 diff --git a/themes/solarized.yaml b/themes/solarized.yaml index 1c0f7c01..11b3798d 100644 --- a/themes/solarized.yaml +++ b/themes/solarized.yaml @@ -8,6 +8,8 @@ source: author: "Szilard Levente Farkas" repo: "https://github.com/CrHasher/SolarizedPlus" url: "https://marketplace.visualstudio.com/items?itemName=SzilardLeventeFarkas.solarizedplus" + formats: + zed: "https://raw.githubusercontent.com/CrHasher/SolarizedPlus/master/themes/solarized.json" colors: bg: "#002B36" fg: "#839496" diff --git a/themes/solarus.yaml b/themes/solarus.yaml index 5ebb97f6..cbc4aa4b 100644 --- a/themes/solarus.yaml +++ b/themes/solarus.yaml @@ -8,6 +8,7 @@ source: author: "Aless" repo: "https://gitlab.com/Aless-OP/solarus-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=aless.solarus-editor-theme" + formats: null colors: bg: "#1C1D27" fg: "#F1F4FF" diff --git a/themes/solaryss.yaml b/themes/solaryss.yaml index 8d13b895..8456f4a3 100644 --- a/themes/solaryss.yaml +++ b/themes/solaryss.yaml @@ -8,6 +8,7 @@ source: author: "harry-public" repo: "https://github.com/harry-public/vadiya-themes" url: "https://marketplace.visualstudio.com/items?itemName=harry-public.vadiya-themes" + formats: null colors: bg: "#000C18" fg: "#117BD2" diff --git a/themes/solavsce-packagera.yaml b/themes/solavsce-packagera.yaml deleted file mode 100644 index 0d65128c..00000000 --- a/themes/solavsce-packagera.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Solavsce packagera" -source: - marketplace_id: "JaydenDancer.solara" - version: "0.0.4" - installs: 139 - author: "Jayden Dancer" - repo: "https://github.com/Official-Phantom/Solara-VSTheme" - url: "https://marketplace.visualstudio.com/items?itemName=JaydenDancer.solara" -colors: - bg: "#24171E" - fg: "#7B7D85" - black: "#332026" - red: "#C4374A" - green: "#E8D2D2" - yellow: "#7B7D85" - blue: "#E8D2D2" - magenta: "#C6637D" - cyan: "#E8D2D2" - white: "#B88993" - brightBlack: "#444A5E" - brightRed: "#C4374A" - brightGreen: "#E8D2D2" - brightYellow: "#7B7D85" - brightBlue: "#E8D2D2" - brightMagenta: "#C6637D" - brightCyan: "#E8D2D2" - brightWhite: "#B88993" -meta: - mode: "dark" - accent: "orange" - hue: 346 - pair: null - contrast: - fg: 32 - black: 0 - red: 25.3 - green: 80.8 - yellow: 32 - blue: 80.8 - magenta: 34.8 - cyan: 80.8 - white: 43.9 - brightBlack: 10.7 - brightRed: 25.3 - brightGreen: 80.8 - brightYellow: 32 - brightBlue: 80.8 - brightMagenta: 34.8 - brightCyan: 80.8 - brightWhite: 43.9 diff --git a/themes/solid-dark-theme.yaml b/themes/solid-dark-theme.yaml index 2243533a..46fc0bc7 100644 --- a/themes/solid-dark-theme.yaml +++ b/themes/solid-dark-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "tayyabk993.tayyabk993-theme" version: "0.0.1" installs: 36 + rating: 0 + ratings: 0 author: "tayyabk993" repo: "https://github.com/Tayyabkhalid993/PIAIC56.git#main" url: "https://marketplace.visualstudio.com/items?itemName=tayyabk993.tayyabk993-theme" + formats: null colors: bg: "#111111" fg: "#F2F2F2" diff --git a/themes/solitude-dark.yaml b/themes/solitude-dark.yaml deleted file mode 100644 index f79c8549..00000000 --- a/themes/solitude-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "solitude-dark" -source: - marketplace_id: "403forbidden.solitude-color-theme" - version: "1.0.0" - installs: 68 - rating: 5 - ratings: 1 - author: "403 Forbidden" - repo: "https://github.com/mario-garcia-dev/solitude-theme" - url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.solitude-color-theme" -colors: - bg: "#0A0726" - fg: "#F3F3F3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 281 - pair: null - contrast: - fg: 99.7 - black: 0 - red: 27.4 - green: 53.7 - yellow: 86.3 - blue: 28.1 - magenta: 30.4 - cyan: 48.2 - white: 90.7 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 90.7 diff --git a/themes/solitude-soft.yaml b/themes/solitude-soft.yaml deleted file mode 100644 index 79600a49..00000000 --- a/themes/solitude-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "solitude-soft" -source: - marketplace_id: "403forbidden.solitude-color-theme" - version: "1.0.0" - installs: 68 - rating: 5 - ratings: 1 - author: "403 Forbidden" - repo: "https://github.com/mario-garcia-dev/solitude-theme" - url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.solitude-color-theme" -colors: - bg: "#100B3B" - fg: "#F3F3F3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 279 - pair: null - contrast: - fg: 99.1 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.7 - blue: 27.5 - magenta: 29.8 - cyan: 47.6 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.6 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.5 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/solo-leveling.yaml b/themes/solo-leveling.yaml deleted file mode 100644 index a521f7d4..00000000 --- a/themes/solo-leveling.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Solo Leveling" -source: - marketplace_id: "Amanpandey.solo-leveling-theme" - version: "0.1.0" - installs: 4010 - rating: 5 - ratings: 1 - author: "Amanpandey" - repo: "https://github.com/losercodes/solo-leveling-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Amanpandey.solo-leveling-theme" -colors: - bg: "#0A0C12" - fg: "#E0E0E0" - black: "#000000" - red: "#FF3131" - green: "#00AEEF" - yellow: "#FFA424" - blue: "#00AEEF" - magenta: "#A020F0" - cyan: "#00D5FF" - white: "#E0E0E0" - brightBlack: "#000000" - brightRed: "#FF6060" - brightGreen: "#50D0FF" - brightYellow: "#FFC864" - brightBlue: "#50C8FF" - brightMagenta: "#C050FF" - brightCyan: "#50E3FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 270 - pair: null - contrast: - fg: 87.7 - black: 0 - red: 39.2 - green: 52.9 - yellow: 64.2 - blue: 52.9 - magenta: 26.9 - cyan: 71.1 - white: 87.7 - brightBlack: 0 - brightRed: 46.4 - brightGreen: 70 - brightYellow: 78.4 - brightBlue: 66.4 - brightMagenta: 38.7 - brightCyan: 78.9 - brightWhite: 107.7 diff --git a/themes/solstice-estival.yaml b/themes/solstice-estival.yaml deleted file mode 100644 index d30ee176..00000000 --- a/themes/solstice-estival.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Solstice Estival" -source: - marketplace_id: "kev1nweng.solstice" - version: "0.4.2" - installs: 38 - rating: 0 - ratings: 0 - author: "小翁同学" - repo: "https://github.com/kev1nweng/solstice" - url: "https://marketplace.visualstudio.com/items?itemName=kev1nweng.solstice" -colors: - bg: "#F0EEE7" - fg: "#1B3C3C" - black: "#213535" - red: "#9E5A5A" - green: "#6B7D5E" - yellow: "#8B7355" - blue: "#4A6670" - magenta: "#7A6B7A" - cyan: "#4A7A75" - white: "#E8E6DF" - brightBlack: "#6B6B65" - brightRed: "#B86B6B" - brightGreen: "#7A8E6D" - brightYellow: "#A08560" - brightBlue: "#5A7A85" - brightMagenta: "#8E7D8E" - brightCyan: "#5A8E88" - brightWhite: "#F5F3EC" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 87.1 - black: 88.9 - red: 65.2 - green: 60.7 - yellow: 61 - blue: 70.4 - magenta: 64.4 - cyan: 63.4 - white: 0 - brightBlack: 66.6 - brightRed: 56.3 - brightGreen: 52.9 - brightYellow: 52.3 - brightBlue: 61.8 - brightMagenta: 55.7 - brightCyan: 54.5 - brightWhite: 0 diff --git a/themes/solstice-heat.yaml b/themes/solstice-heat.yaml deleted file mode 100644 index 8fbb03b5..00000000 --- a/themes/solstice-heat.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Solstice-Heat" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#2B221A" - fg: "#F9CA9C" - black: "#2B221A" - red: "#B71A1A" - green: "#29C3A0" - yellow: "#D29922" - blue: "#F66E60" - magenta: "#F66E60" - cyan: "#29C3A0" - white: "#F9CA9C" - brightBlack: "#2B221A" - brightRed: "#B71A1A" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#F66E60" - brightMagenta: "#F66E60" - brightCyan: "#29C3A0" - brightWhite: "#F9CA9C" -meta: - mode: "dark" - accent: "orange" - hue: 63 - pair: null - contrast: - fg: 76.9 - black: 0 - red: 18.4 - green: 56 - yellow: 50 - blue: 44.9 - magenta: 44.9 - cyan: 56 - white: 76.9 - brightBlack: 0 - brightRed: 18.4 - brightGreen: 56 - brightYellow: 50 - brightBlue: 44.9 - brightMagenta: 44.9 - brightCyan: 56 - brightWhite: 76.9 diff --git a/themes/solstice-hibernal.yaml b/themes/solstice-hibernal.yaml deleted file mode 100644 index 83f34dea..00000000 --- a/themes/solstice-hibernal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Solstice Hibernal" -source: - marketplace_id: "kev1nweng.solstice" - version: "0.4.2" - installs: 38 - rating: 0 - ratings: 0 - author: "小翁同学" - repo: "https://github.com/kev1nweng/solstice" - url: "https://marketplace.visualstudio.com/items?itemName=kev1nweng.solstice" -colors: - bg: "#191D1B" - fg: "#C4AAA0" - black: "#191D1B" - red: "#C97E7B" - green: "#8FA876" - yellow: "#D4A877" - blue: "#7B9EBF" - magenta: "#A890B0" - cyan: "#7DBBB5" - white: "#C4AAA0" - brightBlack: "#483E3C" - brightRed: "#D99490" - brightGreen: "#A3BC8C" - brightYellow: "#E4BC90" - brightBlue: "#95B4CF" - brightMagenta: "#BCA4C4" - brightCyan: "#95CFC9" - brightWhite: "#D9C4BA" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 57.6 - black: 0 - red: 42.3 - green: 49.3 - yellow: 58 - blue: 46.3 - magenta: 45.1 - cyan: 57.9 - white: 57.6 - brightBlack: 0 - brightRed: 52.4 - brightGreen: 60.2 - brightYellow: 68.7 - brightBlue: 58.1 - brightMagenta: 55.7 - brightCyan: 69.5 - brightWhite: 71.7 diff --git a/themes/somber.yaml b/themes/somber.yaml index 7fa020e7..88c0e6e9 100644 --- a/themes/somber.yaml +++ b/themes/somber.yaml @@ -8,6 +8,7 @@ source: author: "Jayden Dancer" repo: "https://github.com/Official-Phantom/Somber-VSTheme" url: "https://marketplace.visualstudio.com/items?itemName=JaydenDancer.somber" + formats: null colors: bg: "#181818" fg: "#B4B4B4" diff --git a/themes/something-different.yaml b/themes/something-different.yaml index 6d5e72f5..3b883e05 100644 --- a/themes/something-different.yaml +++ b/themes/something-different.yaml @@ -8,6 +8,7 @@ source: author: "mwlang" repo: "https://github.com/mwlang/vscode-color-theme-something-different" url: "https://marketplace.visualstudio.com/items?itemName=mwlang.something-different" + formats: null colors: bg: "#263238" fg: "#DEDAA5" diff --git a/themes/something-theme.yaml b/themes/something-theme.yaml index 48953e49..f66e93d6 100644 --- a/themes/something-theme.yaml +++ b/themes/something-theme.yaml @@ -8,6 +8,7 @@ source: author: "Monadica" repo: "https://github.com/monadicarts/something-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=monadica.something-theme" + formats: null colors: bg: "#151514" fg: "#FFFFFF" diff --git a/themes/somewhere-on-a-beach.yaml b/themes/somewhere-on-a-beach.yaml index 8417682a..c10284cc 100644 --- a/themes/somewhere-on-a-beach.yaml +++ b/themes/somewhere-on-a-beach.yaml @@ -8,6 +8,7 @@ source: author: "Blake Noll" repo: "https://github.com/blakenoll/some-where-on-a-beach" url: "https://marketplace.visualstudio.com/items?itemName=BlakeNoll.somewhere-on-a-beach" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/sonic-pulse.yaml b/themes/sonic-pulse.yaml deleted file mode 100644 index f8cb19cb..00000000 --- a/themes/sonic-pulse.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sonic-Pulse" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#080B14" - fg: "#E9F0F5" - black: "#080B14" - red: "#FF1648" - green: "#29C3A0" - yellow: "#D29922" - blue: "#00B262" - magenta: "#00B262" - cyan: "#29C3A0" - white: "#E9F0F5" - brightBlack: "#080B14" - brightRed: "#FF1648" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#00B262" - brightMagenta: "#00B262" - brightCyan: "#29C3A0" - brightWhite: "#E9F0F5" -meta: - mode: "dark" - accent: "orange" - hue: 269 - pair: null - contrast: - fg: 97.1 - black: 0 - red: 38 - green: 58.5 - yellow: 52.5 - blue: 48.7 - magenta: 48.7 - cyan: 58.5 - white: 97.1 - brightBlack: 0 - brightRed: 38 - brightGreen: 58.5 - brightYellow: 52.5 - brightBlue: 48.7 - brightMagenta: 48.7 - brightCyan: 58.5 - brightWhite: 97.1 diff --git a/themes/sonokai-andromeda.yaml b/themes/sonokai-andromeda.yaml deleted file mode 100644 index 11b35127..00000000 --- a/themes/sonokai-andromeda.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sonokai Andromeda" -source: - marketplace_id: "xckomorebi.sonokai-fork" - version: "0.3.0" - installs: 171 - rating: 0 - ratings: 0 - author: "xckomorebi" - repo: "https://github.com/xckomorebi/sonokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.sonokai-fork" -colors: - bg: "#2B2D3A" - fg: "#E1E3E4" - black: "#3F445B" - red: "#FB617E" - green: "#9ED06C" - yellow: "#EDC763" - blue: "#6DCAE8" - magenta: "#BB97EE" - cyan: "#F89860" - white: "#E1E3E4" - brightBlack: "#3F445B" - brightRed: "#FB617E" - brightGreen: "#9ED06C" - brightYellow: "#EDC763" - brightBlue: "#6DCAE8" - brightMagenta: "#BB97EE" - brightCyan: "#F89860" - brightWhite: "#E1E3E4" -meta: - mode: "dark" - accent: "red" - hue: 278 - pair: null - contrast: - fg: 84.9 - black: 0 - red: 42 - green: 64.8 - yellow: 70.6 - blue: 62.9 - magenta: 50.4 - cyan: 55.1 - white: 84.9 - brightBlack: 0 - brightRed: 42 - brightGreen: 64.8 - brightYellow: 70.6 - brightBlue: 62.9 - brightMagenta: 50.4 - brightCyan: 55.1 - brightWhite: 84.9 diff --git a/themes/sonokai-atlantis.yaml b/themes/sonokai-atlantis.yaml deleted file mode 100644 index 0ca5d14d..00000000 --- a/themes/sonokai-atlantis.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sonokai Atlantis" -source: - marketplace_id: "xckomorebi.sonokai-fork" - version: "0.3.0" - installs: 171 - rating: 0 - ratings: 0 - author: "xckomorebi" - repo: "https://github.com/xckomorebi/sonokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.sonokai-fork" -colors: - bg: "#2A2F38" - fg: "#E1E3E4" - black: "#424B5B" - red: "#FF6578" - green: "#9DD274" - yellow: "#EACB64" - blue: "#72CCE8" - magenta: "#BA9CF3" - cyan: "#F69C5E" - white: "#E1E3E4" - brightBlack: "#424B5B" - brightRed: "#FF6578" - brightGreen: "#9DD274" - brightYellow: "#EACB64" - brightBlue: "#72CCE8" - brightMagenta: "#BA9CF3" - brightCyan: "#F69C5E" - brightWhite: "#E1E3E4" -meta: - mode: "dark" - accent: "orange" - hue: 262 - pair: null - contrast: - fg: 84.7 - black: 7.3 - red: 43.3 - green: 65.6 - yellow: 71.6 - blue: 63.9 - magenta: 52 - cyan: 55.8 - white: 84.7 - brightBlack: 7.3 - brightRed: 43.3 - brightGreen: 65.6 - brightYellow: 71.6 - brightBlue: 63.9 - brightMagenta: 52 - brightCyan: 55.8 - brightWhite: 84.7 diff --git a/themes/sonokai-espresso.yaml b/themes/sonokai-espresso.yaml deleted file mode 100644 index e6b4b3d3..00000000 --- a/themes/sonokai-espresso.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sonokai Espresso" -source: - marketplace_id: "xckomorebi.sonokai-fork" - version: "0.3.0" - installs: 171 - rating: 0 - ratings: 0 - author: "xckomorebi" - repo: "https://github.com/xckomorebi/sonokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.sonokai-fork" -colors: - bg: "#312C2B" - fg: "#E4E3E1" - black: "#4E433F" - red: "#F86882" - green: "#A6CD77" - yellow: "#F0C66F" - blue: "#81D0C9" - magenta: "#9FA0E1" - cyan: "#F08D71" - white: "#E4E3E1" - brightBlack: "#4E433F" - brightRed: "#F86882" - brightGreen: "#A6CD77" - brightYellow: "#F0C66F" - brightBlue: "#81D0C9" - brightMagenta: "#9FA0E1" - brightCyan: "#F08D71" - brightWhite: "#E4E3E1" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 85.3 - black: 0 - red: 43.1 - green: 64.6 - yellow: 71 - blue: 65.5 - magenta: 49.5 - cyan: 50.6 - white: 85.3 - brightBlack: 0 - brightRed: 43.1 - brightGreen: 64.6 - brightYellow: 71 - brightBlue: 65.5 - brightMagenta: 49.5 - brightCyan: 50.6 - brightWhite: 85.3 diff --git a/themes/sonokai-maia.yaml b/themes/sonokai-maia.yaml deleted file mode 100644 index 15557170..00000000 --- a/themes/sonokai-maia.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sonokai Maia" -source: - marketplace_id: "xckomorebi.sonokai-fork" - version: "0.3.0" - installs: 171 - rating: 0 - ratings: 0 - author: "xckomorebi" - repo: "https://github.com/xckomorebi/sonokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.sonokai-fork" -colors: - bg: "#273136" - fg: "#E1E2E3" - black: "#414B53" - red: "#F76C7C" - green: "#9CD57B" - yellow: "#E3D367" - blue: "#78CEE9" - magenta: "#BAA0F8" - cyan: "#F3A96A" - white: "#E1E2E3" - brightBlack: "#414B53" - brightRed: "#F76C7C" - brightGreen: "#9CD57B" - brightYellow: "#E3D367" - brightBlue: "#78CEE9" - brightMagenta: "#BAA0F8" - brightCyan: "#F3A96A" - brightWhite: "#E1E2E3" -meta: - mode: "dark" - accent: "orange" - hue: 230 - pair: null - contrast: - fg: 84 - black: 0 - red: 43 - green: 66.9 - yellow: 73.9 - blue: 65 - magenta: 53.6 - cyan: 59.8 - white: 84 - brightBlack: 0 - brightRed: 43 - brightGreen: 66.9 - brightYellow: 73.9 - brightBlue: 65 - brightMagenta: 53.6 - brightCyan: 59.8 - brightWhite: 84 diff --git a/themes/sonokai-shusia.yaml b/themes/sonokai-shusia.yaml deleted file mode 100644 index 62ddd82e..00000000 --- a/themes/sonokai-shusia.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sonokai Shusia" -source: - marketplace_id: "xckomorebi.sonokai-fork" - version: "0.3.0" - installs: 171 - rating: 0 - ratings: 0 - author: "xckomorebi" - repo: "https://github.com/xckomorebi/sonokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.sonokai-fork" -colors: - bg: "#2D2A2E" - fg: "#E3E1E4" - black: "#49464E" - red: "#F85E84" - green: "#9ECD6F" - yellow: "#E5C463" - blue: "#7ACCD7" - magenta: "#AB9DF2" - cyan: "#EF9062" - white: "#E3E1E4" - brightBlack: "#49464E" - brightRed: "#F85E84" - brightGreen: "#9ECD6F" - brightYellow: "#E5C463" - brightBlue: "#7ACCD7" - brightMagenta: "#AB9DF2" - brightCyan: "#EF9062" - brightWhite: "#E3E1E4" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 84.9 - black: 0 - red: 41.5 - green: 64.1 - yellow: 68.7 - blue: 64.3 - magenta: 51.2 - cyan: 51.5 - white: 84.9 - brightBlack: 0 - brightRed: 41.5 - brightGreen: 64.1 - brightYellow: 68.7 - brightBlue: 64.3 - brightMagenta: 51.2 - brightCyan: 51.5 - brightWhite: 84.9 diff --git a/themes/sonokai.yaml b/themes/sonokai.yaml deleted file mode 100644 index 35a94e1b..00000000 --- a/themes/sonokai.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sonokai" -source: - marketplace_id: "xckomorebi.sonokai-fork" - version: "0.3.0" - installs: 171 - rating: 0 - ratings: 0 - author: "xckomorebi" - repo: "https://github.com/xckomorebi/sonokai-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.sonokai-fork" -colors: - bg: "#2C2E34" - fg: "#E2E2E3" - black: "#414550" - red: "#FC5D7C" - green: "#9ED072" - yellow: "#E7C664" - blue: "#76CCE0" - magenta: "#B39DF3" - cyan: "#F39660" - white: "#E2E2E3" - brightBlack: "#414550" - brightRed: "#FC5D7C" - brightGreen: "#9ED072" - brightYellow: "#E7C664" - brightBlue: "#76CCE0" - brightMagenta: "#B39DF3" - brightCyan: "#F39660" - brightWhite: "#E2E2E3" -meta: - mode: "dark" - accent: "red" - hue: 271 - pair: null - contrast: - fg: 84.5 - black: 0 - red: 41.3 - green: 64.9 - yellow: 69.2 - blue: 63.8 - magenta: 51.6 - cyan: 53.4 - white: 84.5 - brightBlack: 0 - brightRed: 41.3 - brightGreen: 64.9 - brightYellow: 69.2 - brightBlue: 63.8 - brightMagenta: 51.6 - brightCyan: 53.4 - brightWhite: 84.5 diff --git a/themes/sonora-deep-signal-faded.yaml b/themes/sonora-deep-signal-faded.yaml index 21e5dba9..e12ae621 100644 --- a/themes/sonora-deep-signal-faded.yaml +++ b/themes/sonora-deep-signal-faded.yaml @@ -8,6 +8,7 @@ source: author: "martinlatrille" repo: "https://github.com/martinlatrille/Sonora" url: "https://marketplace.visualstudio.com/items?itemName=martinlatrille.sonora" + formats: null colors: bg: "#21252B" fg: "#D7DAE6" diff --git a/themes/sonora-deep-signal-vibrant.yaml b/themes/sonora-deep-signal-vibrant.yaml index 59d3626c..ea0274ac 100644 --- a/themes/sonora-deep-signal-vibrant.yaml +++ b/themes/sonora-deep-signal-vibrant.yaml @@ -8,6 +8,7 @@ source: author: "martinlatrille" repo: "https://github.com/martinlatrille/Sonora" url: "https://marketplace.visualstudio.com/items?itemName=martinlatrille.sonora" + formats: null colors: bg: "#21252B" fg: "#D7DAE6" diff --git a/themes/sonora-deep-signal.yaml b/themes/sonora-deep-signal.yaml index abafd535..9b276be8 100644 --- a/themes/sonora-deep-signal.yaml +++ b/themes/sonora-deep-signal.yaml @@ -8,6 +8,7 @@ source: author: "martinlatrille" repo: "https://github.com/martinlatrille/Sonora" url: "https://marketplace.visualstudio.com/items?itemName=martinlatrille.sonora" + formats: null colors: bg: "#21252B" fg: "#D7DAE6" diff --git a/themes/sonora-tides.yaml b/themes/sonora-tides.yaml index 63b3f77c..6382205a 100644 --- a/themes/sonora-tides.yaml +++ b/themes/sonora-tides.yaml @@ -8,6 +8,7 @@ source: author: "martinlatrille" repo: "https://github.com/martinlatrille/Sonora" url: "https://marketplace.visualstudio.com/items?itemName=martinlatrille.sonora" + formats: null colors: bg: "#282C34" fg: "#D7DAE6" diff --git a/themes/soothing-dark.yaml b/themes/soothing-dark.yaml index 16d68748..09bbdaa4 100644 --- a/themes/soothing-dark.yaml +++ b/themes/soothing-dark.yaml @@ -8,6 +8,7 @@ source: author: "fastestsunil" repo: "https://github.com/fastestsunil/sunilcode-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=fastestsunil.sunilcode-themes" + formats: null colors: bg: "#1A2332" fg: "#D4C5B9" diff --git a/themes/soothing-light.yaml b/themes/soothing-light.yaml index c9b537b5..7647da14 100644 --- a/themes/soothing-light.yaml +++ b/themes/soothing-light.yaml @@ -8,6 +8,7 @@ source: author: "fastestsunil" repo: "https://github.com/fastestsunil/sunilcode-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=fastestsunil.sunilcode-themes" + formats: null colors: bg: "#FAF8F5" fg: "#3C3836" diff --git a/themes/soothing.yaml b/themes/soothing.yaml index fa6e19e6..c1c7184f 100644 --- a/themes/soothing.yaml +++ b/themes/soothing.yaml @@ -8,6 +8,7 @@ source: author: "alireza" repo: "https://github.com/Alirezanet/Soothing-Theme" url: "https://marketplace.visualstudio.com/items?itemName=alirezanet.soothing-theme" + formats: null colors: bg: "#1F2022" fg: "#CBC1D5" diff --git a/themes/sorbet-swirl.yaml b/themes/sorbet-swirl.yaml deleted file mode 100644 index 571796d4..00000000 --- a/themes/sorbet-swirl.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sorbet-Swirl" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#1E1916" - fg: "#E1E7FD" - black: "#1E1916" - red: "#FBA7A7" - green: "#29C3A0" - yellow: "#D29922" - blue: "#C1AAFF" - magenta: "#C1AAFF" - cyan: "#29C3A0" - white: "#E1E7FD" - brightBlack: "#1E1916" - brightRed: "#FBA7A7" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#C1AAFF" - brightMagenta: "#C1AAFF" - brightCyan: "#29C3A0" - brightWhite: "#E1E7FD" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 91.2 - black: 0 - red: 65.8 - green: 57.3 - yellow: 51.4 - blue: 62.2 - magenta: 62.2 - cyan: 57.3 - white: 91.2 - brightBlack: 0 - brightRed: 65.8 - brightGreen: 57.3 - brightYellow: 51.4 - brightBlue: 62.2 - brightMagenta: 62.2 - brightCyan: 57.3 - brightWhite: 91.2 diff --git a/themes/sorcerer.yaml b/themes/sorcerer.yaml index 528d9133..91f964e5 100644 --- a/themes/sorcerer.yaml +++ b/themes/sorcerer.yaml @@ -8,6 +8,7 @@ source: author: "arzg" repo: "https://github.com/arzg/apprentice-vscode" url: "https://marketplace.visualstudio.com/items?itemName=arzg.apprentice" + formats: null colors: bg: "#202020" fg: "#C2C2B0" diff --git a/themes/soudev-mega-dark.yaml b/themes/soudev-mega-dark.yaml deleted file mode 100644 index fb30ec4d..00000000 --- a/themes/soudev-mega-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Soudev mega dark" -source: - marketplace_id: "soudev.soudev-theme" - version: "1.0.3" - installs: 11536 - rating: 5 - ratings: 1 - author: "soudev" - repo: "https://github.com/jefersonpassos/soudev-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" -colors: - bg: "#070E13" - fg: "#FFFFFF" - black: "#250E48" - red: "#F7005B" - green: "#46D028" - yellow: "#DDCB0A" - blue: "#EF8354" - magenta: "#A100DF" - cyan: "#40B4BB" - white: "#FFFFFF" - brightBlack: "#4A4F53" - brightRed: "#F7005B" - brightGreen: "#46D028" - brightYellow: "#DDCB0A" - brightBlue: "#EF8354" - brightMagenta: "#A100DF" - brightCyan: "#40B4BB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 239 - pair: null - contrast: - fg: 107.6 - black: 0 - red: 36 - green: 63 - yellow: 73.6 - blue: 51.1 - magenta: 24.7 - cyan: 53.3 - white: 107.6 - brightBlack: 13.3 - brightRed: 36 - brightGreen: 63 - brightYellow: 73.6 - brightBlue: 51.1 - brightMagenta: 24.7 - brightCyan: 53.3 - brightWhite: 107.6 diff --git a/themes/soudev-purple-andromeda.yaml b/themes/soudev-purple-andromeda.yaml deleted file mode 100644 index 68ade808..00000000 --- a/themes/soudev-purple-andromeda.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Soudev Purple Andromeda" -source: - marketplace_id: "soudev.soudev-theme" - version: "1.0.3" - installs: 11536 - rating: 5 - ratings: 1 - author: "soudev" - repo: "https://github.com/jefersonpassos/soudev-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" -colors: - bg: "#3D1653" - fg: "#FFFFFF" - black: "#3D1653" - red: "#F7005B" - green: "#46D028" - yellow: "#DDCB0A" - blue: "#EF8354" - magenta: "#A100DF" - cyan: "#40B4BB" - white: "#FFFFFF" - brightBlack: "#4A4F53" - brightRed: "#F7005B" - brightGreen: "#46D028" - brightYellow: "#DDCB0A" - brightBlue: "#EF8354" - brightMagenta: "#A100DF" - brightCyan: "#40B4BB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 311 - pair: null - contrast: - fg: 103.9 - black: 0 - red: 32.3 - green: 59.3 - yellow: 69.9 - blue: 47.4 - magenta: 21 - cyan: 49.6 - white: 103.9 - brightBlack: 9.6 - brightRed: 32.3 - brightGreen: 59.3 - brightYellow: 69.9 - brightBlue: 47.4 - brightMagenta: 21 - brightCyan: 49.6 - brightWhite: 103.9 diff --git a/themes/soudev-semi-dark-andromeda.yaml b/themes/soudev-semi-dark-andromeda.yaml deleted file mode 100644 index 53bc00e1..00000000 --- a/themes/soudev-semi-dark-andromeda.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Soudev semi dark Andromeda" -source: - marketplace_id: "soudev.soudev-theme" - version: "1.0.3" - installs: 11536 - rating: 5 - ratings: 1 - author: "soudev" - repo: "https://github.com/jefersonpassos/soudev-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" -colors: - bg: "#2B2331" - fg: "#FFFFFF" - black: "#2B2331" - red: "#F7005B" - green: "#46D028" - yellow: "#DDCB0A" - blue: "#EF8354" - magenta: "#A100DF" - cyan: "#40B4BB" - white: "#FFFFFF" - brightBlack: "#4A4F53" - brightRed: "#F7005B" - brightGreen: "#46D028" - brightYellow: "#DDCB0A" - brightBlue: "#EF8354" - brightMagenta: "#A100DF" - brightCyan: "#40B4BB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 310 - pair: null - contrast: - fg: 104.8 - black: 0 - red: 33.2 - green: 60.2 - yellow: 70.8 - blue: 48.3 - magenta: 21.8 - cyan: 50.4 - white: 104.8 - brightBlack: 10.4 - brightRed: 33.2 - brightGreen: 60.2 - brightYellow: 70.8 - brightBlue: 48.3 - brightMagenta: 21.8 - brightCyan: 50.4 - brightWhite: 104.8 diff --git a/themes/souei.yaml b/themes/souei.yaml index fe6061b9..9ca43e06 100644 --- a/themes/souei.yaml +++ b/themes/souei.yaml @@ -8,6 +8,7 @@ source: author: "Henri Lima" repo: "https://github.com/henrilima/oni-flux" url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.oniflux" + formats: null colors: bg: "#0F0F0F" fg: "#C9D1D9" diff --git a/themes/soul-theme.yaml b/themes/soul-theme.yaml index f9b3ec17..4f3ca004 100644 --- a/themes/soul-theme.yaml +++ b/themes/soul-theme.yaml @@ -8,6 +8,7 @@ source: author: "souli" repo: "https://github.com/S0ULI/Soul-Theme" url: "https://marketplace.visualstudio.com/items?itemName=souli.soul-theme" + formats: null colors: bg: "#002B36" fg: "#D4D4D4" diff --git a/themes/souls-theme.yaml b/themes/souls-theme.yaml index 7a2c7e6b..22a86fa4 100644 --- a/themes/souls-theme.yaml +++ b/themes/souls-theme.yaml @@ -6,6 +6,7 @@ source: author: "Gussv4z" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Gussv4z.souls-theme" + formats: null colors: bg: "#0E0F09" fg: "#00FF9C" diff --git a/themes/soup-contrast.yaml b/themes/soup-contrast.yaml deleted file mode 100644 index 39a1e71c..00000000 --- a/themes/soup-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "soup-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#17181C" - fg: "#9090B2" - black: "#23242A" - red: "#BA0E2E" - green: "#68B0AB" - yellow: "#8FC0A9" - blue: "#C8D5B9" - magenta: "#FAF3DD" - cyan: "#8FC0A9" - white: "#9F9FBC" - brightBlack: "#454854" - brightRed: "#F03E5F" - brightGreen: "#ABD3D0" - brightYellow: "#D0E5DB" - brightBlue: "#FAFBF9" - brightMagenta: "#FFFFFF" - brightCyan: "#D0E5DB" - brightWhite: "#CCCCDC" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 42.9 - black: 0 - red: 20.4 - green: 51.8 - yellow: 61.5 - blue: 77.2 - magenta: 98.9 - cyan: 61.5 - white: 50.4 - brightBlack: 10.2 - brightRed: 36.7 - brightGreen: 74.1 - brightYellow: 86.8 - brightBlue: 103.9 - brightMagenta: 106.8 - brightCyan: 86.8 - brightWhite: 75.3 diff --git a/themes/soup-light.yaml b/themes/soup-light.yaml deleted file mode 100644 index 278270f6..00000000 --- a/themes/soup-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "soup-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#666A7A" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#68B0AB" - yellow: "#8FC0A9" - blue: "#C8D5B9" - magenta: "#A5A08E" - cyan: "#8FC0A9" - white: "#727688" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#ABD3D0" - brightYellow: "#D0E5DB" - brightBlue: "#FAFBF9" - brightMagenta: "#D2D0C7" - brightCyan: "#D0E5DB" - brightWhite: "#9B9EAB" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 76.8 - black: 0 - red: 80.3 - green: 49 - yellow: 39.7 - blue: 24.8 - magenta: 51.1 - cyan: 39.7 - white: 71.3 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 27.8 - brightYellow: 15.8 - brightBlue: 0 - brightMagenta: 25.1 - brightCyan: 15.8 - brightWhite: 51.9 diff --git a/themes/soup.yaml b/themes/soup.yaml deleted file mode 100644 index ade81c4f..00000000 --- a/themes/soup.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "soup" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#40424C" - fg: "#9090B2" - black: "#4C4E5A" - red: "#BA0E2E" - green: "#68B0AB" - yellow: "#8FC0A9" - blue: "#C8D5B9" - magenta: "#FAF3DD" - cyan: "#8FC0A9" - white: "#9F9FBC" - brightBlack: "#6F7283" - brightRed: "#F03E5F" - brightGreen: "#ABD3D0" - brightYellow: "#D0E5DB" - brightBlue: "#FAFBF9" - brightMagenta: "#FFFFFF" - brightCyan: "#D0E5DB" - brightWhite: "#CCCCDC" -meta: - mode: "dark" - accent: "orange" - hue: 277 - pair: null - contrast: - fg: 33.5 - black: 0 - red: 10.9 - green: 42.4 - yellow: 52 - blue: 67.8 - magenta: 89.5 - cyan: 52 - white: 41 - brightBlack: 18.1 - brightRed: 27.2 - brightGreen: 64.6 - brightYellow: 77.4 - brightBlue: 94.4 - brightMagenta: 97.3 - brightCyan: 77.4 - brightWhite: 65.8 diff --git a/themes/sourc.yaml b/themes/sourc.yaml index f9520e6b..8289e64a 100644 --- a/themes/sourc.yaml +++ b/themes/sourc.yaml @@ -8,6 +8,7 @@ source: author: "Vitor Alencar" repo: "git+https://github.com/vitormalencar/sourc" url: "https://marketplace.visualstudio.com/items?itemName=vitormalencar.sourc" + formats: null colors: bg: "#00141D" fg: "#00CAFF" diff --git a/themes/sourcerer.yaml b/themes/sourcerer.yaml index aa573a47..cb86d412 100644 --- a/themes/sourcerer.yaml +++ b/themes/sourcerer.yaml @@ -8,6 +8,7 @@ source: author: "Brian Pruitt-Goddard" repo: "https://github.com/bpruitt-goddard/vscode-sourcerer" url: "https://marketplace.visualstudio.com/items?itemName=bpruitt-goddard.sourcerer" + formats: null colors: bg: "#222222" fg: "#C2C2B0" diff --git a/themes/sourlick-contrast.yaml b/themes/sourlick-contrast.yaml deleted file mode 100644 index e72053d2..00000000 --- a/themes/sourlick-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "sourlick-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#060606" - fg: "#DEDEDE" - black: "#131313" - red: "#BA0E2E" - green: "#EDF252" - yellow: "#8AC27A" - blue: "#BDF522" - magenta: "#D2EB31" - cyan: "#FFBB29" - white: "#EBEBEB" - brightBlack: "#393939" - brightRed: "#F03E5F" - brightGreen: "#F7F9B1" - brightYellow: "#C8E2C0" - brightBlue: "#DAF984" - brightMagenta: "#E6F48E" - brightCyan: "#FFDB8F" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 86.6 - black: 0 - red: 21.5 - green: 94.2 - yellow: 61.6 - blue: 89.5 - magenta: 87 - cyan: 72.8 - white: 94.8 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 100.8 - brightYellow: 84.5 - brightBlue: 95.9 - brightMagenta: 95.2 - brightCyan: 87.4 - brightWhite: 107.8 diff --git a/themes/sourlick-light.yaml b/themes/sourlick-light.yaml deleted file mode 100644 index 4c587852..00000000 --- a/themes/sourlick-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "sourlick-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#333333" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#BFC431" - yellow: "#6BA05D" - blue: "#94C117" - magenta: "#AFC425" - cyan: "#D89E20" - white: "#404040" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#DBDE7D" - brightYellow: "#A6C69D" - brightBlue: "#C3EB53" - brightMagenta: "#D3E36C" - brightCyan: "#EAC574" - brightWhite: "#666666" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.7 - black: 0 - red: 80.3 - green: 35.6 - yellow: 57.6 - blue: 41.4 - magenta: 37.4 - cyan: 46.6 - white: 94.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 20.3 - brightYellow: 35.6 - brightBlue: 17.9 - brightMagenta: 19.4 - brightCyan: 28.6 - brightWhite: 78.8 diff --git a/themes/sourlick.yaml b/themes/sourlick.yaml deleted file mode 100644 index edd60af5..00000000 --- a/themes/sourlick.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "sourlick" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2E2C2B" - fg: "#DEDEDE" - black: "#3B3937" - red: "#BA0E2E" - green: "#EDF252" - yellow: "#8AC27A" - blue: "#BDF522" - magenta: "#D2EB31" - cyan: "#FFBB29" - white: "#EBEBEB" - brightBlack: "#635E5C" - brightRed: "#F03E5F" - brightGreen: "#F7F9B1" - brightYellow: "#C8E2C0" - brightBlue: "#DAF984" - brightMagenta: "#E6F48E" - brightCyan: "#FFDB8F" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 82.3 - black: 0 - red: 17.2 - green: 89.9 - yellow: 57.3 - blue: 85.3 - magenta: 82.8 - cyan: 68.6 - white: 90.5 - brightBlack: 15.8 - brightRed: 33.5 - brightGreen: 96.5 - brightYellow: 80.2 - brightBlue: 91.6 - brightMagenta: 90.9 - brightCyan: 83.1 - brightWhite: 103.6 diff --git a/themes/south-australia-dark.yaml b/themes/south-australia-dark.yaml index c824414c..e03902e4 100644 --- a/themes/south-australia-dark.yaml +++ b/themes/south-australia-dark.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.south-australia-theme" + formats: null colors: bg: "#0A0C18" fg: "#E8EDF3" diff --git a/themes/south-australia-light.yaml b/themes/south-australia-light.yaml index 7112466c..089fd5b2 100644 --- a/themes/south-australia-light.yaml +++ b/themes/south-australia-light.yaml @@ -8,6 +8,7 @@ source: author: "Lucid Labs" repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.south-australia-theme" + formats: null colors: bg: "#FFFFFF" fg: "#0A0C18" diff --git a/themes/space-dark.yaml b/themes/space-dark.yaml deleted file mode 100644 index 7b017d17..00000000 --- a/themes/space-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Space Dark" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#1F1F1F" - fg: "#E1DFDF" - black: "#828282" - red: "#F76769" - green: "#17B877" - yellow: "#FFA23E" - blue: "#7895FF" - magenta: "#A87FFB" - cyan: "#25A6E9" - white: "#B0AFAF" - brightBlack: "#999999" - brightRed: "#FC8F8E" - brightGreen: "#66CE98" - brightYellow: "#FFC26E" - brightBlue: "#98B1FF" - brightMagenta: "#C8AAFF" - brightCyan: "#71C2EE" - brightWhite: "#FDFCFC" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: "Space Light" - contrast: - fg: 85.5 - black: 33.7 - red: 44.5 - green: 50.2 - yellow: 61.9 - blue: 46.4 - magenta: 43.9 - cyan: 47.7 - white: 57.1 - brightBlack: 45.2 - brightRed: 56.8 - brightGreen: 63.6 - brightYellow: 74.4 - brightBlue: 59.6 - brightMagenta: 62.5 - brightCyan: 62.6 - brightWhite: 104.1 diff --git a/themes/space-invader-black.yaml b/themes/space-invader-black.yaml index a84d8f7b..db0420a9 100644 --- a/themes/space-invader-black.yaml +++ b/themes/space-invader-black.yaml @@ -8,6 +8,7 @@ source: author: "rossipedia" repo: "https://github.com/rossipedia/space-invader-black-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=rossipedia.space-invader-black" + formats: null colors: bg: "#000000" fg: "#ABB2BF" diff --git a/themes/space-invader-darker.yaml b/themes/space-invader-darker.yaml index 2db16f8f..dd40f207 100644 --- a/themes/space-invader-darker.yaml +++ b/themes/space-invader-darker.yaml @@ -8,6 +8,7 @@ source: author: "Sam Ogorman" repo: "https://github.com/samogorm/space-invader-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=samogorman1993.space-invader" + formats: null colors: bg: "#12141B" fg: "#ABB2BF" diff --git a/themes/space-invader-light.yaml b/themes/space-invader-light.yaml index 4cd3c280..c2586fda 100644 --- a/themes/space-invader-light.yaml +++ b/themes/space-invader-light.yaml @@ -8,6 +8,7 @@ source: author: "Sam Ogorman" repo: "https://github.com/samogorm/space-invader-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=samogorman1993.space-invader" + formats: null colors: bg: "#FFFFFF" fg: "#454857" diff --git a/themes/space-invader.yaml b/themes/space-invader.yaml index dfc8e4df..5275c4d3 100644 --- a/themes/space-invader.yaml +++ b/themes/space-invader.yaml @@ -8,6 +8,7 @@ source: author: "Sam Ogorman" repo: "https://github.com/samogorm/space-invader-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=samogorman1993.space-invader" + formats: null colors: bg: "#232635" fg: "#ABB2BF" diff --git a/themes/space-light.yaml b/themes/space-light.yaml deleted file mode 100644 index 7c04a9d0..00000000 --- a/themes/space-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Space Light" -source: - marketplace_id: "SecureDev01.vscode-multi-themes" - version: "0.0.51" - installs: 1840 - rating: 5 - ratings: 2 - author: "SecureDev" - repo: "https://github.com/codewithevilxd/vscode-multi-themes" - url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" -colors: - bg: "#FFFFFF" - fg: "#292929" - black: "#3E3E3E" - red: "#D03941" - green: "#007B49" - yellow: "#A65921" - blue: "#4563CA" - magenta: "#6F4CDE" - cyan: "#0075A2" - white: "#6A6A6A" - brightBlack: "#000000" - brightRed: "#A52430" - brightGreen: "#00522F" - brightYellow: "#904B1A" - brightBlue: "#002583" - brightMagenta: "#4D21BB" - brightCyan: "#00607E" - brightWhite: "#535353" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Space Dark" - contrast: - fg: 101.4 - black: 94.8 - red: 72.2 - green: 76 - yellow: 75.1 - blue: 76.6 - magenta: 77.3 - cyan: 75 - white: 77 - brightBlack: 106 - brightRed: 83.8 - brightGreen: 91.1 - brightYellow: 82 - brightBlue: 98.5 - brightMagenta: 90.3 - brightCyan: 83.9 - brightWhite: 86.7 diff --git a/themes/space-purple-dark.yaml b/themes/space-purple-dark.yaml deleted file mode 100644 index 569dcb7e..00000000 --- a/themes/space-purple-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Space Purple Dark" -source: - marketplace_id: "zzAIMoo.space-purple" - version: "0.11.0" - installs: 11295 - rating: 5 - ratings: 1 - author: "zzAIMoo" - repo: "https://github.com/zzAIMoo/space-purple-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zzAIMoo.space-purple" -colors: - bg: "#3B205A" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 302 - pair: "Space Purple Light" - contrast: - fg: 103 - black: 0 - red: 22.9 - green: 49.1 - yellow: 81.8 - blue: 23.6 - magenta: 25.9 - cyan: 43.7 - white: 86.2 - brightBlack: 18.2 - brightRed: 34.7 - brightGreen: 59.7 - brightYellow: 91.8 - brightBlue: 36.1 - brightMagenta: 41.5 - brightCyan: 51.5 - brightWhite: 86.2 diff --git a/themes/space-purple-light.yaml b/themes/space-purple-light.yaml deleted file mode 100644 index e57dc287..00000000 --- a/themes/space-purple-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Space Purple Light" -source: - marketplace_id: "zzAIMoo.space-purple" - version: "0.11.0" - installs: 11295 - rating: 5 - ratings: 1 - author: "zzAIMoo" - repo: "https://github.com/zzAIMoo/space-purple-theme" - url: "https://marketplace.visualstudio.com/items?itemName=zzAIMoo.space-purple" -colors: - bg: "#EDC4FF" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: 315 - pair: "Space Purple Dark" - contrast: - fg: 80.1 - black: 80.1 - red: 48.1 - green: 23.3 - yellow: 32 - blue: 60.1 - magenta: 48.6 - cyan: 34.7 - white: 60 - brightBlack: 52.8 - brightRed: 48.1 - brightGreen: 15 - brightYellow: 15 - brightBlue: 60.1 - brightMagenta: 48.6 - brightCyan: 34.7 - brightWhite: 22.5 diff --git a/themes/space-theme.yaml b/themes/space-theme.yaml index a750b8cb..20b39c88 100644 --- a/themes/space-theme.yaml +++ b/themes/space-theme.yaml @@ -8,6 +8,7 @@ source: author: "hosana" repo: "https://github.com/hosanabarcelos/vscode-extension" url: "https://marketplace.visualstudio.com/items?itemName=hosana.space-github-theme" + formats: null colors: bg: "#0D1117" fg: "#C9D1D9" diff --git a/themes/space.yaml b/themes/space.yaml index fb4febce..76ed39ca 100644 --- a/themes/space.yaml +++ b/themes/space.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/platzi_theme" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.grayspace" + formats: null colors: bg: "#342D31" fg: "#F0C27C" diff --git a/themes/spacecamp.yaml b/themes/spacecamp.yaml index b7e1e8f1..2fb5abcf 100644 --- a/themes/spacecamp.yaml +++ b/themes/spacecamp.yaml @@ -8,6 +8,7 @@ source: author: "Dino Gomez" repo: "https://github.com/dinogomez/SpaceCamp" url: "https://marketplace.visualstudio.com/items?itemName=PaulGomez.spacecamp" + formats: null colors: bg: "#262626" fg: "#FFFFFF" diff --git a/themes/spacedust.yaml b/themes/spacedust.yaml index fe6e3710..de1d8485 100644 --- a/themes/spacedust.yaml +++ b/themes/spacedust.yaml @@ -8,6 +8,7 @@ source: author: "Wallsified" repo: "https://github.com/Wallsified/Spacedust-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=Wallsified.spacedust" + formats: null colors: bg: "#0A1E24" fg: "#ECF0C1" diff --git a/themes/spacegray.yaml b/themes/spacegray.yaml index 4627ca12..62e23dc7 100644 --- a/themes/spacegray.yaml +++ b/themes/spacegray.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/platzi_theme" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.grayspace" + formats: null colors: bg: "#1D1D1D" fg: "#DDDDDD" diff --git a/themes/spacegrey.yaml b/themes/spacegrey.yaml index 56cfe49b..154eb99a 100644 --- a/themes/spacegrey.yaml +++ b/themes/spacegrey.yaml @@ -8,6 +8,7 @@ source: author: "huodon" repo: "https://github.com/FlatMapIO/vscode-spacegrey-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=huodon.spacegrey" + formats: null colors: bg: "#F1F3F8" fg: "#383F51" diff --git a/themes/spacemacs-dark.yaml b/themes/spacemacs-dark.yaml deleted file mode 100644 index 25dccb8f..00000000 --- a/themes/spacemacs-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Spacemacs - dark" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#292B2E" - fg: "#CBC1D5" - black: "#B2B2B2" - red: "#BA2F59" - green: "#67B11D" - yellow: "#B1951D" - blue: "#3A81C3" - magenta: "#800080" - cyan: "#21B8C7" - white: "#B2B2B2" - brightBlack: "#B2B2B2" - brightRed: "#F2241F" - brightGreen: "#86DC2F" - brightYellow: "#B1951D" - brightBlue: "#D7DFFF" - brightMagenta: "#A31DB1" - brightCyan: "#28DEF0" - brightWhite: "#B2B2B2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Spacemacs - light" - contrast: - fg: 67.4 - black: 56.7 - red: 20.2 - green: 46.4 - yellow: 42.3 - blue: 29.7 - magenta: 8.7 - cyan: 51.2 - white: 56.7 - brightBlack: 56.7 - brightRed: 31.2 - brightGreen: 68.4 - brightYellow: 42.3 - brightBlue: 83.8 - brightMagenta: 18.3 - brightCyan: 71 - brightWhite: 56.7 diff --git a/themes/spacemacs-light.yaml b/themes/spacemacs-light.yaml deleted file mode 100644 index cf59d830..00000000 --- a/themes/spacemacs-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Spacemacs - light" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#FBF8EF" - fg: "#655370" - black: "#100A14" - red: "#BA2F59" - green: "#67B11D" - yellow: "#B1951D" - blue: "#3A81C3" - magenta: "#800080" - cyan: "#21B8C7" - white: "#100A14" - brightBlack: "#262626" - brightRed: "#F2241F" - brightGreen: "#86DC2F" - brightYellow: "#B1951D" - brightBlue: "#D7DFFF" - brightMagenta: "#A31DB1" - brightCyan: "#28DEF0" - brightWhite: "#100A14" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Spacemacs - dark" - contrast: - fg: 79.8 - black: 101.5 - red: 73.4 - green: 47.3 - yellow: 51.3 - blue: 63.8 - magenta: 85.4 - cyan: 42.6 - white: 101.5 - brightBlack: 97.9 - brightRed: 62.3 - brightGreen: 26.2 - brightYellow: 51.3 - brightBlue: 11.7 - brightMagenta: 75.3 - brightCyan: 23.7 - brightWhite: 101.5 diff --git a/themes/spaceoceankitrefined.yaml b/themes/spaceoceankitrefined.yaml deleted file mode 100644 index a1a74cd1..00000000 --- a/themes/spaceoceankitrefined.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "SpaceOceanKitRefined" -source: - marketplace_id: "space-ocean-kit-refined.space-ocean-kit-refined" - version: "0.3.1" - installs: 81267 - rating: 0 - ratings: 0 - author: "space-ocean-kit-refined" - repo: "https://github.com/aichbauer/space-ocean-kit-refined/" - url: "https://marketplace.visualstudio.com/items?itemName=space-ocean-kit-refined.space-ocean-kit-refined" -colors: - bg: "#2B303B" - fg: "#D4D4D4" - black: "#1C1F26" - red: "#BF5F69" - green: "#A3BE89" - yellow: "#EBCB8B" - blue: "#96B5B4" - magenta: "#B48EAD" - cyan: "#96B5B4" - white: "#C0C5CE" - brightBlack: "#22262F" - brightRed: "#D39298" - brightGreen: "#CCDBBD" - brightYellow: "#F8EEDA" - brightBlue: "#C6D7D6" - brightMagenta: "#D4BED0" - brightCyan: "#C6D7D6" - brightWhite: "#F7F8F9" -meta: - mode: "dark" - accent: "red" - hue: 266 - pair: null - contrast: - fg: 75.4 - black: 0 - red: 28.4 - green: 57.5 - yellow: 72.3 - blue: 53.9 - magenta: 42.4 - cyan: 53.9 - white: 66.2 - brightBlack: 0 - brightRed: 47.5 - brightGreen: 76.6 - brightYellow: 92.2 - brightBlue: 75.1 - brightMagenta: 66 - brightCyan: 75.1 - brightWhite: 98.1 diff --git a/themes/spacial.yaml b/themes/spacial.yaml index 1f26d503..cd45bb56 100644 --- a/themes/spacial.yaml +++ b/themes/spacial.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/y3mm/spacial" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.spacial" + formats: null colors: bg: "#131118" fg: "#EEFFFF" diff --git a/themes/spades.yaml b/themes/spades.yaml index f982c101..93d472bc 100644 --- a/themes/spades.yaml +++ b/themes/spades.yaml @@ -8,6 +8,7 @@ source: author: "redwilliams" repo: "https://github.com/Red-CS/Spades" url: "https://marketplace.visualstudio.com/items?itemName=redwilliams.spades" + formats: null colors: bg: "#23252F" fg: "#BFC7D5" diff --git a/themes/sparkle-theme.yaml b/themes/sparkle-theme.yaml deleted file mode 100644 index de4c50a0..00000000 --- a/themes/sparkle-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sparkle Theme" -source: - marketplace_id: "ManishPatil.sparkle" - version: "0.0.1" - installs: 193 - rating: 5 - ratings: 2 - author: "Manish Patil" - repo: "https://github.com/PATILMANISH/sparkle" - url: "https://marketplace.visualstudio.com/items?itemName=ManishPatil.sparkle" -colors: - bg: "#141622" - fg: "#E8DAEF" - black: "#141622" - red: "#FF5C57" - green: "#5AF78E" - yellow: "#FFBC58" - blue: "#57C7FF" - magenta: "#FF6AC1" - cyan: "#9AEDFE" - white: "#EFF0EB" - brightBlack: "#585A61" - brightRed: "#FF5C57" - brightGreen: "#5AF78E" - brightYellow: "#FFBC58" - brightBlue: "#57C7FF" - brightMagenta: "#FF6AC1" - brightCyan: "#9AEDFE" - brightWhite: "#EFF0EB" -meta: - mode: "dark" - accent: "red" - hue: 277 - pair: null - contrast: - fg: 86.1 - black: 0 - red: 44.7 - green: 84.1 - yellow: 72.7 - blue: 65.5 - magenta: 50.9 - cyan: 87.1 - white: 96.7 - brightBlack: 17.1 - brightRed: 44.7 - brightGreen: 84.1 - brightYellow: 72.7 - brightBlue: 65.5 - brightMagenta: 50.9 - brightCyan: 87.1 - brightWhite: 96.7 diff --git a/themes/speakeasy.yaml b/themes/speakeasy.yaml index d0d2a967..e615ccb1 100644 --- a/themes/speakeasy.yaml +++ b/themes/speakeasy.yaml @@ -8,6 +8,7 @@ source: author: "Mu" repo: "https://github.com/winniethemu/speakeasy" url: "https://marketplace.visualstudio.com/items?itemName=winniethemu.speakeasy" + formats: null colors: bg: "#FFFFDD" fg: "#657B83" diff --git a/themes/spearmint-contrast.yaml b/themes/spearmint-contrast.yaml deleted file mode 100644 index 751f9df8..00000000 --- a/themes/spearmint-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "spearmint-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#1A2322" - fg: "#C9DBD9" - black: "#253230" - red: "#BA0E2E" - green: "#69ADB5" - yellow: "#25808A" - blue: "#4CD7E0" - magenta: "#69ADB5" - cyan: "#199FA8" - white: "#D8E5E4" - brightBlack: "#455E5B" - brightRed: "#F03E5F" - brightGreen: "#ADD2D7" - brightYellow: "#47C0CE" - brightBlue: "#A3EAEF" - brightMagenta: "#ADD2D7" - brightCyan: "#44D9E3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 188 - pair: null - contrast: - fg: 80.1 - black: 0 - red: 19.2 - green: 49.8 - yellow: 27.5 - blue: 69.3 - magenta: 49.8 - cyan: 40.7 - white: 87 - brightBlack: 15.5 - brightRed: 35.5 - brightGreen: 72.9 - brightYellow: 57.7 - brightBlue: 84.3 - brightMagenta: 72.9 - brightCyan: 70.2 - brightWhite: 105.6 diff --git a/themes/spearmint-light.yaml b/themes/spearmint-light.yaml deleted file mode 100644 index 611bd19c..00000000 --- a/themes/spearmint-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "spearmint-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#E1F0EE" - fg: "#719692" - black: "#F2F8F8" - red: "#BA0E2E" - green: "#69ADB5" - yellow: "#25808A" - blue: "#4CD7E0" - magenta: "#69ADB5" - cyan: "#199FA8" - white: "#80A19D" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#ADD2D7" - brightYellow: "#47C0CE" - brightBlue: "#A3EAEF" - brightMagenta: "#ADD2D7" - brightCyan: "#44D9E3" - brightWhite: "#ACC1BF" -meta: - mode: "light" - accent: "orange" - hue: 187 - pair: null - contrast: - fg: 48.8 - black: 0 - red: 69.5 - green: 39 - yellow: 61 - blue: 20.3 - magenta: 39 - cyan: 47.9 - white: 43 - brightBlack: 9.8 - brightRed: 53.1 - brightGreen: 16.9 - brightYellow: 31.4 - brightBlue: 0 - brightMagenta: 16.9 - brightCyan: 19.5 - brightWhite: 25 diff --git a/themes/spearmint.yaml b/themes/spearmint.yaml deleted file mode 100644 index 77a100d7..00000000 --- a/themes/spearmint.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "spearmint" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#415654" - fg: "#C9DBD9" - black: "#4C6462" - red: "#BA0E2E" - green: "#69ADB5" - yellow: "#25808A" - blue: "#4CD7E0" - magenta: "#69ADB5" - cyan: "#199FA8" - white: "#D8E5E4" - brightBlack: "#6D908D" - brightRed: "#F03E5F" - brightGreen: "#ADD2D7" - brightYellow: "#47C0CE" - brightBlue: "#A3EAEF" - brightMagenta: "#ADD2D7" - brightCyan: "#44D9E3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 189 - pair: null - contrast: - fg: 66.4 - black: 0 - red: 0 - green: 36.2 - yellow: 13.8 - blue: 55.6 - magenta: 36.2 - cyan: 27 - white: 73.3 - brightBlack: 23.3 - brightRed: 21.8 - brightGreen: 59.3 - brightYellow: 44 - brightBlue: 70.6 - brightMagenta: 59.3 - brightCyan: 56.5 - brightWhite: 91.9 diff --git a/themes/spiderverse-2099.yaml b/themes/spiderverse-2099.yaml deleted file mode 100644 index aba16a6b..00000000 --- a/themes/spiderverse-2099.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "SpiderVerse 2099" -source: - marketplace_id: "GabrielBrown.spider-verse-theme" - version: "1.0.1" - installs: 2466 - rating: 0 - ratings: 0 - author: "Gabriel Brown" - repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" -colors: - bg: "#151D30" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 266 - pair: null - contrast: - fg: 78.7 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 29 - cyan: 46.8 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.8 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.6 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/spiderverse-miles.yaml b/themes/spiderverse-miles.yaml deleted file mode 100644 index abd41e2c..00000000 --- a/themes/spiderverse-miles.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "SpiderVerse Miles" -source: - marketplace_id: "GabrielBrown.spider-verse-theme" - version: "1.0.1" - installs: 2466 - rating: 0 - ratings: 0 - author: "Gabriel Brown" - repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" -colors: - bg: "#1A1A19" - fg: "#C7C7C7" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 71.4 - black: 0 - red: 26.4 - green: 52.7 - yellow: 85.3 - blue: 27.1 - magenta: 29.4 - cyan: 47.2 - white: 89.7 - brightBlack: 21.7 - brightRed: 38.2 - brightGreen: 63.2 - brightYellow: 95.3 - brightBlue: 39.7 - brightMagenta: 45.1 - brightCyan: 55.1 - brightWhite: 89.7 diff --git a/themes/spiderverse-spider-man.yaml b/themes/spiderverse-spider-man.yaml deleted file mode 100644 index 5deb4caf..00000000 --- a/themes/spiderverse-spider-man.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "SpiderVerse Spider-Man" -source: - marketplace_id: "GabrielBrown.spider-verse-theme" - version: "1.0.1" - installs: 2466 - rating: 0 - ratings: 0 - author: "Gabriel Brown" - repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" -colors: - bg: "#372323" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 19 - pair: null - contrast: - fg: 77 - black: 0 - red: 24.2 - green: 50.5 - yellow: 83.1 - blue: 24.9 - magenta: 27.2 - cyan: 45 - white: 87.5 - brightBlack: 19.5 - brightRed: 36 - brightGreen: 61 - brightYellow: 93.1 - brightBlue: 37.5 - brightMagenta: 42.8 - brightCyan: 52.9 - brightWhite: 87.5 diff --git a/themes/spin-theme.yaml b/themes/spin-theme.yaml index fc8735b8..42700684 100644 --- a/themes/spin-theme.yaml +++ b/themes/spin-theme.yaml @@ -8,6 +8,7 @@ source: author: "balah7" repo: null url: "https://marketplace.visualstudio.com/items?itemName=balah7.spin-theme" + formats: null colors: bg: "#251728" fg: "#DBDBDB" diff --git a/themes/spiral.yaml b/themes/spiral.yaml index 4db68919..1eeccc55 100644 --- a/themes/spiral.yaml +++ b/themes/spiral.yaml @@ -8,6 +8,7 @@ source: author: "nd2204" repo: "https://github.com/nd2204/vscode-gruvbox" url: "https://marketplace.visualstudio.com/items?itemName=nd2204.gruvbox-material-mix" + formats: null colors: bg: "#0D111A" fg: "#C8CCCD" diff --git a/themes/spirited-night.yaml b/themes/spirited-night.yaml index 6e194355..0d1c84e3 100644 --- a/themes/spirited-night.yaml +++ b/themes/spirited-night.yaml @@ -8,6 +8,9 @@ source: author: "Daniel Biedma" repo: "https://github.com/danibram/ghibli-theme" url: "https://marketplace.visualstudio.com/items?itemName=danibram.ghibli-inspired-theme" + formats: + iterm2: "https://raw.githubusercontent.com/danibram/ghibli-theme/main/terminal/ghibli-forest.itermcolors" + alacritty: "https://raw.githubusercontent.com/danibram/ghibli-theme/main/terminal/alacritty-ghibli-forest.toml" colors: bg: "#1A1420" fg: "#E8E0F0" diff --git a/themes/spitfire-contrast.yaml b/themes/spitfire-contrast.yaml deleted file mode 100644 index d741daa8..00000000 --- a/themes/spitfire-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "spitfire-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#091C19" - fg: "#BAD3D0" - black: "#0F2F2A" - red: "#BA0E2E" - green: "#F75431" - yellow: "#FACC54" - blue: "#8EC065" - magenta: "#30985B" - cyan: "#F75431" - white: "#CADDDB" - brightBlack: "#22695E" - brightRed: "#F03E5F" - brightGreen: "#FBA593" - brightYellow: "#FDEAB7" - brightBlue: "#C3DEAD" - brightMagenta: "#61CD8E" - brightCyan: "#FBA593" - brightWhite: "#F8FBFA" -meta: - mode: "dark" - accent: "orange" - hue: 182 - pair: null - contrast: - fg: 75.5 - black: 0 - red: 20.2 - green: 40.7 - yellow: 77.9 - blue: 59.4 - magenta: 36.8 - cyan: 40.7 - white: 82.3 - brightBlack: 18.8 - brightRed: 36.5 - brightGreen: 64.5 - brightYellow: 93.7 - brightBlue: 80.2 - brightMagenta: 63.3 - brightCyan: 64.5 - brightWhite: 103.5 diff --git a/themes/spitfire-light.yaml b/themes/spitfire-light.yaml deleted file mode 100644 index d2127b03..00000000 --- a/themes/spitfire-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "spitfire-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#24665E" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#F75431" - yellow: "#D6A62F" - blue: "#8EC065" - magenta: "#30985B" - cyan: "#F75431" - white: "#2B796F" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#FBA593" - brightYellow: "#E7CA84" - brightBlue: "#C3DEAD" - brightMagenta: "#61CD8E" - brightCyan: "#FBA593" - brightWhite: "#3FB1A3" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82.8 - black: 0 - red: 80.3 - green: 59.8 - yellow: 44.1 - blue: 41.6 - magenta: 63.6 - cyan: 59.8 - white: 75.3 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 36.7 - brightYellow: 26.8 - brightBlue: 21.9 - brightMagenta: 37.9 - brightCyan: 36.7 - brightWhite: 50.7 diff --git a/themes/spitfire.yaml b/themes/spitfire.yaml deleted file mode 100644 index f0c427c7..00000000 --- a/themes/spitfire.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "spitfire" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#184540" - fg: "#BAD3D0" - black: "#1F5852" - red: "#BA0E2E" - green: "#F75431" - yellow: "#FACC54" - blue: "#8EC065" - magenta: "#30985B" - cyan: "#F75431" - white: "#CADDDB" - brightBlack: "#329186" - brightRed: "#F03E5F" - brightGreen: "#FBA593" - brightYellow: "#FDEAB7" - brightBlue: "#C3DEAD" - brightMagenta: "#61CD8E" - brightCyan: "#FBA593" - brightWhite: "#F8FBFA" -meta: - mode: "dark" - accent: "orange" - hue: 185 - pair: null - contrast: - fg: 67.4 - black: 0 - red: 12.2 - green: 32.6 - yellow: 69.9 - blue: 51.3 - magenta: 28.7 - cyan: 32.6 - white: 74.2 - brightBlack: 27.1 - brightRed: 28.5 - brightGreen: 56.5 - brightYellow: 85.6 - brightBlue: 72.1 - brightMagenta: 55.2 - brightCyan: 56.5 - brightWhite: 95.4 diff --git a/themes/splash-theme.yaml b/themes/splash-theme.yaml index 0f7a3961..433dc0cc 100644 --- a/themes/splash-theme.yaml +++ b/themes/splash-theme.yaml @@ -8,6 +8,7 @@ source: author: "RLabs Inc." repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" + formats: null colors: bg: "#161116" fg: "#F7F5F7" diff --git a/themes/splus.yaml b/themes/splus.yaml index 2902e0cb..fc9af99f 100644 --- a/themes/splus.yaml +++ b/themes/splus.yaml @@ -2,12 +2,13 @@ name: "Splus" source: marketplace_id: "zrachod.splus-theme" version: "0.2.1" - installs: 6501 + installs: 6502 rating: 5 ratings: 2 author: "Rachod Petchpho" repo: "https://github.com/Zrachod/Splus" url: "https://marketplace.visualstudio.com/items?itemName=zrachod.splus-theme" + formats: null colors: bg: "#1A1C20" fg: "#EEEEEE" diff --git a/themes/spotly-dark.yaml b/themes/spotly-dark.yaml index c229e531..5337c8e2 100644 --- a/themes/spotly-dark.yaml +++ b/themes/spotly-dark.yaml @@ -8,6 +8,7 @@ source: author: "Maksym Bukator" repo: "https://github.com/Spotly-Tech/spotly-theme" url: "https://marketplace.visualstudio.com/items?itemName=MaksymBukator.spotly" + formats: null colors: bg: "#161316" fg: "#D8DBE7" diff --git a/themes/spotly-light.yaml b/themes/spotly-light.yaml index 6e659163..d654347d 100644 --- a/themes/spotly-light.yaml +++ b/themes/spotly-light.yaml @@ -8,6 +8,7 @@ source: author: "Maksym Bukator" repo: "https://github.com/Spotly-Tech/spotly-theme" url: "https://marketplace.visualstudio.com/items?itemName=MaksymBukator.spotly" + formats: null colors: bg: "#FFFCF5" fg: "#161316" diff --git a/themes/spring-breeze-theme.yaml b/themes/spring-breeze-theme.yaml index 72e23982..448e1e51 100644 --- a/themes/spring-breeze-theme.yaml +++ b/themes/spring-breeze-theme.yaml @@ -8,6 +8,7 @@ source: author: "Naihe" repo: "https://github.com/naiheyoung/spring-breeze-theme" url: "https://marketplace.visualstudio.com/items?itemName=naihe.spring-breeze-theme" + formats: null colors: bg: "#121212" fg: "#888888" diff --git a/themes/spring.yaml b/themes/spring.yaml index 909e7b14..66bf78ed 100644 --- a/themes/spring.yaml +++ b/themes/spring.yaml @@ -8,6 +8,7 @@ source: author: "malinatrash" repo: "https://github.com/malinatrash/summer-fresh-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=malinatrash.summer-fresh" + formats: null colors: bg: "#1E1E1E" fg: "#D6E2DC" diff --git a/themes/sprinkles-color-theme.yaml b/themes/sprinkles-color-theme.yaml index e0d65471..a20012a7 100644 --- a/themes/sprinkles-color-theme.yaml +++ b/themes/sprinkles-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Sage Fennel" repo: "https://github.com/wavebeem/vscode-theme-unoduetre" url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" + formats: null colors: bg: "#3A1F47" fg: "#ECD1FA" diff --git a/themes/spurlys-theme.yaml b/themes/spurlys-theme.yaml index ef294824..2bdd0ea7 100644 --- a/themes/spurlys-theme.yaml +++ b/themes/spurlys-theme.yaml @@ -8,6 +8,7 @@ source: author: "Bhuvanesh Prasad" repo: "https://github.com/bhuvaneshprasad/spurlys-theme" url: "https://marketplace.visualstudio.com/items?itemName=therealbhuvi.spurlys-theme" + formats: null colors: bg: "#010D18" fg: "#FFFFFF" diff --git a/themes/spyder-theme-light.yaml b/themes/spyder-theme-light.yaml deleted file mode 100644 index 62a77eaa..00000000 --- a/themes/spyder-theme-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "spyder-theme-light" -source: - marketplace_id: "HilsianCapital.spyder-theme" - version: "0.0.3" - installs: 6902 - rating: 5 - ratings: 2 - author: "HilsianCapital" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HilsianCapital.spyder-theme" -colors: - bg: "#FDFDDF" - fg: "#3C3836" - black: "#EBDBB2" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#7C6F64" - brightBlack: "#928374" - brightRed: "#9D0006" - brightGreen: "#79740E" - brightYellow: "#B57614" - brightBlue: "#076678" - brightMagenta: "#8F3F71" - brightCyan: "#427B58" - brightWhite: "#3C3836" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.3 - black: 15.8 - red: 73.1 - green: 55.4 - yellow: 46.1 - blue: 66.7 - magenta: 66.6 - cyan: 56.4 - white: 71.4 - brightBlack: 61.9 - brightRed: 84.6 - brightGreen: 71.2 - brightYellow: 62.6 - brightBlue: 79.8 - brightMagenta: 80.3 - brightCyan: 72 - brightWhite: 94.3 diff --git a/themes/sql-dark-pro-high-contrast.yaml b/themes/sql-dark-pro-high-contrast.yaml index 80ca21c1..43426a66 100644 --- a/themes/sql-dark-pro-high-contrast.yaml +++ b/themes/sql-dark-pro-high-contrast.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ameerQ.selectstar-theme" version: "1.2.2" installs: 40 + rating: 0 + ratings: 0 author: "ameerQ" repo: "https://github.com/Ameer08/selectstar-sql-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ameerQ.selectstar-theme" + formats: null colors: bg: "#1A1B26" fg: "#C0CAF5" diff --git a/themes/squash-theme.yaml b/themes/squash-theme.yaml index 89f53751..97ab5247 100644 --- a/themes/squash-theme.yaml +++ b/themes/squash-theme.yaml @@ -8,6 +8,7 @@ source: author: "Henri Lima" repo: null url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.a-cup-of-coffee" + formats: null colors: bg: "#1B1B1B" fg: "#BEBEBE" diff --git a/themes/squeak.yaml b/themes/squeak.yaml index dea04a6c..f5152fba 100644 --- a/themes/squeak.yaml +++ b/themes/squeak.yaml @@ -8,6 +8,7 @@ source: author: "LinqLover" repo: "https://github.com/LinqLover/vscode-squeak-theme" url: "https://marketplace.visualstudio.com/items?itemName=LinqLover.squeak-theme" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/srcery-gagbo.yaml b/themes/srcery-gagbo.yaml deleted file mode 100644 index c6cc9f0b..00000000 --- a/themes/srcery-gagbo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Srcery-gagbo" -source: - marketplace_id: "gagbo.srcery" - version: "0.2.0" - installs: 1726 - rating: 5 - ratings: 1 - author: "gagbo" - repo: "https://github.com/gagbo/vscode-srcery" - url: "https://marketplace.visualstudio.com/items?itemName=gagbo.srcery" -colors: - bg: "#1C1B19" - fg: "#FCE8C3" - black: "#1C1B19" - red: "#EF2F27" - green: "#519F50" - yellow: "#FBB829" - blue: "#2C78BF" - magenta: "#E02C6D" - cyan: "#0AAEB3" - white: "#918175" - brightBlack: "#2D2C29" - brightRed: "#F75341" - brightGreen: "#98BC37" - brightYellow: "#FED06E" - brightBlue: "#68A8E4" - brightMagenta: "#FF5C8F" - brightCyan: "#53FDE9" - brightWhite: "#FCE8C3" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.8 - black: 0 - red: 33.8 - green: 40.5 - yellow: 69.5 - blue: 28.5 - magenta: 31.2 - cyan: 48.3 - white: 35.1 - brightBlack: 0 - brightRed: 40.5 - brightGreen: 57.7 - brightYellow: 80.4 - brightBlue: 51.1 - brightMagenta: 45.6 - brightCyan: 89.7 - brightWhite: 92.8 diff --git a/themes/srcery.yaml b/themes/srcery.yaml index de684163..efa62477 100644 --- a/themes/srcery.yaml +++ b/themes/srcery.yaml @@ -1,13 +1,14 @@ name: "Srcery" source: - marketplace_id: "srcery-colors.srcery-colors" - version: "0.3.8" - installs: 7371 + marketplace_id: "gagbo.srcery" + version: "0.2.0" + installs: 1726 rating: 5 - ratings: 2 - author: "srcery-colors" - repo: "https://github.com/srcery-colors/srcery-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=srcery-colors.srcery-colors" + ratings: 1 + author: "gagbo" + repo: "https://github.com/gagbo/vscode-srcery" + url: "https://marketplace.visualstudio.com/items?itemName=gagbo.srcery" + formats: null colors: bg: "#1C1B19" fg: "#FCE8C3" @@ -18,8 +19,8 @@ colors: blue: "#2C78BF" magenta: "#E02C6D" cyan: "#0AAEB3" - white: "#D0BFA1" - brightBlack: "#918175" + white: "#918175" + brightBlack: "#2D2C29" brightRed: "#F75341" brightGreen: "#98BC37" brightYellow: "#FED06E" @@ -41,8 +42,8 @@ meta: blue: 28.5 magenta: 31.2 cyan: 48.3 - white: 67.7 - brightBlack: 35.1 + white: 35.1 + brightBlack: 0 brightRed: 40.5 brightGreen: 57.7 brightYellow: 80.4 diff --git a/themes/st-borg.yaml b/themes/st-borg.yaml deleted file mode 100644 index 2366f3f2..00000000 --- a/themes/st-borg.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ST: Borg" -source: - marketplace_id: "RobertSchnable.star-trek-factions-theme" - version: "1.0.7" - installs: 22 - rating: 0 - ratings: 0 - author: "Robert Schnable" - repo: "https://github.com/your-username/star-trek-factions-theme" - url: "https://marketplace.visualstudio.com/items?itemName=RobertSchnable.star-trek-factions-theme" -colors: - bg: "#060806" - fg: "#88C880" - black: "#060806" - red: "#CC4433" - green: "#00CC44" - yellow: "#88AA20" - blue: "#2080A0" - magenta: "#4A8040" - cyan: "#20C880" - white: "#88C880" - brightBlack: "#060806" - brightRed: "#CC4433" - brightGreen: "#00FF44" - brightYellow: "#88AA20" - brightBlue: "#2080A0" - brightMagenta: "#4A8040" - brightCyan: "#20C880" - brightWhite: "#88C880" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 64.3 - black: 0 - red: 29.8 - green: 60.5 - yellow: 49.8 - blue: 30.7 - magenta: 29 - cyan: 59.8 - white: 64.3 - brightBlack: 0 - brightRed: 29.8 - brightGreen: 86.7 - brightYellow: 49.8 - brightBlue: 30.7 - brightMagenta: 29 - brightCyan: 59.8 - brightWhite: 64.3 diff --git a/themes/st-lcars.yaml b/themes/st-lcars.yaml deleted file mode 100644 index 116698f1..00000000 --- a/themes/st-lcars.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ST: LCARS" -source: - marketplace_id: "RobertSchnable.star-trek-factions-theme" - version: "1.0.7" - installs: 22 - rating: 0 - ratings: 0 - author: "Robert Schnable" - repo: "https://github.com/your-username/star-trek-factions-theme" - url: "https://marketplace.visualstudio.com/items?itemName=RobertSchnable.star-trek-factions-theme" -colors: - bg: "#141414" - fg: "#FFCC55" - black: "#141414" - red: "#DD5566" - green: "#77BBAA" - yellow: "#FFB300" - blue: "#AA99DD" - magenta: "#DD6688" - cyan: "#FFDD88" - white: "#FFCC99" - brightBlack: "#555555" - brightRed: "#DD5566" - brightGreen: "#77BBAA" - brightYellow: "#FFDD00" - brightBlue: "#AA99DD" - brightMagenta: "#FF55BB" - brightCyan: "#FFDD88" - brightWhite: "#FFEECC" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 79.3 - black: 0 - red: 36.5 - green: 57.9 - yellow: 69 - blue: 51.7 - magenta: 40.9 - cyan: 87.4 - white: 80.6 - brightBlack: 15.4 - brightRed: 36.5 - brightGreen: 57.9 - brightYellow: 86.1 - brightBlue: 51.7 - brightMagenta: 47 - brightCyan: 87.4 - brightWhite: 97 diff --git a/themes/stackmeister.yaml b/themes/stackmeister.yaml deleted file mode 100644 index e962f90f..00000000 --- a/themes/stackmeister.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Stackmeister" -source: - marketplace_id: "stackmeister.stackmeister-theme" - version: "0.0.4" - installs: 78 - rating: 5 - ratings: 1 - author: "Stackmeister GmbH" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=stackmeister.stackmeister-theme" -colors: - bg: "#131038" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 281 - pair: null - contrast: - fg: 79.4 - black: 0 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.7 - cyan: 47.5 - white: 90 - brightBlack: 22 - brightRed: 38.5 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 39.9 - brightMagenta: 45.3 - brightCyan: 55.3 - brightWhite: 90 diff --git a/themes/stained-glass-dark.yaml b/themes/stained-glass-dark.yaml index 97959b50..fd11523a 100644 --- a/themes/stained-glass-dark.yaml +++ b/themes/stained-glass-dark.yaml @@ -8,6 +8,7 @@ source: author: "natecrow" repo: "https://github.com/natecrow/stained-glass-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=natecrow.stained-glass-theme" + formats: null colors: bg: "#111111" fg: "#C0B7B1" diff --git a/themes/stannum.yaml b/themes/stannum.yaml index ccf2ee0b..b2bb9dfc 100644 --- a/themes/stannum.yaml +++ b/themes/stannum.yaml @@ -8,6 +8,7 @@ source: author: "Tin Lam" repo: "https://github.com/stannum-l/vscode-stannum-theme" url: "https://marketplace.visualstudio.com/items?itemName=stannum.stannum" + formats: null colors: bg: "#0C0C0C" fg: "#D6D6DD" diff --git a/themes/star-night-luna.yaml b/themes/star-night-luna.yaml index 421a0394..38875a20 100644 --- a/themes/star-night-luna.yaml +++ b/themes/star-night-luna.yaml @@ -8,6 +8,7 @@ source: author: "Victor Barreto" repo: "https://github.com/barretov/star-night" url: "https://marketplace.visualstudio.com/items?itemName=victoreduardobarreto.star-night" + formats: null colors: bg: "#FFFFFF" fg: "#777777" diff --git a/themes/star-night.yaml b/themes/star-night.yaml index e153d66a..1e22f342 100644 --- a/themes/star-night.yaml +++ b/themes/star-night.yaml @@ -8,6 +8,7 @@ source: author: "Victor Barreto" repo: "https://github.com/barretov/star-night" url: "https://marketplace.visualstudio.com/items?itemName=victoreduardobarreto.star-night" + formats: null colors: bg: "#2F2F35" fg: "#A2A2A3" diff --git a/themes/star-wars-dark-side-theme-global.yaml b/themes/star-wars-dark-side-theme-global.yaml index 1e086851..8c3d65a0 100644 --- a/themes/star-wars-dark-side-theme-global.yaml +++ b/themes/star-wars-dark-side-theme-global.yaml @@ -8,6 +8,7 @@ source: author: "Murat Alpaslan" repo: "https://github.com/muratalpaslan/spacewars" url: "https://marketplace.visualstudio.com/items?itemName=MuratAlpaslan.spacewars-theme" + formats: null colors: bg: "#1A1A2E" fg: "#F8F8FF" diff --git a/themes/starboy-theme.yaml b/themes/starboy-theme.yaml index 0efbde34..9eac0178 100644 --- a/themes/starboy-theme.yaml +++ b/themes/starboy-theme.yaml @@ -8,6 +8,7 @@ source: author: "badrouu-laabed" repo: "https://github.com/Badrouu17/starboy-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=badrouu-laabed.starboy-theme" + formats: null colors: bg: "#26283B" fg: "#C8D3F5" diff --git a/themes/starburst-dark.yaml b/themes/starburst-dark.yaml index f9de56ad..6f3f789c 100644 --- a/themes/starburst-dark.yaml +++ b/themes/starburst-dark.yaml @@ -8,6 +8,7 @@ source: author: "Pavel Sanchez" repo: "https://github.com/PaleBluDot/starburst-theme" url: "https://marketplace.visualstudio.com/items?itemName=psanchez.starburst-theme" + formats: null colors: bg: "#0D0D0D" fg: "#E6E6E6" diff --git a/themes/starfield.yaml b/themes/starfield.yaml index 225c2094..ef610af3 100644 --- a/themes/starfield.yaml +++ b/themes/starfield.yaml @@ -8,6 +8,7 @@ source: author: "steffenboe" repo: "https://github.com/steffenb91/starfield-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=steffenboe.starfield-color-theme" + formats: null colors: bg: "#253646" fg: "#D4D4D4" diff --git a/themes/stark-contrast.yaml b/themes/stark-contrast.yaml deleted file mode 100644 index 8517195f..00000000 --- a/themes/stark-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "stark-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0B0A0A" - fg: "#DEDEDE" - black: "#181616" - red: "#BA0E2E" - green: "#FFBB29" - yellow: "#F03113" - blue: "#F03113" - magenta: "#AAAAAA" - cyan: "#FFBB29" - white: "#EBEBEB" - brightBlack: "#403B3B" - brightRed: "#F03E5F" - brightGreen: "#FFDB8F" - brightYellow: "#F68573" - brightBlue: "#F68573" - brightMagenta: "#DDDDDD" - brightCyan: "#FFDB8F" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 86.5 - black: 0 - red: 21.3 - green: 72.7 - yellow: 35.5 - blue: 35.5 - magenta: 56.1 - cyan: 72.7 - white: 94.7 - brightBlack: 0 - brightRed: 37.6 - brightGreen: 87.3 - brightYellow: 53.8 - brightBlue: 53.8 - brightMagenta: 85.9 - brightCyan: 87.3 - brightWhite: 107.7 diff --git a/themes/stark-dark.yaml b/themes/stark-dark.yaml index 2c2582da..f02c3bc2 100644 --- a/themes/stark-dark.yaml +++ b/themes/stark-dark.yaml @@ -8,6 +8,7 @@ source: author: "MTCC" repo: "https://github.com/minhtrungcc/stark-theme" url: "https://marketplace.visualstudio.com/items?itemName=MTCC.stark-theme" + formats: null colors: bg: "#22201C" fg: "#E8E4DF" diff --git a/themes/stark-light.yaml b/themes/stark-light.yaml deleted file mode 100644 index 16ac6df8..00000000 --- a/themes/stark-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "stark-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#333333" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#FFBB29" - yellow: "#F03113" - blue: "#F03113" - magenta: "#666666" - cyan: "#FFBB29" - white: "#404040" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#FFDB8F" - brightYellow: "#F68573" - brightBlue: "#F68573" - brightMagenta: "#999999" - brightCyan: "#FFDB8F" - brightWhite: "#666666" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.7 - black: 0 - red: 80.3 - green: 29.9 - yellow: 66.1 - blue: 66.1 - magenta: 78.8 - cyan: 29.9 - white: 94.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 16.2 - brightYellow: 48.1 - brightBlue: 48.1 - brightMagenta: 54.6 - brightCyan: 16.2 - brightWhite: 78.8 diff --git a/themes/stark.yaml b/themes/stark.yaml deleted file mode 100644 index 4bda3afe..00000000 --- a/themes/stark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "stark" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2E2C2B" - fg: "#DEDEDE" - black: "#3B3937" - red: "#BA0E2E" - green: "#FFBB29" - yellow: "#F03113" - blue: "#F03113" - magenta: "#AAAAAA" - cyan: "#FFBB29" - white: "#EBEBEB" - brightBlack: "#635E5C" - brightRed: "#F03E5F" - brightGreen: "#FFDB8F" - brightYellow: "#F68573" - brightBlue: "#F68573" - brightMagenta: "#DDDDDD" - brightCyan: "#FFDB8F" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82.3 - black: 0 - red: 17.2 - green: 68.6 - yellow: 31.3 - blue: 31.3 - magenta: 51.9 - cyan: 68.6 - white: 90.5 - brightBlack: 15.8 - brightRed: 33.5 - brightGreen: 83.1 - brightYellow: 49.6 - brightBlue: 49.6 - brightMagenta: 81.7 - brightCyan: 83.1 - brightWhite: 103.6 diff --git a/themes/starlight-daybreak.yaml b/themes/starlight-daybreak.yaml index 986a465f..b8a53662 100644 --- a/themes/starlight-daybreak.yaml +++ b/themes/starlight-daybreak.yaml @@ -8,6 +8,7 @@ source: author: "Russell Oje" repo: "https://github.com/ruxy1212/starlight-theme" url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" + formats: null colors: bg: "#FFF5E6" fg: "#4A3B2F" diff --git a/themes/starlight-light.yaml b/themes/starlight-light.yaml index b3f00da6..f58864bd 100644 --- a/themes/starlight-light.yaml +++ b/themes/starlight-light.yaml @@ -8,6 +8,7 @@ source: author: "Russell Oje" repo: "https://github.com/ruxy1212/starlight-theme" url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" + formats: null colors: bg: "#F5F7FA" fg: "#333333" diff --git a/themes/starlight-midnight.yaml b/themes/starlight-midnight.yaml index 539899f3..244d1dde 100644 --- a/themes/starlight-midnight.yaml +++ b/themes/starlight-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Russell Oje" repo: "https://github.com/ruxy1212/starlight-theme" url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" + formats: null colors: bg: "#1E272C" fg: "#D8DEE9" diff --git a/themes/starlight-obsidian.yaml b/themes/starlight-obsidian.yaml index d90ed65c..58559257 100644 --- a/themes/starlight-obsidian.yaml +++ b/themes/starlight-obsidian.yaml @@ -8,6 +8,7 @@ source: author: "Russell Oje" repo: "https://github.com/ruxy1212/starlight-theme" url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" + formats: null colors: bg: "#282C34" fg: "#E0E0E0" diff --git a/themes/starlight-soft-glow.yaml b/themes/starlight-soft-glow.yaml index db3f644f..37e9c551 100644 --- a/themes/starlight-soft-glow.yaml +++ b/themes/starlight-soft-glow.yaml @@ -8,6 +8,7 @@ source: author: "Russell Oje" repo: "https://github.com/ruxy1212/starlight-theme" url: "https://marketplace.visualstudio.com/items?itemName=RussellOje.ruxy1212-starlight-theme" + formats: null colors: bg: "#F0F4F8" fg: "#2F3640" diff --git a/themes/starlight.yaml b/themes/starlight.yaml index 09e95487..8eee8bbd 100644 --- a/themes/starlight.yaml +++ b/themes/starlight.yaml @@ -1,4 +1,4 @@ -name: "Starlight" +name: "StarLight" source: marketplace_id: "D3W10.starlight" version: "0.1.4" @@ -8,6 +8,7 @@ source: author: "D3W10" repo: "https://github.com/D3W10/StarLight" url: "https://marketplace.visualstudio.com/items?itemName=D3W10.starlight" + formats: null colors: bg: "#170A1F" fg: "#E5E5EA" diff --git a/themes/starry-night.yaml b/themes/starry-night.yaml index 2925584a..09d3bf32 100644 --- a/themes/starry-night.yaml +++ b/themes/starry-night.yaml @@ -8,6 +8,7 @@ source: author: "xynny" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xynny.starry-night" + formats: null colors: bg: "#191A28" fg: "#BB82FF" diff --git a/themes/starry-pillar.yaml b/themes/starry-pillar.yaml index 71d08937..5713ea36 100644 --- a/themes/starry-pillar.yaml +++ b/themes/starry-pillar.yaml @@ -8,6 +8,7 @@ source: author: "Toprak Ekin Yüksel" repo: "https://github.com/ekinyuksel12/stary-pillar-theme" url: "https://marketplace.visualstudio.com/items?itemName=ekinyuksel12.stary-pillar-theme" + formats: null colors: bg: "#101419" fg: "#D4D4D4" diff --git a/themes/startlite.yaml b/themes/startlite.yaml index 251bd640..856ca48d 100644 --- a/themes/startlite.yaml +++ b/themes/startlite.yaml @@ -8,6 +8,7 @@ source: author: "Yummygum" repo: "https://github.com/Yummygum/Starlite" url: "https://marketplace.visualstudio.com/items?itemName=Yummygum.starlite" + formats: null colors: bg: "#0F1819" fg: "#92A7C4" diff --git a/themes/startrail.yaml b/themes/startrail.yaml index b61c80f4..e59c2feb 100644 --- a/themes/startrail.yaml +++ b/themes/startrail.yaml @@ -8,6 +8,7 @@ source: author: "Gabriel Moreno" repo: "https://github.com/gantoreno/vscode-startrail" url: "https://marketplace.visualstudio.com/items?itemName=gantoreno.startrail" + formats: null colors: bg: "#121419" fg: "#B5B4C9" diff --git a/themes/stasis-contrast.yaml b/themes/stasis-contrast.yaml deleted file mode 100644 index ada0acb7..00000000 --- a/themes/stasis-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "stasis-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0E0D0F" - fg: "#BBB1C9" - black: "#1B191D" - red: "#BA0E2E" - green: "#FC814A" - yellow: "#7C617C" - blue: "#BFBFBF" - magenta: "#FC814A" - cyan: "#BFBFBF" - white: "#C8C0D3" - brightBlack: "#413C46" - brightRed: "#F03E5F" - brightGreen: "#FEC7AE" - brightYellow: "#AD96AD" - brightBlue: "#F2F2F2" - brightMagenta: "#FEC7AE" - brightCyan: "#F2F2F2" - brightWhite: "#F0EDF3" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 62.1 - black: 0 - red: 21.2 - green: 53 - yellow: 24.3 - blue: 67.8 - magenta: 53 - cyan: 67.8 - white: 70.2 - brightBlack: 7.5 - brightRed: 37.5 - brightGreen: 79.5 - brightYellow: 49 - brightBlue: 99.1 - brightMagenta: 79.5 - brightCyan: 99.1 - brightWhite: 96.5 diff --git a/themes/stasis-light.yaml b/themes/stasis-light.yaml deleted file mode 100644 index f7613cdb..00000000 --- a/themes/stasis-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "stasis-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#605A68" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#FC814A" - yellow: "#7C617C" - blue: "#777777" - magenta: "#FC814A" - cyan: "#777777" - white: "#6D6676" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#FEC7AE" - brightYellow: "#AD96AD" - brightBlue: "#AAAAAA" - brightMagenta: "#FEC7AE" - brightCyan: "#AAAAAA" - brightWhite: "#938C9C" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82.9 - black: 0 - red: 80.3 - green: 48.7 - yellow: 77.1 - blue: 71.1 - magenta: 48.7 - cyan: 71.1 - white: 77.5 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 23.4 - brightYellow: 52.6 - brightBlue: 45.8 - brightMagenta: 23.4 - brightCyan: 45.8 - brightWhite: 59.8 diff --git a/themes/stasis.yaml b/themes/stasis.yaml deleted file mode 100644 index 097e5ca5..00000000 --- a/themes/stasis.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "stasis" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2F2C33" - fg: "#BBB1C9" - black: "#3C3841" - red: "#BA0E2E" - green: "#FC814A" - yellow: "#7C617C" - blue: "#BFBFBF" - magenta: "#FC814A" - cyan: "#BFBFBF" - white: "#C8C0D3" - brightBlack: "#615B6A" - brightRed: "#F03E5F" - brightGreen: "#FEC7AE" - brightYellow: "#AD96AD" - brightBlue: "#F2F2F2" - brightMagenta: "#FEC7AE" - brightCyan: "#F2F2F2" - brightWhite: "#F0EDF3" -meta: - mode: "dark" - accent: "orange" - hue: 305 - pair: null - contrast: - fg: 57.9 - black: 0 - red: 17 - green: 48.8 - yellow: 20.1 - blue: 63.5 - magenta: 48.8 - cyan: 63.5 - white: 66 - brightBlack: 15 - brightRed: 33.3 - brightGreen: 75.3 - brightYellow: 44.8 - brightBlue: 94.8 - brightMagenta: 75.3 - brightCyan: 94.8 - brightWhite: 92.3 diff --git a/themes/stealth-contrast.yaml b/themes/stealth-contrast.yaml deleted file mode 100644 index a6c4a220..00000000 --- a/themes/stealth-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "stealth-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0D0E0F" - fg: "#5F656D" - black: "#191B1D" - red: "#BA0E2E" - green: "#3C4044" - yellow: "#474C51" - blue: "#545A60" - magenta: "#474C51" - cyan: "#3C4044" - white: "#6B727B" - brightBlack: "#3C4146" - brightRed: "#F03E5F" - brightGreen: "#6C737A" - brightYellow: "#777F87" - brightBlue: "#858D95" - brightMagenta: "#777F87" - brightCyan: "#6C737A" - brightWhite: "#9298A0" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 22 - black: 0 - red: 21.2 - green: 8 - yellow: 12.2 - blue: 17.5 - magenta: 12.2 - cyan: 8 - white: 27.6 - brightBlack: 8.3 - brightRed: 37.5 - brightGreen: 28 - brightYellow: 33.5 - brightBlue: 40.3 - brightMagenta: 33.5 - brightCyan: 28 - brightWhite: 46 diff --git a/themes/stealth-light.yaml b/themes/stealth-light.yaml deleted file mode 100644 index db46df7b..00000000 --- a/themes/stealth-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "stealth-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#CCCCCC" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#BBBBBB" - yellow: "#DDDDDD" - blue: "#AAAAAA" - magenta: "#EEEEEE" - cyan: "#BBBBBB" - white: "#D9D9D9" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#EEEEEE" - brightYellow: "#FFFFFF" - brightBlue: "#DDDDDD" - brightMagenta: "#FFFFFF" - brightCyan: "#EEEEEE" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 27.3 - black: 0 - red: 80.3 - green: 36.7 - yellow: 17.6 - blue: 45.8 - magenta: 7.6 - cyan: 36.7 - white: 19.9 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 7.6 - brightYellow: 0 - brightBlue: 17.6 - brightMagenta: 0 - brightCyan: 7.6 - brightWhite: 0 diff --git a/themes/stealth.yaml b/themes/stealth.yaml index 04440b80..bf68bebc 100644 --- a/themes/stealth.yaml +++ b/themes/stealth.yaml @@ -8,6 +8,7 @@ source: author: "Ajesh Mishra" repo: "https://github.com/ajesh-mishra/stealth" url: "https://marketplace.visualstudio.com/items?itemName=ajesh-mishra.stealth" + formats: null colors: bg: "#11100F" fg: "#D4D4D4" diff --git a/themes/steel-blue-dark.yaml b/themes/steel-blue-dark.yaml index 20d65e0a..700d1891 100644 --- a/themes/steel-blue-dark.yaml +++ b/themes/steel-blue-dark.yaml @@ -8,6 +8,7 @@ source: author: "rmsyntax" repo: "https://github.com/ROMANSYNTAX32/low-blue-code" url: "https://marketplace.visualstudio.com/items?itemName=rmsyntax.blue-code" + formats: null colors: bg: "#24242A" fg: "#727282" diff --git a/themes/steel-phantom.yaml b/themes/steel-phantom.yaml index e52bb5af..773ee4b9 100644 --- a/themes/steel-phantom.yaml +++ b/themes/steel-phantom.yaml @@ -8,6 +8,7 @@ source: author: "David Mass" repo: "https://github.com/davidcmass/steel-phantom-vscode" url: "https://marketplace.visualstudio.com/items?itemName=DavidMass.steel-phantom" + formats: null colors: bg: "#333338" fg: "#FFFFFF" diff --git a/themes/steelbore.yaml b/themes/steelbore.yaml index 674f17c6..4c5751b3 100644 --- a/themes/steelbore.yaml +++ b/themes/steelbore.yaml @@ -8,6 +8,15 @@ source: author: "SteelBore" repo: "https://github.com/UnbreakableMJ/Steelbore" url: "https://marketplace.visualstudio.com/items?itemName=SteelBore.steelbore" + formats: + ghostty: "https://raw.githubusercontent.com/UnbreakableMJ/Steelbore/main/Theme/Terminals/Ghostty/INSTALL.md" + iterm2: "https://raw.githubusercontent.com/UnbreakableMJ/Steelbore/main/Theme/Terminals/iTerm2/Steelbore.itermcolors" + alacritty: "https://raw.githubusercontent.com/UnbreakableMJ/Steelbore/main/Theme/Terminals/Alacritty/steelbore.toml" + kitty: "https://raw.githubusercontent.com/UnbreakableMJ/Steelbore/main/Theme/Terminals/Kitty/steelbore.conf" + windows-terminal: "https://raw.githubusercontent.com/UnbreakableMJ/Steelbore/main/Theme/Terminals/Windows_Terminal/settings.json" + warp: "https://raw.githubusercontent.com/UnbreakableMJ/Steelbore/main/Theme/Terminals/Warp/steelbore.yaml" + android-studio: "https://raw.githubusercontent.com/UnbreakableMJ/Steelbore/main/Theme/Editors/JetBrains/Steelbore.icls" + zed: "https://raw.githubusercontent.com/UnbreakableMJ/Steelbore/main/Theme/Editors/Zed/steelbore.json" colors: bg: "#000027" fg: "#D98E32" diff --git a/themes/steffula.yaml b/themes/steffula.yaml index 1095c5d9..e43316c3 100644 --- a/themes/steffula.yaml +++ b/themes/steffula.yaml @@ -8,6 +8,7 @@ source: author: "Stefano Pigozzi" repo: "https://forge.steffo.eu/steffo/steffula-code" url: "https://marketplace.visualstudio.com/items?itemName=steffo.steffula-code" + formats: null colors: bg: "#2B2B2B" fg: "#A9B7C6" diff --git a/themes/stella-high-contrast.yaml b/themes/stella-high-contrast.yaml index 3a8d0791..9c96a9da 100644 --- a/themes/stella-high-contrast.yaml +++ b/themes/stella-high-contrast.yaml @@ -8,6 +8,7 @@ source: author: "4S1ght" repo: "https://github.com/4S1ght/Stella" url: "https://marketplace.visualstudio.com/items?itemName=4S1ght.stella" + formats: null colors: bg: "#18171A" fg: "#A09891" diff --git a/themes/stella-theme.yaml b/themes/stella-theme.yaml index a3a03492..6135494e 100644 --- a/themes/stella-theme.yaml +++ b/themes/stella-theme.yaml @@ -8,6 +8,7 @@ source: author: "ShapeMess" repo: "https://github.com/ShapeMess/Stella-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ShapeMess.stella-theme" + formats: null colors: bg: "#252527" fg: "#BEBEBE" diff --git a/themes/stella.yaml b/themes/stella.yaml index a1b935b6..8fd5aef8 100644 --- a/themes/stella.yaml +++ b/themes/stella.yaml @@ -8,6 +8,7 @@ source: author: "4S1ght" repo: "https://github.com/4S1ght/Stella" url: "https://marketplace.visualstudio.com/items?itemName=4S1ght.stella" + formats: null colors: bg: "#222124" fg: "#A09891" diff --git a/themes/stellar-void.yaml b/themes/stellar-void.yaml index 629ea3b2..79c1fad3 100644 --- a/themes/stellar-void.yaml +++ b/themes/stellar-void.yaml @@ -2,12 +2,13 @@ name: "Stellar Void" source: marketplace_id: "ryno9341.stellar-void" version: "0.1.0" - installs: 41 + installs: 42 rating: 0 ratings: 0 author: "Ryno9341" repo: "https://github.com/ryno9341/stellar-void" url: "https://marketplace.visualstudio.com/items?itemName=ryno9341.stellar-void" + formats: null colors: bg: "#10101A" fg: "#FFFFFF" diff --git a/themes/stellar.yaml b/themes/stellar.yaml deleted file mode 100644 index e9d45d66..00000000 --- a/themes/stellar.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Stellar" -source: - marketplace_id: "PuneshBorkar.stellar-galaxy" - version: "1.3.0" - installs: 298 - rating: 0 - ratings: 0 - author: "Punesh Borkar" - repo: "https://github.com/punesh12/stellar-galaxy" - url: "https://marketplace.visualstudio.com/items?itemName=PuneshBorkar.stellar-galaxy" -colors: - bg: "#000F1C" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 241 - pair: null - contrast: - fg: 80.1 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28 - magenta: 30.4 - cyan: 48.2 - white: 90.6 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/stereo-theme.yaml b/themes/stereo-theme.yaml index a7b1c4e3..449391f7 100644 --- a/themes/stereo-theme.yaml +++ b/themes/stereo-theme.yaml @@ -8,6 +8,7 @@ source: author: "FasterMars" repo: "https://github.com/FasterMars/Stereo-Theme-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=FasterMars.fastermars-stereo-theme" + formats: null colors: bg: "#271D43" fg: "#ECDEDE" diff --git a/themes/stilla.yaml b/themes/stilla.yaml index bad3dc55..a9a3263e 100644 --- a/themes/stilla.yaml +++ b/themes/stilla.yaml @@ -8,6 +8,7 @@ source: author: "jakeisnt" repo: "https://github.com/jakeisnt/stilla-visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=jakeisnt.stilla" + formats: null colors: bg: "#0D0D0D" fg: "#F2F2F2" diff --git a/themes/sto-classic.yaml b/themes/sto-classic.yaml deleted file mode 100644 index 543a9362..00000000 --- a/themes/sto-classic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sto Classic" -source: - marketplace_id: "NSMNIA.sto-theme" - version: "2.0.1" - installs: 368 - rating: 5 - ratings: 1 - author: "NSMNIA" - repo: "https://github.com/NSMNIA/sto-theme" - url: "https://marketplace.visualstudio.com/items?itemName=NSMNIA.sto-theme" -colors: - bg: "#000000" - fg: "#ECF9FF" - black: "#000000" - red: "#CB2D25" - green: "#4AD962" - yellow: "#14A3FF" - blue: "#0088FF" - magenta: "#FB94FF" - cyan: "#80FCFF" - white: "#FFFFFF" - brightBlack: "#0050A4" - brightRed: "#CB2D25" - brightGreen: "#4AD962" - brightYellow: "#14A3FF" - brightBlue: "#0088FF" - brightMagenta: "#FB94FF" - brightCyan: "#80FCFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 102.4 - black: 0 - red: 26.8 - green: 68.4 - yellow: 49.8 - blue: 39.8 - magenta: 65.3 - cyan: 93.8 - white: 107.9 - brightBlack: 15.7 - brightRed: 26.8 - brightGreen: 68.4 - brightYellow: 49.8 - brightBlue: 39.8 - brightMagenta: 65.3 - brightCyan: 93.8 - brightWhite: 107.9 diff --git a/themes/sto-green-dark.yaml b/themes/sto-green-dark.yaml deleted file mode 100644 index 3bb4d893..00000000 --- a/themes/sto-green-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sto Green Dark" -source: - marketplace_id: "NSMNIA.sto-theme" - version: "2.0.1" - installs: 368 - rating: 5 - ratings: 1 - author: "NSMNIA" - repo: "https://github.com/NSMNIA/sto-theme" - url: "https://marketplace.visualstudio.com/items?itemName=NSMNIA.sto-theme" -colors: - bg: "#000000" - fg: "#DDEFF0" - black: "#000000" - red: "#EC1E2B" - green: "#4AD962" - yellow: "#5FAAB1" - blue: "#0088FF" - magenta: "#FB94FF" - cyan: "#80FCFF" - white: "#FFFFFF" - brightBlack: "#0050A4" - brightRed: "#EC1E2B" - brightGreen: "#4AD962" - brightYellow: "#5FAAB1" - brightBlue: "#0088FF" - brightMagenta: "#FB94FF" - brightCyan: "#80FCFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 95.1 - black: 0 - red: 33.5 - green: 68.4 - yellow: 50.2 - blue: 39.8 - magenta: 65.3 - cyan: 93.8 - white: 107.9 - brightBlack: 15.7 - brightRed: 33.5 - brightGreen: 68.4 - brightYellow: 50.2 - brightBlue: 39.8 - brightMagenta: 65.3 - brightCyan: 93.8 - brightWhite: 107.9 diff --git a/themes/sto-green.yaml b/themes/sto-green.yaml deleted file mode 100644 index 45d4e691..00000000 --- a/themes/sto-green.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sto Green" -source: - marketplace_id: "NSMNIA.sto-theme" - version: "2.0.1" - installs: 368 - rating: 5 - ratings: 1 - author: "NSMNIA" - repo: "https://github.com/NSMNIA/sto-theme" - url: "https://marketplace.visualstudio.com/items?itemName=NSMNIA.sto-theme" -colors: - bg: "#0E1718" - fg: "#DDEFF0" - black: "#0E1718" - red: "#EC1E2B" - green: "#4AD962" - yellow: "#5FAAB1" - blue: "#0088FF" - magenta: "#FB94FF" - cyan: "#80FCFF" - white: "#FFFFFF" - brightBlack: "#0050A4" - brightRed: "#EC1E2B" - brightGreen: "#4AD962" - brightYellow: "#5FAAB1" - brightBlue: "#0088FF" - brightMagenta: "#FB94FF" - brightCyan: "#80FCFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 205 - pair: null - contrast: - fg: 94.2 - black: 0 - red: 32.6 - green: 67.5 - yellow: 49.3 - blue: 38.9 - magenta: 64.5 - cyan: 92.9 - white: 107 - brightBlack: 14.8 - brightRed: 32.6 - brightGreen: 67.5 - brightYellow: 49.3 - brightBlue: 38.9 - brightMagenta: 64.5 - brightCyan: 92.9 - brightWhite: 107 diff --git a/themes/stonerose.yaml b/themes/stonerose.yaml index b0941fda..d36bbfe4 100644 --- a/themes/stonerose.yaml +++ b/themes/stonerose.yaml @@ -8,6 +8,7 @@ source: author: "ajguerrer" repo: "https://github.com/ajguerrer/stonerose-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ajguerrer.stonerose-vscode" + formats: null colors: bg: "#303033" fg: "#B4B4BF" diff --git a/themes/storm-contrast.yaml b/themes/storm-contrast.yaml deleted file mode 100644 index cad69eb8..00000000 --- a/themes/storm-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "storm-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#020B0C" - fg: "#BACEDD" - black: "#061F22" - red: "#BA0E2E" - green: "#126D6B" - yellow: "#00A9A5" - blue: "#4E8098" - magenta: "#126D6B" - cyan: "#00A9A5" - white: "#CBDAE5" - brightBlack: "#115B63" - brightRed: "#F03E5F" - brightGreen: "#20C5C1" - brightYellow: "#10FFF9" - brightBlue: "#89B0C3" - brightMagenta: "#20C5C1" - brightCyan: "#10FFF9" - brightWhite: "#FEFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 202 - pair: null - contrast: - fg: 75 - black: 0 - red: 21.4 - green: 21.5 - yellow: 46.9 - blue: 31.7 - magenta: 21.5 - cyan: 46.9 - white: 82.6 - brightBlack: 15.3 - brightRed: 37.6 - brightGreen: 60.6 - brightYellow: 91.7 - brightBlue: 56.3 - brightMagenta: 60.6 - brightCyan: 91.7 - brightWhite: 107.6 diff --git a/themes/storm-light.yaml b/themes/storm-light.yaml deleted file mode 100644 index b5bb9205..00000000 --- a/themes/storm-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "storm-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#DEE4E5" - fg: "#092327" - black: "#ECF0F0" - red: "#BA0E2E" - green: "#126D6B" - yellow: "#00A9A5" - blue: "#4E8098" - magenta: "#126D6B" - cyan: "#00A9A5" - white: "#0E363C" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#20C5C1" - brightYellow: "#10FFF9" - brightBlue: "#89B0C3" - brightMagenta: "#20C5C1" - brightCyan: "#10FFF9" - brightWhite: "#1C6D7A" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 86.6 - black: 0 - red: 63.7 - green: 63.6 - yellow: 38.2 - blue: 53.2 - magenta: 63.6 - cyan: 38.2 - white: 82.5 - brightBlack: 16.3 - brightRed: 47.3 - brightGreen: 24.8 - brightYellow: 0 - brightBlue: 29.1 - brightMagenta: 24.8 - brightCyan: 0 - brightWhite: 62.9 diff --git a/themes/storm-tracker.yaml b/themes/storm-tracker.yaml deleted file mode 100644 index 2cf8ded5..00000000 --- a/themes/storm-tracker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Storm Tracker" -source: - marketplace_id: "Dutchorange.space-wars" - version: "1.1.7" - installs: 1711 - rating: 5 - ratings: 3 - author: "Dutchorange" - repo: "https://github.com/entropy-glitch/space-wars" - url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" -colors: - bg: "#1B1B1B" - fg: "#E1E1E1" - black: "#1B1B1B" - red: "#FFFFFF" - green: "#5A5A5A" - yellow: "#A0A0A0" - blue: "#5A5A5A" - magenta: "#FFFFFF" - cyan: "#FF9966" - white: "#E1E1E1" - brightBlack: "#1B1B1B" - brightRed: "#FFFFFF" - brightGreen: "#5A5A5A" - brightYellow: "#A0A0A0" - brightBlue: "#FFAA44" - brightMagenta: "#FFFFFF" - brightCyan: "#FF9966" - brightWhite: "#E1E1E1" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 87.1 - black: 0 - red: 106.4 - green: 16.6 - yellow: 49.4 - blue: 16.6 - magenta: 106.4 - cyan: 60 - white: 87.1 - brightBlack: 0 - brightRed: 106.4 - brightGreen: 16.6 - brightYellow: 49.4 - brightBlue: 65.3 - brightMagenta: 106.4 - brightCyan: 60 - brightWhite: 87.1 diff --git a/themes/storm-uvadark-fork.yaml b/themes/storm-uvadark-fork.yaml index 8877b951..19c972b2 100644 --- a/themes/storm-uvadark-fork.yaml +++ b/themes/storm-uvadark-fork.yaml @@ -8,6 +8,7 @@ source: author: "storm066" repo: "https://github.com/lfontesc/vscode-theme-storm" url: "https://marketplace.visualstudio.com/items?itemName=storm066.storm066" + formats: null colors: bg: "#000000" fg: "#EEEEEE" diff --git a/themes/storm.yaml b/themes/storm.yaml index c2a3ec8f..cf06248b 100644 --- a/themes/storm.yaml +++ b/themes/storm.yaml @@ -8,6 +8,7 @@ source: author: "Jackdaw Dev" repo: "https://github.com/mechatour/storm-vscode" url: "https://marketplace.visualstudio.com/items?itemName=JackdawDev.storm-darktheme" + formats: null colors: bg: "#040408" fg: "#CFCFD4" diff --git a/themes/stormpetrel.yaml b/themes/stormpetrel.yaml deleted file mode 100644 index 6753b9f6..00000000 --- a/themes/stormpetrel.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "stormpetrel" -source: - marketplace_id: "bbrakenhoff.seabird" - version: "0.0.4" - installs: 754 - rating: 4.5 - ratings: 2 - author: "bbrakenhoff" - repo: "https://github.com/bbrakenhoff/seabird-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=bbrakenhoff.seabird" -colors: - bg: "#0B141A" - fg: "#787E82" - black: "#6D767D" - red: "#BA656D" - green: "#5B8A55" - yellow: "#8A7C55" - blue: "#5F8299" - magenta: "#997383" - cyan: "#548587" - white: "#FFFFFF" - brightBlack: "#6D767D" - brightRed: "#BA656D" - brightGreen: "#5B8A55" - brightYellow: "#8A7C55" - brightBlue: "#5F8299" - brightMagenta: "#997383" - brightCyan: "#548587" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 238 - pair: null - contrast: - fg: 32.7 - black: 28.8 - red: 33.5 - green: 33.5 - yellow: 32.7 - blue: 33 - magenta: 33 - cyan: 32.6 - white: 107.2 - brightBlack: 28.8 - brightRed: 33.5 - brightGreen: 33.5 - brightYellow: 32.7 - brightBlue: 33 - brightMagenta: 33 - brightCyan: 32.6 - brightWhite: 107.2 diff --git a/themes/stranger-theme-dimension-x.yaml b/themes/stranger-theme-dimension-x.yaml index dee245be..fa586de0 100644 --- a/themes/stranger-theme-dimension-x.yaml +++ b/themes/stranger-theme-dimension-x.yaml @@ -8,6 +8,7 @@ source: author: "Stranger Theme" repo: "https://github.com/stranger-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=StrangerTheme.stranger-theme-vscode" + formats: null colors: bg: "#1E1A1A" fg: "#E8D5D5" diff --git a/themes/stranger-theme-hawkins.yaml b/themes/stranger-theme-hawkins.yaml index aae4c450..5b6c4c19 100644 --- a/themes/stranger-theme-hawkins.yaml +++ b/themes/stranger-theme-hawkins.yaml @@ -8,6 +8,7 @@ source: author: "Stranger Theme" repo: "https://github.com/stranger-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=StrangerTheme.stranger-theme-vscode" + formats: null colors: bg: "#2C2218" fg: "#E8DCC8" diff --git a/themes/stranger-theme-starcourt.yaml b/themes/stranger-theme-starcourt.yaml index 530aaca2..6221644c 100644 --- a/themes/stranger-theme-starcourt.yaml +++ b/themes/stranger-theme-starcourt.yaml @@ -8,6 +8,7 @@ source: author: "Stranger Theme" repo: "https://github.com/stranger-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=StrangerTheme.stranger-theme-vscode" + formats: null colors: bg: "#1A1A2E" fg: "#EAEAEA" diff --git a/themes/stranger-theme-the-lab.yaml b/themes/stranger-theme-the-lab.yaml index e617162e..ea7f7884 100644 --- a/themes/stranger-theme-the-lab.yaml +++ b/themes/stranger-theme-the-lab.yaml @@ -8,6 +8,7 @@ source: author: "Stranger Theme" repo: "https://github.com/stranger-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=StrangerTheme.stranger-theme-vscode" + formats: null colors: bg: "#1A1D26" fg: "#E0E5EC" diff --git a/themes/stranger-theme-tigers.yaml b/themes/stranger-theme-tigers.yaml index 2106df1c..975f61ab 100644 --- a/themes/stranger-theme-tigers.yaml +++ b/themes/stranger-theme-tigers.yaml @@ -8,6 +8,7 @@ source: author: "Stranger Theme" repo: "https://github.com/stranger-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=StrangerTheme.stranger-theme-vscode" + formats: null colors: bg: "#1A1A1A" fg: "#F5F5F5" diff --git a/themes/stranger-theme-upside-down.yaml b/themes/stranger-theme-upside-down.yaml index f2a5f8a9..0c002c0f 100644 --- a/themes/stranger-theme-upside-down.yaml +++ b/themes/stranger-theme-upside-down.yaml @@ -8,6 +8,7 @@ source: author: "Stranger Theme" repo: "https://github.com/stranger-theme/vscode" url: "https://marketplace.visualstudio.com/items?itemName=StrangerTheme.stranger-theme-vscode" + formats: null colors: bg: "#0D1117" fg: "#F8F8F2" diff --git a/themes/studio-apartment.yaml b/themes/studio-apartment.yaml deleted file mode 100644 index 8130eeaa..00000000 --- a/themes/studio-apartment.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Studio-Apartment" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#161616" - fg: "#E4E4E4" - black: "#161616" - red: "#F14444" - green: "#29C3A0" - yellow: "#D29922" - blue: "#3981F6" - magenta: "#3981F6" - cyan: "#29C3A0" - white: "#E4E4E4" - brightBlack: "#161616" - brightRed: "#F14444" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#3981F6" - brightMagenta: "#3981F6" - brightCyan: "#29C3A0" - brightWhite: "#E4E4E4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.5 - black: 0 - red: 37.4 - green: 57.7 - yellow: 51.8 - blue: 36.5 - magenta: 36.5 - cyan: 57.7 - white: 89.5 - brightBlack: 0 - brightRed: 37.4 - brightGreen: 57.7 - brightYellow: 51.8 - brightBlue: 36.5 - brightMagenta: 36.5 - brightCyan: 57.7 - brightWhite: 89.5 diff --git a/themes/studio-bio-bio-dark-theme.yaml b/themes/studio-bio-bio-dark-theme.yaml deleted file mode 100644 index aaa24d33..00000000 --- a/themes/studio-bio-bio-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "studio.bio Bio Dark Theme" -source: - marketplace_id: "studiobio.bio-dark-midnight-theme" - version: "0.1.1" - installs: 2667 - rating: 4 - ratings: 1 - author: "studiobio" - repo: "https://github.com/joshuaiz/bio-dark-midnight-theme" - url: "https://marketplace.visualstudio.com/items?itemName=studiobio.bio-dark-midnight-theme" -colors: - bg: "#1C1F2F" - fg: "#CECECE" - black: "#111929" - red: "#F26D58" - green: "#35BE81" - yellow: "#FAC863" - blue: "#486388" - magenta: "#BB80B3" - cyan: "#4885DB" - white: "#F6F8FA" - brightBlack: "#575656" - brightRed: "#F12A26" - brightGreen: "#DEF59A" - brightYellow: "#FFDD43" - brightBlue: "#B0C3E7" - brightMagenta: "#C792EA" - brightCyan: "#A0C4EE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 276 - pair: null - contrast: - fg: 74.7 - black: 0 - red: 44.2 - green: 53.5 - yellow: 75.6 - blue: 19.1 - magenta: 42.2 - cyan: 35.1 - white: 101 - brightBlack: 14.5 - brightRed: 33.3 - brightGreen: 92.8 - brightYellow: 85 - brightBlue: 67.8 - brightMagenta: 52.6 - brightCyan: 66.9 - brightWhite: 105.8 diff --git a/themes/styledark18.yaml b/themes/styledark18.yaml deleted file mode 100644 index 4b37906c..00000000 --- a/themes/styledark18.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "styledark18" -source: - marketplace_id: "tscmdabdurrakib.md-abdur-rakib-theme" - version: "1.1.3" - installs: 1739 - rating: 5 - ratings: 1 - author: "Md Abdur Rakib" - repo: "https://github.com/tscmdabdurrakib/md-abdur-rakib-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tscmdabdurrakib.md-abdur-rakib-theme" -colors: - bg: "#1F1F1F" - fg: "#DDDDDD" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 84 - black: 0 - red: 23.6 - green: 52 - yellow: 56.7 - blue: 33.7 - magenta: 31.2 - cyan: 49.5 - white: 87.5 - brightBlack: 21.1 - brightRed: 36.3 - brightGreen: 76 - brightYellow: 82.9 - brightBlue: 48.9 - brightMagenta: 45.6 - brightCyan: 72.4 - brightWhite: 101 diff --git a/themes/styledark28.yaml b/themes/styledark28.yaml deleted file mode 100644 index 2caff9c8..00000000 --- a/themes/styledark28.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "styledark28" -source: - marketplace_id: "tscmdabdurrakib.md-abdur-rakib-theme" - version: "1.1.3" - installs: 1739 - rating: 5 - ratings: 1 - author: "Md Abdur Rakib" - repo: "https://github.com/tscmdabdurrakib/md-abdur-rakib-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tscmdabdurrakib.md-abdur-rakib-theme" -colors: - bg: "#21222D" - fg: "#F2E5BC" - black: "#1D2021" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#F42C3E" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#99C6CA" - brightMagenta: "#D3869B" - brightCyan: "#7EC16E" - brightWhite: "#EBDBB2" -meta: - mode: "dark" - accent: "orange" - hue: 281 - pair: null - contrast: - fg: 88.7 - black: 0 - red: 23.7 - green: 41.4 - yellow: 51 - blue: 30 - magenta: 30.2 - cyan: 40.4 - white: 45.7 - brightBlack: 34.8 - brightRed: 33.9 - brightGreen: 59.6 - brightYellow: 70.3 - brightBlue: 64.9 - brightMagenta: 46.4 - brightCyan: 57.4 - brightWhite: 82.9 diff --git a/themes/stylelight33.yaml b/themes/stylelight33.yaml deleted file mode 100644 index e2442586..00000000 --- a/themes/stylelight33.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "stylelight33" -source: - marketplace_id: "tscmdabdurrakib.md-abdur-rakib-theme" - version: "1.1.3" - installs: 1739 - rating: 5 - ratings: 1 - author: "Md Abdur Rakib" - repo: "https://github.com/tscmdabdurrakib/md-abdur-rakib-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tscmdabdurrakib.md-abdur-rakib-theme" -colors: - bg: "#FFFFFF" - fg: "#9B9B9B" - black: "#012339" - red: "#A56416" - green: "#428226" - yellow: "#A56416" - blue: "#3778B7" - magenta: "#B052A1" - cyan: "#3778B7" - white: "#F7F7F7" - brightBlack: "#9B9B9B" - brightRed: "#A56416" - brightGreen: "#428226" - brightYellow: "#A56416" - brightBlue: "#3778B7" - brightMagenta: "#B052A1" - brightCyan: "#3778B7" - brightWhite: "#F7F7F7" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 53.6 - black: 102.8 - red: 72.5 - green: 72.5 - yellow: 72.5 - blue: 71.9 - magenta: 71.4 - cyan: 71.9 - white: 0 - brightBlack: 53.6 - brightRed: 72.5 - brightGreen: 72.5 - brightYellow: 72.5 - brightBlue: 71.9 - brightMagenta: 71.4 - brightCyan: 71.9 - brightWhite: 0 diff --git a/themes/stylelight35.yaml b/themes/stylelight35.yaml index 162639e6..d67f89da 100644 --- a/themes/stylelight35.yaml +++ b/themes/stylelight35.yaml @@ -8,6 +8,7 @@ source: author: "Md Abdur Rakib" repo: "https://github.com/tscmdabdurrakib/md-abdur-rakib-theme" url: "https://marketplace.visualstudio.com/items?itemName=tscmdabdurrakib.md-abdur-rakib-theme" + formats: null colors: bg: "#F9F9F9" fg: "#383A42" diff --git a/themes/stypt-aether.yaml b/themes/stypt-aether.yaml deleted file mode 100644 index 5c843e39..00000000 --- a/themes/stypt-aether.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Stypt - Aether" -source: - marketplace_id: "MichaelVolakis.stypt" - version: "2.0.1" - installs: 203 - author: "Michael Volakis" - repo: "https://github.com/Michael-Vol/Stypt-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=MichaelVolakis.stypt" -colors: - bg: "#1B1F35" - fg: "#B4D1F3" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 275 - contrast: - fg: 74.7 - black: 0 - red: 25.5 - green: 51.8 - yellow: 84.4 - blue: 26.2 - magenta: 28.6 - cyan: 46.4 - white: 88.8 - brightBlack: 20.8 - brightRed: 37.4 - brightGreen: 62.3 - brightYellow: 94.4 - brightBlue: 38.8 - brightMagenta: 44.2 - brightCyan: 54.2 - brightWhite: 88.8 diff --git a/themes/subessence.yaml b/themes/subessence.yaml index c5faf057..e61dfe34 100644 --- a/themes/subessence.yaml +++ b/themes/subessence.yaml @@ -8,6 +8,7 @@ source: author: "Vinh Pham" repo: "https://github.com/vinhphm/subessence" url: "https://marketplace.visualstudio.com/items?itemName=vinhphm.subessence" + formats: null colors: bg: "#232830" fg: "#D4D4D4" diff --git a/themes/sublette.yaml b/themes/sublette.yaml index 89a3ebdc..82e4c3da 100644 --- a/themes/sublette.yaml +++ b/themes/sublette.yaml @@ -8,6 +8,7 @@ source: author: "minmul117" repo: "https://github.com/minmul117/vscode-sublette" url: "https://marketplace.visualstudio.com/items?itemName=minmul117.sublette" + formats: null colors: bg: "#202535" fg: "#CCCED0" diff --git a/themes/sublime-breakers.yaml b/themes/sublime-breakers.yaml index e6497c56..0bba59e7 100644 --- a/themes/sublime-breakers.yaml +++ b/themes/sublime-breakers.yaml @@ -8,6 +8,7 @@ source: author: "Release-Candidate" repo: "https://codeberg.org/Release-Candidate/SublimeBreakersTheme" url: "https://marketplace.visualstudio.com/items?itemName=release-candidate.theme-sublime-breakers" + formats: null colors: bg: "#FCFDFD" fg: "#333333" diff --git a/themes/sublime-mariana-semantic.yaml b/themes/sublime-mariana-semantic.yaml index bb9babe9..cbc3667e 100644 --- a/themes/sublime-mariana-semantic.yaml +++ b/themes/sublime-mariana-semantic.yaml @@ -8,6 +8,7 @@ source: author: "duttdutt" repo: "https://github.com/duttdutt/sublime-theme" url: "https://marketplace.visualstudio.com/items?itemName=duttdutt.sublime-theme" + formats: null colors: bg: "#2E3842" fg: "#FFFFFF" diff --git a/themes/sublime-mariana-test.yaml b/themes/sublime-mariana-test.yaml index d00e8df2..6bfe0cda 100644 --- a/themes/sublime-mariana-test.yaml +++ b/themes/sublime-mariana-test.yaml @@ -8,6 +8,7 @@ source: author: "duttdutt" repo: "https://github.com/duttdutt/sublime-theme" url: "https://marketplace.visualstudio.com/items?itemName=duttdutt.sublime-theme" + formats: null colors: bg: "#303841" fg: "#FFFFFF" diff --git a/themes/sublime-monokai-color-theme.yaml b/themes/sublime-monokai-color-theme.yaml deleted file mode 100644 index 6be05de9..00000000 --- a/themes/sublime-monokai-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "sublime-monokai-color-theme" -source: - marketplace_id: "maximetinu.identical-sublime-monokai-csharp-theme-colorizer" - version: "1.2.3" - installs: 286389 - rating: 5 - ratings: 24 - author: "Maximetinu" - repo: "https://github.com/Maximetinu/Sublime-Text-Monokai-theme-for-Visual-Studio-Code" - url: "https://marketplace.visualstudio.com/items?itemName=maximetinu.identical-sublime-monokai-csharp-theme-colorizer" -colors: - bg: "#272822" - fg: "#F8F8F2" - black: "#333333" - red: "#C4265E" - green: "#86B42B" - yellow: "#B3B42B" - blue: "#6A7EC8" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: 115 - pair: null - contrast: - fg: 99.6 - black: 0 - red: 22.3 - green: 50.7 - yellow: 55.3 - blue: 32.3 - magenta: 29.9 - cyan: 48.1 - white: 86.2 - brightBlack: 19.7 - brightRed: 35 - brightGreen: 74.7 - brightYellow: 81.6 - brightBlue: 47.5 - brightMagenta: 44.2 - brightCyan: 71.1 - brightWhite: 99.6 diff --git a/themes/sublime-text-3.yaml b/themes/sublime-text-3.yaml index fbfc2709..dd169cca 100644 --- a/themes/sublime-text-3.yaml +++ b/themes/sublime-text-3.yaml @@ -2,12 +2,13 @@ name: "Sublime Text 3" source: marketplace_id: "Shine.sublime-text-3" version: "1.0.4" - installs: 6129 + installs: 6131 rating: 5 ratings: 1 author: "Shine" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Shine.sublime-text-3" + formats: null colors: bg: "#282923" fg: "#F8F8F2" diff --git a/themes/sublime-text-4-theme.yaml b/themes/sublime-text-4-theme.yaml deleted file mode 100644 index 1d809923..00000000 --- a/themes/sublime-text-4-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sublime Text 4 Theme" -source: - marketplace_id: "IliaReshetov.vscode-theme-mariana-dark" - version: "1.0.6" - installs: 978 - rating: 5 - ratings: 4 - author: "Ilia Reshetov" - repo: "https://github.com/iliareshetov/vscode-theme-mariana-dark" - url: "https://marketplace.visualstudio.com/items?itemName=IliaReshetov.vscode-theme-mariana-dark" -colors: - bg: "#303841" - fg: "#D8DEE9" - black: "#E6E6E6" - red: "#EE6A6F" - green: "#A3CE9E" - yellow: "#FAB763" - blue: "#6699CC" - magenta: "#C594C5" - cyan: "#6699CC" - white: "#D8DEE9" - brightBlack: "#E6E6E6" - brightRed: "#EE6A6F" - brightGreen: "#A3CE9E" - brightYellow: "#FAB763" - brightBlue: "#6699CC" - brightMagenta: "#C594C5" - brightCyan: "#6699CC" - brightWhite: "#D8DEE9" -meta: - mode: "dark" - accent: "orange" - hue: 251 - pair: null - contrast: - fg: 79.3 - black: 84.6 - red: 38.3 - green: 63.2 - yellow: 64 - blue: 38.1 - magenta: 46 - cyan: 38.1 - white: 79.3 - brightBlack: 84.6 - brightRed: 38.3 - brightGreen: 63.2 - brightYellow: 64 - brightBlue: 38.1 - brightMagenta: 46 - brightCyan: 38.1 - brightWhite: 79.3 diff --git a/themes/sublime-vscode-theme.yaml b/themes/sublime-vscode-theme.yaml index efa69edf..12bd2ef1 100644 --- a/themes/sublime-vscode-theme.yaml +++ b/themes/sublime-vscode-theme.yaml @@ -1,13 +1,14 @@ -name: "sublime-vscode-theme" +name: "Sublime VSCode Theme" source: marketplace_id: "yurihs.sublime-vscode-theme" version: "1.5.0" - installs: 86333 + installs: 86349 rating: 5 ratings: 6 author: "yurihs" repo: "https://github.com/yurihs/sublime-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=yurihs.sublime-vscode-theme" + formats: null colors: bg: "#282923" fg: "#F8F8F2" diff --git a/themes/subliminal-color-theme.yaml b/themes/subliminal-color-theme.yaml index 0c038746..fbf6412d 100644 --- a/themes/subliminal-color-theme.yaml +++ b/themes/subliminal-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "Rasmus Josefsson" repo: "https://github.com/gaearon/subliminal" url: "https://marketplace.visualstudio.com/items?itemName=josefssonrasmus.subliminal-remix" + formats: null colors: bg: "#282C35" fg: "#D4D4D4" diff --git a/themes/subliminal-nightfall.yaml b/themes/subliminal-nightfall.yaml index de029305..784e463d 100644 --- a/themes/subliminal-nightfall.yaml +++ b/themes/subliminal-nightfall.yaml @@ -8,6 +8,8 @@ source: author: "Mike Hamrah" repo: "https://github.com/mhamrah/subliminal-nightfall" url: "https://marketplace.visualstudio.com/items?itemName=hamrahm.subliminal-nightfall" + formats: + ghostty: "https://raw.githubusercontent.com/mhamrah/subliminal-nightfall/main/ghostty/subliminal-nightfall" colors: bg: "#03021A" fg: "#E0DEF4" diff --git a/themes/subliminalr.yaml b/themes/subliminalr.yaml index 4730ecbe..8b6122cc 100644 --- a/themes/subliminalr.yaml +++ b/themes/subliminalr.yaml @@ -8,6 +8,7 @@ source: author: "Tobias Timm" repo: "https://github.com/tobiastimm/subliminalr" url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.subliminalr" + formats: null colors: bg: "#2A2D37" fg: "#D4D4D4" diff --git a/themes/subscribe-color.yaml b/themes/subscribe-color.yaml deleted file mode 100644 index c5f84bd3..00000000 --- a/themes/subscribe-color.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "subscribe-color" -source: - marketplace_id: "Eric000.pinkpinktheme" - version: "0.0.3" - installs: 596 - rating: 0 - ratings: 0 - author: "Eric000" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Eric000.pinkpinktheme" -colors: - bg: "#FFFFFF" - fg: "#A890FD" - black: "#FF7373" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#FF8181" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 50.7 - black: 50.8 - red: 74 - green: 49.2 - yellow: 57.9 - blue: 86.1 - magenta: 74.6 - cyan: 60.6 - white: 85.9 - brightBlack: 47 - brightRed: 74 - brightGreen: 40.9 - brightYellow: 40.9 - brightBlue: 86.1 - brightMagenta: 74.6 - brightCyan: 60.6 - brightWhite: 48.5 diff --git a/themes/substrata.yaml b/themes/substrata.yaml index a810e534..c1d50742 100644 --- a/themes/substrata.yaml +++ b/themes/substrata.yaml @@ -8,6 +8,7 @@ source: author: "austinhyde" repo: "https://github.com/austinhyde/vscode-substrata" url: "https://marketplace.visualstudio.com/items?itemName=austinhyde.vscode-theme-substrata" + formats: null colors: bg: "#191C25" fg: "#B5B4C9" diff --git a/themes/sucrose.yaml b/themes/sucrose.yaml index 4169108f..c9f6a525 100644 --- a/themes/sucrose.yaml +++ b/themes/sucrose.yaml @@ -8,6 +8,7 @@ source: author: "jeooo`" repo: "https://github.com/jeoooo/sucrose-theme" url: "https://marketplace.visualstudio.com/items?itemName=jeooo.ampulla" + formats: null colors: bg: "#F3F2F0" fg: "#324976" diff --git a/themes/sufocode.yaml b/themes/sufocode.yaml index c6f7e8eb..dc1d2b90 100644 --- a/themes/sufocode.yaml +++ b/themes/sufocode.yaml @@ -8,6 +8,7 @@ source: author: "C4ptain_Pl0uf" repo: "https://github.com/Vpekdas/VSCode-theme" url: "https://marketplace.visualstudio.com/items?itemName=C4ptainPl0uf.sufocode" + formats: null colors: bg: "#022B3A" fg: "#F0F3BD" diff --git a/themes/sugar-dark-focus.yaml b/themes/sugar-dark-focus.yaml deleted file mode 100644 index a4e9390b..00000000 --- a/themes/sugar-dark-focus.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sugar Dark Focus" -source: - marketplace_id: "Banlify.sugar-vscode-theme" - version: "0.26.0" - installs: 326 - rating: 5 - ratings: 1 - author: "Libon" - repo: "https://github.com/libondev/sugar-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" -colors: - bg: "#0B0B09" - fg: "#D8D8D8" - black: "#393A34" - red: "#DA3036" - green: "#63C174" - yellow: "#E5C07B" - blue: "#0060D1" - magenta: "#DE2670" - cyan: "#0D8C7D" - white: "#CCCCCC" - brightBlack: "#777777" - brightRed: "#E5484D" - brightGreen: "#46A758" - brightYellow: "#E5C07B" - brightBlue: "#0070F3" - brightMagenta: "#E93D82" - brightCyan: "#14B8A6" - brightWhite: "#CCCCCC" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 82.8 - black: 0 - red: 30.4 - green: 58.2 - yellow: 71.4 - blue: 23.3 - magenta: 31.7 - cyan: 33.5 - white: 75.5 - brightBlack: 30.4 - brightRed: 36.1 - brightGreen: 44.8 - brightYellow: 71.4 - brightBlue: 30.8 - brightMagenta: 36.9 - brightCyan: 53.5 - brightWhite: 75.5 diff --git a/themes/sugar-dark-github.yaml b/themes/sugar-dark-github.yaml deleted file mode 100644 index 89f72652..00000000 --- a/themes/sugar-dark-github.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sugar Dark Github" -source: - marketplace_id: "Banlify.sugar-vscode-theme" - version: "0.26.0" - installs: 326 - rating: 5 - ratings: 1 - author: "Libon" - repo: "https://github.com/libondev/sugar-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" -colors: - bg: "#181818" - fg: "#D4D4D4" - black: "#393A34" - red: "#DA3036" - green: "#63C174" - yellow: "#E5C07B" - blue: "#0060D1" - magenta: "#DE2670" - cyan: "#0D8C7D" - white: "#CCCCCC" - brightBlack: "#777777" - brightRed: "#E5484D" - brightGreen: "#46A758" - brightYellow: "#E5C07B" - brightBlue: "#0070F3" - brightMagenta: "#E93D82" - brightCyan: "#14B8A6" - brightWhite: "#CCCCCC" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 79.4 - black: 0 - red: 29.5 - green: 57.3 - yellow: 70.5 - blue: 22.3 - magenta: 30.8 - cyan: 32.5 - white: 74.6 - brightBlack: 29.4 - brightRed: 35.2 - brightGreen: 43.9 - brightYellow: 70.5 - brightBlue: 29.9 - brightMagenta: 35.9 - brightCyan: 52.5 - brightWhite: 74.6 diff --git a/themes/sugar-dark-midnight.yaml b/themes/sugar-dark-midnight.yaml deleted file mode 100644 index 1f7b111e..00000000 --- a/themes/sugar-dark-midnight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sugar Dark Midnight" -source: - marketplace_id: "Banlify.sugar-vscode-theme" - version: "0.26.0" - installs: 326 - rating: 5 - ratings: 1 - author: "Libon" - repo: "https://github.com/libondev/sugar-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" -colors: - bg: "#1B1D23" - fg: "#DFDFDF" - black: "#393A34" - red: "#DA3036" - green: "#63C174" - yellow: "#E5C07B" - blue: "#0060D1" - magenta: "#DE2670" - cyan: "#0D8C7D" - white: "#CCCCCC" - brightBlack: "#777777" - brightRed: "#E5484D" - brightGreen: "#46A758" - brightYellow: "#E5C07B" - brightBlue: "#0070F3" - brightMagenta: "#E93D82" - brightCyan: "#14B8A6" - brightWhite: "#CCCCCC" -meta: - mode: "dark" - accent: "red" - hue: 271 - pair: null - contrast: - fg: 85.5 - black: 0 - red: 28.9 - green: 56.7 - yellow: 69.9 - blue: 21.7 - magenta: 30.2 - cyan: 31.9 - white: 74 - brightBlack: 28.8 - brightRed: 34.5 - brightGreen: 43.3 - brightYellow: 69.9 - brightBlue: 29.3 - brightMagenta: 35.3 - brightCyan: 51.9 - brightWhite: 74 diff --git a/themes/sugar-dark-one.yaml b/themes/sugar-dark-one.yaml deleted file mode 100644 index 1bea3941..00000000 --- a/themes/sugar-dark-one.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sugar Dark One" -source: - marketplace_id: "Banlify.sugar-vscode-theme" - version: "0.26.0" - installs: 326 - rating: 5 - ratings: 1 - author: "Libon" - repo: "https://github.com/libondev/sugar-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" -colors: - bg: "#22262A" - fg: "#ACB2BE" - black: "#393A34" - red: "#DA3036" - green: "#63C174" - yellow: "#E5C07B" - blue: "#0060D1" - magenta: "#DE2670" - cyan: "#0D8C7D" - white: "#CCCCCC" - brightBlack: "#777777" - brightRed: "#E5484D" - brightGreen: "#46A758" - brightYellow: "#E5C07B" - brightBlue: "#0070F3" - brightMagenta: "#E93D82" - brightCyan: "#14B8A6" - brightWhite: "#CCCCCC" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 57.5 - black: 0 - red: 27.6 - green: 55.4 - yellow: 68.6 - blue: 20.4 - magenta: 28.9 - cyan: 30.6 - white: 72.7 - brightBlack: 27.6 - brightRed: 33.3 - brightGreen: 42 - brightYellow: 68.6 - brightBlue: 28 - brightMagenta: 34 - brightCyan: 50.7 - brightWhite: 72.7 diff --git a/themes/sugar-dark-vitesse.yaml b/themes/sugar-dark-vitesse.yaml deleted file mode 100644 index 5d196f60..00000000 --- a/themes/sugar-dark-vitesse.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sugar Dark Vitesse" -source: - marketplace_id: "Banlify.sugar-vscode-theme" - version: "0.26.0" - installs: 326 - rating: 5 - ratings: 1 - author: "Libon" - repo: "https://github.com/libondev/sugar-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" -colors: - bg: "#181818" - fg: "#C8C8C8" - black: "#393A34" - red: "#DA3036" - green: "#63C174" - yellow: "#E5C07B" - blue: "#0060D1" - magenta: "#DE2670" - cyan: "#0D8C7D" - white: "#CCCCCC" - brightBlack: "#777777" - brightRed: "#E5484D" - brightGreen: "#46A758" - brightYellow: "#E5C07B" - brightBlue: "#0070F3" - brightMagenta: "#E93D82" - brightCyan: "#14B8A6" - brightWhite: "#CCCCCC" -meta: - mode: "dark" - accent: "red" - hue: null - pair: "Sugar Light Vitesse" - contrast: - fg: 72.2 - black: 0 - red: 29.5 - green: 57.3 - yellow: 70.5 - blue: 22.3 - magenta: 30.8 - cyan: 32.5 - white: 74.6 - brightBlack: 29.4 - brightRed: 35.2 - brightGreen: 43.9 - brightYellow: 70.5 - brightBlue: 29.9 - brightMagenta: 35.9 - brightCyan: 52.5 - brightWhite: 74.6 diff --git a/themes/sugar-dark-vs.yaml b/themes/sugar-dark-vs.yaml deleted file mode 100644 index 2c997965..00000000 --- a/themes/sugar-dark-vs.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sugar Dark VS" -source: - marketplace_id: "Banlify.sugar-vscode-theme" - version: "0.26.0" - installs: 326 - rating: 5 - ratings: 1 - author: "Libon" - repo: "https://github.com/libondev/sugar-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" -colors: - bg: "#1F1F1F" - fg: "#D8D8D8" - black: "#393A34" - red: "#DA3036" - green: "#63C174" - yellow: "#E5C07B" - blue: "#0060D1" - magenta: "#DE2670" - cyan: "#0D8C7D" - white: "#CCCCCC" - brightBlack: "#777777" - brightRed: "#E5484D" - brightGreen: "#46A758" - brightYellow: "#E5C07B" - brightBlue: "#0070F3" - brightMagenta: "#E93D82" - brightCyan: "#14B8A6" - brightWhite: "#CCCCCC" -meta: - mode: "dark" - accent: "red" - hue: null - pair: "Sugar Light VS" - contrast: - fg: 81 - black: 0 - red: 28.6 - green: 56.4 - yellow: 69.6 - blue: 21.5 - magenta: 29.9 - cyan: 31.7 - white: 73.7 - brightBlack: 28.6 - brightRed: 34.3 - brightGreen: 43 - brightYellow: 69.6 - brightBlue: 29 - brightMagenta: 35.1 - brightCyan: 51.7 - brightWhite: 73.7 diff --git a/themes/sugar-dark.yaml b/themes/sugar-dark.yaml deleted file mode 100644 index 7a4d4bb1..00000000 --- a/themes/sugar-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sugar Dark" -source: - marketplace_id: "Banlify.sugar-vscode-theme" - version: "0.26.0" - installs: 326 - rating: 5 - ratings: 1 - author: "Libon" - repo: "https://github.com/libondev/sugar-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" -colors: - bg: "#1B1F22" - fg: "#CFCFCF" - black: "#393A34" - red: "#DA3036" - green: "#63C174" - yellow: "#E5C07B" - blue: "#0060D1" - magenta: "#DE2670" - cyan: "#0D8C7D" - white: "#CCCCCC" - brightBlack: "#777777" - brightRed: "#E5484D" - brightGreen: "#46A758" - brightYellow: "#E5C07B" - brightBlue: "#0070F3" - brightMagenta: "#E93D82" - brightCyan: "#14B8A6" - brightWhite: "#CCCCCC" -meta: - mode: "dark" - accent: "red" - hue: null - pair: "Sugar Light" - contrast: - fg: 75.6 - black: 0 - red: 28.7 - green: 56.5 - yellow: 69.7 - blue: 21.5 - magenta: 30 - cyan: 31.7 - white: 73.8 - brightBlack: 28.7 - brightRed: 34.4 - brightGreen: 43.1 - brightYellow: 69.7 - brightBlue: 29.1 - brightMagenta: 35.1 - brightCyan: 51.8 - brightWhite: 73.8 diff --git a/themes/sugar-fleet.yaml b/themes/sugar-fleet.yaml deleted file mode 100644 index 14424f52..00000000 --- a/themes/sugar-fleet.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sugar Fleet" -source: - marketplace_id: "Banlify.sugar-vscode-theme" - version: "0.26.0" - installs: 326 - rating: 5 - ratings: 1 - author: "Libon" - repo: "https://github.com/libondev/sugar-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" -colors: - bg: "#1F1F1F" - fg: "#BCBEC4" - black: "#393A34" - red: "#DA3036" - green: "#63C174" - yellow: "#E5C07B" - blue: "#0060D1" - magenta: "#DE2670" - cyan: "#0D8C7D" - white: "#CCCCCC" - brightBlack: "#777777" - brightRed: "#E5484D" - brightGreen: "#46A758" - brightYellow: "#E5C07B" - brightBlue: "#0070F3" - brightMagenta: "#E93D82" - brightCyan: "#14B8A6" - brightWhite: "#CCCCCC" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 65.5 - black: 0 - red: 28.6 - green: 56.4 - yellow: 69.6 - blue: 21.5 - magenta: 29.9 - cyan: 31.7 - white: 73.7 - brightBlack: 28.6 - brightRed: 34.3 - brightGreen: 43 - brightYellow: 69.6 - brightBlue: 29 - brightMagenta: 35.1 - brightCyan: 51.7 - brightWhite: 73.7 diff --git a/themes/sugar-light-vitesse.yaml b/themes/sugar-light-vitesse.yaml deleted file mode 100644 index 8ede5b04..00000000 --- a/themes/sugar-light-vitesse.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sugar Light Vitesse" -source: - marketplace_id: "Banlify.sugar-vscode-theme" - version: "0.26.0" - installs: 326 - rating: 5 - ratings: 1 - author: "Libon" - repo: "https://github.com/libondev/sugar-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" -colors: - bg: "#FFFFFF" - fg: "#24292E" - black: "#777777" - red: "#E5484D" - green: "#46A758" - yellow: "#E5C07B" - blue: "#0070F3" - magenta: "#E93D82" - cyan: "#14B8A6" - white: "#CCCCCC" - brightBlack: "#393A34" - brightRed: "#DA3036" - brightGreen: "#63C174" - brightYellow: "#E5C07B" - brightBlue: "#0060D1" - brightMagenta: "#DE2670" - brightCyan: "#0D8C7D" - brightWhite: "#CCCCCC" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Sugar Dark Vitesse" - contrast: - fg: 101.5 - black: 71.1 - red: 65.4 - green: 56.8 - yellow: 31.2 - blue: 70.7 - magenta: 64.6 - cyan: 48.3 - white: 27.3 - brightBlack: 96.5 - brightRed: 71.1 - brightGreen: 43.7 - brightYellow: 31.2 - brightBlue: 78.3 - brightMagenta: 69.8 - brightCyan: 68 - brightWhite: 27.3 diff --git a/themes/sugar-light-vs.yaml b/themes/sugar-light-vs.yaml deleted file mode 100644 index 93f45b73..00000000 --- a/themes/sugar-light-vs.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sugar Light VS" -source: - marketplace_id: "Banlify.sugar-vscode-theme" - version: "0.26.0" - installs: 326 - rating: 5 - ratings: 1 - author: "Libon" - repo: "https://github.com/libondev/sugar-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" -colors: - bg: "#FFFFFF" - fg: "#333333" - black: "#777777" - red: "#E5484D" - green: "#46A758" - yellow: "#E5C07B" - blue: "#0070F3" - magenta: "#E93D82" - cyan: "#14B8A6" - white: "#CCCCCC" - brightBlack: "#393A34" - brightRed: "#DA3036" - brightGreen: "#63C174" - brightYellow: "#E5C07B" - brightBlue: "#0060D1" - brightMagenta: "#DE2670" - brightCyan: "#0D8C7D" - brightWhite: "#CCCCCC" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Sugar Dark VS" - contrast: - fg: 98.7 - black: 71.1 - red: 65.4 - green: 56.8 - yellow: 31.2 - blue: 70.7 - magenta: 64.6 - cyan: 48.3 - white: 27.3 - brightBlack: 96.5 - brightRed: 71.1 - brightGreen: 43.7 - brightYellow: 31.2 - brightBlue: 78.3 - brightMagenta: 69.8 - brightCyan: 68 - brightWhite: 27.3 diff --git a/themes/sugar-light.yaml b/themes/sugar-light.yaml deleted file mode 100644 index 43142590..00000000 --- a/themes/sugar-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sugar Light" -source: - marketplace_id: "Banlify.sugar-vscode-theme" - version: "0.26.0" - installs: 326 - rating: 5 - ratings: 1 - author: "Libon" - repo: "https://github.com/libondev/sugar-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" -colors: - bg: "#FCFCFC" - fg: "#424242" - black: "#777777" - red: "#E5484D" - green: "#46A758" - yellow: "#E5C07B" - blue: "#0070F3" - magenta: "#E93D82" - cyan: "#14B8A6" - white: "#CCCCCC" - brightBlack: "#393A34" - brightRed: "#DA3036" - brightGreen: "#63C174" - brightYellow: "#E5C07B" - brightBlue: "#0060D1" - brightMagenta: "#DE2670" - brightCyan: "#0D8C7D" - brightWhite: "#CCCCCC" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Sugar Dark" - contrast: - fg: 91.6 - black: 69.3 - red: 63.6 - green: 55 - yellow: 29.4 - blue: 68.9 - magenta: 62.8 - cyan: 46.5 - white: 25.5 - brightBlack: 94.7 - brightRed: 69.3 - brightGreen: 41.9 - brightYellow: 29.4 - brightBlue: 76.5 - brightMagenta: 68 - brightCyan: 66.2 - brightWhite: 25.5 diff --git a/themes/sukadia-dev-dark.yaml b/themes/sukadia-dev-dark.yaml deleted file mode 100644 index 48b28d27..00000000 --- a/themes/sukadia-dev-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "sukadia.dev/dark" -source: - marketplace_id: "Sukadia.sukadia-dev-dark" - version: "1.0.6" - installs: 1607 - rating: 5 - ratings: 1 - author: "Sukadia" - repo: "https://github.com/Sukadia/sukadia.dev-dark" - url: "https://marketplace.visualstudio.com/items?itemName=Sukadia.sukadia-dev-dark" -colors: - bg: "#1D1F21" - fg: "#DDDDDD" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 84.1 - black: 0 - red: 25.8 - green: 52.1 - yellow: 84.7 - blue: 26.5 - magenta: 28.8 - cyan: 46.6 - white: 89.1 - brightBlack: 21.1 - brightRed: 37.6 - brightGreen: 62.6 - brightYellow: 94.7 - brightBlue: 39.1 - brightMagenta: 44.4 - brightCyan: 54.5 - brightWhite: 89.1 diff --git a/themes/sulfuric-dark.yaml b/themes/sulfuric-dark.yaml index 8b5d92ca..44e30566 100644 --- a/themes/sulfuric-dark.yaml +++ b/themes/sulfuric-dark.yaml @@ -8,6 +8,7 @@ source: author: "ptanh.uet" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ptanhuet.sulfuric-theme" + formats: null colors: bg: "#1E212E" fg: "#BFC7D5" diff --git a/themes/sumiiro.yaml b/themes/sumiiro.yaml index c357f074..4ef90fbc 100644 --- a/themes/sumiiro.yaml +++ b/themes/sumiiro.yaml @@ -8,6 +8,7 @@ source: author: "kyoh86" repo: "https://github.com/kyoh86/sumiiro-vsc" url: "https://marketplace.visualstudio.com/items?itemName=kyoh86.sumiiro" + formats: null colors: bg: "#1C1C1C" fg: "#FCFAF2" diff --git a/themes/summer-night-gray-high-contrast.yaml b/themes/summer-night-gray-high-contrast.yaml deleted file mode 100644 index 8ffb3d32..00000000 --- a/themes/summer-night-gray-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Summer Night Gray High Contrast" -source: - marketplace_id: "jackw01.summer-night-theme" - version: "1.2.1" - installs: 3459 - rating: 5 - ratings: 1 - author: "jackw01" - repo: "https://github.com/jackw01/summer-night-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jackw01.summer-night-theme" -colors: - bg: "#1A1C1E" - fg: "#A6ABB8" - black: "#171C25" - red: "#F06C6F" - green: "#00AB9A" - yellow: "#D08447" - blue: "#00A3D2" - magenta: "#FA5F8B" - cyan: "#00A9B9" - white: "#A6ABB8" - brightBlack: "#171C25" - brightRed: "#F06C6F" - brightGreen: "#00AB9A" - brightYellow: "#D08447" - brightBlue: "#00A3D2" - brightMagenta: "#FA5F8B" - brightCyan: "#00A9B9" - brightWhite: "#A6ABB8" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 55.2 - black: 0 - red: 44.6 - green: 45.9 - yellow: 44.2 - blue: 45.2 - magenta: 44.9 - cyan: 46.4 - white: 55.2 - brightBlack: 0 - brightRed: 44.6 - brightGreen: 45.9 - brightYellow: 44.2 - brightBlue: 45.2 - brightMagenta: 44.9 - brightCyan: 46.4 - brightWhite: 55.2 diff --git a/themes/summer-night-high-contrast.yaml b/themes/summer-night-high-contrast.yaml deleted file mode 100644 index 04de1df8..00000000 --- a/themes/summer-night-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Summer Night High Contrast" -source: - marketplace_id: "jackw01.summer-night-theme" - version: "1.2.1" - installs: 3459 - rating: 5 - ratings: 1 - author: "jackw01" - repo: "https://github.com/jackw01/summer-night-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jackw01.summer-night-theme" -colors: - bg: "#171C25" - fg: "#A6ABB8" - black: "#171C25" - red: "#F06C6F" - green: "#00AB9A" - yellow: "#D08447" - blue: "#00A3D2" - magenta: "#FA5F8B" - cyan: "#00A9B9" - white: "#A6ABB8" - brightBlack: "#171C25" - brightRed: "#F06C6F" - brightGreen: "#00AB9A" - brightYellow: "#D08447" - brightBlue: "#00A3D2" - brightMagenta: "#FA5F8B" - brightCyan: "#00A9B9" - brightWhite: "#A6ABB8" -meta: - mode: "dark" - accent: "red" - hue: 262 - pair: null - contrast: - fg: 55.2 - black: 0 - red: 44.6 - green: 45.9 - yellow: 44.2 - blue: 45.2 - magenta: 44.8 - cyan: 46.3 - white: 55.2 - brightBlack: 0 - brightRed: 44.6 - brightGreen: 45.9 - brightYellow: 44.2 - brightBlue: 45.2 - brightMagenta: 44.8 - brightCyan: 46.3 - brightWhite: 55.2 diff --git a/themes/summer-night.yaml b/themes/summer-night.yaml deleted file mode 100644 index 8041c09f..00000000 --- a/themes/summer-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Summer Night" -source: - marketplace_id: "jackw01.summer-night-theme" - version: "1.2.1" - installs: 3459 - rating: 5 - ratings: 1 - author: "jackw01" - repo: "https://github.com/jackw01/summer-night-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jackw01.summer-night-theme" -colors: - bg: "#21262F" - fg: "#A6ABB8" - black: "#21262F" - red: "#F06C6F" - green: "#00AB9A" - yellow: "#D08447" - blue: "#00A3D2" - magenta: "#FA5F8B" - cyan: "#00A9B9" - white: "#A6ABB8" - brightBlack: "#21262F" - brightRed: "#F06C6F" - brightGreen: "#00AB9A" - brightYellow: "#D08447" - brightBlue: "#00A3D2" - brightMagenta: "#FA5F8B" - brightCyan: "#00A9B9" - brightWhite: "#A6ABB8" -meta: - mode: "dark" - accent: "red" - hue: 262 - pair: null - contrast: - fg: 53.7 - black: 0 - red: 43.1 - green: 44.4 - yellow: 42.7 - blue: 43.7 - magenta: 43.4 - cyan: 44.9 - white: 53.7 - brightBlack: 0 - brightRed: 43.1 - brightGreen: 44.4 - brightYellow: 42.7 - brightBlue: 43.7 - brightMagenta: 43.4 - brightCyan: 44.9 - brightWhite: 53.7 diff --git a/themes/summer-nights-lullaby.yaml b/themes/summer-nights-lullaby.yaml index 5035f8da..a0719c00 100644 --- a/themes/summer-nights-lullaby.yaml +++ b/themes/summer-nights-lullaby.yaml @@ -8,6 +8,7 @@ source: author: "Andy Pataki" repo: "https://github.com/iamgrid/summer_nights_lullaby_vscode_theme" url: "https://marketplace.visualstudio.com/items?itemName=keatsdothu.summer-nights-lullaby" + formats: null colors: bg: "#201300" fg: "#F09C00" diff --git a/themes/summer-nights.yaml b/themes/summer-nights.yaml index 75427530..f62f791d 100644 --- a/themes/summer-nights.yaml +++ b/themes/summer-nights.yaml @@ -8,6 +8,7 @@ source: author: "Andy Pataki" repo: "https://github.com/iamgrid/summer_nights_vscode_theme" url: "https://marketplace.visualstudio.com/items?itemName=keatsdothu.summer-nights" + formats: null colors: bg: "#222222" fg: "#F0F0F0" diff --git a/themes/summer-palenight.yaml b/themes/summer-palenight.yaml index 74b64dbf..b14a92b6 100644 --- a/themes/summer-palenight.yaml +++ b/themes/summer-palenight.yaml @@ -8,6 +8,7 @@ source: author: "SummerThemes" repo: "https://github.com/SummerThemes/summer-dark-themes" url: "https://marketplace.visualstudio.com/items?itemName=SummerThemes.summer-dark-theme" + formats: null colors: bg: "#292D3E" fg: "#FFDB64" diff --git a/themes/summer.yaml b/themes/summer.yaml deleted file mode 100644 index 81ae456f..00000000 --- a/themes/summer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Summer" -source: - marketplace_id: "flow9s.summer" - version: "0.0.1" - installs: 435 - rating: 0 - ratings: 0 - author: "flow9s" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=flow9s.summer" -colors: - bg: "#FFFBE8" - fg: "#499504" - black: "#353B43" - red: "#E6848A" - green: "#859900" - yellow: "#A8CB8F" - blue: "#75BFEF" - magenta: "#D33682" - cyan: "#93A1A1" - white: "#606060" - brightBlack: "#353B43" - brightRed: "#DC322F" - brightGreen: "#586E75" - brightYellow: "#657B83" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#2AA198" - brightWhite: "#808080" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 62.1 - black: 93.4 - red: 48.1 - green: 56.4 - yellow: 31 - blue: 36.1 - magenta: 67.6 - cyan: 49.3 - white: 78.7 - brightBlack: 93.4 - brightRed: 67.8 - brightGreen: 74.2 - brightYellow: 68.3 - brightBlue: 56.1 - brightMagenta: 67.6 - brightCyan: 55.6 - brightWhite: 64.2 diff --git a/themes/summercamp.yaml b/themes/summercamp.yaml index 1b874ce4..615a53f8 100644 --- a/themes/summercamp.yaml +++ b/themes/summercamp.yaml @@ -8,6 +8,7 @@ source: author: "Cristiano Almeida" repo: "https://github.com/csalmeida/summercamp-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=csalmeida.summercamp" + formats: null colors: bg: "#1D1710" fg: "#F8F5DE" diff --git a/themes/summerrelax.yaml b/themes/summerrelax.yaml index d55cbd36..6b0a4971 100644 --- a/themes/summerrelax.yaml +++ b/themes/summerrelax.yaml @@ -8,6 +8,7 @@ source: author: "rhighs" repo: "https://github.com/rhighs/summer-relax" url: "https://marketplace.visualstudio.com/items?itemName=rhighs.SummerRelax" + formats: null colors: bg: "#252B39" fg: "#D4D4D4" diff --git a/themes/sunbather.yaml b/themes/sunbather.yaml index 1da9c162..0fcc3136 100644 --- a/themes/sunbather.yaml +++ b/themes/sunbather.yaml @@ -8,6 +8,7 @@ source: author: "jpokan" repo: "https://github.com/jpokan/vscode-sunbather" url: "https://marketplace.visualstudio.com/items?itemName=jpokan.vscode-sunbather" + formats: null colors: bg: "#080808" fg: "#C6C6C6" diff --git a/themes/sunilcode-dark-soothing-blue-light-reduced.yaml b/themes/sunilcode-dark-soothing-blue-light-reduced.yaml index c0a72a97..22cb81f7 100644 --- a/themes/sunilcode-dark-soothing-blue-light-reduced.yaml +++ b/themes/sunilcode-dark-soothing-blue-light-reduced.yaml @@ -8,6 +8,7 @@ source: author: "fastestsunil" repo: "https://github.com/fastestsunil/sunilcode-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=fastestsunil.sunilcode-themes" + formats: null colors: bg: "#1A1F2E" fg: "#D4C5B9" diff --git a/themes/sunny.yaml b/themes/sunny.yaml index e75da8dd..f3a3a25c 100644 --- a/themes/sunny.yaml +++ b/themes/sunny.yaml @@ -6,6 +6,7 @@ source: author: "Felipe Castilho" repo: null url: "https://marketplace.visualstudio.com/items?itemName=FelCastilho.Sombrero-Sunny" + formats: null colors: bg: "#1B1B1B" fg: "#D9D9D9" diff --git a/themes/sunset-beach-dark.yaml b/themes/sunset-beach-dark.yaml deleted file mode 100644 index ab9e50b3..00000000 --- a/themes/sunset-beach-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sunset Beach Dark" -source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - rating: 0 - ratings: 0 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" -colors: - bg: "#1A1F2E" - fg: "#E8F4FD" - black: "#252B3D" - red: "#E55039" - green: "#26D0CE" - yellow: "#FFD93D" - blue: "#74C0FC" - magenta: "#B53471" - cyan: "#17A2B8" - white: "#E8F4FD" - brightBlack: "#6C7B95" - brightRed: "#FF6B47" - brightGreen: "#4DABF7" - brightYellow: "#F6C23E" - brightBlue: "#87CEEB" - brightMagenta: "#D63384" - brightCyan: "#20B2AA" - brightWhite: "#F8F4F0" -meta: - mode: "dark" - accent: "red" - hue: 270 - pair: "Sunset Beach Light" - contrast: - fg: 97.4 - black: 0 - red: 35.2 - green: 64.5 - yellow: 83.3 - blue: 62.7 - magenta: 22.4 - cyan: 43 - white: 97.4 - brightBlack: 30 - brightRed: 46.4 - brightGreen: 51.6 - brightYellow: 72.2 - brightBlue: 69.1 - brightMagenta: 29.8 - brightCyan: 49.2 - brightWhite: 99 diff --git a/themes/sunset-beach-light.yaml b/themes/sunset-beach-light.yaml deleted file mode 100644 index b7c36e43..00000000 --- a/themes/sunset-beach-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sunset Beach Light" -source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - rating: 0 - ratings: 0 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" -colors: - bg: "#FEFCF7" - fg: "#2C3E50" - black: "#2C3E50" - red: "#D73027" - green: "#17A2B8" - yellow: "#F6C23E" - blue: "#2E86AB" - magenta: "#B53471" - cyan: "#138496" - white: "#F8F4EB" - brightBlack: "#6B7280" - brightRed: "#E55039" - brightGreen: "#20B2AA" - brightYellow: "#D68910" - brightBlue: "#4DABF7" - brightMagenta: "#D63384" - brightCyan: "#26D0CE" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: "Sunset Beach Dark" - contrast: - fg: 93.6 - black: 93.6 - red: 70.2 - green: 55 - yellow: 26.9 - blue: 66.1 - magenta: 75.6 - cyan: 68.3 - white: 0 - brightBlack: 71.8 - brightRed: 62.6 - brightGreen: 48.9 - brightYellow: 52.1 - brightBlue: 46.6 - brightMagenta: 68.1 - brightCyan: 34.2 - brightWhite: 0 diff --git a/themes/sunset-boulevard.yaml b/themes/sunset-boulevard.yaml index 0f66b8d8..7907e3e4 100644 --- a/themes/sunset-boulevard.yaml +++ b/themes/sunset-boulevard.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#FDF1C2" fg: "#3A2F1A" diff --git a/themes/sunset-noir.yaml b/themes/sunset-noir.yaml index 9641a8f2..c17f8223 100644 --- a/themes/sunset-noir.yaml +++ b/themes/sunset-noir.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#1A0E0A" fg: "#FFF8E1" diff --git a/themes/sunset-serenade.yaml b/themes/sunset-serenade.yaml index fd43cdba..7ecbe333 100644 --- a/themes/sunset-serenade.yaml +++ b/themes/sunset-serenade.yaml @@ -1,4 +1,4 @@ -name: "Sunset serenade" +name: "Sunset Serenade" source: marketplace_id: "kartoffelente.sunset-serenade" version: "1.3.2" @@ -8,6 +8,7 @@ source: author: "Kartoffelente" repo: "https://github.com/helheim0/sunset-serenade" url: "https://marketplace.visualstudio.com/items?itemName=kartoffelente.sunset-serenade" + formats: null colors: bg: "#FFFDF3" fg: "#1C1B19" diff --git a/themes/sunset-theme.yaml b/themes/sunset-theme.yaml index d8e910c7..29aeefa9 100644 --- a/themes/sunset-theme.yaml +++ b/themes/sunset-theme.yaml @@ -8,6 +8,7 @@ source: author: "EdCanCe" repo: "https://github.com/EdCanCe/sunset" url: "https://marketplace.visualstudio.com/items?itemName=EdCanCe.retrowave-sunset-theme" + formats: null colors: bg: "#000814" fg: "#94B2E0" diff --git a/themes/sunsplash-monodark.yaml b/themes/sunsplash-monodark.yaml index e4d2b5cd..8b24ae5b 100644 --- a/themes/sunsplash-monodark.yaml +++ b/themes/sunsplash-monodark.yaml @@ -1,4 +1,4 @@ -name: "sunsplash-monodark" +name: "SunSplash monodark" source: marketplace_id: "Rsanttos.sunsplash-monodark" version: "1.0.0" @@ -8,6 +8,7 @@ source: author: "Rsanttos" repo: "https://github.com/vricardo5/monodark" url: "https://marketplace.visualstudio.com/items?itemName=Rsanttos.sunsplash-monodark" + formats: null colors: bg: "#1B1C22" fg: "#BABE34" diff --git a/themes/supa.yaml b/themes/supa.yaml index 386713eb..21ffd16a 100644 --- a/themes/supa.yaml +++ b/themes/supa.yaml @@ -3,9 +3,13 @@ source: marketplace_id: "tommalitz.simplethemes" version: "0.0.10" installs: 65 + rating: 0 + ratings: 0 author: "tommalitz" repo: "https://github.com/TomMalitz/zedromeda" url: "https://marketplace.visualstudio.com/items?itemName=tommalitz.simplethemes" + formats: + zed: "https://raw.githubusercontent.com/TomMalitz/zedromeda/main/themes/Zedromeda-color-theme.json" colors: bg: "#171717" fg: "#F7F7F8" diff --git a/themes/super-contrast.yaml b/themes/super-contrast.yaml deleted file mode 100644 index 41c2da7e..00000000 --- a/themes/super-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "super-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#15191D" - fg: "#FFFFFF" - black: "#20262C" - red: "#BA0E2E" - green: "#5D67AD" - yellow: "#D60257" - blue: "#E45635" - magenta: "#5D67AD" - cyan: "#E45635" - white: "#FFFFFF" - brightBlack: "#404C58" - brightRed: "#F03E5F" - brightGreen: "#A1A7CF" - brightYellow: "#FD418C" - brightBlue: "#F0A18F" - brightMagenta: "#A1A7CF" - brightCyan: "#F0A18F" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 248 - pair: null - contrast: - fg: 106.7 - black: 0 - red: 20.3 - green: 24.7 - yellow: 27.2 - blue: 36.9 - magenta: 24.7 - cyan: 36.9 - white: 106.7 - brightBlack: 11 - brightRed: 36.6 - brightGreen: 54.6 - brightYellow: 41.3 - brightBlue: 61.1 - brightMagenta: 54.6 - brightCyan: 61.1 - brightWhite: 106.7 diff --git a/themes/super-dark-cyberpunk-green.yaml b/themes/super-dark-cyberpunk-green.yaml index e2a832f2..cbf1ce8f 100644 --- a/themes/super-dark-cyberpunk-green.yaml +++ b/themes/super-dark-cyberpunk-green.yaml @@ -8,6 +8,7 @@ source: author: "J. Feser" repo: "https://github.com/redo7370/darkercolors" url: "https://marketplace.visualstudio.com/items?itemName=JFeser.darkercolor" + formats: null colors: bg: "#050A05" fg: "#F2F2F2" diff --git a/themes/super-dark-cyberpunk-grey.yaml b/themes/super-dark-cyberpunk-grey.yaml index b2fbfe91..2e94dd57 100644 --- a/themes/super-dark-cyberpunk-grey.yaml +++ b/themes/super-dark-cyberpunk-grey.yaml @@ -8,6 +8,7 @@ source: author: "J. Feser" repo: "https://github.com/redo7370/darkercolors" url: "https://marketplace.visualstudio.com/items?itemName=JFeser.darkercolor" + formats: null colors: bg: "#0A0A0A" fg: "#F2F2F2" diff --git a/themes/super-dark-cyberpunk-purple.yaml b/themes/super-dark-cyberpunk-purple.yaml index d68a91c1..77958733 100644 --- a/themes/super-dark-cyberpunk-purple.yaml +++ b/themes/super-dark-cyberpunk-purple.yaml @@ -8,6 +8,7 @@ source: author: "J. Feser" repo: "https://github.com/redo7370/darkercolors" url: "https://marketplace.visualstudio.com/items?itemName=JFeser.darkercolor" + formats: null colors: bg: "#0A0510" fg: "#F2F2F2" diff --git a/themes/super-light.yaml b/themes/super-light.yaml deleted file mode 100644 index 3f037633..00000000 --- a/themes/super-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "super-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#333333" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#5D67AD" - yellow: "#D60257" - blue: "#E45635" - magenta: "#5D67AD" - cyan: "#E45635" - white: "#404040" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#A1A7CF" - brightYellow: "#FD418C" - brightBlue: "#F0A18F" - brightMagenta: "#A1A7CF" - brightCyan: "#F0A18F" - brightWhite: "#666666" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 98.7 - black: 0 - red: 80.3 - green: 75.9 - yellow: 73.4 - blue: 63.6 - magenta: 75.9 - cyan: 63.6 - white: 94.1 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 46.3 - brightYellow: 59.3 - brightBlue: 40 - brightMagenta: 46.3 - brightCyan: 40 - brightWhite: 78.8 diff --git a/themes/super.yaml b/themes/super.yaml deleted file mode 100644 index 8209a844..00000000 --- a/themes/super.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "super" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2C343D" - fg: "#FFFFFF" - black: "#37414C" - red: "#BA0E2E" - green: "#5D67AD" - yellow: "#D60257" - blue: "#E45635" - magenta: "#5D67AD" - cyan: "#E45635" - white: "#FFFFFF" - brightBlack: "#576678" - brightRed: "#F03E5F" - brightGreen: "#A1A7CF" - brightYellow: "#FD418C" - brightBlue: "#F0A18F" - brightMagenta: "#A1A7CF" - brightCyan: "#F0A18F" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 251 - pair: null - contrast: - fg: 102 - black: 0 - red: 15.6 - green: 19.9 - yellow: 22.4 - blue: 32.2 - magenta: 19.9 - cyan: 32.2 - white: 102 - brightBlack: 16.5 - brightRed: 31.9 - brightGreen: 49.9 - brightYellow: 36.6 - brightBlue: 56.4 - brightMagenta: 49.9 - brightCyan: 56.4 - brightWhite: 102 diff --git a/themes/superbright.yaml b/themes/superbright.yaml index 6cd3d629..f3642213 100644 --- a/themes/superbright.yaml +++ b/themes/superbright.yaml @@ -8,6 +8,7 @@ source: author: "DIYST" repo: "https://github.com/diyst/SuperBrightTheme" url: "https://marketplace.visualstudio.com/items?itemName=DIYST.super-bright" + formats: null colors: bg: "#120E16" fg: "#FFFFFF" diff --git a/themes/superdark.yaml b/themes/superdark.yaml index 108b7429..62cb71ae 100644 --- a/themes/superdark.yaml +++ b/themes/superdark.yaml @@ -8,6 +8,7 @@ source: author: "Satnam Singh" repo: "https://github.com/satnamgills/darkerblack" url: "https://marketplace.visualstudio.com/items?itemName=satnamgills.darkerblack" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/supergreatmonokai.yaml b/themes/supergreatmonokai.yaml index d88c0688..cc1e748b 100644 --- a/themes/supergreatmonokai.yaml +++ b/themes/supergreatmonokai.yaml @@ -8,6 +8,7 @@ source: author: "SuperGregM" repo: "https://github.com/SuperGregM/SuperGreatMonokai" url: "https://marketplace.visualstudio.com/items?itemName=SuperGregM.supergreatmonokai" + formats: null colors: bg: "#121212" fg: "#ECECEC" diff --git a/themes/superman-theme.yaml b/themes/superman-theme.yaml deleted file mode 100644 index a36eef71..00000000 --- a/themes/superman-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Superman Theme" -source: - marketplace_id: "AndresCespedesMorales.superman-vscode" - version: "0.1.0" - installs: 1608 - rating: 5 - ratings: 1 - author: "Andres Cespedes Morales" - repo: "https://github.com/pedes/superman-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AndresCespedesMorales.superman-vscode" -colors: - bg: "#263238" - fg: "#EEFFFF" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#E5C07B" - blue: "#528BFF" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#D7DAE0" - brightBlack: "#7F848E" - brightRed: "#F44747" - brightGreen: "#98C379" - brightYellow: "#E5C07B" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#56B6C2" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "orange" - hue: 230 - pair: null - contrast: - fg: 100.4 - black: 0 - red: 37.9 - green: 58.1 - yellow: 66.4 - blue: 37.3 - magenta: 41 - cyan: 50.4 - white: 78.9 - brightBlack: 31.4 - brightRed: 34.3 - brightGreen: 58.1 - brightYellow: 66.4 - brightBlue: 37.3 - brightMagenta: 8.6 - brightCyan: 50.4 - brightWhite: 78.9 diff --git a/themes/supernova.yaml b/themes/supernova.yaml index 833e3818..400220cc 100644 --- a/themes/supernova.yaml +++ b/themes/supernova.yaml @@ -8,6 +8,8 @@ source: author: "Bruno Ventura Gross" repo: "https://github.com/bvgross/superNovaTheme.git#master" url: "https://marketplace.visualstudio.com/items?itemName=bvgross.supernova-theme" + formats: + vim: "https://raw.githubusercontent.com/bvgross/superNovaTheme/master/colors/superNova.vim" colors: bg: "#282828" fg: "#CFCFCF" diff --git a/themes/surreal.yaml b/themes/surreal.yaml index bed31223..61cb5c7d 100644 --- a/themes/surreal.yaml +++ b/themes/surreal.yaml @@ -8,6 +8,7 @@ source: author: "Shayan Chakraborty" repo: "https://github.com/Shayan-R7/vscode-theme-surreal" url: "https://marketplace.visualstudio.com/items?itemName=ShayanChakraborty.surreal-theme" + formats: null colors: bg: "#151515" fg: "#E0E0E0" diff --git a/themes/susuwatari.yaml b/themes/susuwatari.yaml index ce5f1244..008816b7 100644 --- a/themes/susuwatari.yaml +++ b/themes/susuwatari.yaml @@ -8,6 +8,7 @@ source: author: "0xk175un3" repo: "https://github.com/0xk175un3/susuwatari" url: "https://marketplace.visualstudio.com/items?itemName=0xk175un3.susuwatari" + formats: null colors: bg: "#FFFFFF" fg: "#343A40" diff --git a/themes/svelte-5-theme.yaml b/themes/svelte-5-theme.yaml index 87b3c744..cc2ca88b 100644 --- a/themes/svelte-5-theme.yaml +++ b/themes/svelte-5-theme.yaml @@ -8,6 +8,7 @@ source: author: "Zubair Ibn Zamir" repo: "https://github.com/2u841r/svelte-theme-v5" url: "https://marketplace.visualstudio.com/items?itemName=ZubairIbnZamir.svelte-theme-v5" + formats: null colors: bg: "#0D1117" fg: "#E6EDF3" diff --git a/themes/sveltesse-black.yaml b/themes/sveltesse-black.yaml index 39b945a0..c79535c5 100644 --- a/themes/sveltesse-black.yaml +++ b/themes/sveltesse-black.yaml @@ -8,6 +8,7 @@ source: author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" + formats: null colors: bg: "#000000" fg: "#DBD7CA" diff --git a/themes/sveltesse-dark-soft.yaml b/themes/sveltesse-dark-soft.yaml index 47381ca2..e0d321ac 100644 --- a/themes/sveltesse-dark-soft.yaml +++ b/themes/sveltesse-dark-soft.yaml @@ -8,6 +8,7 @@ source: author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" + formats: null colors: bg: "#292929" fg: "#E6E6E6" diff --git a/themes/sveltesse-dark.yaml b/themes/sveltesse-dark.yaml index 77cc3217..bcac4e77 100644 --- a/themes/sveltesse-dark.yaml +++ b/themes/sveltesse-dark.yaml @@ -8,6 +8,7 @@ source: author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" + formats: null colors: bg: "#1A1A1A" fg: "#E6E6E6" diff --git a/themes/sveltesse-light-soft.yaml b/themes/sveltesse-light-soft.yaml index 79639193..13f71d5c 100644 --- a/themes/sveltesse-light-soft.yaml +++ b/themes/sveltesse-light-soft.yaml @@ -8,6 +8,7 @@ source: author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" + formats: null colors: bg: "#F7FAFD" fg: "#212121" diff --git a/themes/sveltesse-light.yaml b/themes/sveltesse-light.yaml index e8781a09..d9e2eeb2 100644 --- a/themes/sveltesse-light.yaml +++ b/themes/sveltesse-light.yaml @@ -8,6 +8,7 @@ source: author: "Antonio Sarcevic" repo: "https://github.com/SarcevicAntonio/vscode-theme-sveltesse" url: "https://marketplace.visualstudio.com/items?itemName=AntonioSarcevic.theme-sveltesse" + formats: null colors: bg: "#FFFFFF" fg: "#212121" diff --git a/themes/sw-tatooine.yaml b/themes/sw-tatooine.yaml deleted file mode 100644 index 59b9028a..00000000 --- a/themes/sw-tatooine.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "SW: Tatooine" -source: - marketplace_id: "RobertSchnable.star-wars-planets-theme" - version: "1.0.1" - installs: 14 - rating: 0 - ratings: 0 - author: "Robert Schnable" - repo: "https://github.com/your-username/star-wars-planets-theme" - url: "https://marketplace.visualstudio.com/items?itemName=RobertSchnable.star-wars-planets-theme" -colors: - bg: "#1A1408" - fg: "#E0C88A" - black: "#1A1408" - red: "#CC4400" - green: "#8A9040" - yellow: "#C47A15" - blue: "#7A8AAA" - magenta: "#9A6A8A" - cyan: "#7AAA9A" - white: "#E0C88A" - brightBlack: "#1A1408" - brightRed: "#CC4400" - brightGreen: "#8A9040" - brightYellow: "#C47A15" - brightBlue: "#7A8AAA" - brightMagenta: "#9A6A8A" - brightCyan: "#7AAA9A" - brightWhite: "#E0C88A" -meta: - mode: "dark" - accent: "orange" - hue: 84 - pair: null - contrast: - fg: 73.6 - black: 0 - red: 28.9 - green: 39.2 - yellow: 39.5 - blue: 38.6 - magenta: 30.6 - cyan: 50.2 - white: 73.6 - brightBlack: 0 - brightRed: 28.9 - brightGreen: 39.2 - brightYellow: 39.5 - brightBlue: 38.6 - brightMagenta: 30.6 - brightCyan: 50.2 - brightWhite: 73.6 diff --git a/themes/sw61.yaml b/themes/sw61.yaml deleted file mode 100644 index fbad739c..00000000 --- a/themes/sw61.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "SW61" -source: - marketplace_id: "heikopanjas.berlin-postal-themes" - version: "2.0.2" - installs: 38 - rating: 5 - ratings: 1 - author: "Heiko Panjas" - repo: "https://github.com/heikopanjas/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=heikopanjas.berlin-postal-themes" -colors: - bg: "#00205A" - fg: "#C9D1D9" - black: "#484F58" - red: "#EC8E2C" - green: "#58A6FF" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FDAC54" - brightGreen: "#79C0FF" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 260 - pair: null - contrast: - fg: 74.8 - black: 10.3 - red: 50.5 - green: 49.5 - yellow: 49.5 - blue: 49.5 - magenta: 49.5 - cyan: 58.7 - white: 61.3 - brightBlack: 26.5 - brightRed: 64.1 - brightGreen: 62 - brightYellow: 62 - brightBlue: 62 - brightMagenta: 61.9 - brightCyan: 67.2 - brightWhite: 104.7 diff --git a/themes/swablu.yaml b/themes/swablu.yaml index a17c854b..36ce56d9 100644 --- a/themes/swablu.yaml +++ b/themes/swablu.yaml @@ -2,12 +2,13 @@ name: "Swablu" source: marketplace_id: "zaneadix.Swablu" version: "0.0.5" - installs: 944 + installs: 945 rating: 0 ratings: 0 author: "Zane Adickes" repo: "https://github.com/zaneadix/swablu-theme" url: "https://marketplace.visualstudio.com/items?itemName=zaneadix.Swablu" + formats: null colors: bg: "#EBECF0" fg: "#172B4D" diff --git a/themes/swaminarayan.yaml b/themes/swaminarayan.yaml index 8ebdd529..bb802aeb 100644 --- a/themes/swaminarayan.yaml +++ b/themes/swaminarayan.yaml @@ -8,6 +8,7 @@ source: author: "Yagnesh" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Yagnesh.yagnesh" + formats: null colors: bg: "#232636" fg: "#00FFF3" diff --git a/themes/swamp-color-theme.yaml b/themes/swamp-color-theme.yaml deleted file mode 100644 index 48a8b3c9..00000000 --- a/themes/swamp-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "swamp-color-theme" -source: - marketplace_id: "wavebeem.theme-unoduetre" - version: "5.11.1" - installs: 4290 - rating: 5 - ratings: 5 - author: "Sage Fennel" - repo: "https://github.com/wavebeem/vscode-theme-unoduetre" - url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" -colors: - bg: "#1B322A" - fg: "#75F0C7" - black: "#333333" - red: "#DE8778" - green: "#6DE395" - yellow: "#DFCA9B" - blue: "#9CA3E8" - magenta: "#DFA5DB" - cyan: "#66EAE1" - white: "#DDF3EA" - brightBlack: "#333333" - brightRed: "#DE8778" - brightGreen: "#6DE395" - brightYellow: "#DFCA9B" - brightBlue: "#9CA3E8" - brightMagenta: "#DFA5DB" - brightCyan: "#66EAE1" - brightWhite: "#DDF3EA" -meta: - mode: "dark" - accent: "teal" - hue: 170 - pair: null - contrast: - fg: 79.9 - black: 0 - red: 45.5 - green: 71.3 - yellow: 71 - blue: 50.5 - magenta: 59.3 - cyan: 77.3 - white: 92.1 - brightBlack: 0 - brightRed: 45.5 - brightGreen: 71.3 - brightYellow: 71 - brightBlue: 50.5 - brightMagenta: 59.3 - brightCyan: 77.3 - brightWhite: 92.1 diff --git a/themes/sweet-lemon.yaml b/themes/sweet-lemon.yaml deleted file mode 100644 index 3e44b88d..00000000 --- a/themes/sweet-lemon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Sweet Lemon" -source: - marketplace_id: "kgnio.sprinklepack" - version: "0.2.5" - installs: 81 - rating: 5 - ratings: 2 - author: "Kagan Mamak" - repo: "https://github.com/kgnio/sprinklepack" - url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" -colors: - bg: "#FAF9F7" - fg: "#1F1F1F" - black: "#CCCCCC" - red: "#FF6B6B" - green: "#9CD645" - yellow: "#FFD700" - blue: "#5CB7FF" - magenta: "#E086D3" - cyan: "#5DD3D3" - white: "#1F1F1F" - brightBlack: "#E0E0E0" - brightRed: "#FF5F5F" - brightGreen: "#B8F58C" - brightYellow: "#FFF899" - brightBlue: "#8CCFFF" - brightMagenta: "#EDAAFF" - brightCyan: "#8EF0F0" - brightWhite: "#000000" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99.9 - black: 23.7 - red: 49.2 - green: 27.7 - yellow: 15.7 - blue: 38.9 - magenta: 44.6 - cyan: 29.3 - white: 99.9 - brightBlack: 12.3 - brightRed: 51.9 - brightGreen: 10 - brightYellow: 0 - brightBlue: 26.2 - brightMagenta: 29.2 - brightCyan: 12.3 - brightWhite: 102.5 diff --git a/themes/sweet-pascal.yaml b/themes/sweet-pascal.yaml index 400dce46..baa131ea 100644 --- a/themes/sweet-pascal.yaml +++ b/themes/sweet-pascal.yaml @@ -8,6 +8,7 @@ source: author: "Pascal Welsch" repo: "https://github.com/passsy/sweet-pascal" url: "https://marketplace.visualstudio.com/items?itemName=PascalWelsch.sweet-pascal" + formats: null colors: bg: "#222424" fg: "#EEEEEE" diff --git a/themes/sweet-vscode.yaml b/themes/sweet-vscode.yaml index fcab3c02..dc20033d 100644 --- a/themes/sweet-vscode.yaml +++ b/themes/sweet-vscode.yaml @@ -1,13 +1,14 @@ -name: "sweet-vscode" +name: "Sweet Vscode" source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 + marketplace_id: "EliverLara.sweet-vscode" + version: "1.1.1" + installs: 46731 rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + ratings: 5 + author: "Eliver Lara" + repo: "https://github.com/EliverLara/sweet-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=EliverLara.sweet-vscode" + formats: null colors: bg: "#1E1E2E" fg: "#FFFFFF" diff --git a/themes/sweetdracula-monokai.yaml b/themes/sweetdracula-monokai.yaml deleted file mode 100644 index d041e63d..00000000 --- a/themes/sweetdracula-monokai.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "sweetdracula monokai" -source: - marketplace_id: "lefd.sweetdracula-monokai" - version: "1.1.14" - installs: 8144 - rating: 5 - ratings: 1 - author: "lefd" - repo: "https://github.com/LEFD/sweetdracula-monokai" - url: "https://marketplace.visualstudio.com/items?itemName=lefd.sweetdracula-monokai" -colors: - bg: "#161925" - fg: "#F8F8F2" - black: "#666666" - red: "#FD971F" - green: "#A6E22E" - yellow: "#E6DB74" - blue: "#AE81FF" - magenta: "#F92672" - cyan: "#66D9EF" - white: "#E3E3DD" - brightBlack: "#6272A4" - brightRed: "#FF5555" - brightGreen: "#50FA7B" - brightYellow: "#F1FA8C" - brightBlue: "#BD93F9" - brightMagenta: "#FF79C6" - brightCyan: "#8BE9FD" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: 273 - pair: null - contrast: - fg: 101.7 - black: 21.8 - red: 58.4 - green: 76.7 - yellow: 81.8 - blue: 46.2 - magenta: 37 - cyan: 73.1 - white: 88.2 - brightBlack: 27.8 - brightRed: 43.1 - brightGreen: 84.6 - brightYellow: 98.3 - brightBlue: 53.4 - brightMagenta: 54.3 - brightCyan: 83.7 - brightWhite: 101.7 diff --git a/themes/swnb-palenight-theme.yaml b/themes/swnb-palenight-theme.yaml index d09aba9e..c16e408d 100644 --- a/themes/swnb-palenight-theme.yaml +++ b/themes/swnb-palenight-theme.yaml @@ -1,13 +1,14 @@ -name: "Swnb Palenight Theme" +name: "Swnb PaleNight Theme" source: marketplace_id: "Swnb.swnb-material-palenight-theme" version: "0.8.3" - installs: 3132 + installs: 3133 rating: 0 ratings: 0 author: "Swnb" repo: "https://github.com/swnb/vscode-palenight-theme" url: "https://marketplace.visualstudio.com/items?itemName=Swnb.swnb-material-palenight-theme" + formats: null colors: bg: "#292D3E" fg: "#9CB3F5" diff --git a/themes/syl-black.yaml b/themes/syl-black.yaml index 14e868e7..256dace2 100644 --- a/themes/syl-black.yaml +++ b/themes/syl-black.yaml @@ -8,6 +8,7 @@ source: author: "Sylex" repo: "https://github.com/ItzSylex/syl-themes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" + formats: null colors: bg: "#0C0E0F" fg: "#D3C6AA" diff --git a/themes/syl-chocolate.yaml b/themes/syl-chocolate.yaml index f869bf8d..0d0301f4 100644 --- a/themes/syl-chocolate.yaml +++ b/themes/syl-chocolate.yaml @@ -8,6 +8,7 @@ source: author: "Sylex" repo: "https://github.com/ItzSylex/syl-themes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" + formats: null colors: bg: "#211C1C" fg: "#D3C6AA" diff --git a/themes/syl-forest.yaml b/themes/syl-forest.yaml index 772101f7..23c2cde5 100644 --- a/themes/syl-forest.yaml +++ b/themes/syl-forest.yaml @@ -8,6 +8,7 @@ source: author: "Sylex" repo: "https://github.com/ItzSylex/syl-themes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" + formats: null colors: bg: "#1A211C" fg: "#D3C6AA" diff --git a/themes/syl-ice.yaml b/themes/syl-ice.yaml index fe9398cf..7d937571 100644 --- a/themes/syl-ice.yaml +++ b/themes/syl-ice.yaml @@ -8,6 +8,7 @@ source: author: "Sylex" repo: "https://github.com/ItzSylex/syl-themes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" + formats: null colors: bg: "#182233" fg: "#D3C6AA" diff --git a/themes/syl-plum.yaml b/themes/syl-plum.yaml index 2a2d345b..328ec7fe 100644 --- a/themes/syl-plum.yaml +++ b/themes/syl-plum.yaml @@ -8,6 +8,7 @@ source: author: "Sylex" repo: "https://github.com/ItzSylex/syl-themes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" + formats: null colors: bg: "#1A1626" fg: "#D3C6AA" diff --git a/themes/syl-shadow.yaml b/themes/syl-shadow.yaml index e48b0faf..88e2ccf4 100644 --- a/themes/syl-shadow.yaml +++ b/themes/syl-shadow.yaml @@ -8,6 +8,7 @@ source: author: "Sylex" repo: "https://github.com/ItzSylex/syl-themes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Sylex.syl-themes" + formats: null colors: bg: "#2C2C3B" fg: "#D3C6AA" diff --git a/themes/syntax-palette.yaml b/themes/syntax-palette.yaml deleted file mode 100644 index 9bd7de62..00000000 --- a/themes/syntax-palette.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Syntax Palette" -source: - marketplace_id: "aqsa.syntax-palette" - version: "0.0.5" - installs: 218 - rating: 5 - ratings: 1 - author: "aqsa" - repo: "https://github.com/Bacteria007/syntax-palette" - url: "https://marketplace.visualstudio.com/items?itemName=aqsa.syntax-palette" -colors: - bg: "#1A1D24" - fg: "#F1F5F9" - black: "#1F2937" - red: "#EF4444" - green: "#10B981" - yellow: "#F59E0B" - blue: "#3B82F6" - magenta: "#8B5CF6" - cyan: "#06B6D4" - white: "#F8FAFC" - brightBlack: "#1F2937" - brightRed: "#EF4444" - brightGreen: "#10B981" - brightYellow: "#F59E0B" - brightBlue: "#3B82F6" - brightMagenta: "#8B5CF6" - brightCyan: "#06B6D4" - brightWhite: "#F8FAFC" -meta: - mode: "dark" - accent: "magenta" - hue: 267 - pair: null - contrast: - fg: 99.2 - black: 0 - red: 36.1 - green: 51.2 - yellow: 58.7 - blue: 36.1 - magenta: 31.2 - cyan: 53.2 - white: 102.7 - brightBlack: 0 - brightRed: 36.1 - brightGreen: 51.2 - brightYellow: 58.7 - brightBlue: 36.1 - brightMagenta: 31.2 - brightCyan: 53.2 - brightWhite: 102.7 diff --git a/themes/synthe.yaml b/themes/synthe.yaml index 9ef56356..3a1c2ce0 100644 --- a/themes/synthe.yaml +++ b/themes/synthe.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "sesav.synthe-theme" version: "1.0.3" installs: 68 + rating: 0 + ratings: 0 author: "sesav" repo: "https://github.com/sesav/synthe-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=sesav.synthe-theme" + formats: null colors: bg: "#26222A" fg: "#C7C7C7" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "green" hue: 308 + pair: null contrast: fg: 70 black: 0 diff --git a/themes/synthesis.yaml b/themes/synthesis.yaml index 4f74658f..ae9da6c6 100644 --- a/themes/synthesis.yaml +++ b/themes/synthesis.yaml @@ -8,6 +8,7 @@ source: author: "dazon" repo: null url: "https://marketplace.visualstudio.com/items?itemName=dazon.synthesis" + formats: null colors: bg: "#111111" fg: "#FFFFFF" diff --git a/themes/synthor-dark-fork.yaml b/themes/synthor-dark-fork.yaml deleted file mode 100644 index 9c621c20..00000000 --- a/themes/synthor-dark-fork.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Synthor Dark - Fork" -source: - marketplace_id: "adinahawaldar.synthor-dark" - version: "0.0.10" - installs: 42 - author: "adinahawaldar" - repo: "https://github.com/adinahawaldar/synthor-dark" - url: "https://marketplace.visualstudio.com/items?itemName=adinahawaldar.synthor-dark" -colors: - bg: "#14161E" - fg: "#FDFDFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#6298D3" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 274 - pair: null - contrast: - fg: 105.7 - black: 0 - red: 26.8 - green: 53.1 - yellow: 85.7 - blue: 44 - magenta: 29.8 - cyan: 47.6 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.6 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.4 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/synthwave-2077.yaml b/themes/synthwave-2077.yaml index f46f69ce..7bd488ed 100644 --- a/themes/synthwave-2077.yaml +++ b/themes/synthwave-2077.yaml @@ -2,12 +2,13 @@ name: "Synthwave 2077" source: marketplace_id: "DangoWeb.synthwave-2077" version: "1.0.1" - installs: 8902 + installs: 8908 rating: 5 ratings: 1 author: "Dango Web Solutions" repo: "https://github.com/faisalnjs/Synthwave-2077" url: "https://marketplace.visualstudio.com/items?itemName=DangoWeb.synthwave-2077" + formats: null colors: bg: "#101116" fg: "#00D4B1" diff --git a/themes/synthwave-84-csav-edition.yaml b/themes/synthwave-84-csav-edition.yaml index 1ad0440d..7074417e 100644 --- a/themes/synthwave-84-csav-edition.yaml +++ b/themes/synthwave-84-csav-edition.yaml @@ -1,13 +1,14 @@ -name: "Synthwave '84 - CSAV edition" +name: "Synthwave '84 csav edition" source: - marketplace_id: "csdotav.synthwave84-monokai-edition" - version: "0.0.1" - installs: 3772 + marketplace_id: "csdotav.synthwave84-csav-edition" + version: "1.0.1" + installs: 3923 rating: 0 ratings: 0 author: "csdotav" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=csdotav.synthwave84-monokai-edition" + repo: "https://github.com/ArielCalisaya/synthwave84-csdotav" + url: "https://marketplace.visualstudio.com/items?itemName=csdotav.synthwave84-csav-edition" + formats: null colors: bg: "#262335" fg: "#D4D4D4" diff --git a/themes/synthwave-alpha.yaml b/themes/synthwave-alpha.yaml index b5d1524d..0dbbcbe4 100644 --- a/themes/synthwave-alpha.yaml +++ b/themes/synthwave-alpha.yaml @@ -8,6 +8,7 @@ source: author: "Viktor Persson" repo: "https://github.com/vikpe/synthwave-alpha-vscode" url: "https://marketplace.visualstudio.com/items?itemName=vikpe.synthwave-alpha" + formats: null colors: bg: "#241B30" fg: "#F2F2E3" diff --git a/themes/synthwave-material-ansi-16.yaml b/themes/synthwave-material-ansi-16.yaml index 3c190b1b..8a3481ae 100644 --- a/themes/synthwave-material-ansi-16.yaml +++ b/themes/synthwave-material-ansi-16.yaml @@ -8,6 +8,8 @@ source: author: "chtenb" repo: "https://github.com/chtenb/vscode-ansi16" url: "https://marketplace.visualstudio.com/items?itemName=ctenbrinke.ansi16" + formats: + sublime: "https://raw.githubusercontent.com/chtenb/vscode-ansi16/main/themes/material-ansi16.tmTheme" colors: bg: "#262335" fg: "#CCCCCC" diff --git a/themes/synthwave-neon.yaml b/themes/synthwave-neon.yaml deleted file mode 100644 index 591838d2..00000000 --- a/themes/synthwave-neon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Synthwave-Neon" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#153C51" - fg: "#FAFAFA" - black: "#153C51" - red: "#DF6891" - green: "#29C3A0" - yellow: "#D29922" - blue: "#F551D1" - magenta: "#F551D1" - cyan: "#29C3A0" - white: "#FAFAFA" - brightBlack: "#153C51" - brightRed: "#DF6891" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#F551D1" - brightMagenta: "#F551D1" - brightCyan: "#29C3A0" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "pink" - hue: 236 - pair: null - contrast: - fg: 97 - black: 0 - red: 35.3 - green: 51.1 - yellow: 45.1 - blue: 38.5 - magenta: 38.5 - cyan: 51.1 - white: 97 - brightBlack: 0 - brightRed: 35.3 - brightGreen: 51.1 - brightYellow: 45.1 - brightBlue: 38.5 - brightMagenta: 38.5 - brightCyan: 51.1 - brightWhite: 97 diff --git a/themes/synthwave.yaml b/themes/synthwave.yaml index 3a733143..be65646b 100644 --- a/themes/synthwave.yaml +++ b/themes/synthwave.yaml @@ -8,6 +8,7 @@ source: author: "Jonaqhan" repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" + formats: null colors: bg: "#261623" fg: "#71D5D5" diff --git a/themes/synthy.yaml b/themes/synthy.yaml index ed606add..a2aef717 100644 --- a/themes/synthy.yaml +++ b/themes/synthy.yaml @@ -1,4 +1,4 @@ -name: "synthy" +name: "Synthy" source: marketplace_id: "yondav.synthy" version: "1.0.2" @@ -8,6 +8,7 @@ source: author: "yondav" repo: "https://github.com/yondav/synthy" url: "https://marketplace.visualstudio.com/items?itemName=yondav.synthy" + formats: null colors: bg: "#161618" fg: "#F1EBF3" diff --git a/themes/sypher.yaml b/themes/sypher.yaml index cd37a4db..bff3e668 100644 --- a/themes/sypher.yaml +++ b/themes/sypher.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "CodingInSylens.sypher-visual-studio-code" version: "0.0.1" installs: 125 + rating: 0 + ratings: 0 author: "CodingInSylens" repo: "https://github.com/Sylenss/Sypher" url: "https://marketplace.visualstudio.com/items?itemName=CodingInSylens.sypher-visual-studio-code" + formats: null colors: bg: "#1B2229" fg: "#B8934E" diff --git a/themes/syrinx.yaml b/themes/syrinx.yaml index e9544579..b9ee8ee6 100644 --- a/themes/syrinx.yaml +++ b/themes/syrinx.yaml @@ -8,6 +8,7 @@ source: author: "JohannesFreutel" repo: "https://github.com/JohannesFreutel/syrinx-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.syrinx" + formats: null colors: bg: "#141C27" fg: "#F0F0F0" diff --git a/themes/sys1.yaml b/themes/sys1.yaml index 14159bc9..dc81408a 100644 --- a/themes/sys1.yaml +++ b/themes/sys1.yaml @@ -8,6 +8,7 @@ source: author: "adrianlimws" repo: "https://github.com/adrianlimws/sys1-theme" url: "https://marketplace.visualstudio.com/items?itemName=adrianlimws.sys1-theme" + formats: null colors: bg: "#131313" fg: "#FFF668" diff --git a/themes/sysop.yaml b/themes/sysop.yaml index 77929e2b..d90a2351 100644 --- a/themes/sysop.yaml +++ b/themes/sysop.yaml @@ -8,6 +8,7 @@ source: author: "Urtokk" repo: "https://github.com/urtokk/vscode-theme-sysop" url: "https://marketplace.visualstudio.com/items?itemName=Urtokk.sysoptheme" + formats: null colors: bg: "#101010" fg: "#00A6A6" diff --git a/themes/t-on-no-c-digo.yaml b/themes/t-on-no-c-digo.yaml deleted file mode 100644 index f612ef59..00000000 --- a/themes/t-on-no-c-digo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tô on no código" -source: - marketplace_id: "IsraelBatista.to-on-no-codigo" - version: "0.2.1" - installs: 462 - rating: 0 - ratings: 0 - author: "Israel Batista" - repo: "https://github.com/israel77/to-on-no-codigo" - url: "https://marketplace.visualstudio.com/items?itemName=IsraelBatista.to-on-no-codigo" -colors: - bg: "#000C23" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#5AAAA0" - yellow: "#FCFC30" - blue: "#465EFF" - magenta: "#BC3FBC" - cyan: "#00EBD0" - white: "#CCCCCC" - brightBlack: "#69696E" - brightRed: "#F14C4C" - brightGreen: "#88C3BE" - brightYellow: "#F5F543" - brightBlue: "#54DCFC" - brightMagenta: "#D670D6" - brightCyan: "#83FFEA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: 256 - pair: null - contrast: - fg: 107.5 - black: 0 - red: 27.4 - green: 48.8 - yellow: 100.5 - blue: 28.2 - magenta: 30.4 - cyan: 79.3 - white: 75.3 - brightBlack: 24.1 - brightRed: 39.2 - brightGreen: 63.8 - brightYellow: 96.3 - brightBlue: 75.4 - brightMagenta: 46 - brightCyan: 94.1 - brightWhite: 107.5 diff --git a/themes/t-theme.yaml b/themes/t-theme.yaml index c5cc8029..b69c4882 100644 --- a/themes/t-theme.yaml +++ b/themes/t-theme.yaml @@ -8,6 +8,7 @@ source: author: "Tathagata Chakraborty" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tathagata1805.t-theme" + formats: null colors: bg: "#2F3243" fg: "#B4B4B4" diff --git a/themes/t3chdad-darkside-fork.yaml b/themes/t3chdad-darkside-fork.yaml deleted file mode 100644 index f8ac60e4..00000000 --- a/themes/t3chdad-darkside-fork.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "T3chDad Darkside - Fork" -source: - marketplace_id: "T3chDad.t3chdad-darkside" - version: "0.2.3" - installs: 69 - author: "T3chDad" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=T3chDad.t3chdad-darkside" -colors: - bg: "#1E1E1E" - fg: "#EAEAEA" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 92.4 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/t3nsor-solo-leveling.yaml b/themes/t3nsor-solo-leveling.yaml deleted file mode 100644 index e1231fd7..00000000 --- a/themes/t3nsor-solo-leveling.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "t3nsor-solo-leveling" -source: - marketplace_id: "t3nsor.t3nsor-solo-leveling-purple" - version: "0.0.1" - installs: 353 - rating: 5 - ratings: 1 - author: "t3nsor" - repo: "https://github.com/t3nsor98/t3nsor-solo-leveling" - url: "https://marketplace.visualstudio.com/items?itemName=t3nsor.t3nsor-solo-leveling-purple" -colors: - bg: "#070215" - fg: "#E1E1E0" - black: "#474747" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 295 - pair: null - contrast: - fg: 88.4 - black: 10.8 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.4 - magenta: 30.7 - cyan: 48.5 - white: 90.9 - brightBlack: 23 - brightRed: 39.5 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 40.9 - brightMagenta: 46.3 - brightCyan: 56.3 - brightWhite: 90.9 diff --git a/themes/taco-syntax.yaml b/themes/taco-syntax.yaml index 89a8c8ea..ceaa28a6 100644 --- a/themes/taco-syntax.yaml +++ b/themes/taco-syntax.yaml @@ -8,6 +8,7 @@ source: author: "Reaper" repo: "https://github.com/barelyhuman/taco-syntax" url: "https://marketplace.visualstudio.com/items?itemName=barelyreaper.taco-syntax" + formats: null colors: bg: "#212529" fg: "#E9ECEF" diff --git a/themes/tactical-ops.yaml b/themes/tactical-ops.yaml deleted file mode 100644 index cc927d86..00000000 --- a/themes/tactical-ops.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tactical-Ops" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#180809" - fg: "#FCFCFC" - black: "#180809" - red: "#FEA901" - green: "#29C3A0" - yellow: "#D29922" - blue: "#FF4756" - magenta: "#FF4756" - cyan: "#29C3A0" - white: "#FCFCFC" - brightBlack: "#180809" - brightRed: "#FEA901" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#FF4756" - brightMagenta: "#FF4756" - brightCyan: "#29C3A0" - brightWhite: "#FCFCFC" -meta: - mode: "dark" - accent: "orange" - hue: 17 - pair: null - contrast: - fg: 105.6 - black: 0 - red: 65.6 - green: 58.3 - yellow: 52.4 - blue: 42 - magenta: 42 - cyan: 58.3 - white: 105.6 - brightBlack: 0 - brightRed: 65.6 - brightGreen: 58.3 - brightYellow: 52.4 - brightBlue: 42 - brightMagenta: 42 - brightCyan: 58.3 - brightWhite: 105.6 diff --git a/themes/tahigh.yaml b/themes/tahigh.yaml index 27efb21f..059ee407 100644 --- a/themes/tahigh.yaml +++ b/themes/tahigh.yaml @@ -8,6 +8,7 @@ source: author: "tahakocabuga" repo: "https://github.com/tahakocabuga/vscode-blackcurate" url: "https://marketplace.visualstudio.com/items?itemName=tahakocabuga.blackcurate" + formats: null colors: bg: "#000000" fg: "#8F93A2" diff --git a/themes/taiga.yaml b/themes/taiga.yaml index 336f8b57..bb208c3f 100644 --- a/themes/taiga.yaml +++ b/themes/taiga.yaml @@ -8,6 +8,7 @@ source: author: "daniilshat" repo: "https://github.com/daniilshat/taiga" url: "https://marketplace.visualstudio.com/items?itemName=daniilshat.taiga" + formats: null colors: bg: "#031B1B" fg: "#D4D4D4" diff --git a/themes/tail-dark-theme.yaml b/themes/tail-dark-theme.yaml deleted file mode 100644 index f7db2315..00000000 --- a/themes/tail-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tail Dark Theme" -source: - marketplace_id: "webldavi.tail-theme" - version: "0.0.5" - installs: 2420 - rating: 0 - ratings: 0 - author: "webldavi" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=webldavi.tail-theme" -colors: - bg: "#18181B" - fg: "#C1C1CB" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 68.5 - black: 0 - red: 26.6 - green: 52.9 - yellow: 85.5 - blue: 27.3 - magenta: 29.6 - cyan: 47.4 - white: 89.9 - brightBlack: 21.9 - brightRed: 38.4 - brightGreen: 63.4 - brightYellow: 95.5 - brightBlue: 39.9 - brightMagenta: 45.2 - brightCyan: 55.3 - brightWhite: 89.9 diff --git a/themes/tailwind-amber-dark.yaml b/themes/tailwind-amber-dark.yaml index cd92c589..420e6651 100644 --- a/themes/tailwind-amber-dark.yaml +++ b/themes/tailwind-amber-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#78350F" fg: "#FEF3C7" diff --git a/themes/tailwind-amber-light.yaml b/themes/tailwind-amber-light.yaml index 5881e684..bd2a29a2 100644 --- a/themes/tailwind-amber-light.yaml +++ b/themes/tailwind-amber-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#FFFBEB" fg: "#92400E" diff --git a/themes/tailwind-blue-dark.yaml b/themes/tailwind-blue-dark.yaml index 742e8b1f..7a607140 100644 --- a/themes/tailwind-blue-dark.yaml +++ b/themes/tailwind-blue-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#1E3A8A" fg: "#DBEAFE" diff --git a/themes/tailwind-blue-light.yaml b/themes/tailwind-blue-light.yaml index 4091c567..905e6bdf 100644 --- a/themes/tailwind-blue-light.yaml +++ b/themes/tailwind-blue-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#EFF6FF" fg: "#1E40AF" diff --git a/themes/tailwind-breeze.yaml b/themes/tailwind-breeze.yaml index d6ee6ab1..83db680a 100644 --- a/themes/tailwind-breeze.yaml +++ b/themes/tailwind-breeze.yaml @@ -2,12 +2,14 @@ name: "Tailwind Breeze" source: marketplace_id: "praveenpuglia.tailwind-breeze" version: "2.2.6" - installs: 16540 + installs: 16542 rating: 5 ratings: 1 author: "Praveen Puglia" repo: "https://github.com/praveenpuglia/tailwind-breeze" url: "https://marketplace.visualstudio.com/items?itemName=praveenpuglia.tailwind-breeze" + formats: + iterm2: "https://raw.githubusercontent.com/praveenpuglia/tailwind-breeze/master/iterm/tailwind-breeze.itermcolors" colors: bg: "#FFFFFF" fg: "#1A202C" diff --git a/themes/tailwind-cyan-dark.yaml b/themes/tailwind-cyan-dark.yaml index 3adcfbcd..5ddb8770 100644 --- a/themes/tailwind-cyan-dark.yaml +++ b/themes/tailwind-cyan-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#164E63" fg: "#CFFAFE" diff --git a/themes/tailwind-cyan-light.yaml b/themes/tailwind-cyan-light.yaml index e5b6ef34..656bb724 100644 --- a/themes/tailwind-cyan-light.yaml +++ b/themes/tailwind-cyan-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#ECFEFF" fg: "#155E75" diff --git a/themes/tailwind-dark.yaml b/themes/tailwind-dark.yaml deleted file mode 100644 index 814197b6..00000000 --- a/themes/tailwind-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tailwind - Dark" -source: - marketplace_id: "WollaceBuarque.tailwind-theme" - version: "0.5.7" - installs: 38192 - rating: 5 - ratings: 1 - author: "Wollace Buarque" - repo: "https://github.com/wollace-buarque/tailwind-theme" - url: "https://marketplace.visualstudio.com/items?itemName=WollaceBuarque.tailwind-theme" -colors: - bg: "#1E293B" - fg: "#64748B" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 260 - pair: null - contrast: - fg: 25.1 - black: 0 - red: 24.1 - green: 50.4 - yellow: 83 - blue: 24.8 - magenta: 27.2 - cyan: 45 - white: 87.4 - brightBlack: 19.4 - brightRed: 36 - brightGreen: 60.9 - brightYellow: 93 - brightBlue: 37.4 - brightMagenta: 42.8 - brightCyan: 52.8 - brightWhite: 87.4 diff --git a/themes/tailwind-darkest.yaml b/themes/tailwind-darkest.yaml deleted file mode 100644 index 1293694d..00000000 --- a/themes/tailwind-darkest.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tailwind - Darkest" -source: - marketplace_id: "WollaceBuarque.tailwind-theme" - version: "0.5.7" - installs: 38192 - rating: 5 - ratings: 1 - author: "Wollace Buarque" - repo: "https://github.com/wollace-buarque/tailwind-theme" - url: "https://marketplace.visualstudio.com/items?itemName=WollaceBuarque.tailwind-theme" -colors: - bg: "#0D1628" - fg: "#64748B" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 263 - pair: null - contrast: - fg: 27.7 - black: 0 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 90 - brightBlack: 22.1 - brightRed: 38.6 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90 diff --git a/themes/tailwind-emerald-dark.yaml b/themes/tailwind-emerald-dark.yaml index e8e12c97..11daf81a 100644 --- a/themes/tailwind-emerald-dark.yaml +++ b/themes/tailwind-emerald-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#064E3B" fg: "#D1FAE5" diff --git a/themes/tailwind-emerald-light.yaml b/themes/tailwind-emerald-light.yaml index 2b923c54..4cd670cc 100644 --- a/themes/tailwind-emerald-light.yaml +++ b/themes/tailwind-emerald-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#ECFDF5" fg: "#065F46" diff --git a/themes/tailwind-fuchsia-dark.yaml b/themes/tailwind-fuchsia-dark.yaml index 01875d63..f27bbf44 100644 --- a/themes/tailwind-fuchsia-dark.yaml +++ b/themes/tailwind-fuchsia-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#701A75" fg: "#FAE8FF" diff --git a/themes/tailwind-fuchsia-light.yaml b/themes/tailwind-fuchsia-light.yaml index d4fa1017..5cc1dbd2 100644 --- a/themes/tailwind-fuchsia-light.yaml +++ b/themes/tailwind-fuchsia-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#FDF4FF" fg: "#86198F" diff --git a/themes/tailwind-gray-dark.yaml b/themes/tailwind-gray-dark.yaml index 2d142b4a..77a36894 100644 --- a/themes/tailwind-gray-dark.yaml +++ b/themes/tailwind-gray-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#111827" fg: "#F3F4F6" diff --git a/themes/tailwind-gray-light.yaml b/themes/tailwind-gray-light.yaml index 2c6202dd..135d27f7 100644 --- a/themes/tailwind-gray-light.yaml +++ b/themes/tailwind-gray-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#F9FAFB" fg: "#1F2937" diff --git a/themes/tailwind-green-dark.yaml b/themes/tailwind-green-dark.yaml index a113418a..d0b3d78b 100644 --- a/themes/tailwind-green-dark.yaml +++ b/themes/tailwind-green-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#14532D" fg: "#DCFCE7" diff --git a/themes/tailwind-green-light.yaml b/themes/tailwind-green-light.yaml index 67cba098..4f6665eb 100644 --- a/themes/tailwind-green-light.yaml +++ b/themes/tailwind-green-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#F0FDF4" fg: "#166534" diff --git a/themes/tailwind-indigo-dark.yaml b/themes/tailwind-indigo-dark.yaml index 6869aba4..5405dfd9 100644 --- a/themes/tailwind-indigo-dark.yaml +++ b/themes/tailwind-indigo-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#312E81" fg: "#E0E7FF" diff --git a/themes/tailwind-indigo-light.yaml b/themes/tailwind-indigo-light.yaml index 22307a09..3d2f2c31 100644 --- a/themes/tailwind-indigo-light.yaml +++ b/themes/tailwind-indigo-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#EEF2FF" fg: "#3730A3" diff --git a/themes/tailwind-lime-dark.yaml b/themes/tailwind-lime-dark.yaml index a3f98552..1a2ca401 100644 --- a/themes/tailwind-lime-dark.yaml +++ b/themes/tailwind-lime-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#365314" fg: "#ECFCCB" diff --git a/themes/tailwind-lime-light.yaml b/themes/tailwind-lime-light.yaml index c724647e..edd2323c 100644 --- a/themes/tailwind-lime-light.yaml +++ b/themes/tailwind-lime-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#F7FEE7" fg: "#3F6212" diff --git a/themes/tailwind-moon-blue.yaml b/themes/tailwind-moon-blue.yaml deleted file mode 100644 index bb6d1835..00000000 --- a/themes/tailwind-moon-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tailwind Moon Blue" -source: - marketplace_id: "shadowblood.tailwind-moon" - version: "3.0.2" - installs: 43889 - rating: 5 - ratings: 3 - author: "Lucia Lovelace" - repo: "https://github.com/luciascarlet/tailwind-moon-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=shadowblood.tailwind-moon" -colors: - bg: "#1E293B" - fg: "#E2E8F0" - black: "#000000" - red: "#C53030" - green: "#34D399" - yellow: "#D69E2E" - blue: "#60A5FA" - magenta: "#60A5FA" - cyan: "#319795" - white: "#334155" - brightBlack: "#4A5568" - brightRed: "#E53E3E" - brightGreen: "#48BB78" - brightYellow: "#ECC94B" - brightBlue: "#4299E1" - brightMagenta: "#ED64A6" - brightCyan: "#38B2AC" - brightWhite: "#334155" -meta: - mode: "dark" - accent: "orange" - hue: 260 - pair: null - contrast: - fg: 88.9 - black: 0 - red: 22.3 - green: 62.6 - yellow: 51.6 - blue: 48.8 - magenta: 48.8 - cyan: 35.8 - white: 0 - brightBlack: 12.3 - brightRed: 31.1 - brightGreen: 51 - brightYellow: 72 - brightBlue: 41.1 - brightMagenta: 42 - brightCyan: 48.2 - brightWhite: 0 diff --git a/themes/tailwind-moon-grey.yaml b/themes/tailwind-moon-grey.yaml index f9585c49..51099a30 100644 --- a/themes/tailwind-moon-grey.yaml +++ b/themes/tailwind-moon-grey.yaml @@ -8,6 +8,7 @@ source: author: "laurent lahmy" repo: "https://github.com/alphablend-dev/theme" url: "https://marketplace.visualstudio.com/items?itemName=laurentlahmy.tailwind-theme-zinc" + formats: null colors: bg: "#1F1F22" fg: "#F4F4F5" diff --git a/themes/tailwind-moon.yaml b/themes/tailwind-moon.yaml deleted file mode 100644 index 852cddcc..00000000 --- a/themes/tailwind-moon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tailwind Moon" -source: - marketplace_id: "shadowblood.tailwind-moon" - version: "3.0.2" - installs: 43889 - rating: 5 - ratings: 3 - author: "Lucia Lovelace" - repo: "https://github.com/luciascarlet/tailwind-moon-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=shadowblood.tailwind-moon" -colors: - bg: "#1F2937" - fg: "#E5E7EB" - black: "#000000" - red: "#C53030" - green: "#34D399" - yellow: "#D69E2E" - blue: "#60A5FA" - magenta: "#60A5FA" - cyan: "#319795" - white: "#374151" - brightBlack: "#4A5568" - brightRed: "#E53E3E" - brightGreen: "#48BB78" - brightYellow: "#ECC94B" - brightBlue: "#4299E1" - brightMagenta: "#ED64A6" - brightCyan: "#38B2AC" - brightWhite: "#374151" -meta: - mode: "dark" - accent: "orange" - hue: 257 - pair: null - contrast: - fg: 88.7 - black: 0 - red: 22.3 - green: 62.6 - yellow: 51.6 - blue: 48.8 - magenta: 48.8 - cyan: 35.8 - white: 0 - brightBlack: 12.4 - brightRed: 31.2 - brightGreen: 51 - brightYellow: 72.1 - brightBlue: 41.2 - brightMagenta: 42.1 - brightCyan: 48.3 - brightWhite: 0 diff --git a/themes/tailwind-neutral-dark.yaml b/themes/tailwind-neutral-dark.yaml index c94e8c8f..2d3d832c 100644 --- a/themes/tailwind-neutral-dark.yaml +++ b/themes/tailwind-neutral-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#171717" fg: "#F5F5F5" diff --git a/themes/tailwind-neutral-light.yaml b/themes/tailwind-neutral-light.yaml index 3c88bd42..f25be90c 100644 --- a/themes/tailwind-neutral-light.yaml +++ b/themes/tailwind-neutral-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#FAFAFA" fg: "#262626" diff --git a/themes/tailwind-orange-dark.yaml b/themes/tailwind-orange-dark.yaml index 5aa3e99e..7c195346 100644 --- a/themes/tailwind-orange-dark.yaml +++ b/themes/tailwind-orange-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#7C2D12" fg: "#FFEDD5" diff --git a/themes/tailwind-orange-light.yaml b/themes/tailwind-orange-light.yaml index 15bbb6c0..4d2df087 100644 --- a/themes/tailwind-orange-light.yaml +++ b/themes/tailwind-orange-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#FFF7ED" fg: "#9A3412" diff --git a/themes/tailwind-pink-dark.yaml b/themes/tailwind-pink-dark.yaml index 785154f5..169620a6 100644 --- a/themes/tailwind-pink-dark.yaml +++ b/themes/tailwind-pink-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#831843" fg: "#FCE7F3" diff --git a/themes/tailwind-pink-light.yaml b/themes/tailwind-pink-light.yaml index c56fc36b..d355e7d6 100644 --- a/themes/tailwind-pink-light.yaml +++ b/themes/tailwind-pink-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#FDF2F8" fg: "#9D174D" diff --git a/themes/tailwind-purple-dark.yaml b/themes/tailwind-purple-dark.yaml index a546116d..bc20cbc9 100644 --- a/themes/tailwind-purple-dark.yaml +++ b/themes/tailwind-purple-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#581C87" fg: "#F3E8FF" diff --git a/themes/tailwind-purple-light.yaml b/themes/tailwind-purple-light.yaml index d988dccd..7b3f22e4 100644 --- a/themes/tailwind-purple-light.yaml +++ b/themes/tailwind-purple-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#FAF5FF" fg: "#6B21A8" diff --git a/themes/tailwind-red-dark.yaml b/themes/tailwind-red-dark.yaml index 2cbd4609..dfb787e2 100644 --- a/themes/tailwind-red-dark.yaml +++ b/themes/tailwind-red-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#7F1D1D" fg: "#FEE2E2" diff --git a/themes/tailwind-red-light.yaml b/themes/tailwind-red-light.yaml index 1f374020..f63c8564 100644 --- a/themes/tailwind-red-light.yaml +++ b/themes/tailwind-red-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#FEF2F2" fg: "#991B1B" diff --git a/themes/tailwind-rose-dark.yaml b/themes/tailwind-rose-dark.yaml index 7b30f006..c0c5984a 100644 --- a/themes/tailwind-rose-dark.yaml +++ b/themes/tailwind-rose-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#881337" fg: "#FFE4E6" diff --git a/themes/tailwind-rose-light.yaml b/themes/tailwind-rose-light.yaml index e32fdb4b..181e12ea 100644 --- a/themes/tailwind-rose-light.yaml +++ b/themes/tailwind-rose-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#FFF1F2" fg: "#9F1239" diff --git a/themes/tailwind-sky-dark.yaml b/themes/tailwind-sky-dark.yaml index f0abd1cb..713c0385 100644 --- a/themes/tailwind-sky-dark.yaml +++ b/themes/tailwind-sky-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#0C4A6E" fg: "#E0F2FE" diff --git a/themes/tailwind-sky-light.yaml b/themes/tailwind-sky-light.yaml index 6e9567e8..f42718a1 100644 --- a/themes/tailwind-sky-light.yaml +++ b/themes/tailwind-sky-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#F0F9FF" fg: "#075985" diff --git a/themes/tailwind-slate-dark.yaml b/themes/tailwind-slate-dark.yaml index bc9ed7f0..6d10743a 100644 --- a/themes/tailwind-slate-dark.yaml +++ b/themes/tailwind-slate-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#0F172A" fg: "#F1F5F9" diff --git a/themes/tailwind-slate-light.yaml b/themes/tailwind-slate-light.yaml index d8f7c341..c5c78232 100644 --- a/themes/tailwind-slate-light.yaml +++ b/themes/tailwind-slate-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#F8FAFC" fg: "#1E293B" diff --git a/themes/tailwind-stone-dark.yaml b/themes/tailwind-stone-dark.yaml index dfb6ac75..7abc0782 100644 --- a/themes/tailwind-stone-dark.yaml +++ b/themes/tailwind-stone-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#1C1917" fg: "#F5F5F4" diff --git a/themes/tailwind-stone-light.yaml b/themes/tailwind-stone-light.yaml index fdad2c93..a53a6bb5 100644 --- a/themes/tailwind-stone-light.yaml +++ b/themes/tailwind-stone-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#FAFAF9" fg: "#292524" diff --git a/themes/tailwind-teal-dark.yaml b/themes/tailwind-teal-dark.yaml index 1832e742..4a431c7e 100644 --- a/themes/tailwind-teal-dark.yaml +++ b/themes/tailwind-teal-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#134E4A" fg: "#CCFBF1" diff --git a/themes/tailwind-teal-light.yaml b/themes/tailwind-teal-light.yaml index ece719d0..c2f48511 100644 --- a/themes/tailwind-teal-light.yaml +++ b/themes/tailwind-teal-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#F0FDFA" fg: "#115E59" diff --git a/themes/tailwind-violet-dark.yaml b/themes/tailwind-violet-dark.yaml index 7dd8e74a..7df9d9f1 100644 --- a/themes/tailwind-violet-dark.yaml +++ b/themes/tailwind-violet-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#4C1D95" fg: "#EDE9FE" diff --git a/themes/tailwind-violet-light.yaml b/themes/tailwind-violet-light.yaml index 338a4858..b9c74abc 100644 --- a/themes/tailwind-violet-light.yaml +++ b/themes/tailwind-violet-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#F5F3FF" fg: "#5B21B6" diff --git a/themes/tailwind-yellow-dark.yaml b/themes/tailwind-yellow-dark.yaml index 0b6dbc89..5e0ad4ea 100644 --- a/themes/tailwind-yellow-dark.yaml +++ b/themes/tailwind-yellow-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#713F12" fg: "#FEF9C3" diff --git a/themes/tailwind-yellow-light.yaml b/themes/tailwind-yellow-light.yaml index 6a2d64ff..afb74caf 100644 --- a/themes/tailwind-yellow-light.yaml +++ b/themes/tailwind-yellow-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#FEFCE8" fg: "#854D0E" diff --git a/themes/tailwind-zinc-dark.yaml b/themes/tailwind-zinc-dark.yaml index 9b09bc71..cbf768b7 100644 --- a/themes/tailwind-zinc-dark.yaml +++ b/themes/tailwind-zinc-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#18181B" fg: "#F4F4F5" diff --git a/themes/tailwind-zinc-light.yaml b/themes/tailwind-zinc-light.yaml index 1375397a..7dd65f48 100644 --- a/themes/tailwind-zinc-light.yaml +++ b/themes/tailwind-zinc-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dlandman27.tailwind-themes" version: "1.0.2" installs: 85 + rating: 0 + ratings: 0 author: "Dylan Landman" repo: "https://github.com/dlandman27/tailwind-themes-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=dlandman27.tailwind-themes" + formats: null colors: bg: "#FAFAFA" fg: "#27272A" diff --git a/themes/tailwind.yaml b/themes/tailwind.yaml index 56c0fc89..03d963e0 100644 --- a/themes/tailwind.yaml +++ b/themes/tailwind.yaml @@ -8,6 +8,7 @@ source: author: "securisec" repo: "https://github.com/securisec/code-hapsida" url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null colors: bg: "#181E29" fg: "#EDF2F7" diff --git a/themes/taipei-night.yaml b/themes/taipei-night.yaml index b44031d9..ff3f9040 100644 --- a/themes/taipei-night.yaml +++ b/themes/taipei-night.yaml @@ -8,6 +8,7 @@ source: author: "berniwankenobi" repo: "https://github.com/berniechiu/taipei-night-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=berniwankenobi.taipei-night" + formats: null colors: bg: "#1A1B26" fg: "#A9B1D6" diff --git a/themes/takenawa-modified.yaml b/themes/takenawa-modified.yaml index 005519ab..e2ac9713 100644 --- a/themes/takenawa-modified.yaml +++ b/themes/takenawa-modified.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "heavenosk.takenawa-theme-modified" version: "0.1.4" installs: 64 + rating: 0 + ratings: 0 author: "HeavenOSK" repo: "https://github.com/HeavenOSK/takenawa-theme" url: "https://marketplace.visualstudio.com/items?itemName=heavenosk.takenawa-theme-modified" + formats: null colors: bg: "#0A0D13" fg: "#FFE4E4" diff --git a/themes/takenawa.yaml b/themes/takenawa.yaml index c4f77ec6..4846c23a 100644 --- a/themes/takenawa.yaml +++ b/themes/takenawa.yaml @@ -8,6 +8,7 @@ source: author: "Emanuelle Takenawa" repo: "https://github.com/emanuelletakenawa/takenawa-theme" url: "https://marketplace.visualstudio.com/items?itemName=EmanuelleTakenawa.takenawa-theme" + formats: null colors: bg: "#0F131A" fg: "#FFE4E4" diff --git a/themes/tame-contrast.yaml b/themes/tame-contrast.yaml deleted file mode 100644 index c45df9b0..00000000 --- a/themes/tame-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tame-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#15191C" - fg: "#C0CCDB" - black: "#20262B" - red: "#BA0E2E" - green: "#4571A8" - yellow: "#707BA0" - blue: "#98ABB7" - magenta: "#4571A8" - cyan: "#707BA0" - white: "#D0D9E4" - brightBlack: "#414D56" - brightRed: "#F03E5F" - brightGreen: "#86A6CD" - brightYellow: "#ADB4C9" - brightBlue: "#D4DCE1" - brightMagenta: "#86A6CD" - brightCyan: "#ADB4C9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 73.7 - black: 0 - red: 20.3 - green: 26 - yellow: 31.7 - blue: 54.1 - magenta: 26 - cyan: 31.7 - white: 81.7 - brightBlack: 11.3 - brightRed: 36.6 - brightGreen: 51.5 - brightYellow: 60.7 - brightBlue: 83.4 - brightMagenta: 51.5 - brightCyan: 60.7 - brightWhite: 106.7 diff --git a/themes/tame-light.yaml b/themes/tame-light.yaml deleted file mode 100644 index b8297aff..00000000 --- a/themes/tame-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tame-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#495760" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#4571A8" - yellow: "#707BA0" - blue: "#495760" - magenta: "#4571A8" - cyan: "#707BA0" - white: "#54646E" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#86A6CD" - brightYellow: "#ADB4C9" - brightBlue: "#778B98" - brightMagenta: "#86A6CD" - brightCyan: "#ADB4C9" - brightWhite: "#778B98" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 85.9 - black: 0 - red: 80.3 - green: 74.6 - yellow: 68.8 - blue: 85.9 - magenta: 74.6 - cyan: 68.8 - white: 80.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 49.3 - brightYellow: 40.4 - brightBlue: 63 - brightMagenta: 49.3 - brightCyan: 40.4 - brightWhite: 63 diff --git a/themes/tame.yaml b/themes/tame.yaml deleted file mode 100644 index 99817d75..00000000 --- a/themes/tame.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tame" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#283035" - fg: "#C0CCDB" - black: "#333D44" - red: "#BA0E2E" - green: "#4571A8" - yellow: "#707BA0" - blue: "#98ABB7" - magenta: "#4571A8" - cyan: "#707BA0" - white: "#D0D9E4" - brightBlack: "#54656F" - brightRed: "#F03E5F" - brightGreen: "#86A6CD" - brightYellow: "#ADB4C9" - brightBlue: "#D4DCE1" - brightMagenta: "#86A6CD" - brightCyan: "#ADB4C9" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 235 - pair: null - contrast: - fg: 70 - black: 0 - red: 16.6 - green: 22.3 - yellow: 28 - blue: 50.4 - magenta: 22.3 - cyan: 28 - white: 78.1 - brightBlack: 16.7 - brightRed: 32.9 - brightGreen: 47.8 - brightYellow: 57 - brightBlue: 79.7 - brightMagenta: 47.8 - brightCyan: 57 - brightWhite: 103 diff --git a/themes/tamil-nadu-temple-land.yaml b/themes/tamil-nadu-temple-land.yaml index 241f301f..02897d2e 100644 --- a/themes/tamil-nadu-temple-land.yaml +++ b/themes/tamil-nadu-temple-land.yaml @@ -8,6 +8,7 @@ source: author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" + formats: null colors: bg: "#1A1410" fg: "#F5E6D3" diff --git a/themes/tan-jade.yaml b/themes/tan-jade.yaml index 4f04d4c1..3fe9cf1e 100644 --- a/themes/tan-jade.yaml +++ b/themes/tan-jade.yaml @@ -8,6 +8,7 @@ source: author: "HowManySmall" repo: "https://github.com/ukendio/tan-jade" url: "https://marketplace.visualstudio.com/items?itemName=howmanysmall.vscode-tan-jade-theme" + formats: null colors: bg: "#062626" fg: "#D1B897" diff --git a/themes/tangere-dark.yaml b/themes/tangere-dark.yaml index 35f9ed89..4bb8f939 100644 --- a/themes/tangere-dark.yaml +++ b/themes/tangere-dark.yaml @@ -8,6 +8,7 @@ source: author: "Mihail Dolghintev" repo: "https://github.com/mihaildolghintev/tangere" url: "https://marketplace.visualstudio.com/items?itemName=MihailDolghintev.tangere" + formats: null colors: bg: "#1A2938" fg: "#FDFDD9" diff --git a/themes/tangere-light.yaml b/themes/tangere-light.yaml index c36b2c64..7413555e 100644 --- a/themes/tangere-light.yaml +++ b/themes/tangere-light.yaml @@ -8,6 +8,7 @@ source: author: "Mihail Dolghintev" repo: "https://github.com/mihaildolghintev/tangere" url: "https://marketplace.visualstudio.com/items?itemName=MihailDolghintev.tangere" + formats: null colors: bg: "#FDFDFA" fg: "#000000" diff --git a/themes/tango-plus.yaml b/themes/tango-plus.yaml index f1b6a43e..dce0e919 100644 --- a/themes/tango-plus.yaml +++ b/themes/tango-plus.yaml @@ -8,6 +8,7 @@ source: author: "ludwigkr" repo: "https://github.com/ludwigkr/vscode-tango-plus-theme" url: "https://marketplace.visualstudio.com/items?itemName=ludwigkr.emacs-tango-plus" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/tango.yaml b/themes/tango.yaml index faa573bd..3083f9e2 100644 --- a/themes/tango.yaml +++ b/themes/tango.yaml @@ -8,6 +8,7 @@ source: author: "Aditya Wagh" repo: "https://github.com/ad1tyawagh/tango-plus" url: "https://marketplace.visualstudio.com/items?itemName=ad1tyawagh.tango-plus" + formats: null colors: bg: "#202020" fg: "#D3D7CF" diff --git a/themes/tanuki.yaml b/themes/tanuki.yaml index f8e66eab..bfa8d06e 100644 --- a/themes/tanuki.yaml +++ b/themes/tanuki.yaml @@ -8,6 +8,7 @@ source: author: "Yunsu Bae" repo: "https://github.com/mniYUNSU/Tanuki" url: "https://marketplace.visualstudio.com/items?itemName=YUNSUBAE.tanuki" + formats: null colors: bg: "#0C0D12" fg: "#DEDDD7" diff --git a/themes/tao-theme.yaml b/themes/tao-theme.yaml index ab1cd9ad..2f1c3bfb 100644 --- a/themes/tao-theme.yaml +++ b/themes/tao-theme.yaml @@ -8,6 +8,7 @@ source: author: "LukalaKuka" repo: "https://github.com/LukaLaKuka/Tao-Theme" url: "https://marketplace.visualstudio.com/items?itemName=LukalaKuka.tao-theme" + formats: null colors: bg: "#131316" fg: "#FFFFFF" diff --git a/themes/taquito-darker.yaml b/themes/taquito-darker.yaml index 39326a05..3759a40d 100644 --- a/themes/taquito-darker.yaml +++ b/themes/taquito-darker.yaml @@ -6,6 +6,7 @@ source: author: "darvy" repo: null url: "https://marketplace.visualstudio.com/items?itemName=darvy.darvypro" + formats: null colors: bg: "#0F111A" fg: "#8F93A2" diff --git a/themes/taquito-lighter.yaml b/themes/taquito-lighter.yaml index e87a406e..7767cdcf 100644 --- a/themes/taquito-lighter.yaml +++ b/themes/taquito-lighter.yaml @@ -6,6 +6,7 @@ source: author: "darvy" repo: null url: "https://marketplace.visualstudio.com/items?itemName=darvy.darvypro" + formats: null colors: bg: "#D5D6DB" fg: "#343B59" diff --git a/themes/tara-theme-carbon-high-contrast.yaml b/themes/tara-theme-carbon-high-contrast.yaml deleted file mode 100644 index 0930b669..00000000 --- a/themes/tara-theme-carbon-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tara-Theme-Carbon-High-Contrast" -source: - marketplace_id: "Taraldinn.nishuuu-themes" - version: "4.2.0" - installs: 548 - rating: 5 - ratings: 3 - author: "Taraldinn" - repo: "https://github.com/nishuuu/nishuuu-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" -colors: - bg: "#101213" - fg: "#D9D9D9" - black: "#000000" - red: "#C85E60" - green: "#A3C679" - yellow: "#D5B05F" - blue: "#6A90D0" - magenta: "#A178C4" - cyan: "#6EBAD7" - white: "#FFFFFF" - brightBlack: "#45454A" - brightRed: "#C85E60" - brightGreen: "#A3C679" - brightYellow: "#D5B05F" - brightBlue: "#6A90D0" - brightMagenta: "#A178C4" - brightCyan: "#6EBAD7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83 - black: 0 - red: 34.2 - green: 65.1 - yellow: 61.7 - blue: 41.8 - magenta: 38.7 - cyan: 59.1 - white: 107.3 - brightBlack: 9.8 - brightRed: 34.2 - brightGreen: 65.1 - brightYellow: 61.7 - brightBlue: 41.8 - brightMagenta: 38.7 - brightCyan: 59.1 - brightWhite: 107.3 diff --git a/themes/tara-theme-carbon.yaml b/themes/tara-theme-carbon.yaml deleted file mode 100644 index cd325fd9..00000000 --- a/themes/tara-theme-carbon.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tara-Theme-Carbon" -source: - marketplace_id: "Taraldinn.nishuuu-themes" - version: "4.2.0" - installs: 548 - rating: 5 - ratings: 3 - author: "Taraldinn" - repo: "https://github.com/nishuuu/nishuuu-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" -colors: - bg: "#0A0A0A" - fg: "#D9D9D9" - black: "#000000" - red: "#C85E60" - green: "#A3C679" - yellow: "#D5B05F" - blue: "#6A90D0" - magenta: "#A178C4" - cyan: "#6EBAD7" - white: "#FFFFFF" - brightBlack: "#45454A" - brightRed: "#C85E60" - brightGreen: "#A3C679" - brightYellow: "#D5B05F" - brightBlue: "#6A90D0" - brightMagenta: "#A178C4" - brightCyan: "#6EBAD7" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83.4 - black: 0 - red: 34.6 - green: 65.5 - yellow: 62.1 - blue: 42.2 - magenta: 39.1 - cyan: 59.5 - white: 107.7 - brightBlack: 10.2 - brightRed: 34.6 - brightGreen: 65.5 - brightYellow: 62.1 - brightBlue: 42.2 - brightMagenta: 39.1 - brightCyan: 59.5 - brightWhite: 107.7 diff --git a/themes/tara-theme-deepforest.yaml b/themes/tara-theme-deepforest.yaml deleted file mode 100644 index 4a33e298..00000000 --- a/themes/tara-theme-deepforest.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tara-Theme-Deepforest" -source: - marketplace_id: "Taraldinn.nishuuu-themes" - version: "4.2.0" - installs: 548 - rating: 5 - ratings: 3 - author: "Taraldinn" - repo: "https://github.com/nishuuu/nishuuu-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" -colors: - bg: "#111816" - fg: "#CAE5D5" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#6FA0DE" - magenta: "#A68DCD" - cyan: "#74C9DE" - white: "#FFFFFF" - brightBlack: "#3B544D" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#6FA0DE" - brightMagenta: "#A68DCD" - brightCyan: "#74C9DE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 176 - pair: null - contrast: - fg: 86 - black: 0 - red: 46.6 - green: 84.2 - yellow: 79 - blue: 48.5 - magenta: 46 - cyan: 66 - white: 106.9 - brightBlack: 12.9 - brightRed: 46.6 - brightGreen: 84.2 - brightYellow: 79 - brightBlue: 48.5 - brightMagenta: 46 - brightCyan: 66 - brightWhite: 106.9 diff --git a/themes/tara-theme-ocean.yaml b/themes/tara-theme-ocean.yaml deleted file mode 100644 index f91b1a28..00000000 --- a/themes/tara-theme-ocean.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tara-Theme-Ocean" -source: - marketplace_id: "Taraldinn.nishuuu-themes" - version: "4.2.0" - installs: 548 - rating: 5 - ratings: 3 - author: "Taraldinn" - repo: "https://github.com/nishuuu/nishuuu-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" -colors: - bg: "#0F111A" - fg: "#CED1E3" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#464B5D" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 275 - pair: null - contrast: - fg: 78.6 - black: 0 - red: 47.1 - green: 84.7 - yellow: 79.4 - blue: 56.4 - magenta: 54.2 - cyan: 78.7 - white: 107.3 - brightBlack: 12 - brightRed: 47.1 - brightGreen: 84.7 - brightYellow: 79.4 - brightBlue: 56.4 - brightMagenta: 54.2 - brightCyan: 78.7 - brightWhite: 107.3 diff --git a/themes/tara-theme-palenight.yaml b/themes/tara-theme-palenight.yaml deleted file mode 100644 index fc3bc3db..00000000 --- a/themes/tara-theme-palenight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tara-Theme-Palenight" -source: - marketplace_id: "Taraldinn.nishuuu-themes" - version: "4.2.0" - installs: 548 - rating: 5 - ratings: 3 - author: "Taraldinn" - repo: "https://github.com/nishuuu/nishuuu-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" -colors: - bg: "#292D3E" - fg: "#CED1E3" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 274 - pair: null - contrast: - fg: 74.5 - black: 0 - red: 43 - green: 80.6 - yellow: 75.3 - blue: 52.3 - magenta: 50.1 - cyan: 74.6 - white: 103.3 - brightBlack: 22.8 - brightRed: 43 - brightGreen: 80.6 - brightYellow: 75.3 - brightBlue: 52.3 - brightMagenta: 50.1 - brightCyan: 74.6 - brightWhite: 103.3 diff --git a/themes/tara-theme-teal.yaml b/themes/tara-theme-teal.yaml deleted file mode 100644 index 689c87f0..00000000 --- a/themes/tara-theme-teal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tara-Theme-Teal" -source: - marketplace_id: "Taraldinn.nishuuu-themes" - version: "4.2.0" - installs: 548 - rating: 5 - ratings: 3 - author: "Taraldinn" - repo: "https://github.com/nishuuu/nishuuu-themes" - url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" -colors: - bg: "#263238" - fg: "#D8DFDF" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#546E7A" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 230 - pair: null - contrast: - fg: 81.2 - black: 0 - red: 42.4 - green: 80 - yellow: 74.7 - blue: 51.7 - magenta: 49.6 - cyan: 74.1 - white: 102.7 - brightBlack: 19.7 - brightRed: 42.4 - brightGreen: 80 - brightYellow: 74.7 - brightBlue: 51.7 - brightMagenta: 49.6 - brightCyan: 74.1 - brightWhite: 102.7 diff --git a/themes/taramandal-aurora.yaml b/themes/taramandal-aurora.yaml index 85cc1750..881fd71f 100644 --- a/themes/taramandal-aurora.yaml +++ b/themes/taramandal-aurora.yaml @@ -8,6 +8,7 @@ source: author: "Ramohan Tiwari" repo: "https://github.com/Ramoniswack/TaraMandal-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ramoniswack.taramandal" + formats: null colors: bg: "#030C10" fg: "#E2F3EA" diff --git a/themes/taramandal-dark.yaml b/themes/taramandal-dark.yaml index ae71844d..fb4b0ee0 100644 --- a/themes/taramandal-dark.yaml +++ b/themes/taramandal-dark.yaml @@ -8,6 +8,7 @@ source: author: "Ramohan Tiwari" repo: "https://github.com/Ramoniswack/TaraMandal-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ramoniswack.taramandal" + formats: null colors: bg: "#0A0F14" fg: "#E5F4FF" diff --git a/themes/taramandal-true-cream.yaml b/themes/taramandal-true-cream.yaml index 62a83f63..66624adb 100644 --- a/themes/taramandal-true-cream.yaml +++ b/themes/taramandal-true-cream.yaml @@ -8,6 +8,7 @@ source: author: "Ramohan Tiwari" repo: "https://github.com/Ramoniswack/TaraMandal-Theme" url: "https://marketplace.visualstudio.com/items?itemName=ramoniswack.taramandal" + formats: null colors: bg: "#F0E6D4" fg: "#2D2D5F" diff --git a/themes/tarbooz-dark.yaml b/themes/tarbooz-dark.yaml index ac3dd4a1..8b424735 100644 --- a/themes/tarbooz-dark.yaml +++ b/themes/tarbooz-dark.yaml @@ -8,6 +8,7 @@ source: author: "pabi" repo: "https://github.com/pabi-ai/tarbooz" url: "https://marketplace.visualstudio.com/items?itemName=pabi.tarbooz-theme" + formats: null colors: bg: "#142326" fg: "#C6D6D9" diff --git a/themes/tarbooz-light.yaml b/themes/tarbooz-light.yaml index 9f448274..a06a82fa 100644 --- a/themes/tarbooz-light.yaml +++ b/themes/tarbooz-light.yaml @@ -8,6 +8,7 @@ source: author: "pabi" repo: "https://github.com/pabi-ai/tarbooz" url: "https://marketplace.visualstudio.com/items?itemName=pabi.tarbooz-theme" + formats: null colors: bg: "#F5FAFA" fg: "#000000" diff --git a/themes/tarbooz-underripe.yaml b/themes/tarbooz-underripe.yaml index cb3e90d1..9e52dbe3 100644 --- a/themes/tarbooz-underripe.yaml +++ b/themes/tarbooz-underripe.yaml @@ -8,6 +8,7 @@ source: author: "pabi" repo: "https://github.com/pabi-ai/tarbooz" url: "https://marketplace.visualstudio.com/items?itemName=pabi.tarbooz-theme" + formats: null colors: bg: "#1D1816" fg: "#FFFFFF" diff --git a/themes/tasmania-dark.yaml b/themes/tasmania-dark.yaml deleted file mode 100644 index d9f75bee..00000000 --- a/themes/tasmania-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tasmania Dark" -source: - marketplace_id: "lucidlabs.tasmania-theme" - version: "1.3.0" - installs: 2 - rating: 0 - ratings: 0 - author: "Lucid Labs" - repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.tasmania-theme" -colors: - bg: "#0B1218" - fg: "#E8EDF3" - black: "#0B1218" - red: "#E22339" - green: "#7DD694" - yellow: "#FFCC2C" - blue: "#005A96" - magenta: "#7A5BA5" - cyan: "#5B9BD5" - white: "#E8EDF3" - brightBlack: "#78797E" - brightRed: "#FF4D5E" - brightGreen: "#A3E8B5" - brightYellow: "#FFE066" - brightBlue: "#3D8FD6" - brightMagenta: "#9B7ED9" - brightCyan: "#7EB8DA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 245 - pair: "Tasmania Light" - contrast: - fg: 95.2 - black: 0 - red: 31 - green: 70 - yellow: 79.2 - blue: 17 - magenta: 24.3 - cyan: 45.3 - white: 95.2 - brightBlack: 31 - brightRed: 42.8 - brightGreen: 82.6 - brightYellow: 88.3 - brightBlue: 39.5 - brightMagenta: 41 - brightCyan: 59.5 - brightWhite: 107.3 diff --git a/themes/tasmania-light.yaml b/themes/tasmania-light.yaml deleted file mode 100644 index 8d1b6428..00000000 --- a/themes/tasmania-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tasmania Light" -source: - marketplace_id: "lucidlabs.tasmania-theme" - version: "1.3.0" - installs: 2 - rating: 0 - ratings: 0 - author: "Lucid Labs" - repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.tasmania-theme" -colors: - bg: "#FFFFFF" - fg: "#0B1218" - black: "#0B1218" - red: "#E22339" - green: "#0A690D" - yellow: "#B38800" - blue: "#005A96" - magenta: "#5A3D80" - cyan: "#006A8F" - white: "#FFFFFF" - brightBlack: "#78797E" - brightRed: "#8A1220" - brightGreen: "#2E7A58" - brightYellow: "#FFCC2C" - brightBlue: "#004678" - brightMagenta: "#3D2860" - brightCyan: "#5B9BD5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Tasmania Dark" - contrast: - fg: 105.3 - black: 105.3 - red: 70.2 - green: 83.3 - yellow: 59.7 - blue: 84.5 - magenta: 89.6 - cyan: 79.8 - white: 0 - brightBlack: 70.1 - brightRed: 90.5 - brightGreen: 75.5 - brightYellow: 23.5 - brightBlue: 92.1 - brightMagenta: 98.3 - brightCyan: 56 - brightWhite: 0 diff --git a/themes/taurus.yaml b/themes/taurus.yaml index dbb7d297..47171665 100644 --- a/themes/taurus.yaml +++ b/themes/taurus.yaml @@ -1,4 +1,4 @@ -name: "Taurus" +name: "taurus" source: marketplace_id: "xyr0z1ne.taurus" version: "0.0.5" @@ -8,6 +8,7 @@ source: author: "xyr0z1ne" repo: "https://github.com/Xyr0s1gn/Taurus-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=xyr0z1ne.taurus" + formats: null colors: bg: "#0D0D0D" fg: "#ADB6C2" diff --git a/themes/tbfox-theme-light.yaml b/themes/tbfox-theme-light.yaml index 058ba3ec..d65f2341 100644 --- a/themes/tbfox-theme-light.yaml +++ b/themes/tbfox-theme-light.yaml @@ -6,6 +6,7 @@ source: author: "TristanMarkBarrow" repo: "https://github.com/tristanbarrow/vscode-tbfox-theme" url: "https://marketplace.visualstudio.com/items?itemName=TristanMarkBarrow.tbfox-theme" + formats: null colors: bg: "#FBF9F4" fg: "#2D3748" diff --git a/themes/tbfox-theme.yaml b/themes/tbfox-theme.yaml index edb77962..858fce22 100644 --- a/themes/tbfox-theme.yaml +++ b/themes/tbfox-theme.yaml @@ -6,6 +6,7 @@ source: author: "TristanMarkBarrow" repo: "https://github.com/tristanbarrow/vscode-tbfox-theme" url: "https://marketplace.visualstudio.com/items?itemName=TristanMarkBarrow.tbfox-theme" + formats: null colors: bg: "#131615" fg: "#E5E5E0" diff --git a/themes/tbs-theme.yaml b/themes/tbs-theme.yaml index 8188db06..ea77478b 100644 --- a/themes/tbs-theme.yaml +++ b/themes/tbs-theme.yaml @@ -8,6 +8,7 @@ source: author: "Tbs-theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Tbs-theme.Tbs-theme" + formats: null colors: bg: "#1E1E1E" fg: "#F78C6C" diff --git a/themes/tea-leaves.yaml b/themes/tea-leaves.yaml index 548748de..76991685 100644 --- a/themes/tea-leaves.yaml +++ b/themes/tea-leaves.yaml @@ -8,6 +8,7 @@ source: author: "DasLanky" repo: "https://github.com/DasLanky/tea-leaves" url: "https://marketplace.visualstudio.com/items?itemName=DasLanky.tea-leaves" + formats: null colors: bg: "#1B1F20" fg: "#D4D4D4" diff --git a/themes/teags.yaml b/themes/teags.yaml index 386ea477..ac4c44d1 100644 --- a/themes/teags.yaml +++ b/themes/teags.yaml @@ -8,6 +8,7 @@ source: author: "sokratic" repo: "https://github.com/taylorsegell/Sokratic-VSCODE-Theme" url: "https://marketplace.visualstudio.com/items?itemName=sokratic.sokratic-theme" + formats: null colors: bg: "#3D4B56" fg: "#FFFFFF" diff --git a/themes/teal-abyss.yaml b/themes/teal-abyss.yaml index 9f425596..ee07d1d8 100644 --- a/themes/teal-abyss.yaml +++ b/themes/teal-abyss.yaml @@ -2,10 +2,13 @@ name: "Teal Abyss" source: marketplace_id: "PanthoSarkar.teal-abyss" version: "0.0.4" - installs: 262 + installs: 263 + rating: 0 + ratings: 0 author: "Pantho Sarkar" repo: "https://github.com/panthosarkar/Teal_Abyss" url: "https://marketplace.visualstudio.com/items?itemName=PanthoSarkar.teal-abyss" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/teal-crow-light.yaml b/themes/teal-crow-light.yaml index 751659b4..f558dedc 100644 --- a/themes/teal-crow-light.yaml +++ b/themes/teal-crow-light.yaml @@ -8,6 +8,7 @@ source: author: "mdfaisal" repo: "https://github.com/acej0k3r/mdfaisal-tealcrow" url: "https://marketplace.visualstudio.com/items?itemName=mdfaisal.mdfaisal-tealcrow" + formats: null colors: bg: "#E5D4B1" fg: "#3C3836" diff --git a/themes/teal.yaml b/themes/teal.yaml index 16f3f79d..65fd3f0a 100644 --- a/themes/teal.yaml +++ b/themes/teal.yaml @@ -8,6 +8,7 @@ source: author: "natecrow" repo: "https://github.com/natecrow/consonance-vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=natecrow.consonance-themes" + formats: null colors: bg: "#111111" fg: "#CEC5B4" diff --git a/themes/tealicious.yaml b/themes/tealicious.yaml index 0fbff919..ee0b63b4 100644 --- a/themes/tealicious.yaml +++ b/themes/tealicious.yaml @@ -8,6 +8,7 @@ source: author: "Haroon" repo: "https://github.com/cocomo29/Tealicious" url: "https://marketplace.visualstudio.com/items?itemName=Haroon.Tealicious" + formats: null colors: bg: "#262A33" fg: "#E1E4E8" diff --git a/themes/tealy.yaml b/themes/tealy.yaml index 83b1230b..94237dff 100644 --- a/themes/tealy.yaml +++ b/themes/tealy.yaml @@ -1,11 +1,14 @@ -name: "tealy" +name: "Tealy" source: marketplace_id: "3060ti.tealy" version: "0.0.2" installs: 262 + rating: 0 + ratings: 0 author: "3060ti" repo: null url: "https://marketplace.visualstudio.com/items?itemName=3060ti.tealy" + formats: null colors: bg: "#24483A" fg: "#FFFFFF" diff --git a/themes/team-pastel-colors-theme.yaml b/themes/team-pastel-colors-theme.yaml index 812007ea..153080e4 100644 --- a/themes/team-pastel-colors-theme.yaml +++ b/themes/team-pastel-colors-theme.yaml @@ -2,12 +2,13 @@ name: "Team Pastel Colors Theme" source: marketplace_id: "zumba29.team-pastel-colors" version: "0.0.1" - installs: 347 + installs: 348 rating: 0 ratings: 0 author: "zumba29" repo: "https://github.com/sahilmtayade/pastel-colors-theme" url: "https://marketplace.visualstudio.com/items?itemName=zumba29.team-pastel-colors" + formats: null colors: bg: "#222222" fg: "#F3EBFF" diff --git a/themes/tears-of-the-kingdom-minimal-dark-midnight.yaml b/themes/tears-of-the-kingdom-minimal-dark-midnight.yaml deleted file mode 100644 index 7807787d..00000000 --- a/themes/tears-of-the-kingdom-minimal-dark-midnight.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Tears of the Kingdom – Minimal Dark (Midnight)" -source: - marketplace_id: "AdrianKamulegeya.tears-of-the-kingdom-vscode" - version: "0.1.2" - installs: 49 - author: "Adrian Kamulegeya" - repo: "https://github.com/AdrianKamulegeya/tears-of-the-kingdom-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AdrianKamulegeya.tears-of-the-kingdom-vscode" -colors: - bg: "#0B1010" - fg: "#B8C7C0" - black: "#0B1010" - red: "#9E5A50" - green: "#339F82" - yellow: "#A89054" - blue: "#5F7F95" - magenta: "#3E8F8C" - cyan: "#339F82" - white: "#B8C7C0" - brightBlack: "#536960" - brightRed: "#9E5A50" - brightGreen: "#339F82" - brightYellow: "#A89054" - brightBlue: "#5F7F95" - brightMagenta: "#3E8F8C" - brightCyan: "#339F82" - brightWhite: "#B8C7C0" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 70.2 - black: 0 - red: 25.8 - green: 41.6 - yellow: 43.5 - blue: 32 - magenta: 35.9 - cyan: 41.6 - white: 70.2 - brightBlack: 21.9 - brightRed: 25.8 - brightGreen: 41.6 - brightYellow: 43.5 - brightBlue: 32 - brightMagenta: 35.9 - brightCyan: 41.6 - brightWhite: 70.2 diff --git a/themes/tears-of-the-kingdom-minimal-dark.yaml b/themes/tears-of-the-kingdom-minimal-dark.yaml deleted file mode 100644 index 40443d47..00000000 --- a/themes/tears-of-the-kingdom-minimal-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Tears of the Kingdom - – Minimal Dark" -source: - marketplace_id: "AdrianKamulegeya.tears-of-the-kingdom-vscode" - version: "0.1.2" - installs: 49 - author: "Adrian Kamulegeya" - repo: "https://github.com/AdrianKamulegeya/tears-of-the-kingdom-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=AdrianKamulegeya.tears-of-the-kingdom-vscode" -colors: - bg: "#0F1412" - fg: "#C9D6CF" - black: "#0F1412" - red: "#C06C5F" - green: "#3FBF9A" - yellow: "#C2A86B" - blue: "#6E8FA6" - magenta: "#4FA6A3" - cyan: "#3FBF9A" - white: "#C9D6CF" - brightBlack: "#5E746B" - brightRed: "#C06C5F" - brightGreen: "#3FBF9A" - brightYellow: "#C2A86B" - brightBlue: "#6E8FA6" - brightMagenta: "#4FA6A3" - brightCyan: "#3FBF9A" - brightWhite: "#C9D6CF" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 79.1 - black: 0 - red: 36 - green: 56.5 - yellow: 56 - blue: 39.4 - magenta: 46.5 - cyan: 56.5 - white: 79.1 - brightBlack: 26.4 - brightRed: 36 - brightGreen: 56.5 - brightYellow: 56 - brightBlue: 39.4 - brightMagenta: 46.5 - brightCyan: 56.5 - brightWhite: 79.1 diff --git a/themes/tearz.yaml b/themes/tearz.yaml index e2138677..698334ba 100644 --- a/themes/tearz.yaml +++ b/themes/tearz.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Tearz.tearz" version: "0.0.3" installs: 473 + rating: 0 + ratings: 0 author: "Tearz" repo: "https://github.com/chrislaupama/tearz" url: "https://marketplace.visualstudio.com/items?itemName=Tearz.tearz" + formats: null colors: bg: "#24272E" fg: "#ABB2BF" diff --git a/themes/techrazor-pro.yaml b/themes/techrazor-pro.yaml index 37531fb5..98bb2a88 100644 --- a/themes/techrazor-pro.yaml +++ b/themes/techrazor-pro.yaml @@ -8,6 +8,7 @@ source: author: "Tech Razor" repo: "https://github.com/tech-razor/techrazor-pro-theme" url: "https://marketplace.visualstudio.com/items?itemName=tech-razor.techrazor-pro-theme" + formats: null colors: bg: "#392A48" fg: "#FAF9F6" diff --git a/themes/techset.yaml b/themes/techset.yaml index cd62f909..04593e00 100644 --- a/themes/techset.yaml +++ b/themes/techset.yaml @@ -6,6 +6,7 @@ source: author: "paradoxx" repo: "https://github.com/techset/visual-studio-code" url: "https://marketplace.visualstudio.com/items?itemName=paradoxx.theme-techset" + formats: null colors: bg: "#22192C" fg: "#F8F8F2" diff --git a/themes/techstudent10.yaml b/themes/techstudent10.yaml index 5fe23e63..7bd0e7f8 100644 --- a/themes/techstudent10.yaml +++ b/themes/techstudent10.yaml @@ -8,6 +8,7 @@ source: author: "TechStudent10" repo: "https://github.com/TechStudent11/TechStudent10-Color-Theme" url: "https://marketplace.visualstudio.com/items?itemName=TechStudent10.techstudent10-color-theme" + formats: null colors: bg: "#3B1E00" fg: "#FFFFFF" diff --git a/themes/techswahili-color-theme.yaml b/themes/techswahili-color-theme.yaml index 921ab84b..523598bd 100644 --- a/themes/techswahili-color-theme.yaml +++ b/themes/techswahili-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "TechSWahili" repo: "https://github.com/Ramadhanmkoma/VSCode-Color-Theme-Extension" url: "https://marketplace.visualstudio.com/items?itemName=Ramadhanmkoma.techswahili" + formats: null colors: bg: "#1A1C36" fg: "#F1F1FF" diff --git a/themes/techswahili-deep.yaml b/themes/techswahili-deep.yaml index b19ff1b2..1d21df1d 100644 --- a/themes/techswahili-deep.yaml +++ b/themes/techswahili-deep.yaml @@ -8,6 +8,7 @@ source: author: "TechSWahili" repo: "https://github.com/Ramadhanmkoma/VSCode-Color-Theme-Extension" url: "https://marketplace.visualstudio.com/items?itemName=Ramadhanmkoma.techswahili" + formats: null colors: bg: "#0D0E1C" fg: "#F1F1FF" diff --git a/themes/techswahili-modern-dark.yaml b/themes/techswahili-modern-dark.yaml index 44957e75..a38c2a95 100644 --- a/themes/techswahili-modern-dark.yaml +++ b/themes/techswahili-modern-dark.yaml @@ -8,6 +8,7 @@ source: author: "TechSWahili" repo: "https://github.com/Ramadhanmkoma/VSCode-Color-Theme-Extension" url: "https://marketplace.visualstudio.com/items?itemName=Ramadhanmkoma.techswahili" + formats: null colors: bg: "#0F172A" fg: "#E2E8F0" diff --git a/themes/tecoma-theme.yaml b/themes/tecoma-theme.yaml index c6cb1d8b..f5ac4162 100644 --- a/themes/tecoma-theme.yaml +++ b/themes/tecoma-theme.yaml @@ -8,6 +8,7 @@ source: author: "Karl O'Keeffe" repo: "https://github.com/karl/vscode-karl-okeeffes-theme" url: "https://marketplace.visualstudio.com/items?itemName=monket.karl-okeeffes-theme" + formats: null colors: bg: "#1F1F1F" fg: "#BDBDBD" diff --git a/themes/telax.yaml b/themes/telax.yaml index cc3912cc..d0fccb1c 100644 --- a/themes/telax.yaml +++ b/themes/telax.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "DariusBau.telax" version: "1.0.1" installs: 63 + rating: 0 + ratings: 0 author: "Darius Bau" repo: "https://github.com/baudarius/telax" url: "https://marketplace.visualstudio.com/items?itemName=DariusBau.telax" + formats: null colors: bg: "#202328" fg: "#DADADA" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: 261 + pair: null contrast: fg: 81.6 black: 20.5 diff --git a/themes/telescope-fork.yaml b/themes/telescope-fork.yaml deleted file mode 100644 index 66bf5f89..00000000 --- a/themes/telescope-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Telescope - Fork" -source: - marketplace_id: "Alucardness.telescope-theme" - version: "0.0.6" - installs: 1548 - rating: 5 - ratings: 3 - author: "Alucardness" - repo: "https://github.com/alucardness/telescope-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Alucardness.telescope-theme" -colors: - bg: "#232534" - fg: "#BFC3E2" - black: "#121319" - red: "#BF616A" - green: "#72C2A2" - yellow: "#78B7E2" - blue: "#84A0C6" - magenta: "#A093C7" - cyan: "#89B8C2" - white: "#BCC5D8" - brightBlack: "#3E4960" - brightRed: "#E29199" - brightGreen: "#A0DBC2" - brightYellow: "#A8D2EE" - brightBlue: "#A3BEE3" - brightMagenta: "#C8B5E6" - brightCyan: "#B6D8DE" - brightWhite: "#E1EBFF" -meta: - mode: "dark" - accent: "orange" - hue: 278 - pair: null - contrast: - fg: 68.2 - black: 0 - red: 30.9 - green: 58 - yellow: 56.5 - blue: 46.7 - magenta: 44.8 - cyan: 56.6 - white: 68.2 - brightBlack: 8.5 - brightRed: 51.8 - brightGreen: 74.1 - brightYellow: 72.8 - brightBlue: 63.1 - brightMagenta: 64 - brightCyan: 76.1 - brightWhite: 91.4 diff --git a/themes/telescope.yaml b/themes/telescope.yaml index bbb7d8d6..a4cc71f7 100644 --- a/themes/telescope.yaml +++ b/themes/telescope.yaml @@ -1,52 +1,53 @@ -name: "Telescope" +name: "telescope" source: - marketplace_id: "hmseeb.seeb" - version: "1.1.3" - installs: 2026 - rating: 5 - ratings: 1 - author: "hmseeb" - repo: "https://github.com/hmseeb/dark-owl" - url: "https://marketplace.visualstudio.com/items?itemName=hmseeb.seeb" + marketplace_id: "anyavyazemskaya.telesc0pe" + version: "0.0.1" + installs: 3 + rating: 0 + ratings: 0 + author: "anya vyazemskaya" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=anyavyazemskaya.telesc0pe" + formats: null colors: - bg: "#16171F" - fg: "#BFC3E2" - black: "#121319" - red: "#BF616A" - green: "#72C2A2" - yellow: "#78B7E2" - blue: "#84A0C6" - magenta: "#A093C7" - cyan: "#89B8C2" - white: "#BCC5D8" - brightBlack: "#3E4960" - brightRed: "#E29199" - brightGreen: "#A0DBC2" - brightYellow: "#A8D2EE" - brightBlue: "#A3BEE3" - brightMagenta: "#C8B5E6" - brightCyan: "#B6D8DE" - brightWhite: "#E1EBFF" + bg: "#262734" + fg: "#CDC6FF" + black: "#000000" + red: "#FFB0AC" + green: "#AFFFC8" + yellow: "#FFE7BB" + blue: "#A3B6FF" + magenta: "#D7ABFF" + cyan: "#B9DDD2" + white: "#C4C4C4" + brightBlack: "#5E5E5E" + brightRed: "#FFB0AC" + brightGreen: "#AFFFC8" + brightYellow: "#FFE7BB" + brightBlue: "#A3B6FF" + brightMagenta: "#D7ABFF" + brightCyan: "#B9DDD2" + brightWhite: "#E4E3E2" meta: mode: "dark" - accent: "orange" - hue: 279 + accent: "magenta" + hue: 281 pair: null contrast: - fg: 70.3 + fg: 72.4 black: 0 - red: 32.9 - green: 60 - yellow: 58.5 - blue: 48.7 - magenta: 46.9 - cyan: 58.6 - white: 70.2 - brightBlack: 10.5 - brightRed: 53.8 - brightGreen: 76.2 - brightYellow: 74.8 - brightBlue: 65.2 - brightMagenta: 66 - brightCyan: 78.1 - brightWhite: 93.4 + red: 67.7 + green: 92.9 + yellow: 90.6 + blue: 61.2 + magenta: 63.5 + cyan: 77.8 + white: 67.5 + brightBlack: 16.3 + brightRed: 67.7 + brightGreen: 92.9 + brightYellow: 90.6 + brightBlue: 61.2 + brightMagenta: 63.5 + brightCyan: 77.8 + brightWhite: 86.4 diff --git a/themes/tema-dark-nero.yaml b/themes/tema-dark-nero.yaml index 128a21dd..c914ae33 100644 --- a/themes/tema-dark-nero.yaml +++ b/themes/tema-dark-nero.yaml @@ -8,6 +8,7 @@ source: author: "amarcos1337" repo: null url: "https://marketplace.visualstudio.com/items?itemName=amarcos1337.dark-nero-theme" + formats: null colors: bg: "#1B1B1B" fg: "#FBFBFB" diff --git a/themes/tema-dos-cria.yaml b/themes/tema-dos-cria.yaml index 0867a16d..9ae46145 100644 --- a/themes/tema-dos-cria.yaml +++ b/themes/tema-dos-cria.yaml @@ -1,4 +1,4 @@ -name: "Tema dos cria" +name: "Tema dos Cria" source: marketplace_id: "nul0.tema-dos-cria" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "nul0" repo: "https://github.com/Nulo0/tema-dos-cria" url: "https://marketplace.visualstudio.com/items?itemName=nul0.tema-dos-cria" + formats: null colors: bg: "#1A1B26" fg: "#A9B1D6" diff --git a/themes/tema-felipao.yaml b/themes/tema-felipao.yaml deleted file mode 100644 index 4abeb50b..00000000 --- a/themes/tema-felipao.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "tema felipao" -source: - marketplace_id: "FelipeGalati.felipaotema" - version: "0.0.1" - installs: 54 - author: "Felipe Galati" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=FelipeGalati.felipaotema" -colors: - bg: "#0E0619" - fg: "#B2ACBC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 302 - pair: null - contrast: - fg: 58.5 - black: 0 - red: 27.5 - green: 53.8 - yellow: 86.4 - blue: 28.2 - magenta: 30.6 - cyan: 48.4 - white: 90.8 - brightBlack: 22.9 - brightRed: 39.4 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.8 - brightMagenta: 46.2 - brightCyan: 56.2 - brightWhite: 90.8 diff --git a/themes/teneblattinus.yaml b/themes/teneblattinus.yaml index 925d9147..bc0b153d 100644 --- a/themes/teneblattinus.yaml +++ b/themes/teneblattinus.yaml @@ -8,6 +8,7 @@ source: author: "Eluce" repo: "https://github.com/elucestel4ris/teneblattinus" url: "https://marketplace.visualstudio.com/items?itemName=Eluce.teneblattinus" + formats: null colors: bg: "#06000A" fg: "#C7C3DF" diff --git a/themes/tenebris.yaml b/themes/tenebris.yaml index 968a5d37..57e319a1 100644 --- a/themes/tenebris.yaml +++ b/themes/tenebris.yaml @@ -1,4 +1,4 @@ -name: "Tenebris" +name: "tenebris" source: marketplace_id: "devShed.tenebris" version: "0.2.0" @@ -8,6 +8,7 @@ source: author: "devShed" repo: "https://github.com/5h3d/Tenebris" url: "https://marketplace.visualstudio.com/items?itemName=devShed.tenebris" + formats: null colors: bg: "#222222" fg: "#A2AABC" diff --git a/themes/terafox.yaml b/themes/terafox.yaml deleted file mode 100644 index e11e9354..00000000 --- a/themes/terafox.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Terafox" -source: - marketplace_id: "keifererikson.nightfox" - version: "0.0.14" - installs: 17385 - rating: 5 - ratings: 3 - author: "Keifer Erikson" - repo: "https://github.com/keifererikson/vscode-nightfox" - url: "https://marketplace.visualstudio.com/items?itemName=keifererikson.nightfox" -colors: - bg: "#152528" - fg: "#CDCECF" - black: "#2F3239" - red: "#E85C51" - green: "#7AA4A1" - yellow: "#FDA47F" - blue: "#5A93AA" - magenta: "#AD5C7C" - cyan: "#A1CDD8" - white: "#EBEBEB" - brightBlack: "#484A55" - brightRed: "#D16982" - brightGreen: "#90C7AC" - brightYellow: "#FDB292" - brightBlue: "#73A3B7" - brightMagenta: "#B97490" - brightCyan: "#AFD4DE" - brightWhite: "#E3E3E4" -meta: - mode: "dark" - accent: "orange" - hue: 211 - pair: null - contrast: - fg: 74.3 - black: 0 - red: 37.9 - green: 46.3 - yellow: 62.7 - blue: 37.8 - magenta: 27.7 - cyan: 69.4 - white: 92.3 - brightBlack: 9.6 - brightRed: 37.3 - brightGreen: 63.3 - brightYellow: 68.2 - brightBlue: 46.3 - brightMagenta: 36.5 - brightCyan: 74.1 - brightWhite: 87.3 diff --git a/themes/term.yaml b/themes/term.yaml index 2aff3bca..f5fb8e9f 100644 --- a/themes/term.yaml +++ b/themes/term.yaml @@ -8,6 +8,7 @@ source: author: "distek" repo: "https://github.com/distek/vscode-theme-term" url: "https://marketplace.visualstudio.com/items?itemName=distek.vscode-term-theme" + formats: null colors: bg: "#181B20" fg: "#B5B4D9" diff --git a/themes/terminal-fork.yaml b/themes/terminal-fork.yaml deleted file mode 100644 index fedbf875..00000000 --- a/themes/terminal-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Terminal - Fork" -source: - marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" - version: "9.0.1" - installs: 29917 - rating: 4.6 - ratings: 10 - author: "Hasibur R" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" -colors: - bg: "#000000" - fg: "#39FF14" - black: "#39FF14" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 87 - black: 87 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/terminal.yaml b/themes/terminal.yaml deleted file mode 100644 index 76c4da8f..00000000 --- a/themes/terminal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Terminal" -source: - marketplace_id: "YesCode.terminal-theme" - version: "0.0.9" - installs: 9264 - rating: 0 - ratings: 0 - author: "YesCode" - repo: "https://github.com/yesomac/terminal" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.terminal-theme" -colors: - bg: "#0A0A0A" - fg: "#EEFFFF" - black: "#1D2021" - red: "#FB543F" - green: "#95C085" - yellow: "#FAC03B" - blue: "#00A1F9" - magenta: "#8F4673" - cyan: "#8BA59B" - white: "#A89984" - brightBlack: "#665C54" - brightRed: "#FB543F" - brightGreen: "#CFBDFA" - brightYellow: "#E7F0FF" - brightBlue: "#1E8094" - brightMagenta: "#8F4673" - brightCyan: "#8BA59B" - brightWhite: "#FDF4C1" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 105.4 - black: 0 - red: 42.8 - green: 61.8 - yellow: 73.9 - blue: 48.4 - magenta: 20.4 - cyan: 50.3 - white: 48.1 - brightBlack: 19.4 - brightRed: 42.8 - brightGreen: 72.1 - brightYellow: 97.4 - brightBlue: 30 - brightMagenta: 20.4 - brightCyan: 50.3 - brightWhite: 99.7 diff --git a/themes/terracecat.yaml b/themes/terracecat.yaml index 08b23398..0f43fedb 100644 --- a/themes/terracecat.yaml +++ b/themes/terracecat.yaml @@ -8,6 +8,7 @@ source: author: "Daiki" repo: "https://github.com/Daiki48/TerraceCat" url: "https://marketplace.visualstudio.com/items?itemName=Daiki.terracecat" + formats: null colors: bg: "#263238" fg: "#EEFFFF" diff --git a/themes/terrarium-minimal-dark.yaml b/themes/terrarium-minimal-dark.yaml index 1c15b786..37ab3217 100644 --- a/themes/terrarium-minimal-dark.yaml +++ b/themes/terrarium-minimal-dark.yaml @@ -8,6 +8,7 @@ source: author: "Applied Science" repo: "https://github.com/appliedsciencegroup/terrarium-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=appliedscience.terrarium-theme" + formats: null colors: bg: "#242424" fg: "#E8E8E8" diff --git a/themes/terrarium-minimal-light.yaml b/themes/terrarium-minimal-light.yaml index a0e9917d..f442f337 100644 --- a/themes/terrarium-minimal-light.yaml +++ b/themes/terrarium-minimal-light.yaml @@ -8,6 +8,7 @@ source: author: "Applied Science" repo: "https://github.com/appliedsciencegroup/terrarium-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=appliedscience.terrarium-theme" + formats: null colors: bg: "#FFFFFF" fg: "#4F5252" diff --git a/themes/terrorboy-dark.yaml b/themes/terrorboy-dark.yaml index ade91d20..8e6d0cf3 100644 --- a/themes/terrorboy-dark.yaml +++ b/themes/terrorboy-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Terrorboy.terrorboy-dark" version: "0.3.0" installs: 3 + rating: 0 + ratings: 0 author: "Terrorboy" repo: "https://github.com/Terrorboy/terrorboy-dark" url: "https://marketplace.visualstudio.com/items?itemName=Terrorboy.terrorboy-dark" + formats: null colors: bg: "#212123" fg: "#D4D4D4" diff --git a/themes/tesselate.yaml b/themes/tesselate.yaml index 48a1cf18..fe4fbea7 100644 --- a/themes/tesselate.yaml +++ b/themes/tesselate.yaml @@ -8,6 +8,7 @@ source: author: "MrMartian" repo: "https://github.com/CraigglesO/tesselate-vscode" url: "https://marketplace.visualstudio.com/items?itemName=MrMartian.tesselate" + formats: null colors: bg: "#383B43" fg: "#E0DED5" diff --git a/themes/tesseract-dark.yaml b/themes/tesseract-dark.yaml deleted file mode 100644 index c80f6afb..00000000 --- a/themes/tesseract-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tesseract Dark" -source: - marketplace_id: "martian.tesseract" - version: "1.5.0" - installs: 6308 - rating: 0 - ratings: 0 - author: "Endurance the Martian 👽" - repo: "https://github.com/hendurhance/tesseract" - url: "https://marketplace.visualstudio.com/items?itemName=martian.tesseract" -colors: - bg: "#141B28" - fg: "#EEFFFF" - black: "#363B54" - red: "#F7768E" - green: "#41A6B5" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#787C99" - brightBlack: "#363B54" - brightRed: "#F7768E" - brightGreen: "#41A6B5" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#ACB0D0" -meta: - mode: "dark" - accent: "red" - hue: 262 - pair: null - contrast: - fg: 104.1 - black: 0 - red: 49.5 - green: 45.9 - yellow: 62.3 - blue: 51.2 - magenta: 55.1 - cyan: 70.6 - white: 32.2 - brightBlack: 0 - brightRed: 49.5 - brightGreen: 45.9 - brightYellow: 62.3 - brightBlue: 51.2 - brightMagenta: 55.1 - brightCyan: 70.6 - brightWhite: 59.1 diff --git a/themes/test.yaml b/themes/test.yaml deleted file mode 100644 index b124b78e..00000000 --- a/themes/test.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Test" -source: - marketplace_id: "KuldeepRawat.deepsea" - version: "1.4.0" - installs: 842 - rating: 5 - ratings: 1 - author: "Kuldeep Rawat" - repo: "https://github.com/thekuldeeprawat/deepsea" - url: "https://marketplace.visualstudio.com/items?itemName=KuldeepRawat.deepsea" -colors: - bg: "#040B1F" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 107.6 - black: 0 - red: 27.4 - green: 53.7 - yellow: 86.3 - blue: 28.1 - magenta: 30.5 - cyan: 48.3 - white: 90.7 - brightBlack: 22.8 - brightRed: 39.3 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 90.7 diff --git a/themes/tetra-contrast.yaml b/themes/tetra-contrast.yaml deleted file mode 100644 index 6df63914..00000000 --- a/themes/tetra-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tetra-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#050F11" - fg: "#C9D7DB" - black: "#0B2025" - red: "#BA0E2E" - green: "#148B97" - yellow: "#FDCE7F" - blue: "#E8744A" - magenta: "#E2585D" - cyan: "#148B97" - white: "#D8E2E5" - brightBlack: "#1C5560" - brightRed: "#F03E5F" - brightGreen: "#2ED3E3" - brightYellow: "#FFF4E3" - brightBlue: "#F3BAA5" - brightMagenta: "#F1AFB1" - brightCyan: "#2ED3E3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 210 - pair: null - contrast: - fg: 80.4 - black: 0 - red: 21.2 - green: 34 - yellow: 80.9 - blue: 45.5 - magenta: 38.3 - cyan: 34 - white: 87.7 - brightBlack: 13.3 - brightRed: 37.5 - brightGreen: 68.8 - brightYellow: 101.1 - brightBlue: 72.3 - brightMagenta: 68.3 - brightCyan: 68.8 - brightWhite: 107.6 diff --git a/themes/tetra-light.yaml b/themes/tetra-light.yaml deleted file mode 100644 index 89d3f120..00000000 --- a/themes/tetra-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tetra-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#205A68" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#148B97" - yellow: "#C49A52" - blue: "#E8744A" - magenta: "#E2585D" - cyan: "#148B97" - white: "#266B7B" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#2ED3E3" - brightYellow: "#DEC69E" - brightBlue: "#F3BAA5" - brightMagenta: "#F1AFB1" - brightCyan: "#2ED3E3" - brightWhite: "#389DB6" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 86.6 - black: 0 - red: 80.3 - green: 67.4 - yellow: 50.6 - blue: 56 - magenta: 63.1 - cyan: 67.4 - white: 80 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 33.5 - brightYellow: 29 - brightBlue: 30.2 - brightMagenta: 34 - brightCyan: 33.5 - brightWhite: 58.3 diff --git a/themes/tetra.yaml b/themes/tetra.yaml deleted file mode 100644 index 66f61936..00000000 --- a/themes/tetra.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tetra" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#13363F" - fg: "#C9D7DB" - black: "#194753" - red: "#BA0E2E" - green: "#148B97" - yellow: "#FDCE7F" - blue: "#E8744A" - magenta: "#E2585D" - cyan: "#148B97" - white: "#D8E2E5" - brightBlack: "#2B798D" - brightRed: "#F03E5F" - brightGreen: "#2ED3E3" - brightYellow: "#FFF4E3" - brightBlue: "#F3BAA5" - brightMagenta: "#F1AFB1" - brightCyan: "#2ED3E3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 217 - pair: null - contrast: - fg: 75.1 - black: 0 - red: 15.9 - green: 28.7 - yellow: 75.6 - blue: 40.2 - magenta: 33 - cyan: 28.7 - white: 82.3 - brightBlack: 21.9 - brightRed: 32.2 - brightGreen: 63.5 - brightYellow: 95.8 - brightBlue: 67 - brightMagenta: 62.9 - brightCyan: 63.5 - brightWhite: 102.2 diff --git a/themes/teutobourg.yaml b/themes/teutobourg.yaml index d8a4dfa3..0e06ca60 100644 --- a/themes/teutobourg.yaml +++ b/themes/teutobourg.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "bukefalus.teutobourg" version: "1.0.1" installs: 107 + rating: 0 + ratings: 0 author: "bukefalus" repo: "https://github.com/DominikDolejsi/teutobourg-theme" url: "https://marketplace.visualstudio.com/items?itemName=bukefalus.teutobourg" + formats: null colors: bg: "#0E0906" fg: "#99582A" diff --git a/themes/textmate-rstheme.yaml b/themes/textmate-rstheme.yaml index c2095bba..078b93a2 100644 --- a/themes/textmate-rstheme.yaml +++ b/themes/textmate-rstheme.yaml @@ -8,6 +8,7 @@ source: author: "Nan Xiao" repo: "https://github.com/nanxstats/vscode-textmate-rstheme" url: "https://marketplace.visualstudio.com/items?itemName=nanxstats.textmate-rstheme" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/th-me-dark-aout-contraste-lev.yaml b/themes/th-me-dark-aout-contraste-lev.yaml deleted file mode 100644 index 33c75c3a..00000000 --- a/themes/th-me-dark-aout-contraste-lev.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Thème Dark Aout - Contraste Élevé" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFFF00" - blue: "#0000FF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#555555" - brightRed: "#FF5555" - brightGreen: "#55FF55" - brightYellow: "#FFFF55" - brightBlue: "#5555FF" - brightMagenta: "#FF55FF" - brightCyan: "#55FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 37.5 - green: 86.5 - yellow: 102.7 - blue: 16.2 - magenta: 46.2 - cyan: 92.2 - white: 107.9 - brightBlack: 16.1 - brightRed: 44.4 - brightGreen: 88.1 - brightYellow: 103.1 - brightBlue: 27.4 - brightMagenta: 51.9 - brightCyan: 93.4 - brightWhite: 107.9 diff --git a/themes/th-me-dark-avril-vert-printemps.yaml b/themes/th-me-dark-avril-vert-printemps.yaml deleted file mode 100644 index cf08e73a..00000000 --- a/themes/th-me-dark-avril-vert-printemps.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Thème Dark Avril - Vert Printemps" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#152238" - fg: "#F0F0F0" - black: "#152238" - red: "#FF6666" - green: "#2AD881" - yellow: "#FFD248" - blue: "#33A6F0" - magenta: "#BB59CC" - cyan: "#00C5C9" - white: "#F0F0F0" - brightBlack: "#667A88" - brightRed: "#FF6666" - brightGreen: "#2AD881" - brightYellow: "#FFD248" - brightBlue: "#33A6F0" - brightMagenta: "#BB59CC" - brightCyan: "#00C5C9" - brightWhite: "#F0F0F0" -meta: - mode: "dark" - accent: "pink" - hue: 260 - pair: null - contrast: - fg: 95.6 - black: 0 - red: 45.5 - green: 65.3 - yellow: 79.9 - blue: 47.9 - magenta: 33.5 - cyan: 58.6 - white: 95.6 - brightBlack: 28.2 - brightRed: 45.5 - brightGreen: 65.3 - brightYellow: 79.9 - brightBlue: 47.9 - brightMagenta: 33.5 - brightCyan: 58.6 - brightWhite: 95.6 diff --git a/themes/th-me-dark-janvier-bleu-fonc.yaml b/themes/th-me-dark-janvier-bleu-fonc.yaml deleted file mode 100644 index 2291b1ca..00000000 --- a/themes/th-me-dark-janvier-bleu-fonc.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Thème Dark Janvier - Bleu Foncé" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#0D1B2A" - fg: "#E0E0E0" - black: "#0D1B2A" - red: "#FF4B5C" - green: "#00A676" - yellow: "#F5CB5C" - blue: "#1B98E0" - magenta: "#BB29BB" - cyan: "#00ADB5" - white: "#E0E0E0" - brightBlack: "#546E7A" - brightRed: "#FF4B5C" - brightGreen: "#00A676" - brightYellow: "#F5CB5C" - brightBlue: "#1B98E0" - brightMagenta: "#BB29BB" - brightCyan: "#00ADB5" - brightWhite: "#E0E0E0" -meta: - mode: "dark" - accent: "pink" - hue: 251 - pair: null - contrast: - fg: 86.5 - black: 0 - red: 41.6 - green: 42.7 - yellow: 76.7 - blue: 42 - magenta: 26.8 - cyan: 48 - white: 86.5 - brightBlack: 23.4 - brightRed: 41.6 - brightGreen: 42.7 - brightYellow: 76.7 - brightBlue: 42 - brightMagenta: 26.8 - brightCyan: 48 - brightWhite: 86.5 diff --git a/themes/th-me-dark-juillet-contraste-lev.yaml b/themes/th-me-dark-juillet-contraste-lev.yaml deleted file mode 100644 index 57a0d59d..00000000 --- a/themes/th-me-dark-juillet-contraste-lev.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Thème Dark Juillet - Contraste Élevé" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#001B2E" - fg: "#E6F3FF" - black: "#000000" - red: "#FF8C00" - green: "#4DB6AC" - yellow: "#FFD700" - blue: "#4FB3FF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#555555" - brightRed: "#FF5555" - brightGreen: "#55FF55" - brightYellow: "#FFFF55" - brightBlue: "#5555FF" - brightMagenta: "#FF55FF" - brightCyan: "#55FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 242 - pair: null - contrast: - fg: 97.4 - black: 0 - red: 55.3 - green: 52.8 - yellow: 82.8 - blue: 56.1 - magenta: 44.8 - cyan: 90.8 - white: 106.5 - brightBlack: 14.7 - brightRed: 43 - brightGreen: 86.7 - brightYellow: 101.7 - brightBlue: 25.9 - brightMagenta: 50.4 - brightCyan: 91.9 - brightWhite: 106.5 diff --git a/themes/th-me-dark-juin-high-contrast.yaml b/themes/th-me-dark-juin-high-contrast.yaml deleted file mode 100644 index 93bc3872..00000000 --- a/themes/th-me-dark-juin-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Thème Dark Juin - High Contrast" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#FF3333" - green: "#33FF33" - yellow: "#FFFF33" - blue: "#00AFFF" - magenta: "#FF00FF" - cyan: "#00FAFA" - white: "#FFFFFF" - brightBlack: "#555555" - brightRed: "#FF3333" - brightGreen: "#33FF33" - brightYellow: "#FFFF33" - brightBlue: "#00AFFF" - brightMagenta: "#FF00FF" - brightCyan: "#00FAFA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 39.6 - green: 87 - yellow: 102.8 - blue: 54.6 - magenta: 46.2 - cyan: 89.3 - white: 107.9 - brightBlack: 16.1 - brightRed: 39.6 - brightGreen: 87 - brightYellow: 102.8 - brightBlue: 54.6 - brightMagenta: 46.2 - brightCyan: 89.3 - brightWhite: 107.9 diff --git a/themes/th-me-high-contrast-janvier-r-vis.yaml b/themes/th-me-high-contrast-janvier-r-vis.yaml deleted file mode 100644 index 938f50f4..00000000 --- a/themes/th-me-high-contrast-janvier-r-vis.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Thème High Contrast Janvier - Révisé" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#FF0000" - green: "#00FF00" - yellow: "#FFFF00" - blue: "#1E90FF" - magenta: "#FF00FF" - cyan: "#00FFFF" - white: "#FFFFFF" - brightBlack: "#808080" - brightRed: "#FF4500" - brightGreen: "#32CD32" - brightYellow: "#FFD700" - brightBlue: "#1E90FF" - brightMagenta: "#EE82EE" - brightCyan: "#00CED1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 37.5 - green: 86.5 - yellow: 102.7 - blue: 42.7 - magenta: 46.2 - cyan: 92.2 - white: 107.9 - brightBlack: 34.8 - brightRed: 41.4 - brightGreen: 61.4 - brightYellow: 84.3 - brightBlue: 42.7 - brightMagenta: 56.8 - brightCyan: 65.6 - brightWhite: 107.9 diff --git a/themes/th-me-sombre-d-automne.yaml b/themes/th-me-sombre-d-automne.yaml deleted file mode 100644 index 1c254fc9..00000000 --- a/themes/th-me-sombre-d-automne.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Thème Sombre d'Automne" -source: - marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" - version: "0.9.7" - installs: 822 - rating: 5 - ratings: 1 - author: "Mickael Lherminez" - repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" - url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" -colors: - bg: "#2B1B0F" - fg: "#E0D7C6" - black: "#2B1B0F" - red: "#FF7F50" - green: "#14A460" - yellow: "#D4A15D" - blue: "#5B9BD5" - magenta: "#C678DD" - cyan: "#3A8B91" - white: "#E0D7C6" - brightBlack: "#3A2A1E" - brightRed: "#FF7F50" - brightGreen: "#14A460" - brightYellow: "#FFD700" - brightBlue: "#5B9BD5" - brightMagenta: "#D670D6" - brightCyan: "#8BE9FD" - brightWhite: "#E0D7C6" -meta: - mode: "dark" - accent: "green" - hue: 57 - pair: null - contrast: - fg: 80.9 - black: 0 - red: 51.5 - green: 40.8 - yellow: 54.5 - blue: 43.8 - magenta: 44.2 - cyan: 32.8 - white: 80.9 - brightBlack: 0 - brightRed: 51.5 - brightGreen: 40.8 - brightYellow: 82.3 - brightBlue: 43.8 - brightMagenta: 44.4 - brightCyan: 83 - brightWhite: 80.9 diff --git a/themes/thanatos.yaml b/themes/thanatos.yaml index 2ae3ccdb..4f24f908 100644 --- a/themes/thanatos.yaml +++ b/themes/thanatos.yaml @@ -8,6 +8,7 @@ source: author: "Federico Figueroa C." repo: "https://github.com/fedfigca/thanatos" url: "https://marketplace.visualstudio.com/items?itemName=fede-crc.thanatos" + formats: null colors: bg: "#F6F6F0" fg: "#3F5060" diff --git a/themes/thatdatapurple.yaml b/themes/thatdatapurple.yaml index d470243c..e486be53 100644 --- a/themes/thatdatapurple.yaml +++ b/themes/thatdatapurple.yaml @@ -8,6 +8,7 @@ source: author: "That Data Person Limited" repo: "https://github.com/thatdataperson/ThatDataPurple.VSCode" url: "https://marketplace.visualstudio.com/items?itemName=ThatDataPerson.thatdatapurple" + formats: null colors: bg: "#4320CC" fg: "#D4D4D4" diff --git a/themes/the-best-theme-ever.yaml b/themes/the-best-theme-ever.yaml deleted file mode 100644 index 9f73880a..00000000 --- a/themes/the-best-theme-ever.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "The Best Theme Ever" -source: - marketplace_id: "EduDevHe.thebesttheme" - version: "0.0.0" - installs: 467 - author: "EduDevHe" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=EduDevHe.thebesttheme" -colors: - bg: "#474748" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 68.4 - black: 12.5 - red: 15.6 - green: 41.9 - yellow: 74.5 - blue: 16.3 - magenta: 18.6 - cyan: 36.4 - white: 78.9 - brightBlack: 10.9 - brightRed: 27.4 - brightGreen: 52.4 - brightYellow: 84.5 - brightBlue: 28.9 - brightMagenta: 34.3 - brightCyan: 44.3 - brightWhite: 78.9 diff --git a/themes/the-best-vscode-theme-ever-light.yaml b/themes/the-best-vscode-theme-ever-light.yaml index 8cf1b90f..e096278b 100644 --- a/themes/the-best-vscode-theme-ever-light.yaml +++ b/themes/the-best-vscode-theme-ever-light.yaml @@ -8,6 +8,7 @@ source: author: "DanielRodrigues" repo: "https://github.com/Danielvfrodrigues/bestvscodetheme" url: "https://marketplace.visualstudio.com/items?itemName=danielvfrodrigues.bestvscodetheme" + formats: null colors: bg: "#CCCCCC" fg: "#1F232A" diff --git a/themes/the-dark-stove.yaml b/themes/the-dark-stove.yaml index 6691f5bf..b293dd12 100644 --- a/themes/the-dark-stove.yaml +++ b/themes/the-dark-stove.yaml @@ -8,6 +8,7 @@ source: author: "Andrew Brey" repo: "https://github.com/andrewbrey/vscode-stove-theme" url: "https://marketplace.visualstudio.com/items?itemName=andrewbrey.the-dark-stove" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/the-digital-life.yaml b/themes/the-digital-life.yaml index 36a879a5..56c1b38b 100644 --- a/themes/the-digital-life.yaml +++ b/themes/the-digital-life.yaml @@ -2,12 +2,13 @@ name: "The Digital Life" source: marketplace_id: "xcad2k.vscode-thedigitallife" version: "1.1.0" - installs: 11897 + installs: 11902 rating: 5 ratings: 6 author: "Christian Lempa" repo: "git+https://github.com/xcad2k/vscode-thedigitallife" url: "https://marketplace.visualstudio.com/items?itemName=xcad2k.vscode-thedigitallife" + formats: null colors: bg: "#1D1D1D" fg: "#D1D1D1" diff --git a/themes/the-druid.yaml b/themes/the-druid.yaml index 3437def1..1ed4c1ab 100644 --- a/themes/the-druid.yaml +++ b/themes/the-druid.yaml @@ -8,6 +8,7 @@ source: author: "Yuri toledo" repo: "https://github.com/yuritoledo/the-druid-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Yuritoledo.the-druid" + formats: null colors: bg: "#081500" fg: "#FFFFFF" diff --git a/themes/the-empire.yaml b/themes/the-empire.yaml deleted file mode 100644 index dacea5d1..00000000 --- a/themes/the-empire.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "The Empire" -source: - marketplace_id: "DanMad.a-galaxy-far-far-away-theme" - version: "3.3.1" - installs: 4613 - rating: 5 - ratings: 3 - author: "DanMad" - repo: "https://github.com/danmad/a-galaxy-far-far-away-theme" - url: "https://marketplace.visualstudio.com/items?itemName=DanMad.a-galaxy-far-far-away-theme" -colors: - bg: "#010203" - fg: "#BECBD8" - black: "#04070B" - red: "#F50A0A" - green: "#BEC4B7" - yellow: "#FBFCFD" - blue: "#777D72" - magenta: "#F50A0A" - cyan: "#BEC4B7" - white: "#FBFCFD" - brightBlack: "#777D72" - brightRed: "#F50A0A" - brightGreen: "#BEC4B7" - brightYellow: "#FBFCFD" - brightBlue: "#777D72" - brightMagenta: "#F50A0A" - brightCyan: "#BEC4B7" - brightWhite: "#FBFCFD" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 74.1 - black: 0 - red: 35.1 - green: 69.7 - yellow: 105.8 - blue: 32.4 - magenta: 35.1 - cyan: 69.7 - white: 105.8 - brightBlack: 32.4 - brightRed: 35.1 - brightGreen: 69.7 - brightYellow: 105.8 - brightBlue: 32.4 - brightMagenta: 35.1 - brightCyan: 69.7 - brightWhite: 105.8 diff --git a/themes/the-end-of-development.yaml b/themes/the-end-of-development.yaml deleted file mode 100644 index 36f1a17c..00000000 --- a/themes/the-end-of-development.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "The End Of Development" -source: - marketplace_id: "tecnomazov.evas-code" - version: "1.0.0" - installs: 1061 - rating: 5 - ratings: 1 - author: "TecnoMazov" - repo: "https://github.com/JuditKaramazov/TCA-EVASCode" - url: "https://marketplace.visualstudio.com/items?itemName=tecnomazov.evas-code" -colors: - bg: "#FAF4ED" - fg: "#802B5B" - black: "#F2E9E1" - red: "#B4637A" - green: "#A877B1" - yellow: "#932224" - blue: "#C9221E" - magenta: "#907AA9" - cyan: "#372021" - white: "#802B5B" - brightBlack: "#797593" - brightRed: "#B4637A" - brightGreen: "#A877B1" - brightYellow: "#932224" - brightBlue: "#C9221E" - brightMagenta: "#907AA9" - brightCyan: "#372021" - brightWhite: "#802B5B" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83 - black: 0 - red: 62.5 - green: 56.7 - yellow: 81.6 - blue: 70.2 - magenta: 59.3 - cyan: 95.8 - white: 83 - brightBlack: 64.4 - brightRed: 62.5 - brightGreen: 56.7 - brightYellow: 81.6 - brightBlue: 70.2 - brightMagenta: 59.3 - brightCyan: 95.8 - brightWhite: 83 diff --git a/themes/the-fato-dark.yaml b/themes/the-fato-dark.yaml index 0f1fe1c3..70c23b90 100644 --- a/themes/the-fato-dark.yaml +++ b/themes/the-fato-dark.yaml @@ -1,11 +1,14 @@ -name: "the-fato-dark" +name: "The Fato Dark" source: marketplace_id: "RenanTheFato.the-fato-dark" version: "0.0.5" installs: 36 + rating: 0 + ratings: 0 author: "Renan The Fato" repo: null url: "https://marketplace.visualstudio.com/items?itemName=RenanTheFato.the-fato-dark" + formats: null colors: bg: "#0D0D0D" fg: "#D4D4D4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 80.2 black: 12.1 diff --git a/themes/the-flying-dutchman-high-contrast.yaml b/themes/the-flying-dutchman-high-contrast.yaml index 7f592cf0..be7865ef 100644 --- a/themes/the-flying-dutchman-high-contrast.yaml +++ b/themes/the-flying-dutchman-high-contrast.yaml @@ -8,6 +8,13 @@ source: author: "Davy Jones" repo: "https://github.com/ADWilkinson/the-flying-dutchman-theme" url: "https://marketplace.visualstudio.com/items?itemName=DavyJones.the-flying-dutchman-theme" + formats: + ghostty: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/ghostty/The-Flying-Dutchman" + iterm2: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/iterm/The-Flying-Dutchman.itermcolors" + windows-terminal: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/windows-terminal/The-Flying-Dutchman.json" + warp: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/warp/the-flying-dutchman.yaml" + vim: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/vim/colors/flying-dutchman.vim" + sublime: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/sublime-text/The-Flying-Dutchman.tmTheme" colors: bg: "#0A1520" fg: "#FFFFFF" diff --git a/themes/the-flying-dutchman-soft.yaml b/themes/the-flying-dutchman-soft.yaml index 012b1416..6a2b2108 100644 --- a/themes/the-flying-dutchman-soft.yaml +++ b/themes/the-flying-dutchman-soft.yaml @@ -8,6 +8,13 @@ source: author: "Davy Jones" repo: "https://github.com/ADWilkinson/the-flying-dutchman-theme" url: "https://marketplace.visualstudio.com/items?itemName=DavyJones.the-flying-dutchman-theme" + formats: + ghostty: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/ghostty/The-Flying-Dutchman" + iterm2: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/iterm/The-Flying-Dutchman.itermcolors" + windows-terminal: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/windows-terminal/The-Flying-Dutchman.json" + warp: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/warp/the-flying-dutchman.yaml" + vim: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/vim/colors/flying-dutchman.vim" + sublime: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/sublime-text/The-Flying-Dutchman.tmTheme" colors: bg: "#0B1117" fg: "#C1D1E1" diff --git a/themes/the-flying-dutchman.yaml b/themes/the-flying-dutchman.yaml index d7fd077c..b9e8097a 100644 --- a/themes/the-flying-dutchman.yaml +++ b/themes/the-flying-dutchman.yaml @@ -8,6 +8,13 @@ source: author: "Davy Jones" repo: "https://github.com/ADWilkinson/the-flying-dutchman-theme" url: "https://marketplace.visualstudio.com/items?itemName=DavyJones.the-flying-dutchman-theme" + formats: + ghostty: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/ghostty/The-Flying-Dutchman" + iterm2: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/iterm/The-Flying-Dutchman.itermcolors" + windows-terminal: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/windows-terminal/The-Flying-Dutchman.json" + warp: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/warp/the-flying-dutchman.yaml" + vim: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/vim/colors/flying-dutchman.vim" + sublime: "https://raw.githubusercontent.com/ADWilkinson/the-flying-dutchman-theme/main/sublime-text/The-Flying-Dutchman.tmTheme" colors: bg: "#0B1119" fg: "#B0C4DE" diff --git a/themes/the-gentleman.yaml b/themes/the-gentleman.yaml index 58b9feca..5834c981 100644 --- a/themes/the-gentleman.yaml +++ b/themes/the-gentleman.yaml @@ -8,6 +8,7 @@ source: author: "subhankard" repo: "https://github.com/subhankar-das/thegentleman" url: "https://marketplace.visualstudio.com/items?itemName=subhankard.thegentleman" + formats: null colors: bg: "#1B1A1D" fg: "#FFFFFF" diff --git a/themes/the-occult.yaml b/themes/the-occult.yaml index eb84b34d..5ba9f363 100644 --- a/themes/the-occult.yaml +++ b/themes/the-occult.yaml @@ -8,6 +8,7 @@ source: author: "yoobdev" repo: "https://github.com/kimkom369/VSCode-Theme-Pack" url: "https://marketplace.visualstudio.com/items?itemName=yubiDev.yoobdev" + formats: null colors: bg: "#5A189A" fg: "#9D4EDD" diff --git a/themes/the-one-theme.yaml b/themes/the-one-theme.yaml deleted file mode 100644 index e8dd2fd6..00000000 --- a/themes/the-one-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "The One Theme" -source: - marketplace_id: "Ancairon.the-one-theme" - version: "0.0.6" - installs: 829 - rating: 0 - ratings: 0 - author: "Ancairon" - repo: "https://github.com/Ancairon/the-one-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Ancairon.the-one-theme" -colors: - bg: "#1F1000" - fg: "#FAF5E5" - black: "#1F1000" - red: "#D73D3D" - green: "#8FB244" - yellow: "#D7BC3D" - blue: "#416AB6" - magenta: "#855EB0" - cyan: "#258080" - white: "#FAF5E5" - brightBlack: "#666666" - brightRed: "#D73D3D" - brightGreen: "#8FB244" - brightYellow: "#F9DFB1" - brightBlue: "#59CECF" - brightMagenta: "#855EB0" - brightCyan: "#258080" - brightWhite: "#FAF5E5" -meta: - mode: "dark" - accent: "orange" - hue: 71 - pair: null - contrast: - fg: 100.5 - black: 0 - red: 30.7 - green: 53.4 - yellow: 66.2 - blue: 24.9 - magenta: 26.7 - cyan: 28.7 - white: 100.5 - brightBlack: 22.3 - brightRed: 30.7 - brightGreen: 53.4 - brightYellow: 88.4 - brightBlue: 66.3 - brightMagenta: 26.7 - brightCyan: 28.7 - brightWhite: 100.5 diff --git a/themes/the-only-tolerable-light-theme.yaml b/themes/the-only-tolerable-light-theme.yaml index 6b668748..906e526a 100644 --- a/themes/the-only-tolerable-light-theme.yaml +++ b/themes/the-only-tolerable-light-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "GabeRose.only-tolerable-light-theme" version: "1.0.0" installs: 294 + rating: 0 + ratings: 0 author: "GabeRose" repo: "https://github.com/NotoriousGOR/only-tolerable-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=GabeRose.only-tolerable-light-theme" + formats: null colors: bg: "#F1EEF2" fg: "#000000" diff --git a/themes/the-orchid-dark.yaml b/themes/the-orchid-dark.yaml index 63ed1492..26223798 100644 --- a/themes/the-orchid-dark.yaml +++ b/themes/the-orchid-dark.yaml @@ -8,6 +8,7 @@ source: author: "403 Forbidden" repo: "https://github.com/mario-garcia-dev/the-orchid-theme" url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.the-orchid-theme" + formats: null colors: bg: "#08040A" fg: "#F1F1F1" diff --git a/themes/the-orchid-light.yaml b/themes/the-orchid-light.yaml index 4ae9930e..8f492a20 100644 --- a/themes/the-orchid-light.yaml +++ b/themes/the-orchid-light.yaml @@ -8,6 +8,7 @@ source: author: "403 Forbidden" repo: "https://github.com/mario-garcia-dev/the-orchid-theme" url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.the-orchid-theme" + formats: null colors: bg: "#F3F3F3" fg: "#222222" diff --git a/themes/the-orchid-soft.yaml b/themes/the-orchid-soft.yaml index e782a9eb..4af9cbaf 100644 --- a/themes/the-orchid-soft.yaml +++ b/themes/the-orchid-soft.yaml @@ -8,6 +8,7 @@ source: author: "403 Forbidden" repo: "https://github.com/mario-garcia-dev/the-orchid-theme" url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.the-orchid-theme" + formats: null colors: bg: "#25162C" fg: "#F1F1F1" diff --git a/themes/the-theme.yaml b/themes/the-theme.yaml index 81ea772e..8fb78c65 100644 --- a/themes/the-theme.yaml +++ b/themes/the-theme.yaml @@ -8,6 +8,7 @@ source: author: "mazhugasergei" repo: "https://github.com/mazhugasergei/the-theme" url: "https://marketplace.visualstudio.com/items?itemName=mazhugasergei.the-theme" + formats: null colors: bg: "#161616" fg: "#9D9C9D" diff --git a/themes/theaisphere-dark.yaml b/themes/theaisphere-dark.yaml index c6835836..f7d93102 100644 --- a/themes/theaisphere-dark.yaml +++ b/themes/theaisphere-dark.yaml @@ -8,6 +8,7 @@ source: author: "theAIsphere" repo: "https://github.com/admin-theaisphere/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=theAIsphere.theaisphere" + formats: null colors: bg: "#1D1D26" fg: "#FCFCFC" diff --git a/themes/theaisphere-light.yaml b/themes/theaisphere-light.yaml index fd4be009..265ff396 100644 --- a/themes/theaisphere-light.yaml +++ b/themes/theaisphere-light.yaml @@ -8,6 +8,7 @@ source: author: "theAIsphere" repo: "https://github.com/admin-theaisphere/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=theAIsphere.theaisphere" + formats: null colors: bg: "#F2F2F2" fg: "#280060" diff --git a/themes/thebear-dark.yaml b/themes/thebear-dark.yaml deleted file mode 100644 index aa9e32fb..00000000 --- a/themes/thebear-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "TheBear-Dark" -source: - marketplace_id: "MemoTheme.the-bear" - version: "1.0.5" - installs: 60 - rating: 5 - ratings: 1 - author: "The Bear Theme" - repo: "https://github.com/mhmetglrq/memo-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MemoTheme.the-bear" -colors: - bg: "#101012" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28 - magenta: 30.3 - cyan: 48.1 - white: 107.4 - brightBlack: 22.6 - brightRed: 39.1 - brightGreen: 64.1 - brightYellow: 96.2 - brightBlue: 40.6 - brightMagenta: 45.9 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/thebestthemealive.yaml b/themes/thebestthemealive.yaml index 72b26bb0..f728a12a 100644 --- a/themes/thebestthemealive.yaml +++ b/themes/thebestthemealive.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "hyziodyzio.thebestcolorextensionalive" version: "0.0.4" installs: 80 + rating: 0 + ratings: 0 author: "hyziodyzio" repo: "https://github.com/TheBestProgrammerAlive/thebestcolorextensionalive" url: "https://marketplace.visualstudio.com/items?itemName=hyziodyzio.thebestcolorextensionalive" + formats: null colors: bg: "#000000" fg: "#FFFFFF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 107.9 black: 0 diff --git a/themes/thecodedoctor.yaml b/themes/thecodedoctor.yaml index b1497acc..13b9f313 100644 --- a/themes/thecodedoctor.yaml +++ b/themes/thecodedoctor.yaml @@ -8,6 +8,7 @@ source: author: "The Code Doctor" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TheCodeDoctor.thecodedoctor" + formats: null colors: bg: "#2D2D2D" fg: "#FFFFFF" diff --git a/themes/thedarkerone.yaml b/themes/thedarkerone.yaml index d7af34c3..abce9c50 100644 --- a/themes/thedarkerone.yaml +++ b/themes/thedarkerone.yaml @@ -8,6 +8,7 @@ source: author: "Özgün Çağrı AYDIN" repo: "https://github.com/ozguncagri/TheDarkerOne" url: "https://marketplace.visualstudio.com/items?itemName=ozguncagri.thedarkerone" + formats: null colors: bg: "#0E0F11" fg: "#ABB2BF" diff --git a/themes/themarro-dark-contrast.yaml b/themes/themarro-dark-contrast.yaml deleted file mode 100644 index 4963dbe2..00000000 --- a/themes/themarro-dark-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Themarro Dark Contrast" -source: - marketplace_id: "aelmessaarab.themarro" - version: "0.1.2" - installs: 10032 - rating: 5 - ratings: 2 - author: "aelmessaarab" - repo: "https://github.com/adamthecro/Themarro" - url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" -colors: - bg: "#020914" - fg: "#D4D4D4" - black: "#414141" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 251 - pair: null - contrast: - fg: 80.4 - black: 8.7 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.3 - magenta: 30.6 - cyan: 48.4 - white: 90.9 - brightBlack: 22.9 - brightRed: 39.4 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.9 - brightMagenta: 46.2 - brightCyan: 56.3 - brightWhite: 90.9 diff --git a/themes/themarro-david-remix.yaml b/themes/themarro-david-remix.yaml deleted file mode 100644 index 63159549..00000000 --- a/themes/themarro-david-remix.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Themarro David Remix" -source: - marketplace_id: "aelmessaarab.themarro" - version: "0.1.2" - installs: 10032 - rating: 5 - ratings: 2 - author: "aelmessaarab" - repo: "https://github.com/adamthecro/Themarro" - url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" -colors: - bg: "#030C1B" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 256 - pair: null - contrast: - fg: 107.6 - black: 0 - red: 27.4 - green: 53.7 - yellow: 86.4 - blue: 28.2 - magenta: 30.5 - cyan: 48.3 - white: 90.8 - brightBlack: 22.8 - brightRed: 39.3 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 90.8 diff --git a/themes/themarro.yaml b/themes/themarro.yaml deleted file mode 100644 index 750faabf..00000000 --- a/themes/themarro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Themarro" -source: - marketplace_id: "aelmessaarab.themarro" - version: "0.1.2" - installs: 10032 - rating: 5 - ratings: 2 - author: "aelmessaarab" - repo: "https://github.com/adamthecro/Themarro" - url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" -colors: - bg: "#080B14" - fg: "#D4D4D4" - black: "#414141" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 269 - pair: null - contrast: - fg: 80.3 - black: 8.6 - red: 27.5 - green: 53.8 - yellow: 86.4 - blue: 28.2 - magenta: 30.6 - cyan: 48.4 - white: 90.8 - brightBlack: 22.8 - brightRed: 39.4 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.8 - brightMagenta: 46.2 - brightCyan: 56.2 - brightWhite: 90.8 diff --git a/themes/theme-bear.yaml b/themes/theme-bear.yaml index 2767596b..f1870514 100644 --- a/themes/theme-bear.yaml +++ b/themes/theme-bear.yaml @@ -8,6 +8,7 @@ source: author: "hassanoof93" repo: "https://github.com/hassanmostafaibrahim11/Fayrouz" url: "https://marketplace.visualstudio.com/items?itemName=hassanoof93.RozaaaDodooo-1446" + formats: null colors: bg: "#1F2023" fg: "#BCB28D" diff --git a/themes/theme-dark.yaml b/themes/theme-dark.yaml index 7806f197..f58c6d3e 100644 --- a/themes/theme-dark.yaml +++ b/themes/theme-dark.yaml @@ -1,52 +1,53 @@ -name: "Theme³ Dark" +name: "Theme Dark" source: - marketplace_id: "StevenJborik.colorado-theme" - version: "0.0.15" - installs: 84 - rating: 5 - ratings: 1 - author: "StevenJBorik" - repo: "https://github.com/StevenJBorik/colorado-theme" - url: "https://marketplace.visualstudio.com/items?itemName=StevenJborik.colorado-theme" + marketplace_id: "frsilva.theme-frsilva" + version: "0.0.1" + installs: 316 + rating: 0 + ratings: 0 + author: "frsilva" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frsilva.theme-frsilva" + formats: null colors: - bg: "#2E3440" - fg: "#D3D7DF" - black: "#3E4656" - red: "#609BBC" - green: "#05BE9F" - yellow: "#E6BA5C" - blue: "#05BE9F" - magenta: "#E57373" - cyan: "#99AAB5" - white: "#DEE1E7" - brightBlack: "#5F6B83" - brightRed: "#E57373" - brightGreen: "#05BE9F" - brightYellow: "#E6BA5C" - brightBlue: "#528BFF" - brightMagenta: "#7E0097" - brightCyan: "#99AAB5" - brightWhite: "#DEE1E7" + bg: "#191919" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" meta: mode: "dark" accent: "pink" - hue: 264 + hue: null pair: null contrast: - fg: 76.1 + fg: 106.7 black: 0 - red: 38.6 - green: 50 - yellow: 62.7 - blue: 50 - magenta: 39.7 - cyan: 48.8 - white: 82.3 - brightBlack: 19 - brightRed: 39.7 - brightGreen: 50 - brightYellow: 62.7 - brightBlue: 36.4 - brightMagenta: 7.7 - brightCyan: 48.8 - brightWhite: 82.3 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/theme-for-codes-dark.yaml b/themes/theme-for-codes-dark.yaml deleted file mode 100644 index 53ae30f0..00000000 --- a/themes/theme-for-codes-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Theme For Codes - Dark" -source: - marketplace_id: "veduishu1257.code-with-colors-pro" - version: "2.3.0" - installs: 18 - rating: 5 - ratings: 1 - author: "veduishu" - repo: "https://github.com/vishal-s-reddy/code-with-colors" - url: "https://marketplace.visualstudio.com/items?itemName=veduishu1257.code-with-colors-pro" -colors: - bg: "#050505" - fg: "#E6E6E6" - black: "#000000" - red: "#FF5555" - green: "#50FA7B" - yellow: "#FFB86C" - blue: "#4FC1FF" - magenta: "#FF79C6" - cyan: "#8BE9FD" - white: "#E6E6E6" - brightBlack: "#555555" - brightRed: "#FF6E6E" - brightGreen: "#69FF94" - brightYellow: "#FFCC95" - brightBlue: "#6DD5FF" - brightMagenta: "#FF92D0" - brightCyan: "#A4FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: "Theme For Codes - Light" - contrast: - fg: 91.6 - black: 0 - red: 44.4 - green: 85.9 - yellow: 72.4 - blue: 63.5 - magenta: 55.6 - cyan: 84.9 - white: 91.6 - brightBlack: 16.1 - brightRed: 49.8 - brightGreen: 90 - brightYellow: 81.2 - brightBlue: 73.8 - brightMagenta: 62.8 - brightCyan: 97.8 - brightWhite: 107.9 diff --git a/themes/theme-for-codes-light.yaml b/themes/theme-for-codes-light.yaml deleted file mode 100644 index 38d781f3..00000000 --- a/themes/theme-for-codes-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Theme For Codes - Light" -source: - marketplace_id: "veduishu1257.code-with-colors-pro" - version: "2.3.0" - installs: 18 - rating: 5 - ratings: 1 - author: "veduishu" - repo: "https://github.com/vishal-s-reddy/code-with-colors" - url: "https://marketplace.visualstudio.com/items?itemName=veduishu1257.code-with-colors-pro" -colors: - bg: "#FFFFFF" - fg: "#1A1A1A" - black: "#000000" - red: "#D32F2F" - green: "#388E3C" - yellow: "#F57C00" - blue: "#1976D2" - magenta: "#7B1FA2" - cyan: "#0097A7" - white: "#616161" - brightBlack: "#000000" - brightRed: "#D32F2F" - brightGreen: "#388E3C" - brightYellow: "#F57C00" - brightBlue: "#1976D2" - brightMagenta: "#7B1FA2" - brightCyan: "#0097A7" - brightWhite: "#616161" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Theme For Codes - Dark" - contrast: - fg: 104.3 - black: 106 - red: 72.8 - green: 68 - yellow: 51.8 - blue: 71.4 - magenta: 87.1 - cyan: 62 - white: 80.9 - brightBlack: 106 - brightRed: 72.8 - brightGreen: 68 - brightYellow: 51.8 - brightBlue: 71.4 - brightMagenta: 87.1 - brightCyan: 62 - brightWhite: 80.9 diff --git a/themes/theme-joey.yaml b/themes/theme-joey.yaml deleted file mode 100644 index cafba28f..00000000 --- a/themes/theme-joey.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "theme-joey" -source: - marketplace_id: "xshapira.joey-theme" - version: "3.3.8" - installs: 1136 - rating: 5 - ratings: 7 - author: "xshapira" - repo: "https://github.com/xshapira/joey" - url: "https://marketplace.visualstudio.com/items?itemName=xshapira.joey-theme" -colors: - bg: "#1F2023" - fg: "#BCB28D" - black: "#2C5A65" - red: "#E03C8A" - green: "#4EC9B0" - yellow: "#E6844F" - blue: "#6796E6" - magenta: "#A58EDC" - cyan: "#69B0AC" - white: "#EEE8D5" - brightBlack: "#666666" - brightRed: "#E6844F" - brightGreen: "#5C8490" - brightYellow: "#657B83" - brightBlue: "#58B2DC" - brightMagenta: "#646695" - brightCyan: "#93A1A1" - brightWhite: "#FDF6E3" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 58.5 - black: 13.6 - red: 33.1 - green: 60.9 - yellow: 47.7 - blue: 43.6 - magenta: 45.9 - cyan: 50.9 - white: 90.8 - brightBlack: 20.9 - brightRed: 47.7 - brightGreen: 31.7 - brightYellow: 28.6 - brightBlue: 53.2 - brightMagenta: 22.6 - brightCyan: 47.8 - brightWhite: 100 diff --git a/themes/theme-mk-black.yaml b/themes/theme-mk-black.yaml index 03d0663e..61ea4106 100644 --- a/themes/theme-mk-black.yaml +++ b/themes/theme-mk-black.yaml @@ -8,6 +8,7 @@ source: author: "mk-02" repo: "https://github.com/leeminki02/theme-mk" url: "https://marketplace.visualstudio.com/items?itemName=dev-mk02.theme-mk" + formats: null colors: bg: "#1A1B1E" fg: "#CDCECE" diff --git a/themes/theme-mk-rebuilt.yaml b/themes/theme-mk-rebuilt.yaml index f69781d8..99448d83 100644 --- a/themes/theme-mk-rebuilt.yaml +++ b/themes/theme-mk-rebuilt.yaml @@ -8,6 +8,7 @@ source: author: "mk-02" repo: "https://github.com/leeminki02/theme-mk" url: "https://marketplace.visualstudio.com/items?itemName=dev-mk02.theme-mk" + formats: null colors: bg: "#1A1B1E" fg: "#CDCECE" diff --git a/themes/theme-nickel.yaml b/themes/theme-nickel.yaml index f18d492a..2365d89d 100644 --- a/themes/theme-nickel.yaml +++ b/themes/theme-nickel.yaml @@ -2,12 +2,13 @@ name: "theme-nickel" source: marketplace_id: "nickel-dev.theme-nickel" version: "0.1.2" - installs: 490 + installs: 491 rating: 5 ratings: 1 author: "Daniel Nickel" repo: "https://github.com/nickel-dev/theme-nickel" url: "https://marketplace.visualstudio.com/items?itemName=nickel-dev.theme-nickel" + formats: null colors: bg: "#151515" fg: "#B9B4B8" diff --git a/themes/theme-one.yaml b/themes/theme-one.yaml index b415a68d..24b5bf16 100644 --- a/themes/theme-one.yaml +++ b/themes/theme-one.yaml @@ -8,6 +8,7 @@ source: author: "Theme One" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ThemeOne.themeone" + formats: null colors: bg: "#191830" fg: "#FFFFFF" diff --git a/themes/theme-stick-green-dark.yaml b/themes/theme-stick-green-dark.yaml index b49bbad3..29e6683c 100644 --- a/themes/theme-stick-green-dark.yaml +++ b/themes/theme-stick-green-dark.yaml @@ -2,12 +2,13 @@ name: "Theme_stick_green_dark" source: marketplace_id: "sankalpkumar.theme-strict-dark" version: "0.2.0" - installs: 2220 + installs: 2223 rating: 0 ratings: 0 author: "sankalp kumar" repo: "https://github.com/sankalp475/Theme_stick_dark" url: "https://marketplace.visualstudio.com/items?itemName=sankalpkumar.theme-strict-dark" + formats: null colors: bg: "#292C3F" fg: "#D4D4D4" diff --git a/themes/theme-y-random.yaml b/themes/theme-y-random.yaml index c2c94692..c9a38d8f 100644 --- a/themes/theme-y-random.yaml +++ b/themes/theme-y-random.yaml @@ -8,6 +8,7 @@ source: author: "Yisus-Code" repo: "https://github.com/JesusAIV/Theme-Y-Random" url: "https://marketplace.visualstudio.com/items?itemName=Yisus-Code.theme-y-random" + formats: null colors: bg: "#031238" fg: "#FFFFFF" diff --git a/themes/theme.yaml b/themes/theme.yaml index 7e8bd976..996f08c6 100644 --- a/themes/theme.yaml +++ b/themes/theme.yaml @@ -8,6 +8,7 @@ source: author: "lioa" repo: null url: "https://marketplace.visualstudio.com/items?itemName=lioa.themeol" + formats: null colors: bg: "#191830" fg: "#FFFFFF" diff --git a/themes/theme1.yaml b/themes/theme1.yaml index b55333c0..b369cc03 100644 --- a/themes/theme1.yaml +++ b/themes/theme1.yaml @@ -8,6 +8,7 @@ source: author: "TylerRice" repo: "https://github.com/tk-rice/themeone" url: "https://marketplace.visualstudio.com/items?itemName=TylerRice.tk-rice-theme-one" + formats: null colors: bg: "#111111" fg: "#FFFFFF" diff --git a/themes/themedarker.yaml b/themes/themedarker.yaml deleted file mode 100644 index 71f13378..00000000 --- a/themes/themedarker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ThemeDarker" -source: - marketplace_id: "tal7aouy.theme" - version: "3.1.0" - installs: 1510543 - rating: 4.76 - ratings: 34 - author: "Mhammed Talhaouy" - repo: "https://github.com/tal7aouy/theme" - url: "https://marketplace.visualstudio.com/items?itemName=tal7aouy.theme" -colors: - bg: "#23272E" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: 262 - pair: null - contrast: - fg: 57.2 - black: 0 - red: 34.5 - green: 58.1 - yellow: 46.4 - blue: 47.4 - magenta: 36.8 - cyan: 50.3 - white: 80.8 - brightBlack: 13.2 - brightRed: 43.9 - brightGreen: 74.6 - brightYellow: 59 - brightBlue: 61.5 - brightMagenta: 48 - brightCyan: 65.6 - brightWhite: 88.4 diff --git a/themes/themeframek.yaml b/themes/themeframek.yaml deleted file mode 100644 index 1d1e5657..00000000 --- a/themes/themeframek.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ThemeFramek" -source: - marketplace_id: "YesCode.themeframek" - version: "0.0.3" - installs: 1 - rating: 0 - ratings: 0 - author: "YesCode" - repo: "https://github.com/y3mm/ThemeFramework" - url: "https://marketplace.visualstudio.com/items?itemName=YesCode.themeframek" -colors: - bg: "#121212" - fg: "#EEFFFF" - black: "#1D2021" - red: "#FB543F" - green: "#95C085" - yellow: "#FAC03B" - blue: "#00A1F9" - magenta: "#8F4673" - cyan: "#8BA59B" - white: "#A89984" - brightBlack: "#665C54" - brightRed: "#FB543F" - brightGreen: "#FFF2B7" - brightYellow: "#E7F0FF" - brightBlue: "#0D6678" - brightMagenta: "#8F4673" - brightCyan: "#8BA59B" - brightWhite: "#FDF4C1" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 105 - black: 0 - red: 42.4 - green: 61.4 - yellow: 73.5 - blue: 47.9 - magenta: 19.9 - cyan: 49.9 - white: 47.7 - brightBlack: 19 - brightRed: 42.4 - brightGreen: 98.3 - brightYellow: 97 - brightBlue: 19.2 - brightMagenta: 19.9 - brightCyan: 49.9 - brightWhite: 99.3 diff --git a/themes/themegreen.yaml b/themes/themegreen.yaml deleted file mode 100644 index 6c383b4c..00000000 --- a/themes/themegreen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "themegreen" -source: - marketplace_id: "tiantianli007.tian-green" - version: "0.0.1" - installs: 192 - rating: 0 - ratings: 0 - author: "tiantian" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=tiantianli007.tian-green" -colors: - bg: "#303030" - fg: "#E8E8E8" - black: "#000000" - red: "#FF7C7C" - green: "#6AF56A" - yellow: "#FAFF45" - blue: "#5EABFF" - magenta: "#FF80FF" - cyan: "#0BCCFB" - white: "#555555" - brightBlack: "#666666" - brightRed: "#FF9D9D" - brightGreen: "#AFFFAF" - brightYellow: "#FCFF9B" - brightBlue: "#89C2FF" - brightMagenta: "#FFB6FF" - brightCyan: "#83E7FF" - brightWhite: "#A5A5A5" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 87.8 - black: 0 - red: 48.5 - green: 78.9 - yellow: 97.1 - blue: 49.9 - magenta: 55.5 - cyan: 61.9 - white: 11 - brightBlack: 17.9 - brightRed: 59.1 - brightGreen: 90.4 - brightYellow: 98.7 - brightBlue: 62.1 - brightMagenta: 72.1 - brightCyan: 78.5 - brightWhite: 48.4 diff --git a/themes/themello.yaml b/themes/themello.yaml index ba4612a4..ca4970fc 100644 --- a/themes/themello.yaml +++ b/themes/themello.yaml @@ -1,11 +1,14 @@ -name: "Themello" +name: "themello" source: marketplace_id: "RichardWagnerFeliciano.themello" version: "0.0.1" installs: 67 + rating: 0 + ratings: 0 author: "RichardWagnerFeliciano" repo: "https://github.com/richardfeliciano/themello" url: "https://marketplace.visualstudio.com/items?itemName=RichardWagnerFeliciano.themello" + formats: null colors: bg: "#131313" fg: "#C7C7C7" diff --git a/themes/thememix.yaml b/themes/thememix.yaml deleted file mode 100644 index d0719519..00000000 --- a/themes/thememix.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ThemeMix" -source: - marketplace_id: "tal7aouy.theme" - version: "3.1.0" - installs: 1510543 - rating: 4.76 - ratings: 34 - author: "Mhammed Talhaouy" - repo: "https://github.com/tal7aouy/theme" - url: "https://marketplace.visualstudio.com/items?itemName=tal7aouy.theme" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 56.2 - black: 0 - red: 33.5 - green: 57.2 - yellow: 45.4 - blue: 46.5 - magenta: 35.9 - cyan: 49.3 - white: 79.8 - brightBlack: 12.3 - brightRed: 42.9 - brightGreen: 73.6 - brightYellow: 58 - brightBlue: 60.5 - brightMagenta: 47.1 - brightCyan: 64.6 - brightWhite: 87.4 diff --git a/themes/themename.yaml b/themes/themename.yaml index f11e5193..6a2939f0 100644 --- a/themes/themename.yaml +++ b/themes/themename.yaml @@ -8,6 +8,7 @@ source: author: "carljkempe" repo: "https://github.com/carljkempe/night-milk-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=carljkempe.night-milk" + formats: null colors: bg: "#15202B" fg: "#BDD2E7" diff --git a/themes/themenis.yaml b/themes/themenis.yaml index e901678b..288deb49 100644 --- a/themes/themenis.yaml +++ b/themes/themenis.yaml @@ -2,10 +2,13 @@ name: "Themenis" source: marketplace_id: "RIRICHAN.themenis" version: "0.0.4" - installs: 75 + installs: 76 + rating: 0 + ratings: 0 author: "RIRICHAN" repo: "https://github.com/usiusa7991/Themenis" url: "https://marketplace.visualstudio.com/items?itemName=RIRICHAN.themenis" + formats: null colors: bg: "#1E1E1E" fg: "#FDEDE3" diff --git a/themes/themeo.yaml b/themes/themeo.yaml index bcc63c87..19cc5658 100644 --- a/themes/themeo.yaml +++ b/themes/themeo.yaml @@ -8,6 +8,7 @@ source: author: "th7mo" repo: "https://github.com/th7mo/intellij-for-vscode" url: "https://marketplace.visualstudio.com/items?itemName=th7mo.theme-o" + formats: null colors: bg: "#1E1F22" fg: "#D4D4D4" diff --git a/themes/themepurple.yaml b/themes/themepurple.yaml deleted file mode 100644 index cfab50e0..00000000 --- a/themes/themepurple.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ThemePurple" -source: - marketplace_id: "KelsonCarvalho.roxotema" - version: "2.0.0" - installs: 1039 - rating: 0 - ratings: 0 - author: "Kelson Carvalho" - repo: "https://github.com/NoslekCode/VsCode_Tema_Roxo_Dark" - url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.roxotema" -colors: - bg: "#2D0D29" - fg: "#D4D4D4" - black: "#000000" - red: "#D10B03" - green: "#66B055" - yellow: "#D9E100" - blue: "#4424D3" - magenta: "#B96BB9" - cyan: "#4525D1" - white: "#FFF5FF" - brightBlack: "#202020" - brightRed: "#FD0E04" - brightGreen: "#66B055" - brightYellow: "#FBFF00" - brightBlue: "#331BB2" - brightMagenta: "#974795" - brightCyan: "#341CBF" - brightWhite: "#E9D1E9" -meta: - mode: "dark" - accent: "orange" - hue: 333 - pair: null - contrast: - fg: 79 - black: 0 - red: 24.9 - green: 48.9 - yellow: 81.6 - blue: 12.5 - magenta: 37.1 - cyan: 12.5 - white: 101.7 - brightBlack: 0 - brightRed: 35.6 - brightGreen: 48.9 - brightYellow: 100.6 - brightBlue: 7.4 - brightMagenta: 22 - brightCyan: 8.9 - brightWhite: 81.6 diff --git a/themes/themer-dark.yaml b/themes/themer-dark.yaml index d41f785f..9740b6cd 100644 --- a/themes/themer-dark.yaml +++ b/themes/themer-dark.yaml @@ -8,6 +8,8 @@ source: author: "sansbrina" repo: "https://github.com/sansbrina/poolside-themes" url: "https://marketplace.visualstudio.com/items?itemName=sansbrina.poolside" + formats: + iterm2: "https://raw.githubusercontent.com/sansbrina/poolside-themes/release/iTerm/poolside.itermcolors" colors: bg: "#6261A1" fg: "#FFC9C9" diff --git a/themes/themer-light.yaml b/themes/themer-light.yaml deleted file mode 100644 index 877c74e4..00000000 --- a/themes/themer-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Themer Light" -source: - marketplace_id: "JoshBurnsXYZ.joshburnsxyz-vscode" - version: "2.3.3" - installs: 428 - rating: 0 - ratings: 0 - author: "Josh Burns" - repo: "https://github.com/joshburnsxyz/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=JoshBurnsXYZ.joshburnsxyz-vscode" -colors: - bg: "#FDFDFD" - fg: "#14181B" - black: "#FDFDFD" - red: "#EF4E7C" - green: "#6EBB82" - yellow: "#F79532" - blue: "#1299AD" - magenta: "#AE7BB7" - cyan: "#09B399" - white: "#35393B" - brightBlack: "#DCDCDD" - brightRed: "#F37055" - brightGreen: "#09B399" - brightYellow: "#F79532" - brightBlue: "#1299AD" - brightMagenta: "#AE7BB7" - brightCyan: "#09B399" - brightWhite: "#14181B" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 103.4 - black: 0 - red: 60 - green: 44.2 - yellow: 42.9 - blue: 59.7 - magenta: 59.3 - cyan: 49.8 - white: 95.7 - brightBlack: 16.9 - brightRed: 53.4 - brightGreen: 49.8 - brightYellow: 42.9 - brightBlue: 59.7 - brightMagenta: 59.3 - brightCyan: 49.8 - brightWhite: 103.4 diff --git a/themes/themin-mint.yaml b/themes/themin-mint.yaml deleted file mode 100644 index 904aab81..00000000 --- a/themes/themin-mint.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Themin - Mint" -source: - marketplace_id: "Homerotto.themin" - version: "3.0.1" - installs: 2230 - rating: 5 - ratings: 1 - author: "Homerotto" - repo: "https://github.com/FredMSJ/themin" - url: "https://marketplace.visualstudio.com/items?itemName=Homerotto.themin" -colors: - bg: "#0A0A0A" - fg: "#E0E0E0" - black: "#131317" - red: "#DF9F9F" - green: "#9FC1DF" - yellow: "#9898A6" - blue: "#0DC1AF" - magenta: "#FDFDFE" - cyan: "#DFC59F" - white: "#868690" - brightBlack: "#5C5C5C" - brightRed: "#DF9F9F" - brightGreen: "#9FC1DF" - brightYellow: "#9898A6" - brightBlue: "#0DC1AF" - brightMagenta: "#FDFDFE" - brightCyan: "#DFC59F" - brightWhite: "#868690" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 87.7 - black: 0 - red: 59.1 - green: 66.7 - yellow: 47.1 - blue: 57.9 - magenta: 106.5 - cyan: 73.5 - white: 37.9 - brightBlack: 18.7 - brightRed: 59.1 - brightGreen: 66.7 - brightYellow: 47.1 - brightBlue: 57.9 - brightMagenta: 106.5 - brightCyan: 73.5 - brightWhite: 37.9 diff --git a/themes/theo-swarg-dark.yaml b/themes/theo-swarg-dark.yaml index c15ab88f..23660c98 100644 --- a/themes/theo-swarg-dark.yaml +++ b/themes/theo-swarg-dark.yaml @@ -1,11 +1,14 @@ -name: "Theo-Swarg-Dark" +name: "Theo-SwarG-Dark" source: marketplace_id: "Theoraclenyt.theo-swarg-dark" version: "0.1.2" installs: 50 + rating: 0 + ratings: 0 author: "Theoraclenyt" repo: "https://github.com/Ishesensei/theo-swarg-dark" url: "https://marketplace.visualstudio.com/items?itemName=Theoraclenyt.theo-swarg-dark" + formats: null colors: bg: "#3B3C4F" fg: "#FFFFFF" diff --git a/themes/thepurple.yaml b/themes/thepurple.yaml index 3ed0a3b7..34f50e75 100644 --- a/themes/thepurple.yaml +++ b/themes/thepurple.yaml @@ -1,4 +1,4 @@ -name: "thePurple" +name: "ThePurple" source: marketplace_id: "nacl117.ThePurple" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "nacl" repo: "https://github.com/AnaXP/thePurple" url: "https://marketplace.visualstudio.com/items?itemName=nacl117.ThePurple" + formats: null colors: bg: "#0F0F0F" fg: "#C0C0C0" diff --git a/themes/theta.yaml b/themes/theta.yaml index 9dba9685..d8a62cae 100644 --- a/themes/theta.yaml +++ b/themes/theta.yaml @@ -8,6 +8,7 @@ source: author: "Slepe" repo: "https://github.com/slepe/topl-theme" url: "https://marketplace.visualstudio.com/items?itemName=slepe.topl-theme" + formats: null colors: bg: "#13131A" fg: "#CFDEE6" diff --git a/themes/thinkstorm.yaml b/themes/thinkstorm.yaml index 8ce9dc08..892ce8eb 100644 --- a/themes/thinkstorm.yaml +++ b/themes/thinkstorm.yaml @@ -8,6 +8,7 @@ source: author: "Patczatowicz" repo: "https://github.com/AlfaaMangovskyy/thinkstorm" url: "https://marketplace.visualstudio.com/items?itemName=Patczatowicz.thinkstorm" + formats: null colors: bg: "#000000" fg: "#8C8C8C" diff --git a/themes/thore-blue.yaml b/themes/thore-blue.yaml index f003f573..08d57940 100644 --- a/themes/thore-blue.yaml +++ b/themes/thore-blue.yaml @@ -8,6 +8,7 @@ source: author: "MarcWebDev" repo: "https://github.com/MarcWebDev/thore-blue" url: "https://marketplace.visualstudio.com/items?itemName=MarcWebDev.thore-blue" + formats: null colors: bg: "#0E0E0E" fg: "#BEBEBE" diff --git a/themes/thorn.yaml b/themes/thorn.yaml deleted file mode 100644 index 3b3c3138..00000000 --- a/themes/thorn.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Thorn" -source: - marketplace_id: "synapse42.thorn-variant" - version: "0.1.1" - installs: 11 - rating: 0 - ratings: 0 - author: "synapse_42" - repo: "https://github.com/jpwol/thorn-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=synapse42.thorn-variant" -colors: - bg: "#1D282F" - fg: "#DBD0C6" - black: "#1A2328" - red: "#D2696C" - green: "#79C2B6" - yellow: "#FFD7AA" - blue: "#86BFD0" - magenta: "#D9ADD4" - cyan: "#9FCFC3" - white: "#D9D3CE" - brightBlack: "#D9D3CE" - brightRed: "#D2696C" - brightGreen: "#79C2B6" - brightYellow: "#FFD7AA" - brightBlue: "#86BFD0" - brightMagenta: "#D9ADD4" - brightCyan: "#9FCFC3" - brightWhite: "#D9D3CE" -meta: - mode: "dark" - accent: "orange" - hue: 236 - pair: null - contrast: - fg: 75.9 - black: 0 - red: 36.2 - green: 59.1 - yellow: 83.3 - blue: 59.9 - magenta: 62.3 - cyan: 68.5 - white: 77.3 - brightBlack: 77.3 - brightRed: 36.2 - brightGreen: 59.1 - brightYellow: 83.3 - brightBlue: 59.9 - brightMagenta: 62.3 - brightCyan: 68.5 - brightWhite: 77.3 diff --git a/themes/thoughtworks-style-theme.yaml b/themes/thoughtworks-style-theme.yaml index 18f2e807..c62d3657 100644 --- a/themes/thoughtworks-style-theme.yaml +++ b/themes/thoughtworks-style-theme.yaml @@ -8,6 +8,7 @@ source: author: "guzhongren" repo: "https://github.com/guzhongren/thoughtworks-styled-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=guzhongren.thoughtworks-styled-theme" + formats: null colors: bg: "#003D4F" fg: "#EDF1F3" diff --git a/themes/thra.yaml b/themes/thra.yaml index 85bd5996..19cd6b08 100644 --- a/themes/thra.yaml +++ b/themes/thra.yaml @@ -8,6 +8,7 @@ source: author: "whatsadelane" repo: null url: "https://marketplace.visualstudio.com/items?itemName=whatsadelane.thra" + formats: null colors: bg: "#241F24" fg: "#9D78CF" diff --git a/themes/threedark.yaml b/themes/threedark.yaml index 3d16cda2..2f2e65f8 100644 --- a/themes/threedark.yaml +++ b/themes/threedark.yaml @@ -8,6 +8,7 @@ source: author: "3ee Games" repo: "https://github.com/3ee-Games/three-dark" url: "https://marketplace.visualstudio.com/items?itemName=theegamesVSMarketPlace.threedark" + formats: null colors: bg: "#070F1C" fg: "#EEFFFF" diff --git a/themes/thunder-focus.yaml b/themes/thunder-focus.yaml index 329e4a8b..43a91f1a 100644 --- a/themes/thunder-focus.yaml +++ b/themes/thunder-focus.yaml @@ -8,6 +8,7 @@ source: author: "Francisco González Ferrada" repo: "https://github.com/REPTaiLE/Thunder-Focus" url: "https://marketplace.visualstudio.com/items?itemName=REPTaiLE.thunder-focus" + formats: null colors: bg: "#000814" fg: "#FFC300" diff --git a/themes/thunder-remains-unseen.yaml b/themes/thunder-remains-unseen.yaml index 091e98e7..eb812028 100644 --- a/themes/thunder-remains-unseen.yaml +++ b/themes/thunder-remains-unseen.yaml @@ -8,6 +8,7 @@ source: author: "Hishikui" repo: "https://github.com/Hishikui/vsc-theme-thunder-remains-unseen" url: "https://marketplace.visualstudio.com/items?itemName=anser-fabalis-serrirostris.thunder-remains-unseen" + formats: null colors: bg: "#2D2D2D" fg: "#F0F0F0" diff --git a/themes/thxdude-theme.yaml b/themes/thxdude-theme.yaml index 6e8c8de1..e603c73c 100644 --- a/themes/thxdude-theme.yaml +++ b/themes/thxdude-theme.yaml @@ -8,6 +8,7 @@ source: author: "PABlond" repo: null url: "https://marketplace.visualstudio.com/items?itemName=PABlond.thxdude-theme" + formats: null colors: bg: "#171C26" fg: "#B2B5BE" diff --git a/themes/thyme21g.yaml b/themes/thyme21g.yaml index 6c4bac83..02c018cb 100644 --- a/themes/thyme21g.yaml +++ b/themes/thyme21g.yaml @@ -8,6 +8,7 @@ source: author: "Rohith_Rot_dgrr" repo: "https://github.com/Rohithdgrr/thyme21g-theme" url: "https://marketplace.visualstudio.com/items?itemName=RohithRotdgrr.thyme21g-theme" + formats: null colors: bg: "#1E1E2E" fg: "#CDD6F4" diff --git a/themes/thynaptic-dark-base.yaml b/themes/thynaptic-dark-base.yaml index ec263e60..f3b798ed 100644 --- a/themes/thynaptic-dark-base.yaml +++ b/themes/thynaptic-dark-base.yaml @@ -8,6 +8,7 @@ source: author: "Thynaptic" repo: "https://github.com/cassianwolfe/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" + formats: null colors: bg: "#0A0A0A" fg: "#FAFAFA" diff --git a/themes/thynaptic-dim-base.yaml b/themes/thynaptic-dim-base.yaml index ab64bfee..26d9c33c 100644 --- a/themes/thynaptic-dim-base.yaml +++ b/themes/thynaptic-dim-base.yaml @@ -8,6 +8,7 @@ source: author: "Thynaptic" repo: "https://github.com/cassianwolfe/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" + formats: null colors: bg: "#0F0F0F" fg: "#EAEAEA" diff --git a/themes/thynaptic-pro.yaml b/themes/thynaptic-pro.yaml index 37782f5d..aaaafaed 100644 --- a/themes/thynaptic-pro.yaml +++ b/themes/thynaptic-pro.yaml @@ -8,6 +8,7 @@ source: author: "Thynaptic" repo: "https://github.com/cassianwolfe/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" + formats: null colors: bg: "#09090B" fg: "#FAFAFA" diff --git a/themes/thynaptic-sand-base.yaml b/themes/thynaptic-sand-base.yaml index aef617a9..f39c21e0 100644 --- a/themes/thynaptic-sand-base.yaml +++ b/themes/thynaptic-sand-base.yaml @@ -8,6 +8,7 @@ source: author: "Thynaptic" repo: "https://github.com/cassianwolfe/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" + formats: null colors: bg: "#F3EFE7" fg: "#0A0A0A" diff --git a/themes/thynaptic-sand-dark.yaml b/themes/thynaptic-sand-dark.yaml index 8426bea8..c838c4bb 100644 --- a/themes/thynaptic-sand-dark.yaml +++ b/themes/thynaptic-sand-dark.yaml @@ -8,6 +8,7 @@ source: author: "Thynaptic" repo: "https://github.com/cassianwolfe/vscode-themes" url: "https://marketplace.visualstudio.com/items?itemName=Thynaptic.thynaptic-color-themes" + formats: null colors: bg: "#1C1814" fg: "#E8E3D8" diff --git a/themes/tickle-contrast.yaml b/themes/tickle-contrast.yaml deleted file mode 100644 index 0a61985a..00000000 --- a/themes/tickle-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tickle-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#181819" - fg: "#C1C1C1" - black: "#242426" - red: "#BA0E2E" - green: "#85FFC7" - yellow: "#40A5A5" - blue: "#FF8552" - magenta: "#85FFC7" - cyan: "#FF8552" - white: "#CECECE" - brightBlack: "#4A4A4D" - brightRed: "#F03E5F" - brightGreen: "#EBFFF6" - brightYellow: "#7ECDCD" - brightBlue: "#FFCDB8" - brightMagenta: "#EBFFF6" - brightCyan: "#FFCDB8" - brightWhite: "#F4F4F4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 68.1 - black: 0 - red: 20.4 - green: 92 - yellow: 45.1 - blue: 54 - magenta: 92 - cyan: 54 - white: 75.7 - brightBlack: 10.9 - brightRed: 36.7 - brightGreen: 103.6 - brightYellow: 67.4 - brightBlue: 81.6 - brightMagenta: 103.6 - brightCyan: 81.6 - brightWhite: 99.5 diff --git a/themes/tickle-light.yaml b/themes/tickle-light.yaml deleted file mode 100644 index 8c622603..00000000 --- a/themes/tickle-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tickle-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#65C699" - yellow: "#40A5A5" - blue: "#FF8552" - magenta: "#65C699" - cyan: "#FF8552" - white: "#515151" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#AFE2CA" - brightYellow: "#7ECDCD" - brightBlue: "#FFCDB8" - brightMagenta: "#AFE2CA" - brightCyan: "#FFCDB8" - brightWhite: "#777777" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 80.3 - green: 40.5 - yellow: 55.6 - blue: 46.9 - magenta: 40.5 - cyan: 46.9 - white: 87.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 21.1 - brightYellow: 34 - brightBlue: 20.6 - brightMagenta: 21.1 - brightCyan: 20.6 - brightWhite: 71.1 diff --git a/themes/tickle-refresh.yaml b/themes/tickle-refresh.yaml index f5bb06c4..bb333ca9 100644 --- a/themes/tickle-refresh.yaml +++ b/themes/tickle-refresh.yaml @@ -8,6 +8,7 @@ source: author: "jetpackguy" repo: "https://github.com/jetpackguy/tangerine-theme" url: "https://marketplace.visualstudio.com/items?itemName=jetpackguy.tangerine" + formats: null colors: bg: "#39393A" fg: "#CBCBCB" diff --git a/themes/tickle.yaml b/themes/tickle.yaml deleted file mode 100644 index 13ac10a9..00000000 --- a/themes/tickle.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tickle" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#39393A" - fg: "#C1C1C1" - black: "#464647" - red: "#BA0E2E" - green: "#85FFC7" - yellow: "#40A5A5" - blue: "#FF8552" - magenta: "#85FFC7" - cyan: "#FF8552" - white: "#CECECE" - brightBlack: "#6C6C6D" - brightRed: "#F03E5F" - brightGreen: "#EBFFF6" - brightYellow: "#7ECDCD" - brightBlue: "#FFCDB8" - brightMagenta: "#EBFFF6" - brightCyan: "#FFCDB8" - brightWhite: "#F4F4F4" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 61.6 - black: 0 - red: 13.9 - green: 85.5 - yellow: 38.6 - blue: 47.5 - magenta: 85.5 - cyan: 47.5 - white: 69.3 - brightBlack: 18 - brightRed: 30.2 - brightGreen: 97.1 - brightYellow: 60.9 - brightBlue: 75.1 - brightMagenta: 97.1 - brightCyan: 75.1 - brightWhite: 93 diff --git a/themes/tidelight-contrast-light.yaml b/themes/tidelight-contrast-light.yaml index a496af51..99c552e8 100644 --- a/themes/tidelight-contrast-light.yaml +++ b/themes/tidelight-contrast-light.yaml @@ -8,6 +8,7 @@ source: author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" + formats: null colors: bg: "#FFFFFF" fg: "#020617" diff --git a/themes/tidelight-contrast.yaml b/themes/tidelight-contrast.yaml index 179df413..1aaf56fb 100644 --- a/themes/tidelight-contrast.yaml +++ b/themes/tidelight-contrast.yaml @@ -8,6 +8,7 @@ source: author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" + formats: null colors: bg: "#05070C" fg: "#F8FAFC" diff --git a/themes/tidelight-dawn.yaml b/themes/tidelight-dawn.yaml index ac475528..af44db21 100644 --- a/themes/tidelight-dawn.yaml +++ b/themes/tidelight-dawn.yaml @@ -8,6 +8,7 @@ source: author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" + formats: null colors: bg: "#F8FAFC" fg: "#0F172A" diff --git a/themes/tidelight-daybreak.yaml b/themes/tidelight-daybreak.yaml index 87f43d9d..48811df6 100644 --- a/themes/tidelight-daybreak.yaml +++ b/themes/tidelight-daybreak.yaml @@ -8,6 +8,7 @@ source: author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" + formats: null colors: bg: "#FFFFFF" fg: "#0B1220" diff --git a/themes/tidelight-deep.yaml b/themes/tidelight-deep.yaml index 92824ec4..cd2cbbdd 100644 --- a/themes/tidelight-deep.yaml +++ b/themes/tidelight-deep.yaml @@ -8,6 +8,7 @@ source: author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" + formats: null colors: bg: "#0B1220" fg: "#CBD5E1" diff --git a/themes/tidelight-dusk.yaml b/themes/tidelight-dusk.yaml index dbc65864..ef93d846 100644 --- a/themes/tidelight-dusk.yaml +++ b/themes/tidelight-dusk.yaml @@ -8,6 +8,7 @@ source: author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" + formats: null colors: bg: "#0F172A" fg: "#CBD5E1" diff --git a/themes/tidelight-fog.yaml b/themes/tidelight-fog.yaml index c3dec94a..49ec5382 100644 --- a/themes/tidelight-fog.yaml +++ b/themes/tidelight-fog.yaml @@ -8,6 +8,7 @@ source: author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" + formats: null colors: bg: "#1F2937" fg: "#E5E7EB" diff --git a/themes/tidelight-high-noon.yaml b/themes/tidelight-high-noon.yaml index 26741b05..c88cf070 100644 --- a/themes/tidelight-high-noon.yaml +++ b/themes/tidelight-high-noon.yaml @@ -8,6 +8,7 @@ source: author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" + formats: null colors: bg: "#FFF7ED" fg: "#020617" diff --git a/themes/tidelight-midnight.yaml b/themes/tidelight-midnight.yaml index 055558bb..f1c5a8f2 100644 --- a/themes/tidelight-midnight.yaml +++ b/themes/tidelight-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" + formats: null colors: bg: "#070B14" fg: "#E2E8F0" diff --git a/themes/tidelight-shore.yaml b/themes/tidelight-shore.yaml index 272ebbe4..20a1e9eb 100644 --- a/themes/tidelight-shore.yaml +++ b/themes/tidelight-shore.yaml @@ -8,6 +8,7 @@ source: author: "Slow Clap Software" repo: "https://github.com/melnicorn/tidelight-themes" url: "https://marketplace.visualstudio.com/items?itemName=slow-clap-software.tidelight-theme" + formats: null colors: bg: "#F1F5F9" fg: "#0F172A" diff --git a/themes/tiktok.yaml b/themes/tiktok.yaml index a040570a..b3ceec91 100644 --- a/themes/tiktok.yaml +++ b/themes/tiktok.yaml @@ -8,6 +8,8 @@ source: author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" + formats: + nvim: "https://raw.githubusercontent.com/volskaya/irrelevant/main/extensions/neovim/lua/irrelevant/colors.lua" colors: bg: "#1C1C1C" fg: "#FFFFFF" diff --git a/themes/tim-s-experiments-dark.yaml b/themes/tim-s-experiments-dark.yaml index 9d1afa76..26c3749c 100644 --- a/themes/tim-s-experiments-dark.yaml +++ b/themes/tim-s-experiments-dark.yaml @@ -8,6 +8,7 @@ source: author: "Tim's Experiments" repo: "https://github.com/timsexperiments/timsexperiments-theme" url: "https://marketplace.visualstudio.com/items?itemName=TimsExperiments.timsexperiments-theme" + formats: null colors: bg: "#F4F5F5" fg: "#434746" diff --git a/themes/timir.yaml b/themes/timir.yaml index 37d996e1..af37d6eb 100644 --- a/themes/timir.yaml +++ b/themes/timir.yaml @@ -8,6 +8,7 @@ source: author: "Shubham Thorat" repo: "https://github.com/Biotechnologyguy/Timir-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=ShubhamThorat.Timir" + formats: null colors: bg: "#1D2433" fg: "#A2AABC" diff --git a/themes/timu-macos-dark-theme.yaml b/themes/timu-macos-dark-theme.yaml index e8137b8c..cf69ad05 100644 --- a/themes/timu-macos-dark-theme.yaml +++ b/themes/timu-macos-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Aimé Bertrand" repo: "https://gitlab.com/aimebertrand/timu-macos-vscode" url: "https://marketplace.visualstudio.com/items?itemName=aimebertrand.timu-macos-vscode" + formats: null colors: bg: "#222327" fg: "#FFFFFF" diff --git a/themes/timu-macos-light-theme.yaml b/themes/timu-macos-light-theme.yaml index 166ddf9e..849db609 100644 --- a/themes/timu-macos-light-theme.yaml +++ b/themes/timu-macos-light-theme.yaml @@ -8,6 +8,7 @@ source: author: "Aimé Bertrand" repo: "https://gitlab.com/aimebertrand/timu-macos-vscode" url: "https://marketplace.visualstudio.com/items?itemName=aimebertrand.timu-macos-vscode" + formats: null colors: bg: "#FFFFFF" fg: "#222327" diff --git a/themes/timu-spacegrey-theme.yaml b/themes/timu-spacegrey-theme.yaml index 1ee1d565..fefb850f 100644 --- a/themes/timu-spacegrey-theme.yaml +++ b/themes/timu-spacegrey-theme.yaml @@ -8,6 +8,7 @@ source: author: "Aimé Bertrand" repo: "https://gitlab.com/aimebertrand/timu-spacegrey-vscode" url: "https://marketplace.visualstudio.com/items?itemName=aimebertrand.timu-spacegrey-vscode" + formats: null colors: bg: "#232830" fg: "#C0C5CE" diff --git a/themes/tinacious-design-syntax.yaml b/themes/tinacious-design-syntax.yaml deleted file mode 100644 index 265b7051..00000000 --- a/themes/tinacious-design-syntax.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tinacious Design Syntax" -source: - marketplace_id: "Prabodhan.blush" - version: "2.0.2" - installs: 1076 - rating: 5 - ratings: 1 - author: "Prabodhan" - repo: "https://github.com/Prabodhan29/vscode-theme-blush" - url: "https://marketplace.visualstudio.com/items?itemName=Prabodhan.blush" -colors: - bg: "#1D1D26" - fg: "#B3B3D4" - black: "#2C2C3E" - red: "#F30067" - green: "#00D364" - yellow: "#FFCC66" - blue: "#00BFFF" - magenta: "#F30067" - cyan: "#00CED1" - white: "#FFFFFF" - brightBlack: "#3D3D56" - brightRed: "#F30067" - brightGreen: "#00D364" - brightYellow: "#FFCC66" - brightBlue: "#00BFFF" - brightMagenta: "#F30067" - brightCyan: "#00CED1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 285 - pair: null - contrast: - fg: 60.9 - black: 0 - red: 33.8 - green: 62.7 - yellow: 78.5 - blue: 59.6 - magenta: 33.8 - cyan: 63.8 - white: 106.1 - brightBlack: 0 - brightRed: 33.8 - brightGreen: 62.7 - brightYellow: 78.5 - brightBlue: 59.6 - brightMagenta: 33.8 - brightCyan: 63.8 - brightWhite: 106.1 diff --git a/themes/tiniri-dark.yaml b/themes/tiniri-dark.yaml deleted file mode 100644 index c4d0ea66..00000000 --- a/themes/tiniri-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tiniri Dark" -source: - marketplace_id: "vladstudio.vlad-studio-tiniri" - version: "0.0.73" - installs: 1915 - rating: 5 - ratings: 3 - author: "Vlad.studio" - repo: "https://github.com/vladstudio/tiniri-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=vladstudio.vlad-studio-tiniri" -colors: - bg: "#1A1C1E" - fg: "#E8E6E3" - black: "#1A1C1E" - red: "#C66B67" - green: "#85A0AD" - yellow: "#CEA182" - blue: "#CEA182" - magenta: "#9F9A93" - cyan: "#85A0AD" - white: "#E8E5E3" - brightBlack: "#575653" - brightRed: "#D9726C" - brightGreen: "#85A0AD" - brightYellow: "#E5C7B2" - brightBlue: "#E5C7B2" - brightMagenta: "#ABA49C" - brightCyan: "#E8E5E3" - brightWhite: "#FFFCF0" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Tiniri Light" - contrast: - fg: 90.2 - black: 0 - red: 36 - green: 47.1 - yellow: 54.8 - blue: 54.8 - magenta: 46.5 - cyan: 47.1 - white: 89.8 - brightBlack: 15 - brightRed: 41.5 - brightGreen: 47.1 - brightYellow: 74.5 - brightBlue: 74.5 - brightMagenta: 52 - brightCyan: 89.8 - brightWhite: 104.2 diff --git a/themes/tiniri-light.yaml b/themes/tiniri-light.yaml deleted file mode 100644 index 9cc46875..00000000 --- a/themes/tiniri-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tiniri Light" -source: - marketplace_id: "vladstudio.vlad-studio-tiniri" - version: "0.0.73" - installs: 1915 - rating: 5 - ratings: 3 - author: "Vlad.studio" - repo: "https://github.com/vladstudio/tiniri-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=vladstudio.vlad-studio-tiniri" -colors: - bg: "#FEFDFD" - fg: "#222120" - black: "#44403C" - red: "#994C48" - green: "#538A8A" - yellow: "#994C48" - blue: "#2D5C80" - magenta: "#804C6E" - cyan: "#538A8A" - white: "#DAD8CE" - brightBlack: "#B7B5AC" - brightRed: "#994C48" - brightGreen: "#538A8A" - brightYellow: "#E59793" - brightBlue: "#2D5C80" - brightMagenta: "#BD71A4" - brightCyan: "#538A8A" - brightWhite: "#E6E4D9" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Tiniri Dark" - contrast: - fg: 102 - black: 92.8 - red: 78.7 - green: 65.4 - yellow: 78.7 - blue: 83.4 - magenta: 81.4 - cyan: 65.4 - white: 19.5 - brightBlack: 39 - brightRed: 78.7 - brightGreen: 65.4 - brightYellow: 43.9 - brightBlue: 83.4 - brightMagenta: 60.9 - brightCyan: 65.4 - brightWhite: 12.6 diff --git a/themes/tiny-light.yaml b/themes/tiny-light.yaml index 06a57e70..77e85bb2 100644 --- a/themes/tiny-light.yaml +++ b/themes/tiny-light.yaml @@ -1,52 +1,53 @@ name: "Tiny Light" source: - marketplace_id: "zhiqiangx.xeon-light" - version: "0.0.2" - installs: 2787 - rating: 5 - ratings: 1 - author: "zhiqiangx" - repo: "https://github.com/zhiqiangx/tinylight-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=zhiqiangx.xeon-light" + marketplace_id: "luqimin.tiny-light" + version: "2.0.9" + installs: 103431 + rating: 4.91 + ratings: 11 + author: "luqimin" + repo: "https://github.com/luqimin/tinylight-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=luqimin.tiny-light" + formats: null colors: bg: "#FFFBE8" fg: "#499504" - black: "#000000" - red: "#FD6C67" - green: "#097E00" - yellow: "#CDCB00" - blue: "#5597EF" - magenta: "#FE76FF" - cyan: "#39CBCC" - white: "#BBBBBB" - brightBlack: "#686868" - brightRed: "#FE8885" - brightGreen: "#74FA61" - brightYellow: "#FFFB00" - brightBlue: "#7FAFF4" - brightMagenta: "#FE9CFF" - brightCyan: "#6FDADA" - brightWhite: "#F1F1F1" + black: "#353B43" + red: "#E6848A" + green: "#859900" + yellow: "#A8CB8F" + blue: "#75BFEF" + magenta: "#D33682" + cyan: "#93A1A1" + white: "#606060" + brightBlack: "#353B43" + brightRed: "#DC322F" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#2AA198" + brightWhite: "#808080" meta: mode: "light" - accent: "pink" + accent: "orange" hue: null pair: null contrast: fg: 62.1 - black: 103.4 - red: 50.4 - green: 72.7 - yellow: 28.4 - blue: 53.4 - magenta: 41.5 - cyan: 35.3 - white: 34.1 - brightBlack: 75.2 - brightRed: 42.6 - brightGreen: 14 - brightYellow: 0 - brightBlue: 41.5 - brightMagenta: 31.6 - brightCyan: 25.9 - brightWhite: 0 + black: 93.4 + red: 48.1 + green: 56.4 + yellow: 31 + blue: 36.1 + magenta: 67.6 + cyan: 49.3 + white: 78.7 + brightBlack: 93.4 + brightRed: 67.8 + brightGreen: 74.2 + brightYellow: 68.3 + brightBlue: 56.1 + brightMagenta: 67.6 + brightCyan: 55.6 + brightWhite: 64.2 diff --git a/themes/titillating-midnight.yaml b/themes/titillating-midnight.yaml index b4255463..4f4b8b3b 100644 --- a/themes/titillating-midnight.yaml +++ b/themes/titillating-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/relentless" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.relentless" + formats: null colors: bg: "#00001A" fg: "#BEC4D4" diff --git a/themes/titillating-sunset.yaml b/themes/titillating-sunset.yaml index 174c216e..bd490e89 100644 --- a/themes/titillating-sunset.yaml +++ b/themes/titillating-sunset.yaml @@ -8,6 +8,7 @@ source: author: "Michael Andreuzza " repo: "https://github.com/michael-andreuzza/relentless" url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.relentless" + formats: null colors: bg: "#191B39" fg: "#BEC4D4" diff --git a/themes/tlapalli-00-obsidian.yaml b/themes/tlapalli-00-obsidian.yaml index 8e15aaff..1c88bfcd 100644 --- a/themes/tlapalli-00-obsidian.yaml +++ b/themes/tlapalli-00-obsidian.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#020202" fg: "#A7A7A7" diff --git a/themes/tlapalli-01-gold.yaml b/themes/tlapalli-01-gold.yaml index 165b32c6..965611c6 100644 --- a/themes/tlapalli-01-gold.yaml +++ b/themes/tlapalli-01-gold.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#090705" fg: "#BDA88A" diff --git a/themes/tlapalli-02-turquoise.yaml b/themes/tlapalli-02-turquoise.yaml index aaea34c6..89988591 100644 --- a/themes/tlapalli-02-turquoise.yaml +++ b/themes/tlapalli-02-turquoise.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#050909" fg: "#6AADAA" diff --git a/themes/tlapalli-03-quartz.yaml b/themes/tlapalli-03-quartz.yaml index cb55ac0f..95e41d64 100644 --- a/themes/tlapalli-03-quartz.yaml +++ b/themes/tlapalli-03-quartz.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#0A0509" fg: "#F78ABE" diff --git a/themes/tlapalli-04-lapis-lazuli.yaml b/themes/tlapalli-04-lapis-lazuli.yaml index de592194..a715e55c 100644 --- a/themes/tlapalli-04-lapis-lazuli.yaml +++ b/themes/tlapalli-04-lapis-lazuli.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#070A0D" fg: "#99B8D4" diff --git a/themes/tlapalli-05-amethyst.yaml b/themes/tlapalli-05-amethyst.yaml index 5537b2e4..77071d31 100644 --- a/themes/tlapalli-05-amethyst.yaml +++ b/themes/tlapalli-05-amethyst.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#060407" fg: "#997CC0" diff --git a/themes/tlapalli-06-jade.yaml b/themes/tlapalli-06-jade.yaml index 97c17233..2e1f4653 100644 --- a/themes/tlapalli-06-jade.yaml +++ b/themes/tlapalli-06-jade.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#070B09" fg: "#6AAD8F" diff --git a/themes/tlapalli-07-fire-opal.yaml b/themes/tlapalli-07-fire-opal.yaml index 4db36271..e8d589ab 100644 --- a/themes/tlapalli-07-fire-opal.yaml +++ b/themes/tlapalli-07-fire-opal.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#0C0707" fg: "#D96670" diff --git a/themes/tlapalli-l-00-obsidian-light.yaml b/themes/tlapalli-l-00-obsidian-light.yaml index 70e34e7d..d061077f 100644 --- a/themes/tlapalli-l-00-obsidian-light.yaml +++ b/themes/tlapalli-l-00-obsidian-light.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#FDFDFD" fg: "#4F4F4F" diff --git a/themes/tlapalli-l-01-gold-light.yaml b/themes/tlapalli-l-01-gold-light.yaml index e58eb243..09f9edfd 100644 --- a/themes/tlapalli-l-01-gold-light.yaml +++ b/themes/tlapalli-l-01-gold-light.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#FAF8F6" fg: "#756042" diff --git a/themes/tlapalli-l-02-turquoise-light.yaml b/themes/tlapalli-l-02-turquoise-light.yaml index 096b2a2d..ed355587 100644 --- a/themes/tlapalli-l-02-turquoise-light.yaml +++ b/themes/tlapalli-l-02-turquoise-light.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#F6FAFA" fg: "#33615F" diff --git a/themes/tlapalli-l-03-quartz-light.yaml b/themes/tlapalli-l-03-quartz-light.yaml index 123ed8a6..366ad335 100644 --- a/themes/tlapalli-l-03-quartz-light.yaml +++ b/themes/tlapalli-l-03-quartz-light.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#FAF5F9" fg: "#75083C" diff --git a/themes/tlapalli-l-04-lapis-lazuli-light.yaml b/themes/tlapalli-l-04-lapis-lazuli-light.yaml index e03f9bc6..b31fdd32 100644 --- a/themes/tlapalli-l-04-lapis-lazuli-light.yaml +++ b/themes/tlapalli-l-04-lapis-lazuli-light.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#F2F5F8" fg: "#2B4A66" diff --git a/themes/tlapalli-l-05-amethyst-light.yaml b/themes/tlapalli-l-05-amethyst-light.yaml index 2ad64196..398c74e5 100644 --- a/themes/tlapalli-l-05-amethyst-light.yaml +++ b/themes/tlapalli-l-05-amethyst-light.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#FAF8FB" fg: "#5C3F83" diff --git a/themes/tlapalli-l-06-jade-light.yaml b/themes/tlapalli-l-06-jade-light.yaml index a1c940a4..640eef96 100644 --- a/themes/tlapalli-l-06-jade-light.yaml +++ b/themes/tlapalli-l-06-jade-light.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#F4F8F6" fg: "#3C7159" diff --git a/themes/tlapalli-l-07-fire-opal-light.yaml b/themes/tlapalli-l-07-fire-opal-light.yaml index 7e83369e..256ef737 100644 --- a/themes/tlapalli-l-07-fire-opal-light.yaml +++ b/themes/tlapalli-l-07-fire-opal-light.yaml @@ -8,6 +8,7 @@ source: author: "ackzell" repo: "https://github.com/ackzell/tlapalli-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ackzell.tlapalli" + formats: null colors: bg: "#F8F3F3" fg: "#992630" diff --git a/themes/tm2rd3.yaml b/themes/tm2rd3.yaml index 1d6b00da..919e6cce 100644 --- a/themes/tm2rd3.yaml +++ b/themes/tm2rd3.yaml @@ -8,6 +8,7 @@ source: author: "rd-theme3" repo: null url: "https://marketplace.visualstudio.com/items?itemName=rd-theme3.tm2-rd3" + formats: null colors: bg: "#2B303B" fg: "#C5C8C6" diff --git a/themes/tmnt-dark-theme.yaml b/themes/tmnt-dark-theme.yaml index e9682903..e3df537a 100644 --- a/themes/tmnt-dark-theme.yaml +++ b/themes/tmnt-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "adrincode" repo: "https://github.com/adrianns/adrincode-themes-tmnt" url: "https://marketplace.visualstudio.com/items?itemName=adrincode.tmnt-theme" + formats: null colors: bg: "#1E1E1E" fg: "#F2F2F2" diff --git a/themes/tnove-dark-theme.yaml b/themes/tnove-dark-theme.yaml index 23eb69d3..d78d67a3 100644 --- a/themes/tnove-dark-theme.yaml +++ b/themes/tnove-dark-theme.yaml @@ -1,4 +1,4 @@ -name: "tnove-dark-theme" +name: "Tnove Dark Theme" source: marketplace_id: "nafiulkabirbd.tnove-dark-theme" version: "1.0.0" @@ -8,6 +8,7 @@ source: author: "Nafiul Kabir" repo: "https://github.com/nafiulkabirbd/tnove-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=nafiulkabirbd.tnove-dark-theme" + formats: null colors: bg: "#161828" fg: "#B4B4B4" diff --git a/themes/tobirama-water-style.yaml b/themes/tobirama-water-style.yaml deleted file mode 100644 index 853c2b4a..00000000 --- a/themes/tobirama-water-style.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tobirama Water Style" -source: - marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" - version: "1.0.0" - installs: 434 - rating: 0 - ratings: 0 - author: "Kushal Raj G S" - repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" - url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" -colors: - bg: "#0D1B2A" - fg: "#E8F4F8" - black: "#0D1B2A" - red: "#FF6B6B" - green: "#5DADE2" - yellow: "#FFB74D" - blue: "#4FC3F7" - magenta: "#9C88FF" - cyan: "#00CED1" - white: "#E8F4F8" - brightBlack: "#5A7A8F" - brightRed: "#FF8A80" - brightGreen: "#81D4FA" - brightYellow: "#FFD180" - brightBlue: "#80DEEA" - brightMagenta: "#B39DDB" - brightCyan: "#18FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 251 - pair: null - contrast: - fg: 97.8 - black: 0 - red: 47.7 - green: 52.4 - yellow: 70.2 - blue: 62.5 - magenta: 46 - cyan: 64.2 - white: 97.8 - brightBlack: 28.7 - brightRed: 56.1 - brightGreen: 72.9 - brightYellow: 81.4 - brightBlue: 76.6 - brightMagenta: 53.4 - brightCyan: 90.8 - brightWhite: 106.5 diff --git a/themes/todepond-theme.yaml b/themes/todepond-theme.yaml index e8488726..0b4fcfcd 100644 --- a/themes/todepond-theme.yaml +++ b/themes/todepond-theme.yaml @@ -1,4 +1,4 @@ -name: "TodePond Theme" +name: "TodePond-Theme" source: marketplace_id: "TodePond.TodePond-Theme" version: "0.0.2" @@ -8,6 +8,7 @@ source: author: "TodePond" repo: null url: "https://marketplace.visualstudio.com/items?itemName=TodePond.TodePond-Theme" + formats: null colors: bg: "#1F2736" fg: "#FFCC00" diff --git a/themes/tokito-inspired.yaml b/themes/tokito-inspired.yaml deleted file mode 100644 index e990357c..00000000 --- a/themes/tokito-inspired.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tokito Inspired" -source: - marketplace_id: "devLocifer.hashira-code-theme" - version: "0.0.1" - installs: 739 - rating: 5 - ratings: 1 - author: "devLocifer" - repo: "https://github.com/diazdjul19/hashira-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" -colors: - bg: "#141921" - fg: "#D1D5DB" - black: "#141921" - red: "#F472B6" - green: "#86EFAC" - yellow: "#FDE047" - blue: "#7DD3FC" - magenta: "#D8B4FE" - cyan: "#7DD3FC" - white: "#E5E7EB" - brightBlack: "#71717A" - brightRed: "#F472B6" - brightGreen: "#86EFAC" - brightYellow: "#FDE047" - brightBlue: "#7DD3FC" - brightMagenta: "#D8B4FE" - brightCyan: "#7DD3FC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 260 - pair: null - contrast: - fg: 79.7 - black: 0 - red: 49.7 - green: 82.9 - yellow: 87 - blue: 72.5 - magenta: 69.1 - cyan: 72.5 - white: 91 - brightBlack: 26.9 - brightRed: 49.7 - brightGreen: 82.9 - brightYellow: 87 - brightBlue: 72.5 - brightMagenta: 69.1 - brightCyan: 72.5 - brightWhite: 106.7 diff --git a/themes/tokv7.yaml b/themes/tokv7.yaml index b33f877f..6c0e1490 100644 --- a/themes/tokv7.yaml +++ b/themes/tokv7.yaml @@ -8,6 +8,7 @@ source: author: "tok" repo: null url: "https://marketplace.visualstudio.com/items?itemName=tok.tokv7" + formats: null colors: bg: "#1F1F1F" fg: "#CCCCCC" diff --git a/themes/tokyo-dark.yaml b/themes/tokyo-dark.yaml index e0b66905..6b08bf90 100644 --- a/themes/tokyo-dark.yaml +++ b/themes/tokyo-dark.yaml @@ -8,6 +8,7 @@ source: author: "smnatale" repo: "https://github.com/smnatale/tokyodark-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=smnatale.tokyodark" + formats: null colors: bg: "#090B10" fg: "#A9B1D6" diff --git a/themes/tokyo-dive.yaml b/themes/tokyo-dive.yaml index 0c027aa5..25835d2c 100644 --- a/themes/tokyo-dive.yaml +++ b/themes/tokyo-dive.yaml @@ -1,4 +1,4 @@ -name: "tokyo-dive" +name: "Tokyo Dive" source: marketplace_id: "sukemoritech.tokyo-dive" version: "0.1.0" @@ -8,6 +8,7 @@ source: author: "sukemoritech" repo: "https://github.com/sukemoritech/tokyo-dive" url: "https://marketplace.visualstudio.com/items?itemName=sukemoritech.tokyo-dive" + formats: null colors: bg: "#202123" fg: "#DADBDD" diff --git a/themes/tokyo-ghosts-dark.yaml b/themes/tokyo-ghosts-dark.yaml index d730eb3e..47853a2d 100644 --- a/themes/tokyo-ghosts-dark.yaml +++ b/themes/tokyo-ghosts-dark.yaml @@ -8,6 +8,7 @@ source: author: "Code Time" repo: "https://github.com/afj176/tokyo-ghosts" url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.tokyo-ghosts" + formats: null colors: bg: "#2B2D3A" fg: "#E0E2EB" diff --git a/themes/tokyo-ghosts-light.yaml b/themes/tokyo-ghosts-light.yaml index 476e37b3..0ab00ac8 100644 --- a/themes/tokyo-ghosts-light.yaml +++ b/themes/tokyo-ghosts-light.yaml @@ -8,6 +8,7 @@ source: author: "Code Time" repo: "https://github.com/afj176/tokyo-ghosts" url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.tokyo-ghosts" + formats: null colors: bg: "#F0F1F5" fg: "#2B2D3A" diff --git a/themes/tokyo-gogh-alt.yaml b/themes/tokyo-gogh-alt.yaml deleted file mode 100644 index 7d9ba3d8..00000000 --- a/themes/tokyo-gogh-alt.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tokyo Gogh Alt" -source: - marketplace_id: "Avetis.tokyo-night" - version: "1.0.2" - installs: 110968 - rating: 5 - ratings: 5 - author: "Avetis" - repo: "https://github.com/AvetisDN/tokyo-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Avetis.tokyo-night" -colors: - bg: "#1A1B26" - fg: "#C0CAF5" - black: "#000000" - red: "#CD3131" - green: "#54B02A" - yellow: "#FDB347" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#727779" - brightRed: "#F14C4C" - brightGreen: "#9CCE6A" - brightYellow: "#E4B571" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 280 - pair: null - contrast: - fg: 73.8 - black: 0 - red: 26.2 - green: 47.4 - yellow: 68.1 - blue: 26.9 - magenta: 29.2 - cyan: 47 - white: 89.5 - brightBlack: 28.6 - brightRed: 38 - brightGreen: 66.8 - brightYellow: 65.3 - brightBlue: 39.5 - brightMagenta: 44.8 - brightCyan: 54.9 - brightWhite: 89.5 diff --git a/themes/tokyo-gogh.yaml b/themes/tokyo-gogh.yaml deleted file mode 100644 index 33fedf73..00000000 --- a/themes/tokyo-gogh.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tokyo Gogh" -source: - marketplace_id: "Avetis.tokyo-night" - version: "1.0.2" - installs: 110968 - rating: 5 - ratings: 5 - author: "Avetis" - repo: "https://github.com/AvetisDN/tokyo-dark-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Avetis.tokyo-night" -colors: - bg: "#24283B" - fg: "#C0CAF5" - black: "#000000" - red: "#CD3131" - green: "#54B02A" - yellow: "#FDB347" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#727779" - brightRed: "#F14C4C" - brightGreen: "#9CCE6A" - brightYellow: "#E4B571" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 275 - pair: null - contrast: - fg: 71.7 - black: 0 - red: 24.1 - green: 45.3 - yellow: 66 - blue: 24.8 - magenta: 27.1 - cyan: 44.9 - white: 87.4 - brightBlack: 26.5 - brightRed: 35.9 - brightGreen: 64.7 - brightYellow: 63.2 - brightBlue: 37.4 - brightMagenta: 42.7 - brightCyan: 52.8 - brightWhite: 87.4 diff --git a/themes/tokyo-light.yaml b/themes/tokyo-light.yaml deleted file mode 100644 index 336d67ec..00000000 --- a/themes/tokyo-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tokyo (Light)" -source: - marketplace_id: "akil-s.tokyo-light" - version: "0.0.4" - installs: 7308 - rating: 5 - ratings: 1 - author: "akil-s" - repo: "https://github.com/Salah-Akil/tokyo-vscode-light" - url: "https://marketplace.visualstudio.com/items?itemName=akil-s.tokyo-light" -colors: - bg: "#FFFFFF" - fg: "#24292E" - black: "#232627" - red: "#BF0C0C" - green: "#738D01" - yellow: "#D59200" - blue: "#009C8F" - magenta: "#AA62C8" - cyan: "#17B898" - white: "#42413F" - brightBlack: "#464E4F" - brightRed: "#CA1111" - brightGreen: "#7F990D" - brightYellow: "#9E6200" - brightBlue: "#00B6A4" - brightMagenta: "#8E44AD" - brightCyan: "#16A085" - brightWhite: "#5D5C5A" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 101.5 - black: 102.2 - red: 79.4 - green: 65.2 - yellow: 51.2 - blue: 61 - magenta: 66.7 - cyan: 48.8 - white: 93.7 - brightBlack: 89.4 - brightRed: 76.8 - brightGreen: 59.6 - brightYellow: 74.2 - brightBlue: 49.3 - brightMagenta: 78.8 - brightCyan: 59.6 - brightWhite: 83 diff --git a/themes/tokyo-lights.yaml b/themes/tokyo-lights.yaml index 44ef464c..97ffa425 100644 --- a/themes/tokyo-lights.yaml +++ b/themes/tokyo-lights.yaml @@ -8,6 +8,7 @@ source: author: "vadyapan" repo: null url: "https://marketplace.visualstudio.com/items?itemName=elvados.tokyo-lights" + formats: null colors: bg: "#1A1B26" fg: "#A9B1D6" diff --git a/themes/tokyo-midnight.yaml b/themes/tokyo-midnight.yaml index 44cdcccd..23ee40c3 100644 --- a/themes/tokyo-midnight.yaml +++ b/themes/tokyo-midnight.yaml @@ -2,12 +2,14 @@ name: "Tokyo Midnight" source: marketplace_id: "nacholaciar.tokyo-midnight" version: "0.1.9" - installs: 14443 + installs: 14452 rating: 5 ratings: 1 author: "nacholaciar" repo: "https://github.com/nacholaciar/tokyo-midnight" url: "https://marketplace.visualstudio.com/items?itemName=nacholaciar.tokyo-midnight" + formats: + iterm2: "https://raw.githubusercontent.com/nacholaciar/tokyo-midnight/main/tokyo-night.itermcolors" colors: bg: "#26262E" fg: "#B5B5B5" diff --git a/themes/tokyo-modern.yaml b/themes/tokyo-modern.yaml index def7ce22..f4077269 100644 --- a/themes/tokyo-modern.yaml +++ b/themes/tokyo-modern.yaml @@ -2,12 +2,13 @@ name: "Tokyo Modern" source: marketplace_id: "lod-inc.tokyo-modern" version: "2.8.32" - installs: 39 + installs: 40 rating: 0 ratings: 0 author: "lod" repo: "https://github.com/darqus/tokyo-modern-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=lod-inc.tokyo-modern" + formats: null colors: bg: "#1D1B2F" fg: "#BBC4EE" diff --git a/themes/tokyo-night-blackout.yaml b/themes/tokyo-night-blackout.yaml index 6f5eec8a..22bf6bc7 100644 --- a/themes/tokyo-night-blackout.yaml +++ b/themes/tokyo-night-blackout.yaml @@ -2,12 +2,13 @@ name: "Tokyo Night Blackout" source: marketplace_id: "EdmundYong.tokyo-night-blackout" version: "0.0.1" - installs: 1991 + installs: 1993 rating: 0 ratings: 0 author: "Edmund Yong" repo: null url: "https://marketplace.visualstudio.com/items?itemName=EdmundYong.tokyo-night-blackout" + formats: null colors: bg: "#000000" fg: "#A9B1D6" diff --git a/themes/tokyo-night-bright.yaml b/themes/tokyo-night-bright.yaml index 4bdfa9f0..ed8ee8a7 100644 --- a/themes/tokyo-night-bright.yaml +++ b/themes/tokyo-night-bright.yaml @@ -2,12 +2,13 @@ name: "Tokyo Night Bright" source: marketplace_id: "danarnold.tokyo-night-bright" version: "0.0.1" - installs: 467 + installs: 470 rating: 0 ratings: 0 author: "danarnold" repo: "https://github.com/danarnold/tokyonight-vsc" url: "https://marketplace.visualstudio.com/items?itemName=danarnold.tokyo-night-bright" + formats: null colors: bg: "#1A1B26" fg: "#C0CAF5" diff --git a/themes/tokyo-night-dark.yaml b/themes/tokyo-night-dark.yaml index da10d1b8..e9ac23ae 100644 --- a/themes/tokyo-night-dark.yaml +++ b/themes/tokyo-night-dark.yaml @@ -2,12 +2,13 @@ name: "Tokyo Night Dark" source: marketplace_id: "drewxs.tokyo-night-dark" version: "0.3.3" - installs: 76477 + installs: 76547 rating: 4.67 ratings: 3 author: "Andrew X. Shah" repo: "https://github.com/kito0/tokyo-night-dark" url: "https://marketplace.visualstudio.com/items?itemName=drewxs.tokyo-night-dark" + formats: null colors: bg: "#0A0A0D" fg: "#A9B1D6" @@ -31,7 +32,7 @@ meta: mode: "dark" accent: "red" hue: null - pair: "Tokyo Night Light" + pair: null contrast: fg: 60.7 black: 0 diff --git a/themes/tokyo-night-equalizer.yaml b/themes/tokyo-night-equalizer.yaml deleted file mode 100644 index abd5d497..00000000 --- a/themes/tokyo-night-equalizer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tokyo Night Equalizer" -source: - marketplace_id: "ni3rav.andromeda-night" - version: "0.0.7" - installs: 1263 - rating: 0 - ratings: 0 - author: "ni3rav" - repo: "https://github.com/ni3rav/andromeda-night" - url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.andromeda-night" -colors: - bg: "#14151D" - fg: "#979AB3" - black: "#4A4E6B" - red: "#CA5F64" - green: "#6F768E" - yellow: "#B6A6C2" - blue: "#7A7C9D" - magenta: "#8A8CB2" - cyan: "#7F9BAD" - white: "#707083" - brightBlack: "#4A4E6B" - brightRed: "#CA5F64" - brightGreen: "#6F768E" - brightYellow: "#B6A6C2" - brightBlue: "#7A7C9D" - brightMagenta: "#8A8CB2" - brightCyan: "#7F9BAD" - brightWhite: "#8B8D9C" -meta: - mode: "dark" - accent: "orange" - hue: 279 - pair: null - contrast: - fg: 47.6 - black: 13.3 - red: 34.5 - green: 29.5 - yellow: 56.3 - blue: 33.1 - magenta: 41.1 - cyan: 45.3 - white: 27.2 - brightBlack: 13.3 - brightRed: 34.5 - brightGreen: 29.5 - brightYellow: 56.3 - brightBlue: 33.1 - brightMagenta: 41.1 - brightCyan: 45.3 - brightWhite: 40.6 diff --git a/themes/tokyo-night-light.yaml b/themes/tokyo-night-light.yaml deleted file mode 100644 index f23241f5..00000000 --- a/themes/tokyo-night-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tokyo Night Light" -source: - marketplace_id: "damask-holdings.tokyo-night-theme-damask-edition" - version: "0.0.1" - installs: 318 - rating: 0 - ratings: 0 - author: "Damask Holdings" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=damask-holdings.tokyo-night-theme-damask-edition" -colors: - bg: "#BFC0C7" - fg: "#343B59" - black: "#0F0F14" - red: "#8C4351" - green: "#33635C" - yellow: "#8F5E15" - blue: "#34548A" - magenta: "#5A4A78" - cyan: "#0F4B6E" - white: "#828594" - brightBlack: "#0F0F14" - brightRed: "#8C4351" - brightGreen: "#33635C" - brightYellow: "#8F5E15" - brightBlue: "#34548A" - brightMagenta: "#5A4A78" - brightCyan: "#0F4B6E" - brightWhite: "#828594" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: "Tokyo Night Dark" - contrast: - fg: 59.4 - black: 69.5 - red: 47.5 - green: 47.4 - yellow: 41.5 - blue: 50.1 - magenta: 51.1 - cyan: 55.2 - white: 28.3 - brightBlack: 69.5 - brightRed: 47.5 - brightGreen: 47.4 - brightYellow: 41.5 - brightBlue: 50.1 - brightMagenta: 51.1 - brightCyan: 55.2 - brightWhite: 28.3 diff --git a/themes/tokyo-night-nv.yaml b/themes/tokyo-night-nv.yaml index 1eaf4ed0..5de06830 100644 --- a/themes/tokyo-night-nv.yaml +++ b/themes/tokyo-night-nv.yaml @@ -1,35 +1,36 @@ -name: "Tokyo Night nv" +name: "Tokyo Night NV" source: - marketplace_id: "tokyo-night.nvtokyo" - version: "0.0.1" - installs: 1816 - rating: 0 - ratings: 0 - author: "tokyo-night" + marketplace_id: "HuynhDuong.nvtokyo-theme" + version: "0.0.2" + installs: 8158 + rating: 5 + ratings: 2 + author: "Huynh Duong" repo: "https://github.com/betty2310/Tokyo-Night" - url: "https://marketplace.visualstudio.com/items?itemName=tokyo-night.nvtokyo" + url: "https://marketplace.visualstudio.com/items?itemName=HuynhDuong.nvtokyo-theme" + formats: null colors: bg: "#1A1B26" fg: "#C0CAF5" - black: "#000000" + black: "#24283B" red: "#F7768E" green: "#9ECE6A" yellow: "#E0AF68" blue: "#7AA2F7" magenta: "#BB9AF7" - cyan: "#B4F9F8" + cyan: "#29D8DB" white: "#E5E5E5" brightBlack: "#727779" - brightRed: "#F14C4C" + brightRed: "#F7768E" brightGreen: "#9CCE6A" brightYellow: "#E4B571" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" brightCyan: "#29B8DB" brightWhite: "#E5E5E5" meta: mode: "dark" - accent: "orange" + accent: "red" hue: 280 pair: null contrast: @@ -40,13 +41,13 @@ meta: yellow: 62.2 blue: 51.1 magenta: 55 - cyan: 94.3 + cyan: 69.5 white: 89.5 brightBlack: 28.6 - brightRed: 38 + brightRed: 49.4 brightGreen: 66.8 brightYellow: 65.3 - brightBlue: 39.5 - brightMagenta: 44.8 + brightBlue: 51.1 + brightMagenta: 55 brightCyan: 54.9 brightWhite: 89.5 diff --git a/themes/tokyo-night-pure.yaml b/themes/tokyo-night-pure.yaml index f8c54c0f..4d7eda2e 100644 --- a/themes/tokyo-night-pure.yaml +++ b/themes/tokyo-night-pure.yaml @@ -2,12 +2,13 @@ name: "Tokyo Night Pure" source: marketplace_id: "nishantg96.tokyo-night-pure" version: "0.0.3" - installs: 1744 + installs: 1746 rating: 5 ratings: 1 author: "Nishant Gajjar" repo: "https://github.com/nishantg96/Tokyo-Night-Pure-VSCode" url: "https://marketplace.visualstudio.com/items?itemName=nishantg96.tokyo-night-pure" + formats: null colors: bg: "#1A1B26" fg: "#CFC9C2" diff --git a/themes/tokyo-night-theme.yaml b/themes/tokyo-night-theme.yaml deleted file mode 100644 index 3c24a2b1..00000000 --- a/themes/tokyo-night-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tokyo-night-theme" -source: - marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" - version: "0.0.7" - installs: 660 - rating: 5 - ratings: 1 - author: "dharmendra kumar" - repo: "https://github.com/dharam-gfx/dharam-gfx-theme" - url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" -colors: - bg: "#24283B" - fg: "#A9B1D6" - black: "#414868" - red: "#F7768E" - green: "#73DACA" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#7982A9" - brightBlack: "#414868" - brightRed: "#F7768E" - brightGreen: "#73DACA" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#A9B1D6" -meta: - mode: "dark" - accent: "red" - hue: 275 - pair: null - contrast: - fg: 57.2 - black: 8.2 - red: 47.3 - green: 70.1 - yellow: 60.1 - blue: 49 - magenta: 52.9 - cyan: 68.4 - white: 32.8 - brightBlack: 8.2 - brightRed: 47.3 - brightGreen: 70.1 - brightYellow: 60.1 - brightBlue: 49 - brightMagenta: 52.9 - brightCyan: 68.4 - brightWhite: 57.2 diff --git a/themes/tokyo-night-void.yaml b/themes/tokyo-night-void.yaml index 0d4f2b07..0a099e8f 100644 --- a/themes/tokyo-night-void.yaml +++ b/themes/tokyo-night-void.yaml @@ -2,12 +2,13 @@ name: "Tokyo Night Void" source: marketplace_id: "SatoruCode.tokyo-night-void" version: "0.0.1" - installs: 419 + installs: 420 rating: 5 ratings: 1 author: "Satoru Code" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SatoruCode.tokyo-night-void" + formats: null colors: bg: "#000000" fg: "#A9B1D6" diff --git a/themes/tokyo-panda.yaml b/themes/tokyo-panda.yaml index 2a61ecb8..798a0bc2 100644 --- a/themes/tokyo-panda.yaml +++ b/themes/tokyo-panda.yaml @@ -2,12 +2,13 @@ name: "Tokyo Panda" source: marketplace_id: "effordDev.tokyo-panda-theme" version: "1.12.0" - installs: 8334 + installs: 8339 rating: 5 ratings: 1 author: "effordDev" repo: "https://github.com/effordDev/tokyo-panda-theme" url: "https://marketplace.visualstudio.com/items?itemName=effordDev.tokyo-panda-theme" + formats: null colors: bg: "#1A1B26" fg: "#A9B1D6" diff --git a/themes/tokyo.yaml b/themes/tokyo.yaml deleted file mode 100644 index 962381d1..00000000 --- a/themes/tokyo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tokyo" -source: - marketplace_id: "Avetis.codeme-theme" - version: "0.1.1" - installs: 8080 - rating: 0 - ratings: 0 - author: "Avetis" - repo: "https://github.com/AvetisDN/codeme-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" -colors: - bg: "#1A1B22" - fg: "#D7DCE8" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#D7DCE8" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 279 - pair: null - contrast: - fg: 83.8 - black: 0 - red: 26.2 - green: 52.5 - yellow: 85.1 - blue: 26.9 - magenta: 29.3 - cyan: 47.1 - white: 83.8 - brightBlack: 21.5 - brightRed: 38.1 - brightGreen: 63 - brightYellow: 95.1 - brightBlue: 39.5 - brightMagenta: 44.9 - brightCyan: 54.9 - brightWhite: 106.4 diff --git a/themes/tokyogo.yaml b/themes/tokyogo.yaml deleted file mode 100644 index 65a11732..00000000 --- a/themes/tokyogo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "TokyoGo" -source: - marketplace_id: "daniloBrayann.blue-theme-dark" - version: "0.0.37" - installs: 454 - rating: 5 - ratings: 1 - author: "daniloBrayann" - repo: "https://github.com/danilobrayann/dev-code-theme" - url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.blue-theme-dark" -colors: - bg: "#24283B" - fg: "#A9B1D6" - black: "#414868" - red: "#F7768E" - green: "#73DACA" - yellow: "#E0AF68" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#8089B3" - brightBlack: "#414868" - brightRed: "#F7768E" - brightGreen: "#73DACA" - brightYellow: "#E0AF68" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#A9B1D6" -meta: - mode: "dark" - accent: "red" - hue: 275 - pair: null - contrast: - fg: 57.2 - black: 8.2 - red: 47.3 - green: 70.1 - yellow: 60.1 - blue: 49 - magenta: 52.9 - cyan: 68.4 - white: 36.4 - brightBlack: 8.2 - brightRed: 47.3 - brightGreen: 70.1 - brightYellow: 60.1 - brightBlue: 49 - brightMagenta: 52.9 - brightCyan: 68.4 - brightWhite: 57.2 diff --git a/themes/tokyonight-moon-lazy.yaml b/themes/tokyonight-moon-lazy.yaml deleted file mode 100644 index d3ae4bc1..00000000 --- a/themes/tokyonight-moon-lazy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "TokyoNight Moon (Lazy)" -source: - marketplace_id: "gyro-uyt.lazy-themes" - version: "0.1.5" - installs: 18 - rating: 5 - ratings: 1 - author: "Uday Thakur" - repo: "https://github.com/gyro-uyt/lazy-themes" - url: "https://marketplace.visualstudio.com/items?itemName=gyro-uyt.lazy-themes" -colors: - bg: "#222436" - fg: "#C8D3F5" - black: "#1B1D2B" - red: "#FF757F" - green: "#C3E88D" - yellow: "#FFC777" - blue: "#82AAFF" - magenta: "#C099FF" - cyan: "#86E1FC" - white: "#C8D3F5" - brightBlack: "#828BB8" - brightRed: "#FF757F" - brightGreen: "#C3E88D" - brightYellow: "#FFC777" - brightBlue: "#82AAFF" - brightMagenta: "#C099FF" - brightCyan: "#86E1FC" - brightWhite: "#C8D3F5" -meta: - mode: "dark" - accent: "orange" - hue: 279 - pair: null - contrast: - fg: 77.2 - black: 0 - red: 48.9 - green: 82.2 - yellow: 75.6 - blue: 54 - magenta: 54.5 - cyan: 77.8 - white: 77.2 - brightBlack: 38.2 - brightRed: 48.9 - brightGreen: 82.2 - brightYellow: 75.6 - brightBlue: 54 - brightMagenta: 54.5 - brightCyan: 77.8 - brightWhite: 77.2 diff --git a/themes/tokyonight.yaml b/themes/tokyonight.yaml deleted file mode 100644 index b9c31928..00000000 --- a/themes/tokyonight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tokyoNIGHT" -source: - marketplace_id: "UnSad.tragicpale" - version: "0.0.1" - installs: 184 - rating: 0 - ratings: 0 - author: "UnSad" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=UnSad.tragicpale" -colors: - bg: "#131421" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#F5F5F5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 280 - pair: null - contrast: - fg: 107 - black: 0 - red: 26.9 - green: 53.2 - yellow: 85.8 - blue: 27.6 - magenta: 29.9 - cyan: 47.7 - white: 100.5 - brightBlack: 22.2 - brightRed: 38.7 - brightGreen: 63.7 - brightYellow: 95.8 - brightBlue: 40.2 - brightMagenta: 45.5 - brightCyan: 55.6 - brightWhite: 90.2 diff --git a/themes/tol.yaml b/themes/tol.yaml index 09ec3e2e..e98a9d1d 100644 --- a/themes/tol.yaml +++ b/themes/tol.yaml @@ -2,12 +2,13 @@ name: "Tol" source: marketplace_id: "dustypomerleau.tol" version: "0.11.0" - installs: 5418 + installs: 5421 rating: 5 ratings: 4 author: "Dusty Pomerleau" repo: "https://github.com/dustypomerleau/tol" url: "https://marketplace.visualstudio.com/items?itemName=dustypomerleau.tol" + formats: null colors: bg: "#292D3E" fg: "#CAC0A9" diff --git a/themes/tomorrow-night-bright-r-classic.yaml b/themes/tomorrow-night-bright-r-classic.yaml index afc3139e..ab82e272 100644 --- a/themes/tomorrow-night-bright-r-classic.yaml +++ b/themes/tomorrow-night-bright-r-classic.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "gvelasq.tomorrow-night-bright-r-classic" version: "0.1.3" installs: 337 + rating: 0 + ratings: 0 author: "gvelasq" repo: "https://github.com/gvelasq/tomorrow-night-bright-r-classic" url: "https://marketplace.visualstudio.com/items?itemName=gvelasq.tomorrow-night-bright-r-classic" + formats: null colors: bg: "#000000" fg: "#DEDEDE" diff --git a/themes/tomorrow-night-ij.yaml b/themes/tomorrow-night-ij.yaml index b07f2af5..6138667c 100644 --- a/themes/tomorrow-night-ij.yaml +++ b/themes/tomorrow-night-ij.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Arkadiy-Dymkov-Weinstein.tomorrow-night-ij" version: "1.0.0" installs: 77 + rating: 0 + ratings: 0 author: "Arkadiy Dymkov-Weinstein" repo: "https://github.com/Arkady-Dymkov/tommorow-night-ij" url: "https://marketplace.visualstudio.com/items?itemName=Arkadiy-Dymkov-Weinstein.tomorrow-night-ij" + formats: null colors: bg: "#1D1F21" fg: "#C5C8C6" diff --git a/themes/tomorrow-night-vs.yaml b/themes/tomorrow-night-vs.yaml index a1c19102..2d7971d9 100644 --- a/themes/tomorrow-night-vs.yaml +++ b/themes/tomorrow-night-vs.yaml @@ -8,6 +8,8 @@ source: author: "xivilay" repo: "https://github.com/xivilay/vs-code-themes" url: "https://marketplace.visualstudio.com/items?itemName=xivilay.simplified-themes-mods-pack" + formats: + zed: "https://raw.githubusercontent.com/xivilay/vs-code-themes/main/themes/solarized_light.json" colors: bg: "#263035" fg: "#C5C8C6" diff --git a/themes/tomorrowmyst.yaml b/themes/tomorrowmyst.yaml index b16f1eac..f6db8fd0 100644 --- a/themes/tomorrowmyst.yaml +++ b/themes/tomorrowmyst.yaml @@ -8,6 +8,7 @@ source: author: "CodeMyst" repo: "https://github.com/CodeMyst/TomorrowMyst" url: "https://marketplace.visualstudio.com/items?itemName=CodeMyst.tomorrowmyst" + formats: null colors: bg: "#141414" fg: "#C5C8C6" diff --git a/themes/tonic-contrast.yaml b/themes/tonic-contrast.yaml deleted file mode 100644 index e4ae2d0e..00000000 --- a/themes/tonic-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tonic-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#111314" - fg: "#EEEEEE" - black: "#1D2022" - red: "#BA0E2E" - green: "#75A1A4" - yellow: "#B8CD44" - blue: "#FD9F59" - magenta: "#EF6E44" - cyan: "#B8CD44" - white: "#FBFBFB" - brightBlack: "#40474B" - brightRed: "#F03E5F" - brightGreen: "#B2CBCD" - brightYellow: "#D7E394" - brightBlue: "#FED9BE" - brightMagenta: "#F7B7A2" - brightCyan: "#D7E394" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.1 - black: 0 - red: 20.9 - green: 46.7 - yellow: 69.6 - blue: 62.2 - magenta: 45 - cyan: 69.6 - white: 104.6 - brightBlack: 9.9 - brightRed: 37.2 - brightGreen: 71.6 - brightYellow: 84.8 - brightBlue: 87.2 - brightMagenta: 71.4 - brightCyan: 84.8 - brightWhite: 107.3 diff --git a/themes/tonic-light.yaml b/themes/tonic-light.yaml deleted file mode 100644 index 81674b5c..00000000 --- a/themes/tonic-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tonic-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#EEEEEE" - fg: "#2A2F31" - black: "#FBFBFB" - red: "#BA0E2E" - green: "#75A1A4" - yellow: "#B8CD44" - blue: "#FD9F59" - magenta: "#EF6E44" - cyan: "#B8CD44" - white: "#363C3F" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#B2CBCD" - brightYellow: "#D7E394" - brightBlue: "#FED9BE" - brightMagenta: "#F7B7A2" - brightCyan: "#D7E394" - brightWhite: "#596468" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 90 - black: 0 - red: 70.2 - green: 44.4 - yellow: 22.4 - blue: 29.4 - magenta: 46 - cyan: 22.4 - white: 85.8 - brightBlack: 8.9 - brightRed: 53.8 - brightGreen: 20.4 - brightYellow: 8 - brightBlue: 0 - brightMagenta: 20.6 - brightCyan: 8 - brightWhite: 70.3 diff --git a/themes/tonic.yaml b/themes/tonic.yaml deleted file mode 100644 index 15607d3a..00000000 --- a/themes/tonic.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tonic" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2A2F31" - fg: "#EEEEEE" - black: "#363C3F" - red: "#BA0E2E" - green: "#75A1A4" - yellow: "#B8CD44" - blue: "#FD9F59" - magenta: "#EF6E44" - cyan: "#B8CD44" - white: "#FBFBFB" - brightBlack: "#596468" - brightRed: "#F03E5F" - brightGreen: "#B2CBCD" - brightYellow: "#D7E394" - brightBlue: "#FED9BE" - brightMagenta: "#F7B7A2" - brightCyan: "#D7E394" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.1 - black: 0 - red: 16.8 - green: 42.7 - yellow: 65.5 - blue: 58.2 - magenta: 41 - cyan: 65.5 - white: 100.5 - brightBlack: 16.7 - brightRed: 33.1 - brightGreen: 67.5 - brightYellow: 80.7 - brightBlue: 83.1 - brightMagenta: 67.3 - brightCyan: 80.7 - brightWhite: 103.2 diff --git a/themes/toodark.yaml b/themes/toodark.yaml index cd40f064..d00fde0d 100644 --- a/themes/toodark.yaml +++ b/themes/toodark.yaml @@ -8,6 +8,7 @@ source: author: "Raj Shekhar" repo: "https://github.com/blankRSD/TooDark" url: "https://marketplace.visualstudio.com/items?itemName=blankrsd.toodark" + formats: null colors: bg: "#121416" fg: "#C8C8C8" diff --git a/themes/topic-the-leader.yaml b/themes/topic-the-leader.yaml index 524b5082..bceccf1a 100644 --- a/themes/topic-the-leader.yaml +++ b/themes/topic-the-leader.yaml @@ -8,6 +8,7 @@ source: author: "J27.dev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=J27dev.jhonat2709" + formats: null colors: bg: "#000000" fg: "#FFFB00" diff --git a/themes/tora.yaml b/themes/tora.yaml deleted file mode 100644 index 8c9a5666..00000000 --- a/themes/tora.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tora" -source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - rating: 0 - ratings: 0 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" -colors: - bg: "#0D0B08" - fg: "#E6D7C3" - black: "#2A1E0F" - red: "#D2691E" - green: "#228B22" - yellow: "#FFA500" - blue: "#4682B4" - magenta: "#9932CC" - cyan: "#2E8B57" - white: "#E6D7C3" - brightBlack: "#6B5D4F" - brightRed: "#FF6347" - brightGreen: "#32CD32" - brightYellow: "#FFD700" - brightBlue: "#87CEEB" - brightMagenta: "#DA70D6" - brightCyan: "#20B2AA" - brightWhite: "#F4E4C1" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 83.3 - black: 0 - red: 38.1 - green: 31.5 - yellow: 64.5 - blue: 33.4 - magenta: 24.2 - cyan: 32.5 - white: 83.3 - brightBlack: 20.1 - brightRed: 46.6 - brightGreen: 61.2 - brightYellow: 84.1 - brightBlue: 71 - brightMagenta: 46.9 - brightCyan: 51.1 - brightWhite: 91 diff --git a/themes/torque.yaml b/themes/torque.yaml index e8baf574..73e347db 100644 --- a/themes/torque.yaml +++ b/themes/torque.yaml @@ -8,6 +8,7 @@ source: author: "iktisad rashid" repo: "https://github.com/Iktisad/torque-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=IktisadRashid.torque-dark-theme" + formats: null colors: bg: "#10161B" fg: "#FFFFFF" diff --git a/themes/torte-vim.yaml b/themes/torte-vim.yaml deleted file mode 100644 index 1bb5c966..00000000 --- a/themes/torte-vim.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Torte Vim" -source: - marketplace_id: "GabrielVillalonga.torte-theme" - version: "0.0.2" - installs: 792 - rating: 0 - ratings: 0 - author: "GabrielVillalonga" - repo: "https://github.com/gabivlj/torte" - url: "https://marketplace.visualstudio.com/items?itemName=GabrielVillalonga.torte-theme" -colors: - bg: "#000000" - fg: "#C9C9C9" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 73.9 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/total-black-theme.yaml b/themes/total-black-theme.yaml deleted file mode 100644 index 064fd64b..00000000 --- a/themes/total-black-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "total-black-theme" -source: - marketplace_id: "Jotatajo22.black-total" - version: "0.0.1" - installs: 45 - rating: 0 - ratings: 0 - author: "Jotatajo22" - repo: "https://github.com/JoaoPedro-cody/black-total" - url: "https://marketplace.visualstudio.com/items?itemName=Jotatajo22.black-total" -colors: - bg: "#000000" - fg: "#E6E6EA" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#6F6F6F" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 91.8 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 27 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/total-lunar-eclipse.yaml b/themes/total-lunar-eclipse.yaml deleted file mode 100644 index 6ce96c9c..00000000 --- a/themes/total-lunar-eclipse.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Total Lunar Eclipse" -source: - marketplace_id: "ginfuru.lunar-eclipse" - version: "0.1.4" - installs: 10316 - rating: 5 - ratings: 1 - author: "Ed Heltzel" - repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" -colors: - bg: "#111418" - fg: "#AEB2B2" - black: "#63828A" - red: "#FF0046" - green: "#2DAE58" - yellow: "#CF9C00" - blue: "#09A1ED" - magenta: "#EA00D9" - cyan: "#AF79FE" - white: "#DDE4F1" - brightBlack: "#303742" - brightRed: "#FF2E87" - brightGreen: "#25DA6A" - brightYellow: "#FFC104" - brightBlue: "#41B9FF" - brightMagenta: "#C75AF3" - brightCyan: "#16DAD6" - brightWhite: "#E3EEFE" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 59.5 - black: 32.6 - red: 37.2 - green: 46.6 - yellow: 52.5 - blue: 47 - magenta: 38 - cyan: 44.6 - white: 89.4 - brightBlack: 0 - brightRed: 40.2 - brightGreen: 67.5 - brightYellow: 74.4 - brightBlue: 58.9 - brightMagenta: 40.3 - brightCyan: 70.9 - brightWhite: 95.4 diff --git a/themes/totow-s-th-me.yaml b/themes/totow-s-th-me.yaml deleted file mode 100644 index 7cdb58fe..00000000 --- a/themes/totow-s-th-me.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Totow's Thème" -source: - marketplace_id: "Totow.Totow-s-Theme" - version: "1.0.3" - installs: 288 - rating: 5 - ratings: 1 - author: "Totow" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Totow.Totow-s-Theme" -colors: - bg: "#222222" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.1 - black: 0 - red: 25.3 - green: 51.6 - yellow: 84.2 - blue: 26 - magenta: 28.3 - cyan: 46.1 - white: 88.6 - brightBlack: 20.6 - brightRed: 37.1 - brightGreen: 62.1 - brightYellow: 94.2 - brightBlue: 38.6 - brightMagenta: 44 - brightCyan: 54 - brightWhite: 88.6 diff --git a/themes/toxic-color-theme.yaml b/themes/toxic-color-theme.yaml deleted file mode 100644 index 1e2d7521..00000000 --- a/themes/toxic-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "toxic-color-theme" -source: - marketplace_id: "wavebeem.toxic-vscode" - version: "0.3.1" - installs: 408 - rating: 0 - ratings: 0 - author: "Sage Fennel" - repo: "https://github.com/wavebeem/toxic-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.toxic-vscode" -colors: - bg: "#251F47" - fg: "#D4CCFF" - black: "#4E3D7D" - red: "#FF6882" - green: "#83D411" - yellow: "#F29324" - blue: "#6DA8FF" - magenta: "#FF75F1" - cyan: "#00CBC0" - white: "#F7F1FF" - brightBlack: "#4E3D7D" - brightRed: "#FF6882" - brightGreen: "#83D411" - brightYellow: "#F29324" - brightBlue: "#6DA8FF" - brightMagenta: "#FF75F1" - brightCyan: "#00CBC0" - brightWhite: "#F7F1FF" -meta: - mode: "dark" - accent: "pink" - hue: 287 - pair: null - contrast: - fg: 76.3 - black: 8.4 - red: 46.1 - green: 65.3 - yellow: 53.4 - blue: 51.7 - magenta: 54.1 - cyan: 60.4 - white: 97.2 - brightBlack: 8.4 - brightRed: 46.1 - brightGreen: 65.3 - brightYellow: 53.4 - brightBlue: 51.7 - brightMagenta: 54.1 - brightCyan: 60.4 - brightWhite: 97.2 diff --git a/themes/toxic-waste.yaml b/themes/toxic-waste.yaml deleted file mode 100644 index baaeedf7..00000000 --- a/themes/toxic-waste.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Toxic Waste" -source: - marketplace_id: "CodewithBismillah.chroma-library" - version: "1.2.1" - installs: 358 - rating: 5 - ratings: 1 - author: "Code with Bismillah" - repo: "https://github.com/mubashir1837/Chroma-Library" - url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" -colors: - bg: "#0A1A0A" - fg: "#80FF80" - black: "#000000" - red: "#FF4040" - green: "#00FF00" - yellow: "#FFFF40" - blue: "#4040FF" - magenta: "#FF40FF" - cyan: "#40FFFF" - white: "#FFFFFF" - brightBlack: "#000000" - brightRed: "#FF4040" - brightGreen: "#00FF00" - brightYellow: "#FFFF40" - brightBlue: "#4040FF" - brightMagenta: "#FF40FF" - brightCyan: "#40FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 144 - pair: null - contrast: - fg: 89.8 - black: 0 - red: 40.1 - green: 85.5 - yellow: 101.9 - blue: 21.2 - magenta: 48.1 - cyan: 91.8 - white: 106.9 - brightBlack: 0 - brightRed: 40.1 - brightGreen: 85.5 - brightYellow: 101.9 - brightBlue: 21.2 - brightMagenta: 48.1 - brightCyan: 91.8 - brightWhite: 106.9 diff --git a/themes/toy-chest.yaml b/themes/toy-chest.yaml index ff1d952e..bb2d2a49 100644 --- a/themes/toy-chest.yaml +++ b/themes/toy-chest.yaml @@ -8,6 +8,7 @@ source: author: "cloudMACHINES" repo: "https://github.com/fakebizprez/toy-chest-theme" url: "https://marketplace.visualstudio.com/items?itemName=cloudMACHINES.toy-chest-theme" + formats: null colors: bg: "#23364A" fg: "#30CF7B" diff --git a/themes/tranquillity-theme.yaml b/themes/tranquillity-theme.yaml index d274b83f..c4b69533 100644 --- a/themes/tranquillity-theme.yaml +++ b/themes/tranquillity-theme.yaml @@ -1,4 +1,4 @@ -name: "Tranquillity-theme" +name: "Tranquillity Theme" source: marketplace_id: "OmerFarukGungor.tranquillity-code" version: "0.0.3" @@ -8,6 +8,7 @@ source: author: "Omer Faruk Gungor" repo: "https://github.com/o-fgungor/tranquility-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=OmerFarukGungor.tranquillity-code" + formats: null colors: bg: "#1F2125" fg: "#ABB2BF" diff --git a/themes/trans-pride-light-naomi.yaml b/themes/trans-pride-light-naomi.yaml deleted file mode 100644 index a7b4c223..00000000 --- a/themes/trans-pride-light-naomi.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Trans Pride Light (Naomi)" -source: - marketplace_id: "nhcarrigan.naomis-themes" - version: "2.3.0" - installs: 68 - rating: 0 - ratings: 0 - author: "NHCarrigan" - repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" -colors: - bg: "#E6F6FF" - fg: "#DB7093" - black: "#E6F6FF" - red: "#FF4F7A" - green: "#C75B7C" - yellow: "#FF96B5" - blue: "#DB7093" - magenta: "#C96385" - cyan: "#FF85A2" - white: "#2A0A18" - brightBlack: "#E6F6FF" - brightRed: "#FF2F66" - brightGreen: "#D87093" - brightYellow: "#FFB6C1" - brightBlue: "#E35A8F" - brightMagenta: "#D45A88" - brightCyan: "#FF9AAC" - brightWhite: "#000000" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 50.8 - black: 0 - red: 50.6 - green: 60.1 - yellow: 32.6 - blue: 50.8 - magenta: 57.7 - cyan: 38 - white: 97.7 - brightBlack: 0 - brightRed: 54.7 - brightGreen: 51.3 - brightYellow: 21.8 - brightBlue: 54.1 - brightMagenta: 57.4 - brightCyan: 31.7 - brightWhite: 99.1 diff --git a/themes/transylvania.yaml b/themes/transylvania.yaml index 8a7efbac..b9438820 100644 --- a/themes/transylvania.yaml +++ b/themes/transylvania.yaml @@ -8,6 +8,8 @@ source: author: "matheusps" repo: "https://github.com/matheusps/transylvania" url: "https://marketplace.visualstudio.com/items?itemName=matheusps.transylvania" + formats: + iterm2: "https://raw.githubusercontent.com/matheusps/transylvania/master/matches/iterm/Transylvania.itermcolors" colors: bg: "#22212C" fg: "#F5F5F0" diff --git a/themes/tree-hugger.yaml b/themes/tree-hugger.yaml deleted file mode 100644 index 1fc8b38d..00000000 --- a/themes/tree-hugger.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tree-Hugger" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#1C2B1F" - fg: "#EFEAE4" - black: "#1C2B1F" - red: "#C52C2A" - green: "#29C3A0" - yellow: "#D29922" - blue: "#4DAE50" - magenta: "#4DAE50" - cyan: "#29C3A0" - white: "#EFEAE4" - brightBlack: "#1C2B1F" - brightRed: "#C52C2A" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#4DAE50" - brightMagenta: "#4DAE50" - brightCyan: "#29C3A0" - brightWhite: "#EFEAE4" -meta: - mode: "dark" - accent: "orange" - hue: 150 - pair: null - contrast: - fg: 91.2 - black: 0 - red: 22.1 - green: 55.3 - yellow: 49.3 - blue: 44.8 - magenta: 44.8 - cyan: 55.3 - white: 91.2 - brightBlack: 0 - brightRed: 22.1 - brightGreen: 55.3 - brightYellow: 49.3 - brightBlue: 44.8 - brightMagenta: 44.8 - brightCyan: 55.3 - brightWhite: 91.2 diff --git a/themes/triad-dragon.yaml b/themes/triad-dragon.yaml index 8986bdb0..dae48c90 100644 --- a/themes/triad-dragon.yaml +++ b/themes/triad-dragon.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#1A0A0A" fg: "#F5F5DC" diff --git a/themes/tribal-contrast.yaml b/themes/tribal-contrast.yaml deleted file mode 100644 index 7844eb74..00000000 --- a/themes/tribal-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tribal-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#19191D" - fg: "#FFFFFF" - black: "#25252B" - red: "#BA0E2E" - green: "#C43535" - yellow: "#5F5582" - blue: "#E0DDEB" - magenta: "#5F5582" - cyan: "#8F8AA2" - white: "#FFFFFF" - brightBlack: "#484854" - brightRed: "#F03E5F" - brightGreen: "#DD8282" - brightYellow: "#938AB3" - brightBlue: "#FFFFFF" - brightMagenta: "#938AB3" - brightCyan: "#C5C3CF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 106.6 - black: 0 - red: 20.2 - green: 25 - yellow: 17.4 - blue: 85.8 - magenta: 17.4 - cyan: 39.8 - white: 106.6 - brightBlack: 10.3 - brightRed: 36.5 - brightGreen: 47.5 - brightYellow: 41.1 - brightBlue: 106.6 - brightMagenta: 41.1 - brightCyan: 69.9 - brightWhite: 106.6 diff --git a/themes/tribal-light.yaml b/themes/tribal-light.yaml deleted file mode 100644 index d9f3340d..00000000 --- a/themes/tribal-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tribal-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#C43535" - yellow: "#5F5582" - blue: "#A09CAF" - magenta: "#5F5582" - cyan: "#8F8AA2" - white: "#515151" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#DD8282" - brightYellow: "#938AB3" - brightBlue: "#D6D4DD" - brightMagenta: "#938AB3" - brightCyan: "#C5C3CF" - brightWhite: "#777777" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 80.3 - green: 75.5 - yellow: 83.3 - blue: 51.9 - magenta: 83.3 - cyan: 60.6 - white: 87.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 53.1 - brightYellow: 59.4 - brightBlue: 22.1 - brightMagenta: 59.4 - brightCyan: 31.6 - brightWhite: 71.1 diff --git a/themes/tribal.yaml b/themes/tribal.yaml deleted file mode 100644 index d7163f4c..00000000 --- a/themes/tribal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tribal" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#393942" - fg: "#FFFFFF" - black: "#454550" - red: "#BA0E2E" - green: "#C43535" - yellow: "#5F5582" - blue: "#E0DDEB" - magenta: "#5F5582" - cyan: "#8F8AA2" - white: "#FFFFFF" - brightBlack: "#686879" - brightRed: "#F03E5F" - brightGreen: "#DD8282" - brightYellow: "#938AB3" - brightBlue: "#FFFFFF" - brightMagenta: "#938AB3" - brightCyan: "#C5C3CF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 286 - pair: null - contrast: - fg: 100.1 - black: 0 - red: 13.7 - green: 18.4 - yellow: 10.9 - blue: 79.3 - magenta: 10.9 - cyan: 33.3 - white: 100.1 - brightBlack: 16.7 - brightRed: 30 - brightGreen: 40.9 - brightYellow: 34.5 - brightBlue: 100.1 - brightMagenta: 34.5 - brightCyan: 63.3 - brightWhite: 100.1 diff --git a/themes/tristan.yaml b/themes/tristan.yaml index 9e908ef2..cea02ca8 100644 --- a/themes/tristan.yaml +++ b/themes/tristan.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "TristanTheme.tristan" version: "1.0.0" installs: 224 + rating: 0 + ratings: 0 author: "Tristan Theme" repo: "https://github.com/tristanHdez18/Tristan-Theme" url: "https://marketplace.visualstudio.com/items?itemName=TristanTheme.tristan" + formats: null colors: bg: "#1C1C1D" fg: "#3A86FF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "red" hue: null + pair: null contrast: fg: 38.2 black: 0 diff --git a/themes/triumph-v2.yaml b/themes/triumph-v2.yaml index e331285c..9c78998c 100644 --- a/themes/triumph-v2.yaml +++ b/themes/triumph-v2.yaml @@ -8,6 +8,7 @@ source: author: "Bushenzie" repo: "https://i.postimg.cc/dtWztrg2/logo.png" url: "https://marketplace.visualstudio.com/items?itemName=bushenzie.triumph" + formats: null colors: bg: "#16181E" fg: "#F8F5F2" diff --git a/themes/triumph.yaml b/themes/triumph.yaml index f257023d..fda86885 100644 --- a/themes/triumph.yaml +++ b/themes/triumph.yaml @@ -8,6 +8,7 @@ source: author: "Bushenzie" repo: "https://i.postimg.cc/dtWztrg2/logo.png" url: "https://marketplace.visualstudio.com/items?itemName=bushenzie.triumph" + formats: null colors: bg: "#181825" fg: "#F8F5F2" diff --git a/themes/tron-ares.yaml b/themes/tron-ares.yaml index afafedfa..7e43d825 100644 --- a/themes/tron-ares.yaml +++ b/themes/tron-ares.yaml @@ -8,6 +8,7 @@ source: author: "Etienne Schalk" repo: "https://github.com/etienneschalk/tron-ares-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=eschalk0.tron-ares" + formats: null colors: bg: "#0D0000" fg: "#D4D4D4" diff --git a/themes/tron-contrast.yaml b/themes/tron-contrast.yaml deleted file mode 100644 index 407d8267..00000000 --- a/themes/tron-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tron-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#07090B" - fg: "#AEC2E0" - black: "#11161B" - red: "#BA0E2E" - green: "#267FB5" - yellow: "#FFFFFF" - blue: "#FFFFFF" - magenta: "#748AA6" - cyan: "#267FB5" - white: "#C0D0E7" - brightBlack: "#2F3C49" - brightRed: "#F03E5F" - brightGreen: "#63B0DE" - brightYellow: "#FFFFFF" - brightBlue: "#FFFFFF" - brightMagenta: "#B2BECE" - brightCyan: "#63B0DE" - brightWhite: "#F8FAFC" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 68.8 - black: 0 - red: 21.4 - green: 31.5 - yellow: 107.8 - blue: 107.8 - magenta: 38.6 - cyan: 31.5 - white: 77.1 - brightBlack: 0 - brightRed: 37.7 - brightGreen: 55.1 - brightYellow: 107.8 - brightBlue: 107.8 - brightMagenta: 66.7 - brightCyan: 55.1 - brightWhite: 104.3 diff --git a/themes/tron-light.yaml b/themes/tron-light.yaml deleted file mode 100644 index 7e8a4218..00000000 --- a/themes/tron-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tron-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#D7E5ED" - fg: "#222222" - black: "#E9F0F5" - red: "#BA0E2E" - green: "#267FB5" - yellow: "#89BDDD" - blue: "#FFFFFF" - magenta: "#748AA6" - cyan: "#267FB5" - white: "#2F2F2F" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#63B0DE" - brightYellow: "#D8E9F4" - brightBlue: "#FFFFFF" - brightMagenta: "#B2BECE" - brightCyan: "#63B0DE" - brightWhite: "#555555" -meta: - mode: "light" - accent: "orange" - hue: 233 - pair: null - contrast: - fg: 86.2 - black: 0 - red: 63.7 - green: 53.4 - yellow: 22.5 - blue: 16.4 - magenta: 46.3 - cyan: 53.4 - white: 83.2 - brightBlack: 16.4 - brightRed: 47.2 - brightGreen: 30.2 - brightYellow: 0 - brightBlue: 16.4 - brightMagenta: 19.1 - brightCyan: 30.2 - brightWhite: 69.3 diff --git a/themes/tron.yaml b/themes/tron.yaml deleted file mode 100644 index 905d64fe..00000000 --- a/themes/tron.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tron" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#14191F" - fg: "#AEC2E0" - black: "#1E262E" - red: "#BA0E2E" - green: "#267FB5" - yellow: "#FFFFFF" - blue: "#FFFFFF" - magenta: "#748AA6" - cyan: "#267FB5" - white: "#C0D0E7" - brightBlack: "#3C4B5D" - brightRed: "#F03E5F" - brightGreen: "#63B0DE" - brightYellow: "#FFFFFF" - brightBlue: "#FFFFFF" - brightMagenta: "#B2BECE" - brightCyan: "#63B0DE" - brightWhite: "#F8FAFC" -meta: - mode: "dark" - accent: "orange" - hue: 253 - pair: null - contrast: - fg: 67.7 - black: 0 - red: 20.3 - green: 30.4 - yellow: 106.7 - blue: 106.7 - magenta: 37.5 - cyan: 30.4 - white: 76 - brightBlack: 10.7 - brightRed: 36.6 - brightGreen: 54 - brightYellow: 106.7 - brightBlue: 106.7 - brightMagenta: 65.6 - brightCyan: 54 - brightWhite: 103.2 diff --git a/themes/trsm-night-eyes.yaml b/themes/trsm-night-eyes.yaml index f815787c..c2580f19 100644 --- a/themes/trsm-night-eyes.yaml +++ b/themes/trsm-night-eyes.yaml @@ -8,6 +8,7 @@ source: author: "Tiago Machado" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Trsm.trsm-night-eyes" + formats: null colors: bg: "#1B2124" fg: "#DBC79B" diff --git a/themes/trueamber.yaml b/themes/trueamber.yaml index c1ab447d..b75a360b 100644 --- a/themes/trueamber.yaml +++ b/themes/trueamber.yaml @@ -2,12 +2,13 @@ name: "trueAmber" source: marketplace_id: "headintheclout.trueamber" version: "1.0.9" - installs: 2798 + installs: 2799 rating: 5 ratings: 4 author: "headintheclout" repo: "https://github.com/headintheclout/trueAmber" url: "https://marketplace.visualstudio.com/items?itemName=headintheclout.trueamber" + formats: null colors: bg: "#220C00" fg: "#FFAC00" diff --git a/themes/tsoding-daily-2024.yaml b/themes/tsoding-daily-2024.yaml index d698fa29..2c359a93 100644 --- a/themes/tsoding-daily-2024.yaml +++ b/themes/tsoding-daily-2024.yaml @@ -8,6 +8,7 @@ source: author: "Yassin Software" repo: "https://github.com/Yassine914/Tsoding-Theme-2024" url: "https://marketplace.visualstudio.com/items?itemName=y-software.tsoding-theme-2024" + formats: null colors: bg: "#181818" fg: "#E4E4E4" diff --git a/themes/tsuki.yaml b/themes/tsuki.yaml index 65d2e306..7ad9dc24 100644 --- a/themes/tsuki.yaml +++ b/themes/tsuki.yaml @@ -8,6 +8,7 @@ source: author: "Aniketto" repo: "https://github.com/re1san/Tsuki" url: "https://marketplace.visualstudio.com/items?itemName=re1san.tsuki" + formats: null colors: bg: "#151515" fg: "#DFDDDD" diff --git a/themes/tsukiroku-dark.yaml b/themes/tsukiroku-dark.yaml deleted file mode 100644 index f68d3cd8..00000000 --- a/themes/tsukiroku-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tsukiroku dark" -source: - marketplace_id: "tsukiroku.tsukiroku" - version: "2.0.2" - installs: 72 - rating: 5 - ratings: 1 - author: "tsukiroku" - repo: "https://github.com/tsukiroku/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=tsukiroku.tsukiroku" -colors: - bg: "#0F0F0F" - fg: "#A2AABC" - black: "#252525" - red: "#EF6B73" - green: "#BAE67E" - yellow: "#DADADA" - blue: "#BAC7FB" - magenta: "#C3A6FF" - cyan: "#BAC7FB" - white: "#A2AABC" - brightBlack: "#353535" - brightRed: "#F7757D" - brightGreen: "#D1FF54" - brightYellow: "#ECFFA8" - brightBlue: "#94AAFF" - brightMagenta: "#F889F3" - brightCyan: "#91E9FF" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 55.7 - black: 0 - red: 45.5 - green: 82.5 - yellow: 83.8 - blue: 73.4 - magenta: 61.9 - cyan: 73.4 - white: 55.7 - brightBlack: 0 - brightRed: 49.8 - brightGreen: 96.7 - brightYellow: 101.6 - brightBlue: 58.1 - brightMagenta: 60.5 - brightCyan: 85.1 - brightWhite: 91.3 diff --git a/themes/tsukuyomi-light.yaml b/themes/tsukuyomi-light.yaml deleted file mode 100644 index 3e6e711f..00000000 --- a/themes/tsukuyomi-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tsukuyomi (Light)" -source: - marketplace_id: "developerayo.Tsukuyomi" - version: "1.2.7" - installs: 12461 - rating: 5 - ratings: 2 - author: "Shodipo Ayomide" - repo: "https://github.com/Developerayo/tsukuyomi-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=developerayo.Tsukuyomi" -colors: - bg: "#F5F5F0" - fg: "#383A42" - black: "#383A42" - red: "#E45649" - green: "#4E8F35" - yellow: "#986801" - blue: "#0B76D4" - magenta: "#8954A8" - cyan: "#0184BC" - white: "#383A42" - brightBlack: "#9D9D9D" - brightRed: "#E45649" - brightGreen: "#4E8F35" - brightYellow: "#986801" - brightBlue: "#0B76D4" - brightMagenta: "#8954A8" - brightCyan: "#0184BC" - brightWhite: "#383A42" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 90 - black: 90 - red: 57.2 - green: 60.6 - yellow: 67.3 - blue: 65.2 - magenta: 70.4 - cyan: 62 - white: 90 - brightBlack: 46.4 - brightRed: 57.2 - brightGreen: 60.6 - brightYellow: 67.3 - brightBlue: 65.2 - brightMagenta: 70.4 - brightCyan: 62 - brightWhite: 90 diff --git a/themes/tsukuyomi.yaml b/themes/tsukuyomi.yaml deleted file mode 100644 index 34c412b7..00000000 --- a/themes/tsukuyomi.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tsukuyomi" -source: - marketplace_id: "developerayo.Tsukuyomi" - version: "1.2.7" - installs: 12461 - rating: 5 - ratings: 2 - author: "Shodipo Ayomide" - repo: "https://github.com/Developerayo/tsukuyomi-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=developerayo.Tsukuyomi" -colors: - bg: "#1A1E23" - fg: "#D4D9E4" - black: "#1A1F1A" - red: "#F07178" - green: "#BBD99E" - yellow: "#E5C07B" - blue: "#89DDFF" - magenta: "#BB80FF" - cyan: "#89DDFF" - white: "#D4D7D6" - brightBlack: "#5D6963" - brightRed: "#F07178" - brightGreen: "#BBD99E" - brightYellow: "#FFCC66" - brightBlue: "#7DCFFF" - brightMagenta: "#BB80FF" - brightCyan: "#7DCFFF" - brightWhite: "#D4D7D6" -meta: - mode: "dark" - accent: "magenta" - hue: 254 - pair: null - contrast: - fg: 81.6 - black: 0 - red: 45.8 - green: 76 - yellow: 69.8 - blue: 77.5 - magenta: 47.2 - cyan: 77.5 - white: 80.1 - brightBlack: 21.3 - brightRed: 45.8 - brightGreen: 76 - brightYellow: 78.5 - brightBlue: 70.3 - brightMagenta: 47.2 - brightCyan: 70.3 - brightWhite: 80.1 diff --git a/themes/tsumiki-theme.yaml b/themes/tsumiki-theme.yaml deleted file mode 100644 index 2cf5271d..00000000 --- a/themes/tsumiki-theme.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Tsumiki Theme" -source: - marketplace_id: "ArivanHouten.tsumiki" - version: "0.0.1" - installs: 134 - author: "Ari van Houten" - repo: "https://github.com/Ari24-cb24/tsumiki-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ArivanHouten.tsumiki" -colors: - bg: "#000000" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#B6B60B" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#C9C9C9" - brightBlack: "#929292" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#ECEC39" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#DEDEDE" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.5 - black: 0 - red: 27.7 - green: 54 - yellow: 59.8 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 73.9 - brightBlack: 43.6 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 91 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 86.6 diff --git a/themes/tudoroxo.yaml b/themes/tudoroxo.yaml index f5d0c2b8..bda8db0d 100644 --- a/themes/tudoroxo.yaml +++ b/themes/tudoroxo.yaml @@ -1,4 +1,4 @@ -name: "Tudoroxo" +name: "tudoroxo" source: marketplace_id: "viniceosm.tudoroxo" version: "0.3.0" @@ -8,6 +8,7 @@ source: author: "Vinicius Miiller" repo: "https://github.com/viniceosm/tudoroxo" url: "https://marketplace.visualstudio.com/items?itemName=viniceosm.tudoroxo" + formats: null colors: bg: "#302A49" fg: "#B2CCD6" diff --git a/themes/tulin-design.yaml b/themes/tulin-design.yaml index 55ade4c3..276d65e4 100644 --- a/themes/tulin-design.yaml +++ b/themes/tulin-design.yaml @@ -1,4 +1,4 @@ -name: "tulin.design" +name: "Tulin Design" source: marketplace_id: "tulindesign.tulindesign" version: "3.3.0" @@ -8,6 +8,7 @@ source: author: "tulindesign" repo: "https://github.com/tulindesign/vscode_theme" url: "https://marketplace.visualstudio.com/items?itemName=tulindesign.tulindesign" + formats: null colors: bg: "#1D2025" fg: "#D3D9E3" diff --git a/themes/tundra-dusk.yaml b/themes/tundra-dusk.yaml deleted file mode 100644 index 1251d2de..00000000 --- a/themes/tundra-dusk.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Tundra Dusk" -source: - marketplace_id: "AndrewStone.joegrammer-theme" - version: "0.2.3" - installs: 44 - rating: 0 - ratings: 0 - author: "Andrew Stone" - repo: "https://github.com/exastone/joegrammer-theme" - url: "https://marketplace.visualstudio.com/items?itemName=AndrewStone.joegrammer-theme" -colors: - bg: "#0C1426" - fg: "#D8DEE9" - black: "#000000" - red: "#FDB0BA" - green: "#25BA58" - yellow: "#F4CC67" - blue: "#68A9FF" - magenta: "#FE97E1" - cyan: "#0D9480" - white: "#D4CCB9" - brightBlack: "#A1A1A1" - brightRed: "#FD788B" - brightGreen: "#B3EBAB" - brightYellow: "#FFCA14" - brightBlue: "#8CDAFF" - brightMagenta: "#F970CD" - brightCyan: "#A5FFFA" - brightWhite: "#D8DEE9" -meta: - mode: "dark" - accent: "pink" - hue: 265 - pair: null - contrast: - fg: 85.6 - black: 0 - red: 70.5 - green: 51.8 - yellow: 77.7 - blue: 53.9 - magenta: 64.2 - cyan: 36.1 - white: 75.1 - brightBlack: 50.6 - brightRed: 51.8 - brightGreen: 85 - brightYellow: 78 - brightBlue: 77.3 - brightMagenta: 51.8 - brightCyan: 96.8 - brightWhite: 85.6 diff --git a/themes/turbo-c-3-0-borland-style.yaml b/themes/turbo-c-3-0-borland-style.yaml deleted file mode 100644 index 82086ecb..00000000 --- a/themes/turbo-c-3-0-borland-style.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Turbo C 3.0 Borland Style" -source: - marketplace_id: "WatkinsLabs.turboc-3-0-theme" - version: "0.0.1" - installs: 1308 - rating: 5 - ratings: 1 - author: "Watkins Labs" - repo: "https://github.com/chris17453/vscode-turboc3.0-theme" - url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.turboc-3-0-theme" -colors: - bg: "#000058" - fg: "#00FF00" - black: "#000000" - red: "#800000" - green: "#008000" - yellow: "#808000" - blue: "#0000FF" - magenta: "#800080" - cyan: "#008080" - white: "#C0C0C0" - brightBlack: "#808080" - brightRed: "#FF0000" - brightGreen: "#00FF00" - brightYellow: "#FFFF00" - brightBlue: "#0000FF" - brightMagenta: "#FF00FF" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 84.7 - black: 0 - red: 7.8 - green: 25.3 - yellow: 31.1 - blue: 14.5 - magenta: 10.9 - cyan: 27.4 - white: 66.9 - brightBlack: 33 - brightRed: 35.8 - brightGreen: 84.7 - brightYellow: 100.9 - brightBlue: 14.5 - brightMagenta: 44.5 - brightCyan: 90.4 - brightWhite: 106.1 diff --git a/themes/turbo.yaml b/themes/turbo.yaml index 7f1e7745..6147fc7f 100644 --- a/themes/turbo.yaml +++ b/themes/turbo.yaml @@ -2,12 +2,13 @@ name: "Turbo" source: marketplace_id: "kliucn.turbo" version: "0.2.0" - installs: 3476 + installs: 3477 rating: 5 ratings: 1 author: "Kai Liu" repo: "https://github.com/nebulabox/vscode_turbo_theme" url: "https://marketplace.visualstudio.com/items?itemName=kliucn.turbo" + formats: null colors: bg: "#000058" fg: "#FFFF55" diff --git a/themes/turnip-contrast.yaml b/themes/turnip-contrast.yaml deleted file mode 100644 index 0898c100..00000000 --- a/themes/turnip-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "turnip-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#080809" - fg: "#EDE0CE" - black: "#141416" - red: "#BA0E2E" - green: "#92B55F" - yellow: "#487D76" - blue: "#E8DA5E" - magenta: "#92B55F" - cyan: "#487D76" - white: "#F4ECE1" - brightBlack: "#38383F" - brightRed: "#F03E5F" - brightGreen: "#C1D5A5" - brightYellow: "#79B2AA" - brightBlue: "#F5EFB7" - brightMagenta: "#C1D5A5" - brightCyan: "#79B2AA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 88.8 - black: 0 - red: 21.4 - green: 56 - yellow: 29.1 - blue: 82.5 - magenta: 56 - cyan: 29.1 - white: 96 - brightBlack: 0 - brightRed: 37.7 - brightGreen: 76.7 - brightYellow: 54.8 - brightBlue: 96 - brightMagenta: 76.7 - brightCyan: 54.8 - brightWhite: 107.8 diff --git a/themes/turnip-light.yaml b/themes/turnip-light.yaml deleted file mode 100644 index a8a16af8..00000000 --- a/themes/turnip-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "turnip-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#92B55F" - yellow: "#487D76" - blue: "#E8DA5E" - magenta: "#92B55F" - cyan: "#487D76" - white: "#515151" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#C1D5A5" - brightYellow: "#79B2AA" - brightBlue: "#F5EFB7" - brightMagenta: "#C1D5A5" - brightCyan: "#79B2AA" - brightWhite: "#777777" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 80.3 - green: 46 - yellow: 72.5 - blue: 20.8 - magenta: 46 - cyan: 72.5 - white: 87.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 26.2 - brightYellow: 47.2 - brightBlue: 8.2 - brightMagenta: 26.2 - brightCyan: 47.2 - brightWhite: 71.1 diff --git a/themes/turnip.yaml b/themes/turnip.yaml deleted file mode 100644 index dcf2d59f..00000000 --- a/themes/turnip.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "turnip" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#1A1B1D" - fg: "#EDE0CE" - black: "#26282A" - red: "#BA0E2E" - green: "#92B55F" - yellow: "#487D76" - blue: "#E8DA5E" - magenta: "#92B55F" - cyan: "#487D76" - white: "#F4ECE1" - brightBlack: "#4A4D53" - brightRed: "#F03E5F" - brightGreen: "#C1D5A5" - brightYellow: "#79B2AA" - brightBlue: "#F5EFB7" - brightMagenta: "#C1D5A5" - brightCyan: "#79B2AA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 87.5 - black: 0 - red: 20.1 - green: 54.7 - yellow: 27.7 - blue: 81.1 - magenta: 54.7 - cyan: 27.7 - white: 94.7 - brightBlack: 11.6 - brightRed: 36.3 - brightGreen: 75.4 - brightYellow: 53.4 - brightBlue: 94.6 - brightMagenta: 75.4 - brightCyan: 53.4 - brightWhite: 106.4 diff --git a/themes/turnstyle-darker.yaml b/themes/turnstyle-darker.yaml deleted file mode 100644 index 81e5d288..00000000 --- a/themes/turnstyle-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Turnstyle Darker" -source: - marketplace_id: "oxechicao.turnstyle" - version: "2.2.0" - installs: 34 - rating: 0 - ratings: 0 - author: "Francisco Thiago" - repo: "https://github.com/oxechicao/turnstyle" - url: "https://marketplace.visualstudio.com/items?itemName=oxechicao.turnstyle" -colors: - bg: "#0F1524" - fg: "#E0F0F0" - black: "#182B3E" - red: "#A3CBD2" - green: "#75A6EB" - yellow: "#DA81AA" - blue: "#DFDF90" - magenta: "#4FA190" - cyan: "#D7A275" - white: "#E0F0F0" - brightBlack: "#A3CBD2" - brightRed: "#A3CBD2" - brightGreen: "#75A6EB" - brightYellow: "#DA81AA" - brightBlue: "#DFDF90" - brightMagenta: "#4FA190" - brightCyan: "#D7A275" - brightWhite: "#E0F0F0" -meta: - mode: "dark" - accent: "red" - hue: 267 - pair: null - contrast: - fg: 95.1 - black: 0 - red: 70.1 - green: 52.2 - yellow: 48.4 - blue: 83.6 - magenta: 43.4 - cyan: 56.9 - white: 95.1 - brightBlack: 70.1 - brightRed: 70.1 - brightGreen: 52.2 - brightYellow: 48.4 - brightBlue: 83.6 - brightMagenta: 43.4 - brightCyan: 56.9 - brightWhite: 95.1 diff --git a/themes/turnstyle.yaml b/themes/turnstyle.yaml deleted file mode 100644 index db395eb6..00000000 --- a/themes/turnstyle.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Turnstyle" -source: - marketplace_id: "oxechicao.turnstyle" - version: "2.2.0" - installs: 34 - rating: 0 - ratings: 0 - author: "Francisco Thiago" - repo: "https://github.com/oxechicao/turnstyle" - url: "https://marketplace.visualstudio.com/items?itemName=oxechicao.turnstyle" -colors: - bg: "#1D263A" - fg: "#E0F0F0" - black: "#2C4259" - red: "#A3CBD2" - green: "#75A6EB" - yellow: "#DA81AA" - blue: "#DFDF90" - magenta: "#4FA190" - cyan: "#D7A275" - white: "#E0F0F0" - brightBlack: "#A3CBD2" - brightRed: "#A3CBD2" - brightGreen: "#75A6EB" - brightYellow: "#DA81AA" - brightBlue: "#DFDF90" - brightMagenta: "#4FA190" - brightCyan: "#D7A275" - brightWhite: "#E0F0F0" -meta: - mode: "dark" - accent: "red" - hue: 265 - pair: null - contrast: - fg: 92.8 - black: 0 - red: 67.8 - green: 49.9 - yellow: 46.2 - blue: 81.4 - magenta: 41.1 - cyan: 54.6 - white: 92.8 - brightBlack: 67.8 - brightRed: 67.8 - brightGreen: 49.9 - brightYellow: 46.2 - brightBlue: 81.4 - brightMagenta: 41.1 - brightCyan: 54.6 - brightWhite: 92.8 diff --git a/themes/turquesa-bege.yaml b/themes/turquesa-bege.yaml deleted file mode 100644 index 7f67c076..00000000 --- a/themes/turquesa-bege.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Turquesa/bege" -source: - marketplace_id: "srtakennedy.turquesa" - version: "0.0.4" - installs: 224 - author: "srtakennedy" - repo: "https://github.com/SrtaKennedy" - url: "https://marketplace.visualstudio.com/items?itemName=srtakennedy.turquesa" -colors: - bg: "#282828" - fg: "#FFD700" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.8 - black: 0 - red: 24.3 - green: 50.6 - yellow: 83.2 - blue: 25 - magenta: 27.3 - cyan: 45.1 - white: 87.6 - brightBlack: 19.6 - brightRed: 36.1 - brightGreen: 61.1 - brightYellow: 93.2 - brightBlue: 37.6 - brightMagenta: 42.9 - brightCyan: 53 - brightWhite: 87.6 diff --git a/themes/tutilabs-theme.yaml b/themes/tutilabs-theme.yaml deleted file mode 100644 index e006fe97..00000000 --- a/themes/tutilabs-theme.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Tutilabs Theme" -source: - marketplace_id: "tutilabs.tutilabs" - version: "0.0.1" - installs: 34 - author: "tutilabs" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=tutilabs.tutilabs" -colors: - bg: "#151626" - fg: "#BEC2EA" - black: "#665757" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#D1AFAF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#BAADAD" -meta: - mode: "dark" - accent: "pink" - hue: 281 - pair: null - contrast: - fg: 70.1 - black: 17.2 - red: 26.7 - green: 52.9 - yellow: 85.6 - blue: 27.4 - magenta: 29.7 - cyan: 47.5 - white: 62.4 - brightBlack: 22 - brightRed: 38.5 - brightGreen: 63.5 - brightYellow: 95.6 - brightBlue: 39.9 - brightMagenta: 45.3 - brightCyan: 55.3 - brightWhite: 58.4 diff --git a/themes/tw40-gigi.yaml b/themes/tw40-gigi.yaml deleted file mode 100644 index 4f8b0d91..00000000 --- a/themes/tw40-gigi.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "TW40 - Gigi" -source: - marketplace_id: "chrsolr.rose-pine-nvchad-theme" - version: "0.0.3" - installs: 6739 - rating: 0 - ratings: 0 - author: "Christian Soler" - repo: "https://github.com/chrsolr/rose-pine-nvchad-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=chrsolr.rose-pine-nvchad-theme" -colors: - bg: "#191825" - fg: "#777777" - black: "#333333" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#EEEEEE" - brightBlack: "#555555" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 288 - pair: null - contrast: - fg: 29.3 - black: 0 - red: 26.4 - green: 52.7 - yellow: 85.3 - blue: 27.2 - magenta: 29.5 - cyan: 47.3 - white: 95.5 - brightBlack: 14.8 - brightRed: 38.3 - brightGreen: 63.3 - brightYellow: 95.4 - brightBlue: 39.7 - brightMagenta: 45.1 - brightCyan: 55.1 - brightWhite: 106.6 diff --git a/themes/tweed-contrast.yaml b/themes/tweed-contrast.yaml deleted file mode 100644 index 6d2e57b9..00000000 --- a/themes/tweed-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tweed-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#1E2026" - fg: "#FFFFFF" - black: "#292C34" - red: "#BA0E2E" - green: "#777F93" - yellow: "#5E9989" - blue: "#CAB696" - magenta: "#E2975F" - cyan: "#E75B4B" - white: "#FFFFFF" - brightBlack: "#4B505F" - brightRed: "#F03E5F" - brightGreen: "#B0B4C0" - brightYellow: "#9BC2B7" - brightBlue: "#ECE5DA" - brightMagenta: "#F2CFB5" - brightCyan: "#F3ADA5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 271 - pair: null - contrast: - fg: 105.7 - black: 0 - red: 19.4 - green: 32.1 - yellow: 39.5 - blue: 62.2 - magenta: 53.2 - cyan: 37.8 - white: 105.7 - brightBlack: 12.1 - brightRed: 35.7 - brightGreen: 59.7 - brightYellow: 62.9 - brightBlue: 89.4 - brightMagenta: 79.3 - brightCyan: 65.6 - brightWhite: 105.7 diff --git a/themes/tweed-light.yaml b/themes/tweed-light.yaml deleted file mode 100644 index ee10741a..00000000 --- a/themes/tweed-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tweed-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#585E6D" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#585E6D" - yellow: "#5E9989" - blue: "#CAB696" - magenta: "#E2975F" - cyan: "#E75B4B" - white: "#636A7B" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#8A91A1" - brightYellow: "#9BC2B7" - brightBlue: "#ECE5DA" - brightMagenta: "#F2CFB5" - brightCyan: "#F3ADA5" - brightWhite: "#8A91A1" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 82.2 - black: 0 - red: 80.3 - green: 82.2 - yellow: 60.1 - blue: 38.1 - magenta: 46.7 - cyan: 61.7 - white: 77 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 58.7 - brightYellow: 37.4 - brightBlue: 12.5 - brightMagenta: 21.9 - brightCyan: 34.8 - brightWhite: 58.7 diff --git a/themes/tweed.yaml b/themes/tweed.yaml deleted file mode 100644 index fb1bb34d..00000000 --- a/themes/tweed.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tweed" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#3B3F4C" - fg: "#FFFFFF" - black: "#464B5A" - red: "#BA0E2E" - green: "#777F93" - yellow: "#5E9989" - blue: "#CAB696" - magenta: "#E2975F" - cyan: "#E75B4B" - white: "#FFFFFF" - brightBlack: "#686F85" - brightRed: "#F03E5F" - brightGreen: "#B0B4C0" - brightYellow: "#9BC2B7" - brightBlue: "#ECE5DA" - brightMagenta: "#F2CFB5" - brightCyan: "#F3ADA5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 272 - pair: null - contrast: - fg: 98.3 - black: 0 - red: 12 - green: 24.7 - yellow: 32.1 - blue: 54.8 - magenta: 45.8 - cyan: 30.4 - white: 98.3 - brightBlack: 17.6 - brightRed: 28.3 - brightGreen: 52.3 - brightYellow: 55.5 - brightBlue: 82 - brightMagenta: 71.9 - brightCyan: 58.2 - brightWhite: 98.3 diff --git a/themes/twentyfour.yaml b/themes/twentyfour.yaml index 5fc02132..f1388301 100644 --- a/themes/twentyfour.yaml +++ b/themes/twentyfour.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "YesCode.twentyFour" version: "0.0.2" installs: 89 + rating: 0 + ratings: 0 author: "YesCode" repo: "https://github.com/yesomac/twentyFour" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.twentyFour" + formats: null colors: bg: "#0A0D11" fg: "#DDDDDD" diff --git a/themes/twilight-bloom.yaml b/themes/twilight-bloom.yaml deleted file mode 100644 index 27d46811..00000000 --- a/themes/twilight-bloom.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Twilight-Bloom" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#1A1D22" - fg: "#E4E4E4" - black: "#1A1D22" - red: "#F14444" - green: "#29C3A0" - yellow: "#D29922" - blue: "#6D5DE7" - magenta: "#6D5DE7" - cyan: "#29C3A0" - white: "#E4E4E4" - brightBlack: "#1A1D22" - brightRed: "#F14444" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#6D5DE7" - brightMagenta: "#6D5DE7" - brightCyan: "#29C3A0" - brightWhite: "#E4E4E4" -meta: - mode: "dark" - accent: "orange" - hue: 261 - pair: null - contrast: - fg: 88.7 - black: 0 - red: 36.6 - green: 57 - yellow: 51 - blue: 27.1 - magenta: 27.1 - cyan: 57 - white: 88.7 - brightBlack: 0 - brightRed: 36.6 - brightGreen: 57 - brightYellow: 51 - brightBlue: 27.1 - brightMagenta: 27.1 - brightCyan: 57 - brightWhite: 88.7 diff --git a/themes/twilight-cosmos.yaml b/themes/twilight-cosmos.yaml index 70f18fd7..cdb60442 100644 --- a/themes/twilight-cosmos.yaml +++ b/themes/twilight-cosmos.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "zellwk.twilight-cosmos-theme" version: "1.0.13" installs: 106 + rating: 0 + ratings: 0 author: "Zell Liew" repo: "https://github.com/zellwk/twilight-cosmos" url: "https://marketplace.visualstudio.com/items?itemName=zellwk.twilight-cosmos-theme" + formats: null colors: bg: "#222027" fg: "#E5E7F2" diff --git a/themes/twilight-pro.yaml b/themes/twilight-pro.yaml index 50b4a92c..a3480270 100644 --- a/themes/twilight-pro.yaml +++ b/themes/twilight-pro.yaml @@ -8,6 +8,7 @@ source: author: "_ipal" repo: "https://github.com/Iipal/Twilight-Pro" url: "https://marketplace.visualstudio.com/items?itemName=malkoleyplay.twilight-pro" + formats: null colors: bg: "#141414" fg: "#F8F8F8" diff --git a/themes/twilight-sage.yaml b/themes/twilight-sage.yaml index ed4728f9..a8f7886f 100644 --- a/themes/twilight-sage.yaml +++ b/themes/twilight-sage.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "JamesGulland.twilight-sage-dark-theme" version: "2.5.0" installs: 136 + rating: 0 + ratings: 0 author: "James Gulland" repo: "https://github.com/james-gulland/twilight-sage-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=JamesGulland.twilight-sage-dark-theme" + formats: null colors: bg: "#1F1F1F" fg: "#968E88" diff --git a/themes/twilight.yaml b/themes/twilight.yaml index 7797f3dc..4850e58c 100644 --- a/themes/twilight.yaml +++ b/themes/twilight.yaml @@ -2,12 +2,13 @@ name: "Twilight" source: marketplace_id: "SriManikantaPalakollu.twilight" version: "1.0.0" - installs: 5204 + installs: 5205 rating: 5 ratings: 1 author: "Sri Manikanta Palakollu" repo: "https://github.com/srimani-programmer/Twilight" url: "https://marketplace.visualstudio.com/items?itemName=SriManikantaPalakollu.twilight" + formats: null colors: bg: "#021524" fg: "#D6DEEB" diff --git a/themes/twilightsparkle.yaml b/themes/twilightsparkle.yaml index efbd3664..b318f466 100644 --- a/themes/twilightsparkle.yaml +++ b/themes/twilightsparkle.yaml @@ -8,6 +8,7 @@ source: author: "nanoparsec" repo: "https://github.com/nanoparsec/twilightsparkle-vscode" url: "https://marketplace.visualstudio.com/items?itemName=nanoparsec.twilightsparkle" + formats: null colors: bg: "#1D0038" fg: "#19E68C" diff --git a/themes/twilite-darker.yaml b/themes/twilite-darker.yaml index 7a8f77a7..d5f25fbd 100644 --- a/themes/twilite-darker.yaml +++ b/themes/twilite-darker.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "vegcom.twilite" version: "0.0.3" installs: 30 + rating: 0 + ratings: 0 author: "vegcom" repo: "https://github.com/vegcom/VSCode-Twilite" url: "https://marketplace.visualstudio.com/items?itemName=vegcom.twilite" + formats: null colors: bg: "#181520" fg: "#F8F8F2" diff --git a/themes/twilite.yaml b/themes/twilite.yaml index b3e1c7d1..4146d0a4 100644 --- a/themes/twilite.yaml +++ b/themes/twilite.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "vegcom.twilite" version: "0.0.3" installs: 30 + rating: 0 + ratings: 0 author: "vegcom" repo: "https://github.com/vegcom/VSCode-Twilite" url: "https://marketplace.visualstudio.com/items?itemName=vegcom.twilite" + formats: null colors: bg: "#1E1A2E" fg: "#F8F8F2" diff --git a/themes/twin-black.yaml b/themes/twin-black.yaml index 122e2ecb..13432835 100644 --- a/themes/twin-black.yaml +++ b/themes/twin-black.yaml @@ -8,6 +8,7 @@ source: author: "Twin Themes" repo: "https://github.com/twin-themes/vscode" url: "https://marketplace.visualstudio.com/items?itemName=twin-themes.twin-vsc" + formats: null colors: bg: "#2A2D2C" fg: "#BCC0CC" diff --git a/themes/twin-blue.yaml b/themes/twin-blue.yaml index e6d2c246..c5e1bb22 100644 --- a/themes/twin-blue.yaml +++ b/themes/twin-blue.yaml @@ -8,6 +8,7 @@ source: author: "Twin Themes" repo: "https://github.com/twin-themes/vscode" url: "https://marketplace.visualstudio.com/items?itemName=twin-themes.twin-vsc" + formats: null colors: bg: "#112239" fg: "#BCC0CC" diff --git a/themes/two-firewatch.yaml b/themes/two-firewatch.yaml index 8095b673..7fe0b593 100644 --- a/themes/two-firewatch.yaml +++ b/themes/two-firewatch.yaml @@ -8,6 +8,7 @@ source: author: "hehk" repo: "https://github.com/Hehk/two-firewatch" url: "https://marketplace.visualstudio.com/items?itemName=hehk.two-firewatch" + formats: null colors: bg: "#FAF8F5" fg: "#896724" diff --git a/themes/two-monokai-darker.yaml b/themes/two-monokai-darker.yaml deleted file mode 100644 index 8fd8f382..00000000 --- a/themes/two-monokai-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Two Monokai Darker" -source: - marketplace_id: "khan.two-monokai" - version: "0.1.3" - installs: 3910 - rating: 0 - ratings: 0 - author: "khan" - repo: "https://github.com/kmnhan/vscode-two-monokai" - url: "https://marketplace.visualstudio.com/items?itemName=khan.two-monokai" -colors: - bg: "#23272E" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "pink" - hue: 262 - pair: null - contrast: - fg: 57.2 - black: 0 - red: 34.5 - green: 58.1 - yellow: 46.4 - blue: 47.4 - magenta: 36.8 - cyan: 50.3 - white: 88.4 - brightBlack: 13.2 - brightRed: 43.9 - brightGreen: 74.6 - brightYellow: 59 - brightBlue: 61.5 - brightMagenta: 48 - brightCyan: 65.6 - brightWhite: 80.8 diff --git a/themes/two-monokai.yaml b/themes/two-monokai.yaml deleted file mode 100644 index 427291ca..00000000 --- a/themes/two-monokai.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Two Monokai" -source: - marketplace_id: "khan.two-monokai" - version: "0.1.3" - installs: 3910 - rating: 0 - ratings: 0 - author: "khan" - repo: "https://github.com/kmnhan/vscode-two-monokai" - url: "https://marketplace.visualstudio.com/items?itemName=khan.two-monokai" -colors: - bg: "#282C34" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#E6E6E6" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#D7DAE0" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 56.2 - black: 0 - red: 33.5 - green: 57.2 - yellow: 45.4 - blue: 46.5 - magenta: 35.9 - cyan: 49.3 - white: 87.4 - brightBlack: 12.3 - brightRed: 42.9 - brightGreen: 73.6 - brightYellow: 58 - brightBlue: 60.5 - brightMagenta: 47.1 - brightCyan: 64.6 - brightWhite: 79.8 diff --git a/themes/twodark.yaml b/themes/twodark.yaml index c3abe624..ef7829a6 100644 --- a/themes/twodark.yaml +++ b/themes/twodark.yaml @@ -8,6 +8,7 @@ source: author: "Avetis" repo: "https://github.com/AvetisDN/twodark-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Avetis.twodark" + formats: null colors: bg: "#191B21" fg: "#E1E4E8" diff --git a/themes/tycho-crater.yaml b/themes/tycho-crater.yaml index acce952d..08a6fd64 100644 --- a/themes/tycho-crater.yaml +++ b/themes/tycho-crater.yaml @@ -8,6 +8,7 @@ source: author: "Mr Lizard & Company" repo: "https://github.com/webstek/sea-of-serenity" url: "https://marketplace.visualstudio.com/items?itemName=MrLizardAndCompany.sea-of-serenity" + formats: null colors: bg: "#D4D0CC" fg: "#787470" diff --git a/themes/tyh-theme-dark.yaml b/themes/tyh-theme-dark.yaml deleted file mode 100644 index 2380e2e7..00000000 --- a/themes/tyh-theme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "tyh-theme-dark" -source: - marketplace_id: "tyh-theme.tyh-theme" - version: "1.4.1" - installs: 535 - rating: 5 - ratings: 1 - author: "tyh-theme" - repo: "https://github.com/Tyh2001/tyh-theme-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=tyh-theme.tyh-theme" -colors: - bg: "#2C2C2C" - fg: "#EEFFFF" - black: "#333333" - red: "#D10F1B" - green: "#54C600" - yellow: "#FBCC30" - blue: "#3A6FF4" - magenta: "#8C6BC8" - cyan: "#56ADBC" - white: "#E3E3DD" - brightBlack: "#666666" - brightRed: "#F92672" - brightGreen: "#A6E22E" - brightYellow: "#E2E22E" - brightBlue: "#819AFF" - brightMagenta: "#AE81FF" - brightCyan: "#66D9EF" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 101.3 - black: 0 - red: 22.3 - green: 54.7 - yellow: 74.8 - blue: 27.4 - magenta: 29 - cyan: 47.2 - white: 85.3 - brightBlack: 18.8 - brightRed: 34.1 - brightGreen: 73.8 - brightYellow: 80.7 - brightBlue: 46.6 - brightMagenta: 43.3 - brightCyan: 70.2 - brightWhite: 98.7 diff --git a/themes/typedark-cyan.yaml b/themes/typedark-cyan.yaml index d115bb29..61a5a07b 100644 --- a/themes/typedark-cyan.yaml +++ b/themes/typedark-cyan.yaml @@ -8,6 +8,7 @@ source: author: "BonnyAD9" repo: "https://github.com/BonnyAD9/TypeDark" url: "https://marketplace.visualstudio.com/items?itemName=BonnyAD9.typedark" + formats: null colors: bg: "#222222" fg: "#EEEEEE" diff --git a/themes/typedark-magenta.yaml b/themes/typedark-magenta.yaml index 458e60d8..7d5dbd52 100644 --- a/themes/typedark-magenta.yaml +++ b/themes/typedark-magenta.yaml @@ -8,6 +8,7 @@ source: author: "BonnyAD9" repo: "https://github.com/BonnyAD9/TypeDark" url: "https://marketplace.visualstudio.com/items?itemName=BonnyAD9.typedark" + formats: null colors: bg: "#252224" fg: "#EEEEEE" diff --git a/themes/tyrell-corporation.yaml b/themes/tyrell-corporation.yaml index 82fcfb21..fd409000 100644 --- a/themes/tyrell-corporation.yaml +++ b/themes/tyrell-corporation.yaml @@ -8,6 +8,7 @@ source: author: "Howard C." repo: "https://github.com/h-cwc/wallace-corporation" url: "https://marketplace.visualstudio.com/items?itemName=hc.wallace-corporation" + formats: null colors: bg: "#0B0C0F" fg: "#FFB000" diff --git a/themes/tyrian-night.yaml b/themes/tyrian-night.yaml index 891aaddc..f37339a9 100644 --- a/themes/tyrian-night.yaml +++ b/themes/tyrian-night.yaml @@ -8,6 +8,7 @@ source: author: "renbkna" repo: "https://github.com/renbkna/tyrian-night" url: "https://marketplace.visualstudio.com/items?itemName=renbkna.tyrian-night" + formats: null colors: bg: "#0C0C0C" fg: "#D0C8E0" diff --git a/themes/tyrone-neon-red.yaml b/themes/tyrone-neon-red.yaml index b05dc523..b2ef7155 100644 --- a/themes/tyrone-neon-red.yaml +++ b/themes/tyrone-neon-red.yaml @@ -8,6 +8,7 @@ source: author: "tyronejosee" repo: "https://github.com/tyronejosee/theme_tyrone_neon" url: "https://marketplace.visualstudio.com/items?itemName=tyronejosee.tyrone-neon" + formats: null colors: bg: "#000000" fg: "#E5E5E5" diff --git a/themes/ubuntu-dark.yaml b/themes/ubuntu-dark.yaml index c9088e1d..fb64a84f 100644 --- a/themes/ubuntu-dark.yaml +++ b/themes/ubuntu-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "AgraeonLabs.dev-themes" version: "0.1.0" installs: 283 + rating: 0 + ratings: 0 author: "Agraeon Labs" repo: "https://github.com/adiagcodelance/VS-Code-Themes" url: "https://marketplace.visualstudio.com/items?itemName=AgraeonLabs.dev-themes" + formats: null colors: bg: "#2C2C2C" fg: "#F0F0F0" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 93.8 black: 0 diff --git a/themes/udt-eclipse-light.yaml b/themes/udt-eclipse-light.yaml index 79766297..c2fa6ea8 100644 --- a/themes/udt-eclipse-light.yaml +++ b/themes/udt-eclipse-light.yaml @@ -8,6 +8,7 @@ source: author: "FeiFei Liu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=lexicographer.lucid-parchment-theme" + formats: null colors: bg: "#F9F8F6" fg: "#4D3F32" diff --git a/themes/ui-color.yaml b/themes/ui-color.yaml index 4dae9462..7c840ad2 100644 --- a/themes/ui-color.yaml +++ b/themes/ui-color.yaml @@ -8,6 +8,7 @@ source: author: "PinkDopeyBug" repo: "https://github.com/PinkDopeyBug/pinkdopeybug-theme" url: "https://marketplace.visualstudio.com/items?itemName=PinkDopeyBug.pinkdopeybug" + formats: null colors: bg: "#303845" fg: "#DDDDDD" diff --git a/themes/ui.yaml b/themes/ui.yaml index b339f04e..daad96b8 100644 --- a/themes/ui.yaml +++ b/themes/ui.yaml @@ -8,6 +8,7 @@ source: author: "Salt Chang" repo: "https://github.com/saltchang/theme-salty" url: "https://marketplace.visualstudio.com/items?itemName=saltchang.salty" + formats: null colors: bg: "#131A18" fg: "#E0E0E0" diff --git a/themes/ukiyo-e-aged-manuscript.yaml b/themes/ukiyo-e-aged-manuscript.yaml deleted file mode 100644 index ad8c75f4..00000000 --- a/themes/ukiyo-e-aged-manuscript.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ukiyo-e Aged Manuscript" -source: - marketplace_id: "sserafy.ttera-themes" - version: "2.0.7" - installs: 2044 - rating: 5 - ratings: 1 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" -colors: - bg: "#D4C29A" - fg: "#2A1F15" - black: "#2A1F15" - red: "#A8472B" - green: "#5A7A4C" - yellow: "#C5941A" - blue: "#4A5C7A" - magenta: "#7A5A7A" - cyan: "#4C6B6B" - white: "#D4C29A" - brightBlack: "#746453" - brightRed: "#C85A3B" - brightGreen: "#6D9157" - brightYellow: "#E8B226" - brightBlue: "#5C7094" - brightMagenta: "#9570A3" - brightCyan: "#5E8282" - brightWhite: "#F0E8D6" -meta: - mode: "light" - accent: "yellow" - hue: 87 - pair: null - contrast: - fg: 68.8 - black: 68.8 - red: 44.3 - green: 39.4 - yellow: 18.8 - blue: 49.1 - magenta: 45.2 - cyan: 44.8 - white: 0 - brightBlack: 44.3 - brightRed: 34.3 - brightGreen: 29.3 - brightYellow: 0 - brightBlue: 40.4 - brightMagenta: 33.9 - brightCyan: 34.8 - brightWhite: 21.3 diff --git a/themes/ukiyo-e-manuscript.yaml b/themes/ukiyo-e-manuscript.yaml deleted file mode 100644 index 328ac989..00000000 --- a/themes/ukiyo-e-manuscript.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ukiyo-e Manuscript" -source: - marketplace_id: "sserafy.ssera-themes" - version: "2.0.2" - installs: 334 - rating: 0 - ratings: 0 - author: "sserafy" - repo: "https://github.com/azhou555/naturefy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ssera-themes" -colors: - bg: "#F5F0E8" - fg: "#1A1614" - black: "#1A1614" - red: "#D63031" - green: "#00B894" - yellow: "#FDCB6E" - blue: "#4CA7A5" - magenta: "#FD79A8" - cyan: "#4CA7A5" - white: "#F5F0E8" - brightBlack: "#6B5D4F" - brightRed: "#E74C3C" - brightGreen: "#00D2A3" - brightYellow: "#FFD93D" - brightBlue: "#5FB8B6" - brightMagenta: "#FF8CC8" - brightCyan: "#5FB8B6" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.1 - black: 96.1 - red: 63.4 - green: 40.4 - yellow: 14.9 - blue: 45.7 - magenta: 39.5 - cyan: 45.7 - white: 0 - brightBlack: 73 - brightRed: 56 - brightGreen: 28.2 - brightYellow: 9.6 - brightBlue: 37.1 - brightMagenta: 32.9 - brightCyan: 37.1 - brightWhite: 0 diff --git a/themes/ukiyo-tone-asahi-morning-sun.yaml b/themes/ukiyo-tone-asahi-morning-sun.yaml index 70f8cbb5..28798e6c 100644 --- a/themes/ukiyo-tone-asahi-morning-sun.yaml +++ b/themes/ukiyo-tone-asahi-morning-sun.yaml @@ -8,6 +8,7 @@ source: author: "Mohit Sharma" repo: "https://github.com/mohitSharma74/ukiyo-tone" url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" + formats: null colors: bg: "#F0F4F5" fg: "#264348" diff --git a/themes/ukiyo-tone-kachi-iro-victory-color.yaml b/themes/ukiyo-tone-kachi-iro-victory-color.yaml index 51a083ba..d392a19f 100644 --- a/themes/ukiyo-tone-kachi-iro-victory-color.yaml +++ b/themes/ukiyo-tone-kachi-iro-victory-color.yaml @@ -8,6 +8,7 @@ source: author: "Mohit Sharma" repo: "https://github.com/mohitSharma74/ukiyo-tone" url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" + formats: null colors: bg: "#0D1117" fg: "#FFFFFF" diff --git a/themes/ukiyo-tone-karesansui-dry-landscape.yaml b/themes/ukiyo-tone-karesansui-dry-landscape.yaml index 09eda538..145fe53c 100644 --- a/themes/ukiyo-tone-karesansui-dry-landscape.yaml +++ b/themes/ukiyo-tone-karesansui-dry-landscape.yaml @@ -8,6 +8,7 @@ source: author: "Mohit Sharma" repo: "https://github.com/mohitSharma74/ukiyo-tone" url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" + formats: null colors: bg: "#E8EDE6" fg: "#4A5056" diff --git a/themes/ukiyo-tone-koke-dera-moss-temple.yaml b/themes/ukiyo-tone-koke-dera-moss-temple.yaml index fed76557..5c39a928 100644 --- a/themes/ukiyo-tone-koke-dera-moss-temple.yaml +++ b/themes/ukiyo-tone-koke-dera-moss-temple.yaml @@ -8,6 +8,7 @@ source: author: "Mohit Sharma" repo: "https://github.com/mohitSharma74/ukiyo-tone" url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" + formats: null colors: bg: "#0F1F1C" fg: "#D4E0D9" diff --git a/themes/ukiyo-tone-kuro-sumi-black-ink.yaml b/themes/ukiyo-tone-kuro-sumi-black-ink.yaml index 492cca0e..f1e20480 100644 --- a/themes/ukiyo-tone-kuro-sumi-black-ink.yaml +++ b/themes/ukiyo-tone-kuro-sumi-black-ink.yaml @@ -8,6 +8,7 @@ source: author: "Mohit Sharma" repo: "https://github.com/mohitSharma74/ukiyo-tone" url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" + formats: null colors: bg: "#1C1C1C" fg: "#DCDCDC" diff --git a/themes/ukiyo-tone-tasogare-twilight.yaml b/themes/ukiyo-tone-tasogare-twilight.yaml index 20cb129f..211187d6 100644 --- a/themes/ukiyo-tone-tasogare-twilight.yaml +++ b/themes/ukiyo-tone-tasogare-twilight.yaml @@ -8,6 +8,7 @@ source: author: "Mohit Sharma" repo: "https://github.com/mohitSharma74/ukiyo-tone" url: "https://marketplace.visualstudio.com/items?itemName=OneMohitSharma.ukiyo-tone" + formats: null colors: bg: "#2D333B" fg: "#ADB5BD" diff --git a/themes/ukiyo.yaml b/themes/ukiyo.yaml index 4ee0e5d1..7da9ef7e 100644 --- a/themes/ukiyo.yaml +++ b/themes/ukiyo.yaml @@ -8,6 +8,7 @@ source: author: "zcericola" repo: "https://www.github.com/zcericola/ukiyo-theme" url: "https://marketplace.visualstudio.com/items?itemName=zcericola.ukiyo" + formats: null colors: bg: "#121212" fg: "#D3D3D3" diff --git a/themes/ultima-gwz.yaml b/themes/ultima-gwz.yaml index b6334ffb..9a178224 100644 --- a/themes/ultima-gwz.yaml +++ b/themes/ultima-gwz.yaml @@ -8,6 +8,7 @@ source: author: "Egor Lem" repo: "https://github.com/egorlem/ultima.vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=guezwhoz-schema.ultima-vscode-theme" + formats: null colors: bg: "#1D1D1D" fg: "#D9D9D9" diff --git a/themes/ultima.yaml b/themes/ultima.yaml index 85e3f25a..9be3869a 100644 --- a/themes/ultima.yaml +++ b/themes/ultima.yaml @@ -8,6 +8,7 @@ source: author: "Egor Lem" repo: "https://github.com/egorlem/ultima.vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=guezwhoz-schema.ultima-vscode-theme" + formats: null colors: bg: "#1F1F1F" fg: "#DDE3DC" diff --git a/themes/ultra-instinct-mastered-light.yaml b/themes/ultra-instinct-mastered-light.yaml deleted file mode 100644 index 06177e18..00000000 --- a/themes/ultra-instinct-mastered-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ultra Instinct Mastered (Light)" -source: - marketplace_id: "JuanLias.ultra-instinct-theme" - version: "0.1.4" - installs: 73 - rating: 5 - ratings: 2 - author: "Juan Lias" - repo: "https://github.com/juanlias/ultra-instinct-theme" - url: "https://marketplace.visualstudio.com/items?itemName=JuanLias.ultra-instinct-theme" -colors: - bg: "#F8FAFC" - fg: "#334155" - black: "#000000" - red: "#EF4444" - green: "#10B981" - yellow: "#F59E0B" - blue: "#3B82F6" - magenta: "#9333EA" - cyan: "#06B6D4" - white: "#64748B" - brightBlack: "#334155" - brightRed: "#F87171" - brightGreen: "#34D399" - brightYellow: "#FBBF24" - brightBlue: "#60A5FA" - brightMagenta: "#C084FC" - brightCyan: "#22D3EE" - brightWhite: "#94A3B8" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 90.9 - black: 102.9 - red: 60.7 - green: 45.9 - yellow: 38.6 - blue: 60.7 - magenta: 72.4 - cyan: 44 - white: 69.9 - brightBlack: 90.9 - brightRed: 49.6 - brightGreen: 33.1 - brightYellow: 26 - brightBlue: 46.4 - brightMagenta: 48.1 - brightCyan: 29.9 - brightWhite: 47 diff --git a/themes/ultra-instinct-mastered.yaml b/themes/ultra-instinct-mastered.yaml deleted file mode 100644 index ff32b0cf..00000000 --- a/themes/ultra-instinct-mastered.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ultra Instinct Mastered" -source: - marketplace_id: "JuanLias.ultra-instinct-theme" - version: "0.1.4" - installs: 73 - rating: 5 - ratings: 2 - author: "Juan Lias" - repo: "https://github.com/juanlias/ultra-instinct-theme" - url: "https://marketplace.visualstudio.com/items?itemName=JuanLias.ultra-instinct-theme" -colors: - bg: "#141118" - fg: "#B0B5C0" - black: "#141118" - red: "#FF3366" - green: "#00FF99" - yellow: "#FFCB6B" - blue: "#33C7FF" - magenta: "#7B42FF" - cyan: "#00EAFF" - white: "#DCE0E5" - brightBlack: "#606080" - brightRed: "#FF6688" - brightGreen: "#66FFAA" - brightYellow: "#FFE082" - brightBlue: "#80D8FF" - brightMagenta: "#D0A0FF" - brightCyan: "#80F0FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 304 - pair: null - contrast: - fg: 61.6 - black: 0 - red: 39.8 - green: 87.6 - yellow: 79.3 - blue: 64.8 - magenta: 26.5 - cyan: 80.9 - white: 87 - brightBlack: 21.1 - brightRed: 48.2 - brightGreen: 89.9 - brightYellow: 88.7 - brightBlue: 75.7 - brightMagenta: 61.4 - brightCyan: 87.2 - brightWhite: 107.3 diff --git a/themes/ultra-instinct-sign.yaml b/themes/ultra-instinct-sign.yaml deleted file mode 100644 index a7017a20..00000000 --- a/themes/ultra-instinct-sign.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ultra Instinct Sign" -source: - marketplace_id: "JuanLias.ultra-instinct-theme" - version: "0.1.4" - installs: 73 - rating: 5 - ratings: 2 - author: "Juan Lias" - repo: "https://github.com/juanlias/ultra-instinct-theme" - url: "https://marketplace.visualstudio.com/items?itemName=JuanLias.ultra-instinct-theme" -colors: - bg: "#0D1017" - fg: "#B0B5C0" - black: "#0D1017" - red: "#FF3366" - green: "#00FF99" - yellow: "#FFCB6B" - blue: "#3D5AFE" - magenta: "#AA00FF" - cyan: "#00E5FF" - white: "#DCE0E5" - brightBlack: "#606080" - brightRed: "#FF6688" - brightGreen: "#66FFAA" - brightYellow: "#FFE082" - brightBlue: "#82B1FF" - brightMagenta: "#EA80FC" - brightCyan: "#80F0FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 267 - pair: null - contrast: - fg: 61.8 - black: 0 - red: 40 - green: 87.7 - yellow: 79.5 - blue: 26.7 - magenta: 29 - cyan: 78.6 - white: 87.1 - brightBlack: 21.3 - brightRed: 48.4 - brightGreen: 90.1 - brightYellow: 88.9 - brightBlue: 59.2 - brightMagenta: 56 - brightCyan: 87.3 - brightWhite: 107.4 diff --git a/themes/ultrafocus-fork-fork.yaml b/themes/ultrafocus-fork-fork.yaml deleted file mode 100644 index 81a08e12..00000000 --- a/themes/ultrafocus-fork-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ultrafocus - Fork - Fork" -source: - marketplace_id: "valentinesamuel.fallout-dark" - version: "0.0.1" - installs: 2243 - rating: 0 - ratings: 0 - author: "valentine samuel" - repo: "https://github.com/valentinesamuel/themes" - url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" -colors: - bg: "#000000" - fg: "#B2B2B2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#6F6F6F" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 60.7 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 27 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/umbra.yaml b/themes/umbra.yaml index 6352ef87..d5183a86 100644 --- a/themes/umbra.yaml +++ b/themes/umbra.yaml @@ -1,13 +1,14 @@ -name: "umbra" +name: "Umbra" source: marketplace_id: "greven.umbra" version: "1.4.10" - installs: 17302 + installs: 17308 rating: 4.5 ratings: 4 author: "greven" repo: "https://github.com/greven/umbra-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=greven.umbra" + formats: null colors: bg: "#141414" fg: "#CCCCCC" diff --git a/themes/umi.yaml b/themes/umi.yaml index 4e3dcdfa..2301e363 100644 --- a/themes/umi.yaml +++ b/themes/umi.yaml @@ -8,6 +8,7 @@ source: author: "Tobias Timm" repo: "https://github.com/tobiastimm/umi" url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.umi" + formats: null colors: bg: "#1C2B45" fg: "#D4D4D4" diff --git a/themes/ump-45-leva.yaml b/themes/ump-45-leva.yaml deleted file mode 100644 index bec34487..00000000 --- a/themes/ump-45-leva.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "UMP 45 / LEVA" -source: - marketplace_id: "PlutonicVoid.Leva-ump45" - version: "1.1.0" - installs: 18 - rating: 0 - ratings: 0 - author: "PlutonicVoid" - repo: "https://github.com/ThanatosSystemOmegaVI/leva-ump45-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=PlutonicVoid.Leva-ump45" -colors: - bg: "#151515" - fg: "#E6DECE" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 86.2 - black: 0 - red: 26.9 - green: 53.2 - yellow: 85.8 - blue: 27.6 - magenta: 29.9 - cyan: 47.7 - white: 90.2 - brightBlack: 22.2 - brightRed: 38.7 - brightGreen: 63.7 - brightYellow: 95.8 - brightBlue: 40.2 - brightMagenta: 45.6 - brightCyan: 55.6 - brightWhite: 90.2 diff --git a/themes/unbluelievable.yaml b/themes/unbluelievable.yaml index 4bc57201..4d6c05f0 100644 --- a/themes/unbluelievable.yaml +++ b/themes/unbluelievable.yaml @@ -8,6 +8,7 @@ source: author: "Yalright" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Yalright.unbluelievable" + formats: null colors: bg: "#170C38" fg: "#C0B6B6" diff --git a/themes/undefined.yaml b/themes/undefined.yaml index 3331dba2..4249b2b1 100644 --- a/themes/undefined.yaml +++ b/themes/undefined.yaml @@ -8,6 +8,7 @@ source: author: "so1ve" repo: "https://github.com/so1ve/vscode-theme-undefined" url: "https://marketplace.visualstudio.com/items?itemName=so1ve.theme-undefined" + formats: null colors: bg: "#262626" fg: "#DBD7CA" diff --git a/themes/under-theme.yaml b/themes/under-theme.yaml index 26cc1acc..a3846a05 100644 --- a/themes/under-theme.yaml +++ b/themes/under-theme.yaml @@ -8,6 +8,7 @@ source: author: "RLabs Inc." repo: "https://github.com/rodrigoluglio/rlabs-themes-collection" url: "https://marketplace.visualstudio.com/items?itemName=RLabsInc.rlabs-theme-collection" + formats: null colors: bg: "#0D101A" fg: "#FFFFFF" diff --git a/themes/underdark-fork.yaml b/themes/underdark-fork.yaml deleted file mode 100644 index c65530b4..00000000 --- a/themes/underdark-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Underdark - Fork" -source: - marketplace_id: "SanuKumar.rik" - version: "1.0.7" - installs: 99 - rating: 5 - ratings: 1 - author: "Sanu Kumar" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=SanuKumar.rik" -colors: - bg: "#1B1B1B" - fg: "#AF8BFF" - black: "#3D3D3D" - red: "#FF3333" - green: "#00FF64" - yellow: "#FFE779" - blue: "#1584FF" - magenta: "#FF02FF" - cyan: "#0AE1FF" - white: "#A3A3A3" - brightBlack: "#666666" - brightRed: "#FF6767" - brightGreen: "#97FFB1" - brightYellow: "#FFCE00" - brightBlue: "#95CCFF" - brightMagenta: "#FF9AFF" - brightCyan: "#8EF4FF" - brightWhite: "#C9C9C9" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 49.2 - black: 0 - red: 38.2 - green: 85.6 - yellow: 90.8 - blue: 37 - magenta: 44.8 - cyan: 75.6 - white: 51 - brightBlack: 21.6 - brightRed: 46.7 - brightGreen: 92.1 - brightYellow: 79 - brightBlue: 71.1 - brightMagenta: 66.4 - brightCyan: 89.2 - brightWhite: 72.4 diff --git a/themes/underdark-v2.yaml b/themes/underdark-v2.yaml index 548ce970..66b1eeff 100644 --- a/themes/underdark-v2.yaml +++ b/themes/underdark-v2.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "MikeBuslenko.underdark-v2" version: "0.0.2" installs: 167 + rating: 0 + ratings: 0 author: "Mike Buslenko" repo: null url: "https://marketplace.visualstudio.com/items?itemName=MikeBuslenko.underdark-v2" + formats: null colors: bg: "#0A0A0A" fg: "#D0D7FF" diff --git a/themes/understated.yaml b/themes/understated.yaml index e4b07fbf..91d75ea4 100644 --- a/themes/understated.yaml +++ b/themes/understated.yaml @@ -8,6 +8,7 @@ source: author: "hnrchrdl" repo: "https://github.com/hnrchrdl/understated-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=hnrchrdl.understated-theme-vscode" + formats: null colors: bg: "#2F3640" fg: "#F5F6FA" diff --git a/themes/unicorn-dark.yaml b/themes/unicorn-dark.yaml deleted file mode 100644 index d4ccd4b1..00000000 --- a/themes/unicorn-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Unicorn dark" -source: - marketplace_id: "MarfahTechnologies.unicorn-dark" - version: "1.0.0" - installs: 216 - rating: 5 - ratings: 2 - author: "Marfah Technologies" - repo: "https://github.com/FahadQasim283/unicorn-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MarfahTechnologies.unicorn-dark" -colors: - bg: "#131212" - fg: "#D4D4D4" - black: "#E8ACAC" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E4B23D" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E6D577" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 79.9 - black: 65.2 - red: 27.1 - green: 53.4 - yellow: 86 - blue: 27.8 - magenta: 30.2 - cyan: 48 - white: 64.4 - brightBlack: 22.4 - brightRed: 39 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.4 - brightMagenta: 45.8 - brightCyan: 55.8 - brightWhite: 79.9 diff --git a/themes/unicorn.yaml b/themes/unicorn.yaml index 3e812d66..02c1e330 100644 --- a/themes/unicorn.yaml +++ b/themes/unicorn.yaml @@ -8,6 +8,7 @@ source: author: "Gabriele Meucci" repo: "https://github.com/walele993/fable_a_vsc_theme" url: "https://marketplace.visualstudio.com/items?itemName=walele993.fable-code-theme" + formats: null colors: bg: "#FFFFFF" fg: "#333333" diff --git a/themes/unicornio-dark.yaml b/themes/unicornio-dark.yaml index 6338146e..0c22048f 100644 --- a/themes/unicornio-dark.yaml +++ b/themes/unicornio-dark.yaml @@ -1,4 +1,4 @@ -name: "unicornio dark" +name: "Unicornio Dark" source: marketplace_id: "unicorniodev.unicornio-dark" version: "1.1.0" @@ -8,6 +8,7 @@ source: author: "FlorLuzDuarte" repo: "https://github.com/unicorniodev/unicornio-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=unicorniodev.unicornio-dark" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/unieye.yaml b/themes/unieye.yaml index 54ebbc25..ae148565 100644 --- a/themes/unieye.yaml +++ b/themes/unieye.yaml @@ -8,6 +8,8 @@ source: author: "hb" repo: "https://github.com/hbthen3rd/unieye-vscode" url: "https://marketplace.visualstudio.com/items?itemName=hbthen3rd.unieye" + formats: + sublime: "https://raw.githubusercontent.com/hbthen3rd/unieye-vscode/master/themes/UniEye.tmTheme" colors: bg: "#0B0A10" fg: "#CAC3DF" diff --git a/themes/uniquezhd.yaml b/themes/uniquezhd.yaml index 804bb86c..58a87a67 100644 --- a/themes/uniquezhd.yaml +++ b/themes/uniquezhd.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "UniquezHD.uniquezhd" version: "1.0.6" installs: 61 + rating: 0 + ratings: 0 author: "UniquezHD" repo: null url: "https://marketplace.visualstudio.com/items?itemName=UniquezHD.uniquezhd" + formats: null colors: bg: "#2D2B55" fg: "#FFFFFF" diff --git a/themes/unitsmash.yaml b/themes/unitsmash.yaml index 601baa74..a115644a 100644 --- a/themes/unitsmash.yaml +++ b/themes/unitsmash.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "rajeshvu.unitsmash-theme" version: "1.1.1" installs: 35 + rating: 0 + ratings: 0 author: "Rajesh V U" repo: "https://github.com/rajeshvu/vscode-theme-unitsmash" url: "https://marketplace.visualstudio.com/items?itemName=rajeshvu.unitsmash-theme" + formats: null colors: bg: "#101016" fg: "#D2D2D2" diff --git a/themes/unity-theme.yaml b/themes/unity-theme.yaml deleted file mode 100644 index ef3e2a46..00000000 --- a/themes/unity-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Unity Theme" -source: - marketplace_id: "TallesSouza.Unity-theme" - version: "1.1.0" - installs: 1392 - rating: 5 - ratings: 1 - author: "Talles Souza" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=TallesSouza.Unity-theme" -colors: - bg: "#0D0D0D" - fg: "#FFFFFF" - black: "#545454" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#6F6F6F" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 107.6 - black: 15.5 - red: 27.5 - green: 53.7 - yellow: 86.4 - blue: 28.2 - magenta: 30.5 - cyan: 48.3 - white: 90.8 - brightBlack: 26.7 - brightRed: 39.3 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 90.8 diff --git a/themes/universe-gray.yaml b/themes/universe-gray.yaml index 88ed6c41..7763f8f6 100644 --- a/themes/universe-gray.yaml +++ b/themes/universe-gray.yaml @@ -8,6 +8,7 @@ source: author: "Matías Olivera" repo: "https://github.com/MatiasOlivera/universe-theme" url: "https://marketplace.visualstudio.com/items?itemName=MatiasOlivera.universe" + formats: null colors: bg: "#1A1A1A" fg: "#DDDDDD" diff --git a/themes/universe-purple.yaml b/themes/universe-purple.yaml index 9e67f88c..1aa00e31 100644 --- a/themes/universe-purple.yaml +++ b/themes/universe-purple.yaml @@ -8,6 +8,7 @@ source: author: "Matías Olivera" repo: "https://github.com/MatiasOlivera/universe-theme" url: "https://marketplace.visualstudio.com/items?itemName=MatiasOlivera.universe" + formats: null colors: bg: "#150E29" fg: "#D8D5DF" diff --git a/themes/universe.yaml b/themes/universe.yaml index 417207e4..b0a43796 100644 --- a/themes/universe.yaml +++ b/themes/universe.yaml @@ -8,6 +8,7 @@ source: author: "Matías Olivera" repo: "https://github.com/MatiasOlivera/universe-theme" url: "https://marketplace.visualstudio.com/items?itemName=MatiasOlivera.universe" + formats: null colors: bg: "#0E1729" fg: "#D6D9E0" diff --git a/themes/unlight-v-2.yaml b/themes/unlight-v-2.yaml deleted file mode 100644 index 840c2979..00000000 --- a/themes/unlight-v-2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Unlight v.2" -source: - marketplace_id: "essequiel.unlighted" - version: "1.2.0" - installs: 40 - rating: 0 - ratings: 0 - author: "essequiel" - repo: "https://github.com/essequie1/unlighted" - url: "https://marketplace.visualstudio.com/items?itemName=essequiel.unlighted" -colors: - bg: "#0A0A0A" - fg: "#A7A7A7" - black: "#3D3D3D" - red: "#FF3333" - green: "#00FF64" - yellow: "#FFE779" - blue: "#1584FF" - magenta: "#FF02FF" - cyan: "#0AE1FF" - white: "#A3A3A3" - brightBlack: "#666666" - brightRed: "#FF6767" - brightGreen: "#97FFB1" - brightYellow: "#FFCE00" - brightBlue: "#95CCFF" - brightMagenta: "#FF9AFF" - brightCyan: "#8EF4FF" - brightWhite: "#C9C9C9" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 54.5 - black: 7.3 - red: 39.5 - green: 87 - yellow: 92.2 - blue: 38.3 - magenta: 46.1 - cyan: 77 - white: 52.3 - brightBlack: 22.9 - brightRed: 48 - brightGreen: 93.4 - brightYellow: 80.3 - brightBlue: 72.4 - brightMagenta: 67.7 - brightCyan: 90.5 - brightWhite: 73.7 diff --git a/themes/untitled-fork-fork.yaml b/themes/untitled-fork-fork.yaml deleted file mode 100644 index 5ab1b317..00000000 --- a/themes/untitled-fork-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Untitled - Fork - Fork" -source: - marketplace_id: "xynny.aquaticblue-theme" - version: "0.0.1" - installs: 1105 - rating: 0 - ratings: 0 - author: "xynny" - repo: "https://github.com/xynnylol/vsthemes" - url: "https://marketplace.visualstudio.com/items?itemName=xynny.aquaticblue-theme" -colors: - bg: "#001821" - fg: "#D4D4D4" - black: "#797575" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 225 - pair: null - contrast: - fg: 79.5 - black: 29.1 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.5 - magenta: 29.8 - cyan: 47.6 - white: 106.9 - brightBlack: 22.1 - brightRed: 38.6 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90 diff --git a/themes/untitled-fork.yaml b/themes/untitled-fork.yaml deleted file mode 100644 index 1ff34da2..00000000 --- a/themes/untitled-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Untitled - Fork" -source: - marketplace_id: "FabianLeGair.earthen-bog" - version: "0.0.2" - installs: 71 - rating: 0 - ratings: 0 - author: "Fabian LeGair" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=FabianLeGair.earthen-bog" -colors: - bg: "#3D4333" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "dark" - accent: "pink" - hue: 124 - pair: null - contrast: - fg: 97.9 - black: 10.1 - red: 17.7 - green: 42.7 - yellow: 33.8 - blue: 0 - magenta: 17.1 - cyan: 31.1 - white: 0 - brightBlack: 13 - brightRed: 17.7 - brightGreen: 51.3 - brightYellow: 51.3 - brightBlue: 0 - brightMagenta: 17.1 - brightCyan: 31.1 - brightWhite: 43.5 diff --git a/themes/untitled.yaml b/themes/untitled.yaml deleted file mode 100644 index 2873cd7f..00000000 --- a/themes/untitled.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Untitled" -source: - marketplace_id: "invillia.Code-Like-A-Rainbow" - version: "0.3.0" - installs: 10478 - rating: 4 - ratings: 5 - author: "invillia" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=invillia.Code-Like-A-Rainbow" -colors: - bg: "#1E1E1E" - fg: "#C86DA9" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#4E6E90" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 38.9 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 23.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 106 diff --git a/themes/unyodusk.yaml b/themes/unyodusk.yaml index df8c78f7..5f82730c 100644 --- a/themes/unyodusk.yaml +++ b/themes/unyodusk.yaml @@ -8,6 +8,7 @@ source: author: "UnyoDusk" repo: "https://github.com/firdodev/unyodusk" url: "https://marketplace.visualstudio.com/items?itemName=UnyoDusk.unyocorp" + formats: null colors: bg: "#151515" fg: "#B0B0B0" diff --git a/themes/updog-light.yaml b/themes/updog-light.yaml index 3e695128..25dfb045 100644 --- a/themes/updog-light.yaml +++ b/themes/updog-light.yaml @@ -8,6 +8,7 @@ source: author: "douggrubba" repo: "https://github.com/douggrubba/updog-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=douggrubba.updog" + formats: null colors: bg: "#EDEDF6" fg: "#1F2526" diff --git a/themes/updog.yaml b/themes/updog.yaml index 24bd9eee..ffbaaae5 100644 --- a/themes/updog.yaml +++ b/themes/updog.yaml @@ -8,6 +8,7 @@ source: author: "douggrubba" repo: "https://github.com/douggrubba/updog-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=douggrubba.updog" + formats: null colors: bg: "#090A09" fg: "#7CFB9D" diff --git a/themes/upward-dark-legacy.yaml b/themes/upward-dark-legacy.yaml index f6c80281..a80ed2f6 100644 --- a/themes/upward-dark-legacy.yaml +++ b/themes/upward-dark-legacy.yaml @@ -8,6 +8,7 @@ source: author: "Upward Solutions" repo: "https://github.com/Upward-Solutions-Agency/VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=upward-solutions.upward-theme" + formats: null colors: bg: "#000000" fg: "#949494" diff --git a/themes/upward-dark.yaml b/themes/upward-dark.yaml index 36d0116d..3a91a40b 100644 --- a/themes/upward-dark.yaml +++ b/themes/upward-dark.yaml @@ -8,6 +8,7 @@ source: author: "Upward Solutions" repo: "https://github.com/Upward-Solutions-Agency/VS-Code-Theme" url: "https://marketplace.visualstudio.com/items?itemName=upward-solutions.upward-theme" + formats: null colors: bg: "#000000" fg: "#C5C5C5" diff --git a/themes/urara.yaml b/themes/urara.yaml index 1caf357f..f497f688 100644 --- a/themes/urara.yaml +++ b/themes/urara.yaml @@ -8,6 +8,7 @@ source: author: "haxibami" repo: "https://github.com/haxibami/urara-vscode" url: "https://marketplace.visualstudio.com/items?itemName=haxibami.urara-vscode" + formats: null colors: bg: "#1C1921" fg: "#D2CED9" diff --git a/themes/urban-couple.yaml b/themes/urban-couple.yaml index 5aaca541..de1f19e8 100644 --- a/themes/urban-couple.yaml +++ b/themes/urban-couple.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#2F1B14" fg: "#F5DEB3" diff --git a/themes/urban-forge.yaml b/themes/urban-forge.yaml index 8c1707d6..75fdb0b9 100644 --- a/themes/urban-forge.yaml +++ b/themes/urban-forge.yaml @@ -8,6 +8,7 @@ source: author: "UrbanForge" repo: "https://github.com/rilex037/urbanforge-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=UrbanForge.urbanforge-vscode-theme" + formats: null colors: bg: "#20222C" fg: "#C4C4C4" diff --git a/themes/urban-glow.yaml b/themes/urban-glow.yaml index 49ad3027..353738ca 100644 --- a/themes/urban-glow.yaml +++ b/themes/urban-glow.yaml @@ -8,6 +8,7 @@ source: author: "Ranfurly" repo: "https://github.com/ranfurIy/urban-glow" url: "https://marketplace.visualstudio.com/items?itemName=Ranfurly.urban-glow" + formats: null colors: bg: "#000000" fg: "#DDDDDD" diff --git a/themes/urbanjungle.yaml b/themes/urbanjungle.yaml index 1cb9e928..86a3dc4e 100644 --- a/themes/urbanjungle.yaml +++ b/themes/urbanjungle.yaml @@ -8,6 +8,7 @@ source: author: "KJS - Officials" repo: null url: "https://marketplace.visualstudio.com/items?itemName=KJS-Officials.urbanjungle" + formats: null colors: bg: "#FFFFFF" fg: "#CBA9BA" diff --git a/themes/ursa.yaml b/themes/ursa.yaml index bea41ac7..8cd7d840 100644 --- a/themes/ursa.yaml +++ b/themes/ursa.yaml @@ -1,4 +1,4 @@ -name: "ursa" +name: "Ursa" source: marketplace_id: "ursanor.ursa" version: "0.0.2" @@ -8,6 +8,7 @@ source: author: "ursanor" repo: "https://github.com/OnurUrsar/ursa-theme" url: "https://marketplace.visualstudio.com/items?itemName=ursanor.ursa" + formats: null colors: bg: "#1F1E13" fg: "#EAEAEA" diff --git a/themes/user160.yaml b/themes/user160.yaml index f0f855f3..97d71f92 100644 --- a/themes/user160.yaml +++ b/themes/user160.yaml @@ -8,6 +8,7 @@ source: author: "user160-theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=user160-theme.user160-theme" + formats: null colors: bg: "#080B0F" fg: "#C9D1D9" diff --git a/themes/userscape-contrast.yaml b/themes/userscape-contrast.yaml deleted file mode 100644 index 9ae79d4b..00000000 --- a/themes/userscape-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "userscape-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#15181C" - fg: "#DCE2E8" - black: "#20242B" - red: "#BA0E2E" - green: "#A8C0E0" - yellow: "#507DB7" - blue: "#E3BD14" - magenta: "#B3BECC" - cyan: "#DE4D3A" - white: "#EBEFF2" - brightBlack: "#414A56" - brightRed: "#F03E5F" - brightGreen: "#F3F6FB" - brightYellow: "#98B3D5" - brightBlue: "#F2D96B" - brightMagenta: "#F0F2F5" - brightCyan: "#ED9C91" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 87.5 - black: 0 - red: 20.4 - green: 66.3 - yellow: 31.5 - blue: 67.8 - magenta: 65.7 - cyan: 34.2 - white: 95.9 - brightBlack: 10.6 - brightRed: 36.7 - brightGreen: 100.7 - brightYellow: 58.8 - brightBlue: 82.7 - brightMagenta: 98.1 - brightCyan: 59.1 - brightWhite: 106.8 diff --git a/themes/userscape-light.yaml b/themes/userscape-light.yaml deleted file mode 100644 index 7a811d16..00000000 --- a/themes/userscape-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "userscape-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#F5F8FC" - fg: "#879BB0" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#A8C0E0" - yellow: "#355B8C" - blue: "#E3BD14" - magenta: "#808C9C" - cyan: "#DE4D3A" - white: "#96A8BA" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#F3F6FB" - brightYellow: "#638DC4" - brightBlue: "#F2D96B" - brightMagenta: "#B9C0C9" - brightCyan: "#ED9C91" - brightWhite: "#C5CED8" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 50.4 - black: 0 - red: 75.9 - green: 30.7 - yellow: 79.4 - blue: 29.3 - magenta: 57.3 - cyan: 62 - white: 43.6 - brightBlack: 0 - brightRed: 59.5 - brightGreen: 0 - brightYellow: 57.2 - brightBlue: 15.2 - brightMagenta: 30 - brightCyan: 37.7 - brightWhite: 22.4 diff --git a/themes/userscape.yaml b/themes/userscape.yaml deleted file mode 100644 index 0c4b6ccb..00000000 --- a/themes/userscape.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "userscape" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#323A42" - fg: "#DCE2E8" - black: "#3D4750" - red: "#BA0E2E" - green: "#A8C0E0" - yellow: "#507DB7" - blue: "#E3BD14" - magenta: "#B3BECC" - cyan: "#DE4D3A" - white: "#EBEFF2" - brightBlack: "#5E6D7C" - brightRed: "#F03E5F" - brightGreen: "#F3F6FB" - brightYellow: "#98B3D5" - brightBlue: "#F2D96B" - brightMagenta: "#F0F2F5" - brightCyan: "#ED9C91" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 248 - pair: null - contrast: - fg: 81 - black: 0 - red: 13.9 - green: 59.8 - yellow: 24.9 - blue: 61.3 - magenta: 59.2 - cyan: 27.6 - white: 89.4 - brightBlack: 17.7 - brightRed: 30.2 - brightGreen: 94.2 - brightYellow: 52.3 - brightBlue: 76.2 - brightMagenta: 91.6 - brightCyan: 52.5 - brightWhite: 100.3 diff --git a/themes/utheme.yaml b/themes/utheme.yaml index f4cb1292..bafe73d0 100644 --- a/themes/utheme.yaml +++ b/themes/utheme.yaml @@ -8,6 +8,7 @@ source: author: "uEriic" repo: "https://github.com/uEriic/uTheme" url: "https://marketplace.visualstudio.com/items?itemName=uEriic.utheme" + formats: null colors: bg: "#141015" fg: "#B6CBE0" diff --git a/themes/utopia.yaml b/themes/utopia.yaml index 3e17dfa3..fd635e95 100644 --- a/themes/utopia.yaml +++ b/themes/utopia.yaml @@ -8,6 +8,7 @@ source: author: "yingfc" repo: "https://github.com/yingfc/utopia_color_theme" url: "https://marketplace.visualstudio.com/items?itemName=yingfc.yingfc" + formats: null colors: bg: "#2E2E2E" fg: "#E6E6E6" diff --git a/themes/uvadark-rahul-fork.yaml b/themes/uvadark-rahul-fork.yaml deleted file mode 100644 index 92f5cfc7..00000000 --- a/themes/uvadark-rahul-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Uvadark - Rahul - Fork" -source: - marketplace_id: "syk.bluered" - version: "0.0.1" - installs: 52 - rating: 0 - ratings: 0 - author: "syk" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=syk.bluered" -colors: - bg: "#000000" - fg: "#3AA1FD" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 49.5 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/v-id-contrast.yaml b/themes/v-id-contrast.yaml index 69aa5680..b10ef3b8 100644 --- a/themes/v-id-contrast.yaml +++ b/themes/v-id-contrast.yaml @@ -8,6 +8,7 @@ source: author: "m1guelsb" repo: "https://github.com/m1guelsb/void-theme" url: "https://marketplace.visualstudio.com/items?itemName=m1guelsb.void-dark-theme" + formats: null colors: bg: "#000000" fg: "#A3A3A3" diff --git a/themes/v-id-soft.yaml b/themes/v-id-soft.yaml index eed3a8be..f28cb836 100644 --- a/themes/v-id-soft.yaml +++ b/themes/v-id-soft.yaml @@ -8,6 +8,7 @@ source: author: "m1guelsb" repo: "https://github.com/m1guelsb/void-theme" url: "https://marketplace.visualstudio.com/items?itemName=m1guelsb.void-dark-theme" + formats: null colors: bg: "#191A22" fg: "#808080" diff --git a/themes/v01d-theme-alternative.yaml b/themes/v01d-theme-alternative.yaml index d2b79c49..dd2d9bfc 100644 --- a/themes/v01d-theme-alternative.yaml +++ b/themes/v01d-theme-alternative.yaml @@ -8,6 +8,7 @@ source: author: "victorcarrillo.dev" repo: "https://github.com/victorcarrillodev/V01D-Theme" url: "https://marketplace.visualstudio.com/items?itemName=victordev079.v01d-theme" + formats: null colors: bg: "#05040A" fg: "#BCBCBC" diff --git a/themes/v01d-theme.yaml b/themes/v01d-theme.yaml index 00cf3025..eba64812 100644 --- a/themes/v01d-theme.yaml +++ b/themes/v01d-theme.yaml @@ -8,6 +8,7 @@ source: author: "victorcarrillo.dev" repo: "https://github.com/victorcarrillodev/V01D-Theme" url: "https://marketplace.visualstudio.com/items?itemName=victordev079.v01d-theme" + formats: null colors: bg: "#05040A" fg: "#A5A5A5" diff --git a/themes/v7.yaml b/themes/v7.yaml index c9525deb..34e4a942 100644 --- a/themes/v7.yaml +++ b/themes/v7.yaml @@ -8,6 +8,7 @@ source: author: "Tazmaniaco" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Tazmaniaco.Tema" + formats: null colors: bg: "#050505" fg: "#B8B8B8" diff --git a/themes/vaatu.yaml b/themes/vaatu.yaml index 377031b1..02c73d60 100644 --- a/themes/vaatu.yaml +++ b/themes/vaatu.yaml @@ -8,6 +8,8 @@ source: author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" + formats: + nvim: "https://raw.githubusercontent.com/volskaya/irrelevant/main/extensions/neovim/lua/irrelevant/colors.lua" colors: bg: "#1C1C1C" fg: "#FFFFFF" diff --git a/themes/vagalume-dev.yaml b/themes/vagalume-dev.yaml index ff10bf75..43dc79b4 100644 --- a/themes/vagalume-dev.yaml +++ b/themes/vagalume-dev.yaml @@ -8,6 +8,7 @@ source: author: "Vagalume Dev" repo: "https://github.com/vagalumedev/vagalume-dev-vscode" url: "https://marketplace.visualstudio.com/items?itemName=vagalumedev.vagalume-dev-theme" + formats: null colors: bg: "#040402" fg: "#FBBA00" diff --git a/themes/vagruvboxtheme-color-theme.yaml b/themes/vagruvboxtheme-color-theme.yaml deleted file mode 100644 index 9b7a1add..00000000 --- a/themes/vagruvboxtheme-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "VAGruvboxTheme-color-theme" -source: - marketplace_id: "MinchCoder.visual-assist-gruvbox-theme" - version: "0.7.11" - installs: 377 - rating: 5 - ratings: 1 - author: "Minch Coder" - repo: "https://github.com/Minchh/vscode-gruvbox-visualassist-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MinchCoder.visual-assist-gruvbox-theme" -colors: - bg: "#1D2021" - fg: "#EBDBB2" - black: "#1E1E1E" - red: "#CC241D" - green: "#87AD72" - yellow: "#CEA800" - blue: "#569CD6" - magenta: "#D8A0DF" - cyan: "#4CE2E2" - white: "#EEEEEE" - brightBlack: "#131313" - brightRed: "#FB4934" - brightGreen: "#B5CEA8" - brightYellow: "#FFD700" - brightBlue: "#7ABCF3" - brightMagenta: "#F0C2F7" - brightCyan: "#9FFFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 83.3 - black: 0 - red: 24.2 - green: 50.1 - yellow: 55.4 - blue: 44 - magenta: 59.3 - cyan: 75 - white: 94.7 - brightBlack: 0 - brightRed: 39.1 - brightGreen: 70.4 - brightYellow: 82.2 - brightBlue: 60.8 - brightMagenta: 76.7 - brightCyan: 95.3 - brightWhite: 105.8 diff --git a/themes/vague-neovim-theme-extended-light.yaml b/themes/vague-neovim-theme-extended-light.yaml deleted file mode 100644 index 231890c5..00000000 --- a/themes/vague-neovim-theme-extended-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vague neovim Theme Extended Light" -source: - marketplace_id: "EmmettHintz.Kanagawa-Vague" - version: "0.1.6" - installs: 1199 - rating: 0 - ratings: 0 - author: "Emmett Hintz" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.Kanagawa-Vague" -colors: - bg: "#FDFDFE" - fg: "#141415" - black: "#26233A" - red: "#DF6882" - green: "#8CB66D" - yellow: "#F3BE7C" - blue: "#6E94B2" - magenta: "#C48282" - cyan: "#7E98E8" - white: "#E0DEF4" - brightBlack: "#908CAA" - brightRed: "#DF6882" - brightGreen: "#8CB66D" - brightYellow: "#F3BE7C" - brightBlue: "#6E94B2" - brightMagenta: "#C48282" - brightCyan: "#7E98E8" - brightWhite: "#E0DEF4" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 103.9 - black: 100.9 - red: 58.2 - green: 44.7 - yellow: 28.6 - blue: 58.1 - magenta: 56.2 - cyan: 52.4 - white: 14.6 - brightBlack: 58.3 - brightRed: 58.2 - brightGreen: 44.7 - brightYellow: 28.6 - brightBlue: 58.1 - brightMagenta: 56.2 - brightCyan: 52.4 - brightWhite: 14.6 diff --git a/themes/vague-neovim-theme-extended.yaml b/themes/vague-neovim-theme-extended.yaml deleted file mode 100644 index 3800c0c7..00000000 --- a/themes/vague-neovim-theme-extended.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vague neovim Theme Extended" -source: - marketplace_id: "EmmettHintz.Kanagawa-Vague" - version: "0.1.6" - installs: 1199 - rating: 0 - ratings: 0 - author: "Emmett Hintz" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.Kanagawa-Vague" -colors: - bg: "#141415" - fg: "#CDCDCD" - black: "#26233A" - red: "#DF6882" - green: "#8CB66D" - yellow: "#F3BE7C" - blue: "#6E94B2" - magenta: "#C48282" - cyan: "#7E98E8" - white: "#E0DEF4" - brightBlack: "#908CAA" - brightRed: "#DF6882" - brightGreen: "#8CB66D" - brightYellow: "#F3BE7C" - brightBlue: "#6E94B2" - brightMagenta: "#C48282" - brightCyan: "#7E98E8" - brightWhite: "#E0DEF4" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 75.5 - black: 0 - red: 41.6 - green: 55.5 - yellow: 72.3 - blue: 41.7 - magenta: 43.7 - cyan: 47.5 - white: 87.2 - brightBlack: 41.5 - brightRed: 41.6 - brightGreen: 55.5 - brightYellow: 72.3 - brightBlue: 41.7 - brightMagenta: 43.7 - brightCyan: 47.5 - brightWhite: 87.2 diff --git a/themes/vague.yaml b/themes/vague.yaml deleted file mode 100644 index 5a143928..00000000 --- a/themes/vague.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vague" -source: - marketplace_id: "xavier-castro.vague-windsurf" - version: "1.0.0" - installs: 6 - rating: 0 - ratings: 0 - author: "Xavier Castro" - repo: "https://github.com/xavier-castro/vague-windsurf" - url: "https://marketplace.visualstudio.com/items?itemName=xavier-castro.vague-windsurf" -colors: - bg: "#141415" - fg: "#CDCDCD" - black: "#252530" - red: "#D8647E" - green: "#7FA563" - yellow: "#F3BE7C" - blue: "#6E94B2" - magenta: "#BB9DBD" - cyan: "#AEAED1" - white: "#CDCDCD" - brightBlack: "#606079" - brightRed: "#E08398" - brightGreen: "#99B782" - brightYellow: "#F5CB96" - brightBlue: "#8BA9C1" - brightMagenta: "#C9B1CA" - brightCyan: "#BEBEDA" - brightWhite: "#D7D7D7" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 75.5 - black: 0 - red: 39.2 - green: 47.1 - yellow: 72.3 - blue: 41.7 - magenta: 53.6 - cyan: 59.3 - white: 75.5 - brightBlack: 20.7 - brightRed: 49.5 - brightGreen: 57.7 - brightYellow: 78.5 - brightBlue: 52.9 - brightMagenta: 63.5 - brightCyan: 68 - brightWhite: 81.6 diff --git a/themes/valary.yaml b/themes/valary.yaml index 3a89b1ff..8ef5e024 100644 --- a/themes/valary.yaml +++ b/themes/valary.yaml @@ -8,6 +8,7 @@ source: author: "Fahad Ashraf Chaudhry" repo: "https://github.com/fahadachaudhry/valary-vscode" url: "https://marketplace.visualstudio.com/items?itemName=fahadachaudhry.valary" + formats: null colors: bg: "#0F0F0F" fg: "#5D7075" diff --git a/themes/valkthor-dark-theme.yaml b/themes/valkthor-dark-theme.yaml index 1e90553a..09fa6ced 100644 --- a/themes/valkthor-dark-theme.yaml +++ b/themes/valkthor-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Valkthor" repo: "https://github.com/Valkthor/ValkthorTheme-vsCode" url: "https://marketplace.visualstudio.com/items?itemName=Valkthor.ValkthorTheme" + formats: null colors: bg: "#202020" fg: "#F2F2F8" diff --git a/themes/valley.yaml b/themes/valley.yaml deleted file mode 100644 index 7b49995f..00000000 --- a/themes/valley.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Valley" -source: - marketplace_id: "TimGrochowski.valley-vscode" - version: "0.4.0" - installs: 4889 - rating: 5 - ratings: 6 - author: "Tim Grochowski" - repo: "https://github.com/TimGr/valley-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=TimGrochowski.valley-vscode" -colors: - bg: "#1E1E1F" - fg: "#BFC7CF" - black: "#282829" - red: "#D66A81" - green: "#78B98A" - yellow: "#D8C67E" - blue: "#5B89DB" - magenta: "#DF91CA" - cyan: "#57B6CD" - white: "#FAFAFA" - brightBlack: "#656567" - brightRed: "#F59EB1" - brightGreen: "#A0E4B2" - brightYellow: "#F5E8B2" - brightBlue: "#91B7F8" - brightMagenta: "#FACCEE" - brightCyan: "#84DCF0" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 70.2 - black: 0 - red: 39.2 - green: 54.9 - yellow: 70.3 - blue: 37.7 - magenta: 54.6 - cyan: 54.3 - white: 102.7 - brightBlack: 20.8 - brightRed: 61.5 - brightGreen: 79 - brightYellow: 90.8 - brightBlue: 61 - brightMagenta: 82 - brightCyan: 75.8 - brightWhite: 102.7 diff --git a/themes/valorant-theme-darker.yaml b/themes/valorant-theme-darker.yaml deleted file mode 100644 index 935b0cb2..00000000 --- a/themes/valorant-theme-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Valorant Theme - Darker" -source: - marketplace_id: "TasnimulHasan.valorant-theme" - version: "4.2.4" - installs: 8382 - rating: 5 - ratings: 2 - author: "Tasnimul Hasan" - repo: "https://github.com/Tasnimul-Hasan/valorant-theme" - url: "https://marketplace.visualstudio.com/items?itemName=TasnimulHasan.valorant-theme" -colors: - bg: "#1D222B" - fg: "#D6E0E8" - black: "#687696" - red: "#E06C75" - green: "#75C074" - yellow: "#E5C07B" - blue: "#61AFEF" - magenta: "#9185E0" - cyan: "#56B6C2" - white: "#D6E0E8" - brightBlack: "#808EAA" - brightRed: "#EF5350" - brightGreen: "#75C074" - brightYellow: "#E49A26" - brightBlue: "#61AFEF" - brightMagenta: "#C678DD" - brightCyan: "#87CBFF" - brightWhite: "#F9FAFB" -meta: - mode: "dark" - accent: "orange" - hue: 262 - pair: null - contrast: - fg: 84.6 - black: 27.7 - red: 40.7 - green: 56.6 - yellow: 69.2 - blue: 53.3 - magenta: 40.7 - cyan: 53.2 - white: 84.6 - brightBlack: 39 - brightRed: 37.9 - brightGreen: 56.6 - brightYellow: 53.7 - brightBlue: 53.3 - brightMagenta: 43.7 - brightCyan: 68.6 - brightWhite: 102.1 diff --git a/themes/valorant-theme-remasterd.yaml b/themes/valorant-theme-remasterd.yaml deleted file mode 100644 index 5dc4ebc9..00000000 --- a/themes/valorant-theme-remasterd.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Valorant Theme - Remasterd" -source: - marketplace_id: "TasnimulHasan.valorant-theme" - version: "4.2.4" - installs: 8382 - rating: 5 - ratings: 2 - author: "Tasnimul Hasan" - repo: "https://github.com/Tasnimul-Hasan/valorant-theme" - url: "https://marketplace.visualstudio.com/items?itemName=TasnimulHasan.valorant-theme" -colors: - bg: "#0F1923" - fg: "#C9D6DA" - black: "#617D8A" - red: "#E57373" - green: "#82C781" - yellow: "#E5C275" - blue: "#64B5F6" - magenta: "#B39AFD" - cyan: "#4DD0E1" - white: "#C9D6DA" - brightBlack: "#95AAB4" - brightRed: "#EF5350" - brightGreen: "#82C781" - brightYellow: "#E89E30" - brightBlue: "#64B5F6" - brightMagenta: "#D792CD" - brightCyan: "#87CBFF" - brightWhite: "#F2F2F2" -meta: - mode: "dark" - accent: "orange" - hue: 249 - pair: null - contrast: - fg: 79.1 - black: 30.3 - red: 44.6 - green: 62.3 - yellow: 71.1 - blue: 57.6 - magenta: 54.8 - cyan: 67.3 - white: 79.1 - brightBlack: 53.2 - brightRed: 39.2 - brightGreen: 62.3 - brightYellow: 57.1 - brightBlue: 57.6 - brightMagenta: 54.4 - brightCyan: 69.8 - brightWhite: 98.2 diff --git a/themes/vampurr.yaml b/themes/vampurr.yaml index bc95f785..b252009b 100644 --- a/themes/vampurr.yaml +++ b/themes/vampurr.yaml @@ -1,4 +1,4 @@ -name: "vampurr" +name: "Vampurr" source: marketplace_id: "Sajjad.vampurr" version: "1.2.0" @@ -8,6 +8,8 @@ source: author: "Sajjad" repo: "https://github.com/sajadabedi/vampurr" url: "https://marketplace.visualstudio.com/items?itemName=Sajjad.vampurr" + formats: + sublime: "https://raw.githubusercontent.com/sajadabedi/vampurr/main/themes/Vampurr.tmTheme" colors: bg: "#21212C" fg: "#F8F8F2" diff --git a/themes/van-gogh-theme.yaml b/themes/van-gogh-theme.yaml index f2b6e40c..59b64286 100644 --- a/themes/van-gogh-theme.yaml +++ b/themes/van-gogh-theme.yaml @@ -8,6 +8,7 @@ source: author: "Kyaw Zin Htet" repo: "https://github.com/kyawzinhtett/Van-Gogh-Theme" url: "https://marketplace.visualstudio.com/items?itemName=kyawzinhtet.van-gogh" + formats: null colors: bg: "#0A192F" fg: "#F2E2A4" diff --git a/themes/vanguard-strike.yaml b/themes/vanguard-strike.yaml deleted file mode 100644 index 71c194a3..00000000 --- a/themes/vanguard-strike.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vanguard-Strike" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#090504" - fg: "#F5ECEB" - black: "#090504" - red: "#DB0000" - green: "#29C3A0" - yellow: "#D29922" - blue: "#FD3A37" - magenta: "#FD3A37" - cyan: "#29C3A0" - white: "#F5ECEB" - brightBlack: "#090504" - brightRed: "#DB0000" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#FD3A37" - brightMagenta: "#FD3A37" - brightCyan: "#29C3A0" - brightWhite: "#F5ECEB" -meta: - mode: "dark" - accent: "orange" - hue: 38 - pair: null - contrast: - fg: 96.6 - black: 0 - red: 28.7 - green: 58.6 - yellow: 52.7 - blue: 39.8 - magenta: 39.8 - cyan: 58.6 - white: 96.6 - brightBlack: 0 - brightRed: 28.7 - brightGreen: 58.6 - brightYellow: 52.7 - brightBlue: 39.8 - brightMagenta: 39.8 - brightCyan: 58.6 - brightWhite: 96.6 diff --git a/themes/vanilla-jade.yaml b/themes/vanilla-jade.yaml deleted file mode 100644 index d6659621..00000000 --- a/themes/vanilla-jade.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vanilla-jade" -source: - marketplace_id: "danjoa.cdr4vsc" - version: "4.2.7" - installs: 5204 - rating: 0 - ratings: 0 - author: "danjoa" - repo: "private" - url: "https://marketplace.visualstudio.com/items?itemName=danjoa.cdr4vsc" -colors: - bg: "#FFFFFF" - fg: "#222222" - black: "#073642" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#586E75" - brightRed: "#CB4B16" - brightGreen: "#586E75" - brightYellow: "#657B83" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#93A1A1" - brightWhite: "#FDF6E3" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.9 - black: 99 - red: 70.5 - green: 59 - yellow: 59.1 - blue: 63.9 - magenta: 70.3 - cyan: 58.3 - white: 11.1 - brightBlack: 76.8 - brightRed: 71 - brightGreen: 76.8 - brightYellow: 70.9 - brightBlue: 58.8 - brightMagenta: 70.2 - brightCyan: 52 - brightWhite: 0 diff --git a/themes/vanilla.yaml b/themes/vanilla.yaml deleted file mode 100644 index f19ed2c6..00000000 --- a/themes/vanilla.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vanilla" -source: - marketplace_id: "danjoa.cdr4vsc" - version: "4.2.7" - installs: 5204 - rating: 0 - ratings: 0 - author: "danjoa" - repo: "private" - url: "https://marketplace.visualstudio.com/items?itemName=danjoa.cdr4vsc" -colors: - bg: "#FCFCFC" - fg: "#222222" - black: "#073642" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#586E75" - brightRed: "#CB4B16" - brightGreen: "#586E75" - brightYellow: "#657B83" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#93A1A1" - brightWhite: "#FDF6E3" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 101.1 - black: 97.2 - red: 68.7 - green: 57.2 - yellow: 57.3 - blue: 62.1 - magenta: 68.5 - cyan: 56.5 - white: 9.3 - brightBlack: 75 - brightRed: 69.2 - brightGreen: 75 - brightYellow: 69.1 - brightBlue: 57 - brightMagenta: 68.4 - brightCyan: 50.2 - brightWhite: 0 diff --git a/themes/vapor.yaml b/themes/vapor.yaml index d36ee420..4902a02d 100644 --- a/themes/vapor.yaml +++ b/themes/vapor.yaml @@ -8,6 +8,7 @@ source: author: "Swerve" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Swerve.vapor-color-theme" + formats: null colors: bg: "#070825" fg: "#46BDFF" diff --git a/themes/vaporizer-alice-dark.yaml b/themes/vaporizer-alice-dark.yaml deleted file mode 100644 index d53852cd..00000000 --- a/themes/vaporizer-alice-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Alice Dark" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#414141" - fg: "#7ADAEC" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: "Vaporizer Alice Light" - contrast: - fg: 65.7 - black: 10.2 - red: 17.6 - green: 42.6 - yellow: 33.7 - blue: 0 - magenta: 17 - cyan: 31 - white: 0 - brightBlack: 12.9 - brightRed: 17.6 - brightGreen: 51.3 - brightYellow: 51.2 - brightBlue: 0 - brightMagenta: 17 - brightCyan: 31 - brightWhite: 43.4 diff --git a/themes/vaporizer-alice-light.yaml b/themes/vaporizer-alice-light.yaml deleted file mode 100644 index e046c2d5..00000000 --- a/themes/vaporizer-alice-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Alice Light" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#FFFFFF" - fg: "#7ADAEC" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Vaporizer Alice Dark" - contrast: - fg: 27.1 - black: 106 - red: 74 - green: 49.2 - yellow: 57.9 - blue: 86.1 - magenta: 74.6 - cyan: 60.6 - white: 85.9 - brightBlack: 78.8 - brightRed: 74 - brightGreen: 40.9 - brightYellow: 40.9 - brightBlue: 86.1 - brightMagenta: 74.6 - brightCyan: 60.6 - brightWhite: 48.5 diff --git a/themes/vaporizer-ava-light.yaml b/themes/vaporizer-ava-light.yaml deleted file mode 100644 index 824642b4..00000000 --- a/themes/vaporizer-ava-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Ava Light" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#FFFFFF" - fg: "#CBC4FF" - black: "#000000" - red: "#FF5E8B" - green: "#00BC00" - yellow: "#E2BF38" - blue: "#2DA7D7" - magenta: "#FF59FF" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#FB80A2" - brightGreen: "#89E471" - brightYellow: "#EECC45" - brightBlue: "#5AD0FF" - brightMagenta: "#FF9BFF" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 28.1 - black: 106 - red: 54.5 - green: 49.2 - yellow: 32.9 - blue: 52.8 - magenta: 49.5 - cyan: 60.6 - white: 85.9 - brightBlack: 78.8 - brightRed: 47 - brightGreen: 25.7 - brightYellow: 25.9 - brightBlue: 32.1 - brightMagenta: 34.4 - brightCyan: 60.6 - brightWhite: 48.5 diff --git a/themes/vaporizer-batman-dark-2022.yaml b/themes/vaporizer-batman-dark-2022.yaml deleted file mode 100644 index 91a09578..00000000 --- a/themes/vaporizer-batman-dark-2022.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Batman Dark 2022" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#000000" - fg: "#D1D1D1" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.7 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/vaporizer-batman-dark-night.yaml b/themes/vaporizer-batman-dark-night.yaml deleted file mode 100644 index d096a625..00000000 --- a/themes/vaporizer-batman-dark-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Batman Dark Night" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#1B1B1B" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 79 - black: 0 - red: 26.3 - green: 52.6 - yellow: 85.2 - blue: 27 - magenta: 29.3 - cyan: 47.1 - white: 89.6 - brightBlack: 21.6 - brightRed: 38.1 - brightGreen: 63.1 - brightYellow: 95.2 - brightBlue: 39.6 - brightMagenta: 44.9 - brightCyan: 54.9 - brightWhite: 89.6 diff --git a/themes/vaporizer-cloudy-light.yaml b/themes/vaporizer-cloudy-light.yaml deleted file mode 100644 index 323db9b4..00000000 --- a/themes/vaporizer-cloudy-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Cloudy Light" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#FFFFFF" - fg: "#A9DBDE" - black: "#4F4F4F" - red: "#FF8181" - green: "#2FF5AB" - yellow: "#E2C421" - blue: "#53C0F5" - magenta: "#FD95FD" - cyan: "#4ADBFF" - white: "#555555" - brightBlack: "#A1A1A1" - brightRed: "#FB9393" - brightGreen: "#8DF9BC" - brightYellow: "#FBD06B" - brightBlue: "#87BFFD" - brightMagenta: "#FFB2FF" - brightCyan: "#8BE8FF" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "teal" - hue: null - pair: null - contrast: - fg: 23.9 - black: 88.4 - red: 47 - green: 19.7 - yellow: 31.1 - blue: 39.7 - magenta: 36.6 - cyan: 27.8 - white: 85.9 - brightBlack: 50.5 - brightRed: 42.3 - brightGreen: 13.7 - brightYellow: 21.9 - brightBlue: 36.8 - brightMagenta: 27.2 - brightCyan: 18.9 - brightWhite: 48.5 diff --git a/themes/vaporizer-cobalt-dark.yaml b/themes/vaporizer-cobalt-dark.yaml deleted file mode 100644 index 11b4bdea..00000000 --- a/themes/vaporizer-cobalt-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Cobalt Dark" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#104855" - fg: "#FF7815" - black: "#362F2F" - red: "#FF5454" - green: "#0DBC79" - yellow: "#E59C10" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#2E2E2E" - brightRed: "#FF7171" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 217 - pair: null - contrast: - fg: 40.6 - black: 0 - red: 33.6 - green: 43.4 - yellow: 46.3 - blue: 17.8 - magenta: 20.2 - cyan: 38 - white: 97.3 - brightBlack: 0 - brightRed: 40 - brightGreen: 53.9 - brightYellow: 86 - brightBlue: 30.4 - brightMagenta: 35.8 - brightCyan: 45.8 - brightWhite: 80.4 diff --git a/themes/vaporizer-crescent-dark.yaml b/themes/vaporizer-crescent-dark.yaml deleted file mode 100644 index 1eb26ad6..00000000 --- a/themes/vaporizer-crescent-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Crescent Dark" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#262947" - fg: "#FF7815" - black: "#362F2F" - red: "#FF5454" - green: "#0DBC79" - yellow: "#E59C10" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#2E2E2E" - brightRed: "#FF7171" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 278 - pair: null - contrast: - fg: 47 - black: 0 - red: 40 - green: 49.8 - yellow: 52.7 - blue: 24.3 - magenta: 26.6 - cyan: 44.4 - white: 103.7 - brightBlack: 0 - brightRed: 46.4 - brightGreen: 60.4 - brightYellow: 92.5 - brightBlue: 36.8 - brightMagenta: 42.2 - brightCyan: 52.2 - brightWhite: 86.9 diff --git a/themes/vaporizer-dark-cherry.yaml b/themes/vaporizer-dark-cherry.yaml deleted file mode 100644 index b1ea9549..00000000 --- a/themes/vaporizer-dark-cherry.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Cherry" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#333333" - fg: "#DC2929" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 24.5 - black: 0 - red: 21.9 - green: 48.2 - yellow: 80.8 - blue: 22.6 - magenta: 24.9 - cyan: 42.7 - white: 85.2 - brightBlack: 17.2 - brightRed: 33.7 - brightGreen: 58.7 - brightYellow: 90.8 - brightBlue: 35.1 - brightMagenta: 40.5 - brightCyan: 50.5 - brightWhite: 85.2 diff --git a/themes/vaporizer-dark-coffee.yaml b/themes/vaporizer-dark-coffee.yaml deleted file mode 100644 index dd7c117e..00000000 --- a/themes/vaporizer-dark-coffee.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Coffee" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#24272D" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 77.2 - black: 0 - red: 24.5 - green: 50.8 - yellow: 83.4 - blue: 25.2 - magenta: 27.5 - cyan: 45.3 - white: 87.8 - brightBlack: 19.8 - brightRed: 36.3 - brightGreen: 61.3 - brightYellow: 93.4 - brightBlue: 37.8 - brightMagenta: 43.1 - brightCyan: 53.2 - brightWhite: 87.8 diff --git a/themes/vaporizer-dark-cool-1.yaml b/themes/vaporizer-dark-cool-1.yaml deleted file mode 100644 index 45097f77..00000000 --- a/themes/vaporizer-dark-cool-1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Cool 1" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#24272F" - fg: "#8FC7D7" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 269 - pair: null - contrast: - fg: 64.4 - black: 0 - red: 24.4 - green: 50.7 - yellow: 83.3 - blue: 25.2 - magenta: 27.5 - cyan: 45.3 - white: 87.7 - brightBlack: 19.8 - brightRed: 36.3 - brightGreen: 61.3 - brightYellow: 93.4 - brightBlue: 37.7 - brightMagenta: 43.1 - brightCyan: 53.1 - brightWhite: 87.7 diff --git a/themes/vaporizer-dark-cool-2.yaml b/themes/vaporizer-dark-cool-2.yaml deleted file mode 100644 index 2512ab5b..00000000 --- a/themes/vaporizer-dark-cool-2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Cool 2" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#2E3440" - fg: "#8FC7D7" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 61.6 - black: 0 - red: 21.6 - green: 47.9 - yellow: 80.5 - blue: 22.4 - magenta: 24.7 - cyan: 42.5 - white: 84.9 - brightBlack: 17 - brightRed: 33.5 - brightGreen: 58.5 - brightYellow: 90.6 - brightBlue: 34.9 - brightMagenta: 40.3 - brightCyan: 50.3 - brightWhite: 84.9 diff --git a/themes/vaporizer-dark-cop.yaml b/themes/vaporizer-dark-cop.yaml deleted file mode 100644 index 5e19878f..00000000 --- a/themes/vaporizer-dark-cop.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Cop" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#26292D" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 76.9 - black: 0 - red: 24.1 - green: 50.4 - yellow: 83 - blue: 24.8 - magenta: 27.2 - cyan: 45 - white: 87.4 - brightBlack: 19.5 - brightRed: 36 - brightGreen: 61 - brightYellow: 93.1 - brightBlue: 37.4 - brightMagenta: 42.8 - brightCyan: 52.8 - brightWhite: 87.4 diff --git a/themes/vaporizer-dark-cyber-neon-1.yaml b/themes/vaporizer-dark-cyber-neon-1.yaml deleted file mode 100644 index 5125effc..00000000 --- a/themes/vaporizer-dark-cyber-neon-1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Cyber Neon 1" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#060002" - fg: "#21B8F2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#F41459" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#F54B7F" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "red" - hue: 354 - pair: null - contrast: - fg: 57.7 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 35.7 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 41.5 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/vaporizer-dark-cyber-neon-2.yaml b/themes/vaporizer-dark-cyber-neon-2.yaml deleted file mode 100644 index 94572daf..00000000 --- a/themes/vaporizer-dark-cyber-neon-2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Cyber Neon 2" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#150309" - fg: "#21B8F2" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#F41459" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#F54B7F" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "red" - hue: 358 - pair: null - contrast: - fg: 57.5 - black: 0 - red: 27.5 - green: 53.8 - yellow: 86.4 - blue: 28.2 - magenta: 35.5 - cyan: 48.4 - white: 90.8 - brightBlack: 22.8 - brightRed: 39.4 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.8 - brightMagenta: 41.3 - brightCyan: 56.2 - brightWhite: 90.8 diff --git a/themes/vaporizer-dark-cyber-neon-3.yaml b/themes/vaporizer-dark-cyber-neon-3.yaml deleted file mode 100644 index 1b5febc0..00000000 --- a/themes/vaporizer-dark-cyber-neon-3.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Cyber Neon 3" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#100015" - fg: "#21B8F2" - black: "#D300FF" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 320 - pair: null - contrast: - fg: 57.5 - black: 36.7 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.3 - magenta: 30.6 - cyan: 48.4 - white: 90.9 - brightBlack: 22.9 - brightRed: 39.4 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.9 - brightMagenta: 46.2 - brightCyan: 56.2 - brightWhite: 90.9 diff --git a/themes/vaporizer-dark-ivy.yaml b/themes/vaporizer-dark-ivy.yaml deleted file mode 100644 index eb80ac5a..00000000 --- a/themes/vaporizer-dark-ivy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Ivy" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#0A1016" - fg: "#BA5D59" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 249 - pair: null - contrast: - fg: 31.3 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 28 - magenta: 30.4 - cyan: 48.2 - white: 90.6 - brightBlack: 22.6 - brightRed: 39.2 - brightGreen: 64.1 - brightYellow: 96.2 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/vaporizer-dark-joker.yaml b/themes/vaporizer-dark-joker.yaml deleted file mode 100644 index 94b42a08..00000000 --- a/themes/vaporizer-dark-joker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Joker" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#1E1E1E" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.7 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/vaporizer-dark-matrix-2.yaml b/themes/vaporizer-dark-matrix-2.yaml deleted file mode 100644 index 697eeb5a..00000000 --- a/themes/vaporizer-dark-matrix-2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Matrix 2" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#000201" - fg: "#D2FFC2" - black: "#86F500" - red: "#58AB05" - green: "#009232" - yellow: "#488A07" - blue: "#1F7D1D" - magenta: "#0EE261" - cyan: "#50A322" - white: "#E5E5E5" - brightBlack: "#AAF26D" - brightRed: "#447134" - brightGreen: "#009F20" - brightYellow: "#60E814" - brightBlue: "#69BC67" - brightMagenta: "#82D670" - brightCyan: "#9ED586" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: 165 - pair: null - contrast: - fg: 99.6 - black: 84.9 - red: 46.9 - green: 34.5 - yellow: 32.4 - blue: 26.2 - magenta: 71.9 - cyan: 43.1 - white: 91 - brightBlack: 86.9 - brightRed: 23.2 - brightGreen: 39.8 - brightYellow: 76.1 - brightBlue: 56.2 - brightMagenta: 70 - brightCyan: 72.3 - brightWhite: 91 diff --git a/themes/vaporizer-dark-monterey.yaml b/themes/vaporizer-dark-monterey.yaml deleted file mode 100644 index 62a97955..00000000 --- a/themes/vaporizer-dark-monterey.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Monterey" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#2C0F49" - fg: "#2A8296" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 302 - pair: null - contrast: - fg: 28.9 - black: 0 - red: 25.4 - green: 51.7 - yellow: 84.3 - blue: 26.1 - magenta: 28.5 - cyan: 46.3 - white: 88.7 - brightBlack: 20.7 - brightRed: 37.3 - brightGreen: 62.2 - brightYellow: 94.3 - brightBlue: 38.7 - brightMagenta: 44.1 - brightCyan: 54.1 - brightWhite: 88.7 diff --git a/themes/vaporizer-dark-painting.yaml b/themes/vaporizer-dark-painting.yaml deleted file mode 100644 index d8ecf4d3..00000000 --- a/themes/vaporizer-dark-painting.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Painting" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#1E1E1E" - fg: "#7D2C05" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 9.6 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/vaporizer-dark-pansy.yaml b/themes/vaporizer-dark-pansy.yaml deleted file mode 100644 index 3216af63..00000000 --- a/themes/vaporizer-dark-pansy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Pansy" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#3B3551" - fg: "#744290" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 294 - pair: null - contrast: - fg: 9.8 - black: 0 - red: 20.1 - green: 46.4 - yellow: 79 - blue: 20.8 - magenta: 23.2 - cyan: 41 - white: 83.4 - brightBlack: 15.5 - brightRed: 32 - brightGreen: 56.9 - brightYellow: 89 - brightBlue: 33.4 - brightMagenta: 38.8 - brightCyan: 48.8 - brightWhite: 83.4 diff --git a/themes/vaporizer-dark-red.yaml b/themes/vaporizer-dark-red.yaml deleted file mode 100644 index a6fccde8..00000000 --- a/themes/vaporizer-dark-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Red" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#1D2024" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#8E7F7F" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 105.8 - black: 0 - red: 25.6 - green: 51.9 - yellow: 84.5 - blue: 26.4 - magenta: 28.7 - cyan: 46.5 - white: 33.8 - brightBlack: 21 - brightRed: 37.5 - brightGreen: 62.5 - brightYellow: 94.6 - brightBlue: 38.9 - brightMagenta: 44.3 - brightCyan: 54.3 - brightWhite: 105.8 diff --git a/themes/vaporizer-dark-stabilo.yaml b/themes/vaporizer-dark-stabilo.yaml deleted file mode 100644 index cdad5089..00000000 --- a/themes/vaporizer-dark-stabilo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Stabilo" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#26292D" - fg: "#606C38" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 19.8 - black: 0 - red: 24.1 - green: 50.4 - yellow: 83 - blue: 24.8 - magenta: 27.2 - cyan: 45 - white: 87.4 - brightBlack: 19.5 - brightRed: 36 - brightGreen: 61 - brightYellow: 93.1 - brightBlue: 37.4 - brightMagenta: 42.8 - brightCyan: 52.8 - brightWhite: 87.4 diff --git a/themes/vaporizer-dark-turquoise.yaml b/themes/vaporizer-dark-turquoise.yaml deleted file mode 100644 index 0e829575..00000000 --- a/themes/vaporizer-dark-turquoise.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Dark Turquoise" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#191919" - fg: "#9BC793" - black: "#000000" - red: "#CD3131" - green: "#00BC64" - yellow: "#949800" - blue: "#5F9FE6" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#00BC64" - brightYellow: "#B5BA00" - brightBlue: "#3F75B0" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: "Vaporizer Turquoise Light" - contrast: - fg: 64.8 - black: 0 - red: 26.5 - green: 52.3 - yellow: 42.6 - blue: 47.4 - magenta: 25.9 - cyan: 39.9 - white: 14.9 - brightBlack: 21.8 - brightRed: 26.5 - brightGreen: 52.3 - brightYellow: 60.1 - brightBlue: 27.4 - brightMagenta: 25.9 - brightCyan: 39.9 - brightWhite: 52.3 diff --git a/themes/vaporizer-epic-red-dark.yaml b/themes/vaporizer-epic-red-dark.yaml deleted file mode 100644 index 6c9c1efa..00000000 --- a/themes/vaporizer-epic-red-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Epic Red Dark" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#212326" - fg: "#FFFFFF" - black: "#5A5959" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BF95F9" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 105.3 - black: 15.2 - red: 25.2 - green: 51.5 - yellow: 84.1 - blue: 25.9 - magenta: 53 - cyan: 46 - white: 88.5 - brightBlack: 20.5 - brightRed: 37 - brightGreen: 62 - brightYellow: 94.1 - brightBlue: 38.5 - brightMagenta: 43.8 - brightCyan: 53.9 - brightWhite: 88.5 diff --git a/themes/vaporizer-fonc-dark.yaml b/themes/vaporizer-fonc-dark.yaml deleted file mode 100644 index 21e7b71b..00000000 --- a/themes/vaporizer-fonc-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Foncé Dark" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#191919" - fg: "#DEDEDE" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 85.4 - black: 0 - red: 26.5 - green: 52.8 - yellow: 85.4 - blue: 27.2 - magenta: 29.5 - cyan: 47.3 - white: 89.8 - brightBlack: 21.8 - brightRed: 38.3 - brightGreen: 63.3 - brightYellow: 95.4 - brightBlue: 39.8 - brightMagenta: 45.2 - brightCyan: 55.2 - brightWhite: 89.8 diff --git a/themes/vaporizer-frozen-dark.yaml b/themes/vaporizer-frozen-dark.yaml deleted file mode 100644 index 05d27c85..00000000 --- a/themes/vaporizer-frozen-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Frozen Dark " -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#000000" - fg: "#1E92A5" - black: "#53839F" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#C2C2C2" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 37.7 - black: 33.6 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 69.8 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/vaporizer-golgi-dark.yaml b/themes/vaporizer-golgi-dark.yaml deleted file mode 100644 index fccf1fbb..00000000 --- a/themes/vaporizer-golgi-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Golgi Dark" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#333342" - fg: "#D4D4D4" - black: "#808080" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 285 - pair: null - contrast: - fg: 74.3 - black: 28.6 - red: 21.5 - green: 47.8 - yellow: 80.4 - blue: 22.2 - magenta: 24.6 - cyan: 42.4 - white: 84.8 - brightBlack: 16.8 - brightRed: 33.4 - brightGreen: 58.3 - brightYellow: 90.4 - brightBlue: 34.8 - brightMagenta: 40.2 - brightCyan: 50.2 - brightWhite: 84.8 diff --git a/themes/vaporizer-half-moon-dark.yaml b/themes/vaporizer-half-moon-dark.yaml deleted file mode 100644 index e28ac246..00000000 --- a/themes/vaporizer-half-moon-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Half-Moon Dark" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#0F1525" - fg: "#D4D4D4" - black: "#999898" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 268 - pair: null - contrast: - fg: 79.6 - black: 45.9 - red: 26.8 - green: 53.1 - yellow: 85.7 - blue: 27.5 - magenta: 29.9 - cyan: 47.7 - white: 90.1 - brightBlack: 22.1 - brightRed: 38.7 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40.1 - brightMagenta: 45.5 - brightCyan: 55.5 - brightWhite: 90.1 diff --git a/themes/vaporizer-lemonade-light.yaml b/themes/vaporizer-lemonade-light.yaml deleted file mode 100644 index c2210fde..00000000 --- a/themes/vaporizer-lemonade-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Lemonade Light" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#F9F9F9" - fg: "#E0DFDF" - black: "#4F4F4F" - red: "#FF8181" - green: "#2FF5AB" - yellow: "#E2C421" - blue: "#53C0F5" - magenta: "#FD95FD" - cyan: "#4ADBFF" - white: "#000000" - brightBlack: "#A1A1A1" - brightRed: "#FB9393" - brightGreen: "#8DF9BC" - brightYellow: "#FBD06B" - brightBlue: "#87BFFD" - brightMagenta: "#FFB2FF" - brightCyan: "#8BE8FF" - brightWhite: "#000000" -meta: - mode: "light" - accent: "teal" - hue: null - pair: null - contrast: - fg: 12.7 - black: 84.8 - red: 43.4 - green: 16.1 - yellow: 27.5 - blue: 36.1 - magenta: 33 - cyan: 24.2 - white: 102.5 - brightBlack: 46.9 - brightRed: 38.7 - brightGreen: 10.1 - brightYellow: 18.3 - brightBlue: 33.2 - brightMagenta: 23.6 - brightCyan: 15.3 - brightWhite: 102.5 diff --git a/themes/vaporizer-lemonade-solarized-light.yaml b/themes/vaporizer-lemonade-solarized-light.yaml deleted file mode 100644 index 71d81f2c..00000000 --- a/themes/vaporizer-lemonade-solarized-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Lemonade Solarized Light" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#FFF9D8" - fg: "#E0DFDF" - black: "#4F4F4F" - red: "#FF8181" - green: "#2FF5AB" - yellow: "#E2C421" - blue: "#53C0F5" - magenta: "#FD95FD" - cyan: "#4ADBFF" - white: "#000000" - brightBlack: "#A1A1A1" - brightRed: "#FB9393" - brightGreen: "#8DF9BC" - brightYellow: "#FBD06B" - brightBlue: "#87BFFD" - brightMagenta: "#FFB2FF" - brightCyan: "#8BE8FF" - brightWhite: "#000000" -meta: - mode: "light" - accent: "teal" - hue: null - pair: null - contrast: - fg: 12.2 - black: 84.2 - red: 42.9 - green: 15.6 - yellow: 27 - blue: 35.6 - magenta: 32.5 - cyan: 23.7 - white: 101.9 - brightBlack: 46.4 - brightRed: 38.2 - brightGreen: 9.6 - brightYellow: 17.8 - brightBlue: 32.7 - brightMagenta: 23.1 - brightCyan: 14.8 - brightWhite: 101.9 diff --git a/themes/vaporizer-milk-light.yaml b/themes/vaporizer-milk-light.yaml deleted file mode 100644 index 9f97e700..00000000 --- a/themes/vaporizer-milk-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Milk Light" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#FFFCEA" - fg: "#666666" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#02ADC7" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#8E7F7F" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#91EEAD" - brightYellow: "#F5F543" - brightBlue: "#02ADE7" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 76.6 - black: 103.9 - red: 71.8 - green: 45.8 - yellow: 14.8 - blue: 49.4 - magenta: 68.8 - cyan: 51.1 - white: 63.6 - brightBlack: 76.6 - brightRed: 60 - brightGreen: 16.9 - brightYellow: 0 - brightBlue: 47.6 - brightMagenta: 53.3 - brightCyan: 43.5 - brightWhite: 0 diff --git a/themes/vaporizer-mini-blue-light.yaml b/themes/vaporizer-mini-blue-light.yaml deleted file mode 100644 index 533bbb08..00000000 --- a/themes/vaporizer-mini-blue-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Mini Blue Light" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#FFF8F7" - fg: "#B5C7FF" - black: "#000000" - red: "#FD7776" - green: "#8CE2AE" - yellow: "#FBEAA1" - blue: "#DFF2FE" - magenta: "#EAA3E0" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#FB908F" - brightGreen: "#8CE2AE" - brightYellow: "#FFF1B4" - brightBlue: "#EFFEFF" - brightMagenta: "#FBC3F3" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 26.1 - black: 102.7 - red: 46.9 - green: 21.6 - yellow: 0 - blue: 0 - magenta: 33.8 - cyan: 57.3 - white: 82.6 - brightBlack: 75.4 - brightRed: 39.9 - brightGreen: 21.6 - brightYellow: 0 - brightBlue: 0 - brightMagenta: 19.2 - brightCyan: 57.3 - brightWhite: 45.1 diff --git a/themes/vaporizer-minimalism-light.yaml b/themes/vaporizer-minimalism-light.yaml deleted file mode 100644 index addc6c8b..00000000 --- a/themes/vaporizer-minimalism-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Minimalism Light" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#F8F8F8" - fg: "#A9A9A9" - black: "#4F4F4F" - red: "#FF8181" - green: "#2FF5AB" - yellow: "#E2C421" - blue: "#53C0F5" - magenta: "#FD95FD" - cyan: "#4ADBFF" - white: "#555555" - brightBlack: "#A1A1A1" - brightRed: "#FB9393" - brightGreen: "#8DF9BC" - brightYellow: "#FBD06B" - brightBlue: "#87BFFD" - brightMagenta: "#FFB2FF" - brightCyan: "#8BE8FF" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "teal" - hue: null - pair: null - contrast: - fg: 42.2 - black: 84.2 - red: 42.8 - green: 15.5 - yellow: 26.9 - blue: 35.5 - magenta: 32.4 - cyan: 23.6 - white: 81.8 - brightBlack: 46.3 - brightRed: 38.1 - brightGreen: 9.5 - brightYellow: 17.8 - brightBlue: 32.6 - brightMagenta: 23 - brightCyan: 14.7 - brightWhite: 44.3 diff --git a/themes/vaporizer-modern-light.yaml b/themes/vaporizer-modern-light.yaml deleted file mode 100644 index 1886712d..00000000 --- a/themes/vaporizer-modern-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Modern Light" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#F5F4F8" - fg: "#D28EFF" - black: "#4F4F4F" - red: "#FF8181" - green: "#2FF5AB" - yellow: "#E2C421" - blue: "#53C0F5" - magenta: "#FD95FD" - cyan: "#4ADBFF" - white: "#555555" - brightBlack: "#A1A1A1" - brightRed: "#FB9393" - brightGreen: "#8DF9BC" - brightYellow: "#FBD06B" - brightBlue: "#87BFFD" - brightMagenta: "#FFB2FF" - brightCyan: "#06AED7" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "teal" - hue: null - pair: null - contrast: - fg: 39.3 - black: 82.1 - red: 40.7 - green: 13.5 - yellow: 24.8 - blue: 33.5 - magenta: 30.3 - cyan: 21.5 - white: 79.7 - brightBlack: 44.3 - brightRed: 36 - brightGreen: 7.4 - brightYellow: 15.7 - brightBlue: 30.5 - brightMagenta: 20.9 - brightCyan: 44.1 - brightWhite: 42.2 diff --git a/themes/vaporizer-moon-light-dark.yaml b/themes/vaporizer-moon-light-dark.yaml deleted file mode 100644 index ac970fb7..00000000 --- a/themes/vaporizer-moon-light-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Moon-Light Dark" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#1C2332" - fg: "#D4D4D4" - black: "#999898" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 265 - pair: null - contrast: - fg: 77.9 - black: 44.2 - red: 25.1 - green: 51.4 - yellow: 84 - blue: 25.8 - magenta: 28.2 - cyan: 46 - white: 88.4 - brightBlack: 20.4 - brightRed: 37 - brightGreen: 61.9 - brightYellow: 94 - brightBlue: 38.4 - brightMagenta: 43.8 - brightCyan: 53.8 - brightWhite: 88.4 diff --git a/themes/vaporizer-phosphoric-blue.yaml b/themes/vaporizer-phosphoric-blue.yaml deleted file mode 100644 index 62336861..00000000 --- a/themes/vaporizer-phosphoric-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Phosphoric Blue" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#EAEAEA" - fg: "#929190" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 46.1 - black: 93.6 - red: 61.5 - green: 36.8 - yellow: 45.5 - blue: 73.6 - magenta: 62.1 - cyan: 48.2 - white: 73.5 - brightBlack: 66.3 - brightRed: 61.5 - brightGreen: 28.5 - brightYellow: 28.5 - brightBlue: 73.6 - brightMagenta: 62.1 - brightCyan: 48.2 - brightWhite: 36 diff --git a/themes/vaporizer-purple-gray-dark.yaml b/themes/vaporizer-purple-gray-dark.yaml deleted file mode 100644 index 5d3b053b..00000000 --- a/themes/vaporizer-purple-gray-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Purple Gray Dark" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#2E3440" - fg: "#9D52E8" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 25.9 - black: 0 - red: 21.6 - green: 47.9 - yellow: 80.5 - blue: 22.4 - magenta: 24.7 - cyan: 42.5 - white: 84.9 - brightBlack: 17 - brightRed: 33.5 - brightGreen: 58.5 - brightYellow: 90.6 - brightBlue: 34.9 - brightMagenta: 40.3 - brightCyan: 50.3 - brightWhite: 84.9 diff --git a/themes/vaporizer-soft-light.yaml b/themes/vaporizer-soft-light.yaml deleted file mode 100644 index fc77c8b8..00000000 --- a/themes/vaporizer-soft-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Soft Light" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#F0F7FE" - fg: "#B4B4B4" - black: "#999999" - red: "#FDA9A9" - green: "#5ED55E" - yellow: "#CFC67D" - blue: "#76B2F5" - magenta: "#EA7EEA" - cyan: "#4EC8E6" - white: "#999999" - brightBlack: "#B8B3B3" - brightRed: "#F9A2A2" - brightGreen: "#89CF89" - brightYellow: "#D5C152" - brightBlue: "#9DCCFF" - brightMagenta: "#F59CF5" - brightCyan: "#51CAE8" - brightWhite: "#9D9D9D" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 35.2 - black: 49.3 - red: 29 - green: 30 - yellow: 26.4 - blue: 38.3 - magenta: 41.9 - cyan: 32 - white: 49.3 - brightBlack: 35.1 - brightRed: 32.2 - brightGreen: 29.4 - brightYellow: 28.4 - brightBlue: 24.3 - brightMagenta: 31.1 - brightCyan: 30.9 - brightWhite: 47.2 diff --git a/themes/vaporizer-splash-dark.yaml b/themes/vaporizer-splash-dark.yaml deleted file mode 100644 index 8d011ec2..00000000 --- a/themes/vaporizer-splash-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Splash Dark" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#211C22" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 321 - pair: null - contrast: - fg: 78.7 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 29 - cyan: 46.8 - white: 89.2 - brightBlack: 21.3 - brightRed: 37.8 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.6 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/vaporizer-turquoise-light.yaml b/themes/vaporizer-turquoise-light.yaml deleted file mode 100644 index a318d00c..00000000 --- a/themes/vaporizer-turquoise-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporizer Turquoise Light" -source: - marketplace_id: "Vaporizer.vaporizer-dark" - version: "2.1.9" - installs: 35746 - rating: 5 - ratings: 6 - author: "Vaporizer" - repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" -colors: - bg: "#F3F3F3" - fg: "#9BC793" - black: "#000000" - red: "#CD3131" - green: "#00BC64" - yellow: "#949800" - blue: "#5F9FE6" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#00BC64" - brightYellow: "#B5BA00" - brightBlue: "#3F75B0" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: "Vaporizer Dark Turquoise" - contrast: - fg: 29.3 - black: 98.9 - red: 66.8 - green: 41.3 - yellow: 50.8 - blue: 46.1 - magenta: 67.4 - cyan: 53.4 - white: 78.8 - brightBlack: 71.6 - brightRed: 66.8 - brightGreen: 41.3 - brightYellow: 33.8 - brightBlue: 65.9 - brightMagenta: 67.4 - brightCyan: 53.4 - brightWhite: 41.3 diff --git a/themes/vaporwave.yaml b/themes/vaporwave.yaml deleted file mode 100644 index 6657a7aa..00000000 --- a/themes/vaporwave.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vaporwave" -source: - marketplace_id: "andrei-isvoran96.vaporwave-theme" - version: "1.0.2" - installs: 75 - rating: 5 - ratings: 1 - author: "Andrei Isvoran" - repo: "https://github.com/andrei-isvoran96/vaporwave" - url: "https://marketplace.visualstudio.com/items?itemName=andrei-isvoran96.vaporwave-theme" -colors: - bg: "#1A1A2E" - fg: "#EAEAEA" - black: "#1A1A2E" - red: "#E94560" - green: "#7EFFC8" - yellow: "#FFD866" - blue: "#0F3460" - magenta: "#C792EA" - cyan: "#00FFF5" - white: "#EAEAEA" - brightBlack: "#A0A0A0" - brightRed: "#FF6B9D" - brightGreen: "#7EFFC8" - brightYellow: "#FFD866" - brightBlue: "#00FFF5" - brightMagenta: "#C792EA" - brightCyan: "#00FFF5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 283 - pair: null - contrast: - fg: 92.6 - black: 0 - red: 35.5 - green: 91.1 - yellow: 83.7 - blue: 0 - magenta: 53.2 - cyan: 90.1 - white: 92.6 - brightBlack: 49.3 - brightRed: 49 - brightGreen: 91.1 - brightYellow: 83.7 - brightBlue: 90.1 - brightMagenta: 53.2 - brightCyan: 90.1 - brightWhite: 106.3 diff --git a/themes/vaquita.yaml b/themes/vaquita.yaml index 41068c4f..19f71432 100644 --- a/themes/vaquita.yaml +++ b/themes/vaquita.yaml @@ -8,6 +8,7 @@ source: author: "anemones" repo: "https://github.com/radio-alice/anemone-colors" url: "https://marketplace.visualstudio.com/items?itemName=anemones.anemone-colors" + formats: null colors: bg: "#00106A" fg: "#F3FFDC" diff --git a/themes/varlet-dark.yaml b/themes/varlet-dark.yaml index a3aad07f..1e6c1458 100644 --- a/themes/varlet-dark.yaml +++ b/themes/varlet-dark.yaml @@ -8,6 +8,7 @@ source: author: "haoziqaq" repo: "https://github.com/varletjs/vscode-theme-varlet" url: "https://marketplace.visualstudio.com/items?itemName=haoziqaq.vscode-theme-varlet" + formats: null colors: bg: "#1E1E1E" fg: "#D4D4D4" diff --git a/themes/vase-with-twelve-sunflowers.yaml b/themes/vase-with-twelve-sunflowers.yaml deleted file mode 100644 index 84ebc260..00000000 --- a/themes/vase-with-twelve-sunflowers.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vase with Twelve Sunflowers" -source: - marketplace_id: "XadillaX.van-gogh-paintings" - version: "1.0.0" - installs: 959 - rating: 0 - ratings: 0 - author: "XadillaX" - repo: "https://github.com/XadillaX/vscode-mir2-colorscheme" - url: "https://marketplace.visualstudio.com/items?itemName=XadillaX.van-gogh-paintings" -colors: - bg: "#B7C6B2" - fg: "#685A27" - black: "#B7C6B2" - red: "#D2AB53" - green: "#632B17" - yellow: "#DAC371" - blue: "#CEA032" - magenta: "#9E6A28" - cyan: "#718656" - white: "#73693B" - brightBlack: "#ACB79E" - brightRed: "#67714B" - brightGreen: "#718656" - brightYellow: "#DAC371" - brightBlue: "#CEA032" - brightMagenta: "#9E6A28" - brightCyan: "#718656" - brightWhite: "#685A27" -meta: - mode: "light" - accent: "yellow" - hue: 138 - pair: null - contrast: - fg: 48.2 - black: 0 - red: 0 - green: 59.9 - yellow: 0 - blue: 12.1 - magenta: 36.6 - cyan: 32 - white: 42.2 - brightBlack: 0 - brightRed: 40.5 - brightGreen: 32 - brightYellow: 0 - brightBlue: 12.1 - brightMagenta: 36.6 - brightCyan: 32 - brightWhite: 48.2 diff --git a/themes/vasses-tricolor-theme.yaml b/themes/vasses-tricolor-theme.yaml index 0a64884c..2f07eee6 100644 --- a/themes/vasses-tricolor-theme.yaml +++ b/themes/vasses-tricolor-theme.yaml @@ -1,4 +1,4 @@ -name: "vasses-tricolor-theme" +name: "Vasses TriColor Theme" source: marketplace_id: "vassdeniss.vasses-tricolor-theme" version: "1.0.0" @@ -8,6 +8,7 @@ source: author: "vassdeniss" repo: "https://github.com/vassdeniss/vasses-tricolor-theme" url: "https://marketplace.visualstudio.com/items?itemName=vassdeniss.vasses-tricolor-theme" + formats: null colors: bg: "#1E1E1E" fg: "#FD6B00" diff --git a/themes/vcoldtheme.yaml b/themes/vcoldtheme.yaml index d80d02d6..5a8de19c 100644 --- a/themes/vcoldtheme.yaml +++ b/themes/vcoldtheme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "vgColdTheme.vgColdTheme" version: "0.0.4" installs: 53 + rating: 0 + ratings: 0 author: "vgColdTheme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=vgColdTheme.vgColdTheme" + formats: null colors: bg: "#393E4E" fg: "#F8F8F2" diff --git a/themes/vd.yaml b/themes/vd.yaml index 5662ae2d..493faf37 100644 --- a/themes/vd.yaml +++ b/themes/vd.yaml @@ -8,6 +8,7 @@ source: author: "Virtuos" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Virtuos.virtuos-dark" + formats: null colors: bg: "#080808" fg: "#F5F5F5" diff --git a/themes/vegas-night-details-theme.yaml b/themes/vegas-night-details-theme.yaml index 2f4b66ea..e06fcaf0 100644 --- a/themes/vegas-night-details-theme.yaml +++ b/themes/vegas-night-details-theme.yaml @@ -2,12 +2,13 @@ name: "Vegas Night Details Theme" source: marketplace_id: "robpco.vegas-night-details-theme" version: "0.2.2" - installs: 1017 + installs: 1018 rating: 5 ratings: 1 author: "robpco" repo: "https://github.com/robertpeteuil/vegas-night-details-theme" url: "https://marketplace.visualstudio.com/items?itemName=robpco.vegas-night-details-theme" + formats: null colors: bg: "#131313" fg: "#CCCCCC" diff --git a/themes/vegetable-contrast.yaml b/themes/vegetable-contrast.yaml deleted file mode 100644 index f330ec1b..00000000 --- a/themes/vegetable-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vegetable-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#161314" - fg: "#E2DCDD" - black: "#241F20" - red: "#BA0E2E" - green: "#F0A56C" - yellow: "#689D81" - blue: "#D8CA96" - magenta: "#F0A56C" - cyan: "#689D81" - white: "#EEEAEB" - brightBlack: "#4D4246" - brightRed: "#F03E5F" - brightGreen: "#F9DEC9" - brightYellow: "#A6C5B5" - brightBlue: "#F4F0E0" - brightMagenta: "#F9DEC9" - brightCyan: "#A6C5B5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 85.5 - black: 0 - red: 20.8 - green: 62.1 - yellow: 42.9 - blue: 73.8 - magenta: 62.1 - cyan: 42.9 - white: 94.1 - brightBlack: 9.4 - brightRed: 37.1 - brightGreen: 88.9 - brightYellow: 66.7 - brightBlue: 97.2 - brightMagenta: 88.9 - brightCyan: 66.7 - brightWhite: 107.2 diff --git a/themes/vegetable-light.yaml b/themes/vegetable-light.yaml deleted file mode 100644 index b49b508d..00000000 --- a/themes/vegetable-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vegetable-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#E2DCDD" - fg: "#514547" - black: "#EEEAEB" - red: "#BA0E2E" - green: "#F0A56C" - yellow: "#689D81" - blue: "#C6A52D" - magenta: "#F0A56C" - cyan: "#689D81" - white: "#5F5153" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#F9DEC9" - brightYellow: "#A6C5B5" - brightBlue: "#E0CA79" - brightMagenta: "#F9DEC9" - brightCyan: "#A6C5B5" - brightWhite: "#887477" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 71.4 - black: 0 - red: 60.6 - green: 19.7 - yellow: 38.4 - blue: 27 - magenta: 19.7 - cyan: 38.4 - white: 66.4 - brightBlack: 19.9 - brightRed: 44.1 - brightGreen: 0 - brightYellow: 15.4 - brightBlue: 8.3 - brightMagenta: 0 - brightCyan: 15.4 - brightWhite: 50.5 diff --git a/themes/vegetation.yaml b/themes/vegetation.yaml index 9badab9b..19141d95 100644 --- a/themes/vegetation.yaml +++ b/themes/vegetation.yaml @@ -2,12 +2,13 @@ name: "vegetation" source: marketplace_id: "samlazrak.vegetation" version: "1.1.0" - installs: 966 + installs: 967 rating: 5 ratings: 1 author: "samlazrak" repo: "https://github.com/samlazrak/vegetation" url: "https://marketplace.visualstudio.com/items?itemName=samlazrak.vegetation" + formats: null colors: bg: "#1F1F1F" fg: "#916255" diff --git a/themes/veil.yaml b/themes/veil.yaml index fbd25831..9bbf0e4e 100644 --- a/themes/veil.yaml +++ b/themes/veil.yaml @@ -8,6 +8,7 @@ source: author: "Priyaank" repo: "https://github.com/PRIYAANK2510/Ether" url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.ether" + formats: null colors: bg: "#18181F" fg: "#676775" diff --git a/themes/veiled.yaml b/themes/veiled.yaml index d9cea953..d72331d1 100644 --- a/themes/veiled.yaml +++ b/themes/veiled.yaml @@ -8,6 +8,7 @@ source: author: "saman shaiza" repo: "https://github.com/samanshaiza004/veiled" url: "https://marketplace.visualstudio.com/items?itemName=samanshaiza.veiled" + formats: null colors: bg: "#272829" fg: "#D8D9DA" diff --git a/themes/veist.yaml b/themes/veist.yaml index 3eea6428..498444df 100644 --- a/themes/veist.yaml +++ b/themes/veist.yaml @@ -8,6 +8,7 @@ source: author: "Guilherme Rodz" repo: "https://github.com/guilhermerodz/veist-theme" url: "https://marketplace.visualstudio.com/items?itemName=guilhermerodz.veist" + formats: null colors: bg: "#000000" fg: "#FAFBFC" diff --git a/themes/vela-spectrum-colorblind-light.yaml b/themes/vela-spectrum-colorblind-light.yaml index 85ac1325..5053854e 100644 --- a/themes/vela-spectrum-colorblind-light.yaml +++ b/themes/vela-spectrum-colorblind-light.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" + formats: null colors: bg: "#F6F8FA" fg: "#000000" diff --git a/themes/vela-spectrum-dark-colorblind.yaml b/themes/vela-spectrum-dark-colorblind.yaml index 46a384e9..49d3f99a 100644 --- a/themes/vela-spectrum-dark-colorblind.yaml +++ b/themes/vela-spectrum-dark-colorblind.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" + formats: null colors: bg: "#0D1117" fg: "#F6F8FA" diff --git a/themes/vela-spectrum-dark-dimmed.yaml b/themes/vela-spectrum-dark-dimmed.yaml index 1855c915..0d8e257f 100644 --- a/themes/vela-spectrum-dark-dimmed.yaml +++ b/themes/vela-spectrum-dark-dimmed.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" + formats: null colors: bg: "#0D1117" fg: "#F6F8FA" diff --git a/themes/vela-spectrum-dark-tritanopia.yaml b/themes/vela-spectrum-dark-tritanopia.yaml index f508df6e..2cc9b0dd 100644 --- a/themes/vela-spectrum-dark-tritanopia.yaml +++ b/themes/vela-spectrum-dark-tritanopia.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" + formats: null colors: bg: "#0D1117" fg: "#F6F8FA" diff --git a/themes/vela-spectrum-dark.yaml b/themes/vela-spectrum-dark.yaml index a0127e81..f031c4b3 100644 --- a/themes/vela-spectrum-dark.yaml +++ b/themes/vela-spectrum-dark.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" + formats: null colors: bg: "#0D1117" fg: "#F6F8FA" diff --git a/themes/vela-spectrum-dimmed-light.yaml b/themes/vela-spectrum-dimmed-light.yaml index 65d7e200..57001b81 100644 --- a/themes/vela-spectrum-dimmed-light.yaml +++ b/themes/vela-spectrum-dimmed-light.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" + formats: null colors: bg: "#F6F8FA" fg: "#000000" diff --git a/themes/vela-spectrum-high-contrast-light.yaml b/themes/vela-spectrum-high-contrast-light.yaml index aacc7b04..d14bd8a1 100644 --- a/themes/vela-spectrum-high-contrast-light.yaml +++ b/themes/vela-spectrum-high-contrast-light.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" + formats: null colors: bg: "#F6F8FA" fg: "#000000" diff --git a/themes/vela-spectrum-high-contrast.yaml b/themes/vela-spectrum-high-contrast.yaml index 15e1a54d..09bfed3a 100644 --- a/themes/vela-spectrum-high-contrast.yaml +++ b/themes/vela-spectrum-high-contrast.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" + formats: null colors: bg: "#0D1117" fg: "#F6F8FA" diff --git a/themes/vela-spectrum-light-tritanopia.yaml b/themes/vela-spectrum-light-tritanopia.yaml index 677f6052..3e343686 100644 --- a/themes/vela-spectrum-light-tritanopia.yaml +++ b/themes/vela-spectrum-light-tritanopia.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" + formats: null colors: bg: "#F6F8FA" fg: "#000000" diff --git a/themes/vela-spectrum-light.yaml b/themes/vela-spectrum-light.yaml index d1ca3fee..892cff4b 100644 --- a/themes/vela-spectrum-light.yaml +++ b/themes/vela-spectrum-light.yaml @@ -8,6 +8,7 @@ source: author: "Vela Inc" repo: "https://github.com/Telianedward/VelaSpectrum" url: "https://marketplace.visualstudio.com/items?itemName=telianedward.vela-spectrum" + formats: null colors: bg: "#F6F8FA" fg: "#000000" diff --git a/themes/velourous.yaml b/themes/velourous.yaml index e5a2fd08..25b5a714 100644 --- a/themes/velourous.yaml +++ b/themes/velourous.yaml @@ -8,6 +8,7 @@ source: author: "Arkar MIn Tun" repo: "https://github.com/arkarmintun1/velourous" url: "https://marketplace.visualstudio.com/items?itemName=arkarmintun.velourous" + formats: null colors: bg: "#272822" fg: "#F8F8F2" diff --git a/themes/velvet-chrome.yaml b/themes/velvet-chrome.yaml index 06d91544..d5c9f6ea 100644 --- a/themes/velvet-chrome.yaml +++ b/themes/velvet-chrome.yaml @@ -1,4 +1,4 @@ -name: "velvet-chrome" +name: "Velvet Chrome" source: marketplace_id: "willduque.velvet-chrome-theme" version: "0.0.3" @@ -8,6 +8,7 @@ source: author: "Willian Duque" repo: "https://github.com/wduqu001/velvet-chrome-theme" url: "https://marketplace.visualstudio.com/items?itemName=willduque.velvet-chrome-theme" + formats: null colors: bg: "#191919" fg: "#ECECEC" diff --git a/themes/velvet-thunder.yaml b/themes/velvet-thunder.yaml index 2802950d..72787d57 100644 --- a/themes/velvet-thunder.yaml +++ b/themes/velvet-thunder.yaml @@ -8,6 +8,7 @@ source: author: "BuddyDeveloping" repo: "https://github.com/BuddyDeveloping/Velvet-Thunder" url: "https://marketplace.visualstudio.com/items?itemName=BuddyDeveloping.velvet-thunder" + formats: null colors: bg: "#191C1F" fg: "#FFFFFF" diff --git a/themes/venice-beach-sky.yaml b/themes/venice-beach-sky.yaml index 4acca7e7..893ef110 100644 --- a/themes/venice-beach-sky.yaml +++ b/themes/venice-beach-sky.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#E2F7FB" fg: "#15425C" diff --git a/themes/venom-theme.yaml b/themes/venom-theme.yaml index 26216071..5ef3ac6b 100644 --- a/themes/venom-theme.yaml +++ b/themes/venom-theme.yaml @@ -8,6 +8,7 @@ source: author: "Susanta Chakraborty" repo: "https://github.com/susanta96/venom-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=susanta96.venom-theme-vscode" + formats: null colors: bg: "#15171E" fg: "#EFEFEF" diff --git a/themes/vercel-light.yaml b/themes/vercel-light.yaml deleted file mode 100644 index f68745f1..00000000 --- a/themes/vercel-light.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "Vercel Light" -source: - marketplace_id: "aurorascharff.vercel-docs-theme" - version: "0.4.0" - installs: 31 - author: "aurorascharff" - repo: "https://github.com/aurorascharff/vercel-vscode-docs-theme" - url: "https://marketplace.visualstudio.com/items?itemName=aurorascharff.vercel-docs-theme" -colors: - bg: "#FFFFFF" - fg: "#171717" - black: "#171717" - red: "#D6336C" - green: "#067A3D" - yellow: "#C27800" - blue: "#0070F3" - magenta: "#7C3AED" - cyan: "#0070F3" - white: "#FAFAFA" - brightBlack: "#666666" - brightRed: "#D6336C" - brightGreen: "#067A3D" - brightYellow: "#C27800" - brightBlue: "#0070F3" - brightMagenta: "#7C3AED" - brightCyan: "#0070F3" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - contrast: - fg: 104.7 - black: 104.7 - red: 70.6 - green: 76.6 - yellow: 62.3 - blue: 70.7 - magenta: 77.5 - cyan: 70.7 - white: 0 - brightBlack: 78.8 - brightRed: 70.6 - brightGreen: 76.6 - brightYellow: 62.3 - brightBlue: 70.7 - brightMagenta: 77.5 - brightCyan: 70.7 - brightWhite: 0 diff --git a/themes/vercel.yaml b/themes/vercel.yaml deleted file mode 100644 index e3cb959f..00000000 --- a/themes/vercel.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vercel" -source: - marketplace_id: "natemcgrady.vercel-vscode-theme" - version: "1.0.2" - installs: 379 - rating: 0 - ratings: 0 - author: "natemcgrady" - repo: "https://github.com/sotan8/vercel-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=natemcgrady.vercel-vscode-theme" -colors: - bg: "#000000" - fg: "#EEEEEE" - black: "#000000" - red: "#FF4D8D" - green: "#00CB50" - yellow: "#FFCC47" - blue: "#47A8FF" - magenta: "#C473FC" - cyan: "#0070F3" - white: "#EEEEEE" - brightBlack: "#666666" - brightRed: "#FF4D8D" - brightGreen: "#00CB50" - brightYellow: "#FFCC47" - brightBlue: "#47A8FF" - brightMagenta: "#C473FC" - brightCyan: "#47A8FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 96.8 - black: 0 - red: 44.6 - green: 60.3 - yellow: 79.9 - blue: 52.8 - magenta: 46.7 - cyan: 31 - white: 96.8 - brightBlack: 23 - brightRed: 44.6 - brightGreen: 60.3 - brightYellow: 79.9 - brightBlue: 52.8 - brightMagenta: 46.7 - brightCyan: 52.8 - brightWhite: 107.9 diff --git a/themes/verdant.yaml b/themes/verdant.yaml index 66703abf..d5a7e7fa 100644 --- a/themes/verdant.yaml +++ b/themes/verdant.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "tylerjost.verdant" version: "0.0.1" installs: 76 + rating: 0 + ratings: 0 author: "tylerjost" repo: "https://github.com/tylerjost/verdant" url: "https://marketplace.visualstudio.com/items?itemName=tylerjost.verdant" + formats: null colors: bg: "#00291B" fg: "#D4D4D4" diff --git a/themes/verdantium.yaml b/themes/verdantium.yaml index 88d041ea..9e944975 100644 --- a/themes/verdantium.yaml +++ b/themes/verdantium.yaml @@ -8,6 +8,7 @@ source: author: "PlutonicVoid" repo: "https://gitlab.com/peter_thesequel/Verdantium" url: "https://marketplace.visualstudio.com/items?itemName=PlutonicVoid.Verdantium" + formats: null colors: bg: "#111111" fg: "#FFD46E" diff --git a/themes/verdure.yaml b/themes/verdure.yaml index b357f2c6..c6eea7e2 100644 --- a/themes/verdure.yaml +++ b/themes/verdure.yaml @@ -3,9 +3,13 @@ source: marketplace_id: "verdure.verdure-vscode-theme" version: "0.0.2" installs: 181 + rating: 0 + ratings: 0 author: "Ada Rachel" repo: "https://github.com/adarachel/verdure-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=verdure.verdure-vscode-theme" + formats: + sublime: "https://raw.githubusercontent.com/adarachel/verdure-vscode-theme/verdure-theme/node_modules/generator-code/generators/app/templates/ext-colortheme/themes/theme.tmTheme" colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/verner.yaml b/themes/verner.yaml deleted file mode 100644 index e29518c1..00000000 --- a/themes/verner.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Verner" -source: - marketplace_id: "avrumnoor.verner" - version: "1.0.4" - installs: 627 - rating: 0 - ratings: 0 - author: "Avrum Noor" - repo: "https://github.com/avrumnoor/Verner" - url: "https://marketplace.visualstudio.com/items?itemName=avrumnoor.verner" -colors: - bg: "#050F0E" - fg: "#F2E6E9" - black: "#0F0F0F" - red: "#E6274D" - green: "#91E673" - yellow: "#E62E7A" - blue: "#83E6B4" - magenta: "#E66C84" - cyan: "#27E6B0" - white: "#CED9D3" - brightBlack: "#171717" - brightRed: "#FF1342" - brightGreen: "#8FFF66" - brightYellow: "#FF1979" - brightBlue: "#78FFBB" - brightMagenta: "#FF456A" - brightCyan: "#12FFBC" - brightWhite: "#F2E6E9" -meta: - mode: "dark" - accent: "red" - hue: 188 - pair: null - contrast: - fg: 93.2 - black: 0 - red: 32.7 - green: 78.7 - yellow: 34.3 - blue: 79.4 - magenta: 44.4 - cyan: 75.8 - white: 81.6 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 91 - brightYellow: 39.1 - brightBlue: 91.6 - brightMagenta: 42.1 - brightCyan: 89 - brightWhite: 93.2 diff --git a/themes/version-1-0-5.yaml b/themes/version-1-0-5.yaml deleted file mode 100644 index 49614d92..00000000 --- a/themes/version-1-0-5.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "version 1.0.5" -source: - marketplace_id: "souza.lennon-theme" - version: "1.1.0" - installs: 179 - rating: 0 - ratings: 0 - author: "lennon" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=souza.lennon-theme" -colors: - bg: "#1E1E1E" - fg: "#E8E8E8" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 91.1 - black: 0 - red: 25.9 - green: 52.2 - yellow: 84.8 - blue: 26.6 - magenta: 28.9 - cyan: 46.7 - white: 89.2 - brightBlack: 21.2 - brightRed: 37.7 - brightGreen: 62.7 - brightYellow: 94.8 - brightBlue: 39.2 - brightMagenta: 44.5 - brightCyan: 54.6 - brightWhite: 89.2 diff --git a/themes/very-blue.yaml b/themes/very-blue.yaml index 62fc7c88..8eef84d2 100644 --- a/themes/very-blue.yaml +++ b/themes/very-blue.yaml @@ -8,6 +8,7 @@ source: author: "Isaac" repo: "https://github.com/XxHTMLStudios/xxhtml-theme" url: "https://marketplace.visualstudio.com/items?itemName=xxhtml.xxhtml-themes" + formats: null colors: bg: "#222134" fg: "#C1C1C1" diff --git a/themes/very-fast-theme.yaml b/themes/very-fast-theme.yaml index b35b1f1b..539378de 100644 --- a/themes/very-fast-theme.yaml +++ b/themes/very-fast-theme.yaml @@ -8,6 +8,7 @@ source: author: "minekuba" repo: null url: "https://marketplace.visualstudio.com/items?itemName=minekuba.very-fast-theme" + formats: null colors: bg: "#280606" fg: "#E0E0E0" diff --git a/themes/vesper-golden.yaml b/themes/vesper-golden.yaml index 350d9d54..df045b3d 100644 --- a/themes/vesper-golden.yaml +++ b/themes/vesper-golden.yaml @@ -1,13 +1,14 @@ -name: "Vesper Golden" +name: "vesper golden" source: marketplace_id: "narayann7.vesper-golden" version: "0.0.7" - installs: 533 + installs: 534 rating: 5 ratings: 1 author: "narayan" repo: "https://github.com/narayann7/vesper-golden" url: "https://marketplace.visualstudio.com/items?itemName=narayann7.vesper-golden" + formats: null colors: bg: "#0A0908" fg: "#FFFFFF" diff --git a/themes/vesper-purple-dark.yaml b/themes/vesper-purple-dark.yaml deleted file mode 100644 index a8dfa8ed..00000000 --- a/themes/vesper-purple-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vesper Purple Dark" -source: - marketplace_id: "xinyao27.vesper-purple-theme" - version: "0.2.2" - installs: 2422 - rating: 0 - ratings: 0 - author: "Xinyao" - repo: "https://github.com/xinyao27/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=xinyao27.vesper-purple-theme" -colors: - bg: "#0A0A0A" - fg: "#DBD7CA" - black: "#323232" - red: "#FCA5A5" - green: "#16A34A" - yellow: "#EAB308" - blue: "#0369A1" - magenta: "#C391E6" - cyan: "#06B6D4" - white: "#DBD7CA" - brightBlack: "#777777" - brightRed: "#FCA5A5" - brightGreen: "#16A34A" - brightYellow: "#EAB308" - brightBlue: "#0369A1" - brightMagenta: "#C391E6" - brightCyan: "#06B6D4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: "Vesper Purple Light" - contrast: - fg: 82.2 - black: 0 - red: 66.4 - green: 41.8 - yellow: 66 - blue: 22.6 - magenta: 53.5 - cyan: 54.7 - white: 82.2 - brightBlack: 30.4 - brightRed: 66.4 - brightGreen: 41.8 - brightYellow: 66 - brightBlue: 22.6 - brightMagenta: 53.5 - brightCyan: 54.7 - brightWhite: 107.7 diff --git a/themes/vesper-purple-light.yaml b/themes/vesper-purple-light.yaml deleted file mode 100644 index d953ddf1..00000000 --- a/themes/vesper-purple-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vesper Purple Light" -source: - marketplace_id: "xinyao27.vesper-purple-theme" - version: "0.2.2" - installs: 2422 - rating: 0 - ratings: 0 - author: "Xinyao" - repo: "https://github.com/xinyao27/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=xinyao27.vesper-purple-theme" -colors: - bg: "#F5F5F5" - fg: "#323232" - black: "#0A0A0A" - red: "#EF4444" - green: "#22C55E" - yellow: "#EAB308" - blue: "#0EA5E9" - magenta: "#9066DF" - cyan: "#06B6D4" - white: "#DBD7CA" - brightBlack: "#AAAAAA" - brightRed: "#EF4444" - brightGreen: "#22C55E" - brightYellow: "#EAB308" - brightBlue: "#0EA5E9" - brightMagenta: "#9066DF" - brightCyan: "#06B6D4" - brightWhite: "#DDDDDD" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Vesper Purple Dark" - contrast: - fg: 93 - black: 99.9 - red: 57.9 - green: 38.4 - yellow: 30.4 - blue: 46.9 - magenta: 61.7 - cyan: 41.2 - white: 15.1 - brightBlack: 39.9 - brightRed: 57.9 - brightGreen: 38.4 - brightYellow: 30.4 - brightBlue: 46.9 - brightMagenta: 61.7 - brightCyan: 41.2 - brightWhite: 11.6 diff --git a/themes/vesper.yaml b/themes/vesper.yaml deleted file mode 100644 index 8caa0489..00000000 --- a/themes/vesper.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vesper ++" -source: - marketplace_id: "opedrodev.vesper-pp-lighter" - version: "1.0.1" - installs: 1467 - rating: 0 - ratings: 0 - author: "opedrodev" - repo: "https://github.com/opedrodev/vesper" - url: "https://marketplace.visualstudio.com/items?itemName=opedrodev.vesper-pp-lighter" -colors: - bg: "#161616" - fg: "#FFFFFF" - black: "#161616" - red: "#FF8080" - green: "#99FFE4" - yellow: "#FFC799" - blue: "#FFC799" - magenta: "#FBADFF" - cyan: "#99FFE4" - white: "#E3E3DD" - brightBlack: "#161616" - brightRed: "#FF8080" - brightGreen: "#99FFE4" - brightYellow: "#FFC799" - brightBlue: "#FFC799" - brightMagenta: "#FBADFF" - brightCyan: "#99FFE4" - brightWhite: "#F8F8F2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 107 - black: 0 - red: 53.8 - green: 94.7 - yellow: 78.4 - blue: 78.4 - magenta: 72.4 - cyan: 94.7 - white: 88.6 - brightBlack: 0 - brightRed: 53.8 - brightGreen: 94.7 - brightYellow: 78.4 - brightBlue: 78.4 - brightMagenta: 72.4 - brightCyan: 94.7 - brightWhite: 102.1 diff --git a/themes/vhs80.yaml b/themes/vhs80.yaml index 706ce99f..e121d10c 100644 --- a/themes/vhs80.yaml +++ b/themes/vhs80.yaml @@ -2,12 +2,13 @@ name: "VHS80" source: marketplace_id: "TahaYVR.vhs80" version: "1.0.1" - installs: 169 + installs: 172 rating: 0 ratings: 0 author: "Taha YVR" repo: "https://github.com/tahayvr/vhs80-vscode" url: "https://marketplace.visualstudio.com/items?itemName=TahaYVR.vhs80" + formats: null colors: bg: "#121212" fg: "#EAEAEA" diff --git a/themes/vi-dark.yaml b/themes/vi-dark.yaml index 9da543b0..312f6232 100644 --- a/themes/vi-dark.yaml +++ b/themes/vi-dark.yaml @@ -8,6 +8,7 @@ source: author: "Higor Nabuco" repo: null url: "https://marketplace.visualstudio.com/items?itemName=higornabuco.vi-dark" + formats: null colors: bg: "#1B2423" fg: "#FFFFFF" diff --git a/themes/vibe-dark-legacy.yaml b/themes/vibe-dark-legacy.yaml deleted file mode 100644 index accb4bda..00000000 --- a/themes/vibe-dark-legacy.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vibe Dark Legacy" -source: - marketplace_id: "yondav.vibe" - version: "2.0.1" - installs: 1541 - rating: 0 - ratings: 0 - author: "yondav" - repo: "https://github.com/yondav-configs/vibe" - url: "https://marketplace.visualstudio.com/items?itemName=yondav.vibe" -colors: - bg: "#161618" - fg: "#F1EBF3" - black: "#222222" - red: "#FF8D8D" - green: "#89DF95" - yellow: "#FCE789" - blue: "#729FCF" - magenta: "#B37EBC" - cyan: "#55DBE0" - white: "#FAFAFA" - brightBlack: "#333333" - brightRed: "#FF4646" - brightGreen: "#55ED6A" - brightYellow: "#FFE055" - brightBlue: "#49B8FD" - brightMagenta: "#D87DE4" - brightCyan: "#1CF3FB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 95.1 - black: 0 - red: 57.8 - green: 74.8 - yellow: 91.2 - blue: 47.5 - magenta: 42.1 - cyan: 72.9 - white: 103.6 - brightBlack: 0 - brightRed: 41 - brightGreen: 78 - brightYellow: 87.7 - brightBlue: 58.4 - brightMagenta: 50 - brightCyan: 84.9 - brightWhite: 107 diff --git a/themes/vibecolors-corporate-light.yaml b/themes/vibecolors-corporate-light.yaml index 73f29422..505f4ab3 100644 --- a/themes/vibecolors-corporate-light.yaml +++ b/themes/vibecolors-corporate-light.yaml @@ -8,6 +8,7 @@ source: author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" + formats: null colors: bg: "#FFFFFF" fg: "#2C3E50" diff --git a/themes/vibecolors-dark.yaml b/themes/vibecolors-dark.yaml index 40bf236d..c7e96bf0 100644 --- a/themes/vibecolors-dark.yaml +++ b/themes/vibecolors-dark.yaml @@ -8,6 +8,7 @@ source: author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" + formats: null colors: bg: "#1A1B26" fg: "#C0CAF5" diff --git a/themes/vibecolors-dynamic-dark.yaml b/themes/vibecolors-dynamic-dark.yaml index f5c5cfe8..9b13885a 100644 --- a/themes/vibecolors-dynamic-dark.yaml +++ b/themes/vibecolors-dynamic-dark.yaml @@ -8,6 +8,7 @@ source: author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" + formats: null colors: bg: "#1A1525" fg: "#E8D5FF" diff --git a/themes/vibecolors-dynamic-light.yaml b/themes/vibecolors-dynamic-light.yaml index 9962a90b..e2fde0b7 100644 --- a/themes/vibecolors-dynamic-light.yaml +++ b/themes/vibecolors-dynamic-light.yaml @@ -8,6 +8,7 @@ source: author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" + formats: null colors: bg: "#FEF9E7" fg: "#2D4A22" diff --git a/themes/vibecolors-light.yaml b/themes/vibecolors-light.yaml index 2d25a25f..ee63c0a1 100644 --- a/themes/vibecolors-light.yaml +++ b/themes/vibecolors-light.yaml @@ -8,6 +8,7 @@ source: author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" + formats: null colors: bg: "#FFFFFF" fg: "#24292F" diff --git a/themes/vibecolors-minimal-light.yaml b/themes/vibecolors-minimal-light.yaml index f70ffb89..a0cb65e6 100644 --- a/themes/vibecolors-minimal-light.yaml +++ b/themes/vibecolors-minimal-light.yaml @@ -8,6 +8,7 @@ source: author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" + formats: null colors: bg: "#FAFAFA" fg: "#333333" diff --git a/themes/vibecolors-neon-dark.yaml b/themes/vibecolors-neon-dark.yaml index ad358993..500b99b8 100644 --- a/themes/vibecolors-neon-dark.yaml +++ b/themes/vibecolors-neon-dark.yaml @@ -8,6 +8,7 @@ source: author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" + formats: null colors: bg: "#0D1117" fg: "#E6EDF3" diff --git a/themes/vibecolors-ocean-dark.yaml b/themes/vibecolors-ocean-dark.yaml index 8ee1a242..4a36b2bf 100644 --- a/themes/vibecolors-ocean-dark.yaml +++ b/themes/vibecolors-ocean-dark.yaml @@ -8,6 +8,7 @@ source: author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" + formats: null colors: bg: "#061621" fg: "#D7F7FF" diff --git a/themes/vibecolors-pastel-light.yaml b/themes/vibecolors-pastel-light.yaml index f0fc7cfd..f873c22a 100644 --- a/themes/vibecolors-pastel-light.yaml +++ b/themes/vibecolors-pastel-light.yaml @@ -8,6 +8,7 @@ source: author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" + formats: null colors: bg: "#FEF7FF" fg: "#5A5A5A" diff --git a/themes/vibecolors-retro-dark.yaml b/themes/vibecolors-retro-dark.yaml index 8c041931..5479922b 100644 --- a/themes/vibecolors-retro-dark.yaml +++ b/themes/vibecolors-retro-dark.yaml @@ -8,6 +8,7 @@ source: author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" + formats: null colors: bg: "#0C1021" fg: "#00FF41" diff --git a/themes/vibecolors-soft-dark.yaml b/themes/vibecolors-soft-dark.yaml index 44ad6262..640d9fbb 100644 --- a/themes/vibecolors-soft-dark.yaml +++ b/themes/vibecolors-soft-dark.yaml @@ -8,6 +8,7 @@ source: author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" + formats: null colors: bg: "#2D2A2E" fg: "#FCFCFA" diff --git a/themes/vibecolors-sunset-light.yaml b/themes/vibecolors-sunset-light.yaml index 3043e8cb..f9e8e697 100644 --- a/themes/vibecolors-sunset-light.yaml +++ b/themes/vibecolors-sunset-light.yaml @@ -8,6 +8,7 @@ source: author: "Alex Li" repo: "https://github.com/yili6ms/VibeColors" url: "https://marketplace.visualstudio.com/items?itemName=AlexLi.vibecolors" + formats: null colors: bg: "#FFF7F0" fg: "#3A1B1A" diff --git a/themes/vibes.yaml b/themes/vibes.yaml deleted file mode 100644 index bc119ffa..00000000 --- a/themes/vibes.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vibes" -source: - marketplace_id: "FusionTerror.vibey-theme" - version: "0.0.3" - installs: 908 - rating: 5 - ratings: 1 - author: "Fusion Terror" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=FusionTerror.vibey-theme" -colors: - bg: "#301830" - fg: "#C0D8F0" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 327 - pair: null - contrast: - fg: 78.8 - black: 0 - red: 25.4 - green: 51.7 - yellow: 84.3 - blue: 26.1 - magenta: 28.4 - cyan: 46.2 - white: 88.7 - brightBlack: 20.7 - brightRed: 37.2 - brightGreen: 62.2 - brightYellow: 94.3 - brightBlue: 38.7 - brightMagenta: 44 - brightCyan: 54.1 - brightWhite: 88.7 diff --git a/themes/vibra.yaml b/themes/vibra.yaml index 38e71dae..9a6b07d3 100644 --- a/themes/vibra.yaml +++ b/themes/vibra.yaml @@ -2,12 +2,13 @@ name: "Vibra" source: marketplace_id: "TayMizami.vibra" version: "0.0.3" - installs: 3797 + installs: 3799 rating: 5 ratings: 1 author: "Tay Mizami" repo: "https://github.com/taymizami/vibra" url: "https://marketplace.visualstudio.com/items?itemName=TayMizami.vibra" + formats: null colors: bg: "#191617" fg: "#FFFFFF" diff --git a/themes/vibrant-abyss-vscode.yaml b/themes/vibrant-abyss-vscode.yaml deleted file mode 100644 index a526e55f..00000000 --- a/themes/vibrant-abyss-vscode.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vibrant-abyss-vscode" -source: - marketplace_id: "noelhorvath.vibrant-abyss" - version: "0.4.13" - installs: 1576 - rating: 0 - ratings: 0 - author: "Noel Horváth" - repo: "https://github.com/noelhorvath/vibrant-abyss" - url: "https://marketplace.visualstudio.com/items?itemName=noelhorvath.vibrant-abyss" -colors: - bg: "#000000" - fg: "#DEDEDE" - black: "#1A1A1A" - red: "#FF6439" - green: "#26E019" - yellow: "#E7D427" - blue: "#34A7FF" - magenta: "#D129C2" - cyan: "#0BDEE3" - white: "#CDCDCD" - brightBlack: "#2A2A2A" - brightRed: "#FF8566" - brightGreen: "#5FD789" - brightYellow: "#FFEE00" - brightBlue: "#4EC1FB" - brightMagenta: "#FE77EF" - brightCyan: "#0DF8FC" - brightWhite: "#DEDEDE" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 86.6 - black: 0 - red: 46.8 - green: 70.5 - yellow: 79.3 - blue: 51.8 - magenta: 33 - cyan: 74.1 - white: 76.3 - brightBlack: 0 - brightRed: 55.5 - brightGreen: 69.1 - brightYellow: 94.6 - brightBlue: 63.2 - brightMagenta: 57.2 - brightCyan: 88.4 - brightWhite: 86.6 diff --git a/themes/vibrant-dark.yaml b/themes/vibrant-dark.yaml index 44db9031..29b43774 100644 --- a/themes/vibrant-dark.yaml +++ b/themes/vibrant-dark.yaml @@ -8,6 +8,7 @@ source: author: "kalternate" repo: "https://github.com/kalternate/vibrant-theme" url: "https://marketplace.visualstudio.com/items?itemName=kalternate.vibrant-theme" + formats: null colors: bg: "#282C34" fg: "#AFB7C7" diff --git a/themes/vibrant-max.yaml b/themes/vibrant-max.yaml index 12bacb43..e153c94d 100644 --- a/themes/vibrant-max.yaml +++ b/themes/vibrant-max.yaml @@ -8,6 +8,7 @@ source: author: "Matthew Orchard" repo: "https://github.com/mattorchard/vibrant-max" url: "https://marketplace.visualstudio.com/items?itemName=MatthewOrchard.vibrant-max" + formats: null colors: bg: "#171923" fg: "#A0AEC0" diff --git a/themes/vice-city-noir.yaml b/themes/vice-city-noir.yaml index d14e62bb..35063ecc 100644 --- a/themes/vice-city-noir.yaml +++ b/themes/vice-city-noir.yaml @@ -8,6 +8,7 @@ source: author: "Wasted" repo: "https://github.com/riel-fas/VScode_theme_extension" url: "https://marketplace.visualstudio.com/items?itemName=Wasted69.dark-theme-sos" + formats: null colors: bg: "#0D1B2A" fg: "#FFFFFF" diff --git a/themes/vicious.yaml b/themes/vicious.yaml index 979faea2..91b69863 100644 --- a/themes/vicious.yaml +++ b/themes/vicious.yaml @@ -8,6 +8,7 @@ source: author: "Zaher Al Majed" repo: "https://github.com/zaheralmajed/vicious-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ZaherAlMajed.vicious" + formats: null colors: bg: "#08090E" fg: "#FBFCFC" diff --git a/themes/victoria-dark.yaml b/themes/victoria-dark.yaml deleted file mode 100644 index 4a40fda1..00000000 --- a/themes/victoria-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Victoria Dark" -source: - marketplace_id: "lucidlabs.victoria-theme" - version: "1.3.0" - installs: 3 - rating: 0 - ratings: 0 - author: "Lucid Labs" - repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.victoria-theme" -colors: - bg: "#0C0E18" - fg: "#E8EDF3" - black: "#0C0E18" - red: "#E22339" - green: "#6BBE27" - yellow: "#FFCC2C" - blue: "#0052C2" - magenta: "#003174" - cyan: "#5B9BD5" - white: "#E8EDF3" - brightBlack: "#78797E" - brightRed: "#FF4D5E" - brightGreen: "#78D65B" - brightYellow: "#FFE066" - brightBlue: "#3D7FD6" - brightMagenta: "#E07AFF" - brightCyan: "#7EB8DA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 275 - pair: "Victoria Light" - contrast: - fg: 95.4 - black: 0 - red: 31.1 - green: 56.1 - yellow: 79.3 - blue: 18.1 - magenta: 0 - cyan: 45.5 - white: 95.4 - brightBlack: 31.2 - brightRed: 42.9 - brightGreen: 68.7 - brightYellow: 88.5 - brightBlue: 34 - brightMagenta: 53 - brightCyan: 59.7 - brightWhite: 107.5 diff --git a/themes/victoria-light.yaml b/themes/victoria-light.yaml deleted file mode 100644 index 64d75398..00000000 --- a/themes/victoria-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Victoria Light" -source: - marketplace_id: "lucidlabs.victoria-theme" - version: "1.3.0" - installs: 3 - rating: 0 - ratings: 0 - author: "Lucid Labs" - repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.victoria-theme" -colors: - bg: "#FFFFFF" - fg: "#0C0E18" - black: "#0C0E18" - red: "#E22339" - green: "#0A690D" - yellow: "#B38800" - blue: "#0052C2" - magenta: "#003174" - cyan: "#006A8F" - white: "#FFFFFF" - brightBlack: "#78797E" - brightRed: "#8A1220" - brightGreen: "#339D37" - brightYellow: "#FFCC2C" - brightBlue: "#003DA0" - brightMagenta: "#001E50" - brightCyan: "#5B9BD5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Victoria Dark" - contrast: - fg: 105.6 - black: 105.6 - red: 70.2 - green: 83.3 - yellow: 59.7 - blue: 83.4 - magenta: 97.5 - cyan: 79.8 - white: 0 - brightBlack: 70.1 - brightRed: 90.5 - brightGreen: 62 - brightYellow: 23.5 - brightBlue: 91.4 - brightMagenta: 102.6 - brightCyan: 56 - brightWhite: 0 diff --git a/themes/video-contrast.yaml b/themes/video-contrast.yaml deleted file mode 100644 index 011057f5..00000000 --- a/themes/video-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Video-Contrast" -source: - marketplace_id: "valentinesamuel.fallout-dark" - version: "0.0.1" - installs: 2243 - rating: 0 - ratings: 0 - author: "valentine samuel" - repo: "https://github.com/valentinesamuel/themes" - url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#000000" - red: "#A51F1F" - green: "#1BBC0D" - yellow: "#FFFF00" - blue: "#2733E6" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#C2C2C2" - brightBlack: "#2E2E2E" - brightRed: "#F14C4C" - brightGreen: "#27D94B" - brightYellow: "#FFFF3E" - brightBlue: "#0263CF" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 17.7 - green: 52.8 - yellow: 102.7 - blue: 16.5 - magenta: 30.8 - cyan: 48.6 - white: 69.8 - brightBlack: 0 - brightRed: 39.6 - brightGreen: 67.3 - brightYellow: 102.9 - brightBlue: 24.1 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 107.9 diff --git a/themes/vigikai.yaml b/themes/vigikai.yaml index 997171d9..c5c049f3 100644 --- a/themes/vigikai.yaml +++ b/themes/vigikai.yaml @@ -8,6 +8,7 @@ source: author: "Vignesh Prasad" repo: "https://github.com/ViGi-P/vigikai" url: "https://marketplace.visualstudio.com/items?itemName=vigi-p.vigikai" + formats: null colors: bg: "#1E1F1C" fg: "#A0EA33" diff --git a/themes/viii-iii-mmv.yaml b/themes/viii-iii-mmv.yaml index 222ed2a8..8ae0e3b6 100644 --- a/themes/viii-iii-mmv.yaml +++ b/themes/viii-iii-mmv.yaml @@ -8,6 +8,7 @@ source: author: "VIII-III-MMV-The-Theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=VIII-III-MMV.viii-iii-mmv" + formats: null colors: bg: "#0A0A0F" fg: "#E8E8F0" diff --git a/themes/vikkie-dark.yaml b/themes/vikkie-dark.yaml index fec321ff..1d5e0443 100644 --- a/themes/vikkie-dark.yaml +++ b/themes/vikkie-dark.yaml @@ -8,6 +8,7 @@ source: author: "Kaleidosium" repo: "https://github.com/Kaleidosium/vikkie-theme" url: "https://marketplace.visualstudio.com/items?itemName=atomicnumberphi.vikkie-theme" + formats: null colors: bg: "#322544" fg: "#E1E1E6" diff --git a/themes/vikkie-light.yaml b/themes/vikkie-light.yaml index 8c7eea58..4741da8b 100644 --- a/themes/vikkie-light.yaml +++ b/themes/vikkie-light.yaml @@ -8,6 +8,7 @@ source: author: "Kaleidosium" repo: "https://github.com/Kaleidosium/vikkie-theme" url: "https://marketplace.visualstudio.com/items?itemName=atomicnumberphi.vikkie-theme" + formats: null colors: bg: "#F8F5FF" fg: "#2A1E3A" diff --git a/themes/villain-dark.yaml b/themes/villain-dark.yaml index f9dc3598..e5d30128 100644 --- a/themes/villain-dark.yaml +++ b/themes/villain-dark.yaml @@ -8,6 +8,7 @@ source: author: "sahil kumar dev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sahilkumardev.villan-theam" + formats: null colors: bg: "#28282B" fg: "#FFFFFF" diff --git a/themes/villain-light.yaml b/themes/villain-light.yaml index 33f6685b..e7820499 100644 --- a/themes/villain-light.yaml +++ b/themes/villain-light.yaml @@ -8,6 +8,7 @@ source: author: "sahil kumar dev" repo: null url: "https://marketplace.visualstudio.com/items?itemName=sahilkumardev.villan-theam" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/vim-dar11sdasdasd.yaml b/themes/vim-dar11sdasdasd.yaml index 12473180..58c84916 100644 --- a/themes/vim-dar11sdasdasd.yaml +++ b/themes/vim-dar11sdasdasd.yaml @@ -8,6 +8,7 @@ source: author: "AndreaCombette" repo: "https://github.com/Chatr0uge/SweetWood-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.SweetWood" + formats: null colors: bg: "#3D2D27" fg: "#B1C1D7" diff --git a/themes/vim-dark-medium.yaml b/themes/vim-dark-medium.yaml index c2370d63..90300f7f 100644 --- a/themes/vim-dark-medium.yaml +++ b/themes/vim-dark-medium.yaml @@ -8,6 +8,7 @@ source: author: "AndreaCombette" repo: "https://github.com/Chatr0uge/SweetWood-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.SweetWood" + formats: null colors: bg: "#33221B" fg: "#D6DFEE" diff --git a/themes/vim-dark-soft.yaml b/themes/vim-dark-soft.yaml deleted file mode 100644 index b915f407..00000000 --- a/themes/vim-dark-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vim Dark Soft" -source: - marketplace_id: "HarryHopkinson.vim-theme" - version: "1.1.8" - installs: 181189 - rating: 5 - ratings: 8 - author: "HarryHopkinson" - repo: "https://github.com/Harry-Hopkinson/vim-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=HarryHopkinson.vim-theme" -colors: - bg: "#32302F" - fg: "#EBDBB2" - black: "#3C3836" - red: "#CC241D" - green: "#98971A" - yellow: "#D79921" - blue: "#458588" - magenta: "#B16286" - cyan: "#689D6A" - white: "#A89984" - brightBlack: "#928374" - brightRed: "#FB4934" - brightGreen: "#B8BB26" - brightYellow: "#FABD2F" - brightBlue: "#83A598" - brightMagenta: "#D3869B" - brightCyan: "#8EC07C" - brightWhite: "#EBDBB2" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: "Vim Light Soft" - contrast: - fg: 80.2 - black: 0 - red: 21.1 - green: 38.7 - yellow: 48.3 - blue: 27.4 - magenta: 27.5 - cyan: 37.7 - white: 43 - brightBlack: 32.2 - brightRed: 36 - brightGreen: 57 - brightYellow: 67.6 - brightBlue: 44.4 - brightMagenta: 43.8 - brightCyan: 55.9 - brightWhite: 80.2 diff --git a/themes/vim-light-1.yaml b/themes/vim-light-1.yaml index 57e1721b..f8741a29 100644 --- a/themes/vim-light-1.yaml +++ b/themes/vim-light-1.yaml @@ -8,6 +8,7 @@ source: author: "theprogrammergary" repo: "https://github.com/gary-ix/Gary-VS-Code-Themes" url: "https://marketplace.visualstudio.com/items?itemName=theprogrammergary.atom-themes" + formats: null colors: bg: "#EDE5CA" fg: "#3C3836" diff --git a/themes/vim-light-2.yaml b/themes/vim-light-2.yaml index 0e98217d..b382c595 100644 --- a/themes/vim-light-2.yaml +++ b/themes/vim-light-2.yaml @@ -8,6 +8,7 @@ source: author: "theprogrammergary" repo: "https://github.com/gary-ix/Gary-VS-Code-Themes" url: "https://marketplace.visualstudio.com/items?itemName=theprogrammergary.atom-themes" + formats: null colors: bg: "#EBDDB3" fg: "#3C3836" diff --git a/themes/vim-light-3.yaml b/themes/vim-light-3.yaml index 20cdd618..f5806651 100644 --- a/themes/vim-light-3.yaml +++ b/themes/vim-light-3.yaml @@ -8,6 +8,7 @@ source: author: "theprogrammergary" repo: "https://github.com/gary-ix/Gary-VS-Code-Themes" url: "https://marketplace.visualstudio.com/items?itemName=theprogrammergary.atom-themes" + formats: null colors: bg: "#F7F3E6" fg: "#3C3836" diff --git a/themes/vim-light-soft.yaml b/themes/vim-light-soft.yaml index 53af75ab..8b6f37c1 100644 --- a/themes/vim-light-soft.yaml +++ b/themes/vim-light-soft.yaml @@ -8,6 +8,7 @@ source: author: "AndreaCombette" repo: "https://github.com/Chatr0uge/SweetWood-theme" url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.SweetWood" + formats: null colors: bg: "#D6DFEE" fg: "#3D2D27" @@ -31,7 +32,7 @@ meta: mode: "light" accent: "yellow" hue: 261 - pair: "Vim Dark Soft" + pair: null contrast: fg: 80.1 black: 0 diff --git a/themes/vim-night.yaml b/themes/vim-night.yaml index 2d5f806a..d075cd2f 100644 --- a/themes/vim-night.yaml +++ b/themes/vim-night.yaml @@ -8,6 +8,7 @@ source: author: "Rasla" repo: "https://github.com/0xrasla/rassotheme" url: "https://marketplace.visualstudio.com/items?itemName=Rasla.vimnight" + formats: null colors: bg: "#000000" fg: "#7436B1" diff --git a/themes/vin-theme.yaml b/themes/vin-theme.yaml index 4a939f9f..c44b2547 100644 --- a/themes/vin-theme.yaml +++ b/themes/vin-theme.yaml @@ -8,6 +8,7 @@ source: author: "ervinarviandi" repo: null url: "https://marketplace.visualstudio.com/items?itemName=vintheme.vin-theme" + formats: null colors: bg: "#1C1E26" fg: "#FFB600" diff --git a/themes/vintage-heritage.yaml b/themes/vintage-heritage.yaml deleted file mode 100644 index a7ceeebf..00000000 --- a/themes/vintage-heritage.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vintage-Heritage" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#001B29" - fg: "#E9E1BA" - black: "#001B29" - red: "#7F1D1D" - green: "#29C3A0" - yellow: "#D29922" - blue: "#FCC14A" - magenta: "#FCC14A" - cyan: "#29C3A0" - white: "#E9E1BA" - brightBlack: "#001B29" - brightRed: "#7F1D1D" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#FCC14A" - brightMagenta: "#FCC14A" - brightCyan: "#29C3A0" - brightWhite: "#E9E1BA" -meta: - mode: "dark" - accent: "yellow" - hue: 234 - pair: null - contrast: - fg: 86.7 - black: 0 - red: 9 - green: 57.3 - yellow: 51.4 - blue: 73.6 - magenta: 73.6 - cyan: 57.3 - white: 86.7 - brightBlack: 0 - brightRed: 9 - brightGreen: 57.3 - brightYellow: 51.4 - brightBlue: 73.6 - brightMagenta: 73.6 - brightCyan: 57.3 - brightWhite: 86.7 diff --git a/themes/vintage-rust-theme.yaml b/themes/vintage-rust-theme.yaml index 7456b269..54b5e94f 100644 --- a/themes/vintage-rust-theme.yaml +++ b/themes/vintage-rust-theme.yaml @@ -2,12 +2,13 @@ name: "Vintage Rust Theme" source: marketplace_id: "HmadAfzal.vintage-rust-theme" version: "0.1.0" - installs: 746 + installs: 748 rating: 5 ratings: 2 author: "Hmad Afzal" repo: "https://github.com/HmadAfzal/Vintage-Rust-Theme" url: "https://marketplace.visualstudio.com/items?itemName=HmadAfzal.vintage-rust-theme" + formats: null colors: bg: "#000000" fg: "#DAD2BE" diff --git a/themes/vintage-serene.yaml b/themes/vintage-serene.yaml index 7f0435ee..e10212e5 100644 --- a/themes/vintage-serene.yaml +++ b/themes/vintage-serene.yaml @@ -8,6 +8,7 @@ source: author: "Legion" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Legion.theme-vintage-serene" + formats: null colors: bg: "#222222" fg: "#D9D9D9" diff --git a/themes/vintage.yaml b/themes/vintage.yaml index 2246db1b..fe46da58 100644 --- a/themes/vintage.yaml +++ b/themes/vintage.yaml @@ -1,13 +1,14 @@ -name: "vintage" +name: "Vintage" source: marketplace_id: "silas0827.vintage" version: "0.0.1" - installs: 1072 + installs: 1074 rating: 0 ratings: 0 author: "Silas Chen" repo: null url: "https://marketplace.visualstudio.com/items?itemName=silas0827.vintage" + formats: null colors: bg: "#FFFFE9" fg: "#CB997E" diff --git a/themes/vinyl.yaml b/themes/vinyl.yaml index 528c3061..3a331018 100644 --- a/themes/vinyl.yaml +++ b/themes/vinyl.yaml @@ -8,6 +8,7 @@ source: author: "sophiebosio" repo: "https://github.com/SophieBosio/vinyl" url: "https://marketplace.visualstudio.com/items?itemName=sophiebosio.vinyl" + formats: null colors: bg: "#222121" fg: "#DBD7CC" diff --git a/themes/violaceous-contrast.yaml b/themes/violaceous-contrast.yaml deleted file mode 100644 index db4626ef..00000000 --- a/themes/violaceous-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "violaceous-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0B0A11" - fg: "#BDB2F7" - black: "#151321" - red: "#BA0E2E" - green: "#725AC1" - yellow: "#8D86C9" - blue: "#CAC4CE" - magenta: "#725AC1" - cyan: "#CAC4CE" - white: "#D1C9F9" - brightBlack: "#353051" - brightRed: "#F03E5F" - brightGreen: "#B1A4DD" - brightYellow: "#CFCDE8" - brightBlue: "#FCFCFC" - brightMagenta: "#B1A4DD" - brightCyan: "#FCFCFC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 291 - pair: null - contrast: - fg: 65.3 - black: 0 - red: 21.3 - green: 25.3 - yellow: 41.3 - blue: 72 - magenta: 25.3 - cyan: 72 - white: 77.1 - brightBlack: 0 - brightRed: 37.6 - brightGreen: 57.1 - brightYellow: 77.6 - brightBlue: 105.7 - brightMagenta: 57.1 - brightCyan: 105.7 - brightWhite: 107.7 diff --git a/themes/violaceous-light.yaml b/themes/violaceous-light.yaml deleted file mode 100644 index ba974bc5..00000000 --- a/themes/violaceous-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "violaceous-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#E5E3EF" - fg: "#444349" - black: "#F4F3F8" - red: "#BA0E2E" - green: "#725AC1" - yellow: "#8D86C9" - blue: "#8D8593" - magenta: "#725AC1" - cyan: "#8D8593" - white: "#504F56" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#B1A4DD" - brightYellow: "#CFCDE8" - brightBlue: "#C0BBC3" - brightMagenta: "#B1A4DD" - brightCyan: "#C0BBC3" - brightWhite: "#76747E" -meta: - mode: "light" - accent: "orange" - hue: 294 - pair: null - contrast: - fg: 77 - black: 7.8 - red: 64.6 - green: 60.5 - yellow: 44.5 - blue: 47.4 - magenta: 60.5 - cyan: 47.4 - white: 72.3 - brightBlack: 15.4 - brightRed: 48.1 - brightGreen: 29.1 - brightYellow: 9.6 - brightBlue: 20.1 - brightMagenta: 29.1 - brightCyan: 20.1 - brightWhite: 56.2 diff --git a/themes/violaceous.yaml b/themes/violaceous.yaml deleted file mode 100644 index f41a4951..00000000 --- a/themes/violaceous.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "violaceous" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#242038" - fg: "#BDB2F7" - black: "#2E2948" - red: "#BA0E2E" - green: "#725AC1" - yellow: "#8D86C9" - blue: "#CAC4CE" - magenta: "#725AC1" - cyan: "#CAC4CE" - white: "#D1C9F9" - brightBlack: "#4E4579" - brightRed: "#F03E5F" - brightGreen: "#B1A4DD" - brightYellow: "#CFCDE8" - brightBlue: "#FCFCFC" - brightMagenta: "#B1A4DD" - brightCyan: "#FCFCFC" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 291 - pair: null - contrast: - fg: 62.8 - black: 0 - red: 18.9 - green: 22.9 - yellow: 38.9 - blue: 69.5 - magenta: 22.9 - cyan: 69.5 - white: 74.6 - brightBlack: 10.2 - brightRed: 35.1 - brightGreen: 54.6 - brightYellow: 75.1 - brightBlue: 103.2 - brightMagenta: 54.6 - brightCyan: 103.2 - brightWhite: 105.2 diff --git a/themes/violet-dream.yaml b/themes/violet-dream.yaml index 09c80fb1..bd8b3152 100644 --- a/themes/violet-dream.yaml +++ b/themes/violet-dream.yaml @@ -2,12 +2,13 @@ name: "Violet Dream" source: marketplace_id: "AlexandreFPGoncalves.violet-dream" version: "1.0.3" - installs: 5431 + installs: 5435 rating: 5 ratings: 3 author: "AlexandreFPGoncalves" repo: "https://github.com/AlexandreFPGoncalves/violet-dream" url: "https://marketplace.visualstudio.com/items?itemName=AlexandreFPGoncalves.violet-dream" + formats: null colors: bg: "#15151F" fg: "#E9E1F8" diff --git a/themes/violet-night.yaml b/themes/violet-night.yaml deleted file mode 100644 index 508f3582..00000000 --- a/themes/violet-night.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Violet Night" -source: - marketplace_id: "MaryamRezaee.violet-night-theme" - version: "0.2.0" - installs: 450 - rating: 5 - ratings: 3 - author: "Maryam Rezaee" - repo: "https://github.com/msmrexe/violet-night-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=MaryamRezaee.violet-night-theme" -colors: - bg: "#080808" - fg: "#E1E1E1" - black: "#434343" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#CCCCCC" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 88.4 - black: 9.4 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.3 - magenta: 30.7 - cyan: 48.5 - white: 75.6 - brightBlack: 23 - brightRed: 39.5 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 40.9 - brightMagenta: 46.3 - brightCyan: 56.3 - brightWhite: 90.9 diff --git a/themes/violet-nova.yaml b/themes/violet-nova.yaml index f5da110d..1bd84bb6 100644 --- a/themes/violet-nova.yaml +++ b/themes/violet-nova.yaml @@ -8,6 +8,7 @@ source: author: "ZCNXS" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ZCNXS.violet-nova-theme" + formats: null colors: bg: "#1A1523" fg: "#F3E9FF" diff --git a/themes/viora.yaml b/themes/viora.yaml index c537af9f..188ff67f 100644 --- a/themes/viora.yaml +++ b/themes/viora.yaml @@ -8,6 +8,7 @@ source: author: "Aditya Mali" repo: "[https://github.com/adityamali/Viora.git](https://github.com/adityamali/Viora.git)" url: "https://marketplace.visualstudio.com/items?itemName=AdityaMali.viora" + formats: null colors: bg: "#121212" fg: "#E0E0E0" diff --git a/themes/viper-theme.yaml b/themes/viper-theme.yaml deleted file mode 100644 index 8a796f07..00000000 --- a/themes/viper-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Viper Theme" -source: - marketplace_id: "Felip3.purple-haze-theme" - version: "1.0.5" - installs: 2042 - rating: 0 - ratings: 0 - author: "Felipe Menezes" - repo: "https://github.com/fmm312/purple-haze" - url: "https://marketplace.visualstudio.com/items?itemName=Felip3.purple-haze-theme" -colors: - bg: "#2B1F31" - fg: "#F2F2F2" - black: "#151515" - red: "#BC5653" - green: "#909D63" - yellow: "#EBC17A" - blue: "#6A8799" - magenta: "#B06698" - cyan: "#C9DFFF" - white: "#D9D9D9" - brightBlack: "#636363" - brightRed: "#BC5653" - brightGreen: "#F07178" - brightYellow: "#EBC17A" - brightBlue: "#C3E88D" - brightMagenta: "#B48EAD" - brightCyan: "#ACBBD0" - brightWhite: "#F7F7F7" -meta: - mode: "dark" - accent: "orange" - hue: 314 - pair: null - contrast: - fg: 96.7 - black: 0 - red: 27.8 - green: 43.5 - yellow: 70.2 - blue: 33.5 - magenta: 31.6 - cyan: 83.4 - white: 80.9 - brightBlack: 19.1 - brightRed: 27.8 - brightGreen: 44.9 - brightYellow: 70.2 - brightBlue: 82.5 - brightMagenta: 44.8 - brightCyan: 62.3 - brightWhite: 99.9 diff --git a/themes/vishwakarma-sunset-glow.yaml b/themes/vishwakarma-sunset-glow.yaml deleted file mode 100644 index a505183c..00000000 --- a/themes/vishwakarma-sunset-glow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vishwakarma Sunset Glow" -source: - marketplace_id: "VishwakarmaIndustries.vishwa" - version: "0.0.1" - installs: 25 - rating: 0 - ratings: 0 - author: "Vishwakarma Industries" - repo: "https://github.com/vishwakarma-industries/vishwa" - url: "https://marketplace.visualstudio.com/items?itemName=VishwakarmaIndustries.vishwa" -colors: - bg: "#FAF8F5" - fg: "#2D2A26" - black: "#24292F" - red: "#CF222E" - green: "#116329" - yellow: "#4D2D00" - blue: "#0969DA" - magenta: "#8250DF" - cyan: "#1B7C83" - white: "#6E7781" - brightBlack: "#57606A" - brightRed: "#A40E26" - brightGreen: "#1A7F37" - brightYellow: "#633C01" - brightBlue: "#218BFF" - brightMagenta: "#A475F9" - brightCyan: "#3192AA" - brightWhite: "#8C959F" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 97 - black: 97.4 - red: 70.7 - green: 81.2 - yellow: 93.9 - blue: 70.9 - magenta: 70.3 - cyan: 69.7 - white: 67.5 - brightBlack: 77.7 - brightRed: 81.2 - brightGreen: 70.5 - brightYellow: 88 - brightBlue: 56.6 - brightMagenta: 55.3 - brightCyan: 59.3 - brightWhite: 53.1 diff --git a/themes/vision-colorblind.yaml b/themes/vision-colorblind.yaml deleted file mode 100644 index a85f2739..00000000 --- a/themes/vision-colorblind.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vision-colorblind" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#000000" - fg: "#FFFFFF" - black: "#0D0D0D" - red: "#BA0E2E" - green: "#FC4D1F" - yellow: "#FDBA2C" - blue: "#21C0FC" - magenta: "#136EFB" - cyan: "#FC1264" - white: "#FFFFFF" - brightBlack: "#333333" - brightRed: "#F03E5F" - brightGreen: "#FD9D84" - brightYellow: "#FEDB91" - brightBlue: "#86DDFD" - brightMagenta: "#77ACFD" - brightCyan: "#FD77A6" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 107.9 - black: 0 - red: 21.5 - green: 41.9 - yellow: 72.1 - blue: 61.8 - magenta: 31.2 - cyan: 37.9 - white: 107.9 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 63.1 - brightYellow: 87.3 - brightBlue: 78.9 - brightMagenta: 56.8 - brightCyan: 53.3 - brightWhite: 107.9 diff --git a/themes/vision-light-colorblind.yaml b/themes/vision-light-colorblind.yaml deleted file mode 100644 index 8f30d79e..00000000 --- a/themes/vision-light-colorblind.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vision-light-colorblind" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#81209E" - yellow: "#1BA2F7" - blue: "#F87856" - magenta: "#F87856" - cyan: "#81209E" - white: "#0D0D0D" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#B94ADA" - brightYellow: "#7ECAFA" - brightBlue: "#FCC6B8" - brightMagenta: "#FCC6B8" - brightCyan: "#B94ADA" - brightWhite: "#333333" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106 - black: 0 - red: 80.3 - green: 86.4 - yellow: 53 - blue: 51.6 - magenta: 51.6 - cyan: 86.4 - white: 105.7 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 67.8 - brightYellow: 33 - brightBlue: 23.7 - brightMagenta: 23.7 - brightCyan: 67.8 - brightWhite: 98.7 diff --git a/themes/visual-studio-code-dark-theme.yaml b/themes/visual-studio-code-dark-theme.yaml deleted file mode 100644 index e5d7b196..00000000 --- a/themes/visual-studio-code-dark-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Visual Studio Code Dark Theme" -source: - marketplace_id: "mdmarufsarker.maruf-sarker" - version: "0.1.1" - installs: 29154 - rating: 5 - ratings: 6 - author: "Md. Maruf Sarker" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" -colors: - bg: "#0C1924" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 245 - pair: null - contrast: - fg: 79.4 - black: 0 - red: 26.6 - green: 52.9 - yellow: 85.5 - blue: 27.3 - magenta: 29.6 - cyan: 47.4 - white: 89.9 - brightBlack: 21.9 - brightRed: 38.4 - brightGreen: 63.4 - brightYellow: 95.5 - brightBlue: 39.9 - brightMagenta: 45.2 - brightCyan: 55.3 - brightWhite: 89.9 diff --git a/themes/visual-studio-dark-2019.yaml b/themes/visual-studio-dark-2019.yaml index 57040e47..3155d6d1 100644 --- a/themes/visual-studio-dark-2019.yaml +++ b/themes/visual-studio-dark-2019.yaml @@ -8,6 +8,7 @@ source: author: "Gasrulle" repo: "https://github.com/gasrulle/gasrulle-theme" url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" + formats: null colors: bg: "#1E1E1E" fg: "#DCDCDC" diff --git a/themes/visual-studio-dark-2026.yaml b/themes/visual-studio-dark-2026.yaml index 551ae686..fbfaed35 100644 --- a/themes/visual-studio-dark-2026.yaml +++ b/themes/visual-studio-dark-2026.yaml @@ -8,6 +8,7 @@ source: author: "Gasrulle" repo: "https://github.com/gasrulle/gasrulle-theme" url: "https://marketplace.visualstudio.com/items?itemName=Gasrulle.gasrulle-theme" + formats: null colors: bg: "#1C1C1C" fg: "#DCDCDC" diff --git a/themes/visual-studio-github-light-plus.yaml b/themes/visual-studio-github-light-plus.yaml index f0d11f88..0729091c 100644 --- a/themes/visual-studio-github-light-plus.yaml +++ b/themes/visual-studio-github-light-plus.yaml @@ -8,6 +8,7 @@ source: author: "aaaaash" repo: "https://github.com/Aaaaash/vs-github-light-plus" url: "https://marketplace.visualstudio.com/items?itemName=aaaaash.vs-github-light-plus" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/visualos.yaml b/themes/visualos.yaml index bb7727af..3f68d92b 100644 --- a/themes/visualos.yaml +++ b/themes/visualos.yaml @@ -2,12 +2,13 @@ name: "VisualOS" source: marketplace_id: "Tikode.VisualOS" version: "0.4.0" - installs: 2881 + installs: 2882 rating: 5 ratings: 1 author: "Tikode" repo: "https://github.com/tigranabelian1/VisualOS" url: "https://marketplace.visualstudio.com/items?itemName=Tikode.VisualOS" + formats: null colors: bg: "#121212" fg: "#FFFFFF" diff --git a/themes/vitepress-theme-vite-dark.yaml b/themes/vitepress-theme-vite-dark.yaml deleted file mode 100644 index c9685ca3..00000000 --- a/themes/vitepress-theme-vite-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "VitePress Theme Vite Dark" -source: - marketplace_id: "zanfee.theme-vitepress" - version: "0.0.2" - installs: 690 - rating: 0 - ratings: 0 - author: "Jan Fröhlich" - repo: "https://github.com/zanfee/vscode-theme-vitepress" - url: "https://marketplace.visualstudio.com/items?itemName=zanfee.theme-vitepress" -colors: - bg: "#1E1E20" - fg: "#FFFFF5" - black: "#000000" - red: "#F07178" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#676E95" - brightRed: "#F07178" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 105.6 - black: 0 - red: 45.7 - green: 83.3 - yellow: 78.1 - blue: 55.1 - magenta: 52.9 - cyan: 77.4 - white: 106 - brightBlack: 25.6 - brightRed: 45.7 - brightGreen: 83.3 - brightYellow: 78.1 - brightBlue: 55.1 - brightMagenta: 52.9 - brightCyan: 77.4 - brightWhite: 106 diff --git a/themes/vitesse-dark-custom.yaml b/themes/vitesse-dark-custom.yaml index aed596e5..a56bec63 100644 --- a/themes/vitesse-dark-custom.yaml +++ b/themes/vitesse-dark-custom.yaml @@ -8,6 +8,7 @@ source: author: "Vitesse Theme Custom" repo: "https://github.com/fxzer/theme-vitesse-dark-custom" url: "https://marketplace.visualstudio.com/items?itemName=fxzer.theme-vitesse-dark-custom" + formats: null colors: bg: "#121212" fg: "#BFBAAA" diff --git a/themes/vitesse-dark-soft.yaml b/themes/vitesse-dark-soft.yaml deleted file mode 100644 index cfbb8cec..00000000 --- a/themes/vitesse-dark-soft.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vitesse Dark Soft" -source: - marketplace_id: "5ett.motion-blue" - version: "0.0.7" - installs: 534 - rating: 4 - ratings: 1 - author: "5ett" - repo: "https://github.com/5ett/motion-blue" - url: "https://marketplace.visualstudio.com/items?itemName=5ett.motion-blue" -colors: - bg: "#222222" - fg: "#DBD7CA" - black: "#393A34" - red: "#CB7676" - green: "#4D9375" - yellow: "#E6CC77" - blue: "#6394BF" - magenta: "#D9739F" - cyan: "#5EAAB5" - white: "#DBD7CA" - brightBlack: "#777777" - brightRed: "#CB7676" - brightGreen: "#4D9375" - brightYellow: "#E6CC77" - brightBlue: "#6394BF" - brightMagenta: "#D9739F" - brightCyan: "#5EAAB5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 79.9 - black: 0 - red: 39.4 - green: 35.3 - yellow: 74.2 - blue: 39.9 - magenta: 42.5 - cyan: 47.9 - white: 79.9 - brightBlack: 28.1 - brightRed: 39.4 - brightGreen: 35.3 - brightYellow: 74.2 - brightBlue: 39.9 - brightMagenta: 42.5 - brightCyan: 47.9 - brightWhite: 105.5 diff --git a/themes/vitesse-dragon-dark.yaml b/themes/vitesse-dragon-dark.yaml index e5c7b4e0..34992262 100644 --- a/themes/vitesse-dragon-dark.yaml +++ b/themes/vitesse-dragon-dark.yaml @@ -8,6 +8,7 @@ source: author: "simonhe" repo: null url: "https://marketplace.visualstudio.com/items?itemName=simonhe.vitesse-theme-colorful" + formats: null colors: bg: "#121212" fg: "#FFA2CB" diff --git a/themes/vitesse-dragon.yaml b/themes/vitesse-dragon.yaml index 0c8e7f6e..dfbdd429 100644 --- a/themes/vitesse-dragon.yaml +++ b/themes/vitesse-dragon.yaml @@ -8,6 +8,7 @@ source: author: "simonhe" repo: null url: "https://marketplace.visualstudio.com/items?itemName=simonhe.vitesse-theme-colorful" + formats: null colors: bg: "#F4FAF3" fg: "#4A3C53" diff --git a/themes/vitesse-green-theme.yaml b/themes/vitesse-green-theme.yaml index 7e173a50..a4fdd18b 100644 --- a/themes/vitesse-green-theme.yaml +++ b/themes/vitesse-green-theme.yaml @@ -8,6 +8,7 @@ source: author: "namefhf" repo: "https://github.com/namefhf/vitesse-green-theme" url: "https://marketplace.visualstudio.com/items?itemName=namefhf.vitesse-green-theme" + formats: null colors: bg: "#F3FAF7" fg: "#393A34" diff --git a/themes/vitesse-webstorm-dark.yaml b/themes/vitesse-webstorm-dark.yaml index ae961c4a..1428083a 100644 --- a/themes/vitesse-webstorm-dark.yaml +++ b/themes/vitesse-webstorm-dark.yaml @@ -8,6 +8,7 @@ source: author: "AnthonyJu" repo: "https://github.com/AnthonyJu/vscode-theme-vitesse-webstorm" url: "https://marketplace.visualstudio.com/items?itemName=AnthonyJu.vscode-theme-vitesse-webstorm" + formats: null colors: bg: "#1E1F22" fg: "#FFFFFF" diff --git a/themes/vitrioleuse.yaml b/themes/vitrioleuse.yaml index 8208acf1..8b378a6f 100644 --- a/themes/vitrioleuse.yaml +++ b/themes/vitrioleuse.yaml @@ -8,6 +8,7 @@ source: author: "vitrioleuse" repo: "https://github.com/lichrot/vitrioleuse" url: "https://marketplace.visualstudio.com/items?itemName=vitrioleuse.vitrioleuse" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/vitruvian.yaml b/themes/vitruvian.yaml index fa972487..4235c34c 100644 --- a/themes/vitruvian.yaml +++ b/themes/vitruvian.yaml @@ -8,6 +8,7 @@ source: author: "mmerle" repo: "https://github.com/mmerle/vitruvian" url: "https://marketplace.visualstudio.com/items?itemName=merle.vitruvian" + formats: null colors: bg: "#151618" fg: "#E9E8E6" diff --git a/themes/vivid-blue.yaml b/themes/vivid-blue.yaml deleted file mode 100644 index 4cfe5511..00000000 --- a/themes/vivid-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Vivid Blue" -source: - marketplace_id: "WelkerArantes.sweet-candy-theme" - version: "0.0.2" - installs: 3156 - rating: 0 - ratings: 0 - author: "Welker Arantes" - repo: "https://github.com/taikio/sweet-candy-theme" - url: "https://marketplace.visualstudio.com/items?itemName=WelkerArantes.sweet-candy-theme" -colors: - bg: "#333333" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 74.6 - black: 0 - red: 21.9 - green: 48.2 - yellow: 80.8 - blue: 22.6 - magenta: 24.9 - cyan: 42.7 - white: 85.2 - brightBlack: 17.2 - brightRed: 33.7 - brightGreen: 58.7 - brightYellow: 90.8 - brightBlue: 35.1 - brightMagenta: 40.5 - brightCyan: 50.5 - brightWhite: 85.2 diff --git a/themes/vividnord.yaml b/themes/vividnord.yaml deleted file mode 100644 index 80b849c0..00000000 --- a/themes/vividnord.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "VividNord" -source: - marketplace_id: "stnord.vivid-nord" - version: "3.0.0" - installs: 1127 - rating: 0 - ratings: 0 - author: "stnord" - repo: "https://github.com/LyonAlpha/vivid-nord" - url: "https://marketplace.visualstudio.com/items?itemName=stnord.vivid-nord" -colors: - bg: "#334055" - fg: "#CDC4C4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 260 - pair: null - contrast: - fg: 62.5 - black: 9.6 - red: 18.1 - green: 44.4 - yellow: 77 - blue: 18.8 - magenta: 21.2 - cyan: 39 - white: 81.4 - brightBlack: 13.4 - brightRed: 30 - brightGreen: 54.9 - brightYellow: 87 - brightBlue: 31.4 - brightMagenta: 36.8 - brightCyan: 46.8 - brightWhite: 81.4 diff --git a/themes/vivido-theme.yaml b/themes/vivido-theme.yaml index 193dfe87..92ba8c28 100644 --- a/themes/vivido-theme.yaml +++ b/themes/vivido-theme.yaml @@ -8,6 +8,7 @@ source: author: "Philip Bruér" repo: "https://github.com/philipbruer/vivido" url: "https://marketplace.visualstudio.com/items?itemName=philipbruer.vivido" + formats: null colors: bg: "#272A30" fg: "#F9F9F9" diff --git a/themes/vixn-dark.yaml b/themes/vixn-dark.yaml index 6543ef65..b44d1065 100644 --- a/themes/vixn-dark.yaml +++ b/themes/vixn-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "noriah.vixn-theme" version: "1.0.4" installs: 91 + rating: 0 + ratings: 0 author: "noriah vix" repo: "https://github.com/noriah/vscode-vixn-theme" url: "https://marketplace.visualstudio.com/items?itemName=noriah.vixn-theme" + formats: null colors: bg: "#252525" fg: "#EEFFFF" diff --git a/themes/vkt-theme.yaml b/themes/vkt-theme.yaml deleted file mode 100644 index cce2c553..00000000 --- a/themes/vkt-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vkt-theme" -source: - marketplace_id: "PedroMakaveli.VktTheme" - version: "1.0.0" - installs: 3216 - rating: 5 - ratings: 1 - author: "Pedro Makaveli" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=PedroMakaveli.VktTheme" -colors: - bg: "#0E0C13" - fg: "#9EFDC8" - black: "#7BFF68" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#1BFFDF" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFE0E0" - brightBlack: "#828282" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#439CFF" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 298 - pair: null - contrast: - fg: 93.6 - black: 89.8 - red: 27.4 - green: 53.7 - yellow: 86.3 - blue: 90.4 - magenta: 30.5 - cyan: 48.3 - white: 92.1 - brightBlack: 35.4 - brightRed: 39.3 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 47.7 - brightMagenta: 46.1 - brightCyan: 56.1 - brightWhite: 107.6 diff --git a/themes/void-iris.yaml b/themes/void-iris.yaml index cc70d368..12b954fd 100644 --- a/themes/void-iris.yaml +++ b/themes/void-iris.yaml @@ -8,6 +8,7 @@ source: author: "Dikroll" repo: "https://github.com/Dikroll/Void-Iris" url: "https://marketplace.visualstudio.com/items?itemName=Dikroll.void-iris-theme" + formats: null colors: bg: "#0D0D0D" fg: "#E0E0E0" diff --git a/themes/void-nebula.yaml b/themes/void-nebula.yaml index 8d27fa02..5c8e8834 100644 --- a/themes/void-nebula.yaml +++ b/themes/void-nebula.yaml @@ -8,6 +8,7 @@ source: author: "avitrano" repo: "https://github.com/avitran0/void-nebula" url: "https://marketplace.visualstudio.com/items?itemName=avitrano.void-nebula" + formats: null colors: bg: "#1E1E28" fg: "#FFFFFF" diff --git a/themes/void.yaml b/themes/void.yaml index cbea6b8e..2aae7ffe 100644 --- a/themes/void.yaml +++ b/themes/void.yaml @@ -8,6 +8,7 @@ source: author: "void-sin" repo: null url: "https://marketplace.visualstudio.com/items?itemName=void-sin.void-singularity" + formats: null colors: bg: "#0D0D0D" fg: "#C4C4C4" diff --git a/themes/voidbloom-quazar.yaml b/themes/voidbloom-quazar.yaml index c6777173..76590dc3 100644 --- a/themes/voidbloom-quazar.yaml +++ b/themes/voidbloom-quazar.yaml @@ -8,6 +8,7 @@ source: author: "emery" repo: "https://github.com/r4chl/voidbloom" url: "https://marketplace.visualstudio.com/items?itemName=emery2547.voidbloom" + formats: null colors: bg: "#F2ECEE" fg: "#261931" diff --git a/themes/voidbloom-singularity.yaml b/themes/voidbloom-singularity.yaml index 6d722223..4fa430ce 100644 --- a/themes/voidbloom-singularity.yaml +++ b/themes/voidbloom-singularity.yaml @@ -8,6 +8,7 @@ source: author: "emery" repo: "https://github.com/r4chl/voidbloom" url: "https://marketplace.visualstudio.com/items?itemName=emery2547.voidbloom" + formats: null colors: bg: "#1E172B" fg: "#F1EFF5" diff --git a/themes/voidwalker.yaml b/themes/voidwalker.yaml index 7402169e..f15c64f8 100644 --- a/themes/voidwalker.yaml +++ b/themes/voidwalker.yaml @@ -8,6 +8,7 @@ source: author: "Satyam Rana" repo: null url: "https://marketplace.visualstudio.com/items?itemName=SatyamRana.the-prime-themes" + formats: null colors: bg: "#0A0A0A" fg: "#FFFFFF" diff --git a/themes/volatile-contrast.yaml b/themes/volatile-contrast.yaml deleted file mode 100644 index d4a688f2..00000000 --- a/themes/volatile-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "volatile-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#141619" - fg: "#C0CCDB" - black: "#1F2227" - red: "#BA0E2E" - green: "#EE9C3D" - yellow: "#568769" - blue: "#FFFFFF" - magenta: "#EE9C3D" - cyan: "#568769" - white: "#D0D9E4" - brightBlack: "#414852" - brightRed: "#F03E5F" - brightGreen: "#F6CC9B" - brightYellow: "#8DB69D" - brightBlue: "#FFFFFF" - brightMagenta: "#F6CC9B" - brightCyan: "#8DB69D" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 74 - black: 0 - red: 20.6 - green: 57.8 - yellow: 32.3 - blue: 107 - magenta: 57.8 - cyan: 32.3 - white: 82 - brightBlack: 10.1 - brightRed: 36.9 - brightGreen: 79.1 - brightYellow: 56.8 - brightBlue: 107 - brightMagenta: 79.1 - brightCyan: 56.8 - brightWhite: 107 diff --git a/themes/volatile-light.yaml b/themes/volatile-light.yaml deleted file mode 100644 index e8c13551..00000000 --- a/themes/volatile-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "volatile-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#474F56" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#EE9C3D" - yellow: "#568769" - blue: "#474F56" - magenta: "#EE9C3D" - cyan: "#568769" - white: "#535C64" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#F6CC9B" - brightYellow: "#8DB69D" - brightBlue: "#76828D" - brightMagenta: "#F6CC9B" - brightCyan: "#8DB69D" - brightWhite: "#76828D" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 88.8 - black: 0 - red: 80.3 - green: 43.4 - yellow: 68.5 - blue: 88.8 - magenta: 43.4 - cyan: 68.5 - white: 83.5 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 23.3 - brightYellow: 44.4 - brightBlue: 66.7 - brightMagenta: 23.3 - brightCyan: 44.4 - brightWhite: 66.7 diff --git a/themes/volatile.yaml b/themes/volatile.yaml deleted file mode 100644 index 3549b1b1..00000000 --- a/themes/volatile.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "volatile" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#32373D" - fg: "#C0CCDB" - black: "#3D444B" - red: "#BA0E2E" - green: "#EE9C3D" - yellow: "#568769" - blue: "#FFFFFF" - magenta: "#EE9C3D" - cyan: "#568769" - white: "#D0D9E4" - brightBlack: "#606A75" - brightRed: "#F03E5F" - brightGreen: "#F6CC9B" - brightYellow: "#8DB69D" - brightBlue: "#FFFFFF" - brightMagenta: "#F6CC9B" - brightCyan: "#8DB69D" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 253 - pair: null - contrast: - fg: 68 - black: 0 - red: 14.7 - green: 51.9 - yellow: 26.4 - blue: 101 - magenta: 51.9 - cyan: 26.4 - white: 76.1 - brightBlack: 17.4 - brightRed: 31 - brightGreen: 73.1 - brightYellow: 50.8 - brightBlue: 101 - brightMagenta: 73.1 - brightCyan: 50.8 - brightWhite: 101 diff --git a/themes/volcanofr.yaml b/themes/volcanofr.yaml index c7a751ae..46f90ded 100644 --- a/themes/volcanofr.yaml +++ b/themes/volcanofr.yaml @@ -8,6 +8,7 @@ source: author: "volcanofr" repo: "https://github.com/volcanofr/volcanofr-theme" url: "https://marketplace.visualstudio.com/items?itemName=volcanofr.volcanofr-theme" + formats: null colors: bg: "#25252D" fg: "#DED7D1" diff --git a/themes/volskaya.yaml b/themes/volskaya.yaml index 346c2d3a..87aac51f 100644 --- a/themes/volskaya.yaml +++ b/themes/volskaya.yaml @@ -8,6 +8,8 @@ source: author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" + formats: + nvim: "https://raw.githubusercontent.com/volskaya/irrelevant/main/extensions/neovim/lua/irrelevant/colors.lua" colors: bg: "#1C1C1C" fg: "#FFFFFF" diff --git a/themes/volt-dark.yaml b/themes/volt-dark.yaml deleted file mode 100644 index 237de7f5..00000000 --- a/themes/volt-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Volt Dark" -source: - marketplace_id: "MBhakta.voltdark" - version: "2.0.3" - installs: 84 - rating: 5 - ratings: 1 - author: "MBhakta" - repo: "https://github.com/milinbhakta/voltdark" - url: "https://marketplace.visualstudio.com/items?itemName=MBhakta.voltdark" -colors: - bg: "#000000" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#CDFF5C" - yellow: "#87B1C8" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#6DFFF8" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#CDFF5C" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#6DFFF8" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.5 - black: 0 - red: 27.7 - green: 96.8 - yellow: 56.9 - blue: 28.4 - magenta: 30.8 - cyan: 93.9 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 96.8 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 93.9 - brightWhite: 91 diff --git a/themes/voodoo.yaml b/themes/voodoo.yaml index 13fece3f..0984acfb 100644 --- a/themes/voodoo.yaml +++ b/themes/voodoo.yaml @@ -8,6 +8,7 @@ source: author: "liamsheppard" repo: "https://github.com/liamsheppard/voodoo-theme" url: "https://marketplace.visualstudio.com/items?itemName=liamsheppard.voodoo" + formats: null colors: bg: "#25273E" fg: "#D3D4D9" diff --git a/themes/voraes.yaml b/themes/voraes.yaml index c5131c99..771ba450 100644 --- a/themes/voraes.yaml +++ b/themes/voraes.yaml @@ -8,6 +8,7 @@ source: author: "Voraes" repo: "https://github.com/Voraes/voraes-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Voraes.voraes" + formats: null colors: bg: "#26292D" fg: "#E4E3E3" diff --git a/themes/vortex.yaml b/themes/vortex.yaml deleted file mode 100644 index d60abdf6..00000000 --- a/themes/vortex.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vortex" -source: - marketplace_id: "melyssanimeth.beachouse" - version: "0.0.1" - installs: 72 - rating: 0 - ratings: 0 - author: "melyssanimeth" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=melyssanimeth.beachouse" -colors: - bg: "#C6C6C6" - fg: "#828177" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 33.8 - black: 73.2 - red: 41.1 - green: 16.4 - yellow: 25.1 - blue: 53.2 - magenta: 41.7 - cyan: 27.7 - white: 53.1 - brightBlack: 45.9 - brightRed: 41.1 - brightGreen: 8.1 - brightYellow: 8.1 - brightBlue: 53.2 - brightMagenta: 41.7 - brightCyan: 27.7 - brightWhite: 15.6 diff --git a/themes/vox-ac30.yaml b/themes/vox-ac30.yaml index 6f9a2091..e8e0f7e4 100644 --- a/themes/vox-ac30.yaml +++ b/themes/vox-ac30.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "sainomeS.vox-ac30-theme" version: "0.0.2" installs: 32 + rating: 0 + ratings: 0 author: "sainomeS" repo: "https://github.com/sainomeS/vox-ac30-theme" url: "https://marketplace.visualstudio.com/items?itemName=sainomeS.vox-ac30-theme" + formats: null colors: bg: "#4D3129" fg: "#D4D4D4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: 37 + pair: null contrast: fg: 73.1 black: 0 diff --git a/themes/voyager.yaml b/themes/voyager.yaml index fba67d48..2bee9119 100644 --- a/themes/voyager.yaml +++ b/themes/voyager.yaml @@ -8,6 +8,7 @@ source: author: "Voyager Team" repo: "https://github.com/andrewbgrant/voyager-dark" url: "https://marketplace.visualstudio.com/items?itemName=VoyagerTeam.voyager-dark" + formats: null colors: bg: "#1A1A1A" fg: "#B4B4B4" diff --git a/themes/vs-code-deep-f-lux-fork-fork.yaml b/themes/vs-code-deep-f-lux-fork-fork.yaml deleted file mode 100644 index 3c4ca82f..00000000 --- a/themes/vs-code-deep-f-lux-fork-fork.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "VS Code Deep F.lux - Fork - Fork" -source: - marketplace_id: "valentinesamuel.fallout-dark" - version: "0.0.1" - installs: 2243 - rating: 0 - ratings: 0 - author: "valentine samuel" - repo: "https://github.com/valentinesamuel/themes" - url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" -colors: - bg: "#FFC85B" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#261C1C" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: 82 - pair: null - contrast: - fg: 79.1 - black: 79.1 - red: 47 - green: 22.3 - yellow: 31 - blue: 59.1 - magenta: 47.6 - cyan: 33.7 - white: 76.6 - brightBlack: 51.8 - brightRed: 47 - brightGreen: 14 - brightYellow: 14 - brightBlue: 59.1 - brightMagenta: 47.6 - brightCyan: 33.7 - brightWhite: 27.9 diff --git a/themes/vs-code-deep-f-lux.yaml b/themes/vs-code-deep-f-lux.yaml index 46288a15..4970ff44 100644 --- a/themes/vs-code-deep-f-lux.yaml +++ b/themes/vs-code-deep-f-lux.yaml @@ -8,6 +8,7 @@ source: author: "Suleman Elahi" repo: "https://github.com/Suleman-Elahi/vs-code-flux-intense" url: "https://marketplace.visualstudio.com/items?itemName=suleman-el.vs-code-flux-intense" + formats: null colors: bg: "#FFCE5E" fg: "#5C0000" diff --git a/themes/vs-code-next-js.yaml b/themes/vs-code-next-js.yaml deleted file mode 100644 index 5f38b2e6..00000000 --- a/themes/vs-code-next-js.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "VS Code Next.Js" -source: - marketplace_id: "ShayanAliJalbani.vs-nextjs" - version: "0.0.1" - installs: 1748 - rating: 0 - ratings: 0 - author: "Shayan Ali Jalbani" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=ShayanAliJalbani.vs-nextjs" -colors: - bg: "#0A0A0A" - fg: "#EDEDED" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 96 - black: 0 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.3 - magenta: 30.6 - cyan: 48.4 - white: 90.9 - brightBlack: 22.9 - brightRed: 39.4 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.9 - brightMagenta: 46.2 - brightCyan: 56.3 - brightWhite: 90.9 diff --git a/themes/vs-fleet.yaml b/themes/vs-fleet.yaml deleted file mode 100644 index be7463cc..00000000 --- a/themes/vs-fleet.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vs-fleet" -source: - marketplace_id: "anto.vs-fleet" - version: "2.0.1" - installs: 2760 - rating: 4 - ratings: 1 - author: "anto" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=anto.vs-fleet" -colors: - bg: "#060606" - fg: "#DFDFDF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 87.2 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.7 - cyan: 48.5 - white: 91 - brightBlack: 23 - brightRed: 39.5 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.3 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/vs-ghoul.yaml b/themes/vs-ghoul.yaml index 753a24c9..5497f2d0 100644 --- a/themes/vs-ghoul.yaml +++ b/themes/vs-ghoul.yaml @@ -2,12 +2,13 @@ name: "VS Ghoul" source: marketplace_id: "NathanInbar.vs-ghoul" version: "0.0.3" - installs: 2476 + installs: 2480 rating: 5 ratings: 2 author: "Nathan Inbar" repo: "https://github.com/NathanInbar/vs-ghoul" url: "https://marketplace.visualstudio.com/items?itemName=NathanInbar.vs-ghoul" + formats: null colors: bg: "#1D1D1D" fg: "#ABABAB" diff --git a/themes/vsblue.yaml b/themes/vsblue.yaml deleted file mode 100644 index 49c0e4b9..00000000 --- a/themes/vsblue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vsblue" -source: - marketplace_id: "4rya.vsblue" - version: "1.4.2" - installs: 66 - rating: 5 - ratings: 1 - author: "4rya" - repo: "https://github.com/TugasArya/vsblue" - url: "https://marketplace.visualstudio.com/items?itemName=4rya.vsblue" -colors: - bg: "#F0F9FF" - fg: "#1E3A5F" - black: "#1A365D" - red: "#FF595E" - green: "#FFD166" - yellow: "#FF9F1C" - blue: "#4ECDC4" - magenta: "#FF6B9D" - cyan: "#A3D5FF" - white: "#E6F2FF" - brightBlack: "#8DA1B9" - brightRed: "#FF7D82" - brightGreen: "#FFE082" - brightYellow: "#FFB74D" - brightBlue: "#6CE6DE" - brightMagenta: "#FF85AA" - brightCyan: "#D4EBFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 91.9 - black: 93.1 - red: 52.1 - green: 16.6 - yellow: 35.2 - blue: 32.3 - magenta: 46.9 - cyan: 20.9 - white: 0 - brightBlack: 47.1 - brightRed: 43.6 - brightGreen: 10 - brightYellow: 26.7 - brightBlue: 18.7 - brightMagenta: 40.2 - brightCyan: 0 - brightWhite: 0 diff --git a/themes/vsc-blue-theme.yaml b/themes/vsc-blue-theme.yaml index 44583ba9..51ced8f2 100644 --- a/themes/vsc-blue-theme.yaml +++ b/themes/vsc-blue-theme.yaml @@ -8,6 +8,7 @@ source: author: "Mdb05" repo: "https://github.com/Mdb05/Vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=Mdb05.vsc-theme" + formats: null colors: bg: "#161A1D" fg: "#D4D4D4" diff --git a/themes/vsc-cyberpunk2077-theme-color-theme.yaml b/themes/vsc-cyberpunk2077-theme-color-theme.yaml deleted file mode 100644 index 414526ac..00000000 --- a/themes/vsc-cyberpunk2077-theme-color-theme.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "vsc-cyberpunk2077-theme-color-theme" -source: - marketplace_id: "spicyhek.vsc-cyberpunk2077-theme" - version: "0.0.4" - installs: 468 - author: "spicyhek" - repo: "https://github.com/spicyhek/vsc-cyberpunk2077-theme" - url: "https://marketplace.visualstudio.com/items?itemName=spicyhek.vsc-cyberpunk2077-theme" -colors: - bg: "#160000" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 29 - pair: null - contrast: - fg: 80.3 - black: 0 - red: 27.5 - green: 53.8 - yellow: 86.4 - blue: 28.2 - magenta: 30.6 - cyan: 48.4 - white: 90.8 - brightBlack: 22.8 - brightRed: 39.4 - brightGreen: 64.3 - brightYellow: 96.4 - brightBlue: 40.8 - brightMagenta: 46.2 - brightCyan: 56.2 - brightWhite: 90.8 diff --git a/themes/vsc-military-style.yaml b/themes/vsc-military-style.yaml index 8cf7986d..cd20950c 100644 --- a/themes/vsc-military-style.yaml +++ b/themes/vsc-military-style.yaml @@ -8,6 +8,7 @@ source: author: "ROMAINPC" repo: "https://github.com/ROMAINPC/vsc-military-monokai" url: "https://marketplace.visualstudio.com/items?itemName=ROMAINPC.vsc-military-monokai" + formats: null colors: bg: "#191F19" fg: "#9D9E95" diff --git a/themes/vsc-minimalist-theme-flat.yaml b/themes/vsc-minimalist-theme-flat.yaml index 58b3b428..448eff51 100644 --- a/themes/vsc-minimalist-theme-flat.yaml +++ b/themes/vsc-minimalist-theme-flat.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad Mohsen" repo: "https://github.com/Muhammad-Mohsen/vsc-minimalist-theme" url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMohsen.vsc-minimalist-theme" + formats: null colors: bg: "#111111" fg: "#D4D4D4" diff --git a/themes/vsc-minimalist-theme-oak.yaml b/themes/vsc-minimalist-theme-oak.yaml index 209e3207..16ea8272 100644 --- a/themes/vsc-minimalist-theme-oak.yaml +++ b/themes/vsc-minimalist-theme-oak.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad Mohsen" repo: "https://github.com/Muhammad-Mohsen/vsc-minimalist-theme" url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMohsen.vsc-minimalist-theme" + formats: null colors: bg: "#141414" fg: "#D4D4D4" diff --git a/themes/vsc-minimalist-theme-obsidian.yaml b/themes/vsc-minimalist-theme-obsidian.yaml index 7d7d43ff..d21c4cbd 100644 --- a/themes/vsc-minimalist-theme-obsidian.yaml +++ b/themes/vsc-minimalist-theme-obsidian.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad Mohsen" repo: "https://github.com/Muhammad-Mohsen/vsc-minimalist-theme" url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMohsen.vsc-minimalist-theme" + formats: null colors: bg: "#1E2025" fg: "#D4D4D4" diff --git a/themes/vsc-minimalist-theme-odp.yaml b/themes/vsc-minimalist-theme-odp.yaml index dc96dddc..b39f5580 100644 --- a/themes/vsc-minimalist-theme-odp.yaml +++ b/themes/vsc-minimalist-theme-odp.yaml @@ -8,6 +8,7 @@ source: author: "Muhammad Mohsen" repo: "https://github.com/Muhammad-Mohsen/vsc-minimalist-theme" url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMohsen.vsc-minimalist-theme" + formats: null colors: bg: "#161616" fg: "#D4D4D4" diff --git a/themes/vsc-solarized-light.yaml b/themes/vsc-solarized-light.yaml deleted file mode 100644 index 1f83d9e3..00000000 --- a/themes/vsc-solarized-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vsc-solarized-light" -source: - marketplace_id: "ikx12333.vsc-soft-theme" - version: "0.1.9" - installs: 596 - rating: 0 - ratings: 0 - author: "ikx12333" - repo: "https://github.com/ikx12333/vsc-soft-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ikx12333.vsc-soft-theme" -colors: - bg: "#FDF6E3" - fg: "#657B83" - black: "#073642" - red: "#DC322F" - green: "#859900" - yellow: "#B58900" - blue: "#268BD2" - magenta: "#D33682" - cyan: "#2AA198" - white: "#EEE8D5" - brightBlack: "#002B36" - brightRed: "#CB4B16" - brightGreen: "#586E75" - brightYellow: "#657B83" - brightBlue: "#839496" - brightMagenta: "#6C71C4" - brightCyan: "#93A1A1" - brightWhite: "#EEE8D5" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 65.7 - black: 93.7 - red: 65.3 - green: 53.8 - yellow: 53.8 - blue: 58.7 - magenta: 65 - cyan: 53.1 - white: 0 - brightBlack: 96.4 - brightRed: 65.8 - brightGreen: 71.6 - brightYellow: 65.7 - brightBlue: 53.5 - brightMagenta: 65 - brightCyan: 46.7 - brightWhite: 0 diff --git a/themes/vscode-bt-feynuus-color-theme.yaml b/themes/vscode-bt-feynuus-color-theme.yaml deleted file mode 100644 index 27e4a3eb..00000000 --- a/themes/vscode-bt-feynuus-color-theme.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: "vscode-bt-feynuus-color-theme" -source: - marketplace_id: "BanadirTech.vscode-bt-feynuus-theme" - version: "0.0.4" - installs: 326 - author: "BanadirTech Inc" - repo: "https://github.com/banadirtech/vscode-feynuus-theme" - url: "https://marketplace.visualstudio.com/items?itemName=BanadirTech.vscode-bt-feynuus-theme" -colors: - bg: "#212121" - fg: "#FDFDFD" - black: "#040404" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - contrast: - fg: 104.3 - black: 0 - red: 25.4 - green: 51.7 - yellow: 84.4 - blue: 26.2 - magenta: 28.5 - cyan: 46.3 - white: 88.8 - brightBlack: 20.8 - brightRed: 37.3 - brightGreen: 62.3 - brightYellow: 94.4 - brightBlue: 38.7 - brightMagenta: 44.1 - brightCyan: 54.1 - brightWhite: 88.8 diff --git a/themes/vscode-epic-color-theme.yaml b/themes/vscode-epic-color-theme.yaml deleted file mode 100644 index 13e6f6ee..00000000 --- a/themes/vscode-epic-color-theme.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "VSCODE-EPIC-color-theme" -source: - marketplace_id: "juliuskoskela.vscode-epic-theme" - version: "0.1.1" - installs: 388 - author: "juliuskoskela" - repo: "https://github.com/juliuskoskela/vscode-epic-theme" - url: "https://marketplace.visualstudio.com/items?itemName=juliuskoskela.vscode-epic-theme" -colors: - bg: "#000000" - fg: "#B3B1AD" - black: "#00010A" - red: "#EA6C73" - green: "#91B362" - yellow: "#FF8000" - blue: "#0070DD" - magenta: "#FF8000" - cyan: "#90E1C6" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#C2D94C" - brightYellow: "#FF8000" - brightBlue: "#59C2FF" - brightMagenta: "#FF8000" - brightCyan: "#A335EE" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 60.2 - black: 0 - red: 45.1 - green: 55.2 - yellow: 53.3 - blue: 29.1 - magenta: 53.3 - cyan: 78.9 - white: 72.7 - brightBlack: 23.9 - brightRed: 47.6 - brightGreen: 76.9 - brightYellow: 53.3 - brightBlue: 64.3 - brightMagenta: 53.3 - brightCyan: 29.1 - brightWhite: 107.9 diff --git a/themes/vscode-forest-pro-chartreuse.yaml b/themes/vscode-forest-pro-chartreuse.yaml index 89bf4eb3..4210b30d 100644 --- a/themes/vscode-forest-pro-chartreuse.yaml +++ b/themes/vscode-forest-pro-chartreuse.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#0A1A0D" fg: "#E8F5E8" diff --git a/themes/vscode-forest-pro-dark-green.yaml b/themes/vscode-forest-pro-dark-green.yaml index 6318a5a9..7ae00bdc 100644 --- a/themes/vscode-forest-pro-dark-green.yaml +++ b/themes/vscode-forest-pro-dark-green.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#0A1F15" fg: "#E8F5E8" diff --git a/themes/vscode-forest-pro-enterprise-accessibility-enhanced.yaml b/themes/vscode-forest-pro-enterprise-accessibility-enhanced.yaml index e12a7218..c2487c88 100644 --- a/themes/vscode-forest-pro-enterprise-accessibility-enhanced.yaml +++ b/themes/vscode-forest-pro-enterprise-accessibility-enhanced.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#0D1B0F" fg: "#E8F5E8" diff --git a/themes/vscode-forest-pro-enterprise-light.yaml b/themes/vscode-forest-pro-enterprise-light.yaml index 8ea96336..6da50df1 100644 --- a/themes/vscode-forest-pro-enterprise-light.yaml +++ b/themes/vscode-forest-pro-enterprise-light.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#FFFFFF" fg: "#263238" diff --git a/themes/vscode-forest-pro-enterprise.yaml b/themes/vscode-forest-pro-enterprise.yaml index fdfeda50..cc29a007 100644 --- a/themes/vscode-forest-pro-enterprise.yaml +++ b/themes/vscode-forest-pro-enterprise.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#0A1A0D" fg: "#E8F5E8" diff --git a/themes/vscode-forest-pro-hunter-green.yaml b/themes/vscode-forest-pro-hunter-green.yaml index ad34436b..624daff9 100644 --- a/themes/vscode-forest-pro-hunter-green.yaml +++ b/themes/vscode-forest-pro-hunter-green.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#355E3B" fg: "#E8F5E8" diff --git a/themes/vscode-forest-pro-jade.yaml b/themes/vscode-forest-pro-jade.yaml index 8af6f0f3..701b6288 100644 --- a/themes/vscode-forest-pro-jade.yaml +++ b/themes/vscode-forest-pro-jade.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#0A1A0D" fg: "#E8F5E8" diff --git a/themes/vscode-forest-pro-kelly-green.yaml b/themes/vscode-forest-pro-kelly-green.yaml index 424f40d5..43d424b0 100644 --- a/themes/vscode-forest-pro-kelly-green.yaml +++ b/themes/vscode-forest-pro-kelly-green.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#0A1A0D" fg: "#E8F5E8" diff --git a/themes/vscode-forest-pro-mint-green.yaml b/themes/vscode-forest-pro-mint-green.yaml index 859915f6..c3db98eb 100644 --- a/themes/vscode-forest-pro-mint-green.yaml +++ b/themes/vscode-forest-pro-mint-green.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#0A1A0D" fg: "#E8F5E8" diff --git a/themes/vscode-forest-pro-moss-green.yaml b/themes/vscode-forest-pro-moss-green.yaml index d27e4652..cdc133bb 100644 --- a/themes/vscode-forest-pro-moss-green.yaml +++ b/themes/vscode-forest-pro-moss-green.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#0A1A0D" fg: "#E8F5E8" diff --git a/themes/vscode-forest-pro-olive.yaml b/themes/vscode-forest-pro-olive.yaml index 1e05fa16..2a229210 100644 --- a/themes/vscode-forest-pro-olive.yaml +++ b/themes/vscode-forest-pro-olive.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#0D0D08" fg: "#E8E8D0" diff --git a/themes/vscode-forest-pro-pale-green.yaml b/themes/vscode-forest-pro-pale-green.yaml index d7d1675e..1bb1accb 100644 --- a/themes/vscode-forest-pro-pale-green.yaml +++ b/themes/vscode-forest-pro-pale-green.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#0A1A0D" fg: "#E8F5E8" diff --git a/themes/vscode-forest-pro-pine-green.yaml b/themes/vscode-forest-pro-pine-green.yaml index ceba3680..8e39d18e 100644 --- a/themes/vscode-forest-pro-pine-green.yaml +++ b/themes/vscode-forest-pro-pine-green.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#50C878" fg: "#E8F5E8" diff --git a/themes/vscode-forest-pro-sea-green.yaml b/themes/vscode-forest-pro-sea-green.yaml index 645d5aa7..5d25bdae 100644 --- a/themes/vscode-forest-pro-sea-green.yaml +++ b/themes/vscode-forest-pro-sea-green.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#0A1A0D" fg: "#E8F5E8" diff --git a/themes/vscode-forest-pro-shamrock.yaml b/themes/vscode-forest-pro-shamrock.yaml index 16e80f07..d6b64fba 100644 --- a/themes/vscode-forest-pro-shamrock.yaml +++ b/themes/vscode-forest-pro-shamrock.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#0A1A0D" fg: "#E8F5E8" diff --git a/themes/vscode-forest-pro-spring-green.yaml b/themes/vscode-forest-pro-spring-green.yaml index 266d0c8d..4e4906e7 100644 --- a/themes/vscode-forest-pro-spring-green.yaml +++ b/themes/vscode-forest-pro-spring-green.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#0A1A0D" fg: "#E8F5E8" diff --git a/themes/vscode-forest-pro-tea-green.yaml b/themes/vscode-forest-pro-tea-green.yaml index 3247117e..474f4835 100644 --- a/themes/vscode-forest-pro-tea-green.yaml +++ b/themes/vscode-forest-pro-tea-green.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/vscode-forest-pro" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.vscode-forest-pro" + formats: null colors: bg: "#0A1A0D" fg: "#E8F5E8" diff --git a/themes/vscode-material-ui.yaml b/themes/vscode-material-ui.yaml deleted file mode 100644 index 0a123855..00000000 --- a/themes/vscode-material-ui.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vscode-material-ui" -source: - marketplace_id: "nxt3.vscode-material-ui" - version: "1.2.0" - installs: 30118 - rating: 0 - ratings: 0 - author: "nxt3" - repo: "https://github.com/Nxt3/vscode-material-ui" - url: "https://marketplace.visualstudio.com/items?itemName=nxt3.vscode-material-ui" -colors: - bg: "#212121" - fg: "#EEEEEE" - black: "#000000" - red: "#F44336" - green: "#00C853" - yellow: "#FFEB3B" - blue: "#2096F3" - magenta: "#9C30B0" - cyan: "#04BCD4" - white: "#BFBFBF" - brightBlack: "#666666" - brightRed: "#E57373" - brightGreen: "#25E47A" - brightYellow: "#FFF176" - brightBlue: "#64B5F6" - brightMagenta: "#BA68C8" - brightCyan: "#4DD0E1" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 94.5 - black: 0 - red: 36.4 - green: 56.6 - yellow: 91.1 - blue: 41.8 - magenta: 20.3 - cyan: 55.2 - white: 65.8 - brightBlack: 20.8 - brightRed: 43.5 - brightGreen: 71.3 - brightYellow: 94.6 - brightBlue: 56.5 - brightMagenta: 36.6 - brightCyan: 66.2 - brightWhite: 102.3 diff --git a/themes/vscode-nofrils-dark.yaml b/themes/vscode-nofrils-dark.yaml index 7954be14..19c1f469 100644 --- a/themes/vscode-nofrils-dark.yaml +++ b/themes/vscode-nofrils-dark.yaml @@ -8,6 +8,8 @@ source: author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" + formats: + zed: "https://raw.githubusercontent.com/sosukeinu/vscode-nofrils/main/themes/vs-code-nofrils-solarized-light-color-theme.json" colors: bg: "#121212" fg: "#E4E4E4" @@ -31,7 +33,7 @@ meta: mode: "dark" accent: "green" hue: null - pair: "VSCode Nofrils Light" + pair: null contrast: fg: 89.8 black: 0 diff --git a/themes/vscode-nofrils-github-light.yaml b/themes/vscode-nofrils-github-light.yaml index 5d5623cf..4df0a526 100644 --- a/themes/vscode-nofrils-github-light.yaml +++ b/themes/vscode-nofrils-github-light.yaml @@ -8,6 +8,8 @@ source: author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" + formats: + zed: "https://raw.githubusercontent.com/sosukeinu/vscode-nofrils/main/themes/vs-code-nofrils-solarized-light-color-theme.json" colors: bg: "#FFFFFF" fg: "#24292E" diff --git a/themes/vscode-nofrils-gruvbox-dark.yaml b/themes/vscode-nofrils-gruvbox-dark.yaml index f6b5d29f..a6d9d4de 100644 --- a/themes/vscode-nofrils-gruvbox-dark.yaml +++ b/themes/vscode-nofrils-gruvbox-dark.yaml @@ -8,6 +8,8 @@ source: author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" + formats: + zed: "https://raw.githubusercontent.com/sosukeinu/vscode-nofrils/main/themes/vs-code-nofrils-solarized-light-color-theme.json" colors: bg: "#3C3836" fg: "#EBDBB2" diff --git a/themes/vscode-nofrils-gruvbox-light.yaml b/themes/vscode-nofrils-gruvbox-light.yaml index 18ace5f8..c454355a 100644 --- a/themes/vscode-nofrils-gruvbox-light.yaml +++ b/themes/vscode-nofrils-gruvbox-light.yaml @@ -8,6 +8,8 @@ source: author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" + formats: + zed: "https://raw.githubusercontent.com/sosukeinu/vscode-nofrils/main/themes/vs-code-nofrils-solarized-light-color-theme.json" colors: bg: "#FBF1C7" fg: "#282828" diff --git a/themes/vscode-nofrils-light.yaml b/themes/vscode-nofrils-light.yaml deleted file mode 100644 index d7972188..00000000 --- a/themes/vscode-nofrils-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "VSCode Nofrils Light" -source: - marketplace_id: "batteajd.vscode-nofrils" - version: "2.2.0" - installs: 102 - rating: 0 - ratings: 0 - author: "Jonathan Batteas" - repo: "https://github.com/sosukeinu/vscode-nofrils" - url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" -colors: - bg: "#DADADA" - fg: "#000000" - black: "#000000" - red: "#EA6C6D" - green: "#6CBF43" - yellow: "#ECA944" - blue: "#3199E1" - magenta: "#9E75C7" - cyan: "#46BA94" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07171" - brightGreen: "#86B300" - brightYellow: "#F2AE49" - brightBlue: "#399EE6" - brightMagenta: "#A37ACC" - brightCyan: "#4CBF99" - brightWhite: "#D1D1D1" -meta: - mode: "light" - accent: "green" - hue: null - pair: "VSCode Nofrils Dark" - contrast: - fg: 84.4 - black: 84.4 - red: 35.2 - green: 23.2 - yellow: 17.7 - blue: 35.9 - magenta: 41.9 - cyan: 25.5 - white: 8.4 - brightBlack: 56.2 - brightRed: 32.7 - brightGreen: 26.8 - brightYellow: 14.9 - brightBlue: 33.5 - brightMagenta: 39.5 - brightCyan: 23 - brightWhite: 0 diff --git a/themes/vscode-nofrils-one-dark.yaml b/themes/vscode-nofrils-one-dark.yaml index 51be7950..15a32d4b 100644 --- a/themes/vscode-nofrils-one-dark.yaml +++ b/themes/vscode-nofrils-one-dark.yaml @@ -8,6 +8,8 @@ source: author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" + formats: + zed: "https://raw.githubusercontent.com/sosukeinu/vscode-nofrils/main/themes/vs-code-nofrils-solarized-light-color-theme.json" colors: bg: "#282C34" fg: "#ABB2BF" diff --git a/themes/vscode-nofrils-one-light.yaml b/themes/vscode-nofrils-one-light.yaml index 476f59f9..d96f7bb5 100644 --- a/themes/vscode-nofrils-one-light.yaml +++ b/themes/vscode-nofrils-one-light.yaml @@ -8,6 +8,8 @@ source: author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" + formats: + zed: "https://raw.githubusercontent.com/sosukeinu/vscode-nofrils/main/themes/vs-code-nofrils-solarized-light-color-theme.json" colors: bg: "#FAFAFA" fg: "#383A42" diff --git a/themes/vscode-nofrils-sepia.yaml b/themes/vscode-nofrils-sepia.yaml index c210d178..2c5843dd 100644 --- a/themes/vscode-nofrils-sepia.yaml +++ b/themes/vscode-nofrils-sepia.yaml @@ -8,6 +8,8 @@ source: author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" + formats: + zed: "https://raw.githubusercontent.com/sosukeinu/vscode-nofrils/main/themes/vs-code-nofrils-solarized-light-color-theme.json" colors: bg: "#FDFBD4" fg: "#545333" diff --git a/themes/vscode-nofrils-tokyo-night.yaml b/themes/vscode-nofrils-tokyo-night.yaml index 406d4092..a33f4220 100644 --- a/themes/vscode-nofrils-tokyo-night.yaml +++ b/themes/vscode-nofrils-tokyo-night.yaml @@ -8,6 +8,8 @@ source: author: "Jonathan Batteas" repo: "https://github.com/sosukeinu/vscode-nofrils" url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" + formats: + zed: "https://raw.githubusercontent.com/sosukeinu/vscode-nofrils/main/themes/vs-code-nofrils-solarized-light-color-theme.json" colors: bg: "#1A1B26" fg: "#C0CAF5" diff --git a/themes/vscode-pink-and-puple-theme.yaml b/themes/vscode-pink-and-puple-theme.yaml index 1d4a7563..50e2db2c 100644 --- a/themes/vscode-pink-and-puple-theme.yaml +++ b/themes/vscode-pink-and-puple-theme.yaml @@ -2,12 +2,13 @@ name: "vscode-pink-and-puple-theme" source: marketplace_id: "KelsonCarvalho.vscode-pink-and-puple-theme" version: "2.0.0" - installs: 1129 + installs: 1130 rating: 0 ratings: 0 author: "Kelson Carvalho" repo: "https://github.com/NoslekCode/vscode-pink-and-puple-theme" url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.vscode-pink-and-puple-theme" + formats: null colors: bg: "#563760" fg: "#D4D4D4" diff --git a/themes/vscode-sublime-ish.yaml b/themes/vscode-sublime-ish.yaml deleted file mode 100644 index f9ba3924..00000000 --- a/themes/vscode-sublime-ish.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vscode-sublime-ish" -source: - marketplace_id: "keepflying.sublime-ish" - version: "0.0.1" - installs: 134 - rating: 0 - ratings: 0 - author: "keepflying" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=keepflying.sublime-ish" -colors: - bg: "#F2F2F2" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 98.3 - black: 98.3 - red: 66.2 - green: 41.5 - yellow: 50.2 - blue: 78.3 - magenta: 66.8 - cyan: 52.9 - white: 78.2 - brightBlack: 71 - brightRed: 66.2 - brightGreen: 33.2 - brightYellow: 33.2 - brightBlue: 78.3 - brightMagenta: 66.8 - brightCyan: 52.9 - brightWhite: 40.7 diff --git a/themes/vscode-theme.yaml b/themes/vscode-theme.yaml index a0620a08..5eec4e2d 100644 --- a/themes/vscode-theme.yaml +++ b/themes/vscode-theme.yaml @@ -8,6 +8,7 @@ source: author: "JhosephS" repo: "https://github.com/JhosephL/VSCodeThemes" url: "https://marketplace.visualstudio.com/items?itemName=JhosephS.vscodemaintheme" + formats: null colors: bg: "#001432" fg: "#FFFFFF" diff --git a/themes/vsmuted-color-theme.yaml b/themes/vsmuted-color-theme.yaml index 15cf0221..c98fab9a 100644 --- a/themes/vsmuted-color-theme.yaml +++ b/themes/vsmuted-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "PJ Walker" repo: "https://github.com/PJWalker/VS-Muted" url: "https://marketplace.visualstudio.com/items?itemName=PJWalker.vs-muted" + formats: null colors: bg: "#FFFFFF" fg: "#000D" diff --git a/themes/vsnordtheme-dark-contrast-color-theme.yaml b/themes/vsnordtheme-dark-contrast-color-theme.yaml index eaa0c1ad..2ea5d587 100644 --- a/themes/vsnordtheme-dark-contrast-color-theme.yaml +++ b/themes/vsnordtheme-dark-contrast-color-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Kochan.vs-nord-theme" version: "1.0.2" installs: 528 + rating: 0 + ratings: 0 author: "Koiverse" repo: "https://github.com/koimoee/VSNordTheme" url: "https://marketplace.visualstudio.com/items?itemName=Kochan.vs-nord-theme" + formats: null colors: bg: "#101010" fg: "#C8DCE9" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: null + pair: null contrast: fg: 83.1 black: 0 diff --git a/themes/vsnordtheme-light-color-theme.yaml b/themes/vsnordtheme-light-color-theme.yaml index e96eb400..79dc0ce4 100644 --- a/themes/vsnordtheme-light-color-theme.yaml +++ b/themes/vsnordtheme-light-color-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Kochan.vs-nord-theme" version: "1.0.2" installs: 528 + rating: 0 + ratings: 0 author: "Koiverse" repo: "https://github.com/koimoee/VSNordTheme" url: "https://marketplace.visualstudio.com/items?itemName=Kochan.vs-nord-theme" + formats: null colors: bg: "#FFFFFF" fg: "#2E3440" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 98.4 black: 93.4 diff --git a/themes/vsnordtheme-light-contrast-color-theme.yaml b/themes/vsnordtheme-light-contrast-color-theme.yaml index 70c1f289..46879fe1 100644 --- a/themes/vsnordtheme-light-contrast-color-theme.yaml +++ b/themes/vsnordtheme-light-contrast-color-theme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Kochan.vs-nord-theme" version: "1.0.2" installs: 528 + rating: 0 + ratings: 0 author: "Koiverse" repo: "https://github.com/koimoee/VSNordTheme" url: "https://marketplace.visualstudio.com/items?itemName=Kochan.vs-nord-theme" + formats: null colors: bg: "#FFFFFF" fg: "#1E1E1E" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 103.6 black: 98.3 diff --git a/themes/vstheme-no-italics.yaml b/themes/vstheme-no-italics.yaml index b827d358..11e74e7e 100644 --- a/themes/vstheme-no-italics.yaml +++ b/themes/vstheme-no-italics.yaml @@ -8,6 +8,7 @@ source: author: "James Gleason" repo: "https://github.com/jameygleason/vstheme" url: "https://marketplace.visualstudio.com/items?itemName=jamesgleason.vstheme" + formats: null colors: bg: "#00091A" fg: "#C8D4E7" diff --git a/themes/vstoolkit-theme-dark.yaml b/themes/vstoolkit-theme-dark.yaml deleted file mode 100644 index 0dc6a1bb..00000000 --- a/themes/vstoolkit-theme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "VSToolKit Theme Dark" -source: - marketplace_id: "PhilippBo.vstoolkit" - version: "1.1.0" - installs: 133 - rating: 0 - ratings: 0 - author: "Philipp Bo." - repo: "https://github.com/phil1436/VSToolKit" - url: "https://marketplace.visualstudio.com/items?itemName=PhilippBo.vstoolkit" -colors: - bg: "#010409" - fg: "#D6DEEB" - black: "#010409" - red: "#EF5350" - green: "#22DA6E" - yellow: "#C5E478" - blue: "#82AAFF" - magenta: "#FD4A4A" - cyan: "#21C7A8" - white: "#FFFFFF" - brightBlack: "#575656" - brightRed: "#EF5350" - brightGreen: "#22DA6E" - brightYellow: "#FFEB95" - brightBlue: "#82AAFF" - brightMagenta: "#FD4A4A" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 248 - pair: null - contrast: - fg: 86.2 - black: 0 - red: 40.3 - green: 68.2 - yellow: 83 - blue: 56.9 - magenta: 42 - cyan: 60.7 - white: 107.9 - brightBlack: 16.6 - brightRed: 40.3 - brightGreen: 68.2 - brightYellow: 94.7 - brightBlue: 56.9 - brightMagenta: 42 - brightCyan: 75 - brightWhite: 107.9 diff --git a/themes/vuejs-theme.yaml b/themes/vuejs-theme.yaml index 8a907a27..1a0ad928 100644 --- a/themes/vuejs-theme.yaml +++ b/themes/vuejs-theme.yaml @@ -2,12 +2,13 @@ name: "VueJS Theme" source: marketplace_id: "leonardoleal202.vuejs-theme" version: "2.0.0" - installs: 12760 + installs: 12763 rating: 5 ratings: 1 author: "leonardoleal202" repo: "https://github.com/Leozhr/VueJS-Theme" url: "https://marketplace.visualstudio.com/items?itemName=leonardoleal202.vuejs-theme" + formats: null colors: bg: "#151515" fg: "#BBBBCC" diff --git a/themes/vxcode-blush.yaml b/themes/vxcode-blush.yaml deleted file mode 100644 index 1a277601..00000000 --- a/themes/vxcode-blush.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vxcode blush" -source: - marketplace_id: "evertjunior.vxcode-theme" - version: "0.0.15" - installs: 3239 - rating: 5 - ratings: 3 - author: "Evert Junior" - repo: "https://github.com/evertjr/vxcode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" -colors: - bg: "#E9DFD6" - fg: "#333333" - black: "#555555" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#DDDDDD" - brightBlack: "#888888" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#EEEEEE" -meta: - mode: "light" - accent: "orange" - hue: 65 - pair: null - contrast: - fg: 80.8 - black: 68 - red: 38 - green: 30.8 - yellow: 10.1 - blue: 37.9 - magenta: 35.5 - cyan: 26.8 - white: 0 - brightBlack: 45.1 - brightRed: 30.4 - brightGreen: 22.5 - brightYellow: 0 - brightBlue: 29.9 - brightMagenta: 27.2 - brightCyan: 18.4 - brightWhite: 0 diff --git a/themes/vxcode-cream.yaml b/themes/vxcode-cream.yaml deleted file mode 100644 index bf737557..00000000 --- a/themes/vxcode-cream.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vxcode cream" -source: - marketplace_id: "evertjunior.vxcode-theme" - version: "0.0.15" - installs: 3239 - rating: 5 - ratings: 3 - author: "Evert Junior" - repo: "https://github.com/evertjr/vxcode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" -colors: - bg: "#FAF3E0" - fg: "#333333" - black: "#555555" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#DDDDDD" - brightBlack: "#888888" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#EEEEEE" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 91.7 - black: 78.9 - red: 48.9 - green: 41.7 - yellow: 21 - blue: 48.8 - magenta: 46.3 - cyan: 37.7 - white: 10.5 - brightBlack: 56 - brightRed: 41.3 - brightGreen: 33.4 - brightYellow: 12 - brightBlue: 40.7 - brightMagenta: 38.1 - brightCyan: 29.3 - brightWhite: 0 diff --git a/themes/vxcode-dark.yaml b/themes/vxcode-dark.yaml deleted file mode 100644 index c81a263e..00000000 --- a/themes/vxcode-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vxcode dark" -source: - marketplace_id: "evertjunior.vxcode-theme" - version: "0.0.15" - installs: 3239 - rating: 5 - ratings: 3 - author: "Evert Junior" - repo: "https://github.com/evertjr/vxcode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" -colors: - bg: "#2A2A30" - fg: "#E3E3E3" - black: "#333333" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#E3E3E3" - brightBlack: "#666666" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#F6F6F6" -meta: - mode: "dark" - accent: "orange" - hue: 286 - pair: null - contrast: - fg: 85.8 - black: 0 - red: 41.9 - green: 49.3 - yellow: 71 - blue: 42 - magenta: 44.6 - cyan: 53.5 - white: 85.8 - brightBlack: 19.1 - brightRed: 49.8 - brightGreen: 57.9 - brightYellow: 80.6 - brightBlue: 50.3 - brightMagenta: 53.1 - brightCyan: 62.2 - brightWhite: 98 diff --git a/themes/vxcode-darker.yaml b/themes/vxcode-darker.yaml deleted file mode 100644 index 2641ee89..00000000 --- a/themes/vxcode-darker.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vxcode darker" -source: - marketplace_id: "evertjunior.vxcode-theme" - version: "0.0.15" - installs: 3239 - rating: 5 - ratings: 3 - author: "Evert Junior" - repo: "https://github.com/evertjr/vxcode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" -colors: - bg: "#0A0A0A" - fg: "#E3E3E3" - black: "#333333" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#E3E3E3" - brightBlack: "#666666" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#F6F6F6" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.6 - black: 0 - red: 45.7 - green: 53.1 - yellow: 74.8 - blue: 45.8 - magenta: 48.3 - cyan: 57.2 - white: 89.6 - brightBlack: 22.9 - brightRed: 53.6 - brightGreen: 61.7 - brightYellow: 84.4 - brightBlue: 54.1 - brightMagenta: 56.8 - brightCyan: 66 - brightWhite: 101.8 diff --git a/themes/vxcode-lavender.yaml b/themes/vxcode-lavender.yaml deleted file mode 100644 index ad30f39c..00000000 --- a/themes/vxcode-lavender.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vxcode lavender" -source: - marketplace_id: "evertjunior.vxcode-theme" - version: "0.0.15" - installs: 3239 - rating: 5 - ratings: 3 - author: "Evert Junior" - repo: "https://github.com/evertjr/vxcode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" -colors: - bg: "#E9E3EA" - fg: "#333333" - black: "#555555" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#DDDDDD" - brightBlack: "#888888" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#EEEEEE" -meta: - mode: "light" - accent: "orange" - hue: 321 - pair: null - contrast: - fg: 83.2 - black: 70.5 - red: 40.5 - green: 33.2 - yellow: 12.6 - blue: 40.4 - magenta: 37.9 - cyan: 29.3 - white: 0 - brightBlack: 47.6 - brightRed: 32.8 - brightGreen: 25 - brightYellow: 0 - brightBlue: 32.3 - brightMagenta: 29.7 - brightCyan: 20.8 - brightWhite: 0 diff --git a/themes/vxcode-lime.yaml b/themes/vxcode-lime.yaml deleted file mode 100644 index 4b5c9a69..00000000 --- a/themes/vxcode-lime.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vxcode lime" -source: - marketplace_id: "evertjunior.vxcode-theme" - version: "0.0.15" - installs: 3239 - rating: 5 - ratings: 3 - author: "Evert Junior" - repo: "https://github.com/evertjr/vxcode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" -colors: - bg: "#DDF2E5" - fg: "#333333" - black: "#555555" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#DDDDDD" - brightBlack: "#888888" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#EEEEEE" -meta: - mode: "light" - accent: "orange" - hue: 159 - pair: null - contrast: - fg: 87.9 - black: 75.2 - red: 45.2 - green: 37.9 - yellow: 17.2 - blue: 45.1 - magenta: 42.6 - cyan: 33.9 - white: 0 - brightBlack: 52.3 - brightRed: 37.5 - brightGreen: 29.6 - brightYellow: 8.2 - brightBlue: 37 - brightMagenta: 34.3 - brightCyan: 25.5 - brightWhite: 0 diff --git a/themes/vxcode-oled.yaml b/themes/vxcode-oled.yaml deleted file mode 100644 index 4a050d2f..00000000 --- a/themes/vxcode-oled.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "vxcode OLED" -source: - marketplace_id: "evertjunior.vxcode-theme" - version: "0.0.15" - installs: 3239 - rating: 5 - ratings: 3 - author: "Evert Junior" - repo: "https://github.com/evertjr/vxcode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" -colors: - bg: "#000000" - fg: "#E3E3E3" - black: "#333333" - red: "#E47474" - green: "#66B395" - yellow: "#E2C97E" - blue: "#7098D4" - magenta: "#B290BA" - cyan: "#6AB8C0" - white: "#E3E3E3" - brightBlack: "#666666" - brightRed: "#F48484" - brightGreen: "#76C3A5" - brightYellow: "#F2D98E" - brightBlue: "#80A8E4" - brightMagenta: "#C2A0CA" - brightCyan: "#7AC8D0" - brightWhite: "#F6F6F6" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 89.8 - black: 0 - red: 45.8 - green: 53.3 - yellow: 74.9 - blue: 45.9 - magenta: 48.5 - cyan: 57.4 - white: 89.8 - brightBlack: 23 - brightRed: 53.7 - brightGreen: 61.9 - brightYellow: 84.5 - brightBlue: 54.2 - brightMagenta: 57 - brightCyan: 66.2 - brightWhite: 101.9 diff --git a/themes/w40-theme.yaml b/themes/w40-theme.yaml index d7d4910d..50df9f5f 100644 --- a/themes/w40-theme.yaml +++ b/themes/w40-theme.yaml @@ -1,17 +1,18 @@ name: "w40 Theme" source: - marketplace_id: "emersonsm.pinkcode-theme" - version: "1.3.4" - installs: 702 + marketplace_id: "emersonsm.w40-theme" + version: "1.2.7" + installs: 1145 rating: 0 ratings: 0 author: "emersonsm" - repo: "https://github.com/emersonsm/pinkcode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=emersonsm.pinkcode-theme" + repo: "https://github.com/emersonsm/w40" + url: "https://marketplace.visualstudio.com/items?itemName=emersonsm.w40-theme" + formats: null colors: - bg: "#181C24" + bg: "#272C35" fg: "#E5E5E5" - black: "#181C24" + black: "#272C35" red: "#CD84C8" green: "#C4BFA2" yellow: "#DDEC5B" @@ -30,23 +31,23 @@ colors: meta: mode: "dark" accent: "green" - hue: 264 + hue: 262 pair: null contrast: - fg: 89.5 + fg: 86.8 black: 0 - red: 47.8 - green: 66 - yellow: 87.8 - blue: 47.8 - magenta: 47.8 - cyan: 89.5 - white: 89.5 - brightBlack: 13 - brightRed: 89.5 - brightGreen: 89.5 - brightYellow: 89.4 - brightBlue: 47.8 - brightMagenta: 47.8 - brightCyan: 89.5 - brightWhite: 89.5 + red: 45.2 + green: 63.4 + yellow: 85.1 + blue: 45.2 + magenta: 45.2 + cyan: 86.8 + white: 86.8 + brightBlack: 10.4 + brightRed: 86.8 + brightGreen: 86.8 + brightYellow: 86.7 + brightBlue: 45.2 + brightMagenta: 45.2 + brightCyan: 86.8 + brightWhite: 86.8 diff --git a/themes/walking-in-the-dark-red.yaml b/themes/walking-in-the-dark-red.yaml index f8c2a5c4..cca07c15 100644 --- a/themes/walking-in-the-dark-red.yaml +++ b/themes/walking-in-the-dark-red.yaml @@ -1,11 +1,14 @@ -name: "Walking in the dark - RED" +name: "Walking-in-the-dark-RED" source: marketplace_id: "mayconfelipe.walking-in-the-dark-red" version: "3.0.0" installs: 173 + rating: 0 + ratings: 0 author: "Maycon Felipe Silva" repo: "https://github.com/mayconfelipes/VsCodeTheme" url: "https://marketplace.visualstudio.com/items?itemName=mayconfelipe.walking-in-the-dark-red" + formats: null colors: bg: "#191919" fg: "#E2E2E2" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "pink" hue: null + pair: null contrast: fg: 87.9 black: 0 diff --git a/themes/wallbash.yaml b/themes/wallbash.yaml index ccb8a75c..18007a1d 100644 --- a/themes/wallbash.yaml +++ b/themes/wallbash.yaml @@ -1,13 +1,14 @@ -name: "wallbash" +name: "Wallbash" source: marketplace_id: "TheHyDEProject.wallbash" version: "0.3.7" - installs: 2230 + installs: 2232 rating: 5 ratings: 1 author: "The HyDE Project" repo: "https://github.com/HyDE-Project/vscode-wallbash" url: "https://marketplace.visualstudio.com/items?itemName=TheHyDEProject.wallbash" + formats: null colors: bg: "#2C2525" fg: "#FFFFFF" diff --git a/themes/walloco-light-theme.yaml b/themes/walloco-light-theme.yaml index e49ec4c9..dc85567a 100644 --- a/themes/walloco-light-theme.yaml +++ b/themes/walloco-light-theme.yaml @@ -8,6 +8,7 @@ source: author: "Steven Waller" repo: "https://github.com/stevenwaller/walloco-light-theme" url: "https://marketplace.visualstudio.com/items?itemName=StevenWaller.walloco-light-theme" + formats: null colors: bg: "#FFFFFF" fg: "#395063" diff --git a/themes/walls-fill.yaml b/themes/walls-fill.yaml index 78cc4555..ffebdda8 100644 --- a/themes/walls-fill.yaml +++ b/themes/walls-fill.yaml @@ -8,6 +8,7 @@ source: author: "mmmint" repo: "https://github.com/mmmintdesign/vscode-walls-theme-dark" url: "https://marketplace.visualstudio.com/items?itemName=mmmint.walls-theme-dark" + formats: null colors: bg: "#191919" fg: "#868686" diff --git a/themes/wandering-mercenary.yaml b/themes/wandering-mercenary.yaml index 3688cadf..f41a5da9 100644 --- a/themes/wandering-mercenary.yaml +++ b/themes/wandering-mercenary.yaml @@ -8,6 +8,7 @@ source: author: "FastExtract" repo: "https://github.com/RudigerMorinDocter/Wandering-Mercenary" url: "https://marketplace.visualstudio.com/items?itemName=FastExtract.wandering-mercenary" + formats: null colors: bg: "#1B1A1A" fg: "#DDE7E5" diff --git a/themes/wangyj-black.yaml b/themes/wangyj-black.yaml index f8a9d026..a12710cf 100644 --- a/themes/wangyj-black.yaml +++ b/themes/wangyj-black.yaml @@ -8,6 +8,7 @@ source: author: "wyj" repo: "https://github.com/wangyjhh/nice_vscode_extension" url: "https://marketplace.visualstudio.com/items?itemName=wangyjhh.nice-vscode-extension" + formats: null colors: bg: "#000000" fg: "#DBD7CA" diff --git a/themes/wangyj-bright-black.yaml b/themes/wangyj-bright-black.yaml index d7a9f787..caf940f3 100644 --- a/themes/wangyj-bright-black.yaml +++ b/themes/wangyj-bright-black.yaml @@ -8,6 +8,7 @@ source: author: "wyj" repo: "https://github.com/wangyjhh/nice_vscode_extension" url: "https://marketplace.visualstudio.com/items?itemName=wangyjhh.nice-vscode-extension" + formats: null colors: bg: "#121212" fg: "#DBD7CA" diff --git a/themes/wangyj-film-black.yaml b/themes/wangyj-film-black.yaml index 3a03d769..cfde61e5 100644 --- a/themes/wangyj-film-black.yaml +++ b/themes/wangyj-film-black.yaml @@ -8,6 +8,7 @@ source: author: "wyj" repo: "https://github.com/wangyjhh/nice_vscode_extension" url: "https://marketplace.visualstudio.com/items?itemName=wangyjhh.nice-vscode-extension" + formats: null colors: bg: "#0D0F10" fg: "#D9D1BD" diff --git a/themes/wangyj-film-light.yaml b/themes/wangyj-film-light.yaml index 0ba17017..335b59c0 100644 --- a/themes/wangyj-film-light.yaml +++ b/themes/wangyj-film-light.yaml @@ -8,6 +8,7 @@ source: author: "wyj" repo: "https://github.com/wangyjhh/nice_vscode_extension" url: "https://marketplace.visualstudio.com/items?itemName=wangyjhh.nice-vscode-extension" + formats: null colors: bg: "#D9D1BD" fg: "#0D0F10" diff --git a/themes/warlock-contrast.yaml b/themes/warlock-contrast.yaml deleted file mode 100644 index bc2a8c46..00000000 --- a/themes/warlock-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "warlock-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#171123" - fg: "#FFFFFF" - black: "#221934" - red: "#BA0E2E" - green: "#F46036" - yellow: "#5B85AA" - blue: "#5B64A3" - magenta: "#9559C6" - cyan: "#F46036" - white: "#FFFFFF" - brightBlack: "#443268" - brightRed: "#F03E5F" - brightGreen: "#F9AC97" - brightYellow: "#9EB7CD" - brightBlue: "#9CA2C8" - brightMagenta: "#C5A5E0" - brightCyan: "#F9AC97" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 298 - pair: null - contrast: - fg: 107.1 - black: 0 - red: 20.7 - green: 42.8 - yellow: 34.5 - blue: 23.4 - magenta: 29 - cyan: 42.8 - white: 107.1 - brightBlack: 0 - brightRed: 37 - brightGreen: 67.2 - brightYellow: 60.9 - brightBlue: 52.2 - brightMagenta: 59.6 - brightCyan: 67.2 - brightWhite: 107.1 diff --git a/themes/warlock-light.yaml b/themes/warlock-light.yaml deleted file mode 100644 index bc9f42eb..00000000 --- a/themes/warlock-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "warlock-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#4B4060" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#F46036" - yellow: "#7EB1DD" - blue: "#7C86D6" - magenta: "#B67AE8" - cyan: "#F46036" - white: "#574A6F" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#F9AC97" - brightYellow: "#CFE2F2" - brightBlue: "#CACEEE" - brightMagenta: "#E6D1F7" - brightCyan: "#F9AC97" - brightWhite: "#7B6A9C" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.1 - black: 0 - red: 80.3 - green: 58.2 - yellow: 44.8 - blue: 61 - magenta: 56.8 - cyan: 58.2 - white: 87.8 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 34.6 - brightYellow: 16.2 - brightBlue: 25.2 - brightMagenta: 20.1 - brightCyan: 34.6 - brightWhite: 73.2 diff --git a/themes/warlock.yaml b/themes/warlock.yaml deleted file mode 100644 index 3349a069..00000000 --- a/themes/warlock.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "warlock" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#4B4060" - fg: "#FFFFFF" - black: "#574A6F" - red: "#BA0E2E" - green: "#F46036" - yellow: "#7EB1DD" - blue: "#7C86D6" - magenta: "#B67AE8" - cyan: "#F46036" - white: "#FFFFFF" - brightBlack: "#7B6A9C" - brightRed: "#F03E5F" - brightGreen: "#F9AC97" - brightYellow: "#CFE2F2" - brightBlue: "#CACEEE" - brightMagenta: "#E6D1F7" - brightCyan: "#F9AC97" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 300 - pair: null - contrast: - fg: 96.3 - black: 0 - red: 9.9 - green: 32 - yellow: 45.7 - blue: 29.1 - magenta: 33.4 - cyan: 32 - white: 96.3 - brightBlack: 16.9 - brightRed: 26.2 - brightGreen: 56.4 - brightYellow: 75.9 - brightBlue: 66.3 - brightMagenta: 71.8 - brightCyan: 56.4 - brightWhite: 96.3 diff --git a/themes/warm-black.yaml b/themes/warm-black.yaml index ca43d60b..05037f16 100644 --- a/themes/warm-black.yaml +++ b/themes/warm-black.yaml @@ -8,6 +8,7 @@ source: author: "vaghylevente" repo: "https://github.com/vaghylevente/warm-black-theme" url: "https://marketplace.visualstudio.com/items?itemName=vaghylevente.warm-black" + formats: null colors: bg: "#060606" fg: "#EBDBB2" diff --git a/themes/warm-burnout-dark.yaml b/themes/warm-burnout-dark.yaml deleted file mode 100644 index 9ae65197..00000000 --- a/themes/warm-burnout-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "warm-burnout-dark" -source: - marketplace_id: "felip3fdl.warm-burnout" - version: "0.1.6" - installs: 15 - rating: 5 - ratings: 1 - author: "Felipe F Lima" - repo: "https://github.com/felipefdl/warm-burnout" - url: "https://marketplace.visualstudio.com/items?itemName=felip3fdl.warm-burnout" -colors: - bg: "#1A1510" - fg: "#BFBDB6" - black: "#23211B" - red: "#F06B73" - green: "#70BF56" - yellow: "#FDB04C" - blue: "#4FBFFF" - magenta: "#D0A1FF" - cyan: "#93E2C8" - white: "#C7C7C7" - brightBlack: "#686868" - brightRed: "#F07178" - brightGreen: "#AAD94C" - brightYellow: "#FFB454" - brightBlue: "#59C2FF" - brightMagenta: "#D2A6FF" - brightCyan: "#95E6CB" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: 67 - pair: null - contrast: - fg: 65.9 - black: 0 - red: 45.2 - green: 56.8 - yellow: 67.7 - blue: 61.7 - magenta: 61.5 - cyan: 78.8 - white: 71.8 - brightBlack: 23 - brightRed: 46.7 - brightGreen: 73.4 - brightYellow: 69.7 - brightBlue: 63.4 - brightMagenta: 63.5 - brightCyan: 81 - brightWhite: 107 diff --git a/themes/warm-burnout-light.yaml b/themes/warm-burnout-light.yaml index c4e3ac54..0665204a 100644 --- a/themes/warm-burnout-light.yaml +++ b/themes/warm-burnout-light.yaml @@ -8,6 +8,12 @@ source: author: "Felipe F Lima" repo: "https://github.com/felipefdl/warm-burnout" url: "https://marketplace.visualstudio.com/items?itemName=felip3fdl.warm-burnout" + formats: + ghostty: "https://raw.githubusercontent.com/felipefdl/warm-burnout/main/ghostty/AGENTS.md" + iterm2: "https://raw.githubusercontent.com/felipefdl/warm-burnout/main/iterm2/Warm Burnout Dark.itermcolors" + windows-terminal: "https://raw.githubusercontent.com/felipefdl/warm-burnout/main/windows-terminal/warm-burnout-dark.json" + xcode: "https://raw.githubusercontent.com/felipefdl/warm-burnout/main/xcode/Warm Burnout Dark.xccolortheme" + nvim: "https://raw.githubusercontent.com/felipefdl/warm-burnout/main/nvim/lua/warm-burnout/highlights.lua" colors: bg: "#F5EDE0" fg: "#3A3630" diff --git a/themes/warm-orange-enthusiasm-creativity.yaml b/themes/warm-orange-enthusiasm-creativity.yaml index f8126e2d..bf277026 100644 --- a/themes/warm-orange-enthusiasm-creativity.yaml +++ b/themes/warm-orange-enthusiasm-creativity.yaml @@ -8,6 +8,7 @@ source: author: "akashbadole" repo: "https://github.com/akashsbadole/dev-psychology-themes" url: "https://marketplace.visualstudio.com/items?itemName=akashbadole.dev-ideas-themes" + formats: null colors: bg: "#1A0F05" fg: "#FFF3E0" diff --git a/themes/warm-orange-theme.yaml b/themes/warm-orange-theme.yaml index 4deb9d7e..ba53a63b 100644 --- a/themes/warm-orange-theme.yaml +++ b/themes/warm-orange-theme.yaml @@ -8,6 +8,7 @@ source: author: "JerryJ" repo: "https://github.com/xyjie37/WarmOrange" url: "https://marketplace.visualstudio.com/items?itemName=JerryJ.trae-warm-orange-theme" + formats: null colors: bg: "#FAF8F3" fg: "#5C4A3A" diff --git a/themes/warmkai-pro.yaml b/themes/warmkai-pro.yaml deleted file mode 100644 index cefa911d..00000000 --- a/themes/warmkai-pro.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Warmkai Pro" -source: - marketplace_id: "ViciandoCodigo.warmkai" - version: "1.4.0" - installs: 279 - rating: 5 - ratings: 1 - author: "Viciando Codigo" - repo: "https://github.com/Torr1co/warmkai" - url: "https://marketplace.visualstudio.com/items?itemName=ViciandoCodigo.warmkai" -colors: - bg: "#F7F0DD" - fg: "#000000" - black: "#FDF9F3" - red: "#E1221F" - green: "#00A31E" - yellow: "#BF4F10" - blue: "#B78900" - magenta: "#6529B8" - cyan: "#2679D1" - white: "#000000" - brightBlack: "#8D8D8D" - brightRed: "#E1221F" - brightGreen: "#00A31E" - brightYellow: "#BF4F10" - brightBlue: "#B78900" - brightMagenta: "#6529B8" - brightCyan: "#2679D1" - brightWhite: "#000000" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 97.3 - black: 0 - red: 61.9 - green: 51.4 - yellow: 63.9 - blue: 50 - magenta: 78.5 - cyan: 61.5 - white: 97.3 - brightBlack: 51.8 - brightRed: 61.9 - brightGreen: 51.4 - brightYellow: 63.9 - brightBlue: 50 - brightMagenta: 78.5 - brightCyan: 61.5 - brightWhite: 97.3 diff --git a/themes/waste-contrast.yaml b/themes/waste-contrast.yaml deleted file mode 100644 index 19c99e2b..00000000 --- a/themes/waste-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "waste-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#081011" - fg: "#B1C7CC" - black: "#102022" - red: "#BA0E2E" - green: "#43BDB2" - yellow: "#BBD4BE" - blue: "#F9D6BC" - magenta: "#F7A8A5" - cyan: "#43BDB2" - white: "#C0D2D6" - brightBlack: "#295156" - brightRed: "#F03E5F" - brightGreen: "#8ED7D1" - brightYellow: "#F9FCFA" - brightBlue: "#FFFFFF" - brightMagenta: "#FFFFFF" - brightCyan: "#8ED7D1" - brightWhite: "#EFF3F4" -meta: - mode: "dark" - accent: "orange" - hue: 206 - pair: null - contrast: - fg: 70 - black: 0 - red: 21.1 - green: 56.9 - yellow: 76.2 - blue: 85.3 - magenta: 66.3 - cyan: 56.9 - white: 76.9 - brightBlack: 12.1 - brightRed: 37.4 - brightGreen: 74.1 - brightYellow: 105 - brightBlue: 107.5 - brightMagenta: 107.5 - brightCyan: 74.1 - brightWhite: 99.1 diff --git a/themes/waste-light.yaml b/themes/waste-light.yaml deleted file mode 100644 index 9910991b..00000000 --- a/themes/waste-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "waste-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#43BDB2" - yellow: "#95AD97" - blue: "#D3B298" - magenta: "#F7A8A5" - cyan: "#43BDB2" - white: "#515151" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#8ED7D1" - brightYellow: "#CED9CF" - brightBlue: "#F2E7DF" - brightMagenta: "#FFFFFF" - brightCyan: "#8ED7D1" - brightWhite: "#777777" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 80.3 - green: 44.9 - yellow: 47.5 - blue: 38.3 - magenta: 35.8 - cyan: 44.9 - white: 87.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 28.4 - brightYellow: 21.6 - brightBlue: 10.6 - brightMagenta: 0 - brightCyan: 28.4 - brightWhite: 71.1 diff --git a/themes/waste.yaml b/themes/waste.yaml deleted file mode 100644 index c04ea1c6..00000000 --- a/themes/waste.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "waste" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#1B353A" - fg: "#B1C7CC" - black: "#23454B" - red: "#BA0E2E" - green: "#43BDB2" - yellow: "#BBD4BE" - blue: "#F9D6BC" - magenta: "#F7A8A5" - cyan: "#43BDB2" - white: "#C0D2D6" - brightBlack: "#3B7580" - brightRed: "#F03E5F" - brightGreen: "#8ED7D1" - brightYellow: "#F9FCFA" - brightBlue: "#FFFFFF" - brightMagenta: "#FFFFFF" - brightCyan: "#8ED7D1" - brightWhite: "#EFF3F4" -meta: - mode: "dark" - accent: "orange" - hue: 211 - pair: null - contrast: - fg: 64.9 - black: 0 - red: 16 - green: 51.8 - yellow: 71.1 - blue: 80.2 - magenta: 61.2 - cyan: 51.8 - white: 71.8 - brightBlack: 20.7 - brightRed: 32.3 - brightGreen: 69 - brightYellow: 99.9 - brightBlue: 102.4 - brightMagenta: 102.4 - brightCyan: 69 - brightWhite: 94 diff --git a/themes/water-grape.yaml b/themes/water-grape.yaml index a1125414..3fdac2e6 100644 --- a/themes/water-grape.yaml +++ b/themes/water-grape.yaml @@ -8,6 +8,7 @@ source: author: "qfilip" repo: "https://github.com/qfilip/watergrape-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=qfilip.watergrape-theme" + formats: null colors: bg: "#222222" fg: "#E3E2E0" diff --git a/themes/waterbyte-classic-2022-light.yaml b/themes/waterbyte-classic-2022-light.yaml deleted file mode 100644 index 85dbe33c..00000000 --- a/themes/waterbyte-classic-2022-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Waterbyte - Classic 2022 Light" -source: - marketplace_id: "ungarmichael.wbyt-theme" - version: "0.2.3" - installs: 240 - rating: 5 - ratings: 1 - author: "Michael Ungar" - repo: "https://github.com/ungarmichael/wbyt-theme" - url: "https://marketplace.visualstudio.com/items?itemName=ungarmichael.wbyt-theme" -colors: - bg: "#FFFFFF" - fg: "#022EC6" - black: "#000000" - red: "#E53935" - green: "#91B859" - yellow: "#FFB62C" - blue: "#6182B8" - magenta: "#7C4DFF" - cyan: "#39ADB5" - white: "#FFFFFF" - brightBlack: "#90A4AE" - brightRed: "#E53935" - brightGreen: "#91B859" - brightYellow: "#FFB62C" - brightBlue: "#6182B8" - brightMagenta: "#7C4DFF" - brightCyan: "#39ADB5" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 90.4 - black: 106 - red: 67.7 - green: 44.9 - yellow: 31.7 - blue: 66.3 - magenta: 72.6 - cyan: 51.8 - white: 0 - brightBlack: 50.6 - brightRed: 67.7 - brightGreen: 44.9 - brightYellow: 31.7 - brightBlue: 66.3 - brightMagenta: 72.6 - brightCyan: 51.8 - brightWhite: 0 diff --git a/themes/watercourse.yaml b/themes/watercourse.yaml index bd23127e..c9fdb0f2 100644 --- a/themes/watercourse.yaml +++ b/themes/watercourse.yaml @@ -1,11 +1,14 @@ -name: "WaterCourse" +name: "watercourse" source: marketplace_id: "Arber34.watercourse" version: "0.1.0" installs: 246 + rating: 0 + ratings: 0 author: "Arber34" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Arber34.watercourse" + formats: null colors: bg: "#070808" fg: "#BD5CFF" diff --git a/themes/watermelon.yaml b/themes/watermelon.yaml index cee5fb68..8fcac1b7 100644 --- a/themes/watermelon.yaml +++ b/themes/watermelon.yaml @@ -8,6 +8,7 @@ source: author: "mlkywy" repo: "https://github.com/alshei/vscode-watermelon" url: "https://marketplace.visualstudio.com/items?itemName=mlkywy.watermelon-theme" + formats: null colors: bg: "#151317" fg: "#E0E0E0" diff --git a/themes/wave-delight-vs-dark-cool.yaml b/themes/wave-delight-vs-dark-cool.yaml deleted file mode 100644 index 2e563bcc..00000000 --- a/themes/wave-delight-vs-dark-cool.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Wave Delight VS Dark Cool" -source: - marketplace_id: "sadhu.wave-delight" - version: "0.0.7" - installs: 910 - rating: 5 - ratings: 1 - author: "sadhu" - repo: "https://github.com/itzDM/wave-delight-vs-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sadhu.wave-delight" -colors: - bg: "#191D21" - fg: "#FFFFFF" - black: "#242A2F" - red: "#BA0E2E" - green: "#E85362" - yellow: "#5392DB" - blue: "#5392DB" - magenta: "#E85362" - cyan: "#9B78DB" - white: "#FFFFFF" - brightBlack: "#45505B" - brightRed: "#F03E5F" - brightGreen: "#F4ADB4" - brightYellow: "#A7C7ED" - brightBlue: "#A7C7ED" - brightMagenta: "#F4ADB4" - brightCyan: "#D7C9F0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 106.2 - black: 0 - red: 19.9 - green: 37.5 - yellow: 40.7 - blue: 40.7 - magenta: 37.5 - cyan: 38.3 - white: 106.2 - brightBlack: 12.1 - brightRed: 36.1 - brightGreen: 66.8 - brightYellow: 69.3 - brightBlue: 69.3 - brightMagenta: 66.8 - brightCyan: 75.9 - brightWhite: 106.2 diff --git a/themes/wavefire.yaml b/themes/wavefire.yaml index 7787701b..1e88e02c 100644 --- a/themes/wavefire.yaml +++ b/themes/wavefire.yaml @@ -8,6 +8,7 @@ source: author: "Charles Kremer" repo: "https://github.com/Krecharles/wavefire" url: "https://marketplace.visualstudio.com/items?itemName=Krecharles.wavefire" + formats: null colors: bg: "#1F1F23" fg: "#ABB2BF" diff --git a/themes/wawdog-dark.yaml b/themes/wawdog-dark.yaml deleted file mode 100644 index cc55c16f..00000000 --- a/themes/wawdog-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "wawdog-dark" -source: - marketplace_id: "wawdogdev.wawdog-dark-theme" - version: "0.0.4" - installs: 121 - author: "wawdogdev" - repo: "https://github.com/wawdog/vscode-wawdog-dark" - url: "https://marketplace.visualstudio.com/items?itemName=wawdogdev.wawdog-dark-theme" -colors: - bg: "#191D21" - fg: "#D3D3D3" - black: "#242A2F" - red: "#BA0E2E" - green: "#E85362" - yellow: "#5392DB" - blue: "#5392DB" - magenta: "#E85362" - cyan: "#9B78DB" - white: "#D3D3D3" - brightBlack: "#45505B" - brightRed: "#F03E5F" - brightGreen: "#F4ADB4" - brightYellow: "#A7C7ED" - brightBlue: "#A7C7ED" - brightMagenta: "#F4ADB4" - brightCyan: "#D7C9F0" - brightWhite: "#D3D3D3" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 78.2 - black: 0 - red: 19.9 - green: 37.5 - yellow: 40.7 - blue: 40.7 - magenta: 37.5 - cyan: 38.3 - white: 78.2 - brightBlack: 12.1 - brightRed: 36.1 - brightGreen: 66.8 - brightYellow: 69.3 - brightBlue: 69.3 - brightMagenta: 66.8 - brightCyan: 75.9 - brightWhite: 78.2 diff --git a/themes/wdark-theme.yaml b/themes/wdark-theme.yaml index cbb7a6e2..f1166597 100644 --- a/themes/wdark-theme.yaml +++ b/themes/wdark-theme.yaml @@ -8,6 +8,7 @@ source: author: "wykys" repo: "https://gitlab.com/wykys/vscode-theme-wdark" url: "https://marketplace.visualstudio.com/items?itemName=wykys.wdark" + formats: null colors: bg: "#000000" fg: "#AAAAAA" diff --git a/themes/webc-dark.yaml b/themes/webc-dark.yaml deleted file mode 100644 index 0220b482..00000000 --- a/themes/webc-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "webc-dark" -source: - marketplace_id: "dwkns.webc" - version: "0.0.11" - installs: 1162 - rating: 0 - ratings: 0 - author: "dwkns" - repo: "https://github.com/dwkns/vscode-webc" - url: "https://marketplace.visualstudio.com/items?itemName=dwkns.webc" -colors: - bg: "#171819" - fg: "#DEECEC" - black: "#000000" - red: "#FF5370" - green: "#81B336" - yellow: "#E6D53F" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#4A4A4A" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 92.5 - black: 0 - red: 43.5 - green: 52.1 - yellow: 78.6 - blue: 55.8 - magenta: 53.7 - cyan: 78.2 - white: 106.8 - brightBlack: 10.9 - brightRed: 43.5 - brightGreen: 84.1 - brightYellow: 78.8 - brightBlue: 55.8 - brightMagenta: 53.7 - brightCyan: 78.2 - brightWhite: 106.8 diff --git a/themes/webstorm-darcula-dark-theme.yaml b/themes/webstorm-darcula-dark-theme.yaml index bf9c3a3c..3f693abf 100644 --- a/themes/webstorm-darcula-dark-theme.yaml +++ b/themes/webstorm-darcula-dark-theme.yaml @@ -2,12 +2,13 @@ name: "Webstorm Darcula Dark Theme" source: marketplace_id: "AleksandrZorin.webstorm-darcula-dark-theme" version: "1.0.1" - installs: 1932 + installs: 1934 rating: 0 ratings: 0 author: "Alexander Zorin" repo: "https://github.com/zzzoryn/webstorm-darkula-dark-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=AleksandrZorin.webstorm-darcula-dark-theme" + formats: null colors: bg: "#232425" fg: "#A9B7C6" diff --git a/themes/webstorm-intellij-darcula-theme.yaml b/themes/webstorm-intellij-darcula-theme.yaml index 7f9114d8..67b49d43 100644 --- a/themes/webstorm-intellij-darcula-theme.yaml +++ b/themes/webstorm-intellij-darcula-theme.yaml @@ -2,12 +2,13 @@ name: "Webstorm IntelliJ Darcula Theme" source: marketplace_id: "xr0master.webstorm-intellij-darcula-theme" version: "1.1.1" - installs: 131610 + installs: 131651 rating: 4.95 ratings: 19 author: "Sergey Khomushin" repo: "https://github.com/xr0master/vscode-intellij-darcula-theme" url: "https://marketplace.visualstudio.com/items?itemName=xr0master.webstorm-intellij-darcula-theme" + formats: null colors: bg: "#2B2B2B" fg: "#A9B7C6" diff --git a/themes/webstorm-monokai.yaml b/themes/webstorm-monokai.yaml index a2830b87..eafc626e 100644 --- a/themes/webstorm-monokai.yaml +++ b/themes/webstorm-monokai.yaml @@ -8,6 +8,7 @@ source: author: "ctwhome" repo: "https://github.com/ctwhome/webstorm-monokai-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=ctwhome.webstorm-monokai" + formats: null colors: bg: "#1E2017" fg: "#A9B7C6" diff --git a/themes/weiting-candycolor.yaml b/themes/weiting-candycolor.yaml deleted file mode 100644 index 2dafc0f1..00000000 --- a/themes/weiting-candycolor.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "weiting_candycolor" -source: - marketplace_id: "Weiting.weiting-s-color" - version: "0.0.1" - installs: 36 - rating: 0 - ratings: 0 - author: "Weiting Huang" - repo: "https://github.com/weiting53/weiting-s-color" - url: "https://marketplace.visualstudio.com/items?itemName=Weiting.weiting-s-color" -colors: - bg: "#430000" - fg: "#E5D4FF" - black: "#DBFFC2" - red: "#FFAFAF" - green: "#8CFFD3" - yellow: "#FFFFBD" - blue: "#B3D7FF" - magenta: "#FFE0FF" - cyan: "#8CE8FF" - white: "#E5E5E5" - brightBlack: "#E8E7B4" - brightRed: "#FF9191" - brightGreen: "#38FFAF" - brightYellow: "#FFFF55" - brightBlue: "#B8DAFF" - brightMagenta: "#FF89FF" - brightCyan: "#5EDFFF" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 29 - pair: null - contrast: - fg: 82.3 - black: 98.1 - red: 68.3 - green: 91.4 - yellow: 102.6 - blue: 77.6 - magenta: 91.2 - cyan: 82.1 - white: 88.4 - brightBlack: 87.8 - brightRed: 57.4 - brightGreen: 86.7 - brightYellow: 100.5 - brightBlue: 79.4 - brightMagenta: 60.4 - brightCyan: 75.2 - brightWhite: 88.4 diff --git a/themes/weitingcoder.yaml b/themes/weitingcoder.yaml index bea61f87..f0c6a347 100644 --- a/themes/weitingcoder.yaml +++ b/themes/weitingcoder.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "Weiting.peachforest" version: "0.1.0" installs: 196 + rating: 0 + ratings: 0 author: "Weiting Huang" repo: "https://github.com/weiting53/peachforest" url: "https://marketplace.visualstudio.com/items?itemName=Weiting.peachforest" + formats: null colors: bg: "#000000" fg: "#CD0000" diff --git a/themes/west-bengal-cultural-hub.yaml b/themes/west-bengal-cultural-hub.yaml index a9f34271..f355242d 100644 --- a/themes/west-bengal-cultural-hub.yaml +++ b/themes/west-bengal-cultural-hub.yaml @@ -8,6 +8,7 @@ source: author: "Sachin Ghadi" repo: "https://github.com/GhadiSachin/colors-of-india-themes" url: "https://marketplace.visualstudio.com/items?itemName=ProudIndian.colors-of-india-themes" + formats: null colors: bg: "#1A1416" fg: "#F8E8E0" diff --git a/themes/westmont-dark.yaml b/themes/westmont-dark.yaml deleted file mode 100644 index d8a069ba..00000000 --- a/themes/westmont-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Westmont Dark" -source: - marketplace_id: "LandonMoir.wst-theme" - version: "0.2.0" - installs: 105 - rating: 0 - ratings: 0 - author: "Landon Moir" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=LandonMoir.wst-theme" -colors: - bg: "#4B1019" - fg: "#D4D4D4" - black: "#B4B4B4" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 16 - pair: null - contrast: - fg: 76.8 - black: 58.1 - red: 24.1 - green: 50.4 - yellow: 83 - blue: 24.8 - magenta: 27.1 - cyan: 44.9 - white: 87.4 - brightBlack: 19.4 - brightRed: 35.9 - brightGreen: 60.9 - brightYellow: 93 - brightBlue: 37.4 - brightMagenta: 42.7 - brightCyan: 52.8 - brightWhite: 87.4 diff --git a/themes/what-the-hell.yaml b/themes/what-the-hell.yaml index 828e50a3..d152b84f 100644 --- a/themes/what-the-hell.yaml +++ b/themes/what-the-hell.yaml @@ -1,4 +1,4 @@ -name: "What The Hell" +name: "What the Hell" source: marketplace_id: "Barkerbg001.whatthehell-vscode" version: "1.0.7" @@ -8,6 +8,7 @@ source: author: "Barkerbg001" repo: "https://github.com/barkerbg001/whatthehell-vscode" url: "https://marketplace.visualstudio.com/items?itemName=Barkerbg001.whatthehell-vscode" + formats: null colors: bg: "#80FF00" fg: "#FF00FF" diff --git a/themes/wheel-color-theme.yaml b/themes/wheel-color-theme.yaml index 5bdb887a..9ca2330b 100644 --- a/themes/wheel-color-theme.yaml +++ b/themes/wheel-color-theme.yaml @@ -8,6 +8,7 @@ source: author: "eScape Technology LLC" repo: "https://escape-technology-llc.visualstudio.com/Color%20Wheel/_git/Color%20Wheel" url: "https://marketplace.visualstudio.com/items?itemName=escape-technology-llc.the-color-wheel" + formats: null colors: bg: "#092418" fg: "#F3CEDE" diff --git a/themes/wheel-light-color-theme.yaml b/themes/wheel-light-color-theme.yaml deleted file mode 100644 index e4f0c604..00000000 --- a/themes/wheel-light-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "wheel-light-color-theme" -source: - marketplace_id: "escape-technology-llc.the-color-wheel" - version: "0.7.2" - installs: 2425 - rating: 5 - ratings: 1 - author: "eScape Technology LLC" - repo: "https://escape-technology-llc.visualstudio.com/Color%20Wheel/_git/Color%20Wheel" - url: "https://marketplace.visualstudio.com/items?itemName=escape-technology-llc.the-color-wheel" -colors: - bg: "#DBF6E0" - fg: "#EEEEEE" - black: "#404040" - red: "#6F0B0B" - green: "#0B6F0B" - yellow: "#6F6F0B" - blue: "#0B0B6F" - magenta: "#6F0B6F" - cyan: "#0B6F6F" - white: "#838383" - brightBlack: "#808080" - brightRed: "#DE6F6F" - brightGreen: "#6FDE6F" - brightYellow: "#DEDE6F" - brightBlue: "#6F6FDE" - brightMagenta: "#DE6FDE" - brightCyan: "#6FDEDE" - brightWhite: "#A3A3A3" -meta: - mode: "light" - accent: "pink" - hue: 151 - pair: null - contrast: - fg: 0 - black: 84.6 - red: 86.6 - green: 71.6 - yellow: 66.8 - blue: 92.6 - magenta: 83.9 - cyan: 69.9 - white: 56 - brightBlack: 57.4 - brightRed: 49 - brightGreen: 20.6 - brightYellow: 10.7 - brightBlue: 59.2 - brightMagenta: 44.3 - brightCyan: 17.2 - brightWhite: 40 diff --git a/themes/whiskey-coder-dark.yaml b/themes/whiskey-coder-dark.yaml index 4c99f41e..adcac72c 100644 --- a/themes/whiskey-coder-dark.yaml +++ b/themes/whiskey-coder-dark.yaml @@ -8,6 +8,7 @@ source: author: "Subham Bera" repo: "https://github.com/subhambera/Whiskey-Coder-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SubhamBera.whiskey-coder-dark" + formats: null colors: bg: "#1A0F0A" fg: "#E6D4B7" diff --git a/themes/whiskey-coder-light.yaml b/themes/whiskey-coder-light.yaml index d35aa442..432a9bd2 100644 --- a/themes/whiskey-coder-light.yaml +++ b/themes/whiskey-coder-light.yaml @@ -8,6 +8,7 @@ source: author: "Subham Bera" repo: "https://github.com/subhambera/Whiskey-Coder-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SubhamBera.whiskey-coder-dark" + formats: null colors: bg: "#FDFBF7" fg: "#4A2C20" diff --git a/themes/white-blue-demo.yaml b/themes/white-blue-demo.yaml index e15bae1a..6db9f836 100644 --- a/themes/white-blue-demo.yaml +++ b/themes/white-blue-demo.yaml @@ -6,6 +6,7 @@ source: author: "white-blue-demo" repo: null url: "https://marketplace.visualstudio.com/items?itemName=white-blue-demo.white-blue-demo" + formats: null colors: bg: "#EDEFF1" fg: "#1D344F" diff --git a/themes/white-shade-color.yaml b/themes/white-shade-color.yaml deleted file mode 100644 index 8fd8f061..00000000 --- a/themes/white-shade-color.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "White Shade Color" -source: - marketplace_id: "silas0827.white-shade" - version: "0.1.0" - installs: 1439 - rating: 0 - ratings: 0 - author: "Silas Chen" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=silas0827.white-shade" -colors: - bg: "#FFFFFF" - fg: "#ABB2BF" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 41.8 - black: 106 - red: 74 - green: 49.2 - yellow: 57.9 - blue: 86.1 - magenta: 74.6 - cyan: 60.6 - white: 85.9 - brightBlack: 78.8 - brightRed: 74 - brightGreen: 40.9 - brightYellow: 40.9 - brightBlue: 86.1 - brightMagenta: 74.6 - brightCyan: 60.6 - brightWhite: 48.5 diff --git a/themes/white-winter.yaml b/themes/white-winter.yaml index a5bcb5bf..ef677787 100644 --- a/themes/white-winter.yaml +++ b/themes/white-winter.yaml @@ -2,12 +2,13 @@ name: "White Winter" source: marketplace_id: "jker.white-winter" version: "1.0.1" - installs: 12433 + installs: 12437 rating: 5 ratings: 2 author: "jker" repo: "https://github.com/guidolee/jker-white-winter" url: "https://marketplace.visualstudio.com/items?itemName=jker.white-winter" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/whiteboard.yaml b/themes/whiteboard.yaml deleted file mode 100644 index 05c11f1c..00000000 --- a/themes/whiteboard.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Whiteboard" -source: - marketplace_id: "jsm-dev.whiteboard-theme" - version: "1.0.1" - installs: 245 - author: "jsm" - repo: "https://github.com/jsm04/whiteboard-theme" - url: "https://marketplace.visualstudio.com/items?itemName=jsm-dev.whiteboard-theme" -colors: - bg: "#FCFCFC" - fg: "#000000" - black: "#29343D" - red: "#F8961E" - green: "#90BE6D" - yellow: "#F3722C" - blue: "#577590" - magenta: "#F9C74F" - cyan: "#43AA8B" - white: "#969696" - brightBlack: "#394956" - brightRed: "#F8961E" - brightGreen: "#90BE6D" - brightYellow: "#F3722C" - brightBlue: "#577590" - brightMagenta: "#F9C74F" - brightCyan: "#43AA8B" - brightWhite: "#ABABAB" -meta: - mode: "light" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 104.2 - black: 97 - red: 41.9 - green: 40.3 - yellow: 52.8 - blue: 71.6 - magenta: 24.3 - cyan: 52.6 - white: 54.3 - brightBlack: 89.6 - brightRed: 41.9 - brightGreen: 40.3 - brightYellow: 52.8 - brightBlue: 71.6 - brightMagenta: 24.3 - brightCyan: 52.6 - brightWhite: 43.5 diff --git a/themes/whitespace.yaml b/themes/whitespace.yaml index 7f6ab237..a49014a4 100644 --- a/themes/whitespace.yaml +++ b/themes/whitespace.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/yesomac/inspiration_themevsc" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" + formats: null colors: bg: "#ECFCF0" fg: "#001A0C" diff --git a/themes/wick.yaml b/themes/wick.yaml index cb4c3bc2..aface89c 100644 --- a/themes/wick.yaml +++ b/themes/wick.yaml @@ -8,6 +8,7 @@ source: author: "wick" repo: "https://github.com/olivergrass/wick-vscode" url: "https://marketplace.visualstudio.com/items?itemName=wick.wick" + formats: null colors: bg: "#21252B" fg: "#A9B2C3" diff --git a/themes/wicked.yaml b/themes/wicked.yaml index 3cdd2016..78c19645 100644 --- a/themes/wicked.yaml +++ b/themes/wicked.yaml @@ -1,52 +1,53 @@ -name: "Wicked" +name: "wicked" source: - marketplace_id: "RoxasKi.positively-wicked" - version: "1.0.5" - installs: 27 + marketplace_id: "heartfeltdreamofbeing.wicked" + version: "0.1.1" + installs: 37 rating: 0 ratings: 0 - author: "RoxasKi" - repo: "https://github.com/Roxaski/positively-wicked" - url: "https://marketplace.visualstudio.com/items?itemName=RoxasKi.positively-wicked" + author: "heartfeltdreamofbeing" + repo: "git:https://github.com/heartfeltdreamofbeing/wicked" + url: "https://marketplace.visualstudio.com/items?itemName=heartfeltdreamofbeing.wicked" + formats: null colors: - bg: "#1A1A1A" - fg: "#E8E6E3" - black: "#1A1A1A" - red: "#7A4A2E" - green: "#52A249" - yellow: "#359816" - blue: "#4A7C59" - magenta: "#5D7C5D" - cyan: "#3D8B6B" - white: "#C9C6C6" - brightBlack: "#4E6E4A" - brightRed: "#8B5A3C" - brightGreen: "#6BC95D" - brightYellow: "#3FBB19" - brightBlue: "#5C9670" - brightMagenta: "#739973" - brightCyan: "#4DA882" - brightWhite: "#F1F0EE" + bg: "#001713" + fg: "#FF008F" + black: "#FFFFFF" + red: "#C40000" + green: "#036D00" + yellow: "#D94800" + blue: "#0010FF" + magenta: "#B8005E" + cyan: "#006D68" + white: "#000000" + brightBlack: "#EBF7FF" + brightRed: "#FF0000" + brightGreen: "#0EB400" + brightYellow: "#FF6C00" + brightBlue: "#3248FF" + brightMagenta: "#FF0083" + brightCyan: "#00AD95" + brightWhite: "#242424" meta: mode: "dark" - accent: "green" - hue: null + accent: "purple" + hue: 181 pair: null contrast: - fg: 90.5 - black: 0 - red: 15.3 - green: 41.8 - yellow: 36.1 - blue: 26.7 - magenta: 28 - cyan: 32.3 - white: 71.2 - brightBlack: 21.7 - brightRed: 21.6 - brightGreen: 60.8 - brightYellow: 51.7 - brightBlue: 38.2 - brightMagenta: 41 - brightCyan: 45.4 - brightWhite: 96.8 + fg: 39 + black: 107.1 + red: 22.6 + green: 19.2 + yellow: 32.3 + blue: 15.6 + magenta: 21.1 + cyan: 20.7 + white: 0 + brightBlack: 100.6 + brightRed: 36.8 + brightGreen: 48.3 + brightYellow: 47.5 + brightBlue: 22.2 + brightMagenta: 38.6 + brightCyan: 47.3 + brightWhite: 0 diff --git a/themes/widgit-monokai.yaml b/themes/widgit-monokai.yaml index 45b890d1..abde9a05 100644 --- a/themes/widgit-monokai.yaml +++ b/themes/widgit-monokai.yaml @@ -6,6 +6,7 @@ source: author: "Widgit Labs" repo: "https://gitlab.com/widgitlabs/widgit-monokai/vscode" url: "https://marketplace.visualstudio.com/items?itemName=widgitlabs.widgit-monokai" + formats: null colors: bg: "#282C34" fg: "#ABB2BF" diff --git a/themes/wiity-green-eye-friendly.yaml b/themes/wiity-green-eye-friendly.yaml index 7f839bbc..8d962988 100644 --- a/themes/wiity-green-eye-friendly.yaml +++ b/themes/wiity-green-eye-friendly.yaml @@ -8,6 +8,7 @@ source: author: "Puszkarek" repo: "https://github.com/Puszkarek/wiity-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.wiity-vscode-theme" + formats: null colors: bg: "#0A0E0A" fg: "#D6EECF" diff --git a/themes/wiity-green.yaml b/themes/wiity-green.yaml index dfc19e01..4306e385 100644 --- a/themes/wiity-green.yaml +++ b/themes/wiity-green.yaml @@ -8,6 +8,7 @@ source: author: "Puszkarek" repo: "https://github.com/Puszkarek/wiity-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.wiity-vscode-theme" + formats: null colors: bg: "#0A0E0A" fg: "#66FF66" diff --git a/themes/wild-flower.yaml b/themes/wild-flower.yaml index 6cc24b91..687856e5 100644 --- a/themes/wild-flower.yaml +++ b/themes/wild-flower.yaml @@ -8,6 +8,7 @@ source: author: "The Half Blood Prince" repo: "https://github.com/the-halfbloodprince/Wild-Flower" url: "https://marketplace.visualstudio.com/items?itemName=TheHalfBloodPrince.wild-flower" + formats: null colors: bg: "#222222" fg: "#FF0000" diff --git a/themes/wildcat.yaml b/themes/wildcat.yaml index 0483790f..67c80b49 100644 --- a/themes/wildcat.yaml +++ b/themes/wildcat.yaml @@ -8,6 +8,7 @@ source: author: "Ergenekon Yigit" repo: "https://github.com/ergenekonyigit/wildcat-theme" url: "https://marketplace.visualstudio.com/items?itemName=ergenekonyigit.wildcat" + formats: null colors: bg: "#0C120F" fg: "#A6ACCD" diff --git a/themes/wildtype.yaml b/themes/wildtype.yaml index 14f34fc0..65b98b5d 100644 --- a/themes/wildtype.yaml +++ b/themes/wildtype.yaml @@ -8,6 +8,7 @@ source: author: "wildtype" repo: "https://github.com/wtype/wildtype-theme" url: "https://marketplace.visualstudio.com/items?itemName=wildtype.wildtype" + formats: null colors: bg: "#020A12" fg: "#AACBF1" diff --git a/themes/wildwest.yaml b/themes/wildwest.yaml index 5a25ceb9..61d34bca 100644 --- a/themes/wildwest.yaml +++ b/themes/wildwest.yaml @@ -8,6 +8,7 @@ source: author: "MaheshGaddhe00" repo: "https://github.com/Maheshoo7/WildWest" url: "https://marketplace.visualstudio.com/items?itemName=MaheshGaddhe00.wildWest" + formats: null colors: bg: "#001724" fg: "#B0B5B3" diff --git a/themes/will-o-wisp-theme.yaml b/themes/will-o-wisp-theme.yaml index ecde4209..dad4292a 100644 --- a/themes/will-o-wisp-theme.yaml +++ b/themes/will-o-wisp-theme.yaml @@ -8,6 +8,7 @@ source: author: "Simon Jäger" repo: "https://github.com/simon-jaeger/vscode-will-o-wisp-theme" url: "https://marketplace.visualstudio.com/items?itemName=simon-jaeger.will-o-wisp-theme" + formats: null colors: bg: "#202428" fg: "#B3B3B3" diff --git a/themes/willasm-emerald-sky.yaml b/themes/willasm-emerald-sky.yaml deleted file mode 100644 index 52bc8993..00000000 --- a/themes/willasm-emerald-sky.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "willasm.emerald.sky" -source: - marketplace_id: "willasm.emerald-sky" - version: "1.0.6" - installs: 710 - rating: 5 - ratings: 1 - author: "willasm" - repo: "https://github.com/willasm/emerald-sky" - url: "https://marketplace.visualstudio.com/items?itemName=willasm.emerald-sky" -colors: - bg: "#05100A" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 161 - pair: null - contrast: - fg: 80.2 - black: 0 - red: 27.4 - green: 53.7 - yellow: 86.3 - blue: 28.1 - magenta: 30.4 - cyan: 48.2 - white: 90.7 - brightBlack: 22.7 - brightRed: 39.2 - brightGreen: 64.2 - brightYellow: 96.3 - brightBlue: 40.7 - brightMagenta: 46 - brightCyan: 56.1 - brightWhite: 90.7 diff --git a/themes/willi-style-dracula-flavour.yaml b/themes/willi-style-dracula-flavour.yaml index 8d1f38b2..a59ac830 100644 --- a/themes/willi-style-dracula-flavour.yaml +++ b/themes/willi-style-dracula-flavour.yaml @@ -8,6 +8,7 @@ source: author: "wQ" repo: "https://github.com/iamstrawberry/willi-style" url: "https://marketplace.visualstudio.com/items?itemName=wq.willi-style" + formats: null colors: bg: "#2B2B2B" fg: "#D4D4D4" diff --git a/themes/willow.yaml b/themes/willow.yaml deleted file mode 100644 index ef3abb6d..00000000 --- a/themes/willow.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "willow" -source: - marketplace_id: "RaulWierzbiski.willow-theme" - version: "0.0.1" - installs: 902 - rating: 5 - ratings: 1 - author: "Raul Wierzbiński" - repo: "https://github.com/Wierzba13/willow-theme" - url: "https://marketplace.visualstudio.com/items?itemName=RaulWierzbiski.willow-theme" -colors: - bg: "#0A0A0A" - fg: "#D4D4D4" - black: "#131313" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 80.3 - black: 0 - red: 27.6 - green: 53.9 - yellow: 86.5 - blue: 28.3 - magenta: 30.6 - cyan: 48.4 - white: 90.9 - brightBlack: 22.9 - brightRed: 39.4 - brightGreen: 64.4 - brightYellow: 96.5 - brightBlue: 40.9 - brightMagenta: 46.2 - brightCyan: 56.3 - brightWhite: 90.9 diff --git a/themes/win-xp-luna.yaml b/themes/win-xp-luna.yaml deleted file mode 100644 index 3bc9101e..00000000 --- a/themes/win-xp-luna.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Win XP Luna" -source: - marketplace_id: "sinedied.vscode-windows-xp-theme" - version: "0.1.5" - installs: 28284 - rating: 4.9 - ratings: 10 - author: "Yohan Lasorsa" - repo: "https://github.com/sinedied/vscode-win-xp-theme" - url: "https://marketplace.visualstudio.com/items?itemName=sinedied.vscode-windows-xp-theme" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#909090" - red: "#C00000" - green: "#00C000" - yellow: "#C0C000" - blue: "#0000C0" - magenta: "#C000C0" - cyan: "#00C0C0" - white: "#C0C0C0" - brightBlack: "#C0C0C0" - brightRed: "#FF0000" - brightGreen: "#00FF00" - brightYellow: "#FFFF00" - brightBlue: "#0000FF" - brightMagenta: "#FF00FF" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106 - black: 59.1 - red: 79.3 - green: 47.4 - yellow: 37.2 - blue: 94 - magenta: 73.5 - cyan: 43.8 - white: 34 - brightBlack: 34 - brightRed: 64.1 - brightGreen: 17.1 - brightYellow: 0 - brightBlue: 85.8 - brightMagenta: 55.6 - brightCyan: 11.8 - brightWhite: 0 diff --git a/themes/win10.yaml b/themes/win10.yaml index 85551dab..2d8e8e8d 100644 --- a/themes/win10.yaml +++ b/themes/win10.yaml @@ -8,6 +8,7 @@ source: author: "Meitrox" repo: "https://github.com/Meitrox/dark-navy-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Meitrox9.dark-navy-theme" + formats: null colors: bg: "#0C131D" fg: "#FFFFFF" diff --git a/themes/winclassic.yaml b/themes/winclassic.yaml index 30eefa12..cf5ecb6e 100644 --- a/themes/winclassic.yaml +++ b/themes/winclassic.yaml @@ -8,6 +8,7 @@ source: author: "disk0" repo: "https://github.com/disco0/win-classic-theme" url: "https://marketplace.visualstudio.com/items?itemName=disk0.win-classic-theme" + formats: null colors: bg: "#EFEFEF" fg: "#000000" diff --git a/themes/wind-dark-slate.yaml b/themes/wind-dark-slate.yaml deleted file mode 100644 index d9392566..00000000 --- a/themes/wind-dark-slate.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Wind Dark Slate" -source: - marketplace_id: "calvinludwig.wind-theme" - version: "1.0.0" - installs: 1682 - rating: 5 - ratings: 3 - author: "Calvin Ludwig" - repo: "https://github.com/calvinludwig/wind-theme" - url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" -colors: - bg: "#0F172A" - fg: "#CBD5E1" - black: "#1E293B" - red: "#F43F5E" - green: "#22C55E" - yellow: "#FACC15" - blue: "#3B82F6" - magenta: "#A855F7" - cyan: "#06B6D4" - white: "#F1F5F9" - brightBlack: "#334155" - brightRed: "#FB7185" - brightGreen: "#4ADE80" - brightYellow: "#FDE047" - brightBlue: "#60A5FA" - brightMagenta: "#C084FC" - brightCyan: "#22D3EE" - brightWhite: "#F8FAFC" -meta: - mode: "dark" - accent: "magenta" - hue: 266 - pair: null - contrast: - fg: 79.3 - black: 0 - red: 37.7 - green: 56.7 - yellow: 77.7 - blue: 36.7 - magenta: 34.3 - cyan: 53.8 - white: 99.8 - brightBlack: 7.4 - brightRed: 49.2 - brightGreen: 70.4 - brightYellow: 87 - brightBlue: 51.3 - brightMagenta: 49.6 - brightCyan: 68.5 - brightWhite: 103.3 diff --git a/themes/wind-dark-zinc.yaml b/themes/wind-dark-zinc.yaml deleted file mode 100644 index d1d9b2de..00000000 --- a/themes/wind-dark-zinc.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Wind Dark Zinc" -source: - marketplace_id: "calvinludwig.wind-theme" - version: "1.0.0" - installs: 1682 - rating: 5 - ratings: 3 - author: "Calvin Ludwig" - repo: "https://github.com/calvinludwig/wind-theme" - url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" -colors: - bg: "#18181B" - fg: "#D4D4D8" - black: "#27272A" - red: "#F43F5E" - green: "#22C55E" - yellow: "#FACC15" - blue: "#3B82F6" - magenta: "#A855F7" - cyan: "#06B6D4" - white: "#F4F4F5" - brightBlack: "#3F3F46" - brightRed: "#FB7185" - brightGreen: "#4ADE80" - brightYellow: "#FDE047" - brightBlue: "#60A5FA" - brightMagenta: "#C084FC" - brightCyan: "#22D3EE" - brightWhite: "#FAFAFA" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 79.5 - black: 0 - red: 37.7 - green: 56.7 - yellow: 77.6 - blue: 36.6 - magenta: 34.3 - cyan: 53.7 - white: 99.5 - brightBlack: 0 - brightRed: 49.1 - brightGreen: 70.3 - brightYellow: 87 - brightBlue: 51.2 - brightMagenta: 49.5 - brightCyan: 68.5 - brightWhite: 103.4 diff --git a/themes/wind-light-neutral.yaml b/themes/wind-light-neutral.yaml deleted file mode 100644 index 5830e958..00000000 --- a/themes/wind-light-neutral.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Wind Light Neutral" -source: - marketplace_id: "calvinludwig.wind-theme" - version: "1.0.0" - installs: 1682 - rating: 5 - ratings: 3 - author: "Calvin Ludwig" - repo: "https://github.com/calvinludwig/wind-theme" - url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" -colors: - bg: "#FFFFFF" - fg: "#212121" - black: "#333333" - red: "#D32F2F" - green: "#77CC00" - yellow: "#F29718" - blue: "#E0E0E0" - magenta: "#9966CC" - cyan: "#4DBF99" - white: "#C7C7C7" - brightBlack: "#A1A1A1" - brightRed: "#D6656A" - brightGreen: "#A3D900" - brightYellow: "#E7C547" - brightBlue: "#6871FF" - brightMagenta: "#A37ACC" - brightCyan: "#57D9AD" - brightWhite: "#7E7E7E" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 103.1 - black: 98.7 - red: 72.8 - green: 38.7 - yellow: 44.5 - blue: 15.8 - magenta: 67.9 - cyan: 44.6 - white: 30.1 - brightBlack: 50.5 - brightRed: 62.5 - brightGreen: 29.5 - brightYellow: 29.7 - brightBlue: 66 - brightMagenta: 61.1 - brightCyan: 31.9 - brightWhite: 67.8 diff --git a/themes/wind.yaml b/themes/wind.yaml index 7f93d17f..9aa9ab3b 100644 --- a/themes/wind.yaml +++ b/themes/wind.yaml @@ -8,6 +8,7 @@ source: author: "Le Trieu" repo: null url: "https://marketplace.visualstudio.com/items?itemName=letrieu.tornado-themes" + formats: null colors: bg: "#1F2430" fg: "#CBCCC6" diff --git a/themes/windows-95-theme.yaml b/themes/windows-95-theme.yaml index 2830a2ca..92caafd7 100644 --- a/themes/windows-95-theme.yaml +++ b/themes/windows-95-theme.yaml @@ -2,12 +2,13 @@ name: "Windows 95 Theme" source: marketplace_id: "samwnr.Windows-95-Theme" version: "0.0.1" - installs: 2420 + installs: 2421 rating: 0 ratings: 0 author: "samwnr" repo: null url: "https://marketplace.visualstudio.com/items?itemName=samwnr.Windows-95-Theme" + formats: null colors: bg: "#000021" fg: "#D4D4D4" diff --git a/themes/windows-nt.yaml b/themes/windows-nt.yaml deleted file mode 100644 index 551414c4..00000000 --- a/themes/windows-nt.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Windows NT" -source: - marketplace_id: "wassimdev.windows-nt-vscode-theme" - version: "0.0.12" - installs: 26397 - rating: 5 - ratings: 6 - author: "Wassim Chegham" - repo: "https://github.com/manekinekko/windows-nt-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=wassimdev.windows-nt-vscode-theme" -colors: - bg: "#FFFFFF" - fg: "#000000" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106 - black: 106 - red: 74 - green: 49.2 - yellow: 57.9 - blue: 86.1 - magenta: 74.6 - cyan: 60.6 - white: 85.9 - brightBlack: 78.8 - brightRed: 74 - brightGreen: 40.9 - brightYellow: 40.9 - brightBlue: 86.1 - brightMagenta: 74.6 - brightCyan: 60.6 - brightWhite: 48.5 diff --git a/themes/windows-xp-dark-luna.yaml b/themes/windows-xp-dark-luna.yaml deleted file mode 100644 index 7d32597c..00000000 --- a/themes/windows-xp-dark-luna.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Windows Xp Dark Luna" -source: - marketplace_id: "mssjim.windows-xp-dark" - version: "1.0.1" - installs: 3366 - rating: 0 - ratings: 0 - author: "Mssjim" - repo: "https://github.com/Mssjim/windows-xp-dark" - url: "https://marketplace.visualstudio.com/items?itemName=mssjim.windows-xp-dark" -colors: - bg: "#212122" - fg: "#D4D4D4" - black: "#909090" - red: "#C00000" - green: "#00C000" - yellow: "#C0C000" - blue: "#0000C0" - magenta: "#C000C0" - cyan: "#00C0C0" - white: "#C0C0C0" - brightBlack: "#C0C0C0" - brightRed: "#FF0000" - brightGreen: "#00FF00" - brightYellow: "#FFFF00" - brightBlue: "#0000FF" - brightMagenta: "#FF00FF" - brightCyan: "#00FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 78.2 - black: 40.3 - red: 20.2 - green: 52.3 - yellow: 62.9 - blue: 0 - magenta: 25.9 - cyan: 56 - white: 66.3 - brightBlack: 66.3 - brightRed: 35.3 - brightGreen: 84.2 - brightYellow: 100.4 - brightBlue: 13.9 - brightMagenta: 43.9 - brightCyan: 89.9 - brightWhite: 105.6 diff --git a/themes/windu.yaml b/themes/windu.yaml index 464c4996..d895134a 100644 --- a/themes/windu.yaml +++ b/themes/windu.yaml @@ -8,6 +8,7 @@ source: author: "JohannesFreutel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=JohannesFreutel.Windu" + formats: null colors: bg: "#11172C" fg: "#D4D4D4" diff --git a/themes/windwaker.yaml b/themes/windwaker.yaml index 09b2497b..ba2629cd 100644 --- a/themes/windwaker.yaml +++ b/themes/windwaker.yaml @@ -8,6 +8,7 @@ source: author: "Endg4me_" repo: "https://github.com/Endg4meZer0/Windwaker-VSCode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=endg4me.windwaker" + formats: null colors: bg: "#111716" fg: "#E3E3E3" diff --git a/themes/wine-garden.yaml b/themes/wine-garden.yaml index f05505b2..0518e572 100644 --- a/themes/wine-garden.yaml +++ b/themes/wine-garden.yaml @@ -8,6 +8,7 @@ source: author: "🧪 ovct 🧪" repo: "https://github.com/Octaviocossy/ampelopsis-theme" url: "https://marketplace.visualstudio.com/items?itemName=Synth1983GreenWave.ampelopsis" + formats: null colors: bg: "#101724" fg: "#A6ACCD" diff --git a/themes/winter-pearl.yaml b/themes/winter-pearl.yaml index 885eb792..5964cc80 100644 --- a/themes/winter-pearl.yaml +++ b/themes/winter-pearl.yaml @@ -8,6 +8,7 @@ source: author: "suryashanm" repo: "https://github.com/suryashanm/winter-pearl" url: "https://marketplace.visualstudio.com/items?itemName=suryashanm.winter-pearl-theme" + formats: null colors: bg: "#06090F" fg: "#E1E1E1" diff --git a/themes/winter.yaml b/themes/winter.yaml index 01c4bf7a..6120752b 100644 --- a/themes/winter.yaml +++ b/themes/winter.yaml @@ -8,6 +8,7 @@ source: author: "Winter CMS" repo: "https://github.com/wintercms/winter-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=wintercms.winter-vscode-theme" + formats: null colors: bg: "#17191E" fg: "#BDC1CA" diff --git a/themes/winteriscoding-gift.yaml b/themes/winteriscoding-gift.yaml index 6f4d7993..d7b07376 100644 --- a/themes/winteriscoding-gift.yaml +++ b/themes/winteriscoding-gift.yaml @@ -8,6 +8,7 @@ source: author: "winter_x64" repo: "https://github.com/winter-x64/WinterIsCoding" url: "https://marketplace.visualstudio.com/items?itemName=winterx64.winteriscoding" + formats: null colors: bg: "#181818" fg: "#FFFFFF" diff --git a/themes/winteriscoding.yaml b/themes/winteriscoding.yaml index c64f9972..536353ec 100644 --- a/themes/winteriscoding.yaml +++ b/themes/winteriscoding.yaml @@ -8,6 +8,7 @@ source: author: "winter_x64" repo: "https://github.com/winter-x64/WinterIsCoding" url: "https://marketplace.visualstudio.com/items?itemName=winterx64.winteriscoding" + formats: null colors: bg: "#1A1A1A" fg: "#FFFFFF" diff --git a/themes/winternacht-dark.yaml b/themes/winternacht-dark.yaml index 2556e104..c479134e 100644 --- a/themes/winternacht-dark.yaml +++ b/themes/winternacht-dark.yaml @@ -8,6 +8,8 @@ source: author: "suin" repo: "https://github.com/suin/winternacht" url: "https://marketplace.visualstudio.com/items?itemName=suin.winternacht-by-suin" + formats: + ghostty: "https://raw.githubusercontent.com/suin/winternacht/main/ghostty/README.md" colors: bg: "#1A1917" fg: "#D6D3CE" diff --git a/themes/winternacht-light.yaml b/themes/winternacht-light.yaml index 9492d871..4b0f668d 100644 --- a/themes/winternacht-light.yaml +++ b/themes/winternacht-light.yaml @@ -8,6 +8,8 @@ source: author: "suin" repo: "https://github.com/suin/winternacht" url: "https://marketplace.visualstudio.com/items?itemName=suin.winternacht-by-suin" + formats: + ghostty: "https://raw.githubusercontent.com/suin/winternacht/main/ghostty/README.md" colors: bg: "#FCFCFB" fg: "#3A3835" diff --git a/themes/wired-lighter.yaml b/themes/wired-lighter.yaml deleted file mode 100644 index 3cab145d..00000000 --- a/themes/wired-lighter.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "wired lighter" -source: - marketplace_id: "minako.wired" - version: "2.0.5" - installs: 4868 - rating: 0 - ratings: 0 - author: "minako" - repo: "https://github.com/kayliese/wired" - url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" -colors: - bg: "#03071B" - fg: "#C1B492" - black: "#502832" - red: "#A45A74" - green: "#B39987" - yellow: "#A47F7C" - blue: "#AD5F74" - magenta: "#D78594" - cyan: "#B39487" - white: "#CA988E" - brightBlack: "#703A47" - brightRed: "#A45A74" - brightGreen: "#B39987" - brightYellow: "#A47F7C" - brightBlue: "#AD5F74" - brightMagenta: "#D78594" - brightCyan: "#B39487" - brightWhite: "#D2738A" -meta: - mode: "dark" - accent: "red" - hue: 267 - pair: null - contrast: - fg: 62 - black: 0 - red: 27.9 - green: 49.6 - yellow: 38.4 - blue: 30.5 - magenta: 49 - cyan: 47.8 - white: 52.8 - brightBlack: 12.2 - brightRed: 27.9 - brightGreen: 49.6 - brightYellow: 38.4 - brightBlue: 30.5 - brightMagenta: 49 - brightCyan: 47.8 - brightWhite: 42.7 diff --git a/themes/wired.yaml b/themes/wired.yaml deleted file mode 100644 index 89f1aacb..00000000 --- a/themes/wired.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "wired" -source: - marketplace_id: "minako.wired" - version: "2.0.5" - installs: 4868 - rating: 0 - ratings: 0 - author: "minako" - repo: "https://github.com/kayliese/wired" - url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" -colors: - bg: "#000000" - fg: "#C1B492" - black: "#502832" - red: "#A45A74" - green: "#B39987" - yellow: "#A47F7C" - blue: "#AD5F74" - magenta: "#D78594" - cyan: "#B39487" - white: "#CA988E" - brightBlack: "#703A47" - brightRed: "#A45A74" - brightGreen: "#B39987" - brightYellow: "#A47F7C" - brightBlue: "#AD5F74" - brightMagenta: "#D78594" - brightCyan: "#B39487" - brightWhite: "#D2738A" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 62.2 - black: 0 - red: 28.1 - green: 49.8 - yellow: 38.6 - blue: 30.7 - magenta: 49.1 - cyan: 48 - white: 52.9 - brightBlack: 12.4 - brightRed: 28.1 - brightGreen: 49.8 - brightYellow: 38.6 - brightBlue: 30.7 - brightMagenta: 49.1 - brightCyan: 48 - brightWhite: 42.8 diff --git a/themes/wise-owl-material-high-contrast.yaml b/themes/wise-owl-material-high-contrast.yaml deleted file mode 100644 index 5a711301..00000000 --- a/themes/wise-owl-material-high-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Wise Owl Material High Contrast" -source: - marketplace_id: "waseemakhter028.wise-owl-material-theme" - version: "1.0.0" - installs: 31 - rating: 5 - ratings: 1 - author: "WaseemAkhter" - repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" -colors: - bg: "#000000" - fg: "#D6DEEB" - black: "#000000" - red: "#FF5874" - green: "#22DA6F" - yellow: "#ECC48D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#7FDBCA" - white: "#D6DEEB" - brightBlack: "#464E57" - brightRed: "#FF5874" - brightGreen: "#22DA6F" - brightYellow: "#ECC48D" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 86.2 - black: 0 - red: 45.6 - green: 68.3 - yellow: 74.7 - blue: 56.9 - magenta: 54.8 - cyan: 75 - white: 86.2 - brightBlack: 13.1 - brightRed: 45.6 - brightGreen: 68.3 - brightYellow: 74.7 - brightBlue: 56.9 - brightMagenta: 54.8 - brightCyan: 75 - brightWhite: 107.9 diff --git a/themes/wise-owl-material-light.yaml b/themes/wise-owl-material-light.yaml deleted file mode 100644 index e275600e..00000000 --- a/themes/wise-owl-material-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Wise Owl Material Light" -source: - marketplace_id: "waseemakhter028.wise-owl-material-theme" - version: "1.0.0" - installs: 31 - rating: 5 - ratings: 1 - author: "WaseemAkhter" - repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" -colors: - bg: "#F5F5F5" - fg: "#333333" - black: "#333333" - red: "#E91E63" - green: "#27AE60" - yellow: "#F39C12" - blue: "#0066CC" - magenta: "#8E44AD" - cyan: "#16A085" - white: "#F5F5F5" - brightBlack: "#666666" - brightRed: "#E91E63" - brightGreen: "#27AE60" - brightYellow: "#F39C12" - brightBlue: "#0066CC" - brightMagenta: "#8E44AD" - brightCyan: "#16A085" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 92.7 - black: 92.7 - red: 62 - green: 48.5 - yellow: 36.8 - blue: 71 - magenta: 72.8 - cyan: 53.7 - white: 0 - brightBlack: 72.8 - brightRed: 62 - brightGreen: 48.5 - brightYellow: 36.8 - brightBlue: 71 - brightMagenta: 72.8 - brightCyan: 53.7 - brightWhite: 0 diff --git a/themes/wise-owl-material.yaml b/themes/wise-owl-material.yaml deleted file mode 100644 index aed029dc..00000000 --- a/themes/wise-owl-material.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Wise Owl Material" -source: - marketplace_id: "waseemakhter028.wise-owl-material-theme" - version: "1.0.0" - installs: 31 - rating: 5 - ratings: 1 - author: "WaseemAkhter" - repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" - url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" -colors: - bg: "#011627" - fg: "#D6DEEB" - black: "#011627" - red: "#FF5874" - green: "#22DA6F" - yellow: "#ECC48D" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#7FDBCA" - white: "#D6DEEB" - brightBlack: "#464E57" - brightRed: "#FF5874" - brightGreen: "#22DA6F" - brightYellow: "#ECC48D" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#7FDBCA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 244 - pair: null - contrast: - fg: 85.3 - black: 0 - red: 44.7 - green: 67.4 - yellow: 73.8 - blue: 56 - magenta: 53.8 - cyan: 74.1 - white: 85.3 - brightBlack: 12.2 - brightRed: 44.7 - brightGreen: 67.4 - brightYellow: 73.8 - brightBlue: 56 - brightMagenta: 53.8 - brightCyan: 74.1 - brightWhite: 107 diff --git a/themes/wisteria.yaml b/themes/wisteria.yaml index c45fc097..87f98d15 100644 --- a/themes/wisteria.yaml +++ b/themes/wisteria.yaml @@ -8,6 +8,7 @@ source: author: "Raleigh Hansen" repo: "https://github.com/raleighsedona/wisteria-vscode" url: "https://marketplace.visualstudio.com/items?itemName=raleigh-hansen.wisteria-vscode" + formats: null colors: bg: "#120C24" fg: "#A9B1D6" diff --git a/themes/witch-elaina.yaml b/themes/witch-elaina.yaml index e6193741..ca137280 100644 --- a/themes/witch-elaina.yaml +++ b/themes/witch-elaina.yaml @@ -8,6 +8,7 @@ source: author: "WitchElaina" repo: "https://github.com/WitchElaina/WitchElaina-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=WitchElaina.witchelaina" + formats: null colors: bg: "#17141B" fg: "#DEE9E9" diff --git a/themes/witcher.yaml b/themes/witcher.yaml index 4b6df0e9..2b151d32 100644 --- a/themes/witcher.yaml +++ b/themes/witcher.yaml @@ -8,6 +8,7 @@ source: author: "Devpenzil" repo: "https://github.com/devpenzil/Witcher-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Devpenzil.witcher" + formats: null colors: bg: "#222831" fg: "#FFFFFF" diff --git a/themes/witchy-dark.yaml b/themes/witchy-dark.yaml deleted file mode 100644 index 311f7f0d..00000000 --- a/themes/witchy-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Witchy Dark" -source: - marketplace_id: "nhcarrigan.naomis-themes" - version: "2.3.0" - installs: 68 - rating: 0 - ratings: 0 - author: "NHCarrigan" - repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" - url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" -colors: - bg: "#0A0009" - fg: "#E8D5E8" - black: "#2B1B3D" - red: "#A8577E" - green: "#8A7A9E" - yellow: "#D4A5C7" - blue: "#7B5EA8" - magenta: "#A8577E" - cyan: "#B8A0D0" - white: "#D4A5C7" - brightBlack: "#44275A" - brightRed: "#C96B8E" - brightGreen: "#A898C0" - brightYellow: "#E8D5E8" - brightBlue: "#9B7EC8" - brightMagenta: "#D4A5C7" - brightCyan: "#D0B8E8" - brightWhite: "#F5F5F5" -meta: - mode: "dark" - accent: "red" - hue: 331 - pair: null - contrast: - fg: 84.5 - black: 0 - red: 28.4 - green: 35 - yellow: 61.2 - blue: 25.8 - magenta: 28.4 - cyan: 55.9 - white: 61.2 - brightBlack: 0 - brightRed: 39.3 - brightGreen: 50.2 - brightYellow: 84.5 - brightBlue: 40.5 - brightMagenta: 61.2 - brightCyan: 69.4 - brightWhite: 101.3 diff --git a/themes/wl-acid-wash.yaml b/themes/wl-acid-wash.yaml index dce20623..1007c822 100644 --- a/themes/wl-acid-wash.yaml +++ b/themes/wl-acid-wash.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.acid-wash" + formats: null colors: bg: "#FF00FF" fg: "#00FF00" diff --git a/themes/wl-amber-monitor.yaml b/themes/wl-amber-monitor.yaml index 61b60eae..7616cb28 100644 --- a/themes/wl-amber-monitor.yaml +++ b/themes/wl-amber-monitor.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.amber-monitor" + formats: null colors: bg: "#141413" fg: "#FDFFB6" diff --git a/themes/wl-aurora-glow.yaml b/themes/wl-aurora-glow.yaml index 586b0f3b..8072e402 100644 --- a/themes/wl-aurora-glow.yaml +++ b/themes/wl-aurora-glow.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.aurora-glow" + formats: null colors: bg: "#001C1E" fg: "#D1FDF6" diff --git a/themes/wl-chrome-dreams.yaml b/themes/wl-chrome-dreams.yaml index c01e3975..cce83504 100644 --- a/themes/wl-chrome-dreams.yaml +++ b/themes/wl-chrome-dreams.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.chrome-dreams" + formats: null colors: bg: "#2B2D3C" fg: "#ECEFF1" diff --git a/themes/wl-chrome-noir.yaml b/themes/wl-chrome-noir.yaml index a97cccf6..917312c1 100644 --- a/themes/wl-chrome-noir.yaml +++ b/themes/wl-chrome-noir.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.chrome-noir" + formats: null colors: bg: "#1A1A1A" fg: "#F5F5F5" diff --git a/themes/wl-cosmic-drift.yaml b/themes/wl-cosmic-drift.yaml index fd0d988f..30d5ba0a 100644 --- a/themes/wl-cosmic-drift.yaml +++ b/themes/wl-cosmic-drift.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "WatkinsLabs.cosmic-drift" version: "1.0.1" installs: 31 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.cosmic-drift" + formats: null colors: bg: "#2B183F" fg: "#D1D0FC" diff --git a/themes/wl-crystal-cave.yaml b/themes/wl-crystal-cave.yaml index 99f18403..d425f521 100644 --- a/themes/wl-crystal-cave.yaml +++ b/themes/wl-crystal-cave.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "WatkinsLabs.crystal-cave" version: "1.0.1" installs: 32 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.crystal-cave" + formats: null colors: bg: "#002545" fg: "#D1F2F9" diff --git a/themes/wl-cyber-punk.yaml b/themes/wl-cyber-punk.yaml index d25861fa..7683858d 100644 --- a/themes/wl-cyber-punk.yaml +++ b/themes/wl-cyber-punk.yaml @@ -2,10 +2,13 @@ name: "WL-Cyber Punk" source: marketplace_id: "WatkinsLabs.cyber-punk" version: "1.0.1" - installs: 458 + installs: 459 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.cyber-punk" + formats: null colors: bg: "#0D0C1D" fg: "#B8B8D0" diff --git a/themes/wl-cyber-rain.yaml b/themes/wl-cyber-rain.yaml index 3f55ef46..320a1e8f 100644 --- a/themes/wl-cyber-rain.yaml +++ b/themes/wl-cyber-rain.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.cyber-rain" + formats: null colors: bg: "#000022" fg: "#00EEFF" diff --git a/themes/wl-data-stream.yaml b/themes/wl-data-stream.yaml index f2928b86..ea72a138 100644 --- a/themes/wl-data-stream.yaml +++ b/themes/wl-data-stream.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.data-stream" + formats: null colors: bg: "#0000FF" fg: "#FFFFFF" diff --git a/themes/wl-dial-tone.yaml b/themes/wl-dial-tone.yaml index 10156584..65eb845b 100644 --- a/themes/wl-dial-tone.yaml +++ b/themes/wl-dial-tone.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.dial-tone" + formats: null colors: bg: "#254441" fg: "#CFCFCF" diff --git a/themes/wl-disco-ball.yaml b/themes/wl-disco-ball.yaml index cf1f56f6..9241cef0 100644 --- a/themes/wl-disco-ball.yaml +++ b/themes/wl-disco-ball.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "WatkinsLabs.disco-ball" version: "1.0.1" installs: 20 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.disco-ball" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/wl-electric-dreams.yaml b/themes/wl-electric-dreams.yaml index dd291150..16d9b67b 100644 --- a/themes/wl-electric-dreams.yaml +++ b/themes/wl-electric-dreams.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.electric-dreams" + formats: null colors: bg: "#06060F" fg: "#FFFAFA" diff --git a/themes/wl-electric-sunset.yaml b/themes/wl-electric-sunset.yaml index f41c5b7e..c3c46938 100644 --- a/themes/wl-electric-sunset.yaml +++ b/themes/wl-electric-sunset.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "WatkinsLabs.electric-sunset" version: "1.0.1" installs: 46 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.electric-sunset" + formats: null colors: bg: "#311D4E" fg: "#FFAB29" diff --git a/themes/wl-fusion-core.yaml b/themes/wl-fusion-core.yaml index d921e341..61405189 100644 --- a/themes/wl-fusion-core.yaml +++ b/themes/wl-fusion-core.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.fusion-core" + formats: null colors: bg: "#000000" fg: "#FF5500" diff --git a/themes/wl-graffiti-wall.yaml b/themes/wl-graffiti-wall.yaml index 6afce3b5..0efa91ba 100644 --- a/themes/wl-graffiti-wall.yaml +++ b/themes/wl-graffiti-wall.yaml @@ -2,12 +2,13 @@ name: "WL-Graffiti Wall" source: marketplace_id: "WatkinsLabs.graffiti-wall" version: "1.0.1" - installs: 53 + installs: 54 rating: 0 ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.graffiti-wall" + formats: null colors: bg: "#1B1B27" fg: "#F7F7F2" diff --git a/themes/wl-hyper-drive.yaml b/themes/wl-hyper-drive.yaml index a7498eb8..830809fc 100644 --- a/themes/wl-hyper-drive.yaml +++ b/themes/wl-hyper-drive.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.hyper-drive" + formats: null colors: bg: "#0E0F14" fg: "#F2F5FA" diff --git a/themes/wl-ink-splash.yaml b/themes/wl-ink-splash.yaml index 83597280..8cdceb88 100644 --- a/themes/wl-ink-splash.yaml +++ b/themes/wl-ink-splash.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.ink-splash" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/wl-jade-temple.yaml b/themes/wl-jade-temple.yaml index 7af967dc..3e78b4ec 100644 --- a/themes/wl-jade-temple.yaml +++ b/themes/wl-jade-temple.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.jade-temple" + formats: null colors: bg: "#144622" fg: "#9AFF91" diff --git a/themes/wl-laser-grid.yaml b/themes/wl-laser-grid.yaml index 60fad0d5..dc7acc95 100644 --- a/themes/wl-laser-grid.yaml +++ b/themes/wl-laser-grid.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.laser-grid" + formats: null colors: bg: "#0D0C1D" fg: "#FFC0CB" diff --git a/themes/wl-lava-lamp.yaml b/themes/wl-lava-lamp.yaml index b5d256f0..d5d79e5b 100644 --- a/themes/wl-lava-lamp.yaml +++ b/themes/wl-lava-lamp.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.lava-lamp" + formats: null colors: bg: "#FCE8D7" fg: "#805A3B" diff --git a/themes/wl-mainframe-blue.yaml b/themes/wl-mainframe-blue.yaml index c2182450..dcaf72d3 100644 --- a/themes/wl-mainframe-blue.yaml +++ b/themes/wl-mainframe-blue.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.mainframe-blue" + formats: null colors: bg: "#132C33" fg: "#FFFFFF" diff --git a/themes/wl-midnight-drive.yaml b/themes/wl-midnight-drive.yaml index a529be1b..8bbeb25f 100644 --- a/themes/wl-midnight-drive.yaml +++ b/themes/wl-midnight-drive.yaml @@ -2,10 +2,13 @@ name: "WL-Midnight Drive" source: marketplace_id: "WatkinsLabs.midnight-drive" version: "1.0.1" - installs: 25 + installs: 26 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.midnight-drive" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/wl-misty-mountain.yaml b/themes/wl-misty-mountain.yaml index ef934f30..79757a08 100644 --- a/themes/wl-misty-mountain.yaml +++ b/themes/wl-misty-mountain.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.misty-mountain" + formats: null colors: bg: "#1A2F1E" fg: "#F5F6F7" diff --git a/themes/wl-moon-phase.yaml b/themes/wl-moon-phase.yaml index 330ed39f..abb7bff5 100644 --- a/themes/wl-moon-phase.yaml +++ b/themes/wl-moon-phase.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.moon-phase" + formats: null colors: bg: "#1F1F2E" fg: "#D9D9E5" diff --git a/themes/wl-neon-cascade.yaml b/themes/wl-neon-cascade.yaml index 2b618b00..589652e5 100644 --- a/themes/wl-neon-cascade.yaml +++ b/themes/wl-neon-cascade.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.neon-cascade" + formats: null colors: bg: "#000033" fg: "#00FFFC" diff --git a/themes/wl-neon-sign.yaml b/themes/wl-neon-sign.yaml index 3b1590fd..ad426ddc 100644 --- a/themes/wl-neon-sign.yaml +++ b/themes/wl-neon-sign.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.neon-sign" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/wl-neon-tokyo.yaml b/themes/wl-neon-tokyo.yaml index f03ad6da..62f010f6 100644 --- a/themes/wl-neon-tokyo.yaml +++ b/themes/wl-neon-tokyo.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.neon-tokyo" + formats: null colors: bg: "#1A1A2E" fg: "#E0E0E0" diff --git a/themes/wl-nova-burst.yaml b/themes/wl-nova-burst.yaml index 9a645b85..b11392ca 100644 --- a/themes/wl-nova-burst.yaml +++ b/themes/wl-nova-burst.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.nova-burst" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/wl-pastel-dream.yaml b/themes/wl-pastel-dream.yaml index be9e7786..1a2b1f33 100644 --- a/themes/wl-pastel-dream.yaml +++ b/themes/wl-pastel-dream.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "WatkinsLabs.pastel-dream" version: "1.0.1" installs: 35 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.pastel-dream" + formats: null colors: bg: "#FCF5EF" fg: "#383A42" @@ -29,6 +32,7 @@ meta: mode: "light" accent: "orange" hue: null + pair: null contrast: fg: 90.9 black: 100.7 diff --git a/themes/wl-pixel-punch.yaml b/themes/wl-pixel-punch.yaml index 3973e268..14d918d5 100644 --- a/themes/wl-pixel-punch.yaml +++ b/themes/wl-pixel-punch.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.pixel-punch" + formats: null colors: bg: "#0A063B" fg: "#D8E0EA" diff --git a/themes/wl-plasma-storm.yaml b/themes/wl-plasma-storm.yaml index 2360f508..b9b97a6b 100644 --- a/themes/wl-plasma-storm.yaml +++ b/themes/wl-plasma-storm.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.plasma-storm" + formats: null colors: bg: "#2C0937" fg: "#D4D4D4" diff --git a/themes/wl-prism-break.yaml b/themes/wl-prism-break.yaml index 5e99fad0..e431d7f9 100644 --- a/themes/wl-prism-break.yaml +++ b/themes/wl-prism-break.yaml @@ -2,10 +2,13 @@ name: "WL-Prism Break" source: marketplace_id: "WatkinsLabs.prism-break" version: "1.0.1" - installs: 28 + installs: 29 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.prism-break" + formats: null colors: bg: "#2C2C34" fg: "#FFFFFF" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "orange" hue: 285 + pair: null contrast: fg: 103.5 black: 0 diff --git a/themes/wl-pulse-wave.yaml b/themes/wl-pulse-wave.yaml index f865ffa8..04fd884d 100644 --- a/themes/wl-pulse-wave.yaml +++ b/themes/wl-pulse-wave.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "WatkinsLabs.pulse-wave" version: "1.0.1" installs: 30 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.pulse-wave" + formats: null colors: bg: "#1F2041" fg: "#FFFFFF" diff --git a/themes/wl-punch-tape.yaml b/themes/wl-punch-tape.yaml index ecb1c9e1..f13ee201 100644 --- a/themes/wl-punch-tape.yaml +++ b/themes/wl-punch-tape.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.punch-tape" + formats: null colors: bg: "#F5DEB3" fg: "#000000" diff --git a/themes/wl-retro-arcade.yaml b/themes/wl-retro-arcade.yaml index 76558b29..6c4af3c9 100644 --- a/themes/wl-retro-arcade.yaml +++ b/themes/wl-retro-arcade.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.retro-arcade" + formats: null colors: bg: "#07273E" fg: "#EFEFEF" diff --git a/themes/wl-retro-future.yaml b/themes/wl-retro-future.yaml index 6a1e3125..29b8790e 100644 --- a/themes/wl-retro-future.yaml +++ b/themes/wl-retro-future.yaml @@ -2,12 +2,13 @@ name: "WL-Retro Future" source: marketplace_id: "WatkinsLabs.retro-future" version: "1.0.1" - installs: 64 + installs: 65 rating: 0 ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.retro-future" + formats: null colors: bg: "#202833" fg: "#A2ADD0" diff --git a/themes/wl-signal-wave.yaml b/themes/wl-signal-wave.yaml index db8cfaac..a68a3f28 100644 --- a/themes/wl-signal-wave.yaml +++ b/themes/wl-signal-wave.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "WatkinsLabs.signal-wave" version: "1.0.1" installs: 41 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.signal-wave" + formats: null colors: bg: "#050505" fg: "#7FFF00" diff --git a/themes/wl-silk-road.yaml b/themes/wl-silk-road.yaml index 68b743e1..53dac4b8 100644 --- a/themes/wl-silk-road.yaml +++ b/themes/wl-silk-road.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.silk-road" + formats: null colors: bg: "#F4CCA1" fg: "#6A4E42" diff --git a/themes/wl-synthwave-rider.yaml b/themes/wl-synthwave-rider.yaml index b9e6fa41..d9eca645 100644 --- a/themes/wl-synthwave-rider.yaml +++ b/themes/wl-synthwave-rider.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "WatkinsLabs.synthwave-rider" version: "1.0.1" installs: 91 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.synthwave-rider" + formats: null colors: bg: "#090A31" fg: "#EEBBF4" @@ -29,6 +32,7 @@ meta: mode: "dark" accent: "green" hue: 274 + pair: null contrast: fg: 75 black: 0 diff --git a/themes/wl-tape-deck.yaml b/themes/wl-tape-deck.yaml index 944e1d9f..43fe317d 100644 --- a/themes/wl-tape-deck.yaml +++ b/themes/wl-tape-deck.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "WatkinsLabs.tape-deck" version: "1.0.1" installs: 37 + rating: 0 + ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.tape-deck" + formats: null colors: bg: "#4E443B" fg: "#D3D5D7" diff --git a/themes/wl-terminal-green.yaml b/themes/wl-terminal-green.yaml index 474de2c3..51766fcc 100644 --- a/themes/wl-terminal-green.yaml +++ b/themes/wl-terminal-green.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.terminal-green" + formats: null colors: bg: "#000000" fg: "#00FF00" diff --git a/themes/wl-turbo-boost.yaml b/themes/wl-turbo-boost.yaml index f112a33d..60962300 100644 --- a/themes/wl-turbo-boost.yaml +++ b/themes/wl-turbo-boost.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.turbo-boost" + formats: null colors: bg: "#FFFFFF" fg: "#B00020" diff --git a/themes/wl-vacuum-glow.yaml b/themes/wl-vacuum-glow.yaml index 45b572dd..c59d133f 100644 --- a/themes/wl-vacuum-glow.yaml +++ b/themes/wl-vacuum-glow.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.vacuum-glow" + formats: null colors: bg: "#221B15" fg: "#FF9A58" diff --git a/themes/wl-velvet-night.yaml b/themes/wl-velvet-night.yaml index 20b802ec..0e668b75 100644 --- a/themes/wl-velvet-night.yaml +++ b/themes/wl-velvet-night.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.velvet-night" + formats: null colors: bg: "#240046" fg: "#FFFFFF" diff --git a/themes/wl-volt-surge.yaml b/themes/wl-volt-surge.yaml index 880a4ba8..43965fb2 100644 --- a/themes/wl-volt-surge.yaml +++ b/themes/wl-volt-surge.yaml @@ -2,12 +2,13 @@ name: "WL-Volt Surge" source: marketplace_id: "WatkinsLabs.volt-surge" version: "1.0.1" - installs: 16 + installs: 17 rating: 0 ratings: 0 author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.volt-surge" + formats: null colors: bg: "#000000" fg: "#FFFF00" diff --git a/themes/wl-zen-twilight.yaml b/themes/wl-zen-twilight.yaml index 91b333b6..42f113c3 100644 --- a/themes/wl-zen-twilight.yaml +++ b/themes/wl-zen-twilight.yaml @@ -8,6 +8,7 @@ source: author: "Watkins Labs" repo: "https://github.com/watkinslabs/vscode-theme-generator" url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.zen-twilight" + formats: null colors: bg: "#6F5B4B" fg: "#F4EAE6" diff --git a/themes/wolftheme.yaml b/themes/wolftheme.yaml index 274d46ad..d2f6236c 100644 --- a/themes/wolftheme.yaml +++ b/themes/wolftheme.yaml @@ -8,6 +8,7 @@ source: author: "Alex W0lf" repo: null url: "https://marketplace.visualstudio.com/items?itemName=AlexW0lf.w0lftheme" + formats: null colors: bg: "#282C35" fg: "#D4D4D4" diff --git a/themes/wolves-league-dark.yaml b/themes/wolves-league-dark.yaml deleted file mode 100644 index fffe25f8..00000000 --- a/themes/wolves-league-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Wolves League Dark" -source: - marketplace_id: "WolvesLeague.wolves-league" - version: "3.0.0" - installs: 1845 - rating: 0 - ratings: 0 - author: "Wolves League" - repo: "https://github.com/WolvesLeague/wolves-league-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=WolvesLeague.wolves-league" -colors: - bg: "#141516" - fg: "#BCBFC2" - black: "#141516" - red: "#FF5252" - green: "#29D196" - yellow: "#FFBA52" - blue: "#52A0FF" - magenta: "#FF85C4" - cyan: "#3DD6F5" - white: "#BCBFC2" - brightBlack: "#BCBFC2" - brightRed: "#FF0000" - brightGreen: "#66FFC9" - brightYellow: "#FFCE85" - brightBlue: "#85BCFF" - brightMagenta: "#F061AB" - brightCyan: "#85EBFF" - brightWhite: "#F8F8FF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 67 - black: 0 - red: 43 - green: 64.1 - yellow: 72 - blue: 49.3 - magenta: 57.8 - cyan: 71.1 - white: 67 - brightBlack: 67 - brightRed: 36.7 - brightGreen: 90.8 - brightYellow: 80.9 - brightBlue: 63.6 - brightMagenta: 45.1 - brightCyan: 84.8 - brightWhite: 102.8 diff --git a/themes/woods.yaml b/themes/woods.yaml index e40e5f69..ed7f2201 100644 --- a/themes/woods.yaml +++ b/themes/woods.yaml @@ -8,6 +8,7 @@ source: author: "WSECO" repo: null url: "https://marketplace.visualstudio.com/items?itemName=WSECO.WoodsTheme" + formats: null colors: bg: "#F9FFF0" fg: "#000000" diff --git a/themes/woodsmoke.yaml b/themes/woodsmoke.yaml index 23d16594..d03e2809 100644 --- a/themes/woodsmoke.yaml +++ b/themes/woodsmoke.yaml @@ -8,6 +8,7 @@ source: author: "Quentin Lowette" repo: "https://github.com/quentinlowette/woodsmoke" url: "https://marketplace.visualstudio.com/items?itemName=QuentinLowette.woodsmoke" + formats: null colors: bg: "#16191C" fg: "#F6F8FA" diff --git a/themes/wookie.yaml b/themes/wookie.yaml index 496c8773..7fc0c32c 100644 --- a/themes/wookie.yaml +++ b/themes/wookie.yaml @@ -8,6 +8,7 @@ source: author: "Alex Krolick" repo: "https://github.com/alexkrolick/theme-wookie" url: "https://marketplace.visualstudio.com/items?itemName=krolick.theme-wookie" + formats: null colors: bg: "#262422" fg: "#AF9176" diff --git a/themes/word-color-theme.yaml b/themes/word-color-theme.yaml deleted file mode 100644 index 80316a46..00000000 --- a/themes/word-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "word-color-theme" -source: - marketplace_id: "coastermcgee.word-theme" - version: "1.3.6" - installs: 54172 - rating: 4 - ratings: 1 - author: "Coaster McGee" - repo: "https://github.com/coastermcgee/vscode-word-theme" - url: "https://marketplace.visualstudio.com/items?itemName=coastermcgee.word-theme" -colors: - bg: "#0000AA" - fg: "#FFFFFF" - black: "#000000" - red: "#AA0000" - green: "#00AA00" - yellow: "#E8E851" - blue: "#0000AA" - magenta: "#AA00AA" - cyan: "#00AAAA" - white: "#FFFFFF" - brightBlack: "#AAAAAA" - brightRed: "#FF5555" - brightGreen: "#55FF55" - brightYellow: "#FFFF55" - brightBlue: "#5555FF" - brightMagenta: "#FF55FF" - brightCyan: "#55FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 100.3 - black: 0 - red: 10.2 - green: 37 - yellow: 81.2 - blue: 0 - magenta: 15 - cyan: 40.1 - white: 100.3 - brightBlack: 48.7 - brightRed: 36.8 - brightGreen: 80.6 - brightYellow: 95.5 - brightBlue: 19.8 - brightMagenta: 44.3 - brightCyan: 85.8 - brightWhite: 100.3 diff --git a/themes/word-dark-theme.yaml b/themes/word-dark-theme.yaml index 6b30c7d1..2dbc22e1 100644 --- a/themes/word-dark-theme.yaml +++ b/themes/word-dark-theme.yaml @@ -8,6 +8,8 @@ source: author: "simen" repo: "https://github.com/microsoft/vscode" url: "https://marketplace.visualstudio.com/items?itemName=simen.theme-simen" + formats: + zed: "https://raw.githubusercontent.com/microsoft/vscode/main/extensions/theme-solarized-dark/themes/solarized-dark-color-theme.json" colors: bg: "#262626" fg: "#F6F6F6" diff --git a/themes/wordsmith-dark.yaml b/themes/wordsmith-dark.yaml deleted file mode 100644 index 6e3005cf..00000000 --- a/themes/wordsmith-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Wordsmith Dark" -source: - marketplace_id: "arzg.wordsmith" - version: "0.1.0" - installs: 716 - rating: 0 - ratings: 0 - author: "arzg" - repo: "https://github.com/arzg/wordsmith" - url: "https://marketplace.visualstudio.com/items?itemName=arzg.wordsmith" -colors: - bg: "#1A1A1A" - fg: "#CCCCCC" - black: "#1A1A1A" - red: "#D98567" - green: "#82A56F" - yellow: "#C1944E" - blue: "#7B9FC2" - magenta: "#BA8DB3" - cyan: "#16BDEC" - white: "#CCCCCC" - brightBlack: "#707070" - brightRed: "#D98567" - brightGreen: "#82A56F" - brightYellow: "#C1944E" - brightBlue: "#7B9FC2" - brightMagenta: "#BA8DB3" - brightCyan: "#16BDEC" - brightWhite: "#CCCCCC" -meta: - mode: "dark" - accent: "blue" - hue: null - pair: "Wordsmith Light" - contrast: - fg: 74.3 - black: 0 - red: 46.9 - green: 47 - yellow: 47.4 - blue: 47.1 - magenta: 46.9 - cyan: 58 - white: 74.3 - brightBlack: 26.1 - brightRed: 46.9 - brightGreen: 47 - brightYellow: 47.4 - brightBlue: 47.1 - brightMagenta: 46.9 - brightCyan: 58 - brightWhite: 74.3 diff --git a/themes/wordsmith-light.yaml b/themes/wordsmith-light.yaml deleted file mode 100644 index aa05b93e..00000000 --- a/themes/wordsmith-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Wordsmith Light" -source: - marketplace_id: "arzg.wordsmith" - version: "0.1.0" - installs: 716 - rating: 0 - ratings: 0 - author: "arzg" - repo: "https://github.com/arzg/wordsmith" - url: "https://marketplace.visualstudio.com/items?itemName=arzg.wordsmith" -colors: - bg: "#F7F7F7" - fg: "#1A1A1A" - black: "#F7F7F7" - red: "#CB4819" - green: "#3F831E" - yellow: "#A66501" - blue: "#3476B9" - magenta: "#B24FA3" - cyan: "#16BDEC" - white: "#1A1A1A" - brightBlack: "#C7C4C2" - brightRed: "#CB4819" - brightGreen: "#3F831E" - brightYellow: "#A66501" - brightBlue: "#3476B9" - brightMagenta: "#B24FA3" - brightCyan: "#16BDEC" - brightWhite: "#1A1A1A" -meta: - mode: "light" - accent: "orange" - hue: null - pair: "Wordsmith Dark" - contrast: - fg: 99.5 - black: 0 - red: 66.7 - green: 67.5 - yellow: 67.4 - blue: 67.8 - magenta: 66.8 - cyan: 38 - white: 99.5 - brightBlack: 26.7 - brightRed: 66.7 - brightGreen: 67.5 - brightYellow: 67.4 - brightBlue: 67.8 - brightMagenta: 66.8 - brightCyan: 38 - brightWhite: 99.5 diff --git a/themes/workplace-chatter.yaml b/themes/workplace-chatter.yaml deleted file mode 100644 index eb7ce0b4..00000000 --- a/themes/workplace-chatter.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Workplace-Chatter" -source: - marketplace_id: "skyler.ocrmnav" - version: "4.0.196" - installs: 325 - rating: 0 - ratings: 0 - author: "skyler" - repo: "https://github.com/8an3/OCRMNav" - url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" -colors: - bg: "#1A1D22" - fg: "#E8E8E8" - black: "#1A1D22" - red: "#E0215B" - green: "#29C3A0" - yellow: "#D29922" - blue: "#A559A5" - magenta: "#A559A5" - cyan: "#29C3A0" - white: "#E8E8E8" - brightBlack: "#1A1D22" - brightRed: "#E0215B" - brightGreen: "#29C3A0" - brightYellow: "#D29922" - brightBlue: "#A559A5" - brightMagenta: "#A559A5" - brightCyan: "#29C3A0" - brightWhite: "#E8E8E8" -meta: - mode: "dark" - accent: "red" - hue: 261 - pair: null - contrast: - fg: 91.2 - black: 0 - red: 29.8 - green: 57 - yellow: 51 - blue: 28.4 - magenta: 28.4 - cyan: 57 - white: 91.2 - brightBlack: 0 - brightRed: 29.8 - brightGreen: 57 - brightYellow: 51 - brightBlue: 28.4 - brightMagenta: 28.4 - brightCyan: 57 - brightWhite: 91.2 diff --git a/themes/wow.yaml b/themes/wow.yaml index 8bde1e3a..fe47cb01 100644 --- a/themes/wow.yaml +++ b/themes/wow.yaml @@ -6,6 +6,7 @@ source: author: "space shiba" repo: null url: "https://marketplace.visualstudio.com/items?itemName=spaceshiba.candy" + formats: null colors: bg: "#222228" fg: "#D4D4D4" diff --git a/themes/wrkspace-theme.yaml b/themes/wrkspace-theme.yaml index da187608..b3c6d9a3 100644 --- a/themes/wrkspace-theme.yaml +++ b/themes/wrkspace-theme.yaml @@ -1,4 +1,4 @@ -name: "wrkspace-theme" +name: "Wrkspace Theme" source: marketplace_id: "Wrkspace.wrkspace-theme" version: "0.0.2" @@ -8,6 +8,7 @@ source: author: "Wrkspace" repo: "https://github.com/wrkspace-co/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Wrkspace.wrkspace-theme" + formats: null colors: bg: "#0F0F0F" fg: "#6F6F6F" diff --git a/themes/wuthering-waves-aemeath-dark.yaml b/themes/wuthering-waves-aemeath-dark.yaml deleted file mode 100644 index 5f8ddcda..00000000 --- a/themes/wuthering-waves-aemeath-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Aemeath (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#1A1418" - fg: "#F5EBF0" - black: "#1A1418" - red: "#F5A8C8" - green: "#88C8B0" - yellow: "#FDD7E8" - blue: "#77C1C8" - magenta: "#E488AC" - cyan: "#C8F9FC" - white: "#F5EBF0" - brightBlack: "#6A5860" - brightRed: "#FFB8D8" - brightGreen: "#98D8C0" - brightYellow: "#FFE7F8" - brightBlue: "#8AD8E8" - brightMagenta: "#F498BC" - brightCyan: "#D8FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 338 - pair: null - contrast: - fg: 95.6 - black: 0 - red: 66.8 - green: 64.9 - yellow: 87.7 - blue: 61.6 - magenta: 52.3 - cyan: 97.1 - white: 95.6 - brightBlack: 18.3 - brightRed: 75 - brightGreen: 74.2 - brightYellow: 95.6 - brightBlue: 74.9 - brightMagenta: 60.8 - brightCyan: 102 - brightWhite: 107 diff --git a/themes/wuthering-waves-aemeath.yaml b/themes/wuthering-waves-aemeath.yaml deleted file mode 100644 index 2821d57b..00000000 --- a/themes/wuthering-waves-aemeath.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Aemeath" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FEFBF8" - fg: "#3D2D35" - black: "#3D2D35" - red: "#D87098" - green: "#70A888" - yellow: "#E8B8D8" - blue: "#5AB8C0" - magenta: "#E488AC" - cyan: "#77C1C8" - white: "#FFF8FB" - brightBlack: "#8D7A82" - brightRed: "#E890B0" - brightGreen: "#88C8A0" - brightYellow: "#F8D8F0" - brightBlue: "#70C8D0" - brightMagenta: "#F498BC" - brightCyan: "#8AD8E0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 97 - black: 97 - red: 55.9 - green: 50.9 - yellow: 28.5 - blue: 43.4 - magenta: 46.6 - cyan: 37.7 - white: 0 - brightBlack: 65.3 - brightRed: 43.4 - brightGreen: 35 - brightYellow: 13 - brightBlue: 34.8 - brightMagenta: 38.4 - brightCyan: 25.4 - brightWhite: 0 diff --git a/themes/wuthering-waves-augusta-dark.yaml b/themes/wuthering-waves-augusta-dark.yaml deleted file mode 100644 index b388ceb1..00000000 --- a/themes/wuthering-waves-augusta-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Augusta (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#1A1614" - fg: "#F5EFE8" - black: "#1A1614" - red: "#E75130" - green: "#90B880" - yellow: "#FA9751" - blue: "#8898A8" - magenta: "#C88890" - cyan: "#9A7D66" - white: "#F5EFE8" - brightBlack: "#645852" - brightRed: "#F87150" - brightGreen: "#A0C890" - brightYellow: "#FFB070" - brightBlue: "#98A8B8" - brightMagenta: "#D898A0" - brightCyan: "#B89D86" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.9 - black: 0 - red: 36.8 - green: 56.9 - yellow: 58.6 - blue: 44.7 - magenta: 46.4 - cyan: 35 - white: 96.9 - brightBlack: 17.2 - brightRed: 47.5 - brightGreen: 65.9 - brightYellow: 68.6 - brightBlue: 53.1 - brightMagenta: 54.7 - brightCyan: 50.9 - brightWhite: 106.9 diff --git a/themes/wuthering-waves-augusta.yaml b/themes/wuthering-waves-augusta.yaml deleted file mode 100644 index 1df66440..00000000 --- a/themes/wuthering-waves-augusta.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Augusta" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FEFDFB" - fg: "#2D2219" - black: "#2D2219" - red: "#D84428" - green: "#70A870" - yellow: "#C89840" - blue: "#7888A0" - magenta: "#B87888" - cyan: "#9A7D66" - white: "#FCF9F5" - brightBlack: "#8D7A6E" - brightRed: "#F85438" - brightGreen: "#88C088" - brightYellow: "#FA9751" - brightBlue: "#8898B0" - brightMagenta: "#D09098" - brightCyan: "#B89D86" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 101.3 - black: 101.3 - red: 68.1 - green: 52.5 - yellow: 49.8 - blue: 62.5 - magenta: 60.8 - cyan: 64.5 - white: 0 - brightBlack: 66.9 - brightRed: 58.3 - brightGreen: 40.1 - brightYellow: 41.5 - brightBlue: 54.6 - brightMagenta: 49.3 - brightCyan: 48.9 - brightWhite: 0 diff --git a/themes/wuthering-waves-baizhi-dark.yaml b/themes/wuthering-waves-baizhi-dark.yaml deleted file mode 100644 index e17ee7cb..00000000 --- a/themes/wuthering-waves-baizhi-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Baizhi (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#16181A" - fg: "#EBF0EB" - black: "#16181A" - red: "#DE7470" - green: "#80B8A0" - yellow: "#E8E8E8" - blue: "#A0A6AD" - magenta: "#B8A8A0" - cyan: "#88A898" - white: "#EBF0EB" - brightBlack: "#565E5A" - brightRed: "#EE8480" - brightGreen: "#90C8B0" - brightYellow: "#F8F8F8" - brightBlue: "#C0C6CD" - brightMagenta: "#C8B8B0" - brightCyan: "#98B8A8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.1 - black: 0 - red: 43.5 - green: 56.5 - yellow: 91.8 - blue: 52.6 - magenta: 55.7 - cyan: 50.2 - white: 96.1 - brightBlack: 17.8 - brightRed: 51.3 - brightGreen: 65.4 - brightYellow: 102.2 - brightBlue: 70.6 - brightMagenta: 64.7 - brightCyan: 58.9 - brightWhite: 106.8 diff --git a/themes/wuthering-waves-baizhi.yaml b/themes/wuthering-waves-baizhi.yaml deleted file mode 100644 index ad9d0496..00000000 --- a/themes/wuthering-waves-baizhi.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Baizhi" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FEFEFF" - fg: "#1D1F20" - black: "#1D1F20" - red: "#D86870" - green: "#70A890" - yellow: "#D8C8B8" - blue: "#A0A6AD" - magenta: "#A89898" - cyan: "#78A898" - white: "#FCFDFC" - brightBlack: "#72787A" - brightRed: "#E87880" - brightGreen: "#88C0A0" - brightYellow: "#E8E8E8" - brightBlue: "#B0B6BD" - brightMagenta: "#B8A8A8" - brightCyan: "#88B8A8" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.9 - black: 102.9 - red: 60.7 - green: 52.2 - yellow: 27.6 - blue: 47.8 - magenta: 52.7 - cyan: 51.4 - white: 0 - brightBlack: 70.6 - brightRed: 53.3 - brightGreen: 40 - brightYellow: 10.6 - brightBlue: 39.3 - brightMagenta: 44.4 - brightCyan: 43.1 - brightWhite: 0 diff --git a/themes/wuthering-waves-brant-dark.yaml b/themes/wuthering-waves-brant-dark.yaml deleted file mode 100644 index fc16863e..00000000 --- a/themes/wuthering-waves-brant-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Brant (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#1C2130" - fg: "#E4D8DC" - black: "#1C2130" - red: "#D65D8A" - green: "#609070" - yellow: "#C09050" - blue: "#72869F" - magenta: "#B06090" - cyan: "#889AB0" - white: "#E4D8DC" - brightBlack: "#5A6578" - brightRed: "#E070A0" - brightGreen: "#70B080" - brightYellow: "#E0A060" - brightBlue: "#8FA0C0" - brightMagenta: "#D070A0" - brightCyan: "#A0B0D0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 270 - pair: null - contrast: - fg: 82.4 - black: 0 - red: 36.1 - green: 35.1 - yellow: 44.9 - blue: 34.4 - magenta: 30.1 - cyan: 44.4 - white: 82.4 - brightBlack: 20 - brightRed: 43.2 - brightGreen: 49.6 - brightYellow: 55.8 - brightBlue: 48.1 - brightMagenta: 40.2 - brightCyan: 56.9 - brightWhite: 105.5 diff --git a/themes/wuthering-waves-brant.yaml b/themes/wuthering-waves-brant.yaml deleted file mode 100644 index 4eb5843f..00000000 --- a/themes/wuthering-waves-brant.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Brant" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FFFCFA" - fg: "#1C2130" - black: "#1C2130" - red: "#973D6A" - green: "#508060" - yellow: "#B08040" - blue: "#3C4359" - magenta: "#805070" - cyan: "#72869F" - white: "#E4D8DC" - brightBlack: "#5A6578" - brightRed: "#B04070" - brightGreen: "#609070" - brightYellow: "#C09050" - brightBlue: "#506080" - brightMagenta: "#A06080" - brightCyan: "#889AB0" - brightWhite: "#F6F0F2" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 101.5 - black: 101.5 - red: 80.5 - green: 70.1 - yellow: 60.9 - blue: 91.3 - magenta: 80 - cyan: 63.4 - white: 17.3 - brightBlack: 78 - brightRed: 75.2 - brightGreen: 62.7 - brightYellow: 53.1 - brightBlue: 79.9 - brightMagenta: 70.9 - brightCyan: 53.5 - brightWhite: 0 diff --git a/themes/wuthering-waves-cantarella-dark.yaml b/themes/wuthering-waves-cantarella-dark.yaml deleted file mode 100644 index b45313b0..00000000 --- a/themes/wuthering-waves-cantarella-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Cantarella (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#282840" - fg: "#C1C7DB" - black: "#282840" - red: "#D08090" - green: "#7ABAA0" - yellow: "#C8B070" - blue: "#7175C2" - magenta: "#9A8AC0" - cyan: "#70A0C0" - white: "#C1C7DB" - brightBlack: "#6A6A8A" - brightRed: "#E090A0" - brightGreen: "#8ACAB0" - brightYellow: "#D8C080" - brightBlue: "#8185D2" - brightMagenta: "#AA9AD0" - brightCyan: "#80B0D0" - brightWhite: "#F8F9FC" -meta: - mode: "dark" - accent: "purple" - hue: 283 - pair: null - contrast: - fg: 69 - black: 0 - red: 42.4 - green: 54.1 - yellow: 56.8 - blue: 29 - magenta: 39.9 - cyan: 44 - white: 69 - brightBlack: 22.1 - brightRed: 50.6 - brightGreen: 63 - brightYellow: 65.8 - brightBlue: 36.6 - brightMagenta: 48.1 - brightCyan: 52.4 - brightWhite: 100 diff --git a/themes/wuthering-waves-cantarella.yaml b/themes/wuthering-waves-cantarella.yaml deleted file mode 100644 index de620424..00000000 --- a/themes/wuthering-waves-cantarella.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Cantarella" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#F8F9FC" - fg: "#3C3C62" - black: "#3C3C62" - red: "#C07080" - green: "#6AAA8A" - yellow: "#B8A060" - blue: "#6164B2" - magenta: "#8A7AB0" - cyan: "#6090B0" - white: "#E8EAF2" - brightBlack: "#6A6A8A" - brightRed: "#D08090" - brightGreen: "#7ABAA0" - brightYellow: "#C8B070" - brightBlue: "#7175C2" - brightMagenta: "#9A8AC0" - brightCyan: "#70A0C0" - brightWhite: "#F8F9FC" -meta: - mode: "light" - accent: "purple" - hue: null - pair: null - contrast: - fg: 90.6 - black: 90.6 - red: 59.5 - green: 49 - yellow: 46.3 - blue: 72.6 - magenta: 62.1 - cyan: 58.2 - white: 0 - brightBlack: 72.2 - brightRed: 51.9 - brightGreen: 40.6 - brightYellow: 38 - brightBlue: 65.1 - brightMagenta: 54.4 - brightCyan: 50.4 - brightWhite: 0 diff --git a/themes/wuthering-waves-carlotta-dark.yaml b/themes/wuthering-waves-carlotta-dark.yaml deleted file mode 100644 index 4fdacd58..00000000 --- a/themes/wuthering-waves-carlotta-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Carlotta (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#281820" - fg: "#FFE0E8" - black: "#281820" - red: "#FF5080" - green: "#509070" - yellow: "#D0A040" - blue: "#407090" - magenta: "#B05080" - cyan: "#409090" - white: "#FFE0E8" - brightBlack: "#704050" - brightRed: "#FF7090" - brightGreen: "#70B090" - brightYellow: "#E0B060" - brightBlue: "#6090B0" - brightMagenta: "#D070A0" - brightCyan: "#60B0B0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 348 - pair: null - contrast: - fg: 91 - black: 0 - red: 42.9 - green: 34.8 - yellow: 53.4 - blue: 23.6 - magenta: 26.7 - cyan: 35.2 - white: 91 - brightBlack: 12.1 - brightRed: 49.5 - brightGreen: 50.7 - brightYellow: 62.3 - brightBlue: 38.2 - brightMagenta: 40.8 - brightCyan: 51 - brightWhite: 106.2 diff --git a/themes/wuthering-waves-carlotta.yaml b/themes/wuthering-waves-carlotta.yaml deleted file mode 100644 index 0895cde0..00000000 --- a/themes/wuthering-waves-carlotta.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Carlotta" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FFFFFF" - fg: "#2A1A1C" - black: "#2A1A1C" - red: "#9A2850" - green: "#509068" - yellow: "#A08040" - blue: "#3A5568" - magenta: "#9A2850" - cyan: "#4A8898" - white: "#FCE8EC" - brightBlack: "#6A5558" - brightRed: "#B83060" - brightGreen: "#60A078" - brightYellow: "#B09050" - brightBlue: "#4A6578" - brightMagenta: "#B83060" - brightCyan: "#5A98A8" - brightWhite: "#FEFAFB" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 103.5 - black: 103.5 - red: 85 - green: 65.4 - yellow: 64.6 - blue: 87.2 - magenta: 85 - cyan: 67.1 - white: 8.3 - brightBlack: 83.8 - brightRed: 77.7 - brightGreen: 57.7 - brightYellow: 56.9 - brightBlue: 80.6 - brightMagenta: 77.7 - brightCyan: 59.5 - brightWhite: 0 diff --git a/themes/wuthering-waves-cartethyia-dark.yaml b/themes/wuthering-waves-cartethyia-dark.yaml deleted file mode 100644 index b6833757..00000000 --- a/themes/wuthering-waves-cartethyia-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Cartethyia (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#0F1820" - fg: "#D8E8F4" - black: "#1C2838" - red: "#E88888" - green: "#70B890" - yellow: "#F0C078" - blue: "#6BA8D8" - magenta: "#B888D0" - cyan: "#88C8F0" - white: "#D8E8F4" - brightBlack: "#4878A0" - brightRed: "#F89898" - brightGreen: "#80C8A0" - brightYellow: "#FFD090" - brightBlue: "#88C8F0" - brightMagenta: "#C898E0" - brightCyan: "#A0E0FF" - brightWhite: "#F0F8FC" -meta: - mode: "dark" - accent: "orange" - hue: 246 - pair: null - contrast: - fg: 90.4 - black: 0 - red: 51.6 - green: 54.9 - yellow: 72.2 - blue: 51 - magenta: 46.8 - cyan: 67.8 - white: 90.4 - brightBlack: 28.1 - brightRed: 60 - brightGreen: 63.6 - brightYellow: 81.7 - brightBlue: 67.8 - brightMagenta: 55.2 - brightCyan: 81.4 - brightWhite: 101.3 diff --git a/themes/wuthering-waves-cartethyia.yaml b/themes/wuthering-waves-cartethyia.yaml deleted file mode 100644 index 21ee7b3f..00000000 --- a/themes/wuthering-waves-cartethyia.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Cartethyia" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FAFCFD" - fg: "#2C3845" - black: "#2C3845" - red: "#C86868" - green: "#60A880" - yellow: "#D4A860" - blue: "#4888C0" - magenta: "#A878C0" - cyan: "#6BA8D8" - white: "#E8F2F8" - brightBlack: "#586878" - brightRed: "#D87878" - brightGreen: "#70B890" - brightYellow: "#E4B870" - brightBlue: "#5898C8" - brightMagenta: "#B888D0" - brightCyan: "#88C8F0" - brightWhite: "#F2F8FC" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 95.3 - black: 95.3 - red: 62.4 - green: 52.2 - yellow: 41.1 - blue: 63.1 - magenta: 59.7 - cyan: 47.9 - white: 0 - brightBlack: 76.6 - brightRed: 55 - brightGreen: 44.2 - brightYellow: 32.6 - brightBlue: 56 - brightMagenta: 51.9 - brightCyan: 31.7 - brightWhite: 0 diff --git a/themes/wuthering-waves-changli-dark.yaml b/themes/wuthering-waves-changli-dark.yaml deleted file mode 100644 index 8ce4c334..00000000 --- a/themes/wuthering-waves-changli-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Changli (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#1A1514" - fg: "#F5E8E3" - black: "#1A1514" - red: "#F5A3A3" - green: "#90B080" - yellow: "#E8A050" - blue: "#8098B0" - magenta: "#D89AA0" - cyan: "#80A8A0" - white: "#F5E8E3" - brightBlack: "#6A5552" - brightRed: "#FFB5B5" - brightGreen: "#A0C090" - brightYellow: "#F8B860" - brightBlue: "#90A8C0" - brightMagenta: "#E8AAB0" - brightCyan: "#90B8B0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 93.6 - black: 0 - red: 63.6 - green: 53.6 - yellow: 58.3 - blue: 44.4 - magenta: 55.5 - cyan: 50 - white: 93.6 - brightBlack: 17.1 - brightRed: 72.4 - brightGreen: 62.4 - brightYellow: 70.1 - brightBlue: 52.7 - brightMagenta: 64.3 - brightCyan: 58.6 - brightWhite: 107 diff --git a/themes/wuthering-waves-changli.yaml b/themes/wuthering-waves-changli.yaml deleted file mode 100644 index 2e6e9f52..00000000 --- a/themes/wuthering-waves-changli.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Changli" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FFFCFA" - fg: "#3D2D2A" - black: "#383131" - red: "#C03020" - green: "#609060" - yellow: "#C08020" - blue: "#506080" - magenta: "#A04050" - cyan: "#508080" - white: "#FEECE8" - brightBlack: "#706060" - brightRed: "#E05040" - brightGreen: "#70B070" - brightYellow: "#E0A040" - brightBlue: "#607090" - brightMagenta: "#C05060" - brightCyan: "#609090" - brightWhite: "#FFFCFA" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 97.8 - black: 97.3 - red: 75.6 - green: 63.1 - yellow: 58.7 - blue: 79.9 - magenta: 79.1 - cyan: 69.2 - white: 0 - brightBlack: 78.2 - brightRed: 63.9 - brightGreen: 48.9 - brightYellow: 42.9 - brightBlue: 72.9 - brightMagenta: 69.9 - brightCyan: 61.7 - brightWhite: 0 diff --git a/themes/wuthering-waves-chisa-dark.yaml b/themes/wuthering-waves-chisa-dark.yaml deleted file mode 100644 index 94786676..00000000 --- a/themes/wuthering-waves-chisa-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Chisa (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#1A1816" - fg: "#F5F0EB" - black: "#1A1816" - red: "#C83540" - green: "#80B080" - yellow: "#F8D7BD" - blue: "#8898A8" - magenta: "#B87888" - cyan: "#6E6C78" - white: "#F5F0EB" - brightBlack: "#645C58" - brightRed: "#E84550" - brightGreen: "#90C090" - brightYellow: "#FFE8D0" - brightBlue: "#98A8B8" - brightMagenta: "#D89098" - brightCyan: "#8E8C98" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 97.4 - black: 0 - red: 26.1 - green: 52 - yellow: 84.8 - blue: 44.5 - magenta: 38.6 - cyan: 25.1 - white: 97.4 - brightBlack: 18.4 - brightRed: 35.4 - brightGreen: 60.7 - brightYellow: 94.1 - brightBlue: 52.9 - brightMagenta: 51.7 - brightCyan: 40.1 - brightWhite: 106.7 diff --git a/themes/wuthering-waves-chisa.yaml b/themes/wuthering-waves-chisa.yaml deleted file mode 100644 index e55d8bfe..00000000 --- a/themes/wuthering-waves-chisa.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Chisa" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FEFDFB" - fg: "#2D2725" - black: "#2D2725" - red: "#C83540" - green: "#70A070" - yellow: "#D8A878" - blue: "#6E6C78" - magenta: "#B87888" - cyan: "#8898A8" - white: "#FCF9F6" - brightBlack: "#8D7A78" - brightRed: "#E84550" - brightGreen: "#88C088" - brightYellow: "#F8D7BD" - brightBlue: "#8E8C98" - brightMagenta: "#D89098" - brightCyan: "#98A8B8" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 100.4 - black: 100.4 - red: 73.3 - green: 55.7 - yellow: 40.9 - blue: 74.3 - magenta: 60.8 - cyan: 54.9 - white: 0 - brightBlack: 66.6 - brightRed: 63.9 - brightGreen: 40.1 - brightYellow: 16.4 - brightBlue: 59.3 - brightMagenta: 48 - brightCyan: 46.8 - brightWhite: 0 diff --git a/themes/wuthering-waves-galbrena-dark.yaml b/themes/wuthering-waves-galbrena-dark.yaml deleted file mode 100644 index f891f56f..00000000 --- a/themes/wuthering-waves-galbrena-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Galbrena (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#16181A" - fg: "#EBF0F5" - black: "#16181A" - red: "#B87888" - green: "#80B8A0" - yellow: "#B8A8D8" - blue: "#3486D8" - magenta: "#9F76B8" - cyan: "#535A77" - white: "#EBF0F5" - brightBlack: "#565E64" - brightRed: "#C88898" - brightGreen: "#90C8B0" - brightYellow: "#C8B8E8" - brightBlue: "#5098E8" - brightMagenta: "#B090C8" - brightCyan: "#636A87" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 96.5 - black: 0 - red: 38.7 - green: 56.5 - yellow: 58.2 - blue: 35.6 - magenta: 36.6 - cyan: 17.5 - white: 96.5 - brightBlack: 18.1 - brightRed: 46.6 - brightGreen: 65.4 - brightYellow: 67.2 - brightBlue: 44.3 - brightMagenta: 47.8 - brightCyan: 24.1 - brightWhite: 106.8 diff --git a/themes/wuthering-waves-galbrena.yaml b/themes/wuthering-waves-galbrena.yaml deleted file mode 100644 index a8ea60d3..00000000 --- a/themes/wuthering-waves-galbrena.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Galbrena" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FEFEFF" - fg: "#1D2228" - black: "#1D2228" - red: "#C87888" - green: "#70A888" - yellow: "#A898D8" - blue: "#3486D8" - magenta: "#9F76B8" - cyan: "#535A77" - white: "#FBFDFE" - brightBlack: "#727A80" - brightRed: "#D88898" - brightGreen: "#88C098" - brightYellow: "#B8A8E8" - brightBlue: "#5098E8" - brightMagenta: "#B090C8" - brightCyan: "#636A87" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "indigo" - hue: null - pair: null - contrast: - fg: 102.4 - black: 102.4 - red: 58.8 - green: 52.5 - yellow: 49.8 - blue: 64.4 - magenta: 63.4 - cyan: 82.8 - white: 0 - brightBlack: 69.7 - brightRed: 51 - brightGreen: 40.3 - brightYellow: 41.5 - brightBlue: 55.9 - brightMagenta: 52.4 - brightCyan: 76 - brightWhite: 0 diff --git a/themes/wuthering-waves-iuno-dark.yaml b/themes/wuthering-waves-iuno-dark.yaml deleted file mode 100644 index dfdd3131..00000000 --- a/themes/wuthering-waves-iuno-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Iuno (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#181820" - fg: "#E8E0D8" - black: "#181820" - red: "#C05050" - green: "#709060" - yellow: "#D4A830" - blue: "#6890B8" - magenta: "#907090" - cyan: "#609090" - white: "#E8E0D8" - brightBlack: "#4A5878" - brightRed: "#D06060" - brightGreen: "#80A070" - brightYellow: "#E4B840" - brightBlue: "#78A0C8" - brightMagenta: "#A080A0" - brightCyan: "#70A0A0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 285 - pair: null - contrast: - fg: 87.4 - black: 0 - red: 28.8 - green: 37 - yellow: 57.3 - blue: 39.6 - magenta: 30.9 - cyan: 37.3 - white: 87.4 - brightBlack: 16.2 - brightRed: 35.5 - brightGreen: 45 - brightYellow: 66.1 - brightBlue: 47.7 - brightMagenta: 38.5 - brightCyan: 45.2 - brightWhite: 106.7 diff --git a/themes/wuthering-waves-iuno.yaml b/themes/wuthering-waves-iuno.yaml deleted file mode 100644 index f5e6960f..00000000 --- a/themes/wuthering-waves-iuno.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Iuno" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FFFFFF" - fg: "#2A3040" - black: "#2A3040" - red: "#C05050" - green: "#609060" - yellow: "#D4A830" - blue: "#4A6890" - magenta: "#906080" - cyan: "#408090" - white: "#FDFADC" - brightBlack: "#606880" - brightRed: "#D06060" - brightGreen: "#70A070" - brightYellow: "#E4B840" - brightBlue: "#5A78A0" - brightMagenta: "#A07090" - brightCyan: "#5090A0" - brightWhite: "#FFFCFA" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 99.5 - black: 99.5 - red: 71.7 - green: 64.6 - yellow: 43.6 - blue: 78.5 - magenta: 74.7 - cyan: 70.8 - white: 0 - brightBlack: 77.7 - brightRed: 65 - brightGreen: 56.9 - brightYellow: 35.2 - brightBlue: 71.4 - brightMagenta: 67.5 - brightCyan: 63.4 - brightWhite: 0 diff --git a/themes/wuthering-waves-jinhsi.yaml b/themes/wuthering-waves-jinhsi.yaml deleted file mode 100644 index b45c3a4e..00000000 --- a/themes/wuthering-waves-jinhsi.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Jinhsi" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FFFFFF" - fg: "#2A3638" - black: "#2A3638" - red: "#C06868" - green: "#50A078" - yellow: "#A08840" - blue: "#4888A8" - magenta: "#8878A8" - cyan: "#1A8A95" - white: "#E0F5F6" - brightBlack: "#5A6A6C" - brightRed: "#D08080" - brightGreen: "#60B088" - brightYellow: "#B09850" - brightBlue: "#5898B8" - brightMagenta: "#9888B8" - brightCyan: "#28A0AC" - brightWhite: "#FAFEFE" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.4 - black: 98.4 - red: 65.9 - green: 58.6 - yellow: 61.9 - blue: 66.4 - magenta: 67 - cyan: 67.8 - white: 0 - brightBlack: 78.3 - brightRed: 56 - brightGreen: 50.7 - brightYellow: 54.1 - brightBlue: 58.9 - brightMagenta: 59.3 - brightCyan: 57.9 - brightWhite: 0 diff --git a/themes/wuthering-waves-lynae-dark.yaml b/themes/wuthering-waves-lynae-dark.yaml deleted file mode 100644 index b2dbc8d4..00000000 --- a/themes/wuthering-waves-lynae-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Lynae (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#252830" - fg: "#E0DCD8" - black: "#252830" - red: "#D87A8A" - green: "#6AAA8A" - yellow: "#D4BCB5" - blue: "#5A8A9A" - magenta: "#B887A5" - cyan: "#79B2B9" - white: "#E0DCD8" - brightBlack: "#6A7280" - brightRed: "#E88A9A" - brightGreen: "#7ABAA0" - brightYellow: "#E4CCC5" - brightBlue: "#6A9AAA" - brightMagenta: "#C898B0" - brightCyan: "#89C2C9" - brightWhite: "#FDFBFA" -meta: - mode: "dark" - accent: "red" - hue: 269 - pair: null - contrast: - fg: 82.3 - black: 0 - red: 42.3 - green: 45.9 - yellow: 65.7 - blue: 32.8 - magenta: 42 - cyan: 52 - white: 82.3 - brightBlack: 24.6 - brightRed: 50.4 - brightGreen: 54.5 - brightYellow: 75.2 - brightBlue: 40.6 - brightMagenta: 50.4 - brightCyan: 60.8 - brightWhite: 102 diff --git a/themes/wuthering-waves-lynae.yaml b/themes/wuthering-waves-lynae.yaml deleted file mode 100644 index b7ec5168..00000000 --- a/themes/wuthering-waves-lynae.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Lynae" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FDFBFA" - fg: "#313843" - black: "#313843" - red: "#D87A8A" - green: "#6AAA8A" - yellow: "#C4ACA5" - blue: "#5A8A9A" - magenta: "#B887A5" - cyan: "#79B2B9" - white: "#F0EBE9" - brightBlack: "#5A6270" - brightRed: "#E88A9A" - brightGreen: "#7ABAA0" - brightYellow: "#D4BCB5" - brightBlue: "#6A9AAA" - brightMagenta: "#C898B0" - brightCyan: "#89C2C9" - brightWhite: "#FDFBFA" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 94.9 - black: 94.9 - red: 53.8 - green: 50.4 - yellow: 39.9 - blue: 63.2 - magenta: 54.2 - cyan: 44.4 - white: 0 - brightBlack: 78.5 - brightRed: 46 - brightGreen: 42 - brightYellow: 31.2 - brightBlue: 55.5 - brightMagenta: 45.9 - brightCyan: 35.9 - brightWhite: 0 diff --git a/themes/wuthering-waves-mornye-dark.yaml b/themes/wuthering-waves-mornye-dark.yaml deleted file mode 100644 index 5c057498..00000000 --- a/themes/wuthering-waves-mornye-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Mornye (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#1A1520" - fg: "#F4F3F6" - black: "#1A1520" - red: "#E18DA9" - green: "#88A890" - yellow: "#FAB3CA" - blue: "#DDCEFC" - magenta: "#A88EBB" - cyan: "#C8A8D8" - white: "#F4F3F6" - brightBlack: "#635860" - brightRed: "#F0A0C0" - brightGreen: "#98B8A0" - brightYellow: "#FFC8DC" - brightBlue: "#EEDEFC" - brightMagenta: "#C8AECB" - brightCyan: "#D8B8E8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 305 - pair: null - contrast: - fg: 99.2 - black: 0 - red: 53 - green: 50 - yellow: 71.5 - blue: 80.1 - magenta: 45.5 - cyan: 60.4 - white: 99.2 - brightBlack: 17.5 - brightRed: 62.7 - brightGreen: 58.6 - brightYellow: 81.2 - brightBlue: 89.3 - brightMagenta: 62 - brightCyan: 69.5 - brightWhite: 106.9 diff --git a/themes/wuthering-waves-mornye.yaml b/themes/wuthering-waves-mornye.yaml deleted file mode 100644 index 645a20cd..00000000 --- a/themes/wuthering-waves-mornye.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Mornye" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FEFEFC" - fg: "#2D2535" - black: "#2D2535" - red: "#D87898" - green: "#70A888" - yellow: "#E8B8D0" - blue: "#B8A8D8" - magenta: "#A88EBB" - cyan: "#C8A8D8" - white: "#FBF8FD" - brightBlack: "#8D7A8A" - brightRed: "#E890B0" - brightGreen: "#88C0A0" - brightYellow: "#F8D0E8" - brightBlue: "#D0C0E8" - brightMagenta: "#C8AECB" - brightCyan: "#D8B8E8" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 100.8 - black: 100.8 - red: 55.3 - green: 52.3 - yellow: 30.3 - blue: 42.2 - magenta: 54.6 - cyan: 40.2 - white: 0 - brightBlack: 66.4 - brightRed: 44.9 - brightGreen: 39.9 - brightYellow: 18 - brightBlue: 29.5 - brightMagenta: 38.6 - brightCyan: 31.5 - brightWhite: 0 diff --git a/themes/wuthering-waves-roccia-dark.yaml b/themes/wuthering-waves-roccia-dark.yaml deleted file mode 100644 index 09657336..00000000 --- a/themes/wuthering-waves-roccia-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Roccia (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#181418" - fg: "#F0ECF5" - black: "#181418" - red: "#D86880" - green: "#90B8B0" - yellow: "#FDB3DD" - blue: "#5F6AC3" - magenta: "#C2588A" - cyan: "#A898B8" - white: "#F0ECF5" - brightBlack: "#5E5A64" - brightRed: "#E87890" - brightGreen: "#A0C8C0" - brightYellow: "#FDC3ED" - brightBlue: "#6F7AD3" - brightMagenta: "#D2689A" - brightCyan: "#B8A8C8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 326 - pair: null - contrast: - fg: 95.6 - black: 0 - red: 40.1 - green: 58.7 - yellow: 73.1 - blue: 27.4 - magenta: 32.8 - cyan: 49 - white: 95.6 - brightBlack: 17.9 - brightRed: 47.6 - brightGreen: 67.7 - brightYellow: 79.9 - brightBlue: 34.6 - brightMagenta: 39.9 - brightCyan: 57.6 - brightWhite: 107 diff --git a/themes/wuthering-waves-roccia.yaml b/themes/wuthering-waves-roccia.yaml deleted file mode 100644 index f1430dd8..00000000 --- a/themes/wuthering-waves-roccia.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Roccia" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FEFCFE" - fg: "#1D1A20" - black: "#1D1A20" - red: "#D86880" - green: "#70A898" - yellow: "#FDC3ED" - blue: "#5F6AC3" - magenta: "#C2588A" - cyan: "#9888A8" - white: "#FCFAFD" - brightBlack: "#7A7280" - brightRed: "#E87890" - brightGreen: "#88C0A8" - brightYellow: "#FDD3FC" - brightBlue: "#6F7AD3" - brightMagenta: "#D2689A" - brightCyan: "#A898B8" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 102.6 - black: 102.6 - red: 59.3 - green: 51 - yellow: 21.1 - blue: 72 - magenta: 66.6 - cyan: 58.6 - white: 0 - brightBlack: 70.7 - brightRed: 51.9 - brightGreen: 38.9 - brightYellow: 14.4 - brightBlue: 64.7 - brightMagenta: 59.5 - brightCyan: 50.5 - brightWhite: 0 diff --git a/themes/wuthering-waves-rover.yaml b/themes/wuthering-waves-rover.yaml deleted file mode 100644 index e18c4275..00000000 --- a/themes/wuthering-waves-rover.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Rover" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FFFCFA" - fg: "#312328" - black: "#312328" - red: "#A25050" - green: "#709060" - yellow: "#D09060" - blue: "#506080" - magenta: "#906070" - cyan: "#608080" - white: "#F7EADC" - brightBlack: "#706060" - brightRed: "#C06060" - brightGreen: "#80A070" - brightYellow: "#E3B08B" - brightBlue: "#607090" - brightMagenta: "#A07080" - brightCyan: "#709090" - brightWhite: "#FFFCFA" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 100.3 - black: 100.3 - red: 75.7 - green: 62 - yellow: 50.4 - blue: 79.9 - magenta: 73.8 - cyan: 68.1 - white: 7.3 - brightBlack: 78.2 - brightRed: 66.5 - brightGreen: 54.1 - brightYellow: 35.5 - brightBlue: 72.9 - brightMagenta: 66.6 - brightCyan: 60.6 - brightWhite: 0 diff --git a/themes/wuthering-waves-sanhua-dark.yaml b/themes/wuthering-waves-sanhua-dark.yaml deleted file mode 100644 index b05cdf02..00000000 --- a/themes/wuthering-waves-sanhua-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Sanhua (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#16181A" - fg: "#EDF0F2" - black: "#16181A" - red: "#DE7470" - green: "#98B8B0" - yellow: "#D8C8C0" - blue: "#A0A6AD" - magenta: "#C8A8C8" - cyan: "#A8B8C0" - white: "#EDF0F2" - brightBlack: "#565A5C" - brightRed: "#EE8480" - brightGreen: "#A8C8C0" - brightYellow: "#E8D8D0" - brightBlue: "#C0C6CD" - brightMagenta: "#D8B8D8" - brightCyan: "#B8C8D0" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 96.6 - black: 0 - red: 43.5 - green: 59.2 - yellow: 74 - blue: 52.6 - magenta: 59.5 - cyan: 61.5 - white: 96.6 - brightBlack: 16.7 - brightRed: 51.3 - brightGreen: 68.2 - brightYellow: 83.7 - brightBlue: 70.6 - brightMagenta: 68.6 - brightCyan: 70.7 - brightWhite: 106.8 diff --git a/themes/wuthering-waves-sanhua.yaml b/themes/wuthering-waves-sanhua.yaml deleted file mode 100644 index 1abf37b1..00000000 --- a/themes/wuthering-waves-sanhua.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Sanhua" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FEFEFE" - fg: "#1D1F20" - black: "#1D1F20" - red: "#D86870" - green: "#70A888" - yellow: "#C8B8B0" - blue: "#A0A6AD" - magenta: "#B898C8" - cyan: "#98A8B0" - white: "#FCFDFD" - brightBlack: "#727678" - brightRed: "#E87880" - brightGreen: "#88C098" - brightYellow: "#D8C8C0" - brightBlue: "#B0B6BD" - brightMagenta: "#C8A8D8" - brightCyan: "#A8B8C0" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.9 - black: 102.9 - red: 60.7 - green: 52.4 - yellow: 36.1 - blue: 47.7 - magenta: 48.6 - cyan: 47.7 - white: 0 - brightBlack: 71.3 - brightRed: 53.3 - brightGreen: 40.2 - brightYellow: 27.3 - brightBlue: 39.2 - brightMagenta: 40.2 - brightCyan: 39.2 - brightWhite: 0 diff --git a/themes/wuthering-waves-scar-dark.yaml b/themes/wuthering-waves-scar-dark.yaml deleted file mode 100644 index 9a35a05a..00000000 --- a/themes/wuthering-waves-scar-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Scar (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#161618" - fg: "#D4D4D4" - black: "#121215" - red: "#FF3355" - green: "#2E8B57" - yellow: "#E6C200" - blue: "#4A6A8A" - magenta: "#B01830" - cyan: "#5BA4C8" - white: "#E0E0E0" - brightBlack: "#505058" - brightRed: "#FF6680" - brightGreen: "#50C878" - brightYellow: "#FFD700" - brightBlue: "#6A8AA8" - brightMagenta: "#D03050" - brightCyan: "#7BC8E8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 79.6 - black: 0 - red: 39.1 - green: 31.7 - yellow: 70.5 - blue: 22.7 - magenta: 18.8 - cyan: 47.7 - white: 87 - brightBlack: 13.5 - brightRed: 47.6 - brightGreen: 59.9 - brightYellow: 83.3 - brightBlue: 37.1 - brightMagenta: 27.8 - brightCyan: 66.5 - brightWhite: 107 diff --git a/themes/wuthering-waves-scar.yaml b/themes/wuthering-waves-scar.yaml deleted file mode 100644 index 41899808..00000000 --- a/themes/wuthering-waves-scar.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Scar" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#F5F5F7" - fg: "#1E1E24" - black: "#1E1E24" - red: "#D81E3D" - green: "#2E8B57" - yellow: "#E6C200" - blue: "#4A6A8A" - magenta: "#8B0000" - cyan: "#5BA4C8" - white: "#EAEAEF" - brightBlack: "#5A5A65" - brightRed: "#FF4D6D" - brightGreen: "#50C878" - brightYellow: "#FFD700" - brightBlue: "#6A8AA8" - brightMagenta: "#A03040" - brightCyan: "#7BC8E8" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 97.7 - black: 97.7 - red: 66.9 - green: 63.1 - yellow: 25.4 - blue: 72.3 - magenta: 84.9 - cyan: 47.4 - white: 0 - brightBlack: 77.6 - brightRed: 52.2 - brightGreen: 35.5 - brightYellow: 13.3 - brightBlue: 57.8 - brightMagenta: 77.4 - brightCyan: 29.2 - brightWhite: 0 diff --git a/themes/wuthering-waves-taoqi.yaml b/themes/wuthering-waves-taoqi.yaml deleted file mode 100644 index aaf97fe6..00000000 --- a/themes/wuthering-waves-taoqi.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Taoqi" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FEFCFD" - fg: "#2D1D25" - black: "#2D1D25" - red: "#D86380" - green: "#70A888" - yellow: "#E8A8C8" - blue: "#9878B8" - magenta: "#B9536E" - cyan: "#A878A8" - white: "#FCF8FA" - brightBlack: "#8D7278" - brightRed: "#E87390" - brightGreen: "#88C098" - brightYellow: "#F8C0D8" - brightBlue: "#A888C8" - brightMagenta: "#C9637E" - brightCyan: "#B888B8" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 101.4 - black: 101.4 - red: 60.4 - green: 51.5 - yellow: 35.4 - blue: 62.8 - magenta: 70.2 - cyan: 61.5 - white: 0 - brightBlack: 68.7 - brightRed: 53.1 - brightGreen: 39.4 - brightYellow: 23.8 - brightBlue: 55 - brightMagenta: 63.3 - brightCyan: 53.7 - brightWhite: 0 diff --git a/themes/wuthering-waves-the-shorekeeper-dark.yaml b/themes/wuthering-waves-the-shorekeeper-dark.yaml deleted file mode 100644 index dc92dd0c..00000000 --- a/themes/wuthering-waves-the-shorekeeper-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : The Shorekeeper (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#0D1B28" - fg: "#D4EBFA" - black: "#1A2F3F" - red: "#E88899" - green: "#60B088" - yellow: "#F0C070" - blue: "#6BB6D6" - magenta: "#A78BFA" - cyan: "#89CFF0" - white: "#D4EBFA" - brightBlack: "#4A7A9F" - brightRed: "#F8A0AA" - brightGreen: "#70C098" - brightYellow: "#FFD085" - brightBlue: "#89CFF0" - brightMagenta: "#C4B5FD" - brightCyan: "#A0E0FF" - brightWhite: "#F0F8FC" -meta: - mode: "dark" - accent: "magenta" - hue: 248 - pair: null - contrast: - fg: 91.3 - black: 0 - red: 51.9 - green: 49.9 - yellow: 71.7 - blue: 56.3 - magenta: 47.9 - cyan: 70.7 - white: 91.3 - brightBlack: 28.5 - brightRed: 62.9 - brightGreen: 58.3 - brightYellow: 81.2 - brightBlue: 70.7 - brightMagenta: 66.5 - brightCyan: 81.1 - brightWhite: 101 diff --git a/themes/wuthering-waves-the-shorekeeper.yaml b/themes/wuthering-waves-the-shorekeeper.yaml deleted file mode 100644 index 7207cfb4..00000000 --- a/themes/wuthering-waves-the-shorekeeper.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : The Shorekeeper" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#F8FCFE" - fg: "#2B5F8F" - black: "#2B5F8F" - red: "#C85F75" - green: "#50A078" - yellow: "#D4A055" - blue: "#4A8AB8" - magenta: "#9B86BD" - cyan: "#6BB6D6" - white: "#E0F0F8" - brightBlack: "#5A8AB0" - brightRed: "#D87585" - brightGreen: "#60B088" - brightYellow: "#E4B065" - brightBlue: "#5A9AC8" - brightMagenta: "#B8A4D4" - brightCyan: "#89CFF0" - brightWhite: "#F0F8FC" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 80.6 - black: 80.6 - red: 64 - green: 56.3 - yellow: 43.9 - blue: 62.5 - magenta: 57.1 - cyan: 42.2 - white: 0 - brightBlack: 62.1 - brightRed: 55.2 - brightGreen: 48.5 - brightYellow: 35.5 - brightBlue: 54.9 - brightMagenta: 42.3 - brightCyan: 28.5 - brightWhite: 0 diff --git a/themes/wuthering-waves-verina-dark.yaml b/themes/wuthering-waves-verina-dark.yaml deleted file mode 100644 index 85668bea..00000000 --- a/themes/wuthering-waves-verina-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Verina (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#1A1C18" - fg: "#F0F5EB" - black: "#1A1C18" - red: "#C87870" - green: "#8AC880" - yellow: "#E3F275" - blue: "#7CA8B0" - magenta: "#B89898" - cyan: "#6C8C81" - white: "#F0F5EB" - brightBlack: "#5A6258" - brightRed: "#D89080" - brightGreen: "#9AD890" - brightYellow: "#F0FF90" - brightBlue: "#8CB8C0" - brightMagenta: "#C8A8A8" - brightCyan: "#7C9C91" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 98.7 - black: 0 - red: 40.2 - green: 63 - yellow: 91.9 - blue: 49.7 - magenta: 49.1 - cyan: 35.8 - white: 98.7 - brightBlack: 18.9 - brightRed: 50.6 - brightGreen: 72.1 - brightYellow: 100.5 - brightBlue: 58.3 - brightMagenta: 57.8 - brightCyan: 43.7 - brightWhite: 106.4 diff --git a/themes/wuthering-waves-verina.yaml b/themes/wuthering-waves-verina.yaml deleted file mode 100644 index a7e49e9c..00000000 --- a/themes/wuthering-waves-verina.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Verina" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FDFEF8" - fg: "#252B1D" - black: "#252B1D" - red: "#B87860" - green: "#70A870" - yellow: "#C8B860" - blue: "#6888A0" - magenta: "#A87890" - cyan: "#6C8C81" - white: "#FBFDF5" - brightBlack: "#7A8272" - brightRed: "#D89078" - brightGreen: "#88C088" - brightYellow: "#DFD48B" - brightBlue: "#7898B0" - brightMagenta: "#C890A8" - brightCyan: "#7C9C91" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 100.4 - black: 100.4 - red: 62.1 - green: 52.7 - yellow: 37.8 - blue: 63.9 - magenta: 63 - cyan: 63.4 - white: 0 - brightBlack: 66.3 - brightRed: 49.1 - brightGreen: 40.3 - brightYellow: 22.7 - brightBlue: 56.1 - brightMagenta: 50.1 - brightCyan: 55.6 - brightWhite: 0 diff --git a/themes/wuthering-waves-yinlin-dark.yaml b/themes/wuthering-waves-yinlin-dark.yaml deleted file mode 100644 index 30546bdb..00000000 --- a/themes/wuthering-waves-yinlin-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Yinlin (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#18141A" - fg: "#F0EBF0" - black: "#18141A" - red: "#EE5257" - green: "#90B8A0" - yellow: "#C5ADC7" - blue: "#8B64AB" - magenta: "#C890A8" - cyan: "#A88898" - white: "#F0EBF0" - brightBlack: "#5E5A60" - brightRed: "#F87277" - brightGreen: "#A0C8B0" - brightYellow: "#D5BDD7" - brightBlue: "#9B74BB" - brightMagenta: "#D8A0B8" - brightCyan: "#B898A8" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: 315 - pair: null - contrast: - fg: 94.9 - black: 0 - red: 39.2 - green: 58 - yellow: 61.2 - blue: 28.6 - magenta: 50 - cyan: 42.1 - white: 94.9 - brightBlack: 17.8 - brightRed: 48.6 - brightGreen: 67 - brightYellow: 70.3 - brightBlue: 35.9 - brightMagenta: 58.6 - brightCyan: 50.4 - brightWhite: 107 diff --git a/themes/wuthering-waves-yinlin.yaml b/themes/wuthering-waves-yinlin.yaml deleted file mode 100644 index d9d9374f..00000000 --- a/themes/wuthering-waves-yinlin.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Yinlin" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FEFCFD" - fg: "#1D1A20" - black: "#1D1A20" - red: "#EE5257" - green: "#70A890" - yellow: "#D0B0C8" - blue: "#8B64AB" - magenta: "#C890A8" - cyan: "#A88898" - white: "#FCFAFC" - brightBlack: "#7A7278" - brightRed: "#F86267" - brightGreen: "#88C0A0" - brightYellow: "#E0C0D8" - brightBlue: "#9B74BB" - brightMagenta: "#D8A0B8" - brightCyan: "#B898A8" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 102.6 - black: 102.6 - red: 60.1 - green: 51.3 - yellow: 36.2 - blue: 70.7 - magenta: 49.6 - cyan: 57.2 - white: 0 - brightBlack: 70.9 - brightRed: 54.7 - brightGreen: 39.1 - brightYellow: 27.4 - brightBlue: 63.4 - brightMagenta: 41.3 - brightCyan: 49.2 - brightWhite: 0 diff --git a/themes/wuthering-waves-zhezhi-dark.yaml b/themes/wuthering-waves-zhezhi-dark.yaml deleted file mode 100644 index 6572e127..00000000 --- a/themes/wuthering-waves-zhezhi-dark.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Zhezhi (Dark)" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#181616" - fg: "#F0F5F5" - black: "#181616" - red: "#D88090" - green: "#90B8B0" - yellow: "#E6A4C7" - blue: "#97CADD" - magenta: "#C8A0B8" - cyan: "#7BABB4" - white: "#F0F5F5" - brightBlack: "#5E5656" - brightRed: "#E890A0" - brightGreen: "#A0C8C0" - brightYellow: "#F8B8D8" - brightBlue: "#A8D8EC" - brightMagenta: "#D8B0C8" - brightCyan: "#8BBBC4" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 99.7 - black: 0 - red: 46.7 - green: 58.6 - yellow: 62.8 - blue: 69 - magenta: 56 - cyan: 51.6 - white: 99.7 - brightBlack: 16.2 - brightRed: 54.9 - brightGreen: 67.6 - brightYellow: 73.7 - brightBlue: 77.5 - brightMagenta: 64.9 - brightCyan: 60.3 - brightWhite: 106.9 diff --git a/themes/wuthering-waves-zhezhi.yaml b/themes/wuthering-waves-zhezhi.yaml deleted file mode 100644 index d60c1fdd..00000000 --- a/themes/wuthering-waves-zhezhi.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Wuthering Waves : Zhezhi" -source: - marketplace_id: "frostmoon-dev.wuwa-themes" - version: "1.0.7" - installs: 123 - author: "⏾ frostmoon" - repo: "https://github.com/frostmoon-dev/wuwa-themes" - url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" -colors: - bg: "#FDFEFE" - fg: "#242222" - black: "#242222" - red: "#C87888" - green: "#70A898" - yellow: "#D8B8D0" - blue: "#97CADD" - magenta: "#E6A4C7" - cyan: "#7BABB4" - white: "#FBFDFE" - brightBlack: "#7A7676" - brightRed: "#D88898" - brightGreen: "#88C0A8" - brightYellow: "#E8C8E0" - brightBlue: "#A8D8EC" - brightMagenta: "#F8B8D8" - brightCyan: "#8BBBC4" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "red" - hue: null - pair: null - contrast: - fg: 102.1 - black: 102.1 - red: 58.6 - green: 51.8 - yellow: 32.6 - blue: 32 - magenta: 37.9 - cyan: 48.7 - white: 0 - brightBlack: 70.4 - brightRed: 50.8 - brightGreen: 39.6 - brightYellow: 23.6 - brightBlue: 23.9 - brightMagenta: 27.5 - brightCyan: 40.3 - brightWhite: 0 diff --git a/themes/wye-black.yaml b/themes/wye-black.yaml index aa20a22d..b56c32d8 100644 --- a/themes/wye-black.yaml +++ b/themes/wye-black.yaml @@ -8,6 +8,7 @@ source: author: "phyzess" repo: "https://github.com/phyzess/vscode-theme-wye" url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" + formats: null colors: bg: "#000000" fg: "#E5E5E5" diff --git a/themes/wye-dark-soft.yaml b/themes/wye-dark-soft.yaml index e3f56763..6ebd39e7 100644 --- a/themes/wye-dark-soft.yaml +++ b/themes/wye-dark-soft.yaml @@ -8,6 +8,7 @@ source: author: "phyzess" repo: "https://github.com/phyzess/vscode-theme-wye" url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" + formats: null colors: bg: "#222222" fg: "#E5E5E5" diff --git a/themes/wye-dark.yaml b/themes/wye-dark.yaml index dbaa001f..ece85c7d 100644 --- a/themes/wye-dark.yaml +++ b/themes/wye-dark.yaml @@ -8,6 +8,7 @@ source: author: "phyzess" repo: "https://github.com/phyzess/vscode-theme-wye" url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" + formats: null colors: bg: "#151515" fg: "#E5E5E5" diff --git a/themes/wye-light-soft.yaml b/themes/wye-light-soft.yaml index 66a23a53..ef315b8c 100644 --- a/themes/wye-light-soft.yaml +++ b/themes/wye-light-soft.yaml @@ -8,6 +8,7 @@ source: author: "phyzess" repo: "https://github.com/phyzess/vscode-theme-wye" url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" + formats: null colors: bg: "#F1F0E9" fg: "#393A34" diff --git a/themes/wye-light.yaml b/themes/wye-light.yaml index 59c8a3ad..6d568c08 100644 --- a/themes/wye-light.yaml +++ b/themes/wye-light.yaml @@ -8,6 +8,7 @@ source: author: "phyzess" repo: "https://github.com/phyzess/vscode-theme-wye" url: "https://marketplace.visualstudio.com/items?itemName=phyzess.wye" + formats: null colors: bg: "#FFFFFF" fg: "#393A34" diff --git a/themes/x.yaml b/themes/x.yaml index 1b245e0e..0d4e8d4b 100644 --- a/themes/x.yaml +++ b/themes/x.yaml @@ -8,6 +8,7 @@ source: author: "haris" repo: "https://github.com/Elhary/Zora" url: "https://marketplace.visualstudio.com/items?itemName=haris.zoradark" + formats: null colors: bg: "#15202B" fg: "#D4D4D4" diff --git a/themes/xaeon-dark.yaml b/themes/xaeon-dark.yaml index 683ddbff..1bb14812 100644 --- a/themes/xaeon-dark.yaml +++ b/themes/xaeon-dark.yaml @@ -8,6 +8,7 @@ source: author: "aalaeDev" repo: "https://github.com/aalaeDev/xaeon-dark" url: "https://marketplace.visualstudio.com/items?itemName=AalaeBl.ui-xaeon-dark" + formats: null colors: bg: "#100F1C" fg: "#8C88BE" diff --git a/themes/xaidozy-color.yaml b/themes/xaidozy-color.yaml index a5289a60..27d1b84e 100644 --- a/themes/xaidozy-color.yaml +++ b/themes/xaidozy-color.yaml @@ -6,6 +6,7 @@ source: author: "xaidozy" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xaidozy.xaidozy" + formats: null colors: bg: "#111111" fg: "#00FF00" diff --git a/themes/xanthron-light.yaml b/themes/xanthron-light.yaml index 198d6c6a..da208689 100644 --- a/themes/xanthron-light.yaml +++ b/themes/xanthron-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "XanthronWriter.vscode-theme-xanthron-light" version: "0.5.1" installs: 177 + rating: 0 + ratings: 0 author: "Xanthron Writer" repo: "https://github.com/XanthronWriter/vscode-theme-xanthron-light" url: "https://marketplace.visualstudio.com/items?itemName=XanthronWriter.vscode-theme-xanthron-light" + formats: null colors: bg: "#FFFFFF" fg: "#1C2225" diff --git a/themes/xava-color-theme.yaml b/themes/xava-color-theme.yaml deleted file mode 100644 index 5f9faccc..00000000 --- a/themes/xava-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "xava-color-theme" -source: - marketplace_id: "atagulalan.xava-color-theme" - version: "0.0.2" - installs: 94 - rating: 0 - ratings: 0 - author: "Ata" - repo: "https://github.com/atagulalan/xava-color-theme" - url: "https://marketplace.visualstudio.com/items?itemName=atagulalan.xava-color-theme" -colors: - bg: "#050505" - fg: "#FAFAFA" - black: "#050505" - red: "#E62E31" - green: "#CCFF2D" - yellow: "#FFE900" - blue: "#003FFF" - magenta: "#FC467A" - cyan: "#00FFEE" - white: "#E0E0E0" - brightBlack: "#2D3136" - brightRed: "#FF3C6D" - brightGreen: "#CCFF2D" - brightYellow: "#FFD140" - brightBlue: "#0191FF" - brightMagenta: "#914DFF" - brightCyan: "#79FFFC" - brightWhite: "#C2C2C2" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 104.5 - black: 0 - red: 33.1 - green: 96.2 - yellow: 92.2 - blue: 20.7 - magenta: 42.3 - cyan: 91.3 - white: 87.9 - brightBlack: 0 - brightRed: 41.4 - brightGreen: 96.2 - brightYellow: 81.9 - brightBlue: 42.9 - brightMagenta: 31.5 - brightCyan: 94.7 - brightWhite: 69.8 diff --git a/themes/xceodark.yaml b/themes/xceodark.yaml index 170531ea..be6cd4b6 100644 --- a/themes/xceodark.yaml +++ b/themes/xceodark.yaml @@ -8,6 +8,7 @@ source: author: "ceo" repo: "https://github.com/cyr4hx/XCeoDark" url: "https://marketplace.visualstudio.com/items?itemName=ceo.xceodark" + formats: null colors: bg: "#24272C" fg: "#D4D4D4" diff --git a/themes/xcode-dark.yaml b/themes/xcode-dark.yaml index 69be44e3..6526f7eb 100644 --- a/themes/xcode-dark.yaml +++ b/themes/xcode-dark.yaml @@ -8,6 +8,7 @@ source: author: "Lorpaves" repo: "https://github.com/Lorpaves/vscode-flat-dark-theme" url: "https://marketplace.visualstudio.com/items?itemName=Lorpaves.zenies" + formats: null colors: bg: "#242426" fg: "#ABB2BF" diff --git a/themes/xecoy-dark.yaml b/themes/xecoy-dark.yaml index 66f39705..eddc7984 100644 --- a/themes/xecoy-dark.yaml +++ b/themes/xecoy-dark.yaml @@ -8,6 +8,7 @@ source: author: "xecoy-studio" repo: "https://github.com/Xecoy-Studio/Xecoy-Web-Theme" url: "https://marketplace.visualstudio.com/items?itemName=xecoy-studio.xecoy-theme" + formats: null colors: bg: "#1E1F22" fg: "#CCCCCC" diff --git a/themes/xecoy-light.yaml b/themes/xecoy-light.yaml index fffed0ec..bd20a6a7 100644 --- a/themes/xecoy-light.yaml +++ b/themes/xecoy-light.yaml @@ -8,6 +8,7 @@ source: author: "xecoy-studio" repo: "https://github.com/Xecoy-Studio/Xecoy-Web-Theme" url: "https://marketplace.visualstudio.com/items?itemName=xecoy-studio.xecoy-theme" + formats: null colors: bg: "#FFFFFF" fg: "#333333" diff --git a/themes/xenon.yaml b/themes/xenon.yaml index 1346996c..bb1001c7 100644 --- a/themes/xenon.yaml +++ b/themes/xenon.yaml @@ -8,6 +8,8 @@ source: author: "Henrique" repo: "https://github.com/Henriquehnnm/Xenon_VSCode" url: "https://marketplace.visualstudio.com/items?itemName=Henriquehnnm.xenon" + formats: + zed: "https://raw.githubusercontent.com/Henriquehnnm/Xenon_VSCode/master/themes/Xenon-Solarized-Remap-theme.json" colors: bg: "#0B0C0E" fg: "#E8E8EF" diff --git a/themes/xerobi-dark-theme.yaml b/themes/xerobi-dark-theme.yaml index 4ebd5764..406a2246 100644 --- a/themes/xerobi-dark-theme.yaml +++ b/themes/xerobi-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Anis Afifi" repo: "https://github.com/anisafifi/xerobi-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=anisafifi.xerobi-theme" + formats: null colors: bg: "#0F172A" fg: "#CBD5E1" diff --git a/themes/xerobi-light-theme.yaml b/themes/xerobi-light-theme.yaml index 477fb1a0..c08b3eac 100644 --- a/themes/xerobi-light-theme.yaml +++ b/themes/xerobi-light-theme.yaml @@ -8,6 +8,7 @@ source: author: "Anis Afifi" repo: "https://github.com/anisafifi/xerobi-vs-code-theme" url: "https://marketplace.visualstudio.com/items?itemName=anisafifi.xerobi-theme" + formats: null colors: bg: "#FFFFFF" fg: "#334155" diff --git a/themes/xiali-vintage-rose-dark.yaml b/themes/xiali-vintage-rose-dark.yaml index f8b7acde..4d22509d 100644 --- a/themes/xiali-vintage-rose-dark.yaml +++ b/themes/xiali-vintage-rose-dark.yaml @@ -8,6 +8,7 @@ source: author: "xiali-themes" repo: "https://github.com/Fernando-Leon/xiali-vintage-rose" url: "https://marketplace.visualstudio.com/items?itemName=xiali-themes.xiali-vintage-rose" + formats: null colors: bg: "#1A0D10" fg: "#F2C4C4" diff --git a/themes/xiali-vintage-rose-light.yaml b/themes/xiali-vintage-rose-light.yaml index dd6bd31c..a50b1223 100644 --- a/themes/xiali-vintage-rose-light.yaml +++ b/themes/xiali-vintage-rose-light.yaml @@ -8,6 +8,7 @@ source: author: "xiali-themes" repo: "https://github.com/Fernando-Leon/xiali-vintage-rose" url: "https://marketplace.visualstudio.com/items?itemName=xiali-themes.xiali-vintage-rose" + formats: null colors: bg: "#FDF0F0" fg: "#3E1022" diff --git a/themes/xikreti.yaml b/themes/xikreti.yaml index b29bc4cd..45bebdf2 100644 --- a/themes/xikreti.yaml +++ b/themes/xikreti.yaml @@ -8,6 +8,7 @@ source: author: "Thales Cardoso" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Xikreti.xikreti-theme" + formats: null colors: bg: "#262335" fg: "#FFFFFF" diff --git a/themes/xis-one.yaml b/themes/xis-one.yaml deleted file mode 100644 index 3a295d92..00000000 --- a/themes/xis-one.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "xis_one" -source: - marketplace_id: "Xanpis.xis" - version: "0.0.0" - installs: 827 - rating: 0 - ratings: 0 - author: "Xanpis" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=Xanpis.xis" -colors: - bg: "#1E2222" - fg: "#ABB2BF" - black: "#3F4451" - red: "#E05561" - green: "#8CC265" - yellow: "#D18F52" - blue: "#4AA5F0" - magenta: "#C162DE" - cyan: "#42B3C2" - white: "#D7DAE0" - brightBlack: "#4F5666" - brightRed: "#FF616E" - brightGreen: "#A5E075" - brightYellow: "#F0A45D" - brightBlue: "#4DC4FF" - brightMagenta: "#DE73FF" - brightCyan: "#4CD1E0" - brightWhite: "#E6E6E6" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 58.1 - black: 7.6 - red: 35.4 - green: 59.1 - yellow: 47.3 - blue: 48.4 - magenta: 37.8 - cyan: 51.2 - white: 81.7 - brightBlack: 14.2 - brightRed: 44.8 - brightGreen: 75.5 - brightYellow: 59.9 - brightBlue: 62.4 - brightMagenta: 49 - brightCyan: 66.5 - brightWhite: 89.4 diff --git a/themes/xk-dark-catppuccin-mocha.yaml b/themes/xk-dark-catppuccin-mocha.yaml index 15b8aadb..7ca03c15 100644 --- a/themes/xk-dark-catppuccin-mocha.yaml +++ b/themes/xk-dark-catppuccin-mocha.yaml @@ -6,6 +6,7 @@ source: author: "x1ngkong" repo: "https://github.com/x1ngkong/vscode-xk-theme" url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" + formats: null colors: bg: "#1E1E2E" fg: "#CDD6F4" diff --git a/themes/xk-dark-dracula.yaml b/themes/xk-dark-dracula.yaml index a86616a0..3f03018a 100644 --- a/themes/xk-dark-dracula.yaml +++ b/themes/xk-dark-dracula.yaml @@ -6,6 +6,7 @@ source: author: "x1ngkong" repo: "https://github.com/x1ngkong/vscode-xk-theme" url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" + formats: null colors: bg: "#282A36" fg: "#F8F8F2" diff --git a/themes/xk-dark-gruvbox.yaml b/themes/xk-dark-gruvbox.yaml index 90241749..9d804087 100644 --- a/themes/xk-dark-gruvbox.yaml +++ b/themes/xk-dark-gruvbox.yaml @@ -6,6 +6,7 @@ source: author: "x1ngkong" repo: "https://github.com/x1ngkong/vscode-xk-theme" url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" + formats: null colors: bg: "#1D2021" fg: "#EBDBB2" diff --git a/themes/xk-dark-monokai-pro.yaml b/themes/xk-dark-monokai-pro.yaml index e0190309..adeaccc9 100644 --- a/themes/xk-dark-monokai-pro.yaml +++ b/themes/xk-dark-monokai-pro.yaml @@ -6,6 +6,7 @@ source: author: "x1ngkong" repo: "https://github.com/x1ngkong/vscode-xk-theme" url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" + formats: null colors: bg: "#2D2A2E" fg: "#FCFCFA" diff --git a/themes/xk-dark-tokyo-night.yaml b/themes/xk-dark-tokyo-night.yaml index 6fa66518..233bc138 100644 --- a/themes/xk-dark-tokyo-night.yaml +++ b/themes/xk-dark-tokyo-night.yaml @@ -6,6 +6,7 @@ source: author: "x1ngkong" repo: "https://github.com/x1ngkong/vscode-xk-theme" url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" + formats: null colors: bg: "#1A1B2E" fg: "#C0CAF5" diff --git a/themes/xk-light-catppuccin-latte.yaml b/themes/xk-light-catppuccin-latte.yaml index 9c838d07..705b4659 100644 --- a/themes/xk-light-catppuccin-latte.yaml +++ b/themes/xk-light-catppuccin-latte.yaml @@ -6,6 +6,7 @@ source: author: "x1ngkong" repo: "https://github.com/x1ngkong/vscode-xk-theme" url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" + formats: null colors: bg: "#EFF1F5" fg: "#3D3F55" diff --git a/themes/xk-light-github.yaml b/themes/xk-light-github.yaml index 1a3ace57..92330b32 100644 --- a/themes/xk-light-github.yaml +++ b/themes/xk-light-github.yaml @@ -6,6 +6,7 @@ source: author: "x1ngkong" repo: "https://github.com/x1ngkong/vscode-xk-theme" url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" + formats: null colors: bg: "#FFFFFF" fg: "#1F2328" diff --git a/themes/xk-light-one.yaml b/themes/xk-light-one.yaml index 7d15747f..8c24c2c1 100644 --- a/themes/xk-light-one.yaml +++ b/themes/xk-light-one.yaml @@ -6,6 +6,7 @@ source: author: "x1ngkong" repo: "https://github.com/x1ngkong/vscode-xk-theme" url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" + formats: null colors: bg: "#FAFAFA" fg: "#282C33" diff --git a/themes/xk-light-ros-pine.yaml b/themes/xk-light-ros-pine.yaml index 83153246..825e7c83 100644 --- a/themes/xk-light-ros-pine.yaml +++ b/themes/xk-light-ros-pine.yaml @@ -6,6 +6,7 @@ source: author: "x1ngkong" repo: "https://github.com/x1ngkong/vscode-xk-theme" url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" + formats: null colors: bg: "#FAF4ED" fg: "#3D3951" diff --git a/themes/xk-light-solarized.yaml b/themes/xk-light-solarized.yaml index 4d4818af..62cce013 100644 --- a/themes/xk-light-solarized.yaml +++ b/themes/xk-light-solarized.yaml @@ -6,6 +6,7 @@ source: author: "x1ngkong" repo: "https://github.com/x1ngkong/vscode-xk-theme" url: "https://marketplace.visualstudio.com/items?itemName=x1ngkong.vscode-xk-theme" + formats: null colors: bg: "#FDF6E3" fg: "#073642" diff --git a/themes/xlumielvscodetheme.yaml b/themes/xlumielvscodetheme.yaml index fc11a58e..b408bbad 100644 --- a/themes/xlumielvscodetheme.yaml +++ b/themes/xlumielvscodetheme.yaml @@ -8,6 +8,7 @@ source: author: "xlumiel" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xlumiel.xLumielVSCodeTheme" + formats: null colors: bg: "#000000" fg: "#3399DD" diff --git a/themes/xochil.yaml b/themes/xochil.yaml index 337175c7..aae088b7 100644 --- a/themes/xochil.yaml +++ b/themes/xochil.yaml @@ -1,11 +1,14 @@ -name: "Xochil" +name: "xochil" source: marketplace_id: "VARKODE.xochil" version: "0.0.2" installs: 73 + rating: 0 + ratings: 0 author: "VARKODE" repo: "https://github.com/varkode/xochil" url: "https://marketplace.visualstudio.com/items?itemName=VARKODE.xochil" + formats: null colors: bg: "#19232D" fg: "#D4D4D4" diff --git a/themes/xotocode-dark.yaml b/themes/xotocode-dark.yaml index c3abfd87..1b30b9b9 100644 --- a/themes/xotocode-dark.yaml +++ b/themes/xotocode-dark.yaml @@ -8,6 +8,7 @@ source: author: "xotosphere" repo: "https://github.com/xotocode/xotocode-theme" url: "https://marketplace.visualstudio.com/items?itemName=xotosphere.xotocode-theme" + formats: null colors: bg: "#1D2031" fg: "#C8D3F5" diff --git a/themes/xotopio.yaml b/themes/xotopio.yaml index 8b33e382..8f4ded96 100644 --- a/themes/xotopio.yaml +++ b/themes/xotopio.yaml @@ -8,6 +8,7 @@ source: author: "xotopio" repo: "https://github.com/xotopio/xotopio.light" url: "https://marketplace.visualstudio.com/items?itemName=xotopio.xotopio-light" + formats: null colors: bg: "#F7F5F4" fg: "#212121" diff --git a/themes/xpyjs-black.yaml b/themes/xpyjs-black.yaml index e57dcab0..553dcfaa 100644 --- a/themes/xpyjs-black.yaml +++ b/themes/xpyjs-black.yaml @@ -8,6 +8,7 @@ source: author: "xpyjs" repo: "https://github.com/xpyjs/vsc-theme" url: "https://marketplace.visualstudio.com/items?itemName=xpyjs.xpyjs-theme" + formats: null colors: bg: "#000000" fg: "#DBD7CA" diff --git a/themes/xresources-bordered.yaml b/themes/xresources-bordered.yaml index 6a1b0981..928f4e8b 100644 --- a/themes/xresources-bordered.yaml +++ b/themes/xresources-bordered.yaml @@ -8,6 +8,7 @@ source: author: "Jack Vandergriff" repo: "https://github.com/JackVandergriff/vscode-xresources-theme" url: "https://marketplace.visualstudio.com/items?itemName=JackVandergriff.xresources-theme" + formats: null colors: bg: "#2F2C2B" fg: "#C9C8C8" diff --git a/themes/xresources-normal-dark.yaml b/themes/xresources-normal-dark.yaml index 67546387..d700ea4d 100644 --- a/themes/xresources-normal-dark.yaml +++ b/themes/xresources-normal-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "NekkiNeks.xresources-theme-plus" version: "2.0.1" installs: 22 + rating: 0 + ratings: 0 author: "NekkiNeks" repo: "https://github.com/NekkiNeks/xresources-theme-plus" url: "https://marketplace.visualstudio.com/items?itemName=NekkiNeks.xresources-theme-plus" + formats: null colors: bg: "#000000" fg: "#EAEAEA" diff --git a/themes/xresources.yaml b/themes/xresources.yaml index 21340382..e79d91cd 100644 --- a/themes/xresources.yaml +++ b/themes/xresources.yaml @@ -8,6 +8,7 @@ source: author: "Jack Vandergriff" repo: "https://github.com/JackVandergriff/vscode-xresources-theme" url: "https://marketplace.visualstudio.com/items?itemName=JackVandergriff.xresources-theme" + formats: null colors: bg: "#272524" fg: "#C9C8C8" diff --git a/themes/xrodev.yaml b/themes/xrodev.yaml index 0eec3215..7b4990a3 100644 --- a/themes/xrodev.yaml +++ b/themes/xrodev.yaml @@ -8,6 +8,7 @@ source: author: "rayan2228" repo: "https://github.com/rayan2228/xrodev-theme" url: "https://marketplace.visualstudio.com/items?itemName=rayan2228.xrodev" + formats: null colors: bg: "#0F0919" fg: "#EAECFF" diff --git a/themes/xs.yaml b/themes/xs.yaml index 151aa193..39053b23 100644 --- a/themes/xs.yaml +++ b/themes/xs.yaml @@ -8,6 +8,7 @@ source: author: "VOID-DaydreaM" repo: "https://github.com/mag1c1an1/onsea-scenery" url: "https://marketplace.visualstudio.com/items?itemName=VOID-DaydreaM.onsea-scenery" + formats: null colors: bg: "#FFFFFF" fg: "#B81515" diff --git a/themes/xstheme.yaml b/themes/xstheme.yaml index 66aa8d34..a1bcf009 100644 --- a/themes/xstheme.yaml +++ b/themes/xstheme.yaml @@ -8,6 +8,7 @@ source: author: "JoseXS" repo: "https://github.com/josexs/vscode-xstheme" url: "https://marketplace.visualstudio.com/items?itemName=JoseXS.xstheme" + formats: null colors: bg: "#1E1E1E" fg: "#CCCCCC" diff --git a/themes/xthemis-cyan.yaml b/themes/xthemis-cyan.yaml deleted file mode 100644 index 37db9e65..00000000 --- a/themes/xthemis-cyan.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "xThemis-Cyan" -source: - marketplace_id: "xthemis19981.Cyan-Theme" - version: "0.0.3" - installs: 456 - rating: 0 - ratings: 0 - author: "xthemis19981" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=xthemis19981.Cyan-Theme" -colors: - bg: "#151515" - fg: "#B00000" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 18.2 - black: 0 - red: 26.9 - green: 53.2 - yellow: 85.8 - blue: 27.6 - magenta: 29.9 - cyan: 47.7 - white: 90.2 - brightBlack: 22.2 - brightRed: 38.7 - brightGreen: 63.7 - brightYellow: 95.8 - brightBlue: 40.2 - brightMagenta: 45.6 - brightCyan: 55.6 - brightWhite: 90.2 diff --git a/themes/xtree-gold.yaml b/themes/xtree-gold.yaml index ed71a222..333185af 100644 --- a/themes/xtree-gold.yaml +++ b/themes/xtree-gold.yaml @@ -1,13 +1,14 @@ -name: "Xtree Gold" +name: "XTree Gold" source: marketplace_id: "xstructx.xtree-gold" version: "0.0.6" - installs: 1680 + installs: 1681 rating: 0 ratings: 0 author: "xstructx" repo: null url: "https://marketplace.visualstudio.com/items?itemName=xstructx.xtree-gold" + formats: null colors: bg: "#0900B0" fg: "#FFFFFF" diff --git a/themes/xviewdark.yaml b/themes/xviewdark.yaml index a7555138..23397916 100644 --- a/themes/xviewdark.yaml +++ b/themes/xviewdark.yaml @@ -8,6 +8,7 @@ source: author: "Thomas Richter" repo: "https://github.com/eightbyte81/x-view-dark-color-theme" url: "https://marketplace.visualstudio.com/items?itemName=thomas-richter.xviewdark" + formats: null colors: bg: "#212126" fg: "#D4D4D4" diff --git a/themes/xxhtml.yaml b/themes/xxhtml.yaml deleted file mode 100644 index eb1c048b..00000000 --- a/themes/xxhtml.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "XxHTML" -source: - marketplace_id: "xxhtml.xxhtml-theme" - version: "0.0.3" - installs: 2 - rating: 0 - ratings: 0 - author: "Isaac" - repo: "https://github.com/XxHTMLStudios/xxhtml-theme" - url: "https://marketplace.visualstudio.com/items?itemName=xxhtml.xxhtml-theme" -colors: - bg: "#282828" - fg: "#C0C0C0" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 65.2 - black: 0 - red: 24.3 - green: 50.6 - yellow: 83.2 - blue: 25 - magenta: 27.3 - cyan: 45.1 - white: 87.6 - brightBlack: 19.6 - brightRed: 36.1 - brightGreen: 61.1 - brightYellow: 93.2 - brightBlue: 37.6 - brightMagenta: 42.9 - brightCyan: 53 - brightWhite: 87.6 diff --git a/themes/xxtereshko-light.yaml b/themes/xxtereshko-light.yaml index d9e297bf..306e8a47 100644 --- a/themes/xxtereshko-light.yaml +++ b/themes/xxtereshko-light.yaml @@ -1,11 +1,14 @@ -name: "xxtereshko-light" +name: "@xxtereshko/light" source: marketplace_id: "xxtereshko.xxtereshko-light" version: "1.0.0" installs: 248 + rating: 0 + ratings: 0 author: "Maxim Tereshko" repo: "https://github.com/xxtereshko/xxtereshko-light" url: "https://marketplace.visualstudio.com/items?itemName=xxtereshko.xxtereshko-light" + formats: null colors: bg: "#FFFFFF" fg: "#24292F" diff --git a/themes/xzadudu179.yaml b/themes/xzadudu179.yaml index 7c2814e4..60f4249c 100644 --- a/themes/xzadudu179.yaml +++ b/themes/xzadudu179.yaml @@ -8,6 +8,7 @@ source: author: "xzadudu179" repo: "https://github.com/xzadudu179/Aerno-Theme" url: "https://marketplace.visualstudio.com/items?itemName=xzadudu179.aerno-theme" + formats: null colors: bg: "#1A1A24" fg: "#CAD2EB" diff --git a/themes/y3m.yaml b/themes/y3m.yaml index 07b55ebb..50c2766c 100644 --- a/themes/y3m.yaml +++ b/themes/y3m.yaml @@ -8,6 +8,7 @@ source: author: "YesCode" repo: "https://github.com/y3mm/y3m-theme-vs" url: "https://marketplace.visualstudio.com/items?itemName=YesCode.y3m" + formats: null colors: bg: "#020202" fg: "#EEFFFF" diff --git a/themes/yaast.yaml b/themes/yaast.yaml index 9151d5ad..e993282d 100644 --- a/themes/yaast.yaml +++ b/themes/yaast.yaml @@ -8,6 +8,7 @@ source: author: "jerhos" repo: "https://github.com/jerhos/YAAST" url: "https://marketplace.visualstudio.com/items?itemName=jerhos.yaast" + formats: null colors: bg: "#242730" fg: "#D7DAE0" diff --git a/themes/yagnesh.yaml b/themes/yagnesh.yaml index d82f1c20..51d418f1 100644 --- a/themes/yagnesh.yaml +++ b/themes/yagnesh.yaml @@ -8,6 +8,7 @@ source: author: "Yagnesh" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Yagnesh.yagnesh" + formats: null colors: bg: "#030B0D" fg: "#FF00FB" diff --git a/themes/yalpha-dark-eris.yaml b/themes/yalpha-dark-eris.yaml index e5bae7ff..8c946c62 100644 --- a/themes/yalpha-dark-eris.yaml +++ b/themes/yalpha-dark-eris.yaml @@ -1,4 +1,4 @@ -name: "yalpha-dark-eris" +name: "yalpha dark eris" source: marketplace_id: "yalpha-dark-eris-color-theme.yalpha-dark-eris" version: "0.0.1" @@ -8,6 +8,7 @@ source: author: "yalpha-dark-eris-color-theme" repo: null url: "https://marketplace.visualstudio.com/items?itemName=yalpha-dark-eris-color-theme.yalpha-dark-eris" + formats: null colors: bg: "#1E1E1E" fg: "#CF6A4C" diff --git a/themes/yami-blue.yaml b/themes/yami-blue.yaml deleted file mode 100644 index 6645923a..00000000 --- a/themes/yami-blue.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Yami Blue" -source: - marketplace_id: "HatimMurtuza.yami-theme" - version: "1.2.0" - installs: 2369 - rating: 5 - ratings: 2 - author: "Hatim Murtuza" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=HatimMurtuza.yami-theme" -colors: - bg: "#020413" - fg: "#D4D4D4" - black: "#2C2C3E" - red: "#FF2C6F" - green: "#77FF5C" - yellow: "#EAD653" - blue: "#4A94FC" - magenta: "#CC66FF" - cyan: "#00CED1" - white: "#DDDDDD" - brightBlack: "#3D3D56" - brightRed: "#FF2C6F" - brightGreen: "#77FF5C" - brightYellow: "#EAD653" - brightBlue: "#4A94FC" - brightMagenta: "#CC66FF" - brightCyan: "#00CED1" - brightWhite: "#DDDDDD" -meta: - mode: "dark" - accent: "red" - hue: 269 - pair: null - contrast: - fg: 80.4 - black: 0 - red: 40 - green: 89.6 - yellow: 80.9 - blue: 45 - magenta: 45.1 - cyan: 65.5 - white: 86 - brightBlack: 8.2 - brightRed: 40 - brightGreen: 89.6 - brightYellow: 80.9 - brightBlue: 45 - brightMagenta: 45.1 - brightCyan: 65.5 - brightWhite: 86 diff --git a/themes/yanbaru-shadow.yaml b/themes/yanbaru-shadow.yaml index 4081ac3f..edfee9c6 100644 --- a/themes/yanbaru-shadow.yaml +++ b/themes/yanbaru-shadow.yaml @@ -8,6 +8,7 @@ source: author: "Keny Yahat" repo: "https://github.com/ky12228121/okinawan" url: "https://marketplace.visualstudio.com/items?itemName=ky12228121.okinawan-themes" + formats: null colors: bg: "#0A1A12" fg: "#DCE1E6" diff --git a/themes/yanus.yaml b/themes/yanus.yaml index b93d67ed..c787b750 100644 --- a/themes/yanus.yaml +++ b/themes/yanus.yaml @@ -8,6 +8,7 @@ source: author: "StabbingStereo" repo: "https://github.com/tobiasstenberg/YANUS" url: "https://marketplace.visualstudio.com/items?itemName=StabbingStereo.YANUS" + formats: null colors: bg: "#1A1D26" fg: "#C5C5C8" diff --git a/themes/yarra-valley.yaml b/themes/yarra-valley.yaml index 85a4e6a9..3039f074 100644 --- a/themes/yarra-valley.yaml +++ b/themes/yarra-valley.yaml @@ -2,12 +2,13 @@ name: "Yarra Valley" source: marketplace_id: "dustypomerleau.yarra-valley" version: "0.29.14" - installs: 10152 + installs: 10153 rating: 5 ratings: 4 author: "Dusty Pomerleau" repo: "https://github.com/dustypomerleau/yarra-valley" url: "https://marketplace.visualstudio.com/items?itemName=dustypomerleau.yarra-valley" + formats: null colors: bg: "#292D3E" fg: "#CAC0A9" diff --git a/themes/yaru-dark.yaml b/themes/yaru-dark.yaml deleted file mode 100644 index fcfb19e4..00000000 --- a/themes/yaru-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Yaru Dark" -source: - marketplace_id: "HasibX2000.slab-theme" - version: "0.0.3" - installs: 3736 - rating: 5 - ratings: 1 - author: "Hasibur Rahman" - repo: "https://github.com/HasibX2000/SLab" - url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" -colors: - bg: "#222222" - fg: "#FDFDFD" - black: "#222222" - red: "#FF794A" - green: "#52D866" - yellow: "#FFDC98" - blue: "#EE80D6" - magenta: "#FF9D88" - cyan: "#60D4FD" - white: "#FDFDFD" - brightBlack: "#928986" - brightRed: "#FF6D4C" - brightGreen: "#69FF94" - brightYellow: "#FFF5BC" - brightBlue: "#FFA2EB" - brightMagenta: "#FFAEA0" - brightCyan: "#98E4FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: null - pair: null - contrast: - fg: 104.1 - black: 0 - red: 49.4 - green: 65.8 - yellow: 85.7 - blue: 52.4 - magenta: 61.1 - cyan: 70.2 - white: 104.1 - brightBlack: 37.6 - brightRed: 46.6 - brightGreen: 87.6 - brightYellow: 98 - brightBlue: 66.8 - brightMagenta: 67.6 - brightCyan: 81.2 - brightWhite: 105.5 diff --git a/themes/yaru.yaml b/themes/yaru.yaml deleted file mode 100644 index 770cfa86..00000000 --- a/themes/yaru.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Yaru" -source: - marketplace_id: "rdnlsmith.linux-themes" - version: "1.3.0" - installs: 41712 - rating: 4.75 - ratings: 4 - author: "rdnlsmith" - repo: "https://github.com/rdnlsmith/vscode-arc-theme" - url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" -colors: - bg: "#FFFFFF" - fg: "#111111" - black: "#000000" - red: "#AA0000" - green: "#00AA00" - yellow: "#AA5500" - blue: "#0000AA" - magenta: "#AA00AA" - cyan: "#00AAAA" - white: "#AAAAAA" - brightBlack: "#555555" - brightRed: "#FF5555" - brightGreen: "#55FF55" - brightYellow: "#FFFF55" - brightBlue: "#5555FF" - brightMagenta: "#FF55FF" - brightCyan: "#55FFFF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 105.4 - black: 106 - red: 84.2 - green: 57.2 - yellow: 75.4 - blue: 96.7 - magenta: 79.3 - cyan: 54.2 - white: 45.8 - brightBlack: 85.9 - brightRed: 57.4 - brightGreen: 15.6 - brightYellow: 0 - brightBlue: 74.3 - brightMagenta: 50.1 - brightCyan: 10.7 - brightWhite: 0 diff --git a/themes/yaruna-aurora.yaml b/themes/yaruna-aurora.yaml index 09b977da..33b14f2a 100644 --- a/themes/yaruna-aurora.yaml +++ b/themes/yaruna-aurora.yaml @@ -8,6 +8,7 @@ source: author: "Daniel Duc" repo: "https://github.com/binhduc1211/daniel-yaruna-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" + formats: null colors: bg: "#1A1D29" fg: "#D4D9E8" diff --git a/themes/yaruna-forest.yaml b/themes/yaruna-forest.yaml index 0ab40d9e..c16dee41 100644 --- a/themes/yaruna-forest.yaml +++ b/themes/yaruna-forest.yaml @@ -8,6 +8,7 @@ source: author: "Daniel Duc" repo: "https://github.com/binhduc1211/daniel-yaruna-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" + formats: null colors: bg: "#1C2A25" fg: "#DCE3DC" diff --git a/themes/yaruna-midnight.yaml b/themes/yaruna-midnight.yaml index 1c65924c..f92ef6b4 100644 --- a/themes/yaruna-midnight.yaml +++ b/themes/yaruna-midnight.yaml @@ -8,6 +8,7 @@ source: author: "Daniel Duc" repo: "https://github.com/binhduc1211/daniel-yaruna-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" + formats: null colors: bg: "#0D1117" fg: "#C9D1D9" diff --git a/themes/yaruna-nova.yaml b/themes/yaruna-nova.yaml index a3f6c838..4693d2d6 100644 --- a/themes/yaruna-nova.yaml +++ b/themes/yaruna-nova.yaml @@ -8,6 +8,7 @@ source: author: "Daniel Duc" repo: "https://github.com/binhduc1211/daniel-yaruna-theme" url: "https://marketplace.visualstudio.com/items?itemName=daniel-duc.daniel-yaruna-theme" + formats: null colors: bg: "#242424" fg: "#F6F5F4" diff --git a/themes/yd-dark.yaml b/themes/yd-dark.yaml index 10305a60..e2ae5e89 100644 --- a/themes/yd-dark.yaml +++ b/themes/yd-dark.yaml @@ -8,6 +8,7 @@ source: author: "YellowDeer" repo: null url: "https://marketplace.visualstudio.com/items?itemName=YellowDeer.yd-theme" + formats: null colors: bg: "#2D3436" fg: "#ECF0F1" diff --git a/themes/yd-light.yaml b/themes/yd-light.yaml index 111112c3..46bf747e 100644 --- a/themes/yd-light.yaml +++ b/themes/yd-light.yaml @@ -8,6 +8,7 @@ source: author: "YellowDeer" repo: null url: "https://marketplace.visualstudio.com/items?itemName=YellowDeer.yd-theme" + formats: null colors: bg: "#FFFCFF" fg: "#282629" diff --git a/themes/ydrgzm-light-theme.yaml b/themes/ydrgzm-light-theme.yaml deleted file mode 100644 index 09aa4ea8..00000000 --- a/themes/ydrgzm-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Ydrgzm LIGHT Theme" -source: - marketplace_id: "ydrgzm.yd-light-theme" - version: "0.0.4" - installs: 368 - rating: 5 - ratings: 1 - author: "ydrgzm" - repo: "https://github.com/ydrgzm/Ydrgzm-LIGHT-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=ydrgzm.yd-light-theme" -colors: - bg: "#FAFAFA" - fg: "#000000" - black: "#868686" - red: "#FF5470" - green: "#33D057" - yellow: "#E1C542" - blue: "#469DF1" - magenta: "#E557F9" - cyan: "#39CDE2" - white: "#D4D4D4" - brightBlack: "#ABABAB" - brightRed: "#FF718A" - brightGreen: "#67FF8A" - brightYellow: "#FFE05B" - brightBlue: "#74BCFF" - brightMagenta: "#EC84FF" - brightCyan: "#74F2FF" - brightWhite: "#FFFFFF" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 103 - black: 61 - red: 54 - green: 36.1 - yellow: 27.6 - blue: 51.4 - magenta: 52.4 - cyan: 33 - white: 19.8 - brightBlack: 42.3 - brightRed: 47.6 - brightGreen: 11.1 - brightYellow: 12.1 - brightBlue: 36.1 - brightMagenta: 41.1 - brightCyan: 12.7 - brightWhite: 0 diff --git a/themes/yelan.yaml b/themes/yelan.yaml index 580e95a6..68aa7e9d 100644 --- a/themes/yelan.yaml +++ b/themes/yelan.yaml @@ -8,6 +8,7 @@ source: author: "Sai Akhil Karra" repo: "https://github.com/SaiAkhil2006/Yelan-Theme" url: "https://marketplace.visualstudio.com/items?itemName=SaiAkhilKarra.yelan-theme-made-by-me" + formats: null colors: bg: "#0A0F1F" fg: "#7DB7FF" diff --git a/themes/yell.yaml b/themes/yell.yaml index 9d4af894..8aa45bc6 100644 --- a/themes/yell.yaml +++ b/themes/yell.yaml @@ -8,6 +8,7 @@ source: author: "Javier Diaz Chamorro" repo: "https://github.com/coderdiaz/yell-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=coderdiaz.yell" + formats: null colors: bg: "#101415" fg: "#D2A873" diff --git a/themes/yellow-beryl.yaml b/themes/yellow-beryl.yaml index b9bcf790..a57bf565 100644 --- a/themes/yellow-beryl.yaml +++ b/themes/yellow-beryl.yaml @@ -8,6 +8,7 @@ source: author: "Meitrox" repo: "https://github.com/Meitrox/yellow-beryl-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=Meitrox9.yellow-beryl-theme" + formats: null colors: bg: "#131428" fg: "#FFFFFF" diff --git a/themes/yellow-green-blue-theme.yaml b/themes/yellow-green-blue-theme.yaml index 82b6b22d..6de54159 100644 --- a/themes/yellow-green-blue-theme.yaml +++ b/themes/yellow-green-blue-theme.yaml @@ -1,4 +1,4 @@ -name: "Yellow-Green-Blue-Theme" +name: "yellow-green-blue-theme" source: marketplace_id: "miha19772001.yellow-green-blue-theme" version: "0.0.2" @@ -8,6 +8,7 @@ source: author: "miha19772001" repo: "https://github.com/miha19772001/yellow-green-blue-theme" url: "https://marketplace.visualstudio.com/items?itemName=miha19772001.yellow-green-blue-theme" + formats: null colors: bg: "#26231E" fg: "#CBCFC3" diff --git a/themes/yellow-ish.yaml b/themes/yellow-ish.yaml index d6bdb8df..8d83ee07 100644 --- a/themes/yellow-ish.yaml +++ b/themes/yellow-ish.yaml @@ -8,6 +8,7 @@ source: author: "VincentWillats" repo: null url: "https://marketplace.visualstudio.com/items?itemName=VincentWillats.vwyellow" + formats: null colors: bg: "#171600" fg: "#D4D4D4" diff --git a/themes/yellow-purple-theme.yaml b/themes/yellow-purple-theme.yaml deleted file mode 100644 index 5f516976..00000000 --- a/themes/yellow-purple-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Yellow purple theme" -source: - marketplace_id: "davisamasoa.davisamasoa-theme" - version: "1.0.4" - installs: 951 - rating: 0 - ratings: 0 - author: "Davi Samuel" - repo: "https://github.com/Davisamasoa/vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=davisamasoa.davisamasoa-theme" -colors: - bg: "#2A2530" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 306 - pair: null - contrast: - fg: 104.6 - black: 0 - red: 24.4 - green: 50.7 - yellow: 83.3 - blue: 25.2 - magenta: 27.5 - cyan: 45.3 - white: 87.7 - brightBlack: 19.8 - brightRed: 36.3 - brightGreen: 61.3 - brightYellow: 93.4 - brightBlue: 37.7 - brightMagenta: 43.1 - brightCyan: 53.1 - brightWhite: 87.7 diff --git a/themes/yellowed.yaml b/themes/yellowed.yaml index 89fb15cb..75cfba9a 100644 --- a/themes/yellowed.yaml +++ b/themes/yellowed.yaml @@ -8,6 +8,7 @@ source: author: "Gaël Lopes Da Silva" repo: "https://github.com/Gael-Lopes-Da-Silva/YellowedVSCode" url: "https://marketplace.visualstudio.com/items?itemName=gael-lopes-da-silva.yellowed" + formats: null colors: bg: "#242424" fg: "#FFFFFF" diff --git a/themes/yerba.yaml b/themes/yerba.yaml index a50c63da..6e4cc9c6 100644 --- a/themes/yerba.yaml +++ b/themes/yerba.yaml @@ -8,6 +8,8 @@ source: author: "sebastian-j-ibanez" repo: "https://github.com/sebastian-j-ibanez/yerba-theme" url: "https://marketplace.visualstudio.com/items?itemName=sebastian-j-ibanez.yerba-theme" + formats: + ghostty: "https://raw.githubusercontent.com/sebastian-j-ibanez/yerba-theme/main/ghostty/README.md" colors: bg: "#181818" fg: "#BCBCBC" diff --git a/themes/yet-another-solarized-theme-dark.yaml b/themes/yet-another-solarized-theme-dark.yaml deleted file mode 100644 index 10a94fb5..00000000 --- a/themes/yet-another-solarized-theme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Yet Another Solarized Theme (Dark)" -source: - marketplace_id: "JulianSchelb.yet-another-solarized-theme" - version: "1.0.5" - installs: 2705 - rating: 5 - ratings: 2 - author: "Julian Schelb" - repo: "https://github.com/julianschelb/vscode-theme-solarized" - url: "https://marketplace.visualstudio.com/items?itemName=JulianSchelb.yet-another-solarized-theme" -colors: - bg: "#2E343F" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 263 - pair: null - contrast: - fg: 74.4 - black: 0 - red: 21.7 - green: 48 - yellow: 80.6 - blue: 22.4 - magenta: 24.7 - cyan: 42.5 - white: 85 - brightBlack: 17 - brightRed: 33.5 - brightGreen: 58.5 - brightYellow: 90.6 - brightBlue: 35 - brightMagenta: 40.3 - brightCyan: 50.4 - brightWhite: 85 diff --git a/themes/yet-another-solarized-theme-light.yaml b/themes/yet-another-solarized-theme-light.yaml deleted file mode 100644 index 7a3fc279..00000000 --- a/themes/yet-another-solarized-theme-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Yet Another Solarized Theme (Light)" -source: - marketplace_id: "beigeowl.wrapped-owl" - version: "1.1.0" - installs: 885 - rating: 0 - ratings: 0 - author: "beigeowl" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=beigeowl.wrapped-owl" -colors: - bg: "#F9F6EF" - fg: "#193F49" - black: "#000000" - red: "#CD3131" - green: "#00BC00" - yellow: "#949800" - blue: "#0451A5" - magenta: "#BC05BC" - cyan: "#0598BC" - white: "#555555" - brightBlack: "#666666" - brightRed: "#CD3131" - brightGreen: "#14CE14" - brightYellow: "#B5BA00" - brightBlue: "#0451A5" - brightMagenta: "#BC05BC" - brightCyan: "#0598BC" - brightWhite: "#A5A5A5" -meta: - mode: "light" - accent: "pink" - hue: null - pair: null - contrast: - fg: 90.8 - black: 100.8 - red: 68.7 - green: 44 - yellow: 52.6 - blue: 80.8 - magenta: 69.3 - cyan: 55.3 - white: 80.7 - brightBlack: 73.5 - brightRed: 68.7 - brightGreen: 35.6 - brightYellow: 35.7 - brightBlue: 80.8 - brightMagenta: 69.3 - brightCyan: 55.3 - brightWhite: 43.2 diff --git a/themes/yharnizedtheme.yaml b/themes/yharnizedtheme.yaml index 35f49acd..551e86d6 100644 --- a/themes/yharnizedtheme.yaml +++ b/themes/yharnizedtheme.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "YaruGames.yharnizedtheme" version: "0.0.1" installs: 38 + rating: 0 + ratings: 0 author: "Yaru Games" repo: null url: "https://marketplace.visualstudio.com/items?itemName=YaruGames.yharnizedtheme" + formats: null colors: bg: "#000000" fg: "#E1E1E0" diff --git a/themes/yinloonga-c.yaml b/themes/yinloonga-c.yaml index d97c6f56..3574a16c 100644 --- a/themes/yinloonga-c.yaml +++ b/themes/yinloonga-c.yaml @@ -8,6 +8,7 @@ source: author: "yinloonga" repo: "https://github.com/torvalds/linux" url: "https://marketplace.visualstudio.com/items?itemName=yinloonga.solarized-dark-cpp" + formats: null colors: bg: "#23272E" fg: "#B8C0CC" diff --git a/themes/yitzchok-contrast.yaml b/themes/yitzchok-contrast.yaml deleted file mode 100644 index 6ed642fb..00000000 --- a/themes/yitzchok-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "yitzchok-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#101316" - fg: "#AFB7BF" - black: "#1B2025" - red: "#BA0E2E" - green: "#E7BE45" - yellow: "#7A8289" - blue: "#E6EAEF" - magenta: "#E7BE45" - cyan: "#7A8289" - white: "#BDC4CA" - brightBlack: "#3B4651" - brightRed: "#F03E5F" - brightGreen: "#F3DE9F" - brightYellow: "#B0B5B9" - brightBlue: "#FFFFFF" - brightMagenta: "#F3DE9F" - brightCyan: "#B0B5B9" - brightWhite: "#E8EAEC" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 62.2 - black: 0 - red: 20.9 - green: 69.6 - yellow: 34.6 - blue: 93.3 - magenta: 69.6 - cyan: 34.6 - white: 69.7 - brightBlack: 9.5 - brightRed: 37.2 - brightGreen: 86.7 - brightYellow: 61.3 - brightBlue: 107.3 - brightMagenta: 86.7 - brightCyan: 61.3 - brightWhite: 93.4 diff --git a/themes/yitzchok-light.yaml b/themes/yitzchok-light.yaml deleted file mode 100644 index 3bb180c0..00000000 --- a/themes/yitzchok-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "yitzchok-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#6A7684" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#E7BE45" - yellow: "#7A8289" - blue: "#6A7684" - magenta: "#E7BE45" - cyan: "#7A8289" - white: "#768391" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#F3DE9F" - brightYellow: "#B0B5B9" - brightBlue: "#A1A9B3" - brightMagenta: "#F3DE9F" - brightCyan: "#B0B5B9" - brightWhite: "#A1A9B3" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 72.2 - black: 0 - red: 80.3 - green: 32.4 - yellow: 66.5 - blue: 72.2 - magenta: 32.4 - cyan: 66.5 - white: 66.2 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 16.4 - brightYellow: 40.4 - brightBlue: 46.8 - brightMagenta: 16.4 - brightCyan: 40.4 - brightWhite: 46.8 diff --git a/themes/yitzchok.yaml b/themes/yitzchok.yaml deleted file mode 100644 index 03752d6e..00000000 --- a/themes/yitzchok.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "yitzchok" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#252C33" - fg: "#AFB7BF" - black: "#303942" - red: "#BA0E2E" - green: "#E7BE45" - yellow: "#7A8289" - blue: "#E6EAEF" - magenta: "#E7BE45" - cyan: "#7A8289" - white: "#BDC4CA" - brightBlack: "#505F6E" - brightRed: "#F03E5F" - brightGreen: "#F3DE9F" - brightYellow: "#B0B5B9" - brightBlue: "#FFFFFF" - brightMagenta: "#F3DE9F" - brightCyan: "#B0B5B9" - brightWhite: "#E8EAEC" -meta: - mode: "dark" - accent: "orange" - hue: 248 - pair: null - contrast: - fg: 58.8 - black: 0 - red: 17.4 - green: 66.2 - yellow: 31.1 - blue: 89.8 - magenta: 66.2 - cyan: 31.1 - white: 66.3 - brightBlack: 15.4 - brightRed: 33.7 - brightGreen: 83.2 - brightYellow: 57.8 - brightBlue: 103.8 - brightMagenta: 83.2 - brightCyan: 57.8 - brightWhite: 89.9 diff --git a/themes/ylw-dark-theme.yaml b/themes/ylw-dark-theme.yaml index 78d675ef..6b604095 100644 --- a/themes/ylw-dark-theme.yaml +++ b/themes/ylw-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "ylw" repo: "https://github.com/ylw1997/ylw-theme" url: "https://marketplace.visualstudio.com/items?itemName=ylw.ylw-theme" + formats: null colors: bg: "#1A1C22" fg: "#D4D4D4" diff --git a/themes/yoda-mystical-force.yaml b/themes/yoda-mystical-force.yaml deleted file mode 100644 index 7501c61a..00000000 --- a/themes/yoda-mystical-force.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Yoda - Mystical Force" -source: - marketplace_id: "Dutchorange.space-wars" - version: "1.1.7" - installs: 1711 - rating: 5 - ratings: 3 - author: "Dutchorange" - repo: "https://github.com/entropy-glitch/space-wars" - url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" -colors: - bg: "#1A2028" - fg: "#E9EAE6" - black: "#2C353F" - red: "#FF7F7F" - green: "#7AFFB2" - yellow: "#FFD787" - blue: "#66D9EF" - magenta: "#E7A3FF" - cyan: "#4B9783" - white: "#E9EAE6" - brightBlack: "#6B8299" - brightRed: "#FF9B9B" - brightGreen: "#A2FFD0" - brightYellow: "#FFE4A8" - brightBlue: "#A3E4F2" - brightMagenta: "#F2B8FF" - brightCyan: "#B0FFF5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "teal" - hue: 256 - pair: null - contrast: - fg: 91.8 - black: 0 - red: 52.4 - green: 89.7 - yellow: 83.5 - blue: 72.4 - magenta: 64.5 - cyan: 37.6 - white: 91.8 - brightBlack: 32.5 - brightRed: 61.4 - brightGreen: 93.5 - brightYellow: 90 - brightBlue: 81.8 - brightMagenta: 73.7 - brightCyan: 96.2 - brightWhite: 105.8 diff --git a/themes/yoda.yaml b/themes/yoda.yaml index a67e1fa9..3c2b40b1 100644 --- a/themes/yoda.yaml +++ b/themes/yoda.yaml @@ -8,6 +8,7 @@ source: author: "Sire" repo: "https://github.com/Sire/Yoda" url: "https://marketplace.visualstudio.com/items?itemName=yoda.yoda-theme" + formats: null colors: bg: "#222222" fg: "#A8A8A8" diff --git a/themes/yohualli-eclipse.yaml b/themes/yohualli-eclipse.yaml index 23ad5efd..941913ec 100644 --- a/themes/yohualli-eclipse.yaml +++ b/themes/yohualli-eclipse.yaml @@ -8,6 +8,7 @@ source: author: "Alejandro Hernandez" repo: "https://github.com/josuebautista/YohualliTheme" url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.yohualli-theme" + formats: null colors: bg: "#020006" fg: "#FFB5E0" diff --git a/themes/yohualli-lunaris.yaml b/themes/yohualli-lunaris.yaml index 56c16cdf..fee49a4a 100644 --- a/themes/yohualli-lunaris.yaml +++ b/themes/yohualli-lunaris.yaml @@ -8,6 +8,7 @@ source: author: "Alejandro Hernandez" repo: "https://github.com/josuebautista/YohualliTheme" url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.yohualli-theme" + formats: null colors: bg: "#020006" fg: "#BEA8EE" diff --git a/themes/yohualli-nebulune.yaml b/themes/yohualli-nebulune.yaml index e2c33cf5..f5cb9c3a 100644 --- a/themes/yohualli-nebulune.yaml +++ b/themes/yohualli-nebulune.yaml @@ -8,6 +8,7 @@ source: author: "Alejandro Hernandez" repo: "https://github.com/josuebautista/YohualliTheme" url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.yohualli-theme" + formats: null colors: bg: "#020006" fg: "#CCB5FF" diff --git a/themes/yohualli-penumbra.yaml b/themes/yohualli-penumbra.yaml index 2898cdb6..a23c2e5f 100644 --- a/themes/yohualli-penumbra.yaml +++ b/themes/yohualli-penumbra.yaml @@ -8,6 +8,7 @@ source: author: "Alejandro Hernandez" repo: "https://github.com/josuebautista/YohualliTheme" url: "https://marketplace.visualstudio.com/items?itemName=AlejandroHernandez.yohualli-theme" + formats: null colors: bg: "#020006" fg: "#B0A6CE" diff --git a/themes/yonc.yaml b/themes/yonc.yaml deleted file mode 100644 index 08a52c5d..00000000 --- a/themes/yonc.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Yoncé" -source: - marketplace_id: "Gixo.yue-theme" - version: "1.0.2" - installs: 686 - rating: 0 - ratings: 0 - author: "Gixo" - repo: "https://github.com/thegixo/yue-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=Gixo.yue-theme" -colors: - bg: "#1C1C1C" - fg: "#D4D4D4" - black: "#1C1C1C" - red: "#FC4384" - green: "#98E342" - yellow: "#E6DB74" - blue: "#00A7AA" - magenta: "#FFB1F2" - cyan: "#37E5E7" - white: "#D4D4D4" - brightBlack: "#555555" - brightRed: "#FC4384" - brightGreen: "#98E342" - brightYellow: "#E6DB74" - brightBlue: "#00A7AA" - brightMagenta: "#FFB1F2" - brightCyan: "#37E5E7" - brightWhite: "#F1F1EF" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 78.9 - black: 0 - red: 40.6 - green: 75.8 - yellow: 81.5 - blue: 44.8 - magenta: 73.1 - cyan: 76.6 - white: 78.9 - brightBlack: 14.5 - brightRed: 40.6 - brightGreen: 75.8 - brightYellow: 81.5 - brightBlue: 44.8 - brightMagenta: 73.1 - brightCyan: 76.6 - brightWhite: 97 diff --git a/themes/yondog-dark.yaml b/themes/yondog-dark.yaml index 504dec10..0234ae59 100644 --- a/themes/yondog-dark.yaml +++ b/themes/yondog-dark.yaml @@ -8,6 +8,7 @@ source: author: "Kirik " repo: null url: "https://marketplace.visualstudio.com/items?itemName=AbyTubuon.yondog-dark" + formats: null colors: bg: "#181C1F" fg: "#EEFFFF" diff --git a/themes/yotei.yaml b/themes/yotei.yaml index 42f807ab..ec8f31de 100644 --- a/themes/yotei.yaml +++ b/themes/yotei.yaml @@ -8,6 +8,7 @@ source: author: "Zenky" repo: "https://github.com/bzenky/yotei-theme" url: "https://marketplace.visualstudio.com/items?itemName=Zenky.yotei" + formats: null colors: bg: "#211925" fg: "#FEF7FF" diff --git a/themes/yoth-theme-dark.yaml b/themes/yoth-theme-dark.yaml index ea0e8a7d..2ea61602 100644 --- a/themes/yoth-theme-dark.yaml +++ b/themes/yoth-theme-dark.yaml @@ -8,6 +8,7 @@ source: author: "yoththemedark" repo: "https://github.com/theoyoth/yoth-theme-dark" url: "https://marketplace.visualstudio.com/items?itemName=yoththemedark.yoth-theme-dark" + formats: null colors: bg: "#0F0F11" fg: "#D3D1D1" diff --git a/themes/yoyo-theme-green.yaml b/themes/yoyo-theme-green.yaml index 966623ed..3a9ce8f3 100644 --- a/themes/yoyo-theme-green.yaml +++ b/themes/yoyo-theme-green.yaml @@ -8,6 +8,7 @@ source: author: "Amresh Maurya" repo: "https://github.com/Amresh9/yoyo" url: "https://marketplace.visualstudio.com/items?itemName=AmreshMaurya.yoyo" + formats: null colors: bg: "#6DB66F" fg: "#09DE48" diff --git a/themes/yoyo-theme.yaml b/themes/yoyo-theme.yaml index 78b1a811..93e56bfb 100644 --- a/themes/yoyo-theme.yaml +++ b/themes/yoyo-theme.yaml @@ -8,6 +8,7 @@ source: author: "Amresh Maurya" repo: "https://github.com/Amresh9/yoyo" url: "https://marketplace.visualstudio.com/items?itemName=AmreshMaurya.yoyo" + formats: null colors: bg: "#172026" fg: "#09DE48" diff --git a/themes/ystheme.yaml b/themes/ystheme.yaml index c7f6e030..5340f19b 100644 --- a/themes/ystheme.yaml +++ b/themes/ystheme.yaml @@ -8,6 +8,7 @@ source: author: "Yirsis Serrano Theme" repo: "https://github.com/YirsisHertz/yirsis-serrano-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=ystheme.ystheme" + formats: null colors: bg: "#15141B" fg: "#EDECEE" diff --git a/themes/ytheme-dark.yaml b/themes/ytheme-dark.yaml deleted file mode 100644 index 9c33d413..00000000 --- a/themes/ytheme-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "YTheme Dark" -source: - marketplace_id: "czfadmin.ytheme" - version: "1.3.21" - installs: 1128 - rating: 0 - ratings: 0 - author: "czfadmin" - repo: "https://github.com/czfadmin/Atom-One-Dark-Pro" - url: "https://marketplace.visualstudio.com/items?itemName=czfadmin.ytheme" -colors: - bg: "#2A2A31" - fg: "#CECECE" - black: "#2D3139" - red: "#E06C75" - green: "#98C379" - yellow: "#D49D35" - blue: "#839BDD" - magenta: "#C678DD" - cyan: "#56B6C2" - white: "#ABB2BF" - brightBlack: "#256B7A" - brightRed: "#E06C75" - brightGreen: "#98C379" - brightYellow: "#C07639" - brightBlue: "#61AFEF" - brightMagenta: "#C678DD" - brightCyan: "#56B6C2" - brightWhite: "#BDBDBD" -meta: - mode: "dark" - accent: "pink" - hue: 286 - pair: null - contrast: - fg: 72.9 - black: 0 - red: 39.1 - green: 59.3 - yellow: 50.6 - blue: 45.2 - magenta: 42.2 - cyan: 51.6 - white: 56.5 - brightBlack: 17.8 - brightRed: 39.1 - brightGreen: 59.3 - brightYellow: 34.8 - brightBlue: 51.7 - brightMagenta: 42.2 - brightCyan: 51.6 - brightWhite: 62.9 diff --git a/themes/yttrium-dark.yaml b/themes/yttrium-dark.yaml index 5b23a1d7..f39ea105 100644 --- a/themes/yttrium-dark.yaml +++ b/themes/yttrium-dark.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dkcaliskan.yttrium" version: "0.2.0" installs: 107 + rating: 0 + ratings: 0 author: "dkcaliskan" repo: "https://github.com/dkcaliskan/yttrium" url: "https://marketplace.visualstudio.com/items?itemName=dkcaliskan.yttrium" + formats: null colors: bg: "#121212" fg: "#ABB2BF" diff --git a/themes/yttrium-light.yaml b/themes/yttrium-light.yaml index 4b374d9a..f33e8008 100644 --- a/themes/yttrium-light.yaml +++ b/themes/yttrium-light.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "dkcaliskan.yttrium" version: "0.2.0" installs: 107 + rating: 0 + ratings: 0 author: "dkcaliskan" repo: "https://github.com/dkcaliskan/yttrium" url: "https://marketplace.visualstudio.com/items?itemName=dkcaliskan.yttrium" + formats: null colors: bg: "#FFFFFF" fg: "#000000" diff --git a/themes/yue-theme.yaml b/themes/yue-theme.yaml index 81ea94b0..b7ae68c4 100644 --- a/themes/yue-theme.yaml +++ b/themes/yue-theme.yaml @@ -8,6 +8,7 @@ source: author: "yuesuirenqianli" repo: "https://github.com/yuesuirenqianli/yue-theme" url: "https://marketplace.visualstudio.com/items?itemName=yuesuirenqianli.yue-code-theme" + formats: null colors: bg: "#202020" fg: "#CDB892" diff --git a/themes/yukinord.yaml b/themes/yukinord.yaml index 68f56427..e92f6c6f 100644 --- a/themes/yukinord.yaml +++ b/themes/yukinord.yaml @@ -2,12 +2,13 @@ name: "Yukinord" source: marketplace_id: "yukina.yukinord" version: "0.0.65" - installs: 1367 + installs: 1371 rating: 0 ratings: 0 author: "Yukina" repo: "https://github.com/yukina3230/yukinord" url: "https://marketplace.visualstudio.com/items?itemName=yukina.yukinord" + formats: null colors: bg: "#1D2129" fg: "#D8DEE9" diff --git a/themes/yule-contrast.yaml b/themes/yule-contrast.yaml deleted file mode 100644 index 9ab250aa..00000000 --- a/themes/yule-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "yule-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#0C0C0B" - fg: "#EDE0CE" - black: "#191917" - red: "#BA0E2E" - green: "#39B81F" - yellow: "#D63131" - blue: "#EBB626" - magenta: "#39B81F" - cyan: "#D63131" - white: "#F4ECE1" - brightBlack: "#41413C" - brightRed: "#F03E5F" - brightGreen: "#71E35A" - brightYellow: "#E78686" - brightBlue: "#F4D583" - brightMagenta: "#71E35A" - brightCyan: "#E78686" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 88.7 - black: 0 - red: 21.3 - green: 51.3 - yellow: 29.5 - blue: 67.3 - magenta: 51.3 - cyan: 29.5 - white: 95.9 - brightBlack: 8.5 - brightRed: 37.6 - brightGreen: 74.7 - brightYellow: 51.6 - brightBlue: 82.6 - brightMagenta: 74.7 - brightCyan: 51.6 - brightWhite: 107.7 diff --git a/themes/yule-light.yaml b/themes/yule-light.yaml deleted file mode 100644 index cfe3385a..00000000 --- a/themes/yule-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "yule-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#39B81F" - yellow: "#D63131" - blue: "#EBB626" - magenta: "#39B81F" - cyan: "#D63131" - white: "#515151" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#71E35A" - brightYellow: "#E78686" - brightBlue: "#F4D583" - brightMagenta: "#71E35A" - brightCyan: "#E78686" - brightWhite: "#777777" -meta: - mode: "light" - accent: "green" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 80.3 - green: 50.4 - yellow: 72 - blue: 35 - magenta: 50.4 - cyan: 72 - white: 87.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 28 - brightYellow: 50.1 - brightBlue: 20.5 - brightMagenta: 28 - brightCyan: 50.1 - brightWhite: 71.1 diff --git a/themes/yule.yaml b/themes/yule.yaml deleted file mode 100644 index 8d62f5a2..00000000 --- a/themes/yule.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "yule" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#2B2A27" - fg: "#EDE0CE" - black: "#383733" - red: "#BA0E2E" - green: "#39B81F" - yellow: "#D63131" - blue: "#EBB626" - magenta: "#39B81F" - cyan: "#D63131" - white: "#F4ECE1" - brightBlack: "#605E57" - brightRed: "#F03E5F" - brightGreen: "#71E35A" - brightYellow: "#E78686" - brightBlue: "#F4D583" - brightMagenta: "#71E35A" - brightCyan: "#E78686" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 85.1 - black: 0 - red: 17.7 - green: 47.7 - yellow: 25.9 - blue: 63.7 - magenta: 47.7 - cyan: 25.9 - white: 92.3 - brightBlack: 15.8 - brightRed: 34 - brightGreen: 71.1 - brightYellow: 48 - brightBlue: 79 - brightMagenta: 71.1 - brightCyan: 48 - brightWhite: 104 diff --git a/themes/yulon.yaml b/themes/yulon.yaml index 6ab42a79..628f1302 100644 --- a/themes/yulon.yaml +++ b/themes/yulon.yaml @@ -8,6 +8,8 @@ source: author: "Volskaya" repo: "https://github.com/volskaya/irrelevant" url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" + formats: + nvim: "https://raw.githubusercontent.com/volskaya/irrelevant/main/extensions/neovim/lua/irrelevant/colors.lua" colors: bg: "#1C1C1C" fg: "#FFFFFF" diff --git a/themes/yum.yaml b/themes/yum.yaml index 9bf5d7c0..2f3a8803 100644 --- a/themes/yum.yaml +++ b/themes/yum.yaml @@ -1,13 +1,15 @@ -name: "yum" +name: "Yum" source: marketplace_id: "RioEdwards.yum" version: "1.0.4" - installs: 233 + installs: 234 rating: 5 ratings: 1 author: "Rio Edwards" repo: "https://github.com/rioredwards/yum" url: "https://marketplace.visualstudio.com/items?itemName=RioEdwards.yum" + formats: + zed: "https://raw.githubusercontent.com/rioredwards/yum/main/exampleThemes/solarized-dark-color-theme.json" colors: bg: "#272727" fg: "#CCCCCC" diff --git a/themes/yurei-dark-theme.yaml b/themes/yurei-dark-theme.yaml index 690198e7..32c7d0e7 100644 --- a/themes/yurei-dark-theme.yaml +++ b/themes/yurei-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "vanreagan" repo: "https://github.com/vanreagan/yurei-dark-theme-vscode" url: "https://marketplace.visualstudio.com/items?itemName=vanreagan.yurei-dark-theme" + formats: null colors: bg: "#151515" fg: "#B4B4B4" diff --git a/themes/yuru-black.yaml b/themes/yuru-black.yaml index 6a769feb..61dd4b3f 100644 --- a/themes/yuru-black.yaml +++ b/themes/yuru-black.yaml @@ -8,6 +8,7 @@ source: author: "yuru" repo: "https://github.com/yuruko/yuru-black" url: "https://marketplace.visualstudio.com/items?itemName=yuru.yuru-black" + formats: null colors: bg: "#000000" fg: "#D9C8C8" diff --git a/themes/yuru.yaml b/themes/yuru.yaml index b412919c..ecaff2b7 100644 --- a/themes/yuru.yaml +++ b/themes/yuru.yaml @@ -8,6 +8,8 @@ source: author: "arzg" repo: "https://github.com/arzg/noel" url: "https://marketplace.visualstudio.com/items?itemName=arzg.noel" + formats: + iterm2: "https://raw.githubusercontent.com/arzg/noel/master/noel.itermcolors" colors: bg: "#292525" fg: "#E1DBD1" diff --git a/themes/yuuyake-dark.yaml b/themes/yuuyake-dark.yaml deleted file mode 100644 index 713f4285..00000000 --- a/themes/yuuyake-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Yuuyake - dark" -source: - marketplace_id: "ciqven.yuuyake-code" - version: "0.2.1" - installs: 31 - rating: 0 - ratings: 0 - author: "ciqven" - repo: "https://github.com/ciqven/yuuyake-code" - url: "https://marketplace.visualstudio.com/items?itemName=ciqven.yuuyake-code" -colors: - bg: "#2A1B1B" - fg: "#C99358" - black: "#000000" - red: "#A84D3F" - green: "#246C39" - yellow: "#93932D" - blue: "#615A99" - magenta: "#8A2F58" - cyan: "#336A79" - white: "#B4B4B4" - brightBlack: "#666666" - brightRed: "#EF7D6C" - brightGreen: "#50B16D" - brightYellow: "#E1E15E" - brightBlue: "#948ADD" - brightMagenta: "#C95B8D" - brightCyan: "#5DA6B9" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "green" - hue: 19 - pair: null - contrast: - fg: 47.7 - black: 0 - red: 22.7 - green: 18.4 - yellow: 40 - blue: 19.4 - magenta: 13.2 - cyan: 19.8 - white: 59.8 - brightBlack: 21.1 - brightRed: 48.2 - brightGreen: 48.2 - brightYellow: 82.8 - brightBlue: 42.8 - brightMagenta: 33.6 - brightCyan: 46.8 - brightWhite: 89 diff --git a/themes/yuyuko-vscode-ocean.yaml b/themes/yuyuko-vscode-ocean.yaml deleted file mode 100644 index f57eefec..00000000 --- a/themes/yuyuko-vscode-ocean.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "yuyuko.vscode ocean" -source: - marketplace_id: "hylwxqwq.yuyuko-vim-vsc" - version: "0.2.1" - installs: 6339 - rating: 5 - ratings: 4 - author: "hylwxqwq" - repo: "https://github.com/hylwxqwq/yuyuko-vim-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=hylwxqwq.yuyuko-vim-vsc" -colors: - bg: "#0F111A" - fg: "#EEFFFF" - black: "#000000" - red: "#FF5370" - green: "#C3E88D" - yellow: "#FFCB6B" - blue: "#82AAFF" - magenta: "#C792EA" - cyan: "#89DDFF" - white: "#FFFFFF" - brightBlack: "#4A4A4A" - brightRed: "#FF5370" - brightGreen: "#C3E88D" - brightYellow: "#FFCB6B" - brightBlue: "#82AAFF" - brightMagenta: "#C792EA" - brightCyan: "#89DDFF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 275 - pair: null - contrast: - fg: 105 - black: 0 - red: 44.1 - green: 84.7 - yellow: 79.4 - blue: 56.4 - magenta: 54.2 - cyan: 78.7 - white: 107.3 - brightBlack: 11.4 - brightRed: 44.1 - brightGreen: 84.7 - brightYellow: 79.4 - brightBlue: 56.4 - brightMagenta: 54.2 - brightCyan: 78.7 - brightWhite: 107.3 diff --git a/themes/yuyuko-vscode.yaml b/themes/yuyuko-vscode.yaml deleted file mode 100644 index 60af4823..00000000 --- a/themes/yuyuko-vscode.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "yuyuko.vscode" -source: - marketplace_id: "hylwxqwq.yuyuko-vim-vsc" - version: "0.2.1" - installs: 6339 - rating: 5 - ratings: 4 - author: "hylwxqwq" - repo: "https://github.com/hylwxqwq/yuyuko-vim-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=hylwxqwq.yuyuko-vim-vsc" -colors: - bg: "#1C1C1C" - fg: "#FFFFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 106.3 - black: 0 - red: 26.1 - green: 52.4 - yellow: 85 - blue: 26.9 - magenta: 29.2 - cyan: 47 - white: 89.4 - brightBlack: 21.5 - brightRed: 38 - brightGreen: 63 - brightYellow: 95.1 - brightBlue: 39.4 - brightMagenta: 44.8 - brightCyan: 54.8 - brightWhite: 89.4 diff --git a/themes/z-darktheme.yaml b/themes/z-darktheme.yaml index 786e4302..727df326 100644 --- a/themes/z-darktheme.yaml +++ b/themes/z-darktheme.yaml @@ -8,6 +8,7 @@ source: author: "Akakø" repo: null url: "https://marketplace.visualstudio.com/items?itemName=Akako.z-darktheme" + formats: null colors: bg: "#311E40" fg: "#FFFEE1" diff --git a/themes/z3r0.yaml b/themes/z3r0.yaml index 5b05ccad..9f65c6fe 100644 --- a/themes/z3r0.yaml +++ b/themes/z3r0.yaml @@ -1,4 +1,4 @@ -name: "z3r0" +name: "Z3R0" source: marketplace_id: "z3r0.z3r0" version: "1.2.0" @@ -8,6 +8,7 @@ source: author: "Z3R0" repo: "https://github.com/thailoeduardo/z3r0" url: "https://marketplace.visualstudio.com/items?itemName=z3r0.z3r0" + formats: null colors: bg: "#121212" fg: "#FFFFFF" diff --git a/themes/zach-s-blue-theme.yaml b/themes/zach-s-blue-theme.yaml index 63a986ed..ab3b75fd 100644 --- a/themes/zach-s-blue-theme.yaml +++ b/themes/zach-s-blue-theme.yaml @@ -8,6 +8,7 @@ source: author: "Zach Fauser" repo: "https://github.com/Zfauser/Zachs-BLUE-vs-code" url: "https://marketplace.visualstudio.com/items?itemName=ZachFauser.ZachsBlueTheme" + formats: null colors: bg: "#0E2434" fg: "#D4D4D4" diff --git a/themes/zacharywilliamson.yaml b/themes/zacharywilliamson.yaml index a0034624..70c769ad 100644 --- a/themes/zacharywilliamson.yaml +++ b/themes/zacharywilliamson.yaml @@ -8,6 +8,7 @@ source: author: "Zachary Williamson" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ZacharyWilliamson.ZacharyWilliamson" + formats: null colors: bg: "#2E3440" fg: "#D1D1D1" diff --git a/themes/zacks-contrast.yaml b/themes/zacks-contrast.yaml deleted file mode 100644 index cad985a1..00000000 --- a/themes/zacks-contrast.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "zacks-contrast" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#000000" - fg: "#F0F0F0" - black: "#0D0D0D" - red: "#BA0E2E" - green: "#9C7DDB" - yellow: "#FF6A38" - blue: "#BCD42A" - magenta: "#FF6A38" - cyan: "#9C7DDB" - white: "#FDFDFD" - brightBlack: "#333333" - brightRed: "#F03E5F" - brightGreen: "#D9CDF1" - brightYellow: "#FFB69E" - brightBlue: "#D7E67E" - brightMagenta: "#FFB69E" - brightCyan: "#D9CDF1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 98.1 - black: 0 - red: 21.5 - green: 41.5 - yellow: 48.1 - blue: 73.7 - magenta: 48.1 - cyan: 41.5 - white: 106.6 - brightBlack: 0 - brightRed: 37.8 - brightGreen: 79.6 - brightYellow: 72.9 - brightBlue: 86.3 - brightMagenta: 72.9 - brightCyan: 79.6 - brightWhite: 107.9 diff --git a/themes/zacks-light.yaml b/themes/zacks-light.yaml deleted file mode 100644 index 8d833274..00000000 --- a/themes/zacks-light.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "zacks-light" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#FFFFFF" - fg: "#444444" - black: "#FFFFFF" - red: "#BA0E2E" - green: "#9C7DDB" - yellow: "#FF6A38" - blue: "#BCD42A" - magenta: "#FF6A38" - cyan: "#9C7DDB" - white: "#515151" - brightBlack: "#FFFFFF" - brightRed: "#F03E5F" - brightGreen: "#D9CDF1" - brightYellow: "#FFB69E" - brightBlue: "#D7E67E" - brightMagenta: "#FFB69E" - brightCyan: "#D9CDF1" - brightWhite: "#777777" -meta: - mode: "light" - accent: "orange" - hue: null - pair: null - contrast: - fg: 92.6 - black: 0 - red: 80.3 - green: 60.2 - yellow: 53.7 - blue: 29.2 - magenta: 53.7 - cyan: 60.2 - white: 87.6 - brightBlack: 0 - brightRed: 63.9 - brightGreen: 23.6 - brightYellow: 29.9 - brightBlue: 17.3 - brightMagenta: 29.9 - brightCyan: 23.6 - brightWhite: 71.1 diff --git a/themes/zacks.yaml b/themes/zacks.yaml deleted file mode 100644 index cdb01df2..00000000 --- a/themes/zacks.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "zacks" -source: - marketplace_id: "humbanew.flawuldragon" - version: "0.0.19" - installs: 901 - rating: 0 - ratings: 0 - author: "Humbanew Project" - repo: "https://github.com/humbanew/flawuldragon" - url: "https://marketplace.visualstudio.com/items?itemName=humbanew.flawuldragon" -colors: - bg: "#222222" - fg: "#F0F0F0" - black: "#2F2F2F" - red: "#BA0E2E" - green: "#9C7DDB" - yellow: "#FF6A38" - blue: "#BCD42A" - magenta: "#FF6A38" - cyan: "#9C7DDB" - white: "#FDFDFD" - brightBlack: "#555555" - brightRed: "#F03E5F" - brightGreen: "#D9CDF1" - brightYellow: "#FFB69E" - brightBlue: "#D7E67E" - brightMagenta: "#FFB69E" - brightCyan: "#D9CDF1" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 95.6 - black: 0 - red: 19.1 - green: 39.1 - yellow: 45.7 - blue: 71.2 - magenta: 45.7 - cyan: 39.1 - white: 104.1 - brightBlack: 13.7 - brightRed: 35.4 - brightGreen: 77.1 - brightYellow: 70.5 - brightBlue: 83.9 - brightMagenta: 70.5 - brightCyan: 77.1 - brightWhite: 105.5 diff --git a/themes/zaeri-dark.yaml b/themes/zaeri-dark.yaml deleted file mode 100644 index fc5b3450..00000000 --- a/themes/zaeri-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zaeri Dark" -source: - marketplace_id: "xgr-development.zaeri" - version: "0.1.0" - installs: 318 - rating: 0 - ratings: 0 - author: "XGR Development" - repo: "https://github.com/XGR-Development/Zaeri-vscode-theme" - url: "https://marketplace.visualstudio.com/items?itemName=xgr-development.zaeri" -colors: - bg: "#0E0E0E" - fg: "#EDA3FA" - black: "#363B54" - red: "#F7768E" - green: "#41A6B5" - yellow: "#E9C44E" - blue: "#7AA2F7" - magenta: "#BB9AF7" - cyan: "#7DCFFF" - white: "#787C99" - brightBlack: "#363B54" - brightRed: "#F7768E" - brightGreen: "#41A6B5" - brightYellow: "#E9C44E" - brightBlue: "#7AA2F7" - brightMagenta: "#BB9AF7" - brightCyan: "#7DCFFF" - brightWhite: "#ACB0D0" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 67 - black: 0 - red: 50.6 - green: 47 - yellow: 72.8 - blue: 52.4 - magenta: 56.2 - cyan: 71.7 - white: 33.3 - brightBlack: 0 - brightRed: 50.6 - brightGreen: 47 - brightYellow: 72.8 - brightBlue: 52.4 - brightMagenta: 56.2 - brightCyan: 71.7 - brightWhite: 60.2 diff --git a/themes/zaher-color-theme.yaml b/themes/zaher-color-theme.yaml deleted file mode 100644 index b7565750..00000000 --- a/themes/zaher-color-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "zaher-color-theme" -source: - marketplace_id: "special-one.zaher" - version: "0.0.3" - installs: 76 - rating: 5 - ratings: 1 - author: "Alireza" - repo: "https://github.com/alirezahastam/zaher" - url: "https://marketplace.visualstudio.com/items?itemName=special-one.zaher" -colors: - bg: "#0B0E14" - fg: "#2A9D8F" - black: "#101216" - red: "#F26D78" - green: "#0EAD69" - yellow: "#F1C26E" - blue: "#5E8CC1" - magenta: "#D457FF" - cyan: "#3BAFC5" - white: "#D0D0D0" - brightBlack: "#5C6066" - brightRed: "#F26D78" - brightGreen: "#0EAD69" - brightYellow: "#F1C26E" - brightBlue: "#5E8CC1" - brightMagenta: "#D457FF" - brightCyan: "#3BAFC5" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "pink" - hue: 264 - pair: null - contrast: - fg: 41.1 - black: 0 - red: 46.8 - green: 46.5 - yellow: 73.7 - blue: 38.9 - magenta: 43.3 - cyan: 51.4 - white: 77.8 - brightBlack: 20.1 - brightRed: 46.8 - brightGreen: 46.5 - brightYellow: 73.7 - brightBlue: 38.9 - brightMagenta: 43.3 - brightCyan: 51.4 - brightWhite: 107.6 diff --git a/themes/zan.yaml b/themes/zan.yaml index 546b791e..133e3070 100644 --- a/themes/zan.yaml +++ b/themes/zan.yaml @@ -8,6 +8,7 @@ source: author: "bjschwa2" repo: "https://github.com/bjschwa2/Zan" url: "https://marketplace.visualstudio.com/items?itemName=bjschwa2.zan" + formats: null colors: bg: "#141314" fg: "#8A745C" diff --git a/themes/zandromeda.yaml b/themes/zandromeda.yaml deleted file mode 100644 index f5c9c11f..00000000 --- a/themes/zandromeda.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zandromeda" -source: - marketplace_id: "tommalitz.zedromeda" - version: "0.0.23" - installs: 318 - rating: 0 - ratings: 0 - author: "tommalitz" - repo: "https://github.com/TomMalitz/zedromeda" - url: "https://marketplace.visualstudio.com/items?itemName=tommalitz.zedromeda" -colors: - bg: "#1E2025" - fg: "#F7F7F8" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 100.5 - black: 0 - red: 25.6 - green: 51.9 - yellow: 84.5 - blue: 26.3 - magenta: 28.6 - cyan: 46.4 - white: 88.9 - brightBlack: 20.9 - brightRed: 37.4 - brightGreen: 62.4 - brightYellow: 94.5 - brightBlue: 38.9 - brightMagenta: 44.3 - brightCyan: 54.3 - brightWhite: 88.9 diff --git a/themes/zap.yaml b/themes/zap.yaml deleted file mode 100644 index eb2fb27f..00000000 --- a/themes/zap.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: "zap" -source: - marketplace_id: "giovanicavila.zap-theme" - version: "0.0.10" - installs: 108 - author: "Giovani Avila" - repo: "https://github.com/giovanicavila/Zap" - url: "https://marketplace.visualstudio.com/items?itemName=giovanicavila.zap-theme" -colors: - bg: "#012400" - fg: "#D4D4D4" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 142 - pair: null - contrast: - fg: 78.5 - black: 0 - red: 25.7 - green: 52 - yellow: 84.6 - blue: 26.4 - magenta: 28.7 - cyan: 46.5 - white: 89 - brightBlack: 21 - brightRed: 37.5 - brightGreen: 62.5 - brightYellow: 94.6 - brightBlue: 39 - brightMagenta: 44.4 - brightCyan: 54.4 - brightWhite: 89 diff --git a/themes/zappts.yaml b/themes/zappts.yaml deleted file mode 100644 index 2f80c545..00000000 --- a/themes/zappts.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zappts" -source: - marketplace_id: "ZapptsCodeTheme.zappts-theme" - version: "0.0.5" - installs: 206 - rating: 0 - ratings: 0 - author: "Zappts Code Theme" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=ZapptsCodeTheme.zappts-theme" -colors: - bg: "#222222" - fg: "#FFFFFF" - black: "#333333" - red: "#88BBFF" - green: "#FFDD44" - yellow: "#88CC44" - blue: "#88BBFF" - magenta: "#88BBFF" - cyan: "#BBA0FF" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#88BBFF" - brightGreen: "#FFDD44" - brightYellow: "#88CC44" - brightBlue: "#88BBFF" - brightMagenta: "#88BBFF" - brightCyan: "#BBA0FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "green" - hue: null - pair: null - contrast: - fg: 105.5 - black: 0 - red: 61.8 - green: 84.7 - yellow: 62.7 - blue: 61.8 - magenta: 61.8 - cyan: 56.7 - white: 105.5 - brightBlack: 20.6 - brightRed: 61.8 - brightGreen: 84.7 - brightYellow: 62.7 - brightBlue: 61.8 - brightMagenta: 61.8 - brightCyan: 56.7 - brightWhite: 105.5 diff --git a/themes/zbra-dark.yaml b/themes/zbra-dark.yaml index 06e12252..e38f9c20 100644 --- a/themes/zbra-dark.yaml +++ b/themes/zbra-dark.yaml @@ -8,6 +8,7 @@ source: author: "ZBRA" repo: "https://github.com/zbra-solutions/vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=zbra-dev.zbra-vs-code-theme" + formats: null colors: bg: "#282C34" fg: "#D1D3D4" diff --git a/themes/zeal.yaml b/themes/zeal.yaml index 2ea90c11..975b93c5 100644 --- a/themes/zeal.yaml +++ b/themes/zeal.yaml @@ -8,6 +8,7 @@ source: author: "kq.adem" repo: "https://github.com/kqadem/zeal" url: "https://marketplace.visualstudio.com/items?itemName=kqadem.zeal-theme" + formats: null colors: bg: "#263238" fg: "#FFFFFF" diff --git a/themes/zednostheme-v1.yaml b/themes/zednostheme-v1.yaml deleted file mode 100644 index f4ad1d21..00000000 --- a/themes/zednostheme-v1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ZednosTheme v1" -source: - marketplace_id: "GhostWithAHoodie.zednos-theme" - version: "0.1.0" - installs: 516 - rating: 0 - ratings: 0 - author: "Ghost With A Hoodie" - repo: "https://github.com/SilesterGold9/ZednosTheme" - url: "https://marketplace.visualstudio.com/items?itemName=GhostWithAHoodie.zednos-theme" -colors: - bg: "#1D2628" - fg: "#EC9309" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 213 - pair: null - contrast: - fg: 52.3 - black: 0 - red: 24.9 - green: 51.2 - yellow: 83.8 - blue: 25.6 - magenta: 27.9 - cyan: 45.7 - white: 88.2 - brightBlack: 20.2 - brightRed: 36.7 - brightGreen: 61.7 - brightYellow: 93.8 - brightBlue: 38.2 - brightMagenta: 43.5 - brightCyan: 53.6 - brightWhite: 88.2 diff --git a/themes/zelda-dark.yaml b/themes/zelda-dark.yaml deleted file mode 100644 index 37bdc837..00000000 --- a/themes/zelda-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zelda-Dark" -source: - marketplace_id: "KlausChamberlain.zelda" - version: "0.0.1" - installs: 61 - rating: 0 - ratings: 0 - author: "Klaus Chamberlain" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=KlausChamberlain.zelda" -colors: - bg: "#0D1513" - fg: "#E2DDC3" - black: "#0D1513" - red: "#C9B962" - green: "#90B791" - yellow: "#C9B962" - blue: "#6CA08C" - magenta: "#9BA064" - cyan: "#ABC894" - white: "#E2DDC3" - brightBlack: "#6D9064" - brightRed: "#C9B962" - brightGreen: "#90B791" - brightYellow: "#C9B962" - brightBlue: "#6CA08C" - brightMagenta: "#9BA064" - brightCyan: "#ABC894" - brightWhite: "#E2DDC3" -meta: - mode: "dark" - accent: "green" - hue: 178 - pair: null - contrast: - fg: 84.9 - black: 0 - red: 63.5 - green: 57.3 - yellow: 63.5 - blue: 44.7 - magenta: 47.9 - cyan: 67.4 - white: 84.9 - brightBlack: 37.4 - brightRed: 63.5 - brightGreen: 57.3 - brightYellow: 63.5 - brightBlue: 44.7 - brightMagenta: 47.9 - brightCyan: 67.4 - brightWhite: 84.9 diff --git a/themes/zelzea.yaml b/themes/zelzea.yaml index 192e446d..31f4cfb9 100644 --- a/themes/zelzea.yaml +++ b/themes/zelzea.yaml @@ -1,4 +1,4 @@ -name: "zelzea" +name: "Zelzea" source: marketplace_id: "hooriahic.zelzea" version: "0.2.0" @@ -8,6 +8,7 @@ source: author: "hooriahic" repo: "https://github.com/HooriaHIC/zelzea" url: "https://marketplace.visualstudio.com/items?itemName=hooriahic.zelzea" + formats: null colors: bg: "#EEEEEE" fg: "#333333" diff --git a/themes/zemarcolortheme.yaml b/themes/zemarcolortheme.yaml deleted file mode 100644 index 0275b945..00000000 --- a/themes/zemarcolortheme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "ZemarColorTheme" -source: - marketplace_id: "ZColorTheme.ct" - version: "0.0.1" - installs: 106 - rating: 0 - ratings: 0 - author: "ZColorTheme" - repo: "https://github.com/ZacZemar/ZColorTheme" - url: "https://marketplace.visualstudio.com/items?itemName=ZColorTheme.ct" -colors: - bg: "#080E21" - fg: "#00CFFF" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#238BFF" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#FFFFFF" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: 268 - pair: null - contrast: - fg: 68.2 - black: 0 - red: 27.3 - green: 53.6 - yellow: 86.2 - blue: 40.6 - magenta: 30.3 - cyan: 48.1 - white: 107.5 - brightBlack: 22.6 - brightRed: 39.1 - brightGreen: 64.1 - brightYellow: 96.2 - brightBlue: 40.6 - brightMagenta: 46 - brightCyan: 56 - brightWhite: 90.6 diff --git a/themes/zemizer-grey.yaml b/themes/zemizer-grey.yaml index 939c4b92..3d84a05f 100644 --- a/themes/zemizer-grey.yaml +++ b/themes/zemizer-grey.yaml @@ -8,6 +8,7 @@ source: author: "ZeKmzx" repo: "https://github.com/mlaidouni/vsc.ext.zemizer.theme" url: "https://marketplace.visualstudio.com/items?itemName=Kmzx.zemizer-theme" + formats: null colors: bg: "#24292E" fg: "#E1E4E8" diff --git a/themes/zen-dark.yaml b/themes/zen-dark.yaml index 80211752..03dd9088 100644 --- a/themes/zen-dark.yaml +++ b/themes/zen-dark.yaml @@ -8,6 +8,7 @@ source: author: "cmion" repo: "https://github.com/cmion/zen-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=cmion.zen-vscode-theme" + formats: null colors: bg: "#212121" fg: "#B0BEC5" diff --git a/themes/zen-mono.yaml b/themes/zen-mono.yaml deleted file mode 100644 index a053d180..00000000 --- a/themes/zen-mono.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zen Mono" -source: - marketplace_id: "Noxire.midnight-themepack" - version: "1.2.0" - installs: 544 - rating: 0 - ratings: 0 - author: "Noxire" - repo: "https://github.com/Noxire-Hash/midnight-theme" - url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" -colors: - bg: "#11141B" - fg: "#DCD9F6" - black: "#0E1017" - red: "#FF6A9B" - green: "#B3F1D0" - yellow: "#FFCC88" - blue: "#A7C5FF" - magenta: "#C099FF" - cyan: "#B8E7FF" - white: "#E8E6FF" - brightBlack: "#2A2E3E" - brightRed: "#FF8AB3" - brightGreen: "#C7F6DC" - brightYellow: "#FFE3A8" - brightBlue: "#BDD4FF" - brightMagenta: "#D8C5FF" - brightCyan: "#D2F1FF" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "red" - hue: 267 - pair: null - contrast: - fg: 84.6 - black: 0 - red: 49.6 - green: 89.3 - yellow: 80.2 - blue: 70.4 - magenta: 56.7 - cyan: 87.2 - white: 92.4 - brightBlack: 0 - brightRed: 58.5 - brightGreen: 94.2 - brightYellow: 90.9 - brightBlue: 79.2 - brightMagenta: 76.2 - brightCyan: 94.7 - brightWhite: 107.1 diff --git a/themes/zen-sakura-cherry-blossom.yaml b/themes/zen-sakura-cherry-blossom.yaml index a9066c20..cc086754 100644 --- a/themes/zen-sakura-cherry-blossom.yaml +++ b/themes/zen-sakura-cherry-blossom.yaml @@ -8,6 +8,7 @@ source: author: "cmion" repo: "https://github.com/cmion/zen-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=cmion.zen-vscode-theme" + formats: null colors: bg: "#212121" fg: "#B0BEC5" diff --git a/themes/zen-theme.yaml b/themes/zen-theme.yaml index ca30bf10..4934cdf8 100644 --- a/themes/zen-theme.yaml +++ b/themes/zen-theme.yaml @@ -8,6 +8,7 @@ source: author: "Piotr Zieliński" repo: "https://github.com/piotrzielinski1994/vscode-zen-theme" url: "https://marketplace.visualstudio.com/items?itemName=pzielinski.zen-theme" + formats: null colors: bg: "#0F111A" fg: "#B7BBCD" diff --git a/themes/zen.yaml b/themes/zen.yaml index a29f5f79..401c24f0 100644 --- a/themes/zen.yaml +++ b/themes/zen.yaml @@ -8,6 +8,7 @@ source: author: "Zen Theme" repo: "https://github.com/vibovenkat123/zen_vscode" url: "https://marketplace.visualstudio.com/items?itemName=ZenTheme.zen-color-theme" + formats: null colors: bg: "#1D1D1D" fg: "#EBEBEB" diff --git a/themes/zenbones-dark-stark.yaml b/themes/zenbones-dark-stark.yaml index d3710270..f6eb20cf 100644 --- a/themes/zenbones-dark-stark.yaml +++ b/themes/zenbones-dark-stark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#171210" fg: "#B4BDC3" diff --git a/themes/zenbones-dark-warm.yaml b/themes/zenbones-dark-warm.yaml index 3f678982..83914345 100644 --- a/themes/zenbones-dark-warm.yaml +++ b/themes/zenbones-dark-warm.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#221F1D" fg: "#B4BDC3" diff --git a/themes/zenbones-dark.yaml b/themes/zenbones-dark.yaml index 727206cd..0f59980c 100644 --- a/themes/zenbones-dark.yaml +++ b/themes/zenbones-dark.yaml @@ -8,6 +8,7 @@ source: author: "Gotchacode" repo: "https://github.com/vinitkumar/zenbones" url: "https://marketplace.visualstudio.com/items?itemName=vinitkme.zenbones-redux" + formats: null colors: bg: "#1C1917" fg: "#B4BDC3" diff --git a/themes/zenbones-duckbones-dark-stark.yaml b/themes/zenbones-duckbones-dark-stark.yaml index 6a0c8c79..4596c71a 100644 --- a/themes/zenbones-duckbones-dark-stark.yaml +++ b/themes/zenbones-duckbones-dark-stark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#06070F" fg: "#EBEFC0" diff --git a/themes/zenbones-duckbones-dark-warm.yaml b/themes/zenbones-duckbones-dark-warm.yaml index 9455c90d..0c33684b 100644 --- a/themes/zenbones-duckbones-dark-warm.yaml +++ b/themes/zenbones-duckbones-dark-warm.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#151722" fg: "#EBEFC0" diff --git a/themes/zenbones-duckbones-dark.yaml b/themes/zenbones-duckbones-dark.yaml index fe4959ed..e850df1e 100644 --- a/themes/zenbones-duckbones-dark.yaml +++ b/themes/zenbones-duckbones-dark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#0E101A" fg: "#EBEFC0" diff --git a/themes/zenbones-forestbones-dark-stark.yaml b/themes/zenbones-forestbones-dark-stark.yaml index 9acb3f80..d4b639fb 100644 --- a/themes/zenbones-forestbones-dark-stark.yaml +++ b/themes/zenbones-forestbones-dark-stark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#242D34" fg: "#E7DCC4" diff --git a/themes/zenbones-forestbones-dark-warm.yaml b/themes/zenbones-forestbones-dark-warm.yaml index 1b2097a4..22596631 100644 --- a/themes/zenbones-forestbones-dark-warm.yaml +++ b/themes/zenbones-forestbones-dark-warm.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#323A40" fg: "#E7DCC4" diff --git a/themes/zenbones-forestbones-dark.yaml b/themes/zenbones-forestbones-dark.yaml index efed4475..62874183 100644 --- a/themes/zenbones-forestbones-dark.yaml +++ b/themes/zenbones-forestbones-dark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#2C343A" fg: "#E7DCC4" diff --git a/themes/zenbones-forestbones-light-bright.yaml b/themes/zenbones-forestbones-light-bright.yaml index 6a76888b..41bf5028 100644 --- a/themes/zenbones-forestbones-light-bright.yaml +++ b/themes/zenbones-forestbones-light-bright.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#FEFCF8" fg: "#4F5B62" diff --git a/themes/zenbones-forestbones-light-dim.yaml b/themes/zenbones-forestbones-light-dim.yaml index b37235d9..12432a54 100644 --- a/themes/zenbones-forestbones-light-dim.yaml +++ b/themes/zenbones-forestbones-light-dim.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#F5EBCC" fg: "#4F5B62" diff --git a/themes/zenbones-forestbones-light.yaml b/themes/zenbones-forestbones-light.yaml index 29cd90ba..21074983 100644 --- a/themes/zenbones-forestbones-light.yaml +++ b/themes/zenbones-forestbones-light.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#FAF3E1" fg: "#4F5B62" diff --git a/themes/zenbones-kanagawabones-dark-stark.yaml b/themes/zenbones-kanagawabones-dark-stark.yaml index cef2e72e..f6b35bc8 100644 --- a/themes/zenbones-kanagawabones-dark-stark.yaml +++ b/themes/zenbones-kanagawabones-dark-stark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#181825" fg: "#DDD8BB" diff --git a/themes/zenbones-kanagawabones-dark-warm.yaml b/themes/zenbones-kanagawabones-dark-warm.yaml index 87c64791..78fb7582 100644 --- a/themes/zenbones-kanagawabones-dark-warm.yaml +++ b/themes/zenbones-kanagawabones-dark-warm.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#25252F" fg: "#DDD8BB" diff --git a/themes/zenbones-kanagawabones-dark.yaml b/themes/zenbones-kanagawabones-dark.yaml index 1bb2eecb..856c0cc3 100644 --- a/themes/zenbones-kanagawabones-dark.yaml +++ b/themes/zenbones-kanagawabones-dark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#1F1F28" fg: "#DDD8BB" diff --git a/themes/zenbones-light-bright.yaml b/themes/zenbones-light-bright.yaml index 69f2331c..c4a2f28d 100644 --- a/themes/zenbones-light-bright.yaml +++ b/themes/zenbones-light-bright.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#F8F6F5" fg: "#2C363C" diff --git a/themes/zenbones-light-dim.yaml b/themes/zenbones-light-dim.yaml index 7c14e1df..2e879238 100644 --- a/themes/zenbones-light-dim.yaml +++ b/themes/zenbones-light-dim.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#E8E4E3" fg: "#2C363C" diff --git a/themes/zenbones-light.yaml b/themes/zenbones-light.yaml index 9243c890..f1f47cbe 100644 --- a/themes/zenbones-light.yaml +++ b/themes/zenbones-light.yaml @@ -8,6 +8,7 @@ source: author: "Gotchacode" repo: "https://github.com/vinitkumar/zenbones" url: "https://marketplace.visualstudio.com/items?itemName=vinitkme.zenbones-redux" + formats: null colors: bg: "#F0EDEC" fg: "#2C363C" diff --git a/themes/zenbones-neobones-dark-stark.yaml b/themes/zenbones-neobones-dark-stark.yaml index db831813..cde567a2 100644 --- a/themes/zenbones-neobones-dark-stark.yaml +++ b/themes/zenbones-neobones-dark-stark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#091217" fg: "#C6D5CF" diff --git a/themes/zenbones-neobones-dark-warm.yaml b/themes/zenbones-neobones-dark-warm.yaml index 7fcd0690..66fc27d2 100644 --- a/themes/zenbones-neobones-dark-warm.yaml +++ b/themes/zenbones-neobones-dark-warm.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#151F25" fg: "#C6D5CF" diff --git a/themes/zenbones-neobones-dark.yaml b/themes/zenbones-neobones-dark.yaml index 1e23401c..5e88cefd 100644 --- a/themes/zenbones-neobones-dark.yaml +++ b/themes/zenbones-neobones-dark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#0F191F" fg: "#C6D5CF" diff --git a/themes/zenbones-neobones-light-bright.yaml b/themes/zenbones-neobones-light-bright.yaml index 7b3e1d4e..8c88f481 100644 --- a/themes/zenbones-neobones-light-bright.yaml +++ b/themes/zenbones-neobones-light-bright.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#EFF5F0" fg: "#202E18" diff --git a/themes/zenbones-neobones-light-dim.yaml b/themes/zenbones-neobones-light-dim.yaml index a7bbf123..da5af849 100644 --- a/themes/zenbones-neobones-light-dim.yaml +++ b/themes/zenbones-neobones-light-dim.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#DBE5DC" fg: "#202E18" diff --git a/themes/zenbones-neobones-light.yaml b/themes/zenbones-neobones-light.yaml index 538598de..d090c6ae 100644 --- a/themes/zenbones-neobones-light.yaml +++ b/themes/zenbones-neobones-light.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#E5EDE6" fg: "#202E18" diff --git a/themes/zenbones-nordbones-dark-stark.yaml b/themes/zenbones-nordbones-dark-stark.yaml index d970334a..3f8ee4f0 100644 --- a/themes/zenbones-nordbones-dark-stark.yaml +++ b/themes/zenbones-nordbones-dark-stark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#272E3C" fg: "#EBEEF3" diff --git a/themes/zenbones-nordbones-dark-warm.yaml b/themes/zenbones-nordbones-dark-warm.yaml index c18fdce0..3cdf4aec 100644 --- a/themes/zenbones-nordbones-dark-warm.yaml +++ b/themes/zenbones-nordbones-dark-warm.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#363B47" fg: "#EBEEF3" diff --git a/themes/zenbones-nordbones-dark.yaml b/themes/zenbones-nordbones-dark.yaml index 7958017e..5a2868d9 100644 --- a/themes/zenbones-nordbones-dark.yaml +++ b/themes/zenbones-nordbones-dark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#2F3541" fg: "#EBEEF3" diff --git a/themes/zenbones-rosebones-dark-stark.yaml b/themes/zenbones-rosebones-dark-stark.yaml index 0b2dce35..dec40598 100644 --- a/themes/zenbones-rosebones-dark-stark.yaml +++ b/themes/zenbones-rosebones-dark-stark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#141120" fg: "#E1D4D4" diff --git a/themes/zenbones-rosebones-dark-warm.yaml b/themes/zenbones-rosebones-dark-warm.yaml index a62b8fb9..be2f9e7c 100644 --- a/themes/zenbones-rosebones-dark-warm.yaml +++ b/themes/zenbones-rosebones-dark-warm.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#232137" fg: "#E1D4D4" diff --git a/themes/zenbones-rosebones-dark.yaml b/themes/zenbones-rosebones-dark.yaml index 6f0d288b..10c9fe00 100644 --- a/themes/zenbones-rosebones-dark.yaml +++ b/themes/zenbones-rosebones-dark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#1A1825" fg: "#E1D4D4" diff --git a/themes/zenbones-rosebones-light-bright.yaml b/themes/zenbones-rosebones-light-bright.yaml index 7d4e5b22..8bf1fa55 100644 --- a/themes/zenbones-rosebones-light-bright.yaml +++ b/themes/zenbones-rosebones-light-bright.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#FFFFFF" fg: "#724341" diff --git a/themes/zenbones-rosebones-light-dim.yaml b/themes/zenbones-rosebones-light-dim.yaml index 60eb951b..92aa5255 100644 --- a/themes/zenbones-rosebones-light-dim.yaml +++ b/themes/zenbones-rosebones-light-dim.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#F6ECE1" fg: "#724341" diff --git a/themes/zenbones-rosebones-light.yaml b/themes/zenbones-rosebones-light.yaml index e6205625..2d981bb0 100644 --- a/themes/zenbones-rosebones-light.yaml +++ b/themes/zenbones-rosebones-light.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#FBF6F0" fg: "#724341" diff --git a/themes/zenbones-seoulbones-dark-stark.yaml b/themes/zenbones-seoulbones-dark-stark.yaml index e29e43e5..8a06b5d8 100644 --- a/themes/zenbones-seoulbones-dark-stark.yaml +++ b/themes/zenbones-seoulbones-dark-stark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#4D4244" fg: "#DDDDDD" diff --git a/themes/zenbones-seoulbones-dark-warm.yaml b/themes/zenbones-seoulbones-dark-warm.yaml index c988420b..682be257 100644 --- a/themes/zenbones-seoulbones-dark-warm.yaml +++ b/themes/zenbones-seoulbones-dark-warm.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#525252" fg: "#DDDDDD" diff --git a/themes/zenbones-seoulbones-dark.yaml b/themes/zenbones-seoulbones-dark.yaml index f4df103e..7e26a513 100644 --- a/themes/zenbones-seoulbones-dark.yaml +++ b/themes/zenbones-seoulbones-dark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#4B4B4B" fg: "#DDDDDD" diff --git a/themes/zenbones-seoulbones-light-bright.yaml b/themes/zenbones-seoulbones-light-bright.yaml index 36da99da..dc16a16b 100644 --- a/themes/zenbones-seoulbones-light-bright.yaml +++ b/themes/zenbones-seoulbones-light-bright.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#ECEAEB" fg: "#555555" diff --git a/themes/zenbones-seoulbones-light-dim.yaml b/themes/zenbones-seoulbones-light-dim.yaml index a7d68db4..dbdd0760 100644 --- a/themes/zenbones-seoulbones-light-dim.yaml +++ b/themes/zenbones-seoulbones-light-dim.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#DADADA" fg: "#555555" diff --git a/themes/zenbones-seoulbones-light.yaml b/themes/zenbones-seoulbones-light.yaml index 4da11ec6..f450b573 100644 --- a/themes/zenbones-seoulbones-light.yaml +++ b/themes/zenbones-seoulbones-light.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#E2E2E2" fg: "#555555" diff --git a/themes/zenbones-tokyobones-dark-stark.yaml b/themes/zenbones-tokyobones-dark-stark.yaml index 6e6b0a98..8cf61b25 100644 --- a/themes/zenbones-tokyobones-dark-stark.yaml +++ b/themes/zenbones-tokyobones-dark-stark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#131521" fg: "#C0CAF5" diff --git a/themes/zenbones-tokyobones-dark-warm.yaml b/themes/zenbones-tokyobones-dark-warm.yaml index 8f9b1fa1..c5399ba2 100644 --- a/themes/zenbones-tokyobones-dark-warm.yaml +++ b/themes/zenbones-tokyobones-dark-warm.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#25293C" fg: "#C0CAF5" diff --git a/themes/zenbones-tokyobones-dark.yaml b/themes/zenbones-tokyobones-dark.yaml index 85337e6a..31fc8b76 100644 --- a/themes/zenbones-tokyobones-dark.yaml +++ b/themes/zenbones-tokyobones-dark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#1A1B26" fg: "#C0CAF5" diff --git a/themes/zenbones-tokyobones-light-bright.yaml b/themes/zenbones-tokyobones-light-bright.yaml index 2f24ff0a..829bb048 100644 --- a/themes/zenbones-tokyobones-light-bright.yaml +++ b/themes/zenbones-tokyobones-light-bright.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#DEDFE5" fg: "#333A57" diff --git a/themes/zenbones-tokyobones-light-dim.yaml b/themes/zenbones-tokyobones-light-dim.yaml index 12c72db6..66236d1f 100644 --- a/themes/zenbones-tokyobones-light-dim.yaml +++ b/themes/zenbones-tokyobones-light-dim.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#CDCFD4" fg: "#333A57" diff --git a/themes/zenbones-tokyobones-light.yaml b/themes/zenbones-tokyobones-light.yaml index 4a7184b4..c4c87259 100644 --- a/themes/zenbones-tokyobones-light.yaml +++ b/themes/zenbones-tokyobones-light.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#D6D7DC" fg: "#333A57" diff --git a/themes/zenbones-vimbones-light-bright.yaml b/themes/zenbones-vimbones-light-bright.yaml index 7acef05f..f521df91 100644 --- a/themes/zenbones-vimbones-light-bright.yaml +++ b/themes/zenbones-vimbones-light-bright.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#F9F9CC" fg: "#353535" diff --git a/themes/zenbones-vimbones-light-dim.yaml b/themes/zenbones-vimbones-light-dim.yaml index ea7204c1..3096f277 100644 --- a/themes/zenbones-vimbones-light-dim.yaml +++ b/themes/zenbones-vimbones-light-dim.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#E7E7C7" fg: "#353535" diff --git a/themes/zenbones-vimbones-light.yaml b/themes/zenbones-vimbones-light.yaml index e88f5cda..4b607120 100644 --- a/themes/zenbones-vimbones-light.yaml +++ b/themes/zenbones-vimbones-light.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#F0F0CA" fg: "#353535" diff --git a/themes/zenbones-zenburned-dark-stark.yaml b/themes/zenbones-zenburned-dark-stark.yaml index 1971a036..741333b0 100644 --- a/themes/zenbones-zenburned-dark-stark.yaml +++ b/themes/zenbones-zenburned-dark-stark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#413738" fg: "#F0E4CF" diff --git a/themes/zenbones-zenburned-dark-warm.yaml b/themes/zenbones-zenburned-dark-warm.yaml index 68dae570..3ccc3593 100644 --- a/themes/zenbones-zenburned-dark-warm.yaml +++ b/themes/zenbones-zenburned-dark-warm.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#474747" fg: "#F0E4CF" diff --git a/themes/zenbones-zenburned-dark.yaml b/themes/zenbones-zenburned-dark.yaml index e1522c5e..23397f26 100644 --- a/themes/zenbones-zenburned-dark.yaml +++ b/themes/zenbones-zenburned-dark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#404040" fg: "#F0E4CF" diff --git a/themes/zenbones-zenwritten-dark-stark.yaml b/themes/zenbones-zenwritten-dark-stark.yaml index 5fce5d61..776dd382 100644 --- a/themes/zenbones-zenwritten-dark-stark.yaml +++ b/themes/zenbones-zenwritten-dark-stark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#171213" fg: "#BBBBBB" diff --git a/themes/zenbones-zenwritten-dark-warm.yaml b/themes/zenbones-zenwritten-dark-warm.yaml index 95674c27..1dac397a 100644 --- a/themes/zenbones-zenwritten-dark-warm.yaml +++ b/themes/zenbones-zenwritten-dark-warm.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#1F1F1F" fg: "#BBBBBB" diff --git a/themes/zenbones-zenwritten-dark.yaml b/themes/zenbones-zenwritten-dark.yaml index 1eb646a7..2c4ab4c1 100644 --- a/themes/zenbones-zenwritten-dark.yaml +++ b/themes/zenbones-zenwritten-dark.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#191919" fg: "#BBBBBB" diff --git a/themes/zenbones-zenwritten-light-bright.yaml b/themes/zenbones-zenwritten-light-bright.yaml index 7324b3ab..b2137251 100644 --- a/themes/zenbones-zenwritten-light-bright.yaml +++ b/themes/zenbones-zenwritten-light-bright.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#F7F6F6" fg: "#353535" diff --git a/themes/zenbones-zenwritten-light-dim.yaml b/themes/zenbones-zenwritten-light-dim.yaml index d920468f..1be8c015 100644 --- a/themes/zenbones-zenwritten-light-dim.yaml +++ b/themes/zenbones-zenwritten-light-dim.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#E5E5E5" fg: "#353535" diff --git a/themes/zenbones-zenwritten-light.yaml b/themes/zenbones-zenwritten-light.yaml index 691835ae..e08724a8 100644 --- a/themes/zenbones-zenwritten-light.yaml +++ b/themes/zenbones-zenwritten-light.yaml @@ -8,6 +8,7 @@ source: author: "rpbritton" repo: "https://github.com/rpbritton/zenbones.nvim" url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null colors: bg: "#EEEEEE" fg: "#353535" diff --git a/themes/zenbook-ux534ftc-white-gold-v1-full-dark.yaml b/themes/zenbook-ux534ftc-white-gold-v1-full-dark.yaml index 3af69e61..4fa933b3 100644 --- a/themes/zenbook-ux534ftc-white-gold-v1-full-dark.yaml +++ b/themes/zenbook-ux534ftc-white-gold-v1-full-dark.yaml @@ -8,6 +8,7 @@ source: author: "ELITE NOTORIOUS THE PRESTIGIOUS" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ELITENOTORIOUSTHEPRESTIGIOUS.zenbook-ux534ftc-white-gold-v2" + formats: null colors: bg: "#000000" fg: "#FFFFFF" diff --git a/themes/zenbook-ux534ftc-white-gold-v2-1-95.yaml b/themes/zenbook-ux534ftc-white-gold-v2-1-95.yaml index 11a0694f..70ec9dcd 100644 --- a/themes/zenbook-ux534ftc-white-gold-v2-1-95.yaml +++ b/themes/zenbook-ux534ftc-white-gold-v2-1-95.yaml @@ -8,6 +8,7 @@ source: author: "ELITE NOTORIOUS THE PRESTIGIOUS" repo: null url: "https://marketplace.visualstudio.com/items?itemName=ELITENOTORIOUSTHEPRESTIGIOUS.zenbook-ux534ftc-white-gold-v2" + formats: null colors: bg: "#DEDEDE" fg: "#000000" diff --git a/themes/zenburn.yaml b/themes/zenburn.yaml deleted file mode 100644 index a11b7676..00000000 --- a/themes/zenburn.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zenburn" -source: - marketplace_id: "swashata.beautiful-ui" - version: "1.7.0" - installs: 121108 - rating: 4.38 - ratings: 13 - author: "swashata" - repo: "https://github.com/swashata/vscode-beautiful-ui" - url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" -colors: - bg: "#383838" - fg: "#DEDEDE" - black: "#000000" - red: "#D81E00" - green: "#5EA702" - yellow: "#CFAE00" - blue: "#427AB3" - magenta: "#89658E" - cyan: "#00A7AA" - white: "#DBDED8" - brightBlack: "#686A66" - brightRed: "#F54235" - brightGreen: "#99E343" - brightYellow: "#FDEB61" - brightBlue: "#84B0D8" - brightMagenta: "#BC94B7" - brightCyan: "#37E6E8" - brightWhite: "#F1F1F0" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 79.3 - black: 0 - red: 21.3 - green: 38.2 - yellow: 52.6 - blue: 23.3 - magenta: 20.7 - cyan: 39.1 - white: 78.7 - brightBlack: 17.2 - brightRed: 31.5 - brightGreen: 70.2 - brightYellow: 86.1 - brightBlue: 49.8 - brightMagenta: 43.8 - brightCyan: 71.4 - brightWhite: 91.4 diff --git a/themes/zene-dark-theme.yaml b/themes/zene-dark-theme.yaml index 3b821387..0f4d8d63 100644 --- a/themes/zene-dark-theme.yaml +++ b/themes/zene-dark-theme.yaml @@ -8,6 +8,7 @@ source: author: "Mehdi Talalha" repo: "https://github.com/mehdi1-T/ZENE-vscode-Theme" url: "https://marketplace.visualstudio.com/items?itemName=MehdiTalalha.zene-theme" + formats: null colors: bg: "#1E1E2E" fg: "#CAD3F5" @@ -31,7 +32,7 @@ meta: mode: "dark" accent: "magenta" hue: 284 - pair: "Zene Light Theme" + pair: null contrast: fg: 78.4 black: 0 diff --git a/themes/zene-light-theme.yaml b/themes/zene-light-theme.yaml deleted file mode 100644 index de71e6bd..00000000 --- a/themes/zene-light-theme.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zene Light Theme" -source: - marketplace_id: "MehdiTalalha.zene-theme" - version: "3.1.0" - installs: 37 - rating: 5 - ratings: 1 - author: "Mehdi Talalha" - repo: "https://github.com/mehdi1-T/ZENE-vscode-Theme" - url: "https://marketplace.visualstudio.com/items?itemName=MehdiTalalha.zene-theme" -colors: - bg: "#E6E7ED" - fg: "#343B59" - black: "#343B58" - red: "#8C4351" - green: "#33635C" - yellow: "#8F5E15" - blue: "#2959AA" - magenta: "#7B43BA" - cyan: "#006C86" - white: "#707280" - brightBlack: "#343B58" - brightRed: "#8C4351" - brightGreen: "#33635C" - brightYellow: "#8F5E15" - brightBlue: "#2959AA" - brightMagenta: "#7B43BA" - brightCyan: "#006C86" - brightWhite: "#707280" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Zene Dark Theme" - contrast: - fg: 81.3 - black: 81.3 - red: 69.5 - green: 69.4 - yellow: 63.5 - blue: 68.9 - magenta: 66.6 - cyan: 65.5 - white: 59 - brightBlack: 81.3 - brightRed: 69.5 - brightGreen: 69.4 - brightYellow: 63.5 - brightBlue: 68.9 - brightMagenta: 66.6 - brightCyan: 65.5 - brightWhite: 59 diff --git a/themes/zeneth.yaml b/themes/zeneth.yaml index 76a63a1d..0ea39c19 100644 --- a/themes/zeneth.yaml +++ b/themes/zeneth.yaml @@ -8,6 +8,7 @@ source: author: "Edan M." repo: "https://github.com/edanick/zeneth" url: "https://marketplace.visualstudio.com/items?itemName=edan-m.theme-zeneth" + formats: null colors: bg: "#080808" fg: "#A5B1C2" diff --git a/themes/zenflow-noir.yaml b/themes/zenflow-noir.yaml index 4a2a95db..a3527964 100644 --- a/themes/zenflow-noir.yaml +++ b/themes/zenflow-noir.yaml @@ -8,6 +8,7 @@ source: author: "Demise" repo: "https://github.com/Demiserular/Zenflow--vsTheme" url: "https://marketplace.visualstudio.com/items?itemName=Demise.zenflow" + formats: null colors: bg: "#0A0A0E" fg: "#E0E0E8" diff --git a/themes/zenith-aurora.yaml b/themes/zenith-aurora.yaml deleted file mode 100644 index 58da0e43..00000000 --- a/themes/zenith-aurora.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zenith Aurora" -source: - marketplace_id: "TheSamonide.zenith-theme" - version: "6.0.3" - installs: 109 - rating: 5 - ratings: 1 - author: "Samonide" - repo: "https://github.com/samonide/zenith-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" -colors: - bg: "#1A1E24" - fg: "#D8E5E8" - black: "#1A1E24" - red: "#E8A5B8" - green: "#A8DFC5" - yellow: "#E8D8B0" - blue: "#9FC5E8" - magenta: "#C8B5E8" - cyan: "#A0E8E0" - white: "#D8E5E8" - brightBlack: "#3E4450" - brightRed: "#E8A5B8" - brightGreen: "#B8E5D0" - brightYellow: "#E8D8B0" - brightBlue: "#88B3D6" - brightMagenta: "#B8A5D8" - brightCyan: "#96D6D0" - brightWhite: "#D8E5E8" -meta: - mode: "dark" - accent: "red" - hue: 258 - pair: null - contrast: - fg: 87.7 - black: 0 - red: 62 - green: 78.1 - yellow: 81.8 - blue: 67.3 - magenta: 65.4 - cyan: 82.8 - white: 87.7 - brightBlack: 8 - brightRed: 62 - brightGreen: 83 - brightYellow: 81.8 - brightBlue: 56.7 - brightMagenta: 56.4 - brightCyan: 72.8 - brightWhite: 87.7 diff --git a/themes/zenith-dawn.yaml b/themes/zenith-dawn.yaml deleted file mode 100644 index 9bf30de8..00000000 --- a/themes/zenith-dawn.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zenith Dawn" -source: - marketplace_id: "TheSamonide.zenith-theme" - version: "6.0.3" - installs: 109 - rating: 5 - ratings: 1 - author: "Samonide" - repo: "https://github.com/samonide/zenith-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" -colors: - bg: "#EFF1F5" - fg: "#4C4F69" - black: "#EFF1F5" - red: "#D20F39" - green: "#40A02B" - yellow: "#DF8E1D" - blue: "#1E66F5" - magenta: "#8839EF" - cyan: "#04A5E5" - white: "#4C4F69" - brightBlack: "#9CA0B0" - brightRed: "#D20F39" - brightGreen: "#5FB268" - brightYellow: "#DF8E1D" - brightBlue: "#1E66F5" - brightMagenta: "#7C3AED" - brightCyan: "#179299" - brightWhite: "#4C4F69" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: "Zenith Midnight" - contrast: - fg: 79.3 - black: 0 - red: 66.3 - green: 52.1 - yellow: 42.3 - blue: 64.8 - magenta: 67.5 - cyan: 44.7 - white: 79.3 - brightBlack: 42.4 - brightRed: 66.3 - brightGreen: 42.3 - brightYellow: 42.3 - brightBlue: 64.8 - brightMagenta: 69.1 - brightCyan: 56.1 - brightWhite: 79.3 diff --git a/themes/zenith-dusk.yaml b/themes/zenith-dusk.yaml deleted file mode 100644 index c85970cd..00000000 --- a/themes/zenith-dusk.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zenith Dusk" -source: - marketplace_id: "TheSamonide.zenith-theme" - version: "6.0.3" - installs: 109 - rating: 5 - ratings: 1 - author: "Samonide" - repo: "https://github.com/samonide/zenith-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" -colors: - bg: "#1E1E2E" - fg: "#E0DFE8" - black: "#1E1E2E" - red: "#F38BA8" - green: "#A6E3A1" - yellow: "#F9E2AF" - blue: "#89B4FA" - magenta: "#BBA6F7" - cyan: "#94E2D5" - white: "#E0DFE8" - brightBlack: "#45475A" - brightRed: "#F38BA8" - brightGreen: "#B5EDB5" - brightYellow: "#F9E2AF" - brightBlue: "#7A9FF5" - brightMagenta: "#A58EE5" - brightCyan: "#91D7E3" - brightWhite: "#E0DFE8" -meta: - mode: "dark" - accent: "purple" - hue: 284 - pair: null - contrast: - fg: 85.8 - black: 0 - red: 54.7 - green: 78.3 - yellow: 88.4 - blue: 59.1 - magenta: 58.7 - cyan: 78.2 - white: 85.8 - brightBlack: 9.3 - brightRed: 54.7 - brightGreen: 85.2 - brightYellow: 88.4 - brightBlue: 49.4 - brightMagenta: 46.5 - brightCyan: 73.5 - brightWhite: 85.8 diff --git a/themes/zenith-forest.yaml b/themes/zenith-forest.yaml deleted file mode 100644 index 5ce3e89e..00000000 --- a/themes/zenith-forest.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zenith Forest" -source: - marketplace_id: "TheSamonide.zenith-theme" - version: "6.0.3" - installs: 109 - rating: 5 - ratings: 1 - author: "Samonide" - repo: "https://github.com/samonide/zenith-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" -colors: - bg: "#151D17" - fg: "#E8F0E0" - black: "#1A211B" - red: "#F28B82" - green: "#81C995" - yellow: "#F9E2AF" - blue: "#89C0EB" - magenta: "#C8A8E0" - cyan: "#89DCEB" - white: "#E8F0E0" - brightBlack: "#3F4740" - brightRed: "#F28B82" - brightGreen: "#9DE0AD" - brightYellow: "#F9E2AF" - brightBlue: "#7CB8D8" - brightMagenta: "#B89FD8" - brightCyan: "#76CEC7" - brightWhite: "#E8F0E0" -meta: - mode: "dark" - accent: "orange" - hue: 153 - pair: null - contrast: - fg: 94.8 - black: 0 - red: 53.8 - green: 63.4 - yellow: 89 - blue: 63.7 - magenta: 60.4 - cyan: 76.2 - white: 94.8 - brightBlack: 8.7 - brightRed: 53.8 - brightGreen: 77.1 - brightYellow: 89 - brightBlue: 58.3 - brightMagenta: 54.6 - brightCyan: 66.7 - brightWhite: 94.8 diff --git a/themes/zenith-midnight.yaml b/themes/zenith-midnight.yaml deleted file mode 100644 index f045dc88..00000000 --- a/themes/zenith-midnight.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zenith Midnight" -source: - marketplace_id: "TheSamonide.zenith-theme" - version: "6.0.3" - installs: 109 - rating: 5 - ratings: 1 - author: "Samonide" - repo: "https://github.com/samonide/zenith-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" -colors: - bg: "#0F0F14" - fg: "#E8E8F0" - black: "#0F0F14" - red: "#FF99B8" - green: "#B8FFC8" - yellow: "#FFF0B8" - blue: "#99B8FF" - magenta: "#C8B8FF" - cyan: "#B8F0FF" - white: "#E8E8F0" - brightBlack: "#32323C" - brightRed: "#FF99B8" - brightGreen: "#C8FFD8" - brightYellow: "#FFF0B8" - brightBlue: "#88A8FF" - brightMagenta: "#B8A8F5" - brightCyan: "#A8E8F0" - brightWhite: "#E8E8F0" -meta: - mode: "dark" - accent: "purple" - hue: 285 - pair: "Zenith Dawn" - contrast: - fg: 92.9 - black: 0 - red: 63.5 - green: 96.8 - yellow: 97.6 - blue: 64.1 - magenta: 69.3 - cyan: 91.8 - white: 92.9 - brightBlack: 0 - brightRed: 63.5 - brightGreen: 99 - brightYellow: 97.6 - brightBlue: 56.2 - brightMagenta: 60.6 - brightCyan: 85.7 - brightWhite: 92.9 diff --git a/themes/zenith-neutral.yaml b/themes/zenith-neutral.yaml deleted file mode 100644 index 8162bb5b..00000000 --- a/themes/zenith-neutral.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zenith Neutral" -source: - marketplace_id: "britown.vscode-theme-zenith" - version: "0.0.23" - installs: 578 - rating: 5 - ratings: 1 - author: "Britown" - repo: "https://github.com/bkuzmanoski/vscode-theme-zenith" - url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-zenith" -colors: - bg: "#191919" - fg: "#BBBBBB" - black: "#191919" - red: "#DE6E7C" - green: "#64B280" - yellow: "#D68C67" - blue: "#61ABDA" - magenta: "#CF86C1" - cyan: "#65B8C1" - white: "#BBBBBB" - brightBlack: "#6E6E6E" - brightRed: "#FC8C9A" - brightGreen: "#86CC92" - brightYellow: "#F4AA85" - brightBlue: "#7FC9F8" - brightMagenta: "#ECA4DF" - brightCyan: "#83D6DF" - brightWhite: "#8E8E8E" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 64.5 - black: 0 - red: 42.2 - green: 50.9 - yellow: 48.6 - blue: 51.5 - magenta: 48.8 - cyan: 55.9 - white: 64.5 - brightBlack: 25.3 - brightRed: 57 - brightGreen: 65.3 - brightYellow: 64.7 - brightBlue: 67.9 - brightMagenta: 64.7 - brightCyan: 72.7 - brightWhite: 40.4 diff --git a/themes/zenith-ocean.yaml b/themes/zenith-ocean.yaml deleted file mode 100644 index a3322811..00000000 --- a/themes/zenith-ocean.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zenith Ocean" -source: - marketplace_id: "TheSamonide.zenith-theme" - version: "6.0.3" - installs: 109 - rating: 5 - ratings: 1 - author: "Samonide" - repo: "https://github.com/samonide/zenith-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" -colors: - bg: "#14191F" - fg: "#D8E8F0" - black: "#14191F" - red: "#A8B8D5" - green: "#A8D5C8" - yellow: "#D5E0C8" - blue: "#8FB8D8" - magenta: "#B8C8E8" - cyan: "#A8D8E8" - white: "#D8E8F0" - brightBlack: "#363C44" - brightRed: "#A8B8D5" - brightGreen: "#B5E0D5" - brightYellow: "#D5E0C8" - brightBlue: "#78A8C8" - brightMagenta: "#A8B8D8" - brightCyan: "#88C8D8" - brightWhite: "#D8E8F0" -meta: - mode: "dark" - accent: "indigo" - hue: 253 - pair: null - contrast: - fg: 90.1 - black: 0 - red: 62.4 - green: 74.3 - yellow: 84.3 - blue: 60.1 - magenta: 71.7 - cyan: 77.1 - white: 90.1 - brightBlack: 0 - brightRed: 62.4 - brightGreen: 81.2 - brightYellow: 84.3 - brightBlue: 50.9 - brightMagenta: 62.5 - brightCyan: 66.4 - brightWhite: 90.1 diff --git a/themes/zenith-ros.yaml b/themes/zenith-ros.yaml deleted file mode 100644 index bdaa0522..00000000 --- a/themes/zenith-ros.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zenith Rosé" -source: - marketplace_id: "TheSamonide.zenith-theme" - version: "6.0.3" - installs: 109 - rating: 5 - ratings: 1 - author: "Samonide" - repo: "https://github.com/samonide/zenith-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" -colors: - bg: "#1F1A1D" - fg: "#E8DFE8" - black: "#1F1A1D" - red: "#F5A5A8" - green: "#9CCFD8" - yellow: "#F6C177" - blue: "#9AC7DC" - magenta: "#C4A7E7" - cyan: "#9CCFD8" - white: "#E8DFE8" - brightBlack: "#4A3F43" - brightRed: "#F5A5A8" - brightGreen: "#A8DFE5" - brightYellow: "#F6C177" - brightBlue: "#9CADCE" - brightMagenta: "#B8A0D9" - brightCyan: "#9CCFD8" - brightWhite: "#E8DFE8" -meta: - mode: "dark" - accent: "yellow" - hue: null - pair: null - contrast: - fg: 87.4 - black: 0 - red: 63.9 - green: 70.8 - yellow: 73.1 - blue: 67.3 - magenta: 59.8 - cyan: 70.8 - white: 87.4 - brightBlack: 7.6 - brightRed: 63.9 - brightGreen: 79.8 - brightYellow: 73.1 - brightBlue: 56 - brightMagenta: 54.9 - brightCyan: 70.8 - brightWhite: 87.4 diff --git a/themes/zenith-zen.yaml b/themes/zenith-zen.yaml deleted file mode 100644 index 4c8ddacc..00000000 --- a/themes/zenith-zen.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zenith Zen" -source: - marketplace_id: "TheSamonide.zenith-theme" - version: "6.0.3" - installs: 109 - rating: 5 - ratings: 1 - author: "Samonide" - repo: "https://github.com/samonide/zenith-vsc" - url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" -colors: - bg: "#141414" - fg: "#E8E8E8" - black: "#141414" - red: "#C8B4B4" - green: "#B4C8BC" - yellow: "#CCC8B4" - blue: "#B8C0CC" - magenta: "#C4B8CC" - cyan: "#B8C8CC" - white: "#E8E8E8" - brightBlack: "#3A3A3A" - brightRed: "#C8B4B4" - brightGreen: "#B8CCC2" - brightYellow: "#CCC8B4" - brightBlue: "#B4BCC8" - brightMagenta: "#C0B4C8" - brightCyan: "#B4C8C4" - brightWhite: "#E8E8E8" -meta: - mode: "dark" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 92.2 - black: 0 - red: 63.6 - green: 69.7 - yellow: 72.3 - blue: 67.4 - magenta: 65.7 - cyan: 70.8 - white: 92.2 - brightBlack: 0 - brightRed: 63.6 - brightGreen: 72.1 - brightYellow: 72.3 - brightBlue: 65.1 - brightMagenta: 63.4 - brightCyan: 70 - brightWhite: 92.2 diff --git a/themes/zenith.yaml b/themes/zenith.yaml deleted file mode 100644 index b67e8baf..00000000 --- a/themes/zenith.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zenith" -source: - marketplace_id: "britown.vscode-theme-zenith" - version: "0.0.23" - installs: 578 - rating: 5 - ratings: 1 - author: "Britown" - repo: "https://github.com/bkuzmanoski/vscode-theme-zenith" - url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-zenith" -colors: - bg: "#161A1D" - fg: "#B4BBC2" - black: "#161A1D" - red: "#DE6E7C" - green: "#64B280" - yellow: "#D68C67" - blue: "#61ABDA" - magenta: "#CF86C1" - cyan: "#65B8C1" - white: "#B4BBC2" - brightBlack: "#637079" - brightRed: "#FC8C9A" - brightGreen: "#86CC92" - brightYellow: "#F4AA85" - brightBlue: "#7FC9F8" - brightMagenta: "#ECA4DF" - brightCyan: "#83D6DF" - brightWhite: "#839099" -meta: - mode: "dark" - accent: "red" - hue: null - pair: null - contrast: - fg: 63.9 - black: 0 - red: 42.1 - green: 50.8 - yellow: 48.6 - blue: 51.5 - magenta: 48.7 - cyan: 55.9 - white: 63.9 - brightBlack: 25.3 - brightRed: 57 - brightGreen: 65.2 - brightYellow: 64.6 - brightBlue: 67.8 - brightMagenta: 64.6 - brightCyan: 72.6 - brightWhite: 40.3 diff --git a/themes/zenitria-amoled.yaml b/themes/zenitria-amoled.yaml index bb94c420..098fa0e3 100644 --- a/themes/zenitria-amoled.yaml +++ b/themes/zenitria-amoled.yaml @@ -8,6 +8,7 @@ source: author: "Zenitria" repo: "https://github.com/Zenitria/zenitria-amoled-vsc" url: "https://marketplace.visualstudio.com/items?itemName=Zenitria.zenitria-amoled" + formats: null colors: bg: "#000000" fg: "#999999" diff --git a/themes/zenml.yaml b/themes/zenml.yaml index 4178e42b..05496023 100644 --- a/themes/zenml.yaml +++ b/themes/zenml.yaml @@ -8,6 +8,7 @@ source: author: "zenml-io" repo: "https://github.com/zenml-io/vscode-tutorial-extension" url: "https://marketplace.visualstudio.com/items?itemName=zenml-io.zenml-tutorial" + formats: null colors: bg: "#FFFFFF" fg: "#1A1A2E" diff --git a/themes/zero-s-solarized.yaml b/themes/zero-s-solarized.yaml index f5d9ce06..1537a5d0 100644 --- a/themes/zero-s-solarized.yaml +++ b/themes/zero-s-solarized.yaml @@ -8,6 +8,7 @@ source: author: "Javier de Marco" repo: "https://github.com/javierdemarco/zerossolarized" url: "https://marketplace.visualstudio.com/items?itemName=JavierdeMarco.zerossolarized" + formats: null colors: bg: "#073642" fg: "#EEE8D5" diff --git a/themes/zero-wip.yaml b/themes/zero-wip.yaml deleted file mode 100644 index 3e49768d..00000000 --- a/themes/zero-wip.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zero [WIP]" -source: - marketplace_id: "Valkyrihane.zero" - version: "0.0.1" - installs: 1481 - rating: 5 - ratings: 1 - author: "Valkyrihane" - repo: "https://github.com/Valkyrihane/zero" - url: "https://marketplace.visualstudio.com/items?itemName=Valkyrihane.zero" -colors: - bg: "#000000" - fg: "#AAAAAA" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 56.2 - black: 0 - red: 27.7 - green: 54 - yellow: 86.6 - blue: 28.4 - magenta: 30.8 - cyan: 48.6 - white: 91 - brightBlack: 23 - brightRed: 39.6 - brightGreen: 64.5 - brightYellow: 96.6 - brightBlue: 41 - brightMagenta: 46.4 - brightCyan: 56.4 - brightWhite: 91 diff --git a/themes/zeus-turquoise.yaml b/themes/zeus-turquoise.yaml deleted file mode 100644 index 85560a96..00000000 --- a/themes/zeus-turquoise.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zeus Turquoise" -source: - marketplace_id: "UllasKunder.zeus-vscode-theme" - version: "0.0.1" - installs: 696 - rating: 4 - ratings: 1 - author: "Ullas Kunder" - repo: "https://github.com/ullaskunder3/zeus-theme" - url: "https://marketplace.visualstudio.com/items?itemName=UllasKunder.zeus-vscode-theme" -colors: - bg: "#0D1318" - fg: "#C9D1D9" - black: "#484F58" - red: "#EC8E2C" - green: "#58A6FF" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FDAC54" - brightGreen: "#79C0FF" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 244 - pair: null - contrast: - fg: 77.4 - black: 13 - red: 53.1 - green: 52.1 - yellow: 52.1 - blue: 52.1 - magenta: 52.1 - cyan: 61.3 - white: 63.9 - brightBlack: 29.1 - brightRed: 66.7 - brightGreen: 64.6 - brightYellow: 64.6 - brightBlue: 64.6 - brightMagenta: 64.5 - brightCyan: 69.8 - brightWhite: 107.3 diff --git a/themes/zeus-yelo.yaml b/themes/zeus-yelo.yaml deleted file mode 100644 index 2ff7510a..00000000 --- a/themes/zeus-yelo.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zeus Yelo" -source: - marketplace_id: "UllasKunder.zeus-vscode-theme" - version: "0.0.1" - installs: 696 - rating: 4 - ratings: 1 - author: "Ullas Kunder" - repo: "https://github.com/ullaskunder3/zeus-theme" - url: "https://marketplace.visualstudio.com/items?itemName=UllasKunder.zeus-vscode-theme" -colors: - bg: "#171724" - fg: "#C9D1D9" - black: "#484F58" - red: "#EC8E2C" - green: "#58A6FF" - yellow: "#D29922" - blue: "#58A6FF" - magenta: "#BC8CFF" - cyan: "#39C5CF" - white: "#B1BAC4" - brightBlack: "#6E7681" - brightRed: "#FDAC54" - brightGreen: "#79C0FF" - brightYellow: "#E3B341" - brightBlue: "#79C0FF" - brightMagenta: "#D2A8FF" - brightCyan: "#56D4DD" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "magenta" - hue: 284 - pair: null - contrast: - fg: 76.9 - black: 12.4 - red: 52.5 - green: 51.6 - yellow: 51.6 - blue: 51.6 - magenta: 51.6 - cyan: 60.7 - white: 63.4 - brightBlack: 28.6 - brightRed: 66.1 - brightGreen: 64.1 - brightYellow: 64.1 - brightBlue: 64.1 - brightMagenta: 64 - brightCyan: 69.3 - brightWhite: 106.7 diff --git a/themes/zhangpengtao-black.yaml b/themes/zhangpengtao-black.yaml index 5b4d0e5f..be8e7ab0 100644 --- a/themes/zhangpengtao-black.yaml +++ b/themes/zhangpengtao-black.yaml @@ -3,9 +3,12 @@ source: marketplace_id: "ZhangPengtao.zhangpengtao-black" version: "0.0.3" installs: 450 + rating: 5 + ratings: 2 author: "ZhangPengtao" repo: "https://github.com/zptzpt/zhangpengtao-black" url: "https://marketplace.visualstudio.com/items?itemName=ZhangPengtao.zhangpengtao-black" + formats: null colors: bg: "#000000" fg: "#EEFFFF" diff --git a/themes/zhongli.yaml b/themes/zhongli.yaml index a96db5c1..4b360703 100644 --- a/themes/zhongli.yaml +++ b/themes/zhongli.yaml @@ -8,6 +8,7 @@ source: author: "jeooo`" repo: "https://github.com/jeoooo/zhongli-theme" url: "https://marketplace.visualstudio.com/items?itemName=jeooo.lapis-dei" + formats: null colors: bg: "#3B2F2E" fg: "#D4D4D4" diff --git a/themes/zhxo-lt.yaml b/themes/zhxo-lt.yaml deleted file mode 100644 index bc4bc0c3..00000000 --- a/themes/zhxo-lt.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "zhxo'lt" -source: - marketplace_id: "shwuy.zhxo-themes" - version: "2.0.1" - installs: 1481 - rating: 5 - ratings: 4 - author: "shwuy" - repo: "https://github.com/sxhk0/.theme" - url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" -colors: - bg: "#FFF6F0" - fg: "#777790" - black: "#131313" - red: "#C43D3D" - green: "#00BC6D" - yellow: "#CF9E0D" - blue: "#1F5FA5" - magenta: "#A313D7" - cyan: "#1FA1C0" - white: "#585858" - brightBlack: "#303030" - brightRed: "#EA5959" - brightGreen: "#29D18A" - brightYellow: "#E6BA38" - brightBlue: "#4181C7" - brightMagenta: "#C421FF" - brightCyan: "#34D0F5" - brightWhite: "#949494" -meta: - mode: "light" - accent: "magenta" - hue: null - pair: null - contrast: - fg: 65.7 - black: 100.7 - red: 69.9 - green: 43.8 - yellow: 43.6 - blue: 77.3 - magenta: 72.5 - cyan: 52.2 - white: 80.2 - brightBlack: 95.1 - brightRed: 56.8 - brightGreen: 33.3 - brightYellow: 29.8 - brightBlue: 63 - brightMagenta: 62.5 - brightCyan: 29.3 - brightWhite: 52.7 diff --git a/themes/zhxo-red.yaml b/themes/zhxo-red.yaml deleted file mode 100644 index b4c32a02..00000000 --- a/themes/zhxo-red.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "zhxo'red" -source: - marketplace_id: "shwuy.zhxo-themes" - version: "2.0.1" - installs: 1481 - rating: 5 - ratings: 4 - author: "shwuy" - repo: "https://github.com/sxhk0/.theme" - url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" -colors: - bg: "#1A1A1D" - fg: "#ABABAB" - black: "#3B3B3B" - red: "#E03C3C" - green: "#22CD8B" - yellow: "#EEC051" - blue: "#668BE2" - magenta: "#A34BB0" - cyan: "#10CCD5" - white: "#CBCBCB" - brightBlack: "#66676F" - brightRed: "#F08359" - brightGreen: "#3FE6A3" - brightYellow: "#FBFB7B" - brightBlue: "#81A6FD" - brightMagenta: "#C970D6" - brightCyan: "#4DEAEA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 55.4 - black: 0 - red: 31.9 - green: 61.2 - yellow: 70.9 - blue: 40.1 - magenta: 26.2 - cyan: 63.5 - white: 73.7 - brightBlack: 22.3 - brightRed: 50.3 - brightGreen: 74.7 - brightYellow: 99.7 - brightBlue: 53.8 - brightMagenta: 42.8 - brightCyan: 80 - brightWhite: 106.5 diff --git a/themes/zhxo-st.yaml b/themes/zhxo-st.yaml deleted file mode 100644 index 9f03e4e5..00000000 --- a/themes/zhxo-st.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "zhxo'st" -source: - marketplace_id: "shwuy.zhxo-themes" - version: "2.0.1" - installs: 1481 - rating: 5 - ratings: 4 - author: "shwuy" - repo: "https://github.com/sxhk0/.theme" - url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" -colors: - bg: "#1B1A1A" - fg: "#B8BCD9" - black: "#3B3B3B" - red: "#E03C3C" - green: "#22CD8B" - yellow: "#EEC051" - blue: "#668BE2" - magenta: "#A34BB0" - cyan: "#10CCD5" - white: "#CBCBCB" - brightBlack: "#66676F" - brightRed: "#F08359" - brightGreen: "#3FE6A3" - brightYellow: "#FBFB7B" - brightBlue: "#81A6FD" - brightMagenta: "#C970D6" - brightCyan: "#4DEAEA" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 65.8 - black: 0 - red: 31.9 - green: 61.2 - yellow: 70.9 - blue: 40.1 - magenta: 26.2 - cyan: 63.5 - white: 73.7 - brightBlack: 22.3 - brightRed: 50.3 - brightGreen: 74.7 - brightYellow: 99.7 - brightBlue: 53.8 - brightMagenta: 42.8 - brightCyan: 80 - brightWhite: 106.5 diff --git a/themes/zhxo-yll.yaml b/themes/zhxo-yll.yaml deleted file mode 100644 index cb494f97..00000000 --- a/themes/zhxo-yll.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "zhxo'yll" -source: - marketplace_id: "shwuy.zhxo-themes" - version: "2.0.1" - installs: 1481 - rating: 5 - ratings: 4 - author: "shwuy" - repo: "https://github.com/sxhk0/.theme" - url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" -colors: - bg: "#131313" - fg: "#BCBCBC" - black: "#000000" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 65.7 - black: 0 - red: 27.1 - green: 53.4 - yellow: 86 - blue: 27.8 - magenta: 30.1 - cyan: 47.9 - white: 90.4 - brightBlack: 22.4 - brightRed: 38.9 - brightGreen: 63.9 - brightYellow: 96 - brightBlue: 40.4 - brightMagenta: 45.7 - brightCyan: 55.8 - brightWhite: 90.4 diff --git a/themes/zinc.yaml b/themes/zinc.yaml index aec249c5..32b3f881 100644 --- a/themes/zinc.yaml +++ b/themes/zinc.yaml @@ -8,6 +8,7 @@ source: author: "MadsSR" repo: "https://github.com/MadsSR/zinc-theme" url: "https://marketplace.visualstudio.com/items?itemName=MadsSR.zinc-theme" + formats: null colors: bg: "#19191F" fg: "#CCCCCC" diff --git a/themes/zokugun-obsidium.yaml b/themes/zokugun-obsidium.yaml deleted file mode 100644 index b6a08149..00000000 --- a/themes/zokugun-obsidium.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zokugun Obsidium" -source: - marketplace_id: "zokugun.zokugun-theme" - version: "0.6.2" - installs: 1909 - rating: 0 - ratings: 0 - author: "zokugun" - repo: "https://github.com/zokugun/theme-zokugun-vscode" - url: "https://marketplace.visualstudio.com/items?itemName=zokugun.zokugun-theme" -colors: - bg: "#000000" - fg: "#DADADA" - black: "#000000" - red: "#B33320" - green: "#44AC2D" - yellow: "#999900" - blue: "#4C41DB" - magenta: "#CF48CF" - cyan: "#00A6B2" - white: "#BFBFBF" - brightBlack: "#828282" - brightRed: "#E50000" - brightGreen: "#00D900" - brightYellow: "#E5E500" - brightBlue: "#0000FF" - brightMagenta: "#E500E5" - brightCyan: "#00E5E5" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "purple" - hue: null - pair: null - contrast: - fg: 84.2 - black: 0 - red: 22.3 - green: 46.6 - yellow: 44.8 - blue: 19.3 - magenta: 36.8 - cyan: 46.3 - white: 68 - brightBlack: 35.7 - brightRed: 31.1 - brightGreen: 66.7 - brightYellow: 86.6 - brightBlue: 16.2 - brightMagenta: 38.5 - brightCyan: 77.6 - brightWhite: 91 diff --git a/themes/zora-mirage-green.yaml b/themes/zora-mirage-green.yaml index 203b98f1..69c9c71b 100644 --- a/themes/zora-mirage-green.yaml +++ b/themes/zora-mirage-green.yaml @@ -8,6 +8,7 @@ source: author: "haris" repo: "https://github.com/Elhary/Zora" url: "https://marketplace.visualstudio.com/items?itemName=haris.zoradark" + formats: null colors: bg: "#1D2B2C" fg: "#D4D4D4" diff --git a/themes/zora-mirage.yaml b/themes/zora-mirage.yaml index 760cf5a3..d4e7a64d 100644 --- a/themes/zora-mirage.yaml +++ b/themes/zora-mirage.yaml @@ -8,6 +8,7 @@ source: author: "haris" repo: "https://github.com/Elhary/Zora" url: "https://marketplace.visualstudio.com/items?itemName=haris.zoradark" + formats: null colors: bg: "#1A1A1A" fg: "#D4D4D4" diff --git a/themes/zoradark.yaml b/themes/zoradark.yaml index 39049096..d746ef85 100644 --- a/themes/zoradark.yaml +++ b/themes/zoradark.yaml @@ -8,6 +8,7 @@ source: author: "haris" repo: "https://github.com/Elhary/Zora" url: "https://marketplace.visualstudio.com/items?itemName=haris.zoradark" + formats: null colors: bg: "#211C2A" fg: "#D4D4D4" diff --git a/themes/zordon-colors.yaml b/themes/zordon-colors.yaml index 819ac380..aa9b1f44 100644 --- a/themes/zordon-colors.yaml +++ b/themes/zordon-colors.yaml @@ -8,6 +8,7 @@ source: author: "zordon" repo: "https://github.com/chrisAndriotti/Zordon-vscode-theme" url: "https://marketplace.visualstudio.com/items?itemName=zordon.zordon-color-theme" + formats: null colors: bg: "#1F1F1F" fg: "#DCD9D9" diff --git a/themes/zoren-breeze.yaml b/themes/zoren-breeze.yaml deleted file mode 100644 index 2f88c2b3..00000000 --- a/themes/zoren-breeze.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zoren Breeze" -source: - marketplace_id: "viniciuslazzari.zoren" - version: "1.3.1" - installs: 83 - rating: 5 - ratings: 1 - author: "viniciuslazzari" - repo: "https://github.com/viniciuslaz/zoren-theme" - url: "https://marketplace.visualstudio.com/items?itemName=viniciuslazzari.zoren" -colors: - bg: "#1E2228" - fg: "#D4D7DD" - black: "#1E2228" - red: "#E07856" - green: "#6AB06A" - yellow: "#E0B95A" - blue: "#4D9DE0" - magenta: "#B884D6" - cyan: "#5AC5C5" - white: "#D4D7DD" - brightBlack: "#5A6270" - brightRed: "#F09070" - brightGreen: "#84C884" - brightYellow: "#F5D078" - brightBlue: "#6EB4F7" - brightMagenta: "#D0A0F0" - brightCyan: "#78DADA" - brightWhite: "#E8EAED" -meta: - mode: "dark" - accent: "orange" - hue: 258 - pair: null - contrast: - fg: 79.8 - black: 0 - red: 43.1 - green: 48.7 - yellow: 65 - blue: 44.2 - magenta: 44.6 - cyan: 60.2 - white: 79.8 - brightBlack: 18.8 - brightRed: 53.6 - brightGreen: 61.7 - brightYellow: 78.3 - brightBlue: 56.6 - brightMagenta: 58.7 - brightCyan: 72.4 - brightWhite: 91.7 diff --git a/themes/ztheme.yaml b/themes/ztheme.yaml index 8a7a9bea..059dffd6 100644 --- a/themes/ztheme.yaml +++ b/themes/ztheme.yaml @@ -8,6 +8,7 @@ source: author: "Carlos Colmenares Álvarez" repo: "https://github.com/cycscarlos/myTheme-VSC" url: "https://marketplace.visualstudio.com/items?itemName=cycscarlos.my-own-theme" + formats: null colors: bg: "#1C3549" fg: "#FFFFFF" diff --git a/themes/ztok.yaml b/themes/ztok.yaml index 574c6cb7..6f87d2ca 100644 --- a/themes/ztok.yaml +++ b/themes/ztok.yaml @@ -8,6 +8,7 @@ source: author: "KrlosDev" repo: "https://github.com/KrlosDev/ztok" url: "https://marketplace.visualstudio.com/items?itemName=KrlosDev.ztok" + formats: null colors: bg: "#222222" fg: "#ABB2BF" diff --git a/themes/zunda-dark.yaml b/themes/zunda-dark.yaml deleted file mode 100644 index 4b80c811..00000000 --- a/themes/zunda-dark.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "Zunda dark" -source: - marketplace_id: "Matcha.zunda" - version: "0.0.9" - installs: 385 - rating: 0 - ratings: 0 - author: "Matcha" - repo: "https://github.com/MatchaScript/zunda" - url: "https://marketplace.visualstudio.com/items?itemName=Matcha.zunda" -colors: - bg: "#000000" - fg: "#DFDEDF" - black: "#000000" - red: "#C72E2E" - green: "#158844" - yellow: "#FF9500" - blue: "#2A6DD7" - magenta: "#5E5CE7" - cyan: "#2480B5" - white: "#DFDEDF" - brightBlack: "#EBEBF5" - brightRed: "#FF375F" - brightGreen: "#30D158" - brightYellow: "#FFE620" - brightBlue: "#2094FA" - brightMagenta: "#BF5AF2" - brightCyan: "#00E4E3" - brightWhite: "#FFFFFF" -meta: - mode: "dark" - accent: "orange" - hue: null - pair: null - contrast: - fg: 86.8 - black: 0 - red: 26.1 - green: 30.7 - yellow: 59.4 - blue: 28.1 - magenta: 27.3 - cyan: 31.9 - white: 86.8 - brightBlack: 95.3 - brightRed: 40.6 - brightGreen: 63.7 - brightYellow: 90.9 - brightBlue: 43.8 - brightMagenta: 39.6 - brightCyan: 77 - brightWhite: 107.9 diff --git a/themes/zux-purple-minimal.yaml b/themes/zux-purple-minimal.yaml deleted file mode 100644 index 1fc5f1b0..00000000 --- a/themes/zux-purple-minimal.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: "zux purple - minimal" -source: - marketplace_id: "giovanicavila.zux" - version: "0.0.6" - installs: 28 - rating: 0 - ratings: 0 - author: "Giovani Avila" - repo: null - url: "https://marketplace.visualstudio.com/items?itemName=giovanicavila.zux" -colors: - bg: "#151719" - fg: "#E1E1E0" - black: "#474747" - red: "#CD3131" - green: "#0DBC79" - yellow: "#E5E510" - blue: "#2472C8" - magenta: "#BC3FBC" - cyan: "#11A8CD" - white: "#E5E5E5" - brightBlack: "#666666" - brightRed: "#F14C4C" - brightGreen: "#23D18B" - brightYellow: "#F5F543" - brightBlue: "#3B8EEA" - brightMagenta: "#D670D6" - brightCyan: "#29B8DB" - brightWhite: "#E5E5E5" -meta: - mode: "dark" - accent: "pink" - hue: null - pair: null - contrast: - fg: 87.5 - black: 9.9 - red: 26.7 - green: 53 - yellow: 85.6 - blue: 27.4 - magenta: 29.8 - cyan: 47.6 - white: 90 - brightBlack: 22.1 - brightRed: 38.6 - brightGreen: 63.6 - brightYellow: 95.7 - brightBlue: 40 - brightMagenta: 45.4 - brightCyan: 55.4 - brightWhite: 90 diff --git a/themes/zwel.yaml b/themes/zwel.yaml index a33c679e..85ceca85 100644 --- a/themes/zwel.yaml +++ b/themes/zwel.yaml @@ -8,6 +8,7 @@ source: author: "ZweL" repo: "https://github.com/zwelhtetyan/ZweL-theme" url: "https://marketplace.visualstudio.com/items?itemName=ZweL.zwel" + formats: null colors: bg: "#1D2423" fg: "#B4B4B4" diff --git a/themes/zxxn.yaml b/themes/zxxn.yaml index c8b991f2..d3411df8 100644 --- a/themes/zxxn.yaml +++ b/themes/zxxn.yaml @@ -8,6 +8,7 @@ source: author: "aki4003" repo: null url: "https://marketplace.visualstudio.com/items?itemName=aki4003.zxxn-theme" + formats: null colors: bg: "#0E141F" fg: "#8AB6D9" diff --git a/themes/zygomatic-blue.yaml b/themes/zygomatic-blue.yaml index fef0c32e..d46bde65 100644 --- a/themes/zygomatic-blue.yaml +++ b/themes/zygomatic-blue.yaml @@ -8,6 +8,7 @@ source: author: "Jugal" repo: "https://github.com/jugal13/zygomatic-themes" url: "https://marketplace.visualstudio.com/items?itemName=jugal13.zygoma" + formats: null colors: bg: "#212121" fg: "#D4D4D4" diff --git a/themes/zyrotec.yaml b/themes/zyrotec.yaml index 6bf326cf..70742235 100644 --- a/themes/zyrotec.yaml +++ b/themes/zyrotec.yaml @@ -8,6 +8,7 @@ source: author: "zyrotec" repo: null url: "https://marketplace.visualstudio.com/items?itemName=zyrotec.zyrotec-theme" + formats: null colors: bg: "#171717" fg: "#FFFFFF" diff --git a/themes/zzc-dark.yaml b/themes/zzc-dark.yaml index 2c736054..359c7314 100644 --- a/themes/zzc-dark.yaml +++ b/themes/zzc-dark.yaml @@ -8,6 +8,7 @@ source: author: "zicong-zhang1996" repo: null url: "https://marketplace.visualstudio.com/items?itemName=zicong-zhang1996.theme-zzc-diy" + formats: null colors: bg: "#282C34" fg: "#000000" diff --git a/themes/zzc-light.yaml b/themes/zzc-light.yaml index 7db693fb..c3593362 100644 --- a/themes/zzc-light.yaml +++ b/themes/zzc-light.yaml @@ -8,6 +8,7 @@ source: author: "zicong-zhang1996" repo: null url: "https://marketplace.visualstudio.com/items?itemName=zicong-zhang1996.theme-zzc-diy" + formats: null colors: bg: "#FBE7D0" fg: "#000000" diff --git a/themes/zzhtheme-dark.yaml b/themes/zzhtheme-dark.yaml index 5362ec9d..4b98db9b 100644 --- a/themes/zzhtheme-dark.yaml +++ b/themes/zzhtheme-dark.yaml @@ -8,6 +8,7 @@ source: author: "langlang" repo: "https://github.com/zhaogongchengsi/zzh-vs-theme" url: "https://marketplace.visualstudio.com/items?itemName=langlang.zzh-theme" + formats: null colors: bg: "#191919" fg: "#F4F9F9" diff --git a/themes/zzhtheme-light.yaml b/themes/zzhtheme-light.yaml index 54082d31..9f49fa09 100644 --- a/themes/zzhtheme-light.yaml +++ b/themes/zzhtheme-light.yaml @@ -8,6 +8,7 @@ source: author: "langlang" repo: "https://github.com/zhaogongchengsi/zzh-vs-theme" url: "https://marketplace.visualstudio.com/items?itemName=langlang.zzh-theme" + formats: null colors: bg: "#F9F9F9" fg: "#333333" From 5cc2a7e8bf1e43f304609296e6c5469d91c5a02a Mon Sep 17 00:00:00 2001 From: Ismael Canal Date: Thu, 19 Mar 2026 20:47:01 +0100 Subject: [PATCH 10/21] Metadata themes --- scripts/detect-theme-formats.ts | 383 ++++++++++++++++++ themes/10004ok.yaml | 53 +++ themes/1dark-raincoat.yaml | 53 +++ themes/1mm-themes--1mm-dracula.yaml | 53 +++ ...ay-night-themes--365-day-october-dark.yaml | 53 +++ ...65-day-night-themes--april-dark-theme.yaml | 53 +++ ...5-day-night-themes--august-dark-theme.yaml | 53 +++ ...emes--high-contrast-april-light-theme.yaml | 53 +++ ...ght-themes--high-contrast-april-theme.yaml | 53 +++ ...mes--high-contrast-august-light-theme.yaml | 53 +++ ...es--high-contrast-february-dark-theme.yaml | 53 +++ ...trast-february-light-theme-accessible.yaml | 53 +++ ...gh-contrast-february-theme-accessible.yaml | 53 +++ ...hemes--high-contrast-july-light-theme.yaml | 53 +++ ...hemes--high-contrast-june-light-theme.yaml | 53 +++ ...-contrast-march-dark-theme-accessible.yaml | 53 +++ ...hemes--high-contrast-march-dark-theme.yaml | 53 +++ ...contrast-march-light-theme-accessible.yaml | 53 +++ ...-high-contrast-march-theme-accessible.yaml | 53 +++ ...themes--high-contrast-may-light-theme.yaml | 53 +++ ...--high-contrast-september-light-theme.yaml | 53 +++ ...-themes--july-summer-vibes-dark-theme.yaml | 53 +++ ...ay-night-themes--september-dark-theme.yaml | 53 +++ ...themes--th-me-dark-aout-contraste-lev.yaml | 53 +++ ...emes--th-me-dark-avril-vert-printemps.yaml | 53 +++ ...-themes--th-me-dark-janvier-bleu-fonc.yaml | 53 +++ ...mes--th-me-dark-juillet-contraste-lev.yaml | 53 +++ ...themes--th-me-dark-juin-high-contrast.yaml | 53 +++ ...es--th-me-high-contrast-janvier-r-vis.yaml | 53 +++ ...-night-themes--th-me-sombre-d-automne.yaml | 53 +++ themes/42nd--42nd.yaml | 53 +++ themes/8-bit--8-bit-dark.yaml | 53 +++ themes/8-bit--8-bit-light.yaml | 53 +++ themes/8-bit-high-contrast.yaml | 53 +++ themes/8008.yaml | 53 +++ themes/8ss-min-dark--untitled.yaml | 53 +++ themes/8x8theme.yaml | 53 +++ ...heme-pack--a-github-dark-dimmed-1-red.yaml | 53 +++ ...e-pack--a-github-dark-dimmed-2-orange.yaml | 53 +++ ...me-pack--a-github-dark-dimmed-3-green.yaml | 53 +++ ...eme-pack--a-github-dark-dimmed-4-blue.yaml | 53 +++ ...e-pack--a-github-dark-dimmed-5-purple.yaml | 53 +++ ...heme-pack--a-github-dark-dimmed-brown.yaml | 53 +++ ...heme-pack--a-github-dark-dimmed-muted.yaml | 53 +++ ...me-pack--a-github-dark-dimmed-vampire.yaml | 53 +++ ...ck--a-github-dark-high-contrast-1-red.yaml | 53 +++ ...-a-github-dark-high-contrast-2-orange.yaml | 53 +++ ...--a-github-dark-high-contrast-3-green.yaml | 53 +++ ...k--a-github-dark-high-contrast-4-blue.yaml | 53 +++ ...-a-github-dark-high-contrast-5-purple.yaml | 53 +++ ...ithub-theme-pack--a-github-dark-muted.yaml | 53 +++ ...hub-theme-pack--a-github-dark-vampire.yaml | 53 +++ ...thub-theme-pack--a-github-light-1-red.yaml | 53 +++ ...b-theme-pack--a-github-light-2-orange.yaml | 53 +++ ...ub-theme-pack--a-github-light-3-green.yaml | 53 +++ ...hub-theme-pack--a-github-light-4-blue.yaml | 53 +++ ...b-theme-pack--a-github-light-5-purple.yaml | 53 +++ themes/a-cup-of-coffee--light-red.yaml | 53 +++ ...xy-far-far-away-theme--rogue-squadron.yaml | 53 +++ ...galaxy-far-far-away-theme--the-empire.yaml | 53 +++ themes/a-m-themes.yaml | 53 +++ themes/a-pastel-fever-dream.yaml | 53 +++ themes/a24--minimal.yaml | 53 +++ themes/abolkog-theme--abolkog-dark.yaml | 53 +++ themes/abolkog-theme--abolkog-light.yaml | 53 +++ themes/abyski.yaml | 53 +++ themes/abyssal--abyssal-anime.yaml | 53 +++ themes/abyssal--abyssal-black.yaml | 53 +++ themes/abyssal--abyssal-catppuccin.yaml | 53 +++ themes/abyssal--abyssal-dark.yaml | 53 +++ themes/abyssal--abyssal-dracula.yaml | 53 +++ themes/abyssal--abyssal-e-ink.yaml | 53 +++ themes/abyssal--abyssal-everforest.yaml | 53 +++ themes/abyssal--abyssal-gruvbox.yaml | 53 +++ themes/abyssal--abyssal-hacker.yaml | 53 +++ themes/abyssal--abyssal-latte.yaml | 53 +++ themes/abyssal--abyssal-nord.yaml | 53 +++ themes/abyssal--abyssal-tokyo-night.yaml | 53 +++ themes/ac-theme.yaml | 53 +++ themes/acme-go-playground-themes--acme.yaml | 53 +++ ...e-go-playground-themes--go-playground.yaml | 53 +++ .../acme-go-playground-themes--go-source.yaml | 53 +++ themes/acs-motion-control.yaml | 53 +++ themes/actually-minimalistic.yaml | 53 +++ themes/adam.yaml | 53 +++ ...dey-coder-theme--adey-coder-deep-dark.yaml | 53 +++ themes/adey-coder-theme--adey-coder.yaml | 53 +++ themes/adonis-theme--adonis.yaml | 53 +++ themes/adr-theme.yaml | 53 +++ themes/advpara.yaml | 53 +++ themes/adwaita-base16.yaml | 53 +++ ...ime-coding-experience--aether-emerald.yaml | 53 +++ themes/aether-themes--aether-coffee-dark.yaml | 53 +++ themes/aether-themes--aether-coffee.yaml | 53 +++ themes/aether-themes--aether-dark-space.yaml | 53 +++ themes/aether-themes--aether-dark.yaml | 53 +++ themes/aether-themes--aether-emerald.yaml | 53 +++ themes/aether-themes--aether-light.yaml | 53 +++ themes/afternoon-delight.yaml | 53 +++ themes/agathist-themes.yaml | 53 +++ themes/aim-themes--hack-and-lima.yaml | 53 +++ themes/aim-themes--kai-sa-white-fork.yaml | 53 +++ themes/aim-themes--kaisa-dark.yaml | 53 +++ themes/akari--akari-dawn.yaml | 57 +++ themes/akari--akari-night.yaml | 57 +++ themes/akashi-dark.yaml | 53 +++ themes/akumanomi-theme--akumanomi-theme.yaml | 53 +++ themes/alabaster-dark-theme.yaml | 53 +++ ...ist-s-orchid--alchemist-s-orchid-dark.yaml | 54 +++ ...st-s-orchid--alchemist-s-orchid-light.yaml | 54 +++ ...st-s-orchid--alchemist-s-orchid-sepia.yaml | 54 +++ themes/alchemist.yaml | 53 +++ themes/alien-blood--alien-blood.yaml | 53 +++ themes/all-nighter-italic.yaml | 53 +++ themes/alma-sakura.yaml | 53 +++ ...for-vscode--catppuccin-monokai-frappe.yaml | 53 +++ ...-for-vscode--catppuccin-monokai-latte.yaml | 53 +++ ...-vscode--catppuccin-monokai-macchiato.yaml | 53 +++ ...-for-vscode--catppuccin-monokai-mocha.yaml | 53 +++ themes/alternight--alternight.yaml | 53 +++ themes/alucard--alucard-sotn.yaml | 53 +++ themes/amaral-pink.yaml | 53 +++ ...mes-pack-amethyst-kiss-dark-kiss-mode.yaml | 53 +++ ...es-pack-amethyst-kiss-light-kiss-mode.yaml | 53 +++ ...amoled-black-theme--amoled-dark-theme.yaml | 53 +++ themes/amoled-darcula-theme.yaml | 53 +++ themes/amp-theme--amp-dark.yaml | 53 +++ themes/amp-theme--amp-light.yaml | 53 +++ themes/an-old-hope-theme.yaml | 53 +++ themes/andromeda-dark-theme.yaml | 53 +++ themes/andromeda-night--dusk.yaml | 53 +++ ...ndromeda-night--tokyo-night-equalizer.yaml | 53 +++ themes/andy-blue.yaml | 53 +++ themes/angular-theme.yaml | 53 +++ ...-attack-on-titan-eren-s-determination.yaml | 53 +++ themes/anime-theme-collection.yaml | 53 +++ ...heme-my-hero-academia-deku-plus-ultra.yaml | 53 +++ themes/anime-theme-naruto-hokage-orange.yaml | 53 +++ .../anime-theme-one-piece-straw-hat-red.yaml | 53 +++ themes/ano-theme.yaml | 53 +++ themes/another-vscode-zenburn-theme.yaml | 53 +++ themes/anquyx--anquyx.yaml | 53 +++ ...hropic-inspired-theme--anthropic-dark.yaml | 53 +++ ...ropic-inspired-theme--anthropic-light.yaml | 53 +++ themes/anthropic-theme.yaml | 53 +++ .../anti-glare-theme--anti-glare-moonlit.yaml | 53 +++ .../anti-glare-theme--anti-glare-nebula.yaml | 53 +++ ...anti-glare-theme--anti-glare-official.yaml | 53 +++ themes/antzed--anthropic-dark.yaml | 53 +++ themes/antzed--anthropic-light.yaml | 53 +++ themes/anya.yaml | 53 +++ themes/anysphere-dark-greener.yaml | 53 +++ themes/apathy-theme--apathy-experimental.yaml | 54 +++ themes/apathy-theme--apathy.yaml | 54 +++ themes/apollo-theme--apollo-dark.yaml | 53 +++ themes/apollo-theme--apollo-light.yaml | 53 +++ themes/aqua-main.yaml | 53 +++ themes/aqua-material.yaml | 53 +++ themes/aquatic-blue.yaml | 53 +++ themes/arasaka-inferno-theme--blue-neon.yaml | 53 +++ themes/arasaka-inferno-theme--pink-neon.yaml | 53 +++ themes/arasaka-inferno-theme--red-neon.yaml | 53 +++ themes/arcadia-theme--arcadia-theme-dark.yaml | 53 +++ .../arcadia-theme--arcadia-theme-storm.yaml | 53 +++ themes/arcaea-theme--arcaea.yaml | 53 +++ themes/archangel--archangel-dusk.yaml | 53 +++ themes/archangel--archangel.yaml | 53 +++ themes/arctic-night-theme.yaml | 53 +++ themes/arctis--arctis-dark.yaml | 53 +++ themes/arctis--arctis-high-contrast.yaml | 53 +++ themes/arctis--arctis-light.yaml | 53 +++ themes/arctis--arctis-moon.yaml | 53 +++ themes/arctis--arctis-night.yaml | 53 +++ themes/arctis--arctis.yaml | 53 +++ themes/ariake-sands--ariake-sands.yaml | 53 +++ themes/ariake-sands--ariake-sun.yaml | 53 +++ themes/armada-theme.yaml | 53 +++ themes/arunim-s-theme.yaml | 53 +++ themes/asaka-theme.yaml | 53 +++ themes/ash-ember-warm-dark-theme.yaml | 53 +++ themes/ashao-theme.yaml | 53 +++ themes/asp-editor.yaml | 53 +++ ...ellij-theme--aspiesoft-intellij-theme.yaml | 53 +++ themes/aster.yaml | 53 +++ themes/astra-theme.yaml | 53 +++ themes/astro-by-mike--astro-dark.yaml | 53 +++ themes/astro-by-mike--astro-light.yaml | 53 +++ themes/astro-kanagawa--astro-kanagawa.yaml | 53 +++ themes/asuka-theme--asuka-theme-light.yaml | 53 +++ themes/asuka-theme--asuka-theme.yaml | 53 +++ themes/atom-one-cyan--atom-one-dark-cyan.yaml | 53 +++ .../atom-one-cyan--atom-one-light-cyan.yaml | 53 +++ themes/atom-theme.yaml | 53 +++ themes/august-themes--august-ariake-dark.yaml | 53 +++ themes/august-themes--august-arstotzka.yaml | 53 +++ ...-august-beardedtheme-oceanic-reversed.yaml | 53 +++ ...ust-beardedtheme-surprising-blueberry.yaml | 53 +++ themes/august-themes--august-catppuccin.yaml | 53 +++ themes/august-themes--august-city-lights.yaml | 53 +++ themes/august-themes--august-drawbridge.yaml | 53 +++ .../august-themes--august-material-ocean.yaml | 53 +++ ...ust-themes--august-material-palenight.yaml | 53 +++ themes/august-themes--august-night-owl.yaml | 53 +++ themes/august-themes--august-nord.yaml | 53 +++ themes/august-themes--august-radical-2.yaml | 53 +++ themes/august-themes--august-radical.yaml | 53 +++ ...august-themes-august-arstotzka-darker.yaml | 53 +++ ...ugust-themes-august-arstotzka-lighter.yaml | 53 +++ ...gust-themes-august-city-lights-darker.yaml | 53 +++ ...ugust-themes-august-drawbridge-darker.yaml | 53 +++ .../august-themes-august-gruvbox-darker.yaml | 53 +++ .../august-themes-august-kanagawa-darker.yaml | 53 +++ ...august-themes-august-night-owl-darker.yaml | 53 +++ themes/august-themes-august-nord-darker.yaml | 53 +++ ...it-dracula-theme--aura-dracula-spirit.yaml | 53 +++ ...racula-theme-aura-dracula-spirit-soft.yaml | 53 +++ ...a-theme-aura-dracula-spirit-synthwave.yaml | 53 +++ themes/aura-theme--aura-dark.yaml | 62 +++ themes/aura-theme--aura-soft-dark.yaml | 62 +++ themes/aura-theme-aura-dark-soft-text.yaml | 62 +++ .../aura-theme-aura-soft-dark-soft-text.yaml | 62 +++ themes/aurora-evening.yaml | 53 +++ ...a-theme-official--aurora-dark-primary.yaml | 53 +++ themes/aurora-theme-official.yaml | 53 +++ themes/autu-theme.yaml | 53 +++ themes/autumn-theme--light.yaml | 53 +++ themes/ava583-dark-rose-quartz-theme.yaml | 53 +++ themes/avesta--mono-atom.yaml | 53 +++ themes/awork.yaml | 53 +++ themes/axion-themes--plasma-pink.yaml | 53 +++ themes/axion-themes--quantum-green.yaml | 53 +++ ...cated--ayu-one-dark-pro-dark-bordered.yaml | 53 +++ ...pro-deprecated--ayu-one-dark-pro-dark.yaml | 53 +++ ...ted--ayu-one-dark-pro-mirage-bordered.yaml | 53 +++ ...o-deprecated--ayu-one-dark-pro-mirage.yaml | 53 +++ themes/ayu-theme-fork.yaml | 53 +++ themes/ayu-tokyo-night.yaml | 53 +++ .../ayuloco-theme--ayuloco-dark-bordered.yaml | 53 +++ ...yuloco-theme--ayuloco-mirage-bordered.yaml | 53 +++ themes/ayuloco-theme--ayuloco-mirage.yaml | 53 +++ themes/az0ox-shades-of-blue.yaml | 53 +++ themes/azul--azul.yaml | 53 +++ themes/azul--greenspace.yaml | 53 +++ themes/azure-teal.yaml | 53 +++ themes/b715xyz.yaml | 53 +++ themes/barbenheimer--barbenheimer-bunker.yaml | 53 +++ ...barbenheimer--barbenheimer-dreamhouse.yaml | 53 +++ ...nheimer--barbenheimer-nuclear-sunrise.yaml | 53 +++ themes/base16-themes--base16-3024-dark.yaml | 53 +++ themes/base16-themes--base16-3024-light.yaml | 53 +++ themes/base16-themes--base16-apathy-dark.yaml | 53 +++ .../base16-themes--base16-apathy-light.yaml | 53 +++ themes/base16-themes--base16-ashes-dark.yaml | 53 +++ themes/base16-themes--base16-ashes-light.yaml | 53 +++ themes/base16-themes--base16-bespin-dark.yaml | 53 +++ .../base16-themes--base16-bespin-light.yaml | 53 +++ themes/base16-themes--base16-brewer-dark.yaml | 53 +++ .../base16-themes--base16-brewer-light.yaml | 53 +++ themes/base16-themes--base16-bright-dark.yaml | 53 +++ .../base16-themes--base16-bright-light.yaml | 53 +++ ...base16-themes--base16-codeschool-dark.yaml | 53 +++ ...ase16-themes--base16-codeschool-light.yaml | 53 +++ .../base16-themes--base16-default-dark.yaml | 53 +++ .../base16-themes--base16-default-light.yaml | 53 +++ .../base16-themes--base16-eighties-dark.yaml | 53 +++ .../base16-themes--base16-eighties-light.yaml | 53 +++ themes/base16-themes--base16-embers-dark.yaml | 53 +++ .../base16-themes--base16-embers-light.yaml | 53 +++ themes/base16-themes--base16-flat-dark.yaml | 53 +++ themes/base16-themes--base16-flat-light.yaml | 53 +++ themes/base16-themes--base16-google-dark.yaml | 53 +++ .../base16-themes--base16-google-light.yaml | 53 +++ .../base16-themes--base16-grayscale-dark.yaml | 53 +++ ...base16-themes--base16-grayscale-light.yaml | 53 +++ ...se16-themes--base16-green-screen-dark.yaml | 53 +++ ...e16-themes--base16-green-screen-light.yaml | 53 +++ ...base16-themes--base16-harmonic16-dark.yaml | 53 +++ ...ase16-themes--base16-harmonic16-light.yaml | 53 +++ .../base16-themes--base16-isotope-dark.yaml | 53 +++ .../base16-themes--base16-isotope-light.yaml | 53 +++ .../base16-themes--base16-marrakesh-dark.yaml | 53 +++ ...base16-themes--base16-marrakesh-light.yaml | 53 +++ themes/base16-themes--base16-mocha-dark.yaml | 53 +++ themes/base16-themes--base16-mocha-light.yaml | 53 +++ .../base16-themes--base16-monokai-dark.yaml | 53 +++ .../base16-themes--base16-monokai-light.yaml | 53 +++ themes/base16-themes--base16-ocean-dark.yaml | 53 +++ themes/base16-themes--base16-ocean-light.yaml | 53 +++ ...ase16-themes--base16-oceanicnext-dark.yaml | 53 +++ ...se16-themes--base16-oceanicnext-light.yaml | 53 +++ .../base16-themes--base16-paraiso-dark.yaml | 53 +++ .../base16-themes--base16-paraiso-light.yaml | 53 +++ themes/base16-themes--base16-pop-dark.yaml | 53 +++ themes/base16-themes--base16-pop-light.yaml | 53 +++ ...base16-themes--base16-railscasts-dark.yaml | 53 +++ ...ase16-themes--base16-railscasts-light.yaml | 53 +++ ...se16-themes--base16-shapeshifter-dark.yaml | 53 +++ ...e16-themes--base16-shapeshifter-light.yaml | 53 +++ .../base16-themes--base16-solarized-dark.yaml | 53 +++ ...base16-themes--base16-solarized-light.yaml | 53 +++ ...ase16-themes--base16-summerfruit-dark.yaml | 53 +++ ...se16-themes--base16-summerfruit-light.yaml | 53 +++ .../base16-themes--base16-tomorrow-dark.yaml | 53 +++ .../base16-themes--base16-tomorrow-light.yaml | 53 +++ .../base16-themes--base16-twilight-dark.yaml | 53 +++ .../base16-themes--base16-twilight-light.yaml | 53 +++ .../base16-themes--base16-unikitty-dark.yaml | 53 +++ .../base16-themes--base16-unikitty-light.yaml | 53 +++ .../base16-themes--base16-woodland-dark.yaml | 53 +++ themes/basictheme.yaml | 53 +++ themes/batsignal.yaml | 53 +++ themes/beach-house.yaml | 53 +++ themes/bear-theme.yaml | 53 +++ themes/beautiful-ui--material.yaml | 54 +++ themes/beautiful-ui--nord.yaml | 54 +++ themes/beautiful-ui--nova.yaml | 54 +++ themes/beautiful-ui--zenburn.yaml | 54 +++ .../bee-theme--bee-theme-color-theme-tow.yaml | 53 +++ themes/bee-theme--bee-theme.yaml | 53 +++ themes/benlatheme.yaml | 53 +++ themes/benpai-theme.yaml | 53 +++ themes/berlin-postal-themes--nw21.yaml | 53 +++ themes/berlin-postal-themes--sw61.yaml | 53 +++ themes/berry-latte-light-theme.yaml | 53 +++ themes/bersk-dark-theme.yaml | 53 +++ themes/beru-theme.yaml | 53 +++ ...s-redefined--best-themes-monokai-next.yaml | 53 +++ ...es-redefined--best-themes-one-monokai.yaml | 53 +++ ...tter-solarized--better-selenized-dark.yaml | 54 +++ ...larized--better-solarized-dark-italic.yaml | 54 +++ ...tter-solarized--better-solarized-dark.yaml | 54 +++ themes/bianconero--bianconero.yaml | 53 +++ themes/bigsurgtk-blue.yaml | 53 +++ themes/bio-dark-midnight.yaml | 53 +++ themes/bio-dark.yaml | 53 +++ themes/bird--bird.yaml | 53 +++ themes/bits.yaml | 53 +++ themes/biu-theme--vitesse-dark.yaml | 53 +++ themes/biu-theme--vitesse-light.yaml | 53 +++ themes/blac.yaml | 53 +++ themes/black-n-turquoise.yaml | 53 +++ themes/black-pink-theme.yaml | 53 +++ themes/black-total.yaml | 53 +++ themes/black-void.yaml | 53 +++ themes/blackbird--blackbird-dusk.yaml | 53 +++ themes/blackbird--blackbird-midnight.yaml | 53 +++ themes/blackcoffee-dark.yaml | 53 +++ themes/blackforest--everforest-dark.yaml | 53 +++ themes/blazing-red.yaml | 53 +++ themes/blazydark.yaml | 53 +++ themes/blinds-theme.yaml | 53 +++ themes/bloom.yaml | 53 +++ .../blue-light-theme--blue-light-theme.yaml | 53 +++ themes/blue-moves-theme.yaml | 53 +++ themes/blue-night--blue-day.yaml | 53 +++ themes/blue-night--blue-night.yaml | 53 +++ themes/blue-paint.yaml | 53 +++ themes/bluered.yaml | 53 +++ themes/bluespace--sober.yaml | 53 +++ themes/bluloco-dark-muted-w77.yaml | 53 +++ themes/bluloco-dark-theme--bluloco-dark.yaml | 53 +++ themes/bluloco-light-theme.yaml | 53 +++ themes/blurple.yaml | 53 +++ themes/blush.yaml | 53 +++ themes/blve-a-dark-blue-theme.yaml | 53 +++ themes/bocchi-the-vscode-theme.yaml | 53 +++ themes/bolsonarodarktheme.yaml | 53 +++ themes/borders-dark--borders-blue.yaml | 53 +++ themes/borders-dark--borders-dark.yaml | 53 +++ themes/borders-dark--borders-darker.yaml | 53 +++ themes/borealis-night-theme.yaml | 53 +++ themes/borealis-theme.yaml | 53 +++ themes/botany-theme.yaml | 53 +++ themes/braver-s-solarized.yaml | 54 +++ .../brid-purple--brid-purple-garden-dark.yaml | 53 +++ ...brid-purple--brid-purple-garden-light.yaml | 53 +++ themes/bright-colors.yaml | 53 +++ themes/brigitte-helm.yaml | 53 +++ themes/broly-theme.yaml | 53 +++ themes/buby.yaml | 53 +++ themes/bulbul-theme.yaml | 53 +++ themes/butter.yaml | 53 +++ themes/c-c-theme--c-c-theme.yaml | 53 +++ themes/cabalyon.yaml | 53 +++ ...er-nights--calm-days-sober-nights-day.yaml | 53 +++ ...-nights--calm-days-sober-nights-night.yaml | 53 +++ ...nights-calm-days-sober-nights-day-sky.yaml | 53 +++ ...ghts-calm-days-sober-nights-night-sky.yaml | 53 +++ themes/calm-down-theme.yaml | 53 +++ themes/calmppuccin--calmppuccin-frappe.yaml | 53 +++ themes/calmppuccin--calmppuccin-latte.yaml | 53 +++ .../calmppuccin--calmppuccin-macchiato.yaml | 53 +++ themes/calmppuccin--calmppuccin-mocha.yaml | 53 +++ ...mppuccin--calmppuccin-nitro-cold-brew.yaml | 53 +++ .../calmppuccin--calmppuccin-oledppuccin.yaml | 53 +++ themes/camo.yaml | 53 +++ themes/cand-pine--candy-pine.yaml | 53 +++ ...carbon-candy--carbon-candy-anthracite.yaml | 53 +++ themes/carbon-candy--carbon-candy-aurora.yaml | 53 +++ themes/carbon-candy--carbon-candy-bee.yaml | 53 +++ themes/carbon-candy--carbon-candy-carbon.yaml | 53 +++ themes/carbon-candy--carbon-candy-dark.yaml | 53 +++ .../carbon-candy--carbon-candy-obsidian.yaml | 53 +++ .../carbon-candy--carbon-candy-palenight.yaml | 53 +++ ...on-code-theme--carbon-code-amber-dark.yaml | 53 +++ ...n-code-theme--carbon-code-amber-light.yaml | 53 +++ ...-code-theme--carbon-code-crimson-dark.yaml | 53 +++ ...code-theme--carbon-code-crimson-light.yaml | 53 +++ .../carbon-code-theme--carbon-code-dark.yaml | 53 +++ ...-code-theme--carbon-code-emerald-dark.yaml | 53 +++ ...code-theme--carbon-code-emerald-light.yaml | 53 +++ .../carbon-code-theme--carbon-code-light.yaml | 53 +++ ...bon-code-theme--carbon-code-rose-dark.yaml | 53 +++ ...on-code-theme--carbon-code-rose-light.yaml | 53 +++ themes/carbon-code-theme--sazardev.yaml | 53 +++ themes/carbon-theme.yaml | 53 +++ themes/catppuccin-dark-theme.yaml | 53 +++ ...tppuccin-for-vscode--catppuccin-frapp.yaml | 53 +++ ...tppuccin-for-vscode--catppuccin-latte.yaml | 53 +++ ...ccin-for-vscode--catppuccin-macchiato.yaml | 53 +++ ...tppuccin-for-vscode--catppuccin-mocha.yaml | 53 +++ themes/cave.yaml | 53 +++ themes/cds-for-vscode--vanilla.yaml | 53 +++ themes/cds-for-vscode.yaml | 53 +++ themes/celestial-theme--high-contrast.yaml | 53 +++ themes/chai-theme--chai-light.yaml | 53 +++ themes/chai-theme--dark-chai.yaml | 53 +++ themes/chalk-theme.yaml | 53 +++ themes/chatgp-theme.yaml | 53 +++ themes/chee-themes.yaml | 53 +++ themes/cheethatheme.yaml | 53 +++ themes/cherry--cherry-midnight.yaml | 53 +++ themes/cherry--cherry.yaml | 53 +++ ...ry-blossom-theme--cherry-blossom-airy.yaml | 53 +++ ...-blossom-theme--cherry-blossom-breeze.yaml | 53 +++ ...theme--cherry-blossom-dark-reflection.yaml | 53 +++ ...ssom-theme--cherry-blossom-dark-vivid.yaml | 53 +++ ...ry-blossom-theme--cherry-blossom-dark.yaml | 53 +++ ...som-theme--cherry-blossom-dimmed-dusk.yaml | 53 +++ ...-blossom-theme--cherry-blossom-dimmed.yaml | 53 +++ ...m-theme--cherry-blossom-night-harmony.yaml | 53 +++ ...y-blossom-theme--cherry-blossom-night.yaml | 53 +++ ...som-theme--cherry-blossom-osaka-light.yaml | 53 +++ ...y-blossom-theme--cherry-blossom-osaka.yaml | 53 +++ ...som-theme--cherry-blossom-sky-vibrant.yaml | 53 +++ ...-blossom-theme--cherry-blossom-spring.yaml | 53 +++ ...lossom-theme--cherry-blossom-twilight.yaml | 53 +++ ...ry-blossom-theme--cherry-blossom-warm.yaml | 53 +++ themes/cherry-blossom.yaml | 53 +++ themes/chinolor-theme--chinolor-light.yaml | 53 +++ themes/chinolor-theme--chinolor.yaml | 53 +++ themes/chroma-library--deep-ocean.yaml | 53 +++ themes/chroma-library--dna-helix.yaml | 53 +++ themes/chroma-library--electric-blue.yaml | 53 +++ themes/chroma-library--midnight-purple.yaml | 53 +++ themes/chroma-library--neon-cyber.yaml | 53 +++ themes/chroma-library--neon-synthwave.yaml | 53 +++ themes/chroma-library--plasma-pink.yaml | 53 +++ themes/chroma-library--quantum-green.yaml | 53 +++ themes/chroma-library--solar-flare.yaml | 53 +++ themes/chroma-library--toxic-waste.yaml | 53 +++ themes/chromahin--chromahin-amoled.yaml | 53 +++ themes/chromahin--chromahin-dark.yaml | 53 +++ themes/chromahin--chromahin-multi-color.yaml | 53 +++ themes/chromahin--chromahin-soft.yaml | 53 +++ themes/chromodynamics-v3-theme.yaml | 53 +++ themes/cinnamoroll-dark-theme.yaml | 53 +++ themes/cinnamoroll-light-theme.yaml | 53 +++ themes/clasic-harmonized.yaml | 53 +++ .../classic-essential-colors-blue-balsa.yaml | 53 +++ ...os-theme-zed-port--macos-classic-dark.yaml | 53 +++ ...s-theme-zed-port--macos-classic-light.yaml | 53 +++ themes/classic-terminal-revisited.yaml | 53 +++ themes/classictheme.yaml | 53 +++ themes/claude-anthropic-theme.yaml | 53 +++ ...theme--claude-code-dark-high-contrast.yaml | 53 +++ .../claude-code-theme--claude-code-dark.yaml | 53 +++ ...heme--claude-code-light-high-contrast.yaml | 53 +++ .../claude-code-theme--claude-code-light.yaml | 53 +++ .../claude-theme-by-jnahian--claude-dark.yaml | 53 +++ ...claude-theme-by-jnahian--claude-light.yaml | 53 +++ ...for-vs-code--claude-vscode-dark-brand.yaml | 53 +++ ...or-vs-code--claude-vscode-light-brand.yaml | 53 +++ ...-vs-code-cursor-windsurf--claude-dark.yaml | 53 +++ ...vs-code-cursor-windsurf--claude-light.yaml | 53 +++ ...code-theme--claude-dark-high-contrast.yaml | 53 +++ themes/claude-vscode-theme--claude-dark.yaml | 53 +++ themes/clear--clear-dark.yaml | 53 +++ themes/cleo--dark.yaml | 53 +++ themes/clickhere.yaml | 53 +++ themes/clymate-themes-for-vs-code.yaml | 53 +++ themes/cobalt-next--cobalt-next-dark.yaml | 53 +++ themes/cobalt-next--cobalt-next.yaml | 53 +++ themes/cobalt9-theme--cobalt9.yaml | 54 +++ ...e-like-a-rainbow--code-like-a-rainbow.yaml | 53 +++ themes/code-like-a-rainbow--untitled.yaml | 53 +++ ...-code-with-colors-pro-midnight-purple.yaml | 53 +++ ...with-colors-pro--theme-for-codes-dark.yaml | 53 +++ ...ith-colors-pro--theme-for-codes-light.yaml | 53 +++ themes/codebabel-theme-drk.yaml | 53 +++ .../codebabel-theme-nefarious-vantablack.yaml | 53 +++ themes/codebabel-theme-obscureorange.yaml | 53 +++ ...theme--codeify-dark-berry-color-theme.yaml | 53 +++ ...me--codiefy-optimas-prime-color-theme.yaml | 53 +++ themes/codely-dark-pro.yaml | 53 +++ themes/codely-theme.yaml | 53 +++ themes/codeme-theme--ash.yaml | 53 +++ themes/codeme-theme--ayudark.yaml | 53 +++ themes/codeme-theme--codeme.yaml | 53 +++ themes/codeme-theme--googledark.yaml | 53 +++ themes/codeme-theme--nordicdark.yaml | 53 +++ themes/codeme-theme--omni.yaml | 53 +++ themes/codeme-theme--tokyo.yaml | 53 +++ ...anguage-code-runner--coder-vai-forest.yaml | 53 +++ ...language-code-runner--coder-vai-light.yaml | 53 +++ ...language-code-runner--coder-vai-ocean.yaml | 53 +++ ...ge-code-runner--coder-vai-purple-haze.yaml | 53 +++ .../codesandbox-theme-github-com-isneru.yaml | 53 +++ themes/codesandbox-tribute.yaml | 53 +++ themes/codesso.yaml | 53 +++ themes/codevibe-themes.yaml | 53 +++ themes/codewithsg-dark.yaml | 53 +++ themes/cody.yaml | 53 +++ themes/coffee-break-theme--day.yaml | 53 +++ themes/coffee-break-theme--night.yaml | 53 +++ .../coffee-dark-theme--color-coffee-dark.yaml | 53 +++ themes/coimbrox-panda-theme.yaml | 53 +++ themes/coimbrox-theme.yaml | 53 +++ themes/coldark--coldark-cold.yaml | 53 +++ themes/coldark--coldark-dark.yaml | 53 +++ themes/collotheme.yaml | 53 +++ .../color-contrast-theme--color-contrast.yaml | 53 +++ themes/color-sea--color-sea-blue.yaml | 53 +++ themes/color-sea--color-sea-gray.yaml | 53 +++ themes/color-sea--color-sea-green.yaml | 53 +++ themes/color-sea--color-sea-orange.yaml | 53 +++ themes/color-sea--color-sea-purple.yaml | 53 +++ themes/color-sea--color-sea-red.yaml | 53 +++ themes/color-sea--color-sea-yellow.yaml | 53 +++ themes/color-theme--cyan-dark.yaml | 53 +++ themes/color-wheel.yaml | 53 +++ themes/colorado-theme--theme-dark.yaml | 53 +++ themes/colorado-theme--theme.yaml | 53 +++ themes/colored-desert--colored-desert.yaml | 53 +++ themes/colored-theme--red-color-theme.yaml | 53 +++ ...color-themes-pack--qqqoid-light-color.yaml | 53 +++ themes/colorful-theme.yaml | 53 +++ ...lorized-theme-1-3--github-dark-dimmed.yaml | 53 +++ ...rized-theme-1-3--github-light-default.yaml | 53 +++ ...zed-theme-1-3--kuroir-dark-01-crimson.yaml | 53 +++ ...d-theme-1-3--kuroir-dark-02-vermilion.yaml | 53 +++ ...rized-theme-1-3--kuroir-dark-03-amber.yaml | 53 +++ ...d-theme-1-3--kuroir-dark-04-goldenrod.yaml | 53 +++ ...-theme-1-3--kuroir-dark-06-chartreuse.yaml | 53 +++ ...orized-theme-1-3--kuroir-dark-07-fern.yaml | 53 +++ ...zed-theme-1-3--kuroir-dark-08-emerald.yaml | 53 +++ ...orized-theme-1-3--kuroir-dark-09-jade.yaml | 53 +++ ...orized-theme-1-3--kuroir-dark-11-aqua.yaml | 53 +++ ...ed-theme-1-3--kuroir-dark-14-cerulean.yaml | 53 +++ ...lorized-theme-1-3--kuroir-dark-15-sky.yaml | 53 +++ ...ized-theme-1-3--kuroir-dark-18-indigo.yaml | 53 +++ ...ed-theme-1-3--kuroir-dark-20-amethyst.yaml | 53 +++ ...zed-theme-1-3--kuroir-dark-21-magenta.yaml | 53 +++ ...zed-theme-1-3--kuroir-dark-22-fuchsia.yaml | 53 +++ ...orized-theme-1-3--kuroir-dark-23-rose.yaml | 53 +++ ...rized-theme-1-3--kuroir-dark-24-coral.yaml | 53 +++ ...ized-theme-1-3--kuroir-light-03-amber.yaml | 53 +++ ...rized-theme-1-3--kuroir-light-07-fern.yaml | 53 +++ ...rized-theme-1-3--kuroir-light-09-jade.yaml | 53 +++ ...rized-theme-1-3--kuroir-light-11-aqua.yaml | 53 +++ ...orized-theme-1-3--kuroir-light-15-sky.yaml | 53 +++ ...zed-theme-1-3--kuroir-light-18-indigo.yaml | 53 +++ ...zed-theme-1-3--kuroir-light-19-violet.yaml | 53 +++ ...rized-theme-1-3--kuroir-light-23-rose.yaml | 53 +++ ...ized-theme-1-3--kuroir-light-24-coral.yaml | 53 +++ themes/colorsbars--colorbars-blue.yaml | 53 +++ themes/colorsbars--colorbars-green.yaml | 53 +++ themes/colorsbars--colorbars-orange.yaml | 53 +++ themes/colorsbars--colorbars-purple.yaml | 53 +++ themes/colorways-themes.yaml | 53 +++ ...nshin-impact--columbina-high-contrast.yaml | 53 +++ ...y-material-theme-darker-high-contrast.yaml | 53 +++ ...heme--community-material-theme-darker.yaml | 53 +++ ...eme--community-material-theme-default.yaml | 53 +++ ...-material-theme-lighter-high-contrast.yaml | 53 +++ ...eme--community-material-theme-lighter.yaml | 53 +++ ...theme--community-material-theme-ocean.yaml | 53 +++ ...e--community-material-theme-palenight.yaml | 53 +++ .../compact-vs-code--perry-the-platypus.yaml | 53 +++ themes/compline--compline.yaml | 58 +++ themes/compline--lauds.yaml | 58 +++ themes/conifer-theme--conifer-theme.yaml | 53 +++ themes/conifer-theme--mist-theme.yaml | 53 +++ themes/conifer-theme--pine-cone-theme.yaml | 53 +++ themes/cool-cowboy-theme--cowboy-theme.yaml | 53 +++ themes/cool-girls-theme.yaml | 53 +++ themes/coolnight-theme.yaml | 53 +++ themes/cosmic-gleam.yaml | 53 +++ themes/cosmic-pop-dark.yaml | 53 +++ themes/cosmo-theme.yaml | 53 +++ themes/cosy-orange-themes.yaml | 53 +++ themes/cr-theme-night.yaml | 53 +++ themes/crf-flamengo-theme.yaml | 53 +++ themes/crow--crow-dark.yaml | 53 +++ themes/crt-themes--crt-64.yaml | 53 +++ themes/crt-themes--crt-amber.yaml | 53 +++ themes/crt-themes--crt-blue.yaml | 53 +++ themes/crt-themes--crt-green.yaml | 53 +++ themes/crt-themes--crt-red.yaml | 53 +++ ...-theme--crystaltine-s-crystalline-4-1.yaml | 53 +++ ...-theme--crystaltine-s-crystalline-5-0.yaml | 53 +++ themes/cs50-theme-harvard.yaml | 53 +++ themes/csr-blue.yaml | 53 +++ themes/cupertino--cupertino-dark.yaml | 53 +++ themes/cupertino--cupertino-light.yaml | 53 +++ themes/cursor-dark--cursor-dark.yaml | 53 +++ themes/cursor-dark--cursor-less-dark.yaml | 53 +++ themes/cursor-dark-origin.yaml | 53 +++ themes/cursor-midnight--cursor-dark.yaml | 53 +++ themes/cursor-midnight--cursor-light.yaml | 53 +++ ...-night-theme--cursor-night-theme-soft.yaml | 53 +++ ...ursor-night-theme--cursor-night-theme.yaml | 53 +++ themes/cursor-theme--cursor-theme.yaml | 53 +++ themes/custom-github-dark-dimmed.yaml | 53 +++ themes/cute-aesthetic.yaml | 53 +++ themes/cyan-theme.yaml | 53 +++ themes/cyber-dark--cyber-dark.yaml | 53 +++ themes/cyber-dark--cyber-light-soft.yaml | 53 +++ themes/cyber-dark--cyber-light-warm.yaml | 53 +++ themes/cyber-dark--cyber-light.yaml | 53 +++ ...-qoder-themes--javascript-modern-dark.yaml | 53 +++ ...rk-qoder-themes--javascript-neon-dark.yaml | 53 +++ ...qoder-themes--javascript-vibrant-dark.yaml | 53 +++ .../cyber-dark-qoder-themes--qoder-dark.yaml | 53 +++ themes/cyber-pastel-theme-pack.yaml | 53 +++ themes/cyberdyne.yaml | 53 +++ themes/cyberlite.yaml | 53 +++ themes/cyberpunk-2021.yaml | 53 +++ ...theme--cyberpunk-2077-night-city-neon.yaml | 53 +++ themes/cyberpunk-rebecca-color-theme.yaml | 53 +++ themes/cyberpunk2077-ui-theme.yaml | 53 +++ ...lor-theme--cyberpunkcygnus-clear-grid.yaml | 53 +++ ...lor-theme--cyberpunkcygnus-neon-pulse.yaml | 53 +++ ...r-theme--cyberpunkcygnus-solace-flare.yaml | 53 +++ themes/cybertrauma.yaml | 53 +++ themes/cyberui-cyberpunk-neon-theme.yaml | 53 +++ themes/cyberwave.yaml | 53 +++ themes/d.yaml | 53 +++ .../d2t-colorful-theme--d2t-dark-clean.yaml | 53 +++ themes/d2t-colorful-theme--d2t-dark.yaml | 53 +++ themes/dangerdark.yaml | 53 +++ themes/dantes.yaml | 53 +++ ...arcula-contrast--darcula-contrast-min.yaml | 53 +++ .../darcula-contrast--darcula-contrast.yaml | 53 +++ themes/darcula-solid.yaml | 53 +++ themes/darcula-theme--jetbrains-port.yaml | 53 +++ ...dark-alchemy-theme--darkalchemy-basic.yaml | 53 +++ themes/dark-alchemy-theme--night-dragon.yaml | 53 +++ themes/dark-alchemy-theme--nightfox.yaml | 53 +++ themes/dark-and-purple.yaml | 53 +++ themes/dark-aura-theme.yaml | 53 +++ themes/dark-color-theme.yaml | 53 +++ themes/dark-dust.yaml | 53 +++ ...rk-future--dark-future-cyberpunk-2077.yaml | 53 +++ themes/dark-green-jungle-theme.yaml | 53 +++ themes/dark-halloween.yaml | 53 +++ themes/dark-kai.yaml | 53 +++ themes/dark-lavender--dark-lavender.yaml | 53 +++ themes/dark-lavender-dark-lavender-black.yaml | 53 +++ themes/dark-lavender-dark-lavender-soft.yaml | 53 +++ ...-lavender-dark-lavender-tailwind-soft.yaml | 53 +++ .../dark-lavender-dark-lavender-tailwind.yaml | 53 +++ themes/dark-m-theme.yaml | 53 +++ ...dark-magic-themes--dark-magic-dracula.yaml | 53 +++ ...magic-themes--dark-magic-frankenstein.yaml | 53 +++ .../dark-magic-themes--dark-magic-light.yaml | 53 +++ .../dark-magic-themes--dark-magic-night.yaml | 53 +++ .../dark-magic-themes--dark-magic-nord.yaml | 53 +++ .../dark-magic-themes--dark-magic-tokyo.yaml | 53 +++ themes/dark-magic-themes--dark-magic.yaml | 53 +++ themes/dark-minimal-line-free.yaml | 53 +++ themes/dark-minimal-theme.yaml | 53 +++ themes/dark-mode--dark-mode.yaml | 53 +++ themes/dark-modern-one.yaml | 53 +++ themes/dark-molokai-theme.yaml | 53 +++ themes/dark-ocean-theme.yaml | 53 +++ themes/dark-orange--dark-lime-flat.yaml | 53 +++ themes/dark-orange--dark-orange.yaml | 53 +++ themes/dark-orange--dark-purple-flat.yaml | 53 +++ themes/dark-orange--dark-yellow-flat.yaml | 53 +++ themes/dark-owl--dark-owl-darker.yaml | 53 +++ themes/dark-petrol.yaml | 53 +++ themes/dark-pink-pro.yaml | 53 +++ themes/dark-plus-moon-light.yaml | 53 +++ themes/dark-refined-refined-charcoal.yaml | 53 +++ themes/dark-refined-refined-default.yaml | 53 +++ themes/dark-refined-refined-dracula.yaml | 53 +++ themes/dark-refined-refined-espresso.yaml | 53 +++ themes/dark-refined-refined-matcha.yaml | 53 +++ themes/dark-refined-refined-mocha.yaml | 53 +++ themes/dark-refined-refined-night-owl.yaml | 53 +++ themes/dark-refined-refined-oceanic-next.yaml | 53 +++ themes/dark-refined-refined-one.yaml | 53 +++ themes/dark-refined-refined-palenight.yaml | 53 +++ themes/dark-refined-refined-purple.yaml | 53 +++ themes/dark-refined-refined-slate.yaml | 53 +++ themes/dark-solarin-3.yaml | 53 +++ themes/dark-theme-dark-minimal-theme-sm.yaml | 53 +++ themes/dark-theme-dark-neon-theme-sm.yaml | 53 +++ themes/dark-theme-dark-soft-theme-sm.yaml | 53 +++ themes/dark-theme-s.yaml | 53 +++ themes/dark-unity.yaml | 53 +++ themes/darkcatalyst.yaml | 53 +++ ...tter-solarized--better-solarized-dark.yaml | 54 +++ themes/darkest-theme.yaml | 53 +++ themes/darkit.yaml | 53 +++ themes/darkpurpletheme.yaml | 53 +++ themes/darksharp.yaml | 53 +++ themes/darkstack--code-red.yaml | 53 +++ themes/darkstack--cyberblue.yaml | 53 +++ themes/darkstack--edgerunner.yaml | 53 +++ themes/darkstack--miami-vice.yaml | 53 +++ themes/darkula-dracula-but-darker.yaml | 53 +++ themes/darkwind.yaml | 53 +++ ...arky-purple-theme--darky-purple-storm.yaml | 53 +++ themes/darky-purple-theme--darky-purple.yaml | 53 +++ themes/dartpad-theme--dartpad.yaml | 53 +++ themes/dbt--dbt-dark-theme.yaml | 53 +++ themes/dbt--dbt-fusion.yaml | 53 +++ themes/dbt--dbt-light-theme.yaml | 53 +++ themes/dcdevtheme.yaml | 53 +++ themes/decay--cosmic-decay.yaml | 53 +++ themes/decay--dark-decay.yaml | 53 +++ themes/decay--decayce.yaml | 53 +++ themes/decay--light-decay.yaml | 53 +++ themes/deepsea-theme.yaml | 53 +++ themes/defdo-themes--defdo-base.yaml | 53 +++ themes/defdo-themes--defdo-halloween.yaml | 53 +++ ...-s-rust-themes--dekirisu-s-rust-theme.yaml | 53 +++ themes/delightful-green.yaml | 53 +++ themes/demon-hunter.yaml | 53 +++ themes/descomplica-theme--kyanite.yaml | 53 +++ themes/desert-vim.yaml | 54 +++ themes/designcourse.yaml | 53 +++ themes/devell-theme.yaml | 53 +++ ...eloper-s-theme--developers-theme-fork.yaml | 53 +++ themes/developer-s-theme--green-coffee.yaml | 53 +++ themes/devmamudul-setup.yaml | 53 +++ themes/devpro-theme.yaml | 53 +++ themes/devsena-dark.yaml | 53 +++ themes/devstack--acid-trip.yaml | 53 +++ themes/devstack--afterglow-fade.yaml | 53 +++ themes/devstack--amazon-jungle.yaml | 53 +++ themes/devstack--amethyst-stone.yaml | 53 +++ themes/devstack--another-acid-trip.yaml | 53 +++ themes/devstack--aqua-glacier.yaml | 53 +++ themes/devstack--black-velvet-luxe.yaml | 53 +++ themes/devstack--blueprint-grid.yaml | 53 +++ themes/devstack--c-carbon-6.yaml | 53 +++ themes/devstack--cobalt-ice.yaml | 53 +++ themes/devstack--crystal-quartz.yaml | 53 +++ themes/devstack--cyber-industrial.yaml | 53 +++ themes/devstack--cyber-pop.yaml | 53 +++ themes/devstack--dark-crimson.yaml | 53 +++ themes/devstack--deep-ocean.yaml | 53 +++ themes/devstack--deep-sea-navigator.yaml | 53 +++ themes/devstack--deep-teal.yaml | 53 +++ themes/devstack--deep-void.yaml | 53 +++ themes/devstack--desert-night.yaml | 53 +++ themes/devstack--espresso-high.yaml | 53 +++ themes/devstack--executive-level.yaml | 53 +++ themes/devstack--forest-tech.yaml | 53 +++ themes/devstack--frozen-deep.yaml | 53 +++ themes/devstack--glacier-blue.yaml | 53 +++ themes/devstack--high-alert-crimson.yaml | 53 +++ themes/devstack--irrus-float.yaml | 53 +++ themes/devstack--loki.yaml | 53 +++ themes/devstack--mainframe-terminal.yaml | 53 +++ themes/devstack--meadow-whisper.yaml | 53 +++ themes/devstack--metropolis-sky-scape.yaml | 53 +++ themes/devstack--midas-touch.yaml | 53 +++ themes/devstack--middle-field-canvas.yaml | 53 +++ themes/devstack--mineral-forest.yaml | 53 +++ themes/devstack--modern-retro.yaml | 53 +++ themes/devstack--monet-impressionism.yaml | 53 +++ themes/devstack--nightshade-venom.yaml | 53 +++ themes/devstack--obsidian-wine.yaml | 53 +++ themes/devstack--oceanic-gradient.yaml | 53 +++ themes/devstack--oceanic-sunset.yaml | 53 +++ themes/devstack--office-paper.yaml | 53 +++ themes/devstack--oracle-vision.yaml | 53 +++ themes/devstack--pastel-sorbet.yaml | 53 +++ themes/devstack--polymer-flow.yaml | 53 +++ themes/devstack--retro-arcade.yaml | 53 +++ themes/devstack--silk-petal.yaml | 53 +++ themes/devstack--smoldering-ember.yaml | 53 +++ themes/devstack--solar-flare.yaml | 53 +++ themes/devstack--solstice-heat.yaml | 53 +++ themes/devstack--sonic-pulse.yaml | 53 +++ themes/devstack--sorbet-swirl.yaml | 53 +++ themes/devstack--studio-apartment.yaml | 53 +++ themes/devstack--synthwave-neon.yaml | 53 +++ themes/devstack--tactical-ops.yaml | 53 +++ themes/devstack--tree-hugger.yaml | 53 +++ themes/devstack--twilight-bloom.yaml | 53 +++ themes/devstack--vanguard-strike.yaml | 53 +++ themes/devstack--vintage-heritage.yaml | 53 +++ themes/devstack--workplace-chatter.yaml | 53 +++ themes/deyvi-dark.yaml | 53 +++ themes/dfn2023theme.yaml | 53 +++ ...-gfx-theme--dharam-gfx-hight-contrast.yaml | 53 +++ themes/diabo.yaml | 53 +++ themes/dimi-theme-dimi-theme-dark.yaml | 53 +++ themes/dimi-theme-dimi-theme-darker.yaml | 53 +++ themes/diverse-dye--arabian-theme.yaml | 53 +++ themes/diverse-dye--berry-blast-theme.yaml | 53 +++ .../diverse-dye--celestial-charm-theme.yaml | 53 +++ .../diverse-dye--chocolate-dessert-theme.yaml | 53 +++ themes/diverse-dye--hot-pink-theme.yaml | 53 +++ themes/diverse-dye--hyped-down-theme.yaml | 53 +++ themes/diverse-dye--kryptonite-theme.yaml | 53 +++ themes/diverse-dye--mountain-theme.yaml | 53 +++ themes/diverse-dye--navy-nights-theme.yaml | 53 +++ themes/diverse-dye--neon-theme.yaml | 53 +++ .../diverse-dye--power-low-purple-theme.yaml | 53 +++ themes/diverse-dye--purplexed-theme.yaml | 53 +++ themes/diverse-dye--sakura-blossom-theme.yaml | 53 +++ themes/diverse-dye--sakura-theme.yaml | 53 +++ themes/djpurple.yaml | 53 +++ themes/dk-bee.yaml | 53 +++ themes/do-you-even-dev-bro--minimal-dark.yaml | 53 +++ themes/do-you-even-dev-bro--telescope.yaml | 53 +++ .../dobri-next-themes-and-icons--darcula.yaml | 53 +++ themes/dobri-next-themes-and-icons--eve.yaml | 53 +++ themes/doctis--noctis-uva.yaml | 53 +++ themes/doctis--noctis-viola.yaml | 53 +++ themes/dodimmed.yaml | 53 +++ themes/dodopool.yaml | 53 +++ themes/doli-theme--doli-universal.yaml | 53 +++ themes/doli-theme--doli-visual-studio.yaml | 53 +++ themes/dominator.yaml | 53 +++ themes/doom-themes--doom-one-dark.yaml | 53 +++ themes/doom-themes--doom-one-light.yaml | 53 +++ themes/dot-developer-theme.yaml | 53 +++ themes/dracula-dimmed.yaml | 53 +++ ...a-min--dracula-min-light-darker-theme.yaml | 53 +++ .../dracula-min--dracula-min-light-theme.yaml | 53 +++ ...a-min--dracula-min-white-darker-theme.yaml | 53 +++ .../dracula-min--dracula-min-white-theme.yaml | 53 +++ ...racula-pro-version--dracula-pro-black.yaml | 53 +++ themes/dracula-pro-version--dracula-pro.yaml | 53 +++ ...racula-theme-light-dark--dracula-dark.yaml | 53 +++ ...acula-theme-light-dark--dracula-light.yaml | 53 +++ .../dracula-theme-with-italic-keywords.yaml | 53 +++ themes/draculagray.yaml | 53 +++ themes/dragan-color-theme.yaml | 53 +++ themes/drak-theme.yaml | 53 +++ themes/drakencord-blue.yaml | 53 +++ themes/dribbble-theme.yaml | 53 +++ themes/duang.yaml | 53 +++ themes/duck-mode--duck-in-the-dream.yaml | 53 +++ themes/duck-mode--duck-in-the-lake.yaml | 53 +++ themes/duckcash-vscode-theme.yaml | 53 +++ themes/duke-monokai.yaml | 53 +++ themes/dull-grey.yaml | 53 +++ themes/dyslexia-autumn.yaml | 53 +++ themes/dzsolarized--dzsolarized-dark.yaml | 54 +++ themes/dzsolarized--dzsolarized.yaml | 54 +++ themes/earthen-bog.yaml | 53 +++ themes/easy-eyes-theme.yaml | 53 +++ themes/ebonx.yaml | 53 +++ themes/eclipse-dark--eclipse-dark-darker.yaml | 53 +++ themes/eclipse-dark--eclipse-dark-flat.yaml | 53 +++ themes/eclipse-dark--eclipse-flare.yaml | 53 +++ themes/eclipse-dark--eclipse-optics.yaml | 53 +++ themes/eclipse-dark--eclipse-penumbra.yaml | 53 +++ themes/eclipse-dark--eclipse-umbra.yaml | 53 +++ themes/eclipse-midnight.yaml | 53 +++ themes/eclipsetheme.yaml | 53 +++ themes/ecogest-theme.yaml | 54 +++ themes/edge--edge-dark.yaml | 53 +++ themes/edge--edge-light.yaml | 53 +++ themes/edge-edge-dark-aura.yaml | 53 +++ themes/edge-edge-dark-neon.yaml | 53 +++ themes/editor-theme.yaml | 53 +++ themes/eh-s-web-themes.yaml | 53 +++ themes/eigen.yaml | 53 +++ ...ight8may-theme--poimandres-dark-theme.yaml | 53 +++ themes/eldritch--eldritch-dark.yaml | 53 +++ themes/eldritch--eldritch.yaml | 53 +++ themes/electric-dreams-neon.yaml | 56 +++ themes/electriclabs.yaml | 53 +++ themes/electron-highlighter-syntax.yaml | 53 +++ themes/electron-vue--electron-vue.yaml | 53 +++ themes/elementary-theme.yaml | 53 +++ themes/eliza-s-pride-themes--aromantic.yaml | 53 +++ themes/eliza-s-pride-themes--asexual.yaml | 53 +++ themes/eliza-s-pride-themes--lesbian.yaml | 53 +++ .../eliza-s-pride-themes--nebularomantic.yaml | 53 +++ themes/eliza-s-pride-themes--omnisexual.yaml | 53 +++ themes/eliza-s-pride-themes--progress.yaml | 53 +++ themes/elypink-theme--elypink-dark.yaml | 53 +++ themes/elypink-theme--elypink-light.yaml | 53 +++ themes/elypink-theme-elypink-dark-faded.yaml | 53 +++ .../elypink-theme-elypink-light-diamond.yaml | 53 +++ themes/elypink-theme-elypink-light-faded.yaml | 53 +++ .../elypink-theme-elypink-light-spring.yaml | 53 +++ .../elypink-theme-elypink-light-summer.yaml | 53 +++ themes/emberstone-theme.yaml | 53 +++ themes/emerald-kc.yaml | 53 +++ themes/emerald-sky.yaml | 53 +++ themes/end.yaml | 53 +++ themes/enhanced-canvas-theme.yaml | 53 +++ themes/enki--enki-night-owl.yaml | 54 +++ themes/enki--enki-rainbow.yaml | 54 +++ themes/enki--enki-red.yaml | 54 +++ themes/enki--enki.yaml | 54 +++ themes/enough-with-the-palenight.yaml | 53 +++ themes/erikwdevtheme.yaml | 53 +++ themes/erin-s-theme.yaml | 53 +++ themes/escook-theme.yaml | 53 +++ themes/eternals.yaml | 53 +++ ...-dark-theme--ethereum-dark-blue-theme.yaml | 53 +++ ...-dark-theme--ethereum-dark-grey-theme.yaml | 53 +++ themes/evangelion-unit-01-berserk-theme.yaml | 53 +++ themes/evangelion-unit-eva-01-theme.yaml | 54 +++ themes/evascode-the-end-of-development.yaml | 53 +++ themes/everforest--everforest-dark.yaml | 53 +++ themes/everforest--everforest-light.yaml | 53 +++ themes/everforest-moist--everforest-soft.yaml | 53 +++ ...rforest-pro--everforest-pro-dark-cozy.yaml | 53 +++ ...rest-pro--everforest-pro-dark-vibrant.yaml | 53 +++ ...forest-pro--everforest-pro-light-cozy.yaml | 53 +++ ...est-pro--everforest-pro-light-vibrant.yaml | 53 +++ themes/evergarden-theme.yaml | 53 +++ ...arden-winter--evergarden-winter-light.yaml | 53 +++ .../evergarden-winter--evergarden-winter.yaml | 53 +++ themes/everything-monokai.yaml | 53 +++ themes/evro-dark--evro-dark.yaml | 53 +++ themes/evro-dark--evro-darker-flat.yaml | 53 +++ themes/exa-theme-pack.yaml | 53 +++ themes/exovoid.yaml | 53 +++ themes/extreme-theme.yaml | 53 +++ .../eye-care-themes--eye-care-owl-light.yaml | 53 +++ themes/eye-care-themes--eye-care-owl.yaml | 53 +++ ...eye-comfort-themes--eye-comfort-light.yaml | 53 +++ themes/eyeball-dark.yaml | 53 +++ themes/fa-theme.yaml | 53 +++ themes/fae-color-theme.yaml | 53 +++ .../fallout-dark--ultrafocus-fork-fork.yaml | 53 +++ themes/fallout-dark--video-contrast.yaml | 53 +++ ...ut-dark--vs-code-deep-f-lux-fork-fork.yaml | 53 +++ themes/fallout-dark-architect-dark-fork.yaml | 53 +++ themes/familiar-java-themes.yaml | 53 +++ themes/faustvi00.yaml | 53 +++ themes/fea-dark-theme.yaml | 53 +++ themes/fearless-color-themes--untitled.yaml | 53 +++ .../fedaykin--dune-arrakis-incandescent.yaml | 53 +++ themes/fedaykin--dune-bene-gesserit.yaml | 53 +++ themes/fedaykin--dune-caladan-storm.yaml | 53 +++ themes/fedaykin--dune-fremen-sietch.yaml | 53 +++ themes/fedaykin--dune-giedi-prime.yaml | 53 +++ themes/fedaykin--dune-guild-navigator.yaml | 53 +++ themes/fedaykin--dune-harkonnen.yaml | 53 +++ themes/fedaykin--dune-house-atreides.yaml | 53 +++ themes/fedaykin--dune-ix-technology.yaml | 53 +++ themes/fedaykin--dune-kaitain.yaml | 53 +++ themes/fedaykin--dune-mentat.yaml | 53 +++ themes/fedaykin--dune-muad-dib.yaml | 53 +++ themes/fedaykin--dune-salusa-secundus.yaml | 53 +++ themes/fedaykin--dune-sandworm.yaml | 53 +++ themes/fedaykin--dune-sardaukar-imperial.yaml | 53 +++ themes/fedaykin--dune-spacing-guild.yaml | 53 +++ themes/fedaykin--dune-spice-vision.yaml | 53 +++ themes/fedaykin--dune-water-of-life.yaml | 53 +++ themes/felipaotest.yaml | 53 +++ themes/ferdinaldo-dark-theme.yaml | 53 +++ themes/feynuus-theme.yaml | 53 +++ .../finger-paint-set-ayms--themer-dark.yaml | 53 +++ .../finger-paint-set-ayms--themer-light.yaml | 53 +++ themes/firefly--firefly.yaml | 53 +++ themes/firefly-pro--firefly.yaml | 53 +++ themes/firefox-theme.yaml | 53 +++ themes/firefoxtheme--firefox-dark.yaml | 53 +++ themes/firsttema--untitled.yaml | 53 +++ themes/flat-theme--flat-theme-gray.yaml | 53 +++ themes/flat-theme--flat-theme-light.yaml | 53 +++ themes/flat-ui.yaml | 54 +++ themes/fleeting-theme.yaml | 53 +++ themes/flexoki--flexoki.yaml | 53 +++ themes/flexoki-plus.yaml | 53 +++ themes/florist-theme--florist-dark.yaml | 53 +++ themes/florist-theme--florist-light.yaml | 53 +++ themes/fluminense-theme.yaml | 53 +++ themes/flutter-theme.yaml | 53 +++ themes/flux-theme-legacy--flux-dawn.yaml | 53 +++ themes/flux-theme-legacy--flux-daylight.yaml | 53 +++ themes/flux-theme-legacy--flux-night.yaml | 53 +++ themes/flux-theme-legacy--flux-twilight.yaml | 53 +++ themes/focal.yaml | 53 +++ themes/foco-light.yaml | 53 +++ themes/foggy-forest.yaml | 53 +++ themes/forest-night-ethereal.yaml | 53 +++ ...night-serenade--forest-night-serenade.yaml | 53 +++ ...serenade-forest-night-italic-serenade.yaml | 53 +++ themes/forest.yaml | 53 +++ themes/forgive-green.yaml | 53 +++ themes/fosphor.yaml | 53 +++ themes/four-sages-theme.yaml | 53 +++ themes/frame.yaml | 53 +++ themes/fresh-green-theme.yaml | 53 +++ themes/friendly-dark.yaml | 53 +++ themes/frost-theme.yaml | 53 +++ themes/fullblack.yaml | 53 +++ themes/fullstacksjs-theme.yaml | 53 +++ themes/functional-matrix-clubcleaver.yaml | 53 +++ themes/furukawa-theme.yaml | 53 +++ themes/g-dark-themes-g-dark-blue-whale.yaml | 53 +++ .../g-dark-themes-g-dark-jacksons-purple.yaml | 53 +++ ...g-dark-themes-g-dark-light-alice-blue.yaml | 53 +++ .../g-dark-themes-g-dark-light-glitter.yaml | 53 +++ ...-dark-themes-g-dark-light-hint-of-red.yaml | 53 +++ ...hemes-g-dark-minimal-2-astronaut-blue.yaml | 53 +++ ...k-themes-g-dark-minimal-3-oxford-blue.yaml | 53 +++ ...g-dark-themes-g-dark-minimal-midnight.yaml | 53 +++ ...rk-themes-g-dark-one-love-black-pearl.yaml | 53 +++ themes/g-dark-themes-g-dark-one-love.yaml | 53 +++ ...es-g-dark-shader-h-ck3r-midnight-moss.yaml | 53 +++ themes/g-dark-themes-g-dark-shader-haiti.yaml | 53 +++ .../g-dark-themes-g-dark-shader-mirage.yaml | 53 +++ ...ark-themes-g-dark-shift-midnight-moss.yaml | 53 +++ themes/g-dark-themes-g-dark-shift-vulcan.yaml | 53 +++ themes/g-dark-themes-g-dark-valhalla.yaml | 53 +++ themes/gab-dark.yaml | 53 +++ themes/gabi-dark.yaml | 53 +++ themes/galactus--galactus.yaml | 53 +++ themes/galactus--jwrdark.yaml | 53 +++ themes/galaxy-theme.yaml | 53 +++ themes/galaxy.yaml | 53 +++ themes/game-mode-cyberpunk-theme.yaml | 53 +++ ...e-seven-kingdoms--got-beyond-the-wall.yaml | 53 +++ ...e-seven-kingdoms--got-house-baratheon.yaml | 53 +++ ...the-seven-kingdoms--got-house-greyjoy.yaml | 53 +++ ...e-seven-kingdoms--got-house-lannister.yaml | 53 +++ ...the-seven-kingdoms--got-house-martell.yaml | 53 +++ ...s-the-seven-kingdoms--got-house-stark.yaml | 53 +++ ...e-seven-kingdoms--got-house-targaryen.yaml | 53 +++ ...the-seven-kingdoms--got-night-s-watch.yaml | 53 +++ ...e-seven-kingdoms--got-the-iron-throne.yaml | 53 +++ ...y-classic-theme--gameboy-classic-dark.yaml | 53 +++ ...-classic-theme--gameboy-classic-light.yaml | 53 +++ themes/ganbaru--ganbaru-blue.yaml | 53 +++ themes/ganbaru--ganbaru-dark.yaml | 53 +++ themes/gantheory-theme.yaml | 53 +++ .../gapstyle-vs--gapstyle-vs-dark-modern.yaml | 54 +++ themes/gauss-theme.yaml | 53 +++ themes/gen.yaml | 53 +++ ...r-color-themes--genshin-impact-chiori.yaml | 53 +++ ...-color-themes--genshin-impact-citlali.yaml | 53 +++ ...olor-themes--genshin-impact-columbina.yaml | 53 +++ ...r-color-themes--genshin-impact-furina.yaml | 53 +++ ...lor-themes--genshin-impact-il-dottore.yaml | 53 +++ ...themes--genshin-impact-kamisato-ayaka.yaml | 53 +++ ...sr-color-themes--genshin-impact-layla.yaml | 53 +++ ...color-themes--genshin-impact-sandrone.yaml | 53 +++ ...or-themes--genshin-impact-scaramouche.yaml | 53 +++ ...sr-color-themes--genshin-impact-skirk.yaml | 53 +++ ...color-themes--genshin-impact-wanderer.yaml | 53 +++ ...color-themes--genshin-impact-yae-miko.yaml | 53 +++ ...r-themes--honkai-star-rail-aventurine.yaml | 53 +++ ...color-themes--honkai-star-rail-cyrene.yaml | 53 +++ ...lor-themes--honkai-star-rail-dan-heng.yaml | 53 +++ ...olor-themes--honkai-star-rail-firefly.yaml | 53 +++ ...-color-themes--honkai-star-rail-kafka.yaml | 53 +++ ...or-themes--honkai-star-rail-march-7th.yaml | 53 +++ ...lor-themes--honkai-star-rail-ruan-mei.yaml | 53 +++ ...lor-themes-genshin-impact-chiori-dark.yaml | 53 +++ ...or-themes-genshin-impact-citlali-dark.yaml | 53 +++ ...-themes-genshin-impact-columbina-dark.yaml | 53 +++ ...lor-themes-genshin-impact-furina-dark.yaml | 53 +++ ...olor-themes-genshin-impact-ganyu-dark.yaml | 53 +++ ...es-genshin-impact-ganyu-high-contrast.yaml | 53 +++ ...lor-themes-genshin-impact-ganyu-light.yaml | 53 +++ ...themes-genshin-impact-il-dottore-dark.yaml | 53 +++ ...es-genshin-impact-kamisato-ayaka-dark.yaml | 53 +++ ...olor-themes-genshin-impact-layla-dark.yaml | 53 +++ ...r-themes-genshin-impact-sandrone-dark.yaml | 53 +++ ...hemes-genshin-impact-scaramouche-dark.yaml | 53 +++ ...olor-themes-genshin-impact-skirk-dark.yaml | 53 +++ ...r-themes-genshin-impact-wanderer-dark.yaml | 53 +++ ...r-themes-genshin-impact-yae-miko-dark.yaml | 53 +++ ...genshin-impact-yumemizuki-mizuki-dark.yaml | 53 +++ ...mpact-yumemizuki-mizuki-high-contrast.yaml | 53 +++ ...enshin-impact-yumemizuki-mizuki-light.yaml | 53 +++ ...emes-honkai-star-rail-aventurine-dark.yaml | 53 +++ ...r-themes-honkai-star-rail-cyrene-dark.yaml | 53 +++ ...themes-honkai-star-rail-dan-heng-dark.yaml | 53 +++ ...-themes-honkai-star-rail-firefly-dark.yaml | 53 +++ ...or-themes-honkai-star-rail-kafka-dark.yaml | 53 +++ ...hemes-honkai-star-rail-march-7th-dark.yaml | 53 +++ ...or-themes-honkai-star-rail-robin-dark.yaml | 53 +++ ...mes-honkai-star-rail-robin-light-soft.yaml | 53 +++ ...themes-honkai-star-rail-ruan-mei-dark.yaml | 53 +++ ...es--genshin-vibes-celestine-bardlight.yaml | 53 +++ ...bes--genshin-vibes-damselette-whisper.yaml | 53 +++ ...n-vibes--genshin-vibes-emergency-food.yaml | 53 +++ ...-genshin-vibes-eternal-electro-throne.yaml | 53 +++ ...bes--genshin-vibes-fontaine-spotlight.yaml | 53 +++ ...hin-vibes--genshin-vibes-frost-ritual.yaml | 53 +++ ...bes--genshin-vibes-geo-contract-vault.yaml | 53 +++ ...es--genshin-vibes-hydrocourt-midnight.yaml | 53 +++ ...nshin-vibes--genshin-vibes-ice-oracle.yaml | 53 +++ ...bes--genshin-vibes-kusanali-dawnbloom.yaml | 53 +++ ...bes--genshin-vibes-lava-glaze-inferno.yaml | 53 +++ ...ibes--genshin-vibes-morax-golden-seal.yaml | 53 +++ ...n-vibes--genshin-vibes-outrider-blaze.yaml | 53 +++ ...nshin-vibes--genshin-vibes-pyro-scout.yaml | 53 +++ ...vibes--genshin-vibes-starry-companion.yaml | 53 +++ ...ibes--genshin-vibes-stormrider-breeze.yaml | 53 +++ ...n-vibes--genshin-vibes-sunforge-ember.yaml | 53 +++ ...vibes--genshin-vibes-veiled-harbinger.yaml | 53 +++ ...bes--genshin-vibes-verdant-dreamweave.yaml | 53 +++ ...s--genshin-vibes-violet-eternity-glow.yaml | 53 +++ themes/gentle-themes--gentle-builder.yaml | 53 +++ themes/gentle-themes--gentle-dark.yaml | 53 +++ themes/gg-djaja.yaml | 53 +++ themes/ghostty-dark.yaml | 53 +++ ...ccin-dark--github-catppuccin-dark-mix.yaml | 53 +++ ...tppuccin-dark--github-catppuccin-dark.yaml | 53 +++ ...dark-palenight--github-dark-palenight.yaml | 53 +++ themes/github-light-hight-contrast-theme.yaml | 53 +++ .../github-minimal-theme--github-minimal.yaml | 53 +++ themes/github-revamp--github-revamp.yaml | 53 +++ .../github-theme--github-dark-colorblind.yaml | 53 +++ themes/github-theme--github-dark-default.yaml | 53 +++ themes/github-theme--github-dark-dimmed.yaml | 53 +++ ...thub-theme--github-dark-high-contrast.yaml | 53 +++ themes/github-theme--github-dark.yaml | 53 +++ ...github-theme--github-light-colorblind.yaml | 53 +++ .../github-theme--github-light-default.yaml | 53 +++ ...hub-theme--github-light-high-contrast.yaml | 53 +++ themes/github-theme--github-light.yaml | 53 +++ ...ub-theme-minimal--github-dark-default.yaml | 53 +++ ...b-theme-minimal--github-light-default.yaml | 53 +++ ...gitlab-webide-theme--gitlab-dark-grey.yaml | 53 +++ themes/gitlab-webide-theme--gitlab-dark.yaml | 53 +++ themes/gitlab-webide-theme--gitlab-light.yaml | 53 +++ themes/gleam-themes.yaml | 53 +++ themes/glv-dark.yaml | 53 +++ themes/gms2-theme.yaml | 53 +++ themes/godot-theme-for-vs-code.yaml | 53 +++ themes/gogh-theme.yaml | 53 +++ themes/golden-era--golden-era.yaml | 53 +++ themes/goldenzo.yaml | 53 +++ themes/goodmonokai.yaml | 53 +++ themes/gooeyvsctheme.yaml | 53 +++ themes/gopher-theme-color.yaml | 53 +++ ...us-peace-forest--gorfius-peace-forest.yaml | 53 +++ ...s-peace-smoke-2--gorfius-peace-forest.yaml | 53 +++ themes/gotham-theme-black.yaml | 53 +++ themes/gotham-theme.yaml | 53 +++ themes/gothic--gothic-dark.yaml | 53 +++ themes/gothic--gothic-light.yaml | 53 +++ themes/gradient-theme--firefox-dark.yaml | 53 +++ themes/gradient-theme--monokai-pro.yaml | 53 +++ themes/gray-gray-gray.yaml | 53 +++ themes/grayscale301.yaml | 53 +++ themes/grayspace--coffeespace.yaml | 53 +++ themes/grayspace--darkspace.yaml | 53 +++ themes/grayspace--neutral.yaml | 53 +++ themes/grean-leaf--untitled.yaml | 53 +++ themes/greeeeen-theme.yaml | 53 +++ themes/green-paper--green-papper.yaml | 53 +++ themes/green-paper.yaml | 53 +++ themes/green-tree-theme--green-tree.yaml | 53 +++ themes/green-tree-theme--pink-flower.yaml | 53 +++ ...een-valley-theme--green-valley-forest.yaml | 53 +++ ...een-valley-theme--green-valley-matrix.yaml | 53 +++ ...n-valley-theme--green-valley-midnight.yaml | 53 +++ ...green-valley-theme--green-valley-mint.yaml | 53 +++ .../green-valley-theme--green-valley-neo.yaml | 53 +++ themes/greenspace--24.yaml | 53 +++ themes/greenspace--greenspace.yaml | 53 +++ themes/greenspace--shades.yaml | 53 +++ themes/greyout-color-theme.yaml | 53 +++ themes/grimoire--grimoire-nox.yaml | 53 +++ themes/grimoire--grimoire.yaml | 53 +++ themes/gru--gru-black.yaml | 53 +++ ...ruvbox-concoctis--concoctis-dark-hard.yaml | 53 +++ ...ruvbox-concoctis--concoctis-dark-soft.yaml | 53 +++ ...uvbox-concoctis--concoctis-light-hard.yaml | 53 +++ ...uvbox-concoctis--concoctis-light-soft.yaml | 53 +++ themes/gruvbox-dark-medium-theme.yaml | 53 +++ themes/gruvbox-dark-moist.yaml | 53 +++ ...ords--gruvbox-drakenlords-dark-draken.yaml | 53 +++ ...drakenlords--gruvbox-drakenlords-dark.yaml | 53 +++ ...drakenlords--gruvbox-drakenlords-grey.yaml | 53 +++ ...nlords--gruvbox-drakenlords-semi-dark.yaml | 53 +++ .../gruvbox-in-black--aldrico-s-gruvbox.yaml | 53 +++ .../gruvbox-ish--gruvbox-ish-dark-hard.yaml | 53 +++ .../gruvbox-ish--gruvbox-ish-dark-medium.yaml | 53 +++ .../gruvbox-ish--gruvbox-ish-dark-soft.yaml | 53 +++ ...uvbox-material--gruvbox-material-dark.yaml | 53 +++ ...vbox-material--gruvbox-material-light.yaml | 53 +++ ...rial-flat--gruvbox-material-flat-dark.yaml | 53 +++ ...ial-flat--gruvbox-material-flat-light.yaml | 53 +++ ...ruvbox-minor--gruvbox-minor-dark-hard.yaml | 53 +++ ...vbox-minor--gruvbox-minor-dark-medium.yaml | 53 +++ ...ruvbox-minor--gruvbox-minor-dark-soft.yaml | 53 +++ ...uvbox-minor--gruvbox-minor-light-hard.yaml | 53 +++ ...box-minor--gruvbox-minor-light-medium.yaml | 53 +++ ...uvbox-minor--gruvbox-minor-light-soft.yaml | 53 +++ themes/gruvbox.yaml | 53 +++ themes/gruvdark-theme--gruvdark-gbm.yaml | 53 +++ themes/gruvdark-theme--gruvdark-tokyo.yaml | 53 +++ themes/gruvdark-theme--gruvdark.yaml | 53 +++ .../gruvdark-theme--light-gruvdark-mono.yaml | 53 +++ .../gruvdark-theme--light-gruvdark-tokyo.yaml | 53 +++ themes/gruvdark-theme--light-gruvdark.yaml | 53 +++ themes/gui-dark--untitled.yaml | 53 +++ themes/gustavoglins-theme--gustavoglins.yaml | 53 +++ themes/hackelectron.yaml | 53 +++ themes/hacker-theme.yaml | 53 +++ ...-theme--amaranth-red-eerie-black-fork.yaml | 53 +++ themes/hacker-x-theme--belch-fork.yaml | 53 +++ themes/hacker-x-theme--dark-code-fork.yaml | 53 +++ .../hacker-x-theme--devr-dark-theme-fork.yaml | 53 +++ .../hacker-x-theme--electric-violet-fork.yaml | 53 +++ themes/hacker-x-theme--emerald-fork.yaml | 53 +++ ...acker-x-theme--enhanced-material-fork.yaml | 53 +++ themes/hacker-x-theme--hacker-blue-fork.yaml | 53 +++ themes/hacker-x-theme--hacker-x.yaml | 53 +++ themes/hacker-x-theme--hyped-down-fork.yaml | 53 +++ .../hacker-x-theme--into-the-unknow-fork.yaml | 53 +++ themes/hacker-x-theme--joyful-fork.yaml | 53 +++ themes/hacker-x-theme--kermit-fork.yaml | 53 +++ themes/hacker-x-theme--modernui-fork.yaml | 53 +++ themes/hacker-x-theme--orion-black-fork.yaml | 53 +++ themes/hacker-x-theme--terminal-fork.yaml | 53 +++ themes/hacker-x-theme--underdark-fork.yaml | 53 +++ themes/hacker-x-theme--windows-98-fork.yaml | 53 +++ ...hackpot--hackpot-batman-vs-joker-dark.yaml | 53 +++ themes/hackpot--hackpot-batman-vs-joker.yaml | 53 +++ themes/hackpot--hackpot-dark-knight.yaml | 53 +++ themes/hackpot--hackpot-darker-knight.yaml | 53 +++ themes/hackpot--hackpot-garden-dark.yaml | 53 +++ .../hackpot--hackpot-garden-of-atlantis.yaml | 53 +++ .../hackpot--hackpot-garden-purple-haze.yaml | 53 +++ themes/hackpot--hackpot-garden.yaml | 53 +++ themes/hackpot--hackpot-muddy-garden.yaml | 53 +++ themes/hackpot--hackpot-poisoned-garden.yaml | 53 +++ themes/haidark.yaml | 53 +++ themes/halcyon-theme.yaml | 53 +++ themes/hamidthedev-pro.yaml | 53 +++ themes/hapsida-securisec--dark.yaml | 53 +++ themes/hapsida-securisec--iceberg.yaml | 53 +++ themes/hapsida-securisec--mountain.yaml | 53 +++ themes/hapsida-securisec--nord.yaml | 53 +++ themes/hapsida-securisec--pastel.yaml | 53 +++ themes/hapsida-securisec--spring.yaml | 53 +++ themes/hapsida-securisec--vintage.yaml | 53 +++ .../hardhacker-theme--hard-hacker-darker.yaml | 53 +++ .../hardhacker-theme--hard-hacker-light.yaml | 53 +++ themes/hardhacker-theme--hard-hacker.yaml | 53 +++ themes/hardxs.yaml | 53 +++ themes/harmonized--harmonized-dark.yaml | 53 +++ themes/harmonized--harmonized-light.yaml | 53 +++ themes/harmonized-harmonized-light-hc.yaml | 53 +++ themes/hashira-code-theme--giyu-tomioka.yaml | 53 +++ .../hashira-code-theme--gyomei-himejima.yaml | 53 +++ .../hashira-code-theme--kyojuro-rengoku.yaml | 53 +++ .../hashira-code-theme--mitsuri-kanroji.yaml | 53 +++ themes/hashira-code-theme--obanai-iguro.yaml | 53 +++ ...ashira-code-theme--sanemi-shinazugawa.yaml | 53 +++ themes/hashira-code-theme--shinobu-kocho.yaml | 53 +++ .../hashira-code-theme--tokito-inspired.yaml | 53 +++ themes/headfox-dark.yaml | 53 +++ themes/hearthcode--hearth-dark-soft.yaml | 53 +++ themes/hearthcode--hearth-dark.yaml | 53 +++ themes/hearthcode--hearth-light.yaml | 53 +++ themes/heaven.yaml | 53 +++ themes/helix-bogster-theme.yaml | 53 +++ themes/helloworld-theme.yaml | 53 +++ themes/henriquedark.yaml | 53 +++ themes/hibiscus-theme.yaml | 53 +++ .../higher-contrast-zenburn--hc-zenburn.yaml | 53 +++ themes/higher-contrast-zenburn.yaml | 53 +++ themes/hjqtheme.yaml | 53 +++ themes/hogwarts.yaml | 53 +++ themes/homecooked.yaml | 53 +++ ...izon-extended-theme--horizon-extended.yaml | 53 +++ themes/horror-vscode-extension.yaml | 53 +++ themes/horus--untitled.yaml | 53 +++ .../huacat-pink-theme--huacat-pink-dark.yaml | 53 +++ themes/huacat-pink-theme--pink-theme.yaml | 53 +++ themes/human-theme--human-dark.yaml | 53 +++ themes/human-theme--human-high-contrast.yaml | 53 +++ themes/human-theme--human-light.yaml | 53 +++ themes/human-theme--human-low-light.yaml | 53 +++ themes/human-theme--human-soft.yaml | 53 +++ themes/human-theme--human-warm.yaml | 53 +++ themes/hyle.yaml | 53 +++ themes/hyprluna-matugen-theme.yaml | 53 +++ themes/i-a-minimal-theme.yaml | 53 +++ themes/i3-dark-theme--i3-panda-custom-ii.yaml | 53 +++ .../i3-dark-theme--i3-panda-custom-iii.yaml | 53 +++ themes/i3-dark-theme--i3-panda-custom.yaml | 53 +++ ...sign-system-theme--ibm-carbon-gray-10.yaml | 53 +++ ...ign-system-theme--ibm-carbon-gray-100.yaml | 53 +++ ...sign-system-theme--ibm-carbon-gray-90.yaml | 53 +++ ...design-system-theme--ibm-carbon-white.yaml | 53 +++ themes/icat-dark-theme.yaml | 53 +++ themes/iceberg-dark.yaml | 53 +++ themes/iceberg-theme--iceberg-light.yaml | 53 +++ themes/iceberg-theme--iceberg.yaml | 53 +++ themes/icon-group--icon-group-dark.yaml | 53 +++ themes/icon-group--icon-group-light.yaml | 53 +++ .../identical-sublime-text-monokai-theme.yaml | 53 +++ themes/idx-dark-theme.yaml | 53 +++ ...nd-idx-theme--idx-xcode-dark-improved.yaml | 53 +++ themes/illusion--illusion.yaml | 53 +++ ...e-ai-foundry-themes--iloveagents-dark.yaml | 56 +++ ...-ai-foundry-themes--iloveagents-light.yaml | 56 +++ ...mes-iloveagents-azure-ai-foundry-dark.yaml | 56 +++ ...es-iloveagents-azure-ai-foundry-light.yaml | 56 +++ themes/ilyat--ilyat-poimandres.yaml | 53 +++ themes/imba.yaml | 53 +++ themes/in-the-fog-theme.yaml | 53 +++ themes/indigo-dream.yaml | 53 +++ themes/inei.yaml | 53 +++ themes/infinite-dark-purple.yaml | 53 +++ themes/infinite-purple.yaml | 53 +++ themes/inheritance--inheritance.yaml | 53 +++ themes/inovando.yaml | 53 +++ themes/insane-dark-theme.yaml | 53 +++ themes/inspiration--green-kingdom.yaml | 53 +++ themes/inspiration--sober-deepnight.yaml | 53 +++ ...nds-theme--intellij-idea-islands-dark.yaml | 53 +++ ...ds-theme--intellij-idea-islands-light.yaml | 53 +++ themes/intellij-idea-new-ui-theme.yaml | 53 +++ themes/intellij-theme.yaml | 53 +++ themes/intelliyay-theme.yaml | 53 +++ ...-theme-light-dark--ironman-theme-dark.yaml | 53 +++ ...theme-light-dark--ironman-theme-light.yaml | 53 +++ themes/irrelevant--mirai.yaml | 54 +++ themes/islands-theme--islands-dark.yaml | 53 +++ themes/islands-theme--islands-light.yaml | 53 +++ themes/iv.yaml | 53 +++ themes/ivalo.yaml | 53 +++ themes/iwa-code-theme.yaml | 53 +++ themes/j-cardenas.yaml | 53 +++ themes/jamestheme.yaml | 53 +++ themes/jammy-jellyfish-color-theme.yaml | 53 +++ themes/jarvis-3d-iron-man-theme.yaml | 53 +++ themes/jarvisdarktheme--jarvis.yaml | 53 +++ themes/jaywxl.yaml | 53 +++ themes/jb-autumn.yaml | 53 +++ themes/jcela.yaml | 53 +++ themes/jdh-vimrc.yaml | 53 +++ themes/jeng-theme-light.yaml | 53 +++ themes/jetbrains-fleet-theme.yaml | 53 +++ ...jetbrains-theme--jetbrains-dark-theme.yaml | 54 +++ ...ains-theme--jetbrains-deep-dark-theme.yaml | 54 +++ themes/jetvibe.yaml | 53 +++ themes/jo-o-dark-theme.yaml | 53 +++ themes/joeel56-halloween-theme.yaml | 53 +++ themes/joey.yaml | 53 +++ themes/jojobii-vscode-colors.yaml | 53 +++ themes/jonaqhan-themes--neutral.yaml | 53 +++ themes/jone-theme.yaml | 53 +++ ...shburnsxyz-vs-code-theme--themer-dark.yaml | 53 +++ ...hburnsxyz-vs-code-theme--themer-light.yaml | 53 +++ themes/jpwdarkness.yaml | 53 +++ themes/just-a-theme.yaml | 53 +++ themes/just-purple.yaml | 53 +++ themes/justcode-theme.yaml | 53 +++ themes/kadaxi-dark.yaml | 53 +++ themes/kaimandres-for-vs-code.yaml | 53 +++ .../kali-theme--dark-red-theme-vs-code.yaml | 53 +++ themes/kalidozza-theme.yaml | 53 +++ themes/kanagawa-flavors--kanagawa-dragon.yaml | 53 +++ themes/kanagawa-flavors--kanagawa-lotus.yaml | 53 +++ themes/kanagawa-flavors--kanagawa-wave.yaml | 53 +++ themes/kanagawa-paper--kanagawa-paper.yaml | 53 +++ ...ue--vague-neovim-theme-extended-light.yaml | 53 +++ ...wa-vague--vague-neovim-theme-extended.yaml | 53 +++ themes/kanagawa-vscode.yaml | 53 +++ themes/kanagawa.yaml | 53 +++ themes/kanao--kanao.yaml | 53 +++ themes/kanao--pink.yaml | 53 +++ themes/kanso-theme--kanso-ink.yaml | 53 +++ themes/kanso-theme--kanso-mist.yaml | 53 +++ themes/kanso-theme--kanso-pearl.yaml | 53 +++ themes/kaolin-themes--kaolin-light-theme.yaml | 53 +++ .../kaolin-themes-kaolin-light-theme-alt.yaml | 53 +++ themes/karma--karma.yaml | 53 +++ themes/karrot-theme.yaml | 53 +++ themes/karry-color-golang-theme.yaml | 53 +++ ...kary-pro-colors--kary-pro-colors-dark.yaml | 53 +++ ...ary-pro-colors--kary-pro-colors-light.yaml | 53 +++ themes/kevin-kolors.yaml | 53 +++ themes/kindfeeling-light.yaml | 53 +++ themes/kinnitchi-neon-theme.yaml | 53 +++ themes/kintsugi--kintsugi-dark.yaml | 53 +++ themes/kintsugi--kintsugi-light.yaml | 53 +++ themes/kirikovr.yaml | 53 +++ themes/kismat.yaml | 53 +++ themes/kite-theme--kite-dark.yaml | 53 +++ themes/kite-theme--kite-darker.yaml | 53 +++ themes/kite-theme--kite-light.yaml | 53 +++ themes/kitty-power.yaml | 53 +++ themes/koala-theme.yaml | 53 +++ themes/kodex--kodex-arctic.yaml | 53 +++ themes/kodex--kodex.yaml | 53 +++ themes/korbit-theme.yaml | 53 +++ themes/korean-dancheong-light.yaml | 53 +++ themes/kraken-theme.yaml | 53 +++ themes/krb-blue--krb-violet.yaml | 53 +++ themes/kripton-flat-theme.yaml | 53 +++ themes/krishna.yaml | 53 +++ themes/ks-nova-theme.yaml | 53 +++ themes/kurdish-theme.yaml | 53 +++ themes/kuromesi-theme.yaml | 53 +++ themes/kyorazo-theme.yaml | 53 +++ themes/lackluster-theme--lackluster-dark.yaml | 53 +++ themes/lackluster-theme--lackluster.yaml | 53 +++ themes/laradark.yaml | 53 +++ themes/laravel-theme.yaml | 53 +++ themes/lavanda-color-theme.yaml | 53 +++ ...ender-code-theme--lavender-dark-theme.yaml | 53 +++ ...nder-code-theme--lavender-light-theme.yaml | 53 +++ themes/lazy-themes.yaml | 53 +++ ...s-vscode-themes--lazzaretti-plenatech.yaml | 53 +++ ...tti-s-vscode-themes--lazzaretti-win11.yaml | 53 +++ .../learn-with-sumit-theme--dark-night.yaml | 53 +++ ...e--learn-with-sumit-blue-velvet-theme.yaml | 53 +++ ...heme--learn-with-sumit-official-theme.yaml | 53 +++ ...me--learn-with-sumit-peace-of-the-eye.yaml | 53 +++ ...--learn-with-sumit-professional-theme.yaml | 53 +++ ...eme--learn-with-sumit-simple-as-light.yaml | 53 +++ ...h-sumit-theme--learn-with-sumit-theme.yaml | 53 +++ ...sumit-theme--learn-with-sumit-vintage.yaml | 53 +++ themes/legally-blind.yaml | 53 +++ themes/legendary-light.yaml | 53 +++ themes/lenglounh-theme.yaml | 53 +++ themes/lennon-red.yaml | 53 +++ themes/leva-ump45.yaml | 53 +++ themes/light-brown-leather.yaml | 53 +++ themes/light-purple.yaml | 53 +++ themes/light-rblx-rian.yaml | 53 +++ themes/light-theme-grey.yaml | 53 +++ themes/light-theme-with-bars.yaml | 53 +++ ...ghthouse-in-the-dark-boon-island-dark.yaml | 53 +++ ...hthouse-in-the-dark-boon-island-light.yaml | 53 +++ ...ghthouse-in-the-dark-rose-island-dark.yaml | 53 +++ ...hthouse-in-the-dark-rose-island-light.yaml | 53 +++ themes/lightning--lightning-cloud.yaml | 53 +++ themes/lightning--lightning-dark.yaml | 53 +++ themes/lightning--lightning-material-day.yaml | 53 +++ ...lightning--lightning-material-evening.yaml | 53 +++ ...ightning--lightning-material-midnight.yaml | 53 +++ .../lightning--lightning-material-soft.yaml | 53 +++ themes/lightning--lightning-soft-dark.yaml | 53 +++ themes/lightning--lightning-soft.yaml | 53 +++ themes/lightning--lightning.yaml | 53 +++ themes/linkarzu-colors.yaml | 53 +++ themes/lino-themes.yaml | 53 +++ .../linux-themes-for-vs-code--arc-dark.yaml | 53 +++ .../linux-themes-for-vs-code--elementary.yaml | 53 +++ .../linux-themes-for-vs-code--yaru-dark.yaml | 53 +++ themes/linux-themes-for-vs-code--yaru.yaml | 53 +++ themes/liquid-ray--liquid-ray-light.yaml | 53 +++ themes/liquid-ray--liquid-ray-soft-pink.yaml | 53 +++ themes/liquid-ray--liquid-ray.yaml | 53 +++ themes/little-league--little-league-dark.yaml | 54 +++ .../little-league--little-league-darker.yaml | 54 +++ .../little-league--little-league-light.yaml | 54 +++ .../loki-official--loki-official-classic.yaml | 53 +++ ...-official--loki-official-kang-edition.yaml | 53 +++ themes/lonely-theme.yaml | 53 +++ themes/lonus.yaml | 53 +++ ...-dark-light-themes--lookify-dark-mode.yaml | 53 +++ ...dark-light-themes--lookify-light-mode.yaml | 53 +++ themes/lotus-dark-theme.yaml | 53 +++ themes/lotus-theme--lotus-dark.yaml | 53 +++ themes/lotus-theme--lotus-light.yaml | 53 +++ ...-strain-dark-neon--cosmicsarthak-dark.yaml | 53 +++ ...-strain-dark-neon--cosmicsarthak-neon.yaml | 53 +++ ...in-dark-neon--cosmicsarthak-night-owl.yaml | 53 +++ ...e-strain-dark-neon--cosmicsarthak-red.yaml | 53 +++ ...w-eye-strain-dark-neon-solarized-dark.yaml | 53 +++ themes/luan-theme.yaml | 53 +++ themes/lucario-theme.yaml | 53 +++ themes/lucid-summer-nights--summer.yaml | 53 +++ themes/lucifer-dark.yaml | 53 +++ themes/luiciff-themes-pack--dark.yaml | 53 +++ themes/luiciff-themes-pack--light.yaml | 53 +++ themes/luiciff-themes-pack--neon.yaml | 53 +++ themes/luiz-dark--luiz-dark-theme.yaml | 53 +++ themes/luk3-theme.yaml | 53 +++ themes/lumina-theme.yaml | 53 +++ themes/luminashade.yaml | 53 +++ themes/lumineclips.yaml | 53 +++ themes/lumon.yaml | 53 +++ themes/lunar-color-theme.yaml | 53 +++ ...ar-eclipse--lunar-eclipse-golden-hour.yaml | 53 +++ .../lunar-eclipse--lunar-eclipse-light.yaml | 53 +++ themes/lunar-eclipse--lunar-eclipse.yaml | 53 +++ .../lunar-eclipse--total-lunar-eclipse.yaml | 53 +++ ...unar-pink-theme--lunar-pink-satellite.yaml | 53 +++ themes/lunar-pink-theme--lunar-pink.yaml | 53 +++ themes/lunarvim-dark-theme.yaml | 53 +++ themes/m2-theme.yaml | 53 +++ themes/macindowsvs.yaml | 53 +++ themes/macos-theme.yaml | 53 +++ themes/maeel-theme.yaml | 53 +++ themes/magic-theme-dark.yaml | 53 +++ themes/maia-theme-purple.yaml | 53 +++ themes/mak1na-theme--mak1na-theme.yaml | 53 +++ themes/make-apps-theme.yaml | 53 +++ themes/maple-theme--maple-dark.yaml | 53 +++ themes/maple-theme--maple-light.yaml | 53 +++ themes/marciorasf-s-dracula--darkula.yaml | 53 +++ ...iana-dark-theme--sublime-text-4-theme.yaml | 53 +++ themes/mariana-no-italic.yaml | 53 +++ themes/mariana-pro-mariana-pro.yaml | 53 +++ .../mariana-refined-theme--mariana-light.yaml | 53 +++ ...ariana-refined-theme--mariana-refined.yaml | 53 +++ themes/marmure-dark.yaml | 53 +++ themes/maroon-theme.yaml | 53 +++ themes/maroza-theme--maroza-cyber-chill.yaml | 53 +++ themes/maroza-theme--maroza-dark-theme.yaml | 53 +++ themes/maroza-theme--maroza-light-theme.yaml | 53 +++ .../maroza-theme--maroza-soothing-aqua.yaml | 53 +++ themes/maroza-theme--maroza-zen-pro.yaml | 53 +++ themes/martial-theme.yaml | 53 +++ themes/matcha-pastel.yaml | 53 +++ themes/material-aurora.yaml | 53 +++ themes/material-festoon.yaml | 53 +++ themes/material-light-theme--and-dark.yaml | 53 +++ ...al-light-theme-and-dark--one-dark-pro.yaml | 53 +++ themes/material-monokai-theme.yaml | 53 +++ themes/material-neutral-theme.yaml | 53 +++ ...heme-italicize--material-theme-darker.yaml | 53 +++ ...eme-italicize--material-theme-default.yaml | 53 +++ ...-material-theme-lighter-high-contrast.yaml | 53 +++ ...eme-italicize--material-theme-lighter.yaml | 53 +++ ...e-italicize--material-theme-palenight.yaml | 53 +++ themes/material-tweaked.yaml | 53 +++ themes/material-ui.yaml | 53 +++ themes/matrix-theme.yaml | 53 +++ ...ium-studio-theme--matte-atelier-ivory.yaml | 53 +++ ...me--matte-atelier-obsidian-colorblind.yaml | 53 +++ ...-matte-atelier-obsidian-high-contrast.yaml | 53 +++ ...-studio-theme--matte-atelier-obsidian.yaml | 53 +++ ...emium-studio-theme--matte-atelier-ros.yaml | 53 +++ ...-studio-theme--matte-atelier-sapphire.yaml | 53 +++ themes/matteric-theme.yaml | 53 +++ themes/matugen-vscode.yaml | 53 +++ themes/maus-theme.yaml | 53 +++ ...--carbon-react-color-theme-maya-black.yaml | 53 +++ ...-theme--carbon-react-color-theme-maya.yaml | 53 +++ ...color-theme--carbon-react-color-theme.yaml | 53 +++ themes/mayukai-theme--mayukai.yaml | 53 +++ themes/mcburger--mcdark-theme.yaml | 53 +++ themes/meaow-theme--meaow-dark.yaml | 53 +++ .../melange-redux--melange-redux-light.yaml | 53 +++ themes/meocean-themes--meoceanemerald.yaml | 53 +++ themes/meowrch-code-theme.yaml | 53 +++ themes/meridian-theme--meridian-neutral.yaml | 53 +++ themes/meridian-theme--meridian.yaml | 53 +++ themes/meshvoid-themes--meshvoid-light.yaml | 53 +++ themes/meshvoid-themes--meshvoid.yaml | 53 +++ themes/miasma.yaml | 53 +++ themes/mid-nigth.yaml | 53 +++ themes/midas-touch--midas-touch.yaml | 53 +++ themes/midnight-city--midnight-city.yaml | 53 +++ ...hic-theme-collection--gothic-absinthe.yaml | 53 +++ ...ic-theme-collection--gothic-amber-fog.yaml | 53 +++ ...c-theme-collection--gothic-blood-moon.yaml | 53 +++ ...ic-theme-collection--gothic-cathedral.yaml | 53 +++ ...hic-theme-collection--gothic-cemetery.yaml | 53 +++ ...heme-collection--gothic-emerald-crypt.yaml | 53 +++ ...othic-theme-collection--gothic-jester.yaml | 53 +++ ...heme-collection--gothic-midnight-rose.yaml | 53 +++ ...gothic-theme-collection--gothic-qaddy.yaml | 53 +++ ...gothic-theme-collection--gothic-raven.yaml | 53 +++ ...-theme-collection--gothic-spider-lily.yaml | 53 +++ ...me-collection--gothic-twilight-forest.yaml | 53 +++ ...thic-theme-collection--gothic-vampire.yaml | 53 +++ ...collection--gothic-victorian-mourning.yaml | 53 +++ themes/midnight-mirage-theme.yaml | 53 +++ ...ht-moon-themes--midnight-moon-eclipse.yaml | 53 +++ ...ight-moon-themes--midnight-moon-ukiyo.yaml | 53 +++ .../midnight-moon-themes--midnight-moon.yaml | 53 +++ .../midnight-moon-themes--midnight-pro.yaml | 53 +++ .../midnight-moon-themes--midnight-ukiyo.yaml | 53 +++ themes/midnight-moon-themes--zen-mono.yaml | 53 +++ themes/midnight-shadow.yaml | 53 +++ themes/midnight-theme--midnight-theme.yaml | 53 +++ themes/midwinter--nord.yaml | 53 +++ themes/mikestheme.yaml | 53 +++ themes/miku-code--miku-code-fusion-light.yaml | 53 +++ themes/miku-code--miku-code-light.yaml | 53 +++ themes/miku-code--miku-code.yaml | 53 +++ themes/miku-theme.yaml | 53 +++ themes/militry-green.yaml | 53 +++ themes/milky-way.yaml | 53 +++ themes/min-gruvbox-theme.yaml | 53 +++ themes/min-theme.yaml | 53 +++ themes/minimal--minimal.yaml | 53 +++ themes/minimal--shades.yaml | 53 +++ themes/minimal--themeframek.yaml | 53 +++ themes/minimal-44--minimal-44-pro.yaml | 53 +++ themes/minimal-44--minimal-44.yaml | 53 +++ ...l-monochrome--minimal-monochrome-dark.yaml | 53 +++ ...nochrome--minimal-monochrome-ink-dark.yaml | 53 +++ ...ochrome--minimal-monochrome-ink-light.yaml | 53 +++ ...-monochrome--minimal-monochrome-light.yaml | 53 +++ ...hrome--minimal-monochrome-pastel-dawn.yaml | 53 +++ ...rome--minimal-monochrome-pastel-light.yaml | 53 +++ ...chrome--minimal-monochrome-slate-dark.yaml | 53 +++ themes/minokai.yaml | 53 +++ themes/mint-theme--mint-dark.yaml | 53 +++ themes/mio.yaml | 53 +++ themes/mir2-theme--themer-dark.yaml | 53 +++ themes/mir2-theme--themer-light.yaml | 53 +++ themes/misty-blue--misty-blue.yaml | 53 +++ themes/mkanet-theme.yaml | 53 +++ themes/modest-pink-theme.yaml | 53 +++ themes/moegi-theme--moegi-black-zen.yaml | 53 +++ themes/moegi-theme--moegi-black.yaml | 53 +++ themes/moegi-theme--moegi-dark.yaml | 53 +++ themes/moegi-theme--moegi-dawn.yaml | 53 +++ themes/moegi-theme--moegi-iris.yaml | 53 +++ themes/moegi-theme--moegi-light.yaml | 53 +++ themes/moegi-theme--moegi-space.yaml | 53 +++ themes/molokai-dark.yaml | 53 +++ themes/monassa.yaml | 53 +++ themes/mono--mono-dark.yaml | 53 +++ themes/mono--mono-white.yaml | 53 +++ themes/mono-atom--mono-atom.yaml | 53 +++ ...nochromator--monochromator-dark-plain.yaml | 53 +++ ...ochromator--monochromator-light-plain.yaml | 53 +++ ...monochrome--monochrome-dark-amplified.yaml | 53 +++ ...monochrome--monochrome-dark-cool-gray.yaml | 53 +++ .../monochrome--monochrome-dark-indigo.yaml | 53 +++ .../monochrome--monochrome-dark-subtle.yaml | 53 +++ themes/monochrome--monochrome-dark.yaml | 53 +++ ...onochrome--monochrome-light-amplified.yaml | 53 +++ ...onochrome--monochrome-light-cool-gray.yaml | 53 +++ .../monochrome--monochrome-light-indigo.yaml | 53 +++ .../monochrome--monochrome-light-subtle.yaml | 53 +++ themes/monochrome--monochrome-light.yaml | 53 +++ themes/monochrome--monochrome.yaml | 53 +++ ...-dkamyshov--monochrome-dark-amplified.yaml | 53 +++ ...-by-dkamyshov--monochrome-dark-subtle.yaml | 53 +++ ...me-fork-by-dkamyshov--monochrome-dark.yaml | 53 +++ ...dkamyshov--monochrome-light-amplified.yaml | 53 +++ ...by-dkamyshov--monochrome-light-subtle.yaml | 53 +++ ...e-fork-by-dkamyshov--monochrome-light.yaml | 53 +++ .../monochrome-monochrome-github-edition.yaml | 53 +++ themes/monochrome-theme.yaml | 53 +++ themes/monocious.yaml | 53 +++ themes/monokai-accents--monokai-red.yaml | 53 +++ themes/monokai-after-dark.yaml | 53 +++ themes/monokai-air-theme.yaml | 53 +++ ...onokai-dark-green--monokai-dark-green.yaml | 53 +++ themes/monokai-dark-theme.yaml | 53 +++ themes/monokai-dev--dev2.yaml | 53 +++ themes/monokai-dev--dev3.yaml | 53 +++ themes/monokai-dev--dev4.yaml | 53 +++ themes/monokai-dev--dev5.yaml | 53 +++ themes/monokai-dev--dev6.yaml | 53 +++ themes/monokai-dev--dev7.yaml | 53 +++ themes/monokai-dev--dev8.yaml | 53 +++ themes/monokai-dev--dev9.yaml | 53 +++ themes/monokai-grs-elixir-fork.yaml | 53 +++ themes/monokai-japan-theme.yaml | 53 +++ themes/monokai-mahesh.yaml | 53 +++ themes/monokai-night-theme.yaml | 53 +++ themes/monokai-ocean.yaml | 53 +++ themes/monokai-red-moon.yaml | 53 +++ themes/monokai-seti.yaml | 53 +++ themes/monokai-theme-use-high-contrast.yaml | 53 +++ themes/monokai.yaml | 53 +++ themes/monokard-theme.yaml | 53 +++ .../monolite-space--monolite-space-dark.yaml | 53 +++ .../monolite-space--monolite-space-gray.yaml | 53 +++ themes/monospace-theme--monospace-dark.yaml | 53 +++ themes/monospace-theme--monospace-light.yaml | 53 +++ themes/monospace-theme--space-dark.yaml | 53 +++ themes/monospace-theme--space-light.yaml | 53 +++ themes/monotone.yaml | 53 +++ themes/monove.yaml | 53 +++ themes/monte-cristo.yaml | 53 +++ themes/moonbloom-official-theme.yaml | 53 +++ themes/moonlight-vscode-theme.yaml | 53 +++ themes/moonspell-themes.yaml | 53 +++ themes/more-colorful.yaml | 53 +++ themes/morgan-codes-theme.yaml | 53 +++ themes/morita--azul.yaml | 53 +++ themes/morita--sober.yaml | 53 +++ themes/mosaic-theme.yaml | 53 +++ themes/mr-robot-dark-theme.yaml | 53 +++ themes/mt-doom.yaml | 53 +++ themes/muromachi-deluxe.yaml | 53 +++ themes/murora.yaml | 53 +++ themes/my-custom-theme-extension.yaml | 53 +++ themes/my-theme-luisfelipe.yaml | 53 +++ themes/mystic-blue.yaml | 53 +++ .../mystic-dark-collection--deep-ocean.yaml | 53 +++ themes/mystic-fusion.yaml | 53 +++ themes/nachop-theme--piggy.yaml | 53 +++ themes/nairobi.yaml | 53 +++ themes/naomi-s-themes--ocean-breeze.yaml | 53 +++ .../naomi-s-themes--sakura-dreams-dark.yaml | 53 +++ themes/naomi-s-themes--sakura-dreams.yaml | 53 +++ themes/naomi-s-themes--witchy-dark.yaml | 53 +++ ...aomi-s-themes-trans-pride-light-naomi.yaml | 53 +++ themes/narato--kanao.yaml | 53 +++ themes/narixius-theme.yaml | 53 +++ ...theme--hashirama-senju-god-of-shinobi.yaml | 53 +++ ...naruto-shinobi-theme--naruto-akatsuki.yaml | 53 +++ ...--naruto-hinata-hyuga-byakugan-vision.yaml | 53 +++ ...uto-shinobi-theme--naruto-hokage-dawn.yaml | 53 +++ ...uto-itachi-uchiha-tsukuyomi-dimension.yaml | 53 +++ ...eme--naruto-jiraiya-gallant-toad-sage.yaml | 53 +++ ...nobi-theme--naruto-kakashi-copy-ninja.yaml | 53 +++ ...inobi-theme--naruto-kurama-nine-tails.yaml | 53 +++ ...hina-uzumaki-red-hot-blooded-habanero.yaml | 53 +++ ...might-guy-gate-of-death-madara-battle.yaml | 53 +++ ...heme--naruto-might-guy-gates-of-youth.yaml | 53 +++ ...--naruto-minato-namikaze-yellow-flash.yaml | 53 +++ ...heme--naruto-pain-nagato-rinnegan-god.yaml | 53 +++ ...aruto-shinobi-theme--naruto-sage-mode.yaml | 53 +++ ...to-sakura-haruno-cherry-blossom-storm.yaml | 53 +++ ...theme--naruto-sasuke-uchiha-sharingan.yaml | 53 +++ ...ruto-shikamaru-nara-shadow-possession.yaml | 53 +++ ...o-shinobi-theme--naruto-shinobi-night.yaml | 53 +++ ...o-shinobi-theme--tobirama-water-style.yaml | 53 +++ themes/natasha-purple.yaml | 53 +++ themes/natty.yaml | 53 +++ themes/natural-green.yaml | 53 +++ themes/naturefy-themes--koi-pond-dark.yaml | 53 +++ themes/naturefy-themes--koi-pond-light.yaml | 53 +++ .../naturefy-themes--ukiyo-e-manuscript.yaml | 53 +++ themes/nb-monochrome.yaml | 53 +++ themes/nebula-colorscheme.yaml | 53 +++ themes/nebula-dark-theme-pack.yaml | 53 +++ themes/nebula-dark.yaml | 53 +++ themes/nebula-for-vs-code.yaml | 53 +++ themes/nebula-nights-pastel.yaml | 53 +++ themes/nebula-theme.yaml | 53 +++ themes/necessity--necessity-aaa-light.yaml | 53 +++ themes/necessity--necessity-aaa.yaml | 53 +++ themes/neo-nuxt-blend--neo-nuxt-matte.yaml | 53 +++ ...-blend--nuxt-blend-bleach-color-theme.yaml | 53 +++ themes/neo-nuxt-blend--nuxt-blend.yaml | 53 +++ themes/neo-seoul-theme--neo-seoul-dark.yaml | 53 +++ themes/neo-seoul-theme--neo-seoul-light.yaml | 53 +++ themes/neo-theme.yaml | 53 +++ ...-dark-theme--jetbrains-ide-dark-theme.yaml | 53 +++ ...dark-theme--matrix-hacking-dark-theme.yaml | 53 +++ ...lor-dark-theme--neon-color-dark-theme.yaml | 53 +++ ...-color-dark-theme--one-dark-pro-theme.yaml | 53 +++ ...-theme--visual-studio-code-dark-theme.yaml | 53 +++ .../neon-cyberpunk-theme--neon-cyberpunk.yaml | 53 +++ themes/neon-cyberpunk-theme--neon-glow.yaml | 53 +++ themes/neon-cyberpunk-theme--neon-matrix.yaml | 53 +++ themes/neon-cyberpunk-theme--neon-ocean.yaml | 53 +++ themes/neon-cyberpunk-theme--neon-sunset.yaml | 53 +++ .../neon-cyberpunk-theme--neon-synthwave.yaml | 53 +++ themes/neon-cyberpunk-theme--neon-violet.yaml | 53 +++ themes/neon-dreams-theme--neon-dreams.yaml | 53 +++ themes/neon-genesis-evangelion-themes.yaml | 53 +++ ...green-dark-terminal--neon-green-light.yaml | 54 +++ ...en-dark-terminal--neon-green-midnight.yaml | 54 +++ themes/neon-jet.yaml | 53 +++ ...alette-themes-neon-palette-themes-red.yaml | 53 +++ themes/neon-shimmer--neon-shimmer.yaml | 53 +++ ...on-shimmer-neon-shimmer-amethyst-core.yaml | 53 +++ ...n-shimmer-neon-shimmer-bubblegum-punk.yaml | 53 +++ ...on-shimmer-neon-shimmer-crimson-drive.yaml | 53 +++ themes/neonite-theme.yaml | 53 +++ themes/neovim-theme--neovim-theme.yaml | 53 +++ themes/nest-theme.yaml | 53 +++ themes/nestjs-full-color-theme.yaml | 53 +++ themes/netbilla--untitled.yaml | 53 +++ themes/netlify-theme--netlify.yaml | 53 +++ themes/netlify-vscode-theme.yaml | 55 +++ themes/neutral--bluesea.yaml | 53 +++ themes/neutral--neutral.yaml | 53 +++ themes/neutral--neutralvi.yaml | 53 +++ themes/new-dark-railscasts.yaml | 53 +++ themes/new-england.yaml | 53 +++ themes/new-moon-syntax-theme.yaml | 53 +++ themes/newera-theme.yaml | 53 +++ themes/next-js-theme.yaml | 53 +++ ...-dark-themes-collection--cybersec-pro.yaml | 53 +++ ...es-collection--matrix-reloaded-locked.yaml | 53 +++ ...rk-themes-collection--matrix-reloaded.yaml | 53 +++ ...k-themes-collection--nextgen-terminal.yaml | 53 +++ ...-dark-themes-collection--quantum-flux.yaml | 53 +++ ...hemes-for-developers--ngc-aurora-dawn.yaml | 53 +++ ...emes-for-developers--ngc-aurora-night.yaml | 53 +++ ...es-for-developers--ngc-forest-retreat.yaml | 53 +++ ...mes-for-developers--ngc-midnight-base.yaml | 53 +++ .../nibelung-theme-vscode--nibelung-dark.yaml | 53 +++ themes/nibelung-theme-vscode--nibelung.yaml | 53 +++ themes/nice-dark--nice-dark.yaml | 53 +++ themes/nicely-neon-theme.yaml | 53 +++ ...t-blue-high-voidjmp-vscode-extensions.yaml | 53 +++ themes/night-dark-theme.yaml | 53 +++ themes/night-howl--night-howl.yaml | 53 +++ themes/night-node.yaml | 53 +++ ...-owl-oled-dim--night-owl-oled-dim-100.yaml | 53 +++ ...t-owl-oled-dim--night-owl-oled-dim-75.yaml | 53 +++ ...t-owl-oled-dim--night-owl-oled-dim-80.yaml | 53 +++ ...t-owl-oled-dim--night-owl-oled-dim-85.yaml | 53 +++ ...t-owl-oled-dim--night-owl-oled-dim-90.yaml | 53 +++ ...t-owl-oled-dim--night-owl-oled-dim-95.yaml | 53 +++ .../night-rainbow--night-rainbow-darker.yaml | 53 +++ ...ht-rainbow--night-rainbow-purple-haze.yaml | 53 +++ themes/night-rainbow--night-rainbow.yaml | 53 +++ themes/night-wolf--themename.yaml | 53 +++ themes/night-zen-theme.yaml | 53 +++ themes/nightaurora.yaml | 53 +++ themes/nightcall--nightcall.yaml | 53 +++ themes/nightfall.yaml | 53 +++ themes/nightfox--carbonfox.yaml | 53 +++ themes/nightfox--duskfox.yaml | 53 +++ themes/nightfox--nightfox.yaml | 53 +++ themes/nightfox--nordfox.yaml | 53 +++ themes/nightfox--terafox.yaml | 53 +++ themes/nightowl.yaml | 53 +++ themes/nighty-purple.yaml | 53 +++ themes/nikso-theme.yaml | 53 +++ themes/nimbuslab-theme-color.yaml | 53 +++ ...emes--tara-theme-carbon-high-contrast.yaml | 53 +++ themes/nishuuu-themes--tara-theme-carbon.yaml | 53 +++ ...nishuuu-themes--tara-theme-deepforest.yaml | 53 +++ themes/nishuuu-themes--tara-theme-ocean.yaml | 53 +++ .../nishuuu-themes--tara-theme-palenight.yaml | 53 +++ themes/nishuuu-themes--tara-theme-teal.yaml | 53 +++ themes/nix--lunar.yaml | 53 +++ themes/nix--nix.yaml | 53 +++ themes/no-theme.yaml | 53 +++ themes/noctis--noctis-azureus.yaml | 53 +++ themes/noctis--noctis-bordo.yaml | 53 +++ themes/noctis--noctis-hibernus.yaml | 53 +++ themes/noctis--noctis-lilac.yaml | 53 +++ themes/noctis--noctis-lux.yaml | 53 +++ themes/noctis--noctis-minimus.yaml | 53 +++ themes/noctis--noctis-obscuro.yaml | 53 +++ themes/noctis--noctis-sereno.yaml | 53 +++ themes/noctis--noctis-uva.yaml | 53 +++ themes/noctis--noctis-viola.yaml | 53 +++ themes/noctis--noctis.yaml | 53 +++ ...s-high-contrast--noctis-high-contrast.yaml | 53 +++ themes/noctis-lux-medium.yaml | 53 +++ themes/noctis.yaml | 53 +++ themes/nocturnal-theme.yaml | 53 +++ themes/noir--noir-dracula.yaml | 53 +++ themes/noir--noir-outrun.yaml | 53 +++ themes/noir--noir-owl.yaml | 53 +++ themes/noir--noir-poimandres-black.yaml | 53 +++ themes/noir--noir-poimandres-dark.yaml | 53 +++ themes/noir--noir-poimandres-darker.yaml | 53 +++ themes/noir--noir-ros-pine-grey.yaml | 53 +++ themes/noir--noir-ros-pine-moon-grey.yaml | 53 +++ themes/noir--noir-tokyo-night-black.yaml | 53 +++ themes/noir--noir-tokyo-night.yaml | 53 +++ themes/noir-essence--noir-essence-dark.yaml | 53 +++ themes/noir-essence--noir-essence-light.yaml | 53 +++ themes/noir-vs-code-theme-noir-dark.yaml | 53 +++ themes/noir-vs-code-theme-noir-light.yaml | 53 +++ themes/noir.yaml | 53 +++ ...ord-dark-contrast--nord-dark-contrast.yaml | 53 +++ themes/nord-dark-pro--nord-dark-pro.yaml | 53 +++ themes/nord-dark-pro--one-dark-pro.yaml | 53 +++ themes/nord-dark.yaml | 53 +++ ...eep-but-you-can-actually-see-comments.yaml | 53 +++ themes/nord-palette--nord-palette.yaml | 53 +++ themes/nordic-vscode.yaml | 53 +++ themes/nosk-orange-theme.yaml | 53 +++ themes/notes-ocean-theme.yaml | 53 +++ themes/notthevimguy.yaml | 53 +++ themes/nova-theme.yaml | 53 +++ themes/nox04-theme.yaml | 53 +++ themes/noxis--noxis.yaml | 53 +++ themes/nushu--nushu-classic.yaml | 54 +++ themes/nushu--nushu-dark.yaml | 54 +++ themes/nushu--nushu-light.yaml | 54 +++ themes/nuuvo.yaml | 53 +++ themes/nuxtian--nuxtian-deep-space.yaml | 53 +++ themes/nuxtian--nuxtian-light.yaml | 53 +++ themes/nuxtian--nuxtian-nitro.yaml | 53 +++ themes/nuxtian--nuxtian.yaml | 53 +++ themes/nuxtian--nuxtiansololevel.yaml | 53 +++ themes/nuxtian--nuxtvite.yaml | 53 +++ themes/nuxtian--nuxtvoid.yaml | 53 +++ themes/nvtokyo-night.yaml | 53 +++ themes/nyc-winter-theme.yaml | 53 +++ themes/oak--oak-dark.yaml | 54 +++ themes/oak--oak.yaml | 54 +++ ...ian-dark-theme--rust-syntax-optimized.yaml | 53 +++ themes/obsidian-ember-theme.yaml | 53 +++ themes/obsidianite--obsidianite-amoled.yaml | 53 +++ themes/obsidianite--obsidianite.yaml | 53 +++ themes/oc7-light.yaml | 54 +++ themes/ocean-monokai.yaml | 53 +++ themes/ocms-theme--red.yaml | 53 +++ themes/octopus--deep-ocean.yaml | 53 +++ themes/office-theme--word-color-theme.yaml | 53 +++ themes/office-theme--word-dark-theme.yaml | 53 +++ ...hled-themes-142-in-1--ohled-aliceblue.yaml | 53 +++ ...d-themes-142-in-1--ohled-antiquewhite.yaml | 53 +++ themes/ohled-themes-142-in-1--ohled-aqua.yaml | 53 +++ ...led-themes-142-in-1--ohled-aquamarine.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-azure.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-beige.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-bisque.yaml | 53 +++ ...themes-142-in-1--ohled-blanchedalmond.yaml | 53 +++ themes/ohled-themes-142-in-1--ohled-blue.yaml | 53 +++ ...led-themes-142-in-1--ohled-blueviolet.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-brown.yaml | 53 +++ ...hled-themes-142-in-1--ohled-burlywood.yaml | 53 +++ ...hled-themes-142-in-1--ohled-cadetblue.yaml | 53 +++ ...led-themes-142-in-1--ohled-chartreuse.yaml | 53 +++ ...hled-themes-142-in-1--ohled-chocolate.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-coral.yaml | 53 +++ ...themes-142-in-1--ohled-cornflowerblue.yaml | 53 +++ ...ohled-themes-142-in-1--ohled-cornsilk.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-crimson.yaml | 53 +++ ...ohled-themes-142-in-1--ohled-darkblue.yaml | 53 +++ ...ohled-themes-142-in-1--ohled-darkcyan.yaml | 53 +++ ...-themes-142-in-1--ohled-darkgoldenrod.yaml | 53 +++ ...ohled-themes-142-in-1--ohled-darkgray.yaml | 53 +++ ...hled-themes-142-in-1--ohled-darkgreen.yaml | 53 +++ ...hled-themes-142-in-1--ohled-darkkhaki.yaml | 53 +++ ...ed-themes-142-in-1--ohled-darkmagenta.yaml | 53 +++ ...themes-142-in-1--ohled-darkolivegreen.yaml | 53 +++ ...led-themes-142-in-1--ohled-darkorange.yaml | 53 +++ ...led-themes-142-in-1--ohled-darkorchid.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-darkred.yaml | 53 +++ ...led-themes-142-in-1--ohled-darksalmon.yaml | 53 +++ ...d-themes-142-in-1--ohled-darkseagreen.yaml | 53 +++ ...-themes-142-in-1--ohled-darkslateblue.yaml | 53 +++ ...-themes-142-in-1--ohled-darkslategray.yaml | 53 +++ ...-themes-142-in-1--ohled-darkturquoise.yaml | 53 +++ ...led-themes-142-in-1--ohled-darkviolet.yaml | 53 +++ ...ohled-themes-142-in-1--ohled-deeppink.yaml | 53 +++ ...ed-themes-142-in-1--ohled-deepskyblue.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-dimgray.yaml | 53 +++ ...led-themes-142-in-1--ohled-dodgerblue.yaml | 53 +++ ...hled-themes-142-in-1--ohled-firebrick.yaml | 53 +++ ...ed-themes-142-in-1--ohled-forestgreen.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-fuchsia.yaml | 53 +++ ...hled-themes-142-in-1--ohled-gainsboro.yaml | 53 +++ ...led-themes-142-in-1--ohled-ghostwhite.yaml | 53 +++ themes/ohled-themes-142-in-1--ohled-gold.yaml | 53 +++ ...hled-themes-142-in-1--ohled-goldenrod.yaml | 53 +++ themes/ohled-themes-142-in-1--ohled-gray.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-green.yaml | 53 +++ ...ed-themes-142-in-1--ohled-greenyellow.yaml | 53 +++ ...ohled-themes-142-in-1--ohled-honeydew.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-hotpink.yaml | 53 +++ ...hled-themes-142-in-1--ohled-indianred.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-indigo.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-ivory.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-khaki.yaml | 53 +++ ...ohled-themes-142-in-1--ohled-lavender.yaml | 53 +++ ...-themes-142-in-1--ohled-lavenderblush.yaml | 53 +++ ...hled-themes-142-in-1--ohled-lawngreen.yaml | 53 +++ ...d-themes-142-in-1--ohled-lemonchiffon.yaml | 53 +++ ...hled-themes-142-in-1--ohled-lightblue.yaml | 53 +++ ...led-themes-142-in-1--ohled-lightcoral.yaml | 53 +++ ...hled-themes-142-in-1--ohled-lightcyan.yaml | 53 +++ ...-142-in-1--ohled-lightgoldenrodyellow.yaml | 53 +++ ...hled-themes-142-in-1--ohled-lightgray.yaml | 53 +++ ...led-themes-142-in-1--ohled-lightgreen.yaml | 53 +++ ...hled-themes-142-in-1--ohled-lightpink.yaml | 53 +++ ...ed-themes-142-in-1--ohled-lightsalmon.yaml | 53 +++ ...-themes-142-in-1--ohled-lightseagreen.yaml | 53 +++ ...d-themes-142-in-1--ohled-lightskyblue.yaml | 53 +++ ...themes-142-in-1--ohled-lightslategray.yaml | 53 +++ ...themes-142-in-1--ohled-lightsteelblue.yaml | 53 +++ ...ed-themes-142-in-1--ohled-lightyellow.yaml | 53 +++ themes/ohled-themes-142-in-1--ohled-lime.yaml | 53 +++ ...hled-themes-142-in-1--ohled-limegreen.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-linen.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-maroon.yaml | 53 +++ ...emes-142-in-1--ohled-mediumaquamarine.yaml | 53 +++ ...led-themes-142-in-1--ohled-mediumblue.yaml | 53 +++ ...d-themes-142-in-1--ohled-mediumorchid.yaml | 53 +++ ...d-themes-142-in-1--ohled-mediumpurple.yaml | 53 +++ ...themes-142-in-1--ohled-mediumseagreen.yaml | 53 +++ ...hemes-142-in-1--ohled-mediumslateblue.yaml | 53 +++ ...mes-142-in-1--ohled-mediumspringgreen.yaml | 53 +++ ...hemes-142-in-1--ohled-mediumturquoise.yaml | 53 +++ ...hemes-142-in-1--ohled-mediumvioletred.yaml | 53 +++ ...d-themes-142-in-1--ohled-midnightblue.yaml | 53 +++ ...hled-themes-142-in-1--ohled-mintcream.yaml | 53 +++ ...hled-themes-142-in-1--ohled-mistyrose.yaml | 53 +++ ...ohled-themes-142-in-1--ohled-moccasin.yaml | 53 +++ ...ed-themes-142-in-1--ohled-navajowhite.yaml | 53 +++ themes/ohled-themes-142-in-1--ohled-navy.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-oldlace.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-olive.yaml | 53 +++ ...hled-themes-142-in-1--ohled-olivedrab.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-orange.yaml | 53 +++ ...hled-themes-142-in-1--ohled-orangered.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-orchid.yaml | 53 +++ ...-themes-142-in-1--ohled-palegoldenrod.yaml | 53 +++ ...hled-themes-142-in-1--ohled-palegreen.yaml | 53 +++ ...-themes-142-in-1--ohled-paleturquoise.yaml | 53 +++ ...-themes-142-in-1--ohled-palevioletred.yaml | 53 +++ ...led-themes-142-in-1--ohled-papayawhip.yaml | 53 +++ ...hled-themes-142-in-1--ohled-peachpuff.yaml | 53 +++ themes/ohled-themes-142-in-1--ohled-peru.yaml | 53 +++ themes/ohled-themes-142-in-1--ohled-pink.yaml | 53 +++ themes/ohled-themes-142-in-1--ohled-plum.yaml | 53 +++ ...led-themes-142-in-1--ohled-powderblue.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-purple.yaml | 53 +++ ...-themes-142-in-1--ohled-rebeccapurple.yaml | 53 +++ themes/ohled-themes-142-in-1--ohled-red.yaml | 53 +++ ...hled-themes-142-in-1--ohled-rosybrown.yaml | 53 +++ ...hled-themes-142-in-1--ohled-royalblue.yaml | 53 +++ ...ed-themes-142-in-1--ohled-saddlebrown.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-salmon.yaml | 53 +++ ...led-themes-142-in-1--ohled-sandybrown.yaml | 53 +++ ...ohled-themes-142-in-1--ohled-seagreen.yaml | 53 +++ ...ohled-themes-142-in-1--ohled-seashell.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-sienna.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-silver.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-skyblue.yaml | 53 +++ ...hled-themes-142-in-1--ohled-slateblue.yaml | 53 +++ ...hled-themes-142-in-1--ohled-slategray.yaml | 53 +++ themes/ohled-themes-142-in-1--ohled-snow.yaml | 53 +++ ...ed-themes-142-in-1--ohled-springgreen.yaml | 53 +++ ...hled-themes-142-in-1--ohled-steelblue.yaml | 53 +++ themes/ohled-themes-142-in-1--ohled-tan.yaml | 53 +++ themes/ohled-themes-142-in-1--ohled-teal.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-thistle.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-tomato.yaml | 53 +++ ...hled-themes-142-in-1--ohled-turquoise.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-violet.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-wheat.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-white.yaml | 53 +++ ...led-themes-142-in-1--ohled-whitesmoke.yaml | 53 +++ .../ohled-themes-142-in-1--ohled-yellow.yaml | 53 +++ ...ed-themes-142-in-1--ohled-yellowgreen.yaml | 53 +++ ...d-themes-142-in-1--ohled-yelloworange.yaml | 53 +++ ...led-themes-142-in-1--ohled-yellowpink.yaml | 53 +++ ...d-themes-142-in-1--ohled-yellowpurple.yaml | 53 +++ themes/oksolar-solarized-dark.yaml | 54 +++ themes/oksolar-solarized-light.yaml | 54 +++ .../oldschool-theme-windows-95-edition.yaml | 53 +++ themes/omni-dark--omni-customized-dark.yaml | 53 +++ themes/omni-dracula-dark--focus-colors.yaml | 53 +++ .../omni-dracula-dark--omni-dracula-dark.yaml | 53 +++ .../omni-dracula-dark--omni-monokai-dark.yaml | 53 +++ ...ni-dracula-theme-tradicional-contrast.yaml | 53 +++ ...theme--omni-dracula-theme-tradicional.yaml | 53 +++ ...cula-vscode-theme--omni-dracula-theme.yaml | 53 +++ ...--omni-dracula-wine-theme-tradicional.yaml | 53 +++ themes/omni-pro-theme--omni-pro.yaml | 53 +++ themes/omni-theme-customized.yaml | 53 +++ themes/omni-theme.yaml | 53 +++ ...-night-theme--one-dark-night-blue-boy.yaml | 53 +++ ...-night-theme--one-dark-night-eye-care.yaml | 53 +++ ...ight-theme--one-dark-night-minimalist.yaml | 53 +++ ...ht-theme--one-dark-night-professional.yaml | 53 +++ themes/one-dark-plus-theme.yaml | 53 +++ themes/one-dark-pro--one-dark-pro.yaml | 53 +++ ...opia--onedark-pro-suhayb-s-version-v2.yaml | 53 +++ themes/one-dark-ruby.yaml | 53 +++ themes/one-dark-theme--one-dark.yaml | 53 +++ themes/one-darker-pro--one-darker-pro.yaml | 53 +++ .../one-darkpuccin--one-darkpuccin-night.yaml | 53 +++ .../one-darkpuccin--one-darkpuccin-vivid.yaml | 53 +++ themes/one-eyecare-theme--onedark.yaml | 53 +++ .../one-hunter-theme--one-hunter-theme.yaml | 53 +++ .../one-light-italic--one-light-italic.yaml | 54 +++ themes/one-monokai-80s-theme.yaml | 53 +++ themes/one-monokai-pro.yaml | 53 +++ ...ne-monokai-python--one-monokai-python.yaml | 53 +++ themes/one-piece-theme--one-piece-dark.yaml | 53 +++ themes/one-piece-theme--one-piece-light.yaml | 53 +++ themes/one-plain.yaml | 53 +++ themes/onebitcode-theme--darkblue-theme.yaml | 53 +++ .../onebitcode-theme--onebitcode-theme.yaml | 53 +++ themes/onebitcode-theme--snow-theme.yaml | 53 +++ themes/onedark.yaml | 53 +++ themes/onedarkpro-x.yaml | 53 +++ themes/onepiece-dark-theme.yaml | 53 +++ themes/only-dark-theme--bluespace.yaml | 53 +++ themes/only-dark-theme--darkspace.yaml | 53 +++ themes/only-dark-theme--minimal.yaml | 53 +++ themes/only-dark-theme--onlydark.yaml | 53 +++ themes/only-dark-theme--sober.yaml | 53 +++ themes/onyx-theme-color-experience.yaml | 53 +++ themes/oolory.yaml | 53 +++ themes/orago-themes.yaml | 53 +++ themes/orangey-color-theme--orangey.yaml | 53 +++ .../orangey-color-theme-orangey-darker-1.yaml | 53 +++ .../orangey-color-theme-orangey-darker-2.yaml | 53 +++ ...orangey-color-theme-orangey-lighter-1.yaml | 53 +++ ...orangey-color-theme-orangey-lighter-2.yaml | 53 +++ themes/origamid-next--origamid.yaml | 53 +++ themes/origamid-theme.yaml | 53 +++ ...larized-pro--osaka-solarized-pro-dark.yaml | 54 +++ ...arized-pro--osaka-solarized-pro-light.yaml | 54 +++ ...ro--osaka-solarized-pro-monokai-storm.yaml | 54 +++ themes/osmoz-dark-themes.yaml | 53 +++ themes/oth-theme--light.yaml | 53 +++ themes/outrun--outrun-contrast.yaml | 53 +++ themes/outrun--outrun-dark.yaml | 53 +++ themes/outrun.yaml | 53 +++ themes/overcast-theme--dark-brown-theme.yaml | 53 +++ themes/overnight--overnight.yaml | 53 +++ themes/oxide-theme.yaml | 53 +++ themes/oxocarbon-theme--oxocarbon-dark.yaml | 54 +++ .../oxocarbon-theme--oxocarbon-monochrom.yaml | 54 +++ ...arbon-theme--oxocarbon-oled-monochrom.yaml | 54 +++ themes/oxocarbon-theme--oxocarbon-oled.yaml | 54 +++ ...xocarbon-oled-monochrom-compatibility.yaml | 54 +++ .../oxocarbonix--oxocarbonix-dark-theme.yaml | 53 +++ .../p-o-s-themes--paulera-s-dark-monokai.yaml | 53 +++ themes/p-o-s-themes--paulera-s-lyo.yaml | 53 +++ themes/paddy-color-themes--p-black.yaml | 53 +++ themes/paddy-color-themes--p-citadel.yaml | 53 +++ themes/paddy-color-themes--p-crimson.yaml | 53 +++ themes/paddy-color-themes--p-dark.yaml | 53 +++ themes/paddy-color-themes--p-eggplant.yaml | 53 +++ themes/paddy-color-themes--p-emerald.yaml | 53 +++ themes/paddy-color-themes--p-eucalyptus.yaml | 53 +++ themes/paddy-color-themes--p-floresta.yaml | 53 +++ themes/paddy-color-themes--p-frost.yaml | 53 +++ themes/paddy-color-themes--p-genmaicha.yaml | 53 +++ themes/paddy-color-themes--p-grizzly.yaml | 53 +++ themes/paddy-color-themes--p-haze.yaml | 53 +++ themes/paddy-color-themes--p-inkstone.yaml | 53 +++ themes/paddy-color-themes--p-leipzig.yaml | 53 +++ themes/paddy-color-themes--p-light.yaml | 53 +++ themes/paddy-color-themes--p-machine.yaml | 53 +++ themes/paddy-color-themes--p-mist.yaml | 53 +++ themes/paddy-color-themes--p-neptune.yaml | 53 +++ themes/paddy-color-themes--p-ornithopter.yaml | 53 +++ themes/paddy-color-themes--p-ox.yaml | 53 +++ themes/paddy-color-themes--p-terabyte.yaml | 53 +++ themes/paddy-color-themes--p-ultramarine.yaml | 53 +++ themes/paddy-color-themes--p-wolf.yaml | 53 +++ themes/paddy-color-themes--p-yesterday.yaml | 53 +++ themes/paddy-color-themes--p-zenith.yaml | 53 +++ themes/padrepio-dark--untitled.yaml | 53 +++ themes/painful-light.yaml | 53 +++ themes/pandju--pandju.yaml | 53 +++ themes/papaya-theme.yaml | 54 +++ themes/para-so-dark-treffynnon.yaml | 53 +++ themes/parchment--monochrome-themes.yaml | 53 +++ themes/paro-paro-solarized-dark.yaml | 54 +++ ...hemes--paro-paro-solarized-dark-theme.yaml | 54 +++ themes/pastel-inu--pastel-inu.yaml | 53 +++ themes/pastel-night.yaml | 53 +++ themes/pastel-v2.yaml | 53 +++ themes/pastel-zeke.yaml | 53 +++ themes/pastelization.yaml | 53 +++ themes/paulsevere.yaml | 53 +++ themes/pcode-theme--tokyo-night.yaml | 53 +++ themes/penumbra--penumbra-dark-contrast.yaml | 53 +++ themes/penumbra--penumbra-dark.yaml | 53 +++ themes/penumbra--penumbra-light.yaml | 53 +++ ...rfection-fresh--perfection-fresh-dark.yaml | 53 +++ ...fection-fresh--perfection-fresh-light.yaml | 53 +++ themes/perplexity-theme.yaml | 53 +++ themes/perseus.yaml | 53 +++ themes/phosphor-theme--phosphor-dark.yaml | 53 +++ themes/photonica--photonica-dark.yaml | 53 +++ themes/photonica--photonica-light.yaml | 53 +++ themes/pierre-theme--pierre-dark.yaml | 53 +++ themes/pierre-theme--pierre-light.yaml | 53 +++ themes/pine-editor-themes--pine-blue.yaml | 53 +++ .../pine-editor-themes--pine-editor-dark.yaml | 53 +++ themes/pine-editor-themes--pine-grey.yaml | 53 +++ themes/pine-forest-green.yaml | 53 +++ themes/pine-script-v5--pine-editor-light.yaml | 53 +++ themes/pine-script-v5--pine-frizz.yaml | 53 +++ ...inescript-helper--pine-theme-dark-pro.yaml | 53 +++ ...ript-helper--pine-theme-original-dark.yaml | 53 +++ ...ink-candy-theme--pink-candy-dark-warm.yaml | 53 +++ themes/pink-candy-theme--pink-candy-dark.yaml | 53 +++ .../pink-candy-theme--pink-candy-light.yaml | 53 +++ themes/pink-dark.yaml | 53 +++ themes/pink-green-pastels.yaml | 53 +++ themes/pink-high-contrast-theme.yaml | 53 +++ themes/pink-serena.yaml | 53 +++ themes/pink-theme-markisik.yaml | 53 +++ .../pink-themes-collection--forest-rose.yaml | 53 +++ themes/pink-themes-collection--iris-pink.yaml | 53 +++ .../pink-themes-collection--matcha-pink.yaml | 53 +++ themes/pink-velvet-theme-for-vs-code.yaml | 53 +++ themes/pinkcode-theme.yaml | 53 +++ themes/pinkcodes-theme.yaml | 53 +++ themes/pinklily.yaml | 53 +++ themes/pinkpinktheme.yaml | 53 +++ ...nky-promise-theme--pinky-promise-dark.yaml | 53 +++ ...ky-promise-theme--pinky-promise-light.yaml | 53 +++ themes/pinkyboo-theme.yaml | 53 +++ .../pittaya-theme--pittaya-theme-light.yaml | 53 +++ themes/pittaya-theme--pittaya-theme.yaml | 53 +++ themes/pittcsc.yaml | 53 +++ themes/pizzutti-purple-cyan.yaml | 53 +++ themes/plasticine--plasticine.yaml | 53 +++ themes/plurpel.yaml | 53 +++ themes/poimandres--poimandres-dark-theme.yaml | 54 +++ themes/poimandres-darker.yaml | 53 +++ ...lar-black--polar-black-cherry-blossom.yaml | 53 +++ ...polar-black--polar-black-green-cactus.yaml | 53 +++ themes/polar-black--polar-black-ice.yaml | 53 +++ ...r-black--polar-black-less-black-smoke.yaml | 53 +++ themes/polar-black--polar-black-light.yaml | 53 +++ themes/polar-black--polar-black-red.yaml | 53 +++ themes/polar-black--polar-black-savanna.yaml | 53 +++ themes/polar-black--polar-black.yaml | 53 +++ themes/polar.yaml | 57 +++ .../polychrome-themes--polychrome-dark.yaml | 53 +++ .../polychrome-themes--polychrome-light.yaml | 53 +++ themes/pop.yaml | 53 +++ themes/popping-and-locking-black-theme.yaml | 53 +++ themes/popping-and-locking-theme.yaml | 53 +++ themes/positively-wicked--wicked.yaml | 53 +++ themes/potion-theme.yaml | 53 +++ themes/powertech-themes--office-dark.yaml | 53 +++ themes/powertech-themes--office-light.yaml | 53 +++ themes/ppy-like-colours.yaml | 53 +++ themes/pr-theme--pr-theme-obsidian.yaml | 53 +++ themes/pr-theme--pr-theme-premium.yaml | 53 +++ themes/pr-theme--pr-theme.yaml | 53 +++ themes/prismapixel-studios.yaml | 53 +++ themes/pro-white.yaml | 53 +++ themes/proper-purple-theme.yaml | 53 +++ ...pudding-theme--pudding-dark-christmas.yaml | 54 +++ themes/pudding-theme--pudding-dark.yaml | 54 +++ themes/pudding-theme--pudding-light-jk.yaml | 54 +++ themes/pudding-theme--pudding-light.yaml | 54 +++ ...dding-theme-pudding-dark-caramel-beta.yaml | 54 +++ ...e-studio-theme--pulse-balanced-purple.yaml | 53 +++ ...lse-studio-theme--pulse-comfort-light.yaml | 53 +++ ...pulse-studio-theme--pulse-soft-purple.yaml | 53 +++ themes/pumpkin-color-theme.yaml | 53 +++ themes/punk-runner.yaml | 53 +++ themes/purgle-dark-purple-rmsyntax.yaml | 53 +++ themes/purple-and-black.yaml | 53 +++ themes/purple-dark-theme-lf.yaml | 53 +++ themes/purple-haze-theme.yaml | 53 +++ themes/purple-royal-theme.yaml | 53 +++ themes/purple-stark-theme--stark-light.yaml | 53 +++ themes/purple-wave.yaml | 53 +++ themes/purpleish.yaml | 53 +++ themes/purplespace--bluesea.yaml | 53 +++ themes/purplespace--onlydark.yaml | 53 +++ themes/purplespace--purplespace.yaml | 53 +++ themes/purplespace--sober.yaml | 53 +++ themes/purplevibes.yaml | 53 +++ themes/purply-theme-purply-dark.yaml | 53 +++ themes/purply-theme-purply-light.yaml | 53 +++ ...--purrfect-marshmallow-lavender-night.yaml | 53 +++ ...eme--purrfect-marshmallow-pastel-pink.yaml | 53 +++ themes/pushkin-is-white-theme.yaml | 53 +++ themes/qerz-v1.yaml | 53 +++ themes/qii-theme--qii-theme-dark-shallow.yaml | 53 +++ themes/qii-theme--qii-theme-dark.yaml | 53 +++ themes/qii-theme--qii-theme-light.yaml | 53 +++ ...al-theme--quantum-material-theme-dark.yaml | 53 +++ ...l-theme--quantum-material-theme-light.yaml | 53 +++ ...al-theme--quantum-material-theme-void.yaml | 53 +++ themes/quantum-theme--quantum-dark.yaml | 54 +++ themes/quantum-theme--quantum-mirage.yaml | 54 +++ themes/quantum-theme--quantum.yaml | 54 +++ themes/qubik-themes--qubik-dark.yaml | 53 +++ themes/qubik-themes--qubik-light.yaml | 53 +++ themes/queensland--queensland-dark.yaml | 53 +++ themes/queensland--queensland-light.yaml | 53 +++ themes/quiet-canvas--quiet-canvas.yaml | 53 +++ themes/quite-night-theme.yaml | 53 +++ themes/r-dark-pro.yaml | 53 +++ themes/r-h-zero-theme.yaml | 53 +++ themes/rachael-s-themes--dr-jones.yaml | 53 +++ themes/rachael-s-themes--high-tea.yaml | 53 +++ themes/rafa-oficial--machine.yaml | 53 +++ themes/raij--raij-dark.yaml | 53 +++ themes/raij--raij.yaml | 53 +++ themes/rainbowdrops.yaml | 53 +++ themes/rainglow--absent-contrast.yaml | 53 +++ themes/rainglow--absent-light.yaml | 53 +++ themes/rainglow--absent.yaml | 53 +++ themes/rainglow--allure-contrast.yaml | 53 +++ themes/rainglow--allure-light.yaml | 53 +++ themes/rainglow--allure.yaml | 53 +++ themes/rainglow--arstotzka-contrast.yaml | 53 +++ themes/rainglow--arstotzka-light.yaml | 53 +++ themes/rainglow--arstotzka.yaml | 53 +++ themes/rainglow--azure-contrast.yaml | 53 +++ themes/rainglow--azure-light.yaml | 53 +++ themes/rainglow--azure.yaml | 53 +++ themes/rainglow--banner-contrast.yaml | 53 +++ themes/rainglow--banner-light.yaml | 53 +++ themes/rainglow--banner.yaml | 53 +++ themes/rainglow--blink-contrast.yaml | 53 +++ themes/rainglow--blink-light.yaml | 53 +++ themes/rainglow--blink.yaml | 53 +++ themes/rainglow--bold-contrast.yaml | 53 +++ themes/rainglow--bold-light.yaml | 53 +++ themes/rainglow--bold.yaml | 53 +++ themes/rainglow--boxuk-contrast.yaml | 53 +++ themes/rainglow--boxuk-light.yaml | 53 +++ themes/rainglow--boxuk.yaml | 53 +++ themes/rainglow--brave-contrast.yaml | 53 +++ themes/rainglow--brave-light.yaml | 53 +++ themes/rainglow--brave.yaml | 53 +++ themes/rainglow--carbonight-contrast.yaml | 53 +++ themes/rainglow--carbonight-light.yaml | 53 +++ themes/rainglow--carbonight.yaml | 53 +++ themes/rainglow--chocolate-contrast.yaml | 53 +++ themes/rainglow--chocolate-light.yaml | 53 +++ themes/rainglow--chocolate.yaml | 53 +++ themes/rainglow--codecourse-contrast.yaml | 53 +++ themes/rainglow--codecourse-light.yaml | 53 +++ themes/rainglow--codecourse.yaml | 53 +++ themes/rainglow--coffee-contrast.yaml | 53 +++ themes/rainglow--coffee-light.yaml | 53 +++ themes/rainglow--coffee.yaml | 53 +++ themes/rainglow--comrade-contrast.yaml | 53 +++ themes/rainglow--comrade-light.yaml | 53 +++ themes/rainglow--comrade.yaml | 53 +++ themes/rainglow--crackpot-contrast.yaml | 53 +++ themes/rainglow--crackpot-light.yaml | 53 +++ themes/rainglow--crackpot.yaml | 53 +++ themes/rainglow--crisp-contrast.yaml | 53 +++ themes/rainglow--crisp-light.yaml | 53 +++ themes/rainglow--crisp.yaml | 53 +++ themes/rainglow--dare-contrast.yaml | 53 +++ themes/rainglow--dare-light.yaml | 53 +++ themes/rainglow--dare.yaml | 53 +++ themes/rainglow--darkside-contrast.yaml | 53 +++ themes/rainglow--darkside-light.yaml | 53 +++ themes/rainglow--darkside.yaml | 53 +++ themes/rainglow--downpour-contrast.yaml | 53 +++ themes/rainglow--downpour-light.yaml | 53 +++ themes/rainglow--downpour.yaml | 53 +++ themes/rainglow--earthsong-contrast.yaml | 53 +++ themes/rainglow--earthsong-light.yaml | 53 +++ themes/rainglow--earthsong.yaml | 53 +++ themes/rainglow--fodder-contrast.yaml | 53 +++ themes/rainglow--fodder-light.yaml | 53 +++ themes/rainglow--fodder.yaml | 53 +++ themes/rainglow--frantic-contrast.yaml | 53 +++ themes/rainglow--frantic-light.yaml | 53 +++ themes/rainglow--frantic.yaml | 53 +++ themes/rainglow--freshcut-contrast.yaml | 53 +++ themes/rainglow--freshcut-light.yaml | 53 +++ themes/rainglow--freshcut.yaml | 53 +++ themes/rainglow--friction-contrast.yaml | 53 +++ themes/rainglow--friction-light.yaml | 53 +++ themes/rainglow--friction.yaml | 53 +++ themes/rainglow--frontier-contrast.yaml | 53 +++ themes/rainglow--frontier-light.yaml | 53 +++ themes/rainglow--frontier.yaml | 53 +++ themes/rainglow--github-contrast.yaml | 53 +++ themes/rainglow--github-light.yaml | 53 +++ themes/rainglow--github.yaml | 53 +++ themes/rainglow--glance-contrast.yaml | 53 +++ themes/rainglow--glance-light.yaml | 53 +++ themes/rainglow--glance.yaml | 53 +++ themes/rainglow--gloom-contrast.yaml | 53 +++ themes/rainglow--gloom-light.yaml | 53 +++ themes/rainglow--gloom.yaml | 53 +++ themes/rainglow--glowfish-contrast.yaml | 53 +++ themes/rainglow--glowfish-light.yaml | 53 +++ themes/rainglow--glowfish.yaml | 53 +++ themes/rainglow--goldfish-contrast.yaml | 53 +++ themes/rainglow--goldfish-light.yaml | 53 +++ themes/rainglow--goldfish.yaml | 53 +++ themes/rainglow--grunge-contrast.yaml | 53 +++ themes/rainglow--grunge-light.yaml | 53 +++ themes/rainglow--grunge.yaml | 53 +++ themes/rainglow--halflife-contrast.yaml | 53 +++ themes/rainglow--halflife-light.yaml | 53 +++ themes/rainglow--halflife.yaml | 53 +++ themes/rainglow--hawaii-contrast.yaml | 53 +++ themes/rainglow--hawaii-light.yaml | 53 +++ themes/rainglow--hawaii.yaml | 53 +++ themes/rainglow--heroku-contrast.yaml | 53 +++ themes/rainglow--heroku-light.yaml | 53 +++ themes/rainglow--heroku.yaml | 53 +++ themes/rainglow--hive-contrast.yaml | 53 +++ themes/rainglow--hive-light.yaml | 53 +++ themes/rainglow--hive.yaml | 53 +++ themes/rainglow--horizon-contrast.yaml | 53 +++ themes/rainglow--horizon-light.yaml | 53 +++ themes/rainglow--horizon.yaml | 53 +++ themes/rainglow--hub-contrast.yaml | 53 +++ themes/rainglow--hub-light.yaml | 53 +++ themes/rainglow--hub.yaml | 53 +++ themes/rainglow--hyrule-contrast.yaml | 53 +++ themes/rainglow--hyrule-light.yaml | 53 +++ themes/rainglow--hyrule.yaml | 53 +++ themes/rainglow--iceberg-contrast.yaml | 53 +++ themes/rainglow--iceberg-light.yaml | 53 +++ themes/rainglow--iceberg.yaml | 53 +++ themes/rainglow--isotope-contrast.yaml | 53 +++ themes/rainglow--isotope-light.yaml | 53 +++ themes/rainglow--isotope.yaml | 53 +++ themes/rainglow--jewel-contrast.yaml | 53 +++ themes/rainglow--jewel-light.yaml | 53 +++ themes/rainglow--jewel.yaml | 53 +++ themes/rainglow--jingle-contrast.yaml | 53 +++ themes/rainglow--jingle-light.yaml | 53 +++ themes/rainglow--jingle.yaml | 53 +++ themes/rainglow--joker-contrast.yaml | 53 +++ themes/rainglow--joker-light.yaml | 53 +++ themes/rainglow--joker.yaml | 53 +++ themes/rainglow--juicy-contrast.yaml | 53 +++ themes/rainglow--juicy-light.yaml | 53 +++ themes/rainglow--juicy.yaml | 53 +++ themes/rainglow--jumper-contrast.yaml | 53 +++ themes/rainglow--jumper-light.yaml | 53 +++ themes/rainglow--jumper.yaml | 53 +++ themes/rainglow--keen-contrast.yaml | 53 +++ themes/rainglow--keen-light.yaml | 53 +++ themes/rainglow--keen.yaml | 53 +++ themes/rainglow--kiwi-contrast.yaml | 53 +++ themes/rainglow--kiwi-light.yaml | 53 +++ themes/rainglow--kiwi.yaml | 53 +++ themes/rainglow--laracasts-contrast.yaml | 53 +++ themes/rainglow--laracasts-light.yaml | 53 +++ themes/rainglow--laracasts.yaml | 53 +++ themes/rainglow--laravel-contrast.yaml | 53 +++ themes/rainglow--laravel-light.yaml | 53 +++ themes/rainglow--laravel.yaml | 53 +++ themes/rainglow--lavender-contrast.yaml | 53 +++ themes/rainglow--lavender-light.yaml | 53 +++ themes/rainglow--lavender.yaml | 53 +++ themes/rainglow--legacy-contrast.yaml | 53 +++ themes/rainglow--legacy-light.yaml | 53 +++ themes/rainglow--legacy.yaml | 53 +++ themes/rainglow--lichen-contrast.yaml | 53 +++ themes/rainglow--lichen-light.yaml | 53 +++ themes/rainglow--lichen.yaml | 53 +++ themes/rainglow--loyal-contrast.yaml | 53 +++ themes/rainglow--loyal-light.yaml | 53 +++ themes/rainglow--loyal.yaml | 53 +++ themes/rainglow--mauve-contrast.yaml | 53 +++ themes/rainglow--mauve-light.yaml | 53 +++ themes/rainglow--mauve.yaml | 53 +++ themes/rainglow--mellow-contrast.yaml | 53 +++ themes/rainglow--mellow-light.yaml | 53 +++ themes/rainglow--mellow.yaml | 53 +++ themes/rainglow--mintchoc-contrast.yaml | 53 +++ themes/rainglow--mintchoc-light.yaml | 53 +++ themes/rainglow--mintchoc.yaml | 53 +++ themes/rainglow--monzo-contrast.yaml | 53 +++ themes/rainglow--monzo-light.yaml | 53 +++ themes/rainglow--monzo.yaml | 53 +++ themes/rainglow--morass-contrast.yaml | 53 +++ themes/rainglow--morass-light.yaml | 53 +++ themes/rainglow--morass.yaml | 53 +++ themes/rainglow--mud-contrast.yaml | 53 +++ themes/rainglow--mud-light.yaml | 53 +++ themes/rainglow--mud.yaml | 53 +++ themes/rainglow--newton-contrast.yaml | 53 +++ themes/rainglow--newton-light.yaml | 53 +++ themes/rainglow--newton.yaml | 53 +++ themes/rainglow--otakon-contrast.yaml | 53 +++ themes/rainglow--otakon-light.yaml | 53 +++ themes/rainglow--otakon.yaml | 53 +++ themes/rainglow--overflow-contrast.yaml | 53 +++ themes/rainglow--overflow-light.yaml | 53 +++ themes/rainglow--overflow.yaml | 53 +++ themes/rainglow--pastel-contrast.yaml | 53 +++ themes/rainglow--pastel-light.yaml | 53 +++ themes/rainglow--pastel.yaml | 53 +++ themes/rainglow--patriot-contrast.yaml | 53 +++ themes/rainglow--patriot-light.yaml | 53 +++ themes/rainglow--patriot.yaml | 53 +++ themes/rainglow--peacock-contrast.yaml | 53 +++ themes/rainglow--peacock-light.yaml | 53 +++ themes/rainglow--peacock.yaml | 53 +++ .../rainglow--peacocks-in-space-contrast.yaml | 53 +++ themes/rainglow--peacocks-in-space-light.yaml | 53 +++ themes/rainglow--peacocks-in-space.yaml | 53 +++ themes/rainglow--peel-contrast.yaml | 53 +++ themes/rainglow--peel-light.yaml | 53 +++ themes/rainglow--peel.yaml | 53 +++ themes/rainglow--penitent-contrast.yaml | 53 +++ themes/rainglow--penitent-light.yaml | 53 +++ themes/rainglow--penitent.yaml | 53 +++ themes/rainglow--piggy-contrast.yaml | 53 +++ themes/rainglow--piggy-light.yaml | 53 +++ themes/rainglow--piggy.yaml | 53 +++ themes/rainglow--pleasure-contrast.yaml | 53 +++ themes/rainglow--pleasure-light.yaml | 53 +++ themes/rainglow--pleasure.yaml | 53 +++ themes/rainglow--potpourri-contrast.yaml | 53 +++ themes/rainglow--potpourri-light.yaml | 53 +++ themes/rainglow--potpourri.yaml | 53 +++ themes/rainglow--prime-contrast.yaml | 53 +++ themes/rainglow--prime-light.yaml | 53 +++ themes/rainglow--prime.yaml | 53 +++ themes/rainglow--rainbow-contrast.yaml | 53 +++ themes/rainglow--rainbow-light.yaml | 53 +++ themes/rainglow--rainbow.yaml | 53 +++ themes/rainglow--rebellion-contrast.yaml | 53 +++ themes/rainglow--rebellion-light.yaml | 53 +++ themes/rainglow--rebellion.yaml | 53 +++ themes/rainglow--revelation-contrast.yaml | 53 +++ themes/rainglow--revelation-light.yaml | 53 +++ themes/rainglow--revelation.yaml | 53 +++ themes/rainglow--scorch-contrast.yaml | 53 +++ themes/rainglow--scorch-light.yaml | 53 +++ themes/rainglow--scorch.yaml | 53 +++ themes/rainglow--service-contrast.yaml | 53 +++ themes/rainglow--service-light.yaml | 53 +++ themes/rainglow--service.yaml | 53 +++ themes/rainglow--shrek-contrast.yaml | 53 +++ themes/rainglow--shrek-light.yaml | 53 +++ themes/rainglow--shrek.yaml | 53 +++ themes/rainglow--slate-contrast.yaml | 53 +++ themes/rainglow--slate-light.yaml | 53 +++ themes/rainglow--slate.yaml | 53 +++ themes/rainglow--slime-contrast.yaml | 53 +++ themes/rainglow--slime-light.yaml | 53 +++ themes/rainglow--slime.yaml | 53 +++ themes/rainglow--snappy-contrast.yaml | 53 +++ themes/rainglow--snappy-light.yaml | 53 +++ themes/rainglow--snappy.yaml | 53 +++ themes/rainglow--solarflare-contrast.yaml | 53 +++ themes/rainglow--solarflare-light.yaml | 53 +++ themes/rainglow--solarflare.yaml | 53 +++ themes/rainglow--soup-contrast.yaml | 53 +++ themes/rainglow--soup-light.yaml | 53 +++ themes/rainglow--soup.yaml | 53 +++ themes/rainglow--sourlick-contrast.yaml | 53 +++ themes/rainglow--sourlick-light.yaml | 53 +++ themes/rainglow--sourlick.yaml | 53 +++ themes/rainglow--spearmint-contrast.yaml | 53 +++ themes/rainglow--spearmint-light.yaml | 53 +++ themes/rainglow--spearmint.yaml | 53 +++ themes/rainglow--spitfire-contrast.yaml | 53 +++ themes/rainglow--spitfire-light.yaml | 53 +++ themes/rainglow--spitfire.yaml | 53 +++ themes/rainglow--stark-contrast.yaml | 53 +++ themes/rainglow--stark-light.yaml | 53 +++ themes/rainglow--stark.yaml | 53 +++ themes/rainglow--stasis-contrast.yaml | 53 +++ themes/rainglow--stasis-light.yaml | 53 +++ themes/rainglow--stasis.yaml | 53 +++ themes/rainglow--stealth-contrast.yaml | 53 +++ themes/rainglow--stealth-light.yaml | 53 +++ themes/rainglow--stealth.yaml | 53 +++ themes/rainglow--storm-contrast.yaml | 53 +++ themes/rainglow--storm-light.yaml | 53 +++ themes/rainglow--storm.yaml | 53 +++ themes/rainglow--super-contrast.yaml | 53 +++ themes/rainglow--super-light.yaml | 53 +++ themes/rainglow--super.yaml | 53 +++ themes/rainglow--tame-contrast.yaml | 53 +++ themes/rainglow--tame-light.yaml | 53 +++ themes/rainglow--tame.yaml | 53 +++ themes/rainglow--tetra-contrast.yaml | 53 +++ themes/rainglow--tetra-light.yaml | 53 +++ themes/rainglow--tetra.yaml | 53 +++ themes/rainglow--tickle-contrast.yaml | 53 +++ themes/rainglow--tickle-light.yaml | 53 +++ themes/rainglow--tickle.yaml | 53 +++ themes/rainglow--tonic-contrast.yaml | 53 +++ themes/rainglow--tonic-light.yaml | 53 +++ themes/rainglow--tonic.yaml | 53 +++ themes/rainglow--tribal-contrast.yaml | 53 +++ themes/rainglow--tribal-light.yaml | 53 +++ themes/rainglow--tribal.yaml | 53 +++ themes/rainglow--tron-contrast.yaml | 53 +++ themes/rainglow--tron-light.yaml | 53 +++ themes/rainglow--tron.yaml | 53 +++ themes/rainglow--turnip-contrast.yaml | 53 +++ themes/rainglow--turnip-light.yaml | 53 +++ themes/rainglow--turnip.yaml | 53 +++ themes/rainglow--tweed-contrast.yaml | 53 +++ themes/rainglow--tweed-light.yaml | 53 +++ themes/rainglow--tweed.yaml | 53 +++ themes/rainglow--userscape-contrast.yaml | 53 +++ themes/rainglow--userscape-light.yaml | 53 +++ themes/rainglow--userscape.yaml | 53 +++ themes/rainglow--vegetable-contrast.yaml | 53 +++ themes/rainglow--vegetable-light.yaml | 53 +++ themes/rainglow--vegetable.yaml | 53 +++ themes/rainglow--violaceous-contrast.yaml | 53 +++ themes/rainglow--violaceous-light.yaml | 53 +++ themes/rainglow--violaceous.yaml | 53 +++ themes/rainglow--vision-colorblind.yaml | 53 +++ themes/rainglow--vision-light-colorblind.yaml | 53 +++ themes/rainglow--volatile-contrast.yaml | 53 +++ themes/rainglow--volatile-light.yaml | 53 +++ themes/rainglow--volatile.yaml | 53 +++ themes/rainglow--warlock-contrast.yaml | 53 +++ themes/rainglow--warlock-light.yaml | 53 +++ themes/rainglow--warlock.yaml | 53 +++ themes/rainglow--waste-contrast.yaml | 53 +++ themes/rainglow--waste-light.yaml | 53 +++ themes/rainglow--waste.yaml | 53 +++ themes/rainglow--yitzchok-contrast.yaml | 53 +++ themes/rainglow--yitzchok-light.yaml | 53 +++ themes/rainglow--yitzchok.yaml | 53 +++ themes/rainglow--yule-contrast.yaml | 53 +++ themes/rainglow--yule-light.yaml | 53 +++ themes/rainglow--yule.yaml | 53 +++ themes/rainglow--zacks-contrast.yaml | 53 +++ themes/rainglow--zacks-light.yaml | 53 +++ themes/rainglow--zacks.yaml | 53 +++ themes/raisin.yaml | 53 +++ ...lanet-theme--raiyanplanet-dark-knight.yaml | 53 +++ ...yanplanet-theme--raiyanplanet-darkest.yaml | 53 +++ ...anet-theme--raiyanplanet-purple-world.yaml | 53 +++ themes/ramazzotti.yaml | 53 +++ themes/ramos-theme.yaml | 53 +++ themes/ramuda-pink-theme.yaml | 53 +++ themes/random.yaml | 53 +++ themes/ravora-tema.yaml | 53 +++ themes/rawqdark--untitled.yaml | 53 +++ themes/rb-s-robotic.yaml | 53 +++ themes/re-theme--re-dark.yaml | 53 +++ themes/re-theme.yaml | 53 +++ themes/react-theme-m.yaml | 53 +++ themes/reactlyfi-discord-js.yaml | 53 +++ themes/red-group-s-themes.yaml | 53 +++ themes/red-riptide-theme-dark--dark.yaml | 53 +++ themes/red-riptide-theme-dark--gray.yaml | 53 +++ themes/red-vintage-theme.yaml | 53 +++ themes/reddit-dark-theme-unofficial.yaml | 53 +++ themes/reddragons.yaml | 53 +++ themes/reduc-c-dracula-theme--c-dracula.yaml | 53 +++ ...antic-focus--relaxed-theme-dark-focus.yaml | 53 +++ ...mantic-focus--relaxed-theme-day-light.yaml | 53 +++ ...antic-focus--relaxed-theme-night-warm.yaml | 53 +++ themes/relaxed.yaml | 53 +++ themes/remedy-remedy-bright-tilted.yaml | 54 +++ themes/remedy-remedy-dark-tilted.yaml | 54 +++ themes/repl-it-theme.yaml | 53 +++ themes/resknow.yaml | 53 +++ themes/retro-green-theme.yaml | 53 +++ ...etro-hacker-theme--retro-hacker-amber.yaml | 53 +++ ...retro-hacker-theme--retro-hacker-blue.yaml | 53 +++ ...cker-theme--retro-hacker-green-subtle.yaml | 53 +++ ...etro-hacker-theme--retro-hacker-green.yaml | 53 +++ ...ro-hacker-theme--retro-hacker-magenta.yaml | 53 +++ ...o-keyboard-theme--retro-keyboard-dark.yaml | 53 +++ ...-keyboard-theme--retro-keyboard-light.yaml | 53 +++ themes/retrocoders-dark-theme.yaml | 53 +++ .../retronica--retronica-amber-terminal.yaml | 53 +++ themes/retronica--retronica-neon-nights.yaml | 53 +++ .../retronica--retronica-pastel-arcade.yaml | 53 +++ .../retronica--retronica-phosphor-green.yaml | 53 +++ ...etronica--retronica-vintage-computing.yaml | 53 +++ themes/retrowave.yaml | 53 +++ themes/reui--reui-ii-dark.yaml | 53 +++ themes/reui--reui-mirage.yaml | 53 +++ themes/reui--reui.yaml | 53 +++ themes/rhapsody-theme--dark.yaml | 53 +++ themes/rik.yaml | 53 +++ themes/rito-dark-italic.yaml | 53 +++ themes/rmondesilva.yaml | 53 +++ themes/robot-framework-pro.yaml | 53 +++ themes/rock-dark.yaml | 53 +++ themes/rog-theme-v1-dark.yaml | 53 +++ themes/ronin--ronin-darker.yaml | 53 +++ themes/ronin--ronin.yaml | 53 +++ themes/root-dark-mode-theme.yaml | 53 +++ themes/ros-pine--ros-pine-dawn.yaml | 53 +++ themes/ros-pine--ros-pine-moon.yaml | 53 +++ themes/ros-pine--ros-pine.yaml | 53 +++ themes/ros-pine-burnt.yaml | 53 +++ themes/rose-pine-nvchad-vscode-theme.yaml | 53 +++ themes/roselia-theme--roselia.yaml | 53 +++ themes/rouge-theme--rouge.yaml | 53 +++ themes/roxotema.yaml | 53 +++ themes/runic-theme--runic-minimal.yaml | 53 +++ themes/ryuk-stheme.yaml | 53 +++ themes/safira-theme.yaml | 53 +++ themes/saga-theme--saga-nordic-v1-2.yaml | 53 +++ themes/saga-theme--saga-oceania-v1-2.yaml | 53 +++ themes/sage-of-light-theme.yaml | 53 +++ themes/sakura-blossom.yaml | 54 +++ themes/sakura-sun.yaml | 53 +++ themes/sakura-x--kuro-sakura.yaml | 53 +++ themes/sakura-x--shiro-sakura-light.yaml | 53 +++ themes/sakya-theme.yaml | 54 +++ themes/samito-nest-theme-vscode.yaml | 53 +++ themes/samurai--samurai.yaml | 53 +++ themes/sandcastle-theme.yaml | 53 +++ .../satoru-gojo-theme--satoru-gojo-blue.yaml | 53 +++ .../satoru-gojo-theme--satoru-gojo-white.yaml | 53 +++ themes/saturn-darkblue.yaml | 53 +++ themes/scy-theme.yaml | 53 +++ themes/sd-deep-purple-theme.yaml | 53 +++ themes/sea-glass-theme.yaml | 53 +++ themes/seabird.yaml | 53 +++ themes/secretspring.yaml | 53 +++ .../semantic-noctis--semantic-noctis-lux.yaml | 53 +++ themes/senbonzakura.yaml | 53 +++ themes/senna-theme.yaml | 53 +++ themes/sequoia--sequoia-monochrome.yaml | 53 +++ themes/sequoia--sequoia-moonlight.yaml | 53 +++ themes/sequoia--sequoia-retro.yaml | 53 +++ ...dipity--serendipity-midnight-electric.yaml | 53 +++ themes/serendipity--serendipity-midnight.yaml | 53 +++ themes/serendipity--serendipity-morning.yaml | 53 +++ themes/serendipity--serendipity-sunset.yaml | 53 +++ ...rendipity-v1--serendipity-midnight-v1.yaml | 53 +++ ...erendipity-v1--serendipity-morning-v1.yaml | 53 +++ ...serendipity-v1--serendipity-sunset-v1.yaml | 53 +++ themes/set.yaml | 53 +++ themes/seti-ux.yaml | 53 +++ themes/sevastolink.yaml | 54 +++ themes/shades--24.yaml | 53 +++ themes/shades--minimal.yaml | 53 +++ themes/shades--neutral.yaml | 53 +++ themes/shades--shades.yaml | 53 +++ themes/shades-of-green.yaml | 53 +++ themes/shades-of-life--shades-of-life.yaml | 53 +++ .../shades-of-life-shades-of-life-light.yaml | 53 +++ themes/shades-of-stoicism--shades.yaml | 53 +++ themes/shadowborn-theme-for-vscode.yaml | 53 +++ themes/shadowdev.yaml | 53 +++ themes/shale-theme--nord.yaml | 53 +++ ...eat-white-theme-great-white-bloodloss.yaml | 53 +++ ...st-great-white-theme-great-white-dark.yaml | 53 +++ ...t-great-white-theme-great-white-frost.yaml | 53 +++ ...-theme-great-white-high-contrast-dark.yaml | 53 +++ ...theme-great-white-high-contrast-light.yaml | 53 +++ ...t-great-white-theme-great-white-light.yaml | 53 +++ ...t-great-white-theme-great-white-storm.yaml | 53 +++ themes/sharkdark.yaml | 53 +++ themes/ship-ai--ship-dark.yaml | 53 +++ themes/ship-ai--ship-light.yaml | 53 +++ themes/ship-at-sea.yaml | 53 +++ themes/shiva.yaml | 53 +++ themes/shrekk.yaml | 53 +++ themes/silent-code-dark.yaml | 53 +++ themes/simen-theme--word-color-theme.yaml | 54 +++ themes/simple-theme--simple-theme.yaml | 53 +++ themes/sirius-themes--sirius-astral.yaml | 53 +++ themes/sirius-themes--sirius-glow.yaml | 53 +++ themes/sirius-themes--sirius-nebula.yaml | 53 +++ themes/sirius-themes--sirius-pulsar.yaml | 53 +++ themes/sirius-themes--sirius-vesper.yaml | 53 +++ themes/sirius-themes--sirius-vibe.yaml | 53 +++ themes/sirius-themes--sirius-vortex.yaml | 53 +++ themes/sirius-themes--sirius-zenith.yaml | 53 +++ themes/sk5s-vs-green-theme.yaml | 53 +++ themes/skill--s-kill.yaml | 53 +++ themes/slab-theme--2077.yaml | 53 +++ themes/slab-theme--firefly.yaml | 53 +++ themes/slab-theme--green-hacker.yaml | 53 +++ themes/slab-theme--karma.yaml | 53 +++ themes/slab-theme--mars.yaml | 53 +++ ...--material-theme-darker-high-contrast.yaml | 53 +++ themes/slab-theme--material-theme-darker.yaml | 53 +++ ...slab-theme--material-theme-deepforest.yaml | 53 +++ .../slab-theme--material-theme-default.yaml | 53 +++ ...-material-theme-lighter-high-contrast.yaml | 53 +++ .../slab-theme--material-theme-lighter.yaml | 53 +++ themes/slab-theme--material-theme-ocean.yaml | 53 +++ .../slab-theme--material-theme-palenight.yaml | 53 +++ themes/slab-theme--midnight-pastel.yaml | 53 +++ themes/slab-theme--monokai-unified.yaml | 53 +++ themes/slab-theme--moonlight-ii.yaml | 53 +++ themes/slab-theme--moonlight.yaml | 53 +++ themes/slab-theme--p-yesterday.yaml | 53 +++ .../slab-theme-special-edition--dracula.yaml | 53 +++ ...ack-theme--slack-theme-aubergine-dark.yaml | 53 +++ ...lack-theme--slack-theme-aubergine-new.yaml | 53 +++ themes/slack-theme--slack-theme-dark.yaml | 53 +++ themes/slack-theme--slack-theme-hoth.yaml | 53 +++ themes/slack-theme--slack-theme.yaml | 53 +++ themes/slateblues.yaml | 53 +++ themes/slime-solid-theme.yaml | 53 +++ themes/slime-theme.yaml | 53 +++ themes/slumbersage.yaml | 53 +++ themes/smooth-theme-smooth-dark.yaml | 53 +++ themes/smooth-theme-smooth-light.yaml | 53 +++ themes/smoothburn--smooth-burn-dark-hard.yaml | 53 +++ .../smoothburn--smooth-burn-dark-medium.yaml | 53 +++ themes/smoothburn--smooth-burn-dark.yaml | 53 +++ .../smoothburn--smooth-burn-light-hard.yaml | 53 +++ themes/snazzy-operator-softer.yaml | 53 +++ themes/snazzy-operator.yaml | 53 +++ themes/snazzy-plus.yaml | 53 +++ ...lake-dark-theme--snowflake-dark-theme.yaml | 53 +++ ...ke-dark-theme--snowflake-darker-theme.yaml | 53 +++ themes/sobertheme--sober.yaml | 53 +++ themes/sobrio--sobrio-light.yaml | 53 +++ themes/sobrio--sobrio.yaml | 53 +++ themes/soct.yaml | 53 +++ themes/soft-color-theme--soft-dark.yaml | 53 +++ themes/soft-color-theme--soft-light.yaml | 53 +++ themes/soft-in-black.yaml | 53 +++ themes/soft-kawaii-theme.yaml | 53 +++ themes/softdark.yaml | 53 +++ themes/soho-theme.yaml | 53 +++ themes/solar-right-theme.yaml | 53 +++ themes/solara.yaml | 53 +++ themes/solarized-light-enhanced.yaml | 54 +++ themes/solarized-monokai--dark.yaml | 54 +++ .../solarized-neue-yuki--solarized-lilac.yaml | 54 +++ ...ized-neue-yuki--solarized-neue-bright.yaml | 54 +++ .../solarized-neue-yuki--solarized-neue.yaml | 54 +++ .../solarized-neue-yuki--solarized-yuki.yaml | 54 +++ ...ized-selenized--helios-solarized-dark.yaml | 54 +++ ...zed-selenized--helios-solarized-light.yaml | 54 +++ ...ized-selenized--selene-selenized-dark.yaml | 54 +++ ...zed-selenized--selene-selenized-light.yaml | 54 +++ .../solitude-color-theme--solitude-dark.yaml | 53 +++ .../solitude-color-theme--solitude-soft.yaml | 53 +++ themes/solo-leveling-theme.yaml | 53 +++ themes/sonokai--sonokai-andromeda.yaml | 53 +++ themes/sonokai--sonokai-atlantis.yaml | 53 +++ themes/sonokai--sonokai-espresso.yaml | 53 +++ themes/sonokai--sonokai-maia.yaml | 53 +++ themes/sonokai--sonokai-shusia.yaml | 53 +++ themes/sonokai--sonokai.yaml | 53 +++ themes/soudev-theme--soudev-mega-dark.yaml | 53 +++ ...soudev-theme--soudev-purple-andromeda.yaml | 53 +++ ...dev-theme--soudev-semi-dark-andromeda.yaml | 53 +++ themes/space-ocean-kit-refined.yaml | 53 +++ themes/space-purple--space-purple-dark.yaml | 53 +++ themes/space-purple--space-purple-light.yaml | 53 +++ themes/space-wars-theme--darth-insidious.yaml | 53 +++ themes/space-wars-theme--darth-invader.yaml | 53 +++ themes/space-wars-theme--luke-skywriter.yaml | 53 +++ themes/space-wars-theme--storm-tracker.yaml | 53 +++ ...space-wars-theme--yoda-mystical-force.yaml | 53 +++ themes/spacemacs--spacemacs-dark.yaml | 53 +++ themes/spacemacs--spacemacs-light.yaml | 53 +++ themes/sparkle--sparkle-theme.yaml | 53 +++ .../spiderverse-theme--spiderverse-2099.yaml | 53 +++ .../spiderverse-theme--spiderverse-miles.yaml | 53 +++ ...erverse-theme--spiderverse-spider-man.yaml | 53 +++ themes/sprinkle-pack--azure-noir.yaml | 53 +++ themes/sprinkle-pack--chatgpt-theme.yaml | 53 +++ themes/sprinkle-pack--darker-than-black.yaml | 53 +++ themes/sprinkle-pack--elf-dream.yaml | 53 +++ themes/sprinkle-pack--ice.yaml | 53 +++ themes/sprinkle-pack--lofi.yaml | 53 +++ themes/sprinkle-pack--magnolia.yaml | 53 +++ themes/sprinkle-pack--pine-forest.yaml | 53 +++ themes/sprinkle-pack--sweet-lemon.yaml | 53 +++ themes/spyder-theme.yaml | 53 +++ themes/srcery--official-port.yaml | 53 +++ themes/stackmeister-theme.yaml | 53 +++ ...tar-trek-factions-theme-pack--st-borg.yaml | 53 +++ ...ar-trek-factions-theme-pack--st-lcars.yaml | 53 +++ themes/star-wars-planets-theme-pack.yaml | 53 +++ themes/stellar-galaxy.yaml | 53 +++ themes/sto-theme--sto-classic.yaml | 53 +++ themes/sto-theme--sto-green-dark.yaml | 53 +++ themes/sto-theme--sto-green.yaml | 53 +++ themes/strawberry-theme--raspberry-theme.yaml | 53 +++ themes/styldev.yaml | 53 +++ themes/stypt.yaml | 53 +++ themes/sublime-ish.yaml | 53 +++ themes/sugar-theme--sugar-dark-focus.yaml | 53 +++ themes/sugar-theme--sugar-dark-github.yaml | 53 +++ themes/sugar-theme--sugar-dark-midnight.yaml | 53 +++ themes/sugar-theme--sugar-dark-one.yaml | 53 +++ themes/sugar-theme--sugar-dark-vitesse.yaml | 53 +++ themes/sugar-theme--sugar-dark-vs.yaml | 53 +++ themes/sugar-theme--sugar-dark.yaml | 53 +++ themes/sugar-theme--sugar-fleet.yaml | 53 +++ themes/sugar-theme--sugar-light-vitesse.yaml | 53 +++ themes/sugar-theme--sugar-light-vs.yaml | 53 +++ themes/sugar-theme--sugar-light.yaml | 53 +++ ...heme--summer-night-gray-high-contrast.yaml | 53 +++ ...ght-theme--summer-night-high-contrast.yaml | 53 +++ themes/summer-night-theme--summer-night.yaml | 53 +++ themes/super-theme.yaml | 53 +++ themes/supernova-theme.yaml | 53 +++ themes/sweet-code-color-theme.yaml | 53 +++ themes/sweet-dracula-monokai.yaml | 53 +++ themes/sweetwood--vim-dark-hard.yaml | 53 +++ ...lette-a-color-theme-for-code-creators.yaml | 53 +++ themes/synthor-dark-theme.yaml | 53 +++ themes/szn.yaml | 53 +++ themes/t3chdad-darkside.yaml | 53 +++ themes/t3nsor.yaml | 53 +++ themes/tahiti--retro.yaml | 53 +++ themes/taiga-theme--taiga.yaml | 55 +++ themes/tail-theme.yaml | 53 +++ ...ilwind-catalyst-theme--catalyst-light.yaml | 53 +++ themes/tailwind-catalyst-theme--catalyst.yaml | 53 +++ ...ind-colour-themes--tailwind-moon-blue.yaml | 53 +++ ...ind-colour-themes--tailwind-moon-grey.yaml | 53 +++ ...tailwind-colour-themes--tailwind-moon.yaml | 53 +++ themes/tailwind-theme--tailwind-dark.yaml | 53 +++ themes/tailwind-theme--tailwind-darkest.yaml | 53 +++ themes/tardezinha.yaml | 53 +++ themes/tasmania--tasmania-dark.yaml | 53 +++ themes/tasmania--tasmania-light.yaml | 53 +++ ...me--tears-of-the-kingdom-minimal-dark.yaml | 53 +++ ...-of-the-kingdom-minimal-dark-midnight.yaml | 53 +++ themes/telescope-theme.yaml | 53 +++ themes/tema-flamengo--dark.yaml | 53 +++ themes/terminal-theme--minimal.yaml | 53 +++ themes/terminal-theme--shades.yaml | 53 +++ themes/terminal-theme--terminal.yaml | 53 +++ themes/terrafuture-themes.yaml | 53 +++ themes/terrorbelow.yaml | 53 +++ themes/tesseract.yaml | 53 +++ themes/thanos-theme.yaml | 53 +++ themes/the-best-theme.yaml | 53 +++ themes/the-legendary-blue.yaml | 53 +++ themes/the-matrix.yaml | 53 +++ themes/the-one-theme--the-one-theme.yaml | 53 +++ themes/the-one-theme--untitled.yaml | 53 +++ themes/thea-theme--light-theme.yaml | 53 +++ themes/thea-theme--purple-theme.yaml | 53 +++ themes/thebear.yaml | 53 +++ themes/themarro--themarro-dark-contrast.yaml | 53 +++ themes/themarro--themarro-david-remix.yaml | 53 +++ themes/themarro--themarro.yaml | 53 +++ themes/theme--dark-blue-theme.yaml | 53 +++ themes/theme--dark-brown-theme.yaml | 53 +++ themes/theme--themedarker.yaml | 53 +++ themes/theme-armada.yaml | 53 +++ themes/theme-for-anyone--1.yaml | 53 +++ themes/theme-for-anyone--carbon.yaml | 53 +++ themes/theme-mangayo.yaml | 53 +++ themes/theme-rosario--untitled.yaml | 53 +++ themes/theme-selenitic.yaml | 53 +++ themes/themin.yaml | 53 +++ themes/thorn--thorn.yaml | 53 +++ themes/thzin.yaml | 53 +++ themes/tian-green.yaml | 53 +++ themes/tiger-dark.yaml | 53 +++ themes/time-flow.yaml | 53 +++ themes/to-on-no-codigo.yaml | 53 +++ themes/tokyo-dark-akil-s.yaml | 53 +++ themes/tokyo-light-akil-s.yaml | 53 +++ themes/tokyo-night--tokyo-gogh-alt.yaml | 53 +++ themes/tokyo-night--tokyo-gogh.yaml | 53 +++ themes/tokyo-night--tokyo-night-light.yaml | 54 +++ themes/tokyo-night--tokyo-night-storm.yaml | 54 +++ themes/tokyo-night--tokyo-night.yaml | 54 +++ .../tokyo-night-fork--tokyo-night-light.yaml | 54 +++ .../tokyo-night-fork--tokyo-night-storm.yaml | 54 +++ themes/tokyo-night-fork--tokyo-night.yaml | 54 +++ themes/tokyo-night-theme-damask-edition.yaml | 53 +++ themes/toodark-am--one-dark-pro.yaml | 53 +++ themes/topl-theme--alpha.yaml | 53 +++ themes/torte-theme.yaml | 53 +++ themes/totow-s-official-th-me.yaml | 53 +++ themes/touchfish.yaml | 53 +++ themes/toxic.yaml | 53 +++ themes/tragicpale.yaml | 53 +++ themes/transparent-themes-collection.yaml | 53 +++ themes/true-dark-by-gurdish-singh.yaml | 53 +++ themes/tsukiroku.yaml | 53 +++ themes/tsukuyomi--tsukuyomi.yaml | 53 +++ themes/tsukuyomi-tsukuyomi-light.yaml | 53 +++ themes/tsumiki.yaml | 53 +++ themes/ttera-themes--botany.yaml | 53 +++ themes/ttera-themes--cosmic-sea.yaml | 53 +++ themes/ttera-themes--cyberpunk.yaml | 53 +++ themes/ttera-themes--dragon.yaml | 53 +++ themes/ttera-themes--golden-wave.yaml | 53 +++ themes/ttera-themes--gothic-vampire.yaml | 53 +++ themes/ttera-themes--intergalactic.yaml | 53 +++ themes/ttera-themes--jellyfish.yaml | 53 +++ themes/ttera-themes--koi-pond-dark.yaml | 53 +++ themes/ttera-themes--koi-pond-light.yaml | 53 +++ themes/ttera-themes--orca.yaml | 53 +++ themes/ttera-themes--panda-dark.yaml | 53 +++ themes/ttera-themes--sakura.yaml | 53 +++ themes/ttera-themes--sunset-beach-dark.yaml | 53 +++ themes/ttera-themes--sunset-beach-light.yaml | 53 +++ themes/ttera-themes--tora.yaml | 53 +++ ...ttera-themes--ukiyo-e-aged-manuscript.yaml | 53 +++ themes/turbo-c-3-0-theme.yaml | 53 +++ themes/turnstyle--turnstyle-darker.yaml | 53 +++ themes/turnstyle--turnstyle.yaml | 53 +++ themes/turquesa.yaml | 53 +++ themes/tutilabs.yaml | 53 +++ themes/tyh-theme.yaml | 53 +++ ...-themes-with-11-icon-sets--akari-dawn.yaml | 53 +++ ...themes-with-11-icon-sets--akari-night.yaml | 53 +++ ...con-sets--blush-pink-enhanced-premium.yaml | 53 +++ ...l-themes-with-11-icon-sets--calm-dark.yaml | 53 +++ ...-themes-with-11-icon-sets--calm-light.yaml | 53 +++ ...es-with-11-icon-sets--cloudmint-night.yaml | 53 +++ ...themes-with-11-icon-sets--copper-dark.yaml | 53 +++ ...ith-11-icon-sets--cyberpink-137-theme.yaml | 53 +++ ...es-with-11-icon-sets--deep-space-dark.yaml | 53 +++ ...mes-with-11-icon-sets--emerald-matrix.yaml | 53 +++ ...ith-11-icon-sets--espresso-dark-theme.yaml | 53 +++ ...emes-with-11-icon-sets--espresso-dark.yaml | 53 +++ ...nal-themes-with-11-icon-sets--evernex.yaml | 53 +++ ...es-with-11-icon-sets--nebula-pro-dark.yaml | 53 +++ ...11-icon-sets--neo-hacker-soft-premium.yaml | 53 +++ ...es-with-11-icon-sets--neon-dream-code.yaml | 53 +++ ...-with-11-icon-sets--nimbus-mint-light.yaml | 53 +++ ...es-with-11-icon-sets--nothing-os-dark.yaml | 53 +++ ...es-with-11-icon-sets--nothing-os-gray.yaml | 53 +++ ...s-with-11-icon-sets--nutty-dark-theme.yaml | 53 +++ ...-with-11-icon-sets--nutty-light-theme.yaml | 53 +++ ...emes-with-11-icon-sets--omnitrix-code.yaml | 53 +++ ...emes-with-11-icon-sets--rose-paradise.yaml | 53 +++ ...s-with-11-icon-sets--solstice-estival.yaml | 53 +++ ...-with-11-icon-sets--solstice-hibernal.yaml | 53 +++ ...-with-11-icon-sets-ghibli-forest-dark.yaml | 53 +++ ...oku-code-dragon-ball-z-power-eye-safe.yaml | 53 +++ ...stinct-theme--ultra-instinct-mastered.yaml | 53 +++ ...a-instinct-theme--ultra-instinct-sign.yaml | 53 +++ ...t-theme-ultra-instinct-mastered-light.yaml | 53 +++ themes/underdark.yaml | 53 +++ themes/unicode-purple-dark-theme.yaml | 53 +++ themes/unicorn-dark-theme.yaml | 53 +++ themes/universe-terkoshi.yaml | 53 +++ themes/unknown.yaml | 53 +++ themes/unlighted.yaml | 53 +++ themes/uno-due-tre.yaml | 53 +++ themes/update.yaml | 53 +++ ...-theme--alien-terminal-nostromo-amber.yaml | 53 +++ ...-theme--alien-terminal-nostromo-green.yaml | 53 +++ ...theme--alien-terminal-sevastopol-link.yaml | 53 +++ themes/vague-theme--windsurf.yaml | 53 +++ themes/valley--valley.yaml | 53 +++ ...valorant-theme--valorant-theme-darker.yaml | 53 +++ ...orant-theme--valorant-theme-remasterd.yaml | 53 +++ .../vaporizer-dark-light-themes--crypto.yaml | 53 +++ ...rk-light-themes--vaporizer-alice-dark.yaml | 53 +++ ...k-light-themes--vaporizer-alice-light.yaml | 53 +++ ...ark-light-themes--vaporizer-ava-light.yaml | 53 +++ ...ht-themes--vaporizer-batman-dark-2022.yaml | 53 +++ ...t-themes--vaporizer-batman-dark-night.yaml | 53 +++ ...-light-themes--vaporizer-cloudy-light.yaml | 53 +++ ...k-light-themes--vaporizer-cobalt-dark.yaml | 53 +++ ...light-themes--vaporizer-crescent-dark.yaml | 53 +++ ...k-light-themes--vaporizer-dark-cherry.yaml | 53 +++ ...k-light-themes--vaporizer-dark-coffee.yaml | 53 +++ ...k-light-themes--vaporizer-dark-cool-1.yaml | 53 +++ ...k-light-themes--vaporizer-dark-cool-2.yaml | 53 +++ ...dark-light-themes--vaporizer-dark-cop.yaml | 53 +++ ...t-themes--vaporizer-dark-cyber-neon-1.yaml | 53 +++ ...t-themes--vaporizer-dark-cyber-neon-2.yaml | 53 +++ ...t-themes--vaporizer-dark-cyber-neon-3.yaml | 53 +++ ...dark-light-themes--vaporizer-dark-ivy.yaml | 53 +++ ...rk-light-themes--vaporizer-dark-joker.yaml | 53 +++ ...light-themes--vaporizer-dark-matrix-2.yaml | 53 +++ ...light-themes--vaporizer-dark-monterey.yaml | 53 +++ ...light-themes--vaporizer-dark-painting.yaml | 53 +++ ...rk-light-themes--vaporizer-dark-pansy.yaml | 53 +++ ...dark-light-themes--vaporizer-dark-red.yaml | 53 +++ ...-light-themes--vaporizer-dark-stabilo.yaml | 53 +++ ...ight-themes--vaporizer-dark-turquoise.yaml | 53 +++ ...light-themes--vaporizer-epic-red-dark.yaml | 53 +++ ...ark-light-themes--vaporizer-fonc-dark.yaml | 53 +++ ...k-light-themes--vaporizer-frozen-dark.yaml | 53 +++ ...rk-light-themes--vaporizer-golgi-dark.yaml | 53 +++ ...ight-themes--vaporizer-half-moon-dark.yaml | 53 +++ ...ight-themes--vaporizer-lemonade-light.yaml | 53 +++ ...s--vaporizer-lemonade-solarized-light.yaml | 53 +++ ...rk-light-themes--vaporizer-milk-light.yaml | 53 +++ ...ght-themes--vaporizer-mini-blue-light.yaml | 53 +++ ...ht-themes--vaporizer-minimalism-light.yaml | 53 +++ ...-light-themes--vaporizer-modern-light.yaml | 53 +++ ...ght-themes--vaporizer-moon-light-dark.yaml | 53 +++ ...ght-themes--vaporizer-phosphoric-grey.yaml | 53 +++ ...ht-themes--vaporizer-purple-gray-dark.yaml | 53 +++ ...rk-light-themes--vaporizer-soft-light.yaml | 53 +++ ...k-light-themes--vaporizer-splash-dark.yaml | 53 +++ ...ght-themes--vaporizer-turquoise-light.yaml | 53 +++ themes/vaporwave-neon-dreams.yaml | 53 +++ themes/velvet-mango.yaml | 53 +++ themes/vercel-docs-theme--vercel-light.yaml | 53 +++ themes/vercel-docs-theme--vercel.yaml | 53 +++ themes/vercel-vscode-theme.yaml | 53 +++ themes/vesper-lighter.yaml | 53 +++ .../vesper-purple-ox--vesper-purple-dark.yaml | 53 +++ ...vesper-purple-ox--vesper-purple-light.yaml | 53 +++ ...sper-purple-theme--vesper-purple-dark.yaml | 53 +++ ...per-purple-theme--vesper-purple-light.yaml | 53 +++ themes/vibe.yaml | 53 +++ themes/vibey-theme.yaml | 53 +++ themes/vibrant-abyss.yaml | 53 +++ themes/vicos-theme.yaml | 53 +++ themes/victoria--victoria-dark.yaml | 53 +++ themes/victoria--victoria-light.yaml | 53 +++ themes/vim-theme--vim-dark-hard.yaml | 53 +++ themes/vim-theme--vim-dark-medium.yaml | 53 +++ themes/vim-theme--vim-dark-soft.yaml | 53 +++ themes/vim-theme--vim-light-hard.yaml | 53 +++ themes/vim-theme--vim-light-medium.yaml | 53 +++ themes/vim-theme--vim-light-soft.yaml | 53 +++ ...an-gogh-painting-themes--starry-night.yaml | 53 +++ ...g-themes--vase-with-twelve-sunflowers.yaml | 53 +++ themes/vintage-story-theme.yaml | 53 +++ themes/violet-night-theme.yaml | 53 +++ ...akarma-theme--vishwakarma-sunset-glow.yaml | 53 +++ themes/visual-studio-fleet.yaml | 53 +++ themes/visualassistgruvboxtheme.yaml | 53 +++ themes/vitepress-theme--unofficial.yaml | 53 +++ themes/vitesse-theme--vitesse-black.yaml | 53 +++ themes/vitesse-theme--vitesse-dark-soft.yaml | 53 +++ themes/vitesse-theme--vitesse-dark.yaml | 53 +++ themes/vitesse-theme--vitesse-light-soft.yaml | 53 +++ themes/vitesse-theme--vitesse-light.yaml | 53 +++ themes/vitesse-theme-gray--vitesse-dark.yaml | 53 +++ themes/vitesse-theme-gray--vitesse-light.yaml | 53 +++ themes/vivid-nord.yaml | 53 +++ themes/vkttheme.yaml | 53 +++ ...vlad-studio-tiniri-theme--tiniri-dark.yaml | 53 +++ ...lad-studio-tiniri-theme--tiniri-light.yaml | 53 +++ themes/void-blue.yaml | 53 +++ themes/voltdark.yaml | 53 +++ themes/vs-code-dark-red-theme.yaml | 53 +++ themes/vs-code-dark-theme--black-theme.yaml | 53 +++ .../vs-code-themes--solarized-dark-theme.yaml | 54 +++ themes/vs-dark-theme.yaml | 53 +++ themes/vs-muted.yaml | 53 +++ themes/vs-snazzy-theme.yaml | 53 +++ themes/vsblue-theme.yaml | 53 +++ themes/vsc-soft-theme.yaml | 54 +++ themes/vscode-crt-ui--crt-amber.yaml | 53 +++ themes/vscode-crt-ui--crt-blue.yaml | 53 +++ themes/vscode-epic-theme.yaml | 53 +++ ...rils-dark-light--vscode-nofrils-light.yaml | 54 +++ themes/vslook.yaml | 53 +++ themes/vstoolkit.yaml | 53 +++ themes/vxcode-theme--vxcode-blush.yaml | 53 +++ themes/vxcode-theme--vxcode-cream.yaml | 53 +++ themes/vxcode-theme--vxcode-dark.yaml | 53 +++ themes/vxcode-theme--vxcode-darker.yaml | 53 +++ themes/vxcode-theme--vxcode-lavender.yaml | 53 +++ themes/vxcode-theme--vxcode-lime.yaml | 53 +++ themes/vxcode-theme--vxcode-oled.yaml | 53 +++ themes/warm-burnout.yaml | 58 +++ themes/warm.yaml | 53 +++ themes/warmkai.yaml | 53 +++ themes/waterbyte-theme.yaml | 53 +++ themes/wawdog-drak-theme.yaml | 53 +++ themes/webc.yaml | 53 +++ themes/weird-theme.yaml | 53 +++ themes/weiting-s-color.yaml | 53 +++ themes/whatsapp.yaml | 53 +++ themes/whisper.yaml | 53 +++ themes/white-shade--white-shade-color.yaml | 53 +++ themes/white.yaml | 53 +++ themes/whiteboard-theme.yaml | 53 +++ themes/willissantos.yaml | 53 +++ themes/willow-theme.yaml | 53 +++ themes/win-xp.yaml | 53 +++ themes/wind-theme--man-dark-stone.yaml | 53 +++ themes/wind-theme--wind-dark-slate.yaml | 53 +++ themes/wind-theme--wind-dark-zinc.yaml | 53 +++ themes/windows-xp-dark.yaml | 53 +++ themes/winter-theme.yaml | 53 +++ themes/wired--jackhammar.yaml | 53 +++ themes/wired--kali-linux-theme.yaml | 53 +++ themes/wired--wired-lighter.yaml | 53 +++ themes/wired--wired.yaml | 53 +++ ...l-material-theme--atom-material-theme.yaml | 53 +++ ...heme--wise-owl-material-high-contrast.yaml | 53 +++ ...terial-theme--wise-owl-material-light.yaml | 53 +++ ...owl-material-theme--wise-owl-material.yaml | 53 +++ themes/wolves-league-theme.yaml | 53 +++ themes/word.yaml | 53 +++ themes/wordsmith--wordsmith-dark.yaml | 54 +++ themes/wordsmith--wordsmith-light.yaml | 54 +++ themes/wst-theme.yaml | 53 +++ ...color-themes--wuthering-waves-aemeath.yaml | 53 +++ ...color-themes--wuthering-waves-augusta.yaml | 53 +++ ...-color-themes--wuthering-waves-baizhi.yaml | 53 +++ ...s-color-themes--wuthering-waves-brant.yaml | 53 +++ ...or-themes--wuthering-waves-cantarella.yaml | 53 +++ ...olor-themes--wuthering-waves-carlotta.yaml | 53 +++ ...or-themes--wuthering-waves-cartethyia.yaml | 53 +++ ...color-themes--wuthering-waves-changli.yaml | 53 +++ ...s-color-themes--wuthering-waves-chisa.yaml | 53 +++ ...olor-themes--wuthering-waves-galbrena.yaml | 53 +++ ...es-color-themes--wuthering-waves-iuno.yaml | 53 +++ ...-color-themes--wuthering-waves-jinhsi.yaml | 53 +++ ...s-color-themes--wuthering-waves-lynae.yaml | 53 +++ ...-color-themes--wuthering-waves-mornye.yaml | 53 +++ ...-color-themes--wuthering-waves-roccia.yaml | 53 +++ ...s-color-themes--wuthering-waves-rover.yaml | 53 +++ ...-color-themes--wuthering-waves-sanhua.yaml | 53 +++ ...es-color-themes--wuthering-waves-scar.yaml | 53 +++ ...s-color-themes--wuthering-waves-taoqi.yaml | 53 +++ ...emes--wuthering-waves-the-shorekeeper.yaml | 53 +++ ...-color-themes--wuthering-waves-verina.yaml | 53 +++ ...-color-themes--wuthering-waves-yinlin.yaml | 53 +++ ...-color-themes--wuthering-waves-zhezhi.yaml | 53 +++ ...r-themes-wuthering-waves-aemeath-dark.yaml | 53 +++ ...r-themes-wuthering-waves-augusta-dark.yaml | 53 +++ ...or-themes-wuthering-waves-baizhi-dark.yaml | 53 +++ ...lor-themes-wuthering-waves-brant-dark.yaml | 53 +++ ...hemes-wuthering-waves-cantarella-dark.yaml | 53 +++ ...-themes-wuthering-waves-carlotta-dark.yaml | 53 +++ ...hemes-wuthering-waves-cartethyia-dark.yaml | 53 +++ ...r-themes-wuthering-waves-changli-dark.yaml | 53 +++ ...lor-themes-wuthering-waves-chisa-dark.yaml | 53 +++ ...-themes-wuthering-waves-galbrena-dark.yaml | 53 +++ ...olor-themes-wuthering-waves-iuno-dark.yaml | 53 +++ ...lor-themes-wuthering-waves-lynae-dark.yaml | 53 +++ ...or-themes-wuthering-waves-mornye-dark.yaml | 53 +++ ...or-themes-wuthering-waves-roccia-dark.yaml | 53 +++ ...or-themes-wuthering-waves-sanhua-dark.yaml | 53 +++ ...olor-themes-wuthering-waves-scar-dark.yaml | 53 +++ ...-wuthering-waves-the-shorekeeper-dark.yaml | 53 +++ ...or-themes-wuthering-waves-verina-dark.yaml | 53 +++ ...or-themes-wuthering-waves-yinlin-dark.yaml | 53 +++ ...or-themes-wuthering-waves-zhezhi-dark.yaml | 53 +++ themes/xanpis--xis-one.yaml | 53 +++ themes/xavatheme.yaml | 53 +++ themes/xduppyx-themes--my-dark-theme.yaml | 53 +++ themes/xenoviatheme.yaml | 53 +++ themes/xeon-light.yaml | 53 +++ themes/xotopio-dark.yaml | 53 +++ themes/xresources-theme-plus.yaml | 53 +++ themes/xxhtml-theme--orange.yaml | 53 +++ themes/xxhtml-themes--orange.yaml | 53 +++ themes/xxhtml-themes--xxhtml.yaml | 53 +++ themes/yami.yaml | 53 +++ themes/yaru-vs-code-theme--yaru-dark.yaml | 53 +++ themes/yd-light-theme.yaml | 53 +++ themes/yelan-dark-theme.yaml | 53 +++ themes/yellow-dark-theme.yaml | 53 +++ ...heme-yet-another-solarized-theme-dark.yaml | 54 +++ ...eme-yet-another-solarized-theme-light.yaml | 54 +++ themes/yonce.yaml | 53 +++ themes/yorha-theme.yaml | 53 +++ themes/ytheme.yaml | 53 +++ themes/yuuyake.yaml | 53 +++ .../yuyuko-vim-vsc--yuyuko-vscode-ocean.yaml | 53 +++ themes/yuyuko-vim-vsc--yuyuko-vscode.yaml | 53 +++ themes/zaeri.yaml | 53 +++ themes/zaher.yaml | 53 +++ themes/zednostheme.yaml | 54 +++ themes/zedromeda.yaml | 54 +++ themes/zelda.yaml | 53 +++ themes/zenbones-themes--zenbones-dark.yaml | 53 +++ themes/zenbones-themes--zenbones-light.yaml | 53 +++ themes/zenith-color-theme--zenith-aurora.yaml | 53 +++ themes/zenith-color-theme--zenith-dawn.yaml | 53 +++ themes/zenith-color-theme--zenith-dusk.yaml | 53 +++ themes/zenith-color-theme--zenith-forest.yaml | 53 +++ .../zenith-color-theme--zenith-midnight.yaml | 53 +++ themes/zenith-color-theme--zenith-ocean.yaml | 53 +++ themes/zenith-color-theme--zenith-ros.yaml | 53 +++ themes/zenith-color-theme--zenith-zen.yaml | 53 +++ themes/zenith-theme--zenith-neutral.yaml | 53 +++ themes/zenith-theme--zenith.yaml | 53 +++ themes/zenith-ui--black-purple.yaml | 53 +++ themes/zenith-ui--deep-purple.yaml | 53 +++ themes/zero.yaml | 53 +++ themes/zeus-theme--zeus-turquoise.yaml | 53 +++ themes/zeus-theme--zeus-yelo.yaml | 53 +++ themes/zh-themes--collapse.yaml | 53 +++ themes/zh-themes--monocr.yaml | 53 +++ themes/zh-themes--zhxo-lt.yaml | 53 +++ themes/zh-themes--zhxo-red.yaml | 53 +++ themes/zh-themes--zhxo-st.yaml | 53 +++ themes/zh-themes--zhxo-yll.yaml | 53 +++ themes/zokugun-themes.yaml | 53 +++ themes/zora-dark-theme--green.yaml | 53 +++ themes/zora-dark-theme--untitled.yaml | 53 +++ themes/zoren-theme.yaml | 53 +++ themes/zunda.yaml | 53 +++ themes/zux.yaml | 53 +++ 3280 files changed, 174346 insertions(+) create mode 100644 scripts/detect-theme-formats.ts create mode 100644 themes/10004ok.yaml create mode 100644 themes/1dark-raincoat.yaml create mode 100644 themes/1mm-themes--1mm-dracula.yaml create mode 100644 themes/365-day-night-themes--365-day-october-dark.yaml create mode 100644 themes/365-day-night-themes--april-dark-theme.yaml create mode 100644 themes/365-day-night-themes--august-dark-theme.yaml create mode 100644 themes/365-day-night-themes--high-contrast-april-light-theme.yaml create mode 100644 themes/365-day-night-themes--high-contrast-april-theme.yaml create mode 100644 themes/365-day-night-themes--high-contrast-august-light-theme.yaml create mode 100644 themes/365-day-night-themes--high-contrast-february-dark-theme.yaml create mode 100644 themes/365-day-night-themes--high-contrast-february-light-theme-accessible.yaml create mode 100644 themes/365-day-night-themes--high-contrast-february-theme-accessible.yaml create mode 100644 themes/365-day-night-themes--high-contrast-july-light-theme.yaml create mode 100644 themes/365-day-night-themes--high-contrast-june-light-theme.yaml create mode 100644 themes/365-day-night-themes--high-contrast-march-dark-theme-accessible.yaml create mode 100644 themes/365-day-night-themes--high-contrast-march-dark-theme.yaml create mode 100644 themes/365-day-night-themes--high-contrast-march-light-theme-accessible.yaml create mode 100644 themes/365-day-night-themes--high-contrast-march-theme-accessible.yaml create mode 100644 themes/365-day-night-themes--high-contrast-may-light-theme.yaml create mode 100644 themes/365-day-night-themes--high-contrast-september-light-theme.yaml create mode 100644 themes/365-day-night-themes--july-summer-vibes-dark-theme.yaml create mode 100644 themes/365-day-night-themes--september-dark-theme.yaml create mode 100644 themes/365-day-night-themes--th-me-dark-aout-contraste-lev.yaml create mode 100644 themes/365-day-night-themes--th-me-dark-avril-vert-printemps.yaml create mode 100644 themes/365-day-night-themes--th-me-dark-janvier-bleu-fonc.yaml create mode 100644 themes/365-day-night-themes--th-me-dark-juillet-contraste-lev.yaml create mode 100644 themes/365-day-night-themes--th-me-dark-juin-high-contrast.yaml create mode 100644 themes/365-day-night-themes--th-me-high-contrast-janvier-r-vis.yaml create mode 100644 themes/365-day-night-themes--th-me-sombre-d-automne.yaml create mode 100644 themes/42nd--42nd.yaml create mode 100644 themes/8-bit--8-bit-dark.yaml create mode 100644 themes/8-bit--8-bit-light.yaml create mode 100644 themes/8-bit-high-contrast.yaml create mode 100644 themes/8008.yaml create mode 100644 themes/8ss-min-dark--untitled.yaml create mode 100644 themes/8x8theme.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-dimmed-1-red.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-dimmed-2-orange.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-dimmed-3-green.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-dimmed-4-blue.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-dimmed-5-purple.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-dimmed-brown.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-dimmed-muted.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-dimmed-vampire.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-1-red.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-2-orange.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-3-green.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-4-blue.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-5-purple.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-muted.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-dark-vampire.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-light-1-red.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-light-2-orange.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-light-3-green.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-light-4-blue.yaml create mode 100644 themes/a-colorful-github-theme-pack--a-github-light-5-purple.yaml create mode 100644 themes/a-cup-of-coffee--light-red.yaml create mode 100644 themes/a-galaxy-far-far-away-theme--rogue-squadron.yaml create mode 100644 themes/a-galaxy-far-far-away-theme--the-empire.yaml create mode 100644 themes/a-m-themes.yaml create mode 100644 themes/a-pastel-fever-dream.yaml create mode 100644 themes/a24--minimal.yaml create mode 100644 themes/abolkog-theme--abolkog-dark.yaml create mode 100644 themes/abolkog-theme--abolkog-light.yaml create mode 100644 themes/abyski.yaml create mode 100644 themes/abyssal--abyssal-anime.yaml create mode 100644 themes/abyssal--abyssal-black.yaml create mode 100644 themes/abyssal--abyssal-catppuccin.yaml create mode 100644 themes/abyssal--abyssal-dark.yaml create mode 100644 themes/abyssal--abyssal-dracula.yaml create mode 100644 themes/abyssal--abyssal-e-ink.yaml create mode 100644 themes/abyssal--abyssal-everforest.yaml create mode 100644 themes/abyssal--abyssal-gruvbox.yaml create mode 100644 themes/abyssal--abyssal-hacker.yaml create mode 100644 themes/abyssal--abyssal-latte.yaml create mode 100644 themes/abyssal--abyssal-nord.yaml create mode 100644 themes/abyssal--abyssal-tokyo-night.yaml create mode 100644 themes/ac-theme.yaml create mode 100644 themes/acme-go-playground-themes--acme.yaml create mode 100644 themes/acme-go-playground-themes--go-playground.yaml create mode 100644 themes/acme-go-playground-themes--go-source.yaml create mode 100644 themes/acs-motion-control.yaml create mode 100644 themes/actually-minimalistic.yaml create mode 100644 themes/adam.yaml create mode 100644 themes/adey-coder-theme--adey-coder-deep-dark.yaml create mode 100644 themes/adey-coder-theme--adey-coder.yaml create mode 100644 themes/adonis-theme--adonis.yaml create mode 100644 themes/adr-theme.yaml create mode 100644 themes/advpara.yaml create mode 100644 themes/adwaita-base16.yaml create mode 100644 themes/aether-sublime-coding-experience--aether-emerald.yaml create mode 100644 themes/aether-themes--aether-coffee-dark.yaml create mode 100644 themes/aether-themes--aether-coffee.yaml create mode 100644 themes/aether-themes--aether-dark-space.yaml create mode 100644 themes/aether-themes--aether-dark.yaml create mode 100644 themes/aether-themes--aether-emerald.yaml create mode 100644 themes/aether-themes--aether-light.yaml create mode 100644 themes/afternoon-delight.yaml create mode 100644 themes/agathist-themes.yaml create mode 100644 themes/aim-themes--hack-and-lima.yaml create mode 100644 themes/aim-themes--kai-sa-white-fork.yaml create mode 100644 themes/aim-themes--kaisa-dark.yaml create mode 100644 themes/akari--akari-dawn.yaml create mode 100644 themes/akari--akari-night.yaml create mode 100644 themes/akashi-dark.yaml create mode 100644 themes/akumanomi-theme--akumanomi-theme.yaml create mode 100644 themes/alabaster-dark-theme.yaml create mode 100644 themes/alchemist-s-orchid--alchemist-s-orchid-dark.yaml create mode 100644 themes/alchemist-s-orchid--alchemist-s-orchid-light.yaml create mode 100644 themes/alchemist-s-orchid--alchemist-s-orchid-sepia.yaml create mode 100644 themes/alchemist.yaml create mode 100644 themes/alien-blood--alien-blood.yaml create mode 100644 themes/all-nighter-italic.yaml create mode 100644 themes/alma-sakura.yaml create mode 100644 themes/alt-catppuccin-for-vscode--catppuccin-monokai-frappe.yaml create mode 100644 themes/alt-catppuccin-for-vscode--catppuccin-monokai-latte.yaml create mode 100644 themes/alt-catppuccin-for-vscode--catppuccin-monokai-macchiato.yaml create mode 100644 themes/alt-catppuccin-for-vscode--catppuccin-monokai-mocha.yaml create mode 100644 themes/alternight--alternight.yaml create mode 100644 themes/alucard--alucard-sotn.yaml create mode 100644 themes/amaral-pink.yaml create mode 100644 themes/amethyst-kiss-themes-pack-amethyst-kiss-dark-kiss-mode.yaml create mode 100644 themes/amethyst-kiss-themes-pack-amethyst-kiss-light-kiss-mode.yaml create mode 100644 themes/amoled-black-theme--amoled-dark-theme.yaml create mode 100644 themes/amoled-darcula-theme.yaml create mode 100644 themes/amp-theme--amp-dark.yaml create mode 100644 themes/amp-theme--amp-light.yaml create mode 100644 themes/an-old-hope-theme.yaml create mode 100644 themes/andromeda-dark-theme.yaml create mode 100644 themes/andromeda-night--dusk.yaml create mode 100644 themes/andromeda-night--tokyo-night-equalizer.yaml create mode 100644 themes/andy-blue.yaml create mode 100644 themes/angular-theme.yaml create mode 100644 themes/anime-theme-attack-on-titan-eren-s-determination.yaml create mode 100644 themes/anime-theme-collection.yaml create mode 100644 themes/anime-theme-my-hero-academia-deku-plus-ultra.yaml create mode 100644 themes/anime-theme-naruto-hokage-orange.yaml create mode 100644 themes/anime-theme-one-piece-straw-hat-red.yaml create mode 100644 themes/ano-theme.yaml create mode 100644 themes/another-vscode-zenburn-theme.yaml create mode 100644 themes/anquyx--anquyx.yaml create mode 100644 themes/anthropic-inspired-theme--anthropic-dark.yaml create mode 100644 themes/anthropic-inspired-theme--anthropic-light.yaml create mode 100644 themes/anthropic-theme.yaml create mode 100644 themes/anti-glare-theme--anti-glare-moonlit.yaml create mode 100644 themes/anti-glare-theme--anti-glare-nebula.yaml create mode 100644 themes/anti-glare-theme--anti-glare-official.yaml create mode 100644 themes/antzed--anthropic-dark.yaml create mode 100644 themes/antzed--anthropic-light.yaml create mode 100644 themes/anya.yaml create mode 100644 themes/anysphere-dark-greener.yaml create mode 100644 themes/apathy-theme--apathy-experimental.yaml create mode 100644 themes/apathy-theme--apathy.yaml create mode 100644 themes/apollo-theme--apollo-dark.yaml create mode 100644 themes/apollo-theme--apollo-light.yaml create mode 100644 themes/aqua-main.yaml create mode 100644 themes/aqua-material.yaml create mode 100644 themes/aquatic-blue.yaml create mode 100644 themes/arasaka-inferno-theme--blue-neon.yaml create mode 100644 themes/arasaka-inferno-theme--pink-neon.yaml create mode 100644 themes/arasaka-inferno-theme--red-neon.yaml create mode 100644 themes/arcadia-theme--arcadia-theme-dark.yaml create mode 100644 themes/arcadia-theme--arcadia-theme-storm.yaml create mode 100644 themes/arcaea-theme--arcaea.yaml create mode 100644 themes/archangel--archangel-dusk.yaml create mode 100644 themes/archangel--archangel.yaml create mode 100644 themes/arctic-night-theme.yaml create mode 100644 themes/arctis--arctis-dark.yaml create mode 100644 themes/arctis--arctis-high-contrast.yaml create mode 100644 themes/arctis--arctis-light.yaml create mode 100644 themes/arctis--arctis-moon.yaml create mode 100644 themes/arctis--arctis-night.yaml create mode 100644 themes/arctis--arctis.yaml create mode 100644 themes/ariake-sands--ariake-sands.yaml create mode 100644 themes/ariake-sands--ariake-sun.yaml create mode 100644 themes/armada-theme.yaml create mode 100644 themes/arunim-s-theme.yaml create mode 100644 themes/asaka-theme.yaml create mode 100644 themes/ash-ember-warm-dark-theme.yaml create mode 100644 themes/ashao-theme.yaml create mode 100644 themes/asp-editor.yaml create mode 100644 themes/aspiesoft-intellij-theme--aspiesoft-intellij-theme.yaml create mode 100644 themes/aster.yaml create mode 100644 themes/astra-theme.yaml create mode 100644 themes/astro-by-mike--astro-dark.yaml create mode 100644 themes/astro-by-mike--astro-light.yaml create mode 100644 themes/astro-kanagawa--astro-kanagawa.yaml create mode 100644 themes/asuka-theme--asuka-theme-light.yaml create mode 100644 themes/asuka-theme--asuka-theme.yaml create mode 100644 themes/atom-one-cyan--atom-one-dark-cyan.yaml create mode 100644 themes/atom-one-cyan--atom-one-light-cyan.yaml create mode 100644 themes/atom-theme.yaml create mode 100644 themes/august-themes--august-ariake-dark.yaml create mode 100644 themes/august-themes--august-arstotzka.yaml create mode 100644 themes/august-themes--august-beardedtheme-oceanic-reversed.yaml create mode 100644 themes/august-themes--august-beardedtheme-surprising-blueberry.yaml create mode 100644 themes/august-themes--august-catppuccin.yaml create mode 100644 themes/august-themes--august-city-lights.yaml create mode 100644 themes/august-themes--august-drawbridge.yaml create mode 100644 themes/august-themes--august-material-ocean.yaml create mode 100644 themes/august-themes--august-material-palenight.yaml create mode 100644 themes/august-themes--august-night-owl.yaml create mode 100644 themes/august-themes--august-nord.yaml create mode 100644 themes/august-themes--august-radical-2.yaml create mode 100644 themes/august-themes--august-radical.yaml create mode 100644 themes/august-themes-august-arstotzka-darker.yaml create mode 100644 themes/august-themes-august-arstotzka-lighter.yaml create mode 100644 themes/august-themes-august-city-lights-darker.yaml create mode 100644 themes/august-themes-august-drawbridge-darker.yaml create mode 100644 themes/august-themes-august-gruvbox-darker.yaml create mode 100644 themes/august-themes-august-kanagawa-darker.yaml create mode 100644 themes/august-themes-august-night-owl-darker.yaml create mode 100644 themes/august-themes-august-nord-darker.yaml create mode 100644 themes/aura-spirit-dracula-theme--aura-dracula-spirit.yaml create mode 100644 themes/aura-spirit-dracula-theme-aura-dracula-spirit-soft.yaml create mode 100644 themes/aura-spirit-dracula-theme-aura-dracula-spirit-synthwave.yaml create mode 100644 themes/aura-theme--aura-dark.yaml create mode 100644 themes/aura-theme--aura-soft-dark.yaml create mode 100644 themes/aura-theme-aura-dark-soft-text.yaml create mode 100644 themes/aura-theme-aura-soft-dark-soft-text.yaml create mode 100644 themes/aurora-evening.yaml create mode 100644 themes/aurora-theme-official--aurora-dark-primary.yaml create mode 100644 themes/aurora-theme-official.yaml create mode 100644 themes/autu-theme.yaml create mode 100644 themes/autumn-theme--light.yaml create mode 100644 themes/ava583-dark-rose-quartz-theme.yaml create mode 100644 themes/avesta--mono-atom.yaml create mode 100644 themes/awork.yaml create mode 100644 themes/axion-themes--plasma-pink.yaml create mode 100644 themes/axion-themes--quantum-green.yaml create mode 100644 themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-dark-bordered.yaml create mode 100644 themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-dark.yaml create mode 100644 themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-mirage-bordered.yaml create mode 100644 themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-mirage.yaml create mode 100644 themes/ayu-theme-fork.yaml create mode 100644 themes/ayu-tokyo-night.yaml create mode 100644 themes/ayuloco-theme--ayuloco-dark-bordered.yaml create mode 100644 themes/ayuloco-theme--ayuloco-mirage-bordered.yaml create mode 100644 themes/ayuloco-theme--ayuloco-mirage.yaml create mode 100644 themes/az0ox-shades-of-blue.yaml create mode 100644 themes/azul--azul.yaml create mode 100644 themes/azul--greenspace.yaml create mode 100644 themes/azure-teal.yaml create mode 100644 themes/b715xyz.yaml create mode 100644 themes/barbenheimer--barbenheimer-bunker.yaml create mode 100644 themes/barbenheimer--barbenheimer-dreamhouse.yaml create mode 100644 themes/barbenheimer--barbenheimer-nuclear-sunrise.yaml create mode 100644 themes/base16-themes--base16-3024-dark.yaml create mode 100644 themes/base16-themes--base16-3024-light.yaml create mode 100644 themes/base16-themes--base16-apathy-dark.yaml create mode 100644 themes/base16-themes--base16-apathy-light.yaml create mode 100644 themes/base16-themes--base16-ashes-dark.yaml create mode 100644 themes/base16-themes--base16-ashes-light.yaml create mode 100644 themes/base16-themes--base16-bespin-dark.yaml create mode 100644 themes/base16-themes--base16-bespin-light.yaml create mode 100644 themes/base16-themes--base16-brewer-dark.yaml create mode 100644 themes/base16-themes--base16-brewer-light.yaml create mode 100644 themes/base16-themes--base16-bright-dark.yaml create mode 100644 themes/base16-themes--base16-bright-light.yaml create mode 100644 themes/base16-themes--base16-codeschool-dark.yaml create mode 100644 themes/base16-themes--base16-codeschool-light.yaml create mode 100644 themes/base16-themes--base16-default-dark.yaml create mode 100644 themes/base16-themes--base16-default-light.yaml create mode 100644 themes/base16-themes--base16-eighties-dark.yaml create mode 100644 themes/base16-themes--base16-eighties-light.yaml create mode 100644 themes/base16-themes--base16-embers-dark.yaml create mode 100644 themes/base16-themes--base16-embers-light.yaml create mode 100644 themes/base16-themes--base16-flat-dark.yaml create mode 100644 themes/base16-themes--base16-flat-light.yaml create mode 100644 themes/base16-themes--base16-google-dark.yaml create mode 100644 themes/base16-themes--base16-google-light.yaml create mode 100644 themes/base16-themes--base16-grayscale-dark.yaml create mode 100644 themes/base16-themes--base16-grayscale-light.yaml create mode 100644 themes/base16-themes--base16-green-screen-dark.yaml create mode 100644 themes/base16-themes--base16-green-screen-light.yaml create mode 100644 themes/base16-themes--base16-harmonic16-dark.yaml create mode 100644 themes/base16-themes--base16-harmonic16-light.yaml create mode 100644 themes/base16-themes--base16-isotope-dark.yaml create mode 100644 themes/base16-themes--base16-isotope-light.yaml create mode 100644 themes/base16-themes--base16-marrakesh-dark.yaml create mode 100644 themes/base16-themes--base16-marrakesh-light.yaml create mode 100644 themes/base16-themes--base16-mocha-dark.yaml create mode 100644 themes/base16-themes--base16-mocha-light.yaml create mode 100644 themes/base16-themes--base16-monokai-dark.yaml create mode 100644 themes/base16-themes--base16-monokai-light.yaml create mode 100644 themes/base16-themes--base16-ocean-dark.yaml create mode 100644 themes/base16-themes--base16-ocean-light.yaml create mode 100644 themes/base16-themes--base16-oceanicnext-dark.yaml create mode 100644 themes/base16-themes--base16-oceanicnext-light.yaml create mode 100644 themes/base16-themes--base16-paraiso-dark.yaml create mode 100644 themes/base16-themes--base16-paraiso-light.yaml create mode 100644 themes/base16-themes--base16-pop-dark.yaml create mode 100644 themes/base16-themes--base16-pop-light.yaml create mode 100644 themes/base16-themes--base16-railscasts-dark.yaml create mode 100644 themes/base16-themes--base16-railscasts-light.yaml create mode 100644 themes/base16-themes--base16-shapeshifter-dark.yaml create mode 100644 themes/base16-themes--base16-shapeshifter-light.yaml create mode 100644 themes/base16-themes--base16-solarized-dark.yaml create mode 100644 themes/base16-themes--base16-solarized-light.yaml create mode 100644 themes/base16-themes--base16-summerfruit-dark.yaml create mode 100644 themes/base16-themes--base16-summerfruit-light.yaml create mode 100644 themes/base16-themes--base16-tomorrow-dark.yaml create mode 100644 themes/base16-themes--base16-tomorrow-light.yaml create mode 100644 themes/base16-themes--base16-twilight-dark.yaml create mode 100644 themes/base16-themes--base16-twilight-light.yaml create mode 100644 themes/base16-themes--base16-unikitty-dark.yaml create mode 100644 themes/base16-themes--base16-unikitty-light.yaml create mode 100644 themes/base16-themes--base16-woodland-dark.yaml create mode 100644 themes/basictheme.yaml create mode 100644 themes/batsignal.yaml create mode 100644 themes/beach-house.yaml create mode 100644 themes/bear-theme.yaml create mode 100644 themes/beautiful-ui--material.yaml create mode 100644 themes/beautiful-ui--nord.yaml create mode 100644 themes/beautiful-ui--nova.yaml create mode 100644 themes/beautiful-ui--zenburn.yaml create mode 100644 themes/bee-theme--bee-theme-color-theme-tow.yaml create mode 100644 themes/bee-theme--bee-theme.yaml create mode 100644 themes/benlatheme.yaml create mode 100644 themes/benpai-theme.yaml create mode 100644 themes/berlin-postal-themes--nw21.yaml create mode 100644 themes/berlin-postal-themes--sw61.yaml create mode 100644 themes/berry-latte-light-theme.yaml create mode 100644 themes/bersk-dark-theme.yaml create mode 100644 themes/beru-theme.yaml create mode 100644 themes/best-themes-redefined--best-themes-monokai-next.yaml create mode 100644 themes/best-themes-redefined--best-themes-one-monokai.yaml create mode 100644 themes/better-solarized--better-selenized-dark.yaml create mode 100644 themes/better-solarized--better-solarized-dark-italic.yaml create mode 100644 themes/better-solarized--better-solarized-dark.yaml create mode 100644 themes/bianconero--bianconero.yaml create mode 100644 themes/bigsurgtk-blue.yaml create mode 100644 themes/bio-dark-midnight.yaml create mode 100644 themes/bio-dark.yaml create mode 100644 themes/bird--bird.yaml create mode 100644 themes/bits.yaml create mode 100644 themes/biu-theme--vitesse-dark.yaml create mode 100644 themes/biu-theme--vitesse-light.yaml create mode 100644 themes/blac.yaml create mode 100644 themes/black-n-turquoise.yaml create mode 100644 themes/black-pink-theme.yaml create mode 100644 themes/black-total.yaml create mode 100644 themes/black-void.yaml create mode 100644 themes/blackbird--blackbird-dusk.yaml create mode 100644 themes/blackbird--blackbird-midnight.yaml create mode 100644 themes/blackcoffee-dark.yaml create mode 100644 themes/blackforest--everforest-dark.yaml create mode 100644 themes/blazing-red.yaml create mode 100644 themes/blazydark.yaml create mode 100644 themes/blinds-theme.yaml create mode 100644 themes/bloom.yaml create mode 100644 themes/blue-light-theme--blue-light-theme.yaml create mode 100644 themes/blue-moves-theme.yaml create mode 100644 themes/blue-night--blue-day.yaml create mode 100644 themes/blue-night--blue-night.yaml create mode 100644 themes/blue-paint.yaml create mode 100644 themes/bluered.yaml create mode 100644 themes/bluespace--sober.yaml create mode 100644 themes/bluloco-dark-muted-w77.yaml create mode 100644 themes/bluloco-dark-theme--bluloco-dark.yaml create mode 100644 themes/bluloco-light-theme.yaml create mode 100644 themes/blurple.yaml create mode 100644 themes/blush.yaml create mode 100644 themes/blve-a-dark-blue-theme.yaml create mode 100644 themes/bocchi-the-vscode-theme.yaml create mode 100644 themes/bolsonarodarktheme.yaml create mode 100644 themes/borders-dark--borders-blue.yaml create mode 100644 themes/borders-dark--borders-dark.yaml create mode 100644 themes/borders-dark--borders-darker.yaml create mode 100644 themes/borealis-night-theme.yaml create mode 100644 themes/borealis-theme.yaml create mode 100644 themes/botany-theme.yaml create mode 100644 themes/braver-s-solarized.yaml create mode 100644 themes/brid-purple--brid-purple-garden-dark.yaml create mode 100644 themes/brid-purple--brid-purple-garden-light.yaml create mode 100644 themes/bright-colors.yaml create mode 100644 themes/brigitte-helm.yaml create mode 100644 themes/broly-theme.yaml create mode 100644 themes/buby.yaml create mode 100644 themes/bulbul-theme.yaml create mode 100644 themes/butter.yaml create mode 100644 themes/c-c-theme--c-c-theme.yaml create mode 100644 themes/cabalyon.yaml create mode 100644 themes/calm-days-sober-nights--calm-days-sober-nights-day.yaml create mode 100644 themes/calm-days-sober-nights--calm-days-sober-nights-night.yaml create mode 100644 themes/calm-days-sober-nights-calm-days-sober-nights-day-sky.yaml create mode 100644 themes/calm-days-sober-nights-calm-days-sober-nights-night-sky.yaml create mode 100644 themes/calm-down-theme.yaml create mode 100644 themes/calmppuccin--calmppuccin-frappe.yaml create mode 100644 themes/calmppuccin--calmppuccin-latte.yaml create mode 100644 themes/calmppuccin--calmppuccin-macchiato.yaml create mode 100644 themes/calmppuccin--calmppuccin-mocha.yaml create mode 100644 themes/calmppuccin--calmppuccin-nitro-cold-brew.yaml create mode 100644 themes/calmppuccin--calmppuccin-oledppuccin.yaml create mode 100644 themes/camo.yaml create mode 100644 themes/cand-pine--candy-pine.yaml create mode 100644 themes/carbon-candy--carbon-candy-anthracite.yaml create mode 100644 themes/carbon-candy--carbon-candy-aurora.yaml create mode 100644 themes/carbon-candy--carbon-candy-bee.yaml create mode 100644 themes/carbon-candy--carbon-candy-carbon.yaml create mode 100644 themes/carbon-candy--carbon-candy-dark.yaml create mode 100644 themes/carbon-candy--carbon-candy-obsidian.yaml create mode 100644 themes/carbon-candy--carbon-candy-palenight.yaml create mode 100644 themes/carbon-code-theme--carbon-code-amber-dark.yaml create mode 100644 themes/carbon-code-theme--carbon-code-amber-light.yaml create mode 100644 themes/carbon-code-theme--carbon-code-crimson-dark.yaml create mode 100644 themes/carbon-code-theme--carbon-code-crimson-light.yaml create mode 100644 themes/carbon-code-theme--carbon-code-dark.yaml create mode 100644 themes/carbon-code-theme--carbon-code-emerald-dark.yaml create mode 100644 themes/carbon-code-theme--carbon-code-emerald-light.yaml create mode 100644 themes/carbon-code-theme--carbon-code-light.yaml create mode 100644 themes/carbon-code-theme--carbon-code-rose-dark.yaml create mode 100644 themes/carbon-code-theme--carbon-code-rose-light.yaml create mode 100644 themes/carbon-code-theme--sazardev.yaml create mode 100644 themes/carbon-theme.yaml create mode 100644 themes/catppuccin-dark-theme.yaml create mode 100644 themes/catppuccin-for-vscode--catppuccin-frapp.yaml create mode 100644 themes/catppuccin-for-vscode--catppuccin-latte.yaml create mode 100644 themes/catppuccin-for-vscode--catppuccin-macchiato.yaml create mode 100644 themes/catppuccin-for-vscode--catppuccin-mocha.yaml create mode 100644 themes/cave.yaml create mode 100644 themes/cds-for-vscode--vanilla.yaml create mode 100644 themes/cds-for-vscode.yaml create mode 100644 themes/celestial-theme--high-contrast.yaml create mode 100644 themes/chai-theme--chai-light.yaml create mode 100644 themes/chai-theme--dark-chai.yaml create mode 100644 themes/chalk-theme.yaml create mode 100644 themes/chatgp-theme.yaml create mode 100644 themes/chee-themes.yaml create mode 100644 themes/cheethatheme.yaml create mode 100644 themes/cherry--cherry-midnight.yaml create mode 100644 themes/cherry--cherry.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-airy.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-breeze.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-dark-reflection.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-dark-vivid.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-dark.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-dimmed-dusk.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-dimmed.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-night-harmony.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-night.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-osaka-light.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-osaka.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-sky-vibrant.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-spring.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-twilight.yaml create mode 100644 themes/cherry-blossom-theme--cherry-blossom-warm.yaml create mode 100644 themes/cherry-blossom.yaml create mode 100644 themes/chinolor-theme--chinolor-light.yaml create mode 100644 themes/chinolor-theme--chinolor.yaml create mode 100644 themes/chroma-library--deep-ocean.yaml create mode 100644 themes/chroma-library--dna-helix.yaml create mode 100644 themes/chroma-library--electric-blue.yaml create mode 100644 themes/chroma-library--midnight-purple.yaml create mode 100644 themes/chroma-library--neon-cyber.yaml create mode 100644 themes/chroma-library--neon-synthwave.yaml create mode 100644 themes/chroma-library--plasma-pink.yaml create mode 100644 themes/chroma-library--quantum-green.yaml create mode 100644 themes/chroma-library--solar-flare.yaml create mode 100644 themes/chroma-library--toxic-waste.yaml create mode 100644 themes/chromahin--chromahin-amoled.yaml create mode 100644 themes/chromahin--chromahin-dark.yaml create mode 100644 themes/chromahin--chromahin-multi-color.yaml create mode 100644 themes/chromahin--chromahin-soft.yaml create mode 100644 themes/chromodynamics-v3-theme.yaml create mode 100644 themes/cinnamoroll-dark-theme.yaml create mode 100644 themes/cinnamoroll-light-theme.yaml create mode 100644 themes/clasic-harmonized.yaml create mode 100644 themes/classic-essential-colors-blue-balsa.yaml create mode 100644 themes/classic-macos-theme-zed-port--macos-classic-dark.yaml create mode 100644 themes/classic-macos-theme-zed-port--macos-classic-light.yaml create mode 100644 themes/classic-terminal-revisited.yaml create mode 100644 themes/classictheme.yaml create mode 100644 themes/claude-anthropic-theme.yaml create mode 100644 themes/claude-code-theme--claude-code-dark-high-contrast.yaml create mode 100644 themes/claude-code-theme--claude-code-dark.yaml create mode 100644 themes/claude-code-theme--claude-code-light-high-contrast.yaml create mode 100644 themes/claude-code-theme--claude-code-light.yaml create mode 100644 themes/claude-theme-by-jnahian--claude-dark.yaml create mode 100644 themes/claude-theme-by-jnahian--claude-light.yaml create mode 100644 themes/claude-theme-for-vs-code--claude-vscode-dark-brand.yaml create mode 100644 themes/claude-theme-for-vs-code--claude-vscode-light-brand.yaml create mode 100644 themes/claude-theme-for-vs-code-cursor-windsurf--claude-dark.yaml create mode 100644 themes/claude-theme-for-vs-code-cursor-windsurf--claude-light.yaml create mode 100644 themes/claude-vscode-theme--claude-dark-high-contrast.yaml create mode 100644 themes/claude-vscode-theme--claude-dark.yaml create mode 100644 themes/clear--clear-dark.yaml create mode 100644 themes/cleo--dark.yaml create mode 100644 themes/clickhere.yaml create mode 100644 themes/clymate-themes-for-vs-code.yaml create mode 100644 themes/cobalt-next--cobalt-next-dark.yaml create mode 100644 themes/cobalt-next--cobalt-next.yaml create mode 100644 themes/cobalt9-theme--cobalt9.yaml create mode 100644 themes/code-like-a-rainbow--code-like-a-rainbow.yaml create mode 100644 themes/code-like-a-rainbow--untitled.yaml create mode 100644 themes/code-with-colors-pro--code-with-colors-pro-midnight-purple.yaml create mode 100644 themes/code-with-colors-pro--theme-for-codes-dark.yaml create mode 100644 themes/code-with-colors-pro--theme-for-codes-light.yaml create mode 100644 themes/codebabel-theme-drk.yaml create mode 100644 themes/codebabel-theme-nefarious-vantablack.yaml create mode 100644 themes/codebabel-theme-obscureorange.yaml create mode 100644 themes/codeify-dark-theme--codeify-dark-berry-color-theme.yaml create mode 100644 themes/codeify-dark-theme--codiefy-optimas-prime-color-theme.yaml create mode 100644 themes/codely-dark-pro.yaml create mode 100644 themes/codely-theme.yaml create mode 100644 themes/codeme-theme--ash.yaml create mode 100644 themes/codeme-theme--ayudark.yaml create mode 100644 themes/codeme-theme--codeme.yaml create mode 100644 themes/codeme-theme--googledark.yaml create mode 100644 themes/codeme-theme--nordicdark.yaml create mode 100644 themes/codeme-theme--omni.yaml create mode 100644 themes/codeme-theme--tokyo.yaml create mode 100644 themes/coder-vai-multi-language-code-runner--coder-vai-forest.yaml create mode 100644 themes/coder-vai-multi-language-code-runner--coder-vai-light.yaml create mode 100644 themes/coder-vai-multi-language-code-runner--coder-vai-ocean.yaml create mode 100644 themes/coder-vai-multi-language-code-runner--coder-vai-purple-haze.yaml create mode 100644 themes/codesandbox-theme-github-com-isneru.yaml create mode 100644 themes/codesandbox-tribute.yaml create mode 100644 themes/codesso.yaml create mode 100644 themes/codevibe-themes.yaml create mode 100644 themes/codewithsg-dark.yaml create mode 100644 themes/cody.yaml create mode 100644 themes/coffee-break-theme--day.yaml create mode 100644 themes/coffee-break-theme--night.yaml create mode 100644 themes/coffee-dark-theme--color-coffee-dark.yaml create mode 100644 themes/coimbrox-panda-theme.yaml create mode 100644 themes/coimbrox-theme.yaml create mode 100644 themes/coldark--coldark-cold.yaml create mode 100644 themes/coldark--coldark-dark.yaml create mode 100644 themes/collotheme.yaml create mode 100644 themes/color-contrast-theme--color-contrast.yaml create mode 100644 themes/color-sea--color-sea-blue.yaml create mode 100644 themes/color-sea--color-sea-gray.yaml create mode 100644 themes/color-sea--color-sea-green.yaml create mode 100644 themes/color-sea--color-sea-orange.yaml create mode 100644 themes/color-sea--color-sea-purple.yaml create mode 100644 themes/color-sea--color-sea-red.yaml create mode 100644 themes/color-sea--color-sea-yellow.yaml create mode 100644 themes/color-theme--cyan-dark.yaml create mode 100644 themes/color-wheel.yaml create mode 100644 themes/colorado-theme--theme-dark.yaml create mode 100644 themes/colorado-theme--theme.yaml create mode 100644 themes/colored-desert--colored-desert.yaml create mode 100644 themes/colored-theme--red-color-theme.yaml create mode 100644 themes/colorful-dark-light-and-monochrome-italic-color-themes-pack--qqqoid-light-color.yaml create mode 100644 themes/colorful-theme.yaml create mode 100644 themes/colorized-theme-1-3--github-dark-dimmed.yaml create mode 100644 themes/colorized-theme-1-3--github-light-default.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-01-crimson.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-02-vermilion.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-03-amber.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-04-goldenrod.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-06-chartreuse.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-07-fern.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-08-emerald.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-09-jade.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-11-aqua.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-14-cerulean.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-15-sky.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-18-indigo.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-20-amethyst.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-21-magenta.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-22-fuchsia.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-23-rose.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-dark-24-coral.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-light-03-amber.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-light-07-fern.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-light-09-jade.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-light-11-aqua.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-light-15-sky.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-light-18-indigo.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-light-19-violet.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-light-23-rose.yaml create mode 100644 themes/colorized-theme-1-3--kuroir-light-24-coral.yaml create mode 100644 themes/colorsbars--colorbars-blue.yaml create mode 100644 themes/colorsbars--colorbars-green.yaml create mode 100644 themes/colorsbars--colorbars-orange.yaml create mode 100644 themes/colorsbars--colorbars-purple.yaml create mode 100644 themes/colorways-themes.yaml create mode 100644 themes/columbina-theme-genshin-impact--columbina-high-contrast.yaml create mode 100644 themes/community-material-theme--community-material-theme-darker-high-contrast.yaml create mode 100644 themes/community-material-theme--community-material-theme-darker.yaml create mode 100644 themes/community-material-theme--community-material-theme-default.yaml create mode 100644 themes/community-material-theme--community-material-theme-lighter-high-contrast.yaml create mode 100644 themes/community-material-theme--community-material-theme-lighter.yaml create mode 100644 themes/community-material-theme--community-material-theme-ocean.yaml create mode 100644 themes/community-material-theme--community-material-theme-palenight.yaml create mode 100644 themes/compact-vs-code--perry-the-platypus.yaml create mode 100644 themes/compline--compline.yaml create mode 100644 themes/compline--lauds.yaml create mode 100644 themes/conifer-theme--conifer-theme.yaml create mode 100644 themes/conifer-theme--mist-theme.yaml create mode 100644 themes/conifer-theme--pine-cone-theme.yaml create mode 100644 themes/cool-cowboy-theme--cowboy-theme.yaml create mode 100644 themes/cool-girls-theme.yaml create mode 100644 themes/coolnight-theme.yaml create mode 100644 themes/cosmic-gleam.yaml create mode 100644 themes/cosmic-pop-dark.yaml create mode 100644 themes/cosmo-theme.yaml create mode 100644 themes/cosy-orange-themes.yaml create mode 100644 themes/cr-theme-night.yaml create mode 100644 themes/crf-flamengo-theme.yaml create mode 100644 themes/crow--crow-dark.yaml create mode 100644 themes/crt-themes--crt-64.yaml create mode 100644 themes/crt-themes--crt-amber.yaml create mode 100644 themes/crt-themes--crt-blue.yaml create mode 100644 themes/crt-themes--crt-green.yaml create mode 100644 themes/crt-themes--crt-red.yaml create mode 100644 themes/crystalline-theme--crystaltine-s-crystalline-4-1.yaml create mode 100644 themes/crystalline-theme--crystaltine-s-crystalline-5-0.yaml create mode 100644 themes/cs50-theme-harvard.yaml create mode 100644 themes/csr-blue.yaml create mode 100644 themes/cupertino--cupertino-dark.yaml create mode 100644 themes/cupertino--cupertino-light.yaml create mode 100644 themes/cursor-dark--cursor-dark.yaml create mode 100644 themes/cursor-dark--cursor-less-dark.yaml create mode 100644 themes/cursor-dark-origin.yaml create mode 100644 themes/cursor-midnight--cursor-dark.yaml create mode 100644 themes/cursor-midnight--cursor-light.yaml create mode 100644 themes/cursor-night-theme--cursor-night-theme-soft.yaml create mode 100644 themes/cursor-night-theme--cursor-night-theme.yaml create mode 100644 themes/cursor-theme--cursor-theme.yaml create mode 100644 themes/custom-github-dark-dimmed.yaml create mode 100644 themes/cute-aesthetic.yaml create mode 100644 themes/cyan-theme.yaml create mode 100644 themes/cyber-dark--cyber-dark.yaml create mode 100644 themes/cyber-dark--cyber-light-soft.yaml create mode 100644 themes/cyber-dark--cyber-light-warm.yaml create mode 100644 themes/cyber-dark--cyber-light.yaml create mode 100644 themes/cyber-dark-qoder-themes--javascript-modern-dark.yaml create mode 100644 themes/cyber-dark-qoder-themes--javascript-neon-dark.yaml create mode 100644 themes/cyber-dark-qoder-themes--javascript-vibrant-dark.yaml create mode 100644 themes/cyber-dark-qoder-themes--qoder-dark.yaml create mode 100644 themes/cyber-pastel-theme-pack.yaml create mode 100644 themes/cyberdyne.yaml create mode 100644 themes/cyberlite.yaml create mode 100644 themes/cyberpunk-2021.yaml create mode 100644 themes/cyberpunk-2077-night-city-theme--cyberpunk-2077-night-city-neon.yaml create mode 100644 themes/cyberpunk-rebecca-color-theme.yaml create mode 100644 themes/cyberpunk2077-ui-theme.yaml create mode 100644 themes/cyberpunkcygnus-color-theme--cyberpunkcygnus-clear-grid.yaml create mode 100644 themes/cyberpunkcygnus-color-theme--cyberpunkcygnus-neon-pulse.yaml create mode 100644 themes/cyberpunkcygnus-color-theme--cyberpunkcygnus-solace-flare.yaml create mode 100644 themes/cybertrauma.yaml create mode 100644 themes/cyberui-cyberpunk-neon-theme.yaml create mode 100644 themes/cyberwave.yaml create mode 100644 themes/d.yaml create mode 100644 themes/d2t-colorful-theme--d2t-dark-clean.yaml create mode 100644 themes/d2t-colorful-theme--d2t-dark.yaml create mode 100644 themes/dangerdark.yaml create mode 100644 themes/dantes.yaml create mode 100644 themes/darcula-contrast--darcula-contrast-min.yaml create mode 100644 themes/darcula-contrast--darcula-contrast.yaml create mode 100644 themes/darcula-solid.yaml create mode 100644 themes/darcula-theme--jetbrains-port.yaml create mode 100644 themes/dark-alchemy-theme--darkalchemy-basic.yaml create mode 100644 themes/dark-alchemy-theme--night-dragon.yaml create mode 100644 themes/dark-alchemy-theme--nightfox.yaml create mode 100644 themes/dark-and-purple.yaml create mode 100644 themes/dark-aura-theme.yaml create mode 100644 themes/dark-color-theme.yaml create mode 100644 themes/dark-dust.yaml create mode 100644 themes/dark-future--dark-future-cyberpunk-2077.yaml create mode 100644 themes/dark-green-jungle-theme.yaml create mode 100644 themes/dark-halloween.yaml create mode 100644 themes/dark-kai.yaml create mode 100644 themes/dark-lavender--dark-lavender.yaml create mode 100644 themes/dark-lavender-dark-lavender-black.yaml create mode 100644 themes/dark-lavender-dark-lavender-soft.yaml create mode 100644 themes/dark-lavender-dark-lavender-tailwind-soft.yaml create mode 100644 themes/dark-lavender-dark-lavender-tailwind.yaml create mode 100644 themes/dark-m-theme.yaml create mode 100644 themes/dark-magic-themes--dark-magic-dracula.yaml create mode 100644 themes/dark-magic-themes--dark-magic-frankenstein.yaml create mode 100644 themes/dark-magic-themes--dark-magic-light.yaml create mode 100644 themes/dark-magic-themes--dark-magic-night.yaml create mode 100644 themes/dark-magic-themes--dark-magic-nord.yaml create mode 100644 themes/dark-magic-themes--dark-magic-tokyo.yaml create mode 100644 themes/dark-magic-themes--dark-magic.yaml create mode 100644 themes/dark-minimal-line-free.yaml create mode 100644 themes/dark-minimal-theme.yaml create mode 100644 themes/dark-mode--dark-mode.yaml create mode 100644 themes/dark-modern-one.yaml create mode 100644 themes/dark-molokai-theme.yaml create mode 100644 themes/dark-ocean-theme.yaml create mode 100644 themes/dark-orange--dark-lime-flat.yaml create mode 100644 themes/dark-orange--dark-orange.yaml create mode 100644 themes/dark-orange--dark-purple-flat.yaml create mode 100644 themes/dark-orange--dark-yellow-flat.yaml create mode 100644 themes/dark-owl--dark-owl-darker.yaml create mode 100644 themes/dark-petrol.yaml create mode 100644 themes/dark-pink-pro.yaml create mode 100644 themes/dark-plus-moon-light.yaml create mode 100644 themes/dark-refined-refined-charcoal.yaml create mode 100644 themes/dark-refined-refined-default.yaml create mode 100644 themes/dark-refined-refined-dracula.yaml create mode 100644 themes/dark-refined-refined-espresso.yaml create mode 100644 themes/dark-refined-refined-matcha.yaml create mode 100644 themes/dark-refined-refined-mocha.yaml create mode 100644 themes/dark-refined-refined-night-owl.yaml create mode 100644 themes/dark-refined-refined-oceanic-next.yaml create mode 100644 themes/dark-refined-refined-one.yaml create mode 100644 themes/dark-refined-refined-palenight.yaml create mode 100644 themes/dark-refined-refined-purple.yaml create mode 100644 themes/dark-refined-refined-slate.yaml create mode 100644 themes/dark-solarin-3.yaml create mode 100644 themes/dark-theme-dark-minimal-theme-sm.yaml create mode 100644 themes/dark-theme-dark-neon-theme-sm.yaml create mode 100644 themes/dark-theme-dark-soft-theme-sm.yaml create mode 100644 themes/dark-theme-s.yaml create mode 100644 themes/dark-unity.yaml create mode 100644 themes/darkcatalyst.yaml create mode 100644 themes/darkerized-better-solarized--better-solarized-dark.yaml create mode 100644 themes/darkest-theme.yaml create mode 100644 themes/darkit.yaml create mode 100644 themes/darkpurpletheme.yaml create mode 100644 themes/darksharp.yaml create mode 100644 themes/darkstack--code-red.yaml create mode 100644 themes/darkstack--cyberblue.yaml create mode 100644 themes/darkstack--edgerunner.yaml create mode 100644 themes/darkstack--miami-vice.yaml create mode 100644 themes/darkula-dracula-but-darker.yaml create mode 100644 themes/darkwind.yaml create mode 100644 themes/darky-purple-theme--darky-purple-storm.yaml create mode 100644 themes/darky-purple-theme--darky-purple.yaml create mode 100644 themes/dartpad-theme--dartpad.yaml create mode 100644 themes/dbt--dbt-dark-theme.yaml create mode 100644 themes/dbt--dbt-fusion.yaml create mode 100644 themes/dbt--dbt-light-theme.yaml create mode 100644 themes/dcdevtheme.yaml create mode 100644 themes/decay--cosmic-decay.yaml create mode 100644 themes/decay--dark-decay.yaml create mode 100644 themes/decay--decayce.yaml create mode 100644 themes/decay--light-decay.yaml create mode 100644 themes/deepsea-theme.yaml create mode 100644 themes/defdo-themes--defdo-base.yaml create mode 100644 themes/defdo-themes--defdo-halloween.yaml create mode 100644 themes/dekirisu-s-rust-themes--dekirisu-s-rust-theme.yaml create mode 100644 themes/delightful-green.yaml create mode 100644 themes/demon-hunter.yaml create mode 100644 themes/descomplica-theme--kyanite.yaml create mode 100644 themes/desert-vim.yaml create mode 100644 themes/designcourse.yaml create mode 100644 themes/devell-theme.yaml create mode 100644 themes/developer-s-theme--developers-theme-fork.yaml create mode 100644 themes/developer-s-theme--green-coffee.yaml create mode 100644 themes/devmamudul-setup.yaml create mode 100644 themes/devpro-theme.yaml create mode 100644 themes/devsena-dark.yaml create mode 100644 themes/devstack--acid-trip.yaml create mode 100644 themes/devstack--afterglow-fade.yaml create mode 100644 themes/devstack--amazon-jungle.yaml create mode 100644 themes/devstack--amethyst-stone.yaml create mode 100644 themes/devstack--another-acid-trip.yaml create mode 100644 themes/devstack--aqua-glacier.yaml create mode 100644 themes/devstack--black-velvet-luxe.yaml create mode 100644 themes/devstack--blueprint-grid.yaml create mode 100644 themes/devstack--c-carbon-6.yaml create mode 100644 themes/devstack--cobalt-ice.yaml create mode 100644 themes/devstack--crystal-quartz.yaml create mode 100644 themes/devstack--cyber-industrial.yaml create mode 100644 themes/devstack--cyber-pop.yaml create mode 100644 themes/devstack--dark-crimson.yaml create mode 100644 themes/devstack--deep-ocean.yaml create mode 100644 themes/devstack--deep-sea-navigator.yaml create mode 100644 themes/devstack--deep-teal.yaml create mode 100644 themes/devstack--deep-void.yaml create mode 100644 themes/devstack--desert-night.yaml create mode 100644 themes/devstack--espresso-high.yaml create mode 100644 themes/devstack--executive-level.yaml create mode 100644 themes/devstack--forest-tech.yaml create mode 100644 themes/devstack--frozen-deep.yaml create mode 100644 themes/devstack--glacier-blue.yaml create mode 100644 themes/devstack--high-alert-crimson.yaml create mode 100644 themes/devstack--irrus-float.yaml create mode 100644 themes/devstack--loki.yaml create mode 100644 themes/devstack--mainframe-terminal.yaml create mode 100644 themes/devstack--meadow-whisper.yaml create mode 100644 themes/devstack--metropolis-sky-scape.yaml create mode 100644 themes/devstack--midas-touch.yaml create mode 100644 themes/devstack--middle-field-canvas.yaml create mode 100644 themes/devstack--mineral-forest.yaml create mode 100644 themes/devstack--modern-retro.yaml create mode 100644 themes/devstack--monet-impressionism.yaml create mode 100644 themes/devstack--nightshade-venom.yaml create mode 100644 themes/devstack--obsidian-wine.yaml create mode 100644 themes/devstack--oceanic-gradient.yaml create mode 100644 themes/devstack--oceanic-sunset.yaml create mode 100644 themes/devstack--office-paper.yaml create mode 100644 themes/devstack--oracle-vision.yaml create mode 100644 themes/devstack--pastel-sorbet.yaml create mode 100644 themes/devstack--polymer-flow.yaml create mode 100644 themes/devstack--retro-arcade.yaml create mode 100644 themes/devstack--silk-petal.yaml create mode 100644 themes/devstack--smoldering-ember.yaml create mode 100644 themes/devstack--solar-flare.yaml create mode 100644 themes/devstack--solstice-heat.yaml create mode 100644 themes/devstack--sonic-pulse.yaml create mode 100644 themes/devstack--sorbet-swirl.yaml create mode 100644 themes/devstack--studio-apartment.yaml create mode 100644 themes/devstack--synthwave-neon.yaml create mode 100644 themes/devstack--tactical-ops.yaml create mode 100644 themes/devstack--tree-hugger.yaml create mode 100644 themes/devstack--twilight-bloom.yaml create mode 100644 themes/devstack--vanguard-strike.yaml create mode 100644 themes/devstack--vintage-heritage.yaml create mode 100644 themes/devstack--workplace-chatter.yaml create mode 100644 themes/deyvi-dark.yaml create mode 100644 themes/dfn2023theme.yaml create mode 100644 themes/dharam-gfx-theme--dharam-gfx-hight-contrast.yaml create mode 100644 themes/diabo.yaml create mode 100644 themes/dimi-theme-dimi-theme-dark.yaml create mode 100644 themes/dimi-theme-dimi-theme-darker.yaml create mode 100644 themes/diverse-dye--arabian-theme.yaml create mode 100644 themes/diverse-dye--berry-blast-theme.yaml create mode 100644 themes/diverse-dye--celestial-charm-theme.yaml create mode 100644 themes/diverse-dye--chocolate-dessert-theme.yaml create mode 100644 themes/diverse-dye--hot-pink-theme.yaml create mode 100644 themes/diverse-dye--hyped-down-theme.yaml create mode 100644 themes/diverse-dye--kryptonite-theme.yaml create mode 100644 themes/diverse-dye--mountain-theme.yaml create mode 100644 themes/diverse-dye--navy-nights-theme.yaml create mode 100644 themes/diverse-dye--neon-theme.yaml create mode 100644 themes/diverse-dye--power-low-purple-theme.yaml create mode 100644 themes/diverse-dye--purplexed-theme.yaml create mode 100644 themes/diverse-dye--sakura-blossom-theme.yaml create mode 100644 themes/diverse-dye--sakura-theme.yaml create mode 100644 themes/djpurple.yaml create mode 100644 themes/dk-bee.yaml create mode 100644 themes/do-you-even-dev-bro--minimal-dark.yaml create mode 100644 themes/do-you-even-dev-bro--telescope.yaml create mode 100644 themes/dobri-next-themes-and-icons--darcula.yaml create mode 100644 themes/dobri-next-themes-and-icons--eve.yaml create mode 100644 themes/doctis--noctis-uva.yaml create mode 100644 themes/doctis--noctis-viola.yaml create mode 100644 themes/dodimmed.yaml create mode 100644 themes/dodopool.yaml create mode 100644 themes/doli-theme--doli-universal.yaml create mode 100644 themes/doli-theme--doli-visual-studio.yaml create mode 100644 themes/dominator.yaml create mode 100644 themes/doom-themes--doom-one-dark.yaml create mode 100644 themes/doom-themes--doom-one-light.yaml create mode 100644 themes/dot-developer-theme.yaml create mode 100644 themes/dracula-dimmed.yaml create mode 100644 themes/dracula-min--dracula-min-light-darker-theme.yaml create mode 100644 themes/dracula-min--dracula-min-light-theme.yaml create mode 100644 themes/dracula-min--dracula-min-white-darker-theme.yaml create mode 100644 themes/dracula-min--dracula-min-white-theme.yaml create mode 100644 themes/dracula-pro-version--dracula-pro-black.yaml create mode 100644 themes/dracula-pro-version--dracula-pro.yaml create mode 100644 themes/dracula-theme-light-dark--dracula-dark.yaml create mode 100644 themes/dracula-theme-light-dark--dracula-light.yaml create mode 100644 themes/dracula-theme-with-italic-keywords.yaml create mode 100644 themes/draculagray.yaml create mode 100644 themes/dragan-color-theme.yaml create mode 100644 themes/drak-theme.yaml create mode 100644 themes/drakencord-blue.yaml create mode 100644 themes/dribbble-theme.yaml create mode 100644 themes/duang.yaml create mode 100644 themes/duck-mode--duck-in-the-dream.yaml create mode 100644 themes/duck-mode--duck-in-the-lake.yaml create mode 100644 themes/duckcash-vscode-theme.yaml create mode 100644 themes/duke-monokai.yaml create mode 100644 themes/dull-grey.yaml create mode 100644 themes/dyslexia-autumn.yaml create mode 100644 themes/dzsolarized--dzsolarized-dark.yaml create mode 100644 themes/dzsolarized--dzsolarized.yaml create mode 100644 themes/earthen-bog.yaml create mode 100644 themes/easy-eyes-theme.yaml create mode 100644 themes/ebonx.yaml create mode 100644 themes/eclipse-dark--eclipse-dark-darker.yaml create mode 100644 themes/eclipse-dark--eclipse-dark-flat.yaml create mode 100644 themes/eclipse-dark--eclipse-flare.yaml create mode 100644 themes/eclipse-dark--eclipse-optics.yaml create mode 100644 themes/eclipse-dark--eclipse-penumbra.yaml create mode 100644 themes/eclipse-dark--eclipse-umbra.yaml create mode 100644 themes/eclipse-midnight.yaml create mode 100644 themes/eclipsetheme.yaml create mode 100644 themes/ecogest-theme.yaml create mode 100644 themes/edge--edge-dark.yaml create mode 100644 themes/edge--edge-light.yaml create mode 100644 themes/edge-edge-dark-aura.yaml create mode 100644 themes/edge-edge-dark-neon.yaml create mode 100644 themes/editor-theme.yaml create mode 100644 themes/eh-s-web-themes.yaml create mode 100644 themes/eigen.yaml create mode 100644 themes/eight8may-theme--poimandres-dark-theme.yaml create mode 100644 themes/eldritch--eldritch-dark.yaml create mode 100644 themes/eldritch--eldritch.yaml create mode 100644 themes/electric-dreams-neon.yaml create mode 100644 themes/electriclabs.yaml create mode 100644 themes/electron-highlighter-syntax.yaml create mode 100644 themes/electron-vue--electron-vue.yaml create mode 100644 themes/elementary-theme.yaml create mode 100644 themes/eliza-s-pride-themes--aromantic.yaml create mode 100644 themes/eliza-s-pride-themes--asexual.yaml create mode 100644 themes/eliza-s-pride-themes--lesbian.yaml create mode 100644 themes/eliza-s-pride-themes--nebularomantic.yaml create mode 100644 themes/eliza-s-pride-themes--omnisexual.yaml create mode 100644 themes/eliza-s-pride-themes--progress.yaml create mode 100644 themes/elypink-theme--elypink-dark.yaml create mode 100644 themes/elypink-theme--elypink-light.yaml create mode 100644 themes/elypink-theme-elypink-dark-faded.yaml create mode 100644 themes/elypink-theme-elypink-light-diamond.yaml create mode 100644 themes/elypink-theme-elypink-light-faded.yaml create mode 100644 themes/elypink-theme-elypink-light-spring.yaml create mode 100644 themes/elypink-theme-elypink-light-summer.yaml create mode 100644 themes/emberstone-theme.yaml create mode 100644 themes/emerald-kc.yaml create mode 100644 themes/emerald-sky.yaml create mode 100644 themes/end.yaml create mode 100644 themes/enhanced-canvas-theme.yaml create mode 100644 themes/enki--enki-night-owl.yaml create mode 100644 themes/enki--enki-rainbow.yaml create mode 100644 themes/enki--enki-red.yaml create mode 100644 themes/enki--enki.yaml create mode 100644 themes/enough-with-the-palenight.yaml create mode 100644 themes/erikwdevtheme.yaml create mode 100644 themes/erin-s-theme.yaml create mode 100644 themes/escook-theme.yaml create mode 100644 themes/eternals.yaml create mode 100644 themes/ethereum-dark-theme--ethereum-dark-blue-theme.yaml create mode 100644 themes/ethereum-dark-theme--ethereum-dark-grey-theme.yaml create mode 100644 themes/evangelion-unit-01-berserk-theme.yaml create mode 100644 themes/evangelion-unit-eva-01-theme.yaml create mode 100644 themes/evascode-the-end-of-development.yaml create mode 100644 themes/everforest--everforest-dark.yaml create mode 100644 themes/everforest--everforest-light.yaml create mode 100644 themes/everforest-moist--everforest-soft.yaml create mode 100644 themes/everforest-pro--everforest-pro-dark-cozy.yaml create mode 100644 themes/everforest-pro--everforest-pro-dark-vibrant.yaml create mode 100644 themes/everforest-pro--everforest-pro-light-cozy.yaml create mode 100644 themes/everforest-pro--everforest-pro-light-vibrant.yaml create mode 100644 themes/evergarden-theme.yaml create mode 100644 themes/evergarden-winter--evergarden-winter-light.yaml create mode 100644 themes/evergarden-winter--evergarden-winter.yaml create mode 100644 themes/everything-monokai.yaml create mode 100644 themes/evro-dark--evro-dark.yaml create mode 100644 themes/evro-dark--evro-darker-flat.yaml create mode 100644 themes/exa-theme-pack.yaml create mode 100644 themes/exovoid.yaml create mode 100644 themes/extreme-theme.yaml create mode 100644 themes/eye-care-themes--eye-care-owl-light.yaml create mode 100644 themes/eye-care-themes--eye-care-owl.yaml create mode 100644 themes/eye-comfort-themes--eye-comfort-light.yaml create mode 100644 themes/eyeball-dark.yaml create mode 100644 themes/fa-theme.yaml create mode 100644 themes/fae-color-theme.yaml create mode 100644 themes/fallout-dark--ultrafocus-fork-fork.yaml create mode 100644 themes/fallout-dark--video-contrast.yaml create mode 100644 themes/fallout-dark--vs-code-deep-f-lux-fork-fork.yaml create mode 100644 themes/fallout-dark-architect-dark-fork.yaml create mode 100644 themes/familiar-java-themes.yaml create mode 100644 themes/faustvi00.yaml create mode 100644 themes/fea-dark-theme.yaml create mode 100644 themes/fearless-color-themes--untitled.yaml create mode 100644 themes/fedaykin--dune-arrakis-incandescent.yaml create mode 100644 themes/fedaykin--dune-bene-gesserit.yaml create mode 100644 themes/fedaykin--dune-caladan-storm.yaml create mode 100644 themes/fedaykin--dune-fremen-sietch.yaml create mode 100644 themes/fedaykin--dune-giedi-prime.yaml create mode 100644 themes/fedaykin--dune-guild-navigator.yaml create mode 100644 themes/fedaykin--dune-harkonnen.yaml create mode 100644 themes/fedaykin--dune-house-atreides.yaml create mode 100644 themes/fedaykin--dune-ix-technology.yaml create mode 100644 themes/fedaykin--dune-kaitain.yaml create mode 100644 themes/fedaykin--dune-mentat.yaml create mode 100644 themes/fedaykin--dune-muad-dib.yaml create mode 100644 themes/fedaykin--dune-salusa-secundus.yaml create mode 100644 themes/fedaykin--dune-sandworm.yaml create mode 100644 themes/fedaykin--dune-sardaukar-imperial.yaml create mode 100644 themes/fedaykin--dune-spacing-guild.yaml create mode 100644 themes/fedaykin--dune-spice-vision.yaml create mode 100644 themes/fedaykin--dune-water-of-life.yaml create mode 100644 themes/felipaotest.yaml create mode 100644 themes/ferdinaldo-dark-theme.yaml create mode 100644 themes/feynuus-theme.yaml create mode 100644 themes/finger-paint-set-ayms--themer-dark.yaml create mode 100644 themes/finger-paint-set-ayms--themer-light.yaml create mode 100644 themes/firefly--firefly.yaml create mode 100644 themes/firefly-pro--firefly.yaml create mode 100644 themes/firefox-theme.yaml create mode 100644 themes/firefoxtheme--firefox-dark.yaml create mode 100644 themes/firsttema--untitled.yaml create mode 100644 themes/flat-theme--flat-theme-gray.yaml create mode 100644 themes/flat-theme--flat-theme-light.yaml create mode 100644 themes/flat-ui.yaml create mode 100644 themes/fleeting-theme.yaml create mode 100644 themes/flexoki--flexoki.yaml create mode 100644 themes/flexoki-plus.yaml create mode 100644 themes/florist-theme--florist-dark.yaml create mode 100644 themes/florist-theme--florist-light.yaml create mode 100644 themes/fluminense-theme.yaml create mode 100644 themes/flutter-theme.yaml create mode 100644 themes/flux-theme-legacy--flux-dawn.yaml create mode 100644 themes/flux-theme-legacy--flux-daylight.yaml create mode 100644 themes/flux-theme-legacy--flux-night.yaml create mode 100644 themes/flux-theme-legacy--flux-twilight.yaml create mode 100644 themes/focal.yaml create mode 100644 themes/foco-light.yaml create mode 100644 themes/foggy-forest.yaml create mode 100644 themes/forest-night-ethereal.yaml create mode 100644 themes/forest-night-serenade--forest-night-serenade.yaml create mode 100644 themes/forest-night-serenade-forest-night-italic-serenade.yaml create mode 100644 themes/forest.yaml create mode 100644 themes/forgive-green.yaml create mode 100644 themes/fosphor.yaml create mode 100644 themes/four-sages-theme.yaml create mode 100644 themes/frame.yaml create mode 100644 themes/fresh-green-theme.yaml create mode 100644 themes/friendly-dark.yaml create mode 100644 themes/frost-theme.yaml create mode 100644 themes/fullblack.yaml create mode 100644 themes/fullstacksjs-theme.yaml create mode 100644 themes/functional-matrix-clubcleaver.yaml create mode 100644 themes/furukawa-theme.yaml create mode 100644 themes/g-dark-themes-g-dark-blue-whale.yaml create mode 100644 themes/g-dark-themes-g-dark-jacksons-purple.yaml create mode 100644 themes/g-dark-themes-g-dark-light-alice-blue.yaml create mode 100644 themes/g-dark-themes-g-dark-light-glitter.yaml create mode 100644 themes/g-dark-themes-g-dark-light-hint-of-red.yaml create mode 100644 themes/g-dark-themes-g-dark-minimal-2-astronaut-blue.yaml create mode 100644 themes/g-dark-themes-g-dark-minimal-3-oxford-blue.yaml create mode 100644 themes/g-dark-themes-g-dark-minimal-midnight.yaml create mode 100644 themes/g-dark-themes-g-dark-one-love-black-pearl.yaml create mode 100644 themes/g-dark-themes-g-dark-one-love.yaml create mode 100644 themes/g-dark-themes-g-dark-shader-h-ck3r-midnight-moss.yaml create mode 100644 themes/g-dark-themes-g-dark-shader-haiti.yaml create mode 100644 themes/g-dark-themes-g-dark-shader-mirage.yaml create mode 100644 themes/g-dark-themes-g-dark-shift-midnight-moss.yaml create mode 100644 themes/g-dark-themes-g-dark-shift-vulcan.yaml create mode 100644 themes/g-dark-themes-g-dark-valhalla.yaml create mode 100644 themes/gab-dark.yaml create mode 100644 themes/gabi-dark.yaml create mode 100644 themes/galactus--galactus.yaml create mode 100644 themes/galactus--jwrdark.yaml create mode 100644 themes/galaxy-theme.yaml create mode 100644 themes/galaxy.yaml create mode 100644 themes/game-mode-cyberpunk-theme.yaml create mode 100644 themes/game-of-thrones-the-seven-kingdoms--got-beyond-the-wall.yaml create mode 100644 themes/game-of-thrones-the-seven-kingdoms--got-house-baratheon.yaml create mode 100644 themes/game-of-thrones-the-seven-kingdoms--got-house-greyjoy.yaml create mode 100644 themes/game-of-thrones-the-seven-kingdoms--got-house-lannister.yaml create mode 100644 themes/game-of-thrones-the-seven-kingdoms--got-house-martell.yaml create mode 100644 themes/game-of-thrones-the-seven-kingdoms--got-house-stark.yaml create mode 100644 themes/game-of-thrones-the-seven-kingdoms--got-house-targaryen.yaml create mode 100644 themes/game-of-thrones-the-seven-kingdoms--got-night-s-watch.yaml create mode 100644 themes/game-of-thrones-the-seven-kingdoms--got-the-iron-throne.yaml create mode 100644 themes/gameboy-classic-theme--gameboy-classic-dark.yaml create mode 100644 themes/gameboy-classic-theme--gameboy-classic-light.yaml create mode 100644 themes/ganbaru--ganbaru-blue.yaml create mode 100644 themes/ganbaru--ganbaru-dark.yaml create mode 100644 themes/gantheory-theme.yaml create mode 100644 themes/gapstyle-vs--gapstyle-vs-dark-modern.yaml create mode 100644 themes/gauss-theme.yaml create mode 100644 themes/gen.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--genshin-impact-chiori.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--genshin-impact-citlali.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--genshin-impact-columbina.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--genshin-impact-furina.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--genshin-impact-il-dottore.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--genshin-impact-kamisato-ayaka.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--genshin-impact-layla.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--genshin-impact-sandrone.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--genshin-impact-scaramouche.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--genshin-impact-skirk.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--genshin-impact-wanderer.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--genshin-impact-yae-miko.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--honkai-star-rail-aventurine.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--honkai-star-rail-cyrene.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--honkai-star-rail-dan-heng.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--honkai-star-rail-firefly.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--honkai-star-rail-kafka.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--honkai-star-rail-march-7th.yaml create mode 100644 themes/genshin-impact-hsr-color-themes--honkai-star-rail-ruan-mei.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-chiori-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-citlali-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-columbina-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-furina-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-ganyu-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-ganyu-high-contrast.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-ganyu-light.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-il-dottore-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-kamisato-ayaka-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-layla-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-sandrone-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-scaramouche-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-skirk-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-wanderer-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-yae-miko-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-high-contrast.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-light.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-honkai-star-rail-aventurine-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-honkai-star-rail-cyrene-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-honkai-star-rail-dan-heng-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-honkai-star-rail-firefly-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-honkai-star-rail-kafka-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-honkai-star-rail-march-7th-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-honkai-star-rail-robin-dark.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-honkai-star-rail-robin-light-soft.yaml create mode 100644 themes/genshin-impact-hsr-color-themes-honkai-star-rail-ruan-mei-dark.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-celestine-bardlight.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-damselette-whisper.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-emergency-food.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-eternal-electro-throne.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-fontaine-spotlight.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-frost-ritual.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-geo-contract-vault.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-hydrocourt-midnight.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-ice-oracle.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-kusanali-dawnbloom.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-lava-glaze-inferno.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-morax-golden-seal.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-outrider-blaze.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-pyro-scout.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-starry-companion.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-stormrider-breeze.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-sunforge-ember.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-veiled-harbinger.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-verdant-dreamweave.yaml create mode 100644 themes/genshin-vibes--genshin-vibes-violet-eternity-glow.yaml create mode 100644 themes/gentle-themes--gentle-builder.yaml create mode 100644 themes/gentle-themes--gentle-dark.yaml create mode 100644 themes/gg-djaja.yaml create mode 100644 themes/ghostty-dark.yaml create mode 100644 themes/github-catppuccin-dark--github-catppuccin-dark-mix.yaml create mode 100644 themes/github-catppuccin-dark--github-catppuccin-dark.yaml create mode 100644 themes/github-dark-palenight--github-dark-palenight.yaml create mode 100644 themes/github-light-hight-contrast-theme.yaml create mode 100644 themes/github-minimal-theme--github-minimal.yaml create mode 100644 themes/github-revamp--github-revamp.yaml create mode 100644 themes/github-theme--github-dark-colorblind.yaml create mode 100644 themes/github-theme--github-dark-default.yaml create mode 100644 themes/github-theme--github-dark-dimmed.yaml create mode 100644 themes/github-theme--github-dark-high-contrast.yaml create mode 100644 themes/github-theme--github-dark.yaml create mode 100644 themes/github-theme--github-light-colorblind.yaml create mode 100644 themes/github-theme--github-light-default.yaml create mode 100644 themes/github-theme--github-light-high-contrast.yaml create mode 100644 themes/github-theme--github-light.yaml create mode 100644 themes/github-theme-minimal--github-dark-default.yaml create mode 100644 themes/github-theme-minimal--github-light-default.yaml create mode 100644 themes/gitlab-webide-theme--gitlab-dark-grey.yaml create mode 100644 themes/gitlab-webide-theme--gitlab-dark.yaml create mode 100644 themes/gitlab-webide-theme--gitlab-light.yaml create mode 100644 themes/gleam-themes.yaml create mode 100644 themes/glv-dark.yaml create mode 100644 themes/gms2-theme.yaml create mode 100644 themes/godot-theme-for-vs-code.yaml create mode 100644 themes/gogh-theme.yaml create mode 100644 themes/golden-era--golden-era.yaml create mode 100644 themes/goldenzo.yaml create mode 100644 themes/goodmonokai.yaml create mode 100644 themes/gooeyvsctheme.yaml create mode 100644 themes/gopher-theme-color.yaml create mode 100644 themes/gorfius-peace-forest--gorfius-peace-forest.yaml create mode 100644 themes/gorfius-peace-smoke-2--gorfius-peace-forest.yaml create mode 100644 themes/gotham-theme-black.yaml create mode 100644 themes/gotham-theme.yaml create mode 100644 themes/gothic--gothic-dark.yaml create mode 100644 themes/gothic--gothic-light.yaml create mode 100644 themes/gradient-theme--firefox-dark.yaml create mode 100644 themes/gradient-theme--monokai-pro.yaml create mode 100644 themes/gray-gray-gray.yaml create mode 100644 themes/grayscale301.yaml create mode 100644 themes/grayspace--coffeespace.yaml create mode 100644 themes/grayspace--darkspace.yaml create mode 100644 themes/grayspace--neutral.yaml create mode 100644 themes/grean-leaf--untitled.yaml create mode 100644 themes/greeeeen-theme.yaml create mode 100644 themes/green-paper--green-papper.yaml create mode 100644 themes/green-paper.yaml create mode 100644 themes/green-tree-theme--green-tree.yaml create mode 100644 themes/green-tree-theme--pink-flower.yaml create mode 100644 themes/green-valley-theme--green-valley-forest.yaml create mode 100644 themes/green-valley-theme--green-valley-matrix.yaml create mode 100644 themes/green-valley-theme--green-valley-midnight.yaml create mode 100644 themes/green-valley-theme--green-valley-mint.yaml create mode 100644 themes/green-valley-theme--green-valley-neo.yaml create mode 100644 themes/greenspace--24.yaml create mode 100644 themes/greenspace--greenspace.yaml create mode 100644 themes/greenspace--shades.yaml create mode 100644 themes/greyout-color-theme.yaml create mode 100644 themes/grimoire--grimoire-nox.yaml create mode 100644 themes/grimoire--grimoire.yaml create mode 100644 themes/gru--gru-black.yaml create mode 100644 themes/gruvbox-concoctis--concoctis-dark-hard.yaml create mode 100644 themes/gruvbox-concoctis--concoctis-dark-soft.yaml create mode 100644 themes/gruvbox-concoctis--concoctis-light-hard.yaml create mode 100644 themes/gruvbox-concoctis--concoctis-light-soft.yaml create mode 100644 themes/gruvbox-dark-medium-theme.yaml create mode 100644 themes/gruvbox-dark-moist.yaml create mode 100644 themes/gruvbox-drakenlords--gruvbox-drakenlords-dark-draken.yaml create mode 100644 themes/gruvbox-drakenlords--gruvbox-drakenlords-dark.yaml create mode 100644 themes/gruvbox-drakenlords--gruvbox-drakenlords-grey.yaml create mode 100644 themes/gruvbox-drakenlords--gruvbox-drakenlords-semi-dark.yaml create mode 100644 themes/gruvbox-in-black--aldrico-s-gruvbox.yaml create mode 100644 themes/gruvbox-ish--gruvbox-ish-dark-hard.yaml create mode 100644 themes/gruvbox-ish--gruvbox-ish-dark-medium.yaml create mode 100644 themes/gruvbox-ish--gruvbox-ish-dark-soft.yaml create mode 100644 themes/gruvbox-material--gruvbox-material-dark.yaml create mode 100644 themes/gruvbox-material--gruvbox-material-light.yaml create mode 100644 themes/gruvbox-material-flat--gruvbox-material-flat-dark.yaml create mode 100644 themes/gruvbox-material-flat--gruvbox-material-flat-light.yaml create mode 100644 themes/gruvbox-minor--gruvbox-minor-dark-hard.yaml create mode 100644 themes/gruvbox-minor--gruvbox-minor-dark-medium.yaml create mode 100644 themes/gruvbox-minor--gruvbox-minor-dark-soft.yaml create mode 100644 themes/gruvbox-minor--gruvbox-minor-light-hard.yaml create mode 100644 themes/gruvbox-minor--gruvbox-minor-light-medium.yaml create mode 100644 themes/gruvbox-minor--gruvbox-minor-light-soft.yaml create mode 100644 themes/gruvbox.yaml create mode 100644 themes/gruvdark-theme--gruvdark-gbm.yaml create mode 100644 themes/gruvdark-theme--gruvdark-tokyo.yaml create mode 100644 themes/gruvdark-theme--gruvdark.yaml create mode 100644 themes/gruvdark-theme--light-gruvdark-mono.yaml create mode 100644 themes/gruvdark-theme--light-gruvdark-tokyo.yaml create mode 100644 themes/gruvdark-theme--light-gruvdark.yaml create mode 100644 themes/gui-dark--untitled.yaml create mode 100644 themes/gustavoglins-theme--gustavoglins.yaml create mode 100644 themes/hackelectron.yaml create mode 100644 themes/hacker-theme.yaml create mode 100644 themes/hacker-x-theme--amaranth-red-eerie-black-fork.yaml create mode 100644 themes/hacker-x-theme--belch-fork.yaml create mode 100644 themes/hacker-x-theme--dark-code-fork.yaml create mode 100644 themes/hacker-x-theme--devr-dark-theme-fork.yaml create mode 100644 themes/hacker-x-theme--electric-violet-fork.yaml create mode 100644 themes/hacker-x-theme--emerald-fork.yaml create mode 100644 themes/hacker-x-theme--enhanced-material-fork.yaml create mode 100644 themes/hacker-x-theme--hacker-blue-fork.yaml create mode 100644 themes/hacker-x-theme--hacker-x.yaml create mode 100644 themes/hacker-x-theme--hyped-down-fork.yaml create mode 100644 themes/hacker-x-theme--into-the-unknow-fork.yaml create mode 100644 themes/hacker-x-theme--joyful-fork.yaml create mode 100644 themes/hacker-x-theme--kermit-fork.yaml create mode 100644 themes/hacker-x-theme--modernui-fork.yaml create mode 100644 themes/hacker-x-theme--orion-black-fork.yaml create mode 100644 themes/hacker-x-theme--terminal-fork.yaml create mode 100644 themes/hacker-x-theme--underdark-fork.yaml create mode 100644 themes/hacker-x-theme--windows-98-fork.yaml create mode 100644 themes/hackpot--hackpot-batman-vs-joker-dark.yaml create mode 100644 themes/hackpot--hackpot-batman-vs-joker.yaml create mode 100644 themes/hackpot--hackpot-dark-knight.yaml create mode 100644 themes/hackpot--hackpot-darker-knight.yaml create mode 100644 themes/hackpot--hackpot-garden-dark.yaml create mode 100644 themes/hackpot--hackpot-garden-of-atlantis.yaml create mode 100644 themes/hackpot--hackpot-garden-purple-haze.yaml create mode 100644 themes/hackpot--hackpot-garden.yaml create mode 100644 themes/hackpot--hackpot-muddy-garden.yaml create mode 100644 themes/hackpot--hackpot-poisoned-garden.yaml create mode 100644 themes/haidark.yaml create mode 100644 themes/halcyon-theme.yaml create mode 100644 themes/hamidthedev-pro.yaml create mode 100644 themes/hapsida-securisec--dark.yaml create mode 100644 themes/hapsida-securisec--iceberg.yaml create mode 100644 themes/hapsida-securisec--mountain.yaml create mode 100644 themes/hapsida-securisec--nord.yaml create mode 100644 themes/hapsida-securisec--pastel.yaml create mode 100644 themes/hapsida-securisec--spring.yaml create mode 100644 themes/hapsida-securisec--vintage.yaml create mode 100644 themes/hardhacker-theme--hard-hacker-darker.yaml create mode 100644 themes/hardhacker-theme--hard-hacker-light.yaml create mode 100644 themes/hardhacker-theme--hard-hacker.yaml create mode 100644 themes/hardxs.yaml create mode 100644 themes/harmonized--harmonized-dark.yaml create mode 100644 themes/harmonized--harmonized-light.yaml create mode 100644 themes/harmonized-harmonized-light-hc.yaml create mode 100644 themes/hashira-code-theme--giyu-tomioka.yaml create mode 100644 themes/hashira-code-theme--gyomei-himejima.yaml create mode 100644 themes/hashira-code-theme--kyojuro-rengoku.yaml create mode 100644 themes/hashira-code-theme--mitsuri-kanroji.yaml create mode 100644 themes/hashira-code-theme--obanai-iguro.yaml create mode 100644 themes/hashira-code-theme--sanemi-shinazugawa.yaml create mode 100644 themes/hashira-code-theme--shinobu-kocho.yaml create mode 100644 themes/hashira-code-theme--tokito-inspired.yaml create mode 100644 themes/headfox-dark.yaml create mode 100644 themes/hearthcode--hearth-dark-soft.yaml create mode 100644 themes/hearthcode--hearth-dark.yaml create mode 100644 themes/hearthcode--hearth-light.yaml create mode 100644 themes/heaven.yaml create mode 100644 themes/helix-bogster-theme.yaml create mode 100644 themes/helloworld-theme.yaml create mode 100644 themes/henriquedark.yaml create mode 100644 themes/hibiscus-theme.yaml create mode 100644 themes/higher-contrast-zenburn--hc-zenburn.yaml create mode 100644 themes/higher-contrast-zenburn.yaml create mode 100644 themes/hjqtheme.yaml create mode 100644 themes/hogwarts.yaml create mode 100644 themes/homecooked.yaml create mode 100644 themes/horizon-extended-theme--horizon-extended.yaml create mode 100644 themes/horror-vscode-extension.yaml create mode 100644 themes/horus--untitled.yaml create mode 100644 themes/huacat-pink-theme--huacat-pink-dark.yaml create mode 100644 themes/huacat-pink-theme--pink-theme.yaml create mode 100644 themes/human-theme--human-dark.yaml create mode 100644 themes/human-theme--human-high-contrast.yaml create mode 100644 themes/human-theme--human-light.yaml create mode 100644 themes/human-theme--human-low-light.yaml create mode 100644 themes/human-theme--human-soft.yaml create mode 100644 themes/human-theme--human-warm.yaml create mode 100644 themes/hyle.yaml create mode 100644 themes/hyprluna-matugen-theme.yaml create mode 100644 themes/i-a-minimal-theme.yaml create mode 100644 themes/i3-dark-theme--i3-panda-custom-ii.yaml create mode 100644 themes/i3-dark-theme--i3-panda-custom-iii.yaml create mode 100644 themes/i3-dark-theme--i3-panda-custom.yaml create mode 100644 themes/ibm-carbon-design-system-theme--ibm-carbon-gray-10.yaml create mode 100644 themes/ibm-carbon-design-system-theme--ibm-carbon-gray-100.yaml create mode 100644 themes/ibm-carbon-design-system-theme--ibm-carbon-gray-90.yaml create mode 100644 themes/ibm-carbon-design-system-theme--ibm-carbon-white.yaml create mode 100644 themes/icat-dark-theme.yaml create mode 100644 themes/iceberg-dark.yaml create mode 100644 themes/iceberg-theme--iceberg-light.yaml create mode 100644 themes/iceberg-theme--iceberg.yaml create mode 100644 themes/icon-group--icon-group-dark.yaml create mode 100644 themes/icon-group--icon-group-light.yaml create mode 100644 themes/identical-sublime-text-monokai-theme.yaml create mode 100644 themes/idx-dark-theme.yaml create mode 100644 themes/idx-xcode-xcode-syntax-and-idx-theme--idx-xcode-dark-improved.yaml create mode 100644 themes/illusion--illusion.yaml create mode 100644 themes/iloveagents-azure-ai-foundry-themes--iloveagents-dark.yaml create mode 100644 themes/iloveagents-azure-ai-foundry-themes--iloveagents-light.yaml create mode 100644 themes/iloveagents-azure-ai-foundry-themes-iloveagents-azure-ai-foundry-dark.yaml create mode 100644 themes/iloveagents-azure-ai-foundry-themes-iloveagents-azure-ai-foundry-light.yaml create mode 100644 themes/ilyat--ilyat-poimandres.yaml create mode 100644 themes/imba.yaml create mode 100644 themes/in-the-fog-theme.yaml create mode 100644 themes/indigo-dream.yaml create mode 100644 themes/inei.yaml create mode 100644 themes/infinite-dark-purple.yaml create mode 100644 themes/infinite-purple.yaml create mode 100644 themes/inheritance--inheritance.yaml create mode 100644 themes/inovando.yaml create mode 100644 themes/insane-dark-theme.yaml create mode 100644 themes/inspiration--green-kingdom.yaml create mode 100644 themes/inspiration--sober-deepnight.yaml create mode 100644 themes/intellij-idea-islands-theme--intellij-idea-islands-dark.yaml create mode 100644 themes/intellij-idea-islands-theme--intellij-idea-islands-light.yaml create mode 100644 themes/intellij-idea-new-ui-theme.yaml create mode 100644 themes/intellij-theme.yaml create mode 100644 themes/intelliyay-theme.yaml create mode 100644 themes/ironman-theme-light-dark--ironman-theme-dark.yaml create mode 100644 themes/ironman-theme-light-dark--ironman-theme-light.yaml create mode 100644 themes/irrelevant--mirai.yaml create mode 100644 themes/islands-theme--islands-dark.yaml create mode 100644 themes/islands-theme--islands-light.yaml create mode 100644 themes/iv.yaml create mode 100644 themes/ivalo.yaml create mode 100644 themes/iwa-code-theme.yaml create mode 100644 themes/j-cardenas.yaml create mode 100644 themes/jamestheme.yaml create mode 100644 themes/jammy-jellyfish-color-theme.yaml create mode 100644 themes/jarvis-3d-iron-man-theme.yaml create mode 100644 themes/jarvisdarktheme--jarvis.yaml create mode 100644 themes/jaywxl.yaml create mode 100644 themes/jb-autumn.yaml create mode 100644 themes/jcela.yaml create mode 100644 themes/jdh-vimrc.yaml create mode 100644 themes/jeng-theme-light.yaml create mode 100644 themes/jetbrains-fleet-theme.yaml create mode 100644 themes/jetbrains-theme--jetbrains-dark-theme.yaml create mode 100644 themes/jetbrains-theme--jetbrains-deep-dark-theme.yaml create mode 100644 themes/jetvibe.yaml create mode 100644 themes/jo-o-dark-theme.yaml create mode 100644 themes/joeel56-halloween-theme.yaml create mode 100644 themes/joey.yaml create mode 100644 themes/jojobii-vscode-colors.yaml create mode 100644 themes/jonaqhan-themes--neutral.yaml create mode 100644 themes/jone-theme.yaml create mode 100644 themes/joshburnsxyz-vs-code-theme--themer-dark.yaml create mode 100644 themes/joshburnsxyz-vs-code-theme--themer-light.yaml create mode 100644 themes/jpwdarkness.yaml create mode 100644 themes/just-a-theme.yaml create mode 100644 themes/just-purple.yaml create mode 100644 themes/justcode-theme.yaml create mode 100644 themes/kadaxi-dark.yaml create mode 100644 themes/kaimandres-for-vs-code.yaml create mode 100644 themes/kali-theme--dark-red-theme-vs-code.yaml create mode 100644 themes/kalidozza-theme.yaml create mode 100644 themes/kanagawa-flavors--kanagawa-dragon.yaml create mode 100644 themes/kanagawa-flavors--kanagawa-lotus.yaml create mode 100644 themes/kanagawa-flavors--kanagawa-wave.yaml create mode 100644 themes/kanagawa-paper--kanagawa-paper.yaml create mode 100644 themes/kanagawa-vague--vague-neovim-theme-extended-light.yaml create mode 100644 themes/kanagawa-vague--vague-neovim-theme-extended.yaml create mode 100644 themes/kanagawa-vscode.yaml create mode 100644 themes/kanagawa.yaml create mode 100644 themes/kanao--kanao.yaml create mode 100644 themes/kanao--pink.yaml create mode 100644 themes/kanso-theme--kanso-ink.yaml create mode 100644 themes/kanso-theme--kanso-mist.yaml create mode 100644 themes/kanso-theme--kanso-pearl.yaml create mode 100644 themes/kaolin-themes--kaolin-light-theme.yaml create mode 100644 themes/kaolin-themes-kaolin-light-theme-alt.yaml create mode 100644 themes/karma--karma.yaml create mode 100644 themes/karrot-theme.yaml create mode 100644 themes/karry-color-golang-theme.yaml create mode 100644 themes/kary-pro-colors--kary-pro-colors-dark.yaml create mode 100644 themes/kary-pro-colors--kary-pro-colors-light.yaml create mode 100644 themes/kevin-kolors.yaml create mode 100644 themes/kindfeeling-light.yaml create mode 100644 themes/kinnitchi-neon-theme.yaml create mode 100644 themes/kintsugi--kintsugi-dark.yaml create mode 100644 themes/kintsugi--kintsugi-light.yaml create mode 100644 themes/kirikovr.yaml create mode 100644 themes/kismat.yaml create mode 100644 themes/kite-theme--kite-dark.yaml create mode 100644 themes/kite-theme--kite-darker.yaml create mode 100644 themes/kite-theme--kite-light.yaml create mode 100644 themes/kitty-power.yaml create mode 100644 themes/koala-theme.yaml create mode 100644 themes/kodex--kodex-arctic.yaml create mode 100644 themes/kodex--kodex.yaml create mode 100644 themes/korbit-theme.yaml create mode 100644 themes/korean-dancheong-light.yaml create mode 100644 themes/kraken-theme.yaml create mode 100644 themes/krb-blue--krb-violet.yaml create mode 100644 themes/kripton-flat-theme.yaml create mode 100644 themes/krishna.yaml create mode 100644 themes/ks-nova-theme.yaml create mode 100644 themes/kurdish-theme.yaml create mode 100644 themes/kuromesi-theme.yaml create mode 100644 themes/kyorazo-theme.yaml create mode 100644 themes/lackluster-theme--lackluster-dark.yaml create mode 100644 themes/lackluster-theme--lackluster.yaml create mode 100644 themes/laradark.yaml create mode 100644 themes/laravel-theme.yaml create mode 100644 themes/lavanda-color-theme.yaml create mode 100644 themes/lavender-code-theme--lavender-dark-theme.yaml create mode 100644 themes/lavender-code-theme--lavender-light-theme.yaml create mode 100644 themes/lazy-themes.yaml create mode 100644 themes/lazzaretti-s-vscode-themes--lazzaretti-plenatech.yaml create mode 100644 themes/lazzaretti-s-vscode-themes--lazzaretti-win11.yaml create mode 100644 themes/learn-with-sumit-theme--dark-night.yaml create mode 100644 themes/learn-with-sumit-theme--learn-with-sumit-blue-velvet-theme.yaml create mode 100644 themes/learn-with-sumit-theme--learn-with-sumit-official-theme.yaml create mode 100644 themes/learn-with-sumit-theme--learn-with-sumit-peace-of-the-eye.yaml create mode 100644 themes/learn-with-sumit-theme--learn-with-sumit-professional-theme.yaml create mode 100644 themes/learn-with-sumit-theme--learn-with-sumit-simple-as-light.yaml create mode 100644 themes/learn-with-sumit-theme--learn-with-sumit-theme.yaml create mode 100644 themes/learn-with-sumit-theme--learn-with-sumit-vintage.yaml create mode 100644 themes/legally-blind.yaml create mode 100644 themes/legendary-light.yaml create mode 100644 themes/lenglounh-theme.yaml create mode 100644 themes/lennon-red.yaml create mode 100644 themes/leva-ump45.yaml create mode 100644 themes/light-brown-leather.yaml create mode 100644 themes/light-purple.yaml create mode 100644 themes/light-rblx-rian.yaml create mode 100644 themes/light-theme-grey.yaml create mode 100644 themes/light-theme-with-bars.yaml create mode 100644 themes/lighthouse-in-the-dark-lighthouse-in-the-dark-boon-island-dark.yaml create mode 100644 themes/lighthouse-in-the-dark-lighthouse-in-the-dark-boon-island-light.yaml create mode 100644 themes/lighthouse-in-the-dark-lighthouse-in-the-dark-rose-island-dark.yaml create mode 100644 themes/lighthouse-in-the-dark-lighthouse-in-the-dark-rose-island-light.yaml create mode 100644 themes/lightning--lightning-cloud.yaml create mode 100644 themes/lightning--lightning-dark.yaml create mode 100644 themes/lightning--lightning-material-day.yaml create mode 100644 themes/lightning--lightning-material-evening.yaml create mode 100644 themes/lightning--lightning-material-midnight.yaml create mode 100644 themes/lightning--lightning-material-soft.yaml create mode 100644 themes/lightning--lightning-soft-dark.yaml create mode 100644 themes/lightning--lightning-soft.yaml create mode 100644 themes/lightning--lightning.yaml create mode 100644 themes/linkarzu-colors.yaml create mode 100644 themes/lino-themes.yaml create mode 100644 themes/linux-themes-for-vs-code--arc-dark.yaml create mode 100644 themes/linux-themes-for-vs-code--elementary.yaml create mode 100644 themes/linux-themes-for-vs-code--yaru-dark.yaml create mode 100644 themes/linux-themes-for-vs-code--yaru.yaml create mode 100644 themes/liquid-ray--liquid-ray-light.yaml create mode 100644 themes/liquid-ray--liquid-ray-soft-pink.yaml create mode 100644 themes/liquid-ray--liquid-ray.yaml create mode 100644 themes/little-league--little-league-dark.yaml create mode 100644 themes/little-league--little-league-darker.yaml create mode 100644 themes/little-league--little-league-light.yaml create mode 100644 themes/loki-official--loki-official-classic.yaml create mode 100644 themes/loki-official--loki-official-kang-edition.yaml create mode 100644 themes/lonely-theme.yaml create mode 100644 themes/lonus.yaml create mode 100644 themes/lookify-dark-light-themes--lookify-dark-mode.yaml create mode 100644 themes/lookify-dark-light-themes--lookify-light-mode.yaml create mode 100644 themes/lotus-dark-theme.yaml create mode 100644 themes/lotus-theme--lotus-dark.yaml create mode 100644 themes/lotus-theme--lotus-light.yaml create mode 100644 themes/low-eye-strain-dark-neon--cosmicsarthak-dark.yaml create mode 100644 themes/low-eye-strain-dark-neon--cosmicsarthak-neon.yaml create mode 100644 themes/low-eye-strain-dark-neon--cosmicsarthak-night-owl.yaml create mode 100644 themes/low-eye-strain-dark-neon--cosmicsarthak-red.yaml create mode 100644 themes/low-eye-strain-dark-neon-solarized-dark.yaml create mode 100644 themes/luan-theme.yaml create mode 100644 themes/lucario-theme.yaml create mode 100644 themes/lucid-summer-nights--summer.yaml create mode 100644 themes/lucifer-dark.yaml create mode 100644 themes/luiciff-themes-pack--dark.yaml create mode 100644 themes/luiciff-themes-pack--light.yaml create mode 100644 themes/luiciff-themes-pack--neon.yaml create mode 100644 themes/luiz-dark--luiz-dark-theme.yaml create mode 100644 themes/luk3-theme.yaml create mode 100644 themes/lumina-theme.yaml create mode 100644 themes/luminashade.yaml create mode 100644 themes/lumineclips.yaml create mode 100644 themes/lumon.yaml create mode 100644 themes/lunar-color-theme.yaml create mode 100644 themes/lunar-eclipse--lunar-eclipse-golden-hour.yaml create mode 100644 themes/lunar-eclipse--lunar-eclipse-light.yaml create mode 100644 themes/lunar-eclipse--lunar-eclipse.yaml create mode 100644 themes/lunar-eclipse--total-lunar-eclipse.yaml create mode 100644 themes/lunar-pink-theme--lunar-pink-satellite.yaml create mode 100644 themes/lunar-pink-theme--lunar-pink.yaml create mode 100644 themes/lunarvim-dark-theme.yaml create mode 100644 themes/m2-theme.yaml create mode 100644 themes/macindowsvs.yaml create mode 100644 themes/macos-theme.yaml create mode 100644 themes/maeel-theme.yaml create mode 100644 themes/magic-theme-dark.yaml create mode 100644 themes/maia-theme-purple.yaml create mode 100644 themes/mak1na-theme--mak1na-theme.yaml create mode 100644 themes/make-apps-theme.yaml create mode 100644 themes/maple-theme--maple-dark.yaml create mode 100644 themes/maple-theme--maple-light.yaml create mode 100644 themes/marciorasf-s-dracula--darkula.yaml create mode 100644 themes/mariana-dark-theme--sublime-text-4-theme.yaml create mode 100644 themes/mariana-no-italic.yaml create mode 100644 themes/mariana-pro-mariana-pro.yaml create mode 100644 themes/mariana-refined-theme--mariana-light.yaml create mode 100644 themes/mariana-refined-theme--mariana-refined.yaml create mode 100644 themes/marmure-dark.yaml create mode 100644 themes/maroon-theme.yaml create mode 100644 themes/maroza-theme--maroza-cyber-chill.yaml create mode 100644 themes/maroza-theme--maroza-dark-theme.yaml create mode 100644 themes/maroza-theme--maroza-light-theme.yaml create mode 100644 themes/maroza-theme--maroza-soothing-aqua.yaml create mode 100644 themes/maroza-theme--maroza-zen-pro.yaml create mode 100644 themes/martial-theme.yaml create mode 100644 themes/matcha-pastel.yaml create mode 100644 themes/material-aurora.yaml create mode 100644 themes/material-festoon.yaml create mode 100644 themes/material-light-theme--and-dark.yaml create mode 100644 themes/material-light-theme-and-dark--one-dark-pro.yaml create mode 100644 themes/material-monokai-theme.yaml create mode 100644 themes/material-neutral-theme.yaml create mode 100644 themes/material-theme-italicize--material-theme-darker.yaml create mode 100644 themes/material-theme-italicize--material-theme-default.yaml create mode 100644 themes/material-theme-italicize--material-theme-lighter-high-contrast.yaml create mode 100644 themes/material-theme-italicize--material-theme-lighter.yaml create mode 100644 themes/material-theme-italicize--material-theme-palenight.yaml create mode 100644 themes/material-tweaked.yaml create mode 100644 themes/material-ui.yaml create mode 100644 themes/matrix-theme.yaml create mode 100644 themes/matte-atelier-premium-studio-theme--matte-atelier-ivory.yaml create mode 100644 themes/matte-atelier-premium-studio-theme--matte-atelier-obsidian-colorblind.yaml create mode 100644 themes/matte-atelier-premium-studio-theme--matte-atelier-obsidian-high-contrast.yaml create mode 100644 themes/matte-atelier-premium-studio-theme--matte-atelier-obsidian.yaml create mode 100644 themes/matte-atelier-premium-studio-theme--matte-atelier-ros.yaml create mode 100644 themes/matte-atelier-premium-studio-theme--matte-atelier-sapphire.yaml create mode 100644 themes/matteric-theme.yaml create mode 100644 themes/matugen-vscode.yaml create mode 100644 themes/maus-theme.yaml create mode 100644 themes/maya-react-color-theme--carbon-react-color-theme-maya-black.yaml create mode 100644 themes/maya-react-color-theme--carbon-react-color-theme-maya.yaml create mode 100644 themes/maya-react-color-theme--carbon-react-color-theme.yaml create mode 100644 themes/mayukai-theme--mayukai.yaml create mode 100644 themes/mcburger--mcdark-theme.yaml create mode 100644 themes/meaow-theme--meaow-dark.yaml create mode 100644 themes/melange-redux--melange-redux-light.yaml create mode 100644 themes/meocean-themes--meoceanemerald.yaml create mode 100644 themes/meowrch-code-theme.yaml create mode 100644 themes/meridian-theme--meridian-neutral.yaml create mode 100644 themes/meridian-theme--meridian.yaml create mode 100644 themes/meshvoid-themes--meshvoid-light.yaml create mode 100644 themes/meshvoid-themes--meshvoid.yaml create mode 100644 themes/miasma.yaml create mode 100644 themes/mid-nigth.yaml create mode 100644 themes/midas-touch--midas-touch.yaml create mode 100644 themes/midnight-city--midnight-city.yaml create mode 100644 themes/midnight-coven-gothic-theme-collection--gothic-absinthe.yaml create mode 100644 themes/midnight-coven-gothic-theme-collection--gothic-amber-fog.yaml create mode 100644 themes/midnight-coven-gothic-theme-collection--gothic-blood-moon.yaml create mode 100644 themes/midnight-coven-gothic-theme-collection--gothic-cathedral.yaml create mode 100644 themes/midnight-coven-gothic-theme-collection--gothic-cemetery.yaml create mode 100644 themes/midnight-coven-gothic-theme-collection--gothic-emerald-crypt.yaml create mode 100644 themes/midnight-coven-gothic-theme-collection--gothic-jester.yaml create mode 100644 themes/midnight-coven-gothic-theme-collection--gothic-midnight-rose.yaml create mode 100644 themes/midnight-coven-gothic-theme-collection--gothic-qaddy.yaml create mode 100644 themes/midnight-coven-gothic-theme-collection--gothic-raven.yaml create mode 100644 themes/midnight-coven-gothic-theme-collection--gothic-spider-lily.yaml create mode 100644 themes/midnight-coven-gothic-theme-collection--gothic-twilight-forest.yaml create mode 100644 themes/midnight-coven-gothic-theme-collection--gothic-vampire.yaml create mode 100644 themes/midnight-coven-gothic-theme-collection--gothic-victorian-mourning.yaml create mode 100644 themes/midnight-mirage-theme.yaml create mode 100644 themes/midnight-moon-themes--midnight-moon-eclipse.yaml create mode 100644 themes/midnight-moon-themes--midnight-moon-ukiyo.yaml create mode 100644 themes/midnight-moon-themes--midnight-moon.yaml create mode 100644 themes/midnight-moon-themes--midnight-pro.yaml create mode 100644 themes/midnight-moon-themes--midnight-ukiyo.yaml create mode 100644 themes/midnight-moon-themes--zen-mono.yaml create mode 100644 themes/midnight-shadow.yaml create mode 100644 themes/midnight-theme--midnight-theme.yaml create mode 100644 themes/midwinter--nord.yaml create mode 100644 themes/mikestheme.yaml create mode 100644 themes/miku-code--miku-code-fusion-light.yaml create mode 100644 themes/miku-code--miku-code-light.yaml create mode 100644 themes/miku-code--miku-code.yaml create mode 100644 themes/miku-theme.yaml create mode 100644 themes/militry-green.yaml create mode 100644 themes/milky-way.yaml create mode 100644 themes/min-gruvbox-theme.yaml create mode 100644 themes/min-theme.yaml create mode 100644 themes/minimal--minimal.yaml create mode 100644 themes/minimal--shades.yaml create mode 100644 themes/minimal--themeframek.yaml create mode 100644 themes/minimal-44--minimal-44-pro.yaml create mode 100644 themes/minimal-44--minimal-44.yaml create mode 100644 themes/minimal-monochrome--minimal-monochrome-dark.yaml create mode 100644 themes/minimal-monochrome--minimal-monochrome-ink-dark.yaml create mode 100644 themes/minimal-monochrome--minimal-monochrome-ink-light.yaml create mode 100644 themes/minimal-monochrome--minimal-monochrome-light.yaml create mode 100644 themes/minimal-monochrome--minimal-monochrome-pastel-dawn.yaml create mode 100644 themes/minimal-monochrome--minimal-monochrome-pastel-light.yaml create mode 100644 themes/minimal-monochrome--minimal-monochrome-slate-dark.yaml create mode 100644 themes/minokai.yaml create mode 100644 themes/mint-theme--mint-dark.yaml create mode 100644 themes/mio.yaml create mode 100644 themes/mir2-theme--themer-dark.yaml create mode 100644 themes/mir2-theme--themer-light.yaml create mode 100644 themes/misty-blue--misty-blue.yaml create mode 100644 themes/mkanet-theme.yaml create mode 100644 themes/modest-pink-theme.yaml create mode 100644 themes/moegi-theme--moegi-black-zen.yaml create mode 100644 themes/moegi-theme--moegi-black.yaml create mode 100644 themes/moegi-theme--moegi-dark.yaml create mode 100644 themes/moegi-theme--moegi-dawn.yaml create mode 100644 themes/moegi-theme--moegi-iris.yaml create mode 100644 themes/moegi-theme--moegi-light.yaml create mode 100644 themes/moegi-theme--moegi-space.yaml create mode 100644 themes/molokai-dark.yaml create mode 100644 themes/monassa.yaml create mode 100644 themes/mono--mono-dark.yaml create mode 100644 themes/mono--mono-white.yaml create mode 100644 themes/mono-atom--mono-atom.yaml create mode 100644 themes/monochromator--monochromator-dark-plain.yaml create mode 100644 themes/monochromator--monochromator-light-plain.yaml create mode 100644 themes/monochrome--monochrome-dark-amplified.yaml create mode 100644 themes/monochrome--monochrome-dark-cool-gray.yaml create mode 100644 themes/monochrome--monochrome-dark-indigo.yaml create mode 100644 themes/monochrome--monochrome-dark-subtle.yaml create mode 100644 themes/monochrome--monochrome-dark.yaml create mode 100644 themes/monochrome--monochrome-light-amplified.yaml create mode 100644 themes/monochrome--monochrome-light-cool-gray.yaml create mode 100644 themes/monochrome--monochrome-light-indigo.yaml create mode 100644 themes/monochrome--monochrome-light-subtle.yaml create mode 100644 themes/monochrome--monochrome-light.yaml create mode 100644 themes/monochrome--monochrome.yaml create mode 100644 themes/monochrome-fork-by-dkamyshov--monochrome-dark-amplified.yaml create mode 100644 themes/monochrome-fork-by-dkamyshov--monochrome-dark-subtle.yaml create mode 100644 themes/monochrome-fork-by-dkamyshov--monochrome-dark.yaml create mode 100644 themes/monochrome-fork-by-dkamyshov--monochrome-light-amplified.yaml create mode 100644 themes/monochrome-fork-by-dkamyshov--monochrome-light-subtle.yaml create mode 100644 themes/monochrome-fork-by-dkamyshov--monochrome-light.yaml create mode 100644 themes/monochrome-monochrome-github-edition.yaml create mode 100644 themes/monochrome-theme.yaml create mode 100644 themes/monocious.yaml create mode 100644 themes/monokai-accents--monokai-red.yaml create mode 100644 themes/monokai-after-dark.yaml create mode 100644 themes/monokai-air-theme.yaml create mode 100644 themes/monokai-dark-green--monokai-dark-green.yaml create mode 100644 themes/monokai-dark-theme.yaml create mode 100644 themes/monokai-dev--dev2.yaml create mode 100644 themes/monokai-dev--dev3.yaml create mode 100644 themes/monokai-dev--dev4.yaml create mode 100644 themes/monokai-dev--dev5.yaml create mode 100644 themes/monokai-dev--dev6.yaml create mode 100644 themes/monokai-dev--dev7.yaml create mode 100644 themes/monokai-dev--dev8.yaml create mode 100644 themes/monokai-dev--dev9.yaml create mode 100644 themes/monokai-grs-elixir-fork.yaml create mode 100644 themes/monokai-japan-theme.yaml create mode 100644 themes/monokai-mahesh.yaml create mode 100644 themes/monokai-night-theme.yaml create mode 100644 themes/monokai-ocean.yaml create mode 100644 themes/monokai-red-moon.yaml create mode 100644 themes/monokai-seti.yaml create mode 100644 themes/monokai-theme-use-high-contrast.yaml create mode 100644 themes/monokai.yaml create mode 100644 themes/monokard-theme.yaml create mode 100644 themes/monolite-space--monolite-space-dark.yaml create mode 100644 themes/monolite-space--monolite-space-gray.yaml create mode 100644 themes/monospace-theme--monospace-dark.yaml create mode 100644 themes/monospace-theme--monospace-light.yaml create mode 100644 themes/monospace-theme--space-dark.yaml create mode 100644 themes/monospace-theme--space-light.yaml create mode 100644 themes/monotone.yaml create mode 100644 themes/monove.yaml create mode 100644 themes/monte-cristo.yaml create mode 100644 themes/moonbloom-official-theme.yaml create mode 100644 themes/moonlight-vscode-theme.yaml create mode 100644 themes/moonspell-themes.yaml create mode 100644 themes/more-colorful.yaml create mode 100644 themes/morgan-codes-theme.yaml create mode 100644 themes/morita--azul.yaml create mode 100644 themes/morita--sober.yaml create mode 100644 themes/mosaic-theme.yaml create mode 100644 themes/mr-robot-dark-theme.yaml create mode 100644 themes/mt-doom.yaml create mode 100644 themes/muromachi-deluxe.yaml create mode 100644 themes/murora.yaml create mode 100644 themes/my-custom-theme-extension.yaml create mode 100644 themes/my-theme-luisfelipe.yaml create mode 100644 themes/mystic-blue.yaml create mode 100644 themes/mystic-dark-collection--deep-ocean.yaml create mode 100644 themes/mystic-fusion.yaml create mode 100644 themes/nachop-theme--piggy.yaml create mode 100644 themes/nairobi.yaml create mode 100644 themes/naomi-s-themes--ocean-breeze.yaml create mode 100644 themes/naomi-s-themes--sakura-dreams-dark.yaml create mode 100644 themes/naomi-s-themes--sakura-dreams.yaml create mode 100644 themes/naomi-s-themes--witchy-dark.yaml create mode 100644 themes/naomi-s-themes-trans-pride-light-naomi.yaml create mode 100644 themes/narato--kanao.yaml create mode 100644 themes/narixius-theme.yaml create mode 100644 themes/naruto-shinobi-theme--hashirama-senju-god-of-shinobi.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-akatsuki.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-hinata-hyuga-byakugan-vision.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-hokage-dawn.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-itachi-uchiha-tsukuyomi-dimension.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-jiraiya-gallant-toad-sage.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-kakashi-copy-ninja.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-kurama-nine-tails.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-might-guy-gate-of-death-madara-battle.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-might-guy-gates-of-youth.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-minato-namikaze-yellow-flash.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-pain-nagato-rinnegan-god.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-sage-mode.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-sakura-haruno-cherry-blossom-storm.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-sasuke-uchiha-sharingan.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-shikamaru-nara-shadow-possession.yaml create mode 100644 themes/naruto-shinobi-theme--naruto-shinobi-night.yaml create mode 100644 themes/naruto-shinobi-theme--tobirama-water-style.yaml create mode 100644 themes/natasha-purple.yaml create mode 100644 themes/natty.yaml create mode 100644 themes/natural-green.yaml create mode 100644 themes/naturefy-themes--koi-pond-dark.yaml create mode 100644 themes/naturefy-themes--koi-pond-light.yaml create mode 100644 themes/naturefy-themes--ukiyo-e-manuscript.yaml create mode 100644 themes/nb-monochrome.yaml create mode 100644 themes/nebula-colorscheme.yaml create mode 100644 themes/nebula-dark-theme-pack.yaml create mode 100644 themes/nebula-dark.yaml create mode 100644 themes/nebula-for-vs-code.yaml create mode 100644 themes/nebula-nights-pastel.yaml create mode 100644 themes/nebula-theme.yaml create mode 100644 themes/necessity--necessity-aaa-light.yaml create mode 100644 themes/necessity--necessity-aaa.yaml create mode 100644 themes/neo-nuxt-blend--neo-nuxt-matte.yaml create mode 100644 themes/neo-nuxt-blend--nuxt-blend-bleach-color-theme.yaml create mode 100644 themes/neo-nuxt-blend--nuxt-blend.yaml create mode 100644 themes/neo-seoul-theme--neo-seoul-dark.yaml create mode 100644 themes/neo-seoul-theme--neo-seoul-light.yaml create mode 100644 themes/neo-theme.yaml create mode 100644 themes/neon-color-dark-theme--jetbrains-ide-dark-theme.yaml create mode 100644 themes/neon-color-dark-theme--matrix-hacking-dark-theme.yaml create mode 100644 themes/neon-color-dark-theme--neon-color-dark-theme.yaml create mode 100644 themes/neon-color-dark-theme--one-dark-pro-theme.yaml create mode 100644 themes/neon-color-dark-theme--visual-studio-code-dark-theme.yaml create mode 100644 themes/neon-cyberpunk-theme--neon-cyberpunk.yaml create mode 100644 themes/neon-cyberpunk-theme--neon-glow.yaml create mode 100644 themes/neon-cyberpunk-theme--neon-matrix.yaml create mode 100644 themes/neon-cyberpunk-theme--neon-ocean.yaml create mode 100644 themes/neon-cyberpunk-theme--neon-sunset.yaml create mode 100644 themes/neon-cyberpunk-theme--neon-synthwave.yaml create mode 100644 themes/neon-cyberpunk-theme--neon-violet.yaml create mode 100644 themes/neon-dreams-theme--neon-dreams.yaml create mode 100644 themes/neon-genesis-evangelion-themes.yaml create mode 100644 themes/neon-green-dark-terminal--neon-green-light.yaml create mode 100644 themes/neon-green-dark-terminal--neon-green-midnight.yaml create mode 100644 themes/neon-jet.yaml create mode 100644 themes/neon-palette-themes-neon-palette-themes-red.yaml create mode 100644 themes/neon-shimmer--neon-shimmer.yaml create mode 100644 themes/neon-shimmer-neon-shimmer-amethyst-core.yaml create mode 100644 themes/neon-shimmer-neon-shimmer-bubblegum-punk.yaml create mode 100644 themes/neon-shimmer-neon-shimmer-crimson-drive.yaml create mode 100644 themes/neonite-theme.yaml create mode 100644 themes/neovim-theme--neovim-theme.yaml create mode 100644 themes/nest-theme.yaml create mode 100644 themes/nestjs-full-color-theme.yaml create mode 100644 themes/netbilla--untitled.yaml create mode 100644 themes/netlify-theme--netlify.yaml create mode 100644 themes/netlify-vscode-theme.yaml create mode 100644 themes/neutral--bluesea.yaml create mode 100644 themes/neutral--neutral.yaml create mode 100644 themes/neutral--neutralvi.yaml create mode 100644 themes/new-dark-railscasts.yaml create mode 100644 themes/new-england.yaml create mode 100644 themes/new-moon-syntax-theme.yaml create mode 100644 themes/newera-theme.yaml create mode 100644 themes/next-js-theme.yaml create mode 100644 themes/nextgen-terminal-professional-dark-themes-collection--cybersec-pro.yaml create mode 100644 themes/nextgen-terminal-professional-dark-themes-collection--matrix-reloaded-locked.yaml create mode 100644 themes/nextgen-terminal-professional-dark-themes-collection--matrix-reloaded.yaml create mode 100644 themes/nextgen-terminal-professional-dark-themes-collection--nextgen-terminal.yaml create mode 100644 themes/nextgen-terminal-professional-dark-themes-collection--quantum-flux.yaml create mode 100644 themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-aurora-dawn.yaml create mode 100644 themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-aurora-night.yaml create mode 100644 themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-forest-retreat.yaml create mode 100644 themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-midnight-base.yaml create mode 100644 themes/nibelung-theme-vscode--nibelung-dark.yaml create mode 100644 themes/nibelung-theme-vscode--nibelung.yaml create mode 100644 themes/nice-dark--nice-dark.yaml create mode 100644 themes/nicely-neon-theme.yaml create mode 100644 themes/night-blue-high-voidjmp-vscode-extensions.yaml create mode 100644 themes/night-dark-theme.yaml create mode 100644 themes/night-howl--night-howl.yaml create mode 100644 themes/night-node.yaml create mode 100644 themes/night-owl-oled-dim--night-owl-oled-dim-100.yaml create mode 100644 themes/night-owl-oled-dim--night-owl-oled-dim-75.yaml create mode 100644 themes/night-owl-oled-dim--night-owl-oled-dim-80.yaml create mode 100644 themes/night-owl-oled-dim--night-owl-oled-dim-85.yaml create mode 100644 themes/night-owl-oled-dim--night-owl-oled-dim-90.yaml create mode 100644 themes/night-owl-oled-dim--night-owl-oled-dim-95.yaml create mode 100644 themes/night-rainbow--night-rainbow-darker.yaml create mode 100644 themes/night-rainbow--night-rainbow-purple-haze.yaml create mode 100644 themes/night-rainbow--night-rainbow.yaml create mode 100644 themes/night-wolf--themename.yaml create mode 100644 themes/night-zen-theme.yaml create mode 100644 themes/nightaurora.yaml create mode 100644 themes/nightcall--nightcall.yaml create mode 100644 themes/nightfall.yaml create mode 100644 themes/nightfox--carbonfox.yaml create mode 100644 themes/nightfox--duskfox.yaml create mode 100644 themes/nightfox--nightfox.yaml create mode 100644 themes/nightfox--nordfox.yaml create mode 100644 themes/nightfox--terafox.yaml create mode 100644 themes/nightowl.yaml create mode 100644 themes/nighty-purple.yaml create mode 100644 themes/nikso-theme.yaml create mode 100644 themes/nimbuslab-theme-color.yaml create mode 100644 themes/nishuuu-themes--tara-theme-carbon-high-contrast.yaml create mode 100644 themes/nishuuu-themes--tara-theme-carbon.yaml create mode 100644 themes/nishuuu-themes--tara-theme-deepforest.yaml create mode 100644 themes/nishuuu-themes--tara-theme-ocean.yaml create mode 100644 themes/nishuuu-themes--tara-theme-palenight.yaml create mode 100644 themes/nishuuu-themes--tara-theme-teal.yaml create mode 100644 themes/nix--lunar.yaml create mode 100644 themes/nix--nix.yaml create mode 100644 themes/no-theme.yaml create mode 100644 themes/noctis--noctis-azureus.yaml create mode 100644 themes/noctis--noctis-bordo.yaml create mode 100644 themes/noctis--noctis-hibernus.yaml create mode 100644 themes/noctis--noctis-lilac.yaml create mode 100644 themes/noctis--noctis-lux.yaml create mode 100644 themes/noctis--noctis-minimus.yaml create mode 100644 themes/noctis--noctis-obscuro.yaml create mode 100644 themes/noctis--noctis-sereno.yaml create mode 100644 themes/noctis--noctis-uva.yaml create mode 100644 themes/noctis--noctis-viola.yaml create mode 100644 themes/noctis--noctis.yaml create mode 100644 themes/noctis-high-contrast--noctis-high-contrast.yaml create mode 100644 themes/noctis-lux-medium.yaml create mode 100644 themes/noctis.yaml create mode 100644 themes/nocturnal-theme.yaml create mode 100644 themes/noir--noir-dracula.yaml create mode 100644 themes/noir--noir-outrun.yaml create mode 100644 themes/noir--noir-owl.yaml create mode 100644 themes/noir--noir-poimandres-black.yaml create mode 100644 themes/noir--noir-poimandres-dark.yaml create mode 100644 themes/noir--noir-poimandres-darker.yaml create mode 100644 themes/noir--noir-ros-pine-grey.yaml create mode 100644 themes/noir--noir-ros-pine-moon-grey.yaml create mode 100644 themes/noir--noir-tokyo-night-black.yaml create mode 100644 themes/noir--noir-tokyo-night.yaml create mode 100644 themes/noir-essence--noir-essence-dark.yaml create mode 100644 themes/noir-essence--noir-essence-light.yaml create mode 100644 themes/noir-vs-code-theme-noir-dark.yaml create mode 100644 themes/noir-vs-code-theme-noir-light.yaml create mode 100644 themes/noir.yaml create mode 100644 themes/nord-dark-contrast--nord-dark-contrast.yaml create mode 100644 themes/nord-dark-pro--nord-dark-pro.yaml create mode 100644 themes/nord-dark-pro--one-dark-pro.yaml create mode 100644 themes/nord-dark.yaml create mode 100644 themes/nord-deep-but-you-can-actually-see-comments.yaml create mode 100644 themes/nord-palette--nord-palette.yaml create mode 100644 themes/nordic-vscode.yaml create mode 100644 themes/nosk-orange-theme.yaml create mode 100644 themes/notes-ocean-theme.yaml create mode 100644 themes/notthevimguy.yaml create mode 100644 themes/nova-theme.yaml create mode 100644 themes/nox04-theme.yaml create mode 100644 themes/noxis--noxis.yaml create mode 100644 themes/nushu--nushu-classic.yaml create mode 100644 themes/nushu--nushu-dark.yaml create mode 100644 themes/nushu--nushu-light.yaml create mode 100644 themes/nuuvo.yaml create mode 100644 themes/nuxtian--nuxtian-deep-space.yaml create mode 100644 themes/nuxtian--nuxtian-light.yaml create mode 100644 themes/nuxtian--nuxtian-nitro.yaml create mode 100644 themes/nuxtian--nuxtian.yaml create mode 100644 themes/nuxtian--nuxtiansololevel.yaml create mode 100644 themes/nuxtian--nuxtvite.yaml create mode 100644 themes/nuxtian--nuxtvoid.yaml create mode 100644 themes/nvtokyo-night.yaml create mode 100644 themes/nyc-winter-theme.yaml create mode 100644 themes/oak--oak-dark.yaml create mode 100644 themes/oak--oak.yaml create mode 100644 themes/obsidian-dark-theme--rust-syntax-optimized.yaml create mode 100644 themes/obsidian-ember-theme.yaml create mode 100644 themes/obsidianite--obsidianite-amoled.yaml create mode 100644 themes/obsidianite--obsidianite.yaml create mode 100644 themes/oc7-light.yaml create mode 100644 themes/ocean-monokai.yaml create mode 100644 themes/ocms-theme--red.yaml create mode 100644 themes/octopus--deep-ocean.yaml create mode 100644 themes/office-theme--word-color-theme.yaml create mode 100644 themes/office-theme--word-dark-theme.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-aliceblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-antiquewhite.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-aqua.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-aquamarine.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-azure.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-beige.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-bisque.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-blanchedalmond.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-blue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-blueviolet.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-brown.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-burlywood.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-cadetblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-chartreuse.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-chocolate.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-coral.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-cornflowerblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-cornsilk.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-crimson.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkcyan.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkgoldenrod.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkgray.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkgreen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkkhaki.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkmagenta.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkolivegreen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkorange.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkorchid.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkred.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darksalmon.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkseagreen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkslateblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkslategray.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkturquoise.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-darkviolet.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-deeppink.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-deepskyblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-dimgray.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-dodgerblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-firebrick.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-forestgreen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-fuchsia.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-gainsboro.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-ghostwhite.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-gold.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-goldenrod.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-gray.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-green.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-greenyellow.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-honeydew.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-hotpink.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-indianred.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-indigo.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-ivory.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-khaki.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lavender.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lavenderblush.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lawngreen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lemonchiffon.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lightblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lightcoral.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lightcyan.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lightgoldenrodyellow.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lightgray.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lightgreen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lightpink.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lightsalmon.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lightseagreen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lightskyblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lightslategray.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lightsteelblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lightyellow.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-lime.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-limegreen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-linen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-maroon.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-mediumaquamarine.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-mediumblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-mediumorchid.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-mediumpurple.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-mediumseagreen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-mediumslateblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-mediumspringgreen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-mediumturquoise.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-mediumvioletred.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-midnightblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-mintcream.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-mistyrose.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-moccasin.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-navajowhite.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-navy.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-oldlace.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-olive.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-olivedrab.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-orange.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-orangered.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-orchid.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-palegoldenrod.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-palegreen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-paleturquoise.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-palevioletred.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-papayawhip.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-peachpuff.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-peru.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-pink.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-plum.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-powderblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-purple.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-rebeccapurple.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-red.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-rosybrown.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-royalblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-saddlebrown.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-salmon.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-sandybrown.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-seagreen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-seashell.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-sienna.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-silver.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-skyblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-slateblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-slategray.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-snow.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-springgreen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-steelblue.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-tan.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-teal.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-thistle.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-tomato.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-turquoise.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-violet.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-wheat.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-white.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-whitesmoke.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-yellow.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-yellowgreen.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-yelloworange.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-yellowpink.yaml create mode 100644 themes/ohled-themes-142-in-1--ohled-yellowpurple.yaml create mode 100644 themes/oksolar-solarized-dark.yaml create mode 100644 themes/oksolar-solarized-light.yaml create mode 100644 themes/oldschool-theme-windows-95-edition.yaml create mode 100644 themes/omni-dark--omni-customized-dark.yaml create mode 100644 themes/omni-dracula-dark--focus-colors.yaml create mode 100644 themes/omni-dracula-dark--omni-dracula-dark.yaml create mode 100644 themes/omni-dracula-dark--omni-monokai-dark.yaml create mode 100644 themes/omni-dracula-vscode-theme--omni-dracula-theme-tradicional-contrast.yaml create mode 100644 themes/omni-dracula-vscode-theme--omni-dracula-theme-tradicional.yaml create mode 100644 themes/omni-dracula-vscode-theme--omni-dracula-theme.yaml create mode 100644 themes/omni-dracula-vscode-theme--omni-dracula-wine-theme-tradicional.yaml create mode 100644 themes/omni-pro-theme--omni-pro.yaml create mode 100644 themes/omni-theme-customized.yaml create mode 100644 themes/omni-theme.yaml create mode 100644 themes/one-dark-night-theme--one-dark-night-blue-boy.yaml create mode 100644 themes/one-dark-night-theme--one-dark-night-eye-care.yaml create mode 100644 themes/one-dark-night-theme--one-dark-night-minimalist.yaml create mode 100644 themes/one-dark-night-theme--one-dark-night-professional.yaml create mode 100644 themes/one-dark-plus-theme.yaml create mode 100644 themes/one-dark-pro--one-dark-pro.yaml create mode 100644 themes/one-dark-pro-colorblind-deuteranopia--onedark-pro-suhayb-s-version-v2.yaml create mode 100644 themes/one-dark-ruby.yaml create mode 100644 themes/one-dark-theme--one-dark.yaml create mode 100644 themes/one-darker-pro--one-darker-pro.yaml create mode 100644 themes/one-darkpuccin--one-darkpuccin-night.yaml create mode 100644 themes/one-darkpuccin--one-darkpuccin-vivid.yaml create mode 100644 themes/one-eyecare-theme--onedark.yaml create mode 100644 themes/one-hunter-theme--one-hunter-theme.yaml create mode 100644 themes/one-light-italic--one-light-italic.yaml create mode 100644 themes/one-monokai-80s-theme.yaml create mode 100644 themes/one-monokai-pro.yaml create mode 100644 themes/one-monokai-python--one-monokai-python.yaml create mode 100644 themes/one-piece-theme--one-piece-dark.yaml create mode 100644 themes/one-piece-theme--one-piece-light.yaml create mode 100644 themes/one-plain.yaml create mode 100644 themes/onebitcode-theme--darkblue-theme.yaml create mode 100644 themes/onebitcode-theme--onebitcode-theme.yaml create mode 100644 themes/onebitcode-theme--snow-theme.yaml create mode 100644 themes/onedark.yaml create mode 100644 themes/onedarkpro-x.yaml create mode 100644 themes/onepiece-dark-theme.yaml create mode 100644 themes/only-dark-theme--bluespace.yaml create mode 100644 themes/only-dark-theme--darkspace.yaml create mode 100644 themes/only-dark-theme--minimal.yaml create mode 100644 themes/only-dark-theme--onlydark.yaml create mode 100644 themes/only-dark-theme--sober.yaml create mode 100644 themes/onyx-theme-color-experience.yaml create mode 100644 themes/oolory.yaml create mode 100644 themes/orago-themes.yaml create mode 100644 themes/orangey-color-theme--orangey.yaml create mode 100644 themes/orangey-color-theme-orangey-darker-1.yaml create mode 100644 themes/orangey-color-theme-orangey-darker-2.yaml create mode 100644 themes/orangey-color-theme-orangey-lighter-1.yaml create mode 100644 themes/orangey-color-theme-orangey-lighter-2.yaml create mode 100644 themes/origamid-next--origamid.yaml create mode 100644 themes/origamid-theme.yaml create mode 100644 themes/osaka-solarized-pro--osaka-solarized-pro-dark.yaml create mode 100644 themes/osaka-solarized-pro--osaka-solarized-pro-light.yaml create mode 100644 themes/osaka-solarized-pro--osaka-solarized-pro-monokai-storm.yaml create mode 100644 themes/osmoz-dark-themes.yaml create mode 100644 themes/oth-theme--light.yaml create mode 100644 themes/outrun--outrun-contrast.yaml create mode 100644 themes/outrun--outrun-dark.yaml create mode 100644 themes/outrun.yaml create mode 100644 themes/overcast-theme--dark-brown-theme.yaml create mode 100644 themes/overnight--overnight.yaml create mode 100644 themes/oxide-theme.yaml create mode 100644 themes/oxocarbon-theme--oxocarbon-dark.yaml create mode 100644 themes/oxocarbon-theme--oxocarbon-monochrom.yaml create mode 100644 themes/oxocarbon-theme--oxocarbon-oled-monochrom.yaml create mode 100644 themes/oxocarbon-theme--oxocarbon-oled.yaml create mode 100644 themes/oxocarbon-theme-oxocarbon-oled-monochrom-compatibility.yaml create mode 100644 themes/oxocarbonix--oxocarbonix-dark-theme.yaml create mode 100644 themes/p-o-s-themes--paulera-s-dark-monokai.yaml create mode 100644 themes/p-o-s-themes--paulera-s-lyo.yaml create mode 100644 themes/paddy-color-themes--p-black.yaml create mode 100644 themes/paddy-color-themes--p-citadel.yaml create mode 100644 themes/paddy-color-themes--p-crimson.yaml create mode 100644 themes/paddy-color-themes--p-dark.yaml create mode 100644 themes/paddy-color-themes--p-eggplant.yaml create mode 100644 themes/paddy-color-themes--p-emerald.yaml create mode 100644 themes/paddy-color-themes--p-eucalyptus.yaml create mode 100644 themes/paddy-color-themes--p-floresta.yaml create mode 100644 themes/paddy-color-themes--p-frost.yaml create mode 100644 themes/paddy-color-themes--p-genmaicha.yaml create mode 100644 themes/paddy-color-themes--p-grizzly.yaml create mode 100644 themes/paddy-color-themes--p-haze.yaml create mode 100644 themes/paddy-color-themes--p-inkstone.yaml create mode 100644 themes/paddy-color-themes--p-leipzig.yaml create mode 100644 themes/paddy-color-themes--p-light.yaml create mode 100644 themes/paddy-color-themes--p-machine.yaml create mode 100644 themes/paddy-color-themes--p-mist.yaml create mode 100644 themes/paddy-color-themes--p-neptune.yaml create mode 100644 themes/paddy-color-themes--p-ornithopter.yaml create mode 100644 themes/paddy-color-themes--p-ox.yaml create mode 100644 themes/paddy-color-themes--p-terabyte.yaml create mode 100644 themes/paddy-color-themes--p-ultramarine.yaml create mode 100644 themes/paddy-color-themes--p-wolf.yaml create mode 100644 themes/paddy-color-themes--p-yesterday.yaml create mode 100644 themes/paddy-color-themes--p-zenith.yaml create mode 100644 themes/padrepio-dark--untitled.yaml create mode 100644 themes/painful-light.yaml create mode 100644 themes/pandju--pandju.yaml create mode 100644 themes/papaya-theme.yaml create mode 100644 themes/para-so-dark-treffynnon.yaml create mode 100644 themes/parchment--monochrome-themes.yaml create mode 100644 themes/paro-paro-solarized-dark.yaml create mode 100644 themes/paro-paro-themes--paro-paro-solarized-dark-theme.yaml create mode 100644 themes/pastel-inu--pastel-inu.yaml create mode 100644 themes/pastel-night.yaml create mode 100644 themes/pastel-v2.yaml create mode 100644 themes/pastel-zeke.yaml create mode 100644 themes/pastelization.yaml create mode 100644 themes/paulsevere.yaml create mode 100644 themes/pcode-theme--tokyo-night.yaml create mode 100644 themes/penumbra--penumbra-dark-contrast.yaml create mode 100644 themes/penumbra--penumbra-dark.yaml create mode 100644 themes/penumbra--penumbra-light.yaml create mode 100644 themes/perfection-fresh--perfection-fresh-dark.yaml create mode 100644 themes/perfection-fresh--perfection-fresh-light.yaml create mode 100644 themes/perplexity-theme.yaml create mode 100644 themes/perseus.yaml create mode 100644 themes/phosphor-theme--phosphor-dark.yaml create mode 100644 themes/photonica--photonica-dark.yaml create mode 100644 themes/photonica--photonica-light.yaml create mode 100644 themes/pierre-theme--pierre-dark.yaml create mode 100644 themes/pierre-theme--pierre-light.yaml create mode 100644 themes/pine-editor-themes--pine-blue.yaml create mode 100644 themes/pine-editor-themes--pine-editor-dark.yaml create mode 100644 themes/pine-editor-themes--pine-grey.yaml create mode 100644 themes/pine-forest-green.yaml create mode 100644 themes/pine-script-v5--pine-editor-light.yaml create mode 100644 themes/pine-script-v5--pine-frizz.yaml create mode 100644 themes/pinescript-helper--pine-theme-dark-pro.yaml create mode 100644 themes/pinescript-helper--pine-theme-original-dark.yaml create mode 100644 themes/pink-candy-theme--pink-candy-dark-warm.yaml create mode 100644 themes/pink-candy-theme--pink-candy-dark.yaml create mode 100644 themes/pink-candy-theme--pink-candy-light.yaml create mode 100644 themes/pink-dark.yaml create mode 100644 themes/pink-green-pastels.yaml create mode 100644 themes/pink-high-contrast-theme.yaml create mode 100644 themes/pink-serena.yaml create mode 100644 themes/pink-theme-markisik.yaml create mode 100644 themes/pink-themes-collection--forest-rose.yaml create mode 100644 themes/pink-themes-collection--iris-pink.yaml create mode 100644 themes/pink-themes-collection--matcha-pink.yaml create mode 100644 themes/pink-velvet-theme-for-vs-code.yaml create mode 100644 themes/pinkcode-theme.yaml create mode 100644 themes/pinkcodes-theme.yaml create mode 100644 themes/pinklily.yaml create mode 100644 themes/pinkpinktheme.yaml create mode 100644 themes/pinky-promise-theme--pinky-promise-dark.yaml create mode 100644 themes/pinky-promise-theme--pinky-promise-light.yaml create mode 100644 themes/pinkyboo-theme.yaml create mode 100644 themes/pittaya-theme--pittaya-theme-light.yaml create mode 100644 themes/pittaya-theme--pittaya-theme.yaml create mode 100644 themes/pittcsc.yaml create mode 100644 themes/pizzutti-purple-cyan.yaml create mode 100644 themes/plasticine--plasticine.yaml create mode 100644 themes/plurpel.yaml create mode 100644 themes/poimandres--poimandres-dark-theme.yaml create mode 100644 themes/poimandres-darker.yaml create mode 100644 themes/polar-black--polar-black-cherry-blossom.yaml create mode 100644 themes/polar-black--polar-black-green-cactus.yaml create mode 100644 themes/polar-black--polar-black-ice.yaml create mode 100644 themes/polar-black--polar-black-less-black-smoke.yaml create mode 100644 themes/polar-black--polar-black-light.yaml create mode 100644 themes/polar-black--polar-black-red.yaml create mode 100644 themes/polar-black--polar-black-savanna.yaml create mode 100644 themes/polar-black--polar-black.yaml create mode 100644 themes/polar.yaml create mode 100644 themes/polychrome-themes--polychrome-dark.yaml create mode 100644 themes/polychrome-themes--polychrome-light.yaml create mode 100644 themes/pop.yaml create mode 100644 themes/popping-and-locking-black-theme.yaml create mode 100644 themes/popping-and-locking-theme.yaml create mode 100644 themes/positively-wicked--wicked.yaml create mode 100644 themes/potion-theme.yaml create mode 100644 themes/powertech-themes--office-dark.yaml create mode 100644 themes/powertech-themes--office-light.yaml create mode 100644 themes/ppy-like-colours.yaml create mode 100644 themes/pr-theme--pr-theme-obsidian.yaml create mode 100644 themes/pr-theme--pr-theme-premium.yaml create mode 100644 themes/pr-theme--pr-theme.yaml create mode 100644 themes/prismapixel-studios.yaml create mode 100644 themes/pro-white.yaml create mode 100644 themes/proper-purple-theme.yaml create mode 100644 themes/pudding-theme--pudding-dark-christmas.yaml create mode 100644 themes/pudding-theme--pudding-dark.yaml create mode 100644 themes/pudding-theme--pudding-light-jk.yaml create mode 100644 themes/pudding-theme--pudding-light.yaml create mode 100644 themes/pudding-theme-pudding-dark-caramel-beta.yaml create mode 100644 themes/pulse-studio-theme--pulse-balanced-purple.yaml create mode 100644 themes/pulse-studio-theme--pulse-comfort-light.yaml create mode 100644 themes/pulse-studio-theme--pulse-soft-purple.yaml create mode 100644 themes/pumpkin-color-theme.yaml create mode 100644 themes/punk-runner.yaml create mode 100644 themes/purgle-dark-purple-rmsyntax.yaml create mode 100644 themes/purple-and-black.yaml create mode 100644 themes/purple-dark-theme-lf.yaml create mode 100644 themes/purple-haze-theme.yaml create mode 100644 themes/purple-royal-theme.yaml create mode 100644 themes/purple-stark-theme--stark-light.yaml create mode 100644 themes/purple-wave.yaml create mode 100644 themes/purpleish.yaml create mode 100644 themes/purplespace--bluesea.yaml create mode 100644 themes/purplespace--onlydark.yaml create mode 100644 themes/purplespace--purplespace.yaml create mode 100644 themes/purplespace--sober.yaml create mode 100644 themes/purplevibes.yaml create mode 100644 themes/purply-theme-purply-dark.yaml create mode 100644 themes/purply-theme-purply-light.yaml create mode 100644 themes/purrfect-marshmallow-theme--purrfect-marshmallow-lavender-night.yaml create mode 100644 themes/purrfect-marshmallow-theme--purrfect-marshmallow-pastel-pink.yaml create mode 100644 themes/pushkin-is-white-theme.yaml create mode 100644 themes/qerz-v1.yaml create mode 100644 themes/qii-theme--qii-theme-dark-shallow.yaml create mode 100644 themes/qii-theme--qii-theme-dark.yaml create mode 100644 themes/qii-theme--qii-theme-light.yaml create mode 100644 themes/quantum-material-theme--quantum-material-theme-dark.yaml create mode 100644 themes/quantum-material-theme--quantum-material-theme-light.yaml create mode 100644 themes/quantum-material-theme--quantum-material-theme-void.yaml create mode 100644 themes/quantum-theme--quantum-dark.yaml create mode 100644 themes/quantum-theme--quantum-mirage.yaml create mode 100644 themes/quantum-theme--quantum.yaml create mode 100644 themes/qubik-themes--qubik-dark.yaml create mode 100644 themes/qubik-themes--qubik-light.yaml create mode 100644 themes/queensland--queensland-dark.yaml create mode 100644 themes/queensland--queensland-light.yaml create mode 100644 themes/quiet-canvas--quiet-canvas.yaml create mode 100644 themes/quite-night-theme.yaml create mode 100644 themes/r-dark-pro.yaml create mode 100644 themes/r-h-zero-theme.yaml create mode 100644 themes/rachael-s-themes--dr-jones.yaml create mode 100644 themes/rachael-s-themes--high-tea.yaml create mode 100644 themes/rafa-oficial--machine.yaml create mode 100644 themes/raij--raij-dark.yaml create mode 100644 themes/raij--raij.yaml create mode 100644 themes/rainbowdrops.yaml create mode 100644 themes/rainglow--absent-contrast.yaml create mode 100644 themes/rainglow--absent-light.yaml create mode 100644 themes/rainglow--absent.yaml create mode 100644 themes/rainglow--allure-contrast.yaml create mode 100644 themes/rainglow--allure-light.yaml create mode 100644 themes/rainglow--allure.yaml create mode 100644 themes/rainglow--arstotzka-contrast.yaml create mode 100644 themes/rainglow--arstotzka-light.yaml create mode 100644 themes/rainglow--arstotzka.yaml create mode 100644 themes/rainglow--azure-contrast.yaml create mode 100644 themes/rainglow--azure-light.yaml create mode 100644 themes/rainglow--azure.yaml create mode 100644 themes/rainglow--banner-contrast.yaml create mode 100644 themes/rainglow--banner-light.yaml create mode 100644 themes/rainglow--banner.yaml create mode 100644 themes/rainglow--blink-contrast.yaml create mode 100644 themes/rainglow--blink-light.yaml create mode 100644 themes/rainglow--blink.yaml create mode 100644 themes/rainglow--bold-contrast.yaml create mode 100644 themes/rainglow--bold-light.yaml create mode 100644 themes/rainglow--bold.yaml create mode 100644 themes/rainglow--boxuk-contrast.yaml create mode 100644 themes/rainglow--boxuk-light.yaml create mode 100644 themes/rainglow--boxuk.yaml create mode 100644 themes/rainglow--brave-contrast.yaml create mode 100644 themes/rainglow--brave-light.yaml create mode 100644 themes/rainglow--brave.yaml create mode 100644 themes/rainglow--carbonight-contrast.yaml create mode 100644 themes/rainglow--carbonight-light.yaml create mode 100644 themes/rainglow--carbonight.yaml create mode 100644 themes/rainglow--chocolate-contrast.yaml create mode 100644 themes/rainglow--chocolate-light.yaml create mode 100644 themes/rainglow--chocolate.yaml create mode 100644 themes/rainglow--codecourse-contrast.yaml create mode 100644 themes/rainglow--codecourse-light.yaml create mode 100644 themes/rainglow--codecourse.yaml create mode 100644 themes/rainglow--coffee-contrast.yaml create mode 100644 themes/rainglow--coffee-light.yaml create mode 100644 themes/rainglow--coffee.yaml create mode 100644 themes/rainglow--comrade-contrast.yaml create mode 100644 themes/rainglow--comrade-light.yaml create mode 100644 themes/rainglow--comrade.yaml create mode 100644 themes/rainglow--crackpot-contrast.yaml create mode 100644 themes/rainglow--crackpot-light.yaml create mode 100644 themes/rainglow--crackpot.yaml create mode 100644 themes/rainglow--crisp-contrast.yaml create mode 100644 themes/rainglow--crisp-light.yaml create mode 100644 themes/rainglow--crisp.yaml create mode 100644 themes/rainglow--dare-contrast.yaml create mode 100644 themes/rainglow--dare-light.yaml create mode 100644 themes/rainglow--dare.yaml create mode 100644 themes/rainglow--darkside-contrast.yaml create mode 100644 themes/rainglow--darkside-light.yaml create mode 100644 themes/rainglow--darkside.yaml create mode 100644 themes/rainglow--downpour-contrast.yaml create mode 100644 themes/rainglow--downpour-light.yaml create mode 100644 themes/rainglow--downpour.yaml create mode 100644 themes/rainglow--earthsong-contrast.yaml create mode 100644 themes/rainglow--earthsong-light.yaml create mode 100644 themes/rainglow--earthsong.yaml create mode 100644 themes/rainglow--fodder-contrast.yaml create mode 100644 themes/rainglow--fodder-light.yaml create mode 100644 themes/rainglow--fodder.yaml create mode 100644 themes/rainglow--frantic-contrast.yaml create mode 100644 themes/rainglow--frantic-light.yaml create mode 100644 themes/rainglow--frantic.yaml create mode 100644 themes/rainglow--freshcut-contrast.yaml create mode 100644 themes/rainglow--freshcut-light.yaml create mode 100644 themes/rainglow--freshcut.yaml create mode 100644 themes/rainglow--friction-contrast.yaml create mode 100644 themes/rainglow--friction-light.yaml create mode 100644 themes/rainglow--friction.yaml create mode 100644 themes/rainglow--frontier-contrast.yaml create mode 100644 themes/rainglow--frontier-light.yaml create mode 100644 themes/rainglow--frontier.yaml create mode 100644 themes/rainglow--github-contrast.yaml create mode 100644 themes/rainglow--github-light.yaml create mode 100644 themes/rainglow--github.yaml create mode 100644 themes/rainglow--glance-contrast.yaml create mode 100644 themes/rainglow--glance-light.yaml create mode 100644 themes/rainglow--glance.yaml create mode 100644 themes/rainglow--gloom-contrast.yaml create mode 100644 themes/rainglow--gloom-light.yaml create mode 100644 themes/rainglow--gloom.yaml create mode 100644 themes/rainglow--glowfish-contrast.yaml create mode 100644 themes/rainglow--glowfish-light.yaml create mode 100644 themes/rainglow--glowfish.yaml create mode 100644 themes/rainglow--goldfish-contrast.yaml create mode 100644 themes/rainglow--goldfish-light.yaml create mode 100644 themes/rainglow--goldfish.yaml create mode 100644 themes/rainglow--grunge-contrast.yaml create mode 100644 themes/rainglow--grunge-light.yaml create mode 100644 themes/rainglow--grunge.yaml create mode 100644 themes/rainglow--halflife-contrast.yaml create mode 100644 themes/rainglow--halflife-light.yaml create mode 100644 themes/rainglow--halflife.yaml create mode 100644 themes/rainglow--hawaii-contrast.yaml create mode 100644 themes/rainglow--hawaii-light.yaml create mode 100644 themes/rainglow--hawaii.yaml create mode 100644 themes/rainglow--heroku-contrast.yaml create mode 100644 themes/rainglow--heroku-light.yaml create mode 100644 themes/rainglow--heroku.yaml create mode 100644 themes/rainglow--hive-contrast.yaml create mode 100644 themes/rainglow--hive-light.yaml create mode 100644 themes/rainglow--hive.yaml create mode 100644 themes/rainglow--horizon-contrast.yaml create mode 100644 themes/rainglow--horizon-light.yaml create mode 100644 themes/rainglow--horizon.yaml create mode 100644 themes/rainglow--hub-contrast.yaml create mode 100644 themes/rainglow--hub-light.yaml create mode 100644 themes/rainglow--hub.yaml create mode 100644 themes/rainglow--hyrule-contrast.yaml create mode 100644 themes/rainglow--hyrule-light.yaml create mode 100644 themes/rainglow--hyrule.yaml create mode 100644 themes/rainglow--iceberg-contrast.yaml create mode 100644 themes/rainglow--iceberg-light.yaml create mode 100644 themes/rainglow--iceberg.yaml create mode 100644 themes/rainglow--isotope-contrast.yaml create mode 100644 themes/rainglow--isotope-light.yaml create mode 100644 themes/rainglow--isotope.yaml create mode 100644 themes/rainglow--jewel-contrast.yaml create mode 100644 themes/rainglow--jewel-light.yaml create mode 100644 themes/rainglow--jewel.yaml create mode 100644 themes/rainglow--jingle-contrast.yaml create mode 100644 themes/rainglow--jingle-light.yaml create mode 100644 themes/rainglow--jingle.yaml create mode 100644 themes/rainglow--joker-contrast.yaml create mode 100644 themes/rainglow--joker-light.yaml create mode 100644 themes/rainglow--joker.yaml create mode 100644 themes/rainglow--juicy-contrast.yaml create mode 100644 themes/rainglow--juicy-light.yaml create mode 100644 themes/rainglow--juicy.yaml create mode 100644 themes/rainglow--jumper-contrast.yaml create mode 100644 themes/rainglow--jumper-light.yaml create mode 100644 themes/rainglow--jumper.yaml create mode 100644 themes/rainglow--keen-contrast.yaml create mode 100644 themes/rainglow--keen-light.yaml create mode 100644 themes/rainglow--keen.yaml create mode 100644 themes/rainglow--kiwi-contrast.yaml create mode 100644 themes/rainglow--kiwi-light.yaml create mode 100644 themes/rainglow--kiwi.yaml create mode 100644 themes/rainglow--laracasts-contrast.yaml create mode 100644 themes/rainglow--laracasts-light.yaml create mode 100644 themes/rainglow--laracasts.yaml create mode 100644 themes/rainglow--laravel-contrast.yaml create mode 100644 themes/rainglow--laravel-light.yaml create mode 100644 themes/rainglow--laravel.yaml create mode 100644 themes/rainglow--lavender-contrast.yaml create mode 100644 themes/rainglow--lavender-light.yaml create mode 100644 themes/rainglow--lavender.yaml create mode 100644 themes/rainglow--legacy-contrast.yaml create mode 100644 themes/rainglow--legacy-light.yaml create mode 100644 themes/rainglow--legacy.yaml create mode 100644 themes/rainglow--lichen-contrast.yaml create mode 100644 themes/rainglow--lichen-light.yaml create mode 100644 themes/rainglow--lichen.yaml create mode 100644 themes/rainglow--loyal-contrast.yaml create mode 100644 themes/rainglow--loyal-light.yaml create mode 100644 themes/rainglow--loyal.yaml create mode 100644 themes/rainglow--mauve-contrast.yaml create mode 100644 themes/rainglow--mauve-light.yaml create mode 100644 themes/rainglow--mauve.yaml create mode 100644 themes/rainglow--mellow-contrast.yaml create mode 100644 themes/rainglow--mellow-light.yaml create mode 100644 themes/rainglow--mellow.yaml create mode 100644 themes/rainglow--mintchoc-contrast.yaml create mode 100644 themes/rainglow--mintchoc-light.yaml create mode 100644 themes/rainglow--mintchoc.yaml create mode 100644 themes/rainglow--monzo-contrast.yaml create mode 100644 themes/rainglow--monzo-light.yaml create mode 100644 themes/rainglow--monzo.yaml create mode 100644 themes/rainglow--morass-contrast.yaml create mode 100644 themes/rainglow--morass-light.yaml create mode 100644 themes/rainglow--morass.yaml create mode 100644 themes/rainglow--mud-contrast.yaml create mode 100644 themes/rainglow--mud-light.yaml create mode 100644 themes/rainglow--mud.yaml create mode 100644 themes/rainglow--newton-contrast.yaml create mode 100644 themes/rainglow--newton-light.yaml create mode 100644 themes/rainglow--newton.yaml create mode 100644 themes/rainglow--otakon-contrast.yaml create mode 100644 themes/rainglow--otakon-light.yaml create mode 100644 themes/rainglow--otakon.yaml create mode 100644 themes/rainglow--overflow-contrast.yaml create mode 100644 themes/rainglow--overflow-light.yaml create mode 100644 themes/rainglow--overflow.yaml create mode 100644 themes/rainglow--pastel-contrast.yaml create mode 100644 themes/rainglow--pastel-light.yaml create mode 100644 themes/rainglow--pastel.yaml create mode 100644 themes/rainglow--patriot-contrast.yaml create mode 100644 themes/rainglow--patriot-light.yaml create mode 100644 themes/rainglow--patriot.yaml create mode 100644 themes/rainglow--peacock-contrast.yaml create mode 100644 themes/rainglow--peacock-light.yaml create mode 100644 themes/rainglow--peacock.yaml create mode 100644 themes/rainglow--peacocks-in-space-contrast.yaml create mode 100644 themes/rainglow--peacocks-in-space-light.yaml create mode 100644 themes/rainglow--peacocks-in-space.yaml create mode 100644 themes/rainglow--peel-contrast.yaml create mode 100644 themes/rainglow--peel-light.yaml create mode 100644 themes/rainglow--peel.yaml create mode 100644 themes/rainglow--penitent-contrast.yaml create mode 100644 themes/rainglow--penitent-light.yaml create mode 100644 themes/rainglow--penitent.yaml create mode 100644 themes/rainglow--piggy-contrast.yaml create mode 100644 themes/rainglow--piggy-light.yaml create mode 100644 themes/rainglow--piggy.yaml create mode 100644 themes/rainglow--pleasure-contrast.yaml create mode 100644 themes/rainglow--pleasure-light.yaml create mode 100644 themes/rainglow--pleasure.yaml create mode 100644 themes/rainglow--potpourri-contrast.yaml create mode 100644 themes/rainglow--potpourri-light.yaml create mode 100644 themes/rainglow--potpourri.yaml create mode 100644 themes/rainglow--prime-contrast.yaml create mode 100644 themes/rainglow--prime-light.yaml create mode 100644 themes/rainglow--prime.yaml create mode 100644 themes/rainglow--rainbow-contrast.yaml create mode 100644 themes/rainglow--rainbow-light.yaml create mode 100644 themes/rainglow--rainbow.yaml create mode 100644 themes/rainglow--rebellion-contrast.yaml create mode 100644 themes/rainglow--rebellion-light.yaml create mode 100644 themes/rainglow--rebellion.yaml create mode 100644 themes/rainglow--revelation-contrast.yaml create mode 100644 themes/rainglow--revelation-light.yaml create mode 100644 themes/rainglow--revelation.yaml create mode 100644 themes/rainglow--scorch-contrast.yaml create mode 100644 themes/rainglow--scorch-light.yaml create mode 100644 themes/rainglow--scorch.yaml create mode 100644 themes/rainglow--service-contrast.yaml create mode 100644 themes/rainglow--service-light.yaml create mode 100644 themes/rainglow--service.yaml create mode 100644 themes/rainglow--shrek-contrast.yaml create mode 100644 themes/rainglow--shrek-light.yaml create mode 100644 themes/rainglow--shrek.yaml create mode 100644 themes/rainglow--slate-contrast.yaml create mode 100644 themes/rainglow--slate-light.yaml create mode 100644 themes/rainglow--slate.yaml create mode 100644 themes/rainglow--slime-contrast.yaml create mode 100644 themes/rainglow--slime-light.yaml create mode 100644 themes/rainglow--slime.yaml create mode 100644 themes/rainglow--snappy-contrast.yaml create mode 100644 themes/rainglow--snappy-light.yaml create mode 100644 themes/rainglow--snappy.yaml create mode 100644 themes/rainglow--solarflare-contrast.yaml create mode 100644 themes/rainglow--solarflare-light.yaml create mode 100644 themes/rainglow--solarflare.yaml create mode 100644 themes/rainglow--soup-contrast.yaml create mode 100644 themes/rainglow--soup-light.yaml create mode 100644 themes/rainglow--soup.yaml create mode 100644 themes/rainglow--sourlick-contrast.yaml create mode 100644 themes/rainglow--sourlick-light.yaml create mode 100644 themes/rainglow--sourlick.yaml create mode 100644 themes/rainglow--spearmint-contrast.yaml create mode 100644 themes/rainglow--spearmint-light.yaml create mode 100644 themes/rainglow--spearmint.yaml create mode 100644 themes/rainglow--spitfire-contrast.yaml create mode 100644 themes/rainglow--spitfire-light.yaml create mode 100644 themes/rainglow--spitfire.yaml create mode 100644 themes/rainglow--stark-contrast.yaml create mode 100644 themes/rainglow--stark-light.yaml create mode 100644 themes/rainglow--stark.yaml create mode 100644 themes/rainglow--stasis-contrast.yaml create mode 100644 themes/rainglow--stasis-light.yaml create mode 100644 themes/rainglow--stasis.yaml create mode 100644 themes/rainglow--stealth-contrast.yaml create mode 100644 themes/rainglow--stealth-light.yaml create mode 100644 themes/rainglow--stealth.yaml create mode 100644 themes/rainglow--storm-contrast.yaml create mode 100644 themes/rainglow--storm-light.yaml create mode 100644 themes/rainglow--storm.yaml create mode 100644 themes/rainglow--super-contrast.yaml create mode 100644 themes/rainglow--super-light.yaml create mode 100644 themes/rainglow--super.yaml create mode 100644 themes/rainglow--tame-contrast.yaml create mode 100644 themes/rainglow--tame-light.yaml create mode 100644 themes/rainglow--tame.yaml create mode 100644 themes/rainglow--tetra-contrast.yaml create mode 100644 themes/rainglow--tetra-light.yaml create mode 100644 themes/rainglow--tetra.yaml create mode 100644 themes/rainglow--tickle-contrast.yaml create mode 100644 themes/rainglow--tickle-light.yaml create mode 100644 themes/rainglow--tickle.yaml create mode 100644 themes/rainglow--tonic-contrast.yaml create mode 100644 themes/rainglow--tonic-light.yaml create mode 100644 themes/rainglow--tonic.yaml create mode 100644 themes/rainglow--tribal-contrast.yaml create mode 100644 themes/rainglow--tribal-light.yaml create mode 100644 themes/rainglow--tribal.yaml create mode 100644 themes/rainglow--tron-contrast.yaml create mode 100644 themes/rainglow--tron-light.yaml create mode 100644 themes/rainglow--tron.yaml create mode 100644 themes/rainglow--turnip-contrast.yaml create mode 100644 themes/rainglow--turnip-light.yaml create mode 100644 themes/rainglow--turnip.yaml create mode 100644 themes/rainglow--tweed-contrast.yaml create mode 100644 themes/rainglow--tweed-light.yaml create mode 100644 themes/rainglow--tweed.yaml create mode 100644 themes/rainglow--userscape-contrast.yaml create mode 100644 themes/rainglow--userscape-light.yaml create mode 100644 themes/rainglow--userscape.yaml create mode 100644 themes/rainglow--vegetable-contrast.yaml create mode 100644 themes/rainglow--vegetable-light.yaml create mode 100644 themes/rainglow--vegetable.yaml create mode 100644 themes/rainglow--violaceous-contrast.yaml create mode 100644 themes/rainglow--violaceous-light.yaml create mode 100644 themes/rainglow--violaceous.yaml create mode 100644 themes/rainglow--vision-colorblind.yaml create mode 100644 themes/rainglow--vision-light-colorblind.yaml create mode 100644 themes/rainglow--volatile-contrast.yaml create mode 100644 themes/rainglow--volatile-light.yaml create mode 100644 themes/rainglow--volatile.yaml create mode 100644 themes/rainglow--warlock-contrast.yaml create mode 100644 themes/rainglow--warlock-light.yaml create mode 100644 themes/rainglow--warlock.yaml create mode 100644 themes/rainglow--waste-contrast.yaml create mode 100644 themes/rainglow--waste-light.yaml create mode 100644 themes/rainglow--waste.yaml create mode 100644 themes/rainglow--yitzchok-contrast.yaml create mode 100644 themes/rainglow--yitzchok-light.yaml create mode 100644 themes/rainglow--yitzchok.yaml create mode 100644 themes/rainglow--yule-contrast.yaml create mode 100644 themes/rainglow--yule-light.yaml create mode 100644 themes/rainglow--yule.yaml create mode 100644 themes/rainglow--zacks-contrast.yaml create mode 100644 themes/rainglow--zacks-light.yaml create mode 100644 themes/rainglow--zacks.yaml create mode 100644 themes/raisin.yaml create mode 100644 themes/raiyanplanet-theme--raiyanplanet-dark-knight.yaml create mode 100644 themes/raiyanplanet-theme--raiyanplanet-darkest.yaml create mode 100644 themes/raiyanplanet-theme--raiyanplanet-purple-world.yaml create mode 100644 themes/ramazzotti.yaml create mode 100644 themes/ramos-theme.yaml create mode 100644 themes/ramuda-pink-theme.yaml create mode 100644 themes/random.yaml create mode 100644 themes/ravora-tema.yaml create mode 100644 themes/rawqdark--untitled.yaml create mode 100644 themes/rb-s-robotic.yaml create mode 100644 themes/re-theme--re-dark.yaml create mode 100644 themes/re-theme.yaml create mode 100644 themes/react-theme-m.yaml create mode 100644 themes/reactlyfi-discord-js.yaml create mode 100644 themes/red-group-s-themes.yaml create mode 100644 themes/red-riptide-theme-dark--dark.yaml create mode 100644 themes/red-riptide-theme-dark--gray.yaml create mode 100644 themes/red-vintage-theme.yaml create mode 100644 themes/reddit-dark-theme-unofficial.yaml create mode 100644 themes/reddragons.yaml create mode 100644 themes/reduc-c-dracula-theme--c-dracula.yaml create mode 100644 themes/relaxed-theme-semantic-focus--relaxed-theme-dark-focus.yaml create mode 100644 themes/relaxed-theme-semantic-focus--relaxed-theme-day-light.yaml create mode 100644 themes/relaxed-theme-semantic-focus--relaxed-theme-night-warm.yaml create mode 100644 themes/relaxed.yaml create mode 100644 themes/remedy-remedy-bright-tilted.yaml create mode 100644 themes/remedy-remedy-dark-tilted.yaml create mode 100644 themes/repl-it-theme.yaml create mode 100644 themes/resknow.yaml create mode 100644 themes/retro-green-theme.yaml create mode 100644 themes/retro-hacker-theme--retro-hacker-amber.yaml create mode 100644 themes/retro-hacker-theme--retro-hacker-blue.yaml create mode 100644 themes/retro-hacker-theme--retro-hacker-green-subtle.yaml create mode 100644 themes/retro-hacker-theme--retro-hacker-green.yaml create mode 100644 themes/retro-hacker-theme--retro-hacker-magenta.yaml create mode 100644 themes/retro-keyboard-theme--retro-keyboard-dark.yaml create mode 100644 themes/retro-keyboard-theme--retro-keyboard-light.yaml create mode 100644 themes/retrocoders-dark-theme.yaml create mode 100644 themes/retronica--retronica-amber-terminal.yaml create mode 100644 themes/retronica--retronica-neon-nights.yaml create mode 100644 themes/retronica--retronica-pastel-arcade.yaml create mode 100644 themes/retronica--retronica-phosphor-green.yaml create mode 100644 themes/retronica--retronica-vintage-computing.yaml create mode 100644 themes/retrowave.yaml create mode 100644 themes/reui--reui-ii-dark.yaml create mode 100644 themes/reui--reui-mirage.yaml create mode 100644 themes/reui--reui.yaml create mode 100644 themes/rhapsody-theme--dark.yaml create mode 100644 themes/rik.yaml create mode 100644 themes/rito-dark-italic.yaml create mode 100644 themes/rmondesilva.yaml create mode 100644 themes/robot-framework-pro.yaml create mode 100644 themes/rock-dark.yaml create mode 100644 themes/rog-theme-v1-dark.yaml create mode 100644 themes/ronin--ronin-darker.yaml create mode 100644 themes/ronin--ronin.yaml create mode 100644 themes/root-dark-mode-theme.yaml create mode 100644 themes/ros-pine--ros-pine-dawn.yaml create mode 100644 themes/ros-pine--ros-pine-moon.yaml create mode 100644 themes/ros-pine--ros-pine.yaml create mode 100644 themes/ros-pine-burnt.yaml create mode 100644 themes/rose-pine-nvchad-vscode-theme.yaml create mode 100644 themes/roselia-theme--roselia.yaml create mode 100644 themes/rouge-theme--rouge.yaml create mode 100644 themes/roxotema.yaml create mode 100644 themes/runic-theme--runic-minimal.yaml create mode 100644 themes/ryuk-stheme.yaml create mode 100644 themes/safira-theme.yaml create mode 100644 themes/saga-theme--saga-nordic-v1-2.yaml create mode 100644 themes/saga-theme--saga-oceania-v1-2.yaml create mode 100644 themes/sage-of-light-theme.yaml create mode 100644 themes/sakura-blossom.yaml create mode 100644 themes/sakura-sun.yaml create mode 100644 themes/sakura-x--kuro-sakura.yaml create mode 100644 themes/sakura-x--shiro-sakura-light.yaml create mode 100644 themes/sakya-theme.yaml create mode 100644 themes/samito-nest-theme-vscode.yaml create mode 100644 themes/samurai--samurai.yaml create mode 100644 themes/sandcastle-theme.yaml create mode 100644 themes/satoru-gojo-theme--satoru-gojo-blue.yaml create mode 100644 themes/satoru-gojo-theme--satoru-gojo-white.yaml create mode 100644 themes/saturn-darkblue.yaml create mode 100644 themes/scy-theme.yaml create mode 100644 themes/sd-deep-purple-theme.yaml create mode 100644 themes/sea-glass-theme.yaml create mode 100644 themes/seabird.yaml create mode 100644 themes/secretspring.yaml create mode 100644 themes/semantic-noctis--semantic-noctis-lux.yaml create mode 100644 themes/senbonzakura.yaml create mode 100644 themes/senna-theme.yaml create mode 100644 themes/sequoia--sequoia-monochrome.yaml create mode 100644 themes/sequoia--sequoia-moonlight.yaml create mode 100644 themes/sequoia--sequoia-retro.yaml create mode 100644 themes/serendipity--serendipity-midnight-electric.yaml create mode 100644 themes/serendipity--serendipity-midnight.yaml create mode 100644 themes/serendipity--serendipity-morning.yaml create mode 100644 themes/serendipity--serendipity-sunset.yaml create mode 100644 themes/serendipity-v1--serendipity-midnight-v1.yaml create mode 100644 themes/serendipity-v1--serendipity-morning-v1.yaml create mode 100644 themes/serendipity-v1--serendipity-sunset-v1.yaml create mode 100644 themes/set.yaml create mode 100644 themes/seti-ux.yaml create mode 100644 themes/sevastolink.yaml create mode 100644 themes/shades--24.yaml create mode 100644 themes/shades--minimal.yaml create mode 100644 themes/shades--neutral.yaml create mode 100644 themes/shades--shades.yaml create mode 100644 themes/shades-of-green.yaml create mode 100644 themes/shades-of-life--shades-of-life.yaml create mode 100644 themes/shades-of-life-shades-of-life-light.yaml create mode 100644 themes/shades-of-stoicism--shades.yaml create mode 100644 themes/shadowborn-theme-for-vscode.yaml create mode 100644 themes/shadowdev.yaml create mode 100644 themes/shale-theme--nord.yaml create mode 100644 themes/shark-artist-great-white-theme-great-white-bloodloss.yaml create mode 100644 themes/shark-artist-great-white-theme-great-white-dark.yaml create mode 100644 themes/shark-artist-great-white-theme-great-white-frost.yaml create mode 100644 themes/shark-artist-great-white-theme-great-white-high-contrast-dark.yaml create mode 100644 themes/shark-artist-great-white-theme-great-white-high-contrast-light.yaml create mode 100644 themes/shark-artist-great-white-theme-great-white-light.yaml create mode 100644 themes/shark-artist-great-white-theme-great-white-storm.yaml create mode 100644 themes/sharkdark.yaml create mode 100644 themes/ship-ai--ship-dark.yaml create mode 100644 themes/ship-ai--ship-light.yaml create mode 100644 themes/ship-at-sea.yaml create mode 100644 themes/shiva.yaml create mode 100644 themes/shrekk.yaml create mode 100644 themes/silent-code-dark.yaml create mode 100644 themes/simen-theme--word-color-theme.yaml create mode 100644 themes/simple-theme--simple-theme.yaml create mode 100644 themes/sirius-themes--sirius-astral.yaml create mode 100644 themes/sirius-themes--sirius-glow.yaml create mode 100644 themes/sirius-themes--sirius-nebula.yaml create mode 100644 themes/sirius-themes--sirius-pulsar.yaml create mode 100644 themes/sirius-themes--sirius-vesper.yaml create mode 100644 themes/sirius-themes--sirius-vibe.yaml create mode 100644 themes/sirius-themes--sirius-vortex.yaml create mode 100644 themes/sirius-themes--sirius-zenith.yaml create mode 100644 themes/sk5s-vs-green-theme.yaml create mode 100644 themes/skill--s-kill.yaml create mode 100644 themes/slab-theme--2077.yaml create mode 100644 themes/slab-theme--firefly.yaml create mode 100644 themes/slab-theme--green-hacker.yaml create mode 100644 themes/slab-theme--karma.yaml create mode 100644 themes/slab-theme--mars.yaml create mode 100644 themes/slab-theme--material-theme-darker-high-contrast.yaml create mode 100644 themes/slab-theme--material-theme-darker.yaml create mode 100644 themes/slab-theme--material-theme-deepforest.yaml create mode 100644 themes/slab-theme--material-theme-default.yaml create mode 100644 themes/slab-theme--material-theme-lighter-high-contrast.yaml create mode 100644 themes/slab-theme--material-theme-lighter.yaml create mode 100644 themes/slab-theme--material-theme-ocean.yaml create mode 100644 themes/slab-theme--material-theme-palenight.yaml create mode 100644 themes/slab-theme--midnight-pastel.yaml create mode 100644 themes/slab-theme--monokai-unified.yaml create mode 100644 themes/slab-theme--moonlight-ii.yaml create mode 100644 themes/slab-theme--moonlight.yaml create mode 100644 themes/slab-theme--p-yesterday.yaml create mode 100644 themes/slab-theme-special-edition--dracula.yaml create mode 100644 themes/slack-theme--slack-theme-aubergine-dark.yaml create mode 100644 themes/slack-theme--slack-theme-aubergine-new.yaml create mode 100644 themes/slack-theme--slack-theme-dark.yaml create mode 100644 themes/slack-theme--slack-theme-hoth.yaml create mode 100644 themes/slack-theme--slack-theme.yaml create mode 100644 themes/slateblues.yaml create mode 100644 themes/slime-solid-theme.yaml create mode 100644 themes/slime-theme.yaml create mode 100644 themes/slumbersage.yaml create mode 100644 themes/smooth-theme-smooth-dark.yaml create mode 100644 themes/smooth-theme-smooth-light.yaml create mode 100644 themes/smoothburn--smooth-burn-dark-hard.yaml create mode 100644 themes/smoothburn--smooth-burn-dark-medium.yaml create mode 100644 themes/smoothburn--smooth-burn-dark.yaml create mode 100644 themes/smoothburn--smooth-burn-light-hard.yaml create mode 100644 themes/snazzy-operator-softer.yaml create mode 100644 themes/snazzy-operator.yaml create mode 100644 themes/snazzy-plus.yaml create mode 100644 themes/snowflake-dark-theme--snowflake-dark-theme.yaml create mode 100644 themes/snowflake-dark-theme--snowflake-darker-theme.yaml create mode 100644 themes/sobertheme--sober.yaml create mode 100644 themes/sobrio--sobrio-light.yaml create mode 100644 themes/sobrio--sobrio.yaml create mode 100644 themes/soct.yaml create mode 100644 themes/soft-color-theme--soft-dark.yaml create mode 100644 themes/soft-color-theme--soft-light.yaml create mode 100644 themes/soft-in-black.yaml create mode 100644 themes/soft-kawaii-theme.yaml create mode 100644 themes/softdark.yaml create mode 100644 themes/soho-theme.yaml create mode 100644 themes/solar-right-theme.yaml create mode 100644 themes/solara.yaml create mode 100644 themes/solarized-light-enhanced.yaml create mode 100644 themes/solarized-monokai--dark.yaml create mode 100644 themes/solarized-neue-yuki--solarized-lilac.yaml create mode 100644 themes/solarized-neue-yuki--solarized-neue-bright.yaml create mode 100644 themes/solarized-neue-yuki--solarized-neue.yaml create mode 100644 themes/solarized-neue-yuki--solarized-yuki.yaml create mode 100644 themes/solarized-selenized--helios-solarized-dark.yaml create mode 100644 themes/solarized-selenized--helios-solarized-light.yaml create mode 100644 themes/solarized-selenized--selene-selenized-dark.yaml create mode 100644 themes/solarized-selenized--selene-selenized-light.yaml create mode 100644 themes/solitude-color-theme--solitude-dark.yaml create mode 100644 themes/solitude-color-theme--solitude-soft.yaml create mode 100644 themes/solo-leveling-theme.yaml create mode 100644 themes/sonokai--sonokai-andromeda.yaml create mode 100644 themes/sonokai--sonokai-atlantis.yaml create mode 100644 themes/sonokai--sonokai-espresso.yaml create mode 100644 themes/sonokai--sonokai-maia.yaml create mode 100644 themes/sonokai--sonokai-shusia.yaml create mode 100644 themes/sonokai--sonokai.yaml create mode 100644 themes/soudev-theme--soudev-mega-dark.yaml create mode 100644 themes/soudev-theme--soudev-purple-andromeda.yaml create mode 100644 themes/soudev-theme--soudev-semi-dark-andromeda.yaml create mode 100644 themes/space-ocean-kit-refined.yaml create mode 100644 themes/space-purple--space-purple-dark.yaml create mode 100644 themes/space-purple--space-purple-light.yaml create mode 100644 themes/space-wars-theme--darth-insidious.yaml create mode 100644 themes/space-wars-theme--darth-invader.yaml create mode 100644 themes/space-wars-theme--luke-skywriter.yaml create mode 100644 themes/space-wars-theme--storm-tracker.yaml create mode 100644 themes/space-wars-theme--yoda-mystical-force.yaml create mode 100644 themes/spacemacs--spacemacs-dark.yaml create mode 100644 themes/spacemacs--spacemacs-light.yaml create mode 100644 themes/sparkle--sparkle-theme.yaml create mode 100644 themes/spiderverse-theme--spiderverse-2099.yaml create mode 100644 themes/spiderverse-theme--spiderverse-miles.yaml create mode 100644 themes/spiderverse-theme--spiderverse-spider-man.yaml create mode 100644 themes/sprinkle-pack--azure-noir.yaml create mode 100644 themes/sprinkle-pack--chatgpt-theme.yaml create mode 100644 themes/sprinkle-pack--darker-than-black.yaml create mode 100644 themes/sprinkle-pack--elf-dream.yaml create mode 100644 themes/sprinkle-pack--ice.yaml create mode 100644 themes/sprinkle-pack--lofi.yaml create mode 100644 themes/sprinkle-pack--magnolia.yaml create mode 100644 themes/sprinkle-pack--pine-forest.yaml create mode 100644 themes/sprinkle-pack--sweet-lemon.yaml create mode 100644 themes/spyder-theme.yaml create mode 100644 themes/srcery--official-port.yaml create mode 100644 themes/stackmeister-theme.yaml create mode 100644 themes/star-trek-factions-theme-pack--st-borg.yaml create mode 100644 themes/star-trek-factions-theme-pack--st-lcars.yaml create mode 100644 themes/star-wars-planets-theme-pack.yaml create mode 100644 themes/stellar-galaxy.yaml create mode 100644 themes/sto-theme--sto-classic.yaml create mode 100644 themes/sto-theme--sto-green-dark.yaml create mode 100644 themes/sto-theme--sto-green.yaml create mode 100644 themes/strawberry-theme--raspberry-theme.yaml create mode 100644 themes/styldev.yaml create mode 100644 themes/stypt.yaml create mode 100644 themes/sublime-ish.yaml create mode 100644 themes/sugar-theme--sugar-dark-focus.yaml create mode 100644 themes/sugar-theme--sugar-dark-github.yaml create mode 100644 themes/sugar-theme--sugar-dark-midnight.yaml create mode 100644 themes/sugar-theme--sugar-dark-one.yaml create mode 100644 themes/sugar-theme--sugar-dark-vitesse.yaml create mode 100644 themes/sugar-theme--sugar-dark-vs.yaml create mode 100644 themes/sugar-theme--sugar-dark.yaml create mode 100644 themes/sugar-theme--sugar-fleet.yaml create mode 100644 themes/sugar-theme--sugar-light-vitesse.yaml create mode 100644 themes/sugar-theme--sugar-light-vs.yaml create mode 100644 themes/sugar-theme--sugar-light.yaml create mode 100644 themes/summer-night-theme--summer-night-gray-high-contrast.yaml create mode 100644 themes/summer-night-theme--summer-night-high-contrast.yaml create mode 100644 themes/summer-night-theme--summer-night.yaml create mode 100644 themes/super-theme.yaml create mode 100644 themes/supernova-theme.yaml create mode 100644 themes/sweet-code-color-theme.yaml create mode 100644 themes/sweet-dracula-monokai.yaml create mode 100644 themes/sweetwood--vim-dark-hard.yaml create mode 100644 themes/syntax-palette-a-color-theme-for-code-creators.yaml create mode 100644 themes/synthor-dark-theme.yaml create mode 100644 themes/szn.yaml create mode 100644 themes/t3chdad-darkside.yaml create mode 100644 themes/t3nsor.yaml create mode 100644 themes/tahiti--retro.yaml create mode 100644 themes/taiga-theme--taiga.yaml create mode 100644 themes/tail-theme.yaml create mode 100644 themes/tailwind-catalyst-theme--catalyst-light.yaml create mode 100644 themes/tailwind-catalyst-theme--catalyst.yaml create mode 100644 themes/tailwind-colour-themes--tailwind-moon-blue.yaml create mode 100644 themes/tailwind-colour-themes--tailwind-moon-grey.yaml create mode 100644 themes/tailwind-colour-themes--tailwind-moon.yaml create mode 100644 themes/tailwind-theme--tailwind-dark.yaml create mode 100644 themes/tailwind-theme--tailwind-darkest.yaml create mode 100644 themes/tardezinha.yaml create mode 100644 themes/tasmania--tasmania-dark.yaml create mode 100644 themes/tasmania--tasmania-light.yaml create mode 100644 themes/tears-of-the-kingdom-theme--tears-of-the-kingdom-minimal-dark.yaml create mode 100644 themes/tears-of-the-kingdom-theme-tears-of-the-kingdom-minimal-dark-midnight.yaml create mode 100644 themes/telescope-theme.yaml create mode 100644 themes/tema-flamengo--dark.yaml create mode 100644 themes/terminal-theme--minimal.yaml create mode 100644 themes/terminal-theme--shades.yaml create mode 100644 themes/terminal-theme--terminal.yaml create mode 100644 themes/terrafuture-themes.yaml create mode 100644 themes/terrorbelow.yaml create mode 100644 themes/tesseract.yaml create mode 100644 themes/thanos-theme.yaml create mode 100644 themes/the-best-theme.yaml create mode 100644 themes/the-legendary-blue.yaml create mode 100644 themes/the-matrix.yaml create mode 100644 themes/the-one-theme--the-one-theme.yaml create mode 100644 themes/the-one-theme--untitled.yaml create mode 100644 themes/thea-theme--light-theme.yaml create mode 100644 themes/thea-theme--purple-theme.yaml create mode 100644 themes/thebear.yaml create mode 100644 themes/themarro--themarro-dark-contrast.yaml create mode 100644 themes/themarro--themarro-david-remix.yaml create mode 100644 themes/themarro--themarro.yaml create mode 100644 themes/theme--dark-blue-theme.yaml create mode 100644 themes/theme--dark-brown-theme.yaml create mode 100644 themes/theme--themedarker.yaml create mode 100644 themes/theme-armada.yaml create mode 100644 themes/theme-for-anyone--1.yaml create mode 100644 themes/theme-for-anyone--carbon.yaml create mode 100644 themes/theme-mangayo.yaml create mode 100644 themes/theme-rosario--untitled.yaml create mode 100644 themes/theme-selenitic.yaml create mode 100644 themes/themin.yaml create mode 100644 themes/thorn--thorn.yaml create mode 100644 themes/thzin.yaml create mode 100644 themes/tian-green.yaml create mode 100644 themes/tiger-dark.yaml create mode 100644 themes/time-flow.yaml create mode 100644 themes/to-on-no-codigo.yaml create mode 100644 themes/tokyo-dark-akil-s.yaml create mode 100644 themes/tokyo-light-akil-s.yaml create mode 100644 themes/tokyo-night--tokyo-gogh-alt.yaml create mode 100644 themes/tokyo-night--tokyo-gogh.yaml create mode 100644 themes/tokyo-night--tokyo-night-light.yaml create mode 100644 themes/tokyo-night--tokyo-night-storm.yaml create mode 100644 themes/tokyo-night--tokyo-night.yaml create mode 100644 themes/tokyo-night-fork--tokyo-night-light.yaml create mode 100644 themes/tokyo-night-fork--tokyo-night-storm.yaml create mode 100644 themes/tokyo-night-fork--tokyo-night.yaml create mode 100644 themes/tokyo-night-theme-damask-edition.yaml create mode 100644 themes/toodark-am--one-dark-pro.yaml create mode 100644 themes/topl-theme--alpha.yaml create mode 100644 themes/torte-theme.yaml create mode 100644 themes/totow-s-official-th-me.yaml create mode 100644 themes/touchfish.yaml create mode 100644 themes/toxic.yaml create mode 100644 themes/tragicpale.yaml create mode 100644 themes/transparent-themes-collection.yaml create mode 100644 themes/true-dark-by-gurdish-singh.yaml create mode 100644 themes/tsukiroku.yaml create mode 100644 themes/tsukuyomi--tsukuyomi.yaml create mode 100644 themes/tsukuyomi-tsukuyomi-light.yaml create mode 100644 themes/tsumiki.yaml create mode 100644 themes/ttera-themes--botany.yaml create mode 100644 themes/ttera-themes--cosmic-sea.yaml create mode 100644 themes/ttera-themes--cyberpunk.yaml create mode 100644 themes/ttera-themes--dragon.yaml create mode 100644 themes/ttera-themes--golden-wave.yaml create mode 100644 themes/ttera-themes--gothic-vampire.yaml create mode 100644 themes/ttera-themes--intergalactic.yaml create mode 100644 themes/ttera-themes--jellyfish.yaml create mode 100644 themes/ttera-themes--koi-pond-dark.yaml create mode 100644 themes/ttera-themes--koi-pond-light.yaml create mode 100644 themes/ttera-themes--orca.yaml create mode 100644 themes/ttera-themes--panda-dark.yaml create mode 100644 themes/ttera-themes--sakura.yaml create mode 100644 themes/ttera-themes--sunset-beach-dark.yaml create mode 100644 themes/ttera-themes--sunset-beach-light.yaml create mode 100644 themes/ttera-themes--tora.yaml create mode 100644 themes/ttera-themes--ukiyo-e-aged-manuscript.yaml create mode 100644 themes/turbo-c-3-0-theme.yaml create mode 100644 themes/turnstyle--turnstyle-darker.yaml create mode 100644 themes/turnstyle--turnstyle.yaml create mode 100644 themes/turquesa.yaml create mode 100644 themes/tutilabs.yaml create mode 100644 themes/tyh-theme.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--akari-dawn.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--akari-night.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--blush-pink-enhanced-premium.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--calm-dark.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--calm-light.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--cloudmint-night.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--copper-dark.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--cyberpink-137-theme.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--deep-space-dark.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--emerald-matrix.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--espresso-dark-theme.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--espresso-dark.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--evernex.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nebula-pro-dark.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--neo-hacker-soft-premium.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--neon-dream-code.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nimbus-mint-light.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nothing-os-dark.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nothing-os-gray.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nutty-dark-theme.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nutty-light-theme.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--omnitrix-code.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--rose-paradise.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--solstice-estival.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--solstice-hibernal.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets-ghibli-forest-dark.yaml create mode 100644 themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets-goku-code-dragon-ball-z-power-eye-safe.yaml create mode 100644 themes/ultra-instinct-theme--ultra-instinct-mastered.yaml create mode 100644 themes/ultra-instinct-theme--ultra-instinct-sign.yaml create mode 100644 themes/ultra-instinct-theme-ultra-instinct-mastered-light.yaml create mode 100644 themes/underdark.yaml create mode 100644 themes/unicode-purple-dark-theme.yaml create mode 100644 themes/unicorn-dark-theme.yaml create mode 100644 themes/universe-terkoshi.yaml create mode 100644 themes/unknown.yaml create mode 100644 themes/unlighted.yaml create mode 100644 themes/uno-due-tre.yaml create mode 100644 themes/update.yaml create mode 100644 themes/uscss-nostromo-alien-terminal-theme--alien-terminal-nostromo-amber.yaml create mode 100644 themes/uscss-nostromo-alien-terminal-theme--alien-terminal-nostromo-green.yaml create mode 100644 themes/uscss-nostromo-alien-terminal-theme--alien-terminal-sevastopol-link.yaml create mode 100644 themes/vague-theme--windsurf.yaml create mode 100644 themes/valley--valley.yaml create mode 100644 themes/valorant-theme--valorant-theme-darker.yaml create mode 100644 themes/valorant-theme--valorant-theme-remasterd.yaml create mode 100644 themes/vaporizer-dark-light-themes--crypto.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-alice-dark.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-alice-light.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-ava-light.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-batman-dark-2022.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-batman-dark-night.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-cloudy-light.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-cobalt-dark.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-crescent-dark.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-cherry.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-coffee.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-cool-1.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-cool-2.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-cop.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-1.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-2.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-3.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-ivy.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-joker.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-matrix-2.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-monterey.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-painting.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-pansy.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-red.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-stabilo.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-dark-turquoise.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-epic-red-dark.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-fonc-dark.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-frozen-dark.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-golgi-dark.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-half-moon-dark.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-lemonade-light.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-lemonade-solarized-light.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-milk-light.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-mini-blue-light.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-minimalism-light.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-modern-light.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-moon-light-dark.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-phosphoric-grey.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-purple-gray-dark.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-soft-light.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-splash-dark.yaml create mode 100644 themes/vaporizer-dark-light-themes--vaporizer-turquoise-light.yaml create mode 100644 themes/vaporwave-neon-dreams.yaml create mode 100644 themes/velvet-mango.yaml create mode 100644 themes/vercel-docs-theme--vercel-light.yaml create mode 100644 themes/vercel-docs-theme--vercel.yaml create mode 100644 themes/vercel-vscode-theme.yaml create mode 100644 themes/vesper-lighter.yaml create mode 100644 themes/vesper-purple-ox--vesper-purple-dark.yaml create mode 100644 themes/vesper-purple-ox--vesper-purple-light.yaml create mode 100644 themes/vesper-purple-theme--vesper-purple-dark.yaml create mode 100644 themes/vesper-purple-theme--vesper-purple-light.yaml create mode 100644 themes/vibe.yaml create mode 100644 themes/vibey-theme.yaml create mode 100644 themes/vibrant-abyss.yaml create mode 100644 themes/vicos-theme.yaml create mode 100644 themes/victoria--victoria-dark.yaml create mode 100644 themes/victoria--victoria-light.yaml create mode 100644 themes/vim-theme--vim-dark-hard.yaml create mode 100644 themes/vim-theme--vim-dark-medium.yaml create mode 100644 themes/vim-theme--vim-dark-soft.yaml create mode 100644 themes/vim-theme--vim-light-hard.yaml create mode 100644 themes/vim-theme--vim-light-medium.yaml create mode 100644 themes/vim-theme--vim-light-soft.yaml create mode 100644 themes/vincent-van-gogh-painting-themes--starry-night.yaml create mode 100644 themes/vincent-van-gogh-painting-themes--vase-with-twelve-sunflowers.yaml create mode 100644 themes/vintage-story-theme.yaml create mode 100644 themes/violet-night-theme.yaml create mode 100644 themes/vishwakarma-theme--vishwakarma-sunset-glow.yaml create mode 100644 themes/visual-studio-fleet.yaml create mode 100644 themes/visualassistgruvboxtheme.yaml create mode 100644 themes/vitepress-theme--unofficial.yaml create mode 100644 themes/vitesse-theme--vitesse-black.yaml create mode 100644 themes/vitesse-theme--vitesse-dark-soft.yaml create mode 100644 themes/vitesse-theme--vitesse-dark.yaml create mode 100644 themes/vitesse-theme--vitesse-light-soft.yaml create mode 100644 themes/vitesse-theme--vitesse-light.yaml create mode 100644 themes/vitesse-theme-gray--vitesse-dark.yaml create mode 100644 themes/vitesse-theme-gray--vitesse-light.yaml create mode 100644 themes/vivid-nord.yaml create mode 100644 themes/vkttheme.yaml create mode 100644 themes/vlad-studio-tiniri-theme--tiniri-dark.yaml create mode 100644 themes/vlad-studio-tiniri-theme--tiniri-light.yaml create mode 100644 themes/void-blue.yaml create mode 100644 themes/voltdark.yaml create mode 100644 themes/vs-code-dark-red-theme.yaml create mode 100644 themes/vs-code-dark-theme--black-theme.yaml create mode 100644 themes/vs-code-themes--solarized-dark-theme.yaml create mode 100644 themes/vs-dark-theme.yaml create mode 100644 themes/vs-muted.yaml create mode 100644 themes/vs-snazzy-theme.yaml create mode 100644 themes/vsblue-theme.yaml create mode 100644 themes/vsc-soft-theme.yaml create mode 100644 themes/vscode-crt-ui--crt-amber.yaml create mode 100644 themes/vscode-crt-ui--crt-blue.yaml create mode 100644 themes/vscode-epic-theme.yaml create mode 100644 themes/vscode-nofrils-dark-light--vscode-nofrils-light.yaml create mode 100644 themes/vslook.yaml create mode 100644 themes/vstoolkit.yaml create mode 100644 themes/vxcode-theme--vxcode-blush.yaml create mode 100644 themes/vxcode-theme--vxcode-cream.yaml create mode 100644 themes/vxcode-theme--vxcode-dark.yaml create mode 100644 themes/vxcode-theme--vxcode-darker.yaml create mode 100644 themes/vxcode-theme--vxcode-lavender.yaml create mode 100644 themes/vxcode-theme--vxcode-lime.yaml create mode 100644 themes/vxcode-theme--vxcode-oled.yaml create mode 100644 themes/warm-burnout.yaml create mode 100644 themes/warm.yaml create mode 100644 themes/warmkai.yaml create mode 100644 themes/waterbyte-theme.yaml create mode 100644 themes/wawdog-drak-theme.yaml create mode 100644 themes/webc.yaml create mode 100644 themes/weird-theme.yaml create mode 100644 themes/weiting-s-color.yaml create mode 100644 themes/whatsapp.yaml create mode 100644 themes/whisper.yaml create mode 100644 themes/white-shade--white-shade-color.yaml create mode 100644 themes/white.yaml create mode 100644 themes/whiteboard-theme.yaml create mode 100644 themes/willissantos.yaml create mode 100644 themes/willow-theme.yaml create mode 100644 themes/win-xp.yaml create mode 100644 themes/wind-theme--man-dark-stone.yaml create mode 100644 themes/wind-theme--wind-dark-slate.yaml create mode 100644 themes/wind-theme--wind-dark-zinc.yaml create mode 100644 themes/windows-xp-dark.yaml create mode 100644 themes/winter-theme.yaml create mode 100644 themes/wired--jackhammar.yaml create mode 100644 themes/wired--kali-linux-theme.yaml create mode 100644 themes/wired--wired-lighter.yaml create mode 100644 themes/wired--wired.yaml create mode 100644 themes/wise-owl-material-theme--atom-material-theme.yaml create mode 100644 themes/wise-owl-material-theme--wise-owl-material-high-contrast.yaml create mode 100644 themes/wise-owl-material-theme--wise-owl-material-light.yaml create mode 100644 themes/wise-owl-material-theme--wise-owl-material.yaml create mode 100644 themes/wolves-league-theme.yaml create mode 100644 themes/word.yaml create mode 100644 themes/wordsmith--wordsmith-dark.yaml create mode 100644 themes/wordsmith--wordsmith-light.yaml create mode 100644 themes/wst-theme.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-aemeath.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-augusta.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-baizhi.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-brant.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-cantarella.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-carlotta.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-cartethyia.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-changli.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-chisa.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-galbrena.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-iuno.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-jinhsi.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-lynae.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-mornye.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-roccia.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-rover.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-sanhua.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-scar.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-taoqi.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-the-shorekeeper.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-verina.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-yinlin.yaml create mode 100644 themes/wuthering-waves-color-themes--wuthering-waves-zhezhi.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-aemeath-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-augusta-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-baizhi-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-brant-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-cantarella-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-carlotta-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-cartethyia-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-changli-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-chisa-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-galbrena-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-iuno-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-lynae-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-mornye-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-roccia-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-sanhua-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-scar-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-the-shorekeeper-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-verina-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-yinlin-dark.yaml create mode 100644 themes/wuthering-waves-color-themes-wuthering-waves-zhezhi-dark.yaml create mode 100644 themes/xanpis--xis-one.yaml create mode 100644 themes/xavatheme.yaml create mode 100644 themes/xduppyx-themes--my-dark-theme.yaml create mode 100644 themes/xenoviatheme.yaml create mode 100644 themes/xeon-light.yaml create mode 100644 themes/xotopio-dark.yaml create mode 100644 themes/xresources-theme-plus.yaml create mode 100644 themes/xxhtml-theme--orange.yaml create mode 100644 themes/xxhtml-themes--orange.yaml create mode 100644 themes/xxhtml-themes--xxhtml.yaml create mode 100644 themes/yami.yaml create mode 100644 themes/yaru-vs-code-theme--yaru-dark.yaml create mode 100644 themes/yd-light-theme.yaml create mode 100644 themes/yelan-dark-theme.yaml create mode 100644 themes/yellow-dark-theme.yaml create mode 100644 themes/yet-another-solarized-theme-yet-another-solarized-theme-dark.yaml create mode 100644 themes/yet-another-solarized-theme-yet-another-solarized-theme-light.yaml create mode 100644 themes/yonce.yaml create mode 100644 themes/yorha-theme.yaml create mode 100644 themes/ytheme.yaml create mode 100644 themes/yuuyake.yaml create mode 100644 themes/yuyuko-vim-vsc--yuyuko-vscode-ocean.yaml create mode 100644 themes/yuyuko-vim-vsc--yuyuko-vscode.yaml create mode 100644 themes/zaeri.yaml create mode 100644 themes/zaher.yaml create mode 100644 themes/zednostheme.yaml create mode 100644 themes/zedromeda.yaml create mode 100644 themes/zelda.yaml create mode 100644 themes/zenbones-themes--zenbones-dark.yaml create mode 100644 themes/zenbones-themes--zenbones-light.yaml create mode 100644 themes/zenith-color-theme--zenith-aurora.yaml create mode 100644 themes/zenith-color-theme--zenith-dawn.yaml create mode 100644 themes/zenith-color-theme--zenith-dusk.yaml create mode 100644 themes/zenith-color-theme--zenith-forest.yaml create mode 100644 themes/zenith-color-theme--zenith-midnight.yaml create mode 100644 themes/zenith-color-theme--zenith-ocean.yaml create mode 100644 themes/zenith-color-theme--zenith-ros.yaml create mode 100644 themes/zenith-color-theme--zenith-zen.yaml create mode 100644 themes/zenith-theme--zenith-neutral.yaml create mode 100644 themes/zenith-theme--zenith.yaml create mode 100644 themes/zenith-ui--black-purple.yaml create mode 100644 themes/zenith-ui--deep-purple.yaml create mode 100644 themes/zero.yaml create mode 100644 themes/zeus-theme--zeus-turquoise.yaml create mode 100644 themes/zeus-theme--zeus-yelo.yaml create mode 100644 themes/zh-themes--collapse.yaml create mode 100644 themes/zh-themes--monocr.yaml create mode 100644 themes/zh-themes--zhxo-lt.yaml create mode 100644 themes/zh-themes--zhxo-red.yaml create mode 100644 themes/zh-themes--zhxo-st.yaml create mode 100644 themes/zh-themes--zhxo-yll.yaml create mode 100644 themes/zokugun-themes.yaml create mode 100644 themes/zora-dark-theme--green.yaml create mode 100644 themes/zora-dark-theme--untitled.yaml create mode 100644 themes/zoren-theme.yaml create mode 100644 themes/zunda.yaml create mode 100644 themes/zux.yaml diff --git a/scripts/detect-theme-formats.ts b/scripts/detect-theme-formats.ts new file mode 100644 index 00000000..99b8d394 --- /dev/null +++ b/scripts/detect-theme-formats.ts @@ -0,0 +1,383 @@ +/** + * detect-theme-formats.ts — Scans theme GitHub repos for native format files + * + * For each theme YAML with a GitHub repo URL, fetches the file tree via the + * GitHub API and detects native theme files (iTerm2, Ghostty, Alacritty, etc.). + * Writes pinned raw.githubusercontent.com URLs into source.formats in each YAML. + * + * Usage: + * GITHUB_TOKEN=ghp_xxx bun run scripts/detect-theme-formats.ts + * GITHUB_TOKEN=ghp_xxx bun run scripts/detect-theme-formats.ts --dry-run + * GITHUB_TOKEN=ghp_xxx bun run scripts/detect-theme-formats.ts --limit 200 + * GITHUB_TOKEN=ghp_xxx bun run scripts/detect-theme-formats.ts --resume # skip already scanned + * + * Rate limits: + * Authenticated: 5,000 req/hr (2 calls per repo → ~2,500 repos/hr) + * The script monitors X-RateLimit-* headers and auto-pauses when low. + */ + +import { readdirSync, readFileSync, writeFileSync } from 'node:fs'; +import { join } from 'node:path'; +import { parseThemeYAML, serializeThemeYAML } from '../cli/src/theme-schema'; + +// ── Config ── + +const THEMES_DIR = join(import.meta.dir, '..', 'themes'); +const CONCURRENCY = 8; +const RATELIMIT_PAUSE_THRESHOLD = 20; // pause when remaining < this +const RATELIMIT_BUFFER_MS = 5000; // extra buffer after reset + +// ── CLI args ── + +const args = process.argv.slice(2); +let DRY_RUN = false; +let LIMIT = Infinity; +let RESUME = false; + +for (let i = 0; i < args.length; i++) { + if (args[i] === '--dry-run') DRY_RUN = true; + if (args[i] === '--resume') RESUME = true; + if (args[i] === '--limit' && args[i + 1]) LIMIT = parseInt(args[++i]); +} + +const GITHUB_TOKEN = process.env.GITHUB_TOKEN; +if (!GITHUB_TOKEN) { + console.error('❌ GITHUB_TOKEN env var required. Get one at https://github.com/settings/tokens'); + process.exit(1); +} + +// ── Format pattern definitions ── + +type AppKey = + | 'ghostty' | 'iterm2' | 'alacritty' | 'kitty' | 'windows-terminal' + | 'warp' | 'hyper' | 'xcode' | 'android-studio' | 'vim' | 'nvim' + | 'sublime' | 'zed'; + +const APP_PATTERNS: Record = { + ghostty: [ + /(?:^|[/\\])ghostty[/\\][^/\\]+\.conf$/i, + /(?:^|[/\\])ghostty[/\\][^/\\]+$/i, + ], + iterm2: [ + /\.itermcolors$/i, + ], + alacritty: [ + /(?:^|[/\\])alacritty[/\\][^/\\]+\.(toml|yml|yaml)$/i, + /[^/\\]*alacritty[^/\\]*\.(toml|yml|yaml)$/i, + ], + kitty: [ + /(?:^|[/\\])kitty[/\\][^/\\]+\.conf$/i, + /[^/\\]*\.kitty$/i, + ], + 'windows-terminal': [ + /(?:^|[/\\])(?:windows[_-]?terminal|wt)[/\\][^/\\]+\.json$/i, + /[^/\\]*windows[_-]?terminal[^/\\]*\.json$/i, + ], + warp: [ + /(?:^|[/\\])warp[/\\][^/\\]+\.yaml$/i, + /[^/\\]*\.warp-theme$/i, + ], + hyper: [ + /(?:^|[/\\])hyper[/\\][^/\\]+\.js$/i, + ], + xcode: [ + /\.xccolortheme$/i, + ], + 'android-studio': [ + /\.icls$/i, + /(?:^|[/\\])(?:intellij|android[_-]?studio)[/\\][^/\\]+\.xml$/i, + ], + vim: [ + /(?:^|[/\\])colors[/\\][^/\\]+\.vim$/i, + ], + nvim: [ + /(?:^|[/\\])(?:nvim|neovim)[/\\][^/\\]+\.lua$/i, + /(?:^|[/\\])lua[/\\](?:[^/\\]+[/\\])*[^/\\]+\.lua$/i, + ], + sublime: [ + /\.tmTheme$/i, + /\.sublime-color-scheme$/i, + ], + zed: [ + /(?:^|[/\\])zed[/\\][^/\\]+\.json$/i, + /[^/\\]*zed[^/\\]*\.json$/i, + ], +}; + +function detectFormats(paths: string[]): Record { + const result: Record = {}; + for (const [app, patterns] of Object.entries(APP_PATTERNS) as [AppKey, RegExp[]][]) { + for (const pattern of patterns) { + const match = paths.find(p => pattern.test(p)); + if (match) { + result[app] = match; + break; + } + } + } + return result; +} + +// ── GitHub API ── + +interface RateLimitState { + remaining: number; + reset: number; // Unix timestamp (seconds) +} + +const rateLimitState: RateLimitState = { remaining: 5000, reset: 0 }; + +async function githubFetch(url: string, retries = 6): Promise { + for (let attempt = 0; attempt <= retries; attempt++) { + // Pre-emptive rate limit pause + if (rateLimitState.remaining < RATELIMIT_PAUSE_THRESHOLD) { + const now = Math.floor(Date.now() / 1000); + const waitSecs = Math.max(0, rateLimitState.reset - now) + (RATELIMIT_BUFFER_MS / 1000); + if (waitSecs > 0) { + const resetAt = new Date((rateLimitState.reset + RATELIMIT_BUFFER_MS / 1000) * 1000).toLocaleTimeString(); + process.stdout.write(`\n ⏸ Rate limit low (${rateLimitState.remaining} remaining). Pausing ${Math.ceil(waitSecs)}s until ${resetAt}...\n`); + await Bun.sleep(waitSecs * 1000); + rateLimitState.remaining = 5000; + } + } + + const res = await fetch(url, { + headers: { + 'Authorization': `Bearer ${GITHUB_TOKEN}`, + 'Accept': 'application/vnd.github+json', + 'X-GitHub-Api-Version': '2022-11-28', + }, + }); + + // Update rate limit state from headers + const remaining = res.headers.get('X-RateLimit-Remaining'); + const reset = res.headers.get('X-RateLimit-Reset'); + if (remaining) rateLimitState.remaining = parseInt(remaining); + if (reset) rateLimitState.reset = parseInt(reset); + + if (res.status === 200) return res; + + // 404 = repo not found or private — no point retrying + if (res.status === 404) return null; + + // 403 = rate limit exceeded or auth issue + if (res.status === 403) { + const body = await res.text().catch(() => ''); + if (body.includes('rate limit')) { + const waitSecs = Math.max(60, rateLimitState.reset - Math.floor(Date.now() / 1000)) + 5; + process.stdout.write(`\n 🚫 Rate limit exceeded. Waiting ${waitSecs}s...\n`); + await Bun.sleep(waitSecs * 1000); + continue; + } + return null; // auth error, not retriable + } + + // 429 = secondary rate limit (abuse detection) — exponential backoff + if (res.status === 429) { + const retryAfter = res.headers.get('Retry-After'); + const wait = retryAfter ? parseInt(retryAfter) * 1000 : Math.pow(2, attempt) * 2000; + process.stdout.write(`\n ⚠️ 429 secondary rate limit. Waiting ${Math.ceil(wait / 1000)}s...\n`); + await Bun.sleep(wait); + continue; + } + + // 5xx — retry with backoff + if (res.status >= 500) { + const wait = Math.pow(2, attempt) * 1000; + await Bun.sleep(wait); + continue; + } + + // Anything else (301 redirect without following, etc.) — skip + return null; + } + + return null; +} + +interface RepoInfo { + defaultBranch: string; +} + +async function getRepoInfo(owner: string, repo: string): Promise { + const res = await githubFetch(`https://api.github.com/repos/${owner}/${repo}`); + if (!res) return null; + try { + const data = await res.json(); + return { defaultBranch: data.default_branch || 'main' }; + } catch { + return null; + } +} + +interface TreeFile { + path: string; + type: string; +} + +async function getRepoTree(owner: string, repo: string, branch: string): Promise { + const res = await githubFetch( + `https://api.github.com/repos/${owner}/${repo}/git/trees/${branch}?recursive=1` + ); + if (!res) return null; + try { + const data = await res.json(); + if (data.truncated) { + // Tree truncated (>100k files) — extremely rare for theme repos, proceed anyway + process.stdout.write(` [truncated]`); + } + return (data.tree || []).filter((f: TreeFile) => f.type === 'blob'); + } catch { + return null; + } +} + +// ── Repo URL parsing ── + +function parseGithubUrl(url: string): { owner: string; repo: string } | null { + const match = url.match(/github\.com[/:]([^/]+)\/([^/.]+?)(?:\.git)?(?:[/#?].*)?$/); + if (!match) return null; + return { owner: match[1], repo: match[2] }; +} + +function buildRawUrl(owner: string, repo: string, branch: string, path: string): string { + return `https://raw.githubusercontent.com/${owner}/${repo}/${branch}/${path}`; +} + +// ── Main ── + +async function processRepo( + yamlFile: string, + repoUrl: string, +): Promise<{ formats: Record; app_count: number } | null> { + const parsed = parseGithubUrl(repoUrl); + if (!parsed) return null; + + const { owner, repo } = parsed; + + const info = await getRepoInfo(owner, repo); + if (!info) return null; + + const tree = await getRepoTree(owner, repo, info.defaultBranch); + if (!tree) return null; + + const paths = tree.map(f => f.path); + const detected = detectFormats(paths); + + // Build full raw URLs + const formats: Record = {}; + for (const [app, path] of Object.entries(detected)) { + formats[app] = buildRawUrl(owner, repo, info.defaultBranch, path); + } + + return { formats, app_count: Object.keys(formats).length }; +} + +async function main() { + console.log('🔍 detect-theme-formats — GitHub repo scanner\n'); + if (DRY_RUN) console.log(' DRY RUN — no files will be written\n'); + + const yamlFiles = readdirSync(THEMES_DIR) + .filter(f => f.endsWith('.yaml') && f !== 'index.json'); + + // Load all themes with a GitHub repo URL + interface Task { + file: string; + repoUrl: string; + name: string; + alreadyScanned: boolean; + } + + const tasks: Task[] = []; + for (const file of yamlFiles) { + try { + const raw = readFileSync(join(THEMES_DIR, file), 'utf8'); + const theme = parseThemeYAML(raw); + const repoUrl = theme.source?.repo; + if (!repoUrl || !repoUrl.includes('github.com')) continue; + const alreadyScanned = theme.source.formats !== undefined; + tasks.push({ file, repoUrl, name: theme.name, alreadyScanned }); + } catch { + // Skip unparseable + } + } + + const toProcess = tasks + .filter(t => !RESUME || !t.alreadyScanned) + .slice(0, LIMIT); + + const skipped = tasks.filter(t => RESUME && t.alreadyScanned).length; + const total = toProcess.length; + + console.log(` ${tasks.length} themes with GitHub repos`); + if (RESUME && skipped > 0) console.log(` ${skipped} already scanned — skipping (--resume)`); + console.log(` ${total} to scan\n`); + + if (total === 0) { + console.log('Nothing to do.'); + return; + } + + let done = 0; + let withFormats = 0; + let totalFormatsFound = 0; + let errors = 0; + + // Process in batches of CONCURRENCY + for (let i = 0; i < toProcess.length; i += CONCURRENCY) { + const batch = toProcess.slice(i, i + CONCURRENCY); + + const results = await Promise.all( + batch.map(async task => { + const result = await processRepo(task.file, task.repoUrl); + return { task, result }; + }) + ); + + for (const { task, result } of results) { + done++; + const pct = Math.round((done / total) * 100); + const bar = '█'.repeat(Math.floor(pct / 5)) + '░'.repeat(20 - Math.floor(pct / 5)); + + if (result === null) { + errors++; + process.stdout.write(`\r [${bar}] ${pct}% (${done}/${total}) — ⚠ skipped ${task.name.slice(0, 30)} `); + continue; + } + + const { formats, app_count } = result; + if (app_count > 0) { + withFormats++; + totalFormatsFound += app_count; + const apps = Object.keys(formats).join(', '); + process.stdout.write(`\r [${bar}] ${pct}% (${done}/${total}) — ✓ ${task.name.slice(0, 25)}: [${apps}] `); + } else { + process.stdout.write(`\r [${bar}] ${pct}% (${done}/${total}) — · ${task.name.slice(0, 30)} `); + } + + if (!DRY_RUN) { + // Update YAML in-place + try { + const raw = readFileSync(join(THEMES_DIR, task.file), 'utf8'); + const theme = parseThemeYAML(raw); + theme.source.formats = Object.keys(formats).length > 0 ? formats : null; + writeFileSync(join(THEMES_DIR, task.file), serializeThemeYAML(theme), 'utf8'); + } catch (err) { + process.stderr.write(`\n ❌ Failed to write ${task.file}: ${err}\n`); + } + } + } + } + + process.stdout.write('\n'); + console.log(`\n📊 Done!`); + console.log(` Scanned: ${done} repos`); + console.log(` With native formats: ${withFormats} themes (${totalFormatsFound} total format files)`); + console.log(` Unreachable / private: ${errors}`); + if (DRY_RUN) console.log(` (dry run — no files written)`); +} + +main().catch(err => { + console.error('\n\nFatal error:', err); + process.exit(1); +}); diff --git a/themes/10004ok.yaml b/themes/10004ok.yaml new file mode 100644 index 00000000..4dacbbd3 --- /dev/null +++ b/themes/10004ok.yaml @@ -0,0 +1,53 @@ +name: "10004ok" +source: + marketplace_id: "hyezoprk.10004ok" + version: "0.0.9" + installs: 37 + rating: 0 + ratings: 0 + author: "hyezoprk" + repo: "https://github.com/10004ok/10004ok-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hyezoprk.10004ok" + formats: null +colors: + bg: "#1E293B" + fg: "#D6D6D6" + black: "#000000" + red: "#CD3131" + green: "#51E1A5" + yellow: "#51E1A5" + blue: "#C7ADFB" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 78.1 + black: 0 + red: 24.1 + green: 70.6 + yellow: 70.6 + blue: 61.5 + magenta: 27.2 + cyan: 45 + white: 87.4 + brightBlack: 19.4 + brightRed: 36 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/1dark-raincoat.yaml b/themes/1dark-raincoat.yaml new file mode 100644 index 00000000..53bbc55c --- /dev/null +++ b/themes/1dark-raincoat.yaml @@ -0,0 +1,53 @@ +name: "1Dark RainCoat" +source: + marketplace_id: "ginfuru.ginfuru-onedark-raincoat-theme" + version: "0.9.9" + installs: 24976 + rating: 5 + ratings: 7 + author: "Ed Heltzel" + repo: "https://github.com/ginfuru/vscode-1dark-raincoat" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.ginfuru-onedark-raincoat-theme" + formats: null +colors: + bg: "#030D22" + fg: "#FDFEFF" + black: "#303742" + red: "#FF2E97" + green: "#21FF78" + yellow: "#FFD400" + blue: "#00BEFF" + magenta: "#EA00D9" + cyan: "#AF79FE" + white: "#E3EEFE" + brightBlack: "#3A1B75" + brightRed: "#EE1682" + brightGreen: "#20F6BB" + brightYellow: "#FED400" + brightBlue: "#31BEFF" + brightMagenta: "#D328FF" + brightCyan: "#3789FE" + brightWhite: "#F0F5FF" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 106.7 + black: 0 + red: 41.2 + green: 87.2 + yellow: 82.6 + blue: 60.6 + magenta: 38.3 + cyan: 44.9 + white: 95.7 + brightBlack: 0 + brightRed: 35.1 + brightGreen: 84.2 + brightYellow: 82.4 + brightBlue: 61 + brightMagenta: 37.5 + brightCyan: 40.3 + brightWhite: 100.7 diff --git a/themes/1mm-themes--1mm-dracula.yaml b/themes/1mm-themes--1mm-dracula.yaml new file mode 100644 index 00000000..300bc1d4 --- /dev/null +++ b/themes/1mm-themes--1mm-dracula.yaml @@ -0,0 +1,53 @@ +name: "1mm Themes (1mm - Dracula)" +source: + marketplace_id: "joytrekker.1mm-themes" + version: "0.0.1" + installs: 37042 + rating: 5 + ratings: 3 + author: "joytrekker" + repo: "https://github.com/joytrekker/1mm-themes" + url: "https://marketplace.visualstudio.com/items?itemName=joytrekker.1mm-themes" + formats: null +colors: + bg: "#282A36" + fg: "#9DA5B4" + black: "#575757" + red: "#FF6E67" + green: "#5AF78E" + yellow: "#F4F99D" + blue: "#CAA9FA" + magenta: "#FF92D0" + cyan: "#9AEDFE" + white: "#F8F8F2" + brightBlack: "#4D4D4D" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#BD93F9" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: null + contrast: + fg: 49.3 + black: 12.9 + red: 45.7 + green: 81.1 + yellow: 95.9 + blue: 60.1 + magenta: 58.9 + cyan: 84.1 + white: 99 + brightBlack: 9.1 + brightRed: 40.4 + brightGreen: 81.9 + brightYellow: 95.6 + brightBlue: 50.7 + brightMagenta: 51.6 + brightCyan: 81 + brightWhite: 103.9 diff --git a/themes/365-day-night-themes--365-day-october-dark.yaml b/themes/365-day-night-themes--365-day-october-dark.yaml new file mode 100644 index 00000000..ac1cf613 --- /dev/null +++ b/themes/365-day-night-themes--365-day-october-dark.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (365 Day october dark)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#FEFBE9" + fg: "#714620" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#000000" + brightBlack: "#666666" + brightRed: "#FF6B00" + brightGreen: "#23D18B" + brightYellow: "#D4A15D" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#B3753E" + brightWhite: "#000000" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 85 + black: 103.3 + red: 71.2 + green: 45.2 + yellow: 14.3 + blue: 70.5 + magenta: 68.2 + cyan: 50.5 + white: 103.3 + brightBlack: 76 + brightRed: 51 + brightGreen: 35.1 + brightYellow: 42.9 + brightBlue: 57.9 + brightMagenta: 52.7 + brightCyan: 62.5 + brightWhite: 103.3 diff --git a/themes/365-day-night-themes--april-dark-theme.yaml b/themes/365-day-night-themes--april-dark-theme.yaml new file mode 100644 index 00000000..1a5ccf10 --- /dev/null +++ b/themes/365-day-night-themes--april-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (April Dark Theme)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#1E2230" + fg: "#EBECF2" + black: "#303C50" + red: "#C05E5E" + green: "#8EB06E" + yellow: "#E6BF6D" + blue: "#6D91C3" + magenta: "#AC8BAE" + cyan: "#74A4CF" + white: "#EBEDF4" + brightBlack: "#4C5767" + brightRed: "#C05E5E" + brightGreen: "#97C17D" + brightYellow: "#E6D07C" + brightBlue: "#7DA3D1" + brightMagenta: "#B79BC0" + brightCyan: "#84B4DB" + brightWhite: "#EBEDF4" +meta: + mode: "dark" + accent: "orange" + hue: 272 + pair: null + contrast: + fg: 93.1 + black: 0 + red: 30.7 + green: 51.4 + yellow: 68.5 + blue: 39.6 + magenta: 42.9 + cyan: 48 + white: 93.7 + brightBlack: 14.1 + brightRed: 30.7 + brightGreen: 59.9 + brightYellow: 75.9 + brightBlue: 48.4 + brightMagenta: 50.7 + brightCyan: 56.4 + brightWhite: 93.7 diff --git a/themes/365-day-night-themes--august-dark-theme.yaml b/themes/365-day-night-themes--august-dark-theme.yaml new file mode 100644 index 00000000..a9b6b4ae --- /dev/null +++ b/themes/365-day-night-themes--august-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (August Dark Theme)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#0F172A" + fg: "#F1F5F9" + black: "#0F172A" + red: "#EF4444" + green: "#22C55E" + yellow: "#FACC15" + blue: "#3B82F6" + magenta: "#C084FC" + cyan: "#06B6D4" + white: "#F1F5F9" + brightBlack: "#1E293B" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#D8B4FE" + brightCyan: "#67E8F9" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "orange" + hue: 266 + pair: null + contrast: + fg: 99.8 + black: 0 + red: 36.7 + green: 56.7 + yellow: 77.7 + blue: 36.7 + magenta: 49.6 + cyan: 53.8 + white: 99.8 + brightBlack: 0 + brightRed: 48 + brightGreen: 70.4 + brightYellow: 72.6 + brightBlue: 51.3 + brightMagenta: 69.2 + brightCyan: 81.1 + brightWhite: 103.3 diff --git a/themes/365-day-night-themes--high-contrast-april-light-theme.yaml b/themes/365-day-night-themes--high-contrast-april-light-theme.yaml new file mode 100644 index 00000000..1f7c8cae --- /dev/null +++ b/themes/365-day-night-themes--high-contrast-april-light-theme.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (High Contrast April Light Theme)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#FFF8E1" + fg: "#3E2723" + black: "#4E342E" + red: "#D84315" + green: "#8BC34A" + yellow: "#FFC107" + blue: "#1976D2" + magenta: "#7B1FA2" + cyan: "#0097A7" + white: "#E0E0E0" + brightBlack: "#616161" + brightRed: "#F4511E" + brightGreen: "#AED581" + brightYellow: "#FFD54F" + brightBlue: "#64B5F6" + brightMagenta: "#CE93D8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.1 + black: 91.8 + red: 65.3 + green: 36.7 + yellow: 23.6 + blue: 67.2 + magenta: 82.9 + cyan: 57.8 + white: 11.6 + brightBlack: 76.7 + brightRed: 56.9 + brightGreen: 24.9 + brightYellow: 15.5 + brightBlue: 39.2 + brightMagenta: 42.8 + brightCyan: 29.9 + brightWhite: 0 diff --git a/themes/365-day-night-themes--high-contrast-april-theme.yaml b/themes/365-day-night-themes--high-contrast-april-theme.yaml new file mode 100644 index 00000000..fe0f8631 --- /dev/null +++ b/themes/365-day-night-themes--high-contrast-april-theme.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (High Contrast April Theme)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#143D59" + fg: "#E6FFFA" + black: "#143D59" + red: "#FF6347" + green: "#32CD32" + yellow: "#FFD700" + blue: "#1E90FF" + magenta: "#8A2BE2" + cyan: "#00FFFF" + white: "#E6FFFA" + brightBlack: "#C3F3EE" + brightRed: "#FF4500" + brightGreen: "#7CFC00" + brightYellow: "#FFFF00" + brightBlue: "#4682B4" + brightMagenta: "#DA70D6" + brightCyan: "#AFEEEE" + brightWhite: "#E6FFFA" +meta: + mode: "dark" + accent: "green" + hue: 242 + pair: null + contrast: + fg: 96.2 + black: 0 + red: 38.7 + green: 53.3 + yellow: 76.2 + blue: 34.6 + magenta: 15.3 + cyan: 84.1 + white: 96.2 + brightBlack: 85.8 + brightRed: 33.3 + brightGreen: 79.8 + brightYellow: 94.6 + brightBlue: 25.5 + brightMagenta: 39 + brightCyan: 81.4 + brightWhite: 96.2 diff --git a/themes/365-day-night-themes--high-contrast-august-light-theme.yaml b/themes/365-day-night-themes--high-contrast-august-light-theme.yaml new file mode 100644 index 00000000..1b5ad60c --- /dev/null +++ b/themes/365-day-night-themes--high-contrast-august-light-theme.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (High Contrast August Light Theme)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#FFF8E1" + fg: "#1A237E" + black: "#1A237E" + red: "#FF3D00" + green: "#4CAF50" + yellow: "#FFC107" + blue: "#1976D2" + magenta: "#8E24AA" + cyan: "#00ACC1" + white: "#E0E0E0" + brightBlack: "#757575" + brightRed: "#FF6F00" + brightGreen: "#81C784" + brightYellow: "#FFD740" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.7 + black: 94.7 + red: 57.1 + green: 49.1 + yellow: 23.6 + blue: 67.2 + magenta: 78.9 + cyan: 48.1 + white: 11.6 + brightBlack: 67.8 + brightRed: 48.6 + brightGreen: 34.7 + brightYellow: 14.8 + brightBlue: 39.2 + brightMagenta: 58.6 + brightCyan: 29.9 + brightWhite: 0 diff --git a/themes/365-day-night-themes--high-contrast-february-dark-theme.yaml b/themes/365-day-night-themes--high-contrast-february-dark-theme.yaml new file mode 100644 index 00000000..80ca20f0 --- /dev/null +++ b/themes/365-day-night-themes--high-contrast-february-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (High Contrast February Dark Theme)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#1E1E2E" + fg: "#EAEAFF" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#ECEFF4" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 284 + pair: null + contrast: + fg: 93.2 + black: 0 + red: 31.9 + green: 60.6 + yellow: 75.3 + blue: 47.6 + magenta: 45.4 + cyan: 61.6 + white: 95.2 + brightBlack: 14.3 + brightRed: 31.9 + brightGreen: 60.6 + brightYellow: 75.3 + brightBlue: 47.6 + brightMagenta: 45.4 + brightCyan: 59.5 + brightWhite: 95.2 diff --git a/themes/365-day-night-themes--high-contrast-february-light-theme-accessible.yaml b/themes/365-day-night-themes--high-contrast-february-light-theme-accessible.yaml new file mode 100644 index 00000000..22e49eb7 --- /dev/null +++ b/themes/365-day-night-themes--high-contrast-february-light-theme-accessible.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (High Contrast February Light Theme - Accessible)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#FFFFFF" + fg: "#1A1A1A" + black: "#263238" + red: "#D32F2F" + green: "#388E3C" + yellow: "#F57F17" + blue: "#1976D2" + magenta: "#7B1FA2" + cyan: "#0097A7" + white: "#ECEFF1" + brightBlack: "#546E7A" + brightRed: "#E64A19" + brightGreen: "#388E3C" + brightYellow: "#F57F17" + brightBlue: "#1976D2" + brightMagenta: "#7B1FA2" + brightCyan: "#0097A7" + brightWhite: "#ECEFF1" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.3 + black: 99.5 + red: 72.8 + green: 68 + yellow: 50.9 + blue: 71.4 + magenta: 87.1 + cyan: 62 + white: 0 + brightBlack: 76.9 + brightRed: 65.4 + brightGreen: 68 + brightYellow: 50.9 + brightBlue: 71.4 + brightMagenta: 87.1 + brightCyan: 62 + brightWhite: 0 diff --git a/themes/365-day-night-themes--high-contrast-february-theme-accessible.yaml b/themes/365-day-night-themes--high-contrast-february-theme-accessible.yaml new file mode 100644 index 00000000..16eaa60b --- /dev/null +++ b/themes/365-day-night-themes--high-contrast-february-theme-accessible.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (High Contrast February Theme - Accessible)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#0D1B2A" + fg: "#FFFFFF" + black: "#0D1B2A" + red: "#FF4500" + green: "#32CD32" + yellow: "#FFD700" + blue: "#1E90FF" + magenta: "#8A2BE2" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#A9A9A9" + brightRed: "#FF6347" + brightGreen: "#7CFC00" + brightYellow: "#FFFF00" + brightBlue: "#4682B4" + brightMagenta: "#DA70D6" + brightCyan: "#AFEEEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 251 + pair: null + contrast: + fg: 106.5 + black: 0 + red: 40 + green: 60 + yellow: 82.9 + blue: 41.3 + magenta: 21.9 + cyan: 90.8 + white: 106.5 + brightBlack: 54.3 + brightRed: 45.4 + brightGreen: 86.5 + brightYellow: 101.3 + brightBlue: 32.2 + brightMagenta: 45.7 + brightCyan: 88.1 + brightWhite: 106.5 diff --git a/themes/365-day-night-themes--high-contrast-july-light-theme.yaml b/themes/365-day-night-themes--high-contrast-july-light-theme.yaml new file mode 100644 index 00000000..2b981974 --- /dev/null +++ b/themes/365-day-night-themes--high-contrast-july-light-theme.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (High Contrast July Light Theme)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#FFFDE7" + fg: "#3E2723" + black: "#4E342E" + red: "#D84315" + green: "#8BC34A" + yellow: "#FFC107" + blue: "#1976D2" + magenta: "#7B1FA2" + cyan: "#0097A7" + white: "#E0E0E0" + brightBlack: "#616161" + brightRed: "#E64A19" + brightGreen: "#AED581" + brightYellow: "#FFD54F" + brightBlue: "#64B5F6" + brightMagenta: "#CE93D8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.5 + black: 94.2 + red: 67.7 + green: 39.1 + yellow: 26 + blue: 69.5 + magenta: 85.3 + cyan: 60.2 + white: 14 + brightBlack: 79.1 + brightRed: 63.5 + brightGreen: 27.3 + brightYellow: 17.9 + brightBlue: 41.6 + brightMagenta: 45.1 + brightCyan: 32.3 + brightWhite: 0 diff --git a/themes/365-day-night-themes--high-contrast-june-light-theme.yaml b/themes/365-day-night-themes--high-contrast-june-light-theme.yaml new file mode 100644 index 00000000..c1f187f2 --- /dev/null +++ b/themes/365-day-night-themes--high-contrast-june-light-theme.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (High Contrast June Light Theme)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#E3F2FD" + fg: "#1A237E" + black: "#263238" + red: "#D32F2F" + green: "#388E3C" + yellow: "#FFA000" + blue: "#1976D2" + magenta: "#7B1FA2" + cyan: "#0288D1" + white: "#CFD8DC" + brightBlack: "#546E7A" + brightRed: "#E64A19" + brightGreen: "#81C784" + brightYellow: "#FFB74D" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.8 + black: 90.4 + red: 63.8 + green: 58.9 + yellow: 30.3 + blue: 62.3 + magenta: 78.1 + cyan: 56.3 + white: 12.3 + brightBlack: 67.8 + brightRed: 56.3 + brightGreen: 29.9 + brightYellow: 22.1 + brightBlue: 34.3 + brightMagenta: 53.8 + brightCyan: 25.1 + brightWhite: 7.8 diff --git a/themes/365-day-night-themes--high-contrast-march-dark-theme-accessible.yaml b/themes/365-day-night-themes--high-contrast-march-dark-theme-accessible.yaml new file mode 100644 index 00000000..a16b92a7 --- /dev/null +++ b/themes/365-day-night-themes--high-contrast-march-dark-theme-accessible.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (High Contrast March Dark Theme - Accessible)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#1B1F30" + fg: "#EDEEFF" + black: "#303B5A" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#70A4DC" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#ECEFF4" + brightBlack: "#4D566C" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#70A4DC" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 274 + pair: "365 Day & Night Themes (High Contrast March Light Theme - Accessible)" + contrast: + fg: 95.3 + black: 0 + red: 31.9 + green: 60.6 + yellow: 75.3 + blue: 48.9 + magenta: 45.4 + cyan: 61.6 + white: 95.1 + brightBlack: 14.4 + brightRed: 31.9 + brightGreen: 60.6 + brightYellow: 75.3 + brightBlue: 48.9 + brightMagenta: 45.4 + brightCyan: 59.5 + brightWhite: 95.1 diff --git a/themes/365-day-night-themes--high-contrast-march-dark-theme.yaml b/themes/365-day-night-themes--high-contrast-march-dark-theme.yaml new file mode 100644 index 00000000..34ac4673 --- /dev/null +++ b/themes/365-day-night-themes--high-contrast-march-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (High Contrast March Dark Theme)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#1B2B34" + fg: "#A7ADBA" + black: "#343D46" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#8FA1B3" + magenta: "#B48EAD" + cyan: "#96B5B4" + white: "#C0C5CE" + brightBlack: "#65737E" + brightRed: "#EC7279" + brightGreen: "#B9D189" + brightYellow: "#FFD580" + brightBlue: "#8FA1B3" + brightMagenta: "#CC9ED1" + brightCyan: "#AAD1D1" + brightWhite: "#D8DEE9" +meta: + mode: "dark" + accent: "orange" + hue: 234 + pair: null + contrast: + fg: 54.1 + black: 0 + red: 30.3 + green: 59 + yellow: 73.7 + blue: 46.6 + magenta: 43.8 + cyan: 55.3 + white: 67.6 + brightBlack: 24.2 + brightRed: 43.4 + brightGreen: 69.7 + brightYellow: 80.9 + brightBlue: 46.6 + brightMagenta: 54.4 + brightCyan: 70.6 + brightWhite: 82.7 diff --git a/themes/365-day-night-themes--high-contrast-march-light-theme-accessible.yaml b/themes/365-day-night-themes--high-contrast-march-light-theme-accessible.yaml new file mode 100644 index 00000000..6a6b1329 --- /dev/null +++ b/themes/365-day-night-themes--high-contrast-march-light-theme-accessible.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (High Contrast March Light Theme - Accessible)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#FEFBEA" + fg: "#333333" + black: "#424242" + red: "#D9534F" + green: "#4CAF50" + yellow: "#FFC107" + blue: "#1976D2" + magenta: "#9C27B0" + cyan: "#00BCD4" + white: "#E0E0E0" + brightBlack: "#737373" + brightRed: "#F44336" + brightGreen: "#66BB6A" + brightYellow: "#FFD54F" + brightBlue: "#42A5F5" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "365 Day & Night Themes (High Contrast March Dark Theme - Accessible)" + contrast: + fg: 96 + black: 90.6 + red: 63.4 + green: 50.6 + yellow: 25.1 + blue: 68.7 + magenta: 77.4 + cyan: 41.9 + white: 13.1 + brightBlack: 70.2 + brightRed: 60.2 + brightGreen: 43.7 + brightYellow: 17 + brightBlue: 48.5 + brightMagenta: 60.1 + brightCyan: 31.4 + brightWhite: 0 diff --git a/themes/365-day-night-themes--high-contrast-march-theme-accessible.yaml b/themes/365-day-night-themes--high-contrast-march-theme-accessible.yaml new file mode 100644 index 00000000..0c256c55 --- /dev/null +++ b/themes/365-day-night-themes--high-contrast-march-theme-accessible.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (High Contrast March Theme - Accessible)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#162C36" + fg: "#E5E5E5" + black: "#162C36" + red: "#FF6347" + green: "#32CD32" + yellow: "#FFD700" + blue: "#1E90FF" + magenta: "#8A2BE2" + cyan: "#00FFFF" + white: "#E5E5E5" + brightBlack: "#A9A9A9" + brightRed: "#FF4500" + brightGreen: "#7CFC00" + brightYellow: "#FFFF00" + brightBlue: "#4682B4" + brightMagenta: "#DA70D6" + brightCyan: "#AFEEEE" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 229 + pair: null + contrast: + fg: 87.3 + black: 0 + red: 43 + green: 57.6 + yellow: 80.5 + blue: 39 + magenta: 19.6 + cyan: 88.4 + white: 87.3 + brightBlack: 51.9 + brightRed: 37.6 + brightGreen: 84.1 + brightYellow: 99 + brightBlue: 29.9 + brightMagenta: 43.3 + brightCyan: 85.8 + brightWhite: 87.3 diff --git a/themes/365-day-night-themes--high-contrast-may-light-theme.yaml b/themes/365-day-night-themes--high-contrast-may-light-theme.yaml new file mode 100644 index 00000000..2a7232ad --- /dev/null +++ b/themes/365-day-night-themes--high-contrast-may-light-theme.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (High Contrast May Light Theme)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#FFFFFF" + fg: "#2C3E50" + black: "#5D6D7E" + red: "#CB4335" + green: "#28B463" + yellow: "#F39C12" + blue: "#2874A6" + magenta: "#8E44AD" + cyan: "#1ABC9C" + white: "#FFFFFF" + brightBlack: "#85929E" + brightRed: "#E74C3C" + brightGreen: "#58D68D" + brightYellow: "#F5B041" + brightBlue: "#5499C7" + brightMagenta: "#AF7AC5" + brightCyan: "#48C9B0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.4 + black: 76.4 + red: 72.1 + green: 51.8 + yellow: 42.8 + blue: 74.7 + magenta: 78.8 + cyan: 46.9 + white: 0 + brightBlack: 59 + brightRed: 64.6 + brightGreen: 34.2 + brightYellow: 35.4 + brightBlue: 57.9 + brightMagenta: 59.9 + brightCyan: 39.5 + brightWhite: 0 diff --git a/themes/365-day-night-themes--high-contrast-september-light-theme.yaml b/themes/365-day-night-themes--high-contrast-september-light-theme.yaml new file mode 100644 index 00000000..36519a49 --- /dev/null +++ b/themes/365-day-night-themes--high-contrast-september-light-theme.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (High Contrast September Light Theme)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#E3F2FD" + fg: "#0D47A1" + black: "#0D47A1" + red: "#E53935" + green: "#43A047" + yellow: "#FBC02D" + blue: "#1E88E5" + magenta: "#8E24AA" + cyan: "#00ACC1" + white: "#E0E0E0" + brightBlack: "#616161" + brightRed: "#FF5252" + brightGreen: "#81C784" + brightYellow: "#FFD54F" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.9 + black: 79.9 + red: 58.6 + green: 51 + yellow: 19.7 + blue: 54.7 + magenta: 74.1 + cyan: 43.2 + white: 0 + brightBlack: 71.8 + brightRed: 48.8 + brightGreen: 29.9 + brightYellow: 10.6 + brightBlue: 34.3 + brightMagenta: 53.8 + brightCyan: 25.1 + brightWhite: 7.8 diff --git a/themes/365-day-night-themes--july-summer-vibes-dark-theme.yaml b/themes/365-day-night-themes--july-summer-vibes-dark-theme.yaml new file mode 100644 index 00000000..172645a8 --- /dev/null +++ b/themes/365-day-night-themes--july-summer-vibes-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (July Summer Vibes Dark Theme)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#002B36" + fg: "#FFFFFF" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#6C71C4" + cyan: "#2AA198" + white: "#FFFFFF" + brightBlack: "#586E75" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#6C71C4" + brightCyan: "#2AA198" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 220 + pair: null + contrast: + fg: 104.4 + black: 0 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 104.4 + brightBlack: 21.5 + brightRed: 27.7 + brightGreen: 39.2 + brightYellow: 39.2 + brightBlue: 34.3 + brightMagenta: 28 + brightCyan: 40 + brightWhite: 104.4 diff --git a/themes/365-day-night-themes--september-dark-theme.yaml b/themes/365-day-night-themes--september-dark-theme.yaml new file mode 100644 index 00000000..6a049e9f --- /dev/null +++ b/themes/365-day-night-themes--september-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (September Dark Theme)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#1A202C" + fg: "#F8F9FA" + black: "#1A202C" + red: "#E53E3E" + green: "#38A169" + yellow: "#D69E2E" + blue: "#3182CE" + magenta: "#805AD5" + cyan: "#319795" + white: "#F8F9FA" + brightBlack: "#2D3748" + brightRed: "#FC8181" + brightGreen: "#48BB78" + brightYellow: "#ECC94B" + brightBlue: "#4299E1" + brightMagenta: "#9F7AEA" + brightCyan: "#81E6D9" + brightWhite: "#EDF2F7" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 101.7 + black: 0 + red: 32.6 + green: 40.2 + yellow: 53.1 + blue: 32.4 + magenta: 26.4 + cyan: 37.3 + white: 101.7 + brightBlack: 0 + brightRed: 52.3 + brightGreen: 52.5 + brightYellow: 73.5 + brightBlue: 42.6 + brightMagenta: 39.9 + brightCyan: 78.9 + brightWhite: 96.8 diff --git a/themes/365-day-night-themes--th-me-dark-aout-contraste-lev.yaml b/themes/365-day-night-themes--th-me-dark-aout-contraste-lev.yaml new file mode 100644 index 00000000..7904e1bd --- /dev/null +++ b/themes/365-day-night-themes--th-me-dark-aout-contraste-lev.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (Thème Dark Aout - Contraste Élevé)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 16.1 + brightRed: 44.4 + brightGreen: 88.1 + brightYellow: 103.1 + brightBlue: 27.4 + brightMagenta: 51.9 + brightCyan: 93.4 + brightWhite: 107.9 diff --git a/themes/365-day-night-themes--th-me-dark-avril-vert-printemps.yaml b/themes/365-day-night-themes--th-me-dark-avril-vert-printemps.yaml new file mode 100644 index 00000000..83e34976 --- /dev/null +++ b/themes/365-day-night-themes--th-me-dark-avril-vert-printemps.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (Thème Dark Avril - Vert Printemps)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#152238" + fg: "#F0F0F0" + black: "#152238" + red: "#FF6666" + green: "#2AD881" + yellow: "#FFD248" + blue: "#33A6F0" + magenta: "#BB59CC" + cyan: "#00C5C9" + white: "#F0F0F0" + brightBlack: "#667A88" + brightRed: "#FF6666" + brightGreen: "#2AD881" + brightYellow: "#FFD248" + brightBlue: "#33A6F0" + brightMagenta: "#BB59CC" + brightCyan: "#00C5C9" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 95.6 + black: 0 + red: 45.5 + green: 65.3 + yellow: 79.9 + blue: 47.9 + magenta: 33.5 + cyan: 58.6 + white: 95.6 + brightBlack: 28.2 + brightRed: 45.5 + brightGreen: 65.3 + brightYellow: 79.9 + brightBlue: 47.9 + brightMagenta: 33.5 + brightCyan: 58.6 + brightWhite: 95.6 diff --git a/themes/365-day-night-themes--th-me-dark-janvier-bleu-fonc.yaml b/themes/365-day-night-themes--th-me-dark-janvier-bleu-fonc.yaml new file mode 100644 index 00000000..ffab4b3c --- /dev/null +++ b/themes/365-day-night-themes--th-me-dark-janvier-bleu-fonc.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (Thème Dark Janvier - Bleu Foncé)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#0D1B2A" + fg: "#E0E0E0" + black: "#0D1B2A" + red: "#FF4B5C" + green: "#00A676" + yellow: "#F5CB5C" + blue: "#1B98E0" + magenta: "#BB29BB" + cyan: "#00ADB5" + white: "#E0E0E0" + brightBlack: "#546E7A" + brightRed: "#FF4B5C" + brightGreen: "#00A676" + brightYellow: "#F5CB5C" + brightBlue: "#1B98E0" + brightMagenta: "#BB29BB" + brightCyan: "#00ADB5" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "pink" + hue: 251 + pair: null + contrast: + fg: 86.5 + black: 0 + red: 41.6 + green: 42.7 + yellow: 76.7 + blue: 42 + magenta: 26.8 + cyan: 48 + white: 86.5 + brightBlack: 23.4 + brightRed: 41.6 + brightGreen: 42.7 + brightYellow: 76.7 + brightBlue: 42 + brightMagenta: 26.8 + brightCyan: 48 + brightWhite: 86.5 diff --git a/themes/365-day-night-themes--th-me-dark-juillet-contraste-lev.yaml b/themes/365-day-night-themes--th-me-dark-juillet-contraste-lev.yaml new file mode 100644 index 00000000..ba93edb3 --- /dev/null +++ b/themes/365-day-night-themes--th-me-dark-juillet-contraste-lev.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (Thème Dark Juillet - Contraste Élevé)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#001B2E" + fg: "#E6F3FF" + black: "#000000" + red: "#FF8C00" + green: "#4DB6AC" + yellow: "#FFD700" + blue: "#4FB3FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 242 + pair: null + contrast: + fg: 97.4 + black: 0 + red: 55.3 + green: 52.8 + yellow: 82.8 + blue: 56.1 + magenta: 44.8 + cyan: 90.8 + white: 106.5 + brightBlack: 14.7 + brightRed: 43 + brightGreen: 86.7 + brightYellow: 101.7 + brightBlue: 25.9 + brightMagenta: 50.4 + brightCyan: 91.9 + brightWhite: 106.5 diff --git a/themes/365-day-night-themes--th-me-dark-juin-high-contrast.yaml b/themes/365-day-night-themes--th-me-dark-juin-high-contrast.yaml new file mode 100644 index 00000000..a4ec0dd3 --- /dev/null +++ b/themes/365-day-night-themes--th-me-dark-juin-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (Thème Dark Juin - High Contrast)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF3333" + green: "#33FF33" + yellow: "#FFFF33" + blue: "#00AFFF" + magenta: "#FF00FF" + cyan: "#00FAFA" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#FF3333" + brightGreen: "#33FF33" + brightYellow: "#FFFF33" + brightBlue: "#00AFFF" + brightMagenta: "#FF00FF" + brightCyan: "#00FAFA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 39.6 + green: 87 + yellow: 102.8 + blue: 54.6 + magenta: 46.2 + cyan: 89.3 + white: 107.9 + brightBlack: 16.1 + brightRed: 39.6 + brightGreen: 87 + brightYellow: 102.8 + brightBlue: 54.6 + brightMagenta: 46.2 + brightCyan: 89.3 + brightWhite: 107.9 diff --git a/themes/365-day-night-themes--th-me-high-contrast-janvier-r-vis.yaml b/themes/365-day-night-themes--th-me-high-contrast-janvier-r-vis.yaml new file mode 100644 index 00000000..74b563f8 --- /dev/null +++ b/themes/365-day-night-themes--th-me-high-contrast-janvier-r-vis.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (Thème High Contrast Janvier - Révisé)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#1E90FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#808080" + brightRed: "#FF4500" + brightGreen: "#32CD32" + brightYellow: "#FFD700" + brightBlue: "#1E90FF" + brightMagenta: "#EE82EE" + brightCyan: "#00CED1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 42.7 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 34.8 + brightRed: 41.4 + brightGreen: 61.4 + brightYellow: 84.3 + brightBlue: 42.7 + brightMagenta: 56.8 + brightCyan: 65.6 + brightWhite: 107.9 diff --git a/themes/365-day-night-themes--th-me-sombre-d-automne.yaml b/themes/365-day-night-themes--th-me-sombre-d-automne.yaml new file mode 100644 index 00000000..f5032f01 --- /dev/null +++ b/themes/365-day-night-themes--th-me-sombre-d-automne.yaml @@ -0,0 +1,53 @@ +name: "365 Day & Night Themes (Thème Sombre d'Automne)" +source: + marketplace_id: "MickaelLherminez.365-daynight-vscode-theme-ext" + version: "0.9.7" + installs: 823 + rating: 5 + ratings: 1 + author: "Mickael Lherminez" + repo: "https://github.com/mickaellherminez/365-daynight-vscode-theme-ext" + url: "https://marketplace.visualstudio.com/items?itemName=MickaelLherminez.365-daynight-vscode-theme-ext" + formats: null +colors: + bg: "#2B1B0F" + fg: "#E0D7C6" + black: "#2B1B0F" + red: "#FF7F50" + green: "#14A460" + yellow: "#D4A15D" + blue: "#5B9BD5" + magenta: "#C678DD" + cyan: "#3A8B91" + white: "#E0D7C6" + brightBlack: "#3A2A1E" + brightRed: "#FF7F50" + brightGreen: "#14A460" + brightYellow: "#FFD700" + brightBlue: "#5B9BD5" + brightMagenta: "#D670D6" + brightCyan: "#8BE9FD" + brightWhite: "#E0D7C6" +meta: + mode: "dark" + accent: "green" + hue: 57 + pair: null + contrast: + fg: 80.9 + black: 0 + red: 51.5 + green: 40.8 + yellow: 54.5 + blue: 43.8 + magenta: 44.2 + cyan: 32.8 + white: 80.9 + brightBlack: 0 + brightRed: 51.5 + brightGreen: 40.8 + brightYellow: 82.3 + brightBlue: 43.8 + brightMagenta: 44.4 + brightCyan: 83 + brightWhite: 80.9 diff --git a/themes/42nd--42nd.yaml b/themes/42nd--42nd.yaml new file mode 100644 index 00000000..4cda986f --- /dev/null +++ b/themes/42nd--42nd.yaml @@ -0,0 +1,53 @@ +name: "42nd (42nd)" +source: + marketplace_id: "fawkes42.42nd" + version: "0.0.15" + installs: 119 + rating: 0 + ratings: 0 + author: "fawkes42" + repo: "https://github.com/fawkes42/42nd" + url: "https://marketplace.visualstudio.com/items?itemName=fawkes42.42nd" + formats: null +colors: + bg: "#0E0D0D" + fg: "#C9D1D9" + black: "#0E0D0D" + red: "#DB6B6B" + green: "#72C572" + yellow: "#CAB577" + blue: "#79C0FF" + magenta: "#D2A8FF" + cyan: "#72C5AA" + white: "#C9D1D9" + brightBlack: "#373737" + brightRed: "#FF5C5C" + brightGreen: "#8CE88C" + brightYellow: "#FCE788" + brightBlue: "#80D0FF" + brightMagenta: "#A57EDE" + brightCyan: "#89F2D6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 77.8 + black: 0 + red: 41.3 + green: 60.8 + yellow: 62.8 + blue: 65 + magenta: 64.8 + cyan: 62.4 + white: 77.8 + brightBlack: 0 + brightRed: 45.5 + brightGreen: 79.8 + brightYellow: 91.9 + brightBlue: 72.4 + brightMagenta: 42.9 + brightCyan: 87.1 + brightWhite: 107.6 diff --git a/themes/8-bit--8-bit-dark.yaml b/themes/8-bit--8-bit-dark.yaml new file mode 100644 index 00000000..993a87f8 --- /dev/null +++ b/themes/8-bit--8-bit-dark.yaml @@ -0,0 +1,53 @@ +name: "8-Bit (8-Bit Dark)" +source: + marketplace_id: "handsomeone.8bit" + version: "0.2.3" + installs: 29603 + rating: 4.75 + ratings: 12 + author: "Zhou Qi" + repo: "https://github.com/HandsomeOne/8bit" + url: "https://marketplace.visualstudio.com/items?itemName=handsomeone.8bit" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 16.2 + brightMagenta: 46.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/8-bit--8-bit-light.yaml b/themes/8-bit--8-bit-light.yaml new file mode 100644 index 00000000..c42f4e1f --- /dev/null +++ b/themes/8-bit--8-bit-light.yaml @@ -0,0 +1,53 @@ +name: "8-Bit (8-Bit Light)" +source: + marketplace_id: "handsomeone.8bit" + version: "0.2.3" + installs: 29603 + rating: 4.75 + ratings: 12 + author: "Zhou Qi" + repo: "https://github.com/HandsomeOne/8bit" + url: "https://marketplace.visualstudio.com/items?itemName=handsomeone.8bit" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#FFFFFF" + red: "#FF0000" + green: "#00BB00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00BBFF" + white: "#000000" + brightBlack: "#FFFFFF" + brightRed: "#FF0000" + brightGreen: "#00BB00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00BBFF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 0 + red: 64.1 + green: 49.7 + yellow: 0 + blue: 85.8 + magenta: 55.6 + cyan: 42.5 + white: 106 + brightBlack: 0 + brightRed: 64.1 + brightGreen: 49.7 + brightYellow: 0 + brightBlue: 85.8 + brightMagenta: 55.6 + brightCyan: 42.5 + brightWhite: 106 diff --git a/themes/8-bit-high-contrast.yaml b/themes/8-bit-high-contrast.yaml new file mode 100644 index 00000000..8f92435c --- /dev/null +++ b/themes/8-bit-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "8-Bit-High-Contrast" +source: + marketplace_id: "pbower.8-bit-high-contrast" + version: "0.0.1" + installs: 248 + rating: 0 + ratings: 0 + author: "pbower" + repo: "https://github.com/pbower/8-Bit-High-Contrast" + url: "https://marketplace.visualstudio.com/items?itemName=pbower.8-bit-high-contrast" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#FFFFFF" + red: "#CC0000" + green: "#009933" + yellow: "#FFFF00" + blue: "#0033CC" + magenta: "#996633" + cyan: "#0033CC" + white: "#000000" + brightBlack: "#FFFFFF" + brightRed: "#CC0000" + brightGreen: "#009933" + brightYellow: "#FFFF00" + brightBlue: "#0033CC" + brightMagenta: "#996633" + brightCyan: "#0033CC" + brightWhite: "#000000" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 106 + black: 0 + red: 76.5 + green: 64.3 + yellow: 0 + blue: 89 + magenta: 73.6 + cyan: 89 + white: 106 + brightBlack: 0 + brightRed: 76.5 + brightGreen: 64.3 + brightYellow: 0 + brightBlue: 89 + brightMagenta: 73.6 + brightCyan: 89 + brightWhite: 106 diff --git a/themes/8008.yaml b/themes/8008.yaml new file mode 100644 index 00000000..9155af3d --- /dev/null +++ b/themes/8008.yaml @@ -0,0 +1,53 @@ +name: "8008" +source: + marketplace_id: "Jejunum.8008" + version: "0.0.1" + installs: 992 + rating: 0 + ratings: 0 + author: "Jejunum" + repo: "https://github.com/Nathan-Hu-2/8008-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Jejunum.8008" + formats: null +colors: + bg: "#1D222A" + fg: "#939EAE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFFFFF" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFB2B2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#67FF8A" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 46.9 + black: 0 + red: 25.3 + green: 51.6 + yellow: 105.5 + blue: 26.1 + magenta: 28.4 + cyan: 46.2 + white: 69.7 + brightBlack: 20.7 + brightRed: 37.2 + brightGreen: 87.3 + brightYellow: 94.3 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/8ss-min-dark--untitled.yaml b/themes/8ss-min-dark--untitled.yaml new file mode 100644 index 00000000..7c72634f --- /dev/null +++ b/themes/8ss-min-dark--untitled.yaml @@ -0,0 +1,53 @@ +name: "8ss min dark (Untitled)" +source: + marketplace_id: "felipehsss.8ss-min-theme" + version: "0.0.6" + installs: 281 + rating: 0 + ratings: 0 + author: "fhss" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=felipehsss.8ss-min-theme" + formats: null +colors: + bg: "#121212" + fg: "#FFB7EA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 75.8 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.4 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/8x8theme.yaml b/themes/8x8theme.yaml new file mode 100644 index 00000000..af8648f8 --- /dev/null +++ b/themes/8x8theme.yaml @@ -0,0 +1,53 @@ +name: "8x8theme" +source: + marketplace_id: "keepflying.8x8theme" + version: "0.0.1" + installs: 457 + rating: 0 + ratings: 0 + author: "keepflying" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=keepflying.8x8theme" + formats: null +colors: + bg: "#F0F0F0" + fg: "#000000" + black: "#29343D" + red: "#F8961E" + green: "#8EFF38" + yellow: "#F3722C" + blue: "#577590" + magenta: "#F9C74F" + cyan: "#43AA8B" + white: "#555555" + brightBlack: "#394956" + brightRed: "#F8961E" + brightGreen: "#90BE6D" + brightYellow: "#F3722C" + brightBlue: "#577590" + brightMagenta: "#F9C74F" + brightCyan: "#43AA8B" + brightWhite: "#ABABAB" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 97.1 + black: 89.8 + red: 34.8 + green: 0 + yellow: 45.6 + blue: 64.5 + magenta: 17.2 + cyan: 45.5 + white: 77 + brightBlack: 82.5 + brightRed: 34.8 + brightGreen: 33.2 + brightYellow: 45.6 + brightBlue: 64.5 + brightMagenta: 17.2 + brightCyan: 45.5 + brightWhite: 36.4 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-1-red.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-1-red.yaml new file mode 100644 index 00000000..0689fed1 --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-1-red.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 1 🔴 Red)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#312226" + fg: "#CCB0B7" + black: "#6C555B" + red: "#EF7756" + green: "#42AD6E" + yellow: "#BA962E" + blue: "#6E96F2" + magenta: "#BC80E2" + cyan: "#49C2D8" + white: "#AF939A" + brightBlack: "#7E656C" + brightRed: "#FB987E" + brightGreen: "#56C682" + brightYellow: "#CDB048" + brightBlue: "#81B1FE" + brightMagenta: "#E4BBF2" + brightCyan: "#62D1E6" + brightWhite: "#EACFD6" +meta: + mode: "dark" + accent: "orange" + hue: 1 + pair: null + contrast: + fg: 60.3 + black: 15.4 + red: 45 + green: 44.8 + yellow: 44.9 + blue: 43.9 + magenta: 44 + cyan: 58.3 + white: 44.6 + brightBlack: 22.3 + brightRed: 57.8 + brightGreen: 57.3 + brightYellow: 57.6 + brightBlue: 56.4 + brightMagenta: 70.9 + brightCyan: 66.9 + brightWhite: 78.4 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-2-orange.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-2-orange.yaml new file mode 100644 index 00000000..ca9b6413 --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-2-orange.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 2 🟠 Orange)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#2D2519" + fg: "#C4B6A1" + black: "#655A48" + red: "#EF7756" + green: "#42AD6E" + yellow: "#BA962E" + blue: "#6E96F2" + magenta: "#BC80E2" + cyan: "#49C2D8" + white: "#A79983" + brightBlack: "#776B56" + brightRed: "#FB987E" + brightGreen: "#56C682" + brightYellow: "#CDB048" + brightBlue: "#81B1FE" + brightMagenta: "#E4BBF2" + brightCyan: "#62D1E6" + brightWhite: "#E2D6C1" +meta: + mode: "dark" + accent: "orange" + hue: 78 + pair: null + contrast: + fg: 60.7 + black: 15.5 + red: 45 + green: 44.8 + yellow: 44.9 + blue: 43.9 + magenta: 44 + cyan: 58.3 + white: 45 + brightBlack: 22.7 + brightRed: 57.8 + brightGreen: 57.3 + brightYellow: 57.6 + brightBlue: 56.4 + brightMagenta: 70.8 + brightCyan: 66.9 + brightWhite: 79.3 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-3-green.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-3-green.yaml new file mode 100644 index 00000000..a1f686e8 --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-3-green.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 3 🟢 Green)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#1E2A20" + fg: "#AABFAD" + black: "#506153" + red: "#EF7756" + green: "#42AD6E" + yellow: "#BA962E" + blue: "#6E96F2" + magenta: "#BC80E2" + cyan: "#49C2D8" + white: "#8DA290" + brightBlack: "#5F7362" + brightRed: "#FB987E" + brightGreen: "#56C682" + brightYellow: "#CDB048" + brightBlue: "#81B1FE" + brightMagenta: "#E4BBF2" + brightCyan: "#62D1E6" + brightWhite: "#CADECD" +meta: + mode: "dark" + accent: "orange" + hue: 149 + pair: null + contrast: + fg: 61.6 + black: 15.9 + red: 44.9 + green: 44.6 + yellow: 44.7 + blue: 43.7 + magenta: 43.8 + cyan: 58.1 + white: 45.8 + brightBlack: 23.2 + brightRed: 57.6 + brightGreen: 57.1 + brightYellow: 57.5 + brightBlue: 56.2 + brightMagenta: 70.7 + brightCyan: 66.7 + brightWhite: 80.1 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-4-blue.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-4-blue.yaml new file mode 100644 index 00000000..dde2b47a --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-4-blue.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 4 🔵 Blue)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#1B2832" + fg: "#A6BCCC" + black: "#4D5F6C" + red: "#EF7756" + green: "#42AD6E" + yellow: "#BA962E" + blue: "#6E96F2" + magenta: "#BC80E2" + cyan: "#49C2D8" + white: "#889FB0" + brightBlack: "#5B707F" + brightRed: "#FB987E" + brightGreen: "#56C682" + brightYellow: "#CDB048" + brightBlue: "#81B1FE" + brightMagenta: "#E4BBF2" + brightCyan: "#62D1E6" + brightWhite: "#C6DBEA" +meta: + mode: "dark" + accent: "orange" + hue: 242 + pair: null + contrast: + fg: 61.3 + black: 16 + red: 45 + green: 44.7 + yellow: 44.8 + blue: 43.8 + magenta: 43.9 + cyan: 58.2 + white: 45.5 + brightBlack: 23 + brightRed: 57.7 + brightGreen: 57.2 + brightYellow: 57.6 + brightBlue: 56.3 + brightMagenta: 70.8 + brightCyan: 66.8 + brightWhite: 79.7 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-5-purple.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-5-purple.yaml new file mode 100644 index 00000000..d7de0a42 --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-5-purple.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 5 🟣 Purple)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#282431" + fg: "#BBB4CB" + black: "#5F586B" + red: "#EF7756" + green: "#42AD6E" + yellow: "#BA962E" + blue: "#6E96F2" + magenta: "#BC80E2" + cyan: "#49C2D8" + white: "#9E97AF" + brightBlack: "#70697E" + brightRed: "#FB987E" + brightGreen: "#56C682" + brightYellow: "#CDB048" + brightBlue: "#81B1FE" + brightMagenta: "#E4BBF2" + brightCyan: "#62D1E6" + brightWhite: "#DAD3E9" +meta: + mode: "dark" + accent: "orange" + hue: 299 + pair: null + contrast: + fg: 60.5 + black: 15.4 + red: 45.1 + green: 44.8 + yellow: 44.9 + blue: 43.9 + magenta: 44.1 + cyan: 58.4 + white: 44.8 + brightBlack: 22.6 + brightRed: 57.8 + brightGreen: 57.3 + brightYellow: 57.7 + brightBlue: 56.4 + brightMagenta: 70.9 + brightCyan: 66.9 + brightWhite: 78.7 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-brown.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-brown.yaml new file mode 100644 index 00000000..e3c53e41 --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-brown.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 🟤 Brown)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#1A1112" + fg: "#796E6F" + black: "#3D3334" + red: "#C37051" + green: "#44936B" + yellow: "#988540" + blue: "#6C81C5" + magenta: "#A373B6" + cyan: "#59A5B9" + white: "#675B5C" + brightBlack: "#483E3F" + brightRed: "#CF8A71" + brightGreen: "#55A97E" + brightYellow: "#A99B55" + brightBlue: "#7D98D1" + brightMagenta: "#C5A4CA" + brightCyan: "#6AB2C5" + brightWhite: "#8E8183" +meta: + mode: "dark" + accent: "orange" + hue: 11 + pair: null + contrast: + fg: 26.9 + black: 0 + red: 37.2 + green: 36.3 + yellow: 37 + blue: 35.9 + magenta: 36.6 + cyan: 47.5 + white: 18.9 + brightBlack: 7.9 + brightRed: 47.6 + brightGreen: 46.7 + brightYellow: 47.3 + brightBlue: 46.1 + brightMagenta: 58.2 + brightCyan: 54.4 + brightWhite: 36 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-muted.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-muted.yaml new file mode 100644 index 00000000..c5732f0d --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-muted.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 🩶 Muted)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#2D343D" + fg: "#BECAD5" + black: "#626B76" + red: "#D6867E" + green: "#6DA56E" + yellow: "#BC944E" + blue: "#6F9CD7" + magenta: "#A98FD2" + cyan: "#5FC1C9" + white: "#A2ACB7" + brightBlack: "#737C87" + brightRed: "#EF9D95" + brightGreen: "#84BD84" + brightYellow: "#D0AD65" + brightBlue: "#7EB6EE" + brightMagenta: "#D9C0F2" + brightCyan: "#74D0D7" + brightWhite: "#DEE9F5" +meta: + mode: "dark" + accent: "purple" + hue: 255 + pair: null + contrast: + fg: 67.6 + black: 18.8 + red: 42.6 + green: 40.7 + yellow: 42 + blue: 41.6 + magenta: 42.3 + cyan: 55.2 + white: 50.7 + brightBlack: 26.5 + brightRed: 55 + brightGreen: 53.2 + brightYellow: 54.5 + brightBlue: 54.4 + brightMagenta: 68.4 + brightCyan: 63.8 + brightWhite: 86.7 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-vampire.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-vampire.yaml new file mode 100644 index 00000000..faa38c1a --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-dimmed-vampire.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark Dimmed 🧛 Vampire)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#1A1433" + fg: "#877EBD" + black: "#42396C" + red: "#DF854D" + green: "#3AAB89" + yellow: "#A69E4C" + blue: "#32A7D6" + magenta: "#8996EC" + cyan: "#69C3AF" + white: "#7267A9" + brightBlack: "#4F4480" + brightRed: "#ECA277" + brightGreen: "#4EC49F" + brightYellow: "#B7B864" + brightBlue: "#5EBEE2" + brightMagenta: "#C4C7FB" + brightCyan: "#7DD2BD" + brightWhite: "#9E97D1" +meta: + mode: "dark" + accent: "yellow" + hue: 289 + pair: null + contrast: + fg: 36.3 + black: 7.4 + red: 47.5 + green: 46.2 + yellow: 47.4 + blue: 47.8 + magenta: 47.5 + cyan: 60.2 + white: 26.1 + brightBlack: 11.8 + brightRed: 60 + brightGreen: 58.8 + brightYellow: 60.2 + brightBlue: 59.8 + brightMagenta: 73.7 + brightCyan: 68.8 + brightWhite: 48.4 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-1-red.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-1-red.yaml new file mode 100644 index 00000000..8135669e --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-1-red.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark High Contrast 1 🔴 Red)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#1F0F14" + fg: "#FFF9FF" + black: "#A3838C" + red: "#FF9492" + green: "#26CD4D" + yellow: "#F0B72F" + blue: "#71B7FF" + magenta: "#CB9EFF" + cyan: "#39C5CF" + white: "#FCE3EA" + brightBlack: "#C9A9B1" + brightRed: "#FFB1AF" + brightGreen: "#4AE168" + brightYellow: "#F7C843" + brightBlue: "#91CBFF" + brightMagenta: "#DBB7FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 360 + pair: null + contrast: + fg: 104.3 + black: 39.5 + red: 60.2 + green: 60.7 + yellow: 68 + blue: 60.2 + magenta: 59.9 + cyan: 61.1 + white: 92.9 + brightBlack: 59.4 + brightRed: 70.9 + brightGreen: 71.7 + brightYellow: 76.1 + brightBlue: 71 + brightMagenta: 71.1 + brightCyan: 69.7 + brightWhite: 107.1 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-2-orange.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-2-orange.yaml new file mode 100644 index 00000000..3cc35471 --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-2-orange.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark High Contrast 2 🟠 Orange)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#1C1305" + fg: "#FFFFEE" + black: "#9B8B72" + red: "#FF9492" + green: "#26CD4D" + yellow: "#F0B72F" + blue: "#71B7FF" + magenta: "#CB9EFF" + cyan: "#39C5CF" + white: "#F5E9D6" + brightBlack: "#C0B096" + brightRed: "#FFB1AF" + brightGreen: "#4AE168" + brightYellow: "#F7C843" + brightBlue: "#91CBFF" + brightMagenta: "#DBB7FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFE" +meta: + mode: "dark" + accent: "green" + hue: 78 + pair: null + contrast: + fg: 106.3 + black: 40.3 + red: 60.2 + green: 60.6 + yellow: 67.9 + blue: 60.1 + magenta: 59.8 + cyan: 61.1 + white: 93.6 + brightBlack: 59.8 + brightRed: 70.8 + brightGreen: 71.7 + brightYellow: 76 + brightBlue: 70.9 + brightMagenta: 71.1 + brightCyan: 69.6 + brightWhite: 107 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-3-green.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-3-green.yaml new file mode 100644 index 00000000..dfc20061 --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-3-green.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark High Contrast 3 🟢 Green)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#0B180E" + fg: "#F5FFF7" + black: "#7C9581" + red: "#FF9492" + green: "#26CD4D" + yellow: "#F0B72F" + blue: "#71B7FF" + magenta: "#CB9EFF" + cyan: "#39C5CF" + white: "#DEF0E1" + brightBlack: "#A1BAA5" + brightRed: "#FFB1AF" + brightGreen: "#4AE168" + brightYellow: "#F7C843" + brightBlue: "#91CBFF" + brightMagenta: "#DBB7FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 151 + pair: null + contrast: + fg: 105.3 + black: 41.1 + red: 60.1 + green: 60.6 + yellow: 67.9 + blue: 60.1 + magenta: 59.8 + cyan: 61 + white: 94.1 + brightBlack: 60.7 + brightRed: 70.8 + brightGreen: 71.6 + brightYellow: 76 + brightBlue: 70.9 + brightMagenta: 71 + brightCyan: 69.6 + brightWhite: 107 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-4-blue.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-4-blue.yaml new file mode 100644 index 00000000..bd840858 --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-4-blue.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark High Contrast 4 🔵 Blue)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#071620" + fg: "#F2FFFF" + black: "#7891A4" + red: "#FF9492" + green: "#26CD4D" + yellow: "#F0B72F" + blue: "#71B7FF" + magenta: "#CB9EFF" + cyan: "#39C5CF" + white: "#DAEEFC" + brightBlack: "#9CB7CA" + brightRed: "#FFB1AF" + brightGreen: "#4AE168" + brightYellow: "#F7C843" + brightBlue: "#91CBFF" + brightMagenta: "#DBB7FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 239 + pair: null + contrast: + fg: 105.3 + black: 40.6 + red: 60.2 + green: 60.6 + yellow: 67.9 + blue: 60.1 + magenta: 59.8 + cyan: 61 + white: 94 + brightBlack: 60.5 + brightRed: 70.8 + brightGreen: 71.6 + brightYellow: 76 + brightBlue: 70.9 + brightMagenta: 71.1 + brightCyan: 69.6 + brightWhite: 107 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-5-purple.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-5-purple.yaml new file mode 100644 index 00000000..8c74b32e --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-high-contrast-5-purple.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark High Contrast 5 🟣 Purple)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#171220" + fg: "#FFFDFF" + black: "#9188A3" + red: "#FF9492" + green: "#26CD4D" + yellow: "#F0B72F" + blue: "#71B7FF" + magenta: "#CB9EFF" + cyan: "#39C5CF" + white: "#EDE7FC" + brightBlack: "#B6ADC9" + brightRed: "#FFB1AF" + brightGreen: "#4AE168" + brightYellow: "#F7C843" + brightBlue: "#91CBFF" + brightMagenta: "#DBB7FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 300 + pair: null + contrast: + fg: 106.1 + black: 39.9 + red: 60.2 + green: 60.6 + yellow: 68 + blue: 60.1 + magenta: 59.9 + cyan: 61.1 + white: 93.3 + brightBlack: 59.4 + brightRed: 70.9 + brightGreen: 71.7 + brightYellow: 76.1 + brightBlue: 71 + brightMagenta: 71.1 + brightCyan: 69.6 + brightWhite: 107.1 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-muted.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-muted.yaml new file mode 100644 index 00000000..165cb14e --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-muted.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark 🩶 Muted)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#161C25" + fg: "#D6E2ED" + black: "#555D67" + red: "#E19088" + green: "#74AE77" + yellow: "#C59D58" + blue: "#76A7E0" + magenta: "#B499DD" + cyan: "#5FC1C9" + white: "#C0CAD6" + brightBlack: "#7C8590" + brightRed: "#F3A8A0" + brightGreen: "#8BC68E" + brightYellow: "#D8B66D" + brightBlue: "#88BFF1" + brightMagenta: "#CEADF1" + brightCyan: "#74D0D7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + pair: null + contrast: + fg: 86.6 + black: 17.4 + red: 52.3 + green: 49.6 + yellow: 51.1 + blue: 51.3 + magenta: 52.1 + cyan: 59.6 + white: 72.3 + brightBlack: 35.1 + brightRed: 64.3 + brightGreen: 62.5 + brightYellow: 63.8 + brightBlue: 63.5 + brightMagenta: 63.9 + brightCyan: 68.2 + brightWhite: 106.3 diff --git a/themes/a-colorful-github-theme-pack--a-github-dark-vampire.yaml b/themes/a-colorful-github-theme-pack--a-github-dark-vampire.yaml new file mode 100644 index 00000000..3b831497 --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-dark-vampire.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Dark 🧛 Vampire)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#181625" + fg: "#FFFFFF" + black: "#656379" + red: "#EA8F59" + green: "#00B990" + yellow: "#AFA84F" + blue: "#3BB1DF" + magenta: "#93A0FB" + cyan: "#69C3AF" + white: "#EBE8FF" + brightBlack: "#9693AE" + brightRed: "#EEAE89" + brightGreen: "#0ED3A7" + brightYellow: "#BFC16A" + brightBlue: "#71C7E3" + brightMagenta: "#B2B7FF" + brightCyan: "#7DD2BD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 290 + pair: null + contrast: + fg: 106.8 + black: 21.6 + red: 53 + green: 52.2 + yellow: 52.6 + blue: 52.9 + magenta: 53.3 + cyan: 60.3 + white: 93.3 + brightBlack: 44.4 + brightRed: 65.3 + brightGreen: 65.1 + brightYellow: 65.2 + brightBlue: 65 + brightMagenta: 65.5 + brightCyan: 69 + brightWhite: 106.8 diff --git a/themes/a-colorful-github-theme-pack--a-github-light-1-red.yaml b/themes/a-colorful-github-theme-pack--a-github-light-1-red.yaml new file mode 100644 index 00000000..43268dff --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-light-1-red.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Light 1 🔴 Red)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#F5F5F5" + fg: "#342026" + black: "#342026" + red: "#E1000D" + green: "#006906" + yellow: "#5B2200" + blue: "#0061F5" + magenta: "#873BF8" + cyan: "#00838F" + white: "#896670" + brightBlack: "#724F5A" + brightRed: "#B5000E" + brightGreen: "#008517" + brightYellow: "#723200" + brightBlue: "#0086FF" + brightMagenta: "#A966FF" + brightCyan: "#0097BD" + brightWhite: "#A6838D" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 96.1 + black: 96.1 + red: 65.6 + green: 77.4 + yellow: 91.9 + blue: 68.8 + magenta: 68.9 + cyan: 64.9 + white: 68.6 + brightBlack: 78.4 + brightRed: 75.8 + brightGreen: 66.6 + brightYellow: 85.8 + brightBlue: 56.6 + brightMagenta: 55.9 + brightCyan: 55 + brightWhite: 55 diff --git a/themes/a-colorful-github-theme-pack--a-github-light-2-orange.yaml b/themes/a-colorful-github-theme-pack--a-github-light-2-orange.yaml new file mode 100644 index 00000000..113fe72d --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-light-2-orange.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Light 2 🟠 Orange)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#F5F5F5" + fg: "#2F2513" + black: "#2F2513" + red: "#E1000D" + green: "#006906" + yellow: "#5B2200" + blue: "#0061F5" + magenta: "#873BF8" + cyan: "#00838F" + white: "#806E52" + brightBlack: "#69583B" + brightRed: "#B5000E" + brightGreen: "#008517" + brightYellow: "#723200" + brightBlue: "#0086FF" + brightMagenta: "#A966FF" + brightCyan: "#0097BD" + brightWhite: "#9D8B6F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 95.9 + black: 95.9 + red: 65.6 + green: 77.4 + yellow: 91.9 + blue: 68.8 + magenta: 68.9 + cyan: 64.9 + white: 68.1 + brightBlack: 77.7 + brightRed: 75.8 + brightGreen: 66.6 + brightYellow: 85.8 + brightBlue: 56.6 + brightMagenta: 55.9 + brightCyan: 55 + brightWhite: 54.4 diff --git a/themes/a-colorful-github-theme-pack--a-github-light-3-green.yaml b/themes/a-colorful-github-theme-pack--a-github-light-3-green.yaml new file mode 100644 index 00000000..cc760057 --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-light-3-green.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Light 3 🟢 Green)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#F5F5F5" + fg: "#1B2B1E" + black: "#1B2B1E" + red: "#E1000D" + green: "#006906" + yellow: "#5B2200" + blue: "#0061F5" + magenta: "#873BF8" + cyan: "#00838F" + white: "#5E7963" + brightBlack: "#47634C" + brightRed: "#B5000E" + brightGreen: "#008517" + brightYellow: "#723200" + brightBlue: "#0086FF" + brightMagenta: "#A966FF" + brightCyan: "#0097BD" + brightWhite: "#7B9680" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 95.7 + black: 95.7 + red: 65.6 + green: 77.4 + yellow: 91.9 + blue: 68.8 + magenta: 68.9 + cyan: 64.9 + white: 67.2 + brightBlack: 76.9 + brightRed: 75.8 + brightGreen: 66.6 + brightYellow: 85.8 + brightBlue: 56.6 + brightMagenta: 55.9 + brightCyan: 55 + brightWhite: 53.5 diff --git a/themes/a-colorful-github-theme-pack--a-github-light-4-blue.yaml b/themes/a-colorful-github-theme-pack--a-github-light-4-blue.yaml new file mode 100644 index 00000000..6949de1c --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-light-4-blue.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Light 4 🔵 Blue)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#F5F5F5" + fg: "#172935" + black: "#172935" + red: "#E1000D" + green: "#006906" + yellow: "#5B2200" + blue: "#0061F5" + magenta: "#873BF8" + cyan: "#00838F" + white: "#58758A" + brightBlack: "#415F74" + brightRed: "#B5000E" + brightGreen: "#008517" + brightYellow: "#723200" + brightBlue: "#0086FF" + brightMagenta: "#A966FF" + brightCyan: "#0097BD" + brightWhite: "#7592A7" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 95.8 + black: 95.8 + red: 65.6 + green: 77.4 + yellow: 91.9 + blue: 68.8 + magenta: 68.9 + cyan: 64.9 + white: 67.7 + brightBlack: 77.2 + brightRed: 75.8 + brightGreen: 66.6 + brightYellow: 85.8 + brightBlue: 56.6 + brightMagenta: 55.9 + brightCyan: 55 + brightWhite: 54 diff --git a/themes/a-colorful-github-theme-pack--a-github-light-5-purple.yaml b/themes/a-colorful-github-theme-pack--a-github-light-5-purple.yaml new file mode 100644 index 00000000..cc0d493d --- /dev/null +++ b/themes/a-colorful-github-theme-pack--a-github-light-5-purple.yaml @@ -0,0 +1,53 @@ +name: "A Colorful GitHub Theme Pack (A GitHub Light 5 🟣 Purple)" +source: + marketplace_id: "markmiro.colorful-github-vscode-theme" + version: "6.8.0" + installs: 894 + rating: 5 + ratings: 1 + author: "Mark Miro" + repo: "https://github.com/markmiro/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=markmiro.colorful-github-vscode-theme" + formats: null +colors: + bg: "#F5F5F5" + fg: "#292334" + black: "#292334" + red: "#E1000D" + green: "#006906" + yellow: "#5B2200" + blue: "#0061F5" + magenta: "#873BF8" + cyan: "#00838F" + white: "#756B89" + brightBlack: "#5F5573" + brightRed: "#B5000E" + brightGreen: "#008517" + brightYellow: "#723200" + brightBlue: "#0086FF" + brightMagenta: "#A966FF" + brightCyan: "#0097BD" + brightWhite: "#9288A6" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 96.1 + black: 96.1 + red: 65.6 + green: 77.4 + yellow: 91.9 + blue: 68.8 + magenta: 68.9 + cyan: 64.9 + white: 68.5 + brightBlack: 78 + brightRed: 75.8 + brightGreen: 66.6 + brightYellow: 85.8 + brightBlue: 56.6 + brightMagenta: 55.9 + brightCyan: 55 + brightWhite: 54.8 diff --git a/themes/a-cup-of-coffee--light-red.yaml b/themes/a-cup-of-coffee--light-red.yaml new file mode 100644 index 00000000..28938c55 --- /dev/null +++ b/themes/a-cup-of-coffee--light-red.yaml @@ -0,0 +1,53 @@ +name: "a-cup-of-coffee (Light Red)" +source: + marketplace_id: "HenriLima05.a-cup-of-coffee" + version: "0.0.2" + installs: 4677 + rating: 5 + ratings: 3 + author: "Henri Lima" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HenriLima05.a-cup-of-coffee" + formats: null +colors: + bg: "#FBFBFB" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 103.6 + black: 103.6 + red: 71.6 + green: 46.8 + yellow: 55.5 + blue: 83.7 + magenta: 72.2 + cyan: 58.2 + white: 83.5 + brightBlack: 76.4 + brightRed: 71.6 + brightGreen: 38.5 + brightYellow: 38.5 + brightBlue: 83.7 + brightMagenta: 72.2 + brightCyan: 58.2 + brightWhite: 46.1 diff --git a/themes/a-galaxy-far-far-away-theme--rogue-squadron.yaml b/themes/a-galaxy-far-far-away-theme--rogue-squadron.yaml new file mode 100644 index 00000000..b7fe8fe0 --- /dev/null +++ b/themes/a-galaxy-far-far-away-theme--rogue-squadron.yaml @@ -0,0 +1,53 @@ +name: "A Galaxy Far, Far Away Theme (Rogue Squadron)" +source: + marketplace_id: "DanMad.a-galaxy-far-far-away-theme" + version: "3.3.1" + installs: 4614 + rating: 5 + ratings: 3 + author: "DanMad" + repo: "https://github.com/danmad/a-galaxy-far-far-away-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DanMad.a-galaxy-far-far-away-theme" + formats: null +colors: + bg: "#010203" + fg: "#CACDCF" + black: "#04070B" + red: "#BC5F5D" + green: "#85ADBC" + yellow: "#C1B398" + blue: "#538397" + magenta: "#BC5F5D" + cyan: "#85ADBC" + white: "#C1B398" + brightBlack: "#538397" + brightRed: "#BC5F5D" + brightGreen: "#85ADBC" + brightYellow: "#C1B398" + brightBlue: "#538397" + brightMagenta: "#BC5F5D" + brightCyan: "#85ADBC" + brightWhite: "#C1B398" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 76 + black: 0 + red: 32.7 + green: 54.5 + yellow: 62 + blue: 33.2 + magenta: 32.7 + cyan: 54.5 + white: 62 + brightBlack: 33.2 + brightRed: 32.7 + brightGreen: 54.5 + brightYellow: 62 + brightBlue: 33.2 + brightMagenta: 32.7 + brightCyan: 54.5 + brightWhite: 62 diff --git a/themes/a-galaxy-far-far-away-theme--the-empire.yaml b/themes/a-galaxy-far-far-away-theme--the-empire.yaml new file mode 100644 index 00000000..1feaf220 --- /dev/null +++ b/themes/a-galaxy-far-far-away-theme--the-empire.yaml @@ -0,0 +1,53 @@ +name: "A Galaxy Far, Far Away Theme (The Empire)" +source: + marketplace_id: "DanMad.a-galaxy-far-far-away-theme" + version: "3.3.1" + installs: 4614 + rating: 5 + ratings: 3 + author: "DanMad" + repo: "https://github.com/danmad/a-galaxy-far-far-away-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DanMad.a-galaxy-far-far-away-theme" + formats: null +colors: + bg: "#010203" + fg: "#BECBD8" + black: "#04070B" + red: "#F50A0A" + green: "#BEC4B7" + yellow: "#FBFCFD" + blue: "#777D72" + magenta: "#F50A0A" + cyan: "#BEC4B7" + white: "#FBFCFD" + brightBlack: "#777D72" + brightRed: "#F50A0A" + brightGreen: "#BEC4B7" + brightYellow: "#FBFCFD" + brightBlue: "#777D72" + brightMagenta: "#F50A0A" + brightCyan: "#BEC4B7" + brightWhite: "#FBFCFD" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 74.1 + black: 0 + red: 35.1 + green: 69.7 + yellow: 105.8 + blue: 32.4 + magenta: 35.1 + cyan: 69.7 + white: 105.8 + brightBlack: 32.4 + brightRed: 35.1 + brightGreen: 69.7 + brightYellow: 105.8 + brightBlue: 32.4 + brightMagenta: 35.1 + brightCyan: 69.7 + brightWhite: 105.8 diff --git a/themes/a-m-themes.yaml b/themes/a-m-themes.yaml new file mode 100644 index 00000000..16761534 --- /dev/null +++ b/themes/a-m-themes.yaml @@ -0,0 +1,53 @@ +name: "A.M. Themes" +source: + marketplace_id: "alexeymasasin.amthemes" + version: "0.2.1" + installs: 91 + rating: 0 + ratings: 0 + author: "Alexey Masasin" + repo: "https://github.com/alexeymasasin/am-themes" + url: "https://marketplace.visualstudio.com/items?itemName=alexeymasasin.amthemes" + formats: null +colors: + bg: "#111018" + fg: "#F5FAFF" + black: "#666666" + red: "#BC3333" + green: "#45D393" + yellow: "#B0A153" + blue: "#8258DE" + magenta: "#BC41C9" + cyan: "#029CC2" + white: "#E5E5E5" + brightBlack: "#969696" + brightRed: "#E63F3F" + brightGreen: "#53FFB1" + brightYellow: "#DBC965" + brightBlue: "#915FFF" + brightMagenta: "#D64BE4" + brightCyan: "#03B4E0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 290 + pair: null + contrast: + fg: 103.6 + black: 22.5 + red: 23.8 + green: 65.9 + yellow: 50.6 + blue: 28.5 + magenta: 31.4 + cyan: 42.5 + white: 90.5 + brightBlack: 45.1 + brightRed: 34.6 + brightGreen: 89.5 + brightYellow: 72.9 + brightBlue: 34.6 + brightMagenta: 39.6 + brightCyan: 54.2 + brightWhite: 90.5 diff --git a/themes/a-pastel-fever-dream.yaml b/themes/a-pastel-fever-dream.yaml new file mode 100644 index 00000000..241a86a3 --- /dev/null +++ b/themes/a-pastel-fever-dream.yaml @@ -0,0 +1,53 @@ +name: "A Pastel Fever Dream" +source: + marketplace_id: "Mubariz.a-pastel-fever-dream" + version: "1.0.1" + installs: 4451 + rating: 0 + ratings: 0 + author: "Mubariz" + repo: "https://github.com/Cyna298/a-pastel-fever-dream" + url: "https://marketplace.visualstudio.com/items?itemName=Mubariz.a-pastel-fever-dream" + formats: null +colors: + bg: "#1E1E1E" + fg: "#BEBEBE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 65.6 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/a24--minimal.yaml b/themes/a24--minimal.yaml new file mode 100644 index 00000000..d11a5233 --- /dev/null +++ b/themes/a24--minimal.yaml @@ -0,0 +1,53 @@ +name: "A24 (Minimal)" +source: + marketplace_id: "YesCode.24" + version: "0.0.12" + installs: 79 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/y3mm/24" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.24" + formats: null +colors: + bg: "#313A42" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#C8EDFF" + brightYellow: "#E7F0FF" + brightBlue: "#9CFCF4" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 245 + pair: null + contrast: + fg: 98 + black: 0 + red: 35.4 + green: 54.4 + yellow: 66.5 + blue: 41 + magenta: 13 + cyan: 42.9 + white: 40.7 + brightBlack: 12 + brightRed: 35.4 + brightGreen: 84.9 + brightYellow: 90 + brightBlue: 87.5 + brightMagenta: 13 + brightCyan: 42.9 + brightWhite: 92.3 diff --git a/themes/abolkog-theme--abolkog-dark.yaml b/themes/abolkog-theme--abolkog-dark.yaml new file mode 100644 index 00000000..2acc6aed --- /dev/null +++ b/themes/abolkog-theme--abolkog-dark.yaml @@ -0,0 +1,53 @@ +name: "ABOLKOG theme (ABOLKOG Dark)" +source: + marketplace_id: "abolkog.vscode-abolkog-light" + version: "1.1.0" + installs: 2731 + rating: 5 + ratings: 1 + author: "Khalid Elshafie" + repo: "https://github.com/abolkog/vscode-abolkog-theme" + url: "https://marketplace.visualstudio.com/items?itemName=abolkog.vscode-abolkog-light" + formats: null +colors: + bg: "#282C34" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 82.2 + black: 0 + red: 29.8 + green: 58.5 + yellow: 73.2 + blue: 45.4 + magenta: 43.3 + cyan: 59.5 + white: 89.1 + brightBlack: 12.2 + brightRed: 29.8 + brightGreen: 58.5 + brightYellow: 73.2 + brightBlue: 45.4 + brightMagenta: 43.3 + brightCyan: 57.4 + brightWhite: 93 diff --git a/themes/abolkog-theme--abolkog-light.yaml b/themes/abolkog-theme--abolkog-light.yaml new file mode 100644 index 00000000..b9f38e68 --- /dev/null +++ b/themes/abolkog-theme--abolkog-light.yaml @@ -0,0 +1,53 @@ +name: "ABOLKOG theme (ABOLKOG Light)" +source: + marketplace_id: "abolkog.vscode-abolkog-light" + version: "1.1.0" + installs: 2731 + rating: 5 + ratings: 1 + author: "Khalid Elshafie" + repo: "https://github.com/abolkog/vscode-abolkog-theme" + url: "https://marketplace.visualstudio.com/items?itemName=abolkog.vscode-abolkog-light" + formats: null +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.5 + black: 93.4 + red: 67.7 + green: 39.7 + yellow: 25.7 + blue: 52.2 + magenta: 54.3 + cyan: 38.7 + white: 10.7 + brightBlack: 85.6 + brightRed: 67.7 + brightGreen: 39.7 + brightYellow: 25.7 + brightBlue: 52.2 + brightMagenta: 54.3 + brightCyan: 40.7 + brightWhite: 0 diff --git a/themes/abyski.yaml b/themes/abyski.yaml new file mode 100644 index 00000000..3906b02b --- /dev/null +++ b/themes/abyski.yaml @@ -0,0 +1,53 @@ +name: "Abyski" +source: + marketplace_id: "jamiesmiths.abyski" + version: "0.0.15" + installs: 2359 + rating: 5 + ratings: 2 + author: "jamiesmiths" + repo: "https://github.com/jsmithdev/abyski" + url: "https://marketplace.visualstudio.com/items?itemName=jamiesmiths.abyski" + formats: null +colors: + bg: "#0C0C18" + fg: "#DDDDDD" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#3AFFC4" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 283 + pair: null + contrast: + fg: 85.7 + black: 0 + red: 64.1 + green: 91.6 + yellow: 96.5 + blue: 82 + magenta: 75.5 + cyan: 96.6 + white: 75.4 + brightBlack: 0 + brightRed: 52.4 + brightGreen: 89.7 + brightYellow: 91.2 + brightBlue: 62.9 + brightMagenta: 51 + brightCyan: 94.6 + brightWhite: 107.6 diff --git a/themes/abyssal--abyssal-anime.yaml b/themes/abyssal--abyssal-anime.yaml new file mode 100644 index 00000000..05310c85 --- /dev/null +++ b/themes/abyssal--abyssal-anime.yaml @@ -0,0 +1,53 @@ +name: "Abyssal (Abyssal-Anime)" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 43 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" + formats: null +colors: + bg: "#14110F" + fg: "#E6DFD6" + black: "#14110F" + red: "#E07A5F" + green: "#A3B18A" + yellow: "#E6B566" + blue: "#7DAEA3" + magenta: "#B48EAD" + cyan: "#89B0AE" + white: "#E6DFD6" + brightBlack: "#8F867C" + brightRed: "#E07A5F" + brightGreen: "#A3B18A" + brightYellow: "#E6B566" + brightBlue: "#7DAEA3" + brightMagenta: "#B48EAD" + brightCyan: "#89B0AE" + brightWhite: "#E6DFD6" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.3 + black: 0 + red: 45.6 + green: 56.6 + yellow: 66.4 + blue: 52.7 + magenta: 46.9 + cyan: 54.9 + white: 87.3 + brightBlack: 37.7 + brightRed: 45.6 + brightGreen: 56.6 + brightYellow: 66.4 + brightBlue: 52.7 + brightMagenta: 46.9 + brightCyan: 54.9 + brightWhite: 87.3 diff --git a/themes/abyssal--abyssal-black.yaml b/themes/abyssal--abyssal-black.yaml new file mode 100644 index 00000000..d2e57a09 --- /dev/null +++ b/themes/abyssal--abyssal-black.yaml @@ -0,0 +1,53 @@ +name: "Abyssal (Abyssal-Black)" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 43 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" + formats: null +colors: + bg: "#0D0D0D" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#A4A4A4" + green: "#B6B6B6" + yellow: "#CECECE" + blue: "#8D8D8D" + magenta: "#9B9B9B" + cyan: "#B0B0B0" + white: "#FFFFFF" + brightBlack: "#8D8D8D" + brightRed: "#A4A4A4" + brightGreen: "#B6B6B6" + brightYellow: "#CECECE" + brightBlue: "#8D8D8D" + brightMagenta: "#9B9B9B" + brightCyan: "#B0B0B0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 107.6 + black: 0 + red: 52.7 + green: 62.6 + yellow: 76.6 + blue: 40.8 + magenta: 48 + cyan: 59.3 + white: 107.6 + brightBlack: 40.8 + brightRed: 52.7 + brightGreen: 62.6 + brightYellow: 76.6 + brightBlue: 40.8 + brightMagenta: 48 + brightCyan: 59.3 + brightWhite: 107.6 diff --git a/themes/abyssal--abyssal-catppuccin.yaml b/themes/abyssal--abyssal-catppuccin.yaml new file mode 100644 index 00000000..defdc532 --- /dev/null +++ b/themes/abyssal--abyssal-catppuccin.yaml @@ -0,0 +1,53 @@ +name: "Abyssal (Abyssal-Catppuccin)" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 43 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" + formats: null +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#1E1E2E" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#CDD6F4" + brightBlack: "#6C7086" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#94E2D5" + brightWhite: "#CDD6F4" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 80 + black: 0 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 76.7 + cyan: 78.2 + white: 80 + brightBlack: 25.8 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 88.4 + brightBlue: 59.1 + brightMagenta: 76.7 + brightCyan: 78.2 + brightWhite: 80 diff --git a/themes/abyssal--abyssal-dark.yaml b/themes/abyssal--abyssal-dark.yaml new file mode 100644 index 00000000..d52ac0db --- /dev/null +++ b/themes/abyssal--abyssal-dark.yaml @@ -0,0 +1,53 @@ +name: "Abyssal (Abyssal-Dark)" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 43 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" + formats: null +colors: + bg: "#061115" + fg: "#D9D7D6" + black: "#061115" + red: "#DF5B61" + green: "#78B892" + yellow: "#ECD28B" + blue: "#6791C9" + magenta: "#C488EC" + cyan: "#7ACFE4" + white: "#D9D7D6" + brightBlack: "#455054" + brightRed: "#DF5B61" + brightGreen: "#78B892" + brightYellow: "#ECD28B" + brightBlue: "#5A84BC" + brightMagenta: "#C488EC" + brightCyan: "#7ACFE4" + brightWhite: "#D9D7D6" +meta: + mode: "dark" + accent: "orange" + hue: 222 + pair: null + contrast: + fg: 82.1 + black: 0 + red: 38.2 + green: 56.1 + yellow: 80.1 + blue: 41.6 + magenta: 50.9 + cyan: 69.9 + white: 82.1 + brightBlack: 13.1 + brightRed: 38.2 + brightGreen: 56.1 + brightYellow: 80.1 + brightBlue: 35.4 + brightMagenta: 50.9 + brightCyan: 69.9 + brightWhite: 82.1 diff --git a/themes/abyssal--abyssal-dracula.yaml b/themes/abyssal--abyssal-dracula.yaml new file mode 100644 index 00000000..4c61bfa9 --- /dev/null +++ b/themes/abyssal--abyssal-dracula.yaml @@ -0,0 +1,53 @@ +name: "Abyssal (Abyssal-Dracula)" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 43 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" + formats: null +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#282A36" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#6272A4" + magenta: "#BD93F9" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#6272A4" + brightMagenta: "#BD93F9" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: null + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 25.1 + magenta: 50.7 + cyan: 81 + white: 99 + brightBlack: 25.1 + brightRed: 40.4 + brightGreen: 81.9 + brightYellow: 95.6 + brightBlue: 25.1 + brightMagenta: 50.7 + brightCyan: 81 + brightWhite: 99 diff --git a/themes/abyssal--abyssal-e-ink.yaml b/themes/abyssal--abyssal-e-ink.yaml new file mode 100644 index 00000000..e6621e60 --- /dev/null +++ b/themes/abyssal--abyssal-e-ink.yaml @@ -0,0 +1,53 @@ +name: "Abyssal (Abyssal-E-Ink)" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 43 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#2A2A2A" + green: "#3A3A3A" + yellow: "#4A4A4A" + blue: "#1A1A1A" + magenta: "#2E2E2E" + cyan: "#3E3E3E" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#2A2A2A" + brightGreen: "#3A3A3A" + brightYellow: "#4A4A4A" + brightBlue: "#1A1A1A" + brightMagenta: "#2E2E2E" + brightCyan: "#3E3E3E" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 101.1 + green: 96.3 + yellow: 90.3 + blue: 104.3 + magenta: 100.1 + cyan: 94.8 + white: 0 + brightBlack: 90.3 + brightRed: 101.1 + brightGreen: 96.3 + brightYellow: 90.3 + brightBlue: 104.3 + brightMagenta: 100.1 + brightCyan: 94.8 + brightWhite: 0 diff --git a/themes/abyssal--abyssal-everforest.yaml b/themes/abyssal--abyssal-everforest.yaml new file mode 100644 index 00000000..1ab15580 --- /dev/null +++ b/themes/abyssal--abyssal-everforest.yaml @@ -0,0 +1,53 @@ +name: "Abyssal (Abyssal-Everforest)" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 43 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" + formats: null +colors: + bg: "#2D353B" + fg: "#D3C6AA" + black: "#2D353B" + red: "#E67E80" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#83C092" + white: "#D3C6AA" + brightBlack: "#606B6F" + brightRed: "#E67E80" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#7FBBB3" + brightMagenta: "#D699B6" + brightCyan: "#83C092" + brightWhite: "#D3C6AA" +meta: + mode: "dark" + accent: "orange" + hue: 240 + pair: null + contrast: + fg: 66.6 + black: 0 + red: 43.1 + green: 57.5 + yellow: 62.4 + blue: 53.4 + magenta: 50.5 + cyan: 54.7 + white: 66.6 + brightBlack: 18.3 + brightRed: 43.1 + brightGreen: 57.5 + brightYellow: 62.4 + brightBlue: 53.4 + brightMagenta: 50.5 + brightCyan: 54.7 + brightWhite: 66.6 diff --git a/themes/abyssal--abyssal-gruvbox.yaml b/themes/abyssal--abyssal-gruvbox.yaml new file mode 100644 index 00000000..b6638e7d --- /dev/null +++ b/themes/abyssal--abyssal-gruvbox.yaml @@ -0,0 +1,53 @@ +name: "Abyssal (Abyssal-Gruvbox)" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 43 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" + formats: null +colors: + bg: "#282828" + fg: "#D4BE98" + black: "#282828" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#7C6F64" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#D4BE98" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.6 + black: 0 + red: 40.5 + green: 55.6 + yellow: 55.4 + blue: 49.8 + magenta: 45.5 + cyan: 52.2 + white: 65.6 + brightBlack: 24.5 + brightRed: 40.5 + brightGreen: 55.6 + brightYellow: 55.4 + brightBlue: 49.8 + brightMagenta: 45.5 + brightCyan: 52.2 + brightWhite: 65.6 diff --git a/themes/abyssal--abyssal-hacker.yaml b/themes/abyssal--abyssal-hacker.yaml new file mode 100644 index 00000000..b261c634 --- /dev/null +++ b/themes/abyssal--abyssal-hacker.yaml @@ -0,0 +1,53 @@ +name: "Abyssal (Abyssal-Hacker)" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 43 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" + formats: null +colors: + bg: "#0B0C16" + fg: "#DDF7FF" + black: "#0B0C16" + red: "#50F872" + green: "#4FE88F" + yellow: "#50F7D4" + blue: "#829DD4" + magenta: "#86A7DF" + cyan: "#7CF8F7" + white: "#DDF7FF" + brightBlack: "#6A6E95" + brightRed: "#50F872" + brightGreen: "#4FE88F" + brightYellow: "#50F7D4" + brightBlue: "#829DD4" + brightMagenta: "#86A7DF" + brightCyan: "#7CF8F7" + brightWhite: "#DDF7FF" +meta: + mode: "dark" + accent: "green" + hue: 279 + pair: null + contrast: + fg: 99.3 + black: 0 + red: 84.4 + green: 76.7 + yellow: 86.8 + blue: 49 + magenta: 53.8 + cyan: 90.8 + white: 99.3 + brightBlack: 27.4 + brightRed: 84.4 + brightGreen: 76.7 + brightYellow: 86.8 + brightBlue: 49 + brightMagenta: 53.8 + brightCyan: 90.8 + brightWhite: 99.3 diff --git a/themes/abyssal--abyssal-latte.yaml b/themes/abyssal--abyssal-latte.yaml new file mode 100644 index 00000000..8e95712d --- /dev/null +++ b/themes/abyssal--abyssal-latte.yaml @@ -0,0 +1,53 @@ +name: "Abyssal (Abyssal-Latte)" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 43 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" + formats: null +colors: + bg: "#EFF1F5" + fg: "#4C4F69" + black: "#4C4F69" + red: "#D20F39" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#EA76CB" + cyan: "#179299" + white: "#EFF1F5" + brightBlack: "#6C6F85" + brightRed: "#D20F39" + brightGreen: "#40A02B" + brightYellow: "#DF8E1D" + brightBlue: "#1E66F5" + brightMagenta: "#EA76CB" + brightCyan: "#179299" + brightWhite: "#EFF1F5" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 79.3 + black: 79.3 + red: 66.3 + green: 52.1 + yellow: 42.3 + blue: 64.8 + magenta: 42.6 + cyan: 56.1 + white: 0 + brightBlack: 65.8 + brightRed: 66.3 + brightGreen: 52.1 + brightYellow: 42.3 + brightBlue: 64.8 + brightMagenta: 42.6 + brightCyan: 56.1 + brightWhite: 0 diff --git a/themes/abyssal--abyssal-nord.yaml b/themes/abyssal--abyssal-nord.yaml new file mode 100644 index 00000000..bc547855 --- /dev/null +++ b/themes/abyssal--abyssal-nord.yaml @@ -0,0 +1,53 @@ +name: "Abyssal (Abyssal-Nord)" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 43 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" + formats: null +colors: + bg: "#2E3440" + fg: "#D8DEE9" + black: "#2E3440" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#ECEFF4" + brightBlack: "#616E88" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 80.3 + black: 0 + red: 27.9 + green: 56.6 + yellow: 71.3 + blue: 43.6 + magenta: 41.4 + cyan: 57.6 + white: 91.2 + brightBlack: 20.3 + brightRed: 27.9 + brightGreen: 56.6 + brightYellow: 71.3 + brightBlue: 43.6 + brightMagenta: 41.4 + brightCyan: 57.6 + brightWhite: 91.2 diff --git a/themes/abyssal--abyssal-tokyo-night.yaml b/themes/abyssal--abyssal-tokyo-night.yaml new file mode 100644 index 00000000..de7b0b2c --- /dev/null +++ b/themes/abyssal--abyssal-tokyo-night.yaml @@ -0,0 +1,53 @@ +name: "Abyssal (Abyssal-Tokyo-Night)" +source: + marketplace_id: "zen0x.abyssal" + version: "0.0.5" + installs: 43 + rating: 0 + ratings: 0 + author: "zen0x" + repo: "https://github.com/zen0x00/abyssal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zen0x.abyssal" + formats: null +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#1A1B26" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#AD8EE6" + cyan: "#449DAB" + white: "#A9B1D6" + brightBlack: "#565F89" + brightRed: "#F7768E" + brightGreen: "#9ECE6A" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#AD8EE6" + brightCyan: "#449DAB" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 59.3 + black: 0 + red: 49.4 + green: 66.9 + yellow: 62.2 + blue: 51.1 + magenta: 48.1 + cyan: 41.8 + white: 59.3 + brightBlack: 19.5 + brightRed: 49.4 + brightGreen: 66.9 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 48.1 + brightCyan: 41.8 + brightWhite: 73.8 diff --git a/themes/ac-theme.yaml b/themes/ac-theme.yaml new file mode 100644 index 00000000..06ed29c4 --- /dev/null +++ b/themes/ac-theme.yaml @@ -0,0 +1,53 @@ +name: "ac-theme" +source: + marketplace_id: "acidev.ac-theme" + version: "0.0.51" + installs: 207 + rating: 5 + ratings: 1 + author: "acidev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=acidev.ac-theme" + formats: null +colors: + bg: "#FFFFFE" + fg: "#475569" + black: "#333333" + red: "#BD5151" + green: "#547000" + yellow: "#9C5E1C" + blue: "#057D9E" + magenta: "#726293" + cyan: "#127D52" + white: "#F3F2F2" + brightBlack: "#666666" + brightRed: "#BD5151" + brightGreen: "#547000" + brightYellow: "#9C5E1C" + brightBlue: "#057D9E" + brightMagenta: "#726293" + brightCyan: "#127D52" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 86.3 + black: 98.6 + red: 72 + green: 78.2 + yellow: 75.5 + blue: 72.3 + magenta: 76.9 + cyan: 75 + white: 0 + brightBlack: 78.7 + brightRed: 72 + brightGreen: 78.2 + brightYellow: 75.5 + brightBlue: 72.3 + brightMagenta: 76.9 + brightCyan: 75 + brightWhite: 0 diff --git a/themes/acme-go-playground-themes--acme.yaml b/themes/acme-go-playground-themes--acme.yaml new file mode 100644 index 00000000..342f3af4 --- /dev/null +++ b/themes/acme-go-playground-themes--acme.yaml @@ -0,0 +1,53 @@ +name: "Acme, Go Playground Themes (Acme)" +source: + marketplace_id: "aaqaIshtyaq.themes-go-acme" + version: "0.0.5" + installs: 2248 + rating: 0 + ratings: 0 + author: "Aaqa Ishtyaq" + repo: "https://github.com/aaqaishtyaq/themes-go-acme" + url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.themes-go-acme" + formats: null +colors: + bg: "#FFFFEA" + fg: "#000000" + black: "#000000" + red: "#000000" + green: "#000000" + yellow: "#000000" + blue: "#000000" + magenta: "#000000" + cyan: "#000000" + white: "#000000" + brightBlack: "#EEEE9E" + brightRed: "#000000" + brightGreen: "#000000" + brightYellow: "#000000" + brightBlue: "#000000" + brightMagenta: "#000000" + brightCyan: "#000000" + brightWhite: "#000000" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 105.2 + black: 105.2 + red: 105.2 + green: 105.2 + yellow: 105.2 + blue: 105.2 + magenta: 105.2 + cyan: 105.2 + white: 105.2 + brightBlack: 9.4 + brightRed: 105.2 + brightGreen: 105.2 + brightYellow: 105.2 + brightBlue: 105.2 + brightMagenta: 105.2 + brightCyan: 105.2 + brightWhite: 105.2 diff --git a/themes/acme-go-playground-themes--go-playground.yaml b/themes/acme-go-playground-themes--go-playground.yaml new file mode 100644 index 00000000..f71397fe --- /dev/null +++ b/themes/acme-go-playground-themes--go-playground.yaml @@ -0,0 +1,53 @@ +name: "Acme, Go Playground Themes (Go - Playground)" +source: + marketplace_id: "aaqaIshtyaq.themes-go-acme" + version: "0.0.5" + installs: 2248 + rating: 0 + ratings: 0 + author: "Aaqa Ishtyaq" + repo: "https://github.com/aaqaishtyaq/themes-go-acme" + url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.themes-go-acme" + formats: null +colors: + bg: "#FFFFDD" + fg: "#000000" + black: "#000000" + red: "#000000" + green: "#000000" + yellow: "#000000" + blue: "#000000" + magenta: "#000000" + cyan: "#000000" + white: "#000000" + brightBlack: "#D4D4C6" + brightRed: "#000000" + brightGreen: "#000000" + brightYellow: "#000000" + brightBlue: "#000000" + brightMagenta: "#000000" + brightCyan: "#000000" + brightWhite: "#000000" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 104.7 + black: 104.7 + red: 104.7 + green: 104.7 + yellow: 104.7 + blue: 104.7 + magenta: 104.7 + cyan: 104.7 + white: 104.7 + brightBlack: 22 + brightRed: 104.7 + brightGreen: 104.7 + brightYellow: 104.7 + brightBlue: 104.7 + brightMagenta: 104.7 + brightCyan: 104.7 + brightWhite: 104.7 diff --git a/themes/acme-go-playground-themes--go-source.yaml b/themes/acme-go-playground-themes--go-source.yaml new file mode 100644 index 00000000..3d2c3861 --- /dev/null +++ b/themes/acme-go-playground-themes--go-source.yaml @@ -0,0 +1,53 @@ +name: "Acme, Go Playground Themes (Go - Source)" +source: + marketplace_id: "aaqaIshtyaq.themes-go-acme" + version: "0.0.5" + installs: 2248 + rating: 0 + ratings: 0 + author: "Aaqa Ishtyaq" + repo: "https://github.com/aaqaishtyaq/themes-go-acme" + url: "https://marketplace.visualstudio.com/items?itemName=aaqaIshtyaq.themes-go-acme" + formats: null +colors: + bg: "#EFEFEF" + fg: "#000000" + black: "#000000" + red: "#000000" + green: "#000000" + yellow: "#000000" + blue: "#000000" + magenta: "#000000" + cyan: "#000000" + white: "#000000" + brightBlack: "#D4D4C6" + brightRed: "#000000" + brightGreen: "#000000" + brightYellow: "#000000" + brightBlue: "#000000" + brightMagenta: "#000000" + brightCyan: "#000000" + brightWhite: "#000000" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 96.5 + black: 96.5 + red: 96.5 + green: 96.5 + yellow: 96.5 + blue: 96.5 + magenta: 96.5 + cyan: 96.5 + white: 96.5 + brightBlack: 13.8 + brightRed: 96.5 + brightGreen: 96.5 + brightYellow: 96.5 + brightBlue: 96.5 + brightMagenta: 96.5 + brightCyan: 96.5 + brightWhite: 96.5 diff --git a/themes/acs-motion-control.yaml b/themes/acs-motion-control.yaml new file mode 100644 index 00000000..70ca2ec0 --- /dev/null +++ b/themes/acs-motion-control.yaml @@ -0,0 +1,53 @@ +name: "ACS-Motion-Control" +source: + marketplace_id: "ACSPL.acsplext" + version: "0.30.0" + installs: 510 + rating: 0 + ratings: 0 + author: "ACSPL" + repo: "https://github.com/BarPupko/ACSPL-vscode-Extenstion" + url: "https://marketplace.visualstudio.com/items?itemName=ACSPL.acsplext" + formats: null +colors: + bg: "#1E1A1A" + fg: "#E8E0DC" + black: "#2D2422" + red: "#C77F72" + green: "#8BA87F" + yellow: "#C9A572" + blue: "#8A9DB8" + magenta: "#B58A9F" + cyan: "#7FA5A0" + white: "#D4CBC7" + brightBlack: "#5A4D4A" + brightRed: "#D89386" + brightGreen: "#A0BA95" + brightYellow: "#DBB889" + brightBlue: "#9FB0CA" + brightMagenta: "#C9A0B3" + brightCyan: "#95BAB5" + brightWhite: "#E8E0DC" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.3 + black: 0 + red: 42.1 + green: 49.3 + yellow: 55.2 + blue: 47 + magenta: 44.3 + cyan: 48.1 + white: 74.6 + brightBlack: 12.7 + brightRed: 51.8 + brightGreen: 59.5 + brightYellow: 65.7 + brightBlue: 57.4 + brightMagenta: 55.5 + brightCyan: 59.6 + brightWhite: 87.3 diff --git a/themes/actually-minimalistic.yaml b/themes/actually-minimalistic.yaml new file mode 100644 index 00000000..21368cdb --- /dev/null +++ b/themes/actually-minimalistic.yaml @@ -0,0 +1,53 @@ +name: "Actually Minimalistic" +source: + marketplace_id: "arcvaw.arcvscode" + version: "2.0.0" + installs: 312 + rating: 5 + ratings: 2 + author: "arcvaw" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=arcvaw.arcvscode" + formats: null +colors: + bg: "#0F0F0F" + fg: "#A3A3A3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 52.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/adam.yaml b/themes/adam.yaml new file mode 100644 index 00000000..c61877e8 --- /dev/null +++ b/themes/adam.yaml @@ -0,0 +1,53 @@ +name: "Adam" +source: + marketplace_id: "origin.adam" + version: "0.1.2" + installs: 1985 + rating: 5 + ratings: 1 + author: "Ricardo Brito" + repo: "https://github.com/souzk/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=origin.adam" + formats: null +colors: + bg: "#FCFCFD" + fg: "#9393A8" + black: "#787892" + red: "#F7768E" + green: "#79F391" + yellow: "#FFDB89" + blue: "#8DDDFF" + magenta: "#B1B2FF" + cyan: "#8DDDFF" + white: "#FCFCFD" + brightBlack: "#9393A8" + brightRed: "#F7768E" + brightGreen: "#79F391" + brightYellow: "#FFDB89" + brightBlue: "#8DDDFF" + brightMagenta: "#B1B2FF" + brightCyan: "#8DDDFF" + brightWhite: "#F7F7F8" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 55.1 + black: 67.9 + red: 49.2 + green: 17.2 + yellow: 14.6 + blue: 21.9 + magenta: 36.1 + cyan: 21.9 + white: 0 + brightBlack: 55.1 + brightRed: 49.2 + brightGreen: 17.2 + brightYellow: 14.6 + brightBlue: 21.9 + brightMagenta: 36.1 + brightCyan: 21.9 + brightWhite: 0 diff --git a/themes/adey-coder-theme--adey-coder-deep-dark.yaml b/themes/adey-coder-theme--adey-coder-deep-dark.yaml new file mode 100644 index 00000000..c9983e1a --- /dev/null +++ b/themes/adey-coder-theme--adey-coder-deep-dark.yaml @@ -0,0 +1,53 @@ +name: "Adey Coder Theme (Adey Coder - Deep dark)" +source: + marketplace_id: "AdeyCoder.adey-coder-dark" + version: "1.0.3" + installs: 1788 + rating: 5 + ratings: 1 + author: "Adey Coder" + repo: "https://github.com/yohanstesfaye/adey-coder-dark" + url: "https://marketplace.visualstudio.com/items?itemName=AdeyCoder.adey-coder-dark" + formats: null +colors: + bg: "#0E150E" + fg: "#FFFFFF" + black: "#363636" + red: "#FF7776" + green: "#9BFF9B" + yellow: "#F0FF77" + blue: "#5060FF" + magenta: "#FF81F7" + cyan: "#89FFFF" + white: "#EDEDED" + brightBlack: "#A3A3A3" + brightRed: "#FFA8A8" + brightGreen: "#9EFF9E" + brightYellow: "#F5FF8A" + brightBlue: "#94A9FF" + brightMagenta: "#FFB1FA" + brightCyan: "#BDFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 145 + pair: null + contrast: + fg: 107.2 + black: 0 + red: 51.5 + green: 92.6 + yellow: 100.8 + blue: 28.9 + magenta: 59.7 + cyan: 95.2 + white: 95.4 + brightBlack: 51.8 + brightRed: 67.5 + brightGreen: 92.9 + brightYellow: 101.8 + brightBlue: 57.4 + brightMagenta: 74.5 + brightCyan: 99.3 + brightWhite: 107.2 diff --git a/themes/adey-coder-theme--adey-coder.yaml b/themes/adey-coder-theme--adey-coder.yaml new file mode 100644 index 00000000..0fe6fc70 --- /dev/null +++ b/themes/adey-coder-theme--adey-coder.yaml @@ -0,0 +1,53 @@ +name: "Adey Coder Theme (Adey Coder)" +source: + marketplace_id: "AdeyCoder.adey-coder-dark" + version: "1.0.3" + installs: 1788 + rating: 5 + ratings: 1 + author: "Adey Coder" + repo: "https://github.com/yohanstesfaye/adey-coder-dark" + url: "https://marketplace.visualstudio.com/items?itemName=AdeyCoder.adey-coder-dark" + formats: null +colors: + bg: "#121F12" + fg: "#FFFFFF" + black: "#363636" + red: "#FF7776" + green: "#6BFF6B" + yellow: "#F0FF57" + blue: "#5060FF" + magenta: "#FF81F7" + cyan: "#59FFFF" + white: "#EDEDED" + brightBlack: "#A3A3A3" + brightRed: "#FFA8A8" + brightGreen: "#9EFF9E" + brightYellow: "#F5FF8A" + brightBlue: "#94A9FF" + brightMagenta: "#FFB1FA" + brightCyan: "#BDFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 144 + pair: null + contrast: + fg: 106.3 + black: 0 + red: 50.6 + green: 87.7 + yellow: 99.4 + blue: 28 + magenta: 58.8 + cyan: 91.9 + white: 94.5 + brightBlack: 50.9 + brightRed: 66.6 + brightGreen: 92 + brightYellow: 100.9 + brightBlue: 56.5 + brightMagenta: 73.5 + brightCyan: 98.4 + brightWhite: 106.3 diff --git a/themes/adonis-theme--adonis.yaml b/themes/adonis-theme--adonis.yaml new file mode 100644 index 00000000..7f06588b --- /dev/null +++ b/themes/adonis-theme--adonis.yaml @@ -0,0 +1,53 @@ +name: "Adonis Theme (Adonis+)" +source: + marketplace_id: "saeed-nazari.adonis-theme" + version: "5.1.0" + installs: 17286 + rating: 5 + ratings: 8 + author: "Saeed Nazari" + repo: "https://github.com/saeed-nazari/vsc-theme-adonis" + url: "https://marketplace.visualstudio.com/items?itemName=saeed-nazari.adonis-theme" + formats: null +colors: + bg: "#272A2F" + fg: "#CCCCCC" + black: "#272A2F" + red: "#FA6780" + green: "#9DD56E" + yellow: "#A4D676" + blue: "#FDB772" + magenta: "#D9BDF8" + cyan: "#7DD5F4" + white: "#CCCCCC" + brightBlack: "#272A2F" + brightRed: "#FA6780" + brightGreen: "#9DD56E" + brightYellow: "#A4D676" + brightBlue: "#FDB772" + brightMagenta: "#D9BDF8" + brightCyan: "#7DD5F4" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: 261 + pair: null + contrast: + fg: 71.9 + black: 0 + red: 43.9 + green: 67.9 + yellow: 69.2 + blue: 68 + magenta: 69.7 + cyan: 70.3 + white: 71.9 + brightBlack: 0 + brightRed: 43.9 + brightGreen: 67.9 + brightYellow: 69.2 + brightBlue: 68 + brightMagenta: 69.7 + brightCyan: 70.3 + brightWhite: 71.9 diff --git a/themes/adr-theme.yaml b/themes/adr-theme.yaml new file mode 100644 index 00000000..1ba2b81d --- /dev/null +++ b/themes/adr-theme.yaml @@ -0,0 +1,53 @@ +name: "adr-theme" +source: + marketplace_id: "batdavid70.david" + version: "0.0.1" + installs: 235 + rating: 0 + ratings: 0 + author: "batdavid70" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=batdavid70.david" + formats: null +colors: + bg: "#0B0E11" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.2 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.3 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/advpara.yaml b/themes/advpara.yaml new file mode 100644 index 00000000..faa76efa --- /dev/null +++ b/themes/advpara.yaml @@ -0,0 +1,53 @@ +name: "advpara" +source: + marketplace_id: "graciew1125.advpara" + version: "0.0.1" + installs: 79 + rating: 0 + ratings: 0 + author: "graciew1125" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=graciew1125.advpara" + formats: null +colors: + bg: "#CFEAEA" + fg: "#4F6A8F" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#FFEAFF" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#F0D689" +meta: + mode: "light" + accent: "pink" + hue: 197 + pair: null + contrast: + fg: 62.1 + black: 90.5 + red: 58.4 + green: 33.7 + yellow: 42.4 + blue: 70.5 + magenta: 59 + cyan: 45 + white: 0 + brightBlack: 63.2 + brightRed: 58.4 + brightGreen: 25.4 + brightYellow: 25.4 + brightBlue: 70.5 + brightMagenta: 59 + brightCyan: 45 + brightWhite: 0 diff --git a/themes/adwaita-base16.yaml b/themes/adwaita-base16.yaml new file mode 100644 index 00000000..7ee80efb --- /dev/null +++ b/themes/adwaita-base16.yaml @@ -0,0 +1,53 @@ +name: "Adwaita Base16" +source: + marketplace_id: "kesmarag.adwaita-base16" + version: "0.0.2" + installs: 7556 + rating: 0 + ratings: 0 + author: "Costas Smaragdakis" + repo: "https://github.com/kesmarag/adwaita-base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kesmarag.adwaita-base16" + formats: null +colors: + bg: "#1D1F21" + fg: "#C5C8C6" + black: "#000000" + red: "#CC6666" + green: "#B5BD68" + yellow: "#F0C674" + blue: "#81A2BE" + magenta: "#B294BB" + cyan: "#8ABEB7" + white: "#FFFFFF" + brightBlack: "#1D1F21" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#F0C674" + brightBlue: "#81A2BE" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 70.9 + black: 0 + red: 35.5 + green: 61.5 + yellow: 73.7 + blue: 47.9 + magenta: 47.9 + cyan: 59.9 + white: 105.9 + brightBlack: 0 + brightRed: 35.5 + brightGreen: 61.5 + brightYellow: 73.7 + brightBlue: 47.9 + brightMagenta: 47.9 + brightCyan: 59.9 + brightWhite: 105.9 diff --git a/themes/aether-sublime-coding-experience--aether-emerald.yaml b/themes/aether-sublime-coding-experience--aether-emerald.yaml new file mode 100644 index 00000000..b2198411 --- /dev/null +++ b/themes/aether-sublime-coding-experience--aether-emerald.yaml @@ -0,0 +1,53 @@ +name: "Aether - Sublime Coding Experience (Aether Emerald)" +source: + marketplace_id: "YonasValentinMougaardKristensen.aether-theme" + version: "1.9.3" + installs: 366 + rating: 5 + ratings: 1 + author: "Yonas Valentin Mougaard Kristensen" + repo: "https://github.com/YonasValentin/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=YonasValentinMougaardKristensen.aether-theme" + formats: null +colors: + bg: "#0D1117" + fg: "#E6F1FF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#8BE9FD" + magenta: "#BD93F9" + cyan: "#8BE9FD" + white: "#E6F1FF" + brightBlack: "#30363D" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#A4FFFF" + brightMagenta: "#D6ACFF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 258 + pair: null + contrast: + fg: 97.4 + black: 0 + red: 43.9 + green: 85.4 + yellow: 99.1 + blue: 84.5 + magenta: 54.2 + cyan: 84.5 + white: 97.4 + brightBlack: 0 + brightRed: 49.3 + brightGreen: 89.6 + brightYellow: 104.1 + brightBlue: 97.3 + brightMagenta: 66.6 + brightCyan: 97.3 + brightWhite: 107.4 diff --git a/themes/aether-themes--aether-coffee-dark.yaml b/themes/aether-themes--aether-coffee-dark.yaml new file mode 100644 index 00000000..fb5d0a29 --- /dev/null +++ b/themes/aether-themes--aether-coffee-dark.yaml @@ -0,0 +1,53 @@ +name: "Aether Themes (Aether Coffee Dark)" +source: + marketplace_id: "diogo-aether.aether-dark" + version: "1.4.0" + installs: 204 + rating: 5 + ratings: 1 + author: "Diogo Pereira" + repo: "https://github.com/Diiipereira/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" + formats: null +colors: + bg: "#080706" + fg: "#D8CCB8" + black: "#080706" + red: "#B86060" + green: "#88A868" + yellow: "#B8A840" + blue: "#7898A8" + magenta: "#9880B0" + cyan: "#6898A0" + white: "#6E6050" + brightBlack: "#3A3020" + brightRed: "#C87878" + brightGreen: "#A8C888" + brightYellow: "#D8C860" + brightBlue: "#98B8C8" + brightMagenta: "#B8A0C8" + brightCyan: "#88B8B0" + brightWhite: "#D8CCB8" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 76.4 + black: 0 + red: 32.2 + green: 49.9 + yellow: 54.6 + blue: 44.2 + magenta: 39.4 + cyan: 42.7 + white: 21.4 + brightBlack: 0 + brightRed: 41.8 + brightGreen: 67.4 + brightYellow: 72.4 + brightBlue: 61.2 + brightMagenta: 55.5 + brightCyan: 58.8 + brightWhite: 76.4 diff --git a/themes/aether-themes--aether-coffee.yaml b/themes/aether-themes--aether-coffee.yaml new file mode 100644 index 00000000..018201ce --- /dev/null +++ b/themes/aether-themes--aether-coffee.yaml @@ -0,0 +1,53 @@ +name: "Aether Themes (Aether Coffee)" +source: + marketplace_id: "diogo-aether.aether-dark" + version: "1.4.0" + installs: 204 + rating: 5 + ratings: 1 + author: "Diogo Pereira" + repo: "https://github.com/Diiipereira/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" + formats: null +colors: + bg: "#1E1810" + fg: "#F0DFC0" + black: "#1E1810" + red: "#E07878" + green: "#90B870" + yellow: "#C8B040" + blue: "#7AA8C0" + magenta: "#C090B8" + cyan: "#70A8A0" + white: "#9A8A72" + brightBlack: "#5A4830" + brightRed: "#E89898" + brightGreen: "#B0D090" + brightYellow: "#E0D060" + brightBlue: "#A0C8E0" + brightMagenta: "#E0B0D8" + brightCyan: "#90C8C0" + brightWhite: "#F0DFC0" +meta: + mode: "dark" + accent: "green" + hue: 75 + pair: null + contrast: + fg: 87.1 + black: 0 + red: 45 + green: 56.3 + yellow: 58.7 + blue: 50.6 + magenta: 49.1 + cyan: 48.4 + white: 39.4 + brightBlack: 11.1 + brightRed: 56.9 + brightGreen: 70.8 + brightYellow: 75.8 + brightBlue: 68.8 + brightMagenta: 66.6 + brightCyan: 65.9 + brightWhite: 87.1 diff --git a/themes/aether-themes--aether-dark-space.yaml b/themes/aether-themes--aether-dark-space.yaml new file mode 100644 index 00000000..8a4b74a4 --- /dev/null +++ b/themes/aether-themes--aether-dark-space.yaml @@ -0,0 +1,53 @@ +name: "Aether Themes (Aether Dark Space)" +source: + marketplace_id: "diogo-aether.aether-dark" + version: "1.4.0" + installs: 204 + rating: 5 + ratings: 1 + author: "Diogo Pereira" + repo: "https://github.com/Diiipereira/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" + formats: null +colors: + bg: "#0F0B14" + fg: "#E3E1E6" + black: "#0F0B14" + red: "#FF5F5F" + green: "#4FFFD0" + yellow: "#FFCB6B" + blue: "#7ACFFF" + magenta: "#BD5EFF" + cyan: "#5EE6FF" + white: "#7A6E8A" + brightBlack: "#3A2850" + brightRed: "#FF8080" + brightGreen: "#8AFFDE" + brightYellow: "#FFE0A3" + brightBlue: "#A3E4FF" + brightMagenta: "#D699FF" + brightCyan: "#99F2FF" + brightWhite: "#E3E1E6" +meta: + mode: "dark" + accent: "magenta" + hue: 305 + pair: null + contrast: + fg: 88.7 + black: 0 + red: 46.1 + green: 90.7 + yellow: 79.7 + blue: 71.6 + magenta: 40.8 + cyan: 80.9 + white: 28.5 + brightBlack: 0 + brightRed: 54.5 + brightGreen: 94.1 + brightYellow: 89.9 + brightBlue: 84.3 + brightMagenta: 60.4 + brightCyan: 90.2 + brightWhite: 88.7 diff --git a/themes/aether-themes--aether-dark.yaml b/themes/aether-themes--aether-dark.yaml new file mode 100644 index 00000000..0f6de16e --- /dev/null +++ b/themes/aether-themes--aether-dark.yaml @@ -0,0 +1,53 @@ +name: "Aether Themes (Aether Dark)" +source: + marketplace_id: "diogo-aether.aether-dark" + version: "1.4.0" + installs: 204 + rating: 5 + ratings: 1 + author: "Diogo Pereira" + repo: "https://github.com/Diiipereira/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" + formats: null +colors: + bg: "#0D0F13" + fg: "#E2E8F0" + black: "#0D0F13" + red: "#F87171" + green: "#86EFAC" + yellow: "#FBBF24" + blue: "#93C5FD" + magenta: "#C4B5FD" + cyan: "#5EEAD4" + white: "#94A3B8" + brightBlack: "#3D4A5C" + brightRed: "#FCA5A5" + brightGreen: "#BBF7D0" + brightYellow: "#FDE047" + brightBlue: "#BFDBFE" + brightMagenta: "#DDD6FE" + brightCyan: "#99F6E4" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.1 + black: 0 + red: 48.7 + green: 83.7 + yellow: 73.3 + blue: 68.8 + magenta: 67.5 + cyan: 80.6 + white: 51.4 + brightBlack: 11.3 + brightRed: 66.2 + brightGreen: 93.4 + brightYellow: 87.8 + brightBlue: 82.8 + brightMagenta: 84.2 + brightCyan: 90.7 + brightWhite: 92.1 diff --git a/themes/aether-themes--aether-emerald.yaml b/themes/aether-themes--aether-emerald.yaml new file mode 100644 index 00000000..0508c80d --- /dev/null +++ b/themes/aether-themes--aether-emerald.yaml @@ -0,0 +1,53 @@ +name: "Aether Themes (Aether Emerald)" +source: + marketplace_id: "diogo-aether.aether-dark" + version: "1.4.0" + installs: 204 + rating: 5 + ratings: 1 + author: "Diogo Pereira" + repo: "https://github.com/Diiipereira/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" + formats: null +colors: + bg: "#0D1311" + fg: "#E2E8F0" + black: "#0D1311" + red: "#F87171" + green: "#34D399" + yellow: "#FBBF24" + blue: "#38BDF8" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#6A8A80" + brightBlack: "#2D5045" + brightRed: "#FCA5A5" + brightGreen: "#6EE7B7" + brightYellow: "#FCD34D" + brightBlue: "#7DD3FC" + brightMagenta: "#E879F9" + brightCyan: "#67E8F9" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "pink" + hue: 173 + pair: null + contrast: + fg: 91.9 + black: 0 + red: 48.5 + green: 65.6 + yellow: 73.1 + blue: 60.1 + magenta: 50.1 + cyan: 69 + white: 35.8 + brightBlack: 11.3 + brightRed: 66 + brightGreen: 78.5 + brightYellow: 81.8 + brightBlue: 73.1 + brightMagenta: 53.5 + brightCyan: 81.6 + brightWhite: 91.9 diff --git a/themes/aether-themes--aether-light.yaml b/themes/aether-themes--aether-light.yaml new file mode 100644 index 00000000..3bda3db6 --- /dev/null +++ b/themes/aether-themes--aether-light.yaml @@ -0,0 +1,53 @@ +name: "Aether Themes (Aether Light)" +source: + marketplace_id: "diogo-aether.aether-dark" + version: "1.4.0" + installs: 204 + rating: 5 + ratings: 1 + author: "Diogo Pereira" + repo: "https://github.com/Diiipereira/aether-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diogo-aether.aether-dark" + formats: null +colors: + bg: "#F5F1ED" + fg: "#3D3835" + black: "#2C2826" + red: "#C76B6B" + green: "#4A7A5C" + yellow: "#A06840" + blue: "#3D7A7A" + magenta: "#8B5E83" + cyan: "#4A8080" + white: "#E8E2DB" + brightBlack: "#857D76" + brightRed: "#D98888" + brightGreen: "#6A9A7A" + brightYellow: "#C08050" + brightBlue: "#5A9898" + brightMagenta: "#A87AA0" + brightCyan: "#6AA0A0" + brightWhite: "#F5F1ED" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 88.7 + black: 93.4 + red: 55.8 + green: 66.3 + yellow: 63.9 + blue: 66 + magenta: 67.8 + cyan: 63 + white: 0 + brightBlack: 59.7 + brightRed: 43.9 + brightGreen: 51.4 + brightYellow: 51.7 + brightBlue: 52.2 + brightMagenta: 54.8 + brightCyan: 47.8 + brightWhite: 0 diff --git a/themes/afternoon-delight.yaml b/themes/afternoon-delight.yaml new file mode 100644 index 00000000..0fa040ae --- /dev/null +++ b/themes/afternoon-delight.yaml @@ -0,0 +1,53 @@ +name: "Afternoon Delight" +source: + marketplace_id: "magnush.afternoon-delight" + version: "2.0.2" + installs: 349 + rating: 5 + ratings: 1 + author: "Magnus Hvidtfeldt" + repo: "https://github.com/mch-sg/afternoon-delight" + url: "https://marketplace.visualstudio.com/items?itemName=magnush.afternoon-delight" + formats: null +colors: + bg: "#0D0D0D" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#FFB17A" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#DB889A" + cyan: "#5EAAB5" + white: "#FFFFFF" + brightBlack: "#393A34" + brightRed: "#CB7676" + brightGreen: "#FFB17A" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#DB889A" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 82 + black: 0 + red: 41.5 + green: 69.9 + yellow: 76.3 + blue: 42.1 + magenta: 50.7 + cyan: 50 + white: 107.6 + brightBlack: 0 + brightRed: 41.5 + brightGreen: 69.9 + brightYellow: 76.3 + brightBlue: 42.1 + brightMagenta: 50.7 + brightCyan: 50 + brightWhite: 107.6 diff --git a/themes/agathist-themes.yaml b/themes/agathist-themes.yaml new file mode 100644 index 00000000..8b56c18e --- /dev/null +++ b/themes/agathist-themes.yaml @@ -0,0 +1,53 @@ +name: "Agathist Themes" +source: + marketplace_id: "agathist.agathist-vscode-themes" + version: "0.1.3" + installs: 940 + rating: 0 + ratings: 0 + author: "Agathist" + repo: "https://github.com/agathist/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=agathist.agathist-vscode-themes" + formats: null +colors: + bg: "#0F172A" + fg: "#E2E8F0" + black: "#0F172A" + red: "#F43F5E" + green: "#34D399" + yellow: "#FB923C" + blue: "#FDA4AF" + magenta: "#FB7185" + cyan: "#22D3EE" + white: "#C4CAD4" + brightBlack: "#2D3546" + brightRed: "#CBD5E1" + brightGreen: "#22D3EE" + brightYellow: "#FB923C" + brightBlue: "#FDA4AF" + brightMagenta: "#FB7185" + brightCyan: "#22D3EE" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "orange" + hue: 266 + pair: null + contrast: + fg: 91.4 + black: 0 + red: 37.7 + green: 65.1 + yellow: 56.8 + blue: 65.6 + magenta: 49.2 + cyan: 68.5 + white: 73.1 + brightBlack: 0 + brightRed: 79.3 + brightGreen: 68.5 + brightYellow: 56.8 + brightBlue: 65.6 + brightMagenta: 49.2 + brightCyan: 68.5 + brightWhite: 91.4 diff --git a/themes/aim-themes--hack-and-lima.yaml b/themes/aim-themes--hack-and-lima.yaml new file mode 100644 index 00000000..9a395c67 --- /dev/null +++ b/themes/aim-themes--hack-and-lima.yaml @@ -0,0 +1,53 @@ +name: "Aim Themes (Hack-And-Lima🍋)" +source: + marketplace_id: "EmeAim.aim" + version: "0.0.8" + installs: 1799 + rating: 5 + ratings: 1 + author: "EmeAim" + repo: "https://github.com/EmePin/aim-themes" + url: "https://marketplace.visualstudio.com/items?itemName=EmeAim.aim" + formats: null +colors: + bg: "#202328" + fg: "#D9ED92" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + pair: null + contrast: + fg: 87.8 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 28.2 + cyan: 46 + white: 88.5 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.8 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/aim-themes--kai-sa-white-fork.yaml b/themes/aim-themes--kai-sa-white-fork.yaml new file mode 100644 index 00000000..3d85c3b1 --- /dev/null +++ b/themes/aim-themes--kai-sa-white-fork.yaml @@ -0,0 +1,53 @@ +name: "Aim Themes (Kai'sa - white - Fork)" +source: + marketplace_id: "EmeAim.aim" + version: "0.0.8" + installs: 1799 + rating: 5 + ratings: 1 + author: "EmeAim" + repo: "https://github.com/EmePin/aim-themes" + url: "https://marketplace.visualstudio.com/items?itemName=EmeAim.aim" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 48 + yellow: 17 + blue: 73.3 + magenta: 70.9 + cyan: 53.3 + white: 12.9 + brightBlack: 78.8 + brightRed: 62.1 + brightGreen: 37.9 + brightYellow: 7.7 + brightBlue: 60.7 + brightMagenta: 55.4 + brightCyan: 45.7 + brightWhite: 12.9 diff --git a/themes/aim-themes--kaisa-dark.yaml b/themes/aim-themes--kaisa-dark.yaml new file mode 100644 index 00000000..25c2f6c7 --- /dev/null +++ b/themes/aim-themes--kaisa-dark.yaml @@ -0,0 +1,53 @@ +name: "Aim Themes (Kaisa-Dark)" +source: + marketplace_id: "EmeAim.aim" + version: "0.0.8" + installs: 1799 + rating: 5 + ratings: 1 + author: "EmeAim" + repo: "https://github.com/EmePin/aim-themes" + url: "https://marketplace.visualstudio.com/items?itemName=EmeAim.aim" + formats: null +colors: + bg: "#232536" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 279 + pair: null + contrast: + fg: 77.4 + black: 0 + red: 24.6 + green: 50.9 + yellow: 83.5 + blue: 25.3 + magenta: 27.6 + cyan: 45.4 + white: 87.9 + brightBlack: 19.9 + brightRed: 36.4 + brightGreen: 61.4 + brightYellow: 93.5 + brightBlue: 37.9 + brightMagenta: 43.3 + brightCyan: 53.3 + brightWhite: 87.9 diff --git a/themes/akari--akari-dawn.yaml b/themes/akari--akari-dawn.yaml new file mode 100644 index 00000000..61147808 --- /dev/null +++ b/themes/akari--akari-dawn.yaml @@ -0,0 +1,57 @@ +name: "Akari (Akari Dawn)" +source: + marketplace_id: "cappyzawa.akari-theme" + version: "1.18.0" + installs: 59 + rating: 0 + ratings: 0 + author: "Shu Kutsuzawa" + repo: "https://github.com/cappyzawa/akari-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cappyzawa.akari-theme" + formats: + ghostty: "https://raw.githubusercontent.com/cappyzawa/akari-theme/main/dist/ghostty/README.md" + alacritty: "https://raw.githubusercontent.com/cappyzawa/akari-theme/main/dist/alacritty/akari-dawn.toml" + nvim: "https://raw.githubusercontent.com/cappyzawa/akari-theme/main/dist/nvim/lua/akari/highlights/editor.lua" + sublime: "https://raw.githubusercontent.com/cappyzawa/akari-theme/main/dist/bat/akari-dawn.tmTheme" +colors: + bg: "#E4DED6" + fg: "#1A1816" + black: "#1A1816" + red: "#6A2828" + green: "#3A5830" + yellow: "#B07840" + blue: "#304050" + magenta: "#806080" + cyan: "#305858" + white: "#E4DED6" + brightBlack: "#514B45" + brightRed: "#3E1717" + brightGreen: "#20301A" + brightYellow: "#78522C" + brightBlue: "#131A20" + brightMagenta: "#543F54" + brightCyan: "#152727" + brightWhite: "#D0C5B7" +meta: + mode: "light" + accent: "yellow" + hue: 75 + pair: null + contrast: + fg: 85.6 + black: 85.6 + red: 75.5 + green: 68.8 + yellow: 45.9 + blue: 75.7 + magenta: 57.8 + cyan: 68.3 + white: 0 + brightBlack: 70.6 + brightRed: 83.4 + brightGreen: 81.7 + brightYellow: 64.8 + brightBlue: 85.4 + brightMagenta: 72.9 + brightCyan: 83.5 + brightWhite: 11.4 diff --git a/themes/akari--akari-night.yaml b/themes/akari--akari-night.yaml new file mode 100644 index 00000000..a99abb25 --- /dev/null +++ b/themes/akari--akari-night.yaml @@ -0,0 +1,57 @@ +name: "Akari (Akari Night)" +source: + marketplace_id: "cappyzawa.akari-theme" + version: "1.18.0" + installs: 59 + rating: 0 + ratings: 0 + author: "Shu Kutsuzawa" + repo: "https://github.com/cappyzawa/akari-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cappyzawa.akari-theme" + formats: + ghostty: "https://raw.githubusercontent.com/cappyzawa/akari-theme/main/dist/ghostty/README.md" + alacritty: "https://raw.githubusercontent.com/cappyzawa/akari-theme/main/dist/alacritty/akari-dawn.toml" + nvim: "https://raw.githubusercontent.com/cappyzawa/akari-theme/main/dist/nvim/lua/akari/highlights/editor.lua" + sublime: "https://raw.githubusercontent.com/cappyzawa/akari-theme/main/dist/bat/akari-dawn.tmTheme" +colors: + bg: "#25231F" + fg: "#E6DED3" + black: "#1E1C19" + red: "#D25046" + green: "#7FAF6A" + yellow: "#D4A05A" + blue: "#7A8FA2" + magenta: "#8E7BA0" + cyan: "#6F8F8A" + white: "#E6DED3" + brightBlack: "#716A5F" + brightRed: "#DE7F77" + brightGreen: "#A1C492" + brightYellow: "#E4C397" + brightBlue: "#A7B5C1" + brightMagenta: "#B4A7C0" + brightCyan: "#9AB1AD" + brightWhite: "#EFEAE3" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 84.6 + black: 0 + red: 30.8 + green: 49.5 + yellow: 53.4 + blue: 38.2 + magenta: 33.3 + cyan: 36.3 + white: 84.6 + brightBlack: 22.5 + brightRed: 45.1 + brightGreen: 62.6 + brightYellow: 70.7 + brightBlue: 58.6 + brightMagenta: 54.6 + brightCyan: 54.8 + brightWhite: 92 diff --git a/themes/akashi-dark.yaml b/themes/akashi-dark.yaml new file mode 100644 index 00000000..a49b1d4f --- /dev/null +++ b/themes/akashi-dark.yaml @@ -0,0 +1,53 @@ +name: "akashi dark" +source: + marketplace_id: "AdnAhAhegys.akashi-theme" + version: "0.0.0" + installs: 36 + rating: 0 + ratings: 0 + author: "Anderson" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AdnAhAhegys.akashi-theme" + formats: null +colors: + bg: "#1D1D1D" + fg: "#823B3B" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 13.2 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/akumanomi-theme--akumanomi-theme.yaml b/themes/akumanomi-theme--akumanomi-theme.yaml new file mode 100644 index 00000000..3425652e --- /dev/null +++ b/themes/akumanomi-theme--akumanomi-theme.yaml @@ -0,0 +1,53 @@ +name: "Akumanomi Theme (Akumanomi Theme)" +source: + marketplace_id: "IngridLiana.akumanomi-theme" + version: "0.1.4" + installs: 2728 + rating: 0 + ratings: 0 + author: "Ingrid Liana" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=IngridLiana.akumanomi-theme" + formats: null +colors: + bg: "#000000" + fg: "#D7D7D7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 82.3 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/alabaster-dark-theme.yaml b/themes/alabaster-dark-theme.yaml new file mode 100644 index 00000000..fd9b4fdd --- /dev/null +++ b/themes/alabaster-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Alabaster Dark Theme" +source: + marketplace_id: "gargakshit.theme-alabaster-dark" + version: "0.1.3" + installs: 4227 + rating: 0 + ratings: 0 + author: "Akshit Garg" + repo: "https://github.com/gargakshit/vscode-theme-alabaster-dark" + url: "https://marketplace.visualstudio.com/items?itemName=gargakshit.theme-alabaster-dark" + formats: null +colors: + bg: "#0E1415" + fg: "#CECECE" + black: "#000000" + red: "#E25D56" + green: "#73CA50" + yellow: "#E9BF57" + blue: "#4A88E4" + magenta: "#915CAF" + cyan: "#23ACDD" + white: "#CECECE" + brightBlack: "#777777" + brightRed: "#F36868" + brightGreen: "#88DB3F" + brightYellow: "#F0BF7A" + brightBlue: "#6F8FDB" + brightMagenta: "#E987E9" + brightCyan: "#4AC9E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 76.2 + black: 0 + red: 38.8 + green: 62.2 + yellow: 70.5 + blue: 38.4 + magenta: 27.8 + cyan: 50.7 + white: 76.2 + brightBlack: 29.9 + brightRed: 45.1 + brightGreen: 71.6 + brightYellow: 72.2 + brightBlue: 42.4 + brightMagenta: 56.3 + brightCyan: 64.5 + brightWhite: 107.2 diff --git a/themes/alchemist-s-orchid--alchemist-s-orchid-dark.yaml b/themes/alchemist-s-orchid--alchemist-s-orchid-dark.yaml new file mode 100644 index 00000000..cace7f68 --- /dev/null +++ b/themes/alchemist-s-orchid--alchemist-s-orchid-dark.yaml @@ -0,0 +1,54 @@ +name: "Alchemist's Orchid (Alchemist's Orchid Dark)" +source: + marketplace_id: "Rynaro.alchemists-orchid" + version: "0.1.2" + installs: 112 + rating: 5 + ratings: 1 + author: "Rynaro" + repo: "https://github.com/Rynaro/alchemists-orchid" + url: "https://marketplace.visualstudio.com/items?itemName=Rynaro.alchemists-orchid" + formats: + windows-terminal: "https://raw.githubusercontent.com/Rynaro/alchemists-orchid/main/apps/windows-terminal/schemes.json" +colors: + bg: "#2E3440" + fg: "#E5E9F0" + black: "#3B4252" + red: "#E8A4CC" + green: "#A3BE8C" + yellow: "#DFCA9A" + blue: "#81A1C1" + magenta: "#C89BD0" + cyan: "#8FBCBB" + white: "#D8DEE9" + brightBlack: "#4C566A" + brightRed: "#F0C0DD" + brightGreen: "#C3E4A8" + brightYellow: "#EBD9AF" + brightBlue: "#A3C2E8" + brightMagenta: "#DAC0F2" + brightCyan: "#9EECE8" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 87.3 + black: 0 + red: 58.2 + green: 56.6 + yellow: 69.5 + blue: 43.6 + magenta: 50.3 + cyan: 55.5 + white: 80.3 + brightBlack: 10.3 + brightRed: 70.6 + brightGreen: 78 + brightYellow: 78.3 + brightBlue: 62.1 + brightMagenta: 68.4 + brightCyan: 80.7 + brightWhite: 91.2 diff --git a/themes/alchemist-s-orchid--alchemist-s-orchid-light.yaml b/themes/alchemist-s-orchid--alchemist-s-orchid-light.yaml new file mode 100644 index 00000000..a9efc67e --- /dev/null +++ b/themes/alchemist-s-orchid--alchemist-s-orchid-light.yaml @@ -0,0 +1,54 @@ +name: "Alchemist's Orchid (Alchemist's Orchid Light)" +source: + marketplace_id: "Rynaro.alchemists-orchid" + version: "0.1.2" + installs: 112 + rating: 5 + ratings: 1 + author: "Rynaro" + repo: "https://github.com/Rynaro/alchemists-orchid" + url: "https://marketplace.visualstudio.com/items?itemName=Rynaro.alchemists-orchid" + formats: + windows-terminal: "https://raw.githubusercontent.com/Rynaro/alchemists-orchid/main/apps/windows-terminal/schemes.json" +colors: + bg: "#FAFBFC" + fg: "#2E3440" + black: "#2E3440" + red: "#C41585" + green: "#4D7028" + yellow: "#8A6000" + blue: "#2D6299" + magenta: "#8839AA" + cyan: "#1D7A78" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#E31C97" + brightGreen: "#5E8A32" + brightYellow: "#A57800" + brightBlue: "#3A7AB8" + brightMagenta: "#9F47C4" + brightCyan: "#248E8B" + brightWhite: "#FAFBFC" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 95.9 + black: 95.9 + red: 73.2 + green: 76.1 + yellow: 75.2 + blue: 78.7 + magenta: 79.2 + cyan: 72.4 + white: 8.2 + brightBlack: 83.2 + brightRed: 65.3 + brightGreen: 65.3 + brightYellow: 64.3 + brightBlue: 68.6 + brightMagenta: 71.6 + brightCyan: 64 + brightWhite: 0 diff --git a/themes/alchemist-s-orchid--alchemist-s-orchid-sepia.yaml b/themes/alchemist-s-orchid--alchemist-s-orchid-sepia.yaml new file mode 100644 index 00000000..0f934ee2 --- /dev/null +++ b/themes/alchemist-s-orchid--alchemist-s-orchid-sepia.yaml @@ -0,0 +1,54 @@ +name: "Alchemist's Orchid (Alchemist's Orchid Sepia)" +source: + marketplace_id: "Rynaro.alchemists-orchid" + version: "0.1.2" + installs: 112 + rating: 5 + ratings: 1 + author: "Rynaro" + repo: "https://github.com/Rynaro/alchemists-orchid" + url: "https://marketplace.visualstudio.com/items?itemName=Rynaro.alchemists-orchid" + formats: + windows-terminal: "https://raw.githubusercontent.com/Rynaro/alchemists-orchid/main/apps/windows-terminal/schemes.json" +colors: + bg: "#F5F0E6" + fg: "#3B3228" + black: "#3B3228" + red: "#B52080" + green: "#4A6A28" + yellow: "#806000" + blue: "#2E5E8A" + magenta: "#7B3399" + cyan: "#1A6B69" + white: "#E5E0D6" + brightBlack: "#5A5045" + brightRed: "#D42995" + brightGreen: "#5C8432" + brightYellow: "#997300" + brightBlue: "#3972A8" + brightMagenta: "#9440B3" + brightCyan: "#238280" + brightWhite: "#F5F0E6" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 89.8 + black: 89.8 + red: 69.8 + green: 72.1 + yellow: 70.3 + blue: 74.6 + magenta: 76.9 + cyan: 72.2 + white: 0 + brightBlack: 78.6 + brightRed: 61.7 + brightGreen: 61.5 + brightYellow: 61.3 + brightBlue: 66.1 + brightMagenta: 69.5 + brightCyan: 62.8 + brightWhite: 0 diff --git a/themes/alchemist.yaml b/themes/alchemist.yaml new file mode 100644 index 00000000..873763cf --- /dev/null +++ b/themes/alchemist.yaml @@ -0,0 +1,53 @@ +name: "Alchemist" +source: + marketplace_id: "solidhelium.alchemist" + version: "0.0.2" + installs: 79 + rating: 0 + ratings: 0 + author: "Yahya Mujahed" + repo: "https://github.com/YahyaMurad/Alchemist" + url: "https://marketplace.visualstudio.com/items?itemName=solidhelium.alchemist" + formats: null +colors: + bg: "#2B2037" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 306 + pair: null + contrast: + fg: 105 + black: 0 + red: 24.8 + green: 51.1 + yellow: 83.7 + blue: 25.5 + magenta: 27.9 + cyan: 45.7 + white: 88.1 + brightBlack: 20.1 + brightRed: 36.7 + brightGreen: 61.6 + brightYellow: 93.7 + brightBlue: 38.1 + brightMagenta: 43.5 + brightCyan: 53.5 + brightWhite: 88.1 diff --git a/themes/alien-blood--alien-blood.yaml b/themes/alien-blood--alien-blood.yaml new file mode 100644 index 00000000..bfb44f32 --- /dev/null +++ b/themes/alien-blood--alien-blood.yaml @@ -0,0 +1,53 @@ +name: "Alien Blood (Alien Blood)" +source: + marketplace_id: "ThomasBishop.alien-blood" + version: "1.7.3" + installs: 2390 + rating: 5 + ratings: 5 + author: "Thomas Bishop" + repo: "https://github.com/thomasabishop/alien-blood-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ThomasBishop.alien-blood" + formats: null +colors: + bg: "#0F1610" + fg: "#637D75" + black: "#112616" + red: "#E08009" + green: "#2F7E25" + yellow: "#717F24" + blue: "#2F6A7F" + magenta: "#47587F" + cyan: "#327F77" + white: "#647D75" + brightBlack: "#3C4812" + brightRed: "#E08009" + brightGreen: "#717F24" + brightYellow: "#BDE000" + brightBlue: "#00AAE0" + brightMagenta: "#0058E0" + brightCyan: "#00E0C4" + brightWhite: "#717F24" +meta: + mode: "dark" + accent: "purple" + hue: 149 + pair: null + contrast: + fg: 30 + black: 0 + red: 46.3 + green: 26.2 + yellow: 30.4 + blue: 21.2 + magenta: 16.8 + cyan: 28.3 + white: 30.1 + brightBlack: 8.9 + brightRed: 46.3 + brightGreen: 30.4 + brightYellow: 78.5 + brightBlue: 49.7 + brightMagenta: 21.9 + brightCyan: 72.9 + brightWhite: 30.4 diff --git a/themes/all-nighter-italic.yaml b/themes/all-nighter-italic.yaml new file mode 100644 index 00000000..e5af8724 --- /dev/null +++ b/themes/all-nighter-italic.yaml @@ -0,0 +1,53 @@ +name: "All Nighter Italic" +source: + marketplace_id: "aaa1.all-nighter-italic" + version: "1.0.1" + installs: 2157 + rating: 5 + ratings: 1 + author: "Martin Enzinger" + repo: "https://github.com/martinenzinger/allnighter" + url: "https://marketplace.visualstudio.com/items?itemName=aaa1.all-nighter-italic" + formats: null +colors: + bg: "#2C2C2C" + fg: "#BABABA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 60.9 + black: 0 + red: 23.5 + green: 49.8 + yellow: 82.4 + blue: 24.2 + magenta: 26.5 + cyan: 44.3 + white: 86.8 + brightBlack: 18.8 + brightRed: 35.3 + brightGreen: 60.3 + brightYellow: 92.4 + brightBlue: 36.8 + brightMagenta: 42.1 + brightCyan: 52.2 + brightWhite: 86.8 diff --git a/themes/alma-sakura.yaml b/themes/alma-sakura.yaml new file mode 100644 index 00000000..0783407e --- /dev/null +++ b/themes/alma-sakura.yaml @@ -0,0 +1,53 @@ +name: "Alma Sakura" +source: + marketplace_id: "hoshinokanade.alma-sakura" + version: "0.1.2" + installs: 9228 + rating: 5 + ratings: 3 + author: "hoshinokanade" + repo: "https://github.com/as-alma/Alma-Sakura" + url: "https://marketplace.visualstudio.com/items?itemName=hoshinokanade.alma-sakura" + formats: null +colors: + bg: "#2E2B2C" + fg: "#CBBEC2" + black: "#47393E" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B9ACB0" + brightBlack: "#69545B" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#CBBEC2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.1 + black: 0 + red: 37.4 + green: 73.8 + yellow: 63.8 + blue: 48.8 + magenta: 42.4 + cyan: 67.3 + white: 54.9 + brightBlack: 13.7 + brightRed: 42.6 + brightGreen: 76 + brightYellow: 50.7 + brightBlue: 54.1 + brightMagenta: 54.8 + brightCyan: 70.7 + brightWhite: 65.1 diff --git a/themes/alt-catppuccin-for-vscode--catppuccin-monokai-frappe.yaml b/themes/alt-catppuccin-for-vscode--catppuccin-monokai-frappe.yaml new file mode 100644 index 00000000..2a893e10 --- /dev/null +++ b/themes/alt-catppuccin-for-vscode--catppuccin-monokai-frappe.yaml @@ -0,0 +1,53 @@ +name: "Alt Catppuccin for VSCode (Catppuccin Monokai Frappe)" +source: + marketplace_id: "dooez.alt-catppuccin-vsc" + version: "2.7.4" + installs: 50663 + rating: 5 + ratings: 3 + author: "dooez" + repo: "https://github.com/Dooez/alt-catppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dooez.alt-catppuccin-vsc" + formats: null +colors: + bg: "#303446" + fg: "#C6D0F5" + black: "#737994" + red: "#E78284" + green: "#A6D189" + yellow: "#E5C890" + blue: "#8CAAEE" + magenta: "#F4B8E4" + cyan: "#99D1DB" + white: "#949CBB" + brightBlack: "#838BA7" + brightRed: "#E78284" + brightGreen: "#A6D189" + brightYellow: "#E5C890" + brightBlue: "#8CAAEE" + brightMagenta: "#F4B8E4" + brightCyan: "#99D1DB" + brightWhite: "#C6D0F5" +meta: + mode: "dark" + accent: "orange" + hue: 275 + pair: null + contrast: + fg: 72.3 + black: 25.6 + red: 44.3 + green: 65 + yellow: 69 + blue: 50.3 + magenta: 68.3 + cyan: 66.8 + white: 42.9 + brightBlack: 34.1 + brightRed: 44.3 + brightGreen: 65 + brightYellow: 69 + brightBlue: 50.3 + brightMagenta: 68.3 + brightCyan: 66.8 + brightWhite: 72.3 diff --git a/themes/alt-catppuccin-for-vscode--catppuccin-monokai-latte.yaml b/themes/alt-catppuccin-for-vscode--catppuccin-monokai-latte.yaml new file mode 100644 index 00000000..a330c4a2 --- /dev/null +++ b/themes/alt-catppuccin-for-vscode--catppuccin-monokai-latte.yaml @@ -0,0 +1,53 @@ +name: "Alt Catppuccin for VSCode (Catppuccin Monokai Latte)" +source: + marketplace_id: "dooez.alt-catppuccin-vsc" + version: "2.7.4" + installs: 50663 + rating: 5 + ratings: 3 + author: "dooez" + repo: "https://github.com/Dooez/alt-catppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dooez.alt-catppuccin-vsc" + formats: null +colors: + bg: "#EFF1F5" + fg: "#4C4F69" + black: "#9CA0B0" + red: "#D20F39" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#EA76CB" + cyan: "#04A5E5" + white: "#7C7F93" + brightBlack: "#8C8FA1" + brightRed: "#D20F39" + brightGreen: "#40A02B" + brightYellow: "#DF8E1D" + brightBlue: "#1E66F5" + brightMagenta: "#EA76CB" + brightCyan: "#04A5E5" + brightWhite: "#4C4F69" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 79.3 + black: 42.4 + red: 66.3 + green: 52.1 + yellow: 42.3 + blue: 64.8 + magenta: 42.6 + cyan: 44.7 + white: 58.5 + brightBlack: 50.8 + brightRed: 66.3 + brightGreen: 52.1 + brightYellow: 42.3 + brightBlue: 64.8 + brightMagenta: 42.6 + brightCyan: 44.7 + brightWhite: 79.3 diff --git a/themes/alt-catppuccin-for-vscode--catppuccin-monokai-macchiato.yaml b/themes/alt-catppuccin-for-vscode--catppuccin-monokai-macchiato.yaml new file mode 100644 index 00000000..7aaf5618 --- /dev/null +++ b/themes/alt-catppuccin-for-vscode--catppuccin-monokai-macchiato.yaml @@ -0,0 +1,53 @@ +name: "Alt Catppuccin for VSCode (Catppuccin Monokai Macchiato)" +source: + marketplace_id: "dooez.alt-catppuccin-vsc" + version: "2.7.4" + installs: 50663 + rating: 5 + ratings: 3 + author: "dooez" + repo: "https://github.com/Dooez/alt-catppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dooez.alt-catppuccin-vsc" + formats: null +colors: + bg: "#24273A" + fg: "#CAD3F5" + black: "#6E738D" + red: "#ED8796" + green: "#A6DA95" + yellow: "#EED49F" + blue: "#8AADF4" + magenta: "#F5BDE6" + cyan: "#91D7E3" + white: "#939AB7" + brightBlack: "#8087A2" + brightRed: "#ED8796" + brightGreen: "#A6DA95" + brightYellow: "#EED49F" + brightBlue: "#8AADF4" + brightMagenta: "#F5BDE6" + brightCyan: "#91D7E3" + brightWhite: "#CAD3F5" +meta: + mode: "dark" + accent: "red" + hue: 277 + pair: null + contrast: + fg: 76.9 + black: 25.8 + red: 50.3 + green: 72.3 + yellow: 78.7 + blue: 54.5 + magenta: 73.3 + cyan: 72.1 + white: 44.7 + brightBlack: 35 + brightRed: 50.3 + brightGreen: 72.3 + brightYellow: 78.7 + brightBlue: 54.5 + brightMagenta: 73.3 + brightCyan: 72.1 + brightWhite: 76.9 diff --git a/themes/alt-catppuccin-for-vscode--catppuccin-monokai-mocha.yaml b/themes/alt-catppuccin-for-vscode--catppuccin-monokai-mocha.yaml new file mode 100644 index 00000000..3c049a75 --- /dev/null +++ b/themes/alt-catppuccin-for-vscode--catppuccin-monokai-mocha.yaml @@ -0,0 +1,53 @@ +name: "Alt Catppuccin for VSCode (Catppuccin Monokai Mocha)" +source: + marketplace_id: "dooez.alt-catppuccin-vsc" + version: "2.7.4" + installs: 50663 + rating: 5 + ratings: 3 + author: "dooez" + repo: "https://github.com/Dooez/alt-catppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dooez.alt-catppuccin-vsc" + formats: null +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#6C7086" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#89DCEB" + white: "#9399B2" + brightBlack: "#7F849C" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#89DCEB" + brightWhite: "#CDD6F4" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 80 + black: 25.8 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 76.7 + cyan: 75.6 + white: 45.5 + brightBlack: 35.1 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 88.4 + brightBlue: 59.1 + brightMagenta: 76.7 + brightCyan: 75.6 + brightWhite: 80 diff --git a/themes/alternight--alternight.yaml b/themes/alternight--alternight.yaml new file mode 100644 index 00000000..a57816b4 --- /dev/null +++ b/themes/alternight--alternight.yaml @@ -0,0 +1,53 @@ +name: "AlterNight (alternight)" +source: + marketplace_id: "spaceinvadev.alternight" + version: "3.0.0" + installs: 12497 + rating: 5 + ratings: 4 + author: "Mauro Paternina" + repo: "https://github.com/spaceinvadev/alternight-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=spaceinvadev.alternight" + formats: null +colors: + bg: "#1F172B" + fg: "#CAAEEB" + black: "#292929" + red: "#F07C7C" + green: "#4CA779" + yellow: "#FFCB6B" + blue: "#5C7FE2" + magenta: "#C869D1" + cyan: "#40CFCF" + white: "#FAFAFA" + brightBlack: "#080808" + brightRed: "#F08A8A" + brightGreen: "#71BD97" + brightYellow: "#FDDA9A" + brightBlue: "#718EDF" + brightMagenta: "#D581DD" + brightCyan: "#70D1D1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 302 + pair: null + contrast: + fg: 63.5 + black: 0 + red: 49 + green: 44.5 + yellow: 78.5 + blue: 35.3 + magenta: 40.5 + cyan: 65.2 + white: 103.1 + brightBlack: 0 + brightRed: 53.4 + brightGreen: 56.9 + brightYellow: 85.5 + brightBlue: 41.6 + brightMagenta: 49.6 + brightCyan: 68.2 + brightWhite: 106.4 diff --git a/themes/alucard--alucard-sotn.yaml b/themes/alucard--alucard-sotn.yaml new file mode 100644 index 00000000..4abe5ccb --- /dev/null +++ b/themes/alucard--alucard-sotn.yaml @@ -0,0 +1,53 @@ +name: "Alucard (Alucard Sotn)" +source: + marketplace_id: "DanielDlc.alucardsotn" + version: "4.0.0" + installs: 1505 + rating: 5 + ratings: 1 + author: "Alucard Sotn" + repo: "https://github.com/DanielDlc/Alucard-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DanielDlc.alucardsotn" + formats: null +colors: + bg: "#292A43" + fg: "#C0C0D0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 282 + pair: null + contrast: + fg: 65 + black: 0 + red: 23.4 + green: 49.7 + yellow: 82.3 + blue: 24.1 + magenta: 26.5 + cyan: 44.3 + white: 86.7 + brightBlack: 18.7 + brightRed: 35.3 + brightGreen: 60.2 + brightYellow: 92.3 + brightBlue: 36.7 + brightMagenta: 42.1 + brightCyan: 52.1 + brightWhite: 86.7 diff --git a/themes/amaral-pink.yaml b/themes/amaral-pink.yaml new file mode 100644 index 00000000..7eafcd58 --- /dev/null +++ b/themes/amaral-pink.yaml @@ -0,0 +1,53 @@ +name: "Amaral pink" +source: + marketplace_id: "junioramaral22.amaralpink" + version: "0.0.0" + installs: 6259 + rating: 0 + ratings: 0 + author: "junioramaral22" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=junioramaral22.amaralpink" + formats: null +colors: + bg: "#0C0C0C" + fg: "#FF00E3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 44 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/amethyst-kiss-themes-pack-amethyst-kiss-dark-kiss-mode.yaml b/themes/amethyst-kiss-themes-pack-amethyst-kiss-dark-kiss-mode.yaml new file mode 100644 index 00000000..67ee3a7f --- /dev/null +++ b/themes/amethyst-kiss-themes-pack-amethyst-kiss-dark-kiss-mode.yaml @@ -0,0 +1,53 @@ +name: "Amethyst Kiss Themes Pack (Amethyst Kiss Dark(Kiss Mode))" +source: + marketplace_id: "MahdiBehkar.amethyst-kiss" + version: "0.1.0" + installs: 642 + rating: 0 + ratings: 0 + author: "MahdiBehkar" + repo: "https://github.com/Behkar/amethyst_kiss_theme" + url: "https://marketplace.visualstudio.com/items?itemName=MahdiBehkar.amethyst-kiss" + formats: null +colors: + bg: "#373E4D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 265 + pair: null + contrast: + fg: 71.4 + black: 9 + red: 18.6 + green: 44.9 + yellow: 77.5 + blue: 19.3 + magenta: 21.7 + cyan: 39.5 + white: 81.9 + brightBlack: 13.9 + brightRed: 30.5 + brightGreen: 55.4 + brightYellow: 87.5 + brightBlue: 31.9 + brightMagenta: 37.3 + brightCyan: 47.3 + brightWhite: 81.9 diff --git a/themes/amethyst-kiss-themes-pack-amethyst-kiss-light-kiss-mode.yaml b/themes/amethyst-kiss-themes-pack-amethyst-kiss-light-kiss-mode.yaml new file mode 100644 index 00000000..e7b77124 --- /dev/null +++ b/themes/amethyst-kiss-themes-pack-amethyst-kiss-light-kiss-mode.yaml @@ -0,0 +1,53 @@ +name: "Amethyst Kiss Themes Pack (Amethyst Kiss Light(Kiss Mode))" +source: + marketplace_id: "MahdiBehkar.amethyst-kiss" + version: "0.1.0" + installs: 642 + rating: 0 + ratings: 0 + author: "MahdiBehkar" + repo: "https://github.com/Behkar/amethyst_kiss_theme" + url: "https://marketplace.visualstudio.com/items?itemName=MahdiBehkar.amethyst-kiss" + formats: null +colors: + bg: "#F9F9F9" + fg: "#29343D" + black: "#29343D" + red: "#F8961E" + green: "#90BE6D" + yellow: "#F3722C" + blue: "#577590" + magenta: "#F9C74F" + cyan: "#43AA8B" + white: "#555555" + brightBlack: "#394956" + brightRed: "#F8961E" + brightGreen: "#90BE6D" + brightYellow: "#F3722C" + brightBlue: "#577590" + brightMagenta: "#F9C74F" + brightCyan: "#43AA8B" + brightWhite: "#ABABAB" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 95.2 + black: 95.2 + red: 40.1 + green: 38.5 + yellow: 51 + blue: 69.8 + magenta: 22.5 + cyan: 50.8 + white: 82.3 + brightBlack: 87.8 + brightRed: 40.1 + brightGreen: 38.5 + brightYellow: 51 + brightBlue: 69.8 + brightMagenta: 22.5 + brightCyan: 50.8 + brightWhite: 41.7 diff --git a/themes/amoled-black-theme--amoled-dark-theme.yaml b/themes/amoled-black-theme--amoled-dark-theme.yaml new file mode 100644 index 00000000..07d2c6db --- /dev/null +++ b/themes/amoled-black-theme--amoled-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "AMOLED Black Theme (Amoled Dark Theme)" +source: + marketplace_id: "rendinjast.amoled-black" + version: "0.1.0" + installs: 58403 + rating: 4.4 + ratings: 5 + author: "Erfan khadivar" + repo: "https://github.com/rendinjast/amoled-black" + url: "https://marketplace.visualstudio.com/items?itemName=rendinjast.amoled-black" + formats: null +colors: + bg: "#0E0E0E" + fg: "#999999" + black: "#343434" + red: "#E1270E" + green: "#5BC266" + yellow: "#FBCC43" + blue: "#535BCF" + magenta: "#BF5AF2" + cyan: "#6CC7F6" + white: "#FFFFFF" + brightBlack: "#535BCF" + brightRed: "#E1270E" + brightGreen: "#5BC266" + brightYellow: "#FBCC43" + brightBlue: "#535BCF" + brightMagenta: "#BF5AF2" + brightCyan: "#6CC7F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 46.9 + black: 0 + red: 30.9 + green: 57.9 + yellow: 78.9 + blue: 23.9 + magenta: 39.2 + cyan: 66.6 + white: 107.6 + brightBlack: 23.9 + brightRed: 30.9 + brightGreen: 57.9 + brightYellow: 78.9 + brightBlue: 23.9 + brightMagenta: 39.2 + brightCyan: 66.6 + brightWhite: 107.6 diff --git a/themes/amoled-darcula-theme.yaml b/themes/amoled-darcula-theme.yaml new file mode 100644 index 00000000..d038a02e --- /dev/null +++ b/themes/amoled-darcula-theme.yaml @@ -0,0 +1,53 @@ +name: "Amoled Darcula Theme" +source: + marketplace_id: "CyrilLeblanc.amoled-darcula" + version: "1.0.1" + installs: 3277 + rating: 5 + ratings: 1 + author: "CyrilLeblanc" + repo: "https://github.com/CyrilLeblanc/vscode-amoled-darcula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CyrilLeblanc.amoled-darcula" + formats: null +colors: + bg: "#000000" + fg: "#999999" + black: "#343434" + red: "#E1270E" + green: "#5BC266" + yellow: "#FBCC43" + blue: "#535BCF" + magenta: "#BF5AF2" + cyan: "#6CC7F6" + white: "#FFFFFF" + brightBlack: "#535BCF" + brightRed: "#E1270E" + brightGreen: "#5BC266" + brightYellow: "#FBCC43" + brightBlue: "#535BCF" + brightMagenta: "#BF5AF2" + brightCyan: "#6CC7F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 47.2 + black: 0 + red: 31.3 + green: 58.2 + yellow: 79.2 + blue: 24.3 + magenta: 39.6 + cyan: 66.9 + white: 107.9 + brightBlack: 24.3 + brightRed: 31.3 + brightGreen: 58.2 + brightYellow: 79.2 + brightBlue: 24.3 + brightMagenta: 39.6 + brightCyan: 66.9 + brightWhite: 107.9 diff --git a/themes/amp-theme--amp-dark.yaml b/themes/amp-theme--amp-dark.yaml new file mode 100644 index 00000000..6fefb917 --- /dev/null +++ b/themes/amp-theme--amp-dark.yaml @@ -0,0 +1,53 @@ +name: "Amp Theme (Amp Dark)" +source: + marketplace_id: "hrose.amp-theme" + version: "0.1.0" + installs: 509 + rating: 5 + ratings: 2 + author: "Hanna Rose" + repo: "https://codeberg.org/hanna/amp-theme#vscode" + url: "https://marketplace.visualstudio.com/items?itemName=hrose.amp-theme" + formats: null +colors: + bg: "#161616" + fg: "#F2ECDD" + black: "#161616" + red: "#D9634F" + green: "#7C9B96" + yellow: "#E3A25A" + blue: "#316E99" + magenta: "#B98BA4" + cyan: "#5A8F8F" + white: "#E1E1E1" + brightBlack: "#627987" + brightRed: "#E7894C" + brightGreen: "#B6D7BA" + brightYellow: "#E3C888" + brightBlue: "#6A9FCC" + brightMagenta: "#D6B4A4" + brightCyan: "#8FC4C4" + brightWhite: "#F2ECDD" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.7 + black: 0 + red: 37.9 + green: 44.1 + yellow: 58.3 + blue: 23.6 + magenta: 45.9 + cyan: 36.8 + white: 87.6 + brightBlack: 29.1 + brightRed: 50.6 + brightGreen: 76.3 + brightYellow: 73.9 + brightBlue: 46.8 + brightMagenta: 64.8 + brightCyan: 64.5 + brightWhite: 94.7 diff --git a/themes/amp-theme--amp-light.yaml b/themes/amp-theme--amp-light.yaml new file mode 100644 index 00000000..7fd69a32 --- /dev/null +++ b/themes/amp-theme--amp-light.yaml @@ -0,0 +1,53 @@ +name: "Amp Theme (Amp Light)" +source: + marketplace_id: "hrose.amp-theme" + version: "0.1.0" + installs: 509 + rating: 5 + ratings: 2 + author: "Hanna Rose" + repo: "https://codeberg.org/hanna/amp-theme#vscode" + url: "https://marketplace.visualstudio.com/items?itemName=hrose.amp-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#2A2A2A" + black: "#E1E1E1" + red: "#D9634F" + green: "#5A8F8F" + yellow: "#C87A2F" + blue: "#316E99" + magenta: "#B98BA4" + cyan: "#5A8F8F" + white: "#2A2A2A" + brightBlack: "#8A8A8A" + brightRed: "#E7894C" + brightGreen: "#7C9B96" + brightYellow: "#E3A25A" + brightBlue: "#6A9FCC" + brightMagenta: "#D6B4A4" + brightCyan: "#8FC4C4" + brightWhite: "#161616" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.1 + black: 15.2 + red: 62.9 + green: 64 + yellow: 60.5 + blue: 77.2 + magenta: 55 + cyan: 64 + white: 101.1 + brightBlack: 62.1 + brightRed: 50.4 + brightGreen: 56.8 + brightYellow: 43 + brightBlue: 54.1 + brightMagenta: 36.8 + brightCyan: 37 + brightWhite: 104.8 diff --git a/themes/an-old-hope-theme.yaml b/themes/an-old-hope-theme.yaml new file mode 100644 index 00000000..b13f5dda --- /dev/null +++ b/themes/an-old-hope-theme.yaml @@ -0,0 +1,53 @@ +name: "An Old Hope Theme" +source: + marketplace_id: "dustinsanders.an-old-hope-theme-vscode" + version: "4.4.0" + installs: 102964 + rating: 4.79 + ratings: 24 + author: "Dustin Sanders" + repo: "https://github.com/git@github.com:dustinsanders/an-old-hope-theme-vscode.git" + url: "https://marketplace.visualstudio.com/items?itemName=dustinsanders.an-old-hope-theme-vscode" + formats: null +colors: + bg: "#1C1D21" + fg: "#CBCDD2" + black: "#818491" + red: "#EB3D54" + green: "#78BD65" + yellow: "#E5CD52" + blue: "#4FB4D8" + magenta: "#EB3D54" + cyan: "#4FB4D8" + white: "#CBCDD2" + brightBlack: "#818491" + brightRed: "#EB3D54" + brightGreen: "#78BD65" + brightYellow: "#E5CD52" + brightBlue: "#4FB4D8" + brightMagenta: "#78BD65" + brightCyan: "#4FB4D8" + brightWhite: "#CBCDD2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 74.5 + black: 35.1 + red: 34.6 + green: 55.9 + yellow: 74.6 + blue: 53.8 + magenta: 34.6 + cyan: 53.8 + white: 74.5 + brightBlack: 35.1 + brightRed: 34.6 + brightGreen: 55.9 + brightYellow: 74.6 + brightBlue: 53.8 + brightMagenta: 55.9 + brightCyan: 53.8 + brightWhite: 74.5 diff --git a/themes/andromeda-dark-theme.yaml b/themes/andromeda-dark-theme.yaml new file mode 100644 index 00000000..83d19726 --- /dev/null +++ b/themes/andromeda-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Andromeda Dark Theme" +source: + marketplace_id: "apoorvkhare07.andromeda-vscode" + version: "1.1.0" + installs: 35982 + rating: 5 + ratings: 2 + author: "apoorvkhare07" + repo: "https://github.com/apoorvkhare07/andromeda" + url: "https://marketplace.visualstudio.com/items?itemName=apoorvkhare07.andromeda-vscode" + formats: null +colors: + bg: "#0A0A0A" + fg: "#FFFFFF" + black: "#666666" + red: "#F2777A" + green: "#92D192" + yellow: "#FFD479" + blue: "#6AB0F3" + magenta: "#E1A6F2" + cyan: "#62CFCF" + white: "#FFFFFF" + brightBlack: "#777777" + brightRed: "#F2777A" + brightGreen: "#92D192" + brightYellow: "#FFD479" + brightBlue: "#6AB0F3" + brightMagenta: "#E1A6F2" + brightCyan: "#62CFCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.7 + black: 22.9 + red: 49.4 + green: 69.6 + yellow: 83.8 + blue: 56.7 + magenta: 65.7 + cyan: 67.8 + white: 107.7 + brightBlack: 30.4 + brightRed: 49.4 + brightGreen: 69.6 + brightYellow: 83.8 + brightBlue: 56.7 + brightMagenta: 65.7 + brightCyan: 67.8 + brightWhite: 107.7 diff --git a/themes/andromeda-night--dusk.yaml b/themes/andromeda-night--dusk.yaml new file mode 100644 index 00000000..be325abd --- /dev/null +++ b/themes/andromeda-night--dusk.yaml @@ -0,0 +1,53 @@ +name: "Andromeda Night (Dusk)" +source: + marketplace_id: "ni3rav.andromeda-night" + version: "0.0.7" + installs: 1268 + rating: 0 + ratings: 0 + author: "ni3rav" + repo: "https://github.com/ni3rav/andromeda-night" + url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.andromeda-night" + formats: null +colors: + bg: "#1D1D21" + fg: "#E0E0E0" + black: "#151518" + red: "#7E9CD8" + green: "#70D0B3" + yellow: "#E8D06A" + blue: "#3A9AA8" + magenta: "#D2529F" + cyan: "#70D0B3" + white: "#F5F5F5" + brightBlack: "#D2529F" + brightRed: "#7E9CD8" + brightGreen: "#70D0B3" + brightYellow: "#E8D06A" + brightBlue: "#3A9AA8" + brightMagenta: "#D2529F" + brightCyan: "#70D0B3" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 86.1 + black: 0 + red: 47 + green: 66.2 + yellow: 76.6 + blue: 39.9 + magenta: 34.6 + cyan: 66.2 + white: 99.5 + brightBlack: 34.6 + brightRed: 47 + brightGreen: 66.2 + brightYellow: 76.6 + brightBlue: 39.9 + brightMagenta: 34.6 + brightCyan: 66.2 + brightWhite: 99.5 diff --git a/themes/andromeda-night--tokyo-night-equalizer.yaml b/themes/andromeda-night--tokyo-night-equalizer.yaml new file mode 100644 index 00000000..989fb684 --- /dev/null +++ b/themes/andromeda-night--tokyo-night-equalizer.yaml @@ -0,0 +1,53 @@ +name: "Andromeda Night (Tokyo Night Equalizer)" +source: + marketplace_id: "ni3rav.andromeda-night" + version: "0.0.7" + installs: 1268 + rating: 0 + ratings: 0 + author: "ni3rav" + repo: "https://github.com/ni3rav/andromeda-night" + url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.andromeda-night" + formats: null +colors: + bg: "#14151D" + fg: "#979AB3" + black: "#4A4E6B" + red: "#CA5F64" + green: "#6F768E" + yellow: "#B6A6C2" + blue: "#7A7C9D" + magenta: "#8A8CB2" + cyan: "#7F9BAD" + white: "#707083" + brightBlack: "#4A4E6B" + brightRed: "#CA5F64" + brightGreen: "#6F768E" + brightYellow: "#B6A6C2" + brightBlue: "#7A7C9D" + brightMagenta: "#8A8CB2" + brightCyan: "#7F9BAD" + brightWhite: "#8B8D9C" +meta: + mode: "dark" + accent: "orange" + hue: 279 + pair: null + contrast: + fg: 47.6 + black: 13.3 + red: 34.5 + green: 29.5 + yellow: 56.3 + blue: 33.1 + magenta: 41.1 + cyan: 45.3 + white: 27.2 + brightBlack: 13.3 + brightRed: 34.5 + brightGreen: 29.5 + brightYellow: 56.3 + brightBlue: 33.1 + brightMagenta: 41.1 + brightCyan: 45.3 + brightWhite: 40.6 diff --git a/themes/andy-blue.yaml b/themes/andy-blue.yaml new file mode 100644 index 00000000..23afda46 --- /dev/null +++ b/themes/andy-blue.yaml @@ -0,0 +1,53 @@ +name: "andy Blue" +source: + marketplace_id: "andyluisilva.BlueTheme-andy" + version: "0.0.0" + installs: 165 + rating: 0 + ratings: 0 + author: "andyluisilva" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=andyluisilva.BlueTheme-andy" + formats: null +colors: + bg: "#040C16" + fg: "#506477" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#0F7575" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#246890" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 251 + pair: null + contrast: + fg: 21.1 + black: 0 + red: 27.5 + green: 53.8 + yellow: 24.5 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 21.6 + brightBlue: 40.8 + brightMagenta: 46.1 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/angular-theme.yaml b/themes/angular-theme.yaml new file mode 100644 index 00000000..791dc73e --- /dev/null +++ b/themes/angular-theme.yaml @@ -0,0 +1,53 @@ +name: "Angular Theme" +source: + marketplace_id: "MichaellAlavedraMunayco.angular-theme" + version: "7.1.2" + installs: 16343 + rating: 5 + ratings: 1 + author: "Michaell Alavedra" + repo: "https://github.com/gitchaell/angular-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MichaellAlavedraMunayco.angular-theme" + formats: null +colors: + bg: "#09090B" + fg: "#FAFAFA" + black: "#27272A" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#E4E4E7" + brightBlack: "#52525B" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 104.5 + black: 0 + red: 37.7 + green: 57.7 + yellow: 66 + blue: 37.7 + magenta: 35.3 + cyan: 54.8 + white: 90.4 + brightBlack: 15.1 + brightRed: 49 + brightGreen: 71.3 + brightYellow: 78.7 + brightBlue: 52.3 + brightMagenta: 50.6 + brightCyan: 69.5 + brightWhite: 104.5 diff --git a/themes/anime-theme-attack-on-titan-eren-s-determination.yaml b/themes/anime-theme-attack-on-titan-eren-s-determination.yaml new file mode 100644 index 00000000..76317fb7 --- /dev/null +++ b/themes/anime-theme-attack-on-titan-eren-s-determination.yaml @@ -0,0 +1,53 @@ +name: "Anime Theme (Attack on Titan (Eren's Determination))" +source: + marketplace_id: "LunaCode.anime-theme" + version: "0.0.3" + installs: 381 + rating: 5 + ratings: 3 + author: "LunaCode" + repo: "https://github.com/BuildXO/anime-theme-pack" + url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" + formats: null +colors: + bg: "#1A1512" + fg: "#E8DCC8" + black: "#3C3428" + red: "#DC143C" + green: "#6B8E23" + yellow: "#DAA520" + blue: "#4682B4" + magenta: "#8B4789" + cyan: "#5F9EA0" + white: "#D3C5B0" + brightBlack: "#6B5D4F" + brightRed: "#FF6B6B" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#F0E4D0" +meta: + mode: "dark" + accent: "orange" + hue: 53 + pair: null + contrast: + fg: 85.3 + black: 0 + red: 28.6 + green: 35.3 + yellow: 57.4 + blue: 32.7 + magenta: 20.2 + cyan: 43.6 + white: 71.6 + brightBlack: 19.3 + brightRed: 48.2 + brightGreen: 62.4 + brightYellow: 70.7 + brightBlue: 54.8 + brightMagenta: 45.2 + brightCyan: 54.7 + brightWhite: 90.3 diff --git a/themes/anime-theme-collection.yaml b/themes/anime-theme-collection.yaml new file mode 100644 index 00000000..b2ea5c28 --- /dev/null +++ b/themes/anime-theme-collection.yaml @@ -0,0 +1,53 @@ +name: "Anime Theme Collection" +source: + marketplace_id: "Shams.anime-theme-collection" + version: "2.0.0" + installs: 429 + rating: 5 + ratings: 5 + author: "Shams" + repo: "https://github.com/shams909/AnimeThemeCollection" + url: "https://marketplace.visualstudio.com/items?itemName=Shams.anime-theme-collection" + formats: null +colors: + bg: "#15161D" + fg: "#CBD5E1" + black: "#181922" + red: "#F87171" + green: "#059669" + yellow: "#F59E0B" + blue: "#60A5FA" + magenta: "#9333EA" + cyan: "#0891B2" + white: "#CBD5E1" + brightBlack: "#4B5563" + brightRed: "#F87171" + brightGreen: "#059669" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#06B6D4" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "magenta" + hue: 279 + pair: null + contrast: + fg: 79.4 + black: 0 + red: 48.1 + green: 36.1 + yellow: 59.5 + blue: 51.4 + magenta: 25.2 + cyan: 36.9 + white: 79.4 + brightBlack: 14.8 + brightRed: 48.1 + brightGreen: 36.1 + brightYellow: 72.8 + brightBlue: 51.4 + brightMagenta: 49.7 + brightCyan: 53.9 + brightWhite: 91.5 diff --git a/themes/anime-theme-my-hero-academia-deku-plus-ultra.yaml b/themes/anime-theme-my-hero-academia-deku-plus-ultra.yaml new file mode 100644 index 00000000..254db21e --- /dev/null +++ b/themes/anime-theme-my-hero-academia-deku-plus-ultra.yaml @@ -0,0 +1,53 @@ +name: "Anime Theme (My Hero Academia (Deku Plus Ultra))" +source: + marketplace_id: "LunaCode.anime-theme" + version: "0.0.3" + installs: 381 + rating: 5 + ratings: 3 + author: "LunaCode" + repo: "https://github.com/BuildXO/anime-theme-pack" + url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" + formats: null +colors: + bg: "#0A1E1A" + fg: "#E0F7E9" + black: "#1F3D36" + red: "#E53935" + green: "#4CAF50" + yellow: "#FFC107" + blue: "#42A5F5" + magenta: "#AB47BC" + cyan: "#26C6DA" + white: "#CFE8DC" + brightBlack: "#5A7A6F" + brightRed: "#FF5252" + brightGreen: "#69F0AE" + brightYellow: "#FFD740" + brightBlue: "#448AFF" + brightMagenta: "#E040FB" + brightCyan: "#18FFFF" + brightWhite: "#F5FFF8" +meta: + mode: "dark" + accent: "pink" + hue: 179 + pair: null + contrast: + fg: 97.5 + black: 0 + red: 32.5 + green: 47.1 + yellow: 73.7 + blue: 49.3 + magenta: 27.5 + cyan: 61.1 + white: 87.8 + brightBlack: 27.5 + brightRed: 42.4 + brightGreen: 81.6 + brightYellow: 83 + brightBlue: 40.1 + brightMagenta: 40.8 + brightCyan: 90.8 + brightWhite: 104.7 diff --git a/themes/anime-theme-naruto-hokage-orange.yaml b/themes/anime-theme-naruto-hokage-orange.yaml new file mode 100644 index 00000000..7416dcc9 --- /dev/null +++ b/themes/anime-theme-naruto-hokage-orange.yaml @@ -0,0 +1,53 @@ +name: "Anime Theme (Naruto (Hokage Orange))" +source: + marketplace_id: "LunaCode.anime-theme" + version: "0.0.3" + installs: 381 + rating: 5 + ratings: 3 + author: "LunaCode" + repo: "https://github.com/BuildXO/anime-theme-pack" + url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" + formats: null +colors: + bg: "#1A1612" + fg: "#F5E6D3" + black: "#3A3428" + red: "#DC143C" + green: "#32CD32" + yellow: "#FFD700" + blue: "#4169E1" + magenta: "#9370DB" + cyan: "#00CED1" + white: "#DDD5C7" + brightBlack: "#6B5F4F" + brightRed: "#FF6B6B" + brightGreen: "#7FFF00" + brightYellow: "#FFEC8B" + brightBlue: "#6495ED" + brightMagenta: "#BA55D3" + brightCyan: "#00FFFF" + brightWhite: "#FFF8DC" +meta: + mode: "dark" + accent: "green" + hue: 67 + pair: null + contrast: + fg: 92 + black: 0 + red: 28.5 + green: 60.4 + yellow: 83.3 + blue: 27.5 + magenta: 35.7 + cyan: 64.6 + white: 80.6 + brightBlack: 19.8 + brightRed: 48.1 + brightGreen: 88.7 + brightYellow: 94 + brightBlue: 44.7 + brightMagenta: 34.5 + brightCyan: 91.2 + brightWhite: 102 diff --git a/themes/anime-theme-one-piece-straw-hat-red.yaml b/themes/anime-theme-one-piece-straw-hat-red.yaml new file mode 100644 index 00000000..ba72c6cd --- /dev/null +++ b/themes/anime-theme-one-piece-straw-hat-red.yaml @@ -0,0 +1,53 @@ +name: "Anime Theme (One Piece (Straw Hat Red))" +source: + marketplace_id: "LunaCode.anime-theme" + version: "0.0.3" + installs: 381 + rating: 5 + ratings: 3 + author: "LunaCode" + repo: "https://github.com/BuildXO/anime-theme-pack" + url: "https://marketplace.visualstudio.com/items?itemName=LunaCode.anime-theme" + formats: null +colors: + bg: "#1C1215" + fg: "#F0E8DC" + black: "#3C2A32" + red: "#E74C3C" + green: "#2ECC71" + yellow: "#F1C40F" + blue: "#3498DB" + magenta: "#9B59B6" + cyan: "#1ABC9C" + white: "#E0D4C8" + brightBlack: "#7A6570" + brightRed: "#FF6B6B" + brightGreen: "#4ECDC4" + brightYellow: "#FFE66D" + brightBlue: "#5DADE2" + brightMagenta: "#D2B4DE" + brightCyan: "#76D7C4" + brightWhite: "#FFF8E7" +meta: + mode: "dark" + accent: "orange" + hue: 359 + pair: null + contrast: + fg: 92.7 + black: 0 + red: 36.3 + green: 60.9 + yellow: 73.2 + blue: 42.7 + magenta: 28.8 + cyan: 54.3 + white: 80.8 + brightBlack: 24.3 + brightRed: 48.3 + brightGreen: 64.9 + brightYellow: 90.8 + brightBlue: 53 + brightMagenta: 66.8 + brightCyan: 71.5 + brightWhite: 102.7 diff --git a/themes/ano-theme.yaml b/themes/ano-theme.yaml new file mode 100644 index 00000000..1adcccf3 --- /dev/null +++ b/themes/ano-theme.yaml @@ -0,0 +1,53 @@ +name: "Ano Theme" +source: + marketplace_id: "MaksymMarholin.ano-theme" + version: "0.1.26" + installs: 1166 + rating: 5 + ratings: 1 + author: "Maksym Marholin" + repo: "https://github.com/delafin/AnoTheme" + url: "https://marketplace.visualstudio.com/items?itemName=MaksymMarholin.ano-theme" + formats: null +colors: + bg: "#222527" + fg: "#CDD3DE" + black: "#3F4451" + red: "#771818" + green: "#358B52" + yellow: "#D18F52" + blue: "#224C79" + magenta: "#764386" + cyan: "#42B3C2" + white: "#B8BBC0" + brightBlack: "#4F5666" + brightRed: "#9A2E37" + brightGreen: "#3D5D48" + brightYellow: "#E5C07B" + brightBlue: "#5C83AC" + brightMagenta: "#C162DE" + brightCyan: "#62A5C7" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 76.8 + black: 0 + red: 0 + green: 29.9 + yellow: 46.8 + blue: 9.5 + magenta: 14.4 + cyan: 50.7 + white: 62.8 + brightBlack: 13.6 + brightRed: 14.3 + brightGreen: 13.7 + brightYellow: 68.7 + brightBlue: 31.9 + brightMagenta: 37.2 + brightCyan: 46.5 + brightWhite: 88.8 diff --git a/themes/another-vscode-zenburn-theme.yaml b/themes/another-vscode-zenburn-theme.yaml new file mode 100644 index 00000000..6a81fcd8 --- /dev/null +++ b/themes/another-vscode-zenburn-theme.yaml @@ -0,0 +1,53 @@ +name: "another-vscode-zenburn-theme" +source: + marketplace_id: "ludwigkr.vscode-zenburn-theme" + version: "0.0.1" + installs: 399 + rating: 0 + ratings: 0 + author: "ludwigkr" + repo: "https://github.com/ludwigkr/vscode-tango-plus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ludwigkr.vscode-zenburn-theme" + formats: null +colors: + bg: "#3F3F3F" + fg: "#DCDCCC" + black: "#000000" + red: "#CC9393" + green: "#7F9F7F" + yellow: "#D0BF8F" + blue: "#8CD0D3" + magenta: "#DC8CC3" + cyan: "#93E0E3" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#ECB3B3" + brightGreen: "#BFEBBF" + brightYellow: "#F0DFAF" + brightBlue: "#BDE0F3" + brightMagenta: "#DC8CC3" + brightCyan: "#93E0E3" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 75.3 + black: 9.5 + red: 42.2 + green: 36.6 + yellow: 59.1 + blue: 61.8 + magenta: 44.6 + cyan: 70.5 + white: 81.6 + brightBlack: 13.6 + brightRed: 59.8 + brightGreen: 78.2 + brightYellow: 78.3 + brightBlue: 75.2 + brightMagenta: 44.6 + brightCyan: 70.5 + brightWhite: 81.6 diff --git a/themes/anquyx--anquyx.yaml b/themes/anquyx--anquyx.yaml new file mode 100644 index 00000000..520f88a7 --- /dev/null +++ b/themes/anquyx--anquyx.yaml @@ -0,0 +1,53 @@ +name: "Anquyx (anquyx)" +source: + marketplace_id: "julisales.anquyx-theme" + version: "2.0.0" + installs: 40 + rating: 5 + ratings: 1 + author: "julisales" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=julisales.anquyx-theme" + formats: null +colors: + bg: "#1A1727" + fg: "#FFFBFB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#B8B8B8" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 292 + pair: null + contrast: + fg: 104.5 + black: 0 + red: 26.5 + green: 52.7 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 62.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.8 diff --git a/themes/anthropic-inspired-theme--anthropic-dark.yaml b/themes/anthropic-inspired-theme--anthropic-dark.yaml new file mode 100644 index 00000000..db7ff19e --- /dev/null +++ b/themes/anthropic-inspired-theme--anthropic-dark.yaml @@ -0,0 +1,53 @@ +name: "Anthropic Inspired Theme (Anthropic Dark)" +source: + marketplace_id: "BrianSuhit.anthropic-inspired-theme" + version: "1.0.1" + installs: 44 + rating: 0 + ratings: 0 + author: "Brian Suhit" + repo: "https://github.com/BrianSuhit/anthropic-inspired-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BrianSuhit.anthropic-inspired-theme" + formats: null +colors: + bg: "#141413" + fg: "#FAF9F5" + black: "#141413" + red: "#BF4D43" + green: "#778D5E" + yellow: "#D4A27F" + blue: "#61AAF2" + magenta: "#CC785C" + cyan: "#91918D" + white: "#FAF9F5" + brightBlack: "#40403E" + brightRed: "#BF4D43" + brightGreen: "#778D5E" + brightYellow: "#EBDBBC" + brightBlue: "#61AAF2" + brightMagenta: "#CC785C" + brightCyan: "#91918D" + brightWhite: "#FAF9F5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.1 + black: 0 + red: 28.3 + green: 36.9 + yellow: 56.8 + blue: 53.1 + magenta: 41.2 + cyan: 42.2 + white: 103.1 + brightBlack: 7.7 + brightRed: 28.3 + brightGreen: 36.9 + brightYellow: 85 + brightBlue: 53.1 + brightMagenta: 41.2 + brightCyan: 42.2 + brightWhite: 103.1 diff --git a/themes/anthropic-inspired-theme--anthropic-light.yaml b/themes/anthropic-inspired-theme--anthropic-light.yaml new file mode 100644 index 00000000..293c679e --- /dev/null +++ b/themes/anthropic-inspired-theme--anthropic-light.yaml @@ -0,0 +1,53 @@ +name: "Anthropic Inspired Theme (Anthropic Light)" +source: + marketplace_id: "BrianSuhit.anthropic-inspired-theme" + version: "1.0.1" + installs: 44 + rating: 0 + ratings: 0 + author: "Brian Suhit" + repo: "https://github.com/BrianSuhit/anthropic-inspired-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BrianSuhit.anthropic-inspired-theme" + formats: null +colors: + bg: "#FAFAF7" + fg: "#191919" + black: "#191919" + red: "#BF4D43" + green: "#778D5E" + yellow: "#D4A27F" + blue: "#61AAF2" + magenta: "#CC785C" + cyan: "#91918D" + white: "#BFBFBA" + brightBlack: "#666663" + brightRed: "#BF4D43" + brightGreen: "#778D5E" + brightYellow: "#EBDBBC" + brightBlue: "#61AAF2" + brightMagenta: "#CC785C" + brightCyan: "#BFBFBA" + brightWhite: "#FAFAF7" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.3 + black: 101.3 + red: 69.6 + green: 60.9 + yellow: 41.4 + blue: 45 + magenta: 56.7 + cyan: 55.7 + white: 31.6 + brightBlack: 75.7 + brightRed: 69.6 + brightGreen: 60.9 + brightYellow: 14.7 + brightBlue: 45 + brightMagenta: 56.7 + brightCyan: 31.6 + brightWhite: 0 diff --git a/themes/anthropic-theme.yaml b/themes/anthropic-theme.yaml new file mode 100644 index 00000000..db3072c4 --- /dev/null +++ b/themes/anthropic-theme.yaml @@ -0,0 +1,53 @@ +name: "Anthropic Theme" +source: + marketplace_id: "bryanr.anthropic-theme" + version: "0.0.1" + installs: 971 + rating: 0 + ratings: 0 + author: "Bryan Russett" + repo: "https://github.com/od0/anthropic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bryanr.anthropic-theme" + formats: null +colors: + bg: "#1B1815" + fg: "#D9CCCC" + black: "#1F1F1F" + red: "#CC6F4E" + green: "#CCA699" + yellow: "#D2A17D" + blue: "#CCB3B3" + magenta: "#CC7373" + cyan: "#D9CCCC" + white: "#D9CCCC" + brightBlack: "#353535" + brightRed: "#D87B61" + brightGreen: "#E2CCC0" + brightYellow: "#F2C6AE" + brightBlue: "#E0D3D3" + brightMagenta: "#E0A5A5" + brightCyan: "#EAE2E2" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 76.2 + black: 0 + red: 38 + green: 57.4 + yellow: 55.7 + blue: 63.3 + magenta: 39.9 + cyan: 76.2 + white: 76.2 + brightBlack: 0 + brightRed: 43.8 + brightGreen: 77 + brightYellow: 76.3 + brightBlue: 80.5 + brightMagenta: 60.5 + brightCyan: 89.1 + brightWhite: 98.2 diff --git a/themes/anti-glare-theme--anti-glare-moonlit.yaml b/themes/anti-glare-theme--anti-glare-moonlit.yaml new file mode 100644 index 00000000..14629729 --- /dev/null +++ b/themes/anti-glare-theme--anti-glare-moonlit.yaml @@ -0,0 +1,53 @@ +name: "Anti-Glare Theme (anti-glare-moonlit)" +source: + marketplace_id: "azmarifdev.anti-glare-theme" + version: "1.7.0" + installs: 760 + rating: 5 + ratings: 3 + author: "A. Z. M. Arif" + repo: "https://github.com/azmarifdev/anti-glare-theme" + url: "https://marketplace.visualstudio.com/items?itemName=azmarifdev.anti-glare-theme" + formats: null +colors: + bg: "#01192E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 247 + pair: null + contrast: + fg: 79.2 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.8 diff --git a/themes/anti-glare-theme--anti-glare-nebula.yaml b/themes/anti-glare-theme--anti-glare-nebula.yaml new file mode 100644 index 00000000..932287c6 --- /dev/null +++ b/themes/anti-glare-theme--anti-glare-nebula.yaml @@ -0,0 +1,53 @@ +name: "Anti-Glare Theme (anti-glare-nebula)" +source: + marketplace_id: "azmarifdev.anti-glare-theme" + version: "1.7.0" + installs: 760 + rating: 5 + ratings: 3 + author: "A. Z. M. Arif" + repo: "https://github.com/azmarifdev/anti-glare-theme" + url: "https://marketplace.visualstudio.com/items?itemName=azmarifdev.anti-glare-theme" + formats: null +colors: + bg: "#001C35" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 248 + pair: null + contrast: + fg: 78.8 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.1 + cyan: 46.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 37.9 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.7 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/anti-glare-theme--anti-glare-official.yaml b/themes/anti-glare-theme--anti-glare-official.yaml new file mode 100644 index 00000000..538b4b07 --- /dev/null +++ b/themes/anti-glare-theme--anti-glare-official.yaml @@ -0,0 +1,53 @@ +name: "Anti-Glare Theme (anti-glare-official)" +source: + marketplace_id: "azmarifdev.anti-glare-theme" + version: "1.7.0" + installs: 760 + rating: 5 + ratings: 3 + author: "A. Z. M. Arif" + repo: "https://github.com/azmarifdev/anti-glare-theme" + url: "https://marketplace.visualstudio.com/items?itemName=azmarifdev.anti-glare-theme" + formats: null +colors: + bg: "#001322" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 242 + pair: null + contrast: + fg: 79.8 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.4 diff --git a/themes/antzed--anthropic-dark.yaml b/themes/antzed--anthropic-dark.yaml new file mode 100644 index 00000000..dca3fa3f --- /dev/null +++ b/themes/antzed--anthropic-dark.yaml @@ -0,0 +1,53 @@ +name: "AntZed (Anthropic Dark)" +source: + marketplace_id: "TeoVoss.antzed-theme" + version: "1.1.1" + installs: 137 + rating: 0 + ratings: 0 + author: "TeoVoss" + repo: "https://github.com/TeoVoss/antzed-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TeoVoss.antzed-theme" + formats: null +colors: + bg: "#151412" + fg: "#F0EDE3" + black: "#151412" + red: "#E68868" + green: "#9FB980" + yellow: "#E9B868" + blue: "#7AACDD" + magenta: "#E68868" + cyan: "#7AACDD" + white: "#F0EDE3" + brightBlack: "#6A6760" + brightRed: "#F09978" + brightGreen: "#AFC990" + brightYellow: "#F9C978" + brightBlue: "#8ABDEE" + brightMagenta: "#F09978" + brightCyan: "#8ABDEE" + brightWhite: "#FAF9F5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.3 + black: 0 + red: 50.8 + green: 59.1 + yellow: 67.9 + blue: 54.2 + magenta: 50.8 + cyan: 54.2 + white: 95.3 + brightBlack: 22.8 + brightRed: 58.3 + brightGreen: 68.1 + brightYellow: 77.6 + brightBlue: 63.4 + brightMagenta: 58.3 + brightCyan: 63.4 + brightWhite: 103.1 diff --git a/themes/antzed--anthropic-light.yaml b/themes/antzed--anthropic-light.yaml new file mode 100644 index 00000000..0a98f054 --- /dev/null +++ b/themes/antzed--anthropic-light.yaml @@ -0,0 +1,53 @@ +name: "AntZed (Anthropic Light)" +source: + marketplace_id: "TeoVoss.antzed-theme" + version: "1.1.1" + installs: 137 + rating: 0 + ratings: 0 + author: "TeoVoss" + repo: "https://github.com/TeoVoss/antzed-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TeoVoss.antzed-theme" + formats: null +colors: + bg: "#FAF9F5" + fg: "#141413" + black: "#141413" + red: "#D97757" + green: "#788C5D" + yellow: "#D97757" + blue: "#6A9BCC" + magenta: "#D97757" + cyan: "#6A9BCC" + white: "#FAF9F5" + brightBlack: "#B0AEA5" + brightRed: "#D97757" + brightGreen: "#788C5D" + brightYellow: "#D97757" + brightBlue: "#6A9BCC" + brightMagenta: "#D97757" + brightCyan: "#6A9BCC" + brightWhite: "#FAF9F5" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.4 + black: 101.4 + red: 54.2 + green: 60.7 + yellow: 54.2 + blue: 52 + magenta: 54.2 + cyan: 52 + white: 0 + brightBlack: 40.2 + brightRed: 54.2 + brightGreen: 60.7 + brightYellow: 54.2 + brightBlue: 52 + brightMagenta: 54.2 + brightCyan: 52 + brightWhite: 0 diff --git a/themes/anya.yaml b/themes/anya.yaml new file mode 100644 index 00000000..a4db66d4 --- /dev/null +++ b/themes/anya.yaml @@ -0,0 +1,53 @@ +name: "Anya" +source: + marketplace_id: "choednwn.anya" + version: "0.0.8" + installs: 331 + rating: 5 + ratings: 1 + author: "choednwn" + repo: "https://github.com/anya-theme/anya-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=choednwn.anya" + formats: null +colors: + bg: "#1E1E1E" + fg: "#CCCCCC" + black: "#282727" + red: "#E05656" + green: "#69AD7A" + yellow: "#DDB96C" + blue: "#6396BD" + magenta: "#DB89C0" + cyan: "#61AC93" + white: "#DDDDDD" + brightBlack: "#444444" + brightRed: "#E05656" + brightGreen: "#69AD7A" + brightYellow: "#DDB96C" + brightBlue: "#6396BD" + brightMagenta: "#DB89C0" + brightCyan: "#61AC93" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.8 + black: 0 + red: 35.8 + green: 48.2 + yellow: 65.4 + blue: 41.2 + magenta: 51 + cyan: 48.1 + white: 84.2 + brightBlack: 8 + brightRed: 35.8 + brightGreen: 48.2 + brightYellow: 65.4 + brightBlue: 41.2 + brightMagenta: 51 + brightCyan: 48.1 + brightWhite: 88.6 diff --git a/themes/anysphere-dark-greener.yaml b/themes/anysphere-dark-greener.yaml new file mode 100644 index 00000000..67e76a9a --- /dev/null +++ b/themes/anysphere-dark-greener.yaml @@ -0,0 +1,53 @@ +name: "Anysphere Dark greener" +source: + marketplace_id: "verteres1001.anysphere-dark-greener" + version: "1.1.2" + installs: 785 + rating: 0 + ratings: 0 + author: "verteres" + repo: "https://github.com/JohanTiniusSkjelberg/anysphere-greener" + url: "https://marketplace.visualstudio.com/items?itemName=verteres1001.anysphere-dark-greener" + formats: null +colors: + bg: "#181818" + fg: "#D6D6DD" + black: "#676767" + red: "#F14C4C" + green: "#15AC91" + yellow: "#E5B95C" + blue: "#4C9DF3" + magenta: "#E567DC" + cyan: "#75D3BA" + white: "#D6D6DD" + brightBlack: "#676767" + brightRed: "#F14C4C" + brightGreen: "#69AF83" + brightYellow: "#E5B95C" + brightBlue: "#3993B1" + brightMagenta: "#E567DC" + brightCyan: "#75D3BA" + brightWhite: "#D6D6DD" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.9 + black: 22.4 + red: 38.5 + green: 46.5 + yellow: 67.1 + blue: 46.7 + magenta: 46.4 + cyan: 68.8 + white: 80.9 + brightBlack: 22.4 + brightRed: 38.5 + brightGreen: 50.1 + brightYellow: 67.1 + brightBlue: 38.2 + brightMagenta: 46.4 + brightCyan: 68.8 + brightWhite: 80.9 diff --git a/themes/apathy-theme--apathy-experimental.yaml b/themes/apathy-theme--apathy-experimental.yaml new file mode 100644 index 00000000..3544c5ad --- /dev/null +++ b/themes/apathy-theme--apathy-experimental.yaml @@ -0,0 +1,54 @@ +name: "Apathy Theme (Apathy Experimental)" +source: + marketplace_id: "CooperMaruyama.apathy-theme" + version: "2.3.0" + installs: 264 + rating: 5 + ratings: 2 + author: "Cooper Maruyama" + repo: "https://github.com/coopmoney/apathy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CooperMaruyama.apathy-theme" + formats: + zed: "https://raw.githubusercontent.com/coopmoney/apathy-theme/main/dist/zed/apathetic-ocean.json" +colors: + bg: "#12121C" + fg: "#E1E2E5" + black: "#2A273F" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#ECEFF4" + brightBlack: "#3B3853" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 88.5 + black: 0 + red: 46.9 + green: 84.5 + yellow: 79.3 + blue: 56.3 + magenta: 54.1 + cyan: 78.6 + white: 96.6 + brightBlack: 0 + brightRed: 44 + brightGreen: 84.5 + brightYellow: 79.3 + brightBlue: 56.3 + brightMagenta: 54.1 + brightCyan: 78.6 + brightWhite: 107.2 diff --git a/themes/apathy-theme--apathy.yaml b/themes/apathy-theme--apathy.yaml new file mode 100644 index 00000000..bd24e9e7 --- /dev/null +++ b/themes/apathy-theme--apathy.yaml @@ -0,0 +1,54 @@ +name: "Apathy Theme (Apathy)" +source: + marketplace_id: "CooperMaruyama.apathy-theme" + version: "2.3.0" + installs: 264 + rating: 5 + ratings: 2 + author: "Cooper Maruyama" + repo: "https://github.com/coopmoney/apathy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CooperMaruyama.apathy-theme" + formats: + zed: "https://raw.githubusercontent.com/coopmoney/apathy-theme/main/dist/zed/apathetic-ocean.json" +colors: + bg: "#0E0E15" + fg: "#8E93B0" + black: "#2A273F" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#D1D3D9" + brightBlack: "#3F3B5A" + brightRed: "#FF6B82" + brightGreen: "#D7F2A6" + brightYellow: "#FFE082" + brightBlue: "#9EC3FF" + brightMagenta: "#DDA4FF" + brightCyan: "#A3EEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 285 + pair: null + contrast: + fg: 44.4 + black: 0 + red: 47.2 + green: 84.8 + yellow: 79.6 + blue: 56.6 + magenta: 54.4 + cyan: 78.9 + white: 79.5 + brightBlack: 7.7 + brightRed: 49.3 + brightGreen: 92.6 + brightYellow: 89 + brightBlue: 69.1 + brightMagenta: 65 + brightCyan: 89 + brightWhite: 107.5 diff --git a/themes/apollo-theme--apollo-dark.yaml b/themes/apollo-theme--apollo-dark.yaml new file mode 100644 index 00000000..25566b02 --- /dev/null +++ b/themes/apollo-theme--apollo-dark.yaml @@ -0,0 +1,53 @@ +name: "Apollo Theme (Apollo Dark)" +source: + marketplace_id: "lufutu.apollo-theme" + version: "1.0.0" + installs: 151 + rating: 0 + ratings: 0 + author: "lufutu" + repo: "https://github.com/lufutu/apollo-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lufutu.apollo-theme" + formats: null +colors: + bg: "#090A14" + fg: "#EBEDE9" + black: "#090A14" + red: "#CF573C" + green: "#75A743" + yellow: "#DE9E41" + blue: "#4F8FBA" + magenta: "#C65197" + cyan: "#73BED3" + white: "#EBEDE9" + brightBlack: "#394A50" + brightRed: "#DA863E" + brightGreen: "#A8CA58" + brightYellow: "#E8C170" + brightBlue: "#73BED3" + brightMagenta: "#DF84A5" + brightCyan: "#A4DDDB" + brightWhite: "#EBEDE9" +meta: + mode: "dark" + accent: "red" + hue: 279 + pair: null + contrast: + fg: 95.5 + black: 0 + red: 33.8 + green: 47.1 + yellow: 56.5 + blue: 38.9 + magenta: 33.3 + cyan: 61.3 + white: 95.5 + brightBlack: 10.8 + brightRed: 47.9 + brightGreen: 67.2 + brightYellow: 72 + brightBlue: 61.3 + brightMagenta: 50.7 + brightCyan: 79.4 + brightWhite: 95.5 diff --git a/themes/apollo-theme--apollo-light.yaml b/themes/apollo-theme--apollo-light.yaml new file mode 100644 index 00000000..cad3c402 --- /dev/null +++ b/themes/apollo-theme--apollo-light.yaml @@ -0,0 +1,53 @@ +name: "Apollo Theme (Apollo Light)" +source: + marketplace_id: "lufutu.apollo-theme" + version: "1.0.0" + installs: 151 + rating: 0 + ratings: 0 + author: "lufutu" + repo: "https://github.com/lufutu/apollo-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lufutu.apollo-theme" + formats: null +colors: + bg: "#EBEDE9" + fg: "#090A14" + black: "#090A14" + red: "#CF573C" + green: "#75A743" + yellow: "#DE9E41" + blue: "#4F8FBA" + magenta: "#C65197" + cyan: "#73BED3" + white: "#EBEDE9" + brightBlack: "#577277" + brightRed: "#DA863E" + brightGreen: "#A8CA58" + brightYellow: "#E8C170" + brightBlue: "#73BED3" + brightMagenta: "#DF84A5" + brightCyan: "#A4DDDB" + brightWhite: "#EBEDE9" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 94.7 + black: 94.7 + red: 56.6 + green: 43.4 + yellow: 34.3 + blue: 51.5 + magenta: 57 + cyan: 29.7 + white: 0 + brightBlack: 64.4 + brightRed: 42.7 + brightGreen: 24.1 + brightYellow: 19.5 + brightBlue: 29.7 + brightMagenta: 39.9 + brightCyan: 12.5 + brightWhite: 0 diff --git a/themes/aqua-main.yaml b/themes/aqua-main.yaml new file mode 100644 index 00000000..be2e8eea --- /dev/null +++ b/themes/aqua-main.yaml @@ -0,0 +1,53 @@ +name: "aqua-main" +source: + marketplace_id: "JohnnyBoySou.aqua-main" + version: "0.0.9" + installs: 1651 + rating: 0 + ratings: 0 + author: "JohnnyBoySou" + repo: "https://github.com/JohnnyBoySou/aqua-main" + url: "https://marketplace.visualstudio.com/items?itemName=JohnnyBoySou.aqua-main" + formats: null +colors: + bg: "#11172C" + fg: "#FFFFFF" + black: "#A5A5A5" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + pair: null + contrast: + fg: 106.7 + black: 52.4 + red: 26.6 + green: 52.8 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.9 diff --git a/themes/aqua-material.yaml b/themes/aqua-material.yaml new file mode 100644 index 00000000..54768d82 --- /dev/null +++ b/themes/aqua-material.yaml @@ -0,0 +1,53 @@ +name: "Aqua Material" +source: + marketplace_id: "Parth.mycolortheme" + version: "0.0.8" + installs: 2372 + rating: 5 + ratings: 1 + author: "Parth" + repo: "https://github.com/parthpanchal123/MyCustomVsTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Parth.mycolortheme" + formats: null +colors: + bg: "#1B1E2A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + pair: null + contrast: + fg: 78.6 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.7 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/aquatic-blue.yaml b/themes/aquatic-blue.yaml new file mode 100644 index 00000000..907232de --- /dev/null +++ b/themes/aquatic-blue.yaml @@ -0,0 +1,53 @@ +name: "Aquatic blue" +source: + marketplace_id: "xynny.aquaticblue-theme" + version: "0.0.1" + installs: 1105 + rating: 0 + ratings: 0 + author: "xynny" + repo: "https://github.com/xynnylol/vsthemes" + url: "https://marketplace.visualstudio.com/items?itemName=xynny.aquaticblue-theme" + formats: null +colors: + bg: "#001821" + fg: "#D4D4D4" + black: "#797575" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 225 + pair: null + contrast: + fg: 79.5 + black: 29.1 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 106.9 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/arasaka-inferno-theme--blue-neon.yaml b/themes/arasaka-inferno-theme--blue-neon.yaml new file mode 100644 index 00000000..27bbc30d --- /dev/null +++ b/themes/arasaka-inferno-theme--blue-neon.yaml @@ -0,0 +1,53 @@ +name: "Arasaka Inferno Theme (Blue Neon)" +source: + marketplace_id: "puszkarek.arasaka-inferno-vscode-theme" + version: "1.2.0" + installs: 270 + rating: 0 + ratings: 0 + author: "Puszkarek" + repo: "https://github.com/Puszkarek/arasaka-inferno-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.arasaka-inferno-vscode-theme" + formats: null +colors: + bg: "#0E0E17" + fg: "#63A6FD" + black: "#0E0E17" + red: "#FF2E6E" + green: "#2570D4" + yellow: "#F0B437" + blue: "#00FFCC" + magenta: "#FF00AA" + cyan: "#00FFF7" + white: "#2570D4" + brightBlack: "#030305" + brightRed: "#FF2E6E" + brightGreen: "#2570D4" + brightYellow: "#F0B437" + brightBlue: "#00FFCC" + brightMagenta: "#FF00A8" + brightCyan: "#00FFF7" + brightWhite: "#8FBFFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 52.8 + black: 0 + red: 39.8 + green: 28.3 + yellow: 67.3 + blue: 89.5 + magenta: 40.6 + cyan: 91.4 + white: 28.3 + brightBlack: 0 + brightRed: 39.8 + brightGreen: 28.3 + brightYellow: 67.3 + brightBlue: 89.5 + brightMagenta: 40.5 + brightCyan: 91.4 + brightWhite: 66.1 diff --git a/themes/arasaka-inferno-theme--pink-neon.yaml b/themes/arasaka-inferno-theme--pink-neon.yaml new file mode 100644 index 00000000..13e3799f --- /dev/null +++ b/themes/arasaka-inferno-theme--pink-neon.yaml @@ -0,0 +1,53 @@ +name: "Arasaka Inferno Theme (Pink Neon)" +source: + marketplace_id: "puszkarek.arasaka-inferno-vscode-theme" + version: "1.2.0" + installs: 270 + rating: 0 + ratings: 0 + author: "Puszkarek" + repo: "https://github.com/Puszkarek/arasaka-inferno-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.arasaka-inferno-vscode-theme" + formats: null +colors: + bg: "#160E17" + fg: "#63A6FD" + black: "#160E17" + red: "#FF2E6E" + green: "#D425A5" + yellow: "#F0B437" + blue: "#00FFCC" + magenta: "#FF00AA" + cyan: "#00FFF7" + white: "#D425A5" + brightBlack: "#050305" + brightRed: "#FF2E6E" + brightGreen: "#D425A5" + brightYellow: "#F0B437" + brightBlue: "#00FFCC" + brightMagenta: "#FF00A8" + brightCyan: "#00FFF7" + brightWhite: "#8FBFFF" +meta: + mode: "dark" + accent: "red" + hue: 323 + pair: null + contrast: + fg: 52.6 + black: 0 + red: 39.7 + green: 31.2 + yellow: 67.2 + blue: 89.3 + magenta: 40.4 + cyan: 91.3 + white: 31.2 + brightBlack: 0 + brightRed: 39.7 + brightGreen: 31.2 + brightYellow: 67.2 + brightBlue: 89.3 + brightMagenta: 40.3 + brightCyan: 91.3 + brightWhite: 66 diff --git a/themes/arasaka-inferno-theme--red-neon.yaml b/themes/arasaka-inferno-theme--red-neon.yaml new file mode 100644 index 00000000..25ca83b8 --- /dev/null +++ b/themes/arasaka-inferno-theme--red-neon.yaml @@ -0,0 +1,53 @@ +name: "Arasaka Inferno Theme (Red Neon)" +source: + marketplace_id: "puszkarek.arasaka-inferno-vscode-theme" + version: "1.2.0" + installs: 270 + rating: 0 + ratings: 0 + author: "Puszkarek" + repo: "https://github.com/Puszkarek/arasaka-inferno-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.arasaka-inferno-vscode-theme" + formats: null +colors: + bg: "#0E0E17" + fg: "#FF6872" + black: "#0E0E17" + red: "#FF2E6E" + green: "#FF3845" + yellow: "#F0B437" + blue: "#2570D4" + magenta: "#FF00AA" + cyan: "#00FFF7" + white: "#FF3845" + brightBlack: "#030305" + brightRed: "#FF2E6E" + brightGreen: "#FF3845" + brightYellow: "#F0B437" + brightBlue: "#2570D4" + brightMagenta: "#FF00A8" + brightCyan: "#00FFF7" + brightWhite: "#FFACAC" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 48.2 + black: 0 + red: 39.8 + green: 39.9 + yellow: 67.3 + blue: 28.3 + magenta: 40.6 + cyan: 91.4 + white: 39.9 + brightBlack: 0 + brightRed: 39.8 + brightGreen: 39.9 + brightYellow: 67.3 + brightBlue: 28.3 + brightMagenta: 40.5 + brightCyan: 91.4 + brightWhite: 69.4 diff --git a/themes/arcadia-theme--arcadia-theme-dark.yaml b/themes/arcadia-theme--arcadia-theme-dark.yaml new file mode 100644 index 00000000..7fcc02bf --- /dev/null +++ b/themes/arcadia-theme--arcadia-theme-dark.yaml @@ -0,0 +1,53 @@ +name: "Arcadia Theme (Arcadia Theme Dark)" +source: + marketplace_id: "Kodi.arcadia-theme" + version: "1.3.2" + installs: 1150 + rating: 5 + ratings: 3 + author: "Moti" + repo: "https://github.com/motidev/arcadia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Kodi.arcadia-theme" + formats: null +colors: + bg: "#1E2227" + fg: "#9DA5B4" + black: "#6B717D" + red: "#E06C75" + green: "#5D9B5F" + yellow: "#CC9343" + blue: "#4DADB9" + magenta: "#8780D8" + cyan: "#4DADB9" + white: "#D7DAE0" + brightBlack: "#6B717D" + brightRed: "#E06C75" + brightGreen: "#5D9B5F" + brightYellow: "#CC9343" + brightBlue: "#4DADB9" + brightMagenta: "#8780D8" + brightCyan: "#4DADB9" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "orange" + hue: 254 + pair: null + contrast: + fg: 50.9 + black: 25.3 + red: 40.7 + green: 38.8 + yellow: 47.6 + blue: 48.6 + magenta: 37.5 + cyan: 48.6 + white: 81.7 + brightBlack: 25.3 + brightRed: 40.7 + brightGreen: 38.8 + brightYellow: 47.6 + brightBlue: 48.6 + brightMagenta: 37.5 + brightCyan: 48.6 + brightWhite: 89.3 diff --git a/themes/arcadia-theme--arcadia-theme-storm.yaml b/themes/arcadia-theme--arcadia-theme-storm.yaml new file mode 100644 index 00000000..c56abdd2 --- /dev/null +++ b/themes/arcadia-theme--arcadia-theme-storm.yaml @@ -0,0 +1,53 @@ +name: "Arcadia Theme (Arcadia Theme Storm)" +source: + marketplace_id: "Kodi.arcadia-theme" + version: "1.3.2" + installs: 1150 + rating: 5 + ratings: 3 + author: "Moti" + repo: "https://github.com/motidev/arcadia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Kodi.arcadia-theme" + formats: null +colors: + bg: "#1A1B27" + fg: "#9DA5B4" + black: "#6B717D" + red: "#E06C75" + green: "#5D9B5F" + yellow: "#CC9343" + blue: "#4DADB9" + magenta: "#8780D8" + cyan: "#4DADB9" + white: "#D7DAE0" + brightBlack: "#6B717D" + brightRed: "#E06C75" + brightGreen: "#5D9B5F" + brightYellow: "#CC9343" + brightBlue: "#4DADB9" + brightMagenta: "#8780D8" + brightCyan: "#4DADB9" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "orange" + hue: 281 + pair: null + contrast: + fg: 51.7 + black: 26.1 + red: 41.5 + green: 39.6 + yellow: 48.4 + blue: 49.3 + magenta: 38.3 + cyan: 49.3 + white: 82.5 + brightBlack: 26.1 + brightRed: 41.5 + brightGreen: 39.6 + brightYellow: 48.4 + brightBlue: 49.3 + brightMagenta: 38.3 + brightCyan: 49.3 + brightWhite: 90.1 diff --git a/themes/arcaea-theme--arcaea.yaml b/themes/arcaea-theme--arcaea.yaml new file mode 100644 index 00000000..74bd1cab --- /dev/null +++ b/themes/arcaea-theme--arcaea.yaml @@ -0,0 +1,53 @@ +name: "Arcaea Theme (Arcaea)" +source: + marketplace_id: "ayatough.arcaea-theme" + version: "0.1.2" + installs: 2255 + rating: 5 + ratings: 4 + author: "ayatough" + repo: "https://github.com/ayatough/vscode-arcaea-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ayatough.arcaea-theme" + formats: null +colors: + bg: "#1C1C1C" + fg: "#BDBCDB" + black: "#1F1F1F" + red: "#CC7F65" + green: "#70C184" + yellow: "#CCCC4F" + blue: "#7099C1" + magenta: "#AD70C1" + cyan: "#70C1C1" + white: "#F1F1F1" + brightBlack: "#1F1F1F" + brightRed: "#CC7F65" + brightGreen: "#70C184" + brightYellow: "#CCCC4F" + brightBlue: "#7099C1" + brightMagenta: "#AD70C1" + brightCyan: "#70C1C1" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 66.3 + black: 0 + red: 42.5 + green: 58 + yellow: 70.8 + blue: 43.7 + magenta: 36.9 + cyan: 60.1 + white: 97.1 + brightBlack: 0 + brightRed: 42.5 + brightGreen: 58 + brightYellow: 70.8 + brightBlue: 43.7 + brightMagenta: 36.9 + brightCyan: 60.1 + brightWhite: 97.1 diff --git a/themes/archangel--archangel-dusk.yaml b/themes/archangel--archangel-dusk.yaml new file mode 100644 index 00000000..e8c77370 --- /dev/null +++ b/themes/archangel--archangel-dusk.yaml @@ -0,0 +1,53 @@ +name: "archangel (🪽 archangel → dusk)" +source: + marketplace_id: "allam-se.archangel" + version: "3.1.0" + installs: 506 + rating: 5 + ratings: 1 + author: "Allam" + repo: "https://github.com/allam-se/archangel" + url: "https://marketplace.visualstudio.com/items?itemName=allam-se.archangel" + formats: null +colors: + bg: "#0F0F0F" + fg: "#FFFFFF" + black: "#222029" + red: "#E92741" + green: "#3EC841" + yellow: "#E0D561" + blue: "#418EDD" + magenta: "#FF00CC" + cyan: "#00ECD8" + white: "#FFFFFF" + brightBlack: "#777777" + brightRed: "#E92741" + brightGreen: "#3EC841" + brightYellow: "#E0D561" + brightBlue: "#418EDD" + brightMagenta: "#FF00CC" + brightCyan: "#00ECD8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.5 + black: 0 + red: 33.1 + green: 59 + yellow: 78.9 + blue: 39.9 + magenta: 42.4 + cyan: 80.1 + white: 107.5 + brightBlack: 30.2 + brightRed: 33.1 + brightGreen: 59 + brightYellow: 78.9 + brightBlue: 39.9 + brightMagenta: 42.4 + brightCyan: 80.1 + brightWhite: 107.5 diff --git a/themes/archangel--archangel.yaml b/themes/archangel--archangel.yaml new file mode 100644 index 00000000..174db9f0 --- /dev/null +++ b/themes/archangel--archangel.yaml @@ -0,0 +1,53 @@ +name: "archangel (🪽 archangel)" +source: + marketplace_id: "allam-se.archangel" + version: "3.1.0" + installs: 506 + rating: 5 + ratings: 1 + author: "Allam" + repo: "https://github.com/allam-se/archangel" + url: "https://marketplace.visualstudio.com/items?itemName=allam-se.archangel" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#222029" + red: "#E92741" + green: "#3EC841" + yellow: "#E0D561" + blue: "#418EDD" + magenta: "#FF00CC" + cyan: "#00ECD8" + white: "#FFFFFF" + brightBlack: "#343C50" + brightRed: "#E92741" + brightGreen: "#3EC841" + brightYellow: "#E0D561" + brightBlue: "#418EDD" + brightMagenta: "#FF00CC" + brightCyan: "#00ECD8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 33.5 + green: 59.4 + yellow: 79.3 + blue: 40.3 + magenta: 42.7 + cyan: 80.5 + white: 107.9 + brightBlack: 0 + brightRed: 33.5 + brightGreen: 59.4 + brightYellow: 79.3 + brightBlue: 40.3 + brightMagenta: 42.7 + brightCyan: 80.5 + brightWhite: 107.9 diff --git a/themes/arctic-night-theme.yaml b/themes/arctic-night-theme.yaml new file mode 100644 index 00000000..c793d6a2 --- /dev/null +++ b/themes/arctic-night-theme.yaml @@ -0,0 +1,53 @@ +name: "Arctic Night Theme" +source: + marketplace_id: "k22pr.arctic-night-theme" + version: "1.0.6" + installs: 55 + rating: 0 + ratings: 0 + author: "k22pr" + repo: "https://github.com/k22pr/arctic-night-theme" + url: "https://marketplace.visualstudio.com/items?itemName=k22pr.arctic-night-theme" + formats: null +colors: + bg: "#1A1D21" + fg: "#E6EDF3" + black: "#484F58" + red: "#BF7E78" + green: "#7FA684" + yellow: "#BFA673" + blue: "#7FA1C4" + magenta: "#BC8CFF" + cyan: "#80B0B5" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#D1A8A4" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#A1BDD6" + brightMagenta: "#D2A8FF" + brightCyan: "#80B0B5" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 93.8 + black: 11.9 + red: 40.5 + green: 47.4 + yellow: 54 + blue: 48 + magenta: 51 + cyan: 53.4 + white: 62.9 + brightBlack: 28.1 + brightRed: 58.8 + brightGreen: 64.3 + brightYellow: 63.5 + brightBlue: 63.3 + brightMagenta: 63.4 + brightCyan: 53.4 + brightWhite: 99.7 diff --git a/themes/arctis--arctis-dark.yaml b/themes/arctis--arctis-dark.yaml new file mode 100644 index 00000000..4c18c513 --- /dev/null +++ b/themes/arctis--arctis-dark.yaml @@ -0,0 +1,53 @@ +name: "Arctis (Arctis Dark+)" +source: + marketplace_id: "avidworks.arctis" + version: "2.3.1" + installs: 15552 + rating: 5 + ratings: 5 + author: "adamdotjs" + repo: "https://github.com/avidworks/arctis" + url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" + formats: null +colors: + bg: "#1E1E1E" + fg: "#D1D1D1" + black: "#333333" + red: "#F1855B" + green: "#13BE76" + yellow: "#E8C59B" + blue: "#9B90F4" + magenta: "#EB94B2" + cyan: "#8ACFEF" + white: "#DBDBDB" + brightBlack: "#575757" + brightRed: "#F1855B" + brightGreen: "#13BE76" + brightYellow: "#E8C59B" + brightBlue: "#9B90F4" + brightMagenta: "#EB94B2" + brightCyan: "#8ACFEF" + brightWhite: "#DBDBDB" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 76.8 + black: 0 + red: 50.6 + green: 53 + yellow: 73 + blue: 47.3 + magenta: 56.5 + cyan: 70.2 + white: 82.9 + brightBlack: 15.1 + brightRed: 50.6 + brightGreen: 53 + brightYellow: 73 + brightBlue: 47.3 + brightMagenta: 56.5 + brightCyan: 70.2 + brightWhite: 82.9 diff --git a/themes/arctis--arctis-high-contrast.yaml b/themes/arctis--arctis-high-contrast.yaml new file mode 100644 index 00000000..7d24c8c2 --- /dev/null +++ b/themes/arctis--arctis-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Arctis (Arctis High Contrast)" +source: + marketplace_id: "avidworks.arctis" + version: "2.3.1" + installs: 15552 + rating: 5 + ratings: 5 + author: "adamdotjs" + repo: "https://github.com/avidworks/arctis" + url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" + formats: null +colors: + bg: "#000000" + fg: "#C7CCD6" + black: "#313744" + red: "#F1855B" + green: "#13BE76" + yellow: "#E8C59B" + blue: "#9B90F4" + magenta: "#EB94B2" + cyan: "#8ACFEF" + white: "#D3D7DF" + brightBlack: "#515B71" + brightRed: "#F1855B" + brightGreen: "#13BE76" + brightYellow: "#E8C59B" + brightBlue: "#9B90F4" + brightMagenta: "#EB94B2" + brightCyan: "#8ACFEF" + brightWhite: "#D3D7DF" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 75.5 + black: 0 + red: 52.5 + green: 54.9 + yellow: 74.9 + blue: 49.1 + magenta: 58.4 + cyan: 72 + white: 82.2 + brightBlack: 18.4 + brightRed: 52.5 + brightGreen: 54.9 + brightYellow: 74.9 + brightBlue: 49.1 + brightMagenta: 58.4 + brightCyan: 72 + brightWhite: 82.2 diff --git a/themes/arctis--arctis-light.yaml b/themes/arctis--arctis-light.yaml new file mode 100644 index 00000000..d56d4ee8 --- /dev/null +++ b/themes/arctis--arctis-light.yaml @@ -0,0 +1,53 @@ +name: "Arctis (Arctis Light)" +source: + marketplace_id: "avidworks.arctis" + version: "2.3.1" + installs: 15552 + rating: 5 + ratings: 5 + author: "adamdotjs" + repo: "https://github.com/avidworks/arctis" + url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" + formats: null +colors: + bg: "#EAECF0" + fg: "#404859" + black: "#CCD1DB" + red: "#C0400C" + green: "#06653D" + yellow: "#B16B16" + blue: "#5946E5" + magenta: "#2E3440" + cyan: "#8ACFEF" + white: "#2E3440" + brightBlack: "#97A1B4" + brightRed: "#C0400C" + brightGreen: "#06653D" + brightYellow: "#B16B16" + brightBlue: "#5946E5" + brightMagenta: "#2E3440" + brightCyan: "#8ACFEF" + brightWhite: "#2E3440" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 79.8 + black: 13.3 + red: 63.8 + green: 73 + yellow: 57.4 + blue: 68.4 + magenta: 87.1 + cyan: 19.4 + white: 87.1 + brightBlack: 39.5 + brightRed: 63.8 + brightGreen: 73 + brightYellow: 57.4 + brightBlue: 68.4 + brightMagenta: 87.1 + brightCyan: 19.4 + brightWhite: 87.1 diff --git a/themes/arctis--arctis-moon.yaml b/themes/arctis--arctis-moon.yaml new file mode 100644 index 00000000..ca034107 --- /dev/null +++ b/themes/arctis--arctis-moon.yaml @@ -0,0 +1,53 @@ +name: "Arctis (Arctis Moon)" +source: + marketplace_id: "avidworks.arctis" + version: "2.3.1" + installs: 15552 + rating: 5 + ratings: 5 + author: "adamdotjs" + repo: "https://github.com/avidworks/arctis" + url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" + formats: null +colors: + bg: "#212337" + fg: "#CCCEE1" + black: "#323453" + red: "#F1855B" + green: "#13BE76" + yellow: "#E8C59B" + blue: "#9B90F4" + magenta: "#EB94B2" + cyan: "#8ACFEF" + white: "#D9DAE8" + brightBlack: "#525689" + brightRed: "#F1855B" + brightGreen: "#13BE76" + brightYellow: "#E8C59B" + brightBlue: "#9B90F4" + brightMagenta: "#EB94B2" + brightCyan: "#8ACFEF" + brightWhite: "#D9DAE8" +meta: + mode: "dark" + accent: "teal" + hue: 279 + pair: null + contrast: + fg: 74.6 + black: 0 + red: 49.6 + green: 52 + yellow: 72 + blue: 46.3 + magenta: 55.5 + cyan: 69.2 + white: 81.8 + brightBlack: 15.4 + brightRed: 49.6 + brightGreen: 52 + brightYellow: 72 + brightBlue: 46.3 + brightMagenta: 55.5 + brightCyan: 69.2 + brightWhite: 81.8 diff --git a/themes/arctis--arctis-night.yaml b/themes/arctis--arctis-night.yaml new file mode 100644 index 00000000..9800f949 --- /dev/null +++ b/themes/arctis--arctis-night.yaml @@ -0,0 +1,53 @@ +name: "Arctis (Arctis Night)" +source: + marketplace_id: "avidworks.arctis" + version: "2.3.1" + installs: 15552 + rating: 5 + ratings: 5 + author: "adamdotjs" + repo: "https://github.com/avidworks/arctis" + url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" + formats: null +colors: + bg: "#011627" + fg: "#BBD1E2" + black: "#162E41" + red: "#F1855B" + green: "#13BE76" + yellow: "#E8C59B" + blue: "#9B90F4" + magenta: "#EB94B2" + cyan: "#8ACFEF" + white: "#CDDDEA" + brightBlack: "#2B5473" + brightRed: "#F1855B" + brightGreen: "#13BE76" + brightYellow: "#E8C59B" + brightBlue: "#9B90F4" + brightMagenta: "#EB94B2" + brightCyan: "#8ACFEF" + brightWhite: "#CDDDEA" +meta: + mode: "dark" + accent: "teal" + hue: 244 + pair: null + contrast: + fg: 75.9 + black: 0 + red: 51.6 + green: 54 + yellow: 74 + blue: 48.2 + magenta: 57.5 + cyan: 71.1 + white: 83.7 + brightBlack: 13.6 + brightRed: 51.6 + brightGreen: 54 + brightYellow: 74 + brightBlue: 48.2 + brightMagenta: 57.5 + brightCyan: 71.1 + brightWhite: 83.7 diff --git a/themes/arctis--arctis.yaml b/themes/arctis--arctis.yaml new file mode 100644 index 00000000..abf58fee --- /dev/null +++ b/themes/arctis--arctis.yaml @@ -0,0 +1,53 @@ +name: "Arctis (Arctis)" +source: + marketplace_id: "avidworks.arctis" + version: "2.3.1" + installs: 15552 + rating: 5 + ratings: 5 + author: "adamdotjs" + repo: "https://github.com/avidworks/arctis" + url: "https://marketplace.visualstudio.com/items?itemName=avidworks.arctis" + formats: null +colors: + bg: "#2E3440" + fg: "#D3D7DF" + black: "#3E4656" + red: "#F1855B" + green: "#13BE76" + yellow: "#E8C59B" + blue: "#9B90F4" + magenta: "#EB94B2" + cyan: "#8ACFEF" + white: "#DEE1E7" + brightBlack: "#5F6B83" + brightRed: "#F1855B" + brightGreen: "#13BE76" + brightYellow: "#E8C59B" + brightBlue: "#9B90F4" + brightMagenta: "#EB94B2" + brightCyan: "#8ACFEF" + brightWhite: "#DEE1E7" +meta: + mode: "dark" + accent: "teal" + hue: 264 + pair: null + contrast: + fg: 76.1 + black: 0 + red: 46.4 + green: 48.8 + yellow: 68.8 + blue: 43 + magenta: 52.3 + cyan: 66 + white: 82.3 + brightBlack: 19 + brightRed: 46.4 + brightGreen: 48.8 + brightYellow: 68.8 + brightBlue: 43 + brightMagenta: 52.3 + brightCyan: 66 + brightWhite: 82.3 diff --git a/themes/ariake-sands--ariake-sands.yaml b/themes/ariake-sands--ariake-sands.yaml new file mode 100644 index 00000000..b9d920f7 --- /dev/null +++ b/themes/ariake-sands--ariake-sands.yaml @@ -0,0 +1,53 @@ +name: "Ariake Sands (Ariake Sands)" +source: + marketplace_id: "radiolevity.ariake-sands" + version: "1.1.3" + installs: 6043 + rating: 0 + ratings: 0 + author: "Finn James" + repo: "https://github.com/radiolevity/ariake-sands" + url: "https://marketplace.visualstudio.com/items?itemName=radiolevity.ariake-sands" + formats: null +colors: + bg: "#242424" + fg: "#C2C6D6" + black: "#677989" + red: "#ED5C93" + green: "#78BBB7" + yellow: "#7E99DD" + blue: "#85B6C8" + magenta: "#B081C5" + cyan: "#B084EB" + white: "#F4FAFF" + brightBlack: "#677989" + brightRed: "#F993BA" + brightGreen: "#9AEFEA" + brightYellow: "#ABBFF2" + brightBlue: "#B8E0EF" + brightMagenta: "#DDA3F7" + brightCyan: "#D3B2FF" + brightWhite: "#F4FAFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 69.6 + black: 27.7 + red: 40.5 + green: 56.4 + yellow: 45.2 + blue: 56 + magenta: 41.2 + cyan: 44.5 + white: 101.2 + brightBlack: 27.7 + brightRed: 58.2 + brightGreen: 85.3 + brightYellow: 65.6 + brightBlue: 81.1 + brightMagenta: 61.8 + brightCyan: 66.1 + brightWhite: 101.2 diff --git a/themes/ariake-sands--ariake-sun.yaml b/themes/ariake-sands--ariake-sun.yaml new file mode 100644 index 00000000..7b98befc --- /dev/null +++ b/themes/ariake-sands--ariake-sun.yaml @@ -0,0 +1,53 @@ +name: "Ariake Sands (Ariake Sun)" +source: + marketplace_id: "radiolevity.ariake-sands" + version: "1.1.3" + installs: 6043 + rating: 0 + ratings: 0 + author: "Finn James" + repo: "https://github.com/radiolevity/ariake-sands" + url: "https://marketplace.visualstudio.com/items?itemName=radiolevity.ariake-sands" + formats: null +colors: + bg: "#F9FAFA" + fg: "#1F1F1F" + black: "#1F1F1F" + red: "#6A12ED" + green: "#1DAFA8" + yellow: "#BA45ED" + blue: "#6A12ED" + magenta: "#6A12ED" + cyan: "#7851B2" + white: "#F9FAFA" + brightBlack: "#B6BAC9" + brightRed: "#770034" + brightGreen: "#1DAFA8" + brightYellow: "#6A12ED" + brightBlue: "#3471B2" + brightMagenta: "#48215C" + brightCyan: "#43227D" + brightWhite: "#F9FAFA" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 100.3 + black: 100.3 + red: 79.7 + green: 48.9 + yellow: 63.8 + blue: 79.7 + magenta: 79.7 + cyan: 75.6 + white: 0 + brightBlack: 34 + brightRed: 91.1 + brightGreen: 48.9 + brightYellow: 79.7 + brightBlue: 71.5 + brightMagenta: 95.3 + brightCyan: 93.5 + brightWhite: 0 diff --git a/themes/armada-theme.yaml b/themes/armada-theme.yaml new file mode 100644 index 00000000..c2812527 --- /dev/null +++ b/themes/armada-theme.yaml @@ -0,0 +1,53 @@ +name: "Armada Theme" +source: + marketplace_id: "DavidSeptimus.armada-theme" + version: "1.0.1" + installs: 296 + rating: 0 + ratings: 0 + author: "DavidSeptimus" + repo: "https://github.com/DavidSeptimus/armada-theme-vscode-extension" + url: "https://marketplace.visualstudio.com/items?itemName=DavidSeptimus.armada-theme" + formats: null +colors: + bg: "#18191B" + fg: "#E0E1E4" + black: "#E0E1E4" + red: "#EB4056" + green: "#82D2CE" + yellow: "#FAD075" + blue: "#4B8DEC" + magenta: "#EB83E2" + cyan: "#2CCCE6" + white: "#18191B" + brightBlack: "#595959" + brightRed: "#C7001B" + brightGreen: "#009E6F" + brightYellow: "#E09119" + brightBlue: "#0067E6" + brightMagenta: "#EB4DDE" + brightCyan: "#00BAD6" + brightWhite: "#18191B" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 87.3 + black: 87.3 + red: 35.5 + green: 70 + yellow: 80.2 + blue: 40.2 + magenta: 54.6 + cyan: 64.8 + white: 0 + brightBlack: 16.5 + brightRed: 22.9 + brightGreen: 39.3 + brightYellow: 51.1 + brightBlue: 26 + brightMagenta: 42.9 + brightCyan: 55.5 + brightWhite: 0 diff --git a/themes/arunim-s-theme.yaml b/themes/arunim-s-theme.yaml new file mode 100644 index 00000000..b7fa8b37 --- /dev/null +++ b/themes/arunim-s-theme.yaml @@ -0,0 +1,53 @@ +name: "Arunim's Theme" +source: + marketplace_id: "arunim-io.arunim-theme" + version: "0.0.2" + installs: 30 + rating: 0 + ratings: 0 + author: "Mugdha Arunim Ahmed" + repo: "https://github.com/arunim-io/arunim-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arunim-io.arunim-theme" + formats: null +colors: + bg: "#0F0F0F" + fg: "#D4D4D4" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.1 + black: 9.5 + red: 37.4 + green: 61 + yellow: 49.2 + blue: 50.3 + magenta: 39.7 + cyan: 53.1 + white: 83.7 + brightBlack: 16.1 + brightRed: 46.7 + brightGreen: 77.4 + brightYellow: 61.9 + brightBlue: 64.4 + brightMagenta: 50.9 + brightCyan: 68.4 + brightWhite: 91.3 diff --git a/themes/asaka-theme.yaml b/themes/asaka-theme.yaml new file mode 100644 index 00000000..2a879f7a --- /dev/null +++ b/themes/asaka-theme.yaml @@ -0,0 +1,53 @@ +name: "asaka-theme" +source: + marketplace_id: "asaka.asaka-theme" + version: "0.1.0" + installs: 17 + rating: 0 + ratings: 0 + author: "asaka" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=asaka.asaka-theme" + formats: null +colors: + bg: "#00030F" + fg: "#CDCDCD" + black: "#383838" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 258 + pair: null + contrast: + fg: 76.2 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 80.5 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/ash-ember-warm-dark-theme.yaml b/themes/ash-ember-warm-dark-theme.yaml new file mode 100644 index 00000000..f5bb900c --- /dev/null +++ b/themes/ash-ember-warm-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Ash & Ember — Warm Dark Theme" +source: + marketplace_id: "InnaSodri.ash-ember-theme" + version: "0.0.3" + installs: 130 + rating: 0 + ratings: 0 + author: "Inna Sodri" + repo: "https://example.com/inna/ash-ember-theme" + url: "https://marketplace.visualstudio.com/items?itemName=InnaSodri.ash-ember-theme" + formats: null +colors: + bg: "#131313" + fg: "#EDEDED" + black: "#2A2A2A" + red: "#D14D41" + green: "#6FBF8F" + yellow: "#FFB067" + blue: "#6FA4FF" + magenta: "#A08CC2" + cyan: "#3FB8C0" + white: "#D9D9D9" + brightBlack: "#2A2A2A" + brightRed: "#D14D41" + brightGreen: "#6FBF8F" + brightYellow: "#FFB067" + brightBlue: "#6FA4FF" + brightMagenta: "#A08CC2" + brightCyan: "#3FB8C0" + brightWhite: "#D9D9D9" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.5 + black: 0 + red: 31.9 + green: 58.3 + yellow: 68.7 + blue: 52.6 + magenta: 44.6 + cyan: 54.9 + white: 82.9 + brightBlack: 0 + brightRed: 31.9 + brightGreen: 58.3 + brightYellow: 68.7 + brightBlue: 52.6 + brightMagenta: 44.6 + brightCyan: 54.9 + brightWhite: 82.9 diff --git a/themes/ashao-theme.yaml b/themes/ashao-theme.yaml new file mode 100644 index 00000000..d31cc79b --- /dev/null +++ b/themes/ashao-theme.yaml @@ -0,0 +1,53 @@ +name: "Ashao Theme" +source: + marketplace_id: "ashao.theme-ashao" + version: "1.0.0" + installs: 52 + rating: 0 + ratings: 0 + author: "ashao" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ashao.theme-ashao" + formats: null +colors: + bg: "#2B2B2B" + fg: "#C5C8C6" + black: "#1E1E1E" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 68.8 + black: 0 + red: 21.6 + green: 50 + yellow: 54.6 + blue: 31.6 + magenta: 29.2 + cyan: 47.4 + white: 85.5 + brightBlack: 19 + brightRed: 34.3 + brightGreen: 74 + brightYellow: 80.9 + brightBlue: 46.8 + brightMagenta: 43.5 + brightCyan: 70.4 + brightWhite: 98.9 diff --git a/themes/asp-editor.yaml b/themes/asp-editor.yaml new file mode 100644 index 00000000..d25b0a91 --- /dev/null +++ b/themes/asp-editor.yaml @@ -0,0 +1,53 @@ +name: "ASP Editor" +source: + marketplace_id: "aspeditor.asp-language-editor-dlv2" + version: "0.1.5" + installs: 2191 + rating: 5 + ratings: 1 + author: "aspeditor" + repo: "https://github.com/pierpaolosestito-dev/ASPEditorPlugin" + url: "https://marketplace.visualstudio.com/items?itemName=aspeditor.asp-language-editor-dlv2" + formats: null +colors: + bg: "#1B1D1E" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#3A7986" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 101.3 + black: 0 + red: 23.9 + green: 52.4 + yellow: 57 + blue: 34 + magenta: 31.5 + cyan: 49.8 + white: 87.8 + brightBlack: 21.4 + brightRed: 36.6 + brightGreen: 76.3 + brightYellow: 83.2 + brightBlue: 49.2 + brightMagenta: 45.9 + brightCyan: 26.1 + brightWhite: 101.3 diff --git a/themes/aspiesoft-intellij-theme--aspiesoft-intellij-theme.yaml b/themes/aspiesoft-intellij-theme--aspiesoft-intellij-theme.yaml new file mode 100644 index 00000000..3f3a0547 --- /dev/null +++ b/themes/aspiesoft-intellij-theme--aspiesoft-intellij-theme.yaml @@ -0,0 +1,53 @@ +name: "AspieSoft IntelliJ Theme (AspieSoft IntelliJ Theme)" +source: + marketplace_id: "AspieSoft.aspiesoft-intellij-theme" + version: "1.0.3" + installs: 3794 + rating: 0 + ratings: 0 + author: "AspieSoft" + repo: "https://github.com/aspiesoft/vscode-intellij-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AspieSoft.aspiesoft-intellij-theme" + formats: null +colors: + bg: "#272727" + fg: "#A9B7C6" + black: "#FFFFFF" + red: "#FF6B68" + green: "#A8C023" + yellow: "#D6BF55" + blue: "#5394EC" + magenta: "#AE8ABE" + cyan: "#299999" + white: "#1F1F1F" + brightBlack: "#FFFFFF" + brightRed: "#FF8785" + brightGreen: "#A8C023" + brightYellow: "#FFFF00" + brightBlue: "#7EAEF1" + brightMagenta: "#FF99FF" + brightCyan: "#6CDADA" + brightWhite: "#1F1F1F" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 59.2 + black: 104.6 + red: 45.8 + green: 59.2 + yellow: 65 + blue: 41 + magenta: 42.9 + cyan: 36.9 + white: 0 + brightBlack: 104.6 + brightRed: 53.5 + brightGreen: 59.2 + brightYellow: 99.4 + brightBlue: 54 + brightMagenta: 64.3 + brightCyan: 70.9 + brightWhite: 0 diff --git a/themes/aster.yaml b/themes/aster.yaml new file mode 100644 index 00000000..d4f2a3f8 --- /dev/null +++ b/themes/aster.yaml @@ -0,0 +1,53 @@ +name: "Aster" +source: + marketplace_id: "jtheol.aster-dark" + version: "0.1.0" + installs: 37 + rating: 0 + ratings: 0 + author: "jtheol" + repo: "https://github.com/jtheol/aster-dark" + url: "https://marketplace.visualstudio.com/items?itemName=jtheol.aster-dark" + formats: null +colors: + bg: "#000000" + fg: "#E0E0E0" + black: "#282828" + red: "#D4A090" + green: "#8FB573" + yellow: "#D6C998" + blue: "#6F8BBB" + magenta: "#C6BDA0" + cyan: "#8BA0B0" + white: "#D0D0D0" + brightBlack: "#555555" + brightRed: "#E2B0A0" + brightGreen: "#C7DBB5" + brightYellow: "#FEF9C3" + brightBlue: "#D6B681" + brightMagenta: "#D4CBA8" + brightCyan: "#A8B8C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 87.9 + black: 0 + red: 57.3 + green: 56.2 + yellow: 73.9 + blue: 39.7 + magenta: 66.9 + cyan: 49.4 + white: 78.1 + brightBlack: 16.1 + brightRed: 65.9 + brightGreen: 80.8 + brightYellow: 102.4 + brightBlue: 65.5 + brightMagenta: 74.9 + brightCyan: 62.9 + brightWhite: 107.9 diff --git a/themes/astra-theme.yaml b/themes/astra-theme.yaml new file mode 100644 index 00000000..8f24cd36 --- /dev/null +++ b/themes/astra-theme.yaml @@ -0,0 +1,53 @@ +name: "astra-theme" +source: + marketplace_id: "AstraVirtual.astra-theme-dark" + version: "0.0.1" + installs: 6 + rating: 0 + ratings: 0 + author: "AstraVirtual" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AstraVirtual.astra-theme-dark" + formats: null +colors: + bg: "#1E1E1E" + fg: "#E0C3C3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 72.4 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/astro-by-mike--astro-dark.yaml b/themes/astro-by-mike--astro-dark.yaml new file mode 100644 index 00000000..cb945925 --- /dev/null +++ b/themes/astro-by-mike--astro-dark.yaml @@ -0,0 +1,53 @@ +name: "Astro by Mike (Astro Dark)" +source: + marketplace_id: "wicked-labs.astro-theme" + version: "0.9.7" + installs: 5261 + rating: 5 + ratings: 1 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/astro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.astro-theme" + formats: null +colors: + bg: "#0F1014" + fg: "#9898A2" + black: "#FFFFFF" + red: "#EEF0F9" + green: "#5CC9F5" + yellow: "#23EBC0" + blue: "#ACAFFF" + magenta: "#DA68FB" + cyan: "#FFD493" + white: "#9898A2" + brightBlack: "#686974" + brightRed: "#EEF0F9" + brightGreen: "#5CC9F5" + brightYellow: "#23EBC0" + brightBlue: "#ACAFFF" + brightMagenta: "#DA68FB" + brightCyan: "#FFD493" + brightWhite: "#9898A2" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 46.6 + black: 107.4 + red: 97.8 + green: 66.5 + yellow: 78.7 + blue: 62.4 + magenta: 47.3 + cyan: 84.1 + white: 46.6 + brightBlack: 24.2 + brightRed: 97.8 + brightGreen: 66.5 + brightYellow: 78.7 + brightBlue: 62.4 + brightMagenta: 47.3 + brightCyan: 84.1 + brightWhite: 46.6 diff --git a/themes/astro-by-mike--astro-light.yaml b/themes/astro-by-mike--astro-light.yaml new file mode 100644 index 00000000..bf40ddf3 --- /dev/null +++ b/themes/astro-by-mike--astro-light.yaml @@ -0,0 +1,53 @@ +name: "Astro by Mike (Astro Light)" +source: + marketplace_id: "wicked-labs.astro-theme" + version: "0.9.7" + installs: 5261 + rating: 5 + ratings: 1 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/astro-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.astro-theme" + formats: null +colors: + bg: "#FDFDFE" + fg: "#4E5377" + black: "#D8DAE4" + red: "#686974" + green: "#1585B3" + yellow: "#10A380" + blue: "#787CD5" + magenta: "#B81AE6" + cyan: "#DE8601" + white: "#4E5377" + brightBlack: "#5F6488" + brightRed: "#686974" + brightGreen: "#1585B3" + brightYellow: "#10A380" + brightBlue: "#787CD5" + brightMagenta: "#B81AE6" + brightCyan: "#DE8601" + brightWhite: "#4E5377" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 84.6 + black: 18 + red: 76 + green: 67.1 + yellow: 57.4 + blue: 63.5 + magenta: 70.5 + cyan: 52.2 + white: 84.6 + brightBlack: 77.5 + brightRed: 76 + brightGreen: 67.1 + brightYellow: 57.4 + brightBlue: 63.5 + brightMagenta: 70.5 + brightCyan: 52.2 + brightWhite: 84.6 diff --git a/themes/astro-kanagawa--astro-kanagawa.yaml b/themes/astro-kanagawa--astro-kanagawa.yaml new file mode 100644 index 00000000..212498dd --- /dev/null +++ b/themes/astro-kanagawa--astro-kanagawa.yaml @@ -0,0 +1,53 @@ +name: "Astro Kanagawa (Astro Kanagawa)" +source: + marketplace_id: "panquequelol.astro-kanagawa" + version: "0.0.4" + installs: 3868 + rating: 5 + ratings: 1 + author: "panquequelol" + repo: "https://github.com/panquequelol/astro-kanagawa" + url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.astro-kanagawa" + formats: null +colors: + bg: "#191919" + fg: "#9898A2" + black: "#131317" + red: "#DCD7BA" + green: "#855C8D" + yellow: "#879A3B" + blue: "#4F76A1" + magenta: "#BE3F48" + cyan: "#578FA4" + white: "#9898A2" + brightBlack: "#686974" + brightRed: "#DCD7BA" + brightGreen: "#855C8D" + brightYellow: "#879A3B" + brightBlue: "#4F76A1" + brightMagenta: "#BE3F48" + brightCyan: "#578FA4" + brightWhite: "#9898A2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 45.8 + black: 0 + red: 80.6 + green: 23.9 + yellow: 42.3 + blue: 27.7 + magenta: 25.4 + cyan: 37.2 + white: 45.8 + brightBlack: 23.4 + brightRed: 80.6 + brightGreen: 23.9 + brightYellow: 42.3 + brightBlue: 27.7 + brightMagenta: 25.4 + brightCyan: 37.2 + brightWhite: 45.8 diff --git a/themes/asuka-theme--asuka-theme-light.yaml b/themes/asuka-theme--asuka-theme-light.yaml new file mode 100644 index 00000000..569b680e --- /dev/null +++ b/themes/asuka-theme--asuka-theme-light.yaml @@ -0,0 +1,53 @@ +name: "Asuka Theme (Asuka-Theme-Light)" +source: + marketplace_id: "MennyfSoryu.asuka-theme" + version: "0.1.1" + installs: 4083 + rating: 5 + ratings: 1 + author: "MennyfSoryu" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MennyfSoryu.asuka-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#65B04B" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 51.7 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/asuka-theme--asuka-theme.yaml b/themes/asuka-theme--asuka-theme.yaml new file mode 100644 index 00000000..47893eea --- /dev/null +++ b/themes/asuka-theme--asuka-theme.yaml @@ -0,0 +1,53 @@ +name: "Asuka Theme (Asuka-Theme)" +source: + marketplace_id: "MennyfSoryu.asuka-theme" + version: "0.1.1" + installs: 4083 + rating: 5 + ratings: 1 + author: "MennyfSoryu" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MennyfSoryu.asuka-theme" + formats: null +colors: + bg: "#2C2C32" + fg: "#65B04B" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 286 + pair: null + contrast: + fg: 45.9 + black: 0 + red: 23.4 + green: 49.7 + yellow: 82.3 + blue: 24.1 + magenta: 26.4 + cyan: 44.2 + white: 86.7 + brightBlack: 18.7 + brightRed: 35.2 + brightGreen: 60.2 + brightYellow: 92.3 + brightBlue: 36.7 + brightMagenta: 42 + brightCyan: 52.1 + brightWhite: 86.7 diff --git a/themes/atom-one-cyan--atom-one-dark-cyan.yaml b/themes/atom-one-cyan--atom-one-dark-cyan.yaml new file mode 100644 index 00000000..48de1fa0 --- /dev/null +++ b/themes/atom-one-cyan--atom-one-dark-cyan.yaml @@ -0,0 +1,53 @@ +name: "Atom One Cyan (Atom One Dark Cyan)" +source: + marketplace_id: "kq996.atom-one-cyan" + version: "1.2.0" + installs: 304 + rating: 5 + ratings: 1 + author: "kq996" + repo: "https://github.com/keqing996/vscode-atom-one-cyan" + url: "https://marketplace.visualstudio.com/items?itemName=kq996.atom-one-cyan" + formats: null +colors: + bg: "#303845" + fg: "#ABB2BF" + black: "#303845" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#56B6C2" + magenta: "#C678DD" + cyan: "#61AFEF" + white: "#DCDFE4" + brightBlack: "#5C6370" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#56B6C2" + brightMagenta: "#C678DD" + brightCyan: "#61AFEF" + brightWhite: "#DCDFE4" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: "Atom One Cyan (Atom One Light Cyan)" + contrast: + fg: 53.2 + black: 0 + red: 35.9 + green: 56.1 + yellow: 64.4 + blue: 48.4 + magenta: 39 + cyan: 48.5 + white: 79.9 + brightBlack: 14.4 + brightRed: 35.9 + brightGreen: 56.1 + brightYellow: 64.4 + brightBlue: 48.4 + brightMagenta: 39 + brightCyan: 48.5 + brightWhite: 79.9 diff --git a/themes/atom-one-cyan--atom-one-light-cyan.yaml b/themes/atom-one-cyan--atom-one-light-cyan.yaml new file mode 100644 index 00000000..eef2fdb0 --- /dev/null +++ b/themes/atom-one-cyan--atom-one-light-cyan.yaml @@ -0,0 +1,53 @@ +name: "Atom One Cyan (Atom One Light Cyan)" +source: + marketplace_id: "kq996.atom-one-cyan" + version: "1.2.0" + installs: 304 + rating: 5 + ratings: 1 + author: "kq996" + repo: "https://github.com/keqing996/vscode-atom-one-cyan" + url: "https://marketplace.visualstudio.com/items?itemName=kq996.atom-one-cyan" + formats: null +colors: + bg: "#F2F3F7" + fg: "#383A42" + black: "#002B36" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#F2F3F7" + brightBlack: "#073642" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#F6F8FB" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Atom One Cyan (Atom One Dark Cyan)" + contrast: + fg: 89.1 + black: 94.5 + red: 63.4 + green: 51.9 + yellow: 51.9 + blue: 56.8 + magenta: 63.2 + cyan: 51.2 + white: 0 + brightBlack: 91.9 + brightRed: 63.9 + brightGreen: 69.7 + brightYellow: 63.8 + brightBlue: 51.6 + brightMagenta: 63.1 + brightCyan: 44.9 + brightWhite: 0 diff --git a/themes/atom-theme.yaml b/themes/atom-theme.yaml new file mode 100644 index 00000000..0a08e49f --- /dev/null +++ b/themes/atom-theme.yaml @@ -0,0 +1,53 @@ +name: "Atom theme" +source: + marketplace_id: "xynny.atom-theme" + version: "0.0.1" + installs: 1062 + rating: 0 + ratings: 0 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.atom-theme" + formats: null +colors: + bg: "#363639" + fg: "#EDD9B7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.2 + black: 0 + red: 21 + green: 47.2 + yellow: 79.9 + blue: 21.7 + magenta: 24 + cyan: 41.8 + white: 84.3 + brightBlack: 16.3 + brightRed: 32.8 + brightGreen: 57.8 + brightYellow: 89.9 + brightBlue: 34.2 + brightMagenta: 39.6 + brightCyan: 49.6 + brightWhite: 84.3 diff --git a/themes/august-themes--august-ariake-dark.yaml b/themes/august-themes--august-ariake-dark.yaml new file mode 100644 index 00000000..35d6f69d --- /dev/null +++ b/themes/august-themes--august-ariake-dark.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Ariake Dark)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#191C22" + fg: "#7B88A1" + black: "#272C36" + red: "#DDA2F6" + green: "#9AEFEA" + yellow: "#EBCB8B" + blue: "#69B1E0" + magenta: "#7E7EDD" + cyan: "#9AEFEA" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#DDA2F6" + brightGreen: "#93C7E9" + brightYellow: "#EBCB8B" + brightBlue: "#93C7E9" + brightMagenta: "#A571F4" + brightCyan: "#9AEFEA" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "magenta" + hue: 264 + pair: null + contrast: + fg: 36.8 + black: 0 + red: 62.5 + green: 86.4 + yellow: 75.8 + blue: 54.5 + magenta: 37.2 + cyan: 86.4 + white: 91.8 + brightBlack: 14.8 + brightRed: 62.5 + brightGreen: 67.3 + brightYellow: 75.8 + brightBlue: 67.3 + brightMagenta: 39.5 + brightCyan: 86.4 + brightWhite: 95.7 diff --git a/themes/august-themes--august-arstotzka.yaml b/themes/august-themes--august-arstotzka.yaml new file mode 100644 index 00000000..b50be54f --- /dev/null +++ b/themes/august-themes--august-arstotzka.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Arstotzka)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#0F0B0B" + fg: "#556955" + black: "#0F0B0B" + red: "#A62828" + green: "#85A4B1" + yellow: "#B19600" + blue: "#85A4B1" + magenta: "#837485" + cyan: "#9CB5AA" + white: "#A2A797" + brightBlack: "#565656" + brightRed: "#A62828" + brightGreen: "#678813" + brightYellow: "#B19600" + brightBlue: "#9CB5AA" + brightMagenta: "#837485" + brightCyan: "#9CB5AA" + brightWhite: "#A2A797" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 21.9 + black: 0 + red: 18.4 + green: 50.2 + yellow: 46.4 + blue: 50.2 + magenta: 31.1 + cyan: 58.9 + white: 53.2 + brightBlack: 16.3 + brightRed: 18.4 + brightGreen: 33.4 + brightYellow: 46.4 + brightBlue: 58.9 + brightMagenta: 31.1 + brightCyan: 58.9 + brightWhite: 53.2 diff --git a/themes/august-themes--august-beardedtheme-oceanic-reversed.yaml b/themes/august-themes--august-beardedtheme-oceanic-reversed.yaml new file mode 100644 index 00000000..a84b06df --- /dev/null +++ b/themes/august-themes--august-beardedtheme-oceanic-reversed.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - BeardedTheme Oceanic Reversed)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#111C22" + fg: "#C3D6E0" + black: "#111C22" + red: "#EE5D75" + green: "#97C892" + yellow: "#F6CC73" + blue: "#5FB2DF" + magenta: "#D194CD" + cyan: "#59C6C8" + white: "#C3D6E0" + brightBlack: "#C3D6E0" + brightRed: "#FF4C6A" + brightGreen: "#83E179" + brightYellow: "#FFCF6A" + brightBlue: "#42BBFC" + brightMagenta: "#E87DE1" + brightCyan: "#38E6E9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 233 + pair: null + contrast: + fg: 78.4 + black: 0 + red: 41.3 + green: 64.7 + yellow: 77.6 + blue: 54.4 + magenta: 53.8 + cyan: 61.7 + white: 78.4 + brightBlack: 78.4 + brightRed: 42 + brightGreen: 74.2 + brightYellow: 80.2 + brightBlue: 58.9 + brightMagenta: 52.1 + brightCyan: 77.4 + brightWhite: 106.5 diff --git a/themes/august-themes--august-beardedtheme-surprising-blueberry.yaml b/themes/august-themes--august-beardedtheme-surprising-blueberry.yaml new file mode 100644 index 00000000..644ee450 --- /dev/null +++ b/themes/august-themes--august-beardedtheme-surprising-blueberry.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - BeardedTheme Surprising Blueberry)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#101A29" + fg: "#BACBE4" + black: "#101A29" + red: "#E35535" + green: "#A9DC76" + yellow: "#C93E71" + blue: "#00B3BD" + magenta: "#C47CBF" + cyan: "#C93E71" + white: "#BACBE4" + brightBlack: "#2C476E" + brightRed: "#FF4319" + brightGreen: "#A9F65C" + brightYellow: "#EE1967" + brightBlue: "#00B3BD" + brightMagenta: "#E15FD8" + brightCyan: "#EE1967" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 258 + pair: null + contrast: + fg: 72.9 + black: 0 + red: 36.3 + green: 74.9 + yellow: 28.3 + blue: 51.1 + magenta: 43.9 + cyan: 28.3 + white: 72.9 + brightBlack: 9.4 + brightRed: 39.8 + brightGreen: 87.3 + brightYellow: 33.4 + brightBlue: 51.1 + brightMagenta: 43.5 + brightCyan: 33.4 + brightWhite: 106.5 diff --git a/themes/august-themes--august-catppuccin.yaml b/themes/august-themes--august-catppuccin.yaml new file mode 100644 index 00000000..d536d0a8 --- /dev/null +++ b/themes/august-themes--august-catppuccin.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Catppuccin)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#1E2030" + fg: "#CAD3F5" + black: "#A5ADCB" + red: "#ED8796" + green: "#A6DA95" + yellow: "#EED49F" + blue: "#8AADF4" + magenta: "#F5BDE6" + cyan: "#91D7E3" + white: "#B8C0E0" + brightBlack: "#5B6078" + brightRed: "#ED8796" + brightGreen: "#A6DA95" + brightYellow: "#EED49F" + brightBlue: "#8AADF4" + brightMagenta: "#F5BDE6" + brightCyan: "#91D7E3" + brightWhite: "#494D64" +meta: + mode: "dark" + accent: "red" + hue: 278 + pair: null + contrast: + fg: 78.1 + black: 56 + red: 51.5 + green: 73.5 + yellow: 79.9 + blue: 55.7 + magenta: 74.5 + cyan: 73.3 + white: 66.9 + brightBlack: 18.7 + brightRed: 51.5 + brightGreen: 73.5 + brightYellow: 79.9 + brightBlue: 55.7 + brightMagenta: 74.5 + brightCyan: 73.3 + brightWhite: 11.2 diff --git a/themes/august-themes--august-city-lights.yaml b/themes/august-themes--august-city-lights.yaml new file mode 100644 index 00000000..a6fe712f --- /dev/null +++ b/themes/august-themes--august-city-lights.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - City Lights)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#1D252C" + fg: "#8094A7" + black: "#41505E" + red: "#B62D65" + green: "#008B94" + yellow: "#EBBF83" + blue: "#539AFC" + magenta: "#B62D65" + cyan: "#70E1E8" + white: "#B7C5D3" + brightBlack: "#41505E" + brightRed: "#B62D65" + brightGreen: "#33CED8" + brightYellow: "#EBBF83" + brightBlue: "#5EC4FF" + brightMagenta: "#B62D65" + brightCyan: "#70E1E8" + brightWhite: "#B7C5D3" +meta: + mode: "dark" + accent: "red" + hue: 245 + pair: null + contrast: + fg: 40.6 + black: 10.8 + red: 20.7 + green: 31.3 + yellow: 69.5 + blue: 44.9 + magenta: 20.7 + cyan: 75.6 + white: 67.7 + brightBlack: 10.8 + brightRed: 20.7 + brightGreen: 63.6 + brightYellow: 69.5 + brightBlue: 62.7 + brightMagenta: 20.7 + brightCyan: 75.6 + brightWhite: 67.7 diff --git a/themes/august-themes--august-drawbridge.yaml b/themes/august-themes--august-drawbridge.yaml new file mode 100644 index 00000000..493fc79a --- /dev/null +++ b/themes/august-themes--august-drawbridge.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Drawbridge)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#131520" + fg: "#B8CDFE" + black: "#252A41" + red: "#4961DA" + green: "#67C9E4" + yellow: "#627AF4" + blue: "#627AF4" + magenta: "#7289FD" + cyan: "#67C9E4" + white: "#B8CDFE" + brightBlack: "#4961DA" + brightRed: "#627AF4" + brightGreen: "#75D5F0" + brightYellow: "#B8CDFE" + brightBlue: "#67C9E4" + brightMagenta: "#7289FD" + brightCyan: "#75D5F0" + brightWhite: "#B8CDFE" +meta: + mode: "dark" + accent: "purple" + hue: 276 + pair: null + contrast: + fg: 75.4 + black: 0 + red: 25.2 + green: 65.6 + yellow: 36.1 + blue: 36.1 + magenta: 42.8 + cyan: 65.6 + white: 75.4 + brightBlack: 25.2 + brightRed: 36.1 + brightGreen: 72.5 + brightYellow: 75.4 + brightBlue: 65.6 + brightMagenta: 42.8 + brightCyan: 72.5 + brightWhite: 75.4 diff --git a/themes/august-themes--august-material-ocean.yaml b/themes/august-themes--august-material-ocean.yaml new file mode 100644 index 00000000..3d36dd51 --- /dev/null +++ b/themes/august-themes--august-material-ocean.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Material Ocean)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#0F111A" + fg: "#A6ACCD" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + pair: null + contrast: + fg: 57.6 + black: 0 + red: 47.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 47.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/august-themes--august-material-palenight.yaml b/themes/august-themes--august-material-palenight.yaml new file mode 100644 index 00000000..24ba0efb --- /dev/null +++ b/themes/august-themes--august-material-palenight.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Material Palenight)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#292D3E" + fg: "#A6ACCD" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + pair: null + contrast: + fg: 53.5 + black: 0 + red: 43 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 43 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/august-themes--august-night-owl.yaml b/themes/august-themes--august-night-owl.yaml new file mode 100644 index 00000000..62c4e841 --- /dev/null +++ b/themes/august-themes--august-night-owl.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Night Owl)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#011627" + fg: "#5F7E97" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ADDB67" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 244 + pair: null + contrast: + fg: 31.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 75 + blue: 56 + magenta: 53.8 + cyan: 59.8 + white: 107 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 107 diff --git a/themes/august-themes--august-nord.yaml b/themes/august-themes--august-nord.yaml new file mode 100644 index 00000000..6ca396d4 --- /dev/null +++ b/themes/august-themes--august-nord.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Nord)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#272C36" + fg: "#7B88A1" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#7D7C9B" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 34.1 + black: 0 + red: 29.8 + green: 58.5 + yellow: 73.2 + blue: 45.4 + magenta: 30 + cyan: 59.5 + white: 89.1 + brightBlack: 12.2 + brightRed: 29.8 + brightGreen: 58.5 + brightYellow: 73.2 + brightBlue: 45.4 + brightMagenta: 43.3 + brightCyan: 57.4 + brightWhite: 93 diff --git a/themes/august-themes--august-radical-2.yaml b/themes/august-themes--august-radical-2.yaml new file mode 100644 index 00000000..3c3c6478 --- /dev/null +++ b/themes/august-themes--august-radical-2.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Radical 2)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#12111F" + fg: "#7C9C9E" + black: "#2E324D" + red: "#F86C8A" + green: "#6BF8EF" + yellow: "#EDF179" + blue: "#B0FDEB" + magenta: "#F899F8" + cyan: "#9D88FA" + white: "#C4F7EB" + brightBlack: "#62466B" + brightRed: "#F33990" + brightGreen: "#6BF8EF" + brightYellow: "#F4F957" + brightBlue: "#6BF8EF" + brightMagenta: "#F73BEE" + brightCyan: "#7D77FF" + brightWhite: "#E4FDF7" +meta: + mode: "dark" + accent: "pink" + hue: 287 + pair: null + contrast: + fg: 45.1 + black: 0 + red: 48 + green: 89.2 + yellow: 93.7 + blue: 96.2 + magenta: 65.2 + cyan: 46.6 + white: 95.2 + brightBlack: 13.7 + brightRed: 38.8 + brightGreen: 89.2 + brightYellow: 98 + brightBlue: 89.2 + brightMagenta: 45 + brightCyan: 38.5 + brightWhite: 102.3 diff --git a/themes/august-themes--august-radical.yaml b/themes/august-themes--august-radical.yaml new file mode 100644 index 00000000..13639fda --- /dev/null +++ b/themes/august-themes--august-radical.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Radical)" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#12111F" + fg: "#7C9C9E" + black: "#2E324D" + red: "#F86C8A" + green: "#A8FFEF" + yellow: "#EDF179" + blue: "#B0FDEB" + magenta: "#F899F8" + cyan: "#9D88FA" + white: "#C4F7EB" + brightBlack: "#62466B" + brightRed: "#F33990" + brightGreen: "#6BF8EF" + brightYellow: "#F4F957" + brightBlue: "#6BF8EF" + brightMagenta: "#F33990" + brightCyan: "#7D77FF" + brightWhite: "#E4FDF7" +meta: + mode: "dark" + accent: "red" + hue: 287 + pair: null + contrast: + fg: 45.1 + black: 0 + red: 48 + green: 96.7 + yellow: 93.7 + blue: 96.2 + magenta: 65.2 + cyan: 46.6 + white: 95.2 + brightBlack: 13.7 + brightRed: 38.8 + brightGreen: 89.2 + brightYellow: 98 + brightBlue: 89.2 + brightMagenta: 38.8 + brightCyan: 38.5 + brightWhite: 102.3 diff --git a/themes/august-themes-august-arstotzka-darker.yaml b/themes/august-themes-august-arstotzka-darker.yaml new file mode 100644 index 00000000..b5b532f9 --- /dev/null +++ b/themes/august-themes-august-arstotzka-darker.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Arstotzka (Darker))" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#050404" + fg: "#556955" + black: "#050404" + red: "#A62828" + green: "#85A4B1" + yellow: "#B19600" + blue: "#85A4B1" + magenta: "#837485" + cyan: "#9CB5AA" + white: "#A2A797" + brightBlack: "#565656" + brightRed: "#A62828" + brightGreen: "#678813" + brightYellow: "#B19600" + brightBlue: "#9CB5AA" + brightMagenta: "#837485" + brightCyan: "#9CB5AA" + brightWhite: "#A2A797" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 22.1 + black: 0 + red: 18.6 + green: 50.4 + yellow: 46.6 + blue: 50.4 + magenta: 31.3 + cyan: 59.1 + white: 53.4 + brightBlack: 16.5 + brightRed: 18.6 + brightGreen: 33.6 + brightYellow: 46.6 + brightBlue: 59.1 + brightMagenta: 31.3 + brightCyan: 59.1 + brightWhite: 53.4 diff --git a/themes/august-themes-august-arstotzka-lighter.yaml b/themes/august-themes-august-arstotzka-lighter.yaml new file mode 100644 index 00000000..6c8b4780 --- /dev/null +++ b/themes/august-themes-august-arstotzka-lighter.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Arstotzka (Lighter))" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#191212" + fg: "#556955" + black: "#191212" + red: "#A62828" + green: "#85A4B1" + yellow: "#B19600" + blue: "#85A4B1" + magenta: "#837485" + cyan: "#9CB5AA" + white: "#A2A797" + brightBlack: "#565656" + brightRed: "#A62828" + brightGreen: "#678813" + brightYellow: "#B19600" + brightBlue: "#9CB5AA" + brightMagenta: "#837485" + brightCyan: "#9CB5AA" + brightWhite: "#A2A797" +meta: + mode: "dark" + accent: "orange" + hue: 18 + pair: null + contrast: + fg: 21.4 + black: 0 + red: 17.9 + green: 49.7 + yellow: 45.9 + blue: 49.7 + magenta: 30.6 + cyan: 58.4 + white: 52.7 + brightBlack: 15.8 + brightRed: 17.9 + brightGreen: 32.9 + brightYellow: 45.9 + brightBlue: 58.4 + brightMagenta: 30.6 + brightCyan: 58.4 + brightWhite: 52.7 diff --git a/themes/august-themes-august-city-lights-darker.yaml b/themes/august-themes-august-city-lights-darker.yaml new file mode 100644 index 00000000..05dfc0a6 --- /dev/null +++ b/themes/august-themes-august-city-lights-darker.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - City Lights (Darker))" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#161C22" + fg: "#8094A7" + black: "#41505E" + red: "#B62D65" + green: "#008B94" + yellow: "#EBBF83" + blue: "#539AFC" + magenta: "#B62D65" + cyan: "#70E1E8" + white: "#B7C5D3" + brightBlack: "#41505E" + brightRed: "#B62D65" + brightGreen: "#33CED8" + brightYellow: "#EBBF83" + brightBlue: "#5EC4FF" + brightMagenta: "#B62D65" + brightCyan: "#70E1E8" + brightWhite: "#B7C5D3" +meta: + mode: "dark" + accent: "red" + hue: 248 + pair: null + contrast: + fg: 41.9 + black: 12.1 + red: 22 + green: 32.6 + yellow: 70.8 + blue: 46.2 + magenta: 22 + cyan: 76.9 + white: 69 + brightBlack: 12.1 + brightRed: 22 + brightGreen: 64.8 + brightYellow: 70.8 + brightBlue: 63.9 + brightMagenta: 22 + brightCyan: 76.9 + brightWhite: 69 diff --git a/themes/august-themes-august-drawbridge-darker.yaml b/themes/august-themes-august-drawbridge-darker.yaml new file mode 100644 index 00000000..62a8f96f --- /dev/null +++ b/themes/august-themes-august-drawbridge-darker.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Drawbridge (Darker))" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#0D0E15" + fg: "#B8CDFE" + black: "#252A41" + red: "#4961DA" + green: "#67C9E4" + yellow: "#627AF4" + blue: "#627AF4" + magenta: "#7289FD" + cyan: "#67C9E4" + white: "#B8CDFE" + brightBlack: "#4961DA" + brightRed: "#627AF4" + brightGreen: "#75D5F0" + brightYellow: "#B8CDFE" + brightBlue: "#67C9E4" + brightMagenta: "#7289FD" + brightCyan: "#75D5F0" + brightWhite: "#B8CDFE" +meta: + mode: "dark" + accent: "purple" + hue: 278 + pair: null + contrast: + fg: 75.9 + black: 0 + red: 25.8 + green: 66.2 + yellow: 36.6 + blue: 36.6 + magenta: 43.3 + cyan: 66.2 + white: 75.9 + brightBlack: 25.8 + brightRed: 36.6 + brightGreen: 73.1 + brightYellow: 75.9 + brightBlue: 66.2 + brightMagenta: 43.3 + brightCyan: 73.1 + brightWhite: 75.9 diff --git a/themes/august-themes-august-gruvbox-darker.yaml b/themes/august-themes-august-gruvbox-darker.yaml new file mode 100644 index 00000000..f9143641 --- /dev/null +++ b/themes/august-themes-august-gruvbox-darker.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Gruvbox (Darker))" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#151718" + fg: "#EBDBB2" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 84.4 + black: 0 + red: 25.3 + green: 43 + yellow: 52.5 + blue: 31.6 + magenta: 31.7 + cyan: 42 + white: 47.3 + brightBlack: 36.4 + brightRed: 40.2 + brightGreen: 61.2 + brightYellow: 71.8 + brightBlue: 48.6 + brightMagenta: 48 + brightCyan: 60.2 + brightWhite: 84.4 diff --git a/themes/august-themes-august-kanagawa-darker.yaml b/themes/august-themes-august-kanagawa-darker.yaml new file mode 100644 index 00000000..01ec7e35 --- /dev/null +++ b/themes/august-themes-august-kanagawa-darker.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Kanagawa (Darker))" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#16161E" + fg: "#DCD7BA" + black: "#16161E" + red: "#E82424" + green: "#76946A" + yellow: "#FF9E3B" + blue: "#658594" + magenta: "#957FB8" + cyan: "#9CABCA" + white: "#DCD7BA" + brightBlack: "#2A2A37" + brightRed: "#FF5D62" + brightGreen: "#98BB6C" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#D27E99" + brightCyan: "#A3D4D5" + brightWhite: "#DCD7BA" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 80.8 + black: 0 + red: 31.8 + green: 39.5 + yellow: 61.6 + blue: 33.9 + magenta: 38.2 + cyan: 55.5 + white: 80.8 + brightBlack: 0 + brightRed: 45.1 + brightGreen: 58.5 + brightYellow: 72.2 + brightBlue: 56.6 + brightMagenta: 45.4 + brightCyan: 74.1 + brightWhite: 80.8 diff --git a/themes/august-themes-august-night-owl-darker.yaml b/themes/august-themes-august-night-owl-darker.yaml new file mode 100644 index 00000000..5d906163 --- /dev/null +++ b/themes/august-themes-august-night-owl-darker.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Night Owl (Darker))" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#010D16" + fg: "#5F7E97" + black: "#010D16" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ADDB67" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 236 + pair: null + contrast: + fg: 31.9 + black: 0 + red: 40.1 + green: 68 + yellow: 75.7 + blue: 56.7 + magenta: 54.5 + cyan: 60.4 + white: 107.6 + brightBlack: 16.3 + brightRed: 40.1 + brightGreen: 68 + brightYellow: 94.5 + brightBlue: 56.7 + brightMagenta: 54.5 + brightCyan: 74.7 + brightWhite: 107.6 diff --git a/themes/august-themes-august-nord-darker.yaml b/themes/august-themes-august-nord-darker.yaml new file mode 100644 index 00000000..f9c96252 --- /dev/null +++ b/themes/august-themes-august-nord-darker.yaml @@ -0,0 +1,53 @@ +name: "August Themes (August - Nord (Darker))" +source: + marketplace_id: "inci-august.august-themes" + version: "2.8.0" + installs: 146546 + rating: 5 + ratings: 8 + author: "inci-august" + repo: "https://github.com/inci-august/august-themes" + url: "https://marketplace.visualstudio.com/items?itemName=inci-august.august-themes" + formats: null +colors: + bg: "#191C22" + fg: "#7B88A1" + black: "#272C36" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#7D7C9B" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 36.8 + black: 0 + red: 32.4 + green: 61.1 + yellow: 75.8 + blue: 48.1 + magenta: 32.6 + cyan: 62.1 + white: 91.8 + brightBlack: 14.8 + brightRed: 32.4 + brightGreen: 61.1 + brightYellow: 75.8 + brightBlue: 48.1 + brightMagenta: 45.9 + brightCyan: 60 + brightWhite: 95.7 diff --git a/themes/aura-spirit-dracula-theme--aura-dracula-spirit.yaml b/themes/aura-spirit-dracula-theme--aura-dracula-spirit.yaml new file mode 100644 index 00000000..bf159b56 --- /dev/null +++ b/themes/aura-spirit-dracula-theme--aura-dracula-spirit.yaml @@ -0,0 +1,53 @@ +name: "Aura Spirit Dracula Theme (Aura Dracula Spirit)" +source: + marketplace_id: "JoseMurilloc.aura-spirit-dracula" + version: "0.1.10" + installs: 71018 + rating: 5 + ratings: 7 + author: "JoseMurilloc" + repo: "https://github.com/josemurilloc/aura-spirit-dracula" + url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" + formats: null +colors: + bg: "#140E1A" + fg: "#EDECEE" + black: "#140E1A" + red: "#FF6767" + green: "#8EFFD9" + yellow: "#FFCA85" + blue: "#F477FF" + magenta: "#61FFCA" + cyan: "#A277FF" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#FFCA85" + brightGreen: "#A277FF" + brightYellow: "#FFCA85" + brightBlue: "#A277FF" + brightMagenta: "#61FFCA" + brightCyan: "#61FFCA" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "pink" + hue: 307 + pair: null + contrast: + fg: 95.2 + black: 0 + red: 47.7 + green: 93.9 + yellow: 79.6 + blue: 55.8 + magenta: 90.9 + cyan: 42.7 + white: 75.4 + brightBlack: 0 + brightRed: 79.6 + brightGreen: 42.7 + brightYellow: 79.6 + brightBlue: 42.7 + brightMagenta: 90.9 + brightCyan: 90.9 + brightWhite: 95.2 diff --git a/themes/aura-spirit-dracula-theme-aura-dracula-spirit-soft.yaml b/themes/aura-spirit-dracula-theme-aura-dracula-spirit-soft.yaml new file mode 100644 index 00000000..ffc68aed --- /dev/null +++ b/themes/aura-spirit-dracula-theme-aura-dracula-spirit-soft.yaml @@ -0,0 +1,53 @@ +name: "Aura Spirit Dracula Theme (Aura Dracula Spirit (Soft))" +source: + marketplace_id: "JoseMurilloc.aura-spirit-dracula" + version: "0.1.10" + installs: 71018 + rating: 5 + ratings: 7 + author: "JoseMurilloc" + repo: "https://github.com/josemurilloc/aura-spirit-dracula" + url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" + formats: null +colors: + bg: "#191521" + fg: "#EDECEE" + black: "#140E1A" + red: "#FF6767" + green: "#8EFFD9" + yellow: "#FFCA85" + blue: "#F477FF" + magenta: "#61FFCA" + cyan: "#A277FF" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#FFCA85" + brightGreen: "#A277FF" + brightYellow: "#FFCA85" + brightBlue: "#A277FF" + brightMagenta: "#61FFCA" + brightCyan: "#61FFCA" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "pink" + hue: 300 + pair: null + contrast: + fg: 94.7 + black: 0 + red: 47.1 + green: 93.4 + yellow: 79 + blue: 55.3 + magenta: 90.4 + cyan: 42.1 + white: 74.9 + brightBlack: 0 + brightRed: 79 + brightGreen: 42.1 + brightYellow: 79 + brightBlue: 42.1 + brightMagenta: 90.4 + brightCyan: 90.4 + brightWhite: 94.7 diff --git a/themes/aura-spirit-dracula-theme-aura-dracula-spirit-synthwave.yaml b/themes/aura-spirit-dracula-theme-aura-dracula-spirit-synthwave.yaml new file mode 100644 index 00000000..3485e369 --- /dev/null +++ b/themes/aura-spirit-dracula-theme-aura-dracula-spirit-synthwave.yaml @@ -0,0 +1,53 @@ +name: "Aura Spirit Dracula Theme (Aura Dracula Spirit (SynthWave))" +source: + marketplace_id: "JoseMurilloc.aura-spirit-dracula" + version: "0.1.10" + installs: 71018 + rating: 5 + ratings: 7 + author: "JoseMurilloc" + repo: "https://github.com/josemurilloc/aura-spirit-dracula" + url: "https://marketplace.visualstudio.com/items?itemName=JoseMurilloc.aura-spirit-dracula" + formats: null +colors: + bg: "#262335" + fg: "#EDECEE" + black: "#140E1A" + red: "#FF6767" + green: "#8EFFD9" + yellow: "#FFCA85" + blue: "#F477FF" + magenta: "#61FFCA" + cyan: "#A277FF" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#FFCA85" + brightGreen: "#A277FF" + brightYellow: "#FFCA85" + brightBlue: "#A277FF" + brightMagenta: "#61FFCA" + brightCyan: "#61FFCA" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "pink" + hue: 292 + pair: null + contrast: + fg: 92.7 + black: 0 + red: 45.2 + green: 91.4 + yellow: 77.1 + blue: 53.3 + magenta: 88.4 + cyan: 40.2 + white: 72.9 + brightBlack: 0 + brightRed: 77.1 + brightGreen: 40.2 + brightYellow: 77.1 + brightBlue: 40.2 + brightMagenta: 88.4 + brightCyan: 88.4 + brightWhite: 92.7 diff --git a/themes/aura-theme--aura-dark.yaml b/themes/aura-theme--aura-dark.yaml new file mode 100644 index 00000000..8c89dbb1 --- /dev/null +++ b/themes/aura-theme--aura-dark.yaml @@ -0,0 +1,62 @@ +name: "Aura Theme (Aura Dark)" +source: + marketplace_id: "DaltonMenezes.aura-theme" + version: "2.1.2" + installs: 560307 + rating: 4.95 + ratings: 43 + author: "Dalton Menezes" + repo: "https://github.com/daltonmenezes/aura-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DaltonMenezes.aura-theme" + formats: + iterm2: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/iterm/aura-theme-soft.itermcolors" + alacritty: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/alacritty/aura-theme.toml" + kitty: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/kitty/aura-theme.conf" + windows-terminal: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/windows-terminal/aura-theme-soft-dark-soft-text.json" + warp: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/warp/aura-theme.yaml" + hyper: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/hyper/index.js" + xcode: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/xcode/Aura Dark (Soft Text).xccolortheme" + nvim: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/neovim/lua/aura-theme/common/color.lua" + sublime: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/sublime-text/aura-theme-soft.tmTheme" +colors: + bg: "#15141B" + fg: "#EDECEE" + black: "#15141B" + red: "#FF6767" + green: "#61FFCA" + yellow: "#FFCA85" + blue: "#A277FF" + magenta: "#61FFCA" + cyan: "#A277FF" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#FFCA85" + brightGreen: "#A277FF" + brightYellow: "#FFCA85" + brightBlue: "#A277FF" + brightMagenta: "#61FFCA" + brightCyan: "#61FFCA" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "magenta" + hue: 292 + pair: null + contrast: + fg: 94.9 + black: 0 + red: 47.3 + green: 90.6 + yellow: 79.2 + blue: 42.4 + magenta: 90.6 + cyan: 42.4 + white: 75.1 + brightBlack: 0 + brightRed: 79.2 + brightGreen: 42.4 + brightYellow: 79.2 + brightBlue: 42.4 + brightMagenta: 90.6 + brightCyan: 90.6 + brightWhite: 94.9 diff --git a/themes/aura-theme--aura-soft-dark.yaml b/themes/aura-theme--aura-soft-dark.yaml new file mode 100644 index 00000000..189e3c58 --- /dev/null +++ b/themes/aura-theme--aura-soft-dark.yaml @@ -0,0 +1,62 @@ +name: "Aura Theme (Aura Soft Dark)" +source: + marketplace_id: "DaltonMenezes.aura-theme" + version: "2.1.2" + installs: 560307 + rating: 4.95 + ratings: 43 + author: "Dalton Menezes" + repo: "https://github.com/daltonmenezes/aura-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DaltonMenezes.aura-theme" + formats: + iterm2: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/iterm/aura-theme-soft.itermcolors" + alacritty: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/alacritty/aura-theme.toml" + kitty: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/kitty/aura-theme.conf" + windows-terminal: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/windows-terminal/aura-theme-soft-dark-soft-text.json" + warp: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/warp/aura-theme.yaml" + hyper: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/hyper/index.js" + xcode: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/xcode/Aura Dark (Soft Text).xccolortheme" + nvim: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/neovim/lua/aura-theme/common/color.lua" + sublime: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/sublime-text/aura-theme-soft.tmTheme" +colors: + bg: "#21202E" + fg: "#EDECEE" + black: "#21202E" + red: "#FF6767" + green: "#61FFCA" + yellow: "#FFCA85" + blue: "#A277FF" + magenta: "#61FFCA" + cyan: "#A277FF" + white: "#CDCCCE" + brightBlack: "#444444" + brightRed: "#FFCA85" + brightGreen: "#A277FF" + brightYellow: "#FFCA85" + brightBlue: "#A277FF" + brightMagenta: "#61FFCA" + brightCyan: "#61FFCA" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "magenta" + hue: 288 + pair: null + contrast: + fg: 93.4 + black: 0 + red: 45.8 + green: 89.1 + yellow: 77.7 + blue: 40.8 + magenta: 89.1 + cyan: 40.8 + white: 73.5 + brightBlack: 7.5 + brightRed: 77.7 + brightGreen: 40.8 + brightYellow: 77.7 + brightBlue: 40.8 + brightMagenta: 89.1 + brightCyan: 89.1 + brightWhite: 93.4 diff --git a/themes/aura-theme-aura-dark-soft-text.yaml b/themes/aura-theme-aura-dark-soft-text.yaml new file mode 100644 index 00000000..d9819365 --- /dev/null +++ b/themes/aura-theme-aura-dark-soft-text.yaml @@ -0,0 +1,62 @@ +name: "Aura Theme (Aura Dark (Soft Text))" +source: + marketplace_id: "DaltonMenezes.aura-theme" + version: "2.1.2" + installs: 560307 + rating: 4.95 + ratings: 43 + author: "Dalton Menezes" + repo: "https://github.com/daltonmenezes/aura-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DaltonMenezes.aura-theme" + formats: + iterm2: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/iterm/aura-theme-soft.itermcolors" + alacritty: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/alacritty/aura-theme.toml" + kitty: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/kitty/aura-theme.conf" + windows-terminal: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/windows-terminal/aura-theme-soft-dark-soft-text.json" + warp: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/warp/aura-theme.yaml" + hyper: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/hyper/index.js" + xcode: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/xcode/Aura Dark (Soft Text).xccolortheme" + nvim: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/neovim/lua/aura-theme/common/color.lua" + sublime: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/sublime-text/aura-theme-soft.tmTheme" +colors: + bg: "#15141B" + fg: "#BDBDBD" + black: "#15141B" + red: "#C55858" + green: "#54C59F" + yellow: "#C7A06F" + blue: "#8464C6" + magenta: "#54C59F" + cyan: "#8464C6" + white: "#B4B4B4" + brightBlack: "#2D2D2D" + brightRed: "#C7A06F" + brightGreen: "#8464C6" + brightYellow: "#C7A06F" + brightBlue: "#8464C6" + brightMagenta: "#54C59F" + brightCyan: "#54C59F" + brightWhite: "#BDBDBD" +meta: + mode: "dark" + accent: "magenta" + hue: 292 + pair: null + contrast: + fg: 66.1 + black: 0 + red: 31.9 + green: 59.9 + yellow: 53.7 + blue: 29.5 + magenta: 59.9 + cyan: 29.5 + white: 61 + brightBlack: 0 + brightRed: 53.7 + brightGreen: 29.5 + brightYellow: 53.7 + brightBlue: 29.5 + brightMagenta: 59.9 + brightCyan: 59.9 + brightWhite: 66.1 diff --git a/themes/aura-theme-aura-soft-dark-soft-text.yaml b/themes/aura-theme-aura-soft-dark-soft-text.yaml new file mode 100644 index 00000000..8e3c9965 --- /dev/null +++ b/themes/aura-theme-aura-soft-dark-soft-text.yaml @@ -0,0 +1,62 @@ +name: "Aura Theme (Aura Soft Dark (Soft Text))" +source: + marketplace_id: "DaltonMenezes.aura-theme" + version: "2.1.2" + installs: 560307 + rating: 4.95 + ratings: 43 + author: "Dalton Menezes" + repo: "https://github.com/daltonmenezes/aura-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DaltonMenezes.aura-theme" + formats: + iterm2: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/iterm/aura-theme-soft.itermcolors" + alacritty: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/alacritty/aura-theme.toml" + kitty: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/kitty/aura-theme.conf" + windows-terminal: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/windows-terminal/aura-theme-soft-dark-soft-text.json" + warp: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/warp/aura-theme.yaml" + hyper: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/hyper/index.js" + xcode: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/xcode/Aura Dark (Soft Text).xccolortheme" + nvim: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/neovim/lua/aura-theme/common/color.lua" + sublime: "https://raw.githubusercontent.com/daltonmenezes/aura-theme/main/packages/sublime-text/aura-theme-soft.tmTheme" +colors: + bg: "#21202E" + fg: "#BDBDBD" + black: "#21202E" + red: "#C55858" + green: "#54C59F" + yellow: "#C7A06F" + blue: "#8464C6" + magenta: "#54C59F" + cyan: "#8464C6" + white: "#B4B4B4" + brightBlack: "#444444" + brightRed: "#C7A06F" + brightGreen: "#8464C6" + brightYellow: "#C7A06F" + brightBlue: "#8464C6" + brightMagenta: "#54C59F" + brightCyan: "#54C59F" + brightWhite: "#BDBDBD" +meta: + mode: "dark" + accent: "magenta" + hue: 288 + pair: null + contrast: + fg: 64.5 + black: 0 + red: 30.3 + green: 58.4 + yellow: 52.1 + blue: 28 + magenta: 58.4 + cyan: 28 + white: 59.4 + brightBlack: 7.5 + brightRed: 52.1 + brightGreen: 28 + brightYellow: 52.1 + brightBlue: 28 + brightMagenta: 58.4 + brightCyan: 58.4 + brightWhite: 64.5 diff --git a/themes/aurora-evening.yaml b/themes/aurora-evening.yaml new file mode 100644 index 00000000..862e2ada --- /dev/null +++ b/themes/aurora-evening.yaml @@ -0,0 +1,53 @@ +name: "Aurora Evening" +source: + marketplace_id: "MarvinSernee.aurora-evening" + version: "1.0.1" + installs: 171 + rating: 0 + ratings: 0 + author: "Marvin Sernee" + repo: "https://github.com/MarvinMichel/aurora-evening" + url: "https://marketplace.visualstudio.com/items?itemName=MarvinSernee.aurora-evening" + formats: null +colors: + bg: "#111B18" + fg: "#CECECE" + black: "#000000" + red: "#CD3131" + green: "#00E48F" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#78ECC1" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 174 + pair: null + contrast: + fg: 75.6 + black: 0 + red: 26.5 + green: 72.6 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 81.2 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.1 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/aurora-theme-official--aurora-dark-primary.yaml b/themes/aurora-theme-official--aurora-dark-primary.yaml new file mode 100644 index 00000000..a1cb8221 --- /dev/null +++ b/themes/aurora-theme-official--aurora-dark-primary.yaml @@ -0,0 +1,53 @@ +name: "Aurora Theme - Official (Aurora Dark Primary)" +source: + marketplace_id: "tscmdabdurrakib.md-abdur-rakib-theme" + version: "2.0.0" + installs: 1740 + rating: 5 + ratings: 1 + author: "Md Abdur Rakib" + repo: "https://github.com/tscmdabdurrakib/md-abdur-rakib-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tscmdabdurrakib.md-abdur-rakib-theme" + formats: null +colors: + bg: "#0E0D1A" + fg: "#DDDFE9" + black: "#0E0D1A" + red: "#FA1313" + green: "#00C82B" + yellow: "#FFE553" + blue: "#8C97EA" + magenta: "#FF00F2" + cyan: "#8C97EA" + white: "#FFFFFF" + brightBlack: "#5966CC" + brightRed: "#FA1313" + brightGreen: "#17F648" + brightYellow: "#FFFFFF" + brightBlue: "#8C97EA" + brightMagenta: "#FF00F2" + brightCyan: "#23DEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 287 + pair: null + contrast: + fg: 87.1 + black: 0 + red: 36.1 + green: 58.1 + yellow: 90.5 + blue: 48.9 + magenta: 44.9 + cyan: 48.9 + white: 107.5 + brightBlack: 27 + brightRed: 36.1 + brightGreen: 81.6 + brightYellow: 107.5 + brightBlue: 48.9 + brightMagenta: 44.9 + brightCyan: 75.4 + brightWhite: 107.5 diff --git a/themes/aurora-theme-official.yaml b/themes/aurora-theme-official.yaml new file mode 100644 index 00000000..950e9f5a --- /dev/null +++ b/themes/aurora-theme-official.yaml @@ -0,0 +1,53 @@ +name: "Aurora Theme - Official" +source: + marketplace_id: "tscmdabdurrakib.md-abdur-rakib-theme" + version: "2.0.0" + installs: 1740 + rating: 5 + ratings: 1 + author: "Md Abdur Rakib" + repo: "https://github.com/tscmdabdurrakib/md-abdur-rakib-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tscmdabdurrakib.md-abdur-rakib-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#9B9B9B" + black: "#012339" + red: "#A56416" + green: "#428226" + yellow: "#A56416" + blue: "#3778B7" + magenta: "#B052A1" + cyan: "#3778B7" + white: "#F7F7F7" + brightBlack: "#9B9B9B" + brightRed: "#A56416" + brightGreen: "#428226" + brightYellow: "#A56416" + brightBlue: "#3778B7" + brightMagenta: "#B052A1" + brightCyan: "#3778B7" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 53.6 + black: 102.8 + red: 72.5 + green: 72.5 + yellow: 72.5 + blue: 71.9 + magenta: 71.4 + cyan: 71.9 + white: 0 + brightBlack: 53.6 + brightRed: 72.5 + brightGreen: 72.5 + brightYellow: 72.5 + brightBlue: 71.9 + brightMagenta: 71.4 + brightCyan: 71.9 + brightWhite: 0 diff --git a/themes/autu-theme.yaml b/themes/autu-theme.yaml new file mode 100644 index 00000000..e41e8ecd --- /dev/null +++ b/themes/autu-theme.yaml @@ -0,0 +1,53 @@ +name: "Autu Theme" +source: + marketplace_id: "zddq.autu-theme" + version: "0.0.1" + installs: 27 + rating: 0 + ratings: 0 + author: "zddq" + repo: "https://github.com/zddq/autu-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zddq.autu-theme" + formats: null +colors: + bg: "#000000" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 60.4 + black: 9.9 + red: 37.7 + green: 61.4 + yellow: 49.6 + blue: 50.7 + magenta: 40.1 + cyan: 53.5 + white: 84 + brightBlack: 16.5 + brightRed: 47.1 + brightGreen: 77.8 + brightYellow: 62.2 + brightBlue: 64.7 + brightMagenta: 51.3 + brightCyan: 68.8 + brightWhite: 91.7 diff --git a/themes/autumn-theme--light.yaml b/themes/autumn-theme--light.yaml new file mode 100644 index 00000000..6c647aa4 --- /dev/null +++ b/themes/autumn-theme--light.yaml @@ -0,0 +1,53 @@ +name: "Autumn Theme (Light)" +source: + marketplace_id: "den-swe.autumn-theme-light" + version: "1.6.0" + installs: 123 + rating: 0 + ratings: 0 + author: "Denniz Ege" + repo: "https://github.com/den-swe/autumn-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=den-swe.autumn-theme-light" + formats: null +colors: + bg: "#FFFEFD" + fg: "#624234" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#454545" + brightBlack: "#474747" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#C7CD00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#686868" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 89.9 + black: 105.5 + red: 73.5 + green: 48.7 + yellow: 57.4 + blue: 85.5 + magenta: 74.1 + cyan: 60.1 + white: 91.7 + brightBlack: 91 + brightRed: 73.5 + brightGreen: 40.4 + brightYellow: 30.5 + brightBlue: 85.5 + brightMagenta: 74.1 + brightCyan: 60.1 + brightWhite: 77.4 diff --git a/themes/ava583-dark-rose-quartz-theme.yaml b/themes/ava583-dark-rose-quartz-theme.yaml new file mode 100644 index 00000000..1d9a954a --- /dev/null +++ b/themes/ava583-dark-rose-quartz-theme.yaml @@ -0,0 +1,53 @@ +name: "Ava583 Dark Rose Quartz Theme" +source: + marketplace_id: "AceSardonyx.darkrose-quartz-theme" + version: "1.0.8" + installs: 1171 + rating: 5 + ratings: 1 + author: "Kai" + repo: "https://github.com/Teakuutarts/VSC-Quartz-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=AceSardonyx.darkrose-quartz-theme" + formats: null +colors: + bg: "#110010" + fg: "#00C3FF" + black: "#502832" + red: "#A45A74" + green: "#B39987" + yellow: "#A47F7C" + blue: "#AD5F74" + magenta: "#D78594" + cyan: "#B39487" + white: "#FF55BD" + brightBlack: "#703A47" + brightRed: "#A45A74" + brightGreen: "#B39987" + brightYellow: "#A47F7C" + brightBlue: "#AD5F74" + brightMagenta: "#D78594" + brightCyan: "#B39487" + brightWhite: "#D2738A" +meta: + mode: "dark" + accent: "red" + hue: 330 + pair: null + contrast: + fg: 63 + black: 0 + red: 27.9 + green: 49.6 + yellow: 38.4 + blue: 30.6 + magenta: 49 + cyan: 47.8 + white: 47.7 + brightBlack: 12.3 + brightRed: 27.9 + brightGreen: 49.6 + brightYellow: 38.4 + brightBlue: 30.6 + brightMagenta: 49 + brightCyan: 47.8 + brightWhite: 42.7 diff --git a/themes/avesta--mono-atom.yaml b/themes/avesta--mono-atom.yaml new file mode 100644 index 00000000..43ea0f3b --- /dev/null +++ b/themes/avesta--mono-atom.yaml @@ -0,0 +1,53 @@ +name: "Avesta (Mono Atom)" +source: + marketplace_id: "Avetis.avesta" + version: "0.1.4" + installs: 663 + rating: 0 + ratings: 0 + author: "Avetis" + repo: "https://github.com/AvetisDN/avesta-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.avesta" + formats: null +colors: + bg: "#222228" + fg: "#D4DAE1" + black: "#000000" + red: "#E62C2C" + green: "#0DBC79" + yellow: "#E6BD1E" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C6CCD1" + brightBlack: "#666666" + brightRed: "#F56464" + brightGreen: "#23D18B" + brightYellow: "#EADC6A" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 286 + pair: null + contrast: + fg: 81.2 + black: 0 + red: 30.4 + green: 51.5 + yellow: 66.9 + blue: 25.9 + magenta: 28.3 + cyan: 46.1 + white: 72.6 + brightBlack: 20.5 + brightRed: 42.8 + brightGreen: 62 + brightYellow: 81.4 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 105.4 diff --git a/themes/awork.yaml b/themes/awork.yaml new file mode 100644 index 00000000..06e55635 --- /dev/null +++ b/themes/awork.yaml @@ -0,0 +1,53 @@ +name: "awork" +source: + marketplace_id: "sils.awork-dark" + version: "0.0.9" + installs: 22 + rating: 0 + ratings: 0 + author: "Sil's" + repo: "https://github.com/silvandiepen/awork-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sils.awork-dark" + formats: null +colors: + bg: "#1A1C28" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + pair: null + contrast: + fg: 78.8 + black: 0 + red: 26 + green: 52.3 + yellow: 85 + blue: 26.8 + magenta: 29.1 + cyan: 46.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 37.9 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.4 diff --git a/themes/axion-themes--plasma-pink.yaml b/themes/axion-themes--plasma-pink.yaml new file mode 100644 index 00000000..dca99025 --- /dev/null +++ b/themes/axion-themes--plasma-pink.yaml @@ -0,0 +1,53 @@ +name: "Axion Themes (Plasma Pink)" +source: + marketplace_id: "CodewithBismillah.axion-themes" + version: "1.1.1" + installs: 111 + rating: 5 + ratings: 1 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Axion-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.axion-themes" + formats: null +colors: + bg: "#1A092D" + fg: "#FFD6F5" + black: "#2D1A3A" + red: "#FF69B4" + green: "#B4FF69" + yellow: "#FFE066" + blue: "#B469FF" + magenta: "#FF85C2" + cyan: "#69FFE0" + white: "#FFD6F5" + brightBlack: "#A86EBF" + brightRed: "#FF85C2" + brightGreen: "#D6FFB4" + brightYellow: "#FFF0B4" + brightBlue: "#D6B4FF" + brightMagenta: "#FFB3E6" + brightCyan: "#B4FFF0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 302 + pair: null + contrast: + fg: 88.3 + black: 0 + red: 50.4 + green: 93.6 + yellow: 88.1 + blue: 41.3 + magenta: 57.7 + cyan: 91.9 + white: 88.3 + brightBlack: 36.4 + brightRed: 57.7 + brightGreen: 98.9 + brightYellow: 97.1 + brightBlue: 69.3 + brightMagenta: 74 + brightCyan: 97.7 + brightWhite: 107.1 diff --git a/themes/axion-themes--quantum-green.yaml b/themes/axion-themes--quantum-green.yaml new file mode 100644 index 00000000..53ba94e6 --- /dev/null +++ b/themes/axion-themes--quantum-green.yaml @@ -0,0 +1,53 @@ +name: "Axion Themes (Quantum Green)" +source: + marketplace_id: "CodewithBismillah.axion-themes" + version: "1.1.1" + installs: 111 + rating: 5 + ratings: 1 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Axion-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.axion-themes" + formats: null +colors: + bg: "#0A1F14" + fg: "#B6FCD5" + black: "#000000" + red: "#FF4080" + green: "#39FF14" + yellow: "#FFFF40" + blue: "#4080FF" + magenta: "#FF40FF" + cyan: "#40FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF4080" + brightGreen: "#39FF14" + brightYellow: "#FFFF40" + brightBlue: "#4080FF" + brightMagenta: "#FF40FF" + brightCyan: "#40FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 159 + pair: null + contrast: + fg: 94.4 + black: 0 + red: 40.9 + green: 85.4 + yellow: 101.4 + blue: 36.5 + magenta: 47.6 + cyan: 91.2 + white: 106.4 + brightBlack: 21.5 + brightRed: 40.9 + brightGreen: 85.4 + brightYellow: 101.4 + brightBlue: 36.5 + brightMagenta: 47.6 + brightCyan: 91.2 + brightWhite: 106.4 diff --git a/themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-dark-bordered.yaml b/themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-dark-bordered.yaml new file mode 100644 index 00000000..a0e7f900 --- /dev/null +++ b/themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-dark-bordered.yaml @@ -0,0 +1,53 @@ +name: "Ayu One Dark Pro (deprecated) (Ayu One Dark Pro | Dark Bordered)" +source: + marketplace_id: "smeagolem.ayu-one-dark-pro" + version: "1.7.2" + installs: 73643 + rating: 0 + ratings: 0 + author: "smeagolem" + repo: "https://github.com/smeagolem/ayu-one-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=smeagolem.ayu-one-dark-pro" + formats: null +colors: + bg: "#0D1016" + fg: "#B3B1AD" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 59.7 + black: 0 + red: 44.6 + green: 54.8 + yellow: 67.2 + blue: 61.2 + magenta: 92.6 + cyan: 78.4 + white: 72.3 + brightBlack: 23.5 + brightRed: 47.2 + brightGreen: 76.5 + brightYellow: 70.1 + brightBlue: 63.9 + brightMagenta: 95.8 + brightCyan: 81.4 + brightWhite: 107.4 diff --git a/themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-dark.yaml b/themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-dark.yaml new file mode 100644 index 00000000..4f774a33 --- /dev/null +++ b/themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-dark.yaml @@ -0,0 +1,53 @@ +name: "Ayu One Dark Pro (deprecated) (Ayu One Dark Pro | Dark)" +source: + marketplace_id: "smeagolem.ayu-one-dark-pro" + version: "1.7.2" + installs: 73643 + rating: 0 + ratings: 0 + author: "smeagolem" + repo: "https://github.com/smeagolem/ayu-one-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=smeagolem.ayu-one-dark-pro" + formats: null +colors: + bg: "#0A0E14" + fg: "#B3B1AD" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 258 + pair: null + contrast: + fg: 59.9 + black: 0 + red: 44.7 + green: 54.9 + yellow: 67.3 + blue: 61.3 + magenta: 92.7 + cyan: 78.6 + white: 72.4 + brightBlack: 23.6 + brightRed: 47.3 + brightGreen: 76.6 + brightYellow: 70.3 + brightBlue: 64 + brightMagenta: 95.9 + brightCyan: 81.6 + brightWhite: 107.6 diff --git a/themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-mirage-bordered.yaml b/themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-mirage-bordered.yaml new file mode 100644 index 00000000..3c93bc5e --- /dev/null +++ b/themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-mirage-bordered.yaml @@ -0,0 +1,53 @@ +name: "Ayu One Dark Pro (deprecated) (Ayu One Dark Pro | Mirage Bordered)" +source: + marketplace_id: "smeagolem.ayu-one-dark-pro" + version: "1.7.2" + installs: 73643 + rating: 0 + ratings: 0 + author: "smeagolem" + repo: "https://github.com/smeagolem/ayu-one-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=smeagolem.ayu-one-dark-pro" + formats: null +colors: + bg: "#232834" + fg: "#CBCCC6" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#6DCBFA" + magenta: "#CFBAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#73D0FF" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + pair: null + contrast: + fg: 71.8 + black: 0 + red: 47.9 + green: 65 + yellow: 78 + blue: 65.5 + magenta: 67.6 + cyan: 75.4 + white: 69.2 + brightBlack: 20.4 + brightRed: 50.4 + brightGreen: 79.5 + brightYellow: 81.1 + brightBlue: 68.4 + brightMagenta: 70.5 + brightCyan: 78.4 + brightWhite: 104.4 diff --git a/themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-mirage.yaml b/themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-mirage.yaml new file mode 100644 index 00000000..3979e012 --- /dev/null +++ b/themes/ayu-one-dark-pro-deprecated--ayu-one-dark-pro-mirage.yaml @@ -0,0 +1,53 @@ +name: "Ayu One Dark Pro (deprecated) (Ayu One Dark Pro | Mirage)" +source: + marketplace_id: "smeagolem.ayu-one-dark-pro" + version: "1.7.2" + installs: 73643 + rating: 0 + ratings: 0 + author: "smeagolem" + repo: "https://github.com/smeagolem/ayu-one-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=smeagolem.ayu-one-dark-pro" + formats: null +colors: + bg: "#1F2430" + fg: "#CBCCC6" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#6DCBFA" + magenta: "#CFBAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#73D0FF" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + pair: null + contrast: + fg: 72.5 + black: 0 + red: 48.6 + green: 65.7 + yellow: 78.7 + blue: 66.2 + magenta: 68.3 + cyan: 76.1 + white: 69.9 + brightBlack: 21.1 + brightRed: 51.1 + brightGreen: 80.2 + brightYellow: 81.8 + brightBlue: 69.1 + brightMagenta: 71.2 + brightCyan: 79.1 + brightWhite: 105.1 diff --git a/themes/ayu-theme-fork.yaml b/themes/ayu-theme-fork.yaml new file mode 100644 index 00000000..8cb2c349 --- /dev/null +++ b/themes/ayu-theme-fork.yaml @@ -0,0 +1,53 @@ +name: "Ayu Theme Fork" +source: + marketplace_id: "tsybko22.ayu-fork" + version: "1.2.0" + installs: 790 + rating: 0 + ratings: 0 + author: "Ivan Tsybko" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tsybko22.ayu-fork" + formats: null +colors: + bg: "#1F2430" + fg: "#CCCAC2" + black: "#191E2A" + red: "#ED8274" + green: "#BAE67E" + yellow: "#FAD07B" + blue: "#71B6F0" + magenta: "#CFBAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FAC761" + brightBlue: "#71B6F0" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + pair: null + contrast: + fg: 71.6 + black: 0 + red: 48.6 + green: 80.2 + yellow: 78.7 + blue: 56.8 + magenta: 68.3 + cyan: 76.1 + white: 69.9 + brightBlack: 21.1 + brightRed: 51.1 + brightGreen: 80.2 + brightYellow: 74.5 + brightBlue: 56.8 + brightMagenta: 71.2 + brightCyan: 79.1 + brightWhite: 105.1 diff --git a/themes/ayu-tokyo-night.yaml b/themes/ayu-tokyo-night.yaml new file mode 100644 index 00000000..ae3299bb --- /dev/null +++ b/themes/ayu-tokyo-night.yaml @@ -0,0 +1,53 @@ +name: "Ayu Tokyo Night" +source: + marketplace_id: "LudoLoops.ayutokyo" + version: "0.2.1" + installs: 21474 + rating: 5 + ratings: 2 + author: "LudoLoops" + repo: "https://github.com/neuroloops/ayutokyo" + url: "https://marketplace.visualstudio.com/items?itemName=LudoLoops.ayutokyo" + formats: null +colors: + bg: "#0D1017" + fg: "#BFBDB6" + black: "#11151C" + red: "#EA6C73" + green: "#00FFAA" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 267 + pair: null + contrast: + fg: 66.4 + black: 0 + red: 44.6 + green: 88.2 + yellow: 67.1 + blue: 61.2 + magenta: 61.2 + cyan: 78.4 + white: 72.3 + brightBlack: 23.5 + brightRed: 47.2 + brightGreen: 73.9 + brightYellow: 70.1 + brightBlue: 63.9 + brightMagenta: 64 + brightCyan: 81.4 + brightWhite: 107.4 diff --git a/themes/ayuloco-theme--ayuloco-dark-bordered.yaml b/themes/ayuloco-theme--ayuloco-dark-bordered.yaml new file mode 100644 index 00000000..2f662052 --- /dev/null +++ b/themes/ayuloco-theme--ayuloco-dark-bordered.yaml @@ -0,0 +1,53 @@ +name: "Ayuloco Theme (Ayuloco Dark Bordered)" +source: + marketplace_id: "dpaulos6.ayuloco-theme" + version: "2.0.3" + installs: 1466 + rating: 5 + ratings: 1 + author: "dpaulos6" + repo: "https://github.com/dpaulos6/ayuloco-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dpaulos6.ayuloco-theme" + formats: null +colors: + bg: "#0D1017" + fg: "#BFBDB6" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + pair: null + contrast: + fg: 66.4 + black: 0 + red: 44.6 + green: 70.6 + yellow: 67.1 + blue: 61.2 + magenta: 61.2 + cyan: 78.4 + white: 72.3 + brightBlack: 23.5 + brightRed: 47.2 + brightGreen: 73.9 + brightYellow: 70.1 + brightBlue: 63.9 + brightMagenta: 64 + brightCyan: 81.4 + brightWhite: 107.4 diff --git a/themes/ayuloco-theme--ayuloco-mirage-bordered.yaml b/themes/ayuloco-theme--ayuloco-mirage-bordered.yaml new file mode 100644 index 00000000..4080e9a7 --- /dev/null +++ b/themes/ayuloco-theme--ayuloco-mirage-bordered.yaml @@ -0,0 +1,53 @@ +name: "Ayuloco Theme (Ayuloco Mirage Bordered)" +source: + marketplace_id: "dpaulos6.ayuloco-theme" + version: "2.0.3" + installs: 1466 + rating: 5 + ratings: 1 + author: "dpaulos6" + repo: "https://github.com/dpaulos6/ayuloco-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dpaulos6.ayuloco-theme" + formats: null +colors: + bg: "#242936" + fg: "#CCCAC2" + black: "#171B24" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#FFD173" + brightBlue: "#73D0FF" + brightMagenta: "#DFBFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 268 + pair: null + contrast: + fg: 70.7 + black: 0 + red: 47.7 + green: 68.1 + yellow: 75.9 + blue: 65.3 + magenta: 68.9 + cyan: 75.2 + white: 69 + brightBlack: 20.2 + brightRed: 50.2 + brightGreen: 94.6 + brightYellow: 78.9 + brightBlue: 68.2 + brightMagenta: 71.9 + brightCyan: 78.2 + brightWhite: 104.2 diff --git a/themes/ayuloco-theme--ayuloco-mirage.yaml b/themes/ayuloco-theme--ayuloco-mirage.yaml new file mode 100644 index 00000000..4b69be18 --- /dev/null +++ b/themes/ayuloco-theme--ayuloco-mirage.yaml @@ -0,0 +1,53 @@ +name: "Ayuloco Theme (Ayuloco Mirage)" +source: + marketplace_id: "dpaulos6.ayuloco-theme" + version: "2.0.3" + installs: 1466 + rating: 5 + ratings: 1 + author: "dpaulos6" + repo: "https://github.com/dpaulos6/ayuloco-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dpaulos6.ayuloco-theme" + formats: null +colors: + bg: "#1F2430" + fg: "#CCCAC2" + black: "#171B24" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#FFD173" + brightBlue: "#73D0FF" + brightMagenta: "#DFBFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + pair: null + contrast: + fg: 71.6 + black: 0 + red: 48.6 + green: 69 + yellow: 76.8 + blue: 66.2 + magenta: 69.8 + cyan: 76.1 + white: 69.9 + brightBlack: 21.1 + brightRed: 51.1 + brightGreen: 95.5 + brightYellow: 79.8 + brightBlue: 69.1 + brightMagenta: 72.8 + brightCyan: 79.1 + brightWhite: 105.1 diff --git a/themes/az0ox-shades-of-blue.yaml b/themes/az0ox-shades-of-blue.yaml new file mode 100644 index 00000000..efb10c02 --- /dev/null +++ b/themes/az0ox-shades-of-blue.yaml @@ -0,0 +1,53 @@ +name: "az0ox Shades of blue" +source: + marketplace_id: "NathanEcht.az0ox-theme-ShadesOfBlue" + version: "0.0.2" + installs: 144 + rating: 0 + ratings: 0 + author: "Nathan_Echt" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NathanEcht.az0ox-theme-ShadesOfBlue" + formats: null +colors: + bg: "#2B2A41" + fg: "#D9B23C" + black: "#000000" + red: "#CB2D2D" + green: "#2CFF00" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#FF00FF" + cyan: "#00CDFF" + white: "#CBC4FF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#39D123" + brightYellow: "#D5D528" + brightBlue: "#3B8EEA" + brightMagenta: "#FF71FF" + brightCyan: "#22B5D9" + brightWhite: "#6371BC" +meta: + mode: "dark" + accent: "pink" + hue: 286 + pair: null + contrast: + fg: 58.9 + black: 0 + red: 22.5 + green: 82.4 + yellow: 82.3 + blue: 24.1 + magenta: 41.9 + cyan: 63.3 + white: 70.5 + brightBlack: 18.7 + brightRed: 35.2 + brightGreen: 59 + brightYellow: 72.9 + brightBlue: 36.7 + brightMagenta: 52.8 + brightCyan: 50.6 + brightWhite: 25.9 diff --git a/themes/azul--azul.yaml b/themes/azul--azul.yaml new file mode 100644 index 00000000..b988600f --- /dev/null +++ b/themes/azul--azul.yaml @@ -0,0 +1,53 @@ +name: "Azul (Azul)" +source: + marketplace_id: "YesCode.azul" + version: "0.0.3" + installs: 1013 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/Azul" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.azul" + formats: null +colors: + bg: "#1C2530" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#FF7C44" + brightYellow: "#20473A" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 254 + pair: null + contrast: + fg: 102.8 + black: 0 + red: 40.2 + green: 59.2 + yellow: 71.3 + blue: 45.7 + magenta: 17.7 + cyan: 47.6 + white: 45.4 + brightBlack: 16.8 + brightRed: 40.2 + brightGreen: 49.7 + brightYellow: 0 + brightBlue: 16.9 + brightMagenta: 17.7 + brightCyan: 47.6 + brightWhite: 97.1 diff --git a/themes/azul--greenspace.yaml b/themes/azul--greenspace.yaml new file mode 100644 index 00000000..91d55938 --- /dev/null +++ b/themes/azul--greenspace.yaml @@ -0,0 +1,53 @@ +name: "Azul (GreenSpace)" +source: + marketplace_id: "YesCode.azul" + version: "0.0.3" + installs: 1013 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/Azul" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.azul" + formats: null +colors: + bg: "#242F3A" + fg: "#CDCDCD" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#B7CCB1" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: 249 + pair: null + contrast: + fg: 71.6 + black: 0 + red: 38.3 + green: 57.3 + yellow: 69.4 + blue: 79.2 + magenta: 15.9 + cyan: 45.8 + white: 43.6 + brightBlack: 14.9 + brightRed: 38.3 + brightGreen: 67.4 + brightYellow: 76.1 + brightBlue: 15.1 + brightMagenta: 15.9 + brightCyan: 45.8 + brightWhite: 95.2 diff --git a/themes/azure-teal.yaml b/themes/azure-teal.yaml new file mode 100644 index 00000000..6ce1e609 --- /dev/null +++ b/themes/azure-teal.yaml @@ -0,0 +1,53 @@ +name: "Azure Teal" +source: + marketplace_id: "Diamo-Bachar.azure-teal" + version: "0.0.1" + installs: 1063 + rating: 0 + ratings: 0 + author: "Diamo Bachar" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Diamo-Bachar.azure-teal" + formats: null +colors: + bg: "#3B3B3B" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 99.7 + black: 8 + red: 19.5 + green: 45.8 + yellow: 78.4 + blue: 20.2 + magenta: 22.6 + cyan: 40.4 + white: 82.8 + brightBlack: 14.8 + brightRed: 31.4 + brightGreen: 56.3 + brightYellow: 88.4 + brightBlue: 32.8 + brightMagenta: 38.2 + brightCyan: 48.2 + brightWhite: 82.8 diff --git a/themes/b715xyz.yaml b/themes/b715xyz.yaml new file mode 100644 index 00000000..9bd920ab --- /dev/null +++ b/themes/b715xyz.yaml @@ -0,0 +1,53 @@ +name: "b715xyz" +source: + marketplace_id: "brian-local.b715xyz" + version: "0.1.0" + installs: 51 + rating: 0 + ratings: 0 + author: "brian-local" + repo: "https://github.com/brian715/b715xyz" + url: "https://marketplace.visualstudio.com/items?itemName=brian-local.b715xyz" + formats: null +colors: + bg: "#252935" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + pair: null + contrast: + fg: 76.8 + black: 0 + red: 24 + green: 50.3 + yellow: 82.9 + blue: 24.7 + magenta: 27.1 + cyan: 44.9 + white: 87.3 + brightBlack: 19.4 + brightRed: 35.9 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.3 + brightMagenta: 42.7 + brightCyan: 52.7 + brightWhite: 87.3 diff --git a/themes/barbenheimer--barbenheimer-bunker.yaml b/themes/barbenheimer--barbenheimer-bunker.yaml new file mode 100644 index 00000000..630c5753 --- /dev/null +++ b/themes/barbenheimer--barbenheimer-bunker.yaml @@ -0,0 +1,53 @@ +name: "Barbenheimer (Barbenheimer Bunker)" +source: + marketplace_id: "jayvicsanantonio.barbenheimer" + version: "1.0.0" + installs: 4075 + rating: 5 + ratings: 2 + author: "Jayvic San Antonio" + repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" + formats: null +colors: + bg: "#14140B" + fg: "#E9B2CF" + black: "#14140B" + red: "#F672AC" + green: "#A0E0C0" + yellow: "#F0E0B0" + blue: "#A0C0F0" + magenta: "#D4A8F9" + cyan: "#A0E0D0" + white: "#E0E0E0" + brightBlack: "#FCE5D8" + brightRed: "#F672AC" + brightGreen: "#A0E0C0" + brightYellow: "#F0E0B0" + brightBlue: "#A0C0F0" + brightMagenta: "#D4A8F9" + brightCyan: "#A0E0D0" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "red" + hue: 108 + pair: null + contrast: + fg: 68.9 + black: 0 + red: 50.2 + green: 78.8 + yellow: 87.6 + blue: 66.8 + magenta: 64.3 + cyan: 79.4 + white: 87.2 + brightBlack: 93 + brightRed: 50.2 + brightGreen: 78.8 + brightYellow: 87.6 + brightBlue: 66.8 + brightMagenta: 64.3 + brightCyan: 79.4 + brightWhite: 87.2 diff --git a/themes/barbenheimer--barbenheimer-dreamhouse.yaml b/themes/barbenheimer--barbenheimer-dreamhouse.yaml new file mode 100644 index 00000000..271f6e28 --- /dev/null +++ b/themes/barbenheimer--barbenheimer-dreamhouse.yaml @@ -0,0 +1,53 @@ +name: "Barbenheimer (Barbenheimer Dreamhouse)" +source: + marketplace_id: "jayvicsanantonio.barbenheimer" + version: "1.0.0" + installs: 4075 + rating: 5 + ratings: 2 + author: "Jayvic San Antonio" + repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" + formats: null +colors: + bg: "#FFF8F0" + fg: "#14140B" + black: "#302820" + red: "#F060A0" + green: "#A8D977" + yellow: "#F7D787" + blue: "#87CEFA" + magenta: "#BA55D3" + cyan: "#80CBC4" + white: "#14140B" + brightBlack: "#4A443A" + brightRed: "#DC5687" + brightGreen: "#86B465" + brightYellow: "#E0C070" + brightBlue: "#64B5D9" + brightMagenta: "#9B40B4" + brightCyan: "#609E9A" + brightWhite: "#000000" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.5 + black: 97.6 + red: 52.9 + green: 24.5 + yellow: 15.6 + blue: 27.1 + magenta: 62.6 + cyan: 31.5 + white: 101.5 + brightBlack: 88.7 + brightRed: 59.9 + brightGreen: 43.7 + brightYellow: 28.5 + brightBlue: 41.5 + brightMagenta: 73.4 + brightCyan: 53.8 + brightWhite: 102.4 diff --git a/themes/barbenheimer--barbenheimer-nuclear-sunrise.yaml b/themes/barbenheimer--barbenheimer-nuclear-sunrise.yaml new file mode 100644 index 00000000..6bdb9d4b --- /dev/null +++ b/themes/barbenheimer--barbenheimer-nuclear-sunrise.yaml @@ -0,0 +1,53 @@ +name: "Barbenheimer (Barbenheimer Nuclear Sunrise)" +source: + marketplace_id: "jayvicsanantonio.barbenheimer" + version: "1.0.0" + installs: 4075 + rating: 5 + ratings: 2 + author: "Jayvic San Antonio" + repo: "https://github.com/jayvicsanantonio/barbenheimer-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jayvicsanantonio.barbenheimer" + formats: null +colors: + bg: "#0F0F0A" + fg: "#FFFFFF" + black: "#0F0F0A" + red: "#FF69B4" + green: "#80C0A0" + yellow: "#C0C080" + blue: "#80A0C0" + magenta: "#C080C0" + cyan: "#80C0C0" + white: "#D0D0D0" + brightBlack: "#EEEEEE" + brightRed: "#FF69B4" + brightGreen: "#80C0A0" + brightYellow: "#C0C080" + brightBlue: "#80A0C0" + brightMagenta: "#C080C0" + brightCyan: "#80C0C0" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "red" + hue: 107 + pair: null + contrast: + fg: 107.5 + black: 0 + red: 50.7 + green: 60.7 + yellow: 66.2 + blue: 48.8 + magenta: 45.4 + cyan: 62 + white: 77.7 + brightBlack: 96.4 + brightRed: 50.7 + brightGreen: 60.7 + brightYellow: 66.2 + brightBlue: 48.8 + brightMagenta: 45.4 + brightCyan: 62 + brightWhite: 87.5 diff --git a/themes/base16-themes--base16-3024-dark.yaml b/themes/base16-themes--base16-3024-dark.yaml new file mode 100644 index 00000000..b14bfdb5 --- /dev/null +++ b/themes/base16-themes--base16-3024-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 3024 Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#090300" + fg: "#A5A2A2" + black: "#4A4543" + red: "#DB2D20" + green: "#01A252" + yellow: "#E8BBD0" + blue: "#01A0E4" + magenta: "#A16A94" + cyan: "#B5E4F4" + white: "#D6D5D4" + brightBlack: "#5C5855" + brightRed: "#DB2D20" + brightGreen: "#01A252" + brightYellow: "#FDED02" + brightBlue: "#01A0E4" + brightMagenta: "#A16A94" + brightCyan: "#B5E4F4" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 66 + pair: null + contrast: + fg: 52.2 + black: 10.5 + red: 30.3 + green: 41.6 + yellow: 72.9 + blue: 46.6 + magenta: 32.8 + cyan: 85.6 + white: 81.2 + brightBlack: 17.5 + brightRed: 30.3 + brightGreen: 41.6 + brightYellow: 93.8 + brightBlue: 46.6 + brightMagenta: 32.8 + brightCyan: 85.6 + brightWhite: 102.6 diff --git a/themes/base16-themes--base16-3024-light.yaml b/themes/base16-themes--base16-3024-light.yaml new file mode 100644 index 00000000..69a9abdc --- /dev/null +++ b/themes/base16-themes--base16-3024-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 3024 Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#F7F7F7" + fg: "#4A4543" + black: "#A5A2A2" + red: "#DB2D20" + green: "#01A252" + yellow: "#E8BBD0" + blue: "#01A0E4" + magenta: "#A16A94" + cyan: "#B5E4F4" + white: "#3A3432" + brightBlack: "#807D7C" + brightRed: "#DB2D20" + brightGreen: "#01A252" + brightYellow: "#FDED02" + brightBlue: "#01A0E4" + brightMagenta: "#A16A94" + brightCyan: "#B5E4F4" + brightWhite: "#090300" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.1 + black: 44.9 + red: 66.5 + green: 55.3 + yellow: 25.1 + blue: 50.4 + magenta: 64 + cyan: 13.1 + white: 93.2 + brightBlack: 63.3 + brightRed: 66.5 + brightGreen: 55.3 + brightYellow: 0 + brightBlue: 50.4 + brightMagenta: 64 + brightCyan: 13.1 + brightWhite: 101.2 diff --git a/themes/base16-themes--base16-apathy-dark.yaml b/themes/base16-themes--base16-apathy-dark.yaml new file mode 100644 index 00000000..026f8743 --- /dev/null +++ b/themes/base16-themes--base16-apathy-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Apathy Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#031A16" + fg: "#81B5AC" + black: "#184E45" + red: "#3E9688" + green: "#883E96" + yellow: "#3E7996" + blue: "#96883E" + magenta: "#4C963E" + cyan: "#963E4C" + white: "#A7CEC8" + brightBlack: "#2B685E" + brightRed: "#3E9688" + brightGreen: "#883E96" + brightYellow: "#3E4C96" + brightBlue: "#96883E" + brightMagenta: "#4C963E" + brightCyan: "#963E4C" + brightWhite: "#D2E7E4" +meta: + mode: "dark" + accent: "pink" + hue: 180 + pair: null + contrast: + fg: 55.8 + black: 9.6 + red: 37.8 + green: 18.7 + yellow: 27.5 + blue: 37.4 + magenta: 36.7 + cyan: 18 + white: 71.2 + brightBlack: 18.9 + brightRed: 37.8 + brightGreen: 18.7 + brightYellow: 14.1 + brightBlue: 37.4 + brightMagenta: 36.7 + brightCyan: 18 + brightWhite: 88.4 diff --git a/themes/base16-themes--base16-apathy-light.yaml b/themes/base16-themes--base16-apathy-light.yaml new file mode 100644 index 00000000..0a79a4f3 --- /dev/null +++ b/themes/base16-themes--base16-apathy-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Apathy Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#D2E7E4" + fg: "#184E45" + black: "#81B5AC" + red: "#3E9688" + green: "#883E96" + yellow: "#3E7996" + blue: "#96883E" + magenta: "#4C963E" + cyan: "#963E4C" + white: "#0B342D" + brightBlack: "#5F9C92" + brightRed: "#3E9688" + brightGreen: "#883E96" + brightYellow: "#3E4C96" + brightBlue: "#96883E" + brightMagenta: "#4C963E" + brightCyan: "#963E4C" + brightWhite: "#031A16" +meta: + mode: "light" + accent: "pink" + hue: 186 + pair: null + contrast: + fg: 74.9 + black: 28.5 + red: 46 + green: 65.4 + yellow: 56.3 + blue: 46.4 + magenta: 47.2 + cyan: 66.1 + white: 83.2 + brightBlack: 41.8 + brightRed: 46 + brightGreen: 65.4 + brightYellow: 70.2 + brightBlue: 46.4 + brightMagenta: 47.2 + brightCyan: 66.1 + brightWhite: 87.9 diff --git a/themes/base16-themes--base16-ashes-dark.yaml b/themes/base16-themes--base16-ashes-dark.yaml new file mode 100644 index 00000000..a1d75c07 --- /dev/null +++ b/themes/base16-themes--base16-ashes-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Ashes Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#1C2023" + fg: "#C7CCD1" + black: "#565E65" + red: "#C7AE95" + green: "#95C7AE" + yellow: "#C7C795" + blue: "#AE95C7" + magenta: "#C795AE" + cyan: "#95AEC7" + white: "#DFE2E5" + brightBlack: "#747C84" + brightRed: "#C7AE95" + brightGreen: "#95C7AE" + brightYellow: "#AEC795" + brightBlue: "#AE95C7" + brightMagenta: "#C795AE" + brightCyan: "#95AEC7" + brightWhite: "#F3F4F5" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 73.2 + black: 17.2 + red: 58.7 + green: 64.3 + yellow: 68.9 + blue: 48.3 + magenta: 50.6 + cyan: 54.8 + white: 86.8 + brightBlack: 30.4 + brightRed: 58.7 + brightGreen: 64.3 + brightYellow: 65.9 + brightBlue: 48.3 + brightMagenta: 50.6 + brightCyan: 54.8 + brightWhite: 98.5 diff --git a/themes/base16-themes--base16-ashes-light.yaml b/themes/base16-themes--base16-ashes-light.yaml new file mode 100644 index 00000000..d3da2e88 --- /dev/null +++ b/themes/base16-themes--base16-ashes-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Ashes Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#F3F4F5" + fg: "#565E65" + black: "#C7CCD1" + red: "#C7AE95" + green: "#95C7AE" + yellow: "#C7C795" + blue: "#AE95C7" + magenta: "#C795AE" + cyan: "#95AEC7" + white: "#393F45" + brightBlack: "#ADB3BA" + brightRed: "#C7AE95" + brightGreen: "#95C7AE" + brightYellow: "#AEC795" + brightBlue: "#AE95C7" + brightMagenta: "#C795AE" + brightCyan: "#95AEC7" + brightWhite: "#1C2023" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 76 + black: 21 + red: 34.9 + green: 29.5 + yellow: 25.1 + blue: 44.9 + magenta: 42.7 + cyan: 38.6 + white: 88.1 + brightBlack: 34.8 + brightRed: 34.9 + brightGreen: 29.5 + brightYellow: 27.9 + brightBlue: 44.9 + brightMagenta: 42.7 + brightCyan: 38.6 + brightWhite: 96.7 diff --git a/themes/base16-themes--base16-bespin-dark.yaml b/themes/base16-themes--base16-bespin-dark.yaml new file mode 100644 index 00000000..2c6428e9 --- /dev/null +++ b/themes/base16-themes--base16-bespin-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Bespin Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#28211C" + fg: "#8A8986" + black: "#5E5D5C" + red: "#CF6A4C" + green: "#54BE0D" + yellow: "#CF7D34" + blue: "#5EA6EA" + magenta: "#9B859D" + cyan: "#AFC4DB" + white: "#9D9B97" + brightBlack: "#666666" + brightRed: "#CF6A4C" + brightGreen: "#54BE0D" + brightYellow: "#F9EE98" + brightBlue: "#5EA6EA" + brightMagenta: "#9B859D" + brightCyan: "#AFC4DB" + brightWhite: "#BAAE9E" +meta: + mode: "dark" + accent: "green" + hue: 58 + pair: null + contrast: + fg: 36.6 + black: 16.9 + red: 36 + green: 52.7 + yellow: 40.8 + blue: 49.1 + magenta: 38.1 + cyan: 67.1 + white: 45.8 + brightBlack: 20.6 + brightRed: 36 + brightGreen: 52.7 + brightYellow: 92.8 + brightBlue: 49.1 + brightMagenta: 38.1 + brightCyan: 67.1 + brightWhite: 56.8 diff --git a/themes/base16-themes--base16-bespin-light.yaml b/themes/base16-themes--base16-bespin-light.yaml new file mode 100644 index 00000000..5384676f --- /dev/null +++ b/themes/base16-themes--base16-bespin-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Bespin Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#BAAE9E" + fg: "#5E5D5C" + black: "#8A8986" + red: "#CF6A4C" + green: "#54BE0D" + yellow: "#CF7D34" + blue: "#5EA6EA" + magenta: "#9B859D" + cyan: "#AFC4DB" + white: "#36312E" + brightBlack: "#797977" + brightRed: "#CF6A4C" + brightGreen: "#54BE0D" + brightYellow: "#F9EE98" + brightBlue: "#5EA6EA" + brightMagenta: "#9B859D" + brightCyan: "#AFC4DB" + brightWhite: "#28211C" +meta: + mode: "light" + accent: "green" + hue: 75 + pair: null + contrast: + fg: 37.6 + black: 17.6 + red: 18.3 + green: 0 + yellow: 13.5 + blue: 0 + magenta: 16.2 + cyan: 9.3 + white: 54 + brightBlack: 25.3 + brightRed: 18.3 + brightGreen: 0 + brightYellow: 35 + brightBlue: 0 + brightMagenta: 16.2 + brightCyan: 9.3 + brightWhite: 57.9 diff --git a/themes/base16-themes--base16-brewer-dark.yaml b/themes/base16-themes--base16-brewer-dark.yaml new file mode 100644 index 00000000..fbaab939 --- /dev/null +++ b/themes/base16-themes--base16-brewer-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Brewer Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#0C0D0E" + fg: "#B7B8B9" + black: "#515253" + red: "#E31A1C" + green: "#31A354" + yellow: "#E6550D" + blue: "#3182BD" + magenta: "#756BB1" + cyan: "#80B1D3" + white: "#DADBDC" + brightBlack: "#737475" + brightRed: "#E31A1C" + brightGreen: "#31A354" + brightYellow: "#DCA060" + brightBlue: "#3182BD" + brightMagenta: "#756BB1" + brightCyan: "#80B1D3" + brightWhite: "#FCFDFE" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 63.7 + black: 14.6 + red: 30.8 + green: 42.3 + yellow: 37.9 + blue: 33.2 + magenta: 29 + cyan: 56.6 + white: 84.4 + brightBlack: 28.9 + brightRed: 30.8 + brightGreen: 42.3 + brightYellow: 57.2 + brightBlue: 33.2 + brightMagenta: 29 + brightCyan: 56.6 + brightWhite: 106.2 diff --git a/themes/base16-themes--base16-brewer-light.yaml b/themes/base16-themes--base16-brewer-light.yaml new file mode 100644 index 00000000..5249e674 --- /dev/null +++ b/themes/base16-themes--base16-brewer-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Brewer Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#FCFDFE" + fg: "#515253" + black: "#B7B8B9" + red: "#E31A1C" + green: "#31A354" + yellow: "#E6550D" + blue: "#3182BD" + magenta: "#756BB1" + cyan: "#80B1D3" + white: "#2E2F30" + brightBlack: "#959697" + brightRed: "#E31A1C" + brightGreen: "#31A354" + brightYellow: "#DCA060" + brightBlue: "#3182BD" + brightMagenta: "#756BB1" + brightCyan: "#80B1D3" + brightWhite: "#0C0D0E" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.9 + black: 37.1 + red: 69.3 + green: 57.9 + yellow: 62.3 + blue: 67 + magenta: 71.1 + cyan: 43.9 + white: 98.6 + brightBlack: 54.9 + brightRed: 69.3 + brightGreen: 57.9 + brightYellow: 43.4 + brightBlue: 67 + brightMagenta: 71.1 + brightCyan: 43.9 + brightWhite: 104.4 diff --git a/themes/base16-themes--base16-bright-dark.yaml b/themes/base16-themes--base16-bright-dark.yaml new file mode 100644 index 00000000..848410e4 --- /dev/null +++ b/themes/base16-themes--base16-bright-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Bright Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#000000" + fg: "#E0E0E0" + black: "#505050" + red: "#FB0120" + green: "#A1C659" + yellow: "#FC6D24" + blue: "#6FB3D2" + magenta: "#D381C3" + cyan: "#76C7B7" + white: "#F5F5F5" + brightBlack: "#B0B0B0" + brightRed: "#FB0120" + brightGreen: "#A1C659" + brightYellow: "#FDA331" + brightBlue: "#6FB3D2" + brightMagenta: "#D381C3" + brightCyan: "#76C7B7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.9 + black: 14.2 + red: 36.6 + green: 64.9 + yellow: 48 + blue: 56.5 + magenta: 49.3 + cyan: 64.4 + white: 101.3 + brightBlack: 59.5 + brightRed: 36.6 + brightGreen: 64.9 + brightYellow: 63.8 + brightBlue: 56.5 + brightMagenta: 49.3 + brightCyan: 64.4 + brightWhite: 107.9 diff --git a/themes/base16-themes--base16-bright-light.yaml b/themes/base16-themes--base16-bright-light.yaml new file mode 100644 index 00000000..ef4751a9 --- /dev/null +++ b/themes/base16-themes--base16-bright-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Bright Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#505050" + black: "#E0E0E0" + red: "#FB0120" + green: "#A1C659" + yellow: "#FC6D24" + blue: "#6FB3D2" + magenta: "#D381C3" + cyan: "#76C7B7" + white: "#303030" + brightBlack: "#D0D0D0" + brightRed: "#FB0120" + brightGreen: "#A1C659" + brightYellow: "#FDA331" + brightBlue: "#6FB3D2" + brightMagenta: "#D381C3" + brightCyan: "#76C7B7" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 88 + black: 15.8 + red: 65.1 + green: 37.5 + yellow: 53.9 + blue: 45.6 + magenta: 52.6 + cyan: 38 + white: 99.6 + brightBlack: 25 + brightRed: 65.1 + brightGreen: 37.5 + brightYellow: 38.6 + brightBlue: 45.6 + brightMagenta: 52.6 + brightCyan: 38 + brightWhite: 106 diff --git a/themes/base16-themes--base16-codeschool-dark.yaml b/themes/base16-themes--base16-codeschool-dark.yaml new file mode 100644 index 00000000..232882fa --- /dev/null +++ b/themes/base16-themes--base16-codeschool-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Codeschool Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#232C31" + fg: "#9EA7A6" + black: "#2A343A" + red: "#2A5491" + green: "#237986" + yellow: "#43820D" + blue: "#484D79" + magenta: "#C59820" + cyan: "#B02F30" + white: "#A7CFA3" + brightBlack: "#3F4944" + brightRed: "#2A5491" + brightGreen: "#237986" + brightYellow: "#A03B1E" + brightBlue: "#484D79" + brightMagenta: "#C59820" + brightCyan: "#B02F30" + brightWhite: "#B5D8F6" +meta: + mode: "dark" + accent: "orange" + hue: 232 + pair: null + contrast: + fg: 49.6 + black: 0 + red: 12.1 + green: 23.1 + yellow: 25.2 + blue: 10.4 + magenta: 46.3 + cyan: 17.4 + white: 67.3 + brightBlack: 0 + brightRed: 12.1 + brightGreen: 23.1 + brightYellow: 15.7 + brightBlue: 10.4 + brightMagenta: 46.3 + brightCyan: 17.4 + brightWhite: 76.3 diff --git a/themes/base16-themes--base16-codeschool-light.yaml b/themes/base16-themes--base16-codeschool-light.yaml new file mode 100644 index 00000000..0d2adb63 --- /dev/null +++ b/themes/base16-themes--base16-codeschool-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Codeschool Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#B5D8F6" + fg: "#2A343A" + black: "#9EA7A6" + red: "#2A5491" + green: "#237986" + yellow: "#43820D" + blue: "#484D79" + magenta: "#C59820" + cyan: "#B02F30" + white: "#1C3657" + brightBlack: "#84898C" + brightRed: "#2A5491" + brightGreen: "#237986" + brightYellow: "#A03B1E" + brightBlue: "#484D79" + brightMagenta: "#C59820" + brightCyan: "#B02F30" + brightWhite: "#232C31" +meta: + mode: "light" + accent: "orange" + hue: 244 + pair: null + contrast: + fg: 73.6 + black: 23.2 + red: 60.8 + green: 49.4 + yellow: 47.3 + blue: 62.6 + magenta: 26.4 + cyan: 55.2 + white: 72.5 + brightBlack: 37.7 + brightRed: 60.8 + brightGreen: 49.4 + brightYellow: 57 + brightBlue: 62.6 + brightMagenta: 26.4 + brightCyan: 55.2 + brightWhite: 75.7 diff --git a/themes/base16-themes--base16-default-dark.yaml b/themes/base16-themes--base16-default-dark.yaml new file mode 100644 index 00000000..bf410931 --- /dev/null +++ b/themes/base16-themes--base16-default-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Default Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#181818" + fg: "#D8D8D8" + black: "#383838" + red: "#AB4642" + green: "#A1B56C" + yellow: "#DC9656" + blue: "#7CAFC2" + magenta: "#BA8BAF" + cyan: "#86C1B9" + white: "#E8E8E8" + brightBlack: "#585858" + brightRed: "#AB4642" + brightGreen: "#A1B56C" + brightYellow: "#F7CA88" + brightBlue: "#7CAFC2" + brightMagenta: "#BA8BAF" + brightCyan: "#86C1B9" + brightWhite: "#F8F8F8" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 81.8 + black: 0 + red: 22.8 + green: 56.7 + yellow: 52.7 + blue: 53.8 + magenta: 46.3 + cyan: 61.8 + white: 91.8 + brightBlack: 16.2 + brightRed: 22.8 + brightGreen: 56.7 + brightYellow: 77.7 + brightBlue: 53.8 + brightMagenta: 46.3 + brightCyan: 61.8 + brightWhite: 102.1 diff --git a/themes/base16-themes--base16-default-light.yaml b/themes/base16-themes--base16-default-light.yaml new file mode 100644 index 00000000..5edb2362 --- /dev/null +++ b/themes/base16-themes--base16-default-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Default Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#F8F8F8" + fg: "#383838" + black: "#D8D8D8" + red: "#AB4642" + green: "#A1B56C" + yellow: "#DC9656" + blue: "#7CAFC2" + magenta: "#BA8BAF" + cyan: "#86C1B9" + white: "#282828" + brightBlack: "#B8B8B8" + brightRed: "#AB4642" + brightGreen: "#A1B56C" + brightYellow: "#F7CA88" + brightBlue: "#7CAFC2" + brightMagenta: "#BA8BAF" + brightCyan: "#86C1B9" + brightWhite: "#181818" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.8 + black: 16.3 + red: 73.6 + green: 40.1 + yellow: 44 + blue: 42.9 + magenta: 50.2 + cyan: 35.2 + white: 97.4 + brightBlack: 34.2 + brightRed: 73.6 + brightGreen: 40.1 + brightYellow: 20.2 + brightBlue: 42.9 + brightMagenta: 50.2 + brightCyan: 35.2 + brightWhite: 100.4 diff --git a/themes/base16-themes--base16-eighties-dark.yaml b/themes/base16-themes--base16-eighties-dark.yaml new file mode 100644 index 00000000..d95b807b --- /dev/null +++ b/themes/base16-themes--base16-eighties-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Eighties Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#2D2D2D" + fg: "#D3D0C8" + black: "#515151" + red: "#F2777A" + green: "#99CC99" + yellow: "#F99157" + blue: "#6699CC" + magenta: "#CC99CC" + cyan: "#66CCCC" + white: "#E8E6DF" + brightBlack: "#747369" + brightRed: "#F2777A" + brightGreen: "#99CC99" + brightYellow: "#FFCC66" + brightBlue: "#6699CC" + brightMagenta: "#CC99CC" + brightCyan: "#66CCCC" + brightWhite: "#F2F0EC" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.7 + black: 10.1 + red: 45.1 + green: 63.8 + yellow: 53.1 + blue: 40.7 + magenta: 51.7 + cyan: 62.2 + white: 87.2 + brightBlack: 24.1 + brightRed: 45.1 + brightGreen: 63.8 + brightYellow: 75.8 + brightBlue: 40.7 + brightMagenta: 51.7 + brightCyan: 62.2 + brightWhite: 93.7 diff --git a/themes/base16-themes--base16-eighties-light.yaml b/themes/base16-themes--base16-eighties-light.yaml new file mode 100644 index 00000000..9e1100b5 --- /dev/null +++ b/themes/base16-themes--base16-eighties-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Eighties Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#F2F0EC" + fg: "#515151" + black: "#D3D0C8" + red: "#F2777A" + green: "#99CC99" + yellow: "#F99157" + blue: "#6699CC" + magenta: "#CC99CC" + cyan: "#66CCCC" + white: "#393939" + brightBlack: "#A09F93" + brightRed: "#F2777A" + brightGreen: "#99CC99" + brightYellow: "#FFCC66" + brightBlue: "#6699CC" + brightMagenta: "#CC99CC" + brightCyan: "#66CCCC" + brightWhite: "#2D2D2D" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.7 + black: 16.1 + red: 43.5 + green: 25.5 + yellow: 35.7 + blue: 47.8 + magenta: 37.1 + cyan: 27 + white: 87.8 + brightBlack: 43 + brightRed: 43.5 + brightGreen: 25.5 + brightYellow: 14.1 + brightBlue: 47.8 + brightMagenta: 37.1 + brightCyan: 27 + brightWhite: 91.5 diff --git a/themes/base16-themes--base16-embers-dark.yaml b/themes/base16-themes--base16-embers-dark.yaml new file mode 100644 index 00000000..0e879984 --- /dev/null +++ b/themes/base16-themes--base16-embers-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Embers Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#16130F" + fg: "#A39A90" + black: "#433B32" + red: "#826D57" + green: "#57826D" + yellow: "#828257" + blue: "#6D5782" + magenta: "#82576D" + cyan: "#576D82" + white: "#BEB6AE" + brightBlack: "#5A5047" + brightRed: "#826D57" + brightGreen: "#57826D" + brightYellow: "#6D8257" + brightBlue: "#6D5782" + brightMagenta: "#82576D" + brightCyan: "#576D82" + brightWhite: "#DBD6D1" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 47.7 + black: 0 + red: 27 + green: 30.8 + yellow: 33.9 + blue: 19.9 + magenta: 21.5 + cyan: 24.4 + white: 62.9 + brightBlack: 14.1 + brightRed: 27 + brightGreen: 30.8 + brightYellow: 31.9 + brightBlue: 19.9 + brightMagenta: 21.5 + brightCyan: 24.4 + brightWhite: 81.5 diff --git a/themes/base16-themes--base16-embers-light.yaml b/themes/base16-themes--base16-embers-light.yaml new file mode 100644 index 00000000..f6828192 --- /dev/null +++ b/themes/base16-themes--base16-embers-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Embers Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#DBD6D1" + fg: "#433B32" + black: "#A39A90" + red: "#826D57" + green: "#57826D" + yellow: "#828257" + blue: "#6D5782" + magenta: "#82576D" + cyan: "#576D82" + white: "#2C2620" + brightBlack: "#8A8075" + brightRed: "#826D57" + brightGreen: "#57826D" + brightYellow: "#6D8257" + brightBlue: "#6D5782" + brightMagenta: "#82576D" + brightCyan: "#576D82" + brightWhite: "#16130F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 71.9 + black: 29.9 + red: 50.5 + green: 46.6 + yellow: 43.6 + blue: 57.8 + magenta: 56.1 + cyan: 53.2 + white: 78.3 + brightBlack: 42.7 + brightRed: 50.5 + brightGreen: 46.6 + brightYellow: 45.6 + brightBlue: 57.8 + brightMagenta: 56.1 + brightCyan: 53.2 + brightWhite: 81.6 diff --git a/themes/base16-themes--base16-flat-dark.yaml b/themes/base16-themes--base16-flat-dark.yaml new file mode 100644 index 00000000..59871686 --- /dev/null +++ b/themes/base16-themes--base16-flat-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Flat Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#2C3E50" + fg: "#E0E0E0" + black: "#7F8C8D" + red: "#E74C3C" + green: "#2ECC71" + yellow: "#E67E22" + blue: "#3498DB" + magenta: "#9B59B6" + cyan: "#1ABC9C" + white: "#F5F5F5" + brightBlack: "#95A5A6" + brightRed: "#E74C3C" + brightGreen: "#2ECC71" + brightYellow: "#F1C40F" + brightBlue: "#3498DB" + brightMagenta: "#9B59B6" + brightCyan: "#1ABC9C" + brightWhite: "#ECF0F1" +meta: + mode: "dark" + accent: "orange" + hue: 249 + pair: null + contrast: + fg: 79.2 + black: 30.7 + red: 28.4 + green: 53 + yellow: 39.1 + blue: 34.8 + magenta: 20.9 + cyan: 46.5 + white: 92.6 + brightBlack: 43.2 + brightRed: 28.4 + brightGreen: 53 + brightYellow: 65.3 + brightBlue: 34.8 + brightMagenta: 20.9 + brightCyan: 46.5 + brightWhite: 88.9 diff --git a/themes/base16-themes--base16-flat-light.yaml b/themes/base16-themes--base16-flat-light.yaml new file mode 100644 index 00000000..150d2d86 --- /dev/null +++ b/themes/base16-themes--base16-flat-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Flat Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#ECF0F1" + fg: "#7F8C8D" + black: "#E0E0E0" + red: "#E74C3C" + green: "#2ECC71" + yellow: "#E67E22" + blue: "#3498DB" + magenta: "#9B59B6" + cyan: "#1ABC9C" + white: "#34495E" + brightBlack: "#BDC3C7" + brightRed: "#E74C3C" + brightGreen: "#2ECC71" + brightYellow: "#F1C40F" + brightBlue: "#3498DB" + brightMagenta: "#9B59B6" + brightCyan: "#1ABC9C" + brightWhite: "#2C3E50" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 53 + black: 0 + red: 55.2 + green: 31.2 + yellow: 44.7 + blue: 48.9 + magenta: 62.7 + cyan: 37.5 + white: 82 + brightBlack: 23.5 + brightRed: 55.2 + brightGreen: 31.2 + brightYellow: 19.5 + brightBlue: 48.9 + brightMagenta: 62.7 + brightCyan: 37.5 + brightWhite: 86 diff --git a/themes/base16-themes--base16-google-dark.yaml b/themes/base16-themes--base16-google-dark.yaml new file mode 100644 index 00000000..f01efdc0 --- /dev/null +++ b/themes/base16-themes--base16-google-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Google Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#1D1F21" + fg: "#C5C8C6" + black: "#373B41" + red: "#CC342B" + green: "#198844" + yellow: "#F96A38" + blue: "#3971ED" + magenta: "#A36AC7" + cyan: "#3971ED" + white: "#E0E0E0" + brightBlack: "#969896" + brightRed: "#CC342B" + brightGreen: "#198844" + brightYellow: "#FBA922" + brightBlue: "#3971ED" + brightMagenta: "#A36AC7" + brightCyan: "#3971ED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 70.9 + black: 0 + red: 25.8 + green: 28.8 + yellow: 44.8 + blue: 29.6 + magenta: 33.9 + cyan: 29.6 + white: 85.9 + brightBlack: 44.4 + brightRed: 25.8 + brightGreen: 28.8 + brightYellow: 63.5 + brightBlue: 29.6 + brightMagenta: 33.9 + brightCyan: 29.6 + brightWhite: 105.9 diff --git a/themes/base16-themes--base16-google-light.yaml b/themes/base16-themes--base16-google-light.yaml new file mode 100644 index 00000000..26d1a6b3 --- /dev/null +++ b/themes/base16-themes--base16-google-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Google Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#373B41" + black: "#C5C8C6" + red: "#CC342B" + green: "#198844" + yellow: "#F96A38" + blue: "#3971ED" + magenta: "#A36AC7" + cyan: "#3971ED" + white: "#282A2E" + brightBlack: "#B4B7B4" + brightRed: "#CC342B" + brightGreen: "#198844" + brightYellow: "#FBA922" + brightBlue: "#3971ED" + brightMagenta: "#A36AC7" + brightCyan: "#3971ED" + brightWhite: "#1D1F21" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 96 + black: 30 + red: 73.9 + green: 70.9 + yellow: 55 + blue: 70.1 + magenta: 65.8 + cyan: 70.1 + white: 101.1 + brightBlack: 39.3 + brightRed: 73.9 + brightGreen: 70.9 + brightYellow: 37 + brightBlue: 70.1 + brightMagenta: 65.8 + brightCyan: 70.1 + brightWhite: 103.5 diff --git a/themes/base16-themes--base16-grayscale-dark.yaml b/themes/base16-themes--base16-grayscale-dark.yaml new file mode 100644 index 00000000..fe601ab1 --- /dev/null +++ b/themes/base16-themes--base16-grayscale-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Grayscale Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#101010" + fg: "#B9B9B9" + black: "#464646" + red: "#7C7C7C" + green: "#8E8E8E" + yellow: "#999999" + blue: "#686868" + magenta: "#747474" + cyan: "#868686" + white: "#E3E3E3" + brightBlack: "#525252" + brightRed: "#7C7C7C" + brightGreen: "#8E8E8E" + brightYellow: "#A0A0A0" + brightBlue: "#686868" + brightMagenta: "#747474" + brightCyan: "#868686" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 64.2 + black: 10.1 + red: 32.4 + green: 41.2 + yellow: 46.8 + blue: 23.5 + magenta: 28.8 + cyan: 37.2 + white: 89.3 + brightBlack: 14.5 + brightRed: 32.4 + brightGreen: 41.2 + brightYellow: 50.4 + brightBlue: 23.5 + brightMagenta: 28.8 + brightCyan: 37.2 + brightWhite: 102.2 diff --git a/themes/base16-themes--base16-grayscale-light.yaml b/themes/base16-themes--base16-grayscale-light.yaml new file mode 100644 index 00000000..447d2f5b --- /dev/null +++ b/themes/base16-themes--base16-grayscale-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Grayscale Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#F7F7F7" + fg: "#464646" + black: "#B9B9B9" + red: "#7C7C7C" + green: "#8E8E8E" + yellow: "#999999" + blue: "#686868" + magenta: "#747474" + cyan: "#868686" + white: "#252525" + brightBlack: "#ABABAB" + brightRed: "#7C7C7C" + brightGreen: "#8E8E8E" + brightYellow: "#A0A0A0" + brightBlue: "#686868" + brightMagenta: "#747474" + brightCyan: "#868686" + brightWhite: "#101010" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 87.1 + black: 33 + red: 64 + green: 55.3 + yellow: 49.8 + blue: 73.1 + magenta: 67.7 + cyan: 59.2 + white: 97.5 + brightBlack: 40.5 + brightRed: 64 + brightGreen: 55.3 + brightYellow: 46.3 + brightBlue: 73.1 + brightMagenta: 67.7 + brightCyan: 59.2 + brightWhite: 100.7 diff --git a/themes/base16-themes--base16-green-screen-dark.yaml b/themes/base16-themes--base16-green-screen-dark.yaml new file mode 100644 index 00000000..283739a5 --- /dev/null +++ b/themes/base16-themes--base16-green-screen-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Green Screen Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#001100" + fg: "#00BB00" + black: "#005500" + red: "#007700" + green: "#00BB00" + yellow: "#009900" + blue: "#009900" + magenta: "#00BB00" + cyan: "#005500" + white: "#00DD00" + brightBlack: "#007700" + brightRed: "#007700" + brightGreen: "#00BB00" + brightYellow: "#007700" + brightBlue: "#009900" + brightMagenta: "#00BB00" + brightCyan: "#005500" + brightWhite: "#00FF00" +meta: + mode: "dark" + accent: "green" + hue: 142 + pair: null + contrast: + fg: 51.9 + black: 11.6 + red: 23.3 + green: 51.9 + yellow: 36.8 + blue: 36.8 + magenta: 51.9 + cyan: 11.6 + white: 68.4 + brightBlack: 23.3 + brightRed: 23.3 + brightGreen: 51.9 + brightYellow: 23.3 + brightBlue: 36.8 + brightMagenta: 51.9 + brightCyan: 11.6 + brightWhite: 86.1 diff --git a/themes/base16-themes--base16-green-screen-light.yaml b/themes/base16-themes--base16-green-screen-light.yaml new file mode 100644 index 00000000..dddc90b5 --- /dev/null +++ b/themes/base16-themes--base16-green-screen-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Green Screen Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#00FF00" + fg: "#005500" + black: "#00BB00" + red: "#007700" + green: "#00BB00" + yellow: "#009900" + blue: "#009900" + magenta: "#00BB00" + cyan: "#005500" + white: "#003300" + brightBlack: "#009900" + brightRed: "#007700" + brightGreen: "#00BB00" + brightYellow: "#007700" + brightBlue: "#009900" + brightMagenta: "#00BB00" + brightCyan: "#005500" + brightWhite: "#001100" +meta: + mode: "light" + accent: "green" + hue: 142 + pair: null + contrast: + fg: 70.8 + black: 30.2 + red: 58.6 + green: 30.2 + yellow: 45 + blue: 45 + magenta: 30.2 + cyan: 70.8 + white: 81 + brightBlack: 45 + brightRed: 58.6 + brightGreen: 30.2 + brightYellow: 58.6 + brightBlue: 45 + brightMagenta: 30.2 + brightCyan: 70.8 + brightWhite: 86 diff --git a/themes/base16-themes--base16-harmonic16-dark.yaml b/themes/base16-themes--base16-harmonic16-dark.yaml new file mode 100644 index 00000000..e2a54fd0 --- /dev/null +++ b/themes/base16-themes--base16-harmonic16-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Harmonic16 Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#0B1C2C" + fg: "#CBD6E2" + black: "#405C79" + red: "#BF8B56" + green: "#56BF8B" + yellow: "#BFBF56" + blue: "#8B56BF" + magenta: "#BF568B" + cyan: "#568BBF" + white: "#E5EBF1" + brightBlack: "#627E99" + brightRed: "#BF8B56" + brightGreen: "#56BF8B" + brightYellow: "#8BBF56" + brightBlue: "#8B56BF" + brightMagenta: "#BF568B" + brightCyan: "#568BBF" + brightWhite: "#F7F9FB" +meta: + mode: "dark" + accent: "magenta" + hue: 249 + pair: null + contrast: + fg: 79.4 + black: 16.5 + red: 44 + green: 56 + yellow: 63.7 + blue: 25.8 + magenta: 31.2 + cyan: 36.8 + white: 92.8 + brightBlack: 31 + brightRed: 44 + brightGreen: 56 + brightYellow: 58.2 + brightBlue: 25.8 + brightMagenta: 31.2 + brightCyan: 36.8 + brightWhite: 102.2 diff --git a/themes/base16-themes--base16-harmonic16-light.yaml b/themes/base16-themes--base16-harmonic16-light.yaml new file mode 100644 index 00000000..a5262215 --- /dev/null +++ b/themes/base16-themes--base16-harmonic16-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Harmonic16 Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#F7F9FB" + fg: "#405C79" + black: "#CBD6E2" + red: "#BF8B56" + green: "#56BF8B" + yellow: "#BFBF56" + blue: "#8B56BF" + magenta: "#BF568B" + cyan: "#568BBF" + white: "#223B54" + brightBlack: "#AABCCE" + brightRed: "#BF8B56" + brightGreen: "#56BF8B" + brightYellow: "#8BBF56" + brightBlue: "#8B56BF" + brightMagenta: "#BF568B" + brightCyan: "#568BBF" + brightWhite: "#0B1C2C" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 80.2 + black: 18.6 + red: 52.6 + green: 40.9 + yellow: 33.5 + blue: 70.6 + magenta: 65.2 + cyan: 59.6 + white: 92.7 + brightBlack: 33.6 + brightRed: 52.6 + brightGreen: 40.9 + brightYellow: 38.7 + brightBlue: 70.6 + brightMagenta: 65.2 + brightCyan: 59.6 + brightWhite: 100.3 diff --git a/themes/base16-themes--base16-isotope-dark.yaml b/themes/base16-themes--base16-isotope-dark.yaml new file mode 100644 index 00000000..f3ed6253 --- /dev/null +++ b/themes/base16-themes--base16-isotope-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Isotope Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#000000" + fg: "#D0D0D0" + black: "#606060" + red: "#FF0000" + green: "#33FF00" + yellow: "#FF9900" + blue: "#0066FF" + magenta: "#CC00FF" + cyan: "#00FFFF" + white: "#E0E0E0" + brightBlack: "#808080" + brightRed: "#FF0000" + brightGreen: "#33FF00" + brightYellow: "#FF0099" + brightBlue: "#0066FF" + brightMagenta: "#CC00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.1 + black: 20.5 + red: 37.5 + green: 86.8 + yellow: 60.7 + blue: 29.3 + magenta: 35.5 + cyan: 92.2 + white: 87.9 + brightBlack: 34.8 + brightRed: 37.5 + brightGreen: 86.8 + brightYellow: 40.2 + brightBlue: 29.3 + brightMagenta: 35.5 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/base16-themes--base16-isotope-light.yaml b/themes/base16-themes--base16-isotope-light.yaml new file mode 100644 index 00000000..21f37241 --- /dev/null +++ b/themes/base16-themes--base16-isotope-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Isotope Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#606060" + black: "#D0D0D0" + red: "#FF0000" + green: "#33FF00" + yellow: "#FF9900" + blue: "#0066FF" + magenta: "#CC00FF" + cyan: "#00FFFF" + white: "#404040" + brightBlack: "#C0C0C0" + brightRed: "#FF0000" + brightGreen: "#33FF00" + brightYellow: "#FF0099" + brightBlue: "#0066FF" + brightMagenta: "#CC00FF" + brightCyan: "#00FFFF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 81.3 + black: 25 + red: 64.1 + green: 16.8 + yellow: 41.5 + blue: 72.4 + magenta: 66.2 + cyan: 11.8 + white: 94.1 + brightBlack: 34 + brightRed: 64.1 + brightGreen: 16.8 + brightYellow: 61.5 + brightBlue: 72.4 + brightMagenta: 66.2 + brightCyan: 11.8 + brightWhite: 106 diff --git a/themes/base16-themes--base16-marrakesh-dark.yaml b/themes/base16-themes--base16-marrakesh-dark.yaml new file mode 100644 index 00000000..9763acc1 --- /dev/null +++ b/themes/base16-themes--base16-marrakesh-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Marrakesh Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#201602" + fg: "#948E48" + black: "#5F5B17" + red: "#C35359" + green: "#18974E" + yellow: "#B36144" + blue: "#477CA1" + magenta: "#8868B3" + cyan: "#75A738" + white: "#CCC37A" + brightBlack: "#6C6823" + brightRed: "#C35359" + brightGreen: "#18974E" + brightYellow: "#A88339" + brightBlue: "#477CA1" + brightMagenta: "#8868B3" + brightCyan: "#75A738" + brightWhite: "#FAF0A5" +meta: + mode: "dark" + accent: "teal" + hue: 84 + pair: null + contrast: + fg: 39.4 + black: 16.7 + red: 30.2 + green: 35.9 + yellow: 30 + blue: 29.4 + magenta: 29.5 + cyan: 46.1 + white: 68.1 + brightBlack: 21.9 + brightRed: 30.2 + brightGreen: 35.9 + brightYellow: 37.9 + brightBlue: 29.4 + brightMagenta: 29.5 + brightCyan: 46.1 + brightWhite: 95.6 diff --git a/themes/base16-themes--base16-marrakesh-light.yaml b/themes/base16-themes--base16-marrakesh-light.yaml new file mode 100644 index 00000000..c8ec55bf --- /dev/null +++ b/themes/base16-themes--base16-marrakesh-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Marrakesh Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#FAF0A5" + fg: "#5F5B17" + black: "#948E48" + red: "#C35359" + green: "#18974E" + yellow: "#B36144" + blue: "#477CA1" + magenta: "#8868B3" + cyan: "#75A738" + white: "#302E00" + brightBlack: "#86813B" + brightRed: "#C35359" + brightGreen: "#18974E" + brightYellow: "#A88339" + brightBlue: "#477CA1" + brightMagenta: "#8868B3" + brightCyan: "#75A738" + brightWhite: "#201602" +meta: + mode: "light" + accent: "teal" + hue: 102 + pair: null + contrast: + fg: 74 + black: 51 + red: 60.2 + green: 54.5 + yellow: 60.4 + blue: 61 + magenta: 60.9 + cyan: 44.4 + white: 90.2 + brightBlack: 57.3 + brightRed: 60.2 + brightGreen: 54.5 + brightYellow: 52.5 + brightBlue: 61 + brightMagenta: 60.9 + brightCyan: 44.4 + brightWhite: 94.4 diff --git a/themes/base16-themes--base16-mocha-dark.yaml b/themes/base16-themes--base16-mocha-dark.yaml new file mode 100644 index 00000000..5afbedfd --- /dev/null +++ b/themes/base16-themes--base16-mocha-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Mocha Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#3B3228" + fg: "#D0C8C6" + black: "#645240" + red: "#CB6077" + green: "#BEB55B" + yellow: "#D28B71" + blue: "#8AB3B5" + magenta: "#A89BB9" + cyan: "#7BBDA4" + white: "#E9E1DD" + brightBlack: "#7E705A" + brightRed: "#CB6077" + brightGreen: "#BEB55B" + brightYellow: "#F4BC87" + brightBlue: "#8AB3B5" + brightMagenta: "#A89BB9" + brightCyan: "#7BBDA4" + brightWhite: "#F5EEEB" +meta: + mode: "dark" + accent: "red" + hue: 70 + pair: null + contrast: + fg: 68.3 + black: 10.2 + red: 30.3 + green: 55 + yellow: 43.1 + blue: 51.1 + magenta: 45 + cyan: 53.5 + white: 83.4 + brightBlack: 22.2 + brightRed: 30.3 + brightGreen: 55 + brightYellow: 66.7 + brightBlue: 51.1 + brightMagenta: 45 + brightCyan: 53.5 + brightWhite: 91.6 diff --git a/themes/base16-themes--base16-mocha-light.yaml b/themes/base16-themes--base16-mocha-light.yaml new file mode 100644 index 00000000..899b94e6 --- /dev/null +++ b/themes/base16-themes--base16-mocha-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Mocha Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#F5EEEB" + fg: "#645240" + black: "#D0C8C6" + red: "#CB6077" + green: "#BEB55B" + yellow: "#D28B71" + blue: "#8AB3B5" + magenta: "#A89BB9" + cyan: "#7BBDA4" + white: "#534636" + brightBlack: "#B8AFAD" + brightRed: "#CB6077" + brightGreen: "#BEB55B" + brightYellow: "#F4BC87" + brightBlue: "#8AB3B5" + brightMagenta: "#A89BB9" + brightCyan: "#7BBDA4" + brightWhite: "#3B3228" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 76.5 + black: 19.3 + red: 56 + green: 32 + yellow: 43.4 + blue: 35.7 + magenta: 41.6 + cyan: 33.3 + white: 81.7 + brightBlack: 32.9 + brightRed: 56 + brightGreen: 32 + brightYellow: 20.8 + brightBlue: 35.7 + brightMagenta: 41.6 + brightCyan: 33.3 + brightWhite: 89.2 diff --git a/themes/base16-themes--base16-monokai-dark.yaml b/themes/base16-themes--base16-monokai-dark.yaml new file mode 100644 index 00000000..7c1a16dc --- /dev/null +++ b/themes/base16-themes--base16-monokai-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Monokai Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#272822" + fg: "#F8F8F2" + black: "#49483E" + red: "#F92672" + green: "#A6E22E" + yellow: "#FD971F" + blue: "#66D9EF" + magenta: "#AE81FF" + cyan: "#A1EFE4" + white: "#F5F4F1" + brightBlack: "#75715E" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#F4BF75" + brightBlue: "#66D9EF" + brightMagenta: "#AE81FF" + brightCyan: "#A1EFE4" + brightWhite: "#F9F8F5" +meta: + mode: "dark" + accent: "red" + hue: 115 + pair: null + contrast: + fg: 99.6 + black: 7.8 + red: 35 + green: 74.7 + yellow: 56.4 + blue: 71.1 + magenta: 44.2 + cyan: 85 + white: 97.3 + brightBlack: 24.3 + brightRed: 35 + brightGreen: 74.7 + brightYellow: 70.1 + brightBlue: 71.1 + brightMagenta: 44.2 + brightCyan: 85 + brightWhite: 99.9 diff --git a/themes/base16-themes--base16-monokai-light.yaml b/themes/base16-themes--base16-monokai-light.yaml new file mode 100644 index 00000000..872bd42d --- /dev/null +++ b/themes/base16-themes--base16-monokai-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Monokai Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#F9F8F5" + fg: "#49483E" + black: "#F8F8F2" + red: "#F92672" + green: "#A6E22E" + yellow: "#FD971F" + blue: "#66D9EF" + magenta: "#AE81FF" + cyan: "#A1EFE4" + white: "#383830" + brightBlack: "#A59F85" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#F4BF75" + brightBlue: "#66D9EF" + brightMagenta: "#AE81FF" + brightCyan: "#A1EFE4" + brightWhite: "#272822" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 87.1 + black: 0 + red: 59.2 + green: 20.9 + yellow: 38.3 + blue: 24.3 + magenta: 50.1 + cyan: 11.3 + white: 93 + brightBlack: 47.6 + brightRed: 59.2 + brightGreen: 20.9 + brightYellow: 25.2 + brightBlue: 24.3 + brightMagenta: 50.1 + brightCyan: 11.3 + brightWhite: 97.5 diff --git a/themes/base16-themes--base16-ocean-dark.yaml b/themes/base16-themes--base16-ocean-dark.yaml new file mode 100644 index 00000000..689e8c48 --- /dev/null +++ b/themes/base16-themes--base16-ocean-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Ocean Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#2B303B" + fg: "#C0C5CE" + black: "#4F5B66" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#D08770" + blue: "#8FA1B3" + magenta: "#B48EAD" + cyan: "#96B5B4" + white: "#DFE1E8" + brightBlack: "#65737E" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#8FA1B3" + brightMagenta: "#B48EAD" + brightCyan: "#96B5B4" + brightWhite: "#EFF1F5" +meta: + mode: "dark" + accent: "orange" + hue: 266 + pair: null + contrast: + fg: 66.2 + black: 12.8 + red: 28.9 + green: 57.6 + yellow: 42.4 + blue: 45.1 + magenta: 42.4 + cyan: 53.9 + white: 83.5 + brightBlack: 22.8 + brightRed: 28.9 + brightGreen: 57.6 + brightYellow: 72.3 + brightBlue: 45.1 + brightMagenta: 42.4 + brightCyan: 53.9 + brightWhite: 93.5 diff --git a/themes/base16-themes--base16-ocean-light.yaml b/themes/base16-themes--base16-ocean-light.yaml new file mode 100644 index 00000000..5584ce82 --- /dev/null +++ b/themes/base16-themes--base16-ocean-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Ocean Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#EFF1F5" + fg: "#4F5B66" + black: "#C0C5CE" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#D08770" + blue: "#8FA1B3" + magenta: "#B48EAD" + cyan: "#96B5B4" + white: "#343D46" + brightBlack: "#A7ADBA" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#8FA1B3" + brightMagenta: "#B48EAD" + brightCyan: "#96B5B4" + brightWhite: "#2B303B" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 75.7 + black: 23 + red: 59.3 + green: 31.2 + yellow: 46 + blue: 43.2 + magenta: 45.9 + cyan: 34.8 + white: 87.1 + brightBlack: 36 + brightRed: 59.3 + brightGreen: 31.2 + brightYellow: 17.3 + brightBlue: 43.2 + brightMagenta: 45.9 + brightCyan: 34.8 + brightWhite: 91.2 diff --git a/themes/base16-themes--base16-oceanicnext-dark.yaml b/themes/base16-themes--base16-oceanicnext-dark.yaml new file mode 100644 index 00000000..c43f3cca --- /dev/null +++ b/themes/base16-themes--base16-oceanicnext-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 OceanicNext Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#1B2B34" + fg: "#C0C5CE" + black: "#4F5B66" + red: "#EC5F67" + green: "#99C794" + yellow: "#F99157" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#CDD3DE" + brightBlack: "#65737E" + brightRed: "#EC5F67" + brightGreen: "#99C794" + brightYellow: "#FAC863" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D8DEE9" +meta: + mode: "dark" + accent: "orange" + hue: 234 + pair: null + contrast: + fg: 67.6 + black: 14.2 + red: 38.7 + green: 62.2 + yellow: 53.9 + blue: 41.5 + magenta: 49.4 + cyan: 50.4 + white: 76 + brightBlack: 24.2 + brightRed: 38.7 + brightGreen: 62.2 + brightYellow: 74.1 + brightBlue: 41.5 + brightMagenta: 49.4 + brightCyan: 50.4 + brightWhite: 82.7 diff --git a/themes/base16-themes--base16-oceanicnext-light.yaml b/themes/base16-themes--base16-oceanicnext-light.yaml new file mode 100644 index 00000000..387145e4 --- /dev/null +++ b/themes/base16-themes--base16-oceanicnext-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 OceanicNext Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#D8DEE9" + fg: "#4F5B66" + black: "#C0C5CE" + red: "#EC5F67" + green: "#99C794" + yellow: "#F99157" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#343D46" + brightBlack: "#A7ADBA" + brightRed: "#EC5F67" + brightGreen: "#99C794" + brightYellow: "#FAC863" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#1B2B34" +meta: + mode: "light" + accent: "orange" + hue: 263 + pair: null + contrast: + fg: 64.5 + black: 11.8 + red: 39.8 + green: 17 + yellow: 24.9 + blue: 37 + magenta: 29.3 + cyan: 28.3 + white: 75.9 + brightBlack: 24.8 + brightRed: 39.8 + brightGreen: 17 + brightYellow: 0 + brightBlue: 37 + brightMagenta: 29.3 + brightCyan: 28.3 + brightWhite: 81.7 diff --git a/themes/base16-themes--base16-paraiso-dark.yaml b/themes/base16-themes--base16-paraiso-dark.yaml new file mode 100644 index 00000000..2f601876 --- /dev/null +++ b/themes/base16-themes--base16-paraiso-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Paraiso Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#2F1E2E" + fg: "#A39E9B" + black: "#4F424C" + red: "#EF6155" + green: "#48B685" + yellow: "#F99B15" + blue: "#06B6EF" + magenta: "#815BA4" + cyan: "#5BC4BF" + white: "#B9B6B0" + brightBlack: "#776E71" + brightRed: "#EF6155" + brightGreen: "#48B685" + brightYellow: "#FEC418" + brightBlue: "#06B6EF" + brightMagenta: "#815BA4" + brightCyan: "#5BC4BF" + brightWhite: "#E7E9DB" +meta: + mode: "dark" + accent: "orange" + hue: 329 + pair: null + contrast: + fg: 47.5 + black: 7.7 + red: 40.3 + green: 49.9 + yellow: 57.5 + blue: 53.7 + magenta: 22.8 + cyan: 59.1 + white: 60.3 + brightBlack: 24.8 + brightRed: 40.3 + brightGreen: 49.9 + brightYellow: 73.4 + brightBlue: 53.7 + brightMagenta: 22.8 + brightCyan: 59.1 + brightWhite: 89.9 diff --git a/themes/base16-themes--base16-paraiso-light.yaml b/themes/base16-themes--base16-paraiso-light.yaml new file mode 100644 index 00000000..7b27abf8 --- /dev/null +++ b/themes/base16-themes--base16-paraiso-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Paraiso Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#E7E9DB" + fg: "#4F424C" + black: "#A39E9B" + red: "#EF6155" + green: "#48B685" + yellow: "#F99B15" + blue: "#06B6EF" + magenta: "#815BA4" + cyan: "#5BC4BF" + white: "#41323F" + brightBlack: "#8D8687" + brightRed: "#EF6155" + brightGreen: "#48B685" + brightYellow: "#FEC418" + brightBlue: "#06B6EF" + brightMagenta: "#815BA4" + brightCyan: "#5BC4BF" + brightWhite: "#2F1E2E" +meta: + mode: "light" + accent: "orange" + hue: 113 + pair: null + contrast: + fg: 78.1 + black: 37.8 + red: 44.9 + green: 35.5 + yellow: 28.2 + blue: 31.8 + magenta: 62.3 + cyan: 26.6 + white: 83.6 + brightBlack: 49.4 + brightRed: 44.9 + brightGreen: 35.5 + brightYellow: 13 + brightBlue: 31.8 + brightMagenta: 62.3 + brightCyan: 26.6 + brightWhite: 88.7 diff --git a/themes/base16-themes--base16-pop-dark.yaml b/themes/base16-themes--base16-pop-dark.yaml new file mode 100644 index 00000000..642aa1bb --- /dev/null +++ b/themes/base16-themes--base16-pop-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Pop Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#000000" + fg: "#D0D0D0" + black: "#303030" + red: "#EB008A" + green: "#37B349" + yellow: "#F29333" + blue: "#0E5A94" + magenta: "#B31E8D" + cyan: "#00AABB" + white: "#E0E0E0" + brightBlack: "#505050" + brightRed: "#EB008A" + brightGreen: "#37B349" + brightYellow: "#F8CA12" + brightBlue: "#0E5A94" + brightMagenta: "#B31E8D" + brightCyan: "#00AABB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 78.1 + black: 0 + red: 34.8 + green: 49.6 + yellow: 56.4 + blue: 17.4 + magenta: 23.3 + cyan: 48.4 + white: 87.9 + brightBlack: 14.2 + brightRed: 34.8 + brightGreen: 49.6 + brightYellow: 77.6 + brightBlue: 17.4 + brightMagenta: 23.3 + brightCyan: 48.4 + brightWhite: 107.9 diff --git a/themes/base16-themes--base16-pop-light.yaml b/themes/base16-themes--base16-pop-light.yaml new file mode 100644 index 00000000..153bc32a --- /dev/null +++ b/themes/base16-themes--base16-pop-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Pop Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#303030" + black: "#D0D0D0" + red: "#EB008A" + green: "#37B349" + yellow: "#F29333" + blue: "#0E5A94" + magenta: "#B31E8D" + cyan: "#00AABB" + white: "#202020" + brightBlack: "#B0B0B0" + brightRed: "#EB008A" + brightGreen: "#37B349" + brightYellow: "#F8CA12" + brightBlue: "#0E5A94" + brightMagenta: "#B31E8D" + brightCyan: "#00AABB" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 99.6 + black: 25 + red: 66.9 + green: 52.3 + yellow: 45.7 + blue: 84.6 + magenta: 78.5 + cyan: 53.4 + white: 103.3 + brightBlack: 42.7 + brightRed: 66.9 + brightGreen: 52.3 + brightYellow: 25.5 + brightBlue: 84.6 + brightMagenta: 78.5 + brightCyan: 53.4 + brightWhite: 106 diff --git a/themes/base16-themes--base16-railscasts-dark.yaml b/themes/base16-themes--base16-railscasts-dark.yaml new file mode 100644 index 00000000..fd3b85f6 --- /dev/null +++ b/themes/base16-themes--base16-railscasts-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Railscasts Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#2B2B2B" + fg: "#E6E1DC" + black: "#3A4055" + red: "#DA4939" + green: "#A5C261" + yellow: "#CC7833" + blue: "#6D9CBE" + magenta: "#B6B3EB" + cyan: "#519F50" + white: "#F4F1ED" + brightBlack: "#5A647E" + brightRed: "#DA4939" + brightGreen: "#A5C261" + brightYellow: "#FFC66D" + brightBlue: "#6D9CBE" + brightMagenta: "#B6B3EB" + brightCyan: "#519F50" + brightWhite: "#F9F7F3" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 84.9 + black: 0 + red: 29.7 + green: 59.6 + yellow: 37.3 + blue: 42 + magenta: 60.3 + cyan: 37.9 + white: 94.9 + brightBlack: 18.3 + brightRed: 29.7 + brightGreen: 59.6 + brightYellow: 73.9 + brightBlue: 42 + brightMagenta: 60.3 + brightCyan: 37.9 + brightWhite: 98.7 diff --git a/themes/base16-themes--base16-railscasts-light.yaml b/themes/base16-themes--base16-railscasts-light.yaml new file mode 100644 index 00000000..779b0bf9 --- /dev/null +++ b/themes/base16-themes--base16-railscasts-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Railscasts Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#F9F7F3" + fg: "#3A4055" + black: "#E6E1DC" + red: "#DA4939" + green: "#A5C261" + yellow: "#CC7833" + blue: "#6D9CBE" + magenta: "#B6B3EB" + cyan: "#519F50" + white: "#272935" + brightBlack: "#D4CFC9" + brightRed: "#DA4939" + brightGreen: "#A5C261" + brightYellow: "#FFC66D" + brightBlue: "#6D9CBE" + brightMagenta: "#B6B3EB" + brightCyan: "#519F50" + brightWhite: "#2B2B2B" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.2 + black: 10.1 + red: 63.2 + green: 34 + yellow: 55.7 + blue: 51.1 + magenta: 33.4 + cyan: 55.1 + white: 96.5 + brightBlack: 20.5 + brightRed: 63.2 + brightGreen: 34 + brightYellow: 20.5 + brightBlue: 51.1 + brightMagenta: 33.4 + brightCyan: 55.1 + brightWhite: 96.2 diff --git a/themes/base16-themes--base16-shapeshifter-dark.yaml b/themes/base16-themes--base16-shapeshifter-dark.yaml new file mode 100644 index 00000000..14b98531 --- /dev/null +++ b/themes/base16-themes--base16-shapeshifter-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Shapeshifter Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#000000" + fg: "#ABABAB" + black: "#102015" + red: "#E92F2F" + green: "#0ED839" + yellow: "#E09448" + blue: "#3B48E3" + magenta: "#F996E2" + cyan: "#23EDDA" + white: "#E0E0E0" + brightBlack: "#343434" + brightRed: "#E92F2F" + brightGreen: "#0ED839" + brightYellow: "#DDDD13" + brightBlue: "#3B48E3" + brightMagenta: "#F996E2" + brightCyan: "#23EDDA" + brightWhite: "#F9F9F9" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 56.8 + black: 0 + red: 33.9 + green: 66.4 + yellow: 53.7 + blue: 20.4 + magenta: 63.8 + cyan: 81.3 + white: 87.9 + brightBlack: 0 + brightRed: 33.9 + brightGreen: 66.4 + brightYellow: 81.9 + brightBlue: 20.4 + brightMagenta: 63.8 + brightCyan: 81.3 + brightWhite: 103.9 diff --git a/themes/base16-themes--base16-shapeshifter-light.yaml b/themes/base16-themes--base16-shapeshifter-light.yaml new file mode 100644 index 00000000..980e0f01 --- /dev/null +++ b/themes/base16-themes--base16-shapeshifter-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Shapeshifter Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#F9F9F9" + fg: "#102015" + black: "#ABABAB" + red: "#E92F2F" + green: "#0ED839" + yellow: "#E09448" + blue: "#3B48E3" + magenta: "#F996E2" + cyan: "#23EDDA" + white: "#040404" + brightBlack: "#555555" + brightRed: "#E92F2F" + brightGreen: "#0ED839" + brightYellow: "#DDDD13" + brightBlue: "#3B48E3" + brightMagenta: "#F996E2" + brightCyan: "#23EDDA" + brightWhite: "#000000" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 100.2 + black: 41.7 + red: 64.2 + green: 32.5 + yellow: 44.7 + blue: 77.9 + magenta: 34.9 + cyan: 18.4 + white: 102.4 + brightBlack: 82.3 + brightRed: 64.2 + brightGreen: 32.5 + brightYellow: 17.9 + brightBlue: 77.9 + brightMagenta: 34.9 + brightCyan: 18.4 + brightWhite: 102.5 diff --git a/themes/base16-themes--base16-solarized-dark.yaml b/themes/base16-themes--base16-solarized-dark.yaml new file mode 100644 index 00000000..166ac9db --- /dev/null +++ b/themes/base16-themes--base16-solarized-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Solarized Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#002B36" + fg: "#93A1A1" + black: "#586E75" + red: "#DC322F" + green: "#859900" + yellow: "#CB4B16" + blue: "#268BD2" + magenta: "#6C71C4" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#657B83" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#6C71C4" + brightCyan: "#2AA198" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 220 + pair: null + contrast: + fg: 46.4 + black: 21.5 + red: 27.7 + green: 39.2 + yellow: 27.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 89.5 + brightBlack: 27.3 + brightRed: 27.7 + brightGreen: 39.2 + brightYellow: 39.2 + brightBlue: 34.3 + brightMagenta: 28 + brightCyan: 40 + brightWhite: 98.6 diff --git a/themes/base16-themes--base16-solarized-light.yaml b/themes/base16-themes--base16-solarized-light.yaml new file mode 100644 index 00000000..a0bae633 --- /dev/null +++ b/themes/base16-themes--base16-solarized-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Solarized Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#FDF6E3" + fg: "#586E75" + black: "#93A1A1" + red: "#DC322F" + green: "#859900" + yellow: "#CB4B16" + blue: "#268BD2" + magenta: "#6C71C4" + cyan: "#2AA198" + white: "#073642" + brightBlack: "#839496" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#6C71C4" + brightCyan: "#2AA198" + brightWhite: "#002B36" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 71.6 + black: 46.7 + red: 65.3 + green: 53.8 + yellow: 65.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 93.7 + brightBlack: 53.5 + brightRed: 65.3 + brightGreen: 53.8 + brightYellow: 53.8 + brightBlue: 58.7 + brightMagenta: 65 + brightCyan: 53.1 + brightWhite: 96.4 diff --git a/themes/base16-themes--base16-summerfruit-dark.yaml b/themes/base16-themes--base16-summerfruit-dark.yaml new file mode 100644 index 00000000..93ac78af --- /dev/null +++ b/themes/base16-themes--base16-summerfruit-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Summerfruit Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#151515" + fg: "#D0D0D0" + black: "#303030" + red: "#FF0086" + green: "#00C918" + yellow: "#FD8900" + blue: "#3777E6" + magenta: "#AD00A1" + cyan: "#1FAAAA" + white: "#E0E0E0" + brightBlack: "#505050" + brightRed: "#FF0086" + brightGreen: "#00C918" + brightYellow: "#ABA800" + brightBlue: "#3777E6" + brightMagenta: "#AD00A1" + brightCyan: "#1FAAAA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 77.2 + black: 0 + red: 38.7 + green: 58.1 + yellow: 54.6 + blue: 32 + magenta: 21.7 + cyan: 47 + white: 87.1 + brightBlack: 13.4 + brightRed: 38.7 + brightGreen: 58.1 + brightYellow: 51.9 + brightBlue: 32 + brightMagenta: 21.7 + brightCyan: 47 + brightWhite: 107.1 diff --git a/themes/base16-themes--base16-summerfruit-light.yaml b/themes/base16-themes--base16-summerfruit-light.yaml new file mode 100644 index 00000000..2275ed83 --- /dev/null +++ b/themes/base16-themes--base16-summerfruit-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Summerfruit Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#101010" + black: "#D0D0D0" + red: "#FF0086" + green: "#00C918" + yellow: "#FD8900" + blue: "#3777E6" + magenta: "#AD00A1" + cyan: "#1FAAAA" + white: "#151515" + brightBlack: "#B0B0B0" + brightRed: "#FF0086" + brightGreen: "#00C918" + brightYellow: "#ABA800" + brightBlue: "#3777E6" + brightMagenta: "#AD00A1" + brightCyan: "#1FAAAA" + brightWhite: "#202020" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 105.5 + black: 25 + red: 62.2 + green: 43.3 + yellow: 46.6 + blue: 68.9 + magenta: 79.3 + cyan: 54 + white: 104.9 + brightBlack: 42.7 + brightRed: 62.2 + brightGreen: 43.3 + brightYellow: 49.2 + brightBlue: 68.9 + brightMagenta: 79.3 + brightCyan: 54 + brightWhite: 103.3 diff --git a/themes/base16-themes--base16-tomorrow-dark.yaml b/themes/base16-themes--base16-tomorrow-dark.yaml new file mode 100644 index 00000000..01a74bff --- /dev/null +++ b/themes/base16-themes--base16-tomorrow-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Tomorrow Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#1D1F21" + fg: "#D6D6D6" + black: "#4D4D4C" + red: "#C82829" + green: "#718C00" + yellow: "#F5871F" + blue: "#4271AE" + magenta: "#8959A8" + cyan: "#3E999F" + white: "#E0E0E0" + brightBlack: "#969896" + brightRed: "#C82829" + brightGreen: "#718C00" + brightYellow: "#EAB700" + brightBlue: "#4271AE" + brightMagenta: "#8959A8" + brightCyan: "#3E999F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.8 + black: 11.1 + red: 23.8 + green: 33.9 + yellow: 51.3 + blue: 25.4 + magenta: 24.4 + cyan: 39 + white: 85.9 + brightBlack: 44.4 + brightRed: 23.8 + brightGreen: 33.9 + brightYellow: 65.7 + brightBlue: 25.4 + brightMagenta: 24.4 + brightCyan: 39 + brightWhite: 105.9 diff --git a/themes/base16-themes--base16-tomorrow-light.yaml b/themes/base16-themes--base16-tomorrow-light.yaml new file mode 100644 index 00000000..5e29e6dd --- /dev/null +++ b/themes/base16-themes--base16-tomorrow-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Tomorrow Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#4D4D4C" + black: "#D6D6D6" + red: "#C82829" + green: "#718C00" + yellow: "#F5871F" + blue: "#4271AE" + magenta: "#8959A8" + cyan: "#3E999F" + white: "#282A2E" + brightBlack: "#8E908C" + brightRed: "#C82829" + brightGreen: "#718C00" + brightYellow: "#EAB700" + brightBlue: "#4271AE" + brightMagenta: "#8959A8" + brightCyan: "#3E999F" + brightWhite: "#1D1F21" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.2 + black: 21.6 + red: 76 + green: 65.8 + yellow: 48.7 + blue: 74.3 + magenta: 75.4 + cyan: 60.7 + white: 101.1 + brightBlack: 59.5 + brightRed: 76 + brightGreen: 65.8 + brightYellow: 34.9 + brightBlue: 74.3 + brightMagenta: 75.4 + brightCyan: 60.7 + brightWhite: 103.5 diff --git a/themes/base16-themes--base16-twilight-dark.yaml b/themes/base16-themes--base16-twilight-dark.yaml new file mode 100644 index 00000000..499a3ed1 --- /dev/null +++ b/themes/base16-themes--base16-twilight-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Twilight Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#1E1E1E" + fg: "#A7A7A7" + black: "#464B50" + red: "#CF6A4C" + green: "#8F9D6A" + yellow: "#CDA869" + blue: "#7587A6" + magenta: "#9B859D" + cyan: "#AFC4DB" + white: "#C3C3C3" + brightBlack: "#5F5A60" + brightRed: "#CF6A4C" + brightGreen: "#8F9D6A" + brightYellow: "#F9EE98" + brightBlue: "#7587A6" + brightMagenta: "#9B859D" + brightCyan: "#AFC4DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 52.8 + black: 10.3 + red: 36.6 + green: 44.4 + yellow: 56.4 + blue: 35.9 + magenta: 38.7 + cyan: 67.7 + white: 68.5 + brightBlack: 16.9 + brightRed: 36.6 + brightGreen: 44.4 + brightYellow: 93.4 + brightBlue: 35.9 + brightMagenta: 38.7 + brightCyan: 67.7 + brightWhite: 106 diff --git a/themes/base16-themes--base16-twilight-light.yaml b/themes/base16-themes--base16-twilight-light.yaml new file mode 100644 index 00000000..c617e1af --- /dev/null +++ b/themes/base16-themes--base16-twilight-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Twilight Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#464B50" + black: "#A7A7A7" + red: "#CF6A4C" + green: "#8F9D6A" + yellow: "#CDA869" + blue: "#7587A6" + magenta: "#9B859D" + cyan: "#AFC4DB" + white: "#323537" + brightBlack: "#838184" + brightRed: "#CF6A4C" + brightGreen: "#8F9D6A" + brightYellow: "#F9EE98" + brightBlue: "#7587A6" + brightMagenta: "#9B859D" + brightCyan: "#AFC4DB" + brightWhite: "#1E1E1E" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 90.2 + black: 47.4 + red: 63.2 + green: 55.5 + yellow: 43.9 + blue: 64 + magenta: 61.1 + cyan: 33.1 + white: 98.2 + brightBlack: 66.1 + brightRed: 63.2 + brightGreen: 55.5 + brightYellow: 8.9 + brightBlue: 64 + brightMagenta: 61.1 + brightCyan: 33.1 + brightWhite: 103.6 diff --git a/themes/base16-themes--base16-unikitty-dark.yaml b/themes/base16-themes--base16-unikitty-dark.yaml new file mode 100644 index 00000000..f745c1c7 --- /dev/null +++ b/themes/base16-themes--base16-unikitty-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Unikitty Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#2E2A31" + fg: "#BCBABE" + black: "#666369" + red: "#D8137F" + green: "#17AD98" + yellow: "#D65407" + blue: "#796AF5" + magenta: "#BB60EA" + cyan: "#149BDA" + white: "#D8D7DA" + brightBlack: "#838085" + brightRed: "#D8137F" + brightGreen: "#17AD98" + brightYellow: "#DC8A0E" + brightBlue: "#796AF5" + brightMagenta: "#BB60EA" + brightCyan: "#149BDA" + brightWhite: "#F5F4F7" +meta: + mode: "dark" + accent: "red" + hue: 311 + pair: null + contrast: + fg: 61.5 + black: 18.1 + red: 26 + green: 44.2 + yellow: 30.4 + blue: 30.2 + magenta: 35.4 + cyan: 40 + white: 78.5 + brightBlack: 31.1 + brightRed: 26 + brightGreen: 44.2 + brightYellow: 45.3 + brightBlue: 30.2 + brightMagenta: 35.4 + brightCyan: 40 + brightWhite: 96.8 diff --git a/themes/base16-themes--base16-unikitty-light.yaml b/themes/base16-themes--base16-unikitty-light.yaml new file mode 100644 index 00000000..103eb89a --- /dev/null +++ b/themes/base16-themes--base16-unikitty-light.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Unikitty Light)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#6C696E" + black: "#C4C3C5" + red: "#D8137F" + green: "#17AD98" + yellow: "#D65407" + blue: "#775DFF" + magenta: "#AA17E6" + cyan: "#149BDA" + white: "#4F4B51" + brightBlack: "#A7A5A8" + brightRed: "#D8137F" + brightGreen: "#17AD98" + brightYellow: "#DC8A0E" + brightBlue: "#775DFF" + brightMagenta: "#AA17E6" + brightCyan: "#149BDA" + brightWhite: "#322D34" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 77 + black: 32.1 + red: 71.5 + green: 53.5 + yellow: 67.1 + blue: 69.8 + magenta: 74.3 + cyan: 57.6 + white: 89.4 + brightBlack: 48.1 + brightRed: 71.5 + brightGreen: 53.5 + brightYellow: 52.5 + brightBlue: 69.8 + brightMagenta: 74.3 + brightCyan: 57.6 + brightWhite: 99.9 diff --git a/themes/base16-themes--base16-woodland-dark.yaml b/themes/base16-themes--base16-woodland-dark.yaml new file mode 100644 index 00000000..bf3a98ef --- /dev/null +++ b/themes/base16-themes--base16-woodland-dark.yaml @@ -0,0 +1,53 @@ +name: "Base16 Themes (Base16 Woodland Dark)" +source: + marketplace_id: "AndrsDC.base16-themes" + version: "1.4.5" + installs: 159132 + rating: 4.29 + ratings: 7 + author: "AndrsDC" + repo: "https://github.com/AndrsDC/base16-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes" + formats: null +colors: + bg: "#231E18" + fg: "#CABCB1" + black: "#48413A" + red: "#D35C5C" + green: "#B7BA53" + yellow: "#CA7F32" + blue: "#88A4D3" + magenta: "#BB90E2" + cyan: "#6EB958" + white: "#D7C8BC" + brightBlack: "#9D8B70" + brightRed: "#D35C5C" + brightGreen: "#B7BA53" + brightYellow: "#E0AC16" + brightBlue: "#88A4D3" + brightMagenta: "#BB90E2" + brightCyan: "#6EB958" + brightWhite: "#E4D4C8" +meta: + mode: "dark" + accent: "yellow" + hue: 72 + pair: null + contrast: + fg: 65.7 + black: 0 + red: 34.4 + green: 60.1 + yellow: 41.1 + blue: 50.4 + magenta: 50 + cyan: 53 + white: 72.8 + brightBlack: 39.4 + brightRed: 34.4 + brightGreen: 60.1 + brightYellow: 59.9 + brightBlue: 50.4 + brightMagenta: 50 + brightCyan: 53 + brightWhite: 80.2 diff --git a/themes/basictheme.yaml b/themes/basictheme.yaml new file mode 100644 index 00000000..f7f0291e --- /dev/null +++ b/themes/basictheme.yaml @@ -0,0 +1,53 @@ +name: "BasicTheme" +source: + marketplace_id: "BasicTheme.basictheme" + version: "0.0.1" + installs: 19 + rating: 0 + ratings: 0 + author: "BasicTheme" + repo: "https://github.com/joaov-fer/basictheme" + url: "https://marketplace.visualstudio.com/items?itemName=BasicTheme.basictheme" + formats: null +colors: + bg: "#2C2525" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 18 + pair: null + contrast: + fg: 77.3 + black: 0 + red: 24.5 + green: 50.8 + yellow: 83.4 + blue: 25.2 + magenta: 27.6 + cyan: 45.4 + white: 87.8 + brightBlack: 19.8 + brightRed: 36.4 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.8 + brightMagenta: 43.2 + brightCyan: 53.2 + brightWhite: 87.8 diff --git a/themes/batsignal.yaml b/themes/batsignal.yaml new file mode 100644 index 00000000..c562d2cf --- /dev/null +++ b/themes/batsignal.yaml @@ -0,0 +1,53 @@ +name: "Batsignal" +source: + marketplace_id: "tamagui.batsignal" + version: "0.0.9" + installs: 2046 + rating: 0 + ratings: 0 + author: "tamagui" + repo: "https://github.com/natew/batsignal" + url: "https://marketplace.visualstudio.com/items?itemName=tamagui.batsignal" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#FF0032" + green: "#00FF68" + yellow: "#FFCA00" + blue: "#5A5A5A" + magenta: "#7D46FC" + cyan: "#00D2FF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0032" + brightGreen: "#00FF68" + brightYellow: "#FFCA00" + brightBlue: "#7A7A7A" + brightMagenta: "#7D46FC" + brightCyan: "#00D2FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 63.9 + green: 16.5 + yellow: 24.4 + blue: 83.9 + magenta: 74 + cyan: 32.7 + white: 0 + brightBlack: 106 + brightRed: 63.9 + brightGreen: 16.5 + brightYellow: 24.4 + brightBlue: 69.7 + brightMagenta: 74 + brightCyan: 32.7 + brightWhite: 0 diff --git a/themes/beach-house.yaml b/themes/beach-house.yaml new file mode 100644 index 00000000..bf7c03c3 --- /dev/null +++ b/themes/beach-house.yaml @@ -0,0 +1,53 @@ +name: "Beach House" +source: + marketplace_id: "melyssanimeth.beachouse" + version: "0.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "melyssanimeth" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=melyssanimeth.beachouse" + formats: null +colors: + bg: "#C6C6C6" + fg: "#828177" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 33.8 + black: 73.2 + red: 41.1 + green: 16.4 + yellow: 25.1 + blue: 53.2 + magenta: 41.7 + cyan: 27.7 + white: 53.1 + brightBlack: 45.9 + brightRed: 41.1 + brightGreen: 8.1 + brightYellow: 8.1 + brightBlue: 53.2 + brightMagenta: 41.7 + brightCyan: 27.7 + brightWhite: 15.6 diff --git a/themes/bear-theme.yaml b/themes/bear-theme.yaml new file mode 100644 index 00000000..c45f2e5b --- /dev/null +++ b/themes/bear-theme.yaml @@ -0,0 +1,53 @@ +name: "Bear Theme" +source: + marketplace_id: "dahong.theme-bear" + version: "2.1.0" + installs: 216266 + rating: 5 + ratings: 18 + author: "dahong" + repo: "https://github.com/shaodahong/theme-bear" + url: "https://marketplace.visualstudio.com/items?itemName=dahong.theme-bear" + formats: null +colors: + bg: "#1F2023" + fg: "#BCB28D" + black: "#2C5A65" + red: "#E03C8A" + green: "#24936E" + yellow: "#E6844F" + blue: "#58B2DC" + magenta: "#E03C8A" + cyan: "#69B0AC" + white: "#EEE8D5" + brightBlack: "#666666" + brightRed: "#E6844F" + brightGreen: "#5C8490" + brightYellow: "#657B83" + brightBlue: "#58B2DC" + brightMagenta: "#646695" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 58.5 + black: 13.6 + red: 33.1 + green: 34.1 + yellow: 47.7 + blue: 53.2 + magenta: 33.1 + cyan: 50.9 + white: 90.8 + brightBlack: 20.9 + brightRed: 47.7 + brightGreen: 31.7 + brightYellow: 28.6 + brightBlue: 53.2 + brightMagenta: 22.6 + brightCyan: 47.8 + brightWhite: 100 diff --git a/themes/beautiful-ui--material.yaml b/themes/beautiful-ui--material.yaml new file mode 100644 index 00000000..ec3b62ff --- /dev/null +++ b/themes/beautiful-ui--material.yaml @@ -0,0 +1,54 @@ +name: "Beautiful UI (Material)" +source: + marketplace_id: "swashata.beautiful-ui" + version: "1.7.0" + installs: 121127 + rating: 4.38 + ratings: 13 + author: "swashata" + repo: "https://github.com/swashata/vscode-beautiful-ui" + url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" + formats: + zed: "https://raw.githubusercontent.com/swashata/vscode-beautiful-ui/master/themes/Solarized Dark-color-theme.json" +colors: + bg: "#253137" + fg: "#E6FFFF" + black: "#000000" + red: "#D81E00" + green: "#5EA702" + yellow: "#CFAE00" + blue: "#427AB3" + magenta: "#89658E" + cyan: "#00A7AA" + white: "#DBDED8" + brightBlack: "#686A66" + brightRed: "#F54235" + brightGreen: "#99E343" + brightYellow: "#FDEB61" + brightBlue: "#84B0D8" + brightMagenta: "#BC94B7" + brightCyan: "#37E6E8" + brightWhite: "#F1F1F0" +meta: + mode: "dark" + accent: "orange" + hue: 230 + pair: null + contrast: + fg: 99.6 + black: 0 + red: 23.6 + green: 40.5 + yellow: 55 + blue: 25.7 + magenta: 23.1 + cyan: 41.4 + white: 81 + brightBlack: 19.5 + brightRed: 33.9 + brightGreen: 72.5 + brightYellow: 88.5 + brightBlue: 52.1 + brightMagenta: 46.1 + brightCyan: 73.8 + brightWhite: 93.7 diff --git a/themes/beautiful-ui--nord.yaml b/themes/beautiful-ui--nord.yaml new file mode 100644 index 00000000..43fca1ea --- /dev/null +++ b/themes/beautiful-ui--nord.yaml @@ -0,0 +1,54 @@ +name: "Beautiful UI (Nord)" +source: + marketplace_id: "swashata.beautiful-ui" + version: "1.7.0" + installs: 121127 + rating: 4.38 + ratings: 13 + author: "swashata" + repo: "https://github.com/swashata/vscode-beautiful-ui" + url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" + formats: + zed: "https://raw.githubusercontent.com/swashata/vscode-beautiful-ui/master/themes/Solarized Dark-color-theme.json" +colors: + bg: "#2F3541" + fg: "#D8DEE9" + black: "#000000" + red: "#D81E00" + green: "#5EA702" + yellow: "#CFAE00" + blue: "#427AB3" + magenta: "#89658E" + cyan: "#00A7AA" + white: "#DBDED8" + brightBlack: "#686A66" + brightRed: "#F54235" + brightGreen: "#99E343" + brightYellow: "#FDEB61" + brightBlue: "#84B0D8" + brightMagenta: "#BC94B7" + brightCyan: "#37E6E8" + brightWhite: "#F1F1F0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 80 + black: 0 + red: 22.2 + green: 39.1 + yellow: 53.6 + blue: 24.3 + magenta: 21.7 + cyan: 40 + white: 79.6 + brightBlack: 18.1 + brightRed: 32.5 + brightGreen: 71.1 + brightYellow: 87.1 + brightBlue: 50.7 + brightMagenta: 44.7 + brightCyan: 72.4 + brightWhite: 92.3 diff --git a/themes/beautiful-ui--nova.yaml b/themes/beautiful-ui--nova.yaml new file mode 100644 index 00000000..8c8c9066 --- /dev/null +++ b/themes/beautiful-ui--nova.yaml @@ -0,0 +1,54 @@ +name: "Beautiful UI (Nova)" +source: + marketplace_id: "swashata.beautiful-ui" + version: "1.7.0" + installs: 121127 + rating: 4.38 + ratings: 13 + author: "swashata" + repo: "https://github.com/swashata/vscode-beautiful-ui" + url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" + formats: + zed: "https://raw.githubusercontent.com/swashata/vscode-beautiful-ui/master/themes/Solarized Dark-color-theme.json" +colors: + bg: "#3B4B54" + fg: "#C5D4DD" + black: "#000000" + red: "#D81E00" + green: "#5EA702" + yellow: "#CFAE00" + blue: "#427AB3" + magenta: "#89658E" + cyan: "#00A7AA" + white: "#DBDED8" + brightBlack: "#686A66" + brightRed: "#F54235" + brightGreen: "#99E343" + brightYellow: "#FDEB61" + brightBlue: "#84B0D8" + brightMagenta: "#BC94B7" + brightCyan: "#37E6E8" + brightWhite: "#F1F1F0" +meta: + mode: "dark" + accent: "orange" + hue: 233 + pair: null + contrast: + fg: 66.4 + black: 13.2 + red: 15.9 + green: 32.8 + yellow: 47.2 + blue: 17.9 + magenta: 15.3 + cyan: 33.7 + white: 73.3 + brightBlack: 11.8 + brightRed: 26.1 + brightGreen: 64.8 + brightYellow: 80.7 + brightBlue: 44.4 + brightMagenta: 38.4 + brightCyan: 66 + brightWhite: 86 diff --git a/themes/beautiful-ui--zenburn.yaml b/themes/beautiful-ui--zenburn.yaml new file mode 100644 index 00000000..fa781397 --- /dev/null +++ b/themes/beautiful-ui--zenburn.yaml @@ -0,0 +1,54 @@ +name: "Beautiful UI (Zenburn)" +source: + marketplace_id: "swashata.beautiful-ui" + version: "1.7.0" + installs: 121127 + rating: 4.38 + ratings: 13 + author: "swashata" + repo: "https://github.com/swashata/vscode-beautiful-ui" + url: "https://marketplace.visualstudio.com/items?itemName=swashata.beautiful-ui" + formats: + zed: "https://raw.githubusercontent.com/swashata/vscode-beautiful-ui/master/themes/Solarized Dark-color-theme.json" +colors: + bg: "#383838" + fg: "#DEDEDE" + black: "#000000" + red: "#D81E00" + green: "#5EA702" + yellow: "#CFAE00" + blue: "#427AB3" + magenta: "#89658E" + cyan: "#00A7AA" + white: "#DBDED8" + brightBlack: "#686A66" + brightRed: "#F54235" + brightGreen: "#99E343" + brightYellow: "#FDEB61" + brightBlue: "#84B0D8" + brightMagenta: "#BC94B7" + brightCyan: "#37E6E8" + brightWhite: "#F1F1F0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.3 + black: 0 + red: 21.3 + green: 38.2 + yellow: 52.6 + blue: 23.3 + magenta: 20.7 + cyan: 39.1 + white: 78.7 + brightBlack: 17.2 + brightRed: 31.5 + brightGreen: 70.2 + brightYellow: 86.1 + brightBlue: 49.8 + brightMagenta: 43.8 + brightCyan: 71.4 + brightWhite: 91.4 diff --git a/themes/bee-theme--bee-theme-color-theme-tow.yaml b/themes/bee-theme--bee-theme-color-theme-tow.yaml new file mode 100644 index 00000000..734308fd --- /dev/null +++ b/themes/bee-theme--bee-theme-color-theme-tow.yaml @@ -0,0 +1,53 @@ +name: "Bee Theme (bee-theme-color-theme-tow)" +source: + marketplace_id: "eulukasthyago.bee-theme" + version: "2.0.0" + installs: 1473 + rating: 5 + ratings: 2 + author: "Lucas Tiago" + repo: "https://github.com/webcolmeia/bee-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eulukasthyago.bee-theme" + formats: null +colors: + bg: "#1A1A1A" + fg: "#EEFFFF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.2 + black: 0 + red: 46.3 + green: 83.9 + yellow: 78.6 + blue: 55.6 + magenta: 53.4 + cyan: 77.9 + white: 106.5 + brightBlack: 10.6 + brightRed: 46.3 + brightGreen: 83.9 + brightYellow: 78.6 + brightBlue: 55.6 + brightMagenta: 53.4 + brightCyan: 77.9 + brightWhite: 106.5 diff --git a/themes/bee-theme--bee-theme.yaml b/themes/bee-theme--bee-theme.yaml new file mode 100644 index 00000000..31470a9f --- /dev/null +++ b/themes/bee-theme--bee-theme.yaml @@ -0,0 +1,53 @@ +name: "Bee Theme (Bee Theme)" +source: + marketplace_id: "eulukasthyago.bee-theme" + version: "2.0.0" + installs: 1473 + rating: 5 + ratings: 2 + author: "Lucas Tiago" + repo: "https://github.com/webcolmeia/bee-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eulukasthyago.bee-theme" + formats: null +colors: + bg: "#2A2A2A" + fg: "#CCD6DD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#FFC864" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 76.9 + black: 0 + red: 23.9 + green: 50.2 + yellow: 82.8 + blue: 24.6 + magenta: 26.9 + cyan: 44.7 + white: 87.2 + brightBlack: 74.8 + brightRed: 35.7 + brightGreen: 60.7 + brightYellow: 92.8 + brightBlue: 37.2 + brightMagenta: 42.5 + brightCyan: 52.6 + brightWhite: 87.2 diff --git a/themes/benlatheme.yaml b/themes/benlatheme.yaml new file mode 100644 index 00000000..fea0fc8d --- /dev/null +++ b/themes/benlatheme.yaml @@ -0,0 +1,53 @@ +name: "BenLaTheme" +source: + marketplace_id: "BenLaTheme.benlatheme" + version: "0.0.1" + installs: 83 + rating: 0 + ratings: 0 + author: "BenLaTheme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=BenLaTheme.benlatheme" + formats: null +colors: + bg: "#080907" + fg: "#080907" + black: "#080907" + red: "#080907" + green: "#080907" + yellow: "#080907" + blue: "#080907" + magenta: "#080907" + cyan: "#080907" + white: "#080907" + brightBlack: "#080907" + brightRed: "#080907" + brightGreen: "#080907" + brightYellow: "#080907" + brightBlue: "#080907" + brightMagenta: "#080907" + brightCyan: "#080907" + brightWhite: "#080907" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 0 + black: 0 + red: 0 + green: 0 + yellow: 0 + blue: 0 + magenta: 0 + cyan: 0 + white: 0 + brightBlack: 0 + brightRed: 0 + brightGreen: 0 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/benpai-theme.yaml b/themes/benpai-theme.yaml new file mode 100644 index 00000000..2c709ada --- /dev/null +++ b/themes/benpai-theme.yaml @@ -0,0 +1,53 @@ +name: "Benpai Theme" +source: + marketplace_id: "theRealBenpai.benpai-theme" + version: "1.1.0" + installs: 89 + rating: 0 + ratings: 0 + author: "Sparty182020" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=theRealBenpai.benpai-theme" + formats: null +colors: + bg: "#151515" + fg: "#FFFFFF" + black: "#242424" + red: "#A10909" + green: "#00A51A" + yellow: "#9F9F05" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CFCFCF" + brightBlack: "#666666" + brightRed: "#FB3030" + brightGreen: "#15FF19" + brightYellow: "#FFFF00" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 107.1 + black: 0 + red: 15.1 + green: 41.5 + yellow: 46.9 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 76.6 + brightBlack: 22.2 + brightRed: 37.5 + brightGreen: 85.7 + brightYellow: 101.9 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 107.1 diff --git a/themes/berlin-postal-themes--nw21.yaml b/themes/berlin-postal-themes--nw21.yaml new file mode 100644 index 00000000..76835ffb --- /dev/null +++ b/themes/berlin-postal-themes--nw21.yaml @@ -0,0 +1,53 @@ +name: "Berlin Postal Themes (NW21)" +source: + marketplace_id: "heikopanjas.berlin-postal-themes" + version: "2.0.2" + installs: 39 + rating: 5 + ratings: 1 + author: "Heiko Panjas" + repo: "https://github.com/heikopanjas/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=heikopanjas.berlin-postal-themes" + formats: null +colors: + bg: "#E8EEFE" + fg: "#1F2328" + black: "#24292F" + red: "#D1242F" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#656D76" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: 269 + pair: null + contrast: + fg: 92.6 + black: 91.4 + red: 64.1 + green: 75.1 + yellow: 87.9 + blue: 64.8 + magenta: 64.2 + cyan: 63.7 + white: 61.5 + brightBlack: 66 + brightRed: 75.1 + brightGreen: 64.5 + brightYellow: 81.9 + brightBlue: 50.6 + brightMagenta: 49.2 + brightCyan: 53.2 + brightWhite: 47.1 diff --git a/themes/berlin-postal-themes--sw61.yaml b/themes/berlin-postal-themes--sw61.yaml new file mode 100644 index 00000000..67bf8484 --- /dev/null +++ b/themes/berlin-postal-themes--sw61.yaml @@ -0,0 +1,53 @@ +name: "Berlin Postal Themes (SW61)" +source: + marketplace_id: "heikopanjas.berlin-postal-themes" + version: "2.0.2" + installs: 39 + rating: 5 + ratings: 1 + author: "Heiko Panjas" + repo: "https://github.com/heikopanjas/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=heikopanjas.berlin-postal-themes" + formats: null +colors: + bg: "#00205A" + fg: "#C9D1D9" + black: "#484F58" + red: "#EC8E2C" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FDAC54" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 260 + pair: null + contrast: + fg: 74.8 + black: 10.3 + red: 50.5 + green: 49.5 + yellow: 49.5 + blue: 49.5 + magenta: 49.5 + cyan: 58.7 + white: 61.3 + brightBlack: 26.5 + brightRed: 64.1 + brightGreen: 62 + brightYellow: 62 + brightBlue: 62 + brightMagenta: 61.9 + brightCyan: 67.2 + brightWhite: 104.7 diff --git a/themes/berry-latte-light-theme.yaml b/themes/berry-latte-light-theme.yaml new file mode 100644 index 00000000..f496f07e --- /dev/null +++ b/themes/berry-latte-light-theme.yaml @@ -0,0 +1,53 @@ +name: "Berry Latte Light Theme" +source: + marketplace_id: "goncin.berry-latte-light-theme" + version: "1.3.0" + installs: 2487 + rating: 5 + ratings: 4 + author: "Fausto Cintra" + repo: "https://github.com/faustocintra/vscode-berry-latte-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=goncin.berry-latte-light-theme" + formats: null +colors: + bg: "#FEFDFF" + fg: "#2F4F4F" + black: "#2F4F4F" + red: "#FF6347" + green: "#9ACD32" + yellow: "#DAA520" + blue: "#4169E1" + magenta: "#FF69B4" + cyan: "#66CDAA" + white: "#C0C0C0" + brightBlack: "#666666" + brightRed: "#DC143C" + brightGreen: "#6B8E23" + brightYellow: "#B8860B" + brightBlue: "#4169E1" + brightMagenta: "#C71585" + brightCyan: "#20B2AA" + brightWhite: "#A9A9A9" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.4 + black: 89.4 + red: 54 + green: 34.5 + yellow: 42.9 + blue: 72.2 + magenta: 49.8 + cyan: 35.8 + white: 33 + brightBlack: 77.8 + brightRed: 71.2 + brightGreen: 64.4 + brightYellow: 58.6 + brightBlue: 72.2 + brightMagenta: 74 + brightCyan: 49.7 + brightWhite: 45.4 diff --git a/themes/bersk-dark-theme.yaml b/themes/bersk-dark-theme.yaml new file mode 100644 index 00000000..e830ed7b --- /dev/null +++ b/themes/bersk-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Bersk Dark Theme" +source: + marketplace_id: "Bersk.bersk" + version: "1.5.0" + installs: 1546 + rating: 5 + ratings: 2 + author: "Bersk Dark Theme for VS Code" + repo: "https://github.com/gbaierski/bersk-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bersk.bersk" + formats: null +colors: + bg: "#1C1D1D" + fg: "#FFFFFF" + black: "#1E1F1C" + red: "#FA4DA4" + green: "#1BE7A3" + yellow: "#1BE7A3" + blue: "#23C1FF" + magenta: "#C5A2FD" + cyan: "#23C1FF" + white: "#FFFFFF" + brightBlack: "#1E1F1C" + brightRed: "#FA4DA4" + brightGreen: "#1BE7A3" + brightYellow: "#1BE7A3" + brightBlue: "#23C1FF" + brightMagenta: "#C5A2FD" + brightCyan: "#1BE7A3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 106.2 + black: 0 + red: 42.6 + green: 74.4 + yellow: 74.4 + blue: 60.8 + magenta: 59.4 + cyan: 60.8 + white: 106.2 + brightBlack: 0 + brightRed: 42.6 + brightGreen: 74.4 + brightYellow: 74.4 + brightBlue: 60.8 + brightMagenta: 59.4 + brightCyan: 74.4 + brightWhite: 106.2 diff --git a/themes/beru-theme.yaml b/themes/beru-theme.yaml new file mode 100644 index 00000000..5bfbe9cd --- /dev/null +++ b/themes/beru-theme.yaml @@ -0,0 +1,53 @@ +name: "Beru Theme" +source: + marketplace_id: "FullDev.beru-theme" + version: "1.0.3" + installs: 243 + rating: 5 + ratings: 3 + author: "FullDev" + repo: "https://github.com/getBeru/beru-theme" + url: "https://marketplace.visualstudio.com/items?itemName=FullDev.beru-theme" + formats: null +colors: + bg: "#101010" + fg: "#BABABA" + black: "#101010" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#8B5CF6" + cyan: "#E87235" + white: "#BABABA" + brightBlack: "#666666" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#8B5CF6" + brightCyan: "#E87235" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 64.7 + black: 0 + red: 37.4 + green: 52.4 + yellow: 60 + blue: 37.3 + magenta: 32.5 + cyan: 44.6 + white: 64.7 + brightBlack: 22.6 + brightRed: 37.4 + brightGreen: 52.4 + brightYellow: 60 + brightBlue: 37.3 + brightMagenta: 32.5 + brightCyan: 44.6 + brightWhite: 104.1 diff --git a/themes/best-themes-redefined--best-themes-monokai-next.yaml b/themes/best-themes-redefined--best-themes-monokai-next.yaml new file mode 100644 index 00000000..6f15559f --- /dev/null +++ b/themes/best-themes-redefined--best-themes-monokai-next.yaml @@ -0,0 +1,53 @@ +name: "Best Themes Redefined 🚀 (Best Themes - Monokai Next)" +source: + marketplace_id: "lakshits11.best-themes-redefined" + version: "0.4.6" + installs: 146257 + rating: 5 + ratings: 13 + author: "Lakshit Somani" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=lakshits11.best-themes-redefined" + formats: null +colors: + bg: "#272822" + fg: "#FDFFF1" + black: "#3B3C35" + red: "#F92672" + green: "#A6E22E" + yellow: "#E6DB74" + blue: "#FD971F" + magenta: "#AE81FF" + cyan: "#66D9EF" + white: "#FDFFF1" + brightBlack: "#6E7066" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E6DB74" + brightBlue: "#FD971F" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#FDFFF1" +meta: + mode: "dark" + accent: "red" + hue: 115 + pair: null + contrast: + fg: 103.6 + black: 0 + red: 35 + green: 74.7 + yellow: 79.7 + blue: 56.4 + magenta: 44.2 + cyan: 71.1 + white: 103.6 + brightBlack: 23.6 + brightRed: 35 + brightGreen: 74.7 + brightYellow: 79.7 + brightBlue: 56.4 + brightMagenta: 44.2 + brightCyan: 71.1 + brightWhite: 103.6 diff --git a/themes/best-themes-redefined--best-themes-one-monokai.yaml b/themes/best-themes-redefined--best-themes-one-monokai.yaml new file mode 100644 index 00000000..91a92d97 --- /dev/null +++ b/themes/best-themes-redefined--best-themes-one-monokai.yaml @@ -0,0 +1,53 @@ +name: "Best Themes Redefined 🚀 (Best Themes - One Monokai)" +source: + marketplace_id: "lakshits11.best-themes-redefined" + version: "0.4.6" + installs: 146257 + rating: 5 + ratings: 13 + author: "Lakshit Somani" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=lakshits11.best-themes-redefined" + formats: null +colors: + bg: "#1E222A" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E45E69" + green: "#91CB67" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#48BCCB" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#91CB67" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#48BCCB" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 58 + black: 0 + red: 38.1 + green: 63.5 + yellow: 69.2 + blue: 40.1 + magenta: 43.7 + cyan: 55.7 + white: 81.6 + brightBlack: 34.1 + brightRed: 37.1 + brightGreen: 63.5 + brightYellow: 69.2 + brightBlue: 40.1 + brightMagenta: 11.3 + brightCyan: 55.7 + brightWhite: 81.6 diff --git a/themes/better-solarized--better-selenized-dark.yaml b/themes/better-solarized--better-selenized-dark.yaml new file mode 100644 index 00000000..7d04edf1 --- /dev/null +++ b/themes/better-solarized--better-selenized-dark.yaml @@ -0,0 +1,54 @@ +name: "Better Solarized (Better Selenized Dark)" +source: + marketplace_id: "ginfuru.ginfuru-better-solarized-dark-theme" + version: "0.10.9" + installs: 146812 + rating: 4.84 + ratings: 19 + author: "Ed Heltzel" + repo: "https://github.com/ginfuru/vscode-better-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.ginfuru-better-solarized-dark-theme" + formats: + zed: "https://raw.githubusercontent.com/ginfuru/vscode-better-solarized/master/old-themes/better-selenized-dark.json" +colors: + bg: "#053D48" + fg: "#C8D7D8" + black: "#FDF6E3" + red: "#FD564E" + green: "#80B83C" + yellow: "#E3B230" + blue: "#0096F5" + magenta: "#F275BE" + cyan: "#39C7B9" + white: "#002B36" + brightBlack: "#FBF3DB" + brightRed: "#ED8649" + brightGreen: "#80B83C" + brightYellow: "#E3B230" + brightBlue: "#ADBCBC" + brightMagenta: "#A58CEC" + brightCyan: "#0096F5" + brightWhite: "#00212B" +meta: + mode: "dark" + accent: "orange" + hue: 215 + pair: null + contrast: + fg: 73.1 + black: 94.7 + red: 36.6 + green: 48 + yellow: 57.3 + blue: 36.6 + magenta: 44.2 + cyan: 54.4 + white: 0 + brightBlack: 92.7 + brightRed: 44.3 + brightGreen: 48 + brightYellow: 57.3 + brightBlue: 57.2 + brightMagenta: 41 + brightCyan: 36.6 + brightWhite: 0 diff --git a/themes/better-solarized--better-solarized-dark-italic.yaml b/themes/better-solarized--better-solarized-dark-italic.yaml new file mode 100644 index 00000000..508a7e83 --- /dev/null +++ b/themes/better-solarized--better-solarized-dark-italic.yaml @@ -0,0 +1,54 @@ +name: "Better Solarized (Better Solarized Dark Italic)" +source: + marketplace_id: "ginfuru.ginfuru-better-solarized-dark-theme" + version: "0.10.9" + installs: 146812 + rating: 4.84 + ratings: 19 + author: "Ed Heltzel" + repo: "https://github.com/ginfuru/vscode-better-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.ginfuru-better-solarized-dark-theme" + formats: + zed: "https://raw.githubusercontent.com/ginfuru/vscode-better-solarized/master/old-themes/better-selenized-dark.json" +colors: + bg: "#002B36" + fg: "#839496" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#00212B" + brightRed: "#CB4B16" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#268BD2" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 220 + pair: null + contrast: + fg: 39.5 + black: 0 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 89.5 + brightBlack: 0 + brightRed: 27.2 + brightGreen: 39.2 + brightYellow: 39.2 + brightBlue: 39.5 + brightMagenta: 28 + brightCyan: 34.3 + brightWhite: 98.6 diff --git a/themes/better-solarized--better-solarized-dark.yaml b/themes/better-solarized--better-solarized-dark.yaml new file mode 100644 index 00000000..ae0b90cf --- /dev/null +++ b/themes/better-solarized--better-solarized-dark.yaml @@ -0,0 +1,54 @@ +name: "Better Solarized (Better Solarized Dark)" +source: + marketplace_id: "ginfuru.ginfuru-better-solarized-dark-theme" + version: "0.10.9" + installs: 146812 + rating: 4.84 + ratings: 19 + author: "Ed Heltzel" + repo: "https://github.com/ginfuru/vscode-better-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.ginfuru-better-solarized-dark-theme" + formats: + zed: "https://raw.githubusercontent.com/ginfuru/vscode-better-solarized/master/old-themes/better-selenized-dark.json" +colors: + bg: "#002B36" + fg: "#839496" + black: "#EEE8D5" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#073642" + brightBlack: "#FDF6E3" + brightRed: "#CB4B16" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#268BD2" + brightWhite: "#002B36" +meta: + mode: "dark" + accent: "orange" + hue: 220 + pair: null + contrast: + fg: 39.5 + black: 89.5 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 0 + brightBlack: 98.6 + brightRed: 27.2 + brightGreen: 39.2 + brightYellow: 39.2 + brightBlue: 39.5 + brightMagenta: 28 + brightCyan: 34.3 + brightWhite: 0 diff --git a/themes/bianconero--bianconero.yaml b/themes/bianconero--bianconero.yaml new file mode 100644 index 00000000..20e4b321 --- /dev/null +++ b/themes/bianconero--bianconero.yaml @@ -0,0 +1,53 @@ +name: "BiancoNero (BiancoNero)" +source: + marketplace_id: "spaceinvadev.bianconero" + version: "0.2.1" + installs: 1475 + rating: 0 + ratings: 0 + author: "Mauro Paternina" + repo: "https://github.com/spaceinvadev/bianconero" + url: "https://marketplace.visualstudio.com/items?itemName=spaceinvadev.bianconero" + formats: null +colors: + bg: "#FFFFFF" + fg: "#080808" + black: "#080808" + red: "#AD0000" + green: "#172E23" + yellow: "#C2B608" + blue: "#281C6D" + magenta: "#700070" + cyan: "#8CEBE3" + white: "#DDDDDD" + brightBlack: "#080808" + brightRed: "#AD0000" + brightGreen: "#172E23" + brightYellow: "#C2B608" + brightBlue: "#281C6D" + brightMagenta: "#700070" + brightCyan: "#8CEBE3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.9 + black: 105.9 + red: 83.6 + green: 101.2 + yellow: 41 + blue: 100.4 + magenta: 93.2 + cyan: 18.8 + white: 17.6 + brightBlack: 105.9 + brightRed: 83.6 + brightGreen: 101.2 + brightYellow: 41 + brightBlue: 100.4 + brightMagenta: 93.2 + brightCyan: 18.8 + brightWhite: 17.6 diff --git a/themes/bigsurgtk-blue.yaml b/themes/bigsurgtk-blue.yaml new file mode 100644 index 00000000..9d48f8e2 --- /dev/null +++ b/themes/bigsurgtk-blue.yaml @@ -0,0 +1,53 @@ +name: "BigSurGTK-Blue" +source: + marketplace_id: "zeriax.bigsurgtk-blue" + version: "0.0.2" + installs: 1249 + rating: 0 + ratings: 0 + author: "zeriax" + repo: "https://github.com/zeriaxdev/bigsurgtk-blue" + url: "https://marketplace.visualstudio.com/items?itemName=zeriax.bigsurgtk-blue" + formats: null +colors: + bg: "#191F22" + fg: "#FBE179" + black: "#050606" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D5F1FF" + brightBlack: "#354147" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#ECF9FF" +meta: + mode: "dark" + accent: "pink" + hue: 229 + pair: null + contrast: + fg: 87.1 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 94 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 100.6 diff --git a/themes/bio-dark-midnight.yaml b/themes/bio-dark-midnight.yaml new file mode 100644 index 00000000..66914894 --- /dev/null +++ b/themes/bio-dark-midnight.yaml @@ -0,0 +1,53 @@ +name: "Bio Dark Midnight" +source: + marketplace_id: "studiobio.bio-dark-midnight-theme" + version: "0.1.1" + installs: 2667 + rating: 4 + ratings: 1 + author: "studiobio" + repo: "https://github.com/joshuaiz/bio-dark-midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=studiobio.bio-dark-midnight-theme" + formats: null +colors: + bg: "#1C1F2F" + fg: "#CECECE" + black: "#111929" + red: "#F26D58" + green: "#35BE81" + yellow: "#FAC863" + blue: "#486388" + magenta: "#BB80B3" + cyan: "#4885DB" + white: "#F6F8FA" + brightBlack: "#575656" + brightRed: "#F12A26" + brightGreen: "#DEF59A" + brightYellow: "#FFDD43" + brightBlue: "#B0C3E7" + brightMagenta: "#C792EA" + brightCyan: "#A0C4EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 276 + pair: null + contrast: + fg: 74.7 + black: 0 + red: 44.2 + green: 53.5 + yellow: 75.6 + blue: 19.1 + magenta: 42.2 + cyan: 35.1 + white: 101 + brightBlack: 14.5 + brightRed: 33.3 + brightGreen: 92.8 + brightYellow: 85 + brightBlue: 67.8 + brightMagenta: 52.6 + brightCyan: 66.9 + brightWhite: 105.8 diff --git a/themes/bio-dark.yaml b/themes/bio-dark.yaml new file mode 100644 index 00000000..e6b072d8 --- /dev/null +++ b/themes/bio-dark.yaml @@ -0,0 +1,53 @@ +name: "Bio Dark" +source: + marketplace_id: "studiobio.bio-dark-theme" + version: "0.1.5" + installs: 15559 + rating: 4.33 + ratings: 3 + author: "studiobio" + repo: "https://github.com/joshuaiz/bio-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=studiobio.bio-dark-theme" + formats: null +colors: + bg: "#1E242E" + fg: "#CECECE" + black: "#111929" + red: "#F26D58" + green: "#35BE81" + yellow: "#FAC863" + blue: "#486388" + magenta: "#BB80B3" + cyan: "#4885DB" + white: "#F6F8FA" + brightBlack: "#575656" + brightRed: "#F12A26" + brightGreen: "#DEF59A" + brightYellow: "#FFDD43" + brightBlue: "#B0C3E7" + brightMagenta: "#C792EA" + brightCyan: "#A0C4EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 261 + pair: null + contrast: + fg: 74.2 + black: 0 + red: 43.7 + green: 52.9 + yellow: 75 + blue: 18.5 + magenta: 41.6 + cyan: 34.5 + white: 100.4 + brightBlack: 13.9 + brightRed: 32.7 + brightGreen: 92.3 + brightYellow: 84.4 + brightBlue: 67.2 + brightMagenta: 52.1 + brightCyan: 66.4 + brightWhite: 105.2 diff --git a/themes/bird--bird.yaml b/themes/bird--bird.yaml new file mode 100644 index 00000000..2108879f --- /dev/null +++ b/themes/bird--bird.yaml @@ -0,0 +1,53 @@ +name: "bird (bird)" +source: + marketplace_id: "indigo.bird" + version: "4.2.1" + installs: 4203 + rating: 5 + ratings: 5 + author: "indigo" + repo: "https://github.com/gabriela-tomazzi/birdTheme" + url: "https://marketplace.visualstudio.com/items?itemName=indigo.bird" + formats: null +colors: + bg: "#0A0A0B" + fg: "#DDDDDD" + black: "#191B25" + red: "#B59F8B" + green: "#5CBFDB" + yellow: "#D8CFBD" + blue: "#7F7F84" + magenta: "#7F7F84" + cyan: "#7F7F84" + white: "#C6D6F2" + brightBlack: "#191B25" + brightRed: "#B59F8B" + brightGreen: "#5CBFDB" + brightYellow: "#D8CFBD" + brightBlue: "#7F7F84" + brightMagenta: "#7F7F84" + brightCyan: "#7F7F84" + brightWhite: "#C6D6F2" +meta: + mode: "dark" + accent: "blue" + hue: null + pair: null + contrast: + fg: 85.9 + black: 0 + red: 52.2 + green: 60.9 + yellow: 77.8 + blue: 34.3 + magenta: 34.3 + cyan: 34.3 + white: 80.9 + brightBlack: 0 + brightRed: 52.2 + brightGreen: 60.9 + brightYellow: 77.8 + brightBlue: 34.3 + brightMagenta: 34.3 + brightCyan: 34.3 + brightWhite: 80.9 diff --git a/themes/bits.yaml b/themes/bits.yaml new file mode 100644 index 00000000..69bcdfbb --- /dev/null +++ b/themes/bits.yaml @@ -0,0 +1,53 @@ +name: "Bits" +source: + marketplace_id: "ManuCodes.bits" + version: "1.0.3" + installs: 1500 + rating: 5 + ratings: 1 + author: "Manu Codes" + repo: "https://github.com/manudevcode/bits-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ManuCodes.bits" + formats: null +colors: + bg: "#1F222E" + fg: "#F2F3F7" + black: "#283034" + red: "#FF2E97" + green: "#3ADA5D" + yellow: "#FDE74E" + blue: "#42C6FF" + magenta: "#FF2AFC" + cyan: "#42C6FF" + white: "#D9E0E9" + brightBlack: "#435056" + brightRed: "#FF2E97" + brightGreen: "#ADD0E5" + brightYellow: "#FDE74E" + brightBlue: "#42C6FF" + brightMagenta: "#FF2AFC" + brightCyan: "#42C6FF" + brightWhite: "#F4F6F9" +meta: + mode: "dark" + accent: "pink" + hue: 274 + pair: null + contrast: + fg: 97.5 + black: 0 + red: 39 + green: 65.9 + yellow: 88.9 + blue: 62.8 + magenta: 44.6 + cyan: 62.8 + white: 84.9 + brightBlack: 10.9 + brightRed: 39 + brightGreen: 72.5 + brightYellow: 88.9 + brightBlue: 62.8 + brightMagenta: 44.6 + brightCyan: 62.8 + brightWhite: 99.3 diff --git a/themes/biu-theme--vitesse-dark.yaml b/themes/biu-theme--vitesse-dark.yaml new file mode 100644 index 00000000..7a198fe4 --- /dev/null +++ b/themes/biu-theme--vitesse-dark.yaml @@ -0,0 +1,53 @@ +name: "Biu Theme (Vitesse Dark)" +source: + marketplace_id: "mashirozx.theme-biu" + version: "0.1.14" + installs: 203 + rating: 0 + ratings: 0 + author: "Mashiro" + repo: "https://github.com/mashirozx/vscode-theme-biu" + url: "https://marketplace.visualstudio.com/items?itemName=mashirozx.theme-biu" + formats: null +colors: + bg: "#121212" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#DB889A" + cyan: "#5EAAB5" + white: "#FFFFFF" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#DB889A" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 81.7 + black: 0 + red: 41.2 + green: 37.1 + yellow: 76 + blue: 41.8 + magenta: 50.3 + cyan: 49.7 + white: 107.3 + brightBlack: 30 + brightRed: 41.2 + brightGreen: 37.1 + brightYellow: 76 + brightBlue: 41.8 + brightMagenta: 50.3 + brightCyan: 49.7 + brightWhite: 107.3 diff --git a/themes/biu-theme--vitesse-light.yaml b/themes/biu-theme--vitesse-light.yaml new file mode 100644 index 00000000..aa3e79f4 --- /dev/null +++ b/themes/biu-theme--vitesse-light.yaml @@ -0,0 +1,53 @@ +name: "Biu Theme (Vitesse Light)" +source: + marketplace_id: "mashirozx.theme-biu" + version: "0.1.14" + installs: 203 + rating: 0 + ratings: 0 + author: "Mashiro" + repo: "https://github.com/mashirozx/vscode-theme-biu" + url: "https://marketplace.visualstudio.com/items?itemName=mashirozx.theme-biu" + formats: null +colors: + bg: "#FFFFFF" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#1C6B48" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#B05A78" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1C6B48" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#B05A78" + brightCyan: "#2993A3" + brightWhite: "#DBD7CA" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 96.5 + black: 105.3 + red: 73.5 + green: 81.8 + yellow: 48.3 + blue: 78.2 + magenta: 71.5 + cyan: 63.5 + white: 21.1 + brightBlack: 45.8 + brightRed: 73.5 + brightGreen: 81.8 + brightYellow: 48.3 + brightBlue: 78.2 + brightMagenta: 71.5 + brightCyan: 63.5 + brightWhite: 21.1 diff --git a/themes/blac.yaml b/themes/blac.yaml new file mode 100644 index 00000000..b5995749 --- /dev/null +++ b/themes/blac.yaml @@ -0,0 +1,53 @@ +name: "Blac" +source: + marketplace_id: "0xdhrv.blac" + version: "0.0.1" + installs: 2175 + rating: 5 + ratings: 1 + author: "Dhruv Suthar" + repo: "https://github.com/0xdhrv/monos" + url: "https://marketplace.visualstudio.com/items?itemName=0xdhrv.blac" + formats: null +colors: + bg: "#161616" + fg: "#A0A0A0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 49.9 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/black-n-turquoise.yaml b/themes/black-n-turquoise.yaml new file mode 100644 index 00000000..b0d7cc7a --- /dev/null +++ b/themes/black-n-turquoise.yaml @@ -0,0 +1,53 @@ +name: "Black 'n Turquoise" +source: + marketplace_id: "GD-alt.black--n-turquoise" + version: "1.0.0" + installs: 1953 + rating: 0 + ratings: 0 + author: "GD-alt" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GD-alt.black--n-turquoise" + formats: null +colors: + bg: "#000000" + fg: "#D1D1D1" + black: "#262626" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/black-pink-theme.yaml b/themes/black-pink-theme.yaml new file mode 100644 index 00000000..249b7c80 --- /dev/null +++ b/themes/black-pink-theme.yaml @@ -0,0 +1,53 @@ +name: "BLACK/PINK Theme" +source: + marketplace_id: "banebo.black-pink-theme" + version: "0.0.1" + installs: 3838 + rating: 0 + ratings: 0 + author: "banebo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=banebo.black-pink-theme" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#3F3F3F" + red: "#FF3333" + green: "#0BFFA2" + yellow: "#FFFF24" + blue: "#3597FF" + magenta: "#FF07FF" + cyan: "#07CFFF" + white: "#D5D5D5" + brightBlack: "#6D6D6D" + brightRed: "#FF7B7B" + brightGreen: "#6DFFC4" + brightYellow: "#FFFF7C" + brightBlue: "#7EBBFF" + brightMagenta: "#FF62FF" + brightCyan: "#80E6FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 8.1 + red: 39.6 + green: 88.4 + yellow: 102.8 + blue: 45.7 + magenta: 46.2 + cyan: 68.6 + white: 81.1 + brightBlack: 26.1 + brightRed: 53.3 + brightGreen: 91.7 + brightYellow: 103.6 + brightBlue: 63.5 + brightMagenta: 54.1 + brightCyan: 82.9 + brightWhite: 107.9 diff --git a/themes/black-total.yaml b/themes/black-total.yaml new file mode 100644 index 00000000..43252c92 --- /dev/null +++ b/themes/black-total.yaml @@ -0,0 +1,53 @@ +name: "Black Total" +source: + marketplace_id: "Jotatajo22.black-total" + version: "0.0.1" + installs: 45 + rating: 0 + ratings: 0 + author: "Jotatajo22" + repo: "https://github.com/JoaoPedro-cody/black-total" + url: "https://marketplace.visualstudio.com/items?itemName=Jotatajo22.black-total" + formats: null +colors: + bg: "#000000" + fg: "#E6E6EA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#6F6F6F" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 91.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 27 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/black-void.yaml b/themes/black-void.yaml new file mode 100644 index 00000000..4f73dd45 --- /dev/null +++ b/themes/black-void.yaml @@ -0,0 +1,53 @@ +name: "Black Void" +source: + marketplace_id: "SufficientDaikon.sufficentdaikon-darkpp" + version: "1.3.5" + installs: 700 + rating: 0 + ratings: 0 + author: "SufficientDaikon" + repo: "https://github.com/SufficientDaikon/Black-Void_VSCode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SufficientDaikon.sufficentdaikon-darkpp" + formats: null +colors: + bg: "#0A0A0A" + fg: "#C7C7C7" + black: "#0E0E0E" + red: "#FC6A67" + green: "#A9DC76" + yellow: "#FFD866" + blue: "#78DCE8" + magenta: "#E991E3" + cyan: "#78E8C6" + white: "#C7C7C7" + brightBlack: "#000000" + brightRed: "#FF6764" + brightGreen: "#A9F65C" + brightYellow: "#FFD866" + brightBlue: "#61EEFF" + brightMagenta: "#FD7DF4" + brightCyan: "#61FFCF" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 72.6 + black: 0 + red: 48 + green: 76.1 + yellow: 85.2 + blue: 76.3 + magenta: 59.4 + cyan: 80.5 + white: 72.6 + brightBlack: 0 + brightRed: 47.9 + brightGreen: 88.4 + brightYellow: 85.2 + brightBlue: 85.1 + brightMagenta: 58.6 + brightCyan: 91.4 + brightWhite: 104.4 diff --git a/themes/blackbird--blackbird-dusk.yaml b/themes/blackbird--blackbird-dusk.yaml new file mode 100644 index 00000000..a5d37639 --- /dev/null +++ b/themes/blackbird--blackbird-dusk.yaml @@ -0,0 +1,53 @@ +name: "blackbird (🏴 blackbird → dusk)" +source: + marketplace_id: "MattGleich.theme-blackbird" + version: "6.0.1" + installs: 10040 + rating: 5 + ratings: 5 + author: "Matt Gleich" + repo: "https://github.com/blackbirdtheme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MattGleich.theme-blackbird" + formats: null +colors: + bg: "#0F0F0F" + fg: "#FDF7CD" + black: "#222029" + red: "#E92741" + green: "#3EC841" + yellow: "#E1DB3F" + blue: "#418EDD" + magenta: "#FF00CC" + cyan: "#00ECD8" + white: "#FDF7CD" + brightBlack: "#777777" + brightRed: "#E92741" + brightGreen: "#3EC841" + brightYellow: "#E1DB3F" + brightBlue: "#418EDD" + brightMagenta: "#FF00CC" + brightCyan: "#00ECD8" + brightWhite: "#FDF7CD" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.3 + black: 0 + red: 33.1 + green: 59 + yellow: 81.3 + blue: 39.9 + magenta: 42.4 + cyan: 80.1 + white: 101.3 + brightBlack: 30.2 + brightRed: 33.1 + brightGreen: 59 + brightYellow: 81.3 + brightBlue: 39.9 + brightMagenta: 42.4 + brightCyan: 80.1 + brightWhite: 101.3 diff --git a/themes/blackbird--blackbird-midnight.yaml b/themes/blackbird--blackbird-midnight.yaml new file mode 100644 index 00000000..a544b65e --- /dev/null +++ b/themes/blackbird--blackbird-midnight.yaml @@ -0,0 +1,53 @@ +name: "blackbird (🏴 blackbird → midnight)" +source: + marketplace_id: "MattGleich.theme-blackbird" + version: "6.0.1" + installs: 10040 + rating: 5 + ratings: 5 + author: "Matt Gleich" + repo: "https://github.com/blackbirdtheme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MattGleich.theme-blackbird" + formats: null +colors: + bg: "#000000" + fg: "#FDF7CD" + black: "#222029" + red: "#E92741" + green: "#3EC841" + yellow: "#E1DB3F" + blue: "#418EDD" + magenta: "#FF00CC" + cyan: "#00ECD8" + white: "#FDF7CD" + brightBlack: "#343C50" + brightRed: "#E92741" + brightGreen: "#3EC841" + brightYellow: "#E1DB3F" + brightBlue: "#418EDD" + brightMagenta: "#FF00CC" + brightCyan: "#00ECD8" + brightWhite: "#FDF7CD" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.7 + black: 0 + red: 33.5 + green: 59.4 + yellow: 81.7 + blue: 40.3 + magenta: 42.7 + cyan: 80.5 + white: 101.7 + brightBlack: 0 + brightRed: 33.5 + brightGreen: 59.4 + brightYellow: 81.7 + brightBlue: 40.3 + brightMagenta: 42.7 + brightCyan: 80.5 + brightWhite: 101.7 diff --git a/themes/blackcoffee-dark.yaml b/themes/blackcoffee-dark.yaml new file mode 100644 index 00000000..9e7c6fd6 --- /dev/null +++ b/themes/blackcoffee-dark.yaml @@ -0,0 +1,53 @@ +name: "BlackCoffee Dark" +source: + marketplace_id: "MalikAhmadRasheed.coffeecode" + version: "0.0.2" + installs: 39 + rating: 5 + ratings: 1 + author: "Malik Ahmad Rasheed" + repo: "https://github.com/ahmaddii/BlackCoffeeDark" + url: "https://marketplace.visualstudio.com/items?itemName=MalikAhmadRasheed.coffeecode" + formats: null +colors: + bg: "#0B0F1A" + fg: "#F0F4F8" + black: "#1E1E1E" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#DCDFE4" + brightBlack: "#1E1E1E" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#DCDFE4" +meta: + mode: "dark" + accent: "pink" + hue: 268 + pair: null + contrast: + fg: 99.9 + black: 0 + red: 42.7 + green: 62.9 + yellow: 71.2 + blue: 55.3 + magenta: 45.7 + cyan: 55.2 + white: 86.7 + brightBlack: 0 + brightRed: 42.7 + brightGreen: 62.9 + brightYellow: 71.2 + brightBlue: 55.3 + brightMagenta: 45.7 + brightCyan: 55.2 + brightWhite: 86.7 diff --git a/themes/blackforest--everforest-dark.yaml b/themes/blackforest--everforest-dark.yaml new file mode 100644 index 00000000..c8ae62ea --- /dev/null +++ b/themes/blackforest--everforest-dark.yaml @@ -0,0 +1,53 @@ +name: "Blackforest (Everforest Dark)" +source: + marketplace_id: "johnull.blackforest" + version: "0.0.2" + installs: 1528 + rating: 5 + ratings: 1 + author: "johnull" + repo: "https://github.com/johnull/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=johnull.blackforest" + formats: null +colors: + bg: "#000000" + fg: "#D3C6AA" + black: "#343F44" + red: "#E67E80" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#83C092" + white: "#D3C6AA" + brightBlack: "#859289" + brightRed: "#E67E80" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#7FBBB3" + brightMagenta: "#D699B6" + brightCyan: "#83C092" + brightWhite: "#D3C6AA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 72.7 + black: 7.5 + red: 49.2 + green: 63.6 + yellow: 68.5 + blue: 59.5 + magenta: 56.6 + cyan: 60.8 + white: 72.7 + brightBlack: 42 + brightRed: 49.2 + brightGreen: 63.6 + brightYellow: 68.5 + brightBlue: 59.5 + brightMagenta: 56.6 + brightCyan: 60.8 + brightWhite: 72.7 diff --git a/themes/blazing-red.yaml b/themes/blazing-red.yaml new file mode 100644 index 00000000..c06fbbf5 --- /dev/null +++ b/themes/blazing-red.yaml @@ -0,0 +1,53 @@ +name: "Blazing Red" +source: + marketplace_id: "xynny.blazing-red" + version: "0.0.1" + installs: 7925 + rating: 0 + ratings: 0 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.blazing-red" + formats: null +colors: + bg: "#380E10" + fg: "#D4AC36" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D7D7D7" + brightBlack: "#5A5A5A" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 21 + pair: null + contrast: + fg: 58.1 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 80.3 + brightBlack: 16.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 105.9 diff --git a/themes/blazydark.yaml b/themes/blazydark.yaml new file mode 100644 index 00000000..f87c1979 --- /dev/null +++ b/themes/blazydark.yaml @@ -0,0 +1,53 @@ +name: "blazydark" +source: + marketplace_id: "blazym8.Blazy-Darkmode" + version: "0.0.1" + installs: 0 + rating: 0 + ratings: 0 + author: "blazym8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=blazym8.Blazy-Darkmode" + formats: null +colors: + bg: "#0F0F0F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CCCCCC" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 75.3 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/blinds-theme.yaml b/themes/blinds-theme.yaml new file mode 100644 index 00000000..1913a682 --- /dev/null +++ b/themes/blinds-theme.yaml @@ -0,0 +1,53 @@ +name: "Blinds Theme" +source: + marketplace_id: "tankashing.blinds-theme" + version: "8.0.0" + installs: 4028 + rating: 5 + ratings: 4 + author: "Tan Ka-Shing" + repo: "https://github.com/orbulant/blinds-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tankashing.blinds-theme" + formats: null +colors: + bg: "#1F1F1F" + fg: "#F7F7F7" + black: "#000000" + red: "#DE1010" + green: "#117717" + yellow: "#E5E510" + blue: "#3E1D86" + magenta: "#822082" + cyan: "#008094" + white: "#D4D4D4" + brightBlack: "#545454" + brightRed: "#FF0016" + brightGreen: "#33C989" + brightYellow: "#F5F543" + brightBlue: "#6338FF" + brightMagenta: "#E246E2" + brightCyan: "#00CBE0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 100.6 + black: 0 + red: 27.6 + green: 21.8 + yellow: 84.6 + blue: 0 + magenta: 12.1 + cyan: 28 + white: 78.5 + brightBlack: 13.7 + brightRed: 35.6 + brightGreen: 58.9 + brightYellow: 94.7 + brightBlue: 21.4 + brightMagenta: 39.6 + brightCyan: 63 + brightWhite: 105.9 diff --git a/themes/bloom.yaml b/themes/bloom.yaml new file mode 100644 index 00000000..7489893a --- /dev/null +++ b/themes/bloom.yaml @@ -0,0 +1,53 @@ +name: "bloom" +source: + marketplace_id: "avago24.bloom" + version: "1.1.0" + installs: 312 + rating: 0 + ratings: 0 + author: "avago24" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=avago24.bloom" + formats: null +colors: + bg: "#000000" + fg: "#BBBBBB" + black: "#808080" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#A5A5A5" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 65.7 + black: 34.8 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 107.9 + brightBlack: 53.5 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/blue-light-theme--blue-light-theme.yaml b/themes/blue-light-theme--blue-light-theme.yaml new file mode 100644 index 00000000..df4ff88e --- /dev/null +++ b/themes/blue-light-theme--blue-light-theme.yaml @@ -0,0 +1,53 @@ +name: "Blue Light Theme (Blue Light Theme)" +source: + marketplace_id: "msnilshartmann.blue-light" + version: "0.6.4" + installs: 95002 + rating: 5 + ratings: 2 + author: "Nils Hartmann" + repo: "https://github.com/nilshartmann/vscode-blue-light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=msnilshartmann.blue-light" + formats: null +colors: + bg: "#FFFFFF" + fg: "#9B9B9B" + black: "#1A1A1A" + red: "#A56416" + green: "#428226" + yellow: "#A56416" + blue: "#3778B7" + magenta: "#B052A1" + cyan: "#3778B7" + white: "#F7F7F7" + brightBlack: "#9B9B9B" + brightRed: "#A56416" + brightGreen: "#428226" + brightYellow: "#A56416" + brightBlue: "#3778B7" + brightMagenta: "#B052A1" + brightCyan: "#3778B7" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 53.6 + black: 104.3 + red: 72.5 + green: 72.5 + yellow: 72.5 + blue: 71.9 + magenta: 71.4 + cyan: 71.9 + white: 0 + brightBlack: 53.6 + brightRed: 72.5 + brightGreen: 72.5 + brightYellow: 72.5 + brightBlue: 71.9 + brightMagenta: 71.4 + brightCyan: 71.9 + brightWhite: 0 diff --git a/themes/blue-moves-theme.yaml b/themes/blue-moves-theme.yaml new file mode 100644 index 00000000..bc5d50f8 --- /dev/null +++ b/themes/blue-moves-theme.yaml @@ -0,0 +1,53 @@ +name: "Blue Moves Theme" +source: + marketplace_id: "Synth1983GreenWave.blue-moves-theme" + version: "2.0.1" + installs: 366 + rating: 5 + ratings: 1 + author: "🧪 ovct 🧪" + repo: "https://github.com/Octaviocossy/blue-moves-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Synth1983GreenWave.blue-moves-theme" + formats: null +colors: + bg: "#111B2E" + fg: "#A5ABB3" + black: "#111B2E" + red: "#BE9164" + green: "#51BD99" + yellow: "#ADB96E" + blue: "#7096C2" + magenta: "#C08FD4" + cyan: "#51ADBB" + white: "#A5ABB3" + brightBlack: "#7096C2" + brightRed: "#BE9164" + brightGreen: "#51BD99" + brightYellow: "#ADB96E" + brightBlue: "#7096C2" + brightMagenta: "#C08FD4" + brightCyan: "#51ADBB" + brightWhite: "#A5ABB3" +meta: + mode: "dark" + accent: "teal" + hue: 262 + pair: null + contrast: + fg: 54.9 + black: 0 + red: 46.1 + green: 55.3 + yellow: 59.4 + blue: 42.7 + magenta: 50 + cyan: 49.7 + white: 54.9 + brightBlack: 42.7 + brightRed: 46.1 + brightGreen: 55.3 + brightYellow: 59.4 + brightBlue: 42.7 + brightMagenta: 50 + brightCyan: 49.7 + brightWhite: 54.9 diff --git a/themes/blue-night--blue-day.yaml b/themes/blue-night--blue-day.yaml new file mode 100644 index 00000000..1338a087 --- /dev/null +++ b/themes/blue-night--blue-day.yaml @@ -0,0 +1,53 @@ +name: "Blue Night (Blue-Day)" +source: + marketplace_id: "thiagobessimo.bluenight" + version: "1.0.1" + installs: 1350 + rating: 0 + ratings: 0 + author: "Thiago P B Bessimo" + repo: "https://github.com/thiagobessimo/bluenight" + url: "https://marketplace.visualstudio.com/items?itemName=thiagobessimo.bluenight" + formats: null +colors: + bg: "#F5F8FF" + fg: "#000510" + black: "#F5F8FF" + red: "#CC3333" + green: "#08DDAA" + yellow: "#FFC500" + blue: "#2080FF" + magenta: "#FF60DD" + cyan: "#20EEEE" + white: "#000510" + brightBlack: "#88ADFF" + brightRed: "#CC3333" + brightGreen: "#08DDAA" + brightYellow: "#FFC500" + brightBlue: "#2080FF" + brightMagenta: "#FF60DD" + brightCyan: "#20EEEE" + brightWhite: "#000510" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.7 + black: 0 + red: 69.7 + green: 27.3 + yellow: 22 + blue: 60.2 + magenta: 46.2 + cyan: 16.4 + white: 101.7 + brightBlack: 39.3 + brightRed: 69.7 + brightGreen: 27.3 + brightYellow: 22 + brightBlue: 60.2 + brightMagenta: 46.2 + brightCyan: 16.4 + brightWhite: 101.7 diff --git a/themes/blue-night--blue-night.yaml b/themes/blue-night--blue-night.yaml new file mode 100644 index 00000000..2eb16c20 --- /dev/null +++ b/themes/blue-night--blue-night.yaml @@ -0,0 +1,53 @@ +name: "Blue Night (Blue-Night)" +source: + marketplace_id: "thiagobessimo.bluenight" + version: "1.0.1" + installs: 1350 + rating: 0 + ratings: 0 + author: "Thiago P B Bessimo" + repo: "https://github.com/thiagobessimo/bluenight" + url: "https://marketplace.visualstudio.com/items?itemName=thiagobessimo.bluenight" + formats: null +colors: + bg: "#000510" + fg: "#F5F8FF" + black: "#000510" + red: "#CC3333" + green: "#08DDAA" + yellow: "#FFC500" + blue: "#2080FF" + magenta: "#FF60DD" + cyan: "#20EEEE" + white: "#F5F8FF" + brightBlack: "#00194D" + brightRed: "#CC3333" + brightGreen: "#08DDAA" + brightYellow: "#FFC500" + brightBlue: "#2080FF" + brightMagenta: "#FF60DD" + brightCyan: "#20EEEE" + brightWhite: "#F5F8FF" +meta: + mode: "dark" + accent: "pink" + hue: 251 + pair: null + contrast: + fg: 103.1 + black: 0 + red: 27.7 + green: 71.2 + yellow: 76.7 + blue: 37.2 + magenta: 51.4 + cyan: 82.7 + white: 103.1 + brightBlack: 0 + brightRed: 27.7 + brightGreen: 71.2 + brightYellow: 76.7 + brightBlue: 37.2 + brightMagenta: 51.4 + brightCyan: 82.7 + brightWhite: 103.1 diff --git a/themes/blue-paint.yaml b/themes/blue-paint.yaml new file mode 100644 index 00000000..503cd8b9 --- /dev/null +++ b/themes/blue-paint.yaml @@ -0,0 +1,53 @@ +name: "Blue Paint" +source: + marketplace_id: "anweber.bluepaint" + version: "0.8.0" + installs: 1236 + rating: 0 + ratings: 0 + author: "Andreas Weber" + repo: "https://github.com/AnWeber/bluepaint" + url: "https://marketplace.visualstudio.com/items?itemName=anweber.bluepaint" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#263238" + red: "#D32F2F" + green: "#43A047" + yellow: "#F57C00" + blue: "#1565C0" + magenta: "#6A1B9A" + cyan: "#0097A7" + white: "#F5F5F5" + brightBlack: "#37474F" + brightRed: "#F44336" + brightGreen: "#66BB6A" + brightYellow: "#FFA726" + brightBlue: "#4472C4" + brightMagenta: "#9C27B0" + brightCyan: "#26C6DA" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 106 + black: 99.5 + red: 72.8 + green: 60.1 + yellow: 51.8 + blue: 78.2 + magenta: 90.5 + cyan: 62 + white: 0 + brightBlack: 92.3 + brightRed: 63 + brightGreen: 46.4 + brightYellow: 37 + brightBlue: 72.5 + brightMagenta: 80.1 + brightCyan: 39.8 + brightWhite: 0 diff --git a/themes/bluered.yaml b/themes/bluered.yaml new file mode 100644 index 00000000..833f28b1 --- /dev/null +++ b/themes/bluered.yaml @@ -0,0 +1,53 @@ +name: "bluered" +source: + marketplace_id: "syk.bluered" + version: "0.0.1" + installs: 52 + rating: 0 + ratings: 0 + author: "syk" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=syk.bluered" + formats: null +colors: + bg: "#000000" + fg: "#3AA1FD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 49.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/bluespace--sober.yaml b/themes/bluespace--sober.yaml new file mode 100644 index 00000000..04cbdb15 --- /dev/null +++ b/themes/bluespace--sober.yaml @@ -0,0 +1,53 @@ +name: "BlueSpace (Sober)" +source: + marketplace_id: "YesCode.bluespace" + version: "0.0.22" + installs: 208 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/BlueSpaceVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.bluespace" + formats: null +colors: + bg: "#0E1020" + fg: "#CDCDCD" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#788AEC" + brightYellow: "#DFE6E9" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: 277 + pair: null + contrast: + fg: 75.7 + black: 0 + red: 42.4 + green: 61.4 + yellow: 73.5 + blue: 83.3 + magenta: 20 + cyan: 49.9 + white: 47.7 + brightBlack: 19 + brightRed: 42.4 + brightGreen: 42.6 + brightYellow: 90.3 + brightBlue: 19.2 + brightMagenta: 20 + brightCyan: 49.9 + brightWhite: 99.3 diff --git a/themes/bluloco-dark-muted-w77.yaml b/themes/bluloco-dark-muted-w77.yaml new file mode 100644 index 00000000..b694dc0f --- /dev/null +++ b/themes/bluloco-dark-muted-w77.yaml @@ -0,0 +1,53 @@ +name: "Bluloco Dark Muted W77" +source: + marketplace_id: "W77.bluloco-dark-muted-theme-w77" + version: "0.0.2" + installs: 700 + rating: 0 + ratings: 0 + author: "W77" + repo: "https://github.com/wojtek77/bluloco-dark-muted-theme-w77" + url: "https://marketplace.visualstudio.com/items?itemName=W77.bluloco-dark-muted-theme-w77" + formats: null +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#42444D" + red: "#FC2E51" + green: "#25A45C" + yellow: "#FF9369" + blue: "#3375FE" + magenta: "#8F74E0" + cyan: "#4483AA" + white: "#CDD3E0" + brightBlack: "#8F9AAE" + brightRed: "#FF637F" + brightGreen: "#3FC56A" + brightYellow: "#F9C858" + brightBlue: "#10B0FE" + brightMagenta: "#BD6AB9" + brightCyan: "#5FB9BC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 34.6 + green: 38.7 + yellow: 55.5 + blue: 29.9 + magenta: 33.5 + cyan: 29.2 + white: 75.5 + brightBlack: 43.2 + brightRed: 43.7 + brightGreen: 54.4 + brightYellow: 73.2 + brightBlue: 50.8 + brightMagenta: 34.8 + brightCyan: 52.8 + brightWhite: 103.7 diff --git a/themes/bluloco-dark-theme--bluloco-dark.yaml b/themes/bluloco-dark-theme--bluloco-dark.yaml new file mode 100644 index 00000000..58596088 --- /dev/null +++ b/themes/bluloco-dark-theme--bluloco-dark.yaml @@ -0,0 +1,53 @@ +name: "Bluloco Dark Theme (Bluloco Dark)" +source: + marketplace_id: "uloco.theme-bluloco-dark" + version: "3.7.6" + installs: 511091 + rating: 4.96 + ratings: 48 + author: "Umut Topuzoğlu" + repo: "https://github.com/uloco/theme-bluloco-dark" + url: "https://marketplace.visualstudio.com/items?itemName=uloco.theme-bluloco-dark" + formats: null +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#42444D" + red: "#FC2E51" + green: "#25A45C" + yellow: "#FF9369" + blue: "#3375FE" + magenta: "#9F7EFE" + cyan: "#4483AA" + white: "#CDD3E0" + brightBlack: "#8F9AAE" + brightRed: "#FF637F" + brightGreen: "#3FC56A" + brightYellow: "#F9C858" + brightBlue: "#10B0FE" + brightMagenta: "#FF78F8" + brightCyan: "#5FB9BC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 34.6 + green: 38.7 + yellow: 55.5 + blue: 29.9 + magenta: 40.5 + cyan: 29.2 + white: 75.5 + brightBlack: 43.2 + brightRed: 43.7 + brightGreen: 54.4 + brightYellow: 73.2 + brightBlue: 50.8 + brightMagenta: 54 + brightCyan: 52.8 + brightWhite: 103.7 diff --git a/themes/bluloco-light-theme.yaml b/themes/bluloco-light-theme.yaml new file mode 100644 index 00000000..342586cd --- /dev/null +++ b/themes/bluloco-light-theme.yaml @@ -0,0 +1,53 @@ +name: "Bluloco Light Theme" +source: + marketplace_id: "uloco.theme-bluloco-light" + version: "3.7.5" + installs: 485099 + rating: 4.92 + ratings: 39 + author: "Umut Topuzoğlu" + repo: "https://github.com/uloco/theme-bluloco-light" + url: "https://marketplace.visualstudio.com/items?itemName=uloco.theme-bluloco-light" + formats: null +colors: + bg: "#F9F9F9" + fg: "#383A42" + black: "#373A41" + red: "#D52652" + green: "#239749" + yellow: "#DF621B" + blue: "#275FE4" + magenta: "#823EF0" + cyan: "#26608C" + white: "#B9BAC1" + brightBlack: "#676A77" + brightRed: "#FF637F" + brightGreen: "#3CBC66" + brightYellow: "#C5A231" + brightBlue: "#0099E0" + brightMagenta: "#CE32C0" + brightCyan: "#6D92BA" + brightWhite: "#D3D3D3" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 92.6 + black: 92.7 + red: 69 + green: 61 + yellow: 58.8 + blue: 73 + magenta: 72.3 + cyan: 79.2 + white: 33.5 + brightBlack: 73.2 + brightRed: 50.3 + brightGreen: 44.2 + brightYellow: 44.4 + brightBlue: 54.5 + brightMagenta: 65 + brightCyan: 56.1 + brightWhite: 19.7 diff --git a/themes/blurple.yaml b/themes/blurple.yaml new file mode 100644 index 00000000..d9d6ec0a --- /dev/null +++ b/themes/blurple.yaml @@ -0,0 +1,53 @@ +name: "Blurple" +source: + marketplace_id: "BlurpleTheme.blurpletheme" + version: "0.2.0" + installs: 604 + rating: 0 + ratings: 0 + author: "BlurpleTheme" + repo: "https://github.com/Nova-develoment-team/Blurpled" + url: "https://marketplace.visualstudio.com/items?itemName=BlurpleTheme.blurpletheme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FF0000" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 35.7 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 106 diff --git a/themes/blush.yaml b/themes/blush.yaml new file mode 100644 index 00000000..109d127e --- /dev/null +++ b/themes/blush.yaml @@ -0,0 +1,53 @@ +name: "Blush" +source: + marketplace_id: "Prabodhan.blush" + version: "2.0.2" + installs: 1076 + rating: 5 + ratings: 1 + author: "Prabodhan" + repo: "https://github.com/Prabodhan29/vscode-theme-blush" + url: "https://marketplace.visualstudio.com/items?itemName=Prabodhan.blush" + formats: null +colors: + bg: "#1D1D26" + fg: "#B3B3D4" + black: "#2C2C3E" + red: "#F30067" + green: "#00D364" + yellow: "#FFCC66" + blue: "#00BFFF" + magenta: "#F30067" + cyan: "#00CED1" + white: "#FFFFFF" + brightBlack: "#3D3D56" + brightRed: "#F30067" + brightGreen: "#00D364" + brightYellow: "#FFCC66" + brightBlue: "#00BFFF" + brightMagenta: "#F30067" + brightCyan: "#00CED1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 285 + pair: null + contrast: + fg: 60.9 + black: 0 + red: 33.8 + green: 62.7 + yellow: 78.5 + blue: 59.6 + magenta: 33.8 + cyan: 63.8 + white: 106.1 + brightBlack: 0 + brightRed: 33.8 + brightGreen: 62.7 + brightYellow: 78.5 + brightBlue: 59.6 + brightMagenta: 33.8 + brightCyan: 63.8 + brightWhite: 106.1 diff --git a/themes/blve-a-dark-blue-theme.yaml b/themes/blve-a-dark-blue-theme.yaml new file mode 100644 index 00000000..426c9b57 --- /dev/null +++ b/themes/blve-a-dark-blue-theme.yaml @@ -0,0 +1,53 @@ +name: "Blve - a dark blue theme" +source: + marketplace_id: "YMG.blve-theme" + version: "1.1.0" + installs: 515 + rating: 0 + ratings: 0 + author: "YMG" + repo: "https://github.com/0xymg/blve_vscode_theme" + url: "https://marketplace.visualstudio.com/items?itemName=YMG.blve-theme" + formats: null +colors: + bg: "#0B1015" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 249 + pair: null + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.2 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/bocchi-the-vscode-theme.yaml b/themes/bocchi-the-vscode-theme.yaml new file mode 100644 index 00000000..948439c5 --- /dev/null +++ b/themes/bocchi-the-vscode-theme.yaml @@ -0,0 +1,53 @@ +name: "Bocchi-the-vscode-theme" +source: + marketplace_id: "ReadingSteiner.bocchi-the-vscode-theme" + version: "0.0.3" + installs: 5120 + rating: 4.5 + ratings: 2 + author: "ReadingSteiner" + repo: "https://github.com/Arunava-K/Bocchi-the-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ReadingSteiner.bocchi-the-vscode-theme" + formats: null +colors: + bg: "#FEC1C6" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#AB800D" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F9F9F9" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#805909" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: 13 + pair: null + contrast: + fg: 79 + black: 79 + red: 46.9 + green: 20.9 + yellow: 36.4 + blue: 46.2 + magenta: 43.9 + cyan: 26.2 + white: 24.1 + brightBlack: 51.7 + brightRed: 35.1 + brightGreen: 10.8 + brightYellow: 53.9 + brightBlue: 33.6 + brightMagenta: 28.4 + brightCyan: 18.6 + brightWhite: 28.1 diff --git a/themes/bolsonarodarktheme.yaml b/themes/bolsonarodarktheme.yaml new file mode 100644 index 00000000..4e703e64 --- /dev/null +++ b/themes/bolsonarodarktheme.yaml @@ -0,0 +1,53 @@ +name: "BolsonaroDarkTheme" +source: + marketplace_id: "higordevv.bolsonarodarktheme" + version: "0.0.1" + installs: 1824 + rating: 5 + ratings: 3 + author: "Higor Devkkkjj" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=higordevv.bolsonarodarktheme" + formats: null +colors: + bg: "#111311" + fg: "#CB6767" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFBF00" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#D3FF00" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 36.9 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.2 + cyan: 48 + white: 73.7 + brightBlack: 22.4 + brightRed: 39 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 96.4 diff --git a/themes/borders-dark--borders-blue.yaml b/themes/borders-dark--borders-blue.yaml new file mode 100644 index 00000000..42609855 --- /dev/null +++ b/themes/borders-dark--borders-blue.yaml @@ -0,0 +1,53 @@ +name: "Borders Dark (Borders Blue)" +source: + marketplace_id: "bloumbs.borders-dark" + version: "1.7.0" + installs: 4685 + rating: 0 + ratings: 0 + author: "Bloumbs" + repo: "https://github.com/Bloumbs/Borders-Dark" + url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" + formats: null +colors: + bg: "#12171D" + fg: "#E5E8EB" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#84DF44" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 253 + pair: null + contrast: + fg: 91.7 + black: 0 + red: 42.1 + green: 62.3 + yellow: 70.6 + blue: 54.7 + magenta: 45.2 + cyan: 54.6 + white: 83.1 + brightBlack: 35.6 + brightRed: 38.5 + brightGreen: 72.9 + brightYellow: 70.6 + brightBlue: 41.5 + brightMagenta: 12.8 + brightCyan: 54.6 + brightWhite: 83.1 diff --git a/themes/borders-dark--borders-dark.yaml b/themes/borders-dark--borders-dark.yaml new file mode 100644 index 00000000..b831256d --- /dev/null +++ b/themes/borders-dark--borders-dark.yaml @@ -0,0 +1,53 @@ +name: "Borders Dark (Borders Dark)" +source: + marketplace_id: "bloumbs.borders-dark" + version: "1.7.0" + installs: 4685 + rating: 0 + ratings: 0 + author: "Bloumbs" + repo: "https://github.com/Bloumbs/Borders-Dark" + url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" + formats: null +colors: + bg: "#202020" + fg: "#EEEEEE" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#84DF44" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.6 + black: 0 + red: 41 + green: 61.2 + yellow: 69.5 + blue: 53.6 + magenta: 44 + cyan: 53.5 + white: 81.9 + brightBlack: 34.4 + brightRed: 37.3 + brightGreen: 71.8 + brightYellow: 69.5 + brightBlue: 40.4 + brightMagenta: 11.6 + brightCyan: 53.5 + brightWhite: 81.9 diff --git a/themes/borders-dark--borders-darker.yaml b/themes/borders-dark--borders-darker.yaml new file mode 100644 index 00000000..bf18cd9f --- /dev/null +++ b/themes/borders-dark--borders-darker.yaml @@ -0,0 +1,53 @@ +name: "Borders Dark (Borders Darker)" +source: + marketplace_id: "bloumbs.borders-dark" + version: "1.7.0" + installs: 4685 + rating: 0 + ratings: 0 + author: "Bloumbs" + repo: "https://github.com/Bloumbs/Borders-Dark" + url: "https://marketplace.visualstudio.com/items?itemName=bloumbs.borders-dark" + formats: null +colors: + bg: "#141414" + fg: "#EEEEEE" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#84DF44" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96 + black: 0 + red: 42.4 + green: 62.6 + yellow: 70.8 + blue: 54.9 + magenta: 45.4 + cyan: 54.8 + white: 83.3 + brightBlack: 35.8 + brightRed: 38.7 + brightGreen: 73.2 + brightYellow: 70.8 + brightBlue: 41.8 + brightMagenta: 13 + brightCyan: 54.8 + brightWhite: 83.3 diff --git a/themes/borealis-night-theme.yaml b/themes/borealis-night-theme.yaml new file mode 100644 index 00000000..1539630a --- /dev/null +++ b/themes/borealis-night-theme.yaml @@ -0,0 +1,53 @@ +name: "Borealis night theme" +source: + marketplace_id: "AlejandroMejia.borealis-vscode-theme" + version: "1.0.2" + installs: 825 + rating: 5 + ratings: 1 + author: "Alejandro Mejia" + repo: "https://github.com/HX-AQuintero/awesome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlejandroMejia.borealis-vscode-theme" + formats: null +colors: + bg: "#0E0E1A" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#808080" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 283 + pair: null + contrast: + fg: 107.5 + black: 0 + red: 37.1 + green: 86.1 + yellow: 102.3 + blue: 15.8 + magenta: 45.8 + cyan: 91.8 + white: 107.5 + brightBlack: 34.4 + brightRed: 37.1 + brightGreen: 86.1 + brightYellow: 102.3 + brightBlue: 15.8 + brightMagenta: 45.8 + brightCyan: 91.8 + brightWhite: 107.5 diff --git a/themes/borealis-theme.yaml b/themes/borealis-theme.yaml new file mode 100644 index 00000000..0a1efb50 --- /dev/null +++ b/themes/borealis-theme.yaml @@ -0,0 +1,53 @@ +name: "borealis-theme" +source: + marketplace_id: "Misophistful.borealis-theme" + version: "0.1.4" + installs: 1720 + rating: 5 + ratings: 2 + author: "Misophistful" + repo: "https://github.com/Misophistful/borealis-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Misophistful.borealis-theme" + formats: null +colors: + bg: "#282C33" + fg: "#EBECF0" + black: "#282C33" + red: "#F7B7B7" + green: "#BFEEC5" + yellow: "#EEDDAF" + blue: "#B2D8FA" + magenta: "#E7C7F9" + cyan: "#C8FAF2" + white: "#EBECF0" + brightBlack: "#3D424C" + brightRed: "#F38E8E" + brightGreen: "#9EEEA9" + brightYellow: "#ECD28B" + brightBlue: "#8DC5F7" + brightMagenta: "#D8A4F7" + brightCyan: "#A6F8EB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 262 + pair: null + contrast: + fg: 91.3 + black: 0 + red: 68.6 + green: 85.2 + yellow: 82.4 + blue: 76 + magenta: 75.3 + cyan: 93.8 + white: 91.3 + brightBlack: 0 + brightRed: 52.5 + brightGreen: 81.1 + brightYellow: 76.3 + brightBlue: 64.2 + brightMagenta: 59.9 + brightCyan: 89.3 + brightWhite: 103.7 diff --git a/themes/botany-theme.yaml b/themes/botany-theme.yaml new file mode 100644 index 00000000..7990ef90 --- /dev/null +++ b/themes/botany-theme.yaml @@ -0,0 +1,53 @@ +name: "Botany Theme" +source: + marketplace_id: "prabinpanta0.theme-botany" + version: "1.0.2" + installs: 78 + rating: 0 + ratings: 0 + author: "Prabin Panta" + repo: "https://github.com/prabinpanta0/theme-botany" + url: "https://marketplace.visualstudio.com/items?itemName=prabinpanta0.theme-botany" + formats: null +colors: + bg: "#273136" + fg: "#D1DED3" + black: "#323E45" + red: "#8FB996" + green: "#7EB08A" + yellow: "#D2B48C" + blue: "#7EA4B0" + magenta: "#BA8EAF" + cyan: "#7EA4B0" + white: "#D1DED3" + brightBlack: "#323E45" + brightRed: "#8FB996" + brightGreen: "#7EB08A" + brightYellow: "#D2B48C" + brightBlue: "#7EA4B0" + brightMagenta: "#BA8EAF" + brightCyan: "#7EA4B0" + brightWhite: "#D1DED3" +meta: + mode: "dark" + accent: "teal" + hue: 230 + pair: null + contrast: + fg: 79.5 + black: 0 + red: 53.9 + green: 48.3 + yellow: 59.4 + blue: 44.8 + magenta: 43.4 + cyan: 44.8 + white: 79.5 + brightBlack: 0 + brightRed: 53.9 + brightGreen: 48.3 + brightYellow: 59.4 + brightBlue: 44.8 + brightMagenta: 43.4 + brightCyan: 44.8 + brightWhite: 79.5 diff --git a/themes/braver-s-solarized.yaml b/themes/braver-s-solarized.yaml new file mode 100644 index 00000000..745b939d --- /dev/null +++ b/themes/braver-s-solarized.yaml @@ -0,0 +1,54 @@ +name: "Braver's Solarized" +source: + marketplace_id: "Braver.vscode-solarized" + version: "2.1.0" + installs: 38121 + rating: 4.17 + ratings: 6 + author: "Koen Lageveen" + repo: "https://github.com/braver/vscode-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=Braver.vscode-solarized" + formats: + zed: "https://raw.githubusercontent.com/braver/vscode-solarized/master/themes/braver-solarized-dark-color-theme.json" +colors: + bg: "#FDF6E3" + fg: "#657B83" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.7 + black: 93.7 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 0 + brightBlack: 96.4 + brightRed: 65.8 + brightGreen: 71.6 + brightYellow: 65.7 + brightBlue: 53.5 + brightMagenta: 65 + brightCyan: 46.7 + brightWhite: 0 diff --git a/themes/brid-purple--brid-purple-garden-dark.yaml b/themes/brid-purple--brid-purple-garden-dark.yaml new file mode 100644 index 00000000..576ad007 --- /dev/null +++ b/themes/brid-purple--brid-purple-garden-dark.yaml @@ -0,0 +1,53 @@ +name: "Brid · Purple (Brid Purple Garden Dark)" +source: + marketplace_id: "layon-extensions.brid-purple-garden" + version: "1.0.0" + installs: 11 + rating: 0 + ratings: 0 + author: "layon-extensions" + repo: "https://github.com/Fernando-Leon/theme-brid" + url: "https://marketplace.visualstudio.com/items?itemName=layon-extensions.brid-purple-garden" + formats: null +colors: + bg: "#0D0713" + fg: "#E2D9F3" + black: "#1A0F26" + red: "#FF6B6B" + green: "#6AE0A0" + yellow: "#FFB347" + blue: "#6AE0FF" + magenta: "#B084FF" + cyan: "#6AE0FF" + white: "#E2D9F3" + brightBlack: "#3D2A5A" + brightRed: "#FF8E8E" + brightGreen: "#8AF0B8" + brightYellow: "#FFD080" + brightBlue: "#8AECFF" + brightMagenta: "#C4A3FF" + brightCyan: "#8AECFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 307 + pair: null + contrast: + fg: 85.8 + black: 0 + red: 49 + green: 74.5 + yellow: 69.9 + blue: 78.7 + magenta: 48.5 + cyan: 78.7 + white: 85.8 + brightBlack: 0 + brightRed: 58.9 + brightGreen: 85.1 + brightYellow: 82.3 + brightBlue: 86.3 + brightMagenta: 61.2 + brightCyan: 86.3 + brightWhite: 107.7 diff --git a/themes/brid-purple--brid-purple-garden-light.yaml b/themes/brid-purple--brid-purple-garden-light.yaml new file mode 100644 index 00000000..11d14eea --- /dev/null +++ b/themes/brid-purple--brid-purple-garden-light.yaml @@ -0,0 +1,53 @@ +name: "Brid · Purple (Brid Purple Garden Light)" +source: + marketplace_id: "layon-extensions.brid-purple-garden" + version: "1.0.0" + installs: 11 + rating: 0 + ratings: 0 + author: "layon-extensions" + repo: "https://github.com/Fernando-Leon/theme-brid" + url: "https://marketplace.visualstudio.com/items?itemName=layon-extensions.brid-purple-garden" + formats: null +colors: + bg: "#F4EEFF" + fg: "#2D1A4A" + black: "#2D1A4A" + red: "#D4202A" + green: "#2A8030" + yellow: "#CC6600" + blue: "#0066CC" + magenta: "#8A5CFF" + cyan: "#0088AA" + white: "#F4EEFF" + brightBlack: "#4A3380" + brightRed: "#FF4040" + brightGreen: "#40A040" + brightYellow: "#FF8800" + brightBlue: "#2288FF" + brightMagenta: "#B084FF" + brightCyan: "#00AACC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 93.6 + black: 93.6 + red: 65.2 + green: 65.4 + yellow: 56.7 + blue: 68.4 + magenta: 59.4 + cyan: 59.1 + white: 0 + brightBlack: 84.6 + brightRed: 52 + brightGreen: 51.7 + brightYellow: 37.9 + brightBlue: 53.1 + brightMagenta: 44.6 + brightCyan: 44 + brightWhite: 0 diff --git a/themes/bright-colors.yaml b/themes/bright-colors.yaml new file mode 100644 index 00000000..e42d3ca5 --- /dev/null +++ b/themes/bright-colors.yaml @@ -0,0 +1,53 @@ +name: "Bright Colors" +source: + marketplace_id: "nikhil2007.Bright-Color" + version: "1.4.2" + installs: 17814 + rating: 5 + ratings: 2 + author: "Nikhil Nath Jha" + repo: "https://github.com/jhanikhilnath/bright_colors_theme" + url: "https://marketplace.visualstudio.com/items?itemName=nikhil2007.Bright-Color" + formats: null +colors: + bg: "#193549" + fg: "#FFFFFF" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FFC600" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FFC600" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 242 + pair: null + contrast: + fg: 102.1 + black: 0 + red: 42.3 + green: 61.5 + yellow: 71.3 + blue: 33.9 + magenta: 59.5 + cyan: 87.9 + white: 102.1 + brightBlack: 9.8 + brightRed: 42.3 + brightGreen: 61.5 + brightYellow: 71.3 + brightBlue: 33.9 + brightMagenta: 59.5 + brightCyan: 87.9 + brightWhite: 102.1 diff --git a/themes/brigitte-helm.yaml b/themes/brigitte-helm.yaml new file mode 100644 index 00000000..a64eb1e5 --- /dev/null +++ b/themes/brigitte-helm.yaml @@ -0,0 +1,53 @@ +name: "Brigitte Helm" +source: + marketplace_id: "TristanMuller.brigittehelm" + version: "0.0.2" + installs: 551 + rating: 0 + ratings: 0 + author: "Tristan Muller" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TristanMuller.brigittehelm" + formats: null +colors: + bg: "#C9C3BA" + fg: "#000000" + black: "#000000" + red: "#C00000" + green: "#008000" + yellow: "#808000" + blue: "#0000C0" + magenta: "#B000B0" + cyan: "#00B0B0" + white: "#FFFFE0" + brightBlack: "#505050" + brightRed: "#F04040" + brightGreen: "#80F080" + brightYellow: "#F0F060" + brightBlue: "#2080F0" + brightMagenta: "#F060F0" + brightCyan: "#80F0F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: 78 + pair: null + contrast: + fg: 71.9 + black: 71.9 + red: 45.2 + green: 40.5 + yellow: 34.6 + blue: 59.9 + magenta: 43.6 + cyan: 17.3 + white: 34.5 + brightBlack: 53.8 + brightRed: 30 + brightGreen: 11 + brightYellow: 21.8 + brightBlue: 31.5 + brightMagenta: 18.2 + brightCyan: 15 + brightWhite: 35.9 diff --git a/themes/broly-theme.yaml b/themes/broly-theme.yaml new file mode 100644 index 00000000..673d52a3 --- /dev/null +++ b/themes/broly-theme.yaml @@ -0,0 +1,53 @@ +name: "Broly-theme" +source: + marketplace_id: "dev-alm.broly-theme" + version: "0.0.7" + installs: 1604 + rating: 0 + ratings: 0 + author: "Gustavo Cezar de Almeida" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dev-alm.broly-theme" + formats: null +colors: + bg: "#000000" + fg: "#FFD700" + black: "#FFFFFF" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFF6F6" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 84.3 + black: 107.9 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 107.9 + brightBlack: 107.9 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 103.2 diff --git a/themes/buby.yaml b/themes/buby.yaml new file mode 100644 index 00000000..9f67cb36 --- /dev/null +++ b/themes/buby.yaml @@ -0,0 +1,53 @@ +name: "buby" +source: + marketplace_id: "kerneldevs.buby" + version: "0.0.1" + installs: 85 + rating: 0 + ratings: 0 + author: "kernel_devs" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kerneldevs.buby" + formats: null +colors: + bg: "#D9D2E9" + fg: "#8E7CC3" + black: "#D9D2E9" + red: "#B4A7D6" + green: "#594197" + yellow: "#674EA7" + blue: "#5C4497" + magenta: "#351C75" + cyan: "#7A62B7" + white: "#9988C8" + brightBlack: "#CEC6E4" + brightRed: "#7767A4" + brightGreen: "#7A62B7" + brightYellow: "#674EA7" + brightBlue: "#5C4497" + brightMagenta: "#351C75" + brightCyan: "#7A62B7" + brightWhite: "#8E7CC3" +meta: + mode: "light" + accent: "magenta" + hue: 300 + pair: null + contrast: + fg: 39.3 + black: 0 + red: 19.5 + green: 63.1 + yellow: 57.7 + blue: 62.1 + magenta: 74.8 + cyan: 49.7 + white: 34 + brightBlack: 0 + brightRed: 49.7 + brightGreen: 49.7 + brightYellow: 57.7 + brightBlue: 62.1 + brightMagenta: 74.8 + brightCyan: 49.7 + brightWhite: 39.3 diff --git a/themes/bulbul-theme.yaml b/themes/bulbul-theme.yaml new file mode 100644 index 00000000..0f9f30d8 --- /dev/null +++ b/themes/bulbul-theme.yaml @@ -0,0 +1,53 @@ +name: "Bulbul Theme" +source: + marketplace_id: "Bulbul.bulbul-theme" + version: "0.0.1" + installs: 40 + rating: 0 + ratings: 0 + author: "Bulbul" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Bulbul.bulbul-theme" + formats: null +colors: + bg: "#323131" + fg: "#C7C7C7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#6FFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 67.3 + black: 0 + red: 22.3 + green: 48.6 + yellow: 81.2 + blue: 23 + magenta: 25.4 + cyan: 43.2 + white: 89 + brightBlack: 17.6 + brightRed: 34.2 + brightGreen: 59.1 + brightYellow: 91.2 + brightBlue: 35.6 + brightMagenta: 41 + brightCyan: 51 + brightWhite: 85.6 diff --git a/themes/butter.yaml b/themes/butter.yaml new file mode 100644 index 00000000..06986460 --- /dev/null +++ b/themes/butter.yaml @@ -0,0 +1,53 @@ +name: "Butter" +source: + marketplace_id: "SaiRohith.DarkButter" + version: "0.0.8" + installs: 2978 + rating: 5 + ratings: 2 + author: "SaiRohith" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SaiRohith.DarkButter" + formats: null +colors: + bg: "#000000" + fg: "#BAC6DB" + black: "#01060E" + red: "#EA6C73" + green: "#6A62B3" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#9B94FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#5A4CD9" + brightYellow: "#5754FF" + brightBlue: "#69C8FF" + brightMagenta: "#A099FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 71.6 + black: 0 + red: 45.1 + green: 25.9 + yellow: 67.6 + blue: 61.6 + magenta: 50.9 + cyan: 78.9 + white: 72.7 + brightBlack: 23.9 + brightRed: 47.6 + brightGreen: 22.2 + brightYellow: 27.3 + brightBlue: 67.8 + brightMagenta: 53.5 + brightCyan: 81.9 + brightWhite: 107.9 diff --git a/themes/c-c-theme--c-c-theme.yaml b/themes/c-c-theme--c-c-theme.yaml new file mode 100644 index 00000000..b80d01c7 --- /dev/null +++ b/themes/c-c-theme--c-c-theme.yaml @@ -0,0 +1,53 @@ +name: "C/C++ Theme (C/C++ Theme)" +source: + marketplace_id: "Xen.ccpp-theme" + version: "0.3.4" + installs: 18890 + rating: 5 + ratings: 2 + author: "Xen" + repo: "https://github.com/xenkuo/ccpp_theme" + url: "https://marketplace.visualstudio.com/items?itemName=Xen.ccpp-theme" + formats: null +colors: + bg: "#282A36" + fg: "#F5F5EF" + black: "#21222C" + red: "#FF5555" + green: "#5FEA77" + yellow: "#EAF48C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F5F5EF" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 278 + pair: null + contrast: + fg: 97.1 + black: 0 + red: 40.4 + green: 74.1 + yellow: 91.8 + blue: 50.7 + magenta: 51.6 + cyan: 81 + white: 97.1 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/cabalyon.yaml b/themes/cabalyon.yaml new file mode 100644 index 00000000..367169b1 --- /dev/null +++ b/themes/cabalyon.yaml @@ -0,0 +1,53 @@ +name: "Cabalyon" +source: + marketplace_id: "WeeCode.cabalyon" + version: "0.0.2" + installs: 89 + rating: 0 + ratings: 0 + author: "WeeC0de" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=WeeCode.cabalyon" + formats: null +colors: + bg: "#0F0F0F" + fg: "#00FF9F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 88 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/calm-days-sober-nights--calm-days-sober-nights-day.yaml b/themes/calm-days-sober-nights--calm-days-sober-nights-day.yaml new file mode 100644 index 00000000..a3e219e5 --- /dev/null +++ b/themes/calm-days-sober-nights--calm-days-sober-nights-day.yaml @@ -0,0 +1,53 @@ +name: "Calm Days, Sober Nights (Calm Days, Sober Nights - Day)" +source: + marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" + version: "7.1.6" + installs: 6374 + rating: 5 + ratings: 4 + author: "Giovani Cascaes" + repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" + formats: null +colors: + bg: "#F0F4F7" + fg: "#6B7682" + black: "#000000" + red: "#EB6C81" + green: "#00B342" + yellow: "#EDC045" + blue: "#2EA0D1" + magenta: "#B375C7" + cyan: "#46ACBA" + white: "#C7D4E0" + brightBlack: "#94A2B0" + brightRed: "#F07186" + brightGreen: "#00B342" + brightYellow: "#F2C549" + brightBlue: "#36A6D6" + brightMagenta: "#B87ACC" + brightCyan: "#4CB2BF" + brightWhite: "#DDE7F0" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 65.2 + black: 99.1 + red: 49.2 + green: 46 + yellow: 23.8 + blue: 49 + magenta: 53.7 + cyan: 44.7 + white: 16.8 + brightBlack: 44 + brightRed: 46.9 + brightGreen: 46 + brightYellow: 21.1 + brightBlue: 46.1 + brightMagenta: 51.3 + brightCyan: 41.8 + brightWhite: 0 diff --git a/themes/calm-days-sober-nights--calm-days-sober-nights-night.yaml b/themes/calm-days-sober-nights--calm-days-sober-nights-night.yaml new file mode 100644 index 00000000..e74b8a3b --- /dev/null +++ b/themes/calm-days-sober-nights--calm-days-sober-nights-night.yaml @@ -0,0 +1,53 @@ +name: "Calm Days, Sober Nights (Calm Days, Sober Nights - Night)" +source: + marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" + version: "7.1.6" + installs: 6374 + rating: 5 + ratings: 4 + author: "Giovani Cascaes" + repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" + formats: null +colors: + bg: "#232530" + fg: "#D3D6E8" + black: "#000000" + red: "#ED7480" + green: "#70CC92" + yellow: "#F2D988" + blue: "#6ED0FA" + magenta: "#EAB9FA" + cyan: "#90D7E0" + white: "#DFE3FA" + brightBlack: "#6A708C" + brightRed: "#F27985" + brightGreen: "#70CC92" + brightYellow: "#F7DD8D" + brightBlue: "#73D5FF" + brightMagenta: "#EFBFFF" + brightCyan: "#95DDE6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 277 + pair: null + contrast: + fg: 79.2 + black: 0 + red: 44.9 + green: 62 + yellow: 81.4 + blue: 68.3 + magenta: 71.6 + cyan: 72.3 + white: 87.3 + brightBlack: 24.9 + brightRed: 47.4 + brightGreen: 62 + brightYellow: 84 + brightBlue: 71.1 + brightMagenta: 74.9 + brightCyan: 75.8 + brightWhite: 104.9 diff --git a/themes/calm-days-sober-nights-calm-days-sober-nights-day-sky.yaml b/themes/calm-days-sober-nights-calm-days-sober-nights-day-sky.yaml new file mode 100644 index 00000000..cae9f465 --- /dev/null +++ b/themes/calm-days-sober-nights-calm-days-sober-nights-day-sky.yaml @@ -0,0 +1,53 @@ +name: "Calm Days, Sober Nights (Calm Days, Sober Nights - Day (Sky))" +source: + marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" + version: "7.1.6" + installs: 6374 + rating: 5 + ratings: 4 + author: "Giovani Cascaes" + repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" + formats: null +colors: + bg: "#FFFFFF" + fg: "#687082" + black: "#000000" + red: "#EB6C81" + green: "#00B342" + yellow: "#EDC045" + blue: "#2EA0D1" + magenta: "#B375C7" + cyan: "#46ACBA" + white: "#C5CDE0" + brightBlack: "#929BB0" + brightRed: "#F07186" + brightGreen: "#00B342" + brightYellow: "#F2C549" + brightBlue: "#36A6D6" + brightMagenta: "#B87ACC" + brightCyan: "#4CB2BF" + brightWhite: "#DAE1F0" +meta: + mode: "light" + accent: "green" + hue: null + pair: "Calm Days, Sober Nights (Calm Days, Sober Nights - Night (Sky))" + contrast: + fg: 74.4 + black: 106 + red: 56.1 + green: 53 + yellow: 30.8 + blue: 55.9 + magenta: 60.6 + cyan: 51.6 + white: 26.8 + brightBlack: 53.7 + brightRed: 53.8 + brightGreen: 53 + brightYellow: 28 + brightBlue: 53.1 + brightMagenta: 58.2 + brightCyan: 48.7 + brightWhite: 15.4 diff --git a/themes/calm-days-sober-nights-calm-days-sober-nights-night-sky.yaml b/themes/calm-days-sober-nights-calm-days-sober-nights-night-sky.yaml new file mode 100644 index 00000000..ab2b5ff6 --- /dev/null +++ b/themes/calm-days-sober-nights-calm-days-sober-nights-night-sky.yaml @@ -0,0 +1,53 @@ +name: "Calm Days, Sober Nights (Calm Days, Sober Nights - Night (Sky))" +source: + marketplace_id: "giovanicascaes.calm-days-sober-nights-theme-vscode" + version: "7.1.6" + installs: 6374 + rating: 5 + ratings: 4 + author: "Giovani Cascaes" + repo: "https://github.com/giovanicascaes/calm-days-sober-nights-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=giovanicascaes.calm-days-sober-nights-theme-vscode" + formats: null +colors: + bg: "#192030" + fg: "#D3DAE8" + black: "#000000" + red: "#ED7480" + green: "#70CC92" + yellow: "#F2D988" + blue: "#6ED0FA" + magenta: "#EAB9FA" + cyan: "#90D7E0" + white: "#D2DDFA" + brightBlack: "#63708C" + brightRed: "#F27985" + brightGreen: "#70CC92" + brightYellow: "#F7DD8D" + brightBlue: "#73D5FF" + brightMagenta: "#EFBFFF" + brightCyan: "#95DDE6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 266 + pair: "Calm Days, Sober Nights (Calm Days, Sober Nights - Day (Sky))" + contrast: + fg: 81.7 + black: 0 + red: 45.8 + green: 62.8 + yellow: 82.2 + blue: 69.1 + magenta: 72.4 + cyan: 73.2 + white: 83.9 + brightBlack: 25.2 + brightRed: 48.2 + brightGreen: 62.8 + brightYellow: 84.8 + brightBlue: 72 + brightMagenta: 75.8 + brightCyan: 76.7 + brightWhite: 105.7 diff --git a/themes/calm-down-theme.yaml b/themes/calm-down-theme.yaml new file mode 100644 index 00000000..6936f1e9 --- /dev/null +++ b/themes/calm-down-theme.yaml @@ -0,0 +1,53 @@ +name: "calm-down-theme" +source: + marketplace_id: "DanielEichwald.vscode-calm-down-theme" + version: "1.1.0" + installs: 220 + rating: 5 + ratings: 1 + author: "Daniel Eichwald" + repo: "https://github.com/DE-Danloc/vscode-calm-down-theme/blob/master/README.md" + url: "https://marketplace.visualstudio.com/items?itemName=DanielEichwald.vscode-calm-down-theme" + formats: null +colors: + bg: "#27272C" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 76.5 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.1 + magenta: 27.4 + cyan: 45.2 + white: 87.7 + brightBlack: 19.7 + brightRed: 36.2 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.7 + brightMagenta: 43 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/calmppuccin--calmppuccin-frappe.yaml b/themes/calmppuccin--calmppuccin-frappe.yaml new file mode 100644 index 00000000..4f8e6262 --- /dev/null +++ b/themes/calmppuccin--calmppuccin-frappe.yaml @@ -0,0 +1,53 @@ +name: "Calmppuccin (Calmppuccin Frappe)" +source: + marketplace_id: "kenan-salar.calmppuccin-vscode" + version: "1.9.9" + installs: 6431 + rating: 5 + ratings: 4 + author: "Kenan Salar" + repo: "https://github.com/KenanSalar/calmppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" + formats: null +colors: + bg: "#2F3344" + fg: "#C6D0F5" + black: "#51576D" + red: "#DD7D9A" + green: "#A6D189" + yellow: "#E5C890" + blue: "#79A0DF" + magenta: "#F4B8E4" + cyan: "#89D3CA" + white: "#A5ADCE" + brightBlack: "#626880" + brightRed: "#E67172" + brightGreen: "#8EC772" + brightYellow: "#D9BA73" + brightBlue: "#7B9EF0" + brightMagenta: "#F2A4DB" + brightCyan: "#5ABFB5" + brightWhite: "#B5BFE2" +meta: + mode: "dark" + accent: "orange" + hue: 274 + pair: null + contrast: + fg: 72.6 + black: 11.1 + red: 42.1 + green: 65.3 + yellow: 69.3 + blue: 44.2 + magenta: 68.6 + cyan: 65.9 + white: 52.4 + brightBlack: 18.2 + brightRed: 39.4 + brightGreen: 58 + brightYellow: 61.1 + brightBlue: 44.7 + brightMagenta: 60.7 + brightCyan: 53.1 + brightWhite: 62.5 diff --git a/themes/calmppuccin--calmppuccin-latte.yaml b/themes/calmppuccin--calmppuccin-latte.yaml new file mode 100644 index 00000000..3d6b144c --- /dev/null +++ b/themes/calmppuccin--calmppuccin-latte.yaml @@ -0,0 +1,53 @@ +name: "Calmppuccin (Calmppuccin Latte)" +source: + marketplace_id: "kenan-salar.calmppuccin-vscode" + version: "1.9.9" + installs: 6431 + rating: 5 + ratings: 4 + author: "Kenan Salar" + repo: "https://github.com/KenanSalar/calmppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" + formats: null +colors: + bg: "#E9EAEE" + fg: "#474A63" + black: "#5C5F77" + red: "#D20F39" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1C5EE4" + magenta: "#EA76CB" + cyan: "#179299" + white: "#5E617E" + brightBlack: "#6C6F85" + brightRed: "#DE293E" + brightGreen: "#49AF3D" + brightYellow: "#EEA02D" + brightBlue: "#456EFF" + brightMagenta: "#FE85D8" + brightCyan: "#2D9FA8" + brightWhite: "#BCC0CC" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 77.3 + black: 68.8 + red: 62.3 + green: 48.1 + yellow: 38.3 + blue: 64.6 + magenta: 38.6 + cyan: 52.2 + white: 67.7 + brightBlack: 61.8 + brightRed: 58.3 + brightGreen: 41.2 + brightYellow: 29.9 + brightBlue: 56.5 + brightMagenta: 30.4 + brightCyan: 46 + brightWhite: 21.6 diff --git a/themes/calmppuccin--calmppuccin-macchiato.yaml b/themes/calmppuccin--calmppuccin-macchiato.yaml new file mode 100644 index 00000000..d7578b7f --- /dev/null +++ b/themes/calmppuccin--calmppuccin-macchiato.yaml @@ -0,0 +1,53 @@ +name: "Calmppuccin (Calmppuccin Macchiato)" +source: + marketplace_id: "kenan-salar.calmppuccin-vscode" + version: "1.9.9" + installs: 6431 + rating: 5 + ratings: 4 + author: "Kenan Salar" + repo: "https://github.com/KenanSalar/calmppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" + formats: null +colors: + bg: "#24273A" + fg: "#C2CAE9" + black: "#494D64" + red: "#D87C97" + green: "#A6DA95" + yellow: "#EED49F" + blue: "#799FDB" + magenta: "#F5BDE6" + cyan: "#85CAC2" + white: "#A5ADCB" + brightBlack: "#5B6078" + brightRed: "#EC7486" + brightGreen: "#8CCF7F" + brightYellow: "#E1C682" + brightBlue: "#78A1F6" + brightMagenta: "#F2A9DD" + brightCyan: "#63CBC0" + brightWhite: "#B8C0E0" +meta: + mode: "dark" + accent: "red" + hue: 277 + pair: null + contrast: + fg: 71.5 + black: 10 + red: 43.3 + green: 72.3 + yellow: 78.7 + blue: 46.2 + magenta: 73.3 + cyan: 63.7 + white: 54.8 + brightBlack: 17.5 + brightRed: 44.4 + brightGreen: 64.3 + brightYellow: 70.1 + brightBlue: 48.6 + brightMagenta: 65 + brightCyan: 62 + brightWhite: 65.7 diff --git a/themes/calmppuccin--calmppuccin-mocha.yaml b/themes/calmppuccin--calmppuccin-mocha.yaml new file mode 100644 index 00000000..2e2587ee --- /dev/null +++ b/themes/calmppuccin--calmppuccin-mocha.yaml @@ -0,0 +1,53 @@ +name: "Calmppuccin (Calmppuccin Mocha)" +source: + marketplace_id: "kenan-salar.calmppuccin-vscode" + version: "1.9.9" + installs: 6431 + rating: 5 + ratings: 4 + author: "Kenan Salar" + repo: "https://github.com/KenanSalar/calmppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" + formats: null +colors: + bg: "#1D1D2C" + fg: "#AEB6CF" + black: "#45475A" + red: "#D47B95" + green: "#95CE8F" + yellow: "#D6C08F" + blue: "#789CD6" + magenta: "#CFA0C2" + cyan: "#81C4BC" + white: "#A6ADC8" + brightBlack: "#585B70" + brightRed: "#E27894" + brightGreen: "#89D88B" + brightYellow: "#E4CC8C" + brightBlue: "#6796E2" + brightMagenta: "#E6A3D1" + brightCyan: "#6BD7CA" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 61.2 + black: 9.4 + red: 43.8 + green: 66.6 + yellow: 67.9 + blue: 46.3 + magenta: 56.6 + cyan: 62.1 + white: 56.4 + brightBlack: 17 + brightRed: 45.6 + brightGreen: 70.2 + brightYellow: 74.9 + brightBlue: 43.6 + brightMagenta: 62 + brightCyan: 70 + brightWhite: 68.2 diff --git a/themes/calmppuccin--calmppuccin-nitro-cold-brew.yaml b/themes/calmppuccin--calmppuccin-nitro-cold-brew.yaml new file mode 100644 index 00000000..3f235fa2 --- /dev/null +++ b/themes/calmppuccin--calmppuccin-nitro-cold-brew.yaml @@ -0,0 +1,53 @@ +name: "Calmppuccin (Calmppuccin Nitro-cold-brew)" +source: + marketplace_id: "kenan-salar.calmppuccin-vscode" + version: "1.9.9" + installs: 6431 + rating: 5 + ratings: 4 + author: "Kenan Salar" + repo: "https://github.com/KenanSalar/calmppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" + formats: null +colors: + bg: "#181825" + fg: "#A7AEC5" + black: "#404253" + red: "#D17A94" + green: "#91C78B" + yellow: "#CCB789" + blue: "#7698CF" + magenta: "#C298B6" + cyan: "#7FBEB7" + white: "#A2A9C2" + brightBlack: "#4F5264" + brightRed: "#DD7792" + brightGreen: "#86D189" + brightYellow: "#DAC488" + brightBlue: "#6791D6" + brightMagenta: "#DDA0CA" + brightCyan: "#6ACFC4" + brightWhite: "#BAC1DB" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 57.4 + black: 8.2 + red: 43.6 + green: 63.6 + yellow: 63.4 + blue: 44.8 + magenta: 52 + cyan: 59.7 + white: 54.7 + brightBlack: 14 + brightRed: 44.9 + brightGreen: 67.3 + brightYellow: 70.6 + brightBlue: 41.6 + brightMagenta: 59.8 + brightCyan: 66.6 + brightWhite: 68.3 diff --git a/themes/calmppuccin--calmppuccin-oledppuccin.yaml b/themes/calmppuccin--calmppuccin-oledppuccin.yaml new file mode 100644 index 00000000..c85c7fa0 --- /dev/null +++ b/themes/calmppuccin--calmppuccin-oledppuccin.yaml @@ -0,0 +1,53 @@ +name: "Calmppuccin (Calmppuccin Oledppuccin)" +source: + marketplace_id: "kenan-salar.calmppuccin-vscode" + version: "1.9.9" + installs: 6431 + rating: 5 + ratings: 4 + author: "Kenan Salar" + repo: "https://github.com/KenanSalar/calmppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kenan-salar.calmppuccin-vscode" + formats: null +colors: + bg: "#0B0B11" + fg: "#8C92A7" + black: "#333542" + red: "#BD7087" + green: "#85B480" + yellow: "#BBA981" + blue: "#708FC0" + magenta: "#AD8BA4" + cyan: "#78AFA9" + white: "#959BAF" + brightBlack: "#31333F" + brightRed: "#C5738B" + brightGreen: "#92C78C" + brightYellow: "#C9B487" + brightBlue: "#7598CC" + brightMagenta: "#BD94B2" + brightCyan: "#81C0B9" + brightWhite: "#A1A9C2" +meta: + mode: "dark" + accent: "red" + hue: 285 + pair: null + contrast: + fg: 43.6 + black: 0 + red: 38.1 + green: 55.1 + yellow: 56.4 + blue: 41.3 + magenta: 44.9 + cyan: 53.3 + white: 48.2 + brightBlack: 0 + brightRed: 40.4 + brightGreen: 64.8 + brightYellow: 62.8 + brightBlue: 45.6 + brightMagenta: 50.8 + brightCyan: 61.9 + brightWhite: 55.7 diff --git a/themes/camo.yaml b/themes/camo.yaml new file mode 100644 index 00000000..9859dccf --- /dev/null +++ b/themes/camo.yaml @@ -0,0 +1,53 @@ +name: "camo" +source: + marketplace_id: "jonahseguin.camo" + version: "0.0.1" + installs: 61 + rating: 0 + ratings: 0 + author: "Jonah Seguin" + repo: "https://github.com/jonahseguin/camo" + url: "https://marketplace.visualstudio.com/items?itemName=jonahseguin.camo" + formats: null +colors: + bg: "#121217" + fg: "#F0F6FA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + pair: null + contrast: + fg: 100.7 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.2 + cyan: 48 + white: 90.4 + brightBlack: 22.4 + brightRed: 39 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/cand-pine--candy-pine.yaml b/themes/cand-pine--candy-pine.yaml new file mode 100644 index 00000000..1db59a6c --- /dev/null +++ b/themes/cand-pine--candy-pine.yaml @@ -0,0 +1,53 @@ +name: "Candý Pine (Candy Pine)" +source: + marketplace_id: "yuschick.candy-pine" + version: "0.2.5" + installs: 1598 + rating: 5 + ratings: 2 + author: "Yuschick" + repo: "https://github.com/candy-pine/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=yuschick.candy-pine" + formats: null +colors: + bg: "#161421" + fg: "#E4E1F0" + black: "#272336" + red: "#F962A0" + green: "#4D94A8" + yellow: "#F2B56B" + blue: "#88C6C5" + magenta: "#F99FB5" + cyan: "#F2B56B" + white: "#E4E1F0" + brightBlack: "#9B97B1" + brightRed: "#F962A0" + brightGreen: "#4D94A8" + brightYellow: "#F2B56B" + brightBlue: "#88C6C5" + brightMagenta: "#F99FB5" + brightCyan: "#F2B56B" + brightWhite: "#E4E1F0" +meta: + mode: "dark" + accent: "red" + hue: 291 + pair: null + contrast: + fg: 88.7 + black: 0 + red: 46.6 + green: 39.1 + yellow: 68.1 + blue: 64.9 + magenta: 63.7 + cyan: 68.1 + white: 88.7 + brightBlack: 46.8 + brightRed: 46.6 + brightGreen: 39.1 + brightYellow: 68.1 + brightBlue: 64.9 + brightMagenta: 63.7 + brightCyan: 68.1 + brightWhite: 88.7 diff --git a/themes/carbon-candy--carbon-candy-anthracite.yaml b/themes/carbon-candy--carbon-candy-anthracite.yaml new file mode 100644 index 00000000..a0a39cb7 --- /dev/null +++ b/themes/carbon-candy--carbon-candy-anthracite.yaml @@ -0,0 +1,53 @@ +name: "Carbon Candy (carbon-candy-anthracite)" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 849 + rating: 5 + ratings: 1 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" + formats: null +colors: + bg: "#212121" + fg: "#CCCCCC" + black: "#262626" + red: "#EE5396" + green: "#42BE65" + yellow: "#FDDC68" + blue: "#78A9FF" + magenta: "#BE95FF" + cyan: "#08BDBA" + white: "#F2F4F8" + brightBlack: "#525252" + brightRed: "#FF7EB6" + brightGreen: "#44E070" + brightYellow: "#FDE593" + brightBlue: "#33B1FF" + brightMagenta: "#FF7EB6" + brightCyan: "#3DDBD9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 73.4 + black: 0 + red: 39.7 + green: 53.1 + yellow: 84.5 + blue: 53.5 + magenta: 53.6 + cyan: 54.4 + white: 98.3 + brightBlack: 12.7 + brightRed: 53.8 + brightGreen: 69.7 + brightYellow: 89.4 + brightBlue: 53.6 + brightMagenta: 53.8 + brightCyan: 70.5 + brightWhite: 105.6 diff --git a/themes/carbon-candy--carbon-candy-aurora.yaml b/themes/carbon-candy--carbon-candy-aurora.yaml new file mode 100644 index 00000000..e71cf92e --- /dev/null +++ b/themes/carbon-candy--carbon-candy-aurora.yaml @@ -0,0 +1,53 @@ +name: "Carbon Candy (carbon-candy-aurora)" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 849 + rating: 5 + ratings: 1 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" + formats: null +colors: + bg: "#1A1A1A" + fg: "#E8E8E8" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#5A5A5A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.6 + black: 0 + red: 46.3 + green: 83.9 + yellow: 78.6 + blue: 55.6 + magenta: 53.4 + cyan: 77.9 + white: 106.5 + brightBlack: 16.7 + brightRed: 46.3 + brightGreen: 83.9 + brightYellow: 78.6 + brightBlue: 55.6 + brightMagenta: 53.4 + brightCyan: 77.9 + brightWhite: 106.5 diff --git a/themes/carbon-candy--carbon-candy-bee.yaml b/themes/carbon-candy--carbon-candy-bee.yaml new file mode 100644 index 00000000..3eb381f5 --- /dev/null +++ b/themes/carbon-candy--carbon-candy-bee.yaml @@ -0,0 +1,53 @@ +name: "Carbon Candy (carbon-candy-bee)" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 849 + rating: 5 + ratings: 1 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" + formats: null +colors: + bg: "#212121" + fg: "#D9D9D9" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#545454" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 81.3 + black: 0 + red: 45.3 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 13.5 + brightRed: 45.3 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/carbon-candy--carbon-candy-carbon.yaml b/themes/carbon-candy--carbon-candy-carbon.yaml new file mode 100644 index 00000000..67fc0996 --- /dev/null +++ b/themes/carbon-candy--carbon-candy-carbon.yaml @@ -0,0 +1,53 @@ +name: "Carbon Candy (carbon-candy-carbon)" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 849 + rating: 5 + ratings: 1 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" + formats: null +colors: + bg: "#1A1A1A" + fg: "#D4D4D4" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#424242" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.2 + black: 0 + red: 46.3 + green: 83.9 + yellow: 78.6 + blue: 55.6 + magenta: 53.4 + cyan: 77.9 + white: 106.5 + brightBlack: 7.8 + brightRed: 46.3 + brightGreen: 83.9 + brightYellow: 78.6 + brightBlue: 55.6 + brightMagenta: 53.4 + brightCyan: 77.9 + brightWhite: 106.5 diff --git a/themes/carbon-candy--carbon-candy-dark.yaml b/themes/carbon-candy--carbon-candy-dark.yaml new file mode 100644 index 00000000..1b40a414 --- /dev/null +++ b/themes/carbon-candy--carbon-candy-dark.yaml @@ -0,0 +1,53 @@ +name: "Carbon Candy (carbon-candy-dark)" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 849 + rating: 5 + ratings: 1 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" + formats: null +colors: + bg: "#161616" + fg: "#CCCCCC" + black: "#262626" + red: "#EE5396" + green: "#42BE65" + yellow: "#FDDC68" + blue: "#78A9FF" + magenta: "#BE95FF" + cyan: "#08BDBA" + white: "#F2F4F8" + brightBlack: "#525252" + brightRed: "#FF7EB6" + brightGreen: "#44E070" + brightYellow: "#FDE593" + brightBlue: "#33B1FF" + brightMagenta: "#FF7EB6" + brightCyan: "#3DDBD9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 74.8 + black: 0 + red: 41.1 + green: 54.4 + yellow: 85.9 + blue: 54.9 + magenta: 54.9 + cyan: 55.8 + white: 99.6 + brightBlack: 14 + brightRed: 55.2 + brightGreen: 71 + brightYellow: 90.7 + brightBlue: 55 + brightMagenta: 55.2 + brightCyan: 71.9 + brightWhite: 107 diff --git a/themes/carbon-candy--carbon-candy-obsidian.yaml b/themes/carbon-candy--carbon-candy-obsidian.yaml new file mode 100644 index 00000000..18e591ce --- /dev/null +++ b/themes/carbon-candy--carbon-candy-obsidian.yaml @@ -0,0 +1,53 @@ +name: "Carbon Candy (carbon-candy-obsidian)" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 849 + rating: 5 + ratings: 1 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" + formats: null +colors: + bg: "#0F0F0F" + fg: "#D8D8D8" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#363636" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.6 + black: 0 + red: 47.2 + green: 84.8 + yellow: 79.6 + blue: 56.6 + magenta: 54.4 + cyan: 78.9 + white: 107.5 + brightBlack: 0 + brightRed: 47.2 + brightGreen: 84.8 + brightYellow: 79.6 + brightBlue: 56.6 + brightMagenta: 54.4 + brightCyan: 78.9 + brightWhite: 107.5 diff --git a/themes/carbon-candy--carbon-candy-palenight.yaml b/themes/carbon-candy--carbon-candy-palenight.yaml new file mode 100644 index 00000000..851676fa --- /dev/null +++ b/themes/carbon-candy--carbon-candy-palenight.yaml @@ -0,0 +1,53 @@ +name: "Carbon Candy (carbon-candy-palenight)" +source: + marketplace_id: "viral-team.carbon-candy" + version: "0.2.9" + installs: 849 + rating: 5 + ratings: 1 + author: "Viral Team Theme" + repo: "https://github.com/viral-team/carbon-candy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viral-team.carbon-candy" + formats: null +colors: + bg: "#292D3E" + fg: "#EEFFFF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676767" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + pair: null + contrast: + fg: 101 + black: 0 + red: 43 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 18.9 + brightRed: 43 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/carbon-code-theme--carbon-code-amber-dark.yaml b/themes/carbon-code-theme--carbon-code-amber-dark.yaml new file mode 100644 index 00000000..0f38f87a --- /dev/null +++ b/themes/carbon-code-theme--carbon-code-amber-dark.yaml @@ -0,0 +1,53 @@ +name: "Carbon Code Theme (Carbon Code Amber Dark)" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 904 + rating: 5 + ratings: 1 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" + formats: null +colors: + bg: "#100E08" + fg: "#E6E6E6" + black: "#000000" + red: "#EF4444" + green: "#22C55E" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 92 + pair: null + contrast: + fg: 91.3 + black: 0 + red: 37.5 + green: 57.5 + yellow: 60.1 + blue: 37.4 + magenta: 35.1 + cyan: 54.6 + white: 107.6 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 57.5 + brightYellow: 60.1 + brightBlue: 37.4 + brightMagenta: 35.1 + brightCyan: 54.6 + brightWhite: 107.6 diff --git a/themes/carbon-code-theme--carbon-code-amber-light.yaml b/themes/carbon-code-theme--carbon-code-amber-light.yaml new file mode 100644 index 00000000..45bd37e9 --- /dev/null +++ b/themes/carbon-code-theme--carbon-code-amber-light.yaml @@ -0,0 +1,53 @@ +name: "Carbon Code Theme (Carbon Code Amber Light)" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 904 + rating: 5 + ratings: 1 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" + formats: null +colors: + bg: "#FFFBF0" + fg: "#0A0A0A" + black: "#000000" + red: "#EF4444" + green: "#22C55E" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 103.5 + black: 103.7 + red: 61.5 + green: 42 + yellow: 39.4 + blue: 61.6 + magenta: 63.9 + cyan: 44.8 + white: 0 + brightBlack: 103.7 + brightRed: 61.5 + brightGreen: 42 + brightYellow: 39.4 + brightBlue: 61.6 + brightMagenta: 63.9 + brightCyan: 44.8 + brightWhite: 0 diff --git a/themes/carbon-code-theme--carbon-code-crimson-dark.yaml b/themes/carbon-code-theme--carbon-code-crimson-dark.yaml new file mode 100644 index 00000000..09595e0a --- /dev/null +++ b/themes/carbon-code-theme--carbon-code-crimson-dark.yaml @@ -0,0 +1,53 @@ +name: "Carbon Code Theme (Carbon Code Crimson Dark)" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 904 + rating: 5 + ratings: 1 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" + formats: null +colors: + bg: "#120E0E" + fg: "#E6E6E6" + black: "#000000" + red: "#DC2626" + green: "#16A34A" + yellow: "#F59E0B" + blue: "#2563EB" + magenta: "#C026D3" + cyan: "#0891B2" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#DC2626" + brightGreen: "#16A34A" + brightYellow: "#F59E0B" + brightBlue: "#2563EB" + brightMagenta: "#C026D3" + brightCyan: "#0891B2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 91.3 + black: 0 + red: 29.7 + green: 41.6 + yellow: 60.1 + blue: 26.5 + magenta: 30.2 + cyan: 37.5 + white: 107.5 + brightBlack: 0 + brightRed: 29.7 + brightGreen: 41.6 + brightYellow: 60.1 + brightBlue: 26.5 + brightMagenta: 30.2 + brightCyan: 37.5 + brightWhite: 107.5 diff --git a/themes/carbon-code-theme--carbon-code-crimson-light.yaml b/themes/carbon-code-theme--carbon-code-crimson-light.yaml new file mode 100644 index 00000000..8d479b00 --- /dev/null +++ b/themes/carbon-code-theme--carbon-code-crimson-light.yaml @@ -0,0 +1,53 @@ +name: "Carbon Code Theme (Carbon Code Crimson Light)" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 904 + rating: 5 + ratings: 1 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" + formats: null +colors: + bg: "#FEFCFC" + fg: "#0A0A0A" + black: "#000000" + red: "#DC2626" + green: "#16A34A" + yellow: "#F59E0B" + blue: "#2563EB" + magenta: "#C026D3" + cyan: "#0891B2" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#DC2626" + brightGreen: "#16A34A" + brightYellow: "#F59E0B" + brightBlue: "#2563EB" + brightMagenta: "#C026D3" + brightCyan: "#0891B2" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 104.3 + black: 104.5 + red: 70 + green: 58.2 + yellow: 40.2 + blue: 73.3 + magenta: 69.5 + cyan: 62.3 + white: 0 + brightBlack: 104.5 + brightRed: 70 + brightGreen: 58.2 + brightYellow: 40.2 + brightBlue: 73.3 + brightMagenta: 69.5 + brightCyan: 62.3 + brightWhite: 0 diff --git a/themes/carbon-code-theme--carbon-code-dark.yaml b/themes/carbon-code-theme--carbon-code-dark.yaml new file mode 100644 index 00000000..e585fff9 --- /dev/null +++ b/themes/carbon-code-theme--carbon-code-dark.yaml @@ -0,0 +1,53 @@ +name: "Carbon Code Theme (Carbon Code Dark)" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 904 + rating: 5 + ratings: 1 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" + formats: null +colors: + bg: "#0F0F13" + fg: "#E6E6E6" + black: "#000000" + red: "#FF0055" + green: "#6366F1" + yellow: "#FFDD00" + blue: "#0088FF" + magenta: "#FF00DD" + cyan: "#00FFDD" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#FF3377" + brightGreen: "#33FFAA" + brightYellow: "#FFEE33" + brightBlue: "#3399FF" + brightMagenta: "#FF33EE" + brightCyan: "#33FFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 91.3 + black: 0 + red: 37.8 + green: 30.7 + yellow: 86.5 + blue: 39.4 + magenta: 43.4 + cyan: 90.1 + white: 107.5 + brightBlack: 0 + brightRed: 40.5 + brightGreen: 88.6 + brightYellow: 94.3 + brightBlue: 46 + brightMagenta: 46.3 + brightCyan: 91.3 + brightWhite: 107.5 diff --git a/themes/carbon-code-theme--carbon-code-emerald-dark.yaml b/themes/carbon-code-theme--carbon-code-emerald-dark.yaml new file mode 100644 index 00000000..f1a276fc --- /dev/null +++ b/themes/carbon-code-theme--carbon-code-emerald-dark.yaml @@ -0,0 +1,53 @@ +name: "Carbon Code Theme (Carbon Code Emerald Dark)" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 904 + rating: 5 + ratings: 1 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" + formats: null +colors: + bg: "#0E110E" + fg: "#E6E6E6" + black: "#000000" + red: "#FF0055" + green: "#00FF88" + yellow: "#FFDD00" + blue: "#0088FF" + magenta: "#FF00DD" + cyan: "#00FFDD" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#FF3377" + brightGreen: "#33FFAA" + brightYellow: "#FFEE33" + brightBlue: "#3399FF" + brightMagenta: "#FF33EE" + brightCyan: "#33FFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 91.2 + black: 0 + red: 37.7 + green: 87.3 + yellow: 86.4 + blue: 39.3 + magenta: 43.3 + cyan: 90.1 + white: 107.4 + brightBlack: 0 + brightRed: 40.4 + brightGreen: 88.6 + brightYellow: 94.2 + brightBlue: 46 + brightMagenta: 46.2 + brightCyan: 91.2 + brightWhite: 107.4 diff --git a/themes/carbon-code-theme--carbon-code-emerald-light.yaml b/themes/carbon-code-theme--carbon-code-emerald-light.yaml new file mode 100644 index 00000000..0af378d0 --- /dev/null +++ b/themes/carbon-code-theme--carbon-code-emerald-light.yaml @@ -0,0 +1,53 @@ +name: "Carbon Code Theme (Carbon Code Emerald Light)" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 904 + rating: 5 + ratings: 1 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" + formats: null +colors: + bg: "#FAFEFC" + fg: "#0A0A0A" + black: "#000000" + red: "#FF0055" + green: "#00FF88" + yellow: "#FFBB00" + blue: "#0088FF" + magenta: "#FF00DD" + cyan: "#00DDFF" + white: "#000000" + brightBlack: "#666666" + brightRed: "#FF3377" + brightGreen: "#33FF99" + brightYellow: "#FFDD33" + brightBlue: "#3399FF" + brightMagenta: "#FF33DD" + brightCyan: "#33DDFF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 104.7 + black: 104.8 + red: 62.3 + green: 14.7 + yellow: 28.8 + blue: 60.7 + magenta: 56.8 + cyan: 26.6 + white: 104.8 + brightBlack: 77.6 + brightRed: 59.7 + brightGreen: 14 + brightYellow: 15.5 + brightBlue: 54.2 + brightMagenta: 55.1 + brightCyan: 26.2 + brightWhite: 104.8 diff --git a/themes/carbon-code-theme--carbon-code-light.yaml b/themes/carbon-code-theme--carbon-code-light.yaml new file mode 100644 index 00000000..c7cbaa32 --- /dev/null +++ b/themes/carbon-code-theme--carbon-code-light.yaml @@ -0,0 +1,53 @@ +name: "Carbon Code Theme (Carbon Code Light)" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 904 + rating: 5 + ratings: 1 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" + formats: null +colors: + bg: "#FCFCFF" + fg: "#0A0A0A" + black: "#000000" + red: "#FF0055" + green: "#6366F1" + yellow: "#FFBB00" + blue: "#0088FF" + magenta: "#FF00DD" + cyan: "#00DDFF" + white: "#000000" + brightBlack: "#666666" + brightRed: "#FF3377" + brightGreen: "#33FF99" + brightYellow: "#FFDD33" + brightBlue: "#3399FF" + brightMagenta: "#FF33DD" + brightCyan: "#33DDFF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 104.2 + black: 104.4 + red: 61.8 + green: 68.9 + yellow: 28.4 + blue: 60.3 + magenta: 56.3 + cyan: 26.1 + white: 104.4 + brightBlack: 77.1 + brightRed: 59.2 + brightGreen: 13.6 + brightYellow: 15 + brightBlue: 53.7 + brightMagenta: 54.6 + brightCyan: 25.7 + brightWhite: 104.4 diff --git a/themes/carbon-code-theme--carbon-code-rose-dark.yaml b/themes/carbon-code-theme--carbon-code-rose-dark.yaml new file mode 100644 index 00000000..1d1d29d5 --- /dev/null +++ b/themes/carbon-code-theme--carbon-code-rose-dark.yaml @@ -0,0 +1,53 @@ +name: "Carbon Code Theme (Carbon Code Rose Dark)" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 904 + rating: 5 + ratings: 1 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" + formats: null +colors: + bg: "#110E10" + fg: "#E6E6E6" + black: "#000000" + red: "#F43F5E" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#EC4899" + cyan: "#06B6D4" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#F43F5E" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#EC4899" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.3 + black: 0 + red: 38.5 + green: 57.4 + yellow: 65.7 + blue: 37.4 + magenta: 39.6 + cyan: 54.5 + white: 107.5 + brightBlack: 0 + brightRed: 38.5 + brightGreen: 57.4 + brightYellow: 65.7 + brightBlue: 37.4 + brightMagenta: 39.6 + brightCyan: 54.5 + brightWhite: 107.5 diff --git a/themes/carbon-code-theme--carbon-code-rose-light.yaml b/themes/carbon-code-theme--carbon-code-rose-light.yaml new file mode 100644 index 00000000..e14a2952 --- /dev/null +++ b/themes/carbon-code-theme--carbon-code-rose-light.yaml @@ -0,0 +1,53 @@ +name: "Carbon Code Theme (Carbon Code Rose Light)" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 904 + rating: 5 + ratings: 1 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" + formats: null +colors: + bg: "#FEF9FC" + fg: "#0A0A0A" + black: "#000000" + red: "#F43F5E" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#EC4899" + cyan: "#06B6D4" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#F43F5E" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#EC4899" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103 + black: 103.2 + red: 60 + green: 41.5 + yellow: 33.5 + blue: 61.1 + magenta: 58.9 + cyan: 44.3 + white: 0 + brightBlack: 103.2 + brightRed: 60 + brightGreen: 41.5 + brightYellow: 33.5 + brightBlue: 61.1 + brightMagenta: 58.9 + brightCyan: 44.3 + brightWhite: 0 diff --git a/themes/carbon-code-theme--sazardev.yaml b/themes/carbon-code-theme--sazardev.yaml new file mode 100644 index 00000000..f9c4d4ac --- /dev/null +++ b/themes/carbon-code-theme--sazardev.yaml @@ -0,0 +1,53 @@ +name: "Carbon Code Theme (sazardev)" +source: + marketplace_id: "sazardev.carbon-code-theme" + version: "1.2.0" + installs: 904 + rating: 5 + ratings: 1 + author: "sazardev" + repo: "https://github.com/sazardev/sazardev-minimal-brutal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sazardev.carbon-code-theme" + formats: null +colors: + bg: "#0A0C0A" + fg: "#F5F5F5" + black: "#000000" + red: "#FF0055" + green: "#00FF88" + yellow: "#FFDD00" + blue: "#0088FF" + magenta: "#FF00DD" + cyan: "#00FFDD" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#FF3377" + brightGreen: "#33FFAA" + brightYellow: "#FFEE33" + brightBlue: "#3399FF" + brightMagenta: "#FF33EE" + brightCyan: "#33FFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.1 + black: 0 + red: 38 + green: 87.6 + yellow: 86.7 + blue: 39.6 + magenta: 43.6 + cyan: 90.3 + white: 107.7 + brightBlack: 0 + brightRed: 40.7 + brightGreen: 88.8 + brightYellow: 94.5 + brightBlue: 46.2 + brightMagenta: 46.5 + brightCyan: 91.5 + brightWhite: 107.7 diff --git a/themes/carbon-theme.yaml b/themes/carbon-theme.yaml new file mode 100644 index 00000000..ddb5a0a7 --- /dev/null +++ b/themes/carbon-theme.yaml @@ -0,0 +1,53 @@ +name: "Carbon Theme" +source: + marketplace_id: "OscarNewman.carbon-theme-dark" + version: "0.0.1" + installs: 3318 + rating: 5 + ratings: 1 + author: "Oscar Newman" + repo: "https://github.com/oscarnewman/carbon-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=OscarNewman.carbon-theme-dark" + formats: null +colors: + bg: "#152031" + fg: "#BAC8CB" + black: "#000000" + red: "#FF4262" + green: "#9CDE65" + yellow: "#E1E797" + blue: "#65B7EC" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CDD3D3" + brightBlack: "#666666" + brightRed: "#FF4262" + brightGreen: "#9CDE65" + brightYellow: "#D8DE90" + brightBlue: "#65B7EC" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 259 + pair: null + contrast: + fg: 69.6 + black: 0 + red: 39.8 + green: 73.6 + yellow: 86.5 + blue: 56.9 + magenta: 28.7 + cyan: 46.5 + white: 77 + brightBlack: 20.9 + brightRed: 39.8 + brightGreen: 73.6 + brightYellow: 81 + brightBlue: 56.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/catppuccin-dark-theme.yaml b/themes/catppuccin-dark-theme.yaml new file mode 100644 index 00000000..82d6d6c4 --- /dev/null +++ b/themes/catppuccin-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Catppuccin Dark Theme" +source: + marketplace_id: "Birdlinux.catppuccin-dark-theme" + version: "0.0.2" + installs: 10666 + rating: 5 + ratings: 1 + author: "Birdlinux" + repo: "https://github.com/birdlinux/catppuccin-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Birdlinux.catppuccin-dark-theme" + formats: null +colors: + bg: "#11111B" + fg: "#C6D0F5" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#C6D0F5" + brightBlack: "#585B70" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#94E2D5" + brightWhite: "#F4F1FA" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 78.1 + black: 10.7 + red: 56.1 + green: 79.8 + yellow: 89.9 + blue: 60.5 + magenta: 78.2 + cyan: 79.7 + white: 78.1 + brightBlack: 18.4 + brightRed: 56.1 + brightGreen: 79.8 + brightYellow: 89.9 + brightBlue: 60.5 + brightMagenta: 78.2 + brightCyan: 79.7 + brightWhite: 99 diff --git a/themes/catppuccin-for-vscode--catppuccin-frapp.yaml b/themes/catppuccin-for-vscode--catppuccin-frapp.yaml new file mode 100644 index 00000000..8cb680d7 --- /dev/null +++ b/themes/catppuccin-for-vscode--catppuccin-frapp.yaml @@ -0,0 +1,53 @@ +name: "Catppuccin for VSCode (Catppuccin Frappé)" +source: + marketplace_id: "Catppuccin.catppuccin-vsc" + version: "3.18.1" + installs: 1126745 + rating: 4.96 + ratings: 53 + author: "Catppuccin" + repo: "https://github.com/catppuccin/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc" + formats: null +colors: + bg: "#303446" + fg: "#C6D0F5" + black: "#51576D" + red: "#E78284" + green: "#A6D189" + yellow: "#E5C890" + blue: "#8CAAEE" + magenta: "#F4B8E4" + cyan: "#81C8BE" + white: "#A5ADCE" + brightBlack: "#626880" + brightRed: "#E67172" + brightGreen: "#8EC772" + brightYellow: "#D9BA73" + brightBlue: "#7B9EF0" + brightMagenta: "#F2A4DB" + brightCyan: "#5ABFB5" + brightWhite: "#B5BFE2" +meta: + mode: "dark" + accent: "orange" + hue: 275 + pair: null + contrast: + fg: 72.3 + black: 10.8 + red: 44.3 + green: 65 + yellow: 69 + blue: 50.3 + magenta: 68.3 + cyan: 59.5 + white: 52.1 + brightBlack: 17.9 + brightRed: 39.1 + brightGreen: 57.7 + brightYellow: 60.8 + brightBlue: 44.4 + brightMagenta: 60.4 + brightCyan: 52.8 + brightWhite: 62.1 diff --git a/themes/catppuccin-for-vscode--catppuccin-latte.yaml b/themes/catppuccin-for-vscode--catppuccin-latte.yaml new file mode 100644 index 00000000..3f1397ed --- /dev/null +++ b/themes/catppuccin-for-vscode--catppuccin-latte.yaml @@ -0,0 +1,53 @@ +name: "Catppuccin for VSCode (Catppuccin Latte)" +source: + marketplace_id: "Catppuccin.catppuccin-vsc" + version: "3.18.1" + installs: 1126745 + rating: 4.96 + ratings: 53 + author: "Catppuccin" + repo: "https://github.com/catppuccin/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc" + formats: null +colors: + bg: "#EFF1F5" + fg: "#4C4F69" + black: "#5C5F77" + red: "#D20F39" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#EA76CB" + cyan: "#179299" + white: "#ACB0BE" + brightBlack: "#6C6F85" + brightRed: "#DE293E" + brightGreen: "#49AF3D" + brightYellow: "#EEA02D" + brightBlue: "#456EFF" + brightMagenta: "#FE85D8" + brightCyan: "#2D9FA8" + brightWhite: "#BCC0CC" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 79.3 + black: 72.8 + red: 66.3 + green: 52.1 + yellow: 42.3 + blue: 64.8 + magenta: 42.6 + cyan: 56.1 + white: 34.1 + brightBlack: 65.8 + brightRed: 62.2 + brightGreen: 45.2 + brightYellow: 33.8 + brightBlue: 60.5 + brightMagenta: 34.4 + brightCyan: 50 + brightWhite: 25.5 diff --git a/themes/catppuccin-for-vscode--catppuccin-macchiato.yaml b/themes/catppuccin-for-vscode--catppuccin-macchiato.yaml new file mode 100644 index 00000000..2743105b --- /dev/null +++ b/themes/catppuccin-for-vscode--catppuccin-macchiato.yaml @@ -0,0 +1,53 @@ +name: "Catppuccin for VSCode (Catppuccin Macchiato)" +source: + marketplace_id: "Catppuccin.catppuccin-vsc" + version: "3.18.1" + installs: 1126745 + rating: 4.96 + ratings: 53 + author: "Catppuccin" + repo: "https://github.com/catppuccin/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc" + formats: null +colors: + bg: "#24273A" + fg: "#CAD3F5" + black: "#494D64" + red: "#ED8796" + green: "#A6DA95" + yellow: "#EED49F" + blue: "#8AADF4" + magenta: "#F5BDE6" + cyan: "#8BD5CA" + white: "#A5ADCB" + brightBlack: "#5B6078" + brightRed: "#EC7486" + brightGreen: "#8CCF7F" + brightYellow: "#E1C682" + brightBlue: "#78A1F6" + brightMagenta: "#F2A9DD" + brightCyan: "#63CBC0" + brightWhite: "#B8C0E0" +meta: + mode: "dark" + accent: "red" + hue: 277 + pair: null + contrast: + fg: 76.9 + black: 10 + red: 50.3 + green: 72.3 + yellow: 78.7 + blue: 54.5 + magenta: 73.3 + cyan: 69.5 + white: 54.8 + brightBlack: 17.5 + brightRed: 44.4 + brightGreen: 64.3 + brightYellow: 70.1 + brightBlue: 48.6 + brightMagenta: 65 + brightCyan: 62 + brightWhite: 65.7 diff --git a/themes/catppuccin-for-vscode--catppuccin-mocha.yaml b/themes/catppuccin-for-vscode--catppuccin-mocha.yaml new file mode 100644 index 00000000..14e547ec --- /dev/null +++ b/themes/catppuccin-for-vscode--catppuccin-mocha.yaml @@ -0,0 +1,53 @@ +name: "Catppuccin for VSCode (Catppuccin Mocha)" +source: + marketplace_id: "Catppuccin.catppuccin-vsc" + version: "3.18.1" + installs: 1126745 + rating: 4.96 + ratings: 53 + author: "Catppuccin" + repo: "https://github.com/catppuccin/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc" + formats: null +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#A6ADC8" + brightBlack: "#585B70" + brightRed: "#F37799" + brightGreen: "#89D88B" + brightYellow: "#EBD391" + brightBlue: "#74A8FC" + brightMagenta: "#F2AEDE" + brightCyan: "#6BD7CA" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 80 + black: 9.3 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 76.7 + cyan: 78.2 + white: 56.2 + brightBlack: 16.9 + brightRed: 48.7 + brightGreen: 70.1 + brightYellow: 78.9 + brightBlue: 52.8 + brightMagenta: 68.3 + brightCyan: 69.9 + brightWhite: 68.1 diff --git a/themes/cave.yaml b/themes/cave.yaml new file mode 100644 index 00000000..b867aa47 --- /dev/null +++ b/themes/cave.yaml @@ -0,0 +1,53 @@ +name: "cave" +source: + marketplace_id: "ascen.cave" + version: "0.0.4" + installs: 1065 + rating: 0 + ratings: 0 + author: "ascen" + repo: "https://github.com/anascen/cave" + url: "https://marketplace.visualstudio.com/items?itemName=ascen.cave" + formats: null +colors: + bg: "#000000" + fg: "#E6EDF3" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 95.5 + black: 13.6 + red: 53.1 + green: 52.6 + yellow: 52.7 + blue: 52.7 + magenta: 52.7 + cyan: 61.9 + white: 64.5 + brightBlack: 29.7 + brightRed: 65.3 + brightGreen: 65.9 + brightYellow: 65.2 + brightBlue: 65.2 + brightMagenta: 65.1 + brightCyan: 70.4 + brightWhite: 107.9 diff --git a/themes/cds-for-vscode--vanilla.yaml b/themes/cds-for-vscode--vanilla.yaml new file mode 100644 index 00000000..a0331cdf --- /dev/null +++ b/themes/cds-for-vscode--vanilla.yaml @@ -0,0 +1,53 @@ +name: "CDS for vscode (Vanilla)" +source: + marketplace_id: "danjoa.cdr4vsc" + version: "4.2.7" + installs: 5206 + rating: 0 + ratings: 0 + author: "danjoa" + repo: "private" + url: "https://marketplace.visualstudio.com/items?itemName=danjoa.cdr4vsc" + formats: null +colors: + bg: "#FCFCFC" + fg: "#222222" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.1 + black: 97.2 + red: 68.7 + green: 57.2 + yellow: 57.3 + blue: 62.1 + magenta: 68.5 + cyan: 56.5 + white: 9.3 + brightBlack: 75 + brightRed: 69.2 + brightGreen: 75 + brightYellow: 69.1 + brightBlue: 57 + brightMagenta: 68.4 + brightCyan: 50.2 + brightWhite: 0 diff --git a/themes/cds-for-vscode.yaml b/themes/cds-for-vscode.yaml new file mode 100644 index 00000000..4111a5e7 --- /dev/null +++ b/themes/cds-for-vscode.yaml @@ -0,0 +1,53 @@ +name: "CDS for vscode" +source: + marketplace_id: "danjoa.cdr4vsc" + version: "4.2.7" + installs: 5206 + rating: 0 + ratings: 0 + author: "danjoa" + repo: "private" + url: "https://marketplace.visualstudio.com/items?itemName=danjoa.cdr4vsc" + formats: null +colors: + bg: "#FFFFFF" + fg: "#222222" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.9 + black: 99 + red: 70.5 + green: 59 + yellow: 59.1 + blue: 63.9 + magenta: 70.3 + cyan: 58.3 + white: 11.1 + brightBlack: 76.8 + brightRed: 71 + brightGreen: 76.8 + brightYellow: 70.9 + brightBlue: 58.8 + brightMagenta: 70.2 + brightCyan: 52 + brightWhite: 0 diff --git a/themes/celestial-theme--high-contrast.yaml b/themes/celestial-theme--high-contrast.yaml new file mode 100644 index 00000000..817c6aa0 --- /dev/null +++ b/themes/celestial-theme--high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Celestial Theme (High Contrast)" +source: + marketplace_id: "Letsmoe.celestial-themes" + version: "0.0.2" + installs: 194 + rating: 0 + ratings: 0 + author: "Letsmoe" + repo: "https://github.com/Letsmoe/celestial-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Letsmoe.celestial-themes" + formats: null +colors: + bg: "#F7F7FF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.6 + black: 101.6 + red: 69.6 + green: 44.8 + yellow: 53.5 + blue: 81.6 + magenta: 70.1 + cyan: 56.2 + white: 81.5 + brightBlack: 74.3 + brightRed: 69.6 + brightGreen: 36.5 + brightYellow: 36.5 + brightBlue: 81.6 + brightMagenta: 70.1 + brightCyan: 56.2 + brightWhite: 44 diff --git a/themes/chai-theme--chai-light.yaml b/themes/chai-theme--chai-light.yaml new file mode 100644 index 00000000..6995e215 --- /dev/null +++ b/themes/chai-theme--chai-light.yaml @@ -0,0 +1,53 @@ +name: "chai theme (Chai Light)" +source: + marketplace_id: "hiteshchoudharycode.chai-theme" + version: "0.2.0" + installs: 167632 + rating: 4.96 + ratings: 115 + author: "hitesh choudhary" + repo: "https://github.com/hiteshchoudhary/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hiteshchoudharycode.chai-theme" + formats: null +colors: + bg: "#F7F7F7" + fg: "#383A42" + black: "#373A41" + red: "#D52652" + green: "#239749" + yellow: "#DF621B" + blue: "#275FE4" + magenta: "#823EF0" + cyan: "#26608C" + white: "#B9BAC1" + brightBlack: "#676A77" + brightRed: "#FF637F" + brightGreen: "#3CBC66" + brightYellow: "#C5A231" + brightBlue: "#0099E0" + brightMagenta: "#CE32C0" + brightCyan: "#6D92BA" + brightWhite: "#D3D3D3" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 91.4 + black: 91.5 + red: 67.8 + green: 59.8 + yellow: 57.6 + blue: 71.8 + magenta: 71.1 + cyan: 78 + white: 32.3 + brightBlack: 72 + brightRed: 49.1 + brightGreen: 43 + brightYellow: 43.2 + brightBlue: 53.3 + brightMagenta: 63.9 + brightCyan: 54.9 + brightWhite: 18.5 diff --git a/themes/chai-theme--dark-chai.yaml b/themes/chai-theme--dark-chai.yaml new file mode 100644 index 00000000..e6afde83 --- /dev/null +++ b/themes/chai-theme--dark-chai.yaml @@ -0,0 +1,53 @@ +name: "chai theme (Dark Chai)" +source: + marketplace_id: "hiteshchoudharycode.chai-theme" + version: "0.2.0" + installs: 167632 + rating: 4.96 + ratings: 115 + author: "hitesh choudhary" + repo: "https://github.com/hiteshchoudhary/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hiteshchoudharycode.chai-theme" + formats: null +colors: + bg: "#010107" + fg: "#BECFDA" + black: "#28353E" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#AEC3D0" + brightBlack: "#475E6C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#BECFDA" +meta: + mode: "dark" + accent: "orange" + hue: 278 + pair: null + contrast: + fg: 75.9 + black: 0 + red: 41.5 + green: 78 + yellow: 68 + blue: 53 + magenta: 46.6 + cyan: 71.5 + white: 68.5 + brightBlack: 18.5 + brightRed: 46.8 + brightGreen: 80.2 + brightYellow: 54.9 + brightBlue: 58.3 + brightMagenta: 59 + brightCyan: 74.9 + brightWhite: 75.9 diff --git a/themes/chalk-theme.yaml b/themes/chalk-theme.yaml new file mode 100644 index 00000000..4c1eecc3 --- /dev/null +++ b/themes/chalk-theme.yaml @@ -0,0 +1,53 @@ +name: "Chalk Theme" +source: + marketplace_id: "emmakrause.chalk" + version: "1.0.0" + installs: 3046 + rating: 5 + ratings: 2 + author: "Emma Krause" + repo: "https://github.com/emkrause14/chalk-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=emmakrause.chalk" + formats: null +colors: + bg: "#3B3B3B" + fg: "#DDDCDC" + black: "#787878" + red: "#F9A1A0" + green: "#B7DAB9" + yellow: "#FEDB8F" + blue: "#8BBADC" + magenta: "#DEBDDD" + cyan: "#88DBDC" + white: "#DDDCDC" + brightBlack: "#787878" + brightRed: "#F9A1A0" + brightGreen: "#B7DAB9" + brightYellow: "#FEDB8F" + brightBlue: "#8BBADC" + brightMagenta: "#DEBDDD" + brightCyan: "#88DBDC" + brightWhite: "#DDDCDC" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 77.3 + black: 22.8 + red: 56.3 + green: 70.5 + yellow: 79.1 + blue: 53.8 + magenta: 64.6 + cyan: 68.2 + white: 77.3 + brightBlack: 22.8 + brightRed: 56.3 + brightGreen: 70.5 + brightYellow: 79.1 + brightBlue: 53.8 + brightMagenta: 64.6 + brightCyan: 68.2 + brightWhite: 77.3 diff --git a/themes/chatgp-theme.yaml b/themes/chatgp-theme.yaml new file mode 100644 index 00000000..2b3156e4 --- /dev/null +++ b/themes/chatgp-theme.yaml @@ -0,0 +1,53 @@ +name: "ChatGP-Theme" +source: + marketplace_id: "0xJariel.chatgp-theme" + version: "0.0.5" + installs: 2496 + rating: 5 + ratings: 1 + author: "0xJariel" + repo: "https://github.com/0xJariel/ChatGP-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=0xJariel.chatgp-theme" + formats: null +colors: + bg: "#303038" + fg: "#D4D4D4" + black: "#000000" + red: "#C03738" + green: "#43B67B" + yellow: "#E2E249" + blue: "#386FA4" + magenta: "#9736BA" + cyan: "#4EB7D1" + white: "#E5E5E5" + brightBlack: "#626161" + brightRed: "#F05D5E" + brightGreen: "#5FDB9C" + brightYellow: "#F2F28B" + brightBlue: "#4B9AE6" + brightMagenta: "#BC64BC" + brightCyan: "#6BDDF9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 286 + pair: null + contrast: + fg: 75.2 + black: 0 + red: 20.4 + green: 47 + yellow: 79.8 + blue: 20.4 + magenta: 17.9 + cyan: 51.2 + white: 85.8 + brightBlack: 15.8 + brightRed: 37.4 + brightGreen: 66.3 + brightYellow: 90.6 + brightBlue: 40.5 + brightMagenta: 32.3 + brightCyan: 71.8 + brightWhite: 102.6 diff --git a/themes/chee-themes.yaml b/themes/chee-themes.yaml new file mode 100644 index 00000000..2765c737 --- /dev/null +++ b/themes/chee-themes.yaml @@ -0,0 +1,53 @@ +name: "chee themes" +source: + marketplace_id: "chee.chee-vscode-themes" + version: "1.0.0" + installs: 105 + rating: 0 + ratings: 0 + author: "chee" + repo: "https://github.com/chee/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=chee.chee-vscode-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#3B434C" + red: "#FE4E5C" + green: "#3AC364" + yellow: "#FBB13D" + blue: "#316BF4" + magenta: "#EF7FEB" + cyan: "#04A29F" + white: "#BBBBBB" + brightBlack: "#4D565F" + brightRed: "#FE8382" + brightGreen: "#93F5A5" + brightYellow: "#FACD6F" + brightBlue: "#80ABFA" + brightMagenta: "#F3A8EE" + brightCyan: "#32E6E2" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 106 + black: 93.3 + red: 58.6 + green: 44.7 + yellow: 34.1 + blue: 71.5 + magenta: 46.1 + cyan: 57.9 + white: 36.7 + brightBlack: 86 + brightRed: 46.7 + brightGreen: 15.9 + brightYellow: 23.2 + brightBlue: 45.3 + brightMagenta: 33.4 + brightCyan: 24.8 + brightWhite: 0 diff --git a/themes/cheethatheme.yaml b/themes/cheethatheme.yaml new file mode 100644 index 00000000..0aa49754 --- /dev/null +++ b/themes/cheethatheme.yaml @@ -0,0 +1,53 @@ +name: "CheethaTheme" +source: + marketplace_id: "CheethaCoder.cheethatheme" + version: "0.0.1" + installs: 39 + rating: 0 + ratings: 0 + author: "Cheetha Coder" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CheethaCoder.cheethatheme" + formats: null +colors: + bg: "#000000" + fg: "#EA3434" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 34.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/cherry--cherry-midnight.yaml b/themes/cherry--cherry-midnight.yaml new file mode 100644 index 00000000..c2a52051 --- /dev/null +++ b/themes/cherry--cherry-midnight.yaml @@ -0,0 +1,53 @@ +name: "Cherry (Cherry Midnight)" +source: + marketplace_id: "nullxception.cherry-theme" + version: "0.2.7" + installs: 8309 + rating: 5 + ratings: 2 + author: "Nauval Rizky" + repo: "https://github.com/nullxception/cherry-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=nullxception.cherry-theme" + formats: null +colors: + bg: "#101017" + fg: "#BDC3DF" + black: "#33333F" + red: "#FF568E" + green: "#64DE83" + yellow: "#EFFF73" + blue: "#73A9FF" + magenta: "#946FF7" + cyan: "#62C6DA" + white: "#DEDEEF" + brightBlack: "#43435A" + brightRed: "#FF69A2" + brightGreen: "#73DE8A" + brightYellow: "#F3FF85" + brightBlue: "#85B6FF" + brightMagenta: "#A481F7" + brightCyan: "#71C2D9" + brightWhite: "#EBEBF0" +meta: + mode: "dark" + accent: "red" + hue: 285 + pair: null + contrast: + fg: 70.5 + black: 0 + red: 45.5 + green: 72.1 + yellow: 100.8 + blue: 55 + magenta: 38.2 + cyan: 63.9 + white: 87 + brightBlack: 9.7 + brightRed: 49.9 + brightGreen: 73 + brightYellow: 101.6 + brightBlue: 61.5 + brightMagenta: 45.2 + brightCyan: 62.9 + brightWhite: 94.6 diff --git a/themes/cherry--cherry.yaml b/themes/cherry--cherry.yaml new file mode 100644 index 00000000..c6df27cf --- /dev/null +++ b/themes/cherry--cherry.yaml @@ -0,0 +1,53 @@ +name: "Cherry (Cherry)" +source: + marketplace_id: "nullxception.cherry-theme" + version: "0.2.7" + installs: 8309 + rating: 5 + ratings: 2 + author: "Nauval Rizky" + repo: "https://github.com/nullxception/cherry-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=nullxception.cherry-theme" + formats: null +colors: + bg: "#1F1F2A" + fg: "#BDC3DF" + black: "#43435A" + red: "#FF568E" + green: "#64DE83" + yellow: "#EFFF73" + blue: "#73A9FF" + magenta: "#946FF7" + cyan: "#62C6DA" + white: "#DEDEEF" + brightBlack: "#53536B" + brightRed: "#FF69A2" + brightGreen: "#73DE8A" + brightYellow: "#F3FF85" + brightBlue: "#85B6FF" + brightMagenta: "#A481F7" + brightCyan: "#71C2D9" + brightWhite: "#EBEBF0" +meta: + mode: "dark" + accent: "red" + hue: 285 + pair: null + contrast: + fg: 68.8 + black: 8.1 + red: 43.9 + green: 70.4 + yellow: 99.1 + blue: 53.3 + magenta: 36.6 + cyan: 62.3 + white: 85.3 + brightBlack: 14 + brightRed: 48.2 + brightGreen: 71.4 + brightYellow: 100 + brightBlue: 59.8 + brightMagenta: 43.5 + brightCyan: 61.3 + brightWhite: 93 diff --git a/themes/cherry-blossom-theme--cherry-blossom-airy.yaml b/themes/cherry-blossom-theme--cherry-blossom-airy.yaml new file mode 100644 index 00000000..d934d1c8 --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-airy.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Airy)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#5C5C5C" + black: "#5C5C5C" + red: "#FFB7C5" + green: "#A2D8A2" + yellow: "#FFD6A2" + blue: "#A2C8FF" + magenta: "#FFC8D6" + cyan: "#A2D8D8" + white: "#EDEDED" + brightBlack: "#A3A3A3" + brightRed: "#FADADD" + brightGreen: "#D6FFD6" + brightYellow: "#FFE4B7" + brightBlue: "#D6E4FF" + brightMagenta: "#FFE4E6" + brightCyan: "#D6FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 83 + black: 83 + red: 28.2 + green: 28.1 + yellow: 17.8 + blue: 30.8 + magenta: 21.4 + cyan: 26.1 + white: 8.2 + brightBlack: 49.5 + brightRed: 14.9 + brightGreen: 0 + brightYellow: 11.5 + brightBlue: 13.9 + brightMagenta: 9.8 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/cherry-blossom-theme--cherry-blossom-breeze.yaml b/themes/cherry-blossom-theme--cherry-blossom-breeze.yaml new file mode 100644 index 00000000..0d5d19bf --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-breeze.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Breeze)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#1A2030" + fg: "#EFF1F5" + black: "#1D2438" + red: "#E296AF" + green: "#A8D0E3" + yellow: "#F0D1A3" + blue: "#92B2E5" + magenta: "#C79FD0" + cyan: "#86C4D2" + white: "#D9E0F0" + brightBlack: "#536180" + brightRed: "#EAA8BF" + brightGreen: "#BADCED" + brightYellow: "#F6DEBC" + brightBlue: "#A4BFED" + brightMagenta: "#D5B2DA" + brightCyan: "#A2D5E0" + brightWhite: "#EFF1F5" +meta: + mode: "dark" + accent: "red" + hue: 268 + pair: null + contrast: + fg: 96.4 + black: 0 + red: 55.1 + green: 72.3 + yellow: 79.2 + blue: 57.6 + magenta: 55.5 + cyan: 63.2 + white: 85.5 + brightBlack: 18.8 + brightRed: 63.2 + brightGreen: 80 + brightYellow: 86.5 + brightBlue: 65.1 + brightMagenta: 64.9 + brightCyan: 73.8 + brightWhite: 96.4 diff --git a/themes/cherry-blossom-theme--cherry-blossom-dark-reflection.yaml b/themes/cherry-blossom-theme--cherry-blossom-dark-reflection.yaml new file mode 100644 index 00000000..5279d63e --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-dark-reflection.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Dark Reflection)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#151820" + fg: "#E8E9F0" + black: "#171B24" + red: "#F9BECA" + green: "#A8D6E2" + yellow: "#F8D3A7" + blue: "#7AACD6" + magenta: "#D8A8C8" + cyan: "#91C7D9" + white: "#D8DCE9" + brightBlack: "#596377" + brightRed: "#FACFD8" + brightGreen: "#C5E3EB" + brightYellow: "#F9DFC2" + brightBlue: "#A3C6E5" + brightMagenta: "#E5C6DB" + brightCyan: "#B4D7E4" + brightWhite: "#E8E9F0" +meta: + mode: "dark" + accent: "indigo" + hue: 269 + pair: null + contrast: + fg: 92.6 + black: 0 + red: 75.4 + green: 76 + yellow: 82.4 + blue: 53.4 + magenta: 61.8 + cyan: 66.8 + white: 84.4 + brightBlack: 20.5 + brightRed: 82.9 + brightGreen: 85.3 + brightYellow: 88.7 + brightBlue: 68.6 + brightMagenta: 76.2 + brightCyan: 77.7 + brightWhite: 92.6 diff --git a/themes/cherry-blossom-theme--cherry-blossom-dark-vivid.yaml b/themes/cherry-blossom-theme--cherry-blossom-dark-vivid.yaml new file mode 100644 index 00000000..a9d951fb --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-dark-vivid.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Dark Vivid)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#1D1E26" + fg: "#D9D9D9" + black: "#2A2B34" + red: "#FDA4BA" + green: "#9CDBA8" + yellow: "#F5D6A0" + blue: "#7EB0E8" + magenta: "#D592BC" + cyan: "#78B3CD" + white: "#D9D9D9" + brightBlack: "#373740" + brightRed: "#FDB9CA" + brightGreen: "#B7E7C0" + brightYellow: "#F9E3BD" + brightBlue: "#A2C5EF" + brightMagenta: "#E3B1D0" + brightCyan: "#9CCADF" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 81.6 + black: 0 + red: 65.3 + green: 74 + yellow: 82.3 + blue: 55.6 + magenta: 52.5 + cyan: 54.9 + white: 81.6 + brightBlack: 0 + brightRed: 73.4 + brightGreen: 83.1 + brightYellow: 89.5 + brightBlue: 67.8 + brightMagenta: 66.4 + brightCyan: 68.6 + brightWhite: 97.4 diff --git a/themes/cherry-blossom-theme--cherry-blossom-dark.yaml b/themes/cherry-blossom-theme--cherry-blossom-dark.yaml new file mode 100644 index 00000000..e86729eb --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-dark.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Dark)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#1A1A1E" + fg: "#F2F2F7" + black: "#1D1D22" + red: "#F8B2CC" + green: "#8ED9A9" + yellow: "#FFD87D" + blue: "#7EB5E7" + magenta: "#D297D6" + cyan: "#7CE2E1" + white: "#E8E8EF" + brightBlack: "#5C5C66" + brightRed: "#FAC2D8" + brightGreen: "#A5E6BD" + brightYellow: "#FFE49F" + brightBlue: "#9DC6ED" + brightMagenta: "#E0B1E0" + brightCyan: "#9FEDED" + brightWhite: "#F2F2F7" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 98.2 + black: 0 + red: 70.6 + green: 72.5 + yellow: 84.4 + blue: 58.1 + magenta: 55.5 + cyan: 77.8 + white: 91.9 + brightBlack: 17.8 + brightRed: 77.5 + brightGreen: 81.3 + brightYellow: 90.4 + brightBlue: 68.2 + brightMagenta: 67.3 + brightCyan: 86.2 + brightWhite: 98.2 diff --git a/themes/cherry-blossom-theme--cherry-blossom-dimmed-dusk.yaml b/themes/cherry-blossom-theme--cherry-blossom-dimmed-dusk.yaml new file mode 100644 index 00000000..efaa734e --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-dimmed-dusk.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Dimmed Dusk)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#141414" + fg: "#C6CAC9" + black: "#1A1A1A" + red: "#A34242" + green: "#4F9E64" + yellow: "#C4B483" + blue: "#4A8399" + magenta: "#9A5085" + cyan: "#36575E" + white: "#C6CAC9" + brightBlack: "#404040" + brightRed: "#C24A4A" + brightGreen: "#5FBE78" + brightYellow: "#D9C999" + brightBlue: "#5CA5C0" + brightMagenta: "#B266A1" + brightCyan: "#9ED4E0" + brightWhite: "#D9E3F4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.2 + black: 0 + red: 21.1 + green: 41.1 + yellow: 61.4 + blue: 32.1 + magenta: 24.2 + cyan: 14.3 + white: 73.2 + brightBlack: 7.7 + brightRed: 28.4 + brightGreen: 56.2 + brightYellow: 73.6 + brightBlue: 47.9 + brightMagenta: 34.3 + brightCyan: 74.4 + brightWhite: 88.5 diff --git a/themes/cherry-blossom-theme--cherry-blossom-dimmed.yaml b/themes/cherry-blossom-theme--cherry-blossom-dimmed.yaml new file mode 100644 index 00000000..9d4dea7e --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-dimmed.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Dimmed)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#0D0D0D" + fg: "#F2F0F2" + black: "#1F1F1F" + red: "#D96A7E" + green: "#7DAD89" + yellow: "#BF8563" + blue: "#7DA6A6" + magenta: "#B07DA6" + cyan: "#7DA6A6" + white: "#F2F0F2" + brightBlack: "#735448" + brightRed: "#F24B88" + brightGreen: "#8FD19E" + brightYellow: "#F2A999" + brightBlue: "#8EBDC5" + brightMagenta: "#C88CBD" + brightCyan: "#8EBDC5" + brightWhite: "#F2F0F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 98.2 + black: 0 + red: 41.2 + green: 51.6 + yellow: 43.5 + blue: 49.8 + magenta: 41 + cyan: 49.8 + white: 98.2 + brightBlack: 18.3 + brightRed: 40.9 + brightGreen: 69.6 + brightYellow: 65.5 + brightBlue: 62.1 + brightMagenta: 50.2 + brightCyan: 62.1 + brightWhite: 98.2 diff --git a/themes/cherry-blossom-theme--cherry-blossom-night-harmony.yaml b/themes/cherry-blossom-theme--cherry-blossom-night-harmony.yaml new file mode 100644 index 00000000..00f86b8f --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-night-harmony.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Night Harmony)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#16172E" + fg: "#F8FAFF" + black: "#1A1B34" + red: "#E06796" + green: "#5DA68C" + yellow: "#D4964C" + blue: "#4A88C7" + magenta: "#C0579D" + cyan: "#4BA7BE" + white: "#DBE6F7" + brightBlack: "#5D6A85" + brightRed: "#E87CA6" + brightGreen: "#7FCEA8" + brightYellow: "#E6B575" + brightBlue: "#78A8DB" + brightMagenta: "#D07EB3" + brightCyan: "#6CBFD2" + brightWhite: "#F8FAFF" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 103.2 + black: 0 + red: 41.7 + green: 45.7 + yellow: 51.1 + blue: 35.8 + magenta: 32.5 + cyan: 47.3 + white: 89.8 + brightBlack: 23.4 + brightRed: 49.1 + brightGreen: 66.3 + brightYellow: 66 + brightBlue: 51.8 + brightMagenta: 45.9 + brightCyan: 60.1 + brightWhite: 103.2 diff --git a/themes/cherry-blossom-theme--cherry-blossom-night.yaml b/themes/cherry-blossom-theme--cherry-blossom-night.yaml new file mode 100644 index 00000000..22f84092 --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-night.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Night)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#18182E" + fg: "#FFFFFF" + black: "#1E1E36" + red: "#FF9FB2" + green: "#FFD9C0" + yellow: "#FFD0D0" + blue: "#A7CAEC" + magenta: "#D7A5BC" + cyan: "#B8E6FF" + white: "#FFFFFF" + brightBlack: "#433F4D" + brightRed: "#FFB5C5" + brightGreen: "#FFE4D0" + brightYellow: "#FFE0E0" + brightBlue: "#C0DBFF" + brightMagenta: "#EBBDD0" + brightCyan: "#CEEEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 282 + pair: null + contrast: + fg: 106.5 + black: 0 + red: 64.2 + green: 86.7 + yellow: 83.5 + blue: 70.8 + magenta: 59.8 + cyan: 86.1 + white: 106.5 + brightBlack: 7.4 + brightRed: 72.6 + brightGreen: 92 + brightYellow: 90.9 + brightBlue: 81.9 + brightMagenta: 72.7 + brightCyan: 92.2 + brightWhite: 106.5 diff --git a/themes/cherry-blossom-theme--cherry-blossom-osaka-light.yaml b/themes/cherry-blossom-theme--cherry-blossom-osaka-light.yaml new file mode 100644 index 00000000..74dac3ee --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-osaka-light.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Osaka Light)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#FAF8F5" + fg: "#5C5248" + black: "#3B342E" + red: "#C75B45" + green: "#7A8C51" + yellow: "#D68C45" + blue: "#4F7E91" + magenta: "#A66887" + cyan: "#5C9199" + white: "#9E948A" + brightBlack: "#6B6158" + brightRed: "#DA6C55" + brightGreen: "#8FA663" + brightYellow: "#E89E5A" + brightBlue: "#6596AA" + brightMagenta: "#BF80A1" + brightCyan: "#73ABB5" + brightWhite: "#D4CEC5" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.4 + black: 93.9 + red: 64.2 + green: 60.3 + yellow: 48.5 + blue: 66.7 + magenta: 65.1 + cyan: 58.6 + white: 52.3 + brightBlack: 76.1 + brightRed: 56.4 + brightGreen: 48.1 + brightYellow: 39.4 + brightBlue: 55.5 + brightMagenta: 53.5 + brightCyan: 45.9 + brightWhite: 21.7 diff --git a/themes/cherry-blossom-theme--cherry-blossom-osaka.yaml b/themes/cherry-blossom-theme--cherry-blossom-osaka.yaml new file mode 100644 index 00000000..4f5dce5b --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-osaka.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Osaka)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#1C2025" + fg: "#CED4DA" + black: "#16191D" + red: "#D98C71" + green: "#8ABF94" + yellow: "#E0C068" + blue: "#7DA3C4" + magenta: "#CEB195" + cyan: "#7DA3C4" + white: "#ADB5BD" + brightBlack: "#495057" + brightRed: "#EEBCB0" + brightGreen: "#A8D5B1" + brightYellow: "#EAD496" + brightBlue: "#9EC3E0" + brightMagenta: "#E6CCB2" + brightCyan: "#9EC3E0" + brightWhite: "#CED4DA" +meta: + mode: "dark" + accent: "yellow" + hue: 254 + pair: null + contrast: + fg: 77.9 + black: 0 + red: 48.5 + green: 59 + yellow: 68.4 + blue: 48.2 + magenta: 60.8 + cyan: 48.2 + white: 59.7 + brightBlack: 11.8 + brightRed: 70.9 + brightGreen: 72.5 + brightYellow: 79.3 + brightBlue: 65.6 + brightMagenta: 76.2 + brightCyan: 65.6 + brightWhite: 77.9 diff --git a/themes/cherry-blossom-theme--cherry-blossom-sky-vibrant.yaml b/themes/cherry-blossom-theme--cherry-blossom-sky-vibrant.yaml new file mode 100644 index 00000000..f00d8f4f --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-sky-vibrant.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Sky Vibrant)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#F5F9FF" + fg: "#192536" + black: "#192536" + red: "#E06796" + green: "#5DA68C" + yellow: "#D4964C" + blue: "#4A88C7" + magenta: "#C0579D" + cyan: "#4BA7BE" + white: "#F5F9FF" + brightBlack: "#8CA2BC" + brightRed: "#E87CA6" + brightGreen: "#7FCEA8" + brightYellow: "#E6B575" + brightBlue: "#78A8DB" + brightMagenta: "#D07EB3" + brightCyan: "#6CBFD2" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 98.5 + black: 98.5 + red: 54.9 + green: 51 + yellow: 45.8 + blue: 60.8 + magenta: 64 + cyan: 49.4 + white: 0 + brightBlack: 47.3 + brightRed: 47.7 + brightGreen: 31.1 + brightYellow: 31.4 + brightBlue: 45 + brightMagenta: 50.8 + brightCyan: 37 + brightWhite: 0 diff --git a/themes/cherry-blossom-theme--cherry-blossom-spring.yaml b/themes/cherry-blossom-theme--cherry-blossom-spring.yaml new file mode 100644 index 00000000..9aed2148 --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-spring.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Spring)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#F0F5FA" + fg: "#2D3748" + black: "#1A202C" + red: "#FC8181" + green: "#68D391" + yellow: "#F6AD55" + blue: "#63B3ED" + magenta: "#D53F8C" + cyan: "#4FD1C5" + white: "#CBD5E0" + brightBlack: "#4A5568" + brightRed: "#F56565" + brightGreen: "#48BB78" + brightYellow: "#ED8936" + brightBlue: "#4299E1" + brightMagenta: "#B83280" + brightCyan: "#38B2AC" + brightWhite: "#E2E8F0" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 91.1 + black: 96.9 + red: 41.2 + green: 28.4 + yellow: 29.7 + blue: 38.4 + magenta: 62 + cyan: 28.5 + white: 16.5 + brightBlack: 79.8 + brightRed: 49.9 + brightGreen: 41.1 + brightYellow: 43.2 + brightBlue: 50.7 + brightMagenta: 70 + brightCyan: 43.8 + brightWhite: 0 diff --git a/themes/cherry-blossom-theme--cherry-blossom-twilight.yaml b/themes/cherry-blossom-theme--cherry-blossom-twilight.yaml new file mode 100644 index 00000000..cf517012 --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-twilight.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Twilight)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#232026" + fg: "#F0E6EF" + black: "#201D23" + red: "#DF88A7" + green: "#84BD8B" + yellow: "#EDBE80" + blue: "#8992D4" + magenta: "#C87D9D" + cyan: "#8CCBED" + white: "#E0D6E0" + brightBlack: "#6E636E" + brightRed: "#E7A4BA" + brightGreen: "#A2D1A7" + brightYellow: "#EDCEA1" + brightBlue: "#A5ACE5" + brightMagenta: "#D898B4" + brightCyan: "#A3D5F3" + brightWhite: "#F0E6EF" +meta: + mode: "dark" + accent: "red" + hue: 308 + pair: null + contrast: + fg: 91.2 + black: 0 + red: 49.8 + green: 57.1 + yellow: 69.9 + blue: 43.6 + magenta: 42.3 + cyan: 68 + white: 81.2 + brightBlack: 20.9 + brightRed: 61 + brightGreen: 69.5 + brightYellow: 77.3 + brightBlue: 57 + brightMagenta: 54.2 + brightCyan: 74.8 + brightWhite: 91.2 diff --git a/themes/cherry-blossom-theme--cherry-blossom-warm.yaml b/themes/cherry-blossom-theme--cherry-blossom-warm.yaml new file mode 100644 index 00000000..6c89372d --- /dev/null +++ b/themes/cherry-blossom-theme--cherry-blossom-warm.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom Theme (Cherry Blossom Warm)" +source: + marketplace_id: "daitsuku.cherry-blossom-vscode-theme" + version: "1.2.1" + installs: 2134 + rating: 0 + ratings: 0 + author: "daitsuku" + repo: "https://gitlab.com/daitsuku/cherry-blossom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daitsuku.cherry-blossom-vscode-theme" + formats: null +colors: + bg: "#FFF5F8" + fg: "#2A1F28" + black: "#2A1F28" + red: "#D95D92" + green: "#6BAD9A" + yellow: "#D9A95D" + blue: "#5D92D9" + magenta: "#B15D95" + cyan: "#5DB1D9" + white: "#FFF0F5" + brightBlack: "#AA8699" + brightRed: "#E678A5" + brightGreen: "#87C4B1" + brightYellow: "#EBBE7D" + brightBlue: "#7DABEB" + brightMagenta: "#CE7DAD" + brightCyan: "#7DCEEB" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 98.2 + black: 98.2 + red: 57.8 + green: 46.2 + yellow: 37.5 + blue: 54.4 + magenta: 65 + cyan: 42.5 + white: 0 + brightBlack: 54.5 + brightRed: 48.4 + brightGreen: 33.8 + brightYellow: 26.4 + brightBlue: 41.9 + brightMagenta: 51 + brightCyan: 27.7 + brightWhite: 0 diff --git a/themes/cherry-blossom.yaml b/themes/cherry-blossom.yaml new file mode 100644 index 00000000..8de92d28 --- /dev/null +++ b/themes/cherry-blossom.yaml @@ -0,0 +1,53 @@ +name: "Cherry Blossom" +source: + marketplace_id: "NaClara117.cherryblossom" + version: "0.0.1" + installs: 2235 + rating: 4 + ratings: 2 + author: "NaClara" + repo: "https://github.com/AnaXP/cherryBlossom" + url: "https://marketplace.visualstudio.com/items?itemName=NaClara117.cherryblossom" + formats: null +colors: + bg: "#201708" + fg: "#F5E9D7" + black: "#000000" + red: "#FF0000" + green: "#5DFF00" + yellow: "#FFFF00" + blue: "#0034FF" + magenta: "#FF005C" + cyan: "#00FF93" + white: "#F7EEE2" + brightBlack: "#0D0902" + brightRed: "#FF5050" + brightGreen: "#95FF58" + brightYellow: "#FFFF59" + brightBlue: "#5899FF" + brightMagenta: "#FF3E83" + brightCyan: "#55FFAF" + brightWhite: "#F7EEE2" +meta: + mode: "dark" + accent: "purple" + hue: 79 + pair: null + contrast: + fg: 93.3 + black: 0 + red: 36.3 + green: 86.8 + yellow: 101.5 + blue: 17.9 + magenta: 37.1 + cyan: 86.8 + white: 96.3 + brightBlack: 0 + brightRed: 42.3 + brightGreen: 90.4 + brightYellow: 101.9 + brightBlue: 46.6 + brightMagenta: 41.1 + brightCyan: 88.8 + brightWhite: 96.3 diff --git a/themes/chinolor-theme--chinolor-light.yaml b/themes/chinolor-theme--chinolor-light.yaml new file mode 100644 index 00000000..c975ebf1 --- /dev/null +++ b/themes/chinolor-theme--chinolor-light.yaml @@ -0,0 +1,53 @@ +name: "Chinolor Theme (Chinolor Light)" +source: + marketplace_id: "iwyvi.chinolor" + version: "0.2.19" + installs: 36146 + rating: 5 + ratings: 24 + author: "iwyvi" + repo: "https://github.com/iwyvi/chinolor" + url: "https://marketplace.visualstudio.com/items?itemName=iwyvi.chinolor" + formats: null +colors: + bg: "#F8F4ED" + fg: "#2B312C" + black: "#000000" + red: "#EE3F4D" + green: "#96C24E" + yellow: "#F9D367" + blue: "#619AC3" + magenta: "#D276A3" + cyan: "#57C3C2" + white: "#E4DFD7" + brightBlack: "#2B312C" + brightRed: "#EE3F4D" + brightGreen: "#41AE3C" + brightYellow: "#B78D12" + brightBlue: "#619AC3" + brightMagenta: "#CC5595" + brightCyan: "#12AA9C" + brightWhite: "#F8F4ED" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 93.4 + black: 99.7 + red: 58.2 + green: 34 + yellow: 14.8 + blue: 50.7 + magenta: 50.8 + cyan: 34.6 + white: 9.8 + brightBlack: 93.4 + brightRed: 58.2 + brightGreen: 48 + brightYellow: 51.1 + brightBlue: 50.7 + brightMagenta: 60 + brightCyan: 48.3 + brightWhite: 0 diff --git a/themes/chinolor-theme--chinolor.yaml b/themes/chinolor-theme--chinolor.yaml new file mode 100644 index 00000000..893708b0 --- /dev/null +++ b/themes/chinolor-theme--chinolor.yaml @@ -0,0 +1,53 @@ +name: "Chinolor Theme (Chinolor)" +source: + marketplace_id: "iwyvi.chinolor" + version: "0.2.19" + installs: 36146 + rating: 5 + ratings: 24 + author: "iwyvi" + repo: "https://github.com/iwyvi/chinolor" + url: "https://marketplace.visualstudio.com/items?itemName=iwyvi.chinolor" + formats: null +colors: + bg: "#2B312C" + fg: "#E4DFD7" + black: "#000000" + red: "#EE3F4D" + green: "#96C24E" + yellow: "#F9D367" + blue: "#619AC3" + magenta: "#D276A3" + cyan: "#57C3C2" + white: "#E4DFD7" + brightBlack: "#8A988E" + brightRed: "#EE3F4D" + brightGreen: "#41AE3C" + brightYellow: "#B78D12" + brightBlue: "#619AC3" + brightMagenta: "#CC5595" + brightCyan: "#12AA9C" + brightWhite: "#F8F4ED" +meta: + mode: "dark" + accent: "orange" + hue: 150 + pair: null + contrast: + fg: 82.6 + black: 0 + red: 32.1 + green: 56.9 + yellow: 77.2 + blue: 39.7 + magenta: 39.6 + cyan: 56.4 + white: 82.6 + brightBlack: 39.9 + brightRed: 32.1 + brightGreen: 42.5 + brightYellow: 39.3 + brightBlue: 39.7 + brightMagenta: 30.3 + brightCyan: 42.1 + brightWhite: 95.9 diff --git a/themes/chroma-library--deep-ocean.yaml b/themes/chroma-library--deep-ocean.yaml new file mode 100644 index 00000000..c0246d40 --- /dev/null +++ b/themes/chroma-library--deep-ocean.yaml @@ -0,0 +1,53 @@ +name: "Chroma Library (Deep Ocean)" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 360 + rating: 5 + ratings: 1 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" + formats: null +colors: + bg: "#0A1420" + fg: "#80D0FF" + black: "#000000" + red: "#FF4080" + green: "#40FF80" + yellow: "#FFFF40" + blue: "#0080FF" + magenta: "#8040FF" + cyan: "#00BFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF4080" + brightGreen: "#40FF80" + brightYellow: "#FFFF40" + brightBlue: "#0080FF" + brightMagenta: "#8040FF" + brightCyan: "#00BFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 254 + pair: null + contrast: + fg: 72 + black: 0 + red: 41.7 + green: 87.5 + yellow: 102.2 + blue: 36.3 + magenta: 26.7 + cyan: 60.7 + white: 107.2 + brightBlack: 0 + brightRed: 41.7 + brightGreen: 87.5 + brightYellow: 102.2 + brightBlue: 36.3 + brightMagenta: 26.7 + brightCyan: 60.7 + brightWhite: 107.2 diff --git a/themes/chroma-library--dna-helix.yaml b/themes/chroma-library--dna-helix.yaml new file mode 100644 index 00000000..4c6546cd --- /dev/null +++ b/themes/chroma-library--dna-helix.yaml @@ -0,0 +1,53 @@ +name: "Chroma Library (DNA Helix)" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 360 + rating: 5 + ratings: 1 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" + formats: null +colors: + bg: "#0A0F1A" + fg: "#E0F0FF" + black: "#000000" + red: "#FF4757" + green: "#00FF99" + yellow: "#FFA502" + blue: "#3742FA" + magenta: "#E056FD" + cyan: "#00FFCC" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF6B7A" + brightGreen: "#33FFAA" + brightYellow: "#FFB733" + brightBlue: "#5865F2" + brightMagenta: "#E67EFF" + brightCyan: "#33FFDD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 265 + pair: null + contrast: + fg: 96.3 + black: 0 + red: 41.9 + green: 87.8 + yellow: 64.3 + blue: 21.2 + magenta: 45.2 + cyan: 89.4 + white: 107.5 + brightBlack: 22.6 + brightRed: 49.1 + brightGreen: 88.6 + brightYellow: 71 + brightBlue: 29.7 + brightMagenta: 55 + brightCyan: 90.5 + brightWhite: 107.5 diff --git a/themes/chroma-library--electric-blue.yaml b/themes/chroma-library--electric-blue.yaml new file mode 100644 index 00000000..6446f389 --- /dev/null +++ b/themes/chroma-library--electric-blue.yaml @@ -0,0 +1,53 @@ +name: "Chroma Library (Electric Blue)" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 360 + rating: 5 + ratings: 1 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" + formats: null +colors: + bg: "#0A0F1A" + fg: "#E0F0FF" + black: "#000000" + red: "#FF4080" + green: "#40FF80" + yellow: "#FFFF40" + blue: "#0080FF" + magenta: "#8040FF" + cyan: "#00BFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF6080" + brightGreen: "#60FF80" + brightYellow: "#FFFF60" + brightBlue: "#4080FF" + brightMagenta: "#A060FF" + brightCyan: "#40DFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 265 + pair: null + contrast: + fg: 96.3 + black: 0 + red: 42 + green: 87.8 + yellow: 102.5 + blue: 36.7 + magenta: 27 + cyan: 61 + white: 107.5 + brightBlack: 22.6 + brightRed: 47 + brightGreen: 88.8 + brightYellow: 102.8 + brightBlue: 37.6 + brightMagenta: 36.8 + brightCyan: 76.4 + brightWhite: 107.5 diff --git a/themes/chroma-library--midnight-purple.yaml b/themes/chroma-library--midnight-purple.yaml new file mode 100644 index 00000000..5013a839 --- /dev/null +++ b/themes/chroma-library--midnight-purple.yaml @@ -0,0 +1,53 @@ +name: "Chroma Library (Midnight Purple)" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 360 + rating: 5 + ratings: 1 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" + formats: null +colors: + bg: "#0F0A1A" + fg: "#C080FF" + black: "#000000" + red: "#FF4080" + green: "#80FF40" + yellow: "#FFFF40" + blue: "#4080FF" + magenta: "#BF00FF" + cyan: "#40FFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF4080" + brightGreen: "#80FF40" + brightYellow: "#FFFF40" + brightBlue: "#4080FF" + brightMagenta: "#BF00FF" + brightCyan: "#40FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 297 + pair: null + contrast: + fg: 49.5 + black: 0 + red: 42.1 + green: 89.6 + yellow: 102.6 + blue: 37.8 + magenta: 32.8 + cyan: 92.5 + white: 107.6 + brightBlack: 0 + brightRed: 42.1 + brightGreen: 89.6 + brightYellow: 102.6 + brightBlue: 37.8 + brightMagenta: 32.8 + brightCyan: 92.5 + brightWhite: 107.6 diff --git a/themes/chroma-library--neon-cyber.yaml b/themes/chroma-library--neon-cyber.yaml new file mode 100644 index 00000000..ca307c40 --- /dev/null +++ b/themes/chroma-library--neon-cyber.yaml @@ -0,0 +1,53 @@ +name: "Chroma Library (Neon Cyber)" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 360 + rating: 5 + ratings: 1 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" + formats: null +colors: + bg: "#0A0A0F" + fg: "#E0E0FF" + black: "#000000" + red: "#FF0080" + green: "#00FF80" + yellow: "#FFFF00" + blue: "#0080FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF4080" + brightGreen: "#40FF80" + brightYellow: "#FFFF40" + brightBlue: "#4080FF" + brightMagenta: "#FF40FF" + brightCyan: "#40FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 285 + pair: null + contrast: + fg: 89.3 + black: 0 + red: 39.1 + green: 87.4 + yellow: 102.5 + blue: 36.9 + magenta: 46.1 + cyan: 92 + white: 107.7 + brightBlack: 22.9 + brightRed: 42.3 + brightGreen: 88 + brightYellow: 102.7 + brightBlue: 37.9 + brightMagenta: 49 + brightCyan: 92.6 + brightWhite: 107.7 diff --git a/themes/chroma-library--neon-synthwave.yaml b/themes/chroma-library--neon-synthwave.yaml new file mode 100644 index 00000000..104d3528 --- /dev/null +++ b/themes/chroma-library--neon-synthwave.yaml @@ -0,0 +1,53 @@ +name: "Chroma Library (Neon Synthwave)" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 360 + rating: 5 + ratings: 1 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" + formats: null +colors: + bg: "#1A0D1A" + fg: "#FF80FF" + black: "#000000" + red: "#FF0080" + green: "#FF80FF" + yellow: "#FFFF80" + blue: "#8080FF" + magenta: "#FF00FF" + cyan: "#80FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF4080" + brightGreen: "#FF80FF" + brightYellow: "#FFFF80" + brightBlue: "#8080FF" + brightMagenta: "#FF40FF" + brightCyan: "#80FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 327 + pair: null + contrast: + fg: 60 + black: 0 + red: 38.7 + green: 60 + yellow: 103.1 + blue: 41.5 + magenta: 45.6 + cyan: 94.7 + white: 107.3 + brightBlack: 22.5 + brightRed: 41.8 + brightGreen: 60 + brightYellow: 103.1 + brightBlue: 41.5 + brightMagenta: 48.5 + brightCyan: 94.7 + brightWhite: 107.3 diff --git a/themes/chroma-library--plasma-pink.yaml b/themes/chroma-library--plasma-pink.yaml new file mode 100644 index 00000000..7ce08ccf --- /dev/null +++ b/themes/chroma-library--plasma-pink.yaml @@ -0,0 +1,53 @@ +name: "Chroma Library (Plasma Pink)" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 360 + rating: 5 + ratings: 1 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" + formats: null +colors: + bg: "#1A0A1A" + fg: "#FFE0FF" + black: "#000000" + red: "#FF1493" + green: "#FF69B4" + yellow: "#FFC0CB" + blue: "#DA70D6" + magenta: "#FF00FF" + cyan: "#DDA0DD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF69B4" + brightGreen: "#FFB6C1" + brightYellow: "#FFE4E1" + brightBlue: "#EE82EE" + brightMagenta: "#FF40FF" + brightCyan: "#F0E0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 327 + pair: null + contrast: + fg: 93.3 + black: 0 + red: 39.6 + green: 50.6 + yellow: 77.8 + blue: 46.6 + magenta: 45.7 + cyan: 61.5 + white: 107.4 + brightBlack: 22.5 + brightRed: 50.6 + brightGreen: 73.7 + brightYellow: 93.6 + brightBlue: 56.3 + brightMagenta: 48.6 + brightCyan: 91.1 + brightWhite: 107.4 diff --git a/themes/chroma-library--quantum-green.yaml b/themes/chroma-library--quantum-green.yaml new file mode 100644 index 00000000..51a63f6c --- /dev/null +++ b/themes/chroma-library--quantum-green.yaml @@ -0,0 +1,53 @@ +name: "Chroma Library (Quantum Green)" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 360 + rating: 5 + ratings: 1 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" + formats: null +colors: + bg: "#0A1A0A" + fg: "#E0FFE0" + black: "#000000" + red: "#FF4040" + green: "#00FF00" + yellow: "#FFFF40" + blue: "#4040FF" + magenta: "#FF40FF" + cyan: "#40FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF6060" + brightGreen: "#40FF40" + brightYellow: "#FFFF60" + brightBlue: "#6060FF" + brightMagenta: "#FF60FF" + brightCyan: "#60FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 144 + pair: null + contrast: + fg: 101.4 + black: 0 + red: 40.1 + green: 85.5 + yellow: 101.9 + blue: 21.2 + magenta: 48.1 + cyan: 91.8 + white: 106.9 + brightBlack: 22 + brightRed: 45.6 + brightGreen: 86.3 + brightYellow: 102.2 + brightBlue: 29.6 + brightMagenta: 52.7 + brightCyan: 92.7 + brightWhite: 106.9 diff --git a/themes/chroma-library--solar-flare.yaml b/themes/chroma-library--solar-flare.yaml new file mode 100644 index 00000000..9a1a2116 --- /dev/null +++ b/themes/chroma-library--solar-flare.yaml @@ -0,0 +1,53 @@ +name: "Chroma Library (Solar Flare)" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 360 + rating: 5 + ratings: 1 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" + formats: null +colors: + bg: "#1A0A00" + fg: "#FFAA40" + black: "#000000" + red: "#FF4040" + green: "#40FF40" + yellow: "#FFFF40" + blue: "#4040FF" + magenta: "#FF40FF" + cyan: "#40FFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF4040" + brightGreen: "#40FF40" + brightYellow: "#FFFF40" + brightBlue: "#4040FF" + brightMagenta: "#FF40FF" + brightCyan: "#40FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 62 + pair: null + contrast: + fg: 66.3 + black: 0 + red: 40.7 + green: 86.9 + yellow: 102.5 + blue: 21.8 + magenta: 48.7 + cyan: 92.4 + white: 107.5 + brightBlack: 0 + brightRed: 40.7 + brightGreen: 86.9 + brightYellow: 102.5 + brightBlue: 21.8 + brightMagenta: 48.7 + brightCyan: 92.4 + brightWhite: 107.5 diff --git a/themes/chroma-library--toxic-waste.yaml b/themes/chroma-library--toxic-waste.yaml new file mode 100644 index 00000000..202f23e7 --- /dev/null +++ b/themes/chroma-library--toxic-waste.yaml @@ -0,0 +1,53 @@ +name: "Chroma Library (Toxic Waste)" +source: + marketplace_id: "CodewithBismillah.chroma-library" + version: "1.2.1" + installs: 360 + rating: 5 + ratings: 1 + author: "Code with Bismillah" + repo: "https://github.com/mubashir1837/Chroma-Library" + url: "https://marketplace.visualstudio.com/items?itemName=CodewithBismillah.chroma-library" + formats: null +colors: + bg: "#0A1A0A" + fg: "#80FF80" + black: "#000000" + red: "#FF4040" + green: "#00FF00" + yellow: "#FFFF40" + blue: "#4040FF" + magenta: "#FF40FF" + cyan: "#40FFFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF4040" + brightGreen: "#00FF00" + brightYellow: "#FFFF40" + brightBlue: "#4040FF" + brightMagenta: "#FF40FF" + brightCyan: "#40FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 144 + pair: null + contrast: + fg: 89.8 + black: 0 + red: 40.1 + green: 85.5 + yellow: 101.9 + blue: 21.2 + magenta: 48.1 + cyan: 91.8 + white: 106.9 + brightBlack: 0 + brightRed: 40.1 + brightGreen: 85.5 + brightYellow: 101.9 + brightBlue: 21.2 + brightMagenta: 48.1 + brightCyan: 91.8 + brightWhite: 106.9 diff --git a/themes/chromahin--chromahin-amoled.yaml b/themes/chromahin--chromahin-amoled.yaml new file mode 100644 index 00000000..0b036b93 --- /dev/null +++ b/themes/chromahin--chromahin-amoled.yaml @@ -0,0 +1,53 @@ +name: "CHROMAHIN (CHROMAHIN AMOLED)" +source: + marketplace_id: "mahin-ltd.chromahin" + version: "1.0.0" + installs: 53 + rating: 5 + ratings: 1 + author: "Mahin Ltd" + repo: "https://github.com/mahinltd/chromahin" + url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" + formats: null +colors: + bg: "#000000" + fg: "#E8F1FF" + black: "#02070D" + red: "#FF4F73" + green: "#33D876" + yellow: "#F0C54A" + blue: "#3F77F0" + magenta: "#8B7CFF" + cyan: "#16D5EE" + white: "#E8F1FF" + brightBlack: "#172030" + brightRed: "#FF6A8A" + brightGreen: "#53E38A" + brightYellow: "#F5D562" + brightBlue: "#5C8FF3" + brightMagenta: "#A897FF" + brightCyan: "#3BE9F7" + brightWhite: "#F9FBFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 98.2 + black: 0 + red: 44.1 + green: 67.7 + yellow: 74.6 + blue: 33.9 + magenta: 42 + cyan: 70.4 + white: 98.2 + brightBlack: 0 + brightRed: 49.7 + brightGreen: 74.5 + brightYellow: 82.4 + brightBlue: 43.5 + brightMagenta: 53.7 + brightCyan: 81.1 + brightWhite: 105.1 diff --git a/themes/chromahin--chromahin-dark.yaml b/themes/chromahin--chromahin-dark.yaml new file mode 100644 index 00000000..9b258198 --- /dev/null +++ b/themes/chromahin--chromahin-dark.yaml @@ -0,0 +1,53 @@ +name: "CHROMAHIN (CHROMAHIN Dark)" +source: + marketplace_id: "mahin-ltd.chromahin" + version: "1.0.0" + installs: 53 + rating: 5 + ratings: 1 + author: "Mahin Ltd" + repo: "https://github.com/mahinltd/chromahin" + url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" + formats: null +colors: + bg: "#0C111B" + fg: "#E3ECFF" + black: "#0C111B" + red: "#FF5C7A" + green: "#46D879" + yellow: "#F2C744" + blue: "#4F7DF3" + magenta: "#8B7CFF" + cyan: "#22D3EE" + white: "#E3ECFF" + brightBlack: "#1E2636" + brightRed: "#FF7B92" + brightGreen: "#63E28F" + brightYellow: "#F6D563" + brightBlue: "#6C95F6" + brightMagenta: "#A897FF" + brightCyan: "#46E5F7" + brightWhite: "#F7FAFF" +meta: + mode: "dark" + accent: "red" + hue: 264 + pair: null + contrast: + fg: 94.7 + black: 0 + red: 45.9 + green: 67.7 + yellow: 75.1 + blue: 36.2 + magenta: 41.4 + cyan: 69.1 + white: 94.7 + brightBlack: 0 + brightRed: 53.4 + brightGreen: 74.3 + brightYellow: 82 + brightBlue: 46.3 + brightMagenta: 53.2 + brightCyan: 78.9 + brightWhite: 103.9 diff --git a/themes/chromahin--chromahin-multi-color.yaml b/themes/chromahin--chromahin-multi-color.yaml new file mode 100644 index 00000000..e3ffbbfb --- /dev/null +++ b/themes/chromahin--chromahin-multi-color.yaml @@ -0,0 +1,53 @@ +name: "CHROMAHIN (CHROMAHIN Multi-color)" +source: + marketplace_id: "mahin-ltd.chromahin" + version: "1.0.0" + installs: 53 + rating: 5 + ratings: 1 + author: "Mahin Ltd" + repo: "https://github.com/mahinltd/chromahin" + url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" + formats: null +colors: + bg: "#0D1220" + fg: "#E4EEFF" + black: "#0D1220" + red: "#FF6F98" + green: "#47D988" + yellow: "#F3C955" + blue: "#5B7CFF" + magenta: "#B985FF" + cyan: "#45E0FF" + white: "#E4EEFF" + brightBlack: "#1E273A" + brightRed: "#FF8BAF" + brightGreen: "#64E79B" + brightYellow: "#F7D86F" + brightBlue: "#7690FF" + brightMagenta: "#C9A3FF" + brightCyan: "#62EAFF" + brightWhite: "#F7FAFF" +meta: + mode: "dark" + accent: "purple" + hue: 268 + pair: null + contrast: + fg: 95.6 + black: 0 + red: 50.7 + green: 68.5 + yellow: 76.2 + blue: 37.4 + magenta: 49.6 + cyan: 76.8 + white: 95.6 + brightBlack: 0 + brightRed: 58.7 + brightGreen: 77 + brightYellow: 83.6 + brightBlue: 45.8 + brightMagenta: 61.5 + brightCyan: 82.6 + brightWhite: 103.8 diff --git a/themes/chromahin--chromahin-soft.yaml b/themes/chromahin--chromahin-soft.yaml new file mode 100644 index 00000000..c0a3cf8a --- /dev/null +++ b/themes/chromahin--chromahin-soft.yaml @@ -0,0 +1,53 @@ +name: "CHROMAHIN (CHROMAHIN Soft)" +source: + marketplace_id: "mahin-ltd.chromahin" + version: "1.0.0" + installs: 53 + rating: 5 + ratings: 1 + author: "Mahin Ltd" + repo: "https://github.com/mahinltd/chromahin" + url: "https://marketplace.visualstudio.com/items?itemName=mahin-ltd.chromahin" + formats: null +colors: + bg: "#111724" + fg: "#E7EFFB" + black: "#111724" + red: "#F8748F" + green: "#50C98A" + yellow: "#EFC36D" + blue: "#5F86E8" + magenta: "#9F8DFF" + cyan: "#54CCE6" + white: "#E7EFFB" + brightBlack: "#1E2A3B" + brightRed: "#FF8FA5" + brightGreen: "#69DAA2" + brightYellow: "#F3D488" + brightBlue: "#779AF0" + brightMagenta: "#B5A6FF" + brightCyan: "#6CDDF1" + brightWhite: "#F7FAFF" +meta: + mode: "dark" + accent: "red" + hue: 265 + pair: null + contrast: + fg: 95.9 + black: 0 + red: 49.6 + green: 60.8 + yellow: 73 + blue: 38.7 + magenta: 48.3 + cyan: 66.1 + white: 95.9 + brightBlack: 0 + brightRed: 59.1 + brightGreen: 70.7 + brightYellow: 81.3 + brightBlue: 48 + brightMagenta: 59.5 + brightCyan: 75.7 + brightWhite: 103.4 diff --git a/themes/chromodynamics-v3-theme.yaml b/themes/chromodynamics-v3-theme.yaml new file mode 100644 index 00000000..5cbdf6f5 --- /dev/null +++ b/themes/chromodynamics-v3-theme.yaml @@ -0,0 +1,53 @@ +name: "Chromodynamics V3 Theme" +source: + marketplace_id: "leelhn2345.chromodynamics-v3-theme" + version: "0.4.7" + installs: 612 + rating: 0 + ratings: 0 + author: "leelhn2345" + repo: "https://github.com/leelhn2345/chromodynamics-v3-theme" + url: "https://marketplace.visualstudio.com/items?itemName=leelhn2345.chromodynamics-v3-theme" + formats: null +colors: + bg: "#060606" + fg: "#C6C6C6" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 72.1 + black: 13.5 + red: 53 + green: 52.6 + yellow: 52.7 + blue: 52.7 + magenta: 52.7 + cyan: 61.8 + white: 64.5 + brightBlack: 29.7 + brightRed: 65.3 + brightGreen: 65.9 + brightYellow: 65.2 + brightBlue: 65.2 + brightMagenta: 65.1 + brightCyan: 70.4 + brightWhite: 107.8 diff --git a/themes/cinnamoroll-dark-theme.yaml b/themes/cinnamoroll-dark-theme.yaml new file mode 100644 index 00000000..b4769e84 --- /dev/null +++ b/themes/cinnamoroll-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Cinnamoroll | DARK THEME" +source: + marketplace_id: "dango.cinnamoroll-dark-theme" + version: "1.1.1" + installs: 653 + rating: 5 + ratings: 1 + author: "Daniel Radosa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dango.cinnamoroll-dark-theme" + formats: null +colors: + bg: "#191919" + fg: "#FF7B7B" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: "Cinnamoroll | LIGHT THEME" + contrast: + fg: 52.1 + black: 0 + red: 26.5 + green: 51.5 + yellow: 42.6 + blue: 14.8 + magenta: 25.9 + cyan: 39.9 + white: 14.9 + brightBlack: 21.8 + brightRed: 26.5 + brightGreen: 60.1 + brightYellow: 60.1 + brightBlue: 14.8 + brightMagenta: 25.9 + brightCyan: 39.9 + brightWhite: 52.3 diff --git a/themes/cinnamoroll-light-theme.yaml b/themes/cinnamoroll-light-theme.yaml new file mode 100644 index 00000000..47ea1e62 --- /dev/null +++ b/themes/cinnamoroll-light-theme.yaml @@ -0,0 +1,53 @@ +name: "Cinnamoroll | LIGHT THEME" +source: + marketplace_id: "dango.cinnamonroll-theme" + version: "1.0.3" + installs: 1202 + rating: 5 + ratings: 1 + author: "Daniel Radosa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dango.cinnamonroll-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#999999" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: "Cinnamoroll | DARK THEME" + contrast: + fg: 54.6 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/clasic-harmonized.yaml b/themes/clasic-harmonized.yaml new file mode 100644 index 00000000..2d4c0749 --- /dev/null +++ b/themes/clasic-harmonized.yaml @@ -0,0 +1,53 @@ +name: "Clasic Harmonized" +source: + marketplace_id: "drkcode.clasic-harmonized-theme" + version: "0.0.5" + installs: 559 + rating: 0 + ratings: 0 + author: "drkcode" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=drkcode.clasic-harmonized-theme" + formats: null +colors: + bg: "#F9F4E7" + fg: "#333333" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#EEE8D5" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.2 + black: 92.5 + red: 64.1 + green: 52.6 + yellow: 52.6 + blue: 57.5 + magenta: 63.8 + cyan: 51.8 + white: 0 + brightBlack: 70.4 + brightRed: 64.6 + brightGreen: 70.4 + brightYellow: 64.5 + brightBlue: 52.3 + brightMagenta: 63.8 + brightCyan: 45.5 + brightWhite: 0 diff --git a/themes/classic-essential-colors-blue-balsa.yaml b/themes/classic-essential-colors-blue-balsa.yaml new file mode 100644 index 00000000..60681b52 --- /dev/null +++ b/themes/classic-essential-colors-blue-balsa.yaml @@ -0,0 +1,53 @@ +name: "Classic Essential Colors (Blue)" +source: + marketplace_id: "balsa.vscode-theme-classic-essential-colors-blue" + version: "1.2.2" + installs: 396 + rating: 0 + ratings: 0 + author: "balsa" + repo: "https://github.com/makesomesparks/vscode-theme-classic-essential-colors-blue" + url: "https://marketplace.visualstudio.com/items?itemName=balsa.vscode-theme-classic-essential-colors-blue" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#FF0000" + green: "#008A1C" + yellow: "#F8FF00" + blue: "#0000FF" + magenta: "#BC05BC" + cyan: "#00CDFF" + white: "#A7A7A7" + brightBlack: "#474747" + brightRed: "#FF4141" + brightGreen: "#00FF34" + brightYellow: "#FCFF95" + brightBlue: "#4040FF" + brightMagenta: "#BC05BC" + brightCyan: "#64E0FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 64.1 + green: 70.6 + yellow: 0 + blue: 85.8 + magenta: 74.6 + cyan: 34.9 + white: 47.4 + brightBlack: 91.5 + brightRed: 60.5 + brightGreen: 17 + brightYellow: 0 + brightBlue: 79.6 + brightMagenta: 74.6 + brightCyan: 24.6 + brightWhite: 0 diff --git a/themes/classic-macos-theme-zed-port--macos-classic-dark.yaml b/themes/classic-macos-theme-zed-port--macos-classic-dark.yaml new file mode 100644 index 00000000..ea830043 --- /dev/null +++ b/themes/classic-macos-theme-zed-port--macos-classic-dark.yaml @@ -0,0 +1,53 @@ +name: "Classic macOS Theme (Zed Port) (macOS Classic Dark)" +source: + marketplace_id: "MacOSClassicTheme.macos-classic-theme" + version: "0.1.0" + installs: 220 + rating: 0 + ratings: 0 + author: "CHENJIE" + repo: "https://github.com/wavyhair/vscode-macos-classic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MacOSClassicTheme.macos-classic-theme" + formats: null +colors: + bg: "#131313" + fg: "#DDDDDD" + black: "#E8E4CF" + red: "#A8473B" + green: "#76BA53" + yellow: "#E1D797" + blue: "#082190" + magenta: "#AE30C2" + cyan: "#3DB6B0" + white: "#131313" + brightBlack: "#57564F" + brightRed: "#DD6F61" + brightGreen: "#9DE478" + brightYellow: "#857F5C" + brightBlue: "#81A9F6" + brightMagenta: "#D86DE9" + brightCyan: "#5BDFD8" + brightWhite: "#3A3A3A" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 85.4 + black: 89.4 + red: 22.8 + green: 55.2 + yellow: 80.7 + blue: 0 + magenta: 26.2 + cyan: 53.2 + white: 0 + brightBlack: 15.7 + brightRed: 42.1 + brightGreen: 78.4 + brightYellow: 33.3 + brightBlue: 55.2 + brightMagenta: 46.6 + brightCyan: 75 + brightWhite: 0 diff --git a/themes/classic-macos-theme-zed-port--macos-classic-light.yaml b/themes/classic-macos-theme-zed-port--macos-classic-light.yaml new file mode 100644 index 00000000..cb58d0db --- /dev/null +++ b/themes/classic-macos-theme-zed-port--macos-classic-light.yaml @@ -0,0 +1,53 @@ +name: "Classic macOS Theme (Zed Port) (macOS Classic Light)" +source: + marketplace_id: "MacOSClassicTheme.macos-classic-theme" + version: "0.1.0" + installs: 220 + rating: 0 + ratings: 0 + author: "CHENJIE" + repo: "https://github.com/wavyhair/vscode-macos-classic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MacOSClassicTheme.macos-classic-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#C5060B" + green: "#277F2B" + yellow: "#8E7823" + blue: "#282BFF" + magenta: "#AE30C2" + cyan: "#00767C" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#D9564E" + brightGreen: "#35BD33" + brightYellow: "#BDA400" + brightBlue: "#5685F4" + brightMagenta: "#D75CE7" + brightCyan: "#20B1C9" + brightWhite: "#999999" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 78.1 + green: 74.5 + yellow: 69.8 + blue: 83.4 + magenta: 74.8 + cyan: 76.4 + white: 0 + brightBlack: 90.3 + brightRed: 65.6 + brightGreen: 48.1 + brightYellow: 48.5 + brightBlue: 61.9 + brightMagenta: 58.4 + brightCyan: 49.7 + brightWhite: 54.6 diff --git a/themes/classic-terminal-revisited.yaml b/themes/classic-terminal-revisited.yaml new file mode 100644 index 00000000..22050d5e --- /dev/null +++ b/themes/classic-terminal-revisited.yaml @@ -0,0 +1,53 @@ +name: "Classic Terminal Revisited" +source: + marketplace_id: "VillageOfGamers.classic-terminal-revisited" + version: "1.0.0" + installs: 352 + rating: 0 + ratings: 0 + author: "Village of Gamers" + repo: "https://github.com/VillageOfGamers/classic-terminal-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=VillageOfGamers.classic-terminal-revisited" + formats: null +colors: + bg: "#000000" + fg: "#00FF00" + black: "#555555" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 86.5 + black: 16.1 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 16.1 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 16.2 + brightMagenta: 46.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/classictheme.yaml b/themes/classictheme.yaml new file mode 100644 index 00000000..8bf39e80 --- /dev/null +++ b/themes/classictheme.yaml @@ -0,0 +1,53 @@ +name: "classicTheme" +source: + marketplace_id: "prabinshrestha.classic" + version: "0.0.1" + installs: 32 + rating: 0 + ratings: 0 + author: "prabin shrestha" + repo: "https://github.com/Prabin70/classic-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=prabinshrestha.classic" + formats: null +colors: + bg: "#010309" + fg: "#CCD7C9" + black: "#000000" + red: "#937471" + green: "#747F76" + yellow: "#AB6740" + blue: "#4B79AD" + magenta: "#A151DA" + cyan: "#737F81" + white: "#F2F1ED" + brightBlack: "#434343" + brightRed: "#BD5C54" + brightGreen: "#CDE6D2" + brightYellow: "#DE9F7B" + brightBlue: "#297AD5" + brightMagenta: "#A457DC" + brightCyan: "#A5C5CB" + brightWhite: "#FCFBFB" +meta: + mode: "dark" + accent: "magenta" + hue: 259 + pair: null + contrast: + fg: 80.3 + black: 0 + red: 32.5 + green: 32.9 + yellow: 31.2 + blue: 30.4 + magenta: 31.3 + cyan: 33.2 + white: 98.6 + brightBlack: 9.5 + brightRed: 32 + brightGreen: 87.6 + brightYellow: 58 + brightBlue: 32.1 + brightMagenta: 33 + brightCyan: 68.2 + brightWhite: 105.4 diff --git a/themes/claude-anthropic-theme.yaml b/themes/claude-anthropic-theme.yaml new file mode 100644 index 00000000..e89afea6 --- /dev/null +++ b/themes/claude-anthropic-theme.yaml @@ -0,0 +1,53 @@ +name: "Claude - Anthropic Theme" +source: + marketplace_id: "duca.claude-anthropic-theme" + version: "1.0.0" + installs: 64 + rating: 0 + ratings: 0 + author: "duca" + repo: "https://github.com/igorfelipeduca/claude-theme" + url: "https://marketplace.visualstudio.com/items?itemName=duca.claude-anthropic-theme" + formats: null +colors: + bg: "#262624" + fg: "#E8E4DC" + black: "#262624" + red: "#F28B82" + green: "#7EC699" + yellow: "#E8C47C" + blue: "#7CACE8" + magenta: "#C49BE8" + cyan: "#7CE8D4" + white: "#E8E4DC" + brightBlack: "#4A4A48" + brightRed: "#F4A58A" + brightGreen: "#A3D9B1" + brightYellow: "#F0D8A0" + brightBlue: "#A3C8F0" + brightMagenta: "#D4B8F0" + brightCyan: "#A3F0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.5 + black: 0 + red: 52.2 + green: 60.3 + yellow: 70.6 + blue: 52.7 + magenta: 54.1 + cyan: 78.4 + white: 87.5 + brightBlack: 8.9 + brightRed: 61.2 + brightGreen: 72.9 + brightYellow: 81.2 + brightBlue: 68.1 + brightMagenta: 67.3 + brightCyan: 85.7 + brightWhite: 104.8 diff --git a/themes/claude-code-theme--claude-code-dark-high-contrast.yaml b/themes/claude-code-theme--claude-code-dark-high-contrast.yaml new file mode 100644 index 00000000..56fd2bdb --- /dev/null +++ b/themes/claude-code-theme--claude-code-dark-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Claude Code Theme (Claude Code Dark High Contrast)" +source: + marketplace_id: "ashwingopalsamy.claude-code-theme" + version: "1.2.2" + installs: 946 + rating: 5 + ratings: 2 + author: "Ashwin Gopalsamy" + repo: "https://github.com/ashwingopalsamy/claude-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" + formats: null +colors: + bg: "#11100F" + fg: "#F5F2E9" + black: "#151311" + red: "#F09884" + green: "#B6E0A5" + yellow: "#F2D98F" + blue: "#8CC4FF" + magenta: "#C9BCFF" + cyan: "#B2D8FF" + white: "#E0DBD0" + brightBlack: "#6B665F" + brightRed: "#FFB4A4" + brightGreen: "#B6E0A5" + brightYellow: "#F2D98F" + brightBlue: "#BED0ED" + brightMagenta: "#DCC6FF" + brightCyan: "#C5EAFF" + brightWhite: "#F5F2E9" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Claude Code Theme (Claude Code Light High Contrast)" + contrast: + fg: 98.9 + black: 0 + red: 58.6 + green: 80.2 + yellow: 84.1 + blue: 67.9 + magenta: 70.9 + cyan: 80.1 + white: 84.5 + brightBlack: 22.9 + brightRed: 71.9 + brightGreen: 80.2 + brightYellow: 84.1 + brightBlue: 76.8 + brightMagenta: 77.4 + brightCyan: 90.3 + brightWhite: 98.9 diff --git a/themes/claude-code-theme--claude-code-dark.yaml b/themes/claude-code-theme--claude-code-dark.yaml new file mode 100644 index 00000000..f70b6582 --- /dev/null +++ b/themes/claude-code-theme--claude-code-dark.yaml @@ -0,0 +1,53 @@ +name: "Claude Code Theme (Claude Code Dark)" +source: + marketplace_id: "ashwingopalsamy.claude-code-theme" + version: "1.2.2" + installs: 946 + rating: 5 + ratings: 2 + author: "Ashwin Gopalsamy" + repo: "https://github.com/ashwingopalsamy/claude-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" + formats: null +colors: + bg: "#141413" + fg: "#EAE7DF" + black: "#1A1917" + red: "#D47563" + green: "#9ACA86" + yellow: "#E8C96B" + blue: "#61AAF2" + magenta: "#9B87F5" + cyan: "#8CC4FF" + white: "#D9D5CC" + brightBlack: "#6B665F" + brightRed: "#F09884" + brightGreen: "#B6E0A5" + brightYellow: "#F2D98F" + brightBlue: "#A2D2FF" + brightMagenta: "#C9BCFF" + brightCyan: "#BDE0FF" + brightWhite: "#F5F2E9" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 91.6 + black: 0 + red: 41.9 + green: 66.2 + yellow: 74.7 + blue: 53.1 + magenta: 45.5 + cyan: 67.6 + white: 80.5 + brightBlack: 22.6 + brightRed: 58.3 + brightGreen: 79.9 + brightYellow: 83.8 + brightBlue: 75.6 + brightMagenta: 70.6 + brightCyan: 84.5 + brightWhite: 98.6 diff --git a/themes/claude-code-theme--claude-code-light-high-contrast.yaml b/themes/claude-code-theme--claude-code-light-high-contrast.yaml new file mode 100644 index 00000000..b98093c6 --- /dev/null +++ b/themes/claude-code-theme--claude-code-light-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Claude Code Theme (Claude Code Light High Contrast)" +source: + marketplace_id: "ashwingopalsamy.claude-code-theme" + version: "1.2.2" + installs: 946 + rating: 5 + ratings: 2 + author: "Ashwin Gopalsamy" + repo: "https://github.com/ashwingopalsamy/claude-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" + formats: null +colors: + bg: "#F6F3EA" + fg: "#141413" + black: "#141413" + red: "#8F3C2D" + green: "#286945" + yellow: "#775618" + blue: "#1B6EBF" + magenta: "#5B4DB4" + cyan: "#27598F" + white: "#6B665F" + brightBlack: "#8D877D" + brightRed: "#A44E3A" + brightGreen: "#437954" + brightYellow: "#826326" + brightBlue: "#4B7098" + brightMagenta: "#5D538F" + brightCyan: "#3F738C" + brightWhite: "#4A473F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Claude Code Theme (Claude Code Dark High Contrast)" + contrast: + fg: 97.9 + black: 97.9 + red: 77.8 + green: 75.1 + yellow: 75.8 + blue: 68.2 + magenta: 75.3 + cyan: 77.6 + white: 71.3 + brightBlack: 56.1 + brightRed: 70.5 + brightGreen: 68 + brightYellow: 70.6 + brightBlue: 68.3 + brightMagenta: 76.1 + brightCyan: 68.5 + brightWhite: 84.3 diff --git a/themes/claude-code-theme--claude-code-light.yaml b/themes/claude-code-theme--claude-code-light.yaml new file mode 100644 index 00000000..3982f139 --- /dev/null +++ b/themes/claude-code-theme--claude-code-light.yaml @@ -0,0 +1,53 @@ +name: "Claude Code Theme (Claude Code Light)" +source: + marketplace_id: "ashwingopalsamy.claude-code-theme" + version: "1.2.2" + installs: 946 + rating: 5 + ratings: 2 + author: "Ashwin Gopalsamy" + repo: "https://github.com/ashwingopalsamy/claude-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ashwingopalsamy.claude-code-theme" + formats: null +colors: + bg: "#FAF9F5" + fg: "#1A1917" + black: "#1A1917" + red: "#A84B3A" + green: "#2E7C4C" + yellow: "#8A6220" + blue: "#207FDE" + magenta: "#6A5BCC" + cyan: "#2E5F99" + white: "#746E64" + brightBlack: "#8D877D" + brightRed: "#C45F4A" + brightGreen: "#5E8F6D" + brightYellow: "#9C7A39" + brightBlue: "#4F79A8" + brightMagenta: "#6D5DBD" + brightCyan: "#45809E" + brightWhite: "#4A473F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 100.8 + black: 100.8 + red: 73.9 + green: 71.4 + yellow: 73.4 + blue: 63.8 + magenta: 72.3 + cyan: 78.5 + white: 71.3 + brightBlack: 59.6 + brightRed: 64.3 + brightGreen: 61.2 + brightYellow: 63.5 + brightBlue: 67.7 + brightMagenta: 72.6 + brightCyan: 66.3 + brightWhite: 87.8 diff --git a/themes/claude-theme-by-jnahian--claude-dark.yaml b/themes/claude-theme-by-jnahian--claude-dark.yaml new file mode 100644 index 00000000..aee9530f --- /dev/null +++ b/themes/claude-theme-by-jnahian--claude-dark.yaml @@ -0,0 +1,53 @@ +name: "Claude Theme by jnahian (Claude Dark)" +source: + marketplace_id: "jnahian.jnahian-claude-theme" + version: "0.2.0" + installs: 1195 + rating: 5 + ratings: 1 + author: "jnahian" + repo: "https://github.com/jnahian/vscode-claude-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jnahian.jnahian-claude-theme" + formats: null +colors: + bg: "#1A1815" + fg: "#E8E6E3" + black: "#1A1815" + red: "#FF6B6B" + green: "#4CAF50" + yellow: "#F3DF31" + blue: "#42A5F5" + magenta: "#AB47BC" + cyan: "#26C6DA" + white: "#E8E6E3" + brightBlack: "#6A6158" + brightRed: "#FF8A80" + brightGreen: "#81C784" + brightYellow: "#FFF176" + brightBlue: "#64B5F6" + brightMagenta: "#CE93D8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 90.6 + black: 0 + red: 48 + green: 47.4 + yellow: 84.9 + blue: 49.6 + magenta: 27.8 + cyan: 61.4 + white: 90.6 + brightBlack: 20.4 + brightRed: 56.4 + brightGreen: 62.3 + brightYellow: 95.7 + brightBlue: 57.6 + brightMagenta: 53.9 + brightCyan: 67.3 + brightWhite: 106.7 diff --git a/themes/claude-theme-by-jnahian--claude-light.yaml b/themes/claude-theme-by-jnahian--claude-light.yaml new file mode 100644 index 00000000..68ca65fe --- /dev/null +++ b/themes/claude-theme-by-jnahian--claude-light.yaml @@ -0,0 +1,53 @@ +name: "Claude Theme by jnahian (Claude Light)" +source: + marketplace_id: "jnahian.jnahian-claude-theme" + version: "0.2.0" + installs: 1195 + rating: 5 + ratings: 1 + author: "jnahian" + repo: "https://github.com/jnahian/vscode-claude-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jnahian.jnahian-claude-theme" + formats: null +colors: + bg: "#FAF9F5" + fg: "#2C2C2C" + black: "#2C2C2C" + red: "#D73A49" + green: "#28A745" + yellow: "#C15F3C" + blue: "#0366D6" + magenta: "#EA4AAA" + cyan: "#39C5CF" + white: "#FDFCFB" + brightBlack: "#2C2C2C" + brightRed: "#D73A49" + brightGreen: "#28A745" + brightYellow: "#C15F3C" + brightBlue: "#0366D6" + brightMagenta: "#EA4AAA" + brightCyan: "#39C5CF" + brightWhite: "#FDFCFB" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 97 + black: 97 + red: 66.8 + green: 54.2 + yellow: 65 + blue: 72.6 + magenta: 57.5 + cyan: 36.8 + white: 0 + brightBlack: 97 + brightRed: 66.8 + brightGreen: 54.2 + brightYellow: 65 + brightBlue: 72.6 + brightMagenta: 57.5 + brightCyan: 36.8 + brightWhite: 0 diff --git a/themes/claude-theme-for-vs-code--claude-vscode-dark-brand.yaml b/themes/claude-theme-for-vs-code--claude-vscode-dark-brand.yaml new file mode 100644 index 00000000..5e26d715 --- /dev/null +++ b/themes/claude-theme-for-vs-code--claude-vscode-dark-brand.yaml @@ -0,0 +1,53 @@ +name: "Claude Theme for VS Code (Claude VSCode Dark Brand)" +source: + marketplace_id: "jmramos.claude-ui-theme" + version: "1.0.3" + installs: 40 + rating: 0 + ratings: 0 + author: "jmramos" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jmramos.claude-ui-theme" + formats: null +colors: + bg: "#262624" + fg: "#F1F1EF" + black: "#1B1B19" + red: "#D97757" + green: "#B7B5A9" + yellow: "#B26842" + blue: "#61AAF2" + magenta: "#C3DDF7" + cyan: "#C3C0B6" + white: "#F1F1EF" + brightBlack: "#52514A" + brightRed: "#B26842" + brightGreen: "#C3C0B6" + brightYellow: "#D97757" + brightBlue: "#61AAF2" + brightMagenta: "#C3DDF7" + brightCyan: "#B7B5A9" + brightWhite: "#FAF9F5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Claude Theme for VS Code (Claude VSCode Light Brand)" + contrast: + fg: 95.5 + black: 0 + red: 40.8 + green: 59 + yellow: 29.6 + blue: 50.8 + magenta: 81.1 + cyan: 65.5 + white: 95.5 + brightBlack: 11.4 + brightRed: 29.6 + brightGreen: 65.5 + brightYellow: 40.8 + brightBlue: 50.8 + brightMagenta: 81.1 + brightCyan: 59 + brightWhite: 100.8 diff --git a/themes/claude-theme-for-vs-code--claude-vscode-light-brand.yaml b/themes/claude-theme-for-vs-code--claude-vscode-light-brand.yaml new file mode 100644 index 00000000..c1e60bc0 --- /dev/null +++ b/themes/claude-theme-for-vs-code--claude-vscode-light-brand.yaml @@ -0,0 +1,53 @@ +name: "Claude Theme for VS Code (Claude VSCode Light Brand)" +source: + marketplace_id: "jmramos.claude-ui-theme" + version: "1.0.3" + installs: 40 + rating: 0 + ratings: 0 + author: "jmramos" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jmramos.claude-ui-theme" + formats: null +colors: + bg: "#FAF9F5" + fg: "#3D3929" + black: "#3D3929" + red: "#CC785C" + green: "#535146" + yellow: "#B26842" + blue: "#61AAF2" + magenta: "#C3DDF7" + cyan: "#6E6D68" + white: "#FAF9F5" + brightBlack: "#6E6D68" + brightRed: "#B26842" + brightGreen: "#3D3929" + brightYellow: "#CC785C" + brightBlue: "#61AAF2" + brightMagenta: "#C3DDF7" + brightCyan: "#535146" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "indigo" + hue: null + pair: "Claude Theme for VS Code (Claude VSCode Dark Brand)" + contrast: + fg: 93 + black: 93 + red: 56.2 + green: 84 + yellow: 65.4 + blue: 44.5 + magenta: 15.7 + cyan: 72.1 + white: 0 + brightBlack: 72.1 + brightRed: 65.4 + brightGreen: 93 + brightYellow: 56.2 + brightBlue: 44.5 + brightMagenta: 15.7 + brightCyan: 84 + brightWhite: 0 diff --git a/themes/claude-theme-for-vs-code-cursor-windsurf--claude-dark.yaml b/themes/claude-theme-for-vs-code-cursor-windsurf--claude-dark.yaml new file mode 100644 index 00000000..d337495e --- /dev/null +++ b/themes/claude-theme-for-vs-code-cursor-windsurf--claude-dark.yaml @@ -0,0 +1,53 @@ +name: "Claude Theme for VS Code/Cursor/Windsurf (Claude Dark)" +source: + marketplace_id: "SamiHindi.claude-theme-sami-hindi" + version: "0.0.1" + installs: 1297 + rating: 0 + ratings: 0 + author: "Sami Hindi" + repo: "https://github.com/FujiwaraChoki/claude-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SamiHindi.claude-theme-sami-hindi" + formats: null +colors: + bg: "#262624" + fg: "#C2C0B6" + black: "#000000" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F8FAFC" + brightBlack: "#525252" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 65.4 + black: 0 + red: 34.8 + green: 54.7 + yellow: 63 + blue: 34.7 + magenta: 32.3 + cyan: 51.8 + white: 101.3 + brightBlack: 11.9 + brightRed: 46 + brightGreen: 68.4 + brightYellow: 75.7 + brightBlue: 49.3 + brightMagenta: 47.6 + brightCyan: 66.5 + brightWhite: 104.8 diff --git a/themes/claude-theme-for-vs-code-cursor-windsurf--claude-light.yaml b/themes/claude-theme-for-vs-code-cursor-windsurf--claude-light.yaml new file mode 100644 index 00000000..8a58a919 --- /dev/null +++ b/themes/claude-theme-for-vs-code-cursor-windsurf--claude-light.yaml @@ -0,0 +1,53 @@ +name: "Claude Theme for VS Code/Cursor/Windsurf (Claude Light)" +source: + marketplace_id: "SamiHindi.claude-theme-sami-hindi" + version: "0.0.1" + installs: 1297 + rating: 0 + ratings: 0 + author: "Sami Hindi" + repo: "https://github.com/FujiwaraChoki/claude-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SamiHindi.claude-theme-sami-hindi" + formats: null +colors: + bg: "#FFFFFF" + fg: "#B85A3E" + black: "#1E293B" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F8FAFC" + brightBlack: "#64748B" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FACC15" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FEFEFE" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 71.4 + black: 101.4 + red: 63.8 + green: 44.3 + yellow: 36.4 + blue: 63.9 + magenta: 66.2 + cyan: 47.1 + white: 0 + brightBlack: 73 + brightRed: 52.8 + brightGreen: 31.3 + brightYellow: 24.4 + brightBlue: 49.6 + brightMagenta: 51.2 + brightCyan: 33 + brightWhite: 0 diff --git a/themes/claude-vscode-theme--claude-dark-high-contrast.yaml b/themes/claude-vscode-theme--claude-dark-high-contrast.yaml new file mode 100644 index 00000000..e0aaf3a3 --- /dev/null +++ b/themes/claude-vscode-theme--claude-dark-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Claude VSCode Theme (Claude Dark High Contrast)" +source: + marketplace_id: "AlvinUnreal.claude-vscode-theme" + version: "1.2.0" + installs: 2157 + rating: 5 + ratings: 1 + author: "Alvin Unreal" + repo: "https://github.com/alvinunreal/awesome-claude" + url: "https://marketplace.visualstudio.com/items?itemName=AlvinUnreal.claude-vscode-theme" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#FF8A8A" + green: "#8FE99F" + yellow: "#FFE066" + blue: "#82C7FF" + magenta: "#C49BFF" + cyan: "#66E8FF" + white: "#B8B8B8" + brightBlack: "#5A5A5A" + brightRed: "#FFAAAA" + brightGreen: "#AAFFBB" + brightYellow: "#FFF099" + brightBlue: "#AADDFF" + brightMagenta: "#DDBBFF" + brightCyan: "#99FFFF" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 57.8 + green: 81.3 + yellow: 88.8 + blue: 68.9 + magenta: 58.7 + cyan: 82.5 + white: 64 + brightBlack: 18.1 + brightRed: 69 + brightGreen: 95.4 + brightYellow: 97.1 + brightBlue: 82 + brightMagenta: 73.7 + brightCyan: 96.9 + brightWhite: 98.1 diff --git a/themes/claude-vscode-theme--claude-dark.yaml b/themes/claude-vscode-theme--claude-dark.yaml new file mode 100644 index 00000000..3d30168b --- /dev/null +++ b/themes/claude-vscode-theme--claude-dark.yaml @@ -0,0 +1,53 @@ +name: "Claude VSCode Theme (Claude Dark)" +source: + marketplace_id: "AlvinUnreal.claude-vscode-theme" + version: "1.2.0" + installs: 2157 + rating: 5 + ratings: 1 + author: "Alvin Unreal" + repo: "https://github.com/alvinunreal/awesome-claude" + url: "https://marketplace.visualstudio.com/items?itemName=AlvinUnreal.claude-vscode-theme" + formats: null +colors: + bg: "#141414" + fg: "#E4E4E4" + black: "#1E1E1E" + red: "#F87171" + green: "#7BD88F" + yellow: "#FCD34D" + blue: "#6CABF7" + magenta: "#B68BF7" + cyan: "#4DD4E8" + white: "#9C9893" + brightBlack: "#6A6A6A" + brightRed: "#FFA8A8" + brightGreen: "#9FFFAF" + brightYellow: "#FFED7D" + brightBlue: "#92D5FF" + brightMagenta: "#D6BBFF" + brightCyan: "#7DFFFF" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.7 + black: 0 + red: 48.4 + green: 70.5 + yellow: 81.6 + blue: 54.5 + magenta: 50.3 + cyan: 69.9 + white: 46.2 + brightBlack: 24 + brightRed: 67.5 + brightGreen: 93.4 + brightYellow: 94.4 + brightBlue: 75.5 + brightMagenta: 72 + brightCyan: 94.4 + brightWhite: 79.8 diff --git a/themes/clear--clear-dark.yaml b/themes/clear--clear-dark.yaml new file mode 100644 index 00000000..5bce417f --- /dev/null +++ b/themes/clear--clear-dark.yaml @@ -0,0 +1,53 @@ +name: "Clear (Clear Dark)" +source: + marketplace_id: "nanakon.clear" + version: "1.1.1" + installs: 1252 + rating: 0 + ratings: 0 + author: "nana_kon" + repo: "https://github.com/va1kio/clear-white" + url: "https://marketplace.visualstudio.com/items?itemName=nanakon.clear" + formats: null +colors: + bg: "#131313" + fg: "#6B6B6B" + black: "#2E2E2E" + red: "#DB4A4A" + green: "#0DBC79" + yellow: "#C9C918" + blue: "#2B66A7" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D1D1D1" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#E2E24C" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 24.5 + black: 0 + red: 33.7 + green: 53.4 + yellow: 69.6 + blue: 22 + magenta: 30.1 + cyan: 47.9 + white: 78 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 84.5 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/cleo--dark.yaml b/themes/cleo--dark.yaml new file mode 100644 index 00000000..892bd50e --- /dev/null +++ b/themes/cleo--dark.yaml @@ -0,0 +1,53 @@ +name: "Cleo (_Dark)" +source: + marketplace_id: "Cleo.cleo" + version: "0.1.7" + installs: 1576 + rating: 3.25 + ratings: 4 + author: "Cleo" + repo: "https://github.com/FabioKaelin/cleo-vscode-extension" + url: "https://marketplace.visualstudio.com/items?itemName=Cleo.cleo" + formats: null +colors: + bg: "#FFFFFF" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#FFFFFF" + green: "#FFFFFF" + yellow: "#FFFFFF" + blue: "#FFFFFF" + magenta: "#FFFFFF" + cyan: "#FFFFFF" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#FFFFFF" + brightGreen: "#FFFFFF" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 0 + black: 0 + red: 0 + green: 0 + yellow: 0 + blue: 0 + magenta: 0 + cyan: 0 + white: 0 + brightBlack: 0 + brightRed: 0 + brightGreen: 0 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/clickhere.yaml b/themes/clickhere.yaml new file mode 100644 index 00000000..db1906f7 --- /dev/null +++ b/themes/clickhere.yaml @@ -0,0 +1,53 @@ +name: "ClickHere" +source: + marketplace_id: "Clickhere.ClickHereTheme" + version: "0.4.0" + installs: 30 + rating: 0 + ratings: 0 + author: "Clickhere" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Clickhere.ClickHereTheme" + formats: null +colors: + bg: "#1B1B1B" + fg: "#D6D6D6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.3 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/clymate-themes-for-vs-code.yaml b/themes/clymate-themes-for-vs-code.yaml new file mode 100644 index 00000000..fa212a42 --- /dev/null +++ b/themes/clymate-themes-for-vs-code.yaml @@ -0,0 +1,53 @@ +name: "Clymate Themes for VS Code" +source: + marketplace_id: "clydedsouza.clymate-themes-vscode" + version: "1.0.0" + installs: 2726 + rating: 0 + ratings: 0 + author: "Clyde D'Souza" + repo: "https://github.com/ClydeDz/clymate-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=clydedsouza.clymate-themes-vscode" + formats: null +colors: + bg: "#2E0000" + fg: "#F5E6E6" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F5E6E6" +meta: + mode: "dark" + accent: "red" + hue: 29 + pair: null + contrast: + fg: 92.6 + black: 0 + red: 24.5 + green: 52.9 + yellow: 57.5 + blue: 34.5 + magenta: 32.1 + cyan: 50.3 + white: 88.4 + brightBlack: 21.9 + brightRed: 37.2 + brightGreen: 76.9 + brightYellow: 83.8 + brightBlue: 49.7 + brightMagenta: 46.4 + brightCyan: 73.3 + brightWhite: 92.6 diff --git a/themes/cobalt-next--cobalt-next-dark.yaml b/themes/cobalt-next--cobalt-next-dark.yaml new file mode 100644 index 00000000..35427d59 --- /dev/null +++ b/themes/cobalt-next--cobalt-next-dark.yaml @@ -0,0 +1,53 @@ +name: "Cobalt Next (Cobalt Next Dark)" +source: + marketplace_id: "dline.CobaltNext" + version: "0.4.5" + installs: 125794 + rating: 4.87 + ratings: 15 + author: "David Leininger" + repo: "https://github.com/davidleininger/cobaltnext-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dline.CobaltNext" + formats: null +colors: + bg: "#0F1C23" + fg: "#FFFFFF" + black: "#343D46" + red: "#ED6F7D" + green: "#99C794" + yellow: "#FAC863" + blue: "#5A9BCF" + magenta: "#C5A5C5" + cyan: "#5FB3B3" + white: "#D8DEE9" + brightBlack: "#65737E" + brightRed: "#D6838C" + brightGreen: "#C1DCBE" + brightYellow: "#FFDE9B" + brightBlue: "#8ABEE7" + brightMagenta: "#EDCDED" + brightCyan: "#9BE2E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 233 + pair: null + contrast: + fg: 106.5 + black: 0 + red: 45.2 + green: 64.5 + yellow: 76.3 + blue: 44 + magenta: 57.6 + cyan: 52.6 + white: 85 + brightBlack: 26.5 + brightRed: 46.7 + brightGreen: 79.5 + brightYellow: 87.6 + brightBlue: 62.8 + brightMagenta: 80.8 + brightCyan: 80.1 + brightWhite: 106.5 diff --git a/themes/cobalt-next--cobalt-next.yaml b/themes/cobalt-next--cobalt-next.yaml new file mode 100644 index 00000000..55f79d82 --- /dev/null +++ b/themes/cobalt-next--cobalt-next.yaml @@ -0,0 +1,53 @@ +name: "Cobalt Next (Cobalt Next)" +source: + marketplace_id: "dline.CobaltNext" + version: "0.4.5" + installs: 125794 + rating: 4.87 + ratings: 15 + author: "David Leininger" + repo: "https://github.com/davidleininger/cobaltnext-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=dline.CobaltNext" + formats: null +colors: + bg: "#1B2B34" + fg: "#FFFFFF" + black: "#000000" + red: "#ED6F7D" + green: "#99C794" + yellow: "#FAC863" + blue: "#5A9BCF" + magenta: "#C5A5C5" + cyan: "#5FB3B3" + white: "#D8DEE9" + brightBlack: "#65737E" + brightRed: "#D6838C" + brightGreen: "#C1DCBE" + brightYellow: "#FFDE9B" + brightBlue: "#8ABEE7" + brightMagenta: "#EDCDED" + brightCyan: "#9BE2E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 234 + pair: null + contrast: + fg: 104.2 + black: 0 + red: 43 + green: 62.2 + yellow: 74.1 + blue: 41.7 + magenta: 55.3 + cyan: 50.4 + white: 82.7 + brightBlack: 24.2 + brightRed: 44.4 + brightGreen: 77.2 + brightYellow: 85.4 + brightBlue: 60.5 + brightMagenta: 78.5 + brightCyan: 77.8 + brightWhite: 104.2 diff --git a/themes/cobalt9-theme--cobalt9.yaml b/themes/cobalt9-theme--cobalt9.yaml new file mode 100644 index 00000000..334e3105 --- /dev/null +++ b/themes/cobalt9-theme--cobalt9.yaml @@ -0,0 +1,54 @@ +name: "Cobalt9 Theme (Cobalt9)" +source: + marketplace_id: "pydemia.cobalt9" + version: "1.4.2" + installs: 7247 + rating: 4.83 + ratings: 6 + author: "Youngju Jaden Kim" + repo: "https://github.com/pydemia/pydemia-vscode-syntax/cobalt9" + url: "https://marketplace.visualstudio.com/items?itemName=pydemia.cobalt9" + formats: + sublime: "https://raw.githubusercontent.com/pydemia/pydemia-vscode-syntax/master/cobalt9/themes/cobalt9.tmTheme" +colors: + bg: "#072539" + fg: "#FFFFFF" + black: "#333333" + red: "#FF2600" + green: "#3DDF2B" + yellow: "#FFE700" + blue: "#1478DB" + magenta: "#FF2C70" + cyan: "#00C5C7" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F92A1C" + brightGreen: "#43D426" + brightYellow: "#F1D000" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#79E8FB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 242 + pair: null + contrast: + fg: 105.2 + black: 0 + red: 35.8 + green: 67.7 + yellow: 88.6 + blue: 28.9 + magenta: 37.4 + cyan: 58.2 + white: 70 + brightBlack: 21.2 + brightRed: 34.6 + brightGreen: 62.4 + brightYellow: 76.3 + brightBlue: 33 + brightMagenta: 55.7 + brightCyan: 80.5 + brightWhite: 105.2 diff --git a/themes/code-like-a-rainbow--code-like-a-rainbow.yaml b/themes/code-like-a-rainbow--code-like-a-rainbow.yaml new file mode 100644 index 00000000..ad91b393 --- /dev/null +++ b/themes/code-like-a-rainbow--code-like-a-rainbow.yaml @@ -0,0 +1,53 @@ +name: "Code Like A Rainbow (Code_Like_a_Rainbow)" +source: + marketplace_id: "invillia.Code-Like-A-Rainbow" + version: "0.3.0" + installs: 10482 + rating: 4 + ratings: 5 + author: "invillia" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=invillia.Code-Like-A-Rainbow" + formats: null +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFE937" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FE7E24" + brightGreen: "#23D18B" + brightYellow: "#FFFF00" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 90.6 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 50.8 + brightGreen: 62.7 + brightYellow: 100.9 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/code-like-a-rainbow--untitled.yaml b/themes/code-like-a-rainbow--untitled.yaml new file mode 100644 index 00000000..69c3f5f3 --- /dev/null +++ b/themes/code-like-a-rainbow--untitled.yaml @@ -0,0 +1,53 @@ +name: "Code Like A Rainbow (Untitled)" +source: + marketplace_id: "invillia.Code-Like-A-Rainbow" + version: "0.3.0" + installs: 10482 + rating: 4 + ratings: 5 + author: "invillia" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=invillia.Code-Like-A-Rainbow" + formats: null +colors: + bg: "#1E1E1E" + fg: "#C86DA9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#4E6E90" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 38.9 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 23.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 106 diff --git a/themes/code-with-colors-pro--code-with-colors-pro-midnight-purple.yaml b/themes/code-with-colors-pro--code-with-colors-pro-midnight-purple.yaml new file mode 100644 index 00000000..01584857 --- /dev/null +++ b/themes/code-with-colors-pro--code-with-colors-pro-midnight-purple.yaml @@ -0,0 +1,53 @@ +name: "Code With Colors Pro (Code With Colors Pro - Midnight Purple)" +source: + marketplace_id: "veduishu1257.code-with-colors-pro" + version: "2.3.0" + installs: 19 + rating: 5 + ratings: 1 + author: "veduishu" + repo: "https://github.com/vishal-s-reddy/code-with-colors" + url: "https://marketplace.visualstudio.com/items?itemName=veduishu1257.code-with-colors-pro" + formats: null +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#21222C" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#BD93F9" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: null + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 50.7 + magenta: 51.6 + cyan: 81 + white: 99 + brightBlack: 0 + brightRed: 40.4 + brightGreen: 81.9 + brightYellow: 95.6 + brightBlue: 50.7 + brightMagenta: 51.6 + brightCyan: 81 + brightWhite: 99 diff --git a/themes/code-with-colors-pro--theme-for-codes-dark.yaml b/themes/code-with-colors-pro--theme-for-codes-dark.yaml new file mode 100644 index 00000000..246dcb5f --- /dev/null +++ b/themes/code-with-colors-pro--theme-for-codes-dark.yaml @@ -0,0 +1,53 @@ +name: "Code With Colors Pro (Theme For Codes - Dark)" +source: + marketplace_id: "veduishu1257.code-with-colors-pro" + version: "2.3.0" + installs: 19 + rating: 5 + ratings: 1 + author: "veduishu" + repo: "https://github.com/vishal-s-reddy/code-with-colors" + url: "https://marketplace.visualstudio.com/items?itemName=veduishu1257.code-with-colors-pro" + formats: null +colors: + bg: "#050505" + fg: "#E6E6E6" + black: "#000000" + red: "#FF5555" + green: "#50FA7B" + yellow: "#FFB86C" + blue: "#4FC1FF" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#E6E6E6" + brightBlack: "#555555" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFCC95" + brightBlue: "#6DD5FF" + brightMagenta: "#FF92D0" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 91.6 + black: 0 + red: 44.4 + green: 85.9 + yellow: 72.4 + blue: 63.5 + magenta: 55.6 + cyan: 84.9 + white: 91.6 + brightBlack: 16.1 + brightRed: 49.8 + brightGreen: 90 + brightYellow: 81.2 + brightBlue: 73.8 + brightMagenta: 62.8 + brightCyan: 97.8 + brightWhite: 107.9 diff --git a/themes/code-with-colors-pro--theme-for-codes-light.yaml b/themes/code-with-colors-pro--theme-for-codes-light.yaml new file mode 100644 index 00000000..b3485a42 --- /dev/null +++ b/themes/code-with-colors-pro--theme-for-codes-light.yaml @@ -0,0 +1,53 @@ +name: "Code With Colors Pro (Theme For Codes - Light)" +source: + marketplace_id: "veduishu1257.code-with-colors-pro" + version: "2.3.0" + installs: 19 + rating: 5 + ratings: 1 + author: "veduishu" + repo: "https://github.com/vishal-s-reddy/code-with-colors" + url: "https://marketplace.visualstudio.com/items?itemName=veduishu1257.code-with-colors-pro" + formats: null +colors: + bg: "#FFFFFF" + fg: "#1A1A1A" + black: "#000000" + red: "#D32F2F" + green: "#388E3C" + yellow: "#F57C00" + blue: "#1976D2" + magenta: "#7B1FA2" + cyan: "#0097A7" + white: "#616161" + brightBlack: "#000000" + brightRed: "#D32F2F" + brightGreen: "#388E3C" + brightYellow: "#F57C00" + brightBlue: "#1976D2" + brightMagenta: "#7B1FA2" + brightCyan: "#0097A7" + brightWhite: "#616161" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.3 + black: 106 + red: 72.8 + green: 68 + yellow: 51.8 + blue: 71.4 + magenta: 87.1 + cyan: 62 + white: 80.9 + brightBlack: 106 + brightRed: 72.8 + brightGreen: 68 + brightYellow: 51.8 + brightBlue: 71.4 + brightMagenta: 87.1 + brightCyan: 62 + brightWhite: 80.9 diff --git a/themes/codebabel-theme-drk.yaml b/themes/codebabel-theme-drk.yaml new file mode 100644 index 00000000..c6bb955a --- /dev/null +++ b/themes/codebabel-theme-drk.yaml @@ -0,0 +1,53 @@ +name: "codebabel-theme-drk" +source: + marketplace_id: "CodeBabel.codebabel-theme-drk" + version: "0.0.3" + installs: 223 + rating: 5 + ratings: 1 + author: "CodeBabel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CodeBabel.codebabel-theme-drk" + formats: null +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 106 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 106 diff --git a/themes/codebabel-theme-nefarious-vantablack.yaml b/themes/codebabel-theme-nefarious-vantablack.yaml new file mode 100644 index 00000000..103669ab --- /dev/null +++ b/themes/codebabel-theme-nefarious-vantablack.yaml @@ -0,0 +1,53 @@ +name: "CodeBabel Theme Nefarious VantaBlack 💀🖤" +source: + marketplace_id: "CodeBabel.codebabel-theme-nefarious-vantablack" + version: "0.0.1" + installs: 372 + rating: 0 + ratings: 0 + author: "CodeBabel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CodeBabel.codebabel-theme-nefarious-vantablack" + formats: null +colors: + bg: "#030303" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/codebabel-theme-obscureorange.yaml b/themes/codebabel-theme-obscureorange.yaml new file mode 100644 index 00000000..b391d70f --- /dev/null +++ b/themes/codebabel-theme-obscureorange.yaml @@ -0,0 +1,53 @@ +name: "CodeBabel theme ObscureOrange 🔥🎃" +source: + marketplace_id: "CodeBabel.codebabel-theme-ObscureOrange" + version: "0.0.2" + installs: 134 + rating: 0 + ratings: 0 + author: "CodeBabel" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CodeBabel.codebabel-theme-ObscureOrange" + formats: null +colors: + bg: "#13141F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + pair: null + contrast: + fg: 107.1 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 30 + cyan: 47.8 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.8 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/codeify-dark-theme--codeify-dark-berry-color-theme.yaml b/themes/codeify-dark-theme--codeify-dark-berry-color-theme.yaml new file mode 100644 index 00000000..55ff1efb --- /dev/null +++ b/themes/codeify-dark-theme--codeify-dark-berry-color-theme.yaml @@ -0,0 +1,53 @@ +name: "Codeify dark theme (Codeify dark berry color theme)" +source: + marketplace_id: "siyam.Codeify" + version: "1.1.2" + installs: 2984 + rating: 5 + ratings: 4 + author: "siyam" + repo: "https://github.com/SISIYAM/codiefy-color-theme-vs-code-extension" + url: "https://marketplace.visualstudio.com/items?itemName=siyam.Codeify" + formats: null +colors: + bg: "#222222" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 100.6 + black: 0 + red: 23.2 + green: 51.6 + yellow: 56.2 + blue: 33.2 + magenta: 30.8 + cyan: 49 + white: 87.1 + brightBlack: 20.6 + brightRed: 35.9 + brightGreen: 75.6 + brightYellow: 82.5 + brightBlue: 48.4 + brightMagenta: 45.1 + brightCyan: 72 + brightWhite: 100.6 diff --git a/themes/codeify-dark-theme--codiefy-optimas-prime-color-theme.yaml b/themes/codeify-dark-theme--codiefy-optimas-prime-color-theme.yaml new file mode 100644 index 00000000..4aff6a49 --- /dev/null +++ b/themes/codeify-dark-theme--codiefy-optimas-prime-color-theme.yaml @@ -0,0 +1,53 @@ +name: "Codeify dark theme (Codiefy optimas prime color theme)" +source: + marketplace_id: "siyam.Codeify" + version: "1.1.2" + installs: 2984 + rating: 5 + ratings: 4 + author: "siyam" + repo: "https://github.com/SISIYAM/codiefy-color-theme-vs-code-extension" + url: "https://marketplace.visualstudio.com/items?itemName=siyam.Codeify" + formats: null +colors: + bg: "#241E1E" + fg: "#F5F5F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 99.3 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.3 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/codely-dark-pro.yaml b/themes/codely-dark-pro.yaml new file mode 100644 index 00000000..cb002401 --- /dev/null +++ b/themes/codely-dark-pro.yaml @@ -0,0 +1,53 @@ +name: "Codely Dark Pro" +source: + marketplace_id: "Rupesh9369.Codely-Dark-Pro-Theme" + version: "0.4.0" + installs: 478 + rating: 5 + ratings: 1 + author: "Rupesh9369" + repo: "https://github.com/Rupesh9369/Codely-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Rupesh9369.Codely-Dark-Pro-Theme" + formats: null +colors: + bg: "#202124" + fg: "#EBDBB2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#B8BB26" + blue: "#0747E0" + magenta: "#E46C8D" + cyan: "#2BB5D7" + white: "#E5E5E5" + brightBlack: "#DDDDDD" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#E8EC25" + brightBlue: "#3B8EEA" + brightMagenta: "#E4537A" + brightCyan: "#00CDFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 83.1 + black: 0 + red: 25.4 + green: 51.7 + yellow: 59.9 + blue: 16.5 + magenta: 42.3 + cyan: 52.6 + white: 88.8 + brightBlack: 83.7 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 88.1 + brightBlue: 38.7 + brightMagenta: 36.6 + brightCyan: 65.4 + brightWhite: 88.8 diff --git a/themes/codely-theme.yaml b/themes/codely-theme.yaml new file mode 100644 index 00000000..8daf888e --- /dev/null +++ b/themes/codely-theme.yaml @@ -0,0 +1,53 @@ +name: "Codely Theme" +source: + marketplace_id: "codely.codely-theme" + version: "0.0.1" + installs: 23894 + rating: 4.5 + ratings: 10 + author: "Codely" + repo: "https://github.com/CodelyTV/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=codely.codely-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#EBDBB2" + black: "#000000" + red: "#FB5245" + green: "#B8BB26" + yellow: "#FAC149" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EBDBB2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#B8BB26" + brightYellow: "#F5F543" + brightBlue: "#95B7F7" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 83.6 + black: 0 + red: 40.9 + green: 60.3 + yellow: 72.7 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 83.6 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 60.3 + brightYellow: 94.8 + brightBlue: 61.3 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/codeme-theme--ash.yaml b/themes/codeme-theme--ash.yaml new file mode 100644 index 00000000..5f38ac5a --- /dev/null +++ b/themes/codeme-theme--ash.yaml @@ -0,0 +1,53 @@ +name: "CodeMe Theme (Ash)" +source: + marketplace_id: "Avetis.codeme-theme" + version: "0.1.1" + installs: 8081 + rating: 0 + ratings: 0 + author: "Avetis" + repo: "https://github.com/AvetisDN/codeme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" + formats: null +colors: + bg: "#20242D" + fg: "#B4BAC4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 266 + pair: null + contrast: + fg: 62.1 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/codeme-theme--ayudark.yaml b/themes/codeme-theme--ayudark.yaml new file mode 100644 index 00000000..c20097d3 --- /dev/null +++ b/themes/codeme-theme--ayudark.yaml @@ -0,0 +1,53 @@ +name: "CodeMe Theme (AyuDark)" +source: + marketplace_id: "Avetis.codeme-theme" + version: "0.1.1" + installs: 8081 + rating: 0 + ratings: 0 + author: "Avetis" + repo: "https://github.com/AvetisDN/codeme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" + formats: null +colors: + bg: "#0F1319" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 258 + pair: null + contrast: + fg: 79.9 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/codeme-theme--codeme.yaml b/themes/codeme-theme--codeme.yaml new file mode 100644 index 00000000..8f5c05a9 --- /dev/null +++ b/themes/codeme-theme--codeme.yaml @@ -0,0 +1,53 @@ +name: "CodeMe Theme (CodeMe)" +source: + marketplace_id: "Avetis.codeme-theme" + version: "0.1.1" + installs: 8081 + rating: 0 + ratings: 0 + author: "Avetis" + repo: "https://github.com/AvetisDN/codeme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" + formats: null +colors: + bg: "#1B1D1F" + fg: "#D5D7D9" + black: "#000000" + red: "#CD3131" + green: "#12B02A" + yellow: "#E5E510" + blue: "#1461B0" + magenta: "#A944DE" + cyan: "#18A1C0" + white: "#D5D7D9" + brightBlack: "#666666" + brightRed: "#FD736B" + brightGreen: "#48E260" + brightYellow: "#F5F543" + brightBlue: "#3584D5" + brightMagenta: "#CC72FB" + brightCyan: "#5AC8FA" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 80.5 + black: 0 + red: 26 + green: 45.7 + yellow: 85 + blue: 19.6 + magenta: 28.9 + cyan: 43.3 + white: 80.5 + brightBlack: 21.4 + brightRed: 48.8 + brightGreen: 71.1 + brightYellow: 95 + brightBlue: 34.1 + brightMagenta: 46 + brightCyan: 65 + brightWhite: 89.4 diff --git a/themes/codeme-theme--googledark.yaml b/themes/codeme-theme--googledark.yaml new file mode 100644 index 00000000..3ddb28dc --- /dev/null +++ b/themes/codeme-theme--googledark.yaml @@ -0,0 +1,53 @@ +name: "CodeMe Theme (GoogleDark)" +source: + marketplace_id: "Avetis.codeme-theme" + version: "0.1.1" + installs: 8081 + rating: 0 + ratings: 0 + author: "Avetis" + repo: "https://github.com/AvetisDN/codeme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" + formats: null +colors: + bg: "#1B1C1F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.9 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/codeme-theme--nordicdark.yaml b/themes/codeme-theme--nordicdark.yaml new file mode 100644 index 00000000..6ea54ab5 --- /dev/null +++ b/themes/codeme-theme--nordicdark.yaml @@ -0,0 +1,53 @@ +name: "CodeMe Theme (NordicDark)" +source: + marketplace_id: "Avetis.codeme-theme" + version: "0.1.1" + installs: 8081 + rating: 0 + ratings: 0 + author: "Avetis" + repo: "https://github.com/AvetisDN/codeme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" + formats: null +colors: + bg: "#252A34" + fg: "#E5E9F0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E9F0" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 89.5 + black: 0 + red: 23.9 + green: 50.2 + yellow: 82.8 + blue: 24.6 + magenta: 27 + cyan: 44.8 + white: 89.5 + brightBlack: 19.2 + brightRed: 35.8 + brightGreen: 60.7 + brightYellow: 92.8 + brightBlue: 37.2 + brightMagenta: 42.6 + brightCyan: 52.6 + brightWhite: 104.1 diff --git a/themes/codeme-theme--omni.yaml b/themes/codeme-theme--omni.yaml new file mode 100644 index 00000000..ea465999 --- /dev/null +++ b/themes/codeme-theme--omni.yaml @@ -0,0 +1,53 @@ +name: "CodeMe Theme (Omni)" +source: + marketplace_id: "Avetis.codeme-theme" + version: "0.1.1" + installs: 8081 + rating: 0 + ratings: 0 + author: "Avetis" + repo: "https://github.com/AvetisDN/codeme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" + formats: null +colors: + bg: "#1E171D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 331 + pair: null + contrast: + fg: 79.2 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.1 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/codeme-theme--tokyo.yaml b/themes/codeme-theme--tokyo.yaml new file mode 100644 index 00000000..56bfaf93 --- /dev/null +++ b/themes/codeme-theme--tokyo.yaml @@ -0,0 +1,53 @@ +name: "CodeMe Theme (Tokyo)" +source: + marketplace_id: "Avetis.codeme-theme" + version: "0.1.1" + installs: 8081 + rating: 0 + ratings: 0 + author: "Avetis" + repo: "https://github.com/AvetisDN/codeme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.codeme-theme" + formats: null +colors: + bg: "#1A1B22" + fg: "#D7DCE8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D7DCE8" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 279 + pair: null + contrast: + fg: 83.8 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.3 + cyan: 47.1 + white: 83.8 + brightBlack: 21.5 + brightRed: 38.1 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 106.4 diff --git a/themes/coder-vai-multi-language-code-runner--coder-vai-forest.yaml b/themes/coder-vai-multi-language-code-runner--coder-vai-forest.yaml new file mode 100644 index 00000000..159ba4c4 --- /dev/null +++ b/themes/coder-vai-multi-language-code-runner--coder-vai-forest.yaml @@ -0,0 +1,53 @@ +name: "Coder Vai - Multi-Language Code Runner (Coder Vai Forest)" +source: + marketplace_id: "umorfaruksupto.coder-vai" + version: "1.0.0" + installs: 431 + rating: 0 + ratings: 0 + author: "umorfaruksupto" + repo: "https://github.com/umorfaruksupto/coder-vai" + url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" + formats: null +colors: + bg: "#1A1F1A" + fg: "#D3E4CD" + black: "#2D3C2D" + red: "#D97979" + green: "#9FC08D" + yellow: "#E0C080" + blue: "#7FBC8C" + magenta: "#B8A0D0" + cyan: "#85C5A6" + white: "#C7D7C7" + brightBlack: "#5A6B5A" + brightRed: "#E89999" + brightGreen: "#B5D4A6" + brightYellow: "#F0D49A" + brightBlue: "#96CCA0" + brightMagenta: "#C9B3E0" + brightCyan: "#A0D8BB" + brightWhite: "#E5F0E5" +meta: + mode: "dark" + accent: "orange" + hue: 145 + pair: null + contrast: + fg: 85.4 + black: 0 + red: 43.4 + green: 61.4 + yellow: 69.1 + blue: 56.8 + magenta: 54.2 + cyan: 62.1 + white: 77.9 + brightBlack: 21.5 + brightRed: 56.7 + brightGreen: 73.3 + brightYellow: 80.6 + brightBlue: 66.4 + brightMagenta: 64.3 + brightCyan: 73.8 + brightWhite: 94.3 diff --git a/themes/coder-vai-multi-language-code-runner--coder-vai-light.yaml b/themes/coder-vai-multi-language-code-runner--coder-vai-light.yaml new file mode 100644 index 00000000..14b662ec --- /dev/null +++ b/themes/coder-vai-multi-language-code-runner--coder-vai-light.yaml @@ -0,0 +1,53 @@ +name: "Coder Vai - Multi-Language Code Runner (Coder Vai Light)" +source: + marketplace_id: "umorfaruksupto.coder-vai" + version: "1.0.0" + installs: 431 + rating: 0 + ratings: 0 + author: "umorfaruksupto" + repo: "https://github.com/umorfaruksupto/coder-vai" + url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" + formats: null +colors: + bg: "#EFF1F5" + fg: "#4C4F69" + black: "#5C5F77" + red: "#D20F39" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#EA76CB" + cyan: "#179299" + white: "#ACB0BE" + brightBlack: "#6C6F85" + brightRed: "#D20F39" + brightGreen: "#40A02B" + brightYellow: "#DF8E1D" + brightBlue: "#1E66F5" + brightMagenta: "#EA76CB" + brightCyan: "#179299" + brightWhite: "#BCC0CC" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 79.3 + black: 72.8 + red: 66.3 + green: 52.1 + yellow: 42.3 + blue: 64.8 + magenta: 42.6 + cyan: 56.1 + white: 34.1 + brightBlack: 65.8 + brightRed: 66.3 + brightGreen: 52.1 + brightYellow: 42.3 + brightBlue: 64.8 + brightMagenta: 42.6 + brightCyan: 56.1 + brightWhite: 25.5 diff --git a/themes/coder-vai-multi-language-code-runner--coder-vai-ocean.yaml b/themes/coder-vai-multi-language-code-runner--coder-vai-ocean.yaml new file mode 100644 index 00000000..bcf1939a --- /dev/null +++ b/themes/coder-vai-multi-language-code-runner--coder-vai-ocean.yaml @@ -0,0 +1,53 @@ +name: "Coder Vai - Multi-Language Code Runner (Coder Vai Ocean)" +source: + marketplace_id: "umorfaruksupto.coder-vai" + version: "1.0.0" + installs: 431 + rating: 0 + ratings: 0 + author: "umorfaruksupto" + repo: "https://github.com/umorfaruksupto/coder-vai" + url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" + formats: null +colors: + bg: "#0F1419" + fg: "#BFBDB6" + black: "#1F2430" + red: "#FF3333" + green: "#C2D94C" + yellow: "#FFB454" + blue: "#59C2FF" + magenta: "#FFEE99" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#FF6565" + brightGreen: "#D5F770" + brightYellow: "#FFD173" + brightBlue: "#73D0FF" + brightMagenta: "#FFFFB8" + brightCyan: "#B8F0DF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 249 + pair: null + contrast: + fg: 66.2 + black: 0 + red: 38.9 + green: 76.2 + yellow: 69.9 + blue: 63.6 + magenta: 95.5 + cyan: 81.2 + white: 72 + brightBlack: 23.2 + brightRed: 47 + brightGreen: 93.3 + brightYellow: 81.9 + brightBlue: 71.2 + brightMagenta: 104.4 + brightCyan: 90 + brightWhite: 107.2 diff --git a/themes/coder-vai-multi-language-code-runner--coder-vai-purple-haze.yaml b/themes/coder-vai-multi-language-code-runner--coder-vai-purple-haze.yaml new file mode 100644 index 00000000..01542289 --- /dev/null +++ b/themes/coder-vai-multi-language-code-runner--coder-vai-purple-haze.yaml @@ -0,0 +1,53 @@ +name: "Coder Vai - Multi-Language Code Runner (Coder Vai Purple Haze)" +source: + marketplace_id: "umorfaruksupto.coder-vai" + version: "1.0.0" + installs: 431 + rating: 0 + ratings: 0 + author: "umorfaruksupto" + repo: "https://github.com/umorfaruksupto/coder-vai" + url: "https://marketplace.visualstudio.com/items?itemName=umorfaruksupto.coder-vai" + formats: null +colors: + bg: "#1A0D2E" + fg: "#E4D4F4" + black: "#2D1B4E" + red: "#FF6AC1" + green: "#9AEDFE" + yellow: "#F5D76E" + blue: "#B794F6" + magenta: "#F093FB" + cyan: "#78E8E8" + white: "#D4C5E0" + brightBlack: "#6B4F8A" + brightRed: "#FF8AD4" + brightGreen: "#B4F4FF" + brightYellow: "#FFEB9C" + brightBlue: "#C9B0FF" + brightMagenta: "#FFB3FF" + brightCyan: "#9FFBFB" + brightWhite: "#F0E6F6" +meta: + mode: "dark" + accent: "red" + hue: 299 + pair: null + contrast: + fg: 83.3 + black: 0 + red: 51.1 + green: 87.2 + yellow: 82.6 + blue: 53.1 + magenta: 61.9 + cyan: 81.3 + white: 73.9 + brightBlack: 17.9 + brightRed: 59.9 + brightGreen: 92.9 + brightYellow: 94 + brightBlue: 65.9 + brightMagenta: 75.3 + brightCyan: 94.3 + brightWhite: 92.9 diff --git a/themes/codesandbox-theme-github-com-isneru.yaml b/themes/codesandbox-theme-github-com-isneru.yaml new file mode 100644 index 00000000..0112bd67 --- /dev/null +++ b/themes/codesandbox-theme-github-com-isneru.yaml @@ -0,0 +1,53 @@ +name: "CodeSandbox Theme - github.com/isneru" +source: + marketplace_id: "isneru.codesandbox-theme-neru" + version: "1.1.0" + installs: 622 + rating: 0 + ratings: 0 + author: "Diogo neru Nogueira" + repo: "https://github.com/isneru/codesandbox-theme" + url: "https://marketplace.visualstudio.com/items?itemName=isneru.codesandbox-theme-neru" + formats: null +colors: + bg: "#151515" + fg: "#999999" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 46.4 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/codesandbox-tribute.yaml b/themes/codesandbox-tribute.yaml new file mode 100644 index 00000000..4b30564c --- /dev/null +++ b/themes/codesandbox-tribute.yaml @@ -0,0 +1,53 @@ +name: "codesandbox-tribute" +source: + marketplace_id: "paraform.codesandbox-tribute" + version: "0.0.1" + installs: 84 + rating: 0 + ratings: 0 + author: "Paraform" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=paraform.codesandbox-tribute" + formats: null +colors: + bg: "#0E0E0E" + fg: "#797979" + black: "#1B1B1B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E59C10" + blue: "#2472C8" + magenta: "#7F4ED7" + cyan: "#11A8CD" + white: "#C9C9C9" + brightBlack: "#3B3B3B" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5EA43" + brightBlue: "#3B8EEA" + brightMagenta: "#AC4ED7" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 31.2 + black: 0 + red: 27.4 + green: 53.7 + yellow: 56.6 + blue: 28.1 + magenta: 25.7 + cyan: 48.2 + white: 73.6 + brightBlack: 0 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 91.1 + brightBlue: 40.7 + brightMagenta: 31.9 + brightCyan: 56.1 + brightWhite: 107.6 diff --git a/themes/codesso.yaml b/themes/codesso.yaml new file mode 100644 index 00000000..debbe727 --- /dev/null +++ b/themes/codesso.yaml @@ -0,0 +1,53 @@ +name: "Codesso" +source: + marketplace_id: "elvados.codesso" + version: "1.4.1" + installs: 1049 + rating: 5 + ratings: 4 + author: "vadyapan" + repo: "https://github.com/vadyapan/theme-codesso" + url: "https://marketplace.visualstudio.com/items?itemName=elvados.codesso" + formats: null +colors: + bg: "#F8FAFD" + fg: "#232731" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.7 + black: 90.2 + red: 64.6 + green: 36.5 + yellow: 22.5 + blue: 49.1 + magenta: 51.2 + cyan: 35.6 + white: 7.6 + brightBlack: 82.5 + brightRed: 64.6 + brightGreen: 36.5 + brightYellow: 22.5 + brightBlue: 49.1 + brightMagenta: 51.2 + brightCyan: 37.6 + brightWhite: 0 diff --git a/themes/codevibe-themes.yaml b/themes/codevibe-themes.yaml new file mode 100644 index 00000000..8a67eef8 --- /dev/null +++ b/themes/codevibe-themes.yaml @@ -0,0 +1,53 @@ +name: "CodeVibe Themes" +source: + marketplace_id: "noyonalways.codevibe-themes" + version: "0.0.4" + installs: 644 + rating: 0 + ratings: 0 + author: "Noyon Rahman" + repo: "https://github.com/noyonalways/codevibe-themes" + url: "https://marketplace.visualstudio.com/items?itemName=noyonalways.codevibe-themes" + formats: null +colors: + bg: "#292D3E" + fg: "#D9D8D8" + black: "#000000" + red: "#FF4040" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 274 + pair: null + contrast: + fg: 78.5 + black: 0 + red: 36.5 + green: 49.4 + yellow: 82 + blue: 23.8 + magenta: 26.2 + cyan: 43.9 + white: 86.4 + brightBlack: 18.4 + brightRed: 35 + brightGreen: 59.9 + brightYellow: 92 + brightBlue: 36.4 + brightMagenta: 41.8 + brightCyan: 51.8 + brightWhite: 86.4 diff --git a/themes/codewithsg-dark.yaml b/themes/codewithsg-dark.yaml new file mode 100644 index 00000000..14b2b518 --- /dev/null +++ b/themes/codewithsg-dark.yaml @@ -0,0 +1,53 @@ +name: "codewithsg Dark" +source: + marketplace_id: "codewithsg.codewithsgdark" + version: "0.0.1" + installs: 12 + rating: 0 + ratings: 0 + author: "Saragam Ghimire" + repo: "https://github.com/codewithsg/codewithsgDark" + url: "https://marketplace.visualstudio.com/items?itemName=codewithsg.codewithsgdark" + formats: null +colors: + bg: "#000000" + fg: "#E6EDF3" + black: "#4FF36A" + red: "#CA0000" + green: "#3FB950" + yellow: "#3CFF00" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#00FF22" + brightBlack: "#4FF36A" + brightRed: "#CA0000" + brightGreen: "#3FB950" + brightYellow: "#3CFF00" + brightBlue: "#58A6FF" + brightMagenta: "#BC8CFF" + brightCyan: "#39C5CF" + brightWhite: "#00FF22" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 95.5 + black: 81.9 + red: 24.8 + green: 52.6 + yellow: 87 + blue: 52.7 + magenta: 52.7 + cyan: 61.9 + white: 86.5 + brightBlack: 81.9 + brightRed: 24.8 + brightGreen: 52.6 + brightYellow: 87 + brightBlue: 52.7 + brightMagenta: 52.7 + brightCyan: 61.9 + brightWhite: 86.5 diff --git a/themes/cody.yaml b/themes/cody.yaml new file mode 100644 index 00000000..404ddfe2 --- /dev/null +++ b/themes/cody.yaml @@ -0,0 +1,53 @@ +name: "Cody" +source: + marketplace_id: "ChrisK.welovecoding" + version: "0.0.1" + installs: 1700 + rating: 5 + ratings: 1 + author: "ChrisK" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ChrisK.welovecoding" + formats: null +colors: + bg: "#13171B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 248 + pair: null + contrast: + fg: 79.5 + black: 0 + red: 26.7 + green: 53 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90.1 diff --git a/themes/coffee-break-theme--day.yaml b/themes/coffee-break-theme--day.yaml new file mode 100644 index 00000000..d2c04c23 --- /dev/null +++ b/themes/coffee-break-theme--day.yaml @@ -0,0 +1,53 @@ +name: "Coffee Break Theme (day)" +source: + marketplace_id: "AninhaPardini.coffee-break-theme" + version: "1.5.0" + installs: 836 + rating: 5 + ratings: 2 + author: "Aninha Pardini" + repo: "https://github.com/AninhaPardini/coffee-break-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AninhaPardini.coffee-break-theme" + formats: null +colors: + bg: "#FFFAF6" + fg: "#1F1103" + black: "#502F04" + red: "#CD3131" + green: "#00BC00" + yellow: "#D17E12" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#FF9A16" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 102.4 + black: 94.7 + red: 71.5 + green: 46.7 + yellow: 55.4 + blue: 83.5 + magenta: 72 + cyan: 58.1 + white: 83.4 + brightBlack: 76.2 + brightRed: 71.5 + brightGreen: 38.4 + brightYellow: 38.7 + brightBlue: 83.5 + brightMagenta: 72 + brightCyan: 58.1 + brightWhite: 45.9 diff --git a/themes/coffee-break-theme--night.yaml b/themes/coffee-break-theme--night.yaml new file mode 100644 index 00000000..3320b716 --- /dev/null +++ b/themes/coffee-break-theme--night.yaml @@ -0,0 +1,53 @@ +name: "Coffee Break Theme (night)" +source: + marketplace_id: "AninhaPardini.coffee-break-theme" + version: "1.5.0" + installs: 836 + rating: 5 + ratings: 2 + author: "Aninha Pardini" + repo: "https://github.com/AninhaPardini/coffee-break-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AninhaPardini.coffee-break-theme" + formats: null +colors: + bg: "#130901" + fg: "#FFF3E7" + black: "#FFFFFF" + red: "#CD3131" + green: "#00BC00" + yellow: "#D17E12" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#FF9A16" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: 70 + pair: null + contrast: + fg: 100.9 + black: 107.7 + red: 27.5 + green: 52.5 + yellow: 43.6 + blue: 15.8 + magenta: 26.9 + cyan: 40.9 + white: 15.9 + brightBlack: 22.8 + brightRed: 27.5 + brightGreen: 61.1 + brightYellow: 60.8 + brightBlue: 15.8 + brightMagenta: 26.9 + brightCyan: 40.9 + brightWhite: 53.3 diff --git a/themes/coffee-dark-theme--color-coffee-dark.yaml b/themes/coffee-dark-theme--color-coffee-dark.yaml new file mode 100644 index 00000000..a2cdc8d5 --- /dev/null +++ b/themes/coffee-dark-theme--color-coffee-dark.yaml @@ -0,0 +1,53 @@ +name: "Coffee Dark Theme (Color Coffee Dark)" +source: + marketplace_id: "color-syntax.coffee-color-dark" + version: "0.4.1" + installs: 4129 + rating: 5 + ratings: 3 + author: "SkyRider" + repo: "https://github.com/FredPizarro/coffee-color-dark-syntax" + url: "https://marketplace.visualstudio.com/items?itemName=color-syntax.coffee-color-dark" + formats: null +colors: + bg: "#FFFFFE" + fg: "#3D3E43" + black: "#676E95" + red: "#EC407A" + green: "#81C784" + yellow: "#FFD54F" + blue: "#0091EA" + magenta: "#AB47BC" + cyan: "#E0E0E0" + white: "#FAFAFA" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#E6EE9C" + brightYellow: "#FFCB6B" + brightBlue: "#0091EA" + brightMagenta: "#9BEB93" + brightCyan: "#E0E0E0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 94.7 + black: 74.2 + red: 63.8 + green: 38.9 + yellow: 19.7 + blue: 60.3 + magenta: 72.7 + cyan: 15.8 + white: 0 + brightBlack: 74.2 + brightRed: 56.7 + brightGreen: 11.3 + brightYellow: 23.2 + brightBlue: 60.3 + brightMagenta: 20.4 + brightCyan: 15.8 + brightWhite: 0 diff --git a/themes/coimbrox-panda-theme.yaml b/themes/coimbrox-panda-theme.yaml new file mode 100644 index 00000000..ce7e9021 --- /dev/null +++ b/themes/coimbrox-panda-theme.yaml @@ -0,0 +1,53 @@ +name: "Coimbrox Panda Theme" +source: + marketplace_id: "GabrielCoimbra.coimbrox-panda-theme" + version: "0.0.2" + installs: 64 + rating: 0 + ratings: 0 + author: "Gabriel Coimbra" + repo: "https://github.com/coimbrox/CoimbroxMinimalistPandaTheme" + url: "https://marketplace.visualstudio.com/items?itemName=GabrielCoimbra.coimbrox-panda-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#E6E6E6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 89.8 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/coimbrox-theme.yaml b/themes/coimbrox-theme.yaml new file mode 100644 index 00000000..60d3fbd4 --- /dev/null +++ b/themes/coimbrox-theme.yaml @@ -0,0 +1,53 @@ +name: "Coimbrox Theme" +source: + marketplace_id: "Coimbrox.coimbrox-theme" + version: "0.0.4" + installs: 1869 + rating: 5 + ratings: 2 + author: "Coimbrox" + repo: "https://github.com/coimbrox/coimbrox-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Coimbrox.coimbrox-theme" + formats: null +colors: + bg: "#1F122C" + fg: "#81D140" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 306 + pair: null + contrast: + fg: 65.7 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.8 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/coldark--coldark-cold.yaml b/themes/coldark--coldark-cold.yaml new file mode 100644 index 00000000..eef11b6f --- /dev/null +++ b/themes/coldark--coldark-cold.yaml @@ -0,0 +1,53 @@ +name: "Coldark (Coldark - Cold)" +source: + marketplace_id: "ArmandPhilippot.coldark" + version: "1.2.11" + installs: 6473 + rating: 5 + ratings: 1 + author: "Armand Philippot" + repo: "https://github.com/ArmandPhilippot/coldark-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ArmandPhilippot.coldark" + formats: null +colors: + bg: "#E3EAF2" + fg: "#111B27" + black: "#E3EAF2" + red: "#C22F2E" + green: "#116B00" + yellow: "#755F00" + blue: "#005A8E" + magenta: "#AF00AF" + cyan: "#006D6D" + white: "#111B27" + brightBlack: "#3C526D" + brightRed: "#C22F2E" + brightGreen: "#116B00" + brightYellow: "#755F00" + brightBlue: "#005A8E" + brightMagenta: "#AF00AF" + brightCyan: "#006D6D" + brightWhite: "#0B121B" +meta: + mode: "light" + accent: "pink" + hue: 252 + pair: null + contrast: + fg: 91.2 + black: 0 + red: 63.7 + green: 69.6 + yellow: 67.7 + blue: 72 + magenta: 65.1 + cyan: 67.3 + white: 91.2 + brightBlack: 74.8 + brightRed: 63.7 + brightGreen: 69.6 + brightYellow: 67.7 + brightBlue: 72 + brightMagenta: 65.1 + brightCyan: 67.3 + brightWhite: 92.3 diff --git a/themes/coldark--coldark-dark.yaml b/themes/coldark--coldark-dark.yaml new file mode 100644 index 00000000..5dd7d3a8 --- /dev/null +++ b/themes/coldark--coldark-dark.yaml @@ -0,0 +1,53 @@ +name: "Coldark (Coldark - Dark)" +source: + marketplace_id: "ArmandPhilippot.coldark" + version: "1.2.11" + installs: 6473 + rating: 5 + ratings: 1 + author: "Armand Philippot" + repo: "https://github.com/ArmandPhilippot/coldark-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ArmandPhilippot.coldark" + formats: null +colors: + bg: "#111B27" + fg: "#E3EAF2" + black: "#111B27" + red: "#CD6660" + green: "#91D076" + yellow: "#E6D37A" + blue: "#6CB8E6" + magenta: "#F4ADF4" + cyan: "#66CCCC" + white: "#E3EAF2" + brightBlack: "#8DA1B9" + brightRed: "#CD6660" + brightGreen: "#91D076" + brightYellow: "#E6D37A" + brightBlue: "#6CB8E6" + brightMagenta: "#F4ADF4" + brightCyan: "#66CCCC" + brightWhite: "#F0F4F8" +meta: + mode: "dark" + accent: "green" + hue: 253 + pair: null + contrast: + fg: 92.2 + black: 0 + red: 36.1 + green: 67.1 + yellow: 78.3 + blue: 58.1 + magenta: 70.1 + cyan: 65.2 + white: 92.2 + brightBlack: 48.9 + brightRed: 36.1 + brightGreen: 67.1 + brightYellow: 78.3 + brightBlue: 58.1 + brightMagenta: 70.1 + brightCyan: 65.2 + brightWhite: 98.9 diff --git a/themes/collotheme.yaml b/themes/collotheme.yaml new file mode 100644 index 00000000..06cf6ecb --- /dev/null +++ b/themes/collotheme.yaml @@ -0,0 +1,53 @@ +name: "collotheme" +source: + marketplace_id: "THEJASONB.collotheme" + version: "0.0.2" + installs: 77 + rating: 0 + ratings: 0 + author: "THEJASONB" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=THEJASONB.collotheme" + formats: null +colors: + bg: "#272F3D" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 262 + pair: null + contrast: + fg: 103.1 + black: 0 + red: 22.9 + green: 49.2 + yellow: 81.8 + blue: 23.6 + magenta: 25.9 + cyan: 43.7 + white: 103.1 + brightBlack: 18.2 + brightRed: 34.7 + brightGreen: 59.7 + brightYellow: 91.8 + brightBlue: 36.2 + brightMagenta: 41.6 + brightCyan: 51.6 + brightWhite: 86.2 diff --git a/themes/color-contrast-theme--color-contrast.yaml b/themes/color-contrast-theme--color-contrast.yaml new file mode 100644 index 00000000..afd9ea5c --- /dev/null +++ b/themes/color-contrast-theme--color-contrast.yaml @@ -0,0 +1,53 @@ +name: "Color Contrast Theme (Color contrast)" +source: + marketplace_id: "HironTez.color-contrast-theme" + version: "0.0.1" + installs: 3764 + rating: 0 + ratings: 0 + author: "Hiron Tez" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HironTez.color-contrast-theme" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#8F8F8F" + red: "#F82A5D" + green: "#98D800" + yellow: "#E7DC60" + blue: "#5CCAEF" + magenta: "#F57F00" + cyan: "#A57FFF" + white: "#F1F1F1" + brightBlack: "#8F8F8F" + brightRed: "#F82A5D" + brightGreen: "#98D800" + brightYellow: "#E7DC60" + brightBlue: "#5CCAEF" + brightMagenta: "#F57F00" + brightCyan: "#A57FFF" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 107.9 + black: 42.1 + red: 37.8 + green: 71.8 + yellow: 83.4 + blue: 67 + magenta: 50.9 + cyan: 45.8 + white: 98.7 + brightBlack: 42.1 + brightRed: 37.8 + brightGreen: 71.8 + brightYellow: 83.4 + brightBlue: 67 + brightMagenta: 50.9 + brightCyan: 45.8 + brightWhite: 98.7 diff --git a/themes/color-sea--color-sea-blue.yaml b/themes/color-sea--color-sea-blue.yaml new file mode 100644 index 00000000..f0e33228 --- /dev/null +++ b/themes/color-sea--color-sea-blue.yaml @@ -0,0 +1,53 @@ +name: "Color Sea (Color Sea Blue)" +source: + marketplace_id: "Danesed.color-sea" + version: "1.0.0" + installs: 18 + rating: 0 + ratings: 0 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" + formats: null +colors: + bg: "#132035" + fg: "#A3A9BB" + black: "#234677" + red: "#FF2D3B" + green: "#90E0EF" + yellow: "#FF595E" + blue: "#00BBF9" + magenta: "#FF595E" + cyan: "#00BBF9" + white: "#A3A9BB" + brightBlack: "#45495D" + brightRed: "#FF2D3B" + brightGreen: "#90E0EF" + brightYellow: "#FF595E" + brightBlue: "#00BBF9" + brightMagenta: "#FF595E" + brightCyan: "#00BBF9" + brightWhite: "#A3A9BB" +meta: + mode: "dark" + accent: "orange" + hue: 260 + pair: null + contrast: + fg: 53.6 + black: 8.5 + red: 37.1 + green: 78.1 + yellow: 43.1 + blue: 57.1 + magenta: 43.1 + cyan: 57.1 + white: 53.6 + brightBlack: 9.8 + brightRed: 37.1 + brightGreen: 78.1 + brightYellow: 43.1 + brightBlue: 57.1 + brightMagenta: 43.1 + brightCyan: 57.1 + brightWhite: 53.6 diff --git a/themes/color-sea--color-sea-gray.yaml b/themes/color-sea--color-sea-gray.yaml new file mode 100644 index 00000000..056ce71b --- /dev/null +++ b/themes/color-sea--color-sea-gray.yaml @@ -0,0 +1,53 @@ +name: "Color Sea (Color Sea Gray)" +source: + marketplace_id: "Danesed.color-sea" + version: "1.0.0" + installs: 18 + rating: 0 + ratings: 0 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" + formats: null +colors: + bg: "#1D202B" + fg: "#A9AAB5" + black: "#3A4562" + red: "#FF2D3B" + green: "#72DDF7" + yellow: "#FF595E" + blue: "#5C7CFA" + magenta: "#FF595E" + cyan: "#5C7CFA" + white: "#A9AAB5" + brightBlack: "#4B4B57" + brightRed: "#FF2D3B" + brightGreen: "#72DDF7" + brightYellow: "#FF595E" + brightBlue: "#5C7CFA" + brightMagenta: "#FF595E" + brightCyan: "#5C7CFA" + brightWhite: "#A9AAB5" +meta: + mode: "dark" + accent: "orange" + hue: 273 + pair: null + contrast: + fg: 54.4 + black: 8.2 + red: 37 + green: 75.2 + yellow: 43.1 + blue: 35.5 + magenta: 43.1 + cyan: 35.5 + white: 54.4 + brightBlack: 10.5 + brightRed: 37 + brightGreen: 75.2 + brightYellow: 43.1 + brightBlue: 35.5 + brightMagenta: 43.1 + brightCyan: 35.5 + brightWhite: 54.4 diff --git a/themes/color-sea--color-sea-green.yaml b/themes/color-sea--color-sea-green.yaml new file mode 100644 index 00000000..4daf3d4d --- /dev/null +++ b/themes/color-sea--color-sea-green.yaml @@ -0,0 +1,53 @@ +name: "Color Sea (Color Sea Green)" +source: + marketplace_id: "Danesed.color-sea" + version: "1.0.0" + installs: 18 + rating: 0 + ratings: 0 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" + formats: null +colors: + bg: "#132E31" + fg: "#A4B5BA" + black: "#1F5C61" + red: "#FF2D3B" + green: "#80FFDB" + yellow: "#2EC4B6" + blue: "#00A6FB" + magenta: "#2EC4B6" + cyan: "#00A6FB" + white: "#A4B5BA" + brightBlack: "#46555C" + brightRed: "#FF2D3B" + brightGreen: "#80FFDB" + brightYellow: "#2EC4B6" + brightBlue: "#00A6FB" + brightMagenta: "#2EC4B6" + brightCyan: "#00A6FB" + brightWhite: "#A4B5BA" +meta: + mode: "dark" + accent: "orange" + hue: 205 + pair: null + contrast: + fg: 56.7 + black: 12 + red: 35.3 + green: 89.7 + yellow: 56.1 + blue: 46.7 + magenta: 56.1 + cyan: 46.7 + white: 56.7 + brightBlack: 11.3 + brightRed: 35.3 + brightGreen: 89.7 + brightYellow: 56.1 + brightBlue: 46.7 + brightMagenta: 56.1 + brightCyan: 46.7 + brightWhite: 56.7 diff --git a/themes/color-sea--color-sea-orange.yaml b/themes/color-sea--color-sea-orange.yaml new file mode 100644 index 00000000..df0808cc --- /dev/null +++ b/themes/color-sea--color-sea-orange.yaml @@ -0,0 +1,53 @@ +name: "Color Sea (Color Sea Orange)" +source: + marketplace_id: "Danesed.color-sea" + version: "1.0.0" + installs: 18 + rating: 0 + ratings: 0 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" + formats: null +colors: + bg: "#312117" + fg: "#B8AFA6" + black: "#6E422B" + red: "#FF2D3B" + green: "#56CFE1" + yellow: "#FB5607" + blue: "#4D8EFF" + magenta: "#FB5607" + cyan: "#4D8EFF" + white: "#B8AFA6" + brightBlack: "#5A5348" + brightRed: "#FF2D3B" + brightGreen: "#56CFE1" + brightYellow: "#FB5607" + brightBlue: "#4D8EFF" + brightMagenta: "#FB5607" + brightCyan: "#4D8EFF" + brightWhite: "#B8AFA6" +meta: + mode: "dark" + accent: "orange" + hue: 53 + pair: null + contrast: + fg: 56.9 + black: 10.3 + red: 36.3 + green: 65.4 + yellow: 40.2 + blue: 40.4 + magenta: 40.2 + cyan: 40.4 + white: 56.9 + brightBlack: 12.8 + brightRed: 36.3 + brightGreen: 65.4 + brightYellow: 40.2 + brightBlue: 40.4 + brightMagenta: 40.2 + brightCyan: 40.4 + brightWhite: 56.9 diff --git a/themes/color-sea--color-sea-purple.yaml b/themes/color-sea--color-sea-purple.yaml new file mode 100644 index 00000000..94ca0d29 --- /dev/null +++ b/themes/color-sea--color-sea-purple.yaml @@ -0,0 +1,53 @@ +name: "Color Sea (Color Sea Purple)" +source: + marketplace_id: "Danesed.color-sea" + version: "1.0.0" + installs: 18 + rating: 0 + ratings: 0 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" + formats: null +colors: + bg: "#1F192F" + fg: "#AEA7B7" + black: "#48387A" + red: "#FF2D3B" + green: "#C77DFF" + yellow: "#8B5CF6" + blue: "#4CC9F0" + magenta: "#8B5CF6" + cyan: "#4CC9F0" + white: "#AEA7B7" + brightBlack: "#514959" + brightRed: "#FF2D3B" + brightGreen: "#C77DFF" + brightYellow: "#8B5CF6" + brightBlue: "#4CC9F0" + brightMagenta: "#8B5CF6" + brightCyan: "#4CC9F0" + brightWhite: "#AEA7B7" +meta: + mode: "dark" + accent: "orange" + hue: 295 + pair: null + contrast: + fg: 54.4 + black: 8 + red: 37.5 + green: 48.3 + yellow: 31.3 + blue: 64.3 + magenta: 31.3 + cyan: 64.3 + white: 54.4 + brightBlack: 11.1 + brightRed: 37.5 + brightGreen: 48.3 + brightYellow: 31.3 + brightBlue: 64.3 + brightMagenta: 31.3 + brightCyan: 64.3 + brightWhite: 54.4 diff --git a/themes/color-sea--color-sea-red.yaml b/themes/color-sea--color-sea-red.yaml new file mode 100644 index 00000000..f54b606b --- /dev/null +++ b/themes/color-sea--color-sea-red.yaml @@ -0,0 +1,53 @@ +name: "Color Sea (Color Sea Red)" +source: + marketplace_id: "Danesed.color-sea" + version: "1.0.0" + installs: 18 + rating: 0 + ratings: 0 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" + formats: null +colors: + bg: "#301820" + fg: "#B8A6AA" + black: "#6F3046" + red: "#FF2D3B" + green: "#72E3FF" + yellow: "#FF4D5A" + blue: "#3A86FF" + magenta: "#FF4D5A" + cyan: "#3A86FF" + white: "#B8A6AA" + brightBlack: "#5A484A" + brightRed: "#FF2D3B" + brightGreen: "#72E3FF" + brightYellow: "#FF4D5A" + brightBlue: "#3A86FF" + brightMagenta: "#FF4D5A" + brightCyan: "#3A86FF" + brightWhite: "#B8A6AA" +meta: + mode: "dark" + accent: "orange" + hue: 359 + pair: null + contrast: + fg: 54.3 + black: 8.5 + red: 37.1 + green: 78.5 + yellow: 41.1 + blue: 37.7 + magenta: 41.1 + cyan: 37.7 + white: 54.3 + brightBlack: 10.8 + brightRed: 37.1 + brightGreen: 78.5 + brightYellow: 41.1 + brightBlue: 37.7 + brightMagenta: 41.1 + brightCyan: 37.7 + brightWhite: 54.3 diff --git a/themes/color-sea--color-sea-yellow.yaml b/themes/color-sea--color-sea-yellow.yaml new file mode 100644 index 00000000..b483fb7a --- /dev/null +++ b/themes/color-sea--color-sea-yellow.yaml @@ -0,0 +1,53 @@ +name: "Color Sea (Color Sea Yellow)" +source: + marketplace_id: "Danesed.color-sea" + version: "1.0.0" + installs: 18 + rating: 0 + ratings: 0 + author: "Danesed" + repo: "https://github.com/danesed/colorsea-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Danesed.color-sea" + formats: null +colors: + bg: "#332614" + fg: "#BAB4A4" + black: "#6D4B23" + red: "#FF2D3B" + green: "#72DDF7" + yellow: "#FFBE0B" + blue: "#7B8CFF" + magenta: "#FFBE0B" + cyan: "#7B8CFF" + white: "#BAB4A4" + brightBlack: "#5C5846" + brightRed: "#FF2D3B" + brightGreen: "#72DDF7" + brightYellow: "#FFBE0B" + brightBlue: "#7B8CFF" + brightMagenta: "#FFBE0B" + brightCyan: "#7B8CFF" + brightWhite: "#BAB4A4" +meta: + mode: "dark" + accent: "orange" + hue: 74 + pair: null + contrast: + fg: 58.4 + black: 11.5 + red: 35.7 + green: 73.8 + yellow: 70.4 + blue: 42 + magenta: 70.4 + cyan: 42 + white: 58.4 + brightBlack: 13.7 + brightRed: 35.7 + brightGreen: 73.8 + brightYellow: 70.4 + brightBlue: 42 + brightMagenta: 70.4 + brightCyan: 42 + brightWhite: 58.4 diff --git a/themes/color-theme--cyan-dark.yaml b/themes/color-theme--cyan-dark.yaml new file mode 100644 index 00000000..38f16415 --- /dev/null +++ b/themes/color-theme--cyan-dark.yaml @@ -0,0 +1,53 @@ +name: "Color Theme (Cyan Dark)" +source: + marketplace_id: "ceciljacob.code-color-theme" + version: "1.0.0" + installs: 22136 + rating: 5 + ratings: 1 + author: "Cecil Jacob" + repo: "https://github.com/ceciljacob/code-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ceciljacob.code-color-theme" + formats: null +colors: + bg: "#0F141C" + fg: "#D8DCE8" + black: "#020202" + red: "#C45E04" + green: "#82A48F" + yellow: "#F4DB60" + blue: "#76ABDC" + magenta: "#B68DB2" + cyan: "#56B8C8" + white: "#EFEFEF" + brightBlack: "#424242" + brightRed: "#C45E04" + brightGreen: "#82A48F" + brightYellow: "#F4DB60" + brightBlue: "#76ABDC" + brightMagenta: "#B68DB2" + brightCyan: "#56B8C8" + brightWhite: "#FEFEFE" +meta: + mode: "dark" + accent: "yellow" + hue: 260 + pair: null + contrast: + fg: 84.7 + black: 0 + red: 32.3 + green: 48.1 + yellow: 84.1 + blue: 53.5 + magenta: 46.9 + cyan: 56 + white: 96.7 + brightBlack: 8.4 + brightRed: 32.3 + brightGreen: 48.1 + brightYellow: 84.1 + brightBlue: 53.5 + brightMagenta: 46.9 + brightCyan: 56 + brightWhite: 106.5 diff --git a/themes/color-wheel.yaml b/themes/color-wheel.yaml new file mode 100644 index 00000000..752c8b58 --- /dev/null +++ b/themes/color-wheel.yaml @@ -0,0 +1,53 @@ +name: "Color Wheel" +source: + marketplace_id: "escape-technology-llc.the-color-wheel" + version: "0.7.2" + installs: 2425 + rating: 5 + ratings: 1 + author: "eScape Technology LLC" + repo: "https://escape-technology-llc.visualstudio.com/Color%20Wheel/_git/Color%20Wheel" + url: "https://marketplace.visualstudio.com/items?itemName=escape-technology-llc.the-color-wheel" + formats: null +colors: + bg: "#DBF6E0" + fg: "#EEEEEE" + black: "#404040" + red: "#6F0B0B" + green: "#0B6F0B" + yellow: "#6F6F0B" + blue: "#0B0B6F" + magenta: "#6F0B6F" + cyan: "#0B6F6F" + white: "#838383" + brightBlack: "#808080" + brightRed: "#DE6F6F" + brightGreen: "#6FDE6F" + brightYellow: "#DEDE6F" + brightBlue: "#6F6FDE" + brightMagenta: "#DE6FDE" + brightCyan: "#6FDEDE" + brightWhite: "#A3A3A3" +meta: + mode: "light" + accent: "pink" + hue: 151 + pair: null + contrast: + fg: 0 + black: 84.6 + red: 86.6 + green: 71.6 + yellow: 66.8 + blue: 92.6 + magenta: 83.9 + cyan: 69.9 + white: 56 + brightBlack: 57.4 + brightRed: 49 + brightGreen: 20.6 + brightYellow: 10.7 + brightBlue: 59.2 + brightMagenta: 44.3 + brightCyan: 17.2 + brightWhite: 40 diff --git a/themes/colorado-theme--theme-dark.yaml b/themes/colorado-theme--theme-dark.yaml new file mode 100644 index 00000000..fe1aee9b --- /dev/null +++ b/themes/colorado-theme--theme-dark.yaml @@ -0,0 +1,53 @@ +name: "Colorado Theme (Theme³ Dark)" +source: + marketplace_id: "StevenJborik.colorado-theme" + version: "0.0.15" + installs: 84 + rating: 5 + ratings: 1 + author: "StevenJBorik" + repo: "https://github.com/StevenJBorik/colorado-theme" + url: "https://marketplace.visualstudio.com/items?itemName=StevenJborik.colorado-theme" + formats: null +colors: + bg: "#2E3440" + fg: "#D3D7DF" + black: "#3E4656" + red: "#609BBC" + green: "#05BE9F" + yellow: "#E6BA5C" + blue: "#05BE9F" + magenta: "#E57373" + cyan: "#99AAB5" + white: "#DEE1E7" + brightBlack: "#5F6B83" + brightRed: "#E57373" + brightGreen: "#05BE9F" + brightYellow: "#E6BA5C" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#99AAB5" + brightWhite: "#DEE1E7" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 76.1 + black: 0 + red: 38.6 + green: 50 + yellow: 62.7 + blue: 50 + magenta: 39.7 + cyan: 48.8 + white: 82.3 + brightBlack: 19 + brightRed: 39.7 + brightGreen: 50 + brightYellow: 62.7 + brightBlue: 36.4 + brightMagenta: 7.7 + brightCyan: 48.8 + brightWhite: 82.3 diff --git a/themes/colorado-theme--theme.yaml b/themes/colorado-theme--theme.yaml new file mode 100644 index 00000000..dd841975 --- /dev/null +++ b/themes/colorado-theme--theme.yaml @@ -0,0 +1,53 @@ +name: "Colorado Theme (Theme³)" +source: + marketplace_id: "StevenJborik.colorado-theme" + version: "0.0.15" + installs: 84 + rating: 5 + ratings: 1 + author: "StevenJBorik" + repo: "https://github.com/StevenJBorik/colorado-theme" + url: "https://marketplace.visualstudio.com/items?itemName=StevenJborik.colorado-theme" + formats: null +colors: + bg: "#ECEEF1" + fg: "#333333" + black: "#2D3139" + red: "#184B64" + green: "#038268" + yellow: "#E6BA5C" + blue: "#038268" + magenta: "#9A2A2A" + cyan: "#99AAB5" + white: "#23272F" + brightBlack: "#7F848E" + brightRed: "#9A2A2A" + brightGreen: "#038268" + brightYellow: "#E6BA5C" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#99AAB5" + brightWhite: "#23272F" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 88.5 + black: 89.1 + red: 81.3 + green: 62.4 + yellow: 23.6 + blue: 62.4 + magenta: 75.3 + cyan: 37 + white: 91.6 + brightBlack: 54.9 + brightRed: 75.3 + brightGreen: 62.4 + brightYellow: 23.6 + brightBlue: 49 + brightMagenta: 78.2 + brightCyan: 37 + brightWhite: 91.6 diff --git a/themes/colored-desert--colored-desert.yaml b/themes/colored-desert--colored-desert.yaml new file mode 100644 index 00000000..6d71b850 --- /dev/null +++ b/themes/colored-desert--colored-desert.yaml @@ -0,0 +1,53 @@ +name: "Colored Desert (Colored Desert)" +source: + marketplace_id: "DevAnorak.colored-desert" + version: "0.0.14" + installs: 56 + rating: 0 + ratings: 0 + author: "DevAnorak" + repo: "https://github.com/SirSouza/Colored-Desert-VScode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DevAnorak.colored-desert" + formats: null +colors: + bg: "#504945" + fg: "#504945" + black: "#000000" + red: "#FF0000" + green: "#00BC00" + yellow: "#F8FF00" + blue: "#337BCB" + magenta: "#FF00FF" + cyan: "#10AED5" + white: "#FFFFFF" + brightBlack: "#929090" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#F8FF00" + brightBlue: "#0084F9" + brightMagenta: "#FF00FF" + brightCyan: "#00CDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 52 + pair: null + contrast: + fg: 0 + black: 13.8 + red: 24.3 + green: 39.5 + yellow: 88.5 + blue: 18.7 + magenta: 33 + cyan: 38.3 + white: 94.7 + brightBlack: 29.6 + brightRed: 24.3 + brightGreen: 73.3 + brightYellow: 88.5 + brightBlue: 24.7 + brightMagenta: 33 + brightCyan: 54.4 + brightWhite: 94.7 diff --git a/themes/colored-theme--red-color-theme.yaml b/themes/colored-theme--red-color-theme.yaml new file mode 100644 index 00000000..71e380f2 --- /dev/null +++ b/themes/colored-theme--red-color-theme.yaml @@ -0,0 +1,53 @@ +name: "Colored Theme (red-color-theme)" +source: + marketplace_id: "electropol-fr.coloredtheme" + version: "1.3.0" + installs: 4215 + rating: 5 + ratings: 1 + author: "electropol.fr" + repo: "https://github.com/FrankSAURET/colored-theme" + url: "https://marketplace.visualstudio.com/items?itemName=electropol-fr.coloredtheme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#FF0000" + green: "#00FF22" + yellow: "#FFEE00" + blue: "#40BFFA" + magenta: "#FF00DD" + cyan: "#00EEFF" + white: "#EEEEEE" + brightBlack: "#808080" + brightRed: "#ED7D31" + brightGreen: "#70AD47" + brightYellow: "#FFC000" + brightBlue: "#4472C4" + brightMagenta: "#DAC2F7" + brightCyan: "#5B9BD5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 64.1 + green: 17.1 + yellow: 9.6 + blue: 40.5 + magenta: 58 + cyan: 19.9 + white: 7.6 + brightBlack: 66.9 + brightRed: 52.9 + brightGreen: 52.3 + brightYellow: 28.2 + brightBlue: 72.5 + brightMagenta: 27.4 + brightCyan: 56 + brightWhite: 0 diff --git a/themes/colorful-dark-light-and-monochrome-italic-color-themes-pack--qqqoid-light-color.yaml b/themes/colorful-dark-light-and-monochrome-italic-color-themes-pack--qqqoid-light-color.yaml new file mode 100644 index 00000000..a3f75028 --- /dev/null +++ b/themes/colorful-dark-light-and-monochrome-italic-color-themes-pack--qqqoid-light-color.yaml @@ -0,0 +1,53 @@ +name: "Colorful dark, light and monochrome italic color themes pack (qqqoid light color)" +source: + marketplace_id: "SalavatDSamigoullin.another-one-theme-pack" + version: "0.0.6" + installs: 334 + rating: 0 + ratings: 0 + author: "Salavat D. Samigoullin" + repo: "https://github.com/SalavatSamigoullin/qqqoid-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SalavatDSamigoullin.another-one-theme-pack" + formats: null +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#24292E" + red: "#D73A49" + green: "#28A745" + yellow: "#DBAB09" + blue: "#0366D6" + magenta: "#7C3AED" + cyan: "#1B7C83" + white: "#6A737D" + brightBlack: "#959DA5" + brightRed: "#CB2431" + brightGreen: "#22863A" + brightYellow: "#B08800" + brightBlue: "#2563EB" + brightMagenta: "#7C3AED" + brightCyan: "#3192AA" + brightWhite: "#D1D5DA" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 101.5 + black: 101.5 + red: 70.4 + green: 57.9 + yellow: 41.6 + blue: 76.2 + magenta: 77.5 + cyan: 73.8 + white: 73.4 + brightBlack: 53.1 + brightRed: 75.5 + brightGreen: 71.7 + brightYellow: 60.1 + brightBlue: 74.9 + brightMagenta: 77.5 + brightCyan: 63.3 + brightWhite: 22.4 diff --git a/themes/colorful-theme.yaml b/themes/colorful-theme.yaml new file mode 100644 index 00000000..c9048eef --- /dev/null +++ b/themes/colorful-theme.yaml @@ -0,0 +1,53 @@ +name: "Colorful Theme" +source: + marketplace_id: "leonex16.colorful-theme" + version: "1.1.4" + installs: 3557 + rating: 5 + ratings: 1 + author: "Leonel Espinoza Sotelo" + repo: "https://github.com/leonex16/colorful-theme" + url: "https://marketplace.visualstudio.com/items?itemName=leonex16.colorful-theme" + formats: null +colors: + bg: "#202022" + fg: "#FAFAFA" + black: "#000000" + red: "#FF4C42" + green: "#34CB5A" + yellow: "#FFD814" + blue: "#148AFF" + magenta: "#C363F2" + cyan: "#47CAE1" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF4C42" + brightGreen: "#34CB5A" + brightYellow: "#FFD814" + brightBlue: "#148AFF" + brightMagenta: "#C363F2" + brightCyan: "#47CAE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.4 + black: 0 + red: 40.6 + green: 58.7 + yellow: 82.6 + blue: 38.4 + magenta: 39.9 + cyan: 63.3 + white: 105.7 + brightBlack: 0 + brightRed: 40.6 + brightGreen: 58.7 + brightYellow: 82.6 + brightBlue: 38.4 + brightMagenta: 39.9 + brightCyan: 63.3 + brightWhite: 105.7 diff --git a/themes/colorized-theme-1-3--github-dark-dimmed.yaml b/themes/colorized-theme-1-3--github-dark-dimmed.yaml new file mode 100644 index 00000000..649a86d0 --- /dev/null +++ b/themes/colorized-theme-1-3--github-dark-dimmed.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (GitHub Dark Dimmed)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.7 + black: 17.1 + red: 45.9 + green: 45.6 + yellow: 45.9 + blue: 45.7 + magenta: 45.4 + cyan: 60 + white: 46.6 + brightBlack: 24.2 + brightRed: 58.6 + brightGreen: 58.2 + brightYellow: 58.5 + brightBlue: 58.4 + brightMagenta: 72.3 + brightCyan: 68.6 + brightWhite: 80.7 diff --git a/themes/colorized-theme-1-3--github-light-default.yaml b/themes/colorized-theme-1-3--github-light-default.yaml new file mode 100644 index 00000000..afe2ad99 --- /dev/null +++ b/themes/colorized-theme-1-3--github-light-default.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (GitHub Light Default)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 106 + black: 101.5 + red: 74.8 + green: 85.2 + yellow: 98 + blue: 74.9 + magenta: 74.3 + cyan: 73.8 + white: 71.6 + brightBlack: 81.8 + brightRed: 85.2 + brightGreen: 74.6 + brightYellow: 92 + brightBlue: 60.7 + brightMagenta: 59.3 + brightCyan: 63.3 + brightWhite: 57.2 diff --git a/themes/colorized-theme-1-3--kuroir-dark-01-crimson.yaml b/themes/colorized-theme-1-3--kuroir-dark-01-crimson.yaml new file mode 100644 index 00000000..39243f13 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-01-crimson.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 01 Crimson)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#232020" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.3 + black: 16.7 + red: 45.6 + green: 45.3 + yellow: 45.5 + blue: 45.3 + magenta: 45.1 + cyan: 59.7 + white: 46.2 + brightBlack: 23.8 + brightRed: 58.2 + brightGreen: 57.9 + brightYellow: 58.1 + brightBlue: 58 + brightMagenta: 71.9 + brightCyan: 68.2 + brightWhite: 80.4 diff --git a/themes/colorized-theme-1-3--kuroir-dark-02-vermilion.yaml b/themes/colorized-theme-1-3--kuroir-dark-02-vermilion.yaml new file mode 100644 index 00000000..10f399a1 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-02-vermilion.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 02 Vermilion)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#232120" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.2 + black: 16.6 + red: 45.5 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.6 + white: 46.1 + brightBlack: 23.7 + brightRed: 58.1 + brightGreen: 57.8 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/colorized-theme-1-3--kuroir-dark-03-amber.yaml b/themes/colorized-theme-1-3--kuroir-dark-03-amber.yaml new file mode 100644 index 00000000..3c3185cd --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-03-amber.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 03 Amber)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#232220" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Light 03 Amber)" + contrast: + fg: 78.1 + black: 16.5 + red: 45.4 + green: 45.1 + yellow: 45.3 + blue: 45.1 + magenta: 44.9 + cyan: 59.4 + white: 46 + brightBlack: 23.6 + brightRed: 58 + brightGreen: 57.6 + brightYellow: 57.9 + brightBlue: 57.8 + brightMagenta: 71.7 + brightCyan: 68 + brightWhite: 80.2 diff --git a/themes/colorized-theme-1-3--kuroir-dark-04-goldenrod.yaml b/themes/colorized-theme-1-3--kuroir-dark-04-goldenrod.yaml new file mode 100644 index 00000000..c50c747a --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-04-goldenrod.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 04 Goldenrod)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#23211F" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.2 + black: 16.6 + red: 45.5 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.6 + white: 46.2 + brightBlack: 23.7 + brightRed: 58.1 + brightGreen: 57.8 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/colorized-theme-1-3--kuroir-dark-06-chartreuse.yaml b/themes/colorized-theme-1-3--kuroir-dark-06-chartreuse.yaml new file mode 100644 index 00000000..8496adf2 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-06-chartreuse.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 06 Chartreuse)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#22221F" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.1 + black: 16.5 + red: 45.4 + green: 45.1 + yellow: 45.3 + blue: 45.1 + magenta: 44.9 + cyan: 59.5 + white: 46.1 + brightBlack: 23.6 + brightRed: 58.1 + brightGreen: 57.7 + brightYellow: 57.9 + brightBlue: 57.8 + brightMagenta: 71.7 + brightCyan: 68 + brightWhite: 80.2 diff --git a/themes/colorized-theme-1-3--kuroir-dark-07-fern.yaml b/themes/colorized-theme-1-3--kuroir-dark-07-fern.yaml new file mode 100644 index 00000000..b25caee8 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-07-fern.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 07 Fern)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#212220" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Light 07 Fern)" + contrast: + fg: 78.1 + black: 16.5 + red: 45.4 + green: 45.1 + yellow: 45.3 + blue: 45.2 + magenta: 44.9 + cyan: 59.5 + white: 46.1 + brightBlack: 23.6 + brightRed: 58.1 + brightGreen: 57.7 + brightYellow: 58 + brightBlue: 57.8 + brightMagenta: 71.7 + brightCyan: 68.1 + brightWhite: 80.2 diff --git a/themes/colorized-theme-1-3--kuroir-dark-08-emerald.yaml b/themes/colorized-theme-1-3--kuroir-dark-08-emerald.yaml new file mode 100644 index 00000000..651d01ab --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-08-emerald.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 08 Emerald)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#202220" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.2 + black: 16.6 + red: 45.4 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.5 + white: 46.1 + brightBlack: 23.7 + brightRed: 58.1 + brightGreen: 57.7 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/colorized-theme-1-3--kuroir-dark-09-jade.yaml b/themes/colorized-theme-1-3--kuroir-dark-09-jade.yaml new file mode 100644 index 00000000..06dc74fa --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-09-jade.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 09 Jade)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#202221" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Light 09 Jade)" + contrast: + fg: 78.1 + black: 16.6 + red: 45.4 + green: 45.1 + yellow: 45.4 + blue: 45.2 + magenta: 44.9 + cyan: 59.5 + white: 46.1 + brightBlack: 23.6 + brightRed: 58.1 + brightGreen: 57.7 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.7 + brightCyan: 68.1 + brightWhite: 80.2 diff --git a/themes/colorized-theme-1-3--kuroir-dark-11-aqua.yaml b/themes/colorized-theme-1-3--kuroir-dark-11-aqua.yaml new file mode 100644 index 00000000..8d7dcbd2 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-11-aqua.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 11 Aqua)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#202222" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Light 11 Aqua)" + contrast: + fg: 78.1 + black: 16.6 + red: 45.4 + green: 45.1 + yellow: 45.3 + blue: 45.2 + magenta: 44.9 + cyan: 59.5 + white: 46.1 + brightBlack: 23.6 + brightRed: 58.1 + brightGreen: 57.7 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.7 + brightCyan: 68.1 + brightWhite: 80.2 diff --git a/themes/colorized-theme-1-3--kuroir-dark-14-cerulean.yaml b/themes/colorized-theme-1-3--kuroir-dark-14-cerulean.yaml new file mode 100644 index 00000000..6062664e --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-14-cerulean.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 14 Cerulean)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#202122" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.2 + black: 16.7 + red: 45.5 + green: 45.2 + yellow: 45.5 + blue: 45.3 + magenta: 45 + cyan: 59.6 + white: 46.2 + brightBlack: 23.7 + brightRed: 58.2 + brightGreen: 57.8 + brightYellow: 58.1 + brightBlue: 58 + brightMagenta: 71.8 + brightCyan: 68.2 + brightWhite: 80.3 diff --git a/themes/colorized-theme-1-3--kuroir-dark-15-sky.yaml b/themes/colorized-theme-1-3--kuroir-dark-15-sky.yaml new file mode 100644 index 00000000..b2721c22 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-15-sky.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 15 Sky)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#212122" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Light 15 Sky)" + contrast: + fg: 78.2 + black: 16.6 + red: 45.5 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.6 + white: 46.2 + brightBlack: 23.7 + brightRed: 58.2 + brightGreen: 57.8 + brightYellow: 58.1 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/colorized-theme-1-3--kuroir-dark-18-indigo.yaml b/themes/colorized-theme-1-3--kuroir-dark-18-indigo.yaml new file mode 100644 index 00000000..d197e3fe --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-18-indigo.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 18 Indigo)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#212022" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Light 18 Indigo)" + contrast: + fg: 78.3 + black: 16.7 + red: 45.6 + green: 45.3 + yellow: 45.5 + blue: 45.4 + magenta: 45.1 + cyan: 59.7 + white: 46.3 + brightBlack: 23.8 + brightRed: 58.3 + brightGreen: 57.9 + brightYellow: 58.2 + brightBlue: 58 + brightMagenta: 71.9 + brightCyan: 68.2 + brightWhite: 80.4 diff --git a/themes/colorized-theme-1-3--kuroir-dark-20-amethyst.yaml b/themes/colorized-theme-1-3--kuroir-dark-20-amethyst.yaml new file mode 100644 index 00000000..d0e30720 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-20-amethyst.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 20 Amethyst)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#222122" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.2 + black: 16.6 + red: 45.5 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.6 + white: 46.2 + brightBlack: 23.7 + brightRed: 58.1 + brightGreen: 57.8 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/colorized-theme-1-3--kuroir-dark-21-magenta.yaml b/themes/colorized-theme-1-3--kuroir-dark-21-magenta.yaml new file mode 100644 index 00000000..7b688699 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-21-magenta.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 21 Magenta)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#222022" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.3 + black: 16.7 + red: 45.6 + green: 45.3 + yellow: 45.5 + blue: 45.3 + magenta: 45.1 + cyan: 59.7 + white: 46.3 + brightBlack: 23.8 + brightRed: 58.2 + brightGreen: 57.9 + brightYellow: 58.1 + brightBlue: 58 + brightMagenta: 71.9 + brightCyan: 68.2 + brightWhite: 80.4 diff --git a/themes/colorized-theme-1-3--kuroir-dark-22-fuchsia.yaml b/themes/colorized-theme-1-3--kuroir-dark-22-fuchsia.yaml new file mode 100644 index 00000000..93d732ce --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-22-fuchsia.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 22 Fuchsia)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#222121" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.2 + black: 16.6 + red: 45.5 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.6 + white: 46.2 + brightBlack: 23.7 + brightRed: 58.1 + brightGreen: 57.8 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/colorized-theme-1-3--kuroir-dark-23-rose.yaml b/themes/colorized-theme-1-3--kuroir-dark-23-rose.yaml new file mode 100644 index 00000000..ea342a72 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-23-rose.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 23 Rose)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#232021" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Light 23 Rose)" + contrast: + fg: 78.3 + black: 16.7 + red: 45.6 + green: 45.3 + yellow: 45.5 + blue: 45.3 + magenta: 45.1 + cyan: 59.6 + white: 46.2 + brightBlack: 23.8 + brightRed: 58.2 + brightGreen: 57.8 + brightYellow: 58.1 + brightBlue: 58 + brightMagenta: 71.9 + brightCyan: 68.2 + brightWhite: 80.4 diff --git a/themes/colorized-theme-1-3--kuroir-dark-24-coral.yaml b/themes/colorized-theme-1-3--kuroir-dark-24-coral.yaml new file mode 100644 index 00000000..2adf9fa7 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-dark-24-coral.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Dark 24 Coral)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#222120" + fg: "#D4D4D4" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Light 24 Coral)" + contrast: + fg: 78.2 + black: 16.6 + red: 45.5 + green: 45.2 + yellow: 45.4 + blue: 45.2 + magenta: 45 + cyan: 59.6 + white: 46.2 + brightBlack: 23.7 + brightRed: 58.2 + brightGreen: 57.8 + brightYellow: 58 + brightBlue: 57.9 + brightMagenta: 71.8 + brightCyan: 68.1 + brightWhite: 80.3 diff --git a/themes/colorized-theme-1-3--kuroir-light-03-amber.yaml b/themes/colorized-theme-1-3--kuroir-light-03-amber.yaml new file mode 100644 index 00000000..c77c51b3 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-light-03-amber.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Light 03 Amber)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#FEFDFC" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Dark 03 Amber)" + contrast: + fg: 104.9 + black: 100.4 + red: 73.7 + green: 84.1 + yellow: 96.9 + blue: 73.8 + magenta: 73.2 + cyan: 72.7 + white: 70.5 + brightBlack: 80.7 + brightRed: 84.1 + brightGreen: 73.5 + brightYellow: 90.9 + brightBlue: 59.6 + brightMagenta: 58.2 + brightCyan: 62.2 + brightWhite: 56.1 diff --git a/themes/colorized-theme-1-3--kuroir-light-07-fern.yaml b/themes/colorized-theme-1-3--kuroir-light-07-fern.yaml new file mode 100644 index 00000000..33000055 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-light-07-fern.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Light 07 Fern)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#FDFEFC" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Dark 07 Fern)" + contrast: + fg: 105.2 + black: 100.7 + red: 74 + green: 84.4 + yellow: 97.2 + blue: 74.1 + magenta: 73.5 + cyan: 73 + white: 70.8 + brightBlack: 81 + brightRed: 84.4 + brightGreen: 73.8 + brightYellow: 91.2 + brightBlue: 59.9 + brightMagenta: 58.5 + brightCyan: 62.5 + brightWhite: 56.4 diff --git a/themes/colorized-theme-1-3--kuroir-light-09-jade.yaml b/themes/colorized-theme-1-3--kuroir-light-09-jade.yaml new file mode 100644 index 00000000..343a6f51 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-light-09-jade.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Light 09 Jade)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#FDFEFD" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Dark 09 Jade)" + contrast: + fg: 105.3 + black: 100.7 + red: 74 + green: 84.5 + yellow: 97.2 + blue: 74.2 + magenta: 73.5 + cyan: 73 + white: 70.8 + brightBlack: 81 + brightRed: 84.5 + brightGreen: 73.8 + brightYellow: 91.3 + brightBlue: 59.9 + brightMagenta: 58.5 + brightCyan: 62.6 + brightWhite: 56.4 diff --git a/themes/colorized-theme-1-3--kuroir-light-11-aqua.yaml b/themes/colorized-theme-1-3--kuroir-light-11-aqua.yaml new file mode 100644 index 00000000..9a423026 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-light-11-aqua.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Light 11 Aqua)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#FDFEFE" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Dark 11 Aqua)" + contrast: + fg: 105.3 + black: 100.8 + red: 74 + green: 84.5 + yellow: 97.2 + blue: 74.2 + magenta: 73.6 + cyan: 73.1 + white: 70.9 + brightBlack: 81.1 + brightRed: 84.5 + brightGreen: 73.9 + brightYellow: 91.3 + brightBlue: 60 + brightMagenta: 58.6 + brightCyan: 62.6 + brightWhite: 56.5 diff --git a/themes/colorized-theme-1-3--kuroir-light-15-sky.yaml b/themes/colorized-theme-1-3--kuroir-light-15-sky.yaml new file mode 100644 index 00000000..910066e4 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-light-15-sky.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Light 15 Sky)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#FDFDFF" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Dark 15 Sky)" + contrast: + fg: 104.9 + black: 100.4 + red: 73.7 + green: 84.1 + yellow: 96.9 + blue: 73.8 + magenta: 73.2 + cyan: 72.7 + white: 70.5 + brightBlack: 80.7 + brightRed: 84.1 + brightGreen: 73.5 + brightYellow: 90.9 + brightBlue: 59.6 + brightMagenta: 58.2 + brightCyan: 62.2 + brightWhite: 56.1 diff --git a/themes/colorized-theme-1-3--kuroir-light-18-indigo.yaml b/themes/colorized-theme-1-3--kuroir-light-18-indigo.yaml new file mode 100644 index 00000000..156dc987 --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-light-18-indigo.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Light 18 Indigo)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#FDFDFE" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Dark 18 Indigo)" + contrast: + fg: 104.9 + black: 100.3 + red: 73.6 + green: 84.1 + yellow: 96.8 + blue: 73.8 + magenta: 73.2 + cyan: 72.6 + white: 70.4 + brightBlack: 80.6 + brightRed: 84.1 + brightGreen: 73.4 + brightYellow: 90.9 + brightBlue: 59.6 + brightMagenta: 58.2 + brightCyan: 62.2 + brightWhite: 56 diff --git a/themes/colorized-theme-1-3--kuroir-light-19-violet.yaml b/themes/colorized-theme-1-3--kuroir-light-19-violet.yaml new file mode 100644 index 00000000..e8c4103d --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-light-19-violet.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Light 19 Violet)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#FEFDFF" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 105.1 + black: 100.5 + red: 73.8 + green: 84.3 + yellow: 97 + blue: 74 + magenta: 73.3 + cyan: 72.8 + white: 70.6 + brightBlack: 80.8 + brightRed: 84.2 + brightGreen: 73.6 + brightYellow: 91.1 + brightBlue: 59.7 + brightMagenta: 58.3 + brightCyan: 62.4 + brightWhite: 56.2 diff --git a/themes/colorized-theme-1-3--kuroir-light-23-rose.yaml b/themes/colorized-theme-1-3--kuroir-light-23-rose.yaml new file mode 100644 index 00000000..169a975b --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-light-23-rose.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Light 23 Rose)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#FFFDFD" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Dark 23 Rose)" + contrast: + fg: 105.1 + black: 100.5 + red: 73.8 + green: 84.3 + yellow: 97 + blue: 74 + magenta: 73.4 + cyan: 72.8 + white: 70.7 + brightBlack: 80.8 + brightRed: 84.3 + brightGreen: 73.7 + brightYellow: 91.1 + brightBlue: 59.8 + brightMagenta: 58.4 + brightCyan: 62.4 + brightWhite: 56.2 diff --git a/themes/colorized-theme-1-3--kuroir-light-24-coral.yaml b/themes/colorized-theme-1-3--kuroir-light-24-coral.yaml new file mode 100644 index 00000000..8cb6d3aa --- /dev/null +++ b/themes/colorized-theme-1-3--kuroir-light-24-coral.yaml @@ -0,0 +1,53 @@ +name: "Colorized Theme (1/3) (Kuroir Light 24 Coral)" +source: + marketplace_id: "6o8.colorized-theme" + version: "26.0.1" + installs: 369 + rating: 5 + ratings: 6 + author: "6o8" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=6o8.colorized-theme" + formats: null +colors: + bg: "#FFFDFC" + fg: "#000000" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Colorized Theme (1/3) (Kuroir Dark 24 Coral)" + contrast: + fg: 105.1 + black: 100.5 + red: 73.8 + green: 84.3 + yellow: 97 + blue: 74 + magenta: 73.3 + cyan: 72.8 + white: 70.6 + brightBlack: 80.8 + brightRed: 84.2 + brightGreen: 73.6 + brightYellow: 91.1 + brightBlue: 59.7 + brightMagenta: 58.3 + brightCyan: 62.4 + brightWhite: 56.2 diff --git a/themes/colorsbars--colorbars-blue.yaml b/themes/colorsbars--colorbars-blue.yaml new file mode 100644 index 00000000..640bce7e --- /dev/null +++ b/themes/colorsbars--colorbars-blue.yaml @@ -0,0 +1,53 @@ +name: "Colorsbars (Colorbars: blue)" +source: + marketplace_id: "Spring.color-bars" + version: "0.0.1" + installs: 525 + rating: 0 + ratings: 0 + author: "Spring" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" + formats: null +colors: + bg: "#1A1A1F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.4 + cyan: 47.2 + white: 89.6 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/colorsbars--colorbars-green.yaml b/themes/colorsbars--colorbars-green.yaml new file mode 100644 index 00000000..379153c4 --- /dev/null +++ b/themes/colorsbars--colorbars-green.yaml @@ -0,0 +1,53 @@ +name: "Colorsbars (Colorbars: green)" +source: + marketplace_id: "Spring.color-bars" + version: "0.0.1" + installs: 525 + rating: 0 + ratings: 0 + author: "Spring" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" + formats: null +colors: + bg: "#171918" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.3 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.9 diff --git a/themes/colorsbars--colorbars-orange.yaml b/themes/colorsbars--colorbars-orange.yaml new file mode 100644 index 00000000..2afccef4 --- /dev/null +++ b/themes/colorsbars--colorbars-orange.yaml @@ -0,0 +1,53 @@ +name: "Colorsbars (Colorbars: orange)" +source: + marketplace_id: "Spring.color-bars" + version: "0.0.1" + installs: 525 + rating: 0 + ratings: 0 + author: "Spring" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" + formats: null +colors: + bg: "#171313" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.8 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.6 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/colorsbars--colorbars-purple.yaml b/themes/colorsbars--colorbars-purple.yaml new file mode 100644 index 00000000..bf1d0e5a --- /dev/null +++ b/themes/colorsbars--colorbars-purple.yaml @@ -0,0 +1,53 @@ +name: "Colorsbars (Colorbars: purple)" +source: + marketplace_id: "Spring.color-bars" + version: "0.0.1" + installs: 525 + rating: 0 + ratings: 0 + author: "Spring" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Spring.color-bars" + formats: null +colors: + bg: "#110E10" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.1 + black: 0 + red: 27.4 + green: 53.6 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.7 diff --git a/themes/colorways-themes.yaml b/themes/colorways-themes.yaml new file mode 100644 index 00000000..da615be7 --- /dev/null +++ b/themes/colorways-themes.yaml @@ -0,0 +1,53 @@ +name: "Colorways Themes" +source: + marketplace_id: "Franthormel.colorways" + version: "0.2.1" + installs: 1012 + rating: 0 + ratings: 0 + author: "Franthormel" + repo: "https://github.com/franthormel/colorways-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Franthormel.colorways" + formats: null +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#414141" + red: "#D73A49" + green: "#90D259" + yellow: "#F7C400" + blue: "#005CC5" + magenta: "#FF73FD" + cyan: "#0BC7D7" + white: "#BFBFBF" + brightBlack: "#989898" + brightRed: "#FA6F71" + brightGreen: "#35D61C" + brightYellow: "#FFCA39" + brightBlue: "#1C23D6" + brightMagenta: "#FF00FF" + brightCyan: "#3CD7E7" + brightWhite: "#E0E0E0" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.5 + black: 93.7 + red: 70.4 + green: 33.8 + yellow: 28 + blue: 80.5 + magenta: 44.7 + cyan: 39.7 + white: 34.5 + brightBlack: 55.1 + brightRed: 52.8 + brightGreen: 36.7 + brightYellow: 24.2 + brightBlue: 89.6 + brightMagenta: 55.6 + brightCyan: 31.2 + brightWhite: 15.8 diff --git a/themes/columbina-theme-genshin-impact--columbina-high-contrast.yaml b/themes/columbina-theme-genshin-impact--columbina-high-contrast.yaml new file mode 100644 index 00000000..95110bd3 --- /dev/null +++ b/themes/columbina-theme-genshin-impact--columbina-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "columbina theme - genshin impact (Columbina - High Contrast)" +source: + marketplace_id: "frostmoon-dev.columbina-theme" + version: "0.0.2" + installs: 236 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/columbina-theme" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.columbina-theme" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF91AB" + green: "#85D8DA" + yellow: "#FFD8B5" + blue: "#A8DCF5" + magenta: "#F5A7E0" + cyan: "#C0E8FF" + white: "#FFFFFF" + brightBlack: "#8A8598" + brightRed: "#FFAAC0" + brightGreen: "#A0F0F2" + brightYellow: "#FFE8CA" + brightBlue: "#C0E8FF" + brightMagenta: "#FFBCF0" + brightCyan: "#DAF5FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 60.9 + green: 74.7 + yellow: 87.2 + blue: 80.8 + magenta: 68.5 + cyan: 89.2 + white: 107.9 + brightBlack: 38.4 + brightRed: 69.8 + brightGreen: 89.4 + brightYellow: 95 + brightBlue: 89.2 + brightMagenta: 78.6 + brightCyan: 98.3 + brightWhite: 107.9 diff --git a/themes/community-material-theme--community-material-theme-darker-high-contrast.yaml b/themes/community-material-theme--community-material-theme-darker-high-contrast.yaml new file mode 100644 index 00000000..349828e4 --- /dev/null +++ b/themes/community-material-theme--community-material-theme-darker-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Community Material Theme (Community-Material-Theme-Darker-High-Contrast)" +source: + marketplace_id: "Equinusocio.vsc-community-material-theme" + version: "1.4.7" + installs: 3728631 + rating: 4.8 + ratings: 10 + author: "Material Theme" + repo: "https://github.com/material-theme/vsc-community-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" + formats: null +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 42.4 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 9.7 + brightRed: 42.4 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/community-material-theme--community-material-theme-darker.yaml b/themes/community-material-theme--community-material-theme-darker.yaml new file mode 100644 index 00000000..76d1056e --- /dev/null +++ b/themes/community-material-theme--community-material-theme-darker.yaml @@ -0,0 +1,53 @@ +name: "Community Material Theme (Community-Material-Theme-Darker)" +source: + marketplace_id: "Equinusocio.vsc-community-material-theme" + version: "1.4.7" + installs: 3728631 + rating: 4.8 + ratings: 10 + author: "Material Theme" + repo: "https://github.com/material-theme/vsc-community-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" + formats: null +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#545454" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 42.4 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 13.5 + brightRed: 42.4 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/community-material-theme--community-material-theme-default.yaml b/themes/community-material-theme--community-material-theme-default.yaml new file mode 100644 index 00000000..d81aceec --- /dev/null +++ b/themes/community-material-theme--community-material-theme-default.yaml @@ -0,0 +1,53 @@ +name: "Community Material Theme (Community-Material-Theme-Default)" +source: + marketplace_id: "Equinusocio.vsc-community-material-theme" + version: "1.4.7" + installs: 3728631 + rating: 4.8 + ratings: 10 + author: "Material Theme" + repo: "https://github.com/material-theme/vsc-community-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" + formats: null +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 230 + pair: null + contrast: + fg: 100.4 + black: 0 + red: 39.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 102.7 + brightBlack: 19.7 + brightRed: 39.4 + brightGreen: 80 + brightYellow: 74.7 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/community-material-theme--community-material-theme-lighter-high-contrast.yaml b/themes/community-material-theme--community-material-theme-lighter-high-contrast.yaml new file mode 100644 index 00000000..4895c7f0 --- /dev/null +++ b/themes/community-material-theme--community-material-theme-lighter-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Community Material Theme (Community-Material-Theme-Lighter-High-Contrast)" +source: + marketplace_id: "Equinusocio.vsc-community-material-theme" + version: "1.4.7" + installs: 3728631 + rating: 4.8 + ratings: 10 + author: "Material Theme" + repo: "https://github.com/material-theme/vsc-community-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#90A4AE" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 50.6 + black: 106 + red: 67.7 + green: 44.9 + yellow: 31.7 + blue: 66.3 + magenta: 72.6 + cyan: 51.8 + white: 0 + brightBlack: 50.6 + brightRed: 67.7 + brightGreen: 44.9 + brightYellow: 31.7 + brightBlue: 66.3 + brightMagenta: 72.6 + brightCyan: 51.8 + brightWhite: 0 diff --git a/themes/community-material-theme--community-material-theme-lighter.yaml b/themes/community-material-theme--community-material-theme-lighter.yaml new file mode 100644 index 00000000..86965fd0 --- /dev/null +++ b/themes/community-material-theme--community-material-theme-lighter.yaml @@ -0,0 +1,53 @@ +name: "Community Material Theme (Community-Material-Theme-Lighter)" +source: + marketplace_id: "Equinusocio.vsc-community-material-theme" + version: "1.4.7" + installs: 3728631 + rating: 4.8 + ratings: 10 + author: "Material Theme" + repo: "https://github.com/material-theme/vsc-community-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" + formats: null +colors: + bg: "#FAFAFA" + fg: "#90A4AE" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 47.6 + black: 103 + red: 64.7 + green: 41.9 + yellow: 28.7 + blue: 63.3 + magenta: 69.6 + cyan: 48.8 + white: 0 + brightBlack: 47.6 + brightRed: 64.7 + brightGreen: 41.9 + brightYellow: 28.7 + brightBlue: 63.3 + brightMagenta: 69.6 + brightCyan: 48.8 + brightWhite: 0 diff --git a/themes/community-material-theme--community-material-theme-ocean.yaml b/themes/community-material-theme--community-material-theme-ocean.yaml new file mode 100644 index 00000000..9ad6b1d4 --- /dev/null +++ b/themes/community-material-theme--community-material-theme-ocean.yaml @@ -0,0 +1,53 @@ +name: "Community Material Theme (Community-Material-Theme-Ocean)" +source: + marketplace_id: "Equinusocio.vsc-community-material-theme" + version: "1.4.7" + installs: 3728631 + rating: 4.8 + ratings: 10 + author: "Material Theme" + repo: "https://github.com/material-theme/vsc-community-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" + formats: null +colors: + bg: "#0F111A" + fg: "#8F93A2" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + pair: null + contrast: + fg: 43.7 + black: 0 + red: 44.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 44.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/community-material-theme--community-material-theme-palenight.yaml b/themes/community-material-theme--community-material-theme-palenight.yaml new file mode 100644 index 00000000..a90595cf --- /dev/null +++ b/themes/community-material-theme--community-material-theme-palenight.yaml @@ -0,0 +1,53 @@ +name: "Community Material Theme (Community-Material-Theme-Palenight)" +source: + marketplace_id: "Equinusocio.vsc-community-material-theme" + version: "1.4.7" + installs: 3728631 + rating: 4.8 + ratings: 10 + author: "Material Theme" + repo: "https://github.com/material-theme/vsc-community-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme" + formats: null +colors: + bg: "#292D3E" + fg: "#A6ACCD" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + pair: null + contrast: + fg: 53.5 + black: 0 + red: 40 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 40 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/compact-vs-code--perry-the-platypus.yaml b/themes/compact-vs-code--perry-the-platypus.yaml new file mode 100644 index 00000000..3327d1a7 --- /dev/null +++ b/themes/compact-vs-code--perry-the-platypus.yaml @@ -0,0 +1,53 @@ +name: "Compact VS Code (Perry-the-platypus)" +source: + marketplace_id: "ArkaBanerjee.compact-vs-code" + version: "1.1.1" + installs: 108 + rating: 0 + ratings: 0 + author: "Arka Banerjee" + repo: "https://github.com/thearkabanerjee/Compact-VS-Code" + url: "https://marketplace.visualstudio.com/items?itemName=ArkaBanerjee.compact-vs-code" + formats: null +colors: + bg: "#131A26" + fg: "#B3BAC8" + black: "#212121" + red: "#FF5252" + green: "#8BC34A" + yellow: "#FFCA28" + blue: "#00BCD4" + magenta: "#AA00FF" + cyan: "#00E5FF" + white: "#E0E0E0" + brightBlack: "#616161" + brightRed: "#FF8A80" + brightGreen: "#C6FF00" + brightYellow: "#FFE082" + brightBlue: "#80D8FF" + brightMagenta: "#EA80FC" + brightCyan: "#84FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 261 + pair: null + contrast: + fg: 63.6 + black: 0 + red: 42.5 + green: 60 + yellow: 77.5 + blue: 56.2 + magenta: 28.1 + cyan: 77.7 + white: 86.6 + brightBlack: 19.6 + brightRed: 56.2 + brightGreen: 94.2 + brightYellow: 88 + brightBlue: 75 + brightMagenta: 55.1 + brightCyan: 94.2 + brightWhite: 106.6 diff --git a/themes/compline--compline.yaml b/themes/compline--compline.yaml new file mode 100644 index 00000000..501647bb --- /dev/null +++ b/themes/compline--compline.yaml @@ -0,0 +1,58 @@ +name: "Compline (Compline)" +source: + marketplace_id: "rivethorn.compline" + version: "1.0.1" + installs: 550 + rating: 5 + ratings: 1 + author: "Rivethorn" + repo: "https://github.com/jblais493/compline" + url: "https://marketplace.visualstudio.com/items?itemName=rivethorn.compline" + formats: + ghostty: "https://raw.githubusercontent.com/jblais493/compline/main/ghostty/README.md" + alacritty: "https://raw.githubusercontent.com/jblais493/compline/main/alacritty/compline.toml" + kitty: "https://raw.githubusercontent.com/jblais493/compline/main/kitty/kitty.conf" + windows-terminal: "https://raw.githubusercontent.com/jblais493/compline/main/windows-terminal/scheme.json" + sublime: "https://raw.githubusercontent.com/jblais493/compline/main/bat/themes/compline.tmTheme" +colors: + bg: "#1A1D21" + fg: "#F0EFEB" + black: "#22262B" + red: "#CDACAC" + green: "#B8C4B8" + yellow: "#D4CCB4" + blue: "#B4BCC4" + magenta: "#CCC4B4" + cyan: "#B4C0C8" + white: "#8B919A" + brightBlack: "#515761" + brightRed: "#CDACAC" + brightGreen: "#B8C4B8" + brightYellow: "#D4CCB4" + brightBlue: "#B4BCC4" + brightMagenta: "#CCC4B4" + brightCyan: "#B4C0C8" + brightWhite: "#E0DCD4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.7 + black: 0 + red: 60 + green: 67.3 + yellow: 74.1 + blue: 64 + magenta: 69.7 + cyan: 65.9 + white: 41.1 + brightBlack: 15.1 + brightRed: 60 + brightGreen: 67.3 + brightYellow: 74.1 + brightBlue: 64 + brightMagenta: 69.7 + brightCyan: 65.9 + brightWhite: 83.9 diff --git a/themes/compline--lauds.yaml b/themes/compline--lauds.yaml new file mode 100644 index 00000000..bda208e5 --- /dev/null +++ b/themes/compline--lauds.yaml @@ -0,0 +1,58 @@ +name: "Compline (Lauds)" +source: + marketplace_id: "rivethorn.compline" + version: "1.0.1" + installs: 550 + rating: 5 + ratings: 1 + author: "Rivethorn" + repo: "https://github.com/jblais493/compline" + url: "https://marketplace.visualstudio.com/items?itemName=rivethorn.compline" + formats: + ghostty: "https://raw.githubusercontent.com/jblais493/compline/main/ghostty/README.md" + alacritty: "https://raw.githubusercontent.com/jblais493/compline/main/alacritty/compline.toml" + kitty: "https://raw.githubusercontent.com/jblais493/compline/main/kitty/kitty.conf" + windows-terminal: "https://raw.githubusercontent.com/jblais493/compline/main/windows-terminal/scheme.json" + sublime: "https://raw.githubusercontent.com/jblais493/compline/main/bat/themes/compline.tmTheme" +colors: + bg: "#F0EFEB" + fg: "#1A1D21" + black: "#5F5C58" + red: "#8B6666" + green: "#5A6B5A" + yellow: "#8B7E52" + blue: "#5A6B7A" + magenta: "#8B7E52" + cyan: "#64757D" + white: "#7D7A75" + brightBlack: "#9B9894" + brightRed: "#8B6666" + brightGreen: "#5A6B5A" + brightYellow: "#8B7E52" + brightBlue: "#5A6B7A" + brightMagenta: "#8B7E52" + brightCyan: "#64757D" + brightWhite: "#2D2A27" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 94.3 + black: 73.3 + red: 65.1 + green: 69 + yellow: 58 + blue: 67.9 + magenta: 58 + cyan: 63.7 + white: 60 + brightBlack: 45.4 + brightRed: 65.1 + brightGreen: 69 + brightYellow: 58 + brightBlue: 67.9 + brightMagenta: 58 + brightCyan: 63.7 + brightWhite: 91.5 diff --git a/themes/conifer-theme--conifer-theme.yaml b/themes/conifer-theme--conifer-theme.yaml new file mode 100644 index 00000000..7596465c --- /dev/null +++ b/themes/conifer-theme--conifer-theme.yaml @@ -0,0 +1,53 @@ +name: "Conifer Theme (Conifer Theme)" +source: + marketplace_id: "imalbert.conifer-theme" + version: "2.4.3" + installs: 1381 + rating: 5 + ratings: 3 + author: "imalbert" + repo: "https://github.com/imalbert/conifer-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=imalbert.conifer-theme" + formats: null +colors: + bg: "#292929" + fg: "#A7BEB1" + black: "#292929" + red: "#C1918B" + green: "#8BC191" + yellow: "#A59F5D" + blue: "#A7BEB1" + magenta: "#C18BBB" + cyan: "#A59F5D" + white: "#A7BEB1" + brightBlack: "#6D8571" + brightRed: "#C1918B" + brightGreen: "#8BC191" + brightYellow: "#A59F5D" + brightBlue: "#A7BEB1" + brightMagenta: "#C18BBB" + brightCyan: "#A59F5D" + brightWhite: "#A7BEB1" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 60.7 + black: 0 + red: 45.4 + green: 58.3 + yellow: 45.5 + blue: 60.7 + magenta: 45.4 + cyan: 45.5 + white: 60.7 + brightBlack: 30.7 + brightRed: 45.4 + brightGreen: 58.3 + brightYellow: 45.5 + brightBlue: 60.7 + brightMagenta: 45.4 + brightCyan: 45.5 + brightWhite: 60.7 diff --git a/themes/conifer-theme--mist-theme.yaml b/themes/conifer-theme--mist-theme.yaml new file mode 100644 index 00000000..432c566b --- /dev/null +++ b/themes/conifer-theme--mist-theme.yaml @@ -0,0 +1,53 @@ +name: "Conifer Theme (Mist Theme)" +source: + marketplace_id: "imalbert.conifer-theme" + version: "2.4.3" + installs: 1381 + rating: 5 + ratings: 3 + author: "imalbert" + repo: "https://github.com/imalbert/conifer-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=imalbert.conifer-theme" + formats: null +colors: + bg: "#36424C" + fg: "#C4CFD3" + black: "#44535F" + red: "#C96E54" + green: "#57B2B0" + yellow: "#57B2B0" + blue: "#95A8B1" + magenta: "#C4CFD4" + cyan: "#57B2B0" + white: "#C4CFD3" + brightBlack: "#C4CFD3" + brightRed: "#C96E54" + brightGreen: "#57B2B0" + brightYellow: "#57B2B0" + brightBlue: "#95A8B1" + brightMagenta: "#C4CFD4" + brightCyan: "#6AC8BF" + brightWhite: "#9FDCD5" +meta: + mode: "dark" + accent: "orange" + hue: 244 + pair: null + contrast: + fg: 66.3 + black: 0 + red: 28.5 + green: 43.1 + yellow: 43.1 + blue: 43.5 + magenta: 66.4 + cyan: 43.1 + white: 66.3 + brightBlack: 66.3 + brightRed: 28.5 + brightGreen: 43.1 + brightYellow: 43.1 + brightBlue: 43.5 + brightMagenta: 66.4 + brightCyan: 54.5 + brightWhite: 68.4 diff --git a/themes/conifer-theme--pine-cone-theme.yaml b/themes/conifer-theme--pine-cone-theme.yaml new file mode 100644 index 00000000..5c082e69 --- /dev/null +++ b/themes/conifer-theme--pine-cone-theme.yaml @@ -0,0 +1,53 @@ +name: "Conifer Theme (Pine Cone Theme)" +source: + marketplace_id: "imalbert.conifer-theme" + version: "2.4.3" + installs: 1381 + rating: 5 + ratings: 3 + author: "imalbert" + repo: "https://github.com/imalbert/conifer-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=imalbert.conifer-theme" + formats: null +colors: + bg: "#232922" + fg: "#D3D9D2" + black: "#2E352C" + red: "#A96E55" + green: "#BCBC62" + yellow: "#BCBC62" + blue: "#889985" + magenta: "#D3D9D3" + cyan: "#BCBC62" + white: "#D3D9D2" + brightBlack: "#D3D9D2" + brightRed: "#A96E55" + brightGreen: "#BCBC62" + brightYellow: "#BCBC62" + brightBlue: "#889985" + brightMagenta: "#D3D9D3" + brightCyan: "#C5C581" + brightWhite: "#EBDFC1" +meta: + mode: "dark" + accent: "green" + hue: 141 + pair: null + contrast: + fg: 79.1 + black: 0 + red: 29.9 + green: 60.4 + yellow: 60.4 + blue: 41.4 + magenta: 79.2 + cyan: 60.4 + white: 79.1 + brightBlack: 79.1 + brightRed: 29.9 + brightGreen: 60.4 + brightYellow: 60.4 + brightBlue: 41.4 + brightMagenta: 79.2 + brightCyan: 66 + brightWhite: 84.4 diff --git a/themes/cool-cowboy-theme--cowboy-theme.yaml b/themes/cool-cowboy-theme--cowboy-theme.yaml new file mode 100644 index 00000000..8f22580e --- /dev/null +++ b/themes/cool-cowboy-theme--cowboy-theme.yaml @@ -0,0 +1,53 @@ +name: "Cool Cowboy Theme (Cowboy Theme)" +source: + marketplace_id: "lulu-rijpkema.cool-cowboy-theme" + version: "0.2.0" + installs: 898 + rating: 5 + ratings: 3 + author: "LRijpkema" + repo: "https://github.com/LRijpkema/cool-cowboy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lulu-rijpkema.cool-cowboy-theme" + formats: null +colors: + bg: "#1D1A23" + fg: "#E1DFE5" + black: "#1D1A23" + red: "#A25A63" + green: "#708B91" + yellow: "#BFA481" + blue: "#7790A8" + magenta: "#8D88B6" + cyan: "#2C8585" + white: "#918A9F" + brightBlack: "#746B84" + brightRed: "#E16F6F" + brightGreen: "#6BC46D" + brightYellow: "#F0BF5E" + brightBlue: "#6C9EDD" + brightMagenta: "#A48ADE" + brightCyan: "#4EB1B1" + brightWhite: "#E1DFE5" +meta: + mode: "dark" + accent: "green" + hue: 300 + pair: null + contrast: + fg: 86.3 + black: 0 + red: 25.7 + green: 36.3 + yellow: 53.7 + blue: 39.7 + magenta: 39.6 + cyan: 30.1 + white: 39.7 + brightBlack: 25.5 + brightRed: 42.3 + brightGreen: 58.6 + brightYellow: 70.9 + brightBlue: 47 + brightMagenta: 45.2 + brightCyan: 50.8 + brightWhite: 86.3 diff --git a/themes/cool-girls-theme.yaml b/themes/cool-girls-theme.yaml new file mode 100644 index 00000000..75bb80b6 --- /dev/null +++ b/themes/cool-girls-theme.yaml @@ -0,0 +1,53 @@ +name: "Cool-girls-theme" +source: + marketplace_id: "suwanqing.girls-theme" + version: "0.0.2" + installs: 5263 + rating: 5 + ratings: 2 + author: "suwanqing" + repo: "https://github.com/sususususususs/girls-theme" + url: "https://marketplace.visualstudio.com/items?itemName=suwanqing.girls-theme" + formats: null +colors: + bg: "#123555" + fg: "#E1EED2" + black: "#353551" + red: "#E34F8C" + green: "#FEADA6" + yellow: "#F8C275" + blue: "#C7ADFB" + magenta: "#FF69B4" + cyan: "#24E8D8" + white: "#FBD3E1" + brightBlack: "#919CB9" + brightRed: "#F36F89" + brightGreen: "#AFFA90" + brightYellow: "#F8C275" + brightBlue: "#74D6E9" + brightMagenta: "#F799C7" + brightCyan: "#8DF9F9" + brightWhite: "#D7D6DF" +meta: + mode: "dark" + accent: "red" + hue: 249 + pair: null + contrast: + fg: 87.7 + black: 0 + red: 32.5 + green: 63.6 + yellow: 69.2 + blue: 59 + magenta: 45 + cyan: 72.6 + white: 80.1 + brightBlack: 42.7 + brightRed: 42.1 + brightGreen: 86 + brightYellow: 69.2 + brightBlue: 67.3 + brightMagenta: 56.9 + brightCyan: 86.6 + brightWhite: 76.1 diff --git a/themes/coolnight-theme.yaml b/themes/coolnight-theme.yaml new file mode 100644 index 00000000..e00017d9 --- /dev/null +++ b/themes/coolnight-theme.yaml @@ -0,0 +1,53 @@ +name: "Coolnight Theme" +source: + marketplace_id: "kpatdev.coolnight-theme" + version: "0.1.1" + installs: 157 + rating: 0 + ratings: 0 + author: "kpatdev" + repo: "https://github.com/kpatdev/coolnight" + url: "https://marketplace.visualstudio.com/items?itemName=kpatdev.coolnight-theme" + formats: null +colors: + bg: "#011423" + fg: "#CBE0F0" + black: "#214969" + red: "#E52E2E" + green: "#44FFB1" + yellow: "#FFE073" + blue: "#0FC5ED" + magenta: "#A277FF" + cyan: "#24EAF7" + white: "#24EAF7" + brightBlack: "#214969" + brightRed: "#E52E2E" + brightGreen: "#44FFB1" + brightYellow: "#FFE073" + brightBlue: "#A277FF" + brightMagenta: "#A277FF" + brightCyan: "#24EAF7" + brightWhite: "#24EAF7" +meta: + mode: "dark" + accent: "orange" + hue: 242 + pair: null + contrast: + fg: 85.3 + black: 10 + red: 32.1 + green: 88.9 + yellow: 88.3 + blue: 62.2 + magenta: 42.4 + cyan: 80.5 + white: 80.5 + brightBlack: 10 + brightRed: 32.1 + brightGreen: 88.9 + brightYellow: 88.3 + brightBlue: 42.4 + brightMagenta: 42.4 + brightCyan: 80.5 + brightWhite: 80.5 diff --git a/themes/cosmic-gleam.yaml b/themes/cosmic-gleam.yaml new file mode 100644 index 00000000..161037e2 --- /dev/null +++ b/themes/cosmic-gleam.yaml @@ -0,0 +1,53 @@ +name: "Cosmic Gleam" +source: + marketplace_id: "srshah.cosmic-gleam" + version: "4.4.0" + installs: 1417 + rating: 5 + ratings: 4 + author: "Snehil Shah" + repo: "https://github.com/snehilshah/cosmic-gleam" + url: "https://marketplace.visualstudio.com/items?itemName=srshah.cosmic-gleam" + formats: null +colors: + bg: "#000000" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#A6ADC8" + brightBlack: "#585B70" + brightRed: "#F37799" + brightGreen: "#89D88B" + brightYellow: "#EBD391" + brightBlue: "#74A8FC" + brightMagenta: "#F2AEDE" + brightCyan: "#6BD7CA" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 82 + black: 11.3 + red: 56.7 + green: 80.4 + yellow: 90.5 + blue: 61.1 + magenta: 78.7 + cyan: 80.3 + white: 58.3 + brightBlack: 18.9 + brightRed: 50.7 + brightGreen: 72.1 + brightYellow: 80.9 + brightBlue: 54.9 + brightMagenta: 70.3 + brightCyan: 71.9 + brightWhite: 70.1 diff --git a/themes/cosmic-pop-dark.yaml b/themes/cosmic-pop-dark.yaml new file mode 100644 index 00000000..f17fb09d --- /dev/null +++ b/themes/cosmic-pop-dark.yaml @@ -0,0 +1,53 @@ +name: "Cosmic Pop Dark" +source: + marketplace_id: "Feiron.cosmic-pop-dark" + version: "0.1.1" + installs: 815 + rating: 5 + ratings: 1 + author: "Feiron" + repo: "https://github.com/pawelrogowski/cosmic-pop-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Feiron.cosmic-pop-dark" + formats: null +colors: + bg: "#262626" + fg: "#A0A4A5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 49.5 + black: 0 + red: 24.6 + green: 50.9 + yellow: 83.5 + blue: 25.3 + magenta: 27.7 + cyan: 45.5 + white: 104.8 + brightBlack: 20 + brightRed: 36.5 + brightGreen: 61.5 + brightYellow: 93.6 + brightBlue: 37.9 + brightMagenta: 43.3 + brightCyan: 53.3 + brightWhite: 87.9 diff --git a/themes/cosmo-theme.yaml b/themes/cosmo-theme.yaml new file mode 100644 index 00000000..59c52bd5 --- /dev/null +++ b/themes/cosmo-theme.yaml @@ -0,0 +1,53 @@ +name: "COSMO Theme" +source: + marketplace_id: "sociale11.cosmo" + version: "0.1.4" + installs: 41 + rating: 5 + ratings: 1 + author: "Sociale11" + repo: "https://github.com/sociale11/vscode-cosmo" + url: "https://marketplace.visualstudio.com/items?itemName=sociale11.cosmo" + formats: null +colors: + bg: "#161B25" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#B39C4D" + blue: "#B39C4D" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#B39C4D" + brightBlue: "#B39C4D" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 58.9 + black: 0 + red: 41.6 + green: 61.8 + yellow: 48.1 + blue: 48.1 + magenta: 44.7 + cyan: 54.1 + white: 82.6 + brightBlack: 35.1 + brightRed: 38 + brightGreen: 61.8 + brightYellow: 48.1 + brightBlue: 48.1 + brightMagenta: 12.3 + brightCyan: 54.1 + brightWhite: 82.6 diff --git a/themes/cosy-orange-themes.yaml b/themes/cosy-orange-themes.yaml new file mode 100644 index 00000000..dd8cb453 --- /dev/null +++ b/themes/cosy-orange-themes.yaml @@ -0,0 +1,53 @@ +name: "Cosy Orange Themes" +source: + marketplace_id: "btarg.cosy-orange-theme" + version: "1.3.0" + installs: 709 + rating: 3.5 + ratings: 2 + author: "btarg" + repo: "https://github.com/btarg/vscode-cosy-orange-theme" + url: "https://marketplace.visualstudio.com/items?itemName=btarg.cosy-orange-theme" + formats: null +colors: + bg: "#252221" + fg: "#A89C8A" + black: "#252221" + red: "#C65F5F" + green: "#859E82" + yellow: "#D9B27C" + blue: "#728797" + magenta: "#998396" + cyan: "#829E9B" + white: "#C8BAA4" + brightBlack: "#3D3837" + brightRed: "#D87575" + brightGreen: "#9AB598" + brightYellow: "#E5C592" + brightBlue: "#88A0B0" + brightMagenta: "#B099AC" + brightCyan: "#98B5B1" + brightWhite: "#D1C6B4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 47 + black: 0 + red: 32 + green: 43.8 + yellow: 61.7 + blue: 34.3 + magenta: 36.9 + cyan: 44.4 + white: 63.6 + brightBlack: 0 + brightRed: 41.3 + brightGreen: 55.8 + brightYellow: 71.7 + brightBlue: 46.6 + brightMagenta: 48.2 + brightCyan: 56.5 + brightWhite: 70.3 diff --git a/themes/cr-theme-night.yaml b/themes/cr-theme-night.yaml new file mode 100644 index 00000000..6424289d --- /dev/null +++ b/themes/cr-theme-night.yaml @@ -0,0 +1,53 @@ +name: "cr-theme-night" +source: + marketplace_id: "carcruz.cr-theme-night" + version: "0.0.1" + installs: 138 + rating: 0 + ratings: 0 + author: "carcruz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=carcruz.cr-theme-night" + formats: null +colors: + bg: "#1D1D1D" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.2 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/crf-flamengo-theme.yaml b/themes/crf-flamengo-theme.yaml new file mode 100644 index 00000000..8d9de427 --- /dev/null +++ b/themes/crf-flamengo-theme.yaml @@ -0,0 +1,53 @@ +name: "crf-flamengo-theme" +source: + marketplace_id: "crf-flamengo-theme.crf-flamengo-theme" + version: "0.0.1" + installs: 259 + rating: 5 + ratings: 1 + author: "crf-flamengo-theme" + repo: "https://keoxcoelho@dev.azure.com/keoxcoelho/VSC_Themes/_git/VSC_Themes" + url: "https://marketplace.visualstudio.com/items?itemName=crf-flamengo-theme.crf-flamengo-theme" + formats: null +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#868686" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#474747" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 37.6 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 10.9 diff --git a/themes/crow--crow-dark.yaml b/themes/crow--crow-dark.yaml new file mode 100644 index 00000000..b145c47c --- /dev/null +++ b/themes/crow--crow-dark.yaml @@ -0,0 +1,53 @@ +name: "Crow (Crow Dark)" +source: + marketplace_id: "codejockie.crow" + version: "0.1.1" + installs: 1140 + rating: 5 + ratings: 3 + author: "John Kennedy" + repo: "https://github.com/codejockie/crow-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=codejockie.crow" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF8585" + green: "#87C591" + yellow: "#F3D09B" + blue: "#70B8FF" + magenta: "#AEA3FF" + cyan: "#9EE0E0" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF8585" + brightGreen: "#87C591" + brightYellow: "#F3D09B" + brightBlue: "#70B8FF" + brightMagenta: "#AEA3FF" + brightCyan: "#9EE0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 56.2 + green: 63.4 + yellow: 81.2 + blue: 61.3 + magenta: 58.6 + cyan: 80.7 + white: 107.9 + brightBlack: 0 + brightRed: 56.2 + brightGreen: 63.4 + brightYellow: 81.2 + brightBlue: 61.3 + brightMagenta: 58.6 + brightCyan: 80.7 + brightWhite: 107.9 diff --git a/themes/crt-themes--crt-64.yaml b/themes/crt-themes--crt-64.yaml new file mode 100644 index 00000000..0955535d --- /dev/null +++ b/themes/crt-themes--crt-64.yaml @@ -0,0 +1,53 @@ +name: "CRT Themes (CRT 64)" +source: + marketplace_id: "krueger71.crt-themes" + version: "0.5.2" + installs: 38260 + rating: 5 + ratings: 9 + author: "krueger71" + repo: "https://github.com/krueger71/crt-themes" + url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" + formats: null +colors: + bg: "#352879" + fg: "#6C5EB5" + black: "#6C5EB5" + red: "#5D50A5" + green: "#6153A9" + yellow: "#56489D" + blue: "#685AB1" + magenta: "#6557AD" + cyan: "#5A4CA1" + white: "#524599" + brightBlack: "#6C5EB5" + brightRed: "#5D50A5" + brightGreen: "#6153A9" + brightYellow: "#56489D" + brightBlue: "#685AB1" + brightMagenta: "#6557AD" + brightCyan: "#5A4CA1" + brightWhite: "#524599" +meta: + mode: "dark" + accent: "magenta" + hue: 284 + pair: null + contrast: + fg: 18.1 + black: 18.1 + red: 12.2 + green: 13.5 + yellow: 9.3 + blue: 16.4 + magenta: 15.1 + cyan: 10.8 + white: 8 + brightBlack: 18.1 + brightRed: 12.2 + brightGreen: 13.5 + brightYellow: 9.3 + brightBlue: 16.4 + brightMagenta: 15.1 + brightCyan: 10.8 + brightWhite: 8 diff --git a/themes/crt-themes--crt-amber.yaml b/themes/crt-themes--crt-amber.yaml new file mode 100644 index 00000000..4dc2a12b --- /dev/null +++ b/themes/crt-themes--crt-amber.yaml @@ -0,0 +1,53 @@ +name: "CRT Themes (CRT Amber)" +source: + marketplace_id: "krueger71.crt-themes" + version: "0.5.2" + installs: 38260 + rating: 5 + ratings: 9 + author: "krueger71" + repo: "https://github.com/krueger71/crt-themes" + url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" + formats: null +colors: + bg: "#111111" + fg: "#FFB000" + black: "#FFB000" + red: "#C08605" + green: "#CF9003" + yellow: "#A07007" + blue: "#EFA501" + magenta: "#DF9B02" + cyan: "#B07B06" + white: "#906608" + brightBlack: "#FFB000" + brightRed: "#C08605" + brightGreen: "#CF9003" + brightYellow: "#A07007" + brightBlue: "#EFA501" + brightMagenta: "#DF9B02" + brightCyan: "#B07B06" + brightWhite: "#906608" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 68.1 + black: 68.1 + red: 42.9 + green: 48.6 + yellow: 31.2 + blue: 61.3 + magenta: 55 + cyan: 36.9 + white: 26.1 + brightBlack: 68.1 + brightRed: 42.9 + brightGreen: 48.6 + brightYellow: 31.2 + brightBlue: 61.3 + brightMagenta: 55 + brightCyan: 36.9 + brightWhite: 26.1 diff --git a/themes/crt-themes--crt-blue.yaml b/themes/crt-themes--crt-blue.yaml new file mode 100644 index 00000000..c4370e1f --- /dev/null +++ b/themes/crt-themes--crt-blue.yaml @@ -0,0 +1,53 @@ +name: "CRT Themes (CRT Blue)" +source: + marketplace_id: "krueger71.crt-themes" + version: "0.5.2" + installs: 38260 + rating: 5 + ratings: 9 + author: "krueger71" + repo: "https://github.com/krueger71/crt-themes" + url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" + formats: null +colors: + bg: "#111111" + fg: "#0099FF" + black: "#0099FF" + red: "#0575C0" + green: "#037ECF" + yellow: "#0763A0" + blue: "#0190EF" + magenta: "#0287DF" + cyan: "#066CB0" + white: "#085A90" + brightBlack: "#0099FF" + brightRed: "#0575C0" + brightGreen: "#037ECF" + brightYellow: "#0763A0" + brightBlue: "#0190EF" + brightMagenta: "#0287DF" + brightCyan: "#066CB0" + brightWhite: "#085A90" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 45.4 + black: 45.4 + red: 28.1 + green: 32.1 + yellow: 20.3 + blue: 40.8 + magenta: 36.4 + cyan: 24.1 + white: 16.7 + brightBlack: 45.4 + brightRed: 28.1 + brightGreen: 32.1 + brightYellow: 20.3 + brightBlue: 40.8 + brightMagenta: 36.4 + brightCyan: 24.1 + brightWhite: 16.7 diff --git a/themes/crt-themes--crt-green.yaml b/themes/crt-themes--crt-green.yaml new file mode 100644 index 00000000..1c0c01b2 --- /dev/null +++ b/themes/crt-themes--crt-green.yaml @@ -0,0 +1,53 @@ +name: "CRT Themes (CRT Green)" +source: + marketplace_id: "krueger71.crt-themes" + version: "0.5.2" + installs: 38260 + rating: 5 + ratings: 9 + author: "krueger71" + repo: "https://github.com/krueger71/crt-themes" + url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" + formats: null +colors: + bg: "#111111" + fg: "#33FF00" + black: "#33FF00" + red: "#2AC005" + green: "#2CCF03" + yellow: "#25A007" + blue: "#31EF01" + magenta: "#2EDF02" + cyan: "#28B006" + white: "#239008" + brightBlack: "#33FF00" + brightRed: "#2AC005" + brightGreen: "#2CCF03" + brightYellow: "#25A007" + brightBlue: "#31EF01" + brightMagenta: "#2EDF02" + brightCyan: "#28B006" + brightWhite: "#239008" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 86.3 + black: 86.3 + red: 54.4 + green: 61.6 + yellow: 39.9 + blue: 77.8 + magenta: 69.5 + cyan: 47 + white: 33.2 + brightBlack: 86.3 + brightRed: 54.4 + brightGreen: 61.6 + brightYellow: 39.9 + brightBlue: 77.8 + brightMagenta: 69.5 + brightCyan: 47 + brightWhite: 33.2 diff --git a/themes/crt-themes--crt-red.yaml b/themes/crt-themes--crt-red.yaml new file mode 100644 index 00000000..58272799 --- /dev/null +++ b/themes/crt-themes--crt-red.yaml @@ -0,0 +1,53 @@ +name: "CRT Themes (CRT Red)" +source: + marketplace_id: "krueger71.crt-themes" + version: "0.5.2" + installs: 38260 + rating: 5 + ratings: 9 + author: "krueger71" + repo: "https://github.com/krueger71/crt-themes" + url: "https://marketplace.visualstudio.com/items?itemName=krueger71.crt-themes" + formats: null +colors: + bg: "#111111" + fg: "#FF2222" + black: "#FF2222" + red: "#C01D1D" + green: "#CF1F1F" + yellow: "#A01B1B" + blue: "#EF2121" + magenta: "#DF2020" + cyan: "#B01C1C" + white: "#901A1A" + brightBlack: "#FF2222" + brightRed: "#C01D1D" + brightGreen: "#CF1F1F" + brightYellow: "#A01B1B" + brightBlue: "#EF2121" + brightMagenta: "#DF2020" + brightCyan: "#B01C1C" + brightWhite: "#901A1A" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 37.8 + black: 37.8 + red: 22.7 + green: 26.2 + yellow: 15.9 + blue: 33.8 + magenta: 29.9 + cyan: 19.2 + white: 12.7 + brightBlack: 37.8 + brightRed: 22.7 + brightGreen: 26.2 + brightYellow: 15.9 + brightBlue: 33.8 + brightMagenta: 29.9 + brightCyan: 19.2 + brightWhite: 12.7 diff --git a/themes/crystalline-theme--crystaltine-s-crystalline-4-1.yaml b/themes/crystalline-theme--crystaltine-s-crystalline-4-1.yaml new file mode 100644 index 00000000..3891b26f --- /dev/null +++ b/themes/crystalline-theme--crystaltine-s-crystalline-4-1.yaml @@ -0,0 +1,53 @@ +name: "Crystalline Theme (Crystaltine's Crystalline 4.1)" +source: + marketplace_id: "nonagon.crystalline-theme" + version: "5.0.10" + installs: 1895 + rating: 5 + ratings: 2 + author: "crystaltine" + repo: "https://github.com/crystaltine/Crystalline-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=nonagon.crystalline-theme" + formats: null +colors: + bg: "#1C1C1F" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#FCE56E" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#FBE291" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 58.8 + black: 8.2 + red: 36.1 + green: 59.8 + yellow: 89.1 + blue: 49.1 + magenta: 38.5 + cyan: 51.9 + white: 90 + brightBlack: 14.9 + brightRed: 45.5 + brightGreen: 76.2 + brightYellow: 88.3 + brightBlue: 63.1 + brightMagenta: 49.7 + brightCyan: 67.2 + brightWhite: 106.3 diff --git a/themes/crystalline-theme--crystaltine-s-crystalline-5-0.yaml b/themes/crystalline-theme--crystaltine-s-crystalline-5-0.yaml new file mode 100644 index 00000000..4eb55404 --- /dev/null +++ b/themes/crystalline-theme--crystaltine-s-crystalline-5-0.yaml @@ -0,0 +1,53 @@ +name: "Crystalline Theme (Crystaltine's Crystalline 5.0)" +source: + marketplace_id: "nonagon.crystalline-theme" + version: "5.0.10" + installs: 1895 + rating: 5 + ratings: 2 + author: "crystaltine" + repo: "https://github.com/crystaltine/Crystalline-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=nonagon.crystalline-theme" + formats: null +colors: + bg: "#1D1D1F" + fg: "#A0A0B0" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#FCE56E" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#FBE291" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 49.8 + black: 8.1 + red: 36 + green: 59.6 + yellow: 89 + blue: 48.9 + magenta: 38.3 + cyan: 51.8 + white: 89.9 + brightBlack: 14.7 + brightRed: 45.4 + brightGreen: 76.1 + brightYellow: 88.2 + brightBlue: 63 + brightMagenta: 49.5 + brightCyan: 67.1 + brightWhite: 106.2 diff --git a/themes/cs50-theme-harvard.yaml b/themes/cs50-theme-harvard.yaml new file mode 100644 index 00000000..bea8db05 --- /dev/null +++ b/themes/cs50-theme-harvard.yaml @@ -0,0 +1,53 @@ +name: "cs50-theme-harvard" +source: + marketplace_id: "whitehat4u.cs50-theme-harvard" + version: "1.1.0" + installs: 4453 + rating: 0 + ratings: 0 + author: "juan santos" + repo: "https://github.com/juanpumpkinpie/cs50-theme-harvard" + url: "https://marketplace.visualstudio.com/items?itemName=whitehat4u.cs50-theme-harvard" + formats: null +colors: + bg: "#F5F3EF" + fg: "#403718" + black: "#403718" + red: "#A64536" + green: "#599F37" + yellow: "#C09734" + blue: "#316CA5" + magenta: "#93319F" + cyan: "#A51C30" + white: "#807F7A" + brightBlack: "#594D26" + brightRed: "#CB513F" + brightGreen: "#43A912" + brightYellow: "#D29B18" + brightBlue: "#1D72C5" + brightMagenta: "#B418C7" + brightCyan: "#A51C30" + brightWhite: "#594D26" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 90 + black: 90 + red: 72.1 + green: 52.6 + yellow: 45.5 + blue: 70.1 + magenta: 74.7 + cyan: 77.3 + white: 60.4 + brightBlack: 81.7 + brightRed: 62.6 + brightGreen: 49.6 + brightYellow: 41.5 + brightBlue: 66.5 + brightMagenta: 67.9 + brightCyan: 77.3 + brightWhite: 81.7 diff --git a/themes/csr-blue.yaml b/themes/csr-blue.yaml new file mode 100644 index 00000000..247de50d --- /dev/null +++ b/themes/csr-blue.yaml @@ -0,0 +1,53 @@ +name: "csr-blue" +source: + marketplace_id: "keepflying.csr-blue" + version: "0.0.22" + installs: 180 + rating: 0 + ratings: 0 + author: "keepflying" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=keepflying.csr-blue" + formats: null +colors: + bg: "#E6E6E6" + fg: "#000000" + black: "#29343D" + red: "#F8961E" + green: "#8EFF38" + yellow: "#F3722C" + blue: "#577590" + magenta: "#F9C74F" + cyan: "#43AA8B" + white: "#555555" + brightBlack: "#394956" + brightRed: "#F8961E" + brightGreen: "#90BE6D" + brightYellow: "#F3722C" + brightBlue: "#577590" + brightMagenta: "#F9C74F" + brightCyan: "#43AA8B" + brightWhite: "#ABABAB" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 91.3 + black: 84 + red: 29 + green: 0 + yellow: 39.8 + blue: 58.7 + magenta: 11.4 + cyan: 39.6 + white: 71.2 + brightBlack: 76.7 + brightRed: 29 + brightGreen: 27.4 + brightYellow: 39.8 + brightBlue: 58.7 + brightMagenta: 11.4 + brightCyan: 39.6 + brightWhite: 30.5 diff --git a/themes/cupertino--cupertino-dark.yaml b/themes/cupertino--cupertino-dark.yaml new file mode 100644 index 00000000..cb8dd81d --- /dev/null +++ b/themes/cupertino--cupertino-dark.yaml @@ -0,0 +1,53 @@ +name: "Cupertino (Cupertino Dark)" +source: + marketplace_id: "EuraIndustries.cupertino-vscode" + version: "1.3.1" + installs: 18 + rating: 0 + ratings: 0 + author: "Eura Industries" + repo: "https://github.com/eura-industries/cupertino-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=EuraIndustries.cupertino-vscode" + formats: null +colors: + bg: "#111318" + fg: "#D9DEE8" + black: "#000000" + red: "#FF383C" + green: "#33C758" + yellow: "#FFCC00" + blue: "#0088FF" + magenta: "#CB30E0" + cyan: "#0088FF" + white: "#FFFFFF" + brightBlack: "#8F8F94" + brightRed: "#FF383C" + brightGreen: "#33C758" + brightYellow: "#FFCC00" + brightBlue: "#00C0E8" + brightMagenta: "#FF2D55" + brightCyan: "#0088FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 268 + pair: null + contrast: + fg: 85.8 + black: 0 + red: 39.5 + green: 58.3 + yellow: 78.9 + blue: 39.1 + magenta: 33.8 + cyan: 39.1 + white: 107.2 + brightBlack: 41.6 + brightRed: 39.5 + brightGreen: 58.3 + brightYellow: 78.9 + brightBlue: 59.7 + brightMagenta: 38.9 + brightCyan: 39.1 + brightWhite: 107.2 diff --git a/themes/cupertino--cupertino-light.yaml b/themes/cupertino--cupertino-light.yaml new file mode 100644 index 00000000..24bc3258 --- /dev/null +++ b/themes/cupertino--cupertino-light.yaml @@ -0,0 +1,53 @@ +name: "Cupertino (Cupertino Light)" +source: + marketplace_id: "EuraIndustries.cupertino-vscode" + version: "1.3.1" + installs: 18 + rating: 0 + ratings: 0 + author: "Eura Industries" + repo: "https://github.com/eura-industries/cupertino-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=EuraIndustries.cupertino-vscode" + formats: null +colors: + bg: "#F7F8FA" + fg: "#1F2328" + black: "#000000" + red: "#FF383C" + green: "#33C758" + yellow: "#FFCC00" + blue: "#0088FF" + magenta: "#CB30E0" + cyan: "#0088FF" + white: "#FFFFFF" + brightBlack: "#8F8F94" + brightRed: "#FF383C" + brightGreen: "#33C758" + brightYellow: "#FFCC00" + brightBlue: "#00C0E8" + brightMagenta: "#FF2D55" + brightCyan: "#0088FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 98.5 + black: 101.8 + red: 57.3 + green: 39 + yellow: 19.4 + blue: 57.7 + magenta: 63 + cyan: 57.7 + white: 0 + brightBlack: 55.2 + brightRed: 57.3 + brightGreen: 39 + brightYellow: 19.4 + brightBlue: 37.6 + brightMagenta: 57.9 + brightCyan: 57.7 + brightWhite: 0 diff --git a/themes/cursor-dark--cursor-dark.yaml b/themes/cursor-dark--cursor-dark.yaml new file mode 100644 index 00000000..012452f2 --- /dev/null +++ b/themes/cursor-dark--cursor-dark.yaml @@ -0,0 +1,53 @@ +name: "Cursor Dark (Cursor Dark)" +source: + marketplace_id: "cedricverlinden.cursor-dark" + version: "2.2.0" + installs: 18812 + rating: 5 + ratings: 3 + author: "Cédric Verlinden" + repo: "https://github.com/CedricVerlinden/cursor-dark" + url: "https://marketplace.visualstudio.com/items?itemName=cedricverlinden.cursor-dark" + formats: null +colors: + bg: "#1A1A1A" + fg: "#D8DEE9" + black: "#2A2A2A" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#FFFFFF" + brightBlack: "#505050" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85 + black: 0 + red: 32.6 + green: 61.3 + yellow: 76.1 + blue: 48.3 + magenta: 46.1 + cyan: 62.3 + white: 106.5 + brightBlack: 12.9 + brightRed: 32.6 + brightGreen: 61.3 + brightYellow: 76.1 + brightBlue: 48.3 + brightMagenta: 46.1 + brightCyan: 62.3 + brightWhite: 106.5 diff --git a/themes/cursor-dark--cursor-less-dark.yaml b/themes/cursor-dark--cursor-less-dark.yaml new file mode 100644 index 00000000..1d637eab --- /dev/null +++ b/themes/cursor-dark--cursor-less-dark.yaml @@ -0,0 +1,53 @@ +name: "Cursor Dark (Cursor Less Dark)" +source: + marketplace_id: "cedricverlinden.cursor-dark" + version: "2.2.0" + installs: 18812 + rating: 5 + ratings: 3 + author: "Cédric Verlinden" + repo: "https://github.com/CedricVerlinden/cursor-dark" + url: "https://marketplace.visualstudio.com/items?itemName=cedricverlinden.cursor-dark" + formats: null +colors: + bg: "#242424" + fg: "#D8DEE9" + black: "#2A2A2A" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#FFFFFF" + brightBlack: "#505050" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.6 + black: 0 + red: 31.2 + green: 59.9 + yellow: 74.6 + blue: 46.9 + magenta: 44.7 + cyan: 60.9 + white: 105.1 + brightBlack: 11.4 + brightRed: 31.2 + brightGreen: 59.9 + brightYellow: 74.6 + brightBlue: 46.9 + brightMagenta: 44.7 + brightCyan: 60.9 + brightWhite: 105.1 diff --git a/themes/cursor-dark-origin.yaml b/themes/cursor-dark-origin.yaml new file mode 100644 index 00000000..ca00cf07 --- /dev/null +++ b/themes/cursor-dark-origin.yaml @@ -0,0 +1,53 @@ +name: "Cursor Dark Origin" +source: + marketplace_id: "mpulido.cursor-dark-origin" + version: "0.0.2" + installs: 250 + rating: 0 + ratings: 0 + author: "Michael Pulido" + repo: "https://github.com/michaeljpulido/cursor-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mpulido.cursor-dark-origin" + formats: null +colors: + bg: "#191919" + fg: "#F3F3F3" + black: "#242424" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#F3F3F3" + brightBlack: "#494949" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#F3F3F3" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.8 + black: 0 + red: 32.8 + green: 61.4 + yellow: 76.2 + blue: 48.4 + magenta: 46.3 + cyan: 62.5 + white: 98.8 + brightBlack: 10.4 + brightRed: 32.8 + brightGreen: 61.4 + brightYellow: 76.2 + brightBlue: 48.4 + brightMagenta: 46.3 + brightCyan: 62.5 + brightWhite: 98.8 diff --git a/themes/cursor-midnight--cursor-dark.yaml b/themes/cursor-midnight--cursor-dark.yaml new file mode 100644 index 00000000..c236ac86 --- /dev/null +++ b/themes/cursor-midnight--cursor-dark.yaml @@ -0,0 +1,53 @@ +name: "Cursor Midnight (Cursor Dark)" +source: + marketplace_id: "MohdZaid.vscode-cursor-theme" + version: "0.0.1" + installs: 2770 + rating: 5 + ratings: 1 + author: "Mohd Zaid" + repo: "https://github.com/BioHazard786/cursor-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MohdZaid.vscode-cursor-theme" + formats: null +colors: + bg: "#181818" + fg: "#E4E4E4" + black: "#242424" + red: "#FC6B83" + green: "#3FA266" + yellow: "#D2943E" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E4E4E4" + brightBlack: "#E4E4E4" + brightRed: "#FC6B83" + brightGreen: "#70B489" + brightYellow: "#F1B467" + brightBlue: "#87A6C4" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 89.3 + black: 0 + red: 47.9 + green: 41.8 + yellow: 50.1 + blue: 48.5 + magenta: 46.4 + cyan: 62.6 + white: 89.3 + brightBlack: 89.3 + brightRed: 47.9 + brightGreen: 52.8 + brightYellow: 67.3 + brightBlue: 51.2 + brightMagenta: 46.4 + brightCyan: 62.6 + brightWhite: 89.3 diff --git a/themes/cursor-midnight--cursor-light.yaml b/themes/cursor-midnight--cursor-light.yaml new file mode 100644 index 00000000..415e1477 --- /dev/null +++ b/themes/cursor-midnight--cursor-light.yaml @@ -0,0 +1,53 @@ +name: "Cursor Midnight (Cursor Light)" +source: + marketplace_id: "MohdZaid.vscode-cursor-theme" + version: "0.0.1" + installs: 2770 + rating: 5 + ratings: 1 + author: "Mohd Zaid" + repo: "https://github.com/BioHazard786/cursor-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MohdZaid.vscode-cursor-theme" + formats: null +colors: + bg: "#FCFCFC" + fg: "#141414" + black: "#141414" + red: "#CF2D56" + green: "#1F8A65" + yellow: "#A16900" + blue: "#3C7CAB" + magenta: "#B8448B" + cyan: "#4C7F8C" + white: "#FCFCFC" + brightBlack: "#141414" + brightRed: "#E75E78" + brightGreen: "#55A583" + brightYellow: "#C08532" + brightBlue: "#6299C3" + brightMagenta: "#D06BA6" + brightCyan: "#6F9BA6" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 103.3 + black: 103.3 + red: 71.5 + green: 67.6 + yellow: 70 + blue: 69.2 + magenta: 71.7 + cyan: 69 + white: 0 + brightBlack: 103.3 + brightRed: 58.4 + brightGreen: 54.2 + brightYellow: 56.7 + brightBlue: 55.5 + brightMagenta: 58.3 + brightCyan: 55.3 + brightWhite: 0 diff --git a/themes/cursor-night-theme--cursor-night-theme-soft.yaml b/themes/cursor-night-theme--cursor-night-theme-soft.yaml new file mode 100644 index 00000000..31e1a912 --- /dev/null +++ b/themes/cursor-night-theme--cursor-night-theme-soft.yaml @@ -0,0 +1,53 @@ +name: "Cursor Night Theme (Cursor Night Theme Soft)" +source: + marketplace_id: "DiegoMontejano.cursor-night-theme" + version: "1.0.0" + installs: 1014 + rating: 5 + ratings: 1 + author: "Diego Montejano" + repo: "https://github.com/diegomontejano/cursor-night-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DiegoMontejano.cursor-night-theme" + formats: null +colors: + bg: "#272B34" + fg: "#D6DADF" + black: "#272C36" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#E6CFA1" + blue: "#81A1C1" + magenta: "#7D7C9B" + cyan: "#90CADB" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#E6CFA1" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#D6DADF" +meta: + mode: "dark" + accent: "orange" + hue: 266 + pair: null + contrast: + fg: 79.8 + black: 0 + red: 30 + green: 58.6 + yellow: 74.9 + blue: 45.6 + magenta: 30.2 + cyan: 65.2 + white: 89.3 + brightBlack: 12.4 + brightRed: 30 + brightGreen: 58.6 + brightYellow: 74.9 + brightBlue: 45.6 + brightMagenta: 43.5 + brightCyan: 57.6 + brightWhite: 79.8 diff --git a/themes/cursor-night-theme--cursor-night-theme.yaml b/themes/cursor-night-theme--cursor-night-theme.yaml new file mode 100644 index 00000000..509f5c19 --- /dev/null +++ b/themes/cursor-night-theme--cursor-night-theme.yaml @@ -0,0 +1,53 @@ +name: "Cursor Night Theme (Cursor Night Theme)" +source: + marketplace_id: "DiegoMontejano.cursor-night-theme" + version: "1.0.0" + installs: 1014 + rating: 5 + ratings: 1 + author: "Diego Montejano" + repo: "https://github.com/diegomontejano/cursor-night-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DiegoMontejano.cursor-night-theme" + formats: null +colors: + bg: "#181D21" + fg: "#D6DADF" + black: "#272C36" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#E6CFA1" + blue: "#81A1C1" + magenta: "#7D7C9B" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#E6CFA1" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#D6DADF" +meta: + mode: "dark" + accent: "orange" + hue: 242 + pair: null + contrast: + fg: 82.2 + black: 0 + red: 32.4 + green: 61 + yellow: 77.3 + blue: 48 + magenta: 32.6 + cyan: 62.1 + white: 91.7 + brightBlack: 14.8 + brightRed: 32.4 + brightGreen: 61 + brightYellow: 77.3 + brightBlue: 48 + brightMagenta: 45.9 + brightCyan: 60 + brightWhite: 82.2 diff --git a/themes/cursor-theme--cursor-theme.yaml b/themes/cursor-theme--cursor-theme.yaml new file mode 100644 index 00000000..3ec92b13 --- /dev/null +++ b/themes/cursor-theme--cursor-theme.yaml @@ -0,0 +1,53 @@ +name: "cursor theme (Cursor Theme)" +source: + marketplace_id: "ManitejaPratha.cursor-midnight-theme" + version: "0.0.3" + installs: 5071 + rating: 5 + ratings: 1 + author: "Maniteja Pratha" + repo: "https://github.com/Manitej66/cursor-theme-for-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ManitejaPratha.cursor-midnight-theme" + formats: null +colors: + bg: "#1E2127" + fg: "#7B88A1" + black: "#272C36" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#7D7C9B" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 36.1 + black: 0 + red: 31.7 + green: 60.4 + yellow: 75.1 + blue: 47.4 + magenta: 31.9 + cyan: 61.4 + white: 91.1 + brightBlack: 14.1 + brightRed: 31.7 + brightGreen: 60.4 + brightYellow: 75.1 + brightBlue: 47.4 + brightMagenta: 45.2 + brightCyan: 59.3 + brightWhite: 95 diff --git a/themes/custom-github-dark-dimmed.yaml b/themes/custom-github-dark-dimmed.yaml new file mode 100644 index 00000000..b4369579 --- /dev/null +++ b/themes/custom-github-dark-dimmed.yaml @@ -0,0 +1,53 @@ +name: "Custom Github Dark Dimmed" +source: + marketplace_id: "NathanCuevas.custom-github-dark-dimmed" + version: "1.1.17" + installs: 3253 + rating: 0 + ratings: 0 + author: "NathanCuevas" + repo: "https://github.com/NateAyye/custom-github-dark-dimmed" + url: "https://marketplace.visualstudio.com/items?itemName=NathanCuevas.custom-github-dark-dimmed" + formats: null +colors: + bg: "#191B22" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 273 + pair: null + contrast: + fg: 79 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.5 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/cute-aesthetic.yaml b/themes/cute-aesthetic.yaml new file mode 100644 index 00000000..d27c5e6b --- /dev/null +++ b/themes/cute-aesthetic.yaml @@ -0,0 +1,53 @@ +name: "Cute Aesthetic" +source: + marketplace_id: "sophtli.cute-aesthetic" + version: "1.1.4" + installs: 4506 + rating: 0 + ratings: 0 + author: "Sophtli" + repo: "https://github.com/Sophtli/cute-aesthetic" + url: "https://marketplace.visualstudio.com/items?itemName=sophtli.cute-aesthetic" + formats: null +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 98.7 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/cyan-theme.yaml b/themes/cyan-theme.yaml new file mode 100644 index 00000000..39036a0c --- /dev/null +++ b/themes/cyan-theme.yaml @@ -0,0 +1,53 @@ +name: "Cyan-theme" +source: + marketplace_id: "xthemis19981.Cyan-Theme" + version: "0.0.3" + installs: 457 + rating: 0 + ratings: 0 + author: "xthemis19981" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xthemis19981.Cyan-Theme" + formats: null +colors: + bg: "#151515" + fg: "#B00000" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 18.2 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/cyber-dark--cyber-dark.yaml b/themes/cyber-dark--cyber-dark.yaml new file mode 100644 index 00000000..f989e42b --- /dev/null +++ b/themes/cyber-dark--cyber-dark.yaml @@ -0,0 +1,53 @@ +name: "Cyber Dark (Cyber Dark)" +source: + marketplace_id: "tryToDEv.cyber-dark-theme-collection" + version: "1.0.0" + installs: 24 + rating: 0 + ratings: 0 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-dark-theme-collection" + formats: null +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#0D1117" + red: "#FF7B72" + green: "#7EE787" + yellow: "#FFA657" + blue: "#58A6FF" + magenta: "#D2A8FF" + cyan: "#79C0FF" + white: "#C9D1D9" + brightBlack: "#8B949E" + brightRed: "#FF7B72" + brightGreen: "#7EE787" + brightYellow: "#FFD580" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#79C0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 258 + pair: null + contrast: + fg: 77.5 + black: 0 + red: 52.6 + green: 78.1 + yellow: 65.1 + blue: 52.2 + magenta: 64.6 + cyan: 64.7 + white: 77.5 + brightBlack: 43.6 + brightRed: 52.6 + brightGreen: 78.1 + brightYellow: 84 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 64.7 + brightWhite: 107.4 diff --git a/themes/cyber-dark--cyber-light-soft.yaml b/themes/cyber-dark--cyber-light-soft.yaml new file mode 100644 index 00000000..887748a7 --- /dev/null +++ b/themes/cyber-dark--cyber-light-soft.yaml @@ -0,0 +1,53 @@ +name: "Cyber Dark (Cyber Light Soft)" +source: + marketplace_id: "tryToDEv.cyber-dark-theme-collection" + version: "1.0.0" + installs: 24 + rating: 0 + ratings: 0 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-dark-theme-collection" + formats: null +colors: + bg: "#FAFBFC" + fg: "#2F363D" + black: "#2F363D" + red: "#CF222E" + green: "#1A7F37" + yellow: "#BF8700" + blue: "#0550AE" + magenta: "#8250DF" + cyan: "#0969DA" + white: "#959DA5" + brightBlack: "#6E7781" + brightRed: "#CF222E" + brightGreen: "#1A7F37" + brightYellow: "#BF8700" + brightBlue: "#0969DA" + brightMagenta: "#8250DF" + brightCyan: "#0969DA" + brightWhite: "#2F363D" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 95.5 + black: 95.5 + red: 72.3 + green: 72.1 + yellow: 55.7 + blue: 83.1 + magenta: 71.8 + cyan: 72.5 + white: 50.6 + brightBlack: 69.1 + brightRed: 72.3 + brightGreen: 72.1 + brightYellow: 55.7 + brightBlue: 72.5 + brightMagenta: 71.8 + brightCyan: 72.5 + brightWhite: 95.5 diff --git a/themes/cyber-dark--cyber-light-warm.yaml b/themes/cyber-dark--cyber-light-warm.yaml new file mode 100644 index 00000000..289ea0ba --- /dev/null +++ b/themes/cyber-dark--cyber-light-warm.yaml @@ -0,0 +1,53 @@ +name: "Cyber Dark (Cyber Light Warm)" +source: + marketplace_id: "tryToDEv.cyber-dark-theme-collection" + version: "1.0.0" + installs: 24 + rating: 0 + ratings: 0 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-dark-theme-collection" + formats: null +colors: + bg: "#FFFBF0" + fg: "#3A2A1A" + black: "#3A2A1A" + red: "#CC3300" + green: "#2E7D32" + yellow: "#B8860B" + blue: "#CC5500" + magenta: "#8B4513" + cyan: "#006699" + white: "#A89078" + brightBlack: "#6B5B4F" + brightRed: "#CC3300" + brightGreen: "#2E7D32" + brightYellow: "#B8860B" + brightBlue: "#006699" + brightMagenta: "#8B4513" + brightCyan: "#006699" + brightWhite: "#3A2A1A" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97.9 + black: 97.9 + red: 71.9 + green: 72.7 + yellow: 57.2 + blue: 66.6 + magenta: 81.8 + cyan: 78.2 + white: 54.7 + brightBlack: 79.9 + brightRed: 71.9 + brightGreen: 72.7 + brightYellow: 57.2 + brightBlue: 78.2 + brightMagenta: 81.8 + brightCyan: 78.2 + brightWhite: 97.9 diff --git a/themes/cyber-dark--cyber-light.yaml b/themes/cyber-dark--cyber-light.yaml new file mode 100644 index 00000000..b9e80ec5 --- /dev/null +++ b/themes/cyber-dark--cyber-light.yaml @@ -0,0 +1,53 @@ +name: "Cyber Dark (Cyber Light)" +source: + marketplace_id: "tryToDEv.cyber-dark-theme-collection" + version: "1.0.0" + installs: 24 + rating: 0 + ratings: 0 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-dark-theme-collection" + formats: null +colors: + bg: "#FFFFFF" + fg: "#24292F" + black: "#24292F" + red: "#CF222E" + green: "#1A7F37" + yellow: "#D29922" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1F6FEB" + white: "#8C959F" + brightBlack: "#6E7781" + brightRed: "#CF222E" + brightGreen: "#1A7F37" + brightYellow: "#D29922" + brightBlue: "#1F6FEB" + brightMagenta: "#8250DF" + brightCyan: "#1F6FEB" + brightWhite: "#24292F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 101.5 + black: 101.5 + red: 74.8 + green: 74.6 + yellow: 49.3 + blue: 74.9 + magenta: 74.3 + cyan: 71.5 + white: 57.2 + brightBlack: 71.6 + brightRed: 74.8 + brightGreen: 74.6 + brightYellow: 49.3 + brightBlue: 71.5 + brightMagenta: 74.3 + brightCyan: 71.5 + brightWhite: 101.5 diff --git a/themes/cyber-dark-qoder-themes--javascript-modern-dark.yaml b/themes/cyber-dark-qoder-themes--javascript-modern-dark.yaml new file mode 100644 index 00000000..4b7b1f83 --- /dev/null +++ b/themes/cyber-dark-qoder-themes--javascript-modern-dark.yaml @@ -0,0 +1,53 @@ +name: "Cyber Dark & Qoder Themes (JavaScript Modern Dark)" +source: + marketplace_id: "tryToDEv.cyber-qoder-themes" + version: "1.2.0" + installs: 16 + rating: 0 + ratings: 0 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" + formats: null +colors: + bg: "#0F1117" + fg: "#E5E7EB" + black: "#0F1117" + red: "#FB923C" + green: "#34D399" + yellow: "#FBBF24" + blue: "#60A5FA" + magenta: "#A78BFA" + cyan: "#38BDF8" + white: "#E5E7EB" + brightBlack: "#64748B" + brightRed: "#FCA5A5" + brightGreen: "#6EE7B7" + brightYellow: "#FDE68A" + brightBlue: "#93C5FD" + brightMagenta: "#C4B5FD" + brightCyan: "#7DD3FC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: 271 + pair: null + contrast: + fg: 91.7 + black: 0 + red: 57.4 + green: 65.7 + yellow: 73.2 + blue: 51.9 + magenta: 48.8 + cyan: 60.1 + white: 91.7 + brightBlack: 28.1 + brightRed: 66 + brightGreen: 78.5 + brightYellow: 91.4 + brightBlue: 68.7 + brightMagenta: 67.4 + brightCyan: 73.2 + brightWhite: 107.4 diff --git a/themes/cyber-dark-qoder-themes--javascript-neon-dark.yaml b/themes/cyber-dark-qoder-themes--javascript-neon-dark.yaml new file mode 100644 index 00000000..c299728c --- /dev/null +++ b/themes/cyber-dark-qoder-themes--javascript-neon-dark.yaml @@ -0,0 +1,53 @@ +name: "Cyber Dark & Qoder Themes (JavaScript Neon Dark)" +source: + marketplace_id: "tryToDEv.cyber-qoder-themes" + version: "1.2.0" + installs: 16 + rating: 0 + ratings: 0 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" + formats: null +colors: + bg: "#0A0E14" + fg: "#E5E7EB" + black: "#0A0E14" + red: "#FF6B00" + green: "#00FF9D" + yellow: "#FFFF00" + blue: "#00F0FF" + magenta: "#FF00FF" + cyan: "#3B82F6" + white: "#E5E7EB" + brightBlack: "#6B7280" + brightRed: "#FF8C42" + brightGreen: "#5CFFD1" + brightYellow: "#FFFF33" + brightBlue: "#33F0FF" + brightMagenta: "#FF33FF" + brightCyan: "#5C9CFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 258 + pair: null + contrast: + fg: 91.9 + black: 0 + red: 47.8 + green: 88 + yellow: 102.4 + blue: 84.2 + magenta: 45.9 + cyan: 37.5 + white: 91.9 + brightBlack: 27.8 + brightRed: 56.7 + brightGreen: 91.2 + brightYellow: 102.5 + brightBlue: 84.5 + brightMagenta: 47.6 + brightCyan: 48.8 + brightWhite: 107.6 diff --git a/themes/cyber-dark-qoder-themes--javascript-vibrant-dark.yaml b/themes/cyber-dark-qoder-themes--javascript-vibrant-dark.yaml new file mode 100644 index 00000000..eca41e10 --- /dev/null +++ b/themes/cyber-dark-qoder-themes--javascript-vibrant-dark.yaml @@ -0,0 +1,53 @@ +name: "Cyber Dark & Qoder Themes (JavaScript Vibrant Dark)" +source: + marketplace_id: "tryToDEv.cyber-qoder-themes" + version: "1.2.0" + installs: 16 + rating: 0 + ratings: 0 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" + formats: null +colors: + bg: "#0D0F12" + fg: "#E8E8E8" + black: "#0D0F12" + red: "#FF6B9D" + green: "#6BCB77" + yellow: "#FFEAA7" + blue: "#FF6B6B" + magenta: "#FF9F43" + cyan: "#74B9FF" + white: "#E8E8E8" + brightBlack: "#8B949E" + brightRed: "#FF9CB8" + brightGreen: "#8FD99E" + brightYellow: "#FFF2C7" + brightBlue: "#FF9C9C" + brightMagenta: "#FFB573" + brightCyan: "#9CCBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 50.2 + green: 63.2 + yellow: 94.4 + blue: 48.7 + magenta: 62.6 + cyan: 61.6 + white: 92.6 + brightBlack: 43.7 + brightRed: 64.5 + brightGreen: 73.2 + brightYellow: 99.1 + brightBlue: 63.5 + brightMagenta: 71.1 + brightCyan: 72.3 + brightWhite: 107.5 diff --git a/themes/cyber-dark-qoder-themes--qoder-dark.yaml b/themes/cyber-dark-qoder-themes--qoder-dark.yaml new file mode 100644 index 00000000..08504bc0 --- /dev/null +++ b/themes/cyber-dark-qoder-themes--qoder-dark.yaml @@ -0,0 +1,53 @@ +name: "Cyber Dark & Qoder Themes (Qoder Dark)" +source: + marketplace_id: "tryToDEv.cyber-qoder-themes" + version: "1.2.0" + installs: 16 + rating: 0 + ratings: 0 + author: "tryToDEv" + repo: "https://github.com/shivam20/cyber-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tryToDEv.cyber-qoder-themes" + formats: null +colors: + bg: "#0F0F14" + fg: "#E6E6F0" + black: "#12121A" + red: "#FF6B6B" + green: "#6CFF9C" + yellow: "#FFD166" + blue: "#9D7CFF" + magenta: "#C77DFF" + cyan: "#78D9FF" + white: "#F0F0FF" + brightBlack: "#4A4A6A" + brightRed: "#FF8E8E" + brightGreen: "#8AFFB8" + brightYellow: "#FFE082" + brightBlue: "#B89CFF" + brightMagenta: "#D9A8FF" + brightCyan: "#93E2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 285 + pair: null + contrast: + fg: 91.7 + black: 0 + red: 48.7 + green: 90 + yellow: 81.9 + blue: 43.6 + magenta: 49.6 + cyan: 75.9 + white: 98.4 + brightBlack: 12.7 + brightRed: 58.7 + brightGreen: 92.5 + brightYellow: 88.9 + brightBlue: 57 + brightMagenta: 65.7 + brightCyan: 81.9 + brightWhite: 107.5 diff --git a/themes/cyber-pastel-theme-pack.yaml b/themes/cyber-pastel-theme-pack.yaml new file mode 100644 index 00000000..1e037104 --- /dev/null +++ b/themes/cyber-pastel-theme-pack.yaml @@ -0,0 +1,53 @@ +name: "Cyber Pastel Theme Pack" +source: + marketplace_id: "cyber-pastel-themes.cyber-pastel-theme-pack" + version: "1.0.0" + installs: 427 + rating: 5 + ratings: 2 + author: "cyber-pastel-themes" + repo: "https://github.com/your-username/cyber-pastel-theme-pack" + url: "https://marketplace.visualstudio.com/items?itemName=cyber-pastel-themes.cyber-pastel-theme-pack" + formats: null +colors: + bg: "#FEFEFF" + fg: "#374151" + black: "#374151" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#8B5CF6" + cyan: "#06B6D4" + white: "#F9FAFB" + brightBlack: "#374151" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#8B5CF6" + brightCyan: "#06B6D4" + brightWhite: "#F9FAFB" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 93.4 + black: 93.4 + red: 63.3 + green: 48.5 + yellow: 41.2 + blue: 63.3 + magenta: 68.2 + cyan: 46.6 + white: 0 + brightBlack: 93.4 + brightRed: 63.3 + brightGreen: 48.5 + brightYellow: 41.2 + brightBlue: 63.3 + brightMagenta: 68.2 + brightCyan: 46.6 + brightWhite: 0 diff --git a/themes/cyberdyne.yaml b/themes/cyberdyne.yaml new file mode 100644 index 00000000..7ffaf051 --- /dev/null +++ b/themes/cyberdyne.yaml @@ -0,0 +1,53 @@ +name: "Cyberdyne" +source: + marketplace_id: "m0-hassan.cyberdyne" + version: "0.1.3" + installs: 136 + rating: 5 + ratings: 1 + author: "m0-hassan" + repo: "https://github.com/m0-hassan/cyberdyne" + url: "https://marketplace.visualstudio.com/items?itemName=m0-hassan.cyberdyne" + formats: null +colors: + bg: "#151144" + fg: "#00FF92" + black: "#080808" + red: "#FF8373" + green: "#00C172" + yellow: "#D2A700" + blue: "#0071CF" + magenta: "#FF90FE" + cyan: "#6BFFDD" + white: "#F1F1F1" + brightBlack: "#2E2E2E" + brightRed: "#FFC4BE" + brightGreen: "#D6FCBA" + brightYellow: "#FFFED5" + brightBlue: "#C2E3FF" + brightMagenta: "#FFB2FE" + brightCyan: "#E6E7FE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 279 + pair: null + contrast: + fg: 86.5 + black: 0 + red: 53.7 + green: 54.7 + yellow: 56.2 + blue: 26.9 + magenta: 63.4 + cyan: 91.1 + white: 97.2 + brightBlack: 0 + brightRed: 77.9 + brightGreen: 96.9 + brightYellow: 104.1 + brightBlue: 85.7 + brightMagenta: 74.3 + brightCyan: 91.8 + brightWhite: 106.4 diff --git a/themes/cyberlite.yaml b/themes/cyberlite.yaml new file mode 100644 index 00000000..c41e25c2 --- /dev/null +++ b/themes/cyberlite.yaml @@ -0,0 +1,53 @@ +name: "Cyberlite" +source: + marketplace_id: "ACO-626-theme.cyberlite" + version: "0.0.1" + installs: 121 + rating: 0 + ratings: 0 + author: "ACO-626-theme" + repo: "https://github.com/ACO-626/Cyberlite-Visual-Studio-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ACO-626-theme.cyberlite" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#8A8A8A" + red: "#DE0000" + green: "#16CF88" + yellow: "#DBDB00" + blue: "#3A8FEC" + magenta: "#E800E8" + cyan: "#62CAE4" + white: "#FFEBF4" + brightBlack: "#C7C7C7" + brightRed: "#FF0000" + brightGreen: "#00FF98" + brightYellow: "#FFFF00" + brightBlue: "#0078FF" + brightMagenta: "#FF00FF" + brightCyan: "#00CDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 39.6 + red: 29.4 + green: 63.4 + yellow: 80.7 + blue: 41.5 + magenta: 39.3 + cyan: 66.7 + white: 98.1 + brightBlack: 72.7 + brightRed: 37.5 + brightGreen: 88.2 + brightYellow: 102.7 + brightBlue: 34.5 + brightMagenta: 46.2 + brightCyan: 67.7 + brightWhite: 107.9 diff --git a/themes/cyberpunk-2021.yaml b/themes/cyberpunk-2021.yaml new file mode 100644 index 00000000..e8fa4ab3 --- /dev/null +++ b/themes/cyberpunk-2021.yaml @@ -0,0 +1,53 @@ +name: "Cyberpunk 2021" +source: + marketplace_id: "techwithcarlos.cyberpunk-2021" + version: "1.8.5" + installs: 31500 + rating: 5 + ratings: 3 + author: "techwithcarlos" + repo: "https://github.com/CarlosTaubeler/cyberpunk-2021" + url: "https://marketplace.visualstudio.com/items?itemName=techwithcarlos.cyberpunk-2021" + formats: null +colors: + bg: "#011627" + fg: "#97A7C8" + black: "#000000" + red: "#FF0000" + green: "#33FF00" + yellow: "#F2FF00" + blue: "#0066FF" + magenta: "#CC00FF" + cyan: "#0AB6C2" + white: "#D7DBE0" + brightBlack: "#808080" + brightRed: "#FF0000" + brightGreen: "#00FF9D" + brightYellow: "#F2FF00" + brightBlue: "#0066FF" + brightMagenta: "#CC00FF" + brightCyan: "#35E2EE" + brightWhite: "#D7DBE0" +meta: + mode: "dark" + accent: "pink" + hue: 244 + pair: null + contrast: + fg: 53.4 + black: 0 + red: 36.6 + green: 85.9 + yellow: 100 + blue: 28.3 + magenta: 34.6 + cyan: 53 + white: 83.6 + brightBlack: 33.8 + brightRed: 36.6 + brightGreen: 87.4 + brightYellow: 100 + brightBlue: 28.3 + brightMagenta: 34.6 + brightCyan: 76.1 + brightWhite: 83.6 diff --git a/themes/cyberpunk-2077-night-city-theme--cyberpunk-2077-night-city-neon.yaml b/themes/cyberpunk-2077-night-city-theme--cyberpunk-2077-night-city-neon.yaml new file mode 100644 index 00000000..00be7b75 --- /dev/null +++ b/themes/cyberpunk-2077-night-city-theme--cyberpunk-2077-night-city-neon.yaml @@ -0,0 +1,53 @@ +name: "Cyberpunk 2077 - Night City Theme (Cyberpunk 2077 - Night City Neon)" +source: + marketplace_id: "GriffReaper.cyberpunk-2077-night-city-theme" + version: "1.0.5" + installs: 78 + rating: 0 + ratings: 0 + author: "Griff Reaper" + repo: "https://github.com/your-username/cyberpunk-2077-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GriffReaper.cyberpunk-2077-night-city-theme" + formats: null +colors: + bg: "#000000" + fg: "#00F0FF" + black: "#000000" + red: "#FF0040" + green: "#00FF9F" + yellow: "#FFE600" + blue: "#00F0FF" + magenta: "#FF006E" + cyan: "#00F0FF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF1744" + brightGreen: "#00FFAA" + brightYellow: "#FCEE0C" + brightBlue: "#00F0FF" + brightMagenta: "#FF10F0" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 84.5 + black: 0 + red: 37.9 + green: 88.3 + yellow: 90.9 + blue: 84.5 + magenta: 38.8 + cyan: 84.5 + white: 107.9 + brightBlack: 23 + brightRed: 38.2 + brightGreen: 88.7 + brightYellow: 94.1 + brightBlue: 84.5 + brightMagenta: 45.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/cyberpunk-rebecca-color-theme.yaml b/themes/cyberpunk-rebecca-color-theme.yaml new file mode 100644 index 00000000..4e9ef614 --- /dev/null +++ b/themes/cyberpunk-rebecca-color-theme.yaml @@ -0,0 +1,53 @@ +name: "Cyberpunk Rebecca color theme" +source: + marketplace_id: "LazzyE.cyberpunk-rebecca-color-theme" + version: "0.0.5" + installs: 28 + rating: 5 + ratings: 1 + author: "LazzyE" + repo: "https://github.com/ErliCai/cyberpunk-rebecca-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LazzyE.cyberpunk-rebecca-color-theme" + formats: null +colors: + bg: "#0E2025" + fg: "#CFFFF0" + black: "#0E2025" + red: "#FF2D95" + green: "#56E0B0" + yellow: "#E8B830" + blue: "#2D8CCC" + magenta: "#FF2D95" + cyan: "#7AECC8" + white: "#CFFFF0" + brightBlack: "#183038" + brightRed: "#FF69B4" + brightGreen: "#7AECC8" + brightYellow: "#F0D060" + brightBlue: "#5AAFEE" + brightMagenta: "#FF69B4" + brightCyan: "#FFB8D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 218 + pair: null + contrast: + fg: 99.3 + black: 0 + red: 39.6 + green: 72.5 + yellow: 66 + blue: 36 + magenta: 39.6 + cyan: 81 + white: 99.3 + brightBlack: 0 + brightRed: 49.3 + brightGreen: 81 + brightYellow: 77.6 + brightBlue: 53.4 + brightMagenta: 49.3 + brightCyan: 73.9 + brightWhite: 106.1 diff --git a/themes/cyberpunk2077-ui-theme.yaml b/themes/cyberpunk2077-ui-theme.yaml new file mode 100644 index 00000000..7eb66840 --- /dev/null +++ b/themes/cyberpunk2077-ui-theme.yaml @@ -0,0 +1,53 @@ +name: "Cyberpunk2077 UI Theme" +source: + marketplace_id: "spicyhek.vsc-cyberpunk2077-theme" + version: "0.0.4" + installs: 469 + rating: 0 + ratings: 0 + author: "spicyhek" + repo: "https://github.com/spicyhek/vsc-cyberpunk2077-theme" + url: "https://marketplace.visualstudio.com/items?itemName=spicyhek.vsc-cyberpunk2077-theme" + formats: null +colors: + bg: "#160000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 29 + pair: null + contrast: + fg: 80.3 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/cyberpunkcygnus-color-theme--cyberpunkcygnus-clear-grid.yaml b/themes/cyberpunkcygnus-color-theme--cyberpunkcygnus-clear-grid.yaml new file mode 100644 index 00000000..39d5759d --- /dev/null +++ b/themes/cyberpunkcygnus-color-theme--cyberpunkcygnus-clear-grid.yaml @@ -0,0 +1,53 @@ +name: "CyberpunkCygnus Color Theme (CyberpunkCygnus Clear Grid)" +source: + marketplace_id: "ai-acc.cyberpunkcygnus" + version: "0.2.17" + installs: 455 + rating: 0 + ratings: 0 + author: "AI Acc" + repo: "https://github.com/sascharo/" + url: "https://marketplace.visualstudio.com/items?itemName=ai-acc.cyberpunkcygnus" + formats: null +colors: + bg: "#FFFFFF" + fg: "#050505" + black: "#343A40" + red: "#A13D3A" + green: "#00CC8E" + yellow: "#A06D1A" + blue: "#0066FF" + magenta: "#9933FF" + cyan: "#00B4CC" + white: "#ADB5BD" + brightBlack: "#495057" + brightRed: "#FF3355" + brightGreen: "#00FF9D" + brightYellow: "#FFBB00" + brightBlue: "#0099FF" + brightMagenta: "#FF00AA" + brightCyan: "#00EEFF" + brightWhite: "#050505" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 106 + black: 96.5 + red: 81.4 + green: 40.2 + yellow: 70.8 + blue: 72.4 + magenta: 72.7 + cyan: 48.4 + white: 40.5 + brightBlack: 88.3 + brightRed: 61.6 + brightGreen: 15.5 + brightYellow: 30 + brightBlue: 55.9 + brightMagenta: 60.8 + brightCyan: 19.9 + brightWhite: 106 diff --git a/themes/cyberpunkcygnus-color-theme--cyberpunkcygnus-neon-pulse.yaml b/themes/cyberpunkcygnus-color-theme--cyberpunkcygnus-neon-pulse.yaml new file mode 100644 index 00000000..ff761a6d --- /dev/null +++ b/themes/cyberpunkcygnus-color-theme--cyberpunkcygnus-neon-pulse.yaml @@ -0,0 +1,53 @@ +name: "CyberpunkCygnus Color Theme (CyberpunkCygnus Neon Pulse)" +source: + marketplace_id: "ai-acc.cyberpunkcygnus" + version: "0.2.17" + installs: 455 + rating: 0 + ratings: 0 + author: "AI Acc" + repo: "https://github.com/sascharo/" + url: "https://marketplace.visualstudio.com/items?itemName=ai-acc.cyberpunkcygnus" + formats: null +colors: + bg: "#16181D" + fg: "#FFFFFF" + black: "#232733" + red: "#FF3B3B" + green: "#A3FF8C" + yellow: "#FFE066" + blue: "#00EAFF" + magenta: "#FF7DE9" + cyan: "#00EAFF" + white: "#BFC9DB" + brightBlack: "#7B88A1" + brightRed: "#FF3B3B" + brightGreen: "#A3FF8C" + brightYellow: "#FFE066" + brightBlue: "#00EAFF" + brightMagenta: "#FF7DE9" + brightCyan: "#00EAFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 268 + pair: null + contrast: + fg: 106.8 + black: 0 + red: 39.4 + green: 92.4 + yellow: 87.7 + blue: 80.4 + magenta: 57.4 + cyan: 80.4 + white: 72.4 + brightBlack: 37.2 + brightRed: 39.4 + brightGreen: 92.4 + brightYellow: 87.7 + brightBlue: 80.4 + brightMagenta: 57.4 + brightCyan: 80.4 + brightWhite: 106.8 diff --git a/themes/cyberpunkcygnus-color-theme--cyberpunkcygnus-solace-flare.yaml b/themes/cyberpunkcygnus-color-theme--cyberpunkcygnus-solace-flare.yaml new file mode 100644 index 00000000..e7b4927e --- /dev/null +++ b/themes/cyberpunkcygnus-color-theme--cyberpunkcygnus-solace-flare.yaml @@ -0,0 +1,53 @@ +name: "CyberpunkCygnus Color Theme (CyberpunkCygnus Solace Flare)" +source: + marketplace_id: "ai-acc.cyberpunkcygnus" + version: "0.2.17" + installs: 455 + rating: 0 + ratings: 0 + author: "AI Acc" + repo: "https://github.com/sascharo/" + url: "https://marketplace.visualstudio.com/items?itemName=ai-acc.cyberpunkcygnus" + formats: null +colors: + bg: "#F0F2F5" + fg: "#1E2127" + black: "#4E5666" + red: "#D9534F" + green: "#2A9D8F" + yellow: "#E09F3E" + blue: "#0088A1" + magenta: "#A15EAD" + cyan: "#0088A1" + white: "#D5DBE3" + brightBlack: "#5C677D" + brightRed: "#E86964" + brightGreen: "#3DBD7D" + brightYellow: "#F2BD5A" + brightBlue: "#00A1BD" + brightMagenta: "#C774D9" + brightCyan: "#00A1BD" + brightWhite: "#1E2127" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.2 + black: 77.8 + red: 58.3 + green: 52.4 + yellow: 36.9 + blue: 60.3 + magenta: 62.7 + cyan: 60.3 + white: 11.2 + brightBlack: 70.6 + brightRed: 50.3 + brightGreen: 38.9 + brightYellow: 23 + brightBlue: 49.1 + brightMagenta: 48.9 + brightCyan: 49.1 + brightWhite: 95.2 diff --git a/themes/cybertrauma.yaml b/themes/cybertrauma.yaml new file mode 100644 index 00000000..f03837d6 --- /dev/null +++ b/themes/cybertrauma.yaml @@ -0,0 +1,53 @@ +name: "CyberTrauma" +source: + marketplace_id: "CyberTrauma.cybertrauma" + version: "0.0.4" + installs: 1676 + rating: 5 + ratings: 1 + author: "CyberTrauma" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CyberTrauma.cybertrauma" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#474040" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 9 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/cyberui-cyberpunk-neon-theme.yaml b/themes/cyberui-cyberpunk-neon-theme.yaml new file mode 100644 index 00000000..621146e2 --- /dev/null +++ b/themes/cyberui-cyberpunk-neon-theme.yaml @@ -0,0 +1,53 @@ +name: "CyberUI - Cyberpunk Neon Theme" +source: + marketplace_id: "AarMagic.cyberui" + version: "1.4.0" + installs: 354 + rating: 5 + ratings: 1 + author: "AarWeb" + repo: "https://github.com/aarweb/cyberui" + url: "https://marketplace.visualstudio.com/items?itemName=AarMagic.cyberui" + formats: null +colors: + bg: "#000000" + fg: "#55EAD4" + black: "#000000" + red: "#C5003C" + green: "#55EAD4" + yellow: "#F3E600" + blue: "#880425" + magenta: "#C5003C" + cyan: "#55EAD4" + white: "#55EAD4" + brightBlack: "#880425" + brightRed: "#C5003C" + brightGreen: "#55EAD4" + brightYellow: "#F3E600" + brightBlue: "#880425" + brightMagenta: "#C5003C" + brightCyan: "#55EAD4" + brightWhite: "#F3E600" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 80.6 + black: 0 + red: 24 + green: 80.6 + yellow: 89.1 + blue: 11.2 + magenta: 24 + cyan: 80.6 + white: 80.6 + brightBlack: 11.2 + brightRed: 24 + brightGreen: 80.6 + brightYellow: 89.1 + brightBlue: 11.2 + brightMagenta: 24 + brightCyan: 80.6 + brightWhite: 89.1 diff --git a/themes/cyberwave.yaml b/themes/cyberwave.yaml new file mode 100644 index 00000000..618fe25f --- /dev/null +++ b/themes/cyberwave.yaml @@ -0,0 +1,53 @@ +name: "CyberWave" +source: + marketplace_id: "morozov-work.cyberwave-vscode" + version: "0.0.2" + installs: 6528 + rating: 5 + ratings: 1 + author: "morozov-work" + repo: "https://github.com/morozov-work/cyberwave-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=morozov-work.cyberwave-vscode" + formats: null +colors: + bg: "#0F0407" + fg: "#B7D1FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 359 + pair: null + contrast: + fg: 77.8 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 80.4 + brightBlack: 22.9 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/d.yaml b/themes/d.yaml new file mode 100644 index 00000000..05f23c84 --- /dev/null +++ b/themes/d.yaml @@ -0,0 +1,53 @@ +name: ":D" +source: + marketplace_id: "everyoneTheme.myTheme" + version: "3.0.0" + installs: 65 + rating: 0 + ratings: 0 + author: "everyoneTheme" + repo: "https://github.com/bryantTheCoder/my-own-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=everyoneTheme.myTheme" + formats: null +colors: + bg: "#1C1B26" + fg: "#FFA700" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 289 + pair: null + contrast: + fg: 63.8 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.4 + brightRed: 38 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/d2t-colorful-theme--d2t-dark-clean.yaml b/themes/d2t-colorful-theme--d2t-dark-clean.yaml new file mode 100644 index 00000000..91a7e316 --- /dev/null +++ b/themes/d2t-colorful-theme--d2t-dark-clean.yaml @@ -0,0 +1,53 @@ +name: "D2T Colorful Theme (D2T Dark Clean)" +source: + marketplace_id: "dthanhtoan.d2t-colorful-theme" + version: "0.4.0" + installs: 1926 + rating: 4.5 + ratings: 2 + author: "dthanhtoan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dthanhtoan.d2t-colorful-theme" + formats: null +colors: + bg: "#1E2030" + fg: "#E4E7F3" + black: "#6F748E" + red: "#EE8897" + green: "#A7DB94" + yellow: "#EFD59E" + blue: "#8BAEF5" + magenta: "#F6BCE7" + cyan: "#92D8E4" + white: "#949BB8" + brightBlack: "#8188A3" + brightRed: "#EE8897" + brightGreen: "#A7DB94" + brightYellow: "#EFD59E" + brightBlue: "#8BAEF5" + brightMagenta: "#F6BCE7" + brightCyan: "#92D8E4" + brightWhite: "#CBD4F6" +meta: + mode: "dark" + accent: "red" + hue: 278 + pair: null + contrast: + fg: 90.2 + black: 27.4 + red: 52 + green: 74 + yellow: 80.5 + blue: 56.3 + magenta: 74.3 + cyan: 73.9 + white: 46.4 + brightBlack: 36.7 + brightRed: 52 + brightGreen: 74 + brightYellow: 80.5 + brightBlue: 56.3 + brightMagenta: 74.3 + brightCyan: 73.9 + brightWhite: 78.7 diff --git a/themes/d2t-colorful-theme--d2t-dark.yaml b/themes/d2t-colorful-theme--d2t-dark.yaml new file mode 100644 index 00000000..80ccface --- /dev/null +++ b/themes/d2t-colorful-theme--d2t-dark.yaml @@ -0,0 +1,53 @@ +name: "D2T Colorful Theme (D2T Dark)" +source: + marketplace_id: "dthanhtoan.d2t-colorful-theme" + version: "0.4.0" + installs: 1926 + rating: 4.5 + ratings: 2 + author: "dthanhtoan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dthanhtoan.d2t-colorful-theme" + formats: null +colors: + bg: "#24273A" + fg: "#E4E7F3" + black: "#6F748E" + red: "#EE8897" + green: "#A7DB94" + yellow: "#EFD59E" + blue: "#8BAEF5" + magenta: "#F6BCE7" + cyan: "#92D8E4" + white: "#949BB8" + brightBlack: "#8188A3" + brightRed: "#EE8897" + brightGreen: "#A7DB94" + brightYellow: "#EFD59E" + brightBlue: "#8BAEF5" + brightMagenta: "#F6BCE7" + brightCyan: "#92D8E4" + brightWhite: "#CBD4F6" +meta: + mode: "dark" + accent: "red" + hue: 277 + pair: null + contrast: + fg: 89 + black: 26.2 + red: 50.8 + green: 72.8 + yellow: 79.3 + blue: 55.1 + magenta: 73.1 + cyan: 72.7 + white: 45.2 + brightBlack: 35.5 + brightRed: 50.8 + brightGreen: 72.8 + brightYellow: 79.3 + brightBlue: 55.1 + brightMagenta: 73.1 + brightCyan: 72.7 + brightWhite: 77.5 diff --git a/themes/dangerdark.yaml b/themes/dangerdark.yaml new file mode 100644 index 00000000..481956ab --- /dev/null +++ b/themes/dangerdark.yaml @@ -0,0 +1,53 @@ +name: "DangerDark" +source: + marketplace_id: "jynfairchild.dangerdark-theme" + version: "0.1.0" + installs: 614 + rating: 5 + ratings: 1 + author: "jynfairchild" + repo: "https://github.com/jpfairchild/dangergrey-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jynfairchild.dangerdark-theme" + formats: null +colors: + bg: "#1F1F1F" + fg: "#F7F7F7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#C82424" + magenta: "#BC3FBC" + cyan: "#E2AF37" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#EA5C3B" + brightMagenta: "#D670D6" + brightCyan: "#DBAE29" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 100.6 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 23.4 + magenta: 28.8 + cyan: 61.5 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 38.6 + brightMagenta: 44.4 + brightCyan: 59.9 + brightWhite: 89 diff --git a/themes/dantes.yaml b/themes/dantes.yaml new file mode 100644 index 00000000..ad17e3b0 --- /dev/null +++ b/themes/dantes.yaml @@ -0,0 +1,53 @@ +name: "Dantes" +source: + marketplace_id: "dantes.dantes" + version: "2.1.1" + installs: 156 + rating: 0 + ratings: 0 + author: "Dantes" + repo: "https://github.com/dantestheme/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=dantes.dantes" + formats: null +colors: + bg: "#1D2128" + fg: "#FAFAFA" + black: "#1D2128" + red: "#F01900" + green: "#14EB96" + yellow: "#FFF94B" + blue: "#0060E0" + magenta: "#FF3CE1" + cyan: "#00D2FF" + white: "#FAFAFA" + brightBlack: "#00B3F5" + brightRed: "#FF505F" + brightGreen: "#53FEBE" + brightYellow: "#FFEA7F" + brightBlue: "#00B3F5" + brightMagenta: "#FF6BBB" + brightCyan: "#00DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 262 + pair: null + contrast: + fg: 102.3 + black: 0 + red: 31.9 + green: 75.4 + yellow: 97.8 + blue: 22.5 + magenta: 44.4 + cyan: 67.7 + white: 102.3 + brightBlack: 53.3 + brightRed: 41.5 + brightGreen: 87.7 + brightYellow: 91.5 + brightBlue: 53.3 + brightMagenta: 49.6 + brightCyan: 72.9 + brightWhite: 105.6 diff --git a/themes/darcula-contrast--darcula-contrast-min.yaml b/themes/darcula-contrast--darcula-contrast-min.yaml new file mode 100644 index 00000000..bfc6af99 --- /dev/null +++ b/themes/darcula-contrast--darcula-contrast-min.yaml @@ -0,0 +1,53 @@ +name: "Darcula Contrast (Darcula Contrast Min)" +source: + marketplace_id: "nashpatty.darculacontrast" + version: "1.3.1" + installs: 1845 + rating: 0 + ratings: 0 + author: "nashpatty" + repo: "https://github.com/nashpatty/vscode-darcula" + url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.darculacontrast" + formats: null +colors: + bg: "#1E1F22" + fg: "#BCBEC4" + black: "#000000" + red: "#FA6675" + green: "#6AAB73" + yellow: "#CF8E6D" + blue: "#56A8F5" + magenta: "#C77DBB" + cyan: "#2AACB8" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FA6675" + brightGreen: "#6AAB73" + brightYellow: "#CF8E6D" + brightBlue: "#56A8F5" + brightMagenta: "#C77DBB" + brightCyan: "#2AACB8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.5 + black: 0 + red: 45.2 + green: 47.1 + yellow: 47.5 + blue: 50.7 + magenta: 43.8 + cyan: 47.5 + white: 105.9 + brightBlack: 0 + brightRed: 45.2 + brightGreen: 47.1 + brightYellow: 47.5 + brightBlue: 50.7 + brightMagenta: 43.8 + brightCyan: 47.5 + brightWhite: 105.9 diff --git a/themes/darcula-contrast--darcula-contrast.yaml b/themes/darcula-contrast--darcula-contrast.yaml new file mode 100644 index 00000000..1c250337 --- /dev/null +++ b/themes/darcula-contrast--darcula-contrast.yaml @@ -0,0 +1,53 @@ +name: "Darcula Contrast (Darcula Contrast)" +source: + marketplace_id: "nashpatty.darculacontrast" + version: "1.3.1" + installs: 1845 + rating: 0 + ratings: 0 + author: "nashpatty" + repo: "https://github.com/nashpatty/vscode-darcula" + url: "https://marketplace.visualstudio.com/items?itemName=nashpatty.darculacontrast" + formats: null +colors: + bg: "#1E1F22" + fg: "#A9B7C6" + black: "#000000" + red: "#BC3F3C" + green: "#6A8759" + yellow: "#FFC66D" + blue: "#6897BB" + magenta: "#9876AA" + cyan: "#BCA5C4" + white: "#F5F5F5" + brightBlack: "#000000" + brightRed: "#BC3F3C" + brightGreen: "#6A8759" + brightYellow: "#FFC66D" + brightBlue: "#6897BB" + brightMagenta: "#9876AA" + brightCyan: "#BCA5C4" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 60.5 + black: 0 + red: 24 + green: 32.2 + yellow: 76 + blue: 41.6 + magenta: 34.1 + cyan: 55.7 + white: 99.3 + brightBlack: 0 + brightRed: 24 + brightGreen: 32.2 + brightYellow: 76 + brightBlue: 41.6 + brightMagenta: 34.1 + brightCyan: 55.7 + brightWhite: 99.3 diff --git a/themes/darcula-solid.yaml b/themes/darcula-solid.yaml new file mode 100644 index 00000000..a6c7fe6e --- /dev/null +++ b/themes/darcula-solid.yaml @@ -0,0 +1,53 @@ +name: "Darcula Solid" +source: + marketplace_id: "jussiemion.darcula-solid" + version: "1.2.1" + installs: 3517 + rating: 5 + ratings: 5 + author: "jussiemion" + repo: "https://github.com/jussiemion/darcula-solid" + url: "https://marketplace.visualstudio.com/items?itemName=jussiemion.darcula-solid" + formats: null +colors: + bg: "#181818" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 74.6 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.5 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/darcula-theme--jetbrains-port.yaml b/themes/darcula-theme--jetbrains-port.yaml new file mode 100644 index 00000000..ab6d12fd --- /dev/null +++ b/themes/darcula-theme--jetbrains-port.yaml @@ -0,0 +1,53 @@ +name: "Darcula Theme (JetBrains Port)" +source: + marketplace_id: "tockn.darcula-port" + version: "1.0.1" + installs: 448 + rating: 0 + ratings: 0 + author: "tockn" + repo: "https://github.com/tockn/darcula-port" + url: "https://marketplace.visualstudio.com/items?itemName=tockn.darcula-port" + formats: null +colors: + bg: "#2B2B2B" + fg: "#A9B7C6" + black: "#000000" + red: "#FF6B68" + green: "#629755" + yellow: "#FFC66D" + blue: "#6897BB" + magenta: "#9876AA" + cyan: "#6A8759" + white: "#A9B7C6" + brightBlack: "#606366" + brightRed: "#FF6B68" + brightGreen: "#629755" + brightYellow: "#FFC66D" + brightBlue: "#6897BB" + brightMagenta: "#9876AA" + brightCyan: "#6A8759" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 58.5 + black: 0 + red: 45 + green: 35.7 + yellow: 73.9 + blue: 39.6 + magenta: 32 + cyan: 30.2 + white: 58.5 + brightBlack: 17.6 + brightRed: 45 + brightGreen: 35.7 + brightYellow: 73.9 + brightBlue: 39.6 + brightMagenta: 32 + brightCyan: 30.2 + brightWhite: 103.8 diff --git a/themes/dark-alchemy-theme--darkalchemy-basic.yaml b/themes/dark-alchemy-theme--darkalchemy-basic.yaml new file mode 100644 index 00000000..4605e910 --- /dev/null +++ b/themes/dark-alchemy-theme--darkalchemy-basic.yaml @@ -0,0 +1,53 @@ +name: "Dark Alchemy Theme (DarkAlchemy-Basic)" +source: + marketplace_id: "DarkAlchemy.darkalchemy" + version: "0.0.3" + installs: 577 + rating: 5 + ratings: 2 + author: "Dark Alchemy" + repo: "https://github.com/dark-alchemy/darkalchemy-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkAlchemy.darkalchemy" + formats: null +colors: + bg: "#151515" + fg: "#FFFFFF" + black: "#000000" + red: "#DA8548" + green: "#23D18B" + yellow: "#ECBE7B" + blue: "#00BFF8" + magenta: "#BC3FBC" + cyan: "#46D9FF" + white: "#E5E5E5" + brightBlack: "#CFCFCF" + brightRed: "#DA8548" + brightGreen: "#23D18B" + brightYellow: "#ECBE7B" + brightBlue: "#00BFF8" + brightMagenta: "#D670D6" + brightCyan: "#46D9FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.1 + black: 0 + red: 47 + green: 63.7 + yellow: 71 + blue: 60.1 + magenta: 29.9 + cyan: 73.3 + white: 90.2 + brightBlack: 76.6 + brightRed: 47 + brightGreen: 63.7 + brightYellow: 71 + brightBlue: 60.1 + brightMagenta: 45.6 + brightCyan: 73.3 + brightWhite: 90.2 diff --git a/themes/dark-alchemy-theme--night-dragon.yaml b/themes/dark-alchemy-theme--night-dragon.yaml new file mode 100644 index 00000000..f9295e73 --- /dev/null +++ b/themes/dark-alchemy-theme--night-dragon.yaml @@ -0,0 +1,53 @@ +name: "Dark Alchemy Theme (Night Dragon)" +source: + marketplace_id: "DarkAlchemy.darkalchemy" + version: "0.0.3" + installs: 577 + rating: 5 + ratings: 2 + author: "Dark Alchemy" + repo: "https://github.com/dark-alchemy/darkalchemy-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkAlchemy.darkalchemy" + formats: null +colors: + bg: "#151824" + fg: "#FFFFFF" + black: "#000000" + red: "#DA8548" + green: "#23D18B" + yellow: "#ECBE7B" + blue: "#00BFF8" + magenta: "#BC3FBC" + cyan: "#46D9FF" + white: "#E5E5E5" + brightBlack: "#CFCFCF" + brightRed: "#DA8548" + brightGreen: "#23D18B" + brightYellow: "#ECBE7B" + brightBlue: "#00BFF8" + brightMagenta: "#D670D6" + brightCyan: "#46D9FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 273 + pair: null + contrast: + fg: 106.7 + black: 0 + red: 46.7 + green: 63.4 + yellow: 70.7 + blue: 59.8 + magenta: 29.6 + cyan: 72.9 + white: 89.8 + brightBlack: 76.3 + brightRed: 46.7 + brightGreen: 63.4 + brightYellow: 70.7 + brightBlue: 59.8 + brightMagenta: 45.2 + brightCyan: 72.9 + brightWhite: 89.8 diff --git a/themes/dark-alchemy-theme--nightfox.yaml b/themes/dark-alchemy-theme--nightfox.yaml new file mode 100644 index 00000000..74f99572 --- /dev/null +++ b/themes/dark-alchemy-theme--nightfox.yaml @@ -0,0 +1,53 @@ +name: "Dark Alchemy Theme (Nightfox)" +source: + marketplace_id: "DarkAlchemy.darkalchemy" + version: "0.0.3" + installs: 577 + rating: 5 + ratings: 2 + author: "Dark Alchemy" + repo: "https://github.com/dark-alchemy/darkalchemy-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkAlchemy.darkalchemy" + formats: null +colors: + bg: "#212E3F" + fg: "#FFFFFF" + black: "#000000" + red: "#DA8548" + green: "#23D18B" + yellow: "#ECBE7B" + blue: "#00BFF8" + magenta: "#BC3FBC" + cyan: "#46D9FF" + white: "#E5E5E5" + brightBlack: "#CFCFCF" + brightRed: "#DA8548" + brightGreen: "#23D18B" + brightYellow: "#ECBE7B" + brightBlue: "#00BFF8" + brightMagenta: "#D670D6" + brightCyan: "#46D9FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 255 + pair: null + contrast: + fg: 103.4 + black: 0 + red: 43.3 + green: 60 + yellow: 67.4 + blue: 56.4 + magenta: 26.2 + cyan: 69.6 + white: 86.5 + brightBlack: 73 + brightRed: 43.3 + brightGreen: 60 + brightYellow: 67.4 + brightBlue: 56.4 + brightMagenta: 41.9 + brightCyan: 69.6 + brightWhite: 86.5 diff --git a/themes/dark-and-purple.yaml b/themes/dark-and-purple.yaml new file mode 100644 index 00000000..e9bfeede --- /dev/null +++ b/themes/dark-and-purple.yaml @@ -0,0 +1,53 @@ +name: "dark and purple" +source: + marketplace_id: "deviniJ.theme-black-purple" + version: "0.0.0" + installs: 166 + rating: 0 + ratings: 0 + author: "deviniJ" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=deviniJ.theme-black-purple" + formats: null +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#A37171" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 33.8 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/dark-aura-theme.yaml b/themes/dark-aura-theme.yaml new file mode 100644 index 00000000..41d05c91 --- /dev/null +++ b/themes/dark-aura-theme.yaml @@ -0,0 +1,53 @@ +name: "Dark Aura Theme" +source: + marketplace_id: "Furqan.dark-aura-theme" + version: "1.0.0" + installs: 854 + rating: 5 + ratings: 1 + author: "Furqan" + repo: "https://github.com/furqanistic/darkaura" + url: "https://marketplace.visualstudio.com/items?itemName=Furqan.dark-aura-theme" + formats: null +colors: + bg: "#0A0A0F" + fg: "#E8E8F0" + black: "#2A2A3E" + red: "#FF6B6B" + green: "#51FA7B" + yellow: "#FFD93D" + blue: "#74C0FC" + magenta: "#D0BFFF" + cyan: "#00FFFF" + white: "#E8E8F0" + brightBlack: "#5A5A7A" + brightRed: "#FFA8A8" + brightGreen: "#8CFF8C" + brightYellow: "#FFE66D" + brightBlue: "#A4CAFE" + brightMagenta: "#E5D5FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 285 + pair: null + contrast: + fg: 93.1 + black: 0 + red: 48.9 + green: 85.8 + yellow: 85.1 + blue: 64.6 + magenta: 73.3 + cyan: 92 + white: 93.1 + brightBlack: 19.1 + brightRed: 68.1 + brightGreen: 91.7 + brightYellow: 91.5 + brightBlue: 72.8 + brightMagenta: 85.2 + brightCyan: 93.8 + brightWhite: 107.7 diff --git a/themes/dark-color-theme.yaml b/themes/dark-color-theme.yaml new file mode 100644 index 00000000..662f322f --- /dev/null +++ b/themes/dark-color-theme.yaml @@ -0,0 +1,53 @@ +name: "dark-color-theme" +source: + marketplace_id: "Rsanttos.dark-color-theme" + version: "0.0.0" + installs: 107 + rating: 0 + ratings: 0 + author: "Rsanttos" + repo: "https://github.com/vricardo5/dark-themev1" + url: "https://marketplace.visualstudio.com/items?itemName=Rsanttos.dark-color-theme" + formats: null +colors: + bg: "#151B26" + fg: "#D4D4D4" + black: "#640606" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#717171" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 262 + pair: null + contrast: + fg: 79 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 26.4 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/dark-dust.yaml b/themes/dark-dust.yaml new file mode 100644 index 00000000..f12c319a --- /dev/null +++ b/themes/dark-dust.yaml @@ -0,0 +1,53 @@ +name: "Dark Dust" +source: + marketplace_id: "snelusha.dark-dust" + version: "1.0.0" + installs: 725 + rating: 5 + ratings: 2 + author: "snelusha" + repo: "https://github.com/SNelusha/dark-dust-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=snelusha.dark-dust" + formats: null +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#14C159" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 33.5 + green: 57.2 + yellow: 45.4 + blue: 46.5 + magenta: 35.9 + cyan: 49.3 + white: 87.4 + brightBlack: 12.3 + brightRed: 42.9 + brightGreen: 73.6 + brightYellow: 51.5 + brightBlue: 60.5 + brightMagenta: 47.1 + brightCyan: 64.6 + brightWhite: 79.8 diff --git a/themes/dark-future--dark-future-cyberpunk-2077.yaml b/themes/dark-future--dark-future-cyberpunk-2077.yaml new file mode 100644 index 00000000..5022e1e9 --- /dev/null +++ b/themes/dark-future--dark-future-cyberpunk-2077.yaml @@ -0,0 +1,53 @@ +name: "Dark Future (Dark Future Cyberpunk 2077)" +source: + marketplace_id: "SashaPetrenko.dark-future" + version: "0.0.19" + installs: 2065 + rating: 5 + ratings: 1 + author: "Sasha Petrenko" + repo: "https://github.com/AP6YC/dark-future" + url: "https://marketplace.visualstudio.com/items?itemName=SashaPetrenko.dark-future" + formats: null +colors: + bg: "#101116" + fg: "#00D4B1" + black: "#10D4B0" + red: "#940303" + green: "#0059FF" + yellow: "#1A1B03" + blue: "#004CF1" + magenta: "#94058A" + cyan: "#029790" + white: "#311B92" + brightBlack: "#02ADF1" + brightRed: "#BE0000" + brightGreen: "#00FF9C" + brightYellow: "#D0F30C" + brightBlue: "#00A2FF" + brightMagenta: "#E215D6" + brightCyan: "#08E1D7" + brightWhite: "#2EB8F8" +meta: + mode: "dark" + accent: "pink" + hue: 276 + pair: null + contrast: + fg: 66.5 + black: 66.5 + red: 12.8 + green: 25.4 + yellow: 0 + blue: 21.1 + magenta: 16.1 + cyan: 38.2 + white: 0 + brightBlack: 52.3 + brightRed: 21.5 + brightGreen: 87.7 + brightYellow: 90.1 + brightBlue: 48.8 + brightMagenta: 36.5 + brightCyan: 74.5 + brightWhite: 57.7 diff --git a/themes/dark-green-jungle-theme.yaml b/themes/dark-green-jungle-theme.yaml new file mode 100644 index 00000000..fbbd49fb --- /dev/null +++ b/themes/dark-green-jungle-theme.yaml @@ -0,0 +1,53 @@ +name: "Dark Green Jungle theme" +source: + marketplace_id: "moondevaa.DarkGreenJungle" + version: "0.4.3" + installs: 29676 + rating: 5 + ratings: 5 + author: "moondevaa" + repo: "https://github.com/AaBbdev29/Dark-Green-Jungle" + url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.DarkGreenJungle" + formats: null +colors: + bg: "#18211E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 173 + pair: null + contrast: + fg: 78.5 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21 + brightRed: 37.6 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/dark-halloween.yaml b/themes/dark-halloween.yaml new file mode 100644 index 00000000..e550ba5d --- /dev/null +++ b/themes/dark-halloween.yaml @@ -0,0 +1,53 @@ +name: "Dark Halloween" +source: + marketplace_id: "naberens.dark-halloween" + version: "0.4.0" + installs: 898 + rating: 5 + ratings: 1 + author: "naberens" + repo: "https://github.com/berensn/halloween" + url: "https://marketplace.visualstudio.com/items?itemName=naberens.dark-halloween" + formats: null +colors: + bg: "#151317" + fg: "#C0BCBA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 66 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.9 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/dark-kai.yaml b/themes/dark-kai.yaml new file mode 100644 index 00000000..73247f22 --- /dev/null +++ b/themes/dark-kai.yaml @@ -0,0 +1,53 @@ +name: "Dark kai" +source: + marketplace_id: "MartinPalomaresGarcia.dark-kai" + version: "0.7.0" + installs: 1009 + rating: 5 + ratings: 3 + author: "Martin Palomares Garcia" + repo: "https://github.com/MartinPaGarcia/contrast-kai" + url: "https://marketplace.visualstudio.com/items?itemName=MartinPalomaresGarcia.dark-kai" + formats: null +colors: + bg: "#171717" + fg: "#D3D0D0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#CBCBCB" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 77.4 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 106.9 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 74.1 diff --git a/themes/dark-lavender--dark-lavender.yaml b/themes/dark-lavender--dark-lavender.yaml new file mode 100644 index 00000000..90620c0b --- /dev/null +++ b/themes/dark-lavender--dark-lavender.yaml @@ -0,0 +1,53 @@ +name: "Dark Lavender (Dark Lavender)" +source: + marketplace_id: "t7yang.dark-lavender" + version: "6.2.1" + installs: 8092 + rating: 5 + ratings: 6 + author: "t7yang" + repo: "https://github.com/t7yang/dark-lavender" + url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" + formats: null +colors: + bg: "#07090F" + fg: "#CFD8DC" + black: "#263238" + red: "#D32F2F" + green: "#388E3C" + yellow: "#FBC02D" + blue: "#0D47A1" + magenta: "#C2185B" + cyan: "#0097A7" + white: "#607D8B" + brightBlack: "#455A64" + brightRed: "#F44336" + brightGreen: "#4CAF50" + brightYellow: "#FFEB3B" + brightBlue: "#2196F3" + brightMagenta: "#E91E63" + brightCyan: "#00BCD4" + brightWhite: "#90A4AE" +meta: + mode: "dark" + accent: "red" + hue: 268 + pair: null + contrast: + fg: 81.9 + black: 0 + red: 28.7 + green: 33.6 + yellow: 74 + blue: 13.1 + magenta: 24.2 + cyan: 39.5 + white: 31.3 + brightBlack: 16.8 + brightRed: 38.6 + brightGreen: 48.5 + brightYellow: 93.2 + brightBlue: 43.9 + brightMagenta: 33.5 + brightCyan: 57.4 + brightWhite: 51.2 diff --git a/themes/dark-lavender-dark-lavender-black.yaml b/themes/dark-lavender-dark-lavender-black.yaml new file mode 100644 index 00000000..cf41796b --- /dev/null +++ b/themes/dark-lavender-dark-lavender-black.yaml @@ -0,0 +1,53 @@ +name: "Dark Lavender (Dark Lavender (Black))" +source: + marketplace_id: "t7yang.dark-lavender" + version: "6.2.1" + installs: 8092 + rating: 5 + ratings: 6 + author: "t7yang" + repo: "https://github.com/t7yang/dark-lavender" + url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" + formats: null +colors: + bg: "#010109" + fg: "#CFD8DC" + black: "#263238" + red: "#D32F2F" + green: "#388E3C" + yellow: "#FBC02D" + blue: "#0D47A1" + magenta: "#C2185B" + cyan: "#0097A7" + white: "#607D8B" + brightBlack: "#455A64" + brightRed: "#F44336" + brightGreen: "#4CAF50" + brightYellow: "#FFEB3B" + brightBlue: "#2196F3" + brightMagenta: "#E91E63" + brightCyan: "#00BCD4" + brightWhite: "#90A4AE" +meta: + mode: "dark" + accent: "red" + hue: 276 + pair: null + contrast: + fg: 82 + black: 0 + red: 28.8 + green: 33.7 + yellow: 74.1 + blue: 13.2 + magenta: 24.3 + cyan: 39.6 + white: 31.4 + brightBlack: 16.9 + brightRed: 38.7 + brightGreen: 48.6 + brightYellow: 93.4 + brightBlue: 44 + brightMagenta: 33.6 + brightCyan: 57.5 + brightWhite: 51.3 diff --git a/themes/dark-lavender-dark-lavender-soft.yaml b/themes/dark-lavender-dark-lavender-soft.yaml new file mode 100644 index 00000000..4506eaa2 --- /dev/null +++ b/themes/dark-lavender-dark-lavender-soft.yaml @@ -0,0 +1,53 @@ +name: "Dark Lavender (Dark Lavender (Soft))" +source: + marketplace_id: "t7yang.dark-lavender" + version: "6.2.1" + installs: 8092 + rating: 5 + ratings: 6 + author: "t7yang" + repo: "https://github.com/t7yang/dark-lavender" + url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" + formats: null +colors: + bg: "#13151E" + fg: "#CFD8DC" + black: "#263238" + red: "#D32F2F" + green: "#388E3C" + yellow: "#FBC02D" + blue: "#0D47A1" + magenta: "#C2185B" + cyan: "#0097A7" + white: "#607D8B" + brightBlack: "#455A64" + brightRed: "#F44336" + brightGreen: "#4CAF50" + brightYellow: "#FFEB3B" + brightBlue: "#2196F3" + brightMagenta: "#E91E63" + brightCyan: "#00BCD4" + brightWhite: "#90A4AE" +meta: + mode: "dark" + accent: "red" + hue: 275 + pair: null + contrast: + fg: 81.1 + black: 0 + red: 28 + green: 32.8 + yellow: 73.3 + blue: 12.4 + magenta: 23.5 + cyan: 38.8 + white: 30.5 + brightBlack: 16 + brightRed: 37.9 + brightGreen: 47.7 + brightYellow: 92.5 + brightBlue: 43.2 + brightMagenta: 32.8 + brightCyan: 56.6 + brightWhite: 50.4 diff --git a/themes/dark-lavender-dark-lavender-tailwind-soft.yaml b/themes/dark-lavender-dark-lavender-tailwind-soft.yaml new file mode 100644 index 00000000..94bfad6e --- /dev/null +++ b/themes/dark-lavender-dark-lavender-tailwind-soft.yaml @@ -0,0 +1,53 @@ +name: "Dark Lavender (Dark Lavender (Tailwind Soft))" +source: + marketplace_id: "t7yang.dark-lavender" + version: "6.2.1" + installs: 8092 + rating: 5 + ratings: 6 + author: "t7yang" + repo: "https://github.com/t7yang/dark-lavender" + url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" + formats: null +colors: + bg: "#13151E" + fg: "#F1F5F9" + black: "#0F172A" + red: "#BE123C" + green: "#047857" + yellow: "#A16207" + blue: "#1E3A8A" + magenta: "#BE185D" + cyan: "#0E7490" + white: "#64748B" + brightBlack: "#334155" + brightRed: "#F43F5E" + brightGreen: "#10B981" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#EC4899" + brightCyan: "#06B6D4" + brightWhite: "#CBD5E1" +meta: + mode: "dark" + accent: "orange" + hue: 275 + pair: null + contrast: + fg: 100.1 + black: 0 + red: 21.8 + green: 24.1 + yellow: 27.1 + blue: 8.1 + magenta: 22.7 + cyan: 24.7 + white: 27.8 + brightBlack: 7.7 + brightRed: 38 + brightGreen: 52 + brightYellow: 65.2 + brightBlue: 36.9 + brightMagenta: 39.1 + brightCyan: 54 + brightWhite: 79.5 diff --git a/themes/dark-lavender-dark-lavender-tailwind.yaml b/themes/dark-lavender-dark-lavender-tailwind.yaml new file mode 100644 index 00000000..a73c0fef --- /dev/null +++ b/themes/dark-lavender-dark-lavender-tailwind.yaml @@ -0,0 +1,53 @@ +name: "Dark Lavender (Dark Lavender (Tailwind))" +source: + marketplace_id: "t7yang.dark-lavender" + version: "6.2.1" + installs: 8092 + rating: 5 + ratings: 6 + author: "t7yang" + repo: "https://github.com/t7yang/dark-lavender" + url: "https://marketplace.visualstudio.com/items?itemName=t7yang.dark-lavender" + formats: null +colors: + bg: "#07090F" + fg: "#F1F5F9" + black: "#0F172A" + red: "#BE123C" + green: "#047857" + yellow: "#A16207" + blue: "#1E3A8A" + magenta: "#BE185D" + cyan: "#0E7490" + white: "#64748B" + brightBlack: "#334155" + brightRed: "#F43F5E" + brightGreen: "#10B981" + brightYellow: "#EAB308" + brightBlue: "#3B82F6" + brightMagenta: "#EC4899" + brightCyan: "#06B6D4" + brightWhite: "#CBD5E1" +meta: + mode: "dark" + accent: "orange" + hue: 268 + pair: null + contrast: + fg: 100.8 + black: 0 + red: 22.5 + green: 24.8 + yellow: 27.8 + blue: 8.8 + magenta: 23.4 + cyan: 25.4 + white: 28.5 + brightBlack: 8.4 + brightRed: 38.7 + brightGreen: 52.7 + brightYellow: 66 + brightBlue: 37.7 + brightMagenta: 39.9 + brightCyan: 54.8 + brightWhite: 80.3 diff --git a/themes/dark-m-theme.yaml b/themes/dark-m-theme.yaml new file mode 100644 index 00000000..466434e5 --- /dev/null +++ b/themes/dark-m-theme.yaml @@ -0,0 +1,53 @@ +name: "dark_m_theme" +source: + marketplace_id: "minken.dark-m-theme" + version: "0.2.16" + installs: 289 + rating: 0 + ratings: 0 + author: "minken" + repo: "git://https://github.com/magnushagglund/theme/repository" + url: "https://marketplace.visualstudio.com/items?itemName=minken.dark-m-theme" + formats: null +colors: + bg: "#2D2D2D" + fg: "#84FABF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 85.7 + black: 0 + red: 23.3 + green: 49.6 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.6 + brightMagenta: 41.9 + brightCyan: 52 + brightWhite: 86.6 diff --git a/themes/dark-magic-themes--dark-magic-dracula.yaml b/themes/dark-magic-themes--dark-magic-dracula.yaml new file mode 100644 index 00000000..16c6c729 --- /dev/null +++ b/themes/dark-magic-themes--dark-magic-dracula.yaml @@ -0,0 +1,53 @@ +name: "Dark Magic Themes (Dark Magic Dracula)" +source: + marketplace_id: "DavidMorais.dark-magic-themes" + version: "0.3.1" + installs: 47351 + rating: 5 + ratings: 6 + author: "David Morais" + repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" + formats: null +colors: + bg: "#282A36" + fg: "#CCE3F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + pair: null + contrast: + fg: 83.8 + black: 0 + red: 23.8 + green: 50 + yellow: 82.7 + blue: 24.5 + magenta: 26.8 + cyan: 44.6 + white: 87.1 + brightBlack: 19.1 + brightRed: 35.6 + brightGreen: 60.6 + brightYellow: 92.7 + brightBlue: 37 + brightMagenta: 42.4 + brightCyan: 52.4 + brightWhite: 87.1 diff --git a/themes/dark-magic-themes--dark-magic-frankenstein.yaml b/themes/dark-magic-themes--dark-magic-frankenstein.yaml new file mode 100644 index 00000000..fbd73b50 --- /dev/null +++ b/themes/dark-magic-themes--dark-magic-frankenstein.yaml @@ -0,0 +1,53 @@ +name: "Dark Magic Themes (Dark Magic Frankenstein)" +source: + marketplace_id: "DavidMorais.dark-magic-themes" + version: "0.3.1" + installs: 47351 + rating: 5 + ratings: 6 + author: "David Morais" + repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" + formats: null +colors: + bg: "#0F1715" + fg: "#B6E8CF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 178 + pair: null + contrast: + fg: 85.1 + black: 0 + red: 26.9 + green: 53.1 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.2 diff --git a/themes/dark-magic-themes--dark-magic-light.yaml b/themes/dark-magic-themes--dark-magic-light.yaml new file mode 100644 index 00000000..00a2a708 --- /dev/null +++ b/themes/dark-magic-themes--dark-magic-light.yaml @@ -0,0 +1,53 @@ +name: "Dark Magic Themes (Dark Magic - Light)" +source: + marketplace_id: "DavidMorais.dark-magic-themes" + version: "0.3.1" + installs: 47351 + rating: 5 + ratings: 6 + author: "David Morais" + repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" + formats: null +colors: + bg: "#EAEAFF" + fg: "#3E3F54" + black: "#111111" + red: "#D90000" + green: "#00FF28" + yellow: "#CBA402" + blue: "#009FFF" + magenta: "#FF003C" + cyan: "#00FFFF" + white: "#E3E3FF" + brightBlack: "#333333" + brightRed: "#FF0000" + brightGreen: "#00FF80" + brightYellow: "#FFCE00" + brightBlue: "#004BFF" + brightMagenta: "#FF006B" + brightCyan: "#00FFFF" + brightWhite: "#F0F0FF" +meta: + mode: "light" + accent: "green" + hue: 286 + pair: null + contrast: + fg: 82.4 + black: 93.9 + red: 62 + green: 0 + yellow: 35 + blue: 42.2 + magenta: 52.3 + cyan: 0 + white: 0 + brightBlack: 87.2 + brightRed: 52.6 + brightGreen: 0 + brightYellow: 11.3 + brightBlue: 67.4 + brightMagenta: 51.5 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/dark-magic-themes--dark-magic-night.yaml b/themes/dark-magic-themes--dark-magic-night.yaml new file mode 100644 index 00000000..f462b924 --- /dev/null +++ b/themes/dark-magic-themes--dark-magic-night.yaml @@ -0,0 +1,53 @@ +name: "Dark Magic Themes (Dark Magic Night)" +source: + marketplace_id: "DavidMorais.dark-magic-themes" + version: "0.3.1" + installs: 47351 + rating: 5 + ratings: 6 + author: "David Morais" + repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" + formats: null +colors: + bg: "#111111" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 75.2 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/dark-magic-themes--dark-magic-nord.yaml b/themes/dark-magic-themes--dark-magic-nord.yaml new file mode 100644 index 00000000..7868dbe6 --- /dev/null +++ b/themes/dark-magic-themes--dark-magic-nord.yaml @@ -0,0 +1,53 @@ +name: "Dark Magic Themes (Dark Magic Nord)" +source: + marketplace_id: "DavidMorais.dark-magic-themes" + version: "0.3.1" + installs: 47351 + rating: 5 + ratings: 6 + author: "David Morais" + repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" + formats: null +colors: + bg: "#2E3440" + fg: "#D8DEE9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 80.3 + black: 0 + red: 21.6 + green: 47.9 + yellow: 80.5 + blue: 22.4 + magenta: 24.7 + cyan: 42.5 + white: 84.9 + brightBlack: 17 + brightRed: 33.5 + brightGreen: 58.5 + brightYellow: 90.6 + brightBlue: 34.9 + brightMagenta: 40.3 + brightCyan: 50.3 + brightWhite: 84.9 diff --git a/themes/dark-magic-themes--dark-magic-tokyo.yaml b/themes/dark-magic-themes--dark-magic-tokyo.yaml new file mode 100644 index 00000000..ec0d698e --- /dev/null +++ b/themes/dark-magic-themes--dark-magic-tokyo.yaml @@ -0,0 +1,53 @@ +name: "Dark Magic Themes (Dark Magic Tokyo)" +source: + marketplace_id: "DavidMorais.dark-magic-themes" + version: "0.3.1" + installs: 47351 + rating: 5 + ratings: 6 + author: "David Morais" + repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" + formats: null +colors: + bg: "#16161E" + fg: "#787C99" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + pair: null + contrast: + fg: 32.6 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/dark-magic-themes--dark-magic.yaml b/themes/dark-magic-themes--dark-magic.yaml new file mode 100644 index 00000000..3327185b --- /dev/null +++ b/themes/dark-magic-themes--dark-magic.yaml @@ -0,0 +1,53 @@ +name: "Dark Magic Themes (Dark Magic)" +source: + marketplace_id: "DavidMorais.dark-magic-themes" + version: "0.3.1" + installs: 47351 + rating: 5 + ratings: 6 + author: "David Morais" + repo: "https://github.com/Dark-Magic-Studios/dark-magic-themes" + url: "https://marketplace.visualstudio.com/items?itemName=DavidMorais.dark-magic-themes" + formats: null +colors: + bg: "#0F0F17" + fg: "#BBCCEE" + black: "#111111" + red: "#BB3232" + green: "#00FFAB" + yellow: "#FBDE66" + blue: "#4C89AE" + magenta: "#E04C6F" + cyan: "#3D9393" + white: "#D4DBE8" + brightBlack: "#333333" + brightRed: "#BB3232" + brightGreen: "#66EEAA" + brightYellow: "#FFD31B" + brightBlue: "#4F6BAE" + brightMagenta: "#C3115C" + brightCyan: "#52F3F3" + brightWhite: "#111111" +meta: + mode: "dark" + accent: "red" + hue: 285 + pair: null + contrast: + fg: 74.9 + black: 0 + red: 23.6 + green: 88.3 + yellow: 86.9 + blue: 35.7 + magenta: 36.1 + cyan: 37.6 + white: 84.1 + brightBlack: 0 + brightRed: 23.6 + brightGreen: 81.3 + brightYellow: 82.1 + brightBlue: 25.7 + brightMagenta: 23.9 + brightCyan: 86.1 + brightWhite: 0 diff --git a/themes/dark-minimal-line-free.yaml b/themes/dark-minimal-line-free.yaml new file mode 100644 index 00000000..473482d2 --- /dev/null +++ b/themes/dark-minimal-line-free.yaml @@ -0,0 +1,53 @@ +name: "Dark Minimal Line Free" +source: + marketplace_id: "my-custom-vscode-publisher.darkminimallinefree" + version: "0.0.4" + installs: 78 + rating: 0 + ratings: 0 + author: "my-custom-vscode-publisher" + repo: "https://github.com/pvRod/my-custom-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=my-custom-vscode-publisher.darkminimallinefree" + formats: null +colors: + bg: "#0F131A" + fg: "#E6EDF3" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 262 + pair: null + contrast: + fg: 94.8 + black: 12.9 + red: 52.4 + green: 52 + yellow: 52.1 + blue: 52.1 + magenta: 52.1 + cyan: 61.2 + white: 63.9 + brightBlack: 29.1 + brightRed: 64.7 + brightGreen: 65.3 + brightYellow: 64.6 + brightBlue: 64.6 + brightMagenta: 64.5 + brightCyan: 69.8 + brightWhite: 107.2 diff --git a/themes/dark-minimal-theme.yaml b/themes/dark-minimal-theme.yaml new file mode 100644 index 00000000..16a97818 --- /dev/null +++ b/themes/dark-minimal-theme.yaml @@ -0,0 +1,53 @@ +name: "Dark Minimal Theme" +source: + marketplace_id: "BeanZ.dark-minimal-matte-theme" + version: "0.2.2" + installs: 557 + rating: 0 + ratings: 0 + author: "BeanZ" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=BeanZ.dark-minimal-matte-theme" + formats: null +colors: + bg: "#0A0A0A" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#CDFF42" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#67FF8A" + brightYellow: "#B9FF42" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 60.3 + black: 0 + red: 27.6 + green: 96.4 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 89.6 + brightYellow: 94.3 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/dark-mode--dark-mode.yaml b/themes/dark-mode--dark-mode.yaml new file mode 100644 index 00000000..de3dfbd6 --- /dev/null +++ b/themes/dark-mode--dark-mode.yaml @@ -0,0 +1,53 @@ +name: "Dark Mode (Dark Mode)" +source: + marketplace_id: "philsinatra.macos-dark-mode-theme" + version: "1.1.3" + installs: 60768 + rating: 3.75 + ratings: 4 + author: "Phil Sinatra" + repo: "https://github.com/philsinatra/macos-dark-mode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=philsinatra.macos-dark-mode-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#FFFFFF" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FFC600" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FFC600" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 106 + black: 0 + red: 46.3 + green: 65.4 + yellow: 75.3 + blue: 37.9 + magenta: 63.5 + cyan: 91.9 + white: 106 + brightBlack: 13.8 + brightRed: 46.3 + brightGreen: 65.4 + brightYellow: 75.3 + brightBlue: 37.9 + brightMagenta: 63.5 + brightCyan: 91.9 + brightWhite: 0 diff --git a/themes/dark-modern-one.yaml b/themes/dark-modern-one.yaml new file mode 100644 index 00000000..a1db3f3d --- /dev/null +++ b/themes/dark-modern-one.yaml @@ -0,0 +1,53 @@ +name: "Dark Modern One" +source: + marketplace_id: "nicolaerario.dark-modern-one" + version: "0.3.1" + installs: 3349 + rating: 5 + ratings: 7 + author: "Nicola Erario" + repo: "https://github.com/nicolaerario/dark-modern-one" + url: "https://marketplace.visualstudio.com/items?itemName=nicolaerario.dark-modern-one" + formats: null +colors: + bg: "#1C2026" + fg: "#CCCCCC" + black: "#3F4451" + red: "#E05561" + green: "#66BB6A" + yellow: "#E5C07B" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#FFDF5D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 258 + pair: null + contrast: + fg: 73.6 + black: 7.8 + red: 35.6 + green: 53.6 + yellow: 69.5 + blue: 48.6 + magenta: 38 + cyan: 51.4 + white: 82 + brightBlack: 14.4 + brightRed: 45 + brightGreen: 75.7 + brightYellow: 86.2 + brightBlue: 62.7 + brightMagenta: 49.2 + brightCyan: 66.7 + brightWhite: 89.6 diff --git a/themes/dark-molokai-theme.yaml b/themes/dark-molokai-theme.yaml new file mode 100644 index 00000000..1c6144c1 --- /dev/null +++ b/themes/dark-molokai-theme.yaml @@ -0,0 +1,53 @@ +name: "Dark Molokai Theme" +source: + marketplace_id: "nonylene.dark-molokai-theme" + version: "1.0.10" + installs: 33289 + rating: 5 + ratings: 3 + author: "nonylene" + repo: "https://github.com/nonylene/vscode-dark-molokai-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nonylene.dark-molokai-theme" + formats: null +colors: + bg: "#1B1D1E" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 101.3 + black: 0 + red: 23.9 + green: 52.4 + yellow: 57 + blue: 34 + magenta: 31.5 + cyan: 49.8 + white: 87.8 + brightBlack: 21.4 + brightRed: 36.6 + brightGreen: 76.3 + brightYellow: 83.2 + brightBlue: 49.2 + brightMagenta: 45.9 + brightCyan: 72.8 + brightWhite: 101.3 diff --git a/themes/dark-ocean-theme.yaml b/themes/dark-ocean-theme.yaml new file mode 100644 index 00000000..0ec5de71 --- /dev/null +++ b/themes/dark-ocean-theme.yaml @@ -0,0 +1,53 @@ +name: "Dark Ocean theme" +source: + marketplace_id: "NathanHermes.dark-ocean-theme" + version: "0.0.0" + installs: 494 + rating: 0 + ratings: 0 + author: "NathanHermes" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=NathanHermes.dark-ocean-theme" + formats: null +colors: + bg: "#131622" + fg: "#8F93A2" + black: "#000000" + red: "#E25822" + green: "#14B37D" + yellow: "#F2F27A" + blue: "#3A75C4" + magenta: "#703FAF" + cyan: "#87D3F8" + white: "#F3EFE0" + brightBlack: "#FFFFFF" + brightRed: "#E25822" + brightGreen: "#14B37D" + brightYellow: "#F2F27A" + brightBlue: "#3A75C4" + brightMagenta: "#703FAF" + brightCyan: "#87D3F8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 273 + pair: null + contrast: + fg: 43.3 + black: 0 + red: 36.9 + green: 49.1 + yellow: 94.5 + blue: 28.7 + magenta: 17.4 + cyan: 73.2 + white: 96.3 + brightBlack: 106.9 + brightRed: 36.9 + brightGreen: 49.1 + brightYellow: 94.5 + brightBlue: 28.7 + brightMagenta: 17.4 + brightCyan: 73.2 + brightWhite: 106.9 diff --git a/themes/dark-orange--dark-lime-flat.yaml b/themes/dark-orange--dark-lime-flat.yaml new file mode 100644 index 00000000..fffee6dc --- /dev/null +++ b/themes/dark-orange--dark-lime-flat.yaml @@ -0,0 +1,53 @@ +name: "Dark Orange (Dark Lime Flat)" +source: + marketplace_id: "jannisberndt.dark-orange" + version: "0.4.0" + installs: 21541 + rating: 5 + ratings: 1 + author: "Jannis Berndt" + repo: "https://github.com/jb3rndt/dark-orange" + url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" + formats: null +colors: + bg: "#202226" + fg: "#E1E4E8" + black: "#3F4451" + red: "#E05561" + green: "#98C379" + yellow: "#F69D50" + blue: "#4AA5F0" + magenta: "#C792EA" + cyan: "#82AAFF" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 87.8 + black: 7.4 + red: 35.3 + green: 60.9 + yellow: 58.3 + blue: 48.3 + magenta: 52.4 + cyan: 54.5 + white: 89.2 + brightBlack: 14.1 + brightRed: 44.7 + brightGreen: 75.4 + brightYellow: 59.8 + brightBlue: 62.3 + brightMagenta: 48.9 + brightCyan: 66.4 + brightWhite: 81.6 diff --git a/themes/dark-orange--dark-orange.yaml b/themes/dark-orange--dark-orange.yaml new file mode 100644 index 00000000..54df2def --- /dev/null +++ b/themes/dark-orange--dark-orange.yaml @@ -0,0 +1,53 @@ +name: "Dark Orange (Dark Orange)" +source: + marketplace_id: "jannisberndt.dark-orange" + version: "0.4.0" + installs: 21541 + rating: 5 + ratings: 1 + author: "Jannis Berndt" + repo: "https://github.com/jb3rndt/dark-orange" + url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" + formats: null +colors: + bg: "#24292E" + fg: "#E1E4E8" + black: "#3F4451" + red: "#E05561" + green: "#98C379" + yellow: "#F69D50" + blue: "#4AA5F0" + magenta: "#C792EA" + cyan: "#82AAFF" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 248 + pair: null + contrast: + fg: 86.7 + black: 0 + red: 34.2 + green: 59.8 + yellow: 57.2 + blue: 47.1 + magenta: 51.2 + cyan: 53.4 + white: 88.1 + brightBlack: 12.9 + brightRed: 43.6 + brightGreen: 74.3 + brightYellow: 58.7 + brightBlue: 61.2 + brightMagenta: 47.7 + brightCyan: 65.3 + brightWhite: 80.5 diff --git a/themes/dark-orange--dark-purple-flat.yaml b/themes/dark-orange--dark-purple-flat.yaml new file mode 100644 index 00000000..ec8e4c3c --- /dev/null +++ b/themes/dark-orange--dark-purple-flat.yaml @@ -0,0 +1,53 @@ +name: "Dark Orange (Dark Purple Flat)" +source: + marketplace_id: "jannisberndt.dark-orange" + version: "0.4.0" + installs: 21541 + rating: 5 + ratings: 1 + author: "Jannis Berndt" + repo: "https://github.com/jb3rndt/dark-orange" + url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" + formats: null +colors: + bg: "#1C1E26" + fg: "#E1E4E8" + black: "#3F4451" + red: "#E05561" + green: "#98C379" + yellow: "#F69D50" + blue: "#4AA5F0" + magenta: "#C792EA" + cyan: "#82AAFF" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 274 + pair: null + contrast: + fg: 88.3 + black: 8 + red: 35.8 + green: 61.4 + yellow: 58.9 + blue: 48.8 + magenta: 52.9 + cyan: 55 + white: 89.8 + brightBlack: 14.6 + brightRed: 45.2 + brightGreen: 75.9 + brightYellow: 60.4 + brightBlue: 62.9 + brightMagenta: 49.4 + brightCyan: 66.9 + brightWhite: 82.2 diff --git a/themes/dark-orange--dark-yellow-flat.yaml b/themes/dark-orange--dark-yellow-flat.yaml new file mode 100644 index 00000000..b95d7488 --- /dev/null +++ b/themes/dark-orange--dark-yellow-flat.yaml @@ -0,0 +1,53 @@ +name: "Dark Orange (Dark Yellow Flat)" +source: + marketplace_id: "jannisberndt.dark-orange" + version: "0.4.0" + installs: 21541 + rating: 5 + ratings: 1 + author: "Jannis Berndt" + repo: "https://github.com/jb3rndt/dark-orange" + url: "https://marketplace.visualstudio.com/items?itemName=jannisberndt.dark-orange" + formats: null +colors: + bg: "#23272E" + fg: "#E1E4E8" + black: "#3F4451" + red: "#E05561" + green: "#98C379" + yellow: "#F69D50" + blue: "#4AA5F0" + magenta: "#C792EA" + cyan: "#82AAFF" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 262 + pair: null + contrast: + fg: 87 + black: 0 + red: 34.5 + green: 60.1 + yellow: 57.5 + blue: 47.4 + magenta: 51.5 + cyan: 53.7 + white: 88.4 + brightBlack: 13.2 + brightRed: 43.9 + brightGreen: 74.6 + brightYellow: 59 + brightBlue: 61.5 + brightMagenta: 48 + brightCyan: 65.6 + brightWhite: 80.8 diff --git a/themes/dark-owl--dark-owl-darker.yaml b/themes/dark-owl--dark-owl-darker.yaml new file mode 100644 index 00000000..39e878f6 --- /dev/null +++ b/themes/dark-owl--dark-owl-darker.yaml @@ -0,0 +1,53 @@ +name: "Dark Owl (Dark Owl Darker)" +source: + marketplace_id: "hmseeb.dark-owl" + version: "2.2.6" + installs: 4455 + rating: 5 + ratings: 2 + author: "hmseeb" + repo: "https://github.com/hmseeb/dark-owl" + url: "https://marketplace.visualstudio.com/items?itemName=hmseeb.dark-owl" + formats: null +colors: + bg: "#011627" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 244 + pair: null + contrast: + fg: 79 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/dark-petrol.yaml b/themes/dark-petrol.yaml new file mode 100644 index 00000000..1dc8df0a --- /dev/null +++ b/themes/dark-petrol.yaml @@ -0,0 +1,53 @@ +name: "Dark Petrol" +source: + marketplace_id: "ptrptrd.darkpetrol" + version: "0.1.3" + installs: 90 + rating: 5 + ratings: 1 + author: "ptrptrd" + repo: "https://github.com/ptrptrd/dark-petrol-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ptrptrd.darkpetrol" + formats: null +colors: + bg: "#141D1B" + fg: "#C5C8C6" + black: "#2B3E3B" + red: "#A54242" + green: "#28786E" + yellow: "#EB983E" + blue: "#5F819D" + magenta: "#85678F" + cyan: "#5E8D87" + white: "#C5C8C6" + brightBlack: "#536F6B" + brightRed: "#CC6666" + brightGreen: "#47C6B5" + brightYellow: "#D29656" + brightBlue: "#5F819D" + brightMagenta: "#85678F" + brightCyan: "#8ABEB7" + brightWhite: "#CFE3E0" +meta: + mode: "dark" + accent: "yellow" + hue: 180 + pair: null + contrast: + fg: 71.4 + black: 0 + red: 20.7 + green: 24.5 + yellow: 55.4 + blue: 32 + magenta: 26.6 + cyan: 35.4 + white: 71.4 + brightBlack: 23.1 + brightRed: 35.9 + brightGreen: 60.1 + brightYellow: 50.7 + brightBlue: 32 + brightMagenta: 26.6 + brightCyan: 60.4 + brightWhite: 85.6 diff --git a/themes/dark-pink-pro.yaml b/themes/dark-pink-pro.yaml new file mode 100644 index 00000000..b0c2c402 --- /dev/null +++ b/themes/dark-pink-pro.yaml @@ -0,0 +1,53 @@ +name: "Dark Pink Pro" +source: + marketplace_id: "AhmedSaid.darkpinkpro" + version: "0.3.4" + installs: 12770 + rating: 4.9 + ratings: 10 + author: "Ahmed Said" + repo: "https://github.com/AhmeddSaid/darkpinkpro" + url: "https://marketplace.visualstudio.com/items?itemName=AhmedSaid.darkpinkpro" + formats: null +colors: + bg: "#181818" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.8 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.5 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/dark-plus-moon-light.yaml b/themes/dark-plus-moon-light.yaml new file mode 100644 index 00000000..29eeed16 --- /dev/null +++ b/themes/dark-plus-moon-light.yaml @@ -0,0 +1,53 @@ +name: "Dark Plus Moon light" +source: + marketplace_id: "moondevaa.darkplusmoonlite" + version: "0.8.7" + installs: 15897 + rating: 5 + ratings: 1 + author: "moondevaa" + repo: "https://github.com/AaBbdev29/Darkplusmoonlite" + url: "https://marketplace.visualstudio.com/items?itemName=moondevaa.darkplusmoonlite" + formats: null +colors: + bg: "#171B22" + fg: "#C4B3E1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 262 + pair: null + contrast: + fg: 64.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/dark-refined-refined-charcoal.yaml b/themes/dark-refined-refined-charcoal.yaml new file mode 100644 index 00000000..27a0b5ac --- /dev/null +++ b/themes/dark-refined-refined-charcoal.yaml @@ -0,0 +1,53 @@ +name: "Dark Refined (Refined (Charcoal))" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10802 + rating: 5 + ratings: 3 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" + formats: null +colors: + bg: "#101010" + fg: "#D6DEEB" + black: "#101010" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 85.8 + black: 0 + red: 39.9 + green: 67.8 + yellow: 74.3 + blue: 56.5 + magenta: 54.3 + cyan: 60.3 + white: 107.4 + brightBlack: 16.2 + brightRed: 39.9 + brightGreen: 67.8 + brightYellow: 94.3 + brightBlue: 56.5 + brightMagenta: 54.3 + brightCyan: 74.6 + brightWhite: 107.4 diff --git a/themes/dark-refined-refined-default.yaml b/themes/dark-refined-refined-default.yaml new file mode 100644 index 00000000..a01b8c0b --- /dev/null +++ b/themes/dark-refined-refined-default.yaml @@ -0,0 +1,53 @@ +name: "Dark Refined (Refined (Default))" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10802 + rating: 5 + ratings: 3 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" + formats: null +colors: + bg: "#1E1E1E" + fg: "#D6DEEB" + black: "#1E1E1E" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 84.4 + black: 0 + red: 38.5 + green: 66.4 + yellow: 72.9 + blue: 55.1 + magenta: 52.9 + cyan: 58.9 + white: 106 + brightBlack: 14.7 + brightRed: 38.5 + brightGreen: 66.4 + brightYellow: 92.9 + brightBlue: 55.1 + brightMagenta: 52.9 + brightCyan: 73.2 + brightWhite: 106 diff --git a/themes/dark-refined-refined-dracula.yaml b/themes/dark-refined-refined-dracula.yaml new file mode 100644 index 00000000..ac3fd5af --- /dev/null +++ b/themes/dark-refined-refined-dracula.yaml @@ -0,0 +1,53 @@ +name: "Dark Refined (Refined (Dracula))" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10802 + rating: 5 + ratings: 3 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" + formats: null +colors: + bg: "#282A36" + fg: "#D6DEEB" + black: "#282A36" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 278 + pair: null + contrast: + fg: 82.3 + black: 0 + red: 36.4 + green: 64.3 + yellow: 70.8 + blue: 53 + magenta: 50.8 + cyan: 56.7 + white: 103.9 + brightBlack: 12.6 + brightRed: 36.4 + brightGreen: 64.3 + brightYellow: 90.8 + brightBlue: 53 + brightMagenta: 50.8 + brightCyan: 71 + brightWhite: 103.9 diff --git a/themes/dark-refined-refined-espresso.yaml b/themes/dark-refined-refined-espresso.yaml new file mode 100644 index 00000000..3be8d87a --- /dev/null +++ b/themes/dark-refined-refined-espresso.yaml @@ -0,0 +1,53 @@ +name: "Dark Refined (Refined (Espresso))" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10802 + rating: 5 + ratings: 3 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" + formats: null +colors: + bg: "#1D1813" + fg: "#D6DEEB" + black: "#1D1813" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 67 + pair: null + contrast: + fg: 85 + black: 0 + red: 39.1 + green: 67 + yellow: 73.5 + blue: 55.7 + magenta: 53.6 + cyan: 59.5 + white: 106.7 + brightBlack: 15.4 + brightRed: 39.1 + brightGreen: 67 + brightYellow: 93.5 + brightBlue: 55.7 + brightMagenta: 53.6 + brightCyan: 73.8 + brightWhite: 106.7 diff --git a/themes/dark-refined-refined-matcha.yaml b/themes/dark-refined-refined-matcha.yaml new file mode 100644 index 00000000..2e087091 --- /dev/null +++ b/themes/dark-refined-refined-matcha.yaml @@ -0,0 +1,53 @@ +name: "Dark Refined (Refined (Matcha))" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10802 + rating: 5 + ratings: 3 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" + formats: null +colors: + bg: "#191E1E" + fg: "#D6DEEB" + black: "#191E1E" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 84.5 + black: 0 + red: 38.6 + green: 66.5 + yellow: 73 + blue: 55.2 + magenta: 53.1 + cyan: 59 + white: 106.2 + brightBlack: 14.9 + brightRed: 38.6 + brightGreen: 66.5 + brightYellow: 93 + brightBlue: 55.2 + brightMagenta: 53.1 + brightCyan: 73.3 + brightWhite: 106.2 diff --git a/themes/dark-refined-refined-mocha.yaml b/themes/dark-refined-refined-mocha.yaml new file mode 100644 index 00000000..f300c105 --- /dev/null +++ b/themes/dark-refined-refined-mocha.yaml @@ -0,0 +1,53 @@ +name: "Dark Refined (Refined (Mocha))" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10802 + rating: 5 + ratings: 3 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" + formats: null +colors: + bg: "#2C251E" + fg: "#D6DEEB" + black: "#2C251E" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 67 + pair: null + contrast: + fg: 83.1 + black: 0 + red: 37.2 + green: 65.1 + yellow: 71.6 + blue: 53.8 + magenta: 51.6 + cyan: 57.6 + white: 104.8 + brightBlack: 13.5 + brightRed: 37.2 + brightGreen: 65.1 + brightYellow: 91.6 + brightBlue: 53.8 + brightMagenta: 51.6 + brightCyan: 71.9 + brightWhite: 104.8 diff --git a/themes/dark-refined-refined-night-owl.yaml b/themes/dark-refined-refined-night-owl.yaml new file mode 100644 index 00000000..d3203f14 --- /dev/null +++ b/themes/dark-refined-refined-night-owl.yaml @@ -0,0 +1,53 @@ +name: "Dark Refined (Refined (Night Owl))" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10802 + rating: 5 + ratings: 3 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" + formats: null +colors: + bg: "#011627" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 244 + pair: null + contrast: + fg: 85.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 73.8 + blue: 56 + magenta: 53.8 + cyan: 59.8 + white: 107 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 107 diff --git a/themes/dark-refined-refined-oceanic-next.yaml b/themes/dark-refined-refined-oceanic-next.yaml new file mode 100644 index 00000000..bf53c3d8 --- /dev/null +++ b/themes/dark-refined-refined-oceanic-next.yaml @@ -0,0 +1,53 @@ +name: "Dark Refined (Refined (Oceanic Next))" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10802 + rating: 5 + ratings: 3 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" + formats: null +colors: + bg: "#1B2B34" + fg: "#D6DEEB" + black: "#1B2B34" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 234 + pair: null + contrast: + fg: 82.6 + black: 0 + red: 36.7 + green: 64.6 + yellow: 71 + blue: 53.3 + magenta: 51.1 + cyan: 57 + white: 104.2 + brightBlack: 12.9 + brightRed: 36.7 + brightGreen: 64.6 + brightYellow: 91.1 + brightBlue: 53.3 + brightMagenta: 51.1 + brightCyan: 71.3 + brightWhite: 104.2 diff --git a/themes/dark-refined-refined-one.yaml b/themes/dark-refined-refined-one.yaml new file mode 100644 index 00000000..6bd2d8cc --- /dev/null +++ b/themes/dark-refined-refined-one.yaml @@ -0,0 +1,53 @@ +name: "Dark Refined (Refined (One))" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10802 + rating: 5 + ratings: 3 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" + formats: null +colors: + bg: "#282C34" + fg: "#D6DEEB" + black: "#282C34" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 264 + pair: null + contrast: + fg: 82 + black: 0 + red: 36.1 + green: 64.1 + yellow: 70.5 + blue: 52.7 + magenta: 50.6 + cyan: 56.5 + white: 103.7 + brightBlack: 12.4 + brightRed: 36.1 + brightGreen: 64.1 + brightYellow: 90.5 + brightBlue: 52.7 + brightMagenta: 50.6 + brightCyan: 70.8 + brightWhite: 103.7 diff --git a/themes/dark-refined-refined-palenight.yaml b/themes/dark-refined-refined-palenight.yaml new file mode 100644 index 00000000..21fdd83e --- /dev/null +++ b/themes/dark-refined-refined-palenight.yaml @@ -0,0 +1,53 @@ +name: "Dark Refined (Refined (Palenight))" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10802 + rating: 5 + ratings: 3 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" + formats: null +colors: + bg: "#292D3E" + fg: "#D6DEEB" + black: "#292D3E" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 274 + pair: null + contrast: + fg: 81.6 + black: 0 + red: 35.7 + green: 63.6 + yellow: 70.1 + blue: 52.3 + magenta: 50.1 + cyan: 56.1 + white: 103.3 + brightBlack: 12 + brightRed: 35.7 + brightGreen: 63.6 + brightYellow: 90.1 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 70.4 + brightWhite: 103.3 diff --git a/themes/dark-refined-refined-purple.yaml b/themes/dark-refined-refined-purple.yaml new file mode 100644 index 00000000..e6ba21ed --- /dev/null +++ b/themes/dark-refined-refined-purple.yaml @@ -0,0 +1,53 @@ +name: "Dark Refined (Refined (Purple))" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10802 + rating: 5 + ratings: 3 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" + formats: null +colors: + bg: "#221E46" + fg: "#D6DEEB" + black: "#221E46" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 285 + pair: null + contrast: + fg: 83.5 + black: 0 + red: 37.6 + green: 65.5 + yellow: 72 + blue: 54.2 + magenta: 52 + cyan: 58 + white: 105.1 + brightBlack: 13.8 + brightRed: 37.6 + brightGreen: 65.5 + brightYellow: 92 + brightBlue: 54.2 + brightMagenta: 52 + brightCyan: 72.2 + brightWhite: 105.1 diff --git a/themes/dark-refined-refined-slate.yaml b/themes/dark-refined-refined-slate.yaml new file mode 100644 index 00000000..ffa7219d --- /dev/null +++ b/themes/dark-refined-refined-slate.yaml @@ -0,0 +1,53 @@ +name: "Dark Refined (Refined (Slate))" +source: + marketplace_id: "itsjonq.dark-refined" + version: "0.0.11" + installs: 10802 + rating: 5 + ratings: 3 + author: "itsjonq" + repo: "https://github.com/itsjonq/dark-refined" + url: "https://marketplace.visualstudio.com/items?itemName=itsjonq.dark-refined" + formats: null +colors: + bg: "#141820" + fg: "#D6DEEB" + black: "#141820" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 264 + pair: null + contrast: + fg: 85.1 + black: 0 + red: 39.2 + green: 67.1 + yellow: 73.6 + blue: 55.8 + magenta: 53.7 + cyan: 59.6 + white: 106.8 + brightBlack: 15.5 + brightRed: 39.2 + brightGreen: 67.1 + brightYellow: 93.6 + brightBlue: 55.8 + brightMagenta: 53.7 + brightCyan: 73.9 + brightWhite: 106.8 diff --git a/themes/dark-solarin-3.yaml b/themes/dark-solarin-3.yaml new file mode 100644 index 00000000..36ae8b46 --- /dev/null +++ b/themes/dark-solarin-3.yaml @@ -0,0 +1,53 @@ +name: "dark-solarin-3" +source: + marketplace_id: "kevboutin.dark-solarin-3" + version: "1.0.2" + installs: 38 + rating: 0 + ratings: 0 + author: "Kevin Boutin" + repo: "https://github.com/kevboutin/vscode-theme-dark-solarin-3" + url: "https://marketplace.visualstudio.com/items?itemName=kevboutin.dark-solarin-3" + formats: null +colors: + bg: "#1E1E1E" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 73.8 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/dark-theme-dark-minimal-theme-sm.yaml b/themes/dark-theme-dark-minimal-theme-sm.yaml new file mode 100644 index 00000000..18b5291e --- /dev/null +++ b/themes/dark-theme-dark-minimal-theme-sm.yaml @@ -0,0 +1,53 @@ +name: "Dark Theme (Dark Minimal Theme(SM))" +source: + marketplace_id: "SIRILMP.dark-theme-sm" + version: "3.11.3" + installs: 21112 + rating: 5 + ratings: 2 + author: "SIRIL M P" + repo: "https://github.com/sirilmp/dark-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" + formats: null +colors: + bg: "#212733" + fg: "#D9D7CE" + black: "#343D4A" + red: "#F07178" + green: "#937DC2" + yellow: "#7FE9DE" + blue: "#36A3D9" + magenta: "#D4BFFF" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#CBE645" + brightYellow: "#FFDF80" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#A6FDE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 78.9 + black: 0 + red: 44.3 + green: 35.6 + yellow: 79.4 + blue: 44.5 + magenta: 70.7 + cyan: 78.6 + white: 69.5 + brightBlack: 20.6 + brightRed: 44.3 + brightGreen: 80.7 + brightYellow: 85.6 + brightBlue: 32.4 + brightMagenta: 55.2 + brightCyan: 92.3 + brightWhite: 104.6 diff --git a/themes/dark-theme-dark-neon-theme-sm.yaml b/themes/dark-theme-dark-neon-theme-sm.yaml new file mode 100644 index 00000000..7f73e983 --- /dev/null +++ b/themes/dark-theme-dark-neon-theme-sm.yaml @@ -0,0 +1,53 @@ +name: "Dark Theme (Dark Neon Theme(SM))" +source: + marketplace_id: "SIRILMP.dark-theme-sm" + version: "3.11.3" + installs: 21112 + rating: 5 + ratings: 2 + author: "SIRIL M P" + repo: "https://github.com/sirilmp/dark-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" + formats: null +colors: + bg: "#041C32" + fg: "#D6DEEB" + black: "#041C32" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 249 + pair: null + contrast: + fg: 84.6 + black: 0 + red: 38.7 + green: 66.7 + yellow: 81.5 + blue: 55.3 + magenta: 53.2 + cyan: 59.1 + white: 106.3 + brightBlack: 15 + brightRed: 38.7 + brightGreen: 66.7 + brightYellow: 93.1 + brightBlue: 55.3 + brightMagenta: 53.2 + brightCyan: 73.4 + brightWhite: 106.3 diff --git a/themes/dark-theme-dark-soft-theme-sm.yaml b/themes/dark-theme-dark-soft-theme-sm.yaml new file mode 100644 index 00000000..32c7bbec --- /dev/null +++ b/themes/dark-theme-dark-soft-theme-sm.yaml @@ -0,0 +1,53 @@ +name: "Dark Theme (Dark Soft Theme(SM))" +source: + marketplace_id: "SIRILMP.dark-theme-sm" + version: "3.11.3" + installs: 21112 + rating: 5 + ratings: 2 + author: "SIRIL M P" + repo: "https://github.com/sirilmp/dark-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SIRILMP.dark-theme-sm" + formats: null +colors: + bg: "#212733" + fg: "#B5CDA3" + black: "#343D4A" + red: "#F07178" + green: "#AF7AB3" + yellow: "#92B4EC" + blue: "#36A3D9" + magenta: "#D4BFFF" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#CBE645" + brightYellow: "#FFDF80" + brightBlue: "#6871FF" + brightMagenta: "#FF77FF" + brightCyan: "#A6FDE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 68.6 + black: 0 + red: 44.3 + green: 37.6 + yellow: 57.8 + blue: 44.5 + magenta: 70.7 + cyan: 78.6 + white: 69.5 + brightBlack: 20.6 + brightRed: 44.3 + brightGreen: 80.7 + brightYellow: 85.6 + brightBlue: 32.4 + brightMagenta: 55.2 + brightCyan: 92.3 + brightWhite: 104.6 diff --git a/themes/dark-theme-s.yaml b/themes/dark-theme-s.yaml new file mode 100644 index 00000000..86fe4d23 --- /dev/null +++ b/themes/dark-theme-s.yaml @@ -0,0 +1,53 @@ +name: "Dark Theme S" +source: + marketplace_id: "suleymanozkeskin.dark-theme-s" + version: "0.0.1" + installs: 47 + rating: 0 + ratings: 0 + author: "suleymanozkeskin" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=suleymanozkeskin.dark-theme-s" + formats: null +colors: + bg: "#22272E" + fg: "#ADBAC7" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#FFF3CF" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: 257 + pair: null + contrast: + fg: 61 + black: 15.7 + red: 44.6 + green: 44.3 + yellow: 44.5 + blue: 44.3 + magenta: 44.1 + cyan: 58.7 + white: 45.3 + brightBlack: 22.8 + brightRed: 57.3 + brightGreen: 56.9 + brightYellow: 57.1 + brightBlue: 57 + brightMagenta: 97 + brightCyan: 67.2 + brightWhite: 79.4 diff --git a/themes/dark-unity.yaml b/themes/dark-unity.yaml new file mode 100644 index 00000000..3d634b24 --- /dev/null +++ b/themes/dark-unity.yaml @@ -0,0 +1,53 @@ +name: "Dark Unity" +source: + marketplace_id: "TallesSouza.Unity-theme" + version: "1.1.0" + installs: 1393 + rating: 5 + ratings: 1 + author: "Talles Souza" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TallesSouza.Unity-theme" + formats: null +colors: + bg: "#0D0D0D" + fg: "#FFFFFF" + black: "#545454" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#6F6F6F" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.6 + black: 15.5 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 26.7 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/darkcatalyst.yaml b/themes/darkcatalyst.yaml new file mode 100644 index 00000000..cb4201a7 --- /dev/null +++ b/themes/darkcatalyst.yaml @@ -0,0 +1,53 @@ +name: "DarkCatalyst" +source: + marketplace_id: "Priyaank.catalystirony" + version: "0.0.2" + installs: 140 + rating: 0 + ratings: 0 + author: "Priyaank" + repo: "https://github.com/PRIYAANK2510/Catalyst-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Priyaank.catalystirony" + formats: null +colors: + bg: "#252525" + fg: "#63716A" + black: "#444444" + red: "#A35043" + green: "#38773B" + yellow: "#A79A4B" + blue: "#558BAA" + magenta: "#8A4C8C" + cyan: "#0B828A" + white: "#BBBBBB" + brightBlack: "#666666" + brightRed: "#EE6752" + brightGreen: "#62BA6B" + brightYellow: "#DED07A" + brightBlue: "#67B1D9" + brightMagenta: "#B66ABA" + brightCyan: "#4FC8D1" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 23.5 + black: 0 + red: 21.6 + green: 22 + yellow: 44.3 + blue: 34.2 + magenta: 19.2 + cyan: 27.4 + white: 62.8 + brightBlack: 20.1 + brightRed: 41.1 + brightGreen: 52.1 + brightYellow: 74.3 + brightBlue: 52.6 + brightMagenta: 35 + brightCyan: 61.1 + brightWhite: 83.1 diff --git a/themes/darkerized-better-solarized--better-solarized-dark.yaml b/themes/darkerized-better-solarized--better-solarized-dark.yaml new file mode 100644 index 00000000..2affc146 --- /dev/null +++ b/themes/darkerized-better-solarized--better-solarized-dark.yaml @@ -0,0 +1,54 @@ +name: "Darkerized Better Solarized (Better Solarized Dark)" +source: + marketplace_id: "joelsantos.darkerized-better-solarized-dark-theme" + version: "0.10.11" + installs: 567 + rating: 0 + ratings: 0 + author: "joelsantos" + repo: "https://github.com/joelsantosjunior/vscode-better-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=joelsantos.darkerized-better-solarized-dark-theme" + formats: + zed: "https://raw.githubusercontent.com/joelsantosjunior/vscode-better-solarized/master/old-themes/better-selenized-dark.json" +colors: + bg: "#002B36" + fg: "#839496" + black: "#EEE8D5" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#073642" + brightBlack: "#FDF6E3" + brightRed: "#CB4B16" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#839496" + brightMagenta: "#565A9C" + brightCyan: "#268BD2" + brightWhite: "#002B36" +meta: + mode: "dark" + accent: "orange" + hue: 220 + pair: null + contrast: + fg: 39.5 + black: 89.5 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 0 + brightBlack: 98.6 + brightRed: 27.2 + brightGreen: 39.2 + brightYellow: 39.2 + brightBlue: 39.5 + brightMagenta: 17.2 + brightCyan: 34.3 + brightWhite: 0 diff --git a/themes/darkest-theme.yaml b/themes/darkest-theme.yaml new file mode 100644 index 00000000..95e53111 --- /dev/null +++ b/themes/darkest-theme.yaml @@ -0,0 +1,53 @@ +name: "DarkEST Theme" +source: + marketplace_id: "RakeshKannaS.darkest-theme" + version: "0.0.2" + installs: 442 + rating: 0 + ratings: 0 + author: "Rakesh Kanna S" + repo: "https://github.com/rakeshkanna-rk/darkest" + url: "https://marketplace.visualstudio.com/items?itemName=RakeshKannaS.darkest-theme" + formats: null +colors: + bg: "#010101" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/darkit.yaml b/themes/darkit.yaml new file mode 100644 index 00000000..92cb386e --- /dev/null +++ b/themes/darkit.yaml @@ -0,0 +1,53 @@ +name: "Darkit" +source: + marketplace_id: "mrheio.darkit" + version: "27.0.1" + installs: 310 + rating: 5 + ratings: 1 + author: "mrheio" + repo: "https://github.com/mrheio/vsc-theme-darkit" + url: "https://marketplace.visualstudio.com/items?itemName=mrheio.darkit" + formats: null +colors: + bg: "#24283B" + fg: "#A9B1D6" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#A7B0D4" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 275 + pair: null + contrast: + fg: 57.2 + black: 8.2 + red: 47.3 + green: 70.1 + yellow: 60.1 + blue: 49 + magenta: 52.9 + cyan: 68.4 + white: 56.5 + brightBlack: 8.2 + brightRed: 47.3 + brightGreen: 70.1 + brightYellow: 60.1 + brightBlue: 49 + brightMagenta: 52.9 + brightCyan: 68.4 + brightWhite: 57.2 diff --git a/themes/darkpurpletheme.yaml b/themes/darkpurpletheme.yaml new file mode 100644 index 00000000..29b807e4 --- /dev/null +++ b/themes/darkpurpletheme.yaml @@ -0,0 +1,53 @@ +name: "darkpurpletheme" +source: + marketplace_id: "Alle.darkpurpletheme" + version: "0.0.1" + installs: 13 + rating: 0 + ratings: 0 + author: "Alle" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Alle.darkpurpletheme" + formats: null +colors: + bg: "#17001F" + fg: "#89DDE6" + black: "#474747" + red: "#CD3131" + green: "#0DBC20" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#757575" + brightRed: "#FF6A6A" + brightGreen: "#68FF6A" + brightYellow: "#FFFF82" + brightBlue: "#3B8EEA" + brightMagenta: "#EE7DEE" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 317 + pair: null + contrast: + fg: 77.5 + black: 10.5 + red: 27.3 + green: 52.4 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 29.3 + brightRed: 48.5 + brightGreen: 88.8 + brightYellow: 103.4 + brightBlue: 40.6 + brightMagenta: 55.1 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/darksharp.yaml b/themes/darksharp.yaml new file mode 100644 index 00000000..a40501d4 --- /dev/null +++ b/themes/darksharp.yaml @@ -0,0 +1,53 @@ +name: "Darksharp" +source: + marketplace_id: "Tangible.darksharp" + version: "1.0.0" + installs: 108 + rating: 0 + ratings: 0 + author: "Tangible" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Tangible.darksharp" + formats: null +colors: + bg: "#141821" + fg: "#C0CFE2" + black: "#4A4A56" + red: "#E02F50" + green: "#3BEA6F" + yellow: "#ECC737" + blue: "#3E6DDE" + magenta: "#E23EA2" + cyan: "#41BBEA" + white: "#C0CFE2" + brightBlack: "#61666F" + brightRed: "#F25F7B" + brightGreen: "#71FFC5" + brightYellow: "#F0F05C" + brightBlue: "#4CA0FF" + brightMagenta: "#FF7CFF" + brightCyan: "#69E2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 266 + pair: null + contrast: + fg: 75.4 + black: 11.2 + red: 31.1 + green: 75.6 + yellow: 73.5 + blue: 28.2 + magenta: 35.8 + cyan: 58 + white: 75.4 + brightBlack: 21.8 + brightRed: 43 + brightGreen: 90.8 + brightYellow: 92.7 + brightBlue: 48.7 + brightMagenta: 58.5 + brightCyan: 78.6 + brightWhite: 106.8 diff --git a/themes/darkstack--code-red.yaml b/themes/darkstack--code-red.yaml new file mode 100644 index 00000000..a68ff168 --- /dev/null +++ b/themes/darkstack--code-red.yaml @@ -0,0 +1,53 @@ +name: "Darkstack (Code Red)" +source: + marketplace_id: "Noqs.darkstack" + version: "1.1.1" + installs: 2843 + rating: 0 + ratings: 0 + author: "Noqs" + repo: "https://github.com/NoxQ/Darkstack" + url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" + formats: null +colors: + bg: "#100C28" + fg: "#ABABAB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 286 + pair: null + contrast: + fg: 56.3 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.8 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/darkstack--cyberblue.yaml b/themes/darkstack--cyberblue.yaml new file mode 100644 index 00000000..64b7038f --- /dev/null +++ b/themes/darkstack--cyberblue.yaml @@ -0,0 +1,53 @@ +name: "Darkstack (Cyberblue)" +source: + marketplace_id: "Noqs.darkstack" + version: "1.1.1" + installs: 2843 + rating: 0 + ratings: 0 + author: "Noqs" + repo: "https://github.com/NoxQ/Darkstack" + url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" + formats: null +colors: + bg: "#020B22" + fg: "#D4D4D4" + black: "#515151" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + pair: null + contrast: + fg: 80.2 + black: 14.3 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/darkstack--edgerunner.yaml b/themes/darkstack--edgerunner.yaml new file mode 100644 index 00000000..f18d746d --- /dev/null +++ b/themes/darkstack--edgerunner.yaml @@ -0,0 +1,53 @@ +name: "Darkstack (Edgerunner)" +source: + marketplace_id: "Noqs.darkstack" + version: "1.1.1" + installs: 2843 + rating: 0 + ratings: 0 + author: "Noqs" + repo: "https://github.com/NoxQ/Darkstack" + url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" + formats: null +colors: + bg: "#071104" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 137 + pair: null + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/darkstack--miami-vice.yaml b/themes/darkstack--miami-vice.yaml new file mode 100644 index 00000000..aa98f4f1 --- /dev/null +++ b/themes/darkstack--miami-vice.yaml @@ -0,0 +1,53 @@ +name: "Darkstack (Miami Vice)" +source: + marketplace_id: "Noqs.darkstack" + version: "1.1.1" + installs: 2843 + rating: 0 + ratings: 0 + author: "Noqs" + repo: "https://github.com/NoxQ/Darkstack" + url: "https://marketplace.visualstudio.com/items?itemName=Noqs.darkstack" + formats: null +colors: + bg: "#101719" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFFE9F" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#1BE7FF" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#F899E9" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 217 + pair: null + contrast: + fg: 79.6 + black: 0 + red: 26.8 + green: 53.1 + yellow: 103 + blue: 27.5 + magenta: 29.9 + cyan: 79.2 + white: 79.6 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 64.1 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/darkula-dracula-but-darker.yaml b/themes/darkula-dracula-but-darker.yaml new file mode 100644 index 00000000..ede0dbb5 --- /dev/null +++ b/themes/darkula-dracula-but-darker.yaml @@ -0,0 +1,53 @@ +name: "Darkula! Dracula, but darker" +source: + marketplace_id: "JorgeDorio.darkula-theme" + version: "0.0.1" + installs: 3701 + rating: 0 + ratings: 0 + author: "Jorge Dorio" + repo: "https://github.com/JorgeDorio/darkula" + url: "https://marketplace.visualstudio.com/items?itemName=JorgeDorio.darkula-theme" + formats: null +colors: + bg: "#131313" + fg: "#F8F8F2" + black: "#131313" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 102.3 + black: 0 + red: 43.7 + green: 85.2 + yellow: 98.9 + blue: 54 + magenta: 54.9 + cyan: 84.3 + white: 102.3 + brightBlack: 28.4 + brightRed: 49.2 + brightGreen: 89.4 + brightYellow: 103.9 + brightBlue: 66.5 + brightMagenta: 63 + brightCyan: 97.1 + brightWhite: 107.2 diff --git a/themes/darkwind.yaml b/themes/darkwind.yaml new file mode 100644 index 00000000..6d09c6bf --- /dev/null +++ b/themes/darkwind.yaml @@ -0,0 +1,53 @@ +name: "Darkwind" +source: + marketplace_id: "BlakeDev.darkwind" + version: "1.0.1" + installs: 632 + rating: 5 + ratings: 1 + author: "BlakeDev" + repo: "https://github.com/BlakeCampbells/Darkwind" + url: "https://marketplace.visualstudio.com/items?itemName=BlakeDev.darkwind" + formats: null +colors: + bg: "#111827" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 265 + pair: null + contrast: + fg: 79.3 + black: 0 + red: 26.6 + green: 52.8 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.9 diff --git a/themes/darky-purple-theme--darky-purple-storm.yaml b/themes/darky-purple-theme--darky-purple-storm.yaml new file mode 100644 index 00000000..777dc513 --- /dev/null +++ b/themes/darky-purple-theme--darky-purple-storm.yaml @@ -0,0 +1,53 @@ +name: "Darky Purple Theme (Darky Purple Storm)" +source: + marketplace_id: "AlexanderAlekseenko.darky-purple-theme" + version: "1.4.0" + installs: 11704 + rating: 5 + ratings: 1 + author: "Alexander Alekseenko" + repo: "https://github.com/Akaike0/vsc-darky-purple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.darky-purple-theme" + formats: null +colors: + bg: "#21202E" + fg: "#848CFF" + black: "#646464" + red: "#CD3131" + green: "#31C089" + yellow: "#E5E510" + blue: "#277AD5" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A1A1A1" + brightBlack: "#777777" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3D8EE8" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 288 + pair: null + contrast: + fg: 43.9 + black: 19.8 + red: 25.4 + green: 54.3 + yellow: 84.3 + blue: 29.7 + magenta: 28.4 + cyan: 46.2 + white: 49 + brightBlack: 28.2 + brightRed: 37.2 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/darky-purple-theme--darky-purple.yaml b/themes/darky-purple-theme--darky-purple.yaml new file mode 100644 index 00000000..3504514d --- /dev/null +++ b/themes/darky-purple-theme--darky-purple.yaml @@ -0,0 +1,53 @@ +name: "Darky Purple Theme (Darky Purple)" +source: + marketplace_id: "AlexanderAlekseenko.darky-purple-theme" + version: "1.4.0" + installs: 11704 + rating: 5 + ratings: 1 + author: "Alexander Alekseenko" + repo: "https://github.com/Akaike0/vsc-darky-purple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlexanderAlekseenko.darky-purple-theme" + formats: null +colors: + bg: "#111111" + fg: "#848CFF" + black: "#545454" + red: "#CD3131" + green: "#31C089" + yellow: "#E5E510" + blue: "#277AD5" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A1A1A1" + brightBlack: "#777777" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 45.8 + black: 15.2 + red: 27.2 + green: 56.2 + yellow: 86.1 + blue: 31.5 + magenta: 30.3 + cyan: 48.1 + white: 50.9 + brightBlack: 30.1 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/dartpad-theme--dartpad.yaml b/themes/dartpad-theme--dartpad.yaml new file mode 100644 index 00000000..15050453 --- /dev/null +++ b/themes/dartpad-theme--dartpad.yaml @@ -0,0 +1,53 @@ +name: "DartPad Theme (DartPad)" +source: + marketplace_id: "Alejandro-FA.vscode-theme-dartpad" + version: "0.5.4" + installs: 5317 + rating: 5 + ratings: 1 + author: "Alejandro-FA" + repo: "https://github.com/Alejandro-FA/vscode-theme-dartpad" + url: "https://marketplace.visualstudio.com/items?itemName=Alejandro-FA.vscode-theme-dartpad" + formats: null +colors: + bg: "#0E161F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 252 + pair: null + contrast: + fg: 107 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.2 diff --git a/themes/dbt--dbt-dark-theme.yaml b/themes/dbt--dbt-dark-theme.yaml new file mode 100644 index 00000000..cfd28a3f --- /dev/null +++ b/themes/dbt--dbt-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "dbt (dbt dark theme)" +source: + marketplace_id: "dbtLabsInc.dbt" + version: "0.54.0" + installs: 77126 + rating: 4.19 + ratings: 27 + author: "dbt Labs Inc" + repo: "https://github.com/dbt-labs/dbt-fusion" + url: "https://marketplace.visualstudio.com/items?itemName=dbtLabsInc.dbt" + formats: null +colors: + bg: "#161514" + fg: "#F6F6F6" + black: "#2F2D2C" + red: "#F64B44" + green: "#31A753" + yellow: "#D47500" + blue: "#1894F8" + magenta: "#F83D75" + cyan: "#0BA58B" + white: "#EBE9E9" + brightBlack: "#736D6C" + brightRed: "#FF866F" + brightGreen: "#45D170" + brightYellow: "#F79900" + brightBlue: "#6AB8FF" + brightMagenta: "#FF82A1" + brightCyan: "#38CCB2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: "dbt (dbt light theme)" + contrast: + fg: 101.1 + black: 0 + red: 39.6 + green: 43.4 + yellow: 40.9 + blue: 42.7 + magenta: 39.3 + cyan: 43.5 + white: 93 + brightBlack: 25.8 + brightRed: 55.1 + brightGreen: 63.8 + brightYellow: 58.3 + brightBlue: 60.1 + brightMagenta: 55.5 + brightCyan: 63 + brightWhite: 107 diff --git a/themes/dbt--dbt-fusion.yaml b/themes/dbt--dbt-fusion.yaml new file mode 100644 index 00000000..8a7530d3 --- /dev/null +++ b/themes/dbt--dbt-fusion.yaml @@ -0,0 +1,53 @@ +name: "dbt (dbt Fusion)" +source: + marketplace_id: "dbtLabsInc.dbt" + version: "0.54.0" + installs: 77126 + rating: 4.19 + ratings: 27 + author: "dbt Labs Inc" + repo: "https://github.com/dbt-labs/dbt-fusion" + url: "https://marketplace.visualstudio.com/items?itemName=dbtLabsInc.dbt" + formats: null +colors: + bg: "#0B1321" + fg: "#E0D7FF" + black: "#444C5E" + red: "#EB4610" + green: "#3CCE96" + yellow: "#F8E230" + blue: "#5362FF" + magenta: "#C45E97" + cyan: "#1DB6D8" + white: "#E5E5E5" + brightBlack: "#444C5E" + brightRed: "#F75B28" + brightGreen: "#44F7B2" + brightYellow: "#FFE61F" + brightBlue: "#6E7BFF" + brightMagenta: "#EA48A2" + brightCyan: "#21D7FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: 261 + pair: null + contrast: + fg: 84.8 + black: 12 + red: 36.1 + green: 63.2 + yellow: 87.4 + blue: 29.6 + magenta: 35.1 + cyan: 54.5 + white: 90.3 + brightBlack: 12 + brightRed: 42.4 + brightGreen: 84.7 + brightYellow: 90.3 + brightBlue: 38.4 + brightMagenta: 39.2 + brightCyan: 71.8 + brightWhite: 90.3 diff --git a/themes/dbt--dbt-light-theme.yaml b/themes/dbt--dbt-light-theme.yaml new file mode 100644 index 00000000..3963f800 --- /dev/null +++ b/themes/dbt--dbt-light-theme.yaml @@ -0,0 +1,53 @@ +name: "dbt (dbt light theme)" +source: + marketplace_id: "dbtLabsInc.dbt" + version: "0.54.0" + installs: 77126 + rating: 4.19 + ratings: 27 + author: "dbt Labs Inc" + repo: "https://github.com/dbt-labs/dbt-fusion" + url: "https://marketplace.visualstudio.com/items?itemName=dbtLabsInc.dbt" + formats: null +colors: + bg: "#FDFDFD" + fg: "#1C1A19" + black: "#1C1A19" + red: "#8D0D10" + green: "#105A20" + yellow: "#AB5100" + blue: "#004895" + magenta: "#8B0839" + cyan: "#105748" + white: "#CFCDCC" + brightBlack: "#4E4A49" + brightRed: "#C42C28" + brightGreen: "#188435" + brightYellow: "#D47500" + brightBlue: "#006DCE" + brightMagenta: "#CA0356" + brightCyan: "#17806C" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: "dbt (dbt dark theme)" + contrast: + fg: 103 + black: 103 + red: 89 + green: 87.3 + yellow: 74.9 + blue: 88.4 + magenta: 89 + cyan: 87.6 + white: 25.3 + brightBlack: 88.8 + brightRed: 75.3 + brightGreen: 71.5 + brightYellow: 58.8 + brightBlue: 73.5 + brightMagenta: 75 + brightCyan: 71.9 + brightWhite: 0 diff --git a/themes/dcdevtheme.yaml b/themes/dcdevtheme.yaml new file mode 100644 index 00000000..30cf4954 --- /dev/null +++ b/themes/dcdevtheme.yaml @@ -0,0 +1,53 @@ +name: "DcDevTheme" +source: + marketplace_id: "DcDevThemeRed.DcDevThemeRed" + version: "0.0.1" + installs: 260 + rating: 5 + ratings: 2 + author: "DcDevThemeRed" + repo: "https://github.com/DcDevRep/dcdevthemered" + url: "https://marketplace.visualstudio.com/items?itemName=DcDevThemeRed.DcDevThemeRed" + formats: null +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFC1C1" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FF7676" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 78.3 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 51.9 diff --git a/themes/decay--cosmic-decay.yaml b/themes/decay--cosmic-decay.yaml new file mode 100644 index 00000000..c67d60c4 --- /dev/null +++ b/themes/decay--cosmic-decay.yaml @@ -0,0 +1,53 @@ +name: "Decay (Cosmic Decay)" +source: + marketplace_id: "decaycs.decay" + version: "1.0.9" + installs: 37714 + rating: 5 + ratings: 3 + author: "decaycs" + repo: "https://github.com/decaycs/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" + formats: null +colors: + bg: "#12131C" + fg: "#A5B7D5" + black: "#2C2F44" + red: "#CA7E9E" + green: "#8FC8A8" + yellow: "#EFD9B0" + blue: "#A9ACDB" + magenta: "#C296EB" + cyan: "#91CEDF" + white: "#C1C4CB" + brightBlack: "#1C1E27" + brightRed: "#CA7E9E" + brightGreen: "#8FC8A8" + brightYellow: "#FFC19F" + brightBlue: "#A9ACDB" + brightMagenta: "#C296EB" + brightCyan: "#91CEDF" + brightWhite: "#A5B7D5" +meta: + mode: "dark" + accent: "magenta" + hue: 280 + pair: null + contrast: + fg: 62.1 + black: 0 + red: 44.5 + green: 65.4 + yellow: 84.3 + blue: 58.5 + magenta: 54.7 + cyan: 70.6 + white: 70.2 + brightBlack: 0 + brightRed: 44.5 + brightGreen: 65.4 + brightYellow: 76.4 + brightBlue: 58.5 + brightMagenta: 54.7 + brightCyan: 70.6 + brightWhite: 62.1 diff --git a/themes/decay--dark-decay.yaml b/themes/decay--dark-decay.yaml new file mode 100644 index 00000000..1754bf37 --- /dev/null +++ b/themes/decay--dark-decay.yaml @@ -0,0 +1,53 @@ +name: "Decay (Dark Decay)" +source: + marketplace_id: "decaycs.decay" + version: "1.0.9" + installs: 37714 + rating: 5 + ratings: 3 + author: "decaycs" + repo: "https://github.com/decaycs/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" + formats: null +colors: + bg: "#171B20" + fg: "#B6BECA" + black: "#1C252C" + red: "#E05F65" + green: "#78DBA9" + yellow: "#F1CF8A" + blue: "#70A5EB" + magenta: "#C68AEE" + cyan: "#74BEE9" + white: "#DEE1E6" + brightBlack: "#485263" + brightRed: "#E05F65" + brightGreen: "#78DBA9" + brightYellow: "#E9A180" + brightBlue: "#70A5EB" + brightMagenta: "#C68AEE" + brightCyan: "#74BEE9" + brightWhite: "#B6BECA" +meta: + mode: "dark" + accent: "orange" + hue: 254 + pair: null + contrast: + fg: 65.6 + black: 0 + red: 38.4 + green: 71.9 + yellow: 78.6 + blue: 50.9 + magenta: 51 + cyan: 61.3 + white: 86.9 + brightBlack: 13.3 + brightRed: 38.4 + brightGreen: 71.9 + brightYellow: 59.3 + brightBlue: 50.9 + brightMagenta: 51 + brightCyan: 61.3 + brightWhite: 65.6 diff --git a/themes/decay--decayce.yaml b/themes/decay--decayce.yaml new file mode 100644 index 00000000..7e49dc0c --- /dev/null +++ b/themes/decay--decayce.yaml @@ -0,0 +1,53 @@ +name: "Decay (Decayce)" +source: + marketplace_id: "decaycs.decay" + version: "1.0.9" + installs: 37714 + rating: 5 + ratings: 3 + author: "decaycs" + repo: "https://github.com/decaycs/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" + formats: null +colors: + bg: "#0D0F18" + fg: "#A5B6CF" + black: "#151720" + red: "#DD6777" + green: "#90CEAA" + yellow: "#ECD3A0" + blue: "#86AAEC" + magenta: "#C296EB" + cyan: "#93CEE9" + white: "#CBCED3" + brightBlack: "#1C1E27" + brightRed: "#DD6777" + brightGreen: "#90CEAA" + brightYellow: "#E9A180" + brightBlue: "#86AAEC" + brightMagenta: "#C296EB" + brightCyan: "#93CEE9" + brightWhite: "#A5B6CF" +meta: + mode: "dark" + accent: "red" + hue: 275 + pair: null + contrast: + fg: 61.7 + black: 0 + red: 41 + green: 68.5 + yellow: 81.1 + blue: 55.6 + magenta: 55 + cyan: 71.6 + white: 76.3 + brightBlack: 0 + brightRed: 41 + brightGreen: 68.5 + brightYellow: 60.3 + brightBlue: 55.6 + brightMagenta: 55 + brightCyan: 71.6 + brightWhite: 61.7 diff --git a/themes/decay--light-decay.yaml b/themes/decay--light-decay.yaml new file mode 100644 index 00000000..1616d0a3 --- /dev/null +++ b/themes/decay--light-decay.yaml @@ -0,0 +1,53 @@ +name: "Decay (Light Decay)" +source: + marketplace_id: "decaycs.decay" + version: "1.0.9" + installs: 37714 + rating: 5 + ratings: 3 + author: "decaycs" + repo: "https://github.com/decaycs/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=decaycs.decay" + formats: null +colors: + bg: "#DEE1E6" + fg: "#101419" + black: "#C5C8CD" + red: "#BD3C42" + green: "#69B373" + yellow: "#CEAC67" + blue: "#4D82C8" + magenta: "#A367CB" + cyan: "#519BC6" + white: "#DEE1E6" + brightBlack: "#989BA0" + brightRed: "#BD3C42" + brightGreen: "#69B373" + brightYellow: "#E9A180" + brightBlue: "#4D82C8" + brightMagenta: "#A367CB" + brightCyan: "#519BC6" + brightWhite: "#101419" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.3 + black: 11.9 + red: 58.1 + green: 31.7 + yellow: 24.6 + blue: 48.7 + magenta: 48.5 + cyan: 39.5 + white: 0 + brightBlack: 35.9 + brightRed: 58.1 + brightGreen: 31.7 + brightYellow: 23.8 + brightBlue: 48.7 + brightMagenta: 48.5 + brightCyan: 39.5 + brightWhite: 87.3 diff --git a/themes/deepsea-theme.yaml b/themes/deepsea-theme.yaml new file mode 100644 index 00000000..a21bf0d4 --- /dev/null +++ b/themes/deepsea-theme.yaml @@ -0,0 +1,53 @@ +name: "DeepSea Theme" +source: + marketplace_id: "KuldeepRawat.deepsea" + version: "1.4.0" + installs: 842 + rating: 5 + ratings: 1 + author: "Kuldeep Rawat" + repo: "https://github.com/thekuldeeprawat/deepsea" + url: "https://marketplace.visualstudio.com/items?itemName=KuldeepRawat.deepsea" + formats: null +colors: + bg: "#040B1F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 107.6 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 90.7 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/defdo-themes--defdo-base.yaml b/themes/defdo-themes--defdo-base.yaml new file mode 100644 index 00000000..a688fa57 --- /dev/null +++ b/themes/defdo-themes--defdo-base.yaml @@ -0,0 +1,53 @@ +name: "defdo-themes (defdo base)" +source: + marketplace_id: "defdo.defdo-themes" + version: "0.0.15" + installs: 1256 + rating: 5 + ratings: 1 + author: "defdo" + repo: "https://github.com/defdo-dev/defdo-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=defdo.defdo-themes" + formats: null +colors: + bg: "#131C21" + fg: "#EEFFFF" + black: "#131C21" + red: "#E24F4F" + green: "#0DBC79" + yellow: "#F9BC02" + blue: "#006EE8" + magenta: "#8954AC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F65757" + brightGreen: "#23D18B" + brightYellow: "#F9E802" + brightBlue: "#3B8EEA" + brightMagenta: "#A870D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFEFE" +meta: + mode: "dark" + accent: "purple" + hue: 233 + pair: null + contrast: + fg: 104.1 + black: 0 + red: 35.3 + green: 52.6 + yellow: 70.7 + blue: 28 + magenta: 24 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 41.3 + brightGreen: 63.1 + brightYellow: 89.5 + brightBlue: 39.6 + brightMagenta: 37.6 + brightCyan: 55 + brightWhite: 105.9 diff --git a/themes/defdo-themes--defdo-halloween.yaml b/themes/defdo-themes--defdo-halloween.yaml new file mode 100644 index 00000000..7c39e21b --- /dev/null +++ b/themes/defdo-themes--defdo-halloween.yaml @@ -0,0 +1,53 @@ +name: "defdo-themes (defdo halloween)" +source: + marketplace_id: "defdo.defdo-themes" + version: "0.0.15" + installs: 1256 + rating: 5 + ratings: 1 + author: "defdo" + repo: "https://github.com/defdo-dev/defdo-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=defdo.defdo-themes" + formats: null +colors: + bg: "#140021" + fg: "#EEFFFF" + black: "#100021" + red: "#E24F4F" + green: "#0DBC79" + yellow: "#F9BC02" + blue: "#006EE8" + magenta: "#8954AC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F65757" + brightGreen: "#23D18B" + brightYellow: "#F9E802" + brightBlue: "#3B8EEA" + brightMagenta: "#A870D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFEFE" +meta: + mode: "dark" + accent: "purple" + hue: 310 + pair: null + contrast: + fg: 105.2 + black: 0 + red: 36.4 + green: 53.7 + yellow: 71.8 + blue: 29.1 + magenta: 25.1 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 42.4 + brightGreen: 64.2 + brightYellow: 90.6 + brightBlue: 40.7 + brightMagenta: 38.7 + brightCyan: 56.1 + brightWhite: 107 diff --git a/themes/dekirisu-s-rust-themes--dekirisu-s-rust-theme.yaml b/themes/dekirisu-s-rust-themes--dekirisu-s-rust-theme.yaml new file mode 100644 index 00000000..d603aff5 --- /dev/null +++ b/themes/dekirisu-s-rust-themes--dekirisu-s-rust-theme.yaml @@ -0,0 +1,53 @@ +name: "Dekirisu's Rust Themes (Dekirisu's Rust Theme)" +source: + marketplace_id: "dekirisu.dekirisu-rust-themes" + version: "0.0.1" + installs: 3901 + rating: 5 + ratings: 3 + author: "Dekirisu" + repo: "https://github.com/dekirisu/vscode-rust-themes" + url: "https://marketplace.visualstudio.com/items?itemName=dekirisu.dekirisu-rust-themes" + formats: null +colors: + bg: "#101316" + fg: "#C3C6CB" + black: "#101316" + red: "#E35535" + green: "#00A884" + yellow: "#5AD8B2" + blue: "#11B7D4" + magenta: "#D46EC0" + cyan: "#5AD8B2" + white: "#C3C6CB" + brightBlack: "#11B7D4" + brightRed: "#E35535" + brightGreen: "#00A884" + brightYellow: "#5AD8B2" + brightBlue: "#11B7D4" + brightMagenta: "#D46EC0" + brightCyan: "#5AD8B2" + brightWhite: "#C3C6CB" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 71.3 + black: 0 + red: 37.1 + green: 44.8 + yellow: 70 + blue: 54.7 + magenta: 43.7 + cyan: 70 + white: 71.3 + brightBlack: 54.7 + brightRed: 37.1 + brightGreen: 44.8 + brightYellow: 70 + brightBlue: 54.7 + brightMagenta: 43.7 + brightCyan: 70 + brightWhite: 71.3 diff --git a/themes/delightful-green.yaml b/themes/delightful-green.yaml new file mode 100644 index 00000000..2cad6659 --- /dev/null +++ b/themes/delightful-green.yaml @@ -0,0 +1,53 @@ +name: "Delightful green" +source: + marketplace_id: "xynny.delightfulgreen" + version: "0.0.1" + installs: 534 + rating: 0 + ratings: 0 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.delightfulgreen" + formats: null +colors: + bg: "#1E1E1E" + fg: "#BE9F9F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 52.4 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/demon-hunter.yaml b/themes/demon-hunter.yaml new file mode 100644 index 00000000..80e6eb77 --- /dev/null +++ b/themes/demon-hunter.yaml @@ -0,0 +1,53 @@ +name: "Demon-Hunter" +source: + marketplace_id: "Jmenabc.Demon-Hunter" + version: "0.0.1" + installs: 237 + rating: 0 + ratings: 0 + author: "Jmenabc" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Jmenabc.Demon-Hunter" + formats: null +colors: + bg: "#111111" + fg: "#7D85FF" + black: "#545454" + red: "#CD3131" + green: "#31C089" + yellow: "#E5E510" + blue: "#277AD5" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A1A1A1" + brightBlack: "#777777" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 42.9 + black: 15.2 + red: 27.2 + green: 56.2 + yellow: 86.1 + blue: 31.5 + magenta: 30.3 + cyan: 48.1 + white: 50.9 + brightBlack: 30.1 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/descomplica-theme--kyanite.yaml b/themes/descomplica-theme--kyanite.yaml new file mode 100644 index 00000000..f8ff9860 --- /dev/null +++ b/themes/descomplica-theme--kyanite.yaml @@ -0,0 +1,53 @@ +name: "Descomplica Theme (Kyanite)" +source: + marketplace_id: "NyctibiusVII.descomplica-theme" + version: "1.4.18" + installs: 387 + rating: 5 + ratings: 2 + author: "NyctibiusVII" + repo: "https://github.com/Descomplica-ADS/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NyctibiusVII.descomplica-theme" + formats: null +colors: + bg: "#071321" + fg: "#737EA1" + black: "#414141" + red: "#C93838" + green: "#01AB6A" + yellow: "#D3C554" + blue: "#0C5CB4" + magenta: "#BC3FBC" + cyan: "#41CCEA" + white: "#DEDEDE" + brightBlack: "#666666" + brightRed: "#FF5555" + brightGreen: "#00E88F" + brightYellow: "#F0E484" + brightBlue: "#238BFF" + brightMagenta: "#D670D6" + brightCyan: "#8BE9FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 253 + pair: null + contrast: + fg: 33.6 + black: 8.1 + red: 27 + green: 45.3 + yellow: 69.7 + blue: 19.4 + magenta: 30.1 + cyan: 66 + white: 86 + brightBlack: 22.4 + brightRed: 43.7 + brightGreen: 75.2 + brightYellow: 88.2 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 84.3 + brightWhite: 107.2 diff --git a/themes/desert-vim.yaml b/themes/desert-vim.yaml new file mode 100644 index 00000000..8e4fd28a --- /dev/null +++ b/themes/desert-vim.yaml @@ -0,0 +1,54 @@ +name: "desert.vim" +source: + marketplace_id: "AFLO.desert-vim" + version: "1.0.6" + installs: 793 + rating: 0 + ratings: 0 + author: "AFLO" + repo: "https://github.com/Ayoobf/desert-vim" + url: "https://marketplace.visualstudio.com/items?itemName=AFLO.desert-vim" + formats: + iterm2: "https://raw.githubusercontent.com/Ayoobf/desert-vim/master/themes/desert.itermcolors" +colors: + bg: "#333333" + fg: "#FFFFFF" + black: "#000000" + red: "#FFA0A0" + green: "#86D886" + yellow: "#F0E68C" + blue: "#87CEEB" + magenta: "#FFA0A0" + cyan: "#FFDAB9" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FFA0A0" + brightGreen: "#86D886" + brightYellow: "#F0E68C" + brightBlue: "#87CEEB" + brightMagenta: "#FFA0A0" + brightCyan: "#FFDAB9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 102 + black: 0 + red: 59.4 + green: 65.9 + yellow: 84.1 + blue: 65.3 + magenta: 59.4 + cyan: 82.4 + white: 102 + brightBlack: 0 + brightRed: 59.4 + brightGreen: 65.9 + brightYellow: 84.1 + brightBlue: 65.3 + brightMagenta: 59.4 + brightCyan: 82.4 + brightWhite: 102 diff --git a/themes/designcourse.yaml b/themes/designcourse.yaml new file mode 100644 index 00000000..7044b72d --- /dev/null +++ b/themes/designcourse.yaml @@ -0,0 +1,53 @@ +name: "DesignCourse" +source: + marketplace_id: "DesignCourse.designcourse" + version: "0.0.1" + installs: 3418 + rating: 5 + ratings: 2 + author: "DesignCourse" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=DesignCourse.designcourse" + formats: null +colors: + bg: "#222226" + fg: "#DDDDDD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#B1B1C4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 83.5 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 58.4 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 88.6 diff --git a/themes/devell-theme.yaml b/themes/devell-theme.yaml new file mode 100644 index 00000000..a10cb61f --- /dev/null +++ b/themes/devell-theme.yaml @@ -0,0 +1,53 @@ +name: "Devell theme" +source: + marketplace_id: "filipgorny.devell-theme" + version: "0.3.3" + installs: 72 + rating: 0 + ratings: 0 + author: "Filip Gorny" + repo: "https://github.com/DevellSoftware/default-vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=filipgorny.devell-theme" + formats: null +colors: + bg: "#111111" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#D1D1D1" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 78.2 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/developer-s-theme--developers-theme-fork.yaml b/themes/developer-s-theme--developers-theme-fork.yaml new file mode 100644 index 00000000..f2f21ca1 --- /dev/null +++ b/themes/developer-s-theme--developers-theme-fork.yaml @@ -0,0 +1,53 @@ +name: "Developer's theme (Developers theme - Fork)" +source: + marketplace_id: "Rajeshwaran.developer-theme-dark" + version: "5.0.0" + installs: 162264 + rating: 5 + ratings: 4 + author: "Rajeshwaran" + repo: "https://github.com/Rajeshwaran2001/developer-theme-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Rajeshwaran.developer-theme-dark" + formats: null +colors: + bg: "#141026" + fg: "#FFFFFF" + black: "#715A5A" + red: "#FF0000" + green: "#0DBC79" + yellow: "#FFFF00" + blue: "#2472C8" + magenta: "#FF04FF" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#909090" + brightRed: "#F14C4C" + brightGreen: "#00F995" + brightYellow: "#F5F543" + brightBlue: "#0076F9" + brightMagenta: "#FF7DFF" + brightCyan: "#02CDFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 290 + pair: null + contrast: + fg: 107.2 + black: 19.6 + red: 36.8 + green: 53.3 + yellow: 102 + blue: 27.7 + magenta: 45.5 + cyan: 47.9 + white: 90.3 + brightBlack: 41.9 + brightRed: 38.9 + brightGreen: 84.2 + brightYellow: 95.9 + brightBlue: 32.6 + brightMagenta: 59.2 + brightCyan: 67 + brightWhite: 90.3 diff --git a/themes/developer-s-theme--green-coffee.yaml b/themes/developer-s-theme--green-coffee.yaml new file mode 100644 index 00000000..7f0d04bf --- /dev/null +++ b/themes/developer-s-theme--green-coffee.yaml @@ -0,0 +1,53 @@ +name: "Developer's theme (Green Coffee)" +source: + marketplace_id: "Rajeshwaran.developer-theme-dark" + version: "5.0.0" + installs: 162264 + rating: 5 + ratings: 4 + author: "Rajeshwaran" + repo: "https://github.com/Rajeshwaran2001/developer-theme-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Rajeshwaran.developer-theme-dark" + formats: null +colors: + bg: "#0D0202" + fg: "#C9A4A4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#ECB1B1" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFE7E7" +meta: + mode: "dark" + accent: "pink" + hue: 23 + pair: null + contrast: + fg: 57.7 + black: 0 + red: 27.7 + green: 53.9 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 68.4 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 95.7 diff --git a/themes/devmamudul-setup.yaml b/themes/devmamudul-setup.yaml new file mode 100644 index 00000000..d0ab2bda --- /dev/null +++ b/themes/devmamudul-setup.yaml @@ -0,0 +1,53 @@ +name: "DevMamudul Setup" +source: + marketplace_id: "DevMamudulsetup.devmamudulsetup" + version: "0.0.2" + installs: 2 + rating: 0 + ratings: 0 + author: "DevMamudulsetup" + repo: "https://github.com/mamudulislam/devmamudulsetup" + url: "https://marketplace.visualstudio.com/items?itemName=DevMamudulsetup.devmamudulsetup" + formats: null +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#CDD6F4" + brightBlack: "#6C7086" + brightRed: "#EBA0AC" + brightGreen: "#94E2D5" + brightYellow: "#F2CDCD" + brightBlue: "#89DCEB" + brightMagenta: "#F5E0DE" + brightCyan: "#A6E3A1" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 80 + black: 9.3 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 76.7 + cyan: 78.2 + white: 80 + brightBlack: 25.8 + brightRed: 60 + brightGreen: 78.2 + brightYellow: 79.4 + brightBlue: 75.6 + brightMagenta: 88.7 + brightCyan: 78.3 + brightWhite: 68.1 diff --git a/themes/devpro-theme.yaml b/themes/devpro-theme.yaml new file mode 100644 index 00000000..649ac7e9 --- /dev/null +++ b/themes/devpro-theme.yaml @@ -0,0 +1,53 @@ +name: "DevPro theme" +source: + marketplace_id: "koprodev.devpro" + version: "1.1.2" + installs: 729 + rating: 0 + ratings: 0 + author: "koprodev" + repo: "https://github.com/koprodev/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=koprodev.devpro" + formats: null +colors: + bg: "#2E323B" + fg: "#BBBBBB" + black: "#1E1E1E" + red: "#D16969" + green: "#608B4E" + yellow: "#D7BA7D" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#4EC9B0" + white: "#D4D4D4" + brightBlack: "#808080" + brightRed: "#D16969" + brightGreen: "#B5CEA8" + brightYellow: "#CE9178" + brightBlue: "#9CDCFE" + brightMagenta: "#C586C0" + brightCyan: "#4EC9B0" + brightWhite: "#808080" +meta: + mode: "dark" + accent: "orange" + hue: 266 + pair: null + contrast: + fg: 60.2 + black: 0 + red: 33.6 + green: 29.2 + yellow: 61.5 + blue: 40.4 + magenta: 42.7 + cyan: 57.4 + white: 74.9 + brightBlack: 29.2 + brightRed: 33.6 + brightGreen: 66.9 + brightYellow: 45 + brightBlue: 74.6 + brightMagenta: 42.7 + brightCyan: 57.4 + brightWhite: 29.2 diff --git a/themes/devsena-dark.yaml b/themes/devsena-dark.yaml new file mode 100644 index 00000000..95f82d0d --- /dev/null +++ b/themes/devsena-dark.yaml @@ -0,0 +1,53 @@ +name: "DevSena Dark" +source: + marketplace_id: "AsutoshSahoo.devsena-dark" + version: "0.0.1" + installs: 29 + rating: 0 + ratings: 0 + author: "Asutosh Sahoo" + repo: "https://github.com/DearAsutosh/DevSena-vsCode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=AsutoshSahoo.devsena-dark" + formats: null +colors: + bg: "#000000" + fg: "#CDC9FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#6F6F6F" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 77.1 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 27 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/devstack--acid-trip.yaml b/themes/devstack--acid-trip.yaml new file mode 100644 index 00000000..7b6a1e84 --- /dev/null +++ b/themes/devstack--acid-trip.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Acid-Trip)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#252525" + fg: "#FBFBFB" + black: "#252525" + red: "#DC2828" + green: "#29C3A0" + yellow: "#D29922" + blue: "#AFEC46" + magenta: "#AFEC46" + cyan: "#29C3A0" + white: "#FBFBFB" + brightBlack: "#252525" + brightRed: "#DC2828" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#AFEC46" + brightMagenta: "#AFEC46" + brightCyan: "#29C3A0" + brightWhite: "#FBFBFB" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.3 + black: 0 + red: 27.3 + green: 55.7 + yellow: 49.8 + blue: 81 + magenta: 81 + cyan: 55.7 + white: 102.3 + brightBlack: 0 + brightRed: 27.3 + brightGreen: 55.7 + brightYellow: 49.8 + brightBlue: 81 + brightMagenta: 81 + brightCyan: 55.7 + brightWhite: 102.3 diff --git a/themes/devstack--afterglow-fade.yaml b/themes/devstack--afterglow-fade.yaml new file mode 100644 index 00000000..8c22ea44 --- /dev/null +++ b/themes/devstack--afterglow-fade.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Afterglow-Fade)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#2C2025" + fg: "#F1E9E5" + black: "#2C2025" + red: "#E63745" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FF8163" + magenta: "#FF8163" + cyan: "#29C3A0" + white: "#F1E9E5" + brightBlack: "#2C2025" + brightRed: "#E63745" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FF8163" + brightMagenta: "#FF8163" + brightCyan: "#29C3A0" + brightWhite: "#F1E9E5" +meta: + mode: "dark" + accent: "orange" + hue: 352 + pair: null + contrast: + fg: 91.8 + black: 0 + red: 31.6 + green: 56 + yellow: 50.1 + blue: 51.7 + magenta: 51.7 + cyan: 56 + white: 91.8 + brightBlack: 0 + brightRed: 31.6 + brightGreen: 56 + brightYellow: 50.1 + brightBlue: 51.7 + brightMagenta: 51.7 + brightCyan: 56 + brightWhite: 91.8 diff --git a/themes/devstack--amazon-jungle.yaml b/themes/devstack--amazon-jungle.yaml new file mode 100644 index 00000000..efd03ddf --- /dev/null +++ b/themes/devstack--amazon-jungle.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Amazon-Jungle)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#0C0A09" + fg: "#F2F2F2" + black: "#0C0A09" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#22C55E" + magenta: "#22C55E" + cyan: "#29C3A0" + white: "#F2F2F2" + brightBlack: "#0C0A09" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#22C55E" + brightMagenta: "#22C55E" + brightCyan: "#29C3A0" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 99.2 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.5 + blue: 57.6 + magenta: 57.6 + cyan: 58.5 + white: 99.2 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.5 + brightBlue: 57.6 + brightMagenta: 57.6 + brightCyan: 58.5 + brightWhite: 99.2 diff --git a/themes/devstack--amethyst-stone.yaml b/themes/devstack--amethyst-stone.yaml new file mode 100644 index 00000000..fe179dc1 --- /dev/null +++ b/themes/devstack--amethyst-stone.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Amethyst-Stone)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#030712" + fg: "#F9FAFB" + black: "#030712" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#6D28D9" + magenta: "#6D28D9" + cyan: "#29C3A0" + white: "#F9FAFB" + brightBlack: "#030712" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#6D28D9" + brightMagenta: "#6D28D9" + brightCyan: "#29C3A0" + brightWhite: "#F9FAFB" +meta: + mode: "dark" + accent: "magenta" + hue: 262 + pair: null + contrast: + fg: 104.4 + black: 0 + red: 10.3 + green: 58.6 + yellow: 52.6 + blue: 18.5 + magenta: 18.5 + cyan: 58.6 + white: 104.4 + brightBlack: 0 + brightRed: 10.3 + brightGreen: 58.6 + brightYellow: 52.6 + brightBlue: 18.5 + brightMagenta: 18.5 + brightCyan: 58.6 + brightWhite: 104.4 diff --git a/themes/devstack--another-acid-trip.yaml b/themes/devstack--another-acid-trip.yaml new file mode 100644 index 00000000..4fea9557 --- /dev/null +++ b/themes/devstack--another-acid-trip.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Another-Acid-Trip)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#020817" + fg: "#F8FAFC" + black: "#020817" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#A4ED2C" + magenta: "#A4ED2C" + cyan: "#29C3A0" + white: "#F8FAFC" + brightBlack: "#020817" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#A4ED2C" + brightMagenta: "#A4ED2C" + brightCyan: "#29C3A0" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "green" + hue: 259 + pair: null + contrast: + fg: 104.3 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.6 + blue: 83.1 + magenta: 83.1 + cyan: 58.5 + white: 104.3 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 83.1 + brightMagenta: 83.1 + brightCyan: 58.5 + brightWhite: 104.3 diff --git a/themes/devstack--aqua-glacier.yaml b/themes/devstack--aqua-glacier.yaml new file mode 100644 index 00000000..0b051805 --- /dev/null +++ b/themes/devstack--aqua-glacier.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Aqua-Glacier)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#252525" + fg: "#FBFBFB" + black: "#252525" + red: "#DC2828" + green: "#29C3A0" + yellow: "#D29922" + blue: "#1ADBF9" + magenta: "#1ADBF9" + cyan: "#29C3A0" + white: "#FBFBFB" + brightBlack: "#252525" + brightRed: "#DC2828" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#1ADBF9" + brightMagenta: "#1ADBF9" + brightCyan: "#29C3A0" + brightWhite: "#FBFBFB" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.3 + black: 0 + red: 27.3 + green: 55.7 + yellow: 49.8 + blue: 71 + magenta: 71 + cyan: 55.7 + white: 102.3 + brightBlack: 0 + brightRed: 27.3 + brightGreen: 55.7 + brightYellow: 49.8 + brightBlue: 71 + brightMagenta: 71 + brightCyan: 55.7 + brightWhite: 102.3 diff --git a/themes/devstack--black-velvet-luxe.yaml b/themes/devstack--black-velvet-luxe.yaml new file mode 100644 index 00000000..785a60c2 --- /dev/null +++ b/themes/devstack--black-velvet-luxe.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Black-Velvet-Luxe)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#1E1916" + fg: "#F5F5F5" + black: "#1E1916" + red: "#F14444" + green: "#29C3A0" + yellow: "#D29922" + blue: "#BA1F1E" + magenta: "#BA1F1E" + cyan: "#29C3A0" + white: "#F5F5F5" + brightBlack: "#1E1916" + brightRed: "#F14444" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#BA1F1E" + brightMagenta: "#BA1F1E" + brightCyan: "#29C3A0" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100 + black: 0 + red: 37 + green: 57.3 + yellow: 51.4 + blue: 20.7 + magenta: 20.7 + cyan: 57.3 + white: 100 + brightBlack: 0 + brightRed: 37 + brightGreen: 57.3 + brightYellow: 51.4 + brightBlue: 20.7 + brightMagenta: 20.7 + brightCyan: 57.3 + brightWhite: 100 diff --git a/themes/devstack--blueprint-grid.yaml b/themes/devstack--blueprint-grid.yaml new file mode 100644 index 00000000..34e8efb3 --- /dev/null +++ b/themes/devstack--blueprint-grid.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Blueprint-Grid)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FFFFFF" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FF6364" + magenta: "#FF6364" + cyan: "#29C3A0" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FFFFFF" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FF6364" + brightMagenta: "#FF6364" + brightCyan: "#29C3A0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 107.9 + green: 58.7 + yellow: 52.7 + blue: 47.3 + magenta: 47.3 + cyan: 58.7 + white: 107.9 + brightBlack: 0 + brightRed: 107.9 + brightGreen: 58.7 + brightYellow: 52.7 + brightBlue: 47.3 + brightMagenta: 47.3 + brightCyan: 58.7 + brightWhite: 107.9 diff --git a/themes/devstack--c-carbon-6.yaml b/themes/devstack--c-carbon-6.yaml new file mode 100644 index 00000000..3bc4a1b8 --- /dev/null +++ b/themes/devstack--c-carbon-6.yaml @@ -0,0 +1,53 @@ +name: "DevStack (C-Carbon-6)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#09090B" + fg: "#FAFAFA" + black: "#0A0A0A" + red: "#E54D4D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#3D8FD1" + magenta: "#B369DD" + cyan: "#29C3A0" + white: "#FAFAFA" + brightBlack: "#0A0A0A" + brightRed: "#E54D4D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#3D8FD1" + brightMagenta: "#B369DD" + brightCyan: "#29C3A0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.5 + black: 0 + red: 36.9 + green: 58.5 + yellow: 52.6 + blue: 39.6 + magenta: 39.3 + cyan: 58.5 + white: 104.5 + brightBlack: 0 + brightRed: 36.9 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 39.6 + brightMagenta: 39.3 + brightCyan: 58.5 + brightWhite: 104.5 diff --git a/themes/devstack--cobalt-ice.yaml b/themes/devstack--cobalt-ice.yaml new file mode 100644 index 00000000..7ca7cf2e --- /dev/null +++ b/themes/devstack--cobalt-ice.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Cobalt-Ice)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#020817" + fg: "#F8FAFC" + black: "#020817" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#3B82F6" + magenta: "#3B82F6" + cyan: "#29C3A0" + white: "#F8FAFC" + brightBlack: "#020817" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#3B82F6" + brightMagenta: "#3B82F6" + brightCyan: "#29C3A0" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "purple" + hue: 259 + pair: null + contrast: + fg: 104.3 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.6 + blue: 37.6 + magenta: 37.6 + cyan: 58.5 + white: 104.3 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 37.6 + brightMagenta: 37.6 + brightCyan: 58.5 + brightWhite: 104.3 diff --git a/themes/devstack--crystal-quartz.yaml b/themes/devstack--crystal-quartz.yaml new file mode 100644 index 00000000..dc1c653d --- /dev/null +++ b/themes/devstack--crystal-quartz.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Crystal-Quartz)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#0C0A09" + fg: "#F2F2F2" + black: "#0C0A09" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#E11D48" + magenta: "#E11D48" + cyan: "#29C3A0" + white: "#F2F2F2" + brightBlack: "#0C0A09" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#E11D48" + brightMagenta: "#E11D48" + brightCyan: "#29C3A0" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.2 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.5 + blue: 31 + magenta: 31 + cyan: 58.5 + white: 99.2 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.5 + brightBlue: 31 + brightMagenta: 31 + brightCyan: 58.5 + brightWhite: 99.2 diff --git a/themes/devstack--cyber-industrial.yaml b/themes/devstack--cyber-industrial.yaml new file mode 100644 index 00000000..090fba39 --- /dev/null +++ b/themes/devstack--cyber-industrial.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Cyber-Industrial)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#222730" + fg: "#EDEDED" + black: "#222730" + red: "#7C1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#00ADB3" + magenta: "#00ADB3" + cyan: "#29C3A0" + white: "#EDEDED" + brightBlack: "#222730" + brightRed: "#7C1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#00ADB3" + brightMagenta: "#00ADB3" + brightCyan: "#29C3A0" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "yellow" + hue: 262 + pair: null + contrast: + fg: 92.9 + black: 0 + red: 0 + green: 55.4 + yellow: 49.5 + blue: 46.1 + magenta: 46.1 + cyan: 55.4 + white: 92.9 + brightBlack: 0 + brightRed: 0 + brightGreen: 55.4 + brightYellow: 49.5 + brightBlue: 46.1 + brightMagenta: 46.1 + brightCyan: 55.4 + brightWhite: 92.9 diff --git a/themes/devstack--cyber-pop.yaml b/themes/devstack--cyber-pop.yaml new file mode 100644 index 00000000..d2acd104 --- /dev/null +++ b/themes/devstack--cyber-pop.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Cyber-Pop)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#0D0D0D" + fg: "#FAFAFA" + black: "#0D0D0D" + red: "#F26E21" + green: "#29C3A0" + yellow: "#D29922" + blue: "#0DD9D9" + magenta: "#0DD9D9" + cyan: "#29C3A0" + white: "#FAFAFA" + brightBlack: "#0D0D0D" + brightRed: "#F26E21" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#0DD9D9" + brightMagenta: "#0DD9D9" + brightCyan: "#29C3A0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 104.3 + black: 0 + red: 45.8 + green: 58.4 + yellow: 52.4 + blue: 70.9 + magenta: 70.9 + cyan: 58.4 + white: 104.3 + brightBlack: 0 + brightRed: 45.8 + brightGreen: 58.4 + brightYellow: 52.4 + brightBlue: 70.9 + brightMagenta: 70.9 + brightCyan: 58.4 + brightWhite: 104.3 diff --git a/themes/devstack--dark-crimson.yaml b/themes/devstack--dark-crimson.yaml new file mode 100644 index 00000000..fb9ae73c --- /dev/null +++ b/themes/devstack--dark-crimson.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Dark-Crimson)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#0A0A0A" + fg: "#FAFAFA" + black: "#0A0A0A" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#DC2626" + magenta: "#DC2626" + cyan: "#29C3A0" + white: "#FAFAFA" + brightBlack: "#0A0A0A" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#DC2626" + brightMagenta: "#DC2626" + brightCyan: "#29C3A0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.4 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.6 + blue: 30 + magenta: 30 + cyan: 58.5 + white: 104.4 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 30 + brightMagenta: 30 + brightCyan: 58.5 + brightWhite: 104.4 diff --git a/themes/devstack--deep-ocean.yaml b/themes/devstack--deep-ocean.yaml new file mode 100644 index 00000000..904c823f --- /dev/null +++ b/themes/devstack--deep-ocean.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Deep-Ocean)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#0A1429" + fg: "#E5FAFF" + black: "#0A1429" + red: "#7C1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#00A7CC" + magenta: "#00A7CC" + cyan: "#29C3A0" + white: "#E5FAFF" + brightBlack: "#0A1429" + brightRed: "#7C1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#00A7CC" + brightMagenta: "#00A7CC" + brightCyan: "#29C3A0" + brightWhite: "#E5FAFF" +meta: + mode: "dark" + accent: "yellow" + hue: 264 + pair: null + contrast: + fg: 101.2 + black: 0 + red: 9 + green: 57.8 + yellow: 51.9 + blue: 47.2 + magenta: 47.2 + cyan: 57.8 + white: 101.2 + brightBlack: 0 + brightRed: 9 + brightGreen: 57.8 + brightYellow: 51.9 + brightBlue: 47.2 + brightMagenta: 47.2 + brightCyan: 57.8 + brightWhite: 101.2 diff --git a/themes/devstack--deep-sea-navigator.yaml b/themes/devstack--deep-sea-navigator.yaml new file mode 100644 index 00000000..d1f053c9 --- /dev/null +++ b/themes/devstack--deep-sea-navigator.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Deep-Sea-Navigator)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#011D23" + fg: "#EEF5F6" + black: "#011D23" + red: "#7C1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#258FA7" + magenta: "#258FA7" + cyan: "#29C3A0" + white: "#EEF5F6" + brightBlack: "#011D23" + brightRed: "#7C1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#258FA7" + brightMagenta: "#258FA7" + brightCyan: "#29C3A0" + brightWhite: "#EEF5F6" +meta: + mode: "dark" + accent: "yellow" + hue: 214 + pair: null + contrast: + fg: 99 + black: 0 + red: 8.4 + green: 57.2 + yellow: 51.3 + blue: 35.3 + magenta: 35.3 + cyan: 57.2 + white: 99 + brightBlack: 0 + brightRed: 8.4 + brightGreen: 57.2 + brightYellow: 51.3 + brightBlue: 35.3 + brightMagenta: 35.3 + brightCyan: 57.2 + brightWhite: 99 diff --git a/themes/devstack--deep-teal.yaml b/themes/devstack--deep-teal.yaml new file mode 100644 index 00000000..74148314 --- /dev/null +++ b/themes/devstack--deep-teal.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Deep-Teal)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#0D0D0D" + fg: "#EDF3F2" + black: "#0D0D0D" + red: "#7C1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#36BFB1" + magenta: "#36BFB1" + cyan: "#29C3A0" + white: "#EDF3F2" + brightBlack: "#0D0D0D" + brightRed: "#7C1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#36BFB1" + brightMagenta: "#36BFB1" + brightCyan: "#29C3A0" + brightWhite: "#EDF3F2" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 98.9 + black: 0 + red: 9.6 + green: 58.4 + yellow: 52.4 + blue: 57.5 + magenta: 57.5 + cyan: 58.4 + white: 98.9 + brightBlack: 0 + brightRed: 9.6 + brightGreen: 58.4 + brightYellow: 52.4 + brightBlue: 57.5 + brightMagenta: 57.5 + brightCyan: 58.4 + brightWhite: 98.9 diff --git a/themes/devstack--deep-void.yaml b/themes/devstack--deep-void.yaml new file mode 100644 index 00000000..c3610899 --- /dev/null +++ b/themes/devstack--deep-void.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Deep-Void)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#020817" + fg: "#EFF6FF" + black: "#020817" + red: "#DC2626" + green: "#29C3A0" + yellow: "#D29922" + blue: "#1E40AF" + magenta: "#1E40AF" + cyan: "#29C3A0" + white: "#000000" + brightBlack: "#020817" + brightRed: "#DC2626" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#1E40AF" + brightMagenta: "#1E40AF" + brightCyan: "#29C3A0" + brightWhite: "#000000" +meta: + mode: "dark" + accent: "orange" + hue: 259 + pair: null + contrast: + fg: 101.3 + black: 0 + red: 30 + green: 58.5 + yellow: 52.6 + blue: 12.9 + magenta: 12.9 + cyan: 58.5 + white: 0 + brightBlack: 0 + brightRed: 30 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 12.9 + brightMagenta: 12.9 + brightCyan: 58.5 + brightWhite: 0 diff --git a/themes/devstack--desert-night.yaml b/themes/devstack--desert-night.yaml new file mode 100644 index 00000000..4626a143 --- /dev/null +++ b/themes/devstack--desert-night.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Desert-Night)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#141415" + fg: "#EBEBD0" + black: "#141415" + red: "#811D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#629DAC" + magenta: "#629DAC" + cyan: "#29C3A0" + white: "#EBEBD0" + brightBlack: "#141415" + brightRed: "#811D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#629DAC" + brightMagenta: "#629DAC" + brightCyan: "#29C3A0" + brightWhite: "#EBEBD0" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 92.9 + black: 0 + red: 10 + green: 57.9 + yellow: 52 + blue: 44.1 + magenta: 44.1 + cyan: 57.9 + white: 92.9 + brightBlack: 0 + brightRed: 10 + brightGreen: 57.9 + brightYellow: 52 + brightBlue: 44.1 + brightMagenta: 44.1 + brightCyan: 57.9 + brightWhite: 92.9 diff --git a/themes/devstack--espresso-high.yaml b/themes/devstack--espresso-high.yaml new file mode 100644 index 00000000..a9bac7f3 --- /dev/null +++ b/themes/devstack--espresso-high.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Espresso-High)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#121212" + fg: "#EEEEEE" + black: "#121212" + red: "#E55031" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FCDFC2" + magenta: "#FCDFC2" + cyan: "#29C3A0" + white: "#EEEEEE" + brightBlack: "#121212" + brightRed: "#E55031" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FCDFC2" + brightMagenta: "#FCDFC2" + brightCyan: "#29C3A0" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.2 + black: 0 + red: 36.6 + green: 58.1 + yellow: 52.1 + blue: 89.7 + magenta: 89.7 + cyan: 58.1 + white: 96.2 + brightBlack: 0 + brightRed: 36.6 + brightGreen: 58.1 + brightYellow: 52.1 + brightBlue: 89.7 + brightMagenta: 89.7 + brightCyan: 58.1 + brightWhite: 96.2 diff --git a/themes/devstack--executive-level.yaml b/themes/devstack--executive-level.yaml new file mode 100644 index 00000000..719689c2 --- /dev/null +++ b/themes/devstack--executive-level.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Executive-Level)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#1C2433" + fg: "#E4E8EF" + black: "#1C2433" + red: "#F14444" + green: "#29C3A0" + yellow: "#D29922" + blue: "#0265FD" + magenta: "#0265FD" + cyan: "#29C3A0" + white: "#E4E8EF" + brightBlack: "#1C2433" + brightRed: "#F14444" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#0265FD" + brightMagenta: "#0265FD" + brightCyan: "#29C3A0" + brightWhite: "#E4E8EF" +meta: + mode: "dark" + accent: "purple" + hue: 263 + pair: null + contrast: + fg: 90 + black: 0 + red: 35.6 + green: 55.9 + yellow: 50 + blue: 26.1 + magenta: 26.1 + cyan: 55.9 + white: 90 + brightBlack: 0 + brightRed: 35.6 + brightGreen: 55.9 + brightYellow: 50 + brightBlue: 26.1 + brightMagenta: 26.1 + brightCyan: 55.9 + brightWhite: 90 diff --git a/themes/devstack--forest-tech.yaml b/themes/devstack--forest-tech.yaml new file mode 100644 index 00000000..7d4b0976 --- /dev/null +++ b/themes/devstack--forest-tech.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Forest-Tech)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#012441" + fg: "#B4FDC6" + black: "#012441" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#04DC3A" + magenta: "#04DC3A" + cyan: "#29C3A0" + white: "#B4FDC6" + brightBlack: "#012441" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#04DC3A" + brightMagenta: "#04DC3A" + brightCyan: "#29C3A0" + brightWhite: "#B4FDC6" +meta: + mode: "dark" + accent: "green" + hue: 248 + pair: null + contrast: + fg: 92.9 + black: 0 + red: 7.6 + green: 55.9 + yellow: 49.9 + blue: 65.6 + magenta: 65.6 + cyan: 55.9 + white: 92.9 + brightBlack: 0 + brightRed: 7.6 + brightGreen: 55.9 + brightYellow: 49.9 + brightBlue: 65.6 + brightMagenta: 65.6 + brightCyan: 55.9 + brightWhite: 92.9 diff --git a/themes/devstack--frozen-deep.yaml b/themes/devstack--frozen-deep.yaml new file mode 100644 index 00000000..1fc91791 --- /dev/null +++ b/themes/devstack--frozen-deep.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Frozen-Deep)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#1D292F" + fg: "#BDE1FA" + black: "#1D292F" + red: "#7C1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#BDE1FA" + magenta: "#BDE1FA" + cyan: "#29C3A0" + white: "#BDE1FA" + brightBlack: "#1D292F" + brightRed: "#7C1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#BDE1FA" + brightMagenta: "#BDE1FA" + brightCyan: "#29C3A0" + brightWhite: "#BDE1FA" +meta: + mode: "dark" + accent: "yellow" + hue: 230 + pair: null + contrast: + fg: 82.1 + black: 0 + red: 0 + green: 55.3 + yellow: 49.4 + blue: 82.1 + magenta: 82.1 + cyan: 55.3 + white: 82.1 + brightBlack: 0 + brightRed: 0 + brightGreen: 55.3 + brightYellow: 49.4 + brightBlue: 82.1 + brightMagenta: 82.1 + brightCyan: 55.3 + brightWhite: 82.1 diff --git a/themes/devstack--glacier-blue.yaml b/themes/devstack--glacier-blue.yaml new file mode 100644 index 00000000..883d2d1a --- /dev/null +++ b/themes/devstack--glacier-blue.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Glacier-Blue)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#012B3C" + fg: "#DBF5FA" + black: "#012B3C" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#049BD7" + magenta: "#049BD7" + cyan: "#29C3A0" + white: "#DBF5FA" + brightBlack: "#012B3C" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#049BD7" + brightMagenta: "#049BD7" + brightCyan: "#29C3A0" + brightWhite: "#DBF5FA" +meta: + mode: "dark" + accent: "yellow" + hue: 231 + pair: null + contrast: + fg: 94.6 + black: 0 + red: 0 + green: 55.1 + yellow: 49.1 + blue: 40.3 + magenta: 40.3 + cyan: 55.1 + white: 94.6 + brightBlack: 0 + brightRed: 0 + brightGreen: 55.1 + brightYellow: 49.1 + brightBlue: 40.3 + brightMagenta: 40.3 + brightCyan: 55.1 + brightWhite: 94.6 diff --git a/themes/devstack--high-alert-crimson.yaml b/themes/devstack--high-alert-crimson.yaml new file mode 100644 index 00000000..1072f20a --- /dev/null +++ b/themes/devstack--high-alert-crimson.yaml @@ -0,0 +1,53 @@ +name: "DevStack (High-Alert-Crimson)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#070A0D" + fg: "#FAFAFA" + black: "#070A0D" + red: "#410101" + green: "#29C3A0" + yellow: "#D29922" + blue: "#F23D2C" + magenta: "#F23D2C" + cyan: "#29C3A0" + white: "#FAFAFA" + brightBlack: "#070A0D" + brightRed: "#410101" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#F23D2C" + brightMagenta: "#F23D2C" + brightCyan: "#29C3A0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.4 + black: 0 + red: 0 + green: 58.5 + yellow: 52.6 + blue: 37.3 + magenta: 37.3 + cyan: 58.5 + white: 104.4 + brightBlack: 0 + brightRed: 0 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 37.3 + brightMagenta: 37.3 + brightCyan: 58.5 + brightWhite: 104.4 diff --git a/themes/devstack--irrus-float.yaml b/themes/devstack--irrus-float.yaml new file mode 100644 index 00000000..34414485 --- /dev/null +++ b/themes/devstack--irrus-float.yaml @@ -0,0 +1,53 @@ +name: "DevStack (irrus-Float)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#1B1B1B" + fg: "#F2F5FC" + black: "#1B1B1B" + red: "#FF6364" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FF96CB" + magenta: "#FF96CB" + cyan: "#29C3A0" + white: "#F2F5FC" + brightBlack: "#1B1B1B" + brightRed: "#FF6364" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FF96CB" + brightMagenta: "#FF96CB" + brightCyan: "#29C3A0" + brightWhite: "#F2F5FC" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.8 + black: 0 + red: 45.8 + green: 57.2 + yellow: 51.2 + blue: 62.3 + magenta: 62.3 + cyan: 57.2 + white: 99.8 + brightBlack: 0 + brightRed: 45.8 + brightGreen: 57.2 + brightYellow: 51.2 + brightBlue: 62.3 + brightMagenta: 62.3 + brightCyan: 57.2 + brightWhite: 99.8 diff --git a/themes/devstack--loki.yaml b/themes/devstack--loki.yaml new file mode 100644 index 00000000..cdbc0dde --- /dev/null +++ b/themes/devstack--loki.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Loki)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#252525" + fg: "#FBFBFB" + black: "#252525" + red: "#DC2828" + green: "#29C3A0" + yellow: "#D29922" + blue: "#14E699" + magenta: "#14E699" + cyan: "#29C3A0" + white: "#FBFBFB" + brightBlack: "#252525" + brightRed: "#DC2828" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#14E699" + brightMagenta: "#14E699" + brightCyan: "#29C3A0" + brightWhite: "#FBFBFB" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.3 + black: 0 + red: 27.3 + green: 55.7 + yellow: 49.8 + blue: 72.3 + magenta: 72.3 + cyan: 55.7 + white: 102.3 + brightBlack: 0 + brightRed: 27.3 + brightGreen: 55.7 + brightYellow: 49.8 + brightBlue: 72.3 + brightMagenta: 72.3 + brightCyan: 55.7 + brightWhite: 102.3 diff --git a/themes/devstack--mainframe-terminal.yaml b/themes/devstack--mainframe-terminal.yaml new file mode 100644 index 00000000..de45b9f9 --- /dev/null +++ b/themes/devstack--mainframe-terminal.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Mainframe-Terminal)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#0E111B" + fg: "#D8DFE4" + black: "#0E111B" + red: "#FF1648" + green: "#29C3A0" + yellow: "#D29922" + blue: "#26ACF4" + magenta: "#26ACF4" + cyan: "#29C3A0" + white: "#D8DFE4" + brightBlack: "#0E111B" + brightRed: "#FF1648" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#26ACF4" + brightMagenta: "#26ACF4" + brightCyan: "#29C3A0" + brightWhite: "#D8DFE4" +meta: + mode: "dark" + accent: "orange" + hue: 271 + pair: null + contrast: + fg: 86 + black: 0 + red: 37.7 + green: 58.1 + yellow: 52.2 + blue: 52.3 + magenta: 52.3 + cyan: 58.1 + white: 86 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 58.1 + brightYellow: 52.2 + brightBlue: 52.3 + brightMagenta: 52.3 + brightCyan: 58.1 + brightWhite: 86 diff --git a/themes/devstack--meadow-whisper.yaml b/themes/devstack--meadow-whisper.yaml new file mode 100644 index 00000000..521cd17a --- /dev/null +++ b/themes/devstack--meadow-whisper.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Meadow-Whisper)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#1A1512" + fg: "#E9D4B3" + black: "#1A1512" + red: "#F9281D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#8A906D" + magenta: "#8A906D" + cyan: "#29C3A0" + white: "#E9D4B3" + brightBlack: "#1A1512" + brightRed: "#F9281D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#8A906D" + brightMagenta: "#8A906D" + brightCyan: "#29C3A0" + brightWhite: "#E9D4B3" +meta: + mode: "dark" + accent: "orange" + hue: 53 + pair: null + contrast: + fg: 81.2 + black: 0 + red: 36.2 + green: 57.7 + yellow: 51.8 + blue: 40 + magenta: 40 + cyan: 57.7 + white: 81.2 + brightBlack: 0 + brightRed: 36.2 + brightGreen: 57.7 + brightYellow: 51.8 + brightBlue: 40 + brightMagenta: 40 + brightCyan: 57.7 + brightWhite: 81.2 diff --git a/themes/devstack--metropolis-sky-scape.yaml b/themes/devstack--metropolis-sky-scape.yaml new file mode 100644 index 00000000..e4c70378 --- /dev/null +++ b/themes/devstack--metropolis-sky-scape.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Metropolis-Sky-Scape)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#333333" + fg: "#F4F4DD" + black: "#333333" + red: "#FF4400" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FFBE14" + magenta: "#FFBE14" + cyan: "#29C3A0" + white: "#F4F4DD" + brightBlack: "#333333" + brightRed: "#FF4400" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FFBE14" + brightMagenta: "#FFBE14" + brightCyan: "#29C3A0" + brightWhite: "#F4F4DD" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 93.8 + black: 0 + red: 35.4 + green: 52.8 + yellow: 46.8 + blue: 68.1 + magenta: 68.1 + cyan: 52.8 + white: 93.8 + brightBlack: 0 + brightRed: 35.4 + brightGreen: 52.8 + brightYellow: 46.8 + brightBlue: 68.1 + brightMagenta: 68.1 + brightCyan: 52.8 + brightWhite: 93.8 diff --git a/themes/devstack--midas-touch.yaml b/themes/devstack--midas-touch.yaml new file mode 100644 index 00000000..77083e85 --- /dev/null +++ b/themes/devstack--midas-touch.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Midas-Touch)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#0C0A09" + fg: "#FAFAF9" + black: "#0C0A09" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FACC15" + magenta: "#FACC15" + cyan: "#29C3A0" + white: "#FAFAF9" + brightBlack: "#0C0A09" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FACC15" + brightMagenta: "#FACC15" + brightCyan: "#29C3A0" + brightWhite: "#FAFAF9" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 104.4 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.5 + blue: 78.6 + magenta: 78.6 + cyan: 58.5 + white: 104.4 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.5 + brightBlue: 78.6 + brightMagenta: 78.6 + brightCyan: 58.5 + brightWhite: 104.4 diff --git a/themes/devstack--middle-field-canvas.yaml b/themes/devstack--middle-field-canvas.yaml new file mode 100644 index 00000000..0eaadd0a --- /dev/null +++ b/themes/devstack--middle-field-canvas.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Middle-Field-Canvas)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#0A0A0A" + fg: "#FAFAFA" + black: "#0A0A0A" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FAFAFA" + magenta: "#FAFAFA" + cyan: "#29C3A0" + white: "#FAFAFA" + brightBlack: "#0A0A0A" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FAFAFA" + brightMagenta: "#FAFAFA" + brightCyan: "#29C3A0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 104.4 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.6 + blue: 104.4 + magenta: 104.4 + cyan: 58.5 + white: 104.4 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 104.4 + brightMagenta: 104.4 + brightCyan: 58.5 + brightWhite: 104.4 diff --git a/themes/devstack--mineral-forest.yaml b/themes/devstack--mineral-forest.yaml new file mode 100644 index 00000000..3c253af9 --- /dev/null +++ b/themes/devstack--mineral-forest.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Mineral-Forest)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#061409" + fg: "#E7EEEC" + black: "#061409" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#95B2A8" + magenta: "#95B2A8" + cyan: "#29C3A0" + white: "#E7EEEC" + brightBlack: "#061409" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#95B2A8" + brightMagenta: "#95B2A8" + brightCyan: "#29C3A0" + brightWhite: "#E7EEEC" +meta: + mode: "dark" + accent: "yellow" + hue: 150 + pair: null + contrast: + fg: 95.2 + black: 0 + red: 9.8 + green: 58.1 + yellow: 52.2 + blue: 56.6 + magenta: 56.6 + cyan: 58.1 + white: 95.2 + brightBlack: 0 + brightRed: 9.8 + brightGreen: 58.1 + brightYellow: 52.2 + brightBlue: 56.6 + brightMagenta: 56.6 + brightCyan: 58.1 + brightWhite: 95.2 diff --git a/themes/devstack--modern-retro.yaml b/themes/devstack--modern-retro.yaml new file mode 100644 index 00000000..e4770d28 --- /dev/null +++ b/themes/devstack--modern-retro.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Modern-Retro)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#151E29" + fg: "#F5F5F5" + black: "#151E29" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FC4F83" + magenta: "#FC4F83" + cyan: "#29C3A0" + white: "#F5F5F5" + brightBlack: "#151E29" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FC4F83" + brightMagenta: "#FC4F83" + brightCyan: "#29C3A0" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "red" + hue: 254 + pair: null + contrast: + fg: 99.5 + black: 0 + red: 8.6 + green: 56.9 + yellow: 50.9 + blue: 42.1 + magenta: 42.1 + cyan: 56.9 + white: 99.5 + brightBlack: 0 + brightRed: 8.6 + brightGreen: 56.9 + brightYellow: 50.9 + brightBlue: 42.1 + brightMagenta: 42.1 + brightCyan: 56.9 + brightWhite: 99.5 diff --git a/themes/devstack--monet-impressionism.yaml b/themes/devstack--monet-impressionism.yaml new file mode 100644 index 00000000..2c901ee5 --- /dev/null +++ b/themes/devstack--monet-impressionism.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Monet-Impressionism)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#262626" + fg: "#C3C1BA" + black: "#262626" + red: "#F14444" + green: "#29C3A0" + yellow: "#D29922" + blue: "#D87757" + magenta: "#D87757" + cyan: "#29C3A0" + white: "#C3C1BA" + brightBlack: "#262626" + brightRed: "#F14444" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#D87757" + brightMagenta: "#D87757" + brightCyan: "#29C3A0" + brightWhite: "#C3C1BA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 66.1 + black: 0 + red: 35.2 + green: 55.6 + yellow: 49.6 + blue: 40.6 + magenta: 40.6 + cyan: 55.6 + white: 66.1 + brightBlack: 0 + brightRed: 35.2 + brightGreen: 55.6 + brightYellow: 49.6 + brightBlue: 40.6 + brightMagenta: 40.6 + brightCyan: 55.6 + brightWhite: 66.1 diff --git a/themes/devstack--nightshade-venom.yaml b/themes/devstack--nightshade-venom.yaml new file mode 100644 index 00000000..c5cc5b0f --- /dev/null +++ b/themes/devstack--nightshade-venom.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Nightshade-Venom)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#020817" + fg: "#F8FAFC" + black: "#020817" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#6D28D9" + magenta: "#6D28D9" + cyan: "#29C3A0" + white: "#F8FAFC" + brightBlack: "#020817" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#6D28D9" + brightMagenta: "#6D28D9" + brightCyan: "#29C3A0" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "magenta" + hue: 259 + pair: null + contrast: + fg: 104.3 + black: 0 + red: 10.2 + green: 58.5 + yellow: 52.6 + blue: 18.5 + magenta: 18.5 + cyan: 58.5 + white: 104.3 + brightBlack: 0 + brightRed: 10.2 + brightGreen: 58.5 + brightYellow: 52.6 + brightBlue: 18.5 + brightMagenta: 18.5 + brightCyan: 58.5 + brightWhite: 104.3 diff --git a/themes/devstack--obsidian-wine.yaml b/themes/devstack--obsidian-wine.yaml new file mode 100644 index 00000000..98208acb --- /dev/null +++ b/themes/devstack--obsidian-wine.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Obsidian-Wine)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#131420" + fg: "#F2F2F2" + black: "#131420" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#E74040" + magenta: "#E74040" + cyan: "#29C3A0" + white: "#F2F2F2" + brightBlack: "#131420" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#E74040" + brightMagenta: "#E74040" + brightCyan: "#29C3A0" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "orange" + hue: 280 + pair: null + contrast: + fg: 98.5 + black: 0 + red: 9.5 + green: 57.8 + yellow: 51.9 + blue: 34.6 + magenta: 34.6 + cyan: 57.8 + white: 98.5 + brightBlack: 0 + brightRed: 9.5 + brightGreen: 57.8 + brightYellow: 51.9 + brightBlue: 34.6 + brightMagenta: 34.6 + brightCyan: 57.8 + brightWhite: 98.5 diff --git a/themes/devstack--oceanic-gradient.yaml b/themes/devstack--oceanic-gradient.yaml new file mode 100644 index 00000000..1bf9a7ff --- /dev/null +++ b/themes/devstack--oceanic-gradient.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Oceanic-Gradient)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#020231" + fg: "#CDF1F9" + black: "#020231" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#CDF1F9" + magenta: "#CDF1F9" + cyan: "#29C3A0" + white: "#CDF1F9" + brightBlack: "#020231" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#CDF1F9" + brightMagenta: "#CDF1F9" + brightCyan: "#29C3A0" + brightWhite: "#CDF1F9" +meta: + mode: "dark" + accent: "yellow" + hue: 268 + pair: null + contrast: + fg: 94.1 + black: 0 + red: 9.9 + green: 58.2 + yellow: 52.2 + blue: 94.1 + magenta: 94.1 + cyan: 58.2 + white: 94.1 + brightBlack: 0 + brightRed: 9.9 + brightGreen: 58.2 + brightYellow: 52.2 + brightBlue: 94.1 + brightMagenta: 94.1 + brightCyan: 58.2 + brightWhite: 94.1 diff --git a/themes/devstack--oceanic-sunset.yaml b/themes/devstack--oceanic-sunset.yaml new file mode 100644 index 00000000..aa83473b --- /dev/null +++ b/themes/devstack--oceanic-sunset.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Oceanic-Sunset)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#011D23" + fg: "#EDF1F2" + black: "#011D23" + red: "#7C1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#F26389" + magenta: "#F26389" + cyan: "#29C3A0" + white: "#EDF1F2" + brightBlack: "#011D23" + brightRed: "#7C1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#F26389" + brightMagenta: "#F26389" + brightCyan: "#29C3A0" + brightWhite: "#EDF1F2" +meta: + mode: "dark" + accent: "red" + hue: 214 + pair: null + contrast: + fg: 96.8 + black: 0 + red: 8.4 + green: 57.2 + yellow: 51.3 + blue: 44 + magenta: 44 + cyan: 57.2 + white: 96.8 + brightBlack: 0 + brightRed: 8.4 + brightGreen: 57.2 + brightYellow: 51.3 + brightBlue: 44 + brightMagenta: 44 + brightCyan: 57.2 + brightWhite: 96.8 diff --git a/themes/devstack--office-paper.yaml b/themes/devstack--office-paper.yaml new file mode 100644 index 00000000..6c1f4d3f --- /dev/null +++ b/themes/devstack--office-paper.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Office-Paper)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#0F182B" + fg: "#E4E8EF" + black: "#0F182B" + red: "#F14444" + green: "#29C3A0" + yellow: "#D29922" + blue: "#818CF9" + magenta: "#818CF9" + cyan: "#29C3A0" + white: "#E4E8EF" + brightBlack: "#0F182B" + brightRed: "#F14444" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#818CF9" + brightMagenta: "#818CF9" + brightCyan: "#29C3A0" + brightWhite: "#E4E8EF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 91.5 + black: 0 + red: 37.1 + green: 57.5 + yellow: 51.5 + blue: 44.4 + magenta: 44.4 + cyan: 57.5 + white: 91.5 + brightBlack: 0 + brightRed: 37.1 + brightGreen: 57.5 + brightYellow: 51.5 + brightBlue: 44.4 + brightMagenta: 44.4 + brightCyan: 57.5 + brightWhite: 91.5 diff --git a/themes/devstack--oracle-vision.yaml b/themes/devstack--oracle-vision.yaml new file mode 100644 index 00000000..5d9e821d --- /dev/null +++ b/themes/devstack--oracle-vision.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Oracle-Vision)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#0E1A1F" + fg: "#45E8E8" + black: "#0E1A1F" + red: "#F14444" + green: "#29C3A0" + yellow: "#D29922" + blue: "#1DB8CE" + magenta: "#1DB8CE" + cyan: "#29C3A0" + white: "#45E8E8" + brightBlack: "#0E1A1F" + brightRed: "#F14444" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#1DB8CE" + brightMagenta: "#1DB8CE" + brightCyan: "#29C3A0" + brightWhite: "#45E8E8" +meta: + mode: "dark" + accent: "orange" + hue: 226 + pair: null + contrast: + fg: 78.9 + black: 0 + red: 37.1 + green: 57.5 + yellow: 51.5 + blue: 54.4 + magenta: 54.4 + cyan: 57.5 + white: 78.9 + brightBlack: 0 + brightRed: 37.1 + brightGreen: 57.5 + brightYellow: 51.5 + brightBlue: 54.4 + brightMagenta: 54.4 + brightCyan: 57.5 + brightWhite: 78.9 diff --git a/themes/devstack--pastel-sorbet.yaml b/themes/devstack--pastel-sorbet.yaml new file mode 100644 index 00000000..66cd7d4d --- /dev/null +++ b/themes/devstack--pastel-sorbet.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Pastel-Sorbet)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#091F1B" + fg: "#EAFFD1" + black: "#091F1B" + red: "#7C1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#95DFD2" + magenta: "#95DFD2" + cyan: "#29C3A0" + white: "#EAFFD1" + brightBlack: "#091F1B" + brightRed: "#7C1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#95DFD2" + brightMagenta: "#95DFD2" + brightCyan: "#29C3A0" + brightWhite: "#EAFFD1" +meta: + mode: "dark" + accent: "yellow" + hue: 180 + pair: null + contrast: + fg: 101.5 + black: 0 + red: 8.3 + green: 57.1 + yellow: 51.1 + blue: 77.3 + magenta: 77.3 + cyan: 57.1 + white: 101.5 + brightBlack: 0 + brightRed: 8.3 + brightGreen: 57.1 + brightYellow: 51.1 + brightBlue: 77.3 + brightMagenta: 77.3 + brightCyan: 57.1 + brightWhite: 101.5 diff --git a/themes/devstack--polymer-flow.yaml b/themes/devstack--polymer-flow.yaml new file mode 100644 index 00000000..20c56b50 --- /dev/null +++ b/themes/devstack--polymer-flow.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Polymer-Flow)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#0D0A0E" + fg: "#F2ECF3" + black: "#0D0A0E" + red: "#DF0C07" + green: "#29C3A0" + yellow: "#D29922" + blue: "#6D65FE" + magenta: "#6D65FE" + cyan: "#29C3A0" + white: "#F2ECF3" + brightBlack: "#0D0A0E" + brightRed: "#DF0C07" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#6D65FE" + brightMagenta: "#6D65FE" + brightCyan: "#29C3A0" + brightWhite: "#F2ECF3" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.5 + black: 0 + red: 29.5 + green: 58.5 + yellow: 52.5 + blue: 32.6 + magenta: 32.6 + cyan: 58.5 + white: 96.5 + brightBlack: 0 + brightRed: 29.5 + brightGreen: 58.5 + brightYellow: 52.5 + brightBlue: 32.6 + brightMagenta: 32.6 + brightCyan: 58.5 + brightWhite: 96.5 diff --git a/themes/devstack--retro-arcade.yaml b/themes/devstack--retro-arcade.yaml new file mode 100644 index 00000000..e6ab9711 --- /dev/null +++ b/themes/devstack--retro-arcade.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Retro-Arcade)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#1A0008" + fg: "#F7F8D8" + black: "#1A0008" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FF145B" + magenta: "#FF145B" + cyan: "#29C3A0" + white: "#F7F8D8" + brightBlack: "#1A0008" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FF145B" + brightMagenta: "#FF145B" + brightCyan: "#29C3A0" + brightWhite: "#F7F8D8" +meta: + mode: "dark" + accent: "red" + hue: 1 + pair: null + contrast: + fg: 101.4 + black: 0 + red: 10.1 + green: 58.4 + yellow: 52.4 + blue: 38.2 + magenta: 38.2 + cyan: 58.4 + white: 101.4 + brightBlack: 0 + brightRed: 10.1 + brightGreen: 58.4 + brightYellow: 52.4 + brightBlue: 38.2 + brightMagenta: 38.2 + brightCyan: 58.4 + brightWhite: 101.4 diff --git a/themes/devstack--silk-petal.yaml b/themes/devstack--silk-petal.yaml new file mode 100644 index 00000000..ea57ffe8 --- /dev/null +++ b/themes/devstack--silk-petal.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Silk-Petal)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#252525" + fg: "#FBFBFB" + black: "#252525" + red: "#DC2828" + green: "#29C3A0" + yellow: "#D29922" + blue: "#D924F5" + magenta: "#D924F5" + cyan: "#29C3A0" + white: "#FBFBFB" + brightBlack: "#252525" + brightRed: "#DC2828" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#D924F5" + brightMagenta: "#D924F5" + brightCyan: "#29C3A0" + brightWhite: "#FBFBFB" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 102.3 + black: 0 + red: 27.3 + green: 55.7 + yellow: 49.8 + blue: 35.1 + magenta: 35.1 + cyan: 55.7 + white: 102.3 + brightBlack: 0 + brightRed: 27.3 + brightGreen: 55.7 + brightYellow: 49.8 + brightBlue: 35.1 + brightMagenta: 35.1 + brightCyan: 55.7 + brightWhite: 102.3 diff --git a/themes/devstack--smoldering-ember.yaml b/themes/devstack--smoldering-ember.yaml new file mode 100644 index 00000000..517ccfa5 --- /dev/null +++ b/themes/devstack--smoldering-ember.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Smoldering-Ember)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#252525" + fg: "#FBFBFB" + black: "#252525" + red: "#DC2828" + green: "#29C3A0" + yellow: "#D29922" + blue: "#4D4FEF" + magenta: "#4D4FEF" + cyan: "#29C3A0" + white: "#FBFBFB" + brightBlack: "#252525" + brightRed: "#DC2828" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#4D4FEF" + brightMagenta: "#4D4FEF" + brightCyan: "#29C3A0" + brightWhite: "#FBFBFB" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 102.3 + black: 0 + red: 27.3 + green: 55.7 + yellow: 49.8 + blue: 21.1 + magenta: 21.1 + cyan: 55.7 + white: 102.3 + brightBlack: 0 + brightRed: 27.3 + brightGreen: 55.7 + brightYellow: 49.8 + brightBlue: 21.1 + brightMagenta: 21.1 + brightCyan: 55.7 + brightWhite: 102.3 diff --git a/themes/devstack--solar-flare.yaml b/themes/devstack--solar-flare.yaml new file mode 100644 index 00000000..fe446b8e --- /dev/null +++ b/themes/devstack--solar-flare.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Solar-Flare)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#0C0A09" + fg: "#FAFAF9" + black: "#0C0A09" + red: "#DC2626" + green: "#29C3A0" + yellow: "#D29922" + blue: "#EA580C" + magenta: "#EA580C" + cyan: "#29C3A0" + white: "#FAFAF9" + brightBlack: "#0C0A09" + brightRed: "#DC2626" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#EA580C" + brightMagenta: "#EA580C" + brightCyan: "#29C3A0" + brightWhite: "#FAFAF9" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.4 + black: 0 + red: 30 + green: 58.5 + yellow: 52.5 + blue: 39.4 + magenta: 39.4 + cyan: 58.5 + white: 104.4 + brightBlack: 0 + brightRed: 30 + brightGreen: 58.5 + brightYellow: 52.5 + brightBlue: 39.4 + brightMagenta: 39.4 + brightCyan: 58.5 + brightWhite: 104.4 diff --git a/themes/devstack--solstice-heat.yaml b/themes/devstack--solstice-heat.yaml new file mode 100644 index 00000000..57c59a6f --- /dev/null +++ b/themes/devstack--solstice-heat.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Solstice-Heat)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#2B221A" + fg: "#F9CA9C" + black: "#2B221A" + red: "#B71A1A" + green: "#29C3A0" + yellow: "#D29922" + blue: "#F66E60" + magenta: "#F66E60" + cyan: "#29C3A0" + white: "#F9CA9C" + brightBlack: "#2B221A" + brightRed: "#B71A1A" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#F66E60" + brightMagenta: "#F66E60" + brightCyan: "#29C3A0" + brightWhite: "#F9CA9C" +meta: + mode: "dark" + accent: "orange" + hue: 63 + pair: null + contrast: + fg: 76.9 + black: 0 + red: 18.4 + green: 56 + yellow: 50 + blue: 44.9 + magenta: 44.9 + cyan: 56 + white: 76.9 + brightBlack: 0 + brightRed: 18.4 + brightGreen: 56 + brightYellow: 50 + brightBlue: 44.9 + brightMagenta: 44.9 + brightCyan: 56 + brightWhite: 76.9 diff --git a/themes/devstack--sonic-pulse.yaml b/themes/devstack--sonic-pulse.yaml new file mode 100644 index 00000000..dfb121d2 --- /dev/null +++ b/themes/devstack--sonic-pulse.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Sonic-Pulse)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#080B14" + fg: "#E9F0F5" + black: "#080B14" + red: "#FF1648" + green: "#29C3A0" + yellow: "#D29922" + blue: "#00B262" + magenta: "#00B262" + cyan: "#29C3A0" + white: "#E9F0F5" + brightBlack: "#080B14" + brightRed: "#FF1648" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#00B262" + brightMagenta: "#00B262" + brightCyan: "#29C3A0" + brightWhite: "#E9F0F5" +meta: + mode: "dark" + accent: "orange" + hue: 269 + pair: null + contrast: + fg: 97.1 + black: 0 + red: 38 + green: 58.5 + yellow: 52.5 + blue: 48.7 + magenta: 48.7 + cyan: 58.5 + white: 97.1 + brightBlack: 0 + brightRed: 38 + brightGreen: 58.5 + brightYellow: 52.5 + brightBlue: 48.7 + brightMagenta: 48.7 + brightCyan: 58.5 + brightWhite: 97.1 diff --git a/themes/devstack--sorbet-swirl.yaml b/themes/devstack--sorbet-swirl.yaml new file mode 100644 index 00000000..2ec00a6b --- /dev/null +++ b/themes/devstack--sorbet-swirl.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Sorbet-Swirl)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#1E1916" + fg: "#E1E7FD" + black: "#1E1916" + red: "#FBA7A7" + green: "#29C3A0" + yellow: "#D29922" + blue: "#C1AAFF" + magenta: "#C1AAFF" + cyan: "#29C3A0" + white: "#E1E7FD" + brightBlack: "#1E1916" + brightRed: "#FBA7A7" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#C1AAFF" + brightMagenta: "#C1AAFF" + brightCyan: "#29C3A0" + brightWhite: "#E1E7FD" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 91.2 + black: 0 + red: 65.8 + green: 57.3 + yellow: 51.4 + blue: 62.2 + magenta: 62.2 + cyan: 57.3 + white: 91.2 + brightBlack: 0 + brightRed: 65.8 + brightGreen: 57.3 + brightYellow: 51.4 + brightBlue: 62.2 + brightMagenta: 62.2 + brightCyan: 57.3 + brightWhite: 91.2 diff --git a/themes/devstack--studio-apartment.yaml b/themes/devstack--studio-apartment.yaml new file mode 100644 index 00000000..5dc3c10a --- /dev/null +++ b/themes/devstack--studio-apartment.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Studio-Apartment)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#161616" + fg: "#E4E4E4" + black: "#161616" + red: "#F14444" + green: "#29C3A0" + yellow: "#D29922" + blue: "#3981F6" + magenta: "#3981F6" + cyan: "#29C3A0" + white: "#E4E4E4" + brightBlack: "#161616" + brightRed: "#F14444" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#3981F6" + brightMagenta: "#3981F6" + brightCyan: "#29C3A0" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.5 + black: 0 + red: 37.4 + green: 57.7 + yellow: 51.8 + blue: 36.5 + magenta: 36.5 + cyan: 57.7 + white: 89.5 + brightBlack: 0 + brightRed: 37.4 + brightGreen: 57.7 + brightYellow: 51.8 + brightBlue: 36.5 + brightMagenta: 36.5 + brightCyan: 57.7 + brightWhite: 89.5 diff --git a/themes/devstack--synthwave-neon.yaml b/themes/devstack--synthwave-neon.yaml new file mode 100644 index 00000000..3208711f --- /dev/null +++ b/themes/devstack--synthwave-neon.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Synthwave-Neon)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#153C51" + fg: "#FAFAFA" + black: "#153C51" + red: "#DF6891" + green: "#29C3A0" + yellow: "#D29922" + blue: "#F551D1" + magenta: "#F551D1" + cyan: "#29C3A0" + white: "#FAFAFA" + brightBlack: "#153C51" + brightRed: "#DF6891" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#F551D1" + brightMagenta: "#F551D1" + brightCyan: "#29C3A0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "pink" + hue: 236 + pair: null + contrast: + fg: 97 + black: 0 + red: 35.3 + green: 51.1 + yellow: 45.1 + blue: 38.5 + magenta: 38.5 + cyan: 51.1 + white: 97 + brightBlack: 0 + brightRed: 35.3 + brightGreen: 51.1 + brightYellow: 45.1 + brightBlue: 38.5 + brightMagenta: 38.5 + brightCyan: 51.1 + brightWhite: 97 diff --git a/themes/devstack--tactical-ops.yaml b/themes/devstack--tactical-ops.yaml new file mode 100644 index 00000000..9293822c --- /dev/null +++ b/themes/devstack--tactical-ops.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Tactical-Ops)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#180809" + fg: "#FCFCFC" + black: "#180809" + red: "#FEA901" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FF4756" + magenta: "#FF4756" + cyan: "#29C3A0" + white: "#FCFCFC" + brightBlack: "#180809" + brightRed: "#FEA901" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FF4756" + brightMagenta: "#FF4756" + brightCyan: "#29C3A0" + brightWhite: "#FCFCFC" +meta: + mode: "dark" + accent: "orange" + hue: 17 + pair: null + contrast: + fg: 105.6 + black: 0 + red: 65.6 + green: 58.3 + yellow: 52.4 + blue: 42 + magenta: 42 + cyan: 58.3 + white: 105.6 + brightBlack: 0 + brightRed: 65.6 + brightGreen: 58.3 + brightYellow: 52.4 + brightBlue: 42 + brightMagenta: 42 + brightCyan: 58.3 + brightWhite: 105.6 diff --git a/themes/devstack--tree-hugger.yaml b/themes/devstack--tree-hugger.yaml new file mode 100644 index 00000000..18189af8 --- /dev/null +++ b/themes/devstack--tree-hugger.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Tree-Hugger)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#1C2B1F" + fg: "#EFEAE4" + black: "#1C2B1F" + red: "#C52C2A" + green: "#29C3A0" + yellow: "#D29922" + blue: "#4DAE50" + magenta: "#4DAE50" + cyan: "#29C3A0" + white: "#EFEAE4" + brightBlack: "#1C2B1F" + brightRed: "#C52C2A" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#4DAE50" + brightMagenta: "#4DAE50" + brightCyan: "#29C3A0" + brightWhite: "#EFEAE4" +meta: + mode: "dark" + accent: "orange" + hue: 150 + pair: null + contrast: + fg: 91.2 + black: 0 + red: 22.1 + green: 55.3 + yellow: 49.3 + blue: 44.8 + magenta: 44.8 + cyan: 55.3 + white: 91.2 + brightBlack: 0 + brightRed: 22.1 + brightGreen: 55.3 + brightYellow: 49.3 + brightBlue: 44.8 + brightMagenta: 44.8 + brightCyan: 55.3 + brightWhite: 91.2 diff --git a/themes/devstack--twilight-bloom.yaml b/themes/devstack--twilight-bloom.yaml new file mode 100644 index 00000000..9908df3a --- /dev/null +++ b/themes/devstack--twilight-bloom.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Twilight-Bloom)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#1A1D22" + fg: "#E4E4E4" + black: "#1A1D22" + red: "#F14444" + green: "#29C3A0" + yellow: "#D29922" + blue: "#6D5DE7" + magenta: "#6D5DE7" + cyan: "#29C3A0" + white: "#E4E4E4" + brightBlack: "#1A1D22" + brightRed: "#F14444" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#6D5DE7" + brightMagenta: "#6D5DE7" + brightCyan: "#29C3A0" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "orange" + hue: 261 + pair: null + contrast: + fg: 88.7 + black: 0 + red: 36.6 + green: 57 + yellow: 51 + blue: 27.1 + magenta: 27.1 + cyan: 57 + white: 88.7 + brightBlack: 0 + brightRed: 36.6 + brightGreen: 57 + brightYellow: 51 + brightBlue: 27.1 + brightMagenta: 27.1 + brightCyan: 57 + brightWhite: 88.7 diff --git a/themes/devstack--vanguard-strike.yaml b/themes/devstack--vanguard-strike.yaml new file mode 100644 index 00000000..9792793d --- /dev/null +++ b/themes/devstack--vanguard-strike.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Vanguard-Strike)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#090504" + fg: "#F5ECEB" + black: "#090504" + red: "#DB0000" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FD3A37" + magenta: "#FD3A37" + cyan: "#29C3A0" + white: "#F5ECEB" + brightBlack: "#090504" + brightRed: "#DB0000" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FD3A37" + brightMagenta: "#FD3A37" + brightCyan: "#29C3A0" + brightWhite: "#F5ECEB" +meta: + mode: "dark" + accent: "orange" + hue: 38 + pair: null + contrast: + fg: 96.6 + black: 0 + red: 28.7 + green: 58.6 + yellow: 52.7 + blue: 39.8 + magenta: 39.8 + cyan: 58.6 + white: 96.6 + brightBlack: 0 + brightRed: 28.7 + brightGreen: 58.6 + brightYellow: 52.7 + brightBlue: 39.8 + brightMagenta: 39.8 + brightCyan: 58.6 + brightWhite: 96.6 diff --git a/themes/devstack--vintage-heritage.yaml b/themes/devstack--vintage-heritage.yaml new file mode 100644 index 00000000..2c321d5e --- /dev/null +++ b/themes/devstack--vintage-heritage.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Vintage-Heritage)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#001B29" + fg: "#E9E1BA" + black: "#001B29" + red: "#7F1D1D" + green: "#29C3A0" + yellow: "#D29922" + blue: "#FCC14A" + magenta: "#FCC14A" + cyan: "#29C3A0" + white: "#E9E1BA" + brightBlack: "#001B29" + brightRed: "#7F1D1D" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#FCC14A" + brightMagenta: "#FCC14A" + brightCyan: "#29C3A0" + brightWhite: "#E9E1BA" +meta: + mode: "dark" + accent: "yellow" + hue: 234 + pair: null + contrast: + fg: 86.7 + black: 0 + red: 9 + green: 57.3 + yellow: 51.4 + blue: 73.6 + magenta: 73.6 + cyan: 57.3 + white: 86.7 + brightBlack: 0 + brightRed: 9 + brightGreen: 57.3 + brightYellow: 51.4 + brightBlue: 73.6 + brightMagenta: 73.6 + brightCyan: 57.3 + brightWhite: 86.7 diff --git a/themes/devstack--workplace-chatter.yaml b/themes/devstack--workplace-chatter.yaml new file mode 100644 index 00000000..f90ab590 --- /dev/null +++ b/themes/devstack--workplace-chatter.yaml @@ -0,0 +1,53 @@ +name: "DevStack (Workplace-Chatter)" +source: + marketplace_id: "skyler.ocrmnav" + version: "4.0.196" + installs: 326 + rating: 0 + ratings: 0 + author: "skyler" + repo: "https://github.com/8an3/OCRMNav" + url: "https://marketplace.visualstudio.com/items?itemName=skyler.ocrmnav" + formats: null +colors: + bg: "#1A1D22" + fg: "#E8E8E8" + black: "#1A1D22" + red: "#E0215B" + green: "#29C3A0" + yellow: "#D29922" + blue: "#A559A5" + magenta: "#A559A5" + cyan: "#29C3A0" + white: "#E8E8E8" + brightBlack: "#1A1D22" + brightRed: "#E0215B" + brightGreen: "#29C3A0" + brightYellow: "#D29922" + brightBlue: "#A559A5" + brightMagenta: "#A559A5" + brightCyan: "#29C3A0" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "red" + hue: 261 + pair: null + contrast: + fg: 91.2 + black: 0 + red: 29.8 + green: 57 + yellow: 51 + blue: 28.4 + magenta: 28.4 + cyan: 57 + white: 91.2 + brightBlack: 0 + brightRed: 29.8 + brightGreen: 57 + brightYellow: 51 + brightBlue: 28.4 + brightMagenta: 28.4 + brightCyan: 57 + brightWhite: 91.2 diff --git a/themes/deyvi-dark.yaml b/themes/deyvi-dark.yaml new file mode 100644 index 00000000..0c9534e0 --- /dev/null +++ b/themes/deyvi-dark.yaml @@ -0,0 +1,53 @@ +name: "deyvi dark" +source: + marketplace_id: "Deyvi-dev.deyvi-theme" + version: "0.0.1" + installs: 1564 + rating: 0 + ratings: 0 + author: "Deyvi-dev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Deyvi-dev.deyvi-theme" + formats: null +colors: + bg: "#181F1F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 196 + pair: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 29 + cyan: 46.8 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.8 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/dfn2023theme.yaml b/themes/dfn2023theme.yaml new file mode 100644 index 00000000..0d2f1e9c --- /dev/null +++ b/themes/dfn2023theme.yaml @@ -0,0 +1,53 @@ +name: "DFN2023Theme" +source: + marketplace_id: "Mainframeai.dfn2023theme" + version: "0.4.5" + installs: 196 + rating: 0 + ratings: 0 + author: "Mainframeai" + repo: "https://github.com/mainframeai/mainframai.neon-verdigris-plus-theme-main" + url: "https://marketplace.visualstudio.com/items?itemName=Mainframeai.dfn2023theme" + formats: null +colors: + bg: "#272B34" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 266 + pair: null + contrast: + fg: 76.5 + black: 0 + red: 23.7 + green: 50 + yellow: 82.6 + blue: 24.4 + magenta: 26.7 + cyan: 44.5 + white: 87 + brightBlack: 19 + brightRed: 35.5 + brightGreen: 60.5 + brightYellow: 92.6 + brightBlue: 37 + brightMagenta: 42.4 + brightCyan: 52.4 + brightWhite: 87 diff --git a/themes/dharam-gfx-theme--dharam-gfx-hight-contrast.yaml b/themes/dharam-gfx-theme--dharam-gfx-hight-contrast.yaml new file mode 100644 index 00000000..12de2f3d --- /dev/null +++ b/themes/dharam-gfx-theme--dharam-gfx-hight-contrast.yaml @@ -0,0 +1,53 @@ +name: "dharam-gfx theme (Dharam-gfx-Hight-Contrast)" +source: + marketplace_id: "dharam-gfx-theme.dharam-gfx-theme" + version: "0.0.7" + installs: 661 + rating: 5 + ratings: 1 + author: "dharmendra kumar" + repo: "https://github.com/dharam-gfx/dharam-gfx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dharam-gfx-theme.dharam-gfx-theme" + formats: null +colors: + bg: "#191A2E" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#20E3B2" + yellow: "#FDE181" + blue: "#BD93F9" + magenta: "#FF6BCB" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#8D92FF" + brightRed: "#FF6E6E" + brightGreen: "#20E3B2" + brightYellow: "#EAC394" + brightBlue: "#BD93F9" + brightMagenta: "#FF6BCB" + brightCyan: "#2CCCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 281 + pair: null + contrast: + fg: 101.4 + black: 0 + red: 42.8 + green: 73 + yellow: 87.9 + blue: 53.1 + magenta: 51.1 + cyan: 83.4 + white: 101.4 + brightBlack: 47.6 + brightRed: 48.3 + brightGreen: 73 + brightYellow: 72.6 + brightBlue: 53.1 + brightMagenta: 51.1 + brightCyan: 65.9 + brightWhite: 106.3 diff --git a/themes/diabo.yaml b/themes/diabo.yaml new file mode 100644 index 00000000..924135dc --- /dev/null +++ b/themes/diabo.yaml @@ -0,0 +1,53 @@ +name: "Diabo" +source: + marketplace_id: "vinciuscr.diabo" + version: "0.0.1" + installs: 62 + rating: 0 + ratings: 0 + author: "Vinícius Castelani Reck" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=vinciuscr.diabo" + formats: null +colors: + bg: "#0F0303" + fg: "#C7592A" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 22 + pair: null + contrast: + fg: 32.5 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/dimi-theme-dimi-theme-dark.yaml b/themes/dimi-theme-dimi-theme-dark.yaml new file mode 100644 index 00000000..dee4029f --- /dev/null +++ b/themes/dimi-theme-dimi-theme-dark.yaml @@ -0,0 +1,53 @@ +name: "Dimi Theme (Dimi Theme (Dark))" +source: + marketplace_id: "Dimi.dimi" + version: "1.0.9" + installs: 2864 + rating: 5 + ratings: 1 + author: "Dimi" + repo: "https://github.com/Dimi15/dimi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Dimi.dimi" + formats: null +colors: + bg: "#242A36" + fg: "#CED4DF" + black: "#313848" + red: "#B55760" + green: "#99B482" + yellow: "#E1C181" + blue: "#7797B7" + magenta: "#AA84A3" + cyan: "#7EB6C6" + white: "#DBDFE6" + brightBlack: "#424C60" + brightRed: "#B55760" + brightGreen: "#99B482" + brightYellow: "#E1C181" + brightBlue: "#7797B7" + brightMagenta: "#AA84A3" + brightCyan: "#85B2B1" + brightWhite: "#E2E5EA" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 76.4 + black: 0 + red: 25.9 + green: 53.3 + yellow: 67.7 + blue: 40.7 + magenta: 38.6 + cyan: 54.3 + white: 83.2 + brightBlack: 8.8 + brightRed: 25.9 + brightGreen: 53.3 + brightYellow: 67.7 + brightBlue: 40.7 + brightMagenta: 38.6 + brightCyan: 52.3 + brightWhite: 87 diff --git a/themes/dimi-theme-dimi-theme-darker.yaml b/themes/dimi-theme-dimi-theme-darker.yaml new file mode 100644 index 00000000..c9e068bb --- /dev/null +++ b/themes/dimi-theme-dimi-theme-darker.yaml @@ -0,0 +1,53 @@ +name: "Dimi Theme (Dimi Theme (Darker))" +source: + marketplace_id: "Dimi.dimi" + version: "1.0.9" + installs: 2864 + rating: 5 + ratings: 1 + author: "Dimi" + repo: "https://github.com/Dimi15/dimi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Dimi.dimi" + formats: null +colors: + bg: "#1F2531" + fg: "#C9CFDA" + black: "#2C3343" + red: "#B0525B" + green: "#94AF7D" + yellow: "#DCBC7C" + blue: "#7292B2" + magenta: "#A57F9E" + cyan: "#79B1C1" + white: "#D6DAE1" + brightBlack: "#3D475B" + brightRed: "#B0525B" + brightGreen: "#94AF7D" + brightYellow: "#DCBC7C" + brightBlue: "#7292B2" + brightMagenta: "#A57F9E" + brightCyan: "#80ADAC" + brightWhite: "#DDE0E5" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 74.3 + black: 0 + red: 24.7 + green: 51.5 + yellow: 65.7 + blue: 39.1 + magenta: 37 + cyan: 52.6 + white: 81.1 + brightBlack: 7.9 + brightRed: 24.7 + brightGreen: 51.5 + brightYellow: 65.7 + brightBlue: 39.1 + brightMagenta: 37 + brightCyan: 50.5 + brightWhite: 84.8 diff --git a/themes/diverse-dye--arabian-theme.yaml b/themes/diverse-dye--arabian-theme.yaml new file mode 100644 index 00000000..cabe68bf --- /dev/null +++ b/themes/diverse-dye--arabian-theme.yaml @@ -0,0 +1,53 @@ +name: "Diverse Dye (arabian-theme)" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2596 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + formats: null +colors: + bg: "#ECCB8E" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 82 + pair: null + contrast: + fg: 78.3 + black: 78.3 + red: 46.3 + green: 21.5 + yellow: 30.2 + blue: 58.3 + magenta: 46.8 + cyan: 32.9 + white: 58.2 + brightBlack: 51 + brightRed: 46.3 + brightGreen: 13.2 + brightYellow: 13.2 + brightBlue: 58.3 + brightMagenta: 46.8 + brightCyan: 32.9 + brightWhite: 20.7 diff --git a/themes/diverse-dye--berry-blast-theme.yaml b/themes/diverse-dye--berry-blast-theme.yaml new file mode 100644 index 00000000..2438429b --- /dev/null +++ b/themes/diverse-dye--berry-blast-theme.yaml @@ -0,0 +1,53 @@ +name: "Diverse Dye (berry-blast-theme)" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2596 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + formats: null +colors: + bg: "#FF69B4" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "pink" + hue: 352 + pair: null + contrast: + fg: 28.6 + black: 53.2 + red: 21.1 + green: 0 + yellow: 34.7 + blue: 20.4 + magenta: 18.1 + cyan: 0 + white: 39.1 + brightBlack: 25.9 + brightRed: 9.3 + brightGreen: 12.6 + brightYellow: 44.7 + brightBlue: 7.9 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 39.1 diff --git a/themes/diverse-dye--celestial-charm-theme.yaml b/themes/diverse-dye--celestial-charm-theme.yaml new file mode 100644 index 00000000..c5edaf0c --- /dev/null +++ b/themes/diverse-dye--celestial-charm-theme.yaml @@ -0,0 +1,53 @@ +name: "Diverse Dye (celestial-charm-theme)" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2596 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + formats: null +colors: + bg: "#281016" + fg: "#FFA2B8" + black: "#502832" + red: "#A45A74" + green: "#B39987" + yellow: "#A47F7C" + blue: "#AD5F74" + magenta: "#D78594" + cyan: "#B39487" + white: "#CA988E" + brightBlack: "#703A47" + brightRed: "#A45A74" + brightGreen: "#B39987" + brightYellow: "#A47F7C" + brightBlue: "#AD5F74" + brightMagenta: "#D78594" + brightCyan: "#B39487" + brightWhite: "#D2738A" +meta: + mode: "dark" + accent: "red" + hue: 5 + pair: null + contrast: + fg: 65.6 + black: 0 + red: 26.9 + green: 48.6 + yellow: 37.4 + blue: 29.5 + magenta: 47.9 + cyan: 46.8 + white: 51.7 + brightBlack: 11.2 + brightRed: 26.9 + brightGreen: 48.6 + brightYellow: 37.4 + brightBlue: 29.5 + brightMagenta: 47.9 + brightCyan: 46.8 + brightWhite: 41.7 diff --git a/themes/diverse-dye--chocolate-dessert-theme.yaml b/themes/diverse-dye--chocolate-dessert-theme.yaml new file mode 100644 index 00000000..e6e3234c --- /dev/null +++ b/themes/diverse-dye--chocolate-dessert-theme.yaml @@ -0,0 +1,53 @@ +name: "Diverse Dye (chocolate-dessert-theme)" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2596 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + formats: null +colors: + bg: "#1B1210" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 33 + pair: null + contrast: + fg: 79.7 + black: 0 + red: 27 + green: 53.2 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.3 diff --git a/themes/diverse-dye--hot-pink-theme.yaml b/themes/diverse-dye--hot-pink-theme.yaml new file mode 100644 index 00000000..c34ddd49 --- /dev/null +++ b/themes/diverse-dye--hot-pink-theme.yaml @@ -0,0 +1,53 @@ +name: "Diverse Dye (hot-pink-theme)" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2596 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + formats: null +colors: + bg: "#171717" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.9 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/diverse-dye--hyped-down-theme.yaml b/themes/diverse-dye--hyped-down-theme.yaml new file mode 100644 index 00000000..2e08aa59 --- /dev/null +++ b/themes/diverse-dye--hyped-down-theme.yaml @@ -0,0 +1,53 @@ +name: "Diverse Dye (hyped-down-theme)" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2596 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + formats: null +colors: + bg: "#191A1F" + fg: "#FFFFFF" + black: "#565454" + red: "#D1949E" + green: "#DFF7A9" + yellow: "#879071" + blue: "#747EA7" + magenta: "#6F6F6F" + cyan: "#8BA6A9" + white: "#8A8A8A" + brightBlack: "#3D3D3D" + brightRed: "#904E64" + brightGreen: "#D1FF69" + brightYellow: "#F5F543" + brightBlue: "#9EABDE" + brightMagenta: "#8A8A8A" + brightCyan: "#9ED8DE" + brightWhite: "#ABABAB" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 106.5 + black: 14.5 + red: 51.8 + green: 95.1 + yellow: 39.3 + blue: 33.2 + magenta: 25.6 + cyan: 50 + white: 38.2 + brightBlack: 0 + brightRed: 20.4 + brightGreen: 96 + brightYellow: 95.3 + brightBlue: 56.4 + brightMagenta: 38.2 + brightCyan: 75.5 + brightWhite: 55.4 diff --git a/themes/diverse-dye--kryptonite-theme.yaml b/themes/diverse-dye--kryptonite-theme.yaml new file mode 100644 index 00000000..6eb05a14 --- /dev/null +++ b/themes/diverse-dye--kryptonite-theme.yaml @@ -0,0 +1,53 @@ +name: "Diverse Dye (kryptonite-theme)" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2596 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + formats: null +colors: + bg: "#002811" + fg: "#D7A201" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#C99808" + blue: "#7BF5CD" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#B2B2B2" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FBFB69" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 153 + pair: null + contrast: + fg: 54.1 + black: 0 + red: 25.1 + green: 51.4 + yellow: 48.3 + blue: 85 + magenta: 28.2 + cyan: 46 + white: 88.4 + brightBlack: 58.1 + brightRed: 37 + brightGreen: 62 + brightYellow: 98.2 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/diverse-dye--mountain-theme.yaml b/themes/diverse-dye--mountain-theme.yaml new file mode 100644 index 00000000..e24f524b --- /dev/null +++ b/themes/diverse-dye--mountain-theme.yaml @@ -0,0 +1,53 @@ +name: "Diverse Dye (mountain-theme)" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2596 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + formats: null +colors: + bg: "#0F0F0F" + fg: "#F0F0F0" + black: "#000000" + red: "#AC8A8C" + green: "#8AAC8B" + yellow: "#ACA98A" + blue: "#8A98AC" + magenta: "#AC8AAC" + cyan: "#8AACAB" + white: "#E7E7E7" + brightBlack: "#4C4C4C" + brightRed: "#C49EA0" + brightGreen: "#9EC49F" + brightYellow: "#C4C19E" + brightBlue: "#A5B4CB" + brightMagenta: "#C49EC4" + brightCyan: "#9EC3C4" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 97.7 + black: 0 + red: 43.4 + green: 52.3 + yellow: 54.6 + blue: 45.7 + magenta: 44.7 + cyan: 53.4 + white: 91.9 + brightBlack: 12.3 + brightRed: 54.4 + brightGreen: 65 + brightYellow: 67.9 + brightBlue: 60.7 + brightMagenta: 55.9 + brightCyan: 66 + brightWhite: 97.7 diff --git a/themes/diverse-dye--navy-nights-theme.yaml b/themes/diverse-dye--navy-nights-theme.yaml new file mode 100644 index 00000000..2b257004 --- /dev/null +++ b/themes/diverse-dye--navy-nights-theme.yaml @@ -0,0 +1,53 @@ +name: "Diverse Dye (navy-nights-theme)" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2596 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + formats: null +colors: + bg: "#030C1B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + pair: null + contrast: + fg: 80.2 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/diverse-dye--neon-theme.yaml b/themes/diverse-dye--neon-theme.yaml new file mode 100644 index 00000000..e115dccf --- /dev/null +++ b/themes/diverse-dye--neon-theme.yaml @@ -0,0 +1,53 @@ +name: "Diverse Dye (neon-theme)" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2596 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + formats: null +colors: + bg: "#202328" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 261 + pair: null + contrast: + fg: 73.1 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 28.2 + cyan: 46 + white: 88.5 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.8 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/diverse-dye--power-low-purple-theme.yaml b/themes/diverse-dye--power-low-purple-theme.yaml new file mode 100644 index 00000000..cc574bc0 --- /dev/null +++ b/themes/diverse-dye--power-low-purple-theme.yaml @@ -0,0 +1,53 @@ +name: "Diverse Dye (power-low-purple-theme)" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2596 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + formats: null +colors: + bg: "#352E40" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 302 + pair: null + contrast: + fg: 102.5 + black: 0 + red: 22.3 + green: 48.6 + yellow: 81.2 + blue: 23 + magenta: 25.4 + cyan: 43.2 + white: 85.6 + brightBlack: 17.6 + brightRed: 34.2 + brightGreen: 59.1 + brightYellow: 91.2 + brightBlue: 35.6 + brightMagenta: 41 + brightCyan: 51 + brightWhite: 85.6 diff --git a/themes/diverse-dye--purplexed-theme.yaml b/themes/diverse-dye--purplexed-theme.yaml new file mode 100644 index 00000000..a5b2ae20 --- /dev/null +++ b/themes/diverse-dye--purplexed-theme.yaml @@ -0,0 +1,53 @@ +name: "Diverse Dye (purplexed-theme)" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2596 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + formats: null +colors: + bg: "#1D1B22" + fg: "#8E7FCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 298 + pair: null + contrast: + fg: 38 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/diverse-dye--sakura-blossom-theme.yaml b/themes/diverse-dye--sakura-blossom-theme.yaml new file mode 100644 index 00000000..1c49d426 --- /dev/null +++ b/themes/diverse-dye--sakura-blossom-theme.yaml @@ -0,0 +1,53 @@ +name: "Diverse Dye (sakura-blossom-theme)" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2596 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + formats: null +colors: + bg: "#21222E" + fg: "#F2A2D6" + black: "#BC8DAB" + red: "#EC3737" + green: "#5AFFF7" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#EC34EC" + cyan: "#75BEFF" + white: "#F2A2D6" + brightBlack: "#666666" + brightRed: "#FF7B7B" + brightGreen: "#77E2B7" + brightYellow: "#F7F79A" + brightBlue: "#3B8EEA" + brightMagenta: "#EA8FEA" + brightCyan: "#29B8DB" + brightWhite: "#FFB3F7" +meta: + mode: "dark" + accent: "pink" + hue: 281 + pair: null + contrast: + fg: 63.2 + black: 45.6 + red: 32.9 + green: 90.6 + yellow: 84.1 + blue: 25.9 + magenta: 39.9 + cyan: 61.6 + white: 63.2 + brightBlack: 20.5 + brightRed: 50.7 + brightGreen: 74.5 + brightYellow: 96.7 + brightBlue: 38.4 + brightMagenta: 56.9 + brightCyan: 53.8 + brightWhite: 73.1 diff --git a/themes/diverse-dye--sakura-theme.yaml b/themes/diverse-dye--sakura-theme.yaml new file mode 100644 index 00000000..57791e32 --- /dev/null +++ b/themes/diverse-dye--sakura-theme.yaml @@ -0,0 +1,53 @@ +name: "Diverse Dye (sakura-theme)" +source: + marketplace_id: "DevangTomar.vscode-diverse-dye" + version: "1.3.0" + installs: 2596 + rating: 5 + ratings: 3 + author: "Devang Tomar ⭐" + repo: "https://github.com/devangtomar/vscode-diverse-dye" + url: "https://marketplace.visualstudio.com/items?itemName=DevangTomar.vscode-diverse-dye" + formats: null +colors: + bg: "#181C21" + fg: "#F2A2D6" + black: "#BC8DAB" + red: "#EC3737" + green: "#05925C" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#EC34EC" + cyan: "#75BEFF" + white: "#F2A2D6" + brightBlack: "#666666" + brightRed: "#FF7B7B" + brightGreen: "#77E2B7" + brightYellow: "#F7F79A" + brightBlue: "#3B8EEA" + brightMagenta: "#EA8FEA" + brightCyan: "#29B8DB" + brightWhite: "#FFB3F7" +meta: + mode: "dark" + accent: "pink" + hue: 254 + pair: null + contrast: + fg: 64.3 + black: 46.7 + red: 33.9 + green: 33.6 + yellow: 85.1 + blue: 26.9 + magenta: 40.9 + cyan: 62.6 + white: 64.3 + brightBlack: 21.5 + brightRed: 51.8 + brightGreen: 75.6 + brightYellow: 97.7 + brightBlue: 39.5 + brightMagenta: 58 + brightCyan: 54.9 + brightWhite: 74.1 diff --git a/themes/djpurple.yaml b/themes/djpurple.yaml new file mode 100644 index 00000000..1f2c6edd --- /dev/null +++ b/themes/djpurple.yaml @@ -0,0 +1,53 @@ +name: "DJPurple" +source: + marketplace_id: "GroganSoft.djpurple" + version: "1.1.3" + installs: 121 + rating: 0 + ratings: 0 + author: "GroganSoft" + repo: "https://dev.azure.com/grogansoft/DJPurple%20VS%20Code%20Theme/" + url: "https://marketplace.visualstudio.com/items?itemName=GroganSoft.djpurple" + formats: null +colors: + bg: "#171717" + fg: "#15B21F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 47.2 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/dk-bee.yaml b/themes/dk-bee.yaml new file mode 100644 index 00000000..6e02ea16 --- /dev/null +++ b/themes/dk-bee.yaml @@ -0,0 +1,53 @@ +name: "dk-bee" +source: + marketplace_id: "Alencar26.dk-bee" + version: "0.0.2" + installs: 817 + rating: 0 + ratings: 0 + author: "André Alencar" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Alencar26.dk-bee" + formats: null +colors: + bg: "#090909" + fg: "#F8F8F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 102.9 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/do-you-even-dev-bro--minimal-dark.yaml b/themes/do-you-even-dev-bro--minimal-dark.yaml new file mode 100644 index 00000000..f529a7fa --- /dev/null +++ b/themes/do-you-even-dev-bro--minimal-dark.yaml @@ -0,0 +1,53 @@ +name: "Do You Even Dev, bro? (minimal dark)" +source: + marketplace_id: "hmseeb.seeb" + version: "1.1.3" + installs: 2028 + rating: 5 + ratings: 1 + author: "hmseeb" + repo: "https://github.com/hmseeb/dark-owl" + url: "https://marketplace.visualstudio.com/items?itemName=hmseeb.seeb" + formats: null +colors: + bg: "#0F0F0F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/do-you-even-dev-bro--telescope.yaml b/themes/do-you-even-dev-bro--telescope.yaml new file mode 100644 index 00000000..89a427ee --- /dev/null +++ b/themes/do-you-even-dev-bro--telescope.yaml @@ -0,0 +1,53 @@ +name: "Do You Even Dev, bro? (Telescope)" +source: + marketplace_id: "hmseeb.seeb" + version: "1.1.3" + installs: 2028 + rating: 5 + ratings: 1 + author: "hmseeb" + repo: "https://github.com/hmseeb/dark-owl" + url: "https://marketplace.visualstudio.com/items?itemName=hmseeb.seeb" + formats: null +colors: + bg: "#16171F" + fg: "#BFC3E2" + black: "#121319" + red: "#BF616A" + green: "#72C2A2" + yellow: "#78B7E2" + blue: "#84A0C6" + magenta: "#A093C7" + cyan: "#89B8C2" + white: "#BCC5D8" + brightBlack: "#3E4960" + brightRed: "#E29199" + brightGreen: "#A0DBC2" + brightYellow: "#A8D2EE" + brightBlue: "#A3BEE3" + brightMagenta: "#C8B5E6" + brightCyan: "#B6D8DE" + brightWhite: "#E1EBFF" +meta: + mode: "dark" + accent: "orange" + hue: 279 + pair: null + contrast: + fg: 70.3 + black: 0 + red: 32.9 + green: 60 + yellow: 58.5 + blue: 48.7 + magenta: 46.9 + cyan: 58.6 + white: 70.2 + brightBlack: 10.5 + brightRed: 53.8 + brightGreen: 76.2 + brightYellow: 74.8 + brightBlue: 65.2 + brightMagenta: 66 + brightCyan: 78.1 + brightWhite: 93.4 diff --git a/themes/dobri-next-themes-and-icons--darcula.yaml b/themes/dobri-next-themes-and-icons--darcula.yaml new file mode 100644 index 00000000..d1299031 --- /dev/null +++ b/themes/dobri-next-themes-and-icons--darcula.yaml @@ -0,0 +1,53 @@ +name: "Dobri Next - Themes and Icons (Darcula)" +source: + marketplace_id: "sldobri.bunker" + version: "1.1.6" + installs: 377983 + rating: 4.82 + ratings: 22 + author: "dobbbri" + repo: "https://github.com/sldobri/bunker" + url: "https://marketplace.visualstudio.com/items?itemName=sldobri.bunker" + formats: null +colors: + bg: "#0B1015" + fg: "#F5F5F5" + black: "#05080A" + red: "#FB467B" + green: "#4EC9B0" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#CB6CFE" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FB467B" + brightGreen: "#4EC9B0" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#CB6CFE" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 249 + pair: null + contrast: + fg: 100.9 + black: 0 + red: 41.7 + green: 62.6 + yellow: 79.5 + blue: 56.5 + magenta: 45.9 + cyan: 78.9 + white: 107.5 + brightBlack: 27 + brightRed: 41.7 + brightGreen: 62.6 + brightYellow: 79.5 + brightBlue: 56.5 + brightMagenta: 45.9 + brightCyan: 78.9 + brightWhite: 107.5 diff --git a/themes/dobri-next-themes-and-icons--eve.yaml b/themes/dobri-next-themes-and-icons--eve.yaml new file mode 100644 index 00000000..4e6f0d9a --- /dev/null +++ b/themes/dobri-next-themes-and-icons--eve.yaml @@ -0,0 +1,53 @@ +name: "Dobri Next - Themes and Icons (Eve)" +source: + marketplace_id: "sldobri.bunker" + version: "1.1.6" + installs: 377983 + rating: 4.82 + ratings: 22 + author: "dobbbri" + repo: "https://github.com/sldobri/bunker" + url: "https://marketplace.visualstudio.com/items?itemName=sldobri.bunker" + formats: null +colors: + bg: "#0B1015" + fg: "#97A7C8" + black: "#05080A" + red: "#FB467B" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#CB6CFE" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FB467B" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#CB6CFE" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 249 + pair: null + contrast: + fg: 53.9 + black: 0 + red: 41.7 + green: 84.8 + yellow: 79.5 + blue: 56.5 + magenta: 45.9 + cyan: 78.9 + white: 107.5 + brightBlack: 27 + brightRed: 41.7 + brightGreen: 84.8 + brightYellow: 79.5 + brightBlue: 56.5 + brightMagenta: 45.9 + brightCyan: 78.9 + brightWhite: 107.5 diff --git a/themes/doctis--noctis-uva.yaml b/themes/doctis--noctis-uva.yaml new file mode 100644 index 00000000..ab47361e --- /dev/null +++ b/themes/doctis--noctis-uva.yaml @@ -0,0 +1,53 @@ +name: "Doctis (Noctis Uva)" +source: + marketplace_id: "doc-extentions.doctis" + version: "1.0.9" + installs: 4846 + rating: 5 + ratings: 3 + author: "Doc" + repo: "https://github.com/doc-code-hub/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=doc-extentions.doctis" + formats: null +colors: + bg: "#181726" + fg: "#C5C2D6" + black: "#302F3D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B6B3CC" + brightBlack: "#504E65" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C5C2D6" +meta: + mode: "dark" + accent: "orange" + hue: 287 + pair: null + contrast: + fg: 69.9 + black: 0 + red: 40.4 + green: 76.8 + yellow: 66.8 + blue: 51.8 + magenta: 45.4 + cyan: 70.3 + white: 61.5 + brightBlack: 13.2 + brightRed: 45.6 + brightGreen: 79 + brightYellow: 53.7 + brightBlue: 57.1 + brightMagenta: 57.8 + brightCyan: 73.7 + brightWhite: 69.9 diff --git a/themes/doctis--noctis-viola.yaml b/themes/doctis--noctis-viola.yaml new file mode 100644 index 00000000..4a727112 --- /dev/null +++ b/themes/doctis--noctis-viola.yaml @@ -0,0 +1,53 @@ +name: "Doctis (Noctis Viola)" +source: + marketplace_id: "doc-extentions.doctis" + version: "1.0.9" + installs: 4846 + rating: 5 + ratings: 3 + author: "Doc" + repo: "https://github.com/doc-code-hub/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=doc-extentions.doctis" + formats: null +colors: + bg: "#311D4A" + fg: "#CCBFD9" + black: "#362F3D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#BFAFCF" + brightBlack: "#594E65" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#CCBFD9" +meta: + mode: "dark" + accent: "orange" + hue: 302 + pair: null + contrast: + fg: 67.4 + black: 0 + red: 38.1 + green: 74.6 + yellow: 64.6 + blue: 49.6 + magenta: 43.2 + cyan: 68.1 + white: 59 + brightBlack: 11.7 + brightRed: 43.3 + brightGreen: 76.8 + brightYellow: 51.4 + brightBlue: 54.9 + brightMagenta: 55.6 + brightCyan: 71.4 + brightWhite: 67.4 diff --git a/themes/dodimmed.yaml b/themes/dodimmed.yaml new file mode 100644 index 00000000..0063f118 --- /dev/null +++ b/themes/dodimmed.yaml @@ -0,0 +1,53 @@ +name: "DoDimmed" +source: + marketplace_id: "doolooper.do-dimmed" + version: "0.1.0" + installs: 558 + rating: 0 + ratings: 0 + author: "Mahdi Harati" + repo: "https://github.com/Doolooper/DoDimmed" + url: "https://marketplace.visualstudio.com/items?itemName=doolooper.do-dimmed" + formats: null +colors: + bg: "#161616" + fg: "#FFFFFF" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107 + black: 8.2 + red: 33.1 + green: 61.8 + yellow: 76.5 + blue: 48.7 + magenta: 46.6 + cyan: 62.8 + white: 92.4 + brightBlack: 15.5 + brightRed: 33.1 + brightGreen: 61.8 + brightYellow: 76.5 + brightBlue: 48.7 + brightMagenta: 46.6 + brightCyan: 60.7 + brightWhite: 96.3 diff --git a/themes/dodopool.yaml b/themes/dodopool.yaml new file mode 100644 index 00000000..4c2da7b5 --- /dev/null +++ b/themes/dodopool.yaml @@ -0,0 +1,53 @@ +name: "DodoPool" +source: + marketplace_id: "MukeshJoshi.dodopool" + version: "0.0.6" + installs: 1805 + rating: 5 + ratings: 1 + author: "Mukesh Joshi" + repo: "https://github.com/orangepreneur/dodopool" + url: "https://marketplace.visualstudio.com/items?itemName=MukeshJoshi.dodopool" + formats: null +colors: + bg: "#13171B" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#B64853" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 248 + pair: null + contrast: + fg: 59.4 + black: 0 + red: 26.7 + green: 53 + yellow: 85.7 + blue: 25.7 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90.1 diff --git a/themes/doli-theme--doli-universal.yaml b/themes/doli-theme--doli-universal.yaml new file mode 100644 index 00000000..e2b468fb --- /dev/null +++ b/themes/doli-theme--doli-universal.yaml @@ -0,0 +1,53 @@ +name: "Doli Theme (Doli Universal)" +source: + marketplace_id: "LQYld.doli-theme" + version: "0.2.3" + installs: 124 + rating: 0 + ratings: 0 + author: "LQYld" + repo: "https://github.com/LQYld/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LQYld.doli-theme" + formats: null +colors: + bg: "#2B2B2B" + fg: "#C6CACD" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 70.1 + black: 0 + red: 37.7 + green: 33.7 + yellow: 72.6 + blue: 38.3 + magenta: 40.9 + cyan: 46.2 + white: 78.3 + brightBlack: 26.5 + brightRed: 37.7 + brightGreen: 33.7 + brightYellow: 72.6 + brightBlue: 38.3 + brightMagenta: 40.9 + brightCyan: 46.2 + brightWhite: 103.8 diff --git a/themes/doli-theme--doli-visual-studio.yaml b/themes/doli-theme--doli-visual-studio.yaml new file mode 100644 index 00000000..27d9da11 --- /dev/null +++ b/themes/doli-theme--doli-visual-studio.yaml @@ -0,0 +1,53 @@ +name: "Doli Theme (Doli Visual Studio)" +source: + marketplace_id: "LQYld.doli-theme" + version: "0.2.3" + installs: 124 + rating: 0 + ratings: 0 + author: "LQYld" + repo: "https://github.com/LQYld/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LQYld.doli-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#DCDCDC" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 83.6 + black: 0 + red: 39.9 + green: 35.8 + yellow: 74.8 + blue: 40.5 + magenta: 43.1 + cyan: 48.4 + white: 80.5 + brightBlack: 28.7 + brightRed: 39.9 + brightGreen: 35.8 + brightYellow: 74.8 + brightBlue: 40.5 + brightMagenta: 43.1 + brightCyan: 48.4 + brightWhite: 106 diff --git a/themes/dominator.yaml b/themes/dominator.yaml new file mode 100644 index 00000000..c299aef8 --- /dev/null +++ b/themes/dominator.yaml @@ -0,0 +1,53 @@ +name: "Dominator" +source: + marketplace_id: "tomocy.dominator" + version: "0.7.0" + installs: 1228 + rating: 5 + ratings: 3 + author: "tomocy" + repo: "https://github.com/tomocy/dominator-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=tomocy.dominator" + formats: null +colors: + bg: "#000000" + fg: "#E0E7FF" + black: "#000000" + red: "#DE2163" + green: "#00FFD8" + yellow: "#DEC32C" + blue: "#09E7FB" + magenta: "#DE2163" + cyan: "#09E7FB" + white: "#E0E7FF" + brightBlack: "#E0E7FF" + brightRed: "#DE2163" + brightGreen: "#00FFD8" + brightYellow: "#DEC32C" + brightBlue: "#09E7FB" + brightMagenta: "#DE2163" + brightCyan: "#09E7FB" + brightWhite: "#E0E7FF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 92.5 + black: 0 + red: 31.2 + green: 90.3 + yellow: 70.7 + blue: 79.8 + magenta: 31.2 + cyan: 79.8 + white: 92.5 + brightBlack: 92.5 + brightRed: 31.2 + brightGreen: 90.3 + brightYellow: 70.7 + brightBlue: 79.8 + brightMagenta: 31.2 + brightCyan: 79.8 + brightWhite: 92.5 diff --git a/themes/doom-themes--doom-one-dark.yaml b/themes/doom-themes--doom-one-dark.yaml new file mode 100644 index 00000000..ae5c31ba --- /dev/null +++ b/themes/doom-themes--doom-one-dark.yaml @@ -0,0 +1,53 @@ +name: "Doom Themes (Doom One Dark)" +source: + marketplace_id: "lroolle.doom-themes" + version: "1.2.1" + installs: 514 + rating: 0 + ratings: 0 + author: "lroolle" + repo: "https://github.com/lroolle/doom-one-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lroolle.doom-themes" + formats: null +colors: + bg: "#282C34" + fg: "#BBC2CF" + black: "#1B2229" + red: "#FF6C6B" + green: "#98BE65" + yellow: "#ECBE7B" + blue: "#51AFEF" + magenta: "#C678DD" + cyan: "#46D9FF" + white: "#9CA0A4" + brightBlack: "#1C1F24" + brightRed: "#FF6C6B" + brightGreen: "#98BE65" + brightYellow: "#ECBE7B" + brightBlue: "#51AFEF" + brightMagenta: "#C678DD" + brightCyan: "#46D9FF" + brightWhite: "#BBC2CF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 65.3 + black: 0 + red: 45.1 + green: 56.5 + yellow: 67.7 + blue: 50.7 + magenta: 41.9 + cyan: 69.9 + white: 46.4 + brightBlack: 0 + brightRed: 45.1 + brightGreen: 56.5 + brightYellow: 67.7 + brightBlue: 50.7 + brightMagenta: 41.9 + brightCyan: 69.9 + brightWhite: 65.3 diff --git a/themes/doom-themes--doom-one-light.yaml b/themes/doom-themes--doom-one-light.yaml new file mode 100644 index 00000000..5af825fd --- /dev/null +++ b/themes/doom-themes--doom-one-light.yaml @@ -0,0 +1,53 @@ +name: "Doom Themes (Doom One Light)" +source: + marketplace_id: "lroolle.doom-themes" + version: "1.2.1" + installs: 514 + rating: 0 + ratings: 0 + author: "lroolle" + repo: "https://github.com/lroolle/doom-one-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lroolle.doom-themes" + formats: null +colors: + bg: "#FAFAFA" + fg: "#383A42" + black: "#1B2229" + red: "#E45649" + green: "#50A14F" + yellow: "#986801" + blue: "#4078F2" + magenta: "#A626A4" + cyan: "#0184BC" + white: "#C6C7C7" + brightBlack: "#202328" + brightRed: "#E45649" + brightGreen: "#50A14F" + brightYellow: "#986801" + brightBlue: "#4078F2" + brightMagenta: "#A626A4" + brightCyan: "#0184BC" + brightWhite: "#383A42" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 93.2 + black: 100 + red: 60.4 + green: 56 + yellow: 70.5 + blue: 64.3 + magenta: 76.2 + cyan: 65.1 + white: 27.2 + brightBlack: 99.7 + brightRed: 60.4 + brightGreen: 56 + brightYellow: 70.5 + brightBlue: 64.3 + brightMagenta: 76.2 + brightCyan: 65.1 + brightWhite: 93.2 diff --git a/themes/dot-developer-theme.yaml b/themes/dot-developer-theme.yaml new file mode 100644 index 00000000..a414382a --- /dev/null +++ b/themes/dot-developer-theme.yaml @@ -0,0 +1,53 @@ +name: "Dot Developer Theme" +source: + marketplace_id: "n-devs.vscode-dot-developer" + version: "1.1.9" + installs: 797 + rating: 5 + ratings: 1 + author: "n-devs" + repo: "https://github.com/n-devs/vscode-dot-developer" + url: "https://marketplace.visualstudio.com/items?itemName=n-devs.vscode-dot-developer" + formats: null +colors: + bg: "#28334C" + fg: "#BACFFF" + black: "#403F53" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2AA298" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "orange" + hue: 266 + pair: null + contrast: + fg: 71.4 + black: 0 + red: 27 + green: 29.1 + yellow: 57 + blue: 33.2 + magenta: 28 + cyan: 37.9 + white: 92.1 + brightBlack: 0 + brightRed: 27 + brightGreen: 29.1 + brightYellow: 54.1 + brightBlue: 33.2 + brightMagenta: 28 + brightCyan: 37.9 + brightWhite: 92.1 diff --git a/themes/dracula-dimmed.yaml b/themes/dracula-dimmed.yaml new file mode 100644 index 00000000..d136cf19 --- /dev/null +++ b/themes/dracula-dimmed.yaml @@ -0,0 +1,53 @@ +name: "Dracula Dimmed" +source: + marketplace_id: "scjorge.theme-dracula-dimmed" + version: "0.1.1" + installs: 2030 + rating: 0 + ratings: 0 + author: "Jorge Silva" + repo: "https://github.com/scjorge/dracula-dimmed" + url: "https://marketplace.visualstudio.com/items?itemName=scjorge.theme-dracula-dimmed" + formats: null +colors: + bg: "#22272E" + fg: "#DAE3ED" + black: "#262626" + red: "#EE6666" + green: "#57AB5A" + yellow: "#E7EE98" + blue: "#BF9EEE" + magenta: "#F286C4" + cyan: "#97E1F1" + white: "#F6F6F4" + brightBlack: "#7B7F8B" + brightRed: "#F07C7C" + brightGreen: "#57AB5A" + brightYellow: "#F6F6AE" + brightBlue: "#D6B4F7" + brightMagenta: "#F49DDA" + brightCyan: "#ADF6F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 257 + pair: null + contrast: + fg: 85.9 + black: 0 + red: 41 + green: 44.3 + yellow: 89.5 + blue: 54.7 + magenta: 53.1 + cyan: 78.2 + white: 98.7 + brightBlack: 31.1 + brightRed: 47.3 + brightGreen: 44.3 + brightYellow: 96 + brightBlue: 66.4 + brightMagenta: 61.5 + brightCyan: 90.4 + brightWhite: 104.7 diff --git a/themes/dracula-min--dracula-min-light-darker-theme.yaml b/themes/dracula-min--dracula-min-light-darker-theme.yaml new file mode 100644 index 00000000..9f8e1a48 --- /dev/null +++ b/themes/dracula-min--dracula-min-light-darker-theme.yaml @@ -0,0 +1,53 @@ +name: "Dracula.min (Dracula.min Light Darker Theme)" +source: + marketplace_id: "ashrafhadden.dracula-dot-min" + version: "2.1.1" + installs: 12881 + rating: 5 + ratings: 5 + author: "Ashraf Hadden" + repo: "https://github.com/ashrafhadden/dracula.min" + url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" + formats: null +colors: + bg: "#F8F8F2" + fg: "#282A36" + black: "#EAEBF9" + red: "#AE001C" + green: "#006400" + yellow: "#4C5B00" + blue: "#64429E" + magenta: "#9F1670" + cyan: "#005D6F" + white: "#282A36" + brightBlack: "#7E8EC2" + brightRed: "#A7192C" + brightGreen: "#006400" + brightYellow: "#535901" + brightBlue: "#68448E" + brightMagenta: "#912A78" + brightCyan: "#005F60" + brightWhite: "#555555" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.5 + black: 0 + red: 78.8 + green: 80.7 + yellow: 81.4 + blue: 81.2 + magenta: 79.8 + cyan: 81.1 + white: 96.5 + brightBlack: 54.9 + brightRed: 79.7 + brightGreen: 80.7 + brightYellow: 81.5 + brightBlue: 81.3 + brightMagenta: 80.6 + brightCyan: 81.1 + brightWhite: 81.5 diff --git a/themes/dracula-min--dracula-min-light-theme.yaml b/themes/dracula-min--dracula-min-light-theme.yaml new file mode 100644 index 00000000..70a0107e --- /dev/null +++ b/themes/dracula-min--dracula-min-light-theme.yaml @@ -0,0 +1,53 @@ +name: "Dracula.min (Dracula.min Light Theme)" +source: + marketplace_id: "ashrafhadden.dracula-dot-min" + version: "2.1.1" + installs: 12881 + rating: 5 + ratings: 5 + author: "Ashraf Hadden" + repo: "https://github.com/ashrafhadden/dracula.min" + url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" + formats: null +colors: + bg: "#F8F8F2" + fg: "#282A36" + black: "#EAEBF9" + red: "#D82F39" + green: "#008504" + yellow: "#6C7908" + blue: "#855FBF" + magenta: "#C13F8E" + cyan: "#007E90" + white: "#282A36" + brightBlack: "#7E8EC2" + brightRed: "#CB4046" + brightGreen: "#008525" + brightYellow: "#727724" + brightBlue: "#8762AE" + brightMagenta: "#B34B97" + brightCyan: "#157F80" + brightWhite: "#727272" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.5 + black: 0 + red: 67.2 + green: 68.2 + yellow: 68.7 + blue: 68.6 + magenta: 68 + cyan: 68.2 + white: 96.5 + brightBlack: 54.9 + brightRed: 67.9 + brightGreen: 68.1 + brightYellow: 68.7 + brightBlue: 68.6 + brightMagenta: 68.3 + brightCyan: 68.4 + brightWhite: 69 diff --git a/themes/dracula-min--dracula-min-white-darker-theme.yaml b/themes/dracula-min--dracula-min-white-darker-theme.yaml new file mode 100644 index 00000000..ebea0e4e --- /dev/null +++ b/themes/dracula-min--dracula-min-white-darker-theme.yaml @@ -0,0 +1,53 @@ +name: "Dracula.min (Dracula.min White Darker Theme)" +source: + marketplace_id: "ashrafhadden.dracula-dot-min" + version: "2.1.1" + installs: 12881 + rating: 5 + ratings: 5 + author: "Ashraf Hadden" + repo: "https://github.com/ashrafhadden/dracula.min" + url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" + formats: null +colors: + bg: "#FFFFFF" + fg: "#282A36" + black: "#F1F2FF" + red: "#B60021" + green: "#006800" + yellow: "#515F00" + blue: "#6946A3" + magenta: "#A41D74" + cyan: "#006274" + white: "#282A36" + brightBlack: "#8393C7" + brightRed: "#AC202F" + brightGreen: "#006803" + brightYellow: "#585E06" + brightBlue: "#6C4993" + brightMagenta: "#962F7C" + brightCyan: "#006465" + brightWhite: "#595959" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101 + black: 0 + red: 81.5 + green: 83.7 + yellow: 84.2 + blue: 83.9 + magenta: 82.7 + cyan: 83.7 + white: 101 + brightBlack: 56.9 + brightRed: 82.6 + brightGreen: 83.7 + brightYellow: 83.9 + brightBlue: 83.9 + brightMagenta: 83.4 + brightCyan: 83.6 + brightWhite: 84.3 diff --git a/themes/dracula-min--dracula-min-white-theme.yaml b/themes/dracula-min--dracula-min-white-theme.yaml new file mode 100644 index 00000000..eb28a250 --- /dev/null +++ b/themes/dracula-min--dracula-min-white-theme.yaml @@ -0,0 +1,53 @@ +name: "Dracula.min (Dracula.min White Theme)" +source: + marketplace_id: "ashrafhadden.dracula-dot-min" + version: "2.1.1" + installs: 12881 + rating: 5 + ratings: 5 + author: "Ashraf Hadden" + repo: "https://github.com/ashrafhadden/dracula.min" + url: "https://marketplace.visualstudio.com/items?itemName=ashrafhadden.dracula-dot-min" + formats: null +colors: + bg: "#FFFFFF" + fg: "#282A36" + black: "#F1F2FF" + red: "#DE353D" + green: "#008A0D" + yellow: "#707E0F" + blue: "#8963C4" + magenta: "#C74493" + cyan: "#048395" + white: "#282A36" + brightBlack: "#8393C7" + brightRed: "#D1454B" + brightGreen: "#008A2A" + brightYellow: "#777B28" + brightBlue: "#8C66B3" + brightMagenta: "#B8509C" + brightCyan: "#1E8484" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101 + black: 0 + red: 69.6 + green: 70.6 + yellow: 71 + blue: 71.2 + magenta: 70.3 + cyan: 70.6 + white: 101 + brightBlack: 56.9 + brightRed: 70.2 + brightGreen: 70.5 + brightYellow: 71.3 + brightBlue: 71.1 + brightMagenta: 70.7 + brightCyan: 70.7 + brightWhite: 71.1 diff --git a/themes/dracula-pro-version--dracula-pro-black.yaml b/themes/dracula-pro-version--dracula-pro-black.yaml new file mode 100644 index 00000000..26f6298f --- /dev/null +++ b/themes/dracula-pro-version--dracula-pro-black.yaml @@ -0,0 +1,53 @@ +name: "Dracula Pro Version (Dracula Pro Black)" +source: + marketplace_id: "caiovellani.dracula-pro-free" + version: "1.2.0" + installs: 449 + rating: 5 + ratings: 1 + author: "caiovellani" + repo: "https://github.com/caiovellani/dracula-pro" + url: "https://marketplace.visualstudio.com/items?itemName=caiovellani.dracula-pro-free" + formats: null +colors: + bg: "#000000" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 103 + black: 0 + red: 44.4 + green: 85.9 + yellow: 99.6 + blue: 54.6 + magenta: 55.6 + cyan: 85 + white: 103 + brightBlack: 29.1 + brightRed: 49.8 + brightGreen: 90 + brightYellow: 104.5 + brightBlue: 67.1 + brightMagenta: 63.6 + brightCyan: 97.8 + brightWhite: 107.9 diff --git a/themes/dracula-pro-version--dracula-pro.yaml b/themes/dracula-pro-version--dracula-pro.yaml new file mode 100644 index 00000000..023c40b4 --- /dev/null +++ b/themes/dracula-pro-version--dracula-pro.yaml @@ -0,0 +1,53 @@ +name: "Dracula Pro Version (Dracula Pro)" +source: + marketplace_id: "caiovellani.dracula-pro-free" + version: "1.2.0" + installs: 449 + rating: 5 + ratings: 1 + author: "caiovellani" + repo: "https://github.com/caiovellani/dracula-pro" + url: "https://marketplace.visualstudio.com/items?itemName=caiovellani.dracula-pro-free" + formats: null +colors: + bg: "#22212C" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF9580" + green: "#8AFF80" + yellow: "#FFFF80" + blue: "#9580FF" + magenta: "#FF80BF" + cyan: "#80FFEA" + white: "#F8F8F2" + brightBlack: "#7970A9" + brightRed: "#FFBFB3" + brightGreen: "#B9FFB3" + brightYellow: "#FFFFB3" + brightBlue: "#BFB3FF" + brightMagenta: "#FFB3D9" + brightCyan: "#B3FFF2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 289 + pair: null + contrast: + fg: 100.5 + black: 0 + red: 58.3 + green: 89 + yellow: 101.3 + blue: 41.8 + magenta: 54.6 + cyan: 91.8 + white: 100.5 + brightBlack: 28.3 + brightRed: 74.6 + brightGreen: 94.1 + brightYellow: 102.5 + brightBlue: 64.2 + brightMagenta: 71.7 + brightCyan: 96 + brightWhite: 105.4 diff --git a/themes/dracula-theme-light-dark--dracula-dark.yaml b/themes/dracula-theme-light-dark--dracula-dark.yaml new file mode 100644 index 00000000..2c9d9620 --- /dev/null +++ b/themes/dracula-theme-light-dark--dracula-dark.yaml @@ -0,0 +1,53 @@ +name: "Dracula Theme Light & Dark (Dracula Dark)" +source: + marketplace_id: "f-hossen.dracula-theme-light-dark" + version: "0.0.2" + installs: 1106 + rating: 0 + ratings: 0 + author: "Farhad H." + repo: "https://github.com/f-hossen/dracula-theme-light-dark" + url: "https://marketplace.visualstudio.com/items?itemName=f-hossen.dracula-theme-light-dark" + formats: null +colors: + bg: "#282A36" + fg: "#F6F6F4" + black: "#262626" + red: "#EE6666" + green: "#62E884" + yellow: "#E7EE98" + blue: "#BF9EEE" + magenta: "#F286C4" + cyan: "#97E1F1" + white: "#F6F6F4" + brightBlack: "#7B7F8B" + brightRed: "#F07C7C" + brightGreen: "#78F09A" + brightYellow: "#F6F6AE" + brightBlue: "#D6B4F7" + brightMagenta: "#F49DDA" + brightCyan: "#ADF6F6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: null + contrast: + fg: 97.9 + black: 0 + red: 40.3 + green: 73.5 + yellow: 88.8 + blue: 53.9 + magenta: 52.4 + cyan: 77.5 + white: 97.9 + brightBlack: 30.4 + brightRed: 46.5 + brightGreen: 79.2 + brightYellow: 95.2 + brightBlue: 65.6 + brightMagenta: 60.8 + brightCyan: 89.7 + brightWhite: 103.9 diff --git a/themes/dracula-theme-light-dark--dracula-light.yaml b/themes/dracula-theme-light-dark--dracula-light.yaml new file mode 100644 index 00000000..1140f74d --- /dev/null +++ b/themes/dracula-theme-light-dark--dracula-light.yaml @@ -0,0 +1,53 @@ +name: "Dracula Theme Light & Dark (Dracula Light)" +source: + marketplace_id: "f-hossen.dracula-theme-light-dark" + version: "0.0.2" + installs: 1106 + rating: 0 + ratings: 0 + author: "Farhad H." + repo: "https://github.com/f-hossen/dracula-theme-light-dark" + url: "https://marketplace.visualstudio.com/items?itemName=f-hossen.dracula-theme-light-dark" + formats: null +colors: + bg: "#F4F4F9" + fg: "#404040" + black: "#E6E6EB" + red: "#E45649" + green: "#008000" + yellow: "#A8A800" + blue: "#9C66E8" + magenta: "#FF9ED4" + cyan: "#00C1EC" + white: "#404040" + brightBlack: "#8A8F9E" + brightRed: "#D16969" + brightGreen: "#6A9955" + brightYellow: "#D7AF00" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#282A36" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 87.8 + black: 0 + red: 57 + green: 68.3 + yellow: 43.2 + blue: 59.1 + magenta: 29.4 + cyan: 34.8 + white: 87.8 + brightBlack: 53.2 + brightRed: 56.2 + brightGreen: 54.3 + brightYellow: 34.4 + brightBlue: 29.1 + brightMagenta: 32.4 + brightCyan: 0 + brightWhite: 94.6 diff --git a/themes/dracula-theme-with-italic-keywords.yaml b/themes/dracula-theme-with-italic-keywords.yaml new file mode 100644 index 00000000..7621f812 --- /dev/null +++ b/themes/dracula-theme-with-italic-keywords.yaml @@ -0,0 +1,53 @@ +name: "Dracula Theme with Italic Keywords" +source: + marketplace_id: "shidhincr.theme-dracula-italics" + version: "1.0.1" + installs: 16536 + rating: 5 + ratings: 4 + author: "shidhincr" + repo: "https://github.com/shidhincr/vscode-dracula-italics" + url: "https://marketplace.visualstudio.com/items?itemName=shidhincr.theme-dracula-italics" + formats: null +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#575757" + red: "#FF6E67" + green: "#5AF78E" + yellow: "#F4F99D" + blue: "#CAA9FA" + magenta: "#FF92D0" + cyan: "#9AEDFE" + white: "#F8F8F2" + brightBlack: "#4D4D4D" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#BD93F9" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#BFBFBF" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: null + contrast: + fg: 99 + black: 12.9 + red: 45.7 + green: 81.1 + yellow: 95.9 + blue: 60.1 + magenta: 58.9 + cyan: 84.1 + white: 99 + brightBlack: 9.1 + brightRed: 40.4 + brightGreen: 81.9 + brightYellow: 95.6 + brightBlue: 50.7 + brightMagenta: 51.6 + brightCyan: 81 + brightWhite: 64.1 diff --git a/themes/draculagray.yaml b/themes/draculagray.yaml new file mode 100644 index 00000000..4cb433d0 --- /dev/null +++ b/themes/draculagray.yaml @@ -0,0 +1,53 @@ +name: "DraculaGray" +source: + marketplace_id: "wivim-dev.graydraculatheme" + version: "0.1.14" + installs: 325 + rating: 0 + ratings: 0 + author: "wivimdavid" + repo: "https://github.com/WivimDavid/vscode-gray" + url: "https://marketplace.visualstudio.com/items?itemName=wivim-dev.graydraculatheme" + formats: null +colors: + bg: "#1E2029" + fg: "#868690" + black: "#1E2029" + red: "#4E4F59" + green: "#4E4F59" + yellow: "#4E4F59" + blue: "#4E4F59" + magenta: "#4E4F59" + cyan: "#4E4F59" + white: "#E2E4ED" + brightBlack: "#575861" + brightRed: "#4E4F59" + brightGreen: "#4E4F59" + brightYellow: "#4E4F59" + brightBlue: "#4E4F59" + brightMagenta: "#4E4F59" + brightCyan: "#4E4F59" + brightWhite: "#E2E4ED" +meta: + mode: "dark" + accent: "purple" + hue: 275 + pair: null + contrast: + fg: 35.8 + black: 0 + red: 11.9 + green: 11.9 + yellow: 11.9 + blue: 11.9 + magenta: 11.9 + cyan: 11.9 + white: 88.4 + brightBlack: 15.3 + brightRed: 11.9 + brightGreen: 11.9 + brightYellow: 11.9 + brightBlue: 11.9 + brightMagenta: 11.9 + brightCyan: 11.9 + brightWhite: 88.4 diff --git a/themes/dragan-color-theme.yaml b/themes/dragan-color-theme.yaml new file mode 100644 index 00000000..b85ce656 --- /dev/null +++ b/themes/dragan-color-theme.yaml @@ -0,0 +1,53 @@ +name: "Dragan Color Theme" +source: + marketplace_id: "Miladfathy.dragan-color-theme" + version: "2.0.8" + installs: 69789 + rating: 5 + ratings: 9 + author: "Milad Fathy" + repo: "https://github.com/miladfathy" + url: "https://marketplace.visualstudio.com/items?itemName=Miladfathy.dragan-color-theme" + formats: null +colors: + bg: "#17181A" + fg: "#E2E2E2" + black: "#090300" + red: "#DB2D20" + green: "#01A252" + yellow: "#FDED02" + blue: "#01A0E4" + magenta: "#A16A94" + cyan: "#0BA9DD" + white: "#F37676" + brightBlack: "#F38028" + brightRed: "#0A37FF" + brightGreen: "#01A252" + brightYellow: "#FDED02" + brightBlue: "#01A0E4" + brightMagenta: "#EB64CB" + brightCyan: "#FF0FF3" + brightWhite: "#240EE2" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 88 + black: 0 + red: 29.3 + green: 40.5 + yellow: 92.7 + blue: 45.6 + magenta: 31.7 + cyan: 48.8 + white: 48.3 + brightBlack: 49.8 + brightRed: 18.4 + brightGreen: 40.5 + brightYellow: 92.7 + brightBlue: 45.6 + brightMagenta: 45.9 + brightCyan: 44.3 + brightWhite: 12 diff --git a/themes/drak-theme.yaml b/themes/drak-theme.yaml new file mode 100644 index 00000000..97688bbe --- /dev/null +++ b/themes/drak-theme.yaml @@ -0,0 +1,53 @@ +name: "Drak-Theme" +source: + marketplace_id: "Daniel-caires.Drak-Theme" + version: "0.0.0" + installs: 1441 + rating: 0 + ratings: 0 + author: "Daniel-caires" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Daniel-caires.Drak-Theme" + formats: null +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + pair: null + contrast: + fg: 99 + black: 0 + red: 23.8 + green: 50 + yellow: 82.7 + blue: 24.5 + magenta: 26.8 + cyan: 44.6 + white: 87.1 + brightBlack: 19.1 + brightRed: 35.6 + brightGreen: 60.6 + brightYellow: 92.7 + brightBlue: 37 + brightMagenta: 42.4 + brightCyan: 52.4 + brightWhite: 87.1 diff --git a/themes/drakencord-blue.yaml b/themes/drakencord-blue.yaml new file mode 100644 index 00000000..77bf7757 --- /dev/null +++ b/themes/drakencord-blue.yaml @@ -0,0 +1,53 @@ +name: "DrakenCord Blue" +source: + marketplace_id: "kvi2611.drakencord-blue" + version: "0.0.1" + installs: 68 + rating: 0 + ratings: 0 + author: "kvi 2611" + repo: "https://github.com/Kaii-Dev/blue-cheese-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kvi2611.drakencord-blue" + formats: null +colors: + bg: "#1D232C" + fg: "#E5E7EB" + black: "#000000" + red: "#FF2348" + green: "#ADDB67" + yellow: "#ECC48D" + blue: "#407DFF" + magenta: "#9F60EC" + cyan: "#11A8CD" + white: "#E5E7EB" + brightBlack: "#637777" + brightRed: "#FF5874" + brightGreen: "#8FB05E" + brightYellow: "#DCDCAA" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#29B8DB" + brightWhite: "#BBBEC4" +meta: + mode: "dark" + accent: "orange" + hue: 258 + pair: null + contrast: + fg: 89.7 + black: 0 + red: 36.2 + green: 73.4 + yellow: 72.2 + blue: 34.6 + magenta: 33 + cyan: 46 + white: 89.7 + brightBlack: 26.3 + brightRed: 43 + brightGreen: 51.2 + brightYellow: 81 + brightBlue: 54.4 + brightMagenta: 52.2 + brightCyan: 53.9 + brightWhite: 64.8 diff --git a/themes/dribbble-theme.yaml b/themes/dribbble-theme.yaml new file mode 100644 index 00000000..bf63ed1f --- /dev/null +++ b/themes/dribbble-theme.yaml @@ -0,0 +1,53 @@ +name: "Dribbble Theme" +source: + marketplace_id: "MarvinSernee.dribbble-theme" + version: "1.0.0" + installs: 707 + rating: 5 + ratings: 1 + author: "Marvin Sernee" + repo: "https://github.com/MarvinMichel/dribbble-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MarvinSernee.dribbble-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#757575" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 92.6 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 72 diff --git a/themes/duang.yaml b/themes/duang.yaml new file mode 100644 index 00000000..e537fab0 --- /dev/null +++ b/themes/duang.yaml @@ -0,0 +1,53 @@ +name: "Duang" +source: + marketplace_id: "Brownhu.duang" + version: "0.1.2" + installs: 1860 + rating: 5 + ratings: 1 + author: "Brownhu" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Brownhu.duang" + formats: null +colors: + bg: "#282C34" + fg: "#9CDAFB" + black: "#2D3139" + red: "#FFB094" + green: "#AAE691" + yellow: "#56ECD5" + blue: "#ACEBFC" + magenta: "#C591E6" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#AAE691" + brightYellow: "#56ECD5" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 74.9 + black: 0 + red: 66.2 + green: 77.6 + yellow: 77.5 + blue: 84.3 + magenta: 49.7 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 77.6 + brightYellow: 77.5 + brightBlue: 38.3 + brightMagenta: 9.5 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/duck-mode--duck-in-the-dream.yaml b/themes/duck-mode--duck-in-the-dream.yaml new file mode 100644 index 00000000..2e3c5523 --- /dev/null +++ b/themes/duck-mode--duck-in-the-dream.yaml @@ -0,0 +1,53 @@ +name: "Duck Mode! (Duck in the Dream)" +source: + marketplace_id: "MEvesalTR.duck-mode-vscode" + version: "0.9.7" + installs: 2141 + rating: 5 + ratings: 1 + author: "MEvesalTR" + repo: "https://github.com/MEvesalTR/duck-mode" + url: "https://marketplace.visualstudio.com/items?itemName=MEvesalTR.duck-mode-vscode" + formats: null +colors: + bg: "#110F17" + fg: "#EDECEE" + black: "#110F17" + red: "#FF5164" + green: "#87FF5F" + yellow: "#FFCA85" + blue: "#9B78FF" + magenta: "#87FF5F" + cyan: "#9B78FF" + white: "#CDCCCE" + brightBlack: "#2D2D2D" + brightRed: "#FFCA85" + brightGreen: "#9B78FF" + brightYellow: "#FFCA85" + brightBlue: "#9B78FF" + brightMagenta: "#87FF5F" + brightCyan: "#87FF5F" + brightWhite: "#EDECEE" +meta: + mode: "dark" + accent: "green" + hue: 296 + pair: null + contrast: + fg: 95.3 + black: 0 + red: 43.6 + green: 90.2 + yellow: 79.6 + blue: 42.1 + magenta: 90.2 + cyan: 42.1 + white: 75.4 + brightBlack: 0 + brightRed: 79.6 + brightGreen: 42.1 + brightYellow: 79.6 + brightBlue: 42.1 + brightMagenta: 90.2 + brightCyan: 90.2 + brightWhite: 95.3 diff --git a/themes/duck-mode--duck-in-the-lake.yaml b/themes/duck-mode--duck-in-the-lake.yaml new file mode 100644 index 00000000..8b712ce2 --- /dev/null +++ b/themes/duck-mode--duck-in-the-lake.yaml @@ -0,0 +1,53 @@ +name: "Duck Mode! (Duck in the Lake)" +source: + marketplace_id: "MEvesalTR.duck-mode-vscode" + version: "0.9.7" + installs: 2141 + rating: 5 + ratings: 1 + author: "MEvesalTR" + repo: "https://github.com/MEvesalTR/duck-mode" + url: "https://marketplace.visualstudio.com/items?itemName=MEvesalTR.duck-mode-vscode" + formats: null +colors: + bg: "#1D222D" + fg: "#CCCAC2" + black: "#171B24" + red: "#ED8274" + green: "#87D96C" + yellow: "#FACC6E" + blue: "#6DCBFA" + magenta: "#DABAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#D5FF80" + brightYellow: "#FFCD69" + brightBlue: "#73D0FF" + brightMagenta: "#DFBFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 266 + pair: null + contrast: + fg: 72 + black: 0 + red: 48.9 + green: 69.3 + yellow: 77.1 + blue: 66.6 + magenta: 70.2 + cyan: 76.5 + white: 70.3 + brightBlack: 21.5 + brightRed: 51.4 + brightGreen: 95.8 + brightYellow: 78.3 + brightBlue: 69.5 + brightMagenta: 73.1 + brightCyan: 79.4 + brightWhite: 105.5 diff --git a/themes/duckcash-vscode-theme.yaml b/themes/duckcash-vscode-theme.yaml new file mode 100644 index 00000000..e2ceb1b6 --- /dev/null +++ b/themes/duckcash-vscode-theme.yaml @@ -0,0 +1,53 @@ +name: "Duckcash VSCode Theme" +source: + marketplace_id: "duckcash.duckcash-vscode-theme" + version: "0.0.2" + installs: 201 + rating: 5 + ratings: 1 + author: "duckcash" + repo: "https://github.com/Casual-Seb/duckcash-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=duckcash.duckcash-vscode-theme" + formats: null +colors: + bg: "#262626" + fg: "#CECECE" + black: "#FFFFFF" + red: "#F7899C" + green: "#9BFBA3" + yellow: "#E1C342" + blue: "#39B1B3" + magenta: "#B200B3" + cyan: "#00A6B3" + white: "#C0BFBF" + brightBlack: "#C9C9C9" + brightRed: "#F8A3B3" + brightGreen: "#75FDC0" + brightYellow: "#F9EA8C" + brightBlue: "#43CCCA" + brightMagenta: "#E601E5" + brightCyan: "#31F4F4" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 73.8 + black: 104.8 + red: 53.4 + green: 88.3 + yellow: 68.2 + blue: 48.6 + magenta: 21.5 + cyan: 43.3 + white: 65.1 + brightBlack: 70.8 + brightRed: 62.6 + brightGreen: 87.8 + brightYellow: 90.1 + brightBlue: 62 + brightMagenta: 35.6 + brightCyan: 83.2 + brightWhite: 87.9 diff --git a/themes/duke-monokai.yaml b/themes/duke-monokai.yaml new file mode 100644 index 00000000..81e274d7 --- /dev/null +++ b/themes/duke-monokai.yaml @@ -0,0 +1,53 @@ +name: "Duke Monokai" +source: + marketplace_id: "cafeduke.dukemonokai" + version: "0.0.2" + installs: 436 + rating: 0 + ratings: 0 + author: "cafeduke" + repo: "https://github.com/cafeduke/vscode-dukemonokai-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cafeduke.dukemonokai" + formats: null +colors: + bg: "#202320" + fg: "#F8F8F0" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 100.4 + black: 0 + red: 23.2 + green: 51.6 + yellow: 56.2 + blue: 33.2 + magenta: 30.8 + cyan: 49 + white: 87 + brightBlack: 20.6 + brightRed: 35.9 + brightGreen: 75.5 + brightYellow: 82.5 + brightBlue: 48.4 + brightMagenta: 45.1 + brightCyan: 72 + brightWhite: 100.5 diff --git a/themes/dull-grey.yaml b/themes/dull-grey.yaml new file mode 100644 index 00000000..f5e97ed6 --- /dev/null +++ b/themes/dull-grey.yaml @@ -0,0 +1,53 @@ +name: "Dull grey" +source: + marketplace_id: "xynny.dullgrey-theme" + version: "0.0.1" + installs: 1817 + rating: 0 + ratings: 0 + author: "xynny" + repo: "https://github.com/xynnylol/vsthemes" + url: "https://marketplace.visualstudio.com/items?itemName=xynny.dullgrey-theme" + formats: null +colors: + bg: "#29343D" + fg: "#FCFCFC" + black: "#141A1F" + red: "#F94144" + green: "#90BE6D" + yellow: "#F9C74F" + blue: "#577590" + magenta: "#F3722C" + cyan: "#43AA8B" + white: "#FCFCFC" + brightBlack: "#1F272E" + brightRed: "#FB7274" + brightGreen: "#ADCE93" + brightYellow: "#FAD47A" + brightBlue: "#7C98B0" + brightMagenta: "#F69460" + brightCyan: "#6BC4A9" + brightWhite: "#FCFCFC" +meta: + mode: "dark" + accent: "orange" + hue: 243 + pair: null + contrast: + fg: 100.1 + black: 0 + red: 34 + green: 54.3 + yellow: 71.1 + blue: 22.5 + magenta: 41.5 + cyan: 41.7 + white: 100.1 + brightBlack: 0 + brightRed: 44.3 + brightGreen: 65.2 + brightYellow: 77.4 + brightBlue: 39.2 + brightMagenta: 52.3 + brightCyan: 56 + brightWhite: 100.1 diff --git a/themes/dyslexia-autumn.yaml b/themes/dyslexia-autumn.yaml new file mode 100644 index 00000000..9683406c --- /dev/null +++ b/themes/dyslexia-autumn.yaml @@ -0,0 +1,53 @@ +name: "Dyslexia Autumn" +source: + marketplace_id: "jonothankh.dyslexia-autumn-theme" + version: "0.0.1" + installs: 1551 + rating: 0 + ratings: 0 + author: "Jonothan Hunt" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jonothankh.dyslexia-autumn-theme" + formats: null +colors: + bg: "#1D0F0F" + fg: "#A08060" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 20 + pair: null + contrast: + fg: 36.9 + black: 0 + red: 27 + green: 53.3 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.4 diff --git a/themes/dzsolarized--dzsolarized-dark.yaml b/themes/dzsolarized--dzsolarized-dark.yaml new file mode 100644 index 00000000..cffb99e6 --- /dev/null +++ b/themes/dzsolarized--dzsolarized-dark.yaml @@ -0,0 +1,54 @@ +name: "DzSolarized (DzSolarized Dark)" +source: + marketplace_id: "ChrisDzombak.dzsolarized" + version: "0.0.18" + installs: 19 + rating: 0 + ratings: 0 + author: "Chris Dzombak" + repo: "https://github.com/cdzombak/dzsolarized-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ChrisDzombak.dzsolarized" + formats: + zed: "https://raw.githubusercontent.com/cdzombak/dzsolarized-vscode/main/themes/DzSolarized-Dark-HighContrastTerminal-color-theme.json" +colors: + bg: "#001E28" + fg: "#839496" + black: "#002831" + red: "#D11C24" + green: "#6CBE6C" + yellow: "#A57706" + blue: "#2176C7" + magenta: "#C61C6F" + cyan: "#259286" + white: "#EAE3CB" + brightBlack: "#006488" + brightRed: "#F5163B" + brightGreen: "#51EF84" + brightYellow: "#B27E28" + brightBlue: "#178EC8" + brightMagenta: "#E24D8E" + brightCyan: "#00B39E" + brightWhite: "#FCF4DC" +meta: + mode: "dark" + accent: "orange" + hue: 224 + pair: null + contrast: + fg: 41.4 + black: 0 + red: 25.4 + green: 55.8 + yellow: 32.9 + blue: 28 + magenta: 24.3 + cyan: 35 + white: 88.1 + brightBlack: 18.2 + brightRed: 34 + brightGreen: 78.8 + brightYellow: 37.2 + brightBlue: 36.4 + brightMagenta: 36.5 + brightCyan: 49.5 + brightWhite: 99.1 diff --git a/themes/dzsolarized--dzsolarized.yaml b/themes/dzsolarized--dzsolarized.yaml new file mode 100644 index 00000000..c4cc51d9 --- /dev/null +++ b/themes/dzsolarized--dzsolarized.yaml @@ -0,0 +1,54 @@ +name: "DzSolarized (DzSolarized)" +source: + marketplace_id: "ChrisDzombak.dzsolarized" + version: "0.0.18" + installs: 19 + rating: 0 + ratings: 0 + author: "Chris Dzombak" + repo: "https://github.com/cdzombak/dzsolarized-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ChrisDzombak.dzsolarized" + formats: + zed: "https://raw.githubusercontent.com/cdzombak/dzsolarized-vscode/main/themes/DzSolarized-Dark-HighContrastTerminal-color-theme.json" +colors: + bg: "#FDF6E3" + fg: "#586E75" + black: "#002831" + red: "#D11C24" + green: "#6CBE6C" + yellow: "#A57706" + blue: "#2176C7" + magenta: "#C61C6F" + cyan: "#259286" + white: "#EAE3CB" + brightBlack: "#006488" + brightRed: "#F5163B" + brightGreen: "#51EF84" + brightYellow: "#B27E28" + brightBlue: "#178EC8" + brightMagenta: "#E24D8E" + brightCyan: "#00B39E" + brightWhite: "#FCF4DC" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 71.6 + black: 97 + red: 69.5 + green: 39.5 + yellow: 61.9 + blue: 66.8 + magenta: 70.5 + cyan: 59.9 + white: 8.9 + brightBlack: 76.9 + brightRed: 60.9 + brightGreen: 17.6 + brightYellow: 57.7 + brightBlue: 58.4 + brightMagenta: 58.3 + brightCyan: 45.6 + brightWhite: 0 diff --git a/themes/earthen-bog.yaml b/themes/earthen-bog.yaml new file mode 100644 index 00000000..7eafb363 --- /dev/null +++ b/themes/earthen-bog.yaml @@ -0,0 +1,53 @@ +name: "earthen-bog" +source: + marketplace_id: "FabianLeGair.earthen-bog" + version: "0.0.2" + installs: 71 + rating: 0 + ratings: 0 + author: "Fabian LeGair" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=FabianLeGair.earthen-bog" + formats: null +colors: + bg: "#3D4333" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: 124 + pair: null + contrast: + fg: 97.9 + black: 10.1 + red: 17.7 + green: 42.7 + yellow: 33.8 + blue: 0 + magenta: 17.1 + cyan: 31.1 + white: 0 + brightBlack: 13 + brightRed: 17.7 + brightGreen: 51.3 + brightYellow: 51.3 + brightBlue: 0 + brightMagenta: 17.1 + brightCyan: 31.1 + brightWhite: 43.5 diff --git a/themes/easy-eyes-theme.yaml b/themes/easy-eyes-theme.yaml new file mode 100644 index 00000000..fe8ae173 --- /dev/null +++ b/themes/easy-eyes-theme.yaml @@ -0,0 +1,53 @@ +name: "Easy Eyes Theme" +source: + marketplace_id: "vvhg1.theme-easy-eyes" + version: "1.2.1" + installs: 5657 + rating: 5 + ratings: 2 + author: "vvhg1" + repo: "https://github.com/vvhg1/easyeyes" + url: "https://marketplace.visualstudio.com/items?itemName=vvhg1.theme-easy-eyes" + formats: null +colors: + bg: "#1E1E1E" + fg: "#CCC9C0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 72.1 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/ebonx.yaml b/themes/ebonx.yaml new file mode 100644 index 00000000..927149b8 --- /dev/null +++ b/themes/ebonx.yaml @@ -0,0 +1,53 @@ +name: "EBONX" +source: + marketplace_id: "ROHIT-SINGH.EBONX" + version: "1.0.2" + installs: 43 + rating: 0 + ratings: 0 + author: "ROHIT-SINGH" + repo: "https://github.com/ROHIT-SINGH-1/EBONX" + url: "https://marketplace.visualstudio.com/items?itemName=ROHIT-SINGH.EBONX" + formats: null +colors: + bg: "#0D0D0D" + fg: "#6688CC" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 38.7 + black: 0 + red: 64.1 + green: 91.6 + yellow: 96.5 + blue: 82.1 + magenta: 75.5 + cyan: 96.7 + white: 75.4 + brightBlack: 0 + brightRed: 52.5 + brightGreen: 87.6 + brightYellow: 91.3 + brightBlue: 62.9 + brightMagenta: 51 + brightCyan: 94.6 + brightWhite: 107.6 diff --git a/themes/eclipse-dark--eclipse-dark-darker.yaml b/themes/eclipse-dark--eclipse-dark-darker.yaml new file mode 100644 index 00000000..494e7c8c --- /dev/null +++ b/themes/eclipse-dark--eclipse-dark-darker.yaml @@ -0,0 +1,53 @@ +name: "Eclipse Dark (Eclipse Dark Darker)" +source: + marketplace_id: "NoahLezama.eclipse-dark" + version: "0.0.8" + installs: 140 + rating: 5 + ratings: 1 + author: "Noah Lezama" + repo: "https://github.com/A5TUT0/Eclipse" + url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" + formats: null +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#8089B3" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 73.8 + black: 10.3 + red: 49.4 + green: 72.2 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 38.5 + brightBlack: 10.3 + brightRed: 49.4 + brightGreen: 72.2 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 59.3 diff --git a/themes/eclipse-dark--eclipse-dark-flat.yaml b/themes/eclipse-dark--eclipse-dark-flat.yaml new file mode 100644 index 00000000..d8b7a63a --- /dev/null +++ b/themes/eclipse-dark--eclipse-dark-flat.yaml @@ -0,0 +1,53 @@ +name: "Eclipse Dark (Eclipse Dark Flat)" +source: + marketplace_id: "NoahLezama.eclipse-dark" + version: "0.0.8" + installs: 140 + rating: 5 + ratings: 1 + author: "Noah Lezama" + repo: "https://github.com/A5TUT0/Eclipse" + url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" + formats: null +colors: + bg: "#23283D" + fg: "#C9D1FF" + black: "#5A607D" + red: "#FF7A93" + green: "#5DD7C2" + yellow: "#FF9D6A" + blue: "#82AAFF" + magenta: "#D4A5FF" + cyan: "#7EE8FF" + white: "#9AA5CE" + brightBlack: "#6B7394" + brightRed: "#FF7A93" + brightGreen: "#5DD7C2" + brightYellow: "#FF9D6A" + brightBlue: "#82AAFF" + brightMagenta: "#D4A5FF" + brightCyan: "#7EE8FF" + brightWhite: "#C9D1FF" +meta: + mode: "dark" + accent: "red" + hue: 273 + pair: null + contrast: + fg: 76.3 + black: 17.4 + red: 50.1 + green: 67.2 + yellow: 59.2 + blue: 53.3 + magenta: 60.7 + cyan: 80.1 + white: 50.5 + brightBlack: 25.6 + brightRed: 50.1 + brightGreen: 67.2 + brightYellow: 59.2 + brightBlue: 53.3 + brightMagenta: 60.7 + brightCyan: 80.1 + brightWhite: 76.3 diff --git a/themes/eclipse-dark--eclipse-flare.yaml b/themes/eclipse-dark--eclipse-flare.yaml new file mode 100644 index 00000000..52b830c3 --- /dev/null +++ b/themes/eclipse-dark--eclipse-flare.yaml @@ -0,0 +1,53 @@ +name: "Eclipse Dark (Eclipse Flare)" +source: + marketplace_id: "NoahLezama.eclipse-dark" + version: "0.0.8" + installs: 140 + rating: 5 + ratings: 1 + author: "Noah Lezama" + repo: "https://github.com/A5TUT0/Eclipse" + url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" + formats: null +colors: + bg: "#1F1F1F" + fg: "#D4D4D4" + black: "#1F1F1F" + red: "#FF1744" + green: "#76FF03" + yellow: "#FFAB00" + blue: "#448AFF" + magenta: "#F50057" + cyan: "#00E5FF" + white: "#D4D4D4" + brightBlack: "#757575" + brightRed: "#FF1744" + brightGreen: "#76FF03" + brightYellow: "#FFAB00" + brightBlue: "#448AFF" + brightMagenta: "#F50057" + brightCyan: "#00E5FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 78.5 + black: 0 + red: 36.2 + green: 87.2 + yellow: 64.9 + blue: 39.6 + magenta: 33.8 + cyan: 77.1 + white: 78.5 + brightBlack: 27.7 + brightRed: 36.2 + brightGreen: 87.2 + brightYellow: 64.9 + brightBlue: 39.6 + brightMagenta: 33.8 + brightCyan: 77.1 + brightWhite: 105.9 diff --git a/themes/eclipse-dark--eclipse-optics.yaml b/themes/eclipse-dark--eclipse-optics.yaml new file mode 100644 index 00000000..2889948c --- /dev/null +++ b/themes/eclipse-dark--eclipse-optics.yaml @@ -0,0 +1,53 @@ +name: "Eclipse Dark (Eclipse Optics)" +source: + marketplace_id: "NoahLezama.eclipse-dark" + version: "0.0.8" + installs: 140 + rating: 5 + ratings: 1 + author: "Noah Lezama" + repo: "https://github.com/A5TUT0/Eclipse" + url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" + formats: null +colors: + bg: "#262626" + fg: "#CCCCCC" + black: "#262626" + red: "#D98C8C" + green: "#8CD9B3" + yellow: "#B3864D" + blue: "#668099" + magenta: "#B38CD9" + cyan: "#8CB3D9" + white: "#CCCCCC" + brightBlack: "#737373" + brightRed: "#D98C8C" + brightGreen: "#8CD9B3" + brightYellow: "#B3864D" + brightBlue: "#668099" + brightMagenta: "#B38CD9" + brightCyan: "#8CB3D9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 72.6 + black: 0 + red: 48.2 + green: 71 + yellow: 38.8 + blue: 30.4 + magenta: 45.9 + cyan: 55.9 + white: 72.6 + brightBlack: 25.7 + brightRed: 48.2 + brightGreen: 71 + brightYellow: 38.8 + brightBlue: 30.4 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 104.8 diff --git a/themes/eclipse-dark--eclipse-penumbra.yaml b/themes/eclipse-dark--eclipse-penumbra.yaml new file mode 100644 index 00000000..7d2710c7 --- /dev/null +++ b/themes/eclipse-dark--eclipse-penumbra.yaml @@ -0,0 +1,53 @@ +name: "Eclipse Dark (Eclipse Penumbra)" +source: + marketplace_id: "NoahLezama.eclipse-dark" + version: "0.0.8" + installs: 140 + rating: 5 + ratings: 1 + author: "Noah Lezama" + repo: "https://github.com/A5TUT0/Eclipse" + url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" + formats: null +colors: + bg: "#1D3557" + fg: "#F1FAEE" + black: "#1D3557" + red: "#E63946" + green: "#A8DADC" + yellow: "#F4A261" + blue: "#8DB5E0" + magenta: "#B2B5E0" + cyan: "#A8DADC" + white: "#F1FAEE" + brightBlack: "#6B728E" + brightRed: "#E63946" + brightGreen: "#A8DADC" + brightYellow: "#F4A261" + brightBlue: "#8DB5E0" + brightMagenta: "#B2B5E0" + brightCyan: "#A8DADC" + brightWhite: "#F1FAEE" +meta: + mode: "dark" + accent: "orange" + hue: 257 + pair: null + contrast: + fg: 96.4 + black: 0 + red: 28 + green: 72.2 + yellow: 55.9 + blue: 53.9 + magenta: 57.6 + cyan: 72.2 + white: 96.4 + brightBlack: 22.3 + brightRed: 28 + brightGreen: 72.2 + brightYellow: 55.9 + brightBlue: 53.9 + brightMagenta: 57.6 + brightCyan: 72.2 + brightWhite: 96.4 diff --git a/themes/eclipse-dark--eclipse-umbra.yaml b/themes/eclipse-dark--eclipse-umbra.yaml new file mode 100644 index 00000000..90a0ad1c --- /dev/null +++ b/themes/eclipse-dark--eclipse-umbra.yaml @@ -0,0 +1,53 @@ +name: "Eclipse Dark (Eclipse Umbra)" +source: + marketplace_id: "NoahLezama.eclipse-dark" + version: "0.0.8" + installs: 140 + rating: 5 + ratings: 1 + author: "Noah Lezama" + repo: "https://github.com/A5TUT0/Eclipse" + url: "https://marketplace.visualstudio.com/items?itemName=NoahLezama.eclipse-dark" + formats: null +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#282C34" + red: "#E06C75" + green: "#98C379" + yellow: "#D19A66" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#D19A66" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 49.5 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 56.2 + brightBlack: 17.4 + brightRed: 38.9 + brightGreen: 59.1 + brightYellow: 49.5 + brightBlue: 51.5 + brightMagenta: 41.9 + brightCyan: 51.4 + brightWhite: 103.7 diff --git a/themes/eclipse-midnight.yaml b/themes/eclipse-midnight.yaml new file mode 100644 index 00000000..569ab8bf --- /dev/null +++ b/themes/eclipse-midnight.yaml @@ -0,0 +1,53 @@ +name: "Eclipse Midnight" +source: + marketplace_id: "Eclipse-Theme.eclipse-theme-midnight" + version: "0.3.5" + installs: 150 + rating: 0 + ratings: 0 + author: "Eclipse-Theme" + repo: "https://github.com/eclipse-themes/Eclipse-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Eclipse-Theme.eclipse-theme-midnight" + formats: null +colors: + bg: "#1A1825" + fg: "#F0F0F7" + black: "#1A1825" + red: "#FF7D95" + green: "#8EFFD9" + yellow: "#FFA874" + blue: "#8AB2FF" + magenta: "#C5A7FF" + cyan: "#8DD9FF" + white: "#F0F0F7" + brightBlack: "#7D7B95" + brightRed: "#FF95A9" + brightGreen: "#A1FFE4" + brightYellow: "#FFB88F" + brightBlue: "#A5B8FF" + brightMagenta: "#D2BFFF" + brightCyan: "#A5DFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 291 + pair: null + contrast: + fg: 97.1 + black: 0 + red: 53.3 + green: 93.1 + yellow: 65.5 + blue: 59.4 + magenta: 61.6 + cyan: 76.4 + white: 97.1 + brightBlack: 32.3 + brightRed: 60.8 + brightGreen: 95 + brightYellow: 71.9 + brightBlue: 64.3 + brightMagenta: 72.4 + brightCyan: 81.1 + brightWhite: 106.6 diff --git a/themes/eclipsetheme.yaml b/themes/eclipsetheme.yaml new file mode 100644 index 00000000..9df09362 --- /dev/null +++ b/themes/eclipsetheme.yaml @@ -0,0 +1,53 @@ +name: "EclipseTheme" +source: + marketplace_id: "lorenzodalfabbro.EclipseTheme" + version: "0.0.1" + installs: 962 + rating: 0 + ratings: 0 + author: "lorenzodalfabbro" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=lorenzodalfabbro.EclipseTheme" + formats: null +colors: + bg: "#292929" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 56.8 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.1 + cyan: 44.9 + white: 87.4 + brightBlack: 19.4 + brightRed: 35.9 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.7 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/ecogest-theme.yaml b/themes/ecogest-theme.yaml new file mode 100644 index 00000000..1c69797a --- /dev/null +++ b/themes/ecogest-theme.yaml @@ -0,0 +1,54 @@ +name: "ecogest-theme" +source: + marketplace_id: "ecogest.ecogest-theme" + version: "0.0.5" + installs: 68 + rating: 0 + ratings: 0 + author: "ecogest" + repo: "https://github.com/ecogest/vscode-ecogest-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ecogest.ecogest-theme" + formats: + zed: "https://raw.githubusercontent.com/ecogest/vscode-ecogest-theme/main/themes/ecogest-solarized-light-color-theme.json" +colors: + bg: "#FDF6E3" + fg: "#586E75" + black: "#EEE8D5" + red: "#B4637A" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#6C71C4" + cyan: "#2AA198" + white: "#575279" + brightBlack: "#CCBFA3" + brightRed: "#DE8C88" + brightGreen: "#629F81" + brightYellow: "#AF8700" + brightBlue: "#3393BA" + brightMagenta: "#9A80B9" + brightCyan: "#00AFAF" + brightWhite: "#5F5695" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 71.6 + black: 0 + red: 63.4 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 80 + brightBlack: 28.7 + brightRed: 44.6 + brightGreen: 52.5 + brightYellow: 55.3 + brightBlue: 56.9 + brightMagenta: 56.3 + brightCyan: 46.6 + brightWhite: 76.7 diff --git a/themes/edge--edge-dark.yaml b/themes/edge--edge-dark.yaml new file mode 100644 index 00000000..5221b622 --- /dev/null +++ b/themes/edge--edge-dark.yaml @@ -0,0 +1,53 @@ +name: "Edge (Edge Dark)" +source: + marketplace_id: "sainnhe.edge" + version: "0.1.8" + installs: 20566 + rating: 5 + ratings: 2 + author: "sainnhe" + repo: "https://github.com/sainnhe/edge-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" + formats: null +colors: + bg: "#2C2E34" + fg: "#C5CDD9" + black: "#363944" + red: "#EC7279" + green: "#A0C980" + yellow: "#DEB974" + blue: "#6CB6EB" + magenta: "#D38AEA" + cyan: "#5DBBC1" + white: "#C5CDD9" + brightBlack: "#363944" + brightRed: "#EC7279" + brightGreen: "#A0C980" + brightYellow: "#DEB974" + brightBlue: "#6CB6EB" + brightMagenta: "#D38AEA" + brightCyan: "#5DBBC1" + brightWhite: "#C5CDD9" +meta: + mode: "dark" + accent: "pink" + hue: 271 + pair: null + contrast: + fg: 71.1 + black: 0 + red: 42.4 + green: 62.2 + yellow: 62.9 + blue: 54.3 + magenta: 49.5 + cyan: 53.4 + white: 71.1 + brightBlack: 0 + brightRed: 42.4 + brightGreen: 62.2 + brightYellow: 62.9 + brightBlue: 54.3 + brightMagenta: 49.5 + brightCyan: 53.4 + brightWhite: 71.1 diff --git a/themes/edge--edge-light.yaml b/themes/edge--edge-light.yaml new file mode 100644 index 00000000..6de2144d --- /dev/null +++ b/themes/edge--edge-light.yaml @@ -0,0 +1,53 @@ +name: "Edge (Edge Light)" +source: + marketplace_id: "sainnhe.edge" + version: "0.1.8" + installs: 20566 + rating: 5 + ratings: 2 + author: "sainnhe" + repo: "https://github.com/sainnhe/edge-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" + formats: null +colors: + bg: "#FAFAFA" + fg: "#4B505B" + black: "#E8EBF0" + red: "#D05858" + green: "#608E32" + yellow: "#BE7E05" + blue: "#5079BE" + magenta: "#B05CCC" + cyan: "#3A8B84" + white: "#4B505B" + brightBlack: "#E8EBF0" + brightRed: "#D05858" + brightGreen: "#608E32" + brightYellow: "#BE7E05" + brightBlue: "#5079BE" + brightMagenta: "#B05CCC" + brightCyan: "#3A8B84" + brightWhite: "#4B505B" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 85 + black: 0 + red: 63.8 + green: 63.1 + yellow: 58.2 + blue: 67 + magenta: 63.9 + cyan: 64.4 + white: 85 + brightBlack: 0 + brightRed: 63.8 + brightGreen: 63.1 + brightYellow: 58.2 + brightBlue: 67 + brightMagenta: 63.9 + brightCyan: 64.4 + brightWhite: 85 diff --git a/themes/edge-edge-dark-aura.yaml b/themes/edge-edge-dark-aura.yaml new file mode 100644 index 00000000..33e941df --- /dev/null +++ b/themes/edge-edge-dark-aura.yaml @@ -0,0 +1,53 @@ +name: "Edge (Edge Dark (Aura))" +source: + marketplace_id: "sainnhe.edge" + version: "0.1.8" + installs: 20566 + rating: 5 + ratings: 2 + author: "sainnhe" + repo: "https://github.com/sainnhe/edge-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" + formats: null +colors: + bg: "#2B2D37" + fg: "#C5CDD9" + black: "#363A49" + red: "#EC7279" + green: "#A0C980" + yellow: "#DEB974" + blue: "#6CB6EB" + magenta: "#D38AEA" + cyan: "#5DBBC1" + white: "#C5CDD9" + brightBlack: "#363A49" + brightRed: "#EC7279" + brightGreen: "#A0C980" + brightYellow: "#DEB974" + brightBlue: "#6CB6EB" + brightMagenta: "#D38AEA" + brightCyan: "#5DBBC1" + brightWhite: "#C5CDD9" +meta: + mode: "dark" + accent: "pink" + hue: 276 + pair: null + contrast: + fg: 71.3 + black: 0 + red: 42.5 + green: 62.3 + yellow: 63 + blue: 54.4 + magenta: 49.6 + cyan: 53.5 + white: 71.3 + brightBlack: 0 + brightRed: 42.5 + brightGreen: 62.3 + brightYellow: 63 + brightBlue: 54.4 + brightMagenta: 49.6 + brightCyan: 53.5 + brightWhite: 71.3 diff --git a/themes/edge-edge-dark-neon.yaml b/themes/edge-edge-dark-neon.yaml new file mode 100644 index 00000000..4b56d248 --- /dev/null +++ b/themes/edge-edge-dark-neon.yaml @@ -0,0 +1,53 @@ +name: "Edge (Edge Dark (Neon))" +source: + marketplace_id: "sainnhe.edge" + version: "0.1.8" + installs: 20566 + rating: 5 + ratings: 2 + author: "sainnhe" + repo: "https://github.com/sainnhe/edge-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.edge" + formats: null +colors: + bg: "#2B2D3A" + fg: "#C5CDD9" + black: "#363A4E" + red: "#EC7279" + green: "#A0C980" + yellow: "#DEB974" + blue: "#6CB6EB" + magenta: "#D38AEA" + cyan: "#5DBBC1" + white: "#C5CDD9" + brightBlack: "#363A4E" + brightRed: "#EC7279" + brightGreen: "#A0C980" + brightYellow: "#DEB974" + brightBlue: "#6CB6EB" + brightMagenta: "#D38AEA" + brightCyan: "#5DBBC1" + brightWhite: "#C5CDD9" +meta: + mode: "dark" + accent: "pink" + hue: 278 + pair: null + contrast: + fg: 71.2 + black: 0 + red: 42.4 + green: 62.3 + yellow: 62.9 + blue: 54.3 + magenta: 49.5 + cyan: 53.4 + white: 71.2 + brightBlack: 0 + brightRed: 42.4 + brightGreen: 62.3 + brightYellow: 62.9 + brightBlue: 54.3 + brightMagenta: 49.5 + brightCyan: 53.4 + brightWhite: 71.2 diff --git a/themes/editor-theme.yaml b/themes/editor-theme.yaml new file mode 100644 index 00000000..093777f9 --- /dev/null +++ b/themes/editor-theme.yaml @@ -0,0 +1,53 @@ +name: "Editor Theme" +source: + marketplace_id: "Didier.editor-theme" + version: "0.7.5" + installs: 604 + rating: 5 + ratings: 1 + author: "Didier" + repo: "https://github.com/didier/editor-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Didier.editor-theme" + formats: null +colors: + bg: "#171717" + fg: "#A3A3A3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 51.4 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/eh-s-web-themes.yaml b/themes/eh-s-web-themes.yaml new file mode 100644 index 00000000..477e3602 --- /dev/null +++ b/themes/eh-s-web-themes.yaml @@ -0,0 +1,53 @@ +name: "Eh's Web Themes" +source: + marketplace_id: "gayeh.EhWebThemes" + version: "1.0.0" + installs: 6 + rating: 0 + ratings: 0 + author: "Eh" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gayeh.EhWebThemes" + formats: null +colors: + bg: "#EEE8D5" + fg: "#6F848A" + black: "#333333" + red: "#D32F2F" + green: "#5B8C3A" + yellow: "#F57F17" + blue: "#2B63A8" + magenta: "#8B4789" + cyan: "#0097A7" + white: "#AAAAAA" + brightBlack: "#333333" + brightRed: "#D32F2F" + brightGreen: "#5B8C3A" + brightYellow: "#F57F17" + brightBlue: "#2B63A8" + brightMagenta: "#8B4789" + brightCyan: "#0097A7" + brightWhite: "#AAAAAA" +meta: + mode: "light" + accent: "orange" + hue: 92 + pair: null + contrast: + fg: 53.1 + black: 85.1 + red: 59.2 + green: 53.5 + yellow: 37.4 + blue: 66.4 + magenta: 67.2 + cyan: 48.4 + white: 32.2 + brightBlack: 85.1 + brightRed: 59.2 + brightGreen: 53.5 + brightYellow: 37.4 + brightBlue: 66.4 + brightMagenta: 67.2 + brightCyan: 48.4 + brightWhite: 32.2 diff --git a/themes/eigen.yaml b/themes/eigen.yaml new file mode 100644 index 00000000..84755412 --- /dev/null +++ b/themes/eigen.yaml @@ -0,0 +1,53 @@ +name: "Eigen" +source: + marketplace_id: "eesov.eigengrau" + version: "0.0.3" + installs: 4125 + rating: 5 + ratings: 1 + author: "Igor Sotsugov" + repo: "https://github.com/sotsugov/eigengrau" + url: "https://marketplace.visualstudio.com/items?itemName=eesov.eigengrau" + formats: null +colors: + bg: "#16161D" + fg: "#D6DEEB" + black: "#16161D" + red: "#FF5555" + green: "#7FDBCA" + yellow: "#F1FA8C" + blue: "#16161D" + magenta: "#C792EA" + cyan: "#8BE9FD" + white: "#D6DEEB" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 85.2 + black: 0 + red: 43.4 + green: 74 + yellow: 98.6 + blue: 0 + magenta: 53.8 + cyan: 84 + white: 85.2 + brightBlack: 28.1 + brightRed: 48.9 + brightGreen: 89.1 + brightYellow: 103.6 + brightBlue: 66.1 + brightMagenta: 62.6 + brightCyan: 96.8 + brightWhite: 106.9 diff --git a/themes/eight8may-theme--poimandres-dark-theme.yaml b/themes/eight8may-theme--poimandres-dark-theme.yaml new file mode 100644 index 00000000..140e7857 --- /dev/null +++ b/themes/eight8may-theme--poimandres-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Eight8May Theme (poimandres dark theme)" +source: + marketplace_id: "ShravanYadav.eight8may-theme" + version: "0.0.4" + installs: 52 + rating: 5 + ratings: 1 + author: "Shravan" + repo: "https://github.com/3-shravan/Eight8May-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ShravanYadav.eight8may-theme" + formats: null +colors: + bg: "#161C1F" + fg: "#CFDEE6" + black: "#161C1F" + red: "#ED537A" + green: "#4EC9B0" + yellow: "#CFE8E7" + blue: "#70899E" + magenta: "#B6D1CD" + cyan: "#70899E" + white: "#FFFFFF" + brightBlack: "#CFDEE6" + brightRed: "#ED537A" + brightGreen: "#4EC9B0" + brightYellow: "#CFE8E7" + brightBlue: "#A7CDD9" + brightMagenta: "#B6D1CD" + brightCyan: "#A7CDD9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 229 + pair: null + contrast: + fg: 83.6 + black: 0 + red: 39.4 + green: 61.5 + yellow: 88.3 + blue: 36.2 + magenta: 73.8 + cyan: 36.2 + white: 106.4 + brightBlack: 83.6 + brightRed: 39.4 + brightGreen: 61.5 + brightYellow: 88.3 + brightBlue: 71.1 + brightMagenta: 73.8 + brightCyan: 71.1 + brightWhite: 106.4 diff --git a/themes/eldritch--eldritch-dark.yaml b/themes/eldritch--eldritch-dark.yaml new file mode 100644 index 00000000..112317a7 --- /dev/null +++ b/themes/eldritch--eldritch-dark.yaml @@ -0,0 +1,53 @@ +name: "Eldritch (Eldritch Dark)" +source: + marketplace_id: "Eldritch.eldritch" + version: "1.1.1" + installs: 1479 + rating: 0 + ratings: 0 + author: "Eldritch" + repo: "https://github.com/eldritch-theme/eldritch" + url: "https://marketplace.visualstudio.com/items?itemName=Eldritch.eldritch" + formats: null +colors: + bg: "#171928" + fg: "#EBFAFA" + black: "#21222C" + red: "#F9515D" + green: "#37F499" + yellow: "#E9F941" + blue: "#9071F4" + magenta: "#F265B5" + cyan: "#04D1F9" + white: "#EBFAFA" + brightBlack: "#7081D0" + brightRed: "#F16C75" + brightGreen: "#69F8B3" + brightYellow: "#F1FC79" + brightBlue: "#A48CF2" + brightMagenta: "#FD92CE" + brightCyan: "#66E4FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 278 + pair: null + contrast: + fg: 101.2 + black: 0 + red: 41.1 + green: 81.5 + yellow: 95.6 + blue: 37.2 + magenta: 46.2 + cyan: 67.8 + white: 101.2 + brightBlack: 36.2 + brightRed: 45.2 + brightGreen: 85.9 + brightYellow: 98.8 + brightBlue: 47.3 + brightMagenta: 61 + brightCyan: 79.1 + brightWhite: 106.5 diff --git a/themes/eldritch--eldritch.yaml b/themes/eldritch--eldritch.yaml new file mode 100644 index 00000000..e42d6cce --- /dev/null +++ b/themes/eldritch--eldritch.yaml @@ -0,0 +1,53 @@ +name: "Eldritch (Eldritch)" +source: + marketplace_id: "Eldritch.eldritch" + version: "1.1.1" + installs: 1479 + rating: 0 + ratings: 0 + author: "Eldritch" + repo: "https://github.com/eldritch-theme/eldritch" + url: "https://marketplace.visualstudio.com/items?itemName=Eldritch.eldritch" + formats: null +colors: + bg: "#212337" + fg: "#EBFAFA" + black: "#21222C" + red: "#F9515D" + green: "#37F499" + yellow: "#E9F941" + blue: "#9071F4" + magenta: "#F265B5" + cyan: "#04D1F9" + white: "#EBFAFA" + brightBlack: "#7081D0" + brightRed: "#F16C75" + brightGreen: "#69F8B3" + brightYellow: "#F1FC79" + brightBlue: "#A48CF2" + brightMagenta: "#FD92CE" + brightCyan: "#66E4FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 279 + pair: null + contrast: + fg: 99.7 + black: 0 + red: 39.6 + green: 80 + yellow: 94.1 + blue: 35.7 + magenta: 44.7 + cyan: 66.3 + white: 99.7 + brightBlack: 34.8 + brightRed: 43.7 + brightGreen: 84.4 + brightYellow: 97.3 + brightBlue: 45.9 + brightMagenta: 59.5 + brightCyan: 77.6 + brightWhite: 105 diff --git a/themes/electric-dreams-neon.yaml b/themes/electric-dreams-neon.yaml new file mode 100644 index 00000000..b1eb2909 --- /dev/null +++ b/themes/electric-dreams-neon.yaml @@ -0,0 +1,56 @@ +name: "Electric Dreams Neon" +source: + marketplace_id: "nylanalyn.electric-dreams-neon" + version: "1.0.0" + installs: 134 + rating: 0 + ratings: 0 + author: "nylan cat" + repo: "https://github.com/nylanalyn/electric-dreams-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nylanalyn.electric-dreams-neon" + formats: + alacritty: "https://raw.githubusercontent.com/nylanalyn/electric-dreams-theme/main/ports/alacritty/electric-dreams.yml" + kitty: "https://raw.githubusercontent.com/nylanalyn/electric-dreams-theme/main/ports/kitty/electric-dreams.conf" + vim: "https://raw.githubusercontent.com/nylanalyn/electric-dreams-theme/main/ports/vim/colors/electric_dreams.vim" +colors: + bg: "#0A0A0F" + fg: "#D0D0E0" + black: "#0A0A0F" + red: "#FF1744" + green: "#1DE9B6" + yellow: "#FF006E" + blue: "#9C27B0" + magenta: "#FF006E" + cyan: "#00D9FF" + white: "#D0D0E0" + brightBlack: "#4A4A6A" + brightRed: "#C41E3A" + brightGreen: "#00BFA5" + brightYellow: "#E91E63" + brightBlue: "#BB86FC" + brightMagenta: "#D81B60" + brightCyan: "#1DE9B6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 285 + pair: null + contrast: + fg: 78.6 + black: 0 + red: 38 + green: 77.6 + yellow: 38.6 + blue: 21.6 + magenta: 38.6 + cyan: 73.1 + white: 78.6 + brightBlack: 12.9 + brightRed: 24.2 + brightGreen: 56.6 + brightYellow: 33.5 + brightBlue: 50.4 + brightMagenta: 29.3 + brightCyan: 77.6 + brightWhite: 107.7 diff --git a/themes/electriclabs.yaml b/themes/electriclabs.yaml new file mode 100644 index 00000000..56f9f609 --- /dev/null +++ b/themes/electriclabs.yaml @@ -0,0 +1,53 @@ +name: "electriclabs" +source: + marketplace_id: "CybionLabs.electriclabs" + version: "0.8.0" + installs: 6 + rating: 0 + ratings: 0 + author: "Cybion Labs" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CybionLabs.electriclabs" + formats: null +colors: + bg: "#000000" + fg: "#00FF10" + black: "#0000FF" + red: "#0000FF" + green: "#0000FF" + yellow: "#0000FF" + blue: "#0000FF" + magenta: "#0000FF" + cyan: "#0000FF" + white: "#0000FF" + brightBlack: "#0000FF" + brightRed: "#0000FF" + brightGreen: "#0000FF" + brightYellow: "#0000FF" + brightBlue: "#0000FF" + brightMagenta: "#0000FF" + brightCyan: "#0000FF" + brightWhite: "#0000FF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 86.5 + black: 16.2 + red: 16.2 + green: 16.2 + yellow: 16.2 + blue: 16.2 + magenta: 16.2 + cyan: 16.2 + white: 16.2 + brightBlack: 16.2 + brightRed: 16.2 + brightGreen: 16.2 + brightYellow: 16.2 + brightBlue: 16.2 + brightMagenta: 16.2 + brightCyan: 16.2 + brightWhite: 16.2 diff --git a/themes/electron-highlighter-syntax.yaml b/themes/electron-highlighter-syntax.yaml new file mode 100644 index 00000000..12251e2d --- /dev/null +++ b/themes/electron-highlighter-syntax.yaml @@ -0,0 +1,53 @@ +name: "Electron Highlighter Syntax" +source: + marketplace_id: "mikemcbride.electron-highlighter" + version: "1.3.0" + installs: 90400 + rating: 5 + ratings: 3 + author: "Mike McBride" + repo: "https://github.com/mikemcbride/vscode-electron-highlighter" + url: "https://marketplace.visualstudio.com/items?itemName=mikemcbride.electron-highlighter" + formats: null +colors: + bg: "#1D232F" + fg: "#A8B5D1" + black: "#1D232F" + red: "#F7768E" + green: "#58FFC7" + yellow: "#FCF9C3" + blue: "#82AAFF" + magenta: "#D2A6EF" + cyan: "#57F9FF" + white: "#7C8EAC" + brightBlack: "#7992B4" + brightRed: "#F7768E" + brightGreen: "#58FFC7" + brightYellow: "#FCF9C3" + brightBlue: "#82AAFF" + brightMagenta: "#D2A6EF" + brightCyan: "#57F9FF" + brightWhite: "#7C8EAC" +meta: + mode: "dark" + accent: "teal" + hue: 264 + pair: null + contrast: + fg: 59.5 + black: 0 + red: 48.3 + green: 88.4 + yellow: 99.6 + blue: 54.4 + magenta: 60.8 + cyan: 87.8 + white: 38.5 + brightBlack: 40.1 + brightRed: 48.3 + brightGreen: 88.4 + brightYellow: 99.6 + brightBlue: 54.4 + brightMagenta: 60.8 + brightCyan: 87.8 + brightWhite: 38.5 diff --git a/themes/electron-vue--electron-vue.yaml b/themes/electron-vue--electron-vue.yaml new file mode 100644 index 00000000..3147adbb --- /dev/null +++ b/themes/electron-vue--electron-vue.yaml @@ -0,0 +1,53 @@ +name: "Electron vue (Electron vue)" +source: + marketplace_id: "icao.electron-vue" + version: "3.2.0" + installs: 49032 + rating: 4.77 + ratings: 13 + author: "icao" + repo: "https://github.com/icao/electron-vue" + url: "https://marketplace.visualstudio.com/items?itemName=icao.electron-vue" + formats: null +colors: + bg: "#1B202C" + fg: "#BAC7E4" + black: "#1B202C" + red: "#FF4579" + green: "#6AF699" + yellow: "#FFFA9E" + blue: "#37C886" + magenta: "#C792EA" + cyan: "#00D9FF" + white: "#F8FAFD" + brightBlack: "#7992B4" + brightRed: "#FF4579" + brightGreen: "#6AF699" + brightYellow: "#FFFA9E" + brightBlue: "#37C886" + brightMagenta: "#C792EA" + brightCyan: "#00D9FF" + brightWhite: "#F8FAFD" +meta: + mode: "dark" + accent: "red" + hue: 267 + pair: null + contrast: + fg: 70.4 + black: 0 + red: 40.7 + green: 83.4 + yellow: 99.8 + blue: 58.3 + magenta: 52.6 + cyan: 71.1 + white: 102.3 + brightBlack: 40.5 + brightRed: 40.7 + brightGreen: 83.4 + brightYellow: 99.8 + brightBlue: 58.3 + brightMagenta: 52.6 + brightCyan: 71.1 + brightWhite: 102.3 diff --git a/themes/elementary-theme.yaml b/themes/elementary-theme.yaml new file mode 100644 index 00000000..d2aa0cbd --- /dev/null +++ b/themes/elementary-theme.yaml @@ -0,0 +1,53 @@ +name: "elementary Theme" +source: + marketplace_id: "electricduck.elementary-theme" + version: "1.51.2" + installs: 4188 + rating: 4 + ratings: 4 + author: "Ducky" + repo: "https://github.com/electricduck/vscode-elementary-theme" + url: "https://marketplace.visualstudio.com/items?itemName=electricduck.elementary-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#111111" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#EC0048" + cyan: "#2AA198" + white: "#94A3A5" + brightBlack: "#586E75" + brightRed: "#CB4B16" + brightGreen: "#9BDB4D" + brightYellow: "#D48E15" + brightBlue: "#3689E6" + brightMagenta: "#D33682" + brightCyan: "#2AA198" + brightWhite: "#EEEEEE" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.4 + black: 99 + red: 70.5 + green: 59 + yellow: 59.1 + blue: 63.9 + magenta: 68.4 + cyan: 58.3 + white: 51 + brightBlack: 76.8 + brightRed: 71 + brightGreen: 29 + brightYellow: 52.6 + brightBlue: 62.9 + brightMagenta: 70.3 + brightCyan: 58.3 + brightWhite: 7.6 diff --git a/themes/eliza-s-pride-themes--aromantic.yaml b/themes/eliza-s-pride-themes--aromantic.yaml new file mode 100644 index 00000000..84e95d43 --- /dev/null +++ b/themes/eliza-s-pride-themes--aromantic.yaml @@ -0,0 +1,53 @@ +name: "Eliza's Pride Themes (Aromantic)" +source: + marketplace_id: "ElizaMuss.elizas-pride-themes" + version: "1.0.2" + installs: 849 + rating: 0 + ratings: 0 + author: "Eliza Muss" + repo: "https://github.com/The-Gamer69/elizas-pride-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#4B4B4B" + red: "#CD3131" + green: "#3AA740" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#ABABAB" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 12.3 + red: 27.7 + green: 44.2 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 107.9 + brightBlack: 56.8 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/eliza-s-pride-themes--asexual.yaml b/themes/eliza-s-pride-themes--asexual.yaml new file mode 100644 index 00000000..2bf11270 --- /dev/null +++ b/themes/eliza-s-pride-themes--asexual.yaml @@ -0,0 +1,53 @@ +name: "Eliza's Pride Themes (Asexual)" +source: + marketplace_id: "ElizaMuss.elizas-pride-themes" + version: "1.0.2" + installs: 849 + rating: 0 + ratings: 0 + author: "Eliza Muss" + repo: "https://github.com/The-Gamer69/elizas-pride-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#4B4B4B" + red: "#CD3131" + green: "#33D057" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#660066" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#7F7F7F" + brightRed: "#F14C4C" + brightGreen: "#67FF8A" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#EC84FF" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 107.9 + black: 12.3 + red: 27.7 + green: 63.2 + yellow: 86.6 + blue: 28.4 + magenta: 0 + cyan: 48.6 + white: 107.9 + brightBlack: 34.3 + brightRed: 39.6 + brightGreen: 89.7 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 58.1 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/eliza-s-pride-themes--lesbian.yaml b/themes/eliza-s-pride-themes--lesbian.yaml new file mode 100644 index 00000000..5e3930f7 --- /dev/null +++ b/themes/eliza-s-pride-themes--lesbian.yaml @@ -0,0 +1,53 @@ +name: "Eliza's Pride Themes (Lesbian)" +source: + marketplace_id: "ElizaMuss.elizas-pride-themes" + version: "1.0.2" + installs: 849 + rating: 0 + ratings: 0 + author: "Eliza Muss" + repo: "https://github.com/The-Gamer69/elizas-pride-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#868686" + red: "#D62900" + green: "#33D057" + yellow: "#E1C542" + blue: "#469DF1" + magenta: "#A50062" + cyan: "#39CDE2" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#FF9B55" + brightGreen: "#23D18B" + brightYellow: "#FFE05B" + brightBlue: "#74BCFF" + brightMagenta: "#D462A6" + brightCyan: "#74F2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.9 + black: 37.6 + red: 28.8 + green: 63.2 + yellow: 72.2 + blue: 47.5 + magenta: 18.1 + cyan: 66.5 + white: 80.5 + brightBlack: 56.8 + brightRed: 61.9 + brightGreen: 64.5 + brightYellow: 88.7 + brightBlue: 63.2 + brightMagenta: 40.3 + brightCyan: 88.1 + brightWhite: 107.9 diff --git a/themes/eliza-s-pride-themes--nebularomantic.yaml b/themes/eliza-s-pride-themes--nebularomantic.yaml new file mode 100644 index 00000000..ef6fb979 --- /dev/null +++ b/themes/eliza-s-pride-themes--nebularomantic.yaml @@ -0,0 +1,53 @@ +name: "Eliza's Pride Themes (Nebularomantic)" +source: + marketplace_id: "ElizaMuss.elizas-pride-themes" + version: "1.0.2" + installs: 849 + rating: 0 + ratings: 0 + author: "Eliza Muss" + repo: "https://github.com/The-Gamer69/elizas-pride-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#868686" + red: "#FF5470" + green: "#33D057" + yellow: "#E1C542" + blue: "#469DF1" + magenta: "#E557F9" + cyan: "#305A7A" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#FF718A" + brightGreen: "#23D18B" + brightYellow: "#FFE05B" + brightBlue: "#74BCFF" + brightMagenta: "#EC84FF" + brightCyan: "#3E8DA6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 37.6 + red: 44.8 + green: 63.2 + yellow: 72.2 + blue: 47.5 + magenta: 46.4 + cyan: 16.7 + white: 80.5 + brightBlack: 56.8 + brightRed: 51.3 + brightGreen: 64.5 + brightYellow: 88.7 + brightBlue: 63.2 + brightMagenta: 58.1 + brightCyan: 36.6 + brightWhite: 107.9 diff --git a/themes/eliza-s-pride-themes--omnisexual.yaml b/themes/eliza-s-pride-themes--omnisexual.yaml new file mode 100644 index 00000000..65ef2638 --- /dev/null +++ b/themes/eliza-s-pride-themes--omnisexual.yaml @@ -0,0 +1,53 @@ +name: "Eliza's Pride Themes (Omnisexual)" +source: + marketplace_id: "ElizaMuss.elizas-pride-themes" + version: "1.0.2" + installs: 849 + rating: 0 + ratings: 0 + author: "Eliza Muss" + repo: "https://github.com/The-Gamer69/elizas-pride-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#868686" + red: "#FF5470" + green: "#33D057" + yellow: "#E1C542" + blue: "#665EFF" + magenta: "#FF53BE" + cyan: "#8CA6FF" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#FF718A" + brightGreen: "#23D18B" + brightYellow: "#FFE05B" + brightBlue: "#ABA7FF" + brightMagenta: "#FFA1DB" + brightCyan: "#C0CEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 107.9 + black: 37.6 + red: 44.8 + green: 63.2 + yellow: 72.2 + blue: 30.6 + magenta: 47.6 + cyan: 56.2 + white: 80.5 + brightBlack: 56.8 + brightRed: 51.3 + brightGreen: 64.5 + brightYellow: 88.7 + brightBlue: 59.7 + brightMagenta: 68.1 + brightCyan: 77.7 + brightWhite: 107.9 diff --git a/themes/eliza-s-pride-themes--progress.yaml b/themes/eliza-s-pride-themes--progress.yaml new file mode 100644 index 00000000..9ee9aecc --- /dev/null +++ b/themes/eliza-s-pride-themes--progress.yaml @@ -0,0 +1,53 @@ +name: "Eliza's Pride Themes (Progress)" +source: + marketplace_id: "ElizaMuss.elizas-pride-themes" + version: "1.0.2" + installs: 849 + rating: 0 + ratings: 0 + author: "Eliza Muss" + repo: "https://github.com/The-Gamer69/elizas-pride-themes" + url: "https://marketplace.visualstudio.com/items?itemName=ElizaMuss.elizas-pride-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#868686" + red: "#BE1A21" + green: "#06BF00" + yellow: "#FDD817" + blue: "#2472C8" + magenta: "#6D2480" + cyan: "#68B4CB" + white: "#E5E5E5" + brightBlack: "#ABABAB" + brightRed: "#E2212A" + brightGreen: "#06BF00" + brightYellow: "#E3FF00" + brightBlue: "#0077E8" + brightMagenta: "#D945FF" + brightCyan: "#83E3FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 37.6 + red: 22.6 + green: 54.1 + yellow: 84.4 + blue: 28.4 + magenta: 11.2 + cyan: 56.1 + white: 91 + brightBlack: 56.8 + brightRed: 31.2 + brightGreen: 54.1 + brightYellow: 98.9 + brightBlue: 32.2 + brightMagenta: 41.9 + brightCyan: 81.7 + brightWhite: 91 diff --git a/themes/elypink-theme--elypink-dark.yaml b/themes/elypink-theme--elypink-dark.yaml new file mode 100644 index 00000000..7ac8b053 --- /dev/null +++ b/themes/elypink-theme--elypink-dark.yaml @@ -0,0 +1,53 @@ +name: "Elypink Theme (Elypink Dark)" +source: + marketplace_id: "barineco.elypink-theme" + version: "0.6.0" + installs: 39 + rating: 5 + ratings: 2 + author: "barineco" + repo: "https://github.com/barineco/elypink-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" + formats: null +colors: + bg: "#302A2D" + fg: "#C698B6" + black: "#2D2D2D" + red: "#FF56AB" + green: "#00DD00" + yellow: "#F5C400" + blue: "#00BFFF" + magenta: "#F574FF" + cyan: "#00EFEF" + white: "#F8F8F8" + brightBlack: "#ECECEC" + brightRed: "#FF6AB5" + brightGreen: "#57FF57" + brightYellow: "#FEDB4E" + brightBlue: "#56D5FF" + brightMagenta: "#F788FF" + brightCyan: "#5DFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 346 + pair: null + contrast: + fg: 49.7 + black: 0 + red: 43 + green: 64.6 + yellow: 70.5 + blue: 57.2 + magenta: 51.6 + cyan: 79 + white: 99.1 + brightBlack: 91.3 + brightRed: 47.2 + brightGreen: 84.1 + brightYellow: 82 + brightBlue: 68.6 + brightMagenta: 57 + brightCyan: 89.5 + brightWhite: 103.7 diff --git a/themes/elypink-theme--elypink-light.yaml b/themes/elypink-theme--elypink-light.yaml new file mode 100644 index 00000000..77472f4e --- /dev/null +++ b/themes/elypink-theme--elypink-light.yaml @@ -0,0 +1,53 @@ +name: "Elypink Theme (Elypink Light)" +source: + marketplace_id: "barineco.elypink-theme" + version: "0.6.0" + installs: 39 + rating: 5 + ratings: 2 + author: "barineco" + repo: "https://github.com/barineco/elypink-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" + formats: null +colors: + bg: "#F9EEF3" + fg: "#876D7E" + black: "#2D2D2D" + red: "#FF72B9" + green: "#00DD00" + yellow: "#F5C400" + blue: "#00BFFF" + magenta: "#F78BFF" + cyan: "#00EFEF" + white: "#F8F8F8" + brightBlack: "#ECECEC" + brightRed: "#FF83C1" + brightGreen: "#73FF73" + brightYellow: "#FEE16B" + brightBlue: "#72DCFF" + brightMagenta: "#F89CFF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 63.8 + black: 91.9 + red: 40.2 + green: 25.4 + yellow: 19.8 + blue: 32.4 + magenta: 31.8 + cyan: 11.8 + white: 0 + brightBlack: 0 + brightRed: 35.8 + brightGreen: 0 + brightYellow: 0 + brightBlue: 17.2 + brightMagenta: 26.8 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/elypink-theme-elypink-dark-faded.yaml b/themes/elypink-theme-elypink-dark-faded.yaml new file mode 100644 index 00000000..00ee54d2 --- /dev/null +++ b/themes/elypink-theme-elypink-dark-faded.yaml @@ -0,0 +1,53 @@ +name: "Elypink Theme (Elypink Dark (Faded))" +source: + marketplace_id: "barineco.elypink-theme" + version: "0.6.0" + installs: 39 + rating: 5 + ratings: 2 + author: "barineco" + repo: "https://github.com/barineco/elypink-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" + formats: null +colors: + bg: "#2A2D30" + fg: "#98A8C6" + black: "#2D2D2D" + red: "#FF56AB" + green: "#00DD00" + yellow: "#F5C400" + blue: "#00BFFF" + magenta: "#F574FF" + cyan: "#00EFEF" + white: "#F8F8F8" + brightBlack: "#ECECEC" + brightRed: "#FF6AB5" + brightGreen: "#57FF57" + brightYellow: "#FEDB4E" + brightBlue: "#56D5FF" + brightMagenta: "#F788FF" + brightCyan: "#5DFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: "Elypink Theme (Elypink Light (Faded))" + contrast: + fg: 50.4 + black: 0 + red: 42.8 + green: 64.4 + yellow: 70.3 + blue: 57 + magenta: 51.4 + cyan: 78.8 + white: 98.9 + brightBlack: 91.1 + brightRed: 47 + brightGreen: 83.8 + brightYellow: 81.8 + brightBlue: 68.4 + brightMagenta: 56.8 + brightCyan: 89.3 + brightWhite: 103.5 diff --git a/themes/elypink-theme-elypink-light-diamond.yaml b/themes/elypink-theme-elypink-light-diamond.yaml new file mode 100644 index 00000000..05256209 --- /dev/null +++ b/themes/elypink-theme-elypink-light-diamond.yaml @@ -0,0 +1,53 @@ +name: "Elypink Theme (Elypink Light (Diamond))" +source: + marketplace_id: "barineco.elypink-theme" + version: "0.6.0" + installs: 39 + rating: 5 + ratings: 2 + author: "barineco" + repo: "https://github.com/barineco/elypink-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" + formats: null +colors: + bg: "#F9F3F8" + fg: "#8F8DB0" + black: "#2D2D2D" + red: "#FF72B9" + green: "#00DD00" + yellow: "#F5C400" + blue: "#00BFFF" + magenta: "#F78BFF" + cyan: "#00EFEF" + white: "#F8F8F8" + brightBlack: "#ECECEC" + brightRed: "#FF83C1" + brightGreen: "#73FF73" + brightYellow: "#FEE16B" + brightBlue: "#72DCFF" + brightMagenta: "#F89CFF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 52.8 + black: 94.2 + red: 42.5 + green: 27.7 + yellow: 22.1 + blue: 34.7 + magenta: 34.1 + cyan: 14.1 + white: 0 + brightBlack: 0 + brightRed: 38.1 + brightGreen: 7.8 + brightYellow: 8.4 + brightBlue: 19.5 + brightMagenta: 29.1 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/elypink-theme-elypink-light-faded.yaml b/themes/elypink-theme-elypink-light-faded.yaml new file mode 100644 index 00000000..f8c0ffa9 --- /dev/null +++ b/themes/elypink-theme-elypink-light-faded.yaml @@ -0,0 +1,53 @@ +name: "Elypink Theme (Elypink Light (Faded))" +source: + marketplace_id: "barineco.elypink-theme" + version: "0.6.0" + installs: 39 + rating: 5 + ratings: 2 + author: "barineco" + repo: "https://github.com/barineco/elypink-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" + formats: null +colors: + bg: "#EEF4F9" + fg: "#6D7687" + black: "#2D2D2D" + red: "#FF72B9" + green: "#00DD00" + yellow: "#F5C400" + blue: "#00BFFF" + magenta: "#F78BFF" + cyan: "#00EFEF" + white: "#F8F8F8" + brightBlack: "#ECECEC" + brightRed: "#FF83C1" + brightGreen: "#73FF73" + brightYellow: "#FEE16B" + brightBlue: "#72DCFF" + brightMagenta: "#F89CFF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + pair: "Elypink Theme (Elypink Dark (Faded))" + contrast: + fg: 64.7 + black: 93.3 + red: 41.6 + green: 26.8 + yellow: 21.2 + blue: 33.8 + magenta: 33.2 + cyan: 13.2 + white: 0 + brightBlack: 0 + brightRed: 37.1 + brightGreen: 0 + brightYellow: 7.5 + brightBlue: 18.6 + brightMagenta: 28.2 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/elypink-theme-elypink-light-spring.yaml b/themes/elypink-theme-elypink-light-spring.yaml new file mode 100644 index 00000000..08a4049d --- /dev/null +++ b/themes/elypink-theme-elypink-light-spring.yaml @@ -0,0 +1,53 @@ +name: "Elypink Theme (Elypink Light (Spring))" +source: + marketplace_id: "barineco.elypink-theme" + version: "0.6.0" + installs: 39 + rating: 5 + ratings: 2 + author: "barineco" + repo: "https://github.com/barineco/elypink-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" + formats: null +colors: + bg: "#FAEEF3" + fg: "#936B7D" + black: "#2D2D2D" + red: "#FF72B9" + green: "#00DD00" + yellow: "#F5C400" + blue: "#00BFFF" + magenta: "#F78BFF" + cyan: "#00EFEF" + white: "#F8F8F8" + brightBlack: "#ECECEC" + brightRed: "#FF83C1" + brightGreen: "#73FF73" + brightYellow: "#FEE16B" + brightBlue: "#72DCFF" + brightMagenta: "#F89CFF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 63 + black: 92 + red: 40.3 + green: 25.5 + yellow: 19.9 + blue: 32.5 + magenta: 31.9 + cyan: 11.9 + white: 0 + brightBlack: 0 + brightRed: 35.9 + brightGreen: 0 + brightYellow: 0 + brightBlue: 17.4 + brightMagenta: 27 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/elypink-theme-elypink-light-summer.yaml b/themes/elypink-theme-elypink-light-summer.yaml new file mode 100644 index 00000000..ef04855b --- /dev/null +++ b/themes/elypink-theme-elypink-light-summer.yaml @@ -0,0 +1,53 @@ +name: "Elypink Theme (Elypink Light (Summer))" +source: + marketplace_id: "barineco.elypink-theme" + version: "0.6.0" + installs: 39 + rating: 5 + ratings: 2 + author: "barineco" + repo: "https://github.com/barineco/elypink-theme-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=barineco.elypink-theme" + formats: null +colors: + bg: "#F8EEF7" + fg: "#7A6BA4" + black: "#2D2D2D" + red: "#FF72B9" + green: "#00DD00" + yellow: "#F5C400" + blue: "#00BFFF" + magenta: "#F78BFF" + cyan: "#00EFEF" + white: "#F8F8F8" + brightBlack: "#ECECEC" + brightRed: "#FF83C1" + brightGreen: "#73FF73" + brightYellow: "#FEE16B" + brightBlue: "#72DCFF" + brightMagenta: "#F89CFF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 64.2 + black: 91.9 + red: 40.2 + green: 25.4 + yellow: 19.8 + blue: 32.4 + magenta: 31.9 + cyan: 11.8 + white: 0 + brightBlack: 0 + brightRed: 35.8 + brightGreen: 0 + brightYellow: 0 + brightBlue: 17.3 + brightMagenta: 26.9 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/emberstone-theme.yaml b/themes/emberstone-theme.yaml new file mode 100644 index 00000000..0f8486f6 --- /dev/null +++ b/themes/emberstone-theme.yaml @@ -0,0 +1,53 @@ +name: "Emberstone Theme" +source: + marketplace_id: "dfmknz.emberstone-theme-vscode" + version: "0.1.1" + installs: 66 + rating: 0 + ratings: 0 + author: "dfmknz" + repo: "https://github.com/dfmknz/emberstone-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dfmknz.emberstone-theme-vscode" + formats: null +colors: + bg: "#28353E" + fg: "#FFD37C" + black: "#28353E" + red: "#BE8967" + green: "#FFD37C" + yellow: "#F8D079" + blue: "#FFD37C" + magenta: "#BFCDCD" + cyan: "#FFFFFF" + white: "#FFD37C" + brightBlack: "#FFD37C" + brightRed: "#BE8967" + brightGreen: "#FFFFFF" + brightYellow: "#F8D079" + brightBlue: "#FFFFFF" + brightMagenta: "#BFCDCD" + brightCyan: "#FFD37C" + brightWhite: "#FFD37C" +meta: + mode: "dark" + accent: "yellow" + hue: 239 + pair: null + contrast: + fg: 77.6 + black: 0 + red: 39 + green: 77.6 + yellow: 75.2 + blue: 77.6 + magenta: 68.6 + cyan: 101.9 + white: 77.6 + brightBlack: 77.6 + brightRed: 39 + brightGreen: 101.9 + brightYellow: 75.2 + brightBlue: 101.9 + brightMagenta: 68.6 + brightCyan: 77.6 + brightWhite: 77.6 diff --git a/themes/emerald-kc.yaml b/themes/emerald-kc.yaml new file mode 100644 index 00000000..1c8b8466 --- /dev/null +++ b/themes/emerald-kc.yaml @@ -0,0 +1,53 @@ +name: "emerald-kc" +source: + marketplace_id: "KelsonCarvalho.emerald-kc" + version: "2.0.0" + installs: 291 + rating: 0 + ratings: 0 + author: "Kelson Carvalho" + repo: "https://github.com/NoslekCode/emeralds_Theme_VsCode" + url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.emerald-kc" + formats: null +colors: + bg: "#212124" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.2 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.1 + magenta: 28.5 + cyan: 46.3 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.3 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/emerald-sky.yaml b/themes/emerald-sky.yaml new file mode 100644 index 00000000..2d72a831 --- /dev/null +++ b/themes/emerald-sky.yaml @@ -0,0 +1,53 @@ +name: "Emerald Sky" +source: + marketplace_id: "willasm.emerald-sky" + version: "1.0.6" + installs: 710 + rating: 5 + ratings: 1 + author: "willasm" + repo: "https://github.com/willasm/emerald-sky" + url: "https://marketplace.visualstudio.com/items?itemName=willasm.emerald-sky" + formats: null +colors: + bg: "#05100A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 161 + pair: null + contrast: + fg: 80.2 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/end.yaml b/themes/end.yaml new file mode 100644 index 00000000..197f5537 --- /dev/null +++ b/themes/end.yaml @@ -0,0 +1,53 @@ +name: "End" +source: + marketplace_id: "hzao.theme-end" + version: "0.3.0" + installs: 3164 + rating: 5 + ratings: 2 + author: "hzao" + repo: "https://github.com/hezeao/theme-end" + url: "https://marketplace.visualstudio.com/items?itemName=hzao.theme-end" + formats: null +colors: + bg: "#161616" + fg: "#F8EEFF" + black: "#161616" + red: "#FF1155" + green: "#AADD00" + yellow: "#EEEEAA" + blue: "#00DDFF" + magenta: "#E55FFF" + cyan: "#00CCBB" + white: "#D8CFDE" + brightBlack: "#363537" + brightRed: "#EE7722" + brightGreen: "#00CCBB" + brightYellow: "#EEEEAA" + brightBlue: "#00DDFF" + brightMagenta: "#E55FFF" + brightCyan: "#00CCBB" + brightWhite: "#F8EEFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.1 + black: 0 + red: 37.4 + green: 75 + yellow: 93.3 + blue: 74.2 + magenta: 47.4 + cyan: 62.7 + white: 78.4 + brightBlack: 0 + brightRed: 46.5 + brightGreen: 62.7 + brightYellow: 93.3 + brightBlue: 74.2 + brightMagenta: 47.4 + brightCyan: 62.7 + brightWhite: 98.1 diff --git a/themes/enhanced-canvas-theme.yaml b/themes/enhanced-canvas-theme.yaml new file mode 100644 index 00000000..e99272ff --- /dev/null +++ b/themes/enhanced-canvas-theme.yaml @@ -0,0 +1,53 @@ +name: "Enhanced Canvas Theme" +source: + marketplace_id: "NicolasMendes.enhanced-canvas-theme" + version: "2.2.2" + installs: 1553 + rating: 5 + ratings: 3 + author: "Nicolas Mendes" + repo: "https://github.com/DreamDevourer/Enhanced-HubSpot-VScode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=NicolasMendes.enhanced-canvas-theme" + formats: null +colors: + bg: "#2D3E50" + fg: "#FCFCFC" + black: "#191A4F" + red: "#F2547D" + green: "#00BDA5" + yellow: "#FF7A59" + blue: "#3794FF" + magenta: "#6A78D1" + cyan: "#11A8CD" + white: "#FCFCFC" + brightBlack: "#9F9F9F" + brightRed: "#F03264" + brightGreen: "#07DBC1" + brightYellow: "#F5C26B" + brightBlue: "#5CA5F9" + brightMagenta: "#929EE8" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: 250 + pair: null + contrast: + fg: 97.2 + black: 0 + red: 33.5 + green: 47.1 + yellow: 43.6 + blue: 36 + magenta: 25.6 + cyan: 39.9 + white: 97.2 + brightBlack: 41.6 + brightRed: 28 + brightGreen: 62.4 + brightYellow: 65.9 + brightBlue: 43.4 + brightMagenta: 43.6 + brightCyan: 47.7 + brightWhite: 82.3 diff --git a/themes/enki--enki-night-owl.yaml b/themes/enki--enki-night-owl.yaml new file mode 100644 index 00000000..045f3b59 --- /dev/null +++ b/themes/enki--enki-night-owl.yaml @@ -0,0 +1,54 @@ +name: "Enki (Enki Night Owl)" +source: + marketplace_id: "enkia.enki-vscode-theme" + version: "0.5.0" + installs: 12065 + rating: 4 + ratings: 4 + author: "enkia" + repo: "https://github.com/enkia/enki-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" + formats: + iterm2: "https://raw.githubusercontent.com/enkia/enki-vscode-theme/master/enki.itermcolors" +colors: + bg: "#011627" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ADDB67" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#AFBAD4" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#AFBAD4" +meta: + mode: "dark" + accent: "teal" + hue: 244 + pair: null + contrast: + fg: 85.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 75 + blue: 56 + magenta: 53.8 + cyan: 59.8 + white: 64.2 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 64.2 diff --git a/themes/enki--enki-rainbow.yaml b/themes/enki--enki-rainbow.yaml new file mode 100644 index 00000000..4a191c10 --- /dev/null +++ b/themes/enki--enki-rainbow.yaml @@ -0,0 +1,54 @@ +name: "Enki (Enki Rainbow)" +source: + marketplace_id: "enkia.enki-vscode-theme" + version: "0.5.0" + installs: 12065 + rating: 4 + ratings: 4 + author: "enkia" + repo: "https://github.com/enkia/enki-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" + formats: + iterm2: "https://raw.githubusercontent.com/enkia/enki-vscode-theme/master/enki.itermcolors" +colors: + bg: "#19191F" + fg: "#9699A8" + black: "#595D78" + red: "#C33C4A" + green: "#0F8976" + yellow: "#CA9B55" + blue: "#50B4E6" + magenta: "#6D3B66" + cyan: "#7ED6F9" + white: "#707386" + brightBlack: "#595D78" + brightRed: "#C33C4A" + brightGreen: "#0F8976" + brightYellow: "#CA9B55" + brightBlue: "#6582AF" + brightMagenta: "#9D599D" + brightCyan: "#7ED6F9" + brightWhite: "#707386" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 46.2 + black: 18.6 + red: 25.9 + green: 31 + yellow: 51.4 + blue: 55.1 + magenta: 11.9 + cyan: 73.7 + white: 27.9 + brightBlack: 18.6 + brightRed: 25.9 + brightGreen: 31 + brightYellow: 51.4 + brightBlue: 33.9 + brightMagenta: 27.2 + brightCyan: 73.7 + brightWhite: 27.9 diff --git a/themes/enki--enki-red.yaml b/themes/enki--enki-red.yaml new file mode 100644 index 00000000..424e9348 --- /dev/null +++ b/themes/enki--enki-red.yaml @@ -0,0 +1,54 @@ +name: "Enki (Enki Red)" +source: + marketplace_id: "enkia.enki-vscode-theme" + version: "0.5.0" + installs: 12065 + rating: 4 + ratings: 4 + author: "enkia" + repo: "https://github.com/enkia/enki-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" + formats: + iterm2: "https://raw.githubusercontent.com/enkia/enki-vscode-theme/master/enki.itermcolors" +colors: + bg: "#19191F" + fg: "#9699A8" + black: "#787C99" + red: "#C33C4A" + green: "#0F8976" + yellow: "#CE9C3D" + blue: "#50B4E6" + magenta: "#6D3B66" + cyan: "#7ED6F9" + white: "#707386" + brightBlack: "#787C99" + brightRed: "#C33C4A" + brightGreen: "#0F8976" + brightYellow: "#CE9C3D" + brightBlue: "#6582AF" + brightMagenta: "#9D599D" + brightCyan: "#7ED6F9" + brightWhite: "#707386" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 46.2 + black: 32.3 + red: 25.9 + green: 31 + yellow: 52 + blue: 55.1 + magenta: 11.9 + cyan: 73.7 + white: 27.9 + brightBlack: 32.3 + brightRed: 25.9 + brightGreen: 31 + brightYellow: 52 + brightBlue: 33.9 + brightMagenta: 27.2 + brightCyan: 73.7 + brightWhite: 27.9 diff --git a/themes/enki--enki.yaml b/themes/enki--enki.yaml new file mode 100644 index 00000000..4bc06b70 --- /dev/null +++ b/themes/enki--enki.yaml @@ -0,0 +1,54 @@ +name: "Enki (Enki)" +source: + marketplace_id: "enkia.enki-vscode-theme" + version: "0.5.0" + installs: 12065 + rating: 4 + ratings: 4 + author: "enkia" + repo: "https://github.com/enkia/enki-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=enkia.enki-vscode-theme" + formats: + iterm2: "https://raw.githubusercontent.com/enkia/enki-vscode-theme/master/enki.itermcolors" +colors: + bg: "#19191F" + fg: "#9699A8" + black: "#595D78" + red: "#C33C4A" + green: "#0F8976" + yellow: "#CE9C3D" + blue: "#50B4E6" + magenta: "#6D3B66" + cyan: "#7ED6F9" + white: "#707386" + brightBlack: "#595D78" + brightRed: "#C33C4A" + brightGreen: "#0F8976" + brightYellow: "#CE9C3D" + brightBlue: "#6582AF" + brightMagenta: "#9D599D" + brightCyan: "#7ED6F9" + brightWhite: "#707386" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 46.2 + black: 18.6 + red: 25.9 + green: 31 + yellow: 52 + blue: 55.1 + magenta: 11.9 + cyan: 73.7 + white: 27.9 + brightBlack: 18.6 + brightRed: 25.9 + brightGreen: 31 + brightYellow: 52 + brightBlue: 33.9 + brightMagenta: 27.2 + brightCyan: 73.7 + brightWhite: 27.9 diff --git a/themes/enough-with-the-palenight.yaml b/themes/enough-with-the-palenight.yaml new file mode 100644 index 00000000..9a2cbc5e --- /dev/null +++ b/themes/enough-with-the-palenight.yaml @@ -0,0 +1,53 @@ +name: "Enough with the Palenight" +source: + marketplace_id: "Lebster.enough-with-the-palenight" + version: "1.0.6" + installs: 7177 + rating: 0 + ratings: 0 + author: "Lebster" + repo: "https://github.com/LebsterFace/enough-with-the-palenight" + url: "https://marketplace.visualstudio.com/items?itemName=Lebster.enough-with-the-palenight" + formats: null +colors: + bg: "#292D3E" + fg: "#BFC7D5" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + pair: null + contrast: + fg: 67.7 + black: 0 + red: 40 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 40 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/erikwdevtheme.yaml b/themes/erikwdevtheme.yaml new file mode 100644 index 00000000..e9f22e6b --- /dev/null +++ b/themes/erikwdevtheme.yaml @@ -0,0 +1,53 @@ +name: "ErikWDevTheme" +source: + marketplace_id: "ErikWDev.erikwdevtheme" + version: "1.2.2" + installs: 152 + rating: 5 + ratings: 1 + author: "ErikWDev" + repo: "https://www.github.com/ErikWDev/ErikWDevTheme" + url: "https://marketplace.visualstudio.com/items?itemName=ErikWDev.erikwdevtheme" + formats: null +colors: + bg: "#20223A" + fg: "#CBCCC6" + black: "#1A1D34" + red: "#A577DE" + green: "#A6CC70" + yellow: "#E9B93F" + blue: "#6DCBFA" + magenta: "#BAFAF2" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#AA7CE3" + brightGreen: "#67C988" + brightYellow: "#EEBE44" + brightBlue: "#73D0FF" + brightMagenta: "#BFFFF7" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 279 + pair: null + contrast: + fg: 72.5 + black: 0 + red: 38.3 + green: 65.7 + yellow: 65.7 + blue: 66.2 + magenta: 93.8 + cyan: 76.1 + white: 69.9 + brightBlack: 21.1 + brightRed: 40.8 + brightGreen: 60 + brightYellow: 68.6 + brightBlue: 69.1 + brightMagenta: 97 + brightCyan: 79.1 + brightWhite: 105.1 diff --git a/themes/erin-s-theme.yaml b/themes/erin-s-theme.yaml new file mode 100644 index 00000000..8209d362 --- /dev/null +++ b/themes/erin-s-theme.yaml @@ -0,0 +1,53 @@ +name: "Erin's Theme" +source: + marketplace_id: "eritbh.eritbh-theme" + version: "1.2.6" + installs: 149 + rating: 0 + ratings: 0 + author: "eritbh" + repo: "https://github.com/eritbh/eritbh-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eritbh.eritbh-theme" + formats: null +colors: + bg: "#2D2D2D" + fg: "#EFE8E4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BAB5B2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#EFE8E4" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 89.3 + black: 0 + red: 23.3 + green: 49.6 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 58.4 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.6 + brightMagenta: 41.9 + brightCyan: 52 + brightWhite: 89.3 diff --git a/themes/escook-theme.yaml b/themes/escook-theme.yaml new file mode 100644 index 00000000..b3752615 --- /dev/null +++ b/themes/escook-theme.yaml @@ -0,0 +1,53 @@ +name: "escook-theme" +source: + marketplace_id: "liulongbin1314.escook-theme" + version: "0.0.7" + installs: 55326 + rating: 5 + ratings: 8 + author: "刘龙彬" + repo: "https://github.com/liulongbin1314/escook-theme" + url: "https://marketplace.visualstudio.com/items?itemName=liulongbin1314.escook-theme" + formats: null +colors: + bg: "#FAFAFA" + fg: "#27292F" + black: "#000000" + red: "#EA6C6D" + green: "#99BF4D" + yellow: "#ECA944" + blue: "#3199E1" + magenta: "#9E75C7" + cyan: "#46BA94" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#F2AE49" + brightBlue: "#399EE6" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 98.4 + black: 103 + red: 53.9 + green: 38.4 + yellow: 36.3 + blue: 54.6 + magenta: 60.5 + cyan: 44.2 + white: 27.1 + brightBlack: 74.9 + brightRed: 51.4 + brightGreen: 45.5 + brightYellow: 33.6 + brightBlue: 52.1 + brightMagenta: 58.2 + brightCyan: 41.6 + brightWhite: 21.5 diff --git a/themes/eternals.yaml b/themes/eternals.yaml new file mode 100644 index 00000000..c13626ba --- /dev/null +++ b/themes/eternals.yaml @@ -0,0 +1,53 @@ +name: "Eternals" +source: + marketplace_id: "SurajNarsale.eternals" + version: "0.0.4" + installs: 332 + rating: 4.5 + ratings: 2 + author: "Suraj Narsale" + repo: "https://github.com/surajnarsale/eternals-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SurajNarsale.eternals" + formats: null +colors: + bg: "#161B27" + fg: "#C2C2D1" + black: "#161B27" + red: "#EF5350" + green: "#22DA6E" + yellow: "#F6EB9D" + blue: "#F385FC" + magenta: "#00D1FF" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#F385FC" + brightMagenta: "#00D1FF" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 267 + pair: null + contrast: + fg: 69 + black: 0 + red: 38.8 + green: 66.8 + yellow: 92.1 + blue: 57.9 + magenta: 68 + cyan: 59.2 + white: 106.4 + brightBlack: 15.1 + brightRed: 38.8 + brightGreen: 66.8 + brightYellow: 93.2 + brightBlue: 57.9 + brightMagenta: 68 + brightCyan: 73.5 + brightWhite: 106.4 diff --git a/themes/ethereum-dark-theme--ethereum-dark-blue-theme.yaml b/themes/ethereum-dark-theme--ethereum-dark-blue-theme.yaml new file mode 100644 index 00000000..2d93e2a6 --- /dev/null +++ b/themes/ethereum-dark-theme--ethereum-dark-blue-theme.yaml @@ -0,0 +1,53 @@ +name: "Ethereum Dark Theme (Ethereum Dark Blue Theme)" +source: + marketplace_id: "karolk.ethereum-dark" + version: "1.8.15" + installs: 4740 + rating: 5 + ratings: 4 + author: "karolk" + repo: "https://github.com/karolkozer/one-dark-ethereum-theme" + url: "https://marketplace.visualstudio.com/items?itemName=karolk.ethereum-dark" + formats: null +colors: + bg: "#01162B" + fg: "#5F7398" + black: "#052442" + red: "#00E6D4" + green: "#8CA0C6" + yellow: "#5F7398" + blue: "#344A6B" + magenta: "#5F7398" + cyan: "#5F7398" + white: "#8CA0C6" + brightBlack: "#052442" + brightRed: "#00E6D4" + brightGreen: "#8CA0C6" + brightYellow: "#5F7398" + brightBlue: "#344A6B" + brightMagenta: "#5F7398" + brightCyan: "#5F7398" + brightWhite: "#8CA0C6" +meta: + mode: "dark" + accent: "teal" + hue: 249 + pair: null + contrast: + fg: 27.6 + black: 0 + red: 76.4 + green: 49.5 + yellow: 27.6 + blue: 10.8 + magenta: 27.6 + cyan: 27.6 + white: 49.5 + brightBlack: 0 + brightRed: 76.4 + brightGreen: 49.5 + brightYellow: 27.6 + brightBlue: 10.8 + brightMagenta: 27.6 + brightCyan: 27.6 + brightWhite: 49.5 diff --git a/themes/ethereum-dark-theme--ethereum-dark-grey-theme.yaml b/themes/ethereum-dark-theme--ethereum-dark-grey-theme.yaml new file mode 100644 index 00000000..bd31815c --- /dev/null +++ b/themes/ethereum-dark-theme--ethereum-dark-grey-theme.yaml @@ -0,0 +1,53 @@ +name: "Ethereum Dark Theme (Ethereum Dark Grey Theme)" +source: + marketplace_id: "karolk.ethereum-dark" + version: "1.8.15" + installs: 4740 + rating: 5 + ratings: 4 + author: "karolk" + repo: "https://github.com/karolkozer/one-dark-ethereum-theme" + url: "https://marketplace.visualstudio.com/items?itemName=karolk.ethereum-dark" + formats: null +colors: + bg: "#240530" + fg: "#B48CC0" + black: "#2A0B36" + red: "#00E6D4" + green: "#E7BDF3" + yellow: "#B48CC0" + blue: "#835E8F" + magenta: "#B48CC0" + cyan: "#B48CC0" + white: "#E7BDF3" + brightBlack: "#22072B" + brightRed: "#00E6D4" + brightGreen: "#E7BDF3" + brightYellow: "#B48CC0" + brightBlue: "#835E8F" + brightMagenta: "#B48CC0" + brightCyan: "#B48CC0" + brightWhite: "#E7BDF3" +meta: + mode: "dark" + accent: "teal" + hue: 315 + pair: null + contrast: + fg: 46.7 + black: 0 + red: 76.3 + green: 74.2 + yellow: 46.7 + blue: 24.4 + magenta: 46.7 + cyan: 46.7 + white: 74.2 + brightBlack: 0 + brightRed: 76.3 + brightGreen: 74.2 + brightYellow: 46.7 + brightBlue: 24.4 + brightMagenta: 46.7 + brightCyan: 46.7 + brightWhite: 74.2 diff --git a/themes/evangelion-unit-01-berserk-theme.yaml b/themes/evangelion-unit-01-berserk-theme.yaml new file mode 100644 index 00000000..fe470ff3 --- /dev/null +++ b/themes/evangelion-unit-01-berserk-theme.yaml @@ -0,0 +1,53 @@ +name: "evangelion unit-01 berserk theme" +source: + marketplace_id: "engr.eva-unit-01-berserk-theme" + version: "0.1.0" + installs: 592 + rating: 0 + ratings: 0 + author: "engr" + repo: "https://github.com/engrx0/eva-unit01-berserk-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=engr.eva-unit-01-berserk-theme" + formats: null +colors: + bg: "#1C182C" + fg: "#13FF1E" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#00FF00" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 292 + pair: null + contrast: + fg: 85.1 + black: 0 + red: 26.3 + green: 52.5 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 85 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 106.4 diff --git a/themes/evangelion-unit-eva-01-theme.yaml b/themes/evangelion-unit-eva-01-theme.yaml new file mode 100644 index 00000000..2f53ec4a --- /dev/null +++ b/themes/evangelion-unit-eva-01-theme.yaml @@ -0,0 +1,54 @@ +name: "Evangelion Unit EVA-01 Theme" +source: + marketplace_id: "kvx.evangelion-unit-eva-01-theme" + version: "0.1.2" + installs: 757 + rating: 0 + ratings: 0 + author: "kvx" + repo: "https://github.com/luqezr/eva-01-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=kvx.evangelion-unit-eva-01-theme" + formats: + sublime: "https://raw.githubusercontent.com/luqezr/eva-01-theme-vscode/main/eva-01-theme.tmTheme" +colors: + bg: "#1D1A2F" + fg: "#F5F5F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#6CB0FB" + magenta: "#734F9A" + cyan: "#11A8CD" + white: "#B6B6B6" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#965FD4" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 289 + pair: null + contrast: + fg: 99.6 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 55.8 + magenta: 18.8 + cyan: 46.9 + white: 61.2 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 30.6 + brightCyan: 54.7 + brightWhite: 106.2 diff --git a/themes/evascode-the-end-of-development.yaml b/themes/evascode-the-end-of-development.yaml new file mode 100644 index 00000000..99fc451c --- /dev/null +++ b/themes/evascode-the-end-of-development.yaml @@ -0,0 +1,53 @@ +name: "EVASCode: The End of Development" +source: + marketplace_id: "tecnomazov.evas-code" + version: "1.0.0" + installs: 1062 + rating: 5 + ratings: 1 + author: "TecnoMazov" + repo: "https://github.com/JuditKaramazov/TCA-EVASCode" + url: "https://marketplace.visualstudio.com/items?itemName=tecnomazov.evas-code" + formats: null +colors: + bg: "#FAF4ED" + fg: "#802B5B" + black: "#F2E9E1" + red: "#B4637A" + green: "#A877B1" + yellow: "#932224" + blue: "#C9221E" + magenta: "#907AA9" + cyan: "#372021" + white: "#802B5B" + brightBlack: "#797593" + brightRed: "#B4637A" + brightGreen: "#A877B1" + brightYellow: "#932224" + brightBlue: "#C9221E" + brightMagenta: "#907AA9" + brightCyan: "#372021" + brightWhite: "#802B5B" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83 + black: 0 + red: 62.5 + green: 56.7 + yellow: 81.6 + blue: 70.2 + magenta: 59.3 + cyan: 95.8 + white: 83 + brightBlack: 64.4 + brightRed: 62.5 + brightGreen: 56.7 + brightYellow: 81.6 + brightBlue: 70.2 + brightMagenta: 59.3 + brightCyan: 95.8 + brightWhite: 83 diff --git a/themes/everforest--everforest-dark.yaml b/themes/everforest--everforest-dark.yaml new file mode 100644 index 00000000..0bf01b37 --- /dev/null +++ b/themes/everforest--everforest-dark.yaml @@ -0,0 +1,53 @@ +name: "Everforest (Everforest Dark)" +source: + marketplace_id: "sainnhe.everforest" + version: "0.3.0" + installs: 123297 + rating: 5 + ratings: 21 + author: "sainnhe" + repo: "https://github.com/sainnhe/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.everforest" + formats: null +colors: + bg: "#2D353B" + fg: "#D3C6AA" + black: "#343F44" + red: "#E67E80" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#83C092" + white: "#D3C6AA" + brightBlack: "#859289" + brightRed: "#E67E80" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#7FBBB3" + brightMagenta: "#D699B6" + brightCyan: "#83C092" + brightWhite: "#D3C6AA" +meta: + mode: "dark" + accent: "orange" + hue: 240 + pair: null + contrast: + fg: 66.6 + black: 0 + red: 43.1 + green: 57.5 + yellow: 62.4 + blue: 53.4 + magenta: 50.5 + cyan: 54.7 + white: 66.6 + brightBlack: 35.9 + brightRed: 43.1 + brightGreen: 57.5 + brightYellow: 62.4 + brightBlue: 53.4 + brightMagenta: 50.5 + brightCyan: 54.7 + brightWhite: 66.6 diff --git a/themes/everforest--everforest-light.yaml b/themes/everforest--everforest-light.yaml new file mode 100644 index 00000000..aff4f6fb --- /dev/null +++ b/themes/everforest--everforest-light.yaml @@ -0,0 +1,53 @@ +name: "Everforest (Everforest Light)" +source: + marketplace_id: "sainnhe.everforest" + version: "0.3.0" + installs: 123297 + rating: 5 + ratings: 21 + author: "sainnhe" + repo: "https://github.com/sainnhe/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.everforest" + formats: null +colors: + bg: "#FDF6E3" + fg: "#5C6A72" + black: "#5C6A72" + red: "#F85552" + green: "#8DA101" + yellow: "#DFA000" + blue: "#3A94C5" + magenta: "#DF69BA" + cyan: "#35A77C" + white: "#939F91" + brightBlack: "#5C6A72" + brightRed: "#F85552" + brightGreen: "#8DA101" + brightYellow: "#DFA000" + brightBlue: "#3A94C5" + brightMagenta: "#DF69BA" + brightCyan: "#35A77C" + brightWhite: "#F4F0D9" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 72.7 + black: 72.7 + red: 53.8 + green: 49.9 + yellow: 39.6 + blue: 55.7 + magenta: 51.7 + cyan: 51.3 + white: 48.1 + brightBlack: 72.7 + brightRed: 53.8 + brightGreen: 49.9 + brightYellow: 39.6 + brightBlue: 55.7 + brightMagenta: 51.7 + brightCyan: 51.3 + brightWhite: 0 diff --git a/themes/everforest-moist--everforest-soft.yaml b/themes/everforest-moist--everforest-soft.yaml new file mode 100644 index 00000000..85b28632 --- /dev/null +++ b/themes/everforest-moist--everforest-soft.yaml @@ -0,0 +1,53 @@ +name: "everforest-moist (Everforest Soft)" +source: + marketplace_id: "MrMartian.everforest-moist" + version: "0.0.2" + installs: 4418 + rating: 5 + ratings: 1 + author: "MrMartian" + repo: "https://github.com/CraigglesO/everforest-moist-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MrMartian.everforest-moist" + formats: null +colors: + bg: "#2C3338" + fg: "#D3C6AA" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#DC7B7C" + brightGreen: "#DBBC7F" + brightYellow: "#A7C080" + brightBlue: "#83A598" + brightMagenta: "#D699B6" + brightCyan: "#9DB579" + brightWhite: "#D3C6AA" +meta: + mode: "dark" + accent: "orange" + hue: 239 + pair: null + contrast: + fg: 67.1 + black: 0 + red: 20.7 + green: 38.3 + yellow: 47.9 + blue: 27 + magenta: 27.1 + cyan: 37.3 + white: 42.6 + brightBlack: 31.8 + brightRed: 40.8 + brightGreen: 62.9 + brightYellow: 58 + brightBlue: 44 + brightMagenta: 51 + brightCyan: 52.1 + brightWhite: 67.1 diff --git a/themes/everforest-pro--everforest-pro-dark-cozy.yaml b/themes/everforest-pro--everforest-pro-dark-cozy.yaml new file mode 100644 index 00000000..adb14889 --- /dev/null +++ b/themes/everforest-pro--everforest-pro-dark-cozy.yaml @@ -0,0 +1,53 @@ +name: "Everforest Pro (Everforest Pro Dark Cozy)" +source: + marketplace_id: "AndreiLucaci.everforest-pro" + version: "2.0.0" + installs: 2523 + rating: 5 + ratings: 2 + author: "Andrei Lucaci" + repo: "https://github.com/AndreiLucaci/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" + formats: null +colors: + bg: "#333C43" + fg: "#D3C6AA" + black: "#3A464C" + red: "#E67E80" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#83C092" + white: "#D3C6AA" + brightBlack: "#859289" + brightRed: "#E67E80" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#7FBBB3" + brightMagenta: "#D699B6" + brightCyan: "#83C092" + brightWhite: "#D3C6AA" +meta: + mode: "dark" + accent: "orange" + hue: 241 + pair: "Everforest Pro (Everforest Pro Light Cozy)" + contrast: + fg: 64.6 + black: 0 + red: 41.1 + green: 55.5 + yellow: 60.4 + blue: 51.4 + magenta: 48.5 + cyan: 52.7 + white: 64.6 + brightBlack: 33.8 + brightRed: 41.1 + brightGreen: 55.5 + brightYellow: 60.4 + brightBlue: 51.4 + brightMagenta: 48.5 + brightCyan: 52.7 + brightWhite: 64.6 diff --git a/themes/everforest-pro--everforest-pro-dark-vibrant.yaml b/themes/everforest-pro--everforest-pro-dark-vibrant.yaml new file mode 100644 index 00000000..2d3d1a89 --- /dev/null +++ b/themes/everforest-pro--everforest-pro-dark-vibrant.yaml @@ -0,0 +1,53 @@ +name: "Everforest Pro (Everforest Pro Dark Vibrant)" +source: + marketplace_id: "AndreiLucaci.everforest-pro" + version: "2.0.0" + installs: 2523 + rating: 5 + ratings: 2 + author: "Andrei Lucaci" + repo: "https://github.com/AndreiLucaci/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" + formats: null +colors: + bg: "#272E33" + fg: "#D3C6AA" + black: "#2E383C" + red: "#E67E80" + green: "#A7C080" + yellow: "#DBBC7F" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#83C092" + white: "#D3C6AA" + brightBlack: "#859289" + brightRed: "#E67E80" + brightGreen: "#A7C080" + brightYellow: "#DBBC7F" + brightBlue: "#7FBBB3" + brightMagenta: "#D699B6" + brightCyan: "#83C092" + brightWhite: "#D3C6AA" +meta: + mode: "dark" + accent: "orange" + hue: 239 + pair: "Everforest Pro (Everforest Pro Light Vibrant)" + contrast: + fg: 68.3 + black: 0 + red: 44.7 + green: 59.2 + yellow: 64.1 + blue: 55.1 + magenta: 52.2 + cyan: 56.4 + white: 68.3 + brightBlack: 37.5 + brightRed: 44.7 + brightGreen: 59.2 + brightYellow: 64.1 + brightBlue: 55.1 + brightMagenta: 52.2 + brightCyan: 56.4 + brightWhite: 68.3 diff --git a/themes/everforest-pro--everforest-pro-light-cozy.yaml b/themes/everforest-pro--everforest-pro-light-cozy.yaml new file mode 100644 index 00000000..b376320c --- /dev/null +++ b/themes/everforest-pro--everforest-pro-light-cozy.yaml @@ -0,0 +1,53 @@ +name: "Everforest Pro (Everforest Pro Light Cozy)" +source: + marketplace_id: "AndreiLucaci.everforest-pro" + version: "2.0.0" + installs: 2523 + rating: 5 + ratings: 2 + author: "Andrei Lucaci" + repo: "https://github.com/AndreiLucaci/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" + formats: null +colors: + bg: "#F3EAD3" + fg: "#5C6A72" + black: "#5C6A72" + red: "#F85552" + green: "#8DA101" + yellow: "#DFA000" + blue: "#3A94C5" + magenta: "#DF69BA" + cyan: "#35A77C" + white: "#939F91" + brightBlack: "#5C6A72" + brightRed: "#F85552" + brightGreen: "#8DA101" + brightYellow: "#DFA000" + brightBlue: "#3A94C5" + brightMagenta: "#DF69BA" + brightCyan: "#35A77C" + brightWhite: "#EAE4CA" +meta: + mode: "light" + accent: "orange" + hue: 89 + pair: "Everforest Pro (Everforest Pro Dark Cozy)" + contrast: + fg: 65.7 + black: 65.7 + red: 46.8 + green: 43 + yellow: 32.7 + blue: 48.7 + magenta: 44.7 + cyan: 44.3 + white: 41.1 + brightBlack: 65.7 + brightRed: 46.8 + brightGreen: 43 + brightYellow: 32.7 + brightBlue: 48.7 + brightMagenta: 44.7 + brightCyan: 44.3 + brightWhite: 0 diff --git a/themes/everforest-pro--everforest-pro-light-vibrant.yaml b/themes/everforest-pro--everforest-pro-light-vibrant.yaml new file mode 100644 index 00000000..19ba3190 --- /dev/null +++ b/themes/everforest-pro--everforest-pro-light-vibrant.yaml @@ -0,0 +1,53 @@ +name: "Everforest Pro (Everforest Pro Light Vibrant)" +source: + marketplace_id: "AndreiLucaci.everforest-pro" + version: "2.0.0" + installs: 2523 + rating: 5 + ratings: 2 + author: "Andrei Lucaci" + repo: "https://github.com/AndreiLucaci/everforest-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndreiLucaci.everforest-pro" + formats: null +colors: + bg: "#FFFBEF" + fg: "#5C6A72" + black: "#5C6A72" + red: "#F85552" + green: "#8DA101" + yellow: "#DFA000" + blue: "#3A94C5" + magenta: "#DF69BA" + cyan: "#35A77C" + white: "#939F91" + brightBlack: "#5C6A72" + brightRed: "#F85552" + brightGreen: "#8DA101" + brightYellow: "#DFA000" + brightBlue: "#3A94C5" + brightMagenta: "#DF69BA" + brightCyan: "#35A77C" + brightWhite: "#F8F5E4" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Everforest Pro (Everforest Pro Dark Vibrant)" + contrast: + fg: 75.5 + black: 75.5 + red: 56.6 + green: 52.8 + yellow: 42.5 + blue: 58.5 + magenta: 54.5 + cyan: 54.1 + white: 50.9 + brightBlack: 75.5 + brightRed: 56.6 + brightGreen: 52.8 + brightYellow: 42.5 + brightBlue: 58.5 + brightMagenta: 54.5 + brightCyan: 54.1 + brightWhite: 0 diff --git a/themes/evergarden-theme.yaml b/themes/evergarden-theme.yaml new file mode 100644 index 00000000..23373258 --- /dev/null +++ b/themes/evergarden-theme.yaml @@ -0,0 +1,53 @@ +name: "Evergarden Theme" +source: + marketplace_id: "icarrera.evergarden-theme" + version: "1.3.0" + installs: 762 + rating: 0 + ratings: 0 + author: "Ignacio Carrera" + repo: "https://github.com/nachokb/vscode-evergarden-theme" + url: "https://marketplace.visualstudio.com/items?itemName=icarrera.evergarden-theme" + formats: null +colors: + bg: "#252B2E" + fg: "#D6CBB4" + black: "#232A2E" + red: "#F57F82" + green: "#B2D185" + yellow: "#F2C27F" + blue: "#95AEE1" + magenta: "#E680C8" + cyan: "#78D0CA" + white: "#A3B8BD" + brightBlack: "#44535A" + brightRed: "#FAA7A9" + brightGreen: "#CAE0A7" + brightYellow: "#F1D09E" + brightBlue: "#B5CCEC" + brightMagenta: "#F3C0E5" + brightCyan: "#9BE0D9" + brightWhite: "#E2E9EB" +meta: + mode: "dark" + accent: "pink" + hue: 229 + pair: null + contrast: + fg: 71.8 + black: 0 + red: 48.6 + green: 68.6 + yellow: 70.7 + blue: 54.4 + magenta: 48.8 + cyan: 65.6 + white: 58 + brightBlack: 10.6 + brightRed: 63.2 + brightGreen: 79.1 + brightYellow: 77.1 + brightBlue: 70.7 + brightMagenta: 73.7 + brightCyan: 76.3 + brightWhite: 88.9 diff --git a/themes/evergarden-winter--evergarden-winter-light.yaml b/themes/evergarden-winter--evergarden-winter-light.yaml new file mode 100644 index 00000000..72c7e7a6 --- /dev/null +++ b/themes/evergarden-winter--evergarden-winter-light.yaml @@ -0,0 +1,53 @@ +name: "Evergarden Winter (Evergarden Winter Light)" +source: + marketplace_id: "concatenateline.evergarden-winter-vscode" + version: "1.0.0" + installs: 40 + rating: 0 + ratings: 0 + author: "concatenateline" + repo: "https://github.com/ConcatenateLine/evergarden-winter-vscode-1.0.0" + url: "https://marketplace.visualstudio.com/items?itemName=concatenateline.evergarden-winter-vscode" + formats: null +colors: + bg: "#F8F7F3" + fg: "#3A2F27" + black: "#5A5047" + red: "#A63355" + green: "#1F5942" + yellow: "#B88800" + blue: "#234060" + magenta: "#C75080" + cyan: "#0D6565" + white: "#C8BFB8" + brightBlack: "#8A7F77" + brightRed: "#C74A70" + brightGreen: "#3D9080" + brightYellow: "#D8A000" + brightBlue: "#4A7A9D" + brightMagenta: "#D57093" + brightCyan: "#2D9090" + brightWhite: "#D8D0C8" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 94.4 + black: 82.5 + red: 76.5 + green: 83.3 + yellow: 54.1 + blue: 89.7 + magenta: 64.2 + cyan: 78.4 + white: 28.9 + brightBlack: 61.6 + brightRed: 65.8 + brightGreen: 60.7 + brightYellow: 41.2 + brightBlue: 67 + brightMagenta: 54 + brightCyan: 60.5 + brightWhite: 19.5 diff --git a/themes/evergarden-winter--evergarden-winter.yaml b/themes/evergarden-winter--evergarden-winter.yaml new file mode 100644 index 00000000..d0c5ba8e --- /dev/null +++ b/themes/evergarden-winter--evergarden-winter.yaml @@ -0,0 +1,53 @@ +name: "Evergarden Winter (Evergarden Winter)" +source: + marketplace_id: "concatenateline.evergarden-winter-vscode" + version: "1.0.0" + installs: 40 + rating: 0 + ratings: 0 + author: "concatenateline" + repo: "https://github.com/ConcatenateLine/evergarden-winter-vscode-1.0.0" + url: "https://marketplace.visualstudio.com/items?itemName=concatenateline.evergarden-winter-vscode" + formats: null +colors: + bg: "#0E1012" + fg: "#E2E3E4" + black: "#3D484D" + red: "#F5A8B8" + green: "#9AE8A8" + yellow: "#E8D090" + blue: "#A0C8F0" + magenta: "#DBBC7F" + cyan: "#B8F0E0" + white: "#E5DFC8" + brightBlack: "#5A6268" + brightRed: "#F5C8D0" + brightGreen: "#B8F0C8" + brightYellow: "#F0E0A0" + brightBlue: "#D0E8F8" + brightMagenta: "#F0D5E8" + brightCyan: "#D0F8F0" + brightWhite: "#F5F0E0" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 89.3 + black: 10.2 + red: 66.6 + green: 81.6 + yellow: 78.8 + blue: 70.5 + magenta: 68.1 + cyan: 90.3 + white: 86.7 + brightBlack: 20.5 + brightRed: 79.6 + brightGreen: 89.3 + brightYellow: 87.4 + brightBlue: 90.2 + brightMagenta: 85.3 + brightCyan: 97.4 + brightWhite: 97.6 diff --git a/themes/everything-monokai.yaml b/themes/everything-monokai.yaml new file mode 100644 index 00000000..33531207 --- /dev/null +++ b/themes/everything-monokai.yaml @@ -0,0 +1,53 @@ +name: "Everything Monokai" +source: + marketplace_id: "xckomorebi.everythingmonokai" + version: "0.1.1" + installs: 818 + rating: 0 + ratings: 0 + author: "xckomorebi" + repo: "https://github.com/xckomorebi/EverythingMonokai" + url: "https://marketplace.visualstudio.com/items?itemName=xckomorebi.everythingmonokai" + formats: null +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#454444" + red: "#ED5E7B" + green: "#99D798" + yellow: "#E2C264" + blue: "#52AED8" + magenta: "#E27DE2" + cyan: "#76B7BC" + white: "#C1C0C0" + brightBlack: "#666565" + brightRed: "#EA99AA" + brightGreen: "#B1D3B0" + brightYellow: "#E7E698" + brightBlue: "#80C7E7" + brightMagenta: "#EB9DEB" + brightCyan: "#A5E1E1" + brightWhite: "#E5E4E4" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 103.3 + black: 7.6 + red: 40.6 + green: 71 + yellow: 69.2 + blue: 50.9 + magenta: 50.3 + cyan: 55.3 + white: 66.5 + brightBlack: 20.4 + brightRed: 57.2 + brightGreen: 72.3 + brightYellow: 86.7 + brightBlue: 65.1 + brightMagenta: 61.8 + brightCyan: 79.5 + brightWhite: 88.3 diff --git a/themes/evro-dark--evro-dark.yaml b/themes/evro-dark--evro-dark.yaml new file mode 100644 index 00000000..e3d28d2f --- /dev/null +++ b/themes/evro-dark--evro-dark.yaml @@ -0,0 +1,53 @@ +name: "Evro Dark (Evro Dark)" +source: + marketplace_id: "EvroHQ.evro-dark" + version: "1.9.8" + installs: 3675 + rating: 5 + ratings: 5 + author: "EvroHQ" + repo: "https://github.com/evrohq/EvroDark" + url: "https://marketplace.visualstudio.com/items?itemName=EvroHQ.evro-dark" + formats: null +colors: + bg: "#191D22" + fg: "#ABB2BF" + black: "#151720" + red: "#E06C75" + green: "#76ECB7" + yellow: "#F5B187" + blue: "#86AAEC" + magenta: "#9D88D0" + cyan: "#93CEE9" + white: "#CBCED3" + brightBlack: "#1C1E27" + brightRed: "#DD6777" + brightGreen: "#76ECB7" + brightYellow: "#DBD594" + brightBlue: "#86AAEC" + brightMagenta: "#9D88D0" + brightCyan: "#93CEE9" + brightWhite: "#A5B6CF" +meta: + mode: "dark" + accent: "red" + hue: 254 + pair: null + contrast: + fg: 58.7 + black: 0 + red: 41.4 + green: 80.3 + yellow: 67 + blue: 54.3 + magenta: 42.7 + cyan: 70.3 + white: 75.1 + brightBlack: 0 + brightRed: 39.7 + brightGreen: 80.3 + brightYellow: 78 + brightBlue: 54.3 + brightMagenta: 42.7 + brightCyan: 70.3 + brightWhite: 60.4 diff --git a/themes/evro-dark--evro-darker-flat.yaml b/themes/evro-dark--evro-darker-flat.yaml new file mode 100644 index 00000000..e0c02047 --- /dev/null +++ b/themes/evro-dark--evro-darker-flat.yaml @@ -0,0 +1,53 @@ +name: "Evro Dark (Evro Darker Flat)" +source: + marketplace_id: "EvroHQ.evro-dark" + version: "1.9.8" + installs: 3675 + rating: 5 + ratings: 5 + author: "EvroHQ" + repo: "https://github.com/evrohq/EvroDark" + url: "https://marketplace.visualstudio.com/items?itemName=EvroHQ.evro-dark" + formats: null +colors: + bg: "#141417" + fg: "#ABB2BF" + black: "#151720" + red: "#E06C75" + green: "#76ECB7" + yellow: "#F5B187" + blue: "#86AAEC" + magenta: "#9D88D0" + cyan: "#93CEE9" + white: "#CBCED3" + brightBlack: "#1C1E27" + brightRed: "#DD6777" + brightGreen: "#76ECB7" + brightYellow: "#DBD594" + brightBlue: "#86AAEC" + brightMagenta: "#9D88D0" + brightCyan: "#93CEE9" + brightWhite: "#A5B6CF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 59.6 + black: 0 + red: 42.3 + green: 81.2 + yellow: 67.9 + blue: 55.2 + magenta: 43.6 + cyan: 71.2 + white: 76 + brightBlack: 0 + brightRed: 40.6 + brightGreen: 81.2 + brightYellow: 78.9 + brightBlue: 55.2 + brightMagenta: 43.6 + brightCyan: 71.2 + brightWhite: 61.4 diff --git a/themes/exa-theme-pack.yaml b/themes/exa-theme-pack.yaml new file mode 100644 index 00000000..25eb3c45 --- /dev/null +++ b/themes/exa-theme-pack.yaml @@ -0,0 +1,53 @@ +name: "Exa - Theme Pack" +source: + marketplace_id: "exastone.exa-theme" + version: "1.0.9" + installs: 518 + rating: 5 + ratings: 1 + author: "Andrew Stone" + repo: "https://github.com/exastone/exa-theme" + url: "https://marketplace.visualstudio.com/items?itemName=exastone.exa-theme" + formats: null +colors: + bg: "#0C1426" + fg: "#D8DEE9" + black: "#000000" + red: "#FDB0BA" + green: "#25BA58" + yellow: "#F4CC67" + blue: "#68A9FF" + magenta: "#FE97E1" + cyan: "#0D9480" + white: "#D4CCB9" + brightBlack: "#A1A1A1" + brightRed: "#FD788B" + brightGreen: "#B3EBAB" + brightYellow: "#FFCA14" + brightBlue: "#8CDAFF" + brightMagenta: "#F970CD" + brightCyan: "#A5FFFA" + brightWhite: "#D8DEE9" +meta: + mode: "dark" + accent: "pink" + hue: 265 + pair: null + contrast: + fg: 85.6 + black: 0 + red: 70.5 + green: 51.8 + yellow: 77.7 + blue: 53.9 + magenta: 64.2 + cyan: 36.1 + white: 75.1 + brightBlack: 50.6 + brightRed: 51.8 + brightGreen: 85 + brightYellow: 78 + brightBlue: 77.3 + brightMagenta: 51.8 + brightCyan: 96.8 + brightWhite: 85.6 diff --git a/themes/exovoid.yaml b/themes/exovoid.yaml new file mode 100644 index 00000000..516ce3e3 --- /dev/null +++ b/themes/exovoid.yaml @@ -0,0 +1,53 @@ +name: "ExoVoid" +source: + marketplace_id: "GinoPioLoco.exovoid" + version: "1.3.0" + installs: 50 + rating: 0 + ratings: 0 + author: "Gino Pio Loco" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GinoPioLoco.exovoid" + formats: null +colors: + bg: "#080707" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.8 + black: 0 + red: 27.7 + green: 53.9 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 91 diff --git a/themes/extreme-theme.yaml b/themes/extreme-theme.yaml new file mode 100644 index 00000000..1cd7225b --- /dev/null +++ b/themes/extreme-theme.yaml @@ -0,0 +1,53 @@ +name: "Extreme Theme" +source: + marketplace_id: "97a3a878637c6a75bd87a20a0d1a1d21.extreme-theme" + version: "0.0.1" + installs: 262 + rating: 0 + ratings: 0 + author: "Extreme" + repo: "https://github.com/MARomagna/Extreme-theme" + url: "https://marketplace.visualstudio.com/items?itemName=97a3a878637c6a75bd87a20a0d1a1d21.extreme-theme" + formats: null +colors: + bg: "#000000" + fg: "#00FF87" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 87.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/eye-care-themes--eye-care-owl-light.yaml b/themes/eye-care-themes--eye-care-owl-light.yaml new file mode 100644 index 00000000..04c9574f --- /dev/null +++ b/themes/eye-care-themes--eye-care-owl-light.yaml @@ -0,0 +1,53 @@ +name: "Eye Care Themes (Eye Care Owl Light)" +source: + marketplace_id: "lzwme.lzwme-eye-care" + version: "1.0.2" + installs: 11172 + rating: 3.67 + ratings: 3 + author: "lzwme" + repo: "https://github.com/lzwme/eye-care-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lzwme.lzwme-eye-care" + formats: null +colors: + bg: "#FBFBFB" + fg: "#403F53" + black: "#403F53" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2AA298" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.3 + black: 91.3 + red: 66.3 + green: 64.2 + yellow: 37 + blue: 60.1 + magenta: 65.3 + cyan: 55.5 + white: 0 + brightBlack: 91.3 + brightRed: 66.3 + brightGreen: 64.2 + brightYellow: 39.7 + brightBlue: 60.1 + brightMagenta: 65.3 + brightCyan: 55.5 + brightWhite: 0 diff --git a/themes/eye-care-themes--eye-care-owl.yaml b/themes/eye-care-themes--eye-care-owl.yaml new file mode 100644 index 00000000..523993c9 --- /dev/null +++ b/themes/eye-care-themes--eye-care-owl.yaml @@ -0,0 +1,53 @@ +name: "Eye Care Themes (eye-care-owl)" +source: + marketplace_id: "lzwme.lzwme-eye-care" + version: "1.0.2" + installs: 11172 + rating: 3.67 + ratings: 3 + author: "lzwme" + repo: "https://github.com/lzwme/eye-care-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lzwme.lzwme-eye-care" + formats: null +colors: + bg: "#011627" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ADDB67" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 244 + pair: null + contrast: + fg: 85.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 75 + blue: 56 + magenta: 53.8 + cyan: 59.8 + white: 107 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 107 diff --git a/themes/eye-comfort-themes--eye-comfort-light.yaml b/themes/eye-comfort-themes--eye-comfort-light.yaml new file mode 100644 index 00000000..37662dd3 --- /dev/null +++ b/themes/eye-comfort-themes--eye-comfort-light.yaml @@ -0,0 +1,53 @@ +name: "Eye Comfort Themes (Eye Comfort Light)" +source: + marketplace_id: "SaikatDas.eye-comfort-themes" + version: "1.0.1" + installs: 1301 + rating: 0 + ratings: 0 + author: "Saikat Das" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SaikatDas.eye-comfort-themes" + formats: null +colors: + bg: "#FAF8F5" + fg: "#4C4F69" + black: "#5C5F77" + red: "#D20515" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#EA76CB" + cyan: "#04A5E5" + white: "#BCC0CC" + brightBlack: "#6C6F85" + brightRed: "#D20515" + brightGreen: "#40A02B" + brightYellow: "#DF8E1D" + brightBlue: "#1E66F5" + brightMagenta: "#EA76CB" + brightCyan: "#04A5E5" + brightWhite: "#ACB0BE" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 83.6 + black: 77.1 + red: 71 + green: 56.4 + yellow: 46.6 + blue: 69.2 + magenta: 46.9 + cyan: 49.1 + white: 29.9 + brightBlack: 70.2 + brightRed: 71 + brightGreen: 56.4 + brightYellow: 46.6 + brightBlue: 69.2 + brightMagenta: 46.9 + brightCyan: 49.1 + brightWhite: 38.5 diff --git a/themes/eyeball-dark.yaml b/themes/eyeball-dark.yaml new file mode 100644 index 00000000..518b348c --- /dev/null +++ b/themes/eyeball-dark.yaml @@ -0,0 +1,53 @@ +name: "Eyeball Dark" +source: + marketplace_id: "vipinpal.eyeball-dark" + version: "0.0.4" + installs: 1 + rating: 0 + ratings: 0 + author: "vipinpal" + repo: "https://github.com/vipinpal70/Eyeball-Dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vipinpal.eyeball-dark" + formats: null +colors: + bg: "#1E1E1E" + fg: "#BECFDA" + black: "#28353E" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#AEC3D0" + brightBlack: "#475E6C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#BECFDA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 74.1 + black: 0 + red: 39.7 + green: 76.1 + yellow: 66.1 + blue: 51.1 + magenta: 44.8 + cyan: 69.7 + white: 66.7 + brightBlack: 16.6 + brightRed: 44.9 + brightGreen: 78.3 + brightYellow: 53 + brightBlue: 56.4 + brightMagenta: 57.2 + brightCyan: 73 + brightWhite: 74.1 diff --git a/themes/fa-theme.yaml b/themes/fa-theme.yaml new file mode 100644 index 00000000..9ae52c86 --- /dev/null +++ b/themes/fa-theme.yaml @@ -0,0 +1,53 @@ +name: "FA theme" +source: + marketplace_id: "Fabius.fa" + version: "0.0.3" + installs: 196 + rating: 1 + ratings: 1 + author: "Fabius" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Fabius.fa" + formats: null +colors: + bg: "#2D3436" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 217 + pair: null + contrast: + fg: 102.1 + black: 0 + red: 21.9 + green: 48.2 + yellow: 80.8 + blue: 22.6 + magenta: 25 + cyan: 42.8 + white: 85.2 + brightBlack: 17.2 + brightRed: 33.8 + brightGreen: 58.7 + brightYellow: 90.8 + brightBlue: 35.2 + brightMagenta: 40.6 + brightCyan: 50.6 + brightWhite: 85.2 diff --git a/themes/fae-color-theme.yaml b/themes/fae-color-theme.yaml new file mode 100644 index 00000000..d671b6da --- /dev/null +++ b/themes/fae-color-theme.yaml @@ -0,0 +1,53 @@ +name: "Fae Color Theme" +source: + marketplace_id: "suddenlyeva.fae-color-theme" + version: "0.0.3" + installs: 202 + rating: 0 + ratings: 0 + author: "suddenlyeva" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=suddenlyeva.fae-color-theme" + formats: null +colors: + bg: "#212121" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.2 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/fallout-dark--ultrafocus-fork-fork.yaml b/themes/fallout-dark--ultrafocus-fork-fork.yaml new file mode 100644 index 00000000..4df0072c --- /dev/null +++ b/themes/fallout-dark--ultrafocus-fork-fork.yaml @@ -0,0 +1,53 @@ +name: "Fallout-Dark (Ultrafocus - Fork - Fork)" +source: + marketplace_id: "valentinesamuel.fallout-dark" + version: "0.0.1" + installs: 2244 + rating: 0 + ratings: 0 + author: "valentine samuel" + repo: "https://github.com/valentinesamuel/themes" + url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" + formats: null +colors: + bg: "#000000" + fg: "#B2B2B2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#6F6F6F" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 60.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 27 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/fallout-dark--video-contrast.yaml b/themes/fallout-dark--video-contrast.yaml new file mode 100644 index 00000000..7bd28081 --- /dev/null +++ b/themes/fallout-dark--video-contrast.yaml @@ -0,0 +1,53 @@ +name: "Fallout-Dark (Video-Contrast)" +source: + marketplace_id: "valentinesamuel.fallout-dark" + version: "0.0.1" + installs: 2244 + rating: 0 + ratings: 0 + author: "valentine samuel" + repo: "https://github.com/valentinesamuel/themes" + url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#A51F1F" + green: "#1BBC0D" + yellow: "#FFFF00" + blue: "#2733E6" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C2C2C2" + brightBlack: "#2E2E2E" + brightRed: "#F14C4C" + brightGreen: "#27D94B" + brightYellow: "#FFFF3E" + brightBlue: "#0263CF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 17.7 + green: 52.8 + yellow: 102.7 + blue: 16.5 + magenta: 30.8 + cyan: 48.6 + white: 69.8 + brightBlack: 0 + brightRed: 39.6 + brightGreen: 67.3 + brightYellow: 102.9 + brightBlue: 24.1 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/fallout-dark--vs-code-deep-f-lux-fork-fork.yaml b/themes/fallout-dark--vs-code-deep-f-lux-fork-fork.yaml new file mode 100644 index 00000000..f040ca5e --- /dev/null +++ b/themes/fallout-dark--vs-code-deep-f-lux-fork-fork.yaml @@ -0,0 +1,53 @@ +name: "Fallout-Dark (VS Code Deep F.lux - Fork - Fork)" +source: + marketplace_id: "valentinesamuel.fallout-dark" + version: "0.0.1" + installs: 2244 + rating: 0 + ratings: 0 + author: "valentine samuel" + repo: "https://github.com/valentinesamuel/themes" + url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" + formats: null +colors: + bg: "#FFC85B" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#261C1C" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: 82 + pair: null + contrast: + fg: 79.1 + black: 79.1 + red: 47 + green: 22.3 + yellow: 31 + blue: 59.1 + magenta: 47.6 + cyan: 33.7 + white: 76.6 + brightBlack: 51.8 + brightRed: 47 + brightGreen: 14 + brightYellow: 14 + brightBlue: 59.1 + brightMagenta: 47.6 + brightCyan: 33.7 + brightWhite: 27.9 diff --git a/themes/fallout-dark-architect-dark-fork.yaml b/themes/fallout-dark-architect-dark-fork.yaml new file mode 100644 index 00000000..ab29f799 --- /dev/null +++ b/themes/fallout-dark-architect-dark-fork.yaml @@ -0,0 +1,53 @@ +name: "Fallout-Dark (Architect (dark) - Fork)" +source: + marketplace_id: "valentinesamuel.fallout-dark" + version: "0.0.1" + installs: 2244 + rating: 0 + ratings: 0 + author: "valentine samuel" + repo: "https://github.com/valentinesamuel/themes" + url: "https://marketplace.visualstudio.com/items?itemName=valentinesamuel.fallout-dark" + formats: null +colors: + bg: "#040404" + fg: "#FDFE02" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FDF1AE" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#D9D9D9" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.5 + white: 97.8 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 83.5 diff --git a/themes/familiar-java-themes.yaml b/themes/familiar-java-themes.yaml new file mode 100644 index 00000000..fb0adb45 --- /dev/null +++ b/themes/familiar-java-themes.yaml @@ -0,0 +1,53 @@ +name: "Familiar Java Themes" +source: + marketplace_id: "zerodind.familiar-java-themes" + version: "0.1.7" + installs: 58681 + rating: 5 + ratings: 13 + author: "0dinD" + repo: "https://gitlab.com/zerodind/familiar-java-themes" + url: "https://marketplace.visualstudio.com/items?itemName=zerodind.familiar-java-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD0000" + green: "#00CD00" + yellow: "#C4A000" + blue: "#0000EE" + magenta: "#CD00CD" + cyan: "#00CCCC" + white: "#AAAAAA" + brightBlack: "#555555" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#EAEA00" + brightBlue: "#5C5CFF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 76.3 + green: 41.4 + yellow: 49 + blue: 88.1 + magenta: 70 + cyan: 38 + white: 45.8 + brightBlack: 85.9 + brightRed: 64.1 + brightGreen: 17.1 + brightYellow: 14.2 + brightBlue: 72.3 + brightMagenta: 55.6 + brightCyan: 11.8 + brightWhite: 0 diff --git a/themes/faustvi00.yaml b/themes/faustvi00.yaml new file mode 100644 index 00000000..4b537aa7 --- /dev/null +++ b/themes/faustvi00.yaml @@ -0,0 +1,53 @@ +name: "FaustVI00" +source: + marketplace_id: "FaustVI00.FaustVI00" + version: "0.0.1" + installs: 79 + rating: 5 + ratings: 1 + author: "FaustVI00" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=FaustVI00.FaustVI00" + formats: null +colors: + bg: "#282E44" + fg: "#FFFADF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 272 + pair: null + contrast: + fg: 99.2 + black: 0 + red: 22.8 + green: 49.1 + yellow: 81.7 + blue: 23.5 + magenta: 25.9 + cyan: 43.7 + white: 86.1 + brightBlack: 18.2 + brightRed: 34.7 + brightGreen: 59.7 + brightYellow: 91.8 + brightBlue: 36.1 + brightMagenta: 41.5 + brightCyan: 51.5 + brightWhite: 86.1 diff --git a/themes/fea-dark-theme.yaml b/themes/fea-dark-theme.yaml new file mode 100644 index 00000000..2e387b79 --- /dev/null +++ b/themes/fea-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "FEA DARK THEME" +source: + marketplace_id: "FADYEHABAMER.FADYEHABAMER" + version: "1.1.2" + installs: 207 + rating: 5 + ratings: 1 + author: "FADY EHAB AMER" + repo: "https://github.com/fadyehabamer/VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=FADYEHABAMER.FADYEHABAMER" + formats: null +colors: + bg: "#141619" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2162A9" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 20.4 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/fearless-color-themes--untitled.yaml b/themes/fearless-color-themes--untitled.yaml new file mode 100644 index 00000000..05d8b490 --- /dev/null +++ b/themes/fearless-color-themes--untitled.yaml @@ -0,0 +1,53 @@ +name: "Fearless Color Themes (Untitled)" +source: + marketplace_id: "kevinhaube.fearless-color-theme" + version: "0.1.2" + installs: 326 + rating: 0 + ratings: 0 + author: "kevinhaube" + repo: "https://github.com/kevinhaube/fearless-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kevinhaube.fearless-color-theme" + formats: null +colors: + bg: "#1A112A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 299 + pair: null + contrast: + fg: 79.5 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/fedaykin--dune-arrakis-incandescent.yaml b/themes/fedaykin--dune-arrakis-incandescent.yaml new file mode 100644 index 00000000..e4abbe5b --- /dev/null +++ b/themes/fedaykin--dune-arrakis-incandescent.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Arrakis Incandescent)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#151313" + fg: "#CECDC3" + black: "#151313" + red: "#E2AD4A" + green: "#7FB069" + yellow: "#5A96BC" + blue: "#CC6B49" + magenta: "#E0A98E" + cyan: "#DE956A" + white: "#CECDC3" + brightBlack: "#878580" + brightRed: "#C15849" + brightGreen: "#7FB069" + brightYellow: "#E8B04B" + brightBlue: "#5A96BC" + brightMagenta: "#C17B8D" + brightCyan: "#6B8FA3" + brightWhite: "#E6DCC6" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 75.3 + black: 0 + red: 62.2 + green: 51.8 + yellow: 41.7 + blue: 37.4 + magenta: 61.7 + cyan: 53.5 + white: 75.3 + brightBlack: 36.5 + brightRed: 30.9 + brightGreen: 51.8 + brightYellow: 64.3 + brightBlue: 41.7 + brightMagenta: 41.5 + brightCyan: 39 + brightWhite: 85.2 diff --git a/themes/fedaykin--dune-bene-gesserit.yaml b/themes/fedaykin--dune-bene-gesserit.yaml new file mode 100644 index 00000000..54301181 --- /dev/null +++ b/themes/fedaykin--dune-bene-gesserit.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Bene Gesserit)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#08090D" + fg: "#E0E4E8" + black: "#08090D" + red: "#C9934E" + green: "#4A7C9E" + yellow: "#2C5F8D" + blue: "#6B5B8C" + magenta: "#4E5D7A" + cyan: "#7A8C6E" + white: "#E0E4E8" + brightBlack: "#606878" + brightRed: "#A65353" + brightGreen: "#6B8C5F" + brightYellow: "#C9934E" + brightBlue: "#4A7C9E" + brightMagenta: "#8C6BAE" + brightCyan: "#5CA8CE" + brightWhite: "#F0F4F8" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.9 + black: 0 + red: 49.5 + green: 30.4 + yellow: 18.9 + blue: 21.8 + magenta: 19.1 + cyan: 37.8 + white: 89.9 + brightBlack: 23.6 + brightRed: 25.8 + brightGreen: 36.2 + brightYellow: 49.5 + brightBlue: 30.4 + brightMagenta: 31.5 + brightCyan: 50.5 + brightWhite: 100.2 diff --git a/themes/fedaykin--dune-caladan-storm.yaml b/themes/fedaykin--dune-caladan-storm.yaml new file mode 100644 index 00000000..959f6101 --- /dev/null +++ b/themes/fedaykin--dune-caladan-storm.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Caladan Storm)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#0D1117" + fg: "#E6EDF3" + black: "#0D1117" + red: "#79C0FF" + green: "#7EE787" + yellow: "#A5D6FF" + blue: "#FF9B54" + magenta: "#2F5D8A" + cyan: "#58A6FF" + white: "#E6EDF3" + brightBlack: "#6E7681" + brightRed: "#FF7B72" + brightGreen: "#7EE787" + brightYellow: "#FFA657" + brightBlue: "#79C0FF" + brightMagenta: "#BB9AF7" + brightCyan: "#56D4DD" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "green" + hue: 258 + pair: null + contrast: + fg: 95 + black: 0 + red: 64.7 + green: 78.1 + yellow: 77.9 + blue: 61.4 + magenta: 17.9 + cyan: 52.2 + white: 95 + brightBlack: 29.3 + brightRed: 52.6 + brightGreen: 78.1 + brightYellow: 65.1 + brightBlue: 64.7 + brightMagenta: 56.1 + brightCyan: 69.9 + brightWhite: 100.9 diff --git a/themes/fedaykin--dune-fremen-sietch.yaml b/themes/fedaykin--dune-fremen-sietch.yaml new file mode 100644 index 00000000..fd912bcb --- /dev/null +++ b/themes/fedaykin--dune-fremen-sietch.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Fremen Sietch)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#FAF8F3" + fg: "#2C2416" + black: "#FAF8F3" + red: "#8B6239" + green: "#2A7F9E" + yellow: "#1E6B8C" + blue: "#A0522D" + magenta: "#6B4226" + cyan: "#4A7C59" + white: "#2C2416" + brightBlack: "#8B7355" + brightRed: "#C2410C" + brightGreen: "#4A7C59" + brightYellow: "#B45309" + brightBlue: "#2A7F9E" + brightMagenta: "#8B4A8C" + brightCyan: "#3C9FBC" + brightWhite: "#1A1511" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.1 + black: 0 + red: 72.5 + green: 67.1 + yellow: 75.2 + blue: 73.5 + magenta: 85.3 + cyan: 69.5 + white: 98.1 + brightBlack: 67 + brightRed: 70.4 + brightGreen: 69.5 + brightYellow: 69.9 + brightBlue: 67.1 + brightMagenta: 75.9 + brightCyan: 52.9 + brightWhite: 100.7 diff --git a/themes/fedaykin--dune-giedi-prime.yaml b/themes/fedaykin--dune-giedi-prime.yaml new file mode 100644 index 00000000..d31af9a8 --- /dev/null +++ b/themes/fedaykin--dune-giedi-prime.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Giedi Prime)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#0A0A0A" + fg: "#D4D4D4" + black: "#0A0A0A" + red: "#E3BDAD" + green: "#B6D8E6" + yellow: "#A2BEE8" + blue: "#DCCDBE" + magenta: "#EDCBB8" + cyan: "#C0DCC0" + white: "#D4D4D4" + brightBlack: "#7C7C7C" + brightRed: "#9E6A6A" + brightGreen: "#6A8E6A" + brightYellow: "#9E8A6A" + brightBlue: "#6A7E9E" + brightMagenta: "#A5A5A5" + brightCyan: "#ADADAD" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 80.3 + black: 0 + red: 71.3 + green: 79.4 + yellow: 66.3 + blue: 77.5 + magenta: 78.9 + cyan: 80.7 + white: 80.3 + brightBlack: 32.7 + brightRed: 30.8 + brightGreen: 37.1 + brightYellow: 40.8 + brightBlue: 33.2 + brightMagenta: 53.4 + brightCyan: 57.7 + brightWhite: 101.8 diff --git a/themes/fedaykin--dune-guild-navigator.yaml b/themes/fedaykin--dune-guild-navigator.yaml new file mode 100644 index 00000000..b3e0ca5b --- /dev/null +++ b/themes/fedaykin--dune-guild-navigator.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Guild Navigator)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#050308" + fg: "#F0E8FF" + black: "#050308" + red: "#C8884C" + green: "#FF8C42" + yellow: "#4CA8FF" + blue: "#9B72D4" + magenta: "#7C6CA4" + cyan: "#FF9D5C" + white: "#F0E8FF" + brightBlack: "#5E5468" + brightRed: "#FF6B6B" + brightGreen: "#69DB7C" + brightYellow: "#FFA94D" + brightBlue: "#5CA7FF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 305 + pair: null + contrast: + fg: 95.1 + black: 0 + red: 45.7 + green: 57 + yellow: 53 + blue: 37.7 + magenta: 29.6 + cyan: 62.6 + white: 95.1 + brightBlack: 17.2 + brightRed: 49.1 + brightGreen: 71.2 + brightYellow: 66.5 + brightBlue: 53.3 + brightMagenta: 46.1 + brightCyan: 55.6 + brightWhite: 107.9 diff --git a/themes/fedaykin--dune-harkonnen.yaml b/themes/fedaykin--dune-harkonnen.yaml new file mode 100644 index 00000000..3d8e9963 --- /dev/null +++ b/themes/fedaykin--dune-harkonnen.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Harkonnen)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#090A0C" + fg: "#D4D7DE" + black: "#090A0C" + red: "#D2D895" + green: "#73BD96" + yellow: "#7DACE4" + blue: "#A88BBF" + magenta: "#86A6CF" + cyan: "#8BBBB0" + white: "#D4D7DE" + brightBlack: "#565760" + brightRed: "#C77374" + brightGreen: "#8FB5A3" + brightYellow: "#C4C7A0" + brightBlue: "#8FA9D0" + brightMagenta: "#9F93A8" + brightCyan: "#8FB0A8" + brightWhite: "#D4D7DE" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.1 + black: 0 + red: 79.6 + green: 58.3 + yellow: 55.4 + blue: 45.6 + magenta: 52.6 + cyan: 60.2 + white: 82.1 + brightBlack: 16.9 + brightRed: 40.1 + brightGreen: 57.5 + brightYellow: 70.7 + brightBlue: 54.6 + brightMagenta: 46.2 + brightCyan: 55.6 + brightWhite: 82.1 diff --git a/themes/fedaykin--dune-house-atreides.yaml b/themes/fedaykin--dune-house-atreides.yaml new file mode 100644 index 00000000..380f76f4 --- /dev/null +++ b/themes/fedaykin--dune-house-atreides.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune House Atreides)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#11161C" + fg: "#E4EDF7" + black: "#11161C" + red: "#60A5FA" + green: "#4A9FA5" + yellow: "#3B82F6" + blue: "#22D3EE" + magenta: "#94A3B8" + cyan: "#10B981" + white: "#E4EDF7" + brightBlack: "#5A6B7E" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#A78BFA" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + pair: null + contrast: + fg: 94.5 + black: 0 + red: 51.5 + green: 43.2 + yellow: 36.9 + blue: 68.7 + magenta: 50.9 + cyan: 52 + white: 94.5 + brightBlack: 23.6 + brightRed: 37 + brightGreen: 52 + brightYellow: 59.6 + brightBlue: 36.9 + brightMagenta: 48.4 + brightCyan: 54 + brightWhite: 107 diff --git a/themes/fedaykin--dune-ix-technology.yaml b/themes/fedaykin--dune-ix-technology.yaml new file mode 100644 index 00000000..915d855a --- /dev/null +++ b/themes/fedaykin--dune-ix-technology.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Ix Technology)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#0A0C0F" + fg: "#E8ECF0" + black: "#0A0C0F" + red: "#FFB86C" + green: "#50FA7B" + yellow: "#6272A4" + blue: "#BD93F9" + magenta: "#8897B4" + cyan: "#66D9EF" + white: "#E8ECF0" + brightBlack: "#6B7585" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1B644" + brightBlue: "#6272A4" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 94.9 + black: 0 + red: 72.2 + green: 85.7 + yellow: 28.8 + blue: 54.4 + magenta: 45.6 + cyan: 74.2 + white: 94.9 + brightBlack: 29.1 + brightRed: 44.2 + brightGreen: 85.7 + brightYellow: 68.5 + brightBlue: 28.8 + brightMagenta: 55.4 + brightCyan: 84.8 + brightWhite: 102.8 diff --git a/themes/fedaykin--dune-kaitain.yaml b/themes/fedaykin--dune-kaitain.yaml new file mode 100644 index 00000000..5c8739e4 --- /dev/null +++ b/themes/fedaykin--dune-kaitain.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (dune-kaitain)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#00151A" + fg: "#A8BCC9" + black: "#00151A" + red: "#D4A52A" + green: "#869900" + yellow: "#268BD2" + blue: "#CB4C16" + magenta: "#A15DA1" + cyan: "#2DA198" + white: "#A8BCC9" + brightBlack: "#2B4753" + brightRed: "#CC5555" + brightGreen: "#4A9A4A" + brightYellow: "#CCAD31" + brightBlue: "#55A2C2" + brightMagenta: "#D33682" + brightCyan: "#2AA198" + brightWhite: "#C7D1D6" +meta: + mode: "dark" + accent: "red" + hue: 214 + pair: null + contrast: + fg: 63.9 + black: 0 + red: 56.7 + green: 42.1 + yellow: 37 + blue: 30.1 + magenta: 29.5 + cyan: 42.8 + white: 63.9 + brightBlack: 8.9 + brightRed: 32.7 + brightGreen: 38.8 + brightYellow: 58.6 + brightBlue: 46.5 + brightMagenta: 30.7 + brightCyan: 42.7 + brightWhite: 77 diff --git a/themes/fedaykin--dune-mentat.yaml b/themes/fedaykin--dune-mentat.yaml new file mode 100644 index 00000000..6464a33c --- /dev/null +++ b/themes/fedaykin--dune-mentat.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Mentat)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#FAFAFA" + fg: "#1A1A1A" + black: "#FAFAFA" + red: "#8250DF" + green: "#0969DA" + yellow: "#0550AE" + blue: "#CF222E" + magenta: "#6639BA" + cyan: "#116329" + white: "#1A1A1A" + brightBlack: "#909090" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#9A6700" + brightBlue: "#0969DA" + brightMagenta: "#8250DF" + brightCyan: "#0598D3" + brightWhite: "#0A0A0A" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 101.3 + black: 0 + red: 71.3 + green: 72 + yellow: 82.6 + blue: 71.8 + magenta: 81.9 + cyan: 82.3 + white: 101.3 + brightBlack: 56.1 + brightRed: 82.2 + brightGreen: 71.6 + brightYellow: 70.4 + brightBlue: 72 + brightMagenta: 71.3 + brightCyan: 56.3 + brightWhite: 102.9 diff --git a/themes/fedaykin--dune-muad-dib.yaml b/themes/fedaykin--dune-muad-dib.yaml new file mode 100644 index 00000000..12b93e84 --- /dev/null +++ b/themes/fedaykin--dune-muad-dib.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Muad'Dib)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#0F0E0C" + fg: "#E8E2D0" + black: "#0F0E0C" + red: "#D4A85C" + green: "#88B068" + yellow: "#4A9EFF" + blue: "#9B7AC4" + magenta: "#A08458" + cyan: "#C89C5C" + white: "#E8E2D0" + brightBlack: "#6E6858" + brightRed: "#D67E60" + brightGreen: "#7CA668" + brightYellow: "#E8A85C" + brightBlue: "#5CA8E8" + brightMagenta: "#B088D0" + brightCyan: "#6CBCE8" + brightWhite: "#F8F4E8" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 88.9 + black: 0 + red: 58.7 + green: 52.9 + yellow: 48.7 + blue: 38.7 + magenta: 38.4 + cyan: 52.5 + white: 88.9 + brightBlack: 23.7 + brightRed: 45.1 + brightGreen: 47.7 + brightYellow: 61.9 + brightBlue: 51.8 + brightMagenta: 46.5 + brightCyan: 61 + brightWhite: 100.3 diff --git a/themes/fedaykin--dune-salusa-secundus.yaml b/themes/fedaykin--dune-salusa-secundus.yaml new file mode 100644 index 00000000..e007369c --- /dev/null +++ b/themes/fedaykin--dune-salusa-secundus.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Salusa Secundus)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#0F0D0D" + fg: "#E8D6D6" + black: "#0F0D0D" + red: "#FFB86C" + green: "#FF9D5C" + yellow: "#FF7979" + blue: "#FF5555" + magenta: "#8B4A4A" + cyan: "#CC6666" + white: "#E8D6D6" + brightBlack: "#726565" + brightRed: "#FF3838" + brightGreen: "#C78860" + brightYellow: "#FFA500" + brightBlue: "#FF8C42" + brightMagenta: "#FF79C6" + brightCyan: "#FFB86C" + brightWhite: "#F4E8E8" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.9 + black: 0 + red: 72.2 + green: 62.3 + yellow: 52.4 + blue: 44.1 + magenta: 19.2 + cyan: 37.1 + white: 83.9 + brightBlack: 23.6 + brightRed: 39.8 + brightGreen: 45.6 + brightYellow: 64.4 + brightBlue: 56.7 + brightMagenta: 55.3 + brightCyan: 72.2 + brightWhite: 94.3 diff --git a/themes/fedaykin--dune-sandworm.yaml b/themes/fedaykin--dune-sandworm.yaml new file mode 100644 index 00000000..0b80d317 --- /dev/null +++ b/themes/fedaykin--dune-sandworm.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Sandworm)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#1A1611" + fg: "#E8DCC4" + black: "#1A1611" + red: "#E8B88C" + green: "#D4A574" + yellow: "#5CA7E8" + blue: "#CE7E4A" + magenta: "#8B6239" + cyan: "#A68860" + white: "#E8DCC4" + brightBlack: "#7A6548" + brightRed: "#D67C5C" + brightGreen: "#8CA674" + brightYellow: "#E8A85C" + brightBlue: "#6CB4EE" + brightMagenta: "#C88A6A" + brightCyan: "#7AC0D8" + brightWhite: "#F4EDE4" +meta: + mode: "dark" + accent: "indigo" + hue: 73 + pair: null + contrast: + fg: 85.1 + black: 0 + red: 68.3 + green: 57.4 + yellow: 50.8 + blue: 42.7 + magenta: 24.1 + cyan: 40.1 + white: 85.1 + brightBlack: 23.1 + brightRed: 43.8 + brightGreen: 48.8 + brightYellow: 61.3 + brightBlue: 57.3 + brightMagenta: 46 + brightCyan: 62.1 + brightWhite: 95.7 diff --git a/themes/fedaykin--dune-sardaukar-imperial.yaml b/themes/fedaykin--dune-sardaukar-imperial.yaml new file mode 100644 index 00000000..fcc95553 --- /dev/null +++ b/themes/fedaykin--dune-sardaukar-imperial.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Sardaukar Imperial)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#0C0C0E" + fg: "#E8E8F0" + black: "#0C0C0E" + red: "#FFD700" + green: "#9D6FCC" + yellow: "#8B72C7" + blue: "#DC143C" + magenta: "#7C6CA4" + cyan: "#C0C0C0" + white: "#E8E8F0" + brightBlack: "#6A6A7C" + brightRed: "#FF3838" + brightGreen: "#6B9E6B" + brightYellow: "#FFAA40" + brightBlue: "#8B72C7" + brightMagenta: "#FF79C6" + brightCyan: "#68D4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 93.1 + black: 0 + red: 84 + green: 36.4 + yellow: 34.8 + blue: 29.3 + magenta: 29.4 + cyan: 68.4 + white: 93.1 + brightBlack: 25.2 + brightRed: 39.9 + brightGreen: 43.4 + brightYellow: 66.5 + brightBlue: 34.8 + brightMagenta: 55.4 + brightCyan: 72.9 + brightWhite: 107.7 diff --git a/themes/fedaykin--dune-spacing-guild.yaml b/themes/fedaykin--dune-spacing-guild.yaml new file mode 100644 index 00000000..b6832849 --- /dev/null +++ b/themes/fedaykin--dune-spacing-guild.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Spacing Guild)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#0A0B0D" + fg: "#E8ECF4" + black: "#0A0B0D" + red: "#FFD700" + green: "#4A90E2" + yellow: "#6BB6FF" + blue: "#FF9940" + magenta: "#8899B4" + cyan: "#A8B8D0" + white: "#E8ECF4" + brightBlack: "#68707C" + brightRed: "#E85855" + brightGreen: "#6BC46D" + brightYellow: "#FFAA40" + brightBlue: "#5CA7FF" + brightMagenta: "#B794F6" + brightCyan: "#68D4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 95.1 + black: 0 + red: 84.1 + green: 41.5 + yellow: 60 + blue: 60.8 + magenta: 46.4 + cyan: 63.1 + white: 95.1 + brightBlack: 26.9 + brightRed: 39.6 + brightGreen: 59.9 + brightYellow: 66.5 + brightBlue: 53.1 + brightMagenta: 53.8 + brightCyan: 72.9 + brightWhite: 107.7 diff --git a/themes/fedaykin--dune-spice-vision.yaml b/themes/fedaykin--dune-spice-vision.yaml new file mode 100644 index 00000000..d8b6faed --- /dev/null +++ b/themes/fedaykin--dune-spice-vision.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Spice Vision)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#140F0A" + fg: "#FFEDC6" + black: "#140F0A" + red: "#FFD700" + green: "#FF9500" + yellow: "#00BFFF" + blue: "#FF6B35" + magenta: "#9B59B6" + cyan: "#FFB347" + white: "#FFEDC6" + brightBlack: "#6E5A48" + brightRed: "#FF4757" + brightGreen: "#26DE81" + brightYellow: "#FFA502" + brightBlue: "#00BFFF" + brightMagenta: "#C56CF0" + brightCyan: "#18DCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 67 + pair: null + contrast: + fg: 96.7 + black: 0 + red: 83.8 + green: 59 + yellow: 61 + blue: 47.9 + magenta: 29.1 + cyan: 69.6 + white: 96.7 + brightBlack: 19.1 + brightRed: 41.9 + brightGreen: 70.3 + brightYellow: 64.3 + brightBlue: 61 + brightMagenta: 43.8 + brightCyan: 74.3 + brightWhite: 107.4 diff --git a/themes/fedaykin--dune-water-of-life.yaml b/themes/fedaykin--dune-water-of-life.yaml new file mode 100644 index 00000000..9b7d1a7f --- /dev/null +++ b/themes/fedaykin--dune-water-of-life.yaml @@ -0,0 +1,53 @@ +name: "Fedaykin (Dune Water of Life)" +source: + marketplace_id: "FedaykinDev.fedaykin-themes" + version: "1.0.2" + installs: 238 + rating: 0 + ratings: 0 + author: "FedaykinDev" + repo: "https://github.com/btriapitsyn/fedaykin-themes" + url: "https://marketplace.visualstudio.com/items?itemName=FedaykinDev.fedaykin-themes" + formats: null +colors: + bg: "#0A0E14" + fg: "#E8F0FF" + black: "#0A0E14" + red: "#FFD700" + green: "#87CEEB" + yellow: "#5EB3FF" + blue: "#9B88D3" + magenta: "#7AA2E3" + cyan: "#66E0CE" + white: "#E8F0FF" + brightBlack: "#5A6B88" + brightRed: "#FF6B9D" + brightGreen: "#48DBFB" + brightYellow: "#FECA57" + brightBlue: "#54A0FF" + brightMagenta: "#C792EA" + brightCyan: "#80DEEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 258 + pair: null + contrast: + fg: 97.4 + black: 0 + red: 83.9 + green: 70.8 + yellow: 57.9 + blue: 44 + magenta: 51.1 + cyan: 75.8 + white: 97.4 + brightBlack: 24.6 + brightRed: 50.3 + brightGreen: 74.6 + brightYellow: 78.8 + brightBlue: 49.9 + brightMagenta: 54.5 + brightCyan: 77.7 + brightWhite: 107.6 diff --git a/themes/felipaotest.yaml b/themes/felipaotest.yaml new file mode 100644 index 00000000..b5a7e26c --- /dev/null +++ b/themes/felipaotest.yaml @@ -0,0 +1,53 @@ +name: "felipaotest" +source: + marketplace_id: "FelipeGalati.felipaptest" + version: "0.0.1" + installs: 64 + rating: 0 + ratings: 0 + author: "Felipe Galati" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=FelipeGalati.felipaptest" + formats: null +colors: + bg: "#0E0619" + fg: "#B2ACBC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 302 + pair: null + contrast: + fg: 58.5 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/ferdinaldo-dark-theme.yaml b/themes/ferdinaldo-dark-theme.yaml new file mode 100644 index 00000000..e0ed2a0a --- /dev/null +++ b/themes/ferdinaldo-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "ferdinaldo-dark-theme" +source: + marketplace_id: "76b3513e-d67a-672c-9a87-1d99cb631779.ferdinaldo-themes" + version: "1.0.0" + installs: 36 + rating: 0 + ratings: 0 + author: "Ferdinaldo Fernando Bernardo Pelembe" + repo: "https://github.com/ferdinaldo/ferdinaldo-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=76b3513e-d67a-672c-9a87-1d99cb631779.ferdinaldo-themes" + formats: null +colors: + bg: "#171D13" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 133 + pair: null + contrast: + fg: 79 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.3 + cyan: 47.1 + white: 89.5 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/feynuus-theme.yaml b/themes/feynuus-theme.yaml new file mode 100644 index 00000000..b01746a3 --- /dev/null +++ b/themes/feynuus-theme.yaml @@ -0,0 +1,53 @@ +name: "Feynuus Theme" +source: + marketplace_id: "BanadirTech.vscode-bt-feynuus-theme" + version: "0.0.4" + installs: 326 + rating: 0 + ratings: 0 + author: "BanadirTech Inc" + repo: "https://github.com/banadirtech/vscode-feynuus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BanadirTech.vscode-bt-feynuus-theme" + formats: null +colors: + bg: "#212121" + fg: "#FDFDFD" + black: "#040404" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 104.3 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/finger-paint-set-ayms--themer-dark.yaml b/themes/finger-paint-set-ayms--themer-dark.yaml new file mode 100644 index 00000000..234e3765 --- /dev/null +++ b/themes/finger-paint-set-ayms--themer-dark.yaml @@ -0,0 +1,53 @@ +name: "Finger Paint Set AYMS (Themer Dark)" +source: + marketplace_id: "ayms-data.fingerpaint-ayms" + version: "2.4.0" + installs: 203 + rating: 0 + ratings: 0 + author: "Ayman Sahyoun" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ayms-data.fingerpaint-ayms" + formats: null +colors: + bg: "#2A2021" + fg: "#EDEBEE" + black: "#2A2021" + red: "#C65967" + green: "#97B55A" + yellow: "#E5BE31" + blue: "#6484B5" + magenta: "#AC7155" + cyan: "#76A377" + white: "#D1CED1" + brightBlack: "#463D3E" + brightRed: "#D3873B" + brightGreen: "#76A377" + brightYellow: "#E5BE31" + brightBlue: "#6484B5" + brightMagenta: "#AC7155" + brightCyan: "#76A377" + brightWhite: "#EDEBEE" +meta: + mode: "dark" + accent: "green" + hue: 11 + pair: null + contrast: + fg: 92.7 + black: 0 + red: 30.9 + green: 54 + yellow: 67.3 + blue: 33.6 + magenta: 32 + cyan: 44.2 + white: 74.9 + brightBlack: 0 + brightRed: 44.6 + brightGreen: 44.2 + brightYellow: 67.3 + brightBlue: 33.6 + brightMagenta: 32 + brightCyan: 44.2 + brightWhite: 92.7 diff --git a/themes/finger-paint-set-ayms--themer-light.yaml b/themes/finger-paint-set-ayms--themer-light.yaml new file mode 100644 index 00000000..9d556c1c --- /dev/null +++ b/themes/finger-paint-set-ayms--themer-light.yaml @@ -0,0 +1,53 @@ +name: "Finger Paint Set AYMS (Themer Light)" +source: + marketplace_id: "ayms-data.fingerpaint-ayms" + version: "2.4.0" + installs: 203 + rating: 0 + ratings: 0 + author: "Ayman Sahyoun" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ayms-data.fingerpaint-ayms" + formats: null +colors: + bg: "#EDEBEE" + fg: "#2A2021" + black: "#EDEBEE" + red: "#BA394A" + green: "#78992A" + yellow: "#BA991A" + blue: "#485A9F" + magenta: "#A1684F" + cyan: "#509B6B" + white: "#463D3E" + brightBlack: "#D1CED1" + brightRed: "#D3833F" + brightGreen: "#509B6B" + brightYellow: "#BA991A" + brightBlue: "#485A9F" + brightMagenta: "#A1684F" + brightCyan: "#509B6B" + brightWhite: "#2A2021" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.3 + black: 0 + red: 65.3 + green: 48.6 + yellow: 41.4 + blue: 70.5 + magenta: 60 + cyan: 49.4 + white: 82.9 + brightBlack: 14.2 + brightRed: 44.4 + brightGreen: 49.4 + brightYellow: 41.4 + brightBlue: 70.5 + brightMagenta: 60 + brightCyan: 49.4 + brightWhite: 91.3 diff --git a/themes/firefly--firefly.yaml b/themes/firefly--firefly.yaml new file mode 100644 index 00000000..24d96a7a --- /dev/null +++ b/themes/firefly--firefly.yaml @@ -0,0 +1,53 @@ +name: "Firefly (Firefly)" +source: + marketplace_id: "vagalumedev.firefly" + version: "0.0.1" + installs: 14083 + rating: 5 + ratings: 1 + author: "Vagalume Dev" + repo: "https://github.com/vagalumedev/firefly-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vagalumedev.firefly" + formats: null +colors: + bg: "#1D1D1B" + fg: "#D6DEEB" + black: "#001F47" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 84.5 + black: 0 + red: 38.6 + green: 66.6 + yellow: 81.4 + blue: 55.2 + magenta: 53.1 + cyan: 59 + white: 106.2 + brightBlack: 14.9 + brightRed: 38.6 + brightGreen: 66.6 + brightYellow: 93 + brightBlue: 55.2 + brightMagenta: 53.1 + brightCyan: 73.3 + brightWhite: 106.2 diff --git a/themes/firefly-pro--firefly.yaml b/themes/firefly-pro--firefly.yaml new file mode 100644 index 00000000..5197a3fd --- /dev/null +++ b/themes/firefly-pro--firefly.yaml @@ -0,0 +1,53 @@ +name: "FireFly Pro (FireFly)" +source: + marketplace_id: "ankitcode.firefly" + version: "4.0.0" + installs: 184318 + rating: 4.95 + ratings: 20 + author: "Ankit Mishra" + repo: "https://github.com/ankitmlive/firefly-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ankitcode.firefly" + formats: null +colors: + bg: "#0A0F17" + fg: "#BAC6DB" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#69C8FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 260 + pair: null + contrast: + fg: 71.3 + black: 0 + red: 44.7 + green: 54.8 + yellow: 67.2 + blue: 61.2 + magenta: 92.6 + cyan: 78.5 + white: 72.3 + brightBlack: 23.5 + brightRed: 47.2 + brightGreen: 76.5 + brightYellow: 70.2 + brightBlue: 67.4 + brightMagenta: 95.8 + brightCyan: 81.5 + brightWhite: 107.5 diff --git a/themes/firefox-theme.yaml b/themes/firefox-theme.yaml new file mode 100644 index 00000000..56d457fb --- /dev/null +++ b/themes/firefox-theme.yaml @@ -0,0 +1,53 @@ +name: "Firefox Theme" +source: + marketplace_id: "Heron.firefox-devtools-theme" + version: "4.10.8" + installs: 182652 + rating: 5 + ratings: 13 + author: "Heron Silva" + repo: "https://github.com/firefox-theme/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=Heron.firefox-devtools-theme" + formats: null +colors: + bg: "#2A2A2E" + fg: "#B1B1B3" + black: "#2A2A2E" + red: "#CC3D3D" + green: "#86DE74" + yellow: "#FCE2A1" + blue: "#6B89FF" + magenta: "#FF7DE9" + cyan: "#0A84FF" + white: "#FFFFFF" + brightBlack: "#0C0C0D" + brightRed: "#CC3D3D" + brightGreen: "#86DE74" + brightYellow: "#FCE2A1" + brightBlue: "#6B89FF" + brightMagenta: "#FF7DE9" + brightCyan: "#0A84FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 56.3 + black: 0 + red: 25.1 + green: 70.4 + yellow: 86.6 + blue: 39.4 + magenta: 54.6 + cyan: 34.5 + white: 104 + brightBlack: 0 + brightRed: 25.1 + brightGreen: 70.4 + brightYellow: 86.6 + brightBlue: 39.4 + brightMagenta: 54.6 + brightCyan: 34.5 + brightWhite: 104 diff --git a/themes/firefoxtheme--firefox-dark.yaml b/themes/firefoxtheme--firefox-dark.yaml new file mode 100644 index 00000000..46aec7cc --- /dev/null +++ b/themes/firefoxtheme--firefox-dark.yaml @@ -0,0 +1,53 @@ +name: "FirefoxTheme (Firefox Dark)" +source: + marketplace_id: "LinLong-95.FirefoxTheme" + version: "1.0.3" + installs: 5052 + rating: 5 + ratings: 3 + author: "LinLong" + repo: "https://gitee.com/gcfkhy/vs-code---fox-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LinLong-95.FirefoxTheme" + formats: null +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#4A505D" + red: "#F81141" + green: "#23974A" + yellow: "#FD7E57" + blue: "#285BFF" + magenta: "#8C62FD" + cyan: "#3A8AB2" + white: "#CCD5E5" + brightBlack: "#61697A" + brightRed: "#FC4A6D" + brightGreen: "#37BD58" + brightYellow: "#F6BE48" + brightBlue: "#199FFD" + brightMagenta: "#FC58F6" + brightCyan: "#50ACAE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 9.9 + red: 32.1 + green: 32.8 + yellow: 48.7 + blue: 22.6 + magenta: 30.8 + cyan: 31.8 + white: 76.5 + brightBlack: 20 + brightRed: 38.3 + brightGreen: 50.1 + brightYellow: 68.5 + brightBlue: 43.9 + brightMagenta: 46.9 + brightCyan: 45.9 + brightWhite: 103.7 diff --git a/themes/firsttema--untitled.yaml b/themes/firsttema--untitled.yaml new file mode 100644 index 00000000..08d3f46c --- /dev/null +++ b/themes/firsttema--untitled.yaml @@ -0,0 +1,53 @@ +name: "firsttema (Untitled)" +source: + marketplace_id: "mrsx.firsttema" + version: "0.1.6" + installs: 9 + rating: 0 + ratings: 0 + author: "mrsx" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mrsx.firsttema" + formats: null +colors: + bg: "#191622" + fg: "#E8E8E8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 296 + pair: null + contrast: + fg: 91.8 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.7 + cyan: 47.5 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.5 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/flat-theme--flat-theme-gray.yaml b/themes/flat-theme--flat-theme-gray.yaml new file mode 100644 index 00000000..d2e11af0 --- /dev/null +++ b/themes/flat-theme--flat-theme-gray.yaml @@ -0,0 +1,53 @@ +name: "Flat-Theme (Flat-Theme Gray)" +source: + marketplace_id: "Aatricks.flat-theme" + version: "0.1.2" + installs: 88 + rating: 0 + ratings: 0 + author: "Aatricks" + repo: "https://github.com/Aatricks/flat-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Aatricks.flat-theme" + formats: null +colors: + bg: "#202124" + fg: "#CFD8DC" + black: "#202124" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#CFD8DC" + brightBlack: "#546E7A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#ECEFF1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.7 + black: 0 + red: 45.3 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 79.7 + brightBlack: 22.6 + brightRed: 45.3 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 94.8 diff --git a/themes/flat-theme--flat-theme-light.yaml b/themes/flat-theme--flat-theme-light.yaml new file mode 100644 index 00000000..ddf7e0aa --- /dev/null +++ b/themes/flat-theme--flat-theme-light.yaml @@ -0,0 +1,53 @@ +name: "Flat-Theme (Flat-Theme Light)" +source: + marketplace_id: "Aatricks.flat-theme" + version: "0.1.2" + installs: 88 + rating: 0 + ratings: 0 + author: "Aatricks" + repo: "https://github.com/Aatricks/flat-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Aatricks.flat-theme" + formats: null +colors: + bg: "#F5F5F5" + fg: "#37474F" + black: "#263238" + red: "#EF5350" + green: "#7CB342" + yellow: "#F9AE58" + blue: "#42A5F5" + magenta: "#AB47BC" + cyan: "#26C6DA" + white: "#ECEFF1" + brightBlack: "#546E7A" + brightRed: "#EF5350" + brightGreen: "#7CB342" + brightYellow: "#F9AE58" + brightBlue: "#42A5F5" + brightMagenta: "#AB47BC" + brightCyan: "#26C6DA" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 86.4 + black: 93.5 + red: 55.4 + green: 43 + yellow: 29.2 + blue: 45.2 + magenta: 66.7 + cyan: 33.8 + white: 0 + brightBlack: 70.9 + brightRed: 55.4 + brightGreen: 43 + brightYellow: 29.2 + brightBlue: 45.2 + brightMagenta: 66.7 + brightCyan: 33.8 + brightWhite: 0 diff --git a/themes/flat-ui.yaml b/themes/flat-ui.yaml new file mode 100644 index 00000000..d9decc32 --- /dev/null +++ b/themes/flat-ui.yaml @@ -0,0 +1,54 @@ +name: "Flat UI" +source: + marketplace_id: "lkytal.FlatUI" + version: "1.4.9" + installs: 264034 + rating: 4.93 + ratings: 28 + author: "Kaiyuan Liu" + repo: "https://github.com/lkytal/vscode-theme-flatui" + url: "https://marketplace.visualstudio.com/items?itemName=lkytal.FlatUI" + formats: + sublime: "https://raw.githubusercontent.com/lkytal/vscode-theme-flatui/master/themes/flatDark.tmTheme" +colors: + bg: "#FBFBFB" + fg: "#414141" + black: "#414141" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#F0F0F0" + brightBlack: "#414141" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#FDC602" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2AA298" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.3 + black: 91.3 + red: 66.3 + green: 64.2 + yellow: 37 + blue: 60.1 + magenta: 65.3 + cyan: 55.5 + white: 0 + brightBlack: 91.3 + brightRed: 66.3 + brightGreen: 64.2 + brightYellow: 23.8 + brightBlue: 60.1 + brightMagenta: 65.3 + brightCyan: 55.5 + brightWhite: 0 diff --git a/themes/fleeting-theme.yaml b/themes/fleeting-theme.yaml new file mode 100644 index 00000000..fa3604ed --- /dev/null +++ b/themes/fleeting-theme.yaml @@ -0,0 +1,53 @@ +name: "Fleeting Theme" +source: + marketplace_id: "fleeting-sound.fleeting-theme" + version: "0.1.6" + installs: 470 + rating: 5 + ratings: 1 + author: "fleeting-sound" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=fleeting-sound.fleeting-theme" + formats: null +colors: + bg: "#1E232C" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 262 + pair: null + contrast: + fg: 57.8 + black: 0 + red: 40.5 + green: 60.7 + yellow: 69 + blue: 39.9 + magenta: 43.6 + cyan: 53 + white: 81.5 + brightBlack: 34 + brightRed: 36.9 + brightGreen: 60.7 + brightYellow: 69 + brightBlue: 39.9 + brightMagenta: 11.2 + brightCyan: 53 + brightWhite: 81.5 diff --git a/themes/flexoki--flexoki.yaml b/themes/flexoki--flexoki.yaml new file mode 100644 index 00000000..dbb72d7b --- /dev/null +++ b/themes/flexoki--flexoki.yaml @@ -0,0 +1,53 @@ +name: "Flexoki (Flexoki)" +source: + marketplace_id: "sglza.flexoki" + version: "0.0.3" + installs: 2617 + rating: 5 + ratings: 2 + author: "sglza" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sglza.flexoki" + formats: null +colors: + bg: "#100F0F" + fg: "#CECDC3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 75.6 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/flexoki-plus.yaml b/themes/flexoki-plus.yaml new file mode 100644 index 00000000..405c80ff --- /dev/null +++ b/themes/flexoki-plus.yaml @@ -0,0 +1,53 @@ +name: "Flexoki Plus" +source: + marketplace_id: "arjunsajeev.flexoki-plus" + version: "0.0.3" + installs: 170 + rating: 0 + ratings: 0 + author: "Arjun Sajeev" + repo: "https://github.com/arjunsajeev/flexoki-plus" + url: "https://marketplace.visualstudio.com/items?itemName=arjunsajeev.flexoki-plus" + formats: null +colors: + bg: "#100F0F" + fg: "#CECDC3" + black: "#1C1B1A" + red: "#D14D41" + green: "#879A39" + yellow: "#D0A215" + blue: "#4385BE" + magenta: "#CE5D97" + cyan: "#3AA99F" + white: "#CECDC3" + brightBlack: "#575653" + brightRed: "#D14D41" + brightGreen: "#879A39" + brightYellow: "#D0A215" + brightBlue: "#4385BE" + brightMagenta: "#CE5D97" + brightCyan: "#3AA99F" + brightWhite: "#CECDC3" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 75.6 + black: 0 + red: 32.2 + green: 43.1 + yellow: 55.2 + blue: 34.8 + magenta: 37 + cyan: 47.1 + white: 75.6 + brightBlack: 16.1 + brightRed: 32.2 + brightGreen: 43.1 + brightYellow: 55.2 + brightBlue: 34.8 + brightMagenta: 37 + brightCyan: 47.1 + brightWhite: 75.6 diff --git a/themes/florist-theme--florist-dark.yaml b/themes/florist-theme--florist-dark.yaml new file mode 100644 index 00000000..c978de85 --- /dev/null +++ b/themes/florist-theme--florist-dark.yaml @@ -0,0 +1,53 @@ +name: "Florist Theme (florist-dark)" +source: + marketplace_id: "magnush.florist-theme" + version: "0.1.5" + installs: 1127 + rating: 5 + ratings: 2 + author: "Magnus Hvidtfeldt" + repo: "https://github.com/mch-sg/florist-theme" + url: "https://marketplace.visualstudio.com/items?itemName=magnush.florist-theme" + formats: null +colors: + bg: "#0E0A13" + fg: "#ECE2F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 305 + pair: null + contrast: + fg: 91 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/florist-theme--florist-light.yaml b/themes/florist-theme--florist-light.yaml new file mode 100644 index 00000000..eefe8b9b --- /dev/null +++ b/themes/florist-theme--florist-light.yaml @@ -0,0 +1,53 @@ +name: "Florist Theme (Florist Light)" +source: + marketplace_id: "magnush.florist-theme" + version: "0.1.5" + installs: 1127 + rating: 5 + ratings: 2 + author: "Magnus Hvidtfeldt" + repo: "https://github.com/mch-sg/florist-theme" + url: "https://marketplace.visualstudio.com/items?itemName=magnush.florist-theme" + formats: null +colors: + bg: "#EEE9F4" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 306 + pair: null + contrast: + fg: 94.1 + black: 94.1 + red: 62.1 + green: 37.3 + yellow: 46 + blue: 74.1 + magenta: 62.7 + cyan: 48.7 + white: 74 + brightBlack: 66.8 + brightRed: 62.1 + brightGreen: 29 + brightYellow: 29 + brightBlue: 74.1 + brightMagenta: 62.7 + brightCyan: 48.7 + brightWhite: 36.5 diff --git a/themes/fluminense-theme.yaml b/themes/fluminense-theme.yaml new file mode 100644 index 00000000..cbe28440 --- /dev/null +++ b/themes/fluminense-theme.yaml @@ -0,0 +1,53 @@ +name: "Fluminense Theme" +source: + marketplace_id: "ViniciusReisch.Fluminense-Theme" + version: "2.5.0" + installs: 344 + rating: 5 + ratings: 1 + author: "ViniciusReisch" + repo: "https://github.com/Flyinng/Fluminense-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ViniciusReisch.Fluminense-Theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#CEC4C2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#8C040D" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 70.3 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 10 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/flutter-theme.yaml b/themes/flutter-theme.yaml new file mode 100644 index 00000000..ad45c4cc --- /dev/null +++ b/themes/flutter-theme.yaml @@ -0,0 +1,53 @@ +name: "Flutter Theme" +source: + marketplace_id: "vmcgon.flutter-theme" + version: "0.0.1" + installs: 3707 + rating: 4 + ratings: 1 + author: "vmcgon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=vmcgon.flutter-theme" + formats: null +colors: + bg: "#283142" + fg: "#ECEFF1" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#F5F5F5" + brightBlack: "#666666" + brightRed: "#F48771" + brightGreen: "#6BCF19" + brightYellow: "#D7BA7D" + brightBlue: "#4C78DD" + brightMagenta: "#C586C0" + brightCyan: "#4CD1E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 263 + pair: null + contrast: + fg: 91.8 + black: 0 + red: 32.2 + green: 81.2 + yellow: 97.4 + blue: 10.9 + magenta: 40.9 + cyan: 86.9 + white: 96 + brightBlack: 17.7 + brightRed: 48.7 + brightGreen: 59 + brightYellow: 61.8 + brightBlue: 27.9 + brightMagenta: 43 + brightCyan: 63.5 + brightWhite: 102.6 diff --git a/themes/flux-theme-legacy--flux-dawn.yaml b/themes/flux-theme-legacy--flux-dawn.yaml new file mode 100644 index 00000000..4e4fc220 --- /dev/null +++ b/themes/flux-theme-legacy--flux-dawn.yaml @@ -0,0 +1,53 @@ +name: "Flux Theme (Legacy) (Flux Dawn)" +source: + marketplace_id: "CrappyCodeMaker.crappycode-theme" + version: "2.3.5" + installs: 1207 + rating: 5 + ratings: 2 + author: "Danil_Reznichenko_(Legacy)" + repo: "https://github.com/danilrez/flux-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CrappyCodeMaker.crappycode-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#B36F4D" + black: "#E2875A" + red: "#F50A51" + green: "#04D279" + yellow: "#FDA92B" + blue: "#2B94FD" + magenta: "#FD2BEF" + cyan: "#05E1FA" + white: "#FEEBE2" + brightBlack: "#F99B6C" + brightRed: "#F73B73" + brightGreen: "#35DE95" + brightYellow: "#FDB953" + brightBlue: "#53A8FD" + brightMagenta: "#FD53F2" + brightCyan: "#35E9FD" + brightWhite: "#FEF8F5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 66.8 + black: 51.7 + red: 66 + green: 38 + yellow: 36.6 + blue: 57.5 + magenta: 56.1 + cyan: 26.2 + white: 0 + brightBlack: 41.2 + brightRed: 62.1 + brightGreen: 31.3 + brightYellow: 30.7 + brightBlue: 48.9 + brightMagenta: 51.7 + brightCyan: 22 + brightWhite: 0 diff --git a/themes/flux-theme-legacy--flux-daylight.yaml b/themes/flux-theme-legacy--flux-daylight.yaml new file mode 100644 index 00000000..10a9fbeb --- /dev/null +++ b/themes/flux-theme-legacy--flux-daylight.yaml @@ -0,0 +1,53 @@ +name: "Flux Theme (Legacy) (Flux Daylight)" +source: + marketplace_id: "CrappyCodeMaker.crappycode-theme" + version: "2.3.5" + installs: 1207 + rating: 5 + ratings: 2 + author: "Danil_Reznichenko_(Legacy)" + repo: "https://github.com/danilrez/flux-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CrappyCodeMaker.crappycode-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#252B37" + black: "#393F4C" + red: "#F50A51" + green: "#04D279" + yellow: "#FDA92B" + blue: "#2B94FD" + magenta: "#FD2BEF" + cyan: "#05E1FA" + white: "#D3D5D9" + brightBlack: "#4F5869" + brightRed: "#F73B73" + brightGreen: "#35DE95" + brightYellow: "#FDB953" + brightBlue: "#53A8FD" + brightMagenta: "#FD53F2" + brightCyan: "#35E9FD" + brightWhite: "#F4F5F5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 100.9 + black: 94.5 + red: 66 + green: 38 + yellow: 36.6 + blue: 57.5 + magenta: 56.1 + cyan: 26.2 + white: 22.3 + brightBlack: 84.9 + brightRed: 62.1 + brightGreen: 31.3 + brightYellow: 30.7 + brightBlue: 48.9 + brightMagenta: 51.7 + brightCyan: 22 + brightWhite: 0 diff --git a/themes/flux-theme-legacy--flux-night.yaml b/themes/flux-theme-legacy--flux-night.yaml new file mode 100644 index 00000000..8c5dfbd6 --- /dev/null +++ b/themes/flux-theme-legacy--flux-night.yaml @@ -0,0 +1,53 @@ +name: "Flux Theme (Legacy) (Flux Night)" +source: + marketplace_id: "CrappyCodeMaker.crappycode-theme" + version: "2.3.5" + installs: 1207 + rating: 5 + ratings: 2 + author: "Danil_Reznichenko_(Legacy)" + repo: "https://github.com/danilrez/flux-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CrappyCodeMaker.crappycode-theme" + formats: null +colors: + bg: "#1F242E" + fg: "#8D95A5" + black: "#363E4E" + red: "#F96C96" + green: "#5AF6B3" + yellow: "#F9C16C" + blue: "#6CB2F9" + magenta: "#F96CEF" + cyan: "#5AE7F6" + white: "#B0B5BF" + brightBlack: "#4D576A" + brightRed: "#F98BAC" + brightGreen: "#77F8C0" + brightYellow: "#F9CD8B" + brightBlue: "#8BC2F9" + brightMagenta: "#F98BF2" + brightCyan: "#76ECF9" + brightWhite: "#D3D5D9" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 42.2 + black: 0 + red: 46.5 + green: 82.9 + yellow: 72.2 + blue: 55.4 + magenta: 51 + cyan: 78.2 + white: 59.4 + brightBlack: 14 + brightRed: 55.3 + brightGreen: 85.7 + brightYellow: 77.7 + brightBlue: 64.3 + brightMagenta: 58.8 + brightCyan: 82.2 + brightWhite: 78.3 diff --git a/themes/flux-theme-legacy--flux-twilight.yaml b/themes/flux-theme-legacy--flux-twilight.yaml new file mode 100644 index 00000000..ff115818 --- /dev/null +++ b/themes/flux-theme-legacy--flux-twilight.yaml @@ -0,0 +1,53 @@ +name: "Flux Theme (Legacy) (Flux Twilight)" +source: + marketplace_id: "CrappyCodeMaker.crappycode-theme" + version: "2.3.5" + installs: 1207 + rating: 5 + ratings: 2 + author: "Danil_Reznichenko_(Legacy)" + repo: "https://github.com/danilrez/flux-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CrappyCodeMaker.crappycode-theme" + formats: null +colors: + bg: "#272B3F" + fg: "#878DAB" + black: "#30344B" + red: "#F96C96" + green: "#5AF6B3" + yellow: "#F9C16C" + blue: "#6CB2F9" + magenta: "#F96CEF" + cyan: "#5AE7F6" + white: "#ACB0C3" + brightBlack: "#484E70" + brightRed: "#F98BAC" + brightGreen: "#77F8C0" + brightYellow: "#F9CD8B" + brightBlue: "#8BC2F9" + brightMagenta: "#F98BF2" + brightCyan: "#76ECF9" + brightWhite: "#D0D2DC" +meta: + mode: "dark" + accent: "pink" + hue: 275 + pair: null + contrast: + fg: 37.4 + black: 0 + red: 45 + green: 81.4 + yellow: 70.6 + blue: 53.9 + magenta: 49.5 + cyan: 76.7 + white: 55.6 + brightBlack: 9.9 + brightRed: 53.8 + brightGreen: 84.2 + brightYellow: 76.2 + brightBlue: 62.8 + brightMagenta: 57.3 + brightCyan: 80.6 + brightWhite: 75.2 diff --git a/themes/focal.yaml b/themes/focal.yaml new file mode 100644 index 00000000..330f8228 --- /dev/null +++ b/themes/focal.yaml @@ -0,0 +1,53 @@ +name: "focal" +source: + marketplace_id: "MatthewCocker.focal" + version: "1.0.0" + installs: 119 + rating: 0 + ratings: 0 + author: "Matthew Cocker" + repo: "https://github.com/matthewcocker/focal" + url: "https://marketplace.visualstudio.com/items?itemName=MatthewCocker.focal" + formats: null +colors: + bg: "#171717" + fg: "#B7C5D3" + black: "#41505E" + red: "#D95468" + green: "#8BD49C" + yellow: "#EBBF83" + blue: "#539AFC" + magenta: "#B62D65" + cyan: "#70E1E8" + white: "#FFFFFF" + brightBlack: "#41505E" + brightRed: "#D95468" + brightGreen: "#8BD49C" + brightYellow: "#EBBF83" + brightBlue: "#539AFC" + brightMagenta: "#B62D65" + brightCyan: "#70E1E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 69.5 + black: 12.6 + red: 35.2 + green: 69.9 + yellow: 71.3 + blue: 46.7 + magenta: 22.5 + cyan: 77.3 + white: 106.9 + brightBlack: 12.6 + brightRed: 35.2 + brightGreen: 69.9 + brightYellow: 71.3 + brightBlue: 46.7 + brightMagenta: 22.5 + brightCyan: 77.3 + brightWhite: 106.9 diff --git a/themes/foco-light.yaml b/themes/foco-light.yaml new file mode 100644 index 00000000..c14cd268 --- /dev/null +++ b/themes/foco-light.yaml @@ -0,0 +1,53 @@ +name: "Foco Light" +source: + marketplace_id: "JosafaMarengo.foco-light" + version: "0.2.1" + installs: 925 + rating: 0 + ratings: 0 + author: "Josafá Marengo" + repo: "https://github.com/josafamarengo/focus" + url: "https://marketplace.visualstudio.com/items?itemName=JosafaMarengo.foco-light" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#029F02" + yellow: "#A78E04" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0B809D" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#00D100" + brightYellow: "#C0B400" + brightBlue: "#007AFF" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#828282" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 62 + yellow: 59.3 + blue: 86.1 + magenta: 74.6 + cyan: 71.3 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 39.6 + brightYellow: 42 + brightBlue: 66.5 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 65.9 diff --git a/themes/foggy-forest.yaml b/themes/foggy-forest.yaml new file mode 100644 index 00000000..c691863e --- /dev/null +++ b/themes/foggy-forest.yaml @@ -0,0 +1,53 @@ +name: "foggy-forest" +source: + marketplace_id: "xinkechen.foggy-forest-theme" + version: "0.2.0" + installs: 532 + rating: 0 + ratings: 0 + author: "xinkechen" + repo: "https://github.com/xinkecf35/foggy-forest-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xinkechen.foggy-forest-theme" + formats: null +colors: + bg: "#0D1901" + fg: "#C7D5C9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 130 + pair: null + contrast: + fg: 77.9 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/forest-night-ethereal.yaml b/themes/forest-night-ethereal.yaml new file mode 100644 index 00000000..3afa6764 --- /dev/null +++ b/themes/forest-night-ethereal.yaml @@ -0,0 +1,53 @@ +name: "Forest Night - Ethereal" +source: + marketplace_id: "forrest-knight.forest-night-theme" + version: "1.0.3" + installs: 2769 + rating: 5 + ratings: 3 + author: "Forrest Knight" + repo: "https://github.com/ForrestKnight/forest-night-theme" + url: "https://marketplace.visualstudio.com/items?itemName=forrest-knight.forest-night-theme" + formats: null +colors: + bg: "#1A2125" + fg: "#C9D1D9" + black: "#1A2125" + red: "#E91E63" + green: "#8FBC8F" + yellow: "#F39C12" + blue: "#4ECDC4" + magenta: "#9B59B6" + cyan: "#4ECDC4" + white: "#C9D1D9" + brightBlack: "#4A5568" + brightRed: "#E91E63" + brightGreen: "#8FBC8F" + brightYellow: "#F39C12" + brightBlue: "#66D9EF" + brightMagenta: "#9B59B6" + brightCyan: "#4ECDC4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 233 + pair: null + contrast: + fg: 75.9 + black: 0 + red: 31.5 + green: 57.9 + yellow: 57.3 + blue: 63.5 + magenta: 27.5 + cyan: 63.5 + white: 75.9 + brightBlack: 13.8 + brightRed: 31.5 + brightGreen: 57.9 + brightYellow: 57.3 + brightBlue: 72.3 + brightMagenta: 27.5 + brightCyan: 63.5 + brightWhite: 105.8 diff --git a/themes/forest-night-serenade--forest-night-serenade.yaml b/themes/forest-night-serenade--forest-night-serenade.yaml new file mode 100644 index 00000000..b505d037 --- /dev/null +++ b/themes/forest-night-serenade--forest-night-serenade.yaml @@ -0,0 +1,53 @@ +name: "Forest Night Serenade (Forest Night Serenade)" +source: + marketplace_id: "rul3r.forest-night-serenade" + version: "0.1.9" + installs: 2141 + rating: 5 + ratings: 1 + author: "rul3r" + repo: "https://github.com/rul3rst4/forest-night-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=rul3r.forest-night-serenade" + formats: null +colors: + bg: "#2B2F32" + fg: "#D8CAAC" + black: "#3C474D" + red: "#E68183" + green: "#A7C080" + yellow: "#D9BB80" + blue: "#83B6AF" + magenta: "#D39BB6" + cyan: "#87C095" + white: "#D8CAAC" + brightBlack: "#3C474D" + brightRed: "#E68183" + brightGreen: "#A7C080" + brightYellow: "#D9BB80" + brightBlue: "#83B6AF" + brightMagenta: "#D39BB6" + brightCyan: "#87C095" + brightWhite: "#D8CAAC" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 70.4 + black: 0 + red: 45.4 + green: 58.9 + yellow: 63.1 + blue: 52.8 + magenta: 52.1 + cyan: 56.5 + white: 70.4 + brightBlack: 0 + brightRed: 45.4 + brightGreen: 58.9 + brightYellow: 63.1 + brightBlue: 52.8 + brightMagenta: 52.1 + brightCyan: 56.5 + brightWhite: 70.4 diff --git a/themes/forest-night-serenade-forest-night-italic-serenade.yaml b/themes/forest-night-serenade-forest-night-italic-serenade.yaml new file mode 100644 index 00000000..68dc5c9d --- /dev/null +++ b/themes/forest-night-serenade-forest-night-italic-serenade.yaml @@ -0,0 +1,53 @@ +name: "Forest Night Serenade (Forest Night (Italic) Serenade)" +source: + marketplace_id: "rul3r.forest-night-serenade" + version: "0.1.9" + installs: 2141 + rating: 5 + ratings: 1 + author: "rul3r" + repo: "https://github.com/rul3rst4/forest-night-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=rul3r.forest-night-serenade" + formats: null +colors: + bg: "#323D43" + fg: "#D8CAAC" + black: "#3C474D" + red: "#E68183" + green: "#A7C080" + yellow: "#D9BB80" + blue: "#83B6AF" + magenta: "#D39BB6" + cyan: "#87C095" + white: "#D8CAAC" + brightBlack: "#3C474D" + brightRed: "#E68183" + brightGreen: "#A7C080" + brightYellow: "#D9BB80" + brightBlue: "#83B6AF" + brightMagenta: "#D39BB6" + brightCyan: "#87C095" + brightWhite: "#D8CAAC" +meta: + mode: "dark" + accent: "orange" + hue: 232 + pair: null + contrast: + fg: 66.9 + black: 0 + red: 41.8 + green: 55.3 + yellow: 59.5 + blue: 49.2 + magenta: 48.5 + cyan: 52.9 + white: 66.9 + brightBlack: 0 + brightRed: 41.8 + brightGreen: 55.3 + brightYellow: 59.5 + brightBlue: 49.2 + brightMagenta: 48.5 + brightCyan: 52.9 + brightWhite: 66.9 diff --git a/themes/forest.yaml b/themes/forest.yaml new file mode 100644 index 00000000..2d4d96ee --- /dev/null +++ b/themes/forest.yaml @@ -0,0 +1,53 @@ +name: "Forest" +source: + marketplace_id: "feb19.theme-forest" + version: "0.1.1" + installs: 3193 + rating: 5 + ratings: 1 + author: "feb19" + repo: "https://github.com/feb19/theme-forest" + url: "https://marketplace.visualstudio.com/items?itemName=feb19.theme-forest" + formats: null +colors: + bg: "#282E2D" + fg: "#C0C7BC" + black: "#242424" + red: "#6F3C3C" + green: "#577341" + yellow: "#9A8653" + blue: "#6B898A" + magenta: "#6A416B" + cyan: "#4E6C60" + white: "#C7C3BC" + brightBlack: "#424446" + brightRed: "#E37272" + brightGreen: "#BBED84" + brightYellow: "#EDC766" + brightBlue: "#94CBDA" + brightMagenta: "#E47CE7" + brightCyan: "#93DEC0" + brightWhite: "#E9F1E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 67 + black: 0 + red: 8 + green: 20.8 + yellow: 34.2 + blue: 32 + magenta: 9.8 + cyan: 18.5 + white: 66.2 + brightBlack: 0 + brightRed: 40.7 + brightGreen: 82.1 + brightYellow: 70.9 + brightBlue: 65.6 + brightMagenta: 48.6 + brightCyan: 73.1 + brightWhite: 92.7 diff --git a/themes/forgive-green.yaml b/themes/forgive-green.yaml new file mode 100644 index 00000000..53c6c9b7 --- /dev/null +++ b/themes/forgive-green.yaml @@ -0,0 +1,53 @@ +name: "Forgive Green" +source: + marketplace_id: "luqimin.forgive-green" + version: "0.2.1" + installs: 24177 + rating: 4.8 + ratings: 5 + author: "luqimin" + repo: "https://github.com/luqimin/green-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=luqimin.forgive-green" + formats: null +colors: + bg: "#C7EDCC" + fg: "#499504" + black: "#000000" + red: "#FD6C67" + green: "#097E00" + yellow: "#CDCB00" + blue: "#5597EF" + magenta: "#FE76FF" + cyan: "#39CBCC" + white: "#BBBBBB" + brightBlack: "#686868" + brightRed: "#FE8885" + brightGreen: "#74FA61" + brightYellow: "#FFFB00" + brightBlue: "#7FAFF4" + brightMagenta: "#FE9CFF" + brightCyan: "#6FDADA" + brightWhite: "#F1F1F1" +meta: + mode: "light" + accent: "pink" + hue: 149 + pair: null + contrast: + fg: 48.5 + black: 89.8 + red: 36.8 + green: 59.1 + yellow: 14.8 + blue: 39.8 + magenta: 27.8 + cyan: 21.6 + white: 20.4 + brightBlack: 61.6 + brightRed: 29 + brightGreen: 0 + brightYellow: 8.8 + brightBlue: 27.9 + brightMagenta: 18 + brightCyan: 12.3 + brightWhite: 0 diff --git a/themes/fosphor.yaml b/themes/fosphor.yaml new file mode 100644 index 00000000..3ff8439d --- /dev/null +++ b/themes/fosphor.yaml @@ -0,0 +1,53 @@ +name: "Fosphor" +source: + marketplace_id: "jojihatzz.fosphor" + version: "0.0.1" + installs: 57 + rating: 0 + ratings: 0 + author: "jojihatzz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jojihatzz.fosphor" + formats: null +colors: + bg: "#111B13" + fg: "#A8E6A3" + black: "#111B13" + red: "#F07178" + green: "#C3E88D" + yellow: "#F8B965" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#EEFFFF" + brightBlack: "#5D7E5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#EEFFFF" +meta: + mode: "dark" + accent: "red" + hue: 150 + pair: null + contrast: + fg: 80.9 + black: 0 + red: 46.4 + green: 84 + yellow: 70.3 + blue: 55.7 + magenta: 53.6 + cyan: 78.1 + white: 104.4 + brightBlack: 28.9 + brightRed: 43.4 + brightGreen: 84 + brightYellow: 78.7 + brightBlue: 55.7 + brightMagenta: 53.6 + brightCyan: 78.1 + brightWhite: 104.4 diff --git a/themes/four-sages-theme.yaml b/themes/four-sages-theme.yaml new file mode 100644 index 00000000..571f4520 --- /dev/null +++ b/themes/four-sages-theme.yaml @@ -0,0 +1,53 @@ +name: "Four Sages Theme" +source: + marketplace_id: "wavebeem.four-sages-vscode" + version: "1.0.0" + installs: 209 + rating: 0 + ratings: 0 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/four-sages-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.four-sages-vscode" + formats: null +colors: + bg: "#223130" + fg: "#C0D2D0" + black: "#23504E" + red: "#FF95A9" + green: "#81D943" + yellow: "#FF9C75" + blue: "#8FBEFF" + magenta: "#F58EFF" + cyan: "#00DDD4" + white: "#FFFFFF" + brightBlack: "#23504E" + brightRed: "#FF95A9" + brightGreen: "#81D943" + brightYellow: "#FF9C75" + brightBlue: "#8FBEFF" + brightMagenta: "#F58EFF" + brightCyan: "#00DDD4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 191 + pair: null + contrast: + fg: 72.3 + black: 0 + red: 57.3 + green: 66 + yellow: 58 + blue: 61.3 + magenta: 57.8 + cyan: 68.2 + white: 103.2 + brightBlack: 0 + brightRed: 57.3 + brightGreen: 66 + brightYellow: 58 + brightBlue: 61.3 + brightMagenta: 57.8 + brightCyan: 68.2 + brightWhite: 103.2 diff --git a/themes/frame.yaml b/themes/frame.yaml new file mode 100644 index 00000000..0d1823c9 --- /dev/null +++ b/themes/frame.yaml @@ -0,0 +1,53 @@ +name: "frame" +source: + marketplace_id: "AkashK.frame" + version: "0.0.2" + installs: 1100 + rating: 0 + ratings: 0 + author: "Akash K" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AkashK.frame" + formats: null +colors: + bg: "#232323" + fg: "#8F8F8F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 39.5 + black: 0 + red: 25.1 + green: 51.4 + yellow: 84 + blue: 25.8 + magenta: 28.2 + cyan: 46 + white: 88.4 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/fresh-green-theme.yaml b/themes/fresh-green-theme.yaml new file mode 100644 index 00000000..d134d8ea --- /dev/null +++ b/themes/fresh-green-theme.yaml @@ -0,0 +1,53 @@ +name: "Fresh Green Theme" +source: + marketplace_id: "wavebeem.fresh-green-vscode" + version: "1.0.0" + installs: 320 + rating: 0 + ratings: 0 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/fresh-green-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.fresh-green-vscode" + formats: null +colors: + bg: "#FFFFFF" + fg: "#161616" + black: "#2E2E2E" + red: "#D2004F" + green: "#007C1F" + yellow: "#845B00" + blue: "#7700FF" + magenta: "#C3009B" + cyan: "#00718F" + white: "#FFFFFF" + brightBlack: "#2E2E2E" + brightRed: "#D2004F" + brightGreen: "#007C1F" + brightYellow: "#845B00" + brightBlue: "#7700FF" + brightMagenta: "#C3009B" + brightCyan: "#00718F" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 104.8 + black: 100.1 + red: 74.5 + green: 76.1 + yellow: 79.9 + blue: 79.5 + magenta: 75.1 + cyan: 77.3 + white: 0 + brightBlack: 100.1 + brightRed: 74.5 + brightGreen: 76.1 + brightYellow: 79.9 + brightBlue: 79.5 + brightMagenta: 75.1 + brightCyan: 77.3 + brightWhite: 0 diff --git a/themes/friendly-dark.yaml b/themes/friendly-dark.yaml new file mode 100644 index 00000000..938605d1 --- /dev/null +++ b/themes/friendly-dark.yaml @@ -0,0 +1,53 @@ +name: "Friendly Dark" +source: + marketplace_id: "Fukumi.friendly-dark" + version: "2.2.27" + installs: 2076 + rating: 5 + ratings: 1 + author: "Satou Fukumi" + repo: "https://github.com/satoufukumi/friendly-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Fukumi.friendly-dark" + formats: null +colors: + bg: "#141523" + fg: "#C8C7D5" + black: "#0C0C0C" + red: "#C50F1F" + green: "#16B311" + yellow: "#FFE448" + blue: "#0037DA" + magenta: "#881798" + cyan: "#3A96DD" + white: "#C8C7D5" + brightBlack: "#767676" + brightRed: "#E74856" + brightGreen: "#16C60C" + brightYellow: "#F9F1A5" + brightBlue: "#3B78FF" + brightMagenta: "#B4009E" + brightCyan: "#61D6D6" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "purple" + hue: 280 + pair: null + contrast: + fg: 72.5 + black: 0 + red: 22.9 + green: 47.7 + yellow: 89.3 + blue: 14.4 + magenta: 14.9 + cyan: 42.1 + white: 72.5 + brightBlack: 29.2 + brightRed: 35.9 + brightGreen: 56.6 + brightYellow: 96.1 + brightBlue: 34.4 + brightMagenta: 22.8 + brightCyan: 70.6 + brightWhite: 98.4 diff --git a/themes/frost-theme.yaml b/themes/frost-theme.yaml new file mode 100644 index 00000000..27e3a9c7 --- /dev/null +++ b/themes/frost-theme.yaml @@ -0,0 +1,53 @@ +name: "frost theme" +source: + marketplace_id: "gabrielneves.frost-dark-theme" + version: "0.0.2" + installs: 19 + rating: 5 + ratings: 1 + author: "gabriel neves" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gabrielneves.frost-dark-theme" + formats: null +colors: + bg: "#060606" + fg: "#A3A3A3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#848484" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 52.4 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 36.6 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/fullblack.yaml b/themes/fullblack.yaml new file mode 100644 index 00000000..f14c2dcd --- /dev/null +++ b/themes/fullblack.yaml @@ -0,0 +1,53 @@ +name: "FullBlack" +source: + marketplace_id: "TioAurelion.fullblack" + version: "0.0.1" + installs: 140 + rating: 0 + ratings: 0 + author: "TioAurelion" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TioAurelion.fullblack" + formats: null +colors: + bg: "#000000" + fg: "#F61D6F" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 37 + black: 7.5 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/fullstacksjs-theme.yaml b/themes/fullstacksjs-theme.yaml new file mode 100644 index 00000000..f701afbe --- /dev/null +++ b/themes/fullstacksjs-theme.yaml @@ -0,0 +1,53 @@ +name: "FullstacksJS Theme" +source: + marketplace_id: "FullstacksJS.fullstacksjs-vscode" + version: "1.5.1" + installs: 1405 + rating: 5 + ratings: 5 + author: "FullstacksJS" + repo: "https://github.com/fullstacksjs/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=FullstacksJS.fullstacksjs-vscode" + formats: null +colors: + bg: "#23252E" + fg: "#FFFFFF" + black: "#313744" + red: "#E17E85" + green: "#5ECB8C" + yellow: "#F6CA52" + blue: "#4CB2FF" + magenta: "#9292FF" + cyan: "#2DCED0" + white: "#F8F8F8" + brightBlack: "#556570" + brightRed: "#FF7272" + brightGreen: "#5BF29A" + brightYellow: "#FFD04F" + brightBlue: "#4CB2FF" + brightMagenta: "#A7A7FF" + brightCyan: "#24E8EA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 275 + pair: null + contrast: + fg: 104.9 + black: 0 + red: 45.4 + green: 60.4 + yellow: 74.7 + blue: 54 + magenta: 46.7 + cyan: 62.9 + white: 100.3 + brightBlack: 18.7 + brightRed: 47.9 + brightGreen: 79.9 + brightYellow: 78.7 + brightBlue: 54 + brightMagenta: 56.3 + brightCyan: 76.6 + brightWhite: 104.9 diff --git a/themes/functional-matrix-clubcleaver.yaml b/themes/functional-matrix-clubcleaver.yaml new file mode 100644 index 00000000..ebd19803 --- /dev/null +++ b/themes/functional-matrix-clubcleaver.yaml @@ -0,0 +1,53 @@ +name: "Functional Matrix - Clubcleaver" +source: + marketplace_id: "clubcleaver.functional-matrix" + version: "1.0.1" + installs: 521 + rating: 5 + ratings: 1 + author: "clubcleaver" + repo: "https://github.com/clubcleaver/functional-matrix" + url: "https://marketplace.visualstudio.com/items?itemName=clubcleaver.functional-matrix" + formats: null +colors: + bg: "#000000" + fg: "#44FF00" + black: "#000000" + red: "#008A23" + green: "#65FF8E" + yellow: "#639408" + blue: "#62FF6C" + magenta: "#BC3FBC" + cyan: "#F11E1E" + white: "#8DFF97" + brightBlack: "#D50A0A" + brightRed: "#FFFFFF" + brightGreen: "#0EF945" + brightYellow: "#F5F543" + brightBlue: "#86C900" + brightMagenta: "#5B005B" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 87.2 + black: 0 + red: 31.1 + green: 89.7 + yellow: 37.9 + blue: 88.9 + magenta: 30.8 + cyan: 34.6 + white: 92.2 + brightBlack: 27.3 + brightRed: 107.9 + brightGreen: 83.5 + brightYellow: 96.6 + brightBlue: 63.3 + brightMagenta: 0 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/furukawa-theme.yaml b/themes/furukawa-theme.yaml new file mode 100644 index 00000000..632cc164 --- /dev/null +++ b/themes/furukawa-theme.yaml @@ -0,0 +1,53 @@ +name: "Furukawa Theme" +source: + marketplace_id: "superfurukawa.furukawa-theme" + version: "1.1.3" + installs: 100 + rating: 0 + ratings: 0 + author: "superfurukawa" + repo: "https://github.com/superfurukawa/vscode-furukawa-theme" + url: "https://marketplace.visualstudio.com/items?itemName=superfurukawa.furukawa-theme" + formats: null +colors: + bg: "#C0FFF8" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#757575" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#949494" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 98.9 + black: 98.9 + red: 66.8 + green: 42.1 + yellow: 50.7 + blue: 78.9 + magenta: 67.4 + cyan: 53.4 + white: 64.9 + brightBlack: 71.6 + brightRed: 66.8 + brightGreen: 33.7 + brightYellow: 33.8 + brightBlue: 78.9 + brightMagenta: 67.4 + brightCyan: 53.4 + brightWhite: 50 diff --git a/themes/g-dark-themes-g-dark-blue-whale.yaml b/themes/g-dark-themes-g-dark-blue-whale.yaml new file mode 100644 index 00000000..3e2a250a --- /dev/null +++ b/themes/g-dark-themes-g-dark-blue-whale.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark (Blue Whale))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#00344A" + fg: "#DCF2F7" + black: "#5D6B7D" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#5C717C" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 233 + pair: null + contrast: + fg: 91.3 + black: 19.2 + red: 32.1 + green: 70.8 + yellow: 81 + blue: 27.9 + magenta: 36.2 + cyan: 53 + white: 87.3 + brightBlack: 21 + brightRed: 25.3 + brightGreen: 56.3 + brightYellow: 89.5 + brightBlue: 27.9 + brightMagenta: 21.2 + brightCyan: 61.9 + brightWhite: 102.4 diff --git a/themes/g-dark-themes-g-dark-jacksons-purple.yaml b/themes/g-dark-themes-g-dark-jacksons-purple.yaml new file mode 100644 index 00000000..94b615e0 --- /dev/null +++ b/themes/g-dark-themes-g-dark-jacksons-purple.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark (Jacksons Purple))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#2A3A71" + fg: "#C2D1DA" + black: "#6D7D93" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#6A828E" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 269 + pair: null + contrast: + fg: 68.1 + black: 23.6 + red: 28.4 + green: 67.1 + yellow: 77.3 + blue: 24.3 + magenta: 32.6 + cyan: 49.3 + white: 83.6 + brightBlack: 24.9 + brightRed: 21.6 + brightGreen: 52.6 + brightYellow: 85.8 + brightBlue: 24.2 + brightMagenta: 17.5 + brightCyan: 58.3 + brightWhite: 98.8 diff --git a/themes/g-dark-themes-g-dark-light-alice-blue.yaml b/themes/g-dark-themes-g-dark-light-alice-blue.yaml new file mode 100644 index 00000000..50c8dedf --- /dev/null +++ b/themes/g-dark-themes-g-dark-light-alice-blue.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark-light (Alice Blue))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#F8FCFF" + fg: "#79848F" + black: "#A8C5E0" + red: "#C92541" + green: "#2FC722" + yellow: "#999514" + blue: "#2254C1" + magenta: "#7F25BB" + cyan: "#1482AD" + white: "#55575E" + brightBlack: "#ABC8DA" + brightRed: "#EB2244" + brightGreen: "#21D548" + brightYellow: "#948A03" + brightBlue: "#1A56D8" + brightMagenta: "#9313E8" + brightCyan: "#0E9BD3" + brightWhite: "#9CAEC8" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 63.5 + black: 30.9 + red: 73.5 + green: 41.6 + yellow: 56.3 + blue: 80.5 + magenta: 81.9 + cyan: 67.5 + white: 82.9 + brightBlack: 29.7 + brightRed: 65.8 + brightGreen: 35.1 + brightYellow: 60.9 + brightBlue: 78.1 + brightMagenta: 75.8 + brightCyan: 55.9 + brightWhite: 42.3 diff --git a/themes/g-dark-themes-g-dark-light-glitter.yaml b/themes/g-dark-themes-g-dark-light-glitter.yaml new file mode 100644 index 00000000..98675327 --- /dev/null +++ b/themes/g-dark-themes-g-dark-light-glitter.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark-light (Glitter))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#E3ECFC" + fg: "#546A7B" + black: "#586C77" + red: "#C92541" + green: "#2CBC1F" + yellow: "#9C9816" + blue: "#2254C1" + magenta: "#7F25BB" + cyan: "#1482AD" + white: "#2B3A40" + brightBlack: "#607783" + brightRed: "#EB2244" + brightGreen: "#1EC542" + brightYellow: "#998F04" + brightBlue: "#1A56D8" + brightMagenta: "#9313E8" + brightCyan: "#0E9BD3" + brightWhite: "#2A3A40" +meta: + mode: "light" + accent: "magenta" + hue: 262 + pair: null + contrast: + fg: 66.5 + black: 65.8 + red: 64 + green: 37.2 + yellow: 45.4 + blue: 71 + magenta: 72.4 + cyan: 58 + white: 85.4 + brightBlack: 61 + brightRed: 56.3 + brightGreen: 33.1 + brightYellow: 49 + brightBlue: 68.6 + brightMagenta: 66.3 + brightCyan: 46.5 + brightWhite: 85.4 diff --git a/themes/g-dark-themes-g-dark-light-hint-of-red.yaml b/themes/g-dark-themes-g-dark-light-hint-of-red.yaml new file mode 100644 index 00000000..a74b39a4 --- /dev/null +++ b/themes/g-dark-themes-g-dark-light-hint-of-red.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark-light (Hint of Red))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#F9F9F9" + fg: "#5F6870" + black: "#737272" + red: "#F02B4B" + green: "#0DC406" + yellow: "#B3A402" + blue: "#336DEB" + magenta: "#940DEE" + cyan: "#189ED3" + white: "#7A7878" + brightBlack: "#7C7D7D" + brightRed: "#EB3C59" + brightGreen: "#17AB09" + brightYellow: "#ACAC02" + brightBlue: "#1554DC" + brightMagenta: "#8614D2" + brightCyan: "#18B1DF" + brightWhite: "#777575" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 74.8 + black: 69.7 + red: 62.5 + green: 42 + yellow: 46.2 + blue: 68.1 + magenta: 73.8 + cyan: 53.3 + white: 66.9 + brightBlack: 64.8 + brightRed: 61.8 + brightGreen: 53.1 + brightYellow: 44 + brightBlue: 76.9 + brightMagenta: 78.4 + brightCyan: 45 + brightWhite: 68.2 diff --git a/themes/g-dark-themes-g-dark-minimal-2-astronaut-blue.yaml b/themes/g-dark-themes-g-dark-minimal-2-astronaut-blue.yaml new file mode 100644 index 00000000..67d147f7 --- /dev/null +++ b/themes/g-dark-themes-g-dark-minimal-2-astronaut-blue.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark-minimal-2 (Astronaut Blue))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#18475A" + fg: "#B8F2FF" + black: "#6C87A8" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#5791B2" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 228 + pair: null + contrast: + fg: 82.5 + black: 26.4 + red: 26.9 + green: 65.6 + yellow: 75.8 + blue: 22.8 + magenta: 31 + cyan: 47.8 + white: 82.1 + brightBlack: 29.2 + brightRed: 20.1 + brightGreen: 51.1 + brightYellow: 84.3 + brightBlue: 22.7 + brightMagenta: 16 + brightCyan: 56.8 + brightWhite: 97.3 diff --git a/themes/g-dark-themes-g-dark-minimal-3-oxford-blue.yaml b/themes/g-dark-themes-g-dark-minimal-3-oxford-blue.yaml new file mode 100644 index 00000000..4dc265b9 --- /dev/null +++ b/themes/g-dark-themes-g-dark-minimal-3-oxford-blue.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark-minimal-3 (Oxford Blue))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#263137" + fg: "#DCF2F7" + black: "#68788D" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#557483" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 232 + pair: null + contrast: + fg: 91.7 + black: 25.4 + red: 32.5 + green: 71.3 + yellow: 81.4 + blue: 28.4 + magenta: 36.7 + cyan: 53.5 + white: 87.8 + brightBlack: 22.3 + brightRed: 25.7 + brightGreen: 56.7 + brightYellow: 89.9 + brightBlue: 28.3 + brightMagenta: 21.7 + brightCyan: 62.4 + brightWhite: 102.9 diff --git a/themes/g-dark-themes-g-dark-minimal-midnight.yaml b/themes/g-dark-themes-g-dark-minimal-midnight.yaml new file mode 100644 index 00000000..4c9f929d --- /dev/null +++ b/themes/g-dark-themes-g-dark-minimal-midnight.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark-minimal (Midnight))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#102740" + fg: "#99A7B1" + black: "#5F6D7F" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#49616C" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 252 + pair: null + contrast: + fg: 50.3 + black: 22.3 + red: 34.3 + green: 73.1 + yellow: 83.2 + blue: 30.2 + magenta: 38.5 + cyan: 55.2 + white: 89.6 + brightBlack: 16.3 + brightRed: 27.5 + brightGreen: 58.5 + brightYellow: 91.7 + brightBlue: 30.1 + brightMagenta: 23.5 + brightCyan: 64.2 + brightWhite: 104.7 diff --git a/themes/g-dark-themes-g-dark-one-love-black-pearl.yaml b/themes/g-dark-themes-g-dark-one-love-black-pearl.yaml new file mode 100644 index 00000000..51cdf551 --- /dev/null +++ b/themes/g-dark-themes-g-dark-one-love-black-pearl.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark-one-love (Black Pearl))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#081A20" + fg: "#CEDBDB" + black: "#5D6B7D" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#425A65" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 222 + pair: null + contrast: + fg: 82 + black: 23.5 + red: 36.4 + green: 75.1 + yellow: 85.3 + blue: 32.2 + magenta: 40.5 + cyan: 57.3 + white: 91.6 + brightBlack: 15.6 + brightRed: 29.6 + brightGreen: 60.6 + brightYellow: 93.8 + brightBlue: 32.2 + brightMagenta: 25.5 + brightCyan: 66.2 + brightWhite: 106.7 diff --git a/themes/g-dark-themes-g-dark-one-love.yaml b/themes/g-dark-themes-g-dark-one-love.yaml new file mode 100644 index 00000000..509ecd64 --- /dev/null +++ b/themes/g-dark-themes-g-dark-one-love.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark (One Love))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#1C1D27" + fg: "#CEDBDB" + black: "#59677A" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#4A6473" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 280 + pair: null + contrast: + fg: 81.3 + black: 21.2 + red: 35.7 + green: 74.5 + yellow: 84.6 + blue: 31.6 + magenta: 39.9 + cyan: 56.7 + white: 91 + brightBlack: 19 + brightRed: 28.9 + brightGreen: 59.9 + brightYellow: 93.1 + brightBlue: 31.5 + brightMagenta: 24.9 + brightCyan: 65.6 + brightWhite: 106.1 diff --git a/themes/g-dark-themes-g-dark-shader-h-ck3r-midnight-moss.yaml b/themes/g-dark-themes-g-dark-shader-h-ck3r-midnight-moss.yaml new file mode 100644 index 00000000..47350c36 --- /dev/null +++ b/themes/g-dark-themes-g-dark-shader-h-ck3r-midnight-moss.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark-Shader - H@ck3r (Midnight Moss))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#030C0C" + fg: "#B5DFCA" + black: "#648464" + red: "#F23857" + green: "#9FDA47" + yellow: "#F5E044" + blue: "#5B8DF8" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#EDECEC" + brightBlack: "#576E6E" + brightRed: "#E92445" + brightGreen: "#4BDD1A" + brightYellow: "#E4D828" + brightBlue: "#175DF4" + brightMagenta: "#C792EA" + brightCyan: "#3CCFE9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 195 + pair: null + contrast: + fg: 81.2 + black: 32.7 + red: 37.3 + green: 73.5 + yellow: 86.7 + blue: 42.9 + magenta: 54.6 + cyan: 79.1 + white: 95.4 + brightBlack: 24.4 + brightRed: 33.2 + brightGreen: 69.6 + brightYellow: 80.5 + brightBlue: 25.8 + brightMagenta: 54.6 + brightCyan: 67.7 + brightWhite: 107.7 diff --git a/themes/g-dark-themes-g-dark-shader-haiti.yaml b/themes/g-dark-themes-g-dark-shader-haiti.yaml new file mode 100644 index 00000000..ed0a923b --- /dev/null +++ b/themes/g-dark-themes-g-dark-shader-haiti.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark-Shader (Haiti))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#270B47" + fg: "#E4C8FD" + black: "#5E7486" + red: "#C92541" + green: "#36CE28" + yellow: "#DDC125" + blue: "#2459CE" + magenta: "#8628C5" + cyan: "#1482AD" + white: "#E9E5E5" + brightBlack: "#516B77" + brightRed: "#F73051" + brightGreen: "#12F744" + brightYellow: "#F5E729" + brightBlue: "#2366F5" + brightMagenta: "#A32EF1" + brightCyan: "#02ACF0" + brightWhite: "#D1CECE" +meta: + mode: "dark" + accent: "green" + hue: 299 + pair: null + contrast: + fg: 77.8 + black: 26.1 + red: 24.1 + green: 60 + yellow: 67.8 + blue: 19.7 + magenta: 18.1 + cyan: 30.1 + white: 89.7 + brightBlack: 21.7 + brightRed: 35.9 + brightGreen: 80.6 + brightYellow: 88 + brightBlue: 26.7 + brightMagenta: 26.8 + brightCyan: 50.4 + brightWhite: 75.4 diff --git a/themes/g-dark-themes-g-dark-shader-mirage.yaml b/themes/g-dark-themes-g-dark-shader-mirage.yaml new file mode 100644 index 00000000..01651def --- /dev/null +++ b/themes/g-dark-themes-g-dark-shader-mirage.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark-Shader (Mirage))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#190B29" + fg: "#DFB2DD" + black: "#B165A0" + red: "#C92541" + green: "#36CE28" + yellow: "#DDC125" + blue: "#2459CE" + magenta: "#8628C5" + cyan: "#1482AD" + white: "#E9E5E5" + brightBlack: "#845C83" + brightRed: "#F73051" + brightGreen: "#12F744" + brightYellow: "#F5E729" + brightBlue: "#2366F5" + brightMagenta: "#A32EF1" + brightCyan: "#02ACF0" + brightWhite: "#D1CECE" +meta: + mode: "dark" + accent: "green" + hue: 303 + pair: null + contrast: + fg: 68 + black: 33.8 + red: 25.3 + green: 61.2 + yellow: 69 + blue: 20.9 + magenta: 19.3 + cyan: 31.3 + white: 90.9 + brightBlack: 23.9 + brightRed: 37.1 + brightGreen: 81.8 + brightYellow: 89.2 + brightBlue: 27.9 + brightMagenta: 28 + brightCyan: 51.6 + brightWhite: 76.6 diff --git a/themes/g-dark-themes-g-dark-shift-midnight-moss.yaml b/themes/g-dark-themes-g-dark-shift-midnight-moss.yaml new file mode 100644 index 00000000..8abe295f --- /dev/null +++ b/themes/g-dark-themes-g-dark-shift-midnight-moss.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark-Shift (Midnight Moss))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#030B0B" + fg: "#E1E5E5" + black: "#78A795" + red: "#F23857" + green: "#9FDA47" + yellow: "#F5E044" + blue: "#5B8DF8" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#D6D9D8" + brightBlack: "#637A7A" + brightRed: "#E92445" + brightGreen: "#4BDD1A" + brightYellow: "#E4D828" + brightBlue: "#175DF4" + brightMagenta: "#C792EA" + brightCyan: "#3CCFE9" + brightWhite: "#BCD2D2" +meta: + mode: "dark" + accent: "green" + hue: 196 + pair: null + contrast: + fg: 90.4 + black: 49.3 + red: 37.3 + green: 73.6 + yellow: 86.7 + blue: 43 + magenta: 54.6 + cyan: 79.1 + white: 83 + brightBlack: 29.8 + brightRed: 33.2 + brightGreen: 69.6 + brightYellow: 80.5 + brightBlue: 25.8 + brightMagenta: 54.6 + brightCyan: 67.8 + brightWhite: 76.5 diff --git a/themes/g-dark-themes-g-dark-shift-vulcan.yaml b/themes/g-dark-themes-g-dark-shift-vulcan.yaml new file mode 100644 index 00000000..303c283e --- /dev/null +++ b/themes/g-dark-themes-g-dark-shift-vulcan.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark-shift (Vulcan))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#17181F" + fg: "#E1E5E5" + black: "#5A687A" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#435964" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 279 + pair: null + contrast: + fg: 89.3 + black: 22.2 + red: 36.4 + green: 75.1 + yellow: 85.3 + blue: 32.2 + magenta: 40.5 + cyan: 57.3 + white: 91.6 + brightBlack: 15.3 + brightRed: 29.6 + brightGreen: 60.6 + brightYellow: 93.8 + brightBlue: 32.2 + brightMagenta: 25.5 + brightCyan: 66.2 + brightWhite: 106.7 diff --git a/themes/g-dark-themes-g-dark-valhalla.yaml b/themes/g-dark-themes-g-dark-valhalla.yaml new file mode 100644 index 00000000..8cbe34fe --- /dev/null +++ b/themes/g-dark-themes-g-dark-valhalla.yaml @@ -0,0 +1,53 @@ +name: "G Dark-Themes (G Dark (Valhalla))" +source: + marketplace_id: "Stonec0der.g-dark-theme" + version: "5.0.1" + installs: 10986 + rating: 5 + ratings: 3 + author: "stonecoder" + repo: "https://github.com/stoneC0der/g-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Stonec0der.g-dark-theme" + formats: null +colors: + bg: "#292F46" + fg: "#C4D2E0" + black: "#708095" + red: "#EE405D" + green: "#A1DF45" + yellow: "#EEE151" + blue: "#4377E8" + magenta: "#B66EE6" + cyan: "#55B9E1" + white: "#EEE6E6" + brightBlack: "#59737F" + brightRed: "#DF2040" + brightGreen: "#42CD2D" + brightYellow: "#EAF517" + brightBlue: "#3F76ED" + brightMagenta: "#9B36DF" + brightCyan: "#59CAF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 273 + pair: null + contrast: + fg: 73.1 + black: 28.9 + red: 32.4 + green: 71.1 + yellow: 81.3 + blue: 28.2 + magenta: 36.5 + cyan: 53.3 + white: 87.6 + brightBlack: 21.9 + brightRed: 25.6 + brightGreen: 56.6 + brightYellow: 89.8 + brightBlue: 28.2 + brightMagenta: 21.5 + brightCyan: 62.2 + brightWhite: 102.7 diff --git a/themes/gab-dark.yaml b/themes/gab-dark.yaml new file mode 100644 index 00000000..9a23fb87 --- /dev/null +++ b/themes/gab-dark.yaml @@ -0,0 +1,53 @@ +name: "Gab Dark" +source: + marketplace_id: "Gabriel-GRS.gab-code-theme" + version: "0.0.1" + installs: 70 + rating: 0 + ratings: 0 + author: "Gabriel-GRS" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Gabriel-GRS.gab-code-theme" + formats: null +colors: + bg: "#1B333D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 227 + pair: null + contrast: + fg: 75.3 + black: 0 + red: 22.6 + green: 48.8 + yellow: 81.5 + blue: 23.3 + magenta: 25.6 + cyan: 43.4 + white: 85.9 + brightBlack: 17.9 + brightRed: 34.4 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.8 + brightMagenta: 41.2 + brightCyan: 51.2 + brightWhite: 85.9 diff --git a/themes/gabi-dark.yaml b/themes/gabi-dark.yaml new file mode 100644 index 00000000..1ad9be23 --- /dev/null +++ b/themes/gabi-dark.yaml @@ -0,0 +1,53 @@ +name: "Gabi Dark" +source: + marketplace_id: "gabisantosdev.gabi-theme" + version: "0.0.2" + installs: 331 + rating: 0 + ratings: 0 + author: "Gabriel Santos" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gabisantosdev.gabi-theme" + formats: null +colors: + bg: "#050A30" + fg: "#7EC8E3" + black: "#666666" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#7D7D7D" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + pair: null + contrast: + fg: 66.9 + black: 22.5 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 32.8 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.8 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/galactus--galactus.yaml b/themes/galactus--galactus.yaml new file mode 100644 index 00000000..c8f2db36 --- /dev/null +++ b/themes/galactus--galactus.yaml @@ -0,0 +1,53 @@ +name: "galactus (galactus)" +source: + marketplace_id: "ibrhalilaydn.galactus-theme" + version: "0.1.0" + installs: 306 + rating: 0 + ratings: 0 + author: "ibrhalil" + repo: "https://github.com/ibrhalil/galactus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ibrhalilaydn.galactus-theme" + formats: null +colors: + bg: "#0C0414" + fg: "#999999" + black: "#242424" + red: "#8A2F58" + green: "#7E63B2" + yellow: "#914E89" + blue: "#3E6287" + magenta: "#5E468C" + cyan: "#2B7694" + white: "#899CA1" + brightBlack: "#474747" + brightRed: "#CF4F88" + brightGreen: "#53A6A6" + brightYellow: "#BF85CC" + brightBlue: "#4779B3" + brightMagenta: "#7F62B3" + brightCyan: "#47959E" + brightWhite: "#C0C0C0" +meta: + mode: "dark" + accent: "red" + hue: 307 + pair: null + contrast: + fg: 47.1 + black: 0 + red: 15 + green: 28 + yellow: 23.2 + blue: 20.2 + magenta: 15.4 + cyan: 26.7 + white: 46.9 + brightBlack: 10.8 + brightRed: 34.2 + brightGreen: 47.3 + brightYellow: 47.6 + brightBlue: 30.4 + brightMagenta: 27.9 + brightCyan: 39.6 + brightWhite: 68.5 diff --git a/themes/galactus--jwrdark.yaml b/themes/galactus--jwrdark.yaml new file mode 100644 index 00000000..337e79d9 --- /dev/null +++ b/themes/galactus--jwrdark.yaml @@ -0,0 +1,53 @@ +name: "galactus (jwrdark)" +source: + marketplace_id: "ibrhalilaydn.galactus-theme" + version: "0.1.0" + installs: 306 + rating: 0 + ratings: 0 + author: "ibrhalil" + repo: "https://github.com/ibrhalil/galactus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ibrhalilaydn.galactus-theme" + formats: null +colors: + bg: "#0C0C0C" + fg: "#999999" + black: "#242424" + red: "#8A2F58" + green: "#7E63B2" + yellow: "#914E89" + blue: "#3E6287" + magenta: "#5E468C" + cyan: "#2B7694" + white: "#899CA1" + brightBlack: "#474747" + brightRed: "#CF4F88" + brightGreen: "#53A6A6" + brightYellow: "#BF85CC" + brightBlue: "#4779B3" + brightMagenta: "#7F62B3" + brightCyan: "#47959E" + brightWhite: "#C0C0C0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 47 + black: 0 + red: 14.9 + green: 27.9 + yellow: 23.1 + blue: 20.1 + magenta: 15.3 + cyan: 26.6 + white: 46.8 + brightBlack: 10.7 + brightRed: 34.1 + brightGreen: 47.2 + brightYellow: 47.5 + brightBlue: 30.3 + brightMagenta: 27.8 + brightCyan: 39.5 + brightWhite: 68.4 diff --git a/themes/galaxy-theme.yaml b/themes/galaxy-theme.yaml new file mode 100644 index 00000000..c37563fe --- /dev/null +++ b/themes/galaxy-theme.yaml @@ -0,0 +1,53 @@ +name: "Galaxy Theme" +source: + marketplace_id: "ArtikUSB.galaxy" + version: "0.0.21" + installs: 772 + rating: 0 + ratings: 0 + author: "ArtikUSB" + repo: "https://github.com/ArtikUSB/galaxy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ArtikUSB.galaxy" + formats: null +colors: + bg: "#191919" + fg: "#D4D4D4" + black: "#969696" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#7B6565" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.3 + black: 44.4 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 23.6 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/galaxy.yaml b/themes/galaxy.yaml new file mode 100644 index 00000000..434933d8 --- /dev/null +++ b/themes/galaxy.yaml @@ -0,0 +1,53 @@ +name: "Galaxy+" +source: + marketplace_id: "JoaoBatistaJr.GalaxyTheme" + version: "1.0.3" + installs: 1293 + rating: 5 + ratings: 2 + author: "JoaoBatistaJr" + repo: "https://github.com/JoaoBatistaJr/GalaxyTheme" + url: "https://marketplace.visualstudio.com/items?itemName=JoaoBatistaJr.GalaxyTheme" + formats: null +colors: + bg: "#202024" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 105.7 + black: 0 + red: 25.6 + green: 51.8 + yellow: 84.5 + blue: 26.3 + magenta: 28.6 + cyan: 46.4 + white: 88.9 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.8 + brightMagenta: 44.2 + brightCyan: 54.2 + brightWhite: 88.9 diff --git a/themes/game-mode-cyberpunk-theme.yaml b/themes/game-mode-cyberpunk-theme.yaml new file mode 100644 index 00000000..7435558a --- /dev/null +++ b/themes/game-mode-cyberpunk-theme.yaml @@ -0,0 +1,53 @@ +name: "GAME MODE - Cyberpunk Theme" +source: + marketplace_id: "sfkmt.game-mode-theme" + version: "1.0.4" + installs: 859 + rating: 0 + ratings: 0 + author: "sfkmt" + repo: "https://github.com/sfkmt/gamemode" + url: "https://marketplace.visualstudio.com/items?itemName=sfkmt.game-mode-theme" + formats: null +colors: + bg: "#0A0E1A" + fg: "#00FF88" + black: "#000000" + red: "#FF0088" + green: "#00FF88" + yellow: "#FFFF00" + blue: "#00DDFF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF4488" + brightGreen: "#00FFAA" + brightYellow: "#FFFF88" + brightBlue: "#88DDFF" + brightMagenta: "#FF88FF" + brightCyan: "#88FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 269 + pair: null + contrast: + fg: 87.4 + black: 0 + red: 39.2 + green: 87.4 + yellow: 102.3 + blue: 74.8 + magenta: 45.9 + cyan: 91.8 + white: 107.5 + brightBlack: 22.7 + brightRed: 42.8 + brightGreen: 88.3 + brightYellow: 103.5 + brightBlue: 78.8 + brightMagenta: 62.3 + brightCyan: 95.4 + brightWhite: 107.5 diff --git a/themes/game-of-thrones-the-seven-kingdoms--got-beyond-the-wall.yaml b/themes/game-of-thrones-the-seven-kingdoms--got-beyond-the-wall.yaml new file mode 100644 index 00000000..624ae021 --- /dev/null +++ b/themes/game-of-thrones-the-seven-kingdoms--got-beyond-the-wall.yaml @@ -0,0 +1,53 @@ +name: "Game of Thrones - The Seven Kingdoms (GOT: Beyond the Wall)" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 22 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" + formats: null +colors: + bg: "#000408" + fg: "#E0F0FF" + black: "#000204" + red: "#FF4444" + green: "#00FF7F" + yellow: "#FFD700" + blue: "#007FFF" + magenta: "#AA44FF" + cyan: "#00CED1" + white: "#5A9AC0" + brightBlack: "#1A3A5A" + brightRed: "#FF8888" + brightGreen: "#7FFFAA" + brightYellow: "#FFFF00" + brightBlue: "#00BFFF" + brightMagenta: "#CC88FF" + brightCyan: "#00FFFF" + brightWhite: "#E0F0FF" +meta: + mode: "dark" + accent: "magenta" + hue: 234 + pair: null + contrast: + fg: 96.7 + black: 0 + red: 41.6 + green: 87.6 + yellow: 84.2 + blue: 36.7 + magenta: 33.6 + cyan: 65.6 + white: 44.2 + brightBlack: 0 + brightRed: 57.1 + brightGreen: 91.8 + brightYellow: 102.7 + brightBlue: 61.4 + brightMagenta: 53.8 + brightCyan: 92.2 + brightWhite: 96.7 diff --git a/themes/game-of-thrones-the-seven-kingdoms--got-house-baratheon.yaml b/themes/game-of-thrones-the-seven-kingdoms--got-house-baratheon.yaml new file mode 100644 index 00000000..01b45df7 --- /dev/null +++ b/themes/game-of-thrones-the-seven-kingdoms--got-house-baratheon.yaml @@ -0,0 +1,53 @@ +name: "Game of Thrones - The Seven Kingdoms (GOT: House Baratheon)" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 22 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" + formats: null +colors: + bg: "#0E0E10" + fg: "#D0C8B8" + black: "#08080A" + red: "#8B3030" + green: "#5A8A3A" + yellow: "#B8960C" + blue: "#4A5A7A" + magenta: "#6A4A6A" + cyan: "#4A6A7A" + white: "#8A8070" + brightBlack: "#3A3A42" + brightRed: "#CC5050" + brightGreen: "#7ABA5A" + brightYellow: "#DAA520" + brightBlue: "#7A8AAA" + brightMagenta: "#9A7A9A" + brightCyan: "#7A9AAA" + brightWhite: "#D0C8B8" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.4 + black: 0 + red: 14.3 + green: 33.4 + yellow: 47.3 + blue: 17.7 + magenta: 15.7 + cyan: 22.6 + white: 35 + brightBlack: 0 + brightRed: 32 + brightGreen: 55.9 + brightYellow: 58 + brightBlue: 39.1 + brightMagenta: 36.5 + brightCyan: 45 + brightWhite: 73.4 diff --git a/themes/game-of-thrones-the-seven-kingdoms--got-house-greyjoy.yaml b/themes/game-of-thrones-the-seven-kingdoms--got-house-greyjoy.yaml new file mode 100644 index 00000000..0d873f86 --- /dev/null +++ b/themes/game-of-thrones-the-seven-kingdoms--got-house-greyjoy.yaml @@ -0,0 +1,53 @@ +name: "Game of Thrones - The Seven Kingdoms (GOT: House Greyjoy)" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 22 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" + formats: null +colors: + bg: "#080C10" + fg: "#B0C4D8" + black: "#040810" + red: "#8A3030" + green: "#3A8A5A" + yellow: "#8A8A20" + blue: "#2A5A8A" + magenta: "#5A4A7A" + cyan: "#2A7A8A" + white: "#6A8A9A" + brightBlack: "#2A4050" + brightRed: "#CC5555" + brightGreen: "#5ABA7A" + brightYellow: "#BABA40" + brightBlue: "#5A8ABA" + brightMagenta: "#8A7AAA" + brightCyan: "#5AAABA" + brightWhite: "#B0C4D8" +meta: + mode: "dark" + accent: "orange" + hue: 248 + pair: null + contrast: + fg: 69.3 + black: 0 + red: 14.2 + green: 32.5 + yellow: 37.4 + blue: 17.1 + magenta: 14.9 + cyan: 27.5 + white: 37.1 + brightBlack: 7.5 + brightRed: 33.2 + brightGreen: 54.7 + brightYellow: 62 + brightBlue: 37.6 + brightMagenta: 35.4 + brightCyan: 50.1 + brightWhite: 69.3 diff --git a/themes/game-of-thrones-the-seven-kingdoms--got-house-lannister.yaml b/themes/game-of-thrones-the-seven-kingdoms--got-house-lannister.yaml new file mode 100644 index 00000000..89396f48 --- /dev/null +++ b/themes/game-of-thrones-the-seven-kingdoms--got-house-lannister.yaml @@ -0,0 +1,53 @@ +name: "Game of Thrones - The Seven Kingdoms (GOT: House Lannister)" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 22 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" + formats: null +colors: + bg: "#14100A" + fg: "#F0E0C0" + black: "#0D0A05" + red: "#CC0000" + green: "#557A00" + yellow: "#B8960C" + blue: "#5577AA" + magenta: "#884488" + cyan: "#557799" + white: "#C9A840" + brightBlack: "#5A4A20" + brightRed: "#FF4444" + brightGreen: "#88BB00" + brightYellow: "#FFD700" + brightBlue: "#88AADD" + brightMagenta: "#BB77BB" + brightCyan: "#88AACC" + brightWhite: "#F0E0C0" +meta: + mode: "dark" + accent: "orange" + hue: 78 + pair: null + contrast: + fg: 88.3 + black: 0 + red: 24.7 + green: 26.7 + yellow: 47.1 + blue: 29.6 + magenta: 19.5 + cyan: 28.7 + white: 56.5 + brightBlack: 12.2 + brightRed: 41.1 + brightGreen: 56.7 + brightYellow: 83.8 + brightBlue: 54.8 + brightMagenta: 41.7 + brightCyan: 53.9 + brightWhite: 88.3 diff --git a/themes/game-of-thrones-the-seven-kingdoms--got-house-martell.yaml b/themes/game-of-thrones-the-seven-kingdoms--got-house-martell.yaml new file mode 100644 index 00000000..72cbe444 --- /dev/null +++ b/themes/game-of-thrones-the-seven-kingdoms--got-house-martell.yaml @@ -0,0 +1,53 @@ +name: "Game of Thrones - The Seven Kingdoms (GOT: House Martell)" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 22 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" + formats: null +colors: + bg: "#14100C" + fg: "#E0D0B0" + black: "#0D0A08" + red: "#CC3333" + green: "#7AAA3A" + yellow: "#D2691E" + blue: "#5A7A9A" + magenta: "#9A5A5A" + cyan: "#5A8A7A" + white: "#B09060" + brightBlack: "#4A3828" + brightRed: "#FF5555" + brightGreen: "#AADA5A" + brightYellow: "#FF8C00" + brightBlue: "#8AAABB" + brightMagenta: "#CC8888" + brightCyan: "#8ABAAA" + brightWhite: "#E0D0B0" +meta: + mode: "dark" + accent: "orange" + hue: 67 + pair: null + contrast: + fg: 78.5 + black: 0 + red: 27.2 + green: 48.4 + yellow: 37.8 + blue: 30.1 + magenta: 25.3 + cyan: 34.6 + white: 44.7 + brightBlack: 0 + brightRed: 43.9 + brightGreen: 74.5 + brightYellow: 56.2 + brightBlue: 53.2 + brightMagenta: 47.3 + brightCyan: 59.1 + brightWhite: 78.5 diff --git a/themes/game-of-thrones-the-seven-kingdoms--got-house-stark.yaml b/themes/game-of-thrones-the-seven-kingdoms--got-house-stark.yaml new file mode 100644 index 00000000..7f02efce --- /dev/null +++ b/themes/game-of-thrones-the-seven-kingdoms--got-house-stark.yaml @@ -0,0 +1,53 @@ +name: "Game of Thrones - The Seven Kingdoms (GOT: House Stark)" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 22 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" + formats: null +colors: + bg: "#0E1319" + fg: "#CBD5E1" + black: "#080C12" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#388BFD" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#8096AB" + brightBlack: "#3A4F62" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79B8FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#CBD5E1" +meta: + mode: "dark" + accent: "green" + hue: 253 + pair: null + contrast: + fg: 79.8 + black: 0 + red: 52.4 + green: 52 + yellow: 52.1 + blue: 40.7 + magenta: 52.1 + cyan: 61.3 + white: 43.7 + brightBlack: 12.4 + brightRed: 64.7 + brightGreen: 65.3 + brightYellow: 64.6 + brightBlue: 61.2 + brightMagenta: 64.5 + brightCyan: 69.8 + brightWhite: 79.8 diff --git a/themes/game-of-thrones-the-seven-kingdoms--got-house-targaryen.yaml b/themes/game-of-thrones-the-seven-kingdoms--got-house-targaryen.yaml new file mode 100644 index 00000000..2be9dfa5 --- /dev/null +++ b/themes/game-of-thrones-the-seven-kingdoms--got-house-targaryen.yaml @@ -0,0 +1,53 @@ +name: "Game of Thrones - The Seven Kingdoms (GOT: House Targaryen)" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 22 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" + formats: null +colors: + bg: "#110808" + fg: "#F0C8B8" + black: "#0A0404" + red: "#8B0000" + green: "#3D6B00" + yellow: "#B8640C" + blue: "#1A3A6B" + magenta: "#6B0050" + cyan: "#1A4A5A" + white: "#C07060" + brightBlack: "#5A2020" + brightRed: "#FF4500" + brightGreen: "#5FD700" + brightYellow: "#FF8C00" + brightBlue: "#4D7FCC" + brightMagenta: "#CC0099" + brightCyan: "#4D99B0" + brightWhite: "#F0C8B8" +meta: + mode: "dark" + accent: "pink" + hue: 19 + pair: null + contrast: + fg: 78.1 + black: 0 + red: 11.4 + green: 20.3 + yellow: 32.1 + blue: 0 + magenta: 0 + cyan: 10 + white: 37.5 + brightBlack: 0 + brightRed: 41.2 + brightGreen: 67.4 + brightYellow: 56.5 + brightBlue: 34.2 + brightMagenta: 28.2 + brightCyan: 42.2 + brightWhite: 78.1 diff --git a/themes/game-of-thrones-the-seven-kingdoms--got-night-s-watch.yaml b/themes/game-of-thrones-the-seven-kingdoms--got-night-s-watch.yaml new file mode 100644 index 00000000..11783666 --- /dev/null +++ b/themes/game-of-thrones-the-seven-kingdoms--got-night-s-watch.yaml @@ -0,0 +1,53 @@ +name: "Game of Thrones - The Seven Kingdoms (GOT: Night's Watch)" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 22 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" + formats: null +colors: + bg: "#050505" + fg: "#A8A8A8" + black: "#020202" + red: "#800000" + green: "#2A5A2A" + yellow: "#5A5A00" + blue: "#1A2A4A" + magenta: "#4A1A4A" + cyan: "#1A3A4A" + white: "#606060" + brightBlack: "#303030" + brightRed: "#CC2222" + brightGreen: "#4A9A4A" + brightYellow: "#9A9A00" + brightBlue: "#3A5A8A" + brightMagenta: "#7A3A7A" + brightCyan: "#3A6A7A" + brightWhite: "#A8A8A8" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 55.1 + black: 0 + red: 9.5 + green: 14.3 + yellow: 17 + blue: 0 + magenta: 0 + cyan: 0 + white: 20.5 + brightBlack: 0 + brightRed: 26.1 + brightGreen: 39.4 + brightYellow: 45.2 + brightBlue: 17.9 + brightMagenta: 15.6 + brightCyan: 22.1 + brightWhite: 55.1 diff --git a/themes/game-of-thrones-the-seven-kingdoms--got-the-iron-throne.yaml b/themes/game-of-thrones-the-seven-kingdoms--got-the-iron-throne.yaml new file mode 100644 index 00000000..4f5d0277 --- /dev/null +++ b/themes/game-of-thrones-the-seven-kingdoms--got-the-iron-throne.yaml @@ -0,0 +1,53 @@ +name: "Game of Thrones - The Seven Kingdoms (GOT: The Iron Throne)" +source: + marketplace_id: "Abhiroux.game-of-thrones-theme" + version: "3.0.0" + installs: 22 + rating: 0 + ratings: 0 + author: "Abhiroux" + repo: "https://github.com/YOUR_USERNAME/game-of-thrones-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Abhiroux.game-of-thrones-theme" + formats: null +colors: + bg: "#141414" + fg: "#D4C5A9" + black: "#0D0D0D" + red: "#8B0000" + green: "#1E8449" + yellow: "#9A7D0A" + blue: "#1F618D" + magenta: "#6C3483" + cyan: "#1A5276" + white: "#A09070" + brightBlack: "#3D3D3D" + brightRed: "#C0392B" + brightGreen: "#2ECC71" + brightYellow: "#CFB53B" + brightBlue: "#A8D8EA" + brightMagenta: "#9B59B6" + brightCyan: "#5DADE2" + brightWhite: "#D4C5A9" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 71.7 + black: 0 + red: 10.8 + green: 28.6 + yellow: 34.2 + blue: 18.6 + magenta: 12.5 + cyan: 12.9 + white: 42.7 + brightBlack: 0 + brightRed: 25.1 + brightGreen: 60.9 + brightYellow: 62.2 + brightBlue: 77.7 + brightMagenta: 28.8 + brightCyan: 53.1 + brightWhite: 71.7 diff --git a/themes/gameboy-classic-theme--gameboy-classic-dark.yaml b/themes/gameboy-classic-theme--gameboy-classic-dark.yaml new file mode 100644 index 00000000..9c49f399 --- /dev/null +++ b/themes/gameboy-classic-theme--gameboy-classic-dark.yaml @@ -0,0 +1,53 @@ +name: "GameBoy Classic Theme (GameBoy Classic Dark)" +source: + marketplace_id: "sanchodelniglo.gameboy-classic-theme" + version: "0.0.4" + installs: 837 + rating: 0 + ratings: 0 + author: "sanchodelniglo" + repo: "https://github.com/Sanchodelniglo/gameboy-classic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sanchodelniglo.gameboy-classic-theme" + formats: null +colors: + bg: "#234823" + fg: "#9BBC0F" + black: "#0F380F" + red: "#9A2257" + green: "#9BBC0F" + yellow: "#B3D80E" + blue: "#494786" + magenta: "#9A2257" + cyan: "#88C070" + white: "#C4BEBB" + brightBlack: "#526525" + brightRed: "#B84A7A" + brightGreen: "#B3D80E" + brightYellow: "#E7FCB8" + brightBlue: "#5855A0" + brightMagenta: "#B84A7A" + brightCyan: "#88C070" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 144 + pair: null + contrast: + fg: 49.4 + black: 0 + red: 0 + green: 49.4 + yellow: 64.5 + blue: 0 + magenta: 0 + cyan: 50.5 + white: 58.2 + brightBlack: 10 + brightRed: 18.6 + brightGreen: 64.5 + brightYellow: 90.5 + brightBlue: 9.8 + brightMagenta: 18.6 + brightCyan: 50.5 + brightWhite: 93.1 diff --git a/themes/gameboy-classic-theme--gameboy-classic-light.yaml b/themes/gameboy-classic-theme--gameboy-classic-light.yaml new file mode 100644 index 00000000..3c39dcb5 --- /dev/null +++ b/themes/gameboy-classic-theme--gameboy-classic-light.yaml @@ -0,0 +1,53 @@ +name: "GameBoy Classic Theme (GameBoy Classic Light)" +source: + marketplace_id: "sanchodelniglo.gameboy-classic-theme" + version: "0.0.4" + installs: 837 + rating: 0 + ratings: 0 + author: "sanchodelniglo" + repo: "https://github.com/Sanchodelniglo/gameboy-classic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sanchodelniglo.gameboy-classic-theme" + formats: null +colors: + bg: "#C0D297" + fg: "#0F380F" + black: "#0F380F" + red: "#9A2257" + green: "#79970B" + yellow: "#9BBC0F" + blue: "#494786" + magenta: "#9A2257" + cyan: "#306850" + white: "#C4BEBB" + brightBlack: "#526525" + brightRed: "#B84A7A" + brightGreen: "#9BBC0F" + brightYellow: "#B3D80E" + brightBlue: "#5855A0" + brightMagenta: "#B84A7A" + brightCyan: "#88C070" + brightWhite: "#F8F8F2" +meta: + mode: "light" + accent: "green" + hue: 122 + pair: null + contrast: + fg: 69 + black: 69 + red: 55.1 + green: 30.7 + yellow: 12.6 + blue: 58.3 + magenta: 55.1 + cyan: 51.9 + white: 0 + brightBlack: 51.8 + brightRed: 43 + brightGreen: 12.6 + brightYellow: 0 + brightBlue: 51.9 + brightMagenta: 43 + brightCyan: 11.6 + brightWhite: 26.7 diff --git a/themes/ganbaru--ganbaru-blue.yaml b/themes/ganbaru--ganbaru-blue.yaml new file mode 100644 index 00000000..ad5e72f2 --- /dev/null +++ b/themes/ganbaru--ganbaru-blue.yaml @@ -0,0 +1,53 @@ +name: "Ganbaru (Ganbaru blue)" +source: + marketplace_id: "Marlodev.ganbaru" + version: "1.0.0" + installs: 1854 + rating: 5 + ratings: 1 + author: "Marlodev" + repo: "https://github.com/marlodevhub/ganbaru" + url: "https://marketplace.visualstudio.com/items?itemName=Marlodev.ganbaru" + formats: null +colors: + bg: "#151B23" + fg: "#D0DBDE" + black: "#293039" + red: "#FF6D7E" + green: "#A2E57B" + yellow: "#F3ACE2" + blue: "#FFB270" + magenta: "#BAA0F8" + cyan: "#7CD5F1" + white: "#D0DBDE" + brightBlack: "#6B7678" + brightRed: "#FF6D7E" + brightGreen: "#A2E57B" + brightYellow: "#F3ACE2" + brightBlue: "#FFB270" + brightMagenta: "#BAA0F8" + brightCyan: "#7CD5F1" + brightWhite: "#D0DBDE" +meta: + mode: "dark" + accent: "orange" + hue: 256 + pair: null + contrast: + fg: 82.1 + black: 0 + red: 48.6 + green: 78.6 + yellow: 68.6 + blue: 68.9 + magenta: 57.2 + cyan: 72.5 + white: 82.1 + brightBlack: 27.8 + brightRed: 48.6 + brightGreen: 78.6 + brightYellow: 68.6 + brightBlue: 68.9 + brightMagenta: 57.2 + brightCyan: 72.5 + brightWhite: 82.1 diff --git a/themes/ganbaru--ganbaru-dark.yaml b/themes/ganbaru--ganbaru-dark.yaml new file mode 100644 index 00000000..1a04a61d --- /dev/null +++ b/themes/ganbaru--ganbaru-dark.yaml @@ -0,0 +1,53 @@ +name: "Ganbaru (Ganbaru Dark)" +source: + marketplace_id: "Marlodev.ganbaru" + version: "1.0.0" + installs: 1854 + rating: 5 + ratings: 1 + author: "Marlodev" + repo: "https://github.com/marlodevhub/ganbaru" + url: "https://marketplace.visualstudio.com/items?itemName=Marlodev.ganbaru" + formats: null +colors: + bg: "#17181D" + fg: "#D0DBDE" + black: "#303338" + red: "#FF6D7E" + green: "#A2E57B" + yellow: "#F3ACE2" + blue: "#FFB270" + magenta: "#BAA0F8" + cyan: "#7CD5F1" + white: "#D0DBDE" + brightBlack: "#6B7678" + brightRed: "#FF6D7E" + brightGreen: "#A2E57B" + brightYellow: "#F3ACE2" + brightBlue: "#FFB270" + brightMagenta: "#BAA0F8" + brightCyan: "#7CD5F1" + brightWhite: "#D0DBDE" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.4 + black: 0 + red: 48.9 + green: 78.9 + yellow: 68.9 + blue: 69.2 + magenta: 57.4 + cyan: 72.8 + white: 82.4 + brightBlack: 28 + brightRed: 48.9 + brightGreen: 78.9 + brightYellow: 68.9 + brightBlue: 69.2 + brightMagenta: 57.4 + brightCyan: 72.8 + brightWhite: 82.4 diff --git a/themes/gantheory-theme.yaml b/themes/gantheory-theme.yaml new file mode 100644 index 00000000..0508fee7 --- /dev/null +++ b/themes/gantheory-theme.yaml @@ -0,0 +1,53 @@ +name: "Gantheory Theme" +source: + marketplace_id: "gantheory.theme-gantheory" + version: "0.0.2" + installs: 4725 + rating: 5 + ratings: 1 + author: "gantheory" + repo: "https://github.com/gantheory/vscode-theme-gantheory" + url: "https://marketplace.visualstudio.com/items?itemName=gantheory.theme-gantheory" + formats: null +colors: + bg: "#040404" + fg: "#E4E4E4" + black: "#000000" + red: "#F44336" + green: "#8BC34A" + yellow: "#FFEB3B" + blue: "#03A9F4" + magenta: "#E92663" + cyan: "#00BCD4" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#EF9A9A" + brightGreen: "#C5E1A5" + brightYellow: "#FFF59D" + brightBlue: "#81D4FA" + brightMagenta: "#F48FB1" + brightCyan: "#80DEEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 90.4 + black: 0 + red: 38.7 + green: 61.3 + yellow: 93.3 + blue: 51.3 + magenta: 34.1 + cyan: 57.5 + white: 72.7 + brightBlack: 23.9 + brightRed: 60.1 + brightGreen: 82.8 + brightYellow: 99.5 + brightBlue: 74.3 + brightMagenta: 58.4 + brightCyan: 78 + brightWhite: 107.9 diff --git a/themes/gapstyle-vs--gapstyle-vs-dark-modern.yaml b/themes/gapstyle-vs--gapstyle-vs-dark-modern.yaml new file mode 100644 index 00000000..9357ce6a --- /dev/null +++ b/themes/gapstyle-vs--gapstyle-vs-dark-modern.yaml @@ -0,0 +1,54 @@ +name: "GapStyle VS (GapStyle VS Dark Modern)" +source: + marketplace_id: "gaplo917.gapstylevs" + version: "2.2.0" + installs: 8670 + rating: 5 + ratings: 7 + author: "Gary Lo" + repo: "https://github.com/gaplo917/GapStyle" + url: "https://marketplace.visualstudio.com/items?itemName=gaplo917.gapstylevs" + formats: + zed: "https://raw.githubusercontent.com/gaplo917/GapStyle/master/zed/gapstyle.json" +colors: + bg: "#1F1F1F" + fg: "#CCCCCC" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.7 + black: 0 + red: 41.1 + green: 61.3 + yellow: 69.6 + blue: 53.7 + magenta: 44.2 + cyan: 53.6 + white: 82.1 + brightBlack: 34.6 + brightRed: 37.5 + brightGreen: 61.3 + brightYellow: 69.6 + brightBlue: 40.5 + brightMagenta: 11.8 + brightCyan: 53.6 + brightWhite: 82.1 diff --git a/themes/gauss-theme.yaml b/themes/gauss-theme.yaml new file mode 100644 index 00000000..98fd58ca --- /dev/null +++ b/themes/gauss-theme.yaml @@ -0,0 +1,53 @@ +name: "Gauss Theme" +source: + marketplace_id: "GaussTheTheme.Gauss-TheTheme" + version: "0.0.8" + installs: 353 + rating: 5 + ratings: 1 + author: "Gauss-TheTheme" + repo: "https://github.com/torresdiegoal/Gauss-TheTheme" + url: "https://marketplace.visualstudio.com/items?itemName=GaussTheTheme.Gauss-TheTheme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#EBDBB2" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.6 + black: 0 + red: 24.4 + green: 42.1 + yellow: 51.7 + blue: 30.8 + magenta: 30.9 + cyan: 41.1 + white: 46.4 + brightBlack: 35.5 + brightRed: 39.3 + brightGreen: 60.3 + brightYellow: 71 + brightBlue: 47.8 + brightMagenta: 47.1 + brightCyan: 59.3 + brightWhite: 83.6 diff --git a/themes/gen.yaml b/themes/gen.yaml new file mode 100644 index 00000000..93899be1 --- /dev/null +++ b/themes/gen.yaml @@ -0,0 +1,53 @@ +name: "gen" +source: + marketplace_id: "GenukaWijenayake.gen" + version: "0.0.2" + installs: 81 + rating: 0 + ratings: 0 + author: "Genuka Wijenayake" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GenukaWijenayake.gen" + formats: null +colors: + bg: "#1B1A1A" + fg: "#07DFEA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 73.6 + black: 0 + red: 26.4 + green: 52.6 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.7 diff --git a/themes/genshin-impact-hsr-color-themes--genshin-impact-chiori.yaml b/themes/genshin-impact-hsr-color-themes--genshin-impact-chiori.yaml new file mode 100644 index 00000000..8e639dec --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--genshin-impact-chiori.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Chiori)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#FEFAF6" + fg: "#4A3030" + black: "#4A3030" + red: "#EE6373" + green: "#98B888" + yellow: "#E7A43A" + blue: "#C64413" + magenta: "#A88888" + cyan: "#E7A43A" + white: "#F0E0D0" + brightBlack: "#8A7060" + brightRed: "#F08090" + brightGreen: "#B8D8B0" + brightYellow: "#F0E0B8" + brightBlue: "#C8B8A8" + brightMagenta: "#D8B898" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.7 + black: 94.7 + red: 55.2 + green: 40.6 + yellow: 39.3 + blue: 70.6 + magenta: 56.7 + cyan: 39.3 + white: 11.7 + brightBlack: 69.3 + brightRed: 47.1 + brightGreen: 22.9 + brightYellow: 12.6 + brightBlue: 34.3 + brightMagenta: 32.7 + brightCyan: 33.1 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--genshin-impact-citlali.yaml b/themes/genshin-impact-hsr-color-themes--genshin-impact-citlali.yaml new file mode 100644 index 00000000..c9f75b6a --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--genshin-impact-citlali.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Citlali)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#FAF8FC" + fg: "#3A2858" + black: "#3A2858" + red: "#D87088" + green: "#7AA89A" + yellow: "#D8A878" + blue: "#8D8CDA" + magenta: "#9A8CDA" + cyan: "#D99EC7" + white: "#E8D8F0" + brightBlack: "#7A6098" + brightRed: "#E88098" + brightGreen: "#8AB8AA" + brightYellow: "#E8B888" + brightBlue: "#8A9CDA" + brightMagenta: "#A898EE" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 95.2 + black: 95.2 + red: 54.9 + green: 47.9 + yellow: 38.3 + blue: 53.4 + magenta: 52.1 + cyan: 38.9 + white: 13.6 + brightBlack: 72.6 + brightRed: 47.2 + brightGreen: 39.7 + brightYellow: 29.7 + brightBlue: 48.2 + brightMagenta: 45.3 + brightCyan: 32 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--genshin-impact-columbina.yaml b/themes/genshin-impact-hsr-color-themes--genshin-impact-columbina.yaml new file mode 100644 index 00000000..a5048e4d --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--genshin-impact-columbina.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Columbina)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#F6FAFF" + fg: "#272228" + black: "#272228" + red: "#CD5F7A" + green: "#5A9EA0" + yellow: "#E8B888" + blue: "#7487DB" + magenta: "#CD76B3" + cyan: "#90CCEA" + white: "#C3C8ED" + brightBlack: "#7D8AA8" + brightRed: "#E87A95" + brightGreen: "#6FBEC0" + brightYellow: "#F0C89F" + brightBlue: "#8FA0F0" + brightMagenta: "#E091CA" + brightCyan: "#A8DCF5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 99.3 + black: 99.3 + red: 61.8 + green: 54.2 + yellow: 30.2 + blue: 57.8 + magenta: 54 + cyan: 28.5 + white: 25.2 + brightBlack: 58.8 + brightRed: 49.4 + brightGreen: 38.6 + brightYellow: 22.3 + brightBlue: 45.4 + brightMagenta: 42.2 + brightCyan: 19.2 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--genshin-impact-furina.yaml b/themes/genshin-impact-hsr-color-themes--genshin-impact-furina.yaml new file mode 100644 index 00000000..0b15a084 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--genshin-impact-furina.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Furina)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#F5F9FC" + fg: "#1A2840" + black: "#1A2840" + red: "#C84860" + green: "#4A9A7A" + yellow: "#D89850" + blue: "#3A7FC4" + magenta: "#667EDE" + cyan: "#5EB3E4" + white: "#D6ECF8" + brightBlack: "#5A7090" + brightRed: "#E86078" + brightGreen: "#5AAA8A" + brightYellow: "#E8A860" + brightBlue: "#4A8FD4" + brightMagenta: "#7E8FEE" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 97.6 + black: 97.6 + red: 67.2 + green: 57.2 + yellow: 44.3 + blue: 64.6 + magenta: 60.9 + cyan: 41.6 + white: 0 + brightBlack: 70.9 + brightRed: 55.6 + brightGreen: 49.5 + brightYellow: 36 + brightBlue: 57.3 + brightMagenta: 52.3 + brightCyan: 31.8 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--genshin-impact-il-dottore.yaml b/themes/genshin-impact-hsr-color-themes--genshin-impact-il-dottore.yaml new file mode 100644 index 00000000..ea6ccf46 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--genshin-impact-il-dottore.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Il Dottore)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#F6F9FC" + fg: "#1A2848" + black: "#1A2848" + red: "#904858" + green: "#408068" + yellow: "#887048" + blue: "#305878" + magenta: "#685080" + cyan: "#287088" + white: "#8898B0" + brightBlack: "#607080" + brightRed: "#A86068" + brightGreen: "#509878" + brightYellow: "#A08858" + brightBlue: "#406890" + brightMagenta: "#786090" + brightCyan: "#3888A0" + brightWhite: "#B0C0D0" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 97.4 + black: 97.4 + red: 77.8 + green: 68.4 + yellow: 68.8 + blue: 82.2 + magenta: 79.9 + cyan: 73.8 + white: 51.9 + brightBlack: 71.3 + brightRed: 68.1 + brightGreen: 57.9 + brightYellow: 57.7 + brightBlue: 75.2 + brightMagenta: 73.1 + brightCyan: 63.6 + brightWhite: 31.2 diff --git a/themes/genshin-impact-hsr-color-themes--genshin-impact-kamisato-ayaka.yaml b/themes/genshin-impact-hsr-color-themes--genshin-impact-kamisato-ayaka.yaml new file mode 100644 index 00000000..65bb575c --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--genshin-impact-kamisato-ayaka.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Kamisato Ayaka)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#F8FAFC" + fg: "#20306A" + black: "#20306A" + red: "#E75F96" + green: "#6AAA8A" + yellow: "#D4A030" + blue: "#20306A" + magenta: "#5878C8" + cyan: "#E75F96" + white: "#E0ECF8" + brightBlack: "#6A7898" + brightRed: "#E75F96" + brightGreen: "#7ABAA0" + brightYellow: "#F0D080" + brightBlue: "#5888C8" + brightMagenta: "#8898D8" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 94.8 + black: 94.8 + red: 55.8 + green: 49.4 + yellow: 43.3 + blue: 94.8 + magenta: 66.1 + cyan: 55.8 + white: 0 + brightBlack: 67.5 + brightRed: 55.8 + brightGreen: 41 + brightYellow: 20 + brightBlue: 60.7 + brightMagenta: 50.5 + brightCyan: 32.6 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--genshin-impact-layla.yaml b/themes/genshin-impact-hsr-color-themes--genshin-impact-layla.yaml new file mode 100644 index 00000000..87b7790a --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--genshin-impact-layla.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Layla)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#F8FCFE" + fg: "#2A3858" + black: "#2A3858" + red: "#D88098" + green: "#7AB8AA" + yellow: "#DDAB6D" + blue: "#5F689D" + magenta: "#8898C8" + cyan: "#C0E9F7" + white: "#D8ECF8" + brightBlack: "#6A7098" + brightRed: "#E890A8" + brightGreen: "#9AC8BA" + brightYellow: "#E8C898" + brightBlue: "#98ACD8" + brightMagenta: "#98B8E8" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 94.5 + black: 94.5 + red: 51.6 + green: 42.4 + yellow: 38.2 + blue: 74.2 + magenta: 52.4 + cyan: 12.3 + white: 8.4 + brightBlack: 71 + brightRed: 43.7 + brightGreen: 32.6 + brightYellow: 24.7 + brightBlue: 42.6 + brightMagenta: 37.2 + brightCyan: 33.5 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--genshin-impact-sandrone.yaml b/themes/genshin-impact-hsr-color-themes--genshin-impact-sandrone.yaml new file mode 100644 index 00000000..abf3ec78 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--genshin-impact-sandrone.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Sandrone)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#F7F0E7" + fg: "#2A2832" + black: "#2A2832" + red: "#A05060" + green: "#508858" + yellow: "#907840" + blue: "#4A5068" + magenta: "#751C26" + cyan: "#506068" + white: "#F0E8DF" + brightBlack: "#786860" + brightRed: "#B86878" + brightGreen: "#68A070" + brightYellow: "#A89050" + brightBlue: "#5A6078" + brightMagenta: "#903848" + brightCyan: "#607078" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.9 + black: 92.9 + red: 68.7 + green: 60.4 + yellow: 60.9 + blue: 79.2 + magenta: 85.5 + cyan: 74 + white: 0 + brightBlack: 68.1 + brightRed: 58.4 + brightGreen: 49 + brightYellow: 49.5 + brightBlue: 72.6 + brightMagenta: 76.6 + brightCyan: 67 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--genshin-impact-scaramouche.yaml b/themes/genshin-impact-hsr-color-themes--genshin-impact-scaramouche.yaml new file mode 100644 index 00000000..165a834a --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--genshin-impact-scaramouche.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Scaramouche)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#FAF8FC" + fg: "#2A2535" + black: "#2A2535" + red: "#96182E" + green: "#5A7A70" + yellow: "#B8906A" + blue: "#4A5A80" + magenta: "#6A4A9E" + cyan: "#5A7A90" + white: "#E0D8E8" + brightBlack: "#6A5A78" + brightRed: "#A62840" + brightGreen: "#6A8A80" + brightYellow: "#C8A07A" + brightBlue: "#5A6A90" + brightMagenta: "#8A70B0" + brightCyan: "#6A8AA0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97.9 + black: 97.9 + red: 83.9 + green: 69 + yellow: 51.5 + blue: 79.9 + magenta: 79.5 + cyan: 67.8 + white: 15 + brightBlack: 77.5 + brightRed: 79.2 + brightGreen: 61.5 + brightYellow: 43.4 + brightBlue: 73.1 + brightMagenta: 65 + brightCyan: 60.3 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--genshin-impact-skirk.yaml b/themes/genshin-impact-hsr-color-themes--genshin-impact-skirk.yaml new file mode 100644 index 00000000..45b8be74 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--genshin-impact-skirk.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Skirk)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#F8F9FE" + fg: "#2D2272" + black: "#2D2272" + red: "#EFADCA" + green: "#B5FDFF" + yellow: "#D8A878" + blue: "#5A45E4" + magenta: "#7A65F0" + cyan: "#B183FC" + white: "#E0E4FC" + brightBlack: "#6A5AC0" + brightRed: "#E88098" + brightGreen: "#8AB8AA" + brightYellow: "#E8B888" + brightBlue: "#8A9CDA" + brightMagenta: "#9880F0" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 95.7 + black: 95.7 + red: 30.6 + green: 0 + yellow: 38.5 + blue: 76.5 + magenta: 65.4 + cyan: 50 + white: 9.4 + brightBlack: 73.6 + brightRed: 47.5 + brightGreen: 39.9 + brightYellow: 29.9 + brightBlue: 48.5 + brightMagenta: 54.8 + brightCyan: 32.3 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--genshin-impact-wanderer.yaml b/themes/genshin-impact-hsr-color-themes--genshin-impact-wanderer.yaml new file mode 100644 index 00000000..e8cebb32 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--genshin-impact-wanderer.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Wanderer)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#F8FCFE" + fg: "#1A3050" + black: "#1A3050" + red: "#3C8BA2" + green: "#6AAA8A" + yellow: "#C8B870" + blue: "#1A3050" + magenta: "#4888C8" + cyan: "#3C8BA2" + white: "#DCEEF8" + brightBlack: "#5A7090" + brightRed: "#3C8BA2" + brightGreen: "#7ABAA0" + brightYellow: "#F0D080" + brightBlue: "#5888C8" + brightMagenta: "#78A8D8" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 97.3 + black: 97.3 + red: 63.8 + green: 50.3 + yellow: 36.3 + blue: 97.3 + magenta: 62.4 + cyan: 63.8 + white: 0 + brightBlack: 72.7 + brightRed: 63.8 + brightGreen: 41.9 + brightYellow: 21 + brightBlue: 61.6 + brightMagenta: 46.8 + brightCyan: 33.5 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--genshin-impact-yae-miko.yaml b/themes/genshin-impact-hsr-color-themes--genshin-impact-yae-miko.yaml new file mode 100644 index 00000000..0cba44c5 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--genshin-impact-yae-miko.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Yae Miko)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#FDF8F9" + fg: "#4A3840" + black: "#4A3840" + red: "#A85060" + green: "#609070" + yellow: "#987050" + blue: "#785888" + magenta: "#C06090" + cyan: "#608890" + white: "#B89898" + brightBlack: "#886878" + brightRed: "#C06878" + brightGreen: "#78A888" + brightYellow: "#B08860" + brightBlue: "#9078A0" + brightMagenta: "#D078A0" + brightCyan: "#78A0A8" + brightWhite: "#E0C8D4" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 91.7 + black: 91.7 + red: 72.3 + green: 60.7 + yellow: 67 + blue: 76 + magenta: 63 + cyan: 62.7 + white: 47.8 + brightBlack: 70.3 + brightRed: 61.9 + brightGreen: 48.9 + brightYellow: 55.8 + brightBlue: 62.9 + brightMagenta: 53.6 + brightCyan: 50.9 + brightWhite: 22.5 diff --git a/themes/genshin-impact-hsr-color-themes--honkai-star-rail-aventurine.yaml b/themes/genshin-impact-hsr-color-themes--honkai-star-rail-aventurine.yaml new file mode 100644 index 00000000..a1d6fe0f --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--honkai-star-rail-aventurine.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - Aventurine)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#F8F6F2" + fg: "#2A2828" + black: "#2A2828" + red: "#904040" + green: "#408870" + yellow: "#907040" + blue: "#1A5864" + magenta: "#784868" + cyan: "#206870" + white: "#989080" + brightBlack: "#787068" + brightRed: "#B05050" + brightGreen: "#509880" + brightYellow: "#A08050" + brightBlue: "#2A6878" + brightMagenta: "#886078" + brightCyan: "#307880" + brightWhite: "#D0C8B8" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.2 + black: 96.2 + red: 78.5 + green: 63.7 + yellow: 66.5 + blue: 82.2 + magenta: 79.5 + cyan: 76.3 + white: 53.5 + brightBlack: 68.5 + brightRed: 69.4 + brightGreen: 56.2 + brightYellow: 59.1 + brightBlue: 75.7 + brightMagenta: 70.8 + brightCyan: 69.6 + brightWhite: 23.9 diff --git a/themes/genshin-impact-hsr-color-themes--honkai-star-rail-cyrene.yaml b/themes/genshin-impact-hsr-color-themes--honkai-star-rail-cyrene.yaml new file mode 100644 index 00000000..6c593408 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--honkai-star-rail-cyrene.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - Cyrene)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#FDF8FB" + fg: "#4A3A50" + black: "#4A3A50" + red: "#C06080" + green: "#7AAA7A" + yellow: "#C8A080" + blue: "#8B95DB" + magenta: "#A05DD4" + cyan: "#7090A0" + white: "#F0E0E8" + brightBlack: "#8A7090" + brightRed: "#D473A4" + brightGreen: "#8ABA8A" + brightYellow: "#D8B090" + brightBlue: "#9BA5E8" + brightMagenta: "#B080E0" + brightCyan: "#80A0B0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 90.8 + black: 90.8 + red: 63.6 + green: 48.5 + yellow: 43.6 + blue: 50.9 + magenta: 65.1 + cyan: 58 + white: 10 + brightBlack: 66.9 + brightRed: 54.1 + brightGreen: 40.2 + brightYellow: 35.1 + brightBlue: 42.9 + brightMagenta: 53 + brightCyan: 50.1 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--honkai-star-rail-dan-heng.yaml b/themes/genshin-impact-hsr-color-themes--honkai-star-rail-dan-heng.yaml new file mode 100644 index 00000000..2357c98d --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--honkai-star-rail-dan-heng.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - Dan Heng)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#F4F6F4" + fg: "#133139" + black: "#133139" + red: "#790000" + green: "#2E5B63" + yellow: "#8A5500" + blue: "#3A6E78" + magenta: "#5A0000" + cyan: "#2E5B63" + white: "#E8ECEC" + brightBlack: "#2E5B63" + brightRed: "#A00000" + brightGreen: "#4A8090" + brightYellow: "#B87000" + brightBlue: "#4A8090" + brightMagenta: "#790000" + brightCyan: "#3A6E78" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.5 + black: 94.5 + red: 88.6 + green: 80.3 + yellow: 74.9 + blue: 72.7 + magenta: 94.1 + cyan: 80.3 + white: 0 + brightBlack: 80.3 + brightRed: 80.7 + brightGreen: 64.6 + brightYellow: 60.5 + brightBlue: 64.6 + brightMagenta: 88.6 + brightCyan: 72.7 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--honkai-star-rail-firefly.yaml b/themes/genshin-impact-hsr-color-themes--honkai-star-rail-firefly.yaml new file mode 100644 index 00000000..aa530022 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--honkai-star-rail-firefly.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - Firefly)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#F7F5F2" + fg: "#3A4550" + black: "#3A4550" + red: "#A07070" + green: "#7A9A7A" + yellow: "#B8A080" + blue: "#70656C" + magenta: "#8A7080" + cyan: "#6F9C97" + white: "#E0D8D2" + brightBlack: "#70656C" + brightRed: "#B08080" + brightGreen: "#8AAA8A" + brightYellow: "#C8B090" + brightBlue: "#8A7A85" + brightMagenta: "#9A8090" + brightCyan: "#7AACA5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 86.8 + black: 86.8 + red: 62.7 + green: 52.4 + yellow: 43.3 + blue: 72 + magenta: 65.1 + cyan: 51.5 + white: 13.9 + brightBlack: 72 + brightRed: 55.2 + brightGreen: 44.3 + brightYellow: 34.9 + brightBlue: 61.8 + brightMagenta: 57.6 + brightCyan: 43.9 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--honkai-star-rail-kafka.yaml b/themes/genshin-impact-hsr-color-themes--honkai-star-rail-kafka.yaml new file mode 100644 index 00000000..a3c10e8d --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--honkai-star-rail-kafka.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - Kafka)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#FAF7F9" + fg: "#2A2530" + black: "#2A2530" + red: "#A04860" + green: "#5A8A6A" + yellow: "#9A7850" + blue: "#5868A0" + magenta: "#723458" + cyan: "#4A8090" + white: "#E8DCE4" + brightBlack: "#6A5A62" + brightRed: "#B86078" + brightGreen: "#6A9A7A" + brightYellow: "#AA8860" + brightBlue: "#6878B0" + brightMagenta: "#C075AE" + brightCyan: "#5A90A0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 97.5 + black: 97.5 + red: 74.5 + green: 62.7 + yellow: 63.4 + blue: 72.4 + magenta: 85.8 + cyan: 66 + white: 12 + brightBlack: 77.8 + brightRed: 64.4 + brightGreen: 55.1 + brightYellow: 55.8 + brightBlue: 65.3 + brightMagenta: 55.6 + brightCyan: 58.6 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--honkai-star-rail-march-7th.yaml b/themes/genshin-impact-hsr-color-themes--honkai-star-rail-march-7th.yaml new file mode 100644 index 00000000..883d0d3a --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--honkai-star-rail-march-7th.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - March 7th)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#FEF8FC" + fg: "#483050" + black: "#483050" + red: "#E888A8" + green: "#88D8C8" + yellow: "#E8B888" + blue: "#DCA9CC" + magenta: "#B898C8" + cyan: "#88ECFB" + white: "#F0D8E8" + brightBlack: "#8A7098" + brightRed: "#F0A0B8" + brightGreen: "#A8D8CA" + brightYellow: "#F0D8A8" + brightBlue: "#C8ACD8" + brightMagenta: "#C8A8D8" + brightCyan: "#7DC5F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 93.3 + black: 93.3 + red: 45 + green: 25.5 + yellow: 30.2 + blue: 35 + magenta: 46 + cyan: 14.2 + white: 13.4 + brightBlack: 66.7 + brightRed: 35.7 + brightGreen: 22.9 + brightYellow: 15.7 + brightBlue: 36.2 + brightMagenta: 37.6 + brightCyan: 32.5 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes--honkai-star-rail-ruan-mei.yaml b/themes/genshin-impact-hsr-color-themes--honkai-star-rail-ruan-mei.yaml new file mode 100644 index 00000000..a3046027 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes--honkai-star-rail-ruan-mei.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - Ruan Mei)" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#FAF8F5" + fg: "#2C435D" + black: "#2C435D" + red: "#A07070" + green: "#7A9A7A" + yellow: "#C8A878" + blue: "#4A7A85" + magenta: "#8A7A90" + cyan: "#6695A0" + white: "#E0DCD5" + brightBlack: "#677E7C" + brightRed: "#B08080" + brightGreen: "#8AAA8A" + brightYellow: "#D6C09E" + brightBlue: "#7AA0A8" + brightMagenta: "#9A8A9A" + brightCyan: "#7AAFB8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 89.4 + black: 89.4 + red: 64.5 + green: 54.1 + yellow: 40.3 + blue: 68.9 + magenta: 63.1 + cyan: 56.2 + white: 13.9 + brightBlack: 65.9 + brightRed: 57 + brightGreen: 46.1 + brightYellow: 28.3 + brightBlue: 50.2 + brightMagenta: 55.7 + brightCyan: 43.7 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-chiori-dark.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-chiori-dark.yaml new file mode 100644 index 00000000..daa326dc --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-chiori-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Chiori (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#281818" + fg: "#F0E0D0" + black: "#382838" + red: "#F0A898" + green: "#A8D8B8" + yellow: "#E7A43A" + blue: "#D8C8B8" + magenta: "#E7A43A" + cyan: "#E7A43A" + white: "#F0E0D0" + brightBlack: "#A89088" + brightRed: "#F8E8D8" + brightGreen: "#D8F8D8" + brightYellow: "#F8F8D8" + brightBlue: "#D8D0E8" + brightMagenta: "#E7A43A" + brightCyan: "#E7A43A" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: 19 + pair: null + contrast: + fg: 87.8 + black: 0 + red: 63.4 + green: 74.5 + yellow: 58.6 + blue: 73.1 + magenta: 58.6 + cyan: 58.6 + white: 87.8 + brightBlack: 43.5 + brightRed: 92.8 + brightGreen: 96.1 + brightYellow: 100.2 + brightBlue: 78.6 + brightMagenta: 58.6 + brightCyan: 58.6 + brightWhite: 106.2 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-citlali-dark.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-citlali-dark.yaml new file mode 100644 index 00000000..8ab1d6df --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-citlali-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Citlali (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#1A1428" + fg: "#E8D8F0" + black: "#382850" + red: "#E898B8" + green: "#90C8B8" + yellow: "#D8C898" + blue: "#B8A0E0" + magenta: "#D99EC7" + cyan: "#D99EC7" + white: "#E8D8F0" + brightBlack: "#9080A0" + brightRed: "#F0B8D0" + brightGreen: "#A8D8C8" + brightYellow: "#E8D8A8" + brightBlue: "#C8B0E8" + brightMagenta: "#D8B0F0" + brightCyan: "#B8D0F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 297 + pair: null + contrast: + fg: 85.2 + black: 0 + red: 58.3 + green: 65.7 + yellow: 72.6 + blue: 55.8 + magenta: 58.5 + cyan: 58.5 + white: 85.2 + brightBlack: 36.7 + brightRed: 71.9 + brightGreen: 75.7 + brightYellow: 82.2 + brightBlue: 64.2 + brightMagenta: 66.9 + brightCyan: 75.7 + brightWhite: 106.8 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-columbina-dark.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-columbina-dark.yaml new file mode 100644 index 00000000..9ee53a1c --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-columbina-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Columbina (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#1A171D" + fg: "#E8F4FB" + black: "#1A171D" + red: "#E87A95" + green: "#6FBEC0" + yellow: "#F0C89F" + blue: "#90CCEA" + magenta: "#E091CA" + cyan: "#A8DCF5" + white: "#C3C8ED" + brightBlack: "#4A4552" + brightRed: "#FF91AB" + brightGreen: "#85D8DA" + brightYellow: "#FFD8B5" + brightBlue: "#A8DCF5" + brightMagenta: "#F5A7E0" + brightCyan: "#C0E8FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 308 + pair: null + contrast: + fg: 98.2 + black: 0 + red: 48 + green: 59.2 + yellow: 76.3 + blue: 69.8 + magenta: 55.5 + cyan: 79.7 + white: 73.3 + brightBlack: 9.8 + brightRed: 59.8 + brightGreen: 73.6 + brightYellow: 86.1 + brightBlue: 79.7 + brightMagenta: 67.4 + brightCyan: 88.1 + brightWhite: 106.7 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-furina-dark.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-furina-dark.yaml new file mode 100644 index 00000000..45176ca3 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-furina-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Furina (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#0F1823" + fg: "#D4E6F0" + black: "#25374D" + red: "#E886A8" + green: "#70C8A8" + yellow: "#D8B880" + blue: "#98B4E0" + magenta: "#7DC5F0" + cyan: "#7DC5F0" + white: "#D4E6F0" + brightBlack: "#708090" + brightRed: "#F0A8C0" + brightGreen: "#90D8B8" + brightYellow: "#E8C898" + brightBlue: "#A8C0E8" + brightMagenta: "#A8D0F0" + brightCyan: "#98D0E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 254 + pair: null + contrast: + fg: 88.8 + black: 0 + red: 52.1 + green: 62.8 + yellow: 65.4 + blue: 59.8 + magenta: 65.7 + cyan: 65.7 + white: 88.8 + brightBlack: 32.8 + brightRed: 65.4 + brightGreen: 73 + brightYellow: 75 + brightBlue: 66.8 + brightMagenta: 74.1 + brightCyan: 72.2 + brightWhite: 106.8 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-ganyu-dark.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-ganyu-dark.yaml new file mode 100644 index 00000000..064222b1 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-ganyu-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Ganyu (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#141A22" + fg: "#D8E0E8" + black: "#2A3440" + red: "#D87080" + green: "#78B898" + yellow: "#D0B070" + blue: "#6088B8" + magenta: "#A888B0" + cyan: "#78B0C8" + white: "#D0D8E0" + brightBlack: "#6A788A" + brightRed: "#E89098" + brightGreen: "#90D0B0" + brightYellow: "#E8D098" + brightBlue: "#88B0D8" + brightMagenta: "#C0A8C8" + brightCyan: "#98C8D8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 256 + pair: null + contrast: + fg: 85.9 + black: 0 + red: 41.6 + green: 55.4 + yellow: 60.5 + blue: 36.1 + magenta: 42.7 + cyan: 54 + white: 81 + brightBlack: 29.1 + brightRed: 54.3 + brightGreen: 68.8 + brightYellow: 78.1 + brightBlue: 56.1 + brightMagenta: 58.2 + brightCyan: 67.6 + brightWhite: 106.6 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-ganyu-high-contrast.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-ganyu-high-contrast.yaml new file mode 100644 index 00000000..dbeb8d44 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-ganyu-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Ganyu (High Contrast))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#000000" + fg: "#E0E8F0" + black: "#304050" + red: "#F0889A" + green: "#90DAB0" + yellow: "#E8C888" + blue: "#78B8E8" + magenta: "#C0A0C8" + cyan: "#88C8D8" + white: "#E0E8F0" + brightBlack: "#7090A8" + brightRed: "#F8A8B8" + brightGreen: "#A8F0C8" + brightYellow: "#F8E0A0" + brightBlue: "#A0D8F8" + brightMagenta: "#D8C0E0" + brightCyan: "#A8E0F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 92.2 + black: 8 + red: 54.8 + green: 74.7 + yellow: 75.6 + blue: 60.4 + magenta: 56.6 + cyan: 67.6 + white: 92.2 + brightBlack: 40.6 + brightRed: 67.6 + brightGreen: 88.2 + brightYellow: 89 + brightBlue: 78.4 + brightMagenta: 73.2 + brightCyan: 82.4 + brightWhite: 107.9 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-ganyu-light.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-ganyu-light.yaml new file mode 100644 index 00000000..e91a6e55 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-ganyu-light.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Ganyu (Light))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#F5F9FC" + fg: "#2A3545" + black: "#2A3545" + red: "#C94E51" + green: "#5A9A78" + yellow: "#B89850" + blue: "#2D39AA" + magenta: "#8A5A95" + cyan: "#5A9AAA" + white: "#EDF4F9" + brightBlack: "#6A7888" + brightRed: "#D87080" + brightGreen: "#72B290" + brightYellow: "#C6A270" + brightBlue: "#4A6B9A" + brightMagenta: "#A878A8" + brightCyan: "#72B2C0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 94.3 + black: 94.3 + red: 66.3 + green: 56.5 + yellow: 49.1 + blue: 86.6 + magenta: 72.1 + cyan: 54.7 + white: 0 + brightBlack: 67.4 + brightRed: 54.9 + brightGreen: 44.6 + brightYellow: 43 + brightBlue: 73.1 + brightMagenta: 59 + brightCyan: 42.7 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-il-dottore-dark.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-il-dottore-dark.yaml new file mode 100644 index 00000000..98e746a0 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-il-dottore-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Il Dottore (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#0A0C14" + fg: "#C8D8E8" + black: "#18283C" + red: "#C08088" + green: "#80B0A0" + yellow: "#C0B080" + blue: "#6090C0" + magenta: "#A090B8" + cyan: "#60B8D0" + white: "#C8D8E8" + brightBlack: "#5A7090" + brightRed: "#D0A0A8" + brightGreen: "#A0D0C0" + brightYellow: "#E0D0A0" + brightBlue: "#80B0E0" + brightMagenta: "#C0B0D0" + brightCyan: "#80D0E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "blue" + hue: 273 + pair: null + contrast: + fg: 81.5 + black: 0 + red: 43.1 + green: 53.9 + yellow: 59.7 + blue: 40.5 + magenta: 45.9 + cyan: 57.4 + white: 81.5 + brightBlack: 26.6 + brightRed: 57.3 + brightGreen: 71.9 + brightYellow: 78.2 + brightBlue: 57 + brightMagenta: 62.7 + brightCyan: 71.2 + brightWhite: 107.6 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-kamisato-ayaka-dark.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-kamisato-ayaka-dark.yaml new file mode 100644 index 00000000..f1bedaaf --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-kamisato-ayaka-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Kamisato Ayaka (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#141828" + fg: "#E0ECF8" + black: "#283858" + red: "#E75F96" + green: "#80D8B8" + yellow: "#E8B840" + blue: "#B8D0F0" + magenta: "#C5DBEE" + cyan: "#C5DBEE" + white: "#E0ECF8" + brightBlack: "#8898A8" + brightRed: "#F0B8D0" + brightGreen: "#A0E8C8" + brightYellow: "#E8C860" + brightBlue: "#B8D0F0" + brightMagenta: "#C5DBEE" + brightCyan: "#C5DBEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 273 + pair: null + contrast: + fg: 93.3 + black: 0 + red: 41.5 + green: 71.7 + yellow: 66.7 + blue: 75.6 + magenta: 81.8 + cyan: 81.8 + white: 93.3 + brightBlack: 44.5 + brightRed: 71.8 + brightGreen: 82.4 + brightYellow: 73.6 + brightBlue: 75.6 + brightMagenta: 81.8 + brightCyan: 81.8 + brightWhite: 106.7 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-layla-dark.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-layla-dark.yaml new file mode 100644 index 00000000..91e64cf4 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-layla-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Layla (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#181C2A" + fg: "#D8ECF8" + black: "#2A3850" + red: "#E8A8C8" + green: "#A0D8C8" + yellow: "#DDAB6D" + blue: "#A8B8D8" + magenta: "#C0E9F7" + cyan: "#C0E9F7" + white: "#D8ECF8" + brightBlack: "#8090A8" + brightRed: "#F0C8E0" + brightGreen: "#B8E8D8" + brightYellow: "#E8E8B8" + brightBlue: "#C8C0E8" + brightMagenta: "#C8E0F8" + brightCyan: "#C8E0F8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: 272 + pair: null + contrast: + fg: 91.8 + black: 0 + red: 63.8 + green: 74.4 + yellow: 60.2 + blue: 62 + magenta: 87.6 + cyan: 87.6 + white: 91.8 + brightBlack: 40.3 + brightRed: 78.3 + brightGreen: 84.9 + brightYellow: 89.4 + brightBlue: 69.9 + brightMagenta: 84.4 + brightCyan: 84.4 + brightWhite: 106.2 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-sandrone-dark.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-sandrone-dark.yaml new file mode 100644 index 00000000..a0b67e31 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-sandrone-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Sandrone (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#12141A" + fg: "#E0DCE8" + black: "#282430" + red: "#C08090" + green: "#90B8A0" + yellow: "#C8B890" + blue: "#8090C0" + magenta: "#B08898" + cyan: "#90A8C0" + white: "#D8D0E0" + brightBlack: "#787080" + brightRed: "#D0A8B0" + brightGreen: "#A8D0B8" + brightYellow: "#E0D8B0" + brightBlue: "#A0B0D8" + brightMagenta: "#D0B0B8" + brightCyan: "#B0C0D8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 271 + pair: null + contrast: + fg: 85.7 + black: 0 + red: 42.9 + green: 58.2 + yellow: 63.9 + blue: 42.4 + magenta: 43.3 + cyan: 52.9 + white: 79.1 + brightBlack: 28 + brightRed: 60 + brightGreen: 71.8 + brightYellow: 81.7 + brightBlue: 58.9 + brightMagenta: 63.3 + brightCyan: 67.1 + brightWhite: 107.1 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-scaramouche-dark.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-scaramouche-dark.yaml new file mode 100644 index 00000000..9a0d7516 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-scaramouche-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Scaramouche (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#1E1B24" + fg: "#E0D8E8" + black: "#1E1B24" + red: "#FF4D4D" + green: "#6A8A6A" + yellow: "#B8906A" + blue: "#5A7A90" + magenta: "#9A60E0" + cyan: "#5A7A90" + white: "#E0D8E8" + brightBlack: "#6A5A78" + brightRed: "#FF6B6B" + brightGreen: "#7AA97A" + brightYellow: "#C8A07A" + brightBlue: "#6A8AA0" + brightMagenta: "#B080E0" + brightCyan: "#6A8AA0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 300 + pair: null + contrast: + fg: 83.1 + black: 0 + red: 41.4 + green: 34.1 + yellow: 44.9 + blue: 28.5 + magenta: 32.3 + cyan: 28.5 + white: 83.1 + brightBlack: 19 + brightRed: 47.5 + brightGreen: 47.9 + brightYellow: 53.2 + brightBlue: 36 + brightMagenta: 43.7 + brightCyan: 36 + brightWhite: 106.2 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-skirk-dark.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-skirk-dark.yaml new file mode 100644 index 00000000..002ffe6f --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-skirk-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Skirk (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#0B0B1A" + fg: "#B5FDFF" + black: "#2A2A50" + red: "#EFADCA" + green: "#80E0E0" + yellow: "#D0A0C0" + blue: "#C0A0F0" + magenta: "#B183FC" + cyan: "#B183FC" + white: "#B5FDFF" + brightBlack: "#8080B0" + brightRed: "#F0A0C0" + brightGreen: "#90E0E0" + brightYellow: "#E0C0D0" + brightBlue: "#B0A0F0" + brightMagenta: "#B5FDFF" + brightCyan: "#A0D0F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 282 + pair: null + contrast: + fg: 98 + black: 0 + red: 68.3 + green: 78.2 + yellow: 58.3 + blue: 58.6 + magenta: 48 + cyan: 48 + white: 98 + brightBlack: 36.6 + brightRed: 63.5 + brightGreen: 79.3 + brightYellow: 73.4 + brightBlue: 56.5 + brightMagenta: 98 + brightCyan: 74.1 + brightWhite: 107.6 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-wanderer-dark.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-wanderer-dark.yaml new file mode 100644 index 00000000..ee3bcee9 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-wanderer-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Wanderer (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#0F1820" + fg: "#DCEEF8" + black: "#253550" + red: "#3C8BA2" + green: "#70C8B0" + yellow: "#D0B868" + blue: "#B8D0F0" + magenta: "#94CBCF" + cyan: "#94CBCF" + white: "#DCEEF8" + brightBlack: "#7898B0" + brightRed: "#F0B8D0" + brightGreen: "#A0E8C8" + brightYellow: "#D8C870" + brightBlue: "#B8D0F0" + brightMagenta: "#94CBCF" + brightCyan: "#94CBCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 246 + pair: null + contrast: + fg: 93.9 + black: 0 + red: 34.6 + green: 63.1 + yellow: 63.8 + blue: 75.7 + magenta: 68.4 + cyan: 68.4 + white: 93.9 + brightBlack: 43.6 + brightRed: 72 + brightGreen: 82.6 + brightYellow: 71.7 + brightBlue: 75.7 + brightMagenta: 68.4 + brightCyan: 68.4 + brightWhite: 106.8 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-yae-miko-dark.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-yae-miko-dark.yaml new file mode 100644 index 00000000..d7bebff4 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-yae-miko-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Yae Miko (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#1C1418" + fg: "#E8DCE4" + black: "#2A2024" + red: "#C08090" + green: "#90A890" + yellow: "#C0B090" + blue: "#9090B0" + magenta: "#B090A8" + cyan: "#90A8B0" + white: "#E8D8E0" + brightBlack: "#786870" + brightRed: "#E0A0B0" + brightGreen: "#B0C8B0" + brightYellow: "#E0D0A0" + brightBlue: "#B0B0D0" + brightMagenta: "#D0B0C8" + brightCyan: "#B0C8D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 347 + pair: null + contrast: + fg: 86.4 + black: 0 + red: 42.7 + green: 50.8 + yellow: 59.5 + blue: 43 + magenta: 46.5 + cyan: 52 + white: 84.5 + brightBlack: 24.8 + brightRed: 59.4 + brightGreen: 68.6 + brightYellow: 77.5 + brightBlue: 60 + brightMagenta: 63.8 + brightCyan: 69.9 + brightWhite: 106.9 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-dark.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-dark.yaml new file mode 100644 index 00000000..5535aba8 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Yumemizuki Mizuki (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#151520" + fg: "#E0DCE8" + black: "#1A1A2E" + red: "#E06888" + green: "#68B878" + yellow: "#D8B868" + blue: "#5A78C8" + magenta: "#C673C9" + cyan: "#68B8C8" + white: "#E0DCE8" + brightBlack: "#5A5878" + brightRed: "#F080A0" + brightGreen: "#80D090" + brightYellow: "#F0D080" + brightBlue: "#78A0E8" + brightMagenta: "#E090E0" + brightCyan: "#80D0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 85.6 + black: 0 + red: 41.8 + green: 53.8 + yellow: 65.1 + blue: 31.6 + magenta: 42.7 + cyan: 56.7 + white: 85.6 + brightBlack: 17.7 + brightRed: 51.8 + brightGreen: 66.9 + brightYellow: 79.1 + brightBlue: 49.9 + brightMagenta: 56.6 + brightCyan: 70.1 + brightWhite: 107 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-high-contrast.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-high-contrast.yaml new file mode 100644 index 00000000..dbfce1ea --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Yumemizuki Mizuki (High Contrast))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#0A0A12" + fg: "#F0ECF8" + black: "#0C0C16" + red: "#F86898" + green: "#58D870" + yellow: "#F8D858" + blue: "#5888E8" + magenta: "#E090E8" + cyan: "#58D8E8" + white: "#F0ECF8" + brightBlack: "#7878A0" + brightRed: "#FF88B0" + brightGreen: "#78F890" + brightYellow: "#FFF088" + brightBlue: "#88B8FF" + brightMagenta: "#F0A8F0" + brightCyan: "#88F0F8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 284 + pair: null + contrast: + fg: 96.4 + black: 0 + red: 48.1 + green: 68.5 + yellow: 83.8 + blue: 39.8 + magenta: 57.8 + cyan: 72.8 + white: 96.4 + brightBlack: 32.5 + brightRed: 58.4 + brightGreen: 86.9 + brightYellow: 96.6 + brightBlue: 62.8 + brightMagenta: 68.7 + brightCyan: 87.7 + brightWhite: 107.7 diff --git a/themes/genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-light.yaml b/themes/genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-light.yaml new file mode 100644 index 00000000..07c670a8 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-genshin-impact-yumemizuki-mizuki-light.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Genshin Impact - Yumemizuki Mizuki (Light))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#F8F5FA" + fg: "#2A2445" + black: "#2A2445" + red: "#C05878" + green: "#5A9A68" + yellow: "#A08840" + blue: "#151C6E" + magenta: "#C673C9" + cyan: "#5A9AA8" + white: "#F0EBF5" + brightBlack: "#786888" + brightRed: "#D87890" + brightGreen: "#72B280" + brightYellow: "#B8A058" + brightBlue: "#1A2380" + brightMagenta: "#D890D8" + brightCyan: "#72B2C0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 96 + black: 96 + red: 63.7 + green: 55.5 + yellow: 56.6 + blue: 95.6 + magenta: 52.8 + cyan: 53.4 + white: 0 + brightBlack: 69.7 + brightRed: 50.9 + brightGreen: 43.6 + brightYellow: 44.7 + brightBlue: 93.4 + brightMagenta: 41 + brightCyan: 41.3 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes-honkai-star-rail-aventurine-dark.yaml b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-aventurine-dark.yaml new file mode 100644 index 00000000..8b4de641 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-aventurine-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - Aventurine (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#141618" + fg: "#D8D4CC" + black: "#1C1F22" + red: "#D08080" + green: "#80B090" + yellow: "#C9B87A" + blue: "#6AB0C0" + magenta: "#B090A0" + cyan: "#70B0A0" + white: "#D8D4CC" + brightBlack: "#5A6A70" + brightRed: "#E0A0A0" + brightGreen: "#A0D0A8" + brightYellow: "#E0D0A0" + brightBlue: "#90C8D8" + brightMagenta: "#D0B0C0" + brightCyan: "#98D0C0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.8 + black: 0 + red: 44.9 + green: 52.7 + yellow: 63.4 + blue: 53.1 + magenta: 46.2 + cyan: 52.1 + white: 79.8 + brightBlack: 22.7 + brightRed: 58.9 + brightGreen: 70.3 + brightYellow: 77.6 + brightBlue: 67.3 + brightMagenta: 63.5 + brightCyan: 70.5 + brightWhite: 107 diff --git a/themes/genshin-impact-hsr-color-themes-honkai-star-rail-cyrene-dark.yaml b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-cyrene-dark.yaml new file mode 100644 index 00000000..09c040f6 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-cyrene-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - Cyrene (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#1E1828" + fg: "#EAE0F0" + black: "#181220" + red: "#C08080" + green: "#8AAA8A" + yellow: "#C8B090" + blue: "#8B95DB" + magenta: "#A05DD4" + cyan: "#7090A8" + white: "#EAE0F0" + brightBlack: "#5A5060" + brightRed: "#D473A4" + brightGreen: "#9ABA9A" + brightYellow: "#D8C0A0" + brightBlue: "#9BA5E8" + brightMagenta: "#B080E0" + brightCyan: "#80A0B8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 301 + pair: null + contrast: + fg: 88.5 + black: 0 + red: 41.7 + green: 50.4 + yellow: 60.1 + blue: 46.1 + magenta: 31.7 + cyan: 39.2 + white: 88.5 + brightBlack: 14.1 + brightRed: 42.7 + brightGreen: 59 + brightYellow: 69.2 + brightBlue: 54.3 + brightMagenta: 43.9 + brightCyan: 47.3 + brightWhite: 106.4 diff --git a/themes/genshin-impact-hsr-color-themes-honkai-star-rail-dan-heng-dark.yaml b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-dan-heng-dark.yaml new file mode 100644 index 00000000..88a7e851 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-dan-heng-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - Dan Heng (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#0E1A1E" + fg: "#E8ECEC" + black: "#061014" + red: "#A03030" + green: "#4A8898" + yellow: "#B87000" + blue: "#2E5B63" + magenta: "#790000" + cyan: "#4A8898" + white: "#E8ECEC" + brightBlack: "#4A6670" + brightRed: "#C04040" + brightGreen: "#5A9AA8" + brightYellow: "#D09020" + brightBlue: "#3A6E78" + brightMagenta: "#A03030" + brightCyan: "#5A9AA8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 221 + pair: null + contrast: + fg: 93.8 + black: 0 + red: 17.2 + green: 33.4 + yellow: 34.3 + blue: 14.9 + magenta: 0 + cyan: 33.4 + white: 93.8 + brightBlack: 20.1 + brightRed: 25.8 + brightGreen: 41.8 + brightYellow: 48.1 + brightBlue: 22.2 + brightMagenta: 17.2 + brightCyan: 41.8 + brightWhite: 106.7 diff --git a/themes/genshin-impact-hsr-color-themes-honkai-star-rail-firefly-dark.yaml b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-firefly-dark.yaml new file mode 100644 index 00000000..c469c690 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-firefly-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - Firefly (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#1C1F22" + fg: "#E0D8D2" + black: "#2A2520" + red: "#B08080" + green: "#8AAA8A" + yellow: "#C8B090" + blue: "#6A7580" + magenta: "#9A8090" + cyan: "#6F9C97" + white: "#E0D8D2" + brightBlack: "#5A5550" + brightRed: "#C09090" + brightGreen: "#9ABA9A" + brightYellow: "#D8C0A0" + brightBlue: "#7A8590" + brightMagenta: "#AA90A0" + brightCyan: "#8ABAB2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 81.8 + black: 0 + red: 38.8 + green: 49.9 + yellow: 59.6 + blue: 27.1 + magenta: 36.4 + cyan: 42.5 + white: 81.8 + brightBlack: 14.5 + brightRed: 46.8 + brightGreen: 58.6 + brightYellow: 68.7 + brightBlue: 34.6 + brightMagenta: 44.4 + brightCyan: 58 + brightWhite: 106 diff --git a/themes/genshin-impact-hsr-color-themes-honkai-star-rail-kafka-dark.yaml b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-kafka-dark.yaml new file mode 100644 index 00000000..8bd5220c --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-kafka-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - Kafka (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#18141A" + fg: "#E0D8DC" + black: "#28222A" + red: "#C87088" + green: "#80B898" + yellow: "#C0A070" + blue: "#7888C0" + magenta: "#C075AE" + cyan: "#70A0B0" + white: "#E0D8DC" + brightBlack: "#6A6068" + brightRed: "#D898A8" + brightGreen: "#98D0B0" + brightYellow: "#D8B888" + brightBlue: "#90A0D0" + brightMagenta: "#D898C8" + brightCyan: "#88B8C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 315 + pair: null + contrast: + fg: 83.3 + black: 0 + red: 39.3 + green: 56.4 + yellow: 52.6 + blue: 38.8 + magenta: 40.9 + cyan: 46.3 + white: 83.3 + brightBlack: 20.8 + brightRed: 55.2 + brightGreen: 69.9 + brightYellow: 65.9 + brightBlue: 50.6 + brightMagenta: 56.6 + brightCyan: 59 + brightWhite: 107 diff --git a/themes/genshin-impact-hsr-color-themes-honkai-star-rail-march-7th-dark.yaml b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-march-7th-dark.yaml new file mode 100644 index 00000000..e1bd7878 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-march-7th-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - March 7th (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#281828" + fg: "#F0D8E8" + black: "#382850" + red: "#F0B8D8" + green: "#90E8D8" + yellow: "#E8B888" + blue: "#C8B8E8" + magenta: "#FAB3CA" + cyan: "#FAB3CA" + white: "#F0D8E8" + brightBlack: "#A890B8" + brightRed: "#F8D8F0" + brightGreen: "#C8F8E8" + brightYellow: "#F8F8C8" + brightBlue: "#D8D0F8" + brightMagenta: "#88ECFB" + brightCyan: "#88ECFB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "blue" + hue: 327 + pair: null + contrast: + fg: 85.2 + black: 0 + red: 71.6 + green: 81.2 + yellow: 67.4 + blue: 66.5 + magenta: 70.8 + cyan: 70.8 + white: 85.2 + brightBlack: 45.3 + brightRed: 86.8 + brightGreen: 94.8 + brightYellow: 99.5 + brightBlue: 79.3 + brightMagenta: 84.3 + brightCyan: 84.3 + brightWhite: 106.1 diff --git a/themes/genshin-impact-hsr-color-themes-honkai-star-rail-robin-dark.yaml b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-robin-dark.yaml new file mode 100644 index 00000000..44c8e16c --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-robin-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - Robin (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#141018" + fg: "#D8DCE8" + black: "#2A2440" + red: "#D0A0B0" + green: "#A0C8B8" + yellow: "#D8C8A0" + blue: "#A0A8D8" + magenta: "#D0BAFF" + cyan: "#A0C8E0" + white: "#D8DCE8" + brightBlack: "#6858A0" + brightRed: "#E0B8C0" + brightGreen: "#B0D8C8" + brightYellow: "#E8D8B0" + brightBlue: "#B0B8E8" + brightMagenta: "#E0C8FF" + brightCyan: "#B0D8F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 307 + pair: null + contrast: + fg: 84.9 + black: 0 + red: 57.3 + green: 67.7 + yellow: 73.4 + blue: 56 + magenta: 71 + cyan: 69.5 + white: 84.9 + brightBlack: 21.3 + brightRed: 69.3 + brightGreen: 77.1 + brightYellow: 83 + brightBlue: 64.9 + brightMagenta: 78.7 + brightCyan: 78.9 + brightWhite: 107.3 diff --git a/themes/genshin-impact-hsr-color-themes-honkai-star-rail-robin-light-soft.yaml b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-robin-light-soft.yaml new file mode 100644 index 00000000..c1258e29 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-robin-light-soft.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - Robin (Light Soft))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#F5F3F9" + fg: "#3A2D58" + black: "#3A2D58" + red: "#A85868" + green: "#589070" + yellow: "#987848" + blue: "#6B5A9E" + magenta: "#9D5896" + cyan: "#5088A0" + white: "#ECEAF2" + brightBlack: "#7A6FA8" + brightRed: "#C07880" + brightGreen: "#70B090" + brightYellow: "#B89868" + brightBlue: "#7968AD" + brightMagenta: "#B878A8" + brightCyan: "#68A8B8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 91.4 + black: 91.4 + red: 67.2 + green: 58.1 + yellow: 61.5 + blue: 72.6 + magenta: 67.2 + cyan: 59.8 + white: 0 + brightBlack: 64.6 + brightRed: 54.3 + brightGreen: 42.9 + brightYellow: 46 + brightBlue: 66.4 + brightMagenta: 54 + brightCyan: 45.1 + brightWhite: 0 diff --git a/themes/genshin-impact-hsr-color-themes-honkai-star-rail-ruan-mei-dark.yaml b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-ruan-mei-dark.yaml new file mode 100644 index 00000000..46b3ca58 --- /dev/null +++ b/themes/genshin-impact-hsr-color-themes-honkai-star-rail-ruan-mei-dark.yaml @@ -0,0 +1,53 @@ +name: "genshin impact & hsr color themes (Honkai: Star Rail - Ruan Mei (Dark))" +source: + marketplace_id: "frostmoon-dev.genshin-hsr-themes" + version: "0.1.6" + installs: 533 + rating: 5 + ratings: 1 + author: "⏾ frostmoon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.genshin-hsr-themes" + formats: null +colors: + bg: "#1A252F" + fg: "#E8E4E0" + black: "#162028" + red: "#B08080" + green: "#8AAA8A" + yellow: "#D6C09E" + blue: "#6A8A90" + magenta: "#9A8A9A" + cyan: "#7AAFB8" + white: "#E8E4E0" + brightBlack: "#5A6A70" + brightRed: "#C09090" + brightGreen: "#9ABA9A" + brightYellow: "#E6D0AE" + brightBlue: "#7A9AA0" + brightMagenta: "#AA9AAA" + brightCyan: "#8BC0C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 246 + pair: null + contrast: + fg: 88 + black: 0 + red: 37.9 + green: 49.1 + yellow: 67.5 + blue: 34.2 + magenta: 39.3 + cyan: 51.5 + white: 88 + brightBlack: 20.9 + brightRed: 46 + brightGreen: 57.7 + brightYellow: 77 + brightBlue: 42.1 + brightMagenta: 47.5 + brightCyan: 60.8 + brightWhite: 105.1 diff --git a/themes/genshin-vibes--genshin-vibes-celestine-bardlight.yaml b/themes/genshin-vibes--genshin-vibes-celestine-bardlight.yaml new file mode 100644 index 00000000..71ce0a19 --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-celestine-bardlight.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Celestine Bardlight)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#F8FBFD" + fg: "#1A3A38" + black: "#F0F8F7" + red: "#BF5530" + green: "#26834F" + yellow: "#A66D32" + blue: "#31A586" + magenta: "#26824E" + cyan: "#2D72A6" + white: "#76A599" + brightBlack: "#76A599" + brightRed: "#BF5530" + brightGreen: "#26834F" + brightYellow: "#A66D32" + brightBlue: "#31A586" + brightMagenta: "#26824E" + brightCyan: "#2D72A6" + brightWhite: "#1A3A38" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.3 + black: 0 + red: 68.7 + green: 69.8 + yellow: 67 + blue: 54.4 + magenta: 70.2 + cyan: 72.6 + white: 50.5 + brightBlack: 50.5 + brightRed: 68.7 + brightGreen: 69.8 + brightYellow: 67 + brightBlue: 54.4 + brightMagenta: 70.2 + brightCyan: 72.6 + brightWhite: 95.3 diff --git a/themes/genshin-vibes--genshin-vibes-damselette-whisper.yaml b/themes/genshin-vibes--genshin-vibes-damselette-whisper.yaml new file mode 100644 index 00000000..b8cf3985 --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-damselette-whisper.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Damselette Whisper)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#F7F9FC" + fg: "#634D9A" + black: "#F2F4F8" + red: "#C94A5A" + green: "#4F8A5B" + yellow: "#B8892E" + blue: "#495A79" + magenta: "#906B99" + cyan: "#7A5C99" + white: "#99A0B0" + brightBlack: "#99A0B0" + brightRed: "#C94A5A" + brightGreen: "#4F8A5B" + brightYellow: "#B8892E" + brightBlue: "#495A79" + brightMagenta: "#906B99" + brightCyan: "#7A5C99" + brightWhite: "#634D9A" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.8 + black: 0 + red: 67.1 + green: 64.3 + yellow: 54.8 + blue: 80.3 + magenta: 66.9 + cyan: 73.7 + white: 47.4 + brightBlack: 47.4 + brightRed: 67.1 + brightGreen: 64.3 + brightYellow: 54.8 + brightBlue: 80.3 + brightMagenta: 66.9 + brightCyan: 73.7 + brightWhite: 79.8 diff --git a/themes/genshin-vibes--genshin-vibes-emergency-food.yaml b/themes/genshin-vibes--genshin-vibes-emergency-food.yaml new file mode 100644 index 00000000..0634ab8a --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-emergency-food.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Emergency Food)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#0F141A" + fg: "#F0F4F8" + black: "#0B1218" + red: "#FF91A4" + green: "#A8D5E2" + yellow: "#FFD700" + blue: "#E6C719" + magenta: "#A7D5E2" + cyan: "#90C8FF" + white: "#374D5C" + brightBlack: "#374D5C" + brightRed: "#FF91A4" + brightGreen: "#A8D5E2" + brightYellow: "#FFD700" + brightBlue: "#E6C719" + brightMagenta: "#A7D5E2" + brightCyan: "#90C8FF" + brightWhite: "#F0F4F8" +meta: + mode: "dark" + accent: "green" + hue: 253 + pair: null + contrast: + fg: 99.6 + black: 0 + red: 60 + green: 75.9 + yellow: 83.5 + blue: 72.8 + magenta: 75.8 + cyan: 69.7 + white: 11.4 + brightBlack: 11.4 + brightRed: 60 + brightGreen: 75.9 + brightYellow: 83.5 + brightBlue: 72.8 + brightMagenta: 75.8 + brightCyan: 69.7 + brightWhite: 99.6 diff --git a/themes/genshin-vibes--genshin-vibes-eternal-electro-throne.yaml b/themes/genshin-vibes--genshin-vibes-eternal-electro-throne.yaml new file mode 100644 index 00000000..a6064327 --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-eternal-electro-throne.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Eternal Electro Throne)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#1A1628" + fg: "#E8D5F3" + black: "#120F20" + red: "#F1A7B4" + green: "#7ED3B0" + yellow: "#E6C78A" + blue: "#AA7CEE" + magenta: "#D1A6E2" + cyan: "#7ED3B0" + white: "#443A58" + brightBlack: "#443A58" + brightRed: "#F1A7B4" + brightGreen: "#7ED3B0" + brightYellow: "#E6C78A" + brightBlue: "#AA7CEE" + brightMagenta: "#D1A6E2" + brightCyan: "#7ED3B0" + brightWhite: "#E8D5F3" +meta: + mode: "dark" + accent: "magenta" + hue: 293 + pair: null + contrast: + fg: 83.9 + black: 0 + red: 64.6 + green: 68.9 + yellow: 73.7 + blue: 43.1 + magenta: 61.3 + cyan: 68.9 + white: 0 + brightBlack: 0 + brightRed: 64.6 + brightGreen: 68.9 + brightYellow: 73.7 + brightBlue: 43.1 + brightMagenta: 61.3 + brightCyan: 68.9 + brightWhite: 83.9 diff --git a/themes/genshin-vibes--genshin-vibes-fontaine-spotlight.yaml b/themes/genshin-vibes--genshin-vibes-fontaine-spotlight.yaml new file mode 100644 index 00000000..8abe0596 --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-fontaine-spotlight.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Fontaine Spotlight)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#EAF3FF" + fg: "#0F172A" + black: "#F0F8FF" + red: "#BE123C" + green: "#059669" + yellow: "#EA580C" + blue: "#1F3B61" + magenta: "#1D4ED8" + cyan: "#0EA5E9" + white: "#64748B" + brightBlack: "#64748B" + brightRed: "#BE123C" + brightGreen: "#059669" + brightYellow: "#EA580C" + brightBlue: "#1F3B61" + brightMagenta: "#1D4ED8" + brightCyan: "#0EA5E9" + brightWhite: "#0F172A" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 96.8 + black: 0 + red: 71.4 + green: 56.9 + yellow: 54.4 + blue: 88.2 + magenta: 74.4 + cyan: 45.1 + white: 65.3 + brightBlack: 65.3 + brightRed: 71.4 + brightGreen: 56.9 + brightYellow: 54.4 + brightBlue: 88.2 + brightMagenta: 74.4 + brightCyan: 45.1 + brightWhite: 96.8 diff --git a/themes/genshin-vibes--genshin-vibes-frost-ritual.yaml b/themes/genshin-vibes--genshin-vibes-frost-ritual.yaml new file mode 100644 index 00000000..a00905da --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-frost-ritual.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Frost Ritual)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#0F1A26" + fg: "#E8F4FF" + black: "#0A1520" + red: "#FF6B35" + green: "#90C8FF" + yellow: "#FFD700" + blue: "#91CDF3" + magenta: "#4682B4" + cyan: "#90C8FF" + white: "#2A3D5A" + brightBlack: "#2A3D5A" + brightRed: "#FF6B35" + brightGreen: "#90C8FF" + brightYellow: "#FFD700" + brightBlue: "#91CDF3" + brightMagenta: "#4682B4" + brightCyan: "#90C8FF" + brightWhite: "#E8F4FF" +meta: + mode: "dark" + accent: "orange" + hue: 251 + pair: null + contrast: + fg: 98.3 + black: 0 + red: 47 + green: 69.1 + yellow: 83 + blue: 70.7 + magenta: 32.4 + cyan: 69.1 + white: 0 + brightBlack: 0 + brightRed: 47 + brightGreen: 69.1 + brightYellow: 83 + brightBlue: 70.7 + brightMagenta: 32.4 + brightCyan: 69.1 + brightWhite: 98.3 diff --git a/themes/genshin-vibes--genshin-vibes-geo-contract-vault.yaml b/themes/genshin-vibes--genshin-vibes-geo-contract-vault.yaml new file mode 100644 index 00000000..765d0fdd --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-geo-contract-vault.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Geo Contract Vault)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#1E1814" + fg: "#E8D9B2" + black: "#150F0B" + red: "#B85C40" + green: "#D4B085" + yellow: "#E8C660" + blue: "#E8C65E" + magenta: "#E4C060" + cyan: "#C8B8A3" + white: "#3B2F2E" + brightBlack: "#3B2F2E" + brightRed: "#B85C40" + brightGreen: "#D4B085" + brightYellow: "#E8C660" + brightBlue: "#E8C65E" + brightMagenta: "#E4C060" + brightCyan: "#C8B8A3" + brightWhite: "#E8D9B2" +meta: + mode: "dark" + accent: "green" + hue: 56 + pair: null + contrast: + fg: 82.8 + black: 0 + red: 29.5 + green: 61.7 + yellow: 72.7 + blue: 72.7 + magenta: 69.7 + cyan: 64 + white: 0 + brightBlack: 0 + brightRed: 29.5 + brightGreen: 61.7 + brightYellow: 72.7 + brightBlue: 72.7 + brightMagenta: 69.7 + brightCyan: 64 + brightWhite: 82.8 diff --git a/themes/genshin-vibes--genshin-vibes-hydrocourt-midnight.yaml b/themes/genshin-vibes--genshin-vibes-hydrocourt-midnight.yaml new file mode 100644 index 00000000..8fde63b2 --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-hydrocourt-midnight.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Hydrocourt Midnight)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#0D1A26" + fg: "#E8F4FF" + black: "#091420" + red: "#FF69B4" + green: "#40E0D0" + yellow: "#00BFFF" + blue: "#19B3E6" + magenta: "#87CEFA" + cyan: "#ADD8E6" + white: "#2A3D5A" + brightBlack: "#2A3D5A" + brightRed: "#FF69B4" + brightGreen: "#40E0D0" + brightYellow: "#00BFFF" + brightBlue: "#19B3E6" + brightMagenta: "#87CEFA" + brightCyan: "#ADD8E6" + brightWhite: "#E8F4FF" +meta: + mode: "dark" + accent: "red" + hue: 248 + pair: null + contrast: + fg: 98.3 + black: 0 + red: 49.8 + green: 73.6 + yellow: 60.1 + blue: 53.5 + magenta: 70.7 + cyan: 77.4 + white: 0 + brightBlack: 0 + brightRed: 49.8 + brightGreen: 73.6 + brightYellow: 60.1 + brightBlue: 53.5 + brightMagenta: 70.7 + brightCyan: 77.4 + brightWhite: 98.3 diff --git a/themes/genshin-vibes--genshin-vibes-ice-oracle.yaml b/themes/genshin-vibes--genshin-vibes-ice-oracle.yaml new file mode 100644 index 00000000..a057c404 --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-ice-oracle.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Ice Oracle)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#F8FAFC" + fg: "#1E3A5F" + black: "#F1F5F9" + red: "#C2410C" + green: "#10B981" + yellow: "#F97316" + blue: "#4E74B1" + magenta: "#1E3A5F" + cyan: "#2FB7AD" + white: "#8898AF" + brightBlack: "#8898AF" + brightRed: "#C2410C" + brightGreen: "#10B981" + brightYellow: "#F97316" + brightBlue: "#4E74B1" + brightMagenta: "#1E3A5F" + brightCyan: "#2FB7AD" + brightWhite: "#1E3A5F" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 93.1 + black: 0 + red: 71.4 + green: 45.9 + yellow: 50 + blue: 69.4 + magenta: 93.1 + cyan: 45 + white: 52.6 + brightBlack: 52.6 + brightRed: 71.4 + brightGreen: 45.9 + brightYellow: 50 + brightBlue: 69.4 + brightMagenta: 93.1 + brightCyan: 45 + brightWhite: 93.1 diff --git a/themes/genshin-vibes--genshin-vibes-kusanali-dawnbloom.yaml b/themes/genshin-vibes--genshin-vibes-kusanali-dawnbloom.yaml new file mode 100644 index 00000000..f5b925be --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-kusanali-dawnbloom.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Kusanali Dawnbloom)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#FAFFED" + fg: "#202B20" + black: "#F0F8E8" + red: "#AE2012" + green: "#2D6A4F" + yellow: "#9B7A01" + blue: "#4C701A" + magenta: "#606C38" + cyan: "#2D4C3B" + white: "#5C6B5C" + brightBlack: "#5C6B5C" + brightRed: "#AE2012" + brightGreen: "#2D6A4F" + brightYellow: "#9B7A01" + brightBlue: "#4C701A" + brightMagenta: "#606C38" + brightCyan: "#2D4C3B" + brightWhite: "#202B20" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100.1 + black: 0 + red: 81 + green: 80.2 + yellow: 66.2 + blue: 77.3 + magenta: 77 + cyan: 90.6 + white: 76.9 + brightBlack: 76.9 + brightRed: 81 + brightGreen: 80.2 + brightYellow: 66.2 + brightBlue: 77.3 + brightMagenta: 77 + brightCyan: 90.6 + brightWhite: 100.1 diff --git a/themes/genshin-vibes--genshin-vibes-lava-glaze-inferno.yaml b/themes/genshin-vibes--genshin-vibes-lava-glaze-inferno.yaml new file mode 100644 index 00000000..5e857a01 --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-lava-glaze-inferno.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Lava Glaze Inferno)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#0F0A08" + fg: "#F4D4B2" + black: "#0B0806" + red: "#FF4757" + green: "#D4A574" + yellow: "#FF6B35" + blue: "#EB7347" + magenta: "#FFB347" + cyan: "#A68A6E" + white: "#46362D" + brightBlack: "#46362D" + brightRed: "#FF4757" + brightGreen: "#D4A574" + brightYellow: "#FF6B35" + brightBlue: "#EB7347" + brightMagenta: "#FFB347" + brightCyan: "#A68A6E" + brightWhite: "#F4D4B2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.5 + black: 0 + red: 42.1 + green: 58.2 + yellow: 48.1 + blue: 45.9 + magenta: 69.9 + cyan: 41.9 + white: 0 + brightBlack: 0 + brightRed: 42.1 + brightGreen: 58.2 + brightYellow: 48.1 + brightBlue: 45.9 + brightMagenta: 69.9 + brightCyan: 41.9 + brightWhite: 83.5 diff --git a/themes/genshin-vibes--genshin-vibes-morax-golden-seal.yaml b/themes/genshin-vibes--genshin-vibes-morax-golden-seal.yaml new file mode 100644 index 00000000..9fb886a4 --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-morax-golden-seal.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Morax Golden Seal)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#FAF7F0" + fg: "#2C261F" + black: "#F0E6D0" + red: "#8B0000" + green: "#6B5A4A" + yellow: "#CD853F" + blue: "#8B4513" + magenta: "#A0522D" + cyan: "#B8860B" + white: "#8B7355" + brightBlack: "#8B7355" + brightRed: "#8B0000" + brightGreen: "#6B5A4A" + brightYellow: "#CD853F" + brightBlue: "#8B4513" + brightMagenta: "#A0522D" + brightCyan: "#B8860B" + brightWhite: "#2C261F" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97.1 + black: 0 + red: 86 + green: 77.9 + yellow: 51.6 + blue: 79.4 + magenta: 73 + cyan: 54.9 + white: 66.4 + brightBlack: 66.4 + brightRed: 86 + brightGreen: 77.9 + brightYellow: 51.6 + brightBlue: 79.4 + brightMagenta: 73 + brightCyan: 54.9 + brightWhite: 97.1 diff --git a/themes/genshin-vibes--genshin-vibes-outrider-blaze.yaml b/themes/genshin-vibes--genshin-vibes-outrider-blaze.yaml new file mode 100644 index 00000000..12a0cde7 --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-outrider-blaze.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Outrider Blaze)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#1A120F" + fg: "#F4D4B2" + black: "#0F0A08" + red: "#FF4757" + green: "#FFB347" + yellow: "#FF6B35" + blue: "#C52007" + magenta: "#FFCE89" + cyan: "#F78E5A" + white: "#553E30" + brightBlack: "#553E30" + brightRed: "#FF4757" + brightGreen: "#FFB347" + brightYellow: "#FF6B35" + brightBlue: "#C52007" + brightMagenta: "#FFCE89" + brightCyan: "#F78E5A" + brightWhite: "#F4D4B2" +meta: + mode: "dark" + accent: "orange" + hue: 42 + pair: null + contrast: + fg: 83 + black: 0 + red: 41.6 + green: 69.3 + yellow: 47.6 + blue: 23.7 + magenta: 81.1 + cyan: 55.6 + white: 8.8 + brightBlack: 8.8 + brightRed: 41.6 + brightGreen: 69.3 + brightYellow: 47.6 + brightBlue: 23.7 + brightMagenta: 81.1 + brightCyan: 55.6 + brightWhite: 83 diff --git a/themes/genshin-vibes--genshin-vibes-pyro-scout.yaml b/themes/genshin-vibes--genshin-vibes-pyro-scout.yaml new file mode 100644 index 00000000..82b62cf7 --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-pyro-scout.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Pyro Scout)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#FDF8F0" + fg: "#5C3A1A" + black: "#FFF5E6" + red: "#D03C3C" + green: "#C36E44" + yellow: "#D13D07" + blue: "#DD2736" + magenta: "#D13D07" + cyan: "#D66319" + white: "#AE9C7D" + brightBlack: "#AE9C7D" + brightRed: "#D03C3C" + brightGreen: "#C36E44" + brightYellow: "#D13D07" + brightBlue: "#DD2736" + brightMagenta: "#D13D07" + brightCyan: "#D66319" + brightWhite: "#5C3A1A" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.4 + black: 0 + red: 68 + green: 60.6 + yellow: 68 + blue: 67.2 + magenta: 68 + cyan: 60.1 + white: 48.1 + brightBlack: 48.1 + brightRed: 68 + brightGreen: 60.6 + brightYellow: 68 + brightBlue: 67.2 + brightMagenta: 68 + brightCyan: 60.1 + brightWhite: 89.4 diff --git a/themes/genshin-vibes--genshin-vibes-starry-companion.yaml b/themes/genshin-vibes--genshin-vibes-starry-companion.yaml new file mode 100644 index 00000000..ab449f99 --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-starry-companion.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Starry Companion)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#F8FAFF" + fg: "#1A2140" + black: "#F3F6FF" + red: "#D64550" + green: "#4E9F5D" + yellow: "#C89B2C" + blue: "#E7A240" + magenta: "#7084E6" + cyan: "#C77DFF" + white: "#B8C0DF" + brightBlack: "#B8C0DF" + brightRed: "#D64550" + brightGreen: "#4E9F5D" + brightYellow: "#C89B2C" + brightBlue: "#E7A240" + brightMagenta: "#7084E6" + brightCyan: "#C77DFF" + brightWhite: "#1A2140" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 99.6 + black: 0 + red: 66 + green: 56.7 + yellow: 47 + blue: 39.6 + magenta: 58.6 + cyan: 48.9 + white: 30.5 + brightBlack: 30.5 + brightRed: 66 + brightGreen: 56.7 + brightYellow: 47 + brightBlue: 39.6 + brightMagenta: 58.6 + brightCyan: 48.9 + brightWhite: 99.6 diff --git a/themes/genshin-vibes--genshin-vibes-stormrider-breeze.yaml b/themes/genshin-vibes--genshin-vibes-stormrider-breeze.yaml new file mode 100644 index 00000000..d6df72ae --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-stormrider-breeze.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Stormrider Breeze)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#0F1F24" + fg: "#D8F0E8" + black: "#0B191F" + red: "#F0B27A" + green: "#76C7AD" + yellow: "#48D1CC" + blue: "#47D1CD" + magenta: "#A3E4D7" + cyan: "#7AB8A9" + white: "#2A4A4E" + brightBlack: "#2A4A4E" + brightRed: "#F0B27A" + brightGreen: "#76C7AD" + brightYellow: "#48D1CC" + brightBlue: "#47D1CD" + brightMagenta: "#A3E4D7" + brightCyan: "#7AB8A9" + brightWhite: "#D8F0E8" +meta: + mode: "dark" + accent: "cyan" + hue: 220 + pair: null + contrast: + fg: 92.9 + black: 0 + red: 66.2 + green: 62.3 + yellow: 66 + blue: 66 + magenta: 80.9 + cyan: 55.7 + white: 8.5 + brightBlack: 8.5 + brightRed: 66.2 + brightGreen: 62.3 + brightYellow: 66 + brightBlue: 66 + brightMagenta: 80.9 + brightCyan: 55.7 + brightWhite: 92.9 diff --git a/themes/genshin-vibes--genshin-vibes-sunforge-ember.yaml b/themes/genshin-vibes--genshin-vibes-sunforge-ember.yaml new file mode 100644 index 00000000..dcd7ef11 --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-sunforge-ember.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Sunforge Ember)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#FDF8F0" + fg: "#5C3A1A" + black: "#FFF5E6" + red: "#D14D5A" + green: "#8B7355" + yellow: "#FF8C42" + blue: "#FF4757" + magenta: "#B4641D" + cyan: "#8B7355" + white: "#FFB347" + brightBlack: "#FFB347" + brightRed: "#D14D5A" + brightGreen: "#8B7355" + brightYellow: "#FF8C42" + brightBlue: "#FF4757" + brightMagenta: "#B4641D" + brightCyan: "#8B7355" + brightWhite: "#5C3A1A" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.4 + black: 0 + red: 64.8 + green: 67.2 + yellow: 41.2 + blue: 55.5 + magenta: 66.1 + cyan: 67.2 + white: 28.7 + brightBlack: 28.7 + brightRed: 64.8 + brightGreen: 67.2 + brightYellow: 41.2 + brightBlue: 55.5 + brightMagenta: 66.1 + brightCyan: 67.2 + brightWhite: 89.4 diff --git a/themes/genshin-vibes--genshin-vibes-veiled-harbinger.yaml b/themes/genshin-vibes--genshin-vibes-veiled-harbinger.yaml new file mode 100644 index 00000000..c84edeba --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-veiled-harbinger.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Veiled Harbinger)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#141925" + fg: "#E6ECF5" + black: "#0E1118" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#C7D3E6" + magenta: "#D4A5D4" + cyan: "#967AB7" + white: "#3A4355" + brightBlack: "#3A4355" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#C7D3E6" + brightMagenta: "#D4A5D4" + brightCyan: "#967AB7" + brightWhite: "#E6ECF5" +meta: + mode: "dark" + accent: "orange" + hue: 267 + pair: null + contrast: + fg: 93.8 + black: 0 + red: 41.8 + green: 62 + yellow: 70.3 + blue: 78 + magenta: 60.6 + cyan: 36.5 + white: 8.2 + brightBlack: 8.2 + brightRed: 41.8 + brightGreen: 62 + brightYellow: 70.3 + brightBlue: 78 + brightMagenta: 60.6 + brightCyan: 36.5 + brightWhite: 93.8 diff --git a/themes/genshin-vibes--genshin-vibes-verdant-dreamweave.yaml b/themes/genshin-vibes--genshin-vibes-verdant-dreamweave.yaml new file mode 100644 index 00000000..5b714038 --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-verdant-dreamweave.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Verdant Dreamweave)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#1A231A" + fg: "#E8F5D8" + black: "#162116" + red: "#F0D9B5" + green: "#90EE90" + yellow: "#E7FF2F" + blue: "#A7EA43" + magenta: "#B9DAA4" + cyan: "#9AC89A" + white: "#3A4A3A" + brightBlack: "#3A4A3A" + brightRed: "#F0D9B5" + brightGreen: "#90EE90" + brightYellow: "#E7FF2F" + brightBlue: "#A7EA43" + brightMagenta: "#B9DAA4" + brightCyan: "#9AC89A" + brightWhite: "#E8F5D8" +meta: + mode: "dark" + accent: "green" + hue: 145 + pair: null + contrast: + fg: 96 + black: 0 + red: 83.1 + green: 81.3 + yellow: 97.3 + blue: 79.9 + magenta: 75.9 + cyan: 64.3 + white: 8.3 + brightBlack: 8.3 + brightRed: 83.1 + brightGreen: 81.3 + brightYellow: 97.3 + brightBlue: 79.9 + brightMagenta: 75.9 + brightCyan: 64.3 + brightWhite: 96 diff --git a/themes/genshin-vibes--genshin-vibes-violet-eternity-glow.yaml b/themes/genshin-vibes--genshin-vibes-violet-eternity-glow.yaml new file mode 100644 index 00000000..5c27a72e --- /dev/null +++ b/themes/genshin-vibes--genshin-vibes-violet-eternity-glow.yaml @@ -0,0 +1,53 @@ +name: "Genshin Vibes (Genshin Vibes: Violet Eternity Glow)" +source: + marketplace_id: "bubaic.genshin-vibes" + version: "1.0.2" + installs: 177 + rating: 0 + ratings: 0 + author: "Subrata" + repo: "https://github.com/bubaic/genshin-vibes" + url: "https://marketplace.visualstudio.com/items?itemName=bubaic.genshin-vibes" + formats: null +colors: + bg: "#F7F1FC" + fg: "#4A2E6B" + black: "#FBF8FF" + red: "#B85C6E" + green: "#4A9A7D" + yellow: "#9C4D78" + blue: "#601A42" + magenta: "#6333AE" + cyan: "#4A9A7D" + white: "#A88FB9" + brightBlack: "#A88FB9" + brightRed: "#B85C6E" + brightGreen: "#4A9A7D" + brightYellow: "#9C4D78" + brightBlue: "#601A42" + brightMagenta: "#6333AE" + brightCyan: "#4A9A7D" + brightWhite: "#4A2E6B" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 88.3 + black: 0 + red: 62.9 + green: 54 + yellow: 70.6 + blue: 89.9 + magenta: 80 + cyan: 54 + white: 47.9 + brightBlack: 47.9 + brightRed: 62.9 + brightGreen: 54 + brightYellow: 70.6 + brightBlue: 89.9 + brightMagenta: 80 + brightCyan: 54 + brightWhite: 88.3 diff --git a/themes/gentle-themes--gentle-builder.yaml b/themes/gentle-themes--gentle-builder.yaml new file mode 100644 index 00000000..ca200cd5 --- /dev/null +++ b/themes/gentle-themes--gentle-builder.yaml @@ -0,0 +1,53 @@ +name: "Gentle Themes (Gentle Builder)" +source: + marketplace_id: "lukeocodes.gentle-themes" + version: "0.0.6" + installs: 4473 + rating: 5 + ratings: 1 + author: "lukeocodes" + repo: "https://github.com/lukeocodes/gentle-themes" + url: "https://marketplace.visualstudio.com/items?itemName=lukeocodes.gentle-themes" + formats: null +colors: + bg: "#000C16" + fg: "#D9DDE0" + black: "#000C16" + red: "#EF5350" + green: "#22DA6E" + yellow: "#A3C76E" + blue: "#82AAFF" + magenta: "#94F7BD" + cyan: "#3EF8F8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#94F7BD" + brightCyan: "#53A5D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 237 + pair: null + contrast: + fg: 85.4 + black: 0 + red: 40.1 + green: 68 + yellow: 65.7 + blue: 56.7 + magenta: 89.4 + cyan: 88.5 + white: 107.7 + brightBlack: 16.4 + brightRed: 40.1 + brightGreen: 68 + brightYellow: 94.5 + brightBlue: 56.7 + brightMagenta: 89.4 + brightCyan: 49.1 + brightWhite: 107.7 diff --git a/themes/gentle-themes--gentle-dark.yaml b/themes/gentle-themes--gentle-dark.yaml new file mode 100644 index 00000000..e67760a6 --- /dev/null +++ b/themes/gentle-themes--gentle-dark.yaml @@ -0,0 +1,53 @@ +name: "Gentle Themes (Gentle Dark)" +source: + marketplace_id: "lukeocodes.gentle-themes" + version: "0.0.6" + installs: 4473 + rating: 5 + ratings: 1 + author: "lukeocodes" + repo: "https://github.com/lukeocodes/gentle-themes" + url: "https://marketplace.visualstudio.com/items?itemName=lukeocodes.gentle-themes" + formats: null +colors: + bg: "#000C16" + fg: "#D9DDE0" + black: "#000C16" + red: "#EF5350" + green: "#22DA6E" + yellow: "#A3C76E" + blue: "#82AAFF" + magenta: "#94F7BD" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#94F7BD" + brightCyan: "#53A5D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 237 + pair: null + contrast: + fg: 85.4 + black: 0 + red: 40.1 + green: 68 + yellow: 65.7 + blue: 56.7 + magenta: 89.4 + cyan: 60.5 + white: 107.7 + brightBlack: 16.4 + brightRed: 40.1 + brightGreen: 68 + brightYellow: 94.5 + brightBlue: 56.7 + brightMagenta: 89.4 + brightCyan: 49.1 + brightWhite: 107.7 diff --git a/themes/gg-djaja.yaml b/themes/gg-djaja.yaml new file mode 100644 index 00000000..474c418b --- /dev/null +++ b/themes/gg-djaja.yaml @@ -0,0 +1,53 @@ +name: "GG Djaja" +source: + marketplace_id: "bedeute.gg-djaja" + version: "0.3.61" + installs: 145 + rating: 5 + ratings: 1 + author: "bedeute" + repo: "https://github.com/bedeute/gg-djaja-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bedeute.gg-djaja" + formats: null +colors: + bg: "#FBFAF3" + fg: "#454F5E" + black: "#66655D" + red: "#CD4B5D" + green: "#1E9943" + yellow: "#9B920B" + blue: "#366FB8" + magenta: "#B059CF" + cyan: "#108B99" + white: "#8791A3" + brightBlack: "#807F79" + brightRed: "#F76E81" + brightGreen: "#45BC69" + brightYellow: "#BAB01E" + brightBlue: "#498BE0" + brightMagenta: "#C973E8" + brightCyan: "#1DABBA" + brightWhite: "#9CA5B4" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 85.5 + black: 76.2 + red: 66.6 + green: 60.8 + yellow: 56.2 + blue: 71.7 + magenta: 64.1 + cyan: 64.1 + white: 55.8 + brightBlack: 64.3 + brightRed: 50.1 + brightGreen: 44.3 + brightYellow: 41.1 + brightBlue: 58.8 + brightMagenta: 52.6 + brightCyan: 49.8 + brightWhite: 45.7 diff --git a/themes/ghostty-dark.yaml b/themes/ghostty-dark.yaml new file mode 100644 index 00000000..4abcf171 --- /dev/null +++ b/themes/ghostty-dark.yaml @@ -0,0 +1,53 @@ +name: "Ghostty Dark" +source: + marketplace_id: "hnagato.ghostty-dark" + version: "1.0.1" + installs: 285 + rating: 5 + ratings: 1 + author: "hnagato" + repo: "https://github.com/hnagato/vscode-ghostty-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hnagato.ghostty-dark" + formats: null +colors: + bg: "#292C33" + fg: "#FFFFFF" + black: "#1D1F21" + red: "#BF6B69" + green: "#B7BD73" + yellow: "#E9C880" + blue: "#88A1BB" + magenta: "#AD95B8" + cyan: "#95BDB7" + white: "#C5C8C6" + brightBlack: "#666666" + brightRed: "#C55757" + brightGreen: "#BCC95F" + brightYellow: "#E1C65E" + brightBlue: "#83A5D6" + brightMagenta: "#BC99D4" + brightCyan: "#83BEB1" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "orange" + hue: 267 + pair: null + contrast: + fg: 103.7 + black: 0 + red: 32.2 + green: 59.6 + yellow: 71.3 + blue: 45.7 + magenta: 45.2 + cyan: 58.1 + white: 68.6 + brightBlack: 18.8 + brightRed: 28.2 + brightGreen: 65 + brightYellow: 68.7 + brightBlue: 48.3 + brightMagenta: 50 + brightCyan: 56.8 + brightWhite: 90 diff --git a/themes/github-catppuccin-dark--github-catppuccin-dark-mix.yaml b/themes/github-catppuccin-dark--github-catppuccin-dark-mix.yaml new file mode 100644 index 00000000..1629a906 --- /dev/null +++ b/themes/github-catppuccin-dark--github-catppuccin-dark-mix.yaml @@ -0,0 +1,53 @@ +name: "Github Catppuccin Dark (Github Catppuccin Dark Mix)" +source: + marketplace_id: "DevGauravJatt.github-catppuccin-dark" + version: "1.0.0" + installs: 4022 + rating: 5 + ratings: 1 + author: "Dev Gaurav Jatt" + repo: "https://github.com/devgauravjatt/github-catppuccin-dark" + url: "https://marketplace.visualstudio.com/items?itemName=DevGauravJatt.github-catppuccin-dark" + formats: null +colors: + bg: "#1D2127" + fg: "#CAD3F5" + black: "#A5ADCB" + red: "#ED8796" + green: "#A6DA95" + yellow: "#EED49F" + blue: "#8AADF4" + magenta: "#F5BDE6" + cyan: "#91D7E3" + white: "#B8C0E0" + brightBlack: "#5B6078" + brightRed: "#ED8796" + brightGreen: "#A6DA95" + brightYellow: "#EED49F" + brightBlue: "#8AADF4" + brightMagenta: "#F5BDE6" + brightCyan: "#91D7E3" + brightWhite: "#494D64" +meta: + mode: "dark" + accent: "red" + hue: 258 + pair: null + contrast: + fg: 78.2 + black: 56.1 + red: 51.5 + green: 73.6 + yellow: 80 + blue: 55.8 + magenta: 74.5 + cyan: 73.4 + white: 66.9 + brightBlack: 18.7 + brightRed: 51.5 + brightGreen: 73.6 + brightYellow: 80 + brightBlue: 55.8 + brightMagenta: 74.5 + brightCyan: 73.4 + brightWhite: 11.3 diff --git a/themes/github-catppuccin-dark--github-catppuccin-dark.yaml b/themes/github-catppuccin-dark--github-catppuccin-dark.yaml new file mode 100644 index 00000000..2200660c --- /dev/null +++ b/themes/github-catppuccin-dark--github-catppuccin-dark.yaml @@ -0,0 +1,53 @@ +name: "Github Catppuccin Dark (Github Catppuccin Dark)" +source: + marketplace_id: "DevGauravJatt.github-catppuccin-dark" + version: "1.0.0" + installs: 4022 + rating: 5 + ratings: 1 + author: "Dev Gaurav Jatt" + repo: "https://github.com/devgauravjatt/github-catppuccin-dark" + url: "https://marketplace.visualstudio.com/items?itemName=DevGauravJatt.github-catppuccin-dark" + formats: null +colors: + bg: "#22272E" + fg: "#CAD3F5" + black: "#A5ADCB" + red: "#ED8796" + green: "#A6DA95" + yellow: "#EED49F" + blue: "#8AADF4" + magenta: "#F5BDE6" + cyan: "#91D7E3" + white: "#B8C0E0" + brightBlack: "#5B6078" + brightRed: "#ED8796" + brightGreen: "#A6DA95" + brightYellow: "#EED49F" + brightBlue: "#8AADF4" + brightMagenta: "#F5BDE6" + brightCyan: "#91D7E3" + brightWhite: "#494D64" +meta: + mode: "dark" + accent: "red" + hue: 257 + pair: null + contrast: + fg: 77.2 + black: 55.1 + red: 50.6 + green: 72.6 + yellow: 79 + blue: 54.8 + magenta: 73.6 + cyan: 72.4 + white: 66 + brightBlack: 17.8 + brightRed: 50.6 + brightGreen: 72.6 + brightYellow: 79 + brightBlue: 54.8 + brightMagenta: 73.6 + brightCyan: 72.4 + brightWhite: 10.3 diff --git a/themes/github-dark-palenight--github-dark-palenight.yaml b/themes/github-dark-palenight--github-dark-palenight.yaml new file mode 100644 index 00000000..d0f5ef47 --- /dev/null +++ b/themes/github-dark-palenight--github-dark-palenight.yaml @@ -0,0 +1,53 @@ +name: "GitHub Dark Palenight (GitHub Dark Palenight)" +source: + marketplace_id: "ConnorAbbas.github-dark-palenight" + version: "1.7.1" + installs: 3534 + rating: 5 + ratings: 3 + author: "Connor Abbas" + repo: "https://github.com/connorabbas/github-dark-palenight" + url: "https://marketplace.visualstudio.com/items?itemName=ConnorAbbas.github-dark-palenight" + formats: null +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 258 + pair: null + contrast: + fg: 77.5 + black: 13.1 + red: 52.6 + green: 52.1 + yellow: 52.2 + blue: 52.2 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 29.3 + brightRed: 64.8 + brightGreen: 65.5 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 107.4 diff --git a/themes/github-light-hight-contrast-theme.yaml b/themes/github-light-hight-contrast-theme.yaml new file mode 100644 index 00000000..467ef8aa --- /dev/null +++ b/themes/github-light-hight-contrast-theme.yaml @@ -0,0 +1,53 @@ +name: "Github Light Hight Contrast Theme" +source: + marketplace_id: "guilhermestella.github-light-hight-contrast-theme" + version: "0.0.5" + installs: 5804 + rating: 5 + ratings: 2 + author: "Guilherme Stella" + repo: "https://github.com/guilhermestella/vscode-extensions" + url: "https://marketplace.visualstudio.com/items?itemName=guilhermestella.github-light-hight-contrast-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#24292F" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 101.5 + black: 101.5 + red: 74.8 + green: 85.2 + yellow: 98 + blue: 74.9 + magenta: 74.3 + cyan: 73.8 + white: 71.6 + brightBlack: 81.8 + brightRed: 85.2 + brightGreen: 74.6 + brightYellow: 92 + brightBlue: 60.7 + brightMagenta: 59.3 + brightCyan: 63.3 + brightWhite: 57.2 diff --git a/themes/github-minimal-theme--github-minimal.yaml b/themes/github-minimal-theme--github-minimal.yaml new file mode 100644 index 00000000..f41b4bdf --- /dev/null +++ b/themes/github-minimal-theme--github-minimal.yaml @@ -0,0 +1,53 @@ +name: "GitHub Minimal Theme (GitHub Minimal)" +source: + marketplace_id: "dominicegginton.github-minimal-vscode-theme" + version: "0.3.0" + installs: 4513 + rating: 5 + ratings: 2 + author: "Dominic Egginton" + repo: "git+https://github.com/dominicegginton/github-minimal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dominicegginton.github-minimal-vscode-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#1B1F23" + red: "#D73A49" + green: "#28A745" + yellow: "#FFD33D" + blue: "#0366D6" + magenta: "#6F42C1" + cyan: "#0366D6" + white: "#FFFFFF" + brightBlack: "#1B1F23" + brightRed: "#D73A49" + brightGreen: "#28A745" + brightYellow: "#FFD33D" + brightBlue: "#0366D6" + brightMagenta: "#6F42C1" + brightCyan: "#0366D6" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.5 + black: 103.5 + red: 70.4 + green: 57.9 + yellow: 20.6 + blue: 76.2 + magenta: 81.7 + cyan: 76.2 + white: 0 + brightBlack: 103.5 + brightRed: 70.4 + brightGreen: 57.9 + brightYellow: 20.6 + brightBlue: 76.2 + brightMagenta: 81.7 + brightCyan: 76.2 + brightWhite: 0 diff --git a/themes/github-revamp--github-revamp.yaml b/themes/github-revamp--github-revamp.yaml new file mode 100644 index 00000000..f2b13091 --- /dev/null +++ b/themes/github-revamp--github-revamp.yaml @@ -0,0 +1,53 @@ +name: "github-revamp (GitHub Revamp)" +source: + marketplace_id: "Avetis.github-revamp" + version: "0.0.4" + installs: 1169 + rating: 0 + ratings: 0 + author: "Avetis" + repo: "https://github.com/AvetisDN/github-revamp" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.github-revamp" + formats: null +colors: + bg: "#202426" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 77.9 + black: 0 + red: 25.1 + green: 51.4 + yellow: 84 + blue: 25.8 + magenta: 28.1 + cyan: 45.9 + white: 88.4 + brightBlack: 20.4 + brightRed: 36.9 + brightGreen: 61.9 + brightYellow: 94 + brightBlue: 38.4 + brightMagenta: 43.7 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/github-theme--github-dark-colorblind.yaml b/themes/github-theme--github-dark-colorblind.yaml new file mode 100644 index 00000000..21f9ec5d --- /dev/null +++ b/themes/github-theme--github-dark-colorblind.yaml @@ -0,0 +1,53 @@ +name: "GitHub Theme (GitHub Dark Colorblind)" +source: + marketplace_id: "GitHub.github-vscode-theme" + version: "6.3.5" + installs: 18506606 + rating: 4.58 + ratings: 165 + author: "GitHub" + repo: "https://github.com/primer/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme" + formats: null +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#484F58" + red: "#EC8E2C" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FDAC54" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + pair: "GitHub Theme (GitHub Light Colorblind)" + contrast: + fg: 77.5 + black: 13.1 + red: 53.2 + green: 52.2 + yellow: 52.2 + blue: 52.2 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 29.3 + brightRed: 66.8 + brightGreen: 64.7 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 107.4 diff --git a/themes/github-theme--github-dark-default.yaml b/themes/github-theme--github-dark-default.yaml new file mode 100644 index 00000000..a47cd21d --- /dev/null +++ b/themes/github-theme--github-dark-default.yaml @@ -0,0 +1,53 @@ +name: "GitHub Theme (GitHub Dark Default)" +source: + marketplace_id: "GitHub.github-vscode-theme" + version: "6.3.5" + installs: 18506606 + rating: 4.58 + ratings: 165 + author: "GitHub" + repo: "https://github.com/primer/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme" + formats: null +colors: + bg: "#0D1117" + fg: "#E6EDF3" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 258 + pair: "GitHub Theme (GitHub Light Default)" + contrast: + fg: 95 + black: 13.1 + red: 52.6 + green: 52.1 + yellow: 52.2 + blue: 52.2 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 29.3 + brightRed: 64.8 + brightGreen: 65.5 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 107.4 diff --git a/themes/github-theme--github-dark-dimmed.yaml b/themes/github-theme--github-dark-dimmed.yaml new file mode 100644 index 00000000..b7c2b823 --- /dev/null +++ b/themes/github-theme--github-dark-dimmed.yaml @@ -0,0 +1,53 @@ +name: "GitHub Theme (GitHub Dark Dimmed)" +source: + marketplace_id: "GitHub.github-vscode-theme" + version: "6.3.5" + installs: 18506606 + rating: 4.58 + ratings: 165 + author: "GitHub" + repo: "https://github.com/primer/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme" + formats: null +colors: + bg: "#22272E" + fg: "#ADBAC7" + black: "#545D68" + red: "#F47067" + green: "#57AB5A" + yellow: "#C69026" + blue: "#539BF5" + magenta: "#B083F0" + cyan: "#39C5CF" + white: "#909DAB" + brightBlack: "#636E7B" + brightRed: "#FF938A" + brightGreen: "#6BC46D" + brightYellow: "#DAAA3F" + brightBlue: "#6CB6FF" + brightMagenta: "#DCBDFB" + brightCyan: "#56D4DD" + brightWhite: "#CDD9E5" +meta: + mode: "dark" + accent: "orange" + hue: 257 + pair: null + contrast: + fg: 61 + black: 15.7 + red: 44.6 + green: 44.3 + yellow: 44.5 + blue: 44.3 + magenta: 44.1 + cyan: 58.7 + white: 45.3 + brightBlack: 22.8 + brightRed: 57.3 + brightGreen: 56.9 + brightYellow: 57.1 + brightBlue: 57 + brightMagenta: 70.9 + brightCyan: 67.2 + brightWhite: 79.4 diff --git a/themes/github-theme--github-dark-high-contrast.yaml b/themes/github-theme--github-dark-high-contrast.yaml new file mode 100644 index 00000000..cd859001 --- /dev/null +++ b/themes/github-theme--github-dark-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "GitHub Theme (GitHub Dark High Contrast)" +source: + marketplace_id: "GitHub.github-vscode-theme" + version: "6.3.5" + installs: 18506606 + rating: 4.58 + ratings: 165 + author: "GitHub" + repo: "https://github.com/primer/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme" + formats: null +colors: + bg: "#0A0C10" + fg: "#F0F3F6" + black: "#7A828E" + red: "#FF9492" + green: "#26CD4D" + yellow: "#F0B72F" + blue: "#71B7FF" + magenta: "#CB9EFF" + cyan: "#39C5CF" + white: "#D9DEE3" + brightBlack: "#9EA7B3" + brightRed: "#FFB1AF" + brightGreen: "#4AE168" + brightYellow: "#F7C843" + brightBlue: "#91CBFF" + brightMagenta: "#DBB7FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: "GitHub Theme (GitHub Light High Contrast)" + contrast: + fg: 99.5 + black: 35.2 + red: 60.8 + green: 61.2 + yellow: 68.5 + blue: 60.7 + magenta: 60.4 + cyan: 61.7 + white: 86 + brightBlack: 53.9 + brightRed: 71.4 + brightGreen: 72.3 + brightYellow: 76.6 + brightBlue: 71.5 + brightMagenta: 71.7 + brightCyan: 70.2 + brightWhite: 107.7 diff --git a/themes/github-theme--github-dark.yaml b/themes/github-theme--github-dark.yaml new file mode 100644 index 00000000..44a0e92d --- /dev/null +++ b/themes/github-theme--github-dark.yaml @@ -0,0 +1,53 @@ +name: "GitHub Theme (GitHub Dark)" +source: + marketplace_id: "GitHub.github-vscode-theme" + version: "6.3.5" + installs: 18506606 + rating: 4.58 + ratings: 165 + author: "GitHub" + repo: "https://github.com/primer/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme" + formats: null +colors: + bg: "#24292E" + fg: "#E1E4E8" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D1D5DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: 248 + pair: null + contrast: + fg: 86.7 + black: 16.6 + red: 34.4 + green: 59.7 + yellow: 90.2 + blue: 36.4 + magenta: 48.9 + cyan: 58.4 + white: 77.3 + brightBlack: 45.2 + brightRed: 47.2 + brightGreen: 76.6 + brightYellow: 90.2 + brightBlue: 58.3 + brightMagenta: 48.9 + brightCyan: 66.9 + brightWhite: 101.6 diff --git a/themes/github-theme--github-light-colorblind.yaml b/themes/github-theme--github-light-colorblind.yaml new file mode 100644 index 00000000..766d6143 --- /dev/null +++ b/themes/github-theme--github-light-colorblind.yaml @@ -0,0 +1,53 @@ +name: "GitHub Theme (GitHub Light Colorblind)" +source: + marketplace_id: "GitHub.github-vscode-theme" + version: "6.3.5" + installs: 18506606 + rating: 4.58 + ratings: 165 + author: "GitHub" + repo: "https://github.com/primer/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#24292F" + black: "#24292F" + red: "#B35900" + green: "#0550AE" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#8A4600" + brightGreen: "#0969DA" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "GitHub Theme (GitHub Dark Colorblind)" + contrast: + fg: 101.5 + black: 101.5 + red: 72.9 + green: 85.6 + yellow: 98 + blue: 74.9 + magenta: 74.3 + cyan: 73.8 + white: 71.6 + brightBlack: 81.8 + brightRed: 84.1 + brightGreen: 74.9 + brightYellow: 92 + brightBlue: 60.7 + brightMagenta: 59.3 + brightCyan: 63.3 + brightWhite: 57.2 diff --git a/themes/github-theme--github-light-default.yaml b/themes/github-theme--github-light-default.yaml new file mode 100644 index 00000000..e4a69e22 --- /dev/null +++ b/themes/github-theme--github-light-default.yaml @@ -0,0 +1,53 @@ +name: "GitHub Theme (GitHub Light Default)" +source: + marketplace_id: "GitHub.github-vscode-theme" + version: "6.3.5" + installs: 18506606 + rating: 4.58 + ratings: 165 + author: "GitHub" + repo: "https://github.com/primer/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#1F2328" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "GitHub Theme (GitHub Dark Default)" + contrast: + fg: 102.8 + black: 101.5 + red: 74.8 + green: 85.2 + yellow: 98 + blue: 74.9 + magenta: 74.3 + cyan: 73.8 + white: 71.6 + brightBlack: 81.8 + brightRed: 85.2 + brightGreen: 74.6 + brightYellow: 92 + brightBlue: 60.7 + brightMagenta: 59.3 + brightCyan: 63.3 + brightWhite: 57.2 diff --git a/themes/github-theme--github-light-high-contrast.yaml b/themes/github-theme--github-light-high-contrast.yaml new file mode 100644 index 00000000..2c4640f4 --- /dev/null +++ b/themes/github-theme--github-light-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "GitHub Theme (GitHub Light High Contrast)" +source: + marketplace_id: "GitHub.github-vscode-theme" + version: "6.3.5" + installs: 18506606 + rating: 4.58 + ratings: 165 + author: "GitHub" + repo: "https://github.com/primer/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#0E1116" + black: "#0E1116" + red: "#A0111F" + green: "#024C1A" + yellow: "#3F2200" + blue: "#0349B4" + magenta: "#622CBC" + cyan: "#1B7C83" + white: "#66707B" + brightBlack: "#4B535D" + brightRed: "#86061D" + brightGreen: "#055D20" + brightYellow: "#4E2C00" + brightBlue: "#1168E3" + brightMagenta: "#844AE7" + brightCyan: "#3192AA" + brightWhite: "#88929D" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "GitHub Theme (GitHub Dark High Contrast)" + contrast: + fg: 105.4 + black: 105.4 + red: 86.1 + green: 93.2 + yellow: 101.1 + blue: 86.9 + magenta: 86.9 + cyan: 73.8 + white: 74.8 + brightBlack: 87.1 + brightRed: 91.6 + brightGreen: 87.5 + brightYellow: 98 + brightBlue: 74.4 + brightMagenta: 74.5 + brightCyan: 63.3 + brightWhite: 58.7 diff --git a/themes/github-theme--github-light.yaml b/themes/github-theme--github-light.yaml new file mode 100644 index 00000000..8d8c18fa --- /dev/null +++ b/themes/github-theme--github-light.yaml @@ -0,0 +1,53 @@ +name: "GitHub Theme (GitHub Light)" +source: + marketplace_id: "GitHub.github-vscode-theme" + version: "6.3.5" + installs: 18506606 + rating: 4.58 + ratings: 165 + author: "GitHub" + repo: "https://github.com/primer/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#24292E" + red: "#D73A49" + green: "#28A745" + yellow: "#DBAB09" + blue: "#0366D6" + magenta: "#5A32A3" + cyan: "#1B7C83" + white: "#6A737D" + brightBlack: "#959DA5" + brightRed: "#CB2431" + brightGreen: "#22863A" + brightYellow: "#B08800" + brightBlue: "#005CC5" + brightMagenta: "#5A32A3" + brightCyan: "#3192AA" + brightWhite: "#D1D5DA" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.5 + black: 101.5 + red: 70.4 + green: 57.9 + yellow: 41.6 + blue: 76.2 + magenta: 89.2 + cyan: 73.8 + white: 73.4 + brightBlack: 53.1 + brightRed: 75.5 + brightGreen: 71.7 + brightYellow: 60.1 + brightBlue: 80.5 + brightMagenta: 89.2 + brightCyan: 63.3 + brightWhite: 22.4 diff --git a/themes/github-theme-minimal--github-dark-default.yaml b/themes/github-theme-minimal--github-dark-default.yaml new file mode 100644 index 00000000..df131b01 --- /dev/null +++ b/themes/github-theme-minimal--github-dark-default.yaml @@ -0,0 +1,53 @@ +name: "GitHub Theme Minimal (GitHub Dark Default)" +source: + marketplace_id: "agavram.github-vscode-theme-minimal" + version: "4.1.3" + installs: 5974 + rating: 3.67 + ratings: 3 + author: "Adrian Avram" + repo: "https://github.com/agavram/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=agavram.github-vscode-theme-minimal" + formats: null +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "green" + hue: 258 + pair: "GitHub Theme Minimal (GitHub Light Default)" + contrast: + fg: 77.5 + black: 13.1 + red: 52.6 + green: 52.1 + yellow: 52.2 + blue: 52.2 + magenta: 52.2 + cyan: 61.4 + white: 64 + brightBlack: 29.3 + brightRed: 64.8 + brightGreen: 65.5 + brightYellow: 64.7 + brightBlue: 64.7 + brightMagenta: 64.6 + brightCyan: 69.9 + brightWhite: 100.9 diff --git a/themes/github-theme-minimal--github-light-default.yaml b/themes/github-theme-minimal--github-light-default.yaml new file mode 100644 index 00000000..3888b5c6 --- /dev/null +++ b/themes/github-theme-minimal--github-light-default.yaml @@ -0,0 +1,53 @@ +name: "GitHub Theme Minimal (GitHub Light Default)" +source: + marketplace_id: "agavram.github-vscode-theme-minimal" + version: "4.1.3" + installs: 5974 + rating: 3.67 + ratings: 3 + author: "Adrian Avram" + repo: "https://github.com/agavram/github-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=agavram.github-vscode-theme-minimal" + formats: null +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#24292E" + red: "#D73A49" + green: "#22863A" + yellow: "#B08800" + blue: "#0366D6" + magenta: "#6F42C1" + cyan: "#1B7C83" + white: "#6A737D" + brightBlack: "#586069" + brightRed: "#CB2431" + brightGreen: "#28A745" + brightYellow: "#DBAB09" + brightBlue: "#2188FF" + brightMagenta: "#8A63D2" + brightCyan: "#3192AA" + brightWhite: "#959DA5" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "GitHub Theme Minimal (GitHub Dark Default)" + contrast: + fg: 101.5 + black: 101.5 + red: 70.4 + green: 71.7 + yellow: 60.1 + blue: 76.2 + magenta: 81.7 + cyan: 73.8 + white: 73.4 + brightBlack: 81.7 + brightRed: 75.5 + brightGreen: 57.9 + brightYellow: 41.6 + brightBlue: 61.7 + brightMagenta: 70.1 + brightCyan: 63.3 + brightWhite: 53.1 diff --git a/themes/gitlab-webide-theme--gitlab-dark-grey.yaml b/themes/gitlab-webide-theme--gitlab-dark-grey.yaml new file mode 100644 index 00000000..487026bd --- /dev/null +++ b/themes/gitlab-webide-theme--gitlab-dark-grey.yaml @@ -0,0 +1,53 @@ +name: "GitLab WebIDE Theme (GitLab Dark Grey)" +source: + marketplace_id: "AlbertoRestifo.gitlab-webide-theme" + version: "1.0.1" + installs: 5720 + rating: 0 + ratings: 0 + author: "Alberto Restifo" + repo: "https://github.com/albertorestifo/gitlab-webide-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" + formats: null +colors: + bg: "#222222" + fg: "#FFFFFF" + black: "#000000" + red: "#F57F6C" + green: "#52B87A" + yellow: "#D99530" + blue: "#7FB6ED" + magenta: "#F88AAF" + cyan: "#32C5D2" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FCB5AA" + brightGreen: "#91D4A8" + brightYellow: "#E9BE74" + brightBlue: "#498DD1" + brightMagenta: "#FCACC5" + brightCyan: "#5EDEE3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.5 + black: 0 + red: 49.5 + green: 51.2 + yellow: 50.1 + blue: 57.9 + magenta: 55.2 + cyan: 59.5 + white: 105.5 + brightBlack: 20.6 + brightRed: 70 + brightGreen: 69.3 + brightYellow: 68.8 + brightBlue: 37 + brightMagenta: 67.8 + brightCyan: 73.4 + brightWhite: 105.5 diff --git a/themes/gitlab-webide-theme--gitlab-dark.yaml b/themes/gitlab-webide-theme--gitlab-dark.yaml new file mode 100644 index 00000000..add1afed --- /dev/null +++ b/themes/gitlab-webide-theme--gitlab-dark.yaml @@ -0,0 +1,53 @@ +name: "GitLab WebIDE Theme (GitLab Dark)" +source: + marketplace_id: "AlbertoRestifo.gitlab-webide-theme" + version: "1.0.1" + installs: 5720 + rating: 0 + ratings: 0 + author: "Alberto Restifo" + repo: "https://github.com/albertorestifo/gitlab-webide-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" + formats: null +colors: + bg: "#28262B" + fg: "#FFFFFF" + black: "#000000" + red: "#F57F6C" + green: "#52B87A" + yellow: "#D99530" + blue: "#7FB6ED" + magenta: "#F88AAF" + cyan: "#32C5D2" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FCB5AA" + brightGreen: "#91D4A8" + brightYellow: "#E9BE74" + brightBlue: "#498DD1" + brightMagenta: "#FCACC5" + brightCyan: "#5EDEE3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.6 + black: 0 + red: 48.7 + green: 50.4 + yellow: 49.3 + blue: 57.1 + magenta: 54.4 + cyan: 58.6 + white: 104.6 + brightBlack: 19.8 + brightRed: 69.2 + brightGreen: 68.5 + brightYellow: 68 + brightBlue: 36.2 + brightMagenta: 67 + brightCyan: 72.6 + brightWhite: 104.6 diff --git a/themes/gitlab-webide-theme--gitlab-light.yaml b/themes/gitlab-webide-theme--gitlab-light.yaml new file mode 100644 index 00000000..26d80df4 --- /dev/null +++ b/themes/gitlab-webide-theme--gitlab-light.yaml @@ -0,0 +1,53 @@ +name: "GitLab WebIDE Theme (GitLab Light)" +source: + marketplace_id: "AlbertoRestifo.gitlab-webide-theme" + version: "1.0.1" + installs: 5720 + rating: 0 + ratings: 0 + author: "Alberto Restifo" + repo: "https://github.com/albertorestifo/gitlab-webide-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AlbertoRestifo.gitlab-webide-theme" + formats: null +colors: + bg: "#FAFAFF" + fg: "#303030" + black: "#303030" + red: "#A31700" + green: "#0A7F3D" + yellow: "#AF551D" + blue: "#006CD8" + magenta: "#583CAC" + cyan: "#00798A" + white: "#303030" + brightBlack: "#303030" + brightRed: "#A31700" + brightGreen: "#0A7F3D" + brightYellow: "#AF551D" + brightBlue: "#006CD8" + brightMagenta: "#583CAC" + brightCyan: "#00798A" + brightWhite: "#303030" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 96.8 + black: 96.8 + red: 82.5 + green: 71.9 + yellow: 71.7 + blue: 71.4 + magenta: 84.1 + cyan: 72 + white: 96.8 + brightBlack: 96.8 + brightRed: 82.5 + brightGreen: 71.9 + brightYellow: 71.7 + brightBlue: 71.4 + brightMagenta: 84.1 + brightCyan: 72 + brightWhite: 96.8 diff --git a/themes/gleam-themes.yaml b/themes/gleam-themes.yaml new file mode 100644 index 00000000..30a47d9e --- /dev/null +++ b/themes/gleam-themes.yaml @@ -0,0 +1,53 @@ +name: "Gleam Themes" +source: + marketplace_id: "nicklasxyz.gleam-themes" + version: "0.0.3" + installs: 3220 + rating: 0 + ratings: 0 + author: "nicklasxyz" + repo: "https://github.com/NicklasXYZ/vscode-gleam-themes" + url: "https://marketplace.visualstudio.com/items?itemName=nicklasxyz.gleam-themes" + formats: null +colors: + bg: "#0F0F0F" + fg: "#DCDCDC" + black: "#9F9F9F" + red: "#FFD08F" + green: "#FFAFF3" + yellow: "#FFFA9F" + blue: "#DCDCDC" + magenta: "#9F9F9F" + cyan: "#6BCCCC" + white: "#DCDCDC" + brightBlack: "#9F9F9F" + brightRed: "#FFD08F" + brightGreen: "#FFAFF3" + brightYellow: "#FFFA9F" + brightBlue: "#DCDCDC" + brightMagenta: "#9F9F9F" + brightCyan: "#6BCCCC" + brightWhite: "#DCDCDC" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 85 + black: 50 + red: 82.4 + green: 73.7 + yellow: 101.6 + blue: 85 + magenta: 50 + cyan: 66.5 + white: 85 + brightBlack: 50 + brightRed: 82.4 + brightGreen: 73.7 + brightYellow: 101.6 + brightBlue: 85 + brightMagenta: 50 + brightCyan: 66.5 + brightWhite: 85 diff --git a/themes/glv-dark.yaml b/themes/glv-dark.yaml new file mode 100644 index 00000000..bda4aad1 --- /dev/null +++ b/themes/glv-dark.yaml @@ -0,0 +1,53 @@ +name: "glv dark" +source: + marketplace_id: "rodrigomessias.glv-dark" + version: "1.0.0" + installs: 202 + rating: 0 + ratings: 0 + author: "Rodrigo Messias" + repo: "https://github.com/rodrigomessias/glv-vscode-dark" + url: "https://marketplace.visualstudio.com/items?itemName=rodrigomessias.glv-dark" + formats: null +colors: + bg: "#1D1F21" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 77.9 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.4 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/gms2-theme.yaml b/themes/gms2-theme.yaml new file mode 100644 index 00000000..50313141 --- /dev/null +++ b/themes/gms2-theme.yaml @@ -0,0 +1,53 @@ +name: "GMS2 theme" +source: + marketplace_id: "347Online.gms2-theme" + version: "0.0.1" + installs: 358 + rating: 4 + ratings: 1 + author: "347Online" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=347Online.gms2-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#C0C0C0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 66.8 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/godot-theme-for-vs-code.yaml b/themes/godot-theme-for-vs-code.yaml new file mode 100644 index 00000000..2d1cb072 --- /dev/null +++ b/themes/godot-theme-for-vs-code.yaml @@ -0,0 +1,53 @@ +name: "Godot Theme for VS Code" +source: + marketplace_id: "mariodebono.godot-4-vscode-theme" + version: "1.0.2" + installs: 909 + rating: 5 + ratings: 1 + author: "Mario Debono" + repo: "https://github.com/mariodebono/godot-4-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mariodebono.godot-4-vscode-theme" + formats: null +colors: + bg: "#1D2229" + fg: "#CDCFD2" + black: "#373D49" + red: "#EE7987" + green: "#66E5FF" + yellow: "#F9ECA8" + blue: "#B7FDE2" + magenta: "#EE7987" + cyan: "#82FBC6" + white: "#E0E0E0" + brightBlack: "#76787D" + brightRed: "#EE7987" + brightGreen: "#82FBC6" + brightYellow: "#F9ECA8" + brightBlue: "#B1C8FA" + brightMagenta: "#EE7987" + brightCyan: "#66E5FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 257 + pair: null + contrast: + fg: 75 + black: 0 + red: 47.3 + green: 78.6 + yellow: 92.4 + blue: 94.7 + magenta: 47.3 + cyan: 88.5 + white: 85.5 + brightBlack: 28.6 + brightRed: 47.3 + brightGreen: 88.5 + brightYellow: 92.4 + brightBlue: 70.8 + brightMagenta: 47.3 + brightCyan: 78.6 + brightWhite: 105.5 diff --git a/themes/gogh-theme.yaml b/themes/gogh-theme.yaml new file mode 100644 index 00000000..51c6a5a1 --- /dev/null +++ b/themes/gogh-theme.yaml @@ -0,0 +1,53 @@ +name: "Gogh Theme" +source: + marketplace_id: "Avetis.gogh-theme" + version: "0.0.3" + installs: 1964 + rating: 5 + ratings: 1 + author: "Avetis" + repo: "https://github.com/AvetisDN/gogh-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.gogh-theme" + formats: null +colors: + bg: "#272B3C" + fg: "#EFEDEE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + pair: null + contrast: + fg: 92.2 + black: 0 + red: 23.5 + green: 49.8 + yellow: 82.4 + blue: 24.2 + magenta: 26.6 + cyan: 44.4 + white: 86.8 + brightBlack: 18.8 + brightRed: 35.4 + brightGreen: 60.3 + brightYellow: 92.4 + brightBlue: 36.8 + brightMagenta: 42.2 + brightCyan: 52.2 + brightWhite: 86.8 diff --git a/themes/golden-era--golden-era.yaml b/themes/golden-era--golden-era.yaml new file mode 100644 index 00000000..056540d9 --- /dev/null +++ b/themes/golden-era--golden-era.yaml @@ -0,0 +1,53 @@ +name: "Golden Era (Golden Era)" +source: + marketplace_id: "CodrJatin.golden-era" + version: "0.6.0" + installs: 1699 + rating: 5 + ratings: 1 + author: "Codr Jatin" + repo: "https://github.com/CodrJatin/vscode-Golden-Era" + url: "https://marketplace.visualstudio.com/items?itemName=CodrJatin.golden-era" + formats: null +colors: + bg: "#052842" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "pink" + hue: 246 + pair: null + contrast: + fg: 104.6 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.1 + magenta: 27.4 + cyan: 45.2 + white: 87.7 + brightBlack: 19.7 + brightRed: 36.3 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.7 + brightMagenta: 43.1 + brightCyan: 53.1 + brightWhite: 101.3 diff --git a/themes/goldenzo.yaml b/themes/goldenzo.yaml new file mode 100644 index 00000000..cc5bbbe7 --- /dev/null +++ b/themes/goldenzo.yaml @@ -0,0 +1,53 @@ +name: "GoldenZo" +source: + marketplace_id: "EnzoCoding.zozovscode-custom" + version: "0.0.6" + installs: 430 + rating: 5 + ratings: 1 + author: "EnzoCoding" + repo: "https://github.com/Enzo91080/GoldenZo" + url: "https://marketplace.visualstudio.com/items?itemName=EnzoCoding.zozovscode-custom" + formats: null +colors: + bg: "#12131B" + fg: "#698CD6" + black: "#303030" + red: "#C24242" + green: "#9ECE6A" + yellow: "#B0B060" + blue: "#6060A0" + magenta: "#A060A0" + cyan: "#60A0A0" + white: "#D0D0D0" + brightBlack: "#808080" + brightRed: "#C08080" + brightGreen: "#80C080" + brightYellow: "#E0E080" + brightBlue: "#8080C0" + brightMagenta: "#C080C0" + brightCyan: "#80C0C0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 279 + pair: null + contrast: + fg: 40.5 + black: 0 + red: 27 + green: 67.8 + yellow: 56.6 + blue: 22.6 + magenta: 30 + cyan: 44.7 + white: 77.4 + brightBlack: 34.1 + brightRed: 42.4 + brightGreen: 59.4 + brightYellow: 84 + brightBlue: 37 + brightMagenta: 45.1 + brightCyan: 61.6 + brightWhite: 107.2 diff --git a/themes/goodmonokai.yaml b/themes/goodmonokai.yaml new file mode 100644 index 00000000..747e0346 --- /dev/null +++ b/themes/goodmonokai.yaml @@ -0,0 +1,53 @@ +name: "GoodMonokai" +source: + marketplace_id: "Joyphy.goodmonokai" + version: "0.0.1" + installs: 236 + rating: 5 + ratings: 1 + author: "Joyphy" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Joyphy.goodmonokai" + formats: null +colors: + bg: "#272822" + fg: "#BABAB5" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#BA1C55" + brightGreen: "#7CA922" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#8260BF" + brightCyan: "#4CA2B3" + brightWhite: "#BABAB5" +meta: + mode: "dark" + accent: "red" + hue: 115 + pair: null + contrast: + fg: 61.6 + black: 0 + red: 22.3 + green: 50.7 + yellow: 55.3 + blue: 32.3 + magenta: 29.9 + cyan: 48.1 + white: 86.2 + brightBlack: 19.7 + brightRed: 19.3 + brightGreen: 45.1 + brightYellow: 81.6 + brightBlue: 47.5 + brightMagenta: 25.2 + brightCyan: 42.7 + brightWhite: 61.6 diff --git a/themes/gooeyvsctheme.yaml b/themes/gooeyvsctheme.yaml new file mode 100644 index 00000000..53cd679c --- /dev/null +++ b/themes/gooeyvsctheme.yaml @@ -0,0 +1,53 @@ +name: "GooeyVSCTheme" +source: + marketplace_id: "Gooey.gooeyvsctheme" + version: "0.0.1" + installs: 139 + rating: 0 + ratings: 0 + author: "Gooey" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Gooey.gooeyvsctheme" + formats: null +colors: + bg: "#171922" + fg: "#BABABA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + pair: null + contrast: + fg: 63.9 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.8 diff --git a/themes/gopher-theme-color.yaml b/themes/gopher-theme-color.yaml new file mode 100644 index 00000000..59d9f4ff --- /dev/null +++ b/themes/gopher-theme-color.yaml @@ -0,0 +1,53 @@ +name: "Gopher Theme Color" +source: + marketplace_id: "GopherTheme.gumua-gopher-theme" + version: "0.0.9" + installs: 1138 + rating: 5 + ratings: 1 + author: "Gopher Theme" + repo: "https://github.com/KhwanNon/golang-theme" + url: "https://marketplace.visualstudio.com/items?itemName=GopherTheme.gumua-gopher-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#CBCBCB" + black: "#373741" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 73.2 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/gorfius-peace-forest--gorfius-peace-forest.yaml b/themes/gorfius-peace-forest--gorfius-peace-forest.yaml new file mode 100644 index 00000000..8c9fbd24 --- /dev/null +++ b/themes/gorfius-peace-forest--gorfius-peace-forest.yaml @@ -0,0 +1,53 @@ +name: "Gorfius Peace-Forest (Gorfius Peace Forest)" +source: + marketplace_id: "GorIvanov.gorfius-peace-forest" + version: "0.1.0" + installs: 87 + rating: 0 + ratings: 0 + author: "Gor Ivanov" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GorIvanov.gorfius-peace-forest" + formats: null +colors: + bg: "#424242" + fg: "#A5B7C0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#B2B221" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#B2B221" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 51.4 + black: 10.6 + red: 17.3 + green: 43.6 + yellow: 47.3 + blue: 18 + magenta: 20.3 + cyan: 38.1 + white: 80.6 + brightBlack: 12.6 + brightRed: 29.1 + brightGreen: 54.1 + brightYellow: 47.3 + brightBlue: 30.6 + brightMagenta: 36 + brightCyan: 46 + brightWhite: 80.6 diff --git a/themes/gorfius-peace-smoke-2--gorfius-peace-forest.yaml b/themes/gorfius-peace-smoke-2--gorfius-peace-forest.yaml new file mode 100644 index 00000000..b50eddf9 --- /dev/null +++ b/themes/gorfius-peace-smoke-2--gorfius-peace-forest.yaml @@ -0,0 +1,53 @@ +name: "Gorfius Peace-Smoke 2 (Gorfius Peace Forest)" +source: + marketplace_id: "GorIvanov.gorfius-smoke-2" + version: "0.1.0" + installs: 73 + rating: 0 + ratings: 0 + author: "Gor Ivanov" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GorIvanov.gorfius-smoke-2" + formats: null +colors: + bg: "#3A3A3A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#B2B221" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#B2B221" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 72.6 + black: 7.6 + red: 19.8 + green: 46.1 + yellow: 49.8 + blue: 20.5 + magenta: 22.9 + cyan: 40.7 + white: 83.1 + brightBlack: 15.1 + brightRed: 31.7 + brightGreen: 56.6 + brightYellow: 49.8 + brightBlue: 33.1 + brightMagenta: 38.5 + brightCyan: 48.5 + brightWhite: 83.1 diff --git a/themes/gotham-theme-black.yaml b/themes/gotham-theme-black.yaml new file mode 100644 index 00000000..e4c4a84a --- /dev/null +++ b/themes/gotham-theme-black.yaml @@ -0,0 +1,53 @@ +name: "Gotham Theme Black" +source: + marketplace_id: "jach.gotham-theme" + version: "0.1.3" + installs: 3900 + rating: 0 + ratings: 0 + author: "Michael Jach" + repo: "https://github.com/michaljach/gotham-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jach.gotham-theme" + formats: null +colors: + bg: "#000000" + fg: "#D7DAE1" + black: "#000000" + red: "#808080" + green: "#4D4D4D" + yellow: "#D7DAE1" + blue: "#111333" + magenta: "#999999" + cyan: "#666666" + white: "#CCCCCC" + brightBlack: "#1A1A1A" + brightRed: "#808080" + brightGreen: "#4D4D4D" + brightYellow: "#D7DAE1" + brightBlue: "#000CB8" + brightMagenta: "#1D00C0" + brightCyan: "#666666" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 84.1 + black: 0 + red: 34.8 + green: 13.1 + yellow: 84.1 + blue: 0 + magenta: 47.2 + cyan: 23 + white: 75.7 + brightBlack: 0 + brightRed: 34.8 + brightGreen: 13.1 + brightYellow: 84.1 + brightBlue: 7.8 + brightMagenta: 8.8 + brightCyan: 23 + brightWhite: 107.9 diff --git a/themes/gotham-theme.yaml b/themes/gotham-theme.yaml new file mode 100644 index 00000000..9afa484d --- /dev/null +++ b/themes/gotham-theme.yaml @@ -0,0 +1,53 @@ +name: "Gotham Theme" +source: + marketplace_id: "alireza94.theme-gotham" + version: "0.5.1" + installs: 35230 + rating: 5 + ratings: 5 + author: "alireza94" + repo: "https://github.com/alireza-ahmadi/vscode-theme-gotham" + url: "https://marketplace.visualstudio.com/items?itemName=alireza94.theme-gotham" + formats: null +colors: + bg: "#0A0F14" + fg: "#98D1CE" + black: "#505050" + red: "#DC362C" + green: "#26A98B" + yellow: "#EDB54B" + blue: "#13789C" + magenta: "#888BA5" + cyan: "#33859D" + white: "#98D1CE" + brightBlack: "#62807F" + brightRed: "#D26939" + brightGreen: "#ABE4BB" + brightYellow: "#F6D8A1" + brightBlue: "#72B3CA" + brightMagenta: "#B8BCDF" + brightCyan: "#599CAA" + brightWhite: "#D3EBE9" +meta: + mode: "dark" + accent: "orange" + hue: 249 + pair: null + contrast: + fg: 72.1 + black: 13.8 + red: 31.2 + green: 45.9 + yellow: 67.4 + blue: 27.2 + magenta: 40.5 + cyan: 32.5 + white: 72.1 + brightBlack: 31.8 + brightRed: 38.2 + brightGreen: 81.8 + brightYellow: 84.8 + brightBlue: 55.9 + brightMagenta: 67.1 + brightCyan: 43.5 + brightWhite: 91.3 diff --git a/themes/gothic--gothic-dark.yaml b/themes/gothic--gothic-dark.yaml new file mode 100644 index 00000000..6c4c09a3 --- /dev/null +++ b/themes/gothic--gothic-dark.yaml @@ -0,0 +1,53 @@ +name: "gothic (Gothic Dark)" +source: + marketplace_id: "rama-3572.gothic" + version: "0.0.2" + installs: 504 + rating: 0 + ratings: 0 + author: "Rama" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=rama-3572.gothic" + formats: null +colors: + bg: "#1E1E1E" + fg: "#E0E0E0" + black: "#1E1E1E" + red: "#EC5F67" + green: "#99C794" + yellow: "#FAC863" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#E0E0E0" + brightBlack: "#383838" + brightRed: "#EC5F67" + brightGreen: "#99C794" + brightYellow: "#FAC863" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 86 + black: 0 + red: 40.5 + green: 64 + yellow: 75.9 + blue: 43.3 + magenta: 51.2 + cyan: 52.2 + white: 86 + brightBlack: 0 + brightRed: 40.5 + brightGreen: 64 + brightYellow: 75.9 + brightBlue: 43.3 + brightMagenta: 51.2 + brightCyan: 52.2 + brightWhite: 106 diff --git a/themes/gothic--gothic-light.yaml b/themes/gothic--gothic-light.yaml new file mode 100644 index 00000000..e79d0619 --- /dev/null +++ b/themes/gothic--gothic-light.yaml @@ -0,0 +1,53 @@ +name: "gothic (Gothic Light)" +source: + marketplace_id: "rama-3572.gothic" + version: "0.0.2" + installs: 504 + rating: 0 + ratings: 0 + author: "Rama" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=rama-3572.gothic" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#000000" + green: "#000000" + yellow: "#000000" + blue: "#000000" + magenta: "#000000" + cyan: "#000000" + white: "#000000" + brightBlack: "#000000" + brightRed: "#000000" + brightGreen: "#000000" + brightYellow: "#000000" + brightBlue: "#000000" + brightMagenta: "#000000" + brightCyan: "#000000" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 106 + green: 106 + yellow: 106 + blue: 106 + magenta: 106 + cyan: 106 + white: 106 + brightBlack: 106 + brightRed: 106 + brightGreen: 106 + brightYellow: 106 + brightBlue: 106 + brightMagenta: 106 + brightCyan: 106 + brightWhite: 106 diff --git a/themes/gradient-theme--firefox-dark.yaml b/themes/gradient-theme--firefox-dark.yaml new file mode 100644 index 00000000..be36ae96 --- /dev/null +++ b/themes/gradient-theme--firefox-dark.yaml @@ -0,0 +1,53 @@ +name: "Gradient Theme (Firefox Dark)" +source: + marketplace_id: "shaobeichen.gradient-theme" + version: "1.19.0" + installs: 24173 + rating: 4.71 + ratings: 7 + author: "shaobeichen" + repo: "https://github.com/shaobeichen/gradient-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shaobeichen.gradient-theme" + formats: null +colors: + bg: "#2A2A2E" + fg: "#B1B1B3" + black: "#000000" + red: "#EE2E24" + green: "#00853E" + yellow: "#FFD204" + blue: "#009DDC" + magenta: "#98005D" + cyan: "#85CEBC" + white: "#D9D8D8" + brightBlack: "#737171" + brightRed: "#EE2E24" + brightGreen: "#00853E" + brightYellow: "#FFD204" + brightBlue: "#009DDC" + brightMagenta: "#98005D" + brightCyan: "#85CEBC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 56.3 + black: 0 + red: 31 + green: 25.5 + yellow: 78.2 + blue: 41.1 + magenta: 11.5 + cyan: 64.9 + white: 79.2 + brightBlack: 24.1 + brightRed: 31 + brightGreen: 25.5 + brightYellow: 78.2 + brightBlue: 41.1 + brightMagenta: 11.5 + brightCyan: 64.9 + brightWhite: 104 diff --git a/themes/gradient-theme--monokai-pro.yaml b/themes/gradient-theme--monokai-pro.yaml new file mode 100644 index 00000000..7867722a --- /dev/null +++ b/themes/gradient-theme--monokai-pro.yaml @@ -0,0 +1,53 @@ +name: "Gradient Theme (Monokai Pro)" +source: + marketplace_id: "shaobeichen.gradient-theme" + version: "1.19.0" + installs: 24173 + rating: 4.71 + ratings: 7 + author: "shaobeichen" + repo: "https://github.com/shaobeichen/gradient-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shaobeichen.gradient-theme" + formats: null +colors: + bg: "#2D2A2E" + fg: "#FCFCFA" + black: "#403E41" + red: "#FF6188" + green: "#A9DC76" + yellow: "#FFD866" + blue: "#FC9867" + magenta: "#AB9DF2" + cyan: "#78DCE8" + white: "#FCFCFA" + brightBlack: "#727072" + brightRed: "#FF6188" + brightGreen: "#A9DC76" + brightYellow: "#FFD866" + brightBlue: "#FC9867" + brightMagenta: "#AB9DF2" + brightCyan: "#78DCE8" + brightWhite: "#FCFCFA" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 101.8 + black: 0 + red: 43.8 + green: 72.3 + yellow: 81.3 + blue: 56.6 + magenta: 51.2 + cyan: 72.4 + white: 101.8 + brightBlack: 23.6 + brightRed: 43.8 + brightGreen: 72.3 + brightYellow: 81.3 + brightBlue: 56.6 + brightMagenta: 51.2 + brightCyan: 72.4 + brightWhite: 101.8 diff --git a/themes/gray-gray-gray.yaml b/themes/gray-gray-gray.yaml new file mode 100644 index 00000000..b7b9b911 --- /dev/null +++ b/themes/gray-gray-gray.yaml @@ -0,0 +1,53 @@ +name: "Gray Gray Gray" +source: + marketplace_id: "kendama1980.graygraygray" + version: "0.0.1" + installs: 9409 + rating: 5 + ratings: 6 + author: "kendama1980" + repo: "https://github.com/kendama1980/graygraygray" + url: "https://marketplace.visualstudio.com/items?itemName=kendama1980.graygraygray" + formats: null +colors: + bg: "#C4C2C0" + fg: "#000000" + black: "#000000" + red: "#C00000" + green: "#008000" + yellow: "#808000" + blue: "#0000C0" + magenta: "#B000B0" + cyan: "#00B0B0" + white: "#FFFFE0" + brightBlack: "#505050" + brightRed: "#F04040" + brightGreen: "#80F080" + brightYellow: "#F0F060" + brightBlue: "#2080F0" + brightMagenta: "#F060F0" + brightCyan: "#80F0F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 71.1 + black: 71.1 + red: 44.4 + green: 39.7 + yellow: 33.9 + blue: 59.1 + magenta: 42.8 + cyan: 16.5 + white: 35.3 + brightBlack: 53.1 + brightRed: 29.3 + brightGreen: 11.9 + brightYellow: 22.7 + brightBlue: 30.8 + brightMagenta: 17.4 + brightCyan: 15.8 + brightWhite: 36.7 diff --git a/themes/grayscale301.yaml b/themes/grayscale301.yaml new file mode 100644 index 00000000..1a777667 --- /dev/null +++ b/themes/grayscale301.yaml @@ -0,0 +1,53 @@ +name: "GrayScale301" +source: + marketplace_id: "CameronScofield.grayscale301" + version: "0.0.1" + installs: 176 + rating: 0 + ratings: 0 + author: "Cameron Scofield" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CameronScofield.grayscale301" + formats: null +colors: + bg: "#C0C0C0" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#A5BC00" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#CFD500" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 69.9 + black: 69.9 + red: 37.8 + green: 13.1 + yellow: 0 + blue: 49.9 + magenta: 38.4 + cyan: 24.5 + white: 49.8 + brightBlack: 42.6 + brightRed: 37.8 + brightGreen: 0 + brightYellow: 0 + brightBlue: 49.9 + brightMagenta: 38.4 + brightCyan: 24.5 + brightWhite: 12.3 diff --git a/themes/grayspace--coffeespace.yaml b/themes/grayspace--coffeespace.yaml new file mode 100644 index 00000000..0ac1935a --- /dev/null +++ b/themes/grayspace--coffeespace.yaml @@ -0,0 +1,53 @@ +name: "GraySpace (coffeespace)" +source: + marketplace_id: "YesCode.grayspace" + version: "0.0.23" + installs: 768 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/platzi_theme" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.grayspace" + formats: null +colors: + bg: "#2B312D" + fg: "#FAE8D8" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#AD77AD" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 157 + pair: null + contrast: + fg: 89.8 + black: 0 + red: 38 + green: 57 + yellow: 69.1 + blue: 43.5 + magenta: 15.5 + cyan: 45.4 + white: 43.2 + brightBlack: 14.6 + brightRed: 38 + brightGreen: 34.3 + brightYellow: 75.7 + brightBlue: 14.7 + brightMagenta: 15.5 + brightCyan: 45.4 + brightWhite: 94.9 diff --git a/themes/grayspace--darkspace.yaml b/themes/grayspace--darkspace.yaml new file mode 100644 index 00000000..e943fbe0 --- /dev/null +++ b/themes/grayspace--darkspace.yaml @@ -0,0 +1,53 @@ +name: "GraySpace (DarkSpace)" +source: + marketplace_id: "YesCode.grayspace" + version: "0.0.23" + installs: 768 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/platzi_theme" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.grayspace" + formats: null +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#C1A2F7" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 40.7 + green: 59.7 + yellow: 71.8 + blue: 46.2 + magenta: 18.3 + cyan: 48.2 + white: 46 + brightBlack: 17.3 + brightRed: 40.7 + brightGreen: 57.9 + brightYellow: 78.5 + brightBlue: 17.5 + brightMagenta: 18.3 + brightCyan: 48.2 + brightWhite: 97.6 diff --git a/themes/grayspace--neutral.yaml b/themes/grayspace--neutral.yaml new file mode 100644 index 00000000..2ebd7f22 --- /dev/null +++ b/themes/grayspace--neutral.yaml @@ -0,0 +1,53 @@ +name: "GraySpace (Neutral)" +source: + marketplace_id: "YesCode.grayspace" + version: "0.0.23" + installs: 768 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/platzi_theme" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.grayspace" + formats: null +colors: + bg: "#141518" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#F9CA24" + brightYellow: "#20473A" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.7 + black: 0 + red: 42.2 + green: 61.2 + yellow: 73.2 + blue: 47.7 + magenta: 19.7 + cyan: 49.6 + white: 47.4 + brightBlack: 18.8 + brightRed: 42.2 + brightGreen: 77 + brightYellow: 7.8 + brightBlue: 18.9 + brightMagenta: 19.7 + brightCyan: 49.6 + brightWhite: 99 diff --git a/themes/grean-leaf--untitled.yaml b/themes/grean-leaf--untitled.yaml new file mode 100644 index 00000000..e09200f9 --- /dev/null +++ b/themes/grean-leaf--untitled.yaml @@ -0,0 +1,53 @@ +name: "Grean Leaf (Untitled)" +source: + marketplace_id: "yahyamohmed.ym-modern-ui" + version: "1.1.2" + installs: 55 + rating: 0 + ratings: 0 + author: "yahyamohmed" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=yahyamohmed.ym-modern-ui" + formats: null +colors: + bg: "#171717" + fg: "#E2E2E2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 88.1 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/greeeeen-theme.yaml b/themes/greeeeen-theme.yaml new file mode 100644 index 00000000..6d486dcc --- /dev/null +++ b/themes/greeeeen-theme.yaml @@ -0,0 +1,53 @@ +name: "Greeeeen Theme" +source: + marketplace_id: "Kakamotobi.greeeeen" + version: "1.0.0" + installs: 45 + rating: 0 + ratings: 0 + author: "Kakamotobi" + repo: "https://github.com/Kakamotobi/Greeeeen" + url: "https://marketplace.visualstudio.com/items?itemName=Kakamotobi.greeeeen" + formats: null +colors: + bg: "#2E412E" + fg: "#FEFDD5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 145 + pair: null + contrast: + fg: 96.3 + black: 8.5 + red: 19.1 + green: 45.4 + yellow: 78 + blue: 19.8 + magenta: 22.1 + cyan: 39.9 + white: 82.4 + brightBlack: 14.4 + brightRed: 30.9 + brightGreen: 55.9 + brightYellow: 88 + brightBlue: 32.4 + brightMagenta: 37.7 + brightCyan: 47.8 + brightWhite: 82.4 diff --git a/themes/green-paper--green-papper.yaml b/themes/green-paper--green-papper.yaml new file mode 100644 index 00000000..632e77a9 --- /dev/null +++ b/themes/green-paper--green-papper.yaml @@ -0,0 +1,53 @@ +name: "Green paper (Green Papper)" +source: + marketplace_id: "Suntechnic.green-papper" + version: "0.4.1" + installs: 1083 + rating: 0 + ratings: 0 + author: "Александр Маджугин" + repo: "https://github.com/Suntechnic/green-papper" + url: "https://marketplace.visualstudio.com/items?itemName=Suntechnic.green-papper" + formats: null +colors: + bg: "#FCFAFE" + fg: "#222222" + black: "#000000" + red: "#F51818" + green: "#43B244" + yellow: "#F2AE49" + blue: "#CDD9CF" + magenta: "#A37ACC" + cyan: "#207F4C" + white: "#6C7880" + brightBlack: "#6C7680" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#FF9940" + brightBlue: "#55B4D4" + brightMagenta: "#FE76FF" + brightCyan: "#39CBCC" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100.3 + black: 103.5 + red: 63.7 + green: 49.9 + yellow: 34 + blue: 19.1 + magenta: 58.6 + cyan: 71.6 + white: 68.9 + brightBlack: 69.6 + brightRed: 51.8 + brightGreen: 45.9 + brightYellow: 38.7 + brightBlue: 43.9 + brightMagenta: 41.6 + brightCyan: 35.3 + brightWhite: 103.5 diff --git a/themes/green-paper.yaml b/themes/green-paper.yaml new file mode 100644 index 00000000..3185ab7e --- /dev/null +++ b/themes/green-paper.yaml @@ -0,0 +1,53 @@ +name: "Green paper" +source: + marketplace_id: "Suntechnic.green-papper" + version: "0.4.1" + installs: 1083 + rating: 0 + ratings: 0 + author: "Александр Маджугин" + repo: "https://github.com/Suntechnic/green-papper" + url: "https://marketplace.visualstudio.com/items?itemName=Suntechnic.green-papper" + formats: null +colors: + bg: "#F8FBF1" + fg: "#222222" + black: "#000000" + red: "#F51818" + green: "#43B244" + yellow: "#F2AE49" + blue: "#E4ECDC" + magenta: "#A37ACC" + cyan: "#207F4C" + white: "#6C7880" + brightBlack: "#6C7680" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#FF9940" + brightBlue: "#55B4D4" + brightMagenta: "#FE76FF" + brightCyan: "#39CBCC" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.7 + black: 102.8 + red: 63.1 + green: 49.3 + yellow: 33.4 + blue: 0 + magenta: 58 + cyan: 71 + white: 68.3 + brightBlack: 68.9 + brightRed: 51.2 + brightGreen: 45.3 + brightYellow: 38.1 + brightBlue: 43.3 + brightMagenta: 40.9 + brightCyan: 34.7 + brightWhite: 102.8 diff --git a/themes/green-tree-theme--green-tree.yaml b/themes/green-tree-theme--green-tree.yaml new file mode 100644 index 00000000..89ddef85 --- /dev/null +++ b/themes/green-tree-theme--green-tree.yaml @@ -0,0 +1,53 @@ +name: "Green Tree Theme (Green Tree)" +source: + marketplace_id: "stevennyang.green-tree" + version: "1.2.1" + installs: 5717 + rating: 5 + ratings: 1 + author: "Steven N. Yang" + repo: "https://github.com/snyang/vscode-theme-green-tree" + url: "https://marketplace.visualstudio.com/items?itemName=stevennyang.green-tree" + formats: null +colors: + bg: "#F2FFF3" + fg: "#232323" + black: "#000000" + red: "#FF0000" + green: "#3CB371" + yellow: "#BDB76B" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00BFFF" + white: "#3CB371" + brightBlack: "#708090" + brightRed: "#8B0000" + brightGreen: "#3CB371" + brightYellow: "#BDB76B" + brightBlue: "#00008B" + brightMagenta: "#8B008B" + brightCyan: "#87CEFA" + brightWhite: "#3CB371" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 100.6 + black: 103.9 + red: 62 + green: 49.3 + yellow: 38.2 + blue: 83.7 + magenta: 53.5 + cyan: 38.8 + white: 49.3 + brightBlack: 65.7 + brightRed: 88.6 + brightGreen: 49.3 + brightYellow: 38.2 + brightBlue: 97.9 + brightMagenta: 84.9 + brightCyan: 28.6 + brightWhite: 49.3 diff --git a/themes/green-tree-theme--pink-flower.yaml b/themes/green-tree-theme--pink-flower.yaml new file mode 100644 index 00000000..fca08261 --- /dev/null +++ b/themes/green-tree-theme--pink-flower.yaml @@ -0,0 +1,53 @@ +name: "Green Tree Theme (Pink Flower)" +source: + marketplace_id: "stevennyang.green-tree" + version: "1.2.1" + installs: 5717 + rating: 5 + ratings: 1 + author: "Steven N. Yang" + repo: "https://github.com/snyang/vscode-theme-green-tree" + url: "https://marketplace.visualstudio.com/items?itemName=stevennyang.green-tree" + formats: null +colors: + bg: "#FFF0F1" + fg: "#232323" + black: "#000000" + red: "#FF0000" + green: "#3CB371" + yellow: "#BDB76B" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00BFFF" + white: "#3CB371" + brightBlack: "#708090" + brightRed: "#8B0000" + brightGreen: "#3CB371" + brightYellow: "#BDB76B" + brightBlue: "#00008B" + brightMagenta: "#8B008B" + brightCyan: "#87CEFA" + brightWhite: "#3CB371" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 95.7 + black: 99.1 + red: 57.2 + green: 44.5 + yellow: 33.4 + blue: 78.9 + magenta: 48.6 + cyan: 33.9 + white: 44.5 + brightBlack: 60.8 + brightRed: 83.8 + brightGreen: 44.5 + brightYellow: 33.4 + brightBlue: 93 + brightMagenta: 80.1 + brightCyan: 23.8 + brightWhite: 44.5 diff --git a/themes/green-valley-theme--green-valley-forest.yaml b/themes/green-valley-theme--green-valley-forest.yaml new file mode 100644 index 00000000..d2922b20 --- /dev/null +++ b/themes/green-valley-theme--green-valley-forest.yaml @@ -0,0 +1,53 @@ +name: "Green Valley Theme (Green Valley Forest)" +source: + marketplace_id: "helciopenha.green-valley" + version: "1.0.1" + installs: 775 + rating: 5 + ratings: 1 + author: "Helcio Penha" + repo: "https://github.com/helciopenha/green-valley-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" + formats: null +colors: + bg: "#121212" + fg: "#F5F5F5" + black: "#21222C" + red: "#FF5C57" + green: "#00B46E" + yellow: "#FFD866" + blue: "#A480FF" + magenta: "#FF6B9D" + cyan: "#25D0D0" + white: "#F5F5F5" + brightBlack: "#4C9B7D" + brightRed: "#FF8078" + brightGreen: "#00E185" + brightYellow: "#FFDF85" + brightBlue: "#C4A9FF" + brightMagenta: "#FF8FB2" + brightCyan: "#70E0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100.7 + black: 0 + red: 45.1 + green: 49.5 + yellow: 84.8 + blue: 45.4 + magenta: 50 + cyan: 66.1 + white: 100.7 + brightBlack: 40.5 + brightRed: 53.9 + brightGreen: 71.5 + brightYellow: 88.4 + brightBlue: 63 + brightMagenta: 60 + brightCyan: 76.9 + brightWhite: 107.3 diff --git a/themes/green-valley-theme--green-valley-matrix.yaml b/themes/green-valley-theme--green-valley-matrix.yaml new file mode 100644 index 00000000..217be497 --- /dev/null +++ b/themes/green-valley-theme--green-valley-matrix.yaml @@ -0,0 +1,53 @@ +name: "Green Valley Theme (Green Valley Matrix)" +source: + marketplace_id: "helciopenha.green-valley" + version: "1.0.1" + installs: 775 + rating: 5 + ratings: 1 + author: "Helcio Penha" + repo: "https://github.com/helciopenha/green-valley-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" + formats: null +colors: + bg: "#121212" + fg: "#F5F5F5" + black: "#21222C" + red: "#FF5C57" + green: "#00E185" + yellow: "#FFD866" + blue: "#A480FF" + magenta: "#00B46E" + cyan: "#25D0D0" + white: "#F5F5F5" + brightBlack: "#7A8C99" + brightRed: "#FFBFB3" + brightGreen: "#B9FFB3" + brightYellow: "#FFFFB3" + brightBlue: "#BFB3FF" + brightMagenta: "#FFB3D9" + brightCyan: "#B3FFF2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100.7 + black: 0 + red: 45.1 + green: 71.5 + yellow: 84.8 + blue: 45.4 + magenta: 49.5 + cyan: 66.1 + white: 100.7 + brightBlack: 38.8 + brightRed: 76.4 + brightGreen: 96 + brightYellow: 104.4 + brightBlue: 66 + brightMagenta: 73.5 + brightCyan: 97.9 + brightWhite: 107.3 diff --git a/themes/green-valley-theme--green-valley-midnight.yaml b/themes/green-valley-theme--green-valley-midnight.yaml new file mode 100644 index 00000000..32139c58 --- /dev/null +++ b/themes/green-valley-theme--green-valley-midnight.yaml @@ -0,0 +1,53 @@ +name: "Green Valley Theme (Green Valley Midnight)" +source: + marketplace_id: "helciopenha.green-valley" + version: "1.0.1" + installs: 775 + rating: 5 + ratings: 1 + author: "Helcio Penha" + repo: "https://github.com/helciopenha/green-valley-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" + formats: null +colors: + bg: "#F5F5F5" + fg: "#333333" + black: "#000000" + red: "#DE3A3A" + green: "#00B46E" + yellow: "#D9BC4A" + blue: "#186CE0" + magenta: "#A345B7" + cyan: "#00965B" + white: "#CCCCCC" + brightBlack: "#666666" + brightRed: "#FF4E4E" + brightGreen: "#33C88A" + brightYellow: "#E9D16C" + brightBlue: "#3A9CFF" + brightMagenta: "#CF73E6" + brightCyan: "#00D880" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.7 + black: 100.1 + red: 63.1 + green: 45.8 + yellow: 29.2 + blue: 67.5 + magenta: 68.7 + cyan: 59 + white: 21.3 + brightBlack: 72.8 + brightRed: 52.6 + brightGreen: 35.8 + brightYellow: 18.2 + brightBlue: 48.1 + brightMagenta: 48.9 + brightCyan: 29.1 + brightWhite: 0 diff --git a/themes/green-valley-theme--green-valley-mint.yaml b/themes/green-valley-theme--green-valley-mint.yaml new file mode 100644 index 00000000..209ac6de --- /dev/null +++ b/themes/green-valley-theme--green-valley-mint.yaml @@ -0,0 +1,53 @@ +name: "Green Valley Theme (Green Valley Mint)" +source: + marketplace_id: "helciopenha.green-valley" + version: "1.0.1" + installs: 775 + rating: 5 + ratings: 1 + author: "Helcio Penha" + repo: "https://github.com/helciopenha/green-valley-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" + formats: null +colors: + bg: "#F7F7F7" + fg: "#1A1A1A" + black: "#F0F0F0" + red: "#CF2929" + green: "#00A362" + yellow: "#B58A00" + blue: "#7748B7" + magenta: "#D1336C" + cyan: "#008C99" + white: "#1A1A1A" + brightBlack: "#5AAD88" + brightRed: "#E74E4E" + brightGreen: "#00B974" + brightYellow: "#D6A81F" + brightBlue: "#9B75D7" + brightMagenta: "#E55A87" + brightCyan: "#1CADB7" + brightWhite: "#333333" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.5 + black: 0 + red: 69.5 + green: 54.6 + yellow: 53.9 + blue: 75.6 + magenta: 67 + cyan: 62.2 + white: 99.5 + brightBlack: 47.5 + brightRed: 59.2 + brightGreen: 44.7 + brightYellow: 38.6 + brightBlue: 58.1 + brightMagenta: 56.1 + brightCyan: 47.5 + brightWhite: 93.9 diff --git a/themes/green-valley-theme--green-valley-neo.yaml b/themes/green-valley-theme--green-valley-neo.yaml new file mode 100644 index 00000000..1c20059a --- /dev/null +++ b/themes/green-valley-theme--green-valley-neo.yaml @@ -0,0 +1,53 @@ +name: "Green Valley Theme (Green Valley Neo)" +source: + marketplace_id: "helciopenha.green-valley" + version: "1.0.1" + installs: 775 + rating: 5 + ratings: 1 + author: "Helcio Penha" + repo: "https://github.com/helciopenha/green-valley-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=helciopenha.green-valley" + formats: null +colors: + bg: "#121212" + fg: "#F5F5F5" + black: "#21222C" + red: "#FF5C57" + green: "#00B46E" + yellow: "#FFD866" + blue: "#A480FF" + magenta: "#FF6B9D" + cyan: "#25D0D0" + white: "#F5F5F5" + brightBlack: "#7A8C99" + brightRed: "#FF8078" + brightGreen: "#00E185" + brightYellow: "#FFDF85" + brightBlue: "#C4A9FF" + brightMagenta: "#FF8FB2" + brightCyan: "#70E0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100.7 + black: 0 + red: 45.1 + green: 49.5 + yellow: 84.8 + blue: 45.4 + magenta: 50 + cyan: 66.1 + white: 100.7 + brightBlack: 38.8 + brightRed: 53.9 + brightGreen: 71.5 + brightYellow: 88.4 + brightBlue: 63 + brightMagenta: 60 + brightCyan: 76.9 + brightWhite: 107.3 diff --git a/themes/greenspace--24.yaml b/themes/greenspace--24.yaml new file mode 100644 index 00000000..fc619816 --- /dev/null +++ b/themes/greenspace--24.yaml @@ -0,0 +1,53 @@ +name: "greenspace (24)" +source: + marketplace_id: "YesCode.greenspace" + version: "0.0.7" + installs: 3692 + rating: 5 + ratings: 3 + author: "YesCode" + repo: "https://github.com/yesomac/greenspace_VSCT" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.greenspace" + formats: null +colors: + bg: "#FFFFFF" + fg: "#03031F" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#3B3B3F" + brightYellow: "#FFCC80" + brightBlue: "#606066" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.8 + black: 103.4 + red: 58.7 + green: 40.3 + yellow: 28.8 + blue: 53.3 + magenta: 81.3 + cyan: 51.4 + white: 53.6 + brightBlack: 82.3 + brightRed: 58.7 + brightGreen: 95.8 + brightYellow: 22.5 + brightBlue: 81.1 + brightMagenta: 81.3 + brightCyan: 51.4 + brightWhite: 0 diff --git a/themes/greenspace--greenspace.yaml b/themes/greenspace--greenspace.yaml new file mode 100644 index 00000000..2fdd2f83 --- /dev/null +++ b/themes/greenspace--greenspace.yaml @@ -0,0 +1,53 @@ +name: "greenspace (GreenSpace)" +source: + marketplace_id: "YesCode.greenspace" + version: "0.0.7" + installs: 3692 + rating: 5 + ratings: 3 + author: "YesCode" + repo: "https://github.com/yesomac/greenspace_VSCT" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.greenspace" + formats: null +colors: + bg: "#1D1F21" + fg: "#EEFFFF" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#8F8EDA" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 103.6 + black: 0 + red: 41 + green: 60 + yellow: 72.1 + blue: 81.9 + magenta: 18.6 + cyan: 48.5 + white: 46.3 + brightBlack: 17.6 + brightRed: 41 + brightGreen: 43.5 + brightYellow: 78.8 + brightBlue: 17.8 + brightMagenta: 18.6 + brightCyan: 48.5 + brightWhite: 97.9 diff --git a/themes/greenspace--shades.yaml b/themes/greenspace--shades.yaml new file mode 100644 index 00000000..bc47fdb2 --- /dev/null +++ b/themes/greenspace--shades.yaml @@ -0,0 +1,53 @@ +name: "greenspace (Shades)" +source: + marketplace_id: "YesCode.greenspace" + version: "0.0.7" + installs: 3692 + rating: 5 + ratings: 3 + author: "YesCode" + repo: "https://github.com/yesomac/greenspace_VSCT" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.greenspace" + formats: null +colors: + bg: "#DAE9CC" + fg: "#001A0C" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#0687FF" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "light" + accent: "orange" + hue: 130 + pair: null + contrast: + fg: 88.8 + black: 87.4 + red: 42.8 + green: 24.4 + yellow: 12.9 + blue: 37.4 + magenta: 65.4 + cyan: 35.5 + white: 37.7 + brightBlack: 66.4 + brightRed: 42.8 + brightGreen: 46.3 + brightYellow: 0 + brightBlue: 66.2 + brightMagenta: 65.4 + brightCyan: 35.5 + brightWhite: 7.6 diff --git a/themes/greyout-color-theme.yaml b/themes/greyout-color-theme.yaml new file mode 100644 index 00000000..79384486 --- /dev/null +++ b/themes/greyout-color-theme.yaml @@ -0,0 +1,53 @@ +name: "Greyout Color Theme" +source: + marketplace_id: "Eses.greyout" + version: "0.0.6" + installs: 2035 + rating: 4.5 + ratings: 2 + author: "Eses" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Eses.greyout" + formats: null +colors: + bg: "#E8EBEC" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 93.9 + black: 93.9 + red: 61.8 + green: 37.1 + yellow: 45.7 + blue: 73.9 + magenta: 62.4 + cyan: 48.4 + white: 73.8 + brightBlack: 66.6 + brightRed: 61.8 + brightGreen: 28.7 + brightYellow: 28.8 + brightBlue: 73.9 + brightMagenta: 62.4 + brightCyan: 48.4 + brightWhite: 36.3 diff --git a/themes/grimoire--grimoire-nox.yaml b/themes/grimoire--grimoire-nox.yaml new file mode 100644 index 00000000..e8de6bf9 --- /dev/null +++ b/themes/grimoire--grimoire-nox.yaml @@ -0,0 +1,53 @@ +name: "Grimoire (Grimoire Nox)" +source: + marketplace_id: "NathanEdwards.grimoire" + version: "0.1.0" + installs: 1038 + rating: 5 + ratings: 2 + author: "Nathan Edwards" + repo: "https://github.com/nathan-edwards/grimoire" + url: "https://marketplace.visualstudio.com/items?itemName=NathanEdwards.grimoire" + formats: null +colors: + bg: "#24262E" + fg: "#E0DCE8" + black: "#302F3D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B6B3CC" + brightBlack: "#504E65" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C5C2D6" +meta: + mode: "dark" + accent: "orange" + hue: 274 + pair: null + contrast: + fg: 83.4 + black: 0 + red: 38.4 + green: 74.8 + yellow: 64.9 + blue: 49.9 + magenta: 43.5 + cyan: 68.4 + white: 59.5 + brightBlack: 11.2 + brightRed: 43.6 + brightGreen: 77.1 + brightYellow: 51.7 + brightBlue: 55.1 + brightMagenta: 55.9 + brightCyan: 71.7 + brightWhite: 67.9 diff --git a/themes/grimoire--grimoire.yaml b/themes/grimoire--grimoire.yaml new file mode 100644 index 00000000..1a7a220f --- /dev/null +++ b/themes/grimoire--grimoire.yaml @@ -0,0 +1,53 @@ +name: "Grimoire (Grimoire)" +source: + marketplace_id: "NathanEdwards.grimoire" + version: "0.1.0" + installs: 1038 + rating: 5 + ratings: 2 + author: "Nathan Edwards" + repo: "https://github.com/nathan-edwards/grimoire" + url: "https://marketplace.visualstudio.com/items?itemName=NathanEdwards.grimoire" + formats: null +colors: + bg: "#252134" + fg: "#E0DCE8" + black: "#302F3D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B6B3CC" + brightBlack: "#504E65" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C5C2D6" +meta: + mode: "dark" + accent: "orange" + hue: 293 + pair: null + contrast: + fg: 83.8 + black: 0 + red: 38.8 + green: 75.3 + yellow: 65.3 + blue: 50.3 + magenta: 43.9 + cyan: 68.8 + white: 60 + brightBlack: 11.6 + brightRed: 44.1 + brightGreen: 77.5 + brightYellow: 52.2 + brightBlue: 55.6 + brightMagenta: 56.3 + brightCyan: 72.2 + brightWhite: 68.3 diff --git a/themes/gru--gru-black.yaml b/themes/gru--gru-black.yaml new file mode 100644 index 00000000..fc12765d --- /dev/null +++ b/themes/gru--gru-black.yaml @@ -0,0 +1,53 @@ +name: "Gru (Gru Black)" +source: + marketplace_id: "Silitonix.gru" + version: "0.1.1" + installs: 926 + rating: 5 + ratings: 2 + author: "Silitonix" + repo: "https://github.com/Silitonix/GruTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Silitonix.gru" + formats: null +colors: + bg: "#000000" + fg: "#CCCCCC" + black: "#000000" + red: "#EA6962" + green: "#A9B665" + yellow: "#E78A4E" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#928374" + brightBlack: "#484848" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#E78A4E" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#D4BE98" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 75.7 + black: 0 + red: 44 + green: 59 + yellow: 51.8 + blue: 53.2 + magenta: 49 + cyan: 55.7 + white: 37.4 + brightBlack: 11.3 + brightRed: 44 + brightGreen: 59 + brightYellow: 51.8 + brightBlue: 53.2 + brightMagenta: 49 + brightCyan: 55.7 + brightWhite: 69 diff --git a/themes/gruvbox-concoctis--concoctis-dark-hard.yaml b/themes/gruvbox-concoctis--concoctis-dark-hard.yaml new file mode 100644 index 00000000..2fbf8df3 --- /dev/null +++ b/themes/gruvbox-concoctis--concoctis-dark-hard.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Concoctis (Concoctis - Dark : Hard)" +source: + marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" + version: "10.30.27" + installs: 74079 + rating: 5 + ratings: 10 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" + formats: null +colors: + bg: "#202020" + fg: "#D4BE98" + black: "#2A2827" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Gruvbox Concoctis (Concoctis - Light : Hard)" + contrast: + fg: 66.9 + black: 0 + red: 41.8 + green: 56.9 + yellow: 56.7 + blue: 51.1 + magenta: 46.9 + cyan: 53.5 + white: 66.9 + brightBlack: 35.2 + brightRed: 41.8 + brightGreen: 56.9 + brightYellow: 56.7 + brightBlue: 51.1 + brightMagenta: 46.9 + brightCyan: 53.5 + brightWhite: 72.1 diff --git a/themes/gruvbox-concoctis--concoctis-dark-soft.yaml b/themes/gruvbox-concoctis--concoctis-dark-soft.yaml new file mode 100644 index 00000000..8289bfca --- /dev/null +++ b/themes/gruvbox-concoctis--concoctis-dark-soft.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Concoctis (Concoctis - Dark : Soft)" +source: + marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" + version: "10.30.27" + installs: 74079 + rating: 5 + ratings: 10 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" + formats: null +colors: + bg: "#32302F" + fg: "#D4BE98" + black: "#3C3836" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Gruvbox Concoctis (Concoctis - Light : Soft)" + contrast: + fg: 63.8 + black: 0 + red: 38.8 + green: 53.8 + yellow: 53.6 + blue: 48 + magenta: 43.8 + cyan: 50.4 + white: 63.8 + brightBlack: 32.2 + brightRed: 38.8 + brightGreen: 53.8 + brightYellow: 53.6 + brightBlue: 48 + brightMagenta: 43.8 + brightCyan: 50.4 + brightWhite: 69.1 diff --git a/themes/gruvbox-concoctis--concoctis-light-hard.yaml b/themes/gruvbox-concoctis--concoctis-light-hard.yaml new file mode 100644 index 00000000..3c6a9e80 --- /dev/null +++ b/themes/gruvbox-concoctis--concoctis-light-hard.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Concoctis (Concoctis - Light : Hard)" +source: + marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" + version: "10.30.27" + installs: 74079 + rating: 5 + ratings: 10 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" + formats: null +colors: + bg: "#F9F5D7" + fg: "#654735" + black: "#4F3829" + red: "#C14A4A" + green: "#6C782E" + yellow: "#B47109" + blue: "#45707A" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#654735" + brightRed: "#C14A4A" + brightGreen: "#6C782E" + brightYellow: "#B47109" + brightBlue: "#45707A" + brightMagenta: "#945E80" + brightCyan: "#4C7A5D" + brightWhite: "#FBF1C7" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Gruvbox Concoctis (Concoctis - Dark : Hard)" + contrast: + fg: 82.2 + black: 88.5 + red: 66.1 + green: 66.7 + yellow: 59.9 + blue: 70.5 + magenta: 68 + cyan: 67.5 + white: 57.7 + brightBlack: 82.2 + brightRed: 66.1 + brightGreen: 66.7 + brightYellow: 59.9 + brightBlue: 70.5 + brightMagenta: 68 + brightCyan: 67.5 + brightWhite: 0 diff --git a/themes/gruvbox-concoctis--concoctis-light-soft.yaml b/themes/gruvbox-concoctis--concoctis-light-soft.yaml new file mode 100644 index 00000000..a129104f --- /dev/null +++ b/themes/gruvbox-concoctis--concoctis-light-soft.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Concoctis (Concoctis - Light : Soft)" +source: + marketplace_id: "wheredoesyourmindgo.gruvbox-concoctis" + version: "10.30.27" + installs: 74079 + rating: 5 + ratings: 10 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/gruvbox-concoctis" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.gruvbox-concoctis" + formats: null +colors: + bg: "#F2E5BC" + fg: "#654735" + black: "#4F3829" + red: "#C14A4A" + green: "#6C782E" + yellow: "#B47109" + blue: "#45707A" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#654735" + brightRed: "#C14A4A" + brightGreen: "#6C782E" + brightYellow: "#B47109" + brightBlue: "#45707A" + brightMagenta: "#945E80" + brightCyan: "#4C7A5D" + brightWhite: "#EBDBB2" +meta: + mode: "light" + accent: "orange" + hue: 93 + pair: "Gruvbox Concoctis (Concoctis - Dark : Soft)" + contrast: + fg: 73.6 + black: 80 + red: 57.5 + green: 58.1 + yellow: 51.4 + blue: 61.9 + magenta: 59.5 + cyan: 59 + white: 49.1 + brightBlack: 73.6 + brightRed: 57.5 + brightGreen: 58.1 + brightYellow: 51.4 + brightBlue: 61.9 + brightMagenta: 59.5 + brightCyan: 59 + brightWhite: 0 diff --git a/themes/gruvbox-dark-medium-theme.yaml b/themes/gruvbox-dark-medium-theme.yaml new file mode 100644 index 00000000..c81c91df --- /dev/null +++ b/themes/gruvbox-dark-medium-theme.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Dark Medium Theme" +source: + marketplace_id: "jdinhlife.theme-gruvbox-dark-medium" + version: "1.1.0" + installs: 4080 + rating: 5 + ratings: 5 + author: "jdinhlife" + repo: "https://github.com/jdinhlife/vscode-theme-gruvbox" + url: "https://marketplace.visualstudio.com/items?itemName=jdinhlife.theme-gruvbox-dark-medium" + formats: null +colors: + bg: "#282828" + fg: "#FBF1C7" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.9 + black: 0 + red: 22.8 + green: 40.5 + yellow: 50.1 + blue: 29.1 + magenta: 29.3 + cyan: 39.5 + white: 44.8 + brightBlack: 33.9 + brightRed: 37.7 + brightGreen: 58.7 + brightYellow: 69.4 + brightBlue: 46.2 + brightMagenta: 45.5 + brightCyan: 57.7 + brightWhite: 81.9 diff --git a/themes/gruvbox-dark-moist.yaml b/themes/gruvbox-dark-moist.yaml new file mode 100644 index 00000000..b8cc2411 --- /dev/null +++ b/themes/gruvbox-dark-moist.yaml @@ -0,0 +1,53 @@ +name: "gruvbox-dark-moist" +source: + marketplace_id: "MrMartian.gruvbox-dark-moist" + version: "0.0.1" + installs: 897 + rating: 0 + ratings: 0 + author: "MrMartian" + repo: "https://github.com/CraigglesO/gruvbox-dark-moist-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MrMartian.gruvbox-dark-moist" + formats: null +colors: + bg: "#2C3338" + fg: "#CABFA4" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#DC7B7C" + brightGreen: "#9BB37A" + brightYellow: "#D4B77C" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#9DB579" + brightWhite: "#CABFA4" +meta: + mode: "dark" + accent: "orange" + hue: 239 + pair: null + contrast: + fg: 62.8 + black: 0 + red: 20.7 + green: 38.3 + yellow: 47.9 + blue: 27 + magenta: 27.1 + cyan: 37.3 + white: 42.6 + brightBlack: 31.8 + brightRed: 40.8 + brightGreen: 51.1 + brightYellow: 59.8 + brightBlue: 44 + brightMagenta: 43.4 + brightCyan: 52.1 + brightWhite: 62.8 diff --git a/themes/gruvbox-drakenlords--gruvbox-drakenlords-dark-draken.yaml b/themes/gruvbox-drakenlords--gruvbox-drakenlords-dark-draken.yaml new file mode 100644 index 00000000..06900f05 --- /dev/null +++ b/themes/gruvbox-drakenlords--gruvbox-drakenlords-dark-draken.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox DrakenLords (Gruvbox DrakenLords Dark Draken)" +source: + marketplace_id: "DrakenLords.gruvbox-draken-lords" + version: "1.5.5" + installs: 8913 + rating: 5 + ratings: 1 + author: "DrakenLords" + repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" + url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" + formats: null +colors: + bg: "#031417" + fg: "#EBDBB2" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#EBDBB2" + brightBlack: "#665C54" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#FBF1C7" +meta: + mode: "dark" + accent: "orange" + hue: 209 + pair: null + contrast: + fg: 84.8 + black: 0 + red: 25.7 + green: 43.3 + yellow: 52.9 + blue: 32 + magenta: 32.1 + cyan: 42.3 + white: 84.8 + brightBlack: 19 + brightRed: 40.6 + brightGreen: 61.6 + brightYellow: 72.2 + brightBlue: 49 + brightMagenta: 48.4 + brightCyan: 60.5 + brightWhite: 97.8 diff --git a/themes/gruvbox-drakenlords--gruvbox-drakenlords-dark.yaml b/themes/gruvbox-drakenlords--gruvbox-drakenlords-dark.yaml new file mode 100644 index 00000000..e0202b10 --- /dev/null +++ b/themes/gruvbox-drakenlords--gruvbox-drakenlords-dark.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox DrakenLords (Gruvbox DrakenLords Dark)" +source: + marketplace_id: "DrakenLords.gruvbox-draken-lords" + version: "1.5.5" + installs: 8913 + rating: 5 + ratings: 1 + author: "DrakenLords" + repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" + url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" + formats: null +colors: + bg: "#1D2021" + fg: "#EBDBB2" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#EBDBB2" + brightBlack: "#665C54" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#FBF1C7" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.3 + black: 0 + red: 24.2 + green: 41.9 + yellow: 51.5 + blue: 30.5 + magenta: 30.7 + cyan: 40.9 + white: 83.3 + brightBlack: 17.5 + brightRed: 39.1 + brightGreen: 60.1 + brightYellow: 70.8 + brightBlue: 47.6 + brightMagenta: 46.9 + brightCyan: 59.1 + brightWhite: 96.3 diff --git a/themes/gruvbox-drakenlords--gruvbox-drakenlords-grey.yaml b/themes/gruvbox-drakenlords--gruvbox-drakenlords-grey.yaml new file mode 100644 index 00000000..8b0fc3ef --- /dev/null +++ b/themes/gruvbox-drakenlords--gruvbox-drakenlords-grey.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox DrakenLords (Gruvbox DrakenLords Grey)" +source: + marketplace_id: "DrakenLords.gruvbox-draken-lords" + version: "1.5.5" + installs: 8913 + rating: 5 + ratings: 1 + author: "DrakenLords" + repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" + url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" + formats: null +colors: + bg: "#3C3836" + fg: "#EBDBB2" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#EBDBB2" + brightBlack: "#665C54" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#FBF1C7" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 77.9 + black: 0 + red: 18.8 + green: 36.4 + yellow: 46 + blue: 25.1 + magenta: 25.2 + cyan: 35.4 + white: 77.9 + brightBlack: 12.1 + brightRed: 33.7 + brightGreen: 54.7 + brightYellow: 65.3 + brightBlue: 42.1 + brightMagenta: 41.5 + brightCyan: 53.6 + brightWhite: 90.9 diff --git a/themes/gruvbox-drakenlords--gruvbox-drakenlords-semi-dark.yaml b/themes/gruvbox-drakenlords--gruvbox-drakenlords-semi-dark.yaml new file mode 100644 index 00000000..a838a553 --- /dev/null +++ b/themes/gruvbox-drakenlords--gruvbox-drakenlords-semi-dark.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox DrakenLords (Gruvbox DrakenLords Semi Dark)" +source: + marketplace_id: "DrakenLords.gruvbox-draken-lords" + version: "1.5.5" + installs: 8913 + rating: 5 + ratings: 1 + author: "DrakenLords" + repo: "https://github.com/Drakenlords/Gruvbox-DrakenLords" + url: "https://marketplace.visualstudio.com/items?itemName=DrakenLords.gruvbox-draken-lords" + formats: null +colors: + bg: "#282828" + fg: "#EBDBB2" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#EBDBB2" + brightBlack: "#665C54" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#FBF1C7" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 81.9 + black: 0 + red: 22.8 + green: 40.5 + yellow: 50.1 + blue: 29.1 + magenta: 29.3 + cyan: 39.5 + white: 81.9 + brightBlack: 16.1 + brightRed: 37.7 + brightGreen: 58.7 + brightYellow: 69.4 + brightBlue: 46.2 + brightMagenta: 45.5 + brightCyan: 57.7 + brightWhite: 94.9 diff --git a/themes/gruvbox-in-black--aldrico-s-gruvbox.yaml b/themes/gruvbox-in-black--aldrico-s-gruvbox.yaml new file mode 100644 index 00000000..70b323fb --- /dev/null +++ b/themes/gruvbox-in-black--aldrico-s-gruvbox.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox in Black (Aldrico's Gruvbox)" +source: + marketplace_id: "HeavenAldrico.aldrico-s-gruvbox" + version: "0.2.3" + installs: 4291 + rating: 5 + ratings: 2 + author: "Heaven Aldrico" + repo: "https://github.com/ldriko/gruvbox-in-black" + url: "https://marketplace.visualstudio.com/items?itemName=HeavenAldrico.aldrico-s-gruvbox" + formats: null +colors: + bg: "#000000" + fg: "#D4BE98" + black: "#32302F" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 69 + black: 0 + red: 44 + green: 59 + yellow: 58.8 + blue: 53.2 + magenta: 49 + cyan: 55.7 + white: 69 + brightBlack: 37.4 + brightRed: 44 + brightGreen: 59 + brightYellow: 58.8 + brightBlue: 53.2 + brightMagenta: 49 + brightCyan: 55.7 + brightWhite: 74.3 diff --git a/themes/gruvbox-ish--gruvbox-ish-dark-hard.yaml b/themes/gruvbox-ish--gruvbox-ish-dark-hard.yaml new file mode 100644 index 00000000..a38b5f49 --- /dev/null +++ b/themes/gruvbox-ish--gruvbox-ish-dark-hard.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox ish (Gruvbox ish Dark Hard)" +source: + marketplace_id: "GracefulPotato.gruvbox-ish" + version: "0.8.0" + installs: 14937 + rating: 5 + ratings: 3 + author: "GracefulPotato" + repo: "https://github.com/graceful-potato/gruvbox-ish" + url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" + formats: null +colors: + bg: "#1D2021" + fg: "#DFBF8E" + black: "#282828" + red: "#D75F5F" + green: "#A8A81C" + yellow: "#D69617" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#D75F5F" + brightGreen: "#8B9553" + brightYellow: "#CEA64A" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#87AF87" + brightWhite: "#DFBF8E" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 68.7 + black: 0 + red: 35.8 + green: 50.4 + yellow: 50.2 + blue: 30.5 + magenta: 30.7 + cyan: 40.9 + white: 46.2 + brightBlack: 35.3 + brightRed: 35.8 + brightGreen: 40.3 + brightYellow: 55.1 + brightBlue: 47.6 + brightMagenta: 46.9 + brightCyan: 51.5 + brightWhite: 68.7 diff --git a/themes/gruvbox-ish--gruvbox-ish-dark-medium.yaml b/themes/gruvbox-ish--gruvbox-ish-dark-medium.yaml new file mode 100644 index 00000000..8ef0a2da --- /dev/null +++ b/themes/gruvbox-ish--gruvbox-ish-dark-medium.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox ish (Gruvbox ish Dark Medium)" +source: + marketplace_id: "GracefulPotato.gruvbox-ish" + version: "0.8.0" + installs: 14937 + rating: 5 + ratings: 3 + author: "GracefulPotato" + repo: "https://github.com/graceful-potato/gruvbox-ish" + url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" + formats: null +colors: + bg: "#282828" + fg: "#DFBF8E" + black: "#32302F" + red: "#D75F5F" + green: "#A8A81C" + yellow: "#D69617" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#D75F5F" + brightGreen: "#8B9553" + brightYellow: "#CEA64A" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#87AF87" + brightWhite: "#DFBF8E" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 67.3 + black: 0 + red: 34.4 + green: 49 + yellow: 48.8 + blue: 29.1 + magenta: 29.3 + cyan: 39.5 + white: 44.8 + brightBlack: 33.9 + brightRed: 34.4 + brightGreen: 38.9 + brightYellow: 53.7 + brightBlue: 46.2 + brightMagenta: 45.5 + brightCyan: 50.1 + brightWhite: 67.3 diff --git a/themes/gruvbox-ish--gruvbox-ish-dark-soft.yaml b/themes/gruvbox-ish--gruvbox-ish-dark-soft.yaml new file mode 100644 index 00000000..7a83841f --- /dev/null +++ b/themes/gruvbox-ish--gruvbox-ish-dark-soft.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox ish (Gruvbox ish Dark Soft)" +source: + marketplace_id: "GracefulPotato.gruvbox-ish" + version: "0.8.0" + installs: 14937 + rating: 5 + ratings: 3 + author: "GracefulPotato" + repo: "https://github.com/graceful-potato/gruvbox-ish" + url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.gruvbox-ish" + formats: null +colors: + bg: "#32302F" + fg: "#DFBF8E" + black: "#3C3836" + red: "#D75F5F" + green: "#A8A81C" + yellow: "#D69617" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#D75F5F" + brightGreen: "#8B9553" + brightYellow: "#CEA64A" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#87AF87" + brightWhite: "#DFBF8E" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.5 + black: 0 + red: 32.6 + green: 47.2 + yellow: 47.1 + blue: 27.4 + magenta: 27.5 + cyan: 37.7 + white: 43 + brightBlack: 32.2 + brightRed: 32.6 + brightGreen: 37.1 + brightYellow: 51.9 + brightBlue: 44.4 + brightMagenta: 43.8 + brightCyan: 48.3 + brightWhite: 65.5 diff --git a/themes/gruvbox-material--gruvbox-material-dark.yaml b/themes/gruvbox-material--gruvbox-material-dark.yaml new file mode 100644 index 00000000..635c94c0 --- /dev/null +++ b/themes/gruvbox-material--gruvbox-material-dark.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Material (Gruvbox Material Dark)" +source: + marketplace_id: "sainnhe.gruvbox-material" + version: "6.5.2" + installs: 328189 + rating: 4.92 + ratings: 39 + author: "sainnhe" + repo: "https://github.com/sainnhe/gruvbox-material-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.gruvbox-material" + formats: null +colors: + bg: "#292828" + fg: "#D4BE98" + black: "#32302F" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.5 + black: 0 + red: 40.5 + green: 55.5 + yellow: 55.3 + blue: 49.7 + magenta: 45.5 + cyan: 52.2 + white: 65.5 + brightBlack: 33.9 + brightRed: 40.5 + brightGreen: 55.5 + brightYellow: 55.3 + brightBlue: 49.7 + brightMagenta: 45.5 + brightCyan: 52.2 + brightWhite: 70.8 diff --git a/themes/gruvbox-material--gruvbox-material-light.yaml b/themes/gruvbox-material--gruvbox-material-light.yaml new file mode 100644 index 00000000..eadd8d6c --- /dev/null +++ b/themes/gruvbox-material--gruvbox-material-light.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Material (Gruvbox Material Light)" +source: + marketplace_id: "sainnhe.gruvbox-material" + version: "6.5.2" + installs: 328189 + rating: 4.92 + ratings: 39 + author: "sainnhe" + repo: "https://github.com/sainnhe/gruvbox-material-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.gruvbox-material" + formats: null +colors: + bg: "#FBF1C7" + fg: "#654735" + black: "#4F3829" + red: "#C14A4A" + green: "#6C782E" + yellow: "#B47109" + blue: "#45707A" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#654735" + brightRed: "#C14A4A" + brightGreen: "#6C782E" + brightYellow: "#B47109" + brightBlue: "#45707A" + brightMagenta: "#945E80" + brightCyan: "#4C7A5D" + brightWhite: "#F2E5BC" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 80.2 + black: 86.5 + red: 64.1 + green: 64.7 + yellow: 58 + blue: 68.5 + magenta: 66 + cyan: 65.5 + white: 55.7 + brightBlack: 80.2 + brightRed: 64.1 + brightGreen: 64.7 + brightYellow: 58 + brightBlue: 68.5 + brightMagenta: 66 + brightCyan: 65.5 + brightWhite: 0 diff --git a/themes/gruvbox-material-flat--gruvbox-material-flat-dark.yaml b/themes/gruvbox-material-flat--gruvbox-material-flat-dark.yaml new file mode 100644 index 00000000..a717c00c --- /dev/null +++ b/themes/gruvbox-material-flat--gruvbox-material-flat-dark.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Material Flat (Gruvbox Material Flat Dark)" +source: + marketplace_id: "GrzegorzKozub.gruvbox-material-flat" + version: "0.2.8" + installs: 689 + rating: 0 + ratings: 0 + author: "greg" + repo: "https://github.com/GrzegorzKozub/gruvbox-material-flat" + url: "https://marketplace.visualstudio.com/items?itemName=GrzegorzKozub.gruvbox-material-flat" + formats: null +colors: + bg: "#32302F" + fg: "#D4BE98" + black: "#3C3836" + red: "#C14A4A" + green: "#6C782E" + yellow: "#B47109" + blue: "#45707A" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#665C54" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#D4BE98" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 63.8 + black: 0 + red: 23.8 + green: 23.2 + yellow: 29.9 + blue: 19.4 + magenta: 21.9 + cyan: 22.4 + white: 32.2 + brightBlack: 14.4 + brightRed: 38.8 + brightGreen: 53.8 + brightYellow: 53.6 + brightBlue: 48 + brightMagenta: 43.8 + brightCyan: 50.4 + brightWhite: 63.8 diff --git a/themes/gruvbox-material-flat--gruvbox-material-flat-light.yaml b/themes/gruvbox-material-flat--gruvbox-material-flat-light.yaml new file mode 100644 index 00000000..59d15663 --- /dev/null +++ b/themes/gruvbox-material-flat--gruvbox-material-flat-light.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Material Flat (Gruvbox Material Flat Light)" +source: + marketplace_id: "GrzegorzKozub.gruvbox-material-flat" + version: "0.2.8" + installs: 689 + rating: 0 + ratings: 0 + author: "greg" + repo: "https://github.com/GrzegorzKozub/gruvbox-material-flat" + url: "https://marketplace.visualstudio.com/items?itemName=GrzegorzKozub.gruvbox-material-flat" + formats: null +colors: + bg: "#F2E5BC" + fg: "#654735" + black: "#EBDBB2" + red: "#C14A4A" + green: "#6C782E" + yellow: "#B47109" + blue: "#45707A" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#BDAE93" + brightRed: "#B85651" + brightGreen: "#8F9A52" + brightYellow: "#C18F41" + brightBlue: "#68948A" + brightMagenta: "#AB6C7D" + brightCyan: "#72966C" + brightWhite: "#654735" +meta: + mode: "light" + accent: "orange" + hue: 93 + pair: null + contrast: + fg: 73.6 + black: 0 + red: 57.5 + green: 58.1 + yellow: 51.4 + blue: 61.9 + magenta: 59.5 + cyan: 59 + white: 49.1 + brightBlack: 27.7 + brightRed: 56.8 + brightGreen: 42 + brightYellow: 39.8 + brightBlue: 46.2 + brightMagenta: 52.5 + brightCyan: 45.6 + brightWhite: 73.6 diff --git a/themes/gruvbox-minor--gruvbox-minor-dark-hard.yaml b/themes/gruvbox-minor--gruvbox-minor-dark-hard.yaml new file mode 100644 index 00000000..9c827b7f --- /dev/null +++ b/themes/gruvbox-minor--gruvbox-minor-dark-hard.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Minor (Gruvbox Minor Dark Hard)" +source: + marketplace_id: "adamsome.vscode-theme-gruvbox-minor" + version: "2.7.2" + installs: 27669 + rating: 5 + ratings: 10 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" + formats: null +colors: + bg: "#1D2021" + fg: "#928374" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Gruvbox Minor (Gruvbox Minor Light Hard)" + contrast: + fg: 35.3 + black: 0 + red: 24.2 + green: 41.9 + yellow: 51.5 + blue: 30.5 + magenta: 30.7 + cyan: 40.9 + white: 46.2 + brightBlack: 35.3 + brightRed: 39.1 + brightGreen: 60.1 + brightYellow: 70.8 + brightBlue: 47.6 + brightMagenta: 46.9 + brightCyan: 59.1 + brightWhite: 83.3 diff --git a/themes/gruvbox-minor--gruvbox-minor-dark-medium.yaml b/themes/gruvbox-minor--gruvbox-minor-dark-medium.yaml new file mode 100644 index 00000000..12e0adec --- /dev/null +++ b/themes/gruvbox-minor--gruvbox-minor-dark-medium.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Minor (Gruvbox Minor Dark Medium)" +source: + marketplace_id: "adamsome.vscode-theme-gruvbox-minor" + version: "2.7.2" + installs: 27669 + rating: 5 + ratings: 10 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" + formats: null +colors: + bg: "#282828" + fg: "#928374" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Gruvbox Minor (Gruvbox Minor Light Medium)" + contrast: + fg: 33.9 + black: 0 + red: 22.8 + green: 40.5 + yellow: 50.1 + blue: 29.1 + magenta: 29.3 + cyan: 39.5 + white: 44.8 + brightBlack: 33.9 + brightRed: 37.7 + brightGreen: 58.7 + brightYellow: 69.4 + brightBlue: 46.2 + brightMagenta: 45.5 + brightCyan: 57.7 + brightWhite: 81.9 diff --git a/themes/gruvbox-minor--gruvbox-minor-dark-soft.yaml b/themes/gruvbox-minor--gruvbox-minor-dark-soft.yaml new file mode 100644 index 00000000..b8239f37 --- /dev/null +++ b/themes/gruvbox-minor--gruvbox-minor-dark-soft.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Minor (Gruvbox Minor Dark Soft)" +source: + marketplace_id: "adamsome.vscode-theme-gruvbox-minor" + version: "2.7.2" + installs: 27669 + rating: 5 + ratings: 10 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" + formats: null +colors: + bg: "#32302F" + fg: "#928374" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Gruvbox Minor (Gruvbox Minor Light Soft)" + contrast: + fg: 32.2 + black: 0 + red: 21.1 + green: 38.7 + yellow: 48.3 + blue: 27.4 + magenta: 27.5 + cyan: 37.7 + white: 43 + brightBlack: 32.2 + brightRed: 36 + brightGreen: 57 + brightYellow: 67.6 + brightBlue: 44.4 + brightMagenta: 43.8 + brightCyan: 55.9 + brightWhite: 80.2 diff --git a/themes/gruvbox-minor--gruvbox-minor-light-hard.yaml b/themes/gruvbox-minor--gruvbox-minor-light-hard.yaml new file mode 100644 index 00000000..78ef7b98 --- /dev/null +++ b/themes/gruvbox-minor--gruvbox-minor-light-hard.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Minor (Gruvbox Minor Light Hard)" +source: + marketplace_id: "adamsome.vscode-theme-gruvbox-minor" + version: "2.7.2" + installs: 27669 + rating: 5 + ratings: 10 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" + formats: null +colors: + bg: "#F9F5D7" + fg: "#928374" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Gruvbox Minor (Gruvbox Minor Dark Hard)" + contrast: + fg: 57.7 + black: 11.5 + red: 68.8 + green: 51.2 + yellow: 41.8 + blue: 62.4 + magenta: 62.3 + cyan: 52.1 + white: 67.1 + brightBlack: 57.7 + brightRed: 80.4 + brightGreen: 67 + brightYellow: 58.3 + brightBlue: 75.6 + brightMagenta: 76.1 + brightCyan: 67.8 + brightWhite: 90.1 diff --git a/themes/gruvbox-minor--gruvbox-minor-light-medium.yaml b/themes/gruvbox-minor--gruvbox-minor-light-medium.yaml new file mode 100644 index 00000000..7cbe9b5c --- /dev/null +++ b/themes/gruvbox-minor--gruvbox-minor-light-medium.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Minor (Gruvbox Minor Light Medium)" +source: + marketplace_id: "adamsome.vscode-theme-gruvbox-minor" + version: "2.7.2" + installs: 27669 + rating: 5 + ratings: 10 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" + formats: null +colors: + bg: "#FBF1C7" + fg: "#928374" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Gruvbox Minor (Gruvbox Minor Dark Medium)" + contrast: + fg: 55.7 + black: 9.5 + red: 66.8 + green: 49.2 + yellow: 39.9 + blue: 60.5 + magenta: 60.3 + cyan: 50.2 + white: 65.1 + brightBlack: 55.7 + brightRed: 78.4 + brightGreen: 65 + brightYellow: 56.3 + brightBlue: 73.6 + brightMagenta: 74.1 + brightCyan: 65.8 + brightWhite: 88.1 diff --git a/themes/gruvbox-minor--gruvbox-minor-light-soft.yaml b/themes/gruvbox-minor--gruvbox-minor-light-soft.yaml new file mode 100644 index 00000000..aa0d9494 --- /dev/null +++ b/themes/gruvbox-minor--gruvbox-minor-light-soft.yaml @@ -0,0 +1,53 @@ +name: "Gruvbox Minor (Gruvbox Minor Light Soft)" +source: + marketplace_id: "adamsome.vscode-theme-gruvbox-minor" + version: "2.7.2" + installs: 27669 + rating: 5 + ratings: 10 + author: "adamsome" + repo: "https://github.com/adamsome/vscode-theme-gruvbox-minor" + url: "https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor" + formats: null +colors: + bg: "#F2E5BC" + fg: "#928374" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: 93 + pair: "Gruvbox Minor (Gruvbox Minor Dark Soft)" + contrast: + fg: 49.1 + black: 0 + red: 60.3 + green: 42.6 + yellow: 33.3 + blue: 53.9 + magenta: 53.8 + cyan: 43.6 + white: 58.6 + brightBlack: 49.1 + brightRed: 71.8 + brightGreen: 58.4 + brightYellow: 49.8 + brightBlue: 67 + brightMagenta: 67.5 + brightCyan: 59.2 + brightWhite: 81.5 diff --git a/themes/gruvbox.yaml b/themes/gruvbox.yaml new file mode 100644 index 00000000..f9014ae5 --- /dev/null +++ b/themes/gruvbox.yaml @@ -0,0 +1,53 @@ +name: "GruvBox" +source: + marketplace_id: "Ransh.ransh" + version: "0.0.1" + installs: 50567 + rating: 3 + ratings: 2 + author: "Ransh" + repo: "https://github.com/1466690577/gruvbox_theme_for_vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Ransh.ransh" + formats: null +colors: + bg: "#282828" + fg: "#EBDAB4" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#84A598" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#F84B3C" + brightGreen: "#B8BA37" + brightYellow: "#F9BC41" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8FBF7F" + brightWhite: "#EBDAB4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 81.6 + black: 0 + red: 22.8 + green: 40.5 + yellow: 50.1 + blue: 46.3 + magenta: 29.3 + cyan: 39.5 + white: 44.8 + brightBlack: 33.9 + brightRed: 37.4 + brightGreen: 58.4 + brightYellow: 68.9 + brightBlue: 46.2 + brightMagenta: 45.5 + brightCyan: 57.4 + brightWhite: 81.6 diff --git a/themes/gruvdark-theme--gruvdark-gbm.yaml b/themes/gruvdark-theme--gruvdark-gbm.yaml new file mode 100644 index 00000000..178f0742 --- /dev/null +++ b/themes/gruvdark-theme--gruvdark-gbm.yaml @@ -0,0 +1,53 @@ +name: "GruvDark Theme (GruvDark-GBM)" +source: + marketplace_id: "darianmorat.darian-theme" + version: "2.1.6" + installs: 3180 + rating: 5 + ratings: 1 + author: "Darian Toledo" + repo: "https://github.com/darianmorat/gruvdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" + formats: null +colors: + bg: "#202020" + fg: "#D4BE98" + black: "#32302F" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#928374" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#DDC7A1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 66.9 + black: 0 + red: 41.8 + green: 56.9 + yellow: 56.7 + blue: 51.1 + magenta: 46.9 + cyan: 53.5 + white: 66.9 + brightBlack: 35.2 + brightRed: 41.8 + brightGreen: 56.9 + brightYellow: 56.7 + brightBlue: 51.1 + brightMagenta: 46.9 + brightCyan: 53.5 + brightWhite: 72.1 diff --git a/themes/gruvdark-theme--gruvdark-tokyo.yaml b/themes/gruvdark-theme--gruvdark-tokyo.yaml new file mode 100644 index 00000000..6ee3af65 --- /dev/null +++ b/themes/gruvdark-theme--gruvdark-tokyo.yaml @@ -0,0 +1,53 @@ +name: "GruvDark Theme (GruvDark Tokyo)" +source: + marketplace_id: "darianmorat.darian-theme" + version: "2.1.6" + installs: 3180 + rating: 5 + ratings: 1 + author: "Darian Toledo" + repo: "https://github.com/darianmorat/gruvdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" + formats: null +colors: + bg: "#1A1B26" + fg: "#D4D4D4" + black: "#292733" + red: "#DB6A6A" + green: "#76B568" + yellow: "#D19F66" + blue: "#5B98C9" + magenta: "#CD60B9" + cyan: "#4DB0BD" + white: "#CDC5B8" + brightBlack: "#4F4F4F" + brightRed: "#DB6A6A" + brightGreen: "#76B568" + brightYellow: "#D19F66" + brightBlue: "#5B98C9" + brightMagenta: "#CD60B9" + brightCyan: "#4DB0BD" + brightWhite: "#CDC5B8" +meta: + mode: "dark" + accent: "pink" + hue: 280 + pair: null + contrast: + fg: 78.9 + black: 0 + red: 39.8 + green: 52.4 + yellow: 53.9 + blue: 42.4 + magenta: 37.9 + cyan: 50.8 + white: 70.5 + brightBlack: 12.3 + brightRed: 39.8 + brightGreen: 52.4 + brightYellow: 53.9 + brightBlue: 42.4 + brightMagenta: 37.9 + brightCyan: 50.8 + brightWhite: 70.5 diff --git a/themes/gruvdark-theme--gruvdark.yaml b/themes/gruvdark-theme--gruvdark.yaml new file mode 100644 index 00000000..07b360f4 --- /dev/null +++ b/themes/gruvdark-theme--gruvdark.yaml @@ -0,0 +1,53 @@ +name: "GruvDark Theme (GruvDark)" +source: + marketplace_id: "darianmorat.darian-theme" + version: "2.1.6" + installs: 3180 + rating: 5 + ratings: 1 + author: "Darian Toledo" + repo: "https://github.com/darianmorat/gruvdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" + formats: null +colors: + bg: "#202020" + fg: "#CDC5B8" + black: "#2B2B2B" + red: "#DB6A6A" + green: "#76B568" + yellow: "#D19F66" + blue: "#5B98C9" + magenta: "#CD60B9" + cyan: "#4DB0BD" + white: "#CDC5B8" + brightBlack: "#4F4F4F" + brightRed: "#DB6A6A" + brightGreen: "#76B568" + brightYellow: "#D19F66" + brightBlue: "#5B98C9" + brightMagenta: "#CD60B9" + brightCyan: "#4DB0BD" + brightWhite: "#CDC5B8" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 69.9 + black: 0 + red: 39.2 + green: 51.8 + yellow: 53.3 + blue: 41.8 + magenta: 37.3 + cyan: 50.3 + white: 69.9 + brightBlack: 11.7 + brightRed: 39.2 + brightGreen: 51.8 + brightYellow: 53.3 + brightBlue: 41.8 + brightMagenta: 37.3 + brightCyan: 50.3 + brightWhite: 69.9 diff --git a/themes/gruvdark-theme--light-gruvdark-mono.yaml b/themes/gruvdark-theme--light-gruvdark-mono.yaml new file mode 100644 index 00000000..da3ed13b --- /dev/null +++ b/themes/gruvdark-theme--light-gruvdark-mono.yaml @@ -0,0 +1,53 @@ +name: "GruvDark Theme (Light GruvDark-Mono)" +source: + marketplace_id: "darianmorat.darian-theme" + version: "2.1.6" + installs: 3180 + rating: 5 + ratings: 1 + author: "Darian Toledo" + repo: "https://github.com/darianmorat/gruvdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" + formats: null +colors: + bg: "#F9F6E4" + fg: "#111111" + black: "#4F3829" + red: "#C14A4A" + green: "#008000" + yellow: "#BF6702" + blue: "#0C69B6" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#111111" + brightRed: "#C14A4A" + brightGreen: "#008000" + brightYellow: "#BF6702" + brightBlue: "#0C69B6" + brightMagenta: "#945E80" + brightCyan: "#4C7A5D" + brightWhite: "#D1CFC4" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 99.6 + black: 89.4 + red: 67 + green: 68.9 + yellow: 61.7 + blue: 72 + magenta: 68.9 + cyan: 68.4 + white: 58.6 + brightBlack: 99.6 + brightRed: 67 + brightGreen: 68.9 + brightYellow: 61.7 + brightBlue: 72 + brightMagenta: 68.9 + brightCyan: 68.4 + brightWhite: 20.1 diff --git a/themes/gruvdark-theme--light-gruvdark-tokyo.yaml b/themes/gruvdark-theme--light-gruvdark-tokyo.yaml new file mode 100644 index 00000000..a0791e84 --- /dev/null +++ b/themes/gruvdark-theme--light-gruvdark-tokyo.yaml @@ -0,0 +1,53 @@ +name: "GruvDark Theme (Light GruvDark-Tokyo)" +source: + marketplace_id: "darianmorat.darian-theme" + version: "2.1.6" + installs: 3180 + rating: 5 + ratings: 1 + author: "Darian Toledo" + repo: "https://github.com/darianmorat/gruvdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" + formats: null +colors: + bg: "#F9F6E4" + fg: "#111111" + black: "#4F3829" + red: "#C14A4A" + green: "#008000" + yellow: "#BF6702" + blue: "#23669C" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#111111" + brightRed: "#C14A4A" + brightGreen: "#008000" + brightYellow: "#BF6702" + brightBlue: "#23669C" + brightMagenta: "#945E80" + brightCyan: "#4C7A5D" + brightWhite: "#D1CFC4" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 99.6 + black: 89.4 + red: 67 + green: 68.9 + yellow: 61.7 + blue: 74.3 + magenta: 68.9 + cyan: 68.4 + white: 58.6 + brightBlack: 99.6 + brightRed: 67 + brightGreen: 68.9 + brightYellow: 61.7 + brightBlue: 74.3 + brightMagenta: 68.9 + brightCyan: 68.4 + brightWhite: 20.1 diff --git a/themes/gruvdark-theme--light-gruvdark.yaml b/themes/gruvdark-theme--light-gruvdark.yaml new file mode 100644 index 00000000..7e846a40 --- /dev/null +++ b/themes/gruvdark-theme--light-gruvdark.yaml @@ -0,0 +1,53 @@ +name: "GruvDark Theme (Light GruvDark)" +source: + marketplace_id: "darianmorat.darian-theme" + version: "2.1.6" + installs: 3180 + rating: 5 + ratings: 1 + author: "Darian Toledo" + repo: "https://github.com/darianmorat/gruvdark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=darianmorat.darian-theme" + formats: null +colors: + bg: "#FBF1C7" + fg: "#111111" + black: "#4F3829" + red: "#C14A4A" + green: "#008000" + yellow: "#BF6702" + blue: "#23669C" + magenta: "#945E80" + cyan: "#4C7A5D" + white: "#928374" + brightBlack: "#111111" + brightRed: "#C14A4A" + brightGreen: "#008000" + brightYellow: "#BF6702" + brightBlue: "#23669C" + brightMagenta: "#945E80" + brightCyan: "#4C7A5D" + brightWhite: "#F2E5BC" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 96.7 + black: 86.5 + red: 64.1 + green: 66 + yellow: 58.8 + blue: 71.4 + magenta: 66 + cyan: 65.5 + white: 55.7 + brightBlack: 96.7 + brightRed: 64.1 + brightGreen: 66 + brightYellow: 58.8 + brightBlue: 71.4 + brightMagenta: 66 + brightCyan: 65.5 + brightWhite: 0 diff --git a/themes/gui-dark--untitled.yaml b/themes/gui-dark--untitled.yaml new file mode 100644 index 00000000..cb930b93 --- /dev/null +++ b/themes/gui-dark--untitled.yaml @@ -0,0 +1,53 @@ +name: "Gui Dark (Untitled)" +source: + marketplace_id: "GuilhermeFalco.Dark-Redin" + version: "1.1.9" + installs: 295 + rating: 0 + ratings: 0 + author: "GuilhermeFalco" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GuilhermeFalco.Dark-Redin" + formats: null +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#ABABAB" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 107.9 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 56.8 diff --git a/themes/gustavoglins-theme--gustavoglins.yaml b/themes/gustavoglins-theme--gustavoglins.yaml new file mode 100644 index 00000000..85268c54 --- /dev/null +++ b/themes/gustavoglins-theme--gustavoglins.yaml @@ -0,0 +1,53 @@ +name: "gustavoglins-theme (GustavoGLins)" +source: + marketplace_id: "GustavoLins05.gustavoglins-theme" + version: "22.1.1" + installs: 41 + rating: 5 + ratings: 1 + author: "Gustavo Lins" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GustavoLins05.gustavoglins-theme" + formats: null +colors: + bg: "#0F0F10" + fg: "#EDEDED" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 95.7 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 107.5 diff --git a/themes/hackelectron.yaml b/themes/hackelectron.yaml new file mode 100644 index 00000000..9578bad4 --- /dev/null +++ b/themes/hackelectron.yaml @@ -0,0 +1,53 @@ +name: "HackElectron" +source: + marketplace_id: "TheVoidsteppers.hack-electron" + version: "0.0.3" + installs: 2206 + rating: 0 + ratings: 0 + author: "TheVoidsteppers" + repo: "https://github.com/TheVoidsteppers/hack-electron" + url: "https://marketplace.visualstudio.com/items?itemName=TheVoidsteppers.hack-electron" + formats: null +colors: + bg: "#16171D" + fg: "#BBD1DD" + black: "#21222C" + red: "#FF704D" + green: "#33CC33" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#BBD1DD" + brightBlack: "#7A7A8C" + brightRed: "#FF661A" + brightGreen: "#33CC33" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#A64DFF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 278 + pair: null + contrast: + fg: 75.5 + black: 0 + red: 48.7 + green: 59.9 + yellow: 103.2 + blue: 36.7 + magenta: 27.9 + cyan: 38.2 + white: 75.5 + brightBlack: 31.6 + brightRed: 46 + brightGreen: 59.9 + brightYellow: 101.7 + brightBlue: 47.9 + brightMagenta: 33.3 + brightCyan: 91.1 + brightWhite: 88.3 diff --git a/themes/hacker-theme.yaml b/themes/hacker-theme.yaml new file mode 100644 index 00000000..4534ecb2 --- /dev/null +++ b/themes/hacker-theme.yaml @@ -0,0 +1,53 @@ +name: "Hacker Theme" +source: + marketplace_id: "brenix.hacker-theme" + version: "0.0.6" + installs: 69305 + rating: 5 + ratings: 3 + author: "brenix" + repo: "https://github.com/brenix/vscode-hacker" + url: "https://marketplace.visualstudio.com/items?itemName=brenix.hacker-theme" + formats: null +colors: + bg: "#0A0B0A" + fg: "#BBBBBB" + black: "#252525" + red: "#C05776" + green: "#A7ECB7" + yellow: "#87A1C5" + blue: "#81B38C" + magenta: "#507057" + cyan: "#7574A5" + white: "#858585" + brightBlack: "#454545" + brightRed: "#C05776" + brightGreen: "#A7ECB7" + brightYellow: "#87A1C5" + brightBlue: "#81B38C" + brightMagenta: "#507057" + brightCyan: "#7574A5" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 65.6 + black: 0 + red: 32.1 + green: 85.4 + yellow: 50.2 + blue: 54.7 + magenta: 24 + cyan: 31.2 + white: 37 + brightBlack: 10 + brightRed: 32.1 + brightGreen: 85.4 + brightYellow: 50.2 + brightBlue: 54.7 + brightMagenta: 24 + brightCyan: 31.2 + brightWhite: 92.8 diff --git a/themes/hacker-x-theme--amaranth-red-eerie-black-fork.yaml b/themes/hacker-x-theme--amaranth-red-eerie-black-fork.yaml new file mode 100644 index 00000000..7a1e2bac --- /dev/null +++ b/themes/hacker-x-theme--amaranth-red-eerie-black-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (Amaranth Red & Eerie Black - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#131415" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.2 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/hacker-x-theme--belch-fork.yaml b/themes/hacker-x-theme--belch-fork.yaml new file mode 100644 index 00000000..539794e1 --- /dev/null +++ b/themes/hacker-x-theme--belch-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (BELCH - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#1D0038" + fg: "#D4D4D4" + black: "#9A00E0" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: 301 + pair: null + contrast: + fg: 79.5 + black: 22.9 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 106.9 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/hacker-x-theme--dark-code-fork.yaml b/themes/hacker-x-theme--dark-code-fork.yaml new file mode 100644 index 00000000..8c91a995 --- /dev/null +++ b/themes/hacker-x-theme--dark-code-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (Dark Code - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#000000" + fg: "#539BCF" + black: "#5A5A5A" + red: "#6D1F1F" + green: "#075637" + yellow: "#5C5C0D" + blue: "#1D4168" + magenta: "#5E205E" + cyan: "#0C5B6F" + white: "#AB8C8C" + brightBlack: "#666666" + brightRed: "#7B2A2A" + brightGreen: "#126242" + brightYellow: "#51511A" + brightBlue: "#245284" + brightMagenta: "#683868" + brightCyan: "#196D82" + brightWhite: "#807F7F" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 45 + black: 18.1 + red: 7.6 + green: 12.7 + yellow: 17.8 + blue: 8.5 + magenta: 0 + cyan: 15.9 + white: 44.3 + brightBlack: 23 + brightRed: 11.1 + brightGreen: 16.8 + brightYellow: 13.7 + brightBlue: 14.6 + brightMagenta: 12.1 + brightCyan: 22.6 + brightWhite: 34.4 diff --git a/themes/hacker-x-theme--devr-dark-theme-fork.yaml b/themes/hacker-x-theme--devr-dark-theme-fork.yaml new file mode 100644 index 00000000..dc28322c --- /dev/null +++ b/themes/hacker-x-theme--devr-dark-theme-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (DevR Dark Theme - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#181B28" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + pair: null + contrast: + fg: 78.3 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/hacker-x-theme--electric-violet-fork.yaml b/themes/hacker-x-theme--electric-violet-fork.yaml new file mode 100644 index 00000000..f665d6d3 --- /dev/null +++ b/themes/hacker-x-theme--electric-violet-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (Electric Violet - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#292C3F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + pair: null + contrast: + fg: 76 + black: 0 + red: 23.2 + green: 49.5 + yellow: 82.1 + blue: 23.9 + magenta: 26.3 + cyan: 44.1 + white: 86.5 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.5 diff --git a/themes/hacker-x-theme--emerald-fork.yaml b/themes/hacker-x-theme--emerald-fork.yaml new file mode 100644 index 00000000..5eb2739e --- /dev/null +++ b/themes/hacker-x-theme--emerald-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (EMERALD - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#1E1E1E" + fg: "#E4E4E4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 88.6 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/hacker-x-theme--enhanced-material-fork.yaml b/themes/hacker-x-theme--enhanced-material-fork.yaml new file mode 100644 index 00000000..0f46b2d0 --- /dev/null +++ b/themes/hacker-x-theme--enhanced-material-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (Enhanced Material - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#292C3E" + fg: "#B4B4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + pair: null + contrast: + fg: 57.3 + black: 0 + red: 23.3 + green: 49.5 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.6 diff --git a/themes/hacker-x-theme--hacker-blue-fork.yaml b/themes/hacker-x-theme--hacker-blue-fork.yaml new file mode 100644 index 00000000..d9b780ef --- /dev/null +++ b/themes/hacker-x-theme--hacker-blue-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (HACKER BLUE - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#000E14" + fg: "#7DF9FF" + black: "#606060" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#C2C2C2" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 222 + pair: null + contrast: + fg: 91.8 + black: 20.2 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 90.7 + brightBlack: 69.5 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/hacker-x-theme--hacker-x.yaml b/themes/hacker-x-theme--hacker-x.yaml new file mode 100644 index 00000000..67644817 --- /dev/null +++ b/themes/hacker-x-theme--hacker-x.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (Hacker X)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#2F3640" + fg: "#E4E4E4" + black: "#000000" + red: "#FF5E57" + green: "#44BD32" + yellow: "#FFA801" + blue: "#575FCF" + magenta: "#EF5777" + cyan: "#00D8D6" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF3F34" + brightGreen: "#4CD137" + brightYellow: "#FFD32A" + brightBlue: "#0FBCF9" + brightMagenta: "#F53B57" + brightCyan: "#34E7E4" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 257 + pair: null + contrast: + fg: 83.8 + black: 0 + red: 39.5 + green: 47.7 + yellow: 59.2 + blue: 19 + magenta: 35.3 + cyan: 64 + white: 84.5 + brightBlack: 16.5 + brightRed: 34.3 + brightGreen: 57.5 + brightYellow: 76.1 + brightBlue: 53.2 + brightMagenta: 31.9 + brightCyan: 72.4 + brightWhite: 84.5 diff --git a/themes/hacker-x-theme--hyped-down-fork.yaml b/themes/hacker-x-theme--hyped-down-fork.yaml new file mode 100644 index 00000000..349815cc --- /dev/null +++ b/themes/hacker-x-theme--hyped-down-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (Hyped Down - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#1D1F27" + fg: "#C5C8C6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + pair: null + contrast: + fg: 70.8 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.6 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/hacker-x-theme--into-the-unknow-fork.yaml b/themes/hacker-x-theme--into-the-unknow-fork.yaml new file mode 100644 index 00000000..7525877a --- /dev/null +++ b/themes/hacker-x-theme--into-the-unknow-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (Into the unknow - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#171717" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.9 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/hacker-x-theme--joyful-fork.yaml b/themes/hacker-x-theme--joyful-fork.yaml new file mode 100644 index 00000000..c63aef6e --- /dev/null +++ b/themes/hacker-x-theme--joyful-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (Joyful - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#373E4D" + fg: "#F9F9F9" + black: "#000000" + red: "#FA5AA4" + green: "#2BE491" + yellow: "#FA946E" + blue: "#89CCF7" + magenta: "#CF8EF4" + cyan: "#63C5EA" + white: "#F9F9F9" + brightBlack: "#666666" + brightRed: "#FA74B2" + brightGreen: "#44EB9F" + brightYellow: "#FAA687" + brightBlue: "#A1D5F7" + brightMagenta: "#D8A6F4" + brightCyan: "#7ACBEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 265 + pair: null + contrast: + fg: 94.8 + black: 9 + red: 37.3 + green: 65.1 + yellow: 50 + blue: 62 + magenta: 46.3 + cyan: 55.8 + white: 94.8 + brightBlack: 13.9 + brightRed: 43.3 + brightGreen: 69.5 + brightYellow: 56.5 + brightBlue: 68 + brightMagenta: 55.5 + brightCyan: 59.7 + brightWhite: 98.8 diff --git a/themes/hacker-x-theme--kermit-fork.yaml b/themes/hacker-x-theme--kermit-fork.yaml new file mode 100644 index 00000000..b70e4fca --- /dev/null +++ b/themes/hacker-x-theme--kermit-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (Kermit - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#1E1E1E" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/hacker-x-theme--modernui-fork.yaml b/themes/hacker-x-theme--modernui-fork.yaml new file mode 100644 index 00000000..e5fc6198 --- /dev/null +++ b/themes/hacker-x-theme--modernui-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (ModernUI - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#171616" + fg: "#D9D9D9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 82.6 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 29.2 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/hacker-x-theme--orion-black-fork.yaml b/themes/hacker-x-theme--orion-black-fork.yaml new file mode 100644 index 00000000..cbf717c5 --- /dev/null +++ b/themes/hacker-x-theme--orion-black-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (Orion-Black - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/hacker-x-theme--terminal-fork.yaml b/themes/hacker-x-theme--terminal-fork.yaml new file mode 100644 index 00000000..7a184860 --- /dev/null +++ b/themes/hacker-x-theme--terminal-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (Terminal - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#000000" + fg: "#39FF14" + black: "#39FF14" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 87 + black: 87 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/hacker-x-theme--underdark-fork.yaml b/themes/hacker-x-theme--underdark-fork.yaml new file mode 100644 index 00000000..455b3dec --- /dev/null +++ b/themes/hacker-x-theme--underdark-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (Underdark - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#0A0A0A" + fg: "#AF8BFF" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 50.5 + black: 7.3 + red: 39.5 + green: 87 + yellow: 92.2 + blue: 38.3 + magenta: 46.1 + cyan: 77 + white: 52.3 + brightBlack: 22.9 + brightRed: 48 + brightGreen: 93.4 + brightYellow: 80.3 + brightBlue: 72.4 + brightMagenta: 67.7 + brightCyan: 90.5 + brightWhite: 73.7 diff --git a/themes/hacker-x-theme--windows-98-fork.yaml b/themes/hacker-x-theme--windows-98-fork.yaml new file mode 100644 index 00000000..bff5d9b8 --- /dev/null +++ b/themes/hacker-x-theme--windows-98-fork.yaml @@ -0,0 +1,53 @@ +name: "Hacker X Theme (Windows 98 - Fork)" +source: + marketplace_id: "HasiburR.dark-hacker-theme-by-hasibur-r" + version: "9.0.1" + installs: 29947 + rating: 4.6 + ratings: 10 + author: "Hasibur R" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasiburR.dark-hacker-theme-by-hasibur-r" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/hackpot--hackpot-batman-vs-joker-dark.yaml b/themes/hackpot--hackpot-batman-vs-joker-dark.yaml new file mode 100644 index 00000000..b1f48ae8 --- /dev/null +++ b/themes/hackpot--hackpot-batman-vs-joker-dark.yaml @@ -0,0 +1,53 @@ +name: "Hackpot (Hackpot Batman vs Joker Dark)" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24360 + rating: 5 + ratings: 5 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" + formats: null +colors: + bg: "#16171D" + fg: "#BBD1DD" + black: "#21222C" + red: "#FF704D" + green: "#486484" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#BBD1DD" + brightBlack: "#2C2D3A" + brightRed: "#FF661A" + brightGreen: "#33CC33" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#A64DFF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 278 + pair: null + contrast: + fg: 75.5 + black: 0 + red: 48.7 + green: 20.3 + yellow: 103.2 + blue: 36.7 + magenta: 27.9 + cyan: 38.2 + white: 75.5 + brightBlack: 0 + brightRed: 46 + brightGreen: 59.9 + brightYellow: 101.7 + brightBlue: 47.9 + brightMagenta: 33.3 + brightCyan: 91.1 + brightWhite: 88.3 diff --git a/themes/hackpot--hackpot-batman-vs-joker.yaml b/themes/hackpot--hackpot-batman-vs-joker.yaml new file mode 100644 index 00000000..37a44597 --- /dev/null +++ b/themes/hackpot--hackpot-batman-vs-joker.yaml @@ -0,0 +1,53 @@ +name: "Hackpot (Hackpot Batman vs Joker)" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24360 + rating: 5 + ratings: 5 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" + formats: null +colors: + bg: "#21222C" + fg: "#BBD1DD" + black: "#2B2E3B" + red: "#FF704D" + green: "#486484" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#BBD1DD" + brightBlack: "#363949" + brightRed: "#FF661A" + brightGreen: "#33CC33" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#A64DFF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 280 + pair: null + contrast: + fg: 74.1 + black: 0 + red: 47.2 + green: 18.8 + yellow: 101.7 + blue: 35.2 + magenta: 26.5 + cyan: 36.7 + white: 74.1 + brightBlack: 0 + brightRed: 44.5 + brightGreen: 58.4 + brightYellow: 100.2 + brightBlue: 46.4 + brightMagenta: 31.9 + brightCyan: 89.6 + brightWhite: 86.8 diff --git a/themes/hackpot--hackpot-dark-knight.yaml b/themes/hackpot--hackpot-dark-knight.yaml new file mode 100644 index 00000000..a98a7b49 --- /dev/null +++ b/themes/hackpot--hackpot-dark-knight.yaml @@ -0,0 +1,53 @@ +name: "Hackpot (Hackpot Dark Knight)" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24360 + rating: 5 + ratings: 5 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" + formats: null +colors: + bg: "#142739" + fg: "#BBD1DD" + black: "#1A344C" + red: "#FF704D" + green: "#486484" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#BBD1DD" + brightBlack: "#21415F" + brightRed: "#FF661A" + brightGreen: "#33CC33" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#A64DFF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 248 + pair: null + contrast: + fg: 73.5 + black: 0 + red: 46.6 + green: 18.3 + yellow: 101.2 + blue: 34.7 + magenta: 25.9 + cyan: 36.2 + white: 73.5 + brightBlack: 0 + brightRed: 44 + brightGreen: 57.8 + brightYellow: 99.6 + brightBlue: 45.8 + brightMagenta: 31.3 + brightCyan: 89.1 + brightWhite: 86.3 diff --git a/themes/hackpot--hackpot-darker-knight.yaml b/themes/hackpot--hackpot-darker-knight.yaml new file mode 100644 index 00000000..71225b89 --- /dev/null +++ b/themes/hackpot--hackpot-darker-knight.yaml @@ -0,0 +1,53 @@ +name: "Hackpot (Hackpot Darker Knight)" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24360 + rating: 5 + ratings: 5 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" + formats: null +colors: + bg: "#0D1A26" + fg: "#BBD1DD" + black: "#142739" + red: "#FF704D" + green: "#486484" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#BBD1DD" + brightBlack: "#1A344C" + brightRed: "#FF661A" + brightGreen: "#33CC33" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#A64DFF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 248 + pair: null + contrast: + fg: 75.3 + black: 0 + red: 48.4 + green: 20.1 + yellow: 103 + blue: 36.5 + magenta: 27.7 + cyan: 38 + white: 75.3 + brightBlack: 0 + brightRed: 45.8 + brightGreen: 59.7 + brightYellow: 101.5 + brightBlue: 47.7 + brightMagenta: 33.1 + brightCyan: 90.9 + brightWhite: 88.1 diff --git a/themes/hackpot--hackpot-garden-dark.yaml b/themes/hackpot--hackpot-garden-dark.yaml new file mode 100644 index 00000000..399dd8f3 --- /dev/null +++ b/themes/hackpot--hackpot-garden-dark.yaml @@ -0,0 +1,53 @@ +name: "Hackpot (Hackpot Garden Dark)" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24360 + rating: 5 + ratings: 5 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" + formats: null +colors: + bg: "#1A1A1A" + fg: "#B1E7B1" + black: "#202020" + red: "#FF704D" + green: "#1E621E" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#B1E7B1" + brightBlack: "#252525" + brightRed: "#FF661A" + brightGreen: "#32CD32" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#B366FF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 82.5 + black: 0 + red: 48.4 + green: 15.2 + yellow: 102.9 + blue: 36.4 + magenta: 27.7 + cyan: 37.9 + white: 82.5 + brightBlack: 0 + brightRed: 45.7 + brightGreen: 60 + brightYellow: 101.4 + brightBlue: 47.6 + brightMagenta: 39.9 + brightCyan: 90.8 + brightWhite: 88 diff --git a/themes/hackpot--hackpot-garden-of-atlantis.yaml b/themes/hackpot--hackpot-garden-of-atlantis.yaml new file mode 100644 index 00000000..3fb23ecc --- /dev/null +++ b/themes/hackpot--hackpot-garden-of-atlantis.yaml @@ -0,0 +1,53 @@ +name: "Hackpot (Hackpot Garden Of Atlantis)" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24360 + rating: 5 + ratings: 5 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" + formats: null +colors: + bg: "#002020" + fg: "#B1E7B1" + black: "#002828" + red: "#FF704D" + green: "#1E621E" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#B1E7B1" + brightBlack: "#003030" + brightRed: "#FF661A" + brightGreen: "#32CD32" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#B366FF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 195 + pair: null + contrast: + fg: 82.2 + black: 0 + red: 48 + green: 14.8 + yellow: 102.5 + blue: 36 + magenta: 27.3 + cyan: 37.5 + white: 82.2 + brightBlack: 0 + brightRed: 45.4 + brightGreen: 59.7 + brightYellow: 101 + brightBlue: 47.2 + brightMagenta: 39.5 + brightCyan: 90.5 + brightWhite: 87.7 diff --git a/themes/hackpot--hackpot-garden-purple-haze.yaml b/themes/hackpot--hackpot-garden-purple-haze.yaml new file mode 100644 index 00000000..580ca75d --- /dev/null +++ b/themes/hackpot--hackpot-garden-purple-haze.yaml @@ -0,0 +1,53 @@ +name: "Hackpot (Hackpot Garden Purple Haze)" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24360 + rating: 5 + ratings: 5 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" + formats: null +colors: + bg: "#330033" + fg: "#F2E6FF" + black: "#4D004D" + red: "#FF704D" + green: "#1E621E" + yellow: "#FFFF33" + blue: "#50B4FB" + magenta: "#990099" + cyan: "#1B9891" + white: "#F2E6FF" + brightBlack: "#660066" + brightRed: "#FF661A" + brightGreen: "#5CD65C" + brightYellow: "#FFFF66" + brightBlue: "#82C9FC" + brightMagenta: "#E600E6" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 328 + pair: null + contrast: + fg: 92.7 + black: 0 + red: 47.8 + green: 14.6 + yellow: 100.9 + blue: 55.9 + magenta: 16.5 + cyan: 37.4 + white: 92.7 + brightBlack: 0 + brightRed: 45.2 + brightGreen: 65.7 + brightYellow: 101.4 + brightBlue: 67.7 + brightMagenta: 36.9 + brightCyan: 90.3 + brightWhite: 106 diff --git a/themes/hackpot--hackpot-garden.yaml b/themes/hackpot--hackpot-garden.yaml new file mode 100644 index 00000000..851d41e2 --- /dev/null +++ b/themes/hackpot--hackpot-garden.yaml @@ -0,0 +1,53 @@ +name: "Hackpot (Hackpot Garden)" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24360 + rating: 5 + ratings: 5 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" + formats: null +colors: + bg: "#252525" + fg: "#B1E7B1" + black: "#2A2A2A" + red: "#FF704D" + green: "#1E621E" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#B1E7B1" + brightBlack: "#303030" + brightRed: "#FF661A" + brightGreen: "#32CD32" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#B366FF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 80.9 + black: 0 + red: 46.8 + green: 13.6 + yellow: 101.3 + blue: 34.8 + magenta: 26.1 + cyan: 36.3 + white: 80.9 + brightBlack: 0 + brightRed: 44.1 + brightGreen: 58.5 + brightYellow: 99.8 + brightBlue: 46 + brightMagenta: 38.3 + brightCyan: 89.3 + brightWhite: 86.5 diff --git a/themes/hackpot--hackpot-muddy-garden.yaml b/themes/hackpot--hackpot-muddy-garden.yaml new file mode 100644 index 00000000..407158a1 --- /dev/null +++ b/themes/hackpot--hackpot-muddy-garden.yaml @@ -0,0 +1,53 @@ +name: "Hackpot (Hackpot Muddy Garden)" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24360 + rating: 5 + ratings: 5 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" + formats: null +colors: + bg: "#231A0F" + fg: "#B1E7B1" + black: "#362817" + red: "#FF704D" + green: "#1E621E" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#B1E7B1" + brightBlack: "#47351F" + brightRed: "#FF661A" + brightGreen: "#32CD32" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#B366FF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 72 + pair: null + contrast: + fg: 82.3 + black: 0 + red: 48.1 + green: 15 + yellow: 102.7 + blue: 36.2 + magenta: 27.4 + cyan: 37.7 + white: 82.3 + brightBlack: 0 + brightRed: 45.5 + brightGreen: 59.8 + brightYellow: 101.2 + brightBlue: 47.4 + brightMagenta: 39.7 + brightCyan: 90.6 + brightWhite: 87.8 diff --git a/themes/hackpot--hackpot-poisoned-garden.yaml b/themes/hackpot--hackpot-poisoned-garden.yaml new file mode 100644 index 00000000..144f412a --- /dev/null +++ b/themes/hackpot--hackpot-poisoned-garden.yaml @@ -0,0 +1,53 @@ +name: "Hackpot (Hackpot Poisoned Garden)" +source: + marketplace_id: "wwmyers.hackpot" + version: "3.0.0" + installs: 24360 + rating: 5 + ratings: 5 + author: "wwmyers" + repo: "https://github.com/wwmyers/hackpot" + url: "https://marketplace.visualstudio.com/items?itemName=wwmyers.hackpot" + formats: null +colors: + bg: "#0C270C" + fg: "#B1E7B1" + black: "#123B12" + red: "#FF704D" + green: "#1E621E" + yellow: "#FFFF99" + blue: "#268BD2" + magenta: "#9933FF" + cyan: "#1B9891" + white: "#B1E7B1" + brightBlack: "#174F17" + brightRed: "#FF661A" + brightGreen: "#32CD32" + brightYellow: "#FFFF1A" + brightBlue: "#1FADA6" + brightMagenta: "#B366FF" + brightCyan: "#00FFFF" + brightWhite: "#C4EDC4" +meta: + mode: "dark" + accent: "magenta" + hue: 144 + pair: null + contrast: + fg: 81.4 + black: 0 + red: 47.2 + green: 14.1 + yellow: 101.8 + blue: 35.3 + magenta: 26.5 + cyan: 36.8 + white: 81.4 + brightBlack: 7.8 + brightRed: 44.6 + brightGreen: 58.9 + brightYellow: 100.3 + brightBlue: 46.5 + brightMagenta: 38.8 + brightCyan: 89.7 + brightWhite: 86.9 diff --git a/themes/haidark.yaml b/themes/haidark.yaml new file mode 100644 index 00000000..d70b5d20 --- /dev/null +++ b/themes/haidark.yaml @@ -0,0 +1,53 @@ +name: "haidark" +source: + marketplace_id: "phongtranhai.haidark" + version: "0.0.3" + installs: 117 + rating: 5 + ratings: 1 + author: "Huu Nhan Tran" + repo: "https://github.com/thnhan1/haidark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=phongtranhai.haidark" + formats: null +colors: + bg: "#282A36" + fg: "#D6DEEB" + black: "#282A36" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 278 + pair: null + contrast: + fg: 82.3 + black: 0 + red: 36.4 + green: 64.3 + yellow: 79.1 + blue: 53 + magenta: 50.8 + cyan: 56.7 + white: 103.9 + brightBlack: 12.6 + brightRed: 36.4 + brightGreen: 64.3 + brightYellow: 90.8 + brightBlue: 53 + brightMagenta: 50.8 + brightCyan: 71 + brightWhite: 103.9 diff --git a/themes/halcyon-theme.yaml b/themes/halcyon-theme.yaml new file mode 100644 index 00000000..c19fbb98 --- /dev/null +++ b/themes/halcyon-theme.yaml @@ -0,0 +1,53 @@ +name: "Halcyon Theme" +source: + marketplace_id: "brittanychiang.halcyon-vscode" + version: "0.4.0" + installs: 187819 + rating: 4.77 + ratings: 30 + author: "brittanychiang" + repo: "https://github.com/bchiang7/halcyon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=brittanychiang.halcyon-vscode" + formats: null +colors: + bg: "#1D2433" + fg: "#A2AABC" + black: "#2F3B54" + red: "#EF6B73" + green: "#BAE67E" + yellow: "#FFCC66" + blue: "#5CCFE6" + magenta: "#C3A6FF" + cyan: "#5CCFE6" + white: "#A2AABC" + brightBlack: "#444A5E" + brightRed: "#EF6B73" + brightGreen: "#BAE67E" + brightYellow: "#FFCC66" + brightBlue: "#5CCFE6" + brightMagenta: "#C3A6FF" + brightCyan: "#5CCFE6" + brightWhite: "#A2AABC" +meta: + mode: "dark" + accent: "orange" + hue: 265 + pair: null + contrast: + fg: 53.3 + black: 0 + red: 43.1 + green: 80.2 + yellow: 77.5 + blue: 66.1 + magenta: 59.6 + cyan: 66.1 + white: 53.3 + brightBlack: 9.4 + brightRed: 43.1 + brightGreen: 80.2 + brightYellow: 77.5 + brightBlue: 66.1 + brightMagenta: 59.6 + brightCyan: 66.1 + brightWhite: 53.3 diff --git a/themes/hamidthedev-pro.yaml b/themes/hamidthedev-pro.yaml new file mode 100644 index 00000000..d9b4e4c4 --- /dev/null +++ b/themes/hamidthedev-pro.yaml @@ -0,0 +1,53 @@ +name: "HamidTheDev Pro" +source: + marketplace_id: "HamidTheDev.hamidthedev" + version: "6.0.0" + installs: 924 + rating: 5 + ratings: 1 + author: "HamidTheDev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HamidTheDev.hamidthedev" + formats: null +colors: + bg: "#1A2023" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 229 + pair: null + contrast: + fg: 58.4 + black: 7.9 + red: 35.7 + green: 59.4 + yellow: 47.6 + blue: 48.7 + magenta: 38.1 + cyan: 51.5 + white: 82.1 + brightBlack: 14.5 + brightRed: 45.1 + brightGreen: 75.8 + brightYellow: 60.2 + brightBlue: 62.8 + brightMagenta: 49.3 + brightCyan: 66.8 + brightWhite: 89.7 diff --git a/themes/hapsida-securisec--dark.yaml b/themes/hapsida-securisec--dark.yaml new file mode 100644 index 00000000..78a895da --- /dev/null +++ b/themes/hapsida-securisec--dark.yaml @@ -0,0 +1,53 @@ +name: "hapsida.securisec (Dark)" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + rating: 5 + ratings: 1 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null +colors: + bg: "#0C0F1B" + fg: "#EEFFFF" + black: "#000000" + red: "#FF628C" + green: "#3AD900" + yellow: "#FFC600" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FFC600" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: 273 + pair: null + contrast: + fg: 105.1 + black: 0 + red: 47.7 + green: 66.9 + yellow: 76.7 + blue: 39.3 + magenta: 64.9 + cyan: 93.3 + white: 107.5 + brightBlack: 15.2 + brightRed: 47.7 + brightGreen: 66.9 + brightYellow: 76.7 + brightBlue: 39.3 + brightMagenta: 64.9 + brightCyan: 93.3 + brightWhite: 0 diff --git a/themes/hapsida-securisec--iceberg.yaml b/themes/hapsida-securisec--iceberg.yaml new file mode 100644 index 00000000..9fd1bf15 --- /dev/null +++ b/themes/hapsida-securisec--iceberg.yaml @@ -0,0 +1,53 @@ +name: "hapsida.securisec (Iceberg)" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + rating: 5 + ratings: 1 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null +colors: + bg: "#161821" + fg: "#C6C8D0" + black: "#000000" + red: "#D47D7B" + green: "#34D399" + yellow: "#FCD34D" + blue: "#818CF8" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#FCD34D" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: 275 + pair: null + contrast: + fg: 72.2 + black: 0 + red: 44.3 + green: 65 + yellow: 81.2 + blue: 44.3 + magenta: 64.2 + cyan: 92.6 + white: 106.7 + brightBlack: 14.5 + brightRed: 47 + brightGreen: 66.1 + brightYellow: 81.2 + brightBlue: 38.6 + brightMagenta: 64.2 + brightCyan: 92.6 + brightWhite: 0 diff --git a/themes/hapsida-securisec--mountain.yaml b/themes/hapsida-securisec--mountain.yaml new file mode 100644 index 00000000..32cbf064 --- /dev/null +++ b/themes/hapsida-securisec--mountain.yaml @@ -0,0 +1,53 @@ +name: "hapsida.securisec (Mountain)" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + rating: 5 + ratings: 1 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null +colors: + bg: "#0C0C0C" + fg: "#E7E7E7" + black: "#000000" + red: "#C49EA0" + green: "#9EC49F" + yellow: "#CEB188" + blue: "#9EC3C4" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#CEB188" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 92.1 + black: 0 + red: 54.5 + green: 65.1 + yellow: 62.3 + blue: 66.1 + magenta: 65.1 + cyan: 93.5 + white: 107.7 + brightBlack: 15.4 + brightRed: 47.9 + brightGreen: 67.1 + brightYellow: 62.3 + brightBlue: 39.5 + brightMagenta: 65.1 + brightCyan: 93.5 + brightWhite: 0 diff --git a/themes/hapsida-securisec--nord.yaml b/themes/hapsida-securisec--nord.yaml new file mode 100644 index 00000000..6d985da6 --- /dev/null +++ b/themes/hapsida-securisec--nord.yaml @@ -0,0 +1,53 @@ +name: "hapsida.securisec (Nord)" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + rating: 5 + ratings: 1 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null +colors: + bg: "#151617" + fg: "#D8DEE9" + black: "#000000" + red: "#BF616A" + green: "#8DBF8F" + yellow: "#EBCB8B" + blue: "#88C0D0" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#EBCB8B" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 85.5 + black: 0 + red: 33.1 + green: 60.2 + yellow: 76.5 + blue: 62.8 + magenta: 64.4 + cyan: 92.9 + white: 107 + brightBlack: 14.8 + brightRed: 47.2 + brightGreen: 66.4 + brightYellow: 76.5 + brightBlue: 38.9 + brightMagenta: 64.4 + brightCyan: 92.9 + brightWhite: 0 diff --git a/themes/hapsida-securisec--pastel.yaml b/themes/hapsida-securisec--pastel.yaml new file mode 100644 index 00000000..7a1461e4 --- /dev/null +++ b/themes/hapsida-securisec--pastel.yaml @@ -0,0 +1,53 @@ +name: "hapsida.securisec (Pastel)" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + rating: 5 + ratings: 1 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null +colors: + bg: "#16181E" + fg: "#E8E8E8" + black: "#000000" + red: "#ED858A" + green: "#85EDB3" + yellow: "#EDA685" + blue: "#85B8ED" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#FF628C" + brightGreen: "#3AD900" + brightYellow: "#EDA685" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: 271 + pair: null + contrast: + fg: 91.8 + black: 0 + red: 51.7 + green: 82.1 + yellow: 62.1 + blue: 60.5 + magenta: 64.2 + cyan: 92.6 + white: 106.8 + brightBlack: 14.5 + brightRed: 47 + brightGreen: 66.2 + brightYellow: 62.1 + brightBlue: 38.6 + brightMagenta: 64.2 + brightCyan: 92.6 + brightWhite: 0 diff --git a/themes/hapsida-securisec--spring.yaml b/themes/hapsida-securisec--spring.yaml new file mode 100644 index 00000000..cb74d682 --- /dev/null +++ b/themes/hapsida-securisec--spring.yaml @@ -0,0 +1,53 @@ +name: "hapsida.securisec (Spring)" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + rating: 5 + ratings: 1 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null +colors: + bg: "#030324" + fg: "#C7C8CA" + black: "#000000" + red: "#E5BAB2" + green: "#A9BDB3" + yellow: "#E6CA9C" + blue: "#ACBED0" + magenta: "#E0AC98" + cyan: "#ABADC7" + white: "#C7C8CA" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#C7C8CA" +meta: + mode: "dark" + accent: "orange" + hue: 272 + pair: null + contrast: + fg: 73 + black: 0 + red: 70.6 + green: 64 + yellow: 76.5 + blue: 66 + magenta: 63.6 + cyan: 58.6 + white: 73 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.1 + brightCyan: 56.2 + brightWhite: 73 diff --git a/themes/hapsida-securisec--vintage.yaml b/themes/hapsida-securisec--vintage.yaml new file mode 100644 index 00000000..5c23a8e1 --- /dev/null +++ b/themes/hapsida-securisec--vintage.yaml @@ -0,0 +1,53 @@ +name: "hapsida.securisec (vintage)" +source: + marketplace_id: "securisec.hapsida-securisec" + version: "0.0.30" + installs: 226 + rating: 5 + ratings: 1 + author: "securisec" + repo: "https://github.com/securisec/code-hapsida" + url: "https://marketplace.visualstudio.com/items?itemName=securisec.hapsida-securisec" + formats: null +colors: + bg: "#1C1C26" + fg: "#D5C6A7" + black: "#000000" + red: "#D19FA0" + green: "#79994D" + yellow: "#E2C08D" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#00ADB9" + white: "#FFF5F1" + brightBlack: "#666666" + brightRed: "#D19FA0" + brightGreen: "#79994D" + brightYellow: "#E2C08D" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#00ADB9" + brightWhite: "#D5C6A7" +meta: + mode: "dark" + accent: "pink" + hue: 285 + pair: null + contrast: + fg: 71.2 + black: 0 + red: 55.3 + green: 40.4 + yellow: 69.9 + blue: 26.7 + magenta: 29.1 + cyan: 47.9 + white: 100.8 + brightBlack: 21.3 + brightRed: 55.3 + brightGreen: 40.4 + brightYellow: 69.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 47.9 + brightWhite: 71.2 diff --git a/themes/hardhacker-theme--hard-hacker-darker.yaml b/themes/hardhacker-theme--hard-hacker-darker.yaml new file mode 100644 index 00000000..7fa13925 --- /dev/null +++ b/themes/hardhacker-theme--hard-hacker-darker.yaml @@ -0,0 +1,53 @@ +name: "HardHacker Theme (Hard Hacker Darker)" +source: + marketplace_id: "HardHacker.hard-hacker-theme" + version: "0.2.3" + installs: 12852 + rating: 5 + ratings: 7 + author: "Hard Hacker" + repo: "https://github.com/hardhackerlabs/theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" + formats: null +colors: + bg: "#211E2A" + fg: "#EEE9FC" + black: "#211E2A" + red: "#E965A5" + green: "#B1F2A7" + yellow: "#EBDE76" + blue: "#B1BAF4" + magenta: "#E192EF" + cyan: "#B3F4F3" + white: "#EEE9FC" + brightBlack: "#8B81A7" + brightRed: "#E965A5" + brightGreen: "#B1F2A7" + brightYellow: "#EBDE76" + brightBlue: "#B1BAF4" + brightMagenta: "#E192EF" + brightCyan: "#B3F4F3" + brightWhite: "#EEE9FC" +meta: + mode: "dark" + accent: "red" + hue: 296 + pair: null + contrast: + fg: 93.1 + black: 0 + red: 42.9 + green: 86.8 + yellow: 83.1 + blue: 64.9 + magenta: 57.1 + cyan: 91 + white: 93.1 + brightBlack: 35.8 + brightRed: 42.9 + brightGreen: 86.8 + brightYellow: 83.1 + brightBlue: 64.9 + brightMagenta: 57.1 + brightCyan: 91 + brightWhite: 93.1 diff --git a/themes/hardhacker-theme--hard-hacker-light.yaml b/themes/hardhacker-theme--hard-hacker-light.yaml new file mode 100644 index 00000000..886079df --- /dev/null +++ b/themes/hardhacker-theme--hard-hacker-light.yaml @@ -0,0 +1,53 @@ +name: "HardHacker Theme (Hard Hacker Light)" +source: + marketplace_id: "HardHacker.hard-hacker-theme" + version: "0.2.3" + installs: 12852 + rating: 5 + ratings: 7 + author: "Hard Hacker" + repo: "https://github.com/hardhackerlabs/theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" + formats: null +colors: + bg: "#FBFAFC" + fg: "#282433" + black: "#282433" + red: "#B33974" + green: "#3C8032" + yellow: "#A86200" + blue: "#5663B8" + magenta: "#832294" + cyan: "#23758C" + white: "#FBFAFC" + brightBlack: "#756F8C" + brightRed: "#B33974" + brightGreen: "#3C8032" + brightYellow: "#A86200" + brightBlue: "#5663B8" + brightMagenta: "#832294" + brightCyan: "#23758C" + brightWhite: "#FBFAFC" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 99.2 + black: 99.2 + red: 74.2 + green: 70.6 + yellow: 69.8 + blue: 74.1 + magenta: 83.8 + cyan: 73 + white: 0 + brightBlack: 70.3 + brightRed: 74.2 + brightGreen: 70.6 + brightYellow: 69.8 + brightBlue: 74.1 + brightMagenta: 83.8 + brightCyan: 73 + brightWhite: 0 diff --git a/themes/hardhacker-theme--hard-hacker.yaml b/themes/hardhacker-theme--hard-hacker.yaml new file mode 100644 index 00000000..0b873580 --- /dev/null +++ b/themes/hardhacker-theme--hard-hacker.yaml @@ -0,0 +1,53 @@ +name: "HardHacker Theme (Hard Hacker)" +source: + marketplace_id: "HardHacker.hard-hacker-theme" + version: "0.2.3" + installs: 12852 + rating: 5 + ratings: 7 + author: "Hard Hacker" + repo: "https://github.com/hardhackerlabs/theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=HardHacker.hard-hacker-theme" + formats: null +colors: + bg: "#282433" + fg: "#EEE9FC" + black: "#282433" + red: "#E965A5" + green: "#B1F2A7" + yellow: "#EBDE76" + blue: "#B1BAF4" + magenta: "#E192EF" + cyan: "#B3F4F3" + white: "#EEE9FC" + brightBlack: "#938AAD" + brightRed: "#E965A5" + brightGreen: "#B1F2A7" + brightYellow: "#EBDE76" + brightBlue: "#B1BAF4" + brightMagenta: "#E192EF" + brightCyan: "#B3F4F3" + brightWhite: "#EEE9FC" +meta: + mode: "dark" + accent: "red" + hue: 297 + pair: null + contrast: + fg: 92 + black: 0 + red: 41.9 + green: 85.8 + yellow: 82.1 + blue: 63.9 + magenta: 56 + cyan: 89.9 + white: 92 + brightBlack: 38.9 + brightRed: 41.9 + brightGreen: 85.8 + brightYellow: 82.1 + brightBlue: 63.9 + brightMagenta: 56 + brightCyan: 89.9 + brightWhite: 92 diff --git a/themes/hardxs.yaml b/themes/hardxs.yaml new file mode 100644 index 00000000..aa9c7214 --- /dev/null +++ b/themes/hardxs.yaml @@ -0,0 +1,53 @@ +name: "hardxs" +source: + marketplace_id: "hardxs.hardxs" + version: "0.0.1" + installs: 40 + rating: 0 + ratings: 0 + author: "hardxs" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=hardxs.hardxs" + formats: null +colors: + bg: "#060606" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FF1515" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 37.8 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/harmonized--harmonized-dark.yaml b/themes/harmonized--harmonized-dark.yaml new file mode 100644 index 00000000..edc54ba4 --- /dev/null +++ b/themes/harmonized--harmonized-dark.yaml @@ -0,0 +1,53 @@ +name: "Harmonized (Harmonized dark)" +source: + marketplace_id: "wheredoesyourmindgo.harmonized-vscode-theme" + version: "0.8.7" + installs: 824 + rating: 5 + ratings: 1 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/harmonized-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.harmonized-vscode-theme" + formats: null +colors: + bg: "#002B36" + fg: "#BBBBBB" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 220 + pair: null + contrast: + fg: 62.3 + black: 0 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 89.5 + brightBlack: 0 + brightRed: 27.2 + brightGreen: 21.5 + brightYellow: 27.3 + brightBlue: 39.5 + brightMagenta: 28 + brightCyan: 46.4 + brightWhite: 98.6 diff --git a/themes/harmonized--harmonized-light.yaml b/themes/harmonized--harmonized-light.yaml new file mode 100644 index 00000000..8113d0da --- /dev/null +++ b/themes/harmonized--harmonized-light.yaml @@ -0,0 +1,53 @@ +name: "Harmonized (Harmonized light)" +source: + marketplace_id: "wheredoesyourmindgo.harmonized-vscode-theme" + version: "0.8.7" + installs: 824 + rating: 5 + ratings: 1 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/harmonized-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.harmonized-vscode-theme" + formats: null +colors: + bg: "#FDF6E3" + fg: "#333333" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 93.4 + black: 93.7 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 0 + brightBlack: 96.4 + brightRed: 65.8 + brightGreen: 71.6 + brightYellow: 65.7 + brightBlue: 53.5 + brightMagenta: 65 + brightCyan: 46.7 + brightWhite: 0 diff --git a/themes/harmonized-harmonized-light-hc.yaml b/themes/harmonized-harmonized-light-hc.yaml new file mode 100644 index 00000000..257a3eb7 --- /dev/null +++ b/themes/harmonized-harmonized-light-hc.yaml @@ -0,0 +1,53 @@ +name: "Harmonized (Harmonized light (hc))" +source: + marketplace_id: "wheredoesyourmindgo.harmonized-vscode-theme" + version: "0.8.7" + installs: 824 + rating: 5 + ratings: 1 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/harmonized-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.harmonized-vscode-theme" + formats: null +colors: + bg: "#FDF9EE" + fg: "#333333" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.1 + black: 95.4 + red: 67 + green: 55.5 + yellow: 55.5 + blue: 60.4 + magenta: 66.7 + cyan: 54.8 + white: 7.6 + brightBlack: 98.1 + brightRed: 67.5 + brightGreen: 73.3 + brightYellow: 67.4 + brightBlue: 55.2 + brightMagenta: 66.7 + brightCyan: 48.5 + brightWhite: 0 diff --git a/themes/hashira-code-theme--giyu-tomioka.yaml b/themes/hashira-code-theme--giyu-tomioka.yaml new file mode 100644 index 00000000..3eec737c --- /dev/null +++ b/themes/hashira-code-theme--giyu-tomioka.yaml @@ -0,0 +1,53 @@ +name: "Hashira Code Theme (Giyu Tomioka)" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 740 + rating: 5 + ratings: 1 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" + formats: null +colors: + bg: "#131A26" + fg: "#ABB2BF" + black: "#212121" + red: "#FF5252" + green: "#8BC34A" + yellow: "#FFCA28" + blue: "#00BCD4" + magenta: "#AA00FF" + cyan: "#00E5FF" + white: "#E0E0E0" + brightBlack: "#616161" + brightRed: "#FF8A80" + brightGreen: "#C6FF00" + brightYellow: "#FFE082" + brightBlue: "#80D8FF" + brightMagenta: "#EA80FC" + brightCyan: "#84FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 261 + pair: null + contrast: + fg: 59.1 + black: 0 + red: 42.5 + green: 60 + yellow: 77.5 + blue: 56.2 + magenta: 28.1 + cyan: 77.7 + white: 86.6 + brightBlack: 19.6 + brightRed: 56.2 + brightGreen: 94.2 + brightYellow: 88 + brightBlue: 75 + brightMagenta: 55.1 + brightCyan: 94.2 + brightWhite: 106.6 diff --git a/themes/hashira-code-theme--gyomei-himejima.yaml b/themes/hashira-code-theme--gyomei-himejima.yaml new file mode 100644 index 00000000..de85f23e --- /dev/null +++ b/themes/hashira-code-theme--gyomei-himejima.yaml @@ -0,0 +1,53 @@ +name: "Hashira Code Theme (Gyomei Himejima)" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 740 + rating: 5 + ratings: 1 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" + formats: null +colors: + bg: "#222D28" + fg: "#D6D1C4" + black: "#1F2925" + red: "#E09B93" + green: "#B0C988" + yellow: "#F5C77C" + blue: "#A3D1C8" + magenta: "#C5B3D6" + cyan: "#A3D1C8" + white: "#D6D1C4" + brightBlack: "#888888" + brightRed: "#E6A29A" + brightGreen: "#B0C988" + brightYellow: "#F5D79E" + brightBlue: "#A3D1C8" + brightMagenta: "#C5B3D6" + brightCyan: "#A3D1C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: 166 + pair: null + contrast: + fg: 74.8 + black: 0 + red: 53.7 + green: 64.8 + yellow: 73 + blue: 69.2 + magenta: 61.1 + cyan: 69.2 + white: 74.8 + brightBlack: 34.7 + brightRed: 57.3 + brightGreen: 64.8 + brightYellow: 80.6 + brightBlue: 69.2 + brightMagenta: 61.1 + brightCyan: 69.2 + brightWhite: 103.9 diff --git a/themes/hashira-code-theme--kyojuro-rengoku.yaml b/themes/hashira-code-theme--kyojuro-rengoku.yaml new file mode 100644 index 00000000..61f454e0 --- /dev/null +++ b/themes/hashira-code-theme--kyojuro-rengoku.yaml @@ -0,0 +1,53 @@ +name: "Hashira Code Theme (Kyojuro Rengoku)" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 740 + rating: 5 + ratings: 1 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" + formats: null +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#282A36" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#8BE9FD" + magenta: "#BD93F9" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#8BE9FD" + brightMagenta: "#BD93F9" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: null + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 81 + magenta: 50.7 + cyan: 81 + white: 99 + brightBlack: 25.1 + brightRed: 40.4 + brightGreen: 81.9 + brightYellow: 95.6 + brightBlue: 81 + brightMagenta: 50.7 + brightCyan: 81 + brightWhite: 99 diff --git a/themes/hashira-code-theme--mitsuri-kanroji.yaml b/themes/hashira-code-theme--mitsuri-kanroji.yaml new file mode 100644 index 00000000..a7436629 --- /dev/null +++ b/themes/hashira-code-theme--mitsuri-kanroji.yaml @@ -0,0 +1,53 @@ +name: "Hashira Code Theme (Mitsuri Kanroji)" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 740 + rating: 5 + ratings: 1 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" + formats: null +colors: + bg: "#0F172A" + fg: "#D1D5DB" + black: "#0F172A" + red: "#EF4444" + green: "#A3E635" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#8B5CF6" + cyan: "#14B8A6" + white: "#E5E7EB" + brightBlack: "#6B7280" + brightRed: "#F472B6" + brightGreen: "#A7F3D0" + brightYellow: "#FCD34D" + brightBlue: "#60A5FA" + brightMagenta: "#D8B4FE" + brightCyan: "#6EE7B7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 266 + pair: null + contrast: + fg: 79.8 + black: 0 + red: 36.7 + green: 78.6 + yellow: 59.3 + blue: 36.7 + magenta: 31.8 + cyan: 52.6 + white: 91.1 + brightBlack: 27 + brightRed: 49.8 + brightGreen: 88.8 + brightYellow: 81.3 + brightBlue: 51.3 + brightMagenta: 69.2 + brightCyan: 78 + brightWhite: 106.8 diff --git a/themes/hashira-code-theme--obanai-iguro.yaml b/themes/hashira-code-theme--obanai-iguro.yaml new file mode 100644 index 00000000..c399e3fa --- /dev/null +++ b/themes/hashira-code-theme--obanai-iguro.yaml @@ -0,0 +1,53 @@ +name: "Hashira Code Theme (Obanai Iguro)" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 740 + rating: 5 + ratings: 1 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" + formats: null +colors: + bg: "#1F2430" + fg: "#DADBC0" + black: "#191E2A" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#CFBAFA" + cyan: "#98C379" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#61AFEF" + brightMagenta: "#D4BFFF" + brightCyan: "#BAE67E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 267 + pair: null + contrast: + fg: 80.8 + black: 0 + red: 40.3 + green: 60.5 + yellow: 68.8 + blue: 52.9 + magenta: 68.3 + cyan: 60.5 + white: 69.9 + brightBlack: 21.1 + brightRed: 51.1 + brightGreen: 80.2 + brightYellow: 81.8 + brightBlue: 52.9 + brightMagenta: 71.2 + brightCyan: 80.2 + brightWhite: 105.1 diff --git a/themes/hashira-code-theme--sanemi-shinazugawa.yaml b/themes/hashira-code-theme--sanemi-shinazugawa.yaml new file mode 100644 index 00000000..bf22b2da --- /dev/null +++ b/themes/hashira-code-theme--sanemi-shinazugawa.yaml @@ -0,0 +1,53 @@ +name: "Hashira Code Theme (Sanemi Shinazugawa)" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 740 + rating: 5 + ratings: 1 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD5C5C" + green: "#006400" + yellow: "#B8860B" + blue: "#4682B4" + magenta: "#8B008B" + cyan: "#008B8B" + white: "#D3D3D3" + brightBlack: "#696969" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 66.5 + green: 85.1 + yellow: 59.6 + blue: 68 + magenta: 87 + cyan: 67.9 + white: 23.3 + brightBlack: 77.4 + brightRed: 64.1 + brightGreen: 17.1 + brightYellow: 0 + brightBlue: 85.8 + brightMagenta: 55.6 + brightCyan: 11.8 + brightWhite: 0 diff --git a/themes/hashira-code-theme--shinobu-kocho.yaml b/themes/hashira-code-theme--shinobu-kocho.yaml new file mode 100644 index 00000000..700ea63b --- /dev/null +++ b/themes/hashira-code-theme--shinobu-kocho.yaml @@ -0,0 +1,53 @@ +name: "Hashira Code Theme (Shinobu Kocho)" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 740 + rating: 5 + ratings: 1 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" + formats: null +colors: + bg: "#1F2430" + fg: "#DADBC0" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#95E6CB" + magenta: "#CFBAFA" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#95E6CB" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + pair: null + contrast: + fg: 80.8 + black: 0 + red: 48.6 + green: 65.7 + yellow: 78.7 + blue: 79.1 + magenta: 68.3 + cyan: 79.1 + white: 69.9 + brightBlack: 21.1 + brightRed: 51.1 + brightGreen: 80.2 + brightYellow: 81.8 + brightBlue: 79.1 + brightMagenta: 71.2 + brightCyan: 79.1 + brightWhite: 105.1 diff --git a/themes/hashira-code-theme--tokito-inspired.yaml b/themes/hashira-code-theme--tokito-inspired.yaml new file mode 100644 index 00000000..c95e0586 --- /dev/null +++ b/themes/hashira-code-theme--tokito-inspired.yaml @@ -0,0 +1,53 @@ +name: "Hashira Code Theme (Tokito Inspired)" +source: + marketplace_id: "devLocifer.hashira-code-theme" + version: "0.0.1" + installs: 740 + rating: 5 + ratings: 1 + author: "devLocifer" + repo: "https://github.com/diazdjul19/hashira-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devLocifer.hashira-code-theme" + formats: null +colors: + bg: "#141921" + fg: "#D1D5DB" + black: "#141921" + red: "#F472B6" + green: "#86EFAC" + yellow: "#FDE047" + blue: "#7DD3FC" + magenta: "#D8B4FE" + cyan: "#7DD3FC" + white: "#E5E7EB" + brightBlack: "#71717A" + brightRed: "#F472B6" + brightGreen: "#86EFAC" + brightYellow: "#FDE047" + brightBlue: "#7DD3FC" + brightMagenta: "#D8B4FE" + brightCyan: "#7DD3FC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 260 + pair: null + contrast: + fg: 79.7 + black: 0 + red: 49.7 + green: 82.9 + yellow: 87 + blue: 72.5 + magenta: 69.1 + cyan: 72.5 + white: 91 + brightBlack: 26.9 + brightRed: 49.7 + brightGreen: 82.9 + brightYellow: 87 + brightBlue: 72.5 + brightMagenta: 69.1 + brightCyan: 72.5 + brightWhite: 106.7 diff --git a/themes/headfox-dark.yaml b/themes/headfox-dark.yaml new file mode 100644 index 00000000..21543948 --- /dev/null +++ b/themes/headfox-dark.yaml @@ -0,0 +1,53 @@ +name: "HeadFox Dark" +source: + marketplace_id: "Meuid3.headfox-theme" + version: "1.0.1" + installs: 281 + rating: 0 + ratings: 0 + author: "meuid3" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Meuid3.headfox-theme" + formats: null +colors: + bg: "#303845" + fg: "#B4BDCD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 59.4 + black: 0 + red: 20.6 + green: 46.8 + yellow: 79.5 + blue: 21.3 + magenta: 23.6 + cyan: 41.4 + white: 83.9 + brightBlack: 15.9 + brightRed: 32.4 + brightGreen: 57.4 + brightYellow: 89.5 + brightBlue: 33.8 + brightMagenta: 39.2 + brightCyan: 49.2 + brightWhite: 83.9 diff --git a/themes/hearthcode--hearth-dark-soft.yaml b/themes/hearthcode--hearth-dark-soft.yaml new file mode 100644 index 00000000..5a2747f7 --- /dev/null +++ b/themes/hearthcode--hearth-dark-soft.yaml @@ -0,0 +1,53 @@ +name: "HearthCode (Hearth Dark Soft)" +source: + marketplace_id: "hearth-code.hearth-theme" + version: "1.0.5" + installs: 10 + rating: 0 + ratings: 0 + author: "HearthCode" + repo: "https://github.com/TypeFusion/HearthTheme" + url: "https://marketplace.visualstudio.com/items?itemName=hearth-code.hearth-theme" + formats: null +colors: + bg: "#2A2723" + fg: "#D7CDBC" + black: "#373127" + red: "#C76F58" + green: "#8DB076" + yellow: "#BB9B4D" + blue: "#7792A8" + magenta: "#B29275" + cyan: "#80AEA7" + white: "#D7CDBC" + brightBlack: "#72685A" + brightRed: "#D57F68" + brightGreen: "#9BBD8C" + brightYellow: "#CAAE64" + brightBlue: "#8AAAC2" + brightMagenta: "#C2A488" + brightCyan: "#8FBCB5" + brightWhite: "#E7DDCB" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.6 + black: 0 + red: 35.1 + green: 50.7 + yellow: 47 + blue: 38.6 + magenta: 43.3 + cyan: 50.3 + white: 73.6 + brightBlack: 21.1 + brightRed: 42.4 + brightGreen: 58.1 + brightYellow: 56.6 + brightBlue: 50.7 + brightMagenta: 52.5 + brightCyan: 58 + brightWhite: 83.3 diff --git a/themes/hearthcode--hearth-dark.yaml b/themes/hearthcode--hearth-dark.yaml new file mode 100644 index 00000000..43eba5a5 --- /dev/null +++ b/themes/hearthcode--hearth-dark.yaml @@ -0,0 +1,53 @@ +name: "HearthCode (Hearth Dark)" +source: + marketplace_id: "hearth-code.hearth-theme" + version: "1.0.5" + installs: 10 + rating: 0 + ratings: 0 + author: "HearthCode" + repo: "https://github.com/TypeFusion/HearthTheme" + url: "https://marketplace.visualstudio.com/items?itemName=hearth-code.hearth-theme" + formats: null +colors: + bg: "#23201C" + fg: "#D3C9B8" + black: "#2F2921" + red: "#C66A52" + green: "#87AB70" + yellow: "#B89543" + blue: "#6F8CA4" + magenta: "#B38B6A" + cyan: "#79A8A2" + white: "#D3C9B8" + brightBlack: "#655C4F" + brightRed: "#D37962" + brightGreen: "#96B986" + brightYellow: "#C7A95B" + brightBlue: "#86A4BC" + brightMagenta: "#C5A080" + brightCyan: "#8CB9B3" + brightWhite: "#E8DDCA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 72.3 + black: 0 + red: 34.7 + green: 49.1 + yellow: 45.4 + blue: 36.7 + magenta: 41.9 + cyan: 48.2 + white: 72.3 + brightBlack: 17.2 + brightRed: 41.4 + brightGreen: 56.9 + brightYellow: 55.3 + brightBlue: 48.8 + brightMagenta: 52.4 + brightCyan: 57.5 + brightWhite: 84.5 diff --git a/themes/hearthcode--hearth-light.yaml b/themes/hearthcode--hearth-light.yaml new file mode 100644 index 00000000..8e46a716 --- /dev/null +++ b/themes/hearthcode--hearth-light.yaml @@ -0,0 +1,53 @@ +name: "HearthCode (Hearth Light)" +source: + marketplace_id: "hearth-code.hearth-theme" + version: "1.0.5" + installs: 10 + rating: 0 + ratings: 0 + author: "HearthCode" + repo: "https://github.com/TypeFusion/HearthTheme" + url: "https://marketplace.visualstudio.com/items?itemName=hearth-code.hearth-theme" + formats: null +colors: + bg: "#EFE6D8" + fg: "#2F210E" + black: "#3A3020" + red: "#AD3518" + green: "#2E6A2C" + yellow: "#7F6531" + blue: "#2A5070" + magenta: "#784418" + cyan: "#2A6050" + white: "#624A2C" + brightBlack: "#7F6D53" + brightRed: "#BE4A2A" + brightGreen: "#3B7F38" + brightYellow: "#927A3E" + brightBlue: "#3A6080" + brightMagenta: "#885428" + brightCyan: "#3A7060" + brightWhite: "#2F210E" +meta: + mode: "light" + accent: "orange" + hue: 79 + pair: null + contrast: + fg: 88.3 + black: 84.9 + red: 66.3 + green: 67.9 + yellow: 63.3 + blue: 74.8 + magenta: 73.1 + cyan: 70.9 + white: 74.4 + brightBlack: 60.3 + brightRed: 59.5 + brightGreen: 59.6 + brightYellow: 54.2 + brightBlue: 68.5 + brightMagenta: 66.8 + brightCyan: 64.3 + brightWhite: 88.3 diff --git a/themes/heaven.yaml b/themes/heaven.yaml new file mode 100644 index 00000000..8212bf2e --- /dev/null +++ b/themes/heaven.yaml @@ -0,0 +1,53 @@ +name: "Heaven" +source: + marketplace_id: "heaven-c.heaven" + version: "0.2.0" + installs: 30 + rating: 0 + ratings: 0 + author: "heaven-c" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=heaven-c.heaven" + formats: null +colors: + bg: "#0F0F0F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#B65959" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 29.8 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/helix-bogster-theme.yaml b/themes/helix-bogster-theme.yaml new file mode 100644 index 00000000..fbdc52ca --- /dev/null +++ b/themes/helix-bogster-theme.yaml @@ -0,0 +1,53 @@ +name: "Helix Bogster Theme" +source: + marketplace_id: "boosted.helix-bogster-theme" + version: "1.0.4" + installs: 103 + rating: 0 + ratings: 0 + author: "Boosted" + repo: "https://github.com/pyboosted/vscode-hx-bogster" + url: "https://marketplace.visualstudio.com/items?itemName=boosted.helix-bogster-theme" + formats: null +colors: + bg: "#141C24" + fg: "#E5DED6" + black: "#13181E" + red: "#D32C5D" + green: "#7FDC59" + yellow: "#DCB659" + blue: "#36B2D4" + magenta: "#B759DC" + cyan: "#00DFB5" + white: "#E5DED6" + brightBlack: "#415367" + brightRed: "#DC597F" + brightGreen: "#7FDC59" + brightYellow: "#DCB659" + brightBlue: "#59DCD8" + brightMagenta: "#B759DC" + brightCyan: "#59DCD8" + brightWhite: "#E5DED6" +meta: + mode: "dark" + accent: "pink" + hue: 249 + pair: null + contrast: + fg: 85.7 + black: 0 + red: 27.8 + green: 70.9 + yellow: 64.1 + blue: 52.2 + magenta: 34.9 + cyan: 71.1 + white: 85.7 + brightBlack: 13.2 + brightRed: 37 + brightGreen: 70.9 + brightYellow: 64.1 + brightBlue: 72.6 + brightMagenta: 34.9 + brightCyan: 72.6 + brightWhite: 85.7 diff --git a/themes/helloworld-theme.yaml b/themes/helloworld-theme.yaml new file mode 100644 index 00000000..88dcfc78 --- /dev/null +++ b/themes/helloworld-theme.yaml @@ -0,0 +1,53 @@ +name: "HelloWorld Theme" +source: + marketplace_id: "HelloWorld01.HelloWorld-Theme" + version: "1.0.0" + installs: 29 + rating: 0 + ratings: 0 + author: "HelloWorld!" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HelloWorld01.HelloWorld-Theme" + formats: null +colors: + bg: "#0F0F0F" + fg: "#0CB686" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFFF00" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#E8E876" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 51.3 + black: 0 + red: 27.3 + green: 53.6 + yellow: 102.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 89 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/henriquedark.yaml b/themes/henriquedark.yaml new file mode 100644 index 00000000..5e6cbcb5 --- /dev/null +++ b/themes/henriquedark.yaml @@ -0,0 +1,53 @@ +name: "henriquedark" +source: + marketplace_id: "HenriqueDark.henriquedark" + version: "0.0.1" + installs: 100 + rating: 0 + ratings: 0 + author: "HenriqueDark" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HenriqueDark.henriquedark" + formats: null +colors: + bg: "#1E1E1E" + fg: "#CDCDCD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 74.4 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/hibiscus-theme.yaml b/themes/hibiscus-theme.yaml new file mode 100644 index 00000000..bf5b3e24 --- /dev/null +++ b/themes/hibiscus-theme.yaml @@ -0,0 +1,53 @@ +name: "Hibiscus Theme" +source: + marketplace_id: "colinlienard.hibiscus-theme" + version: "0.3.1" + installs: 1246 + rating: 5 + ratings: 3 + author: "Colin Lienard" + repo: "https://github.com/colinlienard/hibiscus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=colinlienard.hibiscus-theme" + formats: null +colors: + bg: "#1F1F1F" + fg: "#9FABB1" + black: "#181818" + red: "#993D3D" + green: "#1E7C4D" + yellow: "#AC8747" + blue: "#2E6E9C" + magenta: "#7260AA" + cyan: "#2B9088" + white: "#D6DFE4" + brightBlack: "#232424" + brightRed: "#C16565" + brightGreen: "#46A475" + brightYellow: "#D4AF6F" + brightBlue: "#5696C4" + brightMagenta: "#9A88D2" + brightCyan: "#53B8B0" + brightWhite: "#D6DFE4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 53.7 + black: 0 + red: 17.1 + green: 24.4 + yellow: 39.1 + blue: 22.6 + magenta: 23.6 + cyan: 34 + white: 84.3 + brightBlack: 0 + brightRed: 33.2 + brightGreen: 42.4 + brightYellow: 60 + brightBlue: 40.7 + brightMagenta: 42.2 + brightCyan: 53.5 + brightWhite: 84.3 diff --git a/themes/higher-contrast-zenburn--hc-zenburn.yaml b/themes/higher-contrast-zenburn--hc-zenburn.yaml new file mode 100644 index 00000000..82d19fe6 --- /dev/null +++ b/themes/higher-contrast-zenburn--hc-zenburn.yaml @@ -0,0 +1,53 @@ +name: "Higher Contrast Zenburn (hc-zenburn)" +source: + marketplace_id: "drzix.hc-zenburn-vscode" + version: "0.3.0" + installs: 7773 + rating: 5 + ratings: 1 + author: "Kyeongmin Cho" + repo: "https://github.com/drzix/hc-zenburn-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=drzix.hc-zenburn-vscode" + formats: null +colors: + bg: "#313131" + fg: "#DCDCCC" + black: "#4E4E4E" + red: "#D9A0A0" + green: "#6C8C6C" + yellow: "#EDDCAC" + blue: "#BEADC9" + magenta: "#B986A9" + cyan: "#94CACC" + white: "#DCDCCC" + brightBlack: "#5E5E5E" + brightRed: "#E66666" + brightGreen: "#8CAC8C" + brightYellow: "#FDECBC" + brightBlue: "#DAC0E9" + brightMagenta: "#E090C7" + brightCyan: "#A0EDF0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.4 + black: 8.1 + red: 53.3 + green: 31.3 + yellow: 80.6 + blue: 55.8 + magenta: 40.1 + cyan: 63.5 + white: 79.4 + brightBlack: 14.3 + brightRed: 37.2 + brightGreen: 47.5 + brightYellow: 90.6 + brightBlue: 68.6 + brightMagenta: 50.8 + brightCyan: 82.5 + brightWhite: 102.5 diff --git a/themes/higher-contrast-zenburn.yaml b/themes/higher-contrast-zenburn.yaml new file mode 100644 index 00000000..1db2e7aa --- /dev/null +++ b/themes/higher-contrast-zenburn.yaml @@ -0,0 +1,53 @@ +name: "Higher Contrast Zenburn" +source: + marketplace_id: "drzix.hc-zenburn-vscode" + version: "0.3.0" + installs: 7773 + rating: 5 + ratings: 1 + author: "Kyeongmin Cho" + repo: "https://github.com/drzix/hc-zenburn-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=drzix.hc-zenburn-vscode" + formats: null +colors: + bg: "#313131" + fg: "#DCDCCC" + black: "#4E4E4E" + red: "#D9A0A0" + green: "#6C8C6C" + yellow: "#EDDCAC" + blue: "#C5BBCC" + magenta: "#B986A9" + cyan: "#94CACC" + white: "#DCDCCC" + brightBlack: "#5E5E5E" + brightRed: "#E66666" + brightGreen: "#8CAC8C" + brightYellow: "#FDECBC" + brightBlue: "#DAC0E9" + brightMagenta: "#E090C7" + brightCyan: "#A0EDF0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.4 + black: 8.1 + red: 53.3 + green: 31.3 + yellow: 80.6 + blue: 62.4 + magenta: 40.1 + cyan: 63.5 + white: 79.4 + brightBlack: 14.3 + brightRed: 37.2 + brightGreen: 47.5 + brightYellow: 90.6 + brightBlue: 68.6 + brightMagenta: 50.8 + brightCyan: 82.5 + brightWhite: 102.5 diff --git a/themes/hjqtheme.yaml b/themes/hjqtheme.yaml new file mode 100644 index 00000000..24fa1ec7 --- /dev/null +++ b/themes/hjqtheme.yaml @@ -0,0 +1,53 @@ +name: "hjqTheme" +source: + marketplace_id: "hjqInAmood-fiber.hjqTheme" + version: "0.1.5" + installs: 118 + rating: 5 + ratings: 1 + author: "hjqInAmood" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=hjqInAmood-fiber.hjqTheme" + formats: null +colors: + bg: "#282828" + fg: "#FFCC44" + black: "#333333" + red: "#C4265E" + green: "#FAA70C" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#F0B940" + brightBlack: "#666666" + brightRed: "#00CC99" + brightGreen: "#EE629F" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#F0B940" + brightWhite: "#F0B940" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 76.4 + black: 0 + red: 22.2 + green: 61 + yellow: 55.2 + blue: 32.2 + magenta: 29.8 + cyan: 48 + white: 66.2 + brightBlack: 19.6 + brightRed: 58.9 + brightGreen: 41.7 + brightYellow: 81.5 + brightBlue: 47.4 + brightMagenta: 44.1 + brightCyan: 66.2 + brightWhite: 66.2 diff --git a/themes/hogwarts.yaml b/themes/hogwarts.yaml new file mode 100644 index 00000000..983d9bf5 --- /dev/null +++ b/themes/hogwarts.yaml @@ -0,0 +1,53 @@ +name: "Hogwarts" +source: + marketplace_id: "redi-cool-themes.hogwarts" + version: "0.0.1" + installs: 141 + rating: 0 + ratings: 0 + author: "redicurri" + repo: "https://github.com/RediThemes/Hogwarts" + url: "https://marketplace.visualstudio.com/items?itemName=redi-cool-themes.hogwarts" + formats: null +colors: + bg: "#282828" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#131313" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 104.4 + black: 0 + red: 24.3 + green: 50.6 + yellow: 83.2 + blue: 25 + magenta: 27.3 + cyan: 45.1 + white: 87.6 + brightBlack: 0 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.6 + brightMagenta: 42.9 + brightCyan: 53 + brightWhite: 87.6 diff --git a/themes/homecooked.yaml b/themes/homecooked.yaml new file mode 100644 index 00000000..f0a1d26f --- /dev/null +++ b/themes/homecooked.yaml @@ -0,0 +1,53 @@ +name: "homecooked" +source: + marketplace_id: "MohammedAmaan.homecooked" + version: "2.0.1" + installs: 224 + rating: 5 + ratings: 1 + author: "Mohammed Amaan" + repo: "https://github.com/amaanmohd047/homecooked-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MohammedAmaan.homecooked" + formats: null +colors: + bg: "#0A0B13" + fg: "#C8D3F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 279 + pair: null + contrast: + fg: 80 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/horizon-extended-theme--horizon-extended.yaml b/themes/horizon-extended-theme--horizon-extended.yaml new file mode 100644 index 00000000..51aeafca --- /dev/null +++ b/themes/horizon-extended-theme--horizon-extended.yaml @@ -0,0 +1,53 @@ +name: "Horizon Extended Theme (Horizon Extended)" +source: + marketplace_id: "LanceWilhelm.horizon-extended" + version: "1.1.1" + installs: 25398 + rating: 4.8 + ratings: 10 + author: "Lance Wilhelm" + repo: "https://github.com/lancewilhelm/horizon-extended" + url: "https://marketplace.visualstudio.com/items?itemName=LanceWilhelm.horizon-extended" + formats: null +colors: + bg: "#1C1E26" + fg: "#D5D8DA" + black: "#565C75" + red: "#D68492" + green: "#9EC08A" + yellow: "#E0CAA3" + blue: "#389EA8" + magenta: "#B08EC2" + cyan: "#E9C4A9" + white: "#E39D90" + brightBlack: "#414557" + brightRed: "#F6637C" + brightGreen: "#99D279" + brightYellow: "#F8D28A" + brightBlue: "#21B1BE" + brightMagenta: "#B774DC" + brightCyan: "#F9C199" + brightWhite: "#F88E7C" +meta: + mode: "dark" + accent: "red" + hue: 274 + pair: null + contrast: + fg: 80.8 + black: 17.4 + red: 46.7 + green: 61.1 + yellow: 74.1 + blue: 41.3 + magenta: 46.1 + cyan: 73.2 + white: 56.8 + brightBlack: 8.6 + brightRed: 44 + brightGreen: 68.3 + brightYellow: 80.5 + brightBlue: 49.9 + brightMagenta: 40.8 + brightCyan: 74.1 + brightWhite: 55.3 diff --git a/themes/horror-vscode-extension.yaml b/themes/horror-vscode-extension.yaml new file mode 100644 index 00000000..344c62e3 --- /dev/null +++ b/themes/horror-vscode-extension.yaml @@ -0,0 +1,53 @@ +name: "Horror VSCode Extension" +source: + marketplace_id: "seonwookim.horror-vscode-extension" + version: "0.0.2" + installs: 105 + rating: 0 + ratings: 0 + author: "seonwoo kim" + repo: "https://github.com/seonwookim/horror-vscode-extension" + url: "https://marketplace.visualstudio.com/items?itemName=seonwookim.horror-vscode-extension" + formats: null +colors: + bg: "#0A0A0A" + fg: "#E0E0E0" + black: "#0A0A0A" + red: "#FF4444" + green: "#44FF44" + yellow: "#FF8C00" + blue: "#4444FF" + magenta: "#FF44FF" + cyan: "#44FFFF" + white: "#E0E0E0" + brightBlack: "#0A0A0A" + brightRed: "#FF4444" + brightGreen: "#44FF44" + brightYellow: "#FF8C00" + brightBlue: "#4444FF" + brightMagenta: "#FF44FF" + brightCyan: "#44FFFF" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 87.7 + black: 0 + red: 41.5 + green: 87.3 + yellow: 56.5 + blue: 22.9 + magenta: 49.4 + cyan: 92.7 + white: 87.7 + brightBlack: 0 + brightRed: 41.5 + brightGreen: 87.3 + brightYellow: 56.5 + brightBlue: 22.9 + brightMagenta: 49.4 + brightCyan: 92.7 + brightWhite: 87.7 diff --git a/themes/horus--untitled.yaml b/themes/horus--untitled.yaml new file mode 100644 index 00000000..5248eece --- /dev/null +++ b/themes/horus--untitled.yaml @@ -0,0 +1,53 @@ +name: "Horus (Untitled)" +source: + marketplace_id: "OnlyF0uR.horus" + version: "1.1.0" + installs: 148 + rating: 0 + ratings: 0 + author: "OnlyF0uR" + repo: "https://github.com/OnlyF0uR/horus" + url: "https://marketplace.visualstudio.com/items?itemName=OnlyF0uR.horus" + formats: null +colors: + bg: "#1E1E1E" + fg: "#BCB9B9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 63.1 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/huacat-pink-theme--huacat-pink-dark.yaml b/themes/huacat-pink-theme--huacat-pink-dark.yaml new file mode 100644 index 00000000..7066c9ff --- /dev/null +++ b/themes/huacat-pink-theme--huacat-pink-dark.yaml @@ -0,0 +1,53 @@ +name: "Huacat Pink Theme (Huacat Pink Dark)" +source: + marketplace_id: "huacat.pink-theme" + version: "1.1.2" + installs: 71555 + rating: 5 + ratings: 12 + author: "huacat" + repo: "https://github.com/huacat1017/huacat.pink-theme" + url: "https://marketplace.visualstudio.com/items?itemName=huacat.pink-theme" + formats: null +colors: + bg: "#3D173D" + fg: "#D1B9C8" + black: "#3D173D" + red: "#D14040" + green: "#489427" + yellow: "#C4990D" + blue: "#5782DF" + magenta: "#9045D6" + cyan: "#3CA89A" + white: "#D1B9C8" + brightBlack: "#978C94" + brightRed: "#EE7A7A" + brightGreen: "#72C45B" + brightYellow: "#D7B853" + brightBlue: "#7E97F9" + brightMagenta: "#BB80F1" + brightCyan: "#7ABECC" + brightWhite: "#DEC7D5" +meta: + mode: "dark" + accent: "magenta" + hue: 327 + pair: null + contrast: + fg: 65 + black: 0 + red: 27.2 + green: 33.2 + yellow: 47.1 + blue: 33.9 + magenta: 23.1 + cyan: 43.5 + white: 65 + brightBlack: 38.7 + brightRed: 46.1 + brightGreen: 56.8 + brightYellow: 62.2 + brightBlue: 45.7 + brightMagenta: 44.6 + brightCyan: 58.2 + brightWhite: 73 diff --git a/themes/huacat-pink-theme--pink-theme.yaml b/themes/huacat-pink-theme--pink-theme.yaml new file mode 100644 index 00000000..55c51493 --- /dev/null +++ b/themes/huacat-pink-theme--pink-theme.yaml @@ -0,0 +1,53 @@ +name: "Huacat Pink Theme (Pink Theme)" +source: + marketplace_id: "huacat.pink-theme" + version: "1.1.2" + installs: 71555 + rating: 5 + ratings: 12 + author: "huacat" + repo: "https://github.com/huacat1017/huacat.pink-theme" + url: "https://marketplace.visualstudio.com/items?itemName=huacat.pink-theme" + formats: null +colors: + bg: "#F5EAF5" + fg: "#72696F" + black: "#38313B" + red: "#D14040" + green: "#3D8B1C" + yellow: "#C4990D" + blue: "#5782DF" + magenta: "#9045D6" + cyan: "#3CA89A" + white: "#72696F" + brightBlack: "#6B5D72" + brightRed: "#DB6363" + brightGreen: "#62AD44" + brightYellow: "#E2B213" + brightBlue: "#88A4E2" + brightMagenta: "#A770DB" + brightCyan: "#6AC0B9" + brightWhite: "#978C94" +meta: + mode: "light" + accent: "magenta" + hue: 326 + pair: null + contrast: + fg: 65.8 + black: 88 + red: 60.6 + green: 58.7 + yellow: 40.9 + blue: 53.9 + magenta: 64.7 + cyan: 44.4 + white: 65.8 + brightBlack: 70 + brightRed: 51.5 + brightGreen: 42.7 + brightYellow: 27.4 + brightBlue: 38.2 + brightMagenta: 51.9 + brightCyan: 31.1 + brightWhite: 49.1 diff --git a/themes/human-theme--human-dark.yaml b/themes/human-theme--human-dark.yaml new file mode 100644 index 00000000..acef9247 --- /dev/null +++ b/themes/human-theme--human-dark.yaml @@ -0,0 +1,53 @@ +name: "Human Theme (Human Dark)" +source: + marketplace_id: "TomHall.human-theme" + version: "1.1.1" + installs: 99 + rating: 0 + ratings: 0 + author: "Tom Hall" + repo: "https://github.com/tom-f-hall/human-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" + formats: null +colors: + bg: "#101713" + fg: "#D9D3C7" + black: "#0D120F" + red: "#E84040" + green: "#9AD1A3" + yellow: "#C9A24D" + blue: "#8FBFA3" + magenta: "#D97A7A" + cyan: "#9FB8A5" + white: "#CFC8BA" + brightBlack: "#3E4A42" + brightRed: "#E8A09A" + brightGreen: "#A3D977" + brightYellow: "#E8B86F" + brightBlue: "#B0C8B8" + brightMagenta: "#E8A09A" + brightCyan: "#B0C8B8" + brightWhite: "#D9D3C7" +meta: + mode: "dark" + accent: "orange" + hue: 160 + pair: null + contrast: + fg: 79.3 + black: 0 + red: 34.8 + green: 70.1 + yellow: 54 + blue: 61.1 + magenta: 44.6 + cyan: 59.7 + white: 72.8 + brightBlack: 10.1 + brightRed: 60.1 + brightGreen: 73.4 + brightYellow: 67.8 + brightBlue: 69 + brightMagenta: 60.1 + brightCyan: 69 + brightWhite: 79.3 diff --git a/themes/human-theme--human-high-contrast.yaml b/themes/human-theme--human-high-contrast.yaml new file mode 100644 index 00000000..29ec69a2 --- /dev/null +++ b/themes/human-theme--human-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Human Theme (Human High Contrast)" +source: + marketplace_id: "TomHall.human-theme" + version: "1.1.1" + installs: 99 + rating: 0 + ratings: 0 + author: "Tom Hall" + repo: "https://github.com/tom-f-hall/human-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00EE00" + yellow: "#FFCC00" + blue: "#00DDFF" + magenta: "#EE0000" + cyan: "#00CCEE" + white: "#CCCCCC" + brightBlack: "#666666" + brightRed: "#FF4444" + brightGreen: "#00FF00" + brightYellow: "#FFCC00" + brightBlue: "#00BBDD" + brightMagenta: "#FF4444" + brightCyan: "#00BBDD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 37.5 + green: 77.5 + yellow: 79.6 + blue: 75.2 + magenta: 33.3 + cyan: 66.2 + white: 75.7 + brightBlack: 23 + brightRed: 41.6 + brightGreen: 86.5 + brightYellow: 79.6 + brightBlue: 57.6 + brightMagenta: 41.6 + brightCyan: 57.6 + brightWhite: 107.9 diff --git a/themes/human-theme--human-light.yaml b/themes/human-theme--human-light.yaml new file mode 100644 index 00000000..cc89a60f --- /dev/null +++ b/themes/human-theme--human-light.yaml @@ -0,0 +1,53 @@ +name: "Human Theme (Human Light)" +source: + marketplace_id: "TomHall.human-theme" + version: "1.1.1" + installs: 99 + rating: 0 + ratings: 0 + author: "Tom Hall" + repo: "https://github.com/tom-f-hall/human-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" + formats: null +colors: + bg: "#EDF3EB" + fg: "#2D2520" + black: "#E0E8DD" + red: "#8A3A2A" + green: "#2E6B2F" + yellow: "#7A5B1F" + blue: "#1A5F6F" + magenta: "#8A4040" + cyan: "#256B7A" + white: "#6B5F52" + brightBlack: "#A89A90" + brightRed: "#A84545" + brightGreen: "#2E6B25" + brightYellow: "#7A5B1F" + brightBlue: "#2D6B7F" + brightMagenta: "#A84545" + brightCyan: "#2D6B7F" + brightWhite: "#2D2520" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 93.7 + black: 0 + red: 78 + green: 73.5 + yellow: 72.9 + blue: 76.5 + magenta: 76.6 + cyan: 71.8 + white: 72.7 + brightBlack: 44.6 + brightRed: 70.3 + brightGreen: 73.6 + brightYellow: 72.9 + brightBlue: 71.4 + brightMagenta: 70.3 + brightCyan: 71.4 + brightWhite: 93.7 diff --git a/themes/human-theme--human-low-light.yaml b/themes/human-theme--human-low-light.yaml new file mode 100644 index 00000000..977a279d --- /dev/null +++ b/themes/human-theme--human-low-light.yaml @@ -0,0 +1,53 @@ +name: "Human Theme (Human Low Light)" +source: + marketplace_id: "TomHall.human-theme" + version: "1.1.1" + installs: 99 + rating: 0 + ratings: 0 + author: "Tom Hall" + repo: "https://github.com/tom-f-hall/human-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" + formats: null +colors: + bg: "#141210" + fg: "#D9CFC4" + black: "#0F0D0B" + red: "#E85050" + green: "#A8C98A" + yellow: "#D9A84D" + blue: "#9FBF9A" + magenta: "#E98A8A" + cyan: "#A8B89F" + white: "#C9BFB4" + brightBlack: "#4A4A42" + brightRed: "#E8B0AA" + brightGreen: "#B8C97A" + brightYellow: "#E8C87F" + brightBlue: "#B8C8B0" + brightMagenta: "#E8B0AA" + brightCyan: "#B8C8B0" + brightWhite: "#D9CFC4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 77.7 + black: 0 + red: 37.6 + green: 67.3 + yellow: 59 + blue: 62.5 + magenta: 52.9 + cyan: 60.7 + white: 68.3 + brightBlack: 11.2 + brightRed: 66.6 + brightGreen: 68.7 + brightYellow: 74.8 + brightBlue: 69.8 + brightMagenta: 66.6 + brightCyan: 69.8 + brightWhite: 77.7 diff --git a/themes/human-theme--human-soft.yaml b/themes/human-theme--human-soft.yaml new file mode 100644 index 00000000..edb3b12e --- /dev/null +++ b/themes/human-theme--human-soft.yaml @@ -0,0 +1,53 @@ +name: "Human Theme (Human Soft)" +source: + marketplace_id: "TomHall.human-theme" + version: "1.1.1" + installs: 99 + rating: 0 + ratings: 0 + author: "Tom Hall" + repo: "https://github.com/tom-f-hall/human-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" + formats: null +colors: + bg: "#F2F5F0" + fg: "#3A3530" + black: "#E8EDE5" + red: "#9A4A3A" + green: "#3E7A3F" + yellow: "#8A6B2F" + blue: "#2A6F7F" + magenta: "#9A5050" + cyan: "#357A8A" + white: "#7A6F62" + brightBlack: "#B8AAA0" + brightRed: "#B85555" + brightGreen: "#3E7A35" + brightYellow: "#8A6B2F" + brightBlue: "#3D7A8F" + brightMagenta: "#B85555" + brightCyan: "#3D7A8F" + brightWhite: "#3A3530" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.2 + black: 0 + red: 73.7 + green: 68.9 + yellow: 67.7 + blue: 71.8 + magenta: 72 + cyan: 67.1 + white: 67.5 + brightBlack: 38 + brightRed: 65.6 + brightGreen: 69 + brightYellow: 67.7 + brightBlue: 66.6 + brightMagenta: 65.6 + brightCyan: 66.6 + brightWhite: 91.2 diff --git a/themes/human-theme--human-warm.yaml b/themes/human-theme--human-warm.yaml new file mode 100644 index 00000000..d4598a10 --- /dev/null +++ b/themes/human-theme--human-warm.yaml @@ -0,0 +1,53 @@ +name: "Human Theme (Human Warm)" +source: + marketplace_id: "TomHall.human-theme" + version: "1.1.1" + installs: 99 + rating: 0 + ratings: 0 + author: "Tom Hall" + repo: "https://github.com/tom-f-hall/human-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TomHall.human-theme" + formats: null +colors: + bg: "#F5F0E8" + fg: "#2D2520" + black: "#E8DED0" + red: "#9A4A2A" + green: "#357A2F" + yellow: "#7A5B1F" + blue: "#2A6F5F" + magenta: "#9A5040" + cyan: "#357A6A" + white: "#6B5F52" + brightBlack: "#B8AA90" + brightRed: "#B85545" + brightGreen: "#357A25" + brightYellow: "#7A5B1F" + brightBlue: "#3D7A6F" + brightMagenta: "#B85545" + brightCyan: "#3D7A6F" + brightWhite: "#2D2520" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 93.3 + black: 7.7 + red: 71.8 + green: 67.4 + yellow: 72.5 + blue: 70.8 + magenta: 70.2 + cyan: 66.2 + white: 72.3 + brightBlack: 36.4 + brightRed: 63.8 + brightGreen: 67.4 + brightYellow: 72.5 + brightBlue: 65.7 + brightMagenta: 63.8 + brightCyan: 65.7 + brightWhite: 93.3 diff --git a/themes/hyle.yaml b/themes/hyle.yaml new file mode 100644 index 00000000..4e95edfd --- /dev/null +++ b/themes/hyle.yaml @@ -0,0 +1,53 @@ +name: "Hyle" +source: + marketplace_id: "Kaosc.hyle" + version: "0.4.2" + installs: 190 + rating: 0 + ratings: 0 + author: "Kaosc" + repo: "https://github.com/Kaosc/Hyle" + url: "https://marketplace.visualstudio.com/items?itemName=Kaosc.hyle" + formats: null +colors: + bg: "#070707" + fg: "#C7C7C7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 72.6 + black: 0 + red: 27.7 + green: 53.9 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 91 diff --git a/themes/hyprluna-matugen-theme.yaml b/themes/hyprluna-matugen-theme.yaml new file mode 100644 index 00000000..e3d122e6 --- /dev/null +++ b/themes/hyprluna-matugen-theme.yaml @@ -0,0 +1,53 @@ +name: "HyprLuna Matugen Theme" +source: + marketplace_id: "HyprLuna.hyprluna-theme" + version: "1.0.2" + installs: 1281 + rating: 5 + ratings: 1 + author: "HyprLuna" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HyprLuna.hyprluna-theme" + formats: null +colors: + bg: "#1A1110" + fg: "#F1DEDC" + black: "#A08C8A" + red: "#FFB4AB" + green: "#E7BDB8" + yellow: "#5D3F3C" + blue: "#FFB3AC" + magenta: "#E1C38C" + cyan: "#584419" + white: "#F1DEDC" + brightBlack: "#D8C2BF" + brightRed: "#93000A" + brightGreen: "#5D3F3C" + brightYellow: "#E7BDB8" + brightBlue: "#73332F" + brightMagenta: "#584419" + brightCyan: "#E1C38C" + brightWhite: "#F1DEDC" +meta: + mode: "dark" + accent: "orange" + hue: 26 + pair: null + contrast: + fg: 88.5 + black: 42.1 + red: 71.9 + green: 71.8 + yellow: 10.1 + blue: 71.6 + magenta: 71.9 + cyan: 10.3 + white: 88.5 + brightBlack: 71.9 + brightRed: 12.4 + brightGreen: 10.1 + brightYellow: 71.8 + brightBlue: 10.5 + brightMagenta: 10.3 + brightCyan: 71.9 + brightWhite: 88.5 diff --git a/themes/i-a-minimal-theme.yaml b/themes/i-a-minimal-theme.yaml new file mode 100644 index 00000000..ddc9d840 --- /dev/null +++ b/themes/i-a-minimal-theme.yaml @@ -0,0 +1,53 @@ +name: "i - A Minimal Theme" +source: + marketplace_id: "ctrlplusb.i-minimal-theme" + version: "1.1.5" + installs: 10237 + rating: 5 + ratings: 3 + author: "ctrlplusb" + repo: "https://github.com/ctrlplusb/i-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ctrlplusb.i-minimal-theme" + formats: null +colors: + bg: "#FDF6E3" + fg: "#000000" + black: "#000000" + red: "#FF0032" + green: "#00FF68" + yellow: "#FFCA00" + blue: "#004BFF" + magenta: "#7D46FC" + cyan: "#00D2FF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF0032" + brightGreen: "#00FF68" + brightYellow: "#FFCA00" + brightBlue: "#004BFF" + brightMagenta: "#7D46FC" + brightCyan: "#00D2FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 100.8 + black: 100.8 + red: 58.7 + green: 11.3 + yellow: 19.1 + blue: 73.6 + magenta: 68.8 + cyan: 27.4 + white: 0 + brightBlack: 100.8 + brightRed: 58.7 + brightGreen: 11.3 + brightYellow: 19.1 + brightBlue: 73.6 + brightMagenta: 68.8 + brightCyan: 27.4 + brightWhite: 0 diff --git a/themes/i3-dark-theme--i3-panda-custom-ii.yaml b/themes/i3-dark-theme--i3-panda-custom-ii.yaml new file mode 100644 index 00000000..e0f06702 --- /dev/null +++ b/themes/i3-dark-theme--i3-panda-custom-ii.yaml @@ -0,0 +1,53 @@ +name: "i3 Dark Theme (i3 - Panda - Custom II)" +source: + marketplace_id: "i3acksp4ce.tokyo-night-default-dark" + version: "0.6.62" + installs: 6252 + rating: 5 + ratings: 2 + author: "i3acksp4ce" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" + formats: null +colors: + bg: "#18191B" + fg: "#F3F3F4" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 98.8 + black: 12.3 + red: 51.9 + green: 51.4 + yellow: 51.5 + blue: 51.5 + magenta: 51.5 + cyan: 60.7 + white: 63.3 + brightBlack: 28.5 + brightRed: 64.1 + brightGreen: 64.7 + brightYellow: 64 + brightBlue: 64 + brightMagenta: 63.9 + brightCyan: 69.2 + brightWhite: 106.7 diff --git a/themes/i3-dark-theme--i3-panda-custom-iii.yaml b/themes/i3-dark-theme--i3-panda-custom-iii.yaml new file mode 100644 index 00000000..f56d901f --- /dev/null +++ b/themes/i3-dark-theme--i3-panda-custom-iii.yaml @@ -0,0 +1,53 @@ +name: "i3 Dark Theme (i3 - Panda - Custom III)" +source: + marketplace_id: "i3acksp4ce.tokyo-night-default-dark" + version: "0.6.62" + installs: 6252 + rating: 5 + ratings: 2 + author: "i3acksp4ce" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" + formats: null +colors: + bg: "#011627" + fg: "#F1F2F3" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 244 + pair: null + contrast: + fg: 98.3 + black: 12.6 + red: 52.2 + green: 51.7 + yellow: 51.8 + blue: 51.8 + magenta: 51.8 + cyan: 61 + white: 63.6 + brightBlack: 28.8 + brightRed: 64.4 + brightGreen: 65 + brightYellow: 64.3 + brightBlue: 64.3 + brightMagenta: 64.2 + brightCyan: 69.5 + brightWhite: 107 diff --git a/themes/i3-dark-theme--i3-panda-custom.yaml b/themes/i3-dark-theme--i3-panda-custom.yaml new file mode 100644 index 00000000..793f65ec --- /dev/null +++ b/themes/i3-dark-theme--i3-panda-custom.yaml @@ -0,0 +1,53 @@ +name: "i3 Dark Theme (i3 - Panda - Custom)" +source: + marketplace_id: "i3acksp4ce.tokyo-night-default-dark" + version: "0.6.62" + installs: 6252 + rating: 5 + ratings: 2 + author: "i3acksp4ce" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=i3acksp4ce.tokyo-night-default-dark" + formats: null +colors: + bg: "#141C24" + fg: "#F0F4F7" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 249 + pair: null + contrast: + fg: 98.7 + black: 12.1 + red: 51.6 + green: 51.1 + yellow: 51.2 + blue: 51.2 + magenta: 51.2 + cyan: 60.4 + white: 63 + brightBlack: 28.3 + brightRed: 63.8 + brightGreen: 64.5 + brightYellow: 63.7 + brightBlue: 63.7 + brightMagenta: 63.6 + brightCyan: 68.9 + brightWhite: 106.4 diff --git a/themes/ibm-carbon-design-system-theme--ibm-carbon-gray-10.yaml b/themes/ibm-carbon-design-system-theme--ibm-carbon-gray-10.yaml new file mode 100644 index 00000000..dfba31c0 --- /dev/null +++ b/themes/ibm-carbon-design-system-theme--ibm-carbon-gray-10.yaml @@ -0,0 +1,53 @@ +name: "IBM Carbon Design System Theme (IBM Carbon Gray 10)" +source: + marketplace_id: "achkasov.ibm-carbon-design-system-theme" + version: "1.1.0" + installs: 676 + rating: 0 + ratings: 0 + author: "achkasov" + repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" + formats: null +colors: + bg: "#F4F4F4" + fg: "#161616" + black: "#525252" + red: "#DA1E28" + green: "#24A148" + yellow: "#FF832B" + blue: "#4589FF" + magenta: "#A56EFF" + cyan: "#009D9A" + white: "#FFFFFF" + brightBlack: "#525252" + brightRed: "#F14C4C" + brightGreen: "#A7F0BA" + brightYellow: "#F1C21B" + brightBlue: "#D0E2FF" + brightMagenta: "#E8DAFF" + brightCyan: "#9EF0F0" + brightWhite: "#F4F4F4" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.3 + black: 80.6 + red: 65.9 + green: 53.9 + yellow: 41.2 + blue: 53.9 + magenta: 54 + cyan: 53.6 + white: 0 + brightBlack: 80.6 + brightRed: 55.6 + brightGreen: 9.5 + brightYellow: 23.1 + brightBlue: 8.9 + brightMagenta: 9.3 + brightCyan: 8.1 + brightWhite: 0 diff --git a/themes/ibm-carbon-design-system-theme--ibm-carbon-gray-100.yaml b/themes/ibm-carbon-design-system-theme--ibm-carbon-gray-100.yaml new file mode 100644 index 00000000..cd789b82 --- /dev/null +++ b/themes/ibm-carbon-design-system-theme--ibm-carbon-gray-100.yaml @@ -0,0 +1,53 @@ +name: "IBM Carbon Design System Theme (IBM Carbon Gray 100)" +source: + marketplace_id: "achkasov.ibm-carbon-design-system-theme" + version: "1.1.0" + installs: 676 + rating: 0 + ratings: 0 + author: "achkasov" + repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" + formats: null +colors: + bg: "#161616" + fg: "#F4F4F4" + black: "#262626" + red: "#DA1E28" + green: "#24A148" + yellow: "#FF832B" + blue: "#4589FF" + magenta: "#A56EFF" + cyan: "#009D9A" + white: "#C6C6C6" + brightBlack: "#525252" + brightRed: "#F14C4C" + brightGreen: "#A7F0BA" + brightYellow: "#F1C21B" + brightBlue: "#D0E2FF" + brightMagenta: "#E8DAFF" + brightCyan: "#9EF0F0" + brightWhite: "#F4F4F4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.7 + black: 0 + red: 28.3 + green: 40.3 + yellow: 53.3 + blue: 40.3 + magenta: 40.3 + cyan: 40.6 + white: 71.2 + brightBlack: 14 + brightRed: 38.7 + brightGreen: 86.7 + brightYellow: 72.3 + brightBlue: 87.4 + brightMagenta: 87 + brightCyan: 88.2 + brightWhite: 99.7 diff --git a/themes/ibm-carbon-design-system-theme--ibm-carbon-gray-90.yaml b/themes/ibm-carbon-design-system-theme--ibm-carbon-gray-90.yaml new file mode 100644 index 00000000..4e6d98f4 --- /dev/null +++ b/themes/ibm-carbon-design-system-theme--ibm-carbon-gray-90.yaml @@ -0,0 +1,53 @@ +name: "IBM Carbon Design System Theme (IBM Carbon Gray 90)" +source: + marketplace_id: "achkasov.ibm-carbon-design-system-theme" + version: "1.1.0" + installs: 676 + rating: 0 + ratings: 0 + author: "achkasov" + repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" + formats: null +colors: + bg: "#262626" + fg: "#F4F4F4" + black: "#262626" + red: "#DA1E28" + green: "#24A148" + yellow: "#FF832B" + blue: "#4589FF" + magenta: "#A56EFF" + cyan: "#009D9A" + white: "#C6C6C6" + brightBlack: "#525252" + brightRed: "#F14C4C" + brightGreen: "#A7F0BA" + brightYellow: "#F1C21B" + brightBlue: "#D0E2FF" + brightMagenta: "#E8DAFF" + brightCyan: "#9EF0F0" + brightWhite: "#F4F4F4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97.6 + black: 0 + red: 26.1 + green: 38.2 + yellow: 51.1 + blue: 38.1 + magenta: 38.1 + cyan: 38.4 + white: 69 + brightBlack: 11.9 + brightRed: 36.5 + brightGreen: 84.5 + brightYellow: 70.1 + brightBlue: 85.2 + brightMagenta: 84.8 + brightCyan: 86 + brightWhite: 97.6 diff --git a/themes/ibm-carbon-design-system-theme--ibm-carbon-white.yaml b/themes/ibm-carbon-design-system-theme--ibm-carbon-white.yaml new file mode 100644 index 00000000..2489538a --- /dev/null +++ b/themes/ibm-carbon-design-system-theme--ibm-carbon-white.yaml @@ -0,0 +1,53 @@ +name: "IBM Carbon Design System Theme (IBM Carbon White)" +source: + marketplace_id: "achkasov.ibm-carbon-design-system-theme" + version: "1.1.0" + installs: 676 + rating: 0 + ratings: 0 + author: "achkasov" + repo: "https://github.com/achkasov/IBM-Carbon-Design-System-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=achkasov.ibm-carbon-design-system-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#161616" + black: "#525252" + red: "#DA1E28" + green: "#24A148" + yellow: "#FF832B" + blue: "#4589FF" + magenta: "#A56EFF" + cyan: "#009D9A" + white: "#F4F4F4" + brightBlack: "#525252" + brightRed: "#F14C4C" + brightGreen: "#A7F0BA" + brightYellow: "#F1C21B" + brightBlue: "#D0E2FF" + brightMagenta: "#E8DAFF" + brightCyan: "#9EF0F0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.8 + black: 87.2 + red: 72.5 + green: 60.5 + yellow: 47.8 + blue: 60.5 + magenta: 60.5 + cyan: 60.2 + white: 0 + brightBlack: 87.2 + brightRed: 62.1 + brightGreen: 16.1 + brightYellow: 29.6 + brightBlue: 15.4 + brightMagenta: 15.8 + brightCyan: 14.7 + brightWhite: 0 diff --git a/themes/icat-dark-theme.yaml b/themes/icat-dark-theme.yaml new file mode 100644 index 00000000..4e66136f --- /dev/null +++ b/themes/icat-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Icat Dark Theme" +source: + marketplace_id: "ahmeticat.icat-dark-theme" + version: "0.0.11" + installs: 5292 + rating: 5 + ratings: 4 + author: "ahmeticat" + repo: "https://github.com/ahmeticat/Icat-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ahmeticat.icat-dark-theme" + formats: null +colors: + bg: "#222828" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 99.7 + black: 0 + red: 22.4 + green: 50.8 + yellow: 55.4 + blue: 32.4 + magenta: 30 + cyan: 48.2 + white: 86.3 + brightBlack: 19.8 + brightRed: 35.1 + brightGreen: 74.8 + brightYellow: 81.7 + brightBlue: 47.6 + brightMagenta: 44.3 + brightCyan: 71.2 + brightWhite: 99.7 diff --git a/themes/iceberg-dark.yaml b/themes/iceberg-dark.yaml new file mode 100644 index 00000000..2d3b4713 --- /dev/null +++ b/themes/iceberg-dark.yaml @@ -0,0 +1,53 @@ +name: "IceBerg Dark" +source: + marketplace_id: "hawkCodes.iceberg-dark" + version: "1.3.0" + installs: 1258 + rating: 5 + ratings: 1 + author: "hawkCodes" + repo: "https://github.com/hawk-Codes/IceBerg" + url: "https://marketplace.visualstudio.com/items?itemName=hawkCodes.iceberg-dark" + formats: null +colors: + bg: "#1E2430" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 77.8 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/iceberg-theme--iceberg-light.yaml b/themes/iceberg-theme--iceberg-light.yaml new file mode 100644 index 00000000..b93bcb6f --- /dev/null +++ b/themes/iceberg-theme--iceberg-light.yaml @@ -0,0 +1,53 @@ +name: "Iceberg Theme (Iceberg Light)" +source: + marketplace_id: "cocopon.iceberg-theme" + version: "2.0.6" + installs: 60278 + rating: 5 + ratings: 7 + author: "cocopon" + repo: "https://github.com/cocopon/vscode-iceberg-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cocopon.iceberg-theme" + formats: null +colors: + bg: "#E8E9EC" + fg: "#33374C" + black: "#DCDFE7" + red: "#CC517A" + green: "#668E3D" + yellow: "#C57339" + blue: "#2D539E" + magenta: "#7759B4" + cyan: "#3F83A6" + white: "#33374C" + brightBlack: "#8389A3" + brightRed: "#CC3768" + brightGreen: "#598030" + brightYellow: "#B6662D" + brightBlue: "#22478E" + brightMagenta: "#6845AD" + brightCyan: "#327698" + brightWhite: "#262A3F" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 83.9 + black: 0 + red: 55.1 + green: 52.6 + yellow: 49.9 + blue: 72.3 + magenta: 63.8 + cyan: 55.7 + white: 83.9 + brightBlack: 49.1 + brightRed: 59.5 + brightGreen: 58.9 + brightYellow: 56.1 + brightBlue: 77 + brightMagenta: 70.5 + brightCyan: 61.5 + brightWhite: 87.8 diff --git a/themes/iceberg-theme--iceberg.yaml b/themes/iceberg-theme--iceberg.yaml new file mode 100644 index 00000000..05e30cc8 --- /dev/null +++ b/themes/iceberg-theme--iceberg.yaml @@ -0,0 +1,53 @@ +name: "Iceberg Theme (Iceberg)" +source: + marketplace_id: "cocopon.iceberg-theme" + version: "2.0.6" + installs: 60278 + rating: 5 + ratings: 7 + author: "cocopon" + repo: "https://github.com/cocopon/vscode-iceberg-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cocopon.iceberg-theme" + formats: null +colors: + bg: "#161821" + fg: "#C6C8D1" + black: "#1E2132" + red: "#E27878" + green: "#B4BE82" + yellow: "#E2A478" + blue: "#84A0C6" + magenta: "#A093C7" + cyan: "#89B8C2" + white: "#C6C8D1" + brightBlack: "#6B7089" + brightRed: "#E98989" + brightGreen: "#C0CA8E" + brightYellow: "#E9B189" + brightBlue: "#91ACD1" + brightMagenta: "#ADA0D3" + brightCyan: "#95C4CE" + brightWhite: "#D2D4DE" +meta: + mode: "dark" + accent: "orange" + hue: 275 + pair: null + contrast: + fg: 72.3 + black: 0 + red: 45.4 + green: 63.1 + yellow: 59.2 + blue: 48.6 + magenta: 46.8 + cyan: 58.5 + white: 72.3 + brightBlack: 26.7 + brightRed: 52 + brightGreen: 70 + brightYellow: 65.5 + brightBlue: 55 + brightMagenta: 53.6 + brightCyan: 65.2 + brightWhite: 79.5 diff --git a/themes/icon-group--icon-group-dark.yaml b/themes/icon-group--icon-group-dark.yaml new file mode 100644 index 00000000..fb6a2f19 --- /dev/null +++ b/themes/icon-group--icon-group-dark.yaml @@ -0,0 +1,53 @@ +name: "Icon Group (Icon Group Dark)" +source: + marketplace_id: "lucidlabs.icon-group-theme" + version: "1.5.0" + installs: 2 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.icon-group-theme" + formats: null +colors: + bg: "#0E2A4A" + fg: "#E0E8F0" + black: "#05101A" + red: "#E8635A" + green: "#4CAF7D" + yellow: "#FDBD10" + blue: "#4DA6E8" + magenta: "#9B6FCF" + cyan: "#00B09B" + white: "#E0E8F0" + brightBlack: "#8098AD" + brightRed: "#F07A72" + brightGreen: "#6AD89A" + brightYellow: "#FFD04A" + brightBlue: "#6DBCF0" + brightMagenta: "#B48EE0" + brightCyan: "#33C4B0" + brightWhite: "#F0F4F8" +meta: + mode: "dark" + accent: "yellow" + hue: 254 + pair: null + contrast: + fg: 88.4 + black: 0 + red: 38.2 + green: 45.6 + yellow: 69.3 + blue: 46.8 + magenta: 32.7 + cyan: 45.8 + white: 88.4 + brightBlack: 41.3 + brightRed: 45.8 + brightGreen: 66.7 + brightYellow: 77.7 + brightBlue: 58 + brightMagenta: 46.3 + brightCyan: 56 + brightWhite: 96.4 diff --git a/themes/icon-group--icon-group-light.yaml b/themes/icon-group--icon-group-light.yaml new file mode 100644 index 00000000..8393bbfa --- /dev/null +++ b/themes/icon-group--icon-group-light.yaml @@ -0,0 +1,53 @@ +name: "Icon Group (Icon Group Light)" +source: + marketplace_id: "lucidlabs.icon-group-theme" + version: "1.5.0" + installs: 2 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.icon-group-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#15406F" + black: "#05101A" + red: "#D63B30" + green: "#009572" + yellow: "#B8860B" + blue: "#15406F" + magenta: "#7C4399" + cyan: "#00897B" + white: "#FFFFFF" + brightBlack: "#6B7D8E" + brightRed: "#E74C3C" + brightGreen: "#2ECC71" + brightYellow: "#F39C12" + brightBlue: "#006FB9" + brightMagenta: "#9B59B6" + brightCyan: "#009572" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.1 + black: 105.5 + red: 70.9 + green: 64.8 + yellow: 59.6 + blue: 94.1 + magenta: 82.8 + cyan: 69.3 + white: 0 + brightBlack: 69.3 + brightRed: 64.6 + brightGreen: 40.6 + brightYellow: 42.8 + brightBlue: 75.6 + brightMagenta: 72.1 + brightCyan: 64.8 + brightWhite: 0 diff --git a/themes/identical-sublime-text-monokai-theme.yaml b/themes/identical-sublime-text-monokai-theme.yaml new file mode 100644 index 00000000..23b5e995 --- /dev/null +++ b/themes/identical-sublime-text-monokai-theme.yaml @@ -0,0 +1,53 @@ +name: "Identical Sublime Text Monokai theme" +source: + marketplace_id: "maximetinu.identical-sublime-monokai-csharp-theme-colorizer" + version: "1.2.3" + installs: 286480 + rating: 5 + ratings: 24 + author: "Maximetinu" + repo: "https://github.com/Maximetinu/Sublime-Text-Monokai-theme-for-Visual-Studio-Code" + url: "https://marketplace.visualstudio.com/items?itemName=maximetinu.identical-sublime-monokai-csharp-theme-colorizer" + formats: null +colors: + bg: "#272822" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 115 + pair: null + contrast: + fg: 99.6 + black: 0 + red: 22.3 + green: 50.7 + yellow: 55.3 + blue: 32.3 + magenta: 29.9 + cyan: 48.1 + white: 86.2 + brightBlack: 19.7 + brightRed: 35 + brightGreen: 74.7 + brightYellow: 81.6 + brightBlue: 47.5 + brightMagenta: 44.2 + brightCyan: 71.1 + brightWhite: 99.6 diff --git a/themes/idx-dark-theme.yaml b/themes/idx-dark-theme.yaml new file mode 100644 index 00000000..0b723541 --- /dev/null +++ b/themes/idx-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "IDX Dark Theme" +source: + marketplace_id: "PabitraBanerjee.idx-dark-theme" + version: "1.0.0" + installs: 6274 + rating: 5 + ratings: 2 + author: "Pabitra Banerjee" + repo: "https://github.com/PB2204/IDX-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=PabitraBanerjee.idx-dark-theme" + formats: null +colors: + bg: "#171F2B" + fg: "#D9DFE7" + black: "#5D6A7D" + red: "#F76769" + green: "#17B877" + yellow: "#FFA23E" + blue: "#708FFF" + magenta: "#A87FFB" + cyan: "#25A6E9" + white: "#A4AFBD" + brightBlack: "#8B98A9" + brightRed: "#FC8F8E" + brightGreen: "#66CE98" + brightYellow: "#FFC26E" + brightBlue: "#A2B6FF" + brightMagenta: "#C8AAFF" + brightCyan: "#71C2EE" + brightWhite: "#FAFBFE" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + pair: null + contrast: + fg: 84.9 + black: 22.4 + red: 44.5 + green: 50.2 + yellow: 62 + blue: 43.7 + magenta: 43.9 + cyan: 47.7 + white: 56.4 + brightBlack: 44.1 + brightRed: 56.8 + brightGreen: 63.6 + brightYellow: 74.4 + brightBlue: 62.6 + brightMagenta: 62.5 + brightCyan: 62.6 + brightWhite: 103.3 diff --git a/themes/idx-xcode-xcode-syntax-and-idx-theme--idx-xcode-dark-improved.yaml b/themes/idx-xcode-xcode-syntax-and-idx-theme--idx-xcode-dark-improved.yaml new file mode 100644 index 00000000..1e66f6fe --- /dev/null +++ b/themes/idx-xcode-xcode-syntax-and-idx-theme--idx-xcode-dark-improved.yaml @@ -0,0 +1,53 @@ +name: "IDX Xcode - Xcode syntax and IDX Theme (idx-xcode-dark-improved)" +source: + marketplace_id: "CreevekCZ.idx-xcode" + version: "0.0.4" + installs: 959 + rating: 5 + ratings: 2 + author: "Jan Kožnárek" + repo: "https://github.com/CreevekCZ/idx-xcode-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=CreevekCZ.idx-xcode" + formats: null +colors: + bg: "#171F2B" + fg: "#D9DFE7" + black: "#738295" + red: "#F76769" + green: "#17B877" + yellow: "#FFA23E" + blue: "#708FFF" + magenta: "#00BBFF" + cyan: "#25A6E9" + white: "#A4AFBD" + brightBlack: "#8B98A9" + brightRed: "#FC8F8E" + brightGreen: "#66CE98" + brightYellow: "#FFC26E" + brightBlue: "#A2B6FF" + brightMagenta: "#C8AAFF" + brightCyan: "#71C2EE" + brightWhite: "#FAFBFE" +meta: + mode: "dark" + accent: "orange" + hue: 258 + pair: null + contrast: + fg: 84.9 + black: 33.1 + red: 44.5 + green: 50.2 + yellow: 62 + blue: 43.7 + magenta: 57.7 + cyan: 47.7 + white: 56.4 + brightBlack: 44.1 + brightRed: 56.8 + brightGreen: 63.6 + brightYellow: 74.4 + brightBlue: 62.6 + brightMagenta: 62.5 + brightCyan: 62.6 + brightWhite: 103.3 diff --git a/themes/illusion--illusion.yaml b/themes/illusion--illusion.yaml new file mode 100644 index 00000000..22d9b414 --- /dev/null +++ b/themes/illusion--illusion.yaml @@ -0,0 +1,53 @@ +name: "Illusion (Illusion)" +source: + marketplace_id: "rwietter.Illusion" + version: "1.0.0" + installs: 13839 + rating: 0 + ratings: 0 + author: "Maurício Witter" + repo: "https://github.com/rwietter/illusion-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rwietter.Illusion" + formats: null +colors: + bg: "#1E1D22" + fg: "#FEFEFE" + black: "#1E1D22" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#5F5076" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 105.4 + black: 0 + red: 42.6 + green: 84.1 + yellow: 97.8 + blue: 52.9 + magenta: 53.8 + cyan: 83.2 + white: 101.2 + brightBlack: 15.1 + brightRed: 48.1 + brightGreen: 88.3 + brightYellow: 102.8 + brightBlue: 65.3 + brightMagenta: 61.8 + brightCyan: 96 + brightWhite: 106.1 diff --git a/themes/iloveagents-azure-ai-foundry-themes--iloveagents-dark.yaml b/themes/iloveagents-azure-ai-foundry-themes--iloveagents-dark.yaml new file mode 100644 index 00000000..b1ede1f4 --- /dev/null +++ b/themes/iloveagents-azure-ai-foundry-themes--iloveagents-dark.yaml @@ -0,0 +1,56 @@ +name: "iLoveAgents - Azure AI Foundry Themes (iLoveAgents Dark)" +source: + marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" + version: "0.5.3" + installs: 162 + rating: 5 + ratings: 1 + author: "iLoveAgents" + repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" + url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" + formats: + iterm2: "https://raw.githubusercontent.com/iLoveAgents/vscode-iloveagents-foundry-theme/main/terminal-schemes/iLoveAgents-AzureAI.itermcolors" + alacritty: "https://raw.githubusercontent.com/iLoveAgents/vscode-iloveagents-foundry-theme/main/terminal-schemes/alacritty.yml" + windows-terminal: "https://raw.githubusercontent.com/iLoveAgents/vscode-iloveagents-foundry-theme/main/terminal-schemes/windows-terminal.json" +colors: + bg: "#14161A" + fg: "#E5E7EB" + black: "#1F2428" + red: "#F87171" + green: "#14B8A6" + yellow: "#FBBF24" + blue: "#60A5FA" + magenta: "#A78BFA" + cyan: "#22D3EE" + white: "#E5E7EB" + brightBlack: "#374151" + brightRed: "#FCA5A5" + brightGreen: "#2DD4BF" + brightYellow: "#FCD34D" + brightBlue: "#93C5FD" + brightMagenta: "#C4B5FD" + brightCyan: "#67E8F9" + brightWhite: "#F3F4F6" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.3 + black: 0 + red: 48.2 + green: 52.8 + yellow: 72.8 + blue: 51.5 + magenta: 48.4 + cyan: 68.7 + white: 91.3 + brightBlack: 7.7 + brightRed: 65.6 + brightGreen: 67 + brightYellow: 81.5 + brightBlue: 68.3 + brightMagenta: 67 + brightCyan: 81.3 + brightWhite: 99.7 diff --git a/themes/iloveagents-azure-ai-foundry-themes--iloveagents-light.yaml b/themes/iloveagents-azure-ai-foundry-themes--iloveagents-light.yaml new file mode 100644 index 00000000..69f98c59 --- /dev/null +++ b/themes/iloveagents-azure-ai-foundry-themes--iloveagents-light.yaml @@ -0,0 +1,56 @@ +name: "iLoveAgents - Azure AI Foundry Themes (iLoveAgents Light)" +source: + marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" + version: "0.5.3" + installs: 162 + rating: 5 + ratings: 1 + author: "iLoveAgents" + repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" + url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" + formats: + iterm2: "https://raw.githubusercontent.com/iLoveAgents/vscode-iloveagents-foundry-theme/main/terminal-schemes/iLoveAgents-AzureAI.itermcolors" + alacritty: "https://raw.githubusercontent.com/iLoveAgents/vscode-iloveagents-foundry-theme/main/terminal-schemes/alacritty.yml" + windows-terminal: "https://raw.githubusercontent.com/iLoveAgents/vscode-iloveagents-foundry-theme/main/terminal-schemes/windows-terminal.json" +colors: + bg: "#FFFFFF" + fg: "#1F2937" + black: "#2F353A" + red: "#D92C3A" + green: "#0D766E" + yellow: "#B97300" + blue: "#2563EB" + magenta: "#8B5CF6" + cyan: "#0D6BB8" + white: "#1F2937" + brightBlack: "#4B5563" + brightRed: "#EF4D55" + brightGreen: "#109E90" + brightYellow: "#D48800" + brightBlue: "#1D4ED8" + brightMagenta: "#9E72FF" + brightCyan: "#1286D8" + brightWhite: "#374151" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 101.5 + black: 98.3 + red: 71.6 + green: 76.9 + yellow: 65.2 + blue: 74.9 + magenta: 68.7 + cyan: 76.9 + white: 101.5 + brightBlack: 86.3 + brightRed: 62.3 + brightGreen: 60.1 + brightYellow: 54.5 + brightBlue: 82.2 + brightMagenta: 60.4 + brightCyan: 65.6 + brightWhite: 93.9 diff --git a/themes/iloveagents-azure-ai-foundry-themes-iloveagents-azure-ai-foundry-dark.yaml b/themes/iloveagents-azure-ai-foundry-themes-iloveagents-azure-ai-foundry-dark.yaml new file mode 100644 index 00000000..8368e574 --- /dev/null +++ b/themes/iloveagents-azure-ai-foundry-themes-iloveagents-azure-ai-foundry-dark.yaml @@ -0,0 +1,56 @@ +name: "iLoveAgents - Azure AI Foundry Themes (iLoveAgents - Azure AI Foundry (Dark))" +source: + marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" + version: "0.5.3" + installs: 162 + rating: 5 + ratings: 1 + author: "iLoveAgents" + repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" + url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" + formats: + iterm2: "https://raw.githubusercontent.com/iLoveAgents/vscode-iloveagents-foundry-theme/main/terminal-schemes/iLoveAgents-AzureAI.itermcolors" + alacritty: "https://raw.githubusercontent.com/iLoveAgents/vscode-iloveagents-foundry-theme/main/terminal-schemes/alacritty.yml" + windows-terminal: "https://raw.githubusercontent.com/iLoveAgents/vscode-iloveagents-foundry-theme/main/terminal-schemes/windows-terminal.json" +colors: + bg: "#101224" + fg: "#E8EDF2" + black: "#1C2028" + red: "#E84855" + green: "#0FA8A0" + yellow: "#C89C26" + blue: "#0078D4" + magenta: "#E3008C" + cyan: "#1AA4E8" + white: "#E4E7EB" + brightBlack: "#384155" + brightRed: "#FF6774" + brightGreen: "#11BEAE" + brightYellow: "#DEB33A" + brightBlue: "#1995F0" + brightMagenta: "#F03A95" + brightCyan: "#33B4F2" + brightWhite: "#F2F4F6" +meta: + mode: "dark" + accent: "red" + hue: 278 + pair: null + contrast: + fg: 95 + black: 0 + red: 36.4 + green: 45.7 + yellow: 51.5 + blue: 30.3 + magenta: 32.3 + cyan: 47.9 + white: 91.4 + brightBlack: 8.1 + brightRed: 47.7 + brightGreen: 56 + brightYellow: 63.6 + brightBlue: 42.6 + brightMagenta: 38.3 + brightCyan: 55.5 + brightWhite: 99.7 diff --git a/themes/iloveagents-azure-ai-foundry-themes-iloveagents-azure-ai-foundry-light.yaml b/themes/iloveagents-azure-ai-foundry-themes-iloveagents-azure-ai-foundry-light.yaml new file mode 100644 index 00000000..c59c9bab --- /dev/null +++ b/themes/iloveagents-azure-ai-foundry-themes-iloveagents-azure-ai-foundry-light.yaml @@ -0,0 +1,56 @@ +name: "iLoveAgents - Azure AI Foundry Themes (iLoveAgents - Azure AI Foundry (Light))" +source: + marketplace_id: "iLoveAgents.iloveagents-ai-foundry-theme" + version: "0.5.3" + installs: 162 + rating: 5 + ratings: 1 + author: "iLoveAgents" + repo: "https://github.com/iLoveAgents/vscode-iloveagents-foundry-theme" + url: "https://marketplace.visualstudio.com/items?itemName=iLoveAgents.iloveagents-ai-foundry-theme" + formats: + iterm2: "https://raw.githubusercontent.com/iLoveAgents/vscode-iloveagents-foundry-theme/main/terminal-schemes/iLoveAgents-AzureAI.itermcolors" + alacritty: "https://raw.githubusercontent.com/iLoveAgents/vscode-iloveagents-foundry-theme/main/terminal-schemes/alacritty.yml" + windows-terminal: "https://raw.githubusercontent.com/iLoveAgents/vscode-iloveagents-foundry-theme/main/terminal-schemes/windows-terminal.json" +colors: + bg: "#FFFFFF" + fg: "#1E2530" + black: "#2F353A" + red: "#D92C3A" + green: "#079A93" + yellow: "#AE800F" + blue: "#0078D4" + magenta: "#D90082" + cyan: "#008FD8" + white: "#1E2530" + brightBlack: "#4B5563" + brightRed: "#EF4D55" + brightGreen: "#0BB2AA" + brightYellow: "#C59317" + brightBlue: "#0E8FE2" + brightMagenta: "#F03A95" + brightCyan: "#28A9E8" + brightWhite: "#374151" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 102.3 + black: 98.3 + red: 71.6 + green: 61.7 + yellow: 63 + blue: 70.7 + magenta: 71.4 + cyan: 62.4 + white: 102.3 + brightBlack: 86.3 + brightRed: 62.3 + brightGreen: 50.8 + brightYellow: 53.3 + brightBlue: 61.6 + brightMagenta: 62.7 + brightCyan: 51.1 + brightWhite: 93.9 diff --git a/themes/ilyat--ilyat-poimandres.yaml b/themes/ilyat--ilyat-poimandres.yaml new file mode 100644 index 00000000..11013671 --- /dev/null +++ b/themes/ilyat--ilyat-poimandres.yaml @@ -0,0 +1,53 @@ +name: "Ilyat (Ilyat Poimandres)" +source: + marketplace_id: "LJWhite-WV.ilyat-vscode" + version: "0.2.0" + installs: 919 + rating: 5 + ratings: 1 + author: "LJ White" + repo: "https://github.com/theljwhite/ilyat" + url: "https://marketplace.visualstudio.com/items?itemName=LJWhite-WV.ilyat-vscode" + formats: null +colors: + bg: "#252B37" + fg: "#A6ACCD" + black: "#252B37" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 264 + pair: null + contrast: + fg: 54.1 + black: 0 + red: 36.2 + green: 73.4 + yellow: 99 + blue: 75.3 + magenta: 51.9 + cyan: 75.3 + white: 103.9 + brightBlack: 54.1 + brightRed: 36.2 + brightGreen: 73.4 + brightYellow: 99 + brightBlue: 75.5 + brightMagenta: 51.9 + brightCyan: 75.5 + brightWhite: 103.9 diff --git a/themes/imba.yaml b/themes/imba.yaml new file mode 100644 index 00000000..39106b93 --- /dev/null +++ b/themes/imba.yaml @@ -0,0 +1,53 @@ +name: "Imba" +source: + marketplace_id: "scrimba.vsimba" + version: "4.2.3" + installs: 5039 + rating: 5 + ratings: 4 + author: "Scrimba" + repo: "https://github.com/imba/imba" + url: "https://marketplace.visualstudio.com/items?itemName=scrimba.vsimba" + formats: null +colors: + bg: "#111316" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#6BBCFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#DBDFE7" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#CBF8AB" + brightYellow: "#FFE2AC" + brightBlue: "#6A9BFF" + brightMagenta: "#D88CE7" + brightCyan: "#70CCD8" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 59.8 + black: 0 + red: 42.4 + green: 62.6 + yellow: 70.9 + blue: 62 + magenta: 45.5 + cyan: 54.9 + white: 86.5 + brightBlack: 35.9 + brightRed: 38.8 + brightGreen: 94 + brightYellow: 90.7 + brightBlue: 48.9 + brightMagenta: 54.7 + brightCyan: 67.1 + brightWhite: 83.4 diff --git a/themes/in-the-fog-theme.yaml b/themes/in-the-fog-theme.yaml new file mode 100644 index 00000000..898a1cbe --- /dev/null +++ b/themes/in-the-fog-theme.yaml @@ -0,0 +1,53 @@ +name: "In The Fog Theme" +source: + marketplace_id: "ganevru.in-the-fog-theme" + version: "0.3.1" + installs: 3398 + rating: 5 + ratings: 3 + author: "ganevru" + repo: "https://github.com/ganevru/in-the-fog-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ganevru.in-the-fog-theme" + formats: null +colors: + bg: "#24292B" + fg: "#D4D4D4" + black: "#666666" + red: "#CD6564" + green: "#AEC199" + yellow: "#FFF099" + blue: "#6D9CBE" + magenta: "#B081B9" + cyan: "#80B5B3" + white: "#EFEFEF" + brightBlack: "#666666" + brightRed: "#CD6564" + brightGreen: "#AEC199" + brightYellow: "#FFF099" + brightBlue: "#6D9CBE" + brightMagenta: "#B081B9" + brightCyan: "#80B5B3" + brightWhite: "#EFEFEF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 77 + black: 19.6 + red: 33.9 + green: 62 + yellow: 93.6 + blue: 42.5 + magenta: 39.9 + cyan: 53.6 + white: 93.9 + brightBlack: 19.6 + brightRed: 33.9 + brightGreen: 62 + brightYellow: 93.6 + brightBlue: 42.5 + brightMagenta: 39.9 + brightCyan: 53.6 + brightWhite: 93.9 diff --git a/themes/indigo-dream.yaml b/themes/indigo-dream.yaml new file mode 100644 index 00000000..cd733d41 --- /dev/null +++ b/themes/indigo-dream.yaml @@ -0,0 +1,53 @@ +name: "Indigo Dream" +source: + marketplace_id: "ivusc.indigo-dream" + version: "0.0.7" + installs: 248 + rating: 0 + ratings: 0 + author: "ivusc" + repo: "https://github.com/ivusc/ivusc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ivusc.indigo-dream" + formats: null +colors: + bg: "#0B0B1F" + fg: "#B0B0B0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 281 + pair: null + contrast: + fg: 59.2 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/inei.yaml b/themes/inei.yaml new file mode 100644 index 00000000..ab3f7f0f --- /dev/null +++ b/themes/inei.yaml @@ -0,0 +1,53 @@ +name: "Inei" +source: + marketplace_id: "svygzhryr.inei" + version: "0.0.3" + installs: 53 + rating: 0 + ratings: 0 + author: "Pavel Mihailov" + repo: "https://github.com/Svygzhryr/Inei" + url: "https://marketplace.visualstudio.com/items?itemName=svygzhryr.inei" + formats: null +colors: + bg: "#0E0D12" + fg: "#D0CAE3" + black: "#1A1821" + red: "#F04279" + green: "#957BF5" + yellow: "#B6A5F1" + blue: "#957BF5" + magenta: "#8775C7" + cyan: "#C0B3E7" + white: "#D0CAE3" + brightBlack: "#36304B" + brightRed: "#EF004C" + brightGreen: "#8160F8" + brightYellow: "#D27D68" + brightBlue: "#D0CAE3" + brightMagenta: "#E52B91" + brightCyan: "#957BF5" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: 294 + pair: null + contrast: + fg: 76.1 + black: 0 + red: 38.6 + green: 41.7 + yellow: 59.1 + blue: 41.7 + magenta: 35.1 + cyan: 65 + white: 76.1 + brightBlack: 0 + brightRed: 33.8 + brightGreen: 32.6 + brightYellow: 44.3 + brightBlue: 76.1 + brightMagenta: 34.7 + brightCyan: 41.7 + brightWhite: 104.3 diff --git a/themes/infinite-dark-purple.yaml b/themes/infinite-dark-purple.yaml new file mode 100644 index 00000000..525ab2bb --- /dev/null +++ b/themes/infinite-dark-purple.yaml @@ -0,0 +1,53 @@ +name: "Infinite Dark Purple" +source: + marketplace_id: "Ludwigwp.infinite-dark-purple" + version: "0.0.1" + installs: 9 + rating: 5 + ratings: 1 + author: "Ludwigwp" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Ludwigwp.infinite-dark-purple" + formats: null +colors: + bg: "#0F0C13" + fg: "#FFCB00" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D3D3D3" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 304 + pair: null + contrast: + fg: 78.9 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 79.6 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 107.6 diff --git a/themes/infinite-purple.yaml b/themes/infinite-purple.yaml new file mode 100644 index 00000000..8ab084c5 --- /dev/null +++ b/themes/infinite-purple.yaml @@ -0,0 +1,53 @@ +name: "Infinite Purple" +source: + marketplace_id: "Ludwigwp.infinite-purple" + version: "1.0.1" + installs: 56 + rating: 0 + ratings: 0 + author: "Ludwigwp" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Ludwigwp.infinite-purple" + formats: null +colors: + bg: "#0F0C13" + fg: "#FFD2D2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D3D3D3" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 304 + pair: null + contrast: + fg: 85.5 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 79.6 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 107.6 diff --git a/themes/inheritance--inheritance.yaml b/themes/inheritance--inheritance.yaml new file mode 100644 index 00000000..b78e2845 --- /dev/null +++ b/themes/inheritance--inheritance.yaml @@ -0,0 +1,53 @@ +name: "Inheritance (Inheritance)" +source: + marketplace_id: "icao.inheritance" + version: "0.3.0" + installs: 3312 + rating: 5 + ratings: 2 + author: "icao" + repo: "https://github.com/icao/inheritance" + url: "https://marketplace.visualstudio.com/items?itemName=icao.inheritance" + formats: null +colors: + bg: "#181919" + fg: "#BAC7E4" + black: "#181919" + red: "#FF4579" + green: "#37C756" + yellow: "#FFFA9E" + blue: "#26A5FF" + magenta: "#DE7DF7" + cyan: "#00D9FF" + white: "#F8FAFD" + brightBlack: "#7992B4" + brightRed: "#FF4579" + brightGreen: "#8DFF8D" + brightYellow: "#FFFA9E" + brightBlue: "#26A5FF" + brightMagenta: "#DE7DF7" + brightCyan: "#00D9FF" + brightWhite: "#F8FAFD" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 71.3 + black: 0 + red: 41.6 + green: 57.8 + yellow: 100.8 + blue: 49.6 + magenta: 52 + cyan: 72.1 + white: 103.2 + brightBlack: 41.5 + brightRed: 41.6 + brightGreen: 90.7 + brightYellow: 100.8 + brightBlue: 49.6 + brightMagenta: 52 + brightCyan: 72.1 + brightWhite: 103.2 diff --git a/themes/inovando.yaml b/themes/inovando.yaml new file mode 100644 index 00000000..349339f7 --- /dev/null +++ b/themes/inovando.yaml @@ -0,0 +1,53 @@ +name: "Inovando" +source: + marketplace_id: "Inovando.inovando-theme" + version: "1.0.2" + installs: 630 + rating: 0 + ratings: 0 + author: "Inovando" + repo: "https://github.com/joaorodrs/inovando-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Inovando.inovando-theme" + formats: null +colors: + bg: "#191622" + fg: "#D4D4D4" + black: "#606060" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 296 + pair: null + contrast: + fg: 79.4 + black: 19.4 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.7 + cyan: 47.5 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.5 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/insane-dark-theme.yaml b/themes/insane-dark-theme.yaml new file mode 100644 index 00000000..bae86d31 --- /dev/null +++ b/themes/insane-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "insane-dark-theme" +source: + marketplace_id: "VitorRubimPassos.insane-dark-theme" + version: "2.0.1" + installs: 824 + rating: 5 + ratings: 2 + author: "Vitor Rubim Passos" + repo: "https://github.com/vitorrubim1/insane-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=VitorRubimPassos.insane-dark-theme" + formats: null +colors: + bg: "#111111" + fg: "#F0E68C" + black: "#000000" + red: "#FC4737" + green: "#04D361" + yellow: "#E1C542" + blue: "#4863F7" + magenta: "#633BBC" + cyan: "#1EF7D0" + white: "#C4C4CC" + brightBlack: "#8D8D99" + brightRed: "#FF7373" + brightGreen: "#67FF8A" + brightYellow: "#FFFA72" + brightBlue: "#6A80FF" + brightMagenta: "#996DFF" + brightCyan: "#7BEAEA" + brightWhite: "#8D8D99" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 89.5 + black: 0 + red: 40.7 + green: 63.9 + yellow: 71.7 + blue: 28.7 + magenta: 16.8 + cyan: 85.4 + white: 70.8 + brightBlack: 41 + brightRed: 50.6 + brightGreen: 89.2 + brightYellow: 100.5 + brightBlue: 39.8 + brightMagenta: 38.9 + brightCyan: 82.9 + brightWhite: 41 diff --git a/themes/inspiration--green-kingdom.yaml b/themes/inspiration--green-kingdom.yaml new file mode 100644 index 00000000..6a3deef1 --- /dev/null +++ b/themes/inspiration--green-kingdom.yaml @@ -0,0 +1,53 @@ +name: "inspiration (Green Kingdom)" +source: + marketplace_id: "YesCode.inspiration" + version: "0.0.19" + installs: 1076 + rating: 5 + ratings: 1 + author: "YesCode" + repo: "https://github.com/yesomac/inspiration_themevsc" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" + formats: null +colors: + bg: "#2D2D53" + fg: "#D1D1F1" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#0687FF" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 282 + pair: null + contrast: + fg: 74.8 + black: 0 + red: 37.6 + green: 56.6 + yellow: 68.6 + blue: 43.1 + magenta: 15.1 + cyan: 45 + white: 42.8 + brightBlack: 14.2 + brightRed: 37.6 + brightGreen: 34 + brightYellow: 75.3 + brightBlue: 14.3 + brightMagenta: 15.1 + brightCyan: 45 + brightWhite: 94.4 diff --git a/themes/inspiration--sober-deepnight.yaml b/themes/inspiration--sober-deepnight.yaml new file mode 100644 index 00000000..1b71b230 --- /dev/null +++ b/themes/inspiration--sober-deepnight.yaml @@ -0,0 +1,53 @@ +name: "inspiration (Sober Deepnight)" +source: + marketplace_id: "YesCode.inspiration" + version: "0.0.19" + installs: 1076 + rating: 5 + ratings: 1 + author: "YesCode" + repo: "https://github.com/yesomac/inspiration_themevsc" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.inspiration" + formats: null +colors: + bg: "#04080E" + fg: "#DAE3FC" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#0687FF" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 252 + pair: null + contrast: + fg: 89.7 + black: 0 + red: 42.9 + green: 61.9 + yellow: 74 + blue: 48.4 + magenta: 20.4 + cyan: 50.4 + white: 48.2 + brightBlack: 19.5 + brightRed: 42.9 + brightGreen: 39.3 + brightYellow: 80.7 + brightBlue: 19.6 + brightMagenta: 20.4 + brightCyan: 50.4 + brightWhite: 99.8 diff --git a/themes/intellij-idea-islands-theme--intellij-idea-islands-dark.yaml b/themes/intellij-idea-islands-theme--intellij-idea-islands-dark.yaml new file mode 100644 index 00000000..fb6203b5 --- /dev/null +++ b/themes/intellij-idea-islands-theme--intellij-idea-islands-dark.yaml @@ -0,0 +1,53 @@ +name: "IntelliJ IDEA Islands Theme (intellij-idea-islands-dark)" +source: + marketplace_id: "OleksandrHavrysh.vscode-intellij-theme" + version: "1.1.1" + installs: 2891 + rating: 5 + ratings: 2 + author: "Oleksandr Havrysh" + repo: "https://github.com/a-havrysh/vscode-intellij-theme" + url: "https://marketplace.visualstudio.com/items?itemName=OleksandrHavrysh.vscode-intellij-theme" + formats: null +colors: + bg: "#191A1C" + fg: "#BCBEC4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 66.1 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/intellij-idea-islands-theme--intellij-idea-islands-light.yaml b/themes/intellij-idea-islands-theme--intellij-idea-islands-light.yaml new file mode 100644 index 00000000..f372b8cb --- /dev/null +++ b/themes/intellij-idea-islands-theme--intellij-idea-islands-light.yaml @@ -0,0 +1,53 @@ +name: "IntelliJ IDEA Islands Theme (intellij-idea-islands-light)" +source: + marketplace_id: "OleksandrHavrysh.vscode-intellij-theme" + version: "1.1.1" + installs: 2891 + rating: 5 + ratings: 2 + author: "Oleksandr Havrysh" + repo: "https://github.com/a-havrysh/vscode-intellij-theme" + url: "https://marketplace.visualstudio.com/items?itemName=OleksandrHavrysh.vscode-intellij-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#080808" + black: "#080808" + red: "#DE1B2E" + green: "#067D17" + yellow: "#9E880D" + blue: "#0033B3" + magenta: "#871094" + cyan: "#007E8A" + white: "#FFFFFF" + brightBlack: "#6C707E" + brightRed: "#F05661" + brightGreen: "#7FC784" + brightYellow: "#F2BF57" + brightBlue: "#88ADF7" + brightMagenta: "#A678F2" + brightCyan: "#00B5BC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.9 + black: 105.9 + red: 71.6 + green: 75.8 + yellow: 62.5 + blue: 91.6 + magenta: 86.9 + cyan: 72.9 + white: 0 + brightBlack: 74.2 + brightRed: 60.3 + brightGreen: 39.1 + brightYellow: 30.2 + brightBlue: 44.1 + brightMagenta: 58.8 + brightCyan: 48.8 + brightWhite: 0 diff --git a/themes/intellij-idea-new-ui-theme.yaml b/themes/intellij-idea-new-ui-theme.yaml new file mode 100644 index 00000000..15a7c8cc --- /dev/null +++ b/themes/intellij-idea-new-ui-theme.yaml @@ -0,0 +1,53 @@ +name: "IntelliJ IDEA New UI Theme" +source: + marketplace_id: "AnandaBibekRay.intellij-idea-new-ui-theme" + version: "1.0.5" + installs: 23373 + rating: 4 + ratings: 4 + author: "Ananda Bibek Ray" + repo: "https://github.com/anandbibek/vscode-intellij-new-ui-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AnandaBibekRay.intellij-idea-new-ui-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#6E6E6E" + red: "#D70000" + green: "#5F8700" + yellow: "#AF8700" + blue: "#0087FF" + magenta: "#AF005F" + cyan: "#00AFAF" + white: "#E4E4E4" + brightBlack: "#1C1C1C" + brightRed: "#D75F00" + brightGreen: "#585858" + brightYellow: "#626262" + brightBlue: "#808080" + brightMagenta: "#5F5FAF" + brightCyan: "#8A8A8A" + brightWhite: "#FFFFD7" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 106 + black: 75.2 + red: 73.9 + green: 69 + yellow: 60.6 + blue: 62.3 + magenta: 81.9 + cyan: 51.9 + white: 13.5 + brightBlack: 104 + brightRed: 64.7 + brightGreen: 84.7 + brightYellow: 80.5 + brightBlue: 66.9 + brightMagenta: 77.9 + brightCyan: 62.1 + brightWhite: 0 diff --git a/themes/intellij-theme.yaml b/themes/intellij-theme.yaml new file mode 100644 index 00000000..b0e07d82 --- /dev/null +++ b/themes/intellij-theme.yaml @@ -0,0 +1,53 @@ +name: "IntelliJ Theme" +source: + marketplace_id: "arzg.intellij-theme" + version: "1.11.0" + installs: 97371 + rating: 5 + ratings: 1 + author: "arzg" + repo: "https://github.com/arzg/intellij-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arzg.intellij-theme" + formats: null +colors: + bg: "#2B2B2B" + fg: "#B4B4B4" + black: "#313131" + red: "#F0524F" + green: "#5C962C" + yellow: "#A68A0D" + blue: "#3993D4" + magenta: "#A771BF" + cyan: "#00A3A3" + white: "#B4B4B4" + brightBlack: "#818181" + brightRed: "#FF4050" + brightGreen: "#4FC414" + brightYellow: "#E5BF00" + brightBlue: "#1FB0FF" + brightMagenta: "#ED7EED" + brightCyan: "#00E5E5" + brightWhite: "#B4B4B4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 57.7 + black: 0 + red: 36.3 + green: 34.4 + yellow: 36.9 + blue: 37.3 + magenta: 33.7 + cyan: 40.4 + white: 57.7 + brightBlack: 31.2 + brightRed: 37.3 + brightGreen: 53.8 + brightYellow: 66 + brightBlue: 51.1 + brightMagenta: 51.5 + brightCyan: 73.6 + brightWhite: 57.7 diff --git a/themes/intelliyay-theme.yaml b/themes/intelliyay-theme.yaml new file mode 100644 index 00000000..f57aea65 --- /dev/null +++ b/themes/intelliyay-theme.yaml @@ -0,0 +1,53 @@ +name: "IntelliYay Theme" +source: + marketplace_id: "ale-ferrero.intelliyay-theme" + version: "0.0.4" + installs: 197 + rating: 0 + ratings: 0 + author: "Alejandro Ferrero" + repo: "https://github.com/aleferrero98/IntelliYay-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ale-ferrero.intelliyay-theme" + formats: null +colors: + bg: "#1E1F22" + fg: "#A9B7C6" + black: "#FFFFFF" + red: "#FF6B68" + green: "#A8C023" + yellow: "#D6BF55" + blue: "#5394EC" + magenta: "#AE8ABE" + cyan: "#299999" + white: "#999999" + brightBlack: "#555555" + brightRed: "#FF8785" + brightGreen: "#A8C023" + brightYellow: "#FFFF00" + brightBlue: "#7EAEF1" + brightMagenta: "#FF99FF" + brightCyan: "#6CDADA" + brightWhite: "#1F1F1F" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 60.5 + black: 105.9 + red: 47.1 + green: 60.5 + yellow: 66.3 + blue: 42.3 + magenta: 44.2 + cyan: 38.2 + white: 45.2 + brightBlack: 14.1 + brightRed: 54.8 + brightGreen: 60.5 + brightYellow: 100.7 + brightBlue: 55.3 + brightMagenta: 65.6 + brightCyan: 72.1 + brightWhite: 0 diff --git a/themes/ironman-theme-light-dark--ironman-theme-dark.yaml b/themes/ironman-theme-light-dark--ironman-theme-dark.yaml new file mode 100644 index 00000000..92158e20 --- /dev/null +++ b/themes/ironman-theme-light-dark--ironman-theme-dark.yaml @@ -0,0 +1,53 @@ +name: "IronMan Theme (Light + Dark) (Ironman Theme Dark)" +source: + marketplace_id: "rohit-chouhan.ironman-theme" + version: "1.0.6" + installs: 3740 + rating: 5 + ratings: 2 + author: "Rohit Chouhan" + repo: "https://github.com/rohit-chouhan/" + url: "https://marketplace.visualstudio.com/items?itemName=rohit-chouhan.ironman-theme" + formats: null +colors: + bg: "#110E17" + fg: "#715F5F" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: 300 + pair: null + contrast: + fg: 21.5 + black: 0 + red: 27.3 + green: 52.3 + yellow: 43.4 + blue: 15.6 + magenta: 26.7 + cyan: 40.7 + white: 15.7 + brightBlack: 22.6 + brightRed: 27.3 + brightGreen: 60.9 + brightYellow: 60.9 + brightBlue: 15.6 + brightMagenta: 26.7 + brightCyan: 40.7 + brightWhite: 53.1 diff --git a/themes/ironman-theme-light-dark--ironman-theme-light.yaml b/themes/ironman-theme-light-dark--ironman-theme-light.yaml new file mode 100644 index 00000000..11c68412 --- /dev/null +++ b/themes/ironman-theme-light-dark--ironman-theme-light.yaml @@ -0,0 +1,53 @@ +name: "IronMan Theme (Light + Dark) (Ironman Theme Light)" +source: + marketplace_id: "rohit-chouhan.ironman-theme" + version: "1.0.6" + installs: 3740 + rating: 5 + ratings: 2 + author: "Rohit Chouhan" + repo: "https://github.com/rohit-chouhan/" + url: "https://marketplace.visualstudio.com/items?itemName=rohit-chouhan.ironman-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#715F5F" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/irrelevant--mirai.yaml b/themes/irrelevant--mirai.yaml new file mode 100644 index 00000000..bc6b3284 --- /dev/null +++ b/themes/irrelevant--mirai.yaml @@ -0,0 +1,54 @@ +name: "Irrelevant (mirai)" +source: + marketplace_id: "Volskaya.irrelevant" + version: "0.0.2" + installs: 33 + rating: 0 + ratings: 0 + author: "Volskaya" + repo: "https://github.com/volskaya/irrelevant" + url: "https://marketplace.visualstudio.com/items?itemName=Volskaya.irrelevant" + formats: + nvim: "https://raw.githubusercontent.com/volskaya/irrelevant/main/extensions/neovim/lua/irrelevant/colors.lua" +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#1C1C1C" + red: "#FCF707" + green: "#FF1652" + yellow: "#FCF707" + blue: "#878787" + magenta: "#979797" + cyan: "#A6A6A6" + white: "#444444" + brightBlack: "#666666" + brightRed: "#FCF707" + brightGreen: "#FF1652" + brightYellow: "#DDDDDD" + brightBlue: "#878787" + brightMagenta: "#979797" + brightCyan: "#A6A6A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 106.3 + black: 0 + red: 96.8 + green: 36.8 + yellow: 96.8 + blue: 36.6 + magenta: 44.6 + cyan: 52.5 + white: 8.3 + brightBlack: 21.5 + brightRed: 96.8 + brightGreen: 36.8 + brightYellow: 84.4 + brightBlue: 36.6 + brightMagenta: 44.6 + brightCyan: 52.5 + brightWhite: 106.3 diff --git a/themes/islands-theme--islands-dark.yaml b/themes/islands-theme--islands-dark.yaml new file mode 100644 index 00000000..0d7d240c --- /dev/null +++ b/themes/islands-theme--islands-dark.yaml @@ -0,0 +1,53 @@ +name: "Islands Theme (Islands Dark)" +source: + marketplace_id: "kangsou.islands-theme" + version: "1.0.5" + installs: 2907 + rating: 5 + ratings: 1 + author: "kangsou" + repo: "https://github.com/guxiaohui/islands-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kangsou.islands-theme" + formats: null +colors: + bg: "#191A1C" + fg: "#BCBEC4" + black: "#191A1C" + red: "#F75464" + green: "#6AAB73" + yellow: "#E0BB65" + blue: "#56A8F5" + magenta: "#C77DBB" + cyan: "#2AACB8" + white: "#BCBEC4" + brightBlack: "#6F737A" + brightRed: "#FA6675" + brightGreen: "#73BD79" + brightYellow: "#F2C55C" + brightBlue: "#70AEFF" + brightMagenta: "#CF84CF" + brightCyan: "#42C3D4" + brightWhite: "#CED0D6" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 66.1 + black: 0 + red: 41.3 + green: 47.8 + yellow: 67 + blue: 51.4 + magenta: 44.4 + cyan: 48.1 + white: 66.1 + brightBlack: 27.3 + brightRed: 45.8 + brightGreen: 56.3 + brightYellow: 73.8 + brightBlue: 55.9 + brightMagenta: 48.8 + brightCyan: 60.1 + brightWhite: 76.8 diff --git a/themes/islands-theme--islands-light.yaml b/themes/islands-theme--islands-light.yaml new file mode 100644 index 00000000..e13b4262 --- /dev/null +++ b/themes/islands-theme--islands-light.yaml @@ -0,0 +1,53 @@ +name: "Islands Theme (Islands Light)" +source: + marketplace_id: "kangsou.islands-theme" + version: "1.0.5" + installs: 2907 + rating: 5 + ratings: 1 + author: "kangsou" + repo: "https://github.com/guxiaohui/islands-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kangsou.islands-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#080808" + black: "#000000" + red: "#DE1B2E" + green: "#067D17" + yellow: "#9E880D" + blue: "#0033B3" + magenta: "#871094" + cyan: "#007EBD" + white: "#808080" + brightBlack: "#6C707E" + brightRed: "#F50000" + brightGreen: "#0A8A21" + brightYellow: "#B89910" + brightBlue: "#174BE6" + brightMagenta: "#A01CAC" + brightCyan: "#0095D4" + brightWhite: "#AEB3C2" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.9 + black: 106 + red: 71.6 + green: 75.8 + yellow: 62.5 + blue: 91.6 + magenta: 86.9 + cyan: 70.2 + white: 66.9 + brightBlack: 74.2 + brightRed: 66.6 + brightGreen: 70.6 + brightYellow: 53.1 + brightBlue: 81.5 + brightMagenta: 80.4 + brightCyan: 60.4 + brightWhite: 41 diff --git a/themes/iv.yaml b/themes/iv.yaml new file mode 100644 index 00000000..bfe40262 --- /dev/null +++ b/themes/iv.yaml @@ -0,0 +1,53 @@ +name: "iv" +source: + marketplace_id: "riyuzenn.iv" + version: "0.0.3" + installs: 1278 + rating: 5 + ratings: 2 + author: "riyuzenn" + repo: "https://github.com/riyuzenn/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=riyuzenn.iv" + formats: null +colors: + bg: "#0C0C0C" + fg: "#A0A0A0" + black: "#212121" + red: "#9D7B7D" + green: "#7B9D7C" + yellow: "#B7976A" + blue: "#687589" + magenta: "#937193" + cyan: "#628483" + white: "#A0A0A0" + brightBlack: "#353535" + brightRed: "#A78587" + brightGreen: "#85A786" + brightYellow: "#C1A174" + brightBlue: "#8593A7" + brightMagenta: "#C8B5E6" + brightCyan: "#85A7A6" + brightWhite: "#BEBEBE" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 50.6 + black: 0 + red: 36.2 + green: 44.6 + yellow: 48.6 + blue: 29 + magenta: 32.7 + cyan: 33.5 + white: 50.6 + brightBlack: 0 + brightRed: 41 + brightGreen: 49.8 + brightYellow: 53.9 + brightBlue: 43.3 + brightMagenta: 66.8 + brightCyan: 50.9 + brightWhite: 67.2 diff --git a/themes/ivalo.yaml b/themes/ivalo.yaml new file mode 100644 index 00000000..413ec3e8 --- /dev/null +++ b/themes/ivalo.yaml @@ -0,0 +1,53 @@ +name: "Ivalo" +source: + marketplace_id: "naethiel.ivalo" + version: "0.1.0" + installs: 1566 + rating: 5 + ratings: 2 + author: "Naethiel" + repo: "https://github.com/naethiel/ivalo" + url: "https://marketplace.visualstudio.com/items?itemName=naethiel.ivalo" + formats: null +colors: + bg: "#1B1F26" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#6ED3CA" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 262 + pair: null + contrast: + fg: 84.4 + black: 0 + red: 32 + green: 60.7 + yellow: 75.4 + blue: 47.7 + magenta: 45.5 + cyan: 68.2 + white: 91.4 + brightBlack: 14.4 + brightRed: 32 + brightGreen: 60.7 + brightYellow: 75.4 + brightBlue: 47.7 + brightMagenta: 45.5 + brightCyan: 59.6 + brightWhite: 95.3 diff --git a/themes/iwa-code-theme.yaml b/themes/iwa-code-theme.yaml new file mode 100644 index 00000000..d7b9bccf --- /dev/null +++ b/themes/iwa-code-theme.yaml @@ -0,0 +1,53 @@ +name: "iwa-code-theme" +source: + marketplace_id: "iwa.iwa-code-theme" + version: "0.1.3" + installs: 29 + rating: 0 + ratings: 0 + author: "iwa" + repo: "https://github.com/iwa/iwa-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=iwa.iwa-code-theme" + formats: null +colors: + bg: "#27282E" + fg: "#ABB2BF" + black: "#202126" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#56B6C2" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D0D0D0" + brightBlack: "#808080" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#56B6C2" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 278 + pair: null + contrast: + fg: 56.9 + black: 0 + red: 39.6 + green: 59.8 + yellow: 68.1 + blue: 52.1 + magenta: 42.6 + cyan: 52.1 + white: 74.6 + brightBlack: 31.3 + brightRed: 39.6 + brightGreen: 59.8 + brightYellow: 68.1 + brightBlue: 52.1 + brightMagenta: 42.6 + brightCyan: 52.1 + brightWhite: 104.4 diff --git a/themes/j-cardenas.yaml b/themes/j-cardenas.yaml new file mode 100644 index 00000000..e6d4cc98 --- /dev/null +++ b/themes/j-cardenas.yaml @@ -0,0 +1,53 @@ +name: "j-cardenas" +source: + marketplace_id: "JCardenas.j-cardenas" + version: "0.0.1" + installs: 133 + rating: 0 + ratings: 0 + author: "JCardenas" + repo: "https://github.com/Car-png/jcardenas-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JCardenas.j-cardenas" + formats: null +colors: + bg: "#202124" + fg: "#796880" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 24.2 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.8 diff --git a/themes/jamestheme.yaml b/themes/jamestheme.yaml new file mode 100644 index 00000000..2cea7090 --- /dev/null +++ b/themes/jamestheme.yaml @@ -0,0 +1,53 @@ +name: "JamesTheme" +source: + marketplace_id: "Jamers.jamestheme" + version: "0.0.4" + installs: 12 + rating: 0 + ratings: 0 + author: "Jamers" + repo: "https://github.com/kokjp1/jamestheme" + url: "https://marketplace.visualstudio.com/items?itemName=Jamers.jamestheme" + formats: null +colors: + bg: "#21202E" + fg: "#DEDEDE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 288 + pair: null + contrast: + fg: 84.3 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.1 + magenta: 28.4 + cyan: 46.2 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.2 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.7 + brightMagenta: 44 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/jammy-jellyfish-color-theme.yaml b/themes/jammy-jellyfish-color-theme.yaml new file mode 100644 index 00000000..fe02427b --- /dev/null +++ b/themes/jammy-jellyfish-color-theme.yaml @@ -0,0 +1,53 @@ +name: "Jammy Jellyfish Color Theme" +source: + marketplace_id: "kevinnorman.jammy-jellyfish-color-theme" + version: "1.1.1" + installs: 7093 + rating: 0 + ratings: 0 + author: "Kevin Norman" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kevinnorman.jammy-jellyfish-color-theme" + formats: null +colors: + bg: "#242424" + fg: "#B6B6B6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 60.2 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/jarvis-3d-iron-man-theme.yaml b/themes/jarvis-3d-iron-man-theme.yaml new file mode 100644 index 00000000..a25edafd --- /dev/null +++ b/themes/jarvis-3d-iron-man-theme.yaml @@ -0,0 +1,53 @@ +name: "Jarvis 3D - Iron Man Theme" +source: + marketplace_id: "nextgencode.jarvis-3d-theme" + version: "1.1.0" + installs: 80 + rating: 0 + ratings: 0 + author: "NextGenCode" + repo: "https://github.com/Mattzey/jarvis-3d-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.jarvis-3d-theme" + formats: null +colors: + bg: "#0A1628" + fg: "#E0F7FF" + black: "#0A1628" + red: "#FF4757" + green: "#00FF9F" + yellow: "#FFAA00" + blue: "#4D9FFF" + magenta: "#6A5AFF" + cyan: "#00D9FF" + white: "#E0F7FF" + brightBlack: "#2D5A7A" + brightRed: "#FF6B6B" + brightGreen: "#5AFFB8" + brightYellow: "#FFD95A" + brightBlue: "#7AB8FF" + brightMagenta: "#8D7AFF" + brightCyan: "#5AFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 258 + pair: null + contrast: + fg: 99 + black: 0 + red: 41.4 + green: 87.4 + yellow: 65.5 + blue: 48.6 + magenta: 29.1 + cyan: 72.3 + white: 99 + brightBlack: 15.7 + brightRed: 48.1 + brightGreen: 89.5 + brightYellow: 84.6 + brightBlue: 61 + brightMagenta: 40.6 + brightCyan: 92.6 + brightWhite: 106.9 diff --git a/themes/jarvisdarktheme--jarvis.yaml b/themes/jarvisdarktheme--jarvis.yaml new file mode 100644 index 00000000..8fa6131b --- /dev/null +++ b/themes/jarvisdarktheme--jarvis.yaml @@ -0,0 +1,53 @@ +name: "JarvisDarkTheme (Jarvis)" +source: + marketplace_id: "ArmandoChaparro.jarvisdarktheme" + version: "1.6.0" + installs: 1759 + rating: 5 + ratings: 1 + author: "Armando Chaparro" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ArmandoChaparro.jarvisdarktheme" + formats: null +colors: + bg: "#1F1F1F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 105.9 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/jaywxl.yaml b/themes/jaywxl.yaml new file mode 100644 index 00000000..c2989187 --- /dev/null +++ b/themes/jaywxl.yaml @@ -0,0 +1,53 @@ +name: "jaywxl" +source: + marketplace_id: "Jaywxl.jaytheme" + version: "0.0.6" + installs: 53 + rating: 0 + ratings: 0 + author: "Jaywxl" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Jaywxl.jaytheme" + formats: null +colors: + bg: "#06272E" + fg: "#FFB5B5" + black: "#CB4646" + red: "#CD3131" + green: "#0DBC79" + yellow: "#2C2C14" + blue: "#2472C8" + magenta: "#5687FB" + cyan: "#11A8CD" + white: "#CD7070" + brightBlack: "#FF5353" + brightRed: "#DB7878" + brightGreen: "#23D18B" + brightYellow: "#7D7D27" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#AB5252" +meta: + mode: "dark" + accent: "orange" + hue: 215 + pair: null + contrast: + fg: 70.6 + black: 27.5 + red: 25 + green: 51.3 + yellow: 0 + blue: 25.7 + magenta: 38.3 + cyan: 45.8 + white: 37.6 + brightBlack: 41.3 + brightRed: 42.5 + brightGreen: 61.8 + brightYellow: 28.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 23.8 diff --git a/themes/jb-autumn.yaml b/themes/jb-autumn.yaml new file mode 100644 index 00000000..fe66b1dd --- /dev/null +++ b/themes/jb-autumn.yaml @@ -0,0 +1,53 @@ +name: "jb Autumn" +source: + marketplace_id: "brinklju.jb-autumn" + version: "0.4.0" + installs: 294 + rating: 5 + ratings: 1 + author: "brinklju" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=brinklju.jb-autumn" + formats: null +colors: + bg: "#171316" + fg: "#FFF8BC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2473C8" + magenta: "#BC3FBC" + cyan: "#11A7CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8DEA" + brightMagenta: "#D670D6" + brightCyan: "#29B7DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.1 + black: 0 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 28 + magenta: 30 + cyan: 47.4 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 39.9 + brightMagenta: 45.6 + brightCyan: 55.2 + brightWhite: 90.3 diff --git a/themes/jcela.yaml b/themes/jcela.yaml new file mode 100644 index 00000000..295dd0e8 --- /dev/null +++ b/themes/jcela.yaml @@ -0,0 +1,53 @@ +name: "JCEla" +source: + marketplace_id: "JCEla.JCEla-T" + version: "0.2.0" + installs: 94 + rating: 5 + ratings: 1 + author: "JCEla" + repo: "https://github.com/Car-png/JCEla" + url: "https://marketplace.visualstudio.com/items?itemName=JCEla.JCEla-T" + formats: null +colors: + bg: "#1C1E28" + fg: "#796880" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 276 + pair: null + contrast: + fg: 24.5 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.7 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/jdh-vimrc.yaml b/themes/jdh-vimrc.yaml new file mode 100644 index 00000000..41f40edf --- /dev/null +++ b/themes/jdh-vimrc.yaml @@ -0,0 +1,53 @@ +name: "jdh-vimrc" +source: + marketplace_id: "starnumber.jdh-vimrc" + version: "0.0.1" + installs: 467 + rating: 0 + ratings: 0 + author: "StarNumber" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=starnumber.jdh-vimrc" + formats: null +colors: + bg: "#262626" + fg: "#6C6C6C" + black: "#0C0C0C" + red: "#C50F1F" + green: "#178713" + yellow: "#C19C00" + blue: "#0037DA" + magenta: "#B4009E" + cyan: "#3B78FF" + white: "#C1C1C1" + brightBlack: "#585858" + brightRed: "#E74856" + brightGreen: "#16C60C" + brightYellow: "#F9F1A5" + brightBlue: "#3767D1" + brightMagenta: "#FF5F87" + brightCyan: "#61D6D6" + brightWhite: "#AFAFAF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 22.5 + black: 0 + red: 20.7 + green: 26.9 + yellow: 48 + blue: 12.2 + magenta: 20.6 + cyan: 32.3 + white: 66.1 + brightBlack: 14.2 + brightRed: 33.8 + brightGreen: 54.4 + brightYellow: 93.9 + brightBlue: 23.2 + brightMagenta: 44.3 + brightCyan: 68.4 + brightWhite: 55.9 diff --git a/themes/jeng-theme-light.yaml b/themes/jeng-theme-light.yaml new file mode 100644 index 00000000..2e4dd7b0 --- /dev/null +++ b/themes/jeng-theme-light.yaml @@ -0,0 +1,53 @@ +name: "Jeng Theme Light" +source: + marketplace_id: "jeng.jeng-theme-light" + version: "1.0.5" + installs: 17378 + rating: 5 + ratings: 2 + author: "jeng" + repo: "https://github.com/jengjeng/jeng-theme-light" + url: "https://marketplace.visualstudio.com/items?itemName=jeng.jeng-theme-light" + formats: null +colors: + bg: "#FAFAFA" + fg: "#5C6066" + black: "#000000" + red: "#F2590C" + green: "#77CC00" + yellow: "#F29718" + blue: "#41A6D9" + magenta: "#9966CC" + cyan: "#4DBF99" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#D6656A" + brightGreen: "#A3D900" + brightYellow: "#E7C547" + brightBlue: "#6871FF" + brightMagenta: "#A37ACC" + brightCyan: "#57D9AD" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 78.5 + black: 103 + red: 57.2 + green: 35.7 + yellow: 41.5 + blue: 49.6 + magenta: 64.9 + cyan: 41.6 + white: 27.1 + brightBlack: 74.9 + brightRed: 59.5 + brightGreen: 26.5 + brightYellow: 26.7 + brightBlue: 63 + brightMagenta: 58.2 + brightCyan: 28.9 + brightWhite: 0 diff --git a/themes/jetbrains-fleet-theme.yaml b/themes/jetbrains-fleet-theme.yaml new file mode 100644 index 00000000..e398e69f --- /dev/null +++ b/themes/jetbrains-fleet-theme.yaml @@ -0,0 +1,53 @@ +name: "Jetbrains Fleet Theme" +source: + marketplace_id: "MichaelZhou.fleet-theme" + version: "1.3.10" + installs: 84487 + rating: 5 + ratings: 8 + author: "Michael Zhou" + repo: "https://github.com/Michaelzhouisnotwhite/Jetbrains-Fleet-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MichaelZhou.fleet-theme" + formats: null +colors: + bg: "#181818" + fg: "#D6D6DD" + black: "#676767" + red: "#F14C4C" + green: "#15AC91" + yellow: "#E5B95C" + blue: "#4C9DF3" + magenta: "#E567DC" + cyan: "#75D3BA" + white: "#D6D6DD" + brightBlack: "#676767" + brightRed: "#F14C4C" + brightGreen: "#15AC91" + brightYellow: "#E5B95C" + brightBlue: "#4C9DF3" + brightMagenta: "#E567DC" + brightCyan: "#75D3BA" + brightWhite: "#D6D6DD" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.9 + black: 22.4 + red: 38.5 + green: 46.5 + yellow: 67.1 + blue: 46.7 + magenta: 46.4 + cyan: 68.8 + white: 80.9 + brightBlack: 22.4 + brightRed: 38.5 + brightGreen: 46.5 + brightYellow: 67.1 + brightBlue: 46.7 + brightMagenta: 46.4 + brightCyan: 68.8 + brightWhite: 80.9 diff --git a/themes/jetbrains-theme--jetbrains-dark-theme.yaml b/themes/jetbrains-theme--jetbrains-dark-theme.yaml new file mode 100644 index 00000000..0809b1b2 --- /dev/null +++ b/themes/jetbrains-theme--jetbrains-dark-theme.yaml @@ -0,0 +1,54 @@ +name: "JetBrains Theme (JetBrains Dark Theme)" +source: + marketplace_id: "kenethriera.jb-theme" + version: "1.0.27" + installs: 5715 + rating: 5 + ratings: 4 + author: "Keneth Riera" + repo: "https://github.com/rierarizzo/jetbrains-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kenethriera.jb-theme" + formats: + android-studio: "https://raw.githubusercontent.com/rierarizzo/jetbrains-theme/main/jetbrains-dark-color-scheme.icls" +colors: + bg: "#1E1F22" + fg: "#BCBEC4" + black: "#151515" + red: "#AC4142" + green: "#7E8E50" + yellow: "#E5B567" + blue: "#6C99BB" + magenta: "#9F4E85" + cyan: "#7DD6CF" + white: "#D0D0D0" + brightBlack: "#505050" + brightRed: "#AC4142" + brightGreen: "#7E8E50" + brightYellow: "#E5B567" + brightBlue: "#6C99BB" + brightMagenta: "#9F4E85" + brightCyan: "#7DD6CF" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.5 + black: 0 + red: 21.3 + green: 36.4 + yellow: 64.8 + blue: 42.7 + magenta: 23.3 + cyan: 70.7 + white: 76.1 + brightBlack: 12.2 + brightRed: 21.3 + brightGreen: 36.4 + brightYellow: 64.8 + brightBlue: 42.7 + brightMagenta: 23.3 + brightCyan: 70.7 + brightWhite: 99.3 diff --git a/themes/jetbrains-theme--jetbrains-deep-dark-theme.yaml b/themes/jetbrains-theme--jetbrains-deep-dark-theme.yaml new file mode 100644 index 00000000..61dc1092 --- /dev/null +++ b/themes/jetbrains-theme--jetbrains-deep-dark-theme.yaml @@ -0,0 +1,54 @@ +name: "JetBrains Theme (JetBrains Deep Dark Theme)" +source: + marketplace_id: "kenethriera.jb-theme" + version: "1.0.27" + installs: 5715 + rating: 5 + ratings: 4 + author: "Keneth Riera" + repo: "https://github.com/rierarizzo/jetbrains-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kenethriera.jb-theme" + formats: + android-studio: "https://raw.githubusercontent.com/rierarizzo/jetbrains-theme/main/jetbrains-dark-color-scheme.icls" +colors: + bg: "#121314" + fg: "#BBBEBF" + black: "#2A2A2A" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#2A2A2A" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#ABB2BF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 66.5 + black: 0 + red: 42.4 + green: 62.6 + yellow: 70.9 + blue: 55 + magenta: 45.5 + cyan: 54.9 + white: 59.8 + brightBlack: 0 + brightRed: 42.4 + brightGreen: 62.6 + brightYellow: 70.9 + brightBlue: 55 + brightMagenta: 45.5 + brightCyan: 54.9 + brightWhite: 59.8 diff --git a/themes/jetvibe.yaml b/themes/jetvibe.yaml new file mode 100644 index 00000000..cbc5ee8e --- /dev/null +++ b/themes/jetvibe.yaml @@ -0,0 +1,53 @@ +name: "JetVibe" +source: + marketplace_id: "igorhaf.jetvibe" + version: "0.1.11" + installs: 80 + rating: 0 + ratings: 0 + author: "Igor Herson" + repo: "https://github.com/igorhaf/jetvibe" + url: "https://marketplace.visualstudio.com/items?itemName=igorhaf.jetvibe" + formats: null +colors: + bg: "#1E1F22" + fg: "#E2E8F0" + black: "#000000" + red: "#CC6666" + green: "#6A8759" + yellow: "#C2C277" + blue: "#6699CC" + magenta: "#B77DBA" + cyan: "#5FB3B3" + white: "#A9B7C6" + brightBlack: "#5B5B5B" + brightRed: "#FF6B68" + brightGreen: "#8DCB6C" + brightYellow: "#E6E677" + brightBlue: "#7CA7D8" + brightMagenta: "#CFA0D4" + brightCyan: "#7FCFCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 90.5 + black: 0 + red: 35.5 + green: 32.2 + yellow: 65.4 + blue: 43.2 + magenta: 41.2 + cyan: 52.1 + white: 60.5 + brightBlack: 16.5 + brightRed: 47.1 + brightGreen: 63.7 + brightYellow: 86.2 + brightBlue: 50.8 + brightMagenta: 57.4 + brightCyan: 67.7 + brightWhite: 105.9 diff --git a/themes/jo-o-dark-theme.yaml b/themes/jo-o-dark-theme.yaml new file mode 100644 index 00000000..0b8b7ae3 --- /dev/null +++ b/themes/jo-o-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "João Dark Theme" +source: + marketplace_id: "JooCampos.joao-campos-dark-theme" + version: "0.0.6" + installs: 28 + rating: 0 + ratings: 0 + author: "João Campos" + repo: "https://github.com/joaonevescampos/joao-campos-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JooCampos.joao-campos-dark-theme" + formats: null +colors: + bg: "#141D2E" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 263 + pair: null + contrast: + fg: 106.1 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29 + cyan: 46.8 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.8 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.6 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/joeel56-halloween-theme.yaml b/themes/joeel56-halloween-theme.yaml new file mode 100644 index 00000000..5c20fc6e --- /dev/null +++ b/themes/joeel56-halloween-theme.yaml @@ -0,0 +1,53 @@ +name: "Joeel56 Halloween Theme" +source: + marketplace_id: "Joeel56.halloween-theme-color-theme" + version: "1.0.1" + installs: 57 + rating: 0 + ratings: 0 + author: "Joeel56" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Joeel56.halloween-theme-color-theme" + formats: null +colors: + bg: "#201D31" + fg: "#7770A3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 290 + pair: null + contrast: + fg: 28.1 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 88.9 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/joey.yaml b/themes/joey.yaml new file mode 100644 index 00000000..dd00933a --- /dev/null +++ b/themes/joey.yaml @@ -0,0 +1,53 @@ +name: "joey" +source: + marketplace_id: "xshapira.joey-theme" + version: "3.3.8" + installs: 1139 + rating: 5 + ratings: 7 + author: "xshapira" + repo: "https://github.com/xshapira/joey" + url: "https://marketplace.visualstudio.com/items?itemName=xshapira.joey-theme" + formats: null +colors: + bg: "#1F2023" + fg: "#BCB28D" + black: "#2C5A65" + red: "#E03C8A" + green: "#4EC9B0" + yellow: "#E6844F" + blue: "#6796E6" + magenta: "#A58EDC" + cyan: "#69B0AC" + white: "#EEE8D5" + brightBlack: "#666666" + brightRed: "#E6844F" + brightGreen: "#5C8490" + brightYellow: "#657B83" + brightBlue: "#58B2DC" + brightMagenta: "#646695" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 58.5 + black: 13.6 + red: 33.1 + green: 60.9 + yellow: 47.7 + blue: 43.6 + magenta: 45.9 + cyan: 50.9 + white: 90.8 + brightBlack: 20.9 + brightRed: 47.7 + brightGreen: 31.7 + brightYellow: 28.6 + brightBlue: 53.2 + brightMagenta: 22.6 + brightCyan: 47.8 + brightWhite: 100 diff --git a/themes/jojobii-vscode-colors.yaml b/themes/jojobii-vscode-colors.yaml new file mode 100644 index 00000000..5ab9e671 --- /dev/null +++ b/themes/jojobii-vscode-colors.yaml @@ -0,0 +1,53 @@ +name: "jojobii-vscode-colors" +source: + marketplace_id: "jojobii.jojobii-vscode-colors" + version: "0.1.0" + installs: 254 + rating: 0 + ratings: 0 + author: "jojobii" + repo: "https://github.com/jojobii-arks/jojobii-arks" + url: "https://marketplace.visualstudio.com/items?itemName=jojobii.jojobii-vscode-colors" + formats: null +colors: + bg: "#282A3A" + fg: "#EAF2F1" + black: "#3A3D4B" + red: "#FF657A" + green: "#BAD761" + yellow: "#FFD76D" + blue: "#FF9B5E" + magenta: "#C39AC9" + cyan: "#9CD1BB" + white: "#EAF2F1" + brightBlack: "#696D77" + brightRed: "#FF657A" + brightGreen: "#BAD761" + brightYellow: "#FFD76D" + brightBlue: "#FF9B5E" + brightMagenta: "#C39AC9" + brightCyan: "#9CD1BB" + brightWhite: "#EAF2F1" +meta: + mode: "dark" + accent: "orange" + hue: 279 + pair: null + contrast: + fg: 94.2 + black: 0 + red: 44.2 + green: 71.3 + yellow: 81 + blue: 58 + magenta: 50.9 + cyan: 67.9 + white: 94.2 + brightBlack: 22 + brightRed: 44.2 + brightGreen: 71.3 + brightYellow: 81 + brightBlue: 58 + brightMagenta: 50.9 + brightCyan: 67.9 + brightWhite: 94.2 diff --git a/themes/jonaqhan-themes--neutral.yaml b/themes/jonaqhan-themes--neutral.yaml new file mode 100644 index 00000000..b16ba5cf --- /dev/null +++ b/themes/jonaqhan-themes--neutral.yaml @@ -0,0 +1,53 @@ +name: "Jonaqhan Themes (Neutral)" +source: + marketplace_id: "Jonaqhan.jonaqhan" + version: "4.8.0" + installs: 753 + rating: 0 + ratings: 0 + author: "Jonaqhan" + repo: "https://github.com/Jonathan25J/Jonaqhan-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=Jonaqhan.jonaqhan" + formats: null +colors: + bg: "#262335" + fg: "#05F5E7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 292 + pair: null + contrast: + fg: 82.8 + black: 0 + red: 24.7 + green: 51 + yellow: 83.6 + blue: 25.5 + magenta: 27.8 + cyan: 45.6 + white: 88 + brightBlack: 20.1 + brightRed: 36.6 + brightGreen: 61.6 + brightYellow: 93.7 + brightBlue: 38 + brightMagenta: 43.4 + brightCyan: 53.4 + brightWhite: 88 diff --git a/themes/jone-theme.yaml b/themes/jone-theme.yaml new file mode 100644 index 00000000..ab55eb2f --- /dev/null +++ b/themes/jone-theme.yaml @@ -0,0 +1,53 @@ +name: "Jone Theme" +source: + marketplace_id: "jonxie.jone-theme" + version: "0.3.2" + installs: 1041 + rating: 0 + ratings: 0 + author: "Jone Xie" + repo: "https://github.com/Jefxie/jone-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jonxie.jone-theme" + formats: null +colors: + bg: "#F2F2F2" + fg: "#2B312C" + black: "#000000" + red: "#EE3F4D" + green: "#96C24E" + yellow: "#F9D367" + blue: "#619AC3" + magenta: "#D276A3" + cyan: "#57C3C2" + white: "#E4DFD7" + brightBlack: "#2B312C" + brightRed: "#EE3F4D" + brightGreen: "#41AE3C" + brightYellow: "#B78D12" + brightBlue: "#619AC3" + brightMagenta: "#CC5595" + brightCyan: "#12AA9C" + brightWhite: "#CEC3DC" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92 + black: 98.3 + red: 56.8 + green: 32.6 + yellow: 13.4 + blue: 49.3 + magenta: 49.4 + cyan: 33.2 + white: 8.4 + brightBlack: 92 + brightRed: 56.8 + brightGreen: 46.6 + brightYellow: 49.7 + brightBlue: 49.3 + brightMagenta: 58.6 + brightCyan: 47 + brightWhite: 22.2 diff --git a/themes/joshburnsxyz-vs-code-theme--themer-dark.yaml b/themes/joshburnsxyz-vs-code-theme--themer-dark.yaml new file mode 100644 index 00000000..8b491fd7 --- /dev/null +++ b/themes/joshburnsxyz-vs-code-theme--themer-dark.yaml @@ -0,0 +1,53 @@ +name: "JoshBurnsXYZ VS Code Theme (Themer Dark)" +source: + marketplace_id: "JoshBurnsXYZ.joshburnsxyz-vscode" + version: "2.3.3" + installs: 429 + rating: 0 + ratings: 0 + author: "Josh Burns" + repo: "https://github.com/joshburnsxyz/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JoshBurnsXYZ.joshburnsxyz-vscode" + formats: null +colors: + bg: "#14181B" + fg: "#FDFDFD" + black: "#14181B" + red: "#EF4E7C" + green: "#6EBB82" + yellow: "#F79532" + blue: "#1299AD" + magenta: "#AE7BB7" + cyan: "#09B399" + white: "#DCDCDD" + brightBlack: "#35393B" + brightRed: "#F37055" + brightGreen: "#09B399" + brightYellow: "#F79532" + brightBlue: "#1299AD" + brightMagenta: "#AE7BB7" + brightCyan: "#09B399" + brightWhite: "#FDFDFD" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 105.5 + black: 0 + red: 39.5 + green: 55.6 + yellow: 57 + blue: 39.7 + magenta: 40.1 + cyan: 49.8 + white: 84.4 + brightBlack: 0 + brightRed: 46.2 + brightGreen: 49.8 + brightYellow: 57 + brightBlue: 39.7 + brightMagenta: 40.1 + brightCyan: 49.8 + brightWhite: 105.5 diff --git a/themes/joshburnsxyz-vs-code-theme--themer-light.yaml b/themes/joshburnsxyz-vs-code-theme--themer-light.yaml new file mode 100644 index 00000000..3faf4d9c --- /dev/null +++ b/themes/joshburnsxyz-vs-code-theme--themer-light.yaml @@ -0,0 +1,53 @@ +name: "JoshBurnsXYZ VS Code Theme (Themer Light)" +source: + marketplace_id: "JoshBurnsXYZ.joshburnsxyz-vscode" + version: "2.3.3" + installs: 429 + rating: 0 + ratings: 0 + author: "Josh Burns" + repo: "https://github.com/joshburnsxyz/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JoshBurnsXYZ.joshburnsxyz-vscode" + formats: null +colors: + bg: "#FDFDFD" + fg: "#14181B" + black: "#FDFDFD" + red: "#EF4E7C" + green: "#6EBB82" + yellow: "#F79532" + blue: "#1299AD" + magenta: "#AE7BB7" + cyan: "#09B399" + white: "#35393B" + brightBlack: "#DCDCDD" + brightRed: "#F37055" + brightGreen: "#09B399" + brightYellow: "#F79532" + brightBlue: "#1299AD" + brightMagenta: "#AE7BB7" + brightCyan: "#09B399" + brightWhite: "#14181B" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 103.4 + black: 0 + red: 60 + green: 44.2 + yellow: 42.9 + blue: 59.7 + magenta: 59.3 + cyan: 49.8 + white: 95.7 + brightBlack: 16.9 + brightRed: 53.4 + brightGreen: 49.8 + brightYellow: 42.9 + brightBlue: 59.7 + brightMagenta: 59.3 + brightCyan: 49.8 + brightWhite: 103.4 diff --git a/themes/jpwdarkness.yaml b/themes/jpwdarkness.yaml new file mode 100644 index 00000000..130ff182 --- /dev/null +++ b/themes/jpwdarkness.yaml @@ -0,0 +1,53 @@ +name: "jpwdarkness" +source: + marketplace_id: "jpw101.jpwdarkness" + version: "0.0.1" + installs: 17 + rating: 0 + ratings: 0 + author: "jpw101" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jpw101.jpwdarkness" + formats: null +colors: + bg: "#3A3A41" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 286 + pair: null + contrast: + fg: 99.8 + black: 7.8 + red: 19.7 + green: 45.9 + yellow: 78.6 + blue: 20.4 + magenta: 22.7 + cyan: 40.5 + white: 83 + brightBlack: 15 + brightRed: 31.5 + brightGreen: 56.5 + brightYellow: 88.6 + brightBlue: 32.9 + brightMagenta: 38.3 + brightCyan: 48.3 + brightWhite: 83 diff --git a/themes/just-a-theme.yaml b/themes/just-a-theme.yaml new file mode 100644 index 00000000..3a2704a4 --- /dev/null +++ b/themes/just-a-theme.yaml @@ -0,0 +1,53 @@ +name: "just a theme" +source: + marketplace_id: "dotPortal.just-a-theme" + version: "1.0.4" + installs: 257 + rating: 0 + ratings: 0 + author: "dotPortal" + repo: "https://github.com/dotportal/just-a-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dotPortal.just-a-theme" + formats: null +colors: + bg: "#242424" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 77.7 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/just-purple.yaml b/themes/just-purple.yaml new file mode 100644 index 00000000..6d948e09 --- /dev/null +++ b/themes/just-purple.yaml @@ -0,0 +1,53 @@ +name: "Just Purple" +source: + marketplace_id: "bakrimoharram.just-purple" + version: "0.0.1" + installs: 575 + rating: 0 + ratings: 0 + author: "bakrimoharram" + repo: "https://github.com/bakrimoharram/just-purple" + url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.just-purple" + formats: null +colors: + bg: "#1D001B" + fg: "#D1C7D3" + black: "#6F316B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BCB2BB" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 331 + pair: null + contrast: + fg: 74 + black: 11.5 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 61.8 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/justcode-theme.yaml b/themes/justcode-theme.yaml new file mode 100644 index 00000000..82c0b969 --- /dev/null +++ b/themes/justcode-theme.yaml @@ -0,0 +1,53 @@ +name: "JustCode Theme" +source: + marketplace_id: "psxcode.justcode" + version: "0.7.1" + installs: 2056 + rating: 0 + ratings: 0 + author: "psxcode" + repo: "https://github.com/psxcode/justcode-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=psxcode.justcode" + formats: null +colors: + bg: "#202020" + fg: "#CBCCC6" + black: "#303030" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#6DCBFA" + magenta: "#CFBAFA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#73D0FF" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 73.2 + black: 0 + red: 49.2 + green: 66.4 + yellow: 79.4 + blue: 66.9 + magenta: 68.9 + cyan: 76.8 + white: 70.6 + brightBlack: 21.8 + brightRed: 51.8 + brightGreen: 80.8 + brightYellow: 82.4 + brightBlue: 69.8 + brightMagenta: 71.9 + brightCyan: 79.8 + brightWhite: 105.8 diff --git a/themes/kadaxi-dark.yaml b/themes/kadaxi-dark.yaml new file mode 100644 index 00000000..bccda364 --- /dev/null +++ b/themes/kadaxi-dark.yaml @@ -0,0 +1,53 @@ +name: "kadaxi dark" +source: + marketplace_id: "kadaxi.kadaxi-dark-theme" + version: "0.1.1" + installs: 83 + rating: 0 + ratings: 0 + author: "kadaxi" + repo: "https://github.com/kadaxi/kadaxi-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kadaxi.kadaxi-dark-theme" + formats: null +colors: + bg: "#191919" + fg: "#FDFDFD" + black: "#000000" + red: "#A54C3F" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#497099" + magenta: "#C792EA" + cyan: "#68A3A4" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#A54C3F" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#497099" + brightMagenta: "#C792EA" + brightCyan: "#68A3A4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 105.3 + black: 0 + red: 22.7 + green: 84 + yellow: 78.7 + blue: 25 + magenta: 53.5 + cyan: 46 + white: 106.7 + brightBlack: 10.7 + brightRed: 22.7 + brightGreen: 84 + brightYellow: 78.7 + brightBlue: 25 + brightMagenta: 53.5 + brightCyan: 46 + brightWhite: 106.7 diff --git a/themes/kaimandres-for-vs-code.yaml b/themes/kaimandres-for-vs-code.yaml new file mode 100644 index 00000000..6f338d77 --- /dev/null +++ b/themes/kaimandres-for-vs-code.yaml @@ -0,0 +1,53 @@ +name: "Kaimandres for VS Code" +source: + marketplace_id: "martellev.kaimandres-vscode" + version: "1.3.1" + installs: 67 + rating: 5 + ratings: 1 + author: "MartelleV" + repo: "https://github.com/MartelleV/kaimandres-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=martellev.kaimandres-vscode" + formats: null +colors: + bg: "#16161E" + fg: "#E4E4EB" + black: "#16161E" + red: "#D0679D" + green: "#91D7A3" + yellow: "#FFFAC2" + blue: "#78A9FF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#E4E4EB" + brightBlack: "#767C9D" + brightRed: "#EA9BBA" + brightGreen: "#A8E6B8" + brightYellow: "#E7D66D" + brightBlue: "#ADD7FF" + brightMagenta: "#D0C9FF" + brightCyan: "#A3E5FF" + brightWhite: "#E4E4EB" +meta: + mode: "dark" + accent: "red" + hue: 285 + pair: null + contrast: + fg: 89.7 + black: 0 + red: 39.2 + green: 72 + yellow: 102 + blue: 54.8 + magenta: 54.9 + cyan: 78.3 + white: 89.7 + brightBlack: 32.6 + brightRed: 59.8 + brightGreen: 81.8 + brightYellow: 79.9 + brightBlue: 78.6 + brightMagenta: 76.5 + brightCyan: 84.1 + brightWhite: 89.7 diff --git a/themes/kali-theme--dark-red-theme-vs-code.yaml b/themes/kali-theme--dark-red-theme-vs-code.yaml new file mode 100644 index 00000000..c60494bd --- /dev/null +++ b/themes/kali-theme--dark-red-theme-vs-code.yaml @@ -0,0 +1,53 @@ +name: "Kali Theme (Dark Red Theme VS-Code)" +source: + marketplace_id: "vscode-dark-red-theme.vscode-dark-red-theme" + version: "0.30.0" + installs: 2744 + rating: 5 + ratings: 2 + author: "Kailash Shaw" + repo: "https://github.com/kailash-shaw/vscode-dark-red-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vscode-dark-red-theme.vscode-dark-red-theme" + formats: null +colors: + bg: "#1A1C21" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 268 + pair: null + contrast: + fg: 74.1 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/kalidozza-theme.yaml b/themes/kalidozza-theme.yaml new file mode 100644 index 00000000..1dbd9e43 --- /dev/null +++ b/themes/kalidozza-theme.yaml @@ -0,0 +1,53 @@ +name: "Kalidozza Theme" +source: + marketplace_id: "afrolino02.Kalidozza-theme" + version: "0.0.1" + installs: 31 + rating: 4 + ratings: 1 + author: "afrolino02" + repo: "https://github.com/Kalidozza-theme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=afrolino02.Kalidozza-theme" + formats: null +colors: + bg: "#0D0701" + fg: "#D4D4D4" + black: "#1D1D1D" + red: "#EA5656" + green: "#32EA36" + yellow: "#F9E05B" + blue: "#4F9BEE" + magenta: "#D74CD7" + cyan: "#00A59D" + white: "#E5E5E5" + brightBlack: "#969696" + brightRed: "#D17D7D" + brightGreen: "#60C262" + brightYellow: "#FFFF93" + brightBlue: "#88B7EA" + brightMagenta: "#F590F5" + brightCyan: "#84F9F3" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 79 + pair: null + contrast: + fg: 80.4 + black: 0 + red: 39.7 + green: 75.8 + yellow: 87.6 + blue: 46.8 + magenta: 39.4 + cyan: 44.9 + white: 90.9 + brightBlack: 45.5 + brightRed: 44.9 + brightGreen: 58.2 + brightYellow: 104 + brightBlue: 61.2 + brightMagenta: 62.3 + brightCyan: 91.8 + brightWhite: 90.9 diff --git a/themes/kanagawa-flavors--kanagawa-dragon.yaml b/themes/kanagawa-flavors--kanagawa-dragon.yaml new file mode 100644 index 00000000..6ff60e77 --- /dev/null +++ b/themes/kanagawa-flavors--kanagawa-dragon.yaml @@ -0,0 +1,53 @@ +name: "Kanagawa Flavors (Kanagawa Dragon)" +source: + marketplace_id: "metaphore.kanagawa-vscode-color-theme" + version: "0.5.0" + installs: 29625 + rating: 5 + ratings: 6 + author: "metapho.re" + repo: "https://github.com/metapho-re/kanagawa-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=metaphore.kanagawa-vscode-color-theme" + formats: null +colors: + bg: "#181616" + fg: "#C5C9C5" + black: "#0D0C0C" + red: "#C4746E" + green: "#8A9A7B" + yellow: "#C4B28A" + blue: "#8BA4B0" + magenta: "#A292A3" + cyan: "#8EA4A2" + white: "#C8C093" + brightBlack: "#A6A69C" + brightRed: "#E46876" + brightGreen: "#87A987" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#938AA9" + brightCyan: "#7AA89F" + brightWhite: "#C5C9C5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 72.3 + black: 0 + red: 38.8 + green: 44.1 + yellow: 60.6 + blue: 49.9 + magenta: 45.1 + cyan: 49.7 + white: 67.1 + brightBlack: 52.7 + brightRed: 42 + brightGreen: 50.1 + brightYellow: 72.2 + brightBlue: 56.6 + brightMagenta: 40.9 + brightCyan: 49.4 + brightWhite: 72.3 diff --git a/themes/kanagawa-flavors--kanagawa-lotus.yaml b/themes/kanagawa-flavors--kanagawa-lotus.yaml new file mode 100644 index 00000000..57e224f3 --- /dev/null +++ b/themes/kanagawa-flavors--kanagawa-lotus.yaml @@ -0,0 +1,53 @@ +name: "Kanagawa Flavors (Kanagawa Lotus)" +source: + marketplace_id: "metaphore.kanagawa-vscode-color-theme" + version: "0.5.0" + installs: 29625 + rating: 5 + ratings: 6 + author: "metapho.re" + repo: "https://github.com/metapho-re/kanagawa-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=metaphore.kanagawa-vscode-color-theme" + formats: null +colors: + bg: "#F2ECBC" + fg: "#545464" + black: "#1F1F28" + red: "#C84053" + green: "#6F894E" + yellow: "#77713F" + blue: "#4D699B" + magenta: "#B35B79" + cyan: "#597B75" + white: "#545464" + brightBlack: "#8A8980" + brightRed: "#D7474B" + brightGreen: "#6E915F" + brightYellow: "#836F4A" + brightBlue: "#6693BF" + brightMagenta: "#624C83" + brightCyan: "#5E857A" + brightWhite: "#43436C" +meta: + mode: "light" + accent: "orange" + hue: 102 + pair: null + contrast: + fg: 73.6 + black: 91 + red: 60.5 + green: 54.3 + yellow: 62.2 + blue: 65.2 + magenta: 58.5 + cyan: 60 + white: 73.6 + brightBlack: 50.5 + brightRed: 56.4 + brightGreen: 51 + brightYellow: 61.3 + brightBlue: 47.3 + brightMagenta: 73 + brightCyan: 55.9 + brightWhite: 79.2 diff --git a/themes/kanagawa-flavors--kanagawa-wave.yaml b/themes/kanagawa-flavors--kanagawa-wave.yaml new file mode 100644 index 00000000..b6effde4 --- /dev/null +++ b/themes/kanagawa-flavors--kanagawa-wave.yaml @@ -0,0 +1,53 @@ +name: "Kanagawa Flavors (Kanagawa Wave)" +source: + marketplace_id: "metaphore.kanagawa-vscode-color-theme" + version: "0.5.0" + installs: 29625 + rating: 5 + ratings: 6 + author: "metapho.re" + repo: "https://github.com/metapho-re/kanagawa-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=metaphore.kanagawa-vscode-color-theme" + formats: null +colors: + bg: "#1F1F28" + fg: "#DCD7BA" + black: "#16161D" + red: "#C34043" + green: "#76946A" + yellow: "#C0A36E" + blue: "#7E9CD8" + magenta: "#957FB8" + cyan: "#6A9589" + white: "#C8C093" + brightBlack: "#727169" + brightRed: "#E82424" + brightGreen: "#98BB6C" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#938AA9" + brightCyan: "#7AA89F" + brightWhite: "#DCD7BA" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 79.7 + black: 0 + red: 25.6 + green: 38.4 + yellow: 52.5 + blue: 46.7 + magenta: 37.1 + cyan: 38.7 + white: 66 + brightBlack: 25.6 + brightRed: 30.7 + brightGreen: 57.4 + brightYellow: 71.1 + brightBlue: 55.5 + brightMagenta: 39.7 + brightCyan: 48.3 + brightWhite: 79.7 diff --git a/themes/kanagawa-paper--kanagawa-paper.yaml b/themes/kanagawa-paper--kanagawa-paper.yaml new file mode 100644 index 00000000..ac0c3b05 --- /dev/null +++ b/themes/kanagawa-paper--kanagawa-paper.yaml @@ -0,0 +1,53 @@ +name: "Kanagawa Paper (Kanagawa Paper)" +source: + marketplace_id: "SimonHo.kanagawa-paper" + version: "1.0.10" + installs: 5493 + rating: 5 + ratings: 3 + author: "sho-87" + repo: "https://github.com/sho-87/kanagawa-paper.vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SimonHo.kanagawa-paper" + formats: null +colors: + bg: "#1F1F28" + fg: "#DCD7BA" + black: "#0D0C0C" + red: "#C4746E" + green: "#8A9A7B" + yellow: "#C4B28A" + blue: "#8BA4B0" + magenta: "#A292A3" + cyan: "#8EA4A2" + white: "#C8C093" + brightBlack: "#A6A69C" + brightRed: "#E46876" + brightGreen: "#87A987" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#938AA9" + brightCyan: "#7AA89F" + brightWhite: "#C5C9C5" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 79.7 + black: 0 + red: 37.7 + green: 42.9 + yellow: 59.5 + blue: 48.8 + magenta: 44 + cyan: 48.5 + white: 66 + brightBlack: 51.6 + brightRed: 40.9 + brightGreen: 48.9 + brightYellow: 71.1 + brightBlue: 55.5 + brightMagenta: 39.7 + brightCyan: 48.3 + brightWhite: 71.1 diff --git a/themes/kanagawa-vague--vague-neovim-theme-extended-light.yaml b/themes/kanagawa-vague--vague-neovim-theme-extended-light.yaml new file mode 100644 index 00000000..b75024e6 --- /dev/null +++ b/themes/kanagawa-vague--vague-neovim-theme-extended-light.yaml @@ -0,0 +1,53 @@ +name: "Kanagawa Vague (Vague neovim Theme Extended Light)" +source: + marketplace_id: "EmmettHintz.Kanagawa-Vague" + version: "0.1.6" + installs: 1203 + rating: 0 + ratings: 0 + author: "Emmett Hintz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.Kanagawa-Vague" + formats: null +colors: + bg: "#FDFDFE" + fg: "#141415" + black: "#26233A" + red: "#DF6882" + green: "#8CB66D" + yellow: "#F3BE7C" + blue: "#6E94B2" + magenta: "#C48282" + cyan: "#7E98E8" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#DF6882" + brightGreen: "#8CB66D" + brightYellow: "#F3BE7C" + brightBlue: "#6E94B2" + brightMagenta: "#C48282" + brightCyan: "#7E98E8" + brightWhite: "#E0DEF4" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 103.9 + black: 100.9 + red: 58.2 + green: 44.7 + yellow: 28.6 + blue: 58.1 + magenta: 56.2 + cyan: 52.4 + white: 14.6 + brightBlack: 58.3 + brightRed: 58.2 + brightGreen: 44.7 + brightYellow: 28.6 + brightBlue: 58.1 + brightMagenta: 56.2 + brightCyan: 52.4 + brightWhite: 14.6 diff --git a/themes/kanagawa-vague--vague-neovim-theme-extended.yaml b/themes/kanagawa-vague--vague-neovim-theme-extended.yaml new file mode 100644 index 00000000..f5c0881a --- /dev/null +++ b/themes/kanagawa-vague--vague-neovim-theme-extended.yaml @@ -0,0 +1,53 @@ +name: "Kanagawa Vague (Vague neovim Theme Extended)" +source: + marketplace_id: "EmmettHintz.Kanagawa-Vague" + version: "0.1.6" + installs: 1203 + rating: 0 + ratings: 0 + author: "Emmett Hintz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=EmmettHintz.Kanagawa-Vague" + formats: null +colors: + bg: "#141415" + fg: "#CDCDCD" + black: "#26233A" + red: "#DF6882" + green: "#8CB66D" + yellow: "#F3BE7C" + blue: "#6E94B2" + magenta: "#C48282" + cyan: "#7E98E8" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#DF6882" + brightGreen: "#8CB66D" + brightYellow: "#F3BE7C" + brightBlue: "#6E94B2" + brightMagenta: "#C48282" + brightCyan: "#7E98E8" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 75.5 + black: 0 + red: 41.6 + green: 55.5 + yellow: 72.3 + blue: 41.7 + magenta: 43.7 + cyan: 47.5 + white: 87.2 + brightBlack: 41.5 + brightRed: 41.6 + brightGreen: 55.5 + brightYellow: 72.3 + brightBlue: 41.7 + brightMagenta: 43.7 + brightCyan: 47.5 + brightWhite: 87.2 diff --git a/themes/kanagawa-vscode.yaml b/themes/kanagawa-vscode.yaml new file mode 100644 index 00000000..b5432077 --- /dev/null +++ b/themes/kanagawa-vscode.yaml @@ -0,0 +1,53 @@ +name: "kanagawa-vscode" +source: + marketplace_id: "hikionori.kanagawa-vscode-theme" + version: "0.1.0" + installs: 6862 + rating: 5 + ratings: 2 + author: "hikionori" + repo: "https://github.com/hikionori/kanagawa-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=hikionori.kanagawa-vscode-theme" + formats: null +colors: + bg: "#16161D" + fg: "#DCD7BA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + pair: null + contrast: + fg: 80.8 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90.1 diff --git a/themes/kanagawa.yaml b/themes/kanagawa.yaml new file mode 100644 index 00000000..814afffe --- /dev/null +++ b/themes/kanagawa.yaml @@ -0,0 +1,53 @@ +name: "Kanagawa" +source: + marketplace_id: "qufiwefefwoyn.kanagawa" + version: "1.5.1" + installs: 249810 + rating: 4.95 + ratings: 22 + author: "qufiwefefwoyn" + repo: "https://github.com/barklan/kanagawa.vscode" + url: "https://marketplace.visualstudio.com/items?itemName=qufiwefefwoyn.kanagawa" + formats: null +colors: + bg: "#1F1F28" + fg: "#DCD7BA" + black: "#1F1F28" + red: "#E82424" + green: "#76946A" + yellow: "#FF9E3B" + blue: "#658594" + magenta: "#957FB8" + cyan: "#9CABCA" + white: "#DCD7BA" + brightBlack: "#2A2A37" + brightRed: "#FF5D62" + brightGreen: "#98BB6C" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#D27E99" + brightCyan: "#A3D4D5" + brightWhite: "#DCD7BA" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 79.7 + black: 0 + red: 30.7 + green: 38.4 + yellow: 60.5 + blue: 32.8 + magenta: 37.1 + cyan: 54.4 + white: 79.7 + brightBlack: 0 + brightRed: 44 + brightGreen: 57.4 + brightYellow: 71.1 + brightBlue: 55.5 + brightMagenta: 44.3 + brightCyan: 73 + brightWhite: 79.7 diff --git a/themes/kanao--kanao.yaml b/themes/kanao--kanao.yaml new file mode 100644 index 00000000..a1d87cea --- /dev/null +++ b/themes/kanao--kanao.yaml @@ -0,0 +1,53 @@ +name: "Kanao (Kanao)" +source: + marketplace_id: "BayuSetiawan.kanao" + version: "1.4.0" + installs: 1893 + rating: 3.5 + ratings: 2 + author: "Bayu Setiawan" + repo: "https://github.com/Bayusetiawan45/kanao" + url: "https://marketplace.visualstudio.com/items?itemName=BayuSetiawan.kanao" + formats: null +colors: + bg: "#F5EEE6" + fg: "#776B5D" + black: "#F5EEE6" + red: "#E82424" + green: "#76946A" + yellow: "#FF9E3B" + blue: "#EEC759" + magenta: "#AC7D88" + cyan: "#776B5D" + white: "#776B5D" + brightBlack: "#F4DFC8" + brightRed: "#FF5D62" + brightGreen: "#98BB6C" + brightYellow: "#65647C" + brightBlue: "#7FB4CA" + brightMagenta: "#D27E99" + brightCyan: "#A3D4D5" + brightWhite: "#776B5D" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 66.2 + black: 0 + red: 59.3 + green: 51.7 + yellow: 30.2 + blue: 18.2 + magenta: 52.7 + cyan: 66.2 + white: 66.2 + brightBlack: 0 + brightRed: 46.2 + brightGreen: 33.2 + brightYellow: 69.1 + brightBlue: 35 + brightMagenta: 45.9 + brightCyan: 18.3 + brightWhite: 66.2 diff --git a/themes/kanao--pink.yaml b/themes/kanao--pink.yaml new file mode 100644 index 00000000..9ee61879 --- /dev/null +++ b/themes/kanao--pink.yaml @@ -0,0 +1,53 @@ +name: "Kanao (Pink)" +source: + marketplace_id: "BayuSetiawan.kanao" + version: "1.4.0" + installs: 1893 + rating: 3.5 + ratings: 2 + author: "Bayu Setiawan" + repo: "https://github.com/Bayusetiawan45/kanao" + url: "https://marketplace.visualstudio.com/items?itemName=BayuSetiawan.kanao" + formats: null +colors: + bg: "#FFECF0" + fg: "#E000A8" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 59.5 + black: 97.4 + red: 65.4 + green: 40.6 + yellow: 49.3 + blue: 77.4 + magenta: 65.9 + cyan: 52 + white: 77.3 + brightBlack: 70.1 + brightRed: 65.4 + brightGreen: 32.3 + brightYellow: 32.3 + brightBlue: 77.4 + brightMagenta: 65.9 + brightCyan: 52 + brightWhite: 39.8 diff --git a/themes/kanso-theme--kanso-ink.yaml b/themes/kanso-theme--kanso-ink.yaml new file mode 100644 index 00000000..a71d9ade --- /dev/null +++ b/themes/kanso-theme--kanso-ink.yaml @@ -0,0 +1,53 @@ +name: "Kanso Theme (Kanso Ink)" +source: + marketplace_id: "Webhooked.kanso-theme" + version: "0.2.3" + installs: 3043 + rating: 5 + ratings: 6 + author: "Webhooked" + repo: "https://github.com/webhooked/kanso-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" + formats: null +colors: + bg: "#14171D" + fg: "#C5C9C7" + black: "#22262D" + red: "#C4746E" + green: "#8A9A7B" + yellow: "#C4B28A" + blue: "#8BA4B0" + magenta: "#A292A3" + cyan: "#8EA4A2" + white: "#C5C9C7" + brightBlack: "#9E9B93" + brightRed: "#E46876" + brightGreen: "#87A987" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#938AA9" + brightCyan: "#7AA89F" + brightWhite: "#C5C9C7" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 72.3 + black: 0 + red: 38.8 + green: 44 + yellow: 60.6 + blue: 49.9 + magenta: 45.1 + cyan: 49.6 + white: 72.3 + brightBlack: 47.3 + brightRed: 42 + brightGreen: 50 + brightYellow: 72.1 + brightBlue: 56.6 + brightMagenta: 40.8 + brightCyan: 49.4 + brightWhite: 72.3 diff --git a/themes/kanso-theme--kanso-mist.yaml b/themes/kanso-theme--kanso-mist.yaml new file mode 100644 index 00000000..ca5f1fc1 --- /dev/null +++ b/themes/kanso-theme--kanso-mist.yaml @@ -0,0 +1,53 @@ +name: "Kanso Theme (Kanso Mist)" +source: + marketplace_id: "Webhooked.kanso-theme" + version: "0.2.3" + installs: 3043 + rating: 5 + ratings: 6 + author: "Webhooked" + repo: "https://github.com/webhooked/kanso-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" + formats: null +colors: + bg: "#2F3036" + fg: "#C5C9C7" + black: "#43464E" + red: "#C4746E" + green: "#8A9A7B" + yellow: "#C4B28A" + blue: "#8BA4B0" + magenta: "#A292A3" + cyan: "#8EA4A2" + white: "#C5C9C7" + brightBlack: "#9E9B93" + brightRed: "#E46876" + brightGreen: "#87A987" + brightYellow: "#E6C384" + brightBlue: "#7FB4CA" + brightMagenta: "#938AA9" + brightCyan: "#7AA89F" + brightWhite: "#C5C9C7" +meta: + mode: "dark" + accent: "orange" + hue: 278 + pair: null + contrast: + fg: 68.1 + black: 0 + red: 34.6 + green: 39.8 + yellow: 56.4 + blue: 45.7 + magenta: 40.9 + cyan: 45.4 + white: 68.1 + brightBlack: 43.1 + brightRed: 37.8 + brightGreen: 45.9 + brightYellow: 68 + brightBlue: 52.4 + brightMagenta: 36.7 + brightCyan: 45.2 + brightWhite: 68.1 diff --git a/themes/kanso-theme--kanso-pearl.yaml b/themes/kanso-theme--kanso-pearl.yaml new file mode 100644 index 00000000..e9174d63 --- /dev/null +++ b/themes/kanso-theme--kanso-pearl.yaml @@ -0,0 +1,53 @@ +name: "Kanso Theme (Kanso Pearl)" +source: + marketplace_id: "Webhooked.kanso-theme" + version: "0.2.3" + installs: 3043 + rating: 5 + ratings: 6 + author: "Webhooked" + repo: "https://github.com/webhooked/kanso-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Webhooked.kanso-theme" + formats: null +colors: + bg: "#F2F1EF" + fg: "#22262D" + black: "#1F1F28" + red: "#C84053" + green: "#6F894E" + yellow: "#77713F" + blue: "#4D699B" + magenta: "#B35B79" + cyan: "#597B75" + white: "#22262D" + brightBlack: "#6D6D69" + brightRed: "#D7474B" + brightGreen: "#6E915F" + brightYellow: "#836F4A" + brightBlue: "#6693BF" + brightMagenta: "#624C83" + brightCyan: "#5E857A" + brightWhite: "#43436C" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 93.8 + black: 95 + red: 64.4 + green: 58.2 + yellow: 66.1 + blue: 69.1 + magenta: 62.4 + cyan: 64 + white: 93.8 + brightBlack: 67.5 + brightRed: 60.3 + brightGreen: 55 + brightYellow: 65.3 + brightBlue: 51.2 + brightMagenta: 76.9 + brightCyan: 59.9 + brightWhite: 83.1 diff --git a/themes/kaolin-themes--kaolin-light-theme.yaml b/themes/kaolin-themes--kaolin-light-theme.yaml new file mode 100644 index 00000000..1df27eb2 --- /dev/null +++ b/themes/kaolin-themes--kaolin-light-theme.yaml @@ -0,0 +1,53 @@ +name: "Kaolin Themes (Kaolin Light Theme)" +source: + marketplace_id: "zed-nait.kaolin-vscode-themes" + version: "0.1.0" + installs: 4900 + rating: 5 + ratings: 2 + author: "zed-nait" + repo: "https://github.com/zed-nait/kaolin-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=zed-nait.kaolin-vscode-themes" + formats: null +colors: + bg: "#EDEEEB" + fg: "#383E3F" + black: "#383E3F" + red: "#E84C58" + green: "#13665F" + yellow: "#E36B3F" + blue: "#3B84CC" + magenta: "#A9779C" + cyan: "#6FACB3" + white: "#C8CCC3" + brightBlack: "#545C5E" + brightRed: "#E84C58" + brightGreen: "#317A56" + brightYellow: "#C5882C" + brightBlue: "#4C7A90" + brightMagenta: "#6D46E3" + brightCyan: "#008B8B" + brightWhite: "#F5F6F5" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 84.9 + black: 84.9 + red: 53.6 + green: 72.7 + yellow: 48.9 + blue: 55.9 + magenta: 53.3 + cyan: 39.6 + white: 17.8 + brightBlack: 73.3 + brightRed: 53.6 + brightGreen: 65.1 + brightYellow: 46.5 + brightBlue: 62 + brightMagenta: 67.8 + brightCyan: 57.6 + brightWhite: 0 diff --git a/themes/kaolin-themes-kaolin-light-theme-alt.yaml b/themes/kaolin-themes-kaolin-light-theme-alt.yaml new file mode 100644 index 00000000..e24e6462 --- /dev/null +++ b/themes/kaolin-themes-kaolin-light-theme-alt.yaml @@ -0,0 +1,53 @@ +name: "Kaolin Themes (Kaolin Light Theme (alt))" +source: + marketplace_id: "zed-nait.kaolin-vscode-themes" + version: "0.1.0" + installs: 4900 + rating: 5 + ratings: 2 + author: "zed-nait" + repo: "https://github.com/zed-nait/kaolin-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=zed-nait.kaolin-vscode-themes" + formats: null +colors: + bg: "#FBFBFB" + fg: "#383E3F" + black: "#383E3F" + red: "#E84C58" + green: "#13665F" + yellow: "#E36B3F" + blue: "#3B84CC" + magenta: "#A9779C" + cyan: "#6FACB3" + white: "#D4D4D6" + brightBlack: "#545C5E" + brightRed: "#E84C58" + brightGreen: "#317A56" + brightYellow: "#C5882C" + brightBlue: "#4C7A90" + brightMagenta: "#6D46E3" + brightCyan: "#008B8B" + brightWhite: "#F5F6F5" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 92.8 + black: 92.8 + red: 61.5 + green: 80.7 + yellow: 56.9 + blue: 63.9 + magenta: 61.3 + cyan: 47.5 + white: 20.3 + brightBlack: 81.3 + brightRed: 61.5 + brightGreen: 73.1 + brightYellow: 54.4 + brightBlue: 70 + brightMagenta: 75.8 + brightCyan: 65.5 + brightWhite: 0 diff --git a/themes/karma--karma.yaml b/themes/karma--karma.yaml new file mode 100644 index 00000000..4bf76a28 --- /dev/null +++ b/themes/karma--karma.yaml @@ -0,0 +1,53 @@ +name: "Karma (Karma)" +source: + marketplace_id: "SreetamD.karma" + version: "3.1.1" + installs: 23749 + rating: 5 + ratings: 12 + author: "Sreetam Das" + repo: "https://github.com/sreetamdas/karma" + url: "https://marketplace.visualstudio.com/items?itemName=SreetamD.karma" + formats: null +colors: + bg: "#FFFFFF" + fg: "#0A0E14" + black: "#FFFFFF" + red: "#FC618D" + green: "#2D972F" + yellow: "#EEAE11" + blue: "#6F42C1" + magenta: "#FA8D3E" + cyan: "#5688C7" + white: "#0A0E14" + brightBlack: "#999999" + brightRed: "#FC618D" + brightGreen: "#2D972F" + brightYellow: "#EEAE11" + brightBlue: "#6F42C1" + brightMagenta: "#FA8D3E" + brightCyan: "#5688C7" + brightWhite: "#0A0E14" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 105.6 + black: 0 + red: 54.5 + green: 64.7 + yellow: 37.5 + blue: 81.7 + magenta: 45.9 + cyan: 64 + white: 105.6 + brightBlack: 54.6 + brightRed: 54.5 + brightGreen: 64.7 + brightYellow: 37.5 + brightBlue: 81.7 + brightMagenta: 45.9 + brightCyan: 64 + brightWhite: 105.6 diff --git a/themes/karrot-theme.yaml b/themes/karrot-theme.yaml new file mode 100644 index 00000000..b2e2142b --- /dev/null +++ b/themes/karrot-theme.yaml @@ -0,0 +1,53 @@ +name: "Karrot theme" +source: + marketplace_id: "ooAkira.Karrot" + version: "0.0.7" + installs: 2631 + rating: 4.83 + ratings: 6 + author: "ooAkira" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ooAkira.Karrot" + formats: null +colors: + bg: "#202020" + fg: "#9EA4B2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 50.8 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.3 + magenta: 28.6 + cyan: 46.4 + white: 88.9 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/karry-color-golang-theme.yaml b/themes/karry-color-golang-theme.yaml new file mode 100644 index 00000000..6fc9cf0b --- /dev/null +++ b/themes/karry-color-golang-theme.yaml @@ -0,0 +1,53 @@ +name: "Karry Color Golang Theme" +source: + marketplace_id: "fcunhaneto.karry-color-golang-theme" + version: "0.1.0" + installs: 14483 + rating: 0 + ratings: 0 + author: "fcunhaneto" + repo: "git+https://github.com/fcunhaneto/vscode-karry-color-golang-theme/" + url: "https://marketplace.visualstudio.com/items?itemName=fcunhaneto.karry-color-golang-theme" + formats: null +colors: + bg: "#FCE7CD" + fg: "#435E75" + black: "#906F41" + red: "#B80012" + green: "#49A634" + yellow: "#B2891B" + blue: "#00578B" + magenta: "#774673" + cyan: "#008B8B" + white: "#2D485D" + brightBlack: "#B59262" + brightRed: "#E80018" + brightGreen: "#2F8C1C" + brightYellow: "#D5AA38" + brightBlue: "#0071B2" + brightMagenta: "#8D648A" + brightCyan: "#00A8A8" + brightWhite: "#435E75" +meta: + mode: "light" + accent: "orange" + hue: 73 + pair: null + contrast: + fg: 70.9 + black: 59.6 + red: 68.7 + green: 45.1 + yellow: 47 + blue: 73.6 + magenta: 72.4 + cyan: 55.5 + white: 79.6 + brightBlack: 42.8 + brightRed: 57.4 + brightGreen: 56.8 + brightYellow: 30.3 + brightBlue: 62.9 + brightMagenta: 61.2 + brightCyan: 42.7 + brightWhite: 70.9 diff --git a/themes/kary-pro-colors--kary-pro-colors-dark.yaml b/themes/kary-pro-colors--kary-pro-colors-dark.yaml new file mode 100644 index 00000000..c88a177f --- /dev/null +++ b/themes/kary-pro-colors--kary-pro-colors-dark.yaml @@ -0,0 +1,53 @@ +name: "Kary Pro Colors (Kary Pro Colors - Dark)" +source: + marketplace_id: "karyfoundation.theme-karyfoundation-themes" + version: "37.0.0" + installs: 158339 + rating: 4.81 + ratings: 26 + author: "Pouya Kary" + repo: "https://github.com/pouyakary/procolors" + url: "https://marketplace.visualstudio.com/items?itemName=karyfoundation.theme-karyfoundation-themes" + formats: null +colors: + bg: "#1A1A1A" + fg: "#CCCCCC" + black: "#1A1A1A" + red: "#D38569" + green: "#7DA76F" + yellow: "#BC9550" + blue: "#819DC2" + magenta: "#B98EB2" + cyan: "#819DC2" + white: "#CCCCCC" + brightBlack: "#474747" + brightRed: "#D38569" + brightGreen: "#7DA76F" + brightYellow: "#BC9550" + brightBlue: "#819DC2" + brightMagenta: "#B98EB2" + brightCyan: "#819DC2" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 74.3 + black: 0 + red: 45.9 + green: 47.4 + yellow: 47 + blue: 46.8 + magenta: 47.1 + cyan: 46.8 + white: 74.3 + brightBlack: 9.6 + brightRed: 45.9 + brightGreen: 47.4 + brightYellow: 47 + brightBlue: 46.8 + brightMagenta: 47.1 + brightCyan: 46.8 + brightWhite: 101.3 diff --git a/themes/kary-pro-colors--kary-pro-colors-light.yaml b/themes/kary-pro-colors--kary-pro-colors-light.yaml new file mode 100644 index 00000000..9ef0c454 --- /dev/null +++ b/themes/kary-pro-colors--kary-pro-colors-light.yaml @@ -0,0 +1,53 @@ +name: "Kary Pro Colors (Kary Pro Colors - Light)" +source: + marketplace_id: "karyfoundation.theme-karyfoundation-themes" + version: "37.0.0" + installs: 158339 + rating: 4.81 + ratings: 26 + author: "Pouya Kary" + repo: "https://github.com/pouyakary/procolors" + url: "https://marketplace.visualstudio.com/items?itemName=karyfoundation.theme-karyfoundation-themes" + formats: null +colors: + bg: "#F0F6FB" + fg: "#3778B7" + black: "#1A1A1A" + red: "#C94824" + green: "#428226" + yellow: "#A56416" + blue: "#3778B7" + magenta: "#B052A1" + cyan: "#3778B7" + white: "#F7F7F7" + brightBlack: "#9B9B9B" + brightRed: "#C94824" + brightGreen: "#428226" + brightYellow: "#A56416" + brightBlue: "#3778B7" + brightMagenta: "#B052A1" + brightCyan: "#3778B7" + brightWhite: "#F7F7F7" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 66 + black: 98.4 + red: 66 + green: 66.6 + yellow: 66.6 + blue: 66 + magenta: 65.5 + cyan: 66 + white: 0 + brightBlack: 47.7 + brightRed: 66 + brightGreen: 66.6 + brightYellow: 66.6 + brightBlue: 66 + brightMagenta: 65.5 + brightCyan: 66 + brightWhite: 0 diff --git a/themes/kevin-kolors.yaml b/themes/kevin-kolors.yaml new file mode 100644 index 00000000..4ed38f63 --- /dev/null +++ b/themes/kevin-kolors.yaml @@ -0,0 +1,53 @@ +name: "KEVIN-KOLORS" +source: + marketplace_id: "dazon.kevin-kolor-theme" + version: "0.1.2" + installs: 1203 + rating: 0 + ratings: 0 + author: "dazon" + repo: "https://github.com/FakeDazon/kevin-kolor" + url: "https://marketplace.visualstudio.com/items?itemName=dazon.kevin-kolor-theme" + formats: null +colors: + bg: "#1C1F2A" + fg: "#F0FEFF" + black: "#373A3F" + red: "#F9ACB9" + green: "#D4FFA8" + yellow: "#EFED9F" + blue: "#73CFE7" + magenta: "#BD99DB" + cyan: "#9BE4D4" + white: "#D2DEE1" + brightBlack: "#464A50" + brightRed: "#F7BCC7" + brightGreen: "#DAFFB9" + brightYellow: "#EFF0B2" + brightBlue: "#8CD8EC" + brightMagenta: "#C7ADE2" + brightCyan: "#ACE9DD" + brightWhite: "#F0FEFF" +meta: + mode: "dark" + accent: "green" + hue: 273 + pair: null + contrast: + fg: 103.3 + black: 0 + red: 67.1 + green: 97 + yellow: 91.5 + blue: 68 + magenta: 52.7 + cyan: 79.7 + white: 83.2 + brightBlack: 9.8 + brightRed: 73.3 + brightGreen: 98.2 + brightYellow: 93.5 + brightBlue: 74.1 + brightMagenta: 61.6 + brightCyan: 84 + brightWhite: 103.3 diff --git a/themes/kindfeeling-light.yaml b/themes/kindfeeling-light.yaml new file mode 100644 index 00000000..198c8ff4 --- /dev/null +++ b/themes/kindfeeling-light.yaml @@ -0,0 +1,53 @@ +name: "Kindfeeling-light" +source: + marketplace_id: "Aromatibus.kindfeeling" + version: "0.3.19" + installs: 3600 + rating: 5 + ratings: 3 + author: "Aromatibus" + repo: "https://github.com/Aromatibus/vscode-kindfeeling-light" + url: "https://marketplace.visualstudio.com/items?itemName=Aromatibus.kindfeeling" + formats: null +colors: + bg: "#FFEEF9" + fg: "#101010" + black: "#D0D0D0" + red: "#FF0086" + green: "#00C918" + yellow: "#FD8900" + blue: "#3777E6" + magenta: "#AD00A1" + cyan: "#1FAAAA" + white: "#151515" + brightBlack: "#B0B0B0" + brightRed: "#FF0086" + brightGreen: "#00C918" + brightYellow: "#ABA800" + brightBlue: "#3777E6" + brightMagenta: "#AD00A1" + brightCyan: "#1FAAAA" + brightWhite: "#202020" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 98 + black: 17.6 + red: 54.8 + green: 35.9 + yellow: 39.2 + blue: 61.5 + magenta: 71.9 + cyan: 46.6 + white: 97.5 + brightBlack: 35.2 + brightRed: 54.8 + brightGreen: 35.9 + brightYellow: 41.8 + brightBlue: 61.5 + brightMagenta: 71.9 + brightCyan: 46.6 + brightWhite: 95.8 diff --git a/themes/kinnitchi-neon-theme.yaml b/themes/kinnitchi-neon-theme.yaml new file mode 100644 index 00000000..4f67df15 --- /dev/null +++ b/themes/kinnitchi-neon-theme.yaml @@ -0,0 +1,53 @@ +name: "Kinnitchi Neon Theme" +source: + marketplace_id: "Kinnitchi.kinnitchi-theme" + version: "0.4.0" + installs: 1213 + rating: 0 + ratings: 0 + author: "Kinnitchi" + repo: "https://github.com/Kinnitchi/kinnitchi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Kinnitchi.kinnitchi-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#1E1E1E" + red: "#FF5A5A" + green: "#72F1B8" + yellow: "#FEDE5D" + blue: "#7CB7FF" + magenta: "#FF7EDB" + cyan: "#FFFFFF" + white: "#C5C8C6" + brightBlack: "#1E1E1E" + brightRed: "#FF5A5A" + brightGreen: "#72F1B8" + brightYellow: "#FEDE5D" + brightBlue: "#7CB7FF" + brightMagenta: "#FF7EDB" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 43.5 + green: 82.5 + yellow: 85.8 + blue: 59.8 + magenta: 56.1 + cyan: 106 + white: 71 + brightBlack: 0 + brightRed: 43.5 + brightGreen: 82.5 + brightYellow: 85.8 + brightBlue: 59.8 + brightMagenta: 56.1 + brightCyan: 106 + brightWhite: 106 diff --git a/themes/kintsugi--kintsugi-dark.yaml b/themes/kintsugi--kintsugi-dark.yaml new file mode 100644 index 00000000..44461cfb --- /dev/null +++ b/themes/kintsugi--kintsugi-dark.yaml @@ -0,0 +1,53 @@ +name: "Kintsugi (Kintsugi Dark)" +source: + marketplace_id: "ahmedhatem.kintsugi" + version: "0.1.1" + installs: 547 + rating: 5 + ratings: 2 + author: "Ahmed Hatem" + repo: "https://github.com/ahatem/vscode-kintsugi" + url: "https://marketplace.visualstudio.com/items?itemName=ahmedhatem.kintsugi" + formats: null +colors: + bg: "#161618" + fg: "#DDDDDD" + black: "#131314" + red: "#B38F8F" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#6C7A8A" + magenta: "#B3A3D3" + cyan: "#6AC6F2" + white: "#DDDDDD" + brightBlack: "#444444" + brightRed: "#D9A6A6" + brightGreen: "#C3DE9C" + brightYellow: "#FBE4A8" + brightBlue: "#8FA3B3" + brightMagenta: "#D3A3D3" + brightCyan: "#8AC6F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 85.1 + black: 0 + red: 45.6 + green: 61.7 + yellow: 76.5 + blue: 30.3 + magenta: 55.6 + cyan: 65.2 + white: 85.1 + brightBlack: 8.9 + brightRed: 60.1 + brightGreen: 80 + brightYellow: 90.5 + brightBlue: 50.1 + brightMagenta: 60 + brightCyan: 67.3 + brightWhite: 107 diff --git a/themes/kintsugi--kintsugi-light.yaml b/themes/kintsugi--kintsugi-light.yaml new file mode 100644 index 00000000..13e62a6b --- /dev/null +++ b/themes/kintsugi--kintsugi-light.yaml @@ -0,0 +1,53 @@ +name: "Kintsugi (Kintsugi Light)" +source: + marketplace_id: "ahmedhatem.kintsugi" + version: "0.1.1" + installs: 547 + rating: 5 + ratings: 2 + author: "Ahmed Hatem" + repo: "https://github.com/ahatem/vscode-kintsugi" + url: "https://marketplace.visualstudio.com/items?itemName=ahmedhatem.kintsugi" + formats: null +colors: + bg: "#FAF8F2" + fg: "#4A463D" + black: "#4A463D" + red: "#C94E4E" + green: "#6A9955" + yellow: "#D9A03B" + blue: "#4A7096" + magenta: "#A24857" + cyan: "#3A7E3D" + white: "#F5F2EA" + brightBlack: "#938E83" + brightRed: "#C94E4E" + brightGreen: "#6A9955" + brightYellow: "#D9A03B" + brightBlue: "#4A7096" + brightMagenta: "#A24857" + brightCyan: "#3A7E3D" + brightWhite: "#FAF8F2" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.6 + black: 87.6 + red: 66.2 + green: 56.5 + yellow: 41.4 + blue: 71.4 + magenta: 74.5 + cyan: 69.9 + white: 0 + brightBlack: 55.8 + brightRed: 66.2 + brightGreen: 56.5 + brightYellow: 41.4 + brightBlue: 71.4 + brightMagenta: 74.5 + brightCyan: 69.9 + brightWhite: 0 diff --git a/themes/kirikovr.yaml b/themes/kirikovr.yaml new file mode 100644 index 00000000..795ebc1a --- /dev/null +++ b/themes/kirikovr.yaml @@ -0,0 +1,53 @@ +name: "KiriKovr" +source: + marketplace_id: "IvanKirilenko.kirikovr" + version: "0.0.1" + installs: 27 + rating: 0 + ratings: 0 + author: "IvanKirilenko" + repo: "https://github.com/KiriKovr1/kiri-theme" + url: "https://marketplace.visualstudio.com/items?itemName=IvanKirilenko.kirikovr" + formats: null +colors: + bg: "#0C1C25" + fg: "#5BD7FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 235 + pair: null + contrast: + fg: 72.5 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.4 + cyan: 47.2 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.2 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/kismat.yaml b/themes/kismat.yaml new file mode 100644 index 00000000..a904a2c8 --- /dev/null +++ b/themes/kismat.yaml @@ -0,0 +1,53 @@ +name: "Kismat" +source: + marketplace_id: "naren.kismat" + version: "0.0.10" + installs: 261 + rating: 0 + ratings: 0 + author: "Naren" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=naren.kismat" + formats: null +colors: + bg: "#20232A" + fg: "#B2B2CE" + black: "#000000" + red: "#EF3B7D" + green: "#6BD679" + yellow: "#FAC863" + blue: "#79B6F2" + magenta: "#FF69C1" + cyan: "#55B5DB" + white: "#F1FAEE" + brightBlack: "#000000" + brightRed: "#EF3B7D" + brightGreen: "#6BD679" + brightYellow: "#FAC863" + brightBlue: "#79B6F2" + brightMagenta: "#FF69C1" + brightCyan: "#55B5DB" + brightWhite: "#F1FAEE" +meta: + mode: "dark" + accent: "red" + hue: 267 + pair: null + contrast: + fg: 59.3 + black: 0 + red: 35.4 + green: 66.2 + yellow: 75.2 + blue: 57.6 + magenta: 49.1 + cyan: 53.8 + white: 100.2 + brightBlack: 0 + brightRed: 35.4 + brightGreen: 66.2 + brightYellow: 75.2 + brightBlue: 57.6 + brightMagenta: 49.1 + brightCyan: 53.8 + brightWhite: 100.2 diff --git a/themes/kite-theme--kite-dark.yaml b/themes/kite-theme--kite-dark.yaml new file mode 100644 index 00000000..45149982 --- /dev/null +++ b/themes/kite-theme--kite-dark.yaml @@ -0,0 +1,53 @@ +name: "Kite Theme (Kite Dark)" +source: + marketplace_id: "yudinikita.vscode-theme-kite" + version: "1.1.2" + installs: 8253 + rating: 5 + ratings: 3 + author: "Yudin Nikita" + repo: "https://github.com/nblackninja/vscode-theme-kite" + url: "https://marketplace.visualstudio.com/items?itemName=yudinikita.vscode-theme-kite" + formats: null +colors: + bg: "#2D353E" + fg: "#C7CED6" + black: "#000913" + red: "#C8433C" + green: "#4FC83C" + yellow: "#C8BF3C" + blue: "#3C7DC8" + magenta: "#9E3CC8" + cyan: "#3CA3C8" + white: "#CBCED2" + brightBlack: "#606871" + brightRed: "#F14F46" + brightGreen: "#53EC3C" + brightYellow: "#F1E646" + brightBlue: "#5097E7" + brightMagenta: "#D165FF" + brightCyan: "#46C3F1" + brightWhite: "#E6E8EA" +meta: + mode: "dark" + accent: "green" + hue: 251 + pair: null + contrast: + fg: 70.2 + black: 0 + red: 22.8 + green: 53.7 + yellow: 59.9 + blue: 26.5 + magenta: 19.9 + cyan: 40.8 + white: 70.5 + brightBlack: 17.3 + brightRed: 33.8 + brightGreen: 71.7 + brightYellow: 82.9 + brightBlue: 38.7 + brightMagenta: 39.7 + brightCyan: 57 + brightWhite: 86.6 diff --git a/themes/kite-theme--kite-darker.yaml b/themes/kite-theme--kite-darker.yaml new file mode 100644 index 00000000..460a1220 --- /dev/null +++ b/themes/kite-theme--kite-darker.yaml @@ -0,0 +1,53 @@ +name: "Kite Theme (Kite Darker)" +source: + marketplace_id: "yudinikita.vscode-theme-kite" + version: "1.1.2" + installs: 8253 + rating: 5 + ratings: 3 + author: "Yudin Nikita" + repo: "https://github.com/nblackninja/vscode-theme-kite" + url: "https://marketplace.visualstudio.com/items?itemName=yudinikita.vscode-theme-kite" + formats: null +colors: + bg: "#22282F" + fg: "#C7CED6" + black: "#000913" + red: "#C8433C" + green: "#4FC83C" + yellow: "#C8BF3C" + blue: "#3C7DC8" + magenta: "#9E3CC8" + cyan: "#3CA3C8" + white: "#CBCED2" + brightBlack: "#606871" + brightRed: "#F14F46" + brightGreen: "#53EC3C" + brightYellow: "#F1E646" + brightBlue: "#5097E7" + brightMagenta: "#D165FF" + brightCyan: "#46C3F1" + brightWhite: "#E6E8EA" +meta: + mode: "dark" + accent: "green" + hue: 252 + pair: null + contrast: + fg: 73 + black: 0 + red: 25.7 + green: 56.5 + yellow: 62.7 + blue: 29.4 + magenta: 22.7 + cyan: 43.6 + white: 73.3 + brightBlack: 20.2 + brightRed: 36.6 + brightGreen: 74.5 + brightYellow: 85.7 + brightBlue: 41.6 + brightMagenta: 42.5 + brightCyan: 59.9 + brightWhite: 89.4 diff --git a/themes/kite-theme--kite-light.yaml b/themes/kite-theme--kite-light.yaml new file mode 100644 index 00000000..78eda080 --- /dev/null +++ b/themes/kite-theme--kite-light.yaml @@ -0,0 +1,53 @@ +name: "Kite Theme (Kite Light)" +source: + marketplace_id: "yudinikita.vscode-theme-kite" + version: "1.1.2" + installs: 8253 + rating: 5 + ratings: 3 + author: "Yudin Nikita" + repo: "https://github.com/nblackninja/vscode-theme-kite" + url: "https://marketplace.visualstudio.com/items?itemName=yudinikita.vscode-theme-kite" + formats: null +colors: + bg: "#FFFFFF" + fg: "#04274E" + black: "#000913" + red: "#C8433C" + green: "#4FC83C" + yellow: "#C8BF3C" + blue: "#3C7DC8" + magenta: "#9E3CC8" + cyan: "#3CA3C8" + white: "#78818C" + brightBlack: "#606871" + brightRed: "#F14F46" + brightGreen: "#53EC3C" + brightYellow: "#F1E646" + brightBlue: "#5097E7" + brightMagenta: "#D165FF" + brightCyan: "#46C3F1" + brightWhite: "#949BA4" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 101.5 + black: 105.9 + red: 72.7 + green: 42.3 + yellow: 36.4 + blue: 68.9 + magenta: 75.7 + cyan: 54.9 + white: 66.9 + brightBlack: 78.3 + brightRed: 61.7 + brightGreen: 25.3 + brightYellow: 14.7 + brightBlue: 56.9 + brightMagenta: 55.9 + brightCyan: 39.1 + brightWhite: 54 diff --git a/themes/kitty-power.yaml b/themes/kitty-power.yaml new file mode 100644 index 00000000..449fa74e --- /dev/null +++ b/themes/kitty-power.yaml @@ -0,0 +1,53 @@ +name: "Kitty Power" +source: + marketplace_id: "Eduardo-Escoto.kittypower" + version: "0.0.9" + installs: 865 + rating: 5 + ratings: 1 + author: "Eduardo Escoto" + repo: "https://github.com/eduardo-escoto/KittyPower" + url: "https://marketplace.visualstudio.com/items?itemName=Eduardo-Escoto.kittypower" + formats: null +colors: + bg: "#0E1C26" + fg: "#FF8657" + black: "#B8B8B8" + red: "#F52727" + green: "#8EFFCA" + yellow: "#FFE300" + blue: "#63ADFF" + magenta: "#CAB7FF" + cyan: "#95EAFF" + white: "#FFFFFF" + brightBlack: "#948787" + brightRed: "#FF4949" + brightGreen: "#3FFFB2" + brightYellow: "#FFF678" + brightBlue: "#0079FF" + brightMagenta: "#9C59FF" + brightCyan: "#06CEFF" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "orange" + hue: 241 + pair: null + contrast: + fg: 54.1 + black: 62.6 + red: 34.7 + green: 92.4 + yellow: 88.1 + blue: 54.6 + magenta: 68.1 + cyan: 84.8 + white: 106.4 + brightBlack: 38.1 + brightRed: 40.9 + brightGreen: 88.1 + brightYellow: 97.8 + brightBlue: 33.4 + brightMagenta: 33.8 + brightCyan: 66.7 + brightWhite: 91.5 diff --git a/themes/koala-theme.yaml b/themes/koala-theme.yaml new file mode 100644 index 00000000..a715efef --- /dev/null +++ b/themes/koala-theme.yaml @@ -0,0 +1,53 @@ +name: "Koala Theme" +source: + marketplace_id: "VigneshwaranK.koala" + version: "0.0.2" + installs: 789 + rating: 0 + ratings: 0 + author: "Vigneshwaran K" + repo: "https://github.com/Vigneshwaran-dev/Koala-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=VigneshwaranK.koala" + formats: null +colors: + bg: "#18191D" + fg: "#D4D4D4" + black: "#282A36" + red: "#FD6969" + green: "#B4FFE2" + yellow: "#FFFFA5" + blue: "#248AC8" + magenta: "#DA86DA" + cyan: "#5DD9F8" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF5353" + brightGreen: "#47CF99" + brightYellow: "#FFFF5D" + brightBlue: "#3B8EEA" + brightMagenta: "#A46CEE" + brightCyan: "#0CD2FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.3 + black: 0 + red: 46.9 + green: 96.6 + yellow: 103.3 + blue: 35.5 + magenta: 51.9 + cyan: 73.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 42.8 + brightGreen: 63.5 + brightYellow: 101.9 + brightBlue: 39.8 + brightMagenta: 38 + brightCyan: 68.7 + brightWhite: 89.8 diff --git a/themes/kodex--kodex-arctic.yaml b/themes/kodex--kodex-arctic.yaml new file mode 100644 index 00000000..1ff6b469 --- /dev/null +++ b/themes/kodex--kodex-arctic.yaml @@ -0,0 +1,53 @@ +name: "kodex (Kodex Arctic)" +source: + marketplace_id: "pnx.kodex" + version: "0.4.1" + installs: 235 + rating: 5 + ratings: 1 + author: "Henrik Hautakoski" + repo: "https://github.com/pnx/kodex-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=pnx.kodex" + formats: null +colors: + bg: "#282A33" + fg: "#F1F1F1" + black: "#000000" + red: "#CC817F" + green: "#7CCFAF" + yellow: "#FFCC99" + blue: "#8AC6F2" + magenta: "#9999CC" + cyan: "#8ABEB7" + white: "#F1F1F1" + brightBlack: "#000000" + brightRed: "#CC817F" + brightGreen: "#7CCFAF" + brightYellow: "#FFCC99" + brightBlue: "#8AC6F2" + brightMagenta: "#9999CC" + brightCyan: "#8ABEB7" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "teal" + hue: 275 + pair: null + contrast: + fg: 94.8 + black: 0 + red: 41.5 + green: 64.2 + yellow: 77.5 + blue: 64.3 + magenta: 45.6 + cyan: 57.9 + white: 94.8 + brightBlack: 0 + brightRed: 41.5 + brightGreen: 64.2 + brightYellow: 77.5 + brightBlue: 64.3 + brightMagenta: 45.6 + brightCyan: 57.9 + brightWhite: 94.8 diff --git a/themes/kodex--kodex.yaml b/themes/kodex--kodex.yaml new file mode 100644 index 00000000..36a5a022 --- /dev/null +++ b/themes/kodex--kodex.yaml @@ -0,0 +1,53 @@ +name: "kodex (Kodex)" +source: + marketplace_id: "pnx.kodex" + version: "0.4.1" + installs: 235 + rating: 5 + ratings: 1 + author: "Henrik Hautakoski" + repo: "https://github.com/pnx/kodex-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=pnx.kodex" + formats: null +colors: + bg: "#1D232C" + fg: "#F1F1F1" + black: "#000000" + red: "#CC817F" + green: "#7CCFAF" + yellow: "#FFCC99" + blue: "#8AC6F2" + magenta: "#9999CC" + cyan: "#8ABEB7" + white: "#F1F1F1" + brightBlack: "#000000" + brightRed: "#CC817F" + brightGreen: "#7CCFAF" + brightYellow: "#FFCC99" + brightBlue: "#8AC6F2" + brightMagenta: "#9999CC" + brightCyan: "#8ABEB7" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "teal" + hue: 258 + pair: null + contrast: + fg: 96.2 + black: 0 + red: 42.8 + green: 65.6 + yellow: 78.8 + blue: 65.7 + magenta: 47 + cyan: 59.3 + white: 96.2 + brightBlack: 0 + brightRed: 42.8 + brightGreen: 65.6 + brightYellow: 78.8 + brightBlue: 65.7 + brightMagenta: 47 + brightCyan: 59.3 + brightWhite: 96.2 diff --git a/themes/korbit-theme.yaml b/themes/korbit-theme.yaml new file mode 100644 index 00000000..e103ae18 --- /dev/null +++ b/themes/korbit-theme.yaml @@ -0,0 +1,53 @@ +name: "Korbit Theme" +source: + marketplace_id: "RATIU5DEV.korbit-theme" + version: "0.1.2" + installs: 982 + rating: 5 + ratings: 1 + author: "RATIU5DEV" + repo: "https://github.com/RATIU5/korbit" + url: "https://marketplace.visualstudio.com/items?itemName=RATIU5DEV.korbit-theme" + formats: null +colors: + bg: "#2A2725" + fg: "#A79C95" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E2D5CC" + brightBlack: "#655D56" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#F4E6DB" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 46.4 + black: 0 + red: 24.4 + green: 50.6 + yellow: 83.3 + blue: 25.1 + magenta: 27.4 + cyan: 45.2 + white: 79.1 + brightBlack: 16.5 + brightRed: 36.2 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.6 + brightMagenta: 43 + brightCyan: 53 + brightWhite: 89.8 diff --git a/themes/korean-dancheong-light.yaml b/themes/korean-dancheong-light.yaml new file mode 100644 index 00000000..ccc325ee --- /dev/null +++ b/themes/korean-dancheong-light.yaml @@ -0,0 +1,53 @@ +name: "Korean Dancheong Light" +source: + marketplace_id: "weston0713.korean-dancheong-light" + version: "1.1.0" + installs: 73 + rating: 0 + ratings: 0 + author: "weston0713" + repo: "https://github.com/HC-kang/korean-dancheong-light" + url: "https://marketplace.visualstudio.com/items?itemName=weston0713.korean-dancheong-light" + formats: null +colors: + bg: "#ECF3ED" + fg: "#333333" + black: "#000000" + red: "#C24141" + green: "#2E7D32" + yellow: "#B8860B" + blue: "#116AEE" + magenta: "#AF52DE" + cyan: "#00A8A8" + white: "#EAF0EC" + brightBlack: "#636366" + brightRed: "#FF3B30" + brightGreen: "#4CD164" + brightYellow: "#FFD60A" + brightBlue: "#0A84FF" + brightMagenta: "#BF5AF2" + brightCyan: "#64D2FF" + brightWhite: "#ECF3ED" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Korean Dancheong Dark" + contrast: + fg: 90.4 + black: 97.8 + red: 65.9 + green: 66.8 + yellow: 51.3 + blue: 64.6 + magenta: 59.5 + cyan: 46.8 + white: 0 + brightBlack: 71.7 + brightRed: 53.1 + brightGreen: 29.5 + brightYellow: 11.4 + brightBlue: 55 + brightMagenta: 53.9 + brightCyan: 22.5 + brightWhite: 0 diff --git a/themes/kraken-theme.yaml b/themes/kraken-theme.yaml new file mode 100644 index 00000000..0cd6902a --- /dev/null +++ b/themes/kraken-theme.yaml @@ -0,0 +1,53 @@ +name: "Kraken theme" +source: + marketplace_id: "AndreCampelo.Atletica-Kraken-theme" + version: "0.0.0" + installs: 199 + rating: 0 + ratings: 0 + author: "André Campelo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AndreCampelo.Atletica-Kraken-theme" + formats: null +colors: + bg: "#222222" + fg: "#FFFFFF" + black: "#4AA58E" + red: "#4AA58E" + green: "#4AA58E" + yellow: "#4AA58E" + blue: "#4AA58E" + magenta: "#4AA58E" + cyan: "#4AA58E" + white: "#4AA58E" + brightBlack: "#4AA58E" + brightRed: "#4AA58E" + brightGreen: "#4AA58E" + brightYellow: "#4AA58E" + brightBlue: "#4AA58E" + brightMagenta: "#4AA58E" + brightCyan: "#4AA58E" + brightWhite: "#4AA58E" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 105.5 + black: 43.3 + red: 43.3 + green: 43.3 + yellow: 43.3 + blue: 43.3 + magenta: 43.3 + cyan: 43.3 + white: 43.3 + brightBlack: 43.3 + brightRed: 43.3 + brightGreen: 43.3 + brightYellow: 43.3 + brightBlue: 43.3 + brightMagenta: 43.3 + brightCyan: 43.3 + brightWhite: 43.3 diff --git a/themes/krb-blue--krb-violet.yaml b/themes/krb-blue--krb-violet.yaml new file mode 100644 index 00000000..c3e3db89 --- /dev/null +++ b/themes/krb-blue--krb-violet.yaml @@ -0,0 +1,53 @@ +name: "Krb_Blue (Krb_Violet)" +source: + marketplace_id: "KUSHALSAHA.krbblue" + version: "2.0.0" + installs: 241 + rating: 0 + ratings: 0 + author: "KUSHAL SAHA" + repo: "https://github.com/krbfx/krbblue" + url: "https://marketplace.visualstudio.com/items?itemName=KUSHALSAHA.krbblue" + formats: null +colors: + bg: "#403A4B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#D7D700" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFFF63" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 301 + pair: null + contrast: + fg: 71.7 + black: 8.6 + red: 19 + green: 45.3 + yellow: 69.6 + blue: 19.7 + magenta: 22 + cyan: 39.8 + white: 82.3 + brightBlack: 14.3 + brightRed: 30.8 + brightGreen: 55.8 + brightYellow: 94.5 + brightBlue: 32.3 + brightMagenta: 37.6 + brightCyan: 47.7 + brightWhite: 82.3 diff --git a/themes/kripton-flat-theme.yaml b/themes/kripton-flat-theme.yaml new file mode 100644 index 00000000..801486f2 --- /dev/null +++ b/themes/kripton-flat-theme.yaml @@ -0,0 +1,53 @@ +name: "Kripton Flat Theme" +source: + marketplace_id: "IanMuchina.kripton-flat" + version: "0.0.2" + installs: 1184 + rating: 0 + ratings: 0 + author: "Ian Muchina" + repo: "https://github.com/ianmuchina/kripton-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=IanMuchina.kripton-flat" + formats: null +colors: + bg: "#131519" + fg: "#B3B1AD" + black: "#0E0E11" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F24732" + brightGreen: "#B8BB26" + brightYellow: "#F24732" + brightBlue: "#59C2FF" + brightMagenta: "#40EF4B" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 59.4 + black: 0 + red: 44.2 + green: 54.4 + yellow: 66.8 + blue: 60.8 + magenta: 92.2 + cyan: 78.1 + white: 71.9 + brightBlack: 23.1 + brightRed: 37.9 + brightGreen: 61.4 + brightYellow: 37.9 + brightBlue: 63.5 + brightMagenta: 78.1 + brightCyan: 81.1 + brightWhite: 107.1 diff --git a/themes/krishna.yaml b/themes/krishna.yaml new file mode 100644 index 00000000..e4539518 --- /dev/null +++ b/themes/krishna.yaml @@ -0,0 +1,53 @@ +name: "Krishna" +source: + marketplace_id: "dcoder.krsna" + version: "1.0.4" + installs: 103 + rating: 5 + ratings: 1 + author: "dcoder" + repo: "https://github.com/Dhruv-Arora-Git/Krsna-VS" + url: "https://marketplace.visualstudio.com/items?itemName=dcoder.krsna" + formats: null +colors: + bg: "#1D2938" + fg: "#E8DCCB" + black: "#1D2938" + red: "#EF5350" + green: "#A5D6A7" + yellow: "#FBC02D" + blue: "#64B5F6" + magenta: "#BA68C8" + cyan: "#4DD0E1" + white: "#E8DCCB" + brightBlack: "#1D2938" + brightRed: "#EF5350" + brightGreen: "#A5D6A7" + brightYellow: "#FBC02D" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#E8DCCB" +meta: + mode: "dark" + accent: "orange" + hue: 254 + pair: null + contrast: + fg: 82.8 + black: 0 + red: 36.8 + green: 70.9 + yellow: 70.6 + blue: 55.3 + magenta: 35.4 + cyan: 64.9 + white: 82.8 + brightBlack: 0 + brightRed: 36.8 + brightGreen: 70.9 + brightYellow: 70.6 + brightBlue: 55.3 + brightMagenta: 35.4 + brightCyan: 64.9 + brightWhite: 82.8 diff --git a/themes/ks-nova-theme.yaml b/themes/ks-nova-theme.yaml new file mode 100644 index 00000000..8819786f --- /dev/null +++ b/themes/ks-nova-theme.yaml @@ -0,0 +1,53 @@ +name: "KS Nova Theme" +source: + marketplace_id: "KrisSchultz.nova-theme" + version: "1.1.0" + installs: 85 + rating: 0 + ratings: 0 + author: "Kris Schultz" + repo: "https://github.com/Krxtopher/vscode-theme-nova" + url: "https://marketplace.visualstudio.com/items?itemName=KrisSchultz.nova-theme" + formats: null +colors: + bg: "#190E2A" + fg: "#FFFFFF" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 299 + pair: null + contrast: + fg: 107.1 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 30 + cyan: 47.8 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.8 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/kurdish-theme.yaml b/themes/kurdish-theme.yaml new file mode 100644 index 00000000..8ce8e696 --- /dev/null +++ b/themes/kurdish-theme.yaml @@ -0,0 +1,53 @@ +name: "Kurdish Theme" +source: + marketplace_id: "miladkermanji8639.kurdish-theme" + version: "1.1.0" + installs: 29 + rating: 5 + ratings: 1 + author: "miladkermanji8639" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=miladkermanji8639.kurdish-theme" + formats: null +colors: + bg: "#1A1122" + fg: "#FFFFFF" + black: "#1A1122" + red: "#FF5555" + green: "#55FF55" + yellow: "#FFFF55" + blue: "#5555FF" + magenta: "#FF55FF" + cyan: "#55FFFF" + white: "#BBBBBB" + brightBlack: "#1A1122" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#BBBBBB" +meta: + mode: "dark" + accent: "pink" + hue: 308 + pair: null + contrast: + fg: 107 + black: 0 + red: 43.6 + green: 87.3 + yellow: 102.3 + blue: 26.5 + magenta: 51 + cyan: 92.5 + white: 64.9 + brightBlack: 0 + brightRed: 43.6 + brightGreen: 87.3 + brightYellow: 102.3 + brightBlue: 26.5 + brightMagenta: 51 + brightCyan: 92.5 + brightWhite: 64.9 diff --git a/themes/kuromesi-theme.yaml b/themes/kuromesi-theme.yaml new file mode 100644 index 00000000..25e498bb --- /dev/null +++ b/themes/kuromesi-theme.yaml @@ -0,0 +1,53 @@ +name: "Kuromesi-Theme" +source: + marketplace_id: "Kuromesi.kuromesi-theme" + version: "0.0.1" + installs: 93 + rating: 0 + ratings: 0 + author: "Kuromesi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Kuromesi.kuromesi-theme" + formats: null +colors: + bg: "#000000" + fg: "#E1EED2" + black: "#353551" + red: "#E34F8C" + green: "#FEADA6" + yellow: "#F8C275" + blue: "#C7ADFB" + magenta: "#FF69B4" + cyan: "#24E8D8" + white: "#FBD3E1" + brightBlack: "#919CB9" + brightRed: "#F36F89" + brightGreen: "#AFFA90" + brightYellow: "#F8C275" + brightBlue: "#FFFFFF" + brightMagenta: "#F799C7" + brightCyan: "#8DF9F9" + brightWhite: "#D7D6DF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 93.8 + black: 0 + red: 38.6 + green: 69.7 + yellow: 75.3 + blue: 65.1 + magenta: 51.1 + cyan: 78.7 + white: 86.2 + brightBlack: 48.8 + brightRed: 48.2 + brightGreen: 92.1 + brightYellow: 75.3 + brightBlue: 107.9 + brightMagenta: 63.1 + brightCyan: 92.8 + brightWhite: 82.2 diff --git a/themes/kyorazo-theme.yaml b/themes/kyorazo-theme.yaml new file mode 100644 index 00000000..f76c5fb1 --- /dev/null +++ b/themes/kyorazo-theme.yaml @@ -0,0 +1,53 @@ +name: "kyorazo_theme" +source: + marketplace_id: "WilliamKyorazo.kyorazo-theme" + version: "1.0.2" + installs: 4877 + rating: 0 + ratings: 0 + author: "William Kyorazo" + repo: "https://github.com/bywilliams/kyorazo_theme_vscode" + url: "https://marketplace.visualstudio.com/items?itemName=WilliamKyorazo.kyorazo-theme" + formats: null +colors: + bg: "#1C1C1D" + fg: "#FFFFFF" + black: "#1B2430" + red: "#CD3131" + green: "#0DBC79" + yellow: "#B5B4D5" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFA500" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.3 + black: 0 + red: 26.1 + green: 52.4 + yellow: 61.8 + blue: 26.8 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 63.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/lackluster-theme--lackluster-dark.yaml b/themes/lackluster-theme--lackluster-dark.yaml new file mode 100644 index 00000000..388e7e35 --- /dev/null +++ b/themes/lackluster-theme--lackluster-dark.yaml @@ -0,0 +1,53 @@ +name: "Lackluster Theme (Lackluster Dark)" +source: + marketplace_id: "CoderSauce.lackluster-theme" + version: "1.0.0" + installs: 219 + rating: 0 + ratings: 0 + author: "CoderSauce" + repo: "https://github.com/slugbyte/lackluster.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=CoderSauce.lackluster-theme" + formats: null +colors: + bg: "#191919" + fg: "#7A7A7A" + black: "#000000" + red: "#D70000" + green: "#789978" + yellow: "#ABAB77" + blue: "#7788AA" + magenta: "#708090" + cyan: "#DEEEED" + white: "#CCCCCC" + brightBlack: "#444444" + brightRed: "#D70000" + brightGreen: "#789978" + brightYellow: "#ABAB77" + brightBlue: "#7788AA" + brightMagenta: "#708090" + brightCyan: "#DEEEED" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 30.7 + black: 0 + red: 26.5 + green: 41.7 + yellow: 53.9 + blue: 37.2 + magenta: 32.7 + cyan: 93.4 + white: 74.4 + brightBlack: 8.6 + brightRed: 26.5 + brightGreen: 41.7 + brightYellow: 53.9 + brightBlue: 37.2 + brightMagenta: 32.7 + brightCyan: 93.4 + brightWhite: 84.8 diff --git a/themes/lackluster-theme--lackluster.yaml b/themes/lackluster-theme--lackluster.yaml new file mode 100644 index 00000000..79e9c60f --- /dev/null +++ b/themes/lackluster-theme--lackluster.yaml @@ -0,0 +1,53 @@ +name: "Lackluster Theme (Lackluster)" +source: + marketplace_id: "CoderSauce.lackluster-theme" + version: "1.0.0" + installs: 219 + rating: 0 + ratings: 0 + author: "CoderSauce" + repo: "https://github.com/slugbyte/lackluster.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=CoderSauce.lackluster-theme" + formats: null +colors: + bg: "#191919" + fg: "#CCCCCC" + black: "#000000" + red: "#D70000" + green: "#789978" + yellow: "#ABAB77" + blue: "#7788AA" + magenta: "#708090" + cyan: "#DEEEED" + white: "#CCCCCC" + brightBlack: "#444444" + brightRed: "#D70000" + brightGreen: "#789978" + brightYellow: "#ABAB77" + brightBlue: "#7788AA" + brightMagenta: "#708090" + brightCyan: "#DEEEED" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 74.4 + black: 0 + red: 26.5 + green: 41.7 + yellow: 53.9 + blue: 37.2 + magenta: 32.7 + cyan: 93.4 + white: 74.4 + brightBlack: 8.6 + brightRed: 26.5 + brightGreen: 41.7 + brightYellow: 53.9 + brightBlue: 37.2 + brightMagenta: 32.7 + brightCyan: 93.4 + brightWhite: 84.8 diff --git a/themes/laradark.yaml b/themes/laradark.yaml new file mode 100644 index 00000000..0c7bf8c4 --- /dev/null +++ b/themes/laradark.yaml @@ -0,0 +1,53 @@ +name: "LaraDark" +source: + marketplace_id: "erenkucukersoftware.laravel" + version: "1.0.6" + installs: 1655 + rating: 5 + ratings: 1 + author: "erenkucukersoftware" + repo: "https://github.com/erenkucukersoftware/vscode-laradark-laravel-theme" + url: "https://marketplace.visualstudio.com/items?itemName=erenkucukersoftware.laravel" + formats: null +colors: + bg: "#0D1321" + fg: "#FFFF" + black: "#333333" + red: "#DA564A" + green: "#2E7D32" + yellow: "#EEBB6E" + blue: "#0077AA" + magenta: "#E5C499" + cyan: "#4EA1DF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#DA564A" + brightGreen: "#399C3E" + brightYellow: "#FFB670" + brightBlue: "#0077AA" + brightMagenta: "#AA7900" + brightCyan: "#4EA1DF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 266 + pair: null + contrast: + fg: 91.5 + black: 0 + red: 35.5 + green: 26 + yellow: 70 + blue: 27.2 + magenta: 73.3 + cyan: 47.4 + white: 107.2 + brightBlack: 0 + brightRed: 35.5 + brightGreen: 38.8 + brightYellow: 71.1 + brightBlue: 27.2 + brightMagenta: 35.2 + brightCyan: 47.4 + brightWhite: 107.2 diff --git a/themes/laravel-theme.yaml b/themes/laravel-theme.yaml new file mode 100644 index 00000000..a53862a3 --- /dev/null +++ b/themes/laravel-theme.yaml @@ -0,0 +1,53 @@ +name: "Laravel Theme" +source: + marketplace_id: "nsouto.laravel" + version: "0.1.5" + installs: 21815 + rating: 0 + ratings: 0 + author: "Nuno Souto" + repo: "https://github.com/nsouto/vsce-laravel-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nsouto.laravel" + formats: null +colors: + bg: "#EEEEEE" + fg: "#000000" + black: "#333333" + red: "#DA564A" + green: "#2E7D32" + yellow: "#EEBB6E" + blue: "#0077AA" + magenta: "#E5C499" + cyan: "#4EA1DF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#DA564A" + brightGreen: "#399C3E" + brightYellow: "#FFB670" + brightBlue: "#0077AA" + brightMagenta: "#AA7900" + brightCyan: "#4EA1DF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.9 + black: 88.6 + red: 55.3 + green: 64.9 + yellow: 21.9 + blue: 63.7 + magenta: 18.8 + cyan: 43.6 + white: 8.9 + brightBlack: 88.6 + brightRed: 55.3 + brightGreen: 52.1 + brightYellow: 20.9 + brightBlue: 63.7 + brightMagenta: 55.7 + brightCyan: 43.6 + brightWhite: 8.9 diff --git a/themes/lavanda-color-theme.yaml b/themes/lavanda-color-theme.yaml new file mode 100644 index 00000000..f083cd7a --- /dev/null +++ b/themes/lavanda-color-theme.yaml @@ -0,0 +1,53 @@ +name: "Lavanda Color Theme" +source: + marketplace_id: "TheodorLundin.lavanda-color-theme" + version: "1.1.0" + installs: 139 + rating: 5 + ratings: 1 + author: "Theodor Lundin" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TheodorLundin.lavanda-color-theme" + formats: null +colors: + bg: "#191C2A" + fg: "#AAAAAA" + black: "#000000" + red: "#DB5355" + green: "#7EEF8C" + yellow: "#FEF376" + blue: "#5599FF" + magenta: "#D90E80" + cyan: "#07C1D8" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FE6D6F" + brightGreen: "#B7FFC0" + brightYellow: "#FFFABF" + brightBlue: "#66A3FF" + brightMagenta: "#E64CA2" + brightCyan: "#0DE4FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: 275 + pair: null + contrast: + fg: 54.6 + black: 0 + red: 34.4 + green: 81 + yellow: 96 + blue: 45.9 + magenta: 28.6 + cyan: 58.3 + white: 89.3 + brightBlack: 21.4 + brightRed: 47.7 + brightGreen: 95.1 + brightYellow: 101.2 + brightBlue: 50.6 + brightMagenta: 38 + brightCyan: 76.9 + brightWhite: 89.3 diff --git a/themes/lavender-code-theme--lavender-dark-theme.yaml b/themes/lavender-code-theme--lavender-dark-theme.yaml new file mode 100644 index 00000000..9f6626c3 --- /dev/null +++ b/themes/lavender-code-theme--lavender-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Lavender Code Theme (Lavender Dark Theme)" +source: + marketplace_id: "LavenderTheme.lavender-code-theme" + version: "1.0.1" + installs: 1594 + rating: 5 + ratings: 1 + author: "Ademir Silva" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LavenderTheme.lavender-code-theme" + formats: null +colors: + bg: "#221B28" + fg: "#D4D4D4" + black: "#454545" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 309 + pair: "Lavender Code Theme (Lavender Light theme)" + contrast: + fg: 78.7 + black: 8.4 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.8 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/lavender-code-theme--lavender-light-theme.yaml b/themes/lavender-code-theme--lavender-light-theme.yaml new file mode 100644 index 00000000..ec4685f5 --- /dev/null +++ b/themes/lavender-code-theme--lavender-light-theme.yaml @@ -0,0 +1,53 @@ +name: "Lavender Code Theme (Lavender Light theme)" +source: + marketplace_id: "LavenderTheme.lavender-code-theme" + version: "1.0.1" + installs: 1594 + rating: 5 + ratings: 1 + author: "Ademir Silva" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LavenderTheme.lavender-code-theme" + formats: null +colors: + bg: "#F9F7FB" + fg: "#6B6B6B" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: "Lavender Code Theme (Lavender Dark Theme)" + contrast: + fg: 72.2 + black: 101.7 + red: 69.6 + green: 44.9 + yellow: 53.6 + blue: 81.7 + magenta: 70.2 + cyan: 56.2 + white: 81.6 + brightBlack: 74.4 + brightRed: 69.6 + brightGreen: 36.6 + brightYellow: 36.6 + brightBlue: 81.7 + brightMagenta: 70.2 + brightCyan: 56.2 + brightWhite: 44.1 diff --git a/themes/lazy-themes.yaml b/themes/lazy-themes.yaml new file mode 100644 index 00000000..bd0e6d6d --- /dev/null +++ b/themes/lazy-themes.yaml @@ -0,0 +1,53 @@ +name: "Lazy Themes" +source: + marketplace_id: "gyro-uyt.lazy-themes" + version: "0.1.5" + installs: 21 + rating: 5 + ratings: 1 + author: "Uday Thakur" + repo: "https://github.com/gyro-uyt/lazy-themes" + url: "https://marketplace.visualstudio.com/items?itemName=gyro-uyt.lazy-themes" + formats: null +colors: + bg: "#222436" + fg: "#C8D3F5" + black: "#1B1D2B" + red: "#FF757F" + green: "#C3E88D" + yellow: "#FFC777" + blue: "#82AAFF" + magenta: "#C099FF" + cyan: "#86E1FC" + white: "#C8D3F5" + brightBlack: "#828BB8" + brightRed: "#FF757F" + brightGreen: "#C3E88D" + brightYellow: "#FFC777" + brightBlue: "#82AAFF" + brightMagenta: "#C099FF" + brightCyan: "#86E1FC" + brightWhite: "#C8D3F5" +meta: + mode: "dark" + accent: "orange" + hue: 279 + pair: null + contrast: + fg: 77.2 + black: 0 + red: 48.9 + green: 82.2 + yellow: 75.6 + blue: 54 + magenta: 54.5 + cyan: 77.8 + white: 77.2 + brightBlack: 38.2 + brightRed: 48.9 + brightGreen: 82.2 + brightYellow: 75.6 + brightBlue: 54 + brightMagenta: 54.5 + brightCyan: 77.8 + brightWhite: 77.2 diff --git a/themes/lazzaretti-s-vscode-themes--lazzaretti-plenatech.yaml b/themes/lazzaretti-s-vscode-themes--lazzaretti-plenatech.yaml new file mode 100644 index 00000000..dcbf65a7 --- /dev/null +++ b/themes/lazzaretti-s-vscode-themes--lazzaretti-plenatech.yaml @@ -0,0 +1,53 @@ +name: "Lazzaretti's VsCode Themes (Lazzaretti Plenatech 💟)" +source: + marketplace_id: "IgorLazzaretti.lazzaretti-s-vscode-themes" + version: "0.0.2" + installs: 38 + rating: 0 + ratings: 0 + author: "Igor Lazzaretti" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=IgorLazzaretti.lazzaretti-s-vscode-themes" + formats: null +colors: + bg: "#000000" + fg: "#B390FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 52.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/lazzaretti-s-vscode-themes--lazzaretti-win11.yaml b/themes/lazzaretti-s-vscode-themes--lazzaretti-win11.yaml new file mode 100644 index 00000000..fea982d9 --- /dev/null +++ b/themes/lazzaretti-s-vscode-themes--lazzaretti-win11.yaml @@ -0,0 +1,53 @@ +name: "Lazzaretti's VsCode Themes (Lazzaretti Win11 🪟)" +source: + marketplace_id: "IgorLazzaretti.lazzaretti-s-vscode-themes" + version: "0.0.2" + installs: 38 + rating: 0 + ratings: 0 + author: "Igor Lazzaretti" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=IgorLazzaretti.lazzaretti-s-vscode-themes" + formats: null +colors: + bg: "#13141D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + pair: null + contrast: + fg: 79.7 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 30 + cyan: 47.8 + white: 90.2 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/learn-with-sumit-theme--dark-night.yaml b/themes/learn-with-sumit-theme--dark-night.yaml new file mode 100644 index 00000000..cf17421e --- /dev/null +++ b/themes/learn-with-sumit-theme--dark-night.yaml @@ -0,0 +1,53 @@ +name: "Learn with Sumit Theme (Dark Night)" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157547 + rating: 4.97 + ratings: 595 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" + formats: null +colors: + bg: "#000000" + fg: "#B0B6BD" + black: "#34393E" + red: "#E61F44" + green: "#62C073" + yellow: "#43AAF9" + blue: "#43AAF9" + magenta: "#F75F8F" + cyan: "#B267E6" + white: "#B0B6BD" + brightBlack: "#454D54" + brightRed: "#E61F44" + brightGreen: "#B7F0E5" + brightYellow: "#A7D1F5" + brightBlue: "#A7D1F5" + brightMagenta: "#F75F8F" + brightCyan: "#D7C9F0" + brightWhite: "#B0B6BD" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 62.5 + black: 0 + red: 32.4 + green: 57.9 + yellow: 53 + blue: 53 + magenta: 45.9 + cyan: 39.4 + white: 62.5 + brightBlack: 12.7 + brightRed: 32.4 + brightGreen: 90.8 + brightYellow: 75.8 + brightBlue: 75.8 + brightMagenta: 45.9 + brightCyan: 77.6 + brightWhite: 62.5 diff --git a/themes/learn-with-sumit-theme--learn-with-sumit-blue-velvet-theme.yaml b/themes/learn-with-sumit-theme--learn-with-sumit-blue-velvet-theme.yaml new file mode 100644 index 00000000..0aa5c186 --- /dev/null +++ b/themes/learn-with-sumit-theme--learn-with-sumit-blue-velvet-theme.yaml @@ -0,0 +1,53 @@ +name: "Learn with Sumit Theme (Learn with Sumit Blue Velvet Theme)" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157547 + rating: 4.97 + ratings: 595 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" + formats: null +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#40444C" + red: "#F81141" + green: "#23974A" + yellow: "#FD7E57" + blue: "#285BFF" + magenta: "#8C62FD" + cyan: "#3A8AB2" + white: "#CDD3E0" + brightBlack: "#8F9AAE" + brightRed: "#FC4A6D" + brightGreen: "#37BD58" + brightYellow: "#F6BE48" + brightBlue: "#199FFD" + brightMagenta: "#FC58F6" + brightCyan: "#50ACAE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 32.1 + green: 32.8 + yellow: 48.7 + blue: 22.6 + magenta: 30.8 + cyan: 31.8 + white: 75.5 + brightBlack: 43.2 + brightRed: 38.3 + brightGreen: 50.1 + brightYellow: 68.5 + brightBlue: 43.9 + brightMagenta: 46.9 + brightCyan: 45.9 + brightWhite: 103.7 diff --git a/themes/learn-with-sumit-theme--learn-with-sumit-official-theme.yaml b/themes/learn-with-sumit-theme--learn-with-sumit-official-theme.yaml new file mode 100644 index 00000000..852b48e2 --- /dev/null +++ b/themes/learn-with-sumit-theme--learn-with-sumit-official-theme.yaml @@ -0,0 +1,53 @@ +name: "Learn with Sumit Theme (Learn with Sumit Official Theme)" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157547 + rating: 4.97 + ratings: 595 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" + formats: null +colors: + bg: "#101E2C" + fg: "#BDD2E7" + black: "#000000" + red: "#FF7878" + green: "#AAE682" + yellow: "#FFDC96" + blue: "#00B1FF" + magenta: "#00D991" + cyan: "#00DCDC" + white: "#BDD2E7" + brightBlack: "#5F82A5" + brightRed: "#FF7878" + brightGreen: "#AAE682" + brightYellow: "#FFDC96" + brightBlue: "#00B1FF" + brightMagenta: "#00D991" + brightCyan: "#00DCDC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 249 + pair: null + contrast: + fg: 76 + black: 0 + red: 50.7 + green: 79.7 + yellow: 86.3 + blue: 53.7 + magenta: 66.7 + cyan: 71 + white: 76 + brightBlack: 32.5 + brightRed: 50.7 + brightGreen: 79.7 + brightYellow: 86.3 + brightBlue: 53.7 + brightMagenta: 66.7 + brightCyan: 71 + brightWhite: 106.1 diff --git a/themes/learn-with-sumit-theme--learn-with-sumit-peace-of-the-eye.yaml b/themes/learn-with-sumit-theme--learn-with-sumit-peace-of-the-eye.yaml new file mode 100644 index 00000000..f23b9425 --- /dev/null +++ b/themes/learn-with-sumit-theme--learn-with-sumit-peace-of-the-eye.yaml @@ -0,0 +1,53 @@ +name: "Learn with Sumit Theme (Learn with Sumit - Peace of the eye)" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157547 + rating: 4.97 + ratings: 595 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" + formats: null +colors: + bg: "#122033" + fg: "#FFFFFF" + black: "#122033" + red: "#E35535" + green: "#52AB62" + yellow: "#FFD866" + blue: "#00B3BD" + magenta: "#E991E3" + cyan: "#78E8C6" + white: "#FFFFFF" + brightBlack: "#00B3BD" + brightRed: "#E35535" + brightGreen: "#52AB62" + brightYellow: "#FFD866" + brightBlue: "#00B3BD" + brightMagenta: "#E991E3" + brightCyan: "#78E8C6" + brightWhite: "#00B3BD" +meta: + mode: "dark" + accent: "orange" + hue: 256 + pair: null + contrast: + fg: 105.8 + black: 0 + red: 35.6 + green: 45.3 + yellow: 83.2 + blue: 50.3 + magenta: 57.4 + cyan: 78.6 + white: 105.8 + brightBlack: 50.3 + brightRed: 35.6 + brightGreen: 45.3 + brightYellow: 83.2 + brightBlue: 50.3 + brightMagenta: 57.4 + brightCyan: 78.6 + brightWhite: 50.3 diff --git a/themes/learn-with-sumit-theme--learn-with-sumit-professional-theme.yaml b/themes/learn-with-sumit-theme--learn-with-sumit-professional-theme.yaml new file mode 100644 index 00000000..d1e9b7c4 --- /dev/null +++ b/themes/learn-with-sumit-theme--learn-with-sumit-professional-theme.yaml @@ -0,0 +1,53 @@ +name: "Learn with Sumit Theme (Learn with Sumit - Professional Theme)" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157547 + rating: 4.97 + ratings: 595 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" + formats: null +colors: + bg: "#1C1E2E" + fg: "#C8D3F5" + black: "#000000" + red: "#FF757F" + green: "#C3E88D" + yellow: "#FFC777" + blue: "#82AAFF" + magenta: "#FCA7EA" + cyan: "#86E1FC" + white: "#C8D3F5" + brightBlack: "#828BB8" + brightRed: "#FF757F" + brightGreen: "#C3E88D" + brightYellow: "#FFC777" + brightBlue: "#82AAFF" + brightMagenta: "#FCA7EA" + brightCyan: "#86E1FC" + brightWhite: "#C8D3F5" +meta: + mode: "dark" + accent: "orange" + hue: 278 + pair: null + contrast: + fg: 78.2 + black: 0 + red: 49.9 + green: 83.2 + yellow: 76.5 + blue: 54.9 + magenta: 68.3 + cyan: 78.8 + white: 78.2 + brightBlack: 39.2 + brightRed: 49.9 + brightGreen: 83.2 + brightYellow: 76.5 + brightBlue: 54.9 + brightMagenta: 68.3 + brightCyan: 78.8 + brightWhite: 78.2 diff --git a/themes/learn-with-sumit-theme--learn-with-sumit-simple-as-light.yaml b/themes/learn-with-sumit-theme--learn-with-sumit-simple-as-light.yaml new file mode 100644 index 00000000..a303c2af --- /dev/null +++ b/themes/learn-with-sumit-theme--learn-with-sumit-simple-as-light.yaml @@ -0,0 +1,53 @@ +name: "Learn with Sumit Theme (Learn with Sumit - Simple as light)" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157547 + rating: 4.97 + ratings: 595 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#455059" + black: "#FFFFFF" + red: "#C13838" + green: "#37AE6F" + yellow: "#C9A022" + blue: "#3398DB" + magenta: "#CC71BC" + cyan: "#24B5A8" + white: "#455059" + brightBlack: "#3398DB" + brightRed: "#C13838" + brightGreen: "#37AE6F" + brightYellow: "#C9A022" + brightBlue: "#3398DB" + brightMagenta: "#CC71BC" + brightCyan: "#24B5A8" + brightWhite: "#3398DB" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 88.5 + black: 0 + red: 75.7 + green: 53.8 + yellow: 48.2 + blue: 58.3 + magenta: 58.3 + cyan: 49.4 + white: 88.5 + brightBlack: 58.3 + brightRed: 75.7 + brightGreen: 53.8 + brightYellow: 48.2 + brightBlue: 58.3 + brightMagenta: 58.3 + brightCyan: 49.4 + brightWhite: 58.3 diff --git a/themes/learn-with-sumit-theme--learn-with-sumit-theme.yaml b/themes/learn-with-sumit-theme--learn-with-sumit-theme.yaml new file mode 100644 index 00000000..2af0f5a5 --- /dev/null +++ b/themes/learn-with-sumit-theme--learn-with-sumit-theme.yaml @@ -0,0 +1,53 @@ +name: "Learn with Sumit Theme (Learn with Sumit Theme)" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157547 + rating: 4.97 + ratings: 595 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" + formats: null +colors: + bg: "#171C2A" + fg: "#FFFFFF" + black: "#171C2A" + red: "#E35535" + green: "#52AB62" + yellow: "#FFD866" + blue: "#00B3BD" + magenta: "#E991E3" + cyan: "#78E8C6" + white: "#FFFFFF" + brightBlack: "#00B3BD" + brightRed: "#E35535" + brightGreen: "#52AB62" + brightYellow: "#FFD866" + brightBlue: "#00B3BD" + brightMagenta: "#E991E3" + brightCyan: "#78E8C6" + brightWhite: "#00B3BD" +meta: + mode: "dark" + accent: "orange" + hue: 269 + pair: null + contrast: + fg: 106.2 + black: 0 + red: 36 + green: 45.8 + yellow: 83.7 + blue: 50.8 + magenta: 57.9 + cyan: 79 + white: 106.2 + brightBlack: 50.8 + brightRed: 36 + brightGreen: 45.8 + brightYellow: 83.7 + brightBlue: 50.8 + brightMagenta: 57.9 + brightCyan: 79 + brightWhite: 50.8 diff --git a/themes/learn-with-sumit-theme--learn-with-sumit-vintage.yaml b/themes/learn-with-sumit-theme--learn-with-sumit-vintage.yaml new file mode 100644 index 00000000..7b13d745 --- /dev/null +++ b/themes/learn-with-sumit-theme--learn-with-sumit-vintage.yaml @@ -0,0 +1,53 @@ +name: "Learn with Sumit Theme (Learn with Sumit - Vintage)" +source: + marketplace_id: "SumitSaha.learn-with-sumit-theme" + version: "12.1.0" + installs: 157547 + rating: 4.97 + ratings: 595 + author: "Learn with Sumit" + repo: "https://github.com/learnwithsumit/learn-with-sumit-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SumitSaha.learn-with-sumit-theme" + formats: null +colors: + bg: "#23272E" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 262 + pair: null + contrast: + fg: 57.2 + black: 0 + red: 34.5 + green: 58.1 + yellow: 46.4 + blue: 47.4 + magenta: 36.8 + cyan: 50.3 + white: 88.4 + brightBlack: 13.2 + brightRed: 43.9 + brightGreen: 74.6 + brightYellow: 59 + brightBlue: 61.5 + brightMagenta: 48 + brightCyan: 65.6 + brightWhite: 80.8 diff --git a/themes/legally-blind.yaml b/themes/legally-blind.yaml new file mode 100644 index 00000000..4b176824 --- /dev/null +++ b/themes/legally-blind.yaml @@ -0,0 +1,53 @@ +name: "Legally Blind" +source: + marketplace_id: "bigboi.legally-blind" + version: "0.1.7" + installs: 971 + rating: 5 + ratings: 3 + author: "bigboi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=bigboi.legally-blind" + formats: null +colors: + bg: "#000000" + fg: "#D42450" + black: "#08040B" + red: "#D42450" + green: "#A9D400" + yellow: "#D95702" + blue: "#301D78" + magenta: "#D42450" + cyan: "#00A7B5" + white: "#E9C8D3" + brightBlack: "#27214D" + brightRed: "#D42450" + brightGreen: "#A9D400" + brightYellow: "#D95702" + brightBlue: "#301D78" + brightMagenta: "#D42450" + brightCyan: "#00A7B5" + brightWhite: "#C6E4E4" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 28.7 + black: 0 + red: 28.7 + green: 71.5 + yellow: 35.7 + blue: 0 + magenta: 28.7 + cyan: 46.9 + white: 78.3 + brightBlack: 0 + brightRed: 28.7 + brightGreen: 71.5 + brightYellow: 35.7 + brightBlue: 0 + brightMagenta: 28.7 + brightCyan: 46.9 + brightWhite: 86.7 diff --git a/themes/legendary-light.yaml b/themes/legendary-light.yaml new file mode 100644 index 00000000..5d332e95 --- /dev/null +++ b/themes/legendary-light.yaml @@ -0,0 +1,53 @@ +name: "Legendary Light" +source: + marketplace_id: "LlewellynPaintsil.legendary-light" + version: "1.0.0" + installs: 3078 + rating: 5 + ratings: 2 + author: "Llewellyn Adonteng Paintsil" + repo: "https://github.com/Llewellyn500/legendary-light" + url: "https://marketplace.visualstudio.com/items?itemName=LlewellynPaintsil.legendary-light" + formats: null +colors: + bg: "#F9F9F9" + fg: "#383B44" + black: "#D5D6DD" + red: "#D52753" + green: "#23974A" + yellow: "#DF631C" + blue: "#2196F3" + magenta: "#823FF1" + cyan: "#27618D" + white: "#2196F3" + brightBlack: "#E4E5ED" + brightRed: "#FF6480" + brightGreen: "#3CBC66" + brightYellow: "#C5A332" + brightBlue: "#2196F3" + brightMagenta: "#CE33C0" + brightCyan: "#6D93BB" + brightWhite: "#26272D" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 92.3 + black: 17.8 + red: 68.9 + green: 61 + yellow: 58.6 + blue: 54.1 + magenta: 72 + cyan: 78.8 + white: 54.1 + brightBlack: 9.1 + brightRed: 50.1 + brightGreen: 44.2 + brightYellow: 44 + brightBlue: 54.1 + brightMagenta: 65 + brightCyan: 55.7 + brightWhite: 98.2 diff --git a/themes/lenglounh-theme.yaml b/themes/lenglounh-theme.yaml new file mode 100644 index 00000000..a786972d --- /dev/null +++ b/themes/lenglounh-theme.yaml @@ -0,0 +1,53 @@ +name: "lenglounh-theme" +source: + marketplace_id: "lenglounh2024.lenglounh-theme" + version: "0.0.7" + installs: 28 + rating: 0 + ratings: 0 + author: "lenglounh2024" + repo: "https://github.com/lenglounh2024/lenglounh-vscode-extension-pack.git#main" + url: "https://marketplace.visualstudio.com/items?itemName=lenglounh2024.lenglounh-theme" + formats: null +colors: + bg: "#060218" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 289 + pair: null + contrast: + fg: 80.4 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.5 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/lennon-red.yaml b/themes/lennon-red.yaml new file mode 100644 index 00000000..c4266268 --- /dev/null +++ b/themes/lennon-red.yaml @@ -0,0 +1,53 @@ +name: "lennon red" +source: + marketplace_id: "souza.lennon-theme" + version: "1.1.0" + installs: 179 + rating: 0 + ratings: 0 + author: "lennon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=souza.lennon-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#E8E8E8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 91.1 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/leva-ump45.yaml b/themes/leva-ump45.yaml new file mode 100644 index 00000000..31dd859e --- /dev/null +++ b/themes/leva-ump45.yaml @@ -0,0 +1,53 @@ +name: "Leva / ump45" +source: + marketplace_id: "PlutonicVoid.Leva-ump45" + version: "1.1.0" + installs: 18 + rating: 0 + ratings: 0 + author: "PlutonicVoid" + repo: "https://github.com/ThanatosSystemOmegaVI/leva-ump45-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PlutonicVoid.Leva-ump45" + formats: null +colors: + bg: "#151515" + fg: "#E6DECE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 86.2 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/light-brown-leather.yaml b/themes/light-brown-leather.yaml new file mode 100644 index 00000000..b879cb58 --- /dev/null +++ b/themes/light-brown-leather.yaml @@ -0,0 +1,53 @@ +name: "Light Brown Leather" +source: + marketplace_id: "ayms-data.aymsdatathemer" + version: "2.4.0" + installs: 1501 + rating: 0 + ratings: 0 + author: "Ayman Sahyoun" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ayms-data.aymsdatathemer" + formats: null +colors: + bg: "#FFEDB7" + fg: "#6F3400" + black: "#FFEDB7" + red: "#E60000" + green: "#389E57" + yellow: "#F47A00" + blue: "#00BB96" + magenta: "#5E00DD" + cyan: "#298D56" + white: "#844E1A" + brightBlack: "#EAD39D" + brightRed: "#FFFFFF" + brightGreen: "#298D56" + brightYellow: "#F47A00" + brightBlue: "#00BB96" + brightMagenta: "#5E00DD" + brightCyan: "#298D56" + brightWhite: "#6F3400" +meta: + mode: "light" + accent: "magenta" + hue: 92 + pair: null + contrast: + fg: 81.7 + black: 0 + red: 60.1 + green: 50.8 + yellow: 42.2 + blue: 37.4 + magenta: 75.9 + cyan: 58.1 + white: 72.9 + brightBlack: 11.9 + brightRed: 9.1 + brightGreen: 58.1 + brightYellow: 42.2 + brightBlue: 37.4 + brightMagenta: 75.9 + brightCyan: 58.1 + brightWhite: 81.7 diff --git a/themes/light-purple.yaml b/themes/light-purple.yaml new file mode 100644 index 00000000..0d572eb3 --- /dev/null +++ b/themes/light-purple.yaml @@ -0,0 +1,53 @@ +name: "Light purple" +source: + marketplace_id: "Huka.light-purple" + version: "0.0.2" + installs: 2552 + rating: 0 + ratings: 0 + author: "Huka" + repo: "https://github.com/hukacode/vscode-light-purple" + url: "https://marketplace.visualstudio.com/items?itemName=Huka.light-purple" + formats: null +colors: + bg: "#EFEAE9" + fg: "#4E3163" + black: "#4E3163" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#715AB1" + white: "#E4E4E4" + brightBlack: "#4E3163" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#B1951D" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#715AB1" + brightWhite: "#E4E4E4" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Deep Purple" + contrast: + fg: 83 + black: 83 + red: 56.9 + green: 54.8 + yellow: 27.5 + blue: 50.6 + magenta: 55.9 + cyan: 65.6 + white: 0 + brightBlack: 83 + brightRed: 56.9 + brightGreen: 54.8 + brightYellow: 43.6 + brightBlue: 50.6 + brightMagenta: 55.9 + brightCyan: 65.6 + brightWhite: 0 diff --git a/themes/light-rblx-rian.yaml b/themes/light-rblx-rian.yaml new file mode 100644 index 00000000..41219123 --- /dev/null +++ b/themes/light-rblx-rian.yaml @@ -0,0 +1,53 @@ +name: "light-rblx-rian" +source: + marketplace_id: "Rianyj.light-rblx-rian" + version: "0.0.12" + installs: 37 + rating: 0 + ratings: 0 + author: "RianyJ" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Rianyj.light-rblx-rian" + formats: null +colors: + bg: "#C9C8C8" + fg: "#383A42" + black: "#373A41" + red: "#D52652" + green: "#239749" + yellow: "#DF621B" + blue: "#275FE4" + magenta: "#823EF0" + cyan: "#26608C" + white: "#B9BAC1" + brightBlack: "#676A77" + brightRed: "#FF637F" + brightGreen: "#3CBC66" + brightYellow: "#C5A231" + brightBlue: "#0099E0" + brightMagenta: "#CE32C0" + brightCyan: "#6D92BA" + brightWhite: "#D3D3D3" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 64.5 + black: 64.6 + red: 41 + green: 33 + yellow: 30.8 + blue: 44.9 + magenta: 44.2 + cyan: 51.2 + white: 0 + brightBlack: 45.2 + brightRed: 22.3 + brightGreen: 16.1 + brightYellow: 16.3 + brightBlue: 26.4 + brightMagenta: 37 + brightCyan: 28 + brightWhite: 0 diff --git a/themes/light-theme-grey.yaml b/themes/light-theme-grey.yaml new file mode 100644 index 00000000..4ee10fb5 --- /dev/null +++ b/themes/light-theme-grey.yaml @@ -0,0 +1,53 @@ +name: "Light Theme Grey" +source: + marketplace_id: "gthbccnt.light-theme-grey" + version: "1.0.4" + installs: 348 + rating: 0 + ratings: 0 + author: "gthbccnt" + repo: "https://github.com/gthbccnt/gthbccnt.light-theme-grey" + url: "https://marketplace.visualstudio.com/items?itemName=gthbccnt.light-theme-grey" + formats: null +colors: + bg: "#F5F4F2" + fg: "#000000" + black: "#393735" + red: "#D8636B" + green: "#97BA85" + yellow: "#EBB95E" + blue: "#8BB4E3" + magenta: "#C88AC8" + cyan: "#6FBEBC" + white: "#E1DFDF" + brightBlack: "#666666" + brightRed: "#E57373" + brightGreen: "#8AB96C" + brightYellow: "#D9B74C" + brightBlue: "#9BC0E8" + brightMagenta: "#C78BC7" + brightCyan: "#6DD1D1" + brightWhite: "#C6C4C0" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.5 + black: 90.7 + red: 56 + green: 36.1 + yellow: 26.9 + blue: 35.8 + magenta: 44.9 + cyan: 35.6 + white: 9.6 + brightBlack: 72.2 + brightRed: 49.5 + brightGreen: 38.2 + brightYellow: 30.6 + brightBlue: 29.4 + brightMagenta: 44.8 + brightCyan: 26.6 + brightWhite: 25.2 diff --git a/themes/light-theme-with-bars.yaml b/themes/light-theme-with-bars.yaml new file mode 100644 index 00000000..88c06805 --- /dev/null +++ b/themes/light-theme-with-bars.yaml @@ -0,0 +1,53 @@ +name: "Light theme with bars" +source: + marketplace_id: "nicegyuha.light-theme-with-bars" + version: "0.1.5" + installs: 254 + rating: 0 + ratings: 0 + author: "Gyuha Shin" + repo: "https://github.com/gyuha/light-theme-with-bars" + url: "https://marketplace.visualstudio.com/items?itemName=nicegyuha.light-theme-with-bars" + formats: null +colors: + bg: "#FFFFFF" + fg: "#908D8D" + black: "#000000" + red: "#FF0C00" + green: "#00BA51" + yellow: "#D0D500" + blue: "#0072F0" + magenta: "#FF00FF" + cyan: "#1D9F86" + white: "#A3A3A3" + brightBlack: "#6F6F6F" + brightRed: "#F77878" + brightGreen: "#79EEAC" + brightYellow: "#E6EA76" + brightBlue: "#3D9AFF" + brightMagenta: "#EC78EC" + brightCyan: "#58D3BC" + brightWhite: "#CBCBCB" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 60.3 + black: 106 + red: 64.1 + green: 49.7 + yellow: 26.5 + blue: 70.3 + magenta: 55.6 + cyan: 60 + white: 49.5 + brightBlack: 74.8 + brightRed: 51.1 + brightGreen: 20.6 + brightYellow: 13.9 + brightBlue: 54.8 + brightMagenta: 48.3 + brightCyan: 34.1 + brightWhite: 27.9 diff --git a/themes/lighthouse-in-the-dark-lighthouse-in-the-dark-boon-island-dark.yaml b/themes/lighthouse-in-the-dark-lighthouse-in-the-dark-boon-island-dark.yaml new file mode 100644 index 00000000..b236edf0 --- /dev/null +++ b/themes/lighthouse-in-the-dark-lighthouse-in-the-dark-boon-island-dark.yaml @@ -0,0 +1,53 @@ +name: "Lighthouse In The Dark (Lighthouse In The Dark (Boon Island Dark))" +source: + marketplace_id: "CodeTime.lighthouse-in-the-dark" + version: "0.1.0" + installs: 272 + rating: 0 + ratings: 0 + author: "Code Time" + repo: "https://github.com/afj176/lighthouse-in-the-dark" + url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.lighthouse-in-the-dark" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF6B6B" + green: "#00FF7F" + yellow: "#FFFF00" + blue: "#00BFFF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF8888" + brightGreen: "#66FF99" + brightYellow: "#FFFF66" + brightBlue: "#66D9FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 49.1 + green: 87.6 + yellow: 102.7 + blue: 61.4 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 23 + brightRed: 57.2 + brightGreen: 90 + brightYellow: 103.3 + brightBlue: 75.3 + brightMagenta: 54.8 + brightCyan: 94 + brightWhite: 107.9 diff --git a/themes/lighthouse-in-the-dark-lighthouse-in-the-dark-boon-island-light.yaml b/themes/lighthouse-in-the-dark-lighthouse-in-the-dark-boon-island-light.yaml new file mode 100644 index 00000000..c4dfefba --- /dev/null +++ b/themes/lighthouse-in-the-dark-lighthouse-in-the-dark-boon-island-light.yaml @@ -0,0 +1,53 @@ +name: "Lighthouse In The Dark (Lighthouse In The Dark (Boon Island Light))" +source: + marketplace_id: "CodeTime.lighthouse-in-the-dark" + version: "0.1.0" + installs: 272 + rating: 0 + ratings: 0 + author: "Code Time" + repo: "https://github.com/afj176/lighthouse-in-the-dark" + url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.lighthouse-in-the-dark" + formats: null +colors: + bg: "#FFFFFF" + fg: "#1A1A1A" + black: "#1A1A1A" + red: "#D73A49" + green: "#28A745" + yellow: "#8B6914" + blue: "#0366D6" + magenta: "#9B4DCA" + cyan: "#00A896" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF6B6B" + brightGreen: "#4AE168" + brightYellow: "#CCAA00" + brightBlue: "#2188FF" + brightMagenta: "#B366E0" + brightCyan: "#00D4BE" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 104.3 + black: 104.3 + red: 70.4 + green: 57.9 + yellow: 74.9 + blue: 76.2 + magenta: 73.2 + cyan: 55.8 + white: 0 + brightBlack: 78.8 + brightRed: 52.8 + brightGreen: 30.3 + brightYellow: 44.2 + brightBlue: 61.7 + brightMagenta: 62.8 + brightCyan: 35 + brightWhite: 0 diff --git a/themes/lighthouse-in-the-dark-lighthouse-in-the-dark-rose-island-dark.yaml b/themes/lighthouse-in-the-dark-lighthouse-in-the-dark-rose-island-dark.yaml new file mode 100644 index 00000000..d7e7cbb8 --- /dev/null +++ b/themes/lighthouse-in-the-dark-lighthouse-in-the-dark-rose-island-dark.yaml @@ -0,0 +1,53 @@ +name: "Lighthouse In The Dark (Lighthouse In The Dark (Rose Island Dark))" +source: + marketplace_id: "CodeTime.lighthouse-in-the-dark" + version: "0.1.0" + installs: 272 + rating: 0 + ratings: 0 + author: "Code Time" + repo: "https://github.com/afj176/lighthouse-in-the-dark" + url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.lighthouse-in-the-dark" + formats: null +colors: + bg: "#1E1410" + fg: "#F5F0E8" + black: "#1E1410" + red: "#FF6B9D" + green: "#98C379" + yellow: "#FFB86C" + blue: "#61AFEF" + magenta: "#FF00FF" + cyan: "#56B6C2" + white: "#F5F0E8" + brightBlack: "#6B5A45" + brightRed: "#FF8BB0" + brightGreen: "#B8E89D" + brightYellow: "#FFD89C" + brightBlue: "#8BCEFF" + brightMagenta: "#FF66FF" + brightCyan: "#7DD6E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 43 + pair: null + contrast: + fg: 97.4 + black: 0 + red: 49.6 + green: 62.3 + yellow: 71.5 + blue: 54.7 + magenta: 45.3 + cyan: 54.6 + white: 97.4 + brightBlack: 18.2 + brightRed: 58.4 + brightGreen: 83.5 + brightYellow: 85.5 + brightBlue: 71.6 + brightMagenta: 53.9 + brightCyan: 72.7 + brightWhite: 106.9 diff --git a/themes/lighthouse-in-the-dark-lighthouse-in-the-dark-rose-island-light.yaml b/themes/lighthouse-in-the-dark-lighthouse-in-the-dark-rose-island-light.yaml new file mode 100644 index 00000000..15e462a7 --- /dev/null +++ b/themes/lighthouse-in-the-dark-lighthouse-in-the-dark-rose-island-light.yaml @@ -0,0 +1,53 @@ +name: "Lighthouse In The Dark (Lighthouse In The Dark (Rose Island Light))" +source: + marketplace_id: "CodeTime.lighthouse-in-the-dark" + version: "0.1.0" + installs: 272 + rating: 0 + ratings: 0 + author: "Code Time" + repo: "https://github.com/afj176/lighthouse-in-the-dark" + url: "https://marketplace.visualstudio.com/items?itemName=CodeTime.lighthouse-in-the-dark" + formats: null +colors: + bg: "#D5CAAE" + fg: "#1A1612" + black: "#1A1612" + red: "#A83D45" + green: "#4A7C59" + yellow: "#8B6914" + blue: "#2E6B8A" + magenta: "#8B2EB8" + cyan: "#2E7A7A" + white: "#D5CAAE" + brightBlack: "#6B5A45" + brightRed: "#CC4D55" + brightGreen: "#5A9C69" + brightYellow: "#A87A18" + brightBlue: "#3E8BAA" + brightMagenta: "#AB3ED8" + brightCyan: "#3E9A9A" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: 89 + pair: null + contrast: + fg: 74.4 + black: 74.4 + red: 49.5 + green: 43.3 + yellow: 44.6 + blue: 48.8 + magenta: 51.3 + cyan: 44.2 + white: 0 + brightBlack: 52.4 + brightRed: 39.5 + brightGreen: 29.7 + brightYellow: 35.4 + brightBlue: 35.3 + brightMagenta: 41.7 + brightCyan: 30.2 + brightWhite: 31.7 diff --git a/themes/lightning--lightning-cloud.yaml b/themes/lightning--lightning-cloud.yaml new file mode 100644 index 00000000..05dc5549 --- /dev/null +++ b/themes/lightning--lightning-cloud.yaml @@ -0,0 +1,53 @@ +name: "Lightning (Lightning Cloud)" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 892 + rating: 0 + ratings: 0 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" + formats: null +colors: + bg: "#F1FBFF" + fg: "#3475A2" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#38B2E7" + white: "#C4C6CB" + brightBlack: "#787878" + brightRed: "#FE2B64" + brightGreen: "#2BBA93" + brightYellow: "#FAA630" + brightBlue: "#2680FF" + brightMagenta: "#BC47B2" + brightCyan: "#1C95BE" + brightWhite: "#CEDCDE" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 70.8 + black: 102.6 + red: 67.9 + green: 20.6 + yellow: 22.5 + blue: 61 + magenta: 58.4 + cyan: 43.7 + white: 27.2 + brightBlack: 67.2 + brightRed: 58.7 + brightGreen: 44.4 + brightYellow: 34.7 + brightBlue: 60.9 + brightMagenta: 66.9 + brightCyan: 58.1 + brightWhite: 16.3 diff --git a/themes/lightning--lightning-dark.yaml b/themes/lightning--lightning-dark.yaml new file mode 100644 index 00000000..f48ef519 --- /dev/null +++ b/themes/lightning--lightning-dark.yaml @@ -0,0 +1,53 @@ +name: "Lightning (Lightning Dark)" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 892 + rating: 0 + ratings: 0 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" + formats: null +colors: + bg: "#1A1745" + fg: "#76C6FF" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#3EC5FF" + white: "#C4C6CB" + brightBlack: "#333333" + brightRed: "#FF477E" + brightGreen: "#66FFDE" + brightYellow: "#F07178" + brightBlue: "#44B1FF" + brightMagenta: "#B76DFF" + brightCyan: "#21FBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 281 + pair: null + contrast: + fg: 65.7 + black: 0 + red: 28.4 + green: 77.2 + yellow: 75.2 + blue: 35.2 + magenta: 37.8 + cyan: 62.8 + white: 70.1 + brightBlack: 0 + brightRed: 41.3 + brightGreen: 90.5 + brightYellow: 45.7 + brightBlue: 54.4 + brightMagenta: 41.5 + brightCyan: 88.3 + brightWhite: 105.9 diff --git a/themes/lightning--lightning-material-day.yaml b/themes/lightning--lightning-material-day.yaml new file mode 100644 index 00000000..9b32afa8 --- /dev/null +++ b/themes/lightning--lightning-material-day.yaml @@ -0,0 +1,53 @@ +name: "Lightning (Lightning Material - Day)" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 892 + rating: 0 + ratings: 0 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" + formats: null +colors: + bg: "#F3FAFF" + fg: "#3475A2" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#38B2E7" + white: "#C4C6CB" + brightBlack: "#787878" + brightRed: "#FE2B64" + brightGreen: "#2BBA93" + brightYellow: "#FAA630" + brightBlue: "#2680FF" + brightMagenta: "#BC47B2" + brightCyan: "#1C95BE" + brightWhite: "#CEDCDE" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 70.6 + black: 102.4 + red: 67.7 + green: 20.4 + yellow: 22.3 + blue: 60.9 + magenta: 58.2 + cyan: 43.5 + white: 27 + brightBlack: 67 + brightRed: 58.5 + brightGreen: 44.2 + brightYellow: 34.5 + brightBlue: 60.7 + brightMagenta: 66.7 + brightCyan: 57.9 + brightWhite: 16.1 diff --git a/themes/lightning--lightning-material-evening.yaml b/themes/lightning--lightning-material-evening.yaml new file mode 100644 index 00000000..850b0699 --- /dev/null +++ b/themes/lightning--lightning-material-evening.yaml @@ -0,0 +1,53 @@ +name: "Lightning (Lightning Material - Evening)" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 892 + rating: 0 + ratings: 0 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" + formats: null +colors: + bg: "#202657" + fg: "#76C6FF" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#3EC5FF" + white: "#C4C6CB" + brightBlack: "#333333" + brightRed: "#FF477E" + brightGreen: "#66FFDE" + brightYellow: "#F07178" + brightBlue: "#44B1FF" + brightMagenta: "#B76DFF" + brightCyan: "#21FBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + pair: null + contrast: + fg: 63.5 + black: 0 + red: 26.2 + green: 75 + yellow: 73 + blue: 33 + magenta: 35.7 + cyan: 60.6 + white: 68 + brightBlack: 0 + brightRed: 39.1 + brightGreen: 88.3 + brightYellow: 43.5 + brightBlue: 52.2 + brightMagenta: 39.3 + brightCyan: 86.1 + brightWhite: 103.7 diff --git a/themes/lightning--lightning-material-midnight.yaml b/themes/lightning--lightning-material-midnight.yaml new file mode 100644 index 00000000..90e7015a --- /dev/null +++ b/themes/lightning--lightning-material-midnight.yaml @@ -0,0 +1,53 @@ +name: "Lightning (Lightning Material - Midnight)" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 892 + rating: 0 + ratings: 0 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" + formats: null +colors: + bg: "#2F2857" + fg: "#76C6FF" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#3EC5FF" + white: "#C4C6CB" + brightBlack: "#333333" + brightRed: "#FF477E" + brightGreen: "#66FFDE" + brightYellow: "#F07178" + brightBlue: "#44B1FF" + brightMagenta: "#B76DFF" + brightCyan: "#21FBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 287 + pair: null + contrast: + fg: 62.7 + black: 0 + red: 25.4 + green: 74.2 + yellow: 72.2 + blue: 32.2 + magenta: 34.8 + cyan: 59.8 + white: 67.1 + brightBlack: 0 + brightRed: 38.3 + brightGreen: 87.5 + brightYellow: 42.6 + brightBlue: 51.4 + brightMagenta: 38.5 + brightCyan: 85.3 + brightWhite: 102.9 diff --git a/themes/lightning--lightning-material-soft.yaml b/themes/lightning--lightning-material-soft.yaml new file mode 100644 index 00000000..0fd7aaf8 --- /dev/null +++ b/themes/lightning--lightning-material-soft.yaml @@ -0,0 +1,53 @@ +name: "Lightning (Lightning Material - Soft)" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 892 + rating: 0 + ratings: 0 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" + formats: null +colors: + bg: "#262B3D" + fg: "#76C6FF" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#3EC5FF" + white: "#C4C6CB" + brightBlack: "#333333" + brightRed: "#FF477E" + brightGreen: "#66FFDE" + brightYellow: "#F07178" + brightBlue: "#44B1FF" + brightMagenta: "#B76DFF" + brightCyan: "#21FBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 272 + pair: null + contrast: + fg: 63.4 + black: 0 + red: 26.2 + green: 75 + yellow: 72.9 + blue: 33 + magenta: 35.6 + cyan: 60.5 + white: 67.9 + brightBlack: 0 + brightRed: 39.1 + brightGreen: 88.2 + brightYellow: 43.4 + brightBlue: 52.2 + brightMagenta: 39.3 + brightCyan: 86 + brightWhite: 103.7 diff --git a/themes/lightning--lightning-soft-dark.yaml b/themes/lightning--lightning-soft-dark.yaml new file mode 100644 index 00000000..5eebfd29 --- /dev/null +++ b/themes/lightning--lightning-soft-dark.yaml @@ -0,0 +1,53 @@ +name: "Lightning (Lightning Soft - Dark)" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 892 + rating: 0 + ratings: 0 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" + formats: null +colors: + bg: "#212135" + fg: "#76C6FF" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#3EC5FF" + white: "#C4C6CB" + brightBlack: "#333333" + brightRed: "#FF477E" + brightGreen: "#66FFDE" + brightYellow: "#F07178" + brightBlue: "#44B1FF" + brightMagenta: "#B76DFF" + brightCyan: "#21FBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 283 + pair: null + contrast: + fg: 65 + black: 0 + red: 27.8 + green: 76.6 + yellow: 74.5 + blue: 34.6 + magenta: 37.2 + cyan: 62.1 + white: 69.5 + brightBlack: 0 + brightRed: 40.7 + brightGreen: 89.8 + brightYellow: 45 + brightBlue: 53.7 + brightMagenta: 40.9 + brightCyan: 87.6 + brightWhite: 105.3 diff --git a/themes/lightning--lightning-soft.yaml b/themes/lightning--lightning-soft.yaml new file mode 100644 index 00000000..0b408a8b --- /dev/null +++ b/themes/lightning--lightning-soft.yaml @@ -0,0 +1,53 @@ +name: "Lightning (Lightning Soft)" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 892 + rating: 0 + ratings: 0 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" + formats: null +colors: + bg: "#171724" + fg: "#76C6FF" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#3EC5FF" + white: "#C4C6CB" + brightBlack: "#333333" + brightRed: "#FF477E" + brightGreen: "#66FFDE" + brightYellow: "#F07178" + brightBlue: "#44B1FF" + brightMagenta: "#B76DFF" + brightCyan: "#21FBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 66.5 + black: 0 + red: 29.2 + green: 78 + yellow: 76 + blue: 36 + magenta: 38.6 + cyan: 63.6 + white: 70.9 + brightBlack: 0 + brightRed: 42.1 + brightGreen: 91.3 + brightYellow: 46.5 + brightBlue: 55.2 + brightMagenta: 42.3 + brightCyan: 89.1 + brightWhite: 106.7 diff --git a/themes/lightning--lightning.yaml b/themes/lightning--lightning.yaml new file mode 100644 index 00000000..9cd1da18 --- /dev/null +++ b/themes/lightning--lightning.yaml @@ -0,0 +1,53 @@ +name: "Lightning (Lightning)" +source: + marketplace_id: "zevross.lightning" + version: "2.1.1" + installs: 892 + rating: 0 + ratings: 0 + author: "Zev Ross" + repo: "https://github.com/Zev18/lightning" + url: "https://marketplace.visualstudio.com/items?itemName=zevross.lightning" + formats: null +colors: + bg: "#0E0C29" + fg: "#76C6FF" + black: "#000000" + red: "#CF3E5B" + green: "#44EABD" + yellow: "#F5C86E" + blue: "#2681F9" + magenta: "#9172FF" + cyan: "#3EC5FF" + white: "#C4C6CB" + brightBlack: "#333333" + brightRed: "#FF477E" + brightGreen: "#66FFDE" + brightYellow: "#F07178" + brightBlue: "#44B1FF" + brightMagenta: "#B76DFF" + brightCyan: "#21FBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 282 + pair: null + contrast: + fg: 67.1 + black: 0 + red: 29.8 + green: 78.6 + yellow: 76.6 + blue: 36.6 + magenta: 39.3 + cyan: 64.2 + white: 71.6 + brightBlack: 0 + brightRed: 42.7 + brightGreen: 91.9 + brightYellow: 47.1 + brightBlue: 55.8 + brightMagenta: 42.9 + brightCyan: 89.7 + brightWhite: 107.4 diff --git a/themes/linkarzu-colors.yaml b/themes/linkarzu-colors.yaml new file mode 100644 index 00000000..79b9b87b --- /dev/null +++ b/themes/linkarzu-colors.yaml @@ -0,0 +1,53 @@ +name: "Linkarzu Colors" +source: + marketplace_id: "linkarzu.linkarzu-vscolors" + version: "0.7.0" + installs: 492 + rating: 5 + ratings: 1 + author: "linkarzu" + repo: "https://github.com/linkarzu/linkarzu-vscolors" + url: "https://marketplace.visualstudio.com/items?itemName=linkarzu.linkarzu-vscolors" + formats: null +colors: + bg: "#0D1116" + fg: "#EBFAFA" + black: "#0D1116" + red: "#04D1F9" + green: "#5FA9F4" + yellow: "#1682EF" + blue: "#37F499" + magenta: "#1682EF" + cyan: "#19DFCF" + white: "#EBFAFA" + brightBlack: "#987AFB" + brightRed: "#04D1F9" + brightGreen: "#5FA9F4" + brightYellow: "#1682EF" + brightBlue: "#37F499" + brightMagenta: "#1682EF" + brightCyan: "#19DFCF" + brightWhite: "#EBFAFA" +meta: + mode: "dark" + accent: "teal" + hue: 254 + pair: null + contrast: + fg: 102.1 + black: 0 + red: 68.7 + green: 53 + yellow: 36 + blue: 82.3 + magenta: 36 + cyan: 73.2 + white: 102.1 + brightBlack: 42 + brightRed: 68.7 + brightGreen: 53 + brightYellow: 36 + brightBlue: 82.3 + brightMagenta: 36 + brightCyan: 73.2 + brightWhite: 102.1 diff --git a/themes/lino-themes.yaml b/themes/lino-themes.yaml new file mode 100644 index 00000000..0fd5114c --- /dev/null +++ b/themes/lino-themes.yaml @@ -0,0 +1,53 @@ +name: "Lino Themes" +source: + marketplace_id: "Lino.lino-themes" + version: "0.0.1" + installs: 270 + rating: 0 + ratings: 0 + author: "Lino" + repo: "https://github.com/AronCodes21/lino-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Lino.lino-themes" + formats: null +colors: + bg: "#0D0D0D" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#9B9B9B" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.6 + black: 0 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 48 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/linux-themes-for-vs-code--arc-dark.yaml b/themes/linux-themes-for-vs-code--arc-dark.yaml new file mode 100644 index 00000000..d8275b0e --- /dev/null +++ b/themes/linux-themes-for-vs-code--arc-dark.yaml @@ -0,0 +1,53 @@ +name: "Linux Themes for VS Code (Arc Dark)" +source: + marketplace_id: "rdnlsmith.linux-themes" + version: "1.3.0" + installs: 41725 + rating: 4.75 + ratings: 4 + author: "rdnlsmith" + repo: "https://github.com/rdnlsmith/vscode-arc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" + formats: null +colors: + bg: "#383C4A" + fg: "#A2A2A2" + black: "#262B36" + red: "#9C3528" + green: "#61BC3B" + yellow: "#F3B43A" + blue: "#0D68A8" + magenta: "#744560" + cyan: "#288E9C" + white: "#A2A2A2" + brightBlack: "#2F343F" + brightRed: "#D64937" + brightGreen: "#86DF5D" + brightYellow: "#FDD75A" + brightBlue: "#0F75BD" + brightMagenta: "#9E5E83" + brightCyan: "#37C3D6" + brightWhite: "#F9F9F9" +meta: + mode: "dark" + accent: "green" + hue: 273 + pair: null + contrast: + fg: 43.3 + black: 0 + red: 9.6 + green: 46.5 + yellow: 59.6 + blue: 14.2 + magenta: 0 + cyan: 27.3 + white: 43.3 + brightBlack: 0 + brightRed: 24.2 + brightGreen: 65.7 + brightYellow: 75.8 + brightBlue: 19.8 + brightMagenta: 20 + brightCyan: 52.7 + brightWhite: 95.3 diff --git a/themes/linux-themes-for-vs-code--elementary.yaml b/themes/linux-themes-for-vs-code--elementary.yaml new file mode 100644 index 00000000..42636426 --- /dev/null +++ b/themes/linux-themes-for-vs-code--elementary.yaml @@ -0,0 +1,53 @@ +name: "Linux Themes for VS Code (Elementary)" +source: + marketplace_id: "rdnlsmith.linux-themes" + version: "1.3.0" + installs: 41725 + rating: 4.75 + ratings: 4 + author: "rdnlsmith" + repo: "https://github.com/rdnlsmith/vscode-arc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" + formats: null +colors: + bg: "#FDF6E3" + fg: "#5E5E5E" + black: "#586E75" + red: "#CB4B16" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEEEEE" + brightBlack: "#073642" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#EC0048" + brightCyan: "#2AA198" + brightWhite: "#94A3A5" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 76.9 + black: 71.6 + red: 65.8 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 0 + brightBlack: 93.7 + brightRed: 65.3 + brightGreen: 53.8 + brightYellow: 53.8 + brightBlue: 58.7 + brightMagenta: 63.2 + brightCyan: 53.1 + brightWhite: 45.7 diff --git a/themes/linux-themes-for-vs-code--yaru-dark.yaml b/themes/linux-themes-for-vs-code--yaru-dark.yaml new file mode 100644 index 00000000..686746e4 --- /dev/null +++ b/themes/linux-themes-for-vs-code--yaru-dark.yaml @@ -0,0 +1,53 @@ +name: "Linux Themes for VS Code (Yaru Dark)" +source: + marketplace_id: "rdnlsmith.linux-themes" + version: "1.3.0" + installs: 41725 + rating: 4.75 + ratings: 4 + author: "rdnlsmith" + repo: "https://github.com/rdnlsmith/vscode-arc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" + formats: null +colors: + bg: "#2F2F2F" + fg: "#FFFFFF" + black: "#000000" + red: "#AA0000" + green: "#00AA00" + yellow: "#AA5500" + blue: "#0000AA" + magenta: "#AA00AA" + cyan: "#00AAAA" + white: "#AAAAAA" + brightBlack: "#555555" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 103 + black: 0 + red: 12.9 + green: 39.6 + yellow: 21.4 + blue: 0 + magenta: 17.6 + cyan: 42.8 + white: 51.3 + brightBlack: 11.2 + brightRed: 39.5 + brightGreen: 83.2 + brightYellow: 98.2 + brightBlue: 22.5 + brightMagenta: 47 + brightCyan: 88.5 + brightWhite: 103 diff --git a/themes/linux-themes-for-vs-code--yaru.yaml b/themes/linux-themes-for-vs-code--yaru.yaml new file mode 100644 index 00000000..ce39626e --- /dev/null +++ b/themes/linux-themes-for-vs-code--yaru.yaml @@ -0,0 +1,53 @@ +name: "Linux Themes for VS Code (Yaru)" +source: + marketplace_id: "rdnlsmith.linux-themes" + version: "1.3.0" + installs: 41725 + rating: 4.75 + ratings: 4 + author: "rdnlsmith" + repo: "https://github.com/rdnlsmith/vscode-arc-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rdnlsmith.linux-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#111111" + black: "#000000" + red: "#AA0000" + green: "#00AA00" + yellow: "#AA5500" + blue: "#0000AA" + magenta: "#AA00AA" + cyan: "#00AAAA" + white: "#AAAAAA" + brightBlack: "#555555" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 105.4 + black: 106 + red: 84.2 + green: 57.2 + yellow: 75.4 + blue: 96.7 + magenta: 79.3 + cyan: 54.2 + white: 45.8 + brightBlack: 85.9 + brightRed: 57.4 + brightGreen: 15.6 + brightYellow: 0 + brightBlue: 74.3 + brightMagenta: 50.1 + brightCyan: 10.7 + brightWhite: 0 diff --git a/themes/liquid-ray--liquid-ray-light.yaml b/themes/liquid-ray--liquid-ray-light.yaml new file mode 100644 index 00000000..a2e8836e --- /dev/null +++ b/themes/liquid-ray--liquid-ray-light.yaml @@ -0,0 +1,53 @@ +name: "Liquid Ray (Liquid Ray Light)" +source: + marketplace_id: "wiidede.liquid-ray" + version: "1.4.3" + installs: 1906 + rating: 5 + ratings: 2 + author: "wiidede" + repo: "https://github.com/wiidede/Liquid-Ray" + url: "https://marketplace.visualstudio.com/items?itemName=wiidede.liquid-ray" + formats: null +colors: + bg: "#FFFFFF" + fg: "#606060" + black: "#252526" + red: "#FF7477" + green: "#44D62C" + yellow: "#FFCE0E" + blue: "#00BFFF" + magenta: "#FF2BD3" + cyan: "#00B796" + white: "#ACA79F" + brightBlack: "#AAAAAA" + brightRed: "#FF7477" + brightGreen: "#44D62C" + brightYellow: "#FFCE0E" + brightBlue: "#00BFFF" + brightMagenta: "#FF2BD3" + brightCyan: "#00B796" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 81.3 + black: 102.2 + red: 50.5 + green: 36.3 + yellow: 22.8 + blue: 40.9 + magenta: 57.4 + cyan: 49.4 + white: 47.1 + brightBlack: 45.8 + brightRed: 50.5 + brightGreen: 36.3 + brightYellow: 22.8 + brightBlue: 40.9 + brightMagenta: 57.4 + brightCyan: 49.4 + brightWhite: 17.6 diff --git a/themes/liquid-ray--liquid-ray-soft-pink.yaml b/themes/liquid-ray--liquid-ray-soft-pink.yaml new file mode 100644 index 00000000..609d18d9 --- /dev/null +++ b/themes/liquid-ray--liquid-ray-soft-pink.yaml @@ -0,0 +1,53 @@ +name: "Liquid Ray (Liquid Ray Soft Pink)" +source: + marketplace_id: "wiidede.liquid-ray" + version: "1.4.3" + installs: 1906 + rating: 5 + ratings: 2 + author: "wiidede" + repo: "https://github.com/wiidede/Liquid-Ray" + url: "https://marketplace.visualstudio.com/items?itemName=wiidede.liquid-ray" + formats: null +colors: + bg: "#FDFBF2" + fg: "#606060" + black: "#252526" + red: "#FF7477" + green: "#44D62C" + yellow: "#FFCE0E" + blue: "#00BFFF" + magenta: "#FF2BD3" + cyan: "#00B796" + white: "#ACA79F" + brightBlack: "#AAAAAA" + brightRed: "#FF7477" + brightGreen: "#44D62C" + brightYellow: "#FFCE0E" + brightBlue: "#00BFFF" + brightMagenta: "#FF2BD3" + brightCyan: "#00B796" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.8 + black: 99.7 + red: 47.9 + green: 33.8 + yellow: 20.3 + blue: 38.4 + magenta: 54.9 + cyan: 46.9 + white: 44.6 + brightBlack: 43.3 + brightRed: 47.9 + brightGreen: 33.8 + brightYellow: 20.3 + brightBlue: 38.4 + brightMagenta: 54.9 + brightCyan: 46.9 + brightWhite: 15 diff --git a/themes/liquid-ray--liquid-ray.yaml b/themes/liquid-ray--liquid-ray.yaml new file mode 100644 index 00000000..cc057e55 --- /dev/null +++ b/themes/liquid-ray--liquid-ray.yaml @@ -0,0 +1,53 @@ +name: "Liquid Ray (Liquid Ray)" +source: + marketplace_id: "wiidede.liquid-ray" + version: "1.4.3" + installs: 1906 + rating: 5 + ratings: 2 + author: "wiidede" + repo: "https://github.com/wiidede/Liquid-Ray" + url: "https://marketplace.visualstudio.com/items?itemName=wiidede.liquid-ray" + formats: null +colors: + bg: "#252526" + fg: "#ACA79F" + black: "#606060" + red: "#FF7276" + green: "#44D62C" + yellow: "#FFE900" + blue: "#009ACE" + magenta: "#EA27C2" + cyan: "#00B796" + white: "#ACA79F" + brightBlack: "#777777" + brightRed: "#FF7276" + brightGreen: "#44D62C" + brightYellow: "#FFE900" + brightBlue: "#009ACE" + brightMagenta: "#EA27C2" + brightCyan: "#00B796" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 52 + black: 17.6 + red: 48 + green: 63.2 + yellow: 89.3 + blue: 40 + magenta: 35.3 + cyan: 49.6 + white: 52 + brightBlack: 27.6 + brightRed: 48 + brightGreen: 63.2 + brightYellow: 89.3 + brightBlue: 40 + brightMagenta: 35.3 + brightCyan: 49.6 + brightWhite: 105 diff --git a/themes/little-league--little-league-dark.yaml b/themes/little-league--little-league-dark.yaml new file mode 100644 index 00000000..cee959d0 --- /dev/null +++ b/themes/little-league--little-league-dark.yaml @@ -0,0 +1,54 @@ +name: "Little League (Little League Dark)" +source: + marketplace_id: "MatthewStrom.little-league" + version: "1.3.1" + installs: 566 + rating: 0 + ratings: 0 + author: "Matthew Ström" + repo: "https://github.com/ilikescience/little-league" + url: "https://marketplace.visualstudio.com/items?itemName=MatthewStrom.little-league" + formats: + iterm2: "https://raw.githubusercontent.com/ilikescience/little-league/main/extra/iterm/Little League Dark.itermcolors" +colors: + bg: "#28282D" + fg: "#EDEDED" + black: "#28282D" + red: "#F78C6C" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#89B4FE" + magenta: "#CF89FE" + cyan: "#64B5F6" + white: "#EDEDED" + brightBlack: "#8D8D8E" + brightRed: "#EF6C6A" + brightGreen: "#99C88D" + brightYellow: "#F9E59B" + brightBlue: "#6494F6" + brightMagenta: "#BB64F6" + brightCyan: "#78CAFB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 52.5 + green: 81.7 + yellow: 76.4 + blue: 57.9 + magenta: 51 + cyan: 55.2 + white: 92.6 + brightBlack: 37.6 + brightRed: 42.3 + brightGreen: 62.6 + brightYellow: 87.7 + brightBlue: 42.4 + brightMagenta: 37.8 + brightCyan: 65.7 + brightWhite: 104.4 diff --git a/themes/little-league--little-league-darker.yaml b/themes/little-league--little-league-darker.yaml new file mode 100644 index 00000000..a8f5eb1e --- /dev/null +++ b/themes/little-league--little-league-darker.yaml @@ -0,0 +1,54 @@ +name: "Little League (Little League Darker)" +source: + marketplace_id: "MatthewStrom.little-league" + version: "1.3.1" + installs: 566 + rating: 0 + ratings: 0 + author: "Matthew Ström" + repo: "https://github.com/ilikescience/little-league" + url: "https://marketplace.visualstudio.com/items?itemName=MatthewStrom.little-league" + formats: + iterm2: "https://raw.githubusercontent.com/ilikescience/little-league/main/extra/iterm/Little League Dark.itermcolors" +colors: + bg: "#1B1B1E" + fg: "#EDEDED" + black: "#28282D" + red: "#F78C6C" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#89B4FE" + magenta: "#CF89FE" + cyan: "#64B5F6" + white: "#EDEDED" + brightBlack: "#8D8D8E" + brightRed: "#EF6C6A" + brightGreen: "#99C88D" + brightYellow: "#F9E59B" + brightBlue: "#6494F6" + brightMagenta: "#BB64F6" + brightCyan: "#78CAFB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 94.6 + black: 0 + red: 54.5 + green: 83.7 + yellow: 78.5 + blue: 59.9 + magenta: 53.1 + cyan: 57.3 + white: 94.6 + brightBlack: 39.6 + brightRed: 44.4 + brightGreen: 64.6 + brightYellow: 89.7 + brightBlue: 44.5 + brightMagenta: 39.8 + brightCyan: 67.8 + brightWhite: 106.4 diff --git a/themes/little-league--little-league-light.yaml b/themes/little-league--little-league-light.yaml new file mode 100644 index 00000000..cb0ea3b6 --- /dev/null +++ b/themes/little-league--little-league-light.yaml @@ -0,0 +1,54 @@ +name: "Little League (Little League Light)" +source: + marketplace_id: "MatthewStrom.little-league" + version: "1.3.1" + installs: 566 + rating: 0 + ratings: 0 + author: "Matthew Ström" + repo: "https://github.com/ilikescience/little-league" + url: "https://marketplace.visualstudio.com/items?itemName=MatthewStrom.little-league" + formats: + iterm2: "https://raw.githubusercontent.com/ilikescience/little-league/main/extra/iterm/Little League Dark.itermcolors" +colors: + bg: "#FFFFFF" + fg: "#5A5A5D" + black: "#F5F5F5" + red: "#CA7967" + green: "#4E864E" + yellow: "#A8853D" + blue: "#4771E2" + magenta: "#A447E2" + cyan: "#3472C7" + white: "#35353B" + brightBlack: "#5A5A5D" + brightRed: "#EF6C6A" + brightGreen: "#AED88D" + brightYellow: "#D5A23C" + brightBlue: "#6494F6" + brightMagenta: "#BB64F6" + brightCyan: "#4095DF" + brightWhite: "#5A5A5D" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 83.8 + black: 0 + red: 59.7 + green: 69.9 + yellow: 61.9 + blue: 70.4 + magenta: 71 + cyan: 72.9 + white: 97.8 + brightBlack: 83.8 + brightRed: 55.9 + brightGreen: 27.5 + brightYellow: 45.5 + brightBlue: 55.8 + brightMagenta: 60.4 + brightCyan: 58.8 + brightWhite: 83.8 diff --git a/themes/loki-official--loki-official-classic.yaml b/themes/loki-official--loki-official-classic.yaml new file mode 100644 index 00000000..9f58af8b --- /dev/null +++ b/themes/loki-official--loki-official-classic.yaml @@ -0,0 +1,53 @@ +name: "Loki Official (Loki Official - Classic)" +source: + marketplace_id: "SeuFernandez.loki-official-theme" + version: "0.1.53" + installs: 1881 + rating: 5 + ratings: 4 + author: "SeuFernandez" + repo: "https://github.com/seufernandez/loki-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SeuFernandez.loki-official-theme" + formats: null +colors: + bg: "#1D1D1D" + fg: "#F8F8F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.3 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/loki-official--loki-official-kang-edition.yaml b/themes/loki-official--loki-official-kang-edition.yaml new file mode 100644 index 00000000..cbffd34f --- /dev/null +++ b/themes/loki-official--loki-official-kang-edition.yaml @@ -0,0 +1,53 @@ +name: "Loki Official (Loki Official - Kang Edition)" +source: + marketplace_id: "SeuFernandez.loki-official-theme" + version: "0.1.53" + installs: 1881 + rating: 5 + ratings: 4 + author: "SeuFernandez" + repo: "https://github.com/seufernandez/loki-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SeuFernandez.loki-official-theme" + formats: null +colors: + bg: "#1D1C24" + fg: "#F8F8F2" + black: "#151320" + red: "#FF5555" + green: "#8AFF80" + yellow: "#FFFF80" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#80FFEA" + white: "#F8F8F2" + brightBlack: "#5F5594" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 291 + pair: null + contrast: + fg: 101.3 + black: 0 + red: 42.7 + green: 89.7 + yellow: 102 + blue: 53 + magenta: 53.9 + cyan: 92.6 + white: 101.3 + brightBlack: 17.9 + brightRed: 48.1 + brightGreen: 88.4 + brightYellow: 102.9 + brightBlue: 65.4 + brightMagenta: 61.9 + brightCyan: 96.1 + brightWhite: 106.2 diff --git a/themes/lonely-theme.yaml b/themes/lonely-theme.yaml new file mode 100644 index 00000000..cc50d5c8 --- /dev/null +++ b/themes/lonely-theme.yaml @@ -0,0 +1,53 @@ +name: "Lonely Theme" +source: + marketplace_id: "Rajdeep-Ray.lonely-theme" + version: "0.0.2" + installs: 1216 + rating: 5 + ratings: 2 + author: "Rajdeep Ray" + repo: "https://github.com/Rajdeep-Ray/Lonely-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Rajdeep-Ray.lonely-theme" + formats: null +colors: + bg: "#24292E" + fg: "#EEFFFF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 248 + pair: null + contrast: + fg: 102 + black: 0 + red: 34.2 + green: 57.8 + yellow: 46.1 + blue: 47.1 + magenta: 36.5 + cyan: 50 + white: 88.1 + brightBlack: 12.9 + brightRed: 43.6 + brightGreen: 74.3 + brightYellow: 58.7 + brightBlue: 61.2 + brightMagenta: 47.7 + brightCyan: 65.3 + brightWhite: 80.5 diff --git a/themes/lonus.yaml b/themes/lonus.yaml new file mode 100644 index 00000000..1eb3cc01 --- /dev/null +++ b/themes/lonus.yaml @@ -0,0 +1,53 @@ +name: "lonus" +source: + marketplace_id: "Aerglonus.Lonus-dark" + version: "1.3.1" + installs: 10556 + rating: 0 + ratings: 0 + author: "Aerglonus" + repo: "https://github.com/Aerglonus/lonus-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Aerglonus.Lonus-dark" + formats: null +colors: + bg: "#1C1D21" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.8 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29 + cyan: 46.8 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.8 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/lookify-dark-light-themes--lookify-dark-mode.yaml b/themes/lookify-dark-light-themes--lookify-dark-mode.yaml new file mode 100644 index 00000000..e72fa610 --- /dev/null +++ b/themes/lookify-dark-light-themes--lookify-dark-mode.yaml @@ -0,0 +1,53 @@ +name: "LookiFy - Dark & Light Themes (LookiFy Dark mode)" +source: + marketplace_id: "prince.lookify" + version: "0.1.0" + installs: 644 + rating: 5 + ratings: 4 + author: "prince" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=prince.lookify" + formats: null +colors: + bg: "#1B1E28" + fg: "#E1E3E6" + black: "#1C1F27" + red: "#FF6F61" + green: "#61D1B2" + yellow: "#FFD580" + blue: "#3C91E6" + magenta: "#E798B3" + cyan: "#61D1B2" + white: "#A4B9C9" + brightBlack: "#4B6075" + brightRed: "#FF9282" + brightGreen: "#61D1B2" + brightYellow: "#FFD580" + brightBlue: "#3C91E6" + brightMagenta: "#E798B3" + brightCyan: "#61D1B2" + brightWhite: "#E1E3E6" +meta: + mode: "dark" + accent: "orange" + hue: 272 + pair: "LookiFy - Dark & Light Themes (LookiFy Light mode)" + contrast: + fg: 87.8 + black: 0 + red: 47.9 + green: 65.7 + yellow: 82.6 + blue: 40 + magenta: 57.1 + cyan: 65.7 + white: 61.1 + brightBlack: 17.8 + brightRed: 58 + brightGreen: 65.7 + brightYellow: 82.6 + brightBlue: 40 + brightMagenta: 57.1 + brightCyan: 65.7 + brightWhite: 87.8 diff --git a/themes/lookify-dark-light-themes--lookify-light-mode.yaml b/themes/lookify-dark-light-themes--lookify-light-mode.yaml new file mode 100644 index 00000000..517938c5 --- /dev/null +++ b/themes/lookify-dark-light-themes--lookify-light-mode.yaml @@ -0,0 +1,53 @@ +name: "LookiFy - Dark & Light Themes (LookiFy Light mode)" +source: + marketplace_id: "prince.lookify" + version: "0.1.0" + installs: 644 + rating: 5 + ratings: 4 + author: "prince" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=prince.lookify" + formats: null +colors: + bg: "#F6F7FA" + fg: "#2C2C2C" + black: "#F0F8FC" + red: "#D74C3C" + green: "#61D1B2" + yellow: "#FFD64D" + blue: "#3A8DD5" + magenta: "#E2A3B8" + cyan: "#61D1B2" + white: "#2C2C2C" + brightBlack: "#A8C8E9" + brightRed: "#FF6F61" + brightGreen: "#00B300" + brightYellow: "#FFFF00" + brightBlue: "#007FFF" + brightMagenta: "#D74C3C" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + pair: "LookiFy - Dark & Light Themes (LookiFy Dark mode)" + contrast: + fg: 95.8 + black: 0 + red: 63.3 + green: 30.2 + yellow: 14.5 + blue: 57.8 + magenta: 35.5 + cyan: 30.2 + white: 95.8 + brightBlack: 26.7 + brightRed: 47.3 + brightGreen: 48.5 + brightYellow: 0 + brightBlue: 60.1 + brightMagenta: 63.3 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/lotus-dark-theme.yaml b/themes/lotus-dark-theme.yaml new file mode 100644 index 00000000..75cff46a --- /dev/null +++ b/themes/lotus-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Lotus Dark Theme" +source: + marketplace_id: "Birdlinux.lotus-dark-theme" + version: "0.1.1" + installs: 1934 + rating: 5 + ratings: 1 + author: "Birdlinux" + repo: "https://github.com/birdlinux/lotus-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Birdlinux.lotus-dark-theme" + formats: null +colors: + bg: "#11111B" + fg: "#CDD6F4" + black: "#756E87" + red: "#8C82A6" + green: "#9F94BC" + yellow: "#ADA2C9" + blue: "#9F94BC" + magenta: "#CCC4E4" + cyan: "#DDD7EF" + white: "#F4F1FA" + brightBlack: "#756E87" + brightRed: "#8C82A6" + brightGreen: "#9F94BC" + brightYellow: "#ADA2C9" + brightBlue: "#9F94BC" + brightMagenta: "#CCC4E4" + brightCyan: "#DDD7EF" + brightWhite: "#F4F1FA" +meta: + mode: "dark" + accent: "magenta" + hue: 284 + pair: null + contrast: + fg: 81.5 + black: 27.5 + red: 37.7 + green: 47 + yellow: 54.4 + blue: 47 + magenta: 72.9 + cyan: 83.7 + white: 99 + brightBlack: 27.5 + brightRed: 37.7 + brightGreen: 47 + brightYellow: 54.4 + brightBlue: 47 + brightMagenta: 72.9 + brightCyan: 83.7 + brightWhite: 99 diff --git a/themes/lotus-theme--lotus-dark.yaml b/themes/lotus-theme--lotus-dark.yaml new file mode 100644 index 00000000..cbe2b1ea --- /dev/null +++ b/themes/lotus-theme--lotus-dark.yaml @@ -0,0 +1,53 @@ +name: "Lotus Theme (Lotus Dark)" +source: + marketplace_id: "SkyLiss.lotus-theme" + version: "1.1.5" + installs: 12517 + rating: 5 + ratings: 3 + author: "SkyLissh" + repo: "https://github.com/SkyLissh/lotus-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SkyLiss.lotus-theme" + formats: null +colors: + bg: "#222222" + fg: "#FCFCFA" + black: "#222222" + red: "#D33C62" + green: "#81B84A" + yellow: "#C09C31" + blue: "#D97645" + magenta: "#7B6CC9" + cyan: "#4EADB8" + white: "#939293" + brightBlack: "#595959" + brightRed: "#FF6188" + brightGreen: "#A9DC76" + brightYellow: "#FFF48A" + brightBlue: "#FC9867" + brightMagenta: "#AB9DF2" + brightCyan: "#78DCE8" + brightWhite: "#FCFCFA" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 103.4 + black: 0 + red: 28.7 + green: 53.2 + yellow: 48.7 + blue: 40.9 + magenta: 29.3 + cyan: 48.5 + white: 41.3 + brightBlack: 15.3 + brightRed: 45.4 + brightGreen: 73.9 + brightYellow: 96.2 + brightBlue: 58.2 + brightMagenta: 52.8 + brightCyan: 74 + brightWhite: 103.4 diff --git a/themes/lotus-theme--lotus-light.yaml b/themes/lotus-theme--lotus-light.yaml new file mode 100644 index 00000000..707b92c5 --- /dev/null +++ b/themes/lotus-theme--lotus-light.yaml @@ -0,0 +1,53 @@ +name: "Lotus Theme (Lotus Light)" +source: + marketplace_id: "SkyLiss.lotus-theme" + version: "1.1.5" + installs: 12517 + rating: 5 + ratings: 3 + author: "SkyLissh" + repo: "https://github.com/SkyLissh/lotus-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SkyLiss.lotus-theme" + formats: null +colors: + bg: "#FFF0F6" + fg: "#121212" + black: "#222222" + red: "#D33C62" + green: "#81B84A" + yellow: "#C09C31" + blue: "#D97645" + magenta: "#7B6CC9" + cyan: "#4EADB8" + white: "#C7C7C5" + brightBlack: "#595959" + brightRed: "#FF6188" + brightGreen: "#6FDE00" + brightYellow: "#CF9A00" + brightBlue: "#FC9867" + brightMagenta: "#836DF2" + brightCyan: "#78DCE8" + brightWhite: "#C7C7C5" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 98.5 + black: 96.2 + red: 63.8 + green: 39.7 + yellow: 44.1 + blue: 51.7 + magenta: 63.2 + cyan: 44.3 + white: 23.5 + brightBlack: 77.6 + brightRed: 47.3 + brightGreen: 24.2 + brightYellow: 42.7 + brightBlue: 34.9 + brightMagenta: 59.1 + brightCyan: 19.9 + brightWhite: 23.5 diff --git a/themes/low-eye-strain-dark-neon--cosmicsarthak-dark.yaml b/themes/low-eye-strain-dark-neon--cosmicsarthak-dark.yaml new file mode 100644 index 00000000..5c484269 --- /dev/null +++ b/themes/low-eye-strain-dark-neon--cosmicsarthak-dark.yaml @@ -0,0 +1,53 @@ +name: "Low Eye Strain Dark Neon (cosmicsarthak Dark)" +source: + marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" + version: "4.4.7" + installs: 24469 + rating: 5 + ratings: 4 + author: "cosmicsarthak" + repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" + formats: null +colors: + bg: "#010D18" + fg: "#9AB3C1" + black: "#010D18" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#FFF500" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#FFF500" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 242 + pair: null + contrast: + fg: 58.8 + black: 0 + red: 40 + green: 68 + yellow: 82.8 + blue: 97.6 + magenta: 54.5 + cyan: 60.4 + white: 107.6 + brightBlack: 16.3 + brightRed: 40 + brightGreen: 68 + brightYellow: 94.4 + brightBlue: 97.6 + brightMagenta: 54.5 + brightCyan: 74.7 + brightWhite: 107.6 diff --git a/themes/low-eye-strain-dark-neon--cosmicsarthak-neon.yaml b/themes/low-eye-strain-dark-neon--cosmicsarthak-neon.yaml new file mode 100644 index 00000000..1d98583d --- /dev/null +++ b/themes/low-eye-strain-dark-neon--cosmicsarthak-neon.yaml @@ -0,0 +1,53 @@ +name: "Low Eye Strain Dark Neon (cosmicsarthak-neon)" +source: + marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" + version: "4.4.7" + installs: 24469 + rating: 5 + ratings: 4 + author: "cosmicsarthak" + repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" + formats: null +colors: + bg: "#030D22" + fg: "#FDFEFF" + black: "#3A1B75" + red: "#EE1682" + green: "#06AD00" + yellow: "#FFD400" + blue: "#3787D6" + magenta: "#26FF00" + cyan: "#0AB2FA" + white: "#FD6666" + brightBlack: "#5C6D75" + brightRed: "#FF2E97" + brightGreen: "#00FFF2" + brightYellow: "#FD6666" + brightBlue: "#5994CE" + brightMagenta: "#FFD400" + brightCyan: "#4BC5FA" + brightWhite: "#EE0077" +meta: + mode: "dark" + accent: "green" + hue: 260 + pair: null + contrast: + fg: 106.7 + black: 0 + red: 35.1 + green: 45.5 + yellow: 82.6 + blue: 36.6 + magenta: 86.3 + cyan: 55.1 + white: 47.1 + brightBlack: 24.5 + brightRed: 41.2 + brightGreen: 91.1 + brightYellow: 47.1 + brightBlue: 42.2 + brightMagenta: 82.6 + brightCyan: 64.4 + brightWhite: 34.5 diff --git a/themes/low-eye-strain-dark-neon--cosmicsarthak-night-owl.yaml b/themes/low-eye-strain-dark-neon--cosmicsarthak-night-owl.yaml new file mode 100644 index 00000000..b542ac94 --- /dev/null +++ b/themes/low-eye-strain-dark-neon--cosmicsarthak-night-owl.yaml @@ -0,0 +1,53 @@ +name: "Low Eye Strain Dark Neon (cosmicsarthak Night Owl)" +source: + marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" + version: "4.4.7" + installs: 24469 + rating: 5 + ratings: 4 + author: "cosmicsarthak" + repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" + formats: null +colors: + bg: "#011627" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 244 + pair: null + contrast: + fg: 85.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 82.1 + blue: 56 + magenta: 53.8 + cyan: 59.8 + white: 107 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 107 diff --git a/themes/low-eye-strain-dark-neon--cosmicsarthak-red.yaml b/themes/low-eye-strain-dark-neon--cosmicsarthak-red.yaml new file mode 100644 index 00000000..667f0993 --- /dev/null +++ b/themes/low-eye-strain-dark-neon--cosmicsarthak-red.yaml @@ -0,0 +1,53 @@ +name: "Low Eye Strain Dark Neon (cosmicsarthak Red)" +source: + marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" + version: "4.4.7" + installs: 24469 + rating: 5 + ratings: 4 + author: "cosmicsarthak" + repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" + formats: null +colors: + bg: "#390000" + fg: "#CD8D8D" + black: "#390000" + red: "#EF5350" + green: "#22DA6E" + yellow: "#E544FF" + blue: "#FFF500" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#FFF500" + brightMagenta: "#C792EA" + brightCyan: "#FF4329" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 29 + pair: null + contrast: + fg: 47.9 + black: 0 + red: 38.5 + green: 66.4 + yellow: 42.3 + blue: 96.1 + magenta: 52.9 + cyan: 58.9 + white: 106.1 + brightBlack: 14.8 + brightRed: 38.5 + brightGreen: 66.4 + brightYellow: 92.9 + brightBlue: 96.1 + brightMagenta: 52.9 + brightCyan: 39.4 + brightWhite: 106.1 diff --git a/themes/low-eye-strain-dark-neon-solarized-dark.yaml b/themes/low-eye-strain-dark-neon-solarized-dark.yaml new file mode 100644 index 00000000..71058f91 --- /dev/null +++ b/themes/low-eye-strain-dark-neon-solarized-dark.yaml @@ -0,0 +1,53 @@ +name: "Low Eye Strain Dark Neon (Solarized (dark))" +source: + marketplace_id: "cosmicsarthak.cosmicsarthak-neon-theme" + version: "4.4.7" + installs: 24469 + rating: 5 + ratings: 4 + author: "cosmicsarthak" + repo: "https://github.com/cosmicsarthak/cosmicsarthak-neon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cosmicsarthak.cosmicsarthak-neon-theme" + formats: null +colors: + bg: "#002B36" + fg: "#839496" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 220 + pair: null + contrast: + fg: 39.5 + black: 0 + red: 27.7 + green: 39.2 + yellow: 39.2 + blue: 34.3 + magenta: 28 + cyan: 40 + white: 89.5 + brightBlack: 0 + brightRed: 27.2 + brightGreen: 21.5 + brightYellow: 27.3 + brightBlue: 39.5 + brightMagenta: 28 + brightCyan: 46.4 + brightWhite: 98.6 diff --git a/themes/luan-theme.yaml b/themes/luan-theme.yaml new file mode 100644 index 00000000..7edd64b7 --- /dev/null +++ b/themes/luan-theme.yaml @@ -0,0 +1,53 @@ +name: "Luan Theme" +source: + marketplace_id: "LuanMachado.Luan-Theme" + version: "0.0.0" + installs: 201 + rating: 0 + ratings: 0 + author: "LuanMachado" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LuanMachado.Luan-Theme" + formats: null +colors: + bg: "#1C182E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 291 + pair: null + contrast: + fg: 79 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.3 + cyan: 47.1 + white: 89.5 + brightBlack: 21.5 + brightRed: 38.1 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/lucario-theme.yaml b/themes/lucario-theme.yaml new file mode 100644 index 00000000..80b62512 --- /dev/null +++ b/themes/lucario-theme.yaml @@ -0,0 +1,53 @@ +name: "Lucario Theme" +source: + marketplace_id: "victor-gp.lucario-theme" + version: "2.3.3" + installs: 5206 + rating: 5 + ratings: 3 + author: "Víctor González Prieto" + repo: "https://github.com/victor-gp/lucario-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=victor-gp.lucario-theme" + formats: null +colors: + bg: "#2B3E50" + fg: "#F8F8F2" + black: "#243343" + red: "#E94B35" + green: "#199C4B" + yellow: "#F0CC04" + blue: "#5796ED" + magenta: "#CA94FF" + cyan: "#8BE0FD" + white: "#DFDFD9" + brightBlack: "#2F3943" + brightRed: "#FF6541" + brightGreen: "#72CC5A" + brightYellow: "#FFFFA5" + brightBlue: "#6B9FED" + brightMagenta: "#D4A9FF" + brightCyan: "#B9ECFD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "orange" + hue: 248 + pair: null + contrast: + fg: 94.4 + black: 0 + red: 28.7 + green: 30.4 + yellow: 68.5 + blue: 36.7 + magenta: 48.6 + cyan: 72.1 + white: 78.4 + brightBlack: 0 + brightRed: 38.5 + brightGreen: 55.3 + brightYellow: 95.9 + brightBlue: 41.2 + brightMagenta: 57.1 + brightCyan: 81.7 + brightWhite: 94.4 diff --git a/themes/lucid-summer-nights--summer.yaml b/themes/lucid-summer-nights--summer.yaml new file mode 100644 index 00000000..3d8ecd89 --- /dev/null +++ b/themes/lucid-summer-nights--summer.yaml @@ -0,0 +1,53 @@ +name: "lucid summer nights (summer)" +source: + marketplace_id: "roxcelic.summer-nights-roxcelic" + version: "1.0.6" + installs: 160 + rating: 0 + ratings: 0 + author: "roxcelic" + repo: "https://github.com/roxcelic/themes.git#summer" + url: "https://marketplace.visualstudio.com/items?itemName=roxcelic.summer-nights-roxcelic" + formats: null +colors: + bg: "#240909" + fg: "#FFDDE1" + black: "#4B1D1D" + red: "#CE9178" + green: "#4E9A06" + yellow: "#D7BA7D" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#4EC9B0" + white: "#FFDDE1" + brightBlack: "#7B3030" + brightRed: "#E54B4B" + brightGreen: "#B5CEA8" + brightYellow: "#F2C000" + brightBlue: "#9CDCFE" + brightMagenta: "#B19CD9" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 23 + pair: null + contrast: + fg: 90.4 + black: 0 + red: 49.8 + green: 38.4 + yellow: 66.4 + blue: 45.3 + magenta: 47.6 + cyan: 62.3 + white: 90.4 + brightBlack: 11.2 + brightRed: 36 + brightGreen: 71.7 + brightYellow: 71.8 + brightBlue: 79.5 + brightMagenta: 53.4 + brightCyan: 54.8 + brightWhite: 107.2 diff --git a/themes/lucifer-dark.yaml b/themes/lucifer-dark.yaml new file mode 100644 index 00000000..d9edb77b --- /dev/null +++ b/themes/lucifer-dark.yaml @@ -0,0 +1,53 @@ +name: "Lucifer Dark" +source: + marketplace_id: "NishantUnavane.lucifer-dark" + version: "1.1.0" + installs: 51 + rating: 5 + ratings: 1 + author: "Nishant Unavane" + repo: "https://github.com/IamNishant51/Lucifer-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=NishantUnavane.lucifer-dark" + formats: null +colors: + bg: "#0B0E14" + fg: "#E0E8F0" + black: "#2A2F3A" + red: "#E76F7C" + green: "#73DDAA" + yellow: "#F7E16D" + blue: "#5BA9E2" + magenta: "#CC88D9" + cyan: "#66E2F5" + white: "#E0E8F0" + brightBlack: "#6A7B8E" + brightRed: "#FF8A96" + brightGreen: "#88FFC9" + brightYellow: "#FFF18A" + brightBlue: "#7EC2FA" + brightMagenta: "#E0A0F0" + brightCyan: "#88F5FF" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 91.9 + black: 0 + red: 45.1 + green: 73.7 + yellow: 87.8 + blue: 51.8 + magenta: 51.1 + cyan: 78.7 + white: 91.9 + brightBlack: 31.3 + brightRed: 57.8 + brightGreen: 93.1 + brightYellow: 96.9 + brightBlue: 65.8 + brightMagenta: 63.2 + brightCyan: 90.4 + brightWhite: 101.1 diff --git a/themes/luiciff-themes-pack--dark.yaml b/themes/luiciff-themes-pack--dark.yaml new file mode 100644 index 00000000..66e4c5b1 --- /dev/null +++ b/themes/luiciff-themes-pack--dark.yaml @@ -0,0 +1,53 @@ +name: "Luiciff Themes Pack (Dark)" +source: + marketplace_id: "luiciff.luiciff-theme" + version: "0.0.3" + installs: 142 + rating: 5 + ratings: 3 + author: "luiciff" + repo: "https://github.com/luic1ff/vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=luiciff.luiciff-theme" + formats: null +colors: + bg: "#1E2030" + fg: "#E0DEF4" + black: "#393552" + red: "#F84061" + green: "#1B96C7" + yellow: "#F6C177" + blue: "#57E6FF" + magenta: "#63D88C" + cyan: "#B57DD8" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#F84061" + brightGreen: "#1B96C7" + brightYellow: "#F6C177" + brightBlue: "#57E6FF" + brightMagenta: "#63D88C" + brightCyan: "#B57DD8" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "orange" + hue: 278 + pair: null + contrast: + fg: 85.7 + black: 0 + red: 37.7 + green: 38.8 + yellow: 72.3 + blue: 78.6 + magenta: 67.5 + cyan: 42.3 + white: 85.7 + brightBlack: 40 + brightRed: 37.7 + brightGreen: 38.8 + brightYellow: 72.3 + brightBlue: 78.6 + brightMagenta: 67.5 + brightCyan: 42.3 + brightWhite: 85.7 diff --git a/themes/luiciff-themes-pack--light.yaml b/themes/luiciff-themes-pack--light.yaml new file mode 100644 index 00000000..133d08cb --- /dev/null +++ b/themes/luiciff-themes-pack--light.yaml @@ -0,0 +1,53 @@ +name: "Luiciff Themes Pack (Light)" +source: + marketplace_id: "luiciff.luiciff-theme" + version: "0.0.3" + installs: 142 + rating: 5 + ratings: 3 + author: "luiciff" + repo: "https://github.com/luic1ff/vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=luiciff.luiciff-theme" + formats: null +colors: + bg: "#FAF4ED" + fg: "#575279" + black: "#F2E9E1" + red: "#C44569" + green: "#286983" + yellow: "#EA9D34" + blue: "#179299" + magenta: "#8C4FD1" + cyan: "#D7827E" + white: "#575279" + brightBlack: "#797593" + brightRed: "#C44569" + brightGreen: "#286983" + brightYellow: "#EA9D34" + brightBlue: "#179299" + brightMagenta: "#8C4FD1" + brightCyan: "#D7827E" + brightWhite: "#575279" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 79.1 + black: 0 + red: 66.2 + green: 74.2 + yellow: 37.8 + blue: 58.5 + magenta: 68.3 + cyan: 48.2 + white: 79.1 + brightBlack: 64.4 + brightRed: 66.2 + brightGreen: 74.2 + brightYellow: 37.8 + brightBlue: 58.5 + brightMagenta: 68.3 + brightCyan: 48.2 + brightWhite: 79.1 diff --git a/themes/luiciff-themes-pack--neon.yaml b/themes/luiciff-themes-pack--neon.yaml new file mode 100644 index 00000000..3ae2cfb5 --- /dev/null +++ b/themes/luiciff-themes-pack--neon.yaml @@ -0,0 +1,53 @@ +name: "Luiciff Themes Pack (Neon)" +source: + marketplace_id: "luiciff.luiciff-theme" + version: "0.0.3" + installs: 142 + rating: 5 + ratings: 3 + author: "luiciff" + repo: "https://github.com/luic1ff/vs-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=luiciff.luiciff-theme" + formats: null +colors: + bg: "#232136" + fg: "#E0DEF4" + black: "#393552" + red: "#EB6F92" + green: "#3E8FB0" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#CA9EE6" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#3E8FB0" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#CA9EE6" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: 288 + pair: null + contrast: + fg: 85.3 + black: 0 + red: 44.2 + green: 35.2 + yellow: 71.9 + blue: 69.7 + magenta: 58.7 + cyan: 56.3 + white: 85.3 + brightBlack: 39.6 + brightRed: 44.2 + brightGreen: 35.2 + brightYellow: 71.9 + brightBlue: 69.7 + brightMagenta: 58.7 + brightCyan: 56.3 + brightWhite: 85.3 diff --git a/themes/luiz-dark--luiz-dark-theme.yaml b/themes/luiz-dark--luiz-dark-theme.yaml new file mode 100644 index 00000000..f8e96069 --- /dev/null +++ b/themes/luiz-dark--luiz-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Luiz Dark (luiz-dark-theme)" +source: + marketplace_id: "LUIZDARKTHEME.luiz-dark-theme" + version: "0.0.8" + installs: 2949 + rating: 5 + ratings: 1 + author: "LUIZ DARK THEME" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LUIZDARKTHEME.luiz-dark-theme" + formats: null +colors: + bg: "#0D0D0D" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.6 + black: 0 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/luk3-theme.yaml b/themes/luk3-theme.yaml new file mode 100644 index 00000000..d9be8275 --- /dev/null +++ b/themes/luk3-theme.yaml @@ -0,0 +1,53 @@ +name: "luk3-theme" +source: + marketplace_id: "luk3.luk3-theme" + version: "0.0.1" + installs: 29 + rating: 0 + ratings: 0 + author: "luk3" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=luk3.luk3-theme" + formats: null +colors: + bg: "#000000" + fg: "#A5A5A5" + black: "#A5A5A5" + red: "#A5A5A5" + green: "#A5A5A5" + yellow: "#A5A5A5" + blue: "#A5A5A5" + magenta: "#A5A5A5" + cyan: "#A5A5A5" + white: "#A5A5A5" + brightBlack: "#A5A5A5" + brightRed: "#A5A5A5" + brightGreen: "#A5A5A5" + brightYellow: "#A5A5A5" + brightBlue: "#A5A5A5" + brightMagenta: "#A5A5A5" + brightCyan: "#A5A5A5" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 53.5 + black: 53.5 + red: 53.5 + green: 53.5 + yellow: 53.5 + blue: 53.5 + magenta: 53.5 + cyan: 53.5 + white: 53.5 + brightBlack: 53.5 + brightRed: 53.5 + brightGreen: 53.5 + brightYellow: 53.5 + brightBlue: 53.5 + brightMagenta: 53.5 + brightCyan: 53.5 + brightWhite: 53.5 diff --git a/themes/lumina-theme.yaml b/themes/lumina-theme.yaml new file mode 100644 index 00000000..72952265 --- /dev/null +++ b/themes/lumina-theme.yaml @@ -0,0 +1,53 @@ +name: "Lumina theme" +source: + marketplace_id: "Gustavo2022003.lumina-theme-dark" + version: "1.0.3" + installs: 525 + rating: 0 + ratings: 0 + author: "Gustavo2022003" + repo: "https://github.com/Gustavo2022003/Lumina" + url: "https://marketplace.visualstudio.com/items?itemName=Gustavo2022003.lumina-theme-dark" + formats: null +colors: + bg: "#1B1B1B" + fg: "#D3D3D3" + black: "#000000" + red: "#EC2929" + green: "#0DBC79" + yellow: "#DBFF00" + blue: "#2472C8" + magenta: "#C03FFD" + cyan: "#11A8CD" + white: "#D9D9D9" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#EDFF7E" + brightBlue: "#3B8EEA" + brightMagenta: "#DB8EFF" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 78.4 + black: 0 + red: 32.7 + green: 52.6 + yellow: 96.5 + blue: 27 + magenta: 34.9 + cyan: 47.1 + white: 82.1 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 99.7 + brightBlue: 39.6 + brightMagenta: 56.5 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/luminashade.yaml b/themes/luminashade.yaml new file mode 100644 index 00000000..9fd43278 --- /dev/null +++ b/themes/luminashade.yaml @@ -0,0 +1,53 @@ +name: "LuminaShade" +source: + marketplace_id: "JackPritomSoren.luminashade" + version: "1.0.5" + installs: 141 + rating: 0 + ratings: 0 + author: "Jack Pritom Soren" + repo: "https://github.com/jps27CSE/LuminaShade-VSCode-Extension" + url: "https://marketplace.visualstudio.com/items?itemName=JackPritomSoren.luminashade" + formats: null +colors: + bg: "#1E1B2C" + fg: "#E0DFE8" + black: "#1B1826" + red: "#FF9AB8" + green: "#7FE6A5" + yellow: "#FFDF80" + blue: "#8FD8FF" + magenta: "#C18FFF" + cyan: "#A0C0FF" + white: "#E0DFE8" + brightBlack: "#7E7399" + brightRed: "#FFB6C1" + brightGreen: "#A0D6A0" + brightYellow: "#FFE699" + brightBlue: "#B0E0FF" + brightMagenta: "#D4BFFF" + brightCyan: "#C0D0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 292 + pair: null + contrast: + fg: 86.1 + black: 0 + red: 62.5 + green: 77.2 + yellow: 87.1 + blue: 75.6 + magenta: 52.6 + cyan: 66.6 + white: 86.1 + brightBlack: 29.6 + brightRed: 72.4 + brightGreen: 71.9 + brightYellow: 90.8 + brightBlue: 82.2 + brightMagenta: 72.2 + brightCyan: 76.8 + brightWhite: 106.1 diff --git a/themes/lumineclips.yaml b/themes/lumineclips.yaml new file mode 100644 index 00000000..34534d9f --- /dev/null +++ b/themes/lumineclips.yaml @@ -0,0 +1,53 @@ +name: "LuminEclips" +source: + marketplace_id: "ramonebidhem.lumineclips" + version: "0.0.1" + installs: 73 + rating: 0 + ratings: 0 + author: "Mehdi" + repo: "https://github.com/ramonebidhem/LuminEclips" + url: "https://marketplace.visualstudio.com/items?itemName=ramonebidhem.lumineclips" + formats: null +colors: + bg: "#00141A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 218 + pair: null + contrast: + fg: 107.3 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/lumon.yaml b/themes/lumon.yaml new file mode 100644 index 00000000..b115f643 --- /dev/null +++ b/themes/lumon.yaml @@ -0,0 +1,53 @@ +name: "Lumon" +source: + marketplace_id: "cluzier.lumon" + version: "0.0.42" + installs: 210 + rating: 5 + ratings: 1 + author: "Conner Luzier" + repo: "https://github.com/cluzier/lumon" + url: "https://marketplace.visualstudio.com/items?itemName=cluzier.lumon" + formats: null +colors: + bg: "#081E28" + fg: "#79E6FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 230 + pair: null + contrast: + fg: 80.9 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.8 + magenta: 29.2 + cyan: 46.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 38 + brightGreen: 62.9 + brightYellow: 95 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/lunar-color-theme.yaml b/themes/lunar-color-theme.yaml new file mode 100644 index 00000000..380559bf --- /dev/null +++ b/themes/lunar-color-theme.yaml @@ -0,0 +1,53 @@ +name: "Lunar Color Theme" +source: + marketplace_id: "MarcMarcet.lunar-color-theme" + version: "0.2.1" + installs: 830 + rating: 0 + ratings: 0 + author: "Marc Marcet" + repo: "https://github.com/marc-marcet/lunar-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MarcMarcet.lunar-color-theme" + formats: null +colors: + bg: "#10061D" + fg: "#D4D4D4" + black: "#4F4F4F" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 302 + pair: null + contrast: + fg: 80.2 + black: 13.6 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/lunar-eclipse--lunar-eclipse-golden-hour.yaml b/themes/lunar-eclipse--lunar-eclipse-golden-hour.yaml new file mode 100644 index 00000000..725a338c --- /dev/null +++ b/themes/lunar-eclipse--lunar-eclipse-golden-hour.yaml @@ -0,0 +1,53 @@ +name: "Lunar Eclipse (Lunar Eclipse Golden Hour)" +source: + marketplace_id: "ginfuru.lunar-eclipse" + version: "0.1.4" + installs: 10325 + rating: 5 + ratings: 1 + author: "Ed Heltzel" + repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" + formats: null +colors: + bg: "#191C1D" + fg: "#AFA188" + black: "#F4EBC2" + red: "#C7231C" + green: "#939214" + yellow: "#D09420" + blue: "#00B6C2" + magenta: "#85598E" + cyan: "#5F8F61" + white: "#191C1D" + brightBlack: "#666666" + brightRed: "#ED4531" + brightGreen: "#AEB124" + brightYellow: "#EFB52D" + brightBlue: "#7D9D91" + brightMagenta: "#B37EC8" + brightCyan: "#8BBC79" + brightWhite: "#F4EBC2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 50.7 + black: 92.9 + red: 23.6 + green: 40 + yellow: 49.1 + blue: 52.4 + magenta: 22.9 + cyan: 35.1 + white: 0 + brightBlack: 21.5 + brightRed: 35.8 + brightGreen: 55.3 + brightYellow: 66.3 + brightBlue: 44.2 + brightMagenta: 42.2 + brightCyan: 57.5 + brightWhite: 92.9 diff --git a/themes/lunar-eclipse--lunar-eclipse-light.yaml b/themes/lunar-eclipse--lunar-eclipse-light.yaml new file mode 100644 index 00000000..ef0b515a --- /dev/null +++ b/themes/lunar-eclipse--lunar-eclipse-light.yaml @@ -0,0 +1,53 @@ +name: "Lunar Eclipse (Lunar Eclipse Light)" +source: + marketplace_id: "ginfuru.lunar-eclipse" + version: "0.1.4" + installs: 10325 + rating: 5 + ratings: 1 + author: "Ed Heltzel" + repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" + formats: null +colors: + bg: "#F4F2F6" + fg: "#455059" + black: "#63828A" + red: "#FF0046" + green: "#1EA330" + yellow: "#C06736" + blue: "#0F7CD7" + magenta: "#B016EE" + cyan: "#007874" + white: "#A19CBC" + brightBlack: "#303742" + brightRed: "#FF3A70" + brightGreen: "#30B95E" + brightYellow: "#AB5200" + brightBlue: "#09A1ED" + brightMagenta: "#BF45F3" + brightCyan: "#009793" + brightWhite: "#958FB7" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 81.2 + black: 61 + red: 56.4 + green: 52.6 + yellow: 59.7 + blue: 61.8 + magenta: 65.2 + cyan: 68.7 + white: 43.9 + brightBlack: 90.2 + brightRed: 53.1 + brightGreen: 42.2 + brightYellow: 68.6 + brightBlue: 46.8 + brightMagenta: 58.2 + brightCyan: 55.6 + brightWhite: 50 diff --git a/themes/lunar-eclipse--lunar-eclipse.yaml b/themes/lunar-eclipse--lunar-eclipse.yaml new file mode 100644 index 00000000..4a17d7b7 --- /dev/null +++ b/themes/lunar-eclipse--lunar-eclipse.yaml @@ -0,0 +1,53 @@ +name: "Lunar Eclipse (Lunar Eclipse)" +source: + marketplace_id: "ginfuru.lunar-eclipse" + version: "0.1.4" + installs: 10325 + rating: 5 + ratings: 1 + author: "Ed Heltzel" + repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" + formats: null +colors: + bg: "#171131" + fg: "#EEEEEE" + black: "#63828A" + red: "#FF0046" + green: "#2DAE58" + yellow: "#CF9C00" + blue: "#09A1ED" + magenta: "#EA00D9" + cyan: "#AF79FE" + white: "#DDE4F1" + brightBlack: "#303742" + brightRed: "#FF2E87" + brightGreen: "#25DA6A" + brightYellow: "#FFC104" + brightBlue: "#41B9FF" + brightMagenta: "#C75AF3" + brightCyan: "#16DAD6" + brightWhite: "#E3EEFE" +meta: + mode: "dark" + accent: "pink" + hue: 288 + pair: null + contrast: + fg: 95.7 + black: 32.3 + red: 36.9 + green: 46.3 + yellow: 52.2 + blue: 46.7 + magenta: 37.7 + cyan: 44.3 + white: 89.1 + brightBlack: 0 + brightRed: 39.9 + brightGreen: 67.2 + brightYellow: 74.1 + brightBlue: 58.6 + brightMagenta: 40 + brightCyan: 70.6 + brightWhite: 95.1 diff --git a/themes/lunar-eclipse--total-lunar-eclipse.yaml b/themes/lunar-eclipse--total-lunar-eclipse.yaml new file mode 100644 index 00000000..6e743f6a --- /dev/null +++ b/themes/lunar-eclipse--total-lunar-eclipse.yaml @@ -0,0 +1,53 @@ +name: "Lunar Eclipse (Total Lunar Eclipse)" +source: + marketplace_id: "ginfuru.lunar-eclipse" + version: "0.1.4" + installs: 10325 + rating: 5 + ratings: 1 + author: "Ed Heltzel" + repo: "https://github.com/edheltzel/vscode-lunar-eclipse-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ginfuru.lunar-eclipse" + formats: null +colors: + bg: "#111418" + fg: "#AEB2B2" + black: "#63828A" + red: "#FF0046" + green: "#2DAE58" + yellow: "#CF9C00" + blue: "#09A1ED" + magenta: "#EA00D9" + cyan: "#AF79FE" + white: "#DDE4F1" + brightBlack: "#303742" + brightRed: "#FF2E87" + brightGreen: "#25DA6A" + brightYellow: "#FFC104" + brightBlue: "#41B9FF" + brightMagenta: "#C75AF3" + brightCyan: "#16DAD6" + brightWhite: "#E3EEFE" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 59.5 + black: 32.6 + red: 37.2 + green: 46.6 + yellow: 52.5 + blue: 47 + magenta: 38 + cyan: 44.6 + white: 89.4 + brightBlack: 0 + brightRed: 40.2 + brightGreen: 67.5 + brightYellow: 74.4 + brightBlue: 58.9 + brightMagenta: 40.3 + brightCyan: 70.9 + brightWhite: 95.4 diff --git a/themes/lunar-pink-theme--lunar-pink-satellite.yaml b/themes/lunar-pink-theme--lunar-pink-satellite.yaml new file mode 100644 index 00000000..b4254a1d --- /dev/null +++ b/themes/lunar-pink-theme--lunar-pink-satellite.yaml @@ -0,0 +1,53 @@ +name: "Lunar Pink Theme (Lunar Pink Satellite)" +source: + marketplace_id: "nicolasdschmidt.lunar-pink" + version: "1.4.0" + installs: 194768 + rating: 5 + ratings: 11 + author: "Nícolas D. Schmidt" + repo: "https://github.com/tronfy/lunar-pink" + url: "https://marketplace.visualstudio.com/items?itemName=nicolasdschmidt.lunar-pink" + formats: null +colors: + bg: "#262626" + fg: "#DDDDDD" + black: "#777777" + red: "#C50000" + green: "#23AD09" + yellow: "#F0B800" + blue: "#004AAA" + magenta: "#A7097A" + cyan: "#05A6A8" + white: "#DDDDDD" + brightBlack: "#AAAAAA" + brightRed: "#FF0000" + brightGreen: "#2AE609" + brightYellow: "#FFD900" + brightBlue: "#008CFF" + brightMagenta: "#E621AF" + brightCyan: "#09E4E6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 82.9 + black: 27.5 + red: 20.5 + green: 43 + yellow: 65.9 + blue: 11.5 + magenta: 16.3 + cyan: 42.8 + white: 82.9 + brightBlack: 53.2 + brightRed: 34.5 + brightGreen: 70.5 + brightYellow: 82 + brightBlue: 38.1 + brightMagenta: 32.9 + brightCyan: 74.1 + brightWhite: 104.8 diff --git a/themes/lunar-pink-theme--lunar-pink.yaml b/themes/lunar-pink-theme--lunar-pink.yaml new file mode 100644 index 00000000..ffe36646 --- /dev/null +++ b/themes/lunar-pink-theme--lunar-pink.yaml @@ -0,0 +1,53 @@ +name: "Lunar Pink Theme (Lunar Pink)" +source: + marketplace_id: "nicolasdschmidt.lunar-pink" + version: "1.4.0" + installs: 194768 + rating: 5 + ratings: 11 + author: "Nícolas D. Schmidt" + repo: "https://github.com/tronfy/lunar-pink" + url: "https://marketplace.visualstudio.com/items?itemName=nicolasdschmidt.lunar-pink" + formats: null +colors: + bg: "#131313" + fg: "#DDDDDD" + black: "#777777" + red: "#C50000" + green: "#23AD09" + yellow: "#F0B800" + blue: "#004AAA" + magenta: "#A7097A" + cyan: "#05A6A8" + white: "#DDDDDD" + brightBlack: "#AAAAAA" + brightRed: "#FF0000" + brightGreen: "#2AE609" + brightYellow: "#FFD900" + brightBlue: "#008CFF" + brightMagenta: "#E621AF" + brightCyan: "#09E4E6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 85.4 + black: 29.9 + red: 23 + green: 45.4 + yellow: 68.4 + blue: 14 + magenta: 18.8 + cyan: 45.2 + white: 85.4 + brightBlack: 55.6 + brightRed: 36.9 + brightGreen: 72.9 + brightYellow: 84.5 + brightBlue: 40.5 + brightMagenta: 35.3 + brightCyan: 76.6 + brightWhite: 107.2 diff --git a/themes/lunarvim-dark-theme.yaml b/themes/lunarvim-dark-theme.yaml new file mode 100644 index 00000000..7988191b --- /dev/null +++ b/themes/lunarvim-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "LunarVim Dark Theme" +source: + marketplace_id: "JuniorSchmidt.lunar-vscode-theme" + version: "1.0.8" + installs: 4290 + rating: 5 + ratings: 2 + author: "Junior Schmidt" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JuniorSchmidt.lunar-vscode-theme" + formats: null +colors: + bg: "#1A1B26" + fg: "#AFB9E0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + pair: null + contrast: + fg: 63.7 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/m2-theme.yaml b/themes/m2-theme.yaml new file mode 100644 index 00000000..c2604b7d --- /dev/null +++ b/themes/m2-theme.yaml @@ -0,0 +1,53 @@ +name: "M2 Theme" +source: + marketplace_id: "MaranT.m2-theme" + version: "1.0.2" + installs: 5 + rating: 0 + ratings: 0 + author: "MaranT" + repo: "https://github.com/maran-t/m2-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MaranT.m2-theme" + formats: null +colors: + bg: "#0D1117" + fg: "#E6EDF3" + black: "#0D1117" + red: "#F47067" + green: "#8DDB8C" + yellow: "#F69D50" + blue: "#6CB6FF" + magenta: "#DCBDFB" + cyan: "#76E3EA" + white: "#E6EDF3" + brightBlack: "#484F58" + brightRed: "#FF7A72" + brightGreen: "#A8E6A1" + brightYellow: "#FFD470" + brightBlue: "#A5D6FF" + brightMagenta: "#EACFFF" + brightCyan: "#A5F0F5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 258 + pair: null + contrast: + fg: 95 + black: 0 + red: 47.3 + green: 73.4 + yellow: 60.2 + blue: 59.7 + magenta: 73.6 + cyan: 79.3 + white: 95 + brightBlack: 13.1 + brightRed: 52.3 + brightGreen: 81.5 + brightYellow: 83.3 + brightBlue: 77.9 + brightMagenta: 83 + brightCyan: 89.5 + brightWhite: 107.4 diff --git a/themes/macindowsvs.yaml b/themes/macindowsvs.yaml new file mode 100644 index 00000000..f95951c1 --- /dev/null +++ b/themes/macindowsvs.yaml @@ -0,0 +1,53 @@ +name: "MacindowsVS" +source: + marketplace_id: "GnarlyTot.macindowsvs" + version: "0.0.2" + installs: 229 + rating: 0 + ratings: 0 + author: "Klon" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GnarlyTot.macindowsvs" + formats: null +colors: + bg: "#F7F1E3" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 97.9 + black: 97.9 + red: 65.8 + green: 41.1 + yellow: 49.8 + blue: 77.9 + magenta: 66.4 + cyan: 52.5 + white: 77.8 + brightBlack: 70.6 + brightRed: 65.8 + brightGreen: 32.8 + brightYellow: 32.8 + brightBlue: 77.9 + brightMagenta: 66.4 + brightCyan: 52.5 + brightWhite: 40.3 diff --git a/themes/macos-theme.yaml b/themes/macos-theme.yaml new file mode 100644 index 00000000..d2cdc9d3 --- /dev/null +++ b/themes/macos-theme.yaml @@ -0,0 +1,53 @@ +name: "macOS Theme" +source: + marketplace_id: "easyaspi314.macos-theme" + version: "0.0.3" + installs: 21996 + rating: 5 + ratings: 1 + author: "easyaspi314" + repo: "https://github.com/easyaspi314/vscode-macOS" + url: "https://marketplace.visualstudio.com/items?itemName=easyaspi314.macos-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#990000" + green: "#00A600" + yellow: "#999900" + blue: "#0000B2" + magenta: "#B200B2" + cyan: "#00A6B2" + white: "#BFBFBF" + brightBlack: "#666666" + brightRed: "#E50000" + brightGreen: "#00D900" + brightYellow: "#E5E500" + brightBlue: "#0000FF" + brightMagenta: "#E500E5" + brightCyan: "#00E5E5" + brightWhite: "#E5E5E5" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 87.8 + green: 59 + yellow: 57 + blue: 95.7 + magenta: 77.2 + cyan: 55.5 + white: 34.5 + brightBlack: 78.8 + brightRed: 70.6 + brightGreen: 35.8 + brightYellow: 17 + brightBlue: 85.8 + brightMagenta: 63.2 + brightCyan: 25.4 + brightWhite: 12.9 diff --git a/themes/maeel-theme.yaml b/themes/maeel-theme.yaml new file mode 100644 index 00000000..6ea7d432 --- /dev/null +++ b/themes/maeel-theme.yaml @@ -0,0 +1,53 @@ +name: "Maeel Theme" +source: + marketplace_id: "Birdlinux.maeel-dark-theme" + version: "0.0.4" + installs: 428 + rating: 0 + ratings: 0 + author: "Birdlinux" + repo: "https://github.com/birdlinux/maeel-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Birdlinux.maeel-dark-theme" + formats: null +colors: + bg: "#1D1E2C" + fg: "#CDD6F4" + black: "#756E87" + red: "#8C82A6" + green: "#9F94BC" + yellow: "#ADA2C9" + blue: "#9F94BC" + magenta: "#CCC4E4" + cyan: "#DDD7EF" + white: "#F4F1FA" + brightBlack: "#756E87" + brightRed: "#8C82A6" + brightGreen: "#9F94BC" + brightYellow: "#ADA2C9" + brightBlue: "#9F94BC" + brightMagenta: "#CCC4E4" + brightCyan: "#DDD7EF" + brightWhite: "#F4F1FA" +meta: + mode: "dark" + accent: "magenta" + hue: 281 + pair: null + contrast: + fg: 80 + black: 26.1 + red: 36.2 + green: 45.6 + yellow: 52.9 + blue: 45.6 + magenta: 71.5 + cyan: 82.3 + white: 97.5 + brightBlack: 26.1 + brightRed: 36.2 + brightGreen: 45.6 + brightYellow: 52.9 + brightBlue: 45.6 + brightMagenta: 71.5 + brightCyan: 82.3 + brightWhite: 97.5 diff --git a/themes/magic-theme-dark.yaml b/themes/magic-theme-dark.yaml new file mode 100644 index 00000000..eaa9ee50 --- /dev/null +++ b/themes/magic-theme-dark.yaml @@ -0,0 +1,53 @@ +name: "Magic Theme - Dark" +source: + marketplace_id: "Magic-Themes.magic-theme" + version: "0.0.3" + installs: 2572 + rating: 5 + ratings: 1 + author: "Magic-Themes" + repo: "https://github.com/sonumagnus/Magnet-Theme-VS-Code" + url: "https://marketplace.visualstudio.com/items?itemName=Magic-Themes.magic-theme" + formats: null +colors: + bg: "#292C3E" + fg: "#C1D3D6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + pair: null + contrast: + fg: 73.4 + black: 0 + red: 23.3 + green: 49.5 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.6 diff --git a/themes/maia-theme-purple.yaml b/themes/maia-theme-purple.yaml new file mode 100644 index 00000000..11495dbe --- /dev/null +++ b/themes/maia-theme-purple.yaml @@ -0,0 +1,53 @@ +name: "Maia-Theme-Purple" +source: + marketplace_id: "YagoMaia.maia-theme-purple" + version: "1.1.0" + installs: 1950 + rating: 5 + ratings: 1 + author: "YagoMaia" + repo: "https://github.com/YagoMaia/Maia-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=YagoMaia.maia-theme-purple" + formats: null +colors: + bg: "#020A17" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#A179FB" + brightGreen: "#66FFB4" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 253 + pair: null + contrast: + fg: 102.8 + black: 0 + red: 25.4 + green: 53.8 + yellow: 58.5 + blue: 35.5 + magenta: 33 + cyan: 51.3 + white: 89.3 + brightBlack: 22.9 + brightRed: 43.1 + brightGreen: 90.7 + brightYellow: 84.7 + brightBlue: 50.7 + brightMagenta: 47.4 + brightCyan: 74.2 + brightWhite: 102.8 diff --git a/themes/mak1na-theme--mak1na-theme.yaml b/themes/mak1na-theme--mak1na-theme.yaml new file mode 100644 index 00000000..f84ac107 --- /dev/null +++ b/themes/mak1na-theme--mak1na-theme.yaml @@ -0,0 +1,53 @@ +name: "Mak1na Theme (Mak1na Theme)" +source: + marketplace_id: "KevinMancini.palenight-mak1na-theme" + version: "0.0.3" + installs: 85 + rating: 5 + ratings: 1 + author: "Kevin Mancini" + repo: "https://github.com/KevinMancini/palenight-mak1na-theme" + url: "https://marketplace.visualstudio.com/items?itemName=KevinMancini.palenight-mak1na-theme" + formats: null +colors: + bg: "#201A24" + fg: "#BFC7D5" + black: "#826998" + red: "#FF5572" + green: "#A9C77D" + yellow: "#F1B866" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#826998" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#F1B866" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 312 + pair: null + contrast: + fg: 70.7 + black: 27.2 + red: 43.4 + green: 65.2 + yellow: 68.3 + blue: 55.3 + magenta: 53.1 + cyan: 77.6 + white: 106.3 + brightBlack: 27.2 + brightRed: 43.4 + brightGreen: 83.6 + brightYellow: 68.3 + brightBlue: 55.3 + brightMagenta: 53.1 + brightCyan: 77.6 + brightWhite: 106.3 diff --git a/themes/make-apps-theme.yaml b/themes/make-apps-theme.yaml new file mode 100644 index 00000000..918eafd9 --- /dev/null +++ b/themes/make-apps-theme.yaml @@ -0,0 +1,53 @@ +name: "Make Apps Theme" +source: + marketplace_id: "dannyconnell.make-apps-theme" + version: "1.0.4" + installs: 19991 + rating: 5 + ratings: 4 + author: "Danny Connell" + repo: "https://github.com/dannyconnell/vscode-make-apps-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dannyconnell.make-apps-theme" + formats: null +colors: + bg: "#242E33" + fg: "#C5C8C6" + black: "#242E33" + red: "#A54242" + green: "#8C9440" + yellow: "#DE935F" + blue: "#81A2BE" + magenta: "#85678F" + cyan: "#5E8D87" + white: "#6C7A80" + brightBlack: "#7A7A7A" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#F0C674" + brightBlue: "#99DBFF" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#C5C8C6" +meta: + mode: "dark" + accent: "orange" + hue: 230 + pair: null + contrast: + fg: 68.5 + black: 0 + red: 17.8 + green: 37.4 + yellow: 49 + blue: 45.5 + magenta: 23.8 + cyan: 32.5 + white: 26.5 + brightBlack: 27.6 + brightRed: 33.1 + brightGreen: 59 + brightYellow: 71.2 + brightBlue: 75.2 + brightMagenta: 45.5 + brightCyan: 57.5 + brightWhite: 68.5 diff --git a/themes/maple-theme--maple-dark.yaml b/themes/maple-theme--maple-dark.yaml new file mode 100644 index 00000000..8c63a56b --- /dev/null +++ b/themes/maple-theme--maple-dark.yaml @@ -0,0 +1,53 @@ +name: "Maple Theme (Maple Dark)" +source: + marketplace_id: "subframe7536.theme-maple" + version: "0.7.17" + installs: 15087 + rating: 5 + ratings: 2 + author: "subframe7536" + repo: "https://github.com/subframe7536/vscode-theme-maple" + url: "https://marketplace.visualstudio.com/items?itemName=subframe7536.theme-maple" + formats: null +colors: + bg: "#1E1E1F" + fg: "#CBD5E1" + black: "#333333" + red: "#EDABAB" + green: "#A4DFAE" + yellow: "#EECFA0" + blue: "#8FC7FF" + magenta: "#D2CCFF" + cyan: "#A1E8E5" + white: "#F3F2F2" + brightBlack: "#666666" + brightRed: "#FFC4C4" + brightGreen: "#BDF8C7" + brightYellow: "#FFE8B9" + brightBlue: "#A8E0FF" + brightMagenta: "#EBE5FF" + brightCyan: "#BAFFFE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 78.5 + black: 0 + red: 64.4 + green: 76.9 + yellow: 78.3 + blue: 68 + magenta: 77.2 + cyan: 83.1 + white: 97.6 + brightBlack: 21.2 + brightRed: 77.7 + brightGreen: 92.3 + brightYellow: 92.5 + brightBlue: 81.3 + brightMagenta: 91.3 + brightCyan: 97.8 + brightWhite: 106 diff --git a/themes/maple-theme--maple-light.yaml b/themes/maple-theme--maple-light.yaml new file mode 100644 index 00000000..ab6a8640 --- /dev/null +++ b/themes/maple-theme--maple-light.yaml @@ -0,0 +1,53 @@ +name: "Maple Theme (Maple Light)" +source: + marketplace_id: "subframe7536.theme-maple" + version: "0.7.17" + installs: 15087 + rating: 5 + ratings: 2 + author: "subframe7536" + repo: "https://github.com/subframe7536/vscode-theme-maple" + url: "https://marketplace.visualstudio.com/items?itemName=subframe7536.theme-maple" + formats: null +colors: + bg: "#FFFFFE" + fg: "#475569" + black: "#333333" + red: "#BD5151" + green: "#547000" + yellow: "#B26B1F" + blue: "#057D9E" + magenta: "#726293" + cyan: "#127D52" + white: "#F3F2F2" + brightBlack: "#666666" + brightRed: "#BD5151" + brightGreen: "#547000" + brightYellow: "#B26B1F" + brightBlue: "#057D9E" + brightMagenta: "#726293" + brightCyan: "#127D52" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 86.3 + black: 98.6 + red: 72 + green: 78.2 + yellow: 68.5 + blue: 72.3 + magenta: 76.9 + cyan: 75 + white: 0 + brightBlack: 78.7 + brightRed: 72 + brightGreen: 78.2 + brightYellow: 68.5 + brightBlue: 72.3 + brightMagenta: 76.9 + brightCyan: 75 + brightWhite: 0 diff --git a/themes/marciorasf-s-dracula--darkula.yaml b/themes/marciorasf-s-dracula--darkula.yaml new file mode 100644 index 00000000..350385af --- /dev/null +++ b/themes/marciorasf-s-dracula--darkula.yaml @@ -0,0 +1,53 @@ +name: "Marciorasf's Dracula (Darkula)" +source: + marketplace_id: "marciorasf.theme-darkula" + version: "0.0.16" + installs: 11018 + rating: 5 + ratings: 1 + author: "marciorasf" + repo: "https://github.com/marciorasf/Dracula" + url: "https://marketplace.visualstudio.com/items?itemName=marciorasf.theme-darkula" + formats: null +colors: + bg: "#2A2A2C" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 99.1 + black: 0 + red: 40.5 + green: 82 + yellow: 95.7 + blue: 50.8 + magenta: 51.7 + cyan: 81.1 + white: 99.1 + brightBlack: 25.2 + brightRed: 46 + brightGreen: 86.2 + brightYellow: 100.7 + brightBlue: 63.3 + brightMagenta: 59.7 + brightCyan: 93.9 + brightWhite: 104 diff --git a/themes/mariana-dark-theme--sublime-text-4-theme.yaml b/themes/mariana-dark-theme--sublime-text-4-theme.yaml new file mode 100644 index 00000000..62fca3ba --- /dev/null +++ b/themes/mariana-dark-theme--sublime-text-4-theme.yaml @@ -0,0 +1,53 @@ +name: "Mariana Dark Theme (Sublime Text 4 Theme)" +source: + marketplace_id: "IliaReshetov.vscode-theme-mariana-dark" + version: "1.0.6" + installs: 979 + rating: 5 + ratings: 4 + author: "Ilia Reshetov" + repo: "https://github.com/iliareshetov/vscode-theme-mariana-dark" + url: "https://marketplace.visualstudio.com/items?itemName=IliaReshetov.vscode-theme-mariana-dark" + formats: null +colors: + bg: "#303841" + fg: "#D8DEE9" + black: "#E6E6E6" + red: "#EE6A6F" + green: "#A3CE9E" + yellow: "#FAB763" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#6699CC" + white: "#D8DEE9" + brightBlack: "#E6E6E6" + brightRed: "#EE6A6F" + brightGreen: "#A3CE9E" + brightYellow: "#FAB763" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#6699CC" + brightWhite: "#D8DEE9" +meta: + mode: "dark" + accent: "orange" + hue: 251 + pair: null + contrast: + fg: 79.3 + black: 84.6 + red: 38.3 + green: 63.2 + yellow: 64 + blue: 38.1 + magenta: 46 + cyan: 38.1 + white: 79.3 + brightBlack: 84.6 + brightRed: 38.3 + brightGreen: 63.2 + brightYellow: 64 + brightBlue: 38.1 + brightMagenta: 46 + brightCyan: 38.1 + brightWhite: 79.3 diff --git a/themes/mariana-no-italic.yaml b/themes/mariana-no-italic.yaml new file mode 100644 index 00000000..f3467f4c --- /dev/null +++ b/themes/mariana-no-italic.yaml @@ -0,0 +1,53 @@ +name: "Mariana-No-Italic" +source: + marketplace_id: "gijocode.mariana-no-italic" + version: "1.99.99" + installs: 169 + rating: 0 + ratings: 0 + author: "gijocode" + repo: "https://github.com/gijocode/vscode-mariana" + url: "https://marketplace.visualstudio.com/items?itemName=gijocode.mariana-no-italic" + formats: null +colors: + bg: "#1E2933" + fg: "#D8DEE9" + black: "#19212A" + red: "#EC5F66" + green: "#99C794" + yellow: "#FAC761" + blue: "#6699CC" + magenta: "#C695C6" + cyan: "#5FB4B4" + white: "#A6ADB9" + brightBlack: "#24303D" + brightRed: "#EC5F66" + brightGreen: "#99C794" + brightYellow: "#FAC761" + brightBlue: "#6699CC" + brightMagenta: "#C695C6" + brightCyan: "#5FB4B4" + brightWhite: "#D8DEE9" +meta: + mode: "dark" + accent: "orange" + hue: 246 + pair: null + contrast: + fg: 82.9 + black: 0 + red: 38.9 + green: 62.4 + yellow: 73.9 + blue: 41.7 + magenta: 50.1 + cyan: 51.1 + white: 54.2 + brightBlack: 0 + brightRed: 38.9 + brightGreen: 62.4 + brightYellow: 73.9 + brightBlue: 41.7 + brightMagenta: 50.1 + brightCyan: 51.1 + brightWhite: 82.9 diff --git a/themes/mariana-pro-mariana-pro.yaml b/themes/mariana-pro-mariana-pro.yaml new file mode 100644 index 00000000..9531fcbe --- /dev/null +++ b/themes/mariana-pro-mariana-pro.yaml @@ -0,0 +1,53 @@ +name: "Mariana Pro (Mariana (Pro))" +source: + marketplace_id: "rickynormandeau.mariana-pro" + version: "3.0.12" + installs: 48820 + rating: 4.5 + ratings: 8 + author: "ricky.normandeau" + repo: "https://github.com/n0rmand0/Mariana-Pro-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=rickynormandeau.mariana-pro" + formats: null +colors: + bg: "#3D3734" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#EE6A6F" + green: "#A3CE9E" + yellow: "#FAB763" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#6699CC" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#EE6A6F" + brightGreen: "#A3CE9E" + brightYellow: "#FAB763" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#6699CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100.5 + black: 100.5 + red: 38 + green: 62.9 + yellow: 63.7 + blue: 37.8 + magenta: 45.7 + cyan: 37.8 + white: 100.5 + brightBlack: 100.5 + brightRed: 38 + brightGreen: 62.9 + brightYellow: 63.7 + brightBlue: 37.8 + brightMagenta: 45.7 + brightCyan: 37.8 + brightWhite: 100.5 diff --git a/themes/mariana-refined-theme--mariana-light.yaml b/themes/mariana-refined-theme--mariana-light.yaml new file mode 100644 index 00000000..922ba3ea --- /dev/null +++ b/themes/mariana-refined-theme--mariana-light.yaml @@ -0,0 +1,53 @@ +name: "Mariana Refined Theme (mariana-light)" +source: + marketplace_id: "mani-sh-reddy.mariana-refined" + version: "0.1.4" + installs: 3262 + rating: 5 + ratings: 3 + author: "Manish Reddy" + repo: "https://github.com/mani-sh-reddy/mariana-refined" + url: "https://marketplace.visualstudio.com/items?itemName=mani-sh-reddy.mariana-refined" + formats: null +colors: + bg: "#FCFDFD" + fg: "#333333" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 97.3 + black: 104.7 + red: 72.7 + green: 47.9 + yellow: 56.6 + blue: 84.7 + magenta: 73.2 + cyan: 59.3 + white: 84.6 + brightBlack: 77.4 + brightRed: 72.7 + brightGreen: 39.6 + brightYellow: 39.6 + brightBlue: 84.7 + brightMagenta: 73.2 + brightCyan: 59.3 + brightWhite: 47.1 diff --git a/themes/mariana-refined-theme--mariana-refined.yaml b/themes/mariana-refined-theme--mariana-refined.yaml new file mode 100644 index 00000000..39fe9781 --- /dev/null +++ b/themes/mariana-refined-theme--mariana-refined.yaml @@ -0,0 +1,53 @@ +name: "Mariana Refined Theme (Mariana Refined)" +source: + marketplace_id: "mani-sh-reddy.mariana-refined" + version: "0.1.4" + installs: 3262 + rating: 5 + ratings: 3 + author: "Manish Reddy" + repo: "https://github.com/mani-sh-reddy/mariana-refined" + url: "https://marketplace.visualstudio.com/items?itemName=mani-sh-reddy.mariana-refined" + formats: null +colors: + bg: "#2E3842" + fg: "#C2C6D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 248 + pair: null + contrast: + fg: 65.1 + black: 0 + red: 20.7 + green: 47 + yellow: 79.6 + blue: 21.5 + magenta: 23.8 + cyan: 41.6 + white: 84 + brightBlack: 16.1 + brightRed: 32.6 + brightGreen: 57.6 + brightYellow: 89.7 + brightBlue: 34 + brightMagenta: 39.4 + brightCyan: 49.4 + brightWhite: 84 diff --git a/themes/marmure-dark.yaml b/themes/marmure-dark.yaml new file mode 100644 index 00000000..db18477c --- /dev/null +++ b/themes/marmure-dark.yaml @@ -0,0 +1,53 @@ +name: "Marmure Dark" +source: + marketplace_id: "nnazarov55.marmur-dark" + version: "1.0.5" + installs: 52 + rating: 5 + ratings: 1 + author: "nnazarov55" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=nnazarov55.marmur-dark" + formats: null +colors: + bg: "#222222" + fg: "#FFFFFF" + black: "#222222" + red: "#E29090" + green: "#B5BD68" + yellow: "#F7DF9B" + blue: "#81A2BE" + magenta: "#B294BB" + cyan: "#8ABEB7" + white: "#FFFFFF" + brightBlack: "#222222" + brightRed: "#E29090" + brightGreen: "#B5BD68" + brightYellow: "#F7DF9B" + brightBlue: "#81A2BE" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 105.5 + black: 0 + red: 51.9 + green: 61 + yellow: 85.8 + blue: 47.5 + magenta: 47.5 + cyan: 59.4 + white: 105.5 + brightBlack: 0 + brightRed: 51.9 + brightGreen: 61 + brightYellow: 85.8 + brightBlue: 47.5 + brightMagenta: 47.5 + brightCyan: 59.4 + brightWhite: 105.5 diff --git a/themes/maroon-theme.yaml b/themes/maroon-theme.yaml new file mode 100644 index 00000000..174ef21c --- /dev/null +++ b/themes/maroon-theme.yaml @@ -0,0 +1,53 @@ +name: "Maroon Theme" +source: + marketplace_id: "TravisHuffman.maroon-theme" + version: "0.0.1" + installs: 512 + rating: 5 + ratings: 1 + author: "Travis Huffman" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TravisHuffman.maroon-theme" + formats: null +colors: + bg: "#230B11" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 6 + pair: null + contrast: + fg: 79.7 + black: 0 + red: 27 + green: 53.2 + yellow: 85.9 + blue: 27.7 + magenta: 30 + cyan: 47.8 + white: 90.3 + brightBlack: 22.3 + brightRed: 38.8 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.3 diff --git a/themes/maroza-theme--maroza-cyber-chill.yaml b/themes/maroza-theme--maroza-cyber-chill.yaml new file mode 100644 index 00000000..cf975538 --- /dev/null +++ b/themes/maroza-theme--maroza-cyber-chill.yaml @@ -0,0 +1,53 @@ +name: "Maroza Theme (Maroza Cyber Chill)" +source: + marketplace_id: "thirawat27.maroza-theme" + version: "1.0.4" + installs: 333 + rating: 5 + ratings: 2 + author: "thirawat27" + repo: "https://github.com/thirawat27/maroza-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" + formats: null +colors: + bg: "#1A1B26" + fg: "#D9E1FF" + black: "#1A1B26" + red: "#FF7590" + green: "#A6E26E" + yellow: "#FFC777" + blue: "#82B1FF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#B8C2F5" + brightBlack: "#606B9F" + brightRed: "#FF7590" + brightGreen: "#A6E26E" + brightYellow: "#FFC777" + brightBlue: "#89DDFF" + brightMagenta: "#C792EA" + brightCyan: "#82B1FF" + brightWhite: "#D9E1FF" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 87.4 + black: 0 + red: 50.9 + green: 77.2 + yellow: 77 + blue: 58.1 + magenta: 53.2 + cyan: 77.7 + white: 69.6 + brightBlack: 24.9 + brightRed: 50.9 + brightGreen: 77.2 + brightYellow: 77 + brightBlue: 77.7 + brightMagenta: 53.2 + brightCyan: 58.1 + brightWhite: 87.4 diff --git a/themes/maroza-theme--maroza-dark-theme.yaml b/themes/maroza-theme--maroza-dark-theme.yaml new file mode 100644 index 00000000..05a2788e --- /dev/null +++ b/themes/maroza-theme--maroza-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Maroza Theme (Maroza Dark Theme)" +source: + marketplace_id: "thirawat27.maroza-theme" + version: "1.0.4" + installs: 333 + rating: 5 + ratings: 2 + author: "thirawat27" + repo: "https://github.com/thirawat27/maroza-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" + formats: null +colors: + bg: "#0C1021" + fg: "#D3D3D3" + black: "#3C4048" + red: "#FF6E6E" + green: "#7BD88F" + yellow: "#E7C36F" + blue: "#58A6FF" + magenta: "#D77BE2" + cyan: "#4CA3B2" + white: "#E4E4E7" + brightBlack: "#8892B0" + brightRed: "#FF9E9E" + brightGreen: "#98E4A9" + brightYellow: "#F0D58F" + brightBlue: "#67E8F9" + brightMagenta: "#E699FF" + brightCyan: "#65D9EF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 272 + pair: "Maroza Theme (Maroza Light Theme)" + contrast: + fg: 79.3 + black: 7.9 + red: 49.3 + green: 70.7 + yellow: 72.3 + blue: 52.2 + magenta: 49.5 + cyan: 45.9 + white: 90 + brightBlack: 43.3 + brightRed: 64 + brightGreen: 79.4 + brightYellow: 82 + brightBlue: 81.6 + brightMagenta: 62.6 + brightCyan: 73.8 + brightWhite: 107.3 diff --git a/themes/maroza-theme--maroza-light-theme.yaml b/themes/maroza-theme--maroza-light-theme.yaml new file mode 100644 index 00000000..d68484cb --- /dev/null +++ b/themes/maroza-theme--maroza-light-theme.yaml @@ -0,0 +1,53 @@ +name: "Maroza Theme (Maroza Light Theme)" +source: + marketplace_id: "thirawat27.maroza-theme" + version: "1.0.4" + installs: 333 + rating: 5 + ratings: 2 + author: "thirawat27" + repo: "https://github.com/thirawat27/maroza-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" + formats: null +colors: + bg: "#FBFAFF" + fg: "#111827" + black: "#374151" + red: "#EF4444" + green: "#22C55E" + yellow: "#F97316" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#475569" + brightBlack: "#64748B" + brightRed: "#F87171" + brightGreen: "#4ADE80" + brightYellow: "#FB923C" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#111827" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: "Maroza Theme (Maroza Dark Theme)" + contrast: + fg: 101.9 + black: 91.3 + red: 61.2 + green: 41.7 + yellow: 50.5 + blue: 61.2 + magenta: 63.6 + cyan: 44.5 + white: 83.7 + brightBlack: 70.4 + brightRed: 50.1 + brightGreen: 28.6 + brightYellow: 41.6 + brightBlue: 46.9 + brightMagenta: 48.6 + brightCyan: 30.4 + brightWhite: 101.9 diff --git a/themes/maroza-theme--maroza-soothing-aqua.yaml b/themes/maroza-theme--maroza-soothing-aqua.yaml new file mode 100644 index 00000000..7de79194 --- /dev/null +++ b/themes/maroza-theme--maroza-soothing-aqua.yaml @@ -0,0 +1,53 @@ +name: "Maroza Theme (Maroza Soothing Aqua)" +source: + marketplace_id: "thirawat27.maroza-theme" + version: "1.0.4" + installs: 333 + rating: 5 + ratings: 2 + author: "thirawat27" + repo: "https://github.com/thirawat27/maroza-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" + formats: null +colors: + bg: "#1E1E2E" + fg: "#E4E8F0" + black: "#1E1E2E" + red: "#FF7A8A" + green: "#9AF580" + yellow: "#FFE085" + blue: "#7CC7FF" + magenta: "#D09EFF" + cyan: "#5EF5D1" + white: "#C5CCE4" + brightBlack: "#7A8097" + brightRed: "#FF7A8A" + brightGreen: "#9AF580" + brightYellow: "#FFE085" + brightBlue: "#7CC7FF" + brightMagenta: "#D09EFF" + brightCyan: "#5EF5D1" + brightWhite: "#E4E8F0" +meta: + mode: "dark" + accent: "green" + hue: 284 + pair: null + contrast: + fg: 90.7 + black: 0 + red: 51.4 + green: 85.4 + yellow: 87.3 + blue: 66.4 + magenta: 59.3 + cyan: 84.3 + white: 73.9 + brightBlack: 33 + brightRed: 51.4 + brightGreen: 85.4 + brightYellow: 87.3 + brightBlue: 66.4 + brightMagenta: 59.3 + brightCyan: 84.3 + brightWhite: 90.7 diff --git a/themes/maroza-theme--maroza-zen-pro.yaml b/themes/maroza-theme--maroza-zen-pro.yaml new file mode 100644 index 00000000..8858610f --- /dev/null +++ b/themes/maroza-theme--maroza-zen-pro.yaml @@ -0,0 +1,53 @@ +name: "Maroza Theme (Maroza Zen Pro)" +source: + marketplace_id: "thirawat27.maroza-theme" + version: "1.0.4" + installs: 333 + rating: 5 + ratings: 2 + author: "thirawat27" + repo: "https://github.com/thirawat27/maroza-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thirawat27.maroza-theme" + formats: null +colors: + bg: "#1E222A" + fg: "#D4D4D4" + black: "#2A323D" + red: "#E8987A" + green: "#98C379" + yellow: "#E8B87A" + blue: "#7EB8C4" + magenta: "#C9A8D4" + cyan: "#7EB8C4" + white: "#D4D4D4" + brightBlack: "#6B7D8A" + brightRed: "#F0A088" + brightGreen: "#A8D389" + brightYellow: "#F0C888" + brightBlue: "#8EC8D4" + brightMagenta: "#D9B8E4" + brightCyan: "#8EC8D4" + brightWhite: "#EEEEEE" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 78.1 + black: 0 + red: 54.9 + green: 60.9 + yellow: 66.4 + blue: 56.5 + magenta: 58.9 + cyan: 56.5 + white: 78.1 + brightBlack: 29.8 + brightRed: 59.4 + brightGreen: 70 + brightYellow: 74.4 + brightBlue: 65.4 + brightMagenta: 68.1 + brightCyan: 65.4 + brightWhite: 94.4 diff --git a/themes/martial-theme.yaml b/themes/martial-theme.yaml new file mode 100644 index 00000000..cb8ec617 --- /dev/null +++ b/themes/martial-theme.yaml @@ -0,0 +1,53 @@ +name: "Martial Theme" +source: + marketplace_id: "martial-theme.martial-theme" + version: "0.0.1" + installs: 665 + rating: 5 + ratings: 1 + author: "Martial Theme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=martial-theme.martial-theme" + formats: null +colors: + bg: "#252634" + fg: "#ABB2BF" + black: "#264EB2" + red: "#E05561" + green: "#8CC265" + yellow: "#F0EA4A" + blue: "#F0EA4A" + magenta: "#C162DE" + cyan: "#4C41C7" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0EA4A" + brightBlue: "#F0EA4A" + brightMagenta: "#DE73FF" + brightCyan: "#F0EA4A" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 281 + pair: null + contrast: + fg: 57.1 + black: 13.4 + red: 34.4 + green: 58.1 + yellow: 87.5 + blue: 87.5 + magenta: 36.8 + cyan: 14.1 + white: 80.8 + brightBlack: 13.2 + brightRed: 43.8 + brightGreen: 74.5 + brightYellow: 87.5 + brightBlue: 87.5 + brightMagenta: 48 + brightCyan: 87.5 + brightWhite: 88.4 diff --git a/themes/matcha-pastel.yaml b/themes/matcha-pastel.yaml new file mode 100644 index 00000000..e8d7d2c8 --- /dev/null +++ b/themes/matcha-pastel.yaml @@ -0,0 +1,53 @@ +name: "Matcha Pastel" +source: + marketplace_id: "Falyssa.matcha-pastel-theme" + version: "0.1.4" + installs: 239 + rating: 5 + ratings: 1 + author: "Falyssa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Falyssa.matcha-pastel-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#8E8E8E" + black: "#000000" + red: "#E64F4F" + green: "#7FD17F" + yellow: "#E0D473" + blue: "#87B9EE" + magenta: "#EC93EC" + cyan: "#80CDE0" + white: "#555555" + brightBlack: "#666666" + brightRed: "#E64B4B" + brightGreen: "#6EBC6E" + brightYellow: "#C7B94A" + brightBlue: "#5D8EC2" + brightMagenta: "#D18AD1" + brightCyan: "#6EB5C7" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 60.1 + black: 106 + red: 64 + green: 34.8 + yellow: 24 + blue: 40 + magenta: 41.1 + cyan: 33 + white: 85.9 + brightBlack: 78.8 + brightRed: 64.7 + brightGreen: 45.4 + brightYellow: 38.8 + brightBlue: 61.8 + brightMagenta: 49.6 + brightCyan: 45.4 + brightWhite: 48.5 diff --git a/themes/material-aurora.yaml b/themes/material-aurora.yaml new file mode 100644 index 00000000..16bbe3e5 --- /dev/null +++ b/themes/material-aurora.yaml @@ -0,0 +1,53 @@ +name: "Material Aurora" +source: + marketplace_id: "b4v1n4t0r.material-aurora" + version: "0.0.1" + installs: 78 + rating: 4 + ratings: 1 + author: "b4v1n4t0r" + repo: "https://github.com/sjbavier/aurora" + url: "https://marketplace.visualstudio.com/items?itemName=b4v1n4t0r.material-aurora" + formats: null +colors: + bg: "#302C40" + fg: "#BABED8" + black: "#000000" + red: "#F57484" + green: "#ACEA88" + yellow: "#FFCB6B" + blue: "#71B9ED" + magenta: "#C5A3FF" + cyan: "#88E7CA" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F57484" + brightGreen: "#ACEA88" + brightYellow: "#FFCB6B" + brightBlue: "#71B9ED" + brightMagenta: "#C5A3FF" + brightCyan: "#88E7CA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 293 + pair: null + contrast: + fg: 63.3 + black: 0 + red: 44.9 + green: 78.9 + yellow: 75.1 + blue: 55.8 + magenta: 56.7 + cyan: 76.5 + white: 103.1 + brightBlack: 22.6 + brightRed: 44.9 + brightGreen: 78.9 + brightYellow: 75.1 + brightBlue: 55.8 + brightMagenta: 56.7 + brightCyan: 76.5 + brightWhite: 103.1 diff --git a/themes/material-festoon.yaml b/themes/material-festoon.yaml new file mode 100644 index 00000000..48733ef7 --- /dev/null +++ b/themes/material-festoon.yaml @@ -0,0 +1,53 @@ +name: "Material Festoon" +source: + marketplace_id: "VitPetrov.material-festoon" + version: "1.4.1" + installs: 196 + rating: 0 + ratings: 0 + author: "VitPetrov" + repo: "https://github.com/VitalyPetrov/material-festoon" + url: "https://marketplace.visualstudio.com/items?itemName=VitPetrov.material-festoon" + formats: null +colors: + bg: "#2E2E2E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 75.8 + black: 0 + red: 23.1 + green: 49.3 + yellow: 82 + blue: 23.8 + magenta: 26.1 + cyan: 43.9 + white: 86.4 + brightBlack: 18.4 + brightRed: 34.9 + brightGreen: 59.9 + brightYellow: 92 + brightBlue: 36.3 + brightMagenta: 41.7 + brightCyan: 51.7 + brightWhite: 86.4 diff --git a/themes/material-light-theme--and-dark.yaml b/themes/material-light-theme--and-dark.yaml new file mode 100644 index 00000000..22529414 --- /dev/null +++ b/themes/material-light-theme--and-dark.yaml @@ -0,0 +1,53 @@ +name: "Material Light Theme (And Dark)" +source: + marketplace_id: "JonaDuran.my-light-theme" + version: "1.1.9" + installs: 31529 + rating: 5 + ratings: 5 + author: "Jonathan Durán" + repo: "https://github.com/JonaDuran/Material-Light-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=JonaDuran.my-light-theme" + formats: null +colors: + bg: "#282828" + fg: "#D0D0D0" + black: "#212121" + red: "#E57373" + green: "#8BC34A" + yellow: "#E5C07B" + blue: "#40C4FF" + magenta: "#EA80FC" + cyan: "#00BCD4" + white: "#D0D0D0" + brightBlack: "#212121" + brightRed: "#E57373" + brightGreen: "#8BC34A" + brightYellow: "#E5C07B" + brightBlue: "#40C4FF" + brightMagenta: "#EA80FC" + brightCyan: "#00BCD4" + brightWhite: "#D0D0D0" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 74.6 + black: 0 + red: 42.3 + green: 57.9 + yellow: 68.1 + blue: 60.9 + magenta: 53 + cyan: 54.1 + white: 74.6 + brightBlack: 0 + brightRed: 42.3 + brightGreen: 57.9 + brightYellow: 68.1 + brightBlue: 60.9 + brightMagenta: 53 + brightCyan: 54.1 + brightWhite: 74.6 diff --git a/themes/material-light-theme-and-dark--one-dark-pro.yaml b/themes/material-light-theme-and-dark--one-dark-pro.yaml new file mode 100644 index 00000000..8b101cfa --- /dev/null +++ b/themes/material-light-theme-and-dark--one-dark-pro.yaml @@ -0,0 +1,53 @@ +name: "Material Light Theme (And Dark) (One Dark Pro)" +source: + marketplace_id: "JonaDuran.my-light-theme" + version: "1.1.9" + installs: 31529 + rating: 5 + ratings: 5 + author: "Jonathan Durán" + repo: "https://github.com/JonaDuran/Material-Light-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=JonaDuran.my-light-theme" + formats: null +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 38.3 + brightMagenta: 9.5 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/material-monokai-theme.yaml b/themes/material-monokai-theme.yaml new file mode 100644 index 00000000..1a2c538d --- /dev/null +++ b/themes/material-monokai-theme.yaml @@ -0,0 +1,53 @@ +name: "Material Monokai Theme" +source: + marketplace_id: "repeale.material-monokai" + version: "1.1.1" + installs: 46374 + rating: 5 + ratings: 10 + author: "Alessio Enrico Repetti" + repo: "https://github.com/repeale/material-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=repeale.material-monokai" + formats: null +colors: + bg: "#263238" + fg: "#FFFFFF" + black: "#000000" + red: "#FF2C96" + green: "#9DFF00" + yellow: "#E6DB74" + blue: "#82AAFF" + magenta: "#B78AFF" + cyan: "#2EDCFF" + white: "#FFFFFF" + brightBlack: "#5F7A87" + brightRed: "#FF2C96" + brightGreen: "#9DFF00" + brightYellow: "#E6DB74" + brightBlue: "#82AAFF" + brightMagenta: "#B78AFF" + brightCyan: "#2EDCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 230 + pair: null + contrast: + fg: 102.7 + black: 0 + red: 36.2 + green: 86.5 + yellow: 77.9 + blue: 51.7 + magenta: 46.2 + cyan: 69.8 + white: 102.7 + brightBlack: 24.9 + brightRed: 36.2 + brightGreen: 86.5 + brightYellow: 77.9 + brightBlue: 51.7 + brightMagenta: 46.2 + brightCyan: 69.8 + brightWhite: 102.7 diff --git a/themes/material-neutral-theme.yaml b/themes/material-neutral-theme.yaml new file mode 100644 index 00000000..adb68965 --- /dev/null +++ b/themes/material-neutral-theme.yaml @@ -0,0 +1,53 @@ +name: "Material Neutral Theme" +source: + marketplace_id: "bernardodsanderson.theme-material-neutral" + version: "0.9.8" + installs: 60027 + rating: 4.46 + ratings: 13 + author: "bernardodsanderson" + repo: "https://gitlab.com/bernardodsanderson/material-neutral-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bernardodsanderson.theme-material-neutral" + formats: null +colors: + bg: "#263238" + fg: "#B2CCD6" + black: "#263238" + red: "#FA6981" + green: "#C3E88D" + yellow: "#FFCC00" + blue: "#82AAFF" + magenta: "#F77669" + cyan: "#7FCAC3" + white: "#B2CCD6" + brightBlack: "#65737E" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#FFCC00" + brightBlue: "#82AAFF" + brightMagenta: "#F77669" + brightCyan: "#7FCAC3" + brightWhite: "#B2CCD6" +meta: + mode: "dark" + accent: "red" + hue: 230 + pair: null + contrast: + fg: 67.9 + black: 0 + red: 42.9 + green: 80 + yellow: 74.4 + blue: 51.7 + magenta: 44.7 + cyan: 61.6 + white: 67.9 + brightBlack: 22.7 + brightRed: 28.8 + brightGreen: 57.5 + brightYellow: 74.4 + brightBlue: 51.7 + brightMagenta: 44.7 + brightCyan: 61.6 + brightWhite: 67.9 diff --git a/themes/material-theme-italicize--material-theme-darker.yaml b/themes/material-theme-italicize--material-theme-darker.yaml new file mode 100644 index 00000000..40cbb2e7 --- /dev/null +++ b/themes/material-theme-italicize--material-theme-darker.yaml @@ -0,0 +1,53 @@ +name: "Material Theme Italicize (Material-Theme-Darker)" +source: + marketplace_id: "Serge.vsc-material-theme-italicize" + version: "0.0.14" + installs: 22611 + rating: 5 + ratings: 1 + author: "Serge" + repo: "https://github.com/faultless/vsc-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" + formats: null +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#4A4A4A" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 103.3 + black: 9.7 + red: 42.4 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 9.7 + brightRed: 42.4 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/material-theme-italicize--material-theme-default.yaml b/themes/material-theme-italicize--material-theme-default.yaml new file mode 100644 index 00000000..e31d2884 --- /dev/null +++ b/themes/material-theme-italicize--material-theme-default.yaml @@ -0,0 +1,53 @@ +name: "Material Theme Italicize (Material-Theme-Default)" +source: + marketplace_id: "Serge.vsc-material-theme-italicize" + version: "0.0.14" + installs: 22611 + rating: 5 + ratings: 1 + author: "Serge" + repo: "https://github.com/faultless/vsc-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" + formats: null +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#546E7A" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 230 + pair: null + contrast: + fg: 100.4 + black: 19.7 + red: 39.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 102.7 + brightBlack: 19.7 + brightRed: 39.4 + brightGreen: 80 + brightYellow: 74.7 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/material-theme-italicize--material-theme-lighter-high-contrast.yaml b/themes/material-theme-italicize--material-theme-lighter-high-contrast.yaml new file mode 100644 index 00000000..79be36e4 --- /dev/null +++ b/themes/material-theme-italicize--material-theme-lighter-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Material Theme Italicize (Material-Theme-Lighter-High-Contrast)" +source: + marketplace_id: "Serge.vsc-material-theme-italicize" + version: "0.0.14" + installs: 22611 + rating: 5 + ratings: 1 + author: "Serge" + repo: "https://github.com/faultless/vsc-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" + formats: null +colors: + bg: "#FFFFFF" + fg: "#90A4AE" + black: "#90A4AE" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 50.6 + black: 50.6 + red: 67.7 + green: 44.9 + yellow: 31.7 + blue: 66.3 + magenta: 72.6 + cyan: 51.8 + white: 0 + brightBlack: 50.6 + brightRed: 67.7 + brightGreen: 44.9 + brightYellow: 31.7 + brightBlue: 66.3 + brightMagenta: 72.6 + brightCyan: 51.8 + brightWhite: 0 diff --git a/themes/material-theme-italicize--material-theme-lighter.yaml b/themes/material-theme-italicize--material-theme-lighter.yaml new file mode 100644 index 00000000..30f7f8cc --- /dev/null +++ b/themes/material-theme-italicize--material-theme-lighter.yaml @@ -0,0 +1,53 @@ +name: "Material Theme Italicize (Material-Theme-Lighter)" +source: + marketplace_id: "Serge.vsc-material-theme-italicize" + version: "0.0.14" + installs: 22611 + rating: 5 + ratings: 1 + author: "Serge" + repo: "https://github.com/faultless/vsc-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" + formats: null +colors: + bg: "#FAFAFA" + fg: "#90A4AE" + black: "#90A4AE" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 47.6 + black: 47.6 + red: 64.7 + green: 41.9 + yellow: 28.7 + blue: 63.3 + magenta: 69.6 + cyan: 48.8 + white: 0 + brightBlack: 47.6 + brightRed: 64.7 + brightGreen: 41.9 + brightYellow: 28.7 + brightBlue: 63.3 + brightMagenta: 69.6 + brightCyan: 48.8 + brightWhite: 0 diff --git a/themes/material-theme-italicize--material-theme-palenight.yaml b/themes/material-theme-italicize--material-theme-palenight.yaml new file mode 100644 index 00000000..f3e5b5b9 --- /dev/null +++ b/themes/material-theme-italicize--material-theme-palenight.yaml @@ -0,0 +1,53 @@ +name: "Material Theme Italicize (Material-Theme-Palenight)" +source: + marketplace_id: "Serge.vsc-material-theme-italicize" + version: "0.0.14" + installs: 22611 + rating: 5 + ratings: 1 + author: "Serge" + repo: "https://github.com/faultless/vsc-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Serge.vsc-material-theme-italicize" + formats: null +colors: + bg: "#292D3E" + fg: "#A6ACCD" + black: "#676E95" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 274 + pair: null + contrast: + fg: 53.5 + black: 22.8 + red: 40 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 40 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/material-tweaked.yaml b/themes/material-tweaked.yaml new file mode 100644 index 00000000..c5a87417 --- /dev/null +++ b/themes/material-tweaked.yaml @@ -0,0 +1,53 @@ +name: "Material-tweaked" +source: + marketplace_id: "aviksaikat.material-tweaked" + version: "0.0.1" + installs: 109 + rating: 0 + ratings: 0 + author: "avik_saikat" + repo: "https://github.com/Aviksaikat/Vscode-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=aviksaikat.material-tweaked" + formats: null +colors: + bg: "#292C3E" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + pair: null + contrast: + fg: 103.4 + black: 0 + red: 23.3 + green: 49.5 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.6 diff --git a/themes/material-ui.yaml b/themes/material-ui.yaml new file mode 100644 index 00000000..6fed4e00 --- /dev/null +++ b/themes/material-ui.yaml @@ -0,0 +1,53 @@ +name: "Material UI" +source: + marketplace_id: "nxt3.vscode-material-ui" + version: "1.2.0" + installs: 30127 + rating: 0 + ratings: 0 + author: "nxt3" + repo: "https://github.com/Nxt3/vscode-material-ui" + url: "https://marketplace.visualstudio.com/items?itemName=nxt3.vscode-material-ui" + formats: null +colors: + bg: "#212121" + fg: "#EEEEEE" + black: "#000000" + red: "#F44336" + green: "#00C853" + yellow: "#FFEB3B" + blue: "#2096F3" + magenta: "#9C30B0" + cyan: "#04BCD4" + white: "#BFBFBF" + brightBlack: "#666666" + brightRed: "#E57373" + brightGreen: "#25E47A" + brightYellow: "#FFF176" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.5 + black: 0 + red: 36.4 + green: 56.6 + yellow: 91.1 + blue: 41.8 + magenta: 20.3 + cyan: 55.2 + white: 65.8 + brightBlack: 20.8 + brightRed: 43.5 + brightGreen: 71.3 + brightYellow: 94.6 + brightBlue: 56.5 + brightMagenta: 36.6 + brightCyan: 66.2 + brightWhite: 102.3 diff --git a/themes/matrix-theme.yaml b/themes/matrix-theme.yaml new file mode 100644 index 00000000..197774aa --- /dev/null +++ b/themes/matrix-theme.yaml @@ -0,0 +1,53 @@ +name: "Matrix Theme" +source: + marketplace_id: "UstymUkhman.matrix-theme" + version: "0.1.3" + installs: 121302 + rating: 5 + ratings: 9 + author: "UstymUkhman" + repo: "https://github.com/UstymUkhman/matrix-theme" + url: "https://marketplace.visualstudio.com/items?itemName=UstymUkhman.matrix-theme" + formats: null +colors: + bg: "#0C0C0C" + fg: "#00CC00" + black: "#003300" + red: "#B40000" + green: "#00CC00" + yellow: "#CCCC00" + blue: "#003FFF" + magenta: "#880088" + cyan: "#008888" + white: "#BBFFBB" + brightBlack: "#006600" + brightRed: "#B40000" + brightGreen: "#88FF88" + brightYellow: "#888800" + brightBlue: "#003FFF" + brightMagenta: "#880088" + brightCyan: "#008888" + brightWhite: "#DDFFDD" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 60.1 + black: 0 + red: 19.7 + green: 60.1 + yellow: 71.7 + blue: 20.5 + magenta: 14.2 + cyan: 32.2 + white: 96.8 + brightBlack: 17.3 + brightRed: 19.7 + brightGreen: 91.2 + brightYellow: 36.4 + brightBlue: 20.5 + brightMagenta: 14.2 + brightCyan: 32.2 + brightWhite: 101.7 diff --git a/themes/matte-atelier-premium-studio-theme--matte-atelier-ivory.yaml b/themes/matte-atelier-premium-studio-theme--matte-atelier-ivory.yaml new file mode 100644 index 00000000..d64f7a22 --- /dev/null +++ b/themes/matte-atelier-premium-studio-theme--matte-atelier-ivory.yaml @@ -0,0 +1,53 @@ +name: "Matte Atelier - Premium Studio Theme (Matte Atelier — Ivory)" +source: + marketplace_id: "aadityanarayan.matte-atelier" + version: "1.0.0" + installs: 26 + rating: 0 + ratings: 0 + author: "aadityanarayan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" + formats: null +colors: + bg: "#F0ECE4" + fg: "#2C2A26" + black: "#2C2A26" + red: "#984848" + green: "#487848" + yellow: "#9A7830" + blue: "#4A7090" + magenta: "#7A5A90" + cyan: "#3A7878" + white: "#F0ECE4" + brightBlack: "#8C8880" + brightRed: "#A85858" + brightGreen: "#588858" + brightYellow: "#A88838" + brightBlue: "#5A80A0" + brightMagenta: "#8A6AA0" + brightCyan: "#4A8888" + brightWhite: "#F8F4EC" +meta: + mode: "light" + accent: "orange" + hue: 85 + pair: null + contrast: + fg: 90 + black: 90 + red: 69.6 + green: 64.4 + yellow: 57.1 + blue: 64.8 + magenta: 67.3 + cyan: 63.8 + white: 0 + brightBlack: 51.8 + brightRed: 63.1 + brightGreen: 57.3 + brightYellow: 49.9 + brightBlue: 57.6 + brightMagenta: 60.2 + brightCyan: 56.6 + brightWhite: 0 diff --git a/themes/matte-atelier-premium-studio-theme--matte-atelier-obsidian-colorblind.yaml b/themes/matte-atelier-premium-studio-theme--matte-atelier-obsidian-colorblind.yaml new file mode 100644 index 00000000..8afc47f6 --- /dev/null +++ b/themes/matte-atelier-premium-studio-theme--matte-atelier-obsidian-colorblind.yaml @@ -0,0 +1,53 @@ +name: "Matte Atelier - Premium Studio Theme (Matte Atelier — Obsidian Colorblind)" +source: + marketplace_id: "aadityanarayan.matte-atelier" + version: "1.0.0" + installs: 26 + rating: 0 + ratings: 0 + author: "aadityanarayan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" + formats: null +colors: + bg: "#141416" + fg: "#D8D6D0" + black: "#1A1A1E" + red: "#C87858" + green: "#5898B0" + yellow: "#D4A850" + blue: "#5B98C8" + magenta: "#A888C8" + cyan: "#60C8D8" + white: "#D8D6D0" + brightBlack: "#4C4A44" + brightRed: "#D89878" + brightGreen: "#78B8C8" + brightYellow: "#E0BE68" + brightBlue: "#78B0D0" + brightMagenta: "#C0A0E0" + brightCyan: "#78D8E0" + brightWhite: "#EAE8E2" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 81 + black: 0 + red: 40.4 + green: 41.7 + yellow: 58.1 + blue: 43.2 + magenta: 44.5 + cyan: 64.3 + white: 81 + brightBlack: 11.2 + brightRed: 53.8 + brightGreen: 57.9 + brightYellow: 68.9 + brightBlue: 55 + brightMagenta: 57.1 + brightCyan: 73.4 + brightWhite: 92.2 diff --git a/themes/matte-atelier-premium-studio-theme--matte-atelier-obsidian-high-contrast.yaml b/themes/matte-atelier-premium-studio-theme--matte-atelier-obsidian-high-contrast.yaml new file mode 100644 index 00000000..dad657c8 --- /dev/null +++ b/themes/matte-atelier-premium-studio-theme--matte-atelier-obsidian-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Matte Atelier - Premium Studio Theme (Matte Atelier — Obsidian High Contrast)" +source: + marketplace_id: "aadityanarayan.matte-atelier" + version: "1.0.0" + installs: 26 + rating: 0 + ratings: 0 + author: "aadityanarayan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" + formats: null +colors: + bg: "#0A0A0C" + fg: "#EEECE6" + black: "#111114" + red: "#D08080" + green: "#80AA80" + yellow: "#E0BE78" + blue: "#90B5D0" + magenta: "#B89ED0" + cyan: "#7CC0C0" + white: "#EEECE6" + brightBlack: "#585550" + brightRed: "#E0A0A0" + brightGreen: "#A0CCA0" + brightYellow: "#EACE8A" + brightBlue: "#A8C8E0" + brightMagenta: "#D0B8E0" + brightCyan: "#98D8D8" + brightWhite: "#F8F6F0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.3 + black: 0 + red: 45.6 + green: 50.5 + yellow: 69.8 + blue: 59.6 + magenta: 55.1 + cyan: 61.9 + white: 95.3 + brightBlack: 16.1 + brightRed: 59.6 + brightGreen: 69 + brightYellow: 78.3 + brightBlue: 70.7 + brightMagenta: 68.8 + brightCyan: 75.9 + brightWhite: 101.8 diff --git a/themes/matte-atelier-premium-studio-theme--matte-atelier-obsidian.yaml b/themes/matte-atelier-premium-studio-theme--matte-atelier-obsidian.yaml new file mode 100644 index 00000000..999b9381 --- /dev/null +++ b/themes/matte-atelier-premium-studio-theme--matte-atelier-obsidian.yaml @@ -0,0 +1,53 @@ +name: "Matte Atelier - Premium Studio Theme (Matte Atelier — Obsidian)" +source: + marketplace_id: "aadityanarayan.matte-atelier" + version: "1.0.0" + installs: 26 + rating: 0 + ratings: 0 + author: "aadityanarayan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" + formats: null +colors: + bg: "#141416" + fg: "#D4D2CD" + black: "#1A1A1E" + red: "#B07070" + green: "#6B8A6B" + yellow: "#C9A86C" + blue: "#7A9BB5" + magenta: "#9B85B5" + cyan: "#6B9E9E" + white: "#D4D2CD" + brightBlack: "#4A4843" + brightRed: "#C08888" + brightGreen: "#88A888" + brightYellow: "#D4B87A" + brightBlue: "#8AB0CC" + brightMagenta: "#B098CC" + brightCyan: "#80B8B8" + brightWhite: "#E8E6E0" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 78.6 + black: 0 + red: 34.7 + green: 35.1 + yellow: 56.9 + blue: 45.4 + magenta: 40.9 + cyan: 44.5 + white: 78.6 + brightBlack: 10.5 + brightRed: 45.1 + brightGreen: 50 + brightYellow: 65 + brightBlue: 56.2 + brightMagenta: 51.1 + brightCyan: 57.8 + brightWhite: 90.9 diff --git a/themes/matte-atelier-premium-studio-theme--matte-atelier-ros.yaml b/themes/matte-atelier-premium-studio-theme--matte-atelier-ros.yaml new file mode 100644 index 00000000..e2bcf63b --- /dev/null +++ b/themes/matte-atelier-premium-studio-theme--matte-atelier-ros.yaml @@ -0,0 +1,53 @@ +name: "Matte Atelier - Premium Studio Theme (Matte Atelier — Rosé)" +source: + marketplace_id: "aadityanarayan.matte-atelier" + version: "1.0.0" + installs: 26 + rating: 0 + ratings: 0 + author: "aadityanarayan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" + formats: null +colors: + bg: "#181212" + fg: "#D8D0CC" + black: "#1E1618" + red: "#C08080" + green: "#80A080" + yellow: "#C8A060" + blue: "#7890A8" + magenta: "#A07898" + cyan: "#6B9898" + white: "#D8D0CC" + brightBlack: "#4A4442" + brightRed: "#D09898" + brightGreen: "#98B898" + brightYellow: "#D4B070" + brightBlue: "#90A8C0" + brightMagenta: "#B890B0" + brightCyan: "#80B0B0" + brightWhite: "#E8E0DC" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 78.3 + black: 0 + red: 42.4 + green: 45.9 + yellow: 53.6 + blue: 40.6 + magenta: 36.2 + cyan: 41.9 + white: 78.3 + brightBlack: 9.6 + brightRed: 53.5 + brightGreen: 58.7 + brightYellow: 61.7 + brightBlue: 53 + brightMagenta: 48.2 + brightCyan: 54.1 + brightWhite: 88.1 diff --git a/themes/matte-atelier-premium-studio-theme--matte-atelier-sapphire.yaml b/themes/matte-atelier-premium-studio-theme--matte-atelier-sapphire.yaml new file mode 100644 index 00000000..f1b8f8b5 --- /dev/null +++ b/themes/matte-atelier-premium-studio-theme--matte-atelier-sapphire.yaml @@ -0,0 +1,53 @@ +name: "Matte Atelier - Premium Studio Theme (Matte Atelier — Sapphire)" +source: + marketplace_id: "aadityanarayan.matte-atelier" + version: "1.0.0" + installs: 26 + rating: 0 + ratings: 0 + author: "aadityanarayan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=aadityanarayan.matte-atelier" + formats: null +colors: + bg: "#0E1420" + fg: "#C8CCD8" + black: "#141A28" + red: "#B87878" + green: "#78A078" + yellow: "#C8A868" + blue: "#7098C0" + magenta: "#9080B8" + cyan: "#60A0A0" + white: "#C8CCD8" + brightBlack: "#404858" + brightRed: "#C89090" + brightGreen: "#90B890" + brightYellow: "#D4B878" + brightBlue: "#88B0D0" + brightMagenta: "#A898D0" + brightCyan: "#78B8B8" + brightWhite: "#E0E4E8" +meta: + mode: "dark" + accent: "yellow" + hue: 264 + pair: null + contrast: + fg: 75 + black: 0 + red: 38.5 + green: 44.9 + yellow: 56.7 + blue: 44.1 + magenta: 38.2 + cyan: 44.6 + white: 75 + brightBlack: 10.4 + brightRed: 49.2 + brightGreen: 57.6 + brightYellow: 65 + brightBlue: 56.2 + brightMagenta: 50.3 + brightCyan: 57.2 + brightWhite: 89.3 diff --git a/themes/matteric-theme.yaml b/themes/matteric-theme.yaml new file mode 100644 index 00000000..470eed73 --- /dev/null +++ b/themes/matteric-theme.yaml @@ -0,0 +1,53 @@ +name: "Matteric Theme" +source: + marketplace_id: "rodinalex.matteric" + version: "1.1.0" + installs: 494 + rating: 0 + ratings: 0 + author: "Alexey Rodin" + repo: "https://github.com/philosatom/vscode-theme-matteric" + url: "https://marketplace.visualstudio.com/items?itemName=rodinalex.matteric" + formats: null +colors: + bg: "#1B1F23" + fg: "#ACAEB0" + black: "#16191C" + red: "#E35339" + green: "#84A360" + yellow: "#D9C671" + blue: "#315173" + magenta: "#4B4063" + cyan: "#6F91AD" + white: "#ACAEB0" + brightBlack: "#4D535C" + brightRed: "#E35339" + brightGreen: "#9FC474" + brightYellow: "#D9C671" + brightBlue: "#5389C2" + brightMagenta: "#A087D4" + brightCyan: "#89B3D5" + brightWhite: "#D2D4D6" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 56.4 + black: 0 + red: 35.4 + green: 45.5 + yellow: 70.2 + blue: 12 + magenta: 8.6 + cyan: 39.2 + white: 56.4 + brightBlack: 13.2 + brightRed: 35.4 + brightGreen: 62.4 + brightYellow: 70.2 + brightBlue: 35.6 + brightMagenta: 42.7 + brightCyan: 56.6 + brightWhite: 78.4 diff --git a/themes/matugen-vscode.yaml b/themes/matugen-vscode.yaml new file mode 100644 index 00000000..4dfea759 --- /dev/null +++ b/themes/matugen-vscode.yaml @@ -0,0 +1,53 @@ +name: "Matugen VSCode" +source: + marketplace_id: "SatanAlphabet.matugen-vscode" + version: "1.2.0" + installs: 0 + rating: 0 + ratings: 0 + author: "SatanAlphabet" + repo: "https://github.com/SatanAlphabet/vscode-matugen" + url: "https://marketplace.visualstudio.com/items?itemName=SatanAlphabet.matugen-vscode" + formats: null +colors: + bg: "#161217" + fg: "#EAE0E7" + black: "#161217" + red: "#FF8994" + green: "#A6C568" + yellow: "#FFA057" + blue: "#B095FD" + magenta: "#E493E2" + cyan: "#61C7DA" + white: "#ECDFE9" + brightBlack: "#7E747D" + brightRed: "#FFB2B9" + brightGreen: "#B7D085" + brightYellow: "#FFB780" + brightBlue: "#CEBDFE" + brightMagenta: "#ECB4EB" + brightCyan: "#82D3E2" + brightWhite: "#FFF7FB" +meta: + mode: "dark" + accent: "magenta" + hue: 319 + pair: null + contrast: + fg: 88.9 + black: 0 + red: 57.1 + green: 64.5 + yellow: 62.9 + blue: 53.2 + magenta: 58.5 + cyan: 64.1 + white: 88.8 + brightBlack: 29.8 + brightRed: 71.7 + brightGreen: 71.9 + brightYellow: 71.8 + brightBlue: 71.7 + brightMagenta: 71.5 + brightCyan: 71.9 + brightWhite: 103.2 diff --git a/themes/maus-theme.yaml b/themes/maus-theme.yaml new file mode 100644 index 00000000..9565a248 --- /dev/null +++ b/themes/maus-theme.yaml @@ -0,0 +1,53 @@ +name: "Maus Theme" +source: + marketplace_id: "moonmaus.maus-theme" + version: "0.0.8" + installs: 175 + rating: 0 + ratings: 0 + author: "Moon Maus" + repo: "https://github.com/moonmaus/maus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=moonmaus.maus-theme" + formats: null +colors: + bg: "#0C0D0F" + fg: "#8F98A3" + black: "#1F2227" + red: "#BA0E2E" + green: "#00A373" + yellow: "#9A6FC4" + blue: "#C5D1E0" + magenta: "#00A373" + cyan: "#9A6FC4" + white: "#D0D9E4" + brightBlack: "#414852" + brightRed: "#F03E5F" + brightGreen: "#19FFBB" + brightYellow: "#C5D1E0" + brightBlue: "#C5D1E0" + brightMagenta: "#19FFBB" + brightCyan: "#CDB7E2" + brightWhite: "#C5D1E0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 45.9 + black: 0 + red: 21.2 + green: 42.5 + yellow: 35.5 + blue: 77.6 + magenta: 42.5 + cyan: 35.5 + white: 82.6 + brightBlack: 10.8 + brightRed: 37.5 + brightGreen: 89 + brightYellow: 77.6 + brightBlue: 77.6 + brightMagenta: 89 + brightCyan: 68 + brightWhite: 77.6 diff --git a/themes/maya-react-color-theme--carbon-react-color-theme-maya-black.yaml b/themes/maya-react-color-theme--carbon-react-color-theme-maya-black.yaml new file mode 100644 index 00000000..9a84ecf5 --- /dev/null +++ b/themes/maya-react-color-theme--carbon-react-color-theme-maya-black.yaml @@ -0,0 +1,53 @@ +name: "Maya React Color Theme (Carbon React Color Theme - Maya Black)" +source: + marketplace_id: "yathink3.carbon-react-color-theme" + version: "1.4.5" + installs: 6744 + rating: 5 + ratings: 5 + author: "yathink3" + repo: "https://github.com/yathink3/carbon-react-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" + formats: null +colors: + bg: "#000205" + fg: "#BFBDB6" + black: "#11151C" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 242 + pair: null + contrast: + fg: 66.8 + black: 0 + red: 45 + green: 71 + yellow: 67.6 + blue: 61.6 + magenta: 61.6 + cyan: 78.9 + white: 72.7 + brightBlack: 23.9 + brightRed: 47.6 + brightGreen: 74.3 + brightYellow: 70.6 + brightBlue: 64.3 + brightMagenta: 64.4 + brightCyan: 81.9 + brightWhite: 107.9 diff --git a/themes/maya-react-color-theme--carbon-react-color-theme-maya.yaml b/themes/maya-react-color-theme--carbon-react-color-theme-maya.yaml new file mode 100644 index 00000000..bc80d7d2 --- /dev/null +++ b/themes/maya-react-color-theme--carbon-react-color-theme-maya.yaml @@ -0,0 +1,53 @@ +name: "Maya React Color Theme (Carbon React Color Theme - Maya)" +source: + marketplace_id: "yathink3.carbon-react-color-theme" + version: "1.4.5" + installs: 6744 + rating: 5 + ratings: 5 + author: "yathink3" + repo: "https://github.com/yathink3/carbon-react-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" + formats: null +colors: + bg: "#161A26" + fg: "#BFBDB6" + black: "#343B4D" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 270 + pair: null + contrast: + fg: 65.5 + black: 0 + red: 43.7 + green: 69.6 + yellow: 66.2 + blue: 60.2 + magenta: 60.2 + cyan: 77.5 + white: 71.3 + brightBlack: 22.5 + brightRed: 46.2 + brightGreen: 72.9 + brightYellow: 69.2 + brightBlue: 63 + brightMagenta: 63 + brightCyan: 80.5 + brightWhite: 106.5 diff --git a/themes/maya-react-color-theme--carbon-react-color-theme.yaml b/themes/maya-react-color-theme--carbon-react-color-theme.yaml new file mode 100644 index 00000000..550b9ee2 --- /dev/null +++ b/themes/maya-react-color-theme--carbon-react-color-theme.yaml @@ -0,0 +1,53 @@ +name: "Maya React Color Theme (Carbon React Color Theme)" +source: + marketplace_id: "yathink3.carbon-react-color-theme" + version: "1.4.5" + installs: 6744 + rating: 5 + ratings: 5 + author: "yathink3" + repo: "https://github.com/yathink3/carbon-react-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yathink3.carbon-react-color-theme" + formats: null +colors: + bg: "#1B1D22" + fg: "#BBBBBB" + black: "#370067" + red: "#BF8B56" + green: "#07D258" + yellow: "#E3B625" + blue: "#BD1C98" + magenta: "#BF568B" + cyan: "#2F7ECD" + white: "#FFFFFF" + brightBlack: "#627E99" + brightRed: "#BF8B56" + brightGreen: "#24966E" + brightYellow: "#BFA656" + brightBlue: "#8B56BF" + brightMagenta: "#BF568B" + brightCyan: "#20BCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 268 + pair: null + contrast: + fg: 64 + black: 0 + red: 43.8 + green: 62.1 + yellow: 64.5 + blue: 24.1 + magenta: 31 + cyan: 31.3 + white: 106.2 + brightBlack: 30.8 + brightRed: 43.8 + brightGreen: 35.7 + brightYellow: 53.4 + brightBlue: 25.6 + brightMagenta: 31 + brightCyan: 58.5 + brightWhite: 106.2 diff --git a/themes/mayukai-theme--mayukai.yaml b/themes/mayukai-theme--mayukai.yaml new file mode 100644 index 00000000..db7272c7 --- /dev/null +++ b/themes/mayukai-theme--mayukai.yaml @@ -0,0 +1,53 @@ +name: "Mayukai Theme (Mayukai)" +source: + marketplace_id: "GulajavaMinistudio.mayukaithemevsc" + version: "3.2.5" + installs: 359491 + rating: 4.96 + ratings: 24 + author: "GulajavaMinistudio" + repo: "https://github.com/GulajavaMinistudio/Mayukai-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=GulajavaMinistudio.mayukaithemevsc" + formats: null +colors: + bg: "#141824" + fg: "#CBCEBC" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#95E6CB" + magenta: "#CFBAFA" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#95E6CB" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 270 + pair: null + contrast: + fg: 74.6 + black: 0 + red: 50.2 + green: 67.3 + yellow: 80.3 + blue: 80.7 + magenta: 69.9 + cyan: 80.7 + white: 71.5 + brightBlack: 22.7 + brightRed: 52.7 + brightGreen: 81.8 + brightYellow: 83.4 + brightBlue: 80.7 + brightMagenta: 72.8 + brightCyan: 80.7 + brightWhite: 106.7 diff --git a/themes/mcburger--mcdark-theme.yaml b/themes/mcburger--mcdark-theme.yaml new file mode 100644 index 00000000..2f985543 --- /dev/null +++ b/themes/mcburger--mcdark-theme.yaml @@ -0,0 +1,53 @@ +name: "McBurger (McDark Theme)" +source: + marketplace_id: "Mostunique.mcburger" + version: "0.0.13" + installs: 140 + rating: 5 + ratings: 1 + author: "Mostunique" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Mostunique.mcburger" + formats: null +colors: + bg: "#020210" + fg: "#AAAAAA" + black: "#111111" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#AAAAAA" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 277 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 16.2 + magenta: 46.2 + cyan: 92.1 + white: 107.8 + brightBlack: 56.2 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 16.2 + brightMagenta: 46.2 + brightCyan: 92.1 + brightWhite: 107.8 diff --git a/themes/meaow-theme--meaow-dark.yaml b/themes/meaow-theme--meaow-dark.yaml new file mode 100644 index 00000000..e58ca634 --- /dev/null +++ b/themes/meaow-theme--meaow-dark.yaml @@ -0,0 +1,53 @@ +name: "Meaow Theme (Meaow Dark)" +source: + marketplace_id: "meaow-dev.meaow-theme" + version: "0.0.1" + installs: 8 + rating: 5 + ratings: 1 + author: "MeaowDev" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=meaow-dev.meaow-theme" + formats: null +colors: + bg: "#1F1F1F" + fg: "#C0BCBC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 64.8 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/melange-redux--melange-redux-light.yaml b/themes/melange-redux--melange-redux-light.yaml new file mode 100644 index 00000000..170a2619 --- /dev/null +++ b/themes/melange-redux--melange-redux-light.yaml @@ -0,0 +1,53 @@ +name: "Melange Redux (Melange Redux: Light)" +source: + marketplace_id: "rtud.melange-redux" + version: "0.2.1" + installs: 1810 + rating: 5 + ratings: 1 + author: "rtud" + repo: "https://github.com/rtud/melange-redux" + url: "https://marketplace.visualstudio.com/items?itemName=rtud.melange-redux" + formats: null +colors: + bg: "#F1F1F1" + fg: "#423324" + black: "#7D6658" + red: "#BF0021" + green: "#3A684A" + yellow: "#A06D00" + blue: "#465AA4" + magenta: "#BE79BB" + cyan: "#3D6568" + white: "#F1F1F1" + brightBlack: "#54433A" + brightRed: "#BF0021" + brightGreen: "#3A684A" + brightYellow: "#A06D00" + brightBlue: "#465AA4" + brightMagenta: "#BE79BB" + brightCyan: "#3D6568" + brightWhite: "#E9E1DB" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.4 + black: 68.4 + red: 71.1 + green: 73.5 + yellow: 62.5 + blue: 73.5 + magenta: 50.2 + cyan: 73.6 + white: 0 + brightBlack: 83.3 + brightRed: 71.1 + brightGreen: 73.5 + brightYellow: 62.5 + brightBlue: 73.5 + brightMagenta: 50.2 + brightCyan: 73.6 + brightWhite: 0 diff --git a/themes/meocean-themes--meoceanemerald.yaml b/themes/meocean-themes--meoceanemerald.yaml new file mode 100644 index 00000000..6f8efef3 --- /dev/null +++ b/themes/meocean-themes--meoceanemerald.yaml @@ -0,0 +1,53 @@ +name: "MeOcean Themes (MeOceanEmerald)" +source: + marketplace_id: "JaianeOliveira.meoceanthemes" + version: "0.0.5" + installs: 9244 + rating: 0 + ratings: 0 + author: "Jaiane Oliveira" + repo: "https://github.com/JaianeOliveira/meocean-themes" + url: "https://marketplace.visualstudio.com/items?itemName=JaianeOliveira.meoceanthemes" + formats: null +colors: + bg: "#1F1F1F" + fg: "#F1F1F1" + black: "#000000" + red: "#E20E4A" + green: "#3FB48D" + yellow: "#E5B010" + blue: "#7066B6" + magenta: "#A469CF" + cyan: "#5AC2D3" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF0C51" + brightGreen: "#57FFC7" + brightYellow: "#FFC71F" + brightBlue: "#8F80FF" + brightMagenta: "#CA82FF" + brightCyan: "#67EAFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.7 + black: 0 + red: 29 + green: 49.8 + yellow: 62.2 + blue: 25.7 + magenta: 34.3 + cyan: 59.9 + white: 89 + brightBlack: 21.1 + brightRed: 36.2 + brightGreen: 88.9 + brightYellow: 75.6 + brightBlue: 41.6 + brightMagenta: 49.8 + brightCyan: 81.5 + brightWhite: 89 diff --git a/themes/meowrch-code-theme.yaml b/themes/meowrch-code-theme.yaml new file mode 100644 index 00000000..050dbf01 --- /dev/null +++ b/themes/meowrch-code-theme.yaml @@ -0,0 +1,53 @@ +name: "Meowrch Code Theme" +source: + marketplace_id: "dimflix-official.meowrch-theme" + version: "1.1.1" + installs: 660 + rating: 0 + ratings: 0 + author: "DIMFLIX-OFFICIAL" + repo: "https://github.com/meowrch/meowrch-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dimflix-official.meowrch-theme" + formats: null +colors: + bg: "#1E1E2E" + fg: "#CDD6F4" + black: "#A6ADC8" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#89DCEB" + white: "#BAC2DE" + brightBlack: "#585B70" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#89DCEB" + brightWhite: "#45475A" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 80 + black: 56.2 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 76.7 + cyan: 75.6 + white: 68.1 + brightBlack: 16.9 + brightRed: 54.7 + brightGreen: 78.3 + brightYellow: 88.4 + brightBlue: 59.1 + brightMagenta: 76.7 + brightCyan: 75.6 + brightWhite: 9.3 diff --git a/themes/meridian-theme--meridian-neutral.yaml b/themes/meridian-theme--meridian-neutral.yaml new file mode 100644 index 00000000..21153a93 --- /dev/null +++ b/themes/meridian-theme--meridian-neutral.yaml @@ -0,0 +1,53 @@ +name: "Meridian Theme (Meridian Neutral)" +source: + marketplace_id: "britown.vscode-theme-meridian" + version: "0.0.14" + installs: 167 + rating: 0 + ratings: 0 + author: "Britown" + repo: "https://github.com/bkuzmanoski/vscode-theme-meridian" + url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-meridian" + formats: null +colors: + bg: "#FCFCFC" + fg: "#353535" + black: "#353535" + red: "#B03645" + green: "#446F53" + yellow: "#9F5A38" + blue: "#3378A3" + magenta: "#9F5090" + cyan: "#417B81" + white: "#BBBBBB" + brightBlack: "#8E8E8E" + brightRed: "#DE6E7C" + brightGreen: "#68AE7F" + brightYellow: "#D68C67" + brightBlue: "#61ABDA" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#6E6E6E" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.2 + black: 96.2 + red: 77.5 + green: 76.9 + yellow: 74 + blue: 71.4 + magenta: 73.7 + cyan: 71.4 + white: 34.9 + brightBlack: 58.3 + brightRed: 56.6 + brightGreen: 49.5 + brightYellow: 50.2 + brightBlue: 47.4 + brightMagenta: 50.1 + brightCyan: 43.2 + brightWhite: 73.4 diff --git a/themes/meridian-theme--meridian.yaml b/themes/meridian-theme--meridian.yaml new file mode 100644 index 00000000..9225dba7 --- /dev/null +++ b/themes/meridian-theme--meridian.yaml @@ -0,0 +1,53 @@ +name: "Meridian Theme (Meridian)" +source: + marketplace_id: "britown.vscode-theme-meridian" + version: "0.0.14" + installs: 167 + rating: 0 + ratings: 0 + author: "Britown" + repo: "https://github.com/bkuzmanoski/vscode-theme-meridian" + url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-meridian" + formats: null +colors: + bg: "#FCFCFD" + fg: "#2E363C" + black: "#2E363C" + red: "#B03645" + green: "#446F53" + yellow: "#9F5A38" + blue: "#3378A3" + magenta: "#9F5090" + cyan: "#417B81" + white: "#B4BBC2" + brightBlack: "#839099" + brightRed: "#DE6E7C" + brightGreen: "#68AE7F" + brightYellow: "#D68C67" + brightBlue: "#61ABDA" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#637079" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.3 + black: 96.3 + red: 77.5 + green: 77 + yellow: 74.1 + blue: 71.4 + magenta: 73.8 + cyan: 71.4 + white: 35.5 + brightBlack: 58.3 + brightRed: 56.6 + brightGreen: 49.6 + brightYellow: 50.3 + brightBlue: 47.4 + brightMagenta: 50.2 + brightCyan: 43.2 + brightWhite: 73.4 diff --git a/themes/meshvoid-themes--meshvoid-light.yaml b/themes/meshvoid-themes--meshvoid-light.yaml new file mode 100644 index 00000000..b753290d --- /dev/null +++ b/themes/meshvoid-themes--meshvoid-light.yaml @@ -0,0 +1,53 @@ +name: "MeshVoid Themes (MeshVoid_Light)" +source: + marketplace_id: "MeshVoid.theme-meshvoid" + version: "1.3.1" + installs: 727 + rating: 0 + ratings: 0 + author: "MeshVoid" + repo: "https://github.com/MeshVoid/VSC_MeshVoid_Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MeshVoid.theme-meshvoid" + formats: null +colors: + bg: "#A7A7A7" + fg: "#000000" + black: "#000000" + red: "#B00000" + green: "#007300" + yellow: "#808400" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#FFFFFF" + brightBlack: "#5E5E5E" + brightRed: "#C24E4E" + brightGreen: "#00FF00" + brightYellow: "#F8FF00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#D7D5D5" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 56.6 + black: 56.6 + red: 33.4 + green: 30.2 + yellow: 17.9 + blue: 36.6 + magenta: 25.1 + cyan: 11.1 + white: 52.4 + brightBlack: 32.7 + brightRed: 22.3 + brightGreen: 31 + brightYellow: 46.2 + brightBlue: 36.6 + brightMagenta: 25.1 + brightCyan: 11.1 + brightWhite: 25.9 diff --git a/themes/meshvoid-themes--meshvoid.yaml b/themes/meshvoid-themes--meshvoid.yaml new file mode 100644 index 00000000..bdf9a947 --- /dev/null +++ b/themes/meshvoid-themes--meshvoid.yaml @@ -0,0 +1,53 @@ +name: "MeshVoid Themes (Meshvoid)" +source: + marketplace_id: "MeshVoid.theme-meshvoid" + version: "1.3.1" + installs: 727 + rating: 0 + ratings: 0 + author: "MeshVoid" + repo: "https://github.com/MeshVoid/VSC_MeshVoid_Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MeshVoid.theme-meshvoid" + formats: null +colors: + bg: "#474747" + fg: "#E4E4E4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.3 + black: 12.5 + red: 15.6 + green: 41.9 + yellow: 74.5 + blue: 16.3 + magenta: 18.7 + cyan: 36.5 + white: 78.9 + brightBlack: 10.9 + brightRed: 27.5 + brightGreen: 52.4 + brightYellow: 84.5 + brightBlue: 28.9 + brightMagenta: 34.3 + brightCyan: 44.3 + brightWhite: 78.9 diff --git a/themes/miasma.yaml b/themes/miasma.yaml new file mode 100644 index 00000000..0773c0f8 --- /dev/null +++ b/themes/miasma.yaml @@ -0,0 +1,53 @@ +name: "Miasma" +source: + marketplace_id: "wavebeem.miasma-vscode" + version: "0.2.0" + installs: 1184 + rating: 0 + ratings: 0 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/miasma-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.miasma-vscode" + formats: null +colors: + bg: "#12362A" + fg: "#A8F0D8" + black: "#295647" + red: "#F28C9D" + green: "#BEF76E" + yellow: "#F09E75" + blue: "#86ACF9" + magenta: "#E18CF2" + cyan: "#6EF7F7" + white: "#EDE3DE" + brightBlack: "#295647" + brightRed: "#F28C9D" + brightGreen: "#BEF76E" + brightYellow: "#F09E75" + brightBlue: "#86ACF9" + brightMagenta: "#E18CF2" + brightCyan: "#6EF7F7" + brightWhite: "#EDE3DE" +meta: + mode: "dark" + accent: "green" + hue: 168 + pair: null + contrast: + fg: 83.6 + black: 8.3 + red: 51.2 + green: 86.2 + yellow: 55.4 + blue: 52.4 + magenta: 52.3 + cyan: 84.6 + white: 85.7 + brightBlack: 8.3 + brightRed: 51.2 + brightGreen: 86.2 + brightYellow: 55.4 + brightBlue: 52.4 + brightMagenta: 52.3 + brightCyan: 84.6 + brightWhite: 85.7 diff --git a/themes/mid-nigth.yaml b/themes/mid-nigth.yaml new file mode 100644 index 00000000..a331b86c --- /dev/null +++ b/themes/mid-nigth.yaml @@ -0,0 +1,53 @@ +name: "mid-nigth" +source: + marketplace_id: "quantxz.quantxz" + version: "0.0.9" + installs: 1995 + rating: 5 + ratings: 1 + author: "anderson" + repo: "https://github.com/quantxz/dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=quantxz.quantxz" + formats: null +colors: + bg: "#1C1E26" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + pair: null + contrast: + fg: 78.6 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/midas-touch--midas-touch.yaml b/themes/midas-touch--midas-touch.yaml new file mode 100644 index 00000000..26a6b0b8 --- /dev/null +++ b/themes/midas-touch--midas-touch.yaml @@ -0,0 +1,53 @@ +name: "Midas Touch (Midas Touch)" +source: + marketplace_id: "vshakitskiy.midas-touch" + version: "1.0.0" + installs: 70 + rating: 5 + ratings: 1 + author: "vshakitskiy" + repo: "https://github.com/vshakitskiy/midas_touch" + url: "https://marketplace.visualstudio.com/items?itemName=vshakitskiy.midas-touch" + formats: null +colors: + bg: "#101010" + fg: "#FFE3EB" + black: "#181818" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#CDD6F4" + brightBlack: "#6C7086" + brightRed: "#F38BA8" + brightGreen: "#A6E3A1" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#94E2D5" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 93.7 + black: 0 + red: 56.3 + green: 80 + yellow: 90 + blue: 60.7 + magenta: 78.3 + cyan: 79.9 + white: 81.6 + brightBlack: 27.4 + brightRed: 56.3 + brightGreen: 80 + brightYellow: 90 + brightBlue: 60.7 + brightMagenta: 78.3 + brightCyan: 79.9 + brightWhite: 69.7 diff --git a/themes/midnight-city--midnight-city.yaml b/themes/midnight-city--midnight-city.yaml new file mode 100644 index 00000000..f6fbf09c --- /dev/null +++ b/themes/midnight-city--midnight-city.yaml @@ -0,0 +1,53 @@ +name: "Midnight City (Midnight City)" +source: + marketplace_id: "dillonchanis.midnight-city" + version: "0.6.0" + installs: 44304 + rating: 5 + ratings: 4 + author: "Dillon Chanis" + repo: "https://github.com/dillonchanis/theme-midnight-city" + url: "https://marketplace.visualstudio.com/items?itemName=dillonchanis.midnight-city" + formats: null +colors: + bg: "#0D011E" + fg: "#FFFFD8" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 300 + pair: null + contrast: + fg: 106 + black: 0 + red: 44.2 + green: 85.7 + yellow: 99.4 + blue: 54.4 + magenta: 55.4 + cyan: 84.8 + white: 102.8 + brightBlack: 28.8 + brightRed: 49.6 + brightGreen: 89.8 + brightYellow: 104.3 + brightBlue: 66.9 + brightMagenta: 63.4 + brightCyan: 97.6 + brightWhite: 107.7 diff --git a/themes/midnight-coven-gothic-theme-collection--gothic-absinthe.yaml b/themes/midnight-coven-gothic-theme-collection--gothic-absinthe.yaml new file mode 100644 index 00000000..d6ab77e8 --- /dev/null +++ b/themes/midnight-coven-gothic-theme-collection--gothic-absinthe.yaml @@ -0,0 +1,53 @@ +name: "Midnight Coven: Gothic Theme Collection (Gothic Absinthe)" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1130 + rating: 5 + ratings: 1 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + formats: null +colors: + bg: "#101812" + fg: "#E0E8E0" + black: "#101812" + red: "#E05050" + green: "#60A060" + yellow: "#D0A050" + blue: "#5070A0" + magenta: "#A060A0" + cyan: "#50A0A0" + white: "#C0D8C0" + brightBlack: "#6A7A6A" + brightRed: "#E07070" + brightGreen: "#70C070" + brightYellow: "#E0B070" + brightBlue: "#7090C0" + brightMagenta: "#C080C0" + brightCyan: "#70C0C0" + brightWhite: "#E0E8E0" +meta: + mode: "dark" + accent: "orange" + hue: 152 + pair: null + contrast: + fg: 90.6 + black: 0 + red: 35.6 + green: 42.5 + yellow: 54.3 + blue: 26 + magenta: 29.8 + cyan: 43.6 + white: 78.1 + brightBlack: 29.1 + brightRed: 43 + brightGreen: 57.7 + brightYellow: 63.3 + brightBlue: 40.9 + brightMagenta: 44.8 + brightCyan: 60.3 + brightWhite: 90.6 diff --git a/themes/midnight-coven-gothic-theme-collection--gothic-amber-fog.yaml b/themes/midnight-coven-gothic-theme-collection--gothic-amber-fog.yaml new file mode 100644 index 00000000..83c6c447 --- /dev/null +++ b/themes/midnight-coven-gothic-theme-collection--gothic-amber-fog.yaml @@ -0,0 +1,53 @@ +name: "Midnight Coven: Gothic Theme Collection (Gothic Amber Fog)" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1130 + rating: 5 + ratings: 1 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + formats: null +colors: + bg: "#19171A" + fg: "#E8E1D5" + black: "#19171A" + red: "#D5736A" + green: "#A5AD6A" + yellow: "#D5A84A" + blue: "#7A90AD" + magenta: "#AD90AA" + cyan: "#90ADA5" + white: "#E8E1D5" + brightBlack: "#777070" + brightRed: "#E08A82" + brightGreen: "#B5C080" + brightYellow: "#E5C875" + brightBlue: "#90A8C7" + brightMagenta: "#C7A8C5" + brightCyan: "#A8C7BD" + brightWhite: "#F8F0E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.9 + black: 0 + red: 41.4 + green: 53.9 + yellow: 57.8 + blue: 40.6 + magenta: 46 + cyan: 53.4 + white: 87.9 + brightBlack: 27 + brightRed: 50.6 + brightGreen: 64.1 + brightYellow: 73.7 + brightBlue: 52.9 + brightMagenta: 59.3 + brightCyan: 67.7 + brightWhite: 97.6 diff --git a/themes/midnight-coven-gothic-theme-collection--gothic-blood-moon.yaml b/themes/midnight-coven-gothic-theme-collection--gothic-blood-moon.yaml new file mode 100644 index 00000000..62197ead --- /dev/null +++ b/themes/midnight-coven-gothic-theme-collection--gothic-blood-moon.yaml @@ -0,0 +1,53 @@ +name: "Midnight Coven: Gothic Theme Collection (Gothic Blood Moon)" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1130 + rating: 5 + ratings: 1 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + formats: null +colors: + bg: "#170C0C" + fg: "#E0D0D0" + black: "#170C0C" + red: "#FF4040" + green: "#C06060" + yellow: "#FF9060" + blue: "#905080" + magenta: "#FF6090" + cyan: "#C05080" + white: "#E0D0D0" + brightBlack: "#805050" + brightRed: "#FF6060" + brightGreen: "#E07070" + brightYellow: "#FFB080" + brightBlue: "#B070A0" + brightMagenta: "#FF80B0" + brightCyan: "#E070A0" + brightWhite: "#FFF0F0" +meta: + mode: "dark" + accent: "orange" + hue: 19 + pair: null + contrast: + fg: 79.8 + black: 0 + red: 40.7 + green: 33.3 + yellow: 58.2 + blue: 22.8 + magenta: 47.5 + cyan: 30.9 + white: 79.8 + brightBlack: 19 + brightRed: 46.2 + brightGreen: 43.5 + brightYellow: 69.5 + brightBlue: 36.8 + brightMagenta: 56 + brightCyan: 45.1 + brightWhite: 99.8 diff --git a/themes/midnight-coven-gothic-theme-collection--gothic-cathedral.yaml b/themes/midnight-coven-gothic-theme-collection--gothic-cathedral.yaml new file mode 100644 index 00000000..bb1860d3 --- /dev/null +++ b/themes/midnight-coven-gothic-theme-collection--gothic-cathedral.yaml @@ -0,0 +1,53 @@ +name: "Midnight Coven: Gothic Theme Collection (Gothic Cathedral)" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1130 + rating: 5 + ratings: 1 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + formats: null +colors: + bg: "#12100F" + fg: "#FFFFFF" + black: "#12100F" + red: "#9A5A67" + green: "#9A8AA5" + yellow: "#B39362" + blue: "#7C8993" + magenta: "#9A7286" + cyan: "#849C88" + white: "#D3C4B0" + brightBlack: "#605850" + brightRed: "#B27C85" + brightGreen: "#B2A4BD" + brightYellow: "#C29275" + brightBlue: "#9CAAB3" + brightMagenta: "#B596A6" + brightCyan: "#A3B9A7" + brightWhite: "#E6DECA" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 107.4 + black: 0 + red: 25.6 + green: 42 + yellow: 46.2 + blue: 37.7 + magenta: 33.1 + cyan: 45.2 + white: 71.7 + brightBlack: 17.3 + brightRed: 39.5 + brightGreen: 55.3 + brightYellow: 48.5 + brightBlue: 54.6 + brightMagenta: 49.6 + brightCyan: 61 + brightWhite: 86.4 diff --git a/themes/midnight-coven-gothic-theme-collection--gothic-cemetery.yaml b/themes/midnight-coven-gothic-theme-collection--gothic-cemetery.yaml new file mode 100644 index 00000000..86e42847 --- /dev/null +++ b/themes/midnight-coven-gothic-theme-collection--gothic-cemetery.yaml @@ -0,0 +1,53 @@ +name: "Midnight Coven: Gothic Theme Collection (Gothic Cemetery)" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1130 + rating: 5 + ratings: 1 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + formats: null +colors: + bg: "#0F0F12" + fg: "#FFFFFF" + black: "#0F0F12" + red: "#A55560" + green: "#657860" + yellow: "#B09870" + blue: "#556880" + magenta: "#805570" + cyan: "#557580" + white: "#D8D8D8" + brightBlack: "#656575" + brightRed: "#D07585" + brightGreen: "#90B088" + brightYellow: "#D0C088" + brightBlue: "#7898C0" + brightMagenta: "#B088B0" + brightCyan: "#88C0C0" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 107.5 + black: 0 + red: 26.1 + green: 28.2 + yellow: 48 + blue: 22.9 + magenta: 21.2 + cyan: 27.1 + white: 82.5 + brightBlack: 22.8 + brightRed: 42.4 + brightGreen: 54.4 + brightYellow: 68.4 + brightBlue: 45 + brightMagenta: 44.7 + brightCyan: 62.5 + brightWhite: 97.7 diff --git a/themes/midnight-coven-gothic-theme-collection--gothic-emerald-crypt.yaml b/themes/midnight-coven-gothic-theme-collection--gothic-emerald-crypt.yaml new file mode 100644 index 00000000..051ecd39 --- /dev/null +++ b/themes/midnight-coven-gothic-theme-collection--gothic-emerald-crypt.yaml @@ -0,0 +1,53 @@ +name: "Midnight Coven: Gothic Theme Collection (Gothic Emerald Crypt)" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1130 + rating: 5 + ratings: 1 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + formats: null +colors: + bg: "#0F1A15" + fg: "#D0E0D8" + black: "#0F1A15" + red: "#F05050" + green: "#20C080" + yellow: "#D0C060" + blue: "#50A0D0" + magenta: "#C050A0" + cyan: "#40C0C0" + white: "#D0E0D8" + brightBlack: "#507060" + brightRed: "#F07070" + brightGreen: "#40D090" + brightYellow: "#E0D080" + brightBlue: "#70B0E0" + brightMagenta: "#E070B0" + brightCyan: "#60E0E0" + brightWhite: "#E0F0E8" +meta: + mode: "dark" + accent: "orange" + hue: 165 + pair: null + contrast: + fg: 84.4 + black: 0 + red: 38.9 + green: 55.1 + yellow: 66.9 + blue: 45.8 + magenta: 31.5 + cyan: 58 + white: 84.4 + brightBlack: 23.3 + brightRed: 46.1 + brightGreen: 63.7 + brightYellow: 76.5 + brightBlue: 55 + brightMagenta: 45.1 + brightCyan: 75.6 + brightWhite: 94.5 diff --git a/themes/midnight-coven-gothic-theme-collection--gothic-jester.yaml b/themes/midnight-coven-gothic-theme-collection--gothic-jester.yaml new file mode 100644 index 00000000..77dd7750 --- /dev/null +++ b/themes/midnight-coven-gothic-theme-collection--gothic-jester.yaml @@ -0,0 +1,53 @@ +name: "Midnight Coven: Gothic Theme Collection (Gothic Jester)" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1130 + rating: 5 + ratings: 1 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + formats: null +colors: + bg: "#10101A" + fg: "#FFFFFF" + black: "#10101A" + red: "#D06080" + green: "#C080C0" + yellow: "#D0A080" + blue: "#8090D0" + magenta: "#C080A0" + cyan: "#80A0D0" + white: "#F0E0D8" + brightBlack: "#706880" + brightRed: "#FF90A0" + brightGreen: "#E0A0E0" + brightYellow: "#FFC0A0" + brightBlue: "#A0B0FF" + brightMagenta: "#DE7AFF" + brightCyan: "#7AFFDE" + brightWhite: "#E0D9E6" +meta: + mode: "dark" + accent: "pink" + hue: 284 + pair: null + contrast: + fg: 107.4 + black: 0 + red: 37.1 + green: 45.3 + yellow: 55.7 + blue: 43.6 + magenta: 43.8 + cyan: 49.5 + white: 89.3 + brightBlack: 25 + brightRed: 59.7 + brightGreen: 62.1 + brightYellow: 76.3 + brightBlue: 61.5 + brightMagenta: 52.5 + brightCyan: 92.9 + brightWhite: 84.6 diff --git a/themes/midnight-coven-gothic-theme-collection--gothic-midnight-rose.yaml b/themes/midnight-coven-gothic-theme-collection--gothic-midnight-rose.yaml new file mode 100644 index 00000000..94ffe516 --- /dev/null +++ b/themes/midnight-coven-gothic-theme-collection--gothic-midnight-rose.yaml @@ -0,0 +1,53 @@ +name: "Midnight Coven: Gothic Theme Collection (Gothic Midnight Rose)" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1130 + rating: 5 + ratings: 1 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + formats: null +colors: + bg: "#0F0A1A" + fg: "#E0D8F0" + black: "#0F0A1A" + red: "#FF5070" + green: "#70A0FF" + yellow: "#D0A0FF" + blue: "#7080FF" + magenta: "#FF70A0" + cyan: "#70D0FF" + white: "#E0D8F0" + brightBlack: "#6A5A7A" + brightRed: "#FF7090" + brightGreen: "#90B0FF" + brightYellow: "#E0B0FF" + brightBlue: "#90A0FF" + brightMagenta: "#FF90B0" + brightCyan: "#90E0FF" + brightWhite: "#F0E8FF" +meta: + mode: "dark" + accent: "red" + hue: 297 + pair: null + contrast: + fg: 84.9 + black: 0 + red: 43.9 + green: 51.5 + yellow: 61.8 + blue: 40.5 + magenta: 51.5 + cyan: 71.4 + white: 84.9 + brightBlack: 20.4 + brightRed: 51 + brightGreen: 60.2 + brightYellow: 69.8 + brightBlue: 54.1 + brightMagenta: 60.5 + brightCyan: 80.9 + brightWhite: 94.9 diff --git a/themes/midnight-coven-gothic-theme-collection--gothic-qaddy.yaml b/themes/midnight-coven-gothic-theme-collection--gothic-qaddy.yaml new file mode 100644 index 00000000..8937872c --- /dev/null +++ b/themes/midnight-coven-gothic-theme-collection--gothic-qaddy.yaml @@ -0,0 +1,53 @@ +name: "Midnight Coven: Gothic Theme Collection (Gothic Qaddy)" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1130 + rating: 5 + ratings: 1 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + formats: null +colors: + bg: "#131117" + fg: "#F5F5F0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 300 + pair: null + contrast: + fg: 100.5 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86.1 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.5 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.5 diff --git a/themes/midnight-coven-gothic-theme-collection--gothic-raven.yaml b/themes/midnight-coven-gothic-theme-collection--gothic-raven.yaml new file mode 100644 index 00000000..ca52eb03 --- /dev/null +++ b/themes/midnight-coven-gothic-theme-collection--gothic-raven.yaml @@ -0,0 +1,53 @@ +name: "Midnight Coven: Gothic Theme Collection (Gothic Raven)" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1130 + rating: 5 + ratings: 1 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + formats: null +colors: + bg: "#10151A" + fg: "#F0F5F5" + black: "#080F15" + red: "#5077FF" + green: "#3060A0" + yellow: "#7090FF" + blue: "#70B0A0" + magenta: "#60A0D0" + cyan: "#4070CF" + white: "#D8E0F0" + brightBlack: "#708090" + brightRed: "#7090FF" + brightGreen: "#4070C0" + brightYellow: "#90B0FF" + brightBlue: "#90D0C0" + brightMagenta: "#80C0F0" + brightCyan: "#6090FF" + brightWhite: "#F0F5FF" +meta: + mode: "dark" + accent: "purple" + hue: 248 + pair: null + contrast: + fg: 99.8 + black: 0 + red: 35.2 + green: 19.8 + yellow: 45.2 + blue: 52.2 + magenta: 47 + cyan: 28.4 + white: 86.8 + brightBlack: 33.1 + brightRed: 45.2 + brightGreen: 27.3 + brightYellow: 59.7 + brightBlue: 69.9 + brightMagenta: 64 + brightCyan: 44.2 + brightWhite: 100.3 diff --git a/themes/midnight-coven-gothic-theme-collection--gothic-spider-lily.yaml b/themes/midnight-coven-gothic-theme-collection--gothic-spider-lily.yaml new file mode 100644 index 00000000..0248cb62 --- /dev/null +++ b/themes/midnight-coven-gothic-theme-collection--gothic-spider-lily.yaml @@ -0,0 +1,53 @@ +name: "Midnight Coven: Gothic Theme Collection (Gothic Spider Lily)" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1130 + rating: 5 + ratings: 1 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + formats: null +colors: + bg: "#0D0202" + fg: "#DC143C" + black: "#0D0202" + red: "#FF6666" + green: "#8B0000" + yellow: "#FF8888" + blue: "#8B0000" + magenta: "#FF6666" + cyan: "#A01010" + white: "#DC143C" + brightBlack: "#330A0A" + brightRed: "#FF7777" + brightGreen: "#8B0000" + brightYellow: "#FF8888" + brightBlue: "#A01010" + brightMagenta: "#FF6666" + brightCyan: "#DC143C" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 23 + pair: null + contrast: + fg: 29.4 + black: 0 + red: 47.9 + green: 11.5 + yellow: 57.1 + blue: 11.5 + magenta: 47.9 + cyan: 15.8 + white: 29.4 + brightBlack: 0 + brightRed: 52.1 + brightGreen: 11.5 + brightYellow: 57.1 + brightBlue: 15.8 + brightMagenta: 47.9 + brightCyan: 29.4 + brightWhite: 107.8 diff --git a/themes/midnight-coven-gothic-theme-collection--gothic-twilight-forest.yaml b/themes/midnight-coven-gothic-theme-collection--gothic-twilight-forest.yaml new file mode 100644 index 00000000..6871a6cb --- /dev/null +++ b/themes/midnight-coven-gothic-theme-collection--gothic-twilight-forest.yaml @@ -0,0 +1,53 @@ +name: "Midnight Coven: Gothic Theme Collection (Gothic Twilight Forest)" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1130 + rating: 5 + ratings: 1 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + formats: null +colors: + bg: "#0F1A15" + fg: "#D5E5E0" + black: "#0F1A15" + red: "#E05050" + green: "#60D080" + yellow: "#E0C060" + blue: "#60A0E0" + magenta: "#C070C0" + cyan: "#60C0C0" + white: "#D5E5E0" + brightBlack: "#567568" + brightRed: "#F07070" + brightGreen: "#80E0A0" + brightYellow: "#F0D080" + brightBlue: "#80B0F0" + brightMagenta: "#D090D0" + brightCyan: "#80D0D0" + brightWhite: "#E8F8F0" +meta: + mode: "dark" + accent: "orange" + hue: 165 + pair: null + contrast: + fg: 87.6 + black: 0 + red: 35.4 + green: 64.4 + yellow: 69.2 + blue: 47.6 + magenta: 40.3 + cyan: 59.2 + white: 87.6 + brightBlack: 25.6 + brightRed: 46.1 + brightGreen: 74.8 + brightYellow: 78.9 + brightBlue: 57.1 + brightMagenta: 52.9 + brightCyan: 69.1 + brightWhite: 99.6 diff --git a/themes/midnight-coven-gothic-theme-collection--gothic-vampire.yaml b/themes/midnight-coven-gothic-theme-collection--gothic-vampire.yaml new file mode 100644 index 00000000..5a2e6842 --- /dev/null +++ b/themes/midnight-coven-gothic-theme-collection--gothic-vampire.yaml @@ -0,0 +1,53 @@ +name: "Midnight Coven: Gothic Theme Collection (Gothic Vampire)" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1130 + rating: 5 + ratings: 1 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + formats: null +colors: + bg: "#1A1017" + fg: "#F5F0F5" + black: "#15080F" + red: "#FF5077" + green: "#A03060" + yellow: "#FF9070" + blue: "#A070B0" + magenta: "#D060A0" + cyan: "#CF4070" + white: "#F0D8E0" + brightBlack: "#907080" + brightRed: "#FF7090" + brightGreen: "#C04070" + brightYellow: "#FFB090" + brightBlue: "#C090D0" + brightMagenta: "#F080C0" + brightCyan: "#FF6090" + brightWhite: "#FFF0F5" +meta: + mode: "dark" + accent: "red" + hue: 338 + pair: null + contrast: + fg: 98.3 + black: 0 + red: 43.7 + green: 18.7 + yellow: 58.2 + blue: 35 + magenta: 38.1 + cyan: 30.5 + white: 86 + brightBlack: 30.8 + brightRed: 50.6 + brightGreen: 27.4 + brightYellow: 69.6 + brightBlue: 50.9 + brightMagenta: 53.4 + brightCyan: 47.2 + brightWhite: 99.7 diff --git a/themes/midnight-coven-gothic-theme-collection--gothic-victorian-mourning.yaml b/themes/midnight-coven-gothic-theme-collection--gothic-victorian-mourning.yaml new file mode 100644 index 00000000..b4b6a6e4 --- /dev/null +++ b/themes/midnight-coven-gothic-theme-collection--gothic-victorian-mourning.yaml @@ -0,0 +1,53 @@ +name: "Midnight Coven: Gothic Theme Collection (Gothic Victorian Mourning)" +source: + marketplace_id: "Diyllan.midnight-coven-themes" + version: "1.0.1" + installs: 1130 + rating: 5 + ratings: 1 + author: "Diyllan" + repo: "https://github.com/diyllan/midnight-coven-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Diyllan.midnight-coven-themes" + formats: null +colors: + bg: "#0F0A06" + fg: "#D4C5A9" + black: "#0F0A06" + red: "#CD853F" + green: "#8B7355" + yellow: "#DAA520" + blue: "#8B7355" + magenta: "#CD853F" + cyan: "#A68660" + white: "#D4C5A9" + brightBlack: "#3D2817" + brightRed: "#E09F56" + brightGreen: "#8B7355" + brightYellow: "#DAA520" + brightBlue: "#A68660" + brightMagenta: "#CD853F" + brightCyan: "#D4C5A9" + brightWhite: "#F5F0E8" +meta: + mode: "dark" + accent: "yellow" + hue: 64 + pair: null + contrast: + fg: 72.2 + black: 0 + red: 45.3 + green: 30.4 + yellow: 58.1 + blue: 30.4 + magenta: 45.3 + cyan: 40.2 + white: 72.2 + brightBlack: 0 + brightRed: 57.4 + brightGreen: 30.4 + brightYellow: 58.1 + brightBlue: 40.2 + brightMagenta: 45.3 + brightCyan: 72.2 + brightWhite: 98.2 diff --git a/themes/midnight-mirage-theme.yaml b/themes/midnight-mirage-theme.yaml new file mode 100644 index 00000000..7f0876e3 --- /dev/null +++ b/themes/midnight-mirage-theme.yaml @@ -0,0 +1,53 @@ +name: "Midnight Mirage Theme" +source: + marketplace_id: "puszkarek.midnight-mirage-theme" + version: "0.1.6" + installs: 566 + rating: 5 + ratings: 1 + author: "Puszkarek" + repo: "https://github.com/Puszkarek/midnight-mirage-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=puszkarek.midnight-mirage-theme" + formats: null +colors: + bg: "#313B43" + fg: "#DBDDE1" + black: "#111111" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#DBDDE1" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#F2F3F5" +meta: + mode: "dark" + accent: "pink" + hue: 242 + pair: null + contrast: + fg: 78.1 + black: 0 + red: 19.9 + green: 46.2 + yellow: 78.8 + blue: 20.6 + magenta: 22.9 + cyan: 40.7 + white: 78.1 + brightBlack: 15.2 + brightRed: 31.8 + brightGreen: 56.7 + brightYellow: 88.8 + brightBlue: 33.2 + brightMagenta: 38.6 + brightCyan: 48.6 + brightWhite: 92.1 diff --git a/themes/midnight-moon-themes--midnight-moon-eclipse.yaml b/themes/midnight-moon-themes--midnight-moon-eclipse.yaml new file mode 100644 index 00000000..6c8f7626 --- /dev/null +++ b/themes/midnight-moon-themes--midnight-moon-eclipse.yaml @@ -0,0 +1,53 @@ +name: "Midnight Moon - Themes (Midnight Moon Eclipse)" +source: + marketplace_id: "Noxire.midnight-themepack" + version: "1.2.0" + installs: 545 + rating: 0 + ratings: 0 + author: "Noxire" + repo: "https://github.com/Noxire-Hash/midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" + formats: null +colors: + bg: "#1A1D32" + fg: "#D8E3FA" + black: "#1A1D32" + red: "#FF6380" + green: "#98BB6C" + yellow: "#E6C384" + blue: "#72D0B3" + magenta: "#D18FD7" + cyan: "#72D0B3" + white: "#D8E3FA" + brightBlack: "#4A4F7A" + brightRed: "#FF6380" + brightGreen: "#98BB6C" + brightYellow: "#E6C384" + brightBlue: "#72D0B3" + brightMagenta: "#D18FD7" + brightCyan: "#72D0B3" + brightWhite: "#D8E3FA" +meta: + mode: "dark" + accent: "red" + hue: 277 + pair: null + contrast: + fg: 87.5 + black: 0 + red: 46 + green: 57.6 + yellow: 71.2 + blue: 66.1 + magenta: 52.3 + cyan: 66.1 + white: 87.5 + brightBlack: 13.1 + brightRed: 46 + brightGreen: 57.6 + brightYellow: 71.2 + brightBlue: 66.1 + brightMagenta: 52.3 + brightCyan: 66.1 + brightWhite: 87.5 diff --git a/themes/midnight-moon-themes--midnight-moon-ukiyo.yaml b/themes/midnight-moon-themes--midnight-moon-ukiyo.yaml new file mode 100644 index 00000000..2f119464 --- /dev/null +++ b/themes/midnight-moon-themes--midnight-moon-ukiyo.yaml @@ -0,0 +1,53 @@ +name: "Midnight Moon - Themes (Midnight Moon Ukiyo)" +source: + marketplace_id: "Noxire.midnight-themepack" + version: "1.2.0" + installs: 545 + rating: 0 + ratings: 0 + author: "Noxire" + repo: "https://github.com/Noxire-Hash/midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" + formats: null +colors: + bg: "#1F1F28" + fg: "#DCD7BA" + black: "#16161D" + red: "#C34043" + green: "#98BB6C" + yellow: "#E6C384" + blue: "#7E9CD8" + magenta: "#957FB8" + cyan: "#7FB4CA" + white: "#DCD7BA" + brightBlack: "#54546D" + brightRed: "#C34043" + brightGreen: "#98BB6C" + brightYellow: "#E6C384" + brightBlue: "#7E9CD8" + brightMagenta: "#957FB8" + brightCyan: "#7FB4CA" + brightWhite: "#DCD7BA" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 79.7 + black: 0 + red: 25.6 + green: 57.4 + yellow: 71.1 + blue: 46.7 + magenta: 37.1 + cyan: 55.5 + white: 79.7 + brightBlack: 14.5 + brightRed: 25.6 + brightGreen: 57.4 + brightYellow: 71.1 + brightBlue: 46.7 + brightMagenta: 37.1 + brightCyan: 55.5 + brightWhite: 79.7 diff --git a/themes/midnight-moon-themes--midnight-moon.yaml b/themes/midnight-moon-themes--midnight-moon.yaml new file mode 100644 index 00000000..07c5cd1f --- /dev/null +++ b/themes/midnight-moon-themes--midnight-moon.yaml @@ -0,0 +1,53 @@ +name: "Midnight Moon - Themes (Midnight Moon)" +source: + marketplace_id: "Noxire.midnight-themepack" + version: "1.2.0" + installs: 545 + rating: 0 + ratings: 0 + author: "Noxire" + repo: "https://github.com/Noxire-Hash/midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" + formats: null +colors: + bg: "#0B0E1A" + fg: "#C9D1D9" + black: "#484F58" + red: "#F85149" + green: "#7EE787" + yellow: "#F0D852" + blue: "#79C0FF" + magenta: "#D2A8FF" + cyan: "#39C5CF" + white: "#C9D1D9" + brightBlack: "#484F58" + brightRed: "#FF6B6B" + brightGreen: "#56D364" + brightYellow: "#FFEA7F" + brightBlue: "#58A6FF" + brightMagenta: "#B180D7" + brightCyan: "#56D4DD" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "orange" + hue: 273 + pair: null + contrast: + fg: 77.7 + black: 13.2 + red: 41.6 + green: 78.2 + yellow: 82.3 + blue: 64.9 + magenta: 64.7 + cyan: 61.5 + white: 77.7 + brightBlack: 13.2 + brightRed: 48.7 + brightGreen: 65.6 + brightYellow: 93.4 + brightBlue: 52.3 + brightMagenta: 44.5 + brightCyan: 70.1 + brightWhite: 101 diff --git a/themes/midnight-moon-themes--midnight-pro.yaml b/themes/midnight-moon-themes--midnight-pro.yaml new file mode 100644 index 00000000..90387b77 --- /dev/null +++ b/themes/midnight-moon-themes--midnight-pro.yaml @@ -0,0 +1,53 @@ +name: "Midnight Moon - Themes (Midnight Pro)" +source: + marketplace_id: "Noxire.midnight-themepack" + version: "1.2.0" + installs: 545 + rating: 0 + ratings: 0 + author: "Noxire" + repo: "https://github.com/Noxire-Hash/midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" + formats: null +colors: + bg: "#131821" + fg: "#D8E3F0" + black: "#0A0E17" + red: "#FF6B88" + green: "#7FE7A5" + yellow: "#FFD47B" + blue: "#8AB8FF" + magenta: "#C77DFF" + cyan: "#7DCFFF" + white: "#E6F1FF" + brightBlack: "#0A0E17" + brightRed: "#FF8FA3" + brightGreen: "#95EFBB" + brightYellow: "#FFE095" + brightBlue: "#9FC5FF" + brightMagenta: "#D89EFF" + brightCyan: "#95DBFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 262 + pair: null + contrast: + fg: 87.8 + black: 0 + red: 48.8 + green: 78.3 + yellow: 82.9 + blue: 62 + magenta: 48.9 + cyan: 70.9 + white: 96.8 + brightBlack: 0 + brightRed: 58.9 + brightGreen: 84.6 + brightYellow: 88.7 + brightBlue: 69.3 + brightMagenta: 61.5 + brightCyan: 78.1 + brightWhite: 106.8 diff --git a/themes/midnight-moon-themes--midnight-ukiyo.yaml b/themes/midnight-moon-themes--midnight-ukiyo.yaml new file mode 100644 index 00000000..9ac6b6f8 --- /dev/null +++ b/themes/midnight-moon-themes--midnight-ukiyo.yaml @@ -0,0 +1,53 @@ +name: "Midnight Moon - Themes (Midnight Ukiyo)" +source: + marketplace_id: "Noxire.midnight-themepack" + version: "1.2.0" + installs: 545 + rating: 0 + ratings: 0 + author: "Noxire" + repo: "https://github.com/Noxire-Hash/midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" + formats: null +colors: + bg: "#1F1F28" + fg: "#DCD7BA" + black: "#16161D" + red: "#E82424" + green: "#98BB6C" + yellow: "#D4A574" + blue: "#7E9CD8" + magenta: "#957FB8" + cyan: "#6BB6C7" + white: "#DCD7BA" + brightBlack: "#54546D" + brightRed: "#F85149" + brightGreen: "#A8C685" + brightYellow: "#E6B886" + brightBlue: "#8BA4F0" + brightMagenta: "#A68DBF" + brightCyan: "#7DCAE9" + brightWhite: "#F0F0E7" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 79.7 + black: 0 + red: 30.7 + green: 57.4 + yellow: 56.3 + blue: 46.7 + magenta: 37.1 + cyan: 54.8 + white: 79.7 + brightBlack: 14.5 + brightRed: 39.8 + brightGreen: 64.4 + brightYellow: 66.7 + brightBlue: 52.3 + brightMagenta: 44.1 + brightCyan: 66.5 + brightWhite: 95.6 diff --git a/themes/midnight-moon-themes--zen-mono.yaml b/themes/midnight-moon-themes--zen-mono.yaml new file mode 100644 index 00000000..31652353 --- /dev/null +++ b/themes/midnight-moon-themes--zen-mono.yaml @@ -0,0 +1,53 @@ +name: "Midnight Moon - Themes (Zen Mono)" +source: + marketplace_id: "Noxire.midnight-themepack" + version: "1.2.0" + installs: 545 + rating: 0 + ratings: 0 + author: "Noxire" + repo: "https://github.com/Noxire-Hash/midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Noxire.midnight-themepack" + formats: null +colors: + bg: "#11141B" + fg: "#DCD9F6" + black: "#0E1017" + red: "#FF6A9B" + green: "#B3F1D0" + yellow: "#FFCC88" + blue: "#A7C5FF" + magenta: "#C099FF" + cyan: "#B8E7FF" + white: "#E8E6FF" + brightBlack: "#2A2E3E" + brightRed: "#FF8AB3" + brightGreen: "#C7F6DC" + brightYellow: "#FFE3A8" + brightBlue: "#BDD4FF" + brightMagenta: "#D8C5FF" + brightCyan: "#D2F1FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 267 + pair: null + contrast: + fg: 84.6 + black: 0 + red: 49.6 + green: 89.3 + yellow: 80.2 + blue: 70.4 + magenta: 56.7 + cyan: 87.2 + white: 92.4 + brightBlack: 0 + brightRed: 58.5 + brightGreen: 94.2 + brightYellow: 90.9 + brightBlue: 79.2 + brightMagenta: 76.2 + brightCyan: 94.7 + brightWhite: 107.1 diff --git a/themes/midnight-shadow.yaml b/themes/midnight-shadow.yaml new file mode 100644 index 00000000..6908a27b --- /dev/null +++ b/themes/midnight-shadow.yaml @@ -0,0 +1,53 @@ +name: "Midnight Shadow" +source: + marketplace_id: "Vjecni.Midnight-Shadow" + version: "0.8.0" + installs: 196 + rating: 0 + ratings: 0 + author: "Vjecni" + repo: "https://github.com/Vjecni/midnight-shadow-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vjecni.Midnight-Shadow" + formats: null +colors: + bg: "#18191D" + fg: "#FFFFFF" + black: "#1A1D25" + red: "#CD3131" + green: "#0DBC79" + yellow: "#9B9B00" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#A9A9A9" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.6 + black: 0 + red: 26.5 + green: 52.8 + yellow: 44.5 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 54.5 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.1 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/midnight-theme--midnight-theme.yaml b/themes/midnight-theme--midnight-theme.yaml new file mode 100644 index 00000000..73ad7dc9 --- /dev/null +++ b/themes/midnight-theme--midnight-theme.yaml @@ -0,0 +1,53 @@ +name: "Midnight Theme (Midnight Theme)" +source: + marketplace_id: "kaivanwong.vscode-midnight-theme" + version: "0.1.3" + installs: 842 + rating: 5 + ratings: 1 + author: "Kaivan Wong" + repo: "https://github.com/kaivanwong/vscode-midnight-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kaivanwong.vscode-midnight-theme" + formats: null +colors: + bg: "#1C2630" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 249 + pair: null + contrast: + fg: 79.4 + black: 0 + red: 38.8 + green: 34.8 + yellow: 73.7 + blue: 39.4 + magenta: 42 + cyan: 47.3 + white: 79.4 + brightBlack: 27.6 + brightRed: 38.8 + brightGreen: 34.8 + brightYellow: 73.7 + brightBlue: 39.4 + brightMagenta: 42 + brightCyan: 47.3 + brightWhite: 105 diff --git a/themes/midwinter--nord.yaml b/themes/midwinter--nord.yaml new file mode 100644 index 00000000..d2c22e8a --- /dev/null +++ b/themes/midwinter--nord.yaml @@ -0,0 +1,53 @@ +name: "Midwinter (Nord)" +source: + marketplace_id: "merithayan.midwinter" + version: "0.1.1" + installs: 165 + rating: 0 + ratings: 0 + author: "Tim Hull" + repo: "https://www.github.com/mtyn/midwinter" + url: "https://marketplace.visualstudio.com/items?itemName=merithayan.midwinter" + formats: null +colors: + bg: "#303036" + fg: "#FFFFFF" + black: "#474850" + red: "#AF5550" + green: "#79B488" + yellow: "#EBB861" + blue: "#8896BB" + magenta: "#A796BC" + cyan: "#4397C4" + white: "#E5E9F0" + brightBlack: "#5F606C" + brightRed: "#AF5550" + brightGreen: "#79B488" + brightYellow: "#EBB861" + brightBlue: "#8896BB" + brightMagenta: "#A796BC" + brightCyan: "#459BA0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "yellow" + hue: 286 + pair: null + contrast: + fg: 102.7 + black: 0 + red: 22.6 + green: 49.3 + yellow: 63.6 + blue: 40.6 + magenta: 44 + cyan: 37 + white: 88.1 + brightBlack: 15.6 + brightRed: 22.6 + brightGreen: 49.3 + brightYellow: 63.6 + brightBlue: 40.6 + brightMagenta: 44 + brightCyan: 36.8 + brightWhite: 99.3 diff --git a/themes/mikestheme.yaml b/themes/mikestheme.yaml new file mode 100644 index 00000000..70521540 --- /dev/null +++ b/themes/mikestheme.yaml @@ -0,0 +1,53 @@ +name: "mikestheme" +source: + marketplace_id: "mikep.mikestheme" + version: "0.0.1" + installs: 98 + rating: 0 + ratings: 0 + author: "mikep" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mikep.mikestheme" + formats: null +colors: + bg: "#1A1D25" + fg: "#F5F5DF" + black: "#1E232E" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#95E6CB" + magenta: "#CFBAFA" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#8ADBB7" + brightYellow: "#FFD17A" + brightBlue: "#95E6CB" + brightMagenta: "#CCA0FF" + brightCyan: "#95E6CB" + brightWhite: "#FDFDFD" +meta: + mode: "dark" + accent: "magenta" + hue: 269 + pair: null + contrast: + fg: 98.6 + black: 0 + red: 49.6 + green: 66.8 + yellow: 79.8 + blue: 80.2 + magenta: 69.3 + cyan: 80.2 + white: 71 + brightBlack: 22.2 + brightRed: 52.2 + brightGreen: 73.3 + brightYellow: 81 + brightBlue: 80.2 + brightMagenta: 59.7 + brightCyan: 80.2 + brightWhite: 104.8 diff --git a/themes/miku-code--miku-code-fusion-light.yaml b/themes/miku-code--miku-code-fusion-light.yaml new file mode 100644 index 00000000..c5583971 --- /dev/null +++ b/themes/miku-code--miku-code-fusion-light.yaml @@ -0,0 +1,53 @@ +name: "Miku Code (Miku Code Fusion Light)" +source: + marketplace_id: "biglexj.miku-code" + version: "1.3.6" + installs: 2164 + rating: 5 + ratings: 1 + author: "biglexj" + repo: "https://github.com/biglexj/miku-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=biglexj.miku-code" + formats: null +colors: + bg: "#FFFFFF" + fg: "#0891B2" + black: "#24292F" + red: "#DC2626" + green: "#059669" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#9333EA" + cyan: "#0891B2" + white: "#D1D5DB" + brightBlack: "#6E7781" + brightRed: "#DC2626" + brightGreen: "#10B981" + brightYellow: "#FACC15" + brightBlue: "#2563EB" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 63.8 + black: 101.5 + red: 71.6 + green: 64.6 + yellow: 36.4 + blue: 63.9 + magenta: 75.6 + cyan: 63.8 + white: 22.4 + brightBlack: 71.6 + brightRed: 71.6 + brightGreen: 49.1 + brightYellow: 24.4 + brightBlue: 74.9 + brightMagenta: 66.2 + brightCyan: 47.1 + brightWhite: 0 diff --git a/themes/miku-code--miku-code-light.yaml b/themes/miku-code--miku-code-light.yaml new file mode 100644 index 00000000..0fe97ced --- /dev/null +++ b/themes/miku-code--miku-code-light.yaml @@ -0,0 +1,53 @@ +name: "Miku Code (Miku Code Light)" +source: + marketplace_id: "biglexj.miku-code" + version: "1.3.6" + installs: 2164 + rating: 5 + ratings: 1 + author: "biglexj" + repo: "https://github.com/biglexj/miku-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=biglexj.miku-code" + formats: null +colors: + bg: "#FFFFFF" + fg: "#29CCD0" + black: "#24292F" + red: "#DC2626" + green: "#059669" + yellow: "#EAB308" + blue: "#3B82F6" + magenta: "#9333EA" + cyan: "#1C868A" + white: "#D1D5DB" + brightBlack: "#6E7781" + brightRed: "#DC2626" + brightGreen: "#10B981" + brightYellow: "#FACC15" + brightBlue: "#2563EB" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 37.6 + black: 101.5 + red: 71.6 + green: 64.6 + yellow: 36.4 + blue: 63.9 + magenta: 75.6 + cyan: 69.7 + white: 22.4 + brightBlack: 71.6 + brightRed: 71.6 + brightGreen: 49.1 + brightYellow: 24.4 + brightBlue: 74.9 + brightMagenta: 66.2 + brightCyan: 47.1 + brightWhite: 0 diff --git a/themes/miku-code--miku-code.yaml b/themes/miku-code--miku-code.yaml new file mode 100644 index 00000000..1e6083d7 --- /dev/null +++ b/themes/miku-code--miku-code.yaml @@ -0,0 +1,53 @@ +name: "Miku Code (Miku Code)" +source: + marketplace_id: "biglexj.miku-code" + version: "1.3.6" + installs: 2164 + rating: 5 + ratings: 1 + author: "biglexj" + repo: "https://github.com/biglexj/miku-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=biglexj.miku-code" + formats: null +colors: + bg: "#1A1B26" + fg: "#7DCFFF" + black: "#A9B1D6" + red: "#F2074D" + green: "#00D4AA" + yellow: "#E5E510" + blue: "#8EAEF2" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BEBEBE" + brightBlack: "#D8DDF5" + brightRed: "#FF0F6F" + brightGreen: "#00FFCC" + brightYellow: "#F5F543" + brightBlue: "#6596FF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FBFDFF" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 70.5 + black: 59.3 + red: 33.3 + green: 65.2 + yellow: 85.1 + blue: 57.1 + magenta: 29.2 + cyan: 47 + white: 65.9 + brightBlack: 85 + brightRed: 37.3 + brightGreen: 88.3 + brightYellow: 95.1 + brightBlue: 45.8 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 104.8 diff --git a/themes/miku-theme.yaml b/themes/miku-theme.yaml new file mode 100644 index 00000000..9898c5bc --- /dev/null +++ b/themes/miku-theme.yaml @@ -0,0 +1,53 @@ +name: "Miku Theme" +source: + marketplace_id: "wingyeung0317.miku-theme" + version: "0.0.1" + installs: 5695 + rating: 5 + ratings: 1 + author: "Yeung Wing" + repo: "https://github.com/wingyeung0317/VSCodeMikuTheme" + url: "https://marketplace.visualstudio.com/items?itemName=wingyeung0317.miku-theme" + formats: null +colors: + bg: "#0D2426" + fg: "#B4B4B4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 203 + pair: null + contrast: + fg: 59.5 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.7 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/militry-green.yaml b/themes/militry-green.yaml new file mode 100644 index 00000000..04f6f916 --- /dev/null +++ b/themes/militry-green.yaml @@ -0,0 +1,53 @@ +name: "Militry Green" +source: + marketplace_id: "xynny.militrygreen" + version: "0.0.1" + installs: 727 + rating: 5 + ratings: 1 + author: "xynny" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=xynny.militrygreen" + formats: null +colors: + bg: "#20261E" + fg: "#B8C9B6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 138 + pair: null + contrast: + fg: 68.3 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.8 + blue: 25.6 + magenta: 28 + cyan: 45.8 + white: 88.2 + brightBlack: 20.2 + brightRed: 36.8 + brightGreen: 61.7 + brightYellow: 93.8 + brightBlue: 38.2 + brightMagenta: 43.6 + brightCyan: 53.6 + brightWhite: 88.2 diff --git a/themes/milky-way.yaml b/themes/milky-way.yaml new file mode 100644 index 00000000..867a1e0c --- /dev/null +++ b/themes/milky-way.yaml @@ -0,0 +1,53 @@ +name: "Milky Way" +source: + marketplace_id: "motrdevua.milkyway" + version: "1.0.0" + installs: 846 + rating: 0 + ratings: 0 + author: "motrdevua" + repo: "https://github.com/motrdevua/MilkyWay" + url: "https://marketplace.visualstudio.com/items?itemName=motrdevua.milkyway" + formats: null +colors: + bg: "#282C34" + fg: "#CBCDD2" + black: "#333842" + red: "#EB365D" + green: "#93EF1F" + yellow: "#FFCA2A" + blue: "#42A5F5" + magenta: "#EB365D" + cyan: "#42A5F5" + white: "#CBCDD2" + brightBlack: "#333842" + brightRed: "#EB365D" + brightGreen: "#93EF1F" + brightYellow: "#FFCA2A" + brightBlue: "#42A5F5" + brightMagenta: "#93EF1F" + brightCyan: "#42A5F5" + brightWhite: "#CBCDD2" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 72 + black: 0 + red: 31.5 + green: 78.6 + yellow: 74.6 + blue: 46.5 + magenta: 31.5 + cyan: 46.5 + white: 72 + brightBlack: 0 + brightRed: 31.5 + brightGreen: 78.6 + brightYellow: 74.6 + brightBlue: 46.5 + brightMagenta: 78.6 + brightCyan: 46.5 + brightWhite: 72 diff --git a/themes/min-gruvbox-theme.yaml b/themes/min-gruvbox-theme.yaml new file mode 100644 index 00000000..540ee1ec --- /dev/null +++ b/themes/min-gruvbox-theme.yaml @@ -0,0 +1,53 @@ +name: "Min Gruvbox Theme" +source: + marketplace_id: "cnmorocho.min-gruvbox-theme" + version: "0.0.10" + installs: 3534 + rating: 5 + ratings: 1 + author: "Carlos Nahuel Morocho" + repo: "https://github.com/cnmorocho/min-gruvbox-theme" + url: "https://marketplace.visualstudio.com/items?itemName=cnmorocho.min-gruvbox-theme" + formats: null +colors: + bg: "#1A1A1A" + fg: "#FBF1C7" + black: "#2A2A2A" + red: "#EA6962" + green: "#A9B665" + yellow: "#D8A657" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#89B482" + white: "#D4BE98" + brightBlack: "#2A2A2A" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#D8A657" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#D4BE98" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97 + black: 0 + red: 42.6 + green: 57.7 + yellow: 57.5 + blue: 51.9 + magenta: 47.6 + cyan: 54.3 + white: 67.7 + brightBlack: 0 + brightRed: 42.6 + brightGreen: 57.7 + brightYellow: 57.5 + brightBlue: 51.9 + brightMagenta: 47.6 + brightCyan: 54.3 + brightWhite: 67.7 diff --git a/themes/min-theme.yaml b/themes/min-theme.yaml new file mode 100644 index 00000000..410abbb8 --- /dev/null +++ b/themes/min-theme.yaml @@ -0,0 +1,53 @@ +name: "Min Theme" +source: + marketplace_id: "miguelsolorio.min-theme" + version: "1.5.0" + installs: 575729 + rating: 4.86 + ratings: 29 + author: "Miguel Solorio" + repo: "https://github.com/misolori/min-theme" + url: "https://marketplace.visualstudio.com/items?itemName=miguelsolorio.min-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#212121" + black: "#333333" + red: "#D32F2F" + green: "#77CC00" + yellow: "#F29718" + blue: "#E0E0E0" + magenta: "#9966CC" + cyan: "#4DBF99" + white: "#C7C7C7" + brightBlack: "#A1A1A1" + brightRed: "#D6656A" + brightGreen: "#A3D900" + brightYellow: "#E7C547" + brightBlue: "#6871FF" + brightMagenta: "#A37ACC" + brightCyan: "#57D9AD" + brightWhite: "#7E7E7E" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 103.1 + black: 98.7 + red: 72.8 + green: 38.7 + yellow: 44.5 + blue: 15.8 + magenta: 67.9 + cyan: 44.6 + white: 30.1 + brightBlack: 50.5 + brightRed: 62.5 + brightGreen: 29.5 + brightYellow: 29.7 + brightBlue: 66 + brightMagenta: 61.1 + brightCyan: 31.9 + brightWhite: 67.8 diff --git a/themes/minimal--minimal.yaml b/themes/minimal--minimal.yaml new file mode 100644 index 00000000..5fe9879c --- /dev/null +++ b/themes/minimal--minimal.yaml @@ -0,0 +1,53 @@ +name: "Minimal (Minimal)" +source: + marketplace_id: "YesCode.my-minimal-theme" + version: "0.0.22" + installs: 6445 + rating: 5 + ratings: 3 + author: "YesCode" + repo: "https://github.com/yesomac/MinimalTheme" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.my-minimal-theme" + formats: null +colors: + bg: "#191A1A" + fg: "#F9FFD5" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#DFF84F" + brightYellow: "#E7F0FF" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.9 + black: 0 + red: 41.7 + green: 60.7 + yellow: 72.8 + blue: 47.2 + magenta: 19.2 + cyan: 49.1 + white: 46.9 + brightBlack: 18.3 + brightRed: 41.7 + brightGreen: 93.9 + brightYellow: 96.3 + brightBlue: 18.4 + brightMagenta: 19.2 + brightCyan: 49.1 + brightWhite: 98.6 diff --git a/themes/minimal--shades.yaml b/themes/minimal--shades.yaml new file mode 100644 index 00000000..6807ca59 --- /dev/null +++ b/themes/minimal--shades.yaml @@ -0,0 +1,53 @@ +name: "Minimal (Shades)" +source: + marketplace_id: "YesCode.my-minimal-theme" + version: "0.0.22" + installs: 6445 + rating: 5 + ratings: 3 + author: "YesCode" + repo: "https://github.com/yesomac/MinimalTheme" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.my-minimal-theme" + formats: null +colors: + bg: "#F9F8F9" + fg: "#00161A" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#0687FF" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101 + black: 99.3 + red: 54.7 + green: 36.3 + yellow: 24.8 + blue: 49.3 + magenta: 77.3 + cyan: 47.4 + white: 49.6 + brightBlack: 78.3 + brightRed: 54.7 + brightGreen: 58.2 + brightYellow: 18.5 + brightBlue: 78.2 + brightMagenta: 77.3 + brightCyan: 47.4 + brightWhite: 0 diff --git a/themes/minimal--themeframek.yaml b/themes/minimal--themeframek.yaml new file mode 100644 index 00000000..636fb049 --- /dev/null +++ b/themes/minimal--themeframek.yaml @@ -0,0 +1,53 @@ +name: "Minimal (ThemeFramek)" +source: + marketplace_id: "YesCode.my-minimal-theme" + version: "0.0.22" + installs: 6445 + rating: 5 + ratings: 3 + author: "YesCode" + repo: "https://github.com/yesomac/MinimalTheme" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.my-minimal-theme" + formats: null +colors: + bg: "#121212" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#FFF2B7" + brightYellow: "#E7F0FF" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105 + black: 0 + red: 42.4 + green: 61.4 + yellow: 73.5 + blue: 47.9 + magenta: 19.9 + cyan: 49.9 + white: 47.7 + brightBlack: 19 + brightRed: 42.4 + brightGreen: 98.3 + brightYellow: 97 + brightBlue: 19.2 + brightMagenta: 19.9 + brightCyan: 49.9 + brightWhite: 99.3 diff --git a/themes/minimal-44--minimal-44-pro.yaml b/themes/minimal-44--minimal-44-pro.yaml new file mode 100644 index 00000000..64ab1dea --- /dev/null +++ b/themes/minimal-44--minimal-44-pro.yaml @@ -0,0 +1,53 @@ +name: "Minimal-44 (Minimal-44-pro)" +source: + marketplace_id: "Yazeed.minimal-44" + version: "0.0.4" + installs: 322 + rating: 0 + ratings: 0 + author: "Yazeed" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Yazeed.minimal-44" + formats: null +colors: + bg: "#1D1D1D" + fg: "#DAD9E2" + black: "#000000" + red: "#E8627D" + green: "#8CD782" + yellow: "#CFB577" + blue: "#81BCDC" + magenta: "#EB89D2" + cyan: "#96A8E6" + white: "#DBB47E" + brightBlack: "#DBA578" + brightRed: "#DE6B74" + brightGreen: "#9CD089" + brightYellow: "#DDBB6B" + brightBlue: "#8DD0DD" + brightMagenta: "#DF8BBF" + brightCyan: "#7AC068" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 82.4 + black: 0 + red: 41 + green: 69.9 + yellow: 62.1 + blue: 60.3 + magenta: 54.9 + cyan: 54.6 + white: 63.6 + brightBlack: 57.9 + brightRed: 40.7 + brightGreen: 68.2 + brightYellow: 66.3 + brightBlue: 70.1 + brightMagenta: 52.4 + brightCyan: 57.4 + brightWhite: 98.2 diff --git a/themes/minimal-44--minimal-44.yaml b/themes/minimal-44--minimal-44.yaml new file mode 100644 index 00000000..d2cefa0b --- /dev/null +++ b/themes/minimal-44--minimal-44.yaml @@ -0,0 +1,53 @@ +name: "Minimal-44 (Minimal-44)" +source: + marketplace_id: "Yazeed.minimal-44" + version: "0.0.4" + installs: 322 + rating: 0 + ratings: 0 + author: "Yazeed" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Yazeed.minimal-44" + formats: null +colors: + bg: "#16181F" + fg: "#B9C4D1" + black: "#1D2021" + red: "#E6646F" + green: "#8EDC88" + yellow: "#D7B970" + blue: "#8FAFDF" + magenta: "#E291C3" + cyan: "#7FA8E2" + white: "#DCB885" + brightBlack: "#E9B992" + brightRed: "#C56255" + brightGreen: "#8EC878" + brightYellow: "#C5A14D" + brightBlue: "#71B8C6" + brightMagenta: "#D88BBA" + brightCyan: "#A3DBC6" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 273 + pair: null + contrast: + fg: 69.1 + black: 0 + red: 41.2 + green: 73.2 + yellow: 65.3 + blue: 56.8 + magenta: 55.5 + cyan: 52.9 + white: 66.1 + brightBlack: 68.9 + brightRed: 33.7 + brightGreen: 63.5 + brightYellow: 52.8 + brightBlue: 57 + brightMagenta: 51.5 + brightCyan: 76.5 + brightWhite: 98.7 diff --git a/themes/minimal-monochrome--minimal-monochrome-dark.yaml b/themes/minimal-monochrome--minimal-monochrome-dark.yaml new file mode 100644 index 00000000..c46f9d2a --- /dev/null +++ b/themes/minimal-monochrome--minimal-monochrome-dark.yaml @@ -0,0 +1,53 @@ +name: "Minimal Monochrome (Minimal Monochrome Dark)" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.1" + installs: 170 + rating: 0 + ratings: 0 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" + formats: null +colors: + bg: "#121212" + fg: "#D4D4D4" + black: "#1A1A1A" + red: "#F5A3A7" + green: "#8BCFAC" + yellow: "#F0C674" + blue: "#89B4D4" + magenta: "#C9A5E0" + cyan: "#7DD4D0" + white: "#D0D0D0" + brightBlack: "#646464" + brightRed: "#FFB8BA" + brightGreen: "#A8E6C3" + brightYellow: "#FFE082" + brightBlue: "#A8D1F0" + brightMagenta: "#D9B8F0" + brightCyan: "#9DE5E0" + brightWhite: "#FCFCFC" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 79.9 + black: 0 + red: 64.1 + green: 68.5 + yellow: 75 + blue: 58.3 + magenta: 60.3 + cyan: 71.3 + white: 77.5 + brightBlack: 21.6 + brightRed: 74.1 + brightGreen: 82.6 + brightYellow: 88.8 + brightBlue: 75 + brightMagenta: 70.5 + brightCyan: 82.4 + brightWhite: 105.3 diff --git a/themes/minimal-monochrome--minimal-monochrome-ink-dark.yaml b/themes/minimal-monochrome--minimal-monochrome-ink-dark.yaml new file mode 100644 index 00000000..632419ed --- /dev/null +++ b/themes/minimal-monochrome--minimal-monochrome-ink-dark.yaml @@ -0,0 +1,53 @@ +name: "Minimal Monochrome (Minimal Monochrome Ink Dark)" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.1" + installs: 170 + rating: 0 + ratings: 0 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" + formats: null +colors: + bg: "#1C1E22" + fg: "#D4D8DE" + black: "#1C1E22" + red: "#F5A3A7" + green: "#8BCFAC" + yellow: "#F0C674" + blue: "#89B4D4" + magenta: "#C9A5E0" + cyan: "#7DD4D0" + white: "#D0D0D0" + brightBlack: "#5A5F68" + brightRed: "#FFB8BA" + brightGreen: "#A8E6C3" + brightYellow: "#FFE082" + brightBlue: "#A8D1F0" + brightMagenta: "#D9B8F0" + brightCyan: "#9DE5E0" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 80.9 + black: 0 + red: 62.8 + green: 67.3 + yellow: 73.8 + blue: 57.1 + magenta: 59.1 + cyan: 70 + white: 76.2 + brightBlack: 18.1 + brightRed: 72.8 + brightGreen: 81.3 + brightYellow: 87.5 + brightBlue: 73.7 + brightMagenta: 69.3 + brightCyan: 81.1 + brightWhite: 103.3 diff --git a/themes/minimal-monochrome--minimal-monochrome-ink-light.yaml b/themes/minimal-monochrome--minimal-monochrome-ink-light.yaml new file mode 100644 index 00000000..29ed137b --- /dev/null +++ b/themes/minimal-monochrome--minimal-monochrome-ink-light.yaml @@ -0,0 +1,53 @@ +name: "Minimal Monochrome (Minimal Monochrome Ink Light)" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.1" + installs: 170 + rating: 0 + ratings: 0 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" + formats: null +colors: + bg: "#FAFBFC" + fg: "#2C3038" + black: "#1A1A1A" + red: "#C97A7D" + green: "#5A9E6F" + yellow: "#B8893A" + blue: "#5A8FB8" + magenta: "#8B6BA8" + cyan: "#4A9EA8" + white: "#D0D0D0" + brightBlack: "#7A808A" + brightRed: "#B56B6B" + brightGreen: "#4D8B5E" + brightYellow: "#A67830" + brightBlue: "#4A7FA8" + brightMagenta: "#7D5D9A" + brightCyan: "#3D8F99" + brightWhite: "#FAFBFC" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 97.1 + black: 101.8 + red: 56.5 + green: 56.6 + yellow: 55.9 + blue: 59.6 + magenta: 68 + cyan: 55.4 + white: 22.5 + brightBlack: 64.6 + brightRed: 64.4 + brightGreen: 65.2 + brightYellow: 64 + brightBlue: 67.1 + brightMagenta: 74.2 + brightCyan: 62.4 + brightWhite: 0 diff --git a/themes/minimal-monochrome--minimal-monochrome-light.yaml b/themes/minimal-monochrome--minimal-monochrome-light.yaml new file mode 100644 index 00000000..0df7e4bc --- /dev/null +++ b/themes/minimal-monochrome--minimal-monochrome-light.yaml @@ -0,0 +1,53 @@ +name: "Minimal Monochrome (Minimal Monochrome Light)" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.1" + installs: 170 + rating: 0 + ratings: 0 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" + formats: null +colors: + bg: "#FCFCFC" + fg: "#000000" + black: "#1A1A1A" + red: "#C97A7D" + green: "#5A9E6F" + yellow: "#B8893A" + blue: "#5A8FB8" + magenta: "#8B6BA8" + cyan: "#4A9EA8" + white: "#D0D0D0" + brightBlack: "#646464" + brightRed: "#B56B6B" + brightGreen: "#4D8B5E" + brightYellow: "#A67830" + brightBlue: "#4A7FA8" + brightMagenta: "#7D5D9A" + brightCyan: "#3D8F99" + brightWhite: "#FCFCFC" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 104.2 + black: 102.5 + red: 57.2 + green: 57.3 + yellow: 56.6 + blue: 60.3 + magenta: 68.7 + cyan: 56.1 + white: 23.2 + brightBlack: 77.8 + brightRed: 65.1 + brightGreen: 65.9 + brightYellow: 64.7 + brightBlue: 67.8 + brightMagenta: 74.9 + brightCyan: 63.1 + brightWhite: 0 diff --git a/themes/minimal-monochrome--minimal-monochrome-pastel-dawn.yaml b/themes/minimal-monochrome--minimal-monochrome-pastel-dawn.yaml new file mode 100644 index 00000000..dbe46878 --- /dev/null +++ b/themes/minimal-monochrome--minimal-monochrome-pastel-dawn.yaml @@ -0,0 +1,53 @@ +name: "Minimal Monochrome (Minimal Monochrome Pastel Dawn)" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.1" + installs: 170 + rating: 0 + ratings: 0 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" + formats: null +colors: + bg: "#FAF4ED" + fg: "#575279" + black: "#1A1A1A" + red: "#C97A7D" + green: "#5A9E6F" + yellow: "#B8893A" + blue: "#5A8FB8" + magenta: "#8B6BA8" + cyan: "#4A9EA8" + white: "#D9D3CB" + brightBlack: "#797593" + brightRed: "#B56B6B" + brightGreen: "#4D8B5E" + brightYellow: "#A67830" + brightBlue: "#4A7FA8" + brightMagenta: "#7D5D9A" + brightCyan: "#3D8F99" + brightWhite: "#FAF4ED" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 79.1 + black: 98.2 + red: 52.9 + green: 53 + yellow: 52.3 + blue: 56 + magenta: 64.4 + cyan: 51.8 + white: 16.8 + brightBlack: 64.4 + brightRed: 60.8 + brightGreen: 61.6 + brightYellow: 60.4 + brightBlue: 63.5 + brightMagenta: 70.6 + brightCyan: 58.8 + brightWhite: 0 diff --git a/themes/minimal-monochrome--minimal-monochrome-pastel-light.yaml b/themes/minimal-monochrome--minimal-monochrome-pastel-light.yaml new file mode 100644 index 00000000..12cd97da --- /dev/null +++ b/themes/minimal-monochrome--minimal-monochrome-pastel-light.yaml @@ -0,0 +1,53 @@ +name: "Minimal Monochrome (Minimal Monochrome Pastel Light)" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.1" + installs: 170 + rating: 0 + ratings: 0 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" + formats: null +colors: + bg: "#F8F6F2" + fg: "#575279" + black: "#1A1A1A" + red: "#C97A7D" + green: "#5A9E6F" + yellow: "#B8893A" + blue: "#5A8FB8" + magenta: "#8B6BA8" + cyan: "#4A9EA8" + white: "#D5D2CC" + brightBlack: "#797593" + brightRed: "#B56B6B" + brightGreen: "#4D8B5E" + brightYellow: "#A67830" + brightBlue: "#4A7FA8" + brightMagenta: "#7D5D9A" + brightCyan: "#3D8F99" + brightWhite: "#F8F6F2" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 79.9 + black: 99 + red: 53.7 + green: 53.8 + yellow: 53.1 + blue: 56.8 + magenta: 65.2 + cyan: 52.6 + white: 18.5 + brightBlack: 65.2 + brightRed: 61.6 + brightGreen: 62.4 + brightYellow: 61.2 + brightBlue: 64.3 + brightMagenta: 71.4 + brightCyan: 59.6 + brightWhite: 0 diff --git a/themes/minimal-monochrome--minimal-monochrome-slate-dark.yaml b/themes/minimal-monochrome--minimal-monochrome-slate-dark.yaml new file mode 100644 index 00000000..5402de27 --- /dev/null +++ b/themes/minimal-monochrome--minimal-monochrome-slate-dark.yaml @@ -0,0 +1,53 @@ +name: "Minimal Monochrome (Minimal Monochrome Slate Dark)" +source: + marketplace_id: "arihantverma.minimal-monochrome-vscode-theme" + version: "0.3.1" + installs: 170 + rating: 0 + ratings: 0 + author: "Arihant Verma" + repo: "https://github.com/arihantverma/minimal-monochrome-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=arihantverma.minimal-monochrome-vscode-theme" + formats: null +colors: + bg: "#121212" + fg: "#EEEEEE" + black: "#1A1A1A" + red: "#F5A3A7" + green: "#8BCFAC" + yellow: "#F0C674" + blue: "#89B4D4" + magenta: "#C9A5E0" + cyan: "#7DD4D0" + white: "#D0D0D0" + brightBlack: "#646464" + brightRed: "#FFB8BA" + brightGreen: "#A8E6C3" + brightYellow: "#FFE082" + brightBlue: "#A8D1F0" + brightMagenta: "#D9B8F0" + brightCyan: "#9DE5E0" + brightWhite: "#FCFCFC" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 96.2 + black: 0 + red: 64.1 + green: 68.5 + yellow: 75 + blue: 58.3 + magenta: 60.3 + cyan: 71.3 + white: 77.5 + brightBlack: 21.6 + brightRed: 74.1 + brightGreen: 82.6 + brightYellow: 88.8 + brightBlue: 75 + brightMagenta: 70.5 + brightCyan: 82.4 + brightWhite: 105.3 diff --git a/themes/minokai.yaml b/themes/minokai.yaml new file mode 100644 index 00000000..0f61e6c5 --- /dev/null +++ b/themes/minokai.yaml @@ -0,0 +1,53 @@ +name: "Minokai" +source: + marketplace_id: "gabrielvictordev.minokai" + version: "0.1.0" + installs: 77 + rating: 5 + ratings: 1 + author: "gabrielvictordev" + repo: "https://github.com/gabrielvictorjs/minokai" + url: "https://marketplace.visualstudio.com/items?itemName=gabrielvictordev.minokai" + formats: null +colors: + bg: "#191C25" + fg: "#A6ACCD" + black: "#2E313D" + red: "#CF8164" + green: "#76A065" + yellow: "#AB924C" + blue: "#8296B0" + magenta: "#A18DAF" + cyan: "#659EA2" + white: "#B5B4C9" + brightBlack: "#5B5F71" + brightRed: "#FE9F7C" + brightGreen: "#92C47E" + brightYellow: "#D2B45F" + brightBlue: "#A0B9D8" + brightMagenta: "#C6AED7" + brightCyan: "#7DC2C7" + brightWhite: "#F0ECFE" +meta: + mode: "dark" + accent: "orange" + hue: 271 + pair: null + contrast: + fg: 56.5 + black: 0 + red: 43.6 + green: 43.5 + yellow: 43.3 + blue: 43.1 + magenta: 43.2 + cyan: 43.4 + white: 61.2 + brightBlack: 18.8 + brightRed: 62.1 + brightGreen: 61.7 + brightYellow: 61.8 + brightBlue: 61.7 + brightMagenta: 61.7 + brightCyan: 61.7 + brightWhite: 95.3 diff --git a/themes/mint-theme--mint-dark.yaml b/themes/mint-theme--mint-dark.yaml new file mode 100644 index 00000000..b6f15300 --- /dev/null +++ b/themes/mint-theme--mint-dark.yaml @@ -0,0 +1,53 @@ +name: "Mint Theme (Mint Dark)" +source: + marketplace_id: "marcbruederlin.mint-theme" + version: "0.1.2" + installs: 9172 + rating: 5 + ratings: 2 + author: "Marc Brüderlin" + repo: "https://github.com/marcbruederlin/vscode-mint-theme" + url: "https://marketplace.visualstudio.com/items?itemName=marcbruederlin.mint-theme" + formats: null +colors: + bg: "#060606" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.8 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/mio.yaml b/themes/mio.yaml new file mode 100644 index 00000000..6dcca776 --- /dev/null +++ b/themes/mio.yaml @@ -0,0 +1,53 @@ +name: "mio" +source: + marketplace_id: "ene-ne.mio" + version: "0.1.0" + installs: 101 + rating: 0 + ratings: 0 + author: "ene-ne" + repo: "https://github.com/ene-ne/mio" + url: "https://marketplace.visualstudio.com/items?itemName=ene-ne.mio" + formats: null +colors: + bg: "#FFFAFA" + fg: "#250E07" + black: "#D8B8B3" + red: "#873E40" + green: "#839A53" + yellow: "#D4A520" + blue: "#A6B6CE" + magenta: "#D68482" + cyan: "#89BEB7" + white: "#ECC3C2" + brightBlack: "#F3EAE9" + brightRed: "#832426" + brightGreen: "#6F873E" + brightYellow: "#C39104" + brightBlue: "#7B91B3" + brightMagenta: "#C97270" + brightCyan: "#63A098" + brightWhite: "#F2CC60" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 102.5 + black: 32.1 + red: 83.3 + green: 55.9 + yellow: 42.4 + blue: 37.8 + magenta: 51.4 + cyan: 38.2 + white: 24.6 + brightBlack: 0 + brightRed: 88.2 + brightGreen: 65.1 + brightYellow: 52 + brightBlue: 56.9 + brightMagenta: 59.2 + brightCyan: 54.2 + brightWhite: 22.7 diff --git a/themes/mir2-theme--themer-dark.yaml b/themes/mir2-theme--themer-dark.yaml new file mode 100644 index 00000000..c4900af1 --- /dev/null +++ b/themes/mir2-theme--themer-dark.yaml @@ -0,0 +1,53 @@ +name: "Mir2 Theme (Themer Dark)" +source: + marketplace_id: "XadillaX.mir2" + version: "1.0.0" + installs: 249 + rating: 0 + ratings: 0 + author: "XadillaX" + repo: "https://github.com/XadillaX/vscode-mir2-colorscheme" + url: "https://marketplace.visualstudio.com/items?itemName=XadillaX.mir2" + formats: null +colors: + bg: "#1D1916" + fg: "#FAFAF9" + black: "#1D1916" + red: "#B09872" + green: "#CDB294" + yellow: "#E0CDAB" + blue: "#E5685D" + magenta: "#9CEBAA" + cyan: "#A29D94" + white: "#DADAD9" + brightBlack: "#3D3936" + brightRed: "#655D59" + brightGreen: "#A29D94" + brightYellow: "#E0CDAB" + brightBlue: "#E5685D" + brightMagenta: "#9CEBAA" + brightCyan: "#A29D94" + brightWhite: "#FAFAF9" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.2 + black: 0 + red: 47.1 + green: 61.8 + yellow: 76.2 + blue: 41.3 + magenta: 82.4 + cyan: 48.2 + white: 82.8 + brightBlack: 0 + brightRed: 18.6 + brightGreen: 48.2 + brightYellow: 76.2 + brightBlue: 41.3 + brightMagenta: 82.4 + brightCyan: 48.2 + brightWhite: 103.2 diff --git a/themes/mir2-theme--themer-light.yaml b/themes/mir2-theme--themer-light.yaml new file mode 100644 index 00000000..d3b2bdb2 --- /dev/null +++ b/themes/mir2-theme--themer-light.yaml @@ -0,0 +1,53 @@ +name: "Mir2 Theme (Themer Light)" +source: + marketplace_id: "XadillaX.mir2" + version: "1.0.0" + installs: 249 + rating: 0 + ratings: 0 + author: "XadillaX" + repo: "https://github.com/XadillaX/vscode-mir2-colorscheme" + url: "https://marketplace.visualstudio.com/items?itemName=XadillaX.mir2" + formats: null +colors: + bg: "#E0CDAB" + fg: "#1C1815" + black: "#E0CDAB" + red: "#B09872" + green: "#564932" + yellow: "#473023" + blue: "#9D1308" + magenta: "#DE640D" + cyan: "#9A602A" + white: "#38322A" + brightBlack: "#C4B396" + brightRed: "#655D59" + brightGreen: "#9A602A" + brightYellow: "#473023" + brightBlue: "#9D1308" + brightMagenta: "#DE640D" + brightCyan: "#9A602A" + brightWhite: "#1C1815" +meta: + mode: "light" + accent: "yellow" + hue: 82 + pair: null + contrast: + fg: 76.7 + black: 0 + red: 25.6 + green: 62.2 + yellow: 70.1 + blue: 58.9 + magenta: 34.4 + cyan: 47.4 + white: 70.9 + brightBlack: 12.2 + brightRed: 54.2 + brightGreen: 47.4 + brightYellow: 70.1 + brightBlue: 58.9 + brightMagenta: 34.4 + brightCyan: 47.4 + brightWhite: 76.7 diff --git a/themes/misty-blue--misty-blue.yaml b/themes/misty-blue--misty-blue.yaml new file mode 100644 index 00000000..bad25e2b --- /dev/null +++ b/themes/misty-blue--misty-blue.yaml @@ -0,0 +1,53 @@ +name: "Misty Blue (Misty Blue)" +source: + marketplace_id: "d33f2gmbrsg2mlf32hg27to6utjbqm52vmxqbxml6x25odnimcoq.MistyBlue" + version: "0.0.6" + installs: 2321 + rating: 5 + ratings: 3 + author: "Yashwanth Byalla" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=d33f2gmbrsg2mlf32hg27to6utjbqm52vmxqbxml6x25odnimcoq.MistyBlue" + formats: null +colors: + bg: "#0A0A0A" + fg: "#AF8BFF" + black: "#FFFFFF" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 50.5 + black: 107.7 + red: 39.5 + green: 87 + yellow: 92.2 + blue: 38.3 + magenta: 46.1 + cyan: 77 + white: 52.3 + brightBlack: 22.9 + brightRed: 48 + brightGreen: 93.4 + brightYellow: 80.3 + brightBlue: 72.4 + brightMagenta: 67.7 + brightCyan: 90.5 + brightWhite: 73.7 diff --git a/themes/mkanet-theme.yaml b/themes/mkanet-theme.yaml new file mode 100644 index 00000000..38c0e910 --- /dev/null +++ b/themes/mkanet-theme.yaml @@ -0,0 +1,53 @@ +name: "MKANET Theme" +source: + marketplace_id: "MKANET.mkanet-theme" + version: "0.1.9" + installs: 437 + rating: 0 + ratings: 0 + author: "Michael K. Avanessian" + repo: "https://github.com/mkanet/MKANET-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MKANET.mkanet-theme" + formats: null +colors: + bg: "#C0C0C0" + fg: "#464668" + black: "#000000" + red: "#C23621" + green: "#25BC24" + yellow: "#ADAD27" + blue: "#492EE1" + magenta: "#D338D3" + cyan: "#33BBC8" + white: "#CBCCCD" + brightBlack: "#818383" + brightRed: "#FC391F" + brightGreen: "#31E722" + brightYellow: "#EAEC23" + brightBlue: "#5833FF" + brightMagenta: "#F935F8" + brightCyan: "#14F0F0" + brightWhite: "#E9EBEB" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 54.5 + black: 69.9 + red: 39.8 + green: 12.8 + yellow: 10.8 + blue: 49 + magenta: 29.7 + cyan: 9 + white: 0 + brightBlack: 29.5 + brightRed: 26.2 + brightGreen: 0 + brightYellow: 20.8 + brightBlue: 43.8 + brightMagenta: 19.4 + brightCyan: 13.9 + brightWhite: 24.8 diff --git a/themes/modest-pink-theme.yaml b/themes/modest-pink-theme.yaml new file mode 100644 index 00000000..41020696 --- /dev/null +++ b/themes/modest-pink-theme.yaml @@ -0,0 +1,53 @@ +name: "Modest-Pink-Theme" +source: + marketplace_id: "GabbyCostlow.modest-pink-theme" + version: "0.0.1" + installs: 138 + rating: 0 + ratings: 0 + author: "Gabby Costlow" + repo: "https://github.com/gcostlow/Modest-Pink-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=GabbyCostlow.modest-pink-theme" + formats: null +colors: + bg: "#FFF5EC" + fg: "#000000" + black: "#000000" + red: "#CD5E5E" + green: "#7BC07B" + yellow: "#9DA106" + blue: "#8CA4BE" + magenta: "#A763A7" + cyan: "#57B2C9" + white: "#6D6D6D" + brightBlack: "#666666" + brightRed: "#DB6565" + brightGreen: "#4AE04A" + brightYellow: "#B5BA00" + brightBlue: "#69A7EA" + brightMagenta: "#BC64BC" + brightCyan: "#85D3E6" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 101 + black: 101 + red: 61 + green: 37.5 + yellow: 48.5 + blue: 45.2 + magenta: 63.8 + cyan: 42.7 + white: 70.6 + brightBlack: 73.7 + brightRed: 56.6 + brightGreen: 26.1 + brightYellow: 35.9 + brightBlue: 44.3 + brightMagenta: 59.1 + brightCyan: 24.8 + brightWhite: 43.4 diff --git a/themes/moegi-theme--moegi-black-zen.yaml b/themes/moegi-theme--moegi-black-zen.yaml new file mode 100644 index 00000000..36c4e43e --- /dev/null +++ b/themes/moegi-theme--moegi-black-zen.yaml @@ -0,0 +1,53 @@ +name: "Moegi Theme (Moegi Black Zen)" +source: + marketplace_id: "ddiu8081.moegi-theme" + version: "0.7.1" + installs: 36965 + rating: 5 + ratings: 22 + author: "Diu" + repo: "https://github.com/moegi-design/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" + formats: null +colors: + bg: "#0D0D0D" + fg: "#DDDDDD" + black: "#292929" + red: "#AD8686" + green: "#859891" + yellow: "#B3AA8F" + blue: "#7789A3" + magenta: "#8E7A93" + cyan: "#698A8E" + white: "#ADADAD" + brightBlack: "#393939" + brightRed: "#BD9696" + brightGreen: "#95A8A1" + brightYellow: "#C3BA9F" + brightBlue: "#8799B3" + brightMagenta: "#9E8AA3" + brightCyan: "#799A9E" + brightWhite: "#BDBDBD" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.8 + black: 0 + red: 42.1 + green: 44.2 + yellow: 56.1 + blue: 38.2 + magenta: 34.8 + cyan: 36.5 + white: 57.6 + brightBlack: 0 + brightRed: 50.3 + brightGreen: 52.6 + brightYellow: 65 + brightBlue: 46.2 + brightMagenta: 42.6 + brightCyan: 44.4 + brightWhite: 66.6 diff --git a/themes/moegi-theme--moegi-black.yaml b/themes/moegi-theme--moegi-black.yaml new file mode 100644 index 00000000..8250f0da --- /dev/null +++ b/themes/moegi-theme--moegi-black.yaml @@ -0,0 +1,53 @@ +name: "Moegi Theme (Moegi Black)" +source: + marketplace_id: "ddiu8081.moegi-theme" + version: "0.7.1" + installs: 36965 + rating: 5 + ratings: 22 + author: "Diu" + repo: "https://github.com/moegi-design/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" + formats: null +colors: + bg: "#0D0D0D" + fg: "#DDDDDD" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.8 + black: 0 + red: 45.6 + green: 53 + yellow: 74.6 + blue: 45.7 + magenta: 48.2 + cyan: 57.1 + white: 85.8 + brightBlack: 22.8 + brightRed: 53.4 + brightGreen: 61.6 + brightYellow: 84.3 + brightBlue: 54 + brightMagenta: 56.7 + brightCyan: 65.9 + brightWhite: 101.7 diff --git a/themes/moegi-theme--moegi-dark.yaml b/themes/moegi-theme--moegi-dark.yaml new file mode 100644 index 00000000..d918e4eb --- /dev/null +++ b/themes/moegi-theme--moegi-dark.yaml @@ -0,0 +1,53 @@ +name: "Moegi Theme (Moegi Dark)" +source: + marketplace_id: "ddiu8081.moegi-theme" + version: "0.7.1" + installs: 36965 + rating: 5 + ratings: 22 + author: "Diu" + repo: "https://github.com/moegi-design/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" + formats: null +colors: + bg: "#202020" + fg: "#DDDDDD" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.9 + black: 0 + red: 43.7 + green: 51.2 + yellow: 72.8 + blue: 43.8 + magenta: 46.4 + cyan: 55.3 + white: 83.9 + brightBlack: 20.9 + brightRed: 51.6 + brightGreen: 59.8 + brightYellow: 82.4 + brightBlue: 52.1 + brightMagenta: 54.9 + brightCyan: 64.1 + brightWhite: 99.8 diff --git a/themes/moegi-theme--moegi-dawn.yaml b/themes/moegi-theme--moegi-dawn.yaml new file mode 100644 index 00000000..968715ef --- /dev/null +++ b/themes/moegi-theme--moegi-dawn.yaml @@ -0,0 +1,53 @@ +name: "Moegi Theme (Moegi Dawn)" +source: + marketplace_id: "ddiu8081.moegi-theme" + version: "0.7.1" + installs: 36965 + rating: 5 + ratings: 22 + author: "Diu" + repo: "https://github.com/moegi-design/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" + formats: null +colors: + bg: "#FFF9F3" + fg: "#483F37" + black: "#685F57" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#E8DFD7" + brightBlack: "#988F87" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#FAF3ED" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 90.8 + black: 78.1 + red: 52.9 + green: 45.6 + yellow: 24.9 + blue: 52.8 + magenta: 50.3 + cyan: 41.7 + white: 12.5 + brightBlack: 55.8 + brightRed: 45.2 + brightGreen: 37.3 + brightYellow: 15.9 + brightBlue: 44.7 + brightMagenta: 42 + brightCyan: 33.2 + brightWhite: 0 diff --git a/themes/moegi-theme--moegi-iris.yaml b/themes/moegi-theme--moegi-iris.yaml new file mode 100644 index 00000000..9a0863db --- /dev/null +++ b/themes/moegi-theme--moegi-iris.yaml @@ -0,0 +1,53 @@ +name: "Moegi Theme (Moegi Iris)" +source: + marketplace_id: "ddiu8081.moegi-theme" + version: "0.7.1" + installs: 36965 + rating: 5 + ratings: 22 + author: "Diu" + repo: "https://github.com/moegi-design/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" + formats: null +colors: + bg: "#F5F2F9" + fg: "#433748" + black: "#635768" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#E8DFD7" + brightBlack: "#938798" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#EFEAF5" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 88.8 + black: 76.4 + red: 48.9 + green: 41.6 + yellow: 21 + blue: 48.8 + magenta: 46.3 + cyan: 37.7 + white: 8.5 + brightBlack: 54.6 + brightRed: 41.2 + brightGreen: 33.4 + brightYellow: 11.9 + brightBlue: 40.7 + brightMagenta: 38.1 + brightCyan: 29.2 + brightWhite: 0 diff --git a/themes/moegi-theme--moegi-light.yaml b/themes/moegi-theme--moegi-light.yaml new file mode 100644 index 00000000..66224590 --- /dev/null +++ b/themes/moegi-theme--moegi-light.yaml @@ -0,0 +1,53 @@ +name: "Moegi Theme (Moegi Light)" +source: + marketplace_id: "ddiu8081.moegi-theme" + version: "0.7.1" + installs: 36965 + rating: 5 + ratings: 22 + author: "Diu" + repo: "https://github.com/moegi-design/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#555555" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#888888" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#EEEEEE" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.7 + black: 85.9 + red: 56 + green: 48.7 + yellow: 28 + blue: 55.8 + magenta: 53.4 + cyan: 44.7 + white: 17.6 + brightBlack: 63.1 + brightRed: 48.3 + brightGreen: 40.4 + brightYellow: 19 + brightBlue: 47.8 + brightMagenta: 45.1 + brightCyan: 36.3 + brightWhite: 7.6 diff --git a/themes/moegi-theme--moegi-space.yaml b/themes/moegi-theme--moegi-space.yaml new file mode 100644 index 00000000..1f382905 --- /dev/null +++ b/themes/moegi-theme--moegi-space.yaml @@ -0,0 +1,53 @@ +name: "Moegi Theme (Moegi Space)" +source: + marketplace_id: "ddiu8081.moegi-theme" + version: "0.7.1" + installs: 36965 + rating: 5 + ratings: 22 + author: "Diu" + repo: "https://github.com/moegi-design/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ddiu8081.moegi-theme" + formats: null +colors: + bg: "#221E30" + fg: "#DDD8E4" + black: "#38324D" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#68627D" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: 294 + pair: null + contrast: + fg: 81.9 + black: 0 + red: 43.6 + green: 51.1 + yellow: 72.7 + blue: 43.7 + magenta: 46.3 + cyan: 55.2 + white: 83.8 + brightBlack: 20.6 + brightRed: 51.5 + brightGreen: 59.7 + brightYellow: 82.3 + brightBlue: 52 + brightMagenta: 54.8 + brightCyan: 64 + brightWhite: 99.7 diff --git a/themes/molokai-dark.yaml b/themes/molokai-dark.yaml new file mode 100644 index 00000000..f5f9eafe --- /dev/null +++ b/themes/molokai-dark.yaml @@ -0,0 +1,53 @@ +name: "Molokai Dark" +source: + marketplace_id: "gabrielcaussi.molokai-dark" + version: "1.1.0" + installs: 2809 + rating: 5 + ratings: 1 + author: "Gabriel Caussi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=gabrielcaussi.molokai-dark" + formats: null +colors: + bg: "#111111" + fg: "#F8F8F2" + black: "#000000" + red: "#FF0044" + green: "#82B414" + yellow: "#FD971F" + blue: "#266C98" + magenta: "#AC0CB1" + cyan: "#AE81FF" + white: "#CCCCCC" + brightBlack: "#808080" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E6DB74" + brightBlue: "#7070F0" + brightMagenta: "#D63AE1" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 102.5 + black: 0 + red: 37.4 + green: 53.1 + yellow: 59.2 + blue: 23 + magenta: 22.9 + cyan: 47 + white: 75.2 + brightBlack: 34.3 + brightRed: 37.8 + brightGreen: 77.5 + brightYellow: 82.6 + brightBlue: 34.3 + brightMagenta: 37.2 + brightCyan: 73.9 + brightWhite: 102.5 diff --git a/themes/monassa.yaml b/themes/monassa.yaml new file mode 100644 index 00000000..1291059d --- /dev/null +++ b/themes/monassa.yaml @@ -0,0 +1,53 @@ +name: "Monassa" +source: + marketplace_id: "Monassa.Monassa-theme" + version: "1.0.3" + installs: 428 + rating: 0 + ratings: 0 + author: "Monassa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Monassa.Monassa-theme" + formats: null +colors: + bg: "#282A36" + fg: "#FF79C6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + pair: null + contrast: + fg: 51.6 + black: 0 + red: 23.8 + green: 50 + yellow: 82.7 + blue: 24.5 + magenta: 26.8 + cyan: 44.6 + white: 87.1 + brightBlack: 19.1 + brightRed: 35.6 + brightGreen: 60.6 + brightYellow: 92.7 + brightBlue: 37 + brightMagenta: 42.4 + brightCyan: 52.4 + brightWhite: 87.1 diff --git a/themes/mono--mono-dark.yaml b/themes/mono--mono-dark.yaml new file mode 100644 index 00000000..37e18b28 --- /dev/null +++ b/themes/mono--mono-dark.yaml @@ -0,0 +1,53 @@ +name: "mono (mono dark)" +source: + marketplace_id: "StepanVanzuriak.mono" + version: "0.0.2" + installs: 57827 + rating: 5 + ratings: 2 + author: "Stepan Vanzuriak" + repo: "https://github.com/stepanvanzuriak/mono" + url: "https://marketplace.visualstudio.com/items?itemName=StepanVanzuriak.mono" + formats: null +colors: + bg: "#111111" + fg: "#BBBBBB" + black: "#BBBBBB" + red: "#8E8E8E" + green: "#999999" + yellow: "#777777" + blue: "#B0B0B0" + magenta: "#A4A4A4" + cyan: "#828282" + white: "#6C6C6C" + brightBlack: "#BBBBBB" + brightRed: "#8E8E8E" + brightGreen: "#999999" + brightYellow: "#777777" + brightBlue: "#B0B0B0" + brightMagenta: "#A4A4A4" + brightCyan: "#828282" + brightWhite: "#6C6C6C" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 65.2 + black: 65.2 + red: 41.1 + green: 46.7 + yellow: 30.1 + blue: 59 + magenta: 52.5 + cyan: 35.2 + white: 25.1 + brightBlack: 65.2 + brightRed: 41.1 + brightGreen: 46.7 + brightYellow: 30.1 + brightBlue: 59 + brightMagenta: 52.5 + brightCyan: 35.2 + brightWhite: 25.1 diff --git a/themes/mono--mono-white.yaml b/themes/mono--mono-white.yaml new file mode 100644 index 00000000..c2833aad --- /dev/null +++ b/themes/mono--mono-white.yaml @@ -0,0 +1,53 @@ +name: "mono (mono white)" +source: + marketplace_id: "StepanVanzuriak.mono" + version: "0.0.2" + installs: 57827 + rating: 5 + ratings: 2 + author: "Stepan Vanzuriak" + repo: "https://github.com/stepanvanzuriak/mono" + url: "https://marketplace.visualstudio.com/items?itemName=StepanVanzuriak.mono" + formats: null +colors: + bg: "#F0F0F0" + fg: "#0F0F0F" + black: "#0F0F0F" + red: "#4B4B4B" + green: "#3C3C3C" + yellow: "#696969" + blue: "#1E1E1E" + magenta: "#2D2D2D" + cyan: "#5A5A5A" + white: "#787878" + brightBlack: "#0F0F0F" + brightRed: "#4B4B4B" + brightGreen: "#3C3C3C" + brightYellow: "#696969" + brightBlue: "#1E1E1E" + brightMagenta: "#2D2D2D" + brightCyan: "#5A5A5A" + brightWhite: "#787878" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 96.6 + black: 96.6 + red: 81 + green: 86.6 + yellow: 68.5 + blue: 94.7 + magenta: 91.4 + cyan: 75 + white: 61.7 + brightBlack: 96.6 + brightRed: 81 + brightGreen: 86.6 + brightYellow: 68.5 + brightBlue: 94.7 + brightMagenta: 91.4 + brightCyan: 75 + brightWhite: 61.7 diff --git a/themes/mono-atom--mono-atom.yaml b/themes/mono-atom--mono-atom.yaml new file mode 100644 index 00000000..d2cb28ad --- /dev/null +++ b/themes/mono-atom--mono-atom.yaml @@ -0,0 +1,53 @@ +name: "Mono-Atom (Mono Atom)" +source: + marketplace_id: "Avetis.mono-atom" + version: "0.0.3" + installs: 14192 + rating: 4 + ratings: 2 + author: "Avetis" + repo: "https://github.com/AvetisDN/mono-atom-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.mono-atom" + formats: null +colors: + bg: "#222428" + fg: "#D4DAE1" + black: "#000000" + red: "#E62C2C" + green: "#0DBC79" + yellow: "#E6BD1E" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C6CCD1" + brightBlack: "#666666" + brightRed: "#F56464" + brightGreen: "#23D18B" + brightYellow: "#EADC6A" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 81 + black: 0 + red: 30.2 + green: 51.3 + yellow: 66.7 + blue: 25.7 + magenta: 28 + cyan: 45.8 + white: 72.4 + brightBlack: 20.3 + brightRed: 42.5 + brightGreen: 61.8 + brightYellow: 81.2 + brightBlue: 38.3 + brightMagenta: 43.7 + brightCyan: 53.7 + brightWhite: 105.2 diff --git a/themes/monochromator--monochromator-dark-plain.yaml b/themes/monochromator--monochromator-dark-plain.yaml new file mode 100644 index 00000000..1510e738 --- /dev/null +++ b/themes/monochromator--monochromator-dark-plain.yaml @@ -0,0 +1,53 @@ +name: "Monochromator (Monochromator Dark Plain)" +source: + marketplace_id: "beem.monochromator" + version: "0.31.1" + installs: 556 + rating: 5 + ratings: 1 + author: "Josias Beem" + repo: "https://codeberg.org/beem/monochromator" + url: "https://marketplace.visualstudio.com/items?itemName=beem.monochromator" + formats: null +colors: + bg: "#0F0F12" + fg: "#E7E7E7" + black: "#0F0F12" + red: "#FE303A" + green: "#30DF81" + yellow: "#FFF556" + blue: "#02A9FF" + magenta: "#D559FF" + cyan: "#00F3FF" + white: "#808086" + brightBlack: "#808086" + brightRed: "#FE303A" + brightGreen: "#30DF81" + brightYellow: "#FFF556" + brightBlue: "#02A9FF" + brightMagenta: "#D559FF" + brightCyan: "#00F3FF" + brightWhite: "#E7E7E7" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: "Monochromator (Monochromator Light Plain)" + contrast: + fg: 91.9 + black: 0 + red: 38.8 + green: 71 + yellow: 97.9 + blue: 51.7 + magenta: 43.8 + cyan: 85.6 + white: 34.6 + brightBlack: 34.6 + brightRed: 38.8 + brightGreen: 71 + brightYellow: 97.9 + brightBlue: 51.7 + brightMagenta: 43.8 + brightCyan: 85.6 + brightWhite: 91.9 diff --git a/themes/monochromator--monochromator-light-plain.yaml b/themes/monochromator--monochromator-light-plain.yaml new file mode 100644 index 00000000..d6f5bf9d --- /dev/null +++ b/themes/monochromator--monochromator-light-plain.yaml @@ -0,0 +1,53 @@ +name: "Monochromator (Monochromator Light Plain)" +source: + marketplace_id: "beem.monochromator" + version: "0.31.1" + installs: 556 + rating: 5 + ratings: 1 + author: "Josias Beem" + repo: "https://codeberg.org/beem/monochromator" + url: "https://marketplace.visualstudio.com/items?itemName=beem.monochromator" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#E01B24" + green: "#017F45" + yellow: "#927E00" + blue: "#2563EB" + magenta: "#CF207E" + cyan: "#01AACF" + white: "#76767C" + brightBlack: "#76767C" + brightRed: "#E01B24" + brightGreen: "#017F45" + brightYellow: "#927E00" + brightBlue: "#2563EB" + brightMagenta: "#CF207E" + brightCyan: "#01AACF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Monochromator (Monochromator Dark Plain)" + contrast: + fg: 106 + black: 106 + red: 71.2 + green: 74.5 + yellow: 67.4 + blue: 74.9 + magenta: 73.1 + cyan: 52.4 + white: 71.4 + brightBlack: 71.4 + brightRed: 71.2 + brightGreen: 74.5 + brightYellow: 67.4 + brightBlue: 74.9 + brightMagenta: 73.1 + brightCyan: 52.4 + brightWhite: 0 diff --git a/themes/monochrome--monochrome-dark-amplified.yaml b/themes/monochrome--monochrome-dark-amplified.yaml new file mode 100644 index 00000000..fe330613 --- /dev/null +++ b/themes/monochrome--monochrome-dark-amplified.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (monochrome-dark-amplified)" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47972 + rating: 4.38 + ratings: 8 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" + formats: null +colors: + bg: "#000000" + fg: "#B3B3B3" + black: "#000000" + red: "#808080" + green: "#4D4D4D" + yellow: "#B3B3B3" + blue: "#333333" + magenta: "#999999" + cyan: "#666666" + white: "#CCCCCC" + brightBlack: "#1A1A1A" + brightRed: "#808080" + brightGreen: "#4D4D4D" + brightYellow: "#B3B3B3" + brightBlue: "#333333" + brightMagenta: "#999999" + brightCyan: "#666666" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 61.2 + black: 0 + red: 34.8 + green: 13.1 + yellow: 61.2 + blue: 0 + magenta: 47.2 + cyan: 23 + white: 75.7 + brightBlack: 0 + brightRed: 34.8 + brightGreen: 13.1 + brightYellow: 61.2 + brightBlue: 0 + brightMagenta: 47.2 + brightCyan: 23 + brightWhite: 107.9 diff --git a/themes/monochrome--monochrome-dark-cool-gray.yaml b/themes/monochrome--monochrome-dark-cool-gray.yaml new file mode 100644 index 00000000..571f7c27 --- /dev/null +++ b/themes/monochrome--monochrome-dark-cool-gray.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (monochrome-dark-cool-gray)" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47972 + rating: 4.38 + ratings: 8 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" + formats: null +colors: + bg: "#111827" + fg: "#B4B7BC" + black: "#111827" + red: "#858991" + green: "#575C67" + yellow: "#B3B6BB" + blue: "#3F4551" + magenta: "#9CA0A6" + cyan: "#6E727C" + white: "#CBCDD1" + brightBlack: "#282F3C" + brightRed: "#858991" + brightGreen: "#575C67" + brightYellow: "#B3B6BB" + brightBlue: "#3F4551" + brightMagenta: "#9CA0A6" + brightCyan: "#6E727C" + brightWhite: "#F9FAFB" +meta: + mode: "dark" + accent: "purple" + hue: 265 + pair: null + contrast: + fg: 62.2 + black: 0 + red: 37.8 + green: 17.7 + yellow: 61.6 + blue: 8.9 + magenta: 49.5 + cyan: 27.1 + white: 75 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 17.7 + brightYellow: 61.6 + brightBlue: 8.9 + brightMagenta: 49.5 + brightCyan: 27.1 + brightWhite: 103.3 diff --git a/themes/monochrome--monochrome-dark-indigo.yaml b/themes/monochrome--monochrome-dark-indigo.yaml new file mode 100644 index 00000000..6b40e171 --- /dev/null +++ b/themes/monochrome--monochrome-dark-indigo.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (monochrome-dark-indigo)" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47972 + rating: 4.38 + ratings: 8 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" + formats: null +colors: + bg: "#0F172A" + fg: "#B3B6BD" + black: "#0F172A" + red: "#848993" + green: "#555B69" + yellow: "#B2B6BD" + blue: "#3E4454" + magenta: "#9B9FA8" + cyan: "#6C727E" + white: "#C9CDD2" + brightBlack: "#262E3F" + brightRed: "#848993" + brightGreen: "#555B69" + brightYellow: "#B2B6BD" + brightBlue: "#3E4454" + brightMagenta: "#9B9FA8" + brightCyan: "#6C727E" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "purple" + hue: 266 + pair: null + contrast: + fg: 61.7 + black: 0 + red: 37.9 + green: 17.3 + yellow: 61.6 + blue: 8.8 + magenta: 49.1 + cyan: 27 + white: 74.9 + brightBlack: 0 + brightRed: 37.9 + brightGreen: 17.3 + brightYellow: 61.6 + brightBlue: 8.8 + brightMagenta: 49.1 + brightCyan: 27 + brightWhite: 103.3 diff --git a/themes/monochrome--monochrome-dark-subtle.yaml b/themes/monochrome--monochrome-dark-subtle.yaml new file mode 100644 index 00000000..645a8b34 --- /dev/null +++ b/themes/monochrome--monochrome-dark-subtle.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (monochrome-dark-subtle)" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47972 + rating: 4.38 + ratings: 8 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" + formats: null +colors: + bg: "#0A1219" + fg: "#ACB1B6" + black: "#0A1219" + red: "#7E8489" + green: "#4F565C" + yellow: "#ACB1B6" + blue: "#383F46" + magenta: "#959A9F" + cyan: "#666D73" + white: "#C3C8CC" + brightBlack: "#21292F" + brightRed: "#7E8489" + brightGreen: "#4F565C" + brightYellow: "#ACB1B6" + brightBlue: "#383F46" + brightMagenta: "#959A9F" + brightCyan: "#666D73" + brightWhite: "#F1F5F9" +meta: + mode: "dark" + accent: "indigo" + hue: 246 + pair: null + contrast: + fg: 59.2 + black: 0 + red: 35.7 + green: 15.6 + yellow: 59.2 + blue: 7.3 + magenta: 46.8 + cyan: 25.1 + white: 72.3 + brightBlack: 0 + brightRed: 35.7 + brightGreen: 15.6 + brightYellow: 59.2 + brightBlue: 7.3 + brightMagenta: 46.8 + brightCyan: 25.1 + brightWhite: 100.4 diff --git a/themes/monochrome--monochrome-dark.yaml b/themes/monochrome--monochrome-dark.yaml new file mode 100644 index 00000000..ef8eac19 --- /dev/null +++ b/themes/monochrome--monochrome-dark.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (monochrome-dark)" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47972 + rating: 4.38 + ratings: 8 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" + formats: null +colors: + bg: "#101010" + fg: "#AAAAAA" + black: "#101010" + red: "#7E7E7E" + green: "#525252" + yellow: "#A9A9A9" + blue: "#3C3C3C" + magenta: "#939393" + cyan: "#686868" + white: "#BFBFBF" + brightBlack: "#262626" + brightRed: "#7E7E7E" + brightGreen: "#525252" + brightYellow: "#A9A9A9" + brightBlue: "#3C3C3C" + brightMagenta: "#939393" + brightCyan: "#686868" + brightWhite: "#EBEBEB" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 55.8 + black: 0 + red: 33.4 + green: 14.5 + yellow: 55.3 + blue: 0 + magenta: 43.7 + cyan: 23.5 + white: 67.6 + brightBlack: 0 + brightRed: 33.4 + brightGreen: 14.5 + brightYellow: 55.3 + brightBlue: 0 + brightMagenta: 43.7 + brightCyan: 23.5 + brightWhite: 94.4 diff --git a/themes/monochrome--monochrome-light-amplified.yaml b/themes/monochrome--monochrome-light-amplified.yaml new file mode 100644 index 00000000..17510580 --- /dev/null +++ b/themes/monochrome--monochrome-light-amplified.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (monochrome-light-amplified)" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47972 + rating: 4.38 + ratings: 8 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" + formats: null +colors: + bg: "#FFFFFF" + fg: "#4C4C4C" + black: "#FFFFFF" + red: "#808080" + green: "#B3B3B3" + yellow: "#4D4D4D" + blue: "#CCCCCC" + magenta: "#666666" + cyan: "#999999" + white: "#333333" + brightBlack: "#E6E6E6" + brightRed: "#808080" + brightGreen: "#B3B3B3" + brightYellow: "#4D4D4D" + brightBlue: "#CCCCCC" + brightMagenta: "#666666" + brightCyan: "#999999" + brightWhite: "#000000" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 89.5 + black: 0 + red: 66.9 + green: 41 + yellow: 89.1 + blue: 27.3 + magenta: 78.8 + cyan: 54.6 + white: 98.7 + brightBlack: 12.3 + brightRed: 66.9 + brightGreen: 41 + brightYellow: 89.1 + brightBlue: 27.3 + brightMagenta: 78.8 + brightCyan: 54.6 + brightWhite: 106 diff --git a/themes/monochrome--monochrome-light-cool-gray.yaml b/themes/monochrome--monochrome-light-cool-gray.yaml new file mode 100644 index 00000000..09b82f09 --- /dev/null +++ b/themes/monochrome--monochrome-light-cool-gray.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (monochrome-light-cool-gray)" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47972 + rating: 4.38 + ratings: 8 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" + formats: null +colors: + bg: "#F9FAFB" + fg: "#565B66" + black: "#F9FAFB" + red: "#858991" + green: "#B3B6BB" + yellow: "#575C67" + blue: "#CBCDD1" + magenta: "#6E727C" + cyan: "#9CA0A6" + white: "#3F4551" + brightBlack: "#E2E3E6" + brightRed: "#858991" + brightGreen: "#B3B6BB" + brightYellow: "#575C67" + brightBlue: "#CBCDD1" + brightMagenta: "#6E727C" + brightCyan: "#9CA0A6" + brightWhite: "#111827" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 80.4 + black: 0 + red: 59.6 + green: 36.5 + yellow: 80 + blue: 23.7 + magenta: 70.4 + cyan: 48.2 + white: 89.2 + brightBlack: 11 + brightRed: 59.6 + brightGreen: 36.5 + brightYellow: 80 + brightBlue: 23.7 + brightMagenta: 70.4 + brightCyan: 48.2 + brightWhite: 101.4 diff --git a/themes/monochrome--monochrome-light-indigo.yaml b/themes/monochrome--monochrome-light-indigo.yaml new file mode 100644 index 00000000..dd22d3e2 --- /dev/null +++ b/themes/monochrome--monochrome-light-indigo.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (monochrome-light-indigo)" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47972 + rating: 4.38 + ratings: 8 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" + formats: null +colors: + bg: "#F8FAFC" + fg: "#545B69" + black: "#F8FAFC" + red: "#848993" + green: "#B2B6BD" + yellow: "#555B69" + blue: "#C9CDD2" + magenta: "#6C727E" + cyan: "#9B9FA8" + white: "#3E4454" + brightBlack: "#E1E3E7" + brightRed: "#848993" + brightGreen: "#B2B6BD" + brightYellow: "#555B69" + brightBlue: "#C9CDD2" + brightMagenta: "#6C727E" + brightCyan: "#9B9FA8" + brightWhite: "#0F172A" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 80.4 + black: 0 + red: 59.5 + green: 36.4 + yellow: 80.3 + blue: 23.8 + magenta: 70.4 + cyan: 48.5 + white: 89.4 + brightBlack: 11 + brightRed: 59.5 + brightGreen: 36.4 + brightYellow: 80.3 + brightBlue: 23.8 + brightMagenta: 70.4 + brightCyan: 48.5 + brightWhite: 101.4 diff --git a/themes/monochrome--monochrome-light-subtle.yaml b/themes/monochrome--monochrome-light-subtle.yaml new file mode 100644 index 00000000..914090b0 --- /dev/null +++ b/themes/monochrome--monochrome-light-subtle.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (monochrome-light-subtle)" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47972 + rating: 4.38 + ratings: 8 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" + formats: null +colors: + bg: "#F1F5F9" + fg: "#4F565C" + black: "#F1F5F9" + red: "#7E8489" + green: "#ACB1B6" + yellow: "#4F565C" + blue: "#C3C8CC" + magenta: "#666D73" + cyan: "#959A9F" + white: "#383F46" + brightBlack: "#DADEE3" + brightRed: "#7E8489" + brightGreen: "#ACB1B6" + brightYellow: "#4F565C" + brightBlue: "#C3C8CC" + brightMagenta: "#666D73" + brightCyan: "#959A9F" + brightWhite: "#0A1219" +meta: + mode: "light" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 79.6 + black: 0 + red: 59.1 + green: 36.2 + yellow: 79.6 + blue: 23.7 + magenta: 69.8 + cyan: 48.2 + white: 88.5 + brightBlack: 11 + brightRed: 59.1 + brightGreen: 36.2 + brightYellow: 79.6 + brightBlue: 23.7 + brightMagenta: 69.8 + brightCyan: 48.2 + brightWhite: 99 diff --git a/themes/monochrome--monochrome-light.yaml b/themes/monochrome--monochrome-light.yaml new file mode 100644 index 00000000..01cdf648 --- /dev/null +++ b/themes/monochrome--monochrome-light.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (monochrome-light)" +source: + marketplace_id: "anotherglitchinthematrix.monochrome" + version: "2.4.3" + installs: 47972 + rating: 4.38 + ratings: 8 + author: "glitch" + repo: "https://github.com/anotherglitchinthematrix/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome" + formats: null +colors: + bg: "#EBEBEB" + fg: "#515151" + black: "#EBEBEB" + red: "#7E7E7E" + green: "#A9A9A9" + yellow: "#525252" + blue: "#BFBFBF" + magenta: "#686868" + cyan: "#939393" + white: "#3C3C3C" + brightBlack: "#D5D5D5" + brightRed: "#7E7E7E" + brightGreen: "#A9A9A9" + brightYellow: "#525252" + brightBlue: "#BFBFBF" + brightMagenta: "#686868" + brightCyan: "#939393" + brightWhite: "#101010" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 75.7 + black: 0 + red: 56 + green: 34.5 + yellow: 75.3 + blue: 22.7 + magenta: 66 + cyan: 45.8 + white: 83.7 + brightBlack: 10.3 + brightRed: 56 + brightGreen: 34.5 + brightYellow: 75.3 + brightBlue: 22.7 + brightMagenta: 66 + brightCyan: 45.8 + brightWhite: 93.6 diff --git a/themes/monochrome--monochrome.yaml b/themes/monochrome--monochrome.yaml new file mode 100644 index 00000000..a67ca24d --- /dev/null +++ b/themes/monochrome--monochrome.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (Monochrome)" +source: + marketplace_id: "toufiqahmedshr.monochrome-theme" + version: "1.1.0" + installs: 3265 + rating: 3.33 + ratings: 3 + author: "Toufiq Ahmed" + repo: "https://github.com/toufiq-ahmed/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=toufiqahmedshr.monochrome-theme" + formats: null +colors: + bg: "#1A1A1A" + fg: "#EEFFFF" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.2 + black: 7.8 + red: 32.6 + green: 61.3 + yellow: 76.1 + blue: 48.3 + magenta: 46.1 + cyan: 62.3 + white: 92 + brightBlack: 15.1 + brightRed: 32.6 + brightGreen: 61.3 + brightYellow: 76.1 + brightBlue: 48.3 + brightMagenta: 46.1 + brightCyan: 60.2 + brightWhite: 95.9 diff --git a/themes/monochrome-fork-by-dkamyshov--monochrome-dark-amplified.yaml b/themes/monochrome-fork-by-dkamyshov--monochrome-dark-amplified.yaml new file mode 100644 index 00000000..024e7b74 --- /dev/null +++ b/themes/monochrome-fork-by-dkamyshov--monochrome-dark-amplified.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (fork by dkamyshov) (monochrome-dark-amplified)" +source: + marketplace_id: "dkamyshov.monochrome" + version: "2.3.3" + installs: 2229 + rating: 0 + ratings: 0 + author: "dkamyshov" + repo: "https://github.com/dkamyshov/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=dkamyshov.monochrome" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#DFDFDF" + green: "#868686" + yellow: "#FFFFFF" + blue: "#595959" + magenta: "#FFFFFF" + cyan: "#B3B3B3" + white: "#FFFFFF" + brightBlack: "#2D2D2D" + brightRed: "#DFDFDF" + brightGreen: "#868686" + brightYellow: "#FFFFFF" + brightBlue: "#595959" + brightMagenta: "#FFFFFF" + brightCyan: "#B3B3B3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 87.3 + green: 37.6 + yellow: 107.9 + blue: 17.7 + magenta: 107.9 + cyan: 61.2 + white: 107.9 + brightBlack: 0 + brightRed: 87.3 + brightGreen: 37.6 + brightYellow: 107.9 + brightBlue: 17.7 + brightMagenta: 107.9 + brightCyan: 61.2 + brightWhite: 107.9 diff --git a/themes/monochrome-fork-by-dkamyshov--monochrome-dark-subtle.yaml b/themes/monochrome-fork-by-dkamyshov--monochrome-dark-subtle.yaml new file mode 100644 index 00000000..c53c777b --- /dev/null +++ b/themes/monochrome-fork-by-dkamyshov--monochrome-dark-subtle.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (fork by dkamyshov) (monochrome-dark-subtle)" +source: + marketplace_id: "dkamyshov.monochrome" + version: "2.3.3" + installs: 2229 + rating: 0 + ratings: 0 + author: "dkamyshov" + repo: "https://github.com/dkamyshov/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=dkamyshov.monochrome" + formats: null +colors: + bg: "#0A1219" + fg: "#F1F5F9" + black: "#0A1219" + red: "#D4D9DD" + green: "#83898F" + yellow: "#F1F5F9" + blue: "#5B6167" + magenta: "#F1F5F9" + cyan: "#ACB1B6" + white: "#F1F5F9" + brightBlack: "#323A40" + brightRed: "#D4D9DD" + brightGreen: "#83898F" + brightYellow: "#F1F5F9" + brightBlue: "#5B6167" + brightMagenta: "#F1F5F9" + brightCyan: "#ACB1B6" + brightWhite: "#F1F5F9" +meta: + mode: "dark" + accent: "indigo" + hue: 246 + pair: null + contrast: + fg: 100.4 + black: 0 + red: 82.5 + green: 38.2 + yellow: 100.4 + blue: 20.1 + magenta: 100.4 + cyan: 59.2 + white: 100.4 + brightBlack: 0 + brightRed: 82.5 + brightGreen: 38.2 + brightYellow: 100.4 + brightBlue: 20.1 + brightMagenta: 100.4 + brightCyan: 59.2 + brightWhite: 100.4 diff --git a/themes/monochrome-fork-by-dkamyshov--monochrome-dark.yaml b/themes/monochrome-fork-by-dkamyshov--monochrome-dark.yaml new file mode 100644 index 00000000..b30385df --- /dev/null +++ b/themes/monochrome-fork-by-dkamyshov--monochrome-dark.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (fork by dkamyshov) (monochrome-dark)" +source: + marketplace_id: "dkamyshov.monochrome" + version: "2.3.3" + installs: 2229 + rating: 0 + ratings: 0 + author: "dkamyshov" + repo: "https://github.com/dkamyshov/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=dkamyshov.monochrome" + formats: null +colors: + bg: "#101010" + fg: "#EBEBEB" + black: "#101010" + red: "#D0D0D0" + green: "#838383" + yellow: "#EBEBEB" + blue: "#5D5D5D" + magenta: "#EBEBEB" + cyan: "#A9A9A9" + white: "#EBEBEB" + brightBlack: "#363636" + brightRed: "#D0D0D0" + brightGreen: "#838383" + brightYellow: "#EBEBEB" + brightBlue: "#5D5D5D" + brightMagenta: "#EBEBEB" + brightCyan: "#A9A9A9" + brightWhite: "#EBEBEB" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 94.4 + black: 0 + red: 77.6 + green: 35.8 + yellow: 94.4 + blue: 18.9 + magenta: 94.4 + cyan: 55.3 + white: 94.4 + brightBlack: 0 + brightRed: 77.6 + brightGreen: 35.8 + brightYellow: 94.4 + brightBlue: 18.9 + brightMagenta: 94.4 + brightCyan: 55.3 + brightWhite: 94.4 diff --git a/themes/monochrome-fork-by-dkamyshov--monochrome-light-amplified.yaml b/themes/monochrome-fork-by-dkamyshov--monochrome-light-amplified.yaml new file mode 100644 index 00000000..95d5470d --- /dev/null +++ b/themes/monochrome-fork-by-dkamyshov--monochrome-light-amplified.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (fork by dkamyshov) (monochrome-light-amplified)" +source: + marketplace_id: "dkamyshov.monochrome" + version: "2.3.3" + installs: 2229 + rating: 0 + ratings: 0 + author: "dkamyshov" + repo: "https://github.com/dkamyshov/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=dkamyshov.monochrome" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#FFFFFF" + red: "#202020" + green: "#797979" + yellow: "#000000" + blue: "#A6A6A6" + magenta: "#000000" + cyan: "#4C4C4C" + white: "#000000" + brightBlack: "#D2D2D2" + brightRed: "#202020" + brightGreen: "#797979" + brightYellow: "#000000" + brightBlue: "#A6A6A6" + brightMagenta: "#000000" + brightCyan: "#4C4C4C" + brightWhite: "#000000" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 106 + black: 0 + red: 103.3 + green: 70.2 + yellow: 106 + blue: 47.9 + magenta: 106 + cyan: 89.5 + white: 106 + brightBlack: 23.9 + brightRed: 103.3 + brightGreen: 70.2 + brightYellow: 106 + brightBlue: 47.9 + brightMagenta: 106 + brightCyan: 89.5 + brightWhite: 106 diff --git a/themes/monochrome-fork-by-dkamyshov--monochrome-light-subtle.yaml b/themes/monochrome-fork-by-dkamyshov--monochrome-light-subtle.yaml new file mode 100644 index 00000000..e189b311 --- /dev/null +++ b/themes/monochrome-fork-by-dkamyshov--monochrome-light-subtle.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (fork by dkamyshov) (monochrome-light-subtle)" +source: + marketplace_id: "dkamyshov.monochrome" + version: "2.3.3" + installs: 2229 + rating: 0 + ratings: 0 + author: "dkamyshov" + repo: "https://github.com/dkamyshov/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=dkamyshov.monochrome" + formats: null +colors: + bg: "#F1F5F9" + fg: "#0A1219" + black: "#F1F5F9" + red: "#272E35" + green: "#787E83" + yellow: "#0A1219" + blue: "#A0A6AB" + magenta: "#0A1219" + cyan: "#4F565C" + white: "#0A1219" + brightBlack: "#C9CDD2" + brightRed: "#272E35" + brightGreen: "#787E83" + brightYellow: "#0A1219" + brightBlue: "#A0A6AB" + brightMagenta: "#0A1219" + brightCyan: "#4F565C" + brightWhite: "#0A1219" +meta: + mode: "light" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 99 + black: 0 + red: 94 + green: 62 + yellow: 99 + blue: 42.1 + magenta: 99 + cyan: 79.6 + white: 99 + brightBlack: 20.7 + brightRed: 94 + brightGreen: 62 + brightYellow: 99 + brightBlue: 42.1 + brightMagenta: 99 + brightCyan: 79.6 + brightWhite: 99 diff --git a/themes/monochrome-fork-by-dkamyshov--monochrome-light.yaml b/themes/monochrome-fork-by-dkamyshov--monochrome-light.yaml new file mode 100644 index 00000000..1d8a8429 --- /dev/null +++ b/themes/monochrome-fork-by-dkamyshov--monochrome-light.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (fork by dkamyshov) (monochrome-light)" +source: + marketplace_id: "dkamyshov.monochrome" + version: "2.3.3" + installs: 2229 + rating: 0 + ratings: 0 + author: "dkamyshov" + repo: "https://github.com/dkamyshov/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=dkamyshov.monochrome" + formats: null +colors: + bg: "#EBEBEB" + fg: "#101010" + black: "#EBEBEB" + red: "#2B2B2B" + green: "#787878" + yellow: "#101010" + blue: "#9E9E9E" + magenta: "#101010" + cyan: "#525252" + white: "#101010" + brightBlack: "#C5C5C5" + brightRed: "#2B2B2B" + brightGreen: "#787878" + brightYellow: "#101010" + brightBlue: "#9E9E9E" + brightMagenta: "#101010" + brightCyan: "#525252" + brightWhite: "#101010" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 93.6 + black: 0 + red: 89 + green: 58.8 + yellow: 93.6 + blue: 40.2 + magenta: 93.6 + cyan: 75.3 + white: 93.6 + brightBlack: 19.4 + brightRed: 89 + brightGreen: 58.8 + brightYellow: 93.6 + brightBlue: 40.2 + brightMagenta: 93.6 + brightCyan: 75.3 + brightWhite: 93.6 diff --git a/themes/monochrome-monochrome-github-edition.yaml b/themes/monochrome-monochrome-github-edition.yaml new file mode 100644 index 00000000..da29fa13 --- /dev/null +++ b/themes/monochrome-monochrome-github-edition.yaml @@ -0,0 +1,53 @@ +name: "Monochrome (Monochrome (GitHub Edition))" +source: + marketplace_id: "toufiqahmedshr.monochrome-theme" + version: "1.1.0" + installs: 3265 + rating: 3.33 + ratings: 3 + author: "Toufiq Ahmed" + repo: "https://github.com/toufiq-ahmed/monochrome" + url: "https://marketplace.visualstudio.com/items?itemName=toufiqahmedshr.monochrome-theme" + formats: null +colors: + bg: "#0D1117" + fg: "#EEFFFF" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 258 + pair: null + contrast: + fg: 105.1 + black: 8.6 + red: 33.5 + green: 62.2 + yellow: 76.9 + blue: 49.2 + magenta: 47 + cyan: 63.2 + white: 92.9 + brightBlack: 15.9 + brightRed: 33.5 + brightGreen: 62.2 + brightYellow: 76.9 + brightBlue: 49.2 + brightMagenta: 47 + brightCyan: 61.1 + brightWhite: 96.7 diff --git a/themes/monochrome-theme.yaml b/themes/monochrome-theme.yaml new file mode 100644 index 00000000..e34eff1f --- /dev/null +++ b/themes/monochrome-theme.yaml @@ -0,0 +1,53 @@ +name: "Monochrome Theme" +source: + marketplace_id: "mochi.mochi-monochrome-theme" + version: "0.0.2" + installs: 191 + rating: 0 + ratings: 0 + author: "mochi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mochi.mochi-monochrome-theme" + formats: null +colors: + bg: "#141414" + fg: "#AAAAAA" + black: "#777777" + red: "#BBBBBB" + green: "#BBBBBB" + yellow: "#BBBBBB" + blue: "#BBBBBB" + magenta: "#BBBBBB" + cyan: "#BBBBBB" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#BBBBBB" + brightGreen: "#BBBBBB" + brightYellow: "#BBBBBB" + brightBlue: "#BBBBBB" + brightMagenta: "#BBBBBB" + brightCyan: "#BBBBBB" + brightWhite: "#E9E9E9" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 55.5 + black: 29.8 + red: 65 + green: 65 + yellow: 65 + blue: 65 + magenta: 65 + cyan: 65 + white: 90.3 + brightBlack: 22.3 + brightRed: 65 + brightGreen: 65 + brightYellow: 65 + brightBlue: 65 + brightMagenta: 65 + brightCyan: 65 + brightWhite: 92.8 diff --git a/themes/monocious.yaml b/themes/monocious.yaml new file mode 100644 index 00000000..b3c3e032 --- /dev/null +++ b/themes/monocious.yaml @@ -0,0 +1,53 @@ +name: "Monocious" +source: + marketplace_id: "vinihvc.monocious" + version: "1.0.0" + installs: 84 + rating: 0 + ratings: 0 + author: "Vinicius Vicentini" + repo: "https://github.com/vinihvc/monocious" + url: "https://marketplace.visualstudio.com/items?itemName=vinihvc.monocious" + formats: null +colors: + bg: "#1D1D25" + fg: "#FFFFFF" + black: "#333333" + red: "#FF3399" + green: "#00D364" + yellow: "#F9DA78" + blue: "#00BFFF" + magenta: "#8C6BC8" + cyan: "#00CED1" + white: "#FFFFFF" + brightBlack: "#3D3D56" + brightRed: "#FF3399" + brightGreen: "#00D364" + brightYellow: "#F9DA78" + brightBlue: "#00BFFF" + brightMagenta: "#CC66FF" + brightCyan: "#00CED1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 285 + pair: null + contrast: + fg: 106.1 + black: 0 + red: 40.2 + green: 62.7 + yellow: 83.8 + blue: 59.6 + magenta: 31.4 + cyan: 63.8 + white: 106.1 + brightBlack: 0 + brightRed: 40.2 + brightGreen: 62.7 + brightYellow: 83.8 + brightBlue: 59.6 + brightMagenta: 43.4 + brightCyan: 63.8 + brightWhite: 106.1 diff --git a/themes/monokai-accents--monokai-red.yaml b/themes/monokai-accents--monokai-red.yaml new file mode 100644 index 00000000..7da06295 --- /dev/null +++ b/themes/monokai-accents--monokai-red.yaml @@ -0,0 +1,53 @@ +name: "Monokai Accents (Monokai +Red)" +source: + marketplace_id: "tw.monokai-accent" + version: "0.0.7" + installs: 13337 + rating: 5 + ratings: 4 + author: "tw" + repo: "https://github.com/tw-studio/monokai-accent" + url: "https://marketplace.visualstudio.com/items?itemName=tw.monokai-accent" + formats: null +colors: + bg: "#242424" + fg: "#F6F6F6" + black: "#222222" + red: "#FC618D" + green: "#7BD88F" + yellow: "#FCE566" + blue: "#FD9353" + magenta: "#948AE3" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#FCE566" + brightBlue: "#FD9353" + brightMagenta: "#948AE3" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 99.2 + black: 0 + red: 44.6 + green: 68.5 + yellow: 87.9 + blue: 56.2 + magenta: 42.5 + cyan: 68.3 + white: 97.5 + brightBlack: 21.1 + brightRed: 44.6 + brightGreen: 68.5 + brightYellow: 87.9 + brightBlue: 56.2 + brightMagenta: 42.5 + brightCyan: 68.3 + brightWhite: 97.5 diff --git a/themes/monokai-after-dark.yaml b/themes/monokai-after-dark.yaml new file mode 100644 index 00000000..d31e2c05 --- /dev/null +++ b/themes/monokai-after-dark.yaml @@ -0,0 +1,53 @@ +name: "Monokai After Dark" +source: + marketplace_id: "jonbellah.monokai-after-dark" + version: "0.1.4" + installs: 1896 + rating: 0 + ratings: 0 + author: "Jon Bellah" + repo: "https://github.com/jonbellah/monokai-after-dark" + url: "https://marketplace.visualstudio.com/items?itemName=jonbellah.monokai-after-dark" + formats: null +colors: + bg: "#1D232F" + fg: "#A8B5D1" + black: "#111111" + red: "#FC2D1E" + green: "#2FCC71" + yellow: "#F1C40D" + blue: "#3398DB" + magenta: "#6171C4" + cyan: "#0095DE" + white: "#DEE2EA" + brightBlack: "#7992B4" + brightRed: "#FF5874" + brightGreen: "#6AF699" + brightYellow: "#FFFA9E" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#4FF2F8" + brightWhite: "#99A3B8" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 59.5 + black: 0 + red: 35.7 + green: 59.1 + yellow: 71.4 + blue: 40.9 + magenta: 28 + cyan: 39.4 + white: 86.4 + brightBlack: 40.1 + brightRed: 43 + brightGreen: 82.9 + brightYellow: 99.4 + brightBlue: 54.4 + brightMagenta: 52.2 + brightCyan: 83.6 + brightWhite: 49.7 diff --git a/themes/monokai-air-theme.yaml b/themes/monokai-air-theme.yaml new file mode 100644 index 00000000..e4562e02 --- /dev/null +++ b/themes/monokai-air-theme.yaml @@ -0,0 +1,53 @@ +name: "Monokai Air Theme" +source: + marketplace_id: "destcode.monokai-air" + version: "1.0.1" + installs: 214 + rating: 5 + ratings: 1 + author: "destcode" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=destcode.monokai-air" + formats: null +colors: + bg: "#232421" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 100.3 + black: 0 + red: 22.9 + green: 51.3 + yellow: 56 + blue: 33 + magenta: 30.5 + cyan: 48.8 + white: 86.8 + brightBlack: 20.4 + brightRed: 35.6 + brightGreen: 75.3 + brightYellow: 82.2 + brightBlue: 48.2 + brightMagenta: 44.9 + brightCyan: 71.7 + brightWhite: 100.3 diff --git a/themes/monokai-dark-green--monokai-dark-green.yaml b/themes/monokai-dark-green--monokai-dark-green.yaml new file mode 100644 index 00000000..9daad2d2 --- /dev/null +++ b/themes/monokai-dark-green--monokai-dark-green.yaml @@ -0,0 +1,53 @@ +name: "Monokai Dark Green (Monokai Dark Green)" +source: + marketplace_id: "alvaro-israel-nunes-leite.theme-monokai-dark-green" + version: "0.1.4" + installs: 4832 + rating: 0 + ratings: 0 + author: "Alvaro Israel Nunes Leite" + repo: "https://github.com/AlvaroIsrael/monokai-dark-green" + url: "https://marketplace.visualstudio.com/items?itemName=alvaro-israel-nunes-leite.theme-monokai-dark-green" + formats: null +colors: + bg: "#1A1A1A" + fg: "#CFBFAD" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F32569" + brightGreen: "#B1F325" + brightYellow: "#C3E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#CFBFAD" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 68.1 + black: 0 + red: 24.3 + green: 52.7 + yellow: 57.3 + blue: 34.3 + magenta: 31.9 + cyan: 50.1 + white: 88.2 + brightBlack: 21.7 + brightRed: 35.2 + brightGreen: 86 + brightYellow: 79.7 + brightBlue: 49.5 + brightMagenta: 46.2 + brightCyan: 73.1 + brightWhite: 68.1 diff --git a/themes/monokai-dark-theme.yaml b/themes/monokai-dark-theme.yaml new file mode 100644 index 00000000..6d951f4f --- /dev/null +++ b/themes/monokai-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Monokai Dark Theme" +source: + marketplace_id: "Treevel.monokai-dark-theme" + version: "0.0.3" + installs: 445 + rating: 0 + ratings: 0 + author: "Treevel" + repo: "https://github.com/treevel/vscode-theme-monokai-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Treevel.monokai-dark-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 23.8 + green: 52.2 + yellow: 56.8 + blue: 33.8 + magenta: 31.4 + cyan: 49.6 + white: 87.7 + brightBlack: 21.2 + brightRed: 36.5 + brightGreen: 76.2 + brightYellow: 83.1 + brightBlue: 49 + brightMagenta: 45.7 + brightCyan: 72.6 + brightWhite: 101.1 diff --git a/themes/monokai-dev--dev2.yaml b/themes/monokai-dev--dev2.yaml new file mode 100644 index 00000000..451a8075 --- /dev/null +++ b/themes/monokai-dev--dev2.yaml @@ -0,0 +1,53 @@ +name: "monokai Dev (dev2)" +source: + marketplace_id: "DevVikramSingh.monokai-dragon" + version: "0.0.2" + installs: 110 + rating: 0 + ratings: 0 + author: "Dev Vikram Singh" + repo: "https://github.com/techtrigon/monokai-Dev" + url: "https://marketplace.visualstudio.com/items?itemName=DevVikramSingh.monokai-dragon" + formats: null +colors: + bg: "#232426" + fg: "#FDD94D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 82.4 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 27.4 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/monokai-dev--dev3.yaml b/themes/monokai-dev--dev3.yaml new file mode 100644 index 00000000..c77d02e3 --- /dev/null +++ b/themes/monokai-dev--dev3.yaml @@ -0,0 +1,53 @@ +name: "monokai Dev (dev3)" +source: + marketplace_id: "DevVikramSingh.monokai-dragon" + version: "0.0.2" + installs: 110 + rating: 0 + ratings: 0 + author: "Dev Vikram Singh" + repo: "https://github.com/techtrigon/monokai-Dev" + url: "https://marketplace.visualstudio.com/items?itemName=DevVikramSingh.monokai-dragon" + formats: null +colors: + bg: "#242221" + fg: "#ECD061" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 76.4 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 27.6 + magenta: 28.3 + cyan: 46.1 + white: 88.5 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/monokai-dev--dev4.yaml b/themes/monokai-dev--dev4.yaml new file mode 100644 index 00000000..5fe96cb2 --- /dev/null +++ b/themes/monokai-dev--dev4.yaml @@ -0,0 +1,53 @@ +name: "monokai Dev (dev4)" +source: + marketplace_id: "DevVikramSingh.monokai-dragon" + version: "0.0.2" + installs: 110 + rating: 0 + ratings: 0 + author: "Dev Vikram Singh" + repo: "https://github.com/techtrigon/monokai-Dev" + url: "https://marketplace.visualstudio.com/items?itemName=DevVikramSingh.monokai-dragon" + formats: null +colors: + bg: "#232426" + fg: "#F0D06F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 76.9 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 27.4 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/monokai-dev--dev5.yaml b/themes/monokai-dev--dev5.yaml new file mode 100644 index 00000000..7839a852 --- /dev/null +++ b/themes/monokai-dev--dev5.yaml @@ -0,0 +1,53 @@ +name: "monokai Dev (dev5)" +source: + marketplace_id: "DevVikramSingh.monokai-dragon" + version: "0.0.2" + installs: 110 + rating: 0 + ratings: 0 + author: "Dev Vikram Singh" + repo: "https://github.com/techtrigon/monokai-Dev" + url: "https://marketplace.visualstudio.com/items?itemName=DevVikramSingh.monokai-dragon" + formats: null +colors: + bg: "#232426" + fg: "#FFDC50" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 84.1 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 27.4 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/monokai-dev--dev6.yaml b/themes/monokai-dev--dev6.yaml new file mode 100644 index 00000000..0fe65fec --- /dev/null +++ b/themes/monokai-dev--dev6.yaml @@ -0,0 +1,53 @@ +name: "monokai Dev (dev6)" +source: + marketplace_id: "DevVikramSingh.monokai-dragon" + version: "0.0.2" + installs: 110 + rating: 0 + ratings: 0 + author: "Dev Vikram Singh" + repo: "https://github.com/techtrigon/monokai-Dev" + url: "https://marketplace.visualstudio.com/items?itemName=DevVikramSingh.monokai-dragon" + formats: null +colors: + bg: "#26252C" + fg: "#FFDC50" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: 292 + pair: null + contrast: + fg: 83.7 + black: 0 + red: 24.7 + green: 51 + yellow: 83.6 + blue: 27 + magenta: 27.7 + cyan: 45.5 + white: 88 + brightBlack: 20 + brightRed: 36.5 + brightGreen: 61.5 + brightYellow: 93.6 + brightBlue: 38 + brightMagenta: 43.3 + brightCyan: 53.4 + brightWhite: 88 diff --git a/themes/monokai-dev--dev7.yaml b/themes/monokai-dev--dev7.yaml new file mode 100644 index 00000000..abb4edfb --- /dev/null +++ b/themes/monokai-dev--dev7.yaml @@ -0,0 +1,53 @@ +name: "monokai Dev (dev7)" +source: + marketplace_id: "DevVikramSingh.monokai-dragon" + version: "0.0.2" + installs: 110 + rating: 0 + ratings: 0 + author: "Dev Vikram Singh" + repo: "https://github.com/techtrigon/monokai-Dev" + url: "https://marketplace.visualstudio.com/items?itemName=DevVikramSingh.monokai-dragon" + formats: null +colors: + bg: "#26262A" + fg: "#FFDD77" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 84.7 + black: 0 + red: 24.6 + green: 50.9 + yellow: 83.5 + blue: 27 + magenta: 27.6 + cyan: 45.4 + white: 87.9 + brightBlack: 19.9 + brightRed: 36.4 + brightGreen: 61.4 + brightYellow: 93.5 + brightBlue: 37.9 + brightMagenta: 43.2 + brightCyan: 53.3 + brightWhite: 87.9 diff --git a/themes/monokai-dev--dev8.yaml b/themes/monokai-dev--dev8.yaml new file mode 100644 index 00000000..07702d30 --- /dev/null +++ b/themes/monokai-dev--dev8.yaml @@ -0,0 +1,53 @@ +name: "monokai Dev (dev8)" +source: + marketplace_id: "DevVikramSingh.monokai-dragon" + version: "0.0.2" + installs: 110 + rating: 0 + ratings: 0 + author: "Dev Vikram Singh" + repo: "https://github.com/techtrigon/monokai-Dev" + url: "https://marketplace.visualstudio.com/items?itemName=DevVikramSingh.monokai-dragon" + formats: null +colors: + bg: "#242424" + fg: "#38F0BD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 79.2 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 27.3 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/monokai-dev--dev9.yaml b/themes/monokai-dev--dev9.yaml new file mode 100644 index 00000000..3d7e085d --- /dev/null +++ b/themes/monokai-dev--dev9.yaml @@ -0,0 +1,53 @@ +name: "monokai Dev (dev9)" +source: + marketplace_id: "DevVikramSingh.monokai-dragon" + version: "0.0.2" + installs: 110 + rating: 0 + ratings: 0 + author: "Dev Vikram Singh" + repo: "https://github.com/techtrigon/monokai-Dev" + url: "https://marketplace.visualstudio.com/items?itemName=DevVikramSingh.monokai-dragon" + formats: null +colors: + bg: "#242424" + fg: "#FDD94D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 82.4 + black: 0 + red: 25 + green: 51.3 + yellow: 83.9 + blue: 27.3 + magenta: 28 + cyan: 45.8 + white: 88.3 + brightBlack: 20.3 + brightRed: 36.8 + brightGreen: 61.8 + brightYellow: 93.9 + brightBlue: 38.3 + brightMagenta: 43.6 + brightCyan: 53.7 + brightWhite: 88.3 diff --git a/themes/monokai-grs-elixir-fork.yaml b/themes/monokai-grs-elixir-fork.yaml new file mode 100644 index 00000000..9d0c75f2 --- /dev/null +++ b/themes/monokai-grs-elixir-fork.yaml @@ -0,0 +1,53 @@ +name: "Monokai GRS Elixir Fork" +source: + marketplace_id: "ChrisFreeze.monokai-grs-elixir" + version: "0.1.0" + installs: 1 + rating: 0 + ratings: 0 + author: "Chris Freeze" + repo: "https://github.com/cjfreeze/Monokai-GRS" + url: "https://marketplace.visualstudio.com/items?itemName=ChrisFreeze.monokai-grs-elixir" + formats: null +colors: + bg: "#202020" + fg: "#F0F0F0" + black: "#505050" + red: "#D32F2F" + green: "#388E3C" + yellow: "#FBC02D" + blue: "#1976D2" + magenta: "#7B1FA2" + cyan: "#0097A7" + white: "#F0F0F0" + brightBlack: "#606060" + brightRed: "#FF1744" + brightGreen: "#00E676" + brightYellow: "#FFEA00" + brightBlue: "#2979FF" + brightMagenta: "#D500F9" + brightCyan: "#00E5FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 95.9 + black: 12.1 + red: 26.7 + green: 31.6 + yellow: 72 + blue: 28.2 + magenta: 12.9 + cyan: 37.5 + white: 95.9 + brightBlack: 18.4 + brightRed: 36.1 + brightGreen: 72.2 + brightYellow: 90.6 + brightBlue: 33 + brightMagenta: 34.6 + brightCyan: 76.9 + brightWhite: 105.8 diff --git a/themes/monokai-japan-theme.yaml b/themes/monokai-japan-theme.yaml new file mode 100644 index 00000000..12e72cf1 --- /dev/null +++ b/themes/monokai-japan-theme.yaml @@ -0,0 +1,53 @@ +name: "Monokai-Japan Theme" +source: + marketplace_id: "Minorin.theme-monokai-japan" + version: "1.0.1" + installs: 2925 + rating: 5 + ratings: 1 + author: "Minorin" + repo: "https://github.com/minorin22/Monokai-Japan" + url: "https://marketplace.visualstudio.com/items?itemName=Minorin.theme-monokai-japan" + formats: null +colors: + bg: "#272727" + fg: "#FBFBF8" + black: "#434944" + red: "#DA5673" + green: "#7BB75B" + yellow: "#EEBF35" + blue: "#5CABDC" + magenta: "#7457A2" + cyan: "#87C7D4" + white: "#FBFBF8" + brightBlack: "#6B6B6B" + brightRed: "#DBA2B4" + brightGreen: "#898E38" + brightYellow: "#8A6B3D" + brightBlue: "#126B8C" + brightMagenta: "#B595CF" + brightCyan: "#44A9BA" + brightWhite: "#BFC2BC" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 101.8 + black: 7.8 + red: 33.8 + green: 51.7 + yellow: 68.4 + blue: 49.4 + magenta: 19.7 + cyan: 63.6 + white: 101.8 + brightBlack: 21.9 + brightRed: 57.2 + brightGreen: 35.9 + brightYellow: 24.3 + brightBlue: 19 + brightMagenta: 48.4 + brightCyan: 45.7 + brightWhite: 65.9 diff --git a/themes/monokai-mahesh.yaml b/themes/monokai-mahesh.yaml new file mode 100644 index 00000000..f854c7fc --- /dev/null +++ b/themes/monokai-mahesh.yaml @@ -0,0 +1,53 @@ +name: "monokai-mahesh" +source: + marketplace_id: "MaheshSinghChouhan.monokai-mahesh" + version: "0.0.1" + installs: 229 + rating: 0 + ratings: 0 + author: "Mahesh Singh Chouhan" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MaheshSinghChouhan.monokai-mahesh" + formats: null +colors: + bg: "#171717" + fg: "#55B5B5" + black: "#333333" + red: "#C4265E" + green: "#14A333" + yellow: "#E6E62B" + blue: "#6A7EC8" + magenta: "#734DB9" + cyan: "#49CAE0" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#00FF00" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 53.5 + black: 0 + red: 24.6 + green: 40.7 + yellow: 86.3 + blue: 34.6 + magenta: 21.1 + cyan: 64.5 + white: 88.5 + brightBlack: 22 + brightRed: 85.5 + brightGreen: 77 + brightYellow: 83.9 + brightBlue: 49.9 + brightMagenta: 46.5 + brightCyan: 73.4 + brightWhite: 102 diff --git a/themes/monokai-night-theme.yaml b/themes/monokai-night-theme.yaml new file mode 100644 index 00000000..93153e04 --- /dev/null +++ b/themes/monokai-night-theme.yaml @@ -0,0 +1,53 @@ +name: "Monokai Night Theme" +source: + marketplace_id: "fabiospampinato.vscode-monokai-night" + version: "1.7.1" + installs: 616333 + rating: 4.81 + ratings: 26 + author: "Fabio Spampinato" + repo: "https://github.com/fabiospampinato/vscode-monokai-night" + url: "https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-monokai-night" + formats: null +colors: + bg: "#1F1F1F" + fg: "#DDDDDD" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 84 + black: 0 + red: 23.6 + green: 52 + yellow: 56.7 + blue: 33.7 + magenta: 31.2 + cyan: 49.5 + white: 87.5 + brightBlack: 21.1 + brightRed: 36.3 + brightGreen: 76 + brightYellow: 82.9 + brightBlue: 48.9 + brightMagenta: 45.6 + brightCyan: 72.4 + brightWhite: 101 diff --git a/themes/monokai-ocean.yaml b/themes/monokai-ocean.yaml new file mode 100644 index 00000000..0fb6b480 --- /dev/null +++ b/themes/monokai-ocean.yaml @@ -0,0 +1,53 @@ +name: "Monokai Ocean" +source: + marketplace_id: "rofrol.monokai-ocean" + version: "1.0.6" + installs: 10816 + rating: 4 + ratings: 3 + author: "rofrol" + repo: "https://github.com/rofrol/monokai-ocean" + url: "https://marketplace.visualstudio.com/items?itemName=rofrol.monokai-ocean" + formats: null +colors: + bg: "#191E29" + fg: "#C0C0C0" + black: "#403E41" + red: "#FF6188" + green: "#A9DC76" + yellow: "#E6C866" + blue: "#FC9867" + magenta: "#AB9DF2" + cyan: "#78DCE8" + white: "#BEC4CB" + brightBlack: "#727072" + brightRed: "#FF6188" + brightGreen: "#A9DC76" + brightYellow: "#E6C866" + brightBlue: "#FC9867" + brightMagenta: "#AB9DF2" + brightCyan: "#78DCE8" + brightWhite: "#BEC4CB" +meta: + mode: "dark" + accent: "red" + hue: 266 + pair: null + contrast: + fg: 66.8 + black: 0 + red: 46 + green: 74.4 + yellow: 72.8 + blue: 58.8 + magenta: 53.4 + cyan: 74.6 + white: 68.7 + brightBlack: 25.8 + brightRed: 46 + brightGreen: 74.4 + brightYellow: 72.8 + brightBlue: 58.8 + brightMagenta: 53.4 + brightCyan: 74.6 + brightWhite: 68.7 diff --git a/themes/monokai-red-moon.yaml b/themes/monokai-red-moon.yaml new file mode 100644 index 00000000..2c082d8b --- /dev/null +++ b/themes/monokai-red-moon.yaml @@ -0,0 +1,53 @@ +name: "Monokai Red Moon" +source: + marketplace_id: "hudadamar21.monokai-red-moon" + version: "1.0.0" + installs: 2319 + rating: 0 + ratings: 0 + author: "hudadamar21" + repo: "https://themes.vscode.one/theme/hudadamar21/29medjnT" + url: "https://marketplace.visualstudio.com/items?itemName=hudadamar21.monokai-red-moon" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#868686" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#469DF1" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#74BCFF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 37.6 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 47.5 + magenta: 30.8 + cyan: 48.6 + white: 80.5 + brightBlack: 56.8 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 63.2 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/monokai-seti.yaml b/themes/monokai-seti.yaml new file mode 100644 index 00000000..643b3dea --- /dev/null +++ b/themes/monokai-seti.yaml @@ -0,0 +1,53 @@ +name: "Monokai Seti" +source: + marketplace_id: "adityavm.vscode-monokai-seti" + version: "0.0.8" + installs: 19551 + rating: 5 + ratings: 1 + author: "Aditya Mukherjee" + repo: "https://github.com/adityavm/vscode-monokai-seti" + url: "https://marketplace.visualstudio.com/items?itemName=adityavm.vscode-monokai-seti" + formats: null +colors: + bg: "#FFFFFF" + fg: "#272727" + black: "#000000" + red: "#EA6C6D" + green: "#99BF4D" + yellow: "#ECA944" + blue: "#3199E1" + magenta: "#9E75C7" + cyan: "#46BA94" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#E6BB00" + brightBlue: "#399EE6" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 101.8 + black: 106 + red: 56.9 + green: 41.4 + yellow: 39.3 + blue: 57.6 + magenta: 63.5 + cyan: 47.2 + white: 30.1 + brightBlack: 77.9 + brightRed: 54.4 + brightGreen: 48.5 + brightYellow: 34 + brightBlue: 55.1 + brightMagenta: 61.1 + brightCyan: 44.6 + brightWhite: 24.5 diff --git a/themes/monokai-theme-use-high-contrast.yaml b/themes/monokai-theme-use-high-contrast.yaml new file mode 100644 index 00000000..b9b9de86 --- /dev/null +++ b/themes/monokai-theme-use-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Monokai Theme use High Contrast" +source: + marketplace_id: "iZDT.theme-monokai-hc" + version: "1.0.1" + installs: 5114 + rating: 5 + ratings: 1 + author: "iZDT" + repo: "https://github.com/Simple-Tools/VSCode-MonokaiHC-theme" + url: "https://marketplace.visualstudio.com/items?itemName=iZDT.theme-monokai-hc" + formats: null +colors: + bg: "#000000" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 103 + black: 0 + red: 25.6 + green: 54 + yellow: 58.7 + blue: 35.6 + magenta: 33.2 + cyan: 51.5 + white: 89.5 + brightBlack: 23 + brightRed: 38.3 + brightGreen: 78 + brightYellow: 84.9 + brightBlue: 50.9 + brightMagenta: 47.5 + brightCyan: 74.4 + brightWhite: 103 diff --git a/themes/monokai.yaml b/themes/monokai.yaml new file mode 100644 index 00000000..04c70f6c --- /dev/null +++ b/themes/monokai.yaml @@ -0,0 +1,53 @@ +name: "Monokai--" +source: + marketplace_id: "Cydo.monokai-minus-minus" + version: "0.1.0" + installs: 187 + rating: 0 + ratings: 0 + author: "Cydo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Cydo.monokai-minus-minus" + formats: null +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#1C1C1C" + red: "#E62A19" + green: "#2BE98A" + yellow: "#E6DB74" + blue: "#328EFF" + magenta: "#F92672" + cyan: "#49E0FD" + white: "#CCCCCC" + brightBlack: "#696D70" + brightRed: "#E62A19" + brightGreen: "#2BE98A" + brightYellow: "#E6DB74" + brightBlue: "#328EFF" + brightMagenta: "#F92672" + brightCyan: "#49E0FD" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 30.4 + green: 74.3 + yellow: 80.8 + blue: 40.1 + magenta: 36 + cyan: 75.1 + white: 73.4 + brightBlack: 23.5 + brightRed: 30.4 + brightGreen: 74.3 + brightYellow: 80.8 + brightBlue: 40.1 + brightMagenta: 36 + brightCyan: 75.1 + brightWhite: 96.4 diff --git a/themes/monokard-theme.yaml b/themes/monokard-theme.yaml new file mode 100644 index 00000000..ff5f8fdf --- /dev/null +++ b/themes/monokard-theme.yaml @@ -0,0 +1,53 @@ +name: "Monokard Theme" +source: + marketplace_id: "gfrcsd.monokard" + version: "2.0.0" + installs: 946 + rating: 0 + ratings: 0 + author: "gfrcsd" + repo: "https://github.com/gfrcsd/vscode-monokard" + url: "https://marketplace.visualstudio.com/items?itemName=gfrcsd.monokard" + formats: null +colors: + bg: "#1F1F1F" + fg: "#DDDDDD" + black: "#333333" + red: "#F92672" + green: "#0FD589" + yellow: "#FFEE99" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#66D8EE" + white: "#E3E3DD" + brightBlack: "#8C8C8C" + brightRed: "#D3201F" + brightGreen: "#A6E22E" + brightYellow: "#FD971E" + brightBlue: "#3BC0F0" + brightMagenta: "#6C71C4" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 84 + black: 0 + red: 36.3 + green: 64.3 + yellow: 94.2 + blue: 33.7 + magenta: 31.2 + cyan: 71.9 + white: 87.5 + brightBlack: 38.6 + brightRed: 25.6 + brightGreen: 76 + brightYellow: 57.7 + brightBlue: 59.5 + brightMagenta: 29.5 + brightCyan: 72.4 + brightWhite: 101 diff --git a/themes/monolite-space--monolite-space-dark.yaml b/themes/monolite-space--monolite-space-dark.yaml new file mode 100644 index 00000000..c883d4eb --- /dev/null +++ b/themes/monolite-space--monolite-space-dark.yaml @@ -0,0 +1,53 @@ +name: "Monolite Space (Monolite Space Dark)" +source: + marketplace_id: "MonoliteSpaces.theme-monolite-space-vscode" + version: "1.0.0" + installs: 77 + rating: 0 + ratings: 0 + author: "A3ST1CODE" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MonoliteSpaces.theme-monolite-space-vscode" + formats: null +colors: + bg: "#2D2D2D" + fg: "#FFFFFF" + black: "#3A3A3A" + red: "#FF6B8B" + green: "#8CD98F" + yellow: "#CCCCCC" + blue: "#FFA366" + magenta: "#A59AE3" + cyan: "#6EC8E6" + white: "#FFFFFF" + brightBlack: "#7A787D" + brightRed: "#FF6B8B" + brightGreen: "#8CD98F" + brightYellow: "#CCCCCC" + brightBlue: "#FFA366" + brightMagenta: "#A59AE3" + brightCyan: "#6EC8E6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 103.4 + black: 0 + red: 45.5 + green: 68.5 + yellow: 71.2 + blue: 60.3 + magenta: 48.1 + cyan: 62.1 + white: 103.4 + brightBlack: 26.9 + brightRed: 45.5 + brightGreen: 68.5 + brightYellow: 71.2 + brightBlue: 60.3 + brightMagenta: 48.1 + brightCyan: 62.1 + brightWhite: 103.4 diff --git a/themes/monolite-space--monolite-space-gray.yaml b/themes/monolite-space--monolite-space-gray.yaml new file mode 100644 index 00000000..0242df4b --- /dev/null +++ b/themes/monolite-space--monolite-space-gray.yaml @@ -0,0 +1,53 @@ +name: "Monolite Space (Monolite Space Gray)" +source: + marketplace_id: "MonoliteSpaces.theme-monolite-space-vscode" + version: "1.0.0" + installs: 77 + rating: 0 + ratings: 0 + author: "A3ST1CODE" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MonoliteSpaces.theme-monolite-space-vscode" + formats: null +colors: + bg: "#303136" + fg: "#FFFFFF" + black: "#2E2E31" + red: "#FF6B8B" + green: "#8CD98F" + yellow: "#CCCCCC" + blue: "#FFA366" + magenta: "#A59AE3" + cyan: "#6EC8E6" + white: "#FFFFFF" + brightBlack: "#7A787D" + brightRed: "#FF6B8B" + brightGreen: "#8CD98F" + brightYellow: "#CCCCCC" + brightBlue: "#FFA366" + brightMagenta: "#A59AE3" + brightCyan: "#6EC8E6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 102.5 + black: 0 + red: 44.6 + green: 67.5 + yellow: 70.3 + blue: 59.4 + magenta: 47.2 + cyan: 61.2 + white: 102.5 + brightBlack: 26 + brightRed: 44.6 + brightGreen: 67.5 + brightYellow: 70.3 + brightBlue: 59.4 + brightMagenta: 47.2 + brightCyan: 61.2 + brightWhite: 102.5 diff --git a/themes/monospace-theme--monospace-dark.yaml b/themes/monospace-theme--monospace-dark.yaml new file mode 100644 index 00000000..5290d6d9 --- /dev/null +++ b/themes/monospace-theme--monospace-dark.yaml @@ -0,0 +1,53 @@ +name: "Monospace Theme (Monospace Dark)" +source: + marketplace_id: "keksiqc.idx-monospace-theme" + version: "1.5.0" + installs: 31610 + rating: 5 + ratings: 9 + author: "Keksi" + repo: "https://github.com/keksiqc/monospace-theme" + url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" + formats: null +colors: + bg: "#171F2B" + fg: "#D9DFE7" + black: "#738295" + red: "#F76769" + green: "#17B877" + yellow: "#FFA23E" + blue: "#708FFF" + magenta: "#A87FFB" + cyan: "#25A6E9" + white: "#A4AFBD" + brightBlack: "#8B98A9" + brightRed: "#FC8F8E" + brightGreen: "#66CE98" + brightYellow: "#FFC26E" + brightBlue: "#A2B6FF" + brightMagenta: "#C8AAFF" + brightCyan: "#71C2EE" + brightWhite: "#FAFBFE" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + pair: null + contrast: + fg: 84.9 + black: 33.1 + red: 44.5 + green: 50.2 + yellow: 62 + blue: 43.7 + magenta: 43.9 + cyan: 47.7 + white: 56.4 + brightBlack: 44.1 + brightRed: 56.8 + brightGreen: 63.6 + brightYellow: 74.4 + brightBlue: 62.6 + brightMagenta: 62.5 + brightCyan: 62.6 + brightWhite: 103.3 diff --git a/themes/monospace-theme--monospace-light.yaml b/themes/monospace-theme--monospace-light.yaml new file mode 100644 index 00000000..87e1de8f --- /dev/null +++ b/themes/monospace-theme--monospace-light.yaml @@ -0,0 +1,53 @@ +name: "Monospace Theme (Monospace Light)" +source: + marketplace_id: "keksiqc.idx-monospace-theme" + version: "1.5.0" + installs: 31610 + rating: 5 + ratings: 9 + author: "Keksi" + repo: "https://github.com/keksiqc/monospace-theme" + url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#1F2939" + black: "#333E4F" + red: "#D03941" + green: "#007B49" + yellow: "#A65921" + blue: "#3C60DD" + magenta: "#6F4CDE" + cyan: "#0075A2" + white: "#5D6A7D" + brightBlack: "#000000" + brightRed: "#A52430" + brightGreen: "#00522F" + brightYellow: "#904B1A" + brightBlue: "#002487" + brightMagenta: "#4D21BB" + brightCyan: "#00607E" + brightWhite: "#475365" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 101.4 + black: 95 + red: 72.2 + green: 76 + yellow: 75.1 + blue: 76.2 + magenta: 77.3 + cyan: 75 + white: 77.4 + brightBlack: 106 + brightRed: 83.8 + brightGreen: 91.1 + brightYellow: 82 + brightBlue: 98.3 + brightMagenta: 90.3 + brightCyan: 83.9 + brightWhite: 87.1 diff --git a/themes/monospace-theme--space-dark.yaml b/themes/monospace-theme--space-dark.yaml new file mode 100644 index 00000000..26543b6b --- /dev/null +++ b/themes/monospace-theme--space-dark.yaml @@ -0,0 +1,53 @@ +name: "Monospace Theme (Space Dark)" +source: + marketplace_id: "keksiqc.idx-monospace-theme" + version: "1.5.0" + installs: 31610 + rating: 5 + ratings: 9 + author: "Keksi" + repo: "https://github.com/keksiqc/monospace-theme" + url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" + formats: null +colors: + bg: "#1F1F1F" + fg: "#E1DFDF" + black: "#828282" + red: "#F76769" + green: "#17B877" + yellow: "#FFA23E" + blue: "#7895FF" + magenta: "#A87FFB" + cyan: "#25A6E9" + white: "#B0AFAF" + brightBlack: "#999999" + brightRed: "#FC8F8E" + brightGreen: "#66CE98" + brightYellow: "#FFC26E" + brightBlue: "#98B1FF" + brightMagenta: "#C8AAFF" + brightCyan: "#71C2EE" + brightWhite: "#FDFCFC" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 85.5 + black: 33.7 + red: 44.5 + green: 50.2 + yellow: 61.9 + blue: 46.4 + magenta: 43.9 + cyan: 47.7 + white: 57.1 + brightBlack: 45.2 + brightRed: 56.8 + brightGreen: 63.6 + brightYellow: 74.4 + brightBlue: 59.6 + brightMagenta: 62.5 + brightCyan: 62.6 + brightWhite: 104.1 diff --git a/themes/monospace-theme--space-light.yaml b/themes/monospace-theme--space-light.yaml new file mode 100644 index 00000000..2ee88158 --- /dev/null +++ b/themes/monospace-theme--space-light.yaml @@ -0,0 +1,53 @@ +name: "Monospace Theme (Space Light)" +source: + marketplace_id: "keksiqc.idx-monospace-theme" + version: "1.5.0" + installs: 31610 + rating: 5 + ratings: 9 + author: "Keksi" + repo: "https://github.com/keksiqc/monospace-theme" + url: "https://marketplace.visualstudio.com/items?itemName=keksiqc.idx-monospace-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#292929" + black: "#3E3E3E" + red: "#D03941" + green: "#007B49" + yellow: "#A65921" + blue: "#4563CA" + magenta: "#6F4CDE" + cyan: "#0075A2" + white: "#6A6A6A" + brightBlack: "#000000" + brightRed: "#A52430" + brightGreen: "#00522F" + brightYellow: "#904B1A" + brightBlue: "#002583" + brightMagenta: "#4D21BB" + brightCyan: "#00607E" + brightWhite: "#535353" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 101.4 + black: 94.8 + red: 72.2 + green: 76 + yellow: 75.1 + blue: 76.6 + magenta: 77.3 + cyan: 75 + white: 77 + brightBlack: 106 + brightRed: 83.8 + brightGreen: 91.1 + brightYellow: 82 + brightBlue: 98.5 + brightMagenta: 90.3 + brightCyan: 83.9 + brightWhite: 86.7 diff --git a/themes/monotone.yaml b/themes/monotone.yaml new file mode 100644 index 00000000..52b7afc0 --- /dev/null +++ b/themes/monotone.yaml @@ -0,0 +1,53 @@ +name: "monotone" +source: + marketplace_id: "0x706b-extensions.monotone-vscode-theme" + version: "0.0.3" + installs: 1725 + rating: 5 + ratings: 1 + author: "0x706b" + repo: "https://github.com/0x706b/monotone-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=0x706b-extensions.monotone-vscode-theme" + formats: null +colors: + bg: "#121111" + fg: "#BEBABA" + black: "#222020" + red: "#A54434" + green: "#7FAC71" + yellow: "#D3CFCF" + blue: "#9D9695" + magenta: "#9D9695" + cyan: "#9D9695" + white: "#9D9695" + brightBlack: "#5F5959" + brightRed: "#FF2D3C" + brightGreen: "#D3CFCF" + brightYellow: "#FFAA23" + brightBlue: "#7488AD" + brightMagenta: "#D3CFCF" + brightCyan: "#D3CFCF" + brightWhite: "#D3CFCF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.1 + black: 0 + red: 21.8 + green: 50.5 + yellow: 77.5 + blue: 45.9 + magenta: 45.9 + cyan: 45.9 + white: 45.9 + brightBlack: 17.7 + brightRed: 38.7 + brightGreen: 77.5 + brightYellow: 66 + brightBlue: 37.8 + brightMagenta: 77.5 + brightCyan: 77.5 + brightWhite: 77.5 diff --git a/themes/monove.yaml b/themes/monove.yaml new file mode 100644 index 00000000..e92f485b --- /dev/null +++ b/themes/monove.yaml @@ -0,0 +1,53 @@ +name: "monove" +source: + marketplace_id: "0xdhrv.monove" + version: "0.0.2" + installs: 123 + rating: 0 + ratings: 0 + author: "Dhruv Suthar" + repo: "https://github.com/0xdhrv/monove-vscode-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=0xdhrv.monove" + formats: null +colors: + bg: "#000000" + fg: "#CDCDCD" + black: "#000000" + red: "#717171" + green: "#4B4B4B" + yellow: "#8F8F8F" + blue: "#3C3C3C" + magenta: "#575757" + cyan: "#444444" + white: "#CDCDCD" + brightBlack: "#3C3C3C" + brightRed: "#909090" + brightGreen: "#575757" + brightYellow: "#8F8F8F" + brightBlue: "#444444" + brightMagenta: "#717171" + brightCyan: "#4B4B4B" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 76.3 + black: 0 + red: 27.8 + green: 12.3 + yellow: 42.1 + blue: 0 + magenta: 16.9 + cyan: 9.8 + white: 76.3 + brightBlack: 0 + brightRed: 42.6 + brightGreen: 16.9 + brightYellow: 42.1 + brightBlue: 9.8 + brightMagenta: 27.8 + brightCyan: 12.3 + brightWhite: 107.9 diff --git a/themes/monte-cristo.yaml b/themes/monte-cristo.yaml new file mode 100644 index 00000000..7133236e --- /dev/null +++ b/themes/monte-cristo.yaml @@ -0,0 +1,53 @@ +name: "Monte Cristo" +source: + marketplace_id: "monte-cristo-theme.monte-cristo" + version: "1.1.0" + installs: 142 + rating: 0 + ratings: 0 + author: "Monte Cristo Theme" + repo: "https://github.com/monte-cristos/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=monte-cristo-theme.monte-cristo" + formats: null +colors: + bg: "#1C1D26" + fg: "#FAFAFA" + black: "#140021" + red: "#FF2E52" + green: "#30F1A0" + yellow: "#FFF94B" + blue: "#0060E0" + magenta: "#FF4396" + cyan: "#42D3F2" + white: "#FAFAFA" + brightBlack: "#00B3F5" + brightRed: "#FF505F" + brightGreen: "#53FEBE" + brightYellow: "#FFEA7F" + brightBlue: "#00B3F5" + brightMagenta: "#FF6BBB" + brightCyan: "#00DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 280 + pair: null + contrast: + fg: 102.8 + black: 0 + red: 37.8 + green: 79.5 + yellow: 98.3 + blue: 22.9 + magenta: 41.8 + cyan: 68.6 + white: 102.8 + brightBlack: 53.8 + brightRed: 42 + brightGreen: 88.1 + brightYellow: 92 + brightBlue: 53.8 + brightMagenta: 50.1 + brightCyan: 73.4 + brightWhite: 106.1 diff --git a/themes/moonbloom-official-theme.yaml b/themes/moonbloom-official-theme.yaml new file mode 100644 index 00000000..a86812bf --- /dev/null +++ b/themes/moonbloom-official-theme.yaml @@ -0,0 +1,53 @@ +name: "Moonbloom Official Theme" +source: + marketplace_id: "Moonbloom.moonbloom-theme" + version: "1.1.2" + installs: 838 + rating: 5 + ratings: 1 + author: "Moonbloom" + repo: "https://github.com/moonbloom-theme/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=Moonbloom.moonbloom-theme" + formats: null +colors: + bg: "#1D1E27" + fg: "#D1D2E8" + black: "#191A21" + red: "#E66D75" + green: "#93C591" + yellow: "#D9B469" + blue: "#5A9BCF" + magenta: "#BB83D8" + cyan: "#4FA8B8" + white: "#9B9BBA" + brightBlack: "#8282A9" + brightRed: "#F17C88" + brightGreen: "#A1D79F" + brightYellow: "#E8C87E" + brightBlue: "#6EB4E0" + brightMagenta: "#C993E9" + brightCyan: "#68C7D6" + brightWhite: "#E1E2ED" +meta: + mode: "dark" + accent: "orange" + hue: 280 + pair: null + contrast: + fg: 78.3 + black: 0 + red: 42.6 + green: 62.4 + yellow: 62.7 + blue: 43.5 + magenta: 45.3 + cyan: 46.9 + white: 47.6 + brightBlack: 35.4 + brightRed: 49.1 + brightGreen: 72.3 + brightYellow: 73.5 + brightBlue: 55.7 + brightMagenta: 53.4 + brightCyan: 63 + brightWhite: 87.6 diff --git a/themes/moonlight-vscode-theme.yaml b/themes/moonlight-vscode-theme.yaml new file mode 100644 index 00000000..c661a34f --- /dev/null +++ b/themes/moonlight-vscode-theme.yaml @@ -0,0 +1,53 @@ +name: "Moonlight VSCode Theme 🌌" +source: + marketplace_id: "v-amorim.moonlight-vscode-theme" + version: "5.4.0" + installs: 155 + rating: 5 + ratings: 3 + author: "v-amorim" + repo: "https://github.com/v-amorim/moonlight-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=v-amorim.moonlight-vscode-theme" + formats: null +colors: + bg: "#0D0E17" + fg: "#F8EAF8" + black: "#191726" + red: "#CA5F71" + green: "#49EF95" + yellow: "#FAB958" + blue: "#7386D0" + magenta: "#B86CB3" + cyan: "#A5CFFF" + white: "#F8EAF8" + brightBlack: "#4C4C4C" + brightRed: "#E83974" + brightGreen: "#99E6B3" + brightYellow: "#FFCB6B" + brightBlue: "#79C0FF" + brightMagenta: "#B58EE8" + brightCyan: "#89DDFF" + brightWhite: "#F8EAF8" +meta: + mode: "dark" + accent: "red" + hue: 279 + pair: null + contrast: + fg: 96.5 + black: 0 + red: 35.4 + green: 80.2 + yellow: 71.3 + blue: 39.2 + magenta: 38 + cyan: 74.9 + white: 96.5 + brightBlack: 12.3 + brightRed: 35.6 + brightGreen: 80.9 + brightYellow: 79.6 + brightBlue: 64.9 + brightMagenta: 50.5 + brightCyan: 78.9 + brightWhite: 96.5 diff --git a/themes/moonspell-themes.yaml b/themes/moonspell-themes.yaml new file mode 100644 index 00000000..bf58326a --- /dev/null +++ b/themes/moonspell-themes.yaml @@ -0,0 +1,53 @@ +name: "Moonspell Themes" +source: + marketplace_id: "Oodri.moonspell-themes" + version: "0.1.2" + installs: 354 + rating: 5 + ratings: 1 + author: "Oodri" + repo: "https://github.com/ElvannAbendroth/moonspell-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Oodri.moonspell-themes" + formats: null +colors: + bg: "#16191E" + fg: "#7B88A1" + black: "#B8B8B8" + red: "#DDA2F6" + green: "#A571F4" + yellow: "#B396F9" + blue: "#9AEFEA" + magenta: "#DDA2F6" + cyan: "#9AEFEA" + white: "#E1E1E1" + brightBlack: "#E1E1E1" + brightRed: "#DDA2F6" + brightGreen: "#A571F4" + brightYellow: "#B396F9" + brightBlue: "#9AEFEA" + brightMagenta: "#DDA2F6" + brightCyan: "#9AEFEA" + brightWhite: "#E1E1E1" +meta: + mode: "dark" + accent: "magenta" + hue: 261 + pair: null + contrast: + fg: 37.2 + black: 62.8 + red: 62.9 + green: 39.9 + yellow: 53.1 + blue: 86.8 + magenta: 62.9 + cyan: 86.8 + white: 87.3 + brightBlack: 87.3 + brightRed: 62.9 + brightGreen: 39.9 + brightYellow: 53.1 + brightBlue: 86.8 + brightMagenta: 62.9 + brightCyan: 86.8 + brightWhite: 87.3 diff --git a/themes/more-colorful.yaml b/themes/more-colorful.yaml new file mode 100644 index 00000000..40f34c76 --- /dev/null +++ b/themes/more-colorful.yaml @@ -0,0 +1,53 @@ +name: "More Colorful" +source: + marketplace_id: "Marnic1505.more-colorful" + version: "0.0.1" + installs: 761 + rating: 5 + ratings: 2 + author: "Marnic1505" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Marnic1505.more-colorful" + formats: null +colors: + bg: "#000000" + fg: "#00FFF3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 91.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/morgan-codes-theme.yaml b/themes/morgan-codes-theme.yaml new file mode 100644 index 00000000..9f5881c6 --- /dev/null +++ b/themes/morgan-codes-theme.yaml @@ -0,0 +1,53 @@ +name: "morgan.codes-theme" +source: + marketplace_id: "morgan-codes.morgan-codes-vscode-theme" + version: "0.0.5" + installs: 49393 + rating: 4.64 + ratings: 11 + author: "morgan-codes" + repo: "https://github.com/morganrmarie/morgancodes-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=morgan-codes.morgan-codes-vscode-theme" + formats: null +colors: + bg: "#111111" + fg: "#FF8B56" + black: "#2A3134" + red: "#FC4384" + green: "#55E513" + yellow: "#A553C6" + blue: "#FC4384" + magenta: "#AE89FE" + cyan: "#708387" + white: "#D5D5D0" + brightBlack: "#4A4E4F" + brightRed: "#FC4384" + brightGreen: "#55E513" + brightYellow: "#41F0FF" + brightBlue: "#41F0FF" + brightMagenta: "#AE89FE" + brightCyan: "#41F0FF" + brightWhite: "#F9F9F4" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 56.4 + black: 0 + red: 41.7 + green: 73.6 + yellow: 30.3 + blue: 41.7 + magenta: 49.4 + cyan: 34.1 + white: 80.4 + brightBlack: 12.7 + brightRed: 41.7 + brightGreen: 73.6 + brightYellow: 84.6 + brightBlue: 84.6 + brightMagenta: 49.4 + brightCyan: 84.6 + brightWhite: 103.2 diff --git a/themes/morita--azul.yaml b/themes/morita--azul.yaml new file mode 100644 index 00000000..62d088b1 --- /dev/null +++ b/themes/morita--azul.yaml @@ -0,0 +1,53 @@ +name: "morita (Azul)" +source: + marketplace_id: "YesCode.morita" + version: "0.0.18" + installs: 228 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/MyThemes" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" + formats: null +colors: + bg: "#241D31" + fg: "#DDDDDD" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#986ABE" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: 300 + pair: null + contrast: + fg: 83.8 + black: 0 + red: 40.8 + green: 59.8 + yellow: 71.8 + blue: 81.6 + magenta: 18.3 + cyan: 48.2 + white: 46 + brightBlack: 17.4 + brightRed: 40.8 + brightGreen: 31.6 + brightYellow: 78.5 + brightBlue: 17.5 + brightMagenta: 18.3 + brightCyan: 48.2 + brightWhite: 97.6 diff --git a/themes/morita--sober.yaml b/themes/morita--sober.yaml new file mode 100644 index 00000000..51dcd131 --- /dev/null +++ b/themes/morita--sober.yaml @@ -0,0 +1,53 @@ +name: "morita (Sober)" +source: + marketplace_id: "YesCode.morita" + version: "0.0.18" + installs: 228 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/MyThemes" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.morita" + formats: null +colors: + bg: "#3A032D" + fg: "#CDCDCD" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#6A59AF" + brightYellow: "#DFE6E9" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: 340 + pair: null + contrast: + fg: 74 + black: 0 + red: 40.8 + green: 59.8 + yellow: 71.8 + blue: 81.6 + magenta: 18.3 + cyan: 48.2 + white: 46 + brightBlack: 17.4 + brightRed: 40.8 + brightGreen: 21 + brightYellow: 88.6 + brightBlue: 17.5 + brightMagenta: 18.3 + brightCyan: 48.2 + brightWhite: 97.6 diff --git a/themes/mosaic-theme.yaml b/themes/mosaic-theme.yaml new file mode 100644 index 00000000..b444306c --- /dev/null +++ b/themes/mosaic-theme.yaml @@ -0,0 +1,53 @@ +name: "Mosaic Theme" +source: + marketplace_id: "vitoravelino.mosaic" + version: "0.0.1" + installs: 11266 + rating: 5 + ratings: 2 + author: "vitoravelino" + repo: "https://github.com/vitoravelino/vscode-mosaic" + url: "https://marketplace.visualstudio.com/items?itemName=vitoravelino.mosaic" + formats: null +colors: + bg: "#232834" + fg: "#DADBC0" + black: "#191E2A" + red: "#ED8274" + green: "#A6CC70" + yellow: "#FAD07B" + blue: "#8BCCD6" + magenta: "#CFBAFA" + cyan: "#95E6CB" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F28779" + brightGreen: "#BAE67E" + brightYellow: "#FFD580" + brightBlue: "#8BCCD6" + brightMagenta: "#D4BFFF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + pair: null + contrast: + fg: 80.1 + black: 0 + red: 47.9 + green: 65 + yellow: 78 + blue: 66 + magenta: 67.6 + cyan: 78.4 + white: 69.2 + brightBlack: 20.4 + brightRed: 50.4 + brightGreen: 79.5 + brightYellow: 81.1 + brightBlue: 66 + brightMagenta: 70.5 + brightCyan: 78.4 + brightWhite: 104.4 diff --git a/themes/mr-robot-dark-theme.yaml b/themes/mr-robot-dark-theme.yaml new file mode 100644 index 00000000..8bbb05a2 --- /dev/null +++ b/themes/mr-robot-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Mr Robot Dark Theme" +source: + marketplace_id: "Calmajaoo.Mr-Robot-theme" + version: "1.0.0" + installs: 2161 + rating: 0 + ratings: 0 + author: "João Victor do Nascimento" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Calmajaoo.Mr-Robot-theme" + formats: null +colors: + bg: "#172A2E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 212 + pair: null + contrast: + fg: 77.2 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.1 + magenta: 27.4 + cyan: 45.2 + white: 87.7 + brightBlack: 19.7 + brightRed: 36.2 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.7 + brightMagenta: 43 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/mt-doom.yaml b/themes/mt-doom.yaml new file mode 100644 index 00000000..78e69e43 --- /dev/null +++ b/themes/mt-doom.yaml @@ -0,0 +1,53 @@ +name: "Mt. Doom" +source: + marketplace_id: "nathanhedemark.greyandorange" + version: "2.1.9" + installs: 488 + rating: 0 + ratings: 0 + author: "nathanhedemark" + repo: "https://github.com/NathanH2111/Mt.-Doom-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=nathanhedemark.greyandorange" + formats: null +colors: + bg: "#060707" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F8F8F8" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.4 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 103.2 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 91 diff --git a/themes/muromachi-deluxe.yaml b/themes/muromachi-deluxe.yaml new file mode 100644 index 00000000..25612b61 --- /dev/null +++ b/themes/muromachi-deluxe.yaml @@ -0,0 +1,53 @@ +name: "Muromachi Deluxe" +source: + marketplace_id: "Hoodnight.muromachi-deluxe" + version: "1.0.8" + installs: 862 + rating: 5 + ratings: 1 + author: "Charlie Timlock" + repo: "https://github.com/ctimlock/muromachi" + url: "https://marketplace.visualstudio.com/items?itemName=Hoodnight.muromachi-deluxe" + formats: null +colors: + bg: "#1D1E1F" + fg: "#F8F8F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.2 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/murora.yaml b/themes/murora.yaml new file mode 100644 index 00000000..16580403 --- /dev/null +++ b/themes/murora.yaml @@ -0,0 +1,53 @@ +name: "murora" +source: + marketplace_id: "MuhammadMwinchande.murora" + version: "0.1.0" + installs: 114 + rating: 4 + ratings: 1 + author: "Muhammad Mwinchande" + repo: "https://github.com/ammwinchande/murora" + url: "https://marketplace.visualstudio.com/items?itemName=MuhammadMwinchande.murora" + formats: null +colors: + bg: "#FFFFFF" + fg: "#222222" + black: "#333333" + red: "#E84135" + green: "#34A853" + yellow: "#FCBC05" + blue: "#4285F4" + magenta: "#EA4334" + cyan: "#4ADC6E" + white: "#222222" + brightBlack: "#555555" + brightRed: "#FF3E25" + brightGreen: "#4ADC6E" + brightYellow: "#FCDE00" + brightBlue: "#4FAFFF" + brightMagenta: "#EA4334" + brightCyan: "#4ADC6E" + brightWhite: "#222222" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.9 + black: 98.7 + red: 66 + green: 57 + yellow: 30.2 + blue: 62.8 + magenta: 65.3 + cyan: 32.6 + white: 102.9 + brightBlack: 85.9 + brightRed: 61.1 + brightGreen: 32.6 + brightYellow: 16.8 + brightBlue: 46.2 + brightMagenta: 65.3 + brightCyan: 32.6 + brightWhite: 102.9 diff --git a/themes/my-custom-theme-extension.yaml b/themes/my-custom-theme-extension.yaml new file mode 100644 index 00000000..6c0b63db --- /dev/null +++ b/themes/my-custom-theme-extension.yaml @@ -0,0 +1,53 @@ +name: "my-custom-theme-extension" +source: + marketplace_id: "GautamSagarMallela.my-custom-theme-extension" + version: "1.0.2" + installs: 220 + rating: 5 + ratings: 2 + author: "Gautam Sagar Mallela" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GautamSagarMallela.my-custom-theme-extension" + formats: null +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#FFFF66" + brightBlue: "#6666FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 35.7 + green: 84.6 + yellow: 100.9 + blue: 14.4 + magenta: 44.4 + cyan: 90.3 + white: 78.7 + brightBlack: 21.2 + brightRed: 46.1 + brightGreen: 87.2 + brightYellow: 101.4 + brightBlue: 30.7 + brightMagenta: 53 + brightCyan: 92.2 + brightWhite: 78.7 diff --git a/themes/my-theme-luisfelipe.yaml b/themes/my-theme-luisfelipe.yaml new file mode 100644 index 00000000..df45e1db --- /dev/null +++ b/themes/my-theme-luisfelipe.yaml @@ -0,0 +1,53 @@ +name: "my-theme-luisfelipe" +source: + marketplace_id: "LuisFelipe.my-theme-luisfelipe" + version: "0.0.1" + installs: 32 + rating: 0 + ratings: 0 + author: "Luis Felipe" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LuisFelipe.my-theme-luisfelipe" + formats: null +colors: + bg: "#27272A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 77.2 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.1 + magenta: 27.5 + cyan: 45.3 + white: 87.7 + brightBlack: 19.7 + brightRed: 36.3 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.7 + brightMagenta: 43.1 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/mystic-blue.yaml b/themes/mystic-blue.yaml new file mode 100644 index 00000000..2391387c --- /dev/null +++ b/themes/mystic-blue.yaml @@ -0,0 +1,53 @@ +name: "Mystic blue" +source: + marketplace_id: "xynny.mysticblue-theme" + version: "0.0.1" + installs: 330 + rating: 0 + ratings: 0 + author: "xynny" + repo: "https://github.com/xynnylol/vsthemes" + url: "https://marketplace.visualstudio.com/items?itemName=xynny.mysticblue-theme" + formats: null +colors: + bg: "#001060" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 78.1 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26 + magenta: 28.4 + cyan: 46.2 + white: 88.6 + brightBlack: 20.6 + brightRed: 37.2 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/mystic-dark-collection--deep-ocean.yaml b/themes/mystic-dark-collection--deep-ocean.yaml new file mode 100644 index 00000000..728b93f3 --- /dev/null +++ b/themes/mystic-dark-collection--deep-ocean.yaml @@ -0,0 +1,53 @@ +name: "Mystic Dark Collection (Deep Ocean)" +source: + marketplace_id: "codeM.mystic-dark-collection" + version: "0.1.0" + installs: 86 + rating: 0 + ratings: 0 + author: "Mustafa Özdemir" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=codeM.mystic-dark-collection" + formats: null +colors: + bg: "#0A1A2A" + fg: "#E0F7FA" + black: "#0A1A2A" + red: "#FF4757" + green: "#48D1CC" + yellow: "#FFA726" + blue: "#4169E1" + magenta: "#FF6B6B" + cyan: "#40E0D0" + white: "#E0F7FA" + brightBlack: "#1A2F3F" + brightRed: "#FF6B6B" + brightGreen: "#66D9EF" + brightYellow: "#FFCC02" + brightBlue: "#6495ED" + brightMagenta: "#FF8A80" + brightCyan: "#48D1CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 250 + pair: null + contrast: + fg: 98.4 + black: 0 + red: 41 + green: 66.4 + yellow: 64.2 + blue: 27.2 + magenta: 47.8 + cyan: 73.6 + white: 98.4 + brightBlack: 0 + brightRed: 47.8 + brightGreen: 73.1 + brightYellow: 78.3 + brightBlue: 44.4 + brightMagenta: 56.2 + brightCyan: 66.4 + brightWhite: 106.6 diff --git a/themes/mystic-fusion.yaml b/themes/mystic-fusion.yaml new file mode 100644 index 00000000..42b4e3ab --- /dev/null +++ b/themes/mystic-fusion.yaml @@ -0,0 +1,53 @@ +name: "Mystic Fusion" +source: + marketplace_id: "MrudulMistri.mystic-fusion-theme" + version: "1.0.18" + installs: 74 + rating: 5 + ratings: 1 + author: "Mrudul Mistri" + repo: "https://github.com/Mrudul1234/mystic-fusion-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MrudulMistri.mystic-fusion-theme" + formats: null +colors: + bg: "#16111B" + fg: "#E4EEF0" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 307 + pair: null + contrast: + fg: 94.9 + black: 0 + red: 27.1 + green: 53.3 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.4 diff --git a/themes/nachop-theme--piggy.yaml b/themes/nachop-theme--piggy.yaml new file mode 100644 index 00000000..1cf8642d --- /dev/null +++ b/themes/nachop-theme--piggy.yaml @@ -0,0 +1,53 @@ +name: "Nachop theme (Piggy)" +source: + marketplace_id: "nachop51.nachop-theme" + version: "2.0.0" + installs: 303 + rating: 5 + ratings: 1 + author: "Nachop Peralta" + repo: "https://github.com/nachop51/nachop-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nachop51.nachop-theme" + formats: null +colors: + bg: "#222230" + fg: "#DDC8EB" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#F0C758" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#FFEC80" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 284 + pair: null + contrast: + fg: 75.1 + black: 0 + red: 35.1 + green: 58.7 + yellow: 72.9 + blue: 48 + magenta: 37.4 + cyan: 50.9 + white: 81.4 + brightBlack: 13.8 + brightRed: 44.5 + brightGreen: 75.2 + brightYellow: 92.1 + brightBlue: 62.1 + brightMagenta: 48.6 + brightCyan: 66.2 + brightWhite: 89 diff --git a/themes/nairobi.yaml b/themes/nairobi.yaml new file mode 100644 index 00000000..36790026 --- /dev/null +++ b/themes/nairobi.yaml @@ -0,0 +1,53 @@ +name: "Nairobi" +source: + marketplace_id: "AmaniJ.nairobi-dark" + version: "0.0.1" + installs: 390 + rating: 5 + ratings: 1 + author: "Amani. J" + repo: "https://github.com/amani-joseph/Nairobi-dark-VS-Code-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=AmaniJ.nairobi-dark" + formats: null +colors: + bg: "#030D22" + fg: "#4AC9B8" + black: "#3A1B75" + red: "#EE1682" + green: "#06AD00" + yellow: "#FFD400" + blue: "#3787D6" + magenta: "#EA00D9" + cyan: "#0AB2FA" + white: "#F2F8FF" + brightBlack: "#5C6D75" + brightRed: "#FF2E97" + brightGreen: "#3DD69C" + brightYellow: "#FFD400" + brightBlue: "#5994CE" + brightMagenta: "#EA00D9" + brightCyan: "#4BC5FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 62.8 + black: 0 + red: 35.1 + green: 45.5 + yellow: 82.6 + blue: 36.6 + magenta: 38.3 + cyan: 55.1 + white: 102.4 + brightBlack: 24.5 + brightRed: 41.2 + brightGreen: 67.5 + brightYellow: 82.6 + brightBlue: 42.2 + brightMagenta: 38.3 + brightCyan: 64.4 + brightWhite: 107.5 diff --git a/themes/naomi-s-themes--ocean-breeze.yaml b/themes/naomi-s-themes--ocean-breeze.yaml new file mode 100644 index 00000000..629e42b8 --- /dev/null +++ b/themes/naomi-s-themes--ocean-breeze.yaml @@ -0,0 +1,53 @@ +name: "Naomi's Themes (Ocean Breeze)" +source: + marketplace_id: "nhcarrigan.naomis-themes" + version: "2.3.0" + installs: 69 + rating: 0 + ratings: 0 + author: "NHCarrigan" + repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" + formats: null +colors: + bg: "#012A22" + fg: "#ABFCEC" + black: "#001610" + red: "#FF6B6B" + green: "#4DDBBA" + yellow: "#FFD93D" + blue: "#6BC5FF" + magenta: "#FF92DF" + cyan: "#89FFEA" + white: "#C4FCF2" + brightBlack: "#012A22" + brightRed: "#FF8585" + brightGreen: "#6BEDCC" + brightYellow: "#FFE074" + brightBlue: "#92D5FF" + brightMagenta: "#FFB2E7" + brightCyan: "#A9FFF0" + brightWhite: "#E2FCF8" +meta: + mode: "dark" + accent: "orange" + hue: 176 + pair: null + contrast: + fg: 93 + black: 0 + red: 46.1 + green: 68.9 + yellow: 82.3 + blue: 63.6 + magenta: 60.6 + cyan: 91.8 + white: 95.6 + brightBlack: 0 + brightRed: 53.2 + brightGreen: 79.7 + brightYellow: 86.1 + brightBlue: 73.3 + brightMagenta: 71.5 + brightCyan: 94.5 + brightWhite: 99.3 diff --git a/themes/naomi-s-themes--sakura-dreams-dark.yaml b/themes/naomi-s-themes--sakura-dreams-dark.yaml new file mode 100644 index 00000000..76309d2c --- /dev/null +++ b/themes/naomi-s-themes--sakura-dreams-dark.yaml @@ -0,0 +1,53 @@ +name: "Naomi's Themes (Sakura Dreams Dark)" +source: + marketplace_id: "nhcarrigan.naomis-themes" + version: "2.3.0" + installs: 69 + rating: 0 + ratings: 0 + author: "NHCarrigan" + repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" + formats: null +colors: + bg: "#2A0A18" + fg: "#FFB6C1" + black: "#4A112A" + red: "#FF69B4" + green: "#E35A8F" + yellow: "#D45A88" + blue: "#C96385" + magenta: "#E35A8F" + cyan: "#FF9AAC" + white: "#FFD1DC" + brightBlack: "#3A0D22" + brightRed: "#FF1493" + brightGreen: "#FF77A8" + brightYellow: "#FFB6C1" + brightBlue: "#D87093" + brightMagenta: "#FF85A2" + brightCyan: "#FFAFC5" + brightWhite: "#FFF5F7" +meta: + mode: "dark" + accent: "red" + hue: 356 + pair: null + contrast: + fg: 73.1 + black: 0 + red: 50 + green: 39.6 + yellow: 36.3 + blue: 36 + magenta: 39.6 + cyan: 62.7 + white: 84.7 + brightBlack: 0 + brightRed: 39.1 + brightGreen: 52.7 + brightYellow: 73.1 + brightBlue: 42.4 + brightMagenta: 56.1 + brightCyan: 70.7 + brightWhite: 101.7 diff --git a/themes/naomi-s-themes--sakura-dreams.yaml b/themes/naomi-s-themes--sakura-dreams.yaml new file mode 100644 index 00000000..fa83f4b6 --- /dev/null +++ b/themes/naomi-s-themes--sakura-dreams.yaml @@ -0,0 +1,53 @@ +name: "Naomi's Themes (Sakura Dreams)" +source: + marketplace_id: "nhcarrigan.naomis-themes" + version: "2.3.0" + installs: 69 + rating: 0 + ratings: 0 + author: "NHCarrigan" + repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" + formats: null +colors: + bg: "#FFEFEF" + fg: "#D87093" + black: "#FFE4E8" + red: "#FF1493" + green: "#FF69B4" + yellow: "#FFB6C1" + blue: "#DB7093" + magenta: "#FF85A2" + cyan: "#FFAFC5" + white: "#FFD1DC" + brightBlack: "#FFEFEF" + brightRed: "#FF0066" + brightGreen: "#FF77A8" + brightYellow: "#FFA6C9" + brightBlue: "#F08080" + brightMagenta: "#FF9AAC" + brightCyan: "#FFC0CB" + brightWhite: "#FFF5F7" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 50.8 + black: 0 + red: 54.1 + green: 43.4 + yellow: 21.3 + blue: 50.3 + magenta: 37.5 + cyan: 23.5 + white: 10.3 + brightBlack: 0 + brightRed: 55.7 + brightGreen: 40.8 + brightYellow: 26.3 + brightBlue: 42.8 + brightMagenta: 31.2 + brightCyan: 17.4 + brightWhite: 0 diff --git a/themes/naomi-s-themes--witchy-dark.yaml b/themes/naomi-s-themes--witchy-dark.yaml new file mode 100644 index 00000000..8a36d3d0 --- /dev/null +++ b/themes/naomi-s-themes--witchy-dark.yaml @@ -0,0 +1,53 @@ +name: "Naomi's Themes (Witchy Dark)" +source: + marketplace_id: "nhcarrigan.naomis-themes" + version: "2.3.0" + installs: 69 + rating: 0 + ratings: 0 + author: "NHCarrigan" + repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" + formats: null +colors: + bg: "#0A0009" + fg: "#E8D5E8" + black: "#2B1B3D" + red: "#A8577E" + green: "#8A7A9E" + yellow: "#D4A5C7" + blue: "#7B5EA8" + magenta: "#A8577E" + cyan: "#B8A0D0" + white: "#D4A5C7" + brightBlack: "#44275A" + brightRed: "#C96B8E" + brightGreen: "#A898C0" + brightYellow: "#E8D5E8" + brightBlue: "#9B7EC8" + brightMagenta: "#D4A5C7" + brightCyan: "#D0B8E8" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "red" + hue: 331 + pair: null + contrast: + fg: 84.5 + black: 0 + red: 28.4 + green: 35 + yellow: 61.2 + blue: 25.8 + magenta: 28.4 + cyan: 55.9 + white: 61.2 + brightBlack: 0 + brightRed: 39.3 + brightGreen: 50.2 + brightYellow: 84.5 + brightBlue: 40.5 + brightMagenta: 61.2 + brightCyan: 69.4 + brightWhite: 101.3 diff --git a/themes/naomi-s-themes-trans-pride-light-naomi.yaml b/themes/naomi-s-themes-trans-pride-light-naomi.yaml new file mode 100644 index 00000000..6de2f5a3 --- /dev/null +++ b/themes/naomi-s-themes-trans-pride-light-naomi.yaml @@ -0,0 +1,53 @@ +name: "Naomi's Themes (Trans Pride Light (Naomi))" +source: + marketplace_id: "nhcarrigan.naomis-themes" + version: "2.3.0" + installs: 69 + rating: 0 + ratings: 0 + author: "NHCarrigan" + repo: "https://git.nhcarrigan.com/nhcarrigan/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=nhcarrigan.naomis-themes" + formats: null +colors: + bg: "#E6F6FF" + fg: "#DB7093" + black: "#E6F6FF" + red: "#FF4F7A" + green: "#C75B7C" + yellow: "#FF96B5" + blue: "#DB7093" + magenta: "#C96385" + cyan: "#FF85A2" + white: "#2A0A18" + brightBlack: "#E6F6FF" + brightRed: "#FF2F66" + brightGreen: "#D87093" + brightYellow: "#FFB6C1" + brightBlue: "#E35A8F" + brightMagenta: "#D45A88" + brightCyan: "#FF9AAC" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 50.8 + black: 0 + red: 50.6 + green: 60.1 + yellow: 32.6 + blue: 50.8 + magenta: 57.7 + cyan: 38 + white: 97.7 + brightBlack: 0 + brightRed: 54.7 + brightGreen: 51.3 + brightYellow: 21.8 + brightBlue: 54.1 + brightMagenta: 57.4 + brightCyan: 31.7 + brightWhite: 99.1 diff --git a/themes/narato--kanao.yaml b/themes/narato--kanao.yaml new file mode 100644 index 00000000..27b4305d --- /dev/null +++ b/themes/narato--kanao.yaml @@ -0,0 +1,53 @@ +name: "narato (Kanao)" +source: + marketplace_id: "MuhammadHanif.narato" + version: "1.4.0" + installs: 439 + rating: 0 + ratings: 0 + author: "Muhammad Hanif" + repo: "https://github.com/mhaniflab/narato" + url: "https://marketplace.visualstudio.com/items?itemName=MuhammadHanif.narato" + formats: null +colors: + bg: "#191919" + fg: "#F5E8C7" + black: "#191919" + red: "#E82424" + green: "#323232" + yellow: "#FF9E3B" + blue: "#E6A4B4" + magenta: "#FFD369" + cyan: "#F5E8C7" + white: "#F5E8C7" + brightBlack: "#0F0F0F" + brightRed: "#FF5D62" + brightGreen: "#98BB6C" + brightYellow: "#EEEEEE" + brightBlue: "#7FB4CA" + brightMagenta: "#F5E8C7" + brightCyan: "#A3D4D5" + brightWhite: "#F5E8C7" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.2 + black: 0 + red: 31.6 + green: 0 + yellow: 61.3 + blue: 61.7 + magenta: 82 + cyan: 92.2 + white: 92.2 + brightBlack: 0 + brightRed: 44.8 + brightGreen: 58.3 + brightYellow: 95.5 + brightBlue: 56.4 + brightMagenta: 92.2 + brightCyan: 73.9 + brightWhite: 92.2 diff --git a/themes/narixius-theme.yaml b/themes/narixius-theme.yaml new file mode 100644 index 00000000..e6a0b806 --- /dev/null +++ b/themes/narixius-theme.yaml @@ -0,0 +1,53 @@ +name: "Narixius Theme" +source: + marketplace_id: "Narixius.narixius-vscode-theme" + version: "0.0.13" + installs: 121 + rating: 5 + ratings: 1 + author: "Narixius" + repo: "https://github.com/Narixius/narixius-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Narixius.narixius-vscode-theme" + formats: null +colors: + bg: "#0F1419" + fg: "#BFBAB0" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 249 + pair: null + contrast: + fg: 64.7 + black: 9.2 + red: 37 + green: 60.7 + yellow: 48.9 + blue: 50 + magenta: 39.4 + cyan: 52.8 + white: 83.4 + brightBlack: 15.8 + brightRed: 46.4 + brightGreen: 77.1 + brightYellow: 61.5 + brightBlue: 64.1 + brightMagenta: 50.6 + brightCyan: 68.1 + brightWhite: 91 diff --git a/themes/naruto-shinobi-theme--hashirama-senju-god-of-shinobi.yaml b/themes/naruto-shinobi-theme--hashirama-senju-god-of-shinobi.yaml new file mode 100644 index 00000000..56e0fbc2 --- /dev/null +++ b/themes/naruto-shinobi-theme--hashirama-senju-god-of-shinobi.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Hashirama Senju - God of Shinobi)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#1E2B1E" + fg: "#E8F5E8" + black: "#1E2B1E" + red: "#C85A54" + green: "#7FAF6E" + yellow: "#D4A574" + blue: "#6B9F7F" + magenta: "#9D7F6A" + cyan: "#5A8C6A" + white: "#D4E8D4" + brightBlack: "#8B9A8B" + brightRed: "#D87A73" + brightGreen: "#94C583" + brightYellow: "#E5BB8F" + brightBlue: "#84B598" + brightMagenta: "#B89885" + brightCyan: "#72A77F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 145 + pair: null + contrast: + fg: 95.5 + black: 0 + red: 30.2 + green: 48.8 + yellow: 54.9 + blue: 41.1 + magenta: 33.7 + cyan: 31.9 + white: 86.1 + brightBlack: 42.2 + brightRed: 41.7 + brightGreen: 60.6 + brightYellow: 66.6 + brightBlue: 52.9 + brightMagenta: 46.6 + brightCyan: 44.9 + brightWhite: 104.5 diff --git a/themes/naruto-shinobi-theme--naruto-akatsuki.yaml b/themes/naruto-shinobi-theme--naruto-akatsuki.yaml new file mode 100644 index 00000000..e5789312 --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-akatsuki.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Akatsuki)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#0A0A0A" + fg: "#E8E8E8" + black: "#1A1A1A" + red: "#DC143C" + green: "#888888" + yellow: "#FF6B6B" + blue: "#B22222" + magenta: "#8B0000" + cyan: "#666666" + white: "#E8E8E8" + brightBlack: "#444444" + brightRed: "#FF4444" + brightGreen: "#AAAAAA" + brightYellow: "#FF8888" + brightBlue: "#FF6666" + brightMagenta: "#DC143C" + brightCyan: "#999999" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.8 + black: 0 + red: 29.3 + green: 38.5 + yellow: 49 + blue: 20.4 + magenta: 11.4 + cyan: 22.9 + white: 92.8 + brightBlack: 9.7 + brightRed: 41.5 + brightGreen: 56.1 + brightYellow: 57 + brightBlue: 47.8 + brightMagenta: 29.3 + brightCyan: 47 + brightWhite: 107.7 diff --git a/themes/naruto-shinobi-theme--naruto-hinata-hyuga-byakugan-vision.yaml b/themes/naruto-shinobi-theme--naruto-hinata-hyuga-byakugan-vision.yaml new file mode 100644 index 00000000..f6af1862 --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-hinata-hyuga-byakugan-vision.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Hinata Hyuga - Byakugan Vision)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#2A1F35" + fg: "#F5E6FA" + black: "#1C1C1C" + red: "#FFB6C1" + green: "#D8BFD8" + yellow: "#FFF5EE" + blue: "#00BFFF" + magenta: "#DDA0DD" + cyan: "#87CEEB" + white: "#F8F8FF" + brightBlack: "#191970" + brightRed: "#FFC0CB" + brightGreen: "#E6E6FA" + brightYellow: "#FFFAF0" + brightBlue: "#87CEEB" + brightMagenta: "#E6E6FA" + brightCyan: "#00BFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: 307 + pair: null + contrast: + fg: 92 + black: 0 + red: 71.4 + green: 69.7 + yellow: 99.7 + blue: 58.7 + magenta: 59.3 + cyan: 68.4 + white: 100.9 + brightBlack: 0 + brightRed: 75.6 + brightGreen: 89.9 + brightYellow: 102.1 + brightBlue: 68.4 + brightMagenta: 89.9 + brightCyan: 58.7 + brightWhite: 105.2 diff --git a/themes/naruto-shinobi-theme--naruto-hokage-dawn.yaml b/themes/naruto-shinobi-theme--naruto-hokage-dawn.yaml new file mode 100644 index 00000000..93925c55 --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-hokage-dawn.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Hokage Dawn)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#1A1A1A" + fg: "#FFFAF0" + black: "#1A1A1A" + red: "#E74C3C" + green: "#27AE60" + yellow: "#F39C12" + blue: "#5DADE2" + magenta: "#8E44AD" + cyan: "#17A2B8" + white: "#E8E8E8" + brightBlack: "#808080" + brightRed: "#E67E22" + brightGreen: "#4CAF50" + brightYellow: "#FFD700" + brightBlue: "#00A8E8" + brightMagenta: "#9C27B0" + brightCyan: "#00CED1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 103.5 + black: 0 + red: 35.8 + green: 46 + yellow: 58.1 + blue: 52.5 + magenta: 21.7 + cyan: 43.7 + white: 91.6 + brightBlack: 33.4 + brightRed: 46.4 + brightGreen: 47.2 + brightYellow: 82.9 + brightBlue: 48.8 + brightMagenta: 20.4 + brightCyan: 64.2 + brightWhite: 106.5 diff --git a/themes/naruto-shinobi-theme--naruto-itachi-uchiha-tsukuyomi-dimension.yaml b/themes/naruto-shinobi-theme--naruto-itachi-uchiha-tsukuyomi-dimension.yaml new file mode 100644 index 00000000..922f6fe1 --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-itachi-uchiha-tsukuyomi-dimension.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Itachi Uchiha - Tsukuyomi Dimension)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#0A0505" + fg: "#E8D8D8" + black: "#0A0A0A" + red: "#DC143C" + green: "#8B0000" + yellow: "#B22222" + blue: "#4B0082" + magenta: "#8B008B" + cyan: "#6A0DAD" + white: "#D8D8D8" + brightBlack: "#3A2A2A" + brightRed: "#FF6347" + brightGreen: "#DC143C" + brightYellow: "#FF8888" + brightBlue: "#9370DB" + brightMagenta: "#DDA0DD" + brightCyan: "#D8BFD8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 19 + pair: null + contrast: + fg: 85.1 + black: 0 + red: 29.4 + green: 11.5 + yellow: 20.5 + blue: 0 + magenta: 15 + cyan: 12.7 + white: 82.9 + brightBlack: 0 + brightRed: 46.7 + brightGreen: 29.4 + brightYellow: 57.1 + brightBlue: 36.6 + brightMagenta: 61.9 + brightCyan: 72.4 + brightWhite: 107.8 diff --git a/themes/naruto-shinobi-theme--naruto-jiraiya-gallant-toad-sage.yaml b/themes/naruto-shinobi-theme--naruto-jiraiya-gallant-toad-sage.yaml new file mode 100644 index 00000000..0df49a16 --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-jiraiya-gallant-toad-sage.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Jiraiya - Gallant Toad Sage)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#1A1408" + fg: "#F5F5DC" + black: "#1A1A1A" + red: "#DC143C" + green: "#228B22" + yellow: "#FFD700" + blue: "#4169E1" + magenta: "#FFB6C1" + cyan: "#32CD32" + white: "#F5F5DC" + brightBlack: "#4A4430" + brightRed: "#FF6347" + brightGreen: "#90EE90" + brightYellow: "#FFEA00" + brightBlue: "#5DADE2" + brightMagenta: "#FFD1DC" + brightCyan: "#7FFF00" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 84 + pair: null + contrast: + fg: 99.4 + black: 0 + red: 28.7 + green: 30.9 + yellow: 83.4 + blue: 27.7 + magenta: 73.3 + cyan: 60.5 + white: 99.4 + brightBlack: 9.1 + brightRed: 46 + brightGreen: 82.7 + brightYellow: 91.9 + brightBlue: 53 + brightMagenta: 85 + brightCyan: 88.8 + brightWhite: 107.1 diff --git a/themes/naruto-shinobi-theme--naruto-kakashi-copy-ninja.yaml b/themes/naruto-shinobi-theme--naruto-kakashi-copy-ninja.yaml new file mode 100644 index 00000000..c5447223 --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-kakashi-copy-ninja.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Kakashi Copy Ninja)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#0F1214" + fg: "#C0C0C0" + black: "#1A1A1A" + red: "#DC143C" + green: "#A8A8A8" + yellow: "#C0C0C0" + blue: "#00BFFF" + magenta: "#4B0082" + cyan: "#1E90FF" + white: "#E0E0E0" + brightBlack: "#4A4A4A" + brightRed: "#FF6666" + brightGreen: "#C8C8C8" + brightYellow: "#E8E8E8" + brightBlue: "#40C8FF" + brightMagenta: "#6B20B2" + brightCyan: "#50B0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 68.1 + black: 0 + red: 28.9 + green: 54.6 + yellow: 68.1 + blue: 60.9 + magenta: 0 + cyan: 42.2 + white: 87.3 + brightBlack: 11.4 + brightRed: 47.4 + brightGreen: 72.8 + brightYellow: 92.4 + brightBlue: 65.6 + brightMagenta: 13.6 + brightCyan: 55.8 + brightWhite: 107.3 diff --git a/themes/naruto-shinobi-theme--naruto-kurama-nine-tails.yaml b/themes/naruto-shinobi-theme--naruto-kurama-nine-tails.yaml new file mode 100644 index 00000000..bd5ff77b --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-kurama-nine-tails.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Kurama Nine-Tails)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#1A0A00" + fg: "#FFF5E6" + black: "#1A1A1A" + red: "#DC143C" + green: "#AA8860" + yellow: "#FFD700" + blue: "#FF8C00" + magenta: "#FF6666" + cyan: "#FFA500" + white: "#FFF5E6" + brightBlack: "#4A3020" + brightRed: "#FF4466" + brightGreen: "#CCAA88" + brightYellow: "#FFEA00" + brightBlue: "#FFAA44" + brightMagenta: "#FF8888" + brightCyan: "#FFCC66" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 62 + pair: null + contrast: + fg: 101.6 + black: 0 + red: 29.1 + green: 41.2 + yellow: 83.9 + blue: 56.3 + magenta: 47.5 + cyan: 64.3 + white: 101.6 + brightBlack: 0 + brightRed: 41.8 + brightGreen: 59.1 + brightYellow: 92.3 + brightBlue: 66.4 + brightMagenta: 56.7 + brightCyan: 79.9 + brightWhite: 107.5 diff --git a/themes/naruto-shinobi-theme--naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml b/themes/naruto-shinobi-theme--naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml new file mode 100644 index 00000000..a7765d81 --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-kushina-uzumaki-red-hot-blooded-habanero.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Kushina Uzumaki - Red Hot-Blooded Habanero)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#1A0505" + fg: "#FFF0E6" + black: "#1A0A0A" + red: "#DC143C" + green: "#FFD700" + yellow: "#FFA500" + blue: "#FF8C00" + magenta: "#FF6347" + cyan: "#FF4500" + white: "#FFF0E6" + brightBlack: "#5A3A3A" + brightRed: "#FF6347" + brightGreen: "#FFEA00" + brightYellow: "#FFD700" + brightBlue: "#FFA500" + brightMagenta: "#FF8C00" + brightCyan: "#FF4500" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 23 + pair: null + contrast: + fg: 99.4 + black: 0 + red: 29.2 + green: 83.9 + yellow: 64.4 + blue: 56.4 + magenta: 46.5 + cyan: 41.1 + white: 99.4 + brightBlack: 9.1 + brightRed: 46.5 + brightGreen: 92.4 + brightYellow: 83.9 + brightBlue: 64.4 + brightMagenta: 56.4 + brightCyan: 41.1 + brightWhite: 107.6 diff --git a/themes/naruto-shinobi-theme--naruto-might-guy-gate-of-death-madara-battle.yaml b/themes/naruto-shinobi-theme--naruto-might-guy-gate-of-death-madara-battle.yaml new file mode 100644 index 00000000..695a42a0 --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-might-guy-gate-of-death-madara-battle.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Might Guy - GATE OF DEATH MADARA BATTLE)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#1A0000" + fg: "#FFE4E1" + black: "#1A0000" + red: "#FF0000" + green: "#DC143C" + yellow: "#FF6347" + blue: "#000080" + magenta: "#8B0000" + cyan: "#B22222" + white: "#FFE4E1" + brightBlack: "#6A3020" + brightRed: "#FF6347" + brightGreen: "#FF4500" + brightYellow: "#FFA500" + brightBlue: "#4169E1" + brightMagenta: "#DC143C" + brightCyan: "#FF6347" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 29 + pair: null + contrast: + fg: 93.8 + black: 0 + red: 37.2 + green: 29.2 + yellow: 46.5 + blue: 0 + magenta: 11.3 + cyan: 20.2 + white: 93.8 + brightBlack: 8.9 + brightRed: 46.5 + brightGreen: 41.1 + brightYellow: 64.4 + brightBlue: 28.2 + brightMagenta: 29.2 + brightCyan: 46.5 + brightWhite: 107.6 diff --git a/themes/naruto-shinobi-theme--naruto-might-guy-gates-of-youth.yaml b/themes/naruto-shinobi-theme--naruto-might-guy-gates-of-youth.yaml new file mode 100644 index 00000000..8f414b8e --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-might-guy-gates-of-youth.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Might Guy Gates of Youth)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#0A1A0A" + fg: "#F0FFF0" + black: "#1A1A1A" + red: "#DC143C" + green: "#00FF00" + yellow: "#FFD700" + blue: "#1E90FF" + magenta: "#FF4500" + cyan: "#32CD32" + white: "#F0FFF0" + brightBlack: "#3A5A3A" + brightRed: "#FF6666" + brightGreen: "#7FFF00" + brightYellow: "#FFEA00" + brightBlue: "#40C8FF" + brightMagenta: "#FF6347" + brightCyan: "#90EE90" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 144 + pair: null + contrast: + fg: 104.1 + black: 0 + red: 28.5 + green: 85.5 + yellow: 83.2 + blue: 41.7 + magenta: 40.4 + cyan: 60.4 + white: 104.1 + brightBlack: 14.2 + brightRed: 46.9 + brightGreen: 88.6 + brightYellow: 91.7 + brightBlue: 65.1 + brightMagenta: 45.8 + brightCyan: 82.5 + brightWhite: 106.9 diff --git a/themes/naruto-shinobi-theme--naruto-minato-namikaze-yellow-flash.yaml b/themes/naruto-shinobi-theme--naruto-minato-namikaze-yellow-flash.yaml new file mode 100644 index 00000000..3dd43daf --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-minato-namikaze-yellow-flash.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Minato Namikaze - Yellow Flash)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#0A0F1A" + fg: "#F5F5DC" + black: "#1A1A1A" + red: "#DC143C" + green: "#32CD32" + yellow: "#FFD700" + blue: "#00BFFF" + magenta: "#FF8C00" + cyan: "#87CEEB" + white: "#F5F5DC" + brightBlack: "#4A5A6A" + brightRed: "#FF6666" + brightGreen: "#90EE90" + brightYellow: "#FFEA00" + brightBlue: "#40C8FF" + brightMagenta: "#FFA500" + brightCyan: "#B0E0E6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 265 + pair: null + contrast: + fg: 99.8 + black: 0 + red: 29.1 + green: 61 + yellow: 83.9 + blue: 61 + magenta: 56.3 + cyan: 70.8 + white: 99.8 + brightBlack: 17 + brightRed: 47.5 + brightGreen: 83.1 + brightYellow: 92.3 + brightBlue: 65.7 + brightMagenta: 64.3 + brightCyan: 82.2 + brightWhite: 107.5 diff --git a/themes/naruto-shinobi-theme--naruto-pain-nagato-rinnegan-god.yaml b/themes/naruto-shinobi-theme--naruto-pain-nagato-rinnegan-god.yaml new file mode 100644 index 00000000..b9a54859 --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-pain-nagato-rinnegan-god.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Pain/Nagato - Rinnegan God)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#0F0F14" + fg: "#E8E8F0" + black: "#1C1C1C" + red: "#DC143C" + green: "#708090" + yellow: "#C0C0C0" + blue: "#6A0DAD" + magenta: "#9370DB" + cyan: "#8B008B" + white: "#F5F5DC" + brightBlack: "#36454F" + brightRed: "#FF6347" + brightGreen: "#90A0B0" + brightYellow: "#E8E8E8" + brightBlue: "#9370DB" + brightMagenta: "#BA55D3" + brightCyan: "#DA70D6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 92.9 + black: 0 + red: 29.1 + green: 33.5 + yellow: 68.2 + blue: 12.3 + magenta: 36.3 + cyan: 14.7 + white: 99.8 + brightBlack: 9.1 + brightRed: 46.4 + brightGreen: 49.4 + brightYellow: 92.5 + brightBlue: 36.3 + brightMagenta: 35.1 + brightCyan: 46.7 + brightWhite: 107.5 diff --git a/themes/naruto-shinobi-theme--naruto-sage-mode.yaml b/themes/naruto-shinobi-theme--naruto-sage-mode.yaml new file mode 100644 index 00000000..95cca2d2 --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-sage-mode.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Sage Mode)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#1A2410" + fg: "#F5F5DC" + black: "#1A1A1A" + red: "#8B6914" + green: "#3D6B1F" + yellow: "#F4C430" + blue: "#708090" + magenta: "#8B7355" + cyan: "#DAA520" + white: "#F5F5DC" + brightBlack: "#4A5A40" + brightRed: "#A67C2A" + brightGreen: "#5D8B2F" + brightYellow: "#FFD740" + brightBlue: "#90A8B8" + brightMagenta: "#B89365" + brightCyan: "#FFB730" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 130 + pair: null + contrast: + fg: 97.9 + black: 0 + red: 24.5 + green: 18.3 + yellow: 72.3 + blue: 31.6 + magenta: 28.3 + cyan: 56 + white: 97.9 + brightBlack: 13.9 + brightRed: 34.1 + brightGreen: 31.9 + brightYellow: 82.2 + brightBlue: 51 + brightMagenta: 45.1 + brightCyan: 69.1 + brightWhite: 105.6 diff --git a/themes/naruto-shinobi-theme--naruto-sakura-haruno-cherry-blossom-storm.yaml b/themes/naruto-shinobi-theme--naruto-sakura-haruno-cherry-blossom-storm.yaml new file mode 100644 index 00000000..aae7cfa6 --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-sakura-haruno-cherry-blossom-storm.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Sakura Haruno - Cherry Blossom Storm)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#1A0F14" + fg: "#F0FFFF" + black: "#1C1C1C" + red: "#DC143C" + green: "#98FB98" + yellow: "#FFB7C5" + blue: "#90EE90" + magenta: "#9370DB" + cyan: "#00FA9A" + white: "#F0FFFF" + brightBlack: "#708090" + brightRed: "#B22222" + brightGreen: "#90EE90" + brightYellow: "#FF69B4" + brightBlue: "#00FA9A" + brightMagenta: "#8B008B" + brightCyan: "#98FB98" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 350 + pair: null + contrast: + fg: 105.2 + black: 0 + red: 28.9 + green: 90.3 + yellow: 74.1 + blue: 82.9 + magenta: 36.1 + cyan: 84.9 + white: 105.2 + brightBlack: 33.3 + brightRed: 19.9 + brightGreen: 82.9 + brightYellow: 50.5 + brightBlue: 84.9 + brightMagenta: 14.5 + brightCyan: 90.3 + brightWhite: 107.3 diff --git a/themes/naruto-shinobi-theme--naruto-sasuke-uchiha-sharingan.yaml b/themes/naruto-shinobi-theme--naruto-sasuke-uchiha-sharingan.yaml new file mode 100644 index 00000000..01cea07f --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-sasuke-uchiha-sharingan.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Sasuke Uchiha - Sharingan)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#0A0000" + fg: "#E8E8E8" + black: "#1A1A1A" + red: "#FF0066" + green: "#7A7A9A" + yellow: "#FFD700" + blue: "#4169E1" + magenta: "#8B00FF" + cyan: "#00CED1" + white: "#E8E8F0" + brightBlack: "#3A3A5A" + brightRed: "#FF3388" + brightGreen: "#9A9ABA" + brightYellow: "#FFEA00" + brightBlue: "#5A8AFF" + brightMagenta: "#9370DB" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 29 + pair: null + contrast: + fg: 92.9 + black: 0 + red: 38.5 + green: 33.2 + yellow: 84.2 + blue: 28.5 + magenta: 24.7 + cyan: 65.5 + white: 93.3 + brightBlack: 7.5 + brightRed: 41.4 + brightGreen: 49.1 + brightYellow: 92.7 + brightBlue: 42.5 + brightMagenta: 36.7 + brightCyan: 92.1 + brightWhite: 107.9 diff --git a/themes/naruto-shinobi-theme--naruto-shikamaru-nara-shadow-possession.yaml b/themes/naruto-shinobi-theme--naruto-shikamaru-nara-shadow-possession.yaml new file mode 100644 index 00000000..cbf3a075 --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-shikamaru-nara-shadow-possession.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Shikamaru Nara - Shadow Possession)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#0D0D0D" + fg: "#D0D0D0" + black: "#1A1A1A" + red: "#696969" + green: "#6B8E23" + yellow: "#8B9A6B" + blue: "#556B2F" + magenta: "#808080" + cyan: "#2F4F2F" + white: "#C0C0C0" + brightBlack: "#4A4A4A" + brightRed: "#A9A9A9" + brightGreen: "#9ACD32" + brightYellow: "#BDB76B" + brightBlue: "#6B8E23" + brightMagenta: "#A9A9A9" + brightCyan: "#556B2F" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 77.8 + black: 0 + red: 24.1 + green: 36 + yellow: 44.4 + blue: 21.9 + magenta: 34.5 + cyan: 10.9 + white: 68.4 + brightBlack: 11.7 + brightRed: 55.4 + brightGreen: 66.7 + brightYellow: 61.7 + brightBlue: 36 + brightMagenta: 55.4 + brightCyan: 21.9 + brightWhite: 87.6 diff --git a/themes/naruto-shinobi-theme--naruto-shinobi-night.yaml b/themes/naruto-shinobi-theme--naruto-shinobi-night.yaml new file mode 100644 index 00000000..cc39590d --- /dev/null +++ b/themes/naruto-shinobi-theme--naruto-shinobi-night.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Naruto Shinobi Night)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#0D0D0D" + fg: "#F5F5DC" + black: "#0D0D0D" + red: "#CC0000" + green: "#4CAF50" + yellow: "#FFD700" + blue: "#4A90E2" + magenta: "#9C27B0" + cyan: "#00CED1" + white: "#E8E8E8" + brightBlack: "#6C6C6C" + brightRed: "#FF0000" + brightGreen: "#27AE60" + brightYellow: "#FFC107" + brightBlue: "#5DADE2" + brightMagenta: "#8E44AD" + brightCyan: "#17A2B8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.9 + black: 0 + red: 24.9 + green: 48.3 + yellow: 84 + blue: 41.4 + magenta: 21.5 + cyan: 65.3 + white: 92.7 + brightBlack: 25.4 + brightRed: 37.3 + brightGreen: 47.1 + brightYellow: 74.9 + brightBlue: 53.6 + brightMagenta: 22.7 + brightCyan: 44.7 + brightWhite: 107.6 diff --git a/themes/naruto-shinobi-theme--tobirama-water-style.yaml b/themes/naruto-shinobi-theme--tobirama-water-style.yaml new file mode 100644 index 00000000..7fc4cdc3 --- /dev/null +++ b/themes/naruto-shinobi-theme--tobirama-water-style.yaml @@ -0,0 +1,53 @@ +name: "Naruto Shinobi Theme (Tobirama Water Style)" +source: + marketplace_id: "kushal-raj-g-s.naruto-shinobi-theme" + version: "1.0.0" + installs: 445 + rating: 0 + ratings: 0 + author: "Kushal Raj G S" + repo: "https://github.com/kushal-raj-g-s/naruto-shinobi-theme" + url: "https://marketplace.visualstudio.com/items?itemName=kushal-raj-g-s.naruto-shinobi-theme" + formats: null +colors: + bg: "#0D1B2A" + fg: "#E8F4F8" + black: "#0D1B2A" + red: "#FF6B6B" + green: "#5DADE2" + yellow: "#FFB74D" + blue: "#4FC3F7" + magenta: "#9C88FF" + cyan: "#00CED1" + white: "#E8F4F8" + brightBlack: "#5A7A8F" + brightRed: "#FF8A80" + brightGreen: "#81D4FA" + brightYellow: "#FFD180" + brightBlue: "#80DEEA" + brightMagenta: "#B39DDB" + brightCyan: "#18FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 251 + pair: null + contrast: + fg: 97.8 + black: 0 + red: 47.7 + green: 52.4 + yellow: 70.2 + blue: 62.5 + magenta: 46 + cyan: 64.2 + white: 97.8 + brightBlack: 28.7 + brightRed: 56.1 + brightGreen: 72.9 + brightYellow: 81.4 + brightBlue: 76.6 + brightMagenta: 53.4 + brightCyan: 90.8 + brightWhite: 106.5 diff --git a/themes/natasha-purple.yaml b/themes/natasha-purple.yaml new file mode 100644 index 00000000..4979387e --- /dev/null +++ b/themes/natasha-purple.yaml @@ -0,0 +1,53 @@ +name: "Natasha Purple" +source: + marketplace_id: "LucasAlmeida.natasha-tema" + version: "1.6.0" + installs: 1811 + rating: 5 + ratings: 1 + author: "Lucas Almeida" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LucasAlmeida.natasha-tema" + formats: null +colors: + bg: "#221A34" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 297 + pair: null + contrast: + fg: 105.9 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89.1 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39.1 + brightMagenta: 44.4 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/natty.yaml b/themes/natty.yaml new file mode 100644 index 00000000..fb9eae44 --- /dev/null +++ b/themes/natty.yaml @@ -0,0 +1,53 @@ +name: "Natty" +source: + marketplace_id: "this-fifo.natty" + version: "0.1.0" + installs: 9639 + rating: 5 + ratings: 3 + author: "this-fifo" + repo: "https://github.com/this-fifo/natty-theme" + url: "https://marketplace.visualstudio.com/items?itemName=this-fifo.natty" + formats: null +colors: + bg: "#242530" + fg: "#EEFFFF" + black: "#242530" + red: "#FF8A7A" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#94D0FF" + magenta: "#FF85B8" + cyan: "#9AEDFE" + white: "#F1F1F0" + brightBlack: "#686868" + brightRed: "#FF8A7A" + brightGreen: "#5AF78E" + brightYellow: "#F3F99D" + brightBlue: "#94D0FF" + brightMagenta: "#FF85B8" + brightCyan: "#9AEDFE" + brightWhite: "#EEFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 281 + pair: null + contrast: + fg: 102.5 + black: 0 + red: 54.3 + green: 82 + yellow: 96.7 + blue: 71.2 + magenta: 55 + cyan: 85 + white: 95.6 + brightBlack: 20.9 + brightRed: 54.3 + brightGreen: 82 + brightYellow: 96.7 + brightBlue: 71.2 + brightMagenta: 55 + brightCyan: 85 + brightWhite: 102.5 diff --git a/themes/natural-green.yaml b/themes/natural-green.yaml new file mode 100644 index 00000000..80049028 --- /dev/null +++ b/themes/natural-green.yaml @@ -0,0 +1,53 @@ +name: "Natural green" +source: + marketplace_id: "xynny.naturalgreen-theme" + version: "0.0.1" + installs: 519 + rating: 0 + ratings: 0 + author: "xynny" + repo: "https://github.com/xynnylol/vsthemes" + url: "https://marketplace.visualstudio.com/items?itemName=xynny.naturalgreen-theme" + formats: null +colors: + bg: "#309F4C" + fg: "#052234" + black: "#000000" + red: "#B23D10" + green: "#19DB25" + yellow: "#B3B800" + blue: "#0451A5" + magenta: "#9F1683" + cyan: "#4B6E77" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#DB4D4D" + brightGreen: "#00E20E" + brightYellow: "#CBD100" + brightBlue: "#0451A5" + brightMagenta: "#AD0DAD" + brightCyan: "#117994" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: 148 + pair: null + contrast: + fg: 40.1 + black: 43.1 + red: 15.4 + green: 26.4 + yellow: 18.8 + blue: 23.1 + magenta: 20.3 + cyan: 14.6 + white: 66.5 + brightBlack: 43.1 + brightRed: 0 + brightGreen: 29.8 + brightYellow: 32.6 + brightBlue: 23.1 + brightMagenta: 15.5 + brightCyan: 11.2 + brightWhite: 66.5 diff --git a/themes/naturefy-themes--koi-pond-dark.yaml b/themes/naturefy-themes--koi-pond-dark.yaml new file mode 100644 index 00000000..3235055a --- /dev/null +++ b/themes/naturefy-themes--koi-pond-dark.yaml @@ -0,0 +1,53 @@ +name: "Naturefy Themes (Koi Pond Dark)" +source: + marketplace_id: "sserafy.naturefy-themes" + version: "2.0.2" + installs: 1665 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.naturefy-themes" + formats: null +colors: + bg: "#0F1419" + fg: "#C7D2CC" + black: "#2D3B4F" + red: "#D73027" + green: "#7FB069" + yellow: "#F4A261" + blue: "#2166AC" + magenta: "#762A83" + cyan: "#5AAE61" + white: "#C7D2CC" + brightBlack: "#5C6B73" + brightRed: "#E85749" + brightGreen: "#8BC275" + brightYellow: "#F6B73C" + brightBlue: "#4393C3" + brightMagenta: "#9970AB" + brightCyan: "#7FB069" + brightWhite: "#E8F0E8" +meta: + mode: "dark" + accent: "orange" + hue: 249 + pair: null + contrast: + fg: 77 + black: 0 + red: 29.1 + green: 51.8 + yellow: 61.6 + blue: 22 + magenta: 12.6 + cyan: 48.4 + white: 77 + brightBlack: 23.5 + brightRed: 38.7 + brightGreen: 60.9 + brightYellow: 69.2 + brightBlue: 39.9 + brightMagenta: 33.8 + brightCyan: 51.8 + brightWhite: 95.9 diff --git a/themes/naturefy-themes--koi-pond-light.yaml b/themes/naturefy-themes--koi-pond-light.yaml new file mode 100644 index 00000000..3ab414e5 --- /dev/null +++ b/themes/naturefy-themes--koi-pond-light.yaml @@ -0,0 +1,53 @@ +name: "Naturefy Themes (Koi Pond Light)" +source: + marketplace_id: "sserafy.naturefy-themes" + version: "2.0.2" + installs: 1665 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.naturefy-themes" + formats: null +colors: + bg: "#FCFAF4" + fg: "#2C3E34" + black: "#2C3E34" + red: "#D73027" + green: "#2D5016" + yellow: "#D68910" + blue: "#2166AC" + magenta: "#762A83" + cyan: "#1A7431" + white: "#F7F3E9" + brightBlack: "#6B6B52" + brightRed: "#E85749" + brightGreen: "#3D6626" + brightYellow: "#F4A261" + brightBlue: "#4393C3" + brightMagenta: "#9970AB" + brightCyan: "#2D8F47" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 93.2 + black: 93.2 + red: 68.9 + green: 88.2 + yellow: 50.8 + blue: 76.1 + magenta: 85.9 + cyan: 75.9 + white: 0 + brightBlack: 74.2 + brightRed: 59.3 + brightGreen: 80 + brightYellow: 37 + brightBlue: 58.1 + brightMagenta: 64.2 + brightCyan: 64.7 + brightWhite: 0 diff --git a/themes/naturefy-themes--ukiyo-e-manuscript.yaml b/themes/naturefy-themes--ukiyo-e-manuscript.yaml new file mode 100644 index 00000000..fdf9d502 --- /dev/null +++ b/themes/naturefy-themes--ukiyo-e-manuscript.yaml @@ -0,0 +1,53 @@ +name: "Naturefy Themes (Ukiyo-e Manuscript)" +source: + marketplace_id: "sserafy.naturefy-themes" + version: "2.0.2" + installs: 1665 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.naturefy-themes" + formats: null +colors: + bg: "#F5F0E8" + fg: "#1A1614" + black: "#1A1614" + red: "#D63031" + green: "#00B894" + yellow: "#FDCB6E" + blue: "#4CA7A5" + magenta: "#FD79A8" + cyan: "#4CA7A5" + white: "#F5F0E8" + brightBlack: "#6B5D4F" + brightRed: "#E74C3C" + brightGreen: "#00D2A3" + brightYellow: "#FFD93D" + brightBlue: "#5FB8B6" + brightMagenta: "#FF8CC8" + brightCyan: "#5FB8B6" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.1 + black: 96.1 + red: 63.4 + green: 40.4 + yellow: 14.9 + blue: 45.7 + magenta: 39.5 + cyan: 45.7 + white: 0 + brightBlack: 73 + brightRed: 56 + brightGreen: 28.2 + brightYellow: 9.6 + brightBlue: 37.1 + brightMagenta: 32.9 + brightCyan: 37.1 + brightWhite: 0 diff --git a/themes/nb-monochrome.yaml b/themes/nb-monochrome.yaml new file mode 100644 index 00000000..c8a0c279 --- /dev/null +++ b/themes/nb-monochrome.yaml @@ -0,0 +1,53 @@ +name: "nb monochrome" +source: + marketplace_id: "nicco.n234234" + version: "0.2.0" + installs: 416 + rating: 5 + ratings: 1 + author: "nicco" + repo: "https://github.com/nicco-b/n" + url: "https://marketplace.visualstudio.com/items?itemName=nicco.n234234" + formats: null +colors: + bg: "#1D1D1B" + fg: "#EBEBEB" + black: "#1D1D1B" + red: "#E88388" + green: "#98C379" + yellow: "#EACB8D" + blue: "#71BBEF" + magenta: "#D290E4" + cyan: "#66C2CD" + white: "#B9BFCB" + brightBlack: "#313131" + brightRed: "#E88388" + brightGreen: "#A7CB8C" + brightYellow: "#E3CA7F" + brightBlue: "#72BEF3" + brightMagenta: "#D191E4" + brightCyan: "#64C2CD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 93.1 + black: 0 + red: 49.5 + green: 61.6 + yellow: 75.6 + blue: 59.9 + magenta: 53.7 + cyan: 60.5 + white: 66.2 + brightBlack: 0 + brightRed: 49.5 + brightGreen: 67.1 + brightYellow: 73.8 + brightBlue: 61.5 + brightMagenta: 53.9 + brightCyan: 60.4 + brightWhite: 106.2 diff --git a/themes/nebula-colorscheme.yaml b/themes/nebula-colorscheme.yaml new file mode 100644 index 00000000..13f8bc5c --- /dev/null +++ b/themes/nebula-colorscheme.yaml @@ -0,0 +1,53 @@ +name: "Nebula Colorscheme" +source: + marketplace_id: "gmyk.nebula-colorscheme" + version: "0.1.0" + installs: 762 + rating: 0 + ratings: 0 + author: "Mayank Gujrathi" + repo: "https://github.com/mayankgujrathi/nebula" + url: "https://marketplace.visualstudio.com/items?itemName=gmyk.nebula-colorscheme" + formats: null +colors: + bg: "#121212" + fg: "#E2E3E3" + black: "#535353" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D5D5D5" + brightBlack: "#737373" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#F5F5F5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 89.1 + black: 14.8 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 80.5 + brightBlack: 28.2 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 100.7 diff --git a/themes/nebula-dark-theme-pack.yaml b/themes/nebula-dark-theme-pack.yaml new file mode 100644 index 00000000..1bc693e1 --- /dev/null +++ b/themes/nebula-dark-theme-pack.yaml @@ -0,0 +1,53 @@ +name: "Nebula Dark Theme Pack" +source: + marketplace_id: "Fabocode.nebula-dark-theme" + version: "1.0.0" + installs: 34 + rating: 5 + ratings: 1 + author: "Fabocode" + repo: "https://github.com/FaboCodeDev/nebula-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Fabocode.nebula-dark-theme" + formats: null +colors: + bg: "#121212" + fg: "#F8F9FA" + black: "#121212" + red: "#FF6B6B" + green: "#51CF66" + yellow: "#FF922B" + blue: "#339AF0" + magenta: "#DA77F2" + cyan: "#20C997" + white: "#F8F9FA" + brightBlack: "#6C757D" + brightRed: "#FF6B6B" + brightGreen: "#51CF66" + brightYellow: "#FF922B" + brightBlue: "#339AF0" + brightMagenta: "#DA77F2" + brightCyan: "#20C997" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 103.2 + black: 0 + red: 48.5 + green: 63.3 + yellow: 58 + blue: 45.1 + magenta: 50 + cyan: 60.5 + white: 103.2 + brightBlack: 28.5 + brightRed: 48.5 + brightGreen: 63.3 + brightYellow: 58 + brightBlue: 45.1 + brightMagenta: 50 + brightCyan: 60.5 + brightWhite: 107.3 diff --git a/themes/nebula-dark.yaml b/themes/nebula-dark.yaml new file mode 100644 index 00000000..7ceb9949 --- /dev/null +++ b/themes/nebula-dark.yaml @@ -0,0 +1,53 @@ +name: "Nebula Dark" +source: + marketplace_id: "SamuelBreznjak.nebuladark" + version: "1.1.0" + installs: 86 + rating: 0 + ratings: 0 + author: "Samuel Breznjak" + repo: "https://github.com/ekmas/nebula" + url: "https://marketplace.visualstudio.com/items?itemName=SamuelBreznjak.nebuladark" + formats: null +colors: + bg: "#0A0A0A" + fg: "#007ACC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 30.9 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/nebula-for-vs-code.yaml b/themes/nebula-for-vs-code.yaml new file mode 100644 index 00000000..d7769725 --- /dev/null +++ b/themes/nebula-for-vs-code.yaml @@ -0,0 +1,53 @@ +name: "Nebula for VS Code" +source: + marketplace_id: "tjk.nebula-vscode" + version: "0.0.1" + installs: 519 + rating: 0 + ratings: 0 + author: "TJ Kohli" + repo: "https://github.com/tjkohli/nebula-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=tjk.nebula-vscode" + formats: null +colors: + bg: "#161921" + fg: "#D4D4D4" + black: "#494F5E" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#737B8E" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + pair: null + contrast: + fg: 79.3 + black: 12.6 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 31.1 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.1 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/nebula-nights-pastel.yaml b/themes/nebula-nights-pastel.yaml new file mode 100644 index 00000000..629f8295 --- /dev/null +++ b/themes/nebula-nights-pastel.yaml @@ -0,0 +1,53 @@ +name: "Nebula Nights Pastel" +source: + marketplace_id: "Tom-Fynes.nebula-nights-pastel" + version: "1.2.0" + installs: 726 + rating: 5 + ratings: 1 + author: "Tom-Fynes" + repo: "https://github.com/tom-fynes/nebula-nights" + url: "https://marketplace.visualstudio.com/items?itemName=Tom-Fynes.nebula-nights-pastel" + formats: null +colors: + bg: "#404E5C" + fg: "#B7C3F3" + black: "#363E4A" + red: "#D05786" + green: "#94FBAB" + yellow: "#DD7596" + blue: "#B8E1FF" + magenta: "#BCB6FF" + cyan: "#A9FFF7" + white: "#B7C3F3" + brightBlack: "#363E4A" + brightRed: "#D05786" + brightGreen: "#94FBAB" + brightYellow: "#DD7596" + brightBlue: "#B8E1FF" + brightMagenta: "#BCB6FF" + brightCyan: "#A9FFF7" + brightWhite: "#B7C3F3" +meta: + mode: "dark" + accent: "red" + hue: 249 + pair: null + contrast: + fg: 57.3 + black: 0 + red: 21.9 + green: 77.1 + yellow: 31.8 + blue: 71.2 + magenta: 53.4 + cyan: 83.8 + white: 57.3 + brightBlack: 0 + brightRed: 21.9 + brightGreen: 77.1 + brightYellow: 31.8 + brightBlue: 71.2 + brightMagenta: 53.4 + brightCyan: 83.8 + brightWhite: 57.3 diff --git a/themes/nebula-theme.yaml b/themes/nebula-theme.yaml new file mode 100644 index 00000000..0601cfa2 --- /dev/null +++ b/themes/nebula-theme.yaml @@ -0,0 +1,53 @@ +name: "Nebula Theme" +source: + marketplace_id: "ChirtleLovesDolls.nebula-theme" + version: "1.3.3" + installs: 146180 + rating: 5 + ratings: 17 + author: "ChirtleLovesDolls" + repo: "https://github.com/eating-coleslaw/vscode-nebula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ChirtleLovesDolls.nebula-theme" + formats: null +colors: + bg: "#27273A" + fg: "#FCF6FF" + black: "#353551" + red: "#E34F8C" + green: "#97F36D" + yellow: "#F8C275" + blue: "#C7ADFB" + magenta: "#E752A1" + cyan: "#24E8D8" + white: "#FBD3E1" + brightBlack: "#919CB9" + brightRed: "#F36F98" + brightGreen: "#AFFA90" + brightYellow: "#FAFAA0" + brightBlue: "#74D6E9" + brightMagenta: "#F799C7" + brightCyan: "#8DF9F9" + brightWhite: "#D7D6DF" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 99.6 + black: 0 + red: 35 + green: 82.2 + yellow: 71.7 + blue: 61.5 + magenta: 37.2 + cyan: 75.1 + white: 82.6 + brightBlack: 45.2 + brightRed: 45.1 + brightGreen: 88.5 + brightYellow: 97.7 + brightBlue: 69.8 + brightMagenta: 59.4 + brightCyan: 89.2 + brightWhite: 78.6 diff --git a/themes/necessity--necessity-aaa-light.yaml b/themes/necessity--necessity-aaa-light.yaml new file mode 100644 index 00000000..1c7b4eb4 --- /dev/null +++ b/themes/necessity--necessity-aaa-light.yaml @@ -0,0 +1,53 @@ +name: "Necessity (Necessity AAA Light)" +source: + marketplace_id: "vxint.necessity" + version: "1.8.0" + installs: 60 + rating: 5 + ratings: 1 + author: "Vortex Interactive" + repo: "https://github.com/vortexint/Necessity" + url: "https://marketplace.visualstudio.com/items?itemName=vxint.necessity" + formats: null +colors: + bg: "#F5F5F5" + fg: "#1E1E1E" + black: "#5A5A5A" + red: "#8B0000" + green: "#006400" + yellow: "#A06A00" + blue: "#005F9E" + magenta: "#562D80" + cyan: "#004C5C" + white: "#3A3A3A" + brightBlack: "#7A7A7A" + brightRed: "#C51A1B" + brightGreen: "#098658" + brightYellow: "#B58500" + brightBlue: "#007ACC" + brightMagenta: "#800080" + brightCyan: "#267F99" + brightWhite: "#1E1E1E" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97.7 + black: 77.9 + red: 84.8 + green: 79.2 + yellow: 65.7 + blue: 76.5 + magenta: 87 + cyan: 85.8 + white: 90.3 + brightBlack: 63.8 + brightRed: 71.6 + brightGreen: 65.5 + brightYellow: 54.4 + brightBlue: 64.6 + brightMagenta: 83.6 + brightCyan: 65.6 + brightWhite: 97.7 diff --git a/themes/necessity--necessity-aaa.yaml b/themes/necessity--necessity-aaa.yaml new file mode 100644 index 00000000..e7a7b3e5 --- /dev/null +++ b/themes/necessity--necessity-aaa.yaml @@ -0,0 +1,53 @@ +name: "Necessity (Necessity-AAA)" +source: + marketplace_id: "vxint.necessity" + version: "1.8.0" + installs: 60 + rating: 5 + ratings: 1 + author: "Vortex Interactive" + repo: "https://github.com/vortexint/Necessity" + url: "https://marketplace.visualstudio.com/items?itemName=vxint.necessity" + formats: null +colors: + bg: "#2F2F2F" + fg: "#DCDCDC" + black: "#3A3A3A" + red: "#D16969" + green: "#87B379" + yellow: "#CCA700" + blue: "#569CD6" + magenta: "#C586C0" + cyan: "#69D8C6" + white: "#DCDCDC" + brightBlack: "#8A8A8A" + brightRed: "#F48771" + brightGreen: "#A0CC93" + brightYellow: "#D9B51A" + brightBlue: "#70A0D6" + brightMagenta: "#D699D6" + brightCyan: "#80E0D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 80.5 + black: 0 + red: 34.3 + green: 49.9 + yellow: 51.9 + blue: 41.1 + magenta: 43.4 + cyan: 67.2 + white: 80.5 + brightBlack: 34.7 + brightRed: 49.2 + brightGreen: 63.8 + brightYellow: 59.3 + brightBlue: 44.2 + brightMagenta: 53.3 + brightCyan: 72.8 + brightWhite: 103 diff --git a/themes/neo-nuxt-blend--neo-nuxt-matte.yaml b/themes/neo-nuxt-blend--neo-nuxt-matte.yaml new file mode 100644 index 00000000..2da311c5 --- /dev/null +++ b/themes/neo-nuxt-blend--neo-nuxt-matte.yaml @@ -0,0 +1,53 @@ +name: "Neo Nuxt Blend (neo-nuxt-matte)" +source: + marketplace_id: "CeoDev.neo-nuxt3-blend" + version: "3.3.4" + installs: 2700 + rating: 5 + ratings: 1 + author: "Vantol Bennett" + repo: "https://github.com/titan-65/neo-nuxt" + url: "https://marketplace.visualstudio.com/items?itemName=CeoDev.neo-nuxt3-blend" + formats: null +colors: + bg: "#0C0C0D" + fg: "#76767D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 30.1 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/neo-nuxt-blend--nuxt-blend-bleach-color-theme.yaml b/themes/neo-nuxt-blend--nuxt-blend-bleach-color-theme.yaml new file mode 100644 index 00000000..57b94436 --- /dev/null +++ b/themes/neo-nuxt-blend--nuxt-blend-bleach-color-theme.yaml @@ -0,0 +1,53 @@ +name: "Neo Nuxt Blend (Nuxt Blend-Bleach Color Theme)" +source: + marketplace_id: "CeoDev.neo-nuxt3-blend" + version: "3.3.4" + installs: 2700 + rating: 5 + ratings: 1 + author: "Vantol Bennett" + repo: "https://github.com/titan-65/neo-nuxt" + url: "https://marketplace.visualstudio.com/items?itemName=CeoDev.neo-nuxt3-blend" + formats: null +colors: + bg: "#FFFFFF" + fg: "#76767D" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#000000" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 71.3 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 106 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/neo-nuxt-blend--nuxt-blend.yaml b/themes/neo-nuxt-blend--nuxt-blend.yaml new file mode 100644 index 00000000..71b064a9 --- /dev/null +++ b/themes/neo-nuxt-blend--nuxt-blend.yaml @@ -0,0 +1,53 @@ +name: "Neo Nuxt Blend (Nuxt Blend)" +source: + marketplace_id: "CeoDev.neo-nuxt3-blend" + version: "3.3.4" + installs: 2700 + rating: 5 + ratings: 1 + author: "Vantol Bennett" + repo: "https://github.com/titan-65/neo-nuxt" + url: "https://marketplace.visualstudio.com/items?itemName=CeoDev.neo-nuxt3-blend" + formats: null +colors: + bg: "#021C24" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 221 + pair: null + contrast: + fg: 106.5 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 106.5 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45 + brightCyan: 55.1 + brightWhite: 106.5 diff --git a/themes/neo-seoul-theme--neo-seoul-dark.yaml b/themes/neo-seoul-theme--neo-seoul-dark.yaml new file mode 100644 index 00000000..fc703e83 --- /dev/null +++ b/themes/neo-seoul-theme--neo-seoul-dark.yaml @@ -0,0 +1,53 @@ +name: "Neo Seoul Theme (Neo Seoul Dark)" +source: + marketplace_id: "taotao7.neo-seoul-theme" + version: "0.0.3" + installs: 253 + rating: 5 + ratings: 1 + author: "taotao7" + repo: "https://github.com/taotao7/neoseoul-theme" + url: "https://marketplace.visualstudio.com/items?itemName=taotao7.neo-seoul-theme" + formats: null +colors: + bg: "#3A3A3A" + fg: "#D0D0D0" + black: "#3A3A3A" + red: "#E12672" + green: "#719872" + yellow: "#FFD787" + blue: "#7299BC" + magenta: "#E19972" + cyan: "#98BCBD" + white: "#D0D0D0" + brightBlack: "#565656" + brightRed: "#BF2172" + brightGreen: "#98BC99" + brightYellow: "#FFDE99" + brightBlue: "#98BEDE" + brightMagenta: "#FFBD98" + brightCyan: "#BCDEDE" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 70.2 + black: 0 + red: 24.7 + green: 33.9 + yellow: 77.6 + blue: 37.2 + magenta: 48.3 + cyan: 54.6 + white: 70.2 + brightBlack: 8.6 + brightRed: 16.9 + brightGreen: 53.2 + brightYellow: 81.1 + brightBlue: 57 + brightMagenta: 67.5 + brightCyan: 74.7 + brightWhite: 90.8 diff --git a/themes/neo-seoul-theme--neo-seoul-light.yaml b/themes/neo-seoul-theme--neo-seoul-light.yaml new file mode 100644 index 00000000..866f65d0 --- /dev/null +++ b/themes/neo-seoul-theme--neo-seoul-light.yaml @@ -0,0 +1,53 @@ +name: "Neo Seoul Theme (Neo Seoul Light)" +source: + marketplace_id: "taotao7.neo-seoul-theme" + version: "0.0.3" + installs: 253 + rating: 5 + ratings: 1 + author: "taotao7" + repo: "https://github.com/taotao7/neoseoul-theme" + url: "https://marketplace.visualstudio.com/items?itemName=taotao7.neo-seoul-theme" + formats: null +colors: + bg: "#DADADA" + fg: "#4E4E4E" + black: "#DADADA" + red: "#BF2172" + green: "#719872" + yellow: "#875F5F" + blue: "#25709A" + magenta: "#875F5F" + cyan: "#009799" + white: "#4E4E4E" + brightBlack: "#C8C8C8" + brightRed: "#E12672" + brightGreen: "#98BC99" + brightYellow: "#FFDE99" + brightBlue: "#98BEDE" + brightMagenta: "#FFBD98" + brightCyan: "#BCDEDE" + brightWhite: "#262626" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 67.1 + black: 0 + red: 55.3 + green: 38.2 + yellow: 55.6 + blue: 55.1 + magenta: 55.6 + cyan: 41 + white: 67.1 + brightBlack: 7.9 + brightRed: 47.4 + brightGreen: 19.5 + brightYellow: 0 + brightBlue: 15.9 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 80.4 diff --git a/themes/neo-theme.yaml b/themes/neo-theme.yaml new file mode 100644 index 00000000..a0d80844 --- /dev/null +++ b/themes/neo-theme.yaml @@ -0,0 +1,53 @@ +name: "Neo Theme" +source: + marketplace_id: "palashmon.theme-neo" + version: "1.1.1" + installs: 2100 + rating: 5 + ratings: 3 + author: "Palash Mondal" + repo: "https://github.com/palashmon/neo-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=palashmon.theme-neo" + formats: null +colors: + bg: "#0B1B2D" + fg: "#89C4F4" + black: "#000000" + red: "#F64747" + green: "#3AD900" + yellow: "#65E6B8" + blue: "#0088FF" + magenta: "#DDA0DD" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#F64747" + brightGreen: "#3AD900" + brightYellow: "#65E6B8" + brightBlue: "#0088FF" + brightMagenta: "#DDA0DD" + brightCyan: "#80FCFF" + brightWhite: "#193549" +meta: + mode: "dark" + accent: "green" + hue: 253 + pair: null + contrast: + fg: 66 + black: 0 + red: 38.5 + green: 65.8 + yellow: 76.7 + blue: 38.3 + magenta: 60.6 + cyan: 92.3 + white: 106.4 + brightBlack: 14.2 + brightRed: 38.5 + brightGreen: 65.8 + brightYellow: 76.7 + brightBlue: 38.3 + brightMagenta: 60.6 + brightCyan: 92.3 + brightWhite: 0 diff --git a/themes/neon-color-dark-theme--jetbrains-ide-dark-theme.yaml b/themes/neon-color-dark-theme--jetbrains-ide-dark-theme.yaml new file mode 100644 index 00000000..03a9bc6d --- /dev/null +++ b/themes/neon-color-dark-theme--jetbrains-ide-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Neon Color - Dark Theme (JetBrains IDE Dark Theme)" +source: + marketplace_id: "mdmarufsarker.maruf-sarker" + version: "0.1.1" + installs: 29169 + rating: 5 + ratings: 6 + author: "Md. Maruf Sarker" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" + formats: null +colors: + bg: "#0C1924" + fg: "#2FE2FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 245 + pair: null + contrast: + fg: 76.7 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/neon-color-dark-theme--matrix-hacking-dark-theme.yaml b/themes/neon-color-dark-theme--matrix-hacking-dark-theme.yaml new file mode 100644 index 00000000..6233d8ba --- /dev/null +++ b/themes/neon-color-dark-theme--matrix-hacking-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Neon Color - Dark Theme (Matrix Hacking Dark Theme)" +source: + marketplace_id: "mdmarufsarker.maruf-sarker" + version: "0.1.1" + installs: 29169 + rating: 5 + ratings: 6 + author: "Md. Maruf Sarker" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" + formats: null +colors: + bg: "#001019" + fg: "#22C21D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 231 + pair: null + contrast: + fg: 55.3 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.2 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/neon-color-dark-theme--neon-color-dark-theme.yaml b/themes/neon-color-dark-theme--neon-color-dark-theme.yaml new file mode 100644 index 00000000..cb963aed --- /dev/null +++ b/themes/neon-color-dark-theme--neon-color-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Neon Color - Dark Theme (Neon Color - Dark Theme)" +source: + marketplace_id: "mdmarufsarker.maruf-sarker" + version: "0.1.1" + installs: 29169 + rating: 5 + ratings: 6 + author: "Md. Maruf Sarker" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" + formats: null +colors: + bg: "#0C1924" + fg: "#00DBFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 245 + pair: null + contrast: + fg: 73.1 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/neon-color-dark-theme--one-dark-pro-theme.yaml b/themes/neon-color-dark-theme--one-dark-pro-theme.yaml new file mode 100644 index 00000000..cc883358 --- /dev/null +++ b/themes/neon-color-dark-theme--one-dark-pro-theme.yaml @@ -0,0 +1,53 @@ +name: "Neon Color - Dark Theme (One Dark Pro Theme)" +source: + marketplace_id: "mdmarufsarker.maruf-sarker" + version: "0.1.1" + installs: 29169 + rating: 5 + ratings: 6 + author: "Md. Maruf Sarker" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" + formats: null +colors: + bg: "#0C1924" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 245 + pair: null + contrast: + fg: 59.3 + black: 8.7 + red: 36.6 + green: 60.2 + yellow: 48.5 + blue: 49.5 + magenta: 38.9 + cyan: 52.4 + white: 90.5 + brightBlack: 15.3 + brightRed: 46 + brightGreen: 76.6 + brightYellow: 61.1 + brightBlue: 63.6 + brightMagenta: 50.1 + brightCyan: 67.7 + brightWhite: 82.9 diff --git a/themes/neon-color-dark-theme--visual-studio-code-dark-theme.yaml b/themes/neon-color-dark-theme--visual-studio-code-dark-theme.yaml new file mode 100644 index 00000000..897e0819 --- /dev/null +++ b/themes/neon-color-dark-theme--visual-studio-code-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Neon Color - Dark Theme (Visual Studio Code Dark Theme)" +source: + marketplace_id: "mdmarufsarker.maruf-sarker" + version: "0.1.1" + installs: 29169 + rating: 5 + ratings: 6 + author: "Md. Maruf Sarker" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=mdmarufsarker.maruf-sarker" + formats: null +colors: + bg: "#0C1924" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 245 + pair: null + contrast: + fg: 79.4 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/neon-cyberpunk-theme--neon-cyberpunk.yaml b/themes/neon-cyberpunk-theme--neon-cyberpunk.yaml new file mode 100644 index 00000000..8a6dfa78 --- /dev/null +++ b/themes/neon-cyberpunk-theme--neon-cyberpunk.yaml @@ -0,0 +1,53 @@ +name: "Neon Cyberpunk Theme (Neon Cyberpunk)" +source: + marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" + version: "1.0.0" + installs: 1553 + rating: 0 + ratings: 0 + author: "Little Waterfall" + repo: "https://github.com/LittleWaterfall/vscode-neon-glow" + url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" + formats: null +colors: + bg: "#000010" + fg: "#F0F0FF" + black: "#102030" + red: "#FF0040" + green: "#00FF40" + yellow: "#FF8000" + blue: "#0080FF" + magenta: "#FF0080" + cyan: "#00FFFF" + white: "#F0F0FF" + brightBlack: "#404060" + brightRed: "#FF4060" + brightGreen: "#40FF60" + brightYellow: "#FFA040" + brightBlue: "#40A0FF" + brightMagenta: "#FF40A0" + brightCyan: "#40FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 98.7 + black: 0 + red: 37.8 + green: 86.7 + yellow: 53.3 + blue: 37 + magenta: 39.2 + cyan: 92.1 + white: 98.7 + brightBlack: 9.5 + brightRed: 41.6 + brightGreen: 87.6 + brightYellow: 63.2 + brightBlue: 49.4 + brightMagenta: 43.6 + brightCyan: 92.7 + brightWhite: 107.9 diff --git a/themes/neon-cyberpunk-theme--neon-glow.yaml b/themes/neon-cyberpunk-theme--neon-glow.yaml new file mode 100644 index 00000000..f1a4d2e7 --- /dev/null +++ b/themes/neon-cyberpunk-theme--neon-glow.yaml @@ -0,0 +1,53 @@ +name: "Neon Cyberpunk Theme (Neon Glow)" +source: + marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" + version: "1.0.0" + installs: 1553 + rating: 0 + ratings: 0 + author: "Little Waterfall" + repo: "https://github.com/LittleWaterfall/vscode-neon-glow" + url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" + formats: null +colors: + bg: "#0A0A14" + fg: "#E0E6FF" + black: "#1A1A2E" + red: "#FF3366" + green: "#00FF80" + yellow: "#FFAA00" + blue: "#3366FF" + magenta: "#FF0080" + cyan: "#00FFFF" + white: "#E0E6FF" + brightBlack: "#4A4A66" + brightRed: "#FF6699" + brightGreen: "#66FFAA" + brightYellow: "#FFCC66" + brightBlue: "#6699FF" + brightMagenta: "#FF66AA" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 91.9 + black: 0 + red: 40.2 + green: 87.4 + yellow: 66.3 + blue: 29.7 + magenta: 39.1 + cyan: 92 + white: 91.9 + brightBlack: 12.7 + brightRed: 49.2 + brightGreen: 90.3 + brightYellow: 80.1 + brightBlue: 48.4 + brightMagenta: 49.9 + brightCyan: 93.8 + brightWhite: 107.7 diff --git a/themes/neon-cyberpunk-theme--neon-matrix.yaml b/themes/neon-cyberpunk-theme--neon-matrix.yaml new file mode 100644 index 00000000..f5600308 --- /dev/null +++ b/themes/neon-cyberpunk-theme--neon-matrix.yaml @@ -0,0 +1,53 @@ +name: "Neon Cyberpunk Theme (Neon Matrix)" +source: + marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" + version: "1.0.0" + installs: 1553 + rating: 0 + ratings: 0 + author: "Little Waterfall" + repo: "https://github.com/LittleWaterfall/vscode-neon-glow" + url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" + formats: null +colors: + bg: "#000000" + fg: "#00FF00" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0080FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#808080" + brightRed: "#FF8080" + brightGreen: "#80FF80" + brightYellow: "#FFFF80" + brightBlue: "#8080FF" + brightMagenta: "#FF80FF" + brightCyan: "#80FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 86.5 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 37.1 + magenta: 46.2 + cyan: 92.2 + white: 107.9 + brightBlack: 34.8 + brightRed: 54.7 + brightGreen: 90.8 + brightYellow: 103.7 + brightBlue: 42.1 + brightMagenta: 60.6 + brightCyan: 95.3 + brightWhite: 107.9 diff --git a/themes/neon-cyberpunk-theme--neon-ocean.yaml b/themes/neon-cyberpunk-theme--neon-ocean.yaml new file mode 100644 index 00000000..c0cd8c0d --- /dev/null +++ b/themes/neon-cyberpunk-theme--neon-ocean.yaml @@ -0,0 +1,53 @@ +name: "Neon Cyberpunk Theme (Neon Ocean)" +source: + marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" + version: "1.0.0" + installs: 1553 + rating: 0 + ratings: 0 + author: "Little Waterfall" + repo: "https://github.com/LittleWaterfall/vscode-neon-glow" + url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" + formats: null +colors: + bg: "#000510" + fg: "#00FFFF" + black: "#000000" + red: "#FF6B6B" + green: "#00FF80" + yellow: "#FFA500" + blue: "#00D4FF" + magenta: "#B19CD9" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#4A90E2" + brightRed: "#FF8E8E" + brightGreen: "#80FF9A" + brightYellow: "#FFB84D" + brightBlue: "#66E0FF" + brightMagenta: "#D4B3FF" + brightCyan: "#80FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 251 + pair: null + contrast: + fg: 92.1 + black: 0 + red: 49.1 + green: 87.5 + yellow: 64.7 + blue: 70.9 + magenta: 54.1 + cyan: 92.1 + white: 107.8 + brightBlack: 41.7 + brightRed: 59 + brightGreen: 91.4 + brightYellow: 71.9 + brightBlue: 78.6 + brightMagenta: 69.3 + brightCyan: 95.2 + brightWhite: 107.8 diff --git a/themes/neon-cyberpunk-theme--neon-sunset.yaml b/themes/neon-cyberpunk-theme--neon-sunset.yaml new file mode 100644 index 00000000..49a9958a --- /dev/null +++ b/themes/neon-cyberpunk-theme--neon-sunset.yaml @@ -0,0 +1,53 @@ +name: "Neon Cyberpunk Theme (Neon Sunset)" +source: + marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" + version: "1.0.0" + installs: 1553 + rating: 0 + ratings: 0 + author: "Little Waterfall" + repo: "https://github.com/LittleWaterfall/vscode-neon-glow" + url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" + formats: null +colors: + bg: "#0A0500" + fg: "#FFAA00" + black: "#000000" + red: "#FF4444" + green: "#88FF00" + yellow: "#FFDD00" + blue: "#4488FF" + magenta: "#FF8844" + cyan: "#44FFFF" + white: "#FFFFFF" + brightBlack: "#CC6600" + brightRed: "#FF6666" + brightGreen: "#AAFF44" + brightYellow: "#FFEE44" + brightBlue: "#66AAFF" + brightMagenta: "#FFAA66" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 82 + pair: null + contrast: + fg: 66.4 + black: 0 + red: 41.6 + green: 90.2 + yellow: 86.8 + blue: 40.8 + magenta: 55.8 + cyan: 92.8 + white: 107.8 + brightBlack: 36.4 + brightRed: 47.9 + brightGreen: 93 + brightYellow: 94.8 + brightBlue: 55 + brightMagenta: 67.2 + brightCyan: 93.9 + brightWhite: 107.8 diff --git a/themes/neon-cyberpunk-theme--neon-synthwave.yaml b/themes/neon-cyberpunk-theme--neon-synthwave.yaml new file mode 100644 index 00000000..006fca3a --- /dev/null +++ b/themes/neon-cyberpunk-theme--neon-synthwave.yaml @@ -0,0 +1,53 @@ +name: "Neon Cyberpunk Theme (Neon Synthwave)" +source: + marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" + version: "1.0.0" + installs: 1553 + rating: 0 + ratings: 0 + author: "Little Waterfall" + repo: "https://github.com/LittleWaterfall/vscode-neon-glow" + url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" + formats: null +colors: + bg: "#1A0033" + fg: "#FFEEFF" + black: "#330066" + red: "#FF2080" + green: "#80FF80" + yellow: "#FF9900" + blue: "#8080FF" + magenta: "#FF80FF" + cyan: "#80FFFF" + white: "#FFEEFF" + brightBlack: "#663399" + brightRed: "#FF40A0" + brightGreen: "#A0FFA0" + brightYellow: "#FFB340" + brightBlue: "#A0A0FF" + brightMagenta: "#FFA0FF" + brightCyan: "#A0FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 301 + pair: null + contrast: + fg: 99.2 + black: 0 + red: 39.1 + green: 90 + yellow: 59.9 + blue: 41.3 + magenta: 59.8 + cyan: 94.5 + white: 99.2 + brightBlack: 13 + brightRed: 42.8 + brightGreen: 93 + brightYellow: 69.2 + brightBlue: 55.2 + brightMagenta: 69 + brightCyan: 96.7 + brightWhite: 107.1 diff --git a/themes/neon-cyberpunk-theme--neon-violet.yaml b/themes/neon-cyberpunk-theme--neon-violet.yaml new file mode 100644 index 00000000..c6903288 --- /dev/null +++ b/themes/neon-cyberpunk-theme--neon-violet.yaml @@ -0,0 +1,53 @@ +name: "Neon Cyberpunk Theme (Neon Violet)" +source: + marketplace_id: "LittleWaterfall.neon-cyberpunk-theme" + version: "1.0.0" + installs: 1553 + rating: 0 + ratings: 0 + author: "Little Waterfall" + repo: "https://github.com/LittleWaterfall/vscode-neon-glow" + url: "https://marketplace.visualstudio.com/items?itemName=LittleWaterfall.neon-cyberpunk-theme" + formats: null +colors: + bg: "#050008" + fg: "#CC66FF" + black: "#000000" + red: "#FF3366" + green: "#88FF44" + yellow: "#FF8800" + blue: "#4488FF" + magenta: "#CC66FF" + cyan: "#44FFCC" + white: "#FFFFFF" + brightBlack: "#8844CC" + brightRed: "#FF6688" + brightGreen: "#AEFF66" + brightYellow: "#FFAA44" + brightBlue: "#66AAFF" + brightMagenta: "#EE88FF" + brightCyan: "#66FFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 317 + pair: null + contrast: + fg: 45.2 + black: 0 + red: 40.4 + green: 90.4 + yellow: 55.5 + blue: 40.8 + magenta: 45.2 + cyan: 90.5 + white: 107.9 + brightBlack: 24.4 + brightRed: 48.8 + brightGreen: 93.8 + brightYellow: 66.8 + brightBlue: 55 + brightMagenta: 59.5 + brightCyan: 93.1 + brightWhite: 107.9 diff --git a/themes/neon-dreams-theme--neon-dreams.yaml b/themes/neon-dreams-theme--neon-dreams.yaml new file mode 100644 index 00000000..436d4180 --- /dev/null +++ b/themes/neon-dreams-theme--neon-dreams.yaml @@ -0,0 +1,53 @@ +name: "Neon Dreams Theme (Neon Dreams)" +source: + marketplace_id: "CursorThemes.neon-dreams-theme" + version: "1.5.0" + installs: 615 + rating: 5 + ratings: 1 + author: "Cursor Themes" + repo: "https://github.com/Cursor-Themes/neon_dreams" + url: "https://marketplace.visualstudio.com/items?itemName=CursorThemes.neon-dreams-theme" + formats: null +colors: + bg: "#1A0F1A" + fg: "#E8D8E8" + black: "#1A0F1A" + red: "#DD77AA" + green: "#99DDAA" + yellow: "#DDAA77" + blue: "#88CCDD" + magenta: "#DD77DD" + cyan: "#77DDCC" + white: "#E8D8E8" + brightBlack: "#5A4A5A" + brightRed: "#EE88BB" + brightGreen: "#AAEEBB" + brightYellow: "#EEBB88" + brightBlue: "#99DDEE" + brightMagenta: "#EE88EE" + brightCyan: "#88EECC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 327 + pair: null + contrast: + fg: 85.2 + black: 0 + red: 46.5 + green: 76 + yellow: 61 + blue: 68.9 + magenta: 49.1 + cyan: 74.9 + white: 85.2 + brightBlack: 13.2 + brightRed: 55 + brightGreen: 86.3 + brightYellow: 70.7 + brightBlue: 78.9 + brightMagenta: 57.8 + brightCyan: 84.2 + brightWhite: 107.2 diff --git a/themes/neon-genesis-evangelion-themes.yaml b/themes/neon-genesis-evangelion-themes.yaml new file mode 100644 index 00000000..8b627fdc --- /dev/null +++ b/themes/neon-genesis-evangelion-themes.yaml @@ -0,0 +1,53 @@ +name: "Neon Genesis Evangelion Themes" +source: + marketplace_id: "engr.neon-genesis-evangelion-themes" + version: "0.3.0" + installs: 1747 + rating: 5 + ratings: 3 + author: "engr" + repo: "https://github.com/engrx0/neon-genesis-evangelion-vscode-theme-extension" + url: "https://marketplace.visualstudio.com/items?itemName=engr.neon-genesis-evangelion-themes" + formats: null +colors: + bg: "#0A0A0A" + fg: "#FBE6E5" + black: "#0A0A0A" + red: "#E6122B" + green: "#65AF50" + yellow: "#E07A3F" + blue: "#65AF50" + magenta: "#E07A3F" + cyan: "#65AF50" + white: "#F93431" + brightBlack: "#101010" + brightRed: "#F93431" + brightGreen: "#65AF50" + brightYellow: "#E07A3F" + brightBlue: "#65AF50" + brightMagenta: "#E07A3F" + brightCyan: "#65AF50" + brightWhite: "#FBE6E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.4 + black: 0 + red: 31.5 + green: 49.7 + yellow: 45.5 + blue: 49.7 + magenta: 45.5 + cyan: 49.7 + white: 38.1 + brightBlack: 0 + brightRed: 38.1 + brightGreen: 49.7 + brightYellow: 45.5 + brightBlue: 49.7 + brightMagenta: 45.5 + brightCyan: 49.7 + brightWhite: 94.4 diff --git a/themes/neon-green-dark-terminal--neon-green-light.yaml b/themes/neon-green-dark-terminal--neon-green-light.yaml new file mode 100644 index 00000000..34562a0f --- /dev/null +++ b/themes/neon-green-dark-terminal--neon-green-light.yaml @@ -0,0 +1,54 @@ +name: "Neon Green — Dark Terminal (Neon Green — Light)" +source: + marketplace_id: "luongnv89.neon-green-theme" + version: "1.2.1" + installs: 35 + rating: 0 + ratings: 0 + author: "luongnv89" + repo: "https://github.com/luongnv89/vscode-theme-neon-green" + url: "https://marketplace.visualstudio.com/items?itemName=luongnv89.neon-green-theme" + formats: + iterm2: "https://raw.githubusercontent.com/luongnv89/vscode-theme-neon-green/main/themes/Neon Green Dark.itermcolors" +colors: + bg: "#F0FAF0" + fg: "#2A2D3E" + black: "#1B1A2E" + red: "#C4284A" + green: "#0D9E00" + yellow: "#B37800" + blue: "#8394FF" + magenta: "#BF41FF" + cyan: "#00C8B4" + white: "#D9E0EB" + brightBlack: "#3E6E40" + brightRed: "#E8405A" + brightGreen: "#18B818" + brightYellow: "#D09000" + brightBlue: "#A1AFFF" + brightMagenta: "#D770FF" + brightCyan: "#33EAD0" + brightWhite: "#F0F3FA" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 95.5 + black: 99.2 + red: 71.8 + green: 57.7 + yellow: 60 + blue: 48.3 + magenta: 60.4 + cyan: 36.1 + white: 11.5 + brightBlack: 75.1 + brightRed: 60.9 + brightGreen: 46.3 + brightYellow: 48 + brightBlue: 35.9 + brightMagenta: 47.9 + brightCyan: 19 + brightWhite: 0 diff --git a/themes/neon-green-dark-terminal--neon-green-midnight.yaml b/themes/neon-green-dark-terminal--neon-green-midnight.yaml new file mode 100644 index 00000000..53cf092f --- /dev/null +++ b/themes/neon-green-dark-terminal--neon-green-midnight.yaml @@ -0,0 +1,54 @@ +name: "Neon Green — Dark Terminal (Neon Green — Midnight)" +source: + marketplace_id: "luongnv89.neon-green-theme" + version: "1.2.1" + installs: 35 + rating: 0 + ratings: 0 + author: "luongnv89" + repo: "https://github.com/luongnv89/vscode-theme-neon-green" + url: "https://marketplace.visualstudio.com/items?itemName=luongnv89.neon-green-theme" + formats: + iterm2: "https://raw.githubusercontent.com/luongnv89/vscode-theme-neon-green/main/themes/Neon Green Dark.itermcolors" +colors: + bg: "#0E0E1A" + fg: "#D5DCE8" + black: "#1B1A2E" + red: "#FF5555" + green: "#39FF14" + yellow: "#FFB347" + blue: "#8394FF" + magenta: "#BF41FF" + cyan: "#00FFE2" + white: "#D9E0EB" + brightBlack: "#505370" + brightRed: "#FF7777" + brightGreen: "#4DFF4D" + brightYellow: "#FFC87D" + brightBlue: "#A1AFFF" + brightMagenta: "#D770FF" + brightCyan: "#33FFEB" + brightWhite: "#F0F3FA" +meta: + mode: "dark" + accent: "green" + hue: 283 + pair: null + contrast: + fg: 84.7 + black: 0 + red: 44 + green: 86.6 + yellow: 69.7 + blue: 48.5 + magenta: 36.2 + cyan: 90.4 + white: 87.1 + brightBlack: 15.7 + brightRed: 51.8 + brightGreen: 87.4 + brightYellow: 78.7 + brightBlue: 61.3 + brightMagenta: 48.9 + brightCyan: 91.1 + brightWhite: 99.5 diff --git a/themes/neon-jet.yaml b/themes/neon-jet.yaml new file mode 100644 index 00000000..049ae82c --- /dev/null +++ b/themes/neon-jet.yaml @@ -0,0 +1,53 @@ +name: "Neon jet" +source: + marketplace_id: "imexoodeex.neonjet" + version: "1.1.0" + installs: 2732 + rating: 5 + ratings: 1 + author: "imexoodeex" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=imexoodeex.neonjet" + formats: null +colors: + bg: "#131315" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.8 + black: 0 + red: 27.1 + green: 53.3 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.4 diff --git a/themes/neon-palette-themes-neon-palette-themes-red.yaml b/themes/neon-palette-themes-neon-palette-themes-red.yaml new file mode 100644 index 00000000..c7deb88f --- /dev/null +++ b/themes/neon-palette-themes-neon-palette-themes-red.yaml @@ -0,0 +1,53 @@ +name: "Neon Palette Themes (Neon Palette Themes (Red))" +source: + marketplace_id: "Jofa8.neon-palette-themes" + version: "0.0.1" + installs: 1871 + rating: 5 + ratings: 1 + author: "Jofa8" + repo: "https://github.com/Jofa8/neon-palette-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Jofa8.neon-palette-themes" + formats: null +colors: + bg: "#12130F" + fg: "#D0CCD1" + black: "#000000" + red: "#CD3131" + green: "#7FE960" + yellow: "#FFEC03" + blue: "#03B4FF" + magenta: "#FF5CE4" + cyan: "#02E1D9" + white: "#D0CCD1" + brightBlack: "#8C8C8C" + brightRed: "#FF5E5E" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 75.8 + black: 0 + red: 27.1 + green: 78.3 + yellow: 93 + blue: 56.1 + magenta: 50.6 + cyan: 74.5 + white: 75.8 + brightBlack: 40 + brightRed: 45.6 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/neon-shimmer--neon-shimmer.yaml b/themes/neon-shimmer--neon-shimmer.yaml new file mode 100644 index 00000000..e37dcfec --- /dev/null +++ b/themes/neon-shimmer--neon-shimmer.yaml @@ -0,0 +1,53 @@ +name: "Neon Shimmer (Neon Shimmer)" +source: + marketplace_id: "piperunner.neon-shimmer" + version: "1.2.0" + installs: 16863 + rating: 5 + ratings: 2 + author: "Pipe Runner" + repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" + url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#E64471" + green: "#73C991" + yellow: "#FFD11B" + blue: "#8968FF" + magenta: "#EE4CFC" + cyan: "#04D9C4" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF487B" + brightGreen: "#A6E422" + brightYellow: "#FFDF7E" + brightBlue: "#A78BFF" + brightMagenta: "#F942FF" + brightCyan: "#45FFED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 36.7 + green: 63.8 + yellow: 81.7 + blue: 36.3 + magenta: 46.7 + cyan: 70.2 + white: 91 + brightBlack: 23 + brightRed: 43.3 + brightGreen: 78.9 + brightYellow: 88.8 + brightBlue: 49.7 + brightMagenta: 48 + brightCyan: 92 + brightWhite: 107.9 diff --git a/themes/neon-shimmer-neon-shimmer-amethyst-core.yaml b/themes/neon-shimmer-neon-shimmer-amethyst-core.yaml new file mode 100644 index 00000000..47b73511 --- /dev/null +++ b/themes/neon-shimmer-neon-shimmer-amethyst-core.yaml @@ -0,0 +1,53 @@ +name: "Neon Shimmer (Neon Shimmer (Amethyst Core))" +source: + marketplace_id: "piperunner.neon-shimmer" + version: "1.2.0" + installs: 16863 + rating: 5 + ratings: 2 + author: "Pipe Runner" + repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" + url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" + formats: null +colors: + bg: "#070012" + fg: "#E6D9FF" + black: "#070012" + red: "#8E4AF5" + green: "#73C991" + yellow: "#FFDF7E" + blue: "#B377FF" + magenta: "#B377FF" + cyan: "#04D9C4" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#8E4AF5" + brightGreen: "#04D9C4" + brightYellow: "#EE4CFC" + brightBlue: "#A78BFF" + brightMagenta: "#D1A3FF" + brightCyan: "#45FFED" + brightWhite: "#E6D9FF" +meta: + mode: "dark" + accent: "pink" + hue: 304 + pair: null + contrast: + fg: 87.1 + black: 0 + red: 29.6 + green: 63.7 + yellow: 88.8 + blue: 45.4 + magenta: 45.4 + cyan: 70.2 + white: 91 + brightBlack: 23 + brightRed: 29.6 + brightGreen: 70.2 + brightYellow: 46.7 + brightBlue: 49.6 + brightMagenta: 63.2 + brightCyan: 91.9 + brightWhite: 87.1 diff --git a/themes/neon-shimmer-neon-shimmer-bubblegum-punk.yaml b/themes/neon-shimmer-neon-shimmer-bubblegum-punk.yaml new file mode 100644 index 00000000..aceb4de2 --- /dev/null +++ b/themes/neon-shimmer-neon-shimmer-bubblegum-punk.yaml @@ -0,0 +1,53 @@ +name: "Neon Shimmer (Neon Shimmer (Bubblegum Punk))" +source: + marketplace_id: "piperunner.neon-shimmer" + version: "1.2.0" + installs: 16863 + rating: 5 + ratings: 2 + author: "Pipe Runner" + repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" + url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" + formats: null +colors: + bg: "#080006" + fg: "#FFD9F2" + black: "#080006" + red: "#EE4CFC" + green: "#73C991" + yellow: "#FFDF7E" + blue: "#EE05F2" + magenta: "#EE4CFC" + cyan: "#FFFFFF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F22294" + brightGreen: "#8E4AF5" + brightYellow: "#FFDF7E" + brightBlue: "#A78BFF" + brightMagenta: "#EE4CFC" + brightCyan: "#45FFED" + brightWhite: "#FFD9F2" +meta: + mode: "dark" + accent: "pink" + hue: 335 + pair: null + contrast: + fg: 90.2 + black: 0 + red: 46.7 + green: 63.7 + yellow: 88.8 + blue: 41.4 + magenta: 46.7 + cyan: 107.9 + white: 91 + brightBlack: 23 + brightRed: 37.5 + brightGreen: 29.7 + brightYellow: 88.8 + brightBlue: 49.7 + brightMagenta: 46.7 + brightCyan: 92 + brightWhite: 90.2 diff --git a/themes/neon-shimmer-neon-shimmer-crimson-drive.yaml b/themes/neon-shimmer-neon-shimmer-crimson-drive.yaml new file mode 100644 index 00000000..a7e72d9c --- /dev/null +++ b/themes/neon-shimmer-neon-shimmer-crimson-drive.yaml @@ -0,0 +1,53 @@ +name: "Neon Shimmer (Neon Shimmer (Crimson Drive))" +source: + marketplace_id: "piperunner.neon-shimmer" + version: "1.2.0" + installs: 16863 + rating: 5 + ratings: 2 + author: "Pipe Runner" + repo: "https://github.com/Pipe-Runner-Lab/neon-shimmer" + url: "https://marketplace.visualstudio.com/items?itemName=piperunner.neon-shimmer" + formats: null +colors: + bg: "#0A0103" + fg: "#FFB3D9" + black: "#0A0103" + red: "#E64471" + green: "#73C991" + yellow: "#FFDF7E" + blue: "#FF845E" + magenta: "#E64471" + cyan: "#FFFFFF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#E64471" + brightGreen: "#FF845E" + brightYellow: "#FFDF7E" + brightBlue: "#A78BFF" + brightMagenta: "#FF487B" + brightCyan: "#45FFED" + brightWhite: "#FFB3D9" +meta: + mode: "dark" + accent: "red" + hue: 2 + pair: null + contrast: + fg: 74.1 + black: 0 + red: 36.7 + green: 63.7 + yellow: 88.8 + blue: 55 + magenta: 36.7 + cyan: 107.9 + white: 91 + brightBlack: 23 + brightRed: 36.7 + brightGreen: 55 + brightYellow: 88.8 + brightBlue: 49.6 + brightMagenta: 43.3 + brightCyan: 92 + brightWhite: 74.1 diff --git a/themes/neonite-theme.yaml b/themes/neonite-theme.yaml new file mode 100644 index 00000000..bf3d02c8 --- /dev/null +++ b/themes/neonite-theme.yaml @@ -0,0 +1,53 @@ +name: "Neonite Theme" +source: + marketplace_id: "MohamedElsherbiny.neonite-theme" + version: "1.3.0" + installs: 630 + rating: 5 + ratings: 1 + author: "Mohamed Elsherbiny" + repo: "https://github.com/MoElsherbiny/vscode-neonite-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MohamedElsherbiny.neonite-theme" + formats: null +colors: + bg: "#0A0E14" + fg: "#F0F4FC" + black: "#1A1E24" + red: "#FF6E6E" + green: "#76FF8F" + yellow: "#FFE68A" + blue: "#9D6CFF" + magenta: "#FF92DF" + cyan: "#6CF3FF" + white: "#FFFFFF" + brightBlack: "#4A4F5B" + brightRed: "#FF9191" + brightGreen: "#9AFFA9" + brightYellow: "#FFF4A3" + brightBlue: "#B28CFF" + brightMagenta: "#FFACE5" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + pair: null + contrast: + fg: 100.2 + black: 0 + red: 49.5 + green: 90.3 + yellow: 91.9 + blue: 39.3 + magenta: 63.3 + cyan: 87.9 + white: 107.6 + brightBlack: 13.5 + brightRed: 59.7 + brightGreen: 93.3 + brightYellow: 98.9 + brightBlue: 51.1 + brightMagenta: 71.9 + brightCyan: 97.5 + brightWhite: 107.6 diff --git a/themes/neovim-theme--neovim-theme.yaml b/themes/neovim-theme--neovim-theme.yaml new file mode 100644 index 00000000..25e90301 --- /dev/null +++ b/themes/neovim-theme--neovim-theme.yaml @@ -0,0 +1,53 @@ +name: "neovim-theme (neovim-theme)" +source: + marketplace_id: "GustavoLins05.neovim-theme" + version: "4.0.0" + installs: 840 + rating: 0 + ratings: 0 + author: "Gustavo Lins" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GustavoLins05.neovim-theme" + formats: null +colors: + bg: "#141618" + fg: "#F8FAFC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 103.5 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/nest-theme.yaml b/themes/nest-theme.yaml new file mode 100644 index 00000000..98a1c60e --- /dev/null +++ b/themes/nest-theme.yaml @@ -0,0 +1,53 @@ +name: "Nest Theme" +source: + marketplace_id: "nesterman.material-nest-theme" + version: "1.0.40" + installs: 5494 + rating: 0 + ratings: 0 + author: "Nick Nesterov" + repo: "https://github.com/nesterman/vscode-nest-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nesterman.material-nest-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#597078" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 76 + black: 106 + red: 57.1 + green: 18.3 + yellow: 23.3 + blue: 45.2 + magenta: 47.3 + cyan: 23.9 + white: 0 + brightBlack: 74.3 + brightRed: 57.1 + brightGreen: 18.3 + brightYellow: 23.3 + brightBlue: 45.2 + brightMagenta: 47.3 + brightCyan: 23.9 + brightWhite: 0 diff --git a/themes/nestjs-full-color-theme.yaml b/themes/nestjs-full-color-theme.yaml new file mode 100644 index 00000000..d2a6887f --- /dev/null +++ b/themes/nestjs-full-color-theme.yaml @@ -0,0 +1,53 @@ +name: "nestjs full color theme" +source: + marketplace_id: "EstevamSouza.nestjs-codes-vscode-theme" + version: "0.0.4" + installs: 10576 + rating: 0 + ratings: 0 + author: "Estevam Souza" + repo: "https://github.com/estevam5s/nestjs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=EstevamSouza.nestjs-codes-vscode-theme" + formats: null +colors: + bg: "#000000" + fg: "#FF8B56" + black: "#EE0F0F" + red: "#610692" + green: "#55E513" + yellow: "#A553C6" + blue: "#F00909" + magenta: "#AE89FE" + cyan: "#708387" + white: "#D5D5D0" + brightBlack: "#FF0000" + brightRed: "#A706EC" + brightGreen: "#A308EB" + brightYellow: "#F10202" + brightBlue: "#F10707" + brightMagenta: "#F60707" + brightCyan: "#FF0D0D" + brightWhite: "#FA100C" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 56.9 + black: 33.4 + red: 9.4 + green: 74.1 + yellow: 30.8 + blue: 33.8 + magenta: 49.9 + cyan: 34.6 + white: 80.9 + brightBlack: 37.5 + brightRed: 27.1 + brightGreen: 26.4 + brightYellow: 34 + brightBlue: 34 + brightMagenta: 35.3 + brightCyan: 37.6 + brightWhite: 36.4 diff --git a/themes/netbilla--untitled.yaml b/themes/netbilla--untitled.yaml new file mode 100644 index 00000000..0e69101b --- /dev/null +++ b/themes/netbilla--untitled.yaml @@ -0,0 +1,53 @@ +name: "NetBilla (Untitled)" +source: + marketplace_id: "Totoshi.theme-fleet-self" + version: "1.0.1" + installs: 3 + rating: 0 + ratings: 0 + author: "Totoshi" + repo: "https://github.com/aryanxxvii/fleet-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Totoshi.theme-fleet-self" + formats: null +colors: + bg: "#101010" + fg: "#D4D4D4" + black: "#000000" + red: "#F33636" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#EB6565" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 80.1 + black: 0 + red: 36.6 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 42.9 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/netlify-theme--netlify.yaml b/themes/netlify-theme--netlify.yaml new file mode 100644 index 00000000..a2cdaef9 --- /dev/null +++ b/themes/netlify-theme--netlify.yaml @@ -0,0 +1,53 @@ +name: "Netlify Theme (Netlify)" +source: + marketplace_id: "austincondiff.netlify-vscode-theme" + version: "1.0.4" + installs: 4684 + rating: 5 + ratings: 3 + author: "Austin Condiff" + repo: "https://github.com/austincondiff/netlify-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=austincondiff.netlify-vscode-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#0E1E25" + black: "#E3E4EB" + red: "#D04747" + green: "#7BA63B" + yellow: "#E3A323" + blue: "#6749D0" + magenta: "#B74A9D" + cyan: "#00978F" + white: "#0E1E25" + brightBlack: "#616C7A" + brightRed: "#FFA5A5" + brightGreen: "#CDECA1" + brightYellow: "#FFE98D" + brightBlue: "#BAA6FF" + brightMagenta: "#F5A8E3" + brightCyan: "#78F0E6" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 103.9 + black: 13.3 + red: 70.2 + green: 54.5 + yellow: 43.1 + blue: 79.9 + magenta: 71.9 + cyan: 63 + white: 103.9 + brightBlack: 76.6 + brightRed: 35.4 + brightGreen: 15 + brightYellow: 10.5 + brightBlue: 41.1 + brightMagenta: 33.6 + brightCyan: 17.6 + brightWhite: 0 diff --git a/themes/netlify-vscode-theme.yaml b/themes/netlify-vscode-theme.yaml new file mode 100644 index 00000000..5385d9be --- /dev/null +++ b/themes/netlify-vscode-theme.yaml @@ -0,0 +1,55 @@ +name: "netlify-vscode-theme" +source: + marketplace_id: "ohheyjosh.netlify-vscode-theme" + version: "1.2.4" + installs: 524 + rating: 0 + ratings: 0 + author: "ohheyjosh" + repo: "https://github.com/ohheyjosh/netlify-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ohheyjosh.netlify-vscode-theme" + formats: + hyper: "https://raw.githubusercontent.com/ohheyjosh/netlify-theme/main/hyper/index.js" + sublime: "https://raw.githubusercontent.com/ohheyjosh/netlify-theme/main/sublime-text/Netlify.tmTheme" +colors: + bg: "#0B1113" + fg: "#F7F8F8" + black: "#2D3B41" + red: "#FF6969" + green: "#43D860" + yellow: "#FFAD43" + blue: "#43B4D8" + magenta: "#C57AA2" + cyan: "#00AD9F" + white: "#F7F8F8" + brightBlack: "#2D3B41" + brightRed: "#F25481" + brightGreen: "#01DF2E" + brightYellow: "#FFD26E" + brightBlue: "#C4E8F3" + brightMagenta: "#FFB8B8" + brightCyan: "#38FFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 220 + pair: null + contrast: + fg: 102.7 + black: 0 + red: 48.2 + green: 67.2 + yellow: 67.4 + blue: 54.7 + magenta: 43 + cyan: 48 + white: 102.7 + brightBlack: 0 + brightRed: 41.9 + brightGreen: 69.4 + brightYellow: 82.5 + brightBlue: 88.6 + brightMagenta: 74.1 + brightCyan: 91.3 + brightWhite: 107.4 diff --git a/themes/neutral--bluesea.yaml b/themes/neutral--bluesea.yaml new file mode 100644 index 00000000..4f1afaf6 --- /dev/null +++ b/themes/neutral--bluesea.yaml @@ -0,0 +1,53 @@ +name: "Neutral (BlueSea)" +source: + marketplace_id: "YesCode.neutral" + version: "0.0.9" + installs: 609 + rating: 5 + ratings: 1 + author: "YesCode" + repo: "https://github.com/yesomac/NeutralThemeVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.neutral" + formats: null +colors: + bg: "#09021D" + fg: "#F7EEFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#F9F8FA" + brightYellow: "#C4A2EB" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 292 + pair: null + contrast: + fg: 98.7 + black: 0 + red: 42.8 + green: 61.8 + yellow: 73.9 + blue: 48.4 + magenta: 20.4 + cyan: 50.3 + white: 48.1 + brightBlack: 19.4 + brightRed: 42.8 + brightGreen: 103.3 + brightYellow: 59.6 + brightBlue: 19.6 + brightMagenta: 20.4 + brightCyan: 50.3 + brightWhite: 99.7 diff --git a/themes/neutral--neutral.yaml b/themes/neutral--neutral.yaml new file mode 100644 index 00000000..5ab9d7b9 --- /dev/null +++ b/themes/neutral--neutral.yaml @@ -0,0 +1,53 @@ +name: "Neutral (Neutral)" +source: + marketplace_id: "YesCode.neutral" + version: "0.0.9" + installs: 609 + rating: 5 + ratings: 1 + author: "YesCode" + repo: "https://github.com/yesomac/NeutralThemeVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.neutral" + formats: null +colors: + bg: "#1E2031" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#98ABFF" + brightYellow: "#20473A" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 279 + pair: null + contrast: + fg: 103.3 + black: 0 + red: 40.7 + green: 59.7 + yellow: 71.8 + blue: 46.2 + magenta: 18.2 + cyan: 48.1 + white: 45.9 + brightBlack: 17.3 + brightRed: 40.7 + brightGreen: 56.9 + brightYellow: 0 + brightBlue: 17.4 + brightMagenta: 18.2 + brightCyan: 48.1 + brightWhite: 97.6 diff --git a/themes/neutral--neutralvi.yaml b/themes/neutral--neutralvi.yaml new file mode 100644 index 00000000..e6202395 --- /dev/null +++ b/themes/neutral--neutralvi.yaml @@ -0,0 +1,53 @@ +name: "Neutral (NeutralVI)" +source: + marketplace_id: "YesCode.neutral" + version: "0.0.9" + installs: 609 + rating: 5 + ratings: 1 + author: "YesCode" + repo: "https://github.com/yesomac/NeutralThemeVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.neutral" + formats: null +colors: + bg: "#0C0104" + fg: "#FEEEFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#F9F8FA" + brightYellow: "#20473A" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 358 + pair: null + contrast: + fg: 99.8 + black: 0 + red: 42.9 + green: 61.9 + yellow: 74 + blue: 48.5 + magenta: 20.5 + cyan: 50.4 + white: 48.2 + brightBlack: 19.5 + brightRed: 42.9 + brightGreen: 103.4 + brightYellow: 8.5 + brightBlue: 19.7 + brightMagenta: 20.5 + brightCyan: 50.4 + brightWhite: 99.8 diff --git a/themes/new-dark-railscasts.yaml b/themes/new-dark-railscasts.yaml new file mode 100644 index 00000000..e302c9fc --- /dev/null +++ b/themes/new-dark-railscasts.yaml @@ -0,0 +1,53 @@ +name: "New dark Railscasts" +source: + marketplace_id: "carakan.new-railscasts" + version: "1.0.68" + installs: 4019 + rating: 4.75 + ratings: 4 + author: "Carlos Ramos" + repo: "https://github.com/carakan/new-railscasts-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=carakan.new-railscasts" + formats: null +colors: + bg: "#202020" + fg: "#FEF9E1" + black: "#212121" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#F3F5F5" + brightBlack: "#4A4A4A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.4 + black: 0 + red: 45.5 + green: 83.1 + yellow: 77.8 + blue: 54.8 + magenta: 52.6 + cyan: 77.1 + white: 98.9 + brightBlack: 9.8 + brightRed: 45.5 + brightGreen: 83.1 + brightYellow: 77.8 + brightBlue: 54.8 + brightMagenta: 52.6 + brightCyan: 77.1 + brightWhite: 105.8 diff --git a/themes/new-england.yaml b/themes/new-england.yaml new file mode 100644 index 00000000..245932ff --- /dev/null +++ b/themes/new-england.yaml @@ -0,0 +1,53 @@ +name: "New England" +source: + marketplace_id: "dustypomerleau.new-england" + version: "0.10.0" + installs: 7011 + rating: 5 + ratings: 1 + author: "Dusty Pomerleau" + repo: "https://github.com/dustypomerleau/new-england" + url: "https://marketplace.visualstudio.com/items?itemName=dustypomerleau.new-england" + formats: null +colors: + bg: "#FDF1D4" + fg: "#3E454E" + black: "#3E454E" + red: "#660000" + green: "#859900" + yellow: "#664400" + blue: "#43596F" + magenta: "#490049" + cyan: "#2C5851" + white: "#97907F" + brightBlack: "#3A485B" + brightRed: "#800000" + brightGreen: "#859900" + brightYellow: "#9A4E32" + brightBlue: "#587182" + brightMagenta: "#490049" + brightCyan: "#407875" + brightWhite: "#585550" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 84.6 + black: 84.6 + red: 89.9 + green: 51.1 + yellow: 81.9 + blue: 77.2 + magenta: 92.9 + cyan: 79.7 + white: 51 + brightBlack: 83.5 + brightRed: 85 + brightGreen: 51.1 + brightYellow: 71.6 + brightBlue: 67.4 + brightMagenta: 92.9 + brightCyan: 66.8 + brightWhite: 77.9 diff --git a/themes/new-moon-syntax-theme.yaml b/themes/new-moon-syntax-theme.yaml new file mode 100644 index 00000000..e48b782a --- /dev/null +++ b/themes/new-moon-syntax-theme.yaml @@ -0,0 +1,53 @@ +name: "New Moon Syntax Theme" +source: + marketplace_id: "taniarascia.new-moon-vscode" + version: "1.8.8" + installs: 117751 + rating: 4.95 + ratings: 19 + author: "Tania Rascia" + repo: "https://github.com/taniarascia/new-moon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=taniarascia.new-moon-vscode" + formats: null +colors: + bg: "#2D2D2D" + fg: "#B3B9C5" + black: "#666666" + red: "#F2777A" + green: "#92D192" + yellow: "#FFD479" + blue: "#6AB0F3" + magenta: "#E1A6F2" + cyan: "#62CFCF" + white: "#FFFFFF" + brightBlack: "#777777" + brightRed: "#F2777A" + brightGreen: "#92D192" + brightYellow: "#FFD479" + brightBlue: "#6AB0F3" + brightMagenta: "#E1A6F2" + brightCyan: "#62CFCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 60 + black: 18.6 + red: 45.1 + green: 65.3 + yellow: 79.5 + blue: 52.4 + magenta: 61.4 + cyan: 63.5 + white: 103.4 + brightBlack: 26.1 + brightRed: 45.1 + brightGreen: 65.3 + brightYellow: 79.5 + brightBlue: 52.4 + brightMagenta: 61.4 + brightCyan: 63.5 + brightWhite: 103.4 diff --git a/themes/newera-theme.yaml b/themes/newera-theme.yaml new file mode 100644 index 00000000..0e7be93f --- /dev/null +++ b/themes/newera-theme.yaml @@ -0,0 +1,53 @@ +name: "newera-theme" +source: + marketplace_id: "sguerson.newera-theme" + version: "1.1.2" + installs: 49 + rating: 0 + ratings: 0 + author: "sguerson" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sguerson.newera-theme" + formats: null +colors: + bg: "#1A1E2C" + fg: "#E0E0E0" + black: "#CECFD3" + red: "#BCBCBC" + green: "#B2B2B2" + yellow: "#E9FF70" + blue: "#E9FF70" + magenta: "#8367C7" + cyan: "#70D6FF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#ADADAB" + brightGreen: "#E9FF70" + brightYellow: "#8367C7" + brightBlue: "#8367C7" + brightMagenta: "#70D6FF" + brightCyan: "#C2C0C1" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 272 + pair: null + contrast: + fg: 86 + black: 75.6 + red: 64.4 + green: 58.7 + yellow: 98.5 + blue: 98.5 + magenta: 29.1 + cyan: 72.5 + white: 89.1 + brightBlack: 21.1 + brightRed: 55.9 + brightGreen: 98.5 + brightYellow: 29.1 + brightBlue: 29.1 + brightMagenta: 72.5 + brightCyan: 67 + brightWhite: 89.1 diff --git a/themes/next-js-theme.yaml b/themes/next-js-theme.yaml new file mode 100644 index 00000000..17a9ce63 --- /dev/null +++ b/themes/next-js-theme.yaml @@ -0,0 +1,53 @@ +name: "Next Js Theme" +source: + marketplace_id: "ShayanAliJalbani.nextjs-theme" + version: "0.0.1" + installs: 12578 + rating: 5 + ratings: 1 + author: "Shayan Ali Jalbani" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ShayanAliJalbani.nextjs-theme" + formats: null +colors: + bg: "#0A0A0A" + fg: "#EDEDED" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 96 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/nextgen-terminal-professional-dark-themes-collection--cybersec-pro.yaml b/themes/nextgen-terminal-professional-dark-themes-collection--cybersec-pro.yaml new file mode 100644 index 00000000..9540ebfe --- /dev/null +++ b/themes/nextgen-terminal-professional-dark-themes-collection--cybersec-pro.yaml @@ -0,0 +1,53 @@ +name: "NextGen Terminal - Professional Dark Themes Collection (CyberSec Pro)" +source: + marketplace_id: "nextgencode.nextgen-terminal" + version: "1.2.1" + installs: 106 + rating: 0 + ratings: 0 + author: "NextGenCode" + repo: "https://github.com/Mattzey/nextgen-terminal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" + formats: null +colors: + bg: "#0D1117" + fg: "#C9D1D9" + black: "#484F58" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFC107" + blue: "#2196F3" + magenta: "#9C27B0" + cyan: "#00BCD4" + white: "#B1BAC4" + brightBlack: "#6A737D" + brightRed: "#FF5252" + brightGreen: "#66BB6A" + brightYellow: "#FFCA28" + brightBlue: "#42A5F5" + brightMagenta: "#AB47BC" + brightCyan: "#26C6DA" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "orange" + hue: 258 + pair: null + contrast: + fg: 77.5 + black: 13.1 + red: 38.2 + green: 48.1 + yellow: 74.6 + blue: 43.5 + magenta: 21.2 + cyan: 57 + white: 64 + brightBlack: 27.8 + brightRed: 43.4 + brightGreen: 55.2 + brightYellow: 78.3 + brightBlue: 50.2 + brightMagenta: 28.5 + brightCyan: 62.1 + brightWhite: 100.9 diff --git a/themes/nextgen-terminal-professional-dark-themes-collection--matrix-reloaded-locked.yaml b/themes/nextgen-terminal-professional-dark-themes-collection--matrix-reloaded-locked.yaml new file mode 100644 index 00000000..994bbeb5 --- /dev/null +++ b/themes/nextgen-terminal-professional-dark-themes-collection--matrix-reloaded-locked.yaml @@ -0,0 +1,53 @@ +name: "NextGen Terminal - Professional Dark Themes Collection (Matrix Reloaded 🔒 LOCKED)" +source: + marketplace_id: "nextgencode.nextgen-terminal" + version: "1.2.1" + installs: 106 + rating: 0 + ratings: 0 + author: "NextGenCode" + repo: "https://github.com/Mattzey/nextgen-terminal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" + formats: null +colors: + bg: "#000000" + fg: "#444444" + black: "#000000" + red: "#FF3333" + green: "#555555" + yellow: "#888888" + blue: "#444444" + magenta: "#555555" + cyan: "#555555" + white: "#555555" + brightBlack: "#222222" + brightRed: "#FF0000" + brightGreen: "#666666" + brightYellow: "#888888" + brightBlue: "#444444" + brightMagenta: "#666666" + brightCyan: "#555555" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 9.8 + black: 0 + red: 39.6 + green: 16.1 + yellow: 38.6 + blue: 9.8 + magenta: 16.1 + cyan: 16.1 + white: 16.1 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 23 + brightYellow: 38.6 + brightBlue: 9.8 + brightMagenta: 23 + brightCyan: 16.1 + brightWhite: 107.9 diff --git a/themes/nextgen-terminal-professional-dark-themes-collection--matrix-reloaded.yaml b/themes/nextgen-terminal-professional-dark-themes-collection--matrix-reloaded.yaml new file mode 100644 index 00000000..ce6a7c4e --- /dev/null +++ b/themes/nextgen-terminal-professional-dark-themes-collection--matrix-reloaded.yaml @@ -0,0 +1,53 @@ +name: "NextGen Terminal - Professional Dark Themes Collection (Matrix Reloaded)" +source: + marketplace_id: "nextgencode.nextgen-terminal" + version: "1.2.1" + installs: 106 + rating: 0 + ratings: 0 + author: "NextGenCode" + repo: "https://github.com/Mattzey/nextgen-terminal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" + formats: null +colors: + bg: "#000000" + fg: "#00CC00" + black: "#000000" + red: "#FF3333" + green: "#00FF00" + yellow: "#CCFF00" + blue: "#00CC44" + magenta: "#00FF66" + cyan: "#66FF00" + white: "#00FF00" + brightBlack: "#004400" + brightRed: "#FF0000" + brightGreen: "#39FF14" + brightYellow: "#CCFF00" + brightBlue: "#00CC00" + brightMagenta: "#98FB98" + brightCyan: "#00FF66" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 60.3 + black: 0 + red: 39.6 + green: 86.5 + yellow: 96.2 + blue: 60.6 + magenta: 87.1 + cyan: 88.4 + white: 86.5 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 87 + brightYellow: 96.2 + brightBlue: 60.3 + brightMagenta: 90.9 + brightCyan: 87.1 + brightWhite: 107.9 diff --git a/themes/nextgen-terminal-professional-dark-themes-collection--nextgen-terminal.yaml b/themes/nextgen-terminal-professional-dark-themes-collection--nextgen-terminal.yaml new file mode 100644 index 00000000..a6045946 --- /dev/null +++ b/themes/nextgen-terminal-professional-dark-themes-collection--nextgen-terminal.yaml @@ -0,0 +1,53 @@ +name: "NextGen Terminal - Professional Dark Themes Collection (NextGen Terminal)" +source: + marketplace_id: "nextgencode.nextgen-terminal" + version: "1.2.1" + installs: 106 + rating: 0 + ratings: 0 + author: "NextGenCode" + repo: "https://github.com/Mattzey/nextgen-terminal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" + formats: null +colors: + bg: "#000000" + fg: "#00FF41" + black: "#000000" + red: "#FF0055" + green: "#00FF41" + yellow: "#FFAA00" + blue: "#00AAFF" + magenta: "#FF00FF" + cyan: "#00D9FF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF3377" + brightGreen: "#39FF14" + brightYellow: "#FFC107" + brightBlue: "#2196F3" + brightMagenta: "#FF77FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 86.7 + black: 0 + red: 38.2 + green: 86.7 + yellow: 66.5 + blue: 52.5 + magenta: 46.2 + cyan: 73.3 + white: 107.9 + brightBlack: 12 + brightRed: 40.9 + brightGreen: 87 + brightYellow: 75.1 + brightBlue: 44 + brightMagenta: 58.4 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/nextgen-terminal-professional-dark-themes-collection--quantum-flux.yaml b/themes/nextgen-terminal-professional-dark-themes-collection--quantum-flux.yaml new file mode 100644 index 00000000..1860cf03 --- /dev/null +++ b/themes/nextgen-terminal-professional-dark-themes-collection--quantum-flux.yaml @@ -0,0 +1,53 @@ +name: "NextGen Terminal - Professional Dark Themes Collection (Quantum Flux)" +source: + marketplace_id: "nextgencode.nextgen-terminal" + version: "1.2.1" + installs: 106 + rating: 0 + ratings: 0 + author: "NextGenCode" + repo: "https://github.com/Mattzey/nextgen-terminal-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.nextgen-terminal" + formats: null +colors: + bg: "#000000" + fg: "#64FFDA" + black: "#000000" + red: "#FF006E" + green: "#06FFA5" + yellow: "#D946EF" + blue: "#00F0FF" + magenta: "#B024FF" + cyan: "#00D9FF" + white: "#64FFDA" + brightBlack: "#7B2CBF" + brightRed: "#FF006E" + brightGreen: "#06FFA5" + brightYellow: "#D946EF" + brightBlue: "#00F0FF" + brightMagenta: "#FF00FF" + brightCyan: "#00D9FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 92.2 + black: 0 + red: 38.8 + green: 88.5 + yellow: 40.7 + blue: 84.5 + magenta: 31.3 + cyan: 73.3 + white: 92.2 + brightBlack: 18.4 + brightRed: 38.8 + brightGreen: 88.5 + brightYellow: 40.7 + brightBlue: 84.5 + brightMagenta: 46.2 + brightCyan: 73.3 + brightWhite: 107.9 diff --git a/themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-aurora-dawn.yaml b/themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-aurora-dawn.yaml new file mode 100644 index 00000000..6a4db886 --- /dev/null +++ b/themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-aurora-dawn.yaml @@ -0,0 +1,53 @@ +name: "NGC Themes - Best Premium VS Code Themes for Developers (NGC Aurora Dawn)" +source: + marketplace_id: "nextgencode.ngen-themes" + version: "1.1.0" + installs: 74 + rating: 0 + ratings: 0 + author: "NextGenCode" + repo: "https://github.com/Mattzey/Ngen-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" + formats: null +colors: + bg: "#F8F6FF" + fg: "#1A2332" + black: "#2C3E50" + red: "#D63447" + green: "#4BC98A" + yellow: "#E68935" + blue: "#3D9AED" + magenta: "#B794F6" + cyan: "#4BC98A" + white: "#8A95A6" + brightBlack: "#556575" + brightRed: "#E54D5F" + brightGreen: "#5FD49F" + brightYellow: "#F09C4D" + brightBlue: "#57B0FF" + brightMagenta: "#CAAAF9" + brightCyan: "#5FD49F" + brightWhite: "#E8EDF2" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98 + black: 90.7 + red: 66.6 + green: 35.9 + yellow: 46.1 + blue: 51.3 + magenta: 43.3 + cyan: 35.9 + white: 52.4 + brightBlack: 75.2 + brightRed: 59.6 + brightGreen: 29.6 + brightYellow: 38.2 + brightBlue: 40.7 + brightMagenta: 33.3 + brightCyan: 29.6 + brightWhite: 0 diff --git a/themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-aurora-night.yaml b/themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-aurora-night.yaml new file mode 100644 index 00000000..58bfce6f --- /dev/null +++ b/themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-aurora-night.yaml @@ -0,0 +1,53 @@ +name: "NGC Themes - Best Premium VS Code Themes for Developers (NGC Aurora Night)" +source: + marketplace_id: "nextgencode.ngen-themes" + version: "1.1.0" + installs: 74 + rating: 0 + ratings: 0 + author: "NextGenCode" + repo: "https://github.com/Mattzey/Ngen-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" + formats: null +colors: + bg: "#1B2028" + fg: "#E0E6ED" + black: "#151A1F" + red: "#FF6B80" + green: "#5DE4A4" + yellow: "#FFB560" + blue: "#57B5FF" + magenta: "#B794F6" + cyan: "#5DE4A4" + white: "#E0E6ED" + brightBlack: "#6B7B8C" + brightRed: "#FF8599" + brightGreen: "#75F0BC" + brightYellow: "#FFC47A" + brightBlue: "#73C6FF" + brightMagenta: "#CAAAF9" + brightCyan: "#75F0BC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 260 + pair: null + contrast: + fg: 89.1 + black: 0 + red: 47.5 + green: 74 + yellow: 69 + blue: 56.6 + magenta: 51.9 + cyan: 74 + white: 89.1 + brightBlack: 29.5 + brightRed: 54.8 + brightGreen: 82 + brightYellow: 75.3 + brightBlue: 65.4 + brightMagenta: 62.2 + brightCyan: 82 + brightWhite: 105.8 diff --git a/themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-forest-retreat.yaml b/themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-forest-retreat.yaml new file mode 100644 index 00000000..8f55d1bf --- /dev/null +++ b/themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-forest-retreat.yaml @@ -0,0 +1,53 @@ +name: "NGC Themes - Best Premium VS Code Themes for Developers (NGC Forest Retreat)" +source: + marketplace_id: "nextgencode.ngen-themes" + version: "1.1.0" + installs: 74 + rating: 0 + ratings: 0 + author: "NextGenCode" + repo: "https://github.com/Mattzey/Ngen-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" + formats: null +colors: + bg: "#1D2321" + fg: "#D9DCD6" + black: "#1D2321" + red: "#D97969" + green: "#86B98A" + yellow: "#D4A574" + blue: "#77A5A5" + magenta: "#C8A8B8" + cyan: "#86B98A" + white: "#D9DCD6" + brightBlack: "#6B7D70" + brightRed: "#E99484" + brightGreen: "#9FCDA3" + brightYellow: "#E4BC8F" + brightBlue: "#8FBFBF" + brightMagenta: "#DABCCB" + brightCyan: "#9FCDA3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.4 + black: 0 + red: 42.4 + green: 55.4 + yellow: 56 + blue: 46.8 + magenta: 57.5 + cyan: 55.4 + white: 82.4 + brightBlack: 28.9 + brightRed: 54.1 + brightGreen: 67.2 + brightYellow: 67.9 + brightBlue: 60.7 + brightMagenta: 68.6 + brightCyan: 67.2 + brightWhite: 105.5 diff --git a/themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-midnight-base.yaml b/themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-midnight-base.yaml new file mode 100644 index 00000000..e1971e7a --- /dev/null +++ b/themes/ngc-themes-best-premium-vs-code-themes-for-developers--ngc-midnight-base.yaml @@ -0,0 +1,53 @@ +name: "NGC Themes - Best Premium VS Code Themes for Developers (NGC Midnight Base)" +source: + marketplace_id: "nextgencode.ngen-themes" + version: "1.1.0" + installs: 74 + rating: 0 + ratings: 0 + author: "NextGenCode" + repo: "https://github.com/Mattzey/Ngen-Themes" + url: "https://marketplace.visualstudio.com/items?itemName=nextgencode.ngen-themes" + formats: null +colors: + bg: "#1A1D23" + fg: "#D4D4D6" + black: "#151820" + red: "#FF6B6B" + green: "#7DD3A0" + yellow: "#DCC38B" + blue: "#6FA0E6" + magenta: "#E8A5C2" + cyan: "#7DD3A0" + white: "#D4D4D6" + brightBlack: "#6B7280" + brightRed: "#FF8585" + brightGreen: "#95E7B5" + brightYellow: "#E8D1A0" + brightBlue: "#8AB7F0" + brightMagenta: "#F2BFD8" + brightCyan: "#95E7B5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 78.9 + black: 0 + red: 47.4 + green: 67.8 + yellow: 70.1 + blue: 48.3 + magenta: 62.5 + cyan: 67.8 + white: 78.9 + brightBlack: 26.4 + brightRed: 54.5 + brightGreen: 79.8 + brightYellow: 78.4 + brightBlue: 60.1 + brightMagenta: 74.7 + brightCyan: 79.8 + brightWhite: 106.2 diff --git a/themes/nibelung-theme-vscode--nibelung-dark.yaml b/themes/nibelung-theme-vscode--nibelung-dark.yaml new file mode 100644 index 00000000..26949752 --- /dev/null +++ b/themes/nibelung-theme-vscode--nibelung-dark.yaml @@ -0,0 +1,53 @@ +name: "nibelung-theme-vscode (Nibelung Dark)" +source: + marketplace_id: "veschin.nibelung-theme-vscode" + version: "0.1.0" + installs: 83 + rating: 5 + ratings: 2 + author: "Oleg Veschin" + repo: "https://github.com/veschin/nibelung-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=veschin.nibelung-theme-vscode" + formats: null +colors: + bg: "#212529" + fg: "#ADB5BD" + black: "#343A40" + red: "#FFADAD" + green: "#CAFFBF" + yellow: "#FDFFB6" + blue: "#9FA0FF" + magenta: "#FFC6FF" + cyan: "#9BF6FF" + white: "#FFD6A5" + brightBlack: "#495057" + brightRed: "#FFADAD" + brightGreen: "#CAFFBF" + brightYellow: "#FDFFB6" + brightBlue: "#9BF6FF" + brightMagenta: "#FFC6FF" + brightCyan: "#CAFFBF" + brightWhite: "#A0C4FF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 58.9 + black: 0 + red: 67.3 + green: 95.8 + yellow: 101.9 + blue: 53 + magenta: 80.4 + cyan: 89.8 + white: 83 + brightBlack: 11 + brightRed: 67.3 + brightGreen: 95.8 + brightYellow: 101.9 + brightBlue: 89.8 + brightMagenta: 80.4 + brightCyan: 95.8 + brightWhite: 67.2 diff --git a/themes/nibelung-theme-vscode--nibelung.yaml b/themes/nibelung-theme-vscode--nibelung.yaml new file mode 100644 index 00000000..c8691d7e --- /dev/null +++ b/themes/nibelung-theme-vscode--nibelung.yaml @@ -0,0 +1,53 @@ +name: "nibelung-theme-vscode (Nibelung)" +source: + marketplace_id: "veschin.nibelung-theme-vscode" + version: "0.1.0" + installs: 83 + rating: 5 + ratings: 2 + author: "Oleg Veschin" + repo: "https://github.com/veschin/nibelung-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=veschin.nibelung-theme-vscode" + formats: null +colors: + bg: "#F8F9FA" + fg: "#343A40" + black: "#ADB5BD" + red: "#FAD2E1" + green: "#E2ECE9" + yellow: "#FFF1E6" + blue: "#9BB1FF" + magenta: "#FDE2E4" + cyan: "#BEE1E6" + white: "#E9ECEF" + brightBlack: "#ADB5BD" + brightRed: "#FAD2E1" + brightGreen: "#E2ECE9" + brightYellow: "#FFF1E6" + brightBlue: "#9BB1FF" + brightMagenta: "#FDE2E4" + brightCyan: "#BEE1E6" + brightWhite: "#E9ECEF" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 92.8 + black: 36.9 + red: 14.2 + green: 0 + yellow: 0 + blue: 36.8 + magenta: 7.3 + cyan: 15.3 + white: 0 + brightBlack: 36.9 + brightRed: 14.2 + brightGreen: 0 + brightYellow: 0 + brightBlue: 36.8 + brightMagenta: 7.3 + brightCyan: 15.3 + brightWhite: 0 diff --git a/themes/nice-dark--nice-dark.yaml b/themes/nice-dark--nice-dark.yaml new file mode 100644 index 00000000..1a8789e4 --- /dev/null +++ b/themes/nice-dark--nice-dark.yaml @@ -0,0 +1,53 @@ +name: "nice-dark (Nice-Dark)" +source: + marketplace_id: "MarcosBatisaldo.nice-dark" + version: "1.1.3" + installs: 459 + rating: 5 + ratings: 1 + author: "Marcos Batisaldo" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MarcosBatisaldo.nice-dark" + formats: null +colors: + bg: "#191919" + fg: "#C3C8D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 71.9 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/nicely-neon-theme.yaml b/themes/nicely-neon-theme.yaml new file mode 100644 index 00000000..173feea1 --- /dev/null +++ b/themes/nicely-neon-theme.yaml @@ -0,0 +1,53 @@ +name: "Nicely Neon Theme" +source: + marketplace_id: "eight84.nicely-neon-theme" + version: "1.9.8" + installs: 311 + rating: 0 + ratings: 0 + author: "eight84" + repo: "https://github.com/eight84/nicely-neon-theme" + url: "https://marketplace.visualstudio.com/items?itemName=eight84.nicely-neon-theme" + formats: null +colors: + bg: "#18181C" + fg: "#E0E0E0" + black: "#18181C" + red: "#FE6262" + green: "#1AFF90" + yellow: "#FEE462" + blue: "#62A8FE" + magenta: "#FE62B5" + cyan: "#62FECA" + white: "#E0E0E0" + brightBlack: "#18181C" + brightRed: "#FE6262" + brightGreen: "#62FE9B" + brightYellow: "#FEE462" + brightBlue: "#62A8FE" + brightMagenta: "#FE62B5" + brightCyan: "#62FECA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 86.7 + black: 0 + red: 45.6 + green: 86.9 + yellow: 89.3 + blue: 52.8 + magenta: 48.4 + cyan: 89.8 + white: 86.7 + brightBlack: 0 + brightRed: 45.6 + brightGreen: 88.2 + brightYellow: 89.3 + brightBlue: 52.8 + brightMagenta: 48.4 + brightCyan: 89.8 + brightWhite: 106.7 diff --git a/themes/night-blue-high-voidjmp-vscode-extensions.yaml b/themes/night-blue-high-voidjmp-vscode-extensions.yaml new file mode 100644 index 00000000..d2c83a2c --- /dev/null +++ b/themes/night-blue-high-voidjmp-vscode-extensions.yaml @@ -0,0 +1,53 @@ +name: "Night blue (high)" +source: + marketplace_id: "voidjmp-vscode-extensions.vscode-theme-night-blue" + version: "0.0.6" + installs: 66 + rating: 0 + ratings: 0 + author: "voidjmp-vscode-extensions" + repo: "https://github.com/VoIdJMp/vscode-theme-night-blue" + url: "https://marketplace.visualstudio.com/items?itemName=voidjmp-vscode-extensions.vscode-theme-night-blue" + formats: null +colors: + bg: "#000851" + fg: "#FFFFFF" + black: "#111111" + red: "#FF9DA4" + green: "#D1F1A9" + yellow: "#FFEEAD" + blue: "#BBDAFF" + magenta: "#EBBBFF" + cyan: "#99FFFF" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF7882" + brightGreen: "#B8F171" + brightYellow: "#FFE580" + brightBlue: "#80BAFF" + brightMagenta: "#D778FF" + brightCyan: "#78FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 264 + pair: null + contrast: + fg: 106.4 + black: 0 + red: 62.9 + green: 90.3 + yellow: 95.2 + blue: 80.8 + magenta: 74.3 + cyan: 95.4 + white: 74.2 + brightBlack: 0 + brightRed: 51.2 + brightGreen: 86.3 + brightYellow: 90 + brightBlue: 61.7 + brightMagenta: 49.8 + brightCyan: 93.3 + brightWhite: 106.4 diff --git a/themes/night-dark-theme.yaml b/themes/night-dark-theme.yaml new file mode 100644 index 00000000..f981ac00 --- /dev/null +++ b/themes/night-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Night Dark Theme" +source: + marketplace_id: "william-piron.night-dark-theme" + version: "0.0.55" + installs: 393 + rating: 5 + ratings: 1 + author: "William PIRON" + repo: "https://github.com/wpiron10/night-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=william-piron.night-dark-theme" + formats: null +colors: + bg: "#071432" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 74.7 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/night-howl--night-howl.yaml b/themes/night-howl--night-howl.yaml new file mode 100644 index 00000000..e28685a0 --- /dev/null +++ b/themes/night-howl--night-howl.yaml @@ -0,0 +1,53 @@ +name: "Night Howl (night-howl)" +source: + marketplace_id: "Matia.night-howl" + version: "1.3.0" + installs: 3000 + rating: 5 + ratings: 3 + author: "Matia" + repo: "https://github.com/mattcroat/night-howl" + url: "https://marketplace.visualstudio.com/items?itemName=Matia.night-howl" + formats: null +colors: + bg: "#101E2C" + fg: "#BDD2E7" + black: "#000000" + red: "#FF7878" + green: "#AAE682" + yellow: "#FFDC96" + blue: "#00B1FF" + magenta: "#FF50FF" + cyan: "#00DCDC" + white: "#BDD2E7" + brightBlack: "#5F82A5" + brightRed: "#FF7878" + brightGreen: "#AAE682" + brightYellow: "#FFDC96" + brightBlue: "#00B1FF" + brightMagenta: "#FF50FF" + brightCyan: "#00DCDC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 249 + pair: null + contrast: + fg: 76 + black: 0 + red: 50.7 + green: 79.7 + yellow: 86.3 + blue: 53.7 + magenta: 49.4 + cyan: 71 + white: 76 + brightBlack: 32.5 + brightRed: 50.7 + brightGreen: 79.7 + brightYellow: 86.3 + brightBlue: 53.7 + brightMagenta: 49.4 + brightCyan: 71 + brightWhite: 106.1 diff --git a/themes/night-node.yaml b/themes/night-node.yaml new file mode 100644 index 00000000..99d42ef9 --- /dev/null +++ b/themes/night-node.yaml @@ -0,0 +1,53 @@ +name: "Night Node" +source: + marketplace_id: "AyushKhatri.nightnode" + version: "1.1.2" + installs: 1225 + rating: 5 + ratings: 1 + author: "Ayush Khatri" + repo: "https://github.com/ayush-khatrii/night-node" + url: "https://marketplace.visualstudio.com/items?itemName=AyushKhatri.nightnode" + formats: null +colors: + bg: "#0F0F0F" + fg: "#F7F7F7" + black: "#000000" + red: "#CD3131" + green: "#00FF4B" + yellow: "#E5E510" + blue: "#2071CB" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 102.2 + black: 0 + red: 27.3 + green: 86.4 + yellow: 86.2 + blue: 27.9 + magenta: 30.4 + cyan: 48.2 + white: 107.5 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/night-owl-oled-dim--night-owl-oled-dim-100.yaml b/themes/night-owl-oled-dim--night-owl-oled-dim-100.yaml new file mode 100644 index 00000000..9f525bfd --- /dev/null +++ b/themes/night-owl-oled-dim--night-owl-oled-dim-100.yaml @@ -0,0 +1,53 @@ +name: "Night Owl Oled Dim (Night Owl Oled Dim 100)" +source: + marketplace_id: "WeiyuWang.night-owl-oled-dim" + version: "1.0.1" + installs: 4595 + rating: 5 + ratings: 1 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/night-owl-oled-dim" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" + formats: null +colors: + bg: "#000000" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 86.2 + black: 0 + red: 40.3 + green: 68.3 + yellow: 83.1 + blue: 56.9 + magenta: 54.8 + cyan: 60.7 + white: 107.9 + brightBlack: 16.6 + brightRed: 40.3 + brightGreen: 68.3 + brightYellow: 94.7 + brightBlue: 56.9 + brightMagenta: 54.8 + brightCyan: 75 + brightWhite: 107.9 diff --git a/themes/night-owl-oled-dim--night-owl-oled-dim-75.yaml b/themes/night-owl-oled-dim--night-owl-oled-dim-75.yaml new file mode 100644 index 00000000..0337ee83 --- /dev/null +++ b/themes/night-owl-oled-dim--night-owl-oled-dim-75.yaml @@ -0,0 +1,53 @@ +name: "Night Owl Oled Dim (Night Owl Oled Dim 75)" +source: + marketplace_id: "WeiyuWang.night-owl-oled-dim" + version: "1.0.1" + installs: 4595 + rating: 5 + ratings: 1 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/night-owl-oled-dim" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" + formats: null +colors: + bg: "#000000" + fg: "#A0A6B0" + black: "#00101D" + red: "#B33E3C" + green: "#19A352" + yellow: "#93AB5A" + blue: "#617FBF" + magenta: "#956DAF" + cyan: "#18957E" + white: "#BFBFBF" + brightBlack: "#414040" + brightRed: "#B33E3C" + brightGreen: "#19A352" + brightYellow: "#BFB06F" + brightBlue: "#617FBF" + brightMagenta: "#956DAF" + brightCyan: "#5FA497" + brightWhite: "#BFBFBF" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 53.8 + black: 0 + red: 24.1 + green: 42.1 + yellow: 51.9 + blue: 34.8 + magenta: 33.4 + cyan: 37.3 + white: 68 + brightBlack: 8.5 + brightRed: 24.1 + brightGreen: 42.1 + brightYellow: 59.5 + brightBlue: 34.8 + brightMagenta: 33.4 + brightCyan: 46.6 + brightWhite: 68 diff --git a/themes/night-owl-oled-dim--night-owl-oled-dim-80.yaml b/themes/night-owl-oled-dim--night-owl-oled-dim-80.yaml new file mode 100644 index 00000000..2d4fcb41 --- /dev/null +++ b/themes/night-owl-oled-dim--night-owl-oled-dim-80.yaml @@ -0,0 +1,53 @@ +name: "Night Owl Oled Dim (Night Owl Oled Dim 80)" +source: + marketplace_id: "WeiyuWang.night-owl-oled-dim" + version: "1.0.1" + installs: 4595 + rating: 5 + ratings: 1 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/night-owl-oled-dim" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" + formats: null +colors: + bg: "#000000" + fg: "#ABB1BC" + black: "#00111F" + red: "#BF4240" + green: "#1BAE58" + yellow: "#9DB660" + blue: "#6888CC" + magenta: "#9F74BB" + cyan: "#1A9F86" + white: "#CCCCCC" + brightBlack: "#454444" + brightRed: "#BF4240" + brightGreen: "#1BAE58" + brightYellow: "#CCBC77" + brightBlue: "#6888CC" + brightMagenta: "#9F74BB" + brightCyan: "#65AFA1" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 59.9 + black: 0 + red: 27.1 + green: 47.1 + yellow: 57.6 + blue: 39.1 + magenta: 37.3 + cyan: 41.7 + white: 75.7 + brightBlack: 9.9 + brightRed: 27.1 + brightGreen: 47.1 + brightYellow: 66.2 + brightBlue: 39.1 + brightMagenta: 37.3 + brightCyan: 51.9 + brightWhite: 75.7 diff --git a/themes/night-owl-oled-dim--night-owl-oled-dim-85.yaml b/themes/night-owl-oled-dim--night-owl-oled-dim-85.yaml new file mode 100644 index 00000000..59de6e03 --- /dev/null +++ b/themes/night-owl-oled-dim--night-owl-oled-dim-85.yaml @@ -0,0 +1,53 @@ +name: "Night Owl Oled Dim (Night Owl Oled Dim 85)" +source: + marketplace_id: "WeiyuWang.night-owl-oled-dim" + version: "1.0.1" + installs: 4595 + rating: 5 + ratings: 1 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/night-owl-oled-dim" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" + formats: null +colors: + bg: "#000000" + fg: "#B5BCC7" + black: "#001221" + red: "#CB4644" + green: "#1CB95D" + yellow: "#A7C166" + blue: "#6E90D8" + magenta: "#A97CC6" + cyan: "#1CA98E" + white: "#D8D8D8" + brightBlack: "#494949" + brightRed: "#CB4644" + brightGreen: "#1CB95D" + brightYellow: "#D8C77E" + brightBlue: "#6E90D8" + brightMagenta: "#A97CC6" + brightCyan: "#6BBAAB" + brightWhite: "#D8D8D8" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 66 + black: 0 + red: 30.2 + green: 52.1 + yellow: 63.5 + blue: 43.1 + magenta: 41.6 + cyan: 46.3 + white: 82.9 + brightBlack: 11.6 + brightRed: 30.2 + brightGreen: 52.1 + brightYellow: 72.6 + brightBlue: 43.1 + brightMagenta: 41.6 + brightCyan: 57.4 + brightWhite: 82.9 diff --git a/themes/night-owl-oled-dim--night-owl-oled-dim-90.yaml b/themes/night-owl-oled-dim--night-owl-oled-dim-90.yaml new file mode 100644 index 00000000..222cec14 --- /dev/null +++ b/themes/night-owl-oled-dim--night-owl-oled-dim-90.yaml @@ -0,0 +1,53 @@ +name: "Night Owl Oled Dim (Night Owl Oled Dim 90)" +source: + marketplace_id: "WeiyuWang.night-owl-oled-dim" + version: "1.0.1" + installs: 4595 + rating: 5 + ratings: 1 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/night-owl-oled-dim" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" + formats: null +colors: + bg: "#000000" + fg: "#C0C7D3" + black: "#001323" + red: "#D74A48" + green: "#1EC463" + yellow: "#B1CD6C" + blue: "#7599E5" + magenta: "#B383D2" + cyan: "#1DB397" + white: "#E5E5E5" + brightBlack: "#4E4D4D" + brightRed: "#D74A48" + brightGreen: "#1EC463" + brightYellow: "#E5D386" + brightBlue: "#7599E5" + brightMagenta: "#B383D2" + brightCyan: "#72C5B5" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 72.4 + black: 0 + red: 33.4 + green: 57.4 + yellow: 70 + blue: 47.7 + magenta: 45.8 + cyan: 51 + white: 91 + brightBlack: 13.2 + brightRed: 33.4 + brightGreen: 57.4 + brightYellow: 79.8 + brightBlue: 47.7 + brightMagenta: 45.8 + brightCyan: 63.1 + brightWhite: 91 diff --git a/themes/night-owl-oled-dim--night-owl-oled-dim-95.yaml b/themes/night-owl-oled-dim--night-owl-oled-dim-95.yaml new file mode 100644 index 00000000..a0284992 --- /dev/null +++ b/themes/night-owl-oled-dim--night-owl-oled-dim-95.yaml @@ -0,0 +1,53 @@ +name: "Night Owl Oled Dim (Night Owl Oled Dim 95)" +source: + marketplace_id: "WeiyuWang.night-owl-oled-dim" + version: "1.0.1" + installs: 4595 + rating: 5 + ratings: 1 + author: "Weiyu Wang" + repo: "https://github.com/wwang1110/night-owl-oled-dim" + url: "https://marketplace.visualstudio.com/items?itemName=WeiyuWang.night-owl-oled-dim" + formats: null +colors: + bg: "#000000" + fg: "#CBD2DF" + black: "#001425" + red: "#E34E4C" + green: "#20CF68" + yellow: "#BBD872" + blue: "#7BA1F2" + magenta: "#BD8ADE" + cyan: "#1FBD9F" + white: "#F2F2F2" + brightBlack: "#525151" + brightRed: "#E34E4C" + brightGreen: "#20CF68" + brightYellow: "#F2DF8D" + brightBlue: "#7BA1F2" + brightMagenta: "#BD8ADE" + brightCyan: "#78D0BF" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 79 + black: 0 + red: 36.8 + green: 62.7 + yellow: 76.2 + blue: 52.1 + magenta: 50 + cyan: 55.7 + white: 99.3 + brightBlack: 14.7 + brightRed: 36.8 + brightGreen: 62.7 + brightYellow: 87.1 + brightBlue: 52.1 + brightMagenta: 50 + brightCyan: 68.9 + brightWhite: 99.3 diff --git a/themes/night-rainbow--night-rainbow-darker.yaml b/themes/night-rainbow--night-rainbow-darker.yaml new file mode 100644 index 00000000..d30c9cdc --- /dev/null +++ b/themes/night-rainbow--night-rainbow-darker.yaml @@ -0,0 +1,53 @@ +name: "Night Rainbow (Night Rainbow - Darker)" +source: + marketplace_id: "allan-carlos.night-rainbow" + version: "3.0.0" + installs: 10403 + rating: 5 + ratings: 1 + author: "Allan Carlos" + repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" + formats: null +colors: + bg: "#000000" + fg: "#E0E0E0" + black: "#000000" + red: "#FF0055" + green: "#00FFAA" + yellow: "#FFFF00" + blue: "#00C3FF" + magenta: "#FF00FF" + cyan: "#00FFCC" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF0055" + brightGreen: "#00FFAA" + brightYellow: "#FFFF00" + brightBlue: "#00C3FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFCC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 87.9 + black: 0 + red: 38.2 + green: 88.7 + yellow: 102.7 + blue: 63.2 + magenta: 46.2 + cyan: 89.8 + white: 87.9 + brightBlack: 23 + brightRed: 38.2 + brightGreen: 88.7 + brightYellow: 102.7 + brightBlue: 63.2 + brightMagenta: 46.2 + brightCyan: 89.8 + brightWhite: 107.9 diff --git a/themes/night-rainbow--night-rainbow-purple-haze.yaml b/themes/night-rainbow--night-rainbow-purple-haze.yaml new file mode 100644 index 00000000..5e4dc975 --- /dev/null +++ b/themes/night-rainbow--night-rainbow-purple-haze.yaml @@ -0,0 +1,53 @@ +name: "Night Rainbow (Night Rainbow - Purple Haze)" +source: + marketplace_id: "allan-carlos.night-rainbow" + version: "3.0.0" + installs: 10403 + rating: 5 + ratings: 1 + author: "Allan Carlos" + repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" + formats: null +colors: + bg: "#121212" + fg: "#E0E0E0" + black: "#000000" + red: "#FF0055" + green: "#BA68C8" + yellow: "#FFFF00" + blue: "#DDA0DD" + magenta: "#FF69B4" + cyan: "#B19CD9" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF0055" + brightGreen: "#BA68C8" + brightYellow: "#FFFF00" + brightBlue: "#DDA0DD" + brightMagenta: "#FF69B4" + brightCyan: "#B19CD9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.3 + black: 0 + red: 37.6 + green: 38.3 + yellow: 102.1 + blue: 61.4 + magenta: 50.5 + cyan: 53.5 + white: 87.3 + brightBlack: 22.5 + brightRed: 37.6 + brightGreen: 38.3 + brightYellow: 102.1 + brightBlue: 61.4 + brightMagenta: 50.5 + brightCyan: 53.5 + brightWhite: 107.3 diff --git a/themes/night-rainbow--night-rainbow.yaml b/themes/night-rainbow--night-rainbow.yaml new file mode 100644 index 00000000..b697bcb6 --- /dev/null +++ b/themes/night-rainbow--night-rainbow.yaml @@ -0,0 +1,53 @@ +name: "Night Rainbow (Night Rainbow)" +source: + marketplace_id: "allan-carlos.night-rainbow" + version: "3.0.0" + installs: 10403 + rating: 5 + ratings: 1 + author: "Allan Carlos" + repo: "https://github.com/this-is-allan/night-rainbow-dark-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=allan-carlos.night-rainbow" + formats: null +colors: + bg: "#121212" + fg: "#E0E0E0" + black: "#000000" + red: "#FF0055" + green: "#00FFAA" + yellow: "#FFFF00" + blue: "#00C3FF" + magenta: "#FF00FF" + cyan: "#00FFCC" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF0055" + brightGreen: "#00FFAA" + brightYellow: "#FFFF00" + brightBlue: "#00C3FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFCC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 87.3 + black: 0 + red: 37.6 + green: 88.1 + yellow: 102.1 + blue: 62.6 + magenta: 45.6 + cyan: 89.3 + white: 87.3 + brightBlack: 22.5 + brightRed: 37.6 + brightGreen: 88.1 + brightYellow: 102.1 + brightBlue: 62.6 + brightMagenta: 45.6 + brightCyan: 89.3 + brightWhite: 107.3 diff --git a/themes/night-wolf--themename.yaml b/themes/night-wolf--themename.yaml new file mode 100644 index 00000000..490afed5 --- /dev/null +++ b/themes/night-wolf--themename.yaml @@ -0,0 +1,53 @@ +name: "Night Wolf (themename)" +source: + marketplace_id: "MaoSantaella.night-wolf" + version: "2.5.0" + installs: 133279 + rating: 5 + ratings: 18 + author: "MaoSantaella" + repo: "https://github.com/maoma87/NightWolfTheme" + url: "https://marketplace.visualstudio.com/items?itemName=MaoSantaella.night-wolf" + formats: null +colors: + bg: "#252525" + fg: "#CECECE" + black: "#000000" + red: "#FF7878" + green: "#AAE682" + yellow: "#FFDC96" + blue: "#00B1FF" + magenta: "#FF50FF" + cyan: "#00DCDC" + white: "#CECECE" + brightBlack: "#757575" + brightRed: "#FF7878" + brightGreen: "#AAE682" + brightYellow: "#FFDC96" + brightBlue: "#00B1FF" + brightMagenta: "#FF50FF" + brightCyan: "#00DCDC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 74 + black: 0 + red: 49.5 + green: 78.5 + yellow: 85.1 + blue: 52.5 + magenta: 48.2 + cyan: 69.9 + white: 74 + brightBlack: 26.7 + brightRed: 49.5 + brightGreen: 78.5 + brightYellow: 85.1 + brightBlue: 52.5 + brightMagenta: 48.2 + brightCyan: 69.9 + brightWhite: 105 diff --git a/themes/night-zen-theme.yaml b/themes/night-zen-theme.yaml new file mode 100644 index 00000000..d728f105 --- /dev/null +++ b/themes/night-zen-theme.yaml @@ -0,0 +1,53 @@ +name: "Night Zen Theme" +source: + marketplace_id: "sachin915t.night-zen-theme" + version: "0.0.1" + installs: 6 + rating: 0 + ratings: 0 + author: "sachin" + repo: "https://github.com/sachin915t/logan-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sachin915t.night-zen-theme" + formats: null +colors: + bg: "#0F1117" + fg: "#D4D4D4" + black: "#282C34" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#282C34" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#ABB2BF" +meta: + mode: "dark" + accent: "pink" + hue: 271 + pair: null + contrast: + fg: 80 + black: 0 + red: 42.6 + green: 62.8 + yellow: 71.1 + blue: 55.2 + magenta: 45.6 + cyan: 55.1 + white: 59.9 + brightBlack: 0 + brightRed: 42.6 + brightGreen: 62.8 + brightYellow: 71.1 + brightBlue: 55.2 + brightMagenta: 45.6 + brightCyan: 55.1 + brightWhite: 59.9 diff --git a/themes/nightaurora.yaml b/themes/nightaurora.yaml new file mode 100644 index 00000000..edc27b16 --- /dev/null +++ b/themes/nightaurora.yaml @@ -0,0 +1,53 @@ +name: "NightAurora" +source: + marketplace_id: "NightAurora.nightaurora" + version: "0.1.9" + installs: 56 + rating: 0 + ratings: 0 + author: "NightAurora" + repo: "https://github.com/justizha/NIghtAurora" + url: "https://marketplace.visualstudio.com/items?itemName=NightAurora.nightaurora" + formats: null +colors: + bg: "#22213A" + fg: "#9C97BD" + black: "#22213A" + red: "#CA7658" + green: "#57BE69" + yellow: "#C6B766" + blue: "#1F5596" + magenta: "#5F2050" + cyan: "#75D7C4" + white: "#A8A2CA" + brightBlack: "#6E75A8" + brightRed: "#BA1F81" + brightGreen: "#2AE66C" + brightYellow: "#EFF21A" + brightBlue: "#0E4BF2" + brightMagenta: "#8D0462" + brightCyan: "#1BE6BD" + brightWhite: "#A8A2CA" +meta: + mode: "dark" + accent: "purple" + hue: 285 + pair: null + contrast: + fg: 45.6 + black: 0 + red: 38.2 + green: 53.5 + yellow: 60.3 + blue: 13.6 + magenta: 0 + cyan: 69.5 + white: 51.7 + brightBlack: 28.5 + brightRed: 21.5 + brightGreen: 71.6 + brightYellow: 91.4 + brightBlue: 18.8 + brightMagenta: 10.8 + brightCyan: 73.7 + brightWhite: 51.7 diff --git a/themes/nightcall--nightcall.yaml b/themes/nightcall--nightcall.yaml new file mode 100644 index 00000000..44452529 --- /dev/null +++ b/themes/nightcall--nightcall.yaml @@ -0,0 +1,53 @@ +name: "Nightcall (Nightcall)" +source: + marketplace_id: "bpat86.nightcall" + version: "1.0.0" + installs: 8141 + rating: 5 + ratings: 3 + author: "Bobby Patterson" + repo: "https://github.com/bpat86/nightcall-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=bpat86.nightcall" + formats: null +colors: + bg: "#141629" + fg: "#E4CCFF" + black: "#141629" + red: "#F4598E" + green: "#85D483" + yellow: "#D9F99D" + blue: "#639EE5" + magenta: "#C792EA" + cyan: "#67E8F9" + white: "#E4CCFF" + brightBlack: "#575656" + brightRed: "#F4598E" + brightGreen: "#86EFAC" + brightYellow: "#F2E3BF" + brightBlue: "#7E90FF" + brightMagenta: "#C792EA" + brightCyan: "#A5F3FC" + brightWhite: "#E4CCFF" +meta: + mode: "dark" + accent: "red" + hue: 278 + pair: null + contrast: + fg: 80.3 + black: 0 + red: 43 + green: 68.6 + yellow: 95.3 + blue: 47.3 + magenta: 53.7 + cyan: 81.1 + white: 80.3 + brightBlack: 15.5 + brightRed: 43 + brightGreen: 83 + brightYellow: 89.3 + brightBlue: 46 + brightMagenta: 53.7 + brightCyan: 90.7 + brightWhite: 80.3 diff --git a/themes/nightfall.yaml b/themes/nightfall.yaml new file mode 100644 index 00000000..61b55bd0 --- /dev/null +++ b/themes/nightfall.yaml @@ -0,0 +1,53 @@ +name: "nightfall" +source: + marketplace_id: "nightfall.nightfall" + version: "0.0.3" + installs: 7561 + rating: 5 + ratings: 2 + author: "nightfall" + repo: "https://github.com/nghtfall/nightfall-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=nightfall.nightfall" + formats: null +colors: + bg: "#13161D" + fg: "#D7D9DD" + black: "#000000" + red: "#BE5959" + green: "#7EC26E" + yellow: "#9C9F45" + blue: "#2472C8" + magenta: "#BC64B7" + cyan: "#54B2A8" + white: "#D7D9DD" + brightBlack: "#666666" + brightRed: "#FF7878" + brightGreen: "#91FF78" + brightYellow: "#FAFF78" + brightBlue: "#3B8EEA" + brightMagenta: "#F969F0" + brightCyan: "#78FFF1" + brightWhite: "#ECEEF3" +meta: + mode: "dark" + accent: "pink" + hue: 267 + pair: null + contrast: + fg: 82.5 + black: 0 + red: 30.7 + green: 59.5 + yellow: 46.9 + blue: 27.5 + magenta: 36.3 + cyan: 51.7 + white: 82.5 + brightBlack: 22.1 + brightRed: 51.5 + brightGreen: 90.8 + brightYellow: 101.9 + brightBlue: 40.1 + brightMagenta: 52.2 + brightCyan: 93.2 + brightWhite: 95.8 diff --git a/themes/nightfox--carbonfox.yaml b/themes/nightfox--carbonfox.yaml new file mode 100644 index 00000000..2cf6362c --- /dev/null +++ b/themes/nightfox--carbonfox.yaml @@ -0,0 +1,53 @@ +name: "Nightfox (Carbonfox)" +source: + marketplace_id: "keifererikson.nightfox" + version: "0.0.14" + installs: 17396 + rating: 5 + ratings: 3 + author: "Keifer Erikson" + repo: "https://github.com/keifererikson/vscode-nightfox" + url: "https://marketplace.visualstudio.com/items?itemName=keifererikson.nightfox" + formats: null +colors: + bg: "#161616" + fg: "#CDCECF" + black: "#282828" + red: "#EE5396" + green: "#3DDBD9" + yellow: "#BE95FF" + blue: "#78A9FF" + magenta: "#BE95FF" + cyan: "#33B1FF" + white: "#DFDFE0" + brightBlack: "#484A55" + brightRed: "#D16982" + brightGreen: "#90C7AC" + brightYellow: "#2DC7C4" + brightBlue: "#8CB6FF" + brightMagenta: "#C8A5FF" + brightCyan: "#52BDFF" + brightWhite: "#E3E3E4" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 75.9 + black: 0 + red: 41.1 + green: 71.9 + yellow: 54.9 + blue: 54.9 + magenta: 54.9 + cyan: 55 + white: 86.4 + brightBlack: 11.2 + brightRed: 39 + brightGreen: 65 + brightYellow: 61.1 + brightBlue: 61.6 + brightMagenta: 61.7 + brightCyan: 61 + brightWhite: 88.9 diff --git a/themes/nightfox--duskfox.yaml b/themes/nightfox--duskfox.yaml new file mode 100644 index 00000000..7e1e136f --- /dev/null +++ b/themes/nightfox--duskfox.yaml @@ -0,0 +1,53 @@ +name: "Nightfox (Duskfox)" +source: + marketplace_id: "keifererikson.nightfox" + version: "0.0.14" + installs: 17396 + rating: 5 + ratings: 3 + author: "Keifer Erikson" + repo: "https://github.com/keifererikson/vscode-nightfox" + url: "https://marketplace.visualstudio.com/items?itemName=keifererikson.nightfox" + formats: null +colors: + bg: "#232136" + fg: "#CDCECF" + black: "#393552" + red: "#EB6F92" + green: "#A3BE8C" + yellow: "#F6C177" + blue: "#569FBA" + magenta: "#C4A7E7" + cyan: "#9CCFD8" + white: "#E0DEF4" + brightBlack: "#484A55" + brightRed: "#D16982" + brightGreen: "#90C7AC" + brightYellow: "#F9CB8C" + brightBlue: "#65B1CD" + brightMagenta: "#CCB1ED" + brightCyan: "#A6DAE3" + brightWhite: "#E3E3E4" +meta: + mode: "dark" + accent: "red" + hue: 288 + pair: null + contrast: + fg: 74.1 + black: 0 + red: 44.2 + green: 60 + yellow: 71.9 + blue: 43 + magenta: 58.7 + cyan: 69.7 + white: 85.3 + brightBlack: 9.5 + brightRed: 37.2 + brightGreen: 63.2 + brightYellow: 77 + brightBlue: 52.1 + brightMagenta: 63.8 + brightCyan: 76.1 + brightWhite: 87.1 diff --git a/themes/nightfox--nightfox.yaml b/themes/nightfox--nightfox.yaml new file mode 100644 index 00000000..7c7ff688 --- /dev/null +++ b/themes/nightfox--nightfox.yaml @@ -0,0 +1,53 @@ +name: "Nightfox (Nightfox)" +source: + marketplace_id: "keifererikson.nightfox" + version: "0.0.14" + installs: 17396 + rating: 5 + ratings: 3 + author: "Keifer Erikson" + repo: "https://github.com/keifererikson/vscode-nightfox" + url: "https://marketplace.visualstudio.com/items?itemName=keifererikson.nightfox" + formats: null +colors: + bg: "#192330" + fg: "#CDCECF" + black: "#393B44" + red: "#C94F6D" + green: "#81B29A" + yellow: "#DBC074" + blue: "#719CD6" + magenta: "#9D79D6" + cyan: "#63CDCF" + white: "#DFDFE0" + brightBlack: "#484A55" + brightRed: "#D16982" + brightGreen: "#90C7AC" + brightYellow: "#E0C989" + brightBlue: "#86ABDC" + brightMagenta: "#BAA1E2" + brightCyan: "#7AD4D6" + brightWhite: "#E3E3E4" +meta: + mode: "dark" + accent: "red" + hue: 255 + pair: null + contrast: + fg: 74.3 + black: 0 + red: 29.7 + green: 52.4 + yellow: 67.4 + blue: 45.1 + magenta: 37.6 + cyan: 64.6 + white: 84.8 + brightBlack: 9.6 + brightRed: 37.4 + brightGreen: 63.4 + brightYellow: 72.4 + brightBlue: 52.9 + brightMagenta: 55.1 + brightCyan: 69.4 + brightWhite: 87.3 diff --git a/themes/nightfox--nordfox.yaml b/themes/nightfox--nordfox.yaml new file mode 100644 index 00000000..d4edd21c --- /dev/null +++ b/themes/nightfox--nordfox.yaml @@ -0,0 +1,53 @@ +name: "Nightfox (Nordfox)" +source: + marketplace_id: "keifererikson.nightfox" + version: "0.0.14" + installs: 17396 + rating: 5 + ratings: 3 + author: "Keifer Erikson" + repo: "https://github.com/keifererikson/vscode-nightfox" + url: "https://marketplace.visualstudio.com/items?itemName=keifererikson.nightfox" + formats: null +colors: + bg: "#2E3440" + fg: "#CDCECF" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#484A55" + brightRed: "#D16982" + brightGreen: "#90C7AC" + brightYellow: "#F0D399" + brightBlue: "#8CAFD2" + brightMagenta: "#C895BF" + brightCyan: "#93CCDC" + brightWhite: "#E3E3E4" +meta: + mode: "dark" + accent: "red" + hue: 264 + pair: null + contrast: + fg: 70.7 + black: 0 + red: 27.9 + green: 56.6 + yellow: 71.3 + blue: 43.6 + magenta: 41.4 + cyan: 57.6 + white: 87.3 + brightBlack: 0 + brightRed: 33.8 + brightGreen: 59.8 + brightYellow: 75.8 + brightBlue: 50.9 + brightMagenta: 47.4 + brightCyan: 64.3 + brightWhite: 83.7 diff --git a/themes/nightfox--terafox.yaml b/themes/nightfox--terafox.yaml new file mode 100644 index 00000000..c8fc9283 --- /dev/null +++ b/themes/nightfox--terafox.yaml @@ -0,0 +1,53 @@ +name: "Nightfox (Terafox)" +source: + marketplace_id: "keifererikson.nightfox" + version: "0.0.14" + installs: 17396 + rating: 5 + ratings: 3 + author: "Keifer Erikson" + repo: "https://github.com/keifererikson/vscode-nightfox" + url: "https://marketplace.visualstudio.com/items?itemName=keifererikson.nightfox" + formats: null +colors: + bg: "#152528" + fg: "#CDCECF" + black: "#2F3239" + red: "#E85C51" + green: "#7AA4A1" + yellow: "#FDA47F" + blue: "#5A93AA" + magenta: "#AD5C7C" + cyan: "#A1CDD8" + white: "#EBEBEB" + brightBlack: "#484A55" + brightRed: "#D16982" + brightGreen: "#90C7AC" + brightYellow: "#FDB292" + brightBlue: "#73A3B7" + brightMagenta: "#B97490" + brightCyan: "#AFD4DE" + brightWhite: "#E3E3E4" +meta: + mode: "dark" + accent: "orange" + hue: 211 + pair: null + contrast: + fg: 74.3 + black: 0 + red: 37.9 + green: 46.3 + yellow: 62.7 + blue: 37.8 + magenta: 27.7 + cyan: 69.4 + white: 92.3 + brightBlack: 9.6 + brightRed: 37.3 + brightGreen: 63.3 + brightYellow: 68.2 + brightBlue: 46.3 + brightMagenta: 36.5 + brightCyan: 74.1 + brightWhite: 87.3 diff --git a/themes/nightowl.yaml b/themes/nightowl.yaml new file mode 100644 index 00000000..d25c244c --- /dev/null +++ b/themes/nightowl.yaml @@ -0,0 +1,53 @@ +name: "nightOWL" +source: + marketplace_id: "devTH.owlTh" + version: "0.3.0" + installs: 3835 + rating: 5 + ratings: 1 + author: "devTH" + repo: "https://github.com/Ajay-308/devTheme" + url: "https://marketplace.visualstudio.com/items?itemName=devTH.owlTh" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#2DE3FF" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#929292" + brightRed: "#F14C4C" + brightGreen: "#3EFFF6" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#6796D1" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 78.3 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 43.6 + brightRed: 39.6 + brightGreen: 92.3 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 44.4 diff --git a/themes/nighty-purple.yaml b/themes/nighty-purple.yaml new file mode 100644 index 00000000..567a66d3 --- /dev/null +++ b/themes/nighty-purple.yaml @@ -0,0 +1,53 @@ +name: "Nighty Purple" +source: + marketplace_id: "ExBrain.nighty-purple" + version: "1.0.2" + installs: 347 + rating: 0 + ratings: 0 + author: "ExBrain" + repo: "https://github.com/exbraiin/VsCodeTheme" + url: "https://marketplace.visualstudio.com/items?itemName=ExBrain.nighty-purple" + formats: null +colors: + bg: "#1E1E2E" + fg: "#D0D4EE" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 284 + pair: null + contrast: + fg: 79.2 + black: 0 + red: 23.6 + green: 52 + yellow: 56.6 + blue: 33.6 + magenta: 31.2 + cyan: 49.4 + white: 87.4 + brightBlack: 21 + brightRed: 36.3 + brightGreen: 75.9 + brightYellow: 82.9 + brightBlue: 48.8 + brightMagenta: 45.5 + brightCyan: 72.4 + brightWhite: 100.9 diff --git a/themes/nikso-theme.yaml b/themes/nikso-theme.yaml new file mode 100644 index 00000000..acd56a73 --- /dev/null +++ b/themes/nikso-theme.yaml @@ -0,0 +1,53 @@ +name: "Nikso Theme" +source: + marketplace_id: "thenikso.nikso-vscode-theme" + version: "2.0.0" + installs: 96 + rating: 0 + ratings: 0 + author: "thenikso" + repo: "https://github.com/thenikso/nikso-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=thenikso.nikso-vscode-theme" + formats: null +colors: + bg: "#282C33" + fg: "#D1D7E0" + black: "#414141" + red: "#D73A49" + green: "#90D259" + yellow: "#F7C400" + blue: "#005CC5" + magenta: "#FF73FD" + cyan: "#0BC7D7" + white: "#BFBFBF" + brightBlack: "#989898" + brightRed: "#FA6F71" + brightGreen: "#35D61C" + brightYellow: "#FFCA39" + brightBlue: "#1C23D6" + brightMagenta: "#FF00FF" + brightCyan: "#3CD7E7" + brightWhite: "#E0E0E0" +meta: + mode: "dark" + accent: "pink" + hue: 262 + pair: null + contrast: + fg: 77.8 + black: 0 + red: 27 + green: 64.6 + yellow: 70.8 + blue: 17.2 + magenta: 53.2 + cyan: 58.5 + white: 63.8 + brightBlack: 42.5 + brightRed: 44.9 + brightGreen: 61.5 + brightYellow: 74.7 + brightBlue: 8.5 + brightMagenta: 42 + brightCyan: 67.3 + brightWhite: 83.7 diff --git a/themes/nimbuslab-theme-color.yaml b/themes/nimbuslab-theme-color.yaml new file mode 100644 index 00000000..7959ce9b --- /dev/null +++ b/themes/nimbuslab-theme-color.yaml @@ -0,0 +1,53 @@ +name: "Nimbuslab Theme Color" +source: + marketplace_id: "hugolsdias.nimbuslab-theme-color-vscode" + version: "0.0.0" + installs: 111 + rating: 0 + ratings: 0 + author: "Hugo Dias" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=hugolsdias.nimbuslab-theme-color-vscode" + formats: null +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#FF4F00" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#0070FF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 41 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 30.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/nishuuu-themes--tara-theme-carbon-high-contrast.yaml b/themes/nishuuu-themes--tara-theme-carbon-high-contrast.yaml new file mode 100644 index 00000000..78a0114c --- /dev/null +++ b/themes/nishuuu-themes--tara-theme-carbon-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Nishuuu Themes (Tara-Theme-Carbon-High-Contrast)" +source: + marketplace_id: "Taraldinn.nishuuu-themes" + version: "4.2.0" + installs: 549 + rating: 5 + ratings: 3 + author: "Taraldinn" + repo: "https://github.com/nishuuu/nishuuu-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" + formats: null +colors: + bg: "#101213" + fg: "#D9D9D9" + black: "#000000" + red: "#C85E60" + green: "#A3C679" + yellow: "#D5B05F" + blue: "#6A90D0" + magenta: "#A178C4" + cyan: "#6EBAD7" + white: "#FFFFFF" + brightBlack: "#45454A" + brightRed: "#C85E60" + brightGreen: "#A3C679" + brightYellow: "#D5B05F" + brightBlue: "#6A90D0" + brightMagenta: "#A178C4" + brightCyan: "#6EBAD7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83 + black: 0 + red: 34.2 + green: 65.1 + yellow: 61.7 + blue: 41.8 + magenta: 38.7 + cyan: 59.1 + white: 107.3 + brightBlack: 9.8 + brightRed: 34.2 + brightGreen: 65.1 + brightYellow: 61.7 + brightBlue: 41.8 + brightMagenta: 38.7 + brightCyan: 59.1 + brightWhite: 107.3 diff --git a/themes/nishuuu-themes--tara-theme-carbon.yaml b/themes/nishuuu-themes--tara-theme-carbon.yaml new file mode 100644 index 00000000..ccf87eb9 --- /dev/null +++ b/themes/nishuuu-themes--tara-theme-carbon.yaml @@ -0,0 +1,53 @@ +name: "Nishuuu Themes (Tara-Theme-Carbon)" +source: + marketplace_id: "Taraldinn.nishuuu-themes" + version: "4.2.0" + installs: 549 + rating: 5 + ratings: 3 + author: "Taraldinn" + repo: "https://github.com/nishuuu/nishuuu-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" + formats: null +colors: + bg: "#0A0A0A" + fg: "#D9D9D9" + black: "#000000" + red: "#C85E60" + green: "#A3C679" + yellow: "#D5B05F" + blue: "#6A90D0" + magenta: "#A178C4" + cyan: "#6EBAD7" + white: "#FFFFFF" + brightBlack: "#45454A" + brightRed: "#C85E60" + brightGreen: "#A3C679" + brightYellow: "#D5B05F" + brightBlue: "#6A90D0" + brightMagenta: "#A178C4" + brightCyan: "#6EBAD7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.4 + black: 0 + red: 34.6 + green: 65.5 + yellow: 62.1 + blue: 42.2 + magenta: 39.1 + cyan: 59.5 + white: 107.7 + brightBlack: 10.2 + brightRed: 34.6 + brightGreen: 65.5 + brightYellow: 62.1 + brightBlue: 42.2 + brightMagenta: 39.1 + brightCyan: 59.5 + brightWhite: 107.7 diff --git a/themes/nishuuu-themes--tara-theme-deepforest.yaml b/themes/nishuuu-themes--tara-theme-deepforest.yaml new file mode 100644 index 00000000..993e245a --- /dev/null +++ b/themes/nishuuu-themes--tara-theme-deepforest.yaml @@ -0,0 +1,53 @@ +name: "Nishuuu Themes (Tara-Theme-Deepforest)" +source: + marketplace_id: "Taraldinn.nishuuu-themes" + version: "4.2.0" + installs: 549 + rating: 5 + ratings: 3 + author: "Taraldinn" + repo: "https://github.com/nishuuu/nishuuu-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" + formats: null +colors: + bg: "#111816" + fg: "#CAE5D5" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#6FA0DE" + magenta: "#A68DCD" + cyan: "#74C9DE" + white: "#FFFFFF" + brightBlack: "#3B544D" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#6FA0DE" + brightMagenta: "#A68DCD" + brightCyan: "#74C9DE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 176 + pair: null + contrast: + fg: 86 + black: 0 + red: 46.6 + green: 84.2 + yellow: 79 + blue: 48.5 + magenta: 46 + cyan: 66 + white: 106.9 + brightBlack: 12.9 + brightRed: 46.6 + brightGreen: 84.2 + brightYellow: 79 + brightBlue: 48.5 + brightMagenta: 46 + brightCyan: 66 + brightWhite: 106.9 diff --git a/themes/nishuuu-themes--tara-theme-ocean.yaml b/themes/nishuuu-themes--tara-theme-ocean.yaml new file mode 100644 index 00000000..5352a278 --- /dev/null +++ b/themes/nishuuu-themes--tara-theme-ocean.yaml @@ -0,0 +1,53 @@ +name: "Nishuuu Themes (Tara-Theme-Ocean)" +source: + marketplace_id: "Taraldinn.nishuuu-themes" + version: "4.2.0" + installs: 549 + rating: 5 + ratings: 3 + author: "Taraldinn" + repo: "https://github.com/nishuuu/nishuuu-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" + formats: null +colors: + bg: "#0F111A" + fg: "#CED1E3" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + pair: null + contrast: + fg: 78.6 + black: 0 + red: 47.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 47.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/nishuuu-themes--tara-theme-palenight.yaml b/themes/nishuuu-themes--tara-theme-palenight.yaml new file mode 100644 index 00000000..251c7e11 --- /dev/null +++ b/themes/nishuuu-themes--tara-theme-palenight.yaml @@ -0,0 +1,53 @@ +name: "Nishuuu Themes (Tara-Theme-Palenight)" +source: + marketplace_id: "Taraldinn.nishuuu-themes" + version: "4.2.0" + installs: 549 + rating: 5 + ratings: 3 + author: "Taraldinn" + repo: "https://github.com/nishuuu/nishuuu-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" + formats: null +colors: + bg: "#292D3E" + fg: "#CED1E3" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + pair: null + contrast: + fg: 74.5 + black: 0 + red: 43 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 43 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/nishuuu-themes--tara-theme-teal.yaml b/themes/nishuuu-themes--tara-theme-teal.yaml new file mode 100644 index 00000000..b6c0872f --- /dev/null +++ b/themes/nishuuu-themes--tara-theme-teal.yaml @@ -0,0 +1,53 @@ +name: "Nishuuu Themes (Tara-Theme-Teal)" +source: + marketplace_id: "Taraldinn.nishuuu-themes" + version: "4.2.0" + installs: 549 + rating: 5 + ratings: 3 + author: "Taraldinn" + repo: "https://github.com/nishuuu/nishuuu-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Taraldinn.nishuuu-themes" + formats: null +colors: + bg: "#263238" + fg: "#D8DFDF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 230 + pair: null + contrast: + fg: 81.2 + black: 0 + red: 42.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 102.7 + brightBlack: 19.7 + brightRed: 42.4 + brightGreen: 80 + brightYellow: 74.7 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/nix--lunar.yaml b/themes/nix--lunar.yaml new file mode 100644 index 00000000..c25ba70c --- /dev/null +++ b/themes/nix--lunar.yaml @@ -0,0 +1,53 @@ +name: "Nix (Lunar)" +source: + marketplace_id: "alvarosannas.nix" + version: "1.4.8" + installs: 2952 + rating: 5 + ratings: 1 + author: "Alvaro Santana" + repo: "https://github.com/alvarosannas/nix" + url: "https://marketplace.visualstudio.com/items?itemName=alvarosannas.nix" + formats: null +colors: + bg: "#1C1E26" + fg: "#F8F8F2" + black: "#1A1A1A" + red: "#F24B78" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#30BCED" + magenta: "#A978FF" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#1A1A1A" + brightRed: "#F24B78" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#30BCED" + brightMagenta: "#A978FF" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 274 + pair: null + contrast: + fg: 101.1 + black: 0 + red: 38.7 + green: 84 + yellow: 97.7 + blue: 57.4 + magenta: 42.5 + cyan: 83.1 + white: 101.1 + brightBlack: 0 + brightRed: 38.7 + brightGreen: 84 + brightYellow: 97.7 + brightBlue: 57.4 + brightMagenta: 42.5 + brightCyan: 83.1 + brightWhite: 101.1 diff --git a/themes/nix--nix.yaml b/themes/nix--nix.yaml new file mode 100644 index 00000000..8e6d4a2e --- /dev/null +++ b/themes/nix--nix.yaml @@ -0,0 +1,53 @@ +name: "Nix (Nix)" +source: + marketplace_id: "alvarosannas.nix" + version: "1.4.8" + installs: 2952 + rating: 5 + ratings: 1 + author: "Alvaro Santana" + repo: "https://github.com/alvarosannas/nix" + url: "https://marketplace.visualstudio.com/items?itemName=alvarosannas.nix" + formats: null +colors: + bg: "#1A1A1A" + fg: "#F8F8F2" + black: "#1A1A1A" + red: "#F24B78" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#30BCED" + magenta: "#A978FF" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#1A1A1A" + brightRed: "#F24B78" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#30BCED" + brightMagenta: "#A978FF" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 101.6 + black: 0 + red: 39.3 + green: 84.5 + yellow: 98.2 + blue: 58 + magenta: 43 + cyan: 83.6 + white: 101.6 + brightBlack: 0 + brightRed: 39.3 + brightGreen: 84.5 + brightYellow: 98.2 + brightBlue: 58 + brightMagenta: 43 + brightCyan: 83.6 + brightWhite: 101.6 diff --git a/themes/no-theme.yaml b/themes/no-theme.yaml new file mode 100644 index 00000000..a4b86436 --- /dev/null +++ b/themes/no-theme.yaml @@ -0,0 +1,53 @@ +name: "No Theme" +source: + marketplace_id: "BenceGadanyi.no-theme" + version: "1.0.2" + installs: 724 + rating: 0 + ratings: 0 + author: "Bence Gadanyi" + repo: "https://github.com/Beenyaa/no-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BenceGadanyi.no-theme" + formats: null +colors: + bg: "#000102" + fg: "#FFFFFF" + black: "#000102" + red: "#CD3131" + green: "#0DBC79" + yellow: "#C4C400" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#000102" + brightBlack: "#000102" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#D9D900" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 234 + pair: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 67.5 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 0 + brightBlack: 0 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 79.5 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/noctis--noctis-azureus.yaml b/themes/noctis--noctis-azureus.yaml new file mode 100644 index 00000000..b5f39d65 --- /dev/null +++ b/themes/noctis--noctis-azureus.yaml @@ -0,0 +1,53 @@ +name: "Noctis (Noctis Azureus)" +source: + marketplace_id: "Zylve.noctis-italicized" + version: "1.0.2" + installs: 5649 + rating: 0 + ratings: 0 + author: "Zylve" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=Zylve.noctis-italicized" + formats: null +colors: + bg: "#07273B" + fg: "#BECFDA" + black: "#28353E" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#AEC3D0" + brightBlack: "#475E6C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#BECFDA" +meta: + mode: "dark" + accent: "orange" + hue: 241 + pair: null + contrast: + fg: 72.9 + black: 0 + red: 38.5 + green: 75 + yellow: 65 + blue: 50 + magenta: 43.6 + cyan: 68.5 + white: 65.5 + brightBlack: 15.5 + brightRed: 43.8 + brightGreen: 77.2 + brightYellow: 51.8 + brightBlue: 55.3 + brightMagenta: 56 + brightCyan: 71.9 + brightWhite: 72.9 diff --git a/themes/noctis--noctis-bordo.yaml b/themes/noctis--noctis-bordo.yaml new file mode 100644 index 00000000..9ea48173 --- /dev/null +++ b/themes/noctis--noctis-bordo.yaml @@ -0,0 +1,53 @@ +name: "Noctis (Noctis Bordo)" +source: + marketplace_id: "Zylve.noctis-italicized" + version: "1.0.2" + installs: 5649 + rating: 0 + ratings: 0 + author: "Zylve" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=Zylve.noctis-italicized" + formats: null +colors: + bg: "#322A2D" + fg: "#CBBEC2" + black: "#47393E" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B9ACB0" + brightBlack: "#69545B" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#CBBEC2" +meta: + mode: "dark" + accent: "orange" + hue: 353 + pair: null + contrast: + fg: 65 + black: 0 + red: 37.3 + green: 73.7 + yellow: 63.7 + blue: 48.7 + magenta: 42.4 + cyan: 67.3 + white: 54.8 + brightBlack: 13.6 + brightRed: 42.5 + brightGreen: 75.9 + brightYellow: 50.6 + brightBlue: 54 + brightMagenta: 54.7 + brightCyan: 70.6 + brightWhite: 65 diff --git a/themes/noctis--noctis-hibernus.yaml b/themes/noctis--noctis-hibernus.yaml new file mode 100644 index 00000000..6485c0e2 --- /dev/null +++ b/themes/noctis--noctis-hibernus.yaml @@ -0,0 +1,53 @@ +name: "Noctis (Noctis Hibernus)" +source: + marketplace_id: "Zylve.noctis-italicized" + version: "1.0.2" + installs: 5649 + rating: 0 + ratings: 0 + author: "Zylve" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=Zylve.noctis-italicized" + formats: null +colors: + bg: "#F4F6F6" + fg: "#005661" + black: "#003B42" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#004D57" + brightRed: "#FF4000" + brightGreen: "#00D17A" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.8 + black: 92 + red: 59.7 + green: 46.7 + yellow: 38.5 + blue: 53.2 + magenta: 49.9 + cyan: 38.5 + white: 44.9 + brightBlack: 86 + brightRed: 55.3 + brightGreen: 32.8 + brightYellow: 39.8 + brightBlue: 46.5 + brightMagenta: 45.6 + brightCyan: 31.5 + brightWhite: 27.6 diff --git a/themes/noctis--noctis-lilac.yaml b/themes/noctis--noctis-lilac.yaml new file mode 100644 index 00000000..883e4342 --- /dev/null +++ b/themes/noctis--noctis-lilac.yaml @@ -0,0 +1,53 @@ +name: "Noctis (Noctis Lilac)" +source: + marketplace_id: "Zylve.noctis-italicized" + version: "1.0.2" + installs: 5649 + rating: 0 + ratings: 0 + author: "Zylve" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=Zylve.noctis-italicized" + formats: null +colors: + bg: "#F2F1F8" + fg: "#0C006B" + black: "#0C006B" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#0F0080" + brightRed: "#FF4000" + brightGreen: "#00D17A" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.6 + black: 94.6 + red: 57.5 + green: 44.5 + yellow: 36.2 + blue: 50.9 + magenta: 47.6 + cyan: 36.2 + white: 42.6 + brightBlack: 92.9 + brightRed: 53 + brightGreen: 30.5 + brightYellow: 37.5 + brightBlue: 44.2 + brightMagenta: 43.3 + brightCyan: 29.3 + brightWhite: 25.3 diff --git a/themes/noctis--noctis-lux.yaml b/themes/noctis--noctis-lux.yaml new file mode 100644 index 00000000..fd5c3da5 --- /dev/null +++ b/themes/noctis--noctis-lux.yaml @@ -0,0 +1,53 @@ +name: "Noctis (Noctis Lux)" +source: + marketplace_id: "Zylve.noctis-italicized" + version: "1.0.2" + installs: 5649 + rating: 0 + ratings: 0 + author: "Zylve" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=Zylve.noctis-italicized" + formats: null +colors: + bg: "#FEF8EC" + fg: "#005661" + black: "#003B42" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#004D57" + brightRed: "#FF4000" + brightGreen: "#00D17A" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 84.5 + black: 93.7 + red: 61.5 + green: 48.5 + yellow: 40.2 + blue: 54.9 + magenta: 51.6 + cyan: 40.2 + white: 46.6 + brightBlack: 87.7 + brightRed: 57 + brightGreen: 34.5 + brightYellow: 41.5 + brightBlue: 48.2 + brightMagenta: 47.3 + brightCyan: 33.3 + brightWhite: 29.3 diff --git a/themes/noctis--noctis-minimus.yaml b/themes/noctis--noctis-minimus.yaml new file mode 100644 index 00000000..dbcbbdd8 --- /dev/null +++ b/themes/noctis--noctis-minimus.yaml @@ -0,0 +1,53 @@ +name: "Noctis (Noctis Minimus)" +source: + marketplace_id: "Zylve.noctis-italicized" + version: "1.0.2" + installs: 5649 + rating: 0 + ratings: 0 + author: "Zylve" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=Zylve.noctis-italicized" + formats: null +colors: + bg: "#1B2932" + fg: "#C5CDD3" + black: "#182A35" + red: "#C08872" + green: "#72C09F" + yellow: "#C8A984" + blue: "#6196B8" + magenta: "#C28097" + cyan: "#72B7C0" + white: "#C5CDD3" + brightBlack: "#425866" + brightRed: "#CA8468" + brightGreen: "#84C8AB" + brightYellow: "#D1AA7B" + brightBlue: "#68A4CA" + brightMagenta: "#C88DA2" + brightCyan: "#84C0C8" + brightWhite: "#C5D1D3" +meta: + mode: "dark" + accent: "orange" + hue: 237 + pair: null + contrast: + fg: 72.2 + black: 0 + red: 41.9 + green: 56.7 + yellow: 55.1 + blue: 39.3 + magenta: 40.9 + cyan: 54.1 + white: 72.2 + brightBlack: 12.8 + brightRed: 42 + brightGreen: 62 + brightYellow: 56.6 + brightBlue: 46.1 + brightMagenta: 46.3 + brightCyan: 59.6 + brightWhite: 73.9 diff --git a/themes/noctis--noctis-obscuro.yaml b/themes/noctis--noctis-obscuro.yaml new file mode 100644 index 00000000..ca0b841a --- /dev/null +++ b/themes/noctis--noctis-obscuro.yaml @@ -0,0 +1,53 @@ +name: "Noctis (Noctis Obscuro)" +source: + marketplace_id: "Zylve.noctis-italicized" + version: "1.0.2" + installs: 5649 + rating: 0 + ratings: 0 + author: "Zylve" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=Zylve.noctis-italicized" + formats: null +colors: + bg: "#031417" + fg: "#B2CACD" + black: "#324A4D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B2CACD" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "dark" + accent: "orange" + hue: 209 + pair: null + contrast: + fg: 71.2 + black: 10 + red: 40.9 + green: 77.4 + yellow: 67.4 + blue: 52.4 + magenta: 46 + cyan: 70.9 + white: 71.2 + brightBlack: 21 + brightRed: 46.2 + brightGreen: 79.6 + brightYellow: 54.3 + brightBlue: 57.7 + brightMagenta: 58.4 + brightCyan: 74.3 + brightWhite: 77.7 diff --git a/themes/noctis--noctis-sereno.yaml b/themes/noctis--noctis-sereno.yaml new file mode 100644 index 00000000..eb174cfe --- /dev/null +++ b/themes/noctis--noctis-sereno.yaml @@ -0,0 +1,53 @@ +name: "Noctis (Noctis Sereno)" +source: + marketplace_id: "Zylve.noctis-italicized" + version: "1.0.2" + installs: 5649 + rating: 0 + ratings: 0 + author: "Zylve" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=Zylve.noctis-italicized" + formats: null +colors: + bg: "#062E32" + fg: "#B2CACD" + black: "#324A4D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B2CACD" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "dark" + accent: "orange" + hue: 205 + pair: null + contrast: + fg: 68 + black: 0 + red: 37.7 + green: 74.1 + yellow: 64.1 + blue: 49.2 + magenta: 42.8 + cyan: 67.7 + white: 68 + brightBlack: 17.8 + brightRed: 42.9 + brightGreen: 76.3 + brightYellow: 51 + brightBlue: 54.4 + brightMagenta: 55.2 + brightCyan: 71 + brightWhite: 74.5 diff --git a/themes/noctis--noctis-uva.yaml b/themes/noctis--noctis-uva.yaml new file mode 100644 index 00000000..0c4a27cd --- /dev/null +++ b/themes/noctis--noctis-uva.yaml @@ -0,0 +1,53 @@ +name: "Noctis (Noctis Uva)" +source: + marketplace_id: "Zylve.noctis-italicized" + version: "1.0.2" + installs: 5649 + rating: 0 + ratings: 0 + author: "Zylve" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=Zylve.noctis-italicized" + formats: null +colors: + bg: "#292640" + fg: "#C5C2D6" + black: "#302F3D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B6B3CC" + brightBlack: "#504E65" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C5C2D6" +meta: + mode: "dark" + accent: "orange" + hue: 288 + pair: null + contrast: + fg: 67.3 + black: 0 + red: 37.8 + green: 74.3 + yellow: 64.3 + blue: 49.3 + magenta: 42.9 + cyan: 67.8 + white: 59 + brightBlack: 10.6 + brightRed: 43.1 + brightGreen: 76.5 + brightYellow: 51.2 + brightBlue: 54.6 + brightMagenta: 55.3 + brightCyan: 71.2 + brightWhite: 67.3 diff --git a/themes/noctis--noctis-viola.yaml b/themes/noctis--noctis-viola.yaml new file mode 100644 index 00000000..42d51d63 --- /dev/null +++ b/themes/noctis--noctis-viola.yaml @@ -0,0 +1,53 @@ +name: "Noctis (Noctis Viola)" +source: + marketplace_id: "Zylve.noctis-italicized" + version: "1.0.2" + installs: 5649 + rating: 0 + ratings: 0 + author: "Zylve" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=Zylve.noctis-italicized" + formats: null +colors: + bg: "#30243D" + fg: "#CCBFD9" + black: "#362F3D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#BFAFCF" + brightBlack: "#594E65" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#CCBFD9" +meta: + mode: "dark" + accent: "orange" + hue: 306 + pair: null + contrast: + fg: 67.2 + black: 0 + red: 37.8 + green: 74.3 + yellow: 64.3 + blue: 49.3 + magenta: 42.9 + cyan: 67.8 + white: 58.7 + brightBlack: 11.4 + brightRed: 43.1 + brightGreen: 76.5 + brightYellow: 51.1 + brightBlue: 54.6 + brightMagenta: 55.3 + brightCyan: 71.2 + brightWhite: 67.2 diff --git a/themes/noctis--noctis.yaml b/themes/noctis--noctis.yaml new file mode 100644 index 00000000..e699e9b5 --- /dev/null +++ b/themes/noctis--noctis.yaml @@ -0,0 +1,53 @@ +name: "Noctis (Noctis)" +source: + marketplace_id: "Zylve.noctis-italicized" + version: "1.0.2" + installs: 5649 + rating: 0 + ratings: 0 + author: "Zylve" + repo: "https://github.com/liviuschera/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=Zylve.noctis-italicized" + formats: null +colors: + bg: "#052529" + fg: "#B2CACD" + black: "#324A4D" + red: "#E66533" + green: "#49E9A6" + yellow: "#E4B781" + blue: "#49ACE9" + magenta: "#DF769B" + cyan: "#49D6E9" + white: "#B2CACD" + brightBlack: "#47686C" + brightRed: "#E97749" + brightGreen: "#60EBB1" + brightYellow: "#E69533" + brightBlue: "#60B6EB" + brightMagenta: "#E798B3" + brightCyan: "#60DBEB" + brightWhite: "#C1D4D7" +meta: + mode: "dark" + accent: "orange" + hue: 207 + pair: null + contrast: + fg: 69.4 + black: 8.2 + red: 39.1 + green: 75.6 + yellow: 65.6 + blue: 50.6 + magenta: 44.2 + cyan: 69.1 + white: 69.4 + brightBlack: 19.2 + brightRed: 44.4 + brightGreen: 77.8 + brightYellow: 52.5 + brightBlue: 55.9 + brightMagenta: 56.6 + brightCyan: 72.5 + brightWhite: 75.9 diff --git a/themes/noctis-high-contrast--noctis-high-contrast.yaml b/themes/noctis-high-contrast--noctis-high-contrast.yaml new file mode 100644 index 00000000..78e68268 --- /dev/null +++ b/themes/noctis-high-contrast--noctis-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Noctis High Contrast (Noctis High Contrast)" +source: + marketplace_id: "Kamen.noctis-high-contrast" + version: "10.39.1" + installs: 47816 + rating: 5 + ratings: 6 + author: "Kamen" + repo: "https://github.com/KamenKolev/noctis-hc" + url: "https://marketplace.visualstudio.com/items?itemName=Kamen.noctis-high-contrast" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD0000" + green: "#00CD00" + yellow: "#CDCD00" + blue: "#0000FF" + magenta: "#CD00CD" + cyan: "#00CDCD" + white: "#E5E5E5" + brightBlack: "#7F7F7F" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#5C5CFF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 25.4 + green: 60.8 + yellow: 72.5 + blue: 16.2 + magenta: 31.7 + cyan: 64.9 + white: 91 + brightBlack: 34.3 + brightRed: 37.5 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 29.4 + brightMagenta: 46.2 + brightCyan: 92.2 + brightWhite: 107.9 diff --git a/themes/noctis-lux-medium.yaml b/themes/noctis-lux-medium.yaml new file mode 100644 index 00000000..781a19b0 --- /dev/null +++ b/themes/noctis-lux-medium.yaml @@ -0,0 +1,53 @@ +name: "Noctis lux - Medium" +source: + marketplace_id: "DeanRTaylor1.noctis-lux-medium" + version: "0.4.0" + installs: 1149 + rating: 5 + ratings: 1 + author: "DeanRTaylor1" + repo: "https://github.com/DeanRTaylor1/noctis-lux-deans-version" + url: "https://marketplace.visualstudio.com/items?itemName=DeanRTaylor1.noctis-lux-medium" + formats: null +colors: + bg: "#F6E5CB" + fg: "#005661" + black: "#003B42" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#004D57" + brightRed: "#FF4000" + brightGreen: "#00D17A" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: 79 + pair: null + contrast: + fg: 74.3 + black: 83.5 + red: 51.2 + green: 38.2 + yellow: 30 + blue: 44.7 + magenta: 41.3 + cyan: 29.9 + white: 36.4 + brightBlack: 77.5 + brightRed: 46.8 + brightGreen: 24.3 + brightYellow: 31.3 + brightBlue: 38 + brightMagenta: 37.1 + brightCyan: 23 + brightWhite: 19.1 diff --git a/themes/noctis.yaml b/themes/noctis.yaml new file mode 100644 index 00000000..3020835f --- /dev/null +++ b/themes/noctis.yaml @@ -0,0 +1,53 @@ +name: "Noctis" +source: + marketplace_id: "koteus.noctis" + version: "0.0.1" + installs: 14045 + rating: 0 + ratings: 0 + author: "koteus" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=koteus.noctis" + formats: null +colors: + bg: "#212F3B" + fg: "#EEFFFF" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 245 + pair: null + contrast: + fg: 101 + black: 0 + red: 29.4 + green: 58.1 + yellow: 72.8 + blue: 45.1 + magenta: 42.9 + cyan: 59.1 + white: 88.8 + brightBlack: 11.8 + brightRed: 29.4 + brightGreen: 58.1 + brightYellow: 72.8 + brightBlue: 45.1 + brightMagenta: 42.9 + brightCyan: 57 + brightWhite: 92.6 diff --git a/themes/nocturnal-theme.yaml b/themes/nocturnal-theme.yaml new file mode 100644 index 00000000..86d07658 --- /dev/null +++ b/themes/nocturnal-theme.yaml @@ -0,0 +1,53 @@ +name: "Nocturnal Theme" +source: + marketplace_id: "daniloBrayann.foxdracula" + version: "0.0.12" + installs: 149 + rating: 5 + ratings: 1 + author: "daniloBrayann" + repo: "https://github.com/danilobrayann/dev-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.foxdracula" + formats: null +colors: + bg: "#19191A" + fg: "#878784" + black: "#21222C" + red: "#FF5555" + green: "#46B1F2" + yellow: "#1EE6C2" + blue: "#00FF9E" + magenta: "#1FEA4F" + cyan: "#0024F2" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#1F62F1" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 36.8 + black: 0 + red: 43.2 + green: 54.3 + yellow: 75.4 + blue: 87.1 + magenta: 74.6 + cyan: 14.6 + white: 101.7 + brightBlack: 27.8 + brightRed: 48.6 + brightGreen: 88.8 + brightYellow: 103.3 + brightBlue: 25.8 + brightMagenta: 62.4 + brightCyan: 96.6 + brightWhite: 106.7 diff --git a/themes/noir--noir-dracula.yaml b/themes/noir--noir-dracula.yaml new file mode 100644 index 00000000..69cb4443 --- /dev/null +++ b/themes/noir--noir-dracula.yaml @@ -0,0 +1,53 @@ +name: "Noir (Noir dracula)" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13978 + rating: 5 + ratings: 3 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" + formats: null +colors: + bg: "#000000" + fg: "#CCCCCC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 75.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/noir--noir-outrun.yaml b/themes/noir--noir-outrun.yaml new file mode 100644 index 00000000..f5cc2b0f --- /dev/null +++ b/themes/noir--noir-outrun.yaml @@ -0,0 +1,53 @@ +name: "Noir (Noir Outrun)" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13978 + rating: 5 + ratings: 3 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" + formats: null +colors: + bg: "#0B081F" + fg: "#F2F3F7" + black: "#283034" + red: "#FF2E97" + green: "#62A9CF" + yellow: "#FFD400" + blue: "#42C6FF" + magenta: "#FF2AFC" + cyan: "#42C6FF" + white: "#D9E0E9" + brightBlack: "#435056" + brightRed: "#FF2E97" + brightGreen: "#ADD0E5" + brightYellow: "#FFD400" + brightBlue: "#42C6FF" + brightMagenta: "#FF2AFC" + brightCyan: "#42C6FF" + brightWhite: "#F4F6F9" +meta: + mode: "dark" + accent: "pink" + hue: 286 + pair: null + contrast: + fg: 99.8 + black: 0 + red: 41.3 + green: 51.1 + yellow: 82.7 + blue: 65 + magenta: 46.8 + cyan: 65 + white: 87.1 + brightBlack: 13.2 + brightRed: 41.3 + brightGreen: 74.8 + brightYellow: 82.7 + brightBlue: 65 + brightMagenta: 46.8 + brightCyan: 65 + brightWhite: 101.6 diff --git a/themes/noir--noir-owl.yaml b/themes/noir--noir-owl.yaml new file mode 100644 index 00000000..31fba911 --- /dev/null +++ b/themes/noir--noir-owl.yaml @@ -0,0 +1,53 @@ +name: "Noir (Noir Owl)" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13978 + rating: 5 + ratings: 3 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" + formats: null +colors: + bg: "#010C18" + fg: "#D6DEEB" + black: "#010C18" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 245 + pair: null + contrast: + fg: 86 + black: 0 + red: 40.1 + green: 68 + yellow: 82.8 + blue: 56.7 + magenta: 54.5 + cyan: 60.5 + white: 107.6 + brightBlack: 16.3 + brightRed: 40.1 + brightGreen: 68 + brightYellow: 94.5 + brightBlue: 56.7 + brightMagenta: 54.5 + brightCyan: 74.7 + brightWhite: 107.6 diff --git a/themes/noir--noir-poimandres-black.yaml b/themes/noir--noir-poimandres-black.yaml new file mode 100644 index 00000000..f9268f6d --- /dev/null +++ b/themes/noir--noir-poimandres-black.yaml @@ -0,0 +1,53 @@ +name: "Noir (Noir Poimandres Black)" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13978 + rating: 5 + ratings: 3 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" + formats: null +colors: + bg: "#000000" + fg: "#A6ACCD" + black: "#000000" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 58.1 + black: 0 + red: 40.2 + green: 77.4 + yellow: 103 + blue: 79.3 + magenta: 55.9 + cyan: 79.3 + white: 107.9 + brightBlack: 58.1 + brightRed: 40.2 + brightGreen: 77.4 + brightYellow: 103 + brightBlue: 79.6 + brightMagenta: 55.9 + brightCyan: 79.6 + brightWhite: 107.9 diff --git a/themes/noir--noir-poimandres-dark.yaml b/themes/noir--noir-poimandres-dark.yaml new file mode 100644 index 00000000..8fd9fa58 --- /dev/null +++ b/themes/noir--noir-poimandres-dark.yaml @@ -0,0 +1,53 @@ +name: "Noir (Noir Poimandres Dark)" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13978 + rating: 5 + ratings: 3 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" + formats: null +colors: + bg: "#12131B" + fg: "#A6ACCD" + black: "#12131B" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 279 + pair: null + contrast: + fg: 57.4 + black: 0 + red: 39.5 + green: 76.7 + yellow: 102.3 + blue: 78.6 + magenta: 55.2 + cyan: 78.6 + white: 107.2 + brightBlack: 57.4 + brightRed: 39.5 + brightGreen: 76.7 + brightYellow: 102.3 + brightBlue: 78.9 + brightMagenta: 55.2 + brightCyan: 78.9 + brightWhite: 107.2 diff --git a/themes/noir--noir-poimandres-darker.yaml b/themes/noir--noir-poimandres-darker.yaml new file mode 100644 index 00000000..4f6b8648 --- /dev/null +++ b/themes/noir--noir-poimandres-darker.yaml @@ -0,0 +1,53 @@ +name: "Noir (Noir Poimandres Darker)" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13978 + rating: 5 + ratings: 3 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" + formats: null +colors: + bg: "#0F1017" + fg: "#A6ACCD" + black: "#0F1017" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 278 + pair: null + contrast: + fg: 57.7 + black: 0 + red: 39.8 + green: 76.9 + yellow: 102.6 + blue: 78.8 + magenta: 55.4 + cyan: 78.8 + white: 107.4 + brightBlack: 57.7 + brightRed: 39.8 + brightGreen: 76.9 + brightYellow: 102.6 + brightBlue: 79.1 + brightMagenta: 55.4 + brightCyan: 79.1 + brightWhite: 107.4 diff --git a/themes/noir--noir-ros-pine-grey.yaml b/themes/noir--noir-ros-pine-grey.yaml new file mode 100644 index 00000000..1a893e11 --- /dev/null +++ b/themes/noir--noir-ros-pine-grey.yaml @@ -0,0 +1,53 @@ +name: "Noir (Noir Rosé Pine Grey)" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13978 + rating: 5 + ratings: 3 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" + formats: null +colors: + bg: "#090909" + fg: "#E0DEF4" + black: "#26233A" + red: "#EB6F92" + green: "#31748F" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#EBBCBA" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#31748F" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#EBBCBA" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 87.8 + black: 0 + red: 46.8 + green: 26 + yellow: 74.5 + blue: 72.2 + magenta: 61.2 + cyan: 72.7 + white: 87.8 + brightBlack: 42.1 + brightRed: 46.8 + brightGreen: 26 + brightYellow: 74.5 + brightBlue: 72.2 + brightMagenta: 61.2 + brightCyan: 72.7 + brightWhite: 87.8 diff --git a/themes/noir--noir-ros-pine-moon-grey.yaml b/themes/noir--noir-ros-pine-moon-grey.yaml new file mode 100644 index 00000000..8d9d7ae2 --- /dev/null +++ b/themes/noir--noir-ros-pine-moon-grey.yaml @@ -0,0 +1,53 @@ +name: "Noir (Noir Rosé Pine Moon Grey)" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13978 + rating: 5 + ratings: 3 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" + formats: null +colors: + bg: "#090909" + fg: "#E0DEF4" + black: "#393552" + red: "#EB6F92" + green: "#3E8FB0" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#EA9A97" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#3E8FB0" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#EA9A97" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 87.8 + black: 0 + red: 46.8 + green: 37.8 + yellow: 74.5 + blue: 72.2 + magenta: 61.2 + cyan: 59 + white: 87.8 + brightBlack: 42.1 + brightRed: 46.8 + brightGreen: 37.8 + brightYellow: 74.5 + brightBlue: 72.2 + brightMagenta: 61.2 + brightCyan: 59 + brightWhite: 87.8 diff --git a/themes/noir--noir-tokyo-night-black.yaml b/themes/noir--noir-tokyo-night-black.yaml new file mode 100644 index 00000000..9a1b873b --- /dev/null +++ b/themes/noir--noir-tokyo-night-black.yaml @@ -0,0 +1,53 @@ +name: "Noir (Noir Tokyo Night Black)" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13978 + rating: 5 + ratings: 3 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" + formats: null +colors: + bg: "#000000" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 60.9 + black: 0 + red: 50.9 + green: 47.4 + yellow: 63.7 + blue: 52.7 + magenta: 56.6 + cyan: 72.1 + white: 33.6 + brightBlack: 0 + brightRed: 50.9 + brightGreen: 47.4 + brightYellow: 63.7 + brightBlue: 52.7 + brightMagenta: 56.6 + brightCyan: 72.1 + brightWhite: 60.5 diff --git a/themes/noir--noir-tokyo-night.yaml b/themes/noir--noir-tokyo-night.yaml new file mode 100644 index 00000000..79daf540 --- /dev/null +++ b/themes/noir--noir-tokyo-night.yaml @@ -0,0 +1,53 @@ +name: "Noir (Noir Tokyo Night)" +source: + marketplace_id: "andrewberty.noir-theme-bundle" + version: "1.7.0" + installs: 13978 + rating: 5 + ratings: 3 + author: "andrewberty" + repo: "https://github.com/andrew-george/Noir-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=andrewberty.noir-theme-bundle" + formats: null +colors: + bg: "#08080B" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 60.8 + black: 0 + red: 50.8 + green: 47.3 + yellow: 63.7 + blue: 52.6 + magenta: 56.5 + cyan: 72 + white: 33.5 + brightBlack: 0 + brightRed: 50.8 + brightGreen: 47.3 + brightYellow: 63.7 + brightBlue: 52.6 + brightMagenta: 56.5 + brightCyan: 72 + brightWhite: 60.4 diff --git a/themes/noir-essence--noir-essence-dark.yaml b/themes/noir-essence--noir-essence-dark.yaml new file mode 100644 index 00000000..6b8611e0 --- /dev/null +++ b/themes/noir-essence--noir-essence-dark.yaml @@ -0,0 +1,53 @@ +name: "Noir Essence (Noir Essence Dark)" +source: + marketplace_id: "u1145h.u1145h-heme-ark" + version: "0.6.1" + installs: 1490 + rating: 5 + ratings: 1 + author: "u1145h" + repo: "https://github.com/u1145h/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=u1145h.u1145h-heme-ark" + formats: null +colors: + bg: "#111314" + fg: "#F7F3EA" + black: "#2B2D2D" + red: "#EA6962" + green: "#89B482" + yellow: "#E78A4E" + blue: "#7DAEA3" + magenta: "#D3869B" + cyan: "#A9B665" + white: "#F7F3EA" + brightBlack: "#434545" + brightRed: "#EA6962" + brightGreen: "#89B482" + brightYellow: "#E78A4E" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#A9B665" + brightWhite: "#F7F3EA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.5 + black: 0 + red: 43.3 + green: 55 + yellow: 51.2 + blue: 52.6 + magenta: 48.4 + cyan: 58.4 + white: 99.5 + brightBlack: 9.4 + brightRed: 43.3 + brightGreen: 55 + brightYellow: 51.2 + brightBlue: 52.6 + brightMagenta: 48.4 + brightCyan: 58.4 + brightWhite: 99.5 diff --git a/themes/noir-essence--noir-essence-light.yaml b/themes/noir-essence--noir-essence-light.yaml new file mode 100644 index 00000000..31169857 --- /dev/null +++ b/themes/noir-essence--noir-essence-light.yaml @@ -0,0 +1,53 @@ +name: "Noir Essence (Noir Essence Light)" +source: + marketplace_id: "u1145h.u1145h-heme-ark" + version: "0.6.1" + installs: 1490 + rating: 5 + ratings: 1 + author: "u1145h" + repo: "https://github.com/u1145h/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=u1145h.u1145h-heme-ark" + formats: null +colors: + bg: "#F7F3EA" + fg: "#000000" + black: "#111314" + red: "#D15F59" + green: "#A9B665" + yellow: "#EADB62" + blue: "#699289" + magenta: "#C47D90" + cyan: "#81A97A" + white: "#C7C3BA" + brightBlack: "#666666" + brightRed: "#EA6962" + brightGreen: "#A9B665" + brightYellow: "#EADB62" + brightBlue: "#7DAEA3" + brightMagenta: "#D3869B" + brightCyan: "#89B482" + brightWhite: "#B4B1AA" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99 + black: 98.2 + red: 58.1 + green: 36.1 + yellow: 13 + blue: 55.1 + magenta: 51.3 + cyan: 44.7 + white: 25.2 + brightBlack: 71.7 + brightRed: 50.8 + brightGreen: 36.1 + brightYellow: 13 + brightBlue: 41.7 + brightMagenta: 45.9 + brightCyan: 39.4 + brightWhite: 35 diff --git a/themes/noir-vs-code-theme-noir-dark.yaml b/themes/noir-vs-code-theme-noir-dark.yaml new file mode 100644 index 00000000..a13d72ad --- /dev/null +++ b/themes/noir-vs-code-theme-noir-dark.yaml @@ -0,0 +1,53 @@ +name: "Noir VS Code Theme (Noir (Dark))" +source: + marketplace_id: "SectorZ.noir-vs-code-theme" + version: "1.5.0" + installs: 772 + rating: 0 + ratings: 0 + author: "Sector Z" + repo: "https://github.com/SenpaiSumpie/Noir" + url: "https://marketplace.visualstudio.com/items?itemName=SectorZ.noir-vs-code-theme" + formats: null +colors: + bg: "#191919" + fg: "#FFFFFF" + black: "#585858" + red: "#FF4444" + green: "#0FFFA3" + yellow: "#FFFF11" + blue: "#3896FF" + magenta: "#FF58FF" + cyan: "#15D1FF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF6262" + brightGreen: "#44FFB4" + brightYellow: "#FFFFAA" + brightBlue: "#58A7FF" + brightMagenta: "#FF87FF" + brightCyan: "#30D6FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.7 + black: 16.1 + red: 40.4 + green: 87.2 + yellow: 101.5 + blue: 44.2 + magenta: 51.1 + cyan: 68.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 45.8 + brightGreen: 88.5 + brightYellow: 103.5 + brightBlue: 51.9 + brightMagenta: 61.2 + brightCyan: 71 + brightWhite: 89.8 diff --git a/themes/noir-vs-code-theme-noir-light.yaml b/themes/noir-vs-code-theme-noir-light.yaml new file mode 100644 index 00000000..234bbd43 --- /dev/null +++ b/themes/noir-vs-code-theme-noir-light.yaml @@ -0,0 +1,53 @@ +name: "Noir VS Code Theme (Noir (Light))" +source: + marketplace_id: "SectorZ.noir-vs-code-theme" + version: "1.5.0" + installs: 772 + rating: 0 + ratings: 0 + author: "Sector Z" + repo: "https://github.com/SenpaiSumpie/Noir" + url: "https://marketplace.visualstudio.com/items?itemName=SectorZ.noir-vs-code-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00B600" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 51.9 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/noir.yaml b/themes/noir.yaml new file mode 100644 index 00000000..457320d4 --- /dev/null +++ b/themes/noir.yaml @@ -0,0 +1,53 @@ +name: "Noir" +source: + marketplace_id: "jeandeaual.noir" + version: "0.0.2" + installs: 1503 + rating: 0 + ratings: 0 + author: "jeandeaual" + repo: "https://github.com/jeandeaual/vscode-theme-noir" + url: "https://marketplace.visualstudio.com/items?itemName=jeandeaual.noir" + formats: null +colors: + bg: "#000000" + fg: "#F2E5BC" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#13772C" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#F42C3E" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#99C6CA" + brightMagenta: "#D3869B" + brightCyan: "#7EC16E" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.2 + black: 0 + red: 26.3 + green: 43.9 + yellow: 23.9 + blue: 32.6 + magenta: 32.7 + cyan: 43 + white: 48.2 + brightBlack: 37.4 + brightRed: 36.5 + brightGreen: 62.2 + brightYellow: 72.8 + brightBlue: 67.4 + brightMagenta: 49 + brightCyan: 60 + brightWhite: 85.4 diff --git a/themes/nord-dark-contrast--nord-dark-contrast.yaml b/themes/nord-dark-contrast--nord-dark-contrast.yaml new file mode 100644 index 00000000..a75854f7 --- /dev/null +++ b/themes/nord-dark-contrast--nord-dark-contrast.yaml @@ -0,0 +1,53 @@ +name: "Nord Dark Contrast (Nord Dark Contrast)" +source: + marketplace_id: "simojanhunen.nord-dark-contrast" + version: "0.4.0" + installs: 8769 + rating: 5 + ratings: 1 + author: "Simo Janhunen" + repo: "https://github.com/simojanhunen/nord-dark-contrast" + url: "https://marketplace.visualstudio.com/items?itemName=simojanhunen.nord-dark-contrast" + formats: null +colors: + bg: "#212121" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 84.1 + black: 0 + red: 31.7 + green: 60.4 + yellow: 75.1 + blue: 47.4 + magenta: 45.2 + cyan: 61.4 + white: 91.1 + brightBlack: 14.1 + brightRed: 31.7 + brightGreen: 60.4 + brightYellow: 75.1 + brightBlue: 47.4 + brightMagenta: 45.2 + brightCyan: 59.3 + brightWhite: 95 diff --git a/themes/nord-dark-pro--nord-dark-pro.yaml b/themes/nord-dark-pro--nord-dark-pro.yaml new file mode 100644 index 00000000..b73b16fd --- /dev/null +++ b/themes/nord-dark-pro--nord-dark-pro.yaml @@ -0,0 +1,53 @@ +name: "Nord Dark Pro (Nord Dark Pro)" +source: + marketplace_id: "Curve.nord-dark-pro" + version: "0.0.6" + installs: 13174 + rating: 0 + ratings: 0 + author: "Curve" + repo: "https://github.com/Curve/Nord-Dark-Pro" + url: "https://marketplace.visualstudio.com/items?itemName=Curve.nord-dark-pro" + formats: null +colors: + bg: "#232731" + fg: "#A4B2CA" + black: "#2E3440" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#8FBCBB" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#ECEFF4" + brightBlack: "#3B4252" + brightRed: "#C6737B" + brightGreen: "#B0C79C" + brightYellow: "#EED4A0" + brightBlue: "#9EC5C4" + brightMagenta: "#BE9DB8" + brightCyan: "#9AC9D7" + brightWhite: "#D8DEE9" +meta: + mode: "dark" + accent: "orange" + hue: 268 + pair: null + contrast: + fg: 56.9 + black: 0 + red: 30.7 + green: 59.4 + yellow: 74.1 + blue: 58.3 + magenta: 44.2 + cyan: 60.4 + white: 94 + brightBlack: 0 + brightRed: 37 + brightGreen: 65.1 + brightYellow: 79 + brightBlue: 63.9 + brightMagenta: 51.2 + brightCyan: 66.2 + brightWhite: 83.1 diff --git a/themes/nord-dark-pro--one-dark-pro.yaml b/themes/nord-dark-pro--one-dark-pro.yaml new file mode 100644 index 00000000..b8b4706a --- /dev/null +++ b/themes/nord-dark-pro--one-dark-pro.yaml @@ -0,0 +1,53 @@ +name: "Nord Dark Pro (One Dark Pro)" +source: + marketplace_id: "FourLineCode.flc-nord-dark-pro" + version: "1.5.0" + installs: 6887 + rating: 5 + ratings: 1 + author: "FourLineCode" + repo: "https://github.com/FourLineCode/nord-dark-pro" + url: "https://marketplace.visualstudio.com/items?itemName=FourLineCode.flc-nord-dark-pro" + formats: null +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 33.5 + green: 57.2 + yellow: 45.4 + blue: 46.5 + magenta: 35.9 + cyan: 49.3 + white: 87.4 + brightBlack: 12.3 + brightRed: 42.9 + brightGreen: 73.6 + brightYellow: 58 + brightBlue: 60.5 + brightMagenta: 47.1 + brightCyan: 64.6 + brightWhite: 79.8 diff --git a/themes/nord-dark.yaml b/themes/nord-dark.yaml new file mode 100644 index 00000000..5a41c4dd --- /dev/null +++ b/themes/nord-dark.yaml @@ -0,0 +1,53 @@ +name: "Nord Dark ★★★★★" +source: + marketplace_id: "sldobri.nord-5-stars" + version: "1.0.1" + installs: 10786 + rating: 2.75 + ratings: 4 + author: "dobbbri" + repo: "https://github.com/sldobri/nord-5-stars" + url: "https://marketplace.visualstudio.com/items?itemName=sldobri.nord-5-stars" + formats: null +colors: + bg: "#0B1015" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 249 + pair: null + contrast: + fg: 86 + black: 8.7 + red: 33.6 + green: 62.3 + yellow: 77 + blue: 49.2 + magenta: 47.1 + cyan: 63.3 + white: 92.9 + brightBlack: 16 + brightRed: 33.6 + brightGreen: 62.3 + brightYellow: 77 + brightBlue: 49.2 + brightMagenta: 47.1 + brightCyan: 61.2 + brightWhite: 96.8 diff --git a/themes/nord-deep-but-you-can-actually-see-comments.yaml b/themes/nord-deep-but-you-can-actually-see-comments.yaml new file mode 100644 index 00000000..5c972fe6 --- /dev/null +++ b/themes/nord-deep-but-you-can-actually-see-comments.yaml @@ -0,0 +1,53 @@ +name: "Nord Deep but you can actually see comments" +source: + marketplace_id: "BalintGyarmathy.nord-deep-visible-comments" + version: "0.1.0" + installs: 2379 + rating: 2 + ratings: 1 + author: "Bálint Gyarmathy" + repo: "https://github.com/gyaur/vscode-theme-nord-deep" + url: "https://marketplace.visualstudio.com/items?itemName=BalintGyarmathy.nord-deep-visible-comments" + formats: null +colors: + bg: "#232731" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 268 + pair: null + contrast: + fg: 83.1 + black: 0 + red: 30.7 + green: 59.4 + yellow: 74.1 + blue: 46.4 + magenta: 44.2 + cyan: 60.4 + white: 90.1 + brightBlack: 13.1 + brightRed: 30.7 + brightGreen: 59.4 + brightYellow: 74.1 + brightBlue: 46.4 + brightMagenta: 44.2 + brightCyan: 58.3 + brightWhite: 94 diff --git a/themes/nord-palette--nord-palette.yaml b/themes/nord-palette--nord-palette.yaml new file mode 100644 index 00000000..2864827f --- /dev/null +++ b/themes/nord-palette--nord-palette.yaml @@ -0,0 +1,53 @@ +name: "Nord Palette (Nord Palette)" +source: + marketplace_id: "Avetis.nord-palette" + version: "0.1.0" + installs: 27404 + rating: 5 + ratings: 5 + author: "Avetis" + repo: "https://github.com/AvetisDN/nord-palette" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.nord-palette" + formats: null +colors: + bg: "#323843" + fg: "#E5E9F0" + black: "#000000" + red: "#BF414A" + green: "#53AE4C" + yellow: "#CBAB5B" + blue: "#4E519C" + magenta: "#B45EAD" + cyan: "#49B8DB" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#BF666F" + brightGreen: "#73BE6C" + brightYellow: "#EBCB8B" + brightBlue: "#5E81AC" + brightMagenta: "#B48EAD" + brightCyan: "#88C0D0" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 263 + pair: null + contrast: + fg: 86.1 + black: 0 + red: 19.9 + green: 41.2 + yellow: 51.6 + blue: 10.5 + magenta: 26.8 + cyan: 50 + white: 83.8 + brightBlack: 15.8 + brightRed: 28.1 + brightGreen: 50.6 + brightYellow: 70.2 + brightBlue: 27 + brightMagenta: 40.3 + brightCyan: 56.5 + brightWhite: 83.8 diff --git a/themes/nordic-vscode.yaml b/themes/nordic-vscode.yaml new file mode 100644 index 00000000..b425c2ec --- /dev/null +++ b/themes/nordic-vscode.yaml @@ -0,0 +1,53 @@ +name: "nordic-vscode" +source: + marketplace_id: "bonchol.nordic-vscode" + version: "0.2.0" + installs: 5720 + rating: 5 + ratings: 1 + author: "bonchol" + repo: "https://github.com/bonchol/nordic-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=bonchol.nordic-vscode" + formats: null +colors: + bg: "#242933" + fg: "#ECEFF4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 93.6 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.1 + cyan: 44.9 + white: 87.4 + brightBlack: 19.4 + brightRed: 36 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/nosk-orange-theme.yaml b/themes/nosk-orange-theme.yaml new file mode 100644 index 00000000..f9a371c9 --- /dev/null +++ b/themes/nosk-orange-theme.yaml @@ -0,0 +1,53 @@ +name: "nosk-orange-theme" +source: + marketplace_id: "Noskfivem.nosk" + version: "0.0.1" + installs: 657 + rating: 0 + ratings: 0 + author: "NoskYT" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Noskfivem.nosk" + formats: null +colors: + bg: "#1E1E1E" + fg: "#FF7EEB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 57 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/notes-ocean-theme.yaml b/themes/notes-ocean-theme.yaml new file mode 100644 index 00000000..eb4f18e0 --- /dev/null +++ b/themes/notes-ocean-theme.yaml @@ -0,0 +1,53 @@ +name: "Notes Ocean Theme" +source: + marketplace_id: "Notesocean.notesocean" + version: "0.2.0" + installs: 327 + rating: 5 + ratings: 1 + author: "Notesocean" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Notesocean.notesocean" + formats: null +colors: + bg: "#28282A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 104.4 + black: 0 + red: 24.2 + green: 50.5 + yellow: 83.1 + blue: 25 + magenta: 27.3 + cyan: 45.1 + white: 104.4 + brightBlack: 19.6 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.5 + brightMagenta: 42.9 + brightCyan: 52.9 + brightWhite: 87.5 diff --git a/themes/notthevimguy.yaml b/themes/notthevimguy.yaml new file mode 100644 index 00000000..970cd62e --- /dev/null +++ b/themes/notthevimguy.yaml @@ -0,0 +1,53 @@ +name: "NotTheVimguy" +source: + marketplace_id: "rysah.notthevimguy" + version: "0.0.1" + installs: 21 + rating: 0 + ratings: 0 + author: "Rysah" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=rysah.notthevimguy" + formats: null +colors: + bg: "#0A0701" + fg: "#90868D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 93 + pair: null + contrast: + fg: 38.9 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 91 diff --git a/themes/nova-theme.yaml b/themes/nova-theme.yaml new file mode 100644 index 00000000..47bc75dc --- /dev/null +++ b/themes/nova-theme.yaml @@ -0,0 +1,53 @@ +name: "Nova Theme" +source: + marketplace_id: "LA1CH3.nova-vscode-theme" + version: "0.0.1" + installs: 295 + rating: 0 + ratings: 0 + author: "LA1CH3" + repo: "https://github.com/la1ch3/nova-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LA1CH3.nova-vscode-theme" + formats: null +colors: + bg: "#1E262A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 230 + pair: null + contrast: + fg: 77.6 + black: 0 + red: 24.8 + green: 51.1 + yellow: 83.7 + blue: 25.5 + magenta: 27.9 + cyan: 45.7 + white: 88.1 + brightBlack: 20.2 + brightRed: 36.7 + brightGreen: 61.7 + brightYellow: 93.8 + brightBlue: 38.1 + brightMagenta: 43.5 + brightCyan: 53.5 + brightWhite: 88.1 diff --git a/themes/nox04-theme.yaml b/themes/nox04-theme.yaml new file mode 100644 index 00000000..4b82c666 --- /dev/null +++ b/themes/nox04-theme.yaml @@ -0,0 +1,53 @@ +name: "Nox04 Theme" +source: + marketplace_id: "Nox04.nox04-theme" + version: "0.3.0" + installs: 44 + rating: 0 + ratings: 0 + author: "Nox04" + repo: "https://github.com/Nox04/nox-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Nox04.nox04-theme" + formats: null +colors: + bg: "#1B1E28" + fg: "#A6ACCD" + black: "#1B1E28" + red: "#CF4C53" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#CF4C53" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#A695FC" + brightMagenta: "#F087BD" + brightCyan: "#A695FC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 272 + pair: null + contrast: + fg: 56.3 + black: 0 + red: 30.4 + green: 75.5 + yellow: 101.1 + blue: 77.4 + magenta: 54 + cyan: 77.4 + white: 106 + brightBlack: 56.3 + brightRed: 30.4 + brightGreen: 75.5 + brightYellow: 101.1 + brightBlue: 50.7 + brightMagenta: 54 + brightCyan: 50.7 + brightWhite: 106 diff --git a/themes/noxis--noxis.yaml b/themes/noxis--noxis.yaml new file mode 100644 index 00000000..62228c37 --- /dev/null +++ b/themes/noxis--noxis.yaml @@ -0,0 +1,53 @@ +name: "Noxis (Noxis)" +source: + marketplace_id: "valentinocossar.noxis" + version: "1.1.0" + installs: 67 + rating: 0 + ratings: 0 + author: "Valentino Cossar" + repo: "https://github.com/valentinocossar/noxis" + url: "https://marketplace.visualstudio.com/items?itemName=valentinocossar.noxis" + formats: null +colors: + bg: "#090A0F" + fg: "#8E95B4" + black: "#35394B" + red: "#E75A5A" + green: "#A9EFA3" + yellow: "#FEE17C" + blue: "#4C71F6" + magenta: "#5654BC" + cyan: "#70E3EB" + white: "#FFFFFF" + brightBlack: "#35394B" + brightRed: "#E75A5A" + brightGreen: "#A9EFA3" + brightYellow: "#FEE17C" + brightBlue: "#4C71F6" + brightMagenta: "#5654BC" + brightCyan: "#70E3EB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 276 + pair: null + contrast: + fg: 45.6 + black: 0 + red: 39.9 + green: 86.4 + yellow: 89.3 + blue: 33 + magenta: 21.1 + cyan: 79.3 + white: 107.7 + brightBlack: 0 + brightRed: 39.9 + brightGreen: 86.4 + brightYellow: 89.3 + brightBlue: 33 + brightMagenta: 21.1 + brightCyan: 79.3 + brightWhite: 107.7 diff --git a/themes/nushu--nushu-classic.yaml b/themes/nushu--nushu-classic.yaml new file mode 100644 index 00000000..397f3ca7 --- /dev/null +++ b/themes/nushu--nushu-classic.yaml @@ -0,0 +1,54 @@ +name: "Nushu (Nushu Classic)" +source: + marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" + version: "2.2.18" + installs: 32071 + rating: 5 + ratings: 8 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" + formats: + iterm2: "https://raw.githubusercontent.com/wheredoesyourmindgo/nushu-vscode-theme/master/extra/iTerm Theme/Nushu Dark.itermcolors" +colors: + bg: "#F8F6F1" + fg: "#24292E" + black: "#D1D5DA" + red: "#9E1C23" + green: "#165C26" + yellow: "#B08800" + blue: "#3A1D6E" + magenta: "#99306F" + cyan: "#032F62" + white: "#444D56" + brightBlack: "#6A737D" + brightRed: "#B31D28" + brightGreen: "#176F2C" + brightYellow: "#DBAB09" + brightBlue: "#4C2889" + brightMagenta: "#B93A86" + brightCyan: "#044289" + brightWhite: "#E1E4E8" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.2 + black: 17.1 + red: 80.6 + green: 82.3 + yellow: 54.8 + blue: 93.8 + magenta: 78 + cyan: 93.8 + white: 84.2 + brightBlack: 68.1 + brightRed: 76 + brightGreen: 75.5 + brightYellow: 36.3 + brightBlue: 88.8 + brightMagenta: 69.7 + brightCyan: 86.7 + brightWhite: 8.4 diff --git a/themes/nushu--nushu-dark.yaml b/themes/nushu--nushu-dark.yaml new file mode 100644 index 00000000..4827141e --- /dev/null +++ b/themes/nushu--nushu-dark.yaml @@ -0,0 +1,54 @@ +name: "Nushu (Nushu Dark)" +source: + marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" + version: "2.2.18" + installs: 32071 + rating: 5 + ratings: 8 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" + formats: + iterm2: "https://raw.githubusercontent.com/wheredoesyourmindgo/nushu-vscode-theme/master/extra/iTerm Theme/Nushu Dark.itermcolors" +colors: + bg: "#25211D" + fg: "#D7CFC7" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 75.8 + black: 11.2 + red: 50.7 + green: 50.2 + yellow: 50.3 + blue: 50.3 + magenta: 50.3 + cyan: 59.5 + white: 62.2 + brightBlack: 27.4 + brightRed: 63 + brightGreen: 63.6 + brightYellow: 62.8 + brightBlue: 62.9 + brightMagenta: 62.7 + brightCyan: 68.1 + brightWhite: 105.5 diff --git a/themes/nushu--nushu-light.yaml b/themes/nushu--nushu-light.yaml new file mode 100644 index 00000000..7d553f52 --- /dev/null +++ b/themes/nushu--nushu-light.yaml @@ -0,0 +1,54 @@ +name: "Nushu (Nushu Light)" +source: + marketplace_id: "wheredoesyourmindgo.nushu-vscode-theme" + version: "2.2.18" + installs: 32071 + rating: 5 + ratings: 8 + author: "wheredoesyourmindgo" + repo: "https://github.com/wheredoesyourmindgo/nushu-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=wheredoesyourmindgo.nushu-vscode-theme" + formats: + iterm2: "https://raw.githubusercontent.com/wheredoesyourmindgo/nushu-vscode-theme/master/extra/iTerm Theme/Nushu Dark.itermcolors" +colors: + bg: "#F8F6F1" + fg: "#2B2822" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#6639BA" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#8250DF" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 96.2 + black: 96.1 + red: 69.4 + green: 79.9 + yellow: 92.6 + blue: 69.6 + magenta: 79.5 + cyan: 68.5 + white: 66.3 + brightBlack: 76.4 + brightRed: 79.9 + brightGreen: 69.3 + brightYellow: 86.7 + brightBlue: 55.4 + brightMagenta: 69 + brightCyan: 58 + brightWhite: 51.9 diff --git a/themes/nuuvo.yaml b/themes/nuuvo.yaml new file mode 100644 index 00000000..11edfaa2 --- /dev/null +++ b/themes/nuuvo.yaml @@ -0,0 +1,53 @@ +name: "nuuvo" +source: + marketplace_id: "jacksonhardy.nuuvo" + version: "0.0.3" + installs: 49 + rating: 0 + ratings: 0 + author: "jacksonhardy" + repo: "https://github.com/jacksonhardy/nuuvo-themes" + url: "https://marketplace.visualstudio.com/items?itemName=jacksonhardy.nuuvo" + formats: null +colors: + bg: "#2B2B2B" + fg: "#CBC1D5" + black: "#B2B2B2" + red: "#BA2F59" + green: "#91DF8A" + yellow: "#FFB30F" + blue: "#3A81C3" + magenta: "#800080" + cyan: "#8D81FF" + white: "#B2B2B2" + brightBlack: "#B2B2B2" + brightRed: "#F2241F" + brightGreen: "#67FF59" + brightYellow: "#B1951D" + brightBlue: "#D7DFFF" + brightMagenta: "#A31DB1" + brightCyan: "#B5ADFF" + brightWhite: "#B2B2B2" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 67.3 + black: 56.6 + red: 20.1 + green: 72 + yellow: 65.7 + blue: 29.7 + magenta: 8.6 + cyan: 39.6 + white: 56.6 + brightBlack: 56.6 + brightRed: 31.2 + brightGreen: 84.8 + brightYellow: 42.3 + brightBlue: 83.8 + brightMagenta: 18.3 + brightCyan: 59.1 + brightWhite: 56.6 diff --git a/themes/nuxtian--nuxtian-deep-space.yaml b/themes/nuxtian--nuxtian-deep-space.yaml new file mode 100644 index 00000000..73fef157 --- /dev/null +++ b/themes/nuxtian--nuxtian-deep-space.yaml @@ -0,0 +1,53 @@ +name: "Nuxtian (Nuxtian Deep Space)" +source: + marketplace_id: "MashedPotatoStudios.nuxtian" + version: "0.3.5" + installs: 418 + rating: 0 + ratings: 0 + author: "Mashed Potato Studios" + repo: "https://github.com/mashed-potato-studios/nuxtian" + url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" + formats: null +colors: + bg: "#050B1D" + fg: "#CBD5E1" + black: "#050B1D" + red: "#FF5370" + green: "#00DC82" + yellow: "#CBD5E1" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#F7ECE9" + brightBlack: "#27272A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#E2E8F0" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#F7ECE9" +meta: + mode: "dark" + accent: "red" + hue: 266 + pair: null + contrast: + fg: 80.1 + black: 0 + red: 44.4 + green: 69.3 + yellow: 80.1 + blue: 56.7 + magenta: 54.5 + cyan: 79 + white: 96.6 + brightBlack: 0 + brightRed: 44.4 + brightGreen: 84.9 + brightYellow: 92.2 + brightBlue: 56.7 + brightMagenta: 54.5 + brightCyan: 79 + brightWhite: 96.6 diff --git a/themes/nuxtian--nuxtian-light.yaml b/themes/nuxtian--nuxtian-light.yaml new file mode 100644 index 00000000..578fb198 --- /dev/null +++ b/themes/nuxtian--nuxtian-light.yaml @@ -0,0 +1,53 @@ +name: "Nuxtian (Nuxtian Light)" +source: + marketplace_id: "MashedPotatoStudios.nuxtian" + version: "0.3.5" + installs: 418 + rating: 0 + ratings: 0 + author: "Mashed Potato Studios" + repo: "https://github.com/mashed-potato-studios/nuxtian" + url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" + formats: null +colors: + bg: "#F8FAFC" + fg: "#1E293B" + black: "#0F172A" + red: "#F43F5E" + green: "#00DC82" + yellow: "#64748B" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F8FAFC" + brightBlack: "#334155" + brightRed: "#F43F5E" + brightGreen: "#4ADE80" + brightYellow: "#94A3B8" + brightBlue: "#3B82F6" + brightMagenta: "#A855F7" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 98.2 + black: 101.4 + red: 59.7 + green: 29.9 + yellow: 69.9 + blue: 60.7 + magenta: 63.1 + cyan: 44 + white: 0 + brightBlack: 90.9 + brightRed: 59.7 + brightGreen: 28.1 + brightYellow: 47 + brightBlue: 60.7 + brightMagenta: 63.1 + brightCyan: 44 + brightWhite: 0 diff --git a/themes/nuxtian--nuxtian-nitro.yaml b/themes/nuxtian--nuxtian-nitro.yaml new file mode 100644 index 00000000..87e5c747 --- /dev/null +++ b/themes/nuxtian--nuxtian-nitro.yaml @@ -0,0 +1,53 @@ +name: "Nuxtian (Nuxtian Nitro)" +source: + marketplace_id: "MashedPotatoStudios.nuxtian" + version: "0.3.5" + installs: 418 + rating: 0 + ratings: 0 + author: "Mashed Potato Studios" + repo: "https://github.com/mashed-potato-studios/nuxtian" + url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" + formats: null +colors: + bg: "#111111" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#FF3366" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#FF3366" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.4 + black: 0 + red: 37 + green: 86 + yellow: 102.2 + blue: 39.9 + magenta: 45.7 + cyan: 91.7 + white: 107.4 + brightBlack: 22.5 + brightRed: 37 + brightGreen: 86 + brightYellow: 102.2 + brightBlue: 39.9 + brightMagenta: 45.7 + brightCyan: 91.7 + brightWhite: 107.4 diff --git a/themes/nuxtian--nuxtian.yaml b/themes/nuxtian--nuxtian.yaml new file mode 100644 index 00000000..8d626954 --- /dev/null +++ b/themes/nuxtian--nuxtian.yaml @@ -0,0 +1,53 @@ +name: "Nuxtian (Nuxtian)" +source: + marketplace_id: "MashedPotatoStudios.nuxtian" + version: "0.3.5" + installs: 418 + rating: 0 + ratings: 0 + author: "Mashed Potato Studios" + repo: "https://github.com/mashed-potato-studios/nuxtian" + url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" + formats: null +colors: + bg: "#10162A" + fg: "#CBD5E1" + black: "#10162A" + red: "#FF5370" + green: "#00DC82" + yellow: "#CBD5E1" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#F7ECE9" + brightBlack: "#27272A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#E2E8F0" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#F7ECE9" +meta: + mode: "dark" + accent: "red" + hue: 270 + pair: null + contrast: + fg: 79.3 + black: 0 + red: 43.6 + green: 68.5 + yellow: 79.3 + blue: 55.9 + magenta: 53.7 + cyan: 78.2 + white: 95.8 + brightBlack: 0 + brightRed: 43.6 + brightGreen: 84.1 + brightYellow: 91.5 + brightBlue: 55.9 + brightMagenta: 53.7 + brightCyan: 78.2 + brightWhite: 95.8 diff --git a/themes/nuxtian--nuxtiansololevel.yaml b/themes/nuxtian--nuxtiansololevel.yaml new file mode 100644 index 00000000..79e1e211 --- /dev/null +++ b/themes/nuxtian--nuxtiansololevel.yaml @@ -0,0 +1,53 @@ +name: "Nuxtian (NuxtianSoloLevel)" +source: + marketplace_id: "MashedPotatoStudios.nuxtian" + version: "0.3.5" + installs: 418 + rating: 0 + ratings: 0 + author: "Mashed Potato Studios" + repo: "https://github.com/mashed-potato-studios/nuxtian" + url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" + formats: null +colors: + bg: "#171717" + fg: "#FFFFFF" + black: "#3B3B3B" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#888787" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 106.9 + black: 0 + red: 43.6 + green: 84.2 + yellow: 78.9 + blue: 55.9 + magenta: 53.7 + cyan: 78.2 + white: 106.9 + brightBlack: 37.2 + brightRed: 43.6 + brightGreen: 84.2 + brightYellow: 78.9 + brightBlue: 55.9 + brightMagenta: 53.7 + brightCyan: 78.2 + brightWhite: 106.9 diff --git a/themes/nuxtian--nuxtvite.yaml b/themes/nuxtian--nuxtvite.yaml new file mode 100644 index 00000000..b7d3e15a --- /dev/null +++ b/themes/nuxtian--nuxtvite.yaml @@ -0,0 +1,53 @@ +name: "Nuxtian (NuxtVite)" +source: + marketplace_id: "MashedPotatoStudios.nuxtian" + version: "0.3.5" + installs: 418 + rating: 0 + ratings: 0 + author: "Mashed Potato Studios" + repo: "https://github.com/mashed-potato-studios/nuxtian" + url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" + formats: null +colors: + bg: "#15131B" + fg: "#CBD5E1" + black: "#15131B" + red: "#FF5370" + green: "#00DC82" + yellow: "#CBD5E1" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#F7ECE9" + brightBlack: "#27272A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#E2E8F0" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#F7ECE9" +meta: + mode: "dark" + accent: "red" + hue: 296 + pair: null + contrast: + fg: 79.6 + black: 0 + red: 43.9 + green: 68.8 + yellow: 79.6 + blue: 56.2 + magenta: 54 + cyan: 78.5 + white: 96.1 + brightBlack: 0 + brightRed: 43.9 + brightGreen: 84.4 + brightYellow: 91.8 + brightBlue: 56.2 + brightMagenta: 54 + brightCyan: 78.5 + brightWhite: 96.1 diff --git a/themes/nuxtian--nuxtvoid.yaml b/themes/nuxtian--nuxtvoid.yaml new file mode 100644 index 00000000..224f8450 --- /dev/null +++ b/themes/nuxtian--nuxtvoid.yaml @@ -0,0 +1,53 @@ +name: "Nuxtian (NuxtVoid)" +source: + marketplace_id: "MashedPotatoStudios.nuxtian" + version: "0.3.5" + installs: 418 + rating: 0 + ratings: 0 + author: "Mashed Potato Studios" + repo: "https://github.com/mashed-potato-studios/nuxtian" + url: "https://marketplace.visualstudio.com/items?itemName=MashedPotatoStudios.nuxtian" + formats: null +colors: + bg: "#FFFFFF" + fg: "#6B7280" + black: "#1F2937" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#8B5CF6" + cyan: "#06B6D4" + white: "#F9FAFB" + brightBlack: "#6B7280" + brightRed: "#FCA5A5" + brightGreen: "#A7F3D0" + brightYellow: "#FDE68A" + brightBlue: "#93C5FD" + brightMagenta: "#C4B5FD" + brightCyan: "#A5F3FC" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 73.6 + black: 101.5 + red: 63.8 + green: 49.1 + yellow: 41.8 + blue: 63.9 + magenta: 68.7 + cyan: 47.1 + white: 0 + brightBlack: 73.6 + brightRed: 35.9 + brightGreen: 13.9 + brightYellow: 12.1 + brightBlue: 33.4 + brightMagenta: 34.7 + brightCyan: 12.2 + brightWhite: 0 diff --git a/themes/nvtokyo-night.yaml b/themes/nvtokyo-night.yaml new file mode 100644 index 00000000..9045c9f5 --- /dev/null +++ b/themes/nvtokyo-night.yaml @@ -0,0 +1,53 @@ +name: "nvTokyo Night" +source: + marketplace_id: "tokyo-night.nvtokyo" + version: "0.0.1" + installs: 1818 + rating: 0 + ratings: 0 + author: "tokyo-night" + repo: "https://github.com/betty2310/Tokyo-Night" + url: "https://marketplace.visualstudio.com/items?itemName=tokyo-night.nvtokyo" + formats: null +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#000000" + red: "#F7768E" + green: "#9ECE6A" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#B4F9F8" + white: "#E5E5E5" + brightBlack: "#727779" + brightRed: "#F14C4C" + brightGreen: "#9CCE6A" + brightYellow: "#E4B571" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 280 + pair: null + contrast: + fg: 73.8 + black: 0 + red: 49.4 + green: 66.9 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 94.3 + white: 89.5 + brightBlack: 28.6 + brightRed: 38 + brightGreen: 66.8 + brightYellow: 65.3 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/nyc-winter-theme.yaml b/themes/nyc-winter-theme.yaml new file mode 100644 index 00000000..bb2c96ac --- /dev/null +++ b/themes/nyc-winter-theme.yaml @@ -0,0 +1,53 @@ +name: "NYC Winter Theme" +source: + marketplace_id: "nycdude.nyc-lights" + version: "0.7.5" + installs: 4684 + rating: 5 + ratings: 2 + author: "iamalmiir" + repo: "https://github.com/iamalmiir/nyc_winter_vsc_theme" + url: "https://marketplace.visualstudio.com/items?itemName=nycdude.nyc-lights" + formats: null +colors: + bg: "#282D44" + fg: "#EEFFFF" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#7982A9" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 274 + pair: null + contrast: + fg: 100.8 + black: 0 + red: 46.2 + green: 69 + yellow: 59 + blue: 48 + magenta: 51.8 + cyan: 67.3 + white: 31.8 + brightBlack: 0 + brightRed: 46.2 + brightGreen: 69 + brightYellow: 59 + brightBlue: 48 + brightMagenta: 51.8 + brightCyan: 67.3 + brightWhite: 56.2 diff --git a/themes/oak--oak-dark.yaml b/themes/oak--oak-dark.yaml new file mode 100644 index 00000000..f85d4ad4 --- /dev/null +++ b/themes/oak--oak-dark.yaml @@ -0,0 +1,54 @@ +name: "Oak (Oak-Dark)" +source: + marketplace_id: "Rekihyt.oak" + version: "2.1.7" + installs: 753 + rating: 0 + ratings: 0 + author: "Rekihyt" + repo: "https://github.com/rekihyt/oak" + url: "https://marketplace.visualstudio.com/items?itemName=Rekihyt.oak" + formats: + sublime: "https://raw.githubusercontent.com/rekihyt/oak/master/tmThemes/Oak-Dark-merged.tmTheme" +colors: + bg: "#202020" + fg: "#E0E0E0" + black: "#FFFFFF" + red: "#C26F9B" + green: "#52B84E" + yellow: "#CFA957" + blue: "#458FDD" + magenta: "#9779DF" + cyan: "#49B4BE" + white: "#000000" + brightBlack: "#FFFFFF" + brightRed: "#B44882" + brightGreen: "#30B040" + brightYellow: "#FFE1A2" + brightBlue: "#7CACE0" + brightMagenta: "#A493CC" + brightCyan: "#74C9D1" + brightWhite: "#303030" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 85.8 + black: 105.8 + red: 37.5 + green: 50.7 + yellow: 56.4 + blue: 38.7 + magenta: 37.9 + cyan: 51.9 + white: 0 + brightBlack: 105.8 + brightRed: 25.6 + brightGreen: 45.8 + brightYellow: 88.4 + brightBlue: 53.2 + brightMagenta: 46.5 + brightCyan: 64.2 + brightWhite: 0 diff --git a/themes/oak--oak.yaml b/themes/oak--oak.yaml new file mode 100644 index 00000000..530520de --- /dev/null +++ b/themes/oak--oak.yaml @@ -0,0 +1,54 @@ +name: "Oak (Oak)" +source: + marketplace_id: "Rekihyt.oak" + version: "2.1.7" + installs: 753 + rating: 0 + ratings: 0 + author: "Rekihyt" + repo: "https://github.com/rekihyt/oak" + url: "https://marketplace.visualstudio.com/items?itemName=Rekihyt.oak" + formats: + sublime: "https://raw.githubusercontent.com/rekihyt/oak/master/tmThemes/Oak-Dark-merged.tmTheme" +colors: + bg: "#F5F5F5" + fg: "#505050" + black: "#000000" + red: "#C26F9B" + green: "#52B84E" + yellow: "#8A671E" + blue: "#5086CE" + magenta: "#9779DF" + cyan: "#49B4BE" + white: "#FFFFFF" + brightBlack: "#303030" + brightRed: "#B44882" + brightGreen: "#30B040" + brightYellow: "#CFA957" + brightBlue: "#7CACE0" + brightMagenta: "#A493CC" + brightCyan: "#74C9D1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 82 + black: 100.1 + red: 56.1 + green: 43.2 + yellow: 69.6 + blue: 58.6 + magenta: 55.7 + cyan: 42 + white: 0 + brightBlack: 93.6 + brightRed: 68 + brightGreen: 47.9 + brightYellow: 37.6 + brightBlue: 40.8 + brightMagenta: 47.2 + brightCyan: 30.2 + brightWhite: 0 diff --git a/themes/obsidian-dark-theme--rust-syntax-optimized.yaml b/themes/obsidian-dark-theme--rust-syntax-optimized.yaml new file mode 100644 index 00000000..099a8eb2 --- /dev/null +++ b/themes/obsidian-dark-theme--rust-syntax-optimized.yaml @@ -0,0 +1,53 @@ +name: "Obsidian Dark Theme (Rust syntax optimized)" +source: + marketplace_id: "dwrolvink.obsidian-dark-theme-rust" + version: "1.0.0" + installs: 3357 + rating: 5 + ratings: 1 + author: "dwrolvink" + repo: "https://github.com/dwrolvink/obsidian-dark-theme-rust" + url: "https://marketplace.visualstudio.com/items?itemName=dwrolvink.obsidian-dark-theme-rust" + formats: null +colors: + bg: "#10151A" + fg: "#C9D1D9" + black: "#484F58" + red: "#FF7B72" + green: "#3FB950" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FFA198" + brightGreen: "#56D364" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "green" + hue: 248 + pair: null + contrast: + fg: 77.3 + black: 12.8 + red: 52.3 + green: 51.8 + yellow: 51.9 + blue: 51.9 + magenta: 51.9 + cyan: 61.1 + white: 63.8 + brightBlack: 29 + brightRed: 64.6 + brightGreen: 65.2 + brightYellow: 64.4 + brightBlue: 64.5 + brightMagenta: 64.3 + brightCyan: 69.6 + brightWhite: 100.6 diff --git a/themes/obsidian-ember-theme.yaml b/themes/obsidian-ember-theme.yaml new file mode 100644 index 00000000..5f8e0948 --- /dev/null +++ b/themes/obsidian-ember-theme.yaml @@ -0,0 +1,53 @@ +name: "Obsidian Ember Theme" +source: + marketplace_id: "lvzitan.obsidian-ember-theme" + version: "1.1.3" + installs: 1044 + rating: 5 + ratings: 1 + author: "Daniel Francisco" + repo: "https://github.com/Lvzitan/obsidian-ember-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lvzitan.obsidian-ember-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#D3D3D3" + black: "#333333" + red: "#D73333" + green: "#9BE884" + yellow: "#FF8243" + blue: "#AAAAAA" + magenta: "#CCCCCC" + cyan: "#FF8243" + white: "#E5E5E5" + brightBlack: "#333333" + brightRed: "#F70808" + brightGreen: "#75DB57" + brightYellow: "#FF8243" + brightBlue: "#AAAAAA" + brightMagenta: "#CCCCCC" + brightCyan: "#FF8243" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78 + black: 0 + red: 28.3 + green: 79.3 + yellow: 52.3 + blue: 54.4 + magenta: 73.8 + cyan: 52.3 + white: 89.2 + brightBlack: 0 + brightRed: 33.7 + brightGreen: 69.4 + brightYellow: 52.3 + brightBlue: 54.4 + brightMagenta: 73.8 + brightCyan: 52.3 + brightWhite: 89.2 diff --git a/themes/obsidianite--obsidianite-amoled.yaml b/themes/obsidianite--obsidianite-amoled.yaml new file mode 100644 index 00000000..db05c3a7 --- /dev/null +++ b/themes/obsidianite--obsidianite-amoled.yaml @@ -0,0 +1,53 @@ +name: "Obsidianite (Obsidianite AMOLED)" +source: + marketplace_id: "shd0w.obsidianite-vscode" + version: "1.0.1" + installs: 6 + rating: 0 + ratings: 0 + author: "shd0w" + repo: "https://github.com/shd0w/obsidianite-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=shd0w.obsidianite-vscode" + formats: null +colors: + bg: "#000000" + fg: "#BEBEBE" + black: "#000000" + red: "#F4569D" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#0FB6D6" + white: "#BEBEBE" + brightBlack: "#5C6370" + brightRed: "#FF79C6" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#5FD7FF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 67.5 + black: 0 + red: 44.1 + green: 85.9 + yellow: 99.6 + blue: 52.7 + magenta: 56.6 + cyan: 55 + white: 67.5 + brightBlack: 21.6 + brightRed: 55.6 + brightGreen: 90 + brightYellow: 104.5 + brightBlue: 67.1 + brightMagenta: 63.6 + brightCyan: 74.1 + brightWhite: 103 diff --git a/themes/obsidianite--obsidianite.yaml b/themes/obsidianite--obsidianite.yaml new file mode 100644 index 00000000..5025a87a --- /dev/null +++ b/themes/obsidianite--obsidianite.yaml @@ -0,0 +1,53 @@ +name: "Obsidianite (Obsidianite)" +source: + marketplace_id: "shd0w.obsidianite-vscode" + version: "1.0.1" + installs: 6 + rating: 0 + ratings: 0 + author: "shd0w" + repo: "https://github.com/shd0w/obsidianite-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=shd0w.obsidianite-vscode" + formats: null +colors: + bg: "#100E17" + fg: "#BEBEBE" + black: "#0D0B12" + red: "#F4569D" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#0FB6D6" + white: "#BEBEBE" + brightBlack: "#5C6370" + brightRed: "#FF79C6" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#5FD7FF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: 295 + pair: null + contrast: + fg: 67.1 + black: 0 + red: 43.7 + green: 85.5 + yellow: 99.2 + blue: 52.3 + magenta: 56.2 + cyan: 54.6 + white: 67.1 + brightBlack: 21.2 + brightRed: 55.2 + brightGreen: 89.6 + brightYellow: 104.1 + brightBlue: 66.7 + brightMagenta: 63.2 + brightCyan: 73.7 + brightWhite: 102.6 diff --git a/themes/oc7-light.yaml b/themes/oc7-light.yaml new file mode 100644 index 00000000..e87be378 --- /dev/null +++ b/themes/oc7-light.yaml @@ -0,0 +1,54 @@ +name: "oc7-light" +source: + marketplace_id: "7off.oc7-light" + version: "0.0.1" + installs: 1099 + rating: 0 + ratings: 0 + author: "Anatoliy Semenov" + repo: "https://github.com/7off/vscode-oc7light-theme" + url: "https://marketplace.visualstudio.com/items?itemName=7off.oc7-light" + formats: + sublime: "https://raw.githubusercontent.com/7off/vscode-oc7light-theme/master/themes/oc7-light.tmTheme" +colors: + bg: "#F9F9F9" + fg: "#383A42" + black: "#D5D6DD" + red: "#D52753" + green: "#23974A" + yellow: "#DF631C" + blue: "#275FE4" + magenta: "#823FF1" + cyan: "#27618D" + white: "#000000" + brightBlack: "#A0A1A7" + brightRed: "#FF6480" + brightGreen: "#3CBC66" + brightYellow: "#F57D00" + brightBlue: "#0099E1" + brightMagenta: "#CE33C0" + brightCyan: "#6D93BB" + brightWhite: "#26272D" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 92.6 + black: 17.8 + red: 68.9 + green: 61 + yellow: 58.6 + blue: 73 + magenta: 72 + cyan: 78.8 + white: 102.5 + brightBlack: 46.8 + brightRed: 50.1 + brightGreen: 44.2 + brightYellow: 47.9 + brightBlue: 54.4 + brightMagenta: 65 + brightCyan: 55.7 + brightWhite: 98.2 diff --git a/themes/ocean-monokai.yaml b/themes/ocean-monokai.yaml new file mode 100644 index 00000000..3c5521f6 --- /dev/null +++ b/themes/ocean-monokai.yaml @@ -0,0 +1,53 @@ +name: "Ocean Monokai" +source: + marketplace_id: "grantorino-publisher.theme-ocean-monokai" + version: "0.0.3" + installs: 937 + rating: 0 + ratings: 0 + author: "grantorino" + repo: "https://github.com/grantorin/theme-ocean-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=grantorino-publisher.theme-ocean-monokai" + formats: null +colors: + bg: "#253238" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 228 + pair: null + contrast: + fg: 75.3 + black: 0 + red: 22.6 + green: 48.9 + yellow: 81.5 + blue: 23.3 + magenta: 25.6 + cyan: 43.4 + white: 85.9 + brightBlack: 17.9 + brightRed: 34.4 + brightGreen: 59.4 + brightYellow: 91.5 + brightBlue: 35.9 + brightMagenta: 41.2 + brightCyan: 51.3 + brightWhite: 85.9 diff --git a/themes/ocms-theme--red.yaml b/themes/ocms-theme--red.yaml new file mode 100644 index 00000000..e81688ca --- /dev/null +++ b/themes/ocms-theme--red.yaml @@ -0,0 +1,53 @@ +name: "OCMS Theme (red)" +source: + marketplace_id: "BrennoFruhauf.ocms-theme" + version: "0.0.1" + installs: 396 + rating: 5 + ratings: 3 + author: "Brenno Fruhauf" + repo: "https://github.com/brennofruhauf/ocms-theme" + url: "https://marketplace.visualstudio.com/items?itemName=BrennoFruhauf.ocms-theme" + formats: null +colors: + bg: "#131313" + fg: "#EBEBEB" + black: "#FFFFFF" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 94.2 + black: 107.2 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/octopus--deep-ocean.yaml b/themes/octopus--deep-ocean.yaml new file mode 100644 index 00000000..42eb0ac5 --- /dev/null +++ b/themes/octopus--deep-ocean.yaml @@ -0,0 +1,53 @@ +name: "Octopus (Deep ocean)" +source: + marketplace_id: "simecek.octopus" + version: "1.0.0" + installs: 946 + rating: 0 + ratings: 0 + author: "Martin Šimeček" + repo: "https://github.com/simecek-m/octopus" + url: "https://marketplace.visualstudio.com/items?itemName=simecek.octopus" + formats: null +colors: + bg: "#000011" + fg: "#FFFFFF" + black: "#000000" + red: "#F12D52" + green: "#0AE78D" + yellow: "#FFFC67" + blue: "#4883F7" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F6516F" + brightGreen: "#3DFCB0" + brightYellow: "#FFFD94" + brightBlue: "#6096FF" + brightMagenta: "#D573D5" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 107.8 + black: 0 + red: 36.1 + green: 75.3 + yellow: 101.8 + blue: 38.6 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 42.2 + brightGreen: 87.8 + brightYellow: 103.1 + brightBlue: 47.1 + brightMagenta: 46.8 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/office-theme--word-color-theme.yaml b/themes/office-theme--word-color-theme.yaml new file mode 100644 index 00000000..9deb6451 --- /dev/null +++ b/themes/office-theme--word-color-theme.yaml @@ -0,0 +1,53 @@ +name: "Office Theme (word-color-theme)" +source: + marketplace_id: "huacat.office-theme" + version: "1.4.1" + installs: 75549 + rating: 4.9 + ratings: 10 + author: "huacat" + repo: "https://github.com/huacat1017/huacat.office-theme" + url: "https://marketplace.visualstudio.com/items?itemName=huacat.office-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#F4B183" + green: "#A8D08D" + yellow: "#FFC000" + blue: "#8EAADB" + magenta: "#B2A1C7" + cyan: "#9CC3E5" + white: "#A5A5A5" + brightBlack: "#808080" + brightRed: "#C0504D" + brightGreen: "#70AD47" + brightYellow: "#E0A903" + brightBlue: "#4472C4" + brightMagenta: "#8064A2" + brightCyan: "#5B9BD5" + brightWhite: "#C9C9C9" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 34.2 + green: 31.6 + yellow: 28.2 + blue: 46.4 + magenta: 46.9 + cyan: 34.8 + white: 48.5 + brightBlack: 66.9 + brightRed: 71.8 + brightGreen: 52.3 + brightYellow: 41.6 + brightBlue: 72.5 + brightMagenta: 74 + brightCyan: 56 + brightWhite: 29 diff --git a/themes/office-theme--word-dark-theme.yaml b/themes/office-theme--word-dark-theme.yaml new file mode 100644 index 00000000..edd74ba1 --- /dev/null +++ b/themes/office-theme--word-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Office Theme (word-dark-theme)" +source: + marketplace_id: "huacat.office-theme" + version: "1.4.1" + installs: 75549 + rating: 4.9 + ratings: 10 + author: "huacat" + repo: "https://github.com/huacat1017/huacat.office-theme" + url: "https://marketplace.visualstudio.com/items?itemName=huacat.office-theme" + formats: null +colors: + bg: "#262626" + fg: "#F6F6F6" + black: "#000000" + red: "#ED7D31" + green: "#70AD47" + yellow: "#FFC000" + blue: "#7FA5F9" + magenta: "#C19DEC" + cyan: "#5B9BD5" + white: "#F6F6F6" + brightBlack: "#A5A5A5" + brightRed: "#F38784" + brightGreen: "#B0E18D" + brightYellow: "#FFD965" + brightBlue: "#8EAADB" + brightMagenta: "#CEB0F4" + brightCyan: "#A7C6F1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 98.9 + black: 0 + red: 45.8 + green: 46.5 + yellow: 71.7 + blue: 51.3 + magenta: 54.6 + cyan: 42.7 + white: 98.9 + brightBlack: 50.4 + brightRed: 51.3 + brightGreen: 76.8 + brightYellow: 82.7 + brightBlue: 52.6 + brightMagenta: 63.7 + brightCyan: 67.7 + brightWhite: 104.8 diff --git a/themes/ohled-themes-142-in-1--ohled-aliceblue.yaml b/themes/ohled-themes-142-in-1--ohled-aliceblue.yaml new file mode 100644 index 00000000..468b2882 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-aliceblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_AliceBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#F0F8FF" + black: "#F0F8FF" + red: "#B0B6BB" + green: "#C0C6CC" + yellow: "#909599" + blue: "#E0E7EE" + magenta: "#D0D7DD" + cyan: "#A0A5AA" + white: "#808488" + brightBlack: "#F0F8FF" + brightRed: "#B0B6BB" + brightGreen: "#C0C6CC" + brightYellow: "#909599" + brightBlue: "#E0E7EE" + brightMagenta: "#D0D7DD" + brightCyan: "#A0A5AA" + brightWhite: "#808488" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 102.5 + black: 102.5 + red: 62.4 + green: 71.6 + yellow: 44.8 + blue: 91.7 + magenta: 81.7 + cyan: 53.2 + white: 36.4 + brightBlack: 102.5 + brightRed: 62.4 + brightGreen: 71.6 + brightYellow: 44.8 + brightBlue: 91.7 + brightMagenta: 81.7 + brightCyan: 53.2 + brightWhite: 36.4 diff --git a/themes/ohled-themes-142-in-1--ohled-antiquewhite.yaml b/themes/ohled-themes-142-in-1--ohled-antiquewhite.yaml new file mode 100644 index 00000000..2972e833 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-antiquewhite.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_AntiqueWhite)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FAEBD7" + black: "#FAEBD7" + red: "#B7AC9E" + green: "#C8BCAC" + yellow: "#968D81" + blue: "#E9DBC9" + magenta: "#D9CCBA" + cyan: "#A79D8F" + white: "#857D73" + brightBlack: "#FAEBD7" + brightRed: "#B7AC9E" + brightGreen: "#C8BCAC" + brightYellow: "#968D81" + brightBlue: "#E9DBC9" + brightMagenta: "#D9CCBA" + brightCyan: "#A79D8F" + brightWhite: "#857D73" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 96.1 + black: 96.1 + red: 58.2 + green: 67.2 + yellow: 41.7 + blue: 85.9 + magenta: 76.7 + cyan: 49.9 + white: 33.9 + brightBlack: 96.1 + brightRed: 58.2 + brightGreen: 67.2 + brightYellow: 41.7 + brightBlue: 85.9 + brightMagenta: 76.7 + brightCyan: 49.9 + brightWhite: 33.9 diff --git a/themes/ohled-themes-142-in-1--ohled-aqua.yaml b/themes/ohled-themes-142-in-1--ohled-aqua.yaml new file mode 100644 index 00000000..02db8c27 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-aqua.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Aqua)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#00FFFF" + black: "#00FFFF" + red: "#00BBBB" + green: "#00CCCC" + yellow: "#009999" + blue: "#00EEEE" + magenta: "#00DDDD" + cyan: "#00AAAA" + white: "#008888" + brightBlack: "#00FFFF" + brightRed: "#00BBBB" + brightGreen: "#00CCCC" + brightYellow: "#009999" + brightBlue: "#00EEEE" + brightMagenta: "#00DDDD" + brightCyan: "#00AAAA" + brightWhite: "#008888" +meta: + mode: "dark" + accent: "cyan" + hue: null + pair: null + contrast: + fg: 92.2 + black: 92.2 + red: 55.8 + green: 64.4 + yellow: 39.8 + blue: 82.6 + magenta: 73.3 + cyan: 47.6 + white: 32.5 + brightBlack: 92.2 + brightRed: 55.8 + brightGreen: 64.4 + brightYellow: 39.8 + brightBlue: 82.6 + brightMagenta: 73.3 + brightCyan: 47.6 + brightWhite: 32.5 diff --git a/themes/ohled-themes-142-in-1--ohled-aquamarine.yaml b/themes/ohled-themes-142-in-1--ohled-aquamarine.yaml new file mode 100644 index 00000000..8963ebc8 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-aquamarine.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_AquaMarine)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#7FFFD4" + black: "#7FFFD4" + red: "#5DBB9B" + green: "#66CCAA" + yellow: "#4C997F" + blue: "#77EEC6" + magenta: "#6EDDB8" + cyan: "#55AA8D" + white: "#448871" + brightBlack: "#7FFFD4" + brightRed: "#5DBB9B" + brightGreen: "#66CCAA" + brightYellow: "#4C997F" + brightBlue: "#77EEC6" + brightMagenta: "#6EDDB8" + brightCyan: "#55AA8D" + brightWhite: "#448871" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 93.3 + black: 93.3 + red: 56.5 + green: 65.2 + yellow: 40.3 + blue: 83.6 + magenta: 74.2 + cyan: 48.2 + white: 32.9 + brightBlack: 93.3 + brightRed: 56.5 + brightGreen: 65.2 + brightYellow: 40.3 + brightBlue: 83.6 + brightMagenta: 74.2 + brightCyan: 48.2 + brightWhite: 32.9 diff --git a/themes/ohled-themes-142-in-1--ohled-azure.yaml b/themes/ohled-themes-142-in-1--ohled-azure.yaml new file mode 100644 index 00000000..9ae361f9 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-azure.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Azure)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#F0FFFF" + black: "#F0FFFF" + red: "#B0BBBB" + green: "#C0CCCC" + yellow: "#909999" + blue: "#E0EEEE" + magenta: "#D0DDDD" + cyan: "#A0AAAA" + white: "#808888" + brightBlack: "#F0FFFF" + brightRed: "#B0BBBB" + brightGreen: "#C0CCCC" + brightYellow: "#909999" + brightBlue: "#E0EEEE" + brightMagenta: "#D0DDDD" + brightCyan: "#A0AAAA" + brightWhite: "#808888" +meta: + mode: "dark" + accent: "cyan" + hue: null + pair: null + contrast: + fg: 105.8 + black: 105.8 + red: 64.5 + green: 74.2 + yellow: 46.2 + blue: 94.9 + magenta: 84.4 + cyan: 55.1 + white: 37.8 + brightBlack: 105.8 + brightRed: 64.5 + brightGreen: 74.2 + brightYellow: 46.2 + brightBlue: 94.9 + brightMagenta: 84.4 + brightCyan: 55.1 + brightWhite: 37.8 diff --git a/themes/ohled-themes-142-in-1--ohled-beige.yaml b/themes/ohled-themes-142-in-1--ohled-beige.yaml new file mode 100644 index 00000000..64eb4078 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-beige.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Beige)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#F5F5DC" + black: "#F5F5DC" + red: "#B4B4A1" + green: "#C4C4B0" + yellow: "#939384" + blue: "#E5E5CD" + magenta: "#D4D4BF" + cyan: "#A3A393" + white: "#838375" + brightBlack: "#F5F5DC" + brightRed: "#B4B4A1" + brightGreen: "#C4C4B0" + brightYellow: "#939384" + brightBlue: "#E5E5CD" + brightMagenta: "#D4D4BF" + brightCyan: "#A3A393" + brightWhite: "#838375" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 100.2 + black: 100.2 + red: 61.1 + green: 70.2 + yellow: 43.6 + blue: 90 + magenta: 79.6 + cyan: 51.9 + white: 35.7 + brightBlack: 100.2 + brightRed: 61.1 + brightGreen: 70.2 + brightYellow: 43.6 + brightBlue: 90 + brightMagenta: 79.6 + brightCyan: 51.9 + brightWhite: 35.7 diff --git a/themes/ohled-themes-142-in-1--ohled-bisque.yaml b/themes/ohled-themes-142-in-1--ohled-bisque.yaml new file mode 100644 index 00000000..3b160287 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-bisque.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Bisque)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFE4C4" + black: "#FFE4C4" + red: "#BBA790" + green: "#CCB69D" + yellow: "#998976" + blue: "#EED5B7" + magenta: "#DDC6AA" + cyan: "#AA9883" + white: "#887A69" + brightBlack: "#FFE4C4" + brightRed: "#BBA790" + brightGreen: "#CCB69D" + brightYellow: "#998976" + brightBlue: "#EED5B7" + brightMagenta: "#DDC6AA" + brightCyan: "#AA9883" + brightWhite: "#887A69" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 93 + black: 93 + red: 56.3 + green: 64.8 + yellow: 40.3 + blue: 83.4 + magenta: 74.1 + cyan: 48.1 + white: 32.9 + brightBlack: 93 + brightRed: 56.3 + brightGreen: 64.8 + brightYellow: 40.3 + brightBlue: 83.4 + brightMagenta: 74.1 + brightCyan: 48.1 + brightWhite: 32.9 diff --git a/themes/ohled-themes-142-in-1--ohled-blanchedalmond.yaml b/themes/ohled-themes-142-in-1--ohled-blanchedalmond.yaml new file mode 100644 index 00000000..b90ee232 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-blanchedalmond.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_BlanchedAlmond)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFEBCD" + black: "#FFEBCD" + red: "#BBAC96" + green: "#CCBCA4" + yellow: "#998D7B" + blue: "#EEDBBF" + magenta: "#DDCCB2" + cyan: "#AA9D89" + white: "#887D6D" + brightBlack: "#FFEBCD" + brightRed: "#BBAC96" + brightGreen: "#CCBCA4" + brightYellow: "#998D7B" + brightBlue: "#EEDBBF" + brightMagenta: "#DDCCB2" + brightCyan: "#AA9D89" + brightWhite: "#887D6D" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 96.5 + black: 96.5 + red: 58.4 + green: 67.5 + yellow: 41.8 + blue: 86.3 + magenta: 76.9 + cyan: 50.1 + white: 34 + brightBlack: 96.5 + brightRed: 58.4 + brightGreen: 67.5 + brightYellow: 41.8 + brightBlue: 86.3 + brightMagenta: 76.9 + brightCyan: 50.1 + brightWhite: 34 diff --git a/themes/ohled-themes-142-in-1--ohled-blue.yaml b/themes/ohled-themes-142-in-1--ohled-blue.yaml new file mode 100644 index 00000000..2780ea6c --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-blue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Blue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#5E5EFF" + black: "#5E5EFF" + red: "#4545BB" + green: "#4B4BCC" + yellow: "#383899" + blue: "#5858EE" + magenta: "#5151DD" + cyan: "#3F3FAA" + white: "#323288" + brightBlack: "#5E5EFF" + brightRed: "#4545BB" + brightGreen: "#4B4BCC" + brightYellow: "#383899" + brightBlue: "#5858EE" + brightMagenta: "#5151DD" + brightCyan: "#3F3FAA" + brightWhite: "#323288" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 30 + black: 30 + red: 16.7 + green: 19.8 + yellow: 10.7 + blue: 26.6 + magenta: 23 + cyan: 13.7 + white: 8 + brightBlack: 30 + brightRed: 16.7 + brightGreen: 19.8 + brightYellow: 10.7 + brightBlue: 26.6 + brightMagenta: 23 + brightCyan: 13.7 + brightWhite: 8 diff --git a/themes/ohled-themes-142-in-1--ohled-blueviolet.yaml b/themes/ohled-themes-142-in-1--ohled-blueviolet.yaml new file mode 100644 index 00000000..ae506804 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-blueviolet.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_BlueViolet)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#964DE8" + black: "#964DE8" + red: "#6E38AA" + green: "#783EBA" + yellow: "#5A2E8B" + blue: "#8C48D9" + magenta: "#8243C9" + cyan: "#64339B" + white: "#50297C" + brightBlack: "#964DE8" + brightRed: "#6E38AA" + brightGreen: "#783EBA" + brightYellow: "#5A2E8B" + brightBlue: "#8C48D9" + brightMagenta: "#8243C9" + brightCyan: "#64339B" + brightWhite: "#50297C" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 30.1 + black: 30.1 + red: 16.6 + green: 20 + yellow: 10.8 + blue: 26.6 + magenta: 23.2 + cyan: 13.7 + white: 8.1 + brightBlack: 30.1 + brightRed: 16.6 + brightGreen: 20 + brightYellow: 10.8 + brightBlue: 26.6 + brightMagenta: 23.2 + brightCyan: 13.7 + brightWhite: 8.1 diff --git a/themes/ohled-themes-142-in-1--ohled-brown.yaml b/themes/ohled-themes-142-in-1--ohled-brown.yaml new file mode 100644 index 00000000..2b2debb6 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-brown.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Brown)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#B45959" + black: "#B45959" + red: "#844141" + green: "#904747" + yellow: "#6C3535" + blue: "#A85353" + magenta: "#9C4D4D" + cyan: "#783B3B" + white: "#602F2F" + brightBlack: "#B45959" + brightRed: "#844141" + brightGreen: "#904747" + brightYellow: "#6C3535" + brightBlue: "#A85353" + brightMagenta: "#9C4D4D" + brightCyan: "#783B3B" + brightWhite: "#602F2F" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 29.8 + black: 29.8 + red: 16.5 + green: 19.6 + yellow: 10.6 + blue: 26.3 + magenta: 22.9 + cyan: 13.5 + white: 7.9 + brightBlack: 29.8 + brightRed: 16.5 + brightGreen: 19.6 + brightYellow: 10.6 + brightBlue: 26.3 + brightMagenta: 22.9 + brightCyan: 13.5 + brightWhite: 7.9 diff --git a/themes/ohled-themes-142-in-1--ohled-burlywood.yaml b/themes/ohled-themes-142-in-1--ohled-burlywood.yaml new file mode 100644 index 00000000..ab0bb7f0 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-burlywood.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_BurlyWood)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#DEB887" + black: "#DEB887" + red: "#A38763" + green: "#B2936C" + yellow: "#856E51" + blue: "#CFAC7E" + magenta: "#C09F75" + cyan: "#947B5A" + white: "#766248" + brightBlack: "#DEB887" + brightRed: "#A38763" + brightGreen: "#B2936C" + brightYellow: "#856E51" + brightBlue: "#CFAC7E" + brightMagenta: "#C09F75" + brightCyan: "#947B5A" + brightWhite: "#766248" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 67.6 + black: 67.6 + red: 40.4 + green: 46.8 + yellow: 28.2 + blue: 60.5 + magenta: 53.2 + cyan: 34.3 + white: 22.7 + brightBlack: 67.6 + brightRed: 40.4 + brightGreen: 46.8 + brightYellow: 28.2 + brightBlue: 60.5 + brightMagenta: 53.2 + brightCyan: 34.3 + brightWhite: 22.7 diff --git a/themes/ohled-themes-142-in-1--ohled-cadetblue.yaml b/themes/ohled-themes-142-in-1--ohled-cadetblue.yaml new file mode 100644 index 00000000..402dcc72 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-cadetblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_CadetBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#5F9EA0" + black: "#5F9EA0" + red: "#467475" + green: "#4C7E80" + yellow: "#395F60" + blue: "#599395" + magenta: "#52898B" + cyan: "#3F696B" + white: "#335455" + brightBlack: "#5F9EA0" + brightRed: "#467475" + brightGreen: "#4C7E80" + brightYellow: "#395F60" + brightBlue: "#599395" + brightMagenta: "#52898B" + brightCyan: "#3F696B" + brightWhite: "#335455" +meta: + mode: "dark" + accent: "cyan" + hue: null + pair: null + contrast: + fg: 44.5 + black: 44.5 + red: 25.9 + green: 30.1 + yellow: 17.6 + blue: 39.4 + magenta: 34.8 + cyan: 21.5 + white: 13.7 + brightBlack: 44.5 + brightRed: 25.9 + brightGreen: 30.1 + brightYellow: 17.6 + brightBlue: 39.4 + brightMagenta: 34.8 + brightCyan: 21.5 + brightWhite: 13.7 diff --git a/themes/ohled-themes-142-in-1--ohled-chartreuse.yaml b/themes/ohled-themes-142-in-1--ohled-chartreuse.yaml new file mode 100644 index 00000000..16d097d9 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-chartreuse.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Chartreuse)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#7FFF00" + black: "#7FFF00" + red: "#5DBB00" + green: "#66CC00" + yellow: "#4C9900" + blue: "#77EE00" + magenta: "#6EDD00" + cyan: "#55AA00" + white: "#448800" + brightBlack: "#7FFF00" + brightRed: "#5DBB00" + brightGreen: "#66CC00" + brightYellow: "#4C9900" + brightBlue: "#77EE00" + brightMagenta: "#6EDD00" + brightCyan: "#55AA00" + brightWhite: "#448800" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 89.7 + black: 89.7 + red: 54.2 + green: 62.6 + yellow: 38.7 + blue: 80.3 + magenta: 71.3 + cyan: 46.3 + white: 31.5 + brightBlack: 89.7 + brightRed: 54.2 + brightGreen: 62.6 + brightYellow: 38.7 + brightBlue: 80.3 + brightMagenta: 71.3 + brightCyan: 46.3 + brightWhite: 31.5 diff --git a/themes/ohled-themes-142-in-1--ohled-chocolate.yaml b/themes/ohled-themes-142-in-1--ohled-chocolate.yaml new file mode 100644 index 00000000..a3e0f835 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-chocolate.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Chocolate)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#D2691E" + black: "#D2691E" + red: "#9A4D16" + green: "#A85418" + yellow: "#7E3F12" + blue: "#C4621C" + magenta: "#B65B1A" + cyan: "#8C4614" + white: "#703810" + brightBlack: "#D2691E" + brightRed: "#9A4D16" + brightGreen: "#A85418" + brightYellow: "#7E3F12" + brightBlue: "#C4621C" + brightMagenta: "#B65B1A" + brightCyan: "#8C4614" + brightWhite: "#703810" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 38.3 + black: 38.3 + red: 21.9 + green: 25.8 + yellow: 14.7 + blue: 34 + magenta: 29.8 + cyan: 18.2 + white: 11.3 + brightBlack: 38.3 + brightRed: 21.9 + brightGreen: 25.8 + brightYellow: 14.7 + brightBlue: 34 + brightMagenta: 29.8 + brightCyan: 18.2 + brightWhite: 11.3 diff --git a/themes/ohled-themes-142-in-1--ohled-coral.yaml b/themes/ohled-themes-142-in-1--ohled-coral.yaml new file mode 100644 index 00000000..41103e23 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-coral.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Coral)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FF7F50" + black: "#FF7F50" + red: "#BB5D3B" + green: "#CC6640" + yellow: "#994C30" + blue: "#EE774B" + magenta: "#DD6E45" + cyan: "#AA5535" + white: "#88442B" + brightBlack: "#FF7F50" + brightRed: "#BB5D3B" + brightGreen: "#CC6640" + brightYellow: "#994C30" + brightBlue: "#EE774B" + brightMagenta: "#DD6E45" + brightCyan: "#AA5535" + brightWhite: "#88442B" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 53.5 + black: 53.5 + red: 31.4 + green: 36.7 + yellow: 21.7 + blue: 47.8 + magenta: 42 + cyan: 26.6 + white: 17.3 + brightBlack: 53.5 + brightRed: 31.4 + brightGreen: 36.7 + brightYellow: 21.7 + brightBlue: 47.8 + brightMagenta: 42 + brightCyan: 26.6 + brightWhite: 17.3 diff --git a/themes/ohled-themes-142-in-1--ohled-cornflowerblue.yaml b/themes/ohled-themes-142-in-1--ohled-cornflowerblue.yaml new file mode 100644 index 00000000..e8960aab --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-cornflowerblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_CornflowerBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#6495ED" + black: "#6495ED" + red: "#496DAE" + green: "#5077BE" + yellow: "#3C598E" + blue: "#5D8BDD" + magenta: "#5781CD" + cyan: "#43639E" + white: "#354F7E" + brightBlack: "#6495ED" + brightRed: "#496DAE" + brightGreen: "#5077BE" + brightYellow: "#3C598E" + brightBlue: "#5D8BDD" + brightMagenta: "#5781CD" + brightCyan: "#43639E" + brightWhite: "#354F7E" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 45.7 + black: 45.7 + red: 26.4 + green: 31 + yellow: 18 + blue: 40.6 + magenta: 35.7 + cyan: 22.1 + white: 14 + brightBlack: 45.7 + brightRed: 26.4 + brightGreen: 31 + brightYellow: 18 + brightBlue: 40.6 + brightMagenta: 35.7 + brightCyan: 22.1 + brightWhite: 14 diff --git a/themes/ohled-themes-142-in-1--ohled-cornsilk.yaml b/themes/ohled-themes-142-in-1--ohled-cornsilk.yaml new file mode 100644 index 00000000..d21c66e1 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-cornsilk.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Cornsilk)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFF8DC" + black: "#FFF8DC" + red: "#BBB6A1" + green: "#CCC6B0" + yellow: "#999584" + blue: "#EEE7CD" + magenta: "#DDD7BF" + cyan: "#AAA593" + white: "#888475" + brightBlack: "#FFF8DC" + brightRed: "#BBB6A1" + brightGreen: "#CCC6B0" + brightYellow: "#999584" + brightBlue: "#EEE7CD" + brightMagenta: "#DDD7BF" + brightCyan: "#AAA593" + brightWhite: "#888475" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 103 + black: 103 + red: 62.7 + green: 72 + yellow: 45 + blue: 92.2 + magenta: 82.1 + cyan: 53.5 + white: 36.6 + brightBlack: 103 + brightRed: 62.7 + brightGreen: 72 + brightYellow: 45 + brightBlue: 92.2 + brightMagenta: 82.1 + brightCyan: 53.5 + brightWhite: 36.6 diff --git a/themes/ohled-themes-142-in-1--ohled-crimson.yaml b/themes/ohled-themes-142-in-1--ohled-crimson.yaml new file mode 100644 index 00000000..5a85818f --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-crimson.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Crimson)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#DE2946" + black: "#DE2946" + red: "#A31E33" + green: "#B22138" + yellow: "#85192A" + blue: "#CF2641" + magenta: "#C0243D" + cyan: "#941B2F" + white: "#761625" + brightBlack: "#DE2946" + brightRed: "#A31E33" + brightGreen: "#B22138" + brightYellow: "#85192A" + brightBlue: "#CF2641" + brightMagenta: "#C0243D" + brightCyan: "#941B2F" + brightWhite: "#761625" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 31.1 + black: 31.1 + red: 17.4 + green: 20.7 + yellow: 11.3 + blue: 27.4 + magenta: 23.9 + cyan: 14.2 + white: 8.4 + brightBlack: 31.1 + brightRed: 17.4 + brightGreen: 20.7 + brightYellow: 11.3 + brightBlue: 27.4 + brightMagenta: 23.9 + brightCyan: 14.2 + brightWhite: 8.4 diff --git a/themes/ohled-themes-142-in-1--ohled-darkblue.yaml b/themes/ohled-themes-142-in-1--ohled-darkblue.yaml new file mode 100644 index 00000000..776faafe --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#6E6EAD" + black: "#6E6EAD" + red: "#51517F" + green: "#58588A" + yellow: "#424268" + blue: "#6767A1" + magenta: "#5F5F96" + cyan: "#494973" + white: "#3B3B5C" + brightBlack: "#6E6EAD" + brightRed: "#51517F" + brightGreen: "#58588A" + brightYellow: "#424268" + brightBlue: "#6767A1" + brightMagenta: "#5F5F96" + brightCyan: "#494973" + brightWhite: "#3B3B5C" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 29.3 + black: 29.3 + red: 16.3 + green: 19.3 + yellow: 10.5 + blue: 26 + magenta: 22.4 + cyan: 13.1 + white: 7.9 + brightBlack: 29.3 + brightRed: 16.3 + brightGreen: 19.3 + brightYellow: 10.5 + brightBlue: 26 + brightMagenta: 22.4 + brightCyan: 13.1 + brightWhite: 7.9 diff --git a/themes/ohled-themes-142-in-1--ohled-darkcyan.yaml b/themes/ohled-themes-142-in-1--ohled-darkcyan.yaml new file mode 100644 index 00000000..9c69d1a5 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkcyan.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkCyan)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#008B8B" + black: "#008B8B" + red: "#006666" + green: "#006F6F" + yellow: "#005353" + blue: "#008282" + magenta: "#007878" + cyan: "#005D5D" + white: "#004A4A" + brightBlack: "#008B8B" + brightRed: "#006666" + brightGreen: "#006F6F" + brightYellow: "#005353" + brightBlue: "#008282" + brightMagenta: "#007878" + brightCyan: "#005D5D" + brightWhite: "#004A4A" +meta: + mode: "dark" + accent: "cyan" + hue: null + pair: null + contrast: + fg: 33.7 + black: 33.7 + red: 19 + green: 22.4 + yellow: 12.4 + blue: 30 + magenta: 25.9 + cyan: 15.8 + white: 9.5 + brightBlack: 33.7 + brightRed: 19 + brightGreen: 22.4 + brightYellow: 12.4 + brightBlue: 30 + brightMagenta: 25.9 + brightCyan: 15.8 + brightWhite: 9.5 diff --git a/themes/ohled-themes-142-in-1--ohled-darkgoldenrod.yaml b/themes/ohled-themes-142-in-1--ohled-darkgoldenrod.yaml new file mode 100644 index 00000000..aa615ef4 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkgoldenrod.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkGoldenRod)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#B8860B" + black: "#B8860B" + red: "#876208" + green: "#936B09" + yellow: "#6E5007" + blue: "#AC7D0A" + magenta: "#9F740A" + cyan: "#7B5907" + white: "#624706" + brightBlack: "#B8860B" + brightRed: "#876208" + brightGreen: "#936B09" + brightYellow: "#6E5007" + brightBlue: "#AC7D0A" + brightMagenta: "#9F740A" + brightCyan: "#7B5907" + brightWhite: "#624706" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 42.1 + black: 42.1 + red: 24.2 + green: 28.4 + yellow: 16.3 + blue: 37.4 + magenta: 32.8 + cyan: 20.2 + white: 12.7 + brightBlack: 42.1 + brightRed: 24.2 + brightGreen: 28.4 + brightYellow: 16.3 + brightBlue: 37.4 + brightMagenta: 32.8 + brightCyan: 20.2 + brightWhite: 12.7 diff --git a/themes/ohled-themes-142-in-1--ohled-darkgray.yaml b/themes/ohled-themes-142-in-1--ohled-darkgray.yaml new file mode 100644 index 00000000..b202e895 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkgray.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkGray)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#A9A9A9" + black: "#A9A9A9" + red: "#7C7C7C" + green: "#878787" + yellow: "#656565" + blue: "#9E9E9E" + magenta: "#929292" + cyan: "#717171" + white: "#5A5A5A" + brightBlack: "#A9A9A9" + brightRed: "#7C7C7C" + brightGreen: "#878787" + brightYellow: "#656565" + brightBlue: "#9E9E9E" + brightMagenta: "#929292" + brightCyan: "#717171" + brightWhite: "#5A5A5A" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 55.7 + black: 55.7 + red: 32.9 + green: 38.1 + yellow: 22.6 + blue: 49.8 + magenta: 43.6 + cyan: 27.8 + white: 18.1 + brightBlack: 55.7 + brightRed: 32.9 + brightGreen: 38.1 + brightYellow: 22.6 + brightBlue: 49.8 + brightMagenta: 43.6 + brightCyan: 27.8 + brightWhite: 18.1 diff --git a/themes/ohled-themes-142-in-1--ohled-darkgreen.yaml b/themes/ohled-themes-142-in-1--ohled-darkgreen.yaml new file mode 100644 index 00000000..af284206 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkgreen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkGreen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#527F52" + black: "#527F52" + red: "#3C5D3C" + green: "#426642" + yellow: "#314C31" + blue: "#4D774D" + magenta: "#476E47" + cyan: "#375537" + white: "#2C442C" + brightBlack: "#527F52" + brightRed: "#3C5D3C" + brightGreen: "#426642" + brightYellow: "#314C31" + brightBlue: "#4D774D" + brightMagenta: "#476E47" + brightCyan: "#375537" + brightWhite: "#2C442C" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 29.5 + black: 29.5 + red: 16.3 + green: 19.6 + yellow: 10.5 + blue: 26.2 + magenta: 22.6 + cyan: 13.5 + white: 7.9 + brightBlack: 29.5 + brightRed: 16.3 + brightGreen: 19.6 + brightYellow: 10.5 + brightBlue: 26.2 + brightMagenta: 22.6 + brightCyan: 13.5 + brightWhite: 7.9 diff --git a/themes/ohled-themes-142-in-1--ohled-darkkhaki.yaml b/themes/ohled-themes-142-in-1--ohled-darkkhaki.yaml new file mode 100644 index 00000000..0b7e4e09 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkkhaki.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkKhaki)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#BDB76B" + black: "#BDB76B" + red: "#8B864E" + green: "#979256" + yellow: "#716E40" + blue: "#B0AB64" + magenta: "#A49F5D" + cyan: "#7E7A47" + white: "#656239" + brightBlack: "#BDB76B" + brightRed: "#8B864E" + brightGreen: "#979256" + brightYellow: "#716E40" + brightBlue: "#B0AB64" + brightMagenta: "#A49F5D" + brightCyan: "#7E7A47" + brightWhite: "#656239" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 61.9 + black: 61.9 + red: 36.7 + green: 42.5 + yellow: 25.7 + blue: 55.3 + magenta: 49.1 + cyan: 31.1 + white: 20.7 + brightBlack: 61.9 + brightRed: 36.7 + brightGreen: 42.5 + brightYellow: 25.7 + brightBlue: 55.3 + brightMagenta: 49.1 + brightCyan: 31.1 + brightWhite: 20.7 diff --git a/themes/ohled-themes-142-in-1--ohled-darkmagenta.yaml b/themes/ohled-themes-142-in-1--ohled-darkmagenta.yaml new file mode 100644 index 00000000..1df9ab7e --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkmagenta.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkMagenta)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#A25AA2" + black: "#A25AA2" + red: "#774277" + green: "#824882" + yellow: "#613661" + blue: "#975497" + magenta: "#8C4E8C" + cyan: "#6C3C6C" + white: "#563056" + brightBlack: "#A25AA2" + brightRed: "#774277" + brightGreen: "#824882" + brightYellow: "#613661" + brightBlue: "#975497" + brightMagenta: "#8C4E8C" + brightCyan: "#6C3C6C" + brightWhite: "#563056" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 29.7 + black: 29.7 + red: 16.5 + green: 19.7 + yellow: 10.6 + blue: 26.2 + magenta: 22.8 + cyan: 13.5 + white: 7.9 + brightBlack: 29.7 + brightRed: 16.5 + brightGreen: 19.7 + brightYellow: 10.6 + brightBlue: 26.2 + brightMagenta: 22.8 + brightCyan: 13.5 + brightWhite: 7.9 diff --git a/themes/ohled-themes-142-in-1--ohled-darkolivegreen.yaml b/themes/ohled-themes-142-in-1--ohled-darkolivegreen.yaml new file mode 100644 index 00000000..180dd99b --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkolivegreen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkOliveGreen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#697B4F" + black: "#697B4F" + red: "#4D5A3A" + green: "#54623F" + yellow: "#3F4A2F" + blue: "#62734A" + magenta: "#5B6B44" + cyan: "#465235" + white: "#38422A" + brightBlack: "#697B4F" + brightRed: "#4D5A3A" + brightGreen: "#54623F" + brightYellow: "#3F4A2F" + brightBlue: "#62734A" + brightMagenta: "#5B6B44" + brightCyan: "#465235" + brightWhite: "#38422A" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 29.6 + black: 29.6 + red: 16.3 + green: 19.4 + yellow: 10.6 + blue: 26.2 + magenta: 22.9 + cyan: 13.4 + white: 8 + brightBlack: 29.6 + brightRed: 16.3 + brightGreen: 19.4 + brightYellow: 10.6 + brightBlue: 26.2 + brightMagenta: 22.9 + brightCyan: 13.4 + brightWhite: 8 diff --git a/themes/ohled-themes-142-in-1--ohled-darkorange.yaml b/themes/ohled-themes-142-in-1--ohled-darkorange.yaml new file mode 100644 index 00000000..64209214 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkorange.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkOrange)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FF8C00" + black: "#FF8C00" + red: "#BB6700" + green: "#CC7000" + yellow: "#995400" + blue: "#EE8300" + magenta: "#DD7900" + cyan: "#AA5D00" + white: "#884B00" + brightBlack: "#FF8C00" + brightRed: "#BB6700" + brightGreen: "#CC7000" + brightYellow: "#995400" + brightBlue: "#EE8300" + brightMagenta: "#DD7900" + brightCyan: "#AA5D00" + brightWhite: "#884B00" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 56.7 + black: 56.7 + red: 33.6 + green: 38.9 + yellow: 23.3 + blue: 50.7 + magenta: 44.5 + cyan: 28.2 + white: 18.6 + brightBlack: 56.7 + brightRed: 33.6 + brightGreen: 38.9 + brightYellow: 23.3 + brightBlue: 50.7 + brightMagenta: 44.5 + brightCyan: 28.2 + brightWhite: 18.6 diff --git a/themes/ohled-themes-142-in-1--ohled-darkorchid.yaml b/themes/ohled-themes-142-in-1--ohled-darkorchid.yaml new file mode 100644 index 00000000..b3290514 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkorchid.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkOrchid)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#A24DD2" + black: "#A24DD2" + red: "#77389A" + green: "#823EA8" + yellow: "#612E7E" + blue: "#9748C4" + magenta: "#8C43B6" + cyan: "#6C338C" + white: "#562970" + brightBlack: "#A24DD2" + brightRed: "#77389A" + brightGreen: "#823EA8" + brightYellow: "#612E7E" + brightBlue: "#9748C4" + brightMagenta: "#8C43B6" + brightCyan: "#6C338C" + brightWhite: "#562970" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 30.1 + black: 30.1 + red: 16.7 + green: 20 + yellow: 10.8 + blue: 26.6 + magenta: 23.1 + cyan: 13.6 + white: 8 + brightBlack: 30.1 + brightRed: 16.7 + brightGreen: 20 + brightYellow: 10.8 + brightBlue: 26.6 + brightMagenta: 23.1 + brightCyan: 13.6 + brightWhite: 8 diff --git a/themes/ohled-themes-142-in-1--ohled-darkred.yaml b/themes/ohled-themes-142-in-1--ohled-darkred.yaml new file mode 100644 index 00000000..3559e692 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkred.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkRed)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#A66262" + black: "#A66262" + red: "#7A4848" + green: "#854E4E" + yellow: "#643B3B" + blue: "#9B5B5B" + magenta: "#905555" + cyan: "#6F4141" + white: "#593434" + brightBlack: "#A66262" + brightRed: "#7A4848" + brightGreen: "#854E4E" + brightYellow: "#643B3B" + brightBlue: "#9B5B5B" + brightMagenta: "#905555" + brightCyan: "#6F4141" + brightWhite: "#593434" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 29.8 + black: 29.8 + red: 16.6 + green: 19.6 + yellow: 10.8 + blue: 26.2 + magenta: 23 + cyan: 13.5 + white: 8 + brightBlack: 29.8 + brightRed: 16.6 + brightGreen: 19.6 + brightYellow: 10.8 + brightBlue: 26.2 + brightMagenta: 23 + brightCyan: 13.5 + brightWhite: 8 diff --git a/themes/ohled-themes-142-in-1--ohled-darksalmon.yaml b/themes/ohled-themes-142-in-1--ohled-darksalmon.yaml new file mode 100644 index 00000000..bfd97f74 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darksalmon.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkSalmon)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#E9967A" + black: "#E9967A" + red: "#AB6E59" + green: "#BA7862" + yellow: "#8C5A49" + blue: "#D98C72" + magenta: "#CA826A" + cyan: "#9B6451" + white: "#7C5041" + brightBlack: "#E9967A" + brightRed: "#AB6E59" + brightGreen: "#BA7862" + brightYellow: "#8C5A49" + brightBlue: "#D98C72" + brightMagenta: "#CA826A" + brightCyan: "#9B6451" + brightWhite: "#7C5041" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 56.8 + black: 56.8 + red: 33.6 + green: 39 + yellow: 23.3 + blue: 50.6 + magenta: 44.8 + cyan: 28.3 + white: 18.6 + brightBlack: 56.8 + brightRed: 33.6 + brightGreen: 39 + brightYellow: 23.3 + brightBlue: 50.6 + brightMagenta: 44.8 + brightCyan: 28.3 + brightWhite: 18.6 diff --git a/themes/ohled-themes-142-in-1--ohled-darkseagreen.yaml b/themes/ohled-themes-142-in-1--ohled-darkseagreen.yaml new file mode 100644 index 00000000..e1e9fcf9 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkseagreen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkSeaGreen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#8FBC8F" + black: "#8FBC8F" + red: "#698A69" + green: "#729672" + yellow: "#567156" + blue: "#85AF85" + magenta: "#7CA37C" + cyan: "#5F7D5F" + white: "#4C644C" + brightBlack: "#8FBC8F" + brightRed: "#698A69" + brightGreen: "#729672" + brightYellow: "#567156" + brightBlue: "#85AF85" + brightMagenta: "#7CA37C" + brightCyan: "#5F7D5F" + brightWhite: "#4C644C" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 60 + black: 60 + red: 35.6 + green: 41.1 + yellow: 24.9 + blue: 53.3 + magenta: 47.3 + cyan: 29.9 + white: 19.7 + brightBlack: 60 + brightRed: 35.6 + brightGreen: 41.1 + brightYellow: 24.9 + brightBlue: 53.3 + brightMagenta: 47.3 + brightCyan: 29.9 + brightWhite: 19.7 diff --git a/themes/ohled-themes-142-in-1--ohled-darkslateblue.yaml b/themes/ohled-themes-142-in-1--ohled-darkslateblue.yaml new file mode 100644 index 00000000..54f7848c --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkslateblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkSlateBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#746EA3" + black: "#746EA3" + red: "#555178" + green: "#5D5882" + yellow: "#464262" + blue: "#6C6798" + magenta: "#655F8D" + cyan: "#4D496D" + white: "#3E3B57" + brightBlack: "#746EA3" + brightRed: "#555178" + brightGreen: "#5D5882" + brightYellow: "#464262" + brightBlue: "#6C6798" + brightMagenta: "#655F8D" + brightCyan: "#4D496D" + brightWhite: "#3E3B57" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 29.3 + black: 29.3 + red: 16.3 + green: 19.3 + yellow: 10.5 + blue: 25.9 + magenta: 22.5 + cyan: 13.2 + white: 7.9 + brightBlack: 29.3 + brightRed: 16.3 + brightGreen: 19.3 + brightYellow: 10.5 + brightBlue: 25.9 + brightMagenta: 22.5 + brightCyan: 13.2 + brightWhite: 7.9 diff --git a/themes/ohled-themes-142-in-1--ohled-darkslategray.yaml b/themes/ohled-themes-142-in-1--ohled-darkslategray.yaml new file mode 100644 index 00000000..54cfff30 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkslategray.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkSlateGray)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#677878" + black: "#677878" + red: "#4C5858" + green: "#526060" + yellow: "#3E4848" + blue: "#607070" + magenta: "#596868" + cyan: "#455050" + white: "#374040" + brightBlack: "#677878" + brightRed: "#4C5858" + brightGreen: "#526060" + brightYellow: "#3E4848" + brightBlue: "#607070" + brightMagenta: "#596868" + brightCyan: "#455050" + brightWhite: "#374040" +meta: + mode: "dark" + accent: "cyan" + hue: null + pair: null + contrast: + fg: 29.5 + black: 29.5 + red: 16.4 + green: 19.4 + yellow: 10.6 + blue: 26 + magenta: 22.6 + cyan: 13.4 + white: 7.9 + brightBlack: 29.5 + brightRed: 16.4 + brightGreen: 19.4 + brightYellow: 10.6 + brightBlue: 26 + brightMagenta: 22.6 + brightCyan: 13.4 + brightWhite: 7.9 diff --git a/themes/ohled-themes-142-in-1--ohled-darkturquoise.yaml b/themes/ohled-themes-142-in-1--ohled-darkturquoise.yaml new file mode 100644 index 00000000..a9e79648 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkturquoise.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkTurquoise)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#00CED1" + black: "#00CED1" + red: "#009799" + green: "#00A5A7" + yellow: "#007C7D" + blue: "#00C0C3" + magenta: "#00B3B5" + cyan: "#00898B" + white: "#006E6F" + brightBlack: "#00CED1" + brightRed: "#009799" + brightGreen: "#00A5A7" + brightYellow: "#007C7D" + brightBlue: "#00C0C3" + brightMagenta: "#00B3B5" + brightCyan: "#00898B" + brightWhite: "#006E6F" +meta: + mode: "dark" + accent: "cyan" + hue: null + pair: null + contrast: + fg: 65.6 + black: 65.6 + red: 39 + green: 45.4 + yellow: 27.5 + blue: 58.5 + magenta: 52 + cyan: 33 + white: 22.1 + brightBlack: 65.6 + brightRed: 39 + brightGreen: 45.4 + brightYellow: 27.5 + brightBlue: 58.5 + brightMagenta: 52 + brightCyan: 33 + brightWhite: 22.1 diff --git a/themes/ohled-themes-142-in-1--ohled-darkviolet.yaml b/themes/ohled-themes-142-in-1--ohled-darkviolet.yaml new file mode 100644 index 00000000..e253db1f --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-darkviolet.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DarkViolet)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#A249DC" + black: "#A249DC" + red: "#7736A1" + green: "#823AB0" + yellow: "#612C84" + blue: "#9744CD" + magenta: "#8C3FBF" + cyan: "#6C3193" + white: "#562775" + brightBlack: "#A249DC" + brightRed: "#7736A1" + brightGreen: "#823AB0" + brightYellow: "#612C84" + brightBlue: "#9744CD" + brightMagenta: "#8C3FBF" + brightCyan: "#6C3193" + brightWhite: "#562775" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 30.2 + black: 30.2 + red: 16.8 + green: 19.9 + yellow: 10.9 + blue: 26.5 + magenta: 23.1 + cyan: 13.8 + white: 8.1 + brightBlack: 30.2 + brightRed: 16.8 + brightGreen: 19.9 + brightYellow: 10.9 + brightBlue: 26.5 + brightMagenta: 23.1 + brightCyan: 13.8 + brightWhite: 8.1 diff --git a/themes/ohled-themes-142-in-1--ohled-deeppink.yaml b/themes/ohled-themes-142-in-1--ohled-deeppink.yaml new file mode 100644 index 00000000..b566dbbb --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-deeppink.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DeepPink)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FF1493" + black: "#FF1493" + red: "#BB0F6C" + green: "#CC1076" + yellow: "#990C58" + blue: "#EE1389" + magenta: "#DD117F" + cyan: "#AA0D62" + white: "#880B4E" + brightBlack: "#FF1493" + brightRed: "#BB0F6C" + brightGreen: "#CC1076" + brightYellow: "#990C58" + brightBlue: "#EE1389" + brightMagenta: "#DD117F" + brightCyan: "#AA0D62" + brightWhite: "#880B4E" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 40.1 + black: 40.1 + red: 23.1 + green: 27.1 + yellow: 15.5 + blue: 35.6 + magenta: 31.3 + cyan: 19.2 + white: 12 + brightBlack: 40.1 + brightRed: 23.1 + brightGreen: 27.1 + brightYellow: 15.5 + brightBlue: 35.6 + brightMagenta: 31.3 + brightCyan: 19.2 + brightWhite: 12 diff --git a/themes/ohled-themes-142-in-1--ohled-deepskyblue.yaml b/themes/ohled-themes-142-in-1--ohled-deepskyblue.yaml new file mode 100644 index 00000000..daa0775a --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-deepskyblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DeepSkyBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#00BFFF" + black: "#00BFFF" + red: "#008CBB" + green: "#0099CC" + yellow: "#007399" + blue: "#00B2EE" + magenta: "#00A6DD" + cyan: "#007FAA" + white: "#006688" + brightBlack: "#00BFFF" + brightRed: "#008CBB" + brightGreen: "#0099CC" + brightYellow: "#007399" + brightBlue: "#00B2EE" + brightMagenta: "#00A6DD" + brightCyan: "#007FAA" + brightWhite: "#006688" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 61.4 + black: 61.4 + red: 36.4 + green: 42.4 + yellow: 25.6 + blue: 54.7 + magenta: 48.6 + cyan: 30.7 + white: 20.4 + brightBlack: 61.4 + brightRed: 36.4 + brightGreen: 42.4 + brightYellow: 25.6 + brightBlue: 54.7 + brightMagenta: 48.6 + brightCyan: 30.7 + brightWhite: 20.4 diff --git a/themes/ohled-themes-142-in-1--ohled-dimgray.yaml b/themes/ohled-themes-142-in-1--ohled-dimgray.yaml new file mode 100644 index 00000000..9aca7d45 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-dimgray.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DimGray)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#747474" + black: "#747474" + red: "#555555" + green: "#5D5D5D" + yellow: "#464646" + blue: "#6C6C6C" + magenta: "#656565" + cyan: "#4D4D4D" + white: "#3E3E3E" + brightBlack: "#747474" + brightRed: "#555555" + brightGreen: "#5D5D5D" + brightYellow: "#464646" + brightBlue: "#6C6C6C" + brightMagenta: "#656565" + brightCyan: "#4D4D4D" + brightWhite: "#3E3E3E" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 29.2 + black: 29.2 + red: 16.1 + green: 19.3 + yellow: 10.5 + blue: 25.6 + magenta: 22.6 + cyan: 13.1 + white: 7.8 + brightBlack: 29.2 + brightRed: 16.1 + brightGreen: 19.3 + brightYellow: 10.5 + brightBlue: 25.6 + brightMagenta: 22.6 + brightCyan: 13.1 + brightWhite: 7.8 diff --git a/themes/ohled-themes-142-in-1--ohled-dodgerblue.yaml b/themes/ohled-themes-142-in-1--ohled-dodgerblue.yaml new file mode 100644 index 00000000..5f416ed8 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-dodgerblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_DodgerBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#1E90FF" + black: "#1E90FF" + red: "#166ABB" + green: "#1873CC" + yellow: "#125699" + blue: "#1C86EE" + magenta: "#1A7DDD" + cyan: "#1460AA" + white: "#104D88" + brightBlack: "#1E90FF" + brightRed: "#166ABB" + brightGreen: "#1873CC" + brightYellow: "#125699" + brightBlue: "#1C86EE" + brightMagenta: "#1A7DDD" + brightCyan: "#1460AA" + brightWhite: "#104D88" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 42.7 + black: 42.7 + red: 24.8 + green: 28.9 + yellow: 16.6 + blue: 37.8 + magenta: 33.4 + cyan: 20.6 + white: 13.1 + brightBlack: 42.7 + brightRed: 24.8 + brightGreen: 28.9 + brightYellow: 16.6 + brightBlue: 37.8 + brightMagenta: 33.4 + brightCyan: 20.6 + brightWhite: 13.1 diff --git a/themes/ohled-themes-142-in-1--ohled-firebrick.yaml b/themes/ohled-themes-142-in-1--ohled-firebrick.yaml new file mode 100644 index 00000000..8c329e91 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-firebrick.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_FireBrick)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#BE5252" + black: "#BE5252" + red: "#8B3C3C" + green: "#984242" + yellow: "#723131" + blue: "#B14D4D" + magenta: "#A54747" + cyan: "#7F3737" + white: "#652C2C" + brightBlack: "#BE5252" + brightRed: "#8B3C3C" + brightGreen: "#984242" + brightYellow: "#723131" + brightBlue: "#B14D4D" + brightMagenta: "#A54747" + brightCyan: "#7F3737" + brightWhite: "#652C2C" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 30 + black: 30 + red: 16.6 + green: 19.9 + yellow: 10.7 + blue: 26.5 + magenta: 23.1 + cyan: 13.8 + white: 8.1 + brightBlack: 30 + brightRed: 16.6 + brightGreen: 19.9 + brightYellow: 10.7 + brightBlue: 26.5 + brightMagenta: 23.1 + brightCyan: 13.8 + brightWhite: 8.1 diff --git a/themes/ohled-themes-142-in-1--ohled-forestgreen.yaml b/themes/ohled-themes-142-in-1--ohled-forestgreen.yaml new file mode 100644 index 00000000..4a1f9a54 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-forestgreen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_ForestGreen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#228B22" + black: "#228B22" + red: "#196619" + green: "#1B6F1B" + yellow: "#145314" + blue: "#208220" + magenta: "#1D781D" + cyan: "#175D17" + white: "#124A12" + brightBlack: "#228B22" + brightRed: "#196619" + brightGreen: "#1B6F1B" + brightYellow: "#145314" + brightBlue: "#208220" + brightMagenta: "#1D781D" + brightCyan: "#175D17" + brightWhite: "#124A12" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 31.7 + black: 31.7 + red: 17.8 + green: 21 + yellow: 11.5 + blue: 28.2 + magenta: 24.3 + cyan: 14.7 + white: 8.7 + brightBlack: 31.7 + brightRed: 17.8 + brightGreen: 21 + brightYellow: 11.5 + brightBlue: 28.2 + brightMagenta: 24.3 + brightCyan: 14.7 + brightWhite: 8.7 diff --git a/themes/ohled-themes-142-in-1--ohled-fuchsia.yaml b/themes/ohled-themes-142-in-1--ohled-fuchsia.yaml new file mode 100644 index 00000000..baba6531 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-fuchsia.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Fuchsia)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FF00FF" + black: "#FF00FF" + red: "#BB00BB" + green: "#CC00CC" + yellow: "#990099" + blue: "#EE00EE" + magenta: "#DD00DD" + cyan: "#AA00AA" + white: "#880088" + brightBlack: "#FF00FF" + brightRed: "#BB00BB" + brightGreen: "#CC00CC" + brightYellow: "#990099" + brightBlue: "#EE00EE" + brightMagenta: "#DD00DD" + brightCyan: "#AA00AA" + brightWhite: "#880088" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 46.2 + black: 46.2 + red: 26.9 + green: 31.4 + yellow: 18.4 + blue: 41.1 + magenta: 36.2 + cyan: 22.5 + white: 14.4 + brightBlack: 46.2 + brightRed: 26.9 + brightGreen: 31.4 + brightYellow: 18.4 + brightBlue: 41.1 + brightMagenta: 36.2 + brightCyan: 22.5 + brightWhite: 14.4 diff --git a/themes/ohled-themes-142-in-1--ohled-gainsboro.yaml b/themes/ohled-themes-142-in-1--ohled-gainsboro.yaml new file mode 100644 index 00000000..ab9a2779 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-gainsboro.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Gainsboro)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#DCDCDC" + black: "#DCDCDC" + red: "#A1A1A1" + green: "#B0B0B0" + yellow: "#848484" + blue: "#CDCDCD" + magenta: "#BFBFBF" + cyan: "#939393" + white: "#757575" + brightBlack: "#DCDCDC" + brightRed: "#A1A1A1" + brightGreen: "#B0B0B0" + brightYellow: "#848484" + brightBlue: "#CDCDCD" + brightMagenta: "#BFBFBF" + brightCyan: "#939393" + brightWhite: "#757575" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 85.4 + black: 85.4 + red: 51.4 + green: 59.5 + yellow: 36.7 + blue: 76.3 + magenta: 68 + cyan: 44.1 + white: 29.6 + brightBlack: 85.4 + brightRed: 51.4 + brightGreen: 59.5 + brightYellow: 36.7 + brightBlue: 76.3 + brightMagenta: 68 + brightCyan: 44.1 + brightWhite: 29.6 diff --git a/themes/ohled-themes-142-in-1--ohled-ghostwhite.yaml b/themes/ohled-themes-142-in-1--ohled-ghostwhite.yaml new file mode 100644 index 00000000..4ee255d8 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-ghostwhite.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_GhostWhite)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#F8F8FF" + black: "#F8F8FF" + red: "#B6B6BB" + green: "#C6C6CC" + yellow: "#959599" + blue: "#E7E7EE" + magenta: "#D7D7DD" + cyan: "#A5A5AA" + white: "#848488" + brightBlack: "#F8F8FF" + brightRed: "#B6B6BB" + brightGreen: "#C6C6CC" + brightYellow: "#959599" + brightBlue: "#E7E7EE" + brightMagenta: "#D7D7DD" + brightCyan: "#A5A5AA" + brightWhite: "#848488" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 103.6 + black: 103.6 + red: 63.1 + green: 72.4 + yellow: 45.3 + blue: 92.6 + magenta: 82.6 + cyan: 53.7 + white: 36.8 + brightBlack: 103.6 + brightRed: 63.1 + brightGreen: 72.4 + brightYellow: 45.3 + brightBlue: 92.6 + brightMagenta: 82.6 + brightCyan: 53.7 + brightWhite: 36.8 diff --git a/themes/ohled-themes-142-in-1--ohled-gold.yaml b/themes/ohled-themes-142-in-1--ohled-gold.yaml new file mode 100644 index 00000000..12d49114 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-gold.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Gold)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFD700" + black: "#FFD700" + red: "#BB9E00" + green: "#CCAC00" + yellow: "#998100" + blue: "#EEC900" + magenta: "#DDBA00" + cyan: "#AA8F00" + white: "#887300" + brightBlack: "#FFD700" + brightRed: "#BB9E00" + brightGreen: "#CCAC00" + brightYellow: "#998100" + brightBlue: "#EEC900" + brightMagenta: "#DDBA00" + brightCyan: "#AA8F00" + brightWhite: "#887300" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 84.3 + black: 84.3 + red: 51 + green: 58.7 + yellow: 36.1 + blue: 75.6 + magenta: 66.8 + cyan: 43.2 + white: 29.5 + brightBlack: 84.3 + brightRed: 51 + brightGreen: 58.7 + brightYellow: 36.1 + brightBlue: 75.6 + brightMagenta: 66.8 + brightCyan: 43.2 + brightWhite: 29.5 diff --git a/themes/ohled-themes-142-in-1--ohled-goldenrod.yaml b/themes/ohled-themes-142-in-1--ohled-goldenrod.yaml new file mode 100644 index 00000000..48f8da55 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-goldenrod.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_GoldenRod)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#DAA520" + black: "#DAA520" + red: "#A07917" + green: "#AE841A" + yellow: "#836313" + blue: "#CB9A1E" + magenta: "#BD8F1C" + cyan: "#916E15" + white: "#745811" + brightBlack: "#DAA520" + brightRed: "#A07917" + brightGreen: "#AE841A" + brightYellow: "#836313" + brightBlue: "#CB9A1E" + brightMagenta: "#BD8F1C" + brightCyan: "#916E15" + brightWhite: "#745811" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 58.3 + black: 58.3 + red: 34.5 + green: 40 + yellow: 24 + blue: 51.9 + magenta: 45.9 + cyan: 29.1 + white: 19.1 + brightBlack: 58.3 + brightRed: 34.5 + brightGreen: 40 + brightYellow: 24 + brightBlue: 51.9 + brightMagenta: 45.9 + brightCyan: 29.1 + brightWhite: 19.1 diff --git a/themes/ohled-themes-142-in-1--ohled-gray.yaml b/themes/ohled-themes-142-in-1--ohled-gray.yaml new file mode 100644 index 00000000..ff5556cd --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-gray.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Gray)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#808080" + black: "#808080" + red: "#5E5E5E" + green: "#666666" + yellow: "#4D4D4D" + blue: "#777777" + magenta: "#6F6F6F" + cyan: "#555555" + white: "#444444" + brightBlack: "#808080" + brightRed: "#5E5E5E" + brightGreen: "#666666" + brightYellow: "#4D4D4D" + brightBlue: "#777777" + brightMagenta: "#6F6F6F" + brightCyan: "#555555" + brightWhite: "#444444" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 34.8 + black: 34.8 + red: 19.7 + green: 23 + yellow: 13.1 + blue: 30.6 + magenta: 27 + cyan: 16.1 + white: 9.8 + brightBlack: 34.8 + brightRed: 19.7 + brightGreen: 23 + brightYellow: 13.1 + brightBlue: 30.6 + brightMagenta: 27 + brightCyan: 16.1 + brightWhite: 9.8 diff --git a/themes/ohled-themes-142-in-1--ohled-green.yaml b/themes/ohled-themes-142-in-1--ohled-green.yaml new file mode 100644 index 00000000..410fb442 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-green.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Green)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#288628" + black: "#288628" + red: "#1D621D" + green: "#206B20" + yellow: "#185018" + blue: "#257D25" + magenta: "#237423" + cyan: "#1B591B" + white: "#154715" + brightBlack: "#288628" + brightRed: "#1D621D" + brightGreen: "#206B20" + brightYellow: "#185018" + brightBlue: "#257D25" + brightMagenta: "#237423" + brightCyan: "#1B591B" + brightWhite: "#154715" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 29.9 + black: 29.9 + red: 16.5 + green: 19.7 + yellow: 10.6 + blue: 26.4 + magenta: 23 + cyan: 13.5 + white: 7.9 + brightBlack: 29.9 + brightRed: 16.5 + brightGreen: 19.7 + brightYellow: 10.6 + brightBlue: 26.4 + brightMagenta: 23 + brightCyan: 13.5 + brightWhite: 7.9 diff --git a/themes/ohled-themes-142-in-1--ohled-greenyellow.yaml b/themes/ohled-themes-142-in-1--ohled-greenyellow.yaml new file mode 100644 index 00000000..52ea3fb7 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-greenyellow.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_GreenYellow)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#ADFF2F" + black: "#ADFF2F" + red: "#7FBB22" + green: "#8ACC26" + yellow: "#68991C" + blue: "#A1EE2C" + magenta: "#96DD29" + cyan: "#73AA1F" + white: "#5C8819" + brightBlack: "#ADFF2F" + brightRed: "#7FBB22" + brightGreen: "#8ACC26" + brightYellow: "#68991C" + brightBlue: "#A1EE2C" + brightMagenta: "#96DD29" + brightCyan: "#73AA1F" + brightWhite: "#5C8819" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 93.2 + black: 93.2 + red: 56.5 + green: 65.1 + yellow: 40.3 + blue: 83.4 + magenta: 74.1 + cyan: 48.2 + white: 32.8 + brightBlack: 93.2 + brightRed: 56.5 + brightGreen: 65.1 + brightYellow: 40.3 + brightBlue: 83.4 + brightMagenta: 74.1 + brightCyan: 48.2 + brightWhite: 32.8 diff --git a/themes/ohled-themes-142-in-1--ohled-honeydew.yaml b/themes/ohled-themes-142-in-1--ohled-honeydew.yaml new file mode 100644 index 00000000..e7ec6d96 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-honeydew.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_HoneyDew)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#F0FFF0" + black: "#F0FFF0" + red: "#B0BBB0" + green: "#C0CCC0" + yellow: "#909990" + blue: "#E0EEE0" + magenta: "#D0DDD0" + cyan: "#A0AAA0" + white: "#808880" + brightBlack: "#F0FFF0" + brightRed: "#B0BBB0" + brightGreen: "#C0CCC0" + brightYellow: "#909990" + brightBlue: "#E0EEE0" + brightMagenta: "#D0DDD0" + brightCyan: "#A0AAA0" + brightWhite: "#808880" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 105.1 + black: 105.1 + red: 64 + green: 73.7 + yellow: 45.9 + blue: 94.3 + magenta: 83.8 + cyan: 54.7 + white: 37.5 + brightBlack: 105.1 + brightRed: 64 + brightGreen: 73.7 + brightYellow: 45.9 + brightBlue: 94.3 + brightMagenta: 83.8 + brightCyan: 54.7 + brightWhite: 37.5 diff --git a/themes/ohled-themes-142-in-1--ohled-hotpink.yaml b/themes/ohled-themes-142-in-1--ohled-hotpink.yaml new file mode 100644 index 00000000..240889ec --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-hotpink.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_HotPink)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FF69B4" + black: "#FF69B4" + red: "#BB4D84" + green: "#CC5490" + yellow: "#993F6C" + blue: "#EE62A8" + magenta: "#DD5B9C" + cyan: "#AA4678" + white: "#883860" + brightBlack: "#FF69B4" + brightRed: "#BB4D84" + brightGreen: "#CC5490" + brightYellow: "#993F6C" + brightBlue: "#EE62A8" + brightMagenta: "#DD5B9C" + brightCyan: "#AA4678" + brightWhite: "#883860" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 51.1 + black: 51.1 + red: 30 + green: 34.9 + yellow: 20.6 + blue: 45.5 + magenta: 40.1 + cyan: 25.2 + white: 16.3 + brightBlack: 51.1 + brightRed: 30 + brightGreen: 34.9 + brightYellow: 20.6 + brightBlue: 45.5 + brightMagenta: 40.1 + brightCyan: 25.2 + brightWhite: 16.3 diff --git a/themes/ohled-themes-142-in-1--ohled-indianred.yaml b/themes/ohled-themes-142-in-1--ohled-indianred.yaml new file mode 100644 index 00000000..7e595869 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-indianred.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_IndianRed)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#CD5C5C" + black: "#CD5C5C" + red: "#964343" + green: "#A44A4A" + yellow: "#7B3737" + blue: "#BF5656" + magenta: "#B25050" + cyan: "#893D3D" + white: "#6D3131" + brightBlack: "#CD5C5C" + brightRed: "#964343" + brightGreen: "#A44A4A" + brightYellow: "#7B3737" + brightBlue: "#BF5656" + brightMagenta: "#B25050" + brightCyan: "#893D3D" + brightWhite: "#6D3131" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 35.1 + black: 35.1 + red: 19.7 + green: 23.6 + yellow: 13.1 + blue: 31.1 + magenta: 27.3 + cyan: 16.4 + white: 10 + brightBlack: 35.1 + brightRed: 19.7 + brightGreen: 23.6 + brightYellow: 13.1 + brightBlue: 31.1 + brightMagenta: 27.3 + brightCyan: 16.4 + brightWhite: 10 diff --git a/themes/ohled-themes-142-in-1--ohled-indigo.yaml b/themes/ohled-themes-142-in-1--ohled-indigo.yaml new file mode 100644 index 00000000..fe341f01 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-indigo.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Indigo)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#806AA3" + black: "#806AA3" + red: "#5E4E78" + green: "#665582" + yellow: "#4D4062" + blue: "#776398" + magenta: "#6F5C8D" + cyan: "#55476D" + white: "#443957" + brightBlack: "#806AA3" + brightRed: "#5E4E78" + brightGreen: "#665582" + brightYellow: "#4D4062" + brightBlue: "#776398" + brightMagenta: "#6F5C8D" + brightCyan: "#55476D" + brightWhite: "#443957" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 29.4 + black: 29.4 + red: 16.4 + green: 19.3 + yellow: 10.6 + blue: 25.9 + magenta: 22.6 + cyan: 13.4 + white: 7.9 + brightBlack: 29.4 + brightRed: 16.4 + brightGreen: 19.3 + brightYellow: 10.6 + brightBlue: 25.9 + brightMagenta: 22.6 + brightCyan: 13.4 + brightWhite: 7.9 diff --git a/themes/ohled-themes-142-in-1--ohled-ivory.yaml b/themes/ohled-themes-142-in-1--ohled-ivory.yaml new file mode 100644 index 00000000..724f8bab --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-ivory.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Ivory)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFFF0" + black: "#FFFFF0" + red: "#BBBBB0" + green: "#CCCCC0" + yellow: "#999990" + blue: "#EEEEE0" + magenta: "#DDDDD0" + cyan: "#AAAAA0" + white: "#888880" + brightBlack: "#FFFFF0" + brightRed: "#BBBBB0" + brightGreen: "#CCCCC0" + brightYellow: "#999990" + brightBlue: "#EEEEE0" + brightMagenta: "#DDDDD0" + brightCyan: "#AAAAA0" + brightWhite: "#888880" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 107.2 + black: 107.2 + red: 65.3 + green: 75.2 + yellow: 46.9 + blue: 96.1 + magenta: 85.5 + cyan: 55.9 + white: 38.4 + brightBlack: 107.2 + brightRed: 65.3 + brightGreen: 75.2 + brightYellow: 46.9 + brightBlue: 96.1 + brightMagenta: 85.5 + brightCyan: 55.9 + brightWhite: 38.4 diff --git a/themes/ohled-themes-142-in-1--ohled-khaki.yaml b/themes/ohled-themes-142-in-1--ohled-khaki.yaml new file mode 100644 index 00000000..01b14d14 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-khaki.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Khaki)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#F0E68C" + black: "#F0E68C" + red: "#B0A967" + green: "#C0B870" + yellow: "#908A54" + blue: "#E0D783" + magenta: "#D0C779" + cyan: "#A0995D" + white: "#807B4B" + brightBlack: "#F0E68C" + brightRed: "#B0A967" + brightGreen: "#C0B870" + brightYellow: "#908A54" + brightBlue: "#E0D783" + brightMagenta: "#D0C779" + brightCyan: "#A0995D" + brightWhite: "#807B4B" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 90 + black: 90 + red: 54.6 + green: 62.8 + yellow: 38.8 + blue: 80.8 + magenta: 71.4 + cyan: 46.3 + white: 31.7 + brightBlack: 90 + brightRed: 54.6 + brightGreen: 62.8 + brightYellow: 38.8 + brightBlue: 80.8 + brightMagenta: 71.4 + brightCyan: 46.3 + brightWhite: 31.7 diff --git a/themes/ohled-themes-142-in-1--ohled-lavender.yaml b/themes/ohled-themes-142-in-1--ohled-lavender.yaml new file mode 100644 index 00000000..80d58870 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lavender.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Lavender)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#E6E6FA" + black: "#E6E6FA" + red: "#A9A9B7" + green: "#B8B8C8" + yellow: "#8A8A96" + blue: "#D7D7E9" + magenta: "#C7C7D9" + cyan: "#9999A7" + white: "#7B7B85" + brightBlack: "#E6E6FA" + brightRed: "#A9A9B7" + brightGreen: "#B8B8C8" + brightYellow: "#8A8A96" + brightBlue: "#D7D7E9" + brightMagenta: "#C7C7D9" + brightCyan: "#9999A7" + brightWhite: "#7B7B85" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 92.6 + black: 92.6 + red: 56.3 + green: 64.7 + yellow: 40.1 + blue: 83.2 + magenta: 73.5 + cyan: 47.7 + white: 32.8 + brightBlack: 92.6 + brightRed: 56.3 + brightGreen: 64.7 + brightYellow: 40.1 + brightBlue: 83.2 + brightMagenta: 73.5 + brightCyan: 47.7 + brightWhite: 32.8 diff --git a/themes/ohled-themes-142-in-1--ohled-lavenderblush.yaml b/themes/ohled-themes-142-in-1--ohled-lavenderblush.yaml new file mode 100644 index 00000000..8e5eaecf --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lavenderblush.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LavenderBlush)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFF0F5" + black: "#FFF0F5" + red: "#BBB0B4" + green: "#CCC0C4" + yellow: "#999093" + blue: "#EEE0E5" + magenta: "#DDD0D4" + cyan: "#AAA0A3" + white: "#888083" + brightBlack: "#FFF0F5" + brightRed: "#BBB0B4" + brightGreen: "#CCC0C4" + brightYellow: "#999093" + brightBlue: "#EEE0E5" + brightMagenta: "#DDD0D4" + brightCyan: "#AAA0A3" + brightWhite: "#888083" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 100.4 + black: 100.4 + red: 61.1 + green: 70.3 + yellow: 43.7 + blue: 90 + magenta: 80 + cyan: 52.1 + white: 35.7 + brightBlack: 100.4 + brightRed: 61.1 + brightGreen: 70.3 + brightYellow: 43.7 + brightBlue: 90 + brightMagenta: 80 + brightCyan: 52.1 + brightWhite: 35.7 diff --git a/themes/ohled-themes-142-in-1--ohled-lawngreen.yaml b/themes/ohled-themes-142-in-1--ohled-lawngreen.yaml new file mode 100644 index 00000000..23abd947 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lawngreen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LawnGreen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#7CFC00" + black: "#7CFC00" + red: "#5BB900" + green: "#63CA00" + yellow: "#4A9700" + blue: "#74EB00" + magenta: "#6BDA00" + cyan: "#53A800" + white: "#428600" + brightBlack: "#7CFC00" + brightRed: "#5BB900" + brightGreen: "#63CA00" + brightYellow: "#4A9700" + brightBlue: "#74EB00" + brightMagenta: "#6BDA00" + brightCyan: "#53A800" + brightWhite: "#428600" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 87.9 + black: 87.9 + red: 53.2 + green: 61.5 + yellow: 37.7 + blue: 78.6 + magenta: 69.6 + cyan: 45.3 + white: 30.6 + brightBlack: 87.9 + brightRed: 53.2 + brightGreen: 61.5 + brightYellow: 37.7 + brightBlue: 78.6 + brightMagenta: 69.6 + brightCyan: 45.3 + brightWhite: 30.6 diff --git a/themes/ohled-themes-142-in-1--ohled-lemonchiffon.yaml b/themes/ohled-themes-142-in-1--ohled-lemonchiffon.yaml new file mode 100644 index 00000000..21cef459 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lemonchiffon.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LemonChiffon)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFACD" + black: "#FFFACD" + red: "#BBB796" + green: "#CCC8A4" + yellow: "#99967B" + blue: "#EEE9BF" + magenta: "#DDD9B2" + cyan: "#AAA789" + white: "#88856D" + brightBlack: "#FFFACD" + brightRed: "#BBB796" + brightGreen: "#CCC8A4" + brightYellow: "#99967B" + brightBlue: "#EEE9BF" + brightMagenta: "#DDD9B2" + brightCyan: "#AAA789" + brightWhite: "#88856D" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 103.4 + black: 103.4 + red: 62.8 + green: 72.5 + yellow: 45.1 + blue: 92.6 + magenta: 82.6 + cyan: 53.9 + white: 36.7 + brightBlack: 103.4 + brightRed: 62.8 + brightGreen: 72.5 + brightYellow: 45.1 + brightBlue: 92.6 + brightMagenta: 82.6 + brightCyan: 53.9 + brightWhite: 36.7 diff --git a/themes/ohled-themes-142-in-1--ohled-lightblue.yaml b/themes/ohled-themes-142-in-1--ohled-lightblue.yaml new file mode 100644 index 00000000..af7726cc --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lightblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LightBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#ADD8E6" + black: "#ADD8E6" + red: "#7F9EA9" + green: "#8AADB8" + yellow: "#68828A" + blue: "#A1CAD7" + magenta: "#96BBC7" + cyan: "#739099" + white: "#5C737B" + brightBlack: "#ADD8E6" + brightRed: "#7F9EA9" + brightGreen: "#8AADB8" + brightYellow: "#68828A" + brightBlue: "#A1CAD7" + brightMagenta: "#96BBC7" + brightCyan: "#739099" + brightWhite: "#5C737B" +meta: + mode: "dark" + accent: "blue" + hue: null + pair: null + contrast: + fg: 78.7 + black: 78.7 + red: 47.2 + green: 54.8 + yellow: 33.7 + blue: 70.5 + magenta: 62.3 + cyan: 40.2 + white: 27.1 + brightBlack: 78.7 + brightRed: 47.2 + brightGreen: 54.8 + brightYellow: 33.7 + brightBlue: 70.5 + brightMagenta: 62.3 + brightCyan: 40.2 + brightWhite: 27.1 diff --git a/themes/ohled-themes-142-in-1--ohled-lightcoral.yaml b/themes/ohled-themes-142-in-1--ohled-lightcoral.yaml new file mode 100644 index 00000000..e54a542c --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lightcoral.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LightCoral)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#F08080" + black: "#F08080" + red: "#B05E5E" + green: "#C06666" + yellow: "#904D4D" + blue: "#E07777" + magenta: "#D06F6F" + cyan: "#A05555" + white: "#804444" + brightBlack: "#F08080" + brightRed: "#B05E5E" + brightGreen: "#C06666" + brightYellow: "#904D4D" + brightBlue: "#E07777" + brightMagenta: "#D06F6F" + brightCyan: "#A05555" + brightWhite: "#804444" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 51.7 + black: 51.7 + red: 30.4 + green: 35.3 + yellow: 21 + blue: 45.9 + magenta: 40.6 + cyan: 25.4 + white: 16.5 + brightBlack: 51.7 + brightRed: 30.4 + brightGreen: 35.3 + brightYellow: 21 + brightBlue: 45.9 + brightMagenta: 40.6 + brightCyan: 25.4 + brightWhite: 16.5 diff --git a/themes/ohled-themes-142-in-1--ohled-lightcyan.yaml b/themes/ohled-themes-142-in-1--ohled-lightcyan.yaml new file mode 100644 index 00000000..6b86ccf1 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lightcyan.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LightCyan)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#E0FFFF" + black: "#E0FFFF" + red: "#A4BBBB" + green: "#B3CCCC" + yellow: "#869999" + blue: "#D1EEEE" + magenta: "#C2DDDD" + cyan: "#95AAAA" + white: "#778888" + brightBlack: "#E0FFFF" + brightRed: "#A4BBBB" + brightGreen: "#B3CCCC" + brightYellow: "#869999" + brightBlue: "#D1EEEE" + brightMagenta: "#C2DDDD" + brightCyan: "#95AAAA" + brightWhite: "#778888" +meta: + mode: "dark" + accent: "cyan" + hue: null + pair: null + contrast: + fg: 103.8 + black: 103.8 + red: 63.2 + green: 72.7 + yellow: 45.3 + blue: 93.1 + magenta: 82.7 + cyan: 54 + white: 37 + brightBlack: 103.8 + brightRed: 63.2 + brightGreen: 72.7 + brightYellow: 45.3 + brightBlue: 93.1 + brightMagenta: 82.7 + brightCyan: 54 + brightWhite: 37 diff --git a/themes/ohled-themes-142-in-1--ohled-lightgoldenrodyellow.yaml b/themes/ohled-themes-142-in-1--ohled-lightgoldenrodyellow.yaml new file mode 100644 index 00000000..148515d7 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lightgoldenrodyellow.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LightGoldenRodYellow)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FAFAD2" + black: "#FAFAD2" + red: "#B7B79A" + green: "#C8C8A8" + yellow: "#96967E" + blue: "#E9E9C4" + magenta: "#D9D9B6" + cyan: "#A7A78C" + white: "#858570" + brightBlack: "#FAFAD2" + brightRed: "#B7B79A" + brightGreen: "#C8C8A8" + brightYellow: "#96967E" + brightBlue: "#E9E9C4" + brightMagenta: "#D9D9B6" + brightCyan: "#A7A78C" + brightWhite: "#858570" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 102.9 + black: 102.9 + red: 62.4 + green: 72.1 + yellow: 44.8 + blue: 92 + magenta: 82.2 + cyan: 53.7 + white: 36.5 + brightBlack: 102.9 + brightRed: 62.4 + brightGreen: 72.1 + brightYellow: 44.8 + brightBlue: 92 + brightMagenta: 82.2 + brightCyan: 53.7 + brightWhite: 36.5 diff --git a/themes/ohled-themes-142-in-1--ohled-lightgray.yaml b/themes/ohled-themes-142-in-1--ohled-lightgray.yaml new file mode 100644 index 00000000..c10652da --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lightgray.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LightGray)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#D3D3D3" + black: "#D3D3D3" + red: "#9B9B9B" + green: "#A9A9A9" + yellow: "#7F7F7F" + blue: "#C5C5C5" + magenta: "#B7B7B7" + cyan: "#8D8D8D" + white: "#717171" + brightBlack: "#D3D3D3" + brightRed: "#9B9B9B" + brightGreen: "#A9A9A9" + brightYellow: "#7F7F7F" + brightBlue: "#C5C5C5" + brightMagenta: "#B7B7B7" + brightCyan: "#8D8D8D" + brightWhite: "#717171" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 79.9 + black: 79.9 + red: 48.2 + green: 55.7 + yellow: 34.3 + blue: 71.5 + magenta: 63.5 + cyan: 41.1 + white: 27.8 + brightBlack: 79.9 + brightRed: 48.2 + brightGreen: 55.7 + brightYellow: 34.3 + brightBlue: 71.5 + brightMagenta: 63.5 + brightCyan: 41.1 + brightWhite: 27.8 diff --git a/themes/ohled-themes-142-in-1--ohled-lightgreen.yaml b/themes/ohled-themes-142-in-1--ohled-lightgreen.yaml new file mode 100644 index 00000000..8ab87b82 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lightgreen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LightGreen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#90EE90" + black: "#90EE90" + red: "#6AAF6A" + green: "#73BE73" + yellow: "#568F56" + blue: "#86DE86" + magenta: "#7DCE7D" + cyan: "#609F60" + white: "#4D7F4D" + brightBlack: "#90EE90" + brightRed: "#6AAF6A" + brightGreen: "#73BE73" + brightYellow: "#568F56" + brightBlue: "#86DE86" + brightMagenta: "#7DCE7D" + brightCyan: "#609F60" + brightWhite: "#4D7F4D" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 83.5 + black: 83.5 + red: 50.6 + green: 58 + yellow: 35.8 + blue: 74.7 + magenta: 66.2 + cyan: 43 + white: 29.1 + brightBlack: 83.5 + brightRed: 50.6 + brightGreen: 58 + brightYellow: 35.8 + brightBlue: 74.7 + brightMagenta: 66.2 + brightCyan: 43 + brightWhite: 29.1 diff --git a/themes/ohled-themes-142-in-1--ohled-lightpink.yaml b/themes/ohled-themes-142-in-1--ohled-lightpink.yaml new file mode 100644 index 00000000..d9e8021a --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lightpink.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LightPink)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFB6C1" + black: "#FFB6C1" + red: "#BB858E" + green: "#CC929A" + yellow: "#996D74" + blue: "#EEAAB4" + magenta: "#DD9EA7" + cyan: "#AA7981" + white: "#886167" + brightBlack: "#FFB6C1" + brightRed: "#BB858E" + brightGreen: "#CC929A" + brightYellow: "#996D74" + brightBlue: "#EEAAB4" + brightMagenta: "#DD9EA7" + brightCyan: "#AA7981" + brightWhite: "#886167" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 74.2 + black: 74.2 + red: 44.4 + green: 51.6 + yellow: 31.4 + blue: 66.4 + magenta: 58.8 + cyan: 37.7 + white: 25.4 + brightBlack: 74.2 + brightRed: 44.4 + brightGreen: 51.6 + brightYellow: 31.4 + brightBlue: 66.4 + brightMagenta: 58.8 + brightCyan: 37.7 + brightWhite: 25.4 diff --git a/themes/ohled-themes-142-in-1--ohled-lightsalmon.yaml b/themes/ohled-themes-142-in-1--ohled-lightsalmon.yaml new file mode 100644 index 00000000..4e93fc88 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lightsalmon.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LightSalmon)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFA07A" + black: "#FFA07A" + red: "#BB7559" + green: "#CC8062" + yellow: "#996049" + blue: "#EE9572" + magenta: "#DD8B6A" + cyan: "#AA6B51" + white: "#885541" + brightBlack: "#FFA07A" + brightRed: "#BB7559" + brightGreen: "#CC8062" + brightYellow: "#996049" + brightBlue: "#EE9572" + brightMagenta: "#DD8B6A" + brightCyan: "#AA6B51" + brightWhite: "#885541" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 64.2 + black: 64.2 + red: 38.1 + green: 44.3 + yellow: 26.8 + blue: 57.2 + magenta: 50.8 + cyan: 32.4 + white: 21.4 + brightBlack: 64.2 + brightRed: 38.1 + brightGreen: 44.3 + brightYellow: 26.8 + brightBlue: 57.2 + brightMagenta: 50.8 + brightCyan: 32.4 + brightWhite: 21.4 diff --git a/themes/ohled-themes-142-in-1--ohled-lightseagreen.yaml b/themes/ohled-themes-142-in-1--ohled-lightseagreen.yaml new file mode 100644 index 00000000..a7afabe9 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lightseagreen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LightSeaGreen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#20B2AA" + black: "#20B2AA" + red: "#17837D" + green: "#1A8E88" + yellow: "#136B66" + blue: "#1EA69F" + magenta: "#1C9A93" + cyan: "#157771" + white: "#115F5B" + brightBlack: "#20B2AA" + brightRed: "#17837D" + brightGreen: "#1A8E88" + brightYellow: "#136B66" + brightBlue: "#1EA69F" + brightMagenta: "#1C9A93" + brightCyan: "#157771" + brightWhite: "#115F5B" +meta: + mode: "dark" + accent: "cyan" + hue: null + pair: null + contrast: + fg: 51.3 + black: 51.3 + red: 30.2 + green: 34.9 + yellow: 20.8 + blue: 45.6 + magenta: 40.1 + cyan: 25.4 + white: 16.4 + brightBlack: 51.3 + brightRed: 30.2 + brightGreen: 34.9 + brightYellow: 20.8 + brightBlue: 45.6 + brightMagenta: 40.1 + brightCyan: 25.4 + brightWhite: 16.4 diff --git a/themes/ohled-themes-142-in-1--ohled-lightskyblue.yaml b/themes/ohled-themes-142-in-1--ohled-lightskyblue.yaml new file mode 100644 index 00000000..03377606 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lightskyblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LightSkyBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#87CEFA" + black: "#87CEFA" + red: "#6397B7" + green: "#6CA5C8" + yellow: "#517C96" + blue: "#7EC0E9" + magenta: "#75B3D9" + cyan: "#5A89A7" + white: "#486E85" + brightBlack: "#87CEFA" + brightRed: "#6397B7" + brightGreen: "#6CA5C8" + brightYellow: "#517C96" + brightBlue: "#7EC0E9" + brightMagenta: "#75B3D9" + brightCyan: "#5A89A7" + brightWhite: "#486E85" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 72 + black: 72 + red: 43.1 + green: 50 + yellow: 30.6 + blue: 64.2 + magenta: 57.2 + cyan: 36.5 + white: 24.6 + brightBlack: 72 + brightRed: 43.1 + brightGreen: 50 + brightYellow: 30.6 + brightBlue: 64.2 + brightMagenta: 57.2 + brightCyan: 36.5 + brightWhite: 24.6 diff --git a/themes/ohled-themes-142-in-1--ohled-lightslategray.yaml b/themes/ohled-themes-142-in-1--ohled-lightslategray.yaml new file mode 100644 index 00000000..7447fe25 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lightslategray.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LightSlateGray)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#778899" + black: "#778899" + red: "#576470" + green: "#5F6D7A" + yellow: "#47525C" + blue: "#6F7F8F" + magenta: "#677685" + cyan: "#4F5B66" + white: "#3F4952" + brightBlack: "#778899" + brightRed: "#576470" + brightGreen: "#5F6D7A" + brightYellow: "#47525C" + brightBlue: "#6F7F8F" + brightMagenta: "#677685" + brightCyan: "#4F5B66" + brightWhite: "#3F4952" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 37.7 + black: 37.7 + red: 21.5 + green: 25.3 + yellow: 14.4 + blue: 33.4 + magenta: 29.3 + cyan: 17.9 + white: 11.2 + brightBlack: 37.7 + brightRed: 21.5 + brightGreen: 25.3 + brightYellow: 14.4 + brightBlue: 33.4 + brightMagenta: 29.3 + brightCyan: 17.9 + brightWhite: 11.2 diff --git a/themes/ohled-themes-142-in-1--ohled-lightsteelblue.yaml b/themes/ohled-themes-142-in-1--ohled-lightsteelblue.yaml new file mode 100644 index 00000000..d287f82e --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lightsteelblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LightSteelBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#B0C4DE" + black: "#B0C4DE" + red: "#8190A3" + green: "#8D9DB2" + yellow: "#6A7685" + blue: "#A4B7CF" + magenta: "#99AAC0" + cyan: "#758394" + white: "#5E6976" + brightBlack: "#B0C4DE" + brightRed: "#8190A3" + brightGreen: "#8D9DB2" + brightYellow: "#6A7685" + brightBlue: "#A4B7CF" + brightMagenta: "#99AAC0" + brightCyan: "#758394" + brightWhite: "#5E6976" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 69.8 + black: 69.8 + red: 41.9 + green: 48.5 + yellow: 29.6 + blue: 62.4 + magenta: 55.3 + cyan: 35.5 + white: 23.8 + brightBlack: 69.8 + brightRed: 41.9 + brightGreen: 48.5 + brightYellow: 29.6 + brightBlue: 62.4 + brightMagenta: 55.3 + brightCyan: 35.5 + brightWhite: 23.8 diff --git a/themes/ohled-themes-142-in-1--ohled-lightyellow.yaml b/themes/ohled-themes-142-in-1--ohled-lightyellow.yaml new file mode 100644 index 00000000..29981a85 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lightyellow.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LightYellow)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFFE0" + black: "#FFFFE0" + red: "#BBBBA4" + green: "#CCCCB3" + yellow: "#999986" + blue: "#EEEED1" + magenta: "#DDDDC2" + cyan: "#AAAA95" + white: "#888877" + brightBlack: "#FFFFE0" + brightRed: "#BBBBA4" + brightGreen: "#CCCCB3" + brightYellow: "#999986" + brightBlue: "#EEEED1" + brightMagenta: "#DDDDC2" + brightCyan: "#AAAA95" + brightWhite: "#888877" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 106.5 + black: 106.5 + red: 64.9 + green: 74.7 + yellow: 46.5 + blue: 95.5 + magenta: 84.9 + cyan: 55.5 + white: 38.1 + brightBlack: 106.5 + brightRed: 64.9 + brightGreen: 74.7 + brightYellow: 46.5 + brightBlue: 95.5 + brightMagenta: 84.9 + brightCyan: 55.5 + brightWhite: 38.1 diff --git a/themes/ohled-themes-142-in-1--ohled-lime.yaml b/themes/ohled-themes-142-in-1--ohled-lime.yaml new file mode 100644 index 00000000..fee9358b --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-lime.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Lime)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#00FF00" + black: "#00FF00" + red: "#00BB00" + green: "#00CC00" + yellow: "#009900" + blue: "#00EE00" + magenta: "#00DD00" + cyan: "#00AA00" + white: "#008800" + brightBlack: "#00FF00" + brightRed: "#00BB00" + brightGreen: "#00CC00" + brightYellow: "#009900" + brightBlue: "#00EE00" + brightMagenta: "#00DD00" + brightCyan: "#00AA00" + brightWhite: "#008800" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 86.5 + black: 86.5 + red: 52.3 + green: 60.3 + yellow: 37.2 + blue: 77.5 + magenta: 68.7 + cyan: 44.5 + white: 30.2 + brightBlack: 86.5 + brightRed: 52.3 + brightGreen: 60.3 + brightYellow: 37.2 + brightBlue: 77.5 + brightMagenta: 68.7 + brightCyan: 44.5 + brightWhite: 30.2 diff --git a/themes/ohled-themes-142-in-1--ohled-limegreen.yaml b/themes/ohled-themes-142-in-1--ohled-limegreen.yaml new file mode 100644 index 00000000..7eab668d --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-limegreen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_LimeGreen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#32CD32" + black: "#32CD32" + red: "#259625" + green: "#28A428" + yellow: "#1E7B1E" + blue: "#2FBF2F" + magenta: "#2BB22B" + cyan: "#218921" + white: "#1B6D1B" + brightBlack: "#32CD32" + brightRed: "#259625" + brightGreen: "#28A428" + brightYellow: "#1E7B1E" + brightBlue: "#2FBF2F" + brightMagenta: "#2BB22B" + brightCyan: "#218921" + brightWhite: "#1B6D1B" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 61.4 + black: 61.4 + red: 36.3 + green: 42.3 + yellow: 25.4 + blue: 54.6 + magenta: 48.6 + cyan: 30.9 + white: 20.3 + brightBlack: 61.4 + brightRed: 36.3 + brightGreen: 42.3 + brightYellow: 25.4 + brightBlue: 54.6 + brightMagenta: 48.6 + brightCyan: 30.9 + brightWhite: 20.3 diff --git a/themes/ohled-themes-142-in-1--ohled-linen.yaml b/themes/ohled-themes-142-in-1--ohled-linen.yaml new file mode 100644 index 00000000..3580e0de --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-linen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Linen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FAF0E6" + black: "#FAF0E6" + red: "#B7B0A9" + green: "#C8C0B8" + yellow: "#96908A" + blue: "#E9E0D7" + magenta: "#D9D0C7" + cyan: "#A7A099" + white: "#85807B" + brightBlack: "#FAF0E6" + brightRed: "#B7B0A9" + brightGreen: "#C8C0B8" + brightYellow: "#96908A" + brightBlue: "#E9E0D7" + brightMagenta: "#D9D0C7" + brightCyan: "#A7A099" + brightWhite: "#85807B" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 99 + black: 99 + red: 60.1 + green: 69.3 + yellow: 43 + blue: 88.7 + magenta: 78.9 + cyan: 51.4 + white: 35.1 + brightBlack: 99 + brightRed: 60.1 + brightGreen: 69.3 + brightYellow: 43 + brightBlue: 88.7 + brightMagenta: 78.9 + brightCyan: 51.4 + brightWhite: 35.1 diff --git a/themes/ohled-themes-142-in-1--ohled-maroon.yaml b/themes/ohled-themes-142-in-1--ohled-maroon.yaml new file mode 100644 index 00000000..09b261d0 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-maroon.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Maroon)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#9F6565" + black: "#9F6565" + red: "#754A4A" + green: "#7F5151" + yellow: "#5F3D3D" + blue: "#945E5E" + magenta: "#8A5858" + cyan: "#6A4343" + white: "#553636" + brightBlack: "#9F6565" + brightRed: "#754A4A" + brightGreen: "#7F5151" + brightYellow: "#5F3D3D" + brightBlue: "#945E5E" + brightMagenta: "#8A5858" + brightCyan: "#6A4343" + brightWhite: "#553636" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 29.6 + black: 29.6 + red: 16.4 + green: 19.5 + yellow: 10.6 + blue: 26 + magenta: 22.9 + cyan: 13.3 + white: 7.9 + brightBlack: 29.6 + brightRed: 16.4 + brightGreen: 19.5 + brightYellow: 10.6 + brightBlue: 26 + brightMagenta: 22.9 + brightCyan: 13.3 + brightWhite: 7.9 diff --git a/themes/ohled-themes-142-in-1--ohled-mediumaquamarine.yaml b/themes/ohled-themes-142-in-1--ohled-mediumaquamarine.yaml new file mode 100644 index 00000000..33fce7f3 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-mediumaquamarine.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_MediumAquaMarine)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#66CDAA" + black: "#66CDAA" + red: "#4B967D" + green: "#52A488" + yellow: "#3D7B66" + blue: "#5FBF9F" + magenta: "#58B293" + cyan: "#448971" + white: "#366D5B" + brightBlack: "#66CDAA" + brightRed: "#4B967D" + brightGreen: "#52A488" + brightYellow: "#3D7B66" + brightBlue: "#5FBF9F" + brightMagenta: "#58B293" + brightCyan: "#448971" + brightWhite: "#366D5B" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 65.7 + black: 65.7 + red: 39 + green: 45.4 + yellow: 27.5 + blue: 58.5 + magenta: 52 + cyan: 33.3 + white: 21.9 + brightBlack: 65.7 + brightRed: 39 + brightGreen: 45.4 + brightYellow: 27.5 + brightBlue: 58.5 + brightMagenta: 52 + brightCyan: 33.3 + brightWhite: 21.9 diff --git a/themes/ohled-themes-142-in-1--ohled-mediumblue.yaml b/themes/ohled-themes-142-in-1--ohled-mediumblue.yaml new file mode 100644 index 00000000..138a62ae --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-mediumblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_MediumBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#6666E0" + black: "#6666E0" + red: "#4B4BA4" + green: "#5252B3" + yellow: "#3D3D86" + blue: "#5F5FD1" + magenta: "#5858C2" + cyan: "#444495" + white: "#363677" + brightBlack: "#6666E0" + brightRed: "#4B4BA4" + brightGreen: "#5252B3" + brightYellow: "#3D3D86" + brightBlue: "#5F5FD1" + brightMagenta: "#5858C2" + brightCyan: "#444495" + brightWhite: "#363677" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 29.9 + black: 29.9 + red: 16.6 + green: 19.8 + yellow: 10.6 + blue: 26.3 + magenta: 22.8 + cyan: 13.6 + white: 7.9 + brightBlack: 29.9 + brightRed: 16.6 + brightGreen: 19.8 + brightYellow: 10.6 + brightBlue: 26.3 + brightMagenta: 22.8 + brightCyan: 13.6 + brightWhite: 7.9 diff --git a/themes/ohled-themes-142-in-1--ohled-mediumorchid.yaml b/themes/ohled-themes-142-in-1--ohled-mediumorchid.yaml new file mode 100644 index 00000000..d50a022e --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-mediumorchid.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_MediumOrchid)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#BA55D3" + black: "#BA55D3" + red: "#883E9B" + green: "#9544A9" + yellow: "#70337F" + blue: "#AE4FC5" + magenta: "#A14AB7" + cyan: "#7C398D" + white: "#632D71" + brightBlack: "#BA55D3" + brightRed: "#883E9B" + brightGreen: "#9544A9" + brightYellow: "#70337F" + brightBlue: "#AE4FC5" + brightMagenta: "#A14AB7" + brightCyan: "#7C398D" + brightWhite: "#632D71" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 35.5 + black: 35.5 + red: 20 + green: 23.8 + yellow: 13.4 + blue: 31.4 + magenta: 27.5 + cyan: 16.7 + white: 10.2 + brightBlack: 35.5 + brightRed: 20 + brightGreen: 23.8 + brightYellow: 13.4 + brightBlue: 31.4 + brightMagenta: 27.5 + brightCyan: 16.7 + brightWhite: 10.2 diff --git a/themes/ohled-themes-142-in-1--ohled-mediumpurple.yaml b/themes/ohled-themes-142-in-1--ohled-mediumpurple.yaml new file mode 100644 index 00000000..3b104c09 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-mediumpurple.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_MediumPurple)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#9370DB" + black: "#9370DB" + red: "#6C52A1" + green: "#765AAF" + yellow: "#584383" + blue: "#8969CC" + magenta: "#7F61BE" + cyan: "#624B92" + white: "#4E3C75" + brightBlack: "#9370DB" + brightRed: "#6C52A1" + brightGreen: "#765AAF" + brightYellow: "#584383" + brightBlue: "#8969CC" + brightMagenta: "#7F61BE" + brightCyan: "#624B92" + brightWhite: "#4E3C75" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 36.7 + black: 36.7 + red: 20.9 + green: 24.7 + yellow: 13.8 + blue: 32.6 + magenta: 28.4 + cyan: 17.4 + white: 10.7 + brightBlack: 36.7 + brightRed: 20.9 + brightGreen: 24.7 + brightYellow: 13.8 + brightBlue: 32.6 + brightMagenta: 28.4 + brightCyan: 17.4 + brightWhite: 10.7 diff --git a/themes/ohled-themes-142-in-1--ohled-mediumseagreen.yaml b/themes/ohled-themes-142-in-1--ohled-mediumseagreen.yaml new file mode 100644 index 00000000..f05b3660 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-mediumseagreen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_MediumSeaGreen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#3CB371" + black: "#3CB371" + red: "#2C8353" + green: "#308F5A" + yellow: "#246B44" + blue: "#38A769" + magenta: "#349B62" + cyan: "#28774B" + white: "#205F3C" + brightBlack: "#3CB371" + brightRed: "#2C8353" + brightGreen: "#308F5A" + brightYellow: "#246B44" + brightBlue: "#38A769" + brightMagenta: "#349B62" + brightCyan: "#28774B" + brightWhite: "#205F3C" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 50.4 + black: 50.4 + red: 29.4 + green: 34.4 + yellow: 20.2 + blue: 44.9 + magenta: 39.5 + cyan: 24.7 + white: 15.9 + brightBlack: 50.4 + brightRed: 29.4 + brightGreen: 34.4 + brightYellow: 20.2 + brightBlue: 44.9 + brightMagenta: 39.5 + brightCyan: 24.7 + brightWhite: 15.9 diff --git a/themes/ohled-themes-142-in-1--ohled-mediumslateblue.yaml b/themes/ohled-themes-142-in-1--ohled-mediumslateblue.yaml new file mode 100644 index 00000000..ae3014f5 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-mediumslateblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_MediumSlateBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#7B68EE" + black: "#7B68EE" + red: "#5A4CAF" + green: "#6253BE" + yellow: "#4A3E8F" + blue: "#7361DE" + magenta: "#6B5ACE" + cyan: "#52459F" + white: "#42377F" + brightBlack: "#7B68EE" + brightRed: "#5A4CAF" + brightGreen: "#6253BE" + brightYellow: "#4A3E8F" + brightBlue: "#7361DE" + brightMagenta: "#6B5ACE" + brightCyan: "#52459F" + brightWhite: "#42377F" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 33.4 + black: 33.4 + red: 18.8 + green: 22.1 + yellow: 12.3 + blue: 29.6 + magenta: 25.8 + cyan: 15.5 + white: 9.3 + brightBlack: 33.4 + brightRed: 18.8 + brightGreen: 22.1 + brightYellow: 12.3 + brightBlue: 29.6 + brightMagenta: 25.8 + brightCyan: 15.5 + brightWhite: 9.3 diff --git a/themes/ohled-themes-142-in-1--ohled-mediumspringgreen.yaml b/themes/ohled-themes-142-in-1--ohled-mediumspringgreen.yaml new file mode 100644 index 00000000..c3c35303 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-mediumspringgreen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_MediumSpringGreen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#00FA9A" + black: "#00FA9A" + red: "#00B771" + green: "#00C87B" + yellow: "#00965C" + blue: "#00E990" + magenta: "#00D985" + cyan: "#00A767" + white: "#008552" + brightBlack: "#00FA9A" + brightRed: "#00B771" + brightGreen: "#00C87B" + brightYellow: "#00965C" + brightBlue: "#00E990" + brightMagenta: "#00D985" + brightCyan: "#00A767" + brightWhite: "#008552" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 85.5 + black: 85.5 + red: 51.5 + green: 59.6 + yellow: 36.7 + blue: 76.4 + magenta: 68.1 + cyan: 44.2 + white: 29.7 + brightBlack: 85.5 + brightRed: 51.5 + brightGreen: 59.6 + brightYellow: 36.7 + brightBlue: 76.4 + brightMagenta: 68.1 + brightCyan: 44.2 + brightWhite: 29.7 diff --git a/themes/ohled-themes-142-in-1--ohled-mediumturquoise.yaml b/themes/ohled-themes-142-in-1--ohled-mediumturquoise.yaml new file mode 100644 index 00000000..d8fabdea --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-mediumturquoise.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_MediumTurquoise)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#48D1CC" + black: "#48D1CC" + red: "#359996" + green: "#3AA7A3" + yellow: "#2B7D7A" + blue: "#43C3BE" + magenta: "#3EB5B1" + cyan: "#308B88" + white: "#266F6D" + brightBlack: "#48D1CC" + brightRed: "#359996" + brightGreen: "#3AA7A3" + brightYellow: "#2B7D7A" + brightBlue: "#43C3BE" + brightMagenta: "#3EB5B1" + brightCyan: "#308B88" + brightWhite: "#266F6D" +meta: + mode: "dark" + accent: "cyan" + hue: null + pair: null + contrast: + fg: 67.7 + black: 67.7 + red: 40.3 + green: 46.8 + yellow: 28.2 + blue: 60.4 + magenta: 53.5 + cyan: 34.1 + white: 22.7 + brightBlack: 67.7 + brightRed: 40.3 + brightGreen: 46.8 + brightYellow: 28.2 + brightBlue: 60.4 + brightMagenta: 53.5 + brightCyan: 34.1 + brightWhite: 22.7 diff --git a/themes/ohled-themes-142-in-1--ohled-mediumvioletred.yaml b/themes/ohled-themes-142-in-1--ohled-mediumvioletred.yaml new file mode 100644 index 00000000..afd1b754 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-mediumvioletred.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_MediumVioletRed)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#CC388D" + black: "#CC388D" + red: "#962967" + green: "#A32D71" + yellow: "#7A2255" + blue: "#BE3484" + magenta: "#B1317A" + cyan: "#88255E" + white: "#6D1E4B" + brightBlack: "#CC388D" + brightRed: "#962967" + brightGreen: "#A32D71" + brightYellow: "#7A2255" + brightBlue: "#BE3484" + brightMagenta: "#B1317A" + brightCyan: "#88255E" + brightWhite: "#6D1E4B" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 30.6 + black: 30.6 + red: 17.1 + green: 20.2 + yellow: 11 + blue: 26.9 + magenta: 23.6 + cyan: 13.9 + white: 8.3 + brightBlack: 30.6 + brightRed: 17.1 + brightGreen: 20.2 + brightYellow: 11 + brightBlue: 26.9 + brightMagenta: 23.6 + brightCyan: 13.9 + brightWhite: 8.3 diff --git a/themes/ohled-themes-142-in-1--ohled-midnightblue.yaml b/themes/ohled-themes-142-in-1--ohled-midnightblue.yaml new file mode 100644 index 00000000..d5b3ca5d --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-midnightblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_MidnightBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#717199" + black: "#717199" + red: "#535370" + green: "#5A5A7A" + yellow: "#44445C" + blue: "#69698F" + magenta: "#626285" + cyan: "#4B4B66" + white: "#3C3C52" + brightBlack: "#717199" + brightRed: "#535370" + brightGreen: "#5A5A7A" + brightYellow: "#44445C" + brightBlue: "#69698F" + brightMagenta: "#626285" + brightCyan: "#4B4B66" + brightWhite: "#3C3C52" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 29.4 + black: 29.4 + red: 16.3 + green: 19.2 + yellow: 10.6 + blue: 25.8 + magenta: 22.7 + cyan: 13.2 + white: 7.8 + brightBlack: 29.4 + brightRed: 16.3 + brightGreen: 19.2 + brightYellow: 10.6 + brightBlue: 25.8 + brightMagenta: 22.7 + brightCyan: 13.2 + brightWhite: 7.8 diff --git a/themes/ohled-themes-142-in-1--ohled-mintcream.yaml b/themes/ohled-themes-142-in-1--ohled-mintcream.yaml new file mode 100644 index 00000000..88c5ab0c --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-mintcream.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_MintCream)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#F5FFFA" + black: "#F5FFFA" + red: "#B4BBB7" + green: "#C4CCC8" + yellow: "#939996" + blue: "#E5EEE9" + magenta: "#D4DDD9" + cyan: "#A3AAA7" + white: "#838885" + brightBlack: "#F5FFFA" + brightRed: "#B4BBB7" + brightGreen: "#C4CCC8" + brightYellow: "#939996" + brightBlue: "#E5EEE9" + brightMagenta: "#D4DDD9" + brightCyan: "#A3AAA7" + brightWhite: "#838885" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 106.3 + black: 106.3 + red: 64.7 + green: 74.5 + yellow: 46.4 + blue: 95.3 + magenta: 84.7 + cyan: 55.3 + white: 38 + brightBlack: 106.3 + brightRed: 64.7 + brightGreen: 74.5 + brightYellow: 46.4 + brightBlue: 95.3 + brightMagenta: 84.7 + brightCyan: 55.3 + brightWhite: 38 diff --git a/themes/ohled-themes-142-in-1--ohled-mistyrose.yaml b/themes/ohled-themes-142-in-1--ohled-mistyrose.yaml new file mode 100644 index 00000000..ab83e5ec --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-mistyrose.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_MistyRose)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFE4E1" + black: "#FFE4E1" + red: "#BBA7A5" + green: "#CCB6B4" + yellow: "#998987" + blue: "#EED5D2" + magenta: "#DDC6C3" + cyan: "#AA9896" + white: "#887A78" + brightBlack: "#FFE4E1" + brightRed: "#BBA7A5" + brightGreen: "#CCB6B4" + brightYellow: "#998987" + brightBlue: "#EED5D2" + brightMagenta: "#DDC6C3" + brightCyan: "#AA9896" + brightWhite: "#887A78" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.1 + black: 94.1 + red: 57 + green: 65.7 + yellow: 40.8 + blue: 84.4 + magenta: 75.1 + cyan: 48.7 + white: 33.4 + brightBlack: 94.1 + brightRed: 57 + brightGreen: 65.7 + brightYellow: 40.8 + brightBlue: 84.4 + brightMagenta: 75.1 + brightCyan: 48.7 + brightWhite: 33.4 diff --git a/themes/ohled-themes-142-in-1--ohled-moccasin.yaml b/themes/ohled-themes-142-in-1--ohled-moccasin.yaml new file mode 100644 index 00000000..0517d884 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-moccasin.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Moccasin)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFE4B5" + black: "#FFE4B5" + red: "#BBA785" + green: "#CCB691" + yellow: "#99896D" + blue: "#EED5A9" + magenta: "#DDC69D" + cyan: "#AA9879" + white: "#887A61" + brightBlack: "#FFE4B5" + brightRed: "#BBA785" + brightGreen: "#CCB691" + brightYellow: "#99896D" + brightBlue: "#EED5A9" + brightMagenta: "#DDC69D" + brightCyan: "#AA9879" + brightWhite: "#887A61" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 92.5 + black: 92.5 + red: 56 + green: 64.5 + yellow: 40.1 + blue: 82.9 + magenta: 73.7 + cyan: 47.8 + white: 32.7 + brightBlack: 92.5 + brightRed: 56 + brightGreen: 64.5 + brightYellow: 40.1 + brightBlue: 82.9 + brightMagenta: 73.7 + brightCyan: 47.8 + brightWhite: 32.7 diff --git a/themes/ohled-themes-142-in-1--ohled-navajowhite.yaml b/themes/ohled-themes-142-in-1--ohled-navajowhite.yaml new file mode 100644 index 00000000..21d6b188 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-navajowhite.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_NavajoWhite)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFDEAD" + black: "#FFDEAD" + red: "#BBA37F" + green: "#CCB28A" + yellow: "#998568" + blue: "#EECFA1" + magenta: "#DDC096" + cyan: "#AA9473" + white: "#88765C" + brightBlack: "#FFDEAD" + brightRed: "#BBA37F" + brightGreen: "#CCB28A" + brightYellow: "#998568" + brightBlue: "#EECFA1" + brightMagenta: "#DDC096" + brightCyan: "#AA9473" + brightWhite: "#88765C" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 89.6 + black: 89.6 + red: 54.3 + green: 62.7 + yellow: 38.6 + blue: 80.1 + magenta: 71.1 + cyan: 46.2 + white: 31.3 + brightBlack: 89.6 + brightRed: 54.3 + brightGreen: 62.7 + brightYellow: 38.6 + brightBlue: 80.1 + brightMagenta: 71.1 + brightCyan: 46.2 + brightWhite: 31.3 diff --git a/themes/ohled-themes-142-in-1--ohled-navy.yaml b/themes/ohled-themes-142-in-1--ohled-navy.yaml new file mode 100644 index 00000000..b07b7e47 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-navy.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Navy)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#6F6FA5" + black: "#6F6FA5" + red: "#515179" + green: "#595984" + yellow: "#434363" + blue: "#68689A" + magenta: "#60608F" + cyan: "#4A4A6E" + white: "#3B3B58" + brightBlack: "#6F6FA5" + brightRed: "#515179" + brightGreen: "#595984" + brightYellow: "#434363" + brightBlue: "#68689A" + brightMagenta: "#60608F" + brightCyan: "#4A4A6E" + brightWhite: "#3B3B58" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 29.3 + black: 29.3 + red: 16 + green: 19.3 + yellow: 10.5 + blue: 26 + magenta: 22.4 + cyan: 13.2 + white: 7.7 + brightBlack: 29.3 + brightRed: 16 + brightGreen: 19.3 + brightYellow: 10.5 + brightBlue: 26 + brightMagenta: 22.4 + brightCyan: 13.2 + brightWhite: 7.7 diff --git a/themes/ohled-themes-142-in-1--ohled-oldlace.yaml b/themes/ohled-themes-142-in-1--ohled-oldlace.yaml new file mode 100644 index 00000000..2cf62b1a --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-oldlace.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_OldLace)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FDF5E6" + black: "#FDF5E6" + red: "#BAB4A9" + green: "#CAC4B8" + yellow: "#98938A" + blue: "#ECE5D7" + magenta: "#DBD4C7" + cyan: "#A9A399" + white: "#87837B" + brightBlack: "#FDF5E6" + brightRed: "#BAB4A9" + brightGreen: "#CAC4B8" + brightYellow: "#98938A" + brightBlue: "#ECE5D7" + brightMagenta: "#DBD4C7" + brightCyan: "#A9A399" + brightWhite: "#87837B" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 101.8 + black: 101.8 + red: 62.1 + green: 71.2 + yellow: 44.3 + blue: 91.4 + magenta: 80.9 + cyan: 52.8 + white: 36.3 + brightBlack: 101.8 + brightRed: 62.1 + brightGreen: 71.2 + brightYellow: 44.3 + brightBlue: 91.4 + brightMagenta: 80.9 + brightCyan: 52.8 + brightWhite: 36.3 diff --git a/themes/ohled-themes-142-in-1--ohled-olive.yaml b/themes/ohled-themes-142-in-1--ohled-olive.yaml new file mode 100644 index 00000000..8d8a1948 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-olive.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Olive)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#808000" + black: "#808000" + red: "#5E5E00" + green: "#666600" + yellow: "#4D4D00" + blue: "#777700" + magenta: "#6F6F00" + cyan: "#555500" + white: "#444400" + brightBlack: "#808000" + brightRed: "#5E5E00" + brightGreen: "#666600" + brightYellow: "#4D4D00" + brightBlue: "#777700" + brightMagenta: "#6F6F00" + brightCyan: "#555500" + brightWhite: "#444400" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 32.9 + black: 32.9 + red: 18.5 + green: 21.7 + yellow: 12.2 + blue: 28.9 + magenta: 25.5 + cyan: 15.1 + white: 9.1 + brightBlack: 32.9 + brightRed: 18.5 + brightGreen: 21.7 + brightYellow: 12.2 + brightBlue: 28.9 + brightMagenta: 25.5 + brightCyan: 15.1 + brightWhite: 9.1 diff --git a/themes/ohled-themes-142-in-1--ohled-olivedrab.yaml b/themes/ohled-themes-142-in-1--ohled-olivedrab.yaml new file mode 100644 index 00000000..d5660c39 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-olivedrab.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_OliveDrab)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#6B8E23" + black: "#6B8E23" + red: "#4E681A" + green: "#56721C" + yellow: "#405515" + blue: "#648521" + magenta: "#5D7B1E" + cyan: "#475F17" + white: "#394C13" + brightBlack: "#6B8E23" + brightRed: "#4E681A" + brightGreen: "#56721C" + brightYellow: "#405515" + brightBlue: "#648521" + brightMagenta: "#5D7B1E" + brightCyan: "#475F17" + brightWhite: "#394C13" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 36.2 + black: 36.2 + red: 20.5 + green: 24.4 + yellow: 13.6 + blue: 32.3 + magenta: 28.1 + cyan: 17.1 + white: 10.6 + brightBlack: 36.2 + brightRed: 20.5 + brightGreen: 24.4 + brightYellow: 13.6 + brightBlue: 32.3 + brightMagenta: 28.1 + brightCyan: 17.1 + brightWhite: 10.6 diff --git a/themes/ohled-themes-142-in-1--ohled-orange.yaml b/themes/ohled-themes-142-in-1--ohled-orange.yaml new file mode 100644 index 00000000..1cf3c3e1 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-orange.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Orange)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFA500" + black: "#FFA500" + red: "#BB7900" + green: "#CC8400" + yellow: "#996300" + blue: "#EE9A00" + magenta: "#DD8F00" + cyan: "#AA6E00" + white: "#885800" + brightBlack: "#FFA500" + brightRed: "#BB7900" + brightGreen: "#CC8400" + brightYellow: "#996300" + brightBlue: "#EE9A00" + brightMagenta: "#DD8F00" + brightCyan: "#AA6E00" + brightWhite: "#885800" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 64.7 + black: 64.7 + red: 38.5 + green: 44.7 + yellow: 27 + blue: 57.8 + magenta: 51.1 + cyan: 32.6 + white: 21.7 + brightBlack: 64.7 + brightRed: 38.5 + brightGreen: 44.7 + brightYellow: 27 + brightBlue: 57.8 + brightMagenta: 51.1 + brightCyan: 32.6 + brightWhite: 21.7 diff --git a/themes/ohled-themes-142-in-1--ohled-orangered.yaml b/themes/ohled-themes-142-in-1--ohled-orangered.yaml new file mode 100644 index 00000000..c5025912 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-orangered.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_OrangeRed)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FF4500" + black: "#FF4500" + red: "#BB3300" + green: "#CC3700" + yellow: "#992900" + blue: "#EE4000" + magenta: "#DD3C00" + cyan: "#AA2E00" + white: "#882500" + brightBlack: "#FF4500" + brightRed: "#BB3300" + brightGreen: "#CC3700" + brightYellow: "#992900" + brightBlue: "#EE4000" + brightMagenta: "#DD3C00" + brightCyan: "#AA2E00" + brightWhite: "#882500" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 41.4 + black: 41.4 + red: 23.9 + green: 27.9 + yellow: 16.1 + blue: 36.7 + magenta: 32.3 + cyan: 19.9 + white: 12.5 + brightBlack: 41.4 + brightRed: 23.9 + brightGreen: 27.9 + brightYellow: 16.1 + brightBlue: 36.7 + brightMagenta: 32.3 + brightCyan: 19.9 + brightWhite: 12.5 diff --git a/themes/ohled-themes-142-in-1--ohled-orchid.yaml b/themes/ohled-themes-142-in-1--ohled-orchid.yaml new file mode 100644 index 00000000..5f7a6505 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-orchid.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Orchid)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#DA70D6" + black: "#DA70D6" + red: "#A0529D" + green: "#AE5AAB" + yellow: "#834380" + blue: "#CB69C8" + magenta: "#BD61B9" + cyan: "#914B8F" + white: "#743C72" + brightBlack: "#DA70D6" + brightRed: "#A0529D" + brightGreen: "#AE5AAB" + brightYellow: "#834380" + brightBlue: "#CB69C8" + brightMagenta: "#BD61B9" + brightCyan: "#914B8F" + brightWhite: "#743C72" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 47.1 + black: 47.1 + red: 27.4 + green: 32.1 + yellow: 18.7 + blue: 42 + magenta: 36.9 + cyan: 23 + white: 14.8 + brightBlack: 47.1 + brightRed: 27.4 + brightGreen: 32.1 + brightYellow: 18.7 + brightBlue: 42 + brightMagenta: 36.9 + brightCyan: 23 + brightWhite: 14.8 diff --git a/themes/ohled-themes-142-in-1--ohled-palegoldenrod.yaml b/themes/ohled-themes-142-in-1--ohled-palegoldenrod.yaml new file mode 100644 index 00000000..66c42134 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-palegoldenrod.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_PaleGoldenRod)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#EEE8AA" + black: "#EEE8AA" + red: "#AFAA7D" + green: "#BEBA88" + yellow: "#8F8B66" + blue: "#DED99F" + magenta: "#CEC993" + cyan: "#9F9B71" + white: "#7F7C5B" + brightBlack: "#EEE8AA" + brightRed: "#AFAA7D" + brightGreen: "#BEBA88" + brightYellow: "#8F8B66" + brightBlue: "#DED99F" + brightMagenta: "#CEC993" + brightCyan: "#9F9B71" + brightWhite: "#7F7C5B" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 91.4 + black: 91.4 + red: 55.4 + green: 64 + yellow: 39.4 + blue: 82.1 + magenta: 72.6 + cyan: 47.4 + white: 32.3 + brightBlack: 91.4 + brightRed: 55.4 + brightGreen: 64 + brightYellow: 39.4 + brightBlue: 82.1 + brightMagenta: 72.6 + brightCyan: 47.4 + brightWhite: 32.3 diff --git a/themes/ohled-themes-142-in-1--ohled-palegreen.yaml b/themes/ohled-themes-142-in-1--ohled-palegreen.yaml new file mode 100644 index 00000000..35013cb5 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-palegreen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_PaleGreen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#98FB98" + black: "#98FB98" + red: "#6FB86F" + green: "#7AC97A" + yellow: "#5B975B" + blue: "#8EEA8E" + magenta: "#84DA84" + cyan: "#65A765" + white: "#518651" + brightBlack: "#98FB98" + brightRed: "#6FB86F" + brightGreen: "#7AC97A" + brightYellow: "#5B975B" + brightBlue: "#8EEA8E" + brightMagenta: "#84DA84" + brightCyan: "#65A765" + brightWhite: "#518651" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 90.9 + black: 90.9 + red: 55 + green: 63.6 + yellow: 39.4 + blue: 81.3 + magenta: 72.5 + cyan: 46.8 + white: 32 + brightBlack: 90.9 + brightRed: 55 + brightGreen: 63.6 + brightYellow: 39.4 + brightBlue: 81.3 + brightMagenta: 72.5 + brightCyan: 46.8 + brightWhite: 32 diff --git a/themes/ohled-themes-142-in-1--ohled-paleturquoise.yaml b/themes/ohled-themes-142-in-1--ohled-paleturquoise.yaml new file mode 100644 index 00000000..45a50812 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-paleturquoise.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_PaleTurquoise)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#AFEEEE" + black: "#AFEEEE" + red: "#80AFAF" + green: "#8CBEBE" + yellow: "#698F8F" + blue: "#A3DEDE" + magenta: "#98CECE" + cyan: "#759F9F" + white: "#5D7F7F" + brightBlack: "#AFEEEE" + brightRed: "#80AFAF" + brightGreen: "#8CBEBE" + brightYellow: "#698F8F" + brightBlue: "#A3DEDE" + brightMagenta: "#98CECE" + brightCyan: "#759F9F" + brightWhite: "#5D7F7F" +meta: + mode: "dark" + accent: "cyan" + hue: null + pair: null + contrast: + fg: 89.5 + black: 89.5 + red: 54.4 + green: 62.3 + yellow: 38.7 + blue: 80.1 + magenta: 71.1 + cyan: 46.4 + white: 31.4 + brightBlack: 89.5 + brightRed: 54.4 + brightGreen: 62.3 + brightYellow: 38.7 + brightBlue: 80.1 + brightMagenta: 71.1 + brightCyan: 46.4 + brightWhite: 31.4 diff --git a/themes/ohled-themes-142-in-1--ohled-palevioletred.yaml b/themes/ohled-themes-142-in-1--ohled-palevioletred.yaml new file mode 100644 index 00000000..40a242d8 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-palevioletred.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_PaleVioletRed)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#DB7093" + black: "#DB7093" + red: "#A1526C" + green: "#AF5A76" + yellow: "#834358" + blue: "#CC6989" + magenta: "#BE617F" + cyan: "#924B62" + white: "#753C4E" + brightBlack: "#DB7093" + brightRed: "#A1526C" + brightGreen: "#AF5A76" + brightYellow: "#834358" + brightBlue: "#CC6989" + brightMagenta: "#BE617F" + brightCyan: "#924B62" + brightWhite: "#753C4E" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 44.1 + black: 44.1 + red: 25.6 + green: 29.9 + yellow: 17.2 + blue: 39.2 + magenta: 34.4 + cyan: 21.4 + white: 13.6 + brightBlack: 44.1 + brightRed: 25.6 + brightGreen: 29.9 + brightYellow: 17.2 + brightBlue: 39.2 + brightMagenta: 34.4 + brightCyan: 21.4 + brightWhite: 13.6 diff --git a/themes/ohled-themes-142-in-1--ohled-papayawhip.yaml b/themes/ohled-themes-142-in-1--ohled-papayawhip.yaml new file mode 100644 index 00000000..1bf7e35b --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-papayawhip.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_PapayaWhip)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFEFD5" + black: "#FFEFD5" + red: "#BBAF9C" + green: "#CCBFAA" + yellow: "#998F80" + blue: "#EEDFC7" + magenta: "#DDCFB9" + cyan: "#AA9F8E" + white: "#887F72" + brightBlack: "#FFEFD5" + brightRed: "#BBAF9C" + brightGreen: "#CCBFAA" + brightYellow: "#998F80" + brightBlue: "#EEDFC7" + brightMagenta: "#DDCFB9" + brightCyan: "#AA9F8E" + brightWhite: "#887F72" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 98.6 + black: 98.6 + red: 59.8 + green: 68.9 + yellow: 42.7 + blue: 88.3 + magenta: 78.5 + cyan: 51 + white: 34.8 + brightBlack: 98.6 + brightRed: 59.8 + brightGreen: 68.9 + brightYellow: 42.7 + brightBlue: 88.3 + brightMagenta: 78.5 + brightCyan: 51 + brightWhite: 34.8 diff --git a/themes/ohled-themes-142-in-1--ohled-peachpuff.yaml b/themes/ohled-themes-142-in-1--ohled-peachpuff.yaml new file mode 100644 index 00000000..f30455bb --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-peachpuff.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_PeachPuff)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFDAB9" + black: "#FFDAB9" + red: "#BBA088" + green: "#CCAE94" + yellow: "#99836F" + blue: "#EECBAD" + magenta: "#DDBDA0" + cyan: "#AA917B" + white: "#887463" + brightBlack: "#FFDAB9" + brightRed: "#BBA088" + brightGreen: "#CCAE94" + brightYellow: "#99836F" + brightBlue: "#EECBAD" + brightMagenta: "#DDBDA0" + brightCyan: "#AA917B" + brightWhite: "#887463" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 88.2 + black: 88.2 + red: 53.4 + green: 61.4 + yellow: 38.1 + blue: 78.8 + magenta: 70.2 + cyan: 45.4 + white: 30.8 + brightBlack: 88.2 + brightRed: 53.4 + brightGreen: 61.4 + brightYellow: 38.1 + brightBlue: 78.8 + brightMagenta: 70.2 + brightCyan: 45.4 + brightWhite: 30.8 diff --git a/themes/ohled-themes-142-in-1--ohled-peru.yaml b/themes/ohled-themes-142-in-1--ohled-peru.yaml new file mode 100644 index 00000000..fa6e7447 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-peru.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Peru)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#CD853F" + black: "#CD853F" + red: "#96622E" + green: "#A46A32" + yellow: "#7B5026" + blue: "#BF7C3B" + magenta: "#B27337" + cyan: "#89592A" + white: "#6D4722" + brightBlack: "#CD853F" + brightRed: "#96622E" + brightGreen: "#A46A32" + brightYellow: "#7B5026" + brightBlue: "#BF7C3B" + brightMagenta: "#B27337" + brightCyan: "#89592A" + brightWhite: "#6D4722" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 45.5 + black: 45.5 + red: 26.5 + green: 30.8 + yellow: 18.1 + blue: 40.4 + magenta: 35.6 + cyan: 22.2 + white: 14.1 + brightBlack: 45.5 + brightRed: 26.5 + brightGreen: 30.8 + brightYellow: 18.1 + brightBlue: 40.4 + brightMagenta: 35.6 + brightCyan: 22.2 + brightWhite: 14.1 diff --git a/themes/ohled-themes-142-in-1--ohled-pink.yaml b/themes/ohled-themes-142-in-1--ohled-pink.yaml new file mode 100644 index 00000000..eb3a2961 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-pink.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Pink)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFC0CB" + black: "#FFC0CB" + red: "#BB8D95" + green: "#CC9AA2" + yellow: "#99737A" + blue: "#EEB3BD" + magenta: "#DDA6B0" + cyan: "#AA8087" + white: "#88666C" + brightBlack: "#FFC0CB" + brightRed: "#BB8D95" + brightGreen: "#CC9AA2" + brightYellow: "#99737A" + brightBlue: "#EEB3BD" + brightMagenta: "#DDA6B0" + brightCyan: "#AA8087" + brightWhite: "#88666C" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 78.3 + black: 78.3 + red: 47.2 + green: 54.6 + yellow: 33.3 + blue: 70 + magenta: 62 + cyan: 40.1 + white: 26.9 + brightBlack: 78.3 + brightRed: 47.2 + brightGreen: 54.6 + brightYellow: 33.3 + brightBlue: 70 + brightMagenta: 62 + brightCyan: 40.1 + brightWhite: 26.9 diff --git a/themes/ohled-themes-142-in-1--ohled-plum.yaml b/themes/ohled-themes-142-in-1--ohled-plum.yaml new file mode 100644 index 00000000..0743e3c7 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-plum.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Plum)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#DDA0DD" + black: "#DDA0DD" + red: "#A275A2" + green: "#B180B1" + yellow: "#856085" + blue: "#CE95CE" + magenta: "#C08BC0" + cyan: "#936B93" + white: "#765576" + brightBlack: "#DDA0DD" + brightRed: "#A275A2" + brightGreen: "#B180B1" + brightYellow: "#856085" + brightBlue: "#CE95CE" + brightMagenta: "#C08BC0" + brightCyan: "#936B93" + brightWhite: "#765576" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 62 + black: 62 + red: 36.7 + green: 42.8 + yellow: 25.8 + blue: 55.2 + magenta: 49.1 + cyan: 31.2 + white: 20.6 + brightBlack: 62 + brightRed: 36.7 + brightGreen: 42.8 + brightYellow: 25.8 + brightBlue: 55.2 + brightMagenta: 49.1 + brightCyan: 31.2 + brightWhite: 20.6 diff --git a/themes/ohled-themes-142-in-1--ohled-powderblue.yaml b/themes/ohled-themes-142-in-1--ohled-powderblue.yaml new file mode 100644 index 00000000..24fa1d1a --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-powderblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_PowderBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#B0E0E6" + black: "#B0E0E6" + red: "#81A4A9" + green: "#8DB3B8" + yellow: "#6A868A" + blue: "#A4D1D7" + magenta: "#99C2C7" + cyan: "#759599" + white: "#5E777B" + brightBlack: "#B0E0E6" + brightRed: "#81A4A9" + brightGreen: "#8DB3B8" + brightYellow: "#6A868A" + brightBlue: "#A4D1D7" + brightMagenta: "#99C2C7" + brightCyan: "#759599" + brightWhite: "#5E777B" +meta: + mode: "dark" + accent: "blue" + hue: null + pair: null + contrast: + fg: 82.6 + black: 82.6 + red: 49.7 + green: 57.5 + yellow: 35.3 + blue: 73.9 + magenta: 65.6 + cyan: 42.3 + white: 28.6 + brightBlack: 82.6 + brightRed: 49.7 + brightGreen: 57.5 + brightYellow: 35.3 + brightBlue: 73.9 + brightMagenta: 65.6 + brightCyan: 42.3 + brightWhite: 28.6 diff --git a/themes/ohled-themes-142-in-1--ohled-purple.yaml b/themes/ohled-themes-142-in-1--ohled-purple.yaml new file mode 100644 index 00000000..e80d2d7f --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-purple.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Purple)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#9C5F9C" + black: "#9C5F9C" + red: "#724672" + green: "#7D4C7D" + yellow: "#5E395E" + blue: "#925992" + magenta: "#875287" + cyan: "#683F68" + white: "#533353" + brightBlack: "#9C5F9C" + brightRed: "#724672" + brightGreen: "#7D4C7D" + brightYellow: "#5E395E" + brightBlue: "#925992" + brightMagenta: "#875287" + brightCyan: "#683F68" + brightWhite: "#533353" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 29.7 + black: 29.7 + red: 16.5 + green: 19.6 + yellow: 10.7 + blue: 26.4 + magenta: 22.7 + cyan: 13.4 + white: 8 + brightBlack: 29.7 + brightRed: 16.5 + brightGreen: 19.6 + brightYellow: 10.7 + brightBlue: 26.4 + brightMagenta: 22.7 + brightCyan: 13.4 + brightWhite: 8 diff --git a/themes/ohled-themes-142-in-1--ohled-rebeccapurple.yaml b/themes/ohled-themes-142-in-1--ohled-rebeccapurple.yaml new file mode 100644 index 00000000..b864b28e --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-rebeccapurple.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_RebeccaPurple)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#8566AD" + black: "#8566AD" + red: "#624B7F" + green: "#6A528A" + yellow: "#503D68" + blue: "#7C5FA1" + magenta: "#735896" + cyan: "#594473" + white: "#47365C" + brightBlack: "#8566AD" + brightRed: "#624B7F" + brightGreen: "#6A528A" + brightYellow: "#503D68" + brightBlue: "#7C5FA1" + brightMagenta: "#735896" + brightCyan: "#594473" + brightWhite: "#47365C" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 29.4 + black: 29.4 + red: 16.4 + green: 19.4 + yellow: 10.5 + blue: 25.8 + magenta: 22.5 + cyan: 13.3 + white: 7.7 + brightBlack: 29.4 + brightRed: 16.4 + brightGreen: 19.4 + brightYellow: 10.5 + brightBlue: 25.8 + brightMagenta: 22.5 + brightCyan: 13.3 + brightWhite: 7.7 diff --git a/themes/ohled-themes-142-in-1--ohled-red.yaml b/themes/ohled-themes-142-in-1--ohled-red.yaml new file mode 100644 index 00000000..1a050d88 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-red.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Red)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FF0000" + black: "#FF0000" + red: "#BB0000" + green: "#CC0000" + yellow: "#990000" + blue: "#EE0000" + magenta: "#DD0000" + cyan: "#AA0000" + white: "#880000" + brightBlack: "#FF0000" + brightRed: "#BB0000" + brightGreen: "#CC0000" + brightYellow: "#990000" + brightBlue: "#EE0000" + brightMagenta: "#DD0000" + brightCyan: "#AA0000" + brightWhite: "#880000" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 37.5 + black: 37.5 + red: 21.4 + green: 25.2 + yellow: 14.3 + blue: 33.3 + magenta: 29.2 + cyan: 17.8 + white: 11 + brightBlack: 37.5 + brightRed: 21.4 + brightGreen: 25.2 + brightYellow: 14.3 + brightBlue: 33.3 + brightMagenta: 29.2 + brightCyan: 17.8 + brightWhite: 11 diff --git a/themes/ohled-themes-142-in-1--ohled-rosybrown.yaml b/themes/ohled-themes-142-in-1--ohled-rosybrown.yaml new file mode 100644 index 00000000..ebb8d91b --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-rosybrown.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_RosyBrown)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#BC8F8F" + black: "#BC8F8F" + red: "#8A6969" + green: "#967272" + yellow: "#715656" + blue: "#AF8585" + magenta: "#A37C7C" + cyan: "#7D5F5F" + white: "#644C4C" + brightBlack: "#BC8F8F" + brightRed: "#8A6969" + brightGreen: "#967272" + brightYellow: "#715656" + brightBlue: "#AF8585" + brightMagenta: "#A37C7C" + brightCyan: "#7D5F5F" + brightWhite: "#644C4C" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 47.8 + black: 47.8 + red: 27.9 + green: 32.4 + yellow: 19.2 + blue: 42.3 + magenta: 37.5 + cyan: 23.2 + white: 14.9 + brightBlack: 47.8 + brightRed: 27.9 + brightGreen: 32.4 + brightYellow: 19.2 + brightBlue: 42.3 + brightMagenta: 37.5 + brightCyan: 23.2 + brightWhite: 14.9 diff --git a/themes/ohled-themes-142-in-1--ohled-royalblue.yaml b/themes/ohled-themes-142-in-1--ohled-royalblue.yaml new file mode 100644 index 00000000..437047e1 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-royalblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_RoyalBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#476CE2" + black: "#476CE2" + red: "#344FA6" + green: "#3956B5" + yellow: "#2B4188" + blue: "#4265D3" + magenta: "#3E5EC4" + cyan: "#2F4897" + white: "#263A79" + brightBlack: "#476CE2" + brightRed: "#344FA6" + brightGreen: "#3956B5" + brightYellow: "#2B4188" + brightBlue: "#4265D3" + brightMagenta: "#3E5EC4" + brightCyan: "#2F4897" + brightWhite: "#263A79" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 29.8 + black: 29.8 + red: 16.5 + green: 19.5 + yellow: 10.7 + blue: 26.3 + magenta: 23 + cyan: 13.5 + white: 8.1 + brightBlack: 29.8 + brightRed: 16.5 + brightGreen: 19.5 + brightYellow: 10.7 + brightBlue: 26.3 + brightMagenta: 23 + brightCyan: 13.5 + brightWhite: 8.1 diff --git a/themes/ohled-themes-142-in-1--ohled-saddlebrown.yaml b/themes/ohled-themes-142-in-1--ohled-saddlebrown.yaml new file mode 100644 index 00000000..19b16507 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-saddlebrown.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_SaddleBrown)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#9D6852" + black: "#9D6852" + red: "#734C3C" + green: "#7E5342" + yellow: "#5E3E31" + blue: "#93614D" + magenta: "#885A47" + cyan: "#694537" + white: "#54372C" + brightBlack: "#9D6852" + brightRed: "#734C3C" + brightGreen: "#7E5342" + brightYellow: "#5E3E31" + brightBlue: "#93614D" + brightMagenta: "#885A47" + brightCyan: "#694537" + brightWhite: "#54372C" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 29.7 + black: 29.7 + red: 16.4 + green: 19.6 + yellow: 10.5 + blue: 26.2 + magenta: 22.8 + cyan: 13.4 + white: 7.9 + brightBlack: 29.7 + brightRed: 16.4 + brightGreen: 19.6 + brightYellow: 10.5 + brightBlue: 26.2 + brightMagenta: 22.8 + brightCyan: 13.4 + brightWhite: 7.9 diff --git a/themes/ohled-themes-142-in-1--ohled-salmon.yaml b/themes/ohled-themes-142-in-1--ohled-salmon.yaml new file mode 100644 index 00000000..800be238 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-salmon.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Salmon)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FA8072" + black: "#FA8072" + red: "#B75E54" + green: "#C8665B" + yellow: "#964D44" + blue: "#E9776A" + magenta: "#D96F63" + cyan: "#A7554C" + white: "#85443D" + brightBlack: "#FA8072" + brightRed: "#B75E54" + brightGreen: "#C8665B" + brightYellow: "#964D44" + brightBlue: "#E9776A" + brightMagenta: "#D96F63" + brightCyan: "#A7554C" + brightWhite: "#85443D" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 53.3 + black: 53.3 + red: 31.3 + green: 36.4 + yellow: 21.7 + blue: 47.3 + magenta: 42 + cyan: 26.4 + white: 17.1 + brightBlack: 53.3 + brightRed: 31.3 + brightGreen: 36.4 + brightYellow: 21.7 + brightBlue: 47.3 + brightMagenta: 42 + brightCyan: 26.4 + brightWhite: 17.1 diff --git a/themes/ohled-themes-142-in-1--ohled-sandybrown.yaml b/themes/ohled-themes-142-in-1--ohled-sandybrown.yaml new file mode 100644 index 00000000..6bf3237b --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-sandybrown.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_SandyBrown)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#F4A460" + black: "#F4A460" + red: "#B37846" + green: "#C3834D" + yellow: "#92623A" + blue: "#E4995A" + magenta: "#D38E53" + cyan: "#A36D40" + white: "#825733" + brightBlack: "#F4A460" + brightRed: "#B37846" + brightGreen: "#C3834D" + brightYellow: "#92623A" + brightBlue: "#E4995A" + brightMagenta: "#D38E53" + brightCyan: "#A36D40" + brightWhite: "#825733" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 63 + black: 63 + red: 37.4 + green: 43.4 + yellow: 26 + blue: 56.3 + magenta: 49.6 + cyan: 31.6 + white: 20.9 + brightBlack: 63 + brightRed: 37.4 + brightGreen: 43.4 + brightYellow: 26 + brightBlue: 56.3 + brightMagenta: 49.6 + brightCyan: 31.6 + brightWhite: 20.9 diff --git a/themes/ohled-themes-142-in-1--ohled-seagreen.yaml b/themes/ohled-themes-142-in-1--ohled-seagreen.yaml new file mode 100644 index 00000000..35b123d2 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-seagreen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_SeaGreen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#2E8B57" + black: "#2E8B57" + red: "#226640" + green: "#256F46" + yellow: "#1C5334" + blue: "#2B8251" + magenta: "#28784B" + cyan: "#1F5D3A" + white: "#194A2E" + brightBlack: "#2E8B57" + brightRed: "#226640" + brightGreen: "#256F46" + brightYellow: "#1C5334" + brightBlue: "#2B8251" + brightMagenta: "#28784B" + brightCyan: "#1F5D3A" + brightWhite: "#194A2E" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 32.7 + black: 32.7 + red: 18.4 + green: 21.6 + yellow: 11.9 + blue: 29 + magenta: 25.1 + cyan: 15.2 + white: 9.1 + brightBlack: 32.7 + brightRed: 18.4 + brightGreen: 21.6 + brightYellow: 11.9 + brightBlue: 29 + brightMagenta: 25.1 + brightCyan: 15.2 + brightWhite: 9.1 diff --git a/themes/ohled-themes-142-in-1--ohled-seashell.yaml b/themes/ohled-themes-142-in-1--ohled-seashell.yaml new file mode 100644 index 00000000..9a5b2eb7 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-seashell.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_SeaShell)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFF5EE" + black: "#FFF5EE" + red: "#BBB4AF" + green: "#CCC4BE" + yellow: "#99938F" + blue: "#EEE5DE" + magenta: "#DDD4CE" + cyan: "#AAA39F" + white: "#88837F" + brightBlack: "#FFF5EE" + brightRed: "#BBB4AF" + brightGreen: "#CCC4BE" + brightYellow: "#99938F" + brightBlue: "#EEE5DE" + brightMagenta: "#DDD4CE" + brightCyan: "#AAA39F" + brightWhite: "#88837F" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 102.4 + black: 102.4 + red: 62.4 + green: 71.7 + yellow: 44.6 + blue: 92 + magenta: 81.4 + cyan: 53.1 + white: 36.6 + brightBlack: 102.4 + brightRed: 62.4 + brightGreen: 71.7 + brightYellow: 44.6 + brightBlue: 92 + brightMagenta: 81.4 + brightCyan: 53.1 + brightWhite: 36.6 diff --git a/themes/ohled-themes-142-in-1--ohled-sienna.yaml b/themes/ohled-themes-142-in-1--ohled-sienna.yaml new file mode 100644 index 00000000..c2fec196 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-sienna.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Sienna)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#A86248" + black: "#A86248" + red: "#7B4835" + green: "#864E3A" + yellow: "#653B2B" + blue: "#9D5B43" + magenta: "#92553E" + cyan: "#704130" + white: "#5A3426" + brightBlack: "#A86248" + brightRed: "#7B4835" + brightGreen: "#864E3A" + brightYellow: "#653B2B" + brightBlue: "#9D5B43" + brightMagenta: "#92553E" + brightCyan: "#704130" + brightWhite: "#5A3426" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 29.6 + black: 29.6 + red: 16.4 + green: 19.3 + yellow: 10.6 + blue: 26 + magenta: 22.8 + cyan: 13.3 + white: 7.9 + brightBlack: 29.6 + brightRed: 16.4 + brightGreen: 19.3 + brightYellow: 10.6 + brightBlue: 26 + brightMagenta: 22.8 + brightCyan: 13.3 + brightWhite: 7.9 diff --git a/themes/ohled-themes-142-in-1--ohled-silver.yaml b/themes/ohled-themes-142-in-1--ohled-silver.yaml new file mode 100644 index 00000000..9c91d173 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-silver.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Silver)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#C0C0C0" + black: "#C0C0C0" + red: "#8D8D8D" + green: "#9A9A9A" + yellow: "#737373" + blue: "#B3B3B3" + magenta: "#A6A6A6" + cyan: "#808080" + white: "#666666" + brightBlack: "#C0C0C0" + brightRed: "#8D8D8D" + brightGreen: "#9A9A9A" + brightYellow: "#737373" + brightBlue: "#B3B3B3" + brightMagenta: "#A6A6A6" + brightCyan: "#808080" + brightWhite: "#666666" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 68.6 + black: 68.6 + red: 41.1 + green: 47.7 + yellow: 28.7 + blue: 61.2 + magenta: 54.1 + cyan: 34.8 + white: 23 + brightBlack: 68.6 + brightRed: 41.1 + brightGreen: 47.7 + brightYellow: 28.7 + brightBlue: 61.2 + brightMagenta: 54.1 + brightCyan: 34.8 + brightWhite: 23 diff --git a/themes/ohled-themes-142-in-1--ohled-skyblue.yaml b/themes/ohled-themes-142-in-1--ohled-skyblue.yaml new file mode 100644 index 00000000..3e6cc4c5 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-skyblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_SkyBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#87CEEB" + black: "#87CEEB" + red: "#6397AC" + green: "#6CA5BC" + yellow: "#517C8D" + blue: "#7EC0DB" + magenta: "#75B3CC" + cyan: "#5A899D" + white: "#486E7D" + brightBlack: "#87CEEB" + brightRed: "#6397AC" + brightGreen: "#6CA5BC" + brightYellow: "#517C8D" + brightBlue: "#7EC0DB" + brightMagenta: "#75B3CC" + brightCyan: "#5A899D" + brightWhite: "#486E7D" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 71.2 + black: 71.2 + red: 42.6 + green: 49.4 + yellow: 30.2 + blue: 63.5 + magenta: 56.5 + cyan: 36 + white: 24.2 + brightBlack: 71.2 + brightRed: 42.6 + brightGreen: 49.4 + brightYellow: 30.2 + brightBlue: 63.5 + brightMagenta: 56.5 + brightCyan: 36 + brightWhite: 24.2 diff --git a/themes/ohled-themes-142-in-1--ohled-slateblue.yaml b/themes/ohled-themes-142-in-1--ohled-slateblue.yaml new file mode 100644 index 00000000..2fc7a571 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-slateblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_SlateBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#7365D1" + black: "#7365D1" + red: "#544A99" + green: "#5C51A7" + yellow: "#453D7D" + blue: "#6B5EC3" + magenta: "#6458B5" + cyan: "#4D438B" + white: "#3D366F" + brightBlack: "#7365D1" + brightRed: "#544A99" + brightGreen: "#5C51A7" + brightYellow: "#453D7D" + brightBlue: "#6B5EC3" + brightMagenta: "#6458B5" + brightCyan: "#4D438B" + brightWhite: "#3D366F" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 29.6 + black: 29.6 + red: 16.3 + green: 19.5 + yellow: 10.6 + blue: 26 + magenta: 22.9 + cyan: 13.3 + white: 7.9 + brightBlack: 29.6 + brightRed: 16.3 + brightGreen: 19.5 + brightYellow: 10.6 + brightBlue: 26 + brightMagenta: 22.9 + brightCyan: 13.3 + brightWhite: 7.9 diff --git a/themes/ohled-themes-142-in-1--ohled-slategray.yaml b/themes/ohled-themes-142-in-1--ohled-slategray.yaml new file mode 100644 index 00000000..dd52d305 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-slategray.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_SlateGray)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#708090" + black: "#708090" + red: "#525E6A" + green: "#5A6673" + yellow: "#434D56" + blue: "#697786" + magenta: "#616F7D" + cyan: "#4B5560" + white: "#3C444D" + brightBlack: "#708090" + brightRed: "#525E6A" + brightGreen: "#5A6673" + brightYellow: "#434D56" + brightBlue: "#697786" + brightMagenta: "#616F7D" + brightCyan: "#4B5560" + brightWhite: "#3C444D" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 33.9 + black: 33.9 + red: 19.1 + green: 22.5 + yellow: 12.6 + blue: 29.8 + magenta: 26.2 + cyan: 15.7 + white: 9.5 + brightBlack: 33.9 + brightRed: 19.1 + brightGreen: 22.5 + brightYellow: 12.6 + brightBlue: 29.8 + brightMagenta: 26.2 + brightCyan: 15.7 + brightWhite: 9.5 diff --git a/themes/ohled-themes-142-in-1--ohled-snow.yaml b/themes/ohled-themes-142-in-1--ohled-snow.yaml new file mode 100644 index 00000000..3675fba2 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-snow.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Snow)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFAFA" + black: "#FFFAFA" + red: "#BBB7B7" + green: "#CCC8C8" + yellow: "#999696" + blue: "#EEE9E9" + magenta: "#DDD9D9" + cyan: "#AAA7A7" + white: "#888585" + brightBlack: "#FFFAFA" + brightRed: "#BBB7B7" + brightGreen: "#CCC8C8" + brightYellow: "#999696" + brightBlue: "#EEE9E9" + brightMagenta: "#DDD9D9" + brightCyan: "#AAA7A7" + brightWhite: "#888585" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.3 + black: 105.3 + red: 64 + green: 73.8 + yellow: 46 + blue: 94.2 + magenta: 84.1 + cyan: 55 + white: 37.5 + brightBlack: 105.3 + brightRed: 64 + brightGreen: 73.8 + brightYellow: 46 + brightBlue: 94.2 + brightMagenta: 84.1 + brightCyan: 55 + brightWhite: 37.5 diff --git a/themes/ohled-themes-142-in-1--ohled-springgreen.yaml b/themes/ohled-themes-142-in-1--ohled-springgreen.yaml new file mode 100644 index 00000000..70c84f9d --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-springgreen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_SpringGreen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#00FF7F" + black: "#00FF7F" + red: "#00BB5D" + green: "#00CC66" + yellow: "#00994C" + blue: "#00EE77" + magenta: "#00DD6E" + cyan: "#00AA55" + white: "#008844" + brightBlack: "#00FF7F" + brightRed: "#00BB5D" + brightGreen: "#00CC66" + brightYellow: "#00994C" + brightBlue: "#00EE77" + brightMagenta: "#00DD6E" + brightCyan: "#00AA55" + brightWhite: "#008844" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 87.6 + black: 87.6 + red: 52.9 + green: 61.1 + yellow: 37.7 + blue: 78.4 + magenta: 69.6 + cyan: 45.1 + white: 30.7 + brightBlack: 87.6 + brightRed: 52.9 + brightGreen: 61.1 + brightYellow: 37.7 + brightBlue: 78.4 + brightMagenta: 69.6 + brightCyan: 45.1 + brightWhite: 30.7 diff --git a/themes/ohled-themes-142-in-1--ohled-steelblue.yaml b/themes/ohled-themes-142-in-1--ohled-steelblue.yaml new file mode 100644 index 00000000..ae591e83 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-steelblue.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_SteelBlue)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#4682B4" + black: "#4682B4" + red: "#335F84" + green: "#386890" + yellow: "#2A4E6C" + blue: "#4179A8" + magenta: "#3D719C" + cyan: "#2F5778" + white: "#254560" + brightBlack: "#4682B4" + brightRed: "#335F84" + brightGreen: "#386890" + brightYellow: "#2A4E6C" + brightBlue: "#4179A8" + brightMagenta: "#3D719C" + brightCyan: "#2F5778" + brightWhite: "#254560" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 33.6 + black: 33.6 + red: 18.8 + green: 22.4 + yellow: 12.5 + blue: 29.6 + magenta: 26.1 + cyan: 15.7 + white: 9.4 + brightBlack: 33.6 + brightRed: 18.8 + brightGreen: 22.4 + brightYellow: 12.5 + brightBlue: 29.6 + brightMagenta: 26.1 + brightCyan: 15.7 + brightWhite: 9.4 diff --git a/themes/ohled-themes-142-in-1--ohled-tan.yaml b/themes/ohled-themes-142-in-1--ohled-tan.yaml new file mode 100644 index 00000000..a2e5c85c --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-tan.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Tan)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#D2B48C" + black: "#D2B48C" + red: "#9A8467" + green: "#A89070" + yellow: "#7E6C54" + blue: "#C4A883" + magenta: "#B69C79" + cyan: "#8C785D" + white: "#70604B" + brightBlack: "#D2B48C" + brightRed: "#9A8467" + brightGreen: "#A89070" + brightYellow: "#7E6C54" + brightBlue: "#C4A883" + brightMagenta: "#B69C79" + brightCyan: "#8C785D" + brightWhite: "#70604B" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 64.4 + black: 64.4 + red: 38.3 + green: 44.5 + yellow: 26.8 + blue: 57.5 + magenta: 50.8 + cyan: 32.4 + white: 21.6 + brightBlack: 64.4 + brightRed: 38.3 + brightGreen: 44.5 + brightYellow: 26.8 + brightBlue: 57.5 + brightMagenta: 50.8 + brightCyan: 32.4 + brightWhite: 21.6 diff --git a/themes/ohled-themes-142-in-1--ohled-teal.yaml b/themes/ohled-themes-142-in-1--ohled-teal.yaml new file mode 100644 index 00000000..cac0da3c --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-teal.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Teal)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#128282" + black: "#128282" + red: "#0D5F5F" + green: "#0E6868" + yellow: "#0B4E4E" + blue: "#117979" + magenta: "#107171" + cyan: "#0C5757" + white: "#0A4545" + brightBlack: "#128282" + brightRed: "#0D5F5F" + brightGreen: "#0E6868" + brightYellow: "#0B4E4E" + brightBlue: "#117979" + brightMagenta: "#107171" + brightCyan: "#0C5757" + brightWhite: "#0A4545" +meta: + mode: "dark" + accent: "cyan" + hue: null + pair: null + contrast: + fg: 30 + black: 30 + red: 16.5 + green: 19.8 + yellow: 10.8 + blue: 26.4 + magenta: 23.2 + cyan: 13.8 + white: 8 + brightBlack: 30 + brightRed: 16.5 + brightGreen: 19.8 + brightYellow: 10.8 + brightBlue: 26.4 + brightMagenta: 23.2 + brightCyan: 13.8 + brightWhite: 8 diff --git a/themes/ohled-themes-142-in-1--ohled-thistle.yaml b/themes/ohled-themes-142-in-1--ohled-thistle.yaml new file mode 100644 index 00000000..87b86530 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-thistle.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Thistle)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#D8BFD8" + black: "#D8BFD8" + red: "#9E8C9E" + green: "#AD99AD" + yellow: "#827382" + blue: "#CAB2CA" + magenta: "#BBA6BB" + cyan: "#907F90" + white: "#736673" + brightBlack: "#D8BFD8" + brightRed: "#9E8C9E" + brightGreen: "#AD99AD" + brightYellow: "#827382" + brightBlue: "#CAB2CA" + brightMagenta: "#BBA6BB" + brightCyan: "#907F90" + brightWhite: "#736673" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 72.5 + black: 72.5 + red: 43.3 + green: 50.4 + yellow: 30.8 + blue: 64.8 + magenta: 57.5 + cyan: 36.8 + white: 24.7 + brightBlack: 72.5 + brightRed: 43.3 + brightGreen: 50.4 + brightYellow: 30.8 + brightBlue: 64.8 + brightMagenta: 57.5 + brightCyan: 36.8 + brightWhite: 24.7 diff --git a/themes/ohled-themes-142-in-1--ohled-tomato.yaml b/themes/ohled-themes-142-in-1--ohled-tomato.yaml new file mode 100644 index 00000000..70e16c1a --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-tomato.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Tomato)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FF6347" + black: "#FF6347" + red: "#BB4934" + green: "#CC4F39" + yellow: "#993B2B" + blue: "#EE5C42" + magenta: "#DD563E" + cyan: "#AA422F" + white: "#883526" + brightBlack: "#FF6347" + brightRed: "#BB4934" + brightGreen: "#CC4F39" + brightYellow: "#993B2B" + brightBlue: "#EE5C42" + brightMagenta: "#DD563E" + brightCyan: "#AA422F" + brightWhite: "#883526" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 46.8 + black: 46.8 + red: 27.3 + green: 31.8 + yellow: 18.6 + blue: 41.5 + magenta: 36.7 + cyan: 22.8 + white: 14.7 + brightBlack: 46.8 + brightRed: 27.3 + brightGreen: 31.8 + brightYellow: 18.6 + brightBlue: 41.5 + brightMagenta: 36.7 + brightCyan: 22.8 + brightWhite: 14.7 diff --git a/themes/ohled-themes-142-in-1--ohled-turquoise.yaml b/themes/ohled-themes-142-in-1--ohled-turquoise.yaml new file mode 100644 index 00000000..8448d415 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-turquoise.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Turquoise)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#40E0D0" + black: "#40E0D0" + red: "#2FA499" + green: "#33B3A6" + yellow: "#26867D" + blue: "#3CD1C2" + magenta: "#37C2B4" + cyan: "#2B958B" + white: "#22776F" + brightBlack: "#40E0D0" + brightRed: "#2FA499" + brightGreen: "#33B3A6" + brightYellow: "#26867D" + brightBlue: "#3CD1C2" + brightMagenta: "#37C2B4" + brightCyan: "#2B958B" + brightWhite: "#22776F" +meta: + mode: "dark" + accent: "cyan" + hue: null + pair: null + contrast: + fg: 74.9 + black: 74.9 + red: 44.8 + green: 51.9 + yellow: 31.6 + blue: 66.9 + magenta: 59.2 + cyan: 38.1 + white: 25.5 + brightBlack: 74.9 + brightRed: 44.8 + brightGreen: 51.9 + brightYellow: 31.6 + brightBlue: 66.9 + brightMagenta: 59.2 + brightCyan: 38.1 + brightWhite: 25.5 diff --git a/themes/ohled-themes-142-in-1--ohled-violet.yaml b/themes/ohled-themes-142-in-1--ohled-violet.yaml new file mode 100644 index 00000000..3f4d2400 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-violet.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Violet)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#EE82EE" + black: "#EE82EE" + red: "#AF5FAF" + green: "#BE68BE" + yellow: "#8F4E8F" + blue: "#DE79DE" + magenta: "#CE71CE" + cyan: "#9F579F" + white: "#7F457F" + brightBlack: "#EE82EE" + brightRed: "#AF5FAF" + brightGreen: "#BE68BE" + brightYellow: "#8F4E8F" + brightBlue: "#DE79DE" + brightMagenta: "#CE71CE" + brightCyan: "#9F579F" + brightWhite: "#7F457F" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 56.8 + black: 56.8 + red: 33.6 + green: 38.9 + yellow: 23.3 + blue: 50.5 + magenta: 44.8 + cyan: 28.4 + white: 18.5 + brightBlack: 56.8 + brightRed: 33.6 + brightGreen: 38.9 + brightYellow: 23.3 + brightBlue: 50.5 + brightMagenta: 44.8 + brightCyan: 28.4 + brightWhite: 18.5 diff --git a/themes/ohled-themes-142-in-1--ohled-wheat.yaml b/themes/ohled-themes-142-in-1--ohled-wheat.yaml new file mode 100644 index 00000000..bb8bcb61 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-wheat.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Wheat)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#F5DEB3" + black: "#F5DEB3" + red: "#B4A383" + green: "#C4B28F" + yellow: "#93856B" + blue: "#E5CFA7" + magenta: "#D4C09B" + cyan: "#A39477" + white: "#83765F" + brightBlack: "#F5DEB3" + brightRed: "#B4A383" + brightGreen: "#C4B28F" + brightYellow: "#93856B" + brightBlue: "#E5CFA7" + brightMagenta: "#D4C09B" + brightCyan: "#A39477" + brightWhite: "#83765F" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 88.2 + black: 88.2 + red: 53.5 + green: 61.7 + yellow: 37.9 + blue: 79 + magenta: 69.9 + cyan: 45.4 + white: 30.8 + brightBlack: 88.2 + brightRed: 53.5 + brightGreen: 61.7 + brightYellow: 37.9 + brightBlue: 79 + brightMagenta: 69.9 + brightCyan: 45.4 + brightWhite: 30.8 diff --git a/themes/ohled-themes-142-in-1--ohled-white.yaml b/themes/ohled-themes-142-in-1--ohled-white.yaml new file mode 100644 index 00000000..5daf91bf --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-white.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_White)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#BBBBBB" + green: "#CCCCCC" + yellow: "#999999" + blue: "#EEEEEE" + magenta: "#DDDDDD" + cyan: "#AAAAAA" + white: "#888888" + brightBlack: "#FFFFFF" + brightRed: "#BBBBBB" + brightGreen: "#CCCCCC" + brightYellow: "#999999" + brightBlue: "#EEEEEE" + brightMagenta: "#DDDDDD" + brightCyan: "#AAAAAA" + brightWhite: "#888888" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 107.9 + black: 107.9 + red: 65.7 + green: 75.7 + yellow: 47.2 + blue: 96.8 + magenta: 86 + cyan: 56.2 + white: 38.6 + brightBlack: 107.9 + brightRed: 65.7 + brightGreen: 75.7 + brightYellow: 47.2 + brightBlue: 96.8 + brightMagenta: 86 + brightCyan: 56.2 + brightWhite: 38.6 diff --git a/themes/ohled-themes-142-in-1--ohled-whitesmoke.yaml b/themes/ohled-themes-142-in-1--ohled-whitesmoke.yaml new file mode 100644 index 00000000..d554dc96 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-whitesmoke.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_WhiteSmoke)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#F5F5F5" + black: "#F5F5F5" + red: "#B4B4B4" + green: "#C4C4C4" + yellow: "#939393" + blue: "#E5E5E5" + magenta: "#D4D4D4" + cyan: "#A3A3A3" + white: "#838383" + brightBlack: "#F5F5F5" + brightRed: "#B4B4B4" + brightGreen: "#C4C4C4" + brightYellow: "#939393" + brightBlue: "#E5E5E5" + brightMagenta: "#D4D4D4" + brightCyan: "#A3A3A3" + brightWhite: "#838383" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 101.3 + black: 101.3 + red: 61.8 + green: 70.9 + yellow: 44.1 + blue: 91 + magenta: 80.5 + cyan: 52.5 + white: 36.2 + brightBlack: 101.3 + brightRed: 61.8 + brightGreen: 70.9 + brightYellow: 44.1 + brightBlue: 91 + brightMagenta: 80.5 + brightCyan: 52.5 + brightWhite: 36.2 diff --git a/themes/ohled-themes-142-in-1--ohled-yellow.yaml b/themes/ohled-themes-142-in-1--ohled-yellow.yaml new file mode 100644 index 00000000..f36a7fd8 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-yellow.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_Yellow)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFF00" + black: "#FFFF00" + red: "#BBBB00" + green: "#CCCC00" + yellow: "#999900" + blue: "#EEEE00" + magenta: "#DDDD00" + cyan: "#AAAA00" + white: "#888800" + brightBlack: "#FFFF00" + brightRed: "#BBBB00" + brightGreen: "#CCCC00" + brightYellow: "#999900" + brightBlue: "#EEEE00" + brightMagenta: "#DDDD00" + brightCyan: "#AAAA00" + brightWhite: "#888800" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 102.7 + black: 102.7 + red: 62.5 + green: 72 + yellow: 44.8 + blue: 92.1 + magenta: 81.8 + cyan: 53.4 + white: 36.6 + brightBlack: 102.7 + brightRed: 62.5 + brightGreen: 72 + brightYellow: 44.8 + brightBlue: 92.1 + brightMagenta: 81.8 + brightCyan: 53.4 + brightWhite: 36.6 diff --git a/themes/ohled-themes-142-in-1--ohled-yellowgreen.yaml b/themes/ohled-themes-142-in-1--ohled-yellowgreen.yaml new file mode 100644 index 00000000..520e9425 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-yellowgreen.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_YellowGreen)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#9ACD32" + black: "#9ACD32" + red: "#719625" + green: "#7BA428" + yellow: "#5C7B1E" + blue: "#90BF2F" + magenta: "#85B22B" + cyan: "#678921" + white: "#526D1B" + brightBlack: "#9ACD32" + brightRed: "#719625" + brightGreen: "#7BA428" + brightYellow: "#5C7B1E" + brightBlue: "#90BF2F" + brightMagenta: "#85B22B" + brightCyan: "#678921" + brightWhite: "#526D1B" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 67 + black: 67 + red: 39.8 + green: 46.3 + yellow: 28 + blue: 59.7 + magenta: 53.1 + cyan: 34 + white: 22.5 + brightBlack: 67 + brightRed: 39.8 + brightGreen: 46.3 + brightYellow: 28 + brightBlue: 59.7 + brightMagenta: 53.1 + brightCyan: 34 + brightWhite: 22.5 diff --git a/themes/ohled-themes-142-in-1--ohled-yelloworange.yaml b/themes/ohled-themes-142-in-1--ohled-yelloworange.yaml new file mode 100644 index 00000000..3f1fed6a --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-yelloworange.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_YellowOrange)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFAE42" + black: "#FFAE42" + red: "#BB8030" + green: "#CC8B35" + yellow: "#996828" + blue: "#EEA23E" + magenta: "#DD9739" + cyan: "#AA742C" + white: "#885D23" + brightBlack: "#FFAE42" + brightRed: "#BB8030" + brightGreen: "#CC8B35" + brightYellow: "#996828" + brightBlue: "#EEA23E" + brightMagenta: "#DD9739" + brightCyan: "#AA742C" + brightWhite: "#885D23" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 68.2 + black: 68.2 + red: 40.8 + green: 47.1 + yellow: 28.5 + blue: 60.8 + magenta: 54 + cyan: 34.5 + white: 23.1 + brightBlack: 68.2 + brightRed: 40.8 + brightGreen: 47.1 + brightYellow: 28.5 + brightBlue: 60.8 + brightMagenta: 54 + brightCyan: 34.5 + brightWhite: 23.1 diff --git a/themes/ohled-themes-142-in-1--ohled-yellowpink.yaml b/themes/ohled-themes-142-in-1--ohled-yellowpink.yaml new file mode 100644 index 00000000..a54e29c4 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-yellowpink.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_YellowPink)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFB0B0" + black: "#FFB0B0" + red: "#BB8181" + green: "#CC8D8D" + yellow: "#996A6A" + blue: "#EEA4A4" + magenta: "#DD9999" + cyan: "#AA7575" + white: "#885E5E" + brightBlack: "#FFB0B0" + brightRed: "#BB8181" + brightGreen: "#CC8D8D" + brightYellow: "#996A6A" + brightBlue: "#EEA4A4" + brightMagenta: "#DD9999" + brightCyan: "#AA7575" + brightWhite: "#885E5E" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 71.3 + black: 71.3 + red: 42.7 + green: 49.5 + yellow: 30.2 + blue: 63.7 + magenta: 56.7 + cyan: 36.1 + white: 24.3 + brightBlack: 71.3 + brightRed: 42.7 + brightGreen: 49.5 + brightYellow: 30.2 + brightBlue: 63.7 + brightMagenta: 56.7 + brightCyan: 36.1 + brightWhite: 24.3 diff --git a/themes/ohled-themes-142-in-1--ohled-yellowpurple.yaml b/themes/ohled-themes-142-in-1--ohled-yellowpurple.yaml new file mode 100644 index 00000000..b5529c22 --- /dev/null +++ b/themes/ohled-themes-142-in-1--ohled-yellowpurple.yaml @@ -0,0 +1,53 @@ +name: "OhLED Themes (142-in-1) (OhLED_YellowPurple)" +source: + marketplace_id: "Ophuscado.ohled-themes" + version: "1.0.1" + installs: 10965 + rating: 3 + ratings: 2 + author: "Ophuscado" + repo: "https://github.com/Ophuscado/vscode-ohled-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Ophuscado.ohled-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFB0FF" + black: "#FFB0FF" + red: "#BB81BB" + green: "#CC8DCC" + yellow: "#996A99" + blue: "#EEA4EE" + magenta: "#DD99DD" + cyan: "#AA75AA" + white: "#885E88" + brightBlack: "#FFB0FF" + brightRed: "#BB81BB" + brightGreen: "#CC8DCC" + brightYellow: "#996A99" + brightBlue: "#EEA4EE" + brightMagenta: "#DD99DD" + brightCyan: "#AA75AA" + brightWhite: "#885E88" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 75.1 + black: 75.1 + red: 45 + green: 52.2 + yellow: 32 + blue: 67.1 + magenta: 59.7 + cyan: 38.2 + white: 25.8 + brightBlack: 75.1 + brightRed: 45 + brightGreen: 52.2 + brightYellow: 32 + brightBlue: 67.1 + brightMagenta: 59.7 + brightCyan: 38.2 + brightWhite: 25.8 diff --git a/themes/oksolar-solarized-dark.yaml b/themes/oksolar-solarized-dark.yaml new file mode 100644 index 00000000..ea043fd4 --- /dev/null +++ b/themes/oksolar-solarized-dark.yaml @@ -0,0 +1,54 @@ +name: "OKSolar (Solarized (dark))" +source: + marketplace_id: "dalen.vscode-oksolar" + version: "0.0.2" + installs: 645 + rating: 5 + ratings: 2 + author: "dalen" + repo: "https://github.com/dalen/vscode-oksolar" + url: "https://marketplace.visualstudio.com/items?itemName=dalen.vscode-oksolar" + formats: + zed: "https://raw.githubusercontent.com/dalen/vscode-oksolar/master/themes/oklabs-solarized-dark-color-theme.json" +colors: + bg: "#002D38" + fg: "#98A8A8" + black: "#093946" + red: "#F23749" + green: "#819500" + yellow: "#AC8300" + blue: "#2B90D8" + magenta: "#DD459D" + cyan: "#259D94" + white: "#F1E9D2" + brightBlack: "#002D38" + brightRed: "#D56500" + brightGreen: "#5B7279" + brightYellow: "#657377" + brightBlue: "#98A8A8" + brightMagenta: "#7D80D1" + brightCyan: "#8FAAAB" + brightWhite: "#F8F5EC" +meta: + mode: "dark" + accent: "orange" + hue: 219 + pair: null + contrast: + fg: 49.6 + black: 0 + red: 33.3 + green: 37 + yellow: 35.6 + blue: 36.3 + magenta: 32.7 + cyan: 37.7 + white: 89.9 + brightBlack: 0 + brightRed: 34.1 + brightGreen: 22.8 + brightYellow: 23.8 + brightBlue: 49.6 + brightMagenta: 34.7 + brightCyan: 49.7 + brightWhite: 97.5 diff --git a/themes/oksolar-solarized-light.yaml b/themes/oksolar-solarized-light.yaml new file mode 100644 index 00000000..f65e270b --- /dev/null +++ b/themes/oksolar-solarized-light.yaml @@ -0,0 +1,54 @@ +name: "OKSolar (Solarized (light))" +source: + marketplace_id: "dalen.vscode-oksolar" + version: "0.0.2" + installs: 645 + rating: 5 + ratings: 2 + author: "dalen" + repo: "https://github.com/dalen/vscode-oksolar" + url: "https://marketplace.visualstudio.com/items?itemName=dalen.vscode-oksolar" + formats: + zed: "https://raw.githubusercontent.com/dalen/vscode-oksolar/master/themes/oklabs-solarized-dark-color-theme.json" +colors: + bg: "#F8F5EC" + fg: "#657377" + black: "#093946" + red: "#F23749" + green: "#819500" + yellow: "#AC8300" + blue: "#2B90D8" + magenta: "#DD459D" + cyan: "#259D94" + white: "#F1E9D2" + brightBlack: "#5B7279" + brightRed: "#D56500" + brightGreen: "#5B7279" + brightYellow: "#657377" + brightBlue: "#98A8A8" + brightMagenta: "#7D80D1" + brightCyan: "#8FAAAB" + brightWhite: "#F1E9D2" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 68.1 + black: 92.1 + red: 58.6 + green: 55 + yellow: 56.3 + blue: 55.7 + magenta: 59.2 + cyan: 54.2 + white: 0 + brightBlack: 69.2 + brightRed: 57.8 + brightGreen: 69.2 + brightYellow: 68.1 + brightBlue: 42.6 + brightMagenta: 57.2 + brightCyan: 42.6 + brightWhite: 0 diff --git a/themes/oldschool-theme-windows-95-edition.yaml b/themes/oldschool-theme-windows-95-edition.yaml new file mode 100644 index 00000000..12c05285 --- /dev/null +++ b/themes/oldschool-theme-windows-95-edition.yaml @@ -0,0 +1,53 @@ +name: "Oldschool Theme: Windows 95 Edition" +source: + marketplace_id: "ericson-willians.oldschool-theme-win95-edition" + version: "1.0.0" + installs: 6541 + rating: 5 + ratings: 2 + author: "Ericson Willians Rocha Pires" + repo: "https://github.com/EricsonWillians/oldschool-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.oldschool-theme-win95-edition" + formats: null +colors: + bg: "#000000" + fg: "#00FF00" + black: "#000000" + red: "#FF0000" + green: "#33FF00" + yellow: "#FFFF00" + blue: "#3333FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#CCCCCC" + brightBlack: "#666666" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#FFFF66" + brightBlue: "#6666FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 86.5 + black: 0 + red: 37.5 + green: 86.8 + yellow: 102.7 + blue: 19.8 + magenta: 46.2 + cyan: 92.2 + white: 75.7 + brightBlack: 23 + brightRed: 47.9 + brightGreen: 89 + brightYellow: 103.3 + brightBlue: 32.6 + brightMagenta: 54.8 + brightCyan: 94 + brightWhite: 107.9 diff --git a/themes/omni-dark--omni-customized-dark.yaml b/themes/omni-dark--omni-customized-dark.yaml new file mode 100644 index 00000000..df77279a --- /dev/null +++ b/themes/omni-dark--omni-customized-dark.yaml @@ -0,0 +1,53 @@ +name: "Omni Dark (Omni Customized Dark)" +source: + marketplace_id: "adrian7123.theme-omni-customized-dark" + version: "1.0.2" + installs: 4031 + rating: 0 + ratings: 0 + author: "adrian7123" + repo: "https://github.com/adrian7123/vs-code-omni-customized-dark" + url: "https://marketplace.visualstudio.com/items?itemName=adrian7123.theme-omni-customized-dark" + formats: null +colors: + bg: "#000000" + fg: "#E1E1E6" + black: "#000000" + red: "#FF79C6" + green: "#67E480" + yellow: "#E7DE79" + blue: "#78D1E1" + magenta: "#988BC7" + cyan: "#A1EFE4" + white: "#E1E1E6" + brightBlack: "#626483" + brightRed: "#ED4556" + brightGreen: "#00F769" + brightYellow: "#E7DE79" + brightBlue: "#78D1E1" + brightMagenta: "#988BC7" + brightCyan: "#A4FFFF" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 88.7 + black: 0 + red: 55.6 + green: 75.6 + yellow: 84.7 + blue: 71 + magenta: 44.3 + cyan: 88.3 + white: 88.7 + brightBlack: 23.2 + brightRed: 37.8 + brightGreen: 82.9 + brightYellow: 84.7 + brightBlue: 71 + brightMagenta: 44.3 + brightCyan: 97.8 + brightWhite: 102.8 diff --git a/themes/omni-dracula-dark--focus-colors.yaml b/themes/omni-dracula-dark--focus-colors.yaml new file mode 100644 index 00000000..fdcce421 --- /dev/null +++ b/themes/omni-dracula-dark--focus-colors.yaml @@ -0,0 +1,53 @@ +name: "Omni + Dracula + Dark (Focus-Colors)" +source: + marketplace_id: "Wellington-A.omni-dracula-dark" + version: "1.0.7" + installs: 4767 + rating: 0 + ratings: 0 + author: "Wellington-A" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" + formats: null +colors: + bg: "#000B1D" + fg: "#0087FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 252 + pair: null + contrast: + fg: 39.2 + black: 0 + red: 27.5 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/omni-dracula-dark--omni-dracula-dark.yaml b/themes/omni-dracula-dark--omni-dracula-dark.yaml new file mode 100644 index 00000000..a27c5a37 --- /dev/null +++ b/themes/omni-dracula-dark--omni-dracula-dark.yaml @@ -0,0 +1,53 @@ +name: "Omni + Dracula + Dark (Omni Dracula Dark)" +source: + marketplace_id: "Wellington-A.omni-dracula-dark" + version: "1.0.7" + installs: 4767 + rating: 0 + ratings: 0 + author: "Wellington-A" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" + formats: null +colors: + bg: "#0A0A0A" + fg: "#FFFFFF" + black: "#545454" + red: "#F06B6B" + green: "#4CDDA6" + yellow: "#E5E510" + blue: "#42D9FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#A3A3A3" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3BC1EA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.7 + black: 15.6 + red: 45.7 + green: 72 + yellow: 86.5 + blue: 73.8 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 52.3 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 61.4 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/omni-dracula-dark--omni-monokai-dark.yaml b/themes/omni-dracula-dark--omni-monokai-dark.yaml new file mode 100644 index 00000000..26b669ba --- /dev/null +++ b/themes/omni-dracula-dark--omni-monokai-dark.yaml @@ -0,0 +1,53 @@ +name: "Omni + Dracula + Dark (Omni Monokai Dark)" +source: + marketplace_id: "Wellington-A.omni-dracula-dark" + version: "1.0.7" + installs: 4767 + rating: 0 + ratings: 0 + author: "Wellington-A" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Wellington-A.omni-dracula-dark" + formats: null +colors: + bg: "#0A0A0A" + fg: "#F7E767" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 90.6 + black: 7.3 + red: 39.5 + green: 87 + yellow: 92.2 + blue: 38.3 + magenta: 46.1 + cyan: 77 + white: 52.3 + brightBlack: 22.9 + brightRed: 48 + brightGreen: 93.4 + brightYellow: 80.3 + brightBlue: 72.4 + brightMagenta: 67.7 + brightCyan: 90.5 + brightWhite: 73.7 diff --git a/themes/omni-dracula-vscode-theme--omni-dracula-theme-tradicional-contrast.yaml b/themes/omni-dracula-vscode-theme--omni-dracula-theme-tradicional-contrast.yaml new file mode 100644 index 00000000..36c59398 --- /dev/null +++ b/themes/omni-dracula-vscode-theme--omni-dracula-theme-tradicional-contrast.yaml @@ -0,0 +1,53 @@ +name: "Omni Dracula VSCode Theme (Omni Dracula Theme Tradicional Contrast)" +source: + marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" + version: "1.0.7" + installs: 36339 + rating: 5 + ratings: 4 + author: "Thiago Lúcio Bittencourt" + repo: "https://github.com/thiagolucio/omni-dracula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" + formats: null +colors: + bg: "#1B202C" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 267 + pair: null + contrast: + fg: 100.8 + black: 0 + red: 42.3 + green: 83.7 + yellow: 97.4 + blue: 52.5 + magenta: 53.4 + cyan: 82.8 + white: 100.8 + brightBlack: 26.9 + brightRed: 47.7 + brightGreen: 87.9 + brightYellow: 102.4 + brightBlue: 65 + brightMagenta: 61.5 + brightCyan: 95.6 + brightWhite: 105.7 diff --git a/themes/omni-dracula-vscode-theme--omni-dracula-theme-tradicional.yaml b/themes/omni-dracula-vscode-theme--omni-dracula-theme-tradicional.yaml new file mode 100644 index 00000000..af184f0c --- /dev/null +++ b/themes/omni-dracula-vscode-theme--omni-dracula-theme-tradicional.yaml @@ -0,0 +1,53 @@ +name: "Omni Dracula VSCode Theme (Omni Dracula Theme Tradicional)" +source: + marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" + version: "1.0.7" + installs: 36339 + rating: 5 + ratings: 4 + author: "Thiago Lúcio Bittencourt" + repo: "https://github.com/thiagolucio/omni-dracula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" + formats: null +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: null + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 50.7 + magenta: 51.6 + cyan: 81 + white: 99 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/omni-dracula-vscode-theme--omni-dracula-theme.yaml b/themes/omni-dracula-vscode-theme--omni-dracula-theme.yaml new file mode 100644 index 00000000..ad4f89e4 --- /dev/null +++ b/themes/omni-dracula-vscode-theme--omni-dracula-theme.yaml @@ -0,0 +1,53 @@ +name: "Omni Dracula VSCode Theme (Omni Dracula Theme)" +source: + marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" + version: "1.0.7" + installs: 36339 + rating: 5 + ratings: 4 + author: "Thiago Lúcio Bittencourt" + repo: "https://github.com/thiagolucio/omni-dracula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" + formats: null +colors: + bg: "#282A36" + fg: "#FFFFFF" + black: "#545454" + red: "#F06B6B" + green: "#4CDDA6" + yellow: "#E5E510" + blue: "#42D9FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#A3A3A3" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3BC1EA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + pair: null + contrast: + fg: 103.9 + black: 11.8 + red: 41.9 + green: 68.1 + yellow: 82.7 + blue: 70 + magenta: 26.8 + cyan: 44.6 + white: 87.1 + brightBlack: 48.5 + brightRed: 35.6 + brightGreen: 60.6 + brightYellow: 92.7 + brightBlue: 57.6 + brightMagenta: 42.4 + brightCyan: 52.4 + brightWhite: 87.1 diff --git a/themes/omni-dracula-vscode-theme--omni-dracula-wine-theme-tradicional.yaml b/themes/omni-dracula-vscode-theme--omni-dracula-wine-theme-tradicional.yaml new file mode 100644 index 00000000..e9990581 --- /dev/null +++ b/themes/omni-dracula-vscode-theme--omni-dracula-wine-theme-tradicional.yaml @@ -0,0 +1,53 @@ +name: "Omni Dracula VSCode Theme (Omni Dracula Wine Theme Tradicional)" +source: + marketplace_id: "ThiagoLcioBittencourt.omni-dracula-theme" + version: "1.0.7" + installs: 36339 + rating: 5 + ratings: 4 + author: "Thiago Lúcio Bittencourt" + repo: "https://github.com/thiagolucio/omni-dracula-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ThiagoLcioBittencourt.omni-dracula-theme" + formats: null +colors: + bg: "#2C2122" + fg: "#E6DAE0" + black: "#2C2122" + red: "#FA7F7F" + green: "#8AFD80" + yellow: "#FFFF81" + blue: "#B382D9" + magenta: "#FF82C3" + cyan: "#82FFEC" + white: "#E6DAE0" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#2CDA9D" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#F786AA" + brightCyan: "#A4FFFF" + brightWhite: "#FFF2F9" +meta: + mode: "dark" + accent: "green" + hue: 12 + pair: null + contrast: + fg: 83.3 + black: 0 + red: 50.7 + green: 87.7 + yellow: 101 + blue: 43.2 + magenta: 55 + cyan: 91.8 + white: 83.3 + brightBlack: 26.3 + brightRed: 47.1 + brightGreen: 66.9 + brightYellow: 101.8 + brightBlue: 64.4 + brightMagenta: 53.4 + brightCyan: 95.1 + brightWhite: 98.8 diff --git a/themes/omni-pro-theme--omni-pro.yaml b/themes/omni-pro-theme--omni-pro.yaml new file mode 100644 index 00000000..3e8b4ae9 --- /dev/null +++ b/themes/omni-pro-theme--omni-pro.yaml @@ -0,0 +1,53 @@ +name: "Omni PRO Theme (Omni PRO)" +source: + marketplace_id: "viniciusamelio.theme-omni-pro" + version: "1.0.15" + installs: 2486 + rating: 5 + ratings: 1 + author: "viniciusamelio" + repo: "https://github.com/viniciusamelio/omni-pro" + url: "https://marketplace.visualstudio.com/items?itemName=viniciusamelio.theme-omni-pro" + formats: null +colors: + bg: "#191622" + fg: "#E1E1E6" + black: "#201B2D" + red: "#FF79C6" + green: "#67E480" + yellow: "#E7DE79" + blue: "#78D1E1" + magenta: "#B78AC9" + cyan: "#A1EFE4" + white: "#E1E1E6" + brightBlack: "#B78AC9" + brightRed: "#ED4556" + brightGreen: "#00F769" + brightYellow: "#E7DE79" + brightBlue: "#78D1E1" + brightMagenta: "#B78AC9" + brightCyan: "#A4FFFF" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "green" + hue: 296 + pair: null + contrast: + fg: 87.6 + black: 0 + red: 54.5 + green: 74.5 + yellow: 83.6 + blue: 69.9 + magenta: 46.9 + cyan: 87.2 + white: 87.6 + brightBlack: 46.9 + brightRed: 36.7 + brightGreen: 81.8 + brightYellow: 83.6 + brightBlue: 69.9 + brightMagenta: 46.9 + brightCyan: 96.7 + brightWhite: 101.7 diff --git a/themes/omni-theme-customized.yaml b/themes/omni-theme-customized.yaml new file mode 100644 index 00000000..f39bee62 --- /dev/null +++ b/themes/omni-theme-customized.yaml @@ -0,0 +1,53 @@ +name: "Omni Theme Customized" +source: + marketplace_id: "dtsf.theme-omni-customized" + version: "1.0.10" + installs: 7088 + rating: 0 + ratings: 0 + author: "datsfilipe" + repo: "https://github.com/datsfilipe/vs-code-omni-customized" + url: "https://marketplace.visualstudio.com/items?itemName=dtsf.theme-omni-customized" + formats: null +colors: + bg: "#191919" + fg: "#E1E1E6" + black: "#161616" + red: "#FF79C6" + green: "#67E480" + yellow: "#E7DE79" + blue: "#78D1E1" + magenta: "#988BC7" + cyan: "#A1EFE4" + white: "#E1E1E6" + brightBlack: "#626483" + brightRed: "#ED4556" + brightGreen: "#00F769" + brightYellow: "#E7DE79" + brightBlue: "#78D1E1" + brightMagenta: "#988BC7" + brightCyan: "#A4FFFF" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 87.5 + black: 0 + red: 54.4 + green: 74.4 + yellow: 83.4 + blue: 69.7 + magenta: 43 + cyan: 87.1 + white: 87.5 + brightBlack: 21.9 + brightRed: 36.6 + brightGreen: 81.7 + brightYellow: 83.4 + brightBlue: 69.7 + brightMagenta: 43 + brightCyan: 96.6 + brightWhite: 101.6 diff --git a/themes/omni-theme.yaml b/themes/omni-theme.yaml new file mode 100644 index 00000000..b3cbb669 --- /dev/null +++ b/themes/omni-theme.yaml @@ -0,0 +1,53 @@ +name: "Omni Theme" +source: + marketplace_id: "rocketseat.theme-omni" + version: "1.0.12" + installs: 971834 + rating: 4.9 + ratings: 30 + author: "Rocketseat" + repo: "https://github.com/getomni/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=rocketseat.theme-omni" + formats: null +colors: + bg: "#191622" + fg: "#E1E1E6" + black: "#201B2D" + red: "#FF79C6" + green: "#67E480" + yellow: "#E7DE79" + blue: "#78D1E1" + magenta: "#988BC7" + cyan: "#A1EFE4" + white: "#E1E1E6" + brightBlack: "#626483" + brightRed: "#ED4556" + brightGreen: "#00F769" + brightYellow: "#E7DE79" + brightBlue: "#78D1E1" + brightMagenta: "#988BC7" + brightCyan: "#A4FFFF" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "green" + hue: 296 + pair: null + contrast: + fg: 87.6 + black: 0 + red: 54.5 + green: 74.5 + yellow: 83.6 + blue: 69.9 + magenta: 43.2 + cyan: 87.2 + white: 87.6 + brightBlack: 22.1 + brightRed: 36.7 + brightGreen: 81.8 + brightYellow: 83.6 + brightBlue: 69.9 + brightMagenta: 43.2 + brightCyan: 96.7 + brightWhite: 101.7 diff --git a/themes/one-dark-night-theme--one-dark-night-blue-boy.yaml b/themes/one-dark-night-theme--one-dark-night-blue-boy.yaml new file mode 100644 index 00000000..2094071b --- /dev/null +++ b/themes/one-dark-night-theme--one-dark-night-blue-boy.yaml @@ -0,0 +1,53 @@ +name: "One Dark Night Theme (One Dark Night - Blue Boy)" +source: + marketplace_id: "sojibahmed.one-dark-night-theme" + version: "0.0.7" + installs: 1366 + rating: 0 + ratings: 0 + author: "sojibAhmedSafi" + repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" + formats: null +colors: + bg: "#001B36" + fg: "#939393" + black: "#000000" + red: "#940000" + green: "#00774A" + yellow: "#8E7400" + blue: "#004194" + magenta: "#860086" + cyan: "#06989A" + white: "#B2B2B2" + brightBlack: "#686868" + brightRed: "#BA0000" + brightGreen: "#00965A" + brightYellow: "#8A8A00" + brightBlue: "#0052A9" + brightMagenta: "#8A008A" + brightCyan: "#008E8E" + brightWhite: "#9B9B9B" +meta: + mode: "dark" + accent: "pink" + hue: 250 + pair: null + contrast: + fg: 42.5 + black: 0 + red: 11.7 + green: 22.7 + yellow: 28.9 + blue: 9.3 + magenta: 12.4 + cyan: 37.9 + white: 59.1 + brightBlack: 22.3 + brightRed: 19.6 + brightGreen: 35.1 + brightYellow: 35.9 + brightBlue: 15 + brightMagenta: 13.3 + brightCyan: 33.4 + brightWhite: 46.6 diff --git a/themes/one-dark-night-theme--one-dark-night-eye-care.yaml b/themes/one-dark-night-theme--one-dark-night-eye-care.yaml new file mode 100644 index 00000000..87df2a01 --- /dev/null +++ b/themes/one-dark-night-theme--one-dark-night-eye-care.yaml @@ -0,0 +1,53 @@ +name: "One Dark Night Theme (One Dark Night - Eye Care)" +source: + marketplace_id: "sojibahmed.one-dark-night-theme" + version: "0.0.7" + installs: 1366 + rating: 0 + ratings: 0 + author: "sojibAhmedSafi" + repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" + formats: null +colors: + bg: "#171C2A" + fg: "#ADADAD" + black: "#5A5A5A" + red: "#9D0000" + green: "#006D5D" + yellow: "#997729" + blue: "#2472C8" + magenta: "#A700A7" + cyan: "#007B99" + white: "#C0C0C0" + brightBlack: "#666666" + brightRed: "#CF0000" + brightGreen: "#00B298" + brightYellow: "#7D5700" + brightBlue: "#3B8EEA" + brightMagenta: "#CF00CF" + brightCyan: "#009AC0" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: 269 + pair: null + contrast: + fg: 56.2 + black: 16.5 + red: 13.5 + green: 19.5 + yellow: 31.4 + blue: 26.8 + magenta: 20.1 + cyan: 26.7 + white: 67 + brightBlack: 21.4 + brightRed: 24.3 + brightGreen: 48.8 + brightYellow: 18.3 + brightBlue: 39.4 + brightMagenta: 30.6 + brightCyan: 40.5 + brightWhite: 72.3 diff --git a/themes/one-dark-night-theme--one-dark-night-minimalist.yaml b/themes/one-dark-night-theme--one-dark-night-minimalist.yaml new file mode 100644 index 00000000..a795f891 --- /dev/null +++ b/themes/one-dark-night-theme--one-dark-night-minimalist.yaml @@ -0,0 +1,53 @@ +name: "One Dark Night Theme (One Dark Night - Minimalist)" +source: + marketplace_id: "sojibahmed.one-dark-night-theme" + version: "0.0.7" + installs: 1366 + rating: 0 + ratings: 0 + author: "sojibAhmedSafi" + repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" + formats: null +colors: + bg: "#181A26" + fg: "#A3A3A3" + black: "#000000" + red: "#940000" + green: "#00774A" + yellow: "#8E7400" + blue: "#004194" + magenta: "#860086" + cyan: "#06989A" + white: "#B2B2B2" + brightBlack: "#686868" + brightRed: "#BA0000" + brightGreen: "#00965A" + brightYellow: "#8A8A00" + brightBlue: "#0052A9" + brightMagenta: "#8A008A" + brightCyan: "#008E8E" + brightWhite: "#9B9B9B" +meta: + mode: "dark" + accent: "pink" + hue: 277 + pair: null + contrast: + fg: 51 + black: 0 + red: 11.9 + green: 22.8 + yellow: 29.1 + blue: 9.5 + magenta: 12.5 + cyan: 38.1 + white: 59.2 + brightBlack: 22.5 + brightRed: 19.8 + brightGreen: 35.3 + brightYellow: 36.1 + brightBlue: 15.1 + brightMagenta: 13.4 + brightCyan: 33.6 + brightWhite: 46.8 diff --git a/themes/one-dark-night-theme--one-dark-night-professional.yaml b/themes/one-dark-night-theme--one-dark-night-professional.yaml new file mode 100644 index 00000000..16b9512f --- /dev/null +++ b/themes/one-dark-night-theme--one-dark-night-professional.yaml @@ -0,0 +1,53 @@ +name: "One Dark Night Theme (One Dark Night - Professional)" +source: + marketplace_id: "sojibahmed.one-dark-night-theme" + version: "0.0.7" + installs: 1366 + rating: 0 + ratings: 0 + author: "sojibAhmedSafi" + repo: "https://github.com/SojibAhmed114/One-Dark-Night-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=sojibahmed.one-dark-night-theme" + formats: null +colors: + bg: "#030C1B" + fg: "#BFBFBF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + pair: null + contrast: + fg: 67.8 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/one-dark-plus-theme.yaml b/themes/one-dark-plus-theme.yaml new file mode 100644 index 00000000..33ef1fef --- /dev/null +++ b/themes/one-dark-plus-theme.yaml @@ -0,0 +1,53 @@ +name: "One Dark Plus+ Theme" +source: + marketplace_id: "kavinkumar.one-dark-custom-theme" + version: "0.0.4" + installs: 223 + rating: 5 + ratings: 1 + author: "kavinkumar" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kavinkumar.one-dark-custom-theme" + formats: null +colors: + bg: "#191818" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.4 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/one-dark-pro--one-dark-pro.yaml b/themes/one-dark-pro--one-dark-pro.yaml new file mode 100644 index 00000000..72548161 --- /dev/null +++ b/themes/one-dark-pro--one-dark-pro.yaml @@ -0,0 +1,53 @@ +name: "One Dark Pro (One Dark Pro)" +source: + marketplace_id: "zhuangtongfa.Material-theme" + version: "3.19.0" + installs: 12050723 + rating: 4.67 + ratings: 221 + author: "binaryify" + repo: "https://github.com/Binaryify/OneDark-Pro" + url: "https://marketplace.visualstudio.com/items?itemName=zhuangtongfa.Material-theme" + formats: null +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 33.5 + green: 57.2 + yellow: 45.4 + blue: 46.5 + magenta: 35.9 + cyan: 49.3 + white: 79.8 + brightBlack: 12.3 + brightRed: 42.9 + brightGreen: 73.6 + brightYellow: 58 + brightBlue: 60.5 + brightMagenta: 47.1 + brightCyan: 64.6 + brightWhite: 87.4 diff --git a/themes/one-dark-pro-colorblind-deuteranopia--onedark-pro-suhayb-s-version-v2.yaml b/themes/one-dark-pro-colorblind-deuteranopia--onedark-pro-suhayb-s-version-v2.yaml new file mode 100644 index 00000000..fd3179bd --- /dev/null +++ b/themes/one-dark-pro-colorblind-deuteranopia--onedark-pro-suhayb-s-version-v2.yaml @@ -0,0 +1,53 @@ +name: "One Dark Pro Colorblind (Deuteranopia) (OneDark Pro - Suhayb's Version v2)" +source: + marketplace_id: "Suhaybu.onedarkpro-colorblind" + version: "1.0.1" + installs: 2281 + rating: 5 + ratings: 1 + author: "Suhaybu" + repo: "https://github.com/suhaybu/onedarkpro-colorblind" + url: "https://marketplace.visualstudio.com/items?itemName=Suhaybu.onedarkpro-colorblind" + formats: null +colors: + bg: "#282C34" + fg: "#E4EBFF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 90.7 + black: 0 + red: 33.5 + green: 57.2 + yellow: 45.4 + blue: 46.5 + magenta: 35.9 + cyan: 49.3 + white: 79.8 + brightBlack: 12.3 + brightRed: 42.9 + brightGreen: 73.6 + brightYellow: 58 + brightBlue: 60.5 + brightMagenta: 47.1 + brightCyan: 64.6 + brightWhite: 87.4 diff --git a/themes/one-dark-ruby.yaml b/themes/one-dark-ruby.yaml new file mode 100644 index 00000000..39b8432d --- /dev/null +++ b/themes/one-dark-ruby.yaml @@ -0,0 +1,53 @@ +name: "One Dark Ruby" +source: + marketplace_id: "wilfison.one-dark-ruby" + version: "0.0.4" + installs: 229 + rating: 0 + ratings: 0 + author: "Wilfison" + repo: "https://github.com/wilfison/one-dark-ruby" + url: "https://marketplace.visualstudio.com/items?itemName=wilfison.one-dark-ruby" + formats: null +colors: + bg: "#1E1E1E" + fg: "#ABB2BF" + black: "#2D3139" + red: "#F94B65" + green: "#89CA78" + yellow: "#58EB7E" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#89CA78" + brightYellow: "#58EB7E" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 58.6 + black: 0 + red: 39.9 + green: 63.3 + yellow: 76.6 + blue: 53.8 + magenta: 44.3 + cyan: 53.7 + white: 82.2 + brightBlack: 34.7 + brightRed: 37.6 + brightGreen: 63.3 + brightYellow: 76.6 + brightBlue: 40.6 + brightMagenta: 11.9 + brightCyan: 53.7 + brightWhite: 82.2 diff --git a/themes/one-dark-theme--one-dark.yaml b/themes/one-dark-theme--one-dark.yaml new file mode 100644 index 00000000..f8a7f5da --- /dev/null +++ b/themes/one-dark-theme--one-dark.yaml @@ -0,0 +1,53 @@ +name: "One Dark Theme (One Dark)" +source: + marketplace_id: "mskelton.one-dark-theme" + version: "1.14.3" + installs: 128138 + rating: 5 + ratings: 10 + author: "Mark Skelton" + repo: "https://github.com/one-dark/vscode-one-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mskelton.one-dark-theme" + formats: null +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 38.3 + brightMagenta: 41.9 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/one-darker-pro--one-darker-pro.yaml b/themes/one-darker-pro--one-darker-pro.yaml new file mode 100644 index 00000000..2697614a --- /dev/null +++ b/themes/one-darker-pro--one-darker-pro.yaml @@ -0,0 +1,53 @@ +name: "One Darker Pro (One Darker Pro)" +source: + marketplace_id: "drekevist.one-darker-pro" + version: "0.1.0" + installs: 7188 + rating: 5 + ratings: 1 + author: "drekevist" + repo: "https://github.com/drekevist/one-darker-pro" + url: "https://marketplace.visualstudio.com/items?itemName=drekevist.one-darker-pro" + formats: null +colors: + bg: "#0F0F0F" + fg: "#DBDBDB" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 84.4 + black: 0 + red: 42.7 + green: 62.9 + yellow: 71.2 + blue: 55.3 + magenta: 45.8 + cyan: 55.2 + white: 83.7 + brightBlack: 36.2 + brightRed: 39.1 + brightGreen: 62.9 + brightYellow: 71.2 + brightBlue: 42.1 + brightMagenta: 13.4 + brightCyan: 55.2 + brightWhite: 83.7 diff --git a/themes/one-darkpuccin--one-darkpuccin-night.yaml b/themes/one-darkpuccin--one-darkpuccin-night.yaml new file mode 100644 index 00000000..6199d0fd --- /dev/null +++ b/themes/one-darkpuccin--one-darkpuccin-night.yaml @@ -0,0 +1,53 @@ +name: "One DarkPuccin (One DarkPuccin Night)" +source: + marketplace_id: "ni3rav.one-darkppuccin" + version: "0.0.4" + installs: 942 + rating: 5 + ratings: 2 + author: "ni3rav" + repo: "https://github.com/ni3rav/one-darkppuccin" + url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.one-darkppuccin" + formats: null +colors: + bg: "#16191D" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 59.2 + black: 8.7 + red: 36.5 + green: 60.2 + yellow: 48.4 + blue: 49.5 + magenta: 38.9 + cyan: 52.3 + white: 82.9 + brightBlack: 15.3 + brightRed: 45.9 + brightGreen: 76.6 + brightYellow: 61 + brightBlue: 63.6 + brightMagenta: 50.1 + brightCyan: 67.6 + brightWhite: 90.5 diff --git a/themes/one-darkpuccin--one-darkpuccin-vivid.yaml b/themes/one-darkpuccin--one-darkpuccin-vivid.yaml new file mode 100644 index 00000000..7818af6d --- /dev/null +++ b/themes/one-darkpuccin--one-darkpuccin-vivid.yaml @@ -0,0 +1,53 @@ +name: "One DarkPuccin (One DarkPuccin Vivid)" +source: + marketplace_id: "ni3rav.one-darkppuccin" + version: "0.0.4" + installs: 942 + rating: 5 + ratings: 2 + author: "ni3rav" + repo: "https://github.com/ni3rav/one-darkppuccin" + url: "https://marketplace.visualstudio.com/items?itemName=ni3rav.one-darkppuccin" + formats: null +colors: + bg: "#2D3138" + fg: "#B0B4BA" + black: "#444B58" + red: "#E45C68" + green: "#91C96A" + yellow: "#D79758" + blue: "#4FADF8" + magenta: "#C769E5" + cyan: "#47BBC9" + white: "#DCE0E5" + brightBlack: "#555C6D" + brightRed: "#FF6875" + brightGreen: "#AAE57B" + brightYellow: "#F4AA62" + brightBlue: "#52CCFF" + brightMagenta: "#E67BFF" + brightCyan: "#51D9E8" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "pink" + hue: 262 + pair: null + contrast: + fg: 56.3 + black: 0 + red: 34.8 + green: 59.7 + yellow: 48.1 + blue: 49.3 + magenta: 37.8 + cyan: 52.2 + white: 82.3 + brightBlack: 13.6 + brightRed: 43.4 + brightGreen: 75.5 + brightYellow: 59.9 + brightBlue: 63.2 + brightMagenta: 49.4 + brightCyan: 67.9 + brightWhite: 88.9 diff --git a/themes/one-eyecare-theme--onedark.yaml b/themes/one-eyecare-theme--onedark.yaml new file mode 100644 index 00000000..716c8498 --- /dev/null +++ b/themes/one-eyecare-theme--onedark.yaml @@ -0,0 +1,53 @@ +name: "One EyeCare Theme (OneDark)" +source: + marketplace_id: "NazmusSayad.one-eye-care" + version: "1.0.0" + installs: 650 + rating: 5 + ratings: 1 + author: "Nazmus Sayad" + repo: "git+github.com:nazmussayad/vscode-theme.onnokicu--" + url: "https://marketplace.visualstudio.com/items?itemName=NazmusSayad.one-eye-care" + formats: null +colors: + bg: "#21252C" + fg: "#ABB2BF" + black: "#4A4F5A" + red: "#EE5D69" + green: "#97C775" + yellow: "#B68353" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#CCCCCC" + brightBlack: "#616A7B" + brightRed: "#FE808A" + brightGreen: "#C2DEAD" + brightYellow: "#D1A47A" + brightBlue: "#93CFFF" + brightMagenta: "#E0A8F1" + brightCyan: "#82D2DC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 262 + pair: null + contrast: + fg: 57.5 + black: 10.9 + red: 39.5 + green: 62 + yellow: 38.6 + blue: 52.8 + magenta: 43.3 + cyan: 52.7 + white: 72.8 + brightBlack: 21.7 + brightRed: 51.9 + brightGreen: 78.4 + brightYellow: 54.8 + brightBlue: 70.8 + brightMagenta: 63.5 + brightCyan: 69 + brightWhite: 105 diff --git a/themes/one-hunter-theme--one-hunter-theme.yaml b/themes/one-hunter-theme--one-hunter-theme.yaml new file mode 100644 index 00000000..7a2373c2 --- /dev/null +++ b/themes/one-hunter-theme--one-hunter-theme.yaml @@ -0,0 +1,53 @@ +name: "One Hunter Theme (One Hunter Theme)" +source: + marketplace_id: "RaillyHugo.one-hunter" + version: "1.4.0" + installs: 36303 + rating: 5 + ratings: 7 + author: "Railly Hugo" + repo: "https://github.com/Railly/one-hunter-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=RaillyHugo.one-hunter" + formats: null +colors: + bg: "#000000" + fg: "#DCE3EA" + black: "#34393E" + red: "#E61F44" + green: "#5BD1B9" + yellow: "#43AAF9" + blue: "#43AAF9" + magenta: "#DD4F7D" + cyan: "#B267E6" + white: "#DCE3EA" + brightBlack: "#454D54" + brightRed: "#E61F44" + brightGreen: "#B7F0E5" + brightYellow: "#A7D1F5" + brightBlue: "#A7D1F5" + brightMagenta: "#DD4F7D" + brightCyan: "#D7C9F0" + brightWhite: "#DCE3EA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.2 + black: 0 + red: 32.4 + green: 67.6 + yellow: 53 + blue: 53 + magenta: 36.8 + cyan: 39.4 + white: 89.2 + brightBlack: 12.7 + brightRed: 32.4 + brightGreen: 90.8 + brightYellow: 75.8 + brightBlue: 75.8 + brightMagenta: 36.8 + brightCyan: 77.6 + brightWhite: 89.2 diff --git a/themes/one-light-italic--one-light-italic.yaml b/themes/one-light-italic--one-light-italic.yaml new file mode 100644 index 00000000..8ef20fee --- /dev/null +++ b/themes/one-light-italic--one-light-italic.yaml @@ -0,0 +1,54 @@ +name: "One Light Italic (One Light Italic)" +source: + marketplace_id: "laggardkernel.vscode-theme-onelight" + version: "0.2.1" + installs: 10333 + rating: 0 + ratings: 0 + author: "laggardkernel" + repo: "https://github.com/laggardkernel/vscode-theme-onelight" + url: "https://marketplace.visualstudio.com/items?itemName=laggardkernel.vscode-theme-onelight" + formats: + sublime: "https://raw.githubusercontent.com/laggardkernel/vscode-theme-onelight/master/themes/one-half-light-italic.tmTheme" +colors: + bg: "#FAFAFA" + fg: "#24292E" + black: "#383A42" + red: "#E45649" + green: "#50A14F" + yellow: "#C18401" + blue: "#2F5AF3" + magenta: "#A626A4" + cyan: "#00B7EB" + white: "#FAFAFA" + brightBlack: "#797979" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#4B72FF" + brightMagenta: "#C678DD" + brightCyan: "#00B7EB" + brightWhite: "#FAFAFA" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 98.5 + black: 93.2 + red: 60.4 + green: 56 + yellow: 55.8 + blue: 73.2 + magenta: 76.2 + cyan: 42.4 + white: 0 + brightBlack: 67.2 + brightRed: 55.7 + brightGreen: 36.1 + brightYellow: 28.2 + brightBlue: 64.5 + brightMagenta: 52.7 + brightCyan: 42.4 + brightWhite: 0 diff --git a/themes/one-monokai-80s-theme.yaml b/themes/one-monokai-80s-theme.yaml new file mode 100644 index 00000000..ab382d33 --- /dev/null +++ b/themes/one-monokai-80s-theme.yaml @@ -0,0 +1,53 @@ +name: "One Monokai 80s Theme" +source: + marketplace_id: "axiomaticstudios.one-monokai-80s" + version: "2.6.6" + installs: 61833 + rating: 5 + ratings: 6 + author: "Axiomatic Studios" + repo: "https://github.com/marcelo-mason/one-monokai-80s" + url: "https://marketplace.visualstudio.com/items?itemName=axiomaticstudios.one-monokai-80s" + formats: null +colors: + bg: "#1F2237" + fg: "#A6B1C9" + black: "#6F7887" + red: "#E57685" + green: "#86BB94" + yellow: "#C9B999" + blue: "#61A2EF" + magenta: "#D491CF" + cyan: "#56B6C2" + white: "#A6B1C9" + brightBlack: "#6F7887" + brightRed: "#E57685" + brightGreen: "#86BB94" + brightYellow: "#C9B999" + brightBlue: "#61A2EF" + brightMagenta: "#D491CF" + brightCyan: "#56B6C2" + brightWhite: "#A6B1C9" +meta: + mode: "dark" + accent: "red" + hue: 277 + pair: null + contrast: + fg: 57.2 + black: 28.1 + red: 44.3 + green: 56.3 + yellow: 62.8 + blue: 47.8 + magenta: 52.2 + cyan: 52.9 + white: 57.2 + brightBlack: 28.1 + brightRed: 44.3 + brightGreen: 56.3 + brightYellow: 62.8 + brightBlue: 47.8 + brightMagenta: 52.2 + brightCyan: 52.9 + brightWhite: 57.2 diff --git a/themes/one-monokai-pro.yaml b/themes/one-monokai-pro.yaml new file mode 100644 index 00000000..330ed5b2 --- /dev/null +++ b/themes/one-monokai-pro.yaml @@ -0,0 +1,53 @@ +name: "One Monokai Pro" +source: + marketplace_id: "zzhua095.one-monokai-pro" + version: "0.1.3" + installs: 631 + rating: 0 + ratings: 0 + author: "zzhua" + repo: "https://github.com/Huazzi/vscode-one-monokai-darker" + url: "https://marketplace.visualstudio.com/items?itemName=zzhua095.one-monokai-pro" + formats: null +colors: + bg: "#1E2227" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 254 + pair: null + contrast: + fg: 58 + black: 0 + red: 40.7 + green: 60.9 + yellow: 69.2 + blue: 40.1 + magenta: 43.8 + cyan: 53.2 + white: 81.7 + brightBlack: 34.2 + brightRed: 37.1 + brightGreen: 60.9 + brightYellow: 69.2 + brightBlue: 40.1 + brightMagenta: 11.4 + brightCyan: 53.2 + brightWhite: 81.7 diff --git a/themes/one-monokai-python--one-monokai-python.yaml b/themes/one-monokai-python--one-monokai-python.yaml new file mode 100644 index 00000000..70c52508 --- /dev/null +++ b/themes/one-monokai-python--one-monokai-python.yaml @@ -0,0 +1,53 @@ +name: "One Monokai Python (One Monokai Python)" +source: + marketplace_id: "NoThlnG.one-monokai-python" + version: "0.5.0" + installs: 20250 + rating: 5 + ratings: 2 + author: "nxht" + repo: "https://github.com/nxht/one-monokai-python" + url: "https://marketplace.visualstudio.com/items?itemName=NoThlnG.one-monokai-python" + formats: null +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 38.3 + magenta: 41.9 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 38.3 + brightMagenta: 9.5 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/one-piece-theme--one-piece-dark.yaml b/themes/one-piece-theme--one-piece-dark.yaml new file mode 100644 index 00000000..a9f542ec --- /dev/null +++ b/themes/one-piece-theme--one-piece-dark.yaml @@ -0,0 +1,53 @@ +name: "One Piece Theme (one-piece-dark)" +source: + marketplace_id: "LeonardoTozoni.one-piece-theme" + version: "2.0.0" + installs: 8086 + rating: 5 + ratings: 4 + author: "Leonardo Tozoni" + repo: "https://github.com/Leonardo-Tozoni/one-piece-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LeonardoTozoni.one-piece-theme" + formats: null +colors: + bg: "#1A1F2E" + fg: "#E8E8E8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 270 + pair: null + contrast: + fg: 90.9 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.3 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/one-piece-theme--one-piece-light.yaml b/themes/one-piece-theme--one-piece-light.yaml new file mode 100644 index 00000000..e86d547a --- /dev/null +++ b/themes/one-piece-theme--one-piece-light.yaml @@ -0,0 +1,53 @@ +name: "One Piece Theme (one-piece-light)" +source: + marketplace_id: "LeonardoTozoni.one-piece-theme" + version: "2.0.0" + installs: 8086 + rating: 5 + ratings: 4 + author: "Leonardo Tozoni" + repo: "https://github.com/Leonardo-Tozoni/one-piece-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LeonardoTozoni.one-piece-theme" + formats: null +colors: + bg: "#FFFBEB" + fg: "#1A1A1A" + black: "#1A1A1A" + red: "#B91C1C" + green: "#059669" + yellow: "#D97706" + blue: "#0B5394" + magenta: "#7C3AED" + cyan: "#0891B2" + white: "#D4D4D4" + brightBlack: "#7A8B99" + brightRed: "#DC2626" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#0369A1" + brightMagenta: "#9333EA" + brightCyan: "#0D9488" + brightWhite: "#F5F5F5" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 101.7 + black: 101.7 + red: 77.7 + green: 62.1 + yellow: 56 + blue: 84.1 + magenta: 74.9 + cyan: 61.3 + white: 20.2 + brightBlack: 60.2 + brightRed: 69 + brightGreen: 46.6 + brightYellow: 39.2 + brightBlue: 76.5 + brightMagenta: 73.1 + brightCyan: 61.9 + brightWhite: 0 diff --git a/themes/one-plain.yaml b/themes/one-plain.yaml new file mode 100644 index 00000000..b760dda5 --- /dev/null +++ b/themes/one-plain.yaml @@ -0,0 +1,53 @@ +name: "one plain" +source: + marketplace_id: "yutent.one-plain" + version: "1.7.0" + installs: 4247 + rating: 5 + ratings: 4 + author: "yutent" + repo: "https://git.wkit.fun/yutent/one-plain" + url: "https://marketplace.visualstudio.com/items?itemName=yutent.one-plain" + formats: null +colors: + bg: "#FFFFFF" + fg: "#546E7A" + black: "#000000" + red: "#EA4224" + green: "#27AE60" + yellow: "#E67E22" + blue: "#0096FF" + magenta: "#9437FF" + cyan: "#19B491" + white: "#B3B5AB" + brightBlack: "#35373B" + brightRed: "#FF4628" + brightGreen: "#2ECC71" + brightYellow: "#FFB62C" + brightBlue: "#70ACF7" + brightMagenta: "#BE7EE7" + brightCyan: "#3FC2A7" + brightWhite: "#C7C8CB" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 76.9 + black: 106 + red: 65.5 + green: 54.4 + yellow: 54.1 + blue: 57 + magenta: 73 + cyan: 50.8 + white: 40.6 + brightBlack: 97.4 + brightRed: 60.1 + brightGreen: 40.6 + brightYellow: 31.7 + brightBlue: 46.2 + brightMagenta: 54.6 + brightCyan: 43.2 + brightWhite: 29.5 diff --git a/themes/onebitcode-theme--darkblue-theme.yaml b/themes/onebitcode-theme--darkblue-theme.yaml new file mode 100644 index 00000000..c226ca1e --- /dev/null +++ b/themes/onebitcode-theme--darkblue-theme.yaml @@ -0,0 +1,53 @@ +name: "onebitcode-theme (darkblue-theme)" +source: + marketplace_id: "guicastro13.onebitcode-theme" + version: "0.0.5" + installs: 2294 + rating: 5 + ratings: 2 + author: "guicastro13" + repo: "https://github.com/guicastro13/onebitcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" + formats: null +colors: + bg: "#2E3440" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 74.4 + black: 0 + red: 21.6 + green: 47.9 + yellow: 80.5 + blue: 22.4 + magenta: 24.7 + cyan: 42.5 + white: 84.9 + brightBlack: 17 + brightRed: 33.5 + brightGreen: 58.5 + brightYellow: 90.6 + brightBlue: 34.9 + brightMagenta: 40.3 + brightCyan: 50.3 + brightWhite: 84.9 diff --git a/themes/onebitcode-theme--onebitcode-theme.yaml b/themes/onebitcode-theme--onebitcode-theme.yaml new file mode 100644 index 00000000..39362f2b --- /dev/null +++ b/themes/onebitcode-theme--onebitcode-theme.yaml @@ -0,0 +1,53 @@ +name: "onebitcode-theme (onebitcode-theme)" +source: + marketplace_id: "guicastro13.onebitcode-theme" + version: "0.0.5" + installs: 2294 + rating: 5 + ratings: 2 + author: "guicastro13" + repo: "https://github.com/guicastro13/onebitcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" + formats: null +colors: + bg: "#1B1B1B" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.4 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/onebitcode-theme--snow-theme.yaml b/themes/onebitcode-theme--snow-theme.yaml new file mode 100644 index 00000000..1d6e5dab --- /dev/null +++ b/themes/onebitcode-theme--snow-theme.yaml @@ -0,0 +1,53 @@ +name: "onebitcode-theme (snow theme)" +source: + marketplace_id: "guicastro13.onebitcode-theme" + version: "0.0.5" + installs: 2294 + rating: 5 + ratings: 2 + author: "guicastro13" + repo: "https://github.com/guicastro13/onebitcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=guicastro13.onebitcode-theme" + formats: null +colors: + bg: "#FDF6E3" + fg: "#909090" + black: "#767676" + red: "#E74856" + green: "#574657" + yellow: "#9B9665" + blue: "#474F88" + magenta: "#B46E90" + cyan: "#81D6BC" + white: "#928F8F" + brightBlack: "#767676" + brightRed: "#E74856" + brightGreen: "#574657" + brightYellow: "#9B9665" + brightBlue: "#474F88" + brightMagenta: "#B46E90" + brightCyan: "#81D6BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 53.9 + black: 66.3 + red: 59.5 + green: 84.5 + yellow: 51.7 + blue: 81.3 + magenta: 59.8 + cyan: 25.3 + white: 54.1 + brightBlack: 66.3 + brightRed: 59.5 + brightGreen: 84.5 + brightYellow: 51.7 + brightBlue: 81.3 + brightMagenta: 59.8 + brightCyan: 25.3 + brightWhite: 43.2 diff --git a/themes/onedark.yaml b/themes/onedark.yaml new file mode 100644 index 00000000..d422928e --- /dev/null +++ b/themes/onedark.yaml @@ -0,0 +1,53 @@ +name: "onedark" +source: + marketplace_id: "bartoszmaka95.onedark" + version: "0.2.1" + installs: 8583 + rating: 0 + ratings: 0 + author: "bartoszmaka95" + repo: "https://github.com/bartoszmaka/vscode-onedark" + url: "https://marketplace.visualstudio.com/items?itemName=bartoszmaka95.onedark" + formats: null +colors: + bg: "#1A212E" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "pink" + hue: 263 + pair: null + contrast: + fg: 58.1 + black: 7.6 + red: 35.5 + green: 59.1 + yellow: 47.3 + blue: 48.4 + magenta: 37.8 + cyan: 51.3 + white: 89.4 + brightBlack: 14.2 + brightRed: 44.8 + brightGreen: 75.5 + brightYellow: 60 + brightBlue: 62.5 + brightMagenta: 49 + brightCyan: 66.5 + brightWhite: 81.8 diff --git a/themes/onedarkpro-x.yaml b/themes/onedarkpro-x.yaml new file mode 100644 index 00000000..dbf8e08e --- /dev/null +++ b/themes/onedarkpro-x.yaml @@ -0,0 +1,53 @@ +name: "OneDarkPro-X" +source: + marketplace_id: "BootsDev-X.boots-theme" + version: "2.0.1" + installs: 393 + rating: 5 + ratings: 1 + author: "BootsDev-X" + repo: "https://github.com/main2526/BootsDevX-Theme-OneDarkPro" + url: "https://marketplace.visualstudio.com/items?itemName=BootsDev-X.boots-theme" + formats: null +colors: + bg: "#121212" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 59.8 + black: 9.3 + red: 37.2 + green: 60.8 + yellow: 49 + blue: 50.1 + magenta: 39.5 + cyan: 52.9 + white: 83.5 + brightBlack: 15.9 + brightRed: 46.5 + brightGreen: 77.2 + brightYellow: 61.7 + brightBlue: 64.2 + brightMagenta: 50.7 + brightCyan: 68.2 + brightWhite: 91.1 diff --git a/themes/onepiece-dark-theme.yaml b/themes/onepiece-dark-theme.yaml new file mode 100644 index 00000000..65281975 --- /dev/null +++ b/themes/onepiece-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "OnePiece-Dark-Theme" +source: + marketplace_id: "TeteDeCactus.onepiece-dark-theme" + version: "0.0.1" + installs: 7817 + rating: 0 + ratings: 0 + author: "TeteDeCactus" + repo: "https://github.com/tetedecactus/VScode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=TeteDeCactus.onepiece-dark-theme" + formats: null +colors: + bg: "#000000" + fg: "#00FFDB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 90.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/only-dark-theme--bluespace.yaml b/themes/only-dark-theme--bluespace.yaml new file mode 100644 index 00000000..abaccf82 --- /dev/null +++ b/themes/only-dark-theme--bluespace.yaml @@ -0,0 +1,53 @@ +name: "Only Dark Theme (BlueSpace)" +source: + marketplace_id: "YesCode.only-dark-theme" + version: "0.0.16" + installs: 383 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/only_dark" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" + formats: null +colors: + bg: "#1A1A1A" + fg: "#DDDDDD" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#8F8EDA" + brightYellow: "#FF8080" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 84.7 + black: 0 + red: 41.6 + green: 60.6 + yellow: 72.7 + blue: 82.5 + magenta: 19.2 + cyan: 49.1 + white: 46.9 + brightBlack: 18.3 + brightRed: 41.6 + brightGreen: 44.1 + brightYellow: 53.4 + brightBlue: 18.4 + brightMagenta: 19.2 + brightCyan: 49.1 + brightWhite: 98.5 diff --git a/themes/only-dark-theme--darkspace.yaml b/themes/only-dark-theme--darkspace.yaml new file mode 100644 index 00000000..5efb1c98 --- /dev/null +++ b/themes/only-dark-theme--darkspace.yaml @@ -0,0 +1,53 @@ +name: "Only Dark Theme (DarkSpace)" +source: + marketplace_id: "YesCode.only-dark-theme" + version: "0.0.16" + installs: 383 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/only_dark" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" + formats: null +colors: + bg: "#04060A" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#A2F1F7" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 259 + pair: null + contrast: + fg: 105.5 + black: 0 + red: 42.9 + green: 61.9 + yellow: 74 + blue: 48.5 + magenta: 20.5 + cyan: 50.4 + white: 48.2 + brightBlack: 19.5 + brightRed: 42.9 + brightGreen: 90.2 + brightYellow: 80.7 + brightBlue: 19.7 + brightMagenta: 20.5 + brightCyan: 50.4 + brightWhite: 99.8 diff --git a/themes/only-dark-theme--minimal.yaml b/themes/only-dark-theme--minimal.yaml new file mode 100644 index 00000000..6b78fe4c --- /dev/null +++ b/themes/only-dark-theme--minimal.yaml @@ -0,0 +1,53 @@ +name: "Only Dark Theme (Minimal)" +source: + marketplace_id: "YesCode.only-dark-theme" + version: "0.0.16" + installs: 383 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/only_dark" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" + formats: null +colors: + bg: "#080A0D" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#86EBC4" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#FFC200" + brightYellow: "#E7F0FF" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.4 + black: 0 + red: 42.8 + green: 61.8 + yellow: 73.9 + blue: 48.4 + magenta: 20.4 + cyan: 82.8 + white: 48.1 + brightBlack: 19.5 + brightRed: 42.8 + brightGreen: 75.4 + brightYellow: 97.4 + brightBlue: 19.6 + brightMagenta: 20.4 + brightCyan: 50.3 + brightWhite: 99.7 diff --git a/themes/only-dark-theme--onlydark.yaml b/themes/only-dark-theme--onlydark.yaml new file mode 100644 index 00000000..3e343d11 --- /dev/null +++ b/themes/only-dark-theme--onlydark.yaml @@ -0,0 +1,53 @@ +name: "Only Dark Theme (OnlyDark)" +source: + marketplace_id: "YesCode.only-dark-theme" + version: "0.0.16" + installs: 383 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/only_dark" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" + formats: null +colors: + bg: "#16171B" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#FFA500" + brightYellow: "#FFA500" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.5 + black: 0 + red: 42 + green: 61 + yellow: 73 + blue: 47.5 + magenta: 19.5 + cyan: 49.4 + white: 47.2 + brightBlack: 18.6 + brightRed: 42 + brightGreen: 63.7 + brightYellow: 63.7 + brightBlue: 18.7 + brightMagenta: 19.5 + brightCyan: 49.4 + brightWhite: 98.8 diff --git a/themes/only-dark-theme--sober.yaml b/themes/only-dark-theme--sober.yaml new file mode 100644 index 00000000..b3fbb3f1 --- /dev/null +++ b/themes/only-dark-theme--sober.yaml @@ -0,0 +1,53 @@ +name: "Only Dark Theme (Sober)" +source: + marketplace_id: "YesCode.only-dark-theme" + version: "0.0.16" + installs: 383 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/only_dark" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.only-dark-theme" + formats: null +colors: + bg: "#101013" + fg: "#CDCDCD" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#8F8A8E" + brightYellow: "#DFE6E9" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 75.8 + black: 0 + red: 42.5 + green: 61.5 + yellow: 73.6 + blue: 83.4 + magenta: 20.1 + cyan: 50 + white: 47.8 + brightBlack: 19.1 + brightRed: 42.5 + brightGreen: 39.8 + brightYellow: 90.4 + brightBlue: 19.3 + brightMagenta: 20.1 + brightCyan: 50 + brightWhite: 99.4 diff --git a/themes/onyx-theme-color-experience.yaml b/themes/onyx-theme-color-experience.yaml new file mode 100644 index 00000000..6944a5e9 --- /dev/null +++ b/themes/onyx-theme-color-experience.yaml @@ -0,0 +1,53 @@ +name: "Onyx Theme Color & Experience" +source: + marketplace_id: "dev-onyx.onyx-theme" + version: "1.2.0" + installs: 73 + rating: 5 + ratings: 1 + author: "dev-onyx" + repo: "https://github.com/dev-onyx/onyx-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dev-onyx.onyx-theme" + formats: null +colors: + bg: "#121212" + fg: "#E4E4E4" + black: "#242424" + red: "#FC6B83" + green: "#3FA266" + yellow: "#D2943E" + blue: "#CCCCCC" + magenta: "#B48EAD" + cyan: "#CCCCCC" + white: "#E4E4E4" + brightBlack: "#E4E4E4" + brightRed: "#FC6B83" + brightGreen: "#70B489" + brightYellow: "#F1B467" + brightBlue: "#BEBEBE" + brightMagenta: "#B48EAD" + brightCyan: "#CCCCCC" + brightWhite: "#E4E4E4" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 89.8 + black: 0 + red: 48.5 + green: 42.3 + yellow: 50.6 + blue: 75.1 + magenta: 46.9 + cyan: 75.1 + white: 89.8 + brightBlack: 89.8 + brightRed: 48.5 + brightGreen: 53.4 + brightYellow: 67.8 + brightBlue: 66.9 + brightMagenta: 46.9 + brightCyan: 75.1 + brightWhite: 89.8 diff --git a/themes/oolory.yaml b/themes/oolory.yaml new file mode 100644 index 00000000..1e8866d4 --- /dev/null +++ b/themes/oolory.yaml @@ -0,0 +1,53 @@ +name: "oolory" +source: + marketplace_id: "gtwsky.oolory" + version: "2.0.0" + installs: 2116 + rating: 5 + ratings: 1 + author: "Michał Gutowski" + repo: "https://gitlab.com/gtwsky_/oolory" + url: "https://marketplace.visualstudio.com/items?itemName=gtwsky.oolory" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#FF0032" + green: "#00FF68" + yellow: "#FFCA00" + blue: "#004BFF" + magenta: "#D700FF" + cyan: "#00D2FF" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#FF0032" + brightGreen: "#00FF68" + brightYellow: "#FFCA00" + brightBlue: "#004BFF" + brightMagenta: "#D700FF" + brightCyan: "#00D2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 107.9 + red: 37.7 + green: 87.2 + yellow: 78.8 + blue: 22.9 + magenta: 37.6 + cyan: 70 + white: 107.9 + brightBlack: 107.9 + brightRed: 37.7 + brightGreen: 87.2 + brightYellow: 78.8 + brightBlue: 22.9 + brightMagenta: 37.6 + brightCyan: 70 + brightWhite: 107.9 diff --git a/themes/orago-themes.yaml b/themes/orago-themes.yaml new file mode 100644 index 00000000..3115c24c --- /dev/null +++ b/themes/orago-themes.yaml @@ -0,0 +1,53 @@ +name: "orago-themes" +source: + marketplace_id: "orago.orago-themes" + version: "0.0.4" + installs: 24 + rating: 0 + ratings: 0 + author: "orago" + repo: "https://github.com/Orago/orago-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=orago.orago-themes" + formats: null +colors: + bg: "#A1663D" + fg: "#1A1108" + black: "#003B42" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#004D57" + brightRed: "#FF4000" + brightGreen: "#00D17A" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: 54 + pair: null + contrast: + fg: 30.9 + black: 23.4 + red: 0 + green: 19.4 + yellow: 27.9 + blue: 12.8 + magenta: 16.2 + cyan: 28 + white: 21.3 + brightBlack: 17.3 + brightRed: 10.7 + brightGreen: 33.8 + brightYellow: 26.6 + brightBlue: 19.7 + brightMagenta: 20.5 + brightCyan: 35.2 + brightWhite: 39.3 diff --git a/themes/orangey-color-theme--orangey.yaml b/themes/orangey-color-theme--orangey.yaml new file mode 100644 index 00000000..609877ac --- /dev/null +++ b/themes/orangey-color-theme--orangey.yaml @@ -0,0 +1,53 @@ +name: "Orangey | Color Theme (Orangey)" +source: + marketplace_id: "ricafolio.orangey-vscode-theme" + version: "1.1.1" + installs: 974 + rating: 5 + ratings: 2 + author: "ricafolio" + repo: "https://github.com/ricafolio/orangey-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" + formats: null +colors: + bg: "#1C1C1C" + fg: "#F2E4DB" + black: "#000000" + red: "#EF4823" + green: "#82B200" + yellow: "#EFD023" + blue: "#023E8A" + magenta: "#B200A9" + cyan: "#0096C7" + white: "#CAC8A9" + brightBlack: "#666666" + brightRed: "#F37256" + brightGreen: "#DEFF39" + brightYellow: "#F3DB56" + brightBlue: "#0077B6" + brightMagenta: "#EE00E2" + brightCyan: "#00B4D8" + brightWhite: "#B2B184" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 90.4 + black: 0 + red: 36.5 + green: 51.1 + yellow: 77.2 + blue: 7.9 + magenta: 22.4 + cyan: 39.4 + white: 70.8 + brightBlack: 21.5 + brightRed: 46.2 + brightGreen: 96.8 + brightYellow: 83 + brightBlue: 27 + brightMagenta: 38.7 + brightCyan: 52.7 + brightWhite: 57.1 diff --git a/themes/orangey-color-theme-orangey-darker-1.yaml b/themes/orangey-color-theme-orangey-darker-1.yaml new file mode 100644 index 00000000..da4cca09 --- /dev/null +++ b/themes/orangey-color-theme-orangey-darker-1.yaml @@ -0,0 +1,53 @@ +name: "Orangey | Color Theme (Orangey (Darker 1))" +source: + marketplace_id: "ricafolio.orangey-vscode-theme" + version: "1.1.1" + installs: 974 + rating: 5 + ratings: 2 + author: "ricafolio" + repo: "https://github.com/ricafolio/orangey-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" + formats: null +colors: + bg: "#141414" + fg: "#F2E4DB" + black: "#000000" + red: "#EF4823" + green: "#82B200" + yellow: "#EFD023" + blue: "#023E8A" + magenta: "#B200A9" + cyan: "#0096C7" + white: "#CAC8A9" + brightBlack: "#666666" + brightRed: "#F37256" + brightGreen: "#DEFF39" + brightYellow: "#F3DB56" + brightBlue: "#0077B6" + brightMagenta: "#EE00E2" + brightCyan: "#00B4D8" + brightWhite: "#B2B184" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 91.2 + black: 0 + red: 37.4 + green: 52 + yellow: 78 + blue: 8.8 + magenta: 23.2 + cyan: 40.2 + white: 71.6 + brightBlack: 22.3 + brightRed: 47 + brightGreen: 97.7 + brightYellow: 83.8 + brightBlue: 27.9 + brightMagenta: 39.5 + brightCyan: 53.5 + brightWhite: 58 diff --git a/themes/orangey-color-theme-orangey-darker-2.yaml b/themes/orangey-color-theme-orangey-darker-2.yaml new file mode 100644 index 00000000..2255b574 --- /dev/null +++ b/themes/orangey-color-theme-orangey-darker-2.yaml @@ -0,0 +1,53 @@ +name: "Orangey | Color Theme (Orangey (Darker 2))" +source: + marketplace_id: "ricafolio.orangey-vscode-theme" + version: "1.1.1" + installs: 974 + rating: 5 + ratings: 2 + author: "ricafolio" + repo: "https://github.com/ricafolio/orangey-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" + formats: null +colors: + bg: "#0B0B0B" + fg: "#F2E4DB" + black: "#000000" + red: "#EF4823" + green: "#82B200" + yellow: "#EFD023" + blue: "#023E8A" + magenta: "#B200A9" + cyan: "#0096C7" + white: "#CAC8A9" + brightBlack: "#666666" + brightRed: "#F37256" + brightGreen: "#DEFF39" + brightYellow: "#F3DB56" + brightBlue: "#0077B6" + brightMagenta: "#EE00E2" + brightCyan: "#00B4D8" + brightWhite: "#B2B184" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 91.8 + black: 0 + red: 37.9 + green: 52.5 + yellow: 78.6 + blue: 9.3 + magenta: 23.8 + cyan: 40.8 + white: 72.2 + brightBlack: 22.9 + brightRed: 47.6 + brightGreen: 98.2 + brightYellow: 84.4 + brightBlue: 28.4 + brightMagenta: 40.1 + brightCyan: 54.1 + brightWhite: 58.5 diff --git a/themes/orangey-color-theme-orangey-lighter-1.yaml b/themes/orangey-color-theme-orangey-lighter-1.yaml new file mode 100644 index 00000000..a7cc4c55 --- /dev/null +++ b/themes/orangey-color-theme-orangey-lighter-1.yaml @@ -0,0 +1,53 @@ +name: "Orangey | Color Theme (Orangey (Lighter 1))" +source: + marketplace_id: "ricafolio.orangey-vscode-theme" + version: "1.1.1" + installs: 974 + rating: 5 + ratings: 2 + author: "ricafolio" + repo: "https://github.com/ricafolio/orangey-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" + formats: null +colors: + bg: "#222222" + fg: "#F2E4DB" + black: "#000000" + red: "#EF4823" + green: "#82B200" + yellow: "#EFD023" + blue: "#023E8A" + magenta: "#B200A9" + cyan: "#0096C7" + white: "#CAC8A9" + brightBlack: "#666666" + brightRed: "#F37256" + brightGreen: "#DEFF39" + brightYellow: "#F3DB56" + brightBlue: "#0077B6" + brightMagenta: "#EE00E2" + brightCyan: "#00B4D8" + brightWhite: "#B2B184" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 89.5 + black: 0 + red: 35.7 + green: 50.3 + yellow: 76.3 + blue: 0 + magenta: 21.5 + cyan: 38.5 + white: 69.9 + brightBlack: 20.6 + brightRed: 45.3 + brightGreen: 96 + brightYellow: 82.1 + brightBlue: 26.2 + brightMagenta: 37.8 + brightCyan: 51.8 + brightWhite: 56.3 diff --git a/themes/orangey-color-theme-orangey-lighter-2.yaml b/themes/orangey-color-theme-orangey-lighter-2.yaml new file mode 100644 index 00000000..dbc66a3e --- /dev/null +++ b/themes/orangey-color-theme-orangey-lighter-2.yaml @@ -0,0 +1,53 @@ +name: "Orangey | Color Theme (Orangey (Lighter 2))" +source: + marketplace_id: "ricafolio.orangey-vscode-theme" + version: "1.1.1" + installs: 974 + rating: 5 + ratings: 2 + author: "ricafolio" + repo: "https://github.com/ricafolio/orangey-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ricafolio.orangey-vscode-theme" + formats: null +colors: + bg: "#272727" + fg: "#F2E4DB" + black: "#000000" + red: "#EF4823" + green: "#82B200" + yellow: "#EFD023" + blue: "#023E8A" + magenta: "#B200A9" + cyan: "#0096C7" + white: "#CAC8A9" + brightBlack: "#666666" + brightRed: "#F37256" + brightGreen: "#DEFF39" + brightYellow: "#F3DB56" + brightBlue: "#0077B6" + brightMagenta: "#EE00E2" + brightCyan: "#00B4D8" + brightWhite: "#B2B184" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 88.7 + black: 0 + red: 34.8 + green: 49.4 + yellow: 75.5 + blue: 0 + magenta: 20.7 + cyan: 37.7 + white: 69.1 + brightBlack: 19.8 + brightRed: 44.5 + brightGreen: 95.2 + brightYellow: 81.3 + brightBlue: 25.3 + brightMagenta: 37 + brightCyan: 51 + brightWhite: 55.4 diff --git a/themes/origamid-next--origamid.yaml b/themes/origamid-next--origamid.yaml new file mode 100644 index 00000000..5717039f --- /dev/null +++ b/themes/origamid-next--origamid.yaml @@ -0,0 +1,53 @@ +name: "Origamid Next (Origamid)" +source: + marketplace_id: "origamid.origamid-next" + version: "2.0.13" + installs: 97153 + rating: 4.76 + ratings: 17 + author: "Origamid" + repo: "https://github.com/origamid/origamid-next-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=origamid.origamid-next" + formats: null +colors: + bg: "#222222" + fg: "#FFFFFF" + black: "#333333" + red: "#88BBFF" + green: "#FFDD44" + yellow: "#88CC44" + blue: "#88BBFF" + magenta: "#88BBFF" + cyan: "#BBA0FF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#88BBFF" + brightGreen: "#FFDD44" + brightYellow: "#88CC44" + brightBlue: "#88BBFF" + brightMagenta: "#88BBFF" + brightCyan: "#BBA0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 105.5 + black: 0 + red: 61.8 + green: 84.7 + yellow: 62.7 + blue: 61.8 + magenta: 61.8 + cyan: 56.7 + white: 105.5 + brightBlack: 20.6 + brightRed: 61.8 + brightGreen: 84.7 + brightYellow: 62.7 + brightBlue: 61.8 + brightMagenta: 61.8 + brightCyan: 56.7 + brightWhite: 105.5 diff --git a/themes/origamid-theme.yaml b/themes/origamid-theme.yaml new file mode 100644 index 00000000..0e602f92 --- /dev/null +++ b/themes/origamid-theme.yaml @@ -0,0 +1,53 @@ +name: "Origamid Theme" +source: + marketplace_id: "origamid.origamid-theme" + version: "1.1.7" + installs: 63082 + rating: 5 + ratings: 5 + author: "Origamid" + repo: "https://github.com/origamid/origamid-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=origamid.origamid-theme" + formats: null +colors: + bg: "#222222" + fg: "#FFFFFF" + black: "#363537" + red: "#99BBFE" + green: "#FFDD44" + yellow: "#88BB44" + blue: "#99BBFE" + magenta: "#99BBFF" + cyan: "#DDAAFF" + white: "#FFFFFF" + brightBlack: "#69676C" + brightRed: "#99BBFE" + brightGreen: "#FFDD44" + brightYellow: "#88BB44" + brightBlue: "#99BBFE" + brightMagenta: "#99BBFF" + brightCyan: "#DDAAFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 105.5 + black: 0 + red: 63.2 + green: 84.7 + yellow: 55 + blue: 63.2 + magenta: 63.2 + cyan: 65 + white: 105.5 + brightBlack: 21.4 + brightRed: 63.2 + brightGreen: 84.7 + brightYellow: 55 + brightBlue: 63.2 + brightMagenta: 63.2 + brightCyan: 65 + brightWhite: 105.5 diff --git a/themes/osaka-solarized-pro--osaka-solarized-pro-dark.yaml b/themes/osaka-solarized-pro--osaka-solarized-pro-dark.yaml new file mode 100644 index 00000000..9fa6ef40 --- /dev/null +++ b/themes/osaka-solarized-pro--osaka-solarized-pro-dark.yaml @@ -0,0 +1,54 @@ +name: "Osaka Solarized Pro (Osaka Solarized Pro Dark)" +source: + marketplace_id: "AashishKumar-3002.osaka-solarized-pro" + version: "1.0.2" + installs: 553 + rating: 0 + ratings: 0 + author: "AashishKumar-3002" + repo: "https://github.com/AashishKumar-3002/osaka-solarized-pro-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AashishKumar-3002.osaka-solarized-pro" + formats: + zed: "https://raw.githubusercontent.com/AashishKumar-3002/osaka-solarized-pro-vscode/main/themes/osaka-solarized-pro-dark.json" +colors: + bg: "#002731" + fg: "#A5B4B9" + black: "#002731" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#445056" + brightRed: "#E85D67" + brightGreen: "#9BB528" + brightYellow: "#CCB525" + brightBlue: "#5DB6EB" + brightMagenta: "#E899C3" + brightCyan: "#35A8A5" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 219 + pair: null + contrast: + fg: 57.5 + black: 0 + red: 28.4 + green: 39.9 + yellow: 39.9 + blue: 34.9 + magenta: 28.6 + cyan: 40.6 + white: 90.1 + brightBlack: 10.7 + brightRed: 38.3 + brightGreen: 53.6 + brightYellow: 59.6 + brightBlue: 55.3 + brightMagenta: 57.4 + brightCyan: 44.3 + brightWhite: 99.3 diff --git a/themes/osaka-solarized-pro--osaka-solarized-pro-light.yaml b/themes/osaka-solarized-pro--osaka-solarized-pro-light.yaml new file mode 100644 index 00000000..89fa1fb2 --- /dev/null +++ b/themes/osaka-solarized-pro--osaka-solarized-pro-light.yaml @@ -0,0 +1,54 @@ +name: "Osaka Solarized Pro (Osaka Solarized Pro Light)" +source: + marketplace_id: "AashishKumar-3002.osaka-solarized-pro" + version: "1.0.2" + installs: 553 + rating: 0 + ratings: 0 + author: "AashishKumar-3002" + repo: "https://github.com/AashishKumar-3002/osaka-solarized-pro-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AashishKumar-3002.osaka-solarized-pro" + formats: + zed: "https://raw.githubusercontent.com/AashishKumar-3002/osaka-solarized-pro-vscode/main/themes/osaka-solarized-pro-dark.json" +colors: + bg: "#FDF6E3" + fg: "#657B83" + black: "#002731" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#E85D67" + brightGreen: "#9BB528" + brightYellow: "#CCB525" + brightBlue: "#5DB6EB" + brightMagenta: "#E899C3" + brightCyan: "#35A8A5" + brightWhite: "#FDF6E3" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.7 + black: 97.2 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 0 + brightBlack: 71.6 + brightRed: 55.4 + brightGreen: 40.4 + brightYellow: 34.7 + brightBlue: 38.8 + brightMagenta: 36.8 + brightCyan: 49.4 + brightWhite: 0 diff --git a/themes/osaka-solarized-pro--osaka-solarized-pro-monokai-storm.yaml b/themes/osaka-solarized-pro--osaka-solarized-pro-monokai-storm.yaml new file mode 100644 index 00000000..3405dd53 --- /dev/null +++ b/themes/osaka-solarized-pro--osaka-solarized-pro-monokai-storm.yaml @@ -0,0 +1,54 @@ +name: "Osaka Solarized Pro (Osaka Solarized Pro Monokai Storm)" +source: + marketplace_id: "AashishKumar-3002.osaka-solarized-pro" + version: "1.0.2" + installs: 553 + rating: 0 + ratings: 0 + author: "AashishKumar-3002" + repo: "https://github.com/AashishKumar-3002/osaka-solarized-pro-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AashishKumar-3002.osaka-solarized-pro" + formats: + zed: "https://raw.githubusercontent.com/AashishKumar-3002/osaka-solarized-pro-vscode/main/themes/osaka-solarized-pro-dark.json" +colors: + bg: "#181825" + fg: "#CDD6F4" + black: "#45475A" + red: "#F38BA8" + green: "#A9DC76" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#CBA6F7" + cyan: "#94E2D5" + white: "#BAC2DE" + brightBlack: "#585B70" + brightRed: "#F38BA8" + brightGreen: "#A9DC76" + brightYellow: "#F9E2AF" + brightBlue: "#89B4FA" + brightMagenta: "#F5C2E7" + brightCyan: "#94E2D5" + brightWhite: "#A6ADC8" +meta: + mode: "dark" + accent: "green" + hue: 284 + pair: null + contrast: + fg: 80.8 + black: 10.1 + red: 55.5 + green: 75 + yellow: 89.2 + blue: 59.9 + magenta: 61.6 + cyan: 79.1 + white: 68.9 + brightBlack: 17.7 + brightRed: 55.5 + brightGreen: 75 + brightYellow: 89.2 + brightBlue: 59.9 + brightMagenta: 77.5 + brightCyan: 79.1 + brightWhite: 57 diff --git a/themes/osmoz-dark-themes.yaml b/themes/osmoz-dark-themes.yaml new file mode 100644 index 00000000..c93d7bab --- /dev/null +++ b/themes/osmoz-dark-themes.yaml @@ -0,0 +1,53 @@ +name: "Osmoz Dark Themes" +source: + marketplace_id: "ArthurRasera.osmoz" + version: "1.1.1" + installs: 60 + rating: 5 + ratings: 2 + author: "Arthur Rasera" + repo: "https://github.com/Raseraa0/osmoz-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ArthurRasera.osmoz" + formats: null +colors: + bg: "#1E1A3A" + fg: "#B9B5CF" + black: "#1E1E1E" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D0D0D0" + brightBlack: "#666666" + brightRed: "#FF7B82" + brightGreen: "#B4F59E" + brightYellow: "#FFD98F" + brightBlue: "#82CFFF" + brightMagenta: "#E19EF5" + brightCyan: "#6FE7F7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 287 + pair: null + contrast: + fg: 62 + black: 0 + red: 41.1 + green: 61.3 + yellow: 69.6 + blue: 53.7 + magenta: 44.2 + cyan: 53.6 + white: 76.1 + brightBlack: 21.1 + brightRed: 51.5 + brightGreen: 88.5 + brightYellow: 84.6 + brightBlue: 70.4 + brightMagenta: 61.4 + brightCyan: 80 + brightWhite: 105.9 diff --git a/themes/oth-theme--light.yaml b/themes/oth-theme--light.yaml new file mode 100644 index 00000000..1011b03e --- /dev/null +++ b/themes/oth-theme--light.yaml @@ -0,0 +1,53 @@ +name: "OTH Theme (Light)" +source: + marketplace_id: "OpenTemplateHub.oth-theme" + version: "0.0.2" + installs: 381 + rating: 5 + ratings: 2 + author: "Open Template Hub" + repo: "https://github.com/open-template-hub/oth-vscode-theme-plugin" + url: "https://marketplace.visualstudio.com/items?itemName=OpenTemplateHub.oth-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#2B2B2B" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 100.9 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/outrun--outrun-contrast.yaml b/themes/outrun--outrun-contrast.yaml new file mode 100644 index 00000000..a9ee3afa --- /dev/null +++ b/themes/outrun--outrun-contrast.yaml @@ -0,0 +1,53 @@ +name: "Outrun (Outrun Contrast)" +source: + marketplace_id: "samrapdev.outrun" + version: "0.2.2" + installs: 109397 + rating: 4.78 + ratings: 9 + author: "samrapdev" + repo: "https://github.com/samrap/outrun-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=samrapdev.outrun" + formats: null +colors: + bg: "#0C0A20" + fg: "#F8F8F2" + black: "#283034" + red: "#FF0081" + green: "#62A9CF" + yellow: "#F4B80C" + blue: "#42C6FF" + magenta: "#FF2AFC" + cyan: "#42C6FF" + white: "#D9E0E9" + brightBlack: "#435056" + brightRed: "#FF0081" + brightGreen: "#ADD0E5" + brightYellow: "#F4B80C" + brightBlue: "#42C6FF" + brightMagenta: "#FF2AFC" + brightCyan: "#42C6FF" + brightWhite: "#F4F6F9" +meta: + mode: "dark" + accent: "pink" + hue: 284 + pair: null + contrast: + fg: 102.7 + black: 0 + red: 39 + green: 51.1 + yellow: 69.4 + blue: 65 + magenta: 46.7 + cyan: 65 + white: 87.1 + brightBlack: 13.1 + brightRed: 39 + brightGreen: 74.7 + brightYellow: 69.4 + brightBlue: 65 + brightMagenta: 46.7 + brightCyan: 65 + brightWhite: 101.5 diff --git a/themes/outrun--outrun-dark.yaml b/themes/outrun--outrun-dark.yaml new file mode 100644 index 00000000..7757e071 --- /dev/null +++ b/themes/outrun--outrun-dark.yaml @@ -0,0 +1,53 @@ +name: "Outrun (Outrun Dark)" +source: + marketplace_id: "samrapdev.outrun" + version: "0.2.2" + installs: 109397 + rating: 4.78 + ratings: 9 + author: "samrapdev" + repo: "https://github.com/samrap/outrun-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=samrapdev.outrun" + formats: null +colors: + bg: "#161130" + fg: "#EBECF8" + black: "#283034" + red: "#FF2E97" + green: "#62A9CF" + yellow: "#FFD400" + blue: "#42C6FF" + magenta: "#FF2AFC" + cyan: "#42C6FF" + white: "#D9E0E9" + brightBlack: "#435056" + brightRed: "#FF2E97" + brightGreen: "#ADD0E5" + brightYellow: "#FFD400" + brightBlue: "#42C6FF" + brightMagenta: "#FF2AFC" + brightCyan: "#42C6FF" + brightWhite: "#F4F6F9" +meta: + mode: "dark" + accent: "pink" + hue: 287 + pair: null + contrast: + fg: 94.9 + black: 0 + red: 40.6 + green: 50.4 + yellow: 82 + blue: 64.3 + magenta: 46.1 + cyan: 64.3 + white: 86.4 + brightBlack: 12.5 + brightRed: 40.6 + brightGreen: 74.1 + brightYellow: 82 + brightBlue: 64.3 + brightMagenta: 46.1 + brightCyan: 64.3 + brightWhite: 100.8 diff --git a/themes/outrun.yaml b/themes/outrun.yaml new file mode 100644 index 00000000..033c5ca0 --- /dev/null +++ b/themes/outrun.yaml @@ -0,0 +1,53 @@ +name: "Outrun" +source: + marketplace_id: "hhochart29.outrun" + version: "1.1.3" + installs: 6266 + rating: 5 + ratings: 1 + author: "hhochart29" + repo: "https://github.com/hhochart29/outrun-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=hhochart29.outrun" + formats: null +colors: + bg: "#161130" + fg: "#EEEEEE" + black: "#283034" + red: "#FF2E97" + green: "#62A9CF" + yellow: "#FFD400" + blue: "#42C6FF" + magenta: "#FF2AFC" + cyan: "#42C6FF" + white: "#D9E0E9" + brightBlack: "#435056" + brightRed: "#FF2E97" + brightGreen: "#ADD0E5" + brightYellow: "#FFD400" + brightBlue: "#42C6FF" + brightMagenta: "#FF2AFC" + brightCyan: "#42C6FF" + brightWhite: "#F4F6F9" +meta: + mode: "dark" + accent: "pink" + hue: 287 + pair: null + contrast: + fg: 95.8 + black: 0 + red: 40.6 + green: 50.4 + yellow: 82 + blue: 64.3 + magenta: 46.1 + cyan: 64.3 + white: 86.4 + brightBlack: 12.5 + brightRed: 40.6 + brightGreen: 74.1 + brightYellow: 82 + brightBlue: 64.3 + brightMagenta: 46.1 + brightCyan: 64.3 + brightWhite: 100.8 diff --git a/themes/overcast-theme--dark-brown-theme.yaml b/themes/overcast-theme--dark-brown-theme.yaml new file mode 100644 index 00000000..21598188 --- /dev/null +++ b/themes/overcast-theme--dark-brown-theme.yaml @@ -0,0 +1,53 @@ +name: "Overcast Theme (Dark Brown Theme)" +source: + marketplace_id: "ceciljacob.overcast-code-theme" + version: "1.1.0" + installs: 768 + rating: 5 + ratings: 1 + author: "Cecil Jacob" + repo: "https://github.com/ceciljacob/overcast-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ceciljacob.overcast-code-theme" + formats: null +colors: + bg: "#180F08" + fg: "#FCFAF6" + black: "#020202" + red: "#C45E04" + green: "#80A28E" + yellow: "#F4DB60" + blue: "#76ABDC" + magenta: "#B68DB2" + cyan: "#56B8C8" + white: "#EFEFEF" + brightBlack: "#424242" + brightRed: "#C45E04" + brightGreen: "#80A28E" + brightYellow: "#F4DB60" + brightBlue: "#76ABDC" + brightMagenta: "#B68DB2" + brightCyan: "#56B8C8" + brightWhite: "#FEFEFE" +meta: + mode: "dark" + accent: "yellow" + hue: 59 + pair: null + contrast: + fg: 104.1 + black: 0 + red: 32.5 + green: 47.3 + yellow: 84.3 + blue: 53.7 + magenta: 47.1 + cyan: 56.2 + white: 96.9 + brightBlack: 8.6 + brightRed: 32.5 + brightGreen: 47.3 + brightYellow: 84.3 + brightBlue: 53.7 + brightMagenta: 47.1 + brightCyan: 56.2 + brightWhite: 106.7 diff --git a/themes/overnight--overnight.yaml b/themes/overnight--overnight.yaml new file mode 100644 index 00000000..e4f078b9 --- /dev/null +++ b/themes/overnight--overnight.yaml @@ -0,0 +1,53 @@ +name: "Overnight (Overnight)" +source: + marketplace_id: "cev.overnight" + version: "1.8.4" + installs: 25657 + rating: 5 + ratings: 9 + author: "cev" + repo: "https://github.com/cevr/overnight" + url: "https://marketplace.visualstudio.com/items?itemName=cev.overnight" + formats: null +colors: + bg: "#0E1729" + fg: "#D6D9E0" + black: "#2E384D" + red: "#F87086" + green: "#BBD99E" + yellow: "#ECC48D" + blue: "#8EACE3" + magenta: "#C792EA" + cyan: "#92D8E6" + white: "#D6D9E0" + brightBlack: "#3D485F" + brightRed: "#FFB3B3" + brightGreen: "#C9E2AF" + brightYellow: "#ECC48D" + brightBlue: "#ACD1F5" + brightMagenta: "#CCB3FF" + brightCyan: "#A5E0EC" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "red" + hue: 263 + pair: null + contrast: + fg: 82.4 + black: 0 + red: 48.4 + green: 76.7 + yellow: 73.6 + blue: 55.9 + magenta: 53.7 + cyan: 75.2 + white: 82.4 + brightBlack: 10.2 + brightRed: 71.4 + brightGreen: 82.9 + brightYellow: 73.6 + brightBlue: 75.2 + brightMagenta: 67.2 + brightCyan: 80.8 + brightWhite: 98.3 diff --git a/themes/oxide-theme.yaml b/themes/oxide-theme.yaml new file mode 100644 index 00000000..a49c0068 --- /dev/null +++ b/themes/oxide-theme.yaml @@ -0,0 +1,53 @@ +name: "Oxide Theme" +source: + marketplace_id: "oxidescheme.oxide-theme" + version: "0.1.1" + installs: 15 + rating: 0 + ratings: 0 + author: "oxidescheme" + repo: "https://github.com/oxidescheme/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=oxidescheme.oxide-theme" + formats: null +colors: + bg: "#161616" + fg: "#CECECE" + black: "#262626" + red: "#ED756E" + green: "#5BB661" + yellow: "#C39900" + blue: "#3BA6F5" + magenta: "#968FF7" + cyan: "#00BAAA" + white: "#CECECE" + brightBlack: "#8F8F8F" + brightRed: "#FF9890" + brightGreen: "#7BD77F" + brightYellow: "#E3B831" + brightBlue: "#6FC6FF" + brightMagenta: "#B5B2FF" + brightCyan: "#00DCCA" + brightWhite: "#DEDEDE" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 76 + black: 0 + red: 46.8 + green: 51.7 + yellow: 49.4 + blue: 50 + magenta: 47.5 + cyan: 53.8 + white: 76 + brightBlack: 41.2 + brightRed: 61.3 + brightGreen: 69.5 + brightYellow: 66.1 + brightBlue: 66.3 + brightMagenta: 64.1 + brightCyan: 71 + brightWhite: 85.7 diff --git a/themes/oxocarbon-theme--oxocarbon-dark.yaml b/themes/oxocarbon-theme--oxocarbon-dark.yaml new file mode 100644 index 00000000..b6d21952 --- /dev/null +++ b/themes/oxocarbon-theme--oxocarbon-dark.yaml @@ -0,0 +1,54 @@ +name: "Oxocarbon Theme (Oxocarbon Dark)" +source: + marketplace_id: "NyoomEngineering.oxocarbon-vscode" + version: "1.2.0" + installs: 1566 + rating: 5 + ratings: 1 + author: "Nyoom Engineering" + repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" + formats: + zed: "https://raw.githubusercontent.com/nyoom-engineering/oxocarbon-vscode/main/assets/settings-zed.json" +colors: + bg: "#161616" + fg: "#F2F4F8" + black: "#161616" + red: "#78A9FF" + green: "#FF7EB6" + yellow: "#42BE65" + blue: "#08BDBA" + magenta: "#82CFFF" + cyan: "#33B1FF" + white: "#DDE1E6" + brightBlack: "#525252" + brightRed: "#78A9FF" + brightGreen: "#FF7EB6" + brightYellow: "#42BE65" + brightBlue: "#08BDBA" + brightMagenta: "#82CFFF" + brightCyan: "#33B1FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 99.6 + black: 0 + red: 54.9 + green: 55.2 + yellow: 54.4 + blue: 55.8 + magenta: 71.5 + cyan: 55 + white: 87.3 + brightBlack: 14 + brightRed: 54.9 + brightGreen: 55.2 + brightYellow: 54.4 + brightBlue: 55.8 + brightMagenta: 71.5 + brightCyan: 55 + brightWhite: 107 diff --git a/themes/oxocarbon-theme--oxocarbon-monochrom.yaml b/themes/oxocarbon-theme--oxocarbon-monochrom.yaml new file mode 100644 index 00000000..42696fb6 --- /dev/null +++ b/themes/oxocarbon-theme--oxocarbon-monochrom.yaml @@ -0,0 +1,54 @@ +name: "Oxocarbon Theme (Oxocarbon Monochrom)" +source: + marketplace_id: "NyoomEngineering.oxocarbon-vscode" + version: "1.2.0" + installs: 1566 + rating: 5 + ratings: 1 + author: "Nyoom Engineering" + repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" + formats: + zed: "https://raw.githubusercontent.com/nyoom-engineering/oxocarbon-vscode/main/assets/settings-zed.json" +colors: + bg: "#161616" + fg: "#F2F4F8" + black: "#161616" + red: "#A8A8A8" + green: "#A8A8A8" + yellow: "#A8A8A8" + blue: "#A8A8A8" + magenta: "#C6C6C6" + cyan: "#A8A8A8" + white: "#DDE1E6" + brightBlack: "#525252" + brightRed: "#A8A8A8" + brightGreen: "#A8A8A8" + brightYellow: "#A8A8A8" + brightBlue: "#A8A8A8" + brightMagenta: "#C6C6C6" + brightCyan: "#A8A8A8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 99.6 + black: 0 + red: 54.2 + green: 54.2 + yellow: 54.2 + blue: 54.2 + magenta: 71.2 + cyan: 54.2 + white: 87.3 + brightBlack: 14 + brightRed: 54.2 + brightGreen: 54.2 + brightYellow: 54.2 + brightBlue: 54.2 + brightMagenta: 71.2 + brightCyan: 54.2 + brightWhite: 107 diff --git a/themes/oxocarbon-theme--oxocarbon-oled-monochrom.yaml b/themes/oxocarbon-theme--oxocarbon-oled-monochrom.yaml new file mode 100644 index 00000000..d69eb88c --- /dev/null +++ b/themes/oxocarbon-theme--oxocarbon-oled-monochrom.yaml @@ -0,0 +1,54 @@ +name: "Oxocarbon Theme (Oxocarbon OLED Monochrom)" +source: + marketplace_id: "NyoomEngineering.oxocarbon-vscode" + version: "1.2.0" + installs: 1566 + rating: 5 + ratings: 1 + author: "Nyoom Engineering" + repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" + formats: + zed: "https://raw.githubusercontent.com/nyoom-engineering/oxocarbon-vscode/main/assets/settings-zed.json" +colors: + bg: "#FFFFFF" + fg: "#0D0B07" + black: "#FFFFFF" + red: "#575757" + green: "#575757" + yellow: "#575757" + blue: "#575757" + magenta: "#393939" + cyan: "#575757" + white: "#221E19" + brightBlack: "#C6C6C6" + brightRed: "#575757" + brightGreen: "#575757" + brightYellow: "#575757" + brightBlue: "#575757" + brightMagenta: "#393939" + brightCyan: "#575757" + brightWhite: "#000000" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 105.8 + black: 0 + red: 85.1 + green: 85.1 + yellow: 85.1 + blue: 85.1 + magenta: 96.6 + cyan: 85.1 + white: 103.5 + brightBlack: 30.7 + brightRed: 85.1 + brightGreen: 85.1 + brightYellow: 85.1 + brightBlue: 85.1 + brightMagenta: 96.6 + brightCyan: 85.1 + brightWhite: 106 diff --git a/themes/oxocarbon-theme--oxocarbon-oled.yaml b/themes/oxocarbon-theme--oxocarbon-oled.yaml new file mode 100644 index 00000000..27e53963 --- /dev/null +++ b/themes/oxocarbon-theme--oxocarbon-oled.yaml @@ -0,0 +1,54 @@ +name: "Oxocarbon Theme (Oxocarbon OLED)" +source: + marketplace_id: "NyoomEngineering.oxocarbon-vscode" + version: "1.2.0" + installs: 1566 + rating: 5 + ratings: 1 + author: "Nyoom Engineering" + repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" + formats: + zed: "https://raw.githubusercontent.com/nyoom-engineering/oxocarbon-vscode/main/assets/settings-zed.json" +colors: + bg: "#000000" + fg: "#F2F4F8" + black: "#000000" + red: "#78A9FF" + green: "#FF7EB6" + yellow: "#42BE65" + blue: "#08BDBA" + magenta: "#82CFFF" + cyan: "#33B1FF" + white: "#DDE1E6" + brightBlack: "#393939" + brightRed: "#78A9FF" + brightGreen: "#FF7EB6" + brightYellow: "#42BE65" + brightBlue: "#08BDBA" + brightMagenta: "#82CFFF" + brightCyan: "#33B1FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 100.6 + black: 0 + red: 55.8 + green: 56.1 + yellow: 55.3 + blue: 56.7 + magenta: 72.4 + cyan: 55.9 + white: 88.2 + brightBlack: 0 + brightRed: 55.8 + brightGreen: 56.1 + brightYellow: 55.3 + brightBlue: 56.7 + brightMagenta: 72.4 + brightCyan: 55.9 + brightWhite: 107.9 diff --git a/themes/oxocarbon-theme-oxocarbon-oled-monochrom-compatibility.yaml b/themes/oxocarbon-theme-oxocarbon-oled-monochrom-compatibility.yaml new file mode 100644 index 00000000..50427680 --- /dev/null +++ b/themes/oxocarbon-theme-oxocarbon-oled-monochrom-compatibility.yaml @@ -0,0 +1,54 @@ +name: "Oxocarbon Theme (Oxocarbon OLED Monochrom (compatibility))" +source: + marketplace_id: "NyoomEngineering.oxocarbon-vscode" + version: "1.2.0" + installs: 1566 + rating: 5 + ratings: 1 + author: "Nyoom Engineering" + repo: "https://github.com/nyoom-engineering/oxocarbon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=NyoomEngineering.oxocarbon-vscode" + formats: + zed: "https://raw.githubusercontent.com/nyoom-engineering/oxocarbon-vscode/main/assets/settings-zed.json" +colors: + bg: "#000000" + fg: "#F2F4F8" + black: "#000000" + red: "#A8A8A8" + green: "#A8A8A8" + yellow: "#A8A8A8" + blue: "#A8A8A8" + magenta: "#C6C6C6" + cyan: "#A8A8A8" + white: "#DDE1E6" + brightBlack: "#393939" + brightRed: "#A8A8A8" + brightGreen: "#A8A8A8" + brightYellow: "#A8A8A8" + brightBlue: "#A8A8A8" + brightMagenta: "#C6C6C6" + brightCyan: "#A8A8A8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 100.6 + black: 0 + red: 55.2 + green: 55.2 + yellow: 55.2 + blue: 55.2 + magenta: 72.1 + cyan: 55.2 + white: 88.2 + brightBlack: 0 + brightRed: 55.2 + brightGreen: 55.2 + brightYellow: 55.2 + brightBlue: 55.2 + brightMagenta: 72.1 + brightCyan: 55.2 + brightWhite: 107.9 diff --git a/themes/oxocarbonix--oxocarbonix-dark-theme.yaml b/themes/oxocarbonix--oxocarbonix-dark-theme.yaml new file mode 100644 index 00000000..fdda7a76 --- /dev/null +++ b/themes/oxocarbonix--oxocarbonix-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "oXocarbonix (oXocarbonix dark theme)" +source: + marketplace_id: "RonitGandhi.oxocarbonix" + version: "2.3.1" + installs: 454 + rating: 2 + ratings: 1 + author: "Ronit Gandhi" + repo: "https://github.com/ronit18/oXocarbonix-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=RonitGandhi.oxocarbonix" + formats: null +colors: + bg: "#161616" + fg: "#E6E9EF" + black: "#161616" + red: "#FF7EB6" + green: "#BE95FF" + yellow: "#FA973B" + blue: "#75A5F8" + magenta: "#D093FF" + cyan: "#75A5F8" + white: "#FFFFFF" + brightBlack: "#E6E9EF" + brightRed: "#FF7EB6" + brightGreen: "#BE95FF" + brightYellow: "#FA973B" + brightBlue: "#FFFFFF" + brightMagenta: "#D093FF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 92.5 + black: 0 + red: 55.2 + green: 54.9 + yellow: 58.4 + blue: 52.6 + magenta: 56.9 + cyan: 52.6 + white: 107 + brightBlack: 92.5 + brightRed: 55.2 + brightGreen: 54.9 + brightYellow: 58.4 + brightBlue: 107 + brightMagenta: 56.9 + brightCyan: 107 + brightWhite: 107 diff --git a/themes/p-o-s-themes--paulera-s-dark-monokai.yaml b/themes/p-o-s-themes--paulera-s-dark-monokai.yaml new file mode 100644 index 00000000..f50c3374 --- /dev/null +++ b/themes/p-o-s-themes--paulera-s-dark-monokai.yaml @@ -0,0 +1,53 @@ +name: "Pão's themes (Paulera's dark monokai)" +source: + marketplace_id: "Paulera.paulerathemes" + version: "1.4.3" + installs: 1871 + rating: 0 + ratings: 0 + author: "Paulera" + repo: "https://github.com/paulo-evangelista" + url: "https://marketplace.visualstudio.com/items?itemName=Paulera.paulerathemes" + formats: null +colors: + bg: "#151515" + fg: "#F7F1FF" + black: "#363537" + red: "#FC618D" + green: "#7BD88F" + yellow: "#B781DB" + blue: "#FD9353" + magenta: "#948AE3" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#B781DB" + brightBlue: "#FD9353" + brightMagenta: "#948AE3" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 99.4 + black: 0 + red: 46.5 + green: 70.4 + yellow: 45.5 + blue: 58.1 + magenta: 44.4 + cyan: 70.2 + white: 99.4 + brightBlack: 23 + brightRed: 46.5 + brightGreen: 70.4 + brightYellow: 45.5 + brightBlue: 58.1 + brightMagenta: 44.4 + brightCyan: 70.2 + brightWhite: 99.4 diff --git a/themes/p-o-s-themes--paulera-s-lyo.yaml b/themes/p-o-s-themes--paulera-s-lyo.yaml new file mode 100644 index 00000000..8166831d --- /dev/null +++ b/themes/p-o-s-themes--paulera-s-lyo.yaml @@ -0,0 +1,53 @@ +name: "Pão's themes (Paulera's Lyo)" +source: + marketplace_id: "Paulera.paulerathemes" + version: "1.4.3" + installs: 1871 + rating: 0 + ratings: 0 + author: "Paulera" + repo: "https://github.com/paulo-evangelista" + url: "https://marketplace.visualstudio.com/items?itemName=Paulera.paulerathemes" + formats: null +colors: + bg: "#151515" + fg: "#F7F1FF" + black: "#363537" + red: "#FC618D" + green: "#7BD88F" + yellow: "#5AD4E6" + blue: "#FD9353" + magenta: "#5AD4E6" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#5AD4E6" + brightBlue: "#FD9353" + brightMagenta: "#5AD4E6" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 99.4 + black: 0 + red: 46.5 + green: 70.4 + yellow: 70.2 + blue: 58.1 + magenta: 70.2 + cyan: 70.2 + white: 99.4 + brightBlack: 23 + brightRed: 46.5 + brightGreen: 70.4 + brightYellow: 70.2 + brightBlue: 58.1 + brightMagenta: 70.2 + brightCyan: 70.2 + brightWhite: 99.4 diff --git a/themes/paddy-color-themes--p-black.yaml b/themes/paddy-color-themes--p-black.yaml new file mode 100644 index 00000000..9f175d4d --- /dev/null +++ b/themes/paddy-color-themes--p-black.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Black)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#000000" + fg: "#F5DCBC" + black: "#3D3735" + red: "#EB1B00" + green: "#00A824" + yellow: "#FFBB00" + blue: "#2867B9" + magenta: "#D31353" + cyan: "#0BC2A3" + white: "#F5DCBC" + brightBlack: "#504D47" + brightRed: "#FF604B" + brightGreen: "#18D356" + brightYellow: "#FFD037" + brightBlue: "#43A4FF" + brightMagenta: "#FF24B6" + brightCyan: "#2AFDDA" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 87.7 + black: 0 + red: 33 + green: 43.7 + yellow: 72.8 + blue: 24 + magenta: 27.8 + cyan: 58.1 + white: 87.7 + brightBlack: 13.2 + brightRed: 46.2 + brightGreen: 64.3 + brightYellow: 81.4 + brightBlue: 51.1 + brightMagenta: 42.3 + brightCyan: 89.6 + brightWhite: 95.1 diff --git a/themes/paddy-color-themes--p-citadel.yaml b/themes/paddy-color-themes--p-citadel.yaml new file mode 100644 index 00000000..e53075ff --- /dev/null +++ b/themes/paddy-color-themes--p-citadel.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Citadel)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#092630" + fg: "#E3B19D" + black: "#205263" + red: "#FF4128" + green: "#14AD35" + yellow: "#EBA31C" + blue: "#173FC3" + magenta: "#DB0F8D" + cyan: "#03D6DD" + white: "#E3B19D" + brightBlack: "#215769" + brightRed: "#FF5A44" + brightGreen: "#48EC7F" + brightYellow: "#FFD54C" + brightBlue: "#509FFF" + brightMagenta: "#FF46C8" + brightCyan: "#8FEBF2" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "pink" + hue: 224 + pair: null + contrast: + fg: 63.7 + black: 10.3 + red: 38.3 + green: 43.5 + yellow: 57.7 + blue: 11.9 + magenta: 28.6 + cyan: 67.3 + white: 63.7 + brightBlack: 12 + brightRed: 42.4 + brightGreen: 75.8 + brightYellow: 81.1 + brightBlue: 47 + brightMagenta: 43.6 + brightCyan: 83 + brightWhite: 92.5 diff --git a/themes/paddy-color-themes--p-crimson.yaml b/themes/paddy-color-themes--p-crimson.yaml new file mode 100644 index 00000000..5add8b70 --- /dev/null +++ b/themes/paddy-color-themes--p-crimson.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Crimson)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#2B2B2B" + black: "#000000" + red: "#B61702" + green: "#009C22" + yellow: "#D68B01" + blue: "#1E5FB4" + magenta: "#D600C4" + cyan: "#0CB4B4" + white: "#C5C5C5" + brightBlack: "#3F3F3F" + brightRed: "#E43E28" + brightGreen: "#04B941" + brightYellow: "#FFB618" + brightBlue: "#2186E4" + brightMagenta: "#FF24E2" + brightCyan: "#12D6CC" + brightWhite: "#E4E4E4" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 100.9 + black: 106 + red: 81.2 + green: 63.1 + yellow: 53.2 + blue: 80.7 + magenta: 68.7 + cyan: 49.5 + white: 31.2 + brightBlack: 94.5 + brightRed: 67.4 + brightGreen: 50.3 + brightYellow: 31.8 + brightBlue: 64.5 + brightMagenta: 56.9 + brightCyan: 33.4 + brightWhite: 13.5 diff --git a/themes/paddy-color-themes--p-dark.yaml b/themes/paddy-color-themes--p-dark.yaml new file mode 100644 index 00000000..e3b68eb5 --- /dev/null +++ b/themes/paddy-color-themes--p-dark.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Dark)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#111212" + fg: "#DFC6BA" + black: "#4E4846" + red: "#CE3521" + green: "#05A829" + yellow: "#D37D0D" + blue: "#276AC2" + magenta: "#E0024C" + cyan: "#04C4A4" + white: "#DFC6BA" + brightBlack: "#6E6B64" + brightRed: "#FF553E" + brightGreen: "#69CB73" + brightYellow: "#FFAE18" + brightBlue: "#50A9FD" + brightMagenta: "#FF3478" + brightCyan: "#28F5D3" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 74.4 + black: 11.1 + red: 27.7 + green: 43.2 + yellow: 43.3 + blue: 25 + magenta: 29.9 + cyan: 58.4 + white: 74.4 + brightBlack: 24.7 + brightRed: 43.5 + brightGreen: 62.8 + brightYellow: 67.4 + brightBlue: 52.8 + brightMagenta: 40.4 + brightCyan: 84.5 + brightWhite: 94.6 diff --git a/themes/paddy-color-themes--p-eggplant.yaml b/themes/paddy-color-themes--p-eggplant.yaml new file mode 100644 index 00000000..44862e15 --- /dev/null +++ b/themes/paddy-color-themes--p-eggplant.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Eggplant)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#1C1525" + fg: "#FFD9BB" + black: "#39353D" + red: "#CE3521" + green: "#05A829" + yellow: "#D37D0D" + blue: "#276AC2" + magenta: "#E0024C" + cyan: "#04C4A4" + white: "#CFB5A9" + brightBlack: "#4B4750" + brightRed: "#FF553E" + brightGreen: "#2DDD68" + brightYellow: "#FFB618" + brightBlue: "#50A9FD" + brightMagenta: "#FF3478" + brightCyan: "#28F5D3" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 304 + pair: null + contrast: + fg: 86.7 + black: 0 + red: 27.1 + green: 42.6 + yellow: 42.7 + blue: 24.4 + magenta: 29.3 + cyan: 57.9 + white: 64.1 + brightBlack: 10.3 + brightRed: 42.9 + brightGreen: 68.6 + brightYellow: 69.8 + brightBlue: 52.2 + brightMagenta: 39.8 + brightCyan: 84 + brightWhite: 94 diff --git a/themes/paddy-color-themes--p-emerald.yaml b/themes/paddy-color-themes--p-emerald.yaml new file mode 100644 index 00000000..bbba1e23 --- /dev/null +++ b/themes/paddy-color-themes--p-emerald.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Emerald)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#0A1A13" + fg: "#FAD6B9" + black: "#353D36" + red: "#CE3521" + green: "#05A829" + yellow: "#D3840D" + blue: "#3A76C4" + magenta: "#E0024C" + cyan: "#34B6A0" + white: "#CFB5A9" + brightBlack: "#47504A" + brightRed: "#FF553E" + brightGreen: "#2DDD68" + brightYellow: "#FFB618" + brightBlue: "#65B4FF" + brightMagenta: "#FF3478" + brightCyan: "#69F7DF" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 164 + pair: null + contrast: + fg: 84.7 + black: 0 + red: 27.2 + green: 42.7 + yellow: 44.9 + blue: 29 + magenta: 29.4 + cyan: 51.9 + white: 64.2 + brightBlack: 12.3 + brightRed: 43 + brightGreen: 68.7 + brightYellow: 69.9 + brightBlue: 57.9 + brightMagenta: 39.9 + brightCyan: 87.4 + brightWhite: 94.1 diff --git a/themes/paddy-color-themes--p-eucalyptus.yaml b/themes/paddy-color-themes--p-eucalyptus.yaml new file mode 100644 index 00000000..61302310 --- /dev/null +++ b/themes/paddy-color-themes--p-eucalyptus.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Eucalyptus)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#21241E" + fg: "#E7B07D" + black: "#3D3735" + red: "#AD5145" + green: "#6EA03D" + yellow: "#B88F51" + blue: "#5477A5" + magenta: "#AE5975" + cyan: "#549878" + white: "#FAE5D6" + brightBlack: "#504D47" + brightRed: "#E35E4D" + brightGreen: "#8AC255" + brightYellow: "#E8B455" + brightBlue: "#6FB2D1" + brightMagenta: "#D66C8F" + brightCyan: "#7BC09D" + brightWhite: "#FFF2EC" +meta: + mode: "dark" + accent: "orange" + hue: 129 + pair: null + contrast: + fg: 63.1 + black: 0 + red: 23.9 + green: 41.3 + yellow: 43.1 + blue: 27.2 + magenta: 26.9 + cyan: 37.5 + white: 90.8 + brightBlack: 10.6 + brightRed: 37.2 + brightGreen: 58.4 + brightYellow: 64.1 + brightBlue: 53.4 + brightMagenta: 39.4 + brightCyan: 58 + brightWhite: 98.3 diff --git a/themes/paddy-color-themes--p-floresta.yaml b/themes/paddy-color-themes--p-floresta.yaml new file mode 100644 index 00000000..1be000fd --- /dev/null +++ b/themes/paddy-color-themes--p-floresta.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Floresta)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#07171A" + fg: "#FFD4C7" + black: "#26362F" + red: "#EC1C00" + green: "#068020" + yellow: "#D3940D" + blue: "#3465A5" + magenta: "#C40B71" + cyan: "#08A087" + white: "#FFD4C7" + brightBlack: "#3E4E45" + brightRed: "#FF6551" + brightGreen: "#24CA5B" + brightYellow: "#FFCA37" + brightBlue: "#3191EB" + brightMagenta: "#FF24BD" + brightCyan: "#2AE6C6" + brightWhite: "#FFFBF9" +meta: + mode: "dark" + accent: "pink" + hue: 211 + pair: null + contrast: + fg: 85.4 + black: 0 + red: 32.4 + green: 26.3 + yellow: 50.2 + blue: 21.6 + magenta: 24.2 + cyan: 41.2 + white: 85.4 + brightBlack: 11.3 + brightRed: 46.5 + brightGreen: 59.3 + brightYellow: 78.1 + brightBlue: 41.1 + brightMagenta: 41.8 + brightCyan: 76.1 + brightWhite: 104.9 diff --git a/themes/paddy-color-themes--p-frost.yaml b/themes/paddy-color-themes--p-frost.yaml new file mode 100644 index 00000000..3504f0dc --- /dev/null +++ b/themes/paddy-color-themes--p-frost.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Frost)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#186554" + black: "#000000" + red: "#B61702" + green: "#068020" + yellow: "#D37D0D" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#A5B4AB" + brightBlack: "#4A574D" + brightRed: "#D43E2A" + brightGreen: "#1B9E47" + brightYellow: "#FF9B18" + brightBlue: "#3A89D3" + brightMagenta: "#FF246D" + brightCyan: "#1BDFBE" + brightWhite: "#C7CECB" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 83.7 + black: 106 + red: 81.2 + green: 74.5 + yellow: 57.9 + blue: 79.3 + magenta: 77.8 + cyan: 59.6 + white: 42.5 + brightBlack: 86.4 + brightRed: 71 + brightGreen: 61.8 + brightYellow: 40.9 + brightBlue: 64.1 + brightMagenta: 62.1 + brightCyan: 29.8 + brightWhite: 27.1 diff --git a/themes/paddy-color-themes--p-genmaicha.yaml b/themes/paddy-color-themes--p-genmaicha.yaml new file mode 100644 index 00000000..8bc0cb53 --- /dev/null +++ b/themes/paddy-color-themes--p-genmaicha.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Genmaicha)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#F8DCA8" + fg: "#232729" + black: "#232729" + red: "#B61702" + green: "#009C22" + yellow: "#D68B01" + blue: "#1E5FB4" + magenta: "#D600C4" + cyan: "#0CB4B4" + white: "#C5C5C5" + brightBlack: "#3F3F3F" + brightRed: "#E43E28" + brightGreen: "#04B941" + brightYellow: "#FFB618" + brightBlue: "#2186E4" + brightMagenta: "#FF24E2" + brightCyan: "#12D6CC" + brightWhite: "#E4E4E4" +meta: + mode: "light" + accent: "pink" + hue: 83 + pair: null + contrast: + fg: 83.3 + black: 83.3 + red: 62.5 + green: 44.5 + yellow: 34.6 + blue: 62.1 + magenta: 50.1 + cyan: 30.9 + white: 12.6 + brightBlack: 75.8 + brightRed: 48.8 + brightGreen: 31.7 + brightYellow: 13.2 + brightBlue: 45.9 + brightMagenta: 38.3 + brightCyan: 14.8 + brightWhite: 0 diff --git a/themes/paddy-color-themes--p-grizzly.yaml b/themes/paddy-color-themes--p-grizzly.yaml new file mode 100644 index 00000000..e1772497 --- /dev/null +++ b/themes/paddy-color-themes--p-grizzly.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Grizzly)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#201612" + fg: "#F1BC94" + black: "#3C312D" + red: "#DA2811" + green: "#399227" + yellow: "#C98621" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#F1BC94" + brightBlack: "#4B4138" + brightRed: "#FD4931" + brightGreen: "#26BE21" + brightYellow: "#FFB618" + brightBlue: "#3A89D3" + brightMagenta: "#FF3C7D" + brightCyan: "#1BDFBE" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 43 + pair: null + contrast: + fg: 71.4 + black: 0 + red: 28.5 + green: 34 + yellow: 43.7 + blue: 21.3 + magenta: 22.9 + cyan: 40.9 + white: 71.4 + brightBlack: 8.2 + brightRed: 40.5 + brightGreen: 52.8 + brightYellow: 69.7 + brightBlue: 36.4 + brightMagenta: 40.7 + brightCyan: 71.9 + brightWhite: 94 diff --git a/themes/paddy-color-themes--p-haze.yaml b/themes/paddy-color-themes--p-haze.yaml new file mode 100644 index 00000000..018cf637 --- /dev/null +++ b/themes/paddy-color-themes--p-haze.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Haze)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#5B405B" + fg: "#E4CBC4" + black: "#745874" + red: "#D66B5D" + green: "#3FD15E" + yellow: "#FAC534" + blue: "#4F8CDB" + magenta: "#FF58BF" + cyan: "#30E9CA" + white: "#FFFBFA" + brightBlack: "#8D748D" + brightRed: "#FF8D7E" + brightGreen: "#90FCB4" + brightYellow: "#FFD885" + brightBlue: "#6FB7FA" + brightMagenta: "#FF84EB" + brightCyan: "#55FFE3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 327 + pair: null + contrast: + fg: 65.4 + black: 8.2 + red: 27.5 + green: 51.3 + yellow: 63.2 + blue: 27.2 + magenta: 35.6 + cyan: 65.9 + white: 92.9 + brightBlack: 20 + brightRed: 45.5 + brightGreen: 78.8 + brightYellow: 73.1 + brightBlue: 47.7 + brightMagenta: 47.6 + brightCyan: 79.2 + brightWhite: 95 diff --git a/themes/paddy-color-themes--p-inkstone.yaml b/themes/paddy-color-themes--p-inkstone.yaml new file mode 100644 index 00000000..6da82094 --- /dev/null +++ b/themes/paddy-color-themes--p-inkstone.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Inkstone)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#111B22" + fg: "#F5D8C3" + black: "#353D3D" + red: "#CE3521" + green: "#05A829" + yellow: "#D39E0D" + blue: "#276AC2" + magenta: "#E0024C" + cyan: "#04C4A4" + white: "#CFB5A9" + brightBlack: "#475050" + brightRed: "#FF553E" + brightGreen: "#2DDD68" + brightYellow: "#FFC918" + brightBlue: "#50A9FD" + brightMagenta: "#FF3478" + brightCyan: "#28F5D3" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 239 + pair: null + contrast: + fg: 84.8 + black: 0 + red: 26.9 + green: 42.4 + yellow: 53.2 + blue: 24.2 + magenta: 29.1 + cyan: 57.7 + white: 63.9 + brightBlack: 12.2 + brightRed: 42.7 + brightGreen: 68.5 + brightYellow: 77 + brightBlue: 52.1 + brightMagenta: 39.6 + brightCyan: 83.8 + brightWhite: 93.8 diff --git a/themes/paddy-color-themes--p-leipzig.yaml b/themes/paddy-color-themes--p-leipzig.yaml new file mode 100644 index 00000000..692be33b --- /dev/null +++ b/themes/paddy-color-themes--p-leipzig.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Leipzig)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#221B1D" + fg: "#E7C4A3" + black: "#3D3735" + red: "#BE4939" + green: "#2A9842" + yellow: "#D39E0D" + blue: "#4C6F9D" + magenta: "#C63263" + cyan: "#39B7A2" + white: "#CFB5A9" + brightBlack: "#504A47" + brightRed: "#EF5C48" + brightGreen: "#53C666" + brightYellow: "#FFC918" + brightBlue: "#6FACE5" + brightMagenta: "#F15488" + brightCyan: "#4DEDD2" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: 359 + pair: null + contrast: + fg: 72.9 + black: 0 + red: 26.3 + green: 35.8 + yellow: 52.9 + blue: 24.6 + magenta: 25.5 + cyan: 51.9 + white: 63.6 + brightBlack: 10.7 + brightRed: 40.2 + brightGreen: 58 + brightYellow: 76.7 + brightBlue: 53 + brightMagenta: 40.6 + brightCyan: 80.1 + brightWhite: 93.4 diff --git a/themes/paddy-color-themes--p-light.yaml b/themes/paddy-color-themes--p-light.yaml new file mode 100644 index 00000000..21cfdf69 --- /dev/null +++ b/themes/paddy-color-themes--p-light.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Light)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#F3E7E2" + fg: "#423926" + black: "#000000" + red: "#B61702" + green: "#068020" + yellow: "#EE8F13" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#CFB5A9" + brightBlack: "#5C5442" + brightRed: "#D43E2A" + brightGreen: "#1B9E47" + brightYellow: "#FFC936" + brightBlue: "#3A89D3" + brightMagenta: "#FF246D" + brightCyan: "#1BDFBE" + brightWhite: "#FAE8E0" +meta: + mode: "light" + accent: "red" + hue: 44 + pair: null + contrast: + fg: 83.4 + black: 93.2 + red: 68.3 + green: 61.7 + yellow: 34.9 + blue: 66.5 + magenta: 64.9 + cyan: 46.8 + white: 24.3 + brightBlack: 73.2 + brightRed: 58.1 + brightGreen: 49 + brightYellow: 11.8 + brightBlue: 51.2 + brightMagenta: 49.3 + brightCyan: 16.9 + brightWhite: 0 diff --git a/themes/paddy-color-themes--p-machine.yaml b/themes/paddy-color-themes--p-machine.yaml new file mode 100644 index 00000000..dc2f81ee --- /dev/null +++ b/themes/paddy-color-themes--p-machine.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Machine)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#393837" + fg: "#F7DBC5" + black: "#747270" + red: "#E9523E" + green: "#25AC42" + yellow: "#EB780D" + blue: "#5595BD" + magenta: "#E02D69" + cyan: "#46B9B9" + white: "#FAE5D6" + brightBlack: "#868686" + brightRed: "#FF8170" + brightGreen: "#2FEC6E" + brightYellow: "#FFAF37" + brightBlue: "#73BCF8" + brightMagenta: "#FF6D9E" + brightCyan: "#7BE6E6" + brightWhite: "#FFF2EC" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 80.5 + black: 21.1 + red: 31.2 + green: 38.6 + yellow: 39.7 + blue: 34.5 + magenta: 25.3 + cyan: 48.5 + white: 86 + brightBlack: 30.3 + brightRed: 47.3 + brightGreen: 70.2 + brightYellow: 61.1 + brightBlue: 55.4 + brightMagenta: 43.7 + brightCyan: 74 + brightWhite: 93.6 diff --git a/themes/paddy-color-themes--p-mist.yaml b/themes/paddy-color-themes--p-mist.yaml new file mode 100644 index 00000000..731b0c5d --- /dev/null +++ b/themes/paddy-color-themes--p-mist.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Mist)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#3A4444" + fg: "#FFE3CC" + black: "#606D6D" + red: "#FA5C47" + green: "#25AC42" + yellow: "#CCA63C" + blue: "#4779BB" + magenta: "#E02D69" + cyan: "#46B9B9" + white: "#FAE5D6" + brightBlack: "#899494" + brightRed: "#FD8677" + brightGreen: "#2FEC6E" + brightYellow: "#FFDD47" + brightBlue: "#68B6FF" + brightMagenta: "#FF6D9E" + brightCyan: "#7BE6E6" + brightWhite: "#FFF2EC" +meta: + mode: "dark" + accent: "green" + hue: 197 + pair: null + contrast: + fg: 82.4 + black: 14.5 + red: 33.8 + green: 35.5 + yellow: 46.2 + blue: 20.6 + magenta: 22.2 + cyan: 45.4 + white: 82.9 + brightBlack: 33 + brightRed: 45.3 + brightGreen: 67.1 + brightYellow: 76.7 + brightBlue: 49.5 + brightMagenta: 40.6 + brightCyan: 70.9 + brightWhite: 90.5 diff --git a/themes/paddy-color-themes--p-neptune.yaml b/themes/paddy-color-themes--p-neptune.yaml new file mode 100644 index 00000000..5c0b3eba --- /dev/null +++ b/themes/paddy-color-themes--p-neptune.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Neptune)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#070C25" + fg: "#FDC0BE" + black: "#242334" + red: "#E72006" + green: "#068020" + yellow: "#D37D0D" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#CFA9BB" + brightBlack: "#444367" + brightRed: "#F7614D" + brightGreen: "#1B9E47" + brightYellow: "#FF9B18" + brightBlue: "#3A89D3" + brightMagenta: "#FF246D" + brightCyan: "#1BDFBE" + brightWhite: "#FAE0E8" +meta: + mode: "dark" + accent: "red" + hue: 271 + pair: null + contrast: + fg: 77.1 + black: 0 + red: 31.8 + green: 26.8 + yellow: 43.4 + blue: 22.1 + magenta: 23.6 + cyan: 41.7 + white: 61 + brightBlack: 10.4 + brightRed: 44.3 + brightGreen: 39.4 + brightYellow: 61 + brightBlue: 37.2 + brightMagenta: 39.1 + brightCyan: 72.6 + brightWhite: 91.5 diff --git a/themes/paddy-color-themes--p-ornithopter.yaml b/themes/paddy-color-themes--p-ornithopter.yaml new file mode 100644 index 00000000..fbdeae90 --- /dev/null +++ b/themes/paddy-color-themes--p-ornithopter.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Ornithopter)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#3D3028" + fg: "#F5DCBC" + black: "#55453B" + red: "#E74935" + green: "#98BD5C" + yellow: "#EF951E" + blue: "#8EB7CA" + magenta: "#CA405E" + cyan: "#78C0B4" + white: "#F5DCBC" + brightBlack: "#726054" + brightRed: "#FF7562" + brightGreen: "#C1E954" + brightYellow: "#FFC31E" + brightBlue: "#67D7DB" + brightMagenta: "#F85E91" + brightCyan: "#98FCD6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 53 + pair: null + contrast: + fg: 81.9 + black: 0 + red: 30.8 + green: 54.3 + yellow: 50.6 + blue: 54.3 + magenta: 23.9 + cyan: 55.5 + white: 81.9 + brightBlack: 16.2 + brightRed: 45.5 + brightGreen: 78.7 + brightYellow: 70.2 + brightBlue: 66.7 + brightMagenta: 40.2 + brightCyan: 87.7 + brightWhite: 102.1 diff --git a/themes/paddy-color-themes--p-ox.yaml b/themes/paddy-color-themes--p-ox.yaml new file mode 100644 index 00000000..61104f5d --- /dev/null +++ b/themes/paddy-color-themes--p-ox.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Ox)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#1F0C0F" + fg: "#ECAF87" + black: "#332726" + red: "#BC1600" + green: "#39A150" + yellow: "#D39E0D" + blue: "#4075A7" + magenta: "#D0245E" + cyan: "#29AD97" + white: "#CFB5A9" + brightBlack: "#4D3232" + brightRed: "#FF2E13" + brightGreen: "#73C84C" + brightYellow: "#FFC918" + brightBlue: "#62B2E4" + brightMagenta: "#EF4980" + brightCyan: "#60DEC9" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "orange" + hue: 11 + pair: null + contrast: + fg: 65.8 + black: 0 + red: 21.3 + green: 41.2 + yellow: 53.9 + blue: 27.5 + magenta: 27.5 + cyan: 47.8 + white: 64.6 + brightBlack: 0 + brightRed: 38.4 + brightGreen: 61.3 + brightYellow: 77.7 + brightBlue: 55.7 + brightMagenta: 39.3 + brightCyan: 74.1 + brightWhite: 94.5 diff --git a/themes/paddy-color-themes--p-terabyte.yaml b/themes/paddy-color-themes--p-terabyte.yaml new file mode 100644 index 00000000..9e02ed4b --- /dev/null +++ b/themes/paddy-color-themes--p-terabyte.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Terabyte)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#0B1A1A" + fg: "#E6D4B2" + black: "#243D36" + red: "#A94133" + green: "#3BCE16" + yellow: "#B47D36" + blue: "#4A89AD" + magenta: "#CB3E43" + cyan: "#6CFFBD" + white: "#E8BFA1" + brightBlack: "#406662" + brightRed: "#E46857" + brightGreen: "#8FE560" + brightYellow: "#FFCB2F" + brightBlue: "#68BBDB" + brightMagenta: "#F3777B" + brightCyan: "#C0FFE6" + brightWhite: "#FAECE0" +meta: + mode: "dark" + accent: "green" + hue: 196 + pair: null + contrast: + fg: 80.5 + black: 0 + red: 21.4 + green: 60.8 + yellow: 37.8 + blue: 34.9 + magenta: 27.9 + cyan: 90.3 + white: 71.5 + brightBlack: 19.1 + brightRed: 41.2 + brightGreen: 76.9 + brightYellow: 78.2 + brightBlue: 58.8 + brightMagenta: 48.7 + brightCyan: 98 + brightWhite: 95.8 diff --git a/themes/paddy-color-themes--p-ultramarine.yaml b/themes/paddy-color-themes--p-ultramarine.yaml new file mode 100644 index 00000000..521bf185 --- /dev/null +++ b/themes/paddy-color-themes--p-ultramarine.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Ultramarine)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#050809" + fg: "#FFFFFF" + black: "#454545" + red: "#CE3521" + green: "#24943C" + yellow: "#BB8F18" + blue: "#276AC2" + magenta: "#E0024C" + cyan: "#04BEC4" + white: "#FFFFFF" + brightBlack: "#707070" + brightRed: "#FF553E" + brightGreen: "#76DD61" + brightYellow: "#FFD518" + brightBlue: "#50A9FD" + brightMagenta: "#FF3478" + brightCyan: "#28F5EB" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 107.8 + black: 10.1 + red: 28.2 + green: 35.6 + yellow: 45.6 + blue: 25.5 + magenta: 30.4 + cyan: 57.5 + white: 107.8 + brightBlack: 27.3 + brightRed: 44 + brightGreen: 72.3 + brightYellow: 83.3 + brightBlue: 53.3 + brightMagenta: 40.9 + brightCyan: 86.1 + brightWhite: 95 diff --git a/themes/paddy-color-themes--p-wolf.yaml b/themes/paddy-color-themes--p-wolf.yaml new file mode 100644 index 00000000..e0df5cea --- /dev/null +++ b/themes/paddy-color-themes--p-wolf.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Wolf)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#221F1E" + fg: "#DCBD9D" + black: "#473E3B" + red: "#B61702" + green: "#74AD45" + yellow: "#D37D0D" + blue: "#3465A5" + magenta: "#C40B48" + cyan: "#08A087" + white: "#DCBD9D" + brightBlack: "#575249" + brightRed: "#D43E2A" + brightGreen: "#84C32B" + brightYellow: "#FF9B18" + brightBlue: "#3A89D3" + brightMagenta: "#FF246D" + brightCyan: "#1BDFBE" + brightWhite: "#FAE8E0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 67.8 + black: 0 + red: 18.6 + green: 47.7 + yellow: 41.8 + blue: 20.4 + magenta: 22 + cyan: 40 + white: 67.8 + brightBlack: 13.1 + brightRed: 28.6 + brightGreen: 58.4 + brightYellow: 59.3 + brightBlue: 35.5 + brightMagenta: 37.5 + brightCyan: 70.9 + brightWhite: 93.1 diff --git a/themes/paddy-color-themes--p-yesterday.yaml b/themes/paddy-color-themes--p-yesterday.yaml new file mode 100644 index 00000000..6641957f --- /dev/null +++ b/themes/paddy-color-themes--p-yesterday.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Yesterday)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#23282A" + fg: "#F1CAC0" + black: "#374344" + red: "#F04129" + green: "#25AC42" + yellow: "#CCA63C" + blue: "#4779BB" + magenta: "#E02D69" + cyan: "#46B9B9" + white: "#FAE5D6" + brightBlack: "#556661" + brightRed: "#FF634F" + brightGreen: "#2FEC6E" + brightYellow: "#FFDD47" + brightBlue: "#68B6FF" + brightMagenta: "#FF6D9E" + brightCyan: "#7BE6E6" + brightWhite: "#FFF2EC" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 76.3 + black: 0 + red: 34.1 + green: 42.7 + yellow: 53.4 + blue: 27.7 + magenta: 29.3 + cyan: 52.5 + white: 90.1 + brightBlack: 18.2 + brightRed: 43.6 + brightGreen: 74.3 + brightYellow: 83.8 + brightBlue: 56.7 + brightMagenta: 47.8 + brightCyan: 78 + brightWhite: 97.6 diff --git a/themes/paddy-color-themes--p-zenith.yaml b/themes/paddy-color-themes--p-zenith.yaml new file mode 100644 index 00000000..8509b111 --- /dev/null +++ b/themes/paddy-color-themes--p-zenith.yaml @@ -0,0 +1,53 @@ +name: "Paddy Color Themes (P. \ Zenith)" +source: + marketplace_id: "yile-ou.paddy-color-theme" + version: "1.11.9" + installs: 74833 + rating: 5 + ratings: 20 + author: "Yile" + repo: "https://github.com/yl92/paddy-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=yile-ou.paddy-color-theme" + formats: null +colors: + bg: "#140D1A" + fg: "#F3B8BA" + black: "#331F38" + red: "#EC1C00" + green: "#016F33" + yellow: "#D3940D" + blue: "#3465A5" + magenta: "#C40B71" + cyan: "#0891A0" + white: "#B886FF" + brightBlack: "#483247" + brightRed: "#FF6551" + brightGreen: "#3AB4A6" + brightYellow: "#FFCA37" + brightBlue: "#3191EB" + brightMagenta: "#FF24BD" + brightCyan: "#2AE6C6" + brightWhite: "#FFFBF9" +meta: + mode: "dark" + accent: "pink" + hue: 308 + pair: null + contrast: + fg: 72.1 + black: 0 + red: 32.8 + green: 20.6 + yellow: 50.6 + blue: 22 + magenta: 24.6 + cyan: 36.5 + white: 49.9 + brightBlack: 0 + brightRed: 46.9 + brightGreen: 52 + brightYellow: 78.5 + brightBlue: 41.4 + brightMagenta: 42.2 + brightCyan: 76.5 + brightWhite: 105.3 diff --git a/themes/padrepio-dark--untitled.yaml b/themes/padrepio-dark--untitled.yaml new file mode 100644 index 00000000..cf9330e8 --- /dev/null +++ b/themes/padrepio-dark--untitled.yaml @@ -0,0 +1,53 @@ +name: "PadrePio Dark (Untitled)" +source: + marketplace_id: "Houlz.padrepio" + version: "2.1.0" + installs: 373 + rating: 5 + ratings: 1 + author: "Houlz" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Houlz.padrepio" + formats: null +colors: + bg: "#101316" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.9 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/painful-light.yaml b/themes/painful-light.yaml new file mode 100644 index 00000000..2f8c60ac --- /dev/null +++ b/themes/painful-light.yaml @@ -0,0 +1,53 @@ +name: "Painful light" +source: + marketplace_id: "xynny.painfullight-theme" + version: "0.0.1" + installs: 417 + rating: 5 + ratings: 2 + author: "xynny" + repo: "https://github.com/xynnylol/vsthemes" + url: "https://marketplace.visualstudio.com/items?itemName=xynny.painfullight-theme" + formats: null +colors: + bg: "#411200" + fg: "#FFFFFF" + black: "#FF00B3" + red: "#FF0000" + green: "#046D45" + yellow: "#828200" + blue: "#1A5CA5" + magenta: "#FF00FF" + cyan: "#969B00" + white: "#055BFF" + brightBlack: "#059600" + brightRed: "#FF006C" + brightGreen: "#044F31" + brightYellow: "#929255" + brightBlue: "#174905" + brightMagenta: "#FF43FF" + brightCyan: "#002E03" + brightWhite: "#FF6C00" +meta: + mode: "dark" + accent: "pink" + hue: 41 + pair: null + contrast: + fg: 105.1 + black: 38.6 + red: 34.8 + green: 17.8 + yellow: 31 + blue: 16.4 + magenta: 43.4 + cyan: 42.4 + white: 23.7 + brightBlack: 33.2 + brightRed: 35.9 + brightGreen: 7.6 + brightYellow: 39.2 + brightBlue: 0 + brightMagenta: 46.7 + brightCyan: 0 + brightWhite: 45.5 diff --git a/themes/pandju--pandju.yaml b/themes/pandju--pandju.yaml new file mode 100644 index 00000000..667c6050 --- /dev/null +++ b/themes/pandju--pandju.yaml @@ -0,0 +1,53 @@ +name: "Pandju (Pandju)" +source: + marketplace_id: "TobiasTimm.pandju" + version: "1.0.1" + installs: 2735 + rating: 5 + ratings: 1 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/pandju" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.pandju" + formats: null +colors: + bg: "#171D2B" + fg: "#E6E6E6" + black: "#6F7899" + red: "#F4326D" + green: "#17F9D7" + yellow: "#FFEDBB" + blue: "#A188F1" + magenta: "#FF75B5" + cyan: "#F7B773" + white: "#D7E2FF" + brightBlack: "#6F7899" + brightRed: "#F4326D" + brightGreen: "#17F9D7" + brightYellow: "#FFEDBB" + brightBlue: "#A188F1" + brightMagenta: "#FF75B5" + brightCyan: "#F7B773" + brightWhite: "#D7E2FF" +meta: + mode: "dark" + accent: "red" + hue: 266 + pair: null + contrast: + fg: 89.9 + black: 29.8 + red: 36.1 + green: 85.5 + yellow: 95 + blue: 45.3 + magenta: 52.1 + cyan: 69.1 + white: 87.4 + brightBlack: 29.8 + brightRed: 36.1 + brightGreen: 85.5 + brightYellow: 95 + brightBlue: 45.3 + brightMagenta: 52.1 + brightCyan: 69.1 + brightWhite: 87.4 diff --git a/themes/papaya-theme.yaml b/themes/papaya-theme.yaml new file mode 100644 index 00000000..44f6730f --- /dev/null +++ b/themes/papaya-theme.yaml @@ -0,0 +1,54 @@ +name: "Papaya Theme" +source: + marketplace_id: "fethalen.papaya" + version: "0.1.2" + installs: 4335 + rating: 5 + ratings: 1 + author: "fethalen" + repo: "git://github.com/fethalen/papaya" + url: "https://marketplace.visualstudio.com/items?itemName=fethalen.papaya" + formats: + sublime: "https://raw.githubusercontent.com/fethalen/papaya/main/node_modules/generator-code/generators/app/templates/ext-colortheme/themes/theme.tmTheme" +colors: + bg: "#1F1E24" + fg: "#B6D3E3" + black: "#2A2732" + red: "#C35066" + green: "#608867" + yellow: "#CDA55E" + blue: "#366DB8" + magenta: "#8F64CB" + cyan: "#5A7491" + white: "#D8D8D8" + brightBlack: "#686868" + brightRed: "#D76979" + brightGreen: "#75BC77" + brightYellow: "#F0C06B" + brightBlue: "#3688F7" + brightMagenta: "#CA61B2" + brightCyan: "#82B9D8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 293 + pair: null + contrast: + fg: 75.3 + black: 0 + red: 29.1 + green: 32.2 + yellow: 54.9 + blue: 24.3 + magenta: 30 + cyan: 26.2 + white: 81 + brightBlack: 22 + brightRed: 38.8 + brightGreen: 55.4 + brightYellow: 71.1 + brightBlue: 37.8 + brightMagenta: 36.8 + brightCyan: 58.7 + brightWhite: 105.9 diff --git a/themes/para-so-dark-treffynnon.yaml b/themes/para-so-dark-treffynnon.yaml new file mode 100644 index 00000000..8c40a1bb --- /dev/null +++ b/themes/para-so-dark-treffynnon.yaml @@ -0,0 +1,53 @@ +name: "Paraíso (dark)" +source: + marketplace_id: "treffynnon.paraiso-dark-vscode-theme" + version: "1.0.2" + installs: 220 + rating: 0 + ratings: 0 + author: "treffynnon" + repo: "https://github.com/treffynnon/paraiso-dark-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=treffynnon.paraiso-dark-vscode-theme" + formats: null +colors: + bg: "#2F1E2E" + fg: "#A39E9B" + black: "#2F1E2E" + red: "#EF6155" + green: "#48B685" + yellow: "#FEC418" + blue: "#06B6EF" + magenta: "#815BA4" + cyan: "#5BC4BF" + white: "#A39E9B" + brightBlack: "#776E71" + brightRed: "#EF6155" + brightGreen: "#48B685" + brightYellow: "#FEC418" + brightBlue: "#06B6EF" + brightMagenta: "#815BA4" + brightCyan: "#5BC4BF" + brightWhite: "#E7E9DB" +meta: + mode: "dark" + accent: "orange" + hue: 329 + pair: null + contrast: + fg: 47.5 + black: 0 + red: 40.3 + green: 49.9 + yellow: 73.4 + blue: 53.7 + magenta: 22.8 + cyan: 59.1 + white: 47.5 + brightBlack: 24.8 + brightRed: 40.3 + brightGreen: 49.9 + brightYellow: 73.4 + brightBlue: 53.7 + brightMagenta: 22.8 + brightCyan: 59.1 + brightWhite: 89.9 diff --git a/themes/parchment--monochrome-themes.yaml b/themes/parchment--monochrome-themes.yaml new file mode 100644 index 00000000..742f9258 --- /dev/null +++ b/themes/parchment--monochrome-themes.yaml @@ -0,0 +1,53 @@ +name: "Parchment (monochrome themes)" +source: + marketplace_id: "johv.parchment-light" + version: "1.10.0" + installs: 3883 + rating: 5 + ratings: 2 + author: "Jonas Hvid" + repo: "https://github.com/c2d7fa/vscode-parchment-light" + url: "https://marketplace.visualstudio.com/items?itemName=johv.parchment-light" + formats: null +colors: + bg: "#181818" + fg: "#D4D4D4" + black: "#474747" + red: "#DB868A" + green: "#89A768" + yellow: "#B69A69" + blue: "#7E9FD4" + magenta: "#B290D4" + cyan: "#6EA7AC" + white: "#C6C6C6" + brightBlack: "#303030" + brightRed: "#D55D63" + brightGreen: "#728C56" + brightYellow: "#988057" + brightBlue: "#6285BB" + brightMagenta: "#9E70C7" + brightCyan: "#5C8C90" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.4 + black: 9.8 + red: 48.7 + green: 48.5 + yellow: 48.6 + blue: 48.5 + magenta: 48.7 + cyan: 48.5 + white: 71 + brightBlack: 0 + brightRed: 36 + brightGreen: 35.5 + brightYellow: 35.3 + brightBlue: 35.5 + brightMagenta: 35.6 + brightCyan: 35.6 + brightWhite: 79.4 diff --git a/themes/paro-paro-solarized-dark.yaml b/themes/paro-paro-solarized-dark.yaml new file mode 100644 index 00000000..6459908c --- /dev/null +++ b/themes/paro-paro-solarized-dark.yaml @@ -0,0 +1,54 @@ +name: "Paro Paro Solarized Dark" +source: + marketplace_id: "Paro-Paro.paro-paro-solarized-dark" + version: "1.2.2" + installs: 98 + rating: 0 + ratings: 0 + author: "Paro-Paro" + repo: "https://github.com/paro-paro/paro-paro-solarized-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Paro-Paro.paro-paro-solarized-dark" + formats: + zed: "https://raw.githubusercontent.com/paro-paro/paro-paro-solarized-dark/main/themes/solarized.json" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#FF0000" + green: "#1EC81E" + yellow: "#F0CC09" + blue: "#1460D2" + magenta: "#C792EA" + cyan: "#00BBBB" + white: "#EEFFFF" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 35.3 + green: 56.3 + yellow: 74.9 + blue: 21.3 + magenta: 52.5 + cyan: 53.6 + white: 103.3 + brightBlack: 0 + brightRed: 28.4 + brightGreen: 22.7 + brightYellow: 28.5 + brightBlue: 40.7 + brightMagenta: 29.2 + brightCyan: 47.6 + brightWhite: 99.8 diff --git a/themes/paro-paro-themes--paro-paro-solarized-dark-theme.yaml b/themes/paro-paro-themes--paro-paro-solarized-dark-theme.yaml new file mode 100644 index 00000000..176fdec4 --- /dev/null +++ b/themes/paro-paro-themes--paro-paro-solarized-dark-theme.yaml @@ -0,0 +1,54 @@ +name: "Paro Paro Themes (Paro-Paro-Solarized-Dark-Theme)" +source: + marketplace_id: "Paro-Paro.paro-paro-themes" + version: "2.0.2" + installs: 35 + rating: 0 + ratings: 0 + author: "Paro-Paro" + repo: "https://github.com/paro-paro/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=Paro-Paro.paro-paro-themes" + formats: + zed: "https://raw.githubusercontent.com/paro-paro/vscode-themes/main/themes/solarized.json" +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#FF0000" + green: "#1EC81E" + yellow: "#F0CC09" + blue: "#1460D2" + magenta: "#C792EA" + cyan: "#00BBBB" + white: "#F5F5F5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 35.3 + green: 56.3 + yellow: 74.9 + blue: 21.3 + magenta: 52.5 + cyan: 53.6 + white: 99 + brightBlack: 0 + brightRed: 28.4 + brightGreen: 22.7 + brightYellow: 28.5 + brightBlue: 40.7 + brightMagenta: 29.2 + brightCyan: 47.6 + brightWhite: 99.8 diff --git a/themes/pastel-inu--pastel-inu.yaml b/themes/pastel-inu--pastel-inu.yaml new file mode 100644 index 00000000..e12e3648 --- /dev/null +++ b/themes/pastel-inu--pastel-inu.yaml @@ -0,0 +1,53 @@ +name: "pastel_inu (pastel inu)" +source: + marketplace_id: "d-end.pastel-inu" + version: "0.0.6" + installs: 1572 + rating: 5 + ratings: 1 + author: "d end" + repo: "https://github.com/itsdend/pastel_inu" + url: "https://marketplace.visualstudio.com/items?itemName=d-end.pastel-inu" + formats: null +colors: + bg: "#24273A" + fg: "#EB87B6" + black: "#8A3868" + red: "#FC50B4" + green: "#4FC8B7" + yellow: "#F9E2AF" + blue: "#7AC3FF" + magenta: "#D179EE" + cyan: "#F2D5CF" + white: "#699DAD" + brightBlack: "#8A3868" + brightRed: "#FC50B4" + brightGreen: "#4FC8B7" + brightYellow: "#F9E2AF" + brightBlue: "#7AC3FF" + brightMagenta: "#D179EE" + brightCyan: "#F2D5CF" + brightWhite: "#699DAD" +meta: + mode: "dark" + accent: "red" + hue: 277 + pair: null + contrast: + fg: 51.1 + black: 13.4 + red: 42.4 + green: 59.3 + yellow: 87 + blue: 63.1 + magenta: 45.8 + cyan: 81.4 + white: 41.8 + brightBlack: 13.4 + brightRed: 42.4 + brightGreen: 59.3 + brightYellow: 87 + brightBlue: 63.1 + brightMagenta: 45.8 + brightCyan: 81.4 + brightWhite: 41.8 diff --git a/themes/pastel-night.yaml b/themes/pastel-night.yaml new file mode 100644 index 00000000..094defb9 --- /dev/null +++ b/themes/pastel-night.yaml @@ -0,0 +1,53 @@ +name: "Pastel night" +source: + marketplace_id: "GracefulPotato.pastel-night" + version: "0.1.0" + installs: 4197 + rating: 5 + ratings: 1 + author: "GracefulPotato" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GracefulPotato.pastel-night" + formats: null +colors: + bg: "#2A2A35" + fg: "#BABABA" + black: "#343442" + red: "#D3869B" + green: "#83A598" + yellow: "#CFCEAB" + blue: "#A7C4C8" + magenta: "#AF95BB" + cyan: "#CFCEAB" + white: "#BABABA" + brightBlack: "#60617B" + brightRed: "#D3869B" + brightGreen: "#83A598" + brightYellow: "#CFCEAB" + brightBlue: "#A7C4C8" + brightMagenta: "#AF95BB" + brightCyan: "#CFCEAB" + brightWhite: "#BABABA" +meta: + mode: "dark" + accent: "red" + hue: 285 + pair: null + contrast: + fg: 61.1 + black: 0 + red: 45 + green: 45.6 + yellow: 71.6 + blue: 63.8 + magenta: 45.8 + cyan: 71.6 + white: 61.1 + brightBlack: 17.8 + brightRed: 45 + brightGreen: 45.6 + brightYellow: 71.6 + brightBlue: 63.8 + brightMagenta: 45.8 + brightCyan: 71.6 + brightWhite: 61.1 diff --git a/themes/pastel-v2.yaml b/themes/pastel-v2.yaml new file mode 100644 index 00000000..3bf216ad --- /dev/null +++ b/themes/pastel-v2.yaml @@ -0,0 +1,53 @@ +name: "Pastel V2" +source: + marketplace_id: "silas0827.pastel" + version: "0.3.0" + installs: 1794 + rating: 0 + ratings: 0 + author: "Silas Chen" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=silas0827.pastel" + formats: null +colors: + bg: "#000000" + fg: "#D9D9D9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 83.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/pastel-zeke.yaml b/themes/pastel-zeke.yaml new file mode 100644 index 00000000..677f3e73 --- /dev/null +++ b/themes/pastel-zeke.yaml @@ -0,0 +1,53 @@ +name: "pastel-zeke" +source: + marketplace_id: "krug0102.krug0102-pastel" + version: "0.0.1" + installs: 137 + rating: 0 + ratings: 0 + author: "krug0102" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=krug0102.krug0102-pastel" + formats: null +colors: + bg: "#1E1E1E" + fg: "#B7B9E6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 64.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/pastelization.yaml b/themes/pastelization.yaml new file mode 100644 index 00000000..99dc4d0e --- /dev/null +++ b/themes/pastelization.yaml @@ -0,0 +1,53 @@ +name: "Pastelization" +source: + marketplace_id: "Tsun.Pastelization" + version: "0.0.3" + installs: 407 + rating: 0 + ratings: 0 + author: "Tsun" + repo: "https://github.com/HEKYPTO/Pastelization" + url: "https://marketplace.visualstudio.com/items?itemName=Tsun.Pastelization" + formats: null +colors: + bg: "#FFFFFF" + fg: "#665D61" + black: "#868686" + red: "#FF726A" + green: "#98D198" + yellow: "#FFFB54" + blue: "#708EB4" + magenta: "#C486B0" + cyan: "#79D2E6" + white: "#F4F5F1" + brightBlack: "#ABABAB" + brightRed: "#FF0D00" + brightGreen: "#13C913" + brightYellow: "#FFFDA3" + brightBlue: "#B4C8EA" + brightMagenta: "#EC53BB" + brightCyan: "#0DDBDB" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 81.6 + black: 64 + red: 51.2 + green: 32.3 + yellow: 0 + blue: 61.2 + magenta: 54.4 + cyan: 31 + white: 0 + brightBlack: 45.3 + brightRed: 64.1 + brightGreen: 43.2 + brightYellow: 0 + brightBlue: 30.2 + brightMagenta: 58.5 + brightCyan: 30.5 + brightWhite: 0 diff --git a/themes/paulsevere.yaml b/themes/paulsevere.yaml new file mode 100644 index 00000000..62fe3d68 --- /dev/null +++ b/themes/paulsevere.yaml @@ -0,0 +1,53 @@ +name: "paulsevere" +source: + marketplace_id: "PaulSevere.paulsevere" + version: "0.0.1" + installs: 7 + rating: 0 + ratings: 0 + author: "Paul Severe" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PaulSevere.paulsevere" + formats: null +colors: + bg: "#2D2A2E" + fg: "#FCFCFA" + black: "#403E41" + red: "#FF6188" + green: "#A9DC76" + yellow: "#7BB77E" + blue: "#FC9867" + magenta: "#AB9DF2" + cyan: "#78DCE8" + white: "#FCFCFA" + brightBlack: "#727072" + brightRed: "#FF6188" + brightGreen: "#A9DC76" + brightYellow: "#7BB77E" + brightBlue: "#FC9867" + brightMagenta: "#AB9DF2" + brightCyan: "#78DCE8" + brightWhite: "#FCFCFA" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 101.8 + black: 0 + red: 43.8 + green: 72.3 + yellow: 51.7 + blue: 56.6 + magenta: 51.2 + cyan: 72.4 + white: 101.8 + brightBlack: 23.6 + brightRed: 43.8 + brightGreen: 72.3 + brightYellow: 51.7 + brightBlue: 56.6 + brightMagenta: 51.2 + brightCyan: 72.4 + brightWhite: 101.8 diff --git a/themes/pcode-theme--tokyo-night.yaml b/themes/pcode-theme--tokyo-night.yaml new file mode 100644 index 00000000..ca0e3bbb --- /dev/null +++ b/themes/pcode-theme--tokyo-night.yaml @@ -0,0 +1,53 @@ +name: "PCode Theme (Tokyo Night)" +source: + marketplace_id: "PojokCode.pcode-theme" + version: "0.0.1038" + installs: 1397 + rating: 5 + ratings: 1 + author: "Pojok Code" + repo: "https://github.com/pojokcodeid/pcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=PojokCode.pcode-theme" + formats: null +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#ADB1CC" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 59.3 + black: 0 + red: 49.4 + green: 72.2 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 59.3 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 45.8 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 59 diff --git a/themes/penumbra--penumbra-dark-contrast.yaml b/themes/penumbra--penumbra-dark-contrast.yaml new file mode 100644 index 00000000..a8aa1096 --- /dev/null +++ b/themes/penumbra--penumbra-dark-contrast.yaml @@ -0,0 +1,53 @@ +name: "Penumbra (Penumbra Dark Contrast++)" +source: + marketplace_id: "PenumbraTheme.penumbra" + version: "0.4.0" + installs: 11887 + rating: 5 + ratings: 3 + author: "Penumbra Theme" + repo: "https://github.com/nealmckee/penumbra_vscode" + url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" + formats: null +colors: + bg: "#181B1F" + fg: "#AEAEAE" + black: "#0D0F13" + red: "#F48E74" + green: "#61C68A" + yellow: "#C7AD40" + blue: "#97A6FF" + magenta: "#E18DCE" + cyan: "#1AC2E1" + white: "#FFF7ED" + brightBlack: "#636363" + brightRed: "#F48E74" + brightGreen: "#61C68A" + brightYellow: "#C7AD40" + brightBlue: "#97A6FF" + brightMagenta: "#E18DCE" + brightCyan: "#1AC2E1" + brightWhite: "#FFFDFB" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 57 + black: 0 + red: 54.8 + green: 59.7 + yellow: 57.2 + blue: 55.8 + magenta: 54.3 + cyan: 59.6 + white: 101.9 + brightBlack: 20.4 + brightRed: 54.8 + brightGreen: 59.7 + brightYellow: 57.2 + brightBlue: 55.8 + brightMagenta: 54.3 + brightCyan: 59.6 + brightWhite: 105.3 diff --git a/themes/penumbra--penumbra-dark.yaml b/themes/penumbra--penumbra-dark.yaml new file mode 100644 index 00000000..2630a651 --- /dev/null +++ b/themes/penumbra--penumbra-dark.yaml @@ -0,0 +1,53 @@ +name: "Penumbra (Penumbra Dark)" +source: + marketplace_id: "PenumbraTheme.penumbra" + version: "0.4.0" + installs: 11887 + rating: 5 + ratings: 3 + author: "Penumbra Theme" + repo: "https://github.com/nealmckee/penumbra_vscode" + url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" + formats: null +colors: + bg: "#303338" + fg: "#8F8F8F" + black: "#24272B" + red: "#CB7459" + green: "#46A473" + yellow: "#A38F2D" + blue: "#7E87D6" + magenta: "#BD72A8" + cyan: "#00A0BE" + white: "#FFF7ED" + brightBlack: "#636363" + brightRed: "#CB7459" + brightGreen: "#46A473" + brightYellow: "#A38F2D" + brightBlue: "#7E87D6" + brightMagenta: "#BD72A8" + brightCyan: "#00A0BE" + brightWhite: "#FFFDFB" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 36.3 + black: 0 + red: 34.8 + green: 38.5 + yellow: 36.6 + blue: 35.4 + magenta: 34.4 + cyan: 38.6 + white: 97.5 + brightBlack: 16 + brightRed: 34.8 + brightGreen: 38.5 + brightYellow: 36.6 + brightBlue: 35.4 + brightMagenta: 34.4 + brightCyan: 38.6 + brightWhite: 100.9 diff --git a/themes/penumbra--penumbra-light.yaml b/themes/penumbra--penumbra-light.yaml new file mode 100644 index 00000000..e4b6976b --- /dev/null +++ b/themes/penumbra--penumbra-light.yaml @@ -0,0 +1,53 @@ +name: "Penumbra (Penumbra Light)" +source: + marketplace_id: "PenumbraTheme.penumbra" + version: "0.4.0" + installs: 11887 + rating: 5 + ratings: 3 + author: "Penumbra Theme" + repo: "https://github.com/nealmckee/penumbra_vscode" + url: "https://marketplace.visualstudio.com/items?itemName=PenumbraTheme.penumbra" + formats: null +colors: + bg: "#FFF7ED" + fg: "#8F8F8F" + black: "#FFFDFB" + red: "#CB7459" + green: "#46A473" + yellow: "#A38F2D" + blue: "#7E87D6" + magenta: "#BD72A8" + cyan: "#00A0BE" + white: "#3E4044" + brightBlack: "#BEBEBE" + brightRed: "#CB7459" + brightGreen: "#46A473" + brightYellow: "#A38F2D" + brightBlue: "#7E87D6" + brightMagenta: "#BD72A8" + brightCyan: "#00A0BE" + brightWhite: "#24272B" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 55.5 + black: 0 + red: 57 + green: 53.3 + yellow: 55.1 + blue: 56.4 + magenta: 57.4 + cyan: 53.2 + white: 90 + brightBlack: 30.9 + brightRed: 57 + brightGreen: 53.3 + brightYellow: 55.1 + brightBlue: 56.4 + brightMagenta: 57.4 + brightCyan: 53.2 + brightWhite: 97.7 diff --git a/themes/perfection-fresh--perfection-fresh-dark.yaml b/themes/perfection-fresh--perfection-fresh-dark.yaml new file mode 100644 index 00000000..d3e2e60c --- /dev/null +++ b/themes/perfection-fresh--perfection-fresh-dark.yaml @@ -0,0 +1,53 @@ +name: "Perfection Fresh (Perfection Fresh Dark)" +source: + marketplace_id: "lucidlabs.perfection-fresh-theme" + version: "1.4.0" + installs: 14 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.perfection-fresh-theme" + formats: null +colors: + bg: "#141414" + fg: "#E8E6E2" + black: "#0A0A0A" + red: "#E05050" + green: "#78D68A" + yellow: "#F0C850" + blue: "#5AABE0" + magenta: "#D070B8" + cyan: "#4DB8A0" + white: "#E8E6E2" + brightBlack: "#999999" + brightRed: "#E87272" + brightGreen: "#90E8A0" + brightYellow: "#F8D868" + brightBlue: "#78BFE8" + brightMagenta: "#E090C8" + brightCyan: "#68C8B0" + brightWhite: "#F0EEEA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91 + black: 0 + red: 35.8 + green: 69.2 + yellow: 75.1 + blue: 52 + magenta: 42.9 + cyan: 53.9 + white: 91 + brightBlack: 46.5 + brightRed: 45.3 + brightGreen: 80.2 + brightYellow: 83.5 + brightBlue: 62.6 + brightMagenta: 55.5 + brightCyan: 63 + brightWhite: 96.1 diff --git a/themes/perfection-fresh--perfection-fresh-light.yaml b/themes/perfection-fresh--perfection-fresh-light.yaml new file mode 100644 index 00000000..8cbd9936 --- /dev/null +++ b/themes/perfection-fresh--perfection-fresh-light.yaml @@ -0,0 +1,53 @@ +name: "Perfection Fresh (Perfection Fresh Light)" +source: + marketplace_id: "lucidlabs.perfection-fresh-theme" + version: "1.4.0" + installs: 14 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.perfection-fresh-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#1A1A1A" + black: "#1A1A1A" + red: "#CC2936" + green: "#1B5633" + yellow: "#A86B20" + blue: "#2874A6" + magenta: "#8B2870" + cyan: "#186B5E" + white: "#FFFFFF" + brightBlack: "#6B6B6B" + brightRed: "#E03040" + brightGreen: "#238040" + brightYellow: "#B87828" + brightBlue: "#3088C0" + brightMagenta: "#A03888" + brightCyan: "#208070" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.3 + black: 104.3 + red: 74.9 + green: 89.4 + yellow: 70.1 + blue: 74.7 + magenta: 86.7 + cyan: 81.3 + white: 0 + brightBlack: 76.5 + brightRed: 69.6 + brightGreen: 73.9 + brightYellow: 63.8 + brightBlue: 65.9 + brightMagenta: 79.9 + brightCyan: 72.9 + brightWhite: 0 diff --git a/themes/perplexity-theme.yaml b/themes/perplexity-theme.yaml new file mode 100644 index 00000000..b0c2b757 --- /dev/null +++ b/themes/perplexity-theme.yaml @@ -0,0 +1,53 @@ +name: "Perplexity Theme" +source: + marketplace_id: "cottonable.perplexity" + version: "1.0.2" + installs: 6602 + rating: 5 + ratings: 1 + author: "cottonable" + repo: "https://github.com/cottonable/perplexity-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=cottonable.perplexity" + formats: null +colors: + bg: "#191A1A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.6 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.5 + cyan: 47.3 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.3 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/perseus.yaml b/themes/perseus.yaml new file mode 100644 index 00000000..5f41d722 --- /dev/null +++ b/themes/perseus.yaml @@ -0,0 +1,53 @@ +name: "Perseus" +source: + marketplace_id: "kailoklum.perseus" + version: "1.0.0" + installs: 220 + rating: 0 + ratings: 0 + author: "kailoklum" + repo: "https://github.com/kailoklum/Perseus" + url: "https://marketplace.visualstudio.com/items?itemName=kailoklum.perseus" + formats: null +colors: + bg: "#FFFFFF" + fg: "#455059" + black: "#370067" + red: "#EF4444" + green: "#07D258" + yellow: "#EAB308" + blue: "#0284C7" + magenta: "#BF568B" + cyan: "#2F7ECD" + white: "#FFFFFF" + brightBlack: "#627E99" + brightRed: "#EF4444" + brightGreen: "#24966E" + brightYellow: "#EAB308" + brightBlue: "#8B56BF" + brightMagenta: "#BF568B" + brightCyan: "#20BCFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 88.5 + black: 101 + red: 63.8 + green: 38.6 + yellow: 36.4 + blue: 67.5 + magenta: 69 + cyan: 68.7 + white: 0 + brightBlack: 69.2 + brightRed: 63.8 + brightGreen: 64.3 + brightYellow: 36.4 + brightBlue: 74.4 + brightMagenta: 69 + brightCyan: 42 + brightWhite: 0 diff --git a/themes/phosphor-theme--phosphor-dark.yaml b/themes/phosphor-theme--phosphor-dark.yaml new file mode 100644 index 00000000..c8537760 --- /dev/null +++ b/themes/phosphor-theme--phosphor-dark.yaml @@ -0,0 +1,53 @@ +name: "Phosphor Theme (Phosphor Dark)" +source: + marketplace_id: "phosphor-icons.phosphor-theme" + version: "0.1.2" + installs: 1672 + rating: 5 + ratings: 3 + author: "Phosphor Icons" + repo: "https://github.com/phosphor-icons/theme" + url: "https://marketplace.visualstudio.com/items?itemName=phosphor-icons.phosphor-theme" + formats: null +colors: + bg: "#2A2926" + fg: "#C9C5BF" + black: "#656461" + red: "#BC6F4F" + green: "#A4B55B" + yellow: "#D6971E" + blue: "#4E76B4" + magenta: "#9D6DEC" + cyan: "#5197A7" + white: "#EEEAE3" + brightBlack: "#656461" + brightRed: "#CF5F31" + brightGreen: "#C4E456" + brightYellow: "#F8C666" + brightBlue: "#6283E8" + brightMagenta: "#B38CFF" + brightCyan: "#6DB8D7" + brightWhite: "#F7F5F1" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 68.1 + black: 18.6 + red: 32.8 + green: 54.2 + yellow: 49 + blue: 26.3 + magenta: 34.7 + cyan: 37.7 + white: 90.8 + brightBlack: 18.6 + brightRed: 31.9 + brightGreen: 78.8 + brightYellow: 73 + brightBlue: 35.3 + brightMagenta: 47.9 + brightCyan: 55.1 + brightWhite: 97.7 diff --git a/themes/photonica--photonica-dark.yaml b/themes/photonica--photonica-dark.yaml new file mode 100644 index 00000000..d53c953e --- /dev/null +++ b/themes/photonica--photonica-dark.yaml @@ -0,0 +1,53 @@ +name: "Photonica (Photonica Dark)" +source: + marketplace_id: "ConAntares.Photonica" + version: "1.0.10" + installs: 17855 + rating: 5 + ratings: 6 + author: "Luke Niu" + repo: "https://github.com/Photonico/Photonica" + url: "https://marketplace.visualstudio.com/items?itemName=ConAntares.Photonica" + formats: null +colors: + bg: "#191919" + fg: "#F0F0F0" + black: "#3C3C3C" + red: "#FF5064" + green: "#64F050" + yellow: "#FFC814" + blue: "#1496F0" + magenta: "#AF8CF0" + cyan: "#28B4B4" + white: "#F0F0F0" + brightBlack: "#646464" + brightRed: "#FF7878" + brightGreen: "#C8FF46" + brightYellow: "#FFDC64" + brightBlue: "#1EA0FF" + brightMagenta: "#D28CFA" + brightCyan: "#8CE1E1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 96.8 + black: 0 + red: 42.6 + green: 79.5 + yellow: 76.7 + blue: 42.5 + magenta: 48.7 + cyan: 51.5 + white: 96.8 + brightBlack: 21 + brightRed: 51.2 + brightGreen: 94.8 + brightYellow: 85.8 + brightBlue: 47.5 + brightMagenta: 54.4 + brightCyan: 78.6 + brightWhite: 106.7 diff --git a/themes/photonica--photonica-light.yaml b/themes/photonica--photonica-light.yaml new file mode 100644 index 00000000..5d7379b5 --- /dev/null +++ b/themes/photonica--photonica-light.yaml @@ -0,0 +1,53 @@ +name: "Photonica (Photonica Light)" +source: + marketplace_id: "ConAntares.Photonica" + version: "1.0.10" + installs: 17855 + rating: 5 + ratings: 6 + author: "Luke Niu" + repo: "https://github.com/Photonico/Photonica" + url: "https://marketplace.visualstudio.com/items?itemName=ConAntares.Photonica" + formats: null +colors: + bg: "#FFFFFF" + fg: "#141414" + black: "#141414" + red: "#E14646" + green: "#50A028" + yellow: "#F0B414" + blue: "#1496F0" + magenta: "#7864C8" + cyan: "#3CB4A0" + white: "#C8C8C8" + brightBlack: "#646464" + brightRed: "#FF5050" + brightGreen: "#5FC33C" + brightYellow: "#FFBE46" + brightBlue: "#19A0FF" + brightMagenta: "#9178F0" + brightCyan: "#46D2B4" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.1 + black: 105.1 + red: 66.7 + green: 59.8 + yellow: 35 + blue: 58.1 + magenta: 72.5 + cyan: 49.6 + white: 29.5 + brightBlack: 79.6 + brightRed: 58.2 + brightGreen: 43.9 + brightYellow: 28.6 + brightBlue: 53.2 + brightMagenta: 61.4 + brightCyan: 35.4 + brightWhite: 0 diff --git a/themes/pierre-theme--pierre-dark.yaml b/themes/pierre-theme--pierre-dark.yaml new file mode 100644 index 00000000..db92a6fc --- /dev/null +++ b/themes/pierre-theme--pierre-dark.yaml @@ -0,0 +1,53 @@ +name: "Pierre Theme (Pierre Dark)" +source: + marketplace_id: "pierrecomputer.pierre-theme" + version: "0.0.24" + installs: 302 + rating: 5 + ratings: 1 + author: "The Pierre Computer Co" + repo: "https://github.com/pierrecomputer/theme" + url: "https://marketplace.visualstudio.com/items?itemName=pierrecomputer.pierre-theme" + formats: null +colors: + bg: "#070707" + fg: "#FBFBFB" + black: "#141415" + red: "#FF2E3F" + green: "#0DBE4E" + yellow: "#FFCA00" + blue: "#009FFF" + magenta: "#C635E4" + cyan: "#08C0EF" + white: "#C6C6C8" + brightBlack: "#141415" + brightRed: "#FF2E3F" + brightGreen: "#0DBE4E" + brightYellow: "#FFCA00" + brightBlue: "#009FFF" + brightMagenta: "#C635E4" + brightCyan: "#08C0EF" + brightWhite: "#C6C6C8" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 105.2 + black: 0 + red: 39.3 + green: 54.1 + yellow: 78.7 + blue: 48.1 + magenta: 34.2 + cyan: 60.8 + white: 72.1 + brightBlack: 0 + brightRed: 39.3 + brightGreen: 54.1 + brightYellow: 78.7 + brightBlue: 48.1 + brightMagenta: 34.2 + brightCyan: 60.8 + brightWhite: 72.1 diff --git a/themes/pierre-theme--pierre-light.yaml b/themes/pierre-theme--pierre-light.yaml new file mode 100644 index 00000000..0dadba86 --- /dev/null +++ b/themes/pierre-theme--pierre-light.yaml @@ -0,0 +1,53 @@ +name: "Pierre Theme (Pierre Light)" +source: + marketplace_id: "pierrecomputer.pierre-theme" + version: "0.0.24" + installs: 302 + rating: 5 + ratings: 1 + author: "The Pierre Computer Co" + repo: "https://github.com/pierrecomputer/theme" + url: "https://marketplace.visualstudio.com/items?itemName=pierrecomputer.pierre-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#070707" + black: "#1F1F21" + red: "#FF2E3F" + green: "#0DBE4E" + yellow: "#FFCA00" + blue: "#009FFF" + magenta: "#C635E4" + cyan: "#08C0EF" + white: "#C6C6C8" + brightBlack: "#1F1F21" + brightRed: "#FF2E3F" + brightGreen: "#0DBE4E" + brightYellow: "#FFCA00" + brightBlue: "#009FFF" + brightMagenta: "#C635E4" + brightCyan: "#08C0EF" + brightWhite: "#C6C6C8" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 103.4 + red: 62.3 + green: 47.9 + yellow: 24.4 + blue: 53.7 + magenta: 67.4 + cyan: 41.4 + white: 30.6 + brightBlack: 103.4 + brightRed: 62.3 + brightGreen: 47.9 + brightYellow: 24.4 + brightBlue: 53.7 + brightMagenta: 67.4 + brightCyan: 41.4 + brightWhite: 30.6 diff --git a/themes/pine-editor-themes--pine-blue.yaml b/themes/pine-editor-themes--pine-blue.yaml new file mode 100644 index 00000000..55f88af2 --- /dev/null +++ b/themes/pine-editor-themes--pine-blue.yaml @@ -0,0 +1,53 @@ +name: "Pine Editor Themes (Pine Blue)" +source: + marketplace_id: "JeylaniB.pine-editor-themes" + version: "1.0.0" + installs: 12533 + rating: 5 + ratings: 1 + author: "JeylaniB" + repo: "https://github.com/jeyllani/pinethemes" + url: "https://marketplace.visualstudio.com/items?itemName=JeylaniB.pine-editor-themes" + formats: null +colors: + bg: "#01101C" + fg: "#D6DEEB" + black: "#01101C" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 240 + pair: null + contrast: + fg: 85.8 + black: 0 + red: 39.9 + green: 67.8 + yellow: 82.6 + blue: 56.5 + magenta: 54.3 + cyan: 60.3 + white: 107.4 + brightBlack: 16.2 + brightRed: 39.9 + brightGreen: 67.8 + brightYellow: 94.3 + brightBlue: 56.5 + brightMagenta: 54.3 + brightCyan: 74.6 + brightWhite: 107.4 diff --git a/themes/pine-editor-themes--pine-editor-dark.yaml b/themes/pine-editor-themes--pine-editor-dark.yaml new file mode 100644 index 00000000..0f53f2af --- /dev/null +++ b/themes/pine-editor-themes--pine-editor-dark.yaml @@ -0,0 +1,53 @@ +name: "Pine Editor Themes (Pine Editor Dark)" +source: + marketplace_id: "JeylaniB.pine-editor-themes" + version: "1.0.0" + installs: 12533 + rating: 5 + ratings: 1 + author: "JeylaniB" + repo: "https://github.com/jeyllani/pinethemes" + url: "https://marketplace.visualstudio.com/items?itemName=JeylaniB.pine-editor-themes" + formats: null +colors: + bg: "#131621" + fg: "#D6DEEB" + black: "#131621" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 272 + pair: null + contrast: + fg: 85.3 + black: 0 + red: 39.4 + green: 67.3 + yellow: 82.1 + blue: 56 + magenta: 53.8 + cyan: 59.7 + white: 106.9 + brightBlack: 15.6 + brightRed: 39.4 + brightGreen: 67.3 + brightYellow: 93.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74 + brightWhite: 106.9 diff --git a/themes/pine-editor-themes--pine-grey.yaml b/themes/pine-editor-themes--pine-grey.yaml new file mode 100644 index 00000000..0c70315e --- /dev/null +++ b/themes/pine-editor-themes--pine-grey.yaml @@ -0,0 +1,53 @@ +name: "Pine Editor Themes (Pine Grey)" +source: + marketplace_id: "JeylaniB.pine-editor-themes" + version: "1.0.0" + installs: 12533 + rating: 5 + ratings: 1 + author: "JeylaniB" + repo: "https://github.com/jeyllani/pinethemes" + url: "https://marketplace.visualstudio.com/items?itemName=JeylaniB.pine-editor-themes" + formats: null +colors: + bg: "#22262E" + fg: "#D6DEEB" + black: "#22262E" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 264 + pair: null + contrast: + fg: 83.1 + black: 0 + red: 37.2 + green: 65.2 + yellow: 80 + blue: 53.9 + magenta: 51.7 + cyan: 57.6 + white: 104.8 + brightBlack: 13.5 + brightRed: 37.2 + brightGreen: 65.2 + brightYellow: 91.6 + brightBlue: 53.9 + brightMagenta: 51.7 + brightCyan: 71.9 + brightWhite: 104.8 diff --git a/themes/pine-forest-green.yaml b/themes/pine-forest-green.yaml new file mode 100644 index 00000000..f5a16bee --- /dev/null +++ b/themes/pine-forest-green.yaml @@ -0,0 +1,53 @@ +name: "Pine Forest Green" +source: + marketplace_id: "felix-tjernberg.pine-forest-green" + version: "1.0.1" + installs: 1420 + rating: 0 + ratings: 0 + author: "Felix Tjernberg" + repo: "https://github.com/felix-tjernberg/pine-forest-green" + url: "https://marketplace.visualstudio.com/items?itemName=felix-tjernberg.pine-forest-green" + formats: null +colors: + bg: "#08190A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 147 + pair: null + contrast: + fg: 107 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/pine-script-v5--pine-editor-light.yaml b/themes/pine-script-v5--pine-editor-light.yaml new file mode 100644 index 00000000..a0b339a1 --- /dev/null +++ b/themes/pine-script-v5--pine-editor-light.yaml @@ -0,0 +1,53 @@ +name: "Pine Script v5 (Pine Editor Light)" +source: + marketplace_id: "frizLabz.pinescript-v5-vscode" + version: "0.1.7" + installs: 12653 + rating: 5 + ratings: 5 + author: "FFriZz" + repo: "https://github.com/FFriZ/Pine-Script-v5-VS-Code" + url: "https://marketplace.visualstudio.com/items?itemName=frizLabz.pinescript-v5-vscode" + formats: null +colors: + bg: "#FBFBFB" + fg: "#403F53" + black: "#403F53" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2962FF" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2962FF" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 91.3 + black: 91.3 + red: 66.3 + green: 64.2 + yellow: 37 + blue: 60.1 + magenta: 65.3 + cyan: 70.7 + white: 0 + brightBlack: 91.3 + brightRed: 66.3 + brightGreen: 64.2 + brightYellow: 39.7 + brightBlue: 60.1 + brightMagenta: 65.3 + brightCyan: 70.7 + brightWhite: 0 diff --git a/themes/pine-script-v5--pine-frizz.yaml b/themes/pine-script-v5--pine-frizz.yaml new file mode 100644 index 00000000..c1bd3556 --- /dev/null +++ b/themes/pine-script-v5--pine-frizz.yaml @@ -0,0 +1,53 @@ +name: "Pine Script v5 (Pine FriZz)" +source: + marketplace_id: "frizLabz.pinescript-v5-vscode" + version: "0.1.7" + installs: 12653 + rating: 5 + ratings: 5 + author: "FFriZz" + repo: "https://github.com/FFriZ/Pine-Script-v5-VS-Code" + url: "https://marketplace.visualstudio.com/items?itemName=frizLabz.pinescript-v5-vscode" + formats: null +colors: + bg: "#22262E" + fg: "#FFFFFF" + black: "#22262E" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#ADFF2F" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#ADFF2F" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 104.8 + black: 0 + red: 37.2 + green: 65.2 + yellow: 80 + blue: 53.9 + magenta: 51.7 + cyan: 57.6 + white: 90.1 + brightBlack: 13.5 + brightRed: 37.2 + brightGreen: 65.2 + brightYellow: 91.6 + brightBlue: 53.9 + brightMagenta: 51.7 + brightCyan: 71.9 + brightWhite: 90.1 diff --git a/themes/pinescript-helper--pine-theme-dark-pro.yaml b/themes/pinescript-helper--pine-theme-dark-pro.yaml new file mode 100644 index 00000000..8de71113 --- /dev/null +++ b/themes/pinescript-helper--pine-theme-dark-pro.yaml @@ -0,0 +1,53 @@ +name: "PineScript Helper (Pine Theme Dark Pro)" +source: + marketplace_id: "salbert11.pinescript-helper" + version: "3.4.3" + installs: 9802 + rating: 5 + ratings: 2 + author: "salbert11" + repo: "https://github.com/salbert11/pinescript" + url: "https://marketplace.visualstudio.com/items?itemName=salbert11.pinescript-helper" + formats: null +colors: + bg: "#131623" + fg: "#FFFFFF" + black: "#131722" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#E17518" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#E17518" +meta: + mode: "dark" + accent: "teal" + hue: 274 + pair: null + contrast: + fg: 106.9 + black: 0 + red: 39.3 + green: 67.3 + yellow: 82.1 + blue: 55.9 + magenta: 53.8 + cyan: 59.7 + white: 43.3 + brightBlack: 15.6 + brightRed: 39.3 + brightGreen: 67.3 + brightYellow: 93.7 + brightBlue: 55.9 + brightMagenta: 53.8 + brightCyan: 74 + brightWhite: 43.3 diff --git a/themes/pinescript-helper--pine-theme-original-dark.yaml b/themes/pinescript-helper--pine-theme-original-dark.yaml new file mode 100644 index 00000000..796a6b35 --- /dev/null +++ b/themes/pinescript-helper--pine-theme-original-dark.yaml @@ -0,0 +1,53 @@ +name: "PineScript Helper (Pine Theme Original Dark)" +source: + marketplace_id: "salbert11.pinescript-helper" + version: "3.4.3" + installs: 9802 + rating: 5 + ratings: 2 + author: "salbert11" + repo: "https://github.com/salbert11/pinescript" + url: "https://marketplace.visualstudio.com/items?itemName=salbert11.pinescript-helper" + formats: null +colors: + bg: "#131722" + fg: "#FFFFFF" + black: "#131722" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#E17518" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#E17518" +meta: + mode: "dark" + accent: "teal" + hue: 269 + pair: null + contrast: + fg: 106.8 + black: 0 + red: 39.3 + green: 67.2 + yellow: 82 + blue: 55.9 + magenta: 53.7 + cyan: 59.7 + white: 43.2 + brightBlack: 15.5 + brightRed: 39.3 + brightGreen: 67.2 + brightYellow: 93.7 + brightBlue: 55.9 + brightMagenta: 53.7 + brightCyan: 73.9 + brightWhite: 43.2 diff --git a/themes/pink-candy-theme--pink-candy-dark-warm.yaml b/themes/pink-candy-theme--pink-candy-dark-warm.yaml new file mode 100644 index 00000000..a8b98806 --- /dev/null +++ b/themes/pink-candy-theme--pink-candy-dark-warm.yaml @@ -0,0 +1,53 @@ +name: "Pink Candy Theme (Pink Candy Dark Warm)" +source: + marketplace_id: "kuba-p.theme-pink-candy" + version: "1.6.0" + installs: 31831 + rating: 5 + ratings: 3 + author: "kuba_p" + repo: "https://github.com/KubaP/vscode-pink-candy" + url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" + formats: null +colors: + bg: "#1D2021" + fg: "#BDAE93" + black: "#FBF1C7" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#1D2021" + brightBlack: "#666666" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#FBF1C7" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 57.3 + black: 96.3 + red: 24.2 + green: 41.9 + yellow: 51.5 + blue: 30.5 + magenta: 30.7 + cyan: 40.9 + white: 0 + brightBlack: 21 + brightRed: 39.1 + brightGreen: 60.1 + brightYellow: 70.8 + brightBlue: 47.6 + brightMagenta: 46.9 + brightCyan: 59.1 + brightWhite: 96.3 diff --git a/themes/pink-candy-theme--pink-candy-dark.yaml b/themes/pink-candy-theme--pink-candy-dark.yaml new file mode 100644 index 00000000..9571aee3 --- /dev/null +++ b/themes/pink-candy-theme--pink-candy-dark.yaml @@ -0,0 +1,53 @@ +name: "Pink Candy Theme (Pink Candy Dark)" +source: + marketplace_id: "kuba-p.theme-pink-candy" + version: "1.6.0" + installs: 31831 + rating: 5 + ratings: 3 + author: "kuba_p" + repo: "https://github.com/KubaP/vscode-pink-candy" + url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" + formats: null +colors: + bg: "#22222A" + fg: "#ABB2BF" + black: "#FFFFFF" + red: "#FF0046" + green: "#2DAE58" + yellow: "#CF9C00" + blue: "#09A1ED" + magenta: "#C010EF" + cyan: "#13BBB7" + white: "#22222A" + brightBlack: "#666666" + brightRed: "#FF2E87" + brightGreen: "#25DA6A" + brightYellow: "#FFC104" + brightBlue: "#41B9FF" + brightMagenta: "#C75AF3" + brightCyan: "#16DAD6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 285 + pair: null + contrast: + fg: 57.9 + black: 105.4 + red: 35.4 + green: 44.8 + yellow: 50.7 + blue: 45.1 + magenta: 29.4 + cyan: 53.2 + white: 0 + brightBlack: 20.5 + brightRed: 38.4 + brightGreen: 65.7 + brightYellow: 72.6 + brightBlue: 57.1 + brightMagenta: 38.5 + brightCyan: 69.1 + brightWhite: 105.4 diff --git a/themes/pink-candy-theme--pink-candy-light.yaml b/themes/pink-candy-theme--pink-candy-light.yaml new file mode 100644 index 00000000..7e94687a --- /dev/null +++ b/themes/pink-candy-theme--pink-candy-light.yaml @@ -0,0 +1,53 @@ +name: "Pink Candy Theme (Pink Candy Light)" +source: + marketplace_id: "kuba-p.theme-pink-candy" + version: "1.6.0" + installs: 31831 + rating: 5 + ratings: 3 + author: "kuba_p" + repo: "https://github.com/KubaP/vscode-pink-candy" + url: "https://marketplace.visualstudio.com/items?itemName=kuba-p.theme-pink-candy" + formats: null +colors: + bg: "#FAFBFC" + fg: "#565869" + black: "#FAFBFC" + red: "#FF5C57" + green: "#2DAE58" + yellow: "#C69613" + blue: "#09A1ED" + magenta: "#C75AF3" + cyan: "#27B0AC" + white: "#565869" + brightBlack: "#8B8FA0" + brightRed: "#DB3839" + brightGreen: "#1E9347" + brightYellow: "#A1790C" + brightBlue: "#1684C2" + brightMagenta: "#A853CB" + brightCyan: "#288D8A" + brightWhite: "#343545" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 81.8 + black: 0 + red: 53.6 + green: 52 + yellow: 49.7 + blue: 51.7 + magenta: 58.2 + cyan: 48.8 + white: 81.8 + brightBlack: 56.9 + brightRed: 67.5 + brightGreen: 63.9 + brightYellow: 64.6 + brightBlue: 65.2 + brightMagenta: 67.5 + brightCyan: 64.4 + brightWhite: 95.1 diff --git a/themes/pink-dark.yaml b/themes/pink-dark.yaml new file mode 100644 index 00000000..77fa858f --- /dev/null +++ b/themes/pink-dark.yaml @@ -0,0 +1,53 @@ +name: "pink-dark" +source: + marketplace_id: "srtakennedy.pink-dark" + version: "0.0.8" + installs: 3079 + rating: 0 + ratings: 0 + author: "srtakennedy" + repo: "https://github.com/SrtaKennedy" + url: "https://marketplace.visualstudio.com/items?itemName=srtakennedy.pink-dark" + formats: null +colors: + bg: "#242223" + fg: "#FFCCD5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 81 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 28.3 + cyan: 46.1 + white: 88.5 + brightBlack: 20.5 + brightRed: 37.1 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.9 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/pink-green-pastels.yaml b/themes/pink-green-pastels.yaml new file mode 100644 index 00000000..11eba4c5 --- /dev/null +++ b/themes/pink-green-pastels.yaml @@ -0,0 +1,53 @@ +name: "Pink & Green Pastels" +source: + marketplace_id: "sebula.pinkandgreen" + version: "0.0.1" + installs: 437 + rating: 0 + ratings: 0 + author: "Sebula" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=sebula.pinkandgreen" + formats: null +colors: + bg: "#1E1E1E" + fg: "#FFB6B6" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 71.9 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/pink-high-contrast-theme.yaml b/themes/pink-high-contrast-theme.yaml new file mode 100644 index 00000000..2513c197 --- /dev/null +++ b/themes/pink-high-contrast-theme.yaml @@ -0,0 +1,53 @@ +name: "Pink High Contrast Theme" +source: + marketplace_id: "madamelasagna.madamelasagna" + version: "1.0.3" + installs: 160 + rating: 0 + ratings: 0 + author: "madamelasagna" + repo: "https://github.com/alyssapinnock/pink-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=madamelasagna.madamelasagna" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#BC8DAB" + red: "#EC3737" + green: "#5AFFF7" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#EC34EC" + cyan: "#75BEFF" + white: "#F2A2D6" + brightBlack: "#666666" + brightRed: "#FF7B7B" + brightGreen: "#77E2B7" + brightYellow: "#F7F79A" + brightBlue: "#3B8EEA" + brightMagenta: "#EA8FEA" + brightCyan: "#29B8DB" + brightWhite: "#FFB3F7" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 48.2 + red: 35.4 + green: 93.1 + yellow: 86.6 + blue: 28.4 + magenta: 42.4 + cyan: 64.1 + white: 65.8 + brightBlack: 23 + brightRed: 53.3 + brightGreen: 77.1 + brightYellow: 99.3 + brightBlue: 41 + brightMagenta: 59.5 + brightCyan: 56.4 + brightWhite: 75.7 diff --git a/themes/pink-serena.yaml b/themes/pink-serena.yaml new file mode 100644 index 00000000..49307176 --- /dev/null +++ b/themes/pink-serena.yaml @@ -0,0 +1,53 @@ +name: "pink-serena" +source: + marketplace_id: "tselmeg.pink-serena" + version: "0.2.0" + installs: 2492 + rating: 0 + ratings: 0 + author: "Serena" + repo: "https://github.com/utselmeg/perf-pink-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tselmeg.pink-serena" + formats: null +colors: + bg: "#111010" + fg: "#FFE9F2" + black: "#262626" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BCBCBC" + brightBlack: "#6F6666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 96.7 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 65.9 + brightBlack: 23.4 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 107.4 diff --git a/themes/pink-theme-markisik.yaml b/themes/pink-theme-markisik.yaml new file mode 100644 index 00000000..7dec1da7 --- /dev/null +++ b/themes/pink-theme-markisik.yaml @@ -0,0 +1,53 @@ +name: "pink_theme-markisik" +source: + marketplace_id: "Markisik.pink-theme-markisik" + version: "0.1.0" + installs: 244 + rating: 0 + ratings: 0 + author: "Murk" + repo: "https://github.com/markisik/theme" + url: "https://marketplace.visualstudio.com/items?itemName=Markisik.pink-theme-markisik" + formats: null +colors: + bg: "#643232" + fg: "#FFE16D" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#7B7B7B" + brightBlack: "#5A5A5A" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 21 + pair: null + contrast: + fg: 79.1 + black: 10.4 + red: 17.5 + green: 43.8 + yellow: 76.4 + blue: 18.2 + magenta: 20.5 + cyan: 38.3 + white: 22.2 + brightBlack: 7.8 + brightRed: 29.3 + brightGreen: 54.3 + brightYellow: 86.4 + brightBlue: 30.8 + brightMagenta: 36.1 + brightCyan: 46.2 + brightWhite: 97.6 diff --git a/themes/pink-themes-collection--forest-rose.yaml b/themes/pink-themes-collection--forest-rose.yaml new file mode 100644 index 00000000..4891da25 --- /dev/null +++ b/themes/pink-themes-collection--forest-rose.yaml @@ -0,0 +1,53 @@ +name: "Pink Themes Collection (Forest Rose)" +source: + marketplace_id: "hongtrapt.pink-angel-themes" + version: "0.0.2" + installs: 274 + rating: 5 + ratings: 1 + author: "hongtrapt" + repo: "https://github.com/hongtra1311/pink-angel-themes" + url: "https://marketplace.visualstudio.com/items?itemName=hongtrapt.pink-angel-themes" + formats: null +colors: + bg: "#222B2E" + fg: "#F0F0F0" + black: "#222B2E" + red: "#C24D2C" + green: "#6D9F71" + yellow: "#EA9AB2" + blue: "#4A7D9A" + magenta: "#E27396" + cyan: "#337357" + white: "#F0F0F0" + brightBlack: "#9AAAB2" + brightRed: "#A43820" + brightGreen: "#337357" + brightYellow: "#E27396" + brightBlue: "#4A7D9A" + brightMagenta: "#EA9AB2" + brightCyan: "#6D9F71" + brightWhite: "#F0F0F0" +meta: + mode: "dark" + accent: "orange" + hue: 220 + pair: null + contrast: + fg: 94.3 + black: 0 + red: 25.6 + green: 40.5 + yellow: 56.4 + blue: 27 + magenta: 42.5 + cyan: 20.1 + white: 94.3 + brightBlack: 51.1 + brightRed: 16.3 + brightGreen: 20.1 + brightYellow: 42.5 + brightBlue: 27 + brightMagenta: 56.4 + brightCyan: 40.5 + brightWhite: 94.3 diff --git a/themes/pink-themes-collection--iris-pink.yaml b/themes/pink-themes-collection--iris-pink.yaml new file mode 100644 index 00000000..bf0e5a62 --- /dev/null +++ b/themes/pink-themes-collection--iris-pink.yaml @@ -0,0 +1,53 @@ +name: "Pink Themes Collection (Iris Pink)" +source: + marketplace_id: "hongtrapt.pink-angel-themes" + version: "0.0.2" + installs: 274 + rating: 5 + ratings: 1 + author: "hongtrapt" + repo: "https://github.com/hongtra1311/pink-angel-themes" + url: "https://marketplace.visualstudio.com/items?itemName=hongtrapt.pink-angel-themes" + formats: null +colors: + bg: "#2C1E3C" + fg: "#FFDBE5" + black: "#2C1E3C" + red: "#E27396" + green: "#6D9F71" + yellow: "#EA9AB2" + blue: "#5F4B8B" + magenta: "#FFDBE5" + cyan: "#337357" + white: "#FFDBE5" + brightBlack: "#2C1E3C" + brightRed: "#E27396" + brightGreen: "#6D9F71" + brightYellow: "#EA9AB2" + brightBlue: "#5F4B8B" + brightMagenta: "#FFDBE5" + brightCyan: "#337357" + brightWhite: "#FFDBE5" +meta: + mode: "dark" + accent: "red" + hue: 304 + pair: null + contrast: + fg: 87.5 + black: 0 + red: 43.4 + green: 41.4 + yellow: 57.3 + blue: 13.8 + magenta: 87.5 + cyan: 20.9 + white: 87.5 + brightBlack: 0 + brightRed: 43.4 + brightGreen: 41.4 + brightYellow: 57.3 + brightBlue: 13.8 + brightMagenta: 87.5 + brightCyan: 20.9 + brightWhite: 87.5 diff --git a/themes/pink-themes-collection--matcha-pink.yaml b/themes/pink-themes-collection--matcha-pink.yaml new file mode 100644 index 00000000..1e3d9903 --- /dev/null +++ b/themes/pink-themes-collection--matcha-pink.yaml @@ -0,0 +1,53 @@ +name: "Pink Themes Collection (Matcha Pink)" +source: + marketplace_id: "hongtrapt.pink-angel-themes" + version: "0.0.2" + installs: 274 + rating: 5 + ratings: 1 + author: "hongtrapt" + repo: "https://github.com/hongtra1311/pink-angel-themes" + url: "https://marketplace.visualstudio.com/items?itemName=hongtrapt.pink-angel-themes" + formats: null +colors: + bg: "#F3FFF6" + fg: "#337357" + black: "#333333" + red: "#E27396" + green: "#6D9F71" + yellow: "#EA9AB2" + blue: "#4A6D7C" + magenta: "#E27396" + cyan: "#337357" + white: "#000000" + brightBlack: "#333333" + brightRed: "#E27396" + brightGreen: "#6D9F71" + brightYellow: "#EA9AB2" + brightBlue: "#4A6D7C" + brightMagenta: "#E27396" + brightCyan: "#337357" + brightWhite: "#000000" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 76.1 + black: 96.8 + red: 53.7 + green: 55.6 + yellow: 40.2 + blue: 75.9 + magenta: 53.7 + cyan: 76.1 + white: 104.2 + brightBlack: 96.8 + brightRed: 53.7 + brightGreen: 55.6 + brightYellow: 40.2 + brightBlue: 75.9 + brightMagenta: 53.7 + brightCyan: 76.1 + brightWhite: 104.2 diff --git a/themes/pink-velvet-theme-for-vs-code.yaml b/themes/pink-velvet-theme-for-vs-code.yaml new file mode 100644 index 00000000..09119131 --- /dev/null +++ b/themes/pink-velvet-theme-for-vs-code.yaml @@ -0,0 +1,53 @@ +name: "Pink Velvet Theme for VS Code" +source: + marketplace_id: "LisaFalth.pink-velvet-theme" + version: "1.0.2" + installs: 24 + rating: 5 + ratings: 1 + author: "Lisa Fälth" + repo: "https://github.com/De1ora/my-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LisaFalth.pink-velvet-theme" + formats: null +colors: + bg: "#1E1E25" + fg: "#E0E3EB" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#FFE797" + blue: "#85D4FF" + magenta: "#F5BCE1" + cyan: "#8CE6D5" + white: "#A6ADC8" + brightBlack: "#585B70" + brightRed: "#F37799" + brightGreen: "#89D88B" + brightYellow: "#EBD391" + brightBlue: "#74A8FC" + brightMagenta: "#F2AEDE" + brightCyan: "#6BD7CA" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: 285 + pair: null + contrast: + fg: 87.8 + black: 9.4 + red: 54.8 + green: 78.5 + yellow: 91 + blue: 72.9 + magenta: 74.2 + cyan: 79.7 + white: 56.4 + brightBlack: 17 + brightRed: 48.8 + brightGreen: 70.2 + brightYellow: 79 + brightBlue: 53 + brightMagenta: 68.4 + brightCyan: 70 + brightWhite: 68.2 diff --git a/themes/pinkcode-theme.yaml b/themes/pinkcode-theme.yaml new file mode 100644 index 00000000..80232469 --- /dev/null +++ b/themes/pinkcode-theme.yaml @@ -0,0 +1,53 @@ +name: "PinkCode Theme" +source: + marketplace_id: "emersonsm.pinkcode-theme" + version: "1.3.4" + installs: 705 + rating: 0 + ratings: 0 + author: "emersonsm" + repo: "https://github.com/emersonsm/pinkcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=emersonsm.pinkcode-theme" + formats: null +colors: + bg: "#181C24" + fg: "#E5E5E5" + black: "#181C24" + red: "#CD84C8" + green: "#C4BFA2" + yellow: "#DDEC5B" + blue: "#CD84C8" + magenta: "#CD84C8" + cyan: "#E5E5E5" + white: "#E5E5E5" + brightBlack: "#515151" + brightRed: "#E5E5E5" + brightGreen: "#E5E5E5" + brightYellow: "#E9EC5B" + brightBlue: "#CD84C8" + brightMagenta: "#CD84C8" + brightCyan: "#E5E5E5" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 89.5 + black: 0 + red: 47.8 + green: 66 + yellow: 87.8 + blue: 47.8 + magenta: 47.8 + cyan: 89.5 + white: 89.5 + brightBlack: 13 + brightRed: 89.5 + brightGreen: 89.5 + brightYellow: 89.4 + brightBlue: 47.8 + brightMagenta: 47.8 + brightCyan: 89.5 + brightWhite: 89.5 diff --git a/themes/pinkcodes-theme.yaml b/themes/pinkcodes-theme.yaml new file mode 100644 index 00000000..b1d60330 --- /dev/null +++ b/themes/pinkcodes-theme.yaml @@ -0,0 +1,53 @@ +name: "PinkCodes Theme" +source: + marketplace_id: "PinkCodes.pinkcodes" + version: "0.0.22" + installs: 4047 + rating: 5 + ratings: 2 + author: "PinkCodes" + repo: "https://github.com/pinkc0des/pinkcodes-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=PinkCodes.pinkcodes" + formats: null +colors: + bg: "#0B010B" + fg: "#D4D4D4" + black: "#0B010B" + red: "#F03880" + green: "#5DD465" + yellow: "#DAD16F" + blue: "#78D1E1" + magenta: "#988BC7" + cyan: "#A1EFE4" + white: "#E1E1E6" + brightBlack: "#626483" + brightRed: "#ED4556" + brightGreen: "#00F769" + brightYellow: "#DAD16F" + brightBlue: "#78D1E1" + brightMagenta: "#988BC7" + brightCyan: "#A4FFFF" + brightWhite: "#F7F7FB" +meta: + mode: "dark" + accent: "green" + hue: 328 + pair: null + contrast: + fg: 80.4 + black: 0 + red: 38 + green: 66.7 + yellow: 76.8 + blue: 70.9 + magenta: 44.2 + cyan: 88.2 + white: 88.7 + brightBlack: 23.1 + brightRed: 37.8 + brightGreen: 82.9 + brightYellow: 76.8 + brightBlue: 70.9 + brightMagenta: 44.2 + brightCyan: 97.7 + brightWhite: 102.7 diff --git a/themes/pinklily.yaml b/themes/pinklily.yaml new file mode 100644 index 00000000..5effaaf6 --- /dev/null +++ b/themes/pinklily.yaml @@ -0,0 +1,53 @@ +name: "PinkLily" +source: + marketplace_id: "yuna495.pinklily" + version: "1.0.6" + installs: 114 + rating: 0 + ratings: 0 + author: "yuna495" + repo: "https://github.com/yuna495/PinkLily" + url: "https://marketplace.visualstudio.com/items?itemName=yuna495.pinklily" + formats: null +colors: + bg: "#080808" + fg: "#FD9BCC" + black: "#000000" + red: "#E73752" + green: "#00C060" + yellow: "#F7D380" + blue: "#505DF0" + magenta: "#C010A0" + cyan: "#46D2E8" + white: "#FD9BCC" + brightBlack: "#808080" + brightRed: "#FF5570" + brightGreen: "#11FF84" + brightYellow: "#FFE090" + brightBlue: "#7580FF" + brightMagenta: "#FF14E0" + brightCyan: "#80E5F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 64.9 + black: 0 + red: 34.6 + green: 55.2 + yellow: 82.3 + blue: 27.4 + magenta: 26.3 + cyan: 69.4 + white: 64.9 + brightBlack: 34.7 + brightRed: 44.9 + brightGreen: 87.6 + brightYellow: 89.6 + brightBlue: 41.1 + brightMagenta: 44.1 + brightCyan: 81.6 + brightWhite: 107.8 diff --git a/themes/pinkpinktheme.yaml b/themes/pinkpinktheme.yaml new file mode 100644 index 00000000..0a2f2bb7 --- /dev/null +++ b/themes/pinkpinktheme.yaml @@ -0,0 +1,53 @@ +name: "pinkpinktheme" +source: + marketplace_id: "Eric000.pinkpinktheme" + version: "0.0.3" + installs: 596 + rating: 0 + ratings: 0 + author: "Eric000" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Eric000.pinkpinktheme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#A890FD" + black: "#FF7373" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#FF8181" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 50.7 + black: 50.8 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 47 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/pinky-promise-theme--pinky-promise-dark.yaml b/themes/pinky-promise-theme--pinky-promise-dark.yaml new file mode 100644 index 00000000..cf38cec3 --- /dev/null +++ b/themes/pinky-promise-theme--pinky-promise-dark.yaml @@ -0,0 +1,53 @@ +name: "Pinky Promise Theme (Pinky Promise Dark)" +source: + marketplace_id: "ZubairIbnZamir.pinky-promise-theme" + version: "1.0.6" + installs: 460 + rating: 0 + ratings: 0 + author: "Zubair Ibn Zamir" + repo: "https://github.com/2u841r/pinky-promise-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ZubairIbnZamir.pinky-promise-theme" + formats: null +colors: + bg: "#1D1921" + fg: "#D2C7E1" + black: "#7A6483" + red: "#F888B5" + green: "#96D0BB" + yellow: "#FFBC9E" + blue: "#A2DBFF" + magenta: "#BAA4ED" + cyan: "#96D0BB" + white: "#D2C7E1" + brightBlack: "#7A6483" + brightRed: "#F888B5" + brightGreen: "#96D0BB" + brightYellow: "#FFBC9E" + brightBlue: "#A2DBFF" + brightMagenta: "#E8A5E4" + brightCyan: "#96D0BB" + brightWhite: "#F2EBFA" +meta: + mode: "dark" + accent: "red" + hue: 308 + pair: null + contrast: + fg: 73.9 + black: 24.1 + red: 55.9 + green: 69.6 + yellow: 73.8 + blue: 78.9 + magenta: 57.9 + cyan: 69.6 + white: 73.9 + brightBlack: 24.1 + brightRed: 55.9 + brightGreen: 69.6 + brightYellow: 73.8 + brightBlue: 78.9 + brightMagenta: 64.4 + brightCyan: 69.6 + brightWhite: 95.1 diff --git a/themes/pinky-promise-theme--pinky-promise-light.yaml b/themes/pinky-promise-theme--pinky-promise-light.yaml new file mode 100644 index 00000000..1e204211 --- /dev/null +++ b/themes/pinky-promise-theme--pinky-promise-light.yaml @@ -0,0 +1,53 @@ +name: "Pinky Promise Theme (Pinky Promise Light)" +source: + marketplace_id: "ZubairIbnZamir.pinky-promise-theme" + version: "1.0.6" + installs: 460 + rating: 0 + ratings: 0 + author: "Zubair Ibn Zamir" + repo: "https://github.com/2u841r/pinky-promise-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ZubairIbnZamir.pinky-promise-theme" + formats: null +colors: + bg: "#F5EDFA" + fg: "#673C8B" + black: "#A289A9" + red: "#C51478" + green: "#487E70" + yellow: "#D2626C" + blue: "#5579BC" + magenta: "#6C4CBC" + cyan: "#487E70" + white: "#673C8B" + brightBlack: "#A289A9" + brightRed: "#C51478" + brightGreen: "#487E70" + brightYellow: "#D2626C" + brightBlue: "#5579BC" + brightMagenta: "#B74CBB" + brightCyan: "#487E70" + brightWhite: "#563271" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 78.6 + black: 49.4 + red: 66.9 + green: 63.3 + yellow: 54.8 + blue: 60.8 + magenta: 71.4 + cyan: 63.3 + white: 78.6 + brightBlack: 49.4 + brightRed: 66.9 + brightGreen: 63.3 + brightYellow: 54.8 + brightBlue: 60.8 + brightMagenta: 60.8 + brightCyan: 63.3 + brightWhite: 83.9 diff --git a/themes/pinkyboo-theme.yaml b/themes/pinkyboo-theme.yaml new file mode 100644 index 00000000..aac49814 --- /dev/null +++ b/themes/pinkyboo-theme.yaml @@ -0,0 +1,53 @@ +name: "PinkyBoo Theme" +source: + marketplace_id: "kissa1001.pinkyboo-theme" + version: "1.0.3" + installs: 3326 + rating: 0 + ratings: 0 + author: "kissa1001" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=kissa1001.pinkyboo-theme" + formats: null +colors: + bg: "#FBFBFB" + fg: "#5A5A5A" + black: "#747273" + red: "#CD3131" + green: "#00BC00" + yellow: "#F0E43B" + blue: "#7FB8F5" + magenta: "#FF13B9" + cyan: "#0598BC" + white: "#FFAFEB" + brightBlack: "#B3B3B3" + brightRed: "#E25555" + brightGreen: "#14CE14" + brightYellow: "#EBC13F" + brightBlue: "#7FB3EC" + brightMagenta: "#FF71E2" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 81.5 + black: 70.8 + red: 71.6 + green: 46.8 + yellow: 13.4 + blue: 38.2 + magenta: 57.5 + cyan: 58.2 + white: 26.8 + brightBlack: 38.7 + brightRed: 61.4 + brightGreen: 38.5 + brightYellow: 28.3 + brightBlue: 40.7 + brightMagenta: 44.4 + brightCyan: 58.2 + brightWhite: 46.1 diff --git a/themes/pittaya-theme--pittaya-theme-light.yaml b/themes/pittaya-theme--pittaya-theme-light.yaml new file mode 100644 index 00000000..0d4b9906 --- /dev/null +++ b/themes/pittaya-theme--pittaya-theme-light.yaml @@ -0,0 +1,53 @@ +name: "Pittaya Theme (Pittaya Theme Light)" +source: + marketplace_id: "pittaya-org.pittaya-theme" + version: "1.0.1" + installs: 46 + rating: 5 + ratings: 2 + author: "pittaya-org" + repo: "https://github.com/pittaya-ui/pittaya-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pittaya-org.pittaya-theme" + formats: null +colors: + bg: "#FAFAFA" + fg: "#2A2A2A" + black: "#000000" + red: "#D91656" + green: "#2F9E44" + yellow: "#D97900" + blue: "#1864AB" + magenta: "#AE3EC9" + cyan: "#0C8599" + white: "#2A2A2A" + brightBlack: "#606060" + brightRed: "#FF637E" + brightGreen: "#50C878" + brightYellow: "#FFAA00" + brightBlue: "#4D9FFF" + brightMagenta: "#DA77F2" + brightCyan: "#15AABF" + brightWhite: "#1A1A1A" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 98.1 + black: 103 + red: 69.4 + green: 58.6 + yellow: 55 + blue: 76.9 + magenta: 69.7 + cyan: 66.6 + white: 98.1 + brightBlack: 78.3 + brightRed: 50.9 + brightGreen: 38.4 + brightYellow: 33 + brightBlue: 49.4 + brightMagenta: 48.3 + brightCyan: 50.2 + brightWhite: 101.3 diff --git a/themes/pittaya-theme--pittaya-theme.yaml b/themes/pittaya-theme--pittaya-theme.yaml new file mode 100644 index 00000000..834bdad0 --- /dev/null +++ b/themes/pittaya-theme--pittaya-theme.yaml @@ -0,0 +1,53 @@ +name: "Pittaya Theme (Pittaya Theme)" +source: + marketplace_id: "pittaya-org.pittaya-theme" + version: "1.0.1" + installs: 46 + rating: 5 + ratings: 2 + author: "pittaya-org" + repo: "https://github.com/pittaya-ui/pittaya-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pittaya-org.pittaya-theme" + formats: null +colors: + bg: "#1A1A1A" + fg: "#E8E8E8" + black: "#1A1A1A" + red: "#FF637E" + green: "#8FD460" + yellow: "#FFCC66" + blue: "#4D9FFF" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#E0E0E0" + brightBlack: "#606060" + brightRed: "#FF637E" + brightGreen: "#8FD460" + brightYellow: "#FFCC66" + brightBlue: "#4D9FFF" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 91.6 + black: 0 + red: 46.6 + green: 68.5 + yellow: 78.9 + blue: 48.2 + magenta: 54.2 + cyan: 83.6 + white: 86.5 + brightBlack: 19.2 + brightRed: 46.6 + brightGreen: 68.5 + brightYellow: 78.9 + brightBlue: 48.2 + brightMagenta: 54.2 + brightCyan: 83.6 + brightWhite: 106.5 diff --git a/themes/pittcsc.yaml b/themes/pittcsc.yaml new file mode 100644 index 00000000..98ec5eef --- /dev/null +++ b/themes/pittcsc.yaml @@ -0,0 +1,53 @@ +name: "PittCSC" +source: + marketplace_id: "QuentinRomeroLauro.pittcsc-theme" + version: "0.1.2" + installs: 80 + rating: 5 + ratings: 11 + author: "Quentin Romero Lauro" + repo: "https://github.com/QuentinRomeroLauro/PittCSC-VSCode-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=QuentinRomeroLauro.pittcsc-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#F8F8F2" + black: "#252525" + red: "#F08080" + green: "#98C379" + yellow: "#E5C875" + blue: "#E5C875" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#E0E0E0" + brightBlack: "#252525" + brightRed: "#FF9090" + brightGreen: "#A8D389" + brightYellow: "#F5D885" + brightBlue: "#F5D885" + brightMagenta: "#D688ED" + brightCyan: "#66C6D2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.1 + black: 0 + red: 49.9 + green: 61.4 + yellow: 72.9 + blue: 72.9 + magenta: 44.3 + cyan: 53.7 + white: 86 + brightBlack: 0 + brightRed: 57.9 + brightGreen: 70.6 + brightYellow: 82.5 + brightBlue: 82.5 + brightMagenta: 52.4 + brightCyan: 62.3 + brightWhite: 106 diff --git a/themes/pizzutti-purple-cyan.yaml b/themes/pizzutti-purple-cyan.yaml new file mode 100644 index 00000000..df1eb6b6 --- /dev/null +++ b/themes/pizzutti-purple-cyan.yaml @@ -0,0 +1,53 @@ +name: "Pizzutti Purple Cyan" +source: + marketplace_id: "Pizzutti.pizzutti-purple-cyan" + version: "1.0.1" + installs: 159 + rating: 0 + ratings: 0 + author: "Pizzutti" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Pizzutti.pizzutti-purple-cyan" + formats: null +colors: + bg: "#282828" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 77 + black: 0 + red: 24.3 + green: 50.6 + yellow: 83.2 + blue: 25 + magenta: 27.3 + cyan: 45.1 + white: 87.6 + brightBlack: 19.6 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.6 + brightMagenta: 42.9 + brightCyan: 53 + brightWhite: 87.6 diff --git a/themes/plasticine--plasticine.yaml b/themes/plasticine--plasticine.yaml new file mode 100644 index 00000000..8744c86f --- /dev/null +++ b/themes/plasticine--plasticine.yaml @@ -0,0 +1,53 @@ +name: "Plasticine (Plasticine)" +source: + marketplace_id: "myxlxal.plasticine" + version: "0.7.1" + installs: 845 + rating: 5 + ratings: 1 + author: "Myxlxal" + repo: "https://github.com/OlegKrechkovskiy/plasticine" + url: "https://marketplace.visualstudio.com/items?itemName=myxlxal.plasticine" + formats: null +colors: + bg: "#21252B" + fg: "#A9B2C3" + black: "#5F6672" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#B57EDC" + cyan: "#56B6C2" + white: "#A9B2C3" + brightBlack: "#5F6672" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#B57EDC" + brightCyan: "#56B6C2" + brightWhite: "#A9B2C3" +meta: + mode: "dark" + accent: "magenta" + hue: 258 + pair: null + contrast: + fg: 57.5 + black: 20 + red: 40.2 + green: 60.4 + yellow: 68.7 + blue: 52.8 + magenta: 42.3 + cyan: 52.7 + white: 57.5 + brightBlack: 20 + brightRed: 40.2 + brightGreen: 60.4 + brightYellow: 68.7 + brightBlue: 52.8 + brightMagenta: 42.3 + brightCyan: 52.7 + brightWhite: 57.5 diff --git a/themes/plurpel.yaml b/themes/plurpel.yaml new file mode 100644 index 00000000..aba4a4cb --- /dev/null +++ b/themes/plurpel.yaml @@ -0,0 +1,53 @@ +name: "Plurpel!" +source: + marketplace_id: "JhonLikesFloppa.plurpel" + version: "2.1.0" + installs: 715 + rating: 5 + ratings: 2 + author: "SahalMoh" + repo: "https://github.com/Plurpel/Plurpel-VSC" + url: "https://marketplace.visualstudio.com/items?itemName=JhonLikesFloppa.plurpel" + formats: null +colors: + bg: "#242038" + fg: "#F7ECE1" + black: "#242038" + red: "#E06C75" + green: "#98C379" + yellow: "#D19A66" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#F7ECE1" + brightBlack: "#CAC4CE" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#F7ECE1" +meta: + mode: "dark" + accent: "pink" + hue: 291 + pair: null + contrast: + fg: 93.9 + black: 0 + red: 40.4 + green: 60.6 + yellow: 51 + blue: 53 + magenta: 43.5 + cyan: 52.9 + white: 93.9 + brightBlack: 69.5 + brightRed: 40.4 + brightGreen: 60.6 + brightYellow: 68.9 + brightBlue: 53 + brightMagenta: 43.5 + brightCyan: 52.9 + brightWhite: 93.9 diff --git a/themes/poimandres--poimandres-dark-theme.yaml b/themes/poimandres--poimandres-dark-theme.yaml new file mode 100644 index 00000000..4065f59b --- /dev/null +++ b/themes/poimandres--poimandres-dark-theme.yaml @@ -0,0 +1,54 @@ +name: "poimandres (poimandres dark theme)" +source: + marketplace_id: "pmndrs.pmndrs" + version: "0.3.7" + installs: 148228 + rating: 4.56 + ratings: 9 + author: "poimandres" + repo: "https://github.com/drcmda/poimandres-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pmndrs.pmndrs" + formats: + sublime: "https://raw.githubusercontent.com/drcmda/poimandres-theme/main/pmndrs.tmTheme" +colors: + bg: "#1B1E28" + fg: "#A6ACCD" + black: "#1B1E28" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#F087BD" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#F087BD" + brightCyan: "#ADD7FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 272 + pair: null + contrast: + fg: 56.3 + black: 0 + red: 38.3 + green: 75.5 + yellow: 101.1 + blue: 77.4 + magenta: 54 + cyan: 77.4 + white: 106 + brightBlack: 56.3 + brightRed: 38.3 + brightGreen: 75.5 + brightYellow: 101.1 + brightBlue: 77.7 + brightMagenta: 54 + brightCyan: 77.7 + brightWhite: 106 diff --git a/themes/poimandres-darker.yaml b/themes/poimandres-darker.yaml new file mode 100644 index 00000000..f941560e --- /dev/null +++ b/themes/poimandres-darker.yaml @@ -0,0 +1,53 @@ +name: "Poimandres Darker" +source: + marketplace_id: "FawwazFirdaus.poimandres-darker" + version: "0.1.1" + installs: 65 + rating: 0 + ratings: 0 + author: "Fawwaz Firdaus" + repo: "https://github.com/fawwazfirdaus/poimandres-darker-theme" + url: "https://marketplace.visualstudio.com/items?itemName=FawwazFirdaus.poimandres-darker" + formats: null +colors: + bg: "#16161E" + fg: "#A6ACCD" + black: "#16161E" + red: "#D0679D" + green: "#5DE4C7" + yellow: "#FFFAC2" + blue: "#89DDFF" + magenta: "#FCC5E9" + cyan: "#ADD7FF" + white: "#FFFFFF" + brightBlack: "#A6ACCD" + brightRed: "#D0679D" + brightGreen: "#5DE4C7" + brightYellow: "#FFFAC2" + brightBlue: "#ADD7FF" + brightMagenta: "#FAE4FC" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 285 + pair: null + contrast: + fg: 57.2 + black: 0 + red: 39.2 + green: 76.4 + yellow: 102 + blue: 78.3 + magenta: 80.2 + cyan: 78.6 + white: 106.9 + brightBlack: 57.2 + brightRed: 39.2 + brightGreen: 76.4 + brightYellow: 102 + brightBlue: 78.6 + brightMagenta: 93.7 + brightCyan: 78.3 + brightWhite: 106.9 diff --git a/themes/polar-black--polar-black-cherry-blossom.yaml b/themes/polar-black--polar-black-cherry-blossom.yaml new file mode 100644 index 00000000..34b20dc5 --- /dev/null +++ b/themes/polar-black--polar-black-cherry-blossom.yaml @@ -0,0 +1,53 @@ +name: "Polar Black (Polar Black Cherry Blossom)" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 196 + rating: 4 + ratings: 1 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" + formats: null +colors: + bg: "#000000" + fg: "#F0D6E0" + black: "#000000" + red: "#E8B0C8" + green: "#E8B0C8" + yellow: "#E8B0C8" + blue: "#E8B0C8" + magenta: "#E8B0C8" + cyan: "#E8B0C8" + white: "#E8B0C8" + brightBlack: "#5A3A4A" + brightRed: "#E8B0C8" + brightGreen: "#E8B0C8" + brightYellow: "#E8B0C8" + brightBlue: "#E8B0C8" + brightMagenta: "#E8B0C8" + brightCyan: "#E8B0C8" + brightWhite: "#E8B0C8" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 85.8 + black: 0 + red: 68.4 + green: 68.4 + yellow: 68.4 + blue: 68.4 + magenta: 68.4 + cyan: 68.4 + white: 68.4 + brightBlack: 9.8 + brightRed: 68.4 + brightGreen: 68.4 + brightYellow: 68.4 + brightBlue: 68.4 + brightMagenta: 68.4 + brightCyan: 68.4 + brightWhite: 68.4 diff --git a/themes/polar-black--polar-black-green-cactus.yaml b/themes/polar-black--polar-black-green-cactus.yaml new file mode 100644 index 00000000..d87a681d --- /dev/null +++ b/themes/polar-black--polar-black-green-cactus.yaml @@ -0,0 +1,53 @@ +name: "Polar Black (Polar Black Green Cactus)" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 196 + rating: 4 + ratings: 1 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" + formats: null +colors: + bg: "#000000" + fg: "#D0E8D0" + black: "#000000" + red: "#70C880" + green: "#70C880" + yellow: "#70C880" + blue: "#70C880" + magenta: "#70C880" + cyan: "#70C880" + white: "#70C880" + brightBlack: "#3A5A3A" + brightRed: "#70C880" + brightGreen: "#70C880" + brightYellow: "#70C880" + brightBlue: "#70C880" + brightMagenta: "#70C880" + brightCyan: "#70C880" + brightWhite: "#70C880" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 88.8 + black: 0 + red: 62.7 + green: 62.7 + yellow: 62.7 + blue: 62.7 + magenta: 62.7 + cyan: 62.7 + white: 62.7 + brightBlack: 15.2 + brightRed: 62.7 + brightGreen: 62.7 + brightYellow: 62.7 + brightBlue: 62.7 + brightMagenta: 62.7 + brightCyan: 62.7 + brightWhite: 62.7 diff --git a/themes/polar-black--polar-black-ice.yaml b/themes/polar-black--polar-black-ice.yaml new file mode 100644 index 00000000..bb84c5fc --- /dev/null +++ b/themes/polar-black--polar-black-ice.yaml @@ -0,0 +1,53 @@ +name: "Polar Black (Polar Black Ice)" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 196 + rating: 4 + ratings: 1 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" + formats: null +colors: + bg: "#000000" + fg: "#D8EDF5" + black: "#000000" + red: "#B8DCE8" + green: "#B8DCE8" + yellow: "#B8DCE8" + blue: "#B8DCE8" + magenta: "#B8DCE8" + cyan: "#B8DCE8" + white: "#B8DCE8" + brightBlack: "#3E4550" + brightRed: "#B8DCE8" + brightGreen: "#B8DCE8" + brightYellow: "#B8DCE8" + brightBlue: "#B8DCE8" + brightMagenta: "#B8DCE8" + brightCyan: "#B8DCE8" + brightWhite: "#B8DCE8" +meta: + mode: "dark" + accent: "blue" + hue: null + pair: null + contrast: + fg: 93.8 + black: 0 + red: 81.7 + green: 81.7 + yellow: 81.7 + blue: 81.7 + magenta: 81.7 + cyan: 81.7 + white: 81.7 + brightBlack: 10 + brightRed: 81.7 + brightGreen: 81.7 + brightYellow: 81.7 + brightBlue: 81.7 + brightMagenta: 81.7 + brightCyan: 81.7 + brightWhite: 81.7 diff --git a/themes/polar-black--polar-black-less-black-smoke.yaml b/themes/polar-black--polar-black-less-black-smoke.yaml new file mode 100644 index 00000000..5e48a157 --- /dev/null +++ b/themes/polar-black--polar-black-less-black-smoke.yaml @@ -0,0 +1,53 @@ +name: "Polar Black (Polar Black Less Black Smoke)" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 196 + rating: 4 + ratings: 1 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" + formats: null +colors: + bg: "#101010" + fg: "#FFFFFF" + black: "#101010" + red: "#FFFFFF" + green: "#FFFFFF" + yellow: "#FFFFFF" + blue: "#FFFFFF" + magenta: "#FFFFFF" + cyan: "#FFFFFF" + white: "#FFFFFF" + brightBlack: "#444444" + brightRed: "#FFFFFF" + brightGreen: "#FFFFFF" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 107.4 + black: 0 + red: 107.4 + green: 107.4 + yellow: 107.4 + blue: 107.4 + magenta: 107.4 + cyan: 107.4 + white: 107.4 + brightBlack: 9.4 + brightRed: 107.4 + brightGreen: 107.4 + brightYellow: 107.4 + brightBlue: 107.4 + brightMagenta: 107.4 + brightCyan: 107.4 + brightWhite: 107.4 diff --git a/themes/polar-black--polar-black-light.yaml b/themes/polar-black--polar-black-light.yaml new file mode 100644 index 00000000..34fe18e2 --- /dev/null +++ b/themes/polar-black--polar-black-light.yaml @@ -0,0 +1,53 @@ +name: "Polar Black (Polar Black Light)" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 196 + rating: 4 + ratings: 1 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" + formats: null +colors: + bg: "#FAFAFA" + fg: "#2A2A2A" + black: "#2A2A2A" + red: "#C03848" + green: "#4A7A28" + yellow: "#A07808" + blue: "#2A5AAA" + magenta: "#7848A0" + cyan: "#1A6EA0" + white: "#FAFAFA" + brightBlack: "#888888" + brightRed: "#C03848" + brightGreen: "#4A7A28" + brightYellow: "#A07808" + brightBlue: "#1A6EA0" + brightMagenta: "#7848A0" + brightCyan: "#1A6EA0" + brightWhite: "#FAFAFA" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.1 + black: 98.1 + red: 72.7 + green: 72.1 + yellow: 64.5 + blue: 79.6 + magenta: 78.9 + cyan: 74.3 + white: 0 + brightBlack: 60.1 + brightRed: 72.7 + brightGreen: 72.1 + brightYellow: 64.5 + brightBlue: 74.3 + brightMagenta: 78.9 + brightCyan: 74.3 + brightWhite: 0 diff --git a/themes/polar-black--polar-black-red.yaml b/themes/polar-black--polar-black-red.yaml new file mode 100644 index 00000000..a8207436 --- /dev/null +++ b/themes/polar-black--polar-black-red.yaml @@ -0,0 +1,53 @@ +name: "Polar Black (Polar Black Red)" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 196 + rating: 4 + ratings: 1 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" + formats: null +colors: + bg: "#000000" + fg: "#E8D0D0" + black: "#000000" + red: "#D04040" + green: "#D04040" + yellow: "#D04040" + blue: "#D04040" + magenta: "#D04040" + cyan: "#D04040" + white: "#D04040" + brightBlack: "#5A3838" + brightRed: "#D04040" + brightGreen: "#D04040" + brightYellow: "#D04040" + brightBlue: "#D04040" + brightMagenta: "#D04040" + brightCyan: "#D04040" + brightWhite: "#D04040" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 81.4 + black: 0 + red: 30.3 + green: 30.3 + yellow: 30.3 + blue: 30.3 + magenta: 30.3 + cyan: 30.3 + white: 30.3 + brightBlack: 8.9 + brightRed: 30.3 + brightGreen: 30.3 + brightYellow: 30.3 + brightBlue: 30.3 + brightMagenta: 30.3 + brightCyan: 30.3 + brightWhite: 30.3 diff --git a/themes/polar-black--polar-black-savanna.yaml b/themes/polar-black--polar-black-savanna.yaml new file mode 100644 index 00000000..77f38089 --- /dev/null +++ b/themes/polar-black--polar-black-savanna.yaml @@ -0,0 +1,53 @@ +name: "Polar Black (Polar Black Savanna)" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 196 + rating: 4 + ratings: 1 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" + formats: null +colors: + bg: "#000000" + fg: "#E8DCC8" + black: "#000000" + red: "#D8A858" + green: "#D8A858" + yellow: "#D8A858" + blue: "#D8A858" + magenta: "#D8A858" + cyan: "#D8A858" + white: "#D8A858" + brightBlack: "#5A5040" + brightRed: "#D8A858" + brightGreen: "#D8A858" + brightYellow: "#D8A858" + brightBlue: "#D8A858" + brightMagenta: "#D8A858" + brightCyan: "#D8A858" + brightWhite: "#D8A858" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 86.2 + black: 0 + red: 59.6 + green: 59.6 + yellow: 59.6 + blue: 59.6 + magenta: 59.6 + cyan: 59.6 + white: 59.6 + brightBlack: 14.7 + brightRed: 59.6 + brightGreen: 59.6 + brightYellow: 59.6 + brightBlue: 59.6 + brightMagenta: 59.6 + brightCyan: 59.6 + brightWhite: 59.6 diff --git a/themes/polar-black--polar-black.yaml b/themes/polar-black--polar-black.yaml new file mode 100644 index 00000000..8e4699df --- /dev/null +++ b/themes/polar-black--polar-black.yaml @@ -0,0 +1,53 @@ +name: "Polar Black (Polar Black)" +source: + marketplace_id: "nionx01.polar-black-themes" + version: "0.0.5" + installs: 196 + rating: 4 + ratings: 1 + author: "nionx01" + repo: "https://github.com/nionx01/polar-black-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nionx01.polar-black-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FFFFFF" + green: "#FFFFFF" + yellow: "#FFFFFF" + blue: "#FFFFFF" + magenta: "#FFFFFF" + cyan: "#FFFFFF" + white: "#FFFFFF" + brightBlack: "#444444" + brightRed: "#FFFFFF" + brightGreen: "#FFFFFF" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 107.9 + green: 107.9 + yellow: 107.9 + blue: 107.9 + magenta: 107.9 + cyan: 107.9 + white: 107.9 + brightBlack: 9.8 + brightRed: 107.9 + brightGreen: 107.9 + brightYellow: 107.9 + brightBlue: 107.9 + brightMagenta: 107.9 + brightCyan: 107.9 + brightWhite: 107.9 diff --git a/themes/polar.yaml b/themes/polar.yaml new file mode 100644 index 00000000..9dcb26f0 --- /dev/null +++ b/themes/polar.yaml @@ -0,0 +1,57 @@ +name: "Polar" +source: + marketplace_id: "merithayan.polar" + version: "0.1.1" + installs: 5888 + rating: 5 + ratings: 2 + author: "Tim Hull" + repo: "https://www.github.com/mtyn/polar" + url: "https://marketplace.visualstudio.com/items?itemName=merithayan.polar" + formats: + iterm2: "https://raw.githubusercontent.com/mtyn/polar/master/polar/iterm2/polar.itermcolors" + warp: "https://raw.githubusercontent.com/mtyn/polar/master/polar/warp/polar.yaml" + xcode: "https://raw.githubusercontent.com/mtyn/polar/master/legacy/pre-generated/xcode/Polar.xccolortheme" + sublime: "https://raw.githubusercontent.com/mtyn/polar/master/polar/sublime-text/Polar.sublime-color-scheme" +colors: + bg: "#F9FAFB" + fg: "#4C566A" + black: "#ECEFF4" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#D8DEE9" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#3B4252" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.6 + black: 0 + red: 64.6 + green: 36.6 + yellow: 22.6 + blue: 49.1 + magenta: 51.3 + cyan: 35.6 + white: 7.7 + brightBlack: 14.2 + brightRed: 64.6 + brightGreen: 36.6 + brightYellow: 22.6 + brightBlue: 49.1 + brightMagenta: 51.3 + brightCyan: 37.6 + brightWhite: 90.3 diff --git a/themes/polychrome-themes--polychrome-dark.yaml b/themes/polychrome-themes--polychrome-dark.yaml new file mode 100644 index 00000000..f1a74957 --- /dev/null +++ b/themes/polychrome-themes--polychrome-dark.yaml @@ -0,0 +1,53 @@ +name: "Polychrome themes (Polychrome Dark)" +source: + marketplace_id: "cdonohue.polychrome-vscode-themes" + version: "1.0.0" + installs: 6863 + rating: 0 + ratings: 0 + author: "Chad Donohue" + repo: "https://github.com/cdonohue/polychrome-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=cdonohue.polychrome-vscode-themes" + formats: null +colors: + bg: "#2A2833" + fg: "#BBB4D8" + black: "#484459" + red: "#FF6347" + green: "#A59CCC" + yellow: "#FFE685" + blue: "#BBB4D8" + magenta: "#FFE685" + cyan: "#767092" + white: "#F5F5F5" + brightBlack: "#B7A870" + brightRed: "#FFE685" + brightGreen: "#A59CCC" + brightYellow: "#B7A870" + brightBlue: "#D2CDE5" + brightMagenta: "#B7A870" + brightCyan: "#D2CDE5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 293 + pair: null + contrast: + fg: 60.6 + black: 0 + red: 43.1 + green: 48.2 + yellow: 88.4 + blue: 60.6 + magenta: 88.4 + cyan: 25.6 + white: 97.6 + brightBlack: 51.6 + brightRed: 88.4 + brightGreen: 48.2 + brightYellow: 51.6 + brightBlue: 74.3 + brightMagenta: 51.6 + brightCyan: 74.3 + brightWhite: 104.2 diff --git a/themes/polychrome-themes--polychrome-light.yaml b/themes/polychrome-themes--polychrome-light.yaml new file mode 100644 index 00000000..b3103a04 --- /dev/null +++ b/themes/polychrome-themes--polychrome-light.yaml @@ -0,0 +1,53 @@ +name: "Polychrome themes (Polychrome Light)" +source: + marketplace_id: "cdonohue.polychrome-vscode-themes" + version: "1.0.0" + installs: 6863 + rating: 0 + ratings: 0 + author: "Chad Donohue" + repo: "https://github.com/cdonohue/polychrome-vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=cdonohue.polychrome-vscode-themes" + formats: null +colors: + bg: "#FBFAF9" + fg: "#502DB4" + black: "#D1C2F9" + red: "#F42A2A" + green: "#6B3DF1" + yellow: "#A97E50" + blue: "#502DB4" + magenta: "#A97E50" + cyan: "#9E7FF5" + white: "#F5F5F5" + brightBlack: "#BDA58C" + brightRed: "#A97E50" + brightGreen: "#6B3DF1" + brightYellow: "#BDA58C" + brightBlue: "#351E78" + brightMagenta: "#BDA58C" + brightCyan: "#351E78" + brightWhite: "#000000" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 86.4 + black: 25.5 + red: 62.6 + green: 75.6 + yellow: 60.9 + blue: 86.4 + magenta: 60.9 + cyan: 54.7 + white: 0 + brightBlack: 43.5 + brightRed: 60.9 + brightGreen: 75.6 + brightYellow: 43.5 + brightBlue: 95.8 + brightMagenta: 43.5 + brightCyan: 95.8 + brightWhite: 103.1 diff --git a/themes/pop.yaml b/themes/pop.yaml new file mode 100644 index 00000000..e1f779ba --- /dev/null +++ b/themes/pop.yaml @@ -0,0 +1,53 @@ +name: "Pop" +source: + marketplace_id: "asant930.pop" + version: "0.0.1" + installs: 621 + rating: 0 + ratings: 0 + author: "asant930" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=asant930.pop" + formats: null +colors: + bg: "#003049" + fg: "#90E0EF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 238 + pair: null + contrast: + fg: 75.6 + black: 0 + red: 23 + green: 49.3 + yellow: 81.9 + blue: 23.7 + magenta: 26.1 + cyan: 43.9 + white: 86.3 + brightBlack: 18.3 + brightRed: 34.9 + brightGreen: 59.8 + brightYellow: 91.9 + brightBlue: 36.3 + brightMagenta: 41.7 + brightCyan: 51.7 + brightWhite: 86.3 diff --git a/themes/popping-and-locking-black-theme.yaml b/themes/popping-and-locking-black-theme.yaml new file mode 100644 index 00000000..d09019cc --- /dev/null +++ b/themes/popping-and-locking-black-theme.yaml @@ -0,0 +1,53 @@ +name: "Popping and Locking Black Theme" +source: + marketplace_id: "philsinatra.popping-and-locking-vscode-black" + version: "1.1.7" + installs: 40574 + rating: 5 + ratings: 4 + author: "Phil Sinatra" + repo: "https://github.com/philsinatra/popping-and-locking-vscode-black" + url: "https://marketplace.visualstudio.com/items?itemName=philsinatra.popping-and-locking-vscode-black" + formats: null +colors: + bg: "#000000" + fg: "#F2E5BC" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#F42C3E" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#99C6CA" + brightMagenta: "#D3869B" + brightCyan: "#7EC16E" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.2 + black: 0 + red: 26.3 + green: 43.9 + yellow: 53.5 + blue: 32.6 + magenta: 32.7 + cyan: 43 + white: 48.2 + brightBlack: 37.4 + brightRed: 36.5 + brightGreen: 62.2 + brightYellow: 72.8 + brightBlue: 67.4 + brightMagenta: 49 + brightCyan: 60 + brightWhite: 85.4 diff --git a/themes/popping-and-locking-theme.yaml b/themes/popping-and-locking-theme.yaml new file mode 100644 index 00000000..637a06b1 --- /dev/null +++ b/themes/popping-and-locking-theme.yaml @@ -0,0 +1,53 @@ +name: "Popping and Locking Theme" +source: + marketplace_id: "hedinne.popping-and-locking-vscode" + version: "2.0.11" + installs: 92751 + rating: 5 + ratings: 18 + author: ".hedinne" + repo: "https://github.com/hedinne/popping-and-locking-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=hedinne.popping-and-locking-vscode" + formats: null +colors: + bg: "#21222D" + fg: "#F2E5BC" + black: "#1D2021" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#F42C3E" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#99C6CA" + brightMagenta: "#D3869B" + brightCyan: "#7EC16E" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: 281 + pair: null + contrast: + fg: 88.7 + black: 0 + red: 23.7 + green: 41.4 + yellow: 51 + blue: 30 + magenta: 30.2 + cyan: 40.4 + white: 45.7 + brightBlack: 34.8 + brightRed: 33.9 + brightGreen: 59.6 + brightYellow: 70.3 + brightBlue: 64.9 + brightMagenta: 46.4 + brightCyan: 57.4 + brightWhite: 82.9 diff --git a/themes/positively-wicked--wicked.yaml b/themes/positively-wicked--wicked.yaml new file mode 100644 index 00000000..2e741d5e --- /dev/null +++ b/themes/positively-wicked--wicked.yaml @@ -0,0 +1,53 @@ +name: "Positively Wicked (Wicked)" +source: + marketplace_id: "RoxasKi.positively-wicked" + version: "1.0.5" + installs: 27 + rating: 0 + ratings: 0 + author: "RoxasKi" + repo: "https://github.com/Roxaski/positively-wicked" + url: "https://marketplace.visualstudio.com/items?itemName=RoxasKi.positively-wicked" + formats: null +colors: + bg: "#1A1A1A" + fg: "#E8E6E3" + black: "#1A1A1A" + red: "#7A4A2E" + green: "#52A249" + yellow: "#359816" + blue: "#4A7C59" + magenta: "#5D7C5D" + cyan: "#3D8B6B" + white: "#C9C6C6" + brightBlack: "#4E6E4A" + brightRed: "#8B5A3C" + brightGreen: "#6BC95D" + brightYellow: "#3FBB19" + brightBlue: "#5C9670" + brightMagenta: "#739973" + brightCyan: "#4DA882" + brightWhite: "#F1F0EE" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 90.5 + black: 0 + red: 15.3 + green: 41.8 + yellow: 36.1 + blue: 26.7 + magenta: 28 + cyan: 32.3 + white: 71.2 + brightBlack: 21.7 + brightRed: 21.6 + brightGreen: 60.8 + brightYellow: 51.7 + brightBlue: 38.2 + brightMagenta: 41 + brightCyan: 45.4 + brightWhite: 96.8 diff --git a/themes/potion-theme.yaml b/themes/potion-theme.yaml new file mode 100644 index 00000000..3c911a64 --- /dev/null +++ b/themes/potion-theme.yaml @@ -0,0 +1,53 @@ +name: "Potion Theme" +source: + marketplace_id: "sissel.material-potion" + version: "0.1.1" + installs: 1206 + rating: 5 + ratings: 1 + author: "panoply" + repo: "https://github.com/panoply/vscode-potion-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sissel.material-potion" + formats: null +colors: + bg: "#080808" + fg: "#F2F2F2" + black: "#000000" + red: "#F44336" + green: "#9CCC65" + yellow: "#FFEB3B" + blue: "#42A5F5" + magenta: "#CE93D8" + cyan: "#00BCD4" + white: "#E0E0E0" + brightBlack: "#807E7B" + brightRed: "#E57373" + brightGreen: "#8BC34A" + brightYellow: "#FFF59D" + brightBlue: "#29B6F6" + brightMagenta: "#E1BEE7" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.3 + black: 0 + red: 38.6 + green: 67.2 + yellow: 93.3 + blue: 50.6 + magenta: 55 + cyan: 57.4 + white: 87.8 + brightBlack: 33.8 + brightRed: 45.7 + brightGreen: 61.3 + brightYellow: 99.5 + brightBlue: 57.1 + brightMagenta: 74 + brightCyan: 68.3 + brightWhite: 107.8 diff --git a/themes/powertech-themes--office-dark.yaml b/themes/powertech-themes--office-dark.yaml new file mode 100644 index 00000000..1fc386a6 --- /dev/null +++ b/themes/powertech-themes--office-dark.yaml @@ -0,0 +1,53 @@ +name: "PowerTech Themes (Office Dark)" +source: + marketplace_id: "PowerTech.powerthemes" + version: "23.1.31" + installs: 6962 + rating: 0 + ratings: 0 + author: "PowerTech" + repo: "https://github.com/powertech-center/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=PowerTech.powerthemes" + formats: null +colors: + bg: "#262626" + fg: "#F6F6F6" + black: "#000000" + red: "#ED7D31" + green: "#70AD47" + yellow: "#FFC000" + blue: "#4472C4" + magenta: "#8064A2" + cyan: "#5B9BD5" + white: "#F6F6F6" + brightBlack: "#A5A5A5" + brightRed: "#F4B183" + brightGreen: "#A8D08D" + brightYellow: "#FFD965" + brightBlue: "#8EAADB" + brightMagenta: "#B2A1C7" + brightCyan: "#9CC3E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 98.9 + black: 0 + red: 45.8 + green: 46.5 + yellow: 71.7 + blue: 26.1 + magenta: 24.6 + cyan: 42.7 + white: 98.9 + brightBlack: 50.4 + brightRed: 65.3 + brightGreen: 68.1 + brightYellow: 82.7 + brightBlue: 52.6 + brightMagenta: 52 + brightCyan: 64.7 + brightWhite: 104.8 diff --git a/themes/powertech-themes--office-light.yaml b/themes/powertech-themes--office-light.yaml new file mode 100644 index 00000000..0c87ff38 --- /dev/null +++ b/themes/powertech-themes--office-light.yaml @@ -0,0 +1,53 @@ +name: "PowerTech Themes (Office Light)" +source: + marketplace_id: "PowerTech.powerthemes" + version: "23.1.31" + installs: 6962 + rating: 0 + ratings: 0 + author: "PowerTech" + repo: "https://github.com/powertech-center/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=PowerTech.powerthemes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#F4B183" + green: "#A8D08D" + yellow: "#FFD965" + blue: "#8EAADB" + magenta: "#B2A1C7" + cyan: "#9CC3E5" + white: "#A5A5A5" + brightBlack: "#808080" + brightRed: "#ED7D31" + brightGreen: "#70AD47" + brightYellow: "#FFC000" + brightBlue: "#4472C4" + brightMagenta: "#8064A2" + brightCyan: "#5B9BD5" + brightWhite: "#C9C9C9" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 34.2 + green: 31.6 + yellow: 17.8 + blue: 46.4 + magenta: 46.9 + cyan: 34.8 + white: 48.5 + brightBlack: 66.9 + brightRed: 52.9 + brightGreen: 52.3 + brightYellow: 28.2 + brightBlue: 72.5 + brightMagenta: 74 + brightCyan: 56 + brightWhite: 29 diff --git a/themes/ppy-like-colours.yaml b/themes/ppy-like-colours.yaml new file mode 100644 index 00000000..84336c0d --- /dev/null +++ b/themes/ppy-like-colours.yaml @@ -0,0 +1,53 @@ +name: "ppy-like colours" +source: + marketplace_id: "reiisen.hi" + version: "0.0.1" + installs: 1304 + rating: 5 + ratings: 1 + author: "reiisen" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=reiisen.hi" + formats: null +colors: + bg: "#20202A" + fg: "#D7D7FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + pair: null + contrast: + fg: 82.1 + black: 0 + red: 25.5 + green: 51.8 + yellow: 84.4 + blue: 26.2 + magenta: 28.5 + cyan: 46.3 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.3 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.8 + brightMagenta: 44.1 + brightCyan: 54.2 + brightWhite: 88.8 diff --git a/themes/pr-theme--pr-theme-obsidian.yaml b/themes/pr-theme--pr-theme-obsidian.yaml new file mode 100644 index 00000000..e91767ed --- /dev/null +++ b/themes/pr-theme--pr-theme-obsidian.yaml @@ -0,0 +1,53 @@ +name: "PR-Theme (PR-Theme Obsidian)" +source: + marketplace_id: "PrincePatelPR26.PrincePatelPR26" + version: "0.0.2" + installs: 28 + rating: 5 + ratings: 1 + author: "Prince Patel" + repo: "https://github.com/imprince26/PR-Theme-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=PrincePatelPR26.PrincePatelPR26" + formats: null +colors: + bg: "#0B0F14" + fg: "#CFD6E4" + black: "#0B0F14" + red: "#F7768E" + green: "#98C379" + yellow: "#E5C07B" + blue: "#8AB4F8" + magenta: "#C792EA" + cyan: "#7DCFFF" + white: "#CFD6E4" + brightBlack: "#4E5666" + brightRed: "#F7768E" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#8AB4F8" + brightMagenta: "#C792EA" + brightCyan: "#7DCFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 254 + pair: null + contrast: + fg: 81.1 + black: 0 + red: 50.6 + green: 62.9 + yellow: 71.2 + blue: 60.7 + magenta: 54.4 + cyan: 71.7 + white: 81.1 + brightBlack: 16 + brightRed: 50.6 + brightGreen: 62.9 + brightYellow: 71.2 + brightBlue: 60.7 + brightMagenta: 54.4 + brightCyan: 71.7 + brightWhite: 107.5 diff --git a/themes/pr-theme--pr-theme-premium.yaml b/themes/pr-theme--pr-theme-premium.yaml new file mode 100644 index 00000000..a0507f10 --- /dev/null +++ b/themes/pr-theme--pr-theme-premium.yaml @@ -0,0 +1,53 @@ +name: "PR-Theme (PR-Theme Premium)" +source: + marketplace_id: "PrincePatelPR26.PrincePatelPR26" + version: "0.0.2" + installs: 28 + rating: 5 + ratings: 1 + author: "Prince Patel" + repo: "https://github.com/imprince26/PR-Theme-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=PrincePatelPR26.PrincePatelPR26" + formats: null +colors: + bg: "#0F1117" + fg: "#D6DBE6" + black: "#0B0D12" + red: "#F7768E" + green: "#3DD6A5" + yellow: "#F2C97D" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#D6DBE6" + brightBlack: "#4F5868" + brightRed: "#F7768E" + brightGreen: "#3DD6A5" + brightYellow: "#F2C97D" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 271 + pair: null + contrast: + fg: 84.1 + black: 0 + red: 50.4 + green: 67.7 + yellow: 76.8 + blue: 52.2 + magenta: 56 + cyan: 71.5 + white: 84.1 + brightBlack: 16.6 + brightRed: 50.4 + brightGreen: 67.7 + brightYellow: 76.8 + brightBlue: 52.2 + brightMagenta: 56 + brightCyan: 71.5 + brightWhite: 107.4 diff --git a/themes/pr-theme--pr-theme.yaml b/themes/pr-theme--pr-theme.yaml new file mode 100644 index 00000000..6aedb109 --- /dev/null +++ b/themes/pr-theme--pr-theme.yaml @@ -0,0 +1,53 @@ +name: "PR-Theme (PR-Theme)" +source: + marketplace_id: "PrincePatelPR26.PrincePatelPR26" + version: "0.0.2" + installs: 28 + rating: 5 + ratings: 1 + author: "Prince Patel" + repo: "https://github.com/imprince26/PR-Theme-VSCode" + url: "https://marketplace.visualstudio.com/items?itemName=PrincePatelPR26.PrincePatelPR26" + formats: null +colors: + bg: "#0D0D0D" + fg: "#C5C5C5" + black: "#000000" + red: "#FF5370" + green: "#2EB67D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#545454" + brightRed: "#FF5370" + brightGreen: "#2EB67D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 71.3 + black: 0 + red: 44.4 + green: 51.5 + yellow: 79.7 + blue: 56.7 + magenta: 54.5 + cyan: 79 + white: 107.6 + brightBlack: 15.5 + brightRed: 44.4 + brightGreen: 51.5 + brightYellow: 79.7 + brightBlue: 56.7 + brightMagenta: 54.5 + brightCyan: 79 + brightWhite: 107.6 diff --git a/themes/prismapixel-studios.yaml b/themes/prismapixel-studios.yaml new file mode 100644 index 00000000..719161be --- /dev/null +++ b/themes/prismapixel-studios.yaml @@ -0,0 +1,53 @@ +name: "PrismaPixel Studios" +source: + marketplace_id: "PrismaPixel-Studios.prismapixel-studios-theme" + version: "0.0.1" + installs: 228 + rating: 5 + ratings: 1 + author: "PrismaPixel Studios" + repo: "https://github.com/PrismaPixelStudios/PrismaPixel_Studios-vscode_theme" + url: "https://marketplace.visualstudio.com/items?itemName=PrismaPixel-Studios.prismapixel-studios-theme" + formats: null +colors: + bg: "#2D2D2D" + fg: "#989998" + black: "#000000" + red: "#E1251B" + green: "#009D4F" + yellow: "#FFE800" + blue: "#1A428A" + magenta: "#E31D93" + cyan: "#00B2E3" + white: "#FFFFFF" + brightBlack: "#353331" + brightRed: "#FF9C8F" + brightGreen: "#78CC99" + brightYellow: "#FFF98D" + brightBlue: "#92AFEC" + brightMagenta: "#F08FC8" + brightCyan: "#81D3F7" + brightWhite: "#F1F1F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 42.6 + black: 0 + red: 26.7 + green: 35 + yellow: 87.4 + blue: 0 + magenta: 29.3 + cyan: 49.6 + white: 103.4 + brightBlack: 0 + brightRed: 59 + brightGreen: 61.3 + brightYellow: 96.6 + brightBlue: 54.6 + brightMagenta: 54.3 + brightCyan: 69.2 + brightWhite: 94.3 diff --git a/themes/pro-white.yaml b/themes/pro-white.yaml new file mode 100644 index 00000000..6a5b65f7 --- /dev/null +++ b/themes/pro-white.yaml @@ -0,0 +1,53 @@ +name: "Pro white" +source: + marketplace_id: "xynny.prowhite-theme" + version: "0.0.1" + installs: 1580 + rating: 0 + ratings: 0 + author: "xynny" + repo: "https://github.com/xynnylol/vsthemes" + url: "https://marketplace.visualstudio.com/items?itemName=xynny.prowhite-theme" + formats: null +colors: + bg: "#F9F9F9" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 102.5 + black: 102.5 + red: 70.4 + green: 45.6 + yellow: 54.3 + blue: 82.5 + magenta: 71 + cyan: 57 + white: 82.3 + brightBlack: 75.2 + brightRed: 70.4 + brightGreen: 37.3 + brightYellow: 37.4 + brightBlue: 82.5 + brightMagenta: 71 + brightCyan: 57 + brightWhite: 44.9 diff --git a/themes/proper-purple-theme.yaml b/themes/proper-purple-theme.yaml new file mode 100644 index 00000000..d70bc336 --- /dev/null +++ b/themes/proper-purple-theme.yaml @@ -0,0 +1,53 @@ +name: "Proper Purple Theme" +source: + marketplace_id: "properup.proper-purple-theme" + version: "0.2.5" + installs: 1092 + rating: 0 + ratings: 0 + author: "properup" + repo: "https://github.com/sirpeebs/proper-purple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=properup.proper-purple-theme" + formats: null +colors: + bg: "#011330" + fg: "#FFE26C" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + pair: null + contrast: + fg: 88.9 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/pudding-theme--pudding-dark-christmas.yaml b/themes/pudding-theme--pudding-dark-christmas.yaml new file mode 100644 index 00000000..9382550e --- /dev/null +++ b/themes/pudding-theme--pudding-dark-christmas.yaml @@ -0,0 +1,54 @@ +name: "Pudding Theme (Pudding Dark · Christmas)" +source: + marketplace_id: "Bitcookies.pudding-vscode-theme" + version: "3.1.5" + installs: 1916 + rating: 5 + ratings: 2 + author: "Bitcookies" + repo: "https://github.com/bitcookies/pudding-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" + formats: + sublime: "https://raw.githubusercontent.com/bitcookies/pudding-vscode-theme/main/themes/tmTheme/dark-bluedawn.tmTheme" +colors: + bg: "#09100A" + fg: "#A3C1E8" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D0D2DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: 149 + pair: null + contrast: + fg: 67.4 + black: 19.8 + red: 37.6 + green: 62.9 + yellow: 93.4 + blue: 39.6 + magenta: 52 + cyan: 61.5 + white: 79 + brightBlack: 48.4 + brightRed: 50.4 + brightGreen: 79.7 + brightYellow: 93.4 + brightBlue: 61.5 + brightMagenta: 52 + brightCyan: 70.1 + brightWhite: 104.8 diff --git a/themes/pudding-theme--pudding-dark.yaml b/themes/pudding-theme--pudding-dark.yaml new file mode 100644 index 00000000..a587f274 --- /dev/null +++ b/themes/pudding-theme--pudding-dark.yaml @@ -0,0 +1,54 @@ +name: "Pudding Theme (Pudding Dark)" +source: + marketplace_id: "Bitcookies.pudding-vscode-theme" + version: "3.1.5" + installs: 1916 + rating: 5 + ratings: 2 + author: "Bitcookies" + repo: "https://github.com/bitcookies/pudding-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" + formats: + sublime: "https://raw.githubusercontent.com/bitcookies/pudding-vscode-theme/main/themes/tmTheme/dark-bluedawn.tmTheme" +colors: + bg: "#1B1C2B" + fg: "#A3C1E8" + black: "#586069" + red: "#EA4A5A" + green: "#34D058" + yellow: "#FFEA7F" + blue: "#2188FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#D0D2DA" + brightBlack: "#959DA5" + brightRed: "#F97583" + brightGreen: "#85E89D" + brightYellow: "#FFEA7F" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#56D4DD" + brightWhite: "#FAFBFC" +meta: + mode: "dark" + accent: "green" + hue: 281 + pair: null + contrast: + fg: 66 + black: 18.4 + red: 36.2 + green: 61.5 + yellow: 92 + blue: 38.2 + magenta: 50.6 + cyan: 60.1 + white: 77.6 + brightBlack: 47 + brightRed: 49 + brightGreen: 78.3 + brightYellow: 92 + brightBlue: 60.1 + brightMagenta: 50.6 + brightCyan: 68.7 + brightWhite: 103.4 diff --git a/themes/pudding-theme--pudding-light-jk.yaml b/themes/pudding-theme--pudding-light-jk.yaml new file mode 100644 index 00000000..29118fa9 --- /dev/null +++ b/themes/pudding-theme--pudding-light-jk.yaml @@ -0,0 +1,54 @@ +name: "Pudding Theme (Pudding Light · JK)" +source: + marketplace_id: "Bitcookies.pudding-vscode-theme" + version: "3.1.5" + installs: 1916 + rating: 5 + ratings: 2 + author: "Bitcookies" + repo: "https://github.com/bitcookies/pudding-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" + formats: + sublime: "https://raw.githubusercontent.com/bitcookies/pudding-vscode-theme/main/themes/tmTheme/dark-bluedawn.tmTheme" +colors: + bg: "#EEF3F7" + fg: "#6C84B0" + black: "#24292E" + red: "#D73A49" + green: "#28A745" + yellow: "#DBAB09" + blue: "#0366D6" + magenta: "#5A32A3" + cyan: "#1B7C83" + white: "#6A737D" + brightBlack: "#959DA5" + brightRed: "#CB2431" + brightGreen: "#22863A" + brightYellow: "#B08800" + brightBlue: "#005CC5" + brightMagenta: "#5A32A3" + brightCyan: "#3192AA" + brightWhite: "#D1D5DA" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 57.6 + black: 93.9 + red: 62.8 + green: 50.3 + yellow: 34 + blue: 68.6 + magenta: 81.6 + cyan: 66.2 + white: 65.8 + brightBlack: 45.5 + brightRed: 67.9 + brightGreen: 64.1 + brightYellow: 52.5 + brightBlue: 72.9 + brightMagenta: 81.6 + brightCyan: 55.7 + brightWhite: 14.9 diff --git a/themes/pudding-theme--pudding-light.yaml b/themes/pudding-theme--pudding-light.yaml new file mode 100644 index 00000000..bad4b4e7 --- /dev/null +++ b/themes/pudding-theme--pudding-light.yaml @@ -0,0 +1,54 @@ +name: "Pudding Theme (Pudding Light)" +source: + marketplace_id: "Bitcookies.pudding-vscode-theme" + version: "3.1.5" + installs: 1916 + rating: 5 + ratings: 2 + author: "Bitcookies" + repo: "https://github.com/bitcookies/pudding-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" + formats: + sublime: "https://raw.githubusercontent.com/bitcookies/pudding-vscode-theme/main/themes/tmTheme/dark-bluedawn.tmTheme" +colors: + bg: "#F9ECDD" + fg: "#A88809" + black: "#24292E" + red: "#D73A49" + green: "#28A745" + yellow: "#DBAB09" + blue: "#0366D6" + magenta: "#5A32A3" + cyan: "#1B7C83" + white: "#6A737D" + brightBlack: "#959DA5" + brightRed: "#CB2431" + brightGreen: "#22863A" + brightYellow: "#B08800" + brightBlue: "#005CC5" + brightMagenta: "#5A32A3" + brightCyan: "#3192AA" + brightWhite: "#803618" +meta: + mode: "light" + accent: "orange" + hue: 71 + pair: null + contrast: + fg: 51 + black: 91.3 + red: 60.2 + green: 47.7 + yellow: 31.4 + blue: 66 + magenta: 79 + cyan: 63.6 + white: 63.2 + brightBlack: 42.9 + brightRed: 65.3 + brightGreen: 61.5 + brightYellow: 49.9 + brightBlue: 70.3 + brightMagenta: 79 + brightCyan: 53.1 + brightWhite: 78.6 diff --git a/themes/pudding-theme-pudding-dark-caramel-beta.yaml b/themes/pudding-theme-pudding-dark-caramel-beta.yaml new file mode 100644 index 00000000..166bdefd --- /dev/null +++ b/themes/pudding-theme-pudding-dark-caramel-beta.yaml @@ -0,0 +1,54 @@ +name: "Pudding Theme (Pudding Dark · Caramel (Beta))" +source: + marketplace_id: "Bitcookies.pudding-vscode-theme" + version: "3.1.5" + installs: 1916 + rating: 5 + ratings: 2 + author: "Bitcookies" + repo: "https://github.com/bitcookies/pudding-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Bitcookies.pudding-vscode-theme" + formats: + sublime: "https://raw.githubusercontent.com/bitcookies/pudding-vscode-theme/main/themes/tmTheme/dark-bluedawn.tmTheme" +colors: + bg: "#1B1C2B" + fg: "#D0D2DA" + black: "#151621" + red: "#F97583" + green: "#A8D4A9" + yellow: "#F9CB7E" + blue: "#79B8FF" + magenta: "#B392F0" + cyan: "#39C5CF" + white: "#E1E4E8" + brightBlack: "#151621" + brightRed: "#F97583" + brightGreen: "#A8D4A9" + brightYellow: "#F9CB7E" + brightBlue: "#79B8FF" + brightMagenta: "#B392F0" + brightCyan: "#39C5CF" + brightWhite: "#E1E4E8" +meta: + mode: "dark" + accent: "orange" + hue: 281 + pair: null + contrast: + fg: 77.6 + black: 0 + red: 49 + green: 72.1 + yellow: 77.6 + blue: 60.1 + magenta: 50.6 + cyan: 60.1 + white: 88.4 + brightBlack: 0 + brightRed: 49 + brightGreen: 72.1 + brightYellow: 77.6 + brightBlue: 60.1 + brightMagenta: 50.6 + brightCyan: 60.1 + brightWhite: 88.4 diff --git a/themes/pulse-studio-theme--pulse-balanced-purple.yaml b/themes/pulse-studio-theme--pulse-balanced-purple.yaml new file mode 100644 index 00000000..6f82b106 --- /dev/null +++ b/themes/pulse-studio-theme--pulse-balanced-purple.yaml @@ -0,0 +1,53 @@ +name: "Pulse Studio Theme (Pulse Balanced Purple)" +source: + marketplace_id: "IrvinBenitez.Pulse-theme-vscode" + version: "1.0.2" + installs: 106 + rating: 5 + ratings: 1 + author: "Irvin Benitez" + repo: "https://github.com/PulseStudio07/VScode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" + formats: null +colors: + bg: "#1E1E2E" + fg: "#D5D5E3" + black: "#1E1E2E" + red: "#D89AAA" + green: "#A8C99A" + yellow: "#DDC8A3" + blue: "#9D9DDB" + magenta: "#C49AD8" + cyan: "#9AD8D8" + white: "#D5D5E3" + brightBlack: "#5A5A6E" + brightRed: "#E8AABA" + brightGreen: "#B8D9AA" + brightYellow: "#EDD8B3" + brightBlue: "#ADADEB" + brightMagenta: "#D4AAE8" + brightCyan: "#AAE8E8" + brightWhite: "#EBEBF5" +meta: + mode: "dark" + accent: "magenta" + hue: 284 + pair: null + contrast: + fg: 79.7 + black: 0 + red: 54.7 + green: 66.3 + yellow: 72.7 + blue: 50.2 + magenta: 53.9 + cyan: 74.2 + white: 79.7 + brightBlack: 16.7 + brightRed: 63.5 + brightGreen: 75.7 + brightYellow: 82.4 + brightBlue: 58.9 + brightMagenta: 62.7 + brightCyan: 83.8 + brightWhite: 93.3 diff --git a/themes/pulse-studio-theme--pulse-comfort-light.yaml b/themes/pulse-studio-theme--pulse-comfort-light.yaml new file mode 100644 index 00000000..4dcbe630 --- /dev/null +++ b/themes/pulse-studio-theme--pulse-comfort-light.yaml @@ -0,0 +1,53 @@ +name: "Pulse Studio Theme (Pulse Comfort Light)" +source: + marketplace_id: "IrvinBenitez.Pulse-theme-vscode" + version: "1.0.2" + installs: 106 + rating: 5 + ratings: 1 + author: "Irvin Benitez" + repo: "https://github.com/PulseStudio07/VScode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" + formats: null +colors: + bg: "#F5F2F8" + fg: "#2E2838" + black: "#3E3848" + red: "#B8576D" + green: "#5D9857" + yellow: "#C89F4D" + blue: "#5D6DBB" + magenta: "#9D57B8" + cyan: "#4D9D9D" + white: "#E5E0ED" + brightBlack: "#6A5E7E" + brightRed: "#C8677D" + brightGreen: "#6DA867" + brightYellow: "#D8AF5D" + brightBlue: "#6D7DCB" + brightMagenta: "#AD67C8" + brightCyan: "#5DADAD" + brightWhite: "#F5F0FD" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 93.8 + black: 88.9 + red: 64 + green: 54.8 + yellow: 41.2 + blue: 66.1 + magenta: 65 + cyan: 51.6 + white: 7.5 + brightBlack: 72.8 + brightRed: 57 + brightGreen: 47 + brightYellow: 32.9 + brightBlue: 58.8 + brightMagenta: 58 + brightCyan: 43.7 + brightWhite: 0 diff --git a/themes/pulse-studio-theme--pulse-soft-purple.yaml b/themes/pulse-studio-theme--pulse-soft-purple.yaml new file mode 100644 index 00000000..2faa8778 --- /dev/null +++ b/themes/pulse-studio-theme--pulse-soft-purple.yaml @@ -0,0 +1,53 @@ +name: "Pulse Studio Theme (Pulse Soft Purple)" +source: + marketplace_id: "IrvinBenitez.Pulse-theme-vscode" + version: "1.0.2" + installs: 106 + rating: 5 + ratings: 1 + author: "Irvin Benitez" + repo: "https://github.com/PulseStudio07/VScode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=IrvinBenitez.Pulse-theme-vscode" + formats: null +colors: + bg: "#2A2A35" + fg: "#D0D0DD" + black: "#2A2A35" + red: "#C9919E" + green: "#9DB899" + yellow: "#D4C49D" + blue: "#9D9DC9" + magenta: "#B899C9" + cyan: "#99C9C9" + white: "#D0D0DD" + brightBlack: "#5A5A6A" + brightRed: "#D9A1AE" + brightGreen: "#ADC8A9" + brightYellow: "#E4D4AD" + brightBlue: "#ADAED9" + brightMagenta: "#C8A9D9" + brightCyan: "#A9D9D9" + brightWhite: "#E5E5F0" +meta: + mode: "dark" + accent: "magenta" + hue: 285 + pair: null + contrast: + fg: 74.6 + black: 0 + red: 46.9 + green: 55.9 + yellow: 67.6 + blue: 47.2 + magenta: 49.1 + cyan: 64.7 + white: 74.6 + brightBlack: 14.6 + brightRed: 55.5 + brightGreen: 64.9 + brightYellow: 77.2 + brightBlue: 56.3 + brightMagenta: 57.8 + brightCyan: 74.1 + brightWhite: 87.5 diff --git a/themes/pumpkin-color-theme.yaml b/themes/pumpkin-color-theme.yaml new file mode 100644 index 00000000..3eed89d7 --- /dev/null +++ b/themes/pumpkin-color-theme.yaml @@ -0,0 +1,53 @@ +name: "pumpkin-color-theme" +source: + marketplace_id: "IvanPerez9.pumpkin-color-theme" + version: "0.3.0" + installs: 696 + rating: 5 + ratings: 1 + author: "IvanPerez9" + repo: "https://github.com/IvanPerez9/pumpkin-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=IvanPerez9.pumpkin-color-theme" + formats: null +colors: + bg: "#171616" + fg: "#A7B5E0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#0969FF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 61.9 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 29.2 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/punk-runner.yaml b/themes/punk-runner.yaml new file mode 100644 index 00000000..005badaa --- /dev/null +++ b/themes/punk-runner.yaml @@ -0,0 +1,53 @@ +name: "punk-runner" +source: + marketplace_id: "TheEdgesofBen.punk-runner" + version: "0.0.5" + installs: 8806 + rating: 5 + ratings: 1 + author: "TheEdgesofBen" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=TheEdgesofBen.punk-runner" + formats: null +colors: + bg: "#050F0E" + fg: "#F2E6E9" + black: "#0F0F0F" + red: "#E6274D" + green: "#91E673" + yellow: "#E62E7A" + blue: "#83E6B4" + magenta: "#E66C84" + cyan: "#27E6B0" + white: "#CED9D3" + brightBlack: "#171717" + brightRed: "#FF1342" + brightGreen: "#8FFF66" + brightYellow: "#FF1979" + brightBlue: "#78FFBB" + brightMagenta: "#FF456A" + brightCyan: "#12FFBC" + brightWhite: "#F2E6E9" +meta: + mode: "dark" + accent: "red" + hue: 188 + pair: null + contrast: + fg: 93.2 + black: 0 + red: 32.7 + green: 78.7 + yellow: 34.3 + blue: 79.4 + magenta: 44.4 + cyan: 75.8 + white: 81.6 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 91 + brightYellow: 39.1 + brightBlue: 91.6 + brightMagenta: 42.1 + brightCyan: 89 + brightWhite: 93.2 diff --git a/themes/purgle-dark-purple-rmsyntax.yaml b/themes/purgle-dark-purple-rmsyntax.yaml new file mode 100644 index 00000000..988d1f53 --- /dev/null +++ b/themes/purgle-dark-purple-rmsyntax.yaml @@ -0,0 +1,53 @@ +name: "Purgle Dark (Purple)" +source: + marketplace_id: "rmsyntax.rmsyntax-purgle-dark" + version: "0.0.6" + installs: 45 + rating: 0 + ratings: 0 + author: "rmsyntax" + repo: "https://github.com/ROMANSYNTAX32/Purgle-Dark" + url: "https://marketplace.visualstudio.com/items?itemName=rmsyntax.rmsyntax-purgle-dark" + formats: null +colors: + bg: "#3B202F" + fg: "#8FA1B5" + black: "#170E13" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#4775FF" + magenta: "#BC3FBC" + cyan: "#57EFFF" + white: "#DBDBDB" + brightBlack: "#2C1F26" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#B1F0FF" + brightWhite: "#D1A5BE" +meta: + mode: "dark" + accent: "pink" + hue: 346 + pair: null + contrast: + fg: 46.7 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 31.2 + magenta: 27.1 + cyan: 81.6 + white: 81.1 + brightBlack: 0 + brightRed: 35.9 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.7 + brightCyan: 87.9 + brightWhite: 56.7 diff --git a/themes/purple-and-black.yaml b/themes/purple-and-black.yaml new file mode 100644 index 00000000..180d1351 --- /dev/null +++ b/themes/purple-and-black.yaml @@ -0,0 +1,53 @@ +name: "Purple And Black" +source: + marketplace_id: "Pab-Theme.purpleandblack" + version: "0.0.2" + installs: 989 + rating: 0 + ratings: 0 + author: "Pab-Theme" + repo: "https://github.com/DweOfisial/Theme-Visual-PaB" + url: "https://marketplace.visualstudio.com/items?itemName=Pab-Theme.purpleandblack" + formats: null +colors: + bg: "#1D1D1D" + fg: "#9B9B9B" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 46.5 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 106.2 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/purple-dark-theme-lf.yaml b/themes/purple-dark-theme-lf.yaml new file mode 100644 index 00000000..abf93127 --- /dev/null +++ b/themes/purple-dark-theme-lf.yaml @@ -0,0 +1,53 @@ +name: "Purple Dark Theme - LF" +source: + marketplace_id: "vertopolkalf.purple-dark-theme-lf" + version: "1.1.3" + installs: 222 + rating: 5 + ratings: 1 + author: "vertopolkaLF" + repo: "https://github.com/vertopolkalf/purple-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vertopolkalf.purple-dark-theme-lf" + formats: null +colors: + bg: "#1D1427" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 305 + pair: null + contrast: + fg: 79.3 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/purple-haze-theme.yaml b/themes/purple-haze-theme.yaml new file mode 100644 index 00000000..f7d12597 --- /dev/null +++ b/themes/purple-haze-theme.yaml @@ -0,0 +1,53 @@ +name: "Purple Haze Theme" +source: + marketplace_id: "Felip3.purple-haze-theme" + version: "1.0.5" + installs: 2043 + rating: 0 + ratings: 0 + author: "Felipe Menezes" + repo: "https://github.com/fmm312/purple-haze" + url: "https://marketplace.visualstudio.com/items?itemName=Felip3.purple-haze-theme" + formats: null +colors: + bg: "#2B1F31" + fg: "#F2F2F2" + black: "#151515" + red: "#BC5653" + green: "#909D63" + yellow: "#EBC17A" + blue: "#6A8799" + magenta: "#B06698" + cyan: "#C9DFFF" + white: "#D9D9D9" + brightBlack: "#636363" + brightRed: "#BC5653" + brightGreen: "#F07178" + brightYellow: "#EBC17A" + brightBlue: "#C3E88D" + brightMagenta: "#B48EAD" + brightCyan: "#ACBBD0" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 314 + pair: null + contrast: + fg: 96.7 + black: 0 + red: 27.8 + green: 43.5 + yellow: 70.2 + blue: 33.5 + magenta: 31.6 + cyan: 83.4 + white: 80.9 + brightBlack: 19.1 + brightRed: 27.8 + brightGreen: 44.9 + brightYellow: 70.2 + brightBlue: 82.5 + brightMagenta: 44.8 + brightCyan: 62.3 + brightWhite: 99.9 diff --git a/themes/purple-royal-theme.yaml b/themes/purple-royal-theme.yaml new file mode 100644 index 00000000..7cd63ddf --- /dev/null +++ b/themes/purple-royal-theme.yaml @@ -0,0 +1,53 @@ +name: "Purple Royal Theme" +source: + marketplace_id: "DarkMannn.purple-royal-theme" + version: "0.0.5" + installs: 818 + rating: 0 + ratings: 0 + author: "DarkMannn" + repo: "https://github.com/DarkMannn/purple-royal-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=DarkMannn.purple-royal-theme" + formats: null +colors: + bg: "#191919" + fg: "#DBDBDB" + black: "#000000" + red: "#CD6161" + green: "#2BB681" + yellow: "#E2E298" + blue: "#3B7AC0" + magenta: "#7851A9" + cyan: "#2EACCB" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF8181" + brightGreen: "#4FE4A8" + brightYellow: "#F7F780" + brightBlue: "#50A3FF" + brightMagenta: "#AE87E0" + brightCyan: "#42CCEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 83.6 + black: 0 + red: 35.1 + green: 50.6 + yellow: 85.3 + blue: 29.9 + magenta: 21.2 + cyan: 49.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 53.8 + brightGreen: 74.5 + brightYellow: 97.5 + brightBlue: 50 + brightMagenta: 45.9 + brightCyan: 65.7 + brightWhite: 106.7 diff --git a/themes/purple-stark-theme--stark-light.yaml b/themes/purple-stark-theme--stark-light.yaml new file mode 100644 index 00000000..4e1d3080 --- /dev/null +++ b/themes/purple-stark-theme--stark-light.yaml @@ -0,0 +1,53 @@ +name: "Purple Stark Theme (Stark Light)" +source: + marketplace_id: "MTCC.stark-theme" + version: "1.0.2" + installs: 64 + rating: 5 + ratings: 2 + author: "MTCC" + repo: "https://github.com/minhtrungcc/stark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MTCC.stark-theme" + formats: null +colors: + bg: "#FDFCFA" + fg: "#3D3A36" + black: "#3D3A36" + red: "#C75A4D" + green: "#5A9A52" + yellow: "#B8943A" + blue: "#5A7CC7" + magenta: "#9B6BB8" + cyan: "#4A9A9A" + white: "#FDFCFA" + brightBlack: "#6B6660" + brightRed: "#E8A59C" + brightGreen: "#A8D4A2" + brightYellow: "#E5CF8A" + brightBlue: "#A5BBE8" + brightMagenta: "#D4B8E8" + brightCyan: "#98D4D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.4 + black: 94.4 + red: 66.6 + green: 59.6 + yellow: 52.9 + blue: 66.1 + magenta: 65.8 + cyan: 58.3 + white: 0 + brightBlack: 76.7 + brightRed: 37.8 + brightGreen: 27.5 + brightYellow: 23.2 + brightBlue: 35.2 + brightMagenta: 30.9 + brightCyan: 27.1 + brightWhite: 0 diff --git a/themes/purple-wave.yaml b/themes/purple-wave.yaml new file mode 100644 index 00000000..258a7cde --- /dev/null +++ b/themes/purple-wave.yaml @@ -0,0 +1,53 @@ +name: "Purple Wave" +source: + marketplace_id: "jker.purple-wave" + version: "1.0.1" + installs: 8193 + rating: 0 + ratings: 0 + author: "jker" + repo: "https://github.com/guidolee/jker-purple-wave" + url: "https://marketplace.visualstudio.com/items?itemName=jker.purple-wave" + formats: null +colors: + bg: "#1F1929" + fg: "#D4D4D4" + black: "#7F7F7F" + red: "#E15A60" + green: "#99C794" + yellow: "#FFE2A9" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#7F7F7F" + brightRed: "#E15A60" + brightGreen: "#99C794" + brightYellow: "#FFE2A9" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 301 + pair: null + contrast: + fg: 78.9 + black: 32.7 + red: 37.3 + green: 64.3 + yellow: 89.6 + blue: 43.6 + magenta: 51.5 + cyan: 52.5 + white: 78.9 + brightBlack: 32.7 + brightRed: 37.3 + brightGreen: 64.3 + brightYellow: 89.6 + brightBlue: 43.6 + brightMagenta: 51.5 + brightCyan: 52.5 + brightWhite: 78.9 diff --git a/themes/purpleish.yaml b/themes/purpleish.yaml new file mode 100644 index 00000000..257bdefa --- /dev/null +++ b/themes/purpleish.yaml @@ -0,0 +1,53 @@ +name: "purpleish" +source: + marketplace_id: "Maneki404.purpleish" + version: "0.4.0" + installs: 109 + rating: 0 + ratings: 0 + author: "Maneki404" + repo: "https://github.com/Maneki404/purplishTheme" + url: "https://marketplace.visualstudio.com/items?itemName=Maneki404.purpleish" + formats: null +colors: + bg: "#190030" + fg: "#ABB2BF" + black: "#6F6D6D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#929292" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 303 + pair: null + contrast: + fg: 59.7 + black: 25.6 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30.1 + cyan: 47.9 + white: 107.2 + brightBlack: 42.9 + brightRed: 38.9 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 107.2 diff --git a/themes/purplespace--bluesea.yaml b/themes/purplespace--bluesea.yaml new file mode 100644 index 00000000..8fdd7024 --- /dev/null +++ b/themes/purplespace--bluesea.yaml @@ -0,0 +1,53 @@ +name: "PurpleSpace (BlueSea)" +source: + marketplace_id: "YesCode.purplespace" + version: "0.0.7" + installs: 4013 + rating: 5 + ratings: 1 + author: "YesCode" + repo: "https://github.com/yesomac/purplespace" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.purplespace" + formats: null +colors: + bg: "#5F0A24" + fg: "#F7EEFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#F9F8FA" + brightYellow: "#C4A2EB" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 10 + pair: null + contrast: + fg: 93 + black: 0 + red: 37.2 + green: 56.2 + yellow: 68.3 + blue: 42.7 + magenta: 14.7 + cyan: 44.6 + white: 42.4 + brightBlack: 13.8 + brightRed: 37.2 + brightGreen: 97.7 + brightYellow: 54 + brightBlue: 13.9 + brightMagenta: 14.7 + brightCyan: 44.6 + brightWhite: 94.1 diff --git a/themes/purplespace--onlydark.yaml b/themes/purplespace--onlydark.yaml new file mode 100644 index 00000000..96bbcf1e --- /dev/null +++ b/themes/purplespace--onlydark.yaml @@ -0,0 +1,53 @@ +name: "PurpleSpace (OnlyDark)" +source: + marketplace_id: "YesCode.purplespace" + version: "0.0.7" + installs: 4013 + rating: 5 + ratings: 1 + author: "YesCode" + repo: "https://github.com/yesomac/purplespace" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.purplespace" + formats: null +colors: + bg: "#17080F" + fg: "#FFEEF4" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#FA8DBA" + brightYellow: "#F17ABC" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 351 + pair: null + contrast: + fg: 99.2 + black: 0 + red: 42.7 + green: 61.7 + yellow: 73.8 + blue: 48.2 + magenta: 20.2 + cyan: 50.1 + white: 47.9 + brightBlack: 19.3 + brightRed: 42.7 + brightGreen: 59.1 + brightYellow: 52.2 + brightBlue: 19.4 + brightMagenta: 20.2 + brightCyan: 50.1 + brightWhite: 99.6 diff --git a/themes/purplespace--purplespace.yaml b/themes/purplespace--purplespace.yaml new file mode 100644 index 00000000..86f81f95 --- /dev/null +++ b/themes/purplespace--purplespace.yaml @@ -0,0 +1,53 @@ +name: "PurpleSpace (PurpleSpace)" +source: + marketplace_id: "YesCode.purplespace" + version: "0.0.7" + installs: 4013 + rating: 5 + ratings: 1 + author: "YesCode" + repo: "https://github.com/yesomac/purplespace" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.purplespace" + formats: null +colors: + bg: "#FFE7FF" + fg: "#200120" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#0687FF" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.2 + black: 93.4 + red: 48.8 + green: 30.3 + yellow: 18.8 + blue: 43.3 + magenta: 71.4 + cyan: 41.5 + white: 43.6 + brightBlack: 72.3 + brightRed: 48.8 + brightGreen: 52.3 + brightYellow: 12.5 + brightBlue: 72.2 + brightMagenta: 71.4 + brightCyan: 41.5 + brightWhite: 0 diff --git a/themes/purplespace--sober.yaml b/themes/purplespace--sober.yaml new file mode 100644 index 00000000..2987fcab --- /dev/null +++ b/themes/purplespace--sober.yaml @@ -0,0 +1,53 @@ +name: "PurpleSpace (Sober)" +source: + marketplace_id: "YesCode.purplespace" + version: "0.0.7" + installs: 4013 + rating: 5 + ratings: 1 + author: "YesCode" + repo: "https://github.com/yesomac/purplespace" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.purplespace" + formats: null +colors: + bg: "#3B0313" + fg: "#CDCDCD" + black: "#1D211D" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00F95F" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#6A59AF" + brightYellow: "#DFE6E9" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "green" + hue: 10 + pair: null + contrast: + fg: 74.3 + black: 0 + red: 41 + green: 60 + yellow: 72 + blue: 81.8 + magenta: 18.5 + cyan: 48.4 + white: 46.2 + brightBlack: 17.6 + brightRed: 41 + brightGreen: 21.2 + brightYellow: 88.9 + brightBlue: 17.7 + brightMagenta: 18.5 + brightCyan: 48.4 + brightWhite: 97.8 diff --git a/themes/purplevibes.yaml b/themes/purplevibes.yaml new file mode 100644 index 00000000..69693eb9 --- /dev/null +++ b/themes/purplevibes.yaml @@ -0,0 +1,53 @@ +name: "PurpleVibes" +source: + marketplace_id: "littlesilver33.PurpleVibes" + version: "1.76.1" + installs: 238 + rating: 0 + ratings: 0 + author: "littlesilver33" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=littlesilver33.PurpleVibes" + formats: null +colors: + bg: "#140A17" + fg: "#ADADAD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 318 + pair: null + contrast: + fg: 57.5 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/purply-theme-purply-dark.yaml b/themes/purply-theme-purply-dark.yaml new file mode 100644 index 00000000..efc9d30a --- /dev/null +++ b/themes/purply-theme-purply-dark.yaml @@ -0,0 +1,53 @@ +name: "Purply Theme (Purply (Dark))" +source: + marketplace_id: "jeremy-gower.purply-theme" + version: "2.0.5" + installs: 3051 + rating: 5 + ratings: 2 + author: "Jeremy Gower" + repo: "https://github.com/jdgower/purply-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jeremy-gower.purply-theme" + formats: null +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#282C34" + red: "#FF6B8A" + green: "#22C55E" + yellow: "#FFB347" + blue: "#7DD3FC" + magenta: "#C4A7E7" + cyan: "#06B6D4" + white: "#ABB2BF" + brightBlack: "#6B5B73" + brightRed: "#FF8FA3" + brightGreen: "#4ADE80" + brightYellow: "#FCD34D" + brightBlue: "#93C5FD" + brightMagenta: "#DDD6FE" + brightCyan: "#67E8F9" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 45.7 + green: 53.6 + yellow: 65.8 + blue: 69.5 + magenta: 57.1 + cyan: 50.7 + white: 56.2 + brightBlack: 16.6 + brightRed: 55.8 + brightGreen: 67.3 + brightYellow: 78.2 + brightBlue: 65 + brightMagenta: 80.4 + brightCyan: 78 + brightWhite: 100.2 diff --git a/themes/purply-theme-purply-light.yaml b/themes/purply-theme-purply-light.yaml new file mode 100644 index 00000000..a1ae81f2 --- /dev/null +++ b/themes/purply-theme-purply-light.yaml @@ -0,0 +1,53 @@ +name: "Purply Theme (Purply (Light))" +source: + marketplace_id: "jeremy-gower.purply-theme" + version: "2.0.5" + installs: 3051 + rating: 5 + ratings: 2 + author: "Jeremy Gower" + repo: "https://github.com/jdgower/purply-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jeremy-gower.purply-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#1F2937" + red: "#DC2626" + green: "#059669" + yellow: "#D97706" + blue: "#0284C7" + magenta: "#7C3AED" + cyan: "#0891B2" + white: "#F3F4F6" + brightBlack: "#6B7280" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#8B5CF6" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 98.7 + black: 101.5 + red: 71.6 + green: 64.6 + yellow: 58.5 + blue: 67.5 + magenta: 77.5 + cyan: 63.8 + white: 0 + brightBlack: 73.6 + brightRed: 63.8 + brightGreen: 49.1 + brightYellow: 41.8 + brightBlue: 63.9 + brightMagenta: 68.7 + brightCyan: 47.1 + brightWhite: 0 diff --git a/themes/purrfect-marshmallow-theme--purrfect-marshmallow-lavender-night.yaml b/themes/purrfect-marshmallow-theme--purrfect-marshmallow-lavender-night.yaml new file mode 100644 index 00000000..4819fcb2 --- /dev/null +++ b/themes/purrfect-marshmallow-theme--purrfect-marshmallow-lavender-night.yaml @@ -0,0 +1,53 @@ +name: "Purrfect Marshmallow Theme (Purrfect Marshmallow - Lavender Night)" +source: + marketplace_id: "diananyamai.purrfect-marshmallow-theme" + version: "0.0.3" + installs: 314 + rating: 5 + ratings: 5 + author: "diana nyamai" + repo: "https://github.com/Diana-nyamai/purrfect-marshmallow-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diananyamai.purrfect-marshmallow-theme" + formats: null +colors: + bg: "#2A2638" + fg: "#EFE8FF" + black: "#2A2638" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#EFE8FF" + brightBlack: "#6D5B8E" + brightRed: "#FF6B8A" + brightGreen: "#D5F5A8" + brightYellow: "#FFD88E" + brightBlue: "#9FC5FF" + brightMagenta: "#D8A9F5" + brightCyan: "#A8F0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 294 + pair: null + contrast: + fg: 91.5 + black: 0 + red: 41.1 + green: 81.6 + yellow: 76.4 + blue: 53.4 + magenta: 51.2 + cyan: 75.7 + white: 91.5 + brightBlack: 18.6 + brightRed: 46.4 + brightGreen: 90.7 + brightYellow: 82.6 + brightBlue: 66.8 + brightMagenta: 62.2 + brightCyan: 87.2 + brightWhite: 104.3 diff --git a/themes/purrfect-marshmallow-theme--purrfect-marshmallow-pastel-pink.yaml b/themes/purrfect-marshmallow-theme--purrfect-marshmallow-pastel-pink.yaml new file mode 100644 index 00000000..1ca6587d --- /dev/null +++ b/themes/purrfect-marshmallow-theme--purrfect-marshmallow-pastel-pink.yaml @@ -0,0 +1,53 @@ +name: "Purrfect Marshmallow Theme (Purrfect Marshmallow - Pastel pink)" +source: + marketplace_id: "diananyamai.purrfect-marshmallow-theme" + version: "0.0.3" + installs: 314 + rating: 5 + ratings: 5 + author: "diana nyamai" + repo: "https://github.com/Diana-nyamai/purrfect-marshmallow-theme" + url: "https://marketplace.visualstudio.com/items?itemName=diananyamai.purrfect-marshmallow-theme" + formats: null +colors: + bg: "#F7EBF2" + fg: "#5C5470" + black: "#5C5470" + red: "#FF5370" + green: "#82C99E" + yellow: "#FFB366" + blue: "#6BA5E7" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#EFE8FF" + brightBlack: "#8A7F9D" + brightRed: "#FF6B8A" + brightGreen: "#A0E6B8" + brightYellow: "#FFCC88" + brightBlue: "#8FC2FF" + brightMagenta: "#DDA9F5" + brightCyan: "#A8F0FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 74.6 + black: 74.6 + red: 47.1 + green: 27.2 + yellow: 22.2 + blue: 40.2 + magenta: 37.2 + cyan: 13.9 + white: 0 + brightBlack: 55 + brightRed: 41.9 + brightGreen: 11.3 + brightYellow: 12.3 + brightBlue: 24.8 + brightMagenta: 26 + brightCyan: 0 + brightWhite: 8.8 diff --git a/themes/pushkin-is-white-theme.yaml b/themes/pushkin-is-white-theme.yaml new file mode 100644 index 00000000..e8bcc588 --- /dev/null +++ b/themes/pushkin-is-white-theme.yaml @@ -0,0 +1,53 @@ +name: "Pushkin is White Theme" +source: + marketplace_id: "ispushkin.pushkin-is-white-theme" + version: "0.0.7" + installs: 12367 + rating: 5 + ratings: 4 + author: "IS. Pushkin" + repo: "https://github.com/llatigid/Pushkin-is-White-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ispushkin.pushkin-is-white-theme" + formats: null +colors: + bg: "#F4F4F4" + fg: "#000000" + black: "#262626" + red: "#D70000" + green: "#5F8700" + yellow: "#AF8700" + blue: "#0087FF" + magenta: "#AF005F" + cyan: "#00AFAF" + white: "#808080" + brightBlack: "#1C1C1C" + brightRed: "#D75F00" + brightGreen: "#585858" + brightYellow: "#626262" + brightBlue: "#808080" + brightMagenta: "#5F5FAF" + brightCyan: "#808080" + brightWhite: "#808080" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.5 + black: 95.5 + red: 67.4 + green: 62.5 + yellow: 54 + blue: 55.7 + magenta: 75.3 + cyan: 45.3 + white: 60.3 + brightBlack: 97.4 + brightRed: 58.1 + brightGreen: 78.1 + brightYellow: 73.9 + brightBlue: 60.3 + brightMagenta: 71.3 + brightCyan: 60.3 + brightWhite: 60.3 diff --git a/themes/qerz-v1.yaml b/themes/qerz-v1.yaml new file mode 100644 index 00000000..ad58a44b --- /dev/null +++ b/themes/qerz-v1.yaml @@ -0,0 +1,53 @@ +name: "qerz-v1" +source: + marketplace_id: "GabrielQueir0z.qerz-v1" + version: "0.0.0" + installs: 30 + rating: 0 + ratings: 0 + author: "GabrielQueir0z" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GabrielQueir0z.qerz-v1" + formats: null +colors: + bg: "#0F0F0F" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.5 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 107.5 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 107.5 diff --git a/themes/qii-theme--qii-theme-dark-shallow.yaml b/themes/qii-theme--qii-theme-dark-shallow.yaml new file mode 100644 index 00000000..e2964b4c --- /dev/null +++ b/themes/qii-theme--qii-theme-dark-shallow.yaml @@ -0,0 +1,53 @@ +name: "Qii Theme (Qii Theme Dark Shallow)" +source: + marketplace_id: "qiqi29.qii-theme" + version: "1.6.4" + installs: 3885 + rating: 5 + ratings: 2 + author: "qiqi29" + repo: "https://github.com/Qiqi29/qii-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" + formats: null +colors: + bg: "#1E2227" + fg: "#CACBD4" + black: "#2D3139" + red: "#E68096" + green: "#A7E28B" + yellow: "#E2B77E" + blue: "#82B8FA" + magenta: "#C589E0" + cyan: "#75CAD3" + white: "#CACBD4" + brightBlack: "#7F848E" + brightRed: "#E68096" + brightGreen: "#A7E28B" + brightYellow: "#E2B77E" + brightBlue: "#82B8FA" + brightMagenta: "#C589E0" + brightCyan: "#75CAD3" + brightWhite: "#CACBD4" +meta: + mode: "dark" + accent: "magenta" + hue: 254 + pair: null + contrast: + fg: 73 + black: 0 + red: 48.1 + green: 77 + yellow: 65.2 + blue: 59.8 + magenta: 48.7 + cyan: 64.5 + white: 73 + brightBlack: 34.2 + brightRed: 48.1 + brightGreen: 77 + brightYellow: 65.2 + brightBlue: 59.8 + brightMagenta: 48.7 + brightCyan: 64.5 + brightWhite: 73 diff --git a/themes/qii-theme--qii-theme-dark.yaml b/themes/qii-theme--qii-theme-dark.yaml new file mode 100644 index 00000000..00dab854 --- /dev/null +++ b/themes/qii-theme--qii-theme-dark.yaml @@ -0,0 +1,53 @@ +name: "Qii Theme (Qii Theme Dark)" +source: + marketplace_id: "qiqi29.qii-theme" + version: "1.6.4" + installs: 3885 + rating: 5 + ratings: 2 + author: "qiqi29" + repo: "https://github.com/Qiqi29/qii-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" + formats: null +colors: + bg: "#18191B" + fg: "#CACBD4" + black: "#2D3139" + red: "#E68096" + green: "#A7E28B" + yellow: "#E2B77E" + blue: "#82B8FA" + magenta: "#C589E0" + cyan: "#75CAD3" + white: "#CACBD4" + brightBlack: "#7F848E" + brightRed: "#E68096" + brightGreen: "#A7E28B" + brightYellow: "#E2B77E" + brightBlue: "#82B8FA" + brightMagenta: "#C589E0" + brightCyan: "#75CAD3" + brightWhite: "#CACBD4" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 74.1 + black: 0 + red: 49.2 + green: 78.2 + yellow: 66.4 + blue: 61 + magenta: 49.8 + cyan: 65.7 + white: 74.1 + brightBlack: 35.3 + brightRed: 49.2 + brightGreen: 78.2 + brightYellow: 66.4 + brightBlue: 61 + brightMagenta: 49.8 + brightCyan: 65.7 + brightWhite: 74.1 diff --git a/themes/qii-theme--qii-theme-light.yaml b/themes/qii-theme--qii-theme-light.yaml new file mode 100644 index 00000000..1066ae71 --- /dev/null +++ b/themes/qii-theme--qii-theme-light.yaml @@ -0,0 +1,53 @@ +name: "Qii Theme (Qii Theme Light)" +source: + marketplace_id: "qiqi29.qii-theme" + version: "1.6.4" + installs: 3885 + rating: 5 + ratings: 2 + author: "qiqi29" + repo: "https://github.com/Qiqi29/qii-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=qiqi29.qii-theme" + formats: null +colors: + bg: "#FAFAFA" + fg: "#5D5F62" + black: "#2D3139" + red: "#E1496A" + green: "#4CA438" + yellow: "#FF9900" + blue: "#2F86F0" + magenta: "#C82FBB" + cyan: "#0DA6A6" + white: "#5D5F62" + brightBlack: "#7F848E" + brightRed: "#E1496A" + brightGreen: "#4CA438" + brightYellow: "#FF9900" + brightBlue: "#2F86F0" + brightMagenta: "#C82FBB" + brightCyan: "#0DA6A6" + brightWhite: "#5D5F62" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.9 + black: 96.3 + red: 62.5 + green: 55.2 + yellow: 38.5 + blue: 60.4 + magenta: 67.4 + cyan: 53 + white: 78.9 + brightBlack: 62.1 + brightRed: 62.5 + brightGreen: 55.2 + brightYellow: 38.5 + brightBlue: 60.4 + brightMagenta: 67.4 + brightCyan: 53 + brightWhite: 78.9 diff --git a/themes/quantum-material-theme--quantum-material-theme-dark.yaml b/themes/quantum-material-theme--quantum-material-theme-dark.yaml new file mode 100644 index 00000000..de5acfea --- /dev/null +++ b/themes/quantum-material-theme--quantum-material-theme-dark.yaml @@ -0,0 +1,53 @@ +name: "Quantum Material Theme (Quantum Material Theme - Dark)" +source: + marketplace_id: "michaelmendez.quantum-material-theme" + version: "0.0.7" + installs: 119 + rating: 0 + ratings: 0 + author: "Michael Méndez" + repo: "https://github.com/michaelmendez/quantum-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=michaelmendez.quantum-material-theme" + formats: null +colors: + bg: "#101119" + fg: "#DADADA" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#D19BF4" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#D19BF4" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 279 + pair: null + contrast: + fg: 83.6 + black: 0 + red: 44.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 59.3 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 44.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 59.3 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/quantum-material-theme--quantum-material-theme-light.yaml b/themes/quantum-material-theme--quantum-material-theme-light.yaml new file mode 100644 index 00000000..2bb4a786 --- /dev/null +++ b/themes/quantum-material-theme--quantum-material-theme-light.yaml @@ -0,0 +1,53 @@ +name: "Quantum Material Theme (Quantum Material Theme - Light)" +source: + marketplace_id: "michaelmendez.quantum-material-theme" + version: "0.0.7" + installs: 119 + rating: 0 + ratings: 0 + author: "Michael Méndez" + repo: "https://github.com/michaelmendez/quantum-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=michaelmendez.quantum-material-theme" + formats: null +colors: + bg: "#FAFAFA" + fg: "#1A1D23" + black: "#263238" + red: "#E53935" + green: "#43A047" + yellow: "#FDD835" + blue: "#1976D2" + magenta: "#8E24AA" + cyan: "#00ACC1" + white: "#CFD8DC" + brightBlack: "#546E7A" + brightRed: "#EF5350" + brightGreen: "#66BB6A" + brightYellow: "#FFCA28" + brightBlue: "#42A5F5" + brightMagenta: "#AB47BC" + brightCyan: "#26C6DA" + brightWhite: "#ECEFF1" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100.8 + black: 96.5 + red: 64.7 + green: 57.1 + yellow: 16 + blue: 68.4 + magenta: 80.2 + cyan: 49.3 + white: 18.4 + brightBlack: 73.9 + brightRed: 58.4 + brightGreen: 43.4 + brightYellow: 21.3 + brightBlue: 48.2 + brightMagenta: 69.7 + brightCyan: 36.8 + brightWhite: 0 diff --git a/themes/quantum-material-theme--quantum-material-theme-void.yaml b/themes/quantum-material-theme--quantum-material-theme-void.yaml new file mode 100644 index 00000000..0dc7b7ed --- /dev/null +++ b/themes/quantum-material-theme--quantum-material-theme-void.yaml @@ -0,0 +1,53 @@ +name: "Quantum Material Theme (Quantum Material Theme - Void)" +source: + marketplace_id: "michaelmendez.quantum-material-theme" + version: "0.0.7" + installs: 119 + rating: 0 + ratings: 0 + author: "Michael Méndez" + repo: "https://github.com/michaelmendez/quantum-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=michaelmendez.quantum-material-theme" + formats: null +colors: + bg: "#0B0A0B" + fg: "#D0D0D0" + black: "#000000" + red: "#EF5370" + green: "#B3D87D" + yellow: "#EFBB6B" + blue: "#729AFF" + magenta: "#C18BE4" + cyan: "#79CDFF" + white: "#FFFFFF" + brightBlack: "#3A3A4D" + brightRed: "#EF5370" + brightGreen: "#B3D87D" + brightYellow: "#EFBB6B" + brightBlue: "#729AFF" + brightMagenta: "#C18BE4" + brightCyan: "#79CDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 77.9 + black: 0 + red: 40.8 + green: 75.4 + yellow: 70.7 + blue: 49.6 + magenta: 51.2 + cyan: 70.7 + white: 107.7 + brightBlack: 0 + brightRed: 40.8 + brightGreen: 75.4 + brightYellow: 70.7 + brightBlue: 49.6 + brightMagenta: 51.2 + brightCyan: 70.7 + brightWhite: 107.7 diff --git a/themes/quantum-theme--quantum-dark.yaml b/themes/quantum-theme--quantum-dark.yaml new file mode 100644 index 00000000..a09d5e99 --- /dev/null +++ b/themes/quantum-theme--quantum-dark.yaml @@ -0,0 +1,54 @@ +name: "Quantum Theme (Quantum Dark)" +source: + marketplace_id: "CalebEphrem.quantum" + version: "2.0.3" + installs: 416 + rating: 5 + ratings: 2 + author: "Caleb Ephrem" + repo: "https://github.com/calebephrem/quantum-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" + formats: + zed: "https://raw.githubusercontent.com/calebephrem/quantum-vscode/main/themes/Quantum-dark-non-italicized.json" +colors: + bg: "#000017" + fg: "#E5E5E5" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#DDCC55" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#70EFEF" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAFF4C" + brightYellow: "#FFDD70" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#00DDEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 90.9 + black: 0 + red: 45 + green: 71 + yellow: 74.7 + blue: 61.5 + magenta: 61.6 + cyan: 85.5 + white: 72.6 + brightBlack: 23.8 + brightRed: 47.5 + brightGreen: 93 + brightYellow: 87.6 + brightBlue: 64.3 + brightMagenta: 64.3 + brightCyan: 74.1 + brightWhite: 107.8 diff --git a/themes/quantum-theme--quantum-mirage.yaml b/themes/quantum-theme--quantum-mirage.yaml new file mode 100644 index 00000000..a353ebd6 --- /dev/null +++ b/themes/quantum-theme--quantum-mirage.yaml @@ -0,0 +1,54 @@ +name: "Quantum Theme (Quantum Mirage)" +source: + marketplace_id: "CalebEphrem.quantum" + version: "2.0.3" + installs: 416 + rating: 5 + ratings: 2 + author: "Caleb Ephrem" + repo: "https://github.com/calebephrem/quantum-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" + formats: + zed: "https://raw.githubusercontent.com/calebephrem/quantum-vscode/main/themes/Quantum-dark-non-italicized.json" +colors: + bg: "#141530" + fg: "#E5E5E5" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#DDCC55" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#70EFEF" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAFF4C" + brightYellow: "#FFDD70" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#00DDEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 279 + pair: null + contrast: + fg: 89.9 + black: 0 + red: 43.9 + green: 69.9 + yellow: 73.6 + blue: 60.4 + magenta: 60.5 + cyan: 84.4 + white: 71.6 + brightBlack: 22.7 + brightRed: 46.4 + brightGreen: 92 + brightYellow: 86.5 + brightBlue: 63.2 + brightMagenta: 63.3 + brightCyan: 73 + brightWhite: 106.7 diff --git a/themes/quantum-theme--quantum.yaml b/themes/quantum-theme--quantum.yaml new file mode 100644 index 00000000..bb81658f --- /dev/null +++ b/themes/quantum-theme--quantum.yaml @@ -0,0 +1,54 @@ +name: "Quantum Theme (Quantum)" +source: + marketplace_id: "CalebEphrem.quantum" + version: "2.0.3" + installs: 416 + rating: 5 + ratings: 2 + author: "Caleb Ephrem" + repo: "https://github.com/calebephrem/quantum-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=CalebEphrem.quantum" + formats: + zed: "https://raw.githubusercontent.com/calebephrem/quantum-vscode/main/themes/Quantum-dark-non-italicized.json" +colors: + bg: "#040527" + fg: "#E5E5E5" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#DDCC55" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#70EFEF" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAFF4C" + brightYellow: "#FFDD70" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#00DDEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 272 + pair: null + contrast: + fg: 90.7 + black: 0 + red: 44.8 + green: 70.7 + yellow: 74.4 + blue: 61.3 + magenta: 61.3 + cyan: 85.3 + white: 72.4 + brightBlack: 23.6 + brightRed: 47.3 + brightGreen: 92.8 + brightYellow: 87.4 + brightBlue: 64.1 + brightMagenta: 64.1 + brightCyan: 73.9 + brightWhite: 107.6 diff --git a/themes/qubik-themes--qubik-dark.yaml b/themes/qubik-themes--qubik-dark.yaml new file mode 100644 index 00000000..e7d03769 --- /dev/null +++ b/themes/qubik-themes--qubik-dark.yaml @@ -0,0 +1,53 @@ +name: "Qubik Themes (Qubik Dark)" +source: + marketplace_id: "qnbhd.qubik-themes" + version: "0.0.1" + installs: 22 + rating: 0 + ratings: 0 + author: "Templin Konstantin" + repo: "https://github.com/qnbhd/qubik-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=qnbhd.qubik-themes" + formats: null +colors: + bg: "#0B0B0F" + fg: "#E6E6E6" + black: "#0B0B0F" + red: "#D84F68" + green: "#54C0A3" + yellow: "#E6E7A3" + blue: "#479FFA" + magenta: "#9592A4" + cyan: "#54C0A3" + white: "#E6E6E6" + brightBlack: "#46474F" + brightRed: "#FF5C5C" + brightGreen: "#54C0A3" + brightYellow: "#F9B98C" + brightBlue: "#479FFA" + brightMagenta: "#9592A4" + brightCyan: "#54C0A3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.5 + black: 0 + red: 34.9 + green: 58.4 + yellow: 89.4 + blue: 48.7 + magenta: 44.4 + cyan: 58.4 + white: 91.5 + brightBlack: 10.8 + brightRed: 45.6 + brightGreen: 58.4 + brightYellow: 72.3 + brightBlue: 48.7 + brightMagenta: 44.4 + brightCyan: 58.4 + brightWhite: 107.7 diff --git a/themes/qubik-themes--qubik-light.yaml b/themes/qubik-themes--qubik-light.yaml new file mode 100644 index 00000000..5a20f048 --- /dev/null +++ b/themes/qubik-themes--qubik-light.yaml @@ -0,0 +1,53 @@ +name: "Qubik Themes (Qubik Light)" +source: + marketplace_id: "qnbhd.qubik-themes" + version: "0.0.1" + installs: 22 + rating: 0 + ratings: 0 + author: "Templin Konstantin" + repo: "https://github.com/qnbhd/qubik-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=qnbhd.qubik-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#202020" + black: "#000000" + red: "#C83A4A" + green: "#3C9C7A" + yellow: "#9A9530" + blue: "#1B63B4" + magenta: "#706A80" + cyan: "#3C9C7A" + white: "#E0E0E0" + brightBlack: "#808080" + brightRed: "#FF4D4D" + brightGreen: "#3C9C7A" + brightYellow: "#D47F34" + brightBlue: "#1B63B4" + brightMagenta: "#706A80" + brightCyan: "#3C9C7A" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.3 + black: 106 + red: 73.7 + green: 60.9 + yellow: 58.2 + blue: 79.6 + magenta: 75.6 + cyan: 60.9 + white: 15.8 + brightBlack: 66.9 + brightRed: 58.7 + brightGreen: 60.9 + brightYellow: 57 + brightBlue: 79.6 + brightMagenta: 75.6 + brightCyan: 60.9 + brightWhite: 0 diff --git a/themes/queensland--queensland-dark.yaml b/themes/queensland--queensland-dark.yaml new file mode 100644 index 00000000..1ea18c2a --- /dev/null +++ b/themes/queensland--queensland-dark.yaml @@ -0,0 +1,53 @@ +name: "Queensland (Queensland Dark)" +source: + marketplace_id: "lucidlabs.queensland-theme" + version: "1.4.0" + installs: 3 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.queensland-theme" + formats: null +colors: + bg: "#131212" + fg: "#E8EDF3" + black: "#131212" + red: "#E22339" + green: "#6BBE27" + yellow: "#FFCC2C" + blue: "#005EB8" + magenta: "#73182C" + cyan: "#0085B3" + white: "#E8EDF3" + brightBlack: "#78797E" + brightRed: "#FF4D5E" + brightGreen: "#78D65B" + brightYellow: "#FFE066" + brightBlue: "#3D8FD6" + brightMagenta: "#C88DF7" + brightCyan: "#33A8CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.1 + black: 0 + red: 30.9 + green: 55.9 + yellow: 79.1 + blue: 20.3 + magenta: 7.5 + cyan: 32.8 + white: 95.1 + brightBlack: 31 + brightRed: 42.7 + brightGreen: 68.4 + brightYellow: 88.2 + brightBlue: 39.5 + brightMagenta: 53.6 + brightCyan: 48.4 + brightWhite: 107.3 diff --git a/themes/queensland--queensland-light.yaml b/themes/queensland--queensland-light.yaml new file mode 100644 index 00000000..94bd105e --- /dev/null +++ b/themes/queensland--queensland-light.yaml @@ -0,0 +1,53 @@ +name: "Queensland (Queensland Light)" +source: + marketplace_id: "lucidlabs.queensland-theme" + version: "1.4.0" + installs: 3 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.queensland-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#131212" + black: "#131212" + red: "#E22339" + green: "#0A690D" + yellow: "#B38800" + blue: "#005EB8" + magenta: "#73182C" + cyan: "#006A8F" + white: "#FFFFFF" + brightBlack: "#78797E" + brightRed: "#8A1220" + brightGreen: "#339D37" + brightYellow: "#FFCC2C" + brightBlue: "#004D99" + brightMagenta: "#5A1222" + brightCyan: "#0085B3" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.2 + black: 105.2 + red: 70.2 + green: 83.3 + yellow: 59.7 + blue: 80.9 + magenta: 94.4 + cyan: 79.8 + white: 0 + brightBlack: 70.1 + brightRed: 90.5 + brightGreen: 62 + brightYellow: 23.5 + brightBlue: 88 + brightMagenta: 99.2 + brightCyan: 68.3 + brightWhite: 0 diff --git a/themes/quiet-canvas--quiet-canvas.yaml b/themes/quiet-canvas--quiet-canvas.yaml new file mode 100644 index 00000000..ff14bd79 --- /dev/null +++ b/themes/quiet-canvas--quiet-canvas.yaml @@ -0,0 +1,53 @@ +name: "Quiet Canvas (Quiet Canvas)" +source: + marketplace_id: "kevinwolfcr.vscode-quiet-canvas" + version: "1.0.0" + installs: 1750 + rating: 5 + ratings: 1 + author: "(deprecated) Kevin Wolf" + repo: "https://github.com/kevinwolfcr/vscode-quiet-canvas" + url: "https://marketplace.visualstudio.com/items?itemName=kevinwolfcr.vscode-quiet-canvas" + formats: null +colors: + bg: "#FCFCFD" + fg: "#7E808A" + black: "#EBEBEF" + red: "#EB9091" + green: "#5BB98C" + yellow: "#C9AA45" + blue: "#5EB0EF" + magenta: "#E38EC3" + cyan: "#3DB9CF" + white: "#60646C" + brightBlack: "#DDDDE3" + brightRed: "#C62A2F" + brightGreen: "#18794E" + brightYellow: "#775F28" + brightBlue: "#0B68CB" + brightMagenta: "#C41C87" + brightCyan: "#0C7792" + brightWhite: "#1C2024" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 65 + black: 7.4 + red: 44.4 + green: 45.3 + yellow: 42.5 + blue: 44.4 + magenta: 44.4 + cyan: 43.7 + white: 78 + brightBlack: 15.6 + brightRed: 74.5 + brightGreen: 74.8 + brightYellow: 78.5 + brightBlue: 74.7 + brightMagenta: 73.5 + brightCyan: 73.3 + brightWhite: 101.6 diff --git a/themes/quite-night-theme.yaml b/themes/quite-night-theme.yaml new file mode 100644 index 00000000..7072878f --- /dev/null +++ b/themes/quite-night-theme.yaml @@ -0,0 +1,53 @@ +name: "Quite Night Theme" +source: + marketplace_id: "VavilenBader.quite-night-theme" + version: "1.0.1" + installs: 161 + rating: 0 + ratings: 0 + author: "Vavilen Bader" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=VavilenBader.quite-night-theme" + formats: null +colors: + bg: "#1C1E26" + fg: "#B0BFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + pair: null + contrast: + fg: 67.7 + black: 0 + red: 25.8 + green: 52.1 + yellow: 84.7 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.1 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.1 + brightMagenta: 44.5 + brightCyan: 54.5 + brightWhite: 89.1 diff --git a/themes/r-dark-pro.yaml b/themes/r-dark-pro.yaml new file mode 100644 index 00000000..5a823f16 --- /dev/null +++ b/themes/r-dark-pro.yaml @@ -0,0 +1,53 @@ +name: "R Dark Pro" +source: + marketplace_id: "Rezky.r-dark-pro" + version: "0.0.44" + installs: 3273 + rating: 5 + ratings: 1 + author: "Rezky P. Budihartono" + repo: "https://github.com/rezkycodes/rdark.pro" + url: "https://marketplace.visualstudio.com/items?itemName=Rezky.r-dark-pro" + formats: null +colors: + bg: "#191B22" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 273 + pair: null + contrast: + fg: 58.9 + black: 8.4 + red: 36.2 + green: 59.9 + yellow: 48.1 + blue: 49.2 + magenta: 38.6 + cyan: 52 + white: 82.6 + brightBlack: 15 + brightRed: 45.6 + brightGreen: 76.3 + brightYellow: 60.8 + brightBlue: 63.3 + brightMagenta: 49.8 + brightCyan: 67.3 + brightWhite: 90.2 diff --git a/themes/r-h-zero-theme.yaml b/themes/r-h-zero-theme.yaml new file mode 100644 index 00000000..cf5b64b0 --- /dev/null +++ b/themes/r-h-zero-theme.yaml @@ -0,0 +1,53 @@ +name: "R_h_zero Theme" +source: + marketplace_id: "Rhzero.rhzero-theme" + version: "0.0.2" + installs: 345 + rating: 5 + ratings: 2 + author: "R_h_zero" + repo: "https://github.com/chouchouxsl/vscode-theme-R_h_zero" + url: "https://marketplace.visualstudio.com/items?itemName=Rhzero.rhzero-theme" + formats: null +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#4D9375" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#4D9375" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 33.5 + yellow: 67.4 + blue: 38.3 + magenta: 41.9 + cyan: 51.4 + white: 79.8 + brightBlack: 32.3 + brightRed: 35.2 + brightGreen: 33.5 + brightYellow: 67.4 + brightBlue: 38.3 + brightMagenta: 9.5 + brightCyan: 51.4 + brightWhite: 79.8 diff --git a/themes/rachael-s-themes--dr-jones.yaml b/themes/rachael-s-themes--dr-jones.yaml new file mode 100644 index 00000000..63ea9c45 --- /dev/null +++ b/themes/rachael-s-themes--dr-jones.yaml @@ -0,0 +1,53 @@ +name: "Rachael's Themes (Dr. Jones)" +source: + marketplace_id: "Rachael.rachaels-themes" + version: "0.0.2" + installs: 1171 + rating: 0 + ratings: 0 + author: "Rachael" + repo: "https://github.com/rbouissey/rachaelsthemes" + url: "https://marketplace.visualstudio.com/items?itemName=Rachael.rachaels-themes" + formats: null +colors: + bg: "#EDDABC" + fg: "#002D3A" + black: "#000000" + red: "#002D3A" + green: "#47722D" + yellow: "#FFCA00" + blue: "#002D3A" + magenta: "#5A5072" + cyan: "#79B9C7" + white: "#EDDABC" + brightBlack: "#000000" + brightRed: "#002D3A" + brightGreen: "#47722D" + brightYellow: "#FFCA00" + brightBlue: "#002D3A" + brightMagenta: "#5A5072" + brightCyan: "#79B9C7" + brightWhite: "#814E00" +meta: + mode: "light" + accent: "yellow" + hue: 79 + pair: null + contrast: + fg: 80.8 + black: 85.7 + red: 80.8 + green: 57.8 + yellow: 0 + blue: 80.8 + magenta: 65.5 + cyan: 22.7 + white: 0 + brightBlack: 85.7 + brightRed: 80.8 + brightGreen: 57.8 + brightYellow: 0 + brightBlue: 80.8 + brightMagenta: 65.5 + brightCyan: 22.7 + brightWhite: 63.3 diff --git a/themes/rachael-s-themes--high-tea.yaml b/themes/rachael-s-themes--high-tea.yaml new file mode 100644 index 00000000..f9d82f7b --- /dev/null +++ b/themes/rachael-s-themes--high-tea.yaml @@ -0,0 +1,53 @@ +name: "Rachael's Themes (High Tea)" +source: + marketplace_id: "Rachael.rachaels-themes" + version: "0.0.2" + installs: 1171 + rating: 0 + ratings: 0 + author: "Rachael" + repo: "https://github.com/rbouissey/rachaelsthemes" + url: "https://marketplace.visualstudio.com/items?itemName=Rachael.rachaels-themes" + formats: null +colors: + bg: "#EEE6E4" + fg: "#2CA8B0" + black: "#000000" + red: "#991000" + green: "#29C065" + yellow: "#FFCA00" + blue: "#991000" + magenta: "#5024B8" + cyan: "#29C3E6" + white: "#EEE6E4" + brightBlack: "#000000" + brightRed: "#991000" + brightGreen: "#29C065" + brightYellow: "#FFCA00" + brightBlue: "#991000" + brightMagenta: "#5024B8" + brightCyan: "#29C3E6" + brightWhite: "#F1BDB9" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 40.6 + black: 92.2 + red: 73.8 + green: 32.5 + yellow: 10.5 + blue: 73.8 + magenta: 76.2 + cyan: 26.6 + white: 0 + brightBlack: 92.2 + brightRed: 73.8 + brightGreen: 32.5 + brightYellow: 10.5 + brightBlue: 73.8 + brightMagenta: 76.2 + brightCyan: 26.6 + brightWhite: 14.9 diff --git a/themes/rafa-oficial--machine.yaml b/themes/rafa-oficial--machine.yaml new file mode 100644 index 00000000..ae922cb5 --- /dev/null +++ b/themes/rafa-oficial--machine.yaml @@ -0,0 +1,53 @@ +name: "Rafa-Oficial (Machine)" +source: + marketplace_id: "rafaelburghausen.rafa-theme" + version: "3.0.6" + installs: 1205 + rating: 5 + ratings: 1 + author: "rafaelburghausen" + repo: "https://github.com/marcos-burghausen/Extensao-Rafa" + url: "https://marketplace.visualstudio.com/items?itemName=rafaelburghausen.rafa-theme" + formats: null +colors: + bg: "#273136" + fg: "#F2FFFC" + black: "#3A4449" + red: "#FF6D7E" + green: "#A2E57B" + yellow: "#FFED72" + blue: "#FFB270" + magenta: "#BAA0F8" + cyan: "#7CD5F1" + white: "#F2FFFC" + brightBlack: "#6B7678" + brightRed: "#FF6D7E" + brightGreen: "#A2E57B" + brightYellow: "#FFED72" + brightBlue: "#FFB270" + brightMagenta: "#BAA0F8" + brightCyan: "#7CD5F1" + brightWhite: "#F2FFFC" +meta: + mode: "dark" + accent: "orange" + hue: 230 + pair: null + contrast: + fg: 100.9 + black: 0 + red: 45 + green: 75 + yellow: 89.9 + blue: 65.3 + magenta: 53.6 + cyan: 68.9 + white: 100.9 + brightBlack: 24.2 + brightRed: 45 + brightGreen: 75 + brightYellow: 89.9 + brightBlue: 65.3 + brightMagenta: 53.6 + brightCyan: 68.9 + brightWhite: 100.9 diff --git a/themes/raij--raij-dark.yaml b/themes/raij--raij-dark.yaml new file mode 100644 index 00000000..6a167aa3 --- /dev/null +++ b/themes/raij--raij-dark.yaml @@ -0,0 +1,53 @@ +name: "Raijū (Raijū - Dark)" +source: + marketplace_id: "TobiasTimm.raiju" + version: "2.2.2" + installs: 6929 + rating: 5 + ratings: 2 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/raiju" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.raiju" + formats: null +colors: + bg: "#171D2B" + fg: "#E6E6E6" + black: "#6F7899" + red: "#A188F1" + green: "#7EBBBB" + yellow: "#FFEDCB" + blue: "#8D9AD1" + magenta: "#CEB3F7" + cyan: "#A7A7EE" + white: "#D7E2FF" + brightBlack: "#6F7899" + brightRed: "#A188F1" + brightGreen: "#7EBBBB" + brightYellow: "#FFEDCB" + brightBlue: "#8D9AD1" + brightMagenta: "#CEB3F7" + brightCyan: "#A7A7EE" + brightWhite: "#D7E2FF" +meta: + mode: "dark" + accent: "magenta" + hue: 266 + pair: null + contrast: + fg: 89.9 + black: 29.8 + red: 45.3 + green: 58 + yellow: 95.5 + blue: 47.2 + magenta: 66.3 + cyan: 56.4 + white: 87.4 + brightBlack: 29.8 + brightRed: 45.3 + brightGreen: 58 + brightYellow: 95.5 + brightBlue: 47.2 + brightMagenta: 66.3 + brightCyan: 56.4 + brightWhite: 87.4 diff --git a/themes/raij--raij.yaml b/themes/raij--raij.yaml new file mode 100644 index 00000000..a0a51285 --- /dev/null +++ b/themes/raij--raij.yaml @@ -0,0 +1,53 @@ +name: "Raijū (Raijū)" +source: + marketplace_id: "TobiasTimm.raiju" + version: "2.2.2" + installs: 6929 + rating: 5 + ratings: 2 + author: "Tobias Timm" + repo: "https://github.com/tobiastimm/raiju" + url: "https://marketplace.visualstudio.com/items?itemName=TobiasTimm.raiju" + formats: null +colors: + bg: "#262B3B" + fg: "#E6E6E6" + black: "#6F7899" + red: "#A188F1" + green: "#7EBBBB" + yellow: "#FFEDCB" + blue: "#8D9AD1" + magenta: "#CEB3F7" + cyan: "#A7A7EE" + white: "#D7E2FF" + brightBlack: "#6F7899" + brightRed: "#A188F1" + brightGreen: "#7EBBBB" + brightYellow: "#FFEDCB" + brightBlue: "#8D9AD1" + brightMagenta: "#CEB3F7" + brightCyan: "#A7A7EE" + brightWhite: "#D7E2FF" +meta: + mode: "dark" + accent: "magenta" + hue: 271 + pair: null + contrast: + fg: 87.5 + black: 27.4 + red: 42.9 + green: 55.7 + yellow: 93.1 + blue: 44.8 + magenta: 63.9 + cyan: 54.1 + white: 85 + brightBlack: 27.4 + brightRed: 42.9 + brightGreen: 55.7 + brightYellow: 93.1 + brightBlue: 44.8 + brightMagenta: 63.9 + brightCyan: 54.1 + brightWhite: 85 diff --git a/themes/rainbowdrops.yaml b/themes/rainbowdrops.yaml new file mode 100644 index 00000000..3db54193 --- /dev/null +++ b/themes/rainbowdrops.yaml @@ -0,0 +1,53 @@ +name: "RainbowDrops" +source: + marketplace_id: "WithOutCat.theme-rainbowdrops" + version: "3.0.0" + installs: 5115 + rating: 5 + ratings: 1 + author: "WithOutCat" + repo: "https://github.com/withoutcat/rainbowdrops" + url: "https://marketplace.visualstudio.com/items?itemName=WithOutCat.theme-rainbowdrops" + formats: null +colors: + bg: "#202020" + fg: "#D9E8F7" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 89.6 + black: 0 + red: 23.5 + green: 51.9 + yellow: 56.5 + blue: 33.5 + magenta: 31.1 + cyan: 49.3 + white: 87.4 + brightBlack: 20.9 + brightRed: 36.2 + brightGreen: 75.9 + brightYellow: 82.8 + brightBlue: 48.7 + brightMagenta: 45.4 + brightCyan: 72.3 + brightWhite: 100.9 diff --git a/themes/rainglow--absent-contrast.yaml b/themes/rainglow--absent-contrast.yaml new file mode 100644 index 00000000..8abcac69 --- /dev/null +++ b/themes/rainglow--absent-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (absent-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0E1114" + fg: "#AEB9C4" + black: "#181E23" + red: "#BA0E2E" + green: "#228A96" + yellow: "#6BA77F" + blue: "#E6EAEF" + magenta: "#228A96" + cyan: "#6BA77F" + white: "#BDC6CF" + brightBlack: "#384450" + brightRed: "#F03E5F" + brightGreen: "#48C7D6" + brightYellow: "#ABCDB6" + brightBlue: "#FFFFFF" + brightMagenta: "#48C7D6" + brightCyan: "#ABCDB6" + brightWhite: "#E9ECEF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 63.3 + black: 0 + red: 21 + green: 33.5 + yellow: 47.3 + blue: 93.4 + magenta: 33.5 + cyan: 47.3 + white: 70.9 + brightBlack: 8.9 + brightRed: 37.3 + brightGreen: 63.1 + brightYellow: 71 + brightBlue: 107.4 + brightMagenta: 63.1 + brightCyan: 71 + brightWhite: 94.7 diff --git a/themes/rainglow--absent-light.yaml b/themes/rainglow--absent-light.yaml new file mode 100644 index 00000000..13cf25c2 --- /dev/null +++ b/themes/rainglow--absent-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (absent-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#465360" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#228A96" + yellow: "#6BA77F" + blue: "#465360" + magenta: "#228A96" + cyan: "#6BA77F" + white: "#51606F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#48C7D6" + brightYellow: "#ABCDB6" + brightBlue: "#738699" + brightMagenta: "#48C7D6" + brightCyan: "#ABCDB6" + brightWhite: "#738699" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.3 + black: 0 + red: 80.3 + green: 67.6 + yellow: 54 + blue: 87.3 + magenta: 67.6 + cyan: 54 + white: 82.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 38.8 + brightYellow: 31.3 + brightBlue: 65.1 + brightMagenta: 38.8 + brightCyan: 31.3 + brightWhite: 65.1 diff --git a/themes/rainglow--absent.yaml b/themes/rainglow--absent.yaml new file mode 100644 index 00000000..699032be --- /dev/null +++ b/themes/rainglow--absent.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (absent)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#252C33" + fg: "#AEB9C4" + black: "#303942" + red: "#BA0E2E" + green: "#228A96" + yellow: "#6BA77F" + blue: "#E6EAEF" + magenta: "#228A96" + cyan: "#6BA77F" + white: "#BDC6CF" + brightBlack: "#505F6E" + brightRed: "#F03E5F" + brightGreen: "#48C7D6" + brightYellow: "#ABCDB6" + brightBlue: "#FFFFFF" + brightMagenta: "#48C7D6" + brightCyan: "#ABCDB6" + brightWhite: "#E9ECEF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + pair: null + contrast: + fg: 59.7 + black: 0 + red: 17.4 + green: 29.9 + yellow: 43.7 + blue: 89.8 + magenta: 29.9 + cyan: 43.7 + white: 67.3 + brightBlack: 15.4 + brightRed: 33.7 + brightGreen: 59.5 + brightYellow: 67.4 + brightBlue: 103.8 + brightMagenta: 59.5 + brightCyan: 67.4 + brightWhite: 91.1 diff --git a/themes/rainglow--allure-contrast.yaml b/themes/rainglow--allure-contrast.yaml new file mode 100644 index 00000000..d28b0c99 --- /dev/null +++ b/themes/rainglow--allure-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (allure-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#17191C" + fg: "#C0CCDB" + black: "#23262A" + red: "#BA0E2E" + green: "#5DA892" + yellow: "#E4D294" + blue: "#FFFFFF" + magenta: "#5DA892" + cyan: "#E4D294" + white: "#D0D9E4" + brightBlack: "#454B54" + brightRed: "#F03E5F" + brightGreen: "#9FCCBF" + brightYellow: "#F9F4E5" + brightBlue: "#FFFFFF" + brightMagenta: "#9FCCBF" + brightCyan: "#F9F4E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.7 + black: 0 + red: 20.3 + green: 46.8 + yellow: 78.4 + blue: 106.7 + magenta: 46.8 + cyan: 78.4 + white: 81.7 + brightBlack: 10.9 + brightRed: 36.6 + brightGreen: 69 + brightYellow: 99.5 + brightBlue: 106.7 + brightMagenta: 69 + brightCyan: 99.5 + brightWhite: 106.7 diff --git a/themes/rainglow--allure-light.yaml b/themes/rainglow--allure-light.yaml new file mode 100644 index 00000000..0dd24d0c --- /dev/null +++ b/themes/rainglow--allure-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (allure-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#555E68" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#5DA892" + yellow: "#E4D294" + blue: "#555E68" + magenta: "#5DA892" + cyan: "#E4D294" + white: "#606B76" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#9FCCBF" + brightYellow: "#F9F4E5" + brightBlue: "#86919C" + brightMagenta: "#9FCCBF" + brightCyan: "#F9F4E5" + brightWhite: "#86919C" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.6 + black: 0 + red: 80.3 + green: 53.9 + yellow: 23.6 + blue: 82.6 + magenta: 53.9 + cyan: 23.6 + white: 77.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 32.5 + brightYellow: 0 + brightBlue: 59.3 + brightMagenta: 32.5 + brightCyan: 0 + brightWhite: 59.3 diff --git a/themes/rainglow--allure.yaml b/themes/rainglow--allure.yaml new file mode 100644 index 00000000..ba834142 --- /dev/null +++ b/themes/rainglow--allure.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (allure)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#32373D" + fg: "#C0CCDB" + black: "#3D444B" + red: "#BA0E2E" + green: "#5DA892" + yellow: "#E4D294" + blue: "#FFFFFF" + magenta: "#5DA892" + cyan: "#E4D294" + white: "#D0D9E4" + brightBlack: "#606A75" + brightRed: "#F03E5F" + brightGreen: "#9FCCBF" + brightYellow: "#F9F4E5" + brightBlue: "#FFFFFF" + brightMagenta: "#9FCCBF" + brightCyan: "#F9F4E5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + pair: null + contrast: + fg: 68 + black: 0 + red: 14.7 + green: 41.1 + yellow: 72.7 + blue: 101 + magenta: 41.1 + cyan: 72.7 + white: 76.1 + brightBlack: 17.4 + brightRed: 31 + brightGreen: 63.3 + brightYellow: 93.8 + brightBlue: 101 + brightMagenta: 63.3 + brightCyan: 93.8 + brightWhite: 101 diff --git a/themes/rainglow--arstotzka-contrast.yaml b/themes/rainglow--arstotzka-contrast.yaml new file mode 100644 index 00000000..31864c28 --- /dev/null +++ b/themes/rainglow--arstotzka-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (arstotzka-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0F0E0D" + fg: "#EDEBE6" + black: "#1D1B19" + red: "#BA0E2E" + green: "#A2A797" + yellow: "#516B6B" + blue: "#70807B" + magenta: "#A2A797" + cyan: "#CF433E" + white: "#F8F7F5" + brightBlack: "#46413C" + brightRed: "#F03E5F" + brightGreen: "#D3D6CE" + brightYellow: "#82A0A0" + brightBlue: "#A5B1AD" + brightMagenta: "#D3D6CE" + brightCyan: "#E39390" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.6 + black: 0 + red: 21.2 + green: 53.1 + yellow: 22.8 + blue: 32.8 + magenta: 53.1 + cyan: 30.2 + white: 102.3 + brightBlack: 8.7 + brightRed: 37.5 + brightGreen: 80.7 + brightYellow: 47.5 + brightBlue: 58.2 + brightMagenta: 80.7 + brightCyan: 55.1 + brightWhite: 107.6 diff --git a/themes/rainglow--arstotzka-light.yaml b/themes/rainglow--arstotzka-light.yaml new file mode 100644 index 00000000..31921355 --- /dev/null +++ b/themes/rainglow--arstotzka-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (arstotzka-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#A2A797" + yellow: "#516B6B" + blue: "#70807B" + magenta: "#A2A797" + cyan: "#CF433E" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#D3D6CE" + brightYellow: "#82A0A0" + brightBlue: "#A5B1AD" + brightMagenta: "#D3D6CE" + brightCyan: "#E39390" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 48.5 + yellow: 78.7 + blue: 68.6 + magenta: 48.5 + cyan: 71.2 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 22.3 + brightYellow: 54 + brightBlue: 43.6 + brightMagenta: 22.3 + brightCyan: 46.6 + brightWhite: 78.8 diff --git a/themes/rainglow--arstotzka.yaml b/themes/rainglow--arstotzka.yaml new file mode 100644 index 00000000..bb37ee37 --- /dev/null +++ b/themes/rainglow--arstotzka.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (arstotzka)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#332E2E" + fg: "#EDEBE6" + black: "#403A3A" + red: "#BA0E2E" + green: "#A2A797" + yellow: "#516B6B" + blue: "#70807B" + magenta: "#A2A797" + cyan: "#CF433E" + white: "#F8F7F5" + brightBlack: "#695E5E" + brightRed: "#F03E5F" + brightGreen: "#D3D6CE" + brightYellow: "#82A0A0" + brightBlue: "#A5B1AD" + brightMagenta: "#D3D6CE" + brightCyan: "#E39390" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 90 + black: 0 + red: 16.6 + green: 48.5 + yellow: 18.2 + blue: 28.2 + magenta: 48.5 + cyan: 25.6 + white: 97.7 + brightBlack: 15.8 + brightRed: 32.9 + brightGreen: 76.1 + brightYellow: 42.9 + brightBlue: 53.7 + brightMagenta: 76.1 + brightCyan: 50.5 + brightWhite: 103 diff --git a/themes/rainglow--azure-contrast.yaml b/themes/rainglow--azure-contrast.yaml new file mode 100644 index 00000000..92a3d98a --- /dev/null +++ b/themes/rainglow--azure-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (azure-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#040507" + fg: "#FFFFFF" + black: "#0D1117" + red: "#BA0E2E" + green: "#6AB0A3" + yellow: "#52708B" + blue: "#508AAA" + magenta: "#508AAA" + cyan: "#6AB0A3" + white: "#FFFFFF" + brightBlack: "#293348" + brightRed: "#F03E5F" + brightGreen: "#ADD3CC" + brightYellow: "#89A3BA" + brightBlue: "#94B8CC" + brightMagenta: "#94B8CC" + brightCyan: "#ADD3CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 21.5 + green: 52.7 + yellow: 26 + blue: 36.4 + magenta: 36.4 + cyan: 52.7 + white: 107.9 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 75.2 + brightYellow: 50.8 + brightBlue: 61.1 + brightMagenta: 61.1 + brightCyan: 75.2 + brightWhite: 107.9 diff --git a/themes/rainglow--azure-light.yaml b/themes/rainglow--azure-light.yaml new file mode 100644 index 00000000..6c29851c --- /dev/null +++ b/themes/rainglow--azure-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (azure-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#6AB0A3" + yellow: "#8291AD" + blue: "#508AAA" + magenta: "#508AAA" + cyan: "#6AB0A3" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#ADD3CC" + brightYellow: "#C0C7D5" + brightBlue: "#94B8CC" + brightMagenta: "#94B8CC" + brightCyan: "#ADD3CC" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 49.2 + yellow: 59 + blue: 65.2 + magenta: 65.2 + cyan: 49.2 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 27.7 + brightYellow: 30.3 + brightBlue: 41.1 + brightMagenta: 41.1 + brightCyan: 27.7 + brightWhite: 71.1 diff --git a/themes/rainglow--azure.yaml b/themes/rainglow--azure.yaml new file mode 100644 index 00000000..d9a420d4 --- /dev/null +++ b/themes/rainglow--azure.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (azure)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#181D26" + fg: "#FFFFFF" + black: "#222936" + red: "#BA0E2E" + green: "#6AB0A3" + yellow: "#52708B" + blue: "#508AAA" + magenta: "#508AAA" + cyan: "#6AB0A3" + white: "#FFFFFF" + brightBlack: "#3F4D64" + brightRed: "#F03E5F" + brightGreen: "#ADD3CC" + brightYellow: "#89A3BA" + brightBlue: "#94B8CC" + brightMagenta: "#94B8CC" + brightCyan: "#ADD3CC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 262 + pair: null + contrast: + fg: 106.2 + black: 0 + red: 19.8 + green: 51 + yellow: 24.4 + blue: 34.8 + magenta: 34.8 + cyan: 51 + white: 106.2 + brightBlack: 11.2 + brightRed: 36.1 + brightGreen: 73.5 + brightYellow: 49.1 + brightBlue: 59.4 + brightMagenta: 59.4 + brightCyan: 73.5 + brightWhite: 106.2 diff --git a/themes/rainglow--banner-contrast.yaml b/themes/rainglow--banner-contrast.yaml new file mode 100644 index 00000000..8e3942ad --- /dev/null +++ b/themes/rainglow--banner-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (banner-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0B0A0F" + fg: "#C5BEDD" + black: "#16141E" + red: "#BA0E2E" + green: "#7CD827" + yellow: "#A25CDB" + blue: "#FFFFFF" + magenta: "#A6EF61" + cyan: "#A6EF61" + white: "#D4CFE6" + brightBlack: "#38334C" + brightRed: "#F03E5F" + brightGreen: "#B0E87D" + brightYellow: "#D2B0ED" + brightBlue: "#FFFFFF" + brightMagenta: "#DAF8BE" + brightCyan: "#DAF8BE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 294 + pair: null + contrast: + fg: 69.6 + black: 0 + red: 21.3 + green: 69.6 + yellow: 33.6 + blue: 107.7 + magenta: 84.7 + cyan: 84.7 + white: 79 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 82.7 + brightYellow: 66.8 + brightBlue: 107.7 + brightMagenta: 96.8 + brightCyan: 96.8 + brightWhite: 107.7 diff --git a/themes/rainglow--banner-light.yaml b/themes/rainglow--banner-light.yaml new file mode 100644 index 00000000..a204d54b --- /dev/null +++ b/themes/rainglow--banner-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (banner-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#373247" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#7CD827" + yellow: "#A25CDB" + blue: "#373247" + magenta: "#7CD827" + cyan: "#7CD827" + white: "#433D56" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#B0E87D" + brightYellow: "#D2B0ED" + brightBlue: "#655C83" + brightMagenta: "#B0E87D" + brightCyan: "#B0E87D" + brightWhite: "#655C83" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 98 + black: 0 + red: 80.3 + green: 32.9 + yellow: 67.9 + blue: 98 + magenta: 32.9 + cyan: 32.9 + white: 93.9 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 20.5 + brightYellow: 35.6 + brightBlue: 80.7 + brightMagenta: 20.5 + brightCyan: 20.5 + brightWhite: 80.7 diff --git a/themes/rainglow--banner.yaml b/themes/rainglow--banner.yaml new file mode 100644 index 00000000..fbc6ad58 --- /dev/null +++ b/themes/rainglow--banner.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (banner)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#1D1A26" + fg: "#C5BEDD" + black: "#292435" + red: "#BA0E2E" + green: "#7CD827" + yellow: "#A25CDB" + blue: "#FFFFFF" + magenta: "#A6EF61" + cyan: "#A6EF61" + white: "#D4CFE6" + brightBlack: "#4B4363" + brightRed: "#F03E5F" + brightGreen: "#B0E87D" + brightYellow: "#D2B0ED" + brightBlue: "#FFFFFF" + brightMagenta: "#DAF8BE" + brightCyan: "#DAF8BE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 296 + pair: null + contrast: + fg: 68.2 + black: 0 + red: 19.9 + green: 68.2 + yellow: 32.2 + blue: 106.3 + magenta: 83.3 + cyan: 83.3 + white: 77.6 + brightBlack: 9.6 + brightRed: 36.2 + brightGreen: 81.3 + brightYellow: 65.4 + brightBlue: 106.3 + brightMagenta: 95.4 + brightCyan: 95.4 + brightWhite: 106.3 diff --git a/themes/rainglow--blink-contrast.yaml b/themes/rainglow--blink-contrast.yaml new file mode 100644 index 00000000..421e01c3 --- /dev/null +++ b/themes/rainglow--blink-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (blink-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#131719" + fg: "#C0CCDB" + black: "#1E2427" + red: "#BA0E2E" + green: "#5298C4" + yellow: "#D4856A" + blue: "#43B5B3" + magenta: "#D4856A" + cyan: "#43B5B3" + white: "#D0D9E4" + brightBlack: "#3F4C53" + brightRed: "#F03E5F" + brightGreen: "#9EC5DE" + brightYellow: "#EBC6B9" + brightBlue: "#8AD4D2" + brightMagenta: "#EBC6B9" + brightCyan: "#8AD4D2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.9 + black: 0 + red: 20.5 + green: 42.3 + yellow: 46.4 + blue: 52.8 + magenta: 46.4 + cyan: 52.8 + white: 82 + brightBlack: 11 + brightRed: 36.8 + brightGreen: 67.5 + brightYellow: 75.8 + brightBlue: 71.9 + brightMagenta: 75.8 + brightCyan: 71.9 + brightWhite: 106.9 diff --git a/themes/rainglow--blink-light.yaml b/themes/rainglow--blink-light.yaml new file mode 100644 index 00000000..37bad38c --- /dev/null +++ b/themes/rainglow--blink-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (blink-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#6A7E89" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#5298C4" + yellow: "#D4856A" + blue: "#43B5B3" + magenta: "#D4856A" + cyan: "#43B5B3" + white: "#778B96" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#9EC5DE" + brightYellow: "#EBC6B9" + brightBlue: "#8AD4D2" + brightMagenta: "#EBC6B9" + brightCyan: "#8AD4D2" + brightWhite: "#A2B0B7" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 69.3 + black: 0 + red: 80.3 + green: 58.5 + yellow: 54.4 + blue: 48.3 + magenta: 54.4 + cyan: 48.3 + white: 63.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 34.1 + brightYellow: 26.3 + brightBlue: 30 + brightMagenta: 26.3 + brightCyan: 30 + brightWhite: 43.9 diff --git a/themes/rainglow--blink.yaml b/themes/rainglow--blink.yaml new file mode 100644 index 00000000..6d480674 --- /dev/null +++ b/themes/rainglow--blink.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (blink)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#283035" + fg: "#C0CCDB" + black: "#333D44" + red: "#BA0E2E" + green: "#5298C4" + yellow: "#D4856A" + blue: "#43B5B3" + magenta: "#D4856A" + cyan: "#43B5B3" + white: "#D0D9E4" + brightBlack: "#54656F" + brightRed: "#F03E5F" + brightGreen: "#9EC5DE" + brightYellow: "#EBC6B9" + brightBlue: "#8AD4D2" + brightMagenta: "#EBC6B9" + brightCyan: "#8AD4D2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 235 + pair: null + contrast: + fg: 70 + black: 0 + red: 16.6 + green: 38.4 + yellow: 42.5 + blue: 48.9 + magenta: 42.5 + cyan: 48.9 + white: 78.1 + brightBlack: 16.7 + brightRed: 32.9 + brightGreen: 63.6 + brightYellow: 71.9 + brightBlue: 68 + brightMagenta: 71.9 + brightCyan: 68 + brightWhite: 103 diff --git a/themes/rainglow--bold-contrast.yaml b/themes/rainglow--bold-contrast.yaml new file mode 100644 index 00000000..d599302c --- /dev/null +++ b/themes/rainglow--bold-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (bold-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0F0D0D" + fg: "#FFFFFF" + black: "#1D1919" + red: "#BA0E2E" + green: "#3D8E91" + yellow: "#F0624B" + blue: "#B4B7AD" + magenta: "#F0624B" + cyan: "#3D8E91" + white: "#FFFFFF" + brightBlack: "#463C3C" + brightRed: "#F03E5F" + brightGreen: "#71C0C3" + brightYellow: "#F8B4A9" + brightBlue: "#E6E7E3" + brightMagenta: "#F8B4A9" + brightCyan: "#71C0C3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.6 + black: 0 + red: 21.2 + green: 35.7 + yellow: 43 + blue: 62.4 + magenta: 43 + cyan: 35.7 + white: 107.6 + brightBlack: 7.6 + brightRed: 37.5 + brightGreen: 61.1 + brightYellow: 71 + brightBlue: 91.7 + brightMagenta: 71 + brightCyan: 61.1 + brightWhite: 107.6 diff --git a/themes/rainglow--bold-light.yaml b/themes/rainglow--bold-light.yaml new file mode 100644 index 00000000..6b5616df --- /dev/null +++ b/themes/rainglow--bold-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (bold-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#555555" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#3D8E91" + yellow: "#F0624B" + blue: "#888C81" + magenta: "#F0624B" + cyan: "#3D8E91" + white: "#626262" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#71C0C3" + brightYellow: "#F8B4A9" + brightBlue: "#BABDB6" + brightMagenta: "#F8B4A9" + brightCyan: "#71C0C3" + brightWhite: "#888888" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.9 + black: 0 + red: 80.3 + green: 65.6 + yellow: 58.4 + blue: 61.9 + magenta: 58.4 + cyan: 65.6 + white: 80.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 40.8 + brightYellow: 31.4 + brightBlue: 36.2 + brightMagenta: 31.4 + brightCyan: 40.8 + brightWhite: 63.1 diff --git a/themes/rainglow--bold.yaml b/themes/rainglow--bold.yaml new file mode 100644 index 00000000..680e7d42 --- /dev/null +++ b/themes/rainglow--bold.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (bold)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2A2626" + fg: "#FFFFFF" + black: "#373232" + red: "#BA0E2E" + green: "#3D8E91" + yellow: "#F0624B" + blue: "#B4B7AD" + magenta: "#F0624B" + cyan: "#3D8E91" + white: "#FFFFFF" + brightBlack: "#605656" + brightRed: "#F03E5F" + brightGreen: "#71C0C3" + brightYellow: "#F8B4A9" + brightBlue: "#E6E7E3" + brightMagenta: "#F8B4A9" + brightCyan: "#71C0C3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.6 + black: 0 + red: 18.3 + green: 32.8 + yellow: 40.1 + blue: 59.5 + magenta: 40.1 + cyan: 32.8 + white: 104.6 + brightBlack: 14.1 + brightRed: 34.5 + brightGreen: 58.2 + brightYellow: 68.1 + brightBlue: 88.7 + brightMagenta: 68.1 + brightCyan: 58.2 + brightWhite: 104.6 diff --git a/themes/rainglow--boxuk-contrast.yaml b/themes/rainglow--boxuk-contrast.yaml new file mode 100644 index 00000000..1766e6c6 --- /dev/null +++ b/themes/rainglow--boxuk-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (boxuk-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#111519" + fg: "#FFFFFF" + black: "#1B2228" + red: "#BA0E2E" + green: "#017C9D" + yellow: "#019D76" + blue: "#15B8AE" + magenta: "#017C9D" + cyan: "#019D76" + white: "#FFFFFF" + brightBlack: "#3A4856" + brightRed: "#F03E5F" + brightGreen: "#07C9FD" + brightYellow: "#07FDC0" + brightBlue: "#49EAE0" + brightMagenta: "#07C9FD" + brightCyan: "#07FDC0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + pair: null + contrast: + fg: 107.1 + black: 0 + red: 20.7 + green: 28.2 + yellow: 39.5 + blue: 53.2 + magenta: 28.2 + cyan: 39.5 + white: 107.1 + brightBlack: 9.9 + brightRed: 37 + brightGreen: 64.9 + brightYellow: 87.6 + brightBlue: 80 + brightMagenta: 64.9 + brightCyan: 87.6 + brightWhite: 107.1 diff --git a/themes/rainglow--boxuk-light.yaml b/themes/rainglow--boxuk-light.yaml new file mode 100644 index 00000000..3b0c3356 --- /dev/null +++ b/themes/rainglow--boxuk-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (boxuk-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#414F5C" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#017C9D" + yellow: "#019D76" + blue: "#15B8AE" + magenta: "#017C9D" + cyan: "#019D76" + white: "#4C5C6B" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#07C9FD" + brightYellow: "#07FDC0" + brightBlue: "#49EAE0" + brightMagenta: "#07C9FD" + brightCyan: "#07FDC0" + brightWhite: "#6C8297" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89 + black: 0 + red: 80.3 + green: 72.7 + yellow: 61.4 + blue: 48 + magenta: 72.7 + cyan: 61.4 + white: 83.8 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 36.7 + brightYellow: 15.4 + brightBlue: 22.5 + brightMagenta: 36.7 + brightCyan: 15.4 + brightWhite: 67.1 diff --git a/themes/rainglow--boxuk.yaml b/themes/rainglow--boxuk.yaml new file mode 100644 index 00000000..7cc53ab5 --- /dev/null +++ b/themes/rainglow--boxuk.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (boxuk)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2A353F" + fg: "#FFFFFF" + black: "#34424E" + red: "#BA0E2E" + green: "#017C9D" + yellow: "#019D76" + blue: "#15B8AE" + magenta: "#017C9D" + cyan: "#019D76" + white: "#FFFFFF" + brightBlack: "#53687C" + brightRed: "#F03E5F" + brightGreen: "#07C9FD" + brightYellow: "#07FDC0" + brightBlue: "#49EAE0" + brightMagenta: "#07C9FD" + brightCyan: "#07FDC0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 246 + pair: null + contrast: + fg: 101.8 + black: 0 + red: 15.4 + green: 22.9 + yellow: 34.2 + blue: 47.9 + magenta: 22.9 + cyan: 34.2 + white: 101.8 + brightBlack: 16.9 + brightRed: 31.7 + brightGreen: 59.7 + brightYellow: 82.3 + brightBlue: 74.7 + brightMagenta: 59.7 + brightCyan: 82.3 + brightWhite: 101.8 diff --git a/themes/rainglow--brave-contrast.yaml b/themes/rainglow--brave-contrast.yaml new file mode 100644 index 00000000..d7b4b106 --- /dev/null +++ b/themes/rainglow--brave-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (brave-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#101216" + fg: "#D6DBDB" + black: "#1B1E25" + red: "#BA0E2E" + green: "#BC4331" + yellow: "#908BBC" + blue: "#91B9C9" + magenta: "#ABAAB7" + cyan: "#908BBC" + white: "#E4E7E7" + brightBlack: "#3B4251" + brightRed: "#F03E5F" + brightGreen: "#DC8477" + brightYellow: "#CECCE1" + brightBlue: "#D5E5EB" + brightMagenta: "#E2E1E6" + brightCyan: "#CECCE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.6 + black: 0 + red: 20.9 + green: 25.9 + yellow: 42.2 + blue: 60.5 + magenta: 56.3 + cyan: 42.2 + white: 91.3 + brightBlack: 8.5 + brightRed: 37.2 + brightGreen: 48.2 + brightYellow: 76.3 + brightBlue: 88.7 + brightMagenta: 88.3 + brightCyan: 76.3 + brightWhite: 107.3 diff --git a/themes/rainglow--brave-light.yaml b/themes/rainglow--brave-light.yaml new file mode 100644 index 00000000..e0d396b0 --- /dev/null +++ b/themes/rainglow--brave-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (brave-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#F7F9F9" + fg: "#2C2D2D" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#BC4331" + yellow: "#7873A0" + blue: "#6E909E" + magenta: "#ABAAB7" + cyan: "#7873A0" + white: "#393A3A" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DC8477" + brightYellow: "#B3B0C9" + brightBlue: "#ABBFC7" + brightMagenta: "#E2E1E6" + brightCyan: "#B3B0C9" + brightWhite: "#5E6161" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.6 + black: 0 + red: 76.5 + green: 71.4 + yellow: 66.8 + blue: 57.8 + magenta: 41.4 + cyan: 66.8 + white: 92.5 + brightBlack: 0 + brightRed: 60 + brightGreen: 49.2 + brightYellow: 37.4 + brightBlue: 32.5 + brightMagenta: 11.1 + brightCyan: 37.4 + brightWhite: 77.3 diff --git a/themes/rainglow--brave.yaml b/themes/rainglow--brave.yaml new file mode 100644 index 00000000..da0096a3 --- /dev/null +++ b/themes/rainglow--brave.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (brave)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#333846" + fg: "#D6DBDB" + black: "#3E4455" + red: "#BA0E2E" + green: "#BC4331" + yellow: "#908BBC" + blue: "#91B9C9" + magenta: "#ABAAB7" + cyan: "#908BBC" + white: "#E4E7E7" + brightBlack: "#5E6781" + brightRed: "#F03E5F" + brightGreen: "#DC8477" + brightYellow: "#CECCE1" + brightBlue: "#D5E5EB" + brightMagenta: "#E2E1E6" + brightCyan: "#CECCE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 270 + pair: null + contrast: + fg: 76.8 + black: 0 + red: 14.1 + green: 19.1 + yellow: 35.4 + blue: 53.8 + magenta: 49.5 + cyan: 35.4 + white: 84.5 + brightBlack: 16.3 + brightRed: 30.4 + brightGreen: 41.5 + brightYellow: 69.5 + brightBlue: 81.9 + brightMagenta: 81.5 + brightCyan: 69.5 + brightWhite: 100.5 diff --git a/themes/rainglow--carbonight-contrast.yaml b/themes/rainglow--carbonight-contrast.yaml new file mode 100644 index 00000000..523caebd --- /dev/null +++ b/themes/rainglow--carbonight-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (carbonight-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#C4C4C4" + yellow: "#8C8C8C" + blue: "#FFFFFF" + magenta: "#EEEEEE" + cyan: "#FFFFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#F7F7F7" + brightYellow: "#BFBFBF" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 21.5 + green: 70.9 + yellow: 40.6 + blue: 107.9 + magenta: 96.8 + cyan: 107.9 + white: 107.9 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 102.6 + brightYellow: 68 + brightBlue: 107.9 + brightMagenta: 107.9 + brightCyan: 107.9 + brightWhite: 107.9 diff --git a/themes/rainglow--carbonight-light.yaml b/themes/rainglow--carbonight-light.yaml new file mode 100644 index 00000000..af1ef128 --- /dev/null +++ b/themes/rainglow--carbonight-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (carbonight-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#2E2C2B" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#C4C4C4" + yellow: "#8C8C8C" + blue: "#222222" + magenta: "#555555" + cyan: "#222222" + white: "#3B3937" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F7F7F7" + brightYellow: "#BFBFBF" + brightBlue: "#555555" + brightMagenta: "#888888" + brightCyan: "#555555" + brightWhite: "#635E5C" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100.5 + black: 0 + red: 80.3 + green: 31.8 + yellow: 61.1 + blue: 102.9 + magenta: 85.9 + cyan: 102.9 + white: 96.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 0 + brightYellow: 34.5 + brightBlue: 85.9 + brightMagenta: 63.1 + brightCyan: 85.9 + brightWhite: 81.8 diff --git a/themes/rainglow--carbonight.yaml b/themes/rainglow--carbonight.yaml new file mode 100644 index 00000000..4f7432f6 --- /dev/null +++ b/themes/rainglow--carbonight.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (carbonight)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2E2C2B" + fg: "#B0B0B0" + black: "#3B3937" + red: "#BA0E2E" + green: "#C4C4C4" + yellow: "#8C8C8C" + blue: "#FFFFFF" + magenta: "#EEEEEE" + cyan: "#FFFFFF" + white: "#BDBDBD" + brightBlack: "#635E5C" + brightRed: "#F03E5F" + brightGreen: "#F7F7F7" + brightYellow: "#BFBFBF" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#E3E3E3" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 55.2 + black: 0 + red: 17.2 + green: 66.6 + yellow: 36.3 + blue: 103.6 + magenta: 92.4 + cyan: 103.6 + white: 62.6 + brightBlack: 15.8 + brightRed: 33.5 + brightGreen: 98.3 + brightYellow: 63.7 + brightBlue: 103.6 + brightMagenta: 103.6 + brightCyan: 103.6 + brightWhite: 85.4 diff --git a/themes/rainglow--chocolate-contrast.yaml b/themes/rainglow--chocolate-contrast.yaml new file mode 100644 index 00000000..177f66fc --- /dev/null +++ b/themes/rainglow--chocolate-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (chocolate-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#150F08" + fg: "#FFFFFF" + black: "#271C0F" + red: "#BA0E2E" + green: "#8B6E46" + yellow: "#CCB697" + blue: "#E2CDB0" + magenta: "#B99768" + cyan: "#8B6E46" + white: "#FFFFFF" + brightBlack: "#5F4424" + brightRed: "#F03E5F" + brightGreen: "#BCA17B" + brightYellow: "#EEE6DB" + brightBlue: "#FDFCFB" + brightMagenta: "#D9C7AE" + brightCyan: "#BCA17B" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 71 + pair: null + contrast: + fg: 107.4 + black: 0 + red: 21 + green: 28.3 + yellow: 64.2 + blue: 77.5 + magenta: 48.6 + cyan: 28.3 + white: 107.4 + brightBlack: 11.3 + brightRed: 37.3 + brightGreen: 53.1 + brightYellow: 91.8 + brightBlue: 105.5 + brightMagenta: 73.7 + brightCyan: 53.1 + brightWhite: 107.4 diff --git a/themes/rainglow--chocolate-light.yaml b/themes/rainglow--chocolate-light.yaml new file mode 100644 index 00000000..d374b1c8 --- /dev/null +++ b/themes/rainglow--chocolate-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (chocolate-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#150F08" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#5B472C" + yellow: "#A08F76" + blue: "#B5A48D" + magenta: "#8E744F" + cyan: "#5B472C" + white: "#271C0F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#A07D4D" + brightYellow: "#CAC0B2" + brightBlue: "#DDD5CB" + brightMagenta: "#BCA687" + brightCyan: "#A07D4D" + brightWhite: "#5F4424" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.4 + black: 0 + red: 80.3 + green: 90.1 + yellow: 58.5 + blue: 47.7 + magenta: 70.5 + cyan: 90.1 + white: 103.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 65.4 + brightYellow: 33.3 + brightBlue: 21.6 + brightMagenta: 46.3 + brightCyan: 65.4 + brightWhite: 90.5 diff --git a/themes/rainglow--chocolate.yaml b/themes/rainglow--chocolate.yaml new file mode 100644 index 00000000..0d572a59 --- /dev/null +++ b/themes/rainglow--chocolate.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (chocolate)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#261B0E" + fg: "#FFFFFF" + black: "#392815" + red: "#BA0E2E" + green: "#8B6E46" + yellow: "#CCB697" + blue: "#E2CDB0" + magenta: "#B99768" + cyan: "#8B6E46" + white: "#FFFFFF" + brightBlack: "#715029" + brightRed: "#F03E5F" + brightGreen: "#BCA17B" + brightYellow: "#EEE6DB" + brightBlue: "#FDFCFB" + brightMagenta: "#D9C7AE" + brightCyan: "#BCA17B" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 70 + pair: null + contrast: + fg: 106.1 + black: 0 + red: 19.8 + green: 27 + yellow: 62.9 + blue: 76.3 + magenta: 47.3 + cyan: 27 + white: 106.1 + brightBlack: 15.1 + brightRed: 36.1 + brightGreen: 51.8 + brightYellow: 90.5 + brightBlue: 104.2 + brightMagenta: 72.4 + brightCyan: 51.8 + brightWhite: 106.1 diff --git a/themes/rainglow--codecourse-contrast.yaml b/themes/rainglow--codecourse-contrast.yaml new file mode 100644 index 00000000..333b9977 --- /dev/null +++ b/themes/rainglow--codecourse-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (codecourse-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#05080A" + fg: "#B6CED8" + black: "#0D161B" + red: "#BA0E2E" + green: "#1EA8FC" + yellow: "#5DCDFD" + blue: "#FFFFFF" + magenta: "#1EA8FC" + cyan: "#5DCDFD" + white: "#C7D9E1" + brightBlack: "#273E4E" + brightRed: "#F03E5F" + brightGreen: "#83CFFD" + brightYellow: "#C2ECFE" + brightBlue: "#FFFFFF" + brightMagenta: "#83CFFD" + brightCyan: "#C2ECFE" + brightWhite: "#F8FBFC" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 74.4 + black: 0 + red: 21.4 + green: 51.6 + yellow: 69.2 + blue: 107.8 + magenta: 51.6 + cyan: 69.2 + white: 81.6 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 72.3 + brightYellow: 91.2 + brightBlue: 107.8 + brightMagenta: 72.3 + brightCyan: 91.2 + brightWhite: 104.8 diff --git a/themes/rainglow--codecourse-light.yaml b/themes/rainglow--codecourse-light.yaml new file mode 100644 index 00000000..2668a4f4 --- /dev/null +++ b/themes/rainglow--codecourse-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (codecourse-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#547F91" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#1EA8FC" + yellow: "#5DCDFD" + blue: "#547F91" + magenta: "#1EA8FC" + cyan: "#5DCDFD" + white: "#5D8DA1" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#83CFFD" + brightYellow: "#C2ECFE" + brightBlue: "#8EAFBD" + brightMagenta: "#83CFFD" + brightCyan: "#C2ECFE" + brightWhite: "#8EAFBD" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 70.1 + black: 0 + red: 80.3 + green: 50.3 + yellow: 33.4 + blue: 70.1 + magenta: 50.3 + cyan: 33.4 + white: 63.8 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 30.4 + brightYellow: 12.7 + brightBlue: 45.9 + brightMagenta: 30.4 + brightCyan: 12.7 + brightWhite: 45.9 diff --git a/themes/rainglow--codecourse.yaml b/themes/rainglow--codecourse.yaml new file mode 100644 index 00000000..1177360a --- /dev/null +++ b/themes/rainglow--codecourse.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (codecourse)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#19272D" + fg: "#B6CED8" + black: "#22353D" + red: "#BA0E2E" + green: "#1EA8FC" + yellow: "#5DCDFD" + blue: "#FFFFFF" + magenta: "#1EA8FC" + cyan: "#5DCDFD" + white: "#C7D9E1" + brightBlack: "#3D606F" + brightRed: "#F03E5F" + brightGreen: "#83CFFD" + brightYellow: "#C2ECFE" + brightBlue: "#FFFFFF" + brightMagenta: "#83CFFD" + brightCyan: "#C2ECFE" + brightWhite: "#F8FBFC" +meta: + mode: "dark" + accent: "orange" + hue: 226 + pair: null + contrast: + fg: 71.5 + black: 0 + red: 18.6 + green: 48.7 + yellow: 66.3 + blue: 104.9 + magenta: 48.7 + cyan: 66.3 + white: 78.7 + brightBlack: 15.7 + brightRed: 34.9 + brightGreen: 69.4 + brightYellow: 88.3 + brightBlue: 104.9 + brightMagenta: 69.4 + brightCyan: 88.3 + brightWhite: 101.9 diff --git a/themes/rainglow--coffee-contrast.yaml b/themes/rainglow--coffee-contrast.yaml new file mode 100644 index 00000000..abaa1e1c --- /dev/null +++ b/themes/rainglow--coffee-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (coffee-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0F0C0C" + fg: "#C4BABB" + black: "#1D1717" + red: "#BA0E2E" + green: "#0A9F9B" + yellow: "#F5F3EB" + blue: "#E77757" + magenta: "#80B2B0" + cyan: "#E77757" + white: "#D0C8C9" + brightBlack: "#483939" + brightRed: "#F03E5F" + brightGreen: "#1EF1EB" + brightYellow: "#FFFFFF" + brightBlue: "#F4BFB0" + brightMagenta: "#C0D8D7" + brightCyan: "#F4BFB0" + brightWhite: "#F3F1F1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 66.2 + black: 0 + red: 21.2 + green: 42.1 + yellow: 99.6 + blue: 46.3 + magenta: 55.4 + cyan: 46.3 + white: 74.1 + brightBlack: 0 + brightRed: 37.5 + brightGreen: 83.8 + brightYellow: 107.6 + brightBlue: 74.8 + brightMagenta: 79.7 + brightCyan: 74.8 + brightWhite: 98.7 diff --git a/themes/rainglow--coffee-light.yaml b/themes/rainglow--coffee-light.yaml new file mode 100644 index 00000000..91aca656 --- /dev/null +++ b/themes/rainglow--coffee-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (coffee-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#F4F2F2" + fg: "#282122" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#0A9F9B" + yellow: "#282122" + blue: "#E77757" + magenta: "#80B2B0" + cyan: "#E77757" + white: "#362D2E" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#1EF1EB" + brightYellow: "#604F52" + brightBlue: "#F4BFB0" + brightMagenta: "#C0D8D7" + brightCyan: "#F4BFB0" + brightWhite: "#604F52" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.2 + black: 0 + red: 72.8 + green: 51.8 + yellow: 95.2 + blue: 47.7 + magenta: 38.9 + cyan: 47.7 + white: 92.3 + brightBlack: 0 + brightRed: 56.4 + brightGreen: 11.9 + brightYellow: 79.2 + brightBlue: 20.4 + brightMagenta: 15.8 + brightCyan: 20.4 + brightWhite: 79.2 diff --git a/themes/rainglow--coffee.yaml b/themes/rainglow--coffee.yaml new file mode 100644 index 00000000..c5cd0de8 --- /dev/null +++ b/themes/rainglow--coffee.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (coffee)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#282122" + fg: "#C4BABB" + black: "#362D2E" + red: "#BA0E2E" + green: "#0A9F9B" + yellow: "#F5F3EB" + blue: "#E77757" + magenta: "#80B2B0" + cyan: "#E77757" + white: "#D0C8C9" + brightBlack: "#604F52" + brightRed: "#F03E5F" + brightGreen: "#1EF1EB" + brightYellow: "#FFFFFF" + brightBlue: "#F4BFB0" + brightMagenta: "#C0D8D7" + brightCyan: "#F4BFB0" + brightWhite: "#F3F1F1" +meta: + mode: "dark" + accent: "orange" + hue: 8 + pair: null + contrast: + fg: 63.9 + black: 0 + red: 19 + green: 39.9 + yellow: 97.4 + blue: 44 + magenta: 53.1 + cyan: 44 + white: 71.8 + brightBlack: 12.9 + brightRed: 35.3 + brightGreen: 81.5 + brightYellow: 105.3 + brightBlue: 72.5 + brightMagenta: 77.4 + brightCyan: 72.5 + brightWhite: 96.4 diff --git a/themes/rainglow--comrade-contrast.yaml b/themes/rainglow--comrade-contrast.yaml new file mode 100644 index 00000000..4165635f --- /dev/null +++ b/themes/rainglow--comrade-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (comrade-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#121414" + fg: "#D6DBDB" + black: "#1E2121" + red: "#BA0E2E" + green: "#C24E4B" + yellow: "#9BB7A7" + blue: "#F9F7F1" + magenta: "#9BB7A7" + cyan: "#C24E4B" + white: "#E4E7E7" + brightBlack: "#424A4A" + brightRed: "#F03E5F" + brightGreen: "#DC9997" + brightYellow: "#D6E2DB" + brightBlue: "#FFFFFF" + brightMagenta: "#D6E2DB" + brightCyan: "#DC9997" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.4 + black: 0 + red: 20.8 + green: 29.2 + yellow: 59.1 + blue: 101.9 + magenta: 59.1 + cyan: 29.2 + white: 91.2 + brightBlack: 10.7 + brightRed: 37.1 + brightGreen: 55.7 + brightYellow: 86.6 + brightBlue: 107.2 + brightMagenta: 86.6 + brightCyan: 55.7 + brightWhite: 107.2 diff --git a/themes/rainglow--comrade-light.yaml b/themes/rainglow--comrade-light.yaml new file mode 100644 index 00000000..7485b813 --- /dev/null +++ b/themes/rainglow--comrade-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (comrade-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#D6DBDB" + fg: "#343939" + black: "#E4E7E7" + red: "#BA0E2E" + green: "#C24E4B" + yellow: "#7F9689" + blue: "#343939" + magenta: "#7F9689" + cyan: "#C24E4B" + white: "#404646" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DC9997" + brightYellow: "#B7C4BD" + brightBlue: "#656E6E" + brightMagenta: "#B7C4BD" + brightCyan: "#DC9997" + brightWhite: "#656E6E" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 75.3 + black: 0 + red: 58.7 + green: 50.1 + yellow: 37.1 + blue: 75.3 + magenta: 37.1 + cyan: 50.1 + white: 70.6 + brightBlack: 22.1 + brightRed: 42.2 + brightGreen: 24 + brightYellow: 11.8 + brightBlue: 54.3 + brightMagenta: 11.8 + brightCyan: 24 + brightWhite: 54.3 diff --git a/themes/rainglow--comrade.yaml b/themes/rainglow--comrade.yaml new file mode 100644 index 00000000..dc94e168 --- /dev/null +++ b/themes/rainglow--comrade.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (comrade)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#343939" + fg: "#D6DBDB" + black: "#404646" + red: "#BA0E2E" + green: "#C24E4B" + yellow: "#9BB7A7" + blue: "#F9F7F1" + magenta: "#9BB7A7" + cyan: "#C24E4B" + white: "#E4E7E7" + brightBlack: "#656E6E" + brightRed: "#F03E5F" + brightGreen: "#DC9997" + brightYellow: "#D6E2DB" + brightBlue: "#FFFFFF" + brightMagenta: "#D6E2DB" + brightCyan: "#DC9997" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 76.8 + black: 0 + red: 14.2 + green: 22.6 + yellow: 52.5 + blue: 95.3 + magenta: 52.5 + cyan: 22.6 + white: 84.6 + brightBlack: 18.4 + brightRed: 30.5 + brightGreen: 49.1 + brightYellow: 80 + brightBlue: 100.6 + brightMagenta: 80 + brightCyan: 49.1 + brightWhite: 100.6 diff --git a/themes/rainglow--crackpot-contrast.yaml b/themes/rainglow--crackpot-contrast.yaml new file mode 100644 index 00000000..57cdc0b6 --- /dev/null +++ b/themes/rainglow--crackpot-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (crackpot-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#181726" + fg: "#D2C9EF" + black: "#222136" + red: "#BA0E2E" + green: "#E4B363" + yellow: "#EF6461" + blue: "#908CD8" + magenta: "#E4B363" + cyan: "#E8E9EB" + white: "#E2DDF5" + brightBlack: "#403D66" + brightRed: "#F03E5F" + brightGreen: "#F3DDBA" + brightYellow: "#F8BFBE" + brightBlue: "#DAD8F2" + brightMagenta: "#F3DDBA" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 287 + pair: null + contrast: + fg: 75.7 + black: 0 + red: 20.3 + green: 64.6 + yellow: 42.7 + blue: 43.5 + magenta: 64.6 + cyan: 92.3 + white: 86.6 + brightBlack: 7.9 + brightRed: 36.6 + brightGreen: 86.5 + brightYellow: 75.1 + brightBlue: 83.2 + brightMagenta: 86.5 + brightCyan: 106.7 + brightWhite: 106.7 diff --git a/themes/rainglow--crackpot-light.yaml b/themes/rainglow--crackpot-light.yaml new file mode 100644 index 00000000..783e91b8 --- /dev/null +++ b/themes/rainglow--crackpot-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (crackpot-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#E6E3EF" + fg: "#3A385B" + black: "#F4F3F8" + red: "#BA0E2E" + green: "#E4B363" + yellow: "#EF6461" + blue: "#908CD8" + magenta: "#E4B363" + cyan: "#3A385B" + white: "#44426B" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F3DDBA" + brightYellow: "#F8BFBE" + brightBlue: "#DAD8F2" + brightMagenta: "#F3DDBA" + brightCyan: "#625F9A" + brightWhite: "#625F9A" +meta: + mode: "light" + accent: "orange" + hue: 298 + pair: null + contrast: + fg: 80 + black: 7.7 + red: 64.7 + green: 21 + yellow: 42.2 + blue: 41.4 + magenta: 21 + cyan: 80 + white: 76 + brightBlack: 15.2 + brightRed: 48.3 + brightGreen: 0 + brightYellow: 11.1 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 63.3 + brightWhite: 63.3 diff --git a/themes/rainglow--crackpot.yaml b/themes/rainglow--crackpot.yaml new file mode 100644 index 00000000..4fd67aef --- /dev/null +++ b/themes/rainglow--crackpot.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (crackpot)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#3A385B" + fg: "#D2C9EF" + black: "#44426B" + red: "#BA0E2E" + green: "#E4B363" + yellow: "#EF6461" + blue: "#908CD8" + magenta: "#E4B363" + cyan: "#E8E9EB" + white: "#E2DDF5" + brightBlack: "#625F9A" + brightRed: "#F03E5F" + brightGreen: "#F3DDBA" + brightYellow: "#F8BFBE" + brightBlue: "#DAD8F2" + brightMagenta: "#F3DDBA" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 286 + pair: null + contrast: + fg: 68.4 + black: 0 + red: 13 + green: 57.3 + yellow: 35.4 + blue: 36.2 + magenta: 57.3 + cyan: 85 + white: 79.3 + brightBlack: 14.4 + brightRed: 29.3 + brightGreen: 79.2 + brightYellow: 67.7 + brightBlue: 75.9 + brightMagenta: 79.2 + brightCyan: 99.4 + brightWhite: 99.4 diff --git a/themes/rainglow--crisp-contrast.yaml b/themes/rainglow--crisp-contrast.yaml new file mode 100644 index 00000000..2613185f --- /dev/null +++ b/themes/rainglow--crisp-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (crisp-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0C090C" + fg: "#FFFFFF" + black: "#1B141B" + red: "#BA0E2E" + green: "#CBA0CD" + yellow: "#765478" + blue: "#FC6A0F" + magenta: "#FC6A0F" + cyan: "#CBA0CD" + white: "#FFFFFF" + brightBlack: "#463546" + brightRed: "#F03E5F" + brightGreen: "#F0E3F0" + brightYellow: "#A987AB" + brightBlue: "#FDA974" + brightMagenta: "#FDA974" + brightCyan: "#F0E3F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.7 + black: 0 + red: 21.4 + green: 58.3 + yellow: 20.2 + blue: 47.1 + magenta: 47.1 + cyan: 58.3 + white: 107.7 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 92 + brightYellow: 43.5 + brightBlue: 66.6 + brightMagenta: 66.6 + brightCyan: 92 + brightWhite: 107.7 diff --git a/themes/rainglow--crisp-light.yaml b/themes/rainglow--crisp-light.yaml new file mode 100644 index 00000000..42b61074 --- /dev/null +++ b/themes/rainglow--crisp-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (crisp-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#221A22" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#99769B" + yellow: "#765478" + blue: "#FC6A0F" + magenta: "#FC6A0F" + cyan: "#99769B" + white: "#302530" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C5B1C6" + brightYellow: "#A987AB" + brightBlue: "#FDA974" + brightMagenta: "#FDA974" + brightCyan: "#C5B1C6" + brightWhite: "#5C465C" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.9 + black: 0 + red: 80.3 + green: 66.2 + yellow: 81.5 + blue: 54.6 + magenta: 54.6 + cyan: 66.2 + white: 101.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 38.8 + brightYellow: 58.1 + brightBlue: 35.7 + brightMagenta: 35.7 + brightCyan: 38.8 + brightWhite: 89.1 diff --git a/themes/rainglow--crisp.yaml b/themes/rainglow--crisp.yaml new file mode 100644 index 00000000..c04ab04b --- /dev/null +++ b/themes/rainglow--crisp.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (crisp)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#221A22" + fg: "#FFFFFF" + black: "#302530" + red: "#BA0E2E" + green: "#CBA0CD" + yellow: "#765478" + blue: "#FC6A0F" + magenta: "#FC6A0F" + cyan: "#CBA0CD" + white: "#FFFFFF" + brightBlack: "#5C465C" + brightRed: "#F03E5F" + brightGreen: "#F0E3F0" + brightYellow: "#A987AB" + brightBlue: "#FDA974" + brightMagenta: "#FDA974" + brightCyan: "#F0E3F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 326 + pair: null + contrast: + fg: 106.2 + black: 0 + red: 19.8 + green: 56.8 + yellow: 18.7 + blue: 45.6 + magenta: 45.6 + cyan: 56.8 + white: 106.2 + brightBlack: 11.5 + brightRed: 36.1 + brightGreen: 90.5 + brightYellow: 42 + brightBlue: 65.1 + brightMagenta: 65.1 + brightCyan: 90.5 + brightWhite: 106.2 diff --git a/themes/rainglow--dare-contrast.yaml b/themes/rainglow--dare-contrast.yaml new file mode 100644 index 00000000..498f5af1 --- /dev/null +++ b/themes/rainglow--dare-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (dare-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#17191C" + fg: "#C0CCDB" + black: "#23262A" + red: "#BA0E2E" + green: "#3A8881" + yellow: "#D15736" + blue: "#FFFFFF" + magenta: "#3A8881" + cyan: "#D15736" + white: "#D0D9E4" + brightBlack: "#454B54" + brightRed: "#F03E5F" + brightGreen: "#69BFB7" + brightYellow: "#E49C89" + brightBlue: "#FFFFFF" + brightMagenta: "#69BFB7" + brightCyan: "#E49C89" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.7 + black: 0 + red: 20.3 + green: 31.8 + yellow: 33.1 + blue: 106.7 + magenta: 31.8 + cyan: 33.1 + white: 81.7 + brightBlack: 10.9 + brightRed: 36.6 + brightGreen: 58.8 + brightYellow: 57.1 + brightBlue: 106.7 + brightMagenta: 58.8 + brightCyan: 57.1 + brightWhite: 106.7 diff --git a/themes/rainglow--dare-light.yaml b/themes/rainglow--dare-light.yaml new file mode 100644 index 00000000..e92bd451 --- /dev/null +++ b/themes/rainglow--dare-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (dare-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#6E7A87" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#3A8881" + yellow: "#D15736" + blue: "#6E7A87" + magenta: "#3A8881" + cyan: "#D15736" + white: "#7B8793" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#69BFB7" + brightYellow: "#E49C89" + brightBlue: "#A5ADB6" + brightMagenta: "#69BFB7" + brightCyan: "#E49C89" + brightWhite: "#A5ADB6" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 70.4 + black: 0 + red: 80.3 + green: 68.6 + yellow: 67.4 + blue: 70.4 + magenta: 68.6 + cyan: 67.4 + white: 64.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 42.2 + brightYellow: 43.8 + brightBlue: 44.8 + brightMagenta: 42.2 + brightCyan: 43.8 + brightWhite: 44.8 diff --git a/themes/rainglow--dare.yaml b/themes/rainglow--dare.yaml new file mode 100644 index 00000000..939a6e5b --- /dev/null +++ b/themes/rainglow--dare.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (dare)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#32373D" + fg: "#C0CCDB" + black: "#3D444B" + red: "#BA0E2E" + green: "#3A8881" + yellow: "#D15736" + blue: "#FFFFFF" + magenta: "#3A8881" + cyan: "#D15736" + white: "#D0D9E4" + brightBlack: "#606A75" + brightRed: "#F03E5F" + brightGreen: "#69BFB7" + brightYellow: "#E49C89" + brightBlue: "#FFFFFF" + brightMagenta: "#69BFB7" + brightCyan: "#E49C89" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + pair: null + contrast: + fg: 68 + black: 0 + red: 14.7 + green: 26.2 + yellow: 27.5 + blue: 101 + magenta: 26.2 + cyan: 27.5 + white: 76.1 + brightBlack: 17.4 + brightRed: 31 + brightGreen: 53.2 + brightYellow: 51.5 + brightBlue: 101 + brightMagenta: 53.2 + brightCyan: 51.5 + brightWhite: 101 diff --git a/themes/rainglow--darkside-contrast.yaml b/themes/rainglow--darkside-contrast.yaml new file mode 100644 index 00000000..9e5de447 --- /dev/null +++ b/themes/rainglow--darkside-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (darkside-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#000000" + fg: "#BABABA" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#1CC3E8" + yellow: "#E8341C" + blue: "#68C244" + magenta: "#F08D24" + cyan: "#8E69C9" + white: "#C7C7C7" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#79DBF1" + brightYellow: "#F18779" + brightBlue: "#A6DB91" + brightMagenta: "#F7BF83" + brightCyan: "#C7B4E4" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.2 + black: 0 + red: 21.5 + green: 61.9 + yellow: 34 + blue: 58.4 + magenta: 54.1 + cyan: 33 + white: 72.7 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 76.5 + brightYellow: 53.7 + brightBlue: 76.2 + brightMagenta: 74.3 + brightCyan: 66.4 + brightWhite: 96.1 diff --git a/themes/rainglow--darkside-light.yaml b/themes/rainglow--darkside-light.yaml new file mode 100644 index 00000000..3fa1d5cc --- /dev/null +++ b/themes/rainglow--darkside-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (darkside-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#E0E0E0" + fg: "#222324" + black: "#EDEDED" + red: "#BA0E2E" + green: "#15A2C1" + yellow: "#BF2713" + blue: "#4B8E30" + magenta: "#C1721D" + cyan: "#7B5BAF" + white: "#2E3031" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#50D0EC" + brightYellow: "#ED5E4B" + brightBlue: "#7BC85C" + brightMagenta: "#E7A45D" + brightCyan: "#B2A0D0" + brightWhite: "#545658" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 84.5 + black: 0 + red: 62.1 + green: 38.1 + yellow: 60 + blue: 49.1 + magenta: 45.9 + cyan: 58 + white: 81.4 + brightBlack: 18.2 + brightRed: 45.7 + brightGreen: 15.3 + brightYellow: 41.6 + brightBlue: 21.5 + brightMagenta: 23.3 + brightCyan: 28.6 + brightWhite: 67.4 diff --git a/themes/rainglow--darkside.yaml b/themes/rainglow--darkside.yaml new file mode 100644 index 00000000..fd47ae05 --- /dev/null +++ b/themes/rainglow--darkside.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (darkside)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#222324" + fg: "#BABABA" + black: "#2E3031" + red: "#BA0E2E" + green: "#1CC3E8" + yellow: "#E8341C" + blue: "#68C244" + magenta: "#F08D24" + cyan: "#8E69C9" + white: "#C7C7C7" + brightBlack: "#545658" + brightRed: "#F03E5F" + brightGreen: "#79DBF1" + brightYellow: "#F18779" + brightBlue: "#A6DB91" + brightMagenta: "#F7BF83" + brightCyan: "#C7B4E4" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 62.6 + black: 0 + red: 18.9 + green: 59.3 + yellow: 31.4 + blue: 55.8 + magenta: 51.5 + cyan: 30.4 + white: 70.1 + brightBlack: 13.8 + brightRed: 35.2 + brightGreen: 73.9 + brightYellow: 51.1 + brightBlue: 73.6 + brightMagenta: 71.7 + brightCyan: 63.9 + brightWhite: 93.6 diff --git a/themes/rainglow--downpour-contrast.yaml b/themes/rainglow--downpour-contrast.yaml new file mode 100644 index 00000000..b2270ce9 --- /dev/null +++ b/themes/rainglow--downpour-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (downpour-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#121419" + fg: "#D6DBDB" + black: "#1D2028" + red: "#BA0E2E" + green: "#BC4331" + yellow: "#908BBC" + blue: "#91B9C9" + magenta: "#ABAAB7" + cyan: "#908BBC" + white: "#E4E7E7" + brightBlack: "#3D4354" + brightRed: "#F03E5F" + brightGreen: "#DC8477" + brightYellow: "#CECCE1" + brightBlue: "#D5E5EB" + brightMagenta: "#E2E1E6" + brightCyan: "#CECCE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 268 + pair: null + contrast: + fg: 83.4 + black: 0 + red: 20.8 + green: 25.7 + yellow: 42.1 + blue: 60.4 + magenta: 56.2 + cyan: 42.1 + white: 91.2 + brightBlack: 8.8 + brightRed: 37.1 + brightGreen: 48.1 + brightYellow: 76.2 + brightBlue: 88.5 + brightMagenta: 88.1 + brightCyan: 76.2 + brightWhite: 107.1 diff --git a/themes/rainglow--downpour-light.yaml b/themes/rainglow--downpour-light.yaml new file mode 100644 index 00000000..596b2256 --- /dev/null +++ b/themes/rainglow--downpour-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (downpour-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#D6DBDB" + fg: "#2C323D" + black: "#E4E7E7" + red: "#BA0E2E" + green: "#BC4331" + yellow: "#736F99" + blue: "#698996" + magenta: "#787782" + cyan: "#736F99" + white: "#373E4C" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DC8477" + brightYellow: "#ADABC3" + brightBlue: "#A5B8C0" + brightMagenta: "#ADACB3" + brightCyan: "#ADABC3" + brightWhite: "#576378" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 77.4 + black: 0 + red: 58.7 + green: 53.6 + yellow: 51 + blue: 43.2 + magenta: 48.9 + cyan: 51 + white: 73.2 + brightBlack: 22.1 + brightRed: 42.2 + brightGreen: 31.3 + brightYellow: 22.4 + brightBlue: 18.4 + brightMagenta: 22.7 + brightCyan: 22.4 + brightWhite: 58.6 diff --git a/themes/rainglow--downpour.yaml b/themes/rainglow--downpour.yaml new file mode 100644 index 00000000..bd0a9d81 --- /dev/null +++ b/themes/rainglow--downpour.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (downpour)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2C323D" + fg: "#D6DBDB" + black: "#373E4C" + red: "#BA0E2E" + green: "#BC4331" + yellow: "#908BBC" + blue: "#91B9C9" + magenta: "#ABAAB7" + cyan: "#908BBC" + white: "#E4E7E7" + brightBlack: "#576378" + brightRed: "#F03E5F" + brightGreen: "#DC8477" + brightYellow: "#CECCE1" + brightBlue: "#D5E5EB" + brightMagenta: "#E2E1E6" + brightCyan: "#CECCE1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 263 + pair: null + contrast: + fg: 78.6 + black: 0 + red: 16 + green: 20.9 + yellow: 37.3 + blue: 55.6 + magenta: 51.4 + cyan: 37.3 + white: 86.3 + brightBlack: 16 + brightRed: 32.3 + brightGreen: 43.3 + brightYellow: 71.4 + brightBlue: 83.7 + brightMagenta: 83.3 + brightCyan: 71.4 + brightWhite: 102.3 diff --git a/themes/rainglow--earthsong-contrast.yaml b/themes/rainglow--earthsong-contrast.yaml new file mode 100644 index 00000000..70dcef59 --- /dev/null +++ b/themes/rainglow--earthsong-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (earthsong-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#12100F" + fg: "#EBD1B7" + black: "#201C1B" + red: "#BA0E2E" + green: "#95CC5E" + yellow: "#DB784D" + blue: "#60A365" + magenta: "#DB784D" + cyan: "#95CC5E" + white: "#F1DECB" + brightBlack: "#4A413D" + brightRed: "#F03E5F" + brightGreen: "#C8E5AB" + brightYellow: "#ECB8A2" + brightBlue: "#A1C8A4" + brightMagenta: "#ECB8A2" + brightCyan: "#C8E5AB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 80.8 + black: 0 + red: 21 + green: 66.1 + yellow: 43.9 + blue: 44.3 + magenta: 43.9 + cyan: 66.1 + white: 88 + brightBlack: 9 + brightRed: 37.3 + brightGreen: 84.7 + brightYellow: 70.1 + brightBlue: 67.1 + brightMagenta: 70.1 + brightCyan: 84.7 + brightWhite: 107.4 diff --git a/themes/rainglow--earthsong-light.yaml b/themes/rainglow--earthsong-light.yaml new file mode 100644 index 00000000..a85546af --- /dev/null +++ b/themes/rainglow--earthsong-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (earthsong-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#4D463E" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#95CC5E" + yellow: "#DB784D" + blue: "#60A365" + magenta: "#DB784D" + cyan: "#95CC5E" + white: "#5B5349" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C8E5AB" + brightYellow: "#ECB8A2" + brightBlue: "#A1C8A4" + brightMagenta: "#ECB8A2" + brightCyan: "#C8E5AB" + brightWhite: "#85796B" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.5 + black: 0 + red: 80.3 + green: 35.9 + yellow: 57.4 + blue: 57 + magenta: 57.4 + cyan: 35.9 + white: 86.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 18.4 + brightYellow: 32.1 + brightBlue: 35 + brightMagenta: 32.1 + brightCyan: 18.4 + brightWhite: 69.4 diff --git a/themes/rainglow--earthsong.yaml b/themes/rainglow--earthsong.yaml new file mode 100644 index 00000000..a2758ca1 --- /dev/null +++ b/themes/rainglow--earthsong.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (earthsong)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#36312C" + fg: "#EBD1B7" + black: "#443E37" + red: "#BA0E2E" + green: "#95CC5E" + yellow: "#DB784D" + blue: "#60A365" + magenta: "#DB784D" + cyan: "#95CC5E" + white: "#F1DECB" + brightBlack: "#6E645A" + brightRed: "#F03E5F" + brightGreen: "#C8E5AB" + brightYellow: "#ECB8A2" + brightBlue: "#A1C8A4" + brightMagenta: "#ECB8A2" + brightCyan: "#C8E5AB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 67 + pair: null + contrast: + fg: 75.7 + black: 0 + red: 15.9 + green: 61 + yellow: 38.8 + blue: 39.2 + magenta: 38.8 + cyan: 61 + white: 82.9 + brightBlack: 17.3 + brightRed: 32.2 + brightGreen: 79.6 + brightYellow: 65 + brightBlue: 62 + brightMagenta: 65 + brightCyan: 79.6 + brightWhite: 102.3 diff --git a/themes/rainglow--fodder-contrast.yaml b/themes/rainglow--fodder-contrast.yaml new file mode 100644 index 00000000..8bd9c3ae --- /dev/null +++ b/themes/rainglow--fodder-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (fodder-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#131C17" + fg: "#CCE0D6" + black: "#1D2B23" + red: "#BA0E2E" + green: "#AD9895" + yellow: "#98D046" + blue: "#FCFCFA" + magenta: "#98D046" + cyan: "#AD9895" + white: "#DCEAE3" + brightBlack: "#3C5949" + brightRed: "#F03E5F" + brightGreen: "#D9D0CE" + brightYellow: "#C5E597" + brightBlue: "#FFFFFF" + brightMagenta: "#C5E597" + brightCyan: "#D9D0CE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 160 + pair: null + contrast: + fg: 83.6 + black: 0 + red: 20.2 + green: 47.7 + yellow: 67 + blue: 104.5 + magenta: 67 + cyan: 47.7 + white: 90.7 + brightBlack: 13.9 + brightRed: 36.4 + brightGreen: 77.8 + brightYellow: 82.9 + brightBlue: 106.5 + brightMagenta: 82.9 + brightCyan: 77.8 + brightWhite: 106.5 diff --git a/themes/rainglow--fodder-light.yaml b/themes/rainglow--fodder-light.yaml new file mode 100644 index 00000000..83ec2874 --- /dev/null +++ b/themes/rainglow--fodder-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (fodder-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#CCE0D6" + fg: "#2D4137" + black: "#DCEAE3" + red: "#BA0E2E" + green: "#685B59" + yellow: "#688E2F" + blue: "#2D4137" + magenta: "#688E2F" + cyan: "#685B59" + white: "#375044" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#9C8D8B" + brightYellow: "#9CC95A" + brightBlue: "#577D6A" + brightMagenta: "#9CC95A" + brightCyan: "#9C8D8B" + brightWhite: "#577D6A" +meta: + mode: "light" + accent: "orange" + hue: 164 + pair: null + contrast: + fg: 74.3 + black: 0 + red: 59.4 + green: 61.3 + yellow: 44.6 + blue: 74.3 + magenta: 44.6 + cyan: 61.3 + white: 69.1 + brightBlack: 21.2 + brightRed: 42.9 + brightGreen: 38.1 + brightYellow: 15.7 + brightBlue: 51.1 + brightMagenta: 15.7 + brightCyan: 38.1 + brightWhite: 51.1 diff --git a/themes/rainglow--fodder.yaml b/themes/rainglow--fodder.yaml new file mode 100644 index 00000000..eb1c2baa --- /dev/null +++ b/themes/rainglow--fodder.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (fodder)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2D4137" + fg: "#CCE0D6" + black: "#375044" + red: "#BA0E2E" + green: "#AD9895" + yellow: "#98D046" + blue: "#FCFCFA" + magenta: "#98D046" + cyan: "#AD9895" + white: "#DCEAE3" + brightBlack: "#577D6A" + brightRed: "#F03E5F" + brightGreen: "#D9D0CE" + brightYellow: "#C5E597" + brightBlue: "#FFFFFF" + brightMagenta: "#C5E597" + brightCyan: "#D9D0CE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 163 + pair: null + contrast: + fg: 76.2 + black: 0 + red: 12.7 + green: 40.3 + yellow: 59.6 + blue: 97 + magenta: 59.6 + cyan: 40.3 + white: 83.3 + brightBlack: 20.9 + brightRed: 29 + brightGreen: 70.4 + brightYellow: 75.5 + brightBlue: 99.1 + brightMagenta: 75.5 + brightCyan: 70.4 + brightWhite: 99.1 diff --git a/themes/rainglow--frantic-contrast.yaml b/themes/rainglow--frantic-contrast.yaml new file mode 100644 index 00000000..b22ff788 --- /dev/null +++ b/themes/rainglow--frantic-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (frantic-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0E1114" + fg: "#AEB9C4" + black: "#181E23" + red: "#BA0E2E" + green: "#EF6462" + yellow: "#89A7BC" + blue: "#E6EAEF" + magenta: "#EF6462" + cyan: "#89A7BC" + white: "#BDC6CF" + brightBlack: "#384450" + brightRed: "#F03E5F" + brightGreen: "#F8BFBF" + brightYellow: "#CAD8E1" + brightBlue: "#FFFFFF" + brightMagenta: "#F8BFBF" + brightCyan: "#CAD8E1" + brightWhite: "#E9ECEF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 63.3 + black: 0 + red: 21 + green: 43.4 + yellow: 52 + blue: 93.4 + magenta: 43.4 + cyan: 52 + white: 70.9 + brightBlack: 8.9 + brightRed: 37.3 + brightGreen: 75.8 + brightYellow: 81.1 + brightBlue: 107.4 + brightMagenta: 75.8 + brightCyan: 81.1 + brightWhite: 94.7 diff --git a/themes/rainglow--frantic-light.yaml b/themes/rainglow--frantic-light.yaml new file mode 100644 index 00000000..260a2b43 --- /dev/null +++ b/themes/rainglow--frantic-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (frantic-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#516172" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#EF6462" + yellow: "#89A7BC" + blue: "#516172" + magenta: "#EF6462" + cyan: "#89A7BC" + white: "#5C6E81" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F8BFBF" + brightYellow: "#CAD8E1" + brightBlue: "#8294A7" + brightMagenta: "#F8BFBF" + brightCyan: "#CAD8E1" + brightWhite: "#8294A7" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 81.6 + black: 0 + red: 80.3 + green: 57.8 + yellow: 49.5 + blue: 81.6 + magenta: 57.8 + cyan: 49.5 + white: 76.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 26.7 + brightYellow: 21.7 + brightBlue: 58.2 + brightMagenta: 26.7 + brightCyan: 21.7 + brightWhite: 58.2 diff --git a/themes/rainglow--frantic.yaml b/themes/rainglow--frantic.yaml new file mode 100644 index 00000000..090da94b --- /dev/null +++ b/themes/rainglow--frantic.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (frantic)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#252C33" + fg: "#AEB9C4" + black: "#303942" + red: "#BA0E2E" + green: "#EF6462" + yellow: "#89A7BC" + blue: "#E6EAEF" + magenta: "#EF6462" + cyan: "#89A7BC" + white: "#BDC6CF" + brightBlack: "#505F6E" + brightRed: "#F03E5F" + brightGreen: "#F8BFBF" + brightYellow: "#CAD8E1" + brightBlue: "#FFFFFF" + brightMagenta: "#F8BFBF" + brightCyan: "#CAD8E1" + brightWhite: "#E9ECEF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + pair: null + contrast: + fg: 59.7 + black: 0 + red: 17.4 + green: 39.8 + yellow: 48.4 + blue: 89.8 + magenta: 39.8 + cyan: 48.4 + white: 67.3 + brightBlack: 15.4 + brightRed: 33.7 + brightGreen: 72.2 + brightYellow: 77.5 + brightBlue: 103.8 + brightMagenta: 72.2 + brightCyan: 77.5 + brightWhite: 91.1 diff --git a/themes/rainglow--freshcut-contrast.yaml b/themes/rainglow--freshcut-contrast.yaml new file mode 100644 index 00000000..7d187354 --- /dev/null +++ b/themes/rainglow--freshcut-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (freshcut-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#000000" + fg: "#F8F8F2" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#4ECDC4" + yellow: "#00A8C6" + blue: "#AEE239" + magenta: "#C8D7E8" + cyan: "#4ECDC4" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#9EE3DF" + brightYellow: "#2DDFFF" + brightBlue: "#D2EF92" + brightMagenta: "#FFFFFF" + brightCyan: "#9EE3DF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103 + black: 0 + red: 21.5 + green: 65.7 + yellow: 48.2 + blue: 78.8 + magenta: 81.3 + cyan: 65.7 + white: 107.9 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 82.1 + brightYellow: 76.4 + brightBlue: 90.4 + brightMagenta: 107.9 + brightCyan: 82.1 + brightWhite: 107.9 diff --git a/themes/rainglow--freshcut-light.yaml b/themes/rainglow--freshcut-light.yaml new file mode 100644 index 00000000..5c892076 --- /dev/null +++ b/themes/rainglow--freshcut-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (freshcut-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#2F3030" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#3DA09A" + yellow: "#008299" + blue: "#83AA29" + magenta: "#8E99A5" + cyan: "#3BA099" + white: "#3C3D3D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#78CBC6" + brightYellow: "#00D9FF" + brightBlue: "#B4D960" + brightMagenta: "#C7CCD2" + brightCyan: "#75CCC6" + brightWhite: "#616464" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.6 + black: 0 + red: 80.3 + green: 58.2 + yellow: 70.7 + blue: 52.4 + magenta: 55.3 + cyan: 58.3 + white: 95.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 35.6 + brightYellow: 29.6 + brightBlue: 27.3 + brightMagenta: 27.6 + brightCyan: 35.3 + brightWhite: 79.9 diff --git a/themes/rainglow--freshcut.yaml b/themes/rainglow--freshcut.yaml new file mode 100644 index 00000000..e72ef384 --- /dev/null +++ b/themes/rainglow--freshcut.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (freshcut)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2F3030" + fg: "#F8F8F2" + black: "#3C3D3D" + red: "#BA0E2E" + green: "#4ECDC4" + yellow: "#00A8C6" + blue: "#AEE239" + magenta: "#C8D7E8" + cyan: "#4ECDC4" + white: "#FFFFFF" + brightBlack: "#616464" + brightRed: "#F03E5F" + brightGreen: "#9EE3DF" + brightYellow: "#2DDFFF" + brightBlue: "#D2EF92" + brightMagenta: "#FFFFFF" + brightCyan: "#9EE3DF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97.9 + black: 0 + red: 16.4 + green: 60.6 + yellow: 43.1 + blue: 73.8 + magenta: 76.2 + cyan: 60.6 + white: 102.8 + brightBlack: 16.9 + brightRed: 32.7 + brightGreen: 77 + brightYellow: 71.3 + brightBlue: 85.3 + brightMagenta: 102.8 + brightCyan: 77 + brightWhite: 102.8 diff --git a/themes/rainglow--friction-contrast.yaml b/themes/rainglow--friction-contrast.yaml new file mode 100644 index 00000000..04b79357 --- /dev/null +++ b/themes/rainglow--friction-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (friction-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0C0C0F" + fg: "#7E7B99" + black: "#17171D" + red: "#BA0E2E" + green: "#8D89A5" + yellow: "#6AA7A7" + blue: "#C2BED6" + magenta: "#8D89A5" + cyan: "#6AA7A7" + white: "#8C89A4" + brightBlack: "#393948" + brightRed: "#F03E5F" + brightGreen: "#C5C3D1" + brightYellow: "#AACDCD" + brightBlue: "#FDFDFD" + brightMagenta: "#C5C3D1" + brightCyan: "#AACDCD" + brightWhite: "#B6B5C5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 33.6 + black: 0 + red: 21.3 + green: 40.4 + yellow: 48.9 + blue: 68.8 + magenta: 40.4 + cyan: 48.9 + white: 40.3 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 71 + brightYellow: 72 + brightBlue: 106.3 + brightMagenta: 71 + brightCyan: 72 + brightWhite: 62.9 diff --git a/themes/rainglow--friction-light.yaml b/themes/rainglow--friction-light.yaml new file mode 100644 index 00000000..595e494c --- /dev/null +++ b/themes/rainglow--friction-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (friction-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#38363F" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#8D89A5" + yellow: "#6AA7A7" + blue: "#C2BED6" + magenta: "#8D89A5" + cyan: "#6AA7A7" + white: "#44424D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C5C3D1" + brightYellow: "#AACDCD" + brightBlue: "#FDFDFD" + brightMagenta: "#C5C3D1" + brightCyan: "#AACDCD" + brightWhite: "#696576" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97.3 + black: 0 + red: 80.3 + green: 61 + yellow: 52.7 + blue: 33.6 + magenta: 61 + cyan: 52.7 + white: 92.9 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 31.5 + brightYellow: 30.5 + brightBlue: 0 + brightMagenta: 31.5 + brightCyan: 30.5 + brightWhite: 78.2 diff --git a/themes/rainglow--friction.yaml b/themes/rainglow--friction.yaml new file mode 100644 index 00000000..02b491ae --- /dev/null +++ b/themes/rainglow--friction.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (friction)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#26252D" + fg: "#7E7B99" + black: "#32303B" + red: "#BA0E2E" + green: "#8D89A5" + yellow: "#6AA7A7" + blue: "#C2BED6" + magenta: "#8D89A5" + cyan: "#6AA7A7" + white: "#8C89A4" + brightBlack: "#555365" + brightRed: "#F03E5F" + brightGreen: "#C5C3D1" + brightYellow: "#AACDCD" + brightBlue: "#FDFDFD" + brightMagenta: "#C5C3D1" + brightCyan: "#AACDCD" + brightWhite: "#B6B5C5" +meta: + mode: "dark" + accent: "orange" + hue: 291 + pair: null + contrast: + fg: 30.8 + black: 0 + red: 18.4 + green: 37.6 + yellow: 46.1 + blue: 66 + magenta: 37.6 + cyan: 46.1 + white: 37.4 + brightBlack: 13 + brightRed: 34.7 + brightGreen: 68.2 + brightYellow: 69.2 + brightBlue: 103.5 + brightMagenta: 68.2 + brightCyan: 69.2 + brightWhite: 60.1 diff --git a/themes/rainglow--frontier-contrast.yaml b/themes/rainglow--frontier-contrast.yaml new file mode 100644 index 00000000..2588dad0 --- /dev/null +++ b/themes/rainglow--frontier-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (frontier-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#110F0E" + fg: "#F8F8F2" + black: "#1F1B19" + red: "#BA0E2E" + green: "#2EBF7E" + yellow: "#F23A3A" + blue: "#F8BB39" + magenta: "#FC803D" + cyan: "#2EBF7E" + white: "#FFFFFF" + brightBlack: "#49403C" + brightRed: "#F03E5F" + brightGreen: "#75DEAF" + brightYellow: "#F89A9A" + brightBlue: "#FBDD9B" + brightMagenta: "#FEC2A1" + brightCyan: "#75DEAF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.6 + black: 0 + red: 21.1 + green: 55.5 + yellow: 36.8 + blue: 71.3 + magenta: 52.5 + cyan: 55.5 + white: 107.5 + brightBlack: 8.7 + brightRed: 37.4 + brightGreen: 74.4 + brightYellow: 61.4 + brightBlue: 87.6 + brightMagenta: 77 + brightCyan: 74.4 + brightWhite: 107.5 diff --git a/themes/rainglow--frontier-light.yaml b/themes/rainglow--frontier-light.yaml new file mode 100644 index 00000000..551dcdae --- /dev/null +++ b/themes/rainglow--frontier-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (frontier-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#36312C" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#1A724A" + yellow: "#B22727" + blue: "#AF8323" + magenta: "#BA5A27" + cyan: "#1A724A" + white: "#443E37" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#2DC580" + brightYellow: "#DD6262" + brightBlue: "#DEB45A" + brightMagenta: "#DF9168" + brightCyan: "#2DC580" + brightWhite: "#6E645A" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99 + black: 0 + red: 80.3 + green: 79.2 + yellow: 80.9 + blue: 61.8 + magenta: 71.3 + cyan: 79.2 + white: 94.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 43.5 + brightYellow: 62 + brightBlue: 37.3 + brightMagenta: 48.9 + brightCyan: 43.5 + brightWhite: 78.9 diff --git a/themes/rainglow--frontier.yaml b/themes/rainglow--frontier.yaml new file mode 100644 index 00000000..3a31f2fd --- /dev/null +++ b/themes/rainglow--frontier.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (frontier)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#36312C" + fg: "#F8F8F2" + black: "#443E37" + red: "#BA0E2E" + green: "#2EBF7E" + yellow: "#F23A3A" + blue: "#F8BB39" + magenta: "#FC803D" + cyan: "#2EBF7E" + white: "#FFFFFF" + brightBlack: "#6E645A" + brightRed: "#F03E5F" + brightGreen: "#75DEAF" + brightYellow: "#F89A9A" + brightBlue: "#FBDD9B" + brightMagenta: "#FEC2A1" + brightCyan: "#75DEAF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 67 + pair: null + contrast: + fg: 97.4 + black: 0 + red: 15.9 + green: 50.3 + yellow: 31.7 + blue: 66.2 + magenta: 47.4 + cyan: 50.3 + white: 102.3 + brightBlack: 17.3 + brightRed: 32.2 + brightGreen: 69.2 + brightYellow: 56.2 + brightBlue: 82.4 + brightMagenta: 71.9 + brightCyan: 69.2 + brightWhite: 102.3 diff --git a/themes/rainglow--github-contrast.yaml b/themes/rainglow--github-contrast.yaml new file mode 100644 index 00000000..d823206e --- /dev/null +++ b/themes/rainglow--github-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (github-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#111111" + fg: "#FFFFFF" + black: "#1E1E1E" + red: "#BA0E2E" + green: "#7385BC" + yellow: "#66C4C4" + blue: "#E53D67" + magenta: "#CCCCCC" + cyan: "#5A6FAD" + white: "#FFFFFF" + brightBlack: "#444444" + brightRed: "#F03E5F" + brightGreen: "#B8C1DD" + brightYellow: "#B0E0E0" + brightBlue: "#F197AD" + brightMagenta: "#FFFFFF" + brightCyan: "#9EAACF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.4 + black: 0 + red: 21 + green: 37.5 + yellow: 62.1 + blue: 34.8 + magenta: 75.2 + cyan: 27.5 + white: 107.4 + brightBlack: 9.3 + brightRed: 37.3 + brightGreen: 68.9 + brightYellow: 81.8 + brightBlue: 59.7 + brightMagenta: 107.4 + brightCyan: 56.1 + brightWhite: 107.4 diff --git a/themes/rainglow--github-light.yaml b/themes/rainglow--github-light.yaml new file mode 100644 index 00000000..3343663f --- /dev/null +++ b/themes/rainglow--github-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (github-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#555555" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#445588" + yellow: "#008080" + blue: "#DD1144" + magenta: "#555555" + cyan: "#445588" + white: "#626262" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#7788BB" + brightYellow: "#00E6E6" + brightBlue: "#F36186" + brightMagenta: "#888888" + brightCyan: "#7788BB" + brightWhite: "#888888" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.9 + black: 0 + red: 80.3 + green: 85 + yellow: 72.6 + blue: 71.9 + magenta: 85.9 + cyan: 85 + white: 80.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 62.4 + brightYellow: 24.9 + brightBlue: 56.7 + brightMagenta: 63.1 + brightCyan: 62.4 + brightWhite: 63.1 diff --git a/themes/rainglow--github.yaml b/themes/rainglow--github.yaml new file mode 100644 index 00000000..58f9495f --- /dev/null +++ b/themes/rainglow--github.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (github)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#333333" + fg: "#FFFFFF" + black: "#404040" + red: "#BA0E2E" + green: "#7385BC" + yellow: "#66C4C4" + blue: "#E53D67" + magenta: "#CCCCCC" + cyan: "#5A6FAD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F03E5F" + brightGreen: "#B8C1DD" + brightYellow: "#B0E0E0" + brightBlue: "#F197AD" + brightMagenta: "#FFFFFF" + brightCyan: "#9EAACF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102 + black: 0 + red: 15.6 + green: 32.1 + yellow: 56.8 + blue: 29.5 + magenta: 69.8 + cyan: 22.2 + white: 102 + brightBlack: 17.2 + brightRed: 31.9 + brightGreen: 63.6 + brightYellow: 76.5 + brightBlue: 54.4 + brightMagenta: 102 + brightCyan: 50.7 + brightWhite: 102 diff --git a/themes/rainglow--glance-contrast.yaml b/themes/rainglow--glance-contrast.yaml new file mode 100644 index 00000000..2f896ac4 --- /dev/null +++ b/themes/rainglow--glance-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (glance-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#111219" + fg: "#FFFFFF" + black: "#1B1D28" + red: "#BA0E2E" + green: "#EF8354" + yellow: "#6E81A0" + blue: "#FFFFFF" + magenta: "#EF8354" + cyan: "#6E81A0" + white: "#FFFFFF" + brightBlack: "#3A3E56" + brightRed: "#F03E5F" + brightGreen: "#F8C7B1" + brightYellow: "#ACB7C8" + brightBlue: "#FFFFFF" + brightMagenta: "#F8C7B1" + brightCyan: "#ACB7C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 279 + pair: null + contrast: + fg: 107.3 + black: 0 + red: 20.9 + green: 50.8 + yellow: 34.1 + blue: 107.3 + magenta: 50.8 + cyan: 34.1 + white: 107.3 + brightBlack: 7.6 + brightRed: 37.2 + brightGreen: 78.3 + brightYellow: 62.3 + brightBlue: 107.3 + brightMagenta: 78.3 + brightCyan: 62.3 + brightWhite: 107.3 diff --git a/themes/rainglow--glance-light.yaml b/themes/rainglow--glance-light.yaml new file mode 100644 index 00000000..6b01fbdd --- /dev/null +++ b/themes/rainglow--glance-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (glance-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#2D3142" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#EF8354" + yellow: "#6E81A0" + blue: "#2D3142" + magenta: "#EF8354" + cyan: "#6E81A0" + white: "#373C51" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F8C7B1" + brightYellow: "#ACB7C8" + brightBlue: "#565E7F" + brightMagenta: "#F8C7B1" + brightCyan: "#ACB7C8" + brightWhite: "#565E7F" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.1 + black: 0 + red: 80.3 + green: 50.5 + yellow: 66.9 + blue: 99.1 + magenta: 50.5 + cyan: 66.9 + white: 95.2 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 24.2 + brightYellow: 39.4 + brightBlue: 81.6 + brightMagenta: 24.2 + brightCyan: 39.4 + brightWhite: 81.6 diff --git a/themes/rainglow--glance.yaml b/themes/rainglow--glance.yaml new file mode 100644 index 00000000..dc0e8fd3 --- /dev/null +++ b/themes/rainglow--glance.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (glance)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2D3142" + fg: "#FFFFFF" + black: "#373C51" + red: "#BA0E2E" + green: "#EF8354" + yellow: "#6E81A0" + blue: "#FFFFFF" + magenta: "#EF8354" + cyan: "#6E81A0" + white: "#FFFFFF" + brightBlack: "#565E7F" + brightRed: "#F03E5F" + brightGreen: "#F8C7B1" + brightYellow: "#ACB7C8" + brightBlue: "#FFFFFF" + brightMagenta: "#F8C7B1" + brightCyan: "#ACB7C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + pair: null + contrast: + fg: 102.3 + black: 0 + red: 16 + green: 45.9 + yellow: 29.2 + blue: 102.3 + magenta: 45.9 + cyan: 29.2 + white: 102.3 + brightBlack: 14.7 + brightRed: 32.3 + brightGreen: 73.4 + brightYellow: 57.4 + brightBlue: 102.3 + brightMagenta: 73.4 + brightCyan: 57.4 + brightWhite: 102.3 diff --git a/themes/rainglow--gloom-contrast.yaml b/themes/rainglow--gloom-contrast.yaml new file mode 100644 index 00000000..1ece650c --- /dev/null +++ b/themes/rainglow--gloom-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (gloom-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0F120F" + fg: "#D8EBE5" + black: "#1B201B" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#BCD42A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#E9F4F0" + brightBlack: "#3D4A3D" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D7E67E" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.6 + black: 0 + red: 21 + green: 45.5 + yellow: 44.9 + blue: 73.1 + magenta: 45.5 + cyan: 44.9 + white: 98.5 + brightBlack: 10.2 + brightRed: 37.3 + brightGreen: 72.2 + brightYellow: 70.2 + brightBlue: 85.8 + brightMagenta: 72.2 + brightCyan: 70.2 + brightWhite: 107.4 diff --git a/themes/rainglow--gloom-light.yaml b/themes/rainglow--gloom-light.yaml new file mode 100644 index 00000000..96b835d0 --- /dev/null +++ b/themes/rainglow--gloom-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (gloom-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#D8EBE5" + fg: "#2A332B" + black: "#E9F4F0" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#98AD0D" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#364137" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D6EF31" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#586B5A" +meta: + mode: "light" + accent: "orange" + hue: 175 + pair: null + contrast: + fg: 85 + black: 0 + red: 66 + green: 41.4 + yellow: 42 + blue: 35 + magenta: 41.4 + cyan: 42 + white: 80.4 + brightBlack: 13.8 + brightRed: 49.5 + brightGreen: 15.7 + brightYellow: 17.6 + brightBlue: 0 + brightMagenta: 15.7 + brightCyan: 17.6 + brightWhite: 64.3 diff --git a/themes/rainglow--gloom.yaml b/themes/rainglow--gloom.yaml new file mode 100644 index 00000000..e12390bf --- /dev/null +++ b/themes/rainglow--gloom.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (gloom)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2A332B" + fg: "#D8EBE5" + black: "#364137" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#BCD42A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#E9F4F0" + brightBlack: "#586B5A" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D7E67E" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 148 + pair: null + contrast: + fg: 86.8 + black: 0 + red: 16.2 + green: 40.7 + yellow: 40.2 + blue: 68.4 + magenta: 40.7 + cyan: 40.2 + white: 93.7 + brightBlack: 17.8 + brightRed: 32.5 + brightGreen: 67.4 + brightYellow: 65.4 + brightBlue: 81 + brightMagenta: 67.4 + brightCyan: 65.4 + brightWhite: 102.6 diff --git a/themes/rainglow--glowfish-contrast.yaml b/themes/rainglow--glowfish-contrast.yaml new file mode 100644 index 00000000..2d87ee50 --- /dev/null +++ b/themes/rainglow--glowfish-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (glowfish-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#090B07" + fg: "#6EA240" + black: "#161B11" + red: "#BA0E2E" + green: "#95CC5E" + yellow: "#DB784D" + blue: "#60A365" + magenta: "#D65940" + cyan: "#95CC5E" + white: "#7AB447" + brightBlack: "#3C492F" + brightRed: "#F03E5F" + brightGreen: "#C8E5AB" + brightYellow: "#ECB8A2" + brightBlue: "#A1C8A4" + brightMagenta: "#E8A294" + brightCyan: "#C8E5AB" + brightWhite: "#A2CB7D" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 44.5 + black: 0 + red: 21.3 + green: 66.4 + yellow: 44.2 + blue: 44.6 + magenta: 35.7 + cyan: 66.4 + white: 53.1 + brightBlack: 10 + brightRed: 37.6 + brightGreen: 85 + brightYellow: 70.4 + brightBlue: 67.4 + brightMagenta: 61.3 + brightCyan: 85 + brightWhite: 67.7 diff --git a/themes/rainglow--glowfish-light.yaml b/themes/rainglow--glowfish-light.yaml new file mode 100644 index 00000000..747ed226 --- /dev/null +++ b/themes/rainglow--glowfish-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (glowfish-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#E3EADC" + fg: "#191F13" + black: "#F0F4EC" + red: "#BA0E2E" + green: "#95CC5E" + yellow: "#DB784D" + blue: "#60A365" + magenta: "#D65940" + cyan: "#95CC5E" + white: "#262F1D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C8E5AB" + brightYellow: "#ECB8A2" + brightBlue: "#A1C8A4" + brightMagenta: "#E8A294" + brightCyan: "#C8E5AB" + brightWhite: "#4C5E3A" +meta: + mode: "light" + accent: "orange" + hue: 129 + pair: null + contrast: + fg: 89.9 + black: 0 + red: 66.5 + green: 22.1 + yellow: 43.5 + blue: 43.1 + magenta: 52 + cyan: 22.1 + white: 86.7 + brightBlack: 13.2 + brightRed: 50 + brightGreen: 0 + brightYellow: 18.3 + brightBlue: 21.1 + brightMagenta: 27 + brightCyan: 0 + brightWhite: 70.6 diff --git a/themes/rainglow--glowfish.yaml b/themes/rainglow--glowfish.yaml new file mode 100644 index 00000000..9e1f983f --- /dev/null +++ b/themes/rainglow--glowfish.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (glowfish)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#191F13" + fg: "#6EA240" + black: "#262F1D" + red: "#BA0E2E" + green: "#95CC5E" + yellow: "#DB784D" + blue: "#60A365" + magenta: "#D65940" + cyan: "#95CC5E" + white: "#7AB447" + brightBlack: "#4C5E3A" + brightRed: "#F03E5F" + brightGreen: "#C8E5AB" + brightYellow: "#ECB8A2" + brightBlue: "#A1C8A4" + brightMagenta: "#E8A294" + brightCyan: "#C8E5AB" + brightWhite: "#A2CB7D" +meta: + mode: "dark" + accent: "orange" + hue: 130 + pair: null + contrast: + fg: 43 + black: 0 + red: 19.8 + green: 64.8 + yellow: 42.6 + blue: 43.1 + magenta: 34.1 + cyan: 64.8 + white: 51.6 + brightBlack: 15.8 + brightRed: 36.1 + brightGreen: 83.4 + brightYellow: 68.9 + brightBlue: 65.8 + brightMagenta: 59.7 + brightCyan: 83.4 + brightWhite: 66.2 diff --git a/themes/rainglow--goldfish-contrast.yaml b/themes/rainglow--goldfish-contrast.yaml new file mode 100644 index 00000000..f973085d --- /dev/null +++ b/themes/rainglow--goldfish-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (goldfish-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0C0D0E" + fg: "#F8F8F2" + black: "#181A1C" + red: "#BA0E2E" + green: "#F38630" + yellow: "#FA6900" + blue: "#69D2E7" + magenta: "#A7DBD8" + cyan: "#F38630" + white: "#FFFFFF" + brightBlack: "#3B4045" + brightRed: "#F03E5F" + brightGreen: "#F9BE90" + brightYellow: "#FFA361" + brightBlue: "#C1ECF5" + brightMagenta: "#EFF9F8" + brightCyan: "#F9BE90" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.7 + black: 0 + red: 21.2 + green: 52.4 + yellow: 46.3 + blue: 70.6 + magenta: 78.5 + cyan: 52.4 + white: 107.6 + brightBlack: 8 + brightRed: 37.5 + brightGreen: 74.3 + brightYellow: 64.4 + brightBlue: 90.4 + brightMagenta: 102.2 + brightCyan: 74.3 + brightWhite: 107.6 diff --git a/themes/rainglow--goldfish-light.yaml b/themes/rainglow--goldfish-light.yaml new file mode 100644 index 00000000..6b6a4f5d --- /dev/null +++ b/themes/rainglow--goldfish-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (goldfish-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#2E3336" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#F38630" + yellow: "#FA6900" + blue: "#69D2E7" + magenta: "#91BFBC" + cyan: "#F38630" + white: "#3A4044" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F9BE90" + brightYellow: "#FFA361" + brightBlue: "#C1ECF5" + brightMagenta: "#D1E5E3" + brightCyan: "#F9BE90" + brightWhite: "#5D676D" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.9 + black: 0 + red: 80.3 + green: 49.3 + yellow: 55.2 + blue: 31.8 + magenta: 39.3 + cyan: 49.3 + white: 94.4 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 28.4 + brightYellow: 37.7 + brightBlue: 13.2 + brightMagenta: 15.4 + brightCyan: 28.4 + brightWhite: 79 diff --git a/themes/rainglow--goldfish.yaml b/themes/rainglow--goldfish.yaml new file mode 100644 index 00000000..29bf0911 --- /dev/null +++ b/themes/rainglow--goldfish.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (goldfish)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2E3336" + fg: "#F8F8F2" + black: "#3A4044" + red: "#BA0E2E" + green: "#F38630" + yellow: "#FA6900" + blue: "#69D2E7" + magenta: "#A7DBD8" + cyan: "#F38630" + white: "#FFFFFF" + brightBlack: "#5D676D" + brightRed: "#F03E5F" + brightGreen: "#F9BE90" + brightYellow: "#FFA361" + brightBlue: "#C1ECF5" + brightMagenta: "#EFF9F8" + brightCyan: "#F9BE90" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97.3 + black: 0 + red: 15.8 + green: 47 + yellow: 40.9 + blue: 65.2 + magenta: 73.1 + cyan: 47 + white: 102.2 + brightBlack: 17.1 + brightRed: 32.1 + brightGreen: 68.9 + brightYellow: 59.1 + brightBlue: 85 + brightMagenta: 96.8 + brightCyan: 68.9 + brightWhite: 102.2 diff --git a/themes/rainglow--grunge-contrast.yaml b/themes/rainglow--grunge-contrast.yaml new file mode 100644 index 00000000..95e4a7de --- /dev/null +++ b/themes/rainglow--grunge-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (grunge-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0C0C0A" + fg: "#F8F8F2" + black: "#1A1A16" + red: "#BA0E2E" + green: "#D1F2A5" + yellow: "#F56991" + blue: "#FFC48C" + magenta: "#91A374" + cyan: "#FFC48C" + white: "#FFFFFF" + brightBlack: "#444438" + brightRed: "#F03E5F" + brightGreen: "#FFFFFE" + brightYellow: "#FBC9D7" + brightBlue: "#FFF8F2" + brightMagenta: "#C2CCB1" + brightCyan: "#FFF8F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.8 + black: 0 + red: 21.3 + green: 92 + yellow: 47.4 + blue: 77.6 + magenta: 48.8 + cyan: 77.6 + white: 107.7 + brightBlack: 9.3 + brightRed: 37.6 + brightGreen: 107.6 + brightYellow: 81.5 + brightBlue: 103.8 + brightMagenta: 73.2 + brightCyan: 103.8 + brightWhite: 107.7 diff --git a/themes/rainglow--grunge-light.yaml b/themes/rainglow--grunge-light.yaml new file mode 100644 index 00000000..5871429e --- /dev/null +++ b/themes/rainglow--grunge-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (grunge-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#F8F8F2" + fg: "#31332C" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#ABC687" + yellow: "#F56991" + blue: "#FFC48C" + magenta: "#91A374" + cyan: "#FFC48C" + white: "#3E4138" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DBE7CC" + brightYellow: "#FBC9D7" + brightBlue: "#FFF8F2" + brightMagenta: "#C2CCB1" + brightCyan: "#FFF8F2" + brightWhite: "#666A5B" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.5 + black: 0 + red: 75.9 + green: 31.2 + yellow: 49.8 + blue: 20.8 + magenta: 48.4 + cyan: 20.8 + white: 89.7 + brightBlack: 0 + brightRed: 59.4 + brightGreen: 9.8 + brightYellow: 17.2 + brightBlue: 0 + brightMagenta: 25 + brightCyan: 0 + brightWhite: 73.4 diff --git a/themes/rainglow--grunge.yaml b/themes/rainglow--grunge.yaml new file mode 100644 index 00000000..83939f6d --- /dev/null +++ b/themes/rainglow--grunge.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (grunge)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#31332C" + fg: "#F8F8F2" + black: "#3E4138" + red: "#BA0E2E" + green: "#D1F2A5" + yellow: "#F56991" + blue: "#FFC48C" + magenta: "#91A374" + cyan: "#FFC48C" + white: "#FFFFFF" + brightBlack: "#666A5B" + brightRed: "#F03E5F" + brightGreen: "#FFFFFE" + brightYellow: "#FBC9D7" + brightBlue: "#FFF8F2" + brightMagenta: "#C2CCB1" + brightCyan: "#FFF8F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 120 + pair: null + contrast: + fg: 97.3 + black: 0 + red: 15.9 + green: 86.6 + yellow: 41.9 + blue: 72.2 + magenta: 43.4 + cyan: 72.2 + white: 102.3 + brightBlack: 18.3 + brightRed: 32.2 + brightGreen: 102.2 + brightYellow: 76.1 + brightBlue: 98.3 + brightMagenta: 67.7 + brightCyan: 98.3 + brightWhite: 102.3 diff --git a/themes/rainglow--halflife-contrast.yaml b/themes/rainglow--halflife-contrast.yaml new file mode 100644 index 00000000..44804e3a --- /dev/null +++ b/themes/rainglow--halflife-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (halflife-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#000000" + fg: "#CCCCCC" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#FC913A" + yellow: "#7D8991" + blue: "#F9D423" + magenta: "#7D8991" + cyan: "#F85931" + white: "#D9D9D9" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#FEC99E" + brightYellow: "#B4BBC0" + brightBlue: "#FCE786" + brightMagenta: "#B4BBC0" + brightCyan: "#FBA894" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 75.7 + black: 0 + red: 21.5 + green: 57.8 + yellow: 38.2 + blue: 82 + magenta: 38.2 + cyan: 43 + white: 83.6 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 80.1 + brightYellow: 65.1 + brightBlue: 92.1 + brightMagenta: 65.1 + brightCyan: 66.9 + brightWhite: 107.9 diff --git a/themes/rainglow--halflife-light.yaml b/themes/rainglow--halflife-light.yaml new file mode 100644 index 00000000..f837aeee --- /dev/null +++ b/themes/rainglow--halflife-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (halflife-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#F0F0F0" + fg: "#222222" + black: "#FDFDFD" + red: "#BA0E2E" + green: "#FC913A" + yellow: "#7D8991" + blue: "#F9D423" + magenta: "#7D8991" + cyan: "#F85931" + white: "#2F2F2F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FEC99E" + brightYellow: "#B4BBC0" + brightBlue: "#FCE786" + brightMagenta: "#B4BBC0" + brightCyan: "#FBA894" + brightWhite: "#555555" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94 + black: 0 + red: 71.4 + green: 35.4 + yellow: 54.5 + blue: 12.4 + magenta: 54.5 + cyan: 49.8 + white: 90.9 + brightBlack: 7.6 + brightRed: 55 + brightGreen: 14.2 + brightYellow: 28.4 + brightBlue: 0 + brightMagenta: 28.4 + brightCyan: 26.7 + brightWhite: 77 diff --git a/themes/rainglow--halflife.yaml b/themes/rainglow--halflife.yaml new file mode 100644 index 00000000..760b7d9d --- /dev/null +++ b/themes/rainglow--halflife.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (halflife)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#222222" + fg: "#CCCCCC" + black: "#2F2F2F" + red: "#BA0E2E" + green: "#FC913A" + yellow: "#7D8991" + blue: "#F9D423" + magenta: "#7D8991" + cyan: "#F85931" + white: "#D9D9D9" + brightBlack: "#555555" + brightRed: "#F03E5F" + brightGreen: "#FEC99E" + brightYellow: "#B4BBC0" + brightBlue: "#FCE786" + brightMagenta: "#B4BBC0" + brightCyan: "#FBA894" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.2 + black: 0 + red: 19.1 + green: 55.4 + yellow: 35.8 + blue: 79.6 + magenta: 35.8 + cyan: 40.6 + white: 81.1 + brightBlack: 13.7 + brightRed: 35.4 + brightGreen: 77.7 + brightYellow: 62.7 + brightBlue: 89.7 + brightMagenta: 62.7 + brightCyan: 64.4 + brightWhite: 105.5 diff --git a/themes/rainglow--hawaii-contrast.yaml b/themes/rainglow--hawaii-contrast.yaml new file mode 100644 index 00000000..71cda408 --- /dev/null +++ b/themes/rainglow--hawaii-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (hawaii-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#111110" + fg: "#E8E1DE" + black: "#1E1E1C" + red: "#BA0E2E" + green: "#EDBD44" + yellow: "#F75431" + blue: "#52B4D8" + magenta: "#E2922F" + cyan: "#92D8E8" + white: "#F2EFED" + brightBlack: "#464641" + brightRed: "#F03E5F" + brightGreen: "#F6DEA1" + brightYellow: "#FBA593" + brightBlue: "#A5D8EB" + brightMagenta: "#EEC188" + brightCyan: "#E6F6FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 88.8 + black: 0 + red: 21 + green: 70.3 + yellow: 41.4 + blue: 55.2 + magenta: 52.6 + cyan: 75.9 + white: 97.2 + brightBlack: 9.9 + brightRed: 37.3 + brightGreen: 87.3 + brightYellow: 65.3 + brightBlue: 77.7 + brightMagenta: 73.2 + brightCyan: 99.5 + brightWhite: 107.4 diff --git a/themes/rainglow--hawaii-light.yaml b/themes/rainglow--hawaii-light.yaml new file mode 100644 index 00000000..1917f992 --- /dev/null +++ b/themes/rainglow--hawaii-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (hawaii-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#6D6764" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#EDBD44" + yellow: "#F75431" + blue: "#52B4D8" + magenta: "#E2922F" + cyan: "#92D8E8" + white: "#7A7470" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F6DEA1" + brightYellow: "#FBA593" + brightBlue: "#A5D8EB" + brightMagenta: "#EEC188" + brightCyan: "#E6F6FA" + brightWhite: "#A09A97" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 77.8 + black: 0 + red: 80.3 + green: 31.9 + yellow: 59.8 + blue: 46.4 + magenta: 48.8 + cyan: 26.6 + white: 72 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 15.9 + brightYellow: 36.7 + brightBlue: 24.9 + brightMagenta: 29.2 + brightCyan: 0 + brightWhite: 53.6 diff --git a/themes/rainglow--hawaii.yaml b/themes/rainglow--hawaii.yaml new file mode 100644 index 00000000..993ce574 --- /dev/null +++ b/themes/rainglow--hawaii.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (hawaii)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#333130" + fg: "#E8E1DE" + black: "#403E3C" + red: "#BA0E2E" + green: "#EDBD44" + yellow: "#F75431" + blue: "#52B4D8" + magenta: "#E2922F" + cyan: "#92D8E8" + white: "#F2EFED" + brightBlack: "#686361" + brightRed: "#F03E5F" + brightGreen: "#F6DEA1" + brightYellow: "#FBA593" + brightBlue: "#A5D8EB" + brightMagenta: "#EEC188" + brightCyan: "#E6F6FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.9 + black: 0 + red: 16.1 + green: 65.3 + yellow: 36.5 + blue: 50.2 + magenta: 47.7 + cyan: 70.9 + white: 92.3 + brightBlack: 16.7 + brightRed: 32.3 + brightGreen: 82.4 + brightYellow: 60.3 + brightBlue: 72.7 + brightMagenta: 68.2 + brightCyan: 94.6 + brightWhite: 102.4 diff --git a/themes/rainglow--heroku-contrast.yaml b/themes/rainglow--heroku-contrast.yaml new file mode 100644 index 00000000..016ac3a5 --- /dev/null +++ b/themes/rainglow--heroku-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (heroku-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0B0B0F" + fg: "#C8C7D5" + black: "#16161E" + red: "#BA0E2E" + green: "#585480" + yellow: "#7873AE" + blue: "#FFFFFF" + magenta: "#7873AE" + cyan: "#A6FA62" + white: "#D6D6E0" + brightBlack: "#36364A" + brightRed: "#F03E5F" + brightGreen: "#8C89B1" + brightYellow: "#B6B4D3" + brightBlue: "#FFFFFF" + brightMagenta: "#B6B4D3" + brightCyan: "#DEFDC5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.3 + black: 0 + red: 21.3 + green: 17.5 + yellow: 31.6 + blue: 107.7 + magenta: 31.6 + cyan: 90.3 + white: 82 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 40.9 + brightYellow: 63.2 + brightBlue: 107.7 + brightMagenta: 63.2 + brightCyan: 100 + brightWhite: 107.7 diff --git a/themes/rainglow--heroku-light.yaml b/themes/rainglow--heroku-light.yaml new file mode 100644 index 00000000..254de194 --- /dev/null +++ b/themes/rainglow--heroku-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (heroku-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#F7F7FC" + fg: "#1B1B24" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#585480" + yellow: "#7873AE" + blue: "#B0ADD3" + magenta: "#7873AE" + cyan: "#6DAF36" + white: "#262633" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#8C89B1" + brightYellow: "#B6B4D3" + brightBlue: "#F0EFF7" + brightMagenta: "#B6B4D3" + brightCyan: "#A1D576" + brightWhite: "#47475E" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.4 + black: 0 + red: 75.8 + green: 79.7 + yellow: 65.3 + blue: 37.7 + magenta: 65.3 + cyan: 47.3 + white: 97.2 + brightBlack: 0 + brightRed: 59.3 + brightGreen: 56 + brightYellow: 34.4 + brightBlue: 0 + brightMagenta: 34.4 + brightCyan: 26 + brightWhite: 86.1 diff --git a/themes/rainglow--heroku.yaml b/themes/rainglow--heroku.yaml new file mode 100644 index 00000000..4013aff3 --- /dev/null +++ b/themes/rainglow--heroku.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (heroku)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#1B1B24" + fg: "#C8C7D5" + black: "#262633" + red: "#BA0E2E" + green: "#585480" + yellow: "#7873AE" + blue: "#FFFFFF" + magenta: "#7873AE" + cyan: "#A6FA62" + white: "#D6D6E0" + brightBlack: "#47475E" + brightRed: "#F03E5F" + brightGreen: "#8C89B1" + brightYellow: "#B6B4D3" + brightBlue: "#FFFFFF" + brightMagenta: "#B6B4D3" + brightCyan: "#DEFDC5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 71.9 + black: 0 + red: 19.9 + green: 16.2 + yellow: 30.3 + blue: 106.3 + magenta: 30.3 + cyan: 88.9 + white: 80.6 + brightBlack: 10.1 + brightRed: 36.2 + brightGreen: 39.6 + brightYellow: 61.9 + brightBlue: 106.3 + brightMagenta: 61.9 + brightCyan: 98.6 + brightWhite: 106.3 diff --git a/themes/rainglow--hive-contrast.yaml b/themes/rainglow--hive-contrast.yaml new file mode 100644 index 00000000..cad11ef5 --- /dev/null +++ b/themes/rainglow--hive-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (hive-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0F1016" + fg: "#FFFFFF" + black: "#191B25" + red: "#BA0E2E" + green: "#7CB8BA" + yellow: "#6E81A0" + blue: "#FFFFFF" + magenta: "#7CB8BA" + cyan: "#6E81A0" + white: "#FFFFFF" + brightBlack: "#383C53" + brightRed: "#F03E5F" + brightGreen: "#BFDCDD" + brightYellow: "#ACB7C8" + brightBlue: "#FFFFFF" + brightMagenta: "#BFDCDD" + brightCyan: "#ACB7C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 278 + pair: null + contrast: + fg: 107.4 + black: 0 + red: 21 + green: 57.8 + yellow: 34.3 + blue: 107.4 + magenta: 57.8 + cyan: 34.3 + white: 107.4 + brightBlack: 0 + brightRed: 37.3 + brightGreen: 81.5 + brightYellow: 62.5 + brightBlue: 107.4 + brightMagenta: 81.5 + brightCyan: 62.5 + brightWhite: 107.4 diff --git a/themes/rainglow--hive-light.yaml b/themes/rainglow--hive-light.yaml new file mode 100644 index 00000000..665f11b9 --- /dev/null +++ b/themes/rainglow--hive-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (hive-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#2D3142" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#7CB8BA" + yellow: "#6E81A0" + blue: "#2D3142" + magenta: "#7CB8BA" + cyan: "#6E81A0" + white: "#373C51" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#BFDCDD" + brightYellow: "#ACB7C8" + brightBlue: "#565E7F" + brightMagenta: "#BFDCDD" + brightCyan: "#ACB7C8" + brightWhite: "#565E7F" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.1 + black: 0 + red: 80.3 + green: 43.8 + yellow: 66.9 + blue: 99.1 + magenta: 43.8 + cyan: 66.9 + white: 95.2 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 21.4 + brightYellow: 39.4 + brightBlue: 81.6 + brightMagenta: 21.4 + brightCyan: 39.4 + brightWhite: 81.6 diff --git a/themes/rainglow--hive.yaml b/themes/rainglow--hive.yaml new file mode 100644 index 00000000..b2ad3a9c --- /dev/null +++ b/themes/rainglow--hive.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (hive)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2D3142" + fg: "#FFFFFF" + black: "#373C51" + red: "#BA0E2E" + green: "#7CB8BA" + yellow: "#6E81A0" + blue: "#FFFFFF" + magenta: "#7CB8BA" + cyan: "#6E81A0" + white: "#FFFFFF" + brightBlack: "#565E7F" + brightRed: "#F03E5F" + brightGreen: "#BFDCDD" + brightYellow: "#ACB7C8" + brightBlue: "#FFFFFF" + brightMagenta: "#BFDCDD" + brightCyan: "#ACB7C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + pair: null + contrast: + fg: 102.3 + black: 0 + red: 16 + green: 52.8 + yellow: 29.2 + blue: 102.3 + magenta: 52.8 + cyan: 29.2 + white: 102.3 + brightBlack: 14.7 + brightRed: 32.3 + brightGreen: 76.4 + brightYellow: 57.4 + brightBlue: 102.3 + brightMagenta: 76.4 + brightCyan: 57.4 + brightWhite: 102.3 diff --git a/themes/rainglow--horizon-contrast.yaml b/themes/rainglow--horizon-contrast.yaml new file mode 100644 index 00000000..c6d9cffc --- /dev/null +++ b/themes/rainglow--horizon-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (horizon-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#11101C" + fg: "#EDEBE6" + black: "#1B192C" + red: "#BA0E2E" + green: "#FD8A25" + yellow: "#B133DC" + blue: "#FED230" + magenta: "#E5194B" + cyan: "#E524A9" + white: "#F8F7F5" + brightBlack: "#38355D" + brightRed: "#F03E5F" + brightGreen: "#FEC08A" + brightYellow: "#D28AEB" + brightBlue: "#FEE895" + brightMagenta: "#F07492" + brightCyan: "#F07FCD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 287 + pair: null + contrast: + fg: 94.3 + black: 0 + red: 21 + green: 55.2 + yellow: 29.1 + blue: 81.5 + magenta: 31.5 + cyan: 35.1 + white: 102.1 + brightBlack: 0 + brightRed: 37.3 + brightGreen: 75.5 + brightYellow: 53.5 + brightBlue: 92.7 + brightMagenta: 48.6 + brightCyan: 53.9 + brightWhite: 107.3 diff --git a/themes/rainglow--horizon-light.yaml b/themes/rainglow--horizon-light.yaml new file mode 100644 index 00000000..cb8e985f --- /dev/null +++ b/themes/rainglow--horizon-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (horizon-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#474466" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#FD8A25" + yellow: "#BA66D6" + blue: "#FED230" + magenta: "#E5194B" + cyan: "#E524A9" + white: "#524E75" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FEC08A" + brightYellow: "#DEB6EC" + brightBlue: "#FEE895" + brightMagenta: "#F07492" + brightCyan: "#F07FCD" + brightWhite: "#7470A0" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 91.1 + black: 0 + red: 80.3 + green: 46.3 + yellow: 62.4 + blue: 21.3 + magenta: 69.7 + cyan: 66 + white: 86.9 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 27 + brightYellow: 31.8 + brightBlue: 10.9 + brightMagenta: 52.7 + brightCyan: 47.5 + brightWhite: 71.9 diff --git a/themes/rainglow--horizon.yaml b/themes/rainglow--horizon.yaml new file mode 100644 index 00000000..71c136d4 --- /dev/null +++ b/themes/rainglow--horizon.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (horizon)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#474466" + fg: "#FFFFFF" + black: "#524E75" + red: "#BA0E2E" + green: "#FD8A25" + yellow: "#BA66D6" + blue: "#FED230" + magenta: "#E5194B" + cyan: "#E524A9" + white: "#FFFFFF" + brightBlack: "#7470A0" + brightRed: "#F03E5F" + brightGreen: "#FEC08A" + brightYellow: "#DEB6EC" + brightBlue: "#FEE895" + brightMagenta: "#F07492" + brightCyan: "#F07FCD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 288 + pair: null + contrast: + fg: 95.5 + black: 0 + red: 9.1 + green: 43.4 + yellow: 26.9 + blue: 69.7 + magenta: 19.6 + cyan: 23.2 + white: 95.5 + brightBlack: 17.4 + brightRed: 25.4 + brightGreen: 63.6 + brightYellow: 58.5 + brightBlue: 80.8 + brightMagenta: 36.7 + brightCyan: 42.1 + brightWhite: 95.5 diff --git a/themes/rainglow--hub-contrast.yaml b/themes/rainglow--hub-contrast.yaml new file mode 100644 index 00000000..116eda9f --- /dev/null +++ b/themes/rainglow--hub-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (hub-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#191D21" + fg: "#FFFFFF" + black: "#242A2F" + red: "#BA0E2E" + green: "#E85362" + yellow: "#5392DB" + blue: "#5392DB" + magenta: "#E85362" + cyan: "#9B78DB" + white: "#FFFFFF" + brightBlack: "#45505B" + brightRed: "#F03E5F" + brightGreen: "#F4ADB4" + brightYellow: "#A7C7ED" + brightBlue: "#A7C7ED" + brightMagenta: "#F4ADB4" + brightCyan: "#D7C9F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 106.2 + black: 0 + red: 19.9 + green: 37.5 + yellow: 40.7 + blue: 40.7 + magenta: 37.5 + cyan: 38.3 + white: 106.2 + brightBlack: 12.1 + brightRed: 36.1 + brightGreen: 66.8 + brightYellow: 69.3 + brightBlue: 69.3 + brightMagenta: 66.8 + brightCyan: 75.9 + brightWhite: 106.2 diff --git a/themes/rainglow--hub-light.yaml b/themes/rainglow--hub-light.yaml new file mode 100644 index 00000000..6ca76560 --- /dev/null +++ b/themes/rainglow--hub-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (hub-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#D73A49" + yellow: "#005CC5" + blue: "#005CC5" + magenta: "#D73A49" + cyan: "#6F42C1" + white: "#2F363C" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#E88F97" + brightYellow: "#2C8FFF" + brightBlue: "#2C8FFF" + brightMagenta: "#E88F97" + brightCyan: "#AA8FDA" + brightWhite: "#515C67" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.5 + black: 0 + red: 80.3 + green: 70.4 + yellow: 80.5 + blue: 80.5 + magenta: 70.4 + cyan: 81.7 + white: 98 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 46.8 + brightYellow: 59.1 + brightBlue: 59.1 + brightMagenta: 46.8 + brightCyan: 53 + brightWhite: 83.6 diff --git a/themes/rainglow--hub.yaml b/themes/rainglow--hub.yaml new file mode 100644 index 00000000..3db89531 --- /dev/null +++ b/themes/rainglow--hub.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (hub)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#3B444C" + fg: "#FFFFFF" + black: "#46515A" + red: "#BA0E2E" + green: "#E85362" + yellow: "#5392DB" + blue: "#5392DB" + magenta: "#E85362" + cyan: "#9B78DB" + white: "#FFFFFF" + brightBlack: "#687785" + brightRed: "#F03E5F" + brightGreen: "#F4ADB4" + brightYellow: "#A7C7ED" + brightBlue: "#A7C7ED" + brightMagenta: "#F4ADB4" + brightCyan: "#D7C9F0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 245 + pair: null + contrast: + fg: 97.2 + black: 0 + red: 10.8 + green: 28.4 + yellow: 31.7 + blue: 31.7 + magenta: 28.4 + cyan: 29.2 + white: 97.2 + brightBlack: 19 + brightRed: 27.1 + brightGreen: 57.8 + brightYellow: 60.3 + brightBlue: 60.3 + brightMagenta: 57.8 + brightCyan: 66.9 + brightWhite: 97.2 diff --git a/themes/rainglow--hyrule-contrast.yaml b/themes/rainglow--hyrule-contrast.yaml new file mode 100644 index 00000000..e13c6936 --- /dev/null +++ b/themes/rainglow--hyrule-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (hyrule-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0C0C0C" + fg: "#C0D5C1" + black: "#191919" + red: "#BA0E2E" + green: "#F5C504" + yellow: "#569E16" + blue: "#90C93F" + magenta: "#90C93F" + cyan: "#F5C504" + white: "#CFDFD0" + brightBlack: "#3F3F3F" + brightRed: "#F03E5F" + brightGreen: "#FCDE63" + brightYellow: "#88E337" + brightBlue: "#BEDF8F" + brightMagenta: "#BEDF8F" + brightCyan: "#FCDE63" + brightWhite: "#FDFEFD" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 77.5 + black: 0 + red: 21.3 + green: 74.8 + yellow: 41 + blue: 64.1 + magenta: 64.1 + cyan: 74.8 + white: 84.4 + brightBlack: 7.9 + brightRed: 37.6 + brightGreen: 87.2 + brightYellow: 75.8 + brightBlue: 80.2 + brightMagenta: 80.2 + brightCyan: 87.2 + brightWhite: 106.8 diff --git a/themes/rainglow--hyrule-light.yaml b/themes/rainglow--hyrule-light.yaml new file mode 100644 index 00000000..cc706d61 --- /dev/null +++ b/themes/rainglow--hyrule-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (hyrule-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#C0D5C1" + fg: "#2D2C2B" + black: "#CFDFD0" + red: "#BA0E2E" + green: "#B7950C" + yellow: "#407710" + blue: "#68912E" + magenta: "#68912E" + cyan: "#B7950C" + white: "#3A3937" + brightBlack: "#FDFEFD" + brightRed: "#F03E5F" + brightGreen: "#F2CD37" + brightYellow: "#70D11C" + brightBlue: "#9CCB5A" + brightMagenta: "#9CCB5A" + brightCyan: "#F2CD37" + brightWhite: "#615F5D" +meta: + mode: "light" + accent: "green" + hue: 147 + pair: null + contrast: + fg: 72.9 + black: 0 + red: 52.7 + green: 27 + yellow: 49.2 + blue: 36.8 + magenta: 36.8 + cyan: 27 + white: 68.9 + brightBlack: 27.9 + brightRed: 36.2 + brightGreen: 0 + brightYellow: 9.2 + brightBlue: 8.2 + brightMagenta: 8.2 + brightCyan: 0 + brightWhite: 54 diff --git a/themes/rainglow--hyrule.yaml b/themes/rainglow--hyrule.yaml new file mode 100644 index 00000000..6b8ca37c --- /dev/null +++ b/themes/rainglow--hyrule.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (hyrule)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2D2C2B" + fg: "#C0D5C1" + black: "#3A3937" + red: "#BA0E2E" + green: "#F5C504" + yellow: "#569E16" + blue: "#90C93F" + magenta: "#90C93F" + cyan: "#F5C504" + white: "#CFDFD0" + brightBlack: "#615F5D" + brightRed: "#F03E5F" + brightGreen: "#FCDE63" + brightYellow: "#88E337" + brightBlue: "#BEDF8F" + brightMagenta: "#BEDF8F" + brightCyan: "#FCDE63" + brightWhite: "#FDFEFD" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 73.4 + black: 0 + red: 17.2 + green: 70.8 + yellow: 37 + blue: 60.1 + magenta: 60.1 + cyan: 70.8 + white: 80.3 + brightBlack: 16 + brightRed: 33.5 + brightGreen: 83.2 + brightYellow: 71.8 + brightBlue: 76.2 + brightMagenta: 76.2 + brightCyan: 83.2 + brightWhite: 102.8 diff --git a/themes/rainglow--iceberg-contrast.yaml b/themes/rainglow--iceberg-contrast.yaml new file mode 100644 index 00000000..31946868 --- /dev/null +++ b/themes/rainglow--iceberg-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (iceberg-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0B0E0E" + fg: "#BDD6DB" + black: "#161C1C" + red: "#BA0E2E" + green: "#59C0E3" + yellow: "#2D8DA1" + blue: "#FFFFFF" + magenta: "#B1E2F2" + cyan: "#FFFFFF" + white: "#CEE0E4" + brightBlack: "#384747" + brightRed: "#F03E5F" + brightGreen: "#B0E1F2" + brightYellow: "#61BFD3" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.6 + black: 0 + red: 21.2 + green: 61.5 + yellow: 35.6 + blue: 107.6 + magenta: 84 + cyan: 107.6 + white: 85.5 + brightBlack: 9.6 + brightRed: 37.5 + brightGreen: 83.4 + brightYellow: 60.6 + brightBlue: 107.6 + brightMagenta: 107.6 + brightCyan: 107.6 + brightWhite: 107.6 diff --git a/themes/rainglow--iceberg-light.yaml b/themes/rainglow--iceberg-light.yaml new file mode 100644 index 00000000..b493d2ed --- /dev/null +++ b/themes/rainglow--iceberg-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (iceberg-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#BDD6DB" + fg: "#323B3D" + black: "#CEE0E4" + red: "#BA0E2E" + green: "#499FBC" + yellow: "#2D8DA1" + blue: "#323B3D" + magenta: "#7EA3AF" + cyan: "#323B3D" + white: "#3D494B" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#94C6D7" + brightYellow: "#61BFD3" + brightBlue: "#607175" + brightMagenta: "#BDD0D6" + brightCyan: "#607175" + brightWhite: "#607175" +meta: + mode: "light" + accent: "orange" + hue: 211 + pair: null + contrast: + fg: 70 + black: 0 + red: 53.8 + green: 30.1 + yellow: 39.3 + blue: 70 + magenta: 26 + cyan: 70 + white: 65 + brightBlack: 27.5 + brightRed: 37.4 + brightGreen: 8.4 + brightYellow: 14.9 + brightBlue: 48.7 + brightMagenta: 0 + brightCyan: 48.7 + brightWhite: 48.7 diff --git a/themes/rainglow--iceberg.yaml b/themes/rainglow--iceberg.yaml new file mode 100644 index 00000000..bfac315d --- /dev/null +++ b/themes/rainglow--iceberg.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (iceberg)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#323B3D" + fg: "#BDD6DB" + black: "#3D494B" + red: "#BA0E2E" + green: "#59C0E3" + yellow: "#2D8DA1" + blue: "#FFFFFF" + magenta: "#B1E2F2" + cyan: "#FFFFFF" + white: "#CEE0E4" + brightBlack: "#607175" + brightRed: "#F03E5F" + brightGreen: "#B0E1F2" + brightYellow: "#61BFD3" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 213 + pair: null + contrast: + fg: 71.2 + black: 0 + red: 13.8 + green: 54.1 + yellow: 28.2 + blue: 100.2 + magenta: 76.5 + cyan: 100.2 + white: 78.1 + brightBlack: 18.8 + brightRed: 30.1 + brightGreen: 76 + brightYellow: 53.1 + brightBlue: 100.2 + brightMagenta: 100.2 + brightCyan: 100.2 + brightWhite: 100.2 diff --git a/themes/rainglow--isotope-contrast.yaml b/themes/rainglow--isotope-contrast.yaml new file mode 100644 index 00000000..dfdd5007 --- /dev/null +++ b/themes/rainglow--isotope-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (isotope-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0E0F11" + fg: "#F3EFF5" + black: "#191B1F" + red: "#BA0E2E" + green: "#72B01D" + yellow: "#B3DD49" + blue: "#FFFFFF" + magenta: "#B3DD49" + cyan: "#72B01D" + white: "#FFFFFF" + brightBlack: "#3C4049" + brightRed: "#F03E5F" + brightGreen: "#A5E251" + brightYellow: "#D7ED9F" + brightBlue: "#FFFFFF" + brightMagenta: "#D7ED9F" + brightCyan: "#A5E251" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97.9 + black: 0 + red: 21.1 + green: 50.3 + yellow: 76.7 + blue: 107.5 + magenta: 76.7 + cyan: 50.3 + white: 107.5 + brightBlack: 8 + brightRed: 37.4 + brightGreen: 77.8 + brightYellow: 90 + brightBlue: 107.5 + brightMagenta: 90 + brightCyan: 77.8 + brightWhite: 107.5 diff --git a/themes/rainglow--isotope-light.yaml b/themes/rainglow--isotope-light.yaml new file mode 100644 index 00000000..020f9b50 --- /dev/null +++ b/themes/rainglow--isotope-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (isotope-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#454955" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#72B01D" + yellow: "#98BC3E" + blue: "#454955" + magenta: "#98BC3E" + cyan: "#72B01D" + white: "#505563" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#A5E251" + brightYellow: "#C1D888" + brightBlue: "#73798D" + brightMagenta: "#C1D888" + brightCyan: "#A5E251" + brightWhite: "#73798D" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 90.6 + black: 0 + red: 80.3 + green: 51.2 + yellow: 42.9 + blue: 90.6 + magenta: 42.9 + cyan: 51.2 + white: 85.9 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 24.9 + brightYellow: 25.7 + brightBlue: 70 + brightMagenta: 25.7 + brightCyan: 24.9 + brightWhite: 70 diff --git a/themes/rainglow--isotope.yaml b/themes/rainglow--isotope.yaml new file mode 100644 index 00000000..56de4bb1 --- /dev/null +++ b/themes/rainglow--isotope.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (isotope)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#454955" + fg: "#F3EFF5" + black: "#505563" + red: "#BA0E2E" + green: "#72B01D" + yellow: "#B3DD49" + blue: "#FFFFFF" + magenta: "#B3DD49" + cyan: "#72B01D" + white: "#FFFFFF" + brightBlack: "#73798D" + brightRed: "#F03E5F" + brightGreen: "#A5E251" + brightYellow: "#D7ED9F" + brightBlue: "#FFFFFF" + brightMagenta: "#D7ED9F" + brightCyan: "#A5E251" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 271 + pair: null + contrast: + fg: 85.4 + black: 0 + red: 8.7 + green: 37.8 + yellow: 64.3 + blue: 95 + magenta: 64.3 + cyan: 37.8 + white: 95 + brightBlack: 18.8 + brightRed: 25 + brightGreen: 65.4 + brightYellow: 77.6 + brightBlue: 95 + brightMagenta: 77.6 + brightCyan: 65.4 + brightWhite: 95 diff --git a/themes/rainglow--jewel-contrast.yaml b/themes/rainglow--jewel-contrast.yaml new file mode 100644 index 00000000..2dfecb2b --- /dev/null +++ b/themes/rainglow--jewel-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (jewel-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#141619" + fg: "#C0CCDB" + black: "#1F2227" + red: "#BA0E2E" + green: "#6299C4" + yellow: "#C262C4" + blue: "#62C47C" + magenta: "#6299C4" + cyan: "#62C47C" + white: "#D0D9E4" + brightBlack: "#414852" + brightRed: "#F03E5F" + brightGreen: "#ACC9E0" + brightYellow: "#DFACE0" + brightBlue: "#ACE0BA" + brightMagenta: "#ACC9E0" + brightCyan: "#ACE0BA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 74 + black: 0 + red: 20.6 + green: 43.6 + yellow: 37.7 + blue: 59 + magenta: 43.6 + cyan: 59 + white: 82 + brightBlack: 10.1 + brightRed: 36.9 + brightGreen: 70.7 + brightYellow: 65.8 + brightBlue: 79.5 + brightMagenta: 70.7 + brightCyan: 79.5 + brightWhite: 107 diff --git a/themes/rainglow--jewel-light.yaml b/themes/rainglow--jewel-light.yaml new file mode 100644 index 00000000..637e4563 --- /dev/null +++ b/themes/rainglow--jewel-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (jewel-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#5C6470" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#6299C4" + yellow: "#C262C4" + blue: "#62C47C" + magenta: "#6299C4" + cyan: "#62C47C" + white: "#68717E" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#ACC9E0" + brightYellow: "#DFACE0" + brightBlue: "#ACE0BA" + brightMagenta: "#ACC9E0" + brightCyan: "#ACE0BA" + brightWhite: "#8F97A3" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.9 + black: 0 + red: 80.3 + green: 57.3 + yellow: 63.1 + blue: 42.3 + magenta: 57.3 + cyan: 42.3 + white: 74.2 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 31.1 + brightYellow: 35.8 + brightBlue: 22.9 + brightMagenta: 31.1 + brightCyan: 22.9 + brightWhite: 56 diff --git a/themes/rainglow--jewel.yaml b/themes/rainglow--jewel.yaml new file mode 100644 index 00000000..dd3e6c64 --- /dev/null +++ b/themes/rainglow--jewel.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (jewel)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#32373D" + fg: "#C0CCDB" + black: "#3D444B" + red: "#BA0E2E" + green: "#6299C4" + yellow: "#C262C4" + blue: "#62C47C" + magenta: "#6299C4" + cyan: "#62C47C" + white: "#D0D9E4" + brightBlack: "#606A75" + brightRed: "#F03E5F" + brightGreen: "#ACC9E0" + brightYellow: "#DFACE0" + brightBlue: "#ACE0BA" + brightMagenta: "#ACC9E0" + brightCyan: "#ACE0BA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + pair: null + contrast: + fg: 68 + black: 0 + red: 14.7 + green: 37.6 + yellow: 31.7 + blue: 53.1 + magenta: 37.6 + cyan: 53.1 + white: 76.1 + brightBlack: 17.4 + brightRed: 31 + brightGreen: 64.8 + brightYellow: 59.8 + brightBlue: 73.5 + brightMagenta: 64.8 + brightCyan: 73.5 + brightWhite: 101 diff --git a/themes/rainglow--jingle-contrast.yaml b/themes/rainglow--jingle-contrast.yaml new file mode 100644 index 00000000..191b4546 --- /dev/null +++ b/themes/rainglow--jingle-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (jingle-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0D1011" + fg: "#C0CCDB" + black: "#181E1F" + red: "#BA0E2E" + green: "#E06D5C" + yellow: "#7EC579" + blue: "#98ABB7" + magenta: "#E06D5C" + cyan: "#7EC579" + white: "#D0D9E4" + brightBlack: "#39464B" + brightRed: "#F03E5F" + brightGreen: "#F0BAB2" + brightYellow: "#C3E4C0" + brightBlue: "#D4DCE1" + brightMagenta: "#F0BAB2" + brightCyan: "#C3E4C0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 74.5 + black: 0 + red: 21.1 + green: 42.3 + yellow: 61.6 + blue: 54.8 + magenta: 42.3 + cyan: 61.6 + white: 82.5 + brightBlack: 9.4 + brightRed: 37.4 + brightGreen: 72.1 + brightYellow: 84.4 + brightBlue: 84.2 + brightMagenta: 72.1 + brightCyan: 84.4 + brightWhite: 107.5 diff --git a/themes/rainglow--jingle-light.yaml b/themes/rainglow--jingle-light.yaml new file mode 100644 index 00000000..936e7e20 --- /dev/null +++ b/themes/rainglow--jingle-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (jingle-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#485860" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#E06D5C" + yellow: "#7EC579" + blue: "#98ABB7" + magenta: "#E06D5C" + cyan: "#7EC579" + white: "#53656F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F0BAB2" + brightYellow: "#C3E4C0" + brightBlue: "#D4DCE1" + brightMagenta: "#F0BAB2" + brightCyan: "#C3E4C0" + brightWhite: "#768D98" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.7 + black: 0 + red: 80.3 + green: 59 + yellow: 40.3 + blue: 46.8 + magenta: 59 + cyan: 40.3 + white: 80.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 30.2 + brightYellow: 18.7 + brightBlue: 18.9 + brightMagenta: 30.2 + brightCyan: 18.7 + brightWhite: 62.4 diff --git a/themes/rainglow--jingle.yaml b/themes/rainglow--jingle.yaml new file mode 100644 index 00000000..d04f009b --- /dev/null +++ b/themes/rainglow--jingle.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (jingle)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#283035" + fg: "#C0CCDB" + black: "#333D44" + red: "#BA0E2E" + green: "#E06D5C" + yellow: "#7EC579" + blue: "#98ABB7" + magenta: "#E06D5C" + cyan: "#7EC579" + white: "#D0D9E4" + brightBlack: "#54656F" + brightRed: "#F03E5F" + brightGreen: "#F0BAB2" + brightYellow: "#C3E4C0" + brightBlue: "#D4DCE1" + brightMagenta: "#F0BAB2" + brightCyan: "#C3E4C0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 235 + pair: null + contrast: + fg: 70 + black: 0 + red: 16.6 + green: 37.9 + yellow: 57.2 + blue: 50.4 + magenta: 37.9 + cyan: 57.2 + white: 78.1 + brightBlack: 16.7 + brightRed: 32.9 + brightGreen: 67.7 + brightYellow: 80 + brightBlue: 79.7 + brightMagenta: 67.7 + brightCyan: 80 + brightWhite: 103 diff --git a/themes/rainglow--joker-contrast.yaml b/themes/rainglow--joker-contrast.yaml new file mode 100644 index 00000000..55bded40 --- /dev/null +++ b/themes/rainglow--joker-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (joker-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#141619" + fg: "#C0CCDB" + black: "#1F2227" + red: "#BA0E2E" + green: "#00B27D" + yellow: "#9A6FC4" + blue: "#FFFFFF" + magenta: "#00B27D" + cyan: "#9A6FC4" + white: "#D0D9E4" + brightBlack: "#414852" + brightRed: "#F03E5F" + brightGreen: "#19FFBB" + brightYellow: "#CDB7E2" + brightBlue: "#FFFFFF" + brightMagenta: "#19FFBB" + brightCyan: "#CDB7E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 74 + black: 0 + red: 20.6 + green: 48.7 + yellow: 34.9 + blue: 107 + magenta: 48.7 + cyan: 34.9 + white: 82 + brightBlack: 10.1 + brightRed: 36.9 + brightGreen: 88.4 + brightYellow: 67.4 + brightBlue: 107 + brightMagenta: 88.4 + brightCyan: 67.4 + brightWhite: 107 diff --git a/themes/rainglow--joker-light.yaml b/themes/rainglow--joker-light.yaml new file mode 100644 index 00000000..ce38259d --- /dev/null +++ b/themes/rainglow--joker-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (joker-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#4A5159" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#00B27D" + yellow: "#9A6FC4" + blue: "#4A5159" + magenta: "#00B27D" + cyan: "#9A6FC4" + white: "#565E67" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#19FFBB" + brightYellow: "#CDB7E2" + brightBlue: "#798490" + brightMagenta: "#19FFBB" + brightCyan: "#CDB7E2" + brightWhite: "#798490" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.9 + black: 0 + red: 80.3 + green: 52.3 + yellow: 65.9 + blue: 87.9 + magenta: 52.3 + cyan: 65.9 + white: 82.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 14.5 + brightYellow: 34.3 + brightBlue: 65.6 + brightMagenta: 14.5 + brightCyan: 34.3 + brightWhite: 65.6 diff --git a/themes/rainglow--joker.yaml b/themes/rainglow--joker.yaml new file mode 100644 index 00000000..1b3528f4 --- /dev/null +++ b/themes/rainglow--joker.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (joker)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#32373D" + fg: "#C0CCDB" + black: "#3D444B" + red: "#BA0E2E" + green: "#00B27D" + yellow: "#9A6FC4" + blue: "#FFFFFF" + magenta: "#00B27D" + cyan: "#9A6FC4" + white: "#D0D9E4" + brightBlack: "#606A75" + brightRed: "#F03E5F" + brightGreen: "#19FFBB" + brightYellow: "#CDB7E2" + brightBlue: "#FFFFFF" + brightMagenta: "#19FFBB" + brightCyan: "#CDB7E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + pair: null + contrast: + fg: 68 + black: 0 + red: 14.7 + green: 42.7 + yellow: 28.9 + blue: 101 + magenta: 42.7 + cyan: 28.9 + white: 76.1 + brightBlack: 17.4 + brightRed: 31 + brightGreen: 82.4 + brightYellow: 61.4 + brightBlue: 101 + brightMagenta: 82.4 + brightCyan: 61.4 + brightWhite: 101 diff --git a/themes/rainglow--juicy-contrast.yaml b/themes/rainglow--juicy-contrast.yaml new file mode 100644 index 00000000..9fea93b7 --- /dev/null +++ b/themes/rainglow--juicy-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (juicy-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#000000" + fg: "#E3E2E0" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#FF4E50" + yellow: "#3BC7B8" + blue: "#C3CB4C" + magenta: "#EDB92E" + cyan: "#F85931" + white: "#EFEFED" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#FFB4B5" + brightYellow: "#8ADED5" + brightBlue: "#DDE29B" + brightMagenta: "#F5D88C" + brightCyan: "#FBA894" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.2 + black: 0 + red: 21.5 + green: 43.2 + yellow: 61.8 + blue: 70.7 + magenta: 69 + cyan: 43 + white: 97.3 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 73 + brightYellow: 77.7 + brightBlue: 85.9 + brightMagenta: 84.5 + brightCyan: 66.9 + brightWhite: 107.9 diff --git a/themes/rainglow--juicy-light.yaml b/themes/rainglow--juicy-light.yaml new file mode 100644 index 00000000..7286274a --- /dev/null +++ b/themes/rainglow--juicy-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (juicy-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#F0F0F0" + fg: "#333333" + black: "#FDFDFD" + red: "#BA0E2E" + green: "#FF4E50" + yellow: "#3BC7B8" + blue: "#C3CB4C" + magenta: "#EDB92E" + cyan: "#F85931" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FFB4B5" + brightYellow: "#8ADED5" + brightBlue: "#DDE29B" + brightMagenta: "#F5D88C" + brightCyan: "#FBA894" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.8 + black: 0 + red: 71.4 + green: 49.6 + yellow: 31.6 + blue: 23 + magenta: 24.7 + cyan: 49.8 + white: 85.2 + brightBlack: 7.6 + brightRed: 55 + brightGreen: 20.9 + brightYellow: 16.5 + brightBlue: 8.8 + brightMagenta: 10.1 + brightCyan: 26.7 + brightWhite: 69.8 diff --git a/themes/rainglow--juicy.yaml b/themes/rainglow--juicy.yaml new file mode 100644 index 00000000..6fe956b7 --- /dev/null +++ b/themes/rainglow--juicy.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (juicy)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#222222" + fg: "#E3E2E0" + black: "#2F2F2F" + red: "#BA0E2E" + green: "#FF4E50" + yellow: "#3BC7B8" + blue: "#C3CB4C" + magenta: "#EDB92E" + cyan: "#F85931" + white: "#EFEFED" + brightBlack: "#555555" + brightRed: "#F03E5F" + brightGreen: "#FFB4B5" + brightYellow: "#8ADED5" + brightBlue: "#DDE29B" + brightMagenta: "#F5D88C" + brightCyan: "#FBA894" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 86.8 + black: 0 + red: 19.1 + green: 40.8 + yellow: 59.4 + blue: 68.3 + magenta: 66.6 + cyan: 40.6 + white: 94.9 + brightBlack: 13.7 + brightRed: 35.4 + brightGreen: 70.5 + brightYellow: 75.2 + brightBlue: 83.5 + brightMagenta: 82.1 + brightCyan: 64.4 + brightWhite: 105.5 diff --git a/themes/rainglow--jumper-contrast.yaml b/themes/rainglow--jumper-contrast.yaml new file mode 100644 index 00000000..3db1d128 --- /dev/null +++ b/themes/rainglow--jumper-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (jumper-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0E1111" + fg: "#8DA0A0" + black: "#191F1F" + red: "#BA0E2E" + green: "#36A595" + yellow: "#F6DA40" + blue: "#DB515C" + magenta: "#E08E4C" + cyan: "#36A595" + white: "#9BACAC" + brightBlack: "#3C4949" + brightRed: "#F03E5F" + brightGreen: "#71D0C3" + brightYellow: "#FBEDA1" + brightBlue: "#ECA6AB" + brightMagenta: "#EFC5A3" + brightCyan: "#71D0C3" + brightWhite: "#C5CECE" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 48.4 + black: 0 + red: 21 + green: 44.8 + yellow: 83.9 + blue: 35.4 + magenta: 51.3 + cyan: 44.8 + white: 55 + brightBlack: 10.3 + brightRed: 37.3 + brightGreen: 68.2 + brightYellow: 94.9 + brightBlue: 63.8 + brightMagenta: 75.8 + brightCyan: 68.2 + brightWhite: 75.3 diff --git a/themes/rainglow--jumper-light.yaml b/themes/rainglow--jumper-light.yaml new file mode 100644 index 00000000..06a59039 --- /dev/null +++ b/themes/rainglow--jumper-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (jumper-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#222A2A" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#36A595" + yellow: "#C9B230" + blue: "#DB515C" + magenta: "#E08E4C" + cyan: "#36A595" + white: "#2D3838" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#71D0C3" + brightYellow: "#E0D27F" + brightBlue: "#ECA6AB" + brightMagenta: "#EFC5A3" + brightCyan: "#71D0C3" + brightWhite: "#506262" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.5 + black: 0 + red: 80.3 + green: 56.5 + yellow: 41.5 + blue: 65.8 + magenta: 50.2 + cyan: 56.5 + white: 97.7 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 33.9 + brightYellow: 24.6 + brightBlue: 38.1 + brightMagenta: 26.8 + brightCyan: 33.9 + brightWhite: 82 diff --git a/themes/rainglow--jumper.yaml b/themes/rainglow--jumper.yaml new file mode 100644 index 00000000..ed06e0ae --- /dev/null +++ b/themes/rainglow--jumper.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (jumper)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#222A2A" + fg: "#8DA0A0" + black: "#2D3838" + red: "#BA0E2E" + green: "#36A595" + yellow: "#F6DA40" + blue: "#DB515C" + magenta: "#E08E4C" + cyan: "#36A595" + white: "#9BACAC" + brightBlack: "#506262" + brightRed: "#F03E5F" + brightGreen: "#71D0C3" + brightYellow: "#FBEDA1" + brightBlue: "#ECA6AB" + brightMagenta: "#EFC5A3" + brightCyan: "#71D0C3" + brightWhite: "#C5CECE" +meta: + mode: "dark" + accent: "orange" + hue: 197 + pair: null + contrast: + fg: 45.3 + black: 0 + red: 18 + green: 41.7 + yellow: 80.8 + blue: 32.3 + magenta: 48.2 + cyan: 41.7 + white: 51.9 + brightBlack: 16.4 + brightRed: 34.3 + brightGreen: 65.1 + brightYellow: 91.8 + brightBlue: 60.7 + brightMagenta: 72.7 + brightCyan: 65.1 + brightWhite: 72.2 diff --git a/themes/rainglow--keen-contrast.yaml b/themes/rainglow--keen-contrast.yaml new file mode 100644 index 00000000..1052e6c8 --- /dev/null +++ b/themes/rainglow--keen-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (keen-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#6F8B94" + yellow: "#8767B7" + blue: "#B5DB99" + magenta: "#6F8B94" + cyan: "#8767B7" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#AABABF" + brightYellow: "#BEACD8" + brightBlue: "#ECF6E4" + brightMagenta: "#AABABF" + brightCyan: "#BEACD8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 21.5 + green: 37.9 + yellow: 30.5 + blue: 77.9 + magenta: 37.9 + cyan: 30.5 + white: 107.9 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 63.5 + brightYellow: 61.6 + brightBlue: 99.8 + brightMagenta: 63.5 + brightCyan: 61.6 + brightWhite: 107.9 diff --git a/themes/rainglow--keen-light.yaml b/themes/rainglow--keen-light.yaml new file mode 100644 index 00000000..46a958b8 --- /dev/null +++ b/themes/rainglow--keen-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (keen-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#CCCCCC" + fg: "#111111" + black: "#D9D9D9" + red: "#BA0E2E" + green: "#6F8B94" + yellow: "#8767B7" + blue: "#7C9669" + magenta: "#6F8B94" + cyan: "#8767B7" + white: "#1E1E1E" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#AABABF" + brightYellow: "#BEACD8" + brightBlue: "#B0C0A5" + brightMagenta: "#AABABF" + brightCyan: "#BEACD8" + brightWhite: "#444444" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 75.8 + black: 0 + red: 50.8 + green: 34.3 + yellow: 41.7 + blue: 30.5 + magenta: 34.3 + cyan: 41.7 + white: 74.1 + brightBlack: 30.8 + brightRed: 34.3 + brightGreen: 9.3 + brightYellow: 11.2 + brightBlue: 0 + brightMagenta: 9.3 + brightCyan: 11.2 + brightWhite: 63.1 diff --git a/themes/rainglow--keen.yaml b/themes/rainglow--keen.yaml new file mode 100644 index 00000000..b0f73e25 --- /dev/null +++ b/themes/rainglow--keen.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (keen)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#111111" + fg: "#CCCCCC" + black: "#1E1E1E" + red: "#BA0E2E" + green: "#6F8B94" + yellow: "#8767B7" + blue: "#B5DB99" + magenta: "#6F8B94" + cyan: "#8767B7" + white: "#D9D9D9" + brightBlack: "#444444" + brightRed: "#F03E5F" + brightGreen: "#AABABF" + brightYellow: "#BEACD8" + brightBlue: "#ECF6E4" + brightMagenta: "#AABABF" + brightCyan: "#BEACD8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 75.2 + black: 0 + red: 21 + green: 37.4 + yellow: 30 + blue: 77.4 + magenta: 37.4 + cyan: 30 + white: 83 + brightBlack: 9.3 + brightRed: 37.3 + brightGreen: 63 + brightYellow: 61.1 + brightBlue: 99.3 + brightMagenta: 63 + brightCyan: 61.1 + brightWhite: 107.4 diff --git a/themes/rainglow--kiwi-contrast.yaml b/themes/rainglow--kiwi-contrast.yaml new file mode 100644 index 00000000..2cf22ec9 --- /dev/null +++ b/themes/rainglow--kiwi-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (kiwi-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0C0F0E" + fg: "#EDEBE6" + black: "#171D1B" + red: "#BA0E2E" + green: "#229986" + yellow: "#95C72A" + blue: "#0B6D5C" + magenta: "#229986" + cyan: "#95C72A" + white: "#F8F7F5" + brightBlack: "#394843" + brightRed: "#F03E5F" + brightGreen: "#4AD7C0" + brightYellow: "#BFE275" + brightBlue: "#14CAAA" + brightMagenta: "#4AD7C0" + brightCyan: "#BFE275" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.5 + black: 0 + red: 21.2 + green: 39 + yellow: 63.4 + blue: 20.8 + magenta: 39 + cyan: 63.4 + white: 102.3 + brightBlack: 9.8 + brightRed: 37.5 + brightGreen: 69.8 + brightYellow: 81 + brightBlue: 61.7 + brightMagenta: 69.8 + brightCyan: 81 + brightWhite: 107.5 diff --git a/themes/rainglow--kiwi-light.yaml b/themes/rainglow--kiwi-light.yaml new file mode 100644 index 00000000..c1a96284 --- /dev/null +++ b/themes/rainglow--kiwi-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (kiwi-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#555555" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#229986" + yellow: "#95C72A" + blue: "#0B6D5C" + magenta: "#229986" + cyan: "#95C72A" + white: "#626262" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#4AD7C0" + brightYellow: "#BFE275" + brightBlue: "#14CAAA" + brightMagenta: "#4AD7C0" + brightCyan: "#BFE275" + brightWhite: "#888888" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.9 + black: 0 + red: 80.3 + green: 62.3 + yellow: 38.6 + blue: 80.7 + magenta: 62.3 + cyan: 38.6 + white: 80.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 32.6 + brightYellow: 21.9 + brightBlue: 40.2 + brightMagenta: 32.6 + brightCyan: 21.9 + brightWhite: 63.1 diff --git a/themes/rainglow--kiwi.yaml b/themes/rainglow--kiwi.yaml new file mode 100644 index 00000000..dbc031c9 --- /dev/null +++ b/themes/rainglow--kiwi.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (kiwi)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2A3330" + fg: "#EDEBE6" + black: "#36413D" + red: "#BA0E2E" + green: "#229986" + yellow: "#95C72A" + blue: "#0B6D5C" + magenta: "#229986" + cyan: "#95C72A" + white: "#F8F7F5" + brightBlack: "#586B65" + brightRed: "#F03E5F" + brightGreen: "#4AD7C0" + brightYellow: "#BFE275" + brightBlue: "#14CAAA" + brightMagenta: "#4AD7C0" + brightCyan: "#BFE275" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 173 + pair: null + contrast: + fg: 89.5 + black: 0 + red: 16.1 + green: 34 + yellow: 58.4 + blue: 15.8 + magenta: 34 + cyan: 58.4 + white: 97.3 + brightBlack: 18.1 + brightRed: 32.4 + brightGreen: 64.7 + brightYellow: 76 + brightBlue: 56.7 + brightMagenta: 64.7 + brightCyan: 76 + brightWhite: 102.5 diff --git a/themes/rainglow--laracasts-contrast.yaml b/themes/rainglow--laracasts-contrast.yaml new file mode 100644 index 00000000..1a330909 --- /dev/null +++ b/themes/rainglow--laracasts-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (laracasts-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#292D33" + fg: "#C0CCDB" + black: "#343941" + red: "#BA0E2E" + green: "#00B1B3" + yellow: "#EF6733" + blue: "#FFFFFF" + magenta: "#00B1B3" + cyan: "#EF6733" + white: "#D0D9E4" + brightBlack: "#565F6C" + brightRed: "#F03E5F" + brightGreen: "#1AFCFF" + brightYellow: "#F6AD92" + brightBlue: "#FFFFFF" + brightMagenta: "#1AFCFF" + brightCyan: "#F6AD92" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 258 + pair: null + contrast: + fg: 70.5 + black: 0 + red: 17.1 + green: 46.7 + yellow: 39.5 + blue: 103.5 + magenta: 46.7 + cyan: 39.5 + white: 78.5 + brightBlack: 15.4 + brightRed: 33.4 + brightGreen: 86.3 + brightYellow: 63.3 + brightBlue: 103.5 + brightMagenta: 86.3 + brightCyan: 63.3 + brightWhite: 103.5 diff --git a/themes/rainglow--laracasts-light.yaml b/themes/rainglow--laracasts-light.yaml new file mode 100644 index 00000000..df0c3bed --- /dev/null +++ b/themes/rainglow--laracasts-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (laracasts-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#4D545D" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#00B1B3" + yellow: "#EF6733" + blue: "#4D545D" + magenta: "#00B1B3" + cyan: "#EF6733" + white: "#59616B" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#1AFCFF" + brightYellow: "#F6AD92" + brightBlue: "#7D8793" + brightMagenta: "#1AFCFF" + brightCyan: "#F6AD92" + brightWhite: "#7D8793" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 86.6 + black: 0 + red: 80.3 + green: 50.8 + yellow: 57.9 + blue: 86.6 + magenta: 50.8 + cyan: 57.9 + white: 81.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 13.2 + brightYellow: 34.9 + brightBlue: 64.1 + brightMagenta: 13.2 + brightCyan: 34.9 + brightWhite: 64.1 diff --git a/themes/rainglow--laracasts.yaml b/themes/rainglow--laracasts.yaml new file mode 100644 index 00000000..9762ebd4 --- /dev/null +++ b/themes/rainglow--laracasts.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (laracasts)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#4D545D" + fg: "#C0CCDB" + black: "#59616B" + red: "#BA0E2E" + green: "#00B1B3" + yellow: "#EF6733" + blue: "#FFFFFF" + magenta: "#00B1B3" + cyan: "#EF6733" + white: "#D0D9E4" + brightBlack: "#7D8793" + brightRed: "#F03E5F" + brightGreen: "#1AFCFF" + brightYellow: "#F6AD92" + brightBlue: "#FFFFFF" + brightMagenta: "#1AFCFF" + brightCyan: "#F6AD92" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 255 + pair: null + contrast: + fg: 58.4 + black: 0 + red: 0 + green: 34.6 + yellow: 27.4 + blue: 91.4 + magenta: 34.6 + cyan: 27.4 + white: 66.4 + brightBlack: 21.1 + brightRed: 21.3 + brightGreen: 74.2 + brightYellow: 51.2 + brightBlue: 91.4 + brightMagenta: 74.2 + brightCyan: 51.2 + brightWhite: 91.4 diff --git a/themes/rainglow--laravel-contrast.yaml b/themes/rainglow--laravel-contrast.yaml new file mode 100644 index 00000000..e4d7590b --- /dev/null +++ b/themes/rainglow--laravel-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (laravel-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#FFC48C" + yellow: "#FC6B0A" + blue: "#FC580C" + magenta: "#FFA927" + cyan: "#FFC48C" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#FFF8F2" + brightYellow: "#FDA86F" + brightBlue: "#FD9D71" + brightMagenta: "#FFD28D" + brightCyan: "#FFF8F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 21.5 + green: 77.8 + yellow: 47.4 + blue: 43.6 + magenta: 66.2 + cyan: 77.8 + white: 107.9 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 104 + brightYellow: 66.3 + brightBlue: 62.6 + brightMagenta: 83.5 + brightCyan: 104 + brightWhite: 107.9 diff --git a/themes/rainglow--laravel-light.yaml b/themes/rainglow--laravel-light.yaml new file mode 100644 index 00000000..920c4c1b --- /dev/null +++ b/themes/rainglow--laravel-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (laravel-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#FFC48C" + yellow: "#FC6B0A" + blue: "#FC580C" + magenta: "#FFA927" + cyan: "#FFC48C" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FFF8F2" + brightYellow: "#FDA86F" + brightBlue: "#FD9D71" + brightMagenta: "#FFD28D" + brightCyan: "#FFF8F2" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 25.3 + yellow: 54.4 + blue: 58.1 + magenta: 36.3 + cyan: 25.3 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 0 + brightYellow: 36.2 + brightBlue: 39.7 + brightMagenta: 19.9 + brightCyan: 0 + brightWhite: 71.1 diff --git a/themes/rainglow--laravel.yaml b/themes/rainglow--laravel.yaml new file mode 100644 index 00000000..1169a26b --- /dev/null +++ b/themes/rainglow--laravel.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (laravel)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2E2C2B" + fg: "#DEDEDE" + black: "#3B3937" + red: "#BA0E2E" + green: "#FFC48C" + yellow: "#FC6B0A" + blue: "#FC580C" + magenta: "#FFA927" + cyan: "#FFC48C" + white: "#EBEBEB" + brightBlack: "#635E5C" + brightRed: "#F03E5F" + brightGreen: "#FFF8F2" + brightYellow: "#FDA86F" + brightBlue: "#FD9D71" + brightMagenta: "#FFD28D" + brightCyan: "#FFF8F2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.3 + black: 0 + red: 17.2 + green: 73.5 + yellow: 43.1 + blue: 39.3 + magenta: 61.9 + cyan: 73.5 + white: 90.5 + brightBlack: 15.8 + brightRed: 33.5 + brightGreen: 99.7 + brightYellow: 62 + brightBlue: 58.3 + brightMagenta: 79.2 + brightCyan: 99.7 + brightWhite: 103.6 diff --git a/themes/rainglow--lavender-contrast.yaml b/themes/rainglow--lavender-contrast.yaml new file mode 100644 index 00000000..8fbfb281 --- /dev/null +++ b/themes/rainglow--lavender-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (lavender-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#080709" + fg: "#E0CEED" + black: "#151217" + red: "#BA0E2E" + green: "#A29DFA" + yellow: "#B657FF" + blue: "#F5B0EF" + magenta: "#8E6DA6" + cyan: "#8E69C9" + white: "#ECE1F4" + brightBlack: "#3B3442" + brightRed: "#F03E5F" + brightGreen: "#FEFEFF" + brightYellow: "#E2BDFF" + brightBlue: "#FFFFFF" + brightMagenta: "#BFACCD" + brightCyan: "#C7B4E4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 80.7 + black: 0 + red: 21.4 + green: 54.7 + yellow: 38.5 + blue: 72.4 + magenta: 31.9 + cyan: 32.9 + white: 90.8 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 107.2 + brightYellow: 75.1 + brightBlue: 107.8 + brightMagenta: 61.1 + brightCyan: 66.4 + brightWhite: 107.8 diff --git a/themes/rainglow--lavender-light.yaml b/themes/rainglow--lavender-light.yaml new file mode 100644 index 00000000..0212f247 --- /dev/null +++ b/themes/rainglow--lavender-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (lavender-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#29222E" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#A29DFA" + yellow: "#B657FF" + blue: "#F5B0EF" + magenta: "#8E6DA6" + cyan: "#8E69C9" + white: "#362D3D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FEFEFF" + brightYellow: "#E2BDFF" + brightBlue: "#FFFFFF" + brightMagenta: "#BFACCD" + brightCyan: "#C7B4E4" + brightWhite: "#5D4D69" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 102.3 + black: 0 + red: 80.3 + green: 47.2 + yellow: 63.1 + blue: 30.3 + magenta: 69.6 + cyan: 68.7 + white: 99.4 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 0 + brightYellow: 27.7 + brightBlue: 0 + brightMagenta: 41.1 + brightCyan: 36.1 + brightWhite: 86.7 diff --git a/themes/rainglow--lavender.yaml b/themes/rainglow--lavender.yaml new file mode 100644 index 00000000..2ab01475 --- /dev/null +++ b/themes/rainglow--lavender.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (lavender)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#29222E" + fg: "#E0CEED" + black: "#362D3D" + red: "#BA0E2E" + green: "#A29DFA" + yellow: "#B657FF" + blue: "#F5B0EF" + magenta: "#8E6DA6" + cyan: "#8E69C9" + white: "#ECE1F4" + brightBlack: "#5D4D69" + brightRed: "#F03E5F" + brightGreen: "#FEFEFF" + brightYellow: "#E2BDFF" + brightBlue: "#FFFFFF" + brightMagenta: "#BFACCD" + brightCyan: "#C7B4E4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 311 + pair: null + contrast: + fg: 77.9 + black: 0 + red: 18.6 + green: 51.9 + yellow: 35.7 + blue: 69.6 + magenta: 29.2 + cyan: 30.1 + white: 88.1 + brightBlack: 12.5 + brightRed: 34.9 + brightGreen: 104.4 + brightYellow: 72.3 + brightBlue: 105 + brightMagenta: 58.3 + brightCyan: 63.6 + brightWhite: 105 diff --git a/themes/rainglow--legacy-contrast.yaml b/themes/rainglow--legacy-contrast.yaml new file mode 100644 index 00000000..7d9cc311 --- /dev/null +++ b/themes/rainglow--legacy-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (legacy-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#080A0C" + fg: "#AEC2E0" + black: "#12171B" + red: "#BA0E2E" + green: "#267FB5" + yellow: "#FFFFFF" + blue: "#FFB20D" + magenta: "#748AA6" + cyan: "#267FB5" + white: "#C0D0E7" + brightBlack: "#313D49" + brightRed: "#F03E5F" + brightGreen: "#63B0DE" + brightYellow: "#FFFFFF" + brightBlue: "#FFD273" + brightMagenta: "#B2BECE" + brightCyan: "#63B0DE" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 68.7 + black: 0 + red: 21.4 + green: 31.5 + yellow: 107.7 + blue: 69.3 + magenta: 38.5 + cyan: 31.5 + white: 77.1 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 55 + brightYellow: 107.7 + brightBlue: 82.9 + brightMagenta: 66.6 + brightCyan: 55 + brightWhite: 104.3 diff --git a/themes/rainglow--legacy-light.yaml b/themes/rainglow--legacy-light.yaml new file mode 100644 index 00000000..87d259c0 --- /dev/null +++ b/themes/rainglow--legacy-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (legacy-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#267FB5" + yellow: "#222222" + blue: "#FFB20D" + magenta: "#748AA6" + cyan: "#267FB5" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#63B0DE" + brightYellow: "#555555" + brightBlue: "#FFD273" + brightMagenta: "#B2BECE" + brightCyan: "#63B0DE" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 70 + yellow: 102.9 + blue: 33.2 + magenta: 63 + cyan: 70 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 46.9 + brightYellow: 85.9 + brightBlue: 20.4 + brightMagenta: 35.7 + brightCyan: 46.9 + brightWhite: 71.1 diff --git a/themes/rainglow--legacy.yaml b/themes/rainglow--legacy.yaml new file mode 100644 index 00000000..ce644106 --- /dev/null +++ b/themes/rainglow--legacy.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (legacy)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#212933" + fg: "#AEC2E0" + black: "#2B3542" + red: "#BA0E2E" + green: "#267FB5" + yellow: "#FFFFFF" + blue: "#FFB20D" + magenta: "#748AA6" + cyan: "#267FB5" + white: "#C0D0E7" + brightBlack: "#495B71" + brightRed: "#F03E5F" + brightGreen: "#63B0DE" + brightYellow: "#FFFFFF" + brightBlue: "#FFD273" + brightMagenta: "#B2BECE" + brightCyan: "#63B0DE" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "orange" + hue: 254 + pair: null + contrast: + fg: 65.4 + black: 0 + red: 18 + green: 28.1 + yellow: 104.4 + blue: 65.9 + magenta: 35.2 + cyan: 28.1 + white: 73.7 + brightBlack: 14.4 + brightRed: 34.3 + brightGreen: 51.6 + brightYellow: 104.4 + brightBlue: 79.5 + brightMagenta: 63.2 + brightCyan: 51.6 + brightWhite: 100.9 diff --git a/themes/rainglow--lichen-contrast.yaml b/themes/rainglow--lichen-contrast.yaml new file mode 100644 index 00000000..55a9cd19 --- /dev/null +++ b/themes/rainglow--lichen-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (lichen-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#090D11" + fg: "#9CADBC" + black: "#121A22" + red: "#BA0E2E" + green: "#249388" + yellow: "#9CE878" + blue: "#1A9D6B" + magenta: "#246C82" + cyan: "#1A9D6B" + white: "#ABBAC6" + brightBlack: "#2C4054" + brightRed: "#F03E5F" + brightGreen: "#4AD3C5" + brightYellow: "#DCF7CF" + brightBlue: "#3EDFA2" + brightMagenta: "#41AACB" + brightCyan: "#3EDFA2" + brightWhite: "#D9DFE5" +meta: + mode: "dark" + accent: "orange" + hue: 248 + pair: null + contrast: + fg: 56.4 + black: 0 + red: 21.2 + green: 36.8 + yellow: 80.7 + blue: 39.9 + magenta: 22.2 + cyan: 39.9 + white: 63.7 + brightBlack: 7.7 + brightRed: 37.5 + brightGreen: 68.1 + brightYellow: 97.1 + brightBlue: 72.3 + brightMagenta: 49.9 + brightCyan: 72.3 + brightWhite: 86.5 diff --git a/themes/rainglow--lichen-light.yaml b/themes/rainglow--lichen-light.yaml new file mode 100644 index 00000000..c9ecee2e --- /dev/null +++ b/themes/rainglow--lichen-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (lichen-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#E6E9ED" + fg: "#414549" + black: "#F5F6F8" + red: "#BA0E2E" + green: "#249388" + yellow: "#64964C" + blue: "#1A9D6B" + magenta: "#246C82" + cyan: "#1A9D6B" + white: "#4D5256" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#4AD3C5" + brightYellow: "#9AC286" + brightBlue: "#3EDFA2" + brightMagenta: "#41AACB" + brightCyan: "#3EDFA2" + brightWhite: "#71787F" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.2 + black: 0 + red: 67.1 + green: 51.4 + yellow: 49.2 + blue: 48.4 + magenta: 66.2 + cyan: 48.4 + white: 74.2 + brightBlack: 12.5 + brightRed: 50.7 + brightGreen: 21 + brightYellow: 25.8 + brightBlue: 17 + brightMagenta: 38.5 + brightCyan: 17 + brightWhite: 57.9 diff --git a/themes/rainglow--lichen.yaml b/themes/rainglow--lichen.yaml new file mode 100644 index 00000000..ad87fdba --- /dev/null +++ b/themes/rainglow--lichen.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (lichen)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#1A252F" + fg: "#9CADBC" + black: "#23323F" + red: "#BA0E2E" + green: "#249388" + yellow: "#9CE878" + blue: "#1A9D6B" + magenta: "#246C82" + cyan: "#1A9D6B" + white: "#ABBAC6" + brightBlack: "#3E5971" + brightRed: "#F03E5F" + brightGreen: "#4AD3C5" + brightYellow: "#DCF7CF" + brightBlue: "#3EDFA2" + brightMagenta: "#41AACB" + brightCyan: "#3EDFA2" + brightWhite: "#D9DFE5" +meta: + mode: "dark" + accent: "orange" + hue: 246 + pair: null + contrast: + fg: 53.9 + black: 0 + red: 18.8 + green: 34.3 + yellow: 78.2 + blue: 37.4 + magenta: 19.7 + cyan: 37.4 + white: 61.2 + brightBlack: 13.9 + brightRed: 35.1 + brightGreen: 65.7 + brightYellow: 94.6 + brightBlue: 69.8 + brightMagenta: 47.4 + brightCyan: 69.8 + brightWhite: 84 diff --git a/themes/rainglow--loyal-contrast.yaml b/themes/rainglow--loyal-contrast.yaml new file mode 100644 index 00000000..6af5c2b8 --- /dev/null +++ b/themes/rainglow--loyal-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (loyal-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#1D1B23" + fg: "#BBB1C9" + black: "#292631" + red: "#BA0E2E" + green: "#3CBBB1" + yellow: "#EE4266" + blue: "#B3ADBA" + magenta: "#9484D6" + cyan: "#B3ADBA" + white: "#C8C0D3" + brightBlack: "#4D475D" + brightRed: "#F03E5F" + brightGreen: "#85D8D1" + brightYellow: "#F6A0B2" + brightBlue: "#E6E4E9" + brightMagenta: "#D7D0EF" + brightCyan: "#E6E4E9" + brightWhite: "#F0EDF3" +meta: + mode: "dark" + accent: "orange" + hue: 297 + pair: null + contrast: + fg: 60.8 + black: 0 + red: 19.9 + green: 54.5 + yellow: 36.4 + blue: 57.5 + magenta: 40.8 + cyan: 57.5 + white: 68.9 + brightBlack: 10.4 + brightRed: 36.2 + brightGreen: 72.7 + brightYellow: 62.7 + brightBlue: 89.3 + brightMagenta: 78.9 + brightCyan: 89.3 + brightWhite: 95.2 diff --git a/themes/rainglow--loyal-light.yaml b/themes/rainglow--loyal-light.yaml new file mode 100644 index 00000000..402180f4 --- /dev/null +++ b/themes/rainglow--loyal-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (loyal-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#413E4F" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#3CBBB1" + yellow: "#EE4266" + blue: "#B3ADBA" + magenta: "#9484D6" + cyan: "#B3ADBA" + white: "#4D495D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#85D8D1" + brightYellow: "#F6A0B2" + brightBlue: "#E6E4E9" + brightMagenta: "#D7D0EF" + brightCyan: "#E6E4E9" + brightWhite: "#706B88" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.1 + black: 0 + red: 80.3 + green: 46 + yellow: 63.7 + blue: 43 + magenta: 59.3 + cyan: 43 + white: 89.7 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 28.6 + brightYellow: 38.1 + brightBlue: 13 + brightMagenta: 22.8 + brightCyan: 13 + brightWhite: 75 diff --git a/themes/rainglow--loyal.yaml b/themes/rainglow--loyal.yaml new file mode 100644 index 00000000..c32425d4 --- /dev/null +++ b/themes/rainglow--loyal.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (loyal)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#413E4F" + fg: "#BBB1C9" + black: "#4D495D" + red: "#BA0E2E" + green: "#3CBBB1" + yellow: "#EE4266" + blue: "#B3ADBA" + magenta: "#9484D6" + cyan: "#B3ADBA" + white: "#C8C0D3" + brightBlack: "#706B88" + brightRed: "#F03E5F" + brightGreen: "#85D8D1" + brightYellow: "#F6A0B2" + brightBlue: "#E6E4E9" + brightMagenta: "#D7D0EF" + brightCyan: "#E6E4E9" + brightWhite: "#F0EDF3" +meta: + mode: "dark" + accent: "orange" + hue: 293 + pair: null + contrast: + fg: 52.6 + black: 0 + red: 11.7 + green: 46.3 + yellow: 28.2 + blue: 49.3 + magenta: 32.6 + cyan: 49.3 + white: 60.7 + brightBlack: 16.9 + brightRed: 28 + brightGreen: 64.5 + brightYellow: 54.4 + brightBlue: 81.1 + brightMagenta: 70.7 + brightCyan: 81.1 + brightWhite: 87 diff --git a/themes/rainglow--mauve-contrast.yaml b/themes/rainglow--mauve-contrast.yaml new file mode 100644 index 00000000..b427f364 --- /dev/null +++ b/themes/rainglow--mauve-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (mauve-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#191119" + fg: "#AF92B2" + black: "#281B28" + red: "#BA0E2E" + green: "#C89933" + yellow: "#74526C" + blue: "#DBD053" + magenta: "#C89933" + cyan: "#DBD053" + white: "#BAA1BD" + brightBlack: "#563A56" + brightRed: "#F03E5F" + brightGreen: "#DFC282" + brightYellow: "#A884A0" + brightBlue: "#EDE7A7" + brightMagenta: "#DFC282" + brightCyan: "#EDE7A7" + brightWhite: "#DBCEDC" +meta: + mode: "dark" + accent: "orange" + hue: 326 + pair: null + contrast: + fg: 47.7 + black: 0 + red: 20.8 + green: 50.5 + yellow: 18.5 + blue: 75.5 + magenta: 50.5 + cyan: 75.5 + white: 54.9 + brightBlack: 9 + brightRed: 37.1 + brightGreen: 70.9 + brightYellow: 41.3 + brightBlue: 90 + brightMagenta: 70.9 + brightCyan: 90 + brightWhite: 78.5 diff --git a/themes/rainglow--mauve-light.yaml b/themes/rainglow--mauve-light.yaml new file mode 100644 index 00000000..10ae20b5 --- /dev/null +++ b/themes/rainglow--mauve-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (mauve-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#372638" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#C89933" + yellow: "#74526C" + blue: "#DBD053" + magenta: "#C89933" + cyan: "#DBD053" + white: "#463047" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DFC282" + brightYellow: "#A884A0" + brightBlue: "#EDE7A7" + brightMagenta: "#DFC282" + brightCyan: "#EDE7A7" + brightWhite: "#734F75" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100.6 + black: 0 + red: 80.3 + green: 50.7 + yellow: 82.7 + blue: 26.8 + magenta: 50.7 + cyan: 26.8 + white: 97.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 31.1 + brightYellow: 59.7 + brightBlue: 13.2 + brightMagenta: 31.1 + brightCyan: 13.2 + brightWhite: 83.2 diff --git a/themes/rainglow--mauve.yaml b/themes/rainglow--mauve.yaml new file mode 100644 index 00000000..e30aa685 --- /dev/null +++ b/themes/rainglow--mauve.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (mauve)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#372638" + fg: "#AF92B2" + black: "#463047" + red: "#BA0E2E" + green: "#C89933" + yellow: "#74526C" + blue: "#DBD053" + magenta: "#C89933" + cyan: "#DBD053" + white: "#BAA1BD" + brightBlack: "#734F75" + brightRed: "#F03E5F" + brightGreen: "#DFC282" + brightYellow: "#A884A0" + brightBlue: "#EDE7A7" + brightMagenta: "#DFC282" + brightCyan: "#EDE7A7" + brightWhite: "#DBCEDC" +meta: + mode: "dark" + accent: "orange" + hue: 325 + pair: null + contrast: + fg: 44.2 + black: 0 + red: 17.3 + green: 47 + yellow: 15 + blue: 71.9 + magenta: 47 + cyan: 71.9 + white: 51.4 + brightBlack: 14.5 + brightRed: 33.6 + brightGreen: 67.4 + brightYellow: 37.8 + brightBlue: 86.5 + brightMagenta: 67.4 + brightCyan: 86.5 + brightWhite: 75 diff --git a/themes/rainglow--mellow-contrast.yaml b/themes/rainglow--mellow-contrast.yaml new file mode 100644 index 00000000..cafdff75 --- /dev/null +++ b/themes/rainglow--mellow-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (mellow-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0B0A09" + fg: "#F8F8F2" + black: "#191714" + red: "#BA0E2E" + green: "#F2BC79" + yellow: "#1F8181" + blue: "#F28972" + magenta: "#F2BC79" + cyan: "#F55D79" + white: "#FFFFFF" + brightBlack: "#433D37" + brightRed: "#F03E5F" + brightGreen: "#FBEAD6" + brightYellow: "#37CFCF" + brightBlue: "#FBD7CF" + brightMagenta: "#FBEAD6" + brightCyan: "#FBBDC8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.8 + black: 0 + red: 21.4 + green: 71.9 + yellow: 29.6 + blue: 54.1 + magenta: 71.9 + cyan: 44.2 + white: 107.7 + brightBlack: 7.6 + brightRed: 37.6 + brightGreen: 95.6 + brightYellow: 66.3 + brightBlue: 87 + brightMagenta: 95.6 + brightCyan: 76.2 + brightWhite: 107.7 diff --git a/themes/rainglow--mellow-light.yaml b/themes/rainglow--mellow-light.yaml new file mode 100644 index 00000000..99c704df --- /dev/null +++ b/themes/rainglow--mellow-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (mellow-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#555555" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#F2BC79" + yellow: "#1F8181" + blue: "#F28972" + magenta: "#F2BC79" + cyan: "#F55D79" + white: "#626262" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FBEAD6" + brightYellow: "#37CFCF" + brightBlue: "#FBD7CF" + brightMagenta: "#FBEAD6" + brightCyan: "#FBBDC8" + brightWhite: "#888888" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.9 + black: 0 + red: 80.3 + green: 30.7 + yellow: 71.9 + blue: 47.7 + magenta: 30.7 + cyan: 57.4 + white: 80.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 8.5 + brightYellow: 36 + brightBlue: 16.5 + brightMagenta: 8.5 + brightCyan: 26.6 + brightWhite: 63.1 diff --git a/themes/rainglow--mellow.yaml b/themes/rainglow--mellow.yaml new file mode 100644 index 00000000..cb119714 --- /dev/null +++ b/themes/rainglow--mellow.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (mellow)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#36312C" + fg: "#F8F8F2" + black: "#443E37" + red: "#BA0E2E" + green: "#F2BC79" + yellow: "#1F8181" + blue: "#F28972" + magenta: "#F2BC79" + cyan: "#F55D79" + white: "#FFFFFF" + brightBlack: "#6E645A" + brightRed: "#F03E5F" + brightGreen: "#FBEAD6" + brightYellow: "#37CFCF" + brightBlue: "#FBD7CF" + brightMagenta: "#FBEAD6" + brightCyan: "#FBBDC8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 67 + pair: null + contrast: + fg: 97.4 + black: 0 + red: 15.9 + green: 66.5 + yellow: 24.2 + blue: 48.7 + magenta: 66.5 + cyan: 38.8 + white: 102.3 + brightBlack: 17.3 + brightRed: 32.2 + brightGreen: 90.2 + brightYellow: 60.9 + brightBlue: 81.6 + brightMagenta: 90.2 + brightCyan: 70.8 + brightWhite: 102.3 diff --git a/themes/rainglow--mintchoc-contrast.yaml b/themes/rainglow--mintchoc-contrast.yaml new file mode 100644 index 00000000..da2123dc --- /dev/null +++ b/themes/rainglow--mintchoc-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (mintchoc-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0C0A08" + fg: "#BABABA" + black: "#1B1712" + red: "#BA0E2E" + green: "#9D8262" + yellow: "#008D62" + blue: "#00E08C" + magenta: "#9D8262" + cyan: "#008D62" + white: "#C7C7C7" + brightBlack: "#493D31" + brightRed: "#F03E5F" + brightGreen: "#C4B4A1" + brightYellow: "#00F3A9" + brightBlue: "#47FFBA" + brightMagenta: "#C4B4A1" + brightCyan: "#00F3A9" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65 + black: 0 + red: 21.3 + green: 37.8 + yellow: 33.1 + blue: 71.6 + magenta: 37.8 + cyan: 33.1 + white: 72.6 + brightBlack: 8 + brightRed: 37.6 + brightGreen: 62.9 + brightYellow: 82.2 + brightBlue: 89.8 + brightMagenta: 62.9 + brightCyan: 82.2 + brightWhite: 96 diff --git a/themes/rainglow--mintchoc-light.yaml b/themes/rainglow--mintchoc-light.yaml new file mode 100644 index 00000000..27f6bca7 --- /dev/null +++ b/themes/rainglow--mintchoc-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (mintchoc-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#9D8262" + yellow: "#008D62" + blue: "#00E08C" + magenta: "#9D8262" + cyan: "#008D62" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C4B4A1" + brightYellow: "#00F3A9" + brightBlue: "#47FFBA" + brightMagenta: "#C4B4A1" + brightCyan: "#00F3A9" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 63.8 + yellow: 68.4 + blue: 31 + magenta: 63.8 + cyan: 68.4 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 39.3 + brightYellow: 21 + brightBlue: 13.9 + brightMagenta: 39.3 + brightCyan: 21 + brightWhite: 71.1 diff --git a/themes/rainglow--mintchoc.yaml b/themes/rainglow--mintchoc.yaml new file mode 100644 index 00000000..6c17adf6 --- /dev/null +++ b/themes/rainglow--mintchoc.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (mintchoc)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2B221C" + fg: "#BABABA" + black: "#3A2E26" + red: "#BA0E2E" + green: "#9D8262" + yellow: "#008D62" + blue: "#00E08C" + magenta: "#9D8262" + cyan: "#008D62" + white: "#C7C7C7" + brightBlack: "#695344" + brightRed: "#F03E5F" + brightGreen: "#C4B4A1" + brightYellow: "#00F3A9" + brightBlue: "#47FFBA" + brightMagenta: "#C4B4A1" + brightCyan: "#00F3A9" + brightWhite: "#EDEDED" +meta: + mode: "dark" + accent: "orange" + hue: 55 + pair: null + contrast: + fg: 62.5 + black: 0 + red: 18.8 + green: 35.2 + yellow: 30.5 + blue: 69.1 + magenta: 35.2 + cyan: 30.5 + white: 70 + brightBlack: 14.4 + brightRed: 35.1 + brightGreen: 60.4 + brightYellow: 79.6 + brightBlue: 87.2 + brightMagenta: 60.4 + brightCyan: 79.6 + brightWhite: 93.4 diff --git a/themes/rainglow--monzo-contrast.yaml b/themes/rainglow--monzo-contrast.yaml new file mode 100644 index 00000000..b6657bd1 --- /dev/null +++ b/themes/rainglow--monzo-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (monzo-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0B1421" + fg: "#B0CBF4" + black: "#112034" + red: "#BA0E2E" + green: "#98BAA6" + yellow: "#247888" + blue: "#E6CE9F" + magenta: "#E14D61" + cyan: "#247888" + white: "#C6DAF7" + brightBlack: "#24426D" + brightRed: "#F03E5F" + brightGreen: "#D5E3DB" + brightYellow: "#44B8CE" + brightBlue: "#FBF7F0" + brightMagenta: "#F0A4AE" + brightCyan: "#44B8CE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 258 + pair: null + contrast: + fg: 73.2 + black: 0 + red: 20.8 + green: 60 + yellow: 26.1 + blue: 77.7 + magenta: 35.8 + cyan: 26.1 + white: 82.4 + brightBlack: 8.5 + brightRed: 37.1 + brightGreen: 86.9 + brightYellow: 55.6 + brightBlue: 102.1 + brightMagenta: 63.6 + brightCyan: 55.6 + brightWhite: 107.1 diff --git a/themes/rainglow--monzo-light.yaml b/themes/rainglow--monzo-light.yaml new file mode 100644 index 00000000..2172398b --- /dev/null +++ b/themes/rainglow--monzo-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (monzo-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#5A79A8" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#98BAA6" + yellow: "#247888" + blue: "#BA9B5E" + magenta: "#E14D61" + cyan: "#247888" + white: "#6B87B1" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#D5E3DB" + brightYellow: "#44B8CE" + brightBlue: "#D9C7A5" + brightMagenta: "#F0A4AE" + brightCyan: "#44B8CE" + brightWhite: "#9DAFCB" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 70.7 + black: 0 + red: 80.3 + green: 41.5 + yellow: 74.9 + blue: 51.5 + magenta: 65.1 + cyan: 74.9 + white: 64.2 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 16.1 + brightYellow: 45.7 + brightBlue: 29 + brightMagenta: 38 + brightCyan: 45.7 + brightWhite: 43.9 diff --git a/themes/rainglow--monzo.yaml b/themes/rainglow--monzo.yaml new file mode 100644 index 00000000..5c549e45 --- /dev/null +++ b/themes/rainglow--monzo.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (monzo)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#15243B" + fg: "#B0CBF4" + black: "#1C2F4E" + red: "#BA0E2E" + green: "#98BAA6" + yellow: "#247888" + blue: "#E6CE9F" + magenta: "#E14D61" + cyan: "#247888" + white: "#C6DAF7" + brightBlack: "#305286" + brightRed: "#F03E5F" + brightGreen: "#D5E3DB" + brightYellow: "#44B8CE" + brightBlue: "#FBF7F0" + brightMagenta: "#F0A4AE" + brightCyan: "#44B8CE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 259 + pair: null + contrast: + fg: 71.2 + black: 0 + red: 18.7 + green: 57.9 + yellow: 24.1 + blue: 75.7 + magenta: 33.8 + cyan: 24.1 + white: 80.3 + brightBlack: 12.3 + brightRed: 35 + brightGreen: 84.8 + brightYellow: 53.6 + brightBlue: 100.1 + brightMagenta: 61.6 + brightCyan: 53.6 + brightWhite: 105.1 diff --git a/themes/rainglow--morass-contrast.yaml b/themes/rainglow--morass-contrast.yaml new file mode 100644 index 00000000..a51e7097 --- /dev/null +++ b/themes/rainglow--morass-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (morass-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#1A1F1D" + fg: "#E4E3E1" + black: "#262D2A" + red: "#BA0E2E" + green: "#FDEC5A" + yellow: "#68875A" + blue: "#AFB54C" + magenta: "#AFD0C4" + cyan: "#677C71" + white: "#F0F0EE" + brightBlack: "#495651" + brightRed: "#F03E5F" + brightGreen: "#FEF8BF" + brightYellow: "#9DB691" + brightBlue: "#CFD394" + brightMagenta: "#EFF6F3" + brightCyan: "#9CADA4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 88 + black: 0 + red: 19.7 + green: 92 + yellow: 32.2 + blue: 57.1 + magenta: 71.9 + cyan: 28.8 + white: 96.1 + brightBlack: 13.6 + brightRed: 36 + brightGreen: 100 + brightYellow: 57 + brightBlue: 75.3 + brightMagenta: 99 + brightCyan: 53.8 + brightWhite: 106.1 diff --git a/themes/rainglow--morass-light.yaml b/themes/rainglow--morass-light.yaml new file mode 100644 index 00000000..9f73e1f8 --- /dev/null +++ b/themes/rainglow--morass-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (morass-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#CEC040" + yellow: "#68875A" + blue: "#AFB54C" + magenta: "#80A396" + cyan: "#677C71" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#E3DB91" + brightYellow: "#9DB691" + brightBlue: "#CFD394" + brightMagenta: "#BBCEC7" + brightCyan: "#9CADA4" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 35.2 + yellow: 67.6 + blue: 43.3 + magenta: 53.3 + cyan: 71 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 20.1 + brightYellow: 43.4 + brightBlue: 25.9 + brightMagenta: 28.6 + brightCyan: 46.4 + brightWhite: 71.1 diff --git a/themes/rainglow--morass.yaml b/themes/rainglow--morass.yaml new file mode 100644 index 00000000..b708694f --- /dev/null +++ b/themes/rainglow--morass.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (morass)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#313A36" + fg: "#E4E3E1" + black: "#3D4843" + red: "#BA0E2E" + green: "#FDEC5A" + yellow: "#68875A" + blue: "#AFB54C" + magenta: "#AFD0C4" + cyan: "#677C71" + white: "#F0F0EE" + brightBlack: "#607169" + brightRed: "#F03E5F" + brightGreen: "#FEF8BF" + brightYellow: "#9DB691" + brightBlue: "#CFD394" + brightMagenta: "#EFF6F3" + brightCyan: "#9CADA4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 167 + pair: null + contrast: + fg: 82.5 + black: 0 + red: 14.2 + green: 86.5 + yellow: 26.8 + blue: 51.6 + magenta: 66.4 + cyan: 23.4 + white: 90.7 + brightBlack: 18.8 + brightRed: 30.5 + brightGreen: 94.5 + brightYellow: 51.5 + brightBlue: 69.9 + brightMagenta: 93.6 + brightCyan: 48.4 + brightWhite: 100.6 diff --git a/themes/rainglow--mud-contrast.yaml b/themes/rainglow--mud-contrast.yaml new file mode 100644 index 00000000..02688c99 --- /dev/null +++ b/themes/rainglow--mud-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (mud-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0D0B0B" + fg: "#FFFFFF" + black: "#1B1717" + red: "#BA0E2E" + green: "#F2C12F" + yellow: "#F55239" + blue: "#8EE350" + magenta: "#F8553C" + cyan: "#EABA2C" + white: "#FFFFFF" + brightBlack: "#443A3A" + brightRed: "#F03E5F" + brightGreen: "#F8DE8F" + brightYellow: "#FAA79A" + brightBlue: "#C7F1A8" + brightMagenta: "#FCAB9E" + brightCyan: "#F3D889" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.7 + black: 0 + red: 21.3 + green: 72.8 + yellow: 41 + blue: 76.5 + magenta: 42.2 + cyan: 68.7 + white: 107.7 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 87.5 + brightYellow: 66.3 + brightBlue: 90.5 + brightMagenta: 68.2 + brightCyan: 83.9 + brightWhite: 107.7 diff --git a/themes/rainglow--mud-light.yaml b/themes/rainglow--mud-light.yaml new file mode 100644 index 00000000..0a17b597 --- /dev/null +++ b/themes/rainglow--mud-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (mud-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#EDE8E8" + fg: "#555555" + black: "#F8F6F6" + red: "#BA0E2E" + green: "#C4A446" + yellow: "#D16F60" + blue: "#88AD6E" + magenta: "#D16F60" + cyan: "#C4A446" + white: "#626262" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DDCA93" + brightYellow: "#E8B7AF" + brightBlue: "#BDD2AF" + brightMagenta: "#E8B7AF" + brightCyan: "#DDCA93" + brightWhite: "#888888" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73 + black: 0 + red: 67.4 + green: 34.2 + yellow: 48.3 + blue: 36.8 + magenta: 48.3 + cyan: 34.2 + white: 67.5 + brightBlack: 12.2 + brightRed: 50.9 + brightGreen: 14.8 + brightYellow: 19.7 + brightBlue: 14.6 + brightMagenta: 19.7 + brightCyan: 14.8 + brightWhite: 50.1 diff --git a/themes/rainglow--mud.yaml b/themes/rainglow--mud.yaml new file mode 100644 index 00000000..ac156993 --- /dev/null +++ b/themes/rainglow--mud.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (mud)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#403635" + fg: "#FFFFFF" + black: "#4E4241" + red: "#BA0E2E" + green: "#E9C865" + yellow: "#FF9787" + blue: "#B5DB99" + magenta: "#FF9787" + cyan: "#E9C865" + white: "#FFFFFF" + brightBlack: "#786563" + brightRed: "#F03E5F" + brightGreen: "#F6E8BE" + brightYellow: "#FFEFED" + brightBlue: "#ECF6E4" + brightMagenta: "#FFEFED" + brightCyan: "#F6E8BE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 25 + pair: null + contrast: + fg: 100.5 + black: 0 + red: 14.1 + green: 67.7 + yellow: 54.2 + blue: 70.5 + magenta: 54.2 + cyan: 67.7 + white: 100.5 + brightBlack: 17.1 + brightRed: 30.4 + brightGreen: 85.8 + brightYellow: 92.2 + brightBlue: 92.4 + brightMagenta: 92.2 + brightCyan: 85.8 + brightWhite: 100.5 diff --git a/themes/rainglow--newton-contrast.yaml b/themes/rainglow--newton-contrast.yaml new file mode 100644 index 00000000..11bc5c2b --- /dev/null +++ b/themes/rainglow--newton-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (newton-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#121014" + fg: "#EAEBFF" + black: "#1F1B22" + red: "#BA0E2E" + green: "#FA824C" + yellow: "#FFBF69" + blue: "#3C91E6" + magenta: "#FA824C" + cyan: "#FFBF69" + white: "#FFFFFF" + brightBlack: "#453D4D" + brightRed: "#F03E5F" + brightGreen: "#FDC7AF" + brightYellow: "#FFEBCF" + brightBlue: "#96C4F2" + brightMagenta: "#FDC7AF" + brightCyan: "#FFEBCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.2 + black: 0 + red: 21 + green: 52.7 + yellow: 74.6 + blue: 41.4 + magenta: 52.7 + cyan: 74.6 + white: 107.4 + brightBlack: 8 + brightRed: 37.3 + brightGreen: 79.2 + brightYellow: 96 + brightBlue: 67.9 + brightMagenta: 79.2 + brightCyan: 96 + brightWhite: 107.4 diff --git a/themes/rainglow--newton-light.yaml b/themes/rainglow--newton-light.yaml new file mode 100644 index 00000000..0c0b696c --- /dev/null +++ b/themes/rainglow--newton-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (newton-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#FA824C" + yellow: "#FFBF69" + blue: "#3C91E6" + magenta: "#FA824C" + cyan: "#FFBF69" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FDC7AF" + brightYellow: "#FFEBCF" + brightBlue: "#96C4F2" + brightMagenta: "#FDC7AF" + brightCyan: "#FFEBCF" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 48.8 + yellow: 27.8 + blue: 59.9 + magenta: 48.8 + cyan: 27.8 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 23.5 + brightYellow: 7.8 + brightBlue: 34.2 + brightMagenta: 23.5 + brightCyan: 7.8 + brightWhite: 71.1 diff --git a/themes/rainglow--newton.yaml b/themes/rainglow--newton.yaml new file mode 100644 index 00000000..a46c1125 --- /dev/null +++ b/themes/rainglow--newton.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (newton)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#342E37" + fg: "#EAEBFF" + black: "#413A45" + red: "#BA0E2E" + green: "#FA824C" + yellow: "#FFBF69" + blue: "#3C91E6" + magenta: "#FA824C" + cyan: "#FFBF69" + white: "#FFFFFF" + brightBlack: "#695C6F" + brightRed: "#F03E5F" + brightGreen: "#FDC7AF" + brightYellow: "#FFEBCF" + brightBlue: "#96C4F2" + brightMagenta: "#FDC7AF" + brightCyan: "#FFEBCF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 315 + pair: null + contrast: + fg: 90.5 + black: 0 + red: 16.4 + green: 48.1 + yellow: 70 + blue: 36.7 + magenta: 48.1 + cyan: 70 + white: 102.7 + brightBlack: 15.6 + brightRed: 32.7 + brightGreen: 74.5 + brightYellow: 91.4 + brightBlue: 63.2 + brightMagenta: 74.5 + brightCyan: 91.4 + brightWhite: 102.7 diff --git a/themes/rainglow--otakon-contrast.yaml b/themes/rainglow--otakon-contrast.yaml new file mode 100644 index 00000000..75af34bd --- /dev/null +++ b/themes/rainglow--otakon-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (otakon-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#171417" + fg: "#F9F3F9" + black: "#252025" + red: "#BA0E2E" + green: "#B1A6CA" + yellow: "#F6E6EB" + blue: "#E484B2" + magenta: "#CACBDD" + cyan: "#F0B9D4" + white: "#FFFFFF" + brightBlack: "#4E434E" + brightRed: "#F03E5F" + brightGreen: "#E9E6F0" + brightYellow: "#FFFFFF" + brightBlue: "#F6D8E6" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100.3 + black: 0 + red: 20.7 + green: 56.2 + yellow: 93.3 + blue: 51.5 + magenta: 75 + cyan: 72.8 + white: 107.1 + brightBlack: 9.9 + brightRed: 37 + brightGreen: 91.7 + brightYellow: 107.1 + brightBlue: 87 + brightMagenta: 107.1 + brightCyan: 107.1 + brightWhite: 107.1 diff --git a/themes/rainglow--otakon-light.yaml b/themes/rainglow--otakon-light.yaml new file mode 100644 index 00000000..060eb7da --- /dev/null +++ b/themes/rainglow--otakon-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (otakon-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#514B60" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#B1A6CA" + yellow: "#C6B3B9" + blue: "#E484B2" + magenta: "#A8A9BF" + cyan: "#F0B9D4" + white: "#5D566E" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#E9E6F0" + brightYellow: "#F2EDEF" + brightBlue: "#F6D8E6" + brightMagenta: "#E3E3EA" + brightCyan: "#FFFFFF" + brightWhite: "#827A97" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 88.7 + black: 0 + red: 80.3 + green: 45.1 + yellow: 38.5 + blue: 49.6 + magenta: 45.6 + cyan: 29.3 + white: 84.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 11.5 + brightYellow: 7.4 + brightBlue: 15.9 + brightMagenta: 13.8 + brightCyan: 0 + brightWhite: 67.8 diff --git a/themes/rainglow--otakon.yaml b/themes/rainglow--otakon.yaml new file mode 100644 index 00000000..1b1dcd3a --- /dev/null +++ b/themes/rainglow--otakon.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (otakon)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#3F373F" + fg: "#F9F3F9" + black: "#4D434D" + red: "#BA0E2E" + green: "#B1A6CA" + yellow: "#F6E6EB" + blue: "#E484B2" + magenta: "#CACBDD" + cyan: "#F0B9D4" + white: "#FFFFFF" + brightBlack: "#756775" + brightRed: "#F03E5F" + brightGreen: "#E9E6F0" + brightYellow: "#FFFFFF" + brightBlue: "#F6D8E6" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 326 + pair: null + contrast: + fg: 93.4 + black: 0 + red: 13.8 + green: 49.2 + yellow: 86.4 + blue: 44.6 + magenta: 68 + cyan: 65.8 + white: 100.2 + brightBlack: 17.6 + brightRed: 30.1 + brightGreen: 84.8 + brightYellow: 100.2 + brightBlue: 80.1 + brightMagenta: 100.2 + brightCyan: 100.2 + brightWhite: 100.2 diff --git a/themes/rainglow--overflow-contrast.yaml b/themes/rainglow--overflow-contrast.yaml new file mode 100644 index 00000000..503a6ea9 --- /dev/null +++ b/themes/rainglow--overflow-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (overflow-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#14181C" + fg: "#AEB9C4" + black: "#1F252B" + red: "#BA0E2E" + green: "#FE532C" + yellow: "#B0CA48" + blue: "#1F9AA8" + magenta: "#FE532C" + cyan: "#B0CA48" + white: "#BDC6CF" + brightBlack: "#3F4B57" + brightRed: "#F03E5F" + brightGreen: "#FEA692" + brightYellow: "#D2E197" + brightBlue: "#4FD0DE" + brightMagenta: "#FEA692" + brightCyan: "#D2E197" + brightWhite: "#E9ECEF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + pair: null + contrast: + fg: 62.7 + black: 0 + red: 20.4 + green: 42.3 + yellow: 67 + blue: 40 + magenta: 42.3 + cyan: 67 + white: 70.4 + brightBlack: 10.8 + brightRed: 36.7 + brightGreen: 65.6 + brightYellow: 82.9 + brightBlue: 67.3 + brightMagenta: 65.6 + brightCyan: 82.9 + brightWhite: 94.1 diff --git a/themes/rainglow--overflow-light.yaml b/themes/rainglow--overflow-light.yaml new file mode 100644 index 00000000..ac6b33d8 --- /dev/null +++ b/themes/rainglow--overflow-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (overflow-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#3E4956" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#FE532C" + yellow: "#B0CA48" + blue: "#1F9AA8" + magenta: "#FE532C" + cyan: "#B0CA48" + white: "#495665" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FEA692" + brightYellow: "#D2E197" + brightBlue: "#4FD0DE" + brightMagenta: "#FEA692" + brightCyan: "#D2E197" + brightWhite: "#697B91" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.1 + black: 0 + red: 80.3 + green: 58.4 + yellow: 34.5 + blue: 60.6 + magenta: 58.4 + cyan: 34.5 + white: 86 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 35.8 + brightYellow: 19.5 + brightBlue: 34.2 + brightMagenta: 35.8 + brightCyan: 19.5 + brightWhite: 70 diff --git a/themes/rainglow--overflow.yaml b/themes/rainglow--overflow.yaml new file mode 100644 index 00000000..26c6378d --- /dev/null +++ b/themes/rainglow--overflow.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (overflow)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#252C33" + fg: "#AEB9C4" + black: "#303942" + red: "#BA0E2E" + green: "#FE532C" + yellow: "#B0CA48" + blue: "#1F9AA8" + magenta: "#FE532C" + cyan: "#B0CA48" + white: "#BDC6CF" + brightBlack: "#505F6E" + brightRed: "#F03E5F" + brightGreen: "#FEA692" + brightYellow: "#D2E197" + brightBlue: "#4FD0DE" + brightMagenta: "#FEA692" + brightCyan: "#D2E197" + brightWhite: "#E9ECEF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + pair: null + contrast: + fg: 59.7 + black: 0 + red: 17.4 + green: 39.3 + yellow: 63.9 + blue: 37 + magenta: 39.3 + cyan: 63.9 + white: 67.3 + brightBlack: 15.4 + brightRed: 33.7 + brightGreen: 62.6 + brightYellow: 79.9 + brightBlue: 64.3 + brightMagenta: 62.6 + brightCyan: 79.9 + brightWhite: 91.1 diff --git a/themes/rainglow--pastel-contrast.yaml b/themes/rainglow--pastel-contrast.yaml new file mode 100644 index 00000000..61e97862 --- /dev/null +++ b/themes/rainglow--pastel-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (pastel-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0F0F0F" + fg: "#EEEEEE" + black: "#1C1C1C" + red: "#BA0E2E" + green: "#9474A9" + yellow: "#04C4A5" + blue: "#C56C6C" + magenta: "#C5906C" + cyan: "#E2E060" + white: "#FBFBFB" + brightBlack: "#424242" + brightRed: "#F03E5F" + brightGreen: "#C5B3D0" + brightYellow: "#33FBDB" + brightBlue: "#E2B5B5" + brightMagenta: "#E2C7B5" + brightCyan: "#F2F1B6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.4 + black: 0 + red: 21.1 + green: 34.6 + yellow: 58.7 + blue: 37.4 + magenta: 48.1 + cyan: 84.1 + white: 104.9 + brightBlack: 8.8 + brightRed: 37.4 + brightGreen: 64.4 + brightYellow: 88.3 + brightBlue: 68.1 + brightMagenta: 75.3 + brightCyan: 96.1 + brightWhite: 107.5 diff --git a/themes/rainglow--pastel-light.yaml b/themes/rainglow--pastel-light.yaml new file mode 100644 index 00000000..932c4096 --- /dev/null +++ b/themes/rainglow--pastel-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (pastel-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#222222" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#9474A9" + yellow: "#04C4A5" + blue: "#C56C6C" + magenta: "#C5906C" + cyan: "#E2E060" + white: "#2F2F2F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C5B3D0" + brightYellow: "#33FBDB" + brightBlue: "#E2B5B5" + brightMagenta: "#E2C7B5" + brightCyan: "#F2F1B6" + brightWhite: "#555555" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.9 + black: 0 + red: 80.3 + green: 66.7 + yellow: 43.1 + blue: 63.9 + magenta: 53.4 + cyan: 19 + white: 99.8 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 37.7 + brightYellow: 15.1 + brightBlue: 34.1 + brightMagenta: 27.3 + brightCyan: 7.8 + brightWhite: 85.9 diff --git a/themes/rainglow--pastel.yaml b/themes/rainglow--pastel.yaml new file mode 100644 index 00000000..9fab0236 --- /dev/null +++ b/themes/rainglow--pastel.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (pastel)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#222222" + fg: "#EEEEEE" + black: "#2F2F2F" + red: "#BA0E2E" + green: "#9474A9" + yellow: "#04C4A5" + blue: "#C56C6C" + magenta: "#C5906C" + cyan: "#E2E060" + white: "#FBFBFB" + brightBlack: "#555555" + brightRed: "#F03E5F" + brightGreen: "#C5B3D0" + brightYellow: "#33FBDB" + brightBlue: "#E2B5B5" + brightMagenta: "#E2C7B5" + brightCyan: "#F2F1B6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.3 + black: 0 + red: 19.1 + green: 32.5 + yellow: 56.6 + blue: 35.4 + magenta: 46.1 + cyan: 82 + white: 102.8 + brightBlack: 13.7 + brightRed: 35.4 + brightGreen: 62.3 + brightYellow: 86.3 + brightBlue: 66.1 + brightMagenta: 73.2 + brightCyan: 94.1 + brightWhite: 105.5 diff --git a/themes/rainglow--patriot-contrast.yaml b/themes/rainglow--patriot-contrast.yaml new file mode 100644 index 00000000..df6191cf --- /dev/null +++ b/themes/rainglow--patriot-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (patriot-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0D0E0F" + fg: "#CAD9E3" + black: "#191B1D" + red: "#BA0E2E" + green: "#DE333C" + yellow: "#2E6FD9" + blue: "#FFFFFF" + magenta: "#BBBCC4" + cyan: "#DE333C" + white: "#DBE5EC" + brightBlack: "#3C4146" + brightRed: "#F03E5F" + brightGreen: "#EC8B90" + brightYellow: "#84AAE9" + brightBlue: "#FFFFFF" + brightMagenta: "#F2F2F3" + brightCyan: "#EC8B90" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 81.8 + black: 0 + red: 21.2 + green: 31.5 + yellow: 28.7 + blue: 107.6 + magenta: 66.2 + cyan: 31.5 + white: 89.7 + brightBlack: 8.3 + brightRed: 37.5 + brightGreen: 54.2 + brightYellow: 55.3 + brightBlue: 107.6 + brightMagenta: 99.1 + brightCyan: 54.2 + brightWhite: 107.6 diff --git a/themes/rainglow--patriot-light.yaml b/themes/rainglow--patriot-light.yaml new file mode 100644 index 00000000..a74cabef --- /dev/null +++ b/themes/rainglow--patriot-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (patriot-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#DE333C" + yellow: "#2E6FD9" + blue: "#333333" + magenta: "#AAAAAA" + cyan: "#DE333C" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#EC8B90" + brightYellow: "#84AAE9" + brightBlue: "#666666" + brightMagenta: "#DDDDDD" + brightCyan: "#EC8B90" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 69.8 + yellow: 72.7 + blue: 98.7 + magenta: 45.8 + cyan: 69.8 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 47.5 + brightYellow: 46.4 + brightBlue: 78.8 + brightMagenta: 17.6 + brightCyan: 47.5 + brightWhite: 78.8 diff --git a/themes/rainglow--patriot.yaml b/themes/rainglow--patriot.yaml new file mode 100644 index 00000000..de230093 --- /dev/null +++ b/themes/rainglow--patriot.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (patriot)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2D3133" + fg: "#CAD9E3" + black: "#393E41" + red: "#BA0E2E" + green: "#DE333C" + yellow: "#2E6FD9" + blue: "#FFFFFF" + magenta: "#BBBCC4" + cyan: "#DE333C" + white: "#DBE5EC" + brightBlack: "#5D6569" + brightRed: "#F03E5F" + brightGreen: "#EC8B90" + brightYellow: "#84AAE9" + brightBlue: "#FFFFFF" + brightMagenta: "#F2F2F3" + brightCyan: "#EC8B90" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 76.9 + black: 0 + red: 16.3 + green: 26.7 + yellow: 23.8 + blue: 102.7 + magenta: 61.3 + cyan: 26.7 + white: 84.8 + brightBlack: 16.9 + brightRed: 32.6 + brightGreen: 49.4 + brightYellow: 50.5 + brightBlue: 102.7 + brightMagenta: 94.2 + brightCyan: 49.4 + brightWhite: 102.7 diff --git a/themes/rainglow--peacock-contrast.yaml b/themes/rainglow--peacock-contrast.yaml new file mode 100644 index 00000000..fd9ff21b --- /dev/null +++ b/themes/rainglow--peacock-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (peacock-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0C0C0B" + fg: "#FFFFFF" + black: "#191917" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#BCD42A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#FFFFFF" + brightBlack: "#41413C" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D7E67E" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.7 + black: 0 + red: 21.3 + green: 45.8 + yellow: 45.2 + blue: 73.5 + magenta: 45.8 + cyan: 45.2 + white: 107.7 + brightBlack: 8.5 + brightRed: 37.6 + brightGreen: 72.5 + brightYellow: 70.5 + brightBlue: 86.1 + brightMagenta: 72.5 + brightCyan: 70.5 + brightWhite: 107.7 diff --git a/themes/rainglow--peacock-light.yaml b/themes/rainglow--peacock-light.yaml new file mode 100644 index 00000000..f7660d3c --- /dev/null +++ b/themes/rainglow--peacock-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (peacock-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#BCD42A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D7E67E" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 55.8 + yellow: 56.3 + blue: 29.2 + magenta: 55.8 + cyan: 56.3 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 30.1 + brightYellow: 32 + brightBlue: 17.3 + brightMagenta: 30.1 + brightCyan: 32 + brightWhite: 78.8 diff --git a/themes/rainglow--peacock.yaml b/themes/rainglow--peacock.yaml new file mode 100644 index 00000000..ae7581c4 --- /dev/null +++ b/themes/rainglow--peacock.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (peacock)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2B2A27" + fg: "#EDE0CE" + black: "#383733" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#BCD42A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#F4ECE1" + brightBlack: "#605E57" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D7E67E" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.1 + black: 0 + red: 17.7 + green: 42.2 + yellow: 41.6 + blue: 69.8 + magenta: 42.2 + cyan: 41.6 + white: 92.3 + brightBlack: 15.8 + brightRed: 34 + brightGreen: 68.9 + brightYellow: 66.9 + brightBlue: 82.5 + brightMagenta: 68.9 + brightCyan: 66.9 + brightWhite: 104 diff --git a/themes/rainglow--peacocks-in-space-contrast.yaml b/themes/rainglow--peacocks-in-space-contrast.yaml new file mode 100644 index 00000000..71138e7d --- /dev/null +++ b/themes/rainglow--peacocks-in-space-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (peacocks-in-space-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#121419" + fg: "#DEE3EC" + black: "#1D2028" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#BCD42A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#EEF1F5" + brightBlack: "#3D4354" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D7E67E" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 268 + pair: null + contrast: + fg: 88.8 + black: 0 + red: 20.8 + green: 45.3 + yellow: 44.7 + blue: 72.9 + magenta: 45.3 + cyan: 44.7 + white: 97.7 + brightBlack: 8.8 + brightRed: 37.1 + brightGreen: 72 + brightYellow: 70 + brightBlue: 85.6 + brightMagenta: 72 + brightCyan: 70 + brightWhite: 107.1 diff --git a/themes/rainglow--peacocks-in-space-light.yaml b/themes/rainglow--peacocks-in-space-light.yaml new file mode 100644 index 00000000..b5ab318a --- /dev/null +++ b/themes/rainglow--peacocks-in-space-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (peacocks-in-space-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#DEE3EC" + fg: "#2B303B" + black: "#EEF1F5" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#A6B73A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#363C4A" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#CBD780" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#566076" +meta: + mode: "light" + accent: "orange" + hue: 262 + pair: null + contrast: + fg: 82.9 + black: 0 + red: 63.6 + green: 39 + yellow: 39.6 + blue: 26.9 + magenta: 39 + cyan: 39.6 + white: 78.8 + brightBlack: 16.5 + brightRed: 47.2 + brightGreen: 13.4 + brightYellow: 15.3 + brightBlue: 8.4 + brightMagenta: 13.4 + brightCyan: 15.3 + brightWhite: 64.7 diff --git a/themes/rainglow--peacocks-in-space.yaml b/themes/rainglow--peacocks-in-space.yaml new file mode 100644 index 00000000..d479af80 --- /dev/null +++ b/themes/rainglow--peacocks-in-space.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (peacocks-in-space)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2B303B" + fg: "#DEE3EC" + black: "#363C4A" + red: "#BA0E2E" + green: "#26A6A6" + yellow: "#FF5D38" + blue: "#BCD42A" + magenta: "#26A6A6" + cyan: "#FF5D38" + white: "#EEF1F5" + brightBlack: "#566076" + brightRed: "#F03E5F" + brightGreen: "#59D9D9" + brightYellow: "#FFB09E" + brightBlue: "#D7E67E" + brightMagenta: "#59D9D9" + brightCyan: "#FFB09E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 266 + pair: null + contrast: + fg: 84.4 + black: 0 + red: 16.4 + green: 40.9 + yellow: 40.3 + blue: 68.6 + magenta: 40.9 + cyan: 40.3 + white: 93.4 + brightBlack: 15.4 + brightRed: 32.7 + brightGreen: 67.6 + brightYellow: 65.6 + brightBlue: 81.2 + brightMagenta: 67.6 + brightCyan: 65.6 + brightWhite: 102.8 diff --git a/themes/rainglow--peel-contrast.yaml b/themes/rainglow--peel-contrast.yaml new file mode 100644 index 00000000..653105dc --- /dev/null +++ b/themes/rainglow--peel-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (peel-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0C0B0A" + fg: "#EDEBE6" + black: "#1A1816" + red: "#BA0E2E" + green: "#94C7B6" + yellow: "#D3643B" + blue: "#D6E1C7" + magenta: "#94C7B6" + cyan: "#D3643B" + white: "#F8F7F5" + brightBlack: "#443E38" + brightRed: "#F03E5F" + brightGreen: "#D7EAE4" + brightYellow: "#E6A68E" + brightBlue: "#FFFFFF" + brightMagenta: "#D7EAE4" + brightCyan: "#E6A68E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.7 + black: 0 + red: 21.3 + green: 66.4 + yellow: 37.4 + blue: 85.8 + magenta: 66.4 + cyan: 37.4 + white: 102.5 + brightBlack: 7.9 + brightRed: 37.6 + brightGreen: 91.3 + brightYellow: 62.1 + brightBlue: 107.7 + brightMagenta: 91.3 + brightCyan: 62.1 + brightWhite: 107.7 diff --git a/themes/rainglow--peel-light.yaml b/themes/rainglow--peel-light.yaml new file mode 100644 index 00000000..0a4f5e2b --- /dev/null +++ b/themes/rainglow--peel-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (peel-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#94C7B6" + yellow: "#D3643B" + blue: "#B2BCA4" + magenta: "#94C7B6" + cyan: "#D3643B" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#D7EAE4" + brightYellow: "#E6A68E" + brightBlue: "#E4E7DF" + brightMagenta: "#D7EAE4" + brightCyan: "#E6A68E" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 35.9 + yellow: 64.1 + blue: 38.2 + magenta: 35.9 + cyan: 64.1 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 12.5 + brightYellow: 40 + brightBlue: 12.4 + brightMagenta: 12.5 + brightCyan: 40 + brightWhite: 78.8 diff --git a/themes/rainglow--peel.yaml b/themes/rainglow--peel.yaml new file mode 100644 index 00000000..934d720c --- /dev/null +++ b/themes/rainglow--peel.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (peel)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#23201C" + fg: "#EDEBE6" + black: "#312D27" + red: "#BA0E2E" + green: "#94C7B6" + yellow: "#D3643B" + blue: "#D6E1C7" + magenta: "#94C7B6" + cyan: "#D3643B" + white: "#F8F7F5" + brightBlack: "#5C5449" + brightRed: "#F03E5F" + brightGreen: "#D7EAE4" + brightYellow: "#E6A68E" + brightBlue: "#FFFFFF" + brightMagenta: "#D7EAE4" + brightCyan: "#E6A68E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.7 + black: 0 + red: 19.3 + green: 64.4 + yellow: 35.4 + blue: 83.8 + magenta: 64.4 + cyan: 35.4 + white: 100.5 + brightBlack: 14 + brightRed: 35.6 + brightGreen: 89.3 + brightYellow: 60.1 + brightBlue: 105.7 + brightMagenta: 89.3 + brightCyan: 60.1 + brightWhite: 105.7 diff --git a/themes/rainglow--penitent-contrast.yaml b/themes/rainglow--penitent-contrast.yaml new file mode 100644 index 00000000..4266dd64 --- /dev/null +++ b/themes/rainglow--penitent-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (penitent-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#101C18" + fg: "#B9CEC7" + black: "#192C26" + red: "#BA0E2E" + green: "#E54334" + yellow: "#EA983A" + blue: "#11A361" + magenta: "#E54334" + cyan: "#EA983A" + white: "#C8D8D3" + brightBlack: "#355D50" + brightRed: "#F03E5F" + brightGreen: "#F1978E" + brightYellow: "#F4C896" + brightBlue: "#31E996" + brightMagenta: "#F1978E" + brightCyan: "#F4C896" + brightWhite: "#F5F8F7" +meta: + mode: "dark" + accent: "orange" + hue: 172 + pair: null + contrast: + fg: 72.7 + black: 0 + red: 20.2 + green: 33.9 + yellow: 55.3 + blue: 41 + magenta: 33.9 + cyan: 55.3 + white: 79.4 + brightBlack: 15.1 + brightRed: 36.5 + brightGreen: 57.8 + brightYellow: 76.5 + brightBlue: 75.6 + brightMagenta: 57.8 + brightCyan: 76.5 + brightWhite: 101.5 diff --git a/themes/rainglow--penitent-light.yaml b/themes/rainglow--penitent-light.yaml new file mode 100644 index 00000000..900df020 --- /dev/null +++ b/themes/rainglow--penitent-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (penitent-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#33564B" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#E54334" + yellow: "#EA983A" + blue: "#11A361" + magenta: "#E54334" + cyan: "#EA983A" + white: "#3C6659" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F1978E" + brightYellow: "#F4C896" + brightBlue: "#31E996" + brightMagenta: "#F1978E" + brightCyan: "#F4C896" + brightWhite: "#599683" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 88.2 + black: 0 + red: 80.3 + green: 66.4 + yellow: 45.5 + blue: 59.4 + magenta: 66.4 + cyan: 45.5 + white: 82.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 43 + brightYellow: 25.2 + brightBlue: 26.1 + brightMagenta: 43 + brightCyan: 25.2 + brightWhite: 61.8 diff --git a/themes/rainglow--penitent.yaml b/themes/rainglow--penitent.yaml new file mode 100644 index 00000000..7362592f --- /dev/null +++ b/themes/rainglow--penitent.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (penitent)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#1F352E" + fg: "#B9CEC7" + black: "#28453C" + red: "#BA0E2E" + green: "#E54334" + yellow: "#EA983A" + blue: "#11A361" + magenta: "#E54334" + cyan: "#EA983A" + white: "#C8D8D3" + brightBlack: "#457566" + brightRed: "#F03E5F" + brightGreen: "#F1978E" + brightYellow: "#F4C896" + brightBlue: "#31E996" + brightMagenta: "#F1978E" + brightCyan: "#F4C896" + brightWhite: "#F5F8F7" +meta: + mode: "dark" + accent: "orange" + hue: 172 + pair: null + contrast: + fg: 68.7 + black: 0 + red: 16.2 + green: 29.9 + yellow: 51.3 + blue: 37 + magenta: 29.9 + cyan: 51.3 + white: 75.4 + brightBlack: 20.3 + brightRed: 32.5 + brightGreen: 53.8 + brightYellow: 72.5 + brightBlue: 71.6 + brightMagenta: 53.8 + brightCyan: 72.5 + brightWhite: 97.5 diff --git a/themes/rainglow--piggy-contrast.yaml b/themes/rainglow--piggy-contrast.yaml new file mode 100644 index 00000000..c4bfb404 --- /dev/null +++ b/themes/rainglow--piggy-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (piggy-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#1C1618" + fg: "#EDEBE6" + black: "#2A2124" + red: "#BA0E2E" + green: "#F52E62" + yellow: "#FD6A5D" + blue: "#FF5D80" + magenta: "#FD6A5D" + cyan: "#F52E62" + white: "#F8F7F5" + brightBlack: "#554349" + brightRed: "#F03E5F" + brightGreen: "#FA8FAB" + brightYellow: "#FEC7C2" + brightBlue: "#FFC3D0" + brightMagenta: "#FEC7C2" + brightCyan: "#FA8FAB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 356 + pair: null + contrast: + fg: 93.8 + black: 0 + red: 20.4 + green: 36.4 + yellow: 47.1 + blue: 45.7 + magenta: 47.1 + cyan: 36.4 + white: 101.6 + brightBlack: 10.1 + brightRed: 36.7 + brightGreen: 58.3 + brightYellow: 79.5 + brightBlue: 78.6 + brightMagenta: 79.5 + brightCyan: 58.3 + brightWhite: 106.8 diff --git a/themes/rainglow--piggy-light.yaml b/themes/rainglow--piggy-light.yaml new file mode 100644 index 00000000..454d31a2 --- /dev/null +++ b/themes/rainglow--piggy-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (piggy-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#F52E62" + yellow: "#FD6A5D" + blue: "#FF5D80" + magenta: "#FD6A5D" + cyan: "#F52E62" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FA8FAB" + brightYellow: "#FEC7C2" + brightBlue: "#FFC3D0" + brightMagenta: "#FEC7C2" + brightCyan: "#FA8FAB" + brightWhite: "#777777" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 64.2 + yellow: 53.7 + blue: 55 + magenta: 53.7 + cyan: 64.2 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 42.8 + brightYellow: 22.7 + brightBlue: 23.5 + brightMagenta: 22.7 + brightCyan: 42.8 + brightWhite: 71.1 diff --git a/themes/rainglow--piggy.yaml b/themes/rainglow--piggy.yaml new file mode 100644 index 00000000..28286512 --- /dev/null +++ b/themes/rainglow--piggy.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (piggy)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#3D2F34" + fg: "#EDEBE6" + black: "#4B3A40" + red: "#BA0E2E" + green: "#F52E62" + yellow: "#FD6A5D" + blue: "#FF5D80" + magenta: "#FD6A5D" + cyan: "#F52E62" + white: "#F8F7F5" + brightBlack: "#775B65" + brightRed: "#F03E5F" + brightGreen: "#FA8FAB" + brightYellow: "#FEC7C2" + brightBlue: "#FFC3D0" + brightMagenta: "#FEC7C2" + brightCyan: "#FA8FAB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 355 + pair: null + contrast: + fg: 89.1 + black: 0 + red: 15.7 + green: 31.7 + yellow: 42.4 + blue: 41 + magenta: 42.4 + cyan: 31.7 + white: 96.8 + brightBlack: 15.8 + brightRed: 32 + brightGreen: 53.6 + brightYellow: 74.7 + brightBlue: 73.9 + brightMagenta: 74.7 + brightCyan: 53.6 + brightWhite: 102.1 diff --git a/themes/rainglow--pleasure-contrast.yaml b/themes/rainglow--pleasure-contrast.yaml new file mode 100644 index 00000000..057ccbf9 --- /dev/null +++ b/themes/rainglow--pleasure-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (pleasure-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#17191C" + fg: "#C0CCDB" + black: "#23262A" + red: "#BA0E2E" + green: "#A175BA" + yellow: "#DD5D7A" + blue: "#A1CBC6" + magenta: "#DD5D7A" + cyan: "#A1CBC6" + white: "#D0D9E4" + brightBlack: "#454B54" + brightRed: "#F03E5F" + brightGreen: "#CFB9DC" + brightYellow: "#EFB1BF" + brightBlue: "#E3EFEE" + brightMagenta: "#EFB1BF" + brightCyan: "#E3EFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.7 + black: 0 + red: 20.3 + green: 36.6 + yellow: 38.1 + blue: 69 + magenta: 38.1 + cyan: 69 + white: 81.7 + brightBlack: 10.9 + brightRed: 36.6 + brightGreen: 67.8 + brightYellow: 68.3 + brightBlue: 94.6 + brightMagenta: 68.3 + brightCyan: 94.6 + brightWhite: 106.7 diff --git a/themes/rainglow--pleasure-light.yaml b/themes/rainglow--pleasure-light.yaml new file mode 100644 index 00000000..78003073 --- /dev/null +++ b/themes/rainglow--pleasure-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (pleasure-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#474E56" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#A175BA" + yellow: "#DD5D7A" + blue: "#A1CBC6" + magenta: "#DD5D7A" + cyan: "#A1CBC6" + white: "#535B64" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#CFB9DC" + brightYellow: "#EFB1BF" + brightBlue: "#E3EFEE" + brightMagenta: "#EFB1BF" + brightCyan: "#E3EFEE" + brightWhite: "#76818D" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.1 + black: 0 + red: 80.3 + green: 63.9 + yellow: 62.4 + blue: 32.5 + magenta: 62.4 + cyan: 32.5 + white: 83.8 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 33.6 + brightYellow: 33.1 + brightBlue: 8.5 + brightMagenta: 33.1 + brightCyan: 8.5 + brightWhite: 67 diff --git a/themes/rainglow--pleasure.yaml b/themes/rainglow--pleasure.yaml new file mode 100644 index 00000000..a139a01c --- /dev/null +++ b/themes/rainglow--pleasure.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (pleasure)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#32373D" + fg: "#C0CCDB" + black: "#3D444B" + red: "#BA0E2E" + green: "#A175BA" + yellow: "#DD5D7A" + blue: "#A1CBC6" + magenta: "#DD5D7A" + cyan: "#A1CBC6" + white: "#D0D9E4" + brightBlack: "#606A75" + brightRed: "#F03E5F" + brightGreen: "#CFB9DC" + brightYellow: "#EFB1BF" + brightBlue: "#E3EFEE" + brightMagenta: "#EFB1BF" + brightCyan: "#E3EFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + pair: null + contrast: + fg: 68 + black: 0 + red: 14.7 + green: 31 + yellow: 32.5 + blue: 63.4 + magenta: 32.5 + cyan: 63.4 + white: 76.1 + brightBlack: 17.4 + brightRed: 31 + brightGreen: 62.2 + brightYellow: 62.7 + brightBlue: 88.9 + brightMagenta: 62.7 + brightCyan: 88.9 + brightWhite: 101 diff --git a/themes/rainglow--potpourri-contrast.yaml b/themes/rainglow--potpourri-contrast.yaml new file mode 100644 index 00000000..a27f4130 --- /dev/null +++ b/themes/rainglow--potpourri-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (potpourri-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0D0C0C" + fg: "#F8F8F2" + black: "#1A1818" + red: "#BA0E2E" + green: "#C491C4" + yellow: "#ED1153" + blue: "#B866FA" + magenta: "#ED1153" + cyan: "#F76ACB" + white: "#FFFFFF" + brightBlack: "#423D3D" + brightRed: "#F03E5F" + brightGreen: "#E8D3E8" + brightYellow: "#F56F97" + brightBlue: "#E6C9FD" + brightMagenta: "#F56F97" + brightCyan: "#FCCBED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 102.7 + black: 0 + red: 21.3 + green: 51.6 + yellow: 33.6 + blue: 41.4 + magenta: 33.6 + cyan: 50.5 + white: 107.7 + brightBlack: 7.6 + brightRed: 37.6 + brightGreen: 83.5 + brightYellow: 48.9 + brightBlue: 80.2 + brightMagenta: 48.9 + brightCyan: 83.5 + brightWhite: 107.7 diff --git a/themes/rainglow--potpourri-light.yaml b/themes/rainglow--potpourri-light.yaml new file mode 100644 index 00000000..01558ece --- /dev/null +++ b/themes/rainglow--potpourri-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (potpourri-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#C491C4" + yellow: "#ED1153" + blue: "#B866FA" + magenta: "#ED1153" + cyan: "#F76ACB" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#E8D3E8" + brightYellow: "#F56F97" + brightBlue: "#E6C9FD" + brightMagenta: "#F56F97" + brightCyan: "#FCCBED" + brightWhite: "#666666" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 50.1 + yellow: 67.8 + blue: 60.1 + magenta: 67.8 + cyan: 51.1 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 19.7 + brightYellow: 52.7 + brightBlue: 22.8 + brightMagenta: 52.7 + brightCyan: 19.7 + brightWhite: 78.8 diff --git a/themes/rainglow--potpourri.yaml b/themes/rainglow--potpourri.yaml new file mode 100644 index 00000000..604c6419 --- /dev/null +++ b/themes/rainglow--potpourri.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (potpourri)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2E2B2C" + fg: "#F8F8F2" + black: "#3B3739" + red: "#BA0E2E" + green: "#C491C4" + yellow: "#ED1153" + blue: "#B866FA" + magenta: "#ED1153" + cyan: "#F76ACB" + white: "#FFFFFF" + brightBlack: "#635C5E" + brightRed: "#F03E5F" + brightGreen: "#E8D3E8" + brightYellow: "#F56F97" + brightBlue: "#E6C9FD" + brightMagenta: "#F56F97" + brightCyan: "#FCCBED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 98.8 + black: 0 + red: 17.3 + green: 47.7 + yellow: 29.7 + blue: 37.4 + magenta: 29.7 + cyan: 46.6 + white: 103.7 + brightBlack: 15.4 + brightRed: 33.6 + brightGreen: 79.5 + brightYellow: 44.9 + brightBlue: 76.2 + brightMagenta: 44.9 + brightCyan: 79.5 + brightWhite: 103.7 diff --git a/themes/rainglow--prime-contrast.yaml b/themes/rainglow--prime-contrast.yaml new file mode 100644 index 00000000..7b36c1fc --- /dev/null +++ b/themes/rainglow--prime-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (prime-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0B0B11" + fg: "#9090B2" + black: "#151520" + red: "#BA0E2E" + green: "#9D50BA" + yellow: "#EE4266" + blue: "#FFD23F" + magenta: "#F3FCF0" + cyan: "#EE4266" + white: "#9F9FBC" + brightBlack: "#33334F" + brightRed: "#F03E5F" + brightGreen: "#C699D7" + brightYellow: "#F6A0B2" + brightBlue: "#FFEAA5" + brightMagenta: "#FFFFFF" + brightCyan: "#F6A0B2" + brightWhite: "#CCCCDC" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 43.8 + black: 0 + red: 21.3 + green: 28 + yellow: 37.8 + blue: 82.1 + magenta: 103.9 + cyan: 37.8 + white: 51.4 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 55.6 + brightYellow: 64 + brightBlue: 94.5 + brightMagenta: 107.7 + brightCyan: 64 + brightWhite: 76.2 diff --git a/themes/rainglow--prime-light.yaml b/themes/rainglow--prime-light.yaml new file mode 100644 index 00000000..7d0400af --- /dev/null +++ b/themes/rainglow--prime-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (prime-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#3D3D5B" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#9D50BA" + yellow: "#EE4266" + blue: "#FFD23F" + magenta: "#727C6F" + cyan: "#EE4266" + white: "#47476A" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C699D7" + brightYellow: "#F6A0B2" + brightBlue: "#FFEAA5" + brightMagenta: "#A6ADA4" + brightCyan: "#F6A0B2" + brightWhite: "#666698" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.1 + black: 0 + red: 80.3 + green: 73.5 + yellow: 63.7 + blue: 21 + magenta: 70.2 + cyan: 63.7 + white: 90.2 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 46.3 + brightYellow: 38.1 + brightBlue: 9.5 + brightMagenta: 45.4 + brightCyan: 38.1 + brightWhite: 76.7 diff --git a/themes/rainglow--prime.yaml b/themes/rainglow--prime.yaml new file mode 100644 index 00000000..912a72dd --- /dev/null +++ b/themes/rainglow--prime.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (prime)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#202030" + fg: "#9090B2" + black: "#2A2A3F" + red: "#BA0E2E" + green: "#9D50BA" + yellow: "#EE4266" + blue: "#FFD23F" + magenta: "#F3FCF0" + cyan: "#EE4266" + white: "#9F9FBC" + brightBlack: "#49496D" + brightRed: "#F03E5F" + brightGreen: "#C699D7" + brightYellow: "#F6A0B2" + brightBlue: "#FFEAA5" + brightMagenta: "#FFFFFF" + brightCyan: "#F6A0B2" + brightWhite: "#CCCCDC" +meta: + mode: "dark" + accent: "orange" + hue: 284 + pair: null + contrast: + fg: 41.7 + black: 0 + red: 19.1 + green: 25.9 + yellow: 35.6 + blue: 80 + magenta: 101.7 + cyan: 35.6 + white: 49.2 + brightBlack: 10.5 + brightRed: 35.4 + brightGreen: 53.5 + brightYellow: 61.9 + brightBlue: 92.3 + brightMagenta: 105.5 + brightCyan: 61.9 + brightWhite: 74 diff --git a/themes/rainglow--rainbow-contrast.yaml b/themes/rainglow--rainbow-contrast.yaml new file mode 100644 index 00000000..7b11e521 --- /dev/null +++ b/themes/rainglow--rainbow-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (rainbow-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#16181A" + fg: "#C7D0D9" + black: "#222528" + red: "#BA0E2E" + green: "#B3CC57" + yellow: "#EF746F" + blue: "#FFBE40" + magenta: "#3FB4C5" + cyan: "#F86F50" + white: "#D6DDE3" + brightBlack: "#454B51" + brightRed: "#F03E5F" + brightGreen: "#D6E4A5" + brightYellow: "#F9CDCB" + brightBlue: "#FFE1A6" + brightMagenta: "#8DD3DD" + brightCyan: "#FCC0B2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 76.3 + black: 0 + red: 20.4 + green: 68.3 + yellow: 46.8 + blue: 73.1 + magenta: 52.9 + cyan: 46.9 + white: 84.3 + brightBlack: 11 + brightRed: 36.7 + brightGreen: 85.1 + brightYellow: 81.4 + brightBlue: 89.6 + brightMagenta: 72.1 + brightCyan: 75.8 + brightWhite: 106.8 diff --git a/themes/rainglow--rainbow-light.yaml b/themes/rainglow--rainbow-light.yaml new file mode 100644 index 00000000..47dc901d --- /dev/null +++ b/themes/rainglow--rainbow-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (rainbow-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#B3CC57" + yellow: "#EF746F" + blue: "#FFBE40" + magenta: "#3FB4C5" + cyan: "#F86F50" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#D6E4A5" + brightYellow: "#F9CDCB" + brightBlue: "#FFE1A6" + brightMagenta: "#8DD3DD" + brightCyan: "#FCC0B2" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 33.2 + yellow: 53.9 + blue: 28.7 + magenta: 48 + cyan: 53.8 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 17.4 + brightYellow: 20.9 + brightBlue: 13.2 + brightMagenta: 29.7 + brightCyan: 26.2 + brightWhite: 71.1 diff --git a/themes/rainglow--rainbow.yaml b/themes/rainglow--rainbow.yaml new file mode 100644 index 00000000..1b746bb9 --- /dev/null +++ b/themes/rainglow--rainbow.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (rainbow)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#373C42" + fg: "#C7D0D9" + black: "#434950" + red: "#BA0E2E" + green: "#B3CC57" + yellow: "#EF746F" + blue: "#FFBE40" + magenta: "#3FB4C5" + cyan: "#F86F50" + white: "#D6DDE3" + brightBlack: "#656F7A" + brightRed: "#F03E5F" + brightGreen: "#D6E4A5" + brightYellow: "#F9CDCB" + brightBlue: "#FFE1A6" + brightMagenta: "#8DD3DD" + brightCyan: "#FCC0B2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + pair: null + contrast: + fg: 69 + black: 0 + red: 13.2 + green: 61.1 + yellow: 39.6 + blue: 65.8 + magenta: 45.7 + cyan: 39.6 + white: 77 + brightBlack: 18.1 + brightRed: 29.4 + brightGreen: 77.9 + brightYellow: 74.2 + brightBlue: 82.3 + brightMagenta: 64.8 + brightCyan: 68.5 + brightWhite: 99.5 diff --git a/themes/rainglow--rebellion-contrast.yaml b/themes/rainglow--rebellion-contrast.yaml new file mode 100644 index 00000000..19df4055 --- /dev/null +++ b/themes/rainglow--rebellion-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (rebellion-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0C0C09" + fg: "#D6C7AB" + black: "#1B1B14" + red: "#BA0E2E" + green: "#FE5F00" + yellow: "#988F2A" + blue: "#8E7547" + magenta: "#FE5F00" + cyan: "#988F2A" + white: "#DED2BC" + brightBlack: "#464635" + brightRed: "#F03E5F" + brightGreen: "#FF9F65" + brightYellow: "#D1C757" + brightBlue: "#BEA77D" + brightMagenta: "#FF9F65" + brightCyan: "#D1C757" + brightWhite: "#F7F5F0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.4 + black: 0 + red: 21.3 + green: 45.2 + yellow: 40.8 + blue: 31.1 + magenta: 45.2 + cyan: 40.8 + white: 79.8 + brightBlack: 10 + brightRed: 37.6 + brightGreen: 63.2 + brightYellow: 70.7 + brightBlue: 55.9 + brightMagenta: 63.2 + brightCyan: 70.7 + brightWhite: 101.1 diff --git a/themes/rainglow--rebellion-light.yaml b/themes/rainglow--rebellion-light.yaml new file mode 100644 index 00000000..c3818356 --- /dev/null +++ b/themes/rainglow--rebellion-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (rebellion-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#EDE8DE" + fg: "#443A27" + black: "#F6F3EF" + red: "#BA0E2E" + green: "#FE5F00" + yellow: "#988F2A" + blue: "#8E7547" + magenta: "#FE5F00" + cyan: "#988F2A" + white: "#544830" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FF9F65" + brightYellow: "#D1C757" + brightBlue: "#BEA77D" + brightMagenta: "#FF9F65" + brightCyan: "#D1C757" + brightWhite: "#85714C" +meta: + mode: "light" + accent: "orange" + hue: 85 + pair: null + contrast: + fg: 82.4 + black: 0 + red: 67 + green: 43 + yellow: 47.3 + blue: 57 + magenta: 43 + cyan: 47.3 + white: 77.1 + brightBlack: 12.7 + brightRed: 50.5 + brightGreen: 25.5 + brightYellow: 18.4 + brightBlue: 32.5 + brightMagenta: 25.5 + brightCyan: 18.4 + brightWhite: 59.3 diff --git a/themes/rainglow--rebellion.yaml b/themes/rainglow--rebellion.yaml new file mode 100644 index 00000000..8e03aca3 --- /dev/null +++ b/themes/rainglow--rebellion.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (rebellion)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#23231A" + fg: "#D6C7AB" + black: "#323225" + red: "#BA0E2E" + green: "#FE5F00" + yellow: "#988F2A" + blue: "#8E7547" + magenta: "#FE5F00" + cyan: "#988F2A" + white: "#DED2BC" + brightBlack: "#5E5E45" + brightRed: "#F03E5F" + brightGreen: "#FF9F65" + brightYellow: "#D1C757" + brightBlue: "#BEA77D" + brightMagenta: "#FF9F65" + brightCyan: "#D1C757" + brightWhite: "#F7F5F0" +meta: + mode: "dark" + accent: "orange" + hue: 108 + pair: null + contrast: + fg: 71.1 + black: 0 + red: 19 + green: 42.9 + yellow: 38.5 + blue: 28.8 + magenta: 42.9 + cyan: 38.5 + white: 77.5 + brightBlack: 16.6 + brightRed: 35.3 + brightGreen: 60.9 + brightYellow: 68.5 + brightBlue: 53.6 + brightMagenta: 60.9 + brightCyan: 68.5 + brightWhite: 98.8 diff --git a/themes/rainglow--revelation-contrast.yaml b/themes/rainglow--revelation-contrast.yaml new file mode 100644 index 00000000..c778c170 --- /dev/null +++ b/themes/rainglow--revelation-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (revelation-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0C0B0B" + fg: "#DEDEDE" + black: "#191717" + red: "#BA0E2E" + green: "#4E5D84" + yellow: "#617FA0" + blue: "#95C2E8" + magenta: "#C2DCF2" + cyan: "#FFBB29" + white: "#EBEBEB" + brightBlack: "#413C3C" + brightRed: "#F03E5F" + brightGreen: "#8391B5" + brightYellow: "#A1B3C6" + brightBlue: "#E9F2FA" + brightMagenta: "#FFFFFF" + brightCyan: "#FFDB8F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 86.5 + black: 0 + red: 21.3 + green: 19.5 + yellow: 32.9 + blue: 66.7 + magenta: 83.1 + cyan: 72.7 + white: 94.6 + brightBlack: 7.3 + brightRed: 37.6 + brightGreen: 43.1 + brightYellow: 59.9 + brightBlue: 98.3 + brightMagenta: 107.7 + brightCyan: 87.2 + brightWhite: 107.7 diff --git a/themes/rainglow--revelation-light.yaml b/themes/rainglow--revelation-light.yaml new file mode 100644 index 00000000..6e83f8d0 --- /dev/null +++ b/themes/rainglow--revelation-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (revelation-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#555555" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#4E5D84" + yellow: "#617FA0" + blue: "#95C2E8" + magenta: "#91ABC1" + cyan: "#FFBB29" + white: "#626262" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#8391B5" + brightYellow: "#A1B3C6" + brightBlue: "#E9F2FA" + brightMagenta: "#D2DDE6" + brightCyan: "#FFDB8F" + brightWhite: "#888888" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.9 + black: 0 + red: 80.3 + green: 82.3 + yellow: 68.6 + blue: 35.6 + magenta: 47 + cyan: 29.9 + white: 80.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 58.5 + brightYellow: 42.2 + brightBlue: 0 + brightMagenta: 18.5 + brightCyan: 16.2 + brightWhite: 63.1 diff --git a/themes/rainglow--revelation.yaml b/themes/rainglow--revelation.yaml new file mode 100644 index 00000000..8aff26a7 --- /dev/null +++ b/themes/rainglow--revelation.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (revelation)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2E2C2B" + fg: "#DEDEDE" + black: "#3B3937" + red: "#BA0E2E" + green: "#4E5D84" + yellow: "#617FA0" + blue: "#95C2E8" + magenta: "#C2DCF2" + cyan: "#FFBB29" + white: "#EBEBEB" + brightBlack: "#635E5C" + brightRed: "#F03E5F" + brightGreen: "#8391B5" + brightYellow: "#A1B3C6" + brightBlue: "#E9F2FA" + brightMagenta: "#FFFFFF" + brightCyan: "#FFDB8F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.3 + black: 0 + red: 17.2 + green: 15.3 + yellow: 28.8 + blue: 62.6 + magenta: 79 + cyan: 68.6 + white: 90.5 + brightBlack: 15.8 + brightRed: 33.5 + brightGreen: 38.9 + brightYellow: 55.7 + brightBlue: 94.2 + brightMagenta: 103.6 + brightCyan: 83.1 + brightWhite: 103.6 diff --git a/themes/rainglow--scorch-contrast.yaml b/themes/rainglow--scorch-contrast.yaml new file mode 100644 index 00000000..2b6a932a --- /dev/null +++ b/themes/rainglow--scorch-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (scorch-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#160D0E" + fg: "#BAA0A2" + black: "#261618" + red: "#BA0E2E" + green: "#D39452" + yellow: "#BD4549" + blue: "#CF9E51" + magenta: "#F6EA82" + cyan: "#E77757" + white: "#C5AFB0" + brightBlack: "#563337" + brightRed: "#F03E5F" + brightGreen: "#E8C6A3" + brightYellow: "#D89093" + brightBlue: "#E5CBA1" + brightMagenta: "#FDFAE1" + brightCyan: "#F4BFB0" + brightWhite: "#E5DBDC" +meta: + mode: "dark" + accent: "orange" + hue: 11 + pair: null + contrast: + fg: 53.7 + black: 0 + red: 21.1 + green: 51.2 + yellow: 26.9 + blue: 54 + magenta: 92.1 + cyan: 46.2 + white: 61.4 + brightBlack: 0 + brightRed: 37.4 + brightGreen: 75.1 + brightYellow: 52.2 + brightBlue: 76.7 + brightMagenta: 103.5 + brightCyan: 74.7 + brightWhite: 85.8 diff --git a/themes/rainglow--scorch-light.yaml b/themes/rainglow--scorch-light.yaml new file mode 100644 index 00000000..49db65e8 --- /dev/null +++ b/themes/rainglow--scorch-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (scorch-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#F2EDED" + fg: "#514242" + black: "#FDFCFC" + red: "#BA0E2E" + green: "#D39452" + yellow: "#BD4549" + blue: "#CF9E51" + magenta: "#C6BB57" + cyan: "#E77757" + white: "#5F4D4D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#E8C6A3" + brightYellow: "#D89093" + brightBlue: "#E5CBA1" + brightMagenta: "#E0DAA3" + brightCyan: "#F4BFB0" + brightWhite: "#897070" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82 + black: 0 + red: 70.3 + green: 40.3 + yellow: 64.3 + blue: 37.5 + magenta: 27.9 + cyan: 45.2 + white: 77.4 + brightBlack: 8.9 + brightRed: 53.8 + brightGreen: 17.4 + brightYellow: 39.3 + brightBlue: 15.9 + brightMagenta: 10.4 + brightCyan: 17.8 + brightWhite: 61.5 diff --git a/themes/rainglow--scorch.yaml b/themes/rainglow--scorch.yaml new file mode 100644 index 00000000..2f2ab95b --- /dev/null +++ b/themes/rainglow--scorch.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (scorch)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#392123" + fg: "#BAA0A2" + black: "#492A2D" + red: "#BA0E2E" + green: "#D39452" + yellow: "#BD4549" + blue: "#CF9E51" + magenta: "#F6EA82" + cyan: "#E77757" + white: "#C5AFB0" + brightBlack: "#7A464B" + brightRed: "#F03E5F" + brightGreen: "#E8C6A3" + brightYellow: "#D89093" + brightBlue: "#E5CBA1" + brightMagenta: "#FDFAE1" + brightCyan: "#F4BFB0" + brightWhite: "#E5DBDC" +meta: + mode: "dark" + accent: "orange" + hue: 14 + pair: null + contrast: + fg: 50.7 + black: 0 + red: 18 + green: 48.1 + yellow: 23.9 + blue: 51 + magenta: 89 + cyan: 43.1 + white: 58.4 + brightBlack: 12.8 + brightRed: 34.3 + brightGreen: 72.1 + brightYellow: 49.2 + brightBlue: 73.7 + brightMagenta: 100.4 + brightCyan: 71.6 + brightWhite: 82.7 diff --git a/themes/rainglow--service-contrast.yaml b/themes/rainglow--service-contrast.yaml new file mode 100644 index 00000000..95a87991 --- /dev/null +++ b/themes/rainglow--service-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (service-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0C0C0C" + fg: "#E8E1DE" + black: "#191919" + red: "#BA0E2E" + green: "#6C8375" + yellow: "#A0AFA1" + blue: "#F0F5F5" + magenta: "#A0AFA1" + cyan: "#6C8375" + white: "#F2EFED" + brightBlack: "#3F3F3F" + brightRed: "#F03E5F" + brightGreen: "#A2B3A9" + brightYellow: "#D7DED8" + brightBlue: "#FFFFFF" + brightMagenta: "#D7DED8" + brightCyan: "#A2B3A9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.1 + black: 0 + red: 21.3 + green: 33.4 + yellow: 56.6 + blue: 100.4 + magenta: 56.6 + cyan: 33.4 + white: 97.5 + brightBlack: 7.9 + brightRed: 37.6 + brightGreen: 58.7 + brightYellow: 85.2 + brightBlue: 107.7 + brightMagenta: 85.2 + brightCyan: 58.7 + brightWhite: 107.7 diff --git a/themes/rainglow--service-light.yaml b/themes/rainglow--service-light.yaml new file mode 100644 index 00000000..f0198b76 --- /dev/null +++ b/themes/rainglow--service-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (service-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#4D5151" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#6C8375" + yellow: "#A0AFA1" + blue: "#8C9191" + magenta: "#A0AFA1" + cyan: "#6C8375" + white: "#595E5E" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#A2B3A9" + brightYellow: "#D7DED8" + brightBlue: "#C0C3C3" + brightMagenta: "#D7DED8" + brightCyan: "#A2B3A9" + brightWhite: "#7F8585" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.9 + black: 0 + red: 80.3 + green: 68 + yellow: 45.3 + blue: 59.2 + magenta: 45.3 + cyan: 68 + white: 82.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 43.3 + brightYellow: 18.1 + brightBlue: 32.7 + brightMagenta: 18.1 + brightCyan: 43.3 + brightWhite: 65.1 diff --git a/themes/rainglow--service.yaml b/themes/rainglow--service.yaml new file mode 100644 index 00000000..ca8cb3b6 --- /dev/null +++ b/themes/rainglow--service.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (service)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#252727" + fg: "#E8E1DE" + black: "#313434" + red: "#BA0E2E" + green: "#6C8375" + yellow: "#A0AFA1" + blue: "#F0F5F5" + magenta: "#A0AFA1" + cyan: "#6C8375" + white: "#F2EFED" + brightBlack: "#575B5B" + brightRed: "#F03E5F" + brightGreen: "#A2B3A9" + brightYellow: "#D7DED8" + brightBlue: "#FFFFFF" + brightMagenta: "#D7DED8" + brightCyan: "#A2B3A9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 86.1 + black: 0 + red: 18.3 + green: 30.4 + yellow: 53.6 + blue: 97.4 + magenta: 53.6 + cyan: 30.4 + white: 94.5 + brightBlack: 15 + brightRed: 34.6 + brightGreen: 55.7 + brightYellow: 82.3 + brightBlue: 104.7 + brightMagenta: 82.3 + brightCyan: 55.7 + brightWhite: 104.7 diff --git a/themes/rainglow--shrek-contrast.yaml b/themes/rainglow--shrek-contrast.yaml new file mode 100644 index 00000000..607b0bde --- /dev/null +++ b/themes/rainglow--shrek-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (shrek-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#B2DE62" + yellow: "#857A5E" + blue: "#F0F2EB" + magenta: "#BFB59B" + cyan: "#B2DE62" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#DBF0B6" + brightYellow: "#B4AB95" + brightBlue: "#FFFFFF" + brightMagenta: "#E7E3D9" + brightCyan: "#DBF0B6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 21.5 + green: 77.8 + yellow: 32.3 + blue: 98.7 + magenta: 62.6 + cyan: 77.8 + white: 107.9 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 93 + brightYellow: 57.1 + brightBlue: 107.9 + brightMagenta: 89.9 + brightCyan: 93 + brightWhite: 107.9 diff --git a/themes/rainglow--shrek-light.yaml b/themes/rainglow--shrek-light.yaml new file mode 100644 index 00000000..48fe42bb --- /dev/null +++ b/themes/rainglow--shrek-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (shrek-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#222222" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#B2DE62" + yellow: "#857A5E" + blue: "#AFB2A7" + magenta: "#BFB59B" + cyan: "#B2DE62" + white: "#2F2F2F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DBF0B6" + brightYellow: "#B4AB95" + brightBlue: "#E0E2DD" + brightMagenta: "#E7E3D9" + brightCyan: "#DBF0B6" + brightWhite: "#555555" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.9 + black: 0 + red: 80.3 + green: 25.3 + yellow: 69.4 + blue: 42.3 + magenta: 39.7 + cyan: 25.3 + white: 99.8 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 11.1 + brightYellow: 45 + brightBlue: 15.1 + brightMagenta: 14 + brightCyan: 11.1 + brightWhite: 85.9 diff --git a/themes/rainglow--shrek.yaml b/themes/rainglow--shrek.yaml new file mode 100644 index 00000000..99637ef9 --- /dev/null +++ b/themes/rainglow--shrek.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (shrek)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#222222" + fg: "#FFFFFF" + black: "#2F2F2F" + red: "#BA0E2E" + green: "#B2DE62" + yellow: "#857A5E" + blue: "#F0F2EB" + magenta: "#BFB59B" + cyan: "#B2DE62" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#F03E5F" + brightGreen: "#DBF0B6" + brightYellow: "#B4AB95" + brightBlue: "#FFFFFF" + brightMagenta: "#E7E3D9" + brightCyan: "#DBF0B6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.5 + black: 0 + red: 19.1 + green: 75.4 + yellow: 29.9 + blue: 96.3 + magenta: 60.2 + cyan: 75.4 + white: 105.5 + brightBlack: 13.7 + brightRed: 35.4 + brightGreen: 90.6 + brightYellow: 54.7 + brightBlue: 105.5 + brightMagenta: 87.4 + brightCyan: 90.6 + brightWhite: 105.5 diff --git a/themes/rainglow--slate-contrast.yaml b/themes/rainglow--slate-contrast.yaml new file mode 100644 index 00000000..440b8780 --- /dev/null +++ b/themes/rainglow--slate-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (slate-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#19191F" + fg: "#EBEBF4" + black: "#24242D" + red: "#BA0E2E" + green: "#566981" + yellow: "#89A7B1" + blue: "#CBDAD5" + magenta: "#566981" + cyan: "#89A7B1" + white: "#FBFBFD" + brightBlack: "#474757" + brightRed: "#F03E5F" + brightGreen: "#8B9CB2" + brightYellow: "#C6D5DA" + brightBlue: "#FFFFFF" + brightMagenta: "#8B9CB2" + brightCyan: "#C6D5DA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 94 + black: 0 + red: 20.2 + green: 22.4 + yellow: 50.7 + blue: 80.8 + magenta: 22.4 + cyan: 50.7 + white: 104 + brightBlack: 10.1 + brightRed: 36.5 + brightGreen: 46.6 + brightYellow: 78.2 + brightBlue: 106.6 + brightMagenta: 46.6 + brightCyan: 78.2 + brightWhite: 106.6 diff --git a/themes/rainglow--slate-light.yaml b/themes/rainglow--slate-light.yaml new file mode 100644 index 00000000..b387f5dd --- /dev/null +++ b/themes/rainglow--slate-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (slate-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#19191F" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#566981" + yellow: "#89A7B1" + blue: "#9AADA7" + magenta: "#566981" + cyan: "#89A7B1" + white: "#24242D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#8B9CB2" + brightYellow: "#C6D5DA" + brightBlue: "#D2DBD8" + brightMagenta: "#8B9CB2" + brightCyan: "#C6D5DA" + brightWhite: "#474757" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 104.3 + black: 0 + red: 80.3 + green: 78.1 + yellow: 50 + blue: 46.5 + magenta: 78.1 + cyan: 50 + white: 102.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 53.9 + brightYellow: 23.7 + brightBlue: 19.9 + brightMagenta: 53.9 + brightCyan: 23.7 + brightWhite: 91 diff --git a/themes/rainglow--slate.yaml b/themes/rainglow--slate.yaml new file mode 100644 index 00000000..dd28da88 --- /dev/null +++ b/themes/rainglow--slate.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (slate)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#3D3D4C" + fg: "#EBEBF4" + black: "#48485A" + red: "#BA0E2E" + green: "#566981" + yellow: "#89A7B1" + blue: "#CBDAD5" + magenta: "#566981" + cyan: "#89A7B1" + white: "#FBFBFD" + brightBlack: "#6A6A85" + brightRed: "#F03E5F" + brightGreen: "#8B9CB2" + brightYellow: "#C6D5DA" + brightBlue: "#FFFFFF" + brightMagenta: "#8B9CB2" + brightCyan: "#C6D5DA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 86 + black: 0 + red: 12.3 + green: 14.4 + yellow: 42.7 + blue: 72.8 + magenta: 14.4 + cyan: 42.7 + white: 96.1 + brightBlack: 16.5 + brightRed: 28.6 + brightGreen: 38.7 + brightYellow: 70.2 + brightBlue: 98.7 + brightMagenta: 38.7 + brightCyan: 70.2 + brightWhite: 98.7 diff --git a/themes/rainglow--slime-contrast.yaml b/themes/rainglow--slime-contrast.yaml new file mode 100644 index 00000000..5e45322e --- /dev/null +++ b/themes/rainglow--slime-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (slime-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0B0C0D" + fg: "#FFFFFF" + black: "#17191B" + red: "#BA0E2E" + green: "#D8E778" + yellow: "#6A9EC5" + blue: "#D0B123" + magenta: "#689DC5" + cyan: "#DFBF29" + white: "#FFFFFF" + brightBlack: "#3A3F44" + brightRed: "#F03E5F" + brightGreen: "#F1F6CF" + brightYellow: "#B3CEE2" + brightBlue: "#E7D272" + brightMagenta: "#B2CDE1" + brightCyan: "#ECDA82" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.7 + black: 0 + red: 21.3 + green: 86.6 + yellow: 46.7 + blue: 61.1 + magenta: 46.2 + cyan: 69 + white: 107.7 + brightBlack: 7.7 + brightRed: 37.6 + brightGreen: 99.4 + brightYellow: 74.4 + brightBlue: 79 + brightMagenta: 73.8 + brightCyan: 83.6 + brightWhite: 107.7 diff --git a/themes/rainglow--slime-light.yaml b/themes/rainglow--slime-light.yaml new file mode 100644 index 00000000..8ea7b0fd --- /dev/null +++ b/themes/rainglow--slime-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (slime-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#8B9355" + yellow: "#9FB3C2" + blue: "#C7AF3F" + magenta: "#9FB3C2" + cyan: "#C7AF3F" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#B8BF8F" + brightYellow: "#DDE4EA" + brightBlue: "#DED08E" + brightMagenta: "#DDE4EA" + brightCyan: "#DED08E" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 60.1 + yellow: 42.6 + blue: 42.8 + magenta: 42.6 + cyan: 42.8 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 36.9 + brightYellow: 14.1 + brightBlue: 25.4 + brightMagenta: 14.1 + brightCyan: 25.4 + brightWhite: 78.8 diff --git a/themes/rainglow--slime.yaml b/themes/rainglow--slime.yaml new file mode 100644 index 00000000..2e04b4e6 --- /dev/null +++ b/themes/rainglow--slime.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (slime)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#292D30" + fg: "#FFFFFF" + black: "#353A3E" + red: "#BA0E2E" + green: "#FAFFDB" + yellow: "#9FB3C2" + blue: "#C7AF3F" + magenta: "#9FB3C2" + cyan: "#C7AF3F" + white: "#FFFFFF" + brightBlack: "#586167" + brightRed: "#F03E5F" + brightGreen: "#FFFFFF" + brightYellow: "#DDE4EA" + brightBlue: "#DED08E" + brightMagenta: "#DDE4EA" + brightCyan: "#DED08E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.6 + black: 0 + red: 17.2 + green: 101.3 + yellow: 55.3 + blue: 55.1 + magenta: 55.3 + cyan: 55.1 + white: 103.6 + brightBlack: 16.1 + brightRed: 33.5 + brightGreen: 103.6 + brightYellow: 85.4 + brightBlue: 73.4 + brightMagenta: 85.4 + brightCyan: 73.4 + brightWhite: 103.6 diff --git a/themes/rainglow--snappy-contrast.yaml b/themes/rainglow--snappy-contrast.yaml new file mode 100644 index 00000000..81b5d916 --- /dev/null +++ b/themes/rainglow--snappy-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (snappy-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0C0C0C" + fg: "#E3E2E0" + black: "#191919" + red: "#BA0E2E" + green: "#4EA1DF" + yellow: "#F66153" + blue: "#808DD3" + magenta: "#F66153" + cyan: "#808DD3" + white: "#EFEFED" + brightBlack: "#3F3F3F" + brightRed: "#F03E5F" + brightGreen: "#A4CFEF" + brightYellow: "#FBBAB4" + brightBlue: "#CCD1ED" + brightMagenta: "#FBBAB4" + brightCyan: "#CCD1ED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89 + black: 0 + red: 21.3 + green: 47.9 + yellow: 44.3 + blue: 43 + magenta: 44.3 + cyan: 43 + white: 97.1 + brightBlack: 7.9 + brightRed: 37.6 + brightGreen: 74 + brightYellow: 74.2 + brightBlue: 79.2 + brightMagenta: 74.2 + brightCyan: 79.2 + brightWhite: 107.7 diff --git a/themes/rainglow--snappy-light.yaml b/themes/rainglow--snappy-light.yaml new file mode 100644 index 00000000..e71a1212 --- /dev/null +++ b/themes/rainglow--snappy-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (snappy-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#555555" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#4EA1DF" + yellow: "#F66153" + blue: "#808DD3" + magenta: "#DA564A" + cyan: "#606AA1" + white: "#626262" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#A4CFEF" + brightYellow: "#FBBAB4" + brightBlue: "#CCD1ED" + brightMagenta: "#EBA59F" + brightCyan: "#A0A6C7" + brightWhite: "#888888" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.9 + black: 0 + red: 80.3 + green: 53.7 + yellow: 57.2 + blue: 58.5 + magenta: 65.4 + cyan: 75.5 + white: 80.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 28.6 + brightYellow: 28.4 + brightBlue: 23.8 + brightMagenta: 39 + brightCyan: 47.2 + brightWhite: 63.1 diff --git a/themes/rainglow--snappy.yaml b/themes/rainglow--snappy.yaml new file mode 100644 index 00000000..77ff5bd3 --- /dev/null +++ b/themes/rainglow--snappy.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (snappy)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#393939" + fg: "#E3E2E0" + black: "#464646" + red: "#BA0E2E" + green: "#4EA1DF" + yellow: "#F66153" + blue: "#808DD3" + magenta: "#F66153" + cyan: "#808DD3" + white: "#EFEFED" + brightBlack: "#6C6C6C" + brightRed: "#F03E5F" + brightGreen: "#A4CFEF" + brightYellow: "#FBBAB4" + brightBlue: "#CCD1ED" + brightMagenta: "#FBBAB4" + brightCyan: "#CCD1ED" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 81.6 + black: 0 + red: 13.9 + green: 40.5 + yellow: 36.9 + blue: 35.6 + magenta: 36.9 + cyan: 35.6 + white: 89.7 + brightBlack: 18 + brightRed: 30.2 + brightGreen: 66.7 + brightYellow: 66.9 + brightBlue: 71.8 + brightMagenta: 66.9 + brightCyan: 71.8 + brightWhite: 100.3 diff --git a/themes/rainglow--solarflare-contrast.yaml b/themes/rainglow--solarflare-contrast.yaml new file mode 100644 index 00000000..2c7b6a4a --- /dev/null +++ b/themes/rainglow--solarflare-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (solarflare-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#000000" + fg: "#E3E2E0" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#FC913A" + yellow: "#FF4E50" + blue: "#EDE574" + magenta: "#FF4E50" + cyan: "#FC913A" + white: "#EFEFED" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#FEC99E" + brightYellow: "#FFB4B5" + brightBlue: "#F9F6CE" + brightMagenta: "#FFB4B5" + brightCyan: "#FEC99E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.2 + black: 0 + red: 21.5 + green: 57.8 + yellow: 43.2 + blue: 88.6 + magenta: 43.2 + cyan: 57.8 + white: 97.3 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 80.1 + brightYellow: 73 + brightBlue: 100.7 + brightMagenta: 73 + brightCyan: 80.1 + brightWhite: 107.9 diff --git a/themes/rainglow--solarflare-light.yaml b/themes/rainglow--solarflare-light.yaml new file mode 100644 index 00000000..daa9e634 --- /dev/null +++ b/themes/rainglow--solarflare-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (solarflare-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#222222" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#D87627" + yellow: "#FF4E50" + blue: "#C6BB15" + magenta: "#FF4E50" + cyan: "#D87627" + white: "#2F2F2F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#E8AD7D" + brightYellow: "#FFB4B5" + brightBlue: "#EDE354" + brightMagenta: "#FFB4B5" + brightCyan: "#E8AD7D" + brightWhite: "#555555" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.9 + black: 0 + red: 80.3 + green: 58.9 + yellow: 58.5 + blue: 38.5 + magenta: 58.5 + cyan: 58.9 + white: 99.8 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 37.7 + brightYellow: 29.9 + brightBlue: 16.4 + brightMagenta: 29.9 + brightCyan: 37.7 + brightWhite: 85.9 diff --git a/themes/rainglow--solarflare.yaml b/themes/rainglow--solarflare.yaml new file mode 100644 index 00000000..13423f76 --- /dev/null +++ b/themes/rainglow--solarflare.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (solarflare)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#222222" + fg: "#E3E2E0" + black: "#2F2F2F" + red: "#BA0E2E" + green: "#FC913A" + yellow: "#FF4E50" + blue: "#EDE574" + magenta: "#FF4E50" + cyan: "#FC913A" + white: "#EFEFED" + brightBlack: "#555555" + brightRed: "#F03E5F" + brightGreen: "#FEC99E" + brightYellow: "#FFB4B5" + brightBlue: "#F9F6CE" + brightMagenta: "#FFB4B5" + brightCyan: "#FEC99E" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 86.8 + black: 0 + red: 19.1 + green: 55.4 + yellow: 40.8 + blue: 86.2 + magenta: 40.8 + cyan: 55.4 + white: 94.9 + brightBlack: 13.7 + brightRed: 35.4 + brightGreen: 77.7 + brightYellow: 70.5 + brightBlue: 98.3 + brightMagenta: 70.5 + brightCyan: 77.7 + brightWhite: 105.5 diff --git a/themes/rainglow--soup-contrast.yaml b/themes/rainglow--soup-contrast.yaml new file mode 100644 index 00000000..cd19309e --- /dev/null +++ b/themes/rainglow--soup-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (soup-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#17181C" + fg: "#9090B2" + black: "#23242A" + red: "#BA0E2E" + green: "#68B0AB" + yellow: "#8FC0A9" + blue: "#C8D5B9" + magenta: "#FAF3DD" + cyan: "#8FC0A9" + white: "#9F9FBC" + brightBlack: "#454854" + brightRed: "#F03E5F" + brightGreen: "#ABD3D0" + brightYellow: "#D0E5DB" + brightBlue: "#FAFBF9" + brightMagenta: "#FFFFFF" + brightCyan: "#D0E5DB" + brightWhite: "#CCCCDC" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 42.9 + black: 0 + red: 20.4 + green: 51.8 + yellow: 61.5 + blue: 77.2 + magenta: 98.9 + cyan: 61.5 + white: 50.4 + brightBlack: 10.2 + brightRed: 36.7 + brightGreen: 74.1 + brightYellow: 86.8 + brightBlue: 103.9 + brightMagenta: 106.8 + brightCyan: 86.8 + brightWhite: 75.3 diff --git a/themes/rainglow--soup-light.yaml b/themes/rainglow--soup-light.yaml new file mode 100644 index 00000000..398cb16c --- /dev/null +++ b/themes/rainglow--soup-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (soup-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#666A7A" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#68B0AB" + yellow: "#8FC0A9" + blue: "#C8D5B9" + magenta: "#A5A08E" + cyan: "#8FC0A9" + white: "#727688" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#ABD3D0" + brightYellow: "#D0E5DB" + brightBlue: "#FAFBF9" + brightMagenta: "#D2D0C7" + brightCyan: "#D0E5DB" + brightWhite: "#9B9EAB" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 76.8 + black: 0 + red: 80.3 + green: 49 + yellow: 39.7 + blue: 24.8 + magenta: 51.1 + cyan: 39.7 + white: 71.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 27.8 + brightYellow: 15.8 + brightBlue: 0 + brightMagenta: 25.1 + brightCyan: 15.8 + brightWhite: 51.9 diff --git a/themes/rainglow--soup.yaml b/themes/rainglow--soup.yaml new file mode 100644 index 00000000..20915d1f --- /dev/null +++ b/themes/rainglow--soup.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (soup)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#40424C" + fg: "#9090B2" + black: "#4C4E5A" + red: "#BA0E2E" + green: "#68B0AB" + yellow: "#8FC0A9" + blue: "#C8D5B9" + magenta: "#FAF3DD" + cyan: "#8FC0A9" + white: "#9F9FBC" + brightBlack: "#6F7283" + brightRed: "#F03E5F" + brightGreen: "#ABD3D0" + brightYellow: "#D0E5DB" + brightBlue: "#FAFBF9" + brightMagenta: "#FFFFFF" + brightCyan: "#D0E5DB" + brightWhite: "#CCCCDC" +meta: + mode: "dark" + accent: "orange" + hue: 277 + pair: null + contrast: + fg: 33.5 + black: 0 + red: 10.9 + green: 42.4 + yellow: 52 + blue: 67.8 + magenta: 89.5 + cyan: 52 + white: 41 + brightBlack: 18.1 + brightRed: 27.2 + brightGreen: 64.6 + brightYellow: 77.4 + brightBlue: 94.4 + brightMagenta: 97.3 + brightCyan: 77.4 + brightWhite: 65.8 diff --git a/themes/rainglow--sourlick-contrast.yaml b/themes/rainglow--sourlick-contrast.yaml new file mode 100644 index 00000000..1882a778 --- /dev/null +++ b/themes/rainglow--sourlick-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (sourlick-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#060606" + fg: "#DEDEDE" + black: "#131313" + red: "#BA0E2E" + green: "#EDF252" + yellow: "#8AC27A" + blue: "#BDF522" + magenta: "#D2EB31" + cyan: "#FFBB29" + white: "#EBEBEB" + brightBlack: "#393939" + brightRed: "#F03E5F" + brightGreen: "#F7F9B1" + brightYellow: "#C8E2C0" + brightBlue: "#DAF984" + brightMagenta: "#E6F48E" + brightCyan: "#FFDB8F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 86.6 + black: 0 + red: 21.5 + green: 94.2 + yellow: 61.6 + blue: 89.5 + magenta: 87 + cyan: 72.8 + white: 94.8 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 100.8 + brightYellow: 84.5 + brightBlue: 95.9 + brightMagenta: 95.2 + brightCyan: 87.4 + brightWhite: 107.8 diff --git a/themes/rainglow--sourlick-light.yaml b/themes/rainglow--sourlick-light.yaml new file mode 100644 index 00000000..770a3aee --- /dev/null +++ b/themes/rainglow--sourlick-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (sourlick-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#BFC431" + yellow: "#6BA05D" + blue: "#94C117" + magenta: "#AFC425" + cyan: "#D89E20" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DBDE7D" + brightYellow: "#A6C69D" + brightBlue: "#C3EB53" + brightMagenta: "#D3E36C" + brightCyan: "#EAC574" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 35.6 + yellow: 57.6 + blue: 41.4 + magenta: 37.4 + cyan: 46.6 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 20.3 + brightYellow: 35.6 + brightBlue: 17.9 + brightMagenta: 19.4 + brightCyan: 28.6 + brightWhite: 78.8 diff --git a/themes/rainglow--sourlick.yaml b/themes/rainglow--sourlick.yaml new file mode 100644 index 00000000..cf5b3fef --- /dev/null +++ b/themes/rainglow--sourlick.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (sourlick)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2E2C2B" + fg: "#DEDEDE" + black: "#3B3937" + red: "#BA0E2E" + green: "#EDF252" + yellow: "#8AC27A" + blue: "#BDF522" + magenta: "#D2EB31" + cyan: "#FFBB29" + white: "#EBEBEB" + brightBlack: "#635E5C" + brightRed: "#F03E5F" + brightGreen: "#F7F9B1" + brightYellow: "#C8E2C0" + brightBlue: "#DAF984" + brightMagenta: "#E6F48E" + brightCyan: "#FFDB8F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 82.3 + black: 0 + red: 17.2 + green: 89.9 + yellow: 57.3 + blue: 85.3 + magenta: 82.8 + cyan: 68.6 + white: 90.5 + brightBlack: 15.8 + brightRed: 33.5 + brightGreen: 96.5 + brightYellow: 80.2 + brightBlue: 91.6 + brightMagenta: 90.9 + brightCyan: 83.1 + brightWhite: 103.6 diff --git a/themes/rainglow--spearmint-contrast.yaml b/themes/rainglow--spearmint-contrast.yaml new file mode 100644 index 00000000..88a45da4 --- /dev/null +++ b/themes/rainglow--spearmint-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (spearmint-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#1A2322" + fg: "#C9DBD9" + black: "#253230" + red: "#BA0E2E" + green: "#69ADB5" + yellow: "#25808A" + blue: "#4CD7E0" + magenta: "#69ADB5" + cyan: "#199FA8" + white: "#D8E5E4" + brightBlack: "#455E5B" + brightRed: "#F03E5F" + brightGreen: "#ADD2D7" + brightYellow: "#47C0CE" + brightBlue: "#A3EAEF" + brightMagenta: "#ADD2D7" + brightCyan: "#44D9E3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 188 + pair: null + contrast: + fg: 80.1 + black: 0 + red: 19.2 + green: 49.8 + yellow: 27.5 + blue: 69.3 + magenta: 49.8 + cyan: 40.7 + white: 87 + brightBlack: 15.5 + brightRed: 35.5 + brightGreen: 72.9 + brightYellow: 57.7 + brightBlue: 84.3 + brightMagenta: 72.9 + brightCyan: 70.2 + brightWhite: 105.6 diff --git a/themes/rainglow--spearmint-light.yaml b/themes/rainglow--spearmint-light.yaml new file mode 100644 index 00000000..490fea7d --- /dev/null +++ b/themes/rainglow--spearmint-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (spearmint-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#E1F0EE" + fg: "#719692" + black: "#F2F8F8" + red: "#BA0E2E" + green: "#69ADB5" + yellow: "#25808A" + blue: "#4CD7E0" + magenta: "#69ADB5" + cyan: "#199FA8" + white: "#80A19D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#ADD2D7" + brightYellow: "#47C0CE" + brightBlue: "#A3EAEF" + brightMagenta: "#ADD2D7" + brightCyan: "#44D9E3" + brightWhite: "#ACC1BF" +meta: + mode: "light" + accent: "orange" + hue: 187 + pair: null + contrast: + fg: 48.8 + black: 0 + red: 69.5 + green: 39 + yellow: 61 + blue: 20.3 + magenta: 39 + cyan: 47.9 + white: 43 + brightBlack: 9.8 + brightRed: 53.1 + brightGreen: 16.9 + brightYellow: 31.4 + brightBlue: 0 + brightMagenta: 16.9 + brightCyan: 19.5 + brightWhite: 25 diff --git a/themes/rainglow--spearmint.yaml b/themes/rainglow--spearmint.yaml new file mode 100644 index 00000000..8c682df5 --- /dev/null +++ b/themes/rainglow--spearmint.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (spearmint)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#415654" + fg: "#C9DBD9" + black: "#4C6462" + red: "#BA0E2E" + green: "#69ADB5" + yellow: "#25808A" + blue: "#4CD7E0" + magenta: "#69ADB5" + cyan: "#199FA8" + white: "#D8E5E4" + brightBlack: "#6D908D" + brightRed: "#F03E5F" + brightGreen: "#ADD2D7" + brightYellow: "#47C0CE" + brightBlue: "#A3EAEF" + brightMagenta: "#ADD2D7" + brightCyan: "#44D9E3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 189 + pair: null + contrast: + fg: 66.4 + black: 0 + red: 0 + green: 36.2 + yellow: 13.8 + blue: 55.6 + magenta: 36.2 + cyan: 27 + white: 73.3 + brightBlack: 23.3 + brightRed: 21.8 + brightGreen: 59.3 + brightYellow: 44 + brightBlue: 70.6 + brightMagenta: 59.3 + brightCyan: 56.5 + brightWhite: 91.9 diff --git a/themes/rainglow--spitfire-contrast.yaml b/themes/rainglow--spitfire-contrast.yaml new file mode 100644 index 00000000..5038b316 --- /dev/null +++ b/themes/rainglow--spitfire-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (spitfire-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#091C19" + fg: "#BAD3D0" + black: "#0F2F2A" + red: "#BA0E2E" + green: "#F75431" + yellow: "#FACC54" + blue: "#8EC065" + magenta: "#30985B" + cyan: "#F75431" + white: "#CADDDB" + brightBlack: "#22695E" + brightRed: "#F03E5F" + brightGreen: "#FBA593" + brightYellow: "#FDEAB7" + brightBlue: "#C3DEAD" + brightMagenta: "#61CD8E" + brightCyan: "#FBA593" + brightWhite: "#F8FBFA" +meta: + mode: "dark" + accent: "orange" + hue: 182 + pair: null + contrast: + fg: 75.5 + black: 0 + red: 20.2 + green: 40.7 + yellow: 77.9 + blue: 59.4 + magenta: 36.8 + cyan: 40.7 + white: 82.3 + brightBlack: 18.8 + brightRed: 36.5 + brightGreen: 64.5 + brightYellow: 93.7 + brightBlue: 80.2 + brightMagenta: 63.3 + brightCyan: 64.5 + brightWhite: 103.5 diff --git a/themes/rainglow--spitfire-light.yaml b/themes/rainglow--spitfire-light.yaml new file mode 100644 index 00000000..735a8ada --- /dev/null +++ b/themes/rainglow--spitfire-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (spitfire-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#24665E" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#F75431" + yellow: "#D6A62F" + blue: "#8EC065" + magenta: "#30985B" + cyan: "#F75431" + white: "#2B796F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FBA593" + brightYellow: "#E7CA84" + brightBlue: "#C3DEAD" + brightMagenta: "#61CD8E" + brightCyan: "#FBA593" + brightWhite: "#3FB1A3" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.8 + black: 0 + red: 80.3 + green: 59.8 + yellow: 44.1 + blue: 41.6 + magenta: 63.6 + cyan: 59.8 + white: 75.3 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 36.7 + brightYellow: 26.8 + brightBlue: 21.9 + brightMagenta: 37.9 + brightCyan: 36.7 + brightWhite: 50.7 diff --git a/themes/rainglow--spitfire.yaml b/themes/rainglow--spitfire.yaml new file mode 100644 index 00000000..866c8cb1 --- /dev/null +++ b/themes/rainglow--spitfire.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (spitfire)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#184540" + fg: "#BAD3D0" + black: "#1F5852" + red: "#BA0E2E" + green: "#F75431" + yellow: "#FACC54" + blue: "#8EC065" + magenta: "#30985B" + cyan: "#F75431" + white: "#CADDDB" + brightBlack: "#329186" + brightRed: "#F03E5F" + brightGreen: "#FBA593" + brightYellow: "#FDEAB7" + brightBlue: "#C3DEAD" + brightMagenta: "#61CD8E" + brightCyan: "#FBA593" + brightWhite: "#F8FBFA" +meta: + mode: "dark" + accent: "orange" + hue: 185 + pair: null + contrast: + fg: 67.4 + black: 0 + red: 12.2 + green: 32.6 + yellow: 69.9 + blue: 51.3 + magenta: 28.7 + cyan: 32.6 + white: 74.2 + brightBlack: 27.1 + brightRed: 28.5 + brightGreen: 56.5 + brightYellow: 85.6 + brightBlue: 72.1 + brightMagenta: 55.2 + brightCyan: 56.5 + brightWhite: 95.4 diff --git a/themes/rainglow--stark-contrast.yaml b/themes/rainglow--stark-contrast.yaml new file mode 100644 index 00000000..a48fedfa --- /dev/null +++ b/themes/rainglow--stark-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (stark-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0B0A0A" + fg: "#DEDEDE" + black: "#181616" + red: "#BA0E2E" + green: "#FFBB29" + yellow: "#F03113" + blue: "#F03113" + magenta: "#AAAAAA" + cyan: "#FFBB29" + white: "#EBEBEB" + brightBlack: "#403B3B" + brightRed: "#F03E5F" + brightGreen: "#FFDB8F" + brightYellow: "#F68573" + brightBlue: "#F68573" + brightMagenta: "#DDDDDD" + brightCyan: "#FFDB8F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 86.5 + black: 0 + red: 21.3 + green: 72.7 + yellow: 35.5 + blue: 35.5 + magenta: 56.1 + cyan: 72.7 + white: 94.7 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 87.3 + brightYellow: 53.8 + brightBlue: 53.8 + brightMagenta: 85.9 + brightCyan: 87.3 + brightWhite: 107.7 diff --git a/themes/rainglow--stark-light.yaml b/themes/rainglow--stark-light.yaml new file mode 100644 index 00000000..4f60828d --- /dev/null +++ b/themes/rainglow--stark-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (stark-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#FFBB29" + yellow: "#F03113" + blue: "#F03113" + magenta: "#666666" + cyan: "#FFBB29" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FFDB8F" + brightYellow: "#F68573" + brightBlue: "#F68573" + brightMagenta: "#999999" + brightCyan: "#FFDB8F" + brightWhite: "#666666" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 29.9 + yellow: 66.1 + blue: 66.1 + magenta: 78.8 + cyan: 29.9 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 16.2 + brightYellow: 48.1 + brightBlue: 48.1 + brightMagenta: 54.6 + brightCyan: 16.2 + brightWhite: 78.8 diff --git a/themes/rainglow--stark.yaml b/themes/rainglow--stark.yaml new file mode 100644 index 00000000..70fbb0ad --- /dev/null +++ b/themes/rainglow--stark.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (stark)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2E2C2B" + fg: "#DEDEDE" + black: "#3B3937" + red: "#BA0E2E" + green: "#FFBB29" + yellow: "#F03113" + blue: "#F03113" + magenta: "#AAAAAA" + cyan: "#FFBB29" + white: "#EBEBEB" + brightBlack: "#635E5C" + brightRed: "#F03E5F" + brightGreen: "#FFDB8F" + brightYellow: "#F68573" + brightBlue: "#F68573" + brightMagenta: "#DDDDDD" + brightCyan: "#FFDB8F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.3 + black: 0 + red: 17.2 + green: 68.6 + yellow: 31.3 + blue: 31.3 + magenta: 51.9 + cyan: 68.6 + white: 90.5 + brightBlack: 15.8 + brightRed: 33.5 + brightGreen: 83.1 + brightYellow: 49.6 + brightBlue: 49.6 + brightMagenta: 81.7 + brightCyan: 83.1 + brightWhite: 103.6 diff --git a/themes/rainglow--stasis-contrast.yaml b/themes/rainglow--stasis-contrast.yaml new file mode 100644 index 00000000..cc6061a3 --- /dev/null +++ b/themes/rainglow--stasis-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (stasis-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0E0D0F" + fg: "#BBB1C9" + black: "#1B191D" + red: "#BA0E2E" + green: "#FC814A" + yellow: "#7C617C" + blue: "#BFBFBF" + magenta: "#FC814A" + cyan: "#BFBFBF" + white: "#C8C0D3" + brightBlack: "#413C46" + brightRed: "#F03E5F" + brightGreen: "#FEC7AE" + brightYellow: "#AD96AD" + brightBlue: "#F2F2F2" + brightMagenta: "#FEC7AE" + brightCyan: "#F2F2F2" + brightWhite: "#F0EDF3" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 62.1 + black: 0 + red: 21.2 + green: 53 + yellow: 24.3 + blue: 67.8 + magenta: 53 + cyan: 67.8 + white: 70.2 + brightBlack: 7.5 + brightRed: 37.5 + brightGreen: 79.5 + brightYellow: 49 + brightBlue: 99.1 + brightMagenta: 79.5 + brightCyan: 99.1 + brightWhite: 96.5 diff --git a/themes/rainglow--stasis-light.yaml b/themes/rainglow--stasis-light.yaml new file mode 100644 index 00000000..330377da --- /dev/null +++ b/themes/rainglow--stasis-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (stasis-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#605A68" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#FC814A" + yellow: "#7C617C" + blue: "#777777" + magenta: "#FC814A" + cyan: "#777777" + white: "#6D6676" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#FEC7AE" + brightYellow: "#AD96AD" + brightBlue: "#AAAAAA" + brightMagenta: "#FEC7AE" + brightCyan: "#AAAAAA" + brightWhite: "#938C9C" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.9 + black: 0 + red: 80.3 + green: 48.7 + yellow: 77.1 + blue: 71.1 + magenta: 48.7 + cyan: 71.1 + white: 77.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 23.4 + brightYellow: 52.6 + brightBlue: 45.8 + brightMagenta: 23.4 + brightCyan: 45.8 + brightWhite: 59.8 diff --git a/themes/rainglow--stasis.yaml b/themes/rainglow--stasis.yaml new file mode 100644 index 00000000..2e503e70 --- /dev/null +++ b/themes/rainglow--stasis.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (stasis)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2F2C33" + fg: "#BBB1C9" + black: "#3C3841" + red: "#BA0E2E" + green: "#FC814A" + yellow: "#7C617C" + blue: "#BFBFBF" + magenta: "#FC814A" + cyan: "#BFBFBF" + white: "#C8C0D3" + brightBlack: "#615B6A" + brightRed: "#F03E5F" + brightGreen: "#FEC7AE" + brightYellow: "#AD96AD" + brightBlue: "#F2F2F2" + brightMagenta: "#FEC7AE" + brightCyan: "#F2F2F2" + brightWhite: "#F0EDF3" +meta: + mode: "dark" + accent: "orange" + hue: 305 + pair: null + contrast: + fg: 57.9 + black: 0 + red: 17 + green: 48.8 + yellow: 20.1 + blue: 63.5 + magenta: 48.8 + cyan: 63.5 + white: 66 + brightBlack: 15 + brightRed: 33.3 + brightGreen: 75.3 + brightYellow: 44.8 + brightBlue: 94.8 + brightMagenta: 75.3 + brightCyan: 94.8 + brightWhite: 92.3 diff --git a/themes/rainglow--stealth-contrast.yaml b/themes/rainglow--stealth-contrast.yaml new file mode 100644 index 00000000..eed894a0 --- /dev/null +++ b/themes/rainglow--stealth-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (stealth-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0D0E0F" + fg: "#5F656D" + black: "#191B1D" + red: "#BA0E2E" + green: "#3C4044" + yellow: "#474C51" + blue: "#545A60" + magenta: "#474C51" + cyan: "#3C4044" + white: "#6B727B" + brightBlack: "#3C4146" + brightRed: "#F03E5F" + brightGreen: "#6C737A" + brightYellow: "#777F87" + brightBlue: "#858D95" + brightMagenta: "#777F87" + brightCyan: "#6C737A" + brightWhite: "#9298A0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 22 + black: 0 + red: 21.2 + green: 8 + yellow: 12.2 + blue: 17.5 + magenta: 12.2 + cyan: 8 + white: 27.6 + brightBlack: 8.3 + brightRed: 37.5 + brightGreen: 28 + brightYellow: 33.5 + brightBlue: 40.3 + brightMagenta: 33.5 + brightCyan: 28 + brightWhite: 46 diff --git a/themes/rainglow--stealth-light.yaml b/themes/rainglow--stealth-light.yaml new file mode 100644 index 00000000..e73ca106 --- /dev/null +++ b/themes/rainglow--stealth-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (stealth-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#CCCCCC" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#BBBBBB" + yellow: "#DDDDDD" + blue: "#AAAAAA" + magenta: "#EEEEEE" + cyan: "#BBBBBB" + white: "#D9D9D9" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#EEEEEE" + brightYellow: "#FFFFFF" + brightBlue: "#DDDDDD" + brightMagenta: "#FFFFFF" + brightCyan: "#EEEEEE" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 27.3 + black: 0 + red: 80.3 + green: 36.7 + yellow: 17.6 + blue: 45.8 + magenta: 7.6 + cyan: 36.7 + white: 19.9 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 7.6 + brightYellow: 0 + brightBlue: 17.6 + brightMagenta: 0 + brightCyan: 7.6 + brightWhite: 0 diff --git a/themes/rainglow--stealth.yaml b/themes/rainglow--stealth.yaml new file mode 100644 index 00000000..68c3bb8d --- /dev/null +++ b/themes/rainglow--stealth.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (stealth)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#27292B" + fg: "#5F656D" + black: "#333638" + red: "#BA0E2E" + green: "#3C4044" + yellow: "#474C51" + blue: "#545A60" + magenta: "#474C51" + cyan: "#3C4044" + white: "#6B727B" + brightBlack: "#575C60" + brightRed: "#F03E5F" + brightGreen: "#6C737A" + brightYellow: "#777F87" + brightBlue: "#858D95" + brightMagenta: "#777F87" + brightCyan: "#6C737A" + brightWhite: "#9298A0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 18.8 + black: 0 + red: 17.9 + green: 0 + yellow: 8.9 + blue: 14.2 + magenta: 8.9 + cyan: 0 + white: 24.4 + brightBlack: 15 + brightRed: 34.2 + brightGreen: 24.7 + brightYellow: 30.2 + brightBlue: 37 + brightMagenta: 30.2 + brightCyan: 24.7 + brightWhite: 42.8 diff --git a/themes/rainglow--storm-contrast.yaml b/themes/rainglow--storm-contrast.yaml new file mode 100644 index 00000000..9b203b6a --- /dev/null +++ b/themes/rainglow--storm-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (storm-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#020B0C" + fg: "#BACEDD" + black: "#061F22" + red: "#BA0E2E" + green: "#126D6B" + yellow: "#00A9A5" + blue: "#4E8098" + magenta: "#126D6B" + cyan: "#00A9A5" + white: "#CBDAE5" + brightBlack: "#115B63" + brightRed: "#F03E5F" + brightGreen: "#20C5C1" + brightYellow: "#10FFF9" + brightBlue: "#89B0C3" + brightMagenta: "#20C5C1" + brightCyan: "#10FFF9" + brightWhite: "#FEFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 202 + pair: null + contrast: + fg: 75 + black: 0 + red: 21.4 + green: 21.5 + yellow: 46.9 + blue: 31.7 + magenta: 21.5 + cyan: 46.9 + white: 82.6 + brightBlack: 15.3 + brightRed: 37.6 + brightGreen: 60.6 + brightYellow: 91.7 + brightBlue: 56.3 + brightMagenta: 60.6 + brightCyan: 91.7 + brightWhite: 107.6 diff --git a/themes/rainglow--storm-light.yaml b/themes/rainglow--storm-light.yaml new file mode 100644 index 00000000..8154f1d3 --- /dev/null +++ b/themes/rainglow--storm-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (storm-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#DEE4E5" + fg: "#092327" + black: "#ECF0F0" + red: "#BA0E2E" + green: "#126D6B" + yellow: "#00A9A5" + blue: "#4E8098" + magenta: "#126D6B" + cyan: "#00A9A5" + white: "#0E363C" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#20C5C1" + brightYellow: "#10FFF9" + brightBlue: "#89B0C3" + brightMagenta: "#20C5C1" + brightCyan: "#10FFF9" + brightWhite: "#1C6D7A" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 86.6 + black: 0 + red: 63.7 + green: 63.6 + yellow: 38.2 + blue: 53.2 + magenta: 63.6 + cyan: 38.2 + white: 82.5 + brightBlack: 16.3 + brightRed: 47.3 + brightGreen: 24.8 + brightYellow: 0 + brightBlue: 29.1 + brightMagenta: 24.8 + brightCyan: 0 + brightWhite: 62.9 diff --git a/themes/rainglow--storm.yaml b/themes/rainglow--storm.yaml new file mode 100644 index 00000000..83bc5312 --- /dev/null +++ b/themes/rainglow--storm.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (storm)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#092327" + fg: "#BACEDD" + black: "#0E363C" + red: "#BA0E2E" + green: "#126D6B" + yellow: "#00A9A5" + blue: "#4E8098" + magenta: "#126D6B" + cyan: "#00A9A5" + white: "#CBDAE5" + brightBlack: "#1C6D7A" + brightRed: "#F03E5F" + brightGreen: "#20C5C1" + brightYellow: "#10FFF9" + brightBlue: "#89B0C3" + brightMagenta: "#20C5C1" + brightCyan: "#10FFF9" + brightWhite: "#FEFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 209 + pair: null + contrast: + fg: 73 + black: 0 + red: 19.4 + green: 19.5 + yellow: 44.9 + blue: 29.7 + magenta: 19.5 + cyan: 44.9 + white: 80.6 + brightBlack: 20.1 + brightRed: 35.6 + brightGreen: 58.6 + brightYellow: 89.7 + brightBlue: 54.3 + brightMagenta: 58.6 + brightCyan: 89.7 + brightWhite: 105.6 diff --git a/themes/rainglow--super-contrast.yaml b/themes/rainglow--super-contrast.yaml new file mode 100644 index 00000000..385a74a4 --- /dev/null +++ b/themes/rainglow--super-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (super-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#15191D" + fg: "#FFFFFF" + black: "#20262C" + red: "#BA0E2E" + green: "#5D67AD" + yellow: "#D60257" + blue: "#E45635" + magenta: "#5D67AD" + cyan: "#E45635" + white: "#FFFFFF" + brightBlack: "#404C58" + brightRed: "#F03E5F" + brightGreen: "#A1A7CF" + brightYellow: "#FD418C" + brightBlue: "#F0A18F" + brightMagenta: "#A1A7CF" + brightCyan: "#F0A18F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 248 + pair: null + contrast: + fg: 106.7 + black: 0 + red: 20.3 + green: 24.7 + yellow: 27.2 + blue: 36.9 + magenta: 24.7 + cyan: 36.9 + white: 106.7 + brightBlack: 11 + brightRed: 36.6 + brightGreen: 54.6 + brightYellow: 41.3 + brightBlue: 61.1 + brightMagenta: 54.6 + brightCyan: 61.1 + brightWhite: 106.7 diff --git a/themes/rainglow--super-light.yaml b/themes/rainglow--super-light.yaml new file mode 100644 index 00000000..91acf679 --- /dev/null +++ b/themes/rainglow--super-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (super-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#5D67AD" + yellow: "#D60257" + blue: "#E45635" + magenta: "#5D67AD" + cyan: "#E45635" + white: "#404040" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#A1A7CF" + brightYellow: "#FD418C" + brightBlue: "#F0A18F" + brightMagenta: "#A1A7CF" + brightCyan: "#F0A18F" + brightWhite: "#666666" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 98.7 + black: 0 + red: 80.3 + green: 75.9 + yellow: 73.4 + blue: 63.6 + magenta: 75.9 + cyan: 63.6 + white: 94.1 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 46.3 + brightYellow: 59.3 + brightBlue: 40 + brightMagenta: 46.3 + brightCyan: 40 + brightWhite: 78.8 diff --git a/themes/rainglow--super.yaml b/themes/rainglow--super.yaml new file mode 100644 index 00000000..17300d1e --- /dev/null +++ b/themes/rainglow--super.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (super)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2C343D" + fg: "#FFFFFF" + black: "#37414C" + red: "#BA0E2E" + green: "#5D67AD" + yellow: "#D60257" + blue: "#E45635" + magenta: "#5D67AD" + cyan: "#E45635" + white: "#FFFFFF" + brightBlack: "#576678" + brightRed: "#F03E5F" + brightGreen: "#A1A7CF" + brightYellow: "#FD418C" + brightBlue: "#F0A18F" + brightMagenta: "#A1A7CF" + brightCyan: "#F0A18F" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 251 + pair: null + contrast: + fg: 102 + black: 0 + red: 15.6 + green: 19.9 + yellow: 22.4 + blue: 32.2 + magenta: 19.9 + cyan: 32.2 + white: 102 + brightBlack: 16.5 + brightRed: 31.9 + brightGreen: 49.9 + brightYellow: 36.6 + brightBlue: 56.4 + brightMagenta: 49.9 + brightCyan: 56.4 + brightWhite: 102 diff --git a/themes/rainglow--tame-contrast.yaml b/themes/rainglow--tame-contrast.yaml new file mode 100644 index 00000000..ddf1bd1f --- /dev/null +++ b/themes/rainglow--tame-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tame-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#15191C" + fg: "#C0CCDB" + black: "#20262B" + red: "#BA0E2E" + green: "#4571A8" + yellow: "#707BA0" + blue: "#98ABB7" + magenta: "#4571A8" + cyan: "#707BA0" + white: "#D0D9E4" + brightBlack: "#414D56" + brightRed: "#F03E5F" + brightGreen: "#86A6CD" + brightYellow: "#ADB4C9" + brightBlue: "#D4DCE1" + brightMagenta: "#86A6CD" + brightCyan: "#ADB4C9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.7 + black: 0 + red: 20.3 + green: 26 + yellow: 31.7 + blue: 54.1 + magenta: 26 + cyan: 31.7 + white: 81.7 + brightBlack: 11.3 + brightRed: 36.6 + brightGreen: 51.5 + brightYellow: 60.7 + brightBlue: 83.4 + brightMagenta: 51.5 + brightCyan: 60.7 + brightWhite: 106.7 diff --git a/themes/rainglow--tame-light.yaml b/themes/rainglow--tame-light.yaml new file mode 100644 index 00000000..c100fbcd --- /dev/null +++ b/themes/rainglow--tame-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tame-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#495760" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#4571A8" + yellow: "#707BA0" + blue: "#495760" + magenta: "#4571A8" + cyan: "#707BA0" + white: "#54646E" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#86A6CD" + brightYellow: "#ADB4C9" + brightBlue: "#778B98" + brightMagenta: "#86A6CD" + brightCyan: "#ADB4C9" + brightWhite: "#778B98" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.9 + black: 0 + red: 80.3 + green: 74.6 + yellow: 68.8 + blue: 85.9 + magenta: 74.6 + cyan: 68.8 + white: 80.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 49.3 + brightYellow: 40.4 + brightBlue: 63 + brightMagenta: 49.3 + brightCyan: 40.4 + brightWhite: 63 diff --git a/themes/rainglow--tame.yaml b/themes/rainglow--tame.yaml new file mode 100644 index 00000000..61218d6a --- /dev/null +++ b/themes/rainglow--tame.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tame)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#283035" + fg: "#C0CCDB" + black: "#333D44" + red: "#BA0E2E" + green: "#4571A8" + yellow: "#707BA0" + blue: "#98ABB7" + magenta: "#4571A8" + cyan: "#707BA0" + white: "#D0D9E4" + brightBlack: "#54656F" + brightRed: "#F03E5F" + brightGreen: "#86A6CD" + brightYellow: "#ADB4C9" + brightBlue: "#D4DCE1" + brightMagenta: "#86A6CD" + brightCyan: "#ADB4C9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 235 + pair: null + contrast: + fg: 70 + black: 0 + red: 16.6 + green: 22.3 + yellow: 28 + blue: 50.4 + magenta: 22.3 + cyan: 28 + white: 78.1 + brightBlack: 16.7 + brightRed: 32.9 + brightGreen: 47.8 + brightYellow: 57 + brightBlue: 79.7 + brightMagenta: 47.8 + brightCyan: 57 + brightWhite: 103 diff --git a/themes/rainglow--tetra-contrast.yaml b/themes/rainglow--tetra-contrast.yaml new file mode 100644 index 00000000..12668a2d --- /dev/null +++ b/themes/rainglow--tetra-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tetra-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#050F11" + fg: "#C9D7DB" + black: "#0B2025" + red: "#BA0E2E" + green: "#148B97" + yellow: "#FDCE7F" + blue: "#E8744A" + magenta: "#E2585D" + cyan: "#148B97" + white: "#D8E2E5" + brightBlack: "#1C5560" + brightRed: "#F03E5F" + brightGreen: "#2ED3E3" + brightYellow: "#FFF4E3" + brightBlue: "#F3BAA5" + brightMagenta: "#F1AFB1" + brightCyan: "#2ED3E3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 210 + pair: null + contrast: + fg: 80.4 + black: 0 + red: 21.2 + green: 34 + yellow: 80.9 + blue: 45.5 + magenta: 38.3 + cyan: 34 + white: 87.7 + brightBlack: 13.3 + brightRed: 37.5 + brightGreen: 68.8 + brightYellow: 101.1 + brightBlue: 72.3 + brightMagenta: 68.3 + brightCyan: 68.8 + brightWhite: 107.6 diff --git a/themes/rainglow--tetra-light.yaml b/themes/rainglow--tetra-light.yaml new file mode 100644 index 00000000..2102cb9e --- /dev/null +++ b/themes/rainglow--tetra-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tetra-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#205A68" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#148B97" + yellow: "#C49A52" + blue: "#E8744A" + magenta: "#E2585D" + cyan: "#148B97" + white: "#266B7B" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#2ED3E3" + brightYellow: "#DEC69E" + brightBlue: "#F3BAA5" + brightMagenta: "#F1AFB1" + brightCyan: "#2ED3E3" + brightWhite: "#389DB6" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 86.6 + black: 0 + red: 80.3 + green: 67.4 + yellow: 50.6 + blue: 56 + magenta: 63.1 + cyan: 67.4 + white: 80 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 33.5 + brightYellow: 29 + brightBlue: 30.2 + brightMagenta: 34 + brightCyan: 33.5 + brightWhite: 58.3 diff --git a/themes/rainglow--tetra.yaml b/themes/rainglow--tetra.yaml new file mode 100644 index 00000000..c3192601 --- /dev/null +++ b/themes/rainglow--tetra.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tetra)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#13363F" + fg: "#C9D7DB" + black: "#194753" + red: "#BA0E2E" + green: "#148B97" + yellow: "#FDCE7F" + blue: "#E8744A" + magenta: "#E2585D" + cyan: "#148B97" + white: "#D8E2E5" + brightBlack: "#2B798D" + brightRed: "#F03E5F" + brightGreen: "#2ED3E3" + brightYellow: "#FFF4E3" + brightBlue: "#F3BAA5" + brightMagenta: "#F1AFB1" + brightCyan: "#2ED3E3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 217 + pair: null + contrast: + fg: 75.1 + black: 0 + red: 15.9 + green: 28.7 + yellow: 75.6 + blue: 40.2 + magenta: 33 + cyan: 28.7 + white: 82.3 + brightBlack: 21.9 + brightRed: 32.2 + brightGreen: 63.5 + brightYellow: 95.8 + brightBlue: 67 + brightMagenta: 62.9 + brightCyan: 63.5 + brightWhite: 102.2 diff --git a/themes/rainglow--tickle-contrast.yaml b/themes/rainglow--tickle-contrast.yaml new file mode 100644 index 00000000..2520ae3c --- /dev/null +++ b/themes/rainglow--tickle-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tickle-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#181819" + fg: "#C1C1C1" + black: "#242426" + red: "#BA0E2E" + green: "#85FFC7" + yellow: "#40A5A5" + blue: "#FF8552" + magenta: "#85FFC7" + cyan: "#FF8552" + white: "#CECECE" + brightBlack: "#4A4A4D" + brightRed: "#F03E5F" + brightGreen: "#EBFFF6" + brightYellow: "#7ECDCD" + brightBlue: "#FFCDB8" + brightMagenta: "#EBFFF6" + brightCyan: "#FFCDB8" + brightWhite: "#F4F4F4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 68.1 + black: 0 + red: 20.4 + green: 92 + yellow: 45.1 + blue: 54 + magenta: 92 + cyan: 54 + white: 75.7 + brightBlack: 10.9 + brightRed: 36.7 + brightGreen: 103.6 + brightYellow: 67.4 + brightBlue: 81.6 + brightMagenta: 103.6 + brightCyan: 81.6 + brightWhite: 99.5 diff --git a/themes/rainglow--tickle-light.yaml b/themes/rainglow--tickle-light.yaml new file mode 100644 index 00000000..f34a0e65 --- /dev/null +++ b/themes/rainglow--tickle-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tickle-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#65C699" + yellow: "#40A5A5" + blue: "#FF8552" + magenta: "#65C699" + cyan: "#FF8552" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#AFE2CA" + brightYellow: "#7ECDCD" + brightBlue: "#FFCDB8" + brightMagenta: "#AFE2CA" + brightCyan: "#FFCDB8" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 40.5 + yellow: 55.6 + blue: 46.9 + magenta: 40.5 + cyan: 46.9 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 21.1 + brightYellow: 34 + brightBlue: 20.6 + brightMagenta: 21.1 + brightCyan: 20.6 + brightWhite: 71.1 diff --git a/themes/rainglow--tickle.yaml b/themes/rainglow--tickle.yaml new file mode 100644 index 00000000..543e3cf5 --- /dev/null +++ b/themes/rainglow--tickle.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tickle)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#39393A" + fg: "#C1C1C1" + black: "#464647" + red: "#BA0E2E" + green: "#85FFC7" + yellow: "#40A5A5" + blue: "#FF8552" + magenta: "#85FFC7" + cyan: "#FF8552" + white: "#CECECE" + brightBlack: "#6C6C6D" + brightRed: "#F03E5F" + brightGreen: "#EBFFF6" + brightYellow: "#7ECDCD" + brightBlue: "#FFCDB8" + brightMagenta: "#EBFFF6" + brightCyan: "#FFCDB8" + brightWhite: "#F4F4F4" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 61.6 + black: 0 + red: 13.9 + green: 85.5 + yellow: 38.6 + blue: 47.5 + magenta: 85.5 + cyan: 47.5 + white: 69.3 + brightBlack: 18 + brightRed: 30.2 + brightGreen: 97.1 + brightYellow: 60.9 + brightBlue: 75.1 + brightMagenta: 97.1 + brightCyan: 75.1 + brightWhite: 93 diff --git a/themes/rainglow--tonic-contrast.yaml b/themes/rainglow--tonic-contrast.yaml new file mode 100644 index 00000000..7a975594 --- /dev/null +++ b/themes/rainglow--tonic-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tonic-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#111314" + fg: "#EEEEEE" + black: "#1D2022" + red: "#BA0E2E" + green: "#75A1A4" + yellow: "#B8CD44" + blue: "#FD9F59" + magenta: "#EF6E44" + cyan: "#B8CD44" + white: "#FBFBFB" + brightBlack: "#40474B" + brightRed: "#F03E5F" + brightGreen: "#B2CBCD" + brightYellow: "#D7E394" + brightBlue: "#FED9BE" + brightMagenta: "#F7B7A2" + brightCyan: "#D7E394" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.1 + black: 0 + red: 20.9 + green: 46.7 + yellow: 69.6 + blue: 62.2 + magenta: 45 + cyan: 69.6 + white: 104.6 + brightBlack: 9.9 + brightRed: 37.2 + brightGreen: 71.6 + brightYellow: 84.8 + brightBlue: 87.2 + brightMagenta: 71.4 + brightCyan: 84.8 + brightWhite: 107.3 diff --git a/themes/rainglow--tonic-light.yaml b/themes/rainglow--tonic-light.yaml new file mode 100644 index 00000000..ea983bc4 --- /dev/null +++ b/themes/rainglow--tonic-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tonic-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#EEEEEE" + fg: "#2A2F31" + black: "#FBFBFB" + red: "#BA0E2E" + green: "#75A1A4" + yellow: "#B8CD44" + blue: "#FD9F59" + magenta: "#EF6E44" + cyan: "#B8CD44" + white: "#363C3F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#B2CBCD" + brightYellow: "#D7E394" + brightBlue: "#FED9BE" + brightMagenta: "#F7B7A2" + brightCyan: "#D7E394" + brightWhite: "#596468" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 90 + black: 0 + red: 70.2 + green: 44.4 + yellow: 22.4 + blue: 29.4 + magenta: 46 + cyan: 22.4 + white: 85.8 + brightBlack: 8.9 + brightRed: 53.8 + brightGreen: 20.4 + brightYellow: 8 + brightBlue: 0 + brightMagenta: 20.6 + brightCyan: 8 + brightWhite: 70.3 diff --git a/themes/rainglow--tonic.yaml b/themes/rainglow--tonic.yaml new file mode 100644 index 00000000..5d991148 --- /dev/null +++ b/themes/rainglow--tonic.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tonic)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2A2F31" + fg: "#EEEEEE" + black: "#363C3F" + red: "#BA0E2E" + green: "#75A1A4" + yellow: "#B8CD44" + blue: "#FD9F59" + magenta: "#EF6E44" + cyan: "#B8CD44" + white: "#FBFBFB" + brightBlack: "#596468" + brightRed: "#F03E5F" + brightGreen: "#B2CBCD" + brightYellow: "#D7E394" + brightBlue: "#FED9BE" + brightMagenta: "#F7B7A2" + brightCyan: "#D7E394" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.1 + black: 0 + red: 16.8 + green: 42.7 + yellow: 65.5 + blue: 58.2 + magenta: 41 + cyan: 65.5 + white: 100.5 + brightBlack: 16.7 + brightRed: 33.1 + brightGreen: 67.5 + brightYellow: 80.7 + brightBlue: 83.1 + brightMagenta: 67.3 + brightCyan: 80.7 + brightWhite: 103.2 diff --git a/themes/rainglow--tribal-contrast.yaml b/themes/rainglow--tribal-contrast.yaml new file mode 100644 index 00000000..6fd95849 --- /dev/null +++ b/themes/rainglow--tribal-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tribal-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#19191D" + fg: "#FFFFFF" + black: "#25252B" + red: "#BA0E2E" + green: "#C43535" + yellow: "#5F5582" + blue: "#E0DDEB" + magenta: "#5F5582" + cyan: "#8F8AA2" + white: "#FFFFFF" + brightBlack: "#484854" + brightRed: "#F03E5F" + brightGreen: "#DD8282" + brightYellow: "#938AB3" + brightBlue: "#FFFFFF" + brightMagenta: "#938AB3" + brightCyan: "#C5C3CF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 106.6 + black: 0 + red: 20.2 + green: 25 + yellow: 17.4 + blue: 85.8 + magenta: 17.4 + cyan: 39.8 + white: 106.6 + brightBlack: 10.3 + brightRed: 36.5 + brightGreen: 47.5 + brightYellow: 41.1 + brightBlue: 106.6 + brightMagenta: 41.1 + brightCyan: 69.9 + brightWhite: 106.6 diff --git a/themes/rainglow--tribal-light.yaml b/themes/rainglow--tribal-light.yaml new file mode 100644 index 00000000..3576df8d --- /dev/null +++ b/themes/rainglow--tribal-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tribal-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#C43535" + yellow: "#5F5582" + blue: "#A09CAF" + magenta: "#5F5582" + cyan: "#8F8AA2" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#DD8282" + brightYellow: "#938AB3" + brightBlue: "#D6D4DD" + brightMagenta: "#938AB3" + brightCyan: "#C5C3CF" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 75.5 + yellow: 83.3 + blue: 51.9 + magenta: 83.3 + cyan: 60.6 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 53.1 + brightYellow: 59.4 + brightBlue: 22.1 + brightMagenta: 59.4 + brightCyan: 31.6 + brightWhite: 71.1 diff --git a/themes/rainglow--tribal.yaml b/themes/rainglow--tribal.yaml new file mode 100644 index 00000000..f584af10 --- /dev/null +++ b/themes/rainglow--tribal.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tribal)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#393942" + fg: "#FFFFFF" + black: "#454550" + red: "#BA0E2E" + green: "#C43535" + yellow: "#5F5582" + blue: "#E0DDEB" + magenta: "#5F5582" + cyan: "#8F8AA2" + white: "#FFFFFF" + brightBlack: "#686879" + brightRed: "#F03E5F" + brightGreen: "#DD8282" + brightYellow: "#938AB3" + brightBlue: "#FFFFFF" + brightMagenta: "#938AB3" + brightCyan: "#C5C3CF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 286 + pair: null + contrast: + fg: 100.1 + black: 0 + red: 13.7 + green: 18.4 + yellow: 10.9 + blue: 79.3 + magenta: 10.9 + cyan: 33.3 + white: 100.1 + brightBlack: 16.7 + brightRed: 30 + brightGreen: 40.9 + brightYellow: 34.5 + brightBlue: 100.1 + brightMagenta: 34.5 + brightCyan: 63.3 + brightWhite: 100.1 diff --git a/themes/rainglow--tron-contrast.yaml b/themes/rainglow--tron-contrast.yaml new file mode 100644 index 00000000..31ebc7eb --- /dev/null +++ b/themes/rainglow--tron-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tron-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#07090B" + fg: "#AEC2E0" + black: "#11161B" + red: "#BA0E2E" + green: "#267FB5" + yellow: "#FFFFFF" + blue: "#FFFFFF" + magenta: "#748AA6" + cyan: "#267FB5" + white: "#C0D0E7" + brightBlack: "#2F3C49" + brightRed: "#F03E5F" + brightGreen: "#63B0DE" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#B2BECE" + brightCyan: "#63B0DE" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 68.8 + black: 0 + red: 21.4 + green: 31.5 + yellow: 107.8 + blue: 107.8 + magenta: 38.6 + cyan: 31.5 + white: 77.1 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 55.1 + brightYellow: 107.8 + brightBlue: 107.8 + brightMagenta: 66.7 + brightCyan: 55.1 + brightWhite: 104.3 diff --git a/themes/rainglow--tron-light.yaml b/themes/rainglow--tron-light.yaml new file mode 100644 index 00000000..9763fe55 --- /dev/null +++ b/themes/rainglow--tron-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tron-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#D7E5ED" + fg: "#222222" + black: "#E9F0F5" + red: "#BA0E2E" + green: "#267FB5" + yellow: "#89BDDD" + blue: "#FFFFFF" + magenta: "#748AA6" + cyan: "#267FB5" + white: "#2F2F2F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#63B0DE" + brightYellow: "#D8E9F4" + brightBlue: "#FFFFFF" + brightMagenta: "#B2BECE" + brightCyan: "#63B0DE" + brightWhite: "#555555" +meta: + mode: "light" + accent: "orange" + hue: 233 + pair: null + contrast: + fg: 86.2 + black: 0 + red: 63.7 + green: 53.4 + yellow: 22.5 + blue: 16.4 + magenta: 46.3 + cyan: 53.4 + white: 83.2 + brightBlack: 16.4 + brightRed: 47.2 + brightGreen: 30.2 + brightYellow: 0 + brightBlue: 16.4 + brightMagenta: 19.1 + brightCyan: 30.2 + brightWhite: 69.3 diff --git a/themes/rainglow--tron.yaml b/themes/rainglow--tron.yaml new file mode 100644 index 00000000..5e0457f3 --- /dev/null +++ b/themes/rainglow--tron.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tron)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#14191F" + fg: "#AEC2E0" + black: "#1E262E" + red: "#BA0E2E" + green: "#267FB5" + yellow: "#FFFFFF" + blue: "#FFFFFF" + magenta: "#748AA6" + cyan: "#267FB5" + white: "#C0D0E7" + brightBlack: "#3C4B5D" + brightRed: "#F03E5F" + brightGreen: "#63B0DE" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#B2BECE" + brightCyan: "#63B0DE" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "orange" + hue: 253 + pair: null + contrast: + fg: 67.7 + black: 0 + red: 20.3 + green: 30.4 + yellow: 106.7 + blue: 106.7 + magenta: 37.5 + cyan: 30.4 + white: 76 + brightBlack: 10.7 + brightRed: 36.6 + brightGreen: 54 + brightYellow: 106.7 + brightBlue: 106.7 + brightMagenta: 65.6 + brightCyan: 54 + brightWhite: 103.2 diff --git a/themes/rainglow--turnip-contrast.yaml b/themes/rainglow--turnip-contrast.yaml new file mode 100644 index 00000000..21ed8f1d --- /dev/null +++ b/themes/rainglow--turnip-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (turnip-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#080809" + fg: "#EDE0CE" + black: "#141416" + red: "#BA0E2E" + green: "#92B55F" + yellow: "#487D76" + blue: "#E8DA5E" + magenta: "#92B55F" + cyan: "#487D76" + white: "#F4ECE1" + brightBlack: "#38383F" + brightRed: "#F03E5F" + brightGreen: "#C1D5A5" + brightYellow: "#79B2AA" + brightBlue: "#F5EFB7" + brightMagenta: "#C1D5A5" + brightCyan: "#79B2AA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 88.8 + black: 0 + red: 21.4 + green: 56 + yellow: 29.1 + blue: 82.5 + magenta: 56 + cyan: 29.1 + white: 96 + brightBlack: 0 + brightRed: 37.7 + brightGreen: 76.7 + brightYellow: 54.8 + brightBlue: 96 + brightMagenta: 76.7 + brightCyan: 54.8 + brightWhite: 107.8 diff --git a/themes/rainglow--turnip-light.yaml b/themes/rainglow--turnip-light.yaml new file mode 100644 index 00000000..582fa293 --- /dev/null +++ b/themes/rainglow--turnip-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (turnip-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#92B55F" + yellow: "#487D76" + blue: "#E8DA5E" + magenta: "#92B55F" + cyan: "#487D76" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#C1D5A5" + brightYellow: "#79B2AA" + brightBlue: "#F5EFB7" + brightMagenta: "#C1D5A5" + brightCyan: "#79B2AA" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 46 + yellow: 72.5 + blue: 20.8 + magenta: 46 + cyan: 72.5 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 26.2 + brightYellow: 47.2 + brightBlue: 8.2 + brightMagenta: 26.2 + brightCyan: 47.2 + brightWhite: 71.1 diff --git a/themes/rainglow--turnip.yaml b/themes/rainglow--turnip.yaml new file mode 100644 index 00000000..6784a471 --- /dev/null +++ b/themes/rainglow--turnip.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (turnip)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#1A1B1D" + fg: "#EDE0CE" + black: "#26282A" + red: "#BA0E2E" + green: "#92B55F" + yellow: "#487D76" + blue: "#E8DA5E" + magenta: "#92B55F" + cyan: "#487D76" + white: "#F4ECE1" + brightBlack: "#4A4D53" + brightRed: "#F03E5F" + brightGreen: "#C1D5A5" + brightYellow: "#79B2AA" + brightBlue: "#F5EFB7" + brightMagenta: "#C1D5A5" + brightCyan: "#79B2AA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.5 + black: 0 + red: 20.1 + green: 54.7 + yellow: 27.7 + blue: 81.1 + magenta: 54.7 + cyan: 27.7 + white: 94.7 + brightBlack: 11.6 + brightRed: 36.3 + brightGreen: 75.4 + brightYellow: 53.4 + brightBlue: 94.6 + brightMagenta: 75.4 + brightCyan: 53.4 + brightWhite: 106.4 diff --git a/themes/rainglow--tweed-contrast.yaml b/themes/rainglow--tweed-contrast.yaml new file mode 100644 index 00000000..e4d64800 --- /dev/null +++ b/themes/rainglow--tweed-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tweed-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#1E2026" + fg: "#FFFFFF" + black: "#292C34" + red: "#BA0E2E" + green: "#777F93" + yellow: "#5E9989" + blue: "#CAB696" + magenta: "#E2975F" + cyan: "#E75B4B" + white: "#FFFFFF" + brightBlack: "#4B505F" + brightRed: "#F03E5F" + brightGreen: "#B0B4C0" + brightYellow: "#9BC2B7" + brightBlue: "#ECE5DA" + brightMagenta: "#F2CFB5" + brightCyan: "#F3ADA5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 271 + pair: null + contrast: + fg: 105.7 + black: 0 + red: 19.4 + green: 32.1 + yellow: 39.5 + blue: 62.2 + magenta: 53.2 + cyan: 37.8 + white: 105.7 + brightBlack: 12.1 + brightRed: 35.7 + brightGreen: 59.7 + brightYellow: 62.9 + brightBlue: 89.4 + brightMagenta: 79.3 + brightCyan: 65.6 + brightWhite: 105.7 diff --git a/themes/rainglow--tweed-light.yaml b/themes/rainglow--tweed-light.yaml new file mode 100644 index 00000000..99001c21 --- /dev/null +++ b/themes/rainglow--tweed-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tweed-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#585E6D" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#585E6D" + yellow: "#5E9989" + blue: "#CAB696" + magenta: "#E2975F" + cyan: "#E75B4B" + white: "#636A7B" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#8A91A1" + brightYellow: "#9BC2B7" + brightBlue: "#ECE5DA" + brightMagenta: "#F2CFB5" + brightCyan: "#F3ADA5" + brightWhite: "#8A91A1" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.2 + black: 0 + red: 80.3 + green: 82.2 + yellow: 60.1 + blue: 38.1 + magenta: 46.7 + cyan: 61.7 + white: 77 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 58.7 + brightYellow: 37.4 + brightBlue: 12.5 + brightMagenta: 21.9 + brightCyan: 34.8 + brightWhite: 58.7 diff --git a/themes/rainglow--tweed.yaml b/themes/rainglow--tweed.yaml new file mode 100644 index 00000000..af9afc23 --- /dev/null +++ b/themes/rainglow--tweed.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (tweed)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#3B3F4C" + fg: "#FFFFFF" + black: "#464B5A" + red: "#BA0E2E" + green: "#777F93" + yellow: "#5E9989" + blue: "#CAB696" + magenta: "#E2975F" + cyan: "#E75B4B" + white: "#FFFFFF" + brightBlack: "#686F85" + brightRed: "#F03E5F" + brightGreen: "#B0B4C0" + brightYellow: "#9BC2B7" + brightBlue: "#ECE5DA" + brightMagenta: "#F2CFB5" + brightCyan: "#F3ADA5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 272 + pair: null + contrast: + fg: 98.3 + black: 0 + red: 12 + green: 24.7 + yellow: 32.1 + blue: 54.8 + magenta: 45.8 + cyan: 30.4 + white: 98.3 + brightBlack: 17.6 + brightRed: 28.3 + brightGreen: 52.3 + brightYellow: 55.5 + brightBlue: 82 + brightMagenta: 71.9 + brightCyan: 58.2 + brightWhite: 98.3 diff --git a/themes/rainglow--userscape-contrast.yaml b/themes/rainglow--userscape-contrast.yaml new file mode 100644 index 00000000..3287e61b --- /dev/null +++ b/themes/rainglow--userscape-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (userscape-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#15181C" + fg: "#DCE2E8" + black: "#20242B" + red: "#BA0E2E" + green: "#A8C0E0" + yellow: "#507DB7" + blue: "#E3BD14" + magenta: "#B3BECC" + cyan: "#DE4D3A" + white: "#EBEFF2" + brightBlack: "#414A56" + brightRed: "#F03E5F" + brightGreen: "#F3F6FB" + brightYellow: "#98B3D5" + brightBlue: "#F2D96B" + brightMagenta: "#F0F2F5" + brightCyan: "#ED9C91" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.5 + black: 0 + red: 20.4 + green: 66.3 + yellow: 31.5 + blue: 67.8 + magenta: 65.7 + cyan: 34.2 + white: 95.9 + brightBlack: 10.6 + brightRed: 36.7 + brightGreen: 100.7 + brightYellow: 58.8 + brightBlue: 82.7 + brightMagenta: 98.1 + brightCyan: 59.1 + brightWhite: 106.8 diff --git a/themes/rainglow--userscape-light.yaml b/themes/rainglow--userscape-light.yaml new file mode 100644 index 00000000..4ed24943 --- /dev/null +++ b/themes/rainglow--userscape-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (userscape-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#F5F8FC" + fg: "#879BB0" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#A8C0E0" + yellow: "#355B8C" + blue: "#E3BD14" + magenta: "#808C9C" + cyan: "#DE4D3A" + white: "#96A8BA" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F3F6FB" + brightYellow: "#638DC4" + brightBlue: "#F2D96B" + brightMagenta: "#B9C0C9" + brightCyan: "#ED9C91" + brightWhite: "#C5CED8" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 50.4 + black: 0 + red: 75.9 + green: 30.7 + yellow: 79.4 + blue: 29.3 + magenta: 57.3 + cyan: 62 + white: 43.6 + brightBlack: 0 + brightRed: 59.5 + brightGreen: 0 + brightYellow: 57.2 + brightBlue: 15.2 + brightMagenta: 30 + brightCyan: 37.7 + brightWhite: 22.4 diff --git a/themes/rainglow--userscape.yaml b/themes/rainglow--userscape.yaml new file mode 100644 index 00000000..07567f9a --- /dev/null +++ b/themes/rainglow--userscape.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (userscape)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#323A42" + fg: "#DCE2E8" + black: "#3D4750" + red: "#BA0E2E" + green: "#A8C0E0" + yellow: "#507DB7" + blue: "#E3BD14" + magenta: "#B3BECC" + cyan: "#DE4D3A" + white: "#EBEFF2" + brightBlack: "#5E6D7C" + brightRed: "#F03E5F" + brightGreen: "#F3F6FB" + brightYellow: "#98B3D5" + brightBlue: "#F2D96B" + brightMagenta: "#F0F2F5" + brightCyan: "#ED9C91" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + pair: null + contrast: + fg: 81 + black: 0 + red: 13.9 + green: 59.8 + yellow: 24.9 + blue: 61.3 + magenta: 59.2 + cyan: 27.6 + white: 89.4 + brightBlack: 17.7 + brightRed: 30.2 + brightGreen: 94.2 + brightYellow: 52.3 + brightBlue: 76.2 + brightMagenta: 91.6 + brightCyan: 52.5 + brightWhite: 100.3 diff --git a/themes/rainglow--vegetable-contrast.yaml b/themes/rainglow--vegetable-contrast.yaml new file mode 100644 index 00000000..2154c46a --- /dev/null +++ b/themes/rainglow--vegetable-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (vegetable-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#161314" + fg: "#E2DCDD" + black: "#241F20" + red: "#BA0E2E" + green: "#F0A56C" + yellow: "#689D81" + blue: "#D8CA96" + magenta: "#F0A56C" + cyan: "#689D81" + white: "#EEEAEB" + brightBlack: "#4D4246" + brightRed: "#F03E5F" + brightGreen: "#F9DEC9" + brightYellow: "#A6C5B5" + brightBlue: "#F4F0E0" + brightMagenta: "#F9DEC9" + brightCyan: "#A6C5B5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.5 + black: 0 + red: 20.8 + green: 62.1 + yellow: 42.9 + blue: 73.8 + magenta: 62.1 + cyan: 42.9 + white: 94.1 + brightBlack: 9.4 + brightRed: 37.1 + brightGreen: 88.9 + brightYellow: 66.7 + brightBlue: 97.2 + brightMagenta: 88.9 + brightCyan: 66.7 + brightWhite: 107.2 diff --git a/themes/rainglow--vegetable-light.yaml b/themes/rainglow--vegetable-light.yaml new file mode 100644 index 00000000..9c180afe --- /dev/null +++ b/themes/rainglow--vegetable-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (vegetable-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#E2DCDD" + fg: "#514547" + black: "#EEEAEB" + red: "#BA0E2E" + green: "#F0A56C" + yellow: "#689D81" + blue: "#C6A52D" + magenta: "#F0A56C" + cyan: "#689D81" + white: "#5F5153" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F9DEC9" + brightYellow: "#A6C5B5" + brightBlue: "#E0CA79" + brightMagenta: "#F9DEC9" + brightCyan: "#A6C5B5" + brightWhite: "#887477" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 71.4 + black: 0 + red: 60.6 + green: 19.7 + yellow: 38.4 + blue: 27 + magenta: 19.7 + cyan: 38.4 + white: 66.4 + brightBlack: 19.9 + brightRed: 44.1 + brightGreen: 0 + brightYellow: 15.4 + brightBlue: 8.3 + brightMagenta: 0 + brightCyan: 15.4 + brightWhite: 50.5 diff --git a/themes/rainglow--vegetable.yaml b/themes/rainglow--vegetable.yaml new file mode 100644 index 00000000..eeacb323 --- /dev/null +++ b/themes/rainglow--vegetable.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (vegetable)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2D2627" + fg: "#E2DCDD" + black: "#3B3233" + red: "#BA0E2E" + green: "#F0A56C" + yellow: "#689D81" + blue: "#D8CA96" + magenta: "#F0A56C" + cyan: "#689D81" + white: "#EEEAEB" + brightBlack: "#645557" + brightRed: "#F03E5F" + brightGreen: "#F9DEC9" + brightYellow: "#A6C5B5" + brightBlue: "#F4F0E0" + brightMagenta: "#F9DEC9" + brightCyan: "#A6C5B5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 8 + pair: null + contrast: + fg: 82.9 + black: 0 + red: 18.1 + green: 59.5 + yellow: 40.2 + blue: 71.1 + magenta: 59.5 + cyan: 40.2 + white: 91.4 + brightBlack: 14.1 + brightRed: 34.4 + brightGreen: 86.2 + brightYellow: 64 + brightBlue: 94.5 + brightMagenta: 86.2 + brightCyan: 64 + brightWhite: 104.5 diff --git a/themes/rainglow--violaceous-contrast.yaml b/themes/rainglow--violaceous-contrast.yaml new file mode 100644 index 00000000..6a2ad76f --- /dev/null +++ b/themes/rainglow--violaceous-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (violaceous-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0B0A11" + fg: "#BDB2F7" + black: "#151321" + red: "#BA0E2E" + green: "#725AC1" + yellow: "#8D86C9" + blue: "#CAC4CE" + magenta: "#725AC1" + cyan: "#CAC4CE" + white: "#D1C9F9" + brightBlack: "#353051" + brightRed: "#F03E5F" + brightGreen: "#B1A4DD" + brightYellow: "#CFCDE8" + brightBlue: "#FCFCFC" + brightMagenta: "#B1A4DD" + brightCyan: "#FCFCFC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 291 + pair: null + contrast: + fg: 65.3 + black: 0 + red: 21.3 + green: 25.3 + yellow: 41.3 + blue: 72 + magenta: 25.3 + cyan: 72 + white: 77.1 + brightBlack: 0 + brightRed: 37.6 + brightGreen: 57.1 + brightYellow: 77.6 + brightBlue: 105.7 + brightMagenta: 57.1 + brightCyan: 105.7 + brightWhite: 107.7 diff --git a/themes/rainglow--violaceous-light.yaml b/themes/rainglow--violaceous-light.yaml new file mode 100644 index 00000000..656ab1b2 --- /dev/null +++ b/themes/rainglow--violaceous-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (violaceous-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#E5E3EF" + fg: "#444349" + black: "#F4F3F8" + red: "#BA0E2E" + green: "#725AC1" + yellow: "#8D86C9" + blue: "#8D8593" + magenta: "#725AC1" + cyan: "#8D8593" + white: "#504F56" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#B1A4DD" + brightYellow: "#CFCDE8" + brightBlue: "#C0BBC3" + brightMagenta: "#B1A4DD" + brightCyan: "#C0BBC3" + brightWhite: "#76747E" +meta: + mode: "light" + accent: "orange" + hue: 294 + pair: null + contrast: + fg: 77 + black: 7.8 + red: 64.6 + green: 60.5 + yellow: 44.5 + blue: 47.4 + magenta: 60.5 + cyan: 47.4 + white: 72.3 + brightBlack: 15.4 + brightRed: 48.1 + brightGreen: 29.1 + brightYellow: 9.6 + brightBlue: 20.1 + brightMagenta: 29.1 + brightCyan: 20.1 + brightWhite: 56.2 diff --git a/themes/rainglow--violaceous.yaml b/themes/rainglow--violaceous.yaml new file mode 100644 index 00000000..4d121863 --- /dev/null +++ b/themes/rainglow--violaceous.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (violaceous)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#242038" + fg: "#BDB2F7" + black: "#2E2948" + red: "#BA0E2E" + green: "#725AC1" + yellow: "#8D86C9" + blue: "#CAC4CE" + magenta: "#725AC1" + cyan: "#CAC4CE" + white: "#D1C9F9" + brightBlack: "#4E4579" + brightRed: "#F03E5F" + brightGreen: "#B1A4DD" + brightYellow: "#CFCDE8" + brightBlue: "#FCFCFC" + brightMagenta: "#B1A4DD" + brightCyan: "#FCFCFC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 291 + pair: null + contrast: + fg: 62.8 + black: 0 + red: 18.9 + green: 22.9 + yellow: 38.9 + blue: 69.5 + magenta: 22.9 + cyan: 69.5 + white: 74.6 + brightBlack: 10.2 + brightRed: 35.1 + brightGreen: 54.6 + brightYellow: 75.1 + brightBlue: 103.2 + brightMagenta: 54.6 + brightCyan: 103.2 + brightWhite: 105.2 diff --git a/themes/rainglow--vision-colorblind.yaml b/themes/rainglow--vision-colorblind.yaml new file mode 100644 index 00000000..a540afe5 --- /dev/null +++ b/themes/rainglow--vision-colorblind.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (vision-colorblind)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#FC4D1F" + yellow: "#FDBA2C" + blue: "#21C0FC" + magenta: "#136EFB" + cyan: "#FC1264" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#FD9D84" + brightYellow: "#FEDB91" + brightBlue: "#86DDFD" + brightMagenta: "#77ACFD" + brightCyan: "#FD77A6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 21.5 + green: 41.9 + yellow: 72.1 + blue: 61.8 + magenta: 31.2 + cyan: 37.9 + white: 107.9 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 63.1 + brightYellow: 87.3 + brightBlue: 78.9 + brightMagenta: 56.8 + brightCyan: 53.3 + brightWhite: 107.9 diff --git a/themes/rainglow--vision-light-colorblind.yaml b/themes/rainglow--vision-light-colorblind.yaml new file mode 100644 index 00000000..8effa3a7 --- /dev/null +++ b/themes/rainglow--vision-light-colorblind.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (vision-light-colorblind)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#81209E" + yellow: "#1BA2F7" + blue: "#F87856" + magenta: "#F87856" + cyan: "#81209E" + white: "#0D0D0D" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#B94ADA" + brightYellow: "#7ECAFA" + brightBlue: "#FCC6B8" + brightMagenta: "#FCC6B8" + brightCyan: "#B94ADA" + brightWhite: "#333333" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 0 + red: 80.3 + green: 86.4 + yellow: 53 + blue: 51.6 + magenta: 51.6 + cyan: 86.4 + white: 105.7 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 67.8 + brightYellow: 33 + brightBlue: 23.7 + brightMagenta: 23.7 + brightCyan: 67.8 + brightWhite: 98.7 diff --git a/themes/rainglow--volatile-contrast.yaml b/themes/rainglow--volatile-contrast.yaml new file mode 100644 index 00000000..650e81cd --- /dev/null +++ b/themes/rainglow--volatile-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (volatile-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#141619" + fg: "#C0CCDB" + black: "#1F2227" + red: "#BA0E2E" + green: "#EE9C3D" + yellow: "#568769" + blue: "#FFFFFF" + magenta: "#EE9C3D" + cyan: "#568769" + white: "#D0D9E4" + brightBlack: "#414852" + brightRed: "#F03E5F" + brightGreen: "#F6CC9B" + brightYellow: "#8DB69D" + brightBlue: "#FFFFFF" + brightMagenta: "#F6CC9B" + brightCyan: "#8DB69D" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 74 + black: 0 + red: 20.6 + green: 57.8 + yellow: 32.3 + blue: 107 + magenta: 57.8 + cyan: 32.3 + white: 82 + brightBlack: 10.1 + brightRed: 36.9 + brightGreen: 79.1 + brightYellow: 56.8 + brightBlue: 107 + brightMagenta: 79.1 + brightCyan: 56.8 + brightWhite: 107 diff --git a/themes/rainglow--volatile-light.yaml b/themes/rainglow--volatile-light.yaml new file mode 100644 index 00000000..b27104eb --- /dev/null +++ b/themes/rainglow--volatile-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (volatile-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#474F56" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#EE9C3D" + yellow: "#568769" + blue: "#474F56" + magenta: "#EE9C3D" + cyan: "#568769" + white: "#535C64" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F6CC9B" + brightYellow: "#8DB69D" + brightBlue: "#76828D" + brightMagenta: "#F6CC9B" + brightCyan: "#8DB69D" + brightWhite: "#76828D" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 88.8 + black: 0 + red: 80.3 + green: 43.4 + yellow: 68.5 + blue: 88.8 + magenta: 43.4 + cyan: 68.5 + white: 83.5 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 23.3 + brightYellow: 44.4 + brightBlue: 66.7 + brightMagenta: 23.3 + brightCyan: 44.4 + brightWhite: 66.7 diff --git a/themes/rainglow--volatile.yaml b/themes/rainglow--volatile.yaml new file mode 100644 index 00000000..db51abe3 --- /dev/null +++ b/themes/rainglow--volatile.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (volatile)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#32373D" + fg: "#C0CCDB" + black: "#3D444B" + red: "#BA0E2E" + green: "#EE9C3D" + yellow: "#568769" + blue: "#FFFFFF" + magenta: "#EE9C3D" + cyan: "#568769" + white: "#D0D9E4" + brightBlack: "#606A75" + brightRed: "#F03E5F" + brightGreen: "#F6CC9B" + brightYellow: "#8DB69D" + brightBlue: "#FFFFFF" + brightMagenta: "#F6CC9B" + brightCyan: "#8DB69D" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 253 + pair: null + contrast: + fg: 68 + black: 0 + red: 14.7 + green: 51.9 + yellow: 26.4 + blue: 101 + magenta: 51.9 + cyan: 26.4 + white: 76.1 + brightBlack: 17.4 + brightRed: 31 + brightGreen: 73.1 + brightYellow: 50.8 + brightBlue: 101 + brightMagenta: 73.1 + brightCyan: 50.8 + brightWhite: 101 diff --git a/themes/rainglow--warlock-contrast.yaml b/themes/rainglow--warlock-contrast.yaml new file mode 100644 index 00000000..f18bd3f1 --- /dev/null +++ b/themes/rainglow--warlock-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (warlock-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#171123" + fg: "#FFFFFF" + black: "#221934" + red: "#BA0E2E" + green: "#F46036" + yellow: "#5B85AA" + blue: "#5B64A3" + magenta: "#9559C6" + cyan: "#F46036" + white: "#FFFFFF" + brightBlack: "#443268" + brightRed: "#F03E5F" + brightGreen: "#F9AC97" + brightYellow: "#9EB7CD" + brightBlue: "#9CA2C8" + brightMagenta: "#C5A5E0" + brightCyan: "#F9AC97" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 298 + pair: null + contrast: + fg: 107.1 + black: 0 + red: 20.7 + green: 42.8 + yellow: 34.5 + blue: 23.4 + magenta: 29 + cyan: 42.8 + white: 107.1 + brightBlack: 0 + brightRed: 37 + brightGreen: 67.2 + brightYellow: 60.9 + brightBlue: 52.2 + brightMagenta: 59.6 + brightCyan: 67.2 + brightWhite: 107.1 diff --git a/themes/rainglow--warlock-light.yaml b/themes/rainglow--warlock-light.yaml new file mode 100644 index 00000000..7711878b --- /dev/null +++ b/themes/rainglow--warlock-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (warlock-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#4B4060" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#F46036" + yellow: "#7EB1DD" + blue: "#7C86D6" + magenta: "#B67AE8" + cyan: "#F46036" + white: "#574A6F" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F9AC97" + brightYellow: "#CFE2F2" + brightBlue: "#CACEEE" + brightMagenta: "#E6D1F7" + brightCyan: "#F9AC97" + brightWhite: "#7B6A9C" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.1 + black: 0 + red: 80.3 + green: 58.2 + yellow: 44.8 + blue: 61 + magenta: 56.8 + cyan: 58.2 + white: 87.8 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 34.6 + brightYellow: 16.2 + brightBlue: 25.2 + brightMagenta: 20.1 + brightCyan: 34.6 + brightWhite: 73.2 diff --git a/themes/rainglow--warlock.yaml b/themes/rainglow--warlock.yaml new file mode 100644 index 00000000..4ce9318f --- /dev/null +++ b/themes/rainglow--warlock.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (warlock)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#4B4060" + fg: "#FFFFFF" + black: "#574A6F" + red: "#BA0E2E" + green: "#F46036" + yellow: "#7EB1DD" + blue: "#7C86D6" + magenta: "#B67AE8" + cyan: "#F46036" + white: "#FFFFFF" + brightBlack: "#7B6A9C" + brightRed: "#F03E5F" + brightGreen: "#F9AC97" + brightYellow: "#CFE2F2" + brightBlue: "#CACEEE" + brightMagenta: "#E6D1F7" + brightCyan: "#F9AC97" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 300 + pair: null + contrast: + fg: 96.3 + black: 0 + red: 9.9 + green: 32 + yellow: 45.7 + blue: 29.1 + magenta: 33.4 + cyan: 32 + white: 96.3 + brightBlack: 16.9 + brightRed: 26.2 + brightGreen: 56.4 + brightYellow: 75.9 + brightBlue: 66.3 + brightMagenta: 71.8 + brightCyan: 56.4 + brightWhite: 96.3 diff --git a/themes/rainglow--waste-contrast.yaml b/themes/rainglow--waste-contrast.yaml new file mode 100644 index 00000000..494a2988 --- /dev/null +++ b/themes/rainglow--waste-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (waste-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#081011" + fg: "#B1C7CC" + black: "#102022" + red: "#BA0E2E" + green: "#43BDB2" + yellow: "#BBD4BE" + blue: "#F9D6BC" + magenta: "#F7A8A5" + cyan: "#43BDB2" + white: "#C0D2D6" + brightBlack: "#295156" + brightRed: "#F03E5F" + brightGreen: "#8ED7D1" + brightYellow: "#F9FCFA" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#8ED7D1" + brightWhite: "#EFF3F4" +meta: + mode: "dark" + accent: "orange" + hue: 206 + pair: null + contrast: + fg: 70 + black: 0 + red: 21.1 + green: 56.9 + yellow: 76.2 + blue: 85.3 + magenta: 66.3 + cyan: 56.9 + white: 76.9 + brightBlack: 12.1 + brightRed: 37.4 + brightGreen: 74.1 + brightYellow: 105 + brightBlue: 107.5 + brightMagenta: 107.5 + brightCyan: 74.1 + brightWhite: 99.1 diff --git a/themes/rainglow--waste-light.yaml b/themes/rainglow--waste-light.yaml new file mode 100644 index 00000000..121c8058 --- /dev/null +++ b/themes/rainglow--waste-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (waste-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#43BDB2" + yellow: "#95AD97" + blue: "#D3B298" + magenta: "#F7A8A5" + cyan: "#43BDB2" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#8ED7D1" + brightYellow: "#CED9CF" + brightBlue: "#F2E7DF" + brightMagenta: "#FFFFFF" + brightCyan: "#8ED7D1" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 44.9 + yellow: 47.5 + blue: 38.3 + magenta: 35.8 + cyan: 44.9 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 28.4 + brightYellow: 21.6 + brightBlue: 10.6 + brightMagenta: 0 + brightCyan: 28.4 + brightWhite: 71.1 diff --git a/themes/rainglow--waste.yaml b/themes/rainglow--waste.yaml new file mode 100644 index 00000000..de389f51 --- /dev/null +++ b/themes/rainglow--waste.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (waste)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#1B353A" + fg: "#B1C7CC" + black: "#23454B" + red: "#BA0E2E" + green: "#43BDB2" + yellow: "#BBD4BE" + blue: "#F9D6BC" + magenta: "#F7A8A5" + cyan: "#43BDB2" + white: "#C0D2D6" + brightBlack: "#3B7580" + brightRed: "#F03E5F" + brightGreen: "#8ED7D1" + brightYellow: "#F9FCFA" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#8ED7D1" + brightWhite: "#EFF3F4" +meta: + mode: "dark" + accent: "orange" + hue: 211 + pair: null + contrast: + fg: 64.9 + black: 0 + red: 16 + green: 51.8 + yellow: 71.1 + blue: 80.2 + magenta: 61.2 + cyan: 51.8 + white: 71.8 + brightBlack: 20.7 + brightRed: 32.3 + brightGreen: 69 + brightYellow: 99.9 + brightBlue: 102.4 + brightMagenta: 102.4 + brightCyan: 69 + brightWhite: 94 diff --git a/themes/rainglow--yitzchok-contrast.yaml b/themes/rainglow--yitzchok-contrast.yaml new file mode 100644 index 00000000..3603c4f7 --- /dev/null +++ b/themes/rainglow--yitzchok-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (yitzchok-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#101316" + fg: "#AFB7BF" + black: "#1B2025" + red: "#BA0E2E" + green: "#E7BE45" + yellow: "#7A8289" + blue: "#E6EAEF" + magenta: "#E7BE45" + cyan: "#7A8289" + white: "#BDC4CA" + brightBlack: "#3B4651" + brightRed: "#F03E5F" + brightGreen: "#F3DE9F" + brightYellow: "#B0B5B9" + brightBlue: "#FFFFFF" + brightMagenta: "#F3DE9F" + brightCyan: "#B0B5B9" + brightWhite: "#E8EAEC" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 62.2 + black: 0 + red: 20.9 + green: 69.6 + yellow: 34.6 + blue: 93.3 + magenta: 69.6 + cyan: 34.6 + white: 69.7 + brightBlack: 9.5 + brightRed: 37.2 + brightGreen: 86.7 + brightYellow: 61.3 + brightBlue: 107.3 + brightMagenta: 86.7 + brightCyan: 61.3 + brightWhite: 93.4 diff --git a/themes/rainglow--yitzchok-light.yaml b/themes/rainglow--yitzchok-light.yaml new file mode 100644 index 00000000..4b2f4de2 --- /dev/null +++ b/themes/rainglow--yitzchok-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (yitzchok-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#6A7684" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#E7BE45" + yellow: "#7A8289" + blue: "#6A7684" + magenta: "#E7BE45" + cyan: "#7A8289" + white: "#768391" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#F3DE9F" + brightYellow: "#B0B5B9" + brightBlue: "#A1A9B3" + brightMagenta: "#F3DE9F" + brightCyan: "#B0B5B9" + brightWhite: "#A1A9B3" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 72.2 + black: 0 + red: 80.3 + green: 32.4 + yellow: 66.5 + blue: 72.2 + magenta: 32.4 + cyan: 66.5 + white: 66.2 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 16.4 + brightYellow: 40.4 + brightBlue: 46.8 + brightMagenta: 16.4 + brightCyan: 40.4 + brightWhite: 46.8 diff --git a/themes/rainglow--yitzchok.yaml b/themes/rainglow--yitzchok.yaml new file mode 100644 index 00000000..e30db51b --- /dev/null +++ b/themes/rainglow--yitzchok.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (yitzchok)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#252C33" + fg: "#AFB7BF" + black: "#303942" + red: "#BA0E2E" + green: "#E7BE45" + yellow: "#7A8289" + blue: "#E6EAEF" + magenta: "#E7BE45" + cyan: "#7A8289" + white: "#BDC4CA" + brightBlack: "#505F6E" + brightRed: "#F03E5F" + brightGreen: "#F3DE9F" + brightYellow: "#B0B5B9" + brightBlue: "#FFFFFF" + brightMagenta: "#F3DE9F" + brightCyan: "#B0B5B9" + brightWhite: "#E8EAEC" +meta: + mode: "dark" + accent: "orange" + hue: 248 + pair: null + contrast: + fg: 58.8 + black: 0 + red: 17.4 + green: 66.2 + yellow: 31.1 + blue: 89.8 + magenta: 66.2 + cyan: 31.1 + white: 66.3 + brightBlack: 15.4 + brightRed: 33.7 + brightGreen: 83.2 + brightYellow: 57.8 + brightBlue: 103.8 + brightMagenta: 83.2 + brightCyan: 57.8 + brightWhite: 89.9 diff --git a/themes/rainglow--yule-contrast.yaml b/themes/rainglow--yule-contrast.yaml new file mode 100644 index 00000000..c6907345 --- /dev/null +++ b/themes/rainglow--yule-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (yule-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#0C0C0B" + fg: "#EDE0CE" + black: "#191917" + red: "#BA0E2E" + green: "#39B81F" + yellow: "#D63131" + blue: "#EBB626" + magenta: "#39B81F" + cyan: "#D63131" + white: "#F4ECE1" + brightBlack: "#41413C" + brightRed: "#F03E5F" + brightGreen: "#71E35A" + brightYellow: "#E78686" + brightBlue: "#F4D583" + brightMagenta: "#71E35A" + brightCyan: "#E78686" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 88.7 + black: 0 + red: 21.3 + green: 51.3 + yellow: 29.5 + blue: 67.3 + magenta: 51.3 + cyan: 29.5 + white: 95.9 + brightBlack: 8.5 + brightRed: 37.6 + brightGreen: 74.7 + brightYellow: 51.6 + brightBlue: 82.6 + brightMagenta: 74.7 + brightCyan: 51.6 + brightWhite: 107.7 diff --git a/themes/rainglow--yule-light.yaml b/themes/rainglow--yule-light.yaml new file mode 100644 index 00000000..56bd8865 --- /dev/null +++ b/themes/rainglow--yule-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (yule-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#39B81F" + yellow: "#D63131" + blue: "#EBB626" + magenta: "#39B81F" + cyan: "#D63131" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#71E35A" + brightYellow: "#E78686" + brightBlue: "#F4D583" + brightMagenta: "#71E35A" + brightCyan: "#E78686" + brightWhite: "#777777" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 50.4 + yellow: 72 + blue: 35 + magenta: 50.4 + cyan: 72 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 28 + brightYellow: 50.1 + brightBlue: 20.5 + brightMagenta: 28 + brightCyan: 50.1 + brightWhite: 71.1 diff --git a/themes/rainglow--yule.yaml b/themes/rainglow--yule.yaml new file mode 100644 index 00000000..bf3b4b9a --- /dev/null +++ b/themes/rainglow--yule.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (yule)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#2B2A27" + fg: "#EDE0CE" + black: "#383733" + red: "#BA0E2E" + green: "#39B81F" + yellow: "#D63131" + blue: "#EBB626" + magenta: "#39B81F" + cyan: "#D63131" + white: "#F4ECE1" + brightBlack: "#605E57" + brightRed: "#F03E5F" + brightGreen: "#71E35A" + brightYellow: "#E78686" + brightBlue: "#F4D583" + brightMagenta: "#71E35A" + brightCyan: "#E78686" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 85.1 + black: 0 + red: 17.7 + green: 47.7 + yellow: 25.9 + blue: 63.7 + magenta: 47.7 + cyan: 25.9 + white: 92.3 + brightBlack: 15.8 + brightRed: 34 + brightGreen: 71.1 + brightYellow: 48 + brightBlue: 79 + brightMagenta: 71.1 + brightCyan: 48 + brightWhite: 104 diff --git a/themes/rainglow--zacks-contrast.yaml b/themes/rainglow--zacks-contrast.yaml new file mode 100644 index 00000000..39649ec5 --- /dev/null +++ b/themes/rainglow--zacks-contrast.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (zacks-contrast)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#000000" + fg: "#F0F0F0" + black: "#0D0D0D" + red: "#BA0E2E" + green: "#9C7DDB" + yellow: "#FF6A38" + blue: "#BCD42A" + magenta: "#FF6A38" + cyan: "#9C7DDB" + white: "#FDFDFD" + brightBlack: "#333333" + brightRed: "#F03E5F" + brightGreen: "#D9CDF1" + brightYellow: "#FFB69E" + brightBlue: "#D7E67E" + brightMagenta: "#FFB69E" + brightCyan: "#D9CDF1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.1 + black: 0 + red: 21.5 + green: 41.5 + yellow: 48.1 + blue: 73.7 + magenta: 48.1 + cyan: 41.5 + white: 106.6 + brightBlack: 0 + brightRed: 37.8 + brightGreen: 79.6 + brightYellow: 72.9 + brightBlue: 86.3 + brightMagenta: 72.9 + brightCyan: 79.6 + brightWhite: 107.9 diff --git a/themes/rainglow--zacks-light.yaml b/themes/rainglow--zacks-light.yaml new file mode 100644 index 00000000..4cfd4161 --- /dev/null +++ b/themes/rainglow--zacks-light.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (zacks-light)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#FFFFFF" + fg: "#444444" + black: "#FFFFFF" + red: "#BA0E2E" + green: "#9C7DDB" + yellow: "#FF6A38" + blue: "#BCD42A" + magenta: "#FF6A38" + cyan: "#9C7DDB" + white: "#515151" + brightBlack: "#FFFFFF" + brightRed: "#F03E5F" + brightGreen: "#D9CDF1" + brightYellow: "#FFB69E" + brightBlue: "#D7E67E" + brightMagenta: "#FFB69E" + brightCyan: "#D9CDF1" + brightWhite: "#777777" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.6 + black: 0 + red: 80.3 + green: 60.2 + yellow: 53.7 + blue: 29.2 + magenta: 53.7 + cyan: 60.2 + white: 87.6 + brightBlack: 0 + brightRed: 63.9 + brightGreen: 23.6 + brightYellow: 29.9 + brightBlue: 17.3 + brightMagenta: 29.9 + brightCyan: 23.6 + brightWhite: 71.1 diff --git a/themes/rainglow--zacks.yaml b/themes/rainglow--zacks.yaml new file mode 100644 index 00000000..48f14807 --- /dev/null +++ b/themes/rainglow--zacks.yaml @@ -0,0 +1,53 @@ +name: "Rainglow (zacks)" +source: + marketplace_id: "daylerees.rainglow" + version: "1.5.2" + installs: 528080 + rating: 4.94 + ratings: 104 + author: "Dayle Rees" + repo: "https://github.com/rainglow/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=daylerees.rainglow" + formats: null +colors: + bg: "#222222" + fg: "#F0F0F0" + black: "#2F2F2F" + red: "#BA0E2E" + green: "#9C7DDB" + yellow: "#FF6A38" + blue: "#BCD42A" + magenta: "#FF6A38" + cyan: "#9C7DDB" + white: "#FDFDFD" + brightBlack: "#555555" + brightRed: "#F03E5F" + brightGreen: "#D9CDF1" + brightYellow: "#FFB69E" + brightBlue: "#D7E67E" + brightMagenta: "#FFB69E" + brightCyan: "#D9CDF1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.6 + black: 0 + red: 19.1 + green: 39.1 + yellow: 45.7 + blue: 71.2 + magenta: 45.7 + cyan: 39.1 + white: 104.1 + brightBlack: 13.7 + brightRed: 35.4 + brightGreen: 77.1 + brightYellow: 70.5 + brightBlue: 83.9 + brightMagenta: 70.5 + brightCyan: 77.1 + brightWhite: 105.5 diff --git a/themes/raisin.yaml b/themes/raisin.yaml new file mode 100644 index 00000000..43bb3c49 --- /dev/null +++ b/themes/raisin.yaml @@ -0,0 +1,53 @@ +name: "Raisin" +source: + marketplace_id: "HGlennon.raisin" + version: "1.0.6" + installs: 26 + rating: 0 + ratings: 0 + author: "HGlennon" + repo: "https://github.com/HGlennon/Raisin" + url: "https://marketplace.visualstudio.com/items?itemName=HGlennon.raisin" + formats: null +colors: + bg: "#171320" + fg: "#DEDEDE" + black: "#8C8C8C" + red: "#DD7373" + green: "#0FD287" + yellow: "#E5E510" + blue: "#468FDD" + magenta: "#BC3FBC" + cyan: "#12B9E2" + white: "#E5E5E5" + brightBlack: "#A1A1A1" + brightRed: "#F36D6D" + brightGreen: "#3BDE9D" + brightYellow: "#F5F543" + brightBlue: "#589EEE" + brightMagenta: "#DC84DC" + brightCyan: "#51C4E1" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 298 + pair: null + contrast: + fg: 85.8 + black: 39.8 + red: 43.3 + green: 63.9 + yellow: 85.8 + blue: 40 + magenta: 29.9 + cyan: 56.2 + white: 90.2 + brightBlack: 50.5 + brightRed: 46.2 + brightGreen: 71 + brightYellow: 95.8 + brightBlue: 47.6 + brightMagenta: 52.2 + brightCyan: 62.3 + brightWhite: 90.2 diff --git a/themes/raiyanplanet-theme--raiyanplanet-dark-knight.yaml b/themes/raiyanplanet-theme--raiyanplanet-dark-knight.yaml new file mode 100644 index 00000000..10c16a9d --- /dev/null +++ b/themes/raiyanplanet-theme--raiyanplanet-dark-knight.yaml @@ -0,0 +1,53 @@ +name: "Raiyanplanet Theme (RaiyanPlanet Dark Knight)" +source: + marketplace_id: "RaiyanPlanet.raiyanplanet-dark-theme" + version: "0.0.1" + installs: 99 + rating: 0 + ratings: 0 + author: "Raiyan Planet" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RaiyanPlanet.raiyanplanet-dark-theme" + formats: null +colors: + bg: "#11121B" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 60.3 + black: 0 + red: 50.3 + green: 73.2 + yellow: 63.1 + blue: 52.1 + magenta: 55.9 + cyan: 71.4 + white: 33 + brightBlack: 0 + brightRed: 50.3 + brightGreen: 73.2 + brightYellow: 63.1 + brightBlue: 52.1 + brightMagenta: 55.9 + brightCyan: 71.4 + brightWhite: 59.9 diff --git a/themes/raiyanplanet-theme--raiyanplanet-darkest.yaml b/themes/raiyanplanet-theme--raiyanplanet-darkest.yaml new file mode 100644 index 00000000..91f4250f --- /dev/null +++ b/themes/raiyanplanet-theme--raiyanplanet-darkest.yaml @@ -0,0 +1,53 @@ +name: "Raiyanplanet Theme (RaiyanPlanet Darkest)" +source: + marketplace_id: "RaiyanPlanet.raiyanplanet-dark-theme" + version: "0.0.1" + installs: 99 + rating: 0 + ratings: 0 + author: "Raiyan Planet" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RaiyanPlanet.raiyanplanet-dark-theme" + formats: null +colors: + bg: "#000000" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 60.9 + black: 0 + red: 50.9 + green: 73.8 + yellow: 63.7 + blue: 52.7 + magenta: 56.6 + cyan: 72.1 + white: 33.6 + brightBlack: 0 + brightRed: 50.9 + brightGreen: 73.8 + brightYellow: 63.7 + brightBlue: 52.7 + brightMagenta: 56.6 + brightCyan: 72.1 + brightWhite: 60.5 diff --git a/themes/raiyanplanet-theme--raiyanplanet-purple-world.yaml b/themes/raiyanplanet-theme--raiyanplanet-purple-world.yaml new file mode 100644 index 00000000..7697d4b8 --- /dev/null +++ b/themes/raiyanplanet-theme--raiyanplanet-purple-world.yaml @@ -0,0 +1,53 @@ +name: "Raiyanplanet Theme (RaiyanPlanet Purple World)" +source: + marketplace_id: "RaiyanPlanet.raiyanplanet-dark-theme" + version: "0.0.1" + installs: 99 + rating: 0 + ratings: 0 + author: "Raiyan Planet" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RaiyanPlanet.raiyanplanet-dark-theme" + formats: null +colors: + bg: "#121420" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 277 + pair: null + contrast: + fg: 71.6 + black: 26.6 + red: 44.2 + green: 66 + yellow: 79.1 + blue: 56.1 + magenta: 54 + cyan: 78.5 + white: 107.1 + brightBlack: 26.6 + brightRed: 44.2 + brightGreen: 84.4 + brightYellow: 79.1 + brightBlue: 56.1 + brightMagenta: 54 + brightCyan: 78.5 + brightWhite: 107.1 diff --git a/themes/ramazzotti.yaml b/themes/ramazzotti.yaml new file mode 100644 index 00000000..90ee92ef --- /dev/null +++ b/themes/ramazzotti.yaml @@ -0,0 +1,53 @@ +name: "ramazzotti" +source: + marketplace_id: "panquequelol.ramazzotti" + version: "2.2.0" + installs: 561 + rating: 0 + ratings: 0 + author: "panquequelol" + repo: "https://github.com/panquequelol/ramazzotti" + url: "https://marketplace.visualstudio.com/items?itemName=panquequelol.ramazzotti" + formats: null +colors: + bg: "#1C1B1A" + fg: "#BEC2CA" + black: "#6F7887" + red: "#E06C75" + green: "#9AC181" + yellow: "#D6C294" + blue: "#61AFEF" + magenta: "#CA90D0" + cyan: "#56B6C2" + white: "#BEC2CA" + brightBlack: "#6F7887" + brightRed: "#E06C75" + brightGreen: "#9AC181" + brightYellow: "#D6C294" + brightBlue: "#61AFEF" + brightMagenta: "#CA90D0" + brightCyan: "#56B6C2" + brightWhite: "#E3E5E8" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 68.2 + black: 29.3 + red: 41.6 + green: 61.3 + yellow: 69.3 + blue: 54.2 + magenta: 51.6 + cyan: 54.1 + white: 68.2 + brightBlack: 29.3 + brightRed: 41.6 + brightGreen: 61.3 + brightYellow: 69.3 + brightBlue: 54.2 + brightMagenta: 51.6 + brightCyan: 54.1 + brightWhite: 89.4 diff --git a/themes/ramos-theme.yaml b/themes/ramos-theme.yaml new file mode 100644 index 00000000..e83edc6c --- /dev/null +++ b/themes/ramos-theme.yaml @@ -0,0 +1,53 @@ +name: "ramos-theme" +source: + marketplace_id: "dgleyramos.dgleyramos" + version: "0.0.3" + installs: 141 + rating: 5 + ratings: 1 + author: "dgleyramos" + repo: "https://github.com/dgleyramos1/ramos-theme" + url: "https://marketplace.visualstudio.com/items?itemName=dgleyramos.dgleyramos" + formats: null +colors: + bg: "#1D1D2E" + fg: "#FFFFFF" + black: "#C72020" + red: "#961B1B" + green: "#28C086" + yellow: "#FFFF00" + blue: "#72AFF2" + magenta: "#DB10DB" + cyan: "#00CDFF" + white: "#2CFF00" + brightBlack: "#FF4242" + brightRed: "#FF3333" + brightGreen: "#1D9B68" + brightYellow: "#929204" + brightBlue: "#0B519F" + brightMagenta: "#8C128C" + brightCyan: "#10596B" + brightWhite: "#2BC275" +meta: + mode: "dark" + accent: "green" + hue: 284 + pair: null + contrast: + fg: 105.9 + black: 23 + red: 12.5 + green: 54.5 + yellow: 100.8 + blue: 54.9 + magenta: 33.8 + cyan: 65.7 + white: 84.8 + brightBlack: 39.4 + brightRed: 37.7 + brightGreen: 37.3 + brightYellow: 39.4 + brightBlue: 13.7 + brightMagenta: 13.6 + brightCyan: 13.2 + brightWhite: 55 diff --git a/themes/ramuda-pink-theme.yaml b/themes/ramuda-pink-theme.yaml new file mode 100644 index 00000000..1c9fe27f --- /dev/null +++ b/themes/ramuda-pink-theme.yaml @@ -0,0 +1,53 @@ +name: "Ramuda Pink Theme" +source: + marketplace_id: "RienZhang.theme-ramuda-pink-dark" + version: "1.0.0" + installs: 4827 + rating: 5 + ratings: 3 + author: "RienZhang" + repo: "https://github.com/fifthfir/Play" + url: "https://marketplace.visualstudio.com/items?itemName=RienZhang.theme-ramuda-pink-dark" + formats: null +colors: + bg: "#251C2C" + fg: "#FFF0F5" + black: "#000000" + red: "#FFA0BF" + green: "#55E3B1" + yellow: "#FBFF00" + blue: "#FF83BB" + magenta: "#FFADC8" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#7575F1" + brightRed: "#FF9CBD" + brightGreen: "#3AD900" + brightYellow: "#FFE100" + brightBlue: "#68FCE8" + brightMagenta: "#FB94FF" + brightCyan: "#F69FC9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 310 + pair: null + contrast: + fg: 98.3 + black: 0 + red: 64.4 + green: 73.7 + yellow: 100.1 + blue: 55.6 + magenta: 69.1 + cyan: 91.7 + white: 105.8 + brightBlack: 34.6 + brightRed: 63 + brightGreen: 65.2 + brightYellow: 86.6 + brightBlue: 89.3 + brightMagenta: 63.3 + brightCyan: 62.8 + brightWhite: 105.8 diff --git a/themes/random.yaml b/themes/random.yaml new file mode 100644 index 00000000..045d2d2b --- /dev/null +++ b/themes/random.yaml @@ -0,0 +1,53 @@ +name: "random" +source: + marketplace_id: "Tr3bbe.rdm-dark" + version: "0.0.1" + installs: 0 + rating: 0 + ratings: 0 + author: "Tr3bbe" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Tr3bbe.rdm-dark" + formats: null +colors: + bg: "#0A090D" + fg: "#FFEDC2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 96.8 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/ravora-tema.yaml b/themes/ravora-tema.yaml new file mode 100644 index 00000000..a09d9347 --- /dev/null +++ b/themes/ravora-tema.yaml @@ -0,0 +1,53 @@ +name: "Ravora Tema" +source: + marketplace_id: "Thazs-b.ravora-theme" + version: "0.0.6" + installs: 1823 + rating: 5 + ratings: 1 + author: "Thalles Benner" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Thazs-b.ravora-theme" + formats: null +colors: + bg: "#000421" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 263 + pair: null + contrast: + fg: 80.3 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/rawqdark--untitled.yaml b/themes/rawqdark--untitled.yaml new file mode 100644 index 00000000..8f8a00b6 --- /dev/null +++ b/themes/rawqdark--untitled.yaml @@ -0,0 +1,53 @@ +name: "rawqdark (Untitled)" +source: + marketplace_id: "Rawq.rawq-theme" + version: "13.0.0" + installs: 97 + rating: 0 + ratings: 0 + author: "Rawq" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Rawq.rawq-theme" + formats: null +colors: + bg: "#1F1F1F" + fg: "#C0BEBE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 65.7 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.5 + magenta: 28.8 + cyan: 46.6 + white: 89 + brightBlack: 21.1 + brightRed: 37.6 + brightGreen: 62.6 + brightYellow: 94.7 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/rb-s-robotic.yaml b/themes/rb-s-robotic.yaml new file mode 100644 index 00000000..d0bdf763 --- /dev/null +++ b/themes/rb-s-robotic.yaml @@ -0,0 +1,53 @@ +name: "RB's Robotic" +source: + marketplace_id: "TrexTheRobot.rb-color-theme" + version: "1.1.0" + installs: 44 + rating: 0 + ratings: 0 + author: "TrexTheRobot" + repo: "https://github.com/jamiej1212/vsColorTheme" + url: "https://marketplace.visualstudio.com/items?itemName=TrexTheRobot.rb-color-theme" + formats: null +colors: + bg: "#1D1D1D" + fg: "#D3D3D3" + black: "#000000" + red: "#B84646" + green: "#30B884" + yellow: "#D7D736" + blue: "#52749B" + magenta: "#AD50AD" + cyan: "#4F8C9B" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#BA5B5B" + brightGreen: "#5EE6AF" + brightYellow: "#F5D143" + brightBlue: "#7C9EC4" + brightMagenta: "#A961A9" + brightCyan: "#7CBFCF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 78.2 + black: 0 + red: 24.7 + green: 51.2 + yellow: 76.7 + blue: 26.4 + magenta: 28.3 + cyan: 34.8 + white: 89.3 + brightBlack: 21.3 + brightRed: 29.6 + brightGreen: 75.8 + brightYellow: 78.6 + brightBlue: 46.5 + brightMagenta: 31.1 + brightCyan: 60.6 + brightWhite: 89.3 diff --git a/themes/re-theme--re-dark.yaml b/themes/re-theme--re-dark.yaml new file mode 100644 index 00000000..d17ceb16 --- /dev/null +++ b/themes/re-theme--re-dark.yaml @@ -0,0 +1,53 @@ +name: "re:Theme (re:Dark)" +source: + marketplace_id: "Cydo.re-theme" + version: "3.0.0" + installs: 696 + rating: 0 + ratings: 0 + author: "Cydo" + repo: "https://github.com/CydoEntis/reThemes" + url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" + formats: null +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#D30700" + green: "#92C202" + yellow: "#CAAC00" + blue: "#429AFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#2C2C2C" + brightRed: "#FF0800" + brightGreen: "#CAFF29" + brightYellow: "#FBFF00" + brightBlue: "#85BEFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 24.6 + green: 58.9 + yellow: 56.2 + blue: 44.9 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 0 + brightRed: 35.3 + brightGreen: 93.8 + brightYellow: 99.9 + brightBlue: 63 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/re-theme.yaml b/themes/re-theme.yaml new file mode 100644 index 00000000..a1172ec0 --- /dev/null +++ b/themes/re-theme.yaml @@ -0,0 +1,53 @@ +name: "re:Theme" +source: + marketplace_id: "Cydo.re-theme" + version: "3.0.0" + installs: 696 + rating: 0 + ratings: 0 + author: "Cydo" + repo: "https://github.com/CydoEntis/reThemes" + url: "https://marketplace.visualstudio.com/items?itemName=Cydo.re-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#1E1E1E" + red: "#CC241D" + green: "#87AD72" + yellow: "#CEA800" + blue: "#569CD6" + magenta: "#D8A0DF" + cyan: "#4CE2E2" + white: "#EEEEEE" + brightBlack: "#131313" + brightRed: "#FB4934" + brightGreen: "#B5CEA8" + brightYellow: "#FFD700" + brightBlue: "#7ABCF3" + brightMagenta: "#F0C2F7" + brightCyan: "#9FFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 24.4 + green: 50.3 + yellow: 55.6 + blue: 44.2 + magenta: 59.5 + cyan: 75.2 + white: 94.9 + brightBlack: 0 + brightRed: 39.3 + brightGreen: 70.6 + brightYellow: 82.4 + brightBlue: 61 + brightMagenta: 77 + brightCyan: 95.5 + brightWhite: 106 diff --git a/themes/react-theme-m.yaml b/themes/react-theme-m.yaml new file mode 100644 index 00000000..27697fd3 --- /dev/null +++ b/themes/react-theme-m.yaml @@ -0,0 +1,53 @@ +name: "React Theme (M" +source: + marketplace_id: "MamoruDS.react-theme-vscode" + version: "1.4.5" + installs: 3450 + rating: 0 + ratings: 0 + author: "Mamoru" + repo: "https://github.com/MamoruDS/react-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=MamoruDS.react-theme-vscode" + formats: null +colors: + bg: "#23272E" + fg: "#F8F8F2" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 262 + pair: null + contrast: + fg: 99.8 + black: 0 + red: 41.2 + green: 82.7 + yellow: 96.3 + blue: 51.4 + magenta: 52.4 + cyan: 81.7 + white: 99.8 + brightBlack: 25.8 + brightRed: 46.6 + brightGreen: 86.8 + brightYellow: 101.3 + brightBlue: 63.9 + brightMagenta: 60.4 + brightCyan: 94.6 + brightWhite: 104.7 diff --git a/themes/reactlyfi-discord-js.yaml b/themes/reactlyfi-discord-js.yaml new file mode 100644 index 00000000..b05210f7 --- /dev/null +++ b/themes/reactlyfi-discord-js.yaml @@ -0,0 +1,53 @@ +name: "Reactlyfi - Discord.js" +source: + marketplace_id: "CTBotsOfficial.cptrico" + version: "0.0.6" + installs: 2319 + rating: 0 + ratings: 0 + author: "CT Bots Official" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=CTBotsOfficial.cptrico" + formats: null +colors: + bg: "#292C3E" + fg: "#ADADAD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + pair: null + contrast: + fg: 53.4 + black: 0 + red: 23.3 + green: 49.5 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.6 diff --git a/themes/red-group-s-themes.yaml b/themes/red-group-s-themes.yaml new file mode 100644 index 00000000..9b95d552 --- /dev/null +++ b/themes/red-group-s-themes.yaml @@ -0,0 +1,53 @@ +name: "RED Group's themes" +source: + marketplace_id: "htmllessonsru.red-group-themes" + version: "0.0.7" + installs: 6442 + rating: 4.08 + ratings: 13 + author: "htmllessons_io" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=htmllessonsru.red-group-themes" + formats: null +colors: + bg: "#1D1D1D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.8 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/red-riptide-theme-dark--dark.yaml b/themes/red-riptide-theme-dark--dark.yaml new file mode 100644 index 00000000..5cf4309c --- /dev/null +++ b/themes/red-riptide-theme-dark--dark.yaml @@ -0,0 +1,53 @@ +name: "Red Riptide Theme Dark (dark)" +source: + marketplace_id: "Riptide.red-riptide-theme-dark" + version: "0.1.0" + installs: 1546 + rating: 5 + ratings: 1 + author: "Riptide" + repo: "https://github.com/red-riptide/red-riptide-theme-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Riptide.red-riptide-theme-dark" + formats: null +colors: + bg: "#151516" + fg: "#ABABAB" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 56 + black: 9 + red: 36.9 + green: 60.5 + yellow: 48.8 + blue: 49.8 + magenta: 39.2 + cyan: 52.7 + white: 90.8 + brightBlack: 15.6 + brightRed: 46.3 + brightGreen: 77 + brightYellow: 61.4 + brightBlue: 63.9 + brightMagenta: 50.4 + brightCyan: 68 + brightWhite: 107.1 diff --git a/themes/red-riptide-theme-dark--gray.yaml b/themes/red-riptide-theme-dark--gray.yaml new file mode 100644 index 00000000..8ecf24d8 --- /dev/null +++ b/themes/red-riptide-theme-dark--gray.yaml @@ -0,0 +1,53 @@ +name: "Red Riptide Theme Dark (gray)" +source: + marketplace_id: "Riptide.red-riptide-theme-dark" + version: "0.1.0" + installs: 1546 + rating: 5 + ratings: 1 + author: "Riptide" + repo: "https://github.com/red-riptide/red-riptide-theme-dark" + url: "https://marketplace.visualstudio.com/items?itemName=Riptide.red-riptide-theme-dark" + formats: null +colors: + bg: "#202020" + fg: "#ABABAB" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#E6E6E6" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 54.7 + black: 7.7 + red: 35.6 + green: 59.2 + yellow: 47.5 + blue: 48.5 + magenta: 37.9 + cyan: 51.4 + white: 89.5 + brightBlack: 14.3 + brightRed: 45 + brightGreen: 75.7 + brightYellow: 60.1 + brightBlue: 62.6 + brightMagenta: 49.1 + brightCyan: 66.7 + brightWhite: 105.8 diff --git a/themes/red-vintage-theme.yaml b/themes/red-vintage-theme.yaml new file mode 100644 index 00000000..7bd8f829 --- /dev/null +++ b/themes/red-vintage-theme.yaml @@ -0,0 +1,53 @@ +name: "Red Vintage Theme" +source: + marketplace_id: "Crnobog.red-vintage-theme" + version: "0.0.2" + installs: 142 + rating: 0 + ratings: 0 + author: "Crnobog" + repo: "https://github.com/crnobog69/red-vintage" + url: "https://marketplace.visualstudio.com/items?itemName=Crnobog.red-vintage-theme" + formats: null +colors: + bg: "#1C1414" + fg: "#D4C7B9" + black: "#1C1414" + red: "#A13C32" + green: "#8C7C60" + yellow: "#C9A554" + blue: "#5C5088" + magenta: "#976983" + cyan: "#807C99" + white: "#D4C7B9" + brightBlack: "#8A7570" + brightRed: "#D4827C" + brightGreen: "#B0A68D" + brightYellow: "#E6CC94" + brightBlue: "#9590B3" + brightMagenta: "#C498B3" + brightCyan: "#B0ACC9" + brightWhite: "#E9D9C9" +meta: + mode: "dark" + accent: "orange" + hue: 18 + pair: null + contrast: + fg: 72.9 + black: 0 + red: 19.3 + green: 32.9 + yellow: 55.2 + blue: 16.5 + magenta: 29.6 + cyan: 33.5 + white: 72.9 + brightBlack: 30.8 + brightRed: 46 + brightGreen: 53.5 + brightYellow: 76.4 + brightBlue: 43.7 + brightMagenta: 52.5 + brightCyan: 58.2 + brightWhite: 84.1 diff --git a/themes/reddit-dark-theme-unofficial.yaml b/themes/reddit-dark-theme-unofficial.yaml new file mode 100644 index 00000000..2253e19f --- /dev/null +++ b/themes/reddit-dark-theme-unofficial.yaml @@ -0,0 +1,53 @@ +name: "Reddit-Dark-Theme-Unofficial" +source: + marketplace_id: "IntoCode.reddit-dark-theme-unofficial" + version: "2.6.0" + installs: 209 + rating: 0 + ratings: 0 + author: "IntoCode" + repo: "https://github.com/Justin-Diner/reddit_dark_based_vscode_theme" + url: "https://marketplace.visualstudio.com/items?itemName=IntoCode.reddit-dark-theme-unofficial" + formats: null +colors: + bg: "#1A1A1B" + fg: "#D7DADC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E1E1E1" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E1E1E1" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 82.5 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 87.2 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45 + brightCyan: 55.1 + brightWhite: 87.2 diff --git a/themes/reddragons.yaml b/themes/reddragons.yaml new file mode 100644 index 00000000..cbd5b929 --- /dev/null +++ b/themes/reddragons.yaml @@ -0,0 +1,53 @@ +name: "RedDragonS" +source: + marketplace_id: "RedDragonext.redofdragons" + version: "0.0.1" + installs: 39 + rating: 0 + ratings: 0 + author: "RedDragonext" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RedDragonext.redofdragons" + formats: null +colors: + bg: "#191919" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C0C0C0" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.3 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 67.4 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/reduc-c-dracula-theme--c-dracula.yaml b/themes/reduc-c-dracula-theme--c-dracula.yaml new file mode 100644 index 00000000..295943c9 --- /dev/null +++ b/themes/reduc-c-dracula-theme--c-dracula.yaml @@ -0,0 +1,53 @@ +name: "rEduc/C# Dracula Theme (C# Dracula)" +source: + marketplace_id: "Gabrieldp-dev.reduc-csharp-dracula" + version: "1.0.2" + installs: 9013 + rating: 5 + ratings: 2 + author: "Gabriel-dp" + repo: "https://github.com/gabrieldp23/sBotics_Snippets_vscode" + url: "https://marketplace.visualstudio.com/items?itemName=Gabrieldp-dev.reduc-csharp-dracula" + formats: null +colors: + bg: "#282A36" + fg: "#F8F8F2" + black: "#252732" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: null + contrast: + fg: 99 + black: 0 + red: 40.4 + green: 81.9 + yellow: 95.6 + blue: 50.7 + magenta: 51.6 + cyan: 81 + white: 99 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/relaxed-theme-semantic-focus--relaxed-theme-dark-focus.yaml b/themes/relaxed-theme-semantic-focus--relaxed-theme-dark-focus.yaml new file mode 100644 index 00000000..035dca7b --- /dev/null +++ b/themes/relaxed-theme-semantic-focus--relaxed-theme-dark-focus.yaml @@ -0,0 +1,53 @@ +name: "Relaxed Theme - Semantic Focus (Relaxed Theme - Dark Focus)" +source: + marketplace_id: "nomad-in-code.relaxed-theme-semantic-focus" + version: "0.0.13" + installs: 142 + rating: 0 + ratings: 0 + author: "nomad-in-code" + repo: "https://github.com/chaluvadis/relax-theme-semantic-focus" + url: "https://marketplace.visualstudio.com/items?itemName=nomad-in-code.relaxed-theme-semantic-focus" + formats: null +colors: + bg: "#2B2F34" + fg: "#DDE1E6" + black: "#151515" + red: "#C4776F" + green: "#8FAE6B" + yellow: "#D7C27E" + blue: "#85A7BF" + magenta: "#A47AA7" + cyan: "#B9D3EA" + white: "#DDE1E6" + brightBlack: "#8A8F98" + brightRed: "#C4776F" + brightGreen: "#8FAE6B" + brightYellow: "#D7C27E" + brightBlue: "#85A7BF" + brightMagenta: "#A47AA7" + brightCyan: "#B9D3EA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 254 + pair: null + contrast: + fg: 83.4 + black: 0 + red: 35.9 + green: 48.3 + yellow: 65.6 + blue: 47.4 + magenta: 33.9 + cyan: 73.1 + white: 83.4 + brightBlack: 37.1 + brightRed: 35.9 + brightGreen: 48.3 + brightYellow: 65.6 + brightBlue: 47.4 + brightMagenta: 33.9 + brightCyan: 73.1 + brightWhite: 103.1 diff --git a/themes/relaxed-theme-semantic-focus--relaxed-theme-day-light.yaml b/themes/relaxed-theme-semantic-focus--relaxed-theme-day-light.yaml new file mode 100644 index 00000000..f97fc530 --- /dev/null +++ b/themes/relaxed-theme-semantic-focus--relaxed-theme-day-light.yaml @@ -0,0 +1,53 @@ +name: "Relaxed Theme - Semantic Focus (Relaxed Theme - Day Light)" +source: + marketplace_id: "nomad-in-code.relaxed-theme-semantic-focus" + version: "0.0.13" + installs: 142 + rating: 0 + ratings: 0 + author: "nomad-in-code" + repo: "https://github.com/chaluvadis/relax-theme-semantic-focus" + url: "https://marketplace.visualstudio.com/items?itemName=nomad-in-code.relaxed-theme-semantic-focus" + formats: null +colors: + bg: "#F3F4F6" + fg: "#2A2F37" + black: "#4A4A4A" + red: "#B03E34" + green: "#4B7D53" + yellow: "#8B6F2E" + blue: "#2F6D86" + magenta: "#7A4F7F" + cyan: "#3F5F8F" + white: "#2A2F37" + brightBlack: "#9B9FA5" + brightRed: "#C36E67" + brightGreen: "#789E7E" + brightYellow: "#A89362" + brightBlue: "#6391A4" + brightMagenta: "#9B7B9F" + brightCyan: "#6F87AB" + brightWhite: "#5F6369" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 93.3 + black: 83.7 + red: 71.8 + green: 66.7 + yellow: 66.3 + blue: 72 + magenta: 75.3 + cyan: 75.4 + white: 93.3 + brightBlack: 45.2 + brightRed: 57.2 + brightGreen: 50.1 + brightYellow: 50 + brightBlue: 55.2 + brightMagenta: 57.6 + brightCyan: 57.6 + brightWhite: 73.6 diff --git a/themes/relaxed-theme-semantic-focus--relaxed-theme-night-warm.yaml b/themes/relaxed-theme-semantic-focus--relaxed-theme-night-warm.yaml new file mode 100644 index 00000000..9507b667 --- /dev/null +++ b/themes/relaxed-theme-semantic-focus--relaxed-theme-night-warm.yaml @@ -0,0 +1,53 @@ +name: "Relaxed Theme - Semantic Focus (Relaxed Theme - Night Warm)" +source: + marketplace_id: "nomad-in-code.relaxed-theme-semantic-focus" + version: "0.0.13" + installs: 142 + rating: 0 + ratings: 0 + author: "nomad-in-code" + repo: "https://github.com/chaluvadis/relax-theme-semantic-focus" + url: "https://marketplace.visualstudio.com/items?itemName=nomad-in-code.relaxed-theme-semantic-focus" + formats: null +colors: + bg: "#2F3336" + fg: "#E3E0DC" + black: "#151515" + red: "#CE6F65" + green: "#95AD63" + yellow: "#D6B56F" + blue: "#8FA0A0" + magenta: "#A6789F" + cyan: "#C7D4E2" + white: "#E3E0DC" + brightBlack: "#908A82" + brightRed: "#CE6F65" + brightGreen: "#95AD63" + brightYellow: "#D6B56F" + brightBlue: "#8FA0A0" + brightMagenta: "#A6789F" + brightCyan: "#C7D4E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 82.4 + black: 0 + red: 34.3 + green: 47.4 + yellow: 59 + blue: 43.4 + magenta: 32.3 + cyan: 73.8 + white: 82.4 + brightBlack: 34.3 + brightRed: 34.3 + brightGreen: 47.4 + brightYellow: 59 + brightBlue: 43.4 + brightMagenta: 32.3 + brightCyan: 73.8 + brightWhite: 102.2 diff --git a/themes/relaxed.yaml b/themes/relaxed.yaml new file mode 100644 index 00000000..e2bb6655 --- /dev/null +++ b/themes/relaxed.yaml @@ -0,0 +1,53 @@ +name: "Relaxed" +source: + marketplace_id: "mischah.relaxed-theme" + version: "1.0.5" + installs: 31472 + rating: 5 + ratings: 9 + author: "Michael Kühnel" + repo: "https://github.com/Relaxed-Theme/vscode-theme-releaxed" + url: "https://marketplace.visualstudio.com/items?itemName=mischah.relaxed-theme" + formats: null +colors: + bg: "#2E333B" + fg: "#D9D9D9" + black: "#151515" + red: "#BC5653" + green: "#909D63" + yellow: "#EBC17A" + blue: "#6A8799" + magenta: "#B06698" + cyan: "#C9DFFF" + white: "#D9D9D9" + brightBlack: "#636363" + brightRed: "#BC5653" + brightGreen: "#A0AC77" + brightYellow: "#EBC17A" + brightBlue: "#7EAAC7" + brightMagenta: "#B48EAD" + brightCyan: "#ACBBD0" + brightWhite: "#F7F7F7" +meta: + mode: "dark" + accent: "orange" + hue: 260 + pair: null + contrast: + fg: 77.8 + black: 0 + red: 24.7 + green: 40.4 + yellow: 67.1 + blue: 30.5 + magenta: 28.5 + cyan: 80.4 + white: 77.8 + brightBlack: 16 + brightRed: 24.7 + brightGreen: 48.5 + brightYellow: 67.1 + brightBlue: 47.5 + brightMagenta: 41.7 + brightCyan: 59.2 + brightWhite: 96.8 diff --git a/themes/remedy-remedy-bright-tilted.yaml b/themes/remedy-remedy-bright-tilted.yaml new file mode 100644 index 00000000..a25d8c16 --- /dev/null +++ b/themes/remedy-remedy-bright-tilted.yaml @@ -0,0 +1,54 @@ +name: "Remedy (Remedy - Bright (Tilted))" +source: + marketplace_id: "robertrossmann.remedy" + version: "5.28.0" + installs: 66579 + rating: 4.62 + ratings: 13 + author: "Robert Rossmann" + repo: "https://github.com/robertrossmann/vscode-remedy" + url: "https://marketplace.visualstudio.com/items?itemName=robertrossmann.remedy" + formats: + iterm2: "https://raw.githubusercontent.com/robertrossmann/vscode-remedy/master/resources/iTerm2/Remedy - Bright.itermcolors" +colors: + bg: "#FEF8EB" + fg: "#563D0E" + black: "#282A2E" + red: "#A54242" + green: "#8C9440" + yellow: "#DE935F" + blue: "#5F819D" + magenta: "#85678F" + cyan: "#5E8D87" + white: "#707880" + brightBlack: "#9CA19E" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#D79A22" + brightBlue: "#81A2BE" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#535961" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: "Remedy (Remedy - Dark (Tilted))" + contrast: + fg: 89.5 + black: 97.2 + red: 75.7 + green: 56 + yellow: 44.7 + blue: 64.2 + magenta: 69.6 + cyan: 60.8 + white: 67.2 + brightBlack: 47.2 + brightRed: 60.3 + brightGreen: 35 + brightYellow: 44.2 + brightBlue: 48 + brightMagenta: 48 + brightCyan: 36.5 + brightWhite: 80.6 diff --git a/themes/remedy-remedy-dark-tilted.yaml b/themes/remedy-remedy-dark-tilted.yaml new file mode 100644 index 00000000..d110b698 --- /dev/null +++ b/themes/remedy-remedy-dark-tilted.yaml @@ -0,0 +1,54 @@ +name: "Remedy (Remedy - Dark (Tilted))" +source: + marketplace_id: "robertrossmann.remedy" + version: "5.28.0" + installs: 66579 + rating: 4.62 + ratings: 13 + author: "Robert Rossmann" + repo: "https://github.com/robertrossmann/vscode-remedy" + url: "https://marketplace.visualstudio.com/items?itemName=robertrossmann.remedy" + formats: + iterm2: "https://raw.githubusercontent.com/robertrossmann/vscode-remedy/master/resources/iTerm2/Remedy - Bright.itermcolors" +colors: + bg: "#3F3433" + fg: "#F7E0B4" + black: "#282A2E" + red: "#A54242" + green: "#8C9440" + yellow: "#DE935F" + blue: "#5F819D" + magenta: "#85678F" + cyan: "#5E8D87" + white: "#707880" + brightBlack: "#535961" + brightRed: "#CC6666" + brightGreen: "#B5BD68" + brightYellow: "#F0C674" + brightBlue: "#81A2BE" + brightMagenta: "#B294BB" + brightCyan: "#8ABEB7" + brightWhite: "#EEEFEE" +meta: + mode: "dark" + accent: "orange" + hue: 24 + pair: "Remedy (Remedy - Bright (Tilted))" + contrast: + fg: 82.6 + black: 0 + red: 15.3 + green: 34.9 + yellow: 46.5 + blue: 26.6 + magenta: 21.3 + cyan: 30 + white: 23.7 + brightBlack: 10.6 + brightRed: 30.6 + brightGreen: 56.5 + brightYellow: 68.7 + brightBlue: 43 + brightMagenta: 43 + brightCyan: 55 + brightWhite: 90.4 diff --git a/themes/repl-it-theme.yaml b/themes/repl-it-theme.yaml new file mode 100644 index 00000000..3a414a1a --- /dev/null +++ b/themes/repl-it-theme.yaml @@ -0,0 +1,53 @@ +name: "Repl.it Theme" +source: + marketplace_id: "manigandancodes.repl-it-theme" + version: "0.4.0" + installs: 7624 + rating: 5 + ratings: 2 + author: "Manigandan Saravanan" + repo: "https://github.com/manigandancodes/repl.it-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=manigandancodes.repl-it-theme" + formats: null +colors: + bg: "#111B31" + fg: "#D6DEEB" + black: "#011627" + red: "#EF5350" + green: "#22DA6E" + yellow: "#ADDB67" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 265 + pair: null + contrast: + fg: 84.6 + black: 0 + red: 38.7 + green: 66.7 + yellow: 74.4 + blue: 55.4 + magenta: 53.2 + cyan: 59.1 + white: 106.3 + brightBlack: 15 + brightRed: 38.7 + brightGreen: 66.7 + brightYellow: 93.1 + brightBlue: 55.4 + brightMagenta: 53.2 + brightCyan: 73.4 + brightWhite: 106.3 diff --git a/themes/resknow.yaml b/themes/resknow.yaml new file mode 100644 index 00000000..f85846df --- /dev/null +++ b/themes/resknow.yaml @@ -0,0 +1,53 @@ +name: "resknow" +source: + marketplace_id: "Resknow.resknow" + version: "0.0.4" + installs: 21 + rating: 0 + ratings: 0 + author: "Resknow" + repo: "https://github.com/resknow/resknow-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Resknow.resknow" + formats: null +colors: + bg: "#020617" + fg: "#E2E8F0" + black: "#020617" + red: "#DC3657" + green: "#23D18B" + yellow: "#FFC368" + blue: "#2B7ECA" + magenta: "#AD5DCA" + cyan: "#24C0CF" + white: "#E2E8F0" + brightBlack: "#64748B" + brightRed: "#F4587E" + brightGreen: "#5DE9C1" + brightYellow: "#FEDFCA" + brightBlue: "#EA2E85" + brightMagenta: "#CC75F4" + brightCyan: "#EF5E9C" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "red" + hue: 265 + pair: null + contrast: + fg: 92.4 + black: 0 + red: 32 + green: 64.4 + yellow: 76.5 + blue: 32.6 + magenta: 34.3 + cyan: 59.1 + white: 92.4 + brightBlack: 28.5 + brightRed: 43.3 + brightGreen: 79.5 + brightYellow: 90.7 + brightBlue: 35.8 + brightMagenta: 47.8 + brightCyan: 44.3 + brightWhite: 104.5 diff --git a/themes/retro-green-theme.yaml b/themes/retro-green-theme.yaml new file mode 100644 index 00000000..f3ce5239 --- /dev/null +++ b/themes/retro-green-theme.yaml @@ -0,0 +1,53 @@ +name: "Retro Green Theme" +source: + marketplace_id: "LelinPadhan.retro-green-theme-vscode" + version: "1.1.6" + installs: 5489 + rating: 5 + ratings: 4 + author: "Lelin Padhan" + repo: "https://github.com/Lelin07/retro-green-theme" + url: "https://marketplace.visualstudio.com/items?itemName=LelinPadhan.retro-green-theme-vscode" + formats: null +colors: + bg: "#121610" + fg: "#46D999" + black: "#46D999" + red: "#9BFEDA" + green: "#46D999" + yellow: "#9BFEDA" + blue: "#46D999" + magenta: "#46D999" + cyan: "#46D999" + white: "#46D999" + brightBlack: "#46D999" + brightRed: "#9BFEDA" + brightGreen: "#23D18B" + brightYellow: "#9BFEDA" + brightBlue: "#46D999" + brightMagenta: "#46D999" + brightCyan: "#46D999" + brightWhite: "#46D999" +meta: + mode: "dark" + accent: "teal" + hue: 135 + pair: null + contrast: + fg: 68.7 + black: 68.7 + red: 94.1 + green: 68.7 + yellow: 94.1 + blue: 68.7 + magenta: 68.7 + cyan: 68.7 + white: 68.7 + brightBlack: 68.7 + brightRed: 94.1 + brightGreen: 63.7 + brightYellow: 94.1 + brightBlue: 68.7 + brightMagenta: 68.7 + brightCyan: 68.7 + brightWhite: 68.7 diff --git a/themes/retro-hacker-theme--retro-hacker-amber.yaml b/themes/retro-hacker-theme--retro-hacker-amber.yaml new file mode 100644 index 00000000..9590d8a4 --- /dev/null +++ b/themes/retro-hacker-theme--retro-hacker-amber.yaml @@ -0,0 +1,53 @@ +name: "Retro Hacker Theme (Retro Hacker Amber)" +source: + marketplace_id: "devxi.retro-hacker-theme" + version: "1.3.0" + installs: 4296 + rating: 5 + ratings: 2 + author: "devxi" + repo: "https://github.com/elmersh/retro-hacker-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" + formats: null +colors: + bg: "#1A1006" + fg: "#FFB000" + black: "#000000" + red: "#FF0000" + green: "#FF9D00" + yellow: "#E99F17" + blue: "#87CEEB" + magenta: "#DDA0DD" + cyan: "#00CED1" + white: "#FFE0D0" + brightBlack: "#3A2B1A" + brightRed: "#FF4444" + brightGreen: "#FFB000" + brightYellow: "#FFFF00" + brightBlue: "#ADD8E6" + brightMagenta: "#EE82EE" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 67 + pair: null + contrast: + fg: 68 + black: 0 + red: 36.9 + green: 61.4 + yellow: 58 + blue: 70.5 + magenta: 61.4 + cyan: 65 + white: 91.1 + brightBlack: 0 + brightRed: 41 + brightGreen: 68 + brightYellow: 102.1 + brightBlue: 78.1 + brightMagenta: 56.2 + brightCyan: 91.6 + brightWhite: 107.3 diff --git a/themes/retro-hacker-theme--retro-hacker-blue.yaml b/themes/retro-hacker-theme--retro-hacker-blue.yaml new file mode 100644 index 00000000..b10ae910 --- /dev/null +++ b/themes/retro-hacker-theme--retro-hacker-blue.yaml @@ -0,0 +1,53 @@ +name: "Retro Hacker Theme (Retro Hacker Blue)" +source: + marketplace_id: "devxi.retro-hacker-theme" + version: "1.3.0" + installs: 4296 + rating: 5 + ratings: 2 + author: "devxi" + repo: "https://github.com/elmersh/retro-hacker-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" + formats: null +colors: + bg: "#010111" + fg: "#5EAFFF" + black: "#000000" + red: "#FF5A5A" + green: "#4682B4" + yellow: "#FFD700" + blue: "#3B85D8" + magenta: "#8A5EC0" + cyan: "#00CED1" + white: "#E0EEFF" + brightBlack: "#1A1A1A" + brightRed: "#FF8080" + brightGreen: "#6CB8F0" + brightYellow: "#FFFF00" + brightBlue: "#5EAFFF" + brightMagenta: "#B07CFF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 272 + pair: null + contrast: + fg: 56.5 + black: 0 + red: 45.3 + green: 33.6 + yellow: 84.2 + blue: 36.5 + magenta: 29.1 + cyan: 65.5 + white: 95.7 + brightBlack: 0 + brightRed: 54.7 + brightGreen: 60.1 + brightYellow: 102.7 + brightBlue: 56.5 + brightMagenta: 46.3 + brightCyan: 92.1 + brightWhite: 107.8 diff --git a/themes/retro-hacker-theme--retro-hacker-green-subtle.yaml b/themes/retro-hacker-theme--retro-hacker-green-subtle.yaml new file mode 100644 index 00000000..10355cb1 --- /dev/null +++ b/themes/retro-hacker-theme--retro-hacker-green-subtle.yaml @@ -0,0 +1,53 @@ +name: "Retro Hacker Theme (Retro Hacker Green - Subtle)" +source: + marketplace_id: "devxi.retro-hacker-theme" + version: "1.3.0" + installs: 4296 + rating: 5 + ratings: 2 + author: "devxi" + repo: "https://github.com/elmersh/retro-hacker-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" + formats: null +colors: + bg: "#000000" + fg: "#00FF41" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFD700" + blue: "#7FFF00" + magenta: "#AAFF00" + cyan: "#7FFF00" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF3333" + brightGreen: "#00FF41" + brightYellow: "#FFFF00" + brightBlue: "#AAFF00" + brightMagenta: "#FFD700" + brightCyan: "#AAFF00" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 86.7 + black: 0 + red: 37.5 + green: 86.5 + yellow: 84.3 + blue: 89.7 + magenta: 92.8 + cyan: 89.7 + white: 75.7 + brightBlack: 0 + brightRed: 39.6 + brightGreen: 86.7 + brightYellow: 102.7 + brightBlue: 92.8 + brightMagenta: 84.3 + brightCyan: 92.8 + brightWhite: 107.9 diff --git a/themes/retro-hacker-theme--retro-hacker-green.yaml b/themes/retro-hacker-theme--retro-hacker-green.yaml new file mode 100644 index 00000000..ca769362 --- /dev/null +++ b/themes/retro-hacker-theme--retro-hacker-green.yaml @@ -0,0 +1,53 @@ +name: "Retro Hacker Theme (Retro Hacker Green)" +source: + marketplace_id: "devxi.retro-hacker-theme" + version: "1.3.0" + installs: 4296 + rating: 5 + ratings: 2 + author: "devxi" + repo: "https://github.com/elmersh/retro-hacker-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" + formats: null +colors: + bg: "#000100" + fg: "#FFD700" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFD700" + blue: "#66FF66" + magenta: "#AAFF00" + cyan: "#5AFF31" + white: "#E0FFE0" + brightBlack: "#1A1A1A" + brightRed: "#FF4444" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#AAFF00" + brightMagenta: "#FFD700" + brightCyan: "#AEEE00" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 142 + pair: null + contrast: + fg: 84.3 + black: 0 + red: 37.5 + green: 86.5 + yellow: 84.3 + blue: 89 + magenta: 92.8 + cyan: 88 + white: 102.4 + brightBlack: 0 + brightRed: 41.6 + brightGreen: 86.5 + brightYellow: 102.7 + brightBlue: 92.8 + brightMagenta: 84.3 + brightCyan: 84.5 + brightWhite: 107.9 diff --git a/themes/retro-hacker-theme--retro-hacker-magenta.yaml b/themes/retro-hacker-theme--retro-hacker-magenta.yaml new file mode 100644 index 00000000..0486e0d1 --- /dev/null +++ b/themes/retro-hacker-theme--retro-hacker-magenta.yaml @@ -0,0 +1,53 @@ +name: "Retro Hacker Theme (Retro Hacker Magenta)" +source: + marketplace_id: "devxi.retro-hacker-theme" + version: "1.3.0" + installs: 4296 + rating: 5 + ratings: 2 + author: "devxi" + repo: "https://github.com/elmersh/retro-hacker-theme" + url: "https://marketplace.visualstudio.com/items?itemName=devxi.retro-hacker-theme" + formats: null +colors: + bg: "#000000" + fg: "#FF00FF" + black: "#000000" + red: "#FF0000" + green: "#FF00FF" + yellow: "#FF69B4" + blue: "#FF1493" + magenta: "#FF69B4" + cyan: "#FF1493" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF3333" + brightGreen: "#FF00FF" + brightYellow: "#FFAADD" + brightBlue: "#FF69B4" + brightMagenta: "#FFAADD" + brightCyan: "#FF69B4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 46.2 + black: 0 + red: 37.5 + green: 46.2 + yellow: 51.1 + blue: 40.1 + magenta: 51.1 + cyan: 40.1 + white: 75.7 + brightBlack: 0 + brightRed: 39.6 + brightGreen: 46.2 + brightYellow: 71.2 + brightBlue: 51.1 + brightMagenta: 71.2 + brightCyan: 51.1 + brightWhite: 107.9 diff --git a/themes/retro-keyboard-theme--retro-keyboard-dark.yaml b/themes/retro-keyboard-theme--retro-keyboard-dark.yaml new file mode 100644 index 00000000..e4aea0f2 --- /dev/null +++ b/themes/retro-keyboard-theme--retro-keyboard-dark.yaml @@ -0,0 +1,53 @@ +name: "Retro Keyboard Theme (Retro Keyboard Dark)" +source: + marketplace_id: "nicolasmengual.retro-keyboard-theme" + version: "1.1.2" + installs: 66 + rating: 5 + ratings: 2 + author: "Nicolás Mengual" + repo: "https://github.com/nmengual/retro-keyboard-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nicolasmengual.retro-keyboard-theme" + formats: null +colors: + bg: "#2A2520" + fg: "#EDE4D6" + black: "#2A2520" + red: "#E06060" + green: "#8BBF9C" + yellow: "#E8C060" + blue: "#8AAEC4" + magenta: "#B89ED6" + cyan: "#88CCC0" + white: "#EDE4D6" + brightBlack: "#8A7E6E" + brightRed: "#F07878" + brightGreen: "#A8D4B4" + brightYellow: "#F0D478" + brightBlue: "#A8C8DC" + brightMagenta: "#D0B8E8" + brightCyan: "#A0DCD4" + brightWhite: "#F5F0E8" +meta: + mode: "dark" + accent: "orange" + hue: 67 + pair: null + contrast: + fg: 88 + black: 0 + red: 36.8 + green: 58.3 + yellow: 68.5 + blue: 52.7 + magenta: 52.5 + cyan: 65.2 + white: 88 + brightBlack: 31.5 + brightRed: 46.3 + brightGreen: 71.1 + brightYellow: 78.5 + brightBlue: 67.5 + brightMagenta: 66.4 + brightCyan: 75.4 + brightWhite: 95.3 diff --git a/themes/retro-keyboard-theme--retro-keyboard-light.yaml b/themes/retro-keyboard-theme--retro-keyboard-light.yaml new file mode 100644 index 00000000..65ff3e0b --- /dev/null +++ b/themes/retro-keyboard-theme--retro-keyboard-light.yaml @@ -0,0 +1,53 @@ +name: "Retro Keyboard Theme (Retro Keyboard Light)" +source: + marketplace_id: "nicolasmengual.retro-keyboard-theme" + version: "1.1.2" + installs: 66 + rating: 5 + ratings: 2 + author: "Nicolás Mengual" + repo: "https://github.com/nmengual/retro-keyboard-theme" + url: "https://marketplace.visualstudio.com/items?itemName=nicolasmengual.retro-keyboard-theme" + formats: null +colors: + bg: "#F5F0E8" + fg: "#3D3529" + black: "#3D3529" + red: "#C04040" + green: "#3E8A5E" + yellow: "#8A6A10" + blue: "#3E7A94" + magenta: "#7E5EAA" + cyan: "#3A8A80" + white: "#EDE4D6" + brightBlack: "#7A6E5E" + brightRed: "#D94B4B" + brightGreen: "#5E9E74" + brightYellow: "#A87A18" + brightBlue: "#5E8EA4" + brightMagenta: "#9B7BBE" + brightCyan: "#5A9A90" + brightWhite: "#F5F0E8" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89 + black: 89 + red: 66.1 + green: 60.1 + yellow: 66.2 + blue: 64.2 + magenta: 66.8 + cyan: 59.3 + white: 0 + brightBlack: 65.8 + brightRed: 59 + brightGreen: 50.1 + brightYellow: 57.1 + brightBlue: 54.6 + brightMagenta: 54.1 + brightCyan: 51.1 + brightWhite: 0 diff --git a/themes/retrocoders-dark-theme.yaml b/themes/retrocoders-dark-theme.yaml new file mode 100644 index 00000000..d85aa236 --- /dev/null +++ b/themes/retrocoders-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Retrocoders Dark Theme" +source: + marketplace_id: "adanyc.retrocoders" + version: "1.0.11" + installs: 353 + rating: 4.67 + ratings: 3 + author: "adanyc" + repo: "https://github.com/adanyc/vscode-retrocoders-theme" + url: "https://marketplace.visualstudio.com/items?itemName=adanyc.retrocoders" + formats: null +colors: + bg: "#1D2833" + fg: "#CFD1D1" + black: "#1D2833" + red: "#FF695D" + green: "#B9E678" + yellow: "#FFD580" + blue: "#5FCBC3" + magenta: "#D689E3" + cyan: "#85DDA2" + white: "#F7F5E9" + brightBlack: "#596D84" + brightRed: "#FF695D" + brightGreen: "#B9E678" + brightYellow: "#FFD580" + brightBlue: "#5FCBC3" + brightMagenta: "#D689E3" + brightCyan: "#85DDA2" + brightWhite: "#F7F5E9" +meta: + mode: "dark" + accent: "orange" + hue: 249 + pair: null + contrast: + fg: 75.1 + black: 0 + red: 45.1 + green: 79.4 + yellow: 81.2 + blue: 62.1 + magenta: 50.6 + cyan: 71.6 + white: 97.8 + brightBlack: 22 + brightRed: 45.1 + brightGreen: 79.4 + brightYellow: 81.2 + brightBlue: 62.1 + brightMagenta: 50.6 + brightCyan: 71.6 + brightWhite: 97.8 diff --git a/themes/retronica--retronica-amber-terminal.yaml b/themes/retronica--retronica-amber-terminal.yaml new file mode 100644 index 00000000..e608c467 --- /dev/null +++ b/themes/retronica--retronica-amber-terminal.yaml @@ -0,0 +1,53 @@ +name: "Retronica (Retronica Amber Terminal)" +source: + marketplace_id: "adham.retronica" + version: "1.0.0" + installs: 192 + rating: 5 + ratings: 1 + author: "Adham" + repo: "https://github.com/adham-dev/retronica" + url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" + formats: null +colors: + bg: "#0F0E0A" + fg: "#D8C8A8" + black: "#1A1810" + red: "#D88060" + green: "#A8C080" + yellow: "#D8B060" + blue: "#A8A080" + magenta: "#C8A080" + cyan: "#B8C090" + white: "#D8C8A8" + brightBlack: "#5A5040" + brightRed: "#E8A080" + brightGreen: "#C0D8A0" + brightYellow: "#E8C880" + brightBlue: "#C0B8A0" + brightMagenta: "#E0C0A0" + brightCyan: "#D0D8B0" + brightWhite: "#F0E8D0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 73.9 + black: 0 + red: 46.1 + green: 63.4 + yellow: 62.4 + blue: 50.4 + magenta: 54.7 + cyan: 65.6 + white: 73.9 + brightBlack: 14.4 + brightRed: 59.8 + brightGreen: 77.6 + brightYellow: 75.1 + brightBlue: 63.8 + brightMagenta: 71.5 + brightCyan: 80 + brightWhite: 92.7 diff --git a/themes/retronica--retronica-neon-nights.yaml b/themes/retronica--retronica-neon-nights.yaml new file mode 100644 index 00000000..ebfa9532 --- /dev/null +++ b/themes/retronica--retronica-neon-nights.yaml @@ -0,0 +1,53 @@ +name: "Retronica (Retronica Neon Nights)" +source: + marketplace_id: "adham.retronica" + version: "1.0.0" + installs: 192 + rating: 5 + ratings: 1 + author: "Adham" + repo: "https://github.com/adham-dev/retronica" + url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" + formats: null +colors: + bg: "#1A1525" + fg: "#D4C5E8" + black: "#2A2440" + red: "#D87A7A" + green: "#8AC0A0" + yellow: "#D8B87A" + blue: "#7A9AD8" + magenta: "#C97AA0" + cyan: "#7AC0C8" + white: "#D4C5E8" + brightBlack: "#5A4A7A" + brightRed: "#E89A9A" + brightGreen: "#A0D8B8" + brightYellow: "#E8D09A" + brightBlue: "#9AB8E8" + brightMagenta: "#E09AC0" + brightCyan: "#9AD8E0" + brightWhite: "#F0E8F8" +meta: + mode: "dark" + accent: "orange" + hue: 298 + pair: null + contrast: + fg: 74 + black: 0 + red: 44.2 + green: 60.8 + yellow: 65.3 + blue: 46.6 + magenta: 42.9 + cyan: 61.2 + white: 74 + brightBlack: 14 + brightRed: 57.8 + brightGreen: 74.3 + brightYellow: 78.4 + brightBlue: 62.1 + brightMagenta: 57.9 + brightCyan: 75.5 + brightWhite: 93.7 diff --git a/themes/retronica--retronica-pastel-arcade.yaml b/themes/retronica--retronica-pastel-arcade.yaml new file mode 100644 index 00000000..c29e1fd4 --- /dev/null +++ b/themes/retronica--retronica-pastel-arcade.yaml @@ -0,0 +1,53 @@ +name: "Retronica (Retronica Pastel Arcade)" +source: + marketplace_id: "adham.retronica" + version: "1.0.0" + installs: 192 + rating: 5 + ratings: 1 + author: "Adham" + repo: "https://github.com/adham-dev/retronica" + url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" + formats: null +colors: + bg: "#F8F5F0" + fg: "#4A4555" + black: "#4A4555" + red: "#C06060" + green: "#609070" + yellow: "#B08040" + blue: "#5080A0" + magenta: "#A06080" + cyan: "#508090" + white: "#F0EBE5" + brightBlack: "#7A7080" + brightRed: "#D08080" + brightGreen: "#70A080" + brightYellow: "#C09050" + brightBlue: "#6090B0" + brightMagenta: "#B07090" + brightCyan: "#6090A0" + brightWhite: "#F8F5F0" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.5 + black: 85.5 + red: 62.2 + green: 58.4 + yellow: 56.6 + blue: 63.5 + magenta: 66.6 + cyan: 64.2 + white: 0 + brightBlack: 66.9 + brightRed: 50.2 + brightGreen: 50.7 + brightYellow: 48.8 + brightBlue: 56 + brightMagenta: 59.3 + brightCyan: 56.7 + brightWhite: 0 diff --git a/themes/retronica--retronica-phosphor-green.yaml b/themes/retronica--retronica-phosphor-green.yaml new file mode 100644 index 00000000..63f14c17 --- /dev/null +++ b/themes/retronica--retronica-phosphor-green.yaml @@ -0,0 +1,53 @@ +name: "Retronica (Retronica Phosphor Green)" +source: + marketplace_id: "adham.retronica" + version: "1.0.0" + installs: 192 + rating: 5 + ratings: 1 + author: "Adham" + repo: "https://github.com/adham-dev/retronica" + url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" + formats: null +colors: + bg: "#0A0F0A" + fg: "#A8D8A8" + black: "#101810" + red: "#D08080" + green: "#80D080" + yellow: "#C0C080" + blue: "#80A0A0" + magenta: "#A090A0" + cyan: "#80C0B0" + white: "#A8D8A8" + brightBlack: "#406040" + brightRed: "#E0A0A0" + brightGreen: "#A0F0A0" + brightYellow: "#D8D8A0" + brightBlue: "#A0C0C0" + brightMagenta: "#C0B0C0" + brightCyan: "#A0E0D0" + brightWhite: "#C8F8C8" +meta: + mode: "dark" + accent: "green" + hue: 145 + pair: null + contrast: + fg: 75.3 + black: 0 + red: 45.5 + green: 67.1 + yellow: 66.2 + blue: 47.4 + magenta: 44.7 + cyan: 61.3 + white: 75.3 + brightBlack: 17.2 + brightRed: 59.5 + brightGreen: 85.9 + brightYellow: 80.6 + brightBlue: 64.8 + brightMagenta: 61.9 + brightCyan: 79.8 + brightWhite: 95 diff --git a/themes/retronica--retronica-vintage-computing.yaml b/themes/retronica--retronica-vintage-computing.yaml new file mode 100644 index 00000000..5643f1d4 --- /dev/null +++ b/themes/retronica--retronica-vintage-computing.yaml @@ -0,0 +1,53 @@ +name: "Retronica (Retronica Vintage Computing)" +source: + marketplace_id: "adham.retronica" + version: "1.0.0" + installs: 192 + rating: 5 + ratings: 1 + author: "Adham" + repo: "https://github.com/adham-dev/retronica" + url: "https://marketplace.visualstudio.com/items?itemName=adham.retronica" + formats: null +colors: + bg: "#F5F0E8" + fg: "#3A4048" + black: "#3A4048" + red: "#B06060" + green: "#508060" + yellow: "#A07840" + blue: "#507088" + magenta: "#886878" + cyan: "#507878" + white: "#EDE8E0" + brightBlack: "#686860" + brightRed: "#C07070" + brightGreen: "#609070" + brightYellow: "#B08850" + brightBlue: "#608098" + brightMagenta: "#987888" + brightCyan: "#608888" + brightWhite: "#F5F0E8" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.7 + black: 85.7 + red: 62.2 + green: 63 + yellow: 58.5 + blue: 67.3 + magenta: 65.2 + cyan: 65.2 + white: 0 + brightBlack: 69.5 + brightRed: 55 + brightGreen: 55.6 + brightYellow: 51 + brightBlue: 60.1 + brightMagenta: 57.8 + brightCyan: 57.8 + brightWhite: 0 diff --git a/themes/retrowave.yaml b/themes/retrowave.yaml new file mode 100644 index 00000000..d74fc98b --- /dev/null +++ b/themes/retrowave.yaml @@ -0,0 +1,53 @@ +name: "RetroWave" +source: + marketplace_id: "JVasquezzsh.retrowave" + version: "0.0.1" + installs: 4020 + rating: 5 + ratings: 1 + author: "JVasquezzsh" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=JVasquezzsh.retrowave" + formats: null +colors: + bg: "#201408" + fg: "#FFB92B" + black: "#FFAB2B" + red: "#FFAB2B" + green: "#FFAB2B" + yellow: "#FFAB2B" + blue: "#FFAB2B" + magenta: "#FFAB2B" + cyan: "#FFAB2B" + white: "#FFAB2B" + brightBlack: "#FFAB2B" + brightRed: "#FFAB2B" + brightGreen: "#FFAB2B" + brightYellow: "#FFAB2B" + brightBlue: "#FFAB2B" + brightMagenta: "#FFAB2B" + brightCyan: "#FFAB2B" + brightWhite: "#FFAB2B" +meta: + mode: "dark" + accent: "yellow" + hue: 65 + pair: null + contrast: + fg: 71.1 + black: 65.9 + red: 65.9 + green: 65.9 + yellow: 65.9 + blue: 65.9 + magenta: 65.9 + cyan: 65.9 + white: 65.9 + brightBlack: 65.9 + brightRed: 65.9 + brightGreen: 65.9 + brightYellow: 65.9 + brightBlue: 65.9 + brightMagenta: 65.9 + brightCyan: 65.9 + brightWhite: 65.9 diff --git a/themes/reui--reui-ii-dark.yaml b/themes/reui--reui-ii-dark.yaml new file mode 100644 index 00000000..7483db50 --- /dev/null +++ b/themes/reui--reui-ii-dark.yaml @@ -0,0 +1,53 @@ +name: "ReUI (ReUI II Dark)" +source: + marketplace_id: "barrsan.reui" + version: "1.2.5" + installs: 120832 + rating: 5 + ratings: 9 + author: "Alex Baretsky" + repo: "https://github.com/barrsan/reui-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=barrsan.reui" + formats: null +colors: + bg: "#1E232E" + fg: "#FFFFFF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 266 + pair: null + contrast: + fg: 105.3 + black: 0 + red: 41.8 + green: 83.3 + yellow: 97 + blue: 52.1 + magenta: 53 + cyan: 82.4 + white: 100.4 + brightBlack: 26.5 + brightRed: 47.3 + brightGreen: 87.5 + brightYellow: 102 + brightBlue: 64.5 + brightMagenta: 61 + brightCyan: 95.2 + brightWhite: 105.3 diff --git a/themes/reui--reui-mirage.yaml b/themes/reui--reui-mirage.yaml new file mode 100644 index 00000000..5741b55e --- /dev/null +++ b/themes/reui--reui-mirage.yaml @@ -0,0 +1,53 @@ +name: "ReUI (ReUI Mirage)" +source: + marketplace_id: "barrsan.reui" + version: "1.2.5" + installs: 120832 + rating: 5 + ratings: 9 + author: "Alex Baretsky" + repo: "https://github.com/barrsan/reui-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=barrsan.reui" + formats: null +colors: + bg: "#18273A" + fg: "#FFFFFF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 255 + pair: null + contrast: + fg: 104.7 + black: 0 + red: 41.2 + green: 82.7 + yellow: 96.4 + blue: 51.5 + magenta: 52.4 + cyan: 81.8 + white: 99.8 + brightBlack: 25.9 + brightRed: 46.7 + brightGreen: 86.9 + brightYellow: 101.4 + brightBlue: 63.9 + brightMagenta: 60.4 + brightCyan: 94.6 + brightWhite: 104.7 diff --git a/themes/reui--reui.yaml b/themes/reui--reui.yaml new file mode 100644 index 00000000..d09bf3bf --- /dev/null +++ b/themes/reui--reui.yaml @@ -0,0 +1,53 @@ +name: "ReUI (ReUI)" +source: + marketplace_id: "barrsan.reui" + version: "1.2.5" + installs: 120832 + rating: 5 + ratings: 9 + author: "Alex Baretsky" + repo: "https://github.com/barrsan/reui-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=barrsan.reui" + formats: null +colors: + bg: "#282C34" + fg: "#FFFFFF" + black: "#21222C" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 103.7 + black: 0 + red: 40.2 + green: 81.7 + yellow: 95.3 + blue: 50.4 + magenta: 51.4 + cyan: 80.8 + white: 98.8 + brightBlack: 24.8 + brightRed: 45.6 + brightGreen: 85.8 + brightYellow: 100.3 + brightBlue: 62.9 + brightMagenta: 59.4 + brightCyan: 93.6 + brightWhite: 103.7 diff --git a/themes/rhapsody-theme--dark.yaml b/themes/rhapsody-theme--dark.yaml new file mode 100644 index 00000000..27e6e9e8 --- /dev/null +++ b/themes/rhapsody-theme--dark.yaml @@ -0,0 +1,53 @@ +name: "Rhapsody Theme (Dark)" +source: + marketplace_id: "AdiKurniawan.rhapsody-theme" + version: "1.2.0" + installs: 146 + rating: 0 + ratings: 0 + author: "Adi Kurniawan" + repo: "https://github.com/adikurniawanid/rhapsody-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AdiKurniawan.rhapsody-theme" + formats: null +colors: + bg: "#292C3E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 277 + pair: null + contrast: + fg: 76 + black: 0 + red: 23.3 + green: 49.5 + yellow: 82.2 + blue: 24 + magenta: 26.3 + cyan: 44.1 + white: 86.6 + brightBlack: 18.6 + brightRed: 35.1 + brightGreen: 60.1 + brightYellow: 92.2 + brightBlue: 36.5 + brightMagenta: 41.9 + brightCyan: 51.9 + brightWhite: 86.6 diff --git a/themes/rik.yaml b/themes/rik.yaml new file mode 100644 index 00000000..f36846ff --- /dev/null +++ b/themes/rik.yaml @@ -0,0 +1,53 @@ +name: "Rik" +source: + marketplace_id: "SanuKumar.rik" + version: "1.0.7" + installs: 99 + rating: 5 + ratings: 1 + author: "Sanu Kumar" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SanuKumar.rik" + formats: null +colors: + bg: "#1B1B1B" + fg: "#AF8BFF" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 49.2 + black: 0 + red: 38.2 + green: 85.6 + yellow: 90.8 + blue: 37 + magenta: 44.8 + cyan: 75.6 + white: 51 + brightBlack: 21.6 + brightRed: 46.7 + brightGreen: 92.1 + brightYellow: 79 + brightBlue: 71.1 + brightMagenta: 66.4 + brightCyan: 89.2 + brightWhite: 72.4 diff --git a/themes/rito-dark-italic.yaml b/themes/rito-dark-italic.yaml new file mode 100644 index 00000000..c2e9e60e --- /dev/null +++ b/themes/rito-dark-italic.yaml @@ -0,0 +1,53 @@ +name: "Rito Dark Italic" +source: + marketplace_id: "EminBayrak.rito-dark-italic" + version: "0.0.3" + installs: 794 + rating: 0 + ratings: 0 + author: "Emin Bayrak" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=EminBayrak.rito-dark-italic" + formats: null +colors: + bg: "#32373D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 253 + pair: null + contrast: + fg: 73.7 + black: 0 + red: 20.9 + green: 47.2 + yellow: 79.8 + blue: 21.6 + magenta: 23.9 + cyan: 41.7 + white: 84.2 + brightBlack: 16.2 + brightRed: 32.7 + brightGreen: 57.7 + brightYellow: 89.8 + brightBlue: 34.2 + brightMagenta: 39.5 + brightCyan: 49.6 + brightWhite: 84.2 diff --git a/themes/rmondesilva.yaml b/themes/rmondesilva.yaml new file mode 100644 index 00000000..919bb1d7 --- /dev/null +++ b/themes/rmondesilva.yaml @@ -0,0 +1,53 @@ +name: "rmondesilva" +source: + marketplace_id: "rmondesilva.rmondesilva" + version: "0.0.1" + installs: 87 + rating: 0 + ratings: 0 + author: "Richmond De Silva" + repo: "https://github.com/rmondesilva/vscode-color-theme-rmondesilva" + url: "https://marketplace.visualstudio.com/items?itemName=rmondesilva.rmondesilva" + formats: null +colors: + bg: "#121414" + fg: "#D6DBDB" + black: "#1E2121" + red: "#BA0E2E" + green: "#A7DA1E" + yellow: "#9BB7A7" + blue: "#F9F7F1" + magenta: "#9BB7A7" + cyan: "#C24E4B" + white: "#E4E7E7" + brightBlack: "#424A4A" + brightRed: "#F03E5F" + brightGreen: "#A7DA1E" + brightYellow: "#D6E2DB" + brightBlue: "#FFFFFF" + brightMagenta: "#D6E2DB" + brightCyan: "#DC9997" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.4 + black: 0 + red: 20.8 + green: 73.5 + yellow: 59.1 + blue: 101.9 + magenta: 59.1 + cyan: 29.2 + white: 91.2 + brightBlack: 10.7 + brightRed: 37.1 + brightGreen: 73.5 + brightYellow: 86.6 + brightBlue: 107.2 + brightMagenta: 86.6 + brightCyan: 55.7 + brightWhite: 107.2 diff --git a/themes/robot-framework-pro.yaml b/themes/robot-framework-pro.yaml new file mode 100644 index 00000000..2973d0f8 --- /dev/null +++ b/themes/robot-framework-pro.yaml @@ -0,0 +1,53 @@ +name: "Robot Framework Pro" +source: + marketplace_id: "ConnectionsSystem.robotframework-pro" + version: "2.1.4" + installs: 295 + rating: 0 + ratings: 0 + author: "Connections System" + repo: "https://github.com/Skisperd/robotframework-pro-extension" + url: "https://marketplace.visualstudio.com/items?itemName=ConnectionsSystem.robotframework-pro" + formats: null +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#000000" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 230 + pair: null + contrast: + fg: 100.4 + black: 0 + red: 39.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 102.7 + brightBlack: 0 + brightRed: 39.4 + brightGreen: 80 + brightYellow: 74.7 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/rock-dark.yaml b/themes/rock-dark.yaml new file mode 100644 index 00000000..40f61c81 --- /dev/null +++ b/themes/rock-dark.yaml @@ -0,0 +1,53 @@ +name: "Rock dark" +source: + marketplace_id: "Amir258.rock-theme" + version: "0.0.1" + installs: 297 + rating: 0 + ratings: 0 + author: "Amir" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Amir258.rock-theme" + formats: null +colors: + bg: "#36393F" + fg: "#B2CCFF" + black: "#666666" + red: "#666666" + green: "#666666" + yellow: "#666666" + blue: "#666666" + magenta: "#666666" + cyan: "#666666" + white: "#666666" + brightBlack: "#666666" + brightRed: "#666666" + brightGreen: "#666666" + brightYellow: "#666666" + brightBlue: "#666666" + brightMagenta: "#666666" + brightCyan: "#666666" + brightWhite: "#666666" +meta: + mode: "dark" + accent: "yellow" + hue: 264 + pair: null + contrast: + fg: 67.7 + black: 15.5 + red: 15.5 + green: 15.5 + yellow: 15.5 + blue: 15.5 + magenta: 15.5 + cyan: 15.5 + white: 15.5 + brightBlack: 15.5 + brightRed: 15.5 + brightGreen: 15.5 + brightYellow: 15.5 + brightBlue: 15.5 + brightMagenta: 15.5 + brightCyan: 15.5 + brightWhite: 15.5 diff --git a/themes/rog-theme-v1-dark.yaml b/themes/rog-theme-v1-dark.yaml new file mode 100644 index 00000000..359d7bae --- /dev/null +++ b/themes/rog-theme-v1-dark.yaml @@ -0,0 +1,53 @@ +name: "ROG Theme V1 Dark" +source: + marketplace_id: "ELITENOTORIOUSTHEPRESTIGIOUS.rog-theme-v1-dark" + version: "1.1.0" + installs: 236 + rating: 0 + ratings: 0 + author: "ELITE NOTORIOUS THE PRESTIGIOUS" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ELITENOTORIOUSTHEPRESTIGIOUS.rog-theme-v1-dark" + formats: null +colors: + bg: "#000000" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 0 + black: 0 + red: 27.7 + green: 52.7 + yellow: 43.8 + blue: 16 + magenta: 27.1 + cyan: 41.1 + white: 16.1 + brightBlack: 23 + brightRed: 27.7 + brightGreen: 61.4 + brightYellow: 61.3 + brightBlue: 16 + brightMagenta: 27.1 + brightCyan: 41.1 + brightWhite: 53.5 diff --git a/themes/ronin--ronin-darker.yaml b/themes/ronin--ronin-darker.yaml new file mode 100644 index 00000000..a3526fb8 --- /dev/null +++ b/themes/ronin--ronin-darker.yaml @@ -0,0 +1,53 @@ +name: "Ronin (Ronin Darker)" +source: + marketplace_id: "ZachBauer.ronin" + version: "1.7.0" + installs: 1119 + rating: 0 + ratings: 0 + author: "Zach Bauer" + repo: "https://github.com/azbauer8/Ronin" + url: "https://marketplace.visualstudio.com/items?itemName=ZachBauer.ronin" + formats: null +colors: + bg: "#181818" + fg: "#CCCCCC" + black: "#1D2025" + red: "#E06C75" + green: "#9AC181" + yellow: "#EDD6A3" + blue: "#4FB0FF" + magenta: "#DB7F99" + cyan: "#50CDDD" + white: "#BAC4D6" + brightBlack: "#4F6695" + brightRed: "#E06C75" + brightGreen: "#9AC181" + brightYellow: "#EDD6A3" + brightBlue: "#4FB0FF" + brightMagenta: "#DB7F99" + brightCyan: "#50CDDD" + brightWhite: "#E3E5E8" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 74.6 + black: 0 + red: 42 + green: 61.7 + yellow: 81.9 + blue: 55.2 + magenta: 47.1 + cyan: 65.8 + white: 69.4 + brightBlack: 22.1 + brightRed: 42 + brightGreen: 61.7 + brightYellow: 81.9 + brightBlue: 55.2 + brightMagenta: 47.1 + brightCyan: 65.8 + brightWhite: 89.8 diff --git a/themes/ronin--ronin.yaml b/themes/ronin--ronin.yaml new file mode 100644 index 00000000..db82a2f4 --- /dev/null +++ b/themes/ronin--ronin.yaml @@ -0,0 +1,53 @@ +name: "Ronin (Ronin)" +source: + marketplace_id: "ZachBauer.ronin" + version: "1.7.0" + installs: 1119 + rating: 0 + ratings: 0 + author: "Zach Bauer" + repo: "https://github.com/azbauer8/Ronin" + url: "https://marketplace.visualstudio.com/items?itemName=ZachBauer.ronin" + formats: null +colors: + bg: "#18181B" + fg: "#BAC4D6" + black: "#1D2025" + red: "#E06C75" + green: "#9AC181" + yellow: "#EDD6A3" + blue: "#4FB0FF" + magenta: "#DB7F99" + cyan: "#50CDDD" + white: "#BAC4D6" + brightBlack: "#4F6695" + brightRed: "#E06C75" + brightGreen: "#9AC181" + brightYellow: "#EDD6A3" + brightBlue: "#4FB0FF" + brightMagenta: "#DB7F99" + brightCyan: "#50CDDD" + brightWhite: "#E3E5E8" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 69.4 + black: 0 + red: 41.9 + green: 61.6 + yellow: 81.9 + blue: 55.2 + magenta: 47.1 + cyan: 65.8 + white: 69.4 + brightBlack: 22.1 + brightRed: 41.9 + brightGreen: 61.6 + brightYellow: 81.9 + brightBlue: 55.2 + brightMagenta: 47.1 + brightCyan: 65.8 + brightWhite: 89.8 diff --git a/themes/root-dark-mode-theme.yaml b/themes/root-dark-mode-theme.yaml new file mode 100644 index 00000000..ce19b38d --- /dev/null +++ b/themes/root-dark-mode-theme.yaml @@ -0,0 +1,53 @@ +name: "#ROOT Dark-mode theme" +source: + marketplace_id: "fiedri.root-dark-theme" + version: "0.0.5" + installs: 26 + rating: 0 + ratings: 0 + author: "fiedri" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=fiedri.root-dark-theme" + formats: null +colors: + bg: "#0A0A0A" + fg: "#FFFFFF" + black: "#888888" + red: "#FF003C" + green: "#00FF41" + yellow: "#FCEE0A" + blue: "#00F3FF" + magenta: "#BC3FBC" + cyan: "#0AFFC9" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#FF0055" + brightGreen: "#39FF14" + brightYellow: "#FFF600" + brightBlue: "#00FFFF" + brightMagenta: "#D670D6" + brightCyan: "#4DF9FF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 107.7 + black: 38.5 + red: 37.7 + green: 86.6 + yellow: 94 + blue: 85.9 + magenta: 30.6 + cyan: 89.6 + white: 107.7 + brightBlack: 16 + brightRed: 38.1 + brightGreen: 86.8 + brightYellow: 98.2 + brightBlue: 92 + brightMagenta: 46.2 + brightCyan: 89.9 + brightWhite: 90.9 diff --git a/themes/ros-pine--ros-pine-dawn.yaml b/themes/ros-pine--ros-pine-dawn.yaml new file mode 100644 index 00000000..6b941430 --- /dev/null +++ b/themes/ros-pine--ros-pine-dawn.yaml @@ -0,0 +1,53 @@ +name: "Rosé Pine (Rosé Pine Dawn)" +source: + marketplace_id: "mvllow.rose-pine" + version: "2.15.0" + installs: 299612 + rating: 4.73 + ratings: 22 + author: "Rosé Pine" + repo: "https://github.com/rose-pine/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=mvllow.rose-pine" + formats: null +colors: + bg: "#FAF4ED" + fg: "#575279" + black: "#F2E9E1" + red: "#B4637A" + green: "#286983" + yellow: "#EA9D34" + blue: "#56949F" + magenta: "#907AA9" + cyan: "#D7827E" + white: "#575279" + brightBlack: "#797593" + brightRed: "#B4637A" + brightGreen: "#286983" + brightYellow: "#EA9D34" + brightBlue: "#56949F" + brightMagenta: "#907AA9" + brightCyan: "#D7827E" + brightWhite: "#575279" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 79.1 + black: 0 + red: 62.5 + green: 74.2 + yellow: 37.8 + blue: 55.6 + magenta: 59.3 + cyan: 48.2 + white: 79.1 + brightBlack: 64.4 + brightRed: 62.5 + brightGreen: 74.2 + brightYellow: 37.8 + brightBlue: 55.6 + brightMagenta: 59.3 + brightCyan: 48.2 + brightWhite: 79.1 diff --git a/themes/ros-pine--ros-pine-moon.yaml b/themes/ros-pine--ros-pine-moon.yaml new file mode 100644 index 00000000..bc7bf69e --- /dev/null +++ b/themes/ros-pine--ros-pine-moon.yaml @@ -0,0 +1,53 @@ +name: "Rosé Pine (Rosé Pine Moon)" +source: + marketplace_id: "mvllow.rose-pine" + version: "2.15.0" + installs: 299612 + rating: 4.73 + ratings: 22 + author: "Rosé Pine" + repo: "https://github.com/rose-pine/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=mvllow.rose-pine" + formats: null +colors: + bg: "#232136" + fg: "#E0DEF4" + black: "#393552" + red: "#EB6F92" + green: "#3E8FB0" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#EA9A97" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#3E8FB0" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#EA9A97" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: 288 + pair: null + contrast: + fg: 85.3 + black: 0 + red: 44.2 + green: 35.2 + yellow: 71.9 + blue: 69.7 + magenta: 58.7 + cyan: 56.5 + white: 85.3 + brightBlack: 39.6 + brightRed: 44.2 + brightGreen: 35.2 + brightYellow: 71.9 + brightBlue: 69.7 + brightMagenta: 58.7 + brightCyan: 56.5 + brightWhite: 85.3 diff --git a/themes/ros-pine--ros-pine.yaml b/themes/ros-pine--ros-pine.yaml new file mode 100644 index 00000000..c06ae7fa --- /dev/null +++ b/themes/ros-pine--ros-pine.yaml @@ -0,0 +1,53 @@ +name: "Rosé Pine (Rosé Pine)" +source: + marketplace_id: "mvllow.rose-pine" + version: "2.15.0" + installs: 299612 + rating: 4.73 + ratings: 22 + author: "Rosé Pine" + repo: "https://github.com/rose-pine/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=mvllow.rose-pine" + formats: null +colors: + bg: "#191724" + fg: "#E0DEF4" + black: "#26233A" + red: "#EB6F92" + green: "#31748F" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#EBBCBA" + white: "#E0DEF4" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#31748F" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#EBBCBA" + brightWhite: "#E0DEF4" +meta: + mode: "dark" + accent: "red" + hue: 291 + pair: null + contrast: + fg: 86.8 + black: 0 + red: 45.7 + green: 24.9 + yellow: 73.4 + blue: 71.2 + magenta: 60.1 + cyan: 71.6 + white: 86.8 + brightBlack: 41.1 + brightRed: 45.7 + brightGreen: 24.9 + brightYellow: 73.4 + brightBlue: 71.2 + brightMagenta: 60.1 + brightCyan: 71.6 + brightWhite: 86.8 diff --git a/themes/ros-pine-burnt.yaml b/themes/ros-pine-burnt.yaml new file mode 100644 index 00000000..b9d15a03 --- /dev/null +++ b/themes/ros-pine-burnt.yaml @@ -0,0 +1,53 @@ +name: "Rosé Pine Burnt" +source: + marketplace_id: "SulSami.rose-pine-burnt" + version: "1.0.3" + installs: 3262 + rating: 0 + ratings: 0 + author: "Sami" + repo: "https://github.com/rose-pine-vscode/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=SulSami.rose-pine-burnt" + formats: null +colors: + bg: "#0E0A01" + fg: "#C0CAF5" + black: "#26233A" + red: "#EB6F92" + green: "#31748F" + yellow: "#F6C177" + blue: "#9CCFD8" + magenta: "#C4A7E7" + cyan: "#EBBCBA" + white: "#C0CAF5" + brightBlack: "#908CAA" + brightRed: "#EB6F92" + brightGreen: "#31748F" + brightYellow: "#F6C177" + brightBlue: "#9CCFD8" + brightMagenta: "#C4A7E7" + brightCyan: "#EBBCBA" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "red" + hue: 94 + pair: null + contrast: + fg: 75.2 + black: 0 + red: 46.7 + green: 25.9 + yellow: 74.4 + blue: 72.2 + magenta: 61.2 + cyan: 72.6 + white: 75.2 + brightBlack: 42.1 + brightRed: 46.7 + brightGreen: 25.9 + brightYellow: 74.4 + brightBlue: 72.2 + brightMagenta: 61.2 + brightCyan: 72.6 + brightWhite: 75.2 diff --git a/themes/rose-pine-nvchad-vscode-theme.yaml b/themes/rose-pine-nvchad-vscode-theme.yaml new file mode 100644 index 00000000..bf9eb453 --- /dev/null +++ b/themes/rose-pine-nvchad-vscode-theme.yaml @@ -0,0 +1,53 @@ +name: "Rose Pine NvChad VsCode Theme" +source: + marketplace_id: "chrsolr.rose-pine-nvchad-theme" + version: "0.0.3" + installs: 6752 + rating: 0 + ratings: 0 + author: "Christian Soler" + repo: "https://github.com/chrsolr/rose-pine-nvchad-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=chrsolr.rose-pine-nvchad-theme" + formats: null +colors: + bg: "#191825" + fg: "#777777" + black: "#333333" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EEEEEE" + brightBlack: "#555555" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 288 + pair: null + contrast: + fg: 29.3 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 95.5 + brightBlack: 14.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 106.6 diff --git a/themes/roselia-theme--roselia.yaml b/themes/roselia-theme--roselia.yaml new file mode 100644 index 00000000..4dcd6a9c --- /dev/null +++ b/themes/roselia-theme--roselia.yaml @@ -0,0 +1,53 @@ +name: "Roselia Theme (Roselia)" +source: + marketplace_id: "TehMatcha.roselia-theme" + version: "4.4.0" + installs: 1278 + rating: 5 + ratings: 2 + author: "TehMatcha" + repo: "https://github.com/MatchaTi/cool-roselia-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TehMatcha.roselia-theme" + formats: null +colors: + bg: "#16161E" + fg: "#F1F5F9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + pair: null + contrast: + fg: 100 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/rouge-theme--rouge.yaml b/themes/rouge-theme--rouge.yaml new file mode 100644 index 00000000..615adaf6 --- /dev/null +++ b/themes/rouge-theme--rouge.yaml @@ -0,0 +1,53 @@ +name: "Rouge Theme (Rouge)" +source: + marketplace_id: "josef.rouge-theme" + version: "2.1.6" + installs: 53330 + rating: 4.91 + ratings: 11 + author: "josef" + repo: "https://github.com/josefaidt/rouge-theme" + url: "https://marketplace.visualstudio.com/items?itemName=josef.rouge-theme" + formats: null +colors: + bg: "#172030" + fg: "#BBBBBB" + black: "#374E73" + red: "#C6797E" + green: "#ADB9A4" + yellow: "#ECE7AC" + blue: "#6E94B9" + magenta: "#B18BB1" + cyan: "#8AB6C1" + white: "#E3E4E8" + brightBlack: "#3F5A85" + brightRed: "#D19498" + brightGreen: "#BEC8B7" + brightYellow: "#F2EFC7" + brightBlue: "#98B3CD" + brightMagenta: "#CCB3CC" + brightCyan: "#ABCBD3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 262 + pair: null + contrast: + fg: 63.6 + black: 11.2 + red: 39.9 + green: 60.3 + yellow: 88.6 + blue: 40.7 + magenta: 44.1 + cyan: 56.8 + white: 88.3 + brightBlack: 15.8 + brightRed: 50.9 + brightGreen: 69.3 + brightYellow: 94 + brightBlue: 57.4 + brightMagenta: 63.4 + brightCyan: 69.6 + brightWhite: 105.8 diff --git a/themes/roxotema.yaml b/themes/roxotema.yaml new file mode 100644 index 00000000..a381342e --- /dev/null +++ b/themes/roxotema.yaml @@ -0,0 +1,53 @@ +name: "RoxoTema" +source: + marketplace_id: "KelsonCarvalho.roxotema" + version: "2.0.0" + installs: 1041 + rating: 0 + ratings: 0 + author: "Kelson Carvalho" + repo: "https://github.com/NoslekCode/VsCode_Tema_Roxo_Dark" + url: "https://marketplace.visualstudio.com/items?itemName=KelsonCarvalho.roxotema" + formats: null +colors: + bg: "#2D0D29" + fg: "#D4D4D4" + black: "#000000" + red: "#D10B03" + green: "#66B055" + yellow: "#D9E100" + blue: "#4424D3" + magenta: "#B96BB9" + cyan: "#4525D1" + white: "#FFF5FF" + brightBlack: "#202020" + brightRed: "#FD0E04" + brightGreen: "#66B055" + brightYellow: "#FBFF00" + brightBlue: "#331BB2" + brightMagenta: "#974795" + brightCyan: "#341CBF" + brightWhite: "#E9D1E9" +meta: + mode: "dark" + accent: "orange" + hue: 333 + pair: null + contrast: + fg: 79 + black: 0 + red: 24.9 + green: 48.9 + yellow: 81.6 + blue: 12.5 + magenta: 37.1 + cyan: 12.5 + white: 101.7 + brightBlack: 0 + brightRed: 35.6 + brightGreen: 48.9 + brightYellow: 100.6 + brightBlue: 7.4 + brightMagenta: 22 + brightCyan: 8.9 + brightWhite: 81.6 diff --git a/themes/runic-theme--runic-minimal.yaml b/themes/runic-theme--runic-minimal.yaml new file mode 100644 index 00000000..52f0a4e9 --- /dev/null +++ b/themes/runic-theme--runic-minimal.yaml @@ -0,0 +1,53 @@ +name: "Runic Theme (Runic Minimal)" +source: + marketplace_id: "pyxel.runic-theme" + version: "1.2.0" + installs: 2358 + rating: 5 + ratings: 1 + author: "Pyxel" + repo: "https://github.com/xpyxel/runic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=pyxel.runic-theme" + formats: null +colors: + bg: "#181A1B" + fg: "#D1D1D1" + black: "#000000" + red: "#FF3B30" + green: "#4CD964" + yellow: "#FFCC00" + blue: "#0095FF" + magenta: "#FF2D55" + cyan: "#5AC8FA" + white: "#FFFFFF" + brightBlack: "#686868" + brightRed: "#FF3B30" + brightGreen: "#4CD964" + brightYellow: "#FFCC00" + brightBlue: "#0095FF" + brightMagenta: "#FF2D55" + brightCyan: "#5AC8FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 77.4 + black: 0 + red: 39.1 + green: 67.2 + yellow: 78.3 + blue: 43.1 + magenta: 38.3 + cyan: 65.4 + white: 106.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 67.2 + brightYellow: 78.3 + brightBlue: 43.1 + brightMagenta: 38.3 + brightCyan: 65.4 + brightWhite: 106.6 diff --git a/themes/ryuk-stheme.yaml b/themes/ryuk-stheme.yaml new file mode 100644 index 00000000..de5f9b6b --- /dev/null +++ b/themes/ryuk-stheme.yaml @@ -0,0 +1,53 @@ +name: "Ryuk'sTheme" +source: + marketplace_id: "Ryuk.ryuktheme" + version: "0.1.0" + installs: 234 + rating: 0 + ratings: 0 + author: "Ryuk" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Ryuk.ryuktheme" + formats: null +colors: + bg: "#111111" + fg: "#64B8D9" + black: "#000000" + red: "#BC2222" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 57.8 + black: 0 + red: 22.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/safira-theme.yaml b/themes/safira-theme.yaml new file mode 100644 index 00000000..751a6246 --- /dev/null +++ b/themes/safira-theme.yaml @@ -0,0 +1,53 @@ +name: "Safira Theme" +source: + marketplace_id: "yinz.safira" + version: "0.0.9" + installs: 10368 + rating: 5 + ratings: 8 + author: "Yinz" + repo: "https://github.com/yinzdev/safira-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=yinz.safira" + formats: null +colors: + bg: "#161D26" + fg: "#DCDEDF" + black: "#5E5E5E" + red: "#FF465C" + green: "#0ED78A" + yellow: "#FFCE57" + blue: "#64C7FF" + magenta: "#E560E6" + cyan: "#00C5D3" + white: "#DCDEDF" + brightBlack: "#8C8C8C" + brightRed: "#FF465C" + brightGreen: "#2ADD75" + brightYellow: "#FFCE57" + brightBlue: "#82AAFF" + brightMagenta: "#FF64FF" + brightCyan: "#A6F8E9" + brightWhite: "#EBEBEB" +meta: + mode: "dark" + accent: "pink" + hue: 255 + pair: null + contrast: + fg: 84.8 + black: 18.1 + red: 40.6 + green: 65.6 + yellow: 79.2 + blue: 65.4 + magenta: 45.1 + cyan: 59.9 + white: 84.8 + brightBlack: 38.9 + brightRed: 40.6 + brightGreen: 68.3 + brightYellow: 79.2 + brightBlue: 55.3 + brightMagenta: 52.8 + brightCyan: 91.7 + brightWhite: 93.2 diff --git a/themes/saga-theme--saga-nordic-v1-2.yaml b/themes/saga-theme--saga-nordic-v1-2.yaml new file mode 100644 index 00000000..d3bf8489 --- /dev/null +++ b/themes/saga-theme--saga-nordic-v1-2.yaml @@ -0,0 +1,53 @@ +name: "Saga Theme (Saga - Nordic v1.2)" +source: + marketplace_id: "bcwsea.theme-saga" + version: "1.2.0" + installs: 2871 + rating: 5 + ratings: 3 + author: "bcwsea" + repo: "https://github.com/bcwdev/theme-saga" + url: "https://marketplace.visualstudio.com/items?itemName=bcwsea.theme-saga" + formats: null +colors: + bg: "#001420" + fg: "#86949D" + black: "#4B4B4B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 235 + pair: null + contrast: + fg: 42.8 + black: 11.6 + red: 27 + green: 53.3 + yellow: 85.9 + blue: 27.7 + magenta: 30.1 + cyan: 47.9 + white: 90.3 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.8 + brightYellow: 95.9 + brightBlue: 40.3 + brightMagenta: 45.7 + brightCyan: 55.7 + brightWhite: 90.3 diff --git a/themes/saga-theme--saga-oceania-v1-2.yaml b/themes/saga-theme--saga-oceania-v1-2.yaml new file mode 100644 index 00000000..3a6cda33 --- /dev/null +++ b/themes/saga-theme--saga-oceania-v1-2.yaml @@ -0,0 +1,53 @@ +name: "Saga Theme (Saga - Oceania v1.2)" +source: + marketplace_id: "bcwsea.theme-saga" + version: "1.2.0" + installs: 2871 + rating: 5 + ratings: 3 + author: "bcwsea" + repo: "https://github.com/bcwdev/theme-saga" + url: "https://marketplace.visualstudio.com/items?itemName=bcwsea.theme-saga" + formats: null +colors: + bg: "#191514" + fg: "#A59A89" + black: "#4B4B4B" + red: "#CD3131" + green: "#689C6B" + yellow: "#FEF97B" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#75CB7A" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 47.5 + black: 11.4 + red: 26.8 + green: 41.7 + yellow: 99.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.3 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/sage-of-light-theme.yaml b/themes/sage-of-light-theme.yaml new file mode 100644 index 00000000..4c22639f --- /dev/null +++ b/themes/sage-of-light-theme.yaml @@ -0,0 +1,53 @@ +name: "Sage of Light Theme" +source: + marketplace_id: "wavebeem.sage-of-light-vscode" + version: "1.0.1" + installs: 276 + rating: 0 + ratings: 0 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/sage-of-light-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.sage-of-light-vscode" + formats: null +colors: + bg: "#FFFFFF" + fg: "#003836" + black: "#484848" + red: "#D2004F" + green: "#008800" + yellow: "#B74700" + blue: "#006FD6" + magenta: "#A200E9" + cyan: "#008188" + white: "#FFFFFF" + brightBlack: "#484848" + brightRed: "#D2004F" + brightGreen: "#008800" + brightYellow: "#B74700" + brightBlue: "#006FD6" + brightMagenta: "#A200E9" + brightCyan: "#008188" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 98.8 + black: 91.1 + red: 74.5 + green: 71.4 + yellow: 75.8 + blue: 73.4 + magenta: 75.7 + cyan: 71.9 + white: 0 + brightBlack: 91.1 + brightRed: 74.5 + brightGreen: 71.4 + brightYellow: 75.8 + brightBlue: 73.4 + brightMagenta: 75.7 + brightCyan: 71.9 + brightWhite: 0 diff --git a/themes/sakura-blossom.yaml b/themes/sakura-blossom.yaml new file mode 100644 index 00000000..c66ca9e9 --- /dev/null +++ b/themes/sakura-blossom.yaml @@ -0,0 +1,54 @@ +name: "Sakura Blossom" +source: + marketplace_id: "agustinhopneto.sakura-blossom" + version: "0.0.4" + installs: 1417 + rating: 5 + ratings: 2 + author: "Agustinho Neto" + repo: "https://github.com/agustinhopneto/sakura-blossom" + url: "https://marketplace.visualstudio.com/items?itemName=agustinhopneto.sakura-blossom" + formats: + zed: "https://raw.githubusercontent.com/agustinhopneto/sakura-blossom/main/src/tokenized-theme.json" +colors: + bg: "#1D161B" + fg: "#D1C7CA" + black: "#332430" + red: "#C05039" + green: "#70CD9E" + yellow: "#E3B75F" + blue: "#85C1E9" + magenta: "#B6A3E5" + cyan: "#F688A5" + white: "#D1C7CA" + brightBlack: "#9F898F" + brightRed: "#C05039" + brightGreen: "#70CD9E" + brightYellow: "#E3B75F" + brightBlue: "#85C1E9" + brightMagenta: "#B6A3E5" + brightCyan: "#F688A5" + brightWhite: "#D1C7CA" +meta: + mode: "dark" + accent: "orange" + hue: 337 + pair: null + contrast: + fg: 73 + black: 0 + red: 28.5 + green: 64.7 + yellow: 66 + blue: 64.1 + magenta: 56.8 + cyan: 55.2 + white: 73 + brightBlack: 40.7 + brightRed: 28.5 + brightGreen: 64.7 + brightYellow: 66 + brightBlue: 64.1 + brightMagenta: 56.8 + brightCyan: 55.2 + brightWhite: 73 diff --git a/themes/sakura-sun.yaml b/themes/sakura-sun.yaml new file mode 100644 index 00000000..1604150f --- /dev/null +++ b/themes/sakura-sun.yaml @@ -0,0 +1,53 @@ +name: "sakura sun" +source: + marketplace_id: "minako.sakurasun" + version: "1.0.3" + installs: 1625 + rating: 5 + ratings: 1 + author: "minako" + repo: "https://github.com/kayliese/sakura" + url: "https://marketplace.visualstudio.com/items?itemName=minako.sakurasun" + formats: null +colors: + bg: "#070B11" + fg: "#00D7FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + pair: null + contrast: + fg: 72.1 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/sakura-x--kuro-sakura.yaml b/themes/sakura-x--kuro-sakura.yaml new file mode 100644 index 00000000..d87fdb9b --- /dev/null +++ b/themes/sakura-x--kuro-sakura.yaml @@ -0,0 +1,53 @@ +name: "Sakura X (Kuro Sakura)" +source: + marketplace_id: "cnrxad.sakura-x" + version: "1.0.0" + installs: 183 + rating: 0 + ratings: 0 + author: "cnrxad" + repo: "https://github.com/cnrxad/sakura-x" + url: "https://marketplace.visualstudio.com/items?itemName=cnrxad.sakura-x" + formats: null +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#1A1B26" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#9D4EDD" + cyan: "#56B6C2" + white: "#C0CAF5" + brightBlack: "#1A1B26" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#9D4EDD" + brightCyan: "#56B6C2" + brightWhite: "#C0CAF5" +meta: + mode: "dark" + accent: "magenta" + hue: 280 + pair: null + contrast: + fg: 73.8 + black: 0 + red: 41.5 + green: 61.7 + yellow: 70 + blue: 54.1 + magenta: 28.8 + cyan: 54 + white: 73.8 + brightBlack: 0 + brightRed: 41.5 + brightGreen: 61.7 + brightYellow: 70 + brightBlue: 54.1 + brightMagenta: 28.8 + brightCyan: 54 + brightWhite: 73.8 diff --git a/themes/sakura-x--shiro-sakura-light.yaml b/themes/sakura-x--shiro-sakura-light.yaml new file mode 100644 index 00000000..456b0725 --- /dev/null +++ b/themes/sakura-x--shiro-sakura-light.yaml @@ -0,0 +1,53 @@ +name: "Sakura X (Shiro Sakura (Light)" +source: + marketplace_id: "cnrxad.sakura-x" + version: "1.0.0" + installs: 183 + rating: 0 + ratings: 0 + author: "cnrxad" + repo: "https://github.com/cnrxad/sakura-x" + url: "https://marketplace.visualstudio.com/items?itemName=cnrxad.sakura-x" + formats: null +colors: + bg: "#FFF6FA" + fg: "#403344" + black: "#FFFFFF" + red: "#E05297" + green: "#70C17C" + yellow: "#E5B85C" + blue: "#82A0F8" + magenta: "#D191FF" + cyan: "#7AD2D1" + white: "#403344" + brightBlack: "#FFFFFF" + brightRed: "#E05297" + brightGreen: "#70C17C" + brightYellow: "#E5B85C" + brightBlue: "#82A0F8" + brightMagenta: "#D191FF" + brightCyan: "#7AD2D1" + brightWhite: "#403344" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 93.1 + black: 0 + red: 58.8 + green: 38.8 + yellow: 30.7 + blue: 45.3 + magenta: 40.7 + cyan: 27.9 + white: 93.1 + brightBlack: 0 + brightRed: 58.8 + brightGreen: 38.8 + brightYellow: 30.7 + brightBlue: 45.3 + brightMagenta: 40.7 + brightCyan: 27.9 + brightWhite: 93.1 diff --git a/themes/sakya-theme.yaml b/themes/sakya-theme.yaml new file mode 100644 index 00000000..8c484fa6 --- /dev/null +++ b/themes/sakya-theme.yaml @@ -0,0 +1,54 @@ +name: "Sakya Theme" +source: + marketplace_id: "mouselee.sakya-theme" + version: "0.2.0" + installs: 20 + rating: 5 + ratings: 1 + author: "mouselee" + repo: "https://github.com/XuanLee-HEALER/sakya-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mouselee.sakya-theme" + formats: + iterm2: "https://raw.githubusercontent.com/XuanLee-HEALER/sakya-theme/main/iterm2/sakya-dorje.itermcolors" +colors: + bg: "#1B1B2A" + fg: "#E8E0D4" + black: "#0C0C14" + red: "#BB4441" + green: "#527559" + yellow: "#D2B450" + blue: "#5B8AB8" + magenta: "#C88090" + cyan: "#527559" + white: "#C4BCAE" + brightBlack: "#46465C" + brightRed: "#BB4441" + brightGreen: "#527559" + brightYellow: "#E0C888" + brightBlue: "#5B8AB8" + brightMagenta: "#C88090" + brightCyan: "#527559" + brightWhite: "#E8E0D4" +meta: + mode: "dark" + accent: "orange" + hue: 284 + pair: null + contrast: + fg: 86.8 + black: 0 + red: 25 + green: 24.4 + yellow: 61.5 + blue: 36.2 + magenta: 43.3 + cyan: 24.4 + white: 65.1 + brightBlack: 9.6 + brightRed: 25 + brightGreen: 24.4 + brightYellow: 72.8 + brightBlue: 36.2 + brightMagenta: 43.3 + brightCyan: 24.4 + brightWhite: 86.8 diff --git a/themes/samito-nest-theme-vscode.yaml b/themes/samito-nest-theme-vscode.yaml new file mode 100644 index 00000000..91498e0f --- /dev/null +++ b/themes/samito-nest-theme-vscode.yaml @@ -0,0 +1,53 @@ +name: "samito-nest-theme-vscode" +source: + marketplace_id: "samito-themes.samito-nest-theme-vscode" + version: "0.0.1" + installs: 1791 + rating: 0 + ratings: 0 + author: "samito-themes" + repo: "https://github.com/SamitoX4/samito-nest-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=samito-themes.samito-nest-theme-vscode" + formats: null +colors: + bg: "#0A0A0A" + fg: "#F5F5F5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F5F5F5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#AE0000" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.2 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 101.2 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 18.5 diff --git a/themes/samurai--samurai.yaml b/themes/samurai--samurai.yaml new file mode 100644 index 00000000..2aa9fd43 --- /dev/null +++ b/themes/samurai--samurai.yaml @@ -0,0 +1,53 @@ +name: "Samurai (Samurai)" +source: + marketplace_id: "ParsaSam.samurai" + version: "0.5.3" + installs: 2181 + rating: 5 + ratings: 3 + author: "Parsa Samadnejad" + repo: "https://github.com/TroddenSpade/Samurai-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ParsaSam.samurai" + formats: null +colors: + bg: "#222222" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D9D9D9" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.1 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 81.1 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 105.5 diff --git a/themes/sandcastle-theme.yaml b/themes/sandcastle-theme.yaml new file mode 100644 index 00000000..dcc3fd9e --- /dev/null +++ b/themes/sandcastle-theme.yaml @@ -0,0 +1,53 @@ +name: "Sandcastle Theme" +source: + marketplace_id: "ryanolsonx.sandcastle-theme" + version: "0.3.1" + installs: 2545 + rating: 5 + ratings: 2 + author: "Ryan Olson" + repo: "https://github.com/ryanolsonx/vscode-sandcastle-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ryanolsonx.sandcastle-theme" + formats: null +colors: + bg: "#272C35" + fg: "#FFF4BA" + black: "#000000" + red: "#C15E7A" + green: "#7AA697" + yellow: "#A67C2C" + blue: "#3D8C8C" + magenta: "#B17000" + cyan: "#7AA697" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#C15E7A" + brightGreen: "#7AA697" + brightYellow: "#A67C2C" + brightBlue: "#3D8C8C" + brightMagenta: "#B17000" + brightCyan: "#7AA697" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "yellow" + hue: 262 + pair: null + contrast: + fg: 95.7 + black: 0 + red: 29.9 + green: 45.1 + yellow: 32.2 + blue: 30.9 + magenta: 30.1 + cyan: 45.1 + white: 86.8 + brightBlack: 18.9 + brightRed: 29.9 + brightGreen: 45.1 + brightYellow: 32.2 + brightBlue: 30.9 + brightMagenta: 30.1 + brightCyan: 45.1 + brightWhite: 86.8 diff --git a/themes/satoru-gojo-theme--satoru-gojo-blue.yaml b/themes/satoru-gojo-theme--satoru-gojo-blue.yaml new file mode 100644 index 00000000..8cfc8502 --- /dev/null +++ b/themes/satoru-gojo-theme--satoru-gojo-blue.yaml @@ -0,0 +1,53 @@ +name: "Satoru-Gojo-theme (satoru-gojo-blue)" +source: + marketplace_id: "dev-alm.satoru-gojo-theme" + version: "0.1.8" + installs: 1319 + rating: 0 + ratings: 0 + author: "Gustavo Cezar de Almeida" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dev-alm.satoru-gojo-theme" + formats: null +colors: + bg: "#000000" + fg: "#FFE300" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 89.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/satoru-gojo-theme--satoru-gojo-white.yaml b/themes/satoru-gojo-theme--satoru-gojo-white.yaml new file mode 100644 index 00000000..408fe19a --- /dev/null +++ b/themes/satoru-gojo-theme--satoru-gojo-white.yaml @@ -0,0 +1,53 @@ +name: "Satoru-Gojo-theme (satoru-gojo-white)" +source: + marketplace_id: "dev-alm.satoru-gojo-theme" + version: "0.1.8" + installs: 1319 + rating: 0 + ratings: 0 + author: "Gustavo Cezar de Almeida" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=dev-alm.satoru-gojo-theme" + formats: null +colors: + bg: "#000000" + fg: "#44FF00" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 87.2 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/saturn-darkblue.yaml b/themes/saturn-darkblue.yaml new file mode 100644 index 00000000..725193a6 --- /dev/null +++ b/themes/saturn-darkblue.yaml @@ -0,0 +1,53 @@ +name: "saturn-darkblue" +source: + marketplace_id: "saturn-darkblue.saturn-darkblue" + version: "0.0.1" + installs: 237 + rating: 0 + ratings: 0 + author: "saturn-darkblue" + repo: "https://github.com/wesvm/vscode-saturn-darkblue" + url: "https://marketplace.visualstudio.com/items?itemName=saturn-darkblue.saturn-darkblue" + formats: null +colors: + bg: "#0D1117" + fg: "#DDDDDD" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 258 + pair: null + contrast: + fg: 85.5 + black: 0 + red: 27.2 + green: 53.5 + yellow: 86.1 + blue: 27.9 + magenta: 30.3 + cyan: 48.1 + white: 90.5 + brightBlack: 22.5 + brightRed: 39.1 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.5 + brightMagenta: 45.9 + brightCyan: 55.9 + brightWhite: 90.5 diff --git a/themes/scy-theme.yaml b/themes/scy-theme.yaml new file mode 100644 index 00000000..86a51c89 --- /dev/null +++ b/themes/scy-theme.yaml @@ -0,0 +1,53 @@ +name: "SCY-Theme" +source: + marketplace_id: "SCY-Theme.scy-theme" + version: "0.0.2" + installs: 7 + rating: 0 + ratings: 0 + author: "SCY-Theme" + repo: "https://github.com/itztevy/scy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SCY-Theme.scy-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#FFFFFF" + black: "#000000" + red: "#FF5555" + green: "#FFFFFF" + yellow: "#FFFFFF" + blue: "#FFFFFF" + magenta: "#FFFFFF" + cyan: "#FFFFFF" + white: "#FFFFFF" + brightBlack: "#555555" + brightRed: "#FF7777" + brightGreen: "#FFFFFF" + brightYellow: "#FFFFFF" + brightBlue: "#FFFFFF" + brightMagenta: "#FFFFFF" + brightCyan: "#FFFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 0 + black: 106 + red: 57.4 + green: 0 + yellow: 0 + blue: 0 + magenta: 0 + cyan: 0 + white: 0 + brightBlack: 85.9 + brightRed: 49.8 + brightGreen: 0 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 0 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/sd-deep-purple-theme.yaml b/themes/sd-deep-purple-theme.yaml new file mode 100644 index 00000000..08670703 --- /dev/null +++ b/themes/sd-deep-purple-theme.yaml @@ -0,0 +1,53 @@ +name: "SD_DEEP_PURPLE_THEME" +source: + marketplace_id: "stackdevlopr.sd-deep-purple-theme" + version: "1.1.0" + installs: 146 + rating: 0 + ratings: 0 + author: "stackdevlopr" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=stackdevlopr.sd-deep-purple-theme" + formats: null +colors: + bg: "#181B21" + fg: "#FF0000" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 36.1 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/sea-glass-theme.yaml b/themes/sea-glass-theme.yaml new file mode 100644 index 00000000..18a46868 --- /dev/null +++ b/themes/sea-glass-theme.yaml @@ -0,0 +1,53 @@ +name: "Sea Glass Theme" +source: + marketplace_id: "KyleStewart.sea-glass-color-theme" + version: "0.4.0" + installs: 4867 + rating: 5 + ratings: 1 + author: "Kyle Stewart" + repo: "https://github.com/KStew1017/sea-glass-vscode-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=KyleStewart.sea-glass-color-theme" + formats: null +colors: + bg: "#1D2021" + fg: "#EBDBB2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 83.3 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.3 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/seabird.yaml b/themes/seabird.yaml new file mode 100644 index 00000000..9db23813 --- /dev/null +++ b/themes/seabird.yaml @@ -0,0 +1,53 @@ +name: "seabird" +source: + marketplace_id: "bbrakenhoff.seabird" + version: "0.0.4" + installs: 754 + rating: 4.5 + ratings: 2 + author: "bbrakenhoff" + repo: "https://github.com/bbrakenhoff/seabird-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=bbrakenhoff.seabird" + formats: null +colors: + bg: "#0B141A" + fg: "#787E82" + black: "#6D767D" + red: "#BA656D" + green: "#5B8A55" + yellow: "#8A7C55" + blue: "#5F8299" + magenta: "#997383" + cyan: "#548587" + white: "#FFFFFF" + brightBlack: "#6D767D" + brightRed: "#BA656D" + brightGreen: "#5B8A55" + brightYellow: "#8A7C55" + brightBlue: "#5F8299" + brightMagenta: "#997383" + brightCyan: "#548587" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 238 + pair: null + contrast: + fg: 32.7 + black: 28.8 + red: 33.5 + green: 33.5 + yellow: 32.7 + blue: 33 + magenta: 33 + cyan: 32.6 + white: 107.2 + brightBlack: 28.8 + brightRed: 33.5 + brightGreen: 33.5 + brightYellow: 32.7 + brightBlue: 33 + brightMagenta: 33 + brightCyan: 32.6 + brightWhite: 107.2 diff --git a/themes/secretspring.yaml b/themes/secretspring.yaml new file mode 100644 index 00000000..e28fcbd2 --- /dev/null +++ b/themes/secretspring.yaml @@ -0,0 +1,53 @@ +name: "secretspring" +source: + marketplace_id: "wildtype.secretspring" + version: "0.0.5" + installs: 65 + rating: 0 + ratings: 0 + author: "wildtype" + repo: "https://github.com/wtype/secretspring" + url: "https://marketplace.visualstudio.com/items?itemName=wildtype.secretspring" + formats: null +colors: + bg: "#11161F" + fg: "#D5E6F6" + black: "#11161F" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#70A7F5" + magenta: "#9FD7FF" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#70A7F5" + brightMagenta: "#9FD7FF" + brightCyan: "#DCE2B5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 262 + pair: null + contrast: + fg: 89.3 + black: 0 + red: 39.4 + green: 67.4 + yellow: 82.2 + blue: 52.9 + magenta: 77.3 + cyan: 59.8 + white: 107 + brightBlack: 15.7 + brightRed: 39.4 + brightGreen: 67.4 + brightYellow: 93.8 + brightBlue: 52.9 + brightMagenta: 77.3 + brightCyan: 85.7 + brightWhite: 107 diff --git a/themes/semantic-noctis--semantic-noctis-lux.yaml b/themes/semantic-noctis--semantic-noctis-lux.yaml new file mode 100644 index 00000000..60c92f47 --- /dev/null +++ b/themes/semantic-noctis--semantic-noctis-lux.yaml @@ -0,0 +1,53 @@ +name: "Semantic Noctis (Semantic Noctis Lux)" +source: + marketplace_id: "jnooree.semantic-noctis" + version: "1.3.3" + installs: 2748 + rating: 0 + ratings: 0 + author: "Nuri Jung" + repo: "https://github.com/jnooree/noctis" + url: "https://marketplace.visualstudio.com/items?itemName=jnooree.semantic-noctis" + formats: null +colors: + bg: "#FEF9F0" + fg: "#004D57" + black: "#003B42" + red: "#E34E1C" + green: "#00B368" + yellow: "#F49725" + blue: "#0094F0" + magenta: "#FF5792" + cyan: "#00BDD6" + white: "#8CA6A6" + brightBlack: "#518A90" + brightRed: "#FF4000" + brightGreen: "#00D17A" + brightYellow: "#FF8C00" + brightBlue: "#0FA3FF" + brightMagenta: "#FF6B9F" + brightCyan: "#00CBE6" + brightWhite: "#BBC3C4" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 88.3 + black: 94.3 + red: 62.1 + green: 49 + yellow: 40.8 + blue: 55.5 + magenta: 52.2 + cyan: 40.8 + white: 47.2 + brightBlack: 63 + brightRed: 57.6 + brightGreen: 35.1 + brightYellow: 42.1 + brightBlue: 48.8 + brightMagenta: 47.9 + brightCyan: 33.8 + brightWhite: 29.9 diff --git a/themes/senbonzakura.yaml b/themes/senbonzakura.yaml new file mode 100644 index 00000000..ff28bcfe --- /dev/null +++ b/themes/senbonzakura.yaml @@ -0,0 +1,53 @@ +name: "Senbonzakura" +source: + marketplace_id: "Ferupin.senbonzakura" + version: "1.0.2" + installs: 80 + rating: 0 + ratings: 0 + author: "Ferupin" + repo: "https://github.com/ferupin/senbonzakura-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Ferupin.senbonzakura" + formats: null +colors: + bg: "#1C1828" + fg: "#FF54AC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 295 + pair: null + contrast: + fg: 45.5 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.4 + cyan: 47.2 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.2 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.6 diff --git a/themes/senna-theme.yaml b/themes/senna-theme.yaml new file mode 100644 index 00000000..2ff48cf6 --- /dev/null +++ b/themes/senna-theme.yaml @@ -0,0 +1,53 @@ +name: "Senna Theme" +source: + marketplace_id: "vitorvxj.senna-theme" + version: "1.0.3" + installs: 116 + rating: 5 + ratings: 1 + author: "XJ" + repo: "https://github.com/vitorvxj/Senna-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=vitorvxj.senna-theme" + formats: null +colors: + bg: "#131313" + fg: "#24FFEA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 90.6 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/sequoia--sequoia-monochrome.yaml b/themes/sequoia--sequoia-monochrome.yaml new file mode 100644 index 00000000..52c7d549 --- /dev/null +++ b/themes/sequoia--sequoia-monochrome.yaml @@ -0,0 +1,53 @@ +name: "Sequoia (Sequoia Monochrome)" +source: + marketplace_id: "wicked-labs.sequoia" + version: "1.31.3" + installs: 23663 + rating: 4.89 + ratings: 9 + author: "Michael Andreuzza " + repo: "https://github.com/Sequoia-Theme/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" + formats: null +colors: + bg: "#0F1014" + fg: "#868690" + black: "#131317" + red: "#999EB2" + green: "#626983" + yellow: "#D3D5DE" + blue: "#7C829D" + magenta: "#E2E4ED" + cyan: "#B6BAC8" + white: "#868690" + brightBlack: "#575861" + brightRed: "#999EB2" + brightGreen: "#626983" + brightYellow: "#D3D5DE" + brightBlue: "#7C829D" + brightMagenta: "#E2E4ED" + brightCyan: "#B6BAC8" + brightWhite: "#868690" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 37.6 + black: 0 + red: 49.6 + green: 24.2 + yellow: 80.8 + blue: 35.7 + magenta: 90.1 + cyan: 64.9 + white: 37.6 + brightBlack: 17 + brightRed: 49.6 + brightGreen: 24.2 + brightYellow: 80.8 + brightBlue: 35.7 + brightMagenta: 90.1 + brightCyan: 64.9 + brightWhite: 37.6 diff --git a/themes/sequoia--sequoia-moonlight.yaml b/themes/sequoia--sequoia-moonlight.yaml new file mode 100644 index 00000000..b1e5fc49 --- /dev/null +++ b/themes/sequoia--sequoia-moonlight.yaml @@ -0,0 +1,53 @@ +name: "Sequoia (Sequoia Moonlight)" +source: + marketplace_id: "wicked-labs.sequoia" + version: "1.31.3" + installs: 23663 + rating: 4.89 + ratings: 9 + author: "Michael Andreuzza " + repo: "https://github.com/Sequoia-Theme/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" + formats: null +colors: + bg: "#0F1014" + fg: "#868690" + black: "#131317" + red: "#F58EE0" + green: "#8EB6F5" + yellow: "#9898A6" + blue: "#C58FFF" + magenta: "#FDFDFE" + cyan: "#FFBB88" + white: "#868690" + brightBlack: "#575861" + brightRed: "#F58EE0" + brightGreen: "#8EB6F5" + brightYellow: "#9898A6" + brightBlue: "#C58FFF" + brightMagenta: "#FDFDFE" + brightCyan: "#FFBB88" + brightWhite: "#868690" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 37.6 + black: 0 + red: 60.2 + green: 61.6 + yellow: 46.8 + blue: 54.5 + magenta: 106.2 + cyan: 73.7 + white: 37.6 + brightBlack: 17 + brightRed: 60.2 + brightGreen: 61.6 + brightYellow: 46.8 + brightBlue: 54.5 + brightMagenta: 106.2 + brightCyan: 73.7 + brightWhite: 37.6 diff --git a/themes/sequoia--sequoia-retro.yaml b/themes/sequoia--sequoia-retro.yaml new file mode 100644 index 00000000..83772f1e --- /dev/null +++ b/themes/sequoia--sequoia-retro.yaml @@ -0,0 +1,53 @@ +name: "Sequoia (Sequoia Retro)" +source: + marketplace_id: "wicked-labs.sequoia" + version: "1.31.3" + installs: 23663 + rating: 4.89 + ratings: 9 + author: "Michael Andreuzza " + repo: "https://github.com/Sequoia-Theme/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.sequoia" + formats: null +colors: + bg: "#0F1014" + fg: "#868690" + black: "#131317" + red: "#829FA7" + green: "#648F68" + yellow: "#DA674B" + blue: "#5C87A4" + magenta: "#E8B246" + cyan: "#A27E57" + white: "#868690" + brightBlack: "#575861" + brightRed: "#E8B246" + brightGreen: "#648F68" + brightYellow: "#DA674B" + brightBlue: "#5C87A4" + brightMagenta: "#829FA7" + brightCyan: "#A27E57" + brightWhite: "#868690" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 37.6 + black: 0 + red: 47.3 + green: 36.7 + yellow: 39.4 + blue: 35.3 + magenta: 65.2 + cyan: 36.6 + white: 37.6 + brightBlack: 17 + brightRed: 65.2 + brightGreen: 36.7 + brightYellow: 39.4 + brightBlue: 35.3 + brightMagenta: 47.3 + brightCyan: 36.6 + brightWhite: 37.6 diff --git a/themes/serendipity--serendipity-midnight-electric.yaml b/themes/serendipity--serendipity-midnight-electric.yaml new file mode 100644 index 00000000..fa1c88e0 --- /dev/null +++ b/themes/serendipity--serendipity-midnight-electric.yaml @@ -0,0 +1,53 @@ +name: "Serendipity (Serendipity Midnight Electric)" +source: + marketplace_id: "wicked-labs.wvsc-serendipity" + version: "1.66.2" + installs: 70609 + rating: 4.76 + ratings: 17 + author: "Michael Andreuzza " + repo: "https://github.com/Serendipity-Theme/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" + formats: null +colors: + bg: "#0A0E15" + fg: "#ACB9D9" + black: "#1C1C1C" + red: "#9E81C9" + green: "#748E4E" + yellow: "#C8A662" + blue: "#78A9FF" + magenta: "#E879F9" + cyan: "#73D0FF" + white: "#9CA3AF" + brightBlack: "#6B7280" + brightRed: "#D4BFFF" + brightGreen: "#A6CC70" + brightYellow: "#FAD07B" + brightBlue: "#78A9FF" + brightMagenta: "#F0ABFC" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 261 + pair: null + contrast: + fg: 64.3 + black: 0 + red: 41.5 + green: 37.1 + yellow: 56.3 + blue: 55.5 + magenta: 53.8 + cyan: 71.6 + white: 51.9 + brightBlack: 27.8 + brightRed: 73.7 + brightGreen: 68.2 + brightYellow: 81.2 + brightBlue: 55.5 + brightMagenta: 70.3 + brightCyan: 81.9 + brightWhite: 107.6 diff --git a/themes/serendipity--serendipity-midnight.yaml b/themes/serendipity--serendipity-midnight.yaml new file mode 100644 index 00000000..1cfd0731 --- /dev/null +++ b/themes/serendipity--serendipity-midnight.yaml @@ -0,0 +1,53 @@ +name: "Serendipity (Serendipity Midnight)" +source: + marketplace_id: "wicked-labs.wvsc-serendipity" + version: "1.66.2" + installs: 70609 + rating: 4.76 + ratings: 17 + author: "Michael Andreuzza " + repo: "https://github.com/Serendipity-Theme/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" + formats: null +colors: + bg: "#151726" + fg: "#DEE0EF" + black: "#232534" + red: "#EE8679" + green: "#5BA2D0" + yellow: "#A78BFA" + blue: "#94B8FF" + magenta: "#9CCFD8" + cyan: "#F8D2C9" + white: "#DEE0EF" + brightBlack: "#8D8F9E" + brightRed: "#EE8679" + brightGreen: "#5BA2D0" + brightYellow: "#A78BFA" + brightBlue: "#94B8FF" + brightMagenta: "#9CCFD8" + brightCyan: "#F8D2C9" + brightWhite: "#DEE0EF" +meta: + mode: "dark" + accent: "magenta" + hue: 278 + pair: null + contrast: + fg: 87.2 + black: 0 + red: 51.7 + green: 47.1 + yellow: 48.2 + blue: 62.9 + magenta: 71.2 + cyan: 83.2 + white: 87.2 + brightBlack: 41.3 + brightRed: 51.7 + brightGreen: 47.1 + brightYellow: 48.2 + brightBlue: 62.9 + brightMagenta: 71.2 + brightCyan: 83.2 + brightWhite: 87.2 diff --git a/themes/serendipity--serendipity-morning.yaml b/themes/serendipity--serendipity-morning.yaml new file mode 100644 index 00000000..1ba02e88 --- /dev/null +++ b/themes/serendipity--serendipity-morning.yaml @@ -0,0 +1,53 @@ +name: "Serendipity (Serendipity Morning)" +source: + marketplace_id: "wicked-labs.wvsc-serendipity" + version: "1.66.2" + installs: 70609 + rating: 4.76 + ratings: 17 + author: "Michael Andreuzza " + repo: "https://github.com/Serendipity-Theme/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" + formats: null +colors: + bg: "#FDFDFE" + fg: "#4E5377" + black: "#D8DAE4" + red: "#D26A5D" + green: "#3788BE" + yellow: "#886CDB" + blue: "#7397DE" + magenta: "#77AAB3" + cyan: "#F19A8E" + white: "#4E5377" + brightBlack: "#5F6488" + brightRed: "#D26A5D" + brightGreen: "#3788BE" + brightYellow: "#886CDB" + brightBlue: "#7397DE" + brightMagenta: "#77AAB3" + brightCyan: "#F19A8E" + brightWhite: "#4E5377" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 84.6 + black: 18 + red: 61.2 + green: 64.7 + yellow: 66.2 + blue: 54.2 + magenta: 49 + cyan: 40.9 + white: 84.6 + brightBlack: 77.5 + brightRed: 61.2 + brightGreen: 64.7 + brightYellow: 66.2 + brightBlue: 54.2 + brightMagenta: 49 + brightCyan: 40.9 + brightWhite: 84.6 diff --git a/themes/serendipity--serendipity-sunset.yaml b/themes/serendipity--serendipity-sunset.yaml new file mode 100644 index 00000000..31bd842b --- /dev/null +++ b/themes/serendipity--serendipity-sunset.yaml @@ -0,0 +1,53 @@ +name: "Serendipity (Serendipity Sunset)" +source: + marketplace_id: "wicked-labs.wvsc-serendipity" + version: "1.66.2" + installs: 70609 + rating: 4.76 + ratings: 17 + author: "Michael Andreuzza " + repo: "https://github.com/Serendipity-Theme/vs-code" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.wvsc-serendipity" + formats: null +colors: + bg: "#202231" + fg: "#DEE0EF" + black: "#363847" + red: "#D1918F" + green: "#709BBD" + yellow: "#A392DC" + blue: "#A0B6E8" + magenta: "#AAC9D4" + cyan: "#D6B4B4" + white: "#DEE0EF" + brightBlack: "#6B6D7C" + brightRed: "#D1918F" + brightGreen: "#709BBD" + brightYellow: "#A392DC" + brightBlue: "#A0B6E8" + brightMagenta: "#AAC9D4" + brightCyan: "#D6B4B4" + brightWhite: "#DEE0EF" +meta: + mode: "dark" + accent: "magenta" + hue: 278 + pair: null + contrast: + fg: 85.7 + black: 0 + red: 49.1 + green: 43.2 + yellow: 46.5 + blue: 60.3 + magenta: 68.3 + cyan: 63.7 + white: 85.7 + brightBlack: 23.8 + brightRed: 49.1 + brightGreen: 43.2 + brightYellow: 46.5 + brightBlue: 60.3 + brightMagenta: 68.3 + brightCyan: 63.7 + brightWhite: 85.7 diff --git a/themes/serendipity-v1--serendipity-midnight-v1.yaml b/themes/serendipity-v1--serendipity-midnight-v1.yaml new file mode 100644 index 00000000..e9b6c97b --- /dev/null +++ b/themes/serendipity-v1--serendipity-midnight-v1.yaml @@ -0,0 +1,53 @@ +name: "Serendipity V1 (Serendipity Midnight V1)" +source: + marketplace_id: "wicked-labs.old-serendipity" + version: "0.6.0" + installs: 4492 + rating: 5 + ratings: 1 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/old-serendipity" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.old-serendipity" + formats: null +colors: + bg: "#0A0E15" + fg: "#F6F6F6" + black: "#1C1C1C" + red: "#BE95FF" + green: "#748E4E" + yellow: "#C8A662" + blue: "#78A9FF" + magenta: "#E879F9" + cyan: "#22D3EE" + white: "#9CA3AF" + brightBlack: "#6B7280" + brightRed: "#D4BFFF" + brightGreen: "#A6CC70" + brightYellow: "#FAD07B" + brightBlue: "#8BB6FF" + brightMagenta: "#F0ABFC" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 261 + pair: "Serendipity V1 (Serendipity Morning V1)" + contrast: + fg: 101.6 + black: 0 + red: 55.5 + green: 37.1 + yellow: 56.3 + blue: 55.5 + magenta: 53.8 + cyan: 69.3 + white: 51.9 + brightBlack: 27.8 + brightRed: 73.7 + brightGreen: 68.2 + brightYellow: 81.2 + brightBlue: 62.1 + brightMagenta: 70.3 + brightCyan: 81.9 + brightWhite: 107.6 diff --git a/themes/serendipity-v1--serendipity-morning-v1.yaml b/themes/serendipity-v1--serendipity-morning-v1.yaml new file mode 100644 index 00000000..0e9cd906 --- /dev/null +++ b/themes/serendipity-v1--serendipity-morning-v1.yaml @@ -0,0 +1,53 @@ +name: "Serendipity V1 (Serendipity Morning V1)" +source: + marketplace_id: "wicked-labs.old-serendipity" + version: "0.6.0" + installs: 4492 + rating: 5 + ratings: 1 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/old-serendipity" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.old-serendipity" + formats: null +colors: + bg: "#FFFFFF" + fg: "#575F66" + black: "#1C1C1C" + red: "#8568B2" + green: "#748E4E" + yellow: "#C8A662" + blue: "#6087CC" + magenta: "#E879F9" + cyan: "#1BA8BE" + white: "#9CA3AF" + brightBlack: "#6B7280" + brightRed: "#9177B9" + brightGreen: "#A6CC70" + brightYellow: "#FAD07B" + brightBlue: "#78A9FF" + brightMagenta: "#F0ABFC" + brightCyan: "#5FC2D1" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: "Serendipity V1 (Serendipity Midnight V1)" + contrast: + fg: 82.2 + black: 104 + red: 71.5 + green: 64.2 + yellow: 45.5 + blue: 63.4 + magenta: 47.9 + cyan: 54 + white: 49.8 + brightBlack: 73.6 + brightRed: 65.3 + brightGreen: 34.1 + brightYellow: 21.8 + brightBlue: 46.3 + brightMagenta: 32.1 + brightCyan: 40.3 + brightWhite: 0 diff --git a/themes/serendipity-v1--serendipity-sunset-v1.yaml b/themes/serendipity-v1--serendipity-sunset-v1.yaml new file mode 100644 index 00000000..ce9bbeb1 --- /dev/null +++ b/themes/serendipity-v1--serendipity-sunset-v1.yaml @@ -0,0 +1,53 @@ +name: "Serendipity V1 (Serendipity Sunset V1)" +source: + marketplace_id: "wicked-labs.old-serendipity" + version: "0.6.0" + installs: 4492 + rating: 5 + ratings: 1 + author: "Michael Andreuzza " + repo: "https://github.com/michael-andreuzza/old-serendipity" + url: "https://marketplace.visualstudio.com/items?itemName=wicked-labs.old-serendipity" + formats: null +colors: + bg: "#1E2431" + fg: "#F6F6F6" + black: "#1C1C1C" + red: "#BE95FF" + green: "#748E4E" + yellow: "#C8A662" + blue: "#78A9FF" + magenta: "#E879F9" + cyan: "#22D3EE" + white: "#9CA3AF" + brightBlack: "#6B7280" + brightRed: "#D4BFFF" + brightGreen: "#A6CC70" + brightYellow: "#FAD07B" + brightBlue: "#8BB6FF" + brightMagenta: "#F0ABFC" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 265 + pair: null + contrast: + fg: 99.2 + black: 0 + red: 53.1 + green: 34.7 + yellow: 53.8 + blue: 53 + magenta: 51.3 + cyan: 66.8 + white: 49.4 + brightBlack: 25.4 + brightRed: 71.2 + brightGreen: 65.7 + brightYellow: 78.7 + brightBlue: 59.7 + brightMagenta: 67.9 + brightCyan: 79.4 + brightWhite: 105.1 diff --git a/themes/set.yaml b/themes/set.yaml new file mode 100644 index 00000000..30ae09ea --- /dev/null +++ b/themes/set.yaml @@ -0,0 +1,53 @@ +name: "Set" +source: + marketplace_id: "u29dc.set" + version: "2.0.7" + installs: 1570 + rating: 0 + ratings: 0 + author: "iinfin" + repo: "https://github.com/u29dc/set-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=u29dc.set" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#0A0A0A" + red: "#7F7F7F" + green: "#7F7F7F" + yellow: "#191919" + blue: "#7F7F7F" + magenta: "#7F7F7F" + cyan: "#7F7F7F" + white: "#F5F5F5" + brightBlack: "#000000" + brightRed: "#7F7F7F" + brightGreen: "#7F7F7F" + brightYellow: "#7F7F7F" + brightBlue: "#7F7F7F" + brightMagenta: "#7F7F7F" + brightCyan: "#7F7F7F" + brightWhite: "#CCCCCC" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 106 + black: 105.8 + red: 67.4 + green: 67.4 + yellow: 104.4 + blue: 67.4 + magenta: 67.4 + cyan: 67.4 + white: 0 + brightBlack: 106 + brightRed: 67.4 + brightGreen: 67.4 + brightYellow: 67.4 + brightBlue: 67.4 + brightMagenta: 67.4 + brightCyan: 67.4 + brightWhite: 27.3 diff --git a/themes/seti-ux.yaml b/themes/seti-ux.yaml new file mode 100644 index 00000000..6384c503 --- /dev/null +++ b/themes/seti-ux.yaml @@ -0,0 +1,53 @@ +name: "Seti_UX" +source: + marketplace_id: "ctf0.seti-ux" + version: "0.1.7" + installs: 1554 + rating: 5 + ratings: 1 + author: "ctf0" + repo: "https://github.com/ctf0/Seti_UX-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=ctf0.seti-ux" + formats: null +colors: + bg: "#1E2024" + fg: "#FFFFFF" + black: "#292C31" + red: "#FF4545" + green: "#42E0AC" + yellow: "#42E0AC" + blue: "#FF4545" + magenta: "#CF3BE9" + cyan: "#94DDFF" + white: "#FFFFFF" + brightBlack: "#5A5A5A" + brightRed: "#FF4545" + brightGreen: "#42E0AC" + brightYellow: "#42E0AC" + brightBlue: "#FF4545" + brightMagenta: "#CF3BE9" + brightCyan: "#94DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 105.8 + black: 0 + red: 39.7 + green: 71.4 + yellow: 71.4 + blue: 39.7 + magenta: 34.9 + cyan: 78 + white: 105.8 + brightBlack: 16 + brightRed: 39.7 + brightGreen: 71.4 + brightYellow: 71.4 + brightBlue: 39.7 + brightMagenta: 34.9 + brightCyan: 78 + brightWhite: 105.8 diff --git a/themes/sevastolink.yaml b/themes/sevastolink.yaml new file mode 100644 index 00000000..4b61d3f5 --- /dev/null +++ b/themes/sevastolink.yaml @@ -0,0 +1,54 @@ +name: "Sevastolink" +source: + marketplace_id: "paulopacitti.sevastolink" + version: "0.0.4" + installs: 1280 + rating: 5 + ratings: 2 + author: "Paulo Pacitti 💎" + repo: "https://github.com/paulopacitti/sevastolink" + url: "https://marketplace.visualstudio.com/items?itemName=paulopacitti.sevastolink" + formats: + iterm2: "https://raw.githubusercontent.com/paulopacitti/sevastolink/master/iterm/sevastolink.itermcolors" +colors: + bg: "#0C290C" + fg: "#CCD5D4" + black: "#0C290C" + red: "#F07826" + green: "#05B669" + yellow: "#F07826" + blue: "#05B669" + magenta: "#F07826" + cyan: "#05B669" + white: "#7A807F" + brightBlack: "#0C290C" + brightRed: "#F07826" + brightGreen: "#05B669" + brightYellow: "#F07826" + brightBlue: "#05B669" + brightMagenta: "#F07826" + brightCyan: "#05B669" + brightWhite: "#CCD5D4" +meta: + mode: "dark" + accent: "yellow" + hue: 143 + pair: null + contrast: + fg: 77.2 + black: 0 + red: 45.4 + green: 48.1 + yellow: 45.4 + blue: 48.1 + magenta: 45.4 + cyan: 48.1 + white: 31.4 + brightBlack: 0 + brightRed: 45.4 + brightGreen: 48.1 + brightYellow: 45.4 + brightBlue: 48.1 + brightMagenta: 45.4 + brightCyan: 48.1 + brightWhite: 77.2 diff --git a/themes/shades--24.yaml b/themes/shades--24.yaml new file mode 100644 index 00000000..893de2a4 --- /dev/null +++ b/themes/shades--24.yaml @@ -0,0 +1,53 @@ +name: "Shades (24)" +source: + marketplace_id: "YesCode.shadesTheme" + version: "0.0.13" + installs: 3084 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/ShadesThemeVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.shadesTheme" + formats: null +colors: + bg: "#F9F7F3" + fg: "#03031F" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#3B3B3F" + brightYellow: "#FFCC80" + brightBlue: "#606066" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.1 + black: 98.7 + red: 54 + green: 35.6 + yellow: 24.1 + blue: 48.6 + magenta: 76.6 + cyan: 46.7 + white: 48.9 + brightBlack: 77.6 + brightRed: 54 + brightGreen: 91.1 + brightYellow: 17.8 + brightBlue: 76.5 + brightMagenta: 76.6 + brightCyan: 46.7 + brightWhite: 0 diff --git a/themes/shades--minimal.yaml b/themes/shades--minimal.yaml new file mode 100644 index 00000000..9f6294e2 --- /dev/null +++ b/themes/shades--minimal.yaml @@ -0,0 +1,53 @@ +name: "Shades (Minimal)" +source: + marketplace_id: "YesCode.shadesTheme" + version: "0.0.13" + installs: 3084 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/ShadesThemeVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.shadesTheme" + formats: null +colors: + bg: "#2B2735" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#BDEFFA" + brightYellow: "#E7F0FF" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 298 + pair: null + contrast: + fg: 101.9 + black: 0 + red: 39.3 + green: 58.3 + yellow: 70.4 + blue: 44.9 + magenta: 16.9 + cyan: 46.8 + white: 44.6 + brightBlack: 15.9 + brightRed: 39.3 + brightGreen: 88.3 + brightYellow: 93.9 + brightBlue: 16.1 + brightMagenta: 16.9 + brightCyan: 46.8 + brightWhite: 96.2 diff --git a/themes/shades--neutral.yaml b/themes/shades--neutral.yaml new file mode 100644 index 00000000..a9ae51b1 --- /dev/null +++ b/themes/shades--neutral.yaml @@ -0,0 +1,53 @@ +name: "Shades (Neutral)" +source: + marketplace_id: "YesCode.shadesTheme" + version: "0.0.13" + installs: 3084 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/ShadesThemeVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.shadesTheme" + formats: null +colors: + bg: "#1B1F2A" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#B0C5C3" + brightYellow: "#20473A" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 269 + pair: null + contrast: + fg: 103.6 + black: 0 + red: 41 + green: 60 + yellow: 72.1 + blue: 46.5 + magenta: 18.5 + cyan: 48.4 + white: 46.2 + brightBlack: 17.6 + brightRed: 41 + brightGreen: 67 + brightYellow: 0 + brightBlue: 17.7 + brightMagenta: 18.5 + brightCyan: 48.4 + brightWhite: 97.9 diff --git a/themes/shades--shades.yaml b/themes/shades--shades.yaml new file mode 100644 index 00000000..8f4180fe --- /dev/null +++ b/themes/shades--shades.yaml @@ -0,0 +1,53 @@ +name: "Shades (Shades)" +source: + marketplace_id: "YesCode.shadesTheme" + version: "0.0.13" + installs: 3084 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/ShadesThemeVSC" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.shadesTheme" + formats: null +colors: + bg: "#0B0C0B" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#CFBDFA" + brightYellow: "#E7F0FF" + brightBlue: "#1E8094" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.4 + black: 0 + red: 42.8 + green: 61.8 + yellow: 73.9 + blue: 48.3 + magenta: 20.3 + cyan: 50.2 + white: 48 + brightBlack: 19.4 + brightRed: 42.8 + brightGreen: 72 + brightYellow: 97.4 + brightBlue: 29.9 + brightMagenta: 20.3 + brightCyan: 50.2 + brightWhite: 99.7 diff --git a/themes/shades-of-green.yaml b/themes/shades-of-green.yaml new file mode 100644 index 00000000..27c62c87 --- /dev/null +++ b/themes/shades-of-green.yaml @@ -0,0 +1,53 @@ +name: "Shades of Green" +source: + marketplace_id: "bakrimoharram.shades-of-green" + version: "0.0.1" + installs: 2132 + rating: 0 + ratings: 0 + author: "bakrimoharram" + repo: "https://github.com/bakrimoharram/shades-of-green" + url: "https://marketplace.visualstudio.com/items?itemName=bakrimoharram.shades-of-green" + formats: null +colors: + bg: "#0E2810" + fg: "#BC7B7B" + black: "#000000" + red: "#CD3131" + green: "#00B26E" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#A7EEAE" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#4AE8A9" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#D9FFDD" +meta: + mode: "dark" + accent: "pink" + hue: 145 + pair: null + contrast: + fg: 38.2 + black: 0 + red: 25.1 + green: 46.6 + yellow: 84 + blue: 25.8 + magenta: 28.1 + cyan: 45.9 + white: 83.6 + brightBlack: 20.4 + brightRed: 36.9 + brightGreen: 75 + brightYellow: 94 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 98.8 diff --git a/themes/shades-of-life--shades-of-life.yaml b/themes/shades-of-life--shades-of-life.yaml new file mode 100644 index 00000000..0c52ef3b --- /dev/null +++ b/themes/shades-of-life--shades-of-life.yaml @@ -0,0 +1,53 @@ +name: "shades-of-life (Shades of Life)" +source: + marketplace_id: "rafael-bertelli-borges.shades-of-life" + version: "0.0.2" + installs: 93 + rating: 0 + ratings: 0 + author: "Rafael Bertelli Borges" + repo: "https://github.com/rafaelbertelli/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=rafael-bertelli-borges.shades-of-life" + formats: null +colors: + bg: "#1D0A2F" + fg: "#E0E0E0" + black: "#000000" + red: "#FF3A00" + green: "#00FF50" + yellow: "#FFCC00" + blue: "#00CCFF" + magenta: "#880088" + cyan: "#00BCD4" + white: "#FFFFFF" + brightBlack: "#757575" + brightRed: "#FF3A00" + brightGreen: "#00FF50" + brightYellow: "#FFCC00" + brightBlue: "#00CCFF" + brightMagenta: "#880088" + brightCyan: "#00BCD4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 304 + pair: null + contrast: + fg: 87 + black: 0 + red: 39.2 + green: 86 + yellow: 78.7 + blue: 66.3 + magenta: 13.5 + cyan: 56.6 + white: 107 + brightBlack: 28.8 + brightRed: 39.2 + brightGreen: 86 + brightYellow: 78.7 + brightBlue: 66.3 + brightMagenta: 13.5 + brightCyan: 56.6 + brightWhite: 107 diff --git a/themes/shades-of-life-shades-of-life-light.yaml b/themes/shades-of-life-shades-of-life-light.yaml new file mode 100644 index 00000000..1e269743 --- /dev/null +++ b/themes/shades-of-life-shades-of-life-light.yaml @@ -0,0 +1,53 @@ +name: "shades-of-life (Shades of Life (Light))" +source: + marketplace_id: "rafael-bertelli-borges.shades-of-life" + version: "0.0.2" + installs: 93 + rating: 0 + ratings: 0 + author: "Rafael Bertelli Borges" + repo: "https://github.com/rafaelbertelli/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=rafael-bertelli-borges.shades-of-life" + formats: null +colors: + bg: "#EEECEC" + fg: "#271718" + black: "#000000" + red: "#5E2B22" + green: "#00A74E" + yellow: "#41481E" + blue: "#41287D" + magenta: "#3A1E48" + cyan: "#276B6B" + white: "#C48100" + brightBlack: "#464646" + brightRed: "#FF5C3E" + brightGreen: "#00AD52" + brightYellow: "#728A00" + brightBlue: "#8F60FF" + brightMagenta: "#9E2AD7" + brightCyan: "#009D9D" + brightWhite: "#898900" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 93 + black: 95 + red: 84.9 + green: 47 + yellow: 81.4 + blue: 85 + magenta: 89.9 + cyan: 69.5 + white: 48.3 + brightBlack: 80.8 + brightRed: 45.4 + brightGreen: 44.4 + brightYellow: 55.4 + brightBlue: 55.5 + brightMagenta: 65.5 + brightCyan: 49 + brightWhite: 53.6 diff --git a/themes/shades-of-stoicism--shades.yaml b/themes/shades-of-stoicism--shades.yaml new file mode 100644 index 00000000..6c8eb0d9 --- /dev/null +++ b/themes/shades-of-stoicism--shades.yaml @@ -0,0 +1,53 @@ +name: "Shades Of Stoicism (Shades)" +source: + marketplace_id: "ddh4r4m.shadesai" + version: "1.0.8" + installs: 571 + rating: 5 + ratings: 1 + author: "Dharam Dhurandhar" + repo: "https://github.com/ddh4r4m/Shades" + url: "https://marketplace.visualstudio.com/items?itemName=ddh4r4m.shadesai" + formats: null +colors: + bg: "#25273D" + fg: "#E2E8F0" + black: "#2D3748" + red: "#F56565" + green: "#68D391" + yellow: "#ECC94B" + blue: "#4299E1" + magenta: "#9F7AEA" + cyan: "#0BC5EA" + white: "#E2E8F0" + brightBlack: "#4A5568" + brightRed: "#FC8181" + brightGreen: "#9AE6B4" + brightYellow: "#F6E05E" + brightBlue: "#63B3ED" + brightMagenta: "#B794F4" + brightCyan: "#76E4F7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 279 + pair: null + contrast: + fg: 88.9 + black: 0 + red: 41.9 + green: 64.2 + yellow: 72 + blue: 41.1 + magenta: 38.4 + cyan: 59.2 + white: 88.9 + brightBlack: 12.3 + brightRed: 50.8 + brightGreen: 77.8 + brightYellow: 83.7 + brightBlue: 53.7 + brightMagenta: 50.2 + brightCyan: 77.3 + brightWhite: 104.3 diff --git a/themes/shadowborn-theme-for-vscode.yaml b/themes/shadowborn-theme-for-vscode.yaml new file mode 100644 index 00000000..4517d20c --- /dev/null +++ b/themes/shadowborn-theme-for-vscode.yaml @@ -0,0 +1,53 @@ +name: "Shadowborn Theme for VSCode" +source: + marketplace_id: "RyzenFromFire.vscode-shadowborn-theme" + version: "1.0.2" + installs: 441 + rating: 0 + ratings: 0 + author: "RyzenFromFire" + repo: "https://github.com/RyzenFromFire/vscode-shadowborn" + url: "https://marketplace.visualstudio.com/items?itemName=RyzenFromFire.vscode-shadowborn-theme" + formats: null +colors: + bg: "#202023" + fg: "#CCCCCC" + black: "#0D0F0F" + red: "#BC0104" + green: "#4AAA27" + yellow: "#FE9109" + blue: "#0E386E" + magenta: "#942661" + cyan: "#10A2BF" + white: "#E5E5E5" + brightBlack: "#72504B" + brightRed: "#FB4934" + brightGreen: "#80E847" + brightYellow: "#FABD2F" + brightBlue: "#0287FF" + brightMagenta: "#D600BC" + brightCyan: "#28D9FF" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 73.5 + black: 0 + red: 19.5 + green: 43.7 + yellow: 55.8 + blue: 0 + magenta: 14.1 + cyan: 43.2 + white: 88.9 + brightBlack: 15.3 + brightRed: 39 + brightGreen: 76 + brightYellow: 70.6 + brightBlue: 37.3 + brightMagenta: 30.3 + brightCyan: 71.3 + brightWhite: 97.2 diff --git a/themes/shadowdev.yaml b/themes/shadowdev.yaml new file mode 100644 index 00000000..1bc3bafb --- /dev/null +++ b/themes/shadowdev.yaml @@ -0,0 +1,53 @@ +name: "ShadowDev" +source: + marketplace_id: "ShadowSpectrum.shadow-dev" + version: "0.20.0" + installs: 69 + rating: 0 + ratings: 0 + author: "ShadowSpectrum" + repo: "https://github.com/alvin-dennis/shadow-dev" + url: "https://marketplace.visualstudio.com/items?itemName=ShadowSpectrum.shadow-dev" + formats: null +colors: + bg: "#0B0A0A" + fg: "#FFFFFF" + black: "#131212" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#BEBABA" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.7 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 65.5 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/shale-theme--nord.yaml b/themes/shale-theme--nord.yaml new file mode 100644 index 00000000..889c096f --- /dev/null +++ b/themes/shale-theme--nord.yaml @@ -0,0 +1,53 @@ +name: "Shale Theme (Nord)" +source: + marketplace_id: "mullakhmetov.shale" + version: "0.1.1" + installs: 5739 + rating: 4.75 + ratings: 4 + author: "mullakhmetov" + repo: "https://github.com/mullakhmetov/vscode-theme-shale" + url: "https://marketplace.visualstudio.com/items?itemName=mullakhmetov.shale" + formats: null +colors: + bg: "#2E3440" + fg: "#D8DEE9" + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#E5E9F0" + brightBlack: "#4C566A" + brightRed: "#BF616A" + brightGreen: "#A3BE8C" + brightYellow: "#EBCB8B" + brightBlue: "#81A1C1" + brightMagenta: "#B48EAD" + brightCyan: "#8FBCBB" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 80.3 + black: 0 + red: 27.9 + green: 56.6 + yellow: 71.3 + blue: 43.6 + magenta: 41.4 + cyan: 57.6 + white: 87.3 + brightBlack: 10.3 + brightRed: 27.9 + brightGreen: 56.6 + brightYellow: 71.3 + brightBlue: 43.6 + brightMagenta: 41.4 + brightCyan: 55.5 + brightWhite: 91.2 diff --git a/themes/shark-artist-great-white-theme-great-white-bloodloss.yaml b/themes/shark-artist-great-white-theme-great-white-bloodloss.yaml new file mode 100644 index 00000000..adcacf96 --- /dev/null +++ b/themes/shark-artist-great-white-theme-great-white-bloodloss.yaml @@ -0,0 +1,53 @@ +name: "Shark Artist: Great White Theme (Great White (Bloodloss))" +source: + marketplace_id: "shark-labs.shark-labs-great-white-theme" + version: "0.6.3" + installs: 23 + rating: 0 + ratings: 0 + author: "theSharkArtist" + repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" + formats: null +colors: + bg: "#1A0505" + fg: "#E7EDF2" + black: "#1B2229" + red: "#C44F5F" + green: "#4DAAAA" + yellow: "#D9A441" + blue: "#5D8FA8" + magenta: "#C96A7A" + cyan: "#E06B7A" + white: "#D8E8EF" + brightBlack: "#2A3840" + brightRed: "#D56A7A" + brightGreen: "#5DBFBF" + brightYellow: "#E4B754" + brightBlue: "#6EA6C0" + brightMagenta: "#D07D8C" + brightCyan: "#A4DFF4" + brightWhite: "#EDF4F8" +meta: + mode: "dark" + accent: "red" + hue: 23 + pair: null + contrast: + fg: 95.2 + black: 0 + red: 30.6 + green: 48.7 + yellow: 57.7 + blue: 38.6 + magenta: 38.1 + cyan: 42.7 + white: 90.9 + brightBlack: 0 + brightRed: 40.3 + brightGreen: 59.4 + brightYellow: 66.8 + brightBlue: 49.8 + brightMagenta: 45 + brightCyan: 81.4 + brightWhite: 99.6 diff --git a/themes/shark-artist-great-white-theme-great-white-dark.yaml b/themes/shark-artist-great-white-theme-great-white-dark.yaml new file mode 100644 index 00000000..213b0973 --- /dev/null +++ b/themes/shark-artist-great-white-theme-great-white-dark.yaml @@ -0,0 +1,53 @@ +name: "Shark Artist: Great White Theme (Great White (Dark))" +source: + marketplace_id: "shark-labs.shark-labs-great-white-theme" + version: "0.6.3" + installs: 23 + rating: 0 + ratings: 0 + author: "theSharkArtist" + repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" + formats: null +colors: + bg: "#0E1A22" + fg: "#D8E8EF" + black: "#1B2229" + red: "#C44F5F" + green: "#4DAAAA" + yellow: "#D9A441" + blue: "#5D8FA8" + magenta: "#C96A7A" + cyan: "#9FC7D8" + white: "#D8E8EF" + brightBlack: "#2A3840" + brightRed: "#D56A7A" + brightGreen: "#5DBFBF" + brightYellow: "#E4B754" + brightBlue: "#6EA6C0" + brightMagenta: "#D07D8C" + brightCyan: "#A4DFF4" + brightWhite: "#EDF4F8" +meta: + mode: "dark" + accent: "red" + hue: 239 + pair: null + contrast: + fg: 90 + black: 0 + red: 29.7 + green: 47.8 + yellow: 56.8 + blue: 37.7 + magenta: 37.2 + cyan: 67.9 + white: 90 + brightBlack: 0 + brightRed: 39.4 + brightGreen: 58.5 + brightYellow: 65.9 + brightBlue: 48.9 + brightMagenta: 44.1 + brightCyan: 80.5 + brightWhite: 98.7 diff --git a/themes/shark-artist-great-white-theme-great-white-frost.yaml b/themes/shark-artist-great-white-theme-great-white-frost.yaml new file mode 100644 index 00000000..aa1a5018 --- /dev/null +++ b/themes/shark-artist-great-white-theme-great-white-frost.yaml @@ -0,0 +1,53 @@ +name: "Shark Artist: Great White Theme (Great White (Frost))" +source: + marketplace_id: "shark-labs.shark-labs-great-white-theme" + version: "0.6.3" + installs: 23 + rating: 0 + ratings: 0 + author: "theSharkArtist" + repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" + formats: null +colors: + bg: "#F7F8F7" + fg: "#1A2630" + black: "#1B2229" + red: "#C44F5F" + green: "#4DAAAA" + yellow: "#D9A441" + blue: "#5D8FA8" + magenta: "#C96A7A" + cyan: "#9FC7D8" + white: "#D8E8EF" + brightBlack: "#2A3840" + brightRed: "#D56A7A" + brightGreen: "#5DBFBF" + brightYellow: "#E4B754" + brightBlue: "#6EA6C0" + brightMagenta: "#D07D8C" + brightCyan: "#A4DFF4" + brightWhite: "#EDF4F8" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 97.9 + black: 98.7 + red: 66.4 + green: 48.5 + yellow: 39.8 + blue: 58.4 + magenta: 58.9 + cyan: 29.2 + white: 8.4 + brightBlack: 93.3 + brightRed: 56.7 + brightGreen: 38.1 + brightYellow: 31 + brightBlue: 47.4 + brightMagenta: 52.1 + brightCyan: 17.2 + brightWhite: 0 diff --git a/themes/shark-artist-great-white-theme-great-white-high-contrast-dark.yaml b/themes/shark-artist-great-white-theme-great-white-high-contrast-dark.yaml new file mode 100644 index 00000000..af765516 --- /dev/null +++ b/themes/shark-artist-great-white-theme-great-white-high-contrast-dark.yaml @@ -0,0 +1,53 @@ +name: "Shark Artist: Great White Theme (Great White (High Contrast Dark))" +source: + marketplace_id: "shark-labs.shark-labs-great-white-theme" + version: "0.6.3" + installs: 23 + rating: 0 + ratings: 0 + author: "theSharkArtist" + repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" + formats: null +colors: + bg: "#0B0F12" + fg: "#F6FBFF" + black: "#1B2229" + red: "#C44F5F" + green: "#4DAAAA" + yellow: "#D9A441" + blue: "#5D8FA8" + magenta: "#C96A7A" + cyan: "#9FC7D8" + white: "#D8E8EF" + brightBlack: "#2A3840" + brightRed: "#D56A7A" + brightGreen: "#5DBFBF" + brightYellow: "#E4B754" + brightBlue: "#6EA6C0" + brightMagenta: "#D07D8C" + brightCyan: "#A4DFF4" + brightWhite: "#EDF4F8" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 104.4 + black: 0 + red: 30.5 + green: 48.6 + yellow: 57.6 + blue: 38.6 + magenta: 38 + cyan: 68.7 + white: 90.8 + brightBlack: 0 + brightRed: 40.3 + brightGreen: 59.4 + brightYellow: 66.8 + brightBlue: 49.8 + brightMagenta: 44.9 + brightCyan: 81.4 + brightWhite: 99.5 diff --git a/themes/shark-artist-great-white-theme-great-white-high-contrast-light.yaml b/themes/shark-artist-great-white-theme-great-white-high-contrast-light.yaml new file mode 100644 index 00000000..a5b4a3cc --- /dev/null +++ b/themes/shark-artist-great-white-theme-great-white-high-contrast-light.yaml @@ -0,0 +1,53 @@ +name: "Shark Artist: Great White Theme (Great White (High Contrast Light))" +source: + marketplace_id: "shark-labs.shark-labs-great-white-theme" + version: "0.6.3" + installs: 23 + rating: 0 + ratings: 0 + author: "theSharkArtist" + repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#12202A" + black: "#1B2229" + red: "#C44F5F" + green: "#4DAAAA" + yellow: "#D9A441" + blue: "#5D8FA8" + magenta: "#C96A7A" + cyan: "#9FC7D8" + white: "#D8E8EF" + brightBlack: "#2A3840" + brightRed: "#D56A7A" + brightGreen: "#5DBFBF" + brightYellow: "#E4B754" + brightBlue: "#6EA6C0" + brightMagenta: "#D07D8C" + brightCyan: "#A4DFF4" + brightWhite: "#EDF4F8" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 103.5 + black: 103 + red: 70.8 + green: 52.9 + yellow: 44.2 + blue: 62.7 + magenta: 63.3 + cyan: 33.5 + white: 12.7 + brightBlack: 97.6 + brightRed: 61.1 + brightGreen: 42.5 + brightYellow: 35.4 + brightBlue: 51.8 + brightMagenta: 56.5 + brightCyan: 21.6 + brightWhite: 0 diff --git a/themes/shark-artist-great-white-theme-great-white-light.yaml b/themes/shark-artist-great-white-theme-great-white-light.yaml new file mode 100644 index 00000000..270c37b0 --- /dev/null +++ b/themes/shark-artist-great-white-theme-great-white-light.yaml @@ -0,0 +1,53 @@ +name: "Shark Artist: Great White Theme (Great White (Light))" +source: + marketplace_id: "shark-labs.shark-labs-great-white-theme" + version: "0.6.3" + installs: 23 + rating: 0 + ratings: 0 + author: "theSharkArtist" + repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" + formats: null +colors: + bg: "#F1F4F5" + fg: "#182830" + black: "#1B2229" + red: "#C44F5F" + green: "#4DAAAA" + yellow: "#D9A441" + blue: "#5D8FA8" + magenta: "#C96A7A" + cyan: "#9FC7D8" + white: "#D8E8EF" + brightBlack: "#2A3840" + brightRed: "#D56A7A" + brightGreen: "#5DBFBF" + brightYellow: "#E4B754" + brightBlue: "#6EA6C0" + brightMagenta: "#D07D8C" + brightCyan: "#A4DFF4" + brightWhite: "#EDF4F8" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 95.1 + black: 96.1 + red: 63.9 + green: 46 + yellow: 37.3 + blue: 55.8 + magenta: 56.4 + cyan: 26.6 + white: 0 + brightBlack: 90.7 + brightRed: 54.2 + brightGreen: 35.6 + brightYellow: 28.5 + brightBlue: 44.9 + brightMagenta: 49.6 + brightCyan: 14.7 + brightWhite: 0 diff --git a/themes/shark-artist-great-white-theme-great-white-storm.yaml b/themes/shark-artist-great-white-theme-great-white-storm.yaml new file mode 100644 index 00000000..079df46a --- /dev/null +++ b/themes/shark-artist-great-white-theme-great-white-storm.yaml @@ -0,0 +1,53 @@ +name: "Shark Artist: Great White Theme (Great White (Storm))" +source: + marketplace_id: "shark-labs.shark-labs-great-white-theme" + version: "0.6.3" + installs: 23 + rating: 0 + ratings: 0 + author: "theSharkArtist" + repo: "https://github.com/johnsirmon/shark-artist-great-white-theme" + url: "https://marketplace.visualstudio.com/items?itemName=shark-labs.shark-labs-great-white-theme" + formats: null +colors: + bg: "#111820" + fg: "#E7EDF2" + black: "#1B2229" + red: "#C44F5F" + green: "#4DAAAA" + yellow: "#D9A441" + blue: "#5D8FA8" + magenta: "#C96A7A" + cyan: "#9FC7D8" + white: "#D8E8EF" + brightBlack: "#2A3840" + brightRed: "#D56A7A" + brightGreen: "#5DBFBF" + brightYellow: "#E4B754" + brightBlue: "#6EA6C0" + brightMagenta: "#D07D8C" + brightCyan: "#A4DFF4" + brightWhite: "#EDF4F8" +meta: + mode: "dark" + accent: "red" + hue: 252 + pair: null + contrast: + fg: 94.5 + black: 0 + red: 29.8 + green: 47.9 + yellow: 56.9 + blue: 37.9 + magenta: 37.3 + cyan: 68 + white: 90.1 + brightBlack: 0 + brightRed: 39.6 + brightGreen: 58.6 + brightYellow: 66.1 + brightBlue: 49.1 + brightMagenta: 44.2 + brightCyan: 80.7 + brightWhite: 98.8 diff --git a/themes/sharkdark.yaml b/themes/sharkdark.yaml new file mode 100644 index 00000000..dca0b9fa --- /dev/null +++ b/themes/sharkdark.yaml @@ -0,0 +1,53 @@ +name: "Sharkdark" +source: + marketplace_id: "Sharkdark.sharkdark" + version: "0.0.1" + installs: 352 + rating: 0 + ratings: 0 + author: "Sharkdark" + repo: "https://github.com/dann-dann/sharkdark" + url: "https://marketplace.visualstudio.com/items?itemName=Sharkdark.sharkdark" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF595E" + green: "#CEF144" + yellow: "#FDA331" + blue: "#AD9CFF" + magenta: "#D381C3" + cyan: "#76C7B7" + white: "#FAFAFA" + brightBlack: "#B0B0B0" + brightRed: "#FB0120" + brightGreen: "#A1C659" + brightYellow: "#FDA331" + brightBlue: "#729FCF" + brightMagenta: "#D381C3" + brightCyan: "#76C7B7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 45.3 + green: 89.7 + yellow: 63.8 + blue: 56 + magenta: 49.3 + cyan: 64.4 + white: 104.6 + brightBlack: 59.5 + brightRed: 36.6 + brightGreen: 64.9 + brightYellow: 63.8 + brightBlue: 48.5 + brightMagenta: 49.3 + brightCyan: 64.4 + brightWhite: 107.9 diff --git a/themes/ship-ai--ship-dark.yaml b/themes/ship-ai--ship-dark.yaml new file mode 100644 index 00000000..881bc499 --- /dev/null +++ b/themes/ship-ai--ship-dark.yaml @@ -0,0 +1,53 @@ +name: "SHIP-AI (SHIP-dark)" +source: + marketplace_id: "SHIP-AI.ship-ai" + version: "0.0.2" + installs: 282 + rating: 0 + ratings: 0 + author: "SHIP-AI" + repo: "https://github.com/vkyprmr/ship-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SHIP-AI.ship-ai" + formats: null +colors: + bg: "#171C26" + fg: "#E2E8F0" + black: "#000000" + red: "#B40000" + green: "#019746" + yellow: "#DAB22E" + blue: "#064A9A" + magenta: "#A4005D" + cyan: "#006EC8" + white: "#DEDEDE" + brightBlack: "#3D4454" + brightRed: "#FF0400" + brightGreen: "#00FF6E" + brightYellow: "#FFEC00" + brightBlue: "#0077FF" + brightMagenta: "#FA8685" + brightCyan: "#009DFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 264 + pair: null + contrast: + fg: 90.9 + black: 0 + red: 18.3 + green: 35.2 + yellow: 61.7 + blue: 11.9 + magenta: 16.1 + cyan: 25.3 + white: 85.1 + brightBlack: 8.2 + brightRed: 36 + brightGreen: 85.7 + brightYellow: 92.1 + brightBlue: 32.6 + brightMagenta: 53.9 + brightCyan: 45.8 + brightWhite: 106.3 diff --git a/themes/ship-ai--ship-light.yaml b/themes/ship-ai--ship-light.yaml new file mode 100644 index 00000000..9fabb090 --- /dev/null +++ b/themes/ship-ai--ship-light.yaml @@ -0,0 +1,53 @@ +name: "SHIP-AI (SHIP-light)" +source: + marketplace_id: "SHIP-AI.ship-ai" + version: "0.0.2" + installs: 282 + rating: 0 + ratings: 0 + author: "SHIP-AI" + repo: "https://github.com/vkyprmr/ship-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=SHIP-AI.ship-ai" + formats: null +colors: + bg: "#E2E8F0" + fg: "#171C26" + black: "#000000" + red: "#B40000" + green: "#019746" + yellow: "#DAB22E" + blue: "#064A9A" + magenta: "#A4005D" + cyan: "#006EC8" + white: "#DEDEDE" + brightBlack: "#3D4454" + brightRed: "#FF0400" + brightGreen: "#00FF6E" + brightYellow: "#FFEC00" + brightBlue: "#0077FF" + brightMagenta: "#FA8685" + brightCyan: "#009DFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: 256 + pair: null + contrast: + fg: 90 + black: 92.1 + red: 68 + green: 50.9 + yellow: 25.1 + blue: 74.8 + magenta: 70.3 + cyan: 60.9 + white: 0 + brightBlack: 78.6 + brightRed: 50.1 + brightGreen: 0 + brightYellow: 0 + brightBlue: 53.5 + brightMagenta: 32.6 + brightCyan: 40.4 + brightWhite: 13.4 diff --git a/themes/ship-at-sea.yaml b/themes/ship-at-sea.yaml new file mode 100644 index 00000000..745c17f3 --- /dev/null +++ b/themes/ship-at-sea.yaml @@ -0,0 +1,53 @@ +name: "Ship at Sea" +source: + marketplace_id: "rikkarth.ship-at-sea" + version: "0.0.3" + installs: 570 + rating: 5 + ratings: 2 + author: "rikkarth" + repo: "https://github.com/rikkarth/ship-at-sea" + url: "https://marketplace.visualstudio.com/items?itemName=rikkarth.ship-at-sea" + formats: null +colors: + bg: "#070707" + fg: "#EAEAEA" + black: "#231E1A" + red: "#E64528" + green: "#F5B56A" + yellow: "#F07E1B" + blue: "#D0A46C" + magenta: "#F28E43" + cyan: "#BFAFA4" + white: "#EAEAEA" + brightBlack: "#6E625A" + brightRed: "#E64528" + brightGreen: "#F5B56A" + brightYellow: "#F07E1B" + brightBlue: "#D0A46C" + brightMagenta: "#F28E43" + brightCyan: "#BFAFA4" + brightWhite: "#EAEAEA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.1 + black: 0 + red: 35.6 + green: 69.5 + yellow: 49.6 + blue: 57.2 + magenta: 54.9 + cyan: 60.5 + white: 94.1 + brightBlack: 22.2 + brightRed: 35.6 + brightGreen: 69.5 + brightYellow: 49.6 + brightBlue: 57.2 + brightMagenta: 54.9 + brightCyan: 60.5 + brightWhite: 94.1 diff --git a/themes/shiva.yaml b/themes/shiva.yaml new file mode 100644 index 00000000..3a4fd4e8 --- /dev/null +++ b/themes/shiva.yaml @@ -0,0 +1,53 @@ +name: "Shiva" +source: + marketplace_id: "youcancallmeEvans.shivamvscodetheme" + version: "0.0.1" + installs: 82 + rating: 0 + ratings: 0 + author: "Shiva" + repo: "https://github.com/youcancallmeEvans/shivamvscodetheme" + url: "https://marketplace.visualstudio.com/items?itemName=youcancallmeEvans.shivamvscodetheme" + formats: null +colors: + bg: "#1F1D1D" + fg: "#AF8BFF" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 48.9 + black: 0 + red: 37.9 + green: 85.3 + yellow: 90.5 + blue: 36.7 + magenta: 44.4 + cyan: 75.3 + white: 50.7 + brightBlack: 21.3 + brightRed: 46.4 + brightGreen: 91.8 + brightYellow: 78.7 + brightBlue: 70.8 + brightMagenta: 66.1 + brightCyan: 88.9 + brightWhite: 72.1 diff --git a/themes/shrekk.yaml b/themes/shrekk.yaml new file mode 100644 index 00000000..2cb4feb1 --- /dev/null +++ b/themes/shrekk.yaml @@ -0,0 +1,53 @@ +name: "shrekk" +source: + marketplace_id: "jeooo.shrekk" + version: "0.0.2" + installs: 296 + rating: 0 + ratings: 0 + author: "jeooo`" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=jeooo.shrekk" + formats: null +colors: + bg: "#B0C400" + fg: "#523213" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 117 + pair: null + contrast: + fg: 56.8 + black: 66.5 + red: 34.5 + green: 9.7 + yellow: 18.4 + blue: 46.5 + magenta: 35.1 + cyan: 21.1 + white: 46.4 + brightBlack: 39.2 + brightRed: 34.5 + brightGreen: 0 + brightYellow: 0 + brightBlue: 46.5 + brightMagenta: 35.1 + brightCyan: 21.1 + brightWhite: 8.9 diff --git a/themes/silent-code-dark.yaml b/themes/silent-code-dark.yaml new file mode 100644 index 00000000..48b9f899 --- /dev/null +++ b/themes/silent-code-dark.yaml @@ -0,0 +1,53 @@ +name: "Silent Code Dark" +source: + marketplace_id: "tirthdabgar.silent-code-theme-tirth" + version: "1.1.0" + installs: 36 + rating: 5 + ratings: 1 + author: "Tirth Dabgar" + repo: "https://github.com/tirthdabgar/silent-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tirthdabgar.silent-code-theme-tirth" + formats: null +colors: + bg: "#0F111A" + fg: "#CFD8DC" + black: "#0C0E14" + red: "#FF5370" + green: "#98C379" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#CFD8DC" + brightBlack: "#3B4252" + brightRed: "#FF6B81" + brightGreen: "#B6F2A0" + brightYellow: "#FFD580" + brightBlue: "#9BBCFF" + brightMagenta: "#D7AEFB" + brightCyan: "#9FEFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + pair: null + contrast: + fg: 81.4 + black: 0 + red: 44.1 + green: 62.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 81.4 + brightBlack: 8.6 + brightRed: 49.1 + brightGreen: 88.6 + brightYellow: 84 + brightBlue: 65.7 + brightMagenta: 67.2 + brightCyan: 88.9 + brightWhite: 107.3 diff --git a/themes/simen-theme--word-color-theme.yaml b/themes/simen-theme--word-color-theme.yaml new file mode 100644 index 00000000..54bbed7e --- /dev/null +++ b/themes/simen-theme--word-color-theme.yaml @@ -0,0 +1,54 @@ +name: "Simen Theme (word-color-theme)" +source: + marketplace_id: "simen.theme-simen" + version: "1.2.0" + installs: 54 + rating: 0 + ratings: 0 + author: "simen" + repo: "https://github.com/microsoft/vscode" + url: "https://marketplace.visualstudio.com/items?itemName=simen.theme-simen" + formats: + zed: "https://raw.githubusercontent.com/microsoft/vscode/main/extensions/theme-solarized-dark/themes/solarized-dark-color-theme.json" +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#F4B183" + green: "#A8D08D" + yellow: "#FFC000" + blue: "#8EAADB" + magenta: "#B2A1C7" + cyan: "#9CC3E5" + white: "#A5A5A5" + brightBlack: "#808080" + brightRed: "#C0504D" + brightGreen: "#000000" + brightYellow: "#E0A903" + brightBlue: "#4472C4" + brightMagenta: "#8064A2" + brightCyan: "#5B9BD5" + brightWhite: "#C9C9C9" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 34.2 + green: 31.6 + yellow: 28.2 + blue: 46.4 + magenta: 46.9 + cyan: 34.8 + white: 48.5 + brightBlack: 66.9 + brightRed: 71.8 + brightGreen: 106 + brightYellow: 41.6 + brightBlue: 72.5 + brightMagenta: 74 + brightCyan: 56 + brightWhite: 29 diff --git a/themes/simple-theme--simple-theme.yaml b/themes/simple-theme--simple-theme.yaml new file mode 100644 index 00000000..1298e465 --- /dev/null +++ b/themes/simple-theme--simple-theme.yaml @@ -0,0 +1,53 @@ +name: "Simple Theme (Simple Theme)" +source: + marketplace_id: "Fleuquer.simple-theme" + version: "1.0.0" + installs: 1155 + rating: 0 + ratings: 0 + author: "Fleuquer" + repo: "https://github.com/fleuquer/simple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Fleuquer.simple-theme" + formats: null +colors: + bg: "#1B1B1B" + fg: "#C7FF00" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 94.2 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/sirius-themes--sirius-astral.yaml b/themes/sirius-themes--sirius-astral.yaml new file mode 100644 index 00000000..ae31df24 --- /dev/null +++ b/themes/sirius-themes--sirius-astral.yaml @@ -0,0 +1,53 @@ +name: "Sirius Themes (Sirius-Astral)" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 517 + rating: 5 + ratings: 1 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" + formats: null +colors: + bg: "#0C0C0C" + fg: "#E8E8E8" + black: "#353535" + red: "#E06C75" + green: "#A4D29A" + yellow: "#F0C270" + blue: "#BB6CC1" + magenta: "#D685D6" + cyan: "#7BD2D2" + white: "#E8E8E8" + brightBlack: "#7A7A7A" + brightRed: "#F07C85" + brightGreen: "#B4E2A4" + brightYellow: "#FFE280" + brightBlue: "#B88BC2" + brightMagenta: "#E292D2" + brightCyan: "#8CE2E2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 92.7 + black: 0 + red: 42.9 + green: 71.8 + yellow: 73.7 + blue: 39.4 + magenta: 51.7 + cyan: 70.7 + white: 92.7 + brightBlack: 31.7 + brightRed: 50.5 + brightGreen: 81.1 + brightYellow: 90 + brightBlue: 47.9 + brightMagenta: 57.5 + brightCyan: 80.1 + brightWhite: 107.7 diff --git a/themes/sirius-themes--sirius-glow.yaml b/themes/sirius-themes--sirius-glow.yaml new file mode 100644 index 00000000..77be7b4f --- /dev/null +++ b/themes/sirius-themes--sirius-glow.yaml @@ -0,0 +1,53 @@ +name: "Sirius Themes (Sirius-Glow)" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 517 + rating: 5 + ratings: 1 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" + formats: null +colors: + bg: "#0D1117" + fg: "#E6EDF3" + black: "#484F58" + red: "#F85149" + green: "#7EE787" + yellow: "#F7CC6B" + blue: "#00D4AA" + magenta: "#D2A8FF" + cyan: "#00D4AA" + white: "#E6EDF3" + brightBlack: "#6E7681" + brightRed: "#F85149" + brightGreen: "#7EE787" + brightYellow: "#F7CC6B" + brightBlue: "#00D4AA" + brightMagenta: "#D2A8FF" + brightCyan: "#00D4AA" + brightWhite: "#F0F6FC" +meta: + mode: "dark" + accent: "orange" + hue: 258 + pair: null + contrast: + fg: 95 + black: 13.1 + red: 41.4 + green: 78.1 + yellow: 78.5 + blue: 66.3 + magenta: 64.6 + cyan: 66.3 + white: 95 + brightBlack: 29.3 + brightRed: 41.4 + brightGreen: 78.1 + brightYellow: 78.5 + brightBlue: 66.3 + brightMagenta: 64.6 + brightCyan: 66.3 + brightWhite: 100.9 diff --git a/themes/sirius-themes--sirius-nebula.yaml b/themes/sirius-themes--sirius-nebula.yaml new file mode 100644 index 00000000..ce66cea3 --- /dev/null +++ b/themes/sirius-themes--sirius-nebula.yaml @@ -0,0 +1,53 @@ +name: "Sirius Themes (Sirius-Nebula)" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 517 + rating: 5 + ratings: 1 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" + formats: null +colors: + bg: "#000000" + fg: "#F8F8F8" + black: "#3A3A3A" + red: "#E85A5A" + green: "#85D685" + yellow: "#FFD485" + blue: "#90D690" + magenta: "#D685D6" + cyan: "#85D6D6" + white: "#F8F8F8" + brightBlack: "#7A7A7A" + brightRed: "#E85A5A" + brightGreen: "#85D685" + brightYellow: "#FFD485" + brightBlue: "#90D690" + brightMagenta: "#D685D6" + brightCyan: "#85D6D6" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 40.2 + green: 70.7 + yellow: 84.2 + blue: 71.9 + magenta: 52 + cyan: 73.6 + white: 103.3 + brightBlack: 31.9 + brightRed: 40.2 + brightGreen: 70.7 + brightYellow: 84.2 + brightBlue: 71.9 + brightMagenta: 52 + brightCyan: 73.6 + brightWhite: 107.9 diff --git a/themes/sirius-themes--sirius-pulsar.yaml b/themes/sirius-themes--sirius-pulsar.yaml new file mode 100644 index 00000000..a5fd1a92 --- /dev/null +++ b/themes/sirius-themes--sirius-pulsar.yaml @@ -0,0 +1,53 @@ +name: "Sirius Themes (Sirius-Pulsar)" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 517 + rating: 5 + ratings: 1 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" + formats: null +colors: + bg: "#272822" + fg: "#F8F8F2" + black: "#3B3A32" + red: "#F92672" + green: "#A6E22E" + yellow: "#E6DB74" + blue: "#A87AB2" + magenta: "#FD5FF1" + cyan: "#A6E22E" + white: "#F8F8F2" + brightBlack: "#75715E" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E6DB74" + brightBlue: "#A87AB2" + brightMagenta: "#FD5FF1" + brightCyan: "#A6E22E" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "pink" + hue: 115 + pair: null + contrast: + fg: 99.6 + black: 0 + red: 35 + green: 74.7 + yellow: 79.7 + blue: 36.4 + magenta: 48.8 + cyan: 74.7 + white: 99.6 + brightBlack: 24.3 + brightRed: 35 + brightGreen: 74.7 + brightYellow: 79.7 + brightBlue: 36.4 + brightMagenta: 48.8 + brightCyan: 74.7 + brightWhite: 99.6 diff --git a/themes/sirius-themes--sirius-vesper.yaml b/themes/sirius-themes--sirius-vesper.yaml new file mode 100644 index 00000000..25ebee70 --- /dev/null +++ b/themes/sirius-themes--sirius-vesper.yaml @@ -0,0 +1,53 @@ +name: "Sirius Themes (Sirius-Vesper)" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 517 + rating: 5 + ratings: 1 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" + formats: null +colors: + bg: "#1F2428" + fg: "#E6E1CF" + black: "#363B46" + red: "#F26D5B" + green: "#C2D94C" + yellow: "#F29668" + blue: "#D4BFFF" + magenta: "#FF8F40" + cyan: "#A6CC70" + white: "#E6E1CF" + brightBlack: "#5C6773" + brightRed: "#F26D5B" + brightGreen: "#C2D94C" + brightYellow: "#F29668" + brightBlue: "#D4BFFF" + brightMagenta: "#FF8F40" + brightCyan: "#A6CC70" + brightWhite: "#E6E1CF" +meta: + mode: "dark" + accent: "orange" + hue: 242 + pair: null + contrast: + fg: 85.8 + black: 0 + red: 43.8 + green: 74.3 + yellow: 55.4 + blue: 71.4 + magenta: 55.2 + cyan: 65.8 + white: 85.8 + brightBlack: 20.3 + brightRed: 43.8 + brightGreen: 74.3 + brightYellow: 55.4 + brightBlue: 71.4 + brightMagenta: 55.2 + brightCyan: 65.8 + brightWhite: 85.8 diff --git a/themes/sirius-themes--sirius-vibe.yaml b/themes/sirius-themes--sirius-vibe.yaml new file mode 100644 index 00000000..6f8316a7 --- /dev/null +++ b/themes/sirius-themes--sirius-vibe.yaml @@ -0,0 +1,53 @@ +name: "Sirius Themes (Sirius-Vibe)" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 517 + rating: 5 + ratings: 1 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" + formats: null +colors: + bg: "#1E1E1E" + fg: "#E8E8E8" + black: "#1E1E1E" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#81C784" + magenta: "#E91E63" + cyan: "#4DB6AC" + white: "#E8E8E8" + brightBlack: "#757575" + brightRed: "#FFCDD2" + brightGreen: "#C8E6C9" + brightYellow: "#FFF9C4" + brightBlue: "#A5D6A7" + brightMagenta: "#F8BBD9" + brightCyan: "#B2DFDB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 91.1 + black: 0 + red: 36.9 + green: 46.7 + yellow: 91.5 + blue: 61.6 + magenta: 31.8 + cyan: 52.4 + white: 91.1 + brightBlack: 27.8 + brightRed: 81.9 + brightGreen: 84.9 + brightYellow: 100.8 + brightBlue: 72.5 + brightMagenta: 74 + brightCyan: 80 + brightWhite: 106 diff --git a/themes/sirius-themes--sirius-vortex.yaml b/themes/sirius-themes--sirius-vortex.yaml new file mode 100644 index 00000000..b954aef8 --- /dev/null +++ b/themes/sirius-themes--sirius-vortex.yaml @@ -0,0 +1,53 @@ +name: "Sirius Themes (Sirius-Vortex)" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 517 + rating: 5 + ratings: 1 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" + formats: null +colors: + bg: "#1A1611" + fg: "#F4F4F4" + black: "#5A4D3E" + red: "#FF6B6B" + green: "#98D982" + yellow: "#FFD700" + blue: "#FF9500" + magenta: "#FF6B6B" + cyan: "#FF9500" + white: "#F4F4F4" + brightBlack: "#8B7355" + brightRed: "#FF6B6B" + brightGreen: "#98D982" + brightYellow: "#FFD700" + brightBlue: "#FF9500" + brightMagenta: "#FF6B6B" + brightCyan: "#FF9500" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 73 + pair: null + contrast: + fg: 99.7 + black: 12.9 + red: 48.1 + green: 72.6 + yellow: 83.3 + blue: 58.5 + magenta: 48.1 + cyan: 58.5 + white: 99.7 + brightBlack: 29.6 + brightRed: 48.1 + brightGreen: 72.6 + brightYellow: 83.3 + brightBlue: 58.5 + brightMagenta: 48.1 + brightCyan: 58.5 + brightWhite: 106.9 diff --git a/themes/sirius-themes--sirius-zenith.yaml b/themes/sirius-themes--sirius-zenith.yaml new file mode 100644 index 00000000..3e689367 --- /dev/null +++ b/themes/sirius-themes--sirius-zenith.yaml @@ -0,0 +1,53 @@ +name: "Sirius Themes (Sirius-Zenith)" +source: + marketplace_id: "VLMADev.siriusthemes" + version: "1.1.5" + installs: 517 + rating: 5 + ratings: 1 + author: "VLMADev" + repo: "https://github.com/VLMADev/siriusthemes" + url: "https://marketplace.visualstudio.com/items?itemName=VLMADev.siriusthemes" + formats: null +colors: + bg: "#1A1A1A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFD93D" + blue: "#D2691E" + magenta: "#BC3FBC" + cyan: "#B8860B" + white: "#F2F2F2" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#CD853F" + brightMagenta: "#D670D6" + brightCyan: "#DAA520" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.2 + black: 0 + red: 26.4 + green: 52.7 + yellow: 84 + blue: 37 + magenta: 29.4 + cyan: 40.8 + white: 98 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 44.1 + brightMagenta: 45 + brightCyan: 56.9 + brightWhite: 106.5 diff --git a/themes/sk5s-vs-green-theme.yaml b/themes/sk5s-vs-green-theme.yaml new file mode 100644 index 00000000..f3df18ca --- /dev/null +++ b/themes/sk5s-vs-green-theme.yaml @@ -0,0 +1,53 @@ +name: "sk5s vs green theme" +source: + marketplace_id: "sk5s.sk5s-vs-green-theme" + version: "1.5.0" + installs: 1591 + rating: 4 + ratings: 1 + author: "sk5s" + repo: "https://github.com/sk5s/sk5s-vsgt" + url: "https://marketplace.visualstudio.com/items?itemName=sk5s.sk5s-vs-green-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#EFFAF5" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/skill--s-kill.yaml b/themes/skill--s-kill.yaml new file mode 100644 index 00000000..53b928e0 --- /dev/null +++ b/themes/skill--s-kill.yaml @@ -0,0 +1,53 @@ +name: "Skill (s-kill)" +source: + marketplace_id: "metamorphosis.skill" + version: "0.4.0" + installs: 1206 + rating: 4.5 + ratings: 2 + author: "metamorphosis" + repo: "https://github.com/frontendmonster/vscode-skill-theme" + url: "https://marketplace.visualstudio.com/items?itemName=metamorphosis.skill" + formats: null +colors: + bg: "#293340" + fg: "#EEEEEE" + black: "#1D212B" + red: "#FE8183" + green: "#61BA86" + yellow: "#FFEC8E" + blue: "#4CB2FF" + magenta: "#D5A1F8" + cyan: "#00EEFF" + white: "#CDD2E9" + brightBlack: "#546386" + brightRed: "#FE8183" + brightGreen: "#9FFCA7" + brightYellow: "#FFB68E" + brightBlue: "#4CB2FF" + brightMagenta: "#D5A1F8" + brightCyan: "#00EEFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 255 + pair: null + contrast: + fg: 91.1 + black: 0 + red: 49.2 + green: 49.9 + yellow: 89.3 + blue: 51.4 + magenta: 57 + cyan: 77.8 + white: 74.1 + brightBlack: 16.2 + brightRed: 49.2 + brightGreen: 86.7 + brightYellow: 66.8 + brightBlue: 51.4 + brightMagenta: 57 + brightCyan: 77.8 + brightWhite: 102.2 diff --git a/themes/slab-theme--2077.yaml b/themes/slab-theme--2077.yaml new file mode 100644 index 00000000..d47cea22 --- /dev/null +++ b/themes/slab-theme--2077.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (2077)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#030D22" + fg: "#FDFEFF" + black: "#3A1B75" + red: "#EE1682" + green: "#06AD00" + yellow: "#FFD400" + blue: "#3787D6" + magenta: "#EA00D9" + cyan: "#0AB2FA" + white: "#F2F8FF" + brightBlack: "#5C6D75" + brightRed: "#FF2E97" + brightGreen: "#3DD69C" + brightYellow: "#FFD400" + brightBlue: "#5994CE" + brightMagenta: "#EA00D9" + brightCyan: "#4BC5FA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 106.7 + black: 0 + red: 35.1 + green: 45.5 + yellow: 82.6 + blue: 36.6 + magenta: 38.3 + cyan: 55.1 + white: 102.4 + brightBlack: 24.5 + brightRed: 41.2 + brightGreen: 67.5 + brightYellow: 82.6 + brightBlue: 42.2 + brightMagenta: 38.3 + brightCyan: 64.4 + brightWhite: 107.5 diff --git a/themes/slab-theme--firefly.yaml b/themes/slab-theme--firefly.yaml new file mode 100644 index 00000000..ce77ae3a --- /dev/null +++ b/themes/slab-theme--firefly.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (FireFly)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#151515" + fg: "#B3B8C5" + black: "#01060E" + red: "#EA6C73" + green: "#91B362" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#FAE994" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#FFEE99" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 63.2 + black: 0 + red: 44.2 + green: 54.4 + yellow: 66.8 + blue: 60.8 + magenta: 92.2 + cyan: 78.1 + white: 71.9 + brightBlack: 23.1 + brightRed: 46.8 + brightGreen: 76.1 + brightYellow: 69.8 + brightBlue: 63.5 + brightMagenta: 95.4 + brightCyan: 81.1 + brightWhite: 107.1 diff --git a/themes/slab-theme--green-hacker.yaml b/themes/slab-theme--green-hacker.yaml new file mode 100644 index 00000000..3ce06b18 --- /dev/null +++ b/themes/slab-theme--green-hacker.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (Green Hacker)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#1E272E" + fg: "#E4E4E4" + black: "#000000" + red: "#FF5E57" + green: "#05C46B" + yellow: "#FFA801" + blue: "#575FCF" + magenta: "#EF5777" + cyan: "#00D8D6" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF3F34" + brightGreen: "#0BE881" + brightYellow: "#FFD32A" + brightBlue: "#0FBCF9" + brightMagenta: "#F53B57" + brightCyan: "#34E7E4" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: 242 + pair: null + contrast: + fg: 87.3 + black: 0 + red: 43 + green: 54.3 + yellow: 62.7 + blue: 22.5 + magenta: 38.8 + cyan: 67.5 + white: 87.9 + brightBlack: 20 + brightRed: 37.8 + brightGreen: 72.5 + brightYellow: 79.5 + brightBlue: 56.6 + brightMagenta: 35.4 + brightCyan: 75.9 + brightWhite: 87.9 diff --git a/themes/slab-theme--karma.yaml b/themes/slab-theme--karma.yaml new file mode 100644 index 00000000..22304dc7 --- /dev/null +++ b/themes/slab-theme--karma.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (Karma)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#0A0E14" + fg: "#F7F1FF" + black: "#0A0E14" + red: "#FC618D" + green: "#7BD88F" + yellow: "#FCE566" + blue: "#FD9353" + magenta: "#AF98E6" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#FCE566" + brightBlue: "#FD9353" + brightMagenta: "#AF98E6" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "red" + hue: 258 + pair: null + contrast: + fg: 99.9 + black: 0 + red: 47 + green: 70.9 + yellow: 90.3 + blue: 58.6 + magenta: 52.9 + cyan: 70.7 + white: 99.9 + brightBlack: 23.5 + brightRed: 47 + brightGreen: 70.9 + brightYellow: 90.3 + brightBlue: 58.6 + brightMagenta: 52.9 + brightCyan: 70.7 + brightWhite: 99.9 diff --git a/themes/slab-theme--mars.yaml b/themes/slab-theme--mars.yaml new file mode 100644 index 00000000..837d7ace --- /dev/null +++ b/themes/slab-theme--mars.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (mars)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#070E13" + fg: "#FFFFFF" + black: "#1D2328" + red: "#F7005B" + green: "#46D028" + yellow: "#DDCB0A" + blue: "#EF8354" + magenta: "#A100DF" + cyan: "#40B4BB" + white: "#FFFFFF" + brightBlack: "#4A4F53" + brightRed: "#F7005B" + brightGreen: "#46D028" + brightYellow: "#DDCB0A" + brightBlue: "#EF8354" + brightMagenta: "#A100DF" + brightCyan: "#40B4BB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 239 + pair: null + contrast: + fg: 107.6 + black: 0 + red: 36 + green: 63 + yellow: 73.6 + blue: 51.1 + magenta: 24.7 + cyan: 53.3 + white: 107.6 + brightBlack: 13.3 + brightRed: 36 + brightGreen: 63 + brightYellow: 73.6 + brightBlue: 51.1 + brightMagenta: 24.7 + brightCyan: 53.3 + brightWhite: 107.6 diff --git a/themes/slab-theme--material-theme-darker-high-contrast.yaml b/themes/slab-theme--material-theme-darker-high-contrast.yaml new file mode 100644 index 00000000..53536135 --- /dev/null +++ b/themes/slab-theme--material-theme-darker-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (Material-Theme-Darker-High-Contrast)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 45.3 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 9.7 + brightRed: 45.3 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/slab-theme--material-theme-darker.yaml b/themes/slab-theme--material-theme-darker.yaml new file mode 100644 index 00000000..eef16262 --- /dev/null +++ b/themes/slab-theme--material-theme-darker.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (Material-Theme-Darker)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#212121" + fg: "#EEFFFF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#545454" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.3 + black: 0 + red: 45.3 + green: 82.9 + yellow: 77.7 + blue: 54.7 + magenta: 52.5 + cyan: 77 + white: 105.6 + brightBlack: 13.5 + brightRed: 45.3 + brightGreen: 82.9 + brightYellow: 77.7 + brightBlue: 54.7 + brightMagenta: 52.5 + brightCyan: 77 + brightWhite: 105.6 diff --git a/themes/slab-theme--material-theme-deepforest.yaml b/themes/slab-theme--material-theme-deepforest.yaml new file mode 100644 index 00000000..b328d671 --- /dev/null +++ b/themes/slab-theme--material-theme-deepforest.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (Material-Theme-Deepforest)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#141F1D" + fg: "#C2EDD3" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#6FA0DE" + magenta: "#A68DCD" + cyan: "#74C9DE" + white: "#FFFFFF" + brightBlack: "#476352" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#6FA0DE" + brightMagenta: "#A68DCD" + brightCyan: "#74C9DE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 182 + pair: null + contrast: + fg: 88 + black: 0 + red: 45.9 + green: 83.5 + yellow: 78.2 + blue: 47.8 + magenta: 45.2 + cyan: 65.2 + white: 106.2 + brightBlack: 17.5 + brightRed: 45.9 + brightGreen: 83.5 + brightYellow: 78.2 + brightBlue: 47.8 + brightMagenta: 45.2 + brightCyan: 65.2 + brightWhite: 106.2 diff --git a/themes/slab-theme--material-theme-default.yaml b/themes/slab-theme--material-theme-default.yaml new file mode 100644 index 00000000..35e38426 --- /dev/null +++ b/themes/slab-theme--material-theme-default.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (Material-Theme-Default)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#546E7A" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 230 + pair: null + contrast: + fg: 100.4 + black: 0 + red: 42.4 + green: 80 + yellow: 74.7 + blue: 51.7 + magenta: 49.6 + cyan: 74.1 + white: 102.7 + brightBlack: 19.7 + brightRed: 42.4 + brightGreen: 80 + brightYellow: 74.7 + brightBlue: 51.7 + brightMagenta: 49.6 + brightCyan: 74.1 + brightWhite: 102.7 diff --git a/themes/slab-theme--material-theme-lighter-high-contrast.yaml b/themes/slab-theme--material-theme-lighter-high-contrast.yaml new file mode 100644 index 00000000..9f8faa94 --- /dev/null +++ b/themes/slab-theme--material-theme-lighter-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (Material-Theme-Lighter-High-Contrast)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#90A4AE" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#E2931D" + blue: "#6182B8" + magenta: "#9C3EDA" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#E2931D" + brightBlue: "#6182B8" + brightMagenta: "#9C3EDA" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 50.6 + black: 106 + red: 67.7 + green: 44.9 + yellow: 48.6 + blue: 66.3 + magenta: 74.3 + cyan: 51.8 + white: 0 + brightBlack: 50.6 + brightRed: 67.7 + brightGreen: 44.9 + brightYellow: 48.6 + brightBlue: 66.3 + brightMagenta: 74.3 + brightCyan: 51.8 + brightWhite: 0 diff --git a/themes/slab-theme--material-theme-lighter.yaml b/themes/slab-theme--material-theme-lighter.yaml new file mode 100644 index 00000000..c156dd9c --- /dev/null +++ b/themes/slab-theme--material-theme-lighter.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (Material-Theme-Lighter)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#FAFAFA" + fg: "#90A4AE" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#E2931D" + blue: "#6182B8" + magenta: "#9C3EDA" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#E2931D" + brightBlue: "#6182B8" + brightMagenta: "#9C3EDA" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 47.6 + black: 103 + red: 64.7 + green: 41.9 + yellow: 45.6 + blue: 63.3 + magenta: 71.3 + cyan: 48.8 + white: 0 + brightBlack: 47.6 + brightRed: 64.7 + brightGreen: 41.9 + brightYellow: 45.6 + brightBlue: 63.3 + brightMagenta: 71.3 + brightCyan: 48.8 + brightWhite: 0 diff --git a/themes/slab-theme--material-theme-ocean.yaml b/themes/slab-theme--material-theme-ocean.yaml new file mode 100644 index 00000000..24c2e1b0 --- /dev/null +++ b/themes/slab-theme--material-theme-ocean.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (Material-Theme-Ocean)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#0F111A" + fg: "#BABED8" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#464B5D" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + pair: null + contrast: + fg: 67.6 + black: 0 + red: 47.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 107.3 + brightBlack: 12 + brightRed: 47.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/slab-theme--material-theme-palenight.yaml b/themes/slab-theme--material-theme-palenight.yaml new file mode 100644 index 00000000..80194b99 --- /dev/null +++ b/themes/slab-theme--material-theme-palenight.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (Material-Theme-Palenight)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#292D3E" + fg: "#BABED8" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 274 + pair: null + contrast: + fg: 63.5 + black: 0 + red: 43 + green: 80.6 + yellow: 75.3 + blue: 52.3 + magenta: 50.1 + cyan: 74.6 + white: 103.3 + brightBlack: 22.8 + brightRed: 43 + brightGreen: 80.6 + brightYellow: 75.3 + brightBlue: 52.3 + brightMagenta: 50.1 + brightCyan: 74.6 + brightWhite: 103.3 diff --git a/themes/slab-theme--midnight-pastel.yaml b/themes/slab-theme--midnight-pastel.yaml new file mode 100644 index 00000000..dbebbeb0 --- /dev/null +++ b/themes/slab-theme--midnight-pastel.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (Midnight Pastel)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#212121" + fg: "#FFFFFF" + black: "#000000" + red: "#FF4081" + green: "#64FFDA" + yellow: "#FFD740" + blue: "#00B0FF" + magenta: "#EA80FC" + cyan: "#64FFDA" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF4081" + brightGreen: "#64FFBA" + brightYellow: "#FFD740" + brightBlue: "#00B0FF" + brightMagenta: "#EA80FC" + brightCyan: "#64FFDA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 105.6 + black: 0 + red: 40.2 + green: 89.9 + yellow: 82.2 + blue: 52.7 + magenta: 54.2 + cyan: 89.9 + white: 105.6 + brightBlack: 9.7 + brightRed: 40.2 + brightGreen: 88.7 + brightYellow: 82.2 + brightBlue: 52.7 + brightMagenta: 54.2 + brightCyan: 89.9 + brightWhite: 105.6 diff --git a/themes/slab-theme--monokai-unified.yaml b/themes/slab-theme--monokai-unified.yaml new file mode 100644 index 00000000..c9ff0ce5 --- /dev/null +++ b/themes/slab-theme--monokai-unified.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (Monokai++ Unified)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#1C1C1C" + fg: "#CCCCCC" + black: "#1C1C1C" + red: "#E62A19" + green: "#2BE98A" + yellow: "#E6DB74" + blue: "#328EFF" + magenta: "#F92672" + cyan: "#49E0FD" + white: "#CCCCCC" + brightBlack: "#696D70" + brightRed: "#E62A19" + brightGreen: "#2BE98A" + brightYellow: "#E6DB74" + brightBlue: "#328EFF" + brightMagenta: "#F92672" + brightCyan: "#49E0FD" + brightWhite: "#F1F1F1" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 74.1 + black: 0 + red: 31.1 + green: 75 + yellow: 81.5 + blue: 40.8 + magenta: 36.7 + cyan: 75.8 + white: 74.1 + brightBlack: 24.2 + brightRed: 31.1 + brightGreen: 75 + brightYellow: 81.5 + brightBlue: 40.8 + brightMagenta: 36.7 + brightCyan: 75.8 + brightWhite: 97.1 diff --git a/themes/slab-theme--moonlight-ii.yaml b/themes/slab-theme--moonlight-ii.yaml new file mode 100644 index 00000000..7bc9ed90 --- /dev/null +++ b/themes/slab-theme--moonlight-ii.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (Moonlight II)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#222436" + fg: "#C8D3F5" + black: "#000000" + red: "#FF757F" + green: "#C3E88D" + yellow: "#FFC777" + blue: "#82AAFF" + magenta: "#FCA7EA" + cyan: "#86E1FC" + white: "#C8D3F5" + brightBlack: "#828BB8" + brightRed: "#FF757F" + brightGreen: "#C3E88D" + brightYellow: "#FFC777" + brightBlue: "#82AAFF" + brightMagenta: "#FCA7EA" + brightCyan: "#86E1FC" + brightWhite: "#C8D3F5" +meta: + mode: "dark" + accent: "orange" + hue: 279 + pair: null + contrast: + fg: 77.2 + black: 0 + red: 48.9 + green: 82.2 + yellow: 75.6 + blue: 54 + magenta: 67.3 + cyan: 77.8 + white: 77.2 + brightBlack: 38.2 + brightRed: 48.9 + brightGreen: 82.2 + brightYellow: 75.6 + brightBlue: 54 + brightMagenta: 67.3 + brightCyan: 77.8 + brightWhite: 77.2 diff --git a/themes/slab-theme--moonlight.yaml b/themes/slab-theme--moonlight.yaml new file mode 100644 index 00000000..b63c036c --- /dev/null +++ b/themes/slab-theme--moonlight.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (Moonlight)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#212337" + fg: "#AAB3E5" + black: "#000000" + red: "#FF5370" + green: "#C7F59B" + yellow: "#FFDB8E" + blue: "#70B0FF" + magenta: "#BAACFF" + cyan: "#7FDAFF" + white: "#E4F3FA" + brightBlack: "#7C85B3" + brightRed: "#FF5370" + brightGreen: "#C7F59B" + brightYellow: "#FFDB8E" + brightBlue: "#70B0FF" + brightMagenta: "#BAACFF" + brightCyan: "#7FDAFF" + brightWhite: "#E4F3FA" +meta: + mode: "dark" + accent: "red" + hue: 279 + pair: null + contrast: + fg: 59.8 + black: 0 + red: 41.8 + green: 89.4 + yellow: 84.6 + blue: 55.2 + magenta: 60.5 + cyan: 74.3 + white: 95.5 + brightBlack: 35.4 + brightRed: 41.8 + brightGreen: 89.4 + brightYellow: 84.6 + brightBlue: 55.2 + brightMagenta: 60.5 + brightCyan: 74.3 + brightWhite: 95.5 diff --git a/themes/slab-theme--p-yesterday.yaml b/themes/slab-theme--p-yesterday.yaml new file mode 100644 index 00000000..e01da516 --- /dev/null +++ b/themes/slab-theme--p-yesterday.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme (P. \ Yesterday)" +source: + marketplace_id: "HasibX2000.slab-theme" + version: "0.0.3" + installs: 3737 + rating: 5 + ratings: 1 + author: "Hasibur Rahman" + repo: "https://github.com/HasibX2000/SLab" + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slab-theme" + formats: null +colors: + bg: "#23282A" + fg: "#F1D5C0" + black: "#374344" + red: "#F04129" + green: "#25AC42" + yellow: "#CCA63C" + blue: "#4779BB" + magenta: "#E02D69" + cyan: "#46B9B9" + white: "#FAE5D6" + brightBlack: "#556661" + brightRed: "#FF634F" + brightGreen: "#2FEC6E" + brightYellow: "#FFDD47" + brightBlue: "#68B6FF" + brightMagenta: "#FF6D9E" + brightCyan: "#7BE6E6" + brightWhite: "#FFF2EC" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 80.9 + black: 0 + red: 34.1 + green: 42.7 + yellow: 53.4 + blue: 27.7 + magenta: 29.3 + cyan: 52.5 + white: 90.1 + brightBlack: 18.2 + brightRed: 43.6 + brightGreen: 74.3 + brightYellow: 83.8 + brightBlue: 56.7 + brightMagenta: 47.8 + brightCyan: 78 + brightWhite: 97.6 diff --git a/themes/slab-theme-special-edition--dracula.yaml b/themes/slab-theme-special-edition--dracula.yaml new file mode 100644 index 00000000..5abc16b0 --- /dev/null +++ b/themes/slab-theme-special-edition--dracula.yaml @@ -0,0 +1,53 @@ +name: "SLab Theme : Special Edition (Dracula)" +source: + marketplace_id: "HasibX2000.slabs" + version: "0.0.2" + installs: 3516 + rating: 0 + ratings: 0 + author: "Hasibur Rahman" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HasibX2000.slabs" + formats: null +colors: + bg: "#343746" + fg: "#F8F8F2" + black: "#343746" + red: "#FF5555" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#BD93F9" + magenta: "#FF79C6" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#F1FA8C" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 276 + pair: null + contrast: + fg: 95.8 + black: 0 + red: 37.2 + green: 78.7 + yellow: 92.4 + blue: 47.4 + magenta: 48.4 + cyan: 77.8 + white: 95.8 + brightBlack: 21.9 + brightRed: 42.6 + brightGreen: 82.8 + brightYellow: 92.4 + brightBlue: 59.9 + brightMagenta: 56.4 + brightCyan: 90.6 + brightWhite: 100.7 diff --git a/themes/slack-theme--slack-theme-aubergine-dark.yaml b/themes/slack-theme--slack-theme-aubergine-dark.yaml new file mode 100644 index 00000000..d8145260 --- /dev/null +++ b/themes/slack-theme--slack-theme-aubergine-dark.yaml @@ -0,0 +1,53 @@ +name: "Slack Theme (Slack Theme Aubergine Dark)" +source: + marketplace_id: "felipe-mendes.slack-theme" + version: "1.9.17" + installs: 514579 + rating: 4.64 + ratings: 22 + author: "Felipe Mendes" + repo: "https://github.com/felipemendes/slack-theme" + url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" + formats: null +colors: + bg: "#3E313C" + fg: "#F6F6F4" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 331 + pair: null + contrast: + fg: 95.4 + black: 0 + red: 27.6 + green: 50.8 + yellow: 64.6 + blue: 29 + magenta: 22.7 + cyan: 43.7 + white: 101.5 + brightBlack: 44.9 + brightRed: 27.6 + brightGreen: 50.8 + brightYellow: 64.6 + brightBlue: 29 + brightMagenta: 22.7 + brightCyan: 43.7 + brightWhite: 101.5 diff --git a/themes/slack-theme--slack-theme-aubergine-new.yaml b/themes/slack-theme--slack-theme-aubergine-new.yaml new file mode 100644 index 00000000..ec160e44 --- /dev/null +++ b/themes/slack-theme--slack-theme-aubergine-new.yaml @@ -0,0 +1,53 @@ +name: "Slack Theme (Slack Theme Aubergine New)" +source: + marketplace_id: "felipe-mendes.slack-theme" + version: "1.9.17" + installs: 514579 + rating: 4.64 + ratings: 22 + author: "Felipe Mendes" + repo: "https://github.com/felipemendes/slack-theme" + url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#383A42" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#ECB22E" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#ECB22E" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 96.2 + black: 106 + red: 67.7 + green: 44.9 + yellow: 36.3 + blue: 66.3 + magenta: 72.6 + cyan: 51.8 + white: 0 + brightBlack: 50.6 + brightRed: 67.7 + brightGreen: 44.9 + brightYellow: 36.3 + brightBlue: 66.3 + brightMagenta: 72.6 + brightCyan: 51.8 + brightWhite: 0 diff --git a/themes/slack-theme--slack-theme-dark.yaml b/themes/slack-theme--slack-theme-dark.yaml new file mode 100644 index 00000000..2be49bae --- /dev/null +++ b/themes/slack-theme--slack-theme-dark.yaml @@ -0,0 +1,53 @@ +name: "Slack Theme (Slack Theme Dark)" +source: + marketplace_id: "tanmay.slack-theme" + version: "1.0.0" + installs: 5535 + rating: 3 + ratings: 2 + author: "tanmay" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tanmay.slack-theme" + formats: null +colors: + bg: "#14101A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#EDB625" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#FDBFFF" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#6B266D" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: 303 + pair: null + contrast: + fg: 107.3 + black: 0 + red: 27.2 + green: 52.2 + yellow: 67.3 + blue: 15.4 + magenta: 26.6 + cyan: 79.6 + white: 15.5 + brightBlack: 22.5 + brightRed: 27.2 + brightGreen: 60.8 + brightYellow: 60.8 + brightBlue: 15.4 + brightMagenta: 26.6 + brightCyan: 9.6 + brightWhite: 53 diff --git a/themes/slack-theme--slack-theme-hoth.yaml b/themes/slack-theme--slack-theme-hoth.yaml new file mode 100644 index 00000000..d4fb2ff1 --- /dev/null +++ b/themes/slack-theme--slack-theme-hoth.yaml @@ -0,0 +1,53 @@ +name: "Slack Theme (Slack Theme Hoth)" +source: + marketplace_id: "felipe-mendes.slack-theme" + version: "1.9.17" + installs: 514579 + rating: 4.64 + ratings: 22 + author: "Felipe Mendes" + repo: "https://github.com/felipemendes/slack-theme" + url: "https://marketplace.visualstudio.com/items?itemName=felipe-mendes.slack-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 67.7 + green: 44.9 + yellow: 31.7 + blue: 66.3 + magenta: 72.6 + cyan: 51.8 + white: 0 + brightBlack: 50.6 + brightRed: 67.7 + brightGreen: 44.9 + brightYellow: 31.7 + brightBlue: 66.3 + brightMagenta: 72.6 + brightCyan: 51.8 + brightWhite: 0 diff --git a/themes/slack-theme--slack-theme.yaml b/themes/slack-theme--slack-theme.yaml new file mode 100644 index 00000000..47feae59 --- /dev/null +++ b/themes/slack-theme--slack-theme.yaml @@ -0,0 +1,53 @@ +name: "Slack Theme (slack-theme)" +source: + marketplace_id: "tanmay.slack-theme" + version: "1.0.0" + installs: 5535 + rating: 3 + ratings: 2 + author: "tanmay" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tanmay.slack-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#EDB625" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#6B266D" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#6B266D" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 74 + green: 49.2 + yellow: 34.7 + blue: 86.1 + magenta: 74.6 + cyan: 92.3 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 92.3 + brightWhite: 48.5 diff --git a/themes/slateblues.yaml b/themes/slateblues.yaml new file mode 100644 index 00000000..789bc197 --- /dev/null +++ b/themes/slateblues.yaml @@ -0,0 +1,53 @@ +name: "SlateBlues" +source: + marketplace_id: "MasterSJit.slateblues" + version: "1.0.1" + installs: 16 + rating: 0 + ratings: 0 + author: "Master S Jit" + repo: "https://github.com/MasterSJit/slate-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MasterSJit.slateblues" + formats: null +colors: + bg: "#232830" + fg: "#DCDFE4" + black: "#1E2229" + red: "#E06C75" + green: "#98C379" + yellow: "#D19A66" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 83.7 + black: 0 + red: 39.7 + green: 59.9 + yellow: 50.3 + blue: 52.3 + magenta: 42.8 + cyan: 52.2 + white: 57 + brightBlack: 18.2 + brightRed: 39.7 + brightGreen: 59.9 + brightYellow: 68.2 + brightBlue: 52.3 + brightMagenta: 42.8 + brightCyan: 52.2 + brightWhite: 104.5 diff --git a/themes/slime-solid-theme.yaml b/themes/slime-solid-theme.yaml new file mode 100644 index 00000000..839e89f8 --- /dev/null +++ b/themes/slime-solid-theme.yaml @@ -0,0 +1,53 @@ +name: "Slime Solid Theme" +source: + marketplace_id: "ganevru.slime-solid" + version: "1.0.0" + installs: 1729 + rating: 5 + ratings: 1 + author: "ganevru" + repo: "https://github.com/ganevru/theme-slime-solid" + url: "https://marketplace.visualstudio.com/items?itemName=ganevru.slime-solid" + formats: null +colors: + bg: "#24292B" + fg: "#E0E0E0" + black: "#666666" + red: "#CD6564" + green: "#AEC199" + yellow: "#FFF099" + blue: "#6D9CBE" + magenta: "#B081B9" + cyan: "#80B5B3" + white: "#EFEFEF" + brightBlack: "#666666" + brightRed: "#CD6564" + brightGreen: "#AEC199" + brightYellow: "#FFF099" + brightBlue: "#6D9CBE" + brightMagenta: "#B081B9" + brightCyan: "#80B5B3" + brightWhite: "#EFEFEF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 84.4 + black: 19.6 + red: 33.9 + green: 62 + yellow: 93.6 + blue: 42.5 + magenta: 39.9 + cyan: 53.6 + white: 93.9 + brightBlack: 19.6 + brightRed: 33.9 + brightGreen: 62 + brightYellow: 93.6 + brightBlue: 42.5 + brightMagenta: 39.9 + brightCyan: 53.6 + brightWhite: 93.9 diff --git a/themes/slime-theme.yaml b/themes/slime-theme.yaml new file mode 100644 index 00000000..e48888dc --- /dev/null +++ b/themes/slime-theme.yaml @@ -0,0 +1,53 @@ +name: "Slime Theme" +source: + marketplace_id: "smlombardi.slime" + version: "3.2.1" + installs: 129904 + rating: 4.95 + ratings: 20 + author: "smlombardi" + repo: "https://github.com/smlombardi/theme-slime" + url: "https://marketplace.visualstudio.com/items?itemName=smlombardi.slime" + formats: null +colors: + bg: "#1E2324" + fg: "#E0E0E0" + black: "#666666" + red: "#CD6564" + green: "#AEC199" + yellow: "#FFF099" + blue: "#6D9CBE" + magenta: "#B081B9" + cyan: "#80B5B3" + white: "#EFEFEF" + brightBlack: "#666666" + brightRed: "#CD6564" + brightGreen: "#AEC199" + brightYellow: "#FFF099" + brightBlue: "#6D9CBE" + brightMagenta: "#B081B9" + brightCyan: "#80B5B3" + brightWhite: "#EFEFEF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 85.4 + black: 20.6 + red: 34.9 + green: 63.1 + yellow: 94.7 + blue: 43.6 + magenta: 40.9 + cyan: 54.6 + white: 95 + brightBlack: 20.6 + brightRed: 34.9 + brightGreen: 63.1 + brightYellow: 94.7 + brightBlue: 43.6 + brightMagenta: 40.9 + brightCyan: 54.6 + brightWhite: 95 diff --git a/themes/slumbersage.yaml b/themes/slumbersage.yaml new file mode 100644 index 00000000..8525f830 --- /dev/null +++ b/themes/slumbersage.yaml @@ -0,0 +1,53 @@ +name: "slumbersage" +source: + marketplace_id: "slumbersage.slumbersage" + version: "0.0.1" + installs: 852 + rating: 5 + ratings: 1 + author: "slumbersage" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=slumbersage.slumbersage" + formats: null +colors: + bg: "#181818" + fg: "#FFFFFF" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#0000FF" + magenta: "#FF00FF" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#FFFF66" + brightBlue: "#6666FF" + brightMagenta: "#FF66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.8 + black: 0 + red: 36.4 + green: 85.4 + yellow: 101.6 + blue: 15.1 + magenta: 45.1 + cyan: 91.1 + white: 106.8 + brightBlack: 21.9 + brightRed: 46.8 + brightGreen: 87.9 + brightYellow: 102.2 + brightBlue: 31.5 + brightMagenta: 53.7 + brightCyan: 92.9 + brightWhite: 106.8 diff --git a/themes/smooth-theme-smooth-dark.yaml b/themes/smooth-theme-smooth-dark.yaml new file mode 100644 index 00000000..83d5ecbf --- /dev/null +++ b/themes/smooth-theme-smooth-dark.yaml @@ -0,0 +1,53 @@ +name: "Smooth Theme (Smooth (dark))" +source: + marketplace_id: "segersniels.smooth" + version: "0.2.1" + installs: 491 + rating: 0 + ratings: 0 + author: "segersniels" + repo: "https://github.com/segersniels/smooth-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=segersniels.smooth" + formats: null +colors: + bg: "#383838" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 73.2 + black: 0 + red: 20.4 + green: 46.7 + yellow: 79.3 + blue: 21.1 + magenta: 23.5 + cyan: 41.3 + white: 83.7 + brightBlack: 15.7 + brightRed: 32.3 + brightGreen: 57.2 + brightYellow: 89.3 + brightBlue: 33.7 + brightMagenta: 39.1 + brightCyan: 49.1 + brightWhite: 83.7 diff --git a/themes/smooth-theme-smooth-light.yaml b/themes/smooth-theme-smooth-light.yaml new file mode 100644 index 00000000..5aba24d5 --- /dev/null +++ b/themes/smooth-theme-smooth-light.yaml @@ -0,0 +1,53 @@ +name: "Smooth Theme (Smooth (light))" +source: + marketplace_id: "segersniels.smooth" + version: "0.2.1" + installs: 491 + rating: 0 + ratings: 0 + author: "segersniels" + repo: "https://github.com/segersniels/smooth-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=segersniels.smooth" + formats: null +colors: + bg: "#FAF4ED" + fg: "#575279" + black: "#616161" + red: "#EB6F92" + green: "#60B79B" + yellow: "#F2B968" + blue: "#3FA2CA" + magenta: "#AA8ACD" + cyan: "#3494A0" + white: "#575279" + brightBlack: "#A8A8A8" + brightRed: "#EB6F92" + brightGreen: "#60B79B" + brightYellow: "#F2B968" + brightBlue: "#3FA2CA" + brightMagenta: "#AA8ACD" + brightCyan: "#3494A0" + brightWhite: "#575279" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 79.1 + black: 74.8 + red: 48.8 + green: 41.1 + yellow: 26.1 + blue: 49 + magenta: 49.3 + cyan: 56.9 + white: 79.1 + brightBlack: 40.8 + brightRed: 48.8 + brightGreen: 41.1 + brightYellow: 26.1 + brightBlue: 49 + brightMagenta: 49.3 + brightCyan: 56.9 + brightWhite: 79.1 diff --git a/themes/smoothburn--smooth-burn-dark-hard.yaml b/themes/smoothburn--smooth-burn-dark-hard.yaml new file mode 100644 index 00000000..43e7a758 --- /dev/null +++ b/themes/smoothburn--smooth-burn-dark-hard.yaml @@ -0,0 +1,53 @@ +name: "SmoothBurn (Smooth Burn Dark Hard)" +source: + marketplace_id: "AndreaCombette.smoothburn" + version: "0.5.4" + installs: 938 + rating: 5 + ratings: 1 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/smoothburn-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" + formats: null +colors: + bg: "#121827" + fg: "#F9D4A8" + black: "#23334E" + red: "#DA223A" + green: "#A77166" + yellow: "#D9735B" + blue: "#417283" + magenta: "#A77166" + cyan: "#818785" + white: "#9B968C" + brightBlack: "#818785" + brightRed: "#F44159" + brightGreen: "#F09162" + brightYellow: "#F09162" + brightBlue: "#9B968C" + brightMagenta: "#C5937C" + brightCyan: "#9B968C" + brightWhite: "#F9D4A8" +meta: + mode: "dark" + accent: "orange" + hue: 267 + pair: "SmoothBurn (Smooth Burn Light Hard)" + contrast: + fg: 83 + black: 0 + red: 28.4 + green: 32.9 + yellow: 41.7 + blue: 24.3 + magenta: 32.9 + cyan: 36.3 + white: 44.7 + brightBlack: 36.3 + brightRed: 37.8 + brightGreen: 54.8 + brightYellow: 54.8 + brightBlue: 44.7 + brightMagenta: 48.7 + brightCyan: 44.7 + brightWhite: 83 diff --git a/themes/smoothburn--smooth-burn-dark-medium.yaml b/themes/smoothburn--smooth-burn-dark-medium.yaml new file mode 100644 index 00000000..91febbdb --- /dev/null +++ b/themes/smoothburn--smooth-burn-dark-medium.yaml @@ -0,0 +1,53 @@ +name: "SmoothBurn (Smooth Burn Dark Medium)" +source: + marketplace_id: "AndreaCombette.smoothburn" + version: "0.5.4" + installs: 938 + rating: 5 + ratings: 1 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/smoothburn-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" + formats: null +colors: + bg: "#1E2539" + fg: "#F9D4A8" + black: "#23334E" + red: "#DA223A" + green: "#A77166" + yellow: "#D9735B" + blue: "#417283" + magenta: "#A77166" + cyan: "#818785" + white: "#9B968C" + brightBlack: "#818785" + brightRed: "#F44159" + brightGreen: "#F09162" + brightYellow: "#F09162" + brightBlue: "#9B968C" + brightMagenta: "#C5937C" + brightCyan: "#9B968C" + brightWhite: "#F9D4A8" +meta: + mode: "dark" + accent: "orange" + hue: 269 + pair: null + contrast: + fg: 81.1 + black: 0 + red: 26.5 + green: 31.1 + yellow: 39.9 + blue: 22.4 + magenta: 31.1 + cyan: 34.4 + white: 42.8 + brightBlack: 34.4 + brightRed: 35.9 + brightGreen: 53 + brightYellow: 53 + brightBlue: 42.8 + brightMagenta: 46.9 + brightCyan: 42.8 + brightWhite: 81.1 diff --git a/themes/smoothburn--smooth-burn-dark.yaml b/themes/smoothburn--smooth-burn-dark.yaml new file mode 100644 index 00000000..3f8cc70f --- /dev/null +++ b/themes/smoothburn--smooth-burn-dark.yaml @@ -0,0 +1,53 @@ +name: "SmoothBurn (Smooth Burn Dark)" +source: + marketplace_id: "AndreaCombette.smoothburn" + version: "0.5.4" + installs: 938 + rating: 5 + ratings: 1 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/smoothburn-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" + formats: null +colors: + bg: "#23334E" + fg: "#F8BD94" + black: "#23334E" + red: "#A77166" + green: "#C5937C" + yellow: "#C5937C" + blue: "#61767D" + magenta: "#A77166" + cyan: "#61767D" + white: "#CBB39B" + brightBlack: "#A77166" + brightRed: "#A77166" + brightGreen: "#C5937C" + brightYellow: "#F8BD94" + brightBlue: "#9B968C" + brightMagenta: "#9B968C" + brightCyan: "#CBB39B" + brightWhite: "#F8BD94" +meta: + mode: "dark" + accent: "yellow" + hue: 260 + pair: null + contrast: + fg: 68.2 + black: 0 + red: 28.3 + green: 44 + yellow: 44 + blue: 22.7 + magenta: 28.3 + cyan: 22.7 + white: 57.6 + brightBlack: 28.3 + brightRed: 28.3 + brightGreen: 44 + brightYellow: 68.2 + brightBlue: 40 + brightMagenta: 40 + brightCyan: 57.6 + brightWhite: 68.2 diff --git a/themes/smoothburn--smooth-burn-light-hard.yaml b/themes/smoothburn--smooth-burn-light-hard.yaml new file mode 100644 index 00000000..6313096e --- /dev/null +++ b/themes/smoothburn--smooth-burn-light-hard.yaml @@ -0,0 +1,53 @@ +name: "SmoothBurn (Smooth Burn Light Hard)" +source: + marketplace_id: "AndreaCombette.smoothburn" + version: "0.5.4" + installs: 938 + rating: 5 + ratings: 1 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/smoothburn-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.smoothburn" + formats: null +colors: + bg: "#F9EAC1" + fg: "#23334E" + black: "#F9D4A8" + red: "#DA223A" + green: "#A77166" + yellow: "#D9735B" + blue: "#417283" + magenta: "#A77166" + cyan: "#818785" + white: "#845457" + brightBlack: "#818785" + brightRed: "#75131E" + brightGreen: "#845457" + brightYellow: "#C44D4D" + brightBlue: "#305975" + brightMagenta: "#845457" + brightCyan: "#417283" + brightWhite: "#23334E" +meta: + mode: "light" + accent: "orange" + hue: 90 + pair: "SmoothBurn (Smooth Burn Dark Hard)" + contrast: + fg: 86.7 + black: 0 + red: 60.1 + green: 55.5 + yellow: 46.8 + blue: 64.3 + magenta: 55.5 + cyan: 52.2 + white: 68.8 + brightBlack: 52.2 + brightRed: 82.5 + brightGreen: 68.8 + brightYellow: 59.5 + brightBlue: 73.8 + brightMagenta: 68.8 + brightCyan: 64.3 + brightWhite: 86.7 diff --git a/themes/snazzy-operator-softer.yaml b/themes/snazzy-operator-softer.yaml new file mode 100644 index 00000000..1ef419f3 --- /dev/null +++ b/themes/snazzy-operator-softer.yaml @@ -0,0 +1,53 @@ +name: "Snazzy Operator Softer" +source: + marketplace_id: "BenCai.snazzy-operator-natural" + version: "0.0.10" + installs: 2984 + rating: 5 + ratings: 2 + author: "Ben Cai" + repo: "https://github.com/code0312/VSCode-Theme-Snazzy" + url: "https://marketplace.visualstudio.com/items?itemName=BenCai.snazzy-operator-natural" + formats: null +colors: + bg: "#282A36" + fg: "#EFF0EB" + black: "#282A36" + red: "#FF716C" + green: "#5AF78E" + yellow: "#F758FF" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#EFF0EB" + brightBlack: "#6C6E75" + brightRed: "#FF716C" + brightGreen: "#5AF78E" + brightYellow: "#F758FF" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "pink" + hue: 278 + pair: null + contrast: + fg: 93.7 + black: 0 + red: 46.5 + green: 81.1 + yellow: 46.7 + blue: 62.5 + magenta: 48 + cyan: 84.1 + white: 93.7 + brightBlack: 22.6 + brightRed: 46.5 + brightGreen: 81.1 + brightYellow: 46.7 + brightBlue: 62.5 + brightMagenta: 48 + brightCyan: 84.1 + brightWhite: 93.7 diff --git a/themes/snazzy-operator.yaml b/themes/snazzy-operator.yaml new file mode 100644 index 00000000..80c403fe --- /dev/null +++ b/themes/snazzy-operator.yaml @@ -0,0 +1,53 @@ +name: "Snazzy Operator" +source: + marketplace_id: "aaronthomas.vscode-snazzy-operator" + version: "1.1.3" + installs: 182001 + rating: 4.5 + ratings: 4 + author: "Aaron Thomas" + repo: "https://github.com/aaronthomas/vscode-snazzy-operator" + url: "https://marketplace.visualstudio.com/items?itemName=aaronthomas.vscode-snazzy-operator" + formats: null +colors: + bg: "#282A36" + fg: "#EFF0EB" + black: "#282A36" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#EFF0EB" + brightBlack: "#282A36" + brightRed: "#FF5C57" + brightGreen: "#5AF78E" + brightYellow: "#F3F99D" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: 278 + pair: null + contrast: + fg: 93.7 + black: 0 + red: 41.7 + green: 81.1 + yellow: 95.8 + blue: 62.5 + magenta: 48 + cyan: 84.1 + white: 93.7 + brightBlack: 0 + brightRed: 41.7 + brightGreen: 81.1 + brightYellow: 95.8 + brightBlue: 62.5 + brightMagenta: 48 + brightCyan: 84.1 + brightWhite: 93.7 diff --git a/themes/snazzy-plus.yaml b/themes/snazzy-plus.yaml new file mode 100644 index 00000000..5fdffaf1 --- /dev/null +++ b/themes/snazzy-plus.yaml @@ -0,0 +1,53 @@ +name: "Snazzy Plus" +source: + marketplace_id: "akarlsten.vscode-snazzy-akarlsten" + version: "1.3.1" + installs: 21439 + rating: 5 + ratings: 3 + author: "akarlsten" + repo: "https://github.com/akarlsten/snazzy-plus" + url: "https://marketplace.visualstudio.com/items?itemName=akarlsten.vscode-snazzy-akarlsten" + formats: null +colors: + bg: "#282A36" + fg: "#EFF0EB" + black: "#282A36" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#FFBC58" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#EFF0EB" + brightBlack: "#6C6E75" + brightRed: "#FF5C57" + brightGreen: "#5AF78E" + brightYellow: "#FFBC58" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: 278 + pair: null + contrast: + fg: 93.7 + black: 0 + red: 41.7 + green: 81.1 + yellow: 69.7 + blue: 62.5 + magenta: 48 + cyan: 84.1 + white: 93.7 + brightBlack: 22.6 + brightRed: 41.7 + brightGreen: 81.1 + brightYellow: 69.7 + brightBlue: 62.5 + brightMagenta: 48 + brightCyan: 84.1 + brightWhite: 93.7 diff --git a/themes/snowflake-dark-theme--snowflake-dark-theme.yaml b/themes/snowflake-dark-theme--snowflake-dark-theme.yaml new file mode 100644 index 00000000..802b07dc --- /dev/null +++ b/themes/snowflake-dark-theme--snowflake-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Snowflake Dark Theme (Snowflake-Dark-Theme)" +source: + marketplace_id: "snowflake107.snowflake-dark" + version: "1.0.2" + installs: 4871 + rating: 5 + ratings: 2 + author: "Snowflake Studio ❄" + repo: "https://github.com/DevSnowflake/VSCode-Snowflake" + url: "https://marketplace.visualstudio.com/items?itemName=snowflake107.snowflake-dark" + formats: null +colors: + bg: "#0F111A" + fg: "#A6ACCD" + black: "#000000" + red: "#FF787A" + green: "#37C463" + yellow: "#E3CE4B" + blue: "#82AAFF" + magenta: "#EB459E" + cyan: "#717BF0" + white: "#FFFFFF" + brightBlack: "#585C6E" + brightRed: "#FF787A" + brightGreen: "#37C463" + brightYellow: "#E3CE4B" + brightBlue: "#82AAFF" + brightMagenta: "#EB459E" + brightCyan: "#717BF0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + pair: null + contrast: + fg: 57.6 + black: 0 + red: 52 + green: 57.2 + yellow: 75.8 + blue: 56.4 + magenta: 39 + cyan: 37.5 + white: 107.3 + brightBlack: 18.6 + brightRed: 52 + brightGreen: 57.2 + brightYellow: 75.8 + brightBlue: 56.4 + brightMagenta: 39 + brightCyan: 37.5 + brightWhite: 107.3 diff --git a/themes/snowflake-dark-theme--snowflake-darker-theme.yaml b/themes/snowflake-dark-theme--snowflake-darker-theme.yaml new file mode 100644 index 00000000..df40a310 --- /dev/null +++ b/themes/snowflake-dark-theme--snowflake-darker-theme.yaml @@ -0,0 +1,53 @@ +name: "Snowflake Dark Theme (Snowflake-Darker-Theme)" +source: + marketplace_id: "snowflake107.snowflake-dark" + version: "1.0.2" + installs: 4871 + rating: 5 + ratings: 2 + author: "Snowflake Studio ❄" + repo: "https://github.com/DevSnowflake/VSCode-Snowflake" + url: "https://marketplace.visualstudio.com/items?itemName=snowflake107.snowflake-dark" + formats: null +colors: + bg: "#090B10" + fg: "#A6ACCD" + black: "#000000" + red: "#FF787A" + green: "#37C463" + yellow: "#E3CE4B" + blue: "#82AAFF" + magenta: "#EB459E" + cyan: "#717BF0" + white: "#FFFFFF" + brightBlack: "#585C6E" + brightRed: "#FF787A" + brightGreen: "#37C463" + brightYellow: "#E3CE4B" + brightBlue: "#82AAFF" + brightMagenta: "#EB459E" + brightCyan: "#717BF0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 268 + pair: null + contrast: + fg: 58 + black: 0 + red: 52.3 + green: 57.6 + yellow: 76.2 + blue: 56.7 + magenta: 39.4 + cyan: 37.9 + white: 107.7 + brightBlack: 19 + brightRed: 52.3 + brightGreen: 57.6 + brightYellow: 76.2 + brightBlue: 56.7 + brightMagenta: 39.4 + brightCyan: 37.9 + brightWhite: 107.7 diff --git a/themes/sobertheme--sober.yaml b/themes/sobertheme--sober.yaml new file mode 100644 index 00000000..1ce60c50 --- /dev/null +++ b/themes/sobertheme--sober.yaml @@ -0,0 +1,53 @@ +name: "SoberTheme (Sober)" +source: + marketplace_id: "YesCode.soberTheme" + version: "0.0.7" + installs: 271 + rating: 5 + ratings: 1 + author: "YesCode" + repo: "https://github.com/yesomac/sober" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.soberTheme" + formats: null +colors: + bg: "#1F2937" + fg: "#D8EAFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#5D7BA8" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 257 + pair: null + contrast: + fg: 89.4 + black: 0 + red: 39.4 + green: 58.4 + yellow: 70.5 + blue: 45 + magenta: 17 + cyan: 46.9 + white: 44.7 + brightBlack: 16.1 + brightRed: 39.4 + brightGreen: 28.3 + brightYellow: 77.2 + brightBlue: 16.2 + brightMagenta: 17 + brightCyan: 46.9 + brightWhite: 96.3 diff --git a/themes/sobrio--sobrio-light.yaml b/themes/sobrio--sobrio-light.yaml new file mode 100644 index 00000000..2c95608f --- /dev/null +++ b/themes/sobrio--sobrio-light.yaml @@ -0,0 +1,53 @@ +name: "Sobrio (sobrio-light)" +source: + marketplace_id: "elvessousa.sobrio" + version: "0.2.0" + installs: 2230 + rating: 0 + ratings: 0 + author: "Elves Sousa" + repo: "https://github.com/elvessousa/sobrio-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=elvessousa.sobrio" + formats: null +colors: + bg: "#FFFFFF" + fg: "#202020" + black: "#AFAFAF" + red: "#CC5500" + green: "#00DDAA" + yellow: "#AF875F" + blue: "#6787AF" + magenta: "#DD4C4F" + cyan: "#5FAFAF" + white: "#FFFFFF" + brightBlack: "#8F8F8F" + brightRed: "#DD4C4F" + brightGreen: "#5FAFAF" + brightYellow: "#FFDD55" + brightBlue: "#9787AF" + brightMagenta: "#DD4C4F" + brightCyan: "#5FAFAF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 103.3 + black: 43.2 + red: 69 + green: 31.5 + yellow: 59.8 + blue: 64.6 + magenta: 66.5 + cyan: 49.8 + white: 0 + brightBlack: 59.6 + brightRed: 66.5 + brightGreen: 49.8 + brightYellow: 16.4 + brightBlue: 60.1 + brightMagenta: 66.5 + brightCyan: 49.8 + brightWhite: 0 diff --git a/themes/sobrio--sobrio.yaml b/themes/sobrio--sobrio.yaml new file mode 100644 index 00000000..2dd66485 --- /dev/null +++ b/themes/sobrio--sobrio.yaml @@ -0,0 +1,53 @@ +name: "Sobrio (sobrio)" +source: + marketplace_id: "elvessousa.sobrio" + version: "0.2.0" + installs: 2230 + rating: 0 + ratings: 0 + author: "Elves Sousa" + repo: "https://github.com/elvessousa/sobrio-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=elvessousa.sobrio" + formats: null +colors: + bg: "#202020" + fg: "#FFFFFF" + black: "#3A3B3F" + red: "#CC5500" + green: "#00DDAA" + yellow: "#D7AF87" + blue: "#87AFD7" + magenta: "#FD6389" + cyan: "#7CDCE7" + white: "#FFFFFF" + brightBlack: "#5F5F5F" + brightRed: "#FD6389" + brightGreen: "#7CFFE7" + brightYellow: "#FFDD55" + brightBlue: "#D7D7FF" + brightMagenta: "#FD6389" + brightCyan: "#7CDCE7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 105.8 + black: 0 + red: 30.5 + green: 69.1 + yellow: 60.9 + blue: 54.7 + magenta: 45.7 + cyan: 74.5 + white: 105.8 + brightBlack: 18 + brightRed: 45.7 + brightGreen: 91.8 + brightYellow: 85.2 + brightBlue: 82.2 + brightMagenta: 45.7 + brightCyan: 74.5 + brightWhite: 105.8 diff --git a/themes/soct.yaml b/themes/soct.yaml new file mode 100644 index 00000000..523ec88a --- /dev/null +++ b/themes/soct.yaml @@ -0,0 +1,53 @@ +name: "SOCT" +source: + marketplace_id: "MsSus.soct" + version: "0.0.2" + installs: 27 + rating: 5 + ratings: 1 + author: "Ms.Sus" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=MsSus.soct" + formats: null +colors: + bg: "#131313" + fg: "#FFFFFF" + black: "#000000" + red: "#FF3362" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D9D9D9" + brightBlack: "#666666" + brightRed: "#FF0060" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 107.2 + black: 0 + red: 39.7 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 82.9 + brightBlack: 22.4 + brightRed: 37.8 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 73.2 diff --git a/themes/soft-color-theme--soft-dark.yaml b/themes/soft-color-theme--soft-dark.yaml new file mode 100644 index 00000000..8829edc8 --- /dev/null +++ b/themes/soft-color-theme--soft-dark.yaml @@ -0,0 +1,53 @@ +name: "Soft Color Theme (Soft Dark)" +source: + marketplace_id: "Gerrnperl.soft-color-theme" + version: "0.0.2" + installs: 1896 + rating: 5 + ratings: 2 + author: "Gerrnperl" + repo: "https://github.com/Gerrnperl/vscode-soft-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gerrnperl.soft-color-theme" + formats: null +colors: + bg: "#252525" + fg: "#E6FFF3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 101.1 + black: 0 + red: 24.8 + green: 51.1 + yellow: 83.7 + blue: 25.5 + magenta: 27.9 + cyan: 45.6 + white: 88.1 + brightBlack: 20.1 + brightRed: 36.7 + brightGreen: 61.6 + brightYellow: 93.7 + brightBlue: 38.1 + brightMagenta: 43.5 + brightCyan: 53.5 + brightWhite: 88.1 diff --git a/themes/soft-color-theme--soft-light.yaml b/themes/soft-color-theme--soft-light.yaml new file mode 100644 index 00000000..333d41aa --- /dev/null +++ b/themes/soft-color-theme--soft-light.yaml @@ -0,0 +1,53 @@ +name: "Soft Color Theme (Soft Light)" +source: + marketplace_id: "Gerrnperl.soft-color-theme" + version: "0.0.2" + installs: 1896 + rating: 5 + ratings: 2 + author: "Gerrnperl" + repo: "https://github.com/Gerrnperl/vscode-soft-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Gerrnperl.soft-color-theme" + formats: null +colors: + bg: "#F8FFF3" + fg: "#5A5A5A" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 82.5 + black: 104.7 + red: 72.6 + green: 47.9 + yellow: 56.5 + blue: 84.7 + magenta: 73.2 + cyan: 59.2 + white: 84.5 + brightBlack: 77.4 + brightRed: 72.6 + brightGreen: 39.5 + brightYellow: 39.6 + brightBlue: 84.7 + brightMagenta: 73.2 + brightCyan: 59.2 + brightWhite: 47.1 diff --git a/themes/soft-in-black.yaml b/themes/soft-in-black.yaml new file mode 100644 index 00000000..061a55ae --- /dev/null +++ b/themes/soft-in-black.yaml @@ -0,0 +1,53 @@ +name: "Soft-in-black" +source: + marketplace_id: "catapillie.soft-in-black" + version: "1.0.0" + installs: 77 + rating: 0 + ratings: 0 + author: "catapillie" + repo: "https://github.com/catapillie/soft-in-black" + url: "https://marketplace.visualstudio.com/items?itemName=catapillie.soft-in-black" + formats: null +colors: + bg: "#000000" + fg: "#D5CCC5" + black: "#4F4C4B" + red: "#CB5F7D" + green: "#79A73D" + yellow: "#F7B267" + blue: "#6869AB" + magenta: "#B27FBC" + cyan: "#588399" + white: "#F2EDE9" + brightBlack: "#4F4C4B" + brightRed: "#E88492" + brightGreen: "#B2E075" + brightYellow: "#FFD572" + brightBlue: "#8A90F5" + brightMagenta: "#DE9FDE" + brightCyan: "#80CED7" + brightWhite: "#F2EDE9" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 76.6 + black: 12.9 + red: 36.3 + green: 47.6 + yellow: 68.7 + blue: 27.2 + magenta: 43.2 + cyan: 33.6 + white: 96.6 + brightBlack: 12.9 + brightRed: 51.8 + brightGreen: 79.1 + brightYellow: 84.2 + brightBlue: 47.4 + brightMagenta: 61.9 + brightCyan: 69.6 + brightWhite: 96.6 diff --git a/themes/soft-kawaii-theme.yaml b/themes/soft-kawaii-theme.yaml new file mode 100644 index 00000000..55e2ca80 --- /dev/null +++ b/themes/soft-kawaii-theme.yaml @@ -0,0 +1,53 @@ +name: "soft-Kawaii-Theme" +source: + marketplace_id: "AiminHm.soft-kawaii-theme" + version: "1.0.2" + installs: 286 + rating: 0 + ratings: 0 + author: "AiminHm" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=AiminHm.soft-kawaii-theme" + formats: null +colors: + bg: "#210D19" + fg: "#FF93E2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D4D4D4" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 344 + pair: null + contrast: + fg: 63.3 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 30 + cyan: 47.8 + white: 79.7 + brightBlack: 22.2 + brightRed: 38.8 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/softdark.yaml b/themes/softdark.yaml new file mode 100644 index 00000000..7b04c1f3 --- /dev/null +++ b/themes/softdark.yaml @@ -0,0 +1,53 @@ +name: "SoftDark" +source: + marketplace_id: "jovejonovski.softdark" + version: "1.0.3" + installs: 1024 + rating: 0 + ratings: 0 + author: "Jove Jonovski" + repo: "https://github.com/datyin/softdark" + url: "https://marketplace.visualstudio.com/items?itemName=jovejonovski.softdark" + formats: null +colors: + bg: "#161E20" + fg: "#8D9FA3" + black: "#000000" + red: "#D15F5F" + green: "#5EA55E" + yellow: "#BBA466" + blue: "#6DA6E7" + magenta: "#B972B9" + cyan: "#20E2E2" + white: "#EFEFEF" + brightBlack: "#666666" + brightRed: "#DB9696" + brightGreen: "#86CC86" + brightYellow: "#BEAC7A" + brightBlue: "#89BAF1" + brightMagenta: "#E49FE4" + brightCyan: "#7DE0E0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 215 + pair: null + contrast: + fg: 46.9 + black: 0 + red: 35 + green: 43.7 + yellow: 52.4 + blue: 50.6 + magenta: 38.7 + cyan: 74.5 + white: 95.7 + brightBlack: 21.4 + brightRed: 53.5 + brightGreen: 64.5 + brightYellow: 56.3 + brightBlue: 61.3 + brightMagenta: 61.5 + brightCyan: 76.6 + brightWhite: 106.2 diff --git a/themes/soho-theme.yaml b/themes/soho-theme.yaml new file mode 100644 index 00000000..5811a5ba --- /dev/null +++ b/themes/soho-theme.yaml @@ -0,0 +1,53 @@ +name: "Soho Theme" +source: + marketplace_id: "smlombardi.soho" + version: "2.1.3" + installs: 3066 + rating: 5 + ratings: 2 + author: "smlombardi" + repo: "https://github.com/smlombardi/theme-soho" + url: "https://marketplace.visualstudio.com/items?itemName=smlombardi.soho" + formats: null +colors: + bg: "#F0F0F0" + fg: "#363636" + black: "#666666" + red: "#CD6564" + green: "#AEC199" + yellow: "#DAC340" + blue: "#6D9CBE" + magenta: "#B081B9" + cyan: "#80B5B3" + white: "#EFEFEF" + brightBlack: "#666666" + brightRed: "#CD6564" + brightGreen: "#AEC199" + brightYellow: "#DAC340" + brightBlue: "#6D9CBE" + brightMagenta: "#B081B9" + brightCyan: "#80B5B3" + brightWhite: "#EFEFEF" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 88.7 + black: 69.8 + red: 55.4 + green: 28 + yellow: 23.5 + blue: 46.8 + magenta: 49.5 + cyan: 36.1 + white: 0 + brightBlack: 69.8 + brightRed: 55.4 + brightGreen: 28 + brightYellow: 23.5 + brightBlue: 46.8 + brightMagenta: 49.5 + brightCyan: 36.1 + brightWhite: 0 diff --git a/themes/solar-right-theme.yaml b/themes/solar-right-theme.yaml new file mode 100644 index 00000000..ba0887f9 --- /dev/null +++ b/themes/solar-right-theme.yaml @@ -0,0 +1,53 @@ +name: "Solar Right Theme" +source: + marketplace_id: "Mukoopa.SolarRight" + version: "0.0.6" + installs: 111 + rating: 0 + ratings: 0 + author: "Mukoopa" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Mukoopa.SolarRight" + formats: null +colors: + bg: "#FFF6EA" + fg: "#000000" + black: "#717070" + red: "#FFA1A1" + green: "#76F976" + yellow: "#FBFF6C" + blue: "#84BFFF" + magenta: "#FF92FF" + cyan: "#61DEFD" + white: "#D5D5D5" + brightBlack: "#A9A9A9" + brightRed: "#FFC4C4" + brightGreen: "#ADFFAD" + brightYellow: "#FDFFB2" + brightBlue: "#AFD5FF" + brightMagenta: "#FFBDFF" + brightCyan: "#8CE8FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 101.3 + black: 69.5 + red: 32.1 + green: 12 + yellow: 0 + blue: 32.2 + magenta: 32.2 + cyan: 21 + white: 17.5 + brightBlack: 41.7 + brightRed: 18.9 + brightGreen: 0 + brightYellow: 0 + brightBlue: 19.6 + brightMagenta: 18.7 + brightCyan: 14.1 + brightWhite: 0 diff --git a/themes/solara.yaml b/themes/solara.yaml new file mode 100644 index 00000000..3f512833 --- /dev/null +++ b/themes/solara.yaml @@ -0,0 +1,53 @@ +name: "Solara" +source: + marketplace_id: "JaydenDancer.solara" + version: "0.0.4" + installs: 139 + rating: 5 + ratings: 1 + author: "Jayden Dancer" + repo: "https://github.com/Official-Phantom/Solara-VSTheme" + url: "https://marketplace.visualstudio.com/items?itemName=JaydenDancer.solara" + formats: null +colors: + bg: "#24171E" + fg: "#7B7D85" + black: "#332026" + red: "#C4374A" + green: "#E8D2D2" + yellow: "#7B7D85" + blue: "#E8D2D2" + magenta: "#C6637D" + cyan: "#E8D2D2" + white: "#B88993" + brightBlack: "#444A5E" + brightRed: "#C4374A" + brightGreen: "#E8D2D2" + brightYellow: "#7B7D85" + brightBlue: "#E8D2D2" + brightMagenta: "#C6637D" + brightCyan: "#E8D2D2" + brightWhite: "#B88993" +meta: + mode: "dark" + accent: "orange" + hue: 346 + pair: null + contrast: + fg: 32 + black: 0 + red: 25.3 + green: 80.8 + yellow: 32 + blue: 80.8 + magenta: 34.8 + cyan: 80.8 + white: 43.9 + brightBlack: 10.7 + brightRed: 25.3 + brightGreen: 80.8 + brightYellow: 32 + brightBlue: 80.8 + brightMagenta: 34.8 + brightCyan: 80.8 + brightWhite: 43.9 diff --git a/themes/solarized-light-enhanced.yaml b/themes/solarized-light-enhanced.yaml new file mode 100644 index 00000000..b2254d04 --- /dev/null +++ b/themes/solarized-light-enhanced.yaml @@ -0,0 +1,54 @@ +name: "Solarized Light Enhanced" +source: + marketplace_id: "imkasen.vscode-solarized-light-enhanced" + version: "0.6.3" + installs: 53 + rating: 0 + ratings: 0 + author: "Kasen" + repo: "https://github.com/imkasen/vscode-solarized-light-enhanced" + url: "https://marketplace.visualstudio.com/items?itemName=imkasen.vscode-solarized-light-enhanced" + formats: + zed: "https://raw.githubusercontent.com/imkasen/vscode-solarized-light-enhanced/main/themes/solarized-light-enhanced-color-theme.json" +colors: + bg: "#FDF6E3" + fg: "#53676D" + black: "#073642" + red: "#CC1729" + green: "#428B00" + yellow: "#A78300" + blue: "#006DCE" + magenta: "#C44392" + cyan: "#00978A" + white: "#EEE8D5" + brightBlack: "#586E75" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#D33682" + brightCyan: "#2AA198" + brightWhite: "#FBF3DB" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 74.5 + black: 93.7 + red: 70.8 + green: 63.8 + yellow: 57.8 + blue: 69.5 + magenta: 65.8 + cyan: 58 + white: 0 + brightBlack: 71.6 + brightRed: 65.3 + brightGreen: 53.8 + brightYellow: 53.8 + brightBlue: 58.7 + brightMagenta: 65 + brightCyan: 53.1 + brightWhite: 0 diff --git a/themes/solarized-monokai--dark.yaml b/themes/solarized-monokai--dark.yaml new file mode 100644 index 00000000..9bb07466 --- /dev/null +++ b/themes/solarized-monokai--dark.yaml @@ -0,0 +1,54 @@ +name: "Solarized Monokai (Dark)" +source: + marketplace_id: "linjing.solarized-dark-monokai" + version: "1.0.0" + installs: 6 + rating: 5 + ratings: 1 + author: "linjing" + repo: "https://github.com/quickmove/solarized-dark-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=linjing.solarized-dark-monokai" + formats: + zed: "https://raw.githubusercontent.com/quickmove/solarized-dark-monokai/main/themes/solarized-dark-monokai.json" +colors: + bg: "#002732" + fg: "#839496" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#FDF6E3" +meta: + mode: "dark" + accent: "orange" + hue: 221 + pair: null + contrast: + fg: 40.2 + black: 0 + red: 28.3 + green: 39.9 + yellow: 39.9 + blue: 34.9 + magenta: 28.6 + cyan: 40.6 + white: 90.1 + brightBlack: 0 + brightRed: 27.8 + brightGreen: 22.1 + brightYellow: 27.9 + brightBlue: 40.2 + brightMagenta: 28.6 + brightCyan: 47.1 + brightWhite: 99.3 diff --git a/themes/solarized-neue-yuki--solarized-lilac.yaml b/themes/solarized-neue-yuki--solarized-lilac.yaml new file mode 100644 index 00000000..6e697165 --- /dev/null +++ b/themes/solarized-neue-yuki--solarized-lilac.yaml @@ -0,0 +1,54 @@ +name: "Solarized Neue & Yuki (Solarized Lilac)" +source: + marketplace_id: "diamondmind.solarized-neue" + version: "0.26.0" + installs: 4084 + rating: 5 + ratings: 1 + author: "Phillip Sauerbeck" + repo: "https://github.com/pmsaue0/solarized-neue" + url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" + formats: + zed: "https://raw.githubusercontent.com/pmsaue0/solarized-neue/master/themes/Solarized-Lilac-color-theme.json" +colors: + bg: "#E5E5EB" + fg: "#403F53" + black: "#403F53" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#8382E6" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#8382E6" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.7 + black: 78.7 + red: 53.6 + green: 51.5 + yellow: 24.3 + blue: 47.4 + magenta: 52.6 + cyan: 45.5 + white: 0 + brightBlack: 78.7 + brightRed: 53.6 + brightGreen: 51.5 + brightYellow: 27 + brightBlue: 47.4 + brightMagenta: 52.6 + brightCyan: 45.5 + brightWhite: 0 diff --git a/themes/solarized-neue-yuki--solarized-neue-bright.yaml b/themes/solarized-neue-yuki--solarized-neue-bright.yaml new file mode 100644 index 00000000..cdd61ce1 --- /dev/null +++ b/themes/solarized-neue-yuki--solarized-neue-bright.yaml @@ -0,0 +1,54 @@ +name: "Solarized Neue & Yuki (Solarized Neue Bright)" +source: + marketplace_id: "diamondmind.solarized-neue" + version: "0.26.0" + installs: 4084 + rating: 5 + ratings: 1 + author: "Phillip Sauerbeck" + repo: "https://github.com/pmsaue0/solarized-neue" + url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" + formats: + zed: "https://raw.githubusercontent.com/pmsaue0/solarized-neue/master/themes/Solarized-Lilac-color-theme.json" +colors: + bg: "#0B293E" + fg: "#A2B7B9" + black: "#93A1A1" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#212121" + brightBlack: "#93A1A1" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2AA298" + brightWhite: "#212121" +meta: + mode: "dark" + accent: "orange" + hue: 243 + pair: null + contrast: + fg: 57.8 + black: 46.5 + red: 29.6 + green: 31.7 + yellow: 59.6 + blue: 35.8 + magenta: 30.6 + cyan: 40.5 + white: 0 + brightBlack: 46.5 + brightRed: 29.6 + brightGreen: 31.7 + brightYellow: 56.7 + brightBlue: 35.8 + brightMagenta: 30.6 + brightCyan: 40.5 + brightWhite: 0 diff --git a/themes/solarized-neue-yuki--solarized-neue.yaml b/themes/solarized-neue-yuki--solarized-neue.yaml new file mode 100644 index 00000000..baf6d55c --- /dev/null +++ b/themes/solarized-neue-yuki--solarized-neue.yaml @@ -0,0 +1,54 @@ +name: "Solarized Neue & Yuki (Solarized Neue)" +source: + marketplace_id: "diamondmind.solarized-neue" + version: "0.26.0" + installs: 4084 + rating: 5 + ratings: 1 + author: "Phillip Sauerbeck" + repo: "https://github.com/pmsaue0/solarized-neue" + url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" + formats: + zed: "https://raw.githubusercontent.com/pmsaue0/solarized-neue/master/themes/Solarized-Lilac-color-theme.json" +colors: + bg: "#042029" + fg: "#839496" + black: "#4A4A4A" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 223 + pair: null + contrast: + fg: 41.2 + black: 10.1 + red: 42.8 + green: 83.4 + yellow: 78.1 + blue: 55.1 + magenta: 52.9 + cyan: 77.4 + white: 106.1 + brightBlack: 10.1 + brightRed: 42.8 + brightGreen: 83.4 + brightYellow: 78.1 + brightBlue: 55.1 + brightMagenta: 52.9 + brightCyan: 77.4 + brightWhite: 106.1 diff --git a/themes/solarized-neue-yuki--solarized-yuki.yaml b/themes/solarized-neue-yuki--solarized-yuki.yaml new file mode 100644 index 00000000..7b655c49 --- /dev/null +++ b/themes/solarized-neue-yuki--solarized-yuki.yaml @@ -0,0 +1,54 @@ +name: "Solarized Neue & Yuki (Solarized Yuki)" +source: + marketplace_id: "diamondmind.solarized-neue" + version: "0.26.0" + installs: 4084 + rating: 5 + ratings: 1 + author: "Phillip Sauerbeck" + repo: "https://github.com/pmsaue0/solarized-neue" + url: "https://marketplace.visualstudio.com/items?itemName=diamondmind.solarized-neue" + formats: + zed: "https://raw.githubusercontent.com/pmsaue0/solarized-neue/master/themes/Solarized-Lilac-color-theme.json" +colors: + bg: "#FEFEFE" + fg: "#403F53" + black: "#403F53" + red: "#DE3D3B" + green: "#08916A" + yellow: "#E0AF02" + blue: "#288ED7" + magenta: "#D6438A" + cyan: "#2AA298" + white: "#F0F0F0" + brightBlack: "#403F53" + brightRed: "#DE3D3B" + brightGreen: "#08916A" + brightYellow: "#DAAA01" + brightBlue: "#288ED7" + brightMagenta: "#D6438A" + brightCyan: "#2AA298" + brightWhite: "#F0F0F0" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 93.1 + black: 93.1 + red: 68.1 + green: 66 + yellow: 38.8 + blue: 61.9 + magenta: 67.1 + cyan: 57.3 + white: 0 + brightBlack: 93.1 + brightRed: 68.1 + brightGreen: 66 + brightYellow: 41.5 + brightBlue: 61.9 + brightMagenta: 67.1 + brightCyan: 57.3 + brightWhite: 0 diff --git a/themes/solarized-selenized--helios-solarized-dark.yaml b/themes/solarized-selenized--helios-solarized-dark.yaml new file mode 100644 index 00000000..3442730c --- /dev/null +++ b/themes/solarized-selenized--helios-solarized-dark.yaml @@ -0,0 +1,54 @@ +name: "Solarized & Selenized (Helios Solarized Dark)" +source: + marketplace_id: "santoso-wijaya.helios-selene" + version: "0.3.18" + installs: 3057 + rating: 5 + ratings: 4 + author: "Santoso Wijaya" + repo: "https://github.com/santoso-wijaya/vscode-helios-selene" + url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" + formats: + zed: "https://raw.githubusercontent.com/santoso-wijaya/vscode-helios-selene/main/themes/Selenized_Dark-color-theme.json" +colors: + bg: "#002B36" + fg: "#92A1A1" + black: "#003641" + red: "#E0332E" + green: "#8D9800" + yellow: "#BB8801" + blue: "#008DD1" + magenta: "#F2579C" + cyan: "#1FA198" + white: "#829496" + brightBlack: "#002B36" + brightRed: "#CF4B15" + brightGreen: "#8D9800" + brightYellow: "#BB8801" + brightBlue: "#008DD1" + brightMagenta: "#5C73C4" + brightCyan: "#008DD1" + brightWhite: "#92A1A1" +meta: + mode: "dark" + accent: "orange" + hue: 220 + pair: null + contrast: + fg: 46.3 + black: 0 + red: 28.7 + green: 39.6 + yellow: 39.8 + blue: 34.7 + magenta: 40.3 + cyan: 39.8 + white: 39.4 + brightBlack: 0 + brightRed: 28 + brightGreen: 39.6 + brightYellow: 39.8 + brightBlue: 34.7 + brightMagenta: 27.4 + brightCyan: 34.7 + brightWhite: 46.3 diff --git a/themes/solarized-selenized--helios-solarized-light.yaml b/themes/solarized-selenized--helios-solarized-light.yaml new file mode 100644 index 00000000..7e2dec5a --- /dev/null +++ b/themes/solarized-selenized--helios-solarized-light.yaml @@ -0,0 +1,54 @@ +name: "Solarized & Selenized (Helios Solarized Light)" +source: + marketplace_id: "santoso-wijaya.helios-selene" + version: "0.3.18" + installs: 3057 + rating: 5 + ratings: 4 + author: "Santoso Wijaya" + repo: "https://github.com/santoso-wijaya/vscode-helios-selene" + url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" + formats: + zed: "https://raw.githubusercontent.com/santoso-wijaya/vscode-helios-selene/main/themes/Selenized_Dark-color-theme.json" +colors: + bg: "#FFF6E3" + fg: "#566E76" + black: "#F0E7D5" + red: "#E0332E" + green: "#8D9800" + yellow: "#BB8801" + blue: "#008DD1" + magenta: "#F2579C" + cyan: "#1FA198" + white: "#637B82" + brightBlack: "#FFF6E3" + brightRed: "#CF4B15" + brightGreen: "#8D9800" + brightYellow: "#BB8801" + brightBlue: "#008DD1" + brightMagenta: "#5C73C4" + brightCyan: "#008DD1" + brightWhite: "#566E76" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 71.9 + black: 0 + red: 64.5 + green: 53.7 + yellow: 53.5 + blue: 58.6 + magenta: 53 + cyan: 53.5 + white: 66.1 + brightBlack: 0 + brightRed: 65.2 + brightGreen: 53.7 + brightYellow: 53.5 + brightBlue: 58.6 + brightMagenta: 65.8 + brightCyan: 58.6 + brightWhite: 71.9 diff --git a/themes/solarized-selenized--selene-selenized-dark.yaml b/themes/solarized-selenized--selene-selenized-dark.yaml new file mode 100644 index 00000000..13c65922 --- /dev/null +++ b/themes/solarized-selenized--selene-selenized-dark.yaml @@ -0,0 +1,54 @@ +name: "Solarized & Selenized (Selene Selenized Dark)" +source: + marketplace_id: "santoso-wijaya.helios-selene" + version: "0.3.18" + installs: 3057 + rating: 5 + ratings: 4 + author: "Santoso Wijaya" + repo: "https://github.com/santoso-wijaya/vscode-helios-selene" + url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" + formats: + zed: "https://raw.githubusercontent.com/santoso-wijaya/vscode-helios-selene/main/themes/Selenized_Dark-color-theme.json" +colors: + bg: "#053D48" + fg: "#C8D7D8" + black: "#0E4956" + red: "#FD564E" + green: "#80B83C" + yellow: "#E3B230" + blue: "#0096F5" + magenta: "#F176BD" + cyan: "#39C7B9" + white: "#ADBCBC" + brightBlack: "#053D48" + brightRed: "#F38649" + brightGreen: "#80B83C" + brightYellow: "#E3B230" + brightBlue: "#0096F5" + brightMagenta: "#A58CEC" + brightCyan: "#0096F5" + brightWhite: "#C8D7D8" +meta: + mode: "dark" + accent: "orange" + hue: 215 + pair: null + contrast: + fg: 73.1 + black: 0 + red: 36.6 + green: 48 + yellow: 57.3 + blue: 36.6 + magenta: 44.2 + cyan: 54.4 + white: 57.2 + brightBlack: 0 + brightRed: 45.5 + brightGreen: 48 + brightYellow: 57.3 + brightBlue: 36.6 + brightMagenta: 41 + brightCyan: 36.6 + brightWhite: 73.1 diff --git a/themes/solarized-selenized--selene-selenized-light.yaml b/themes/solarized-selenized--selene-selenized-light.yaml new file mode 100644 index 00000000..e59e8981 --- /dev/null +++ b/themes/solarized-selenized--selene-selenized-light.yaml @@ -0,0 +1,54 @@ +name: "Solarized & Selenized (Selene Selenized Light)" +source: + marketplace_id: "santoso-wijaya.helios-selene" + version: "0.3.18" + installs: 3057 + rating: 5 + ratings: 4 + author: "Santoso Wijaya" + repo: "https://github.com/santoso-wijaya/vscode-helios-selene" + url: "https://marketplace.visualstudio.com/items?itemName=santoso-wijaya.helios-selene" + formats: + zed: "https://raw.githubusercontent.com/santoso-wijaya/vscode-helios-selene/main/themes/Selenized_Dark-color-theme.json" +colors: + bg: "#FEF3DA" + fg: "#384C52" + black: "#F0E4CC" + red: "#D4212B" + green: "#539100" + yellow: "#B38800" + blue: "#0073D2" + magenta: "#CB4C99" + cyan: "#009C8F" + white: "#52666D" + brightBlack: "#FEF3DA" + brightRed: "#C75D20" + brightGreen: "#539100" + brightYellow: "#B38800" + brightBlue: "#0073D2" + brightMagenta: "#7D64C5" + brightCyan: "#0073D2" + brightWhite: "#384C52" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 84 + black: 0 + red: 67 + green: 59.2 + yellow: 53 + blue: 65.8 + magenta: 61.2 + cyan: 54.3 + white: 73.4 + brightBlack: 0 + brightRed: 61.5 + brightGreen: 59.2 + brightYellow: 53 + brightBlue: 65.8 + brightMagenta: 65.5 + brightCyan: 65.8 + brightWhite: 84 diff --git a/themes/solitude-color-theme--solitude-dark.yaml b/themes/solitude-color-theme--solitude-dark.yaml new file mode 100644 index 00000000..7da4dab2 --- /dev/null +++ b/themes/solitude-color-theme--solitude-dark.yaml @@ -0,0 +1,53 @@ +name: "Solitude Color Theme (solitude-dark)" +source: + marketplace_id: "403forbidden.solitude-color-theme" + version: "1.0.0" + installs: 69 + rating: 5 + ratings: 1 + author: "403 Forbidden" + repo: "https://github.com/mario-garcia-dev/solitude-theme" + url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.solitude-color-theme" + formats: null +colors: + bg: "#0A0726" + fg: "#F3F3F3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 281 + pair: null + contrast: + fg: 99.7 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.4 + cyan: 48.2 + white: 90.7 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/solitude-color-theme--solitude-soft.yaml b/themes/solitude-color-theme--solitude-soft.yaml new file mode 100644 index 00000000..e34f6d64 --- /dev/null +++ b/themes/solitude-color-theme--solitude-soft.yaml @@ -0,0 +1,53 @@ +name: "Solitude Color Theme (solitude-soft)" +source: + marketplace_id: "403forbidden.solitude-color-theme" + version: "1.0.0" + installs: 69 + rating: 5 + ratings: 1 + author: "403 Forbidden" + repo: "https://github.com/mario-garcia-dev/solitude-theme" + url: "https://marketplace.visualstudio.com/items?itemName=403forbidden.solitude-color-theme" + formats: null +colors: + bg: "#100B3B" + fg: "#F3F3F3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 279 + pair: null + contrast: + fg: 99.1 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/solo-leveling-theme.yaml b/themes/solo-leveling-theme.yaml new file mode 100644 index 00000000..dfaf22d1 --- /dev/null +++ b/themes/solo-leveling-theme.yaml @@ -0,0 +1,53 @@ +name: "Solo Leveling Theme" +source: + marketplace_id: "Amanpandey.solo-leveling-theme" + version: "0.1.0" + installs: 4017 + rating: 5 + ratings: 1 + author: "Amanpandey" + repo: "https://github.com/losercodes/solo-leveling-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Amanpandey.solo-leveling-theme" + formats: null +colors: + bg: "#0A0C12" + fg: "#E0E0E0" + black: "#000000" + red: "#FF3131" + green: "#00AEEF" + yellow: "#FFA424" + blue: "#00AEEF" + magenta: "#A020F0" + cyan: "#00D5FF" + white: "#E0E0E0" + brightBlack: "#000000" + brightRed: "#FF6060" + brightGreen: "#50D0FF" + brightYellow: "#FFC864" + brightBlue: "#50C8FF" + brightMagenta: "#C050FF" + brightCyan: "#50E3FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 270 + pair: null + contrast: + fg: 87.7 + black: 0 + red: 39.2 + green: 52.9 + yellow: 64.2 + blue: 52.9 + magenta: 26.9 + cyan: 71.1 + white: 87.7 + brightBlack: 0 + brightRed: 46.4 + brightGreen: 70 + brightYellow: 78.4 + brightBlue: 66.4 + brightMagenta: 38.7 + brightCyan: 78.9 + brightWhite: 107.7 diff --git a/themes/sonokai--sonokai-andromeda.yaml b/themes/sonokai--sonokai-andromeda.yaml new file mode 100644 index 00000000..010ff920 --- /dev/null +++ b/themes/sonokai--sonokai-andromeda.yaml @@ -0,0 +1,53 @@ +name: "Sonokai (Sonokai Andromeda)" +source: + marketplace_id: "sainnhe.sonokai" + version: "0.2.9" + installs: 24103 + rating: 5 + ratings: 18 + author: "sainnhe" + repo: "https://github.com/sainnhe/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" + formats: null +colors: + bg: "#2B2D3A" + fg: "#E1E3E4" + black: "#3F445B" + red: "#FB617E" + green: "#9ED06C" + yellow: "#EDC763" + blue: "#6DCAE8" + magenta: "#BB97EE" + cyan: "#F89860" + white: "#E1E3E4" + brightBlack: "#3F445B" + brightRed: "#FB617E" + brightGreen: "#9ED06C" + brightYellow: "#EDC763" + brightBlue: "#6DCAE8" + brightMagenta: "#BB97EE" + brightCyan: "#F89860" + brightWhite: "#E1E3E4" +meta: + mode: "dark" + accent: "red" + hue: 278 + pair: null + contrast: + fg: 84.9 + black: 0 + red: 42 + green: 64.8 + yellow: 70.6 + blue: 62.9 + magenta: 50.4 + cyan: 55.1 + white: 84.9 + brightBlack: 0 + brightRed: 42 + brightGreen: 64.8 + brightYellow: 70.6 + brightBlue: 62.9 + brightMagenta: 50.4 + brightCyan: 55.1 + brightWhite: 84.9 diff --git a/themes/sonokai--sonokai-atlantis.yaml b/themes/sonokai--sonokai-atlantis.yaml new file mode 100644 index 00000000..10dab2c2 --- /dev/null +++ b/themes/sonokai--sonokai-atlantis.yaml @@ -0,0 +1,53 @@ +name: "Sonokai (Sonokai Atlantis)" +source: + marketplace_id: "sainnhe.sonokai" + version: "0.2.9" + installs: 24103 + rating: 5 + ratings: 18 + author: "sainnhe" + repo: "https://github.com/sainnhe/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" + formats: null +colors: + bg: "#2A2F38" + fg: "#E1E3E4" + black: "#424B5B" + red: "#FF6578" + green: "#9DD274" + yellow: "#EACB64" + blue: "#72CCE8" + magenta: "#BA9CF3" + cyan: "#F69C5E" + white: "#E1E3E4" + brightBlack: "#424B5B" + brightRed: "#FF6578" + brightGreen: "#9DD274" + brightYellow: "#EACB64" + brightBlue: "#72CCE8" + brightMagenta: "#BA9CF3" + brightCyan: "#F69C5E" + brightWhite: "#E1E3E4" +meta: + mode: "dark" + accent: "orange" + hue: 262 + pair: null + contrast: + fg: 84.7 + black: 7.3 + red: 43.3 + green: 65.6 + yellow: 71.6 + blue: 63.9 + magenta: 52 + cyan: 55.8 + white: 84.7 + brightBlack: 7.3 + brightRed: 43.3 + brightGreen: 65.6 + brightYellow: 71.6 + brightBlue: 63.9 + brightMagenta: 52 + brightCyan: 55.8 + brightWhite: 84.7 diff --git a/themes/sonokai--sonokai-espresso.yaml b/themes/sonokai--sonokai-espresso.yaml new file mode 100644 index 00000000..82b9713c --- /dev/null +++ b/themes/sonokai--sonokai-espresso.yaml @@ -0,0 +1,53 @@ +name: "Sonokai (Sonokai Espresso)" +source: + marketplace_id: "sainnhe.sonokai" + version: "0.2.9" + installs: 24103 + rating: 5 + ratings: 18 + author: "sainnhe" + repo: "https://github.com/sainnhe/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" + formats: null +colors: + bg: "#312C2B" + fg: "#E4E3E1" + black: "#4E433F" + red: "#F86882" + green: "#A6CD77" + yellow: "#F0C66F" + blue: "#81D0C9" + magenta: "#9FA0E1" + cyan: "#F08D71" + white: "#E4E3E1" + brightBlack: "#4E433F" + brightRed: "#F86882" + brightGreen: "#A6CD77" + brightYellow: "#F0C66F" + brightBlue: "#81D0C9" + brightMagenta: "#9FA0E1" + brightCyan: "#F08D71" + brightWhite: "#E4E3E1" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 85.3 + black: 0 + red: 43.1 + green: 64.6 + yellow: 71 + blue: 65.5 + magenta: 49.5 + cyan: 50.6 + white: 85.3 + brightBlack: 0 + brightRed: 43.1 + brightGreen: 64.6 + brightYellow: 71 + brightBlue: 65.5 + brightMagenta: 49.5 + brightCyan: 50.6 + brightWhite: 85.3 diff --git a/themes/sonokai--sonokai-maia.yaml b/themes/sonokai--sonokai-maia.yaml new file mode 100644 index 00000000..98a38ce1 --- /dev/null +++ b/themes/sonokai--sonokai-maia.yaml @@ -0,0 +1,53 @@ +name: "Sonokai (Sonokai Maia)" +source: + marketplace_id: "sainnhe.sonokai" + version: "0.2.9" + installs: 24103 + rating: 5 + ratings: 18 + author: "sainnhe" + repo: "https://github.com/sainnhe/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" + formats: null +colors: + bg: "#273136" + fg: "#E1E2E3" + black: "#414B53" + red: "#F76C7C" + green: "#9CD57B" + yellow: "#E3D367" + blue: "#78CEE9" + magenta: "#BAA0F8" + cyan: "#F3A96A" + white: "#E1E2E3" + brightBlack: "#414B53" + brightRed: "#F76C7C" + brightGreen: "#9CD57B" + brightYellow: "#E3D367" + brightBlue: "#78CEE9" + brightMagenta: "#BAA0F8" + brightCyan: "#F3A96A" + brightWhite: "#E1E2E3" +meta: + mode: "dark" + accent: "orange" + hue: 230 + pair: null + contrast: + fg: 84 + black: 0 + red: 43 + green: 66.9 + yellow: 73.9 + blue: 65 + magenta: 53.6 + cyan: 59.8 + white: 84 + brightBlack: 0 + brightRed: 43 + brightGreen: 66.9 + brightYellow: 73.9 + brightBlue: 65 + brightMagenta: 53.6 + brightCyan: 59.8 + brightWhite: 84 diff --git a/themes/sonokai--sonokai-shusia.yaml b/themes/sonokai--sonokai-shusia.yaml new file mode 100644 index 00000000..a607766e --- /dev/null +++ b/themes/sonokai--sonokai-shusia.yaml @@ -0,0 +1,53 @@ +name: "Sonokai (Sonokai Shusia)" +source: + marketplace_id: "sainnhe.sonokai" + version: "0.2.9" + installs: 24103 + rating: 5 + ratings: 18 + author: "sainnhe" + repo: "https://github.com/sainnhe/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" + formats: null +colors: + bg: "#2D2A2E" + fg: "#E3E1E4" + black: "#49464E" + red: "#F85E84" + green: "#9ECD6F" + yellow: "#E5C463" + blue: "#7ACCD7" + magenta: "#AB9DF2" + cyan: "#EF9062" + white: "#E3E1E4" + brightBlack: "#49464E" + brightRed: "#F85E84" + brightGreen: "#9ECD6F" + brightYellow: "#E5C463" + brightBlue: "#7ACCD7" + brightMagenta: "#AB9DF2" + brightCyan: "#EF9062" + brightWhite: "#E3E1E4" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 84.9 + black: 0 + red: 41.5 + green: 64.1 + yellow: 68.7 + blue: 64.3 + magenta: 51.2 + cyan: 51.5 + white: 84.9 + brightBlack: 0 + brightRed: 41.5 + brightGreen: 64.1 + brightYellow: 68.7 + brightBlue: 64.3 + brightMagenta: 51.2 + brightCyan: 51.5 + brightWhite: 84.9 diff --git a/themes/sonokai--sonokai.yaml b/themes/sonokai--sonokai.yaml new file mode 100644 index 00000000..192d7309 --- /dev/null +++ b/themes/sonokai--sonokai.yaml @@ -0,0 +1,53 @@ +name: "Sonokai (Sonokai)" +source: + marketplace_id: "sainnhe.sonokai" + version: "0.2.9" + installs: 24103 + rating: 5 + ratings: 18 + author: "sainnhe" + repo: "https://github.com/sainnhe/sonokai-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=sainnhe.sonokai" + formats: null +colors: + bg: "#2C2E34" + fg: "#E2E2E3" + black: "#414550" + red: "#FC5D7C" + green: "#9ED072" + yellow: "#E7C664" + blue: "#76CCE0" + magenta: "#B39DF3" + cyan: "#F39660" + white: "#E2E2E3" + brightBlack: "#414550" + brightRed: "#FC5D7C" + brightGreen: "#9ED072" + brightYellow: "#E7C664" + brightBlue: "#76CCE0" + brightMagenta: "#B39DF3" + brightCyan: "#F39660" + brightWhite: "#E2E2E3" +meta: + mode: "dark" + accent: "red" + hue: 271 + pair: null + contrast: + fg: 84.5 + black: 0 + red: 41.3 + green: 64.9 + yellow: 69.2 + blue: 63.8 + magenta: 51.6 + cyan: 53.4 + white: 84.5 + brightBlack: 0 + brightRed: 41.3 + brightGreen: 64.9 + brightYellow: 69.2 + brightBlue: 63.8 + brightMagenta: 51.6 + brightCyan: 53.4 + brightWhite: 84.5 diff --git a/themes/soudev-theme--soudev-mega-dark.yaml b/themes/soudev-theme--soudev-mega-dark.yaml new file mode 100644 index 00000000..11591212 --- /dev/null +++ b/themes/soudev-theme--soudev-mega-dark.yaml @@ -0,0 +1,53 @@ +name: "Soudev Theme (Soudev mega dark)" +source: + marketplace_id: "soudev.soudev-theme" + version: "1.0.3" + installs: 11544 + rating: 5 + ratings: 1 + author: "soudev" + repo: "https://github.com/jefersonpassos/soudev-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" + formats: null +colors: + bg: "#070E13" + fg: "#FFFFFF" + black: "#250E48" + red: "#F7005B" + green: "#46D028" + yellow: "#DDCB0A" + blue: "#EF8354" + magenta: "#A100DF" + cyan: "#40B4BB" + white: "#FFFFFF" + brightBlack: "#4A4F53" + brightRed: "#F7005B" + brightGreen: "#46D028" + brightYellow: "#DDCB0A" + brightBlue: "#EF8354" + brightMagenta: "#A100DF" + brightCyan: "#40B4BB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 239 + pair: null + contrast: + fg: 107.6 + black: 0 + red: 36 + green: 63 + yellow: 73.6 + blue: 51.1 + magenta: 24.7 + cyan: 53.3 + white: 107.6 + brightBlack: 13.3 + brightRed: 36 + brightGreen: 63 + brightYellow: 73.6 + brightBlue: 51.1 + brightMagenta: 24.7 + brightCyan: 53.3 + brightWhite: 107.6 diff --git a/themes/soudev-theme--soudev-purple-andromeda.yaml b/themes/soudev-theme--soudev-purple-andromeda.yaml new file mode 100644 index 00000000..97241766 --- /dev/null +++ b/themes/soudev-theme--soudev-purple-andromeda.yaml @@ -0,0 +1,53 @@ +name: "Soudev Theme (Soudev Purple Andromeda)" +source: + marketplace_id: "soudev.soudev-theme" + version: "1.0.3" + installs: 11544 + rating: 5 + ratings: 1 + author: "soudev" + repo: "https://github.com/jefersonpassos/soudev-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" + formats: null +colors: + bg: "#3D1653" + fg: "#FFFFFF" + black: "#3D1653" + red: "#F7005B" + green: "#46D028" + yellow: "#DDCB0A" + blue: "#EF8354" + magenta: "#A100DF" + cyan: "#40B4BB" + white: "#FFFFFF" + brightBlack: "#4A4F53" + brightRed: "#F7005B" + brightGreen: "#46D028" + brightYellow: "#DDCB0A" + brightBlue: "#EF8354" + brightMagenta: "#A100DF" + brightCyan: "#40B4BB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 311 + pair: null + contrast: + fg: 103.9 + black: 0 + red: 32.3 + green: 59.3 + yellow: 69.9 + blue: 47.4 + magenta: 21 + cyan: 49.6 + white: 103.9 + brightBlack: 9.6 + brightRed: 32.3 + brightGreen: 59.3 + brightYellow: 69.9 + brightBlue: 47.4 + brightMagenta: 21 + brightCyan: 49.6 + brightWhite: 103.9 diff --git a/themes/soudev-theme--soudev-semi-dark-andromeda.yaml b/themes/soudev-theme--soudev-semi-dark-andromeda.yaml new file mode 100644 index 00000000..f8205818 --- /dev/null +++ b/themes/soudev-theme--soudev-semi-dark-andromeda.yaml @@ -0,0 +1,53 @@ +name: "Soudev Theme (Soudev semi dark Andromeda)" +source: + marketplace_id: "soudev.soudev-theme" + version: "1.0.3" + installs: 11544 + rating: 5 + ratings: 1 + author: "soudev" + repo: "https://github.com/jefersonpassos/soudev-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=soudev.soudev-theme" + formats: null +colors: + bg: "#2B2331" + fg: "#FFFFFF" + black: "#2B2331" + red: "#F7005B" + green: "#46D028" + yellow: "#DDCB0A" + blue: "#EF8354" + magenta: "#A100DF" + cyan: "#40B4BB" + white: "#FFFFFF" + brightBlack: "#4A4F53" + brightRed: "#F7005B" + brightGreen: "#46D028" + brightYellow: "#DDCB0A" + brightBlue: "#EF8354" + brightMagenta: "#A100DF" + brightCyan: "#40B4BB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 310 + pair: null + contrast: + fg: 104.8 + black: 0 + red: 33.2 + green: 60.2 + yellow: 70.8 + blue: 48.3 + magenta: 21.8 + cyan: 50.4 + white: 104.8 + brightBlack: 10.4 + brightRed: 33.2 + brightGreen: 60.2 + brightYellow: 70.8 + brightBlue: 48.3 + brightMagenta: 21.8 + brightCyan: 50.4 + brightWhite: 104.8 diff --git a/themes/space-ocean-kit-refined.yaml b/themes/space-ocean-kit-refined.yaml new file mode 100644 index 00000000..9f467e3e --- /dev/null +++ b/themes/space-ocean-kit-refined.yaml @@ -0,0 +1,53 @@ +name: "Space Ocean Kit Refined" +source: + marketplace_id: "space-ocean-kit-refined.space-ocean-kit-refined" + version: "0.3.1" + installs: 81270 + rating: 0 + ratings: 0 + author: "space-ocean-kit-refined" + repo: "https://github.com/aichbauer/space-ocean-kit-refined/" + url: "https://marketplace.visualstudio.com/items?itemName=space-ocean-kit-refined.space-ocean-kit-refined" + formats: null +colors: + bg: "#2B303B" + fg: "#D4D4D4" + black: "#1C1F26" + red: "#BF5F69" + green: "#A3BE89" + yellow: "#EBCB8B" + blue: "#96B5B4" + magenta: "#B48EAD" + cyan: "#96B5B4" + white: "#C0C5CE" + brightBlack: "#22262F" + brightRed: "#D39298" + brightGreen: "#CCDBBD" + brightYellow: "#F8EEDA" + brightBlue: "#C6D7D6" + brightMagenta: "#D4BED0" + brightCyan: "#C6D7D6" + brightWhite: "#F7F8F9" +meta: + mode: "dark" + accent: "red" + hue: 266 + pair: null + contrast: + fg: 75.4 + black: 0 + red: 28.4 + green: 57.5 + yellow: 72.3 + blue: 53.9 + magenta: 42.4 + cyan: 53.9 + white: 66.2 + brightBlack: 0 + brightRed: 47.5 + brightGreen: 76.6 + brightYellow: 92.2 + brightBlue: 75.1 + brightMagenta: 66 + brightCyan: 75.1 + brightWhite: 98.1 diff --git a/themes/space-purple--space-purple-dark.yaml b/themes/space-purple--space-purple-dark.yaml new file mode 100644 index 00000000..97c4271c --- /dev/null +++ b/themes/space-purple--space-purple-dark.yaml @@ -0,0 +1,53 @@ +name: "Space Purple (Space Purple Dark)" +source: + marketplace_id: "zzAIMoo.space-purple" + version: "0.11.0" + installs: 11302 + rating: 5 + ratings: 1 + author: "zzAIMoo" + repo: "https://github.com/zzAIMoo/space-purple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zzAIMoo.space-purple" + formats: null +colors: + bg: "#3B205A" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 302 + pair: null + contrast: + fg: 103 + black: 0 + red: 22.9 + green: 49.1 + yellow: 81.8 + blue: 23.6 + magenta: 25.9 + cyan: 43.7 + white: 86.2 + brightBlack: 18.2 + brightRed: 34.7 + brightGreen: 59.7 + brightYellow: 91.8 + brightBlue: 36.1 + brightMagenta: 41.5 + brightCyan: 51.5 + brightWhite: 86.2 diff --git a/themes/space-purple--space-purple-light.yaml b/themes/space-purple--space-purple-light.yaml new file mode 100644 index 00000000..a2019b54 --- /dev/null +++ b/themes/space-purple--space-purple-light.yaml @@ -0,0 +1,53 @@ +name: "Space Purple (Space Purple Light)" +source: + marketplace_id: "zzAIMoo.space-purple" + version: "0.11.0" + installs: 11302 + rating: 5 + ratings: 1 + author: "zzAIMoo" + repo: "https://github.com/zzAIMoo/space-purple-theme" + url: "https://marketplace.visualstudio.com/items?itemName=zzAIMoo.space-purple" + formats: null +colors: + bg: "#EDC4FF" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: 315 + pair: null + contrast: + fg: 80.1 + black: 80.1 + red: 48.1 + green: 23.3 + yellow: 32 + blue: 60.1 + magenta: 48.6 + cyan: 34.7 + white: 60 + brightBlack: 52.8 + brightRed: 48.1 + brightGreen: 15 + brightYellow: 15 + brightBlue: 60.1 + brightMagenta: 48.6 + brightCyan: 34.7 + brightWhite: 22.5 diff --git a/themes/space-wars-theme--darth-insidious.yaml b/themes/space-wars-theme--darth-insidious.yaml new file mode 100644 index 00000000..2bb81ffc --- /dev/null +++ b/themes/space-wars-theme--darth-insidious.yaml @@ -0,0 +1,53 @@ +name: "Space Wars - Theme (Darth Insidious)" +source: + marketplace_id: "Dutchorange.space-wars" + version: "1.1.7" + installs: 1713 + rating: 5 + ratings: 3 + author: "Dutchorange" + repo: "https://github.com/entropy-glitch/space-wars" + url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" + formats: null +colors: + bg: "#1A1420" + fg: "#E6E1EA" + black: "#2C2235" + red: "#FF4242" + green: "#9F87FF" + yellow: "#E7C374" + blue: "#7F54F6" + magenta: "#BA3BE7" + cyan: "#8B1F1F" + white: "#E6E1EA" + brightBlack: "#6E5C82" + brightRed: "#FF6B6B" + brightGreen: "#B5A3FF" + brightYellow: "#EBD194" + brightBlue: "#9574FF" + brightMagenta: "#CA5BF7" + brightCyan: "#74C4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 307 + pair: null + contrast: + fg: 88.6 + black: 0 + red: 40.4 + green: 46.5 + yellow: 72 + blue: 28.9 + magenta: 32 + cyan: 11.7 + white: 88.6 + brightBlack: 21 + brightRed: 48.1 + brightGreen: 58.5 + brightYellow: 79.2 + brightBlue: 39.8 + brightMagenta: 41 + brightCyan: 65.7 + brightWhite: 106.9 diff --git a/themes/space-wars-theme--darth-invader.yaml b/themes/space-wars-theme--darth-invader.yaml new file mode 100644 index 00000000..127fdbe6 --- /dev/null +++ b/themes/space-wars-theme--darth-invader.yaml @@ -0,0 +1,53 @@ +name: "Space Wars - Theme (Darth Invader)" +source: + marketplace_id: "Dutchorange.space-wars" + version: "1.1.7" + installs: 1713 + rating: 5 + ratings: 3 + author: "Dutchorange" + repo: "https://github.com/entropy-glitch/space-wars" + url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" + formats: null +colors: + bg: "#050505" + fg: "#E0E0E0" + black: "#1B1B1B" + red: "#FF6464" + green: "#77C677" + yellow: "#FFC74A" + blue: "#3A5FCD" + magenta: "#C98A85" + cyan: "#FF9966" + white: "#E0E0E0" + brightBlack: "#666666" + brightRed: "#FF6B68" + brightGreen: "#98FB98" + brightYellow: "#FFD700" + brightBlue: "#B5655A" + brightMagenta: "#DB3C3C" + brightCyan: "#FF6464" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.9 + black: 0 + red: 47.4 + green: 61.9 + yellow: 77.8 + blue: 23.8 + magenta: 47.8 + cyan: 61.5 + white: 87.9 + brightBlack: 23 + brightRed: 49 + brightGreen: 90.9 + brightYellow: 84.2 + brightBlue: 32.8 + brightMagenta: 32.1 + brightCyan: 47.4 + brightWhite: 107.9 diff --git a/themes/space-wars-theme--luke-skywriter.yaml b/themes/space-wars-theme--luke-skywriter.yaml new file mode 100644 index 00000000..c6a3465c --- /dev/null +++ b/themes/space-wars-theme--luke-skywriter.yaml @@ -0,0 +1,53 @@ +name: "Space Wars - Theme (Luke Skywriter)" +source: + marketplace_id: "Dutchorange.space-wars" + version: "1.1.7" + installs: 1713 + rating: 5 + ratings: 3 + author: "Dutchorange" + repo: "https://github.com/entropy-glitch/space-wars" + url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" + formats: null +colors: + bg: "#1C2A3D" + fg: "#E9E9E9" + black: "#2C3B4E" + red: "#FF9B9B" + green: "#9BE0AE" + yellow: "#FFE0A0" + blue: "#87CEEB" + magenta: "#E0B0FF" + cyan: "#98E0E8" + white: "#E9E9E9" + brightBlack: "#6B8299" + brightRed: "#FFB0B0" + brightGreen: "#B0FFB0" + brightYellow: "#FFE8B0" + brightBlue: "#B0E8FF" + brightMagenta: "#FFB0E8" + brightCyan: "#B0FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 256 + pair: null + contrast: + fg: 89.8 + black: 0 + red: 59.7 + green: 74.7 + yellow: 86.3 + blue: 67.4 + magenta: 66.3 + cyan: 76.8 + white: 89.8 + brightBlack: 30.8 + brightRed: 67.6 + brightGreen: 91.9 + brightYellow: 90.4 + brightBlue: 83.9 + brightMagenta: 70.1 + brightCyan: 95.1 + brightWhite: 104.1 diff --git a/themes/space-wars-theme--storm-tracker.yaml b/themes/space-wars-theme--storm-tracker.yaml new file mode 100644 index 00000000..0ceef7ec --- /dev/null +++ b/themes/space-wars-theme--storm-tracker.yaml @@ -0,0 +1,53 @@ +name: "Space Wars - Theme (Storm Tracker)" +source: + marketplace_id: "Dutchorange.space-wars" + version: "1.1.7" + installs: 1713 + rating: 5 + ratings: 3 + author: "Dutchorange" + repo: "https://github.com/entropy-glitch/space-wars" + url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" + formats: null +colors: + bg: "#1B1B1B" + fg: "#E1E1E1" + black: "#1B1B1B" + red: "#FFFFFF" + green: "#5A5A5A" + yellow: "#A0A0A0" + blue: "#5A5A5A" + magenta: "#FFFFFF" + cyan: "#FF9966" + white: "#E1E1E1" + brightBlack: "#1B1B1B" + brightRed: "#FFFFFF" + brightGreen: "#5A5A5A" + brightYellow: "#A0A0A0" + brightBlue: "#FFAA44" + brightMagenta: "#FFFFFF" + brightCyan: "#FF9966" + brightWhite: "#E1E1E1" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 87.1 + black: 0 + red: 106.4 + green: 16.6 + yellow: 49.4 + blue: 16.6 + magenta: 106.4 + cyan: 60 + white: 87.1 + brightBlack: 0 + brightRed: 106.4 + brightGreen: 16.6 + brightYellow: 49.4 + brightBlue: 65.3 + brightMagenta: 106.4 + brightCyan: 60 + brightWhite: 87.1 diff --git a/themes/space-wars-theme--yoda-mystical-force.yaml b/themes/space-wars-theme--yoda-mystical-force.yaml new file mode 100644 index 00000000..cec60dff --- /dev/null +++ b/themes/space-wars-theme--yoda-mystical-force.yaml @@ -0,0 +1,53 @@ +name: "Space Wars - Theme (Yoda - Mystical Force)" +source: + marketplace_id: "Dutchorange.space-wars" + version: "1.1.7" + installs: 1713 + rating: 5 + ratings: 3 + author: "Dutchorange" + repo: "https://github.com/entropy-glitch/space-wars" + url: "https://marketplace.visualstudio.com/items?itemName=Dutchorange.space-wars" + formats: null +colors: + bg: "#1A2028" + fg: "#E9EAE6" + black: "#2C353F" + red: "#FF7F7F" + green: "#7AFFB2" + yellow: "#FFD787" + blue: "#66D9EF" + magenta: "#E7A3FF" + cyan: "#4B9783" + white: "#E9EAE6" + brightBlack: "#6B8299" + brightRed: "#FF9B9B" + brightGreen: "#A2FFD0" + brightYellow: "#FFE4A8" + brightBlue: "#A3E4F2" + brightMagenta: "#F2B8FF" + brightCyan: "#B0FFF5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 256 + pair: null + contrast: + fg: 91.8 + black: 0 + red: 52.4 + green: 89.7 + yellow: 83.5 + blue: 72.4 + magenta: 64.5 + cyan: 37.6 + white: 91.8 + brightBlack: 32.5 + brightRed: 61.4 + brightGreen: 93.5 + brightYellow: 90 + brightBlue: 81.8 + brightMagenta: 73.7 + brightCyan: 96.2 + brightWhite: 105.8 diff --git a/themes/spacemacs--spacemacs-dark.yaml b/themes/spacemacs--spacemacs-dark.yaml new file mode 100644 index 00000000..34355179 --- /dev/null +++ b/themes/spacemacs--spacemacs-dark.yaml @@ -0,0 +1,53 @@ +name: "Spacemacs (Spacemacs - dark)" +source: + marketplace_id: "cometeer.spacemacs" + version: "1.1.1" + installs: 69548 + rating: 4.89 + ratings: 9 + author: "cometeer" + repo: "git+https://github.com/cometeer/spacemacs-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=cometeer.spacemacs" + formats: null +colors: + bg: "#292B2E" + fg: "#CBC1D5" + black: "#B2B2B2" + red: "#BA2F59" + green: "#67B11D" + yellow: "#B1951D" + blue: "#3A81C3" + magenta: "#800080" + cyan: "#21B8C7" + white: "#B2B2B2" + brightBlack: "#B2B2B2" + brightRed: "#F2241F" + brightGreen: "#86DC2F" + brightYellow: "#B1951D" + brightBlue: "#D7DFFF" + brightMagenta: "#A31DB1" + brightCyan: "#28DEF0" + brightWhite: "#B2B2B2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 67.4 + black: 56.7 + red: 20.2 + green: 46.4 + yellow: 42.3 + blue: 29.7 + magenta: 8.7 + cyan: 51.2 + white: 56.7 + brightBlack: 56.7 + brightRed: 31.2 + brightGreen: 68.4 + brightYellow: 42.3 + brightBlue: 83.8 + brightMagenta: 18.3 + brightCyan: 71 + brightWhite: 56.7 diff --git a/themes/spacemacs--spacemacs-light.yaml b/themes/spacemacs--spacemacs-light.yaml new file mode 100644 index 00000000..0163e5d2 --- /dev/null +++ b/themes/spacemacs--spacemacs-light.yaml @@ -0,0 +1,53 @@ +name: "Spacemacs (Spacemacs - light)" +source: + marketplace_id: "cometeer.spacemacs" + version: "1.1.1" + installs: 69548 + rating: 4.89 + ratings: 9 + author: "cometeer" + repo: "git+https://github.com/cometeer/spacemacs-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=cometeer.spacemacs" + formats: null +colors: + bg: "#FBF8EF" + fg: "#655370" + black: "#100A14" + red: "#BA2F59" + green: "#67B11D" + yellow: "#B1951D" + blue: "#3A81C3" + magenta: "#800080" + cyan: "#21B8C7" + white: "#100A14" + brightBlack: "#262626" + brightRed: "#F2241F" + brightGreen: "#86DC2F" + brightYellow: "#B1951D" + brightBlue: "#D7DFFF" + brightMagenta: "#A31DB1" + brightCyan: "#28DEF0" + brightWhite: "#100A14" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.8 + black: 101.5 + red: 73.4 + green: 47.3 + yellow: 51.3 + blue: 63.8 + magenta: 85.4 + cyan: 42.6 + white: 101.5 + brightBlack: 97.9 + brightRed: 62.3 + brightGreen: 26.2 + brightYellow: 51.3 + brightBlue: 11.7 + brightMagenta: 75.3 + brightCyan: 23.7 + brightWhite: 101.5 diff --git a/themes/sparkle--sparkle-theme.yaml b/themes/sparkle--sparkle-theme.yaml new file mode 100644 index 00000000..144733f3 --- /dev/null +++ b/themes/sparkle--sparkle-theme.yaml @@ -0,0 +1,53 @@ +name: "Sparkle (Sparkle Theme)" +source: + marketplace_id: "ManishPatil.sparkle" + version: "0.0.1" + installs: 194 + rating: 5 + ratings: 2 + author: "Manish Patil" + repo: "https://github.com/PATILMANISH/sparkle" + url: "https://marketplace.visualstudio.com/items?itemName=ManishPatil.sparkle" + formats: null +colors: + bg: "#141622" + fg: "#E8DAEF" + black: "#141622" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#FFBC58" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#EFF0EB" + brightBlack: "#585A61" + brightRed: "#FF5C57" + brightGreen: "#5AF78E" + brightYellow: "#FFBC58" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: 277 + pair: null + contrast: + fg: 86.1 + black: 0 + red: 44.7 + green: 84.1 + yellow: 72.7 + blue: 65.5 + magenta: 50.9 + cyan: 87.1 + white: 96.7 + brightBlack: 17.1 + brightRed: 44.7 + brightGreen: 84.1 + brightYellow: 72.7 + brightBlue: 65.5 + brightMagenta: 50.9 + brightCyan: 87.1 + brightWhite: 96.7 diff --git a/themes/spiderverse-theme--spiderverse-2099.yaml b/themes/spiderverse-theme--spiderverse-2099.yaml new file mode 100644 index 00000000..deb4fc66 --- /dev/null +++ b/themes/spiderverse-theme--spiderverse-2099.yaml @@ -0,0 +1,53 @@ +name: "SpiderVerse Theme (SpiderVerse 2099)" +source: + marketplace_id: "GabrielBrown.spider-verse-theme" + version: "1.0.1" + installs: 2470 + rating: 0 + ratings: 0 + author: "Gabriel Brown" + repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" + formats: null +colors: + bg: "#151D30" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 266 + pair: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 29 + cyan: 46.8 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.8 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/spiderverse-theme--spiderverse-miles.yaml b/themes/spiderverse-theme--spiderverse-miles.yaml new file mode 100644 index 00000000..5d15fc57 --- /dev/null +++ b/themes/spiderverse-theme--spiderverse-miles.yaml @@ -0,0 +1,53 @@ +name: "SpiderVerse Theme (SpiderVerse Miles)" +source: + marketplace_id: "GabrielBrown.spider-verse-theme" + version: "1.0.1" + installs: 2470 + rating: 0 + ratings: 0 + author: "Gabriel Brown" + repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" + formats: null +colors: + bg: "#1A1A19" + fg: "#C7C7C7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 71.4 + black: 0 + red: 26.4 + green: 52.7 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.7 + brightMagenta: 45.1 + brightCyan: 55.1 + brightWhite: 89.7 diff --git a/themes/spiderverse-theme--spiderverse-spider-man.yaml b/themes/spiderverse-theme--spiderverse-spider-man.yaml new file mode 100644 index 00000000..b2a7fcf7 --- /dev/null +++ b/themes/spiderverse-theme--spiderverse-spider-man.yaml @@ -0,0 +1,53 @@ +name: "SpiderVerse Theme (SpiderVerse Spider-Man)" +source: + marketplace_id: "GabrielBrown.spider-verse-theme" + version: "1.0.1" + installs: 2470 + rating: 0 + ratings: 0 + author: "Gabriel Brown" + repo: "https://github.com/GabrielPereira146/VsCode-SpiderVerse-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=GabrielBrown.spider-verse-theme" + formats: null +colors: + bg: "#372323" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 19 + pair: null + contrast: + fg: 77 + black: 0 + red: 24.2 + green: 50.5 + yellow: 83.1 + blue: 24.9 + magenta: 27.2 + cyan: 45 + white: 87.5 + brightBlack: 19.5 + brightRed: 36 + brightGreen: 61 + brightYellow: 93.1 + brightBlue: 37.5 + brightMagenta: 42.8 + brightCyan: 52.9 + brightWhite: 87.5 diff --git a/themes/sprinkle-pack--azure-noir.yaml b/themes/sprinkle-pack--azure-noir.yaml new file mode 100644 index 00000000..f5973dc5 --- /dev/null +++ b/themes/sprinkle-pack--azure-noir.yaml @@ -0,0 +1,53 @@ +name: "Sprinkle Pack (Azure Noir)" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 83 + rating: 5 + ratings: 2 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" + formats: null +colors: + bg: "#0A0F1F" + fg: "#DCEFFF" + black: "#101423" + red: "#FF6E6E" + green: "#B4FF97" + yellow: "#FFD56E" + blue: "#78DCE8" + magenta: "#BE8FFF" + cyan: "#5FEFC4" + white: "#E2F3F1" + brightBlack: "#4F5B6E" + brightRed: "#FF7A7A" + brightGreen: "#C4FFB4" + brightYellow: "#FFEB9C" + brightBlue: "#A5CCFF" + brightMagenta: "#D4A8FF" + brightCyan: "#8FFFF4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 269 + pair: null + contrast: + fg: 95.3 + black: 0 + red: 49.4 + green: 94.8 + yellow: 83.7 + blue: 76 + magenta: 53.5 + cyan: 82.4 + white: 97.2 + brightBlack: 17.7 + brightRed: 52.6 + brightGreen: 97.2 + brightYellow: 94.4 + brightBlue: 73.5 + brightMagenta: 64.9 + brightCyan: 95.2 + brightWhite: 107.4 diff --git a/themes/sprinkle-pack--chatgpt-theme.yaml b/themes/sprinkle-pack--chatgpt-theme.yaml new file mode 100644 index 00000000..3ab591bd --- /dev/null +++ b/themes/sprinkle-pack--chatgpt-theme.yaml @@ -0,0 +1,53 @@ +name: "Sprinkle Pack (ChatGPT Theme)" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 83 + rating: 5 + ratings: 2 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" + formats: null +colors: + bg: "#171717" + fg: "#E9E9E9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 92.5 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22 + brightRed: 38.6 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 106.9 diff --git a/themes/sprinkle-pack--darker-than-black.yaml b/themes/sprinkle-pack--darker-than-black.yaml new file mode 100644 index 00000000..c5a70b46 --- /dev/null +++ b/themes/sprinkle-pack--darker-than-black.yaml @@ -0,0 +1,53 @@ +name: "Sprinkle Pack (Darker Than Black)" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 83 + rating: 5 + ratings: 2 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" + formats: null +colors: + bg: "#0B0C0F" + fg: "#E0E0E0" + black: "#2E3440" + red: "#FF6B6B" + green: "#50FA7B" + yellow: "#FFD700" + blue: "#5FD4FB" + magenta: "#D291FF" + cyan: "#8BE9FD" + white: "#E0E0E0" + brightBlack: "#4C566A" + brightRed: "#FF5F5F" + brightGreen: "#B3E85F" + brightYellow: "#FFFF99" + brightBlue: "#81A1C1" + brightMagenta: "#C084FC" + brightCyan: "#9AEDFE" + brightWhite: "#ECEFF4" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 87.7 + black: 0 + red: 48.9 + green: 85.7 + yellow: 84 + blue: 72.2 + magenta: 57.3 + cyan: 84.7 + white: 87.7 + brightBlack: 16.2 + brightRed: 46.2 + brightGreen: 82.4 + brightYellow: 104 + brightBlue: 49.4 + brightMagenta: 50.5 + brightCyan: 87.8 + brightWhite: 97 diff --git a/themes/sprinkle-pack--elf-dream.yaml b/themes/sprinkle-pack--elf-dream.yaml new file mode 100644 index 00000000..d34def46 --- /dev/null +++ b/themes/sprinkle-pack--elf-dream.yaml @@ -0,0 +1,53 @@ +name: "Sprinkle Pack (Elf Dream)" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 83 + rating: 5 + ratings: 2 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" + formats: null +colors: + bg: "#E9F7ED" + fg: "#3A4D41" + black: "#3A4D41" + red: "#B93326" + green: "#3CC57B" + yellow: "#D59A3B" + blue: "#2D9BAF" + magenta: "#9D4EDD" + cyan: "#3A86FF" + white: "#E9F7ED" + brightBlack: "#5C6F68" + brightRed: "#E63946" + brightGreen: "#5A9367" + brightYellow: "#FFB703" + brightBlue: "#3A86FF" + brightMagenta: "#E07A5F" + brightCyan: "#00B4D8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 83.9 + black: 83.9 + red: 71.3 + green: 36.4 + yellow: 41.4 + blue: 52.8 + magenta: 64.4 + cyan: 54.9 + white: 0 + brightBlack: 69.7 + brightRed: 60.3 + brightGreen: 56.8 + brightYellow: 24.6 + brightBlue: 54.9 + brightMagenta: 48.7 + brightCyan: 40.9 + brightWhite: 0 diff --git a/themes/sprinkle-pack--ice.yaml b/themes/sprinkle-pack--ice.yaml new file mode 100644 index 00000000..80c85048 --- /dev/null +++ b/themes/sprinkle-pack--ice.yaml @@ -0,0 +1,53 @@ +name: "Sprinkle Pack (Ice)" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 83 + rating: 5 + ratings: 2 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" + formats: null +colors: + bg: "#E6F0F6" + fg: "#1C2C3A" + black: "#1C2C3A" + red: "#D95555" + green: "#57A773" + yellow: "#D8A657" + blue: "#5A90CC" + magenta: "#C18BD4" + cyan: "#368A9E" + white: "#E6F0F6" + brightBlack: "#8398AA" + brightRed: "#F17F7F" + brightGreen: "#72C48A" + brightYellow: "#F7C86A" + brightBlue: "#7CB2F0" + brightMagenta: "#D9A6E7" + brightCyan: "#66BCCF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: 234 + pair: null + contrast: + fg: 91.1 + black: 91.1 + red: 55.8 + green: 45.6 + yellow: 33.5 + blue: 50.7 + magenta: 41.7 + cyan: 56.9 + white: 0 + brightBlack: 46.6 + brightRed: 40.5 + brightGreen: 31.2 + brightYellow: 15.8 + brightBlue: 33.6 + brightMagenta: 28.5 + brightCyan: 32.7 + brightWhite: 8.7 diff --git a/themes/sprinkle-pack--lofi.yaml b/themes/sprinkle-pack--lofi.yaml new file mode 100644 index 00000000..7a65cb05 --- /dev/null +++ b/themes/sprinkle-pack--lofi.yaml @@ -0,0 +1,53 @@ +name: "Sprinkle Pack (Lofi)" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 83 + rating: 5 + ratings: 2 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" + formats: null +colors: + bg: "#FAF8F5" + fg: "#2E2C2B" + black: "#BCB8B1" + red: "#E07A5F" + green: "#B5E48C" + yellow: "#F2CC8F" + blue: "#84A59D" + magenta: "#DDBEA9" + cyan: "#8EC5FC" + white: "#2E2C2B" + brightBlack: "#BCB8B1" + brightRed: "#E29578" + brightGreen: "#C1E1C1" + brightYellow: "#FFE8A3" + brightBlue: "#A0C4FF" + brightMagenta: "#E9CFC4" + brightCyan: "#B6DFF7" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.5 + black: 34.1 + red: 51.6 + green: 17.5 + yellow: 20.1 + blue: 47.9 + magenta: 27.8 + cyan: 29.8 + white: 96.5 + brightBlack: 34.1 + brightRed: 42.8 + brightGreen: 16.1 + brightYellow: 0 + brightBlue: 28.5 + brightMagenta: 18.6 + brightCyan: 15.7 + brightWhite: 102 diff --git a/themes/sprinkle-pack--magnolia.yaml b/themes/sprinkle-pack--magnolia.yaml new file mode 100644 index 00000000..fdf86d1c --- /dev/null +++ b/themes/sprinkle-pack--magnolia.yaml @@ -0,0 +1,53 @@ +name: "Sprinkle Pack (Magnolia)" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 83 + rating: 5 + ratings: 2 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" + formats: null +colors: + bg: "#FAF6EF" + fg: "#3C2C21" + black: "#C2B4A3" + red: "#A3312C" + green: "#4F764D" + yellow: "#C77C2E" + blue: "#3A6EA5" + magenta: "#B07CBF" + cyan: "#6B4A3E" + white: "#3C2C21" + brightBlack: "#BDA68F" + brightRed: "#D94C4C" + brightGreen: "#6C9C6C" + brightYellow: "#E4A64F" + brightBlue: "#739FCB" + brightMagenta: "#D2A3E0" + brightCyan: "#A1733B" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.5 + black: 34.3 + red: 77.7 + green: 70.6 + yellow: 55 + blue: 71.1 + magenta: 54.4 + cyan: 82 + white: 94.5 + brightBlack: 40.8 + brightRed: 62.2 + brightGreen: 53.7 + brightYellow: 36.4 + brightBlue: 48.4 + brightMagenta: 35.6 + brightCyan: 63.5 + brightWhite: 100.9 diff --git a/themes/sprinkle-pack--pine-forest.yaml b/themes/sprinkle-pack--pine-forest.yaml new file mode 100644 index 00000000..fc445fc1 --- /dev/null +++ b/themes/sprinkle-pack--pine-forest.yaml @@ -0,0 +1,53 @@ +name: "Sprinkle Pack (Pine Forest)" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 83 + rating: 5 + ratings: 2 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" + formats: null +colors: + bg: "#1B1717" + fg: "#CAC9C9" + black: "#2C2828" + red: "#FF5861" + green: "#1FB854" + yellow: "#FFBE00" + blue: "#1FB8AB" + magenta: "#BA9AB6" + cyan: "#84CBA5" + white: "#DCE1DF" + brightBlack: "#3C3A3A" + brightRed: "#FF7373" + brightGreen: "#2BFF88" + brightYellow: "#FFE36E" + brightBlue: "#74D9D0" + brightMagenta: "#D9A5D4" + brightCyan: "#AAEEDD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 72.9 + black: 0 + red: 44 + green: 50.4 + yellow: 72.8 + blue: 52.8 + magenta: 51.7 + cyan: 65.4 + white: 86.7 + brightBlack: 0 + brightRed: 50 + brightGreen: 86.9 + brightYellow: 89.2 + brightBlue: 72.5 + brightMagenta: 61.5 + brightCyan: 87.2 + brightWhite: 106.8 diff --git a/themes/sprinkle-pack--sweet-lemon.yaml b/themes/sprinkle-pack--sweet-lemon.yaml new file mode 100644 index 00000000..fb5666fc --- /dev/null +++ b/themes/sprinkle-pack--sweet-lemon.yaml @@ -0,0 +1,53 @@ +name: "Sprinkle Pack (Sweet Lemon)" +source: + marketplace_id: "kgnio.sprinklepack" + version: "0.2.5" + installs: 83 + rating: 5 + ratings: 2 + author: "Kagan Mamak" + repo: "https://github.com/kgnio/sprinklepack" + url: "https://marketplace.visualstudio.com/items?itemName=kgnio.sprinklepack" + formats: null +colors: + bg: "#FAF9F7" + fg: "#1F1F1F" + black: "#CCCCCC" + red: "#FF6B6B" + green: "#9CD645" + yellow: "#FFD700" + blue: "#5CB7FF" + magenta: "#E086D3" + cyan: "#5DD3D3" + white: "#1F1F1F" + brightBlack: "#E0E0E0" + brightRed: "#FF5F5F" + brightGreen: "#B8F58C" + brightYellow: "#FFF899" + brightBlue: "#8CCFFF" + brightMagenta: "#EDAAFF" + brightCyan: "#8EF0F0" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.9 + black: 23.7 + red: 49.2 + green: 27.7 + yellow: 15.7 + blue: 38.9 + magenta: 44.6 + cyan: 29.3 + white: 99.9 + brightBlack: 12.3 + brightRed: 51.9 + brightGreen: 10 + brightYellow: 0 + brightBlue: 26.2 + brightMagenta: 29.2 + brightCyan: 12.3 + brightWhite: 102.5 diff --git a/themes/spyder-theme.yaml b/themes/spyder-theme.yaml new file mode 100644 index 00000000..de3f2988 --- /dev/null +++ b/themes/spyder-theme.yaml @@ -0,0 +1,53 @@ +name: "spyder-theme" +source: + marketplace_id: "HilsianCapital.spyder-theme" + version: "0.0.3" + installs: 6908 + rating: 5 + ratings: 2 + author: "HilsianCapital" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HilsianCapital.spyder-theme" + formats: null +colors: + bg: "#FDFDDF" + fg: "#3C3836" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 94.3 + black: 15.8 + red: 73.1 + green: 55.4 + yellow: 46.1 + blue: 66.7 + magenta: 66.6 + cyan: 56.4 + white: 71.4 + brightBlack: 61.9 + brightRed: 84.6 + brightGreen: 71.2 + brightYellow: 62.6 + brightBlue: 79.8 + brightMagenta: 80.3 + brightCyan: 72 + brightWhite: 94.3 diff --git a/themes/srcery--official-port.yaml b/themes/srcery--official-port.yaml new file mode 100644 index 00000000..2d904b8f --- /dev/null +++ b/themes/srcery--official-port.yaml @@ -0,0 +1,53 @@ +name: "Srcery (official port)" +source: + marketplace_id: "srcery-colors.srcery-colors" + version: "0.3.8" + installs: 7372 + rating: 5 + ratings: 2 + author: "srcery-colors" + repo: "https://github.com/srcery-colors/srcery-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=srcery-colors.srcery-colors" + formats: null +colors: + bg: "#1C1B19" + fg: "#FCE8C3" + black: "#1C1B19" + red: "#EF2F27" + green: "#519F50" + yellow: "#FBB829" + blue: "#2C78BF" + magenta: "#E02C6D" + cyan: "#0AAEB3" + white: "#D0BFA1" + brightBlack: "#918175" + brightRed: "#F75341" + brightGreen: "#98BC37" + brightYellow: "#FED06E" + brightBlue: "#68A8E4" + brightMagenta: "#FF5C8F" + brightCyan: "#53FDE9" + brightWhite: "#FCE8C3" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 92.8 + black: 0 + red: 33.8 + green: 40.5 + yellow: 69.5 + blue: 28.5 + magenta: 31.2 + cyan: 48.3 + white: 67.7 + brightBlack: 35.1 + brightRed: 40.5 + brightGreen: 57.7 + brightYellow: 80.4 + brightBlue: 51.1 + brightMagenta: 45.6 + brightCyan: 89.7 + brightWhite: 92.8 diff --git a/themes/stackmeister-theme.yaml b/themes/stackmeister-theme.yaml new file mode 100644 index 00000000..256704a2 --- /dev/null +++ b/themes/stackmeister-theme.yaml @@ -0,0 +1,53 @@ +name: "Stackmeister Theme" +source: + marketplace_id: "stackmeister.stackmeister-theme" + version: "0.0.4" + installs: 79 + rating: 5 + ratings: 1 + author: "Stackmeister GmbH" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=stackmeister.stackmeister-theme" + formats: null +colors: + bg: "#131038" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 281 + pair: null + contrast: + fg: 79.4 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 90 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 90 diff --git a/themes/star-trek-factions-theme-pack--st-borg.yaml b/themes/star-trek-factions-theme-pack--st-borg.yaml new file mode 100644 index 00000000..b133fcaf --- /dev/null +++ b/themes/star-trek-factions-theme-pack--st-borg.yaml @@ -0,0 +1,53 @@ +name: "Star Trek: Factions Theme Pack (ST: Borg)" +source: + marketplace_id: "RobertSchnable.star-trek-factions-theme" + version: "1.0.7" + installs: 23 + rating: 0 + ratings: 0 + author: "Robert Schnable" + repo: "https://github.com/your-username/star-trek-factions-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RobertSchnable.star-trek-factions-theme" + formats: null +colors: + bg: "#060806" + fg: "#88C880" + black: "#060806" + red: "#CC4433" + green: "#00CC44" + yellow: "#88AA20" + blue: "#2080A0" + magenta: "#4A8040" + cyan: "#20C880" + white: "#88C880" + brightBlack: "#060806" + brightRed: "#CC4433" + brightGreen: "#00FF44" + brightYellow: "#88AA20" + brightBlue: "#2080A0" + brightMagenta: "#4A8040" + brightCyan: "#20C880" + brightWhite: "#88C880" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 64.3 + black: 0 + red: 29.8 + green: 60.5 + yellow: 49.8 + blue: 30.7 + magenta: 29 + cyan: 59.8 + white: 64.3 + brightBlack: 0 + brightRed: 29.8 + brightGreen: 86.7 + brightYellow: 49.8 + brightBlue: 30.7 + brightMagenta: 29 + brightCyan: 59.8 + brightWhite: 64.3 diff --git a/themes/star-trek-factions-theme-pack--st-lcars.yaml b/themes/star-trek-factions-theme-pack--st-lcars.yaml new file mode 100644 index 00000000..708ab332 --- /dev/null +++ b/themes/star-trek-factions-theme-pack--st-lcars.yaml @@ -0,0 +1,53 @@ +name: "Star Trek: Factions Theme Pack (ST: LCARS)" +source: + marketplace_id: "RobertSchnable.star-trek-factions-theme" + version: "1.0.7" + installs: 23 + rating: 0 + ratings: 0 + author: "Robert Schnable" + repo: "https://github.com/your-username/star-trek-factions-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RobertSchnable.star-trek-factions-theme" + formats: null +colors: + bg: "#141414" + fg: "#FFCC55" + black: "#141414" + red: "#DD5566" + green: "#77BBAA" + yellow: "#FFB300" + blue: "#AA99DD" + magenta: "#DD6688" + cyan: "#FFDD88" + white: "#FFCC99" + brightBlack: "#555555" + brightRed: "#DD5566" + brightGreen: "#77BBAA" + brightYellow: "#FFDD00" + brightBlue: "#AA99DD" + brightMagenta: "#FF55BB" + brightCyan: "#FFDD88" + brightWhite: "#FFEECC" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 79.3 + black: 0 + red: 36.5 + green: 57.9 + yellow: 69 + blue: 51.7 + magenta: 40.9 + cyan: 87.4 + white: 80.6 + brightBlack: 15.4 + brightRed: 36.5 + brightGreen: 57.9 + brightYellow: 86.1 + brightBlue: 51.7 + brightMagenta: 47 + brightCyan: 87.4 + brightWhite: 97 diff --git a/themes/star-wars-planets-theme-pack.yaml b/themes/star-wars-planets-theme-pack.yaml new file mode 100644 index 00000000..11921e51 --- /dev/null +++ b/themes/star-wars-planets-theme-pack.yaml @@ -0,0 +1,53 @@ +name: "Star Wars: Planets Theme Pack" +source: + marketplace_id: "RobertSchnable.star-wars-planets-theme" + version: "1.0.1" + installs: 16 + rating: 0 + ratings: 0 + author: "Robert Schnable" + repo: "https://github.com/your-username/star-wars-planets-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RobertSchnable.star-wars-planets-theme" + formats: null +colors: + bg: "#1A1408" + fg: "#E0C88A" + black: "#1A1408" + red: "#CC4400" + green: "#8A9040" + yellow: "#C47A15" + blue: "#7A8AAA" + magenta: "#9A6A8A" + cyan: "#7AAA9A" + white: "#E0C88A" + brightBlack: "#1A1408" + brightRed: "#CC4400" + brightGreen: "#8A9040" + brightYellow: "#C47A15" + brightBlue: "#7A8AAA" + brightMagenta: "#9A6A8A" + brightCyan: "#7AAA9A" + brightWhite: "#E0C88A" +meta: + mode: "dark" + accent: "orange" + hue: 84 + pair: null + contrast: + fg: 73.6 + black: 0 + red: 28.9 + green: 39.2 + yellow: 39.5 + blue: 38.6 + magenta: 30.6 + cyan: 50.2 + white: 73.6 + brightBlack: 0 + brightRed: 28.9 + brightGreen: 39.2 + brightYellow: 39.5 + brightBlue: 38.6 + brightMagenta: 30.6 + brightCyan: 50.2 + brightWhite: 73.6 diff --git a/themes/stellar-galaxy.yaml b/themes/stellar-galaxy.yaml new file mode 100644 index 00000000..625f27d1 --- /dev/null +++ b/themes/stellar-galaxy.yaml @@ -0,0 +1,53 @@ +name: "Stellar Galaxy" +source: + marketplace_id: "PuneshBorkar.stellar-galaxy" + version: "1.3.0" + installs: 298 + rating: 0 + ratings: 0 + author: "Punesh Borkar" + repo: "https://github.com/punesh12/stellar-galaxy" + url: "https://marketplace.visualstudio.com/items?itemName=PuneshBorkar.stellar-galaxy" + formats: null +colors: + bg: "#000F1C" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 241 + pair: null + contrast: + fg: 80.1 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.7 + brightRed: 39.2 + brightGreen: 64.2 + brightYellow: 96.3 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/sto-theme--sto-classic.yaml b/themes/sto-theme--sto-classic.yaml new file mode 100644 index 00000000..f0c31398 --- /dev/null +++ b/themes/sto-theme--sto-classic.yaml @@ -0,0 +1,53 @@ +name: "Sto Theme (Sto Classic)" +source: + marketplace_id: "NSMNIA.sto-theme" + version: "2.0.1" + installs: 369 + rating: 5 + ratings: 1 + author: "NSMNIA" + repo: "https://github.com/NSMNIA/sto-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NSMNIA.sto-theme" + formats: null +colors: + bg: "#000000" + fg: "#ECF9FF" + black: "#000000" + red: "#CB2D25" + green: "#4AD962" + yellow: "#14A3FF" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#CB2D25" + brightGreen: "#4AD962" + brightYellow: "#14A3FF" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 102.4 + black: 0 + red: 26.8 + green: 68.4 + yellow: 49.8 + blue: 39.8 + magenta: 65.3 + cyan: 93.8 + white: 107.9 + brightBlack: 15.7 + brightRed: 26.8 + brightGreen: 68.4 + brightYellow: 49.8 + brightBlue: 39.8 + brightMagenta: 65.3 + brightCyan: 93.8 + brightWhite: 107.9 diff --git a/themes/sto-theme--sto-green-dark.yaml b/themes/sto-theme--sto-green-dark.yaml new file mode 100644 index 00000000..d7d4bf84 --- /dev/null +++ b/themes/sto-theme--sto-green-dark.yaml @@ -0,0 +1,53 @@ +name: "Sto Theme (Sto Green Dark)" +source: + marketplace_id: "NSMNIA.sto-theme" + version: "2.0.1" + installs: 369 + rating: 5 + ratings: 1 + author: "NSMNIA" + repo: "https://github.com/NSMNIA/sto-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NSMNIA.sto-theme" + formats: null +colors: + bg: "#000000" + fg: "#DDEFF0" + black: "#000000" + red: "#EC1E2B" + green: "#4AD962" + yellow: "#5FAAB1" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#EC1E2B" + brightGreen: "#4AD962" + brightYellow: "#5FAAB1" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.1 + black: 0 + red: 33.5 + green: 68.4 + yellow: 50.2 + blue: 39.8 + magenta: 65.3 + cyan: 93.8 + white: 107.9 + brightBlack: 15.7 + brightRed: 33.5 + brightGreen: 68.4 + brightYellow: 50.2 + brightBlue: 39.8 + brightMagenta: 65.3 + brightCyan: 93.8 + brightWhite: 107.9 diff --git a/themes/sto-theme--sto-green.yaml b/themes/sto-theme--sto-green.yaml new file mode 100644 index 00000000..19097c12 --- /dev/null +++ b/themes/sto-theme--sto-green.yaml @@ -0,0 +1,53 @@ +name: "Sto Theme (Sto Green)" +source: + marketplace_id: "NSMNIA.sto-theme" + version: "2.0.1" + installs: 369 + rating: 5 + ratings: 1 + author: "NSMNIA" + repo: "https://github.com/NSMNIA/sto-theme" + url: "https://marketplace.visualstudio.com/items?itemName=NSMNIA.sto-theme" + formats: null +colors: + bg: "#0E1718" + fg: "#DDEFF0" + black: "#0E1718" + red: "#EC1E2B" + green: "#4AD962" + yellow: "#5FAAB1" + blue: "#0088FF" + magenta: "#FB94FF" + cyan: "#80FCFF" + white: "#FFFFFF" + brightBlack: "#0050A4" + brightRed: "#EC1E2B" + brightGreen: "#4AD962" + brightYellow: "#5FAAB1" + brightBlue: "#0088FF" + brightMagenta: "#FB94FF" + brightCyan: "#80FCFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 205 + pair: null + contrast: + fg: 94.2 + black: 0 + red: 32.6 + green: 67.5 + yellow: 49.3 + blue: 38.9 + magenta: 64.5 + cyan: 92.9 + white: 107 + brightBlack: 14.8 + brightRed: 32.6 + brightGreen: 67.5 + brightYellow: 49.3 + brightBlue: 38.9 + brightMagenta: 64.5 + brightCyan: 92.9 + brightWhite: 107 diff --git a/themes/strawberry-theme--raspberry-theme.yaml b/themes/strawberry-theme--raspberry-theme.yaml new file mode 100644 index 00000000..eb04d8da --- /dev/null +++ b/themes/strawberry-theme--raspberry-theme.yaml @@ -0,0 +1,53 @@ +name: "Strawberry Theme (Raspberry Theme)" +source: + marketplace_id: "sylten.strawberry-theme" + version: "1.0.5" + installs: 8905 + rating: 5 + ratings: 4 + author: "Jonas Siltamäki Håkansson" + repo: "https://github.com/sylten/strawberry-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sylten.strawberry-theme" + formats: null +colors: + bg: "#252B2E" + fg: "#D4D4D4" + black: "#878787" + red: "#E15A60" + green: "#99C794" + yellow: "#FAC863" + blue: "#6699CC" + magenta: "#C594C5" + cyan: "#5FB3B3" + white: "#D4D4D4" + brightBlack: "#878787" + brightRed: "#E15A60" + brightGreen: "#99C794" + brightYellow: "#FAC863" + brightBlue: "#6699CC" + brightMagenta: "#C594C5" + brightCyan: "#5FB3B3" + brightWhite: "#D4D4D4" +meta: + mode: "dark" + accent: "orange" + hue: 229 + pair: null + contrast: + fg: 76.6 + black: 34.3 + red: 35 + green: 62 + yellow: 73.9 + blue: 41.3 + magenta: 49.2 + cyan: 50.2 + white: 76.6 + brightBlack: 34.3 + brightRed: 35 + brightGreen: 62 + brightYellow: 73.9 + brightBlue: 41.3 + brightMagenta: 49.2 + brightCyan: 50.2 + brightWhite: 76.6 diff --git a/themes/styldev.yaml b/themes/styldev.yaml new file mode 100644 index 00000000..1b250eef --- /dev/null +++ b/themes/styldev.yaml @@ -0,0 +1,53 @@ +name: "Styldev" +source: + marketplace_id: "VueComputedTheme.styldev" + version: "0.0.2" + installs: 189 + rating: 5 + ratings: 1 + author: "VueComputed Theme" + repo: "https://github.com/rafa4dev/styldev" + url: "https://marketplace.visualstudio.com/items?itemName=VueComputedTheme.styldev" + formats: null +colors: + bg: "#322726" + fg: "#CBAB8F" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 24 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 24 + green: 50.2 + yellow: 82.9 + blue: 24.7 + magenta: 27 + cyan: 44.8 + white: 87.3 + brightBlack: 19.3 + brightRed: 35.8 + brightGreen: 60.8 + brightYellow: 92.9 + brightBlue: 37.2 + brightMagenta: 42.6 + brightCyan: 52.6 + brightWhite: 87.3 diff --git a/themes/stypt.yaml b/themes/stypt.yaml new file mode 100644 index 00000000..dd52dc4d --- /dev/null +++ b/themes/stypt.yaml @@ -0,0 +1,53 @@ +name: "Stypt" +source: + marketplace_id: "MichaelVolakis.stypt" + version: "2.0.1" + installs: 203 + rating: 0 + ratings: 0 + author: "Michael Volakis" + repo: "https://github.com/Michael-Vol/Stypt-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=MichaelVolakis.stypt" + formats: null +colors: + bg: "#1B1F35" + fg: "#B4D1F3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + pair: null + contrast: + fg: 74.7 + black: 0 + red: 25.5 + green: 51.8 + yellow: 84.4 + blue: 26.2 + magenta: 28.6 + cyan: 46.4 + white: 88.8 + brightBlack: 20.8 + brightRed: 37.4 + brightGreen: 62.3 + brightYellow: 94.4 + brightBlue: 38.8 + brightMagenta: 44.2 + brightCyan: 54.2 + brightWhite: 88.8 diff --git a/themes/sublime-ish.yaml b/themes/sublime-ish.yaml new file mode 100644 index 00000000..efc9bdc2 --- /dev/null +++ b/themes/sublime-ish.yaml @@ -0,0 +1,53 @@ +name: "sublime-ish" +source: + marketplace_id: "keepflying.sublime-ish" + version: "0.0.1" + installs: 134 + rating: 0 + ratings: 0 + author: "keepflying" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=keepflying.sublime-ish" + formats: null +colors: + bg: "#F2F2F2" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 98.3 + black: 98.3 + red: 66.2 + green: 41.5 + yellow: 50.2 + blue: 78.3 + magenta: 66.8 + cyan: 52.9 + white: 78.2 + brightBlack: 71 + brightRed: 66.2 + brightGreen: 33.2 + brightYellow: 33.2 + brightBlue: 78.3 + brightMagenta: 66.8 + brightCyan: 52.9 + brightWhite: 40.7 diff --git a/themes/sugar-theme--sugar-dark-focus.yaml b/themes/sugar-theme--sugar-dark-focus.yaml new file mode 100644 index 00000000..023c104e --- /dev/null +++ b/themes/sugar-theme--sugar-dark-focus.yaml @@ -0,0 +1,53 @@ +name: "Sugar Theme (Sugar Dark Focus)" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 327 + rating: 5 + ratings: 1 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" + formats: null +colors: + bg: "#0B0B09" + fg: "#D8D8D8" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 82.8 + black: 0 + red: 30.4 + green: 58.2 + yellow: 71.4 + blue: 23.3 + magenta: 31.7 + cyan: 33.5 + white: 75.5 + brightBlack: 30.4 + brightRed: 36.1 + brightGreen: 44.8 + brightYellow: 71.4 + brightBlue: 30.8 + brightMagenta: 36.9 + brightCyan: 53.5 + brightWhite: 75.5 diff --git a/themes/sugar-theme--sugar-dark-github.yaml b/themes/sugar-theme--sugar-dark-github.yaml new file mode 100644 index 00000000..26b6cff2 --- /dev/null +++ b/themes/sugar-theme--sugar-dark-github.yaml @@ -0,0 +1,53 @@ +name: "Sugar Theme (Sugar Dark Github)" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 327 + rating: 5 + ratings: 1 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" + formats: null +colors: + bg: "#181818" + fg: "#D4D4D4" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 79.4 + black: 0 + red: 29.5 + green: 57.3 + yellow: 70.5 + blue: 22.3 + magenta: 30.8 + cyan: 32.5 + white: 74.6 + brightBlack: 29.4 + brightRed: 35.2 + brightGreen: 43.9 + brightYellow: 70.5 + brightBlue: 29.9 + brightMagenta: 35.9 + brightCyan: 52.5 + brightWhite: 74.6 diff --git a/themes/sugar-theme--sugar-dark-midnight.yaml b/themes/sugar-theme--sugar-dark-midnight.yaml new file mode 100644 index 00000000..f88c14b2 --- /dev/null +++ b/themes/sugar-theme--sugar-dark-midnight.yaml @@ -0,0 +1,53 @@ +name: "Sugar Theme (Sugar Dark Midnight)" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 327 + rating: 5 + ratings: 1 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" + formats: null +colors: + bg: "#1B1D23" + fg: "#DFDFDF" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: 271 + pair: null + contrast: + fg: 85.5 + black: 0 + red: 28.9 + green: 56.7 + yellow: 69.9 + blue: 21.7 + magenta: 30.2 + cyan: 31.9 + white: 74 + brightBlack: 28.8 + brightRed: 34.5 + brightGreen: 43.3 + brightYellow: 69.9 + brightBlue: 29.3 + brightMagenta: 35.3 + brightCyan: 51.9 + brightWhite: 74 diff --git a/themes/sugar-theme--sugar-dark-one.yaml b/themes/sugar-theme--sugar-dark-one.yaml new file mode 100644 index 00000000..a85e9fb8 --- /dev/null +++ b/themes/sugar-theme--sugar-dark-one.yaml @@ -0,0 +1,53 @@ +name: "Sugar Theme (Sugar Dark One)" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 327 + rating: 5 + ratings: 1 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" + formats: null +colors: + bg: "#22262A" + fg: "#ACB2BE" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 57.5 + black: 0 + red: 27.6 + green: 55.4 + yellow: 68.6 + blue: 20.4 + magenta: 28.9 + cyan: 30.6 + white: 72.7 + brightBlack: 27.6 + brightRed: 33.3 + brightGreen: 42 + brightYellow: 68.6 + brightBlue: 28 + brightMagenta: 34 + brightCyan: 50.7 + brightWhite: 72.7 diff --git a/themes/sugar-theme--sugar-dark-vitesse.yaml b/themes/sugar-theme--sugar-dark-vitesse.yaml new file mode 100644 index 00000000..f9f2005b --- /dev/null +++ b/themes/sugar-theme--sugar-dark-vitesse.yaml @@ -0,0 +1,53 @@ +name: "Sugar Theme (Sugar Dark Vitesse)" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 327 + rating: 5 + ratings: 1 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" + formats: null +colors: + bg: "#181818" + fg: "#C8C8C8" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + pair: "Sugar Theme (Sugar Light Vitesse)" + contrast: + fg: 72.2 + black: 0 + red: 29.5 + green: 57.3 + yellow: 70.5 + blue: 22.3 + magenta: 30.8 + cyan: 32.5 + white: 74.6 + brightBlack: 29.4 + brightRed: 35.2 + brightGreen: 43.9 + brightYellow: 70.5 + brightBlue: 29.9 + brightMagenta: 35.9 + brightCyan: 52.5 + brightWhite: 74.6 diff --git a/themes/sugar-theme--sugar-dark-vs.yaml b/themes/sugar-theme--sugar-dark-vs.yaml new file mode 100644 index 00000000..5e64a7da --- /dev/null +++ b/themes/sugar-theme--sugar-dark-vs.yaml @@ -0,0 +1,53 @@ +name: "Sugar Theme (Sugar Dark VS)" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 327 + rating: 5 + ratings: 1 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" + formats: null +colors: + bg: "#1F1F1F" + fg: "#D8D8D8" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + pair: "Sugar Theme (Sugar Light VS)" + contrast: + fg: 81 + black: 0 + red: 28.6 + green: 56.4 + yellow: 69.6 + blue: 21.5 + magenta: 29.9 + cyan: 31.7 + white: 73.7 + brightBlack: 28.6 + brightRed: 34.3 + brightGreen: 43 + brightYellow: 69.6 + brightBlue: 29 + brightMagenta: 35.1 + brightCyan: 51.7 + brightWhite: 73.7 diff --git a/themes/sugar-theme--sugar-dark.yaml b/themes/sugar-theme--sugar-dark.yaml new file mode 100644 index 00000000..366e0d00 --- /dev/null +++ b/themes/sugar-theme--sugar-dark.yaml @@ -0,0 +1,53 @@ +name: "Sugar Theme (Sugar Dark)" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 327 + rating: 5 + ratings: 1 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" + formats: null +colors: + bg: "#1B1F22" + fg: "#CFCFCF" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 75.6 + black: 0 + red: 28.7 + green: 56.5 + yellow: 69.7 + blue: 21.5 + magenta: 30 + cyan: 31.7 + white: 73.8 + brightBlack: 28.7 + brightRed: 34.4 + brightGreen: 43.1 + brightYellow: 69.7 + brightBlue: 29.1 + brightMagenta: 35.1 + brightCyan: 51.8 + brightWhite: 73.8 diff --git a/themes/sugar-theme--sugar-fleet.yaml b/themes/sugar-theme--sugar-fleet.yaml new file mode 100644 index 00000000..bc6b26f6 --- /dev/null +++ b/themes/sugar-theme--sugar-fleet.yaml @@ -0,0 +1,53 @@ +name: "Sugar Theme (Sugar Fleet)" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 327 + rating: 5 + ratings: 1 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" + formats: null +colors: + bg: "#1F1F1F" + fg: "#BCBEC4" + black: "#393A34" + red: "#DA3036" + green: "#63C174" + yellow: "#E5C07B" + blue: "#0060D1" + magenta: "#DE2670" + cyan: "#0D8C7D" + white: "#CCCCCC" + brightBlack: "#777777" + brightRed: "#E5484D" + brightGreen: "#46A758" + brightYellow: "#E5C07B" + brightBlue: "#0070F3" + brightMagenta: "#E93D82" + brightCyan: "#14B8A6" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 65.5 + black: 0 + red: 28.6 + green: 56.4 + yellow: 69.6 + blue: 21.5 + magenta: 29.9 + cyan: 31.7 + white: 73.7 + brightBlack: 28.6 + brightRed: 34.3 + brightGreen: 43 + brightYellow: 69.6 + brightBlue: 29 + brightMagenta: 35.1 + brightCyan: 51.7 + brightWhite: 73.7 diff --git a/themes/sugar-theme--sugar-light-vitesse.yaml b/themes/sugar-theme--sugar-light-vitesse.yaml new file mode 100644 index 00000000..79e3a59b --- /dev/null +++ b/themes/sugar-theme--sugar-light-vitesse.yaml @@ -0,0 +1,53 @@ +name: "Sugar Theme (Sugar Light Vitesse)" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 327 + rating: 5 + ratings: 1 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#777777" + red: "#E5484D" + green: "#46A758" + yellow: "#E5C07B" + blue: "#0070F3" + magenta: "#E93D82" + cyan: "#14B8A6" + white: "#CCCCCC" + brightBlack: "#393A34" + brightRed: "#DA3036" + brightGreen: "#63C174" + brightYellow: "#E5C07B" + brightBlue: "#0060D1" + brightMagenta: "#DE2670" + brightCyan: "#0D8C7D" + brightWhite: "#CCCCCC" +meta: + mode: "light" + accent: "red" + hue: null + pair: "Sugar Theme (Sugar Dark Vitesse)" + contrast: + fg: 101.5 + black: 71.1 + red: 65.4 + green: 56.8 + yellow: 31.2 + blue: 70.7 + magenta: 64.6 + cyan: 48.3 + white: 27.3 + brightBlack: 96.5 + brightRed: 71.1 + brightGreen: 43.7 + brightYellow: 31.2 + brightBlue: 78.3 + brightMagenta: 69.8 + brightCyan: 68 + brightWhite: 27.3 diff --git a/themes/sugar-theme--sugar-light-vs.yaml b/themes/sugar-theme--sugar-light-vs.yaml new file mode 100644 index 00000000..e61823df --- /dev/null +++ b/themes/sugar-theme--sugar-light-vs.yaml @@ -0,0 +1,53 @@ +name: "Sugar Theme (Sugar Light VS)" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 327 + rating: 5 + ratings: 1 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#333333" + black: "#777777" + red: "#E5484D" + green: "#46A758" + yellow: "#E5C07B" + blue: "#0070F3" + magenta: "#E93D82" + cyan: "#14B8A6" + white: "#CCCCCC" + brightBlack: "#393A34" + brightRed: "#DA3036" + brightGreen: "#63C174" + brightYellow: "#E5C07B" + brightBlue: "#0060D1" + brightMagenta: "#DE2670" + brightCyan: "#0D8C7D" + brightWhite: "#CCCCCC" +meta: + mode: "light" + accent: "red" + hue: null + pair: "Sugar Theme (Sugar Dark VS)" + contrast: + fg: 98.7 + black: 71.1 + red: 65.4 + green: 56.8 + yellow: 31.2 + blue: 70.7 + magenta: 64.6 + cyan: 48.3 + white: 27.3 + brightBlack: 96.5 + brightRed: 71.1 + brightGreen: 43.7 + brightYellow: 31.2 + brightBlue: 78.3 + brightMagenta: 69.8 + brightCyan: 68 + brightWhite: 27.3 diff --git a/themes/sugar-theme--sugar-light.yaml b/themes/sugar-theme--sugar-light.yaml new file mode 100644 index 00000000..b8c57093 --- /dev/null +++ b/themes/sugar-theme--sugar-light.yaml @@ -0,0 +1,53 @@ +name: "Sugar Theme (Sugar Light)" +source: + marketplace_id: "Banlify.sugar-vscode-theme" + version: "0.26.0" + installs: 327 + rating: 5 + ratings: 1 + author: "Libon" + repo: "https://github.com/libondev/sugar-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Banlify.sugar-vscode-theme" + formats: null +colors: + bg: "#FCFCFC" + fg: "#424242" + black: "#777777" + red: "#E5484D" + green: "#46A758" + yellow: "#E5C07B" + blue: "#0070F3" + magenta: "#E93D82" + cyan: "#14B8A6" + white: "#CCCCCC" + brightBlack: "#393A34" + brightRed: "#DA3036" + brightGreen: "#63C174" + brightYellow: "#E5C07B" + brightBlue: "#0060D1" + brightMagenta: "#DE2670" + brightCyan: "#0D8C7D" + brightWhite: "#CCCCCC" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 91.6 + black: 69.3 + red: 63.6 + green: 55 + yellow: 29.4 + blue: 68.9 + magenta: 62.8 + cyan: 46.5 + white: 25.5 + brightBlack: 94.7 + brightRed: 69.3 + brightGreen: 41.9 + brightYellow: 29.4 + brightBlue: 76.5 + brightMagenta: 68 + brightCyan: 66.2 + brightWhite: 25.5 diff --git a/themes/summer-night-theme--summer-night-gray-high-contrast.yaml b/themes/summer-night-theme--summer-night-gray-high-contrast.yaml new file mode 100644 index 00000000..84500480 --- /dev/null +++ b/themes/summer-night-theme--summer-night-gray-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Summer Night Theme (Summer Night Gray High Contrast)" +source: + marketplace_id: "jackw01.summer-night-theme" + version: "1.2.1" + installs: 3460 + rating: 5 + ratings: 1 + author: "jackw01" + repo: "https://github.com/jackw01/summer-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jackw01.summer-night-theme" + formats: null +colors: + bg: "#1A1C1E" + fg: "#A6ABB8" + black: "#171C25" + red: "#F06C6F" + green: "#00AB9A" + yellow: "#D08447" + blue: "#00A3D2" + magenta: "#FA5F8B" + cyan: "#00A9B9" + white: "#A6ABB8" + brightBlack: "#171C25" + brightRed: "#F06C6F" + brightGreen: "#00AB9A" + brightYellow: "#D08447" + brightBlue: "#00A3D2" + brightMagenta: "#FA5F8B" + brightCyan: "#00A9B9" + brightWhite: "#A6ABB8" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 55.2 + black: 0 + red: 44.6 + green: 45.9 + yellow: 44.2 + blue: 45.2 + magenta: 44.9 + cyan: 46.4 + white: 55.2 + brightBlack: 0 + brightRed: 44.6 + brightGreen: 45.9 + brightYellow: 44.2 + brightBlue: 45.2 + brightMagenta: 44.9 + brightCyan: 46.4 + brightWhite: 55.2 diff --git a/themes/summer-night-theme--summer-night-high-contrast.yaml b/themes/summer-night-theme--summer-night-high-contrast.yaml new file mode 100644 index 00000000..91d6bd9d --- /dev/null +++ b/themes/summer-night-theme--summer-night-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Summer Night Theme (Summer Night High Contrast)" +source: + marketplace_id: "jackw01.summer-night-theme" + version: "1.2.1" + installs: 3460 + rating: 5 + ratings: 1 + author: "jackw01" + repo: "https://github.com/jackw01/summer-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jackw01.summer-night-theme" + formats: null +colors: + bg: "#171C25" + fg: "#A6ABB8" + black: "#171C25" + red: "#F06C6F" + green: "#00AB9A" + yellow: "#D08447" + blue: "#00A3D2" + magenta: "#FA5F8B" + cyan: "#00A9B9" + white: "#A6ABB8" + brightBlack: "#171C25" + brightRed: "#F06C6F" + brightGreen: "#00AB9A" + brightYellow: "#D08447" + brightBlue: "#00A3D2" + brightMagenta: "#FA5F8B" + brightCyan: "#00A9B9" + brightWhite: "#A6ABB8" +meta: + mode: "dark" + accent: "red" + hue: 262 + pair: null + contrast: + fg: 55.2 + black: 0 + red: 44.6 + green: 45.9 + yellow: 44.2 + blue: 45.2 + magenta: 44.8 + cyan: 46.3 + white: 55.2 + brightBlack: 0 + brightRed: 44.6 + brightGreen: 45.9 + brightYellow: 44.2 + brightBlue: 45.2 + brightMagenta: 44.8 + brightCyan: 46.3 + brightWhite: 55.2 diff --git a/themes/summer-night-theme--summer-night.yaml b/themes/summer-night-theme--summer-night.yaml new file mode 100644 index 00000000..b1216ccb --- /dev/null +++ b/themes/summer-night-theme--summer-night.yaml @@ -0,0 +1,53 @@ +name: "Summer Night Theme (Summer Night)" +source: + marketplace_id: "jackw01.summer-night-theme" + version: "1.2.1" + installs: 3460 + rating: 5 + ratings: 1 + author: "jackw01" + repo: "https://github.com/jackw01/summer-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jackw01.summer-night-theme" + formats: null +colors: + bg: "#21262F" + fg: "#A6ABB8" + black: "#21262F" + red: "#F06C6F" + green: "#00AB9A" + yellow: "#D08447" + blue: "#00A3D2" + magenta: "#FA5F8B" + cyan: "#00A9B9" + white: "#A6ABB8" + brightBlack: "#21262F" + brightRed: "#F06C6F" + brightGreen: "#00AB9A" + brightYellow: "#D08447" + brightBlue: "#00A3D2" + brightMagenta: "#FA5F8B" + brightCyan: "#00A9B9" + brightWhite: "#A6ABB8" +meta: + mode: "dark" + accent: "red" + hue: 262 + pair: null + contrast: + fg: 53.7 + black: 0 + red: 43.1 + green: 44.4 + yellow: 42.7 + blue: 43.7 + magenta: 43.4 + cyan: 44.9 + white: 53.7 + brightBlack: 0 + brightRed: 43.1 + brightGreen: 44.4 + brightYellow: 42.7 + brightBlue: 43.7 + brightMagenta: 43.4 + brightCyan: 44.9 + brightWhite: 53.7 diff --git a/themes/super-theme.yaml b/themes/super-theme.yaml new file mode 100644 index 00000000..7ea68b8d --- /dev/null +++ b/themes/super-theme.yaml @@ -0,0 +1,53 @@ +name: "Super Theme" +source: + marketplace_id: "AndresCespedesMorales.superman-vscode" + version: "0.1.0" + installs: 1609 + rating: 5 + ratings: 1 + author: "Andres Cespedes Morales" + repo: "https://github.com/pedes/superman-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AndresCespedesMorales.superman-vscode" + formats: null +colors: + bg: "#263238" + fg: "#EEFFFF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#528BFF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 230 + pair: null + contrast: + fg: 100.4 + black: 0 + red: 37.9 + green: 58.1 + yellow: 66.4 + blue: 37.3 + magenta: 41 + cyan: 50.4 + white: 78.9 + brightBlack: 31.4 + brightRed: 34.3 + brightGreen: 58.1 + brightYellow: 66.4 + brightBlue: 37.3 + brightMagenta: 8.6 + brightCyan: 50.4 + brightWhite: 78.9 diff --git a/themes/supernova-theme.yaml b/themes/supernova-theme.yaml new file mode 100644 index 00000000..c1a9589c --- /dev/null +++ b/themes/supernova-theme.yaml @@ -0,0 +1,53 @@ +name: "Supernova Theme" +source: + marketplace_id: "MikeBell.supernova-color-theme" + version: "0.1.6" + installs: 6737 + rating: 5 + ratings: 3 + author: "Mike Bell" + repo: "https://github.com/mikeybell/supernova-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MikeBell.supernova-color-theme" + formats: null +colors: + bg: "#202633" + fg: "#D6DEEB" + black: "#202633" + red: "#E97178" + green: "#C3E88D" + yellow: "#F1DC3D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#D6DEEB" + brightBlack: "#575656" + brightRed: "#E97178" + brightGreen: "#C3E88D" + brightYellow: "#F1DC3D" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 265 + pair: null + contrast: + fg: 83.1 + black: 0 + red: 43.1 + green: 82.1 + yellow: 81.3 + blue: 53.8 + magenta: 51.7 + cyan: 76.2 + white: 83.1 + brightBlack: 13.5 + brightRed: 43.1 + brightGreen: 82.1 + brightYellow: 81.3 + brightBlue: 53.8 + brightMagenta: 51.7 + brightCyan: 76.2 + brightWhite: 104.8 diff --git a/themes/sweet-code-color-theme.yaml b/themes/sweet-code-color-theme.yaml new file mode 100644 index 00000000..8e7e3c14 --- /dev/null +++ b/themes/sweet-code-color-theme.yaml @@ -0,0 +1,53 @@ +name: "Sweet Code Color Theme" +source: + marketplace_id: "WelkerArantes.sweet-code-theme" + version: "1.0.0" + installs: 4067 + rating: 0 + ratings: 0 + author: "Welker Arantes" + repo: "https://github.com/taikio/sweet-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=WelkerArantes.sweet-code-theme" + formats: null +colors: + bg: "#333333" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 74.6 + black: 0 + red: 21.9 + green: 48.2 + yellow: 80.8 + blue: 22.6 + magenta: 24.9 + cyan: 42.7 + white: 85.2 + brightBlack: 17.2 + brightRed: 33.7 + brightGreen: 58.7 + brightYellow: 90.8 + brightBlue: 35.1 + brightMagenta: 40.5 + brightCyan: 50.5 + brightWhite: 85.2 diff --git a/themes/sweet-dracula-monokai.yaml b/themes/sweet-dracula-monokai.yaml new file mode 100644 index 00000000..71a7d814 --- /dev/null +++ b/themes/sweet-dracula-monokai.yaml @@ -0,0 +1,53 @@ +name: "Sweet Dracula Monokai" +source: + marketplace_id: "lefd.sweetdracula-monokai" + version: "1.1.14" + installs: 8147 + rating: 5 + ratings: 1 + author: "lefd" + repo: "https://github.com/LEFD/sweetdracula-monokai" + url: "https://marketplace.visualstudio.com/items?itemName=lefd.sweetdracula-monokai" + formats: null +colors: + bg: "#161925" + fg: "#F8F8F2" + black: "#666666" + red: "#FD971F" + green: "#A6E22E" + yellow: "#E6DB74" + blue: "#AE81FF" + magenta: "#F92672" + cyan: "#66D9EF" + white: "#E3E3DD" + brightBlack: "#6272A4" + brightRed: "#FF5555" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#BD93F9" + brightMagenta: "#FF79C6" + brightCyan: "#8BE9FD" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 273 + pair: null + contrast: + fg: 101.7 + black: 21.8 + red: 58.4 + green: 76.7 + yellow: 81.8 + blue: 46.2 + magenta: 37 + cyan: 73.1 + white: 88.2 + brightBlack: 27.8 + brightRed: 43.1 + brightGreen: 84.6 + brightYellow: 98.3 + brightBlue: 53.4 + brightMagenta: 54.3 + brightCyan: 83.7 + brightWhite: 101.7 diff --git a/themes/sweetwood--vim-dark-hard.yaml b/themes/sweetwood--vim-dark-hard.yaml new file mode 100644 index 00000000..b5db94a2 --- /dev/null +++ b/themes/sweetwood--vim-dark-hard.yaml @@ -0,0 +1,53 @@ +name: "SweetWood (Vim Dark Hard)" +source: + marketplace_id: "AndreaCombette.SweetWood" + version: "0.5.5" + installs: 249 + rating: 5 + ratings: 1 + author: "AndreaCombette" + repo: "https://github.com/Chatr0uge/SweetWood-theme" + url: "https://marketplace.visualstudio.com/items?itemName=AndreaCombette.SweetWood" + formats: null +colors: + bg: "#241914" + fg: "#D6DFEE" + black: "#3D2D27" + red: "#975F0E" + green: "#B5761A" + yellow: "#D0850D" + blue: "#5D768F" + magenta: "#767A7E" + cyan: "#767A7E" + white: "#8294A7" + brightBlack: "#767A7E" + brightRed: "#D0850D" + brightGreen: "#D3923F" + brightYellow: "#D3923F" + brightBlue: "#8294A7" + brightMagenta: "#96A8BF" + brightCyan: "#8294A7" + brightWhite: "#D6DFEE" +meta: + mode: "dark" + accent: "yellow" + hue: 46 + pair: null + contrast: + fg: 85.3 + black: 0 + red: 24.1 + green: 35.2 + yellow: 44.2 + blue: 27.4 + magenta: 30.2 + cyan: 30.2 + white: 42.1 + brightBlack: 30.2 + brightRed: 44.2 + brightGreen: 49.2 + brightYellow: 49.2 + brightBlue: 42.1 + brightMagenta: 52.7 + brightCyan: 42.1 + brightWhite: 85.3 diff --git a/themes/syntax-palette-a-color-theme-for-code-creators.yaml b/themes/syntax-palette-a-color-theme-for-code-creators.yaml new file mode 100644 index 00000000..fb00f451 --- /dev/null +++ b/themes/syntax-palette-a-color-theme-for-code-creators.yaml @@ -0,0 +1,53 @@ +name: "Syntax Palette – A Color Theme for Code Creators" +source: + marketplace_id: "aqsa.syntax-palette" + version: "0.0.5" + installs: 219 + rating: 5 + ratings: 1 + author: "aqsa" + repo: "https://github.com/Bacteria007/syntax-palette" + url: "https://marketplace.visualstudio.com/items?itemName=aqsa.syntax-palette" + formats: null +colors: + bg: "#1A1D24" + fg: "#F1F5F9" + black: "#1F2937" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#8B5CF6" + cyan: "#06B6D4" + white: "#F8FAFC" + brightBlack: "#1F2937" + brightRed: "#EF4444" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#3B82F6" + brightMagenta: "#8B5CF6" + brightCyan: "#06B6D4" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "magenta" + hue: 267 + pair: null + contrast: + fg: 99.2 + black: 0 + red: 36.1 + green: 51.2 + yellow: 58.7 + blue: 36.1 + magenta: 31.2 + cyan: 53.2 + white: 102.7 + brightBlack: 0 + brightRed: 36.1 + brightGreen: 51.2 + brightYellow: 58.7 + brightBlue: 36.1 + brightMagenta: 31.2 + brightCyan: 53.2 + brightWhite: 102.7 diff --git a/themes/synthor-dark-theme.yaml b/themes/synthor-dark-theme.yaml new file mode 100644 index 00000000..ca1c6042 --- /dev/null +++ b/themes/synthor-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Synthor Dark Theme" +source: + marketplace_id: "adinahawaldar.synthor-dark" + version: "0.0.10" + installs: 42 + rating: 0 + ratings: 0 + author: "adinahawaldar" + repo: "https://github.com/adinahawaldar/synthor-dark" + url: "https://marketplace.visualstudio.com/items?itemName=adinahawaldar.synthor-dark" + formats: null +colors: + bg: "#14161E" + fg: "#FDFDFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#6298D3" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 274 + pair: null + contrast: + fg: 105.7 + black: 0 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 44 + magenta: 29.8 + cyan: 47.6 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.4 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/szn.yaml b/themes/szn.yaml new file mode 100644 index 00000000..58d4ef24 --- /dev/null +++ b/themes/szn.yaml @@ -0,0 +1,53 @@ +name: "szn" +source: + marketplace_id: "6.6szn-dark" + version: "1.11.0" + installs: 358 + rating: 5 + ratings: 1 + author: "6" + repo: "https://github.com/exeDavid/6szn-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=6.6szn-dark" + formats: null +colors: + bg: "#1A1B26" + fg: "#AAB3E5" + black: "#000000" + red: "#FF5370" + green: "#C7F59B" + yellow: "#FFDB8E" + blue: "#70B0FF" + magenta: "#BAACFF" + cyan: "#7FDAFF" + white: "#E4F3FA" + brightBlack: "#7C85B3" + brightRed: "#FF5370" + brightGreen: "#C7F59B" + brightYellow: "#FFDB8E" + brightBlue: "#70B0FF" + brightMagenta: "#BAACFF" + brightCyan: "#7FDAFF" + brightWhite: "#E4F3FA" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 61 + black: 0 + red: 43.1 + green: 90.7 + yellow: 85.9 + blue: 56.5 + magenta: 61.8 + cyan: 75.6 + white: 96.8 + brightBlack: 36.7 + brightRed: 43.1 + brightGreen: 90.7 + brightYellow: 85.9 + brightBlue: 56.5 + brightMagenta: 61.8 + brightCyan: 75.6 + brightWhite: 96.8 diff --git a/themes/t3chdad-darkside.yaml b/themes/t3chdad-darkside.yaml new file mode 100644 index 00000000..e7a7b51f --- /dev/null +++ b/themes/t3chdad-darkside.yaml @@ -0,0 +1,53 @@ +name: "T3chDad_Darkside" +source: + marketplace_id: "T3chDad.t3chdad-darkside" + version: "0.2.3" + installs: 69 + rating: 0 + ratings: 0 + author: "T3chDad" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=T3chDad.t3chdad-darkside" + formats: null +colors: + bg: "#1E1E1E" + fg: "#EAEAEA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 92.4 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/t3nsor.yaml b/themes/t3nsor.yaml new file mode 100644 index 00000000..c6f59541 --- /dev/null +++ b/themes/t3nsor.yaml @@ -0,0 +1,53 @@ +name: "t3nsor" +source: + marketplace_id: "t3nsor.t3nsor-solo-leveling-purple" + version: "0.0.1" + installs: 353 + rating: 5 + ratings: 1 + author: "t3nsor" + repo: "https://github.com/t3nsor98/t3nsor-solo-leveling" + url: "https://marketplace.visualstudio.com/items?itemName=t3nsor.t3nsor-solo-leveling-purple" + formats: null +colors: + bg: "#070215" + fg: "#E1E1E0" + black: "#474747" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 295 + pair: null + contrast: + fg: 88.4 + black: 10.8 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 90.9 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/tahiti--retro.yaml b/themes/tahiti--retro.yaml new file mode 100644 index 00000000..6eceac42 --- /dev/null +++ b/themes/tahiti--retro.yaml @@ -0,0 +1,53 @@ +name: "Tahiti (Retro)" +source: + marketplace_id: "akil-s.tahiti-retro" + version: "0.0.2" + installs: 611 + rating: 0 + ratings: 0 + author: "akil-s" + repo: "https://github.com/Salah-Akil/ayyour-theme" + url: "https://marketplace.visualstudio.com/items?itemName=akil-s.tahiti-retro" + formats: null +colors: + bg: "#DCDAD7" + fg: "#323435" + black: "#232627" + red: "#BF0C0C" + green: "#738D01" + yellow: "#D59200" + blue: "#009C8F" + magenta: "#AA62C8" + cyan: "#17B898" + white: "#42413F" + brightBlack: "#464E4F" + brightRed: "#CA1111" + brightGreen: "#7F990D" + brightYellow: "#9E6200" + brightBlue: "#00B6A4" + brightMagenta: "#8E44AD" + brightCyan: "#16A085" + brightWhite: "#5D5C5A" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 76.9 + black: 80.6 + red: 57.9 + green: 43.7 + yellow: 29.6 + blue: 39.5 + magenta: 45.2 + cyan: 27.3 + white: 72.2 + brightBlack: 67.8 + brightRed: 55.3 + brightGreen: 38.1 + brightYellow: 52.7 + brightBlue: 27.8 + brightMagenta: 57.3 + brightCyan: 38.1 + brightWhite: 61.5 diff --git a/themes/taiga-theme--taiga.yaml b/themes/taiga-theme--taiga.yaml new file mode 100644 index 00000000..85ad09c0 --- /dev/null +++ b/themes/taiga-theme--taiga.yaml @@ -0,0 +1,55 @@ +name: "Taiga Theme (Taiga)" +source: + marketplace_id: "joshdales.taiga-theme" + version: "4.0.2" + installs: 1413 + rating: 5 + ratings: 3 + author: "Josh Dales" + repo: "https://github.com/joshdales/taiga-theme" + url: "https://marketplace.visualstudio.com/items?itemName=joshdales.taiga-theme" + formats: + ghostty: "https://raw.githubusercontent.com/joshdales/taiga-theme/main/packages/ghostty/taiga-dark..ini" + zed: "https://raw.githubusercontent.com/joshdales/taiga-theme/main/src/templates/zed/theme.json" +colors: + bg: "#000924" + fg: "#D3DEF5" + black: "#0F171F" + red: "#FF6551" + green: "#51B67A" + yellow: "#F0B135" + blue: "#59A0F9" + magenta: "#B17EFF" + cyan: "#43B2AC" + white: "#A4AEC4" + brightBlack: "#5A6377" + brightRed: "#FFA191" + brightGreen: "#72D699" + brightYellow: "#FFD896" + brightBlue: "#91C1FF" + brightMagenta: "#C9ACFF" + brightCyan: "#67D2CC" + brightWhite: "#D3DEF5" +meta: + mode: "dark" + accent: "orange" + hue: 260 + pair: null + contrast: + fg: 86 + black: 0 + red: 47 + green: 52.4 + yellow: 66.2 + blue: 49.7 + magenta: 46.8 + cyan: 51.8 + white: 58 + brightBlack: 21.4 + brightRed: 64.8 + brightGreen: 69.7 + brightYellow: 86 + brightBlue: 67.2 + brightMagenta: 65 + brightCyan: 69.1 + brightWhite: 86 diff --git a/themes/tail-theme.yaml b/themes/tail-theme.yaml new file mode 100644 index 00000000..3b491635 --- /dev/null +++ b/themes/tail-theme.yaml @@ -0,0 +1,53 @@ +name: "tail-theme" +source: + marketplace_id: "webldavi.tail-theme" + version: "0.0.5" + installs: 2420 + rating: 0 + ratings: 0 + author: "webldavi" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=webldavi.tail-theme" + formats: null +colors: + bg: "#18181B" + fg: "#C1C1CB" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 68.5 + black: 0 + red: 26.6 + green: 52.9 + yellow: 85.5 + blue: 27.3 + magenta: 29.6 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 38.4 + brightGreen: 63.4 + brightYellow: 95.5 + brightBlue: 39.9 + brightMagenta: 45.2 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/tailwind-catalyst-theme--catalyst-light.yaml b/themes/tailwind-catalyst-theme--catalyst-light.yaml new file mode 100644 index 00000000..66e958d7 --- /dev/null +++ b/themes/tailwind-catalyst-theme--catalyst-light.yaml @@ -0,0 +1,53 @@ +name: "Tailwind Catalyst Theme (Catalyst Light)" +source: + marketplace_id: "hyphenzero.catalyst-theme" + version: "2.0.1" + installs: 993 + rating: 5 + ratings: 1 + author: "Jasper Gorchov" + repo: "https://github.com/hyphenzero/tailwind-catalyst-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hyphenzero.catalyst-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#1E293B" + black: "#000000" + red: "#BE123C" + green: "#059669" + yellow: "#D97706" + blue: "#1D4ED8" + magenta: "#7E22CE" + cyan: "#0891B2" + white: "#94A3B8" + brightBlack: "#64748B" + brightRed: "#E11D48" + brightGreen: "#10B981" + brightYellow: "#F59E0B" + brightBlue: "#2563EB" + brightMagenta: "#9333EA" + brightCyan: "#06B6D4" + brightWhite: "#000000" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 101.4 + black: 106 + red: 79.2 + green: 64.6 + yellow: 58.5 + blue: 82.2 + magenta: 82.8 + cyan: 63.8 + white: 50.2 + brightBlack: 73 + brightRed: 70.5 + brightGreen: 49.1 + brightYellow: 41.8 + brightBlue: 74.9 + brightMagenta: 75.6 + brightCyan: 47.1 + brightWhite: 106 diff --git a/themes/tailwind-catalyst-theme--catalyst.yaml b/themes/tailwind-catalyst-theme--catalyst.yaml new file mode 100644 index 00000000..78872720 --- /dev/null +++ b/themes/tailwind-catalyst-theme--catalyst.yaml @@ -0,0 +1,53 @@ +name: "Tailwind Catalyst Theme (Catalyst)" +source: + marketplace_id: "hyphenzero.catalyst-theme" + version: "2.0.1" + installs: 993 + rating: 5 + ratings: 1 + author: "Jasper Gorchov" + repo: "https://github.com/hyphenzero/tailwind-catalyst-theme" + url: "https://marketplace.visualstudio.com/items?itemName=hyphenzero.catalyst-theme" + formats: null +colors: + bg: "#09090B" + fg: "#F9FAFB" + black: "#FFFFFF" + red: "#FB7185" + green: "#34D399" + yellow: "#FBBF24" + blue: "#3B82F6" + magenta: "#C084FC" + cyan: "#22D3EE" + white: "#CBD5E1" + brightBlack: "#94A3B8" + brightRed: "#FB7185" + brightGreen: "#6EE7B7" + brightYellow: "#FCD34D" + brightBlue: "#60A5FA" + brightMagenta: "#D8B4FE" + brightCyan: "#67E8F9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 104.4 + black: 107.8 + red: 50.2 + green: 66.1 + yellow: 73.6 + blue: 37.7 + magenta: 50.6 + cyan: 69.5 + white: 80.3 + brightBlack: 51.6 + brightRed: 50.2 + brightGreen: 78.9 + brightYellow: 82.3 + brightBlue: 52.3 + brightMagenta: 70.2 + brightCyan: 82.1 + brightWhite: 107.8 diff --git a/themes/tailwind-colour-themes--tailwind-moon-blue.yaml b/themes/tailwind-colour-themes--tailwind-moon-blue.yaml new file mode 100644 index 00000000..a038f6ff --- /dev/null +++ b/themes/tailwind-colour-themes--tailwind-moon-blue.yaml @@ -0,0 +1,53 @@ +name: "Tailwind Colour Themes (Tailwind Moon Blue)" +source: + marketplace_id: "shadowblood.tailwind-moon" + version: "3.0.2" + installs: 43898 + rating: 5 + ratings: 3 + author: "Lucia Lovelace" + repo: "https://github.com/luciascarlet/tailwind-moon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=shadowblood.tailwind-moon" + formats: null +colors: + bg: "#1E293B" + fg: "#E2E8F0" + black: "#000000" + red: "#C53030" + green: "#34D399" + yellow: "#D69E2E" + blue: "#60A5FA" + magenta: "#60A5FA" + cyan: "#319795" + white: "#334155" + brightBlack: "#4A5568" + brightRed: "#E53E3E" + brightGreen: "#48BB78" + brightYellow: "#ECC94B" + brightBlue: "#4299E1" + brightMagenta: "#ED64A6" + brightCyan: "#38B2AC" + brightWhite: "#334155" +meta: + mode: "dark" + accent: "orange" + hue: 260 + pair: null + contrast: + fg: 88.9 + black: 0 + red: 22.3 + green: 62.6 + yellow: 51.6 + blue: 48.8 + magenta: 48.8 + cyan: 35.8 + white: 0 + brightBlack: 12.3 + brightRed: 31.1 + brightGreen: 51 + brightYellow: 72 + brightBlue: 41.1 + brightMagenta: 42 + brightCyan: 48.2 + brightWhite: 0 diff --git a/themes/tailwind-colour-themes--tailwind-moon-grey.yaml b/themes/tailwind-colour-themes--tailwind-moon-grey.yaml new file mode 100644 index 00000000..d45cca5e --- /dev/null +++ b/themes/tailwind-colour-themes--tailwind-moon-grey.yaml @@ -0,0 +1,53 @@ +name: "Tailwind Colour Themes (Tailwind Moon Grey)" +source: + marketplace_id: "shadowblood.tailwind-moon" + version: "3.0.2" + installs: 43898 + rating: 5 + ratings: 3 + author: "Lucia Lovelace" + repo: "https://github.com/luciascarlet/tailwind-moon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=shadowblood.tailwind-moon" + formats: null +colors: + bg: "#27272A" + fg: "#E4E4E7" + black: "#000000" + red: "#C53030" + green: "#34D399" + yellow: "#D69E2E" + blue: "#60A5FA" + magenta: "#60A5FA" + cyan: "#319795" + white: "#3F3F46" + brightBlack: "#4A5568" + brightRed: "#E53E3E" + brightGreen: "#48BB78" + brightYellow: "#ECC94B" + brightBlue: "#4299E1" + brightMagenta: "#ED64A6" + brightCyan: "#38B2AC" + brightWhite: "#3F3F46" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.2 + black: 0 + red: 22.6 + green: 62.9 + yellow: 51.9 + blue: 49.1 + magenta: 49.1 + cyan: 36.1 + white: 0 + brightBlack: 12.6 + brightRed: 31.4 + brightGreen: 51.3 + brightYellow: 72.3 + brightBlue: 41.4 + brightMagenta: 42.3 + brightCyan: 48.5 + brightWhite: 0 diff --git a/themes/tailwind-colour-themes--tailwind-moon.yaml b/themes/tailwind-colour-themes--tailwind-moon.yaml new file mode 100644 index 00000000..014c619a --- /dev/null +++ b/themes/tailwind-colour-themes--tailwind-moon.yaml @@ -0,0 +1,53 @@ +name: "Tailwind Colour Themes (Tailwind Moon)" +source: + marketplace_id: "shadowblood.tailwind-moon" + version: "3.0.2" + installs: 43898 + rating: 5 + ratings: 3 + author: "Lucia Lovelace" + repo: "https://github.com/luciascarlet/tailwind-moon-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=shadowblood.tailwind-moon" + formats: null +colors: + bg: "#1F2937" + fg: "#E5E7EB" + black: "#000000" + red: "#C53030" + green: "#34D399" + yellow: "#D69E2E" + blue: "#60A5FA" + magenta: "#60A5FA" + cyan: "#319795" + white: "#374151" + brightBlack: "#4A5568" + brightRed: "#E53E3E" + brightGreen: "#48BB78" + brightYellow: "#ECC94B" + brightBlue: "#4299E1" + brightMagenta: "#ED64A6" + brightCyan: "#38B2AC" + brightWhite: "#374151" +meta: + mode: "dark" + accent: "orange" + hue: 257 + pair: null + contrast: + fg: 88.7 + black: 0 + red: 22.3 + green: 62.6 + yellow: 51.6 + blue: 48.8 + magenta: 48.8 + cyan: 35.8 + white: 0 + brightBlack: 12.4 + brightRed: 31.2 + brightGreen: 51 + brightYellow: 72.1 + brightBlue: 41.2 + brightMagenta: 42.1 + brightCyan: 48.3 + brightWhite: 0 diff --git a/themes/tailwind-theme--tailwind-dark.yaml b/themes/tailwind-theme--tailwind-dark.yaml new file mode 100644 index 00000000..b9a76a9b --- /dev/null +++ b/themes/tailwind-theme--tailwind-dark.yaml @@ -0,0 +1,53 @@ +name: "Tailwind Theme (Tailwind - Dark)" +source: + marketplace_id: "WollaceBuarque.tailwind-theme" + version: "0.5.7" + installs: 38202 + rating: 5 + ratings: 1 + author: "Wollace Buarque" + repo: "https://github.com/wollace-buarque/tailwind-theme" + url: "https://marketplace.visualstudio.com/items?itemName=WollaceBuarque.tailwind-theme" + formats: null +colors: + bg: "#1E293B" + fg: "#64748B" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 25.1 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.2 + cyan: 45 + white: 87.4 + brightBlack: 19.4 + brightRed: 36 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/tailwind-theme--tailwind-darkest.yaml b/themes/tailwind-theme--tailwind-darkest.yaml new file mode 100644 index 00000000..e20f68b9 --- /dev/null +++ b/themes/tailwind-theme--tailwind-darkest.yaml @@ -0,0 +1,53 @@ +name: "Tailwind Theme (Tailwind - Darkest)" +source: + marketplace_id: "WollaceBuarque.tailwind-theme" + version: "0.5.7" + installs: 38202 + rating: 5 + ratings: 1 + author: "Wollace Buarque" + repo: "https://github.com/wollace-buarque/tailwind-theme" + url: "https://marketplace.visualstudio.com/items?itemName=WollaceBuarque.tailwind-theme" + formats: null +colors: + bg: "#0D1628" + fg: "#64748B" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 263 + pair: null + contrast: + fg: 27.7 + black: 0 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 diff --git a/themes/tardezinha.yaml b/themes/tardezinha.yaml new file mode 100644 index 00000000..dacdf68c --- /dev/null +++ b/themes/tardezinha.yaml @@ -0,0 +1,53 @@ +name: "Tardezinha" +source: + marketplace_id: "GustavoLimadaSilva.Tardezinha-Light-Theme" + version: "0.0.1" + installs: 19 + rating: 0 + ratings: 0 + author: "Gustavo Lima da Silva" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=GustavoLimadaSilva.Tardezinha-Light-Theme" + formats: null +colors: + bg: "#FEEEC7" + fg: "#000000" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 96.6 + black: 96.6 + red: 64.5 + green: 39.8 + yellow: 48.4 + blue: 76.6 + magenta: 65.1 + cyan: 51.1 + white: 76.5 + brightBlack: 69.3 + brightRed: 64.5 + brightGreen: 31.4 + brightYellow: 31.5 + brightBlue: 76.6 + brightMagenta: 65.1 + brightCyan: 51.1 + brightWhite: 39 diff --git a/themes/tasmania--tasmania-dark.yaml b/themes/tasmania--tasmania-dark.yaml new file mode 100644 index 00000000..37549dd5 --- /dev/null +++ b/themes/tasmania--tasmania-dark.yaml @@ -0,0 +1,53 @@ +name: "Tasmania (Tasmania Dark)" +source: + marketplace_id: "lucidlabs.tasmania-theme" + version: "1.3.0" + installs: 3 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.tasmania-theme" + formats: null +colors: + bg: "#0B1218" + fg: "#E8EDF3" + black: "#0B1218" + red: "#E22339" + green: "#7DD694" + yellow: "#FFCC2C" + blue: "#005A96" + magenta: "#7A5BA5" + cyan: "#5B9BD5" + white: "#E8EDF3" + brightBlack: "#78797E" + brightRed: "#FF4D5E" + brightGreen: "#A3E8B5" + brightYellow: "#FFE066" + brightBlue: "#3D8FD6" + brightMagenta: "#9B7ED9" + brightCyan: "#7EB8DA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 245 + pair: null + contrast: + fg: 95.2 + black: 0 + red: 31 + green: 70 + yellow: 79.2 + blue: 17 + magenta: 24.3 + cyan: 45.3 + white: 95.2 + brightBlack: 31 + brightRed: 42.8 + brightGreen: 82.6 + brightYellow: 88.3 + brightBlue: 39.5 + brightMagenta: 41 + brightCyan: 59.5 + brightWhite: 107.3 diff --git a/themes/tasmania--tasmania-light.yaml b/themes/tasmania--tasmania-light.yaml new file mode 100644 index 00000000..71c9892f --- /dev/null +++ b/themes/tasmania--tasmania-light.yaml @@ -0,0 +1,53 @@ +name: "Tasmania (Tasmania Light)" +source: + marketplace_id: "lucidlabs.tasmania-theme" + version: "1.3.0" + installs: 3 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.tasmania-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#0B1218" + black: "#0B1218" + red: "#E22339" + green: "#0A690D" + yellow: "#B38800" + blue: "#005A96" + magenta: "#5A3D80" + cyan: "#006A8F" + white: "#FFFFFF" + brightBlack: "#78797E" + brightRed: "#8A1220" + brightGreen: "#2E7A58" + brightYellow: "#FFCC2C" + brightBlue: "#004678" + brightMagenta: "#3D2860" + brightCyan: "#5B9BD5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.3 + black: 105.3 + red: 70.2 + green: 83.3 + yellow: 59.7 + blue: 84.5 + magenta: 89.6 + cyan: 79.8 + white: 0 + brightBlack: 70.1 + brightRed: 90.5 + brightGreen: 75.5 + brightYellow: 23.5 + brightBlue: 92.1 + brightMagenta: 98.3 + brightCyan: 56 + brightWhite: 0 diff --git a/themes/tears-of-the-kingdom-theme--tears-of-the-kingdom-minimal-dark.yaml b/themes/tears-of-the-kingdom-theme--tears-of-the-kingdom-minimal-dark.yaml new file mode 100644 index 00000000..121cb4fa --- /dev/null +++ b/themes/tears-of-the-kingdom-theme--tears-of-the-kingdom-minimal-dark.yaml @@ -0,0 +1,53 @@ +name: "Tears of the Kingdom Theme (Tears of the Kingdom - – Minimal Dark)" +source: + marketplace_id: "AdrianKamulegeya.tears-of-the-kingdom-vscode" + version: "0.1.2" + installs: 50 + rating: 0 + ratings: 0 + author: "Adrian Kamulegeya" + repo: "https://github.com/AdrianKamulegeya/tears-of-the-kingdom-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AdrianKamulegeya.tears-of-the-kingdom-vscode" + formats: null +colors: + bg: "#0F1412" + fg: "#C9D6CF" + black: "#0F1412" + red: "#C06C5F" + green: "#3FBF9A" + yellow: "#C2A86B" + blue: "#6E8FA6" + magenta: "#4FA6A3" + cyan: "#3FBF9A" + white: "#C9D6CF" + brightBlack: "#5E746B" + brightRed: "#C06C5F" + brightGreen: "#3FBF9A" + brightYellow: "#C2A86B" + brightBlue: "#6E8FA6" + brightMagenta: "#4FA6A3" + brightCyan: "#3FBF9A" + brightWhite: "#C9D6CF" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 79.1 + black: 0 + red: 36 + green: 56.5 + yellow: 56 + blue: 39.4 + magenta: 46.5 + cyan: 56.5 + white: 79.1 + brightBlack: 26.4 + brightRed: 36 + brightGreen: 56.5 + brightYellow: 56 + brightBlue: 39.4 + brightMagenta: 46.5 + brightCyan: 56.5 + brightWhite: 79.1 diff --git a/themes/tears-of-the-kingdom-theme-tears-of-the-kingdom-minimal-dark-midnight.yaml b/themes/tears-of-the-kingdom-theme-tears-of-the-kingdom-minimal-dark-midnight.yaml new file mode 100644 index 00000000..e1df9a1f --- /dev/null +++ b/themes/tears-of-the-kingdom-theme-tears-of-the-kingdom-minimal-dark-midnight.yaml @@ -0,0 +1,53 @@ +name: "Tears of the Kingdom Theme (Tears of the Kingdom – Minimal Dark (Midnight))" +source: + marketplace_id: "AdrianKamulegeya.tears-of-the-kingdom-vscode" + version: "0.1.2" + installs: 50 + rating: 0 + ratings: 0 + author: "Adrian Kamulegeya" + repo: "https://github.com/AdrianKamulegeya/tears-of-the-kingdom-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AdrianKamulegeya.tears-of-the-kingdom-vscode" + formats: null +colors: + bg: "#0B1010" + fg: "#B8C7C0" + black: "#0B1010" + red: "#9E5A50" + green: "#339F82" + yellow: "#A89054" + blue: "#5F7F95" + magenta: "#3E8F8C" + cyan: "#339F82" + white: "#B8C7C0" + brightBlack: "#536960" + brightRed: "#9E5A50" + brightGreen: "#339F82" + brightYellow: "#A89054" + brightBlue: "#5F7F95" + brightMagenta: "#3E8F8C" + brightCyan: "#339F82" + brightWhite: "#B8C7C0" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 70.2 + black: 0 + red: 25.8 + green: 41.6 + yellow: 43.5 + blue: 32 + magenta: 35.9 + cyan: 41.6 + white: 70.2 + brightBlack: 21.9 + brightRed: 25.8 + brightGreen: 41.6 + brightYellow: 43.5 + brightBlue: 32 + brightMagenta: 35.9 + brightCyan: 41.6 + brightWhite: 70.2 diff --git a/themes/telescope-theme.yaml b/themes/telescope-theme.yaml new file mode 100644 index 00000000..ad076ff0 --- /dev/null +++ b/themes/telescope-theme.yaml @@ -0,0 +1,53 @@ +name: "telescope-theme" +source: + marketplace_id: "Alucardness.telescope-theme" + version: "0.0.6" + installs: 1550 + rating: 5 + ratings: 3 + author: "Alucardness" + repo: "https://github.com/alucardness/telescope-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Alucardness.telescope-theme" + formats: null +colors: + bg: "#232534" + fg: "#BFC3E2" + black: "#121319" + red: "#BF616A" + green: "#72C2A2" + yellow: "#78B7E2" + blue: "#84A0C6" + magenta: "#A093C7" + cyan: "#89B8C2" + white: "#BCC5D8" + brightBlack: "#3E4960" + brightRed: "#E29199" + brightGreen: "#A0DBC2" + brightYellow: "#A8D2EE" + brightBlue: "#A3BEE3" + brightMagenta: "#C8B5E6" + brightCyan: "#B6D8DE" + brightWhite: "#E1EBFF" +meta: + mode: "dark" + accent: "orange" + hue: 278 + pair: null + contrast: + fg: 68.2 + black: 0 + red: 30.9 + green: 58 + yellow: 56.5 + blue: 46.7 + magenta: 44.8 + cyan: 56.6 + white: 68.2 + brightBlack: 8.5 + brightRed: 51.8 + brightGreen: 74.1 + brightYellow: 72.8 + brightBlue: 63.1 + brightMagenta: 64 + brightCyan: 76.1 + brightWhite: 91.4 diff --git a/themes/tema-flamengo--dark.yaml b/themes/tema-flamengo--dark.yaml new file mode 100644 index 00000000..c95d678c --- /dev/null +++ b/themes/tema-flamengo--dark.yaml @@ -0,0 +1,53 @@ +name: "Tema Flamengo (Dark)" +source: + marketplace_id: "konaly.flamengo-theme" + version: "1.0.1" + installs: 5281 + rating: 5 + ratings: 1 + author: "konaly" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=konaly.flamengo-theme" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 107.9 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 107.9 diff --git a/themes/terminal-theme--minimal.yaml b/themes/terminal-theme--minimal.yaml new file mode 100644 index 00000000..250e113c --- /dev/null +++ b/themes/terminal-theme--minimal.yaml @@ -0,0 +1,53 @@ +name: "Terminal Theme (Minimal)" +source: + marketplace_id: "YesCode.terminal-theme" + version: "0.0.9" + installs: 9273 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/terminal" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.terminal-theme" + formats: null +colors: + bg: "#292A37" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#BDEFFA" + brightYellow: "#E7F0FF" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: 281 + pair: null + contrast: + fg: 101.6 + black: 0 + red: 39 + green: 58 + yellow: 70 + blue: 44.5 + magenta: 16.5 + cyan: 46.4 + white: 44.2 + brightBlack: 15.6 + brightRed: 39 + brightGreen: 87.9 + brightYellow: 93.6 + brightBlue: 15.7 + brightMagenta: 16.5 + brightCyan: 46.4 + brightWhite: 95.8 diff --git a/themes/terminal-theme--shades.yaml b/themes/terminal-theme--shades.yaml new file mode 100644 index 00000000..9eda6c07 --- /dev/null +++ b/themes/terminal-theme--shades.yaml @@ -0,0 +1,53 @@ +name: "Terminal Theme (Shades)" +source: + marketplace_id: "YesCode.terminal-theme" + version: "0.0.9" + installs: 9273 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/terminal" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.terminal-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#00161A" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#0687FF" + brightYellow: "#FFCC80" + brightBlue: "#0D6678" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105 + black: 103.4 + red: 58.7 + green: 40.3 + yellow: 28.8 + blue: 53.3 + magenta: 81.3 + cyan: 51.4 + white: 53.6 + brightBlack: 82.3 + brightRed: 58.7 + brightGreen: 62.3 + brightYellow: 22.5 + brightBlue: 82.2 + brightMagenta: 81.3 + brightCyan: 51.4 + brightWhite: 0 diff --git a/themes/terminal-theme--terminal.yaml b/themes/terminal-theme--terminal.yaml new file mode 100644 index 00000000..2c3ea264 --- /dev/null +++ b/themes/terminal-theme--terminal.yaml @@ -0,0 +1,53 @@ +name: "Terminal Theme (Terminal)" +source: + marketplace_id: "YesCode.terminal-theme" + version: "0.0.9" + installs: 9273 + rating: 0 + ratings: 0 + author: "YesCode" + repo: "https://github.com/yesomac/terminal" + url: "https://marketplace.visualstudio.com/items?itemName=YesCode.terminal-theme" + formats: null +colors: + bg: "#0A0A0A" + fg: "#EEFFFF" + black: "#1D2021" + red: "#FB543F" + green: "#95C085" + yellow: "#FAC03B" + blue: "#00A1F9" + magenta: "#8F4673" + cyan: "#8BA59B" + white: "#A89984" + brightBlack: "#665C54" + brightRed: "#FB543F" + brightGreen: "#CFBDFA" + brightYellow: "#E7F0FF" + brightBlue: "#1E8094" + brightMagenta: "#8F4673" + brightCyan: "#8BA59B" + brightWhite: "#FDF4C1" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.4 + black: 0 + red: 42.8 + green: 61.8 + yellow: 73.9 + blue: 48.4 + magenta: 20.4 + cyan: 50.3 + white: 48.1 + brightBlack: 19.4 + brightRed: 42.8 + brightGreen: 72.1 + brightYellow: 97.4 + brightBlue: 30 + brightMagenta: 20.4 + brightCyan: 50.3 + brightWhite: 99.7 diff --git a/themes/terrafuture-themes.yaml b/themes/terrafuture-themes.yaml new file mode 100644 index 00000000..54225877 --- /dev/null +++ b/themes/terrafuture-themes.yaml @@ -0,0 +1,53 @@ +name: "Terrafuture Themes" +source: + marketplace_id: "terrafuture-themes.terrafuture-themes" + version: "0.2.3" + installs: 1673 + rating: 5 + ratings: 1 + author: "Terrafuture Themes" + repo: "https://github.com/jdgn94/terrafuture-themes" + url: "https://marketplace.visualstudio.com/items?itemName=terrafuture-themes.terrafuture-themes" + formats: null +colors: + bg: "#1D212F" + fg: "#EEFFFF" + black: "#000000" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFC107" + blue: "#2196F3" + magenta: "#D80073" + cyan: "#00BCD4" + white: "#EEFFFF" + brightBlack: "#101010" + brightRed: "#E57373" + brightGreen: "#81C784" + brightYellow: "#FFF176" + brightBlue: "#64B5F6" + brightMagenta: "#D82283" + brightCyan: "#4DD0E1" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "red" + hue: 272 + pair: null + contrast: + fg: 103.2 + black: 0 + red: 36.4 + green: 46.2 + yellow: 72.8 + blue: 41.7 + magenta: 27.2 + cyan: 55.2 + white: 103.2 + brightBlack: 0 + brightRed: 43.4 + brightGreen: 61.1 + brightYellow: 94.5 + brightBlue: 56.4 + brightMagenta: 28.6 + brightCyan: 66.1 + brightWhite: 83.7 diff --git a/themes/terrorbelow.yaml b/themes/terrorbelow.yaml new file mode 100644 index 00000000..21260cbd --- /dev/null +++ b/themes/terrorbelow.yaml @@ -0,0 +1,53 @@ +name: "TerrorBelow" +source: + marketplace_id: "lcstrangman.gmk-terror-below-theme" + version: "1.0.5" + installs: 5 + rating: 0 + ratings: 0 + author: "Leonel Strangman" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=lcstrangman.gmk-terror-below-theme" + formats: null +colors: + bg: "#0B1E1A" + fg: "#EAFFFA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 178 + pair: null + contrast: + fg: 103.3 + black: 0 + red: 26.2 + green: 52.5 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.5 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/tesseract.yaml b/themes/tesseract.yaml new file mode 100644 index 00000000..f09960e9 --- /dev/null +++ b/themes/tesseract.yaml @@ -0,0 +1,53 @@ +name: "Tesseract" +source: + marketplace_id: "martian.tesseract" + version: "1.5.0" + installs: 6315 + rating: 0 + ratings: 0 + author: "Endurance the Martian 👽" + repo: "https://github.com/hendurhance/tesseract" + url: "https://marketplace.visualstudio.com/items?itemName=martian.tesseract" + formats: null +colors: + bg: "#141B28" + fg: "#EEFFFF" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 262 + pair: null + contrast: + fg: 104.1 + black: 0 + red: 49.5 + green: 45.9 + yellow: 62.3 + blue: 51.2 + magenta: 55.1 + cyan: 70.6 + white: 32.2 + brightBlack: 0 + brightRed: 49.5 + brightGreen: 45.9 + brightYellow: 62.3 + brightBlue: 51.2 + brightMagenta: 55.1 + brightCyan: 70.6 + brightWhite: 59.1 diff --git a/themes/thanos-theme.yaml b/themes/thanos-theme.yaml new file mode 100644 index 00000000..7593964b --- /dev/null +++ b/themes/thanos-theme.yaml @@ -0,0 +1,53 @@ +name: "Thanos Theme" +source: + marketplace_id: "arthur404dev.thanos-theme" + version: "0.0.6" + installs: 6555 + rating: 5 + ratings: 3 + author: "Arthur 404 dev" + repo: "https://github.com/thanos-theme/visual-studio-code" + url: "https://marketplace.visualstudio.com/items?itemName=arthur404dev.thanos-theme" + formats: null +colors: + bg: "#161926" + fg: "#B9C3D5" + black: "#1A1A1A" + red: "#FF206E" + green: "#58EBD7" + yellow: "#FABC2A" + blue: "#9D65FF" + magenta: "#00A1E4" + cyan: "#9D65FF" + white: "#C4C5B5" + brightBlack: "#625E4C" + brightRed: "#FF206E" + brightGreen: "#58EBD7" + brightYellow: "#FABC2A" + brightBlue: "#9D65FF" + brightMagenta: "#00A1E4" + brightCyan: "#9D65FF" + brightWhite: "#F6F6EF" +meta: + mode: "dark" + accent: "red" + hue: 274 + pair: null + contrast: + fg: 68.7 + black: 0 + red: 38.1 + green: 80.1 + yellow: 71.1 + blue: 36.7 + magenta: 45.8 + cyan: 36.7 + white: 69.5 + brightBlack: 18.3 + brightRed: 38.1 + brightGreen: 80.1 + brightYellow: 71.1 + brightBlue: 36.7 + brightMagenta: 45.8 + brightCyan: 36.7 + brightWhite: 100.3 diff --git a/themes/the-best-theme.yaml b/themes/the-best-theme.yaml new file mode 100644 index 00000000..3593c02d --- /dev/null +++ b/themes/the-best-theme.yaml @@ -0,0 +1,53 @@ +name: "The Best Theme" +source: + marketplace_id: "EduDevHe.thebesttheme" + version: "0.0.0" + installs: 468 + rating: 0 + ratings: 0 + author: "EduDevHe" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=EduDevHe.thebesttheme" + formats: null +colors: + bg: "#474748" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 68.4 + black: 12.5 + red: 15.6 + green: 41.9 + yellow: 74.5 + blue: 16.3 + magenta: 18.6 + cyan: 36.4 + white: 78.9 + brightBlack: 10.9 + brightRed: 27.4 + brightGreen: 52.4 + brightYellow: 84.5 + brightBlue: 28.9 + brightMagenta: 34.3 + brightCyan: 44.3 + brightWhite: 78.9 diff --git a/themes/the-legendary-blue.yaml b/themes/the-legendary-blue.yaml new file mode 100644 index 00000000..a16f17f4 --- /dev/null +++ b/themes/the-legendary-blue.yaml @@ -0,0 +1,53 @@ +name: "The Legendary Blue" +source: + marketplace_id: "Akshath.the-legendary-blue" + version: "0.0.1" + installs: 112 + rating: 0 + ratings: 0 + author: "Akshath" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Akshath.the-legendary-blue" + formats: null +colors: + bg: "#171936" + fg: "#FDFB75" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFFF00" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#00FF10" + brightYellow: "#FFFF67" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#00CDFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 278 + pair: null + contrast: + fg: 99.7 + black: 0 + red: 26.1 + green: 52.4 + yellow: 101.1 + blue: 26.8 + magenta: 29.1 + cyan: 46.9 + white: 89.4 + brightBlack: 21.4 + brightRed: 46.5 + brightGreen: 84.9 + brightYellow: 101.7 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 66 + brightWhite: 89.4 diff --git a/themes/the-matrix.yaml b/themes/the-matrix.yaml new file mode 100644 index 00000000..2bd95e9e --- /dev/null +++ b/themes/the-matrix.yaml @@ -0,0 +1,53 @@ +name: "The Matrix." +source: + marketplace_id: "KurtDunn.animatrix" + version: "0.0.4" + installs: 6175 + rating: 0 + ratings: 0 + author: "Animatrix" + repo: "https://github.com/kurtisdunn/animatrix" + url: "https://marketplace.visualstudio.com/items?itemName=KurtDunn.animatrix" + formats: null +colors: + bg: "#0E191C" + fg: "#6CFF75" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 217 + pair: null + contrast: + fg: 88.5 + black: 0 + red: 26.7 + green: 52.9 + yellow: 85.6 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 90 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 90 diff --git a/themes/the-one-theme--the-one-theme.yaml b/themes/the-one-theme--the-one-theme.yaml new file mode 100644 index 00000000..f55697bf --- /dev/null +++ b/themes/the-one-theme--the-one-theme.yaml @@ -0,0 +1,53 @@ +name: "The One Theme (The One Theme)" +source: + marketplace_id: "Ancairon.the-one-theme" + version: "0.0.6" + installs: 830 + rating: 0 + ratings: 0 + author: "Ancairon" + repo: "https://github.com/Ancairon/the-one-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Ancairon.the-one-theme" + formats: null +colors: + bg: "#1F1000" + fg: "#FAF5E5" + black: "#1F1000" + red: "#D73D3D" + green: "#8FB244" + yellow: "#D7BC3D" + blue: "#416AB6" + magenta: "#855EB0" + cyan: "#258080" + white: "#FAF5E5" + brightBlack: "#666666" + brightRed: "#D73D3D" + brightGreen: "#8FB244" + brightYellow: "#F9DFB1" + brightBlue: "#59CECF" + brightMagenta: "#855EB0" + brightCyan: "#258080" + brightWhite: "#FAF5E5" +meta: + mode: "dark" + accent: "orange" + hue: 71 + pair: null + contrast: + fg: 100.5 + black: 0 + red: 30.7 + green: 53.4 + yellow: 66.2 + blue: 24.9 + magenta: 26.7 + cyan: 28.7 + white: 100.5 + brightBlack: 22.3 + brightRed: 30.7 + brightGreen: 53.4 + brightYellow: 88.4 + brightBlue: 66.3 + brightMagenta: 26.7 + brightCyan: 28.7 + brightWhite: 100.5 diff --git a/themes/the-one-theme--untitled.yaml b/themes/the-one-theme--untitled.yaml new file mode 100644 index 00000000..6c419cfd --- /dev/null +++ b/themes/the-one-theme--untitled.yaml @@ -0,0 +1,53 @@ +name: "The One Theme (Untitled)" +source: + marketplace_id: "Ancairon.the-one-theme" + version: "0.0.6" + installs: 830 + rating: 0 + ratings: 0 + author: "Ancairon" + repo: "https://github.com/Ancairon/the-one-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Ancairon.the-one-theme" + formats: null +colors: + bg: "#FAF5E5" + fg: "#1F1000" + black: "#000000" + red: "#D73D3D" + green: "#546827" + yellow: "#99852B" + blue: "#416AB6" + magenta: "#808EC3" + cyan: "#258080" + white: "#8A5933" + brightBlack: "#666666" + brightRed: "#E21E26" + brightGreen: "#8FB244" + brightYellow: "#D7BC3D" + brightBlue: "#558EF7" + brightMagenta: "#855EB0" + brightCyan: "#59CECF" + brightWhite: "#CB834C" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.1 + black: 100.1 + red: 64.3 + green: 74.9 + yellow: 58.1 + blue: 70.1 + magenta: 53.1 + cyan: 66.3 + white: 73.4 + brightBlack: 72.8 + brightRed: 64.6 + brightGreen: 41.9 + brightYellow: 29.6 + brightBlue: 52.7 + brightMagenta: 68.2 + brightCyan: 29.5 + brightWhite: 51.1 diff --git a/themes/thea-theme--light-theme.yaml b/themes/thea-theme--light-theme.yaml new file mode 100644 index 00000000..08984767 --- /dev/null +++ b/themes/thea-theme--light-theme.yaml @@ -0,0 +1,53 @@ +name: "Thea Theme (Light Theme)" +source: + marketplace_id: "PriyankarPal.theatheme" + version: "0.0.10" + installs: 1539 + rating: 5 + ratings: 1 + author: "Priyankar Pal" + repo: "https://github.com/priyankarpal/TheaTheme" + url: "https://marketplace.visualstudio.com/items?itemName=PriyankarPal.theatheme" + formats: null +colors: + bg: "#FDF6E3" + fg: "#000000" + black: "#767676" + red: "#E74856" + green: "#574657" + yellow: "#9B9665" + blue: "#474F88" + magenta: "#B46E90" + cyan: "#81D6BC" + white: "#928F8F" + brightBlack: "#767676" + brightRed: "#E74856" + brightGreen: "#574657" + brightYellow: "#9B9665" + brightBlue: "#474F88" + brightMagenta: "#B46E90" + brightCyan: "#81D6BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100.8 + black: 66.3 + red: 59.5 + green: 84.5 + yellow: 51.7 + blue: 81.3 + magenta: 59.8 + cyan: 25.3 + white: 54.1 + brightBlack: 66.3 + brightRed: 59.5 + brightGreen: 84.5 + brightYellow: 51.7 + brightBlue: 81.3 + brightMagenta: 59.8 + brightCyan: 25.3 + brightWhite: 43.2 diff --git a/themes/thea-theme--purple-theme.yaml b/themes/thea-theme--purple-theme.yaml new file mode 100644 index 00000000..6e2d93f0 --- /dev/null +++ b/themes/thea-theme--purple-theme.yaml @@ -0,0 +1,53 @@ +name: "Thea Theme (Purple theme)" +source: + marketplace_id: "PriyankarPal.theatheme" + version: "0.0.10" + installs: 1539 + rating: 5 + ratings: 1 + author: "Priyankar Pal" + repo: "https://github.com/priyankarpal/TheaTheme" + url: "https://marketplace.visualstudio.com/items?itemName=PriyankarPal.theatheme" + formats: null +colors: + bg: "#1C1B2C" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 286 + pair: null + contrast: + fg: 78.8 + black: 0 + red: 26 + green: 52.3 + yellow: 84.9 + blue: 26.7 + magenta: 29.1 + cyan: 46.9 + white: 89.3 + brightBlack: 21.3 + brightRed: 37.9 + brightGreen: 62.8 + brightYellow: 94.9 + brightBlue: 39.3 + brightMagenta: 44.7 + brightCyan: 54.7 + brightWhite: 89.3 diff --git a/themes/thebear.yaml b/themes/thebear.yaml new file mode 100644 index 00000000..627b8c55 --- /dev/null +++ b/themes/thebear.yaml @@ -0,0 +1,53 @@ +name: "TheBear" +source: + marketplace_id: "MemoTheme.the-bear" + version: "1.0.5" + installs: 60 + rating: 5 + ratings: 1 + author: "The Bear Theme" + repo: "https://github.com/mhmetglrq/memo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MemoTheme.the-bear" + formats: null +colors: + bg: "#101012" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 107.4 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/themarro--themarro-dark-contrast.yaml b/themes/themarro--themarro-dark-contrast.yaml new file mode 100644 index 00000000..d2f0651e --- /dev/null +++ b/themes/themarro--themarro-dark-contrast.yaml @@ -0,0 +1,53 @@ +name: "Themarro (Themarro Dark Contrast)" +source: + marketplace_id: "aelmessaarab.themarro" + version: "0.1.2" + installs: 10041 + rating: 5 + ratings: 2 + author: "aelmessaarab" + repo: "https://github.com/adamthecro/Themarro" + url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" + formats: null +colors: + bg: "#020914" + fg: "#D4D4D4" + black: "#414141" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 251 + pair: null + contrast: + fg: 80.4 + black: 8.7 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/themarro--themarro-david-remix.yaml b/themes/themarro--themarro-david-remix.yaml new file mode 100644 index 00000000..10f5499e --- /dev/null +++ b/themes/themarro--themarro-david-remix.yaml @@ -0,0 +1,53 @@ +name: "Themarro (Themarro David Remix)" +source: + marketplace_id: "aelmessaarab.themarro" + version: "0.1.2" + installs: 10041 + rating: 5 + ratings: 2 + author: "aelmessaarab" + repo: "https://github.com/adamthecro/Themarro" + url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" + formats: null +colors: + bg: "#030C1B" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 256 + pair: null + contrast: + fg: 107.6 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.4 + blue: 28.2 + magenta: 30.5 + cyan: 48.3 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.8 diff --git a/themes/themarro--themarro.yaml b/themes/themarro--themarro.yaml new file mode 100644 index 00000000..31e6c3ce --- /dev/null +++ b/themes/themarro--themarro.yaml @@ -0,0 +1,53 @@ +name: "Themarro (Themarro)" +source: + marketplace_id: "aelmessaarab.themarro" + version: "0.1.2" + installs: 10041 + rating: 5 + ratings: 2 + author: "aelmessaarab" + repo: "https://github.com/adamthecro/Themarro" + url: "https://marketplace.visualstudio.com/items?itemName=aelmessaarab.themarro" + formats: null +colors: + bg: "#080B14" + fg: "#D4D4D4" + black: "#414141" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + pair: null + contrast: + fg: 80.3 + black: 8.6 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/theme--dark-blue-theme.yaml b/themes/theme--dark-blue-theme.yaml new file mode 100644 index 00000000..886e3adc --- /dev/null +++ b/themes/theme--dark-blue-theme.yaml @@ -0,0 +1,53 @@ +name: "Theme + (Dark Blue Theme)" +source: + marketplace_id: "ceciljacob.code-plus-theme" + version: "1.28.0" + installs: 202059 + rating: 5 + ratings: 8 + author: "Cecil Jacob" + repo: "https://github.com/ceciljacob/code-plus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ceciljacob.code-plus-theme" + formats: null +colors: + bg: "#081620" + fg: "#F6FAFD" + black: "#020202" + red: "#C45E04" + green: "#82A48F" + yellow: "#F4DB60" + blue: "#76ABDC" + magenta: "#B68DB2" + cyan: "#56B8C8" + white: "#EFEFEF" + brightBlack: "#424242" + brightRed: "#C45E04" + brightGreen: "#82A48F" + brightYellow: "#F4DB60" + brightBlue: "#76ABDC" + brightMagenta: "#B68DB2" + brightCyan: "#56B8C8" + brightWhite: "#FEFEFE" +meta: + mode: "dark" + accent: "yellow" + hue: 241 + pair: null + contrast: + fg: 103.3 + black: 0 + red: 32.2 + green: 48 + yellow: 84 + blue: 53.4 + magenta: 46.8 + cyan: 55.9 + white: 96.6 + brightBlack: 8.3 + brightRed: 32.2 + brightGreen: 48 + brightYellow: 84 + brightBlue: 53.4 + brightMagenta: 46.8 + brightCyan: 55.9 + brightWhite: 106.4 diff --git a/themes/theme--dark-brown-theme.yaml b/themes/theme--dark-brown-theme.yaml new file mode 100644 index 00000000..2e529e72 --- /dev/null +++ b/themes/theme--dark-brown-theme.yaml @@ -0,0 +1,53 @@ +name: "Theme + (Dark Brown Theme)" +source: + marketplace_id: "ceciljacob.code-plus-theme" + version: "1.28.0" + installs: 202059 + rating: 5 + ratings: 8 + author: "Cecil Jacob" + repo: "https://github.com/ceciljacob/code-plus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ceciljacob.code-plus-theme" + formats: null +colors: + bg: "#180F08" + fg: "#FCFAF6" + black: "#020202" + red: "#C45E04" + green: "#82A48F" + yellow: "#F4DB60" + blue: "#76ABDC" + magenta: "#B68DB2" + cyan: "#56B8C8" + white: "#EFEFEF" + brightBlack: "#424242" + brightRed: "#C45E04" + brightGreen: "#82A48F" + brightYellow: "#F4DB60" + brightBlue: "#76ABDC" + brightMagenta: "#B68DB2" + brightCyan: "#56B8C8" + brightWhite: "#FEFEFE" +meta: + mode: "dark" + accent: "yellow" + hue: 59 + pair: null + contrast: + fg: 104.1 + black: 0 + red: 32.5 + green: 48.3 + yellow: 84.3 + blue: 53.7 + magenta: 47.1 + cyan: 56.2 + white: 96.9 + brightBlack: 8.6 + brightRed: 32.5 + brightGreen: 48.3 + brightYellow: 84.3 + brightBlue: 53.7 + brightMagenta: 47.1 + brightCyan: 56.2 + brightWhite: 106.7 diff --git a/themes/theme--themedarker.yaml b/themes/theme--themedarker.yaml new file mode 100644 index 00000000..c1826383 --- /dev/null +++ b/themes/theme--themedarker.yaml @@ -0,0 +1,53 @@ +name: "Theme (ThemeDarker)" +source: + marketplace_id: "tal7aouy.theme" + version: "3.1.0" + installs: 1511105 + rating: 4.76 + ratings: 34 + author: "Mhammed Talhaouy" + repo: "https://github.com/tal7aouy/theme" + url: "https://marketplace.visualstudio.com/items?itemName=tal7aouy.theme" + formats: null +colors: + bg: "#23272E" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 262 + pair: null + contrast: + fg: 57.2 + black: 0 + red: 34.5 + green: 58.1 + yellow: 46.4 + blue: 47.4 + magenta: 36.8 + cyan: 50.3 + white: 80.8 + brightBlack: 13.2 + brightRed: 43.9 + brightGreen: 74.6 + brightYellow: 59 + brightBlue: 61.5 + brightMagenta: 48 + brightCyan: 65.6 + brightWhite: 88.4 diff --git a/themes/theme-armada.yaml b/themes/theme-armada.yaml new file mode 100644 index 00000000..ecf8a847 --- /dev/null +++ b/themes/theme-armada.yaml @@ -0,0 +1,53 @@ +name: "theme armada" +source: + marketplace_id: "hakan-akgul.armada" + version: "3.1.8" + installs: 550 + rating: 5 + ratings: 1 + author: "hakan-akgul" + repo: "https://github.com/hakan-akgul/armada" + url: "https://marketplace.visualstudio.com/items?itemName=hakan-akgul.armada" + formats: null +colors: + bg: "#223043" + fg: "#D2D5DB" + black: "#010B13" + red: "#F20D5E" + green: "#8DCC33" + yellow: "#E5F20D" + blue: "#4688D8" + magenta: "#8F26D9" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#546E7A" + brightRed: "#FF5909" + brightGreen: "#10BC97" + brightYellow: "#F6EF87" + brightBlue: "#139FCD" + brightMagenta: "#9500FF" + brightCyan: "#1FB7EA" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "magenta" + hue: 256 + pair: null + contrast: + fg: 76 + black: 0 + red: 30.2 + green: 60.4 + yellow: 87.8 + blue: 33 + magenta: 17.8 + cyan: 43.6 + white: 86.1 + brightBlack: 19.9 + brightRed: 39.5 + brightGreen: 49.9 + brightYellow: 89.9 + brightBlue: 39.9 + brightMagenta: 21.2 + brightCyan: 51.7 + brightWhite: 86.1 diff --git a/themes/theme-for-anyone--1.yaml b/themes/theme-for-anyone--1.yaml new file mode 100644 index 00000000..3125f8c7 --- /dev/null +++ b/themes/theme-for-anyone--1.yaml @@ -0,0 +1,53 @@ +name: "Theme For Anyone (1️⃣)" +source: + marketplace_id: "PhanTriVietHoang.theme4anyone" + version: "1.0.3" + installs: 6 + rating: 0 + ratings: 0 + author: "PhanTriVietHoang" + repo: "https://github.com/phantriviethoang/theme4anyone" + url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.theme4anyone" + formats: null +colors: + bg: "#282C34" + fg: "#ABB2BF" + black: "#282C34" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#5C6370" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 56.2 + black: 0 + red: 38.9 + green: 59.1 + yellow: 67.4 + blue: 51.5 + magenta: 41.9 + cyan: 51.4 + white: 56.2 + brightBlack: 17.4 + brightRed: 38.9 + brightGreen: 59.1 + brightYellow: 67.4 + brightBlue: 51.5 + brightMagenta: 41.9 + brightCyan: 51.4 + brightWhite: 87.4 diff --git a/themes/theme-for-anyone--carbon.yaml b/themes/theme-for-anyone--carbon.yaml new file mode 100644 index 00000000..1659bf2c --- /dev/null +++ b/themes/theme-for-anyone--carbon.yaml @@ -0,0 +1,53 @@ +name: "Theme For Anyone (Carbon)" +source: + marketplace_id: "PhanTriVietHoang.theme4anyone" + version: "1.0.3" + installs: 6 + rating: 0 + ratings: 0 + author: "PhanTriVietHoang" + repo: "https://github.com/phantriviethoang/theme4anyone" + url: "https://marketplace.visualstudio.com/items?itemName=PhanTriVietHoang.theme4anyone" + formats: null +colors: + bg: "#172030" + fg: "#C9CCCD" + black: "#172030" + red: "#FF8A7A" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#94D0FF" + magenta: "#FF85B8" + cyan: "#9AEDFE" + white: "#F1F1F0" + brightBlack: "#686868" + brightRed: "#FF8A7A" + brightGreen: "#5AF78E" + brightYellow: "#F3F99D" + brightBlue: "#94D0FF" + brightMagenta: "#FF85B8" + brightCyan: "#9AEDFE" + brightWhite: "#EEFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 262 + pair: null + contrast: + fg: 73.2 + black: 0 + red: 55.2 + green: 82.9 + yellow: 97.6 + blue: 72.1 + magenta: 55.9 + cyan: 85.9 + white: 96.5 + brightBlack: 21.8 + brightRed: 55.2 + brightGreen: 82.9 + brightYellow: 97.6 + brightBlue: 72.1 + brightMagenta: 55.9 + brightCyan: 85.9 + brightWhite: 103.4 diff --git a/themes/theme-mangayo.yaml b/themes/theme-mangayo.yaml new file mode 100644 index 00000000..47530000 --- /dev/null +++ b/themes/theme-mangayo.yaml @@ -0,0 +1,53 @@ +name: "theme-mangayo" +source: + marketplace_id: "TheRepoClub.theme-mangayo" + version: "1.0.1" + installs: 645 + rating: 0 + ratings: 0 + author: "TheRepoClub" + repo: "https://github.com/TheCynicalTeam/vscode-theme-cynical" + url: "https://marketplace.visualstudio.com/items?itemName=TheRepoClub.theme-mangayo" + formats: null +colors: + bg: "#292F34" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 243 + pair: null + contrast: + fg: 98.3 + black: 0 + red: 20.9 + green: 49.3 + yellow: 54 + blue: 30.9 + magenta: 28.5 + cyan: 46.7 + white: 84.8 + brightBlack: 18.3 + brightRed: 33.6 + brightGreen: 73.3 + brightYellow: 80.2 + brightBlue: 46.2 + brightMagenta: 42.8 + brightCyan: 69.7 + brightWhite: 98.3 diff --git a/themes/theme-rosario--untitled.yaml b/themes/theme-rosario--untitled.yaml new file mode 100644 index 00000000..999b3d82 --- /dev/null +++ b/themes/theme-rosario--untitled.yaml @@ -0,0 +1,53 @@ +name: "Theme Rosario (Untitled)" +source: + marketplace_id: "SamuelRosario.Theme-Rosario" + version: "0.0.4" + installs: 316 + rating: 0 + ratings: 0 + author: "Samuel Rosario" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=SamuelRosario.Theme-Rosario" + formats: null +colors: + bg: "#1B1B1B" + fg: "#FFFFFF" + black: "#3F3F3F" + red: "#FF0000" + green: "#0DBC79" + yellow: "#FFFF00" + blue: "#2472C8" + magenta: "#BA09BA" + cyan: "#11A8CD" + white: "#ECECEC" + brightBlack: "#666666" + brightRed: "#FF5353" + brightGreen: "#23D18B" + brightYellow: "#FFFF5A" + brightBlue: "#3B8EEA" + brightMagenta: "#E068E0" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 106.4 + black: 0 + red: 36.1 + green: 52.6 + yellow: 101.3 + blue: 27 + magenta: 25.2 + cyan: 47.1 + white: 94 + brightBlack: 21.6 + brightRed: 42.6 + brightGreen: 63.1 + brightYellow: 101.7 + brightBlue: 39.6 + brightMagenta: 45.5 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/theme-selenitic.yaml b/themes/theme-selenitic.yaml new file mode 100644 index 00000000..e9e8bc59 --- /dev/null +++ b/themes/theme-selenitic.yaml @@ -0,0 +1,53 @@ +name: "theme-selenitic" +source: + marketplace_id: "fopitz.theme-selenitic" + version: "0.1.0" + installs: 951 + rating: 5 + ratings: 1 + author: "Forrest Pitz" + repo: "https://forrestpitz.visualstudio.com/_git/Seleitic%20Theme" + url: "https://marketplace.visualstudio.com/items?itemName=fopitz.theme-selenitic" + formats: null +colors: + bg: "#333333" + fg: "#F8F8F2" + black: "#333333" + red: "#C4265E" + green: "#86B42B" + yellow: "#B3B42B" + blue: "#6A7EC8" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#EFC986" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 97.1 + black: 0 + red: 19.8 + green: 48.2 + yellow: 52.8 + blue: 29.8 + magenta: 27.4 + cyan: 45.6 + white: 83.6 + brightBlack: 17.2 + brightRed: 71.2 + brightGreen: 72.1 + brightYellow: 79.1 + brightBlue: 45 + brightMagenta: 41.7 + brightCyan: 68.6 + brightWhite: 97.1 diff --git a/themes/themin.yaml b/themes/themin.yaml new file mode 100644 index 00000000..4407d90a --- /dev/null +++ b/themes/themin.yaml @@ -0,0 +1,53 @@ +name: "Themin" +source: + marketplace_id: "Homerotto.themin" + version: "3.0.1" + installs: 2230 + rating: 5 + ratings: 1 + author: "Homerotto" + repo: "https://github.com/FredMSJ/themin" + url: "https://marketplace.visualstudio.com/items?itemName=Homerotto.themin" + formats: null +colors: + bg: "#0A0A0A" + fg: "#E0E0E0" + black: "#131317" + red: "#DF9F9F" + green: "#9FC1DF" + yellow: "#9898A6" + blue: "#0DC1AF" + magenta: "#FDFDFE" + cyan: "#DFC59F" + white: "#868690" + brightBlack: "#5C5C5C" + brightRed: "#DF9F9F" + brightGreen: "#9FC1DF" + brightYellow: "#9898A6" + brightBlue: "#0DC1AF" + brightMagenta: "#FDFDFE" + brightCyan: "#DFC59F" + brightWhite: "#868690" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 87.7 + black: 0 + red: 59.1 + green: 66.7 + yellow: 47.1 + blue: 57.9 + magenta: 106.5 + cyan: 73.5 + white: 37.9 + brightBlack: 18.7 + brightRed: 59.1 + brightGreen: 66.7 + brightYellow: 47.1 + brightBlue: 57.9 + brightMagenta: 106.5 + brightCyan: 73.5 + brightWhite: 37.9 diff --git a/themes/thorn--thorn.yaml b/themes/thorn--thorn.yaml new file mode 100644 index 00000000..6611c221 --- /dev/null +++ b/themes/thorn--thorn.yaml @@ -0,0 +1,53 @@ +name: "Thorn (Thorn)" +source: + marketplace_id: "jpwol.thorn" + version: "1.0.0" + installs: 107 + rating: 0 + ratings: 0 + author: "jpwol" + repo: "https://github.com/jpwol/thorn-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jpwol.thorn" + formats: null +colors: + bg: "#1D282F" + fg: "#DBD0C6" + black: "#1A2328" + red: "#D2696C" + green: "#79C2B6" + yellow: "#FFD7AA" + blue: "#86BFD0" + magenta: "#D9ADD4" + cyan: "#9FCFC3" + white: "#D9D3CE" + brightBlack: "#D9D3CE" + brightRed: "#D2696C" + brightGreen: "#79C2B6" + brightYellow: "#FFD7AA" + brightBlue: "#86BFD0" + brightMagenta: "#D9ADD4" + brightCyan: "#9FCFC3" + brightWhite: "#D9D3CE" +meta: + mode: "dark" + accent: "orange" + hue: 236 + pair: null + contrast: + fg: 75.9 + black: 0 + red: 36.2 + green: 59.1 + yellow: 83.3 + blue: 59.9 + magenta: 62.3 + cyan: 68.5 + white: 77.3 + brightBlack: 77.3 + brightRed: 36.2 + brightGreen: 59.1 + brightYellow: 83.3 + brightBlue: 59.9 + brightMagenta: 62.3 + brightCyan: 68.5 + brightWhite: 77.3 diff --git a/themes/thzin.yaml b/themes/thzin.yaml new file mode 100644 index 00000000..e81c5f41 --- /dev/null +++ b/themes/thzin.yaml @@ -0,0 +1,53 @@ +name: "Thzin" +source: + marketplace_id: "Thzin.Thzin-theme" + version: "1.0.2" + installs: 2041 + rating: 0 + ratings: 0 + author: "Thzin" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Thzin.Thzin-theme" + formats: null +colors: + bg: "#191A1F" + fg: "#D3D3D3" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.5 + black: 0 + red: 26.4 + green: 52.6 + yellow: 85.3 + blue: 27.1 + magenta: 29.4 + cyan: 47.2 + white: 89.7 + brightBlack: 21.7 + brightRed: 38.2 + brightGreen: 63.2 + brightYellow: 95.3 + brightBlue: 39.6 + brightMagenta: 45 + brightCyan: 55 + brightWhite: 89.7 diff --git a/themes/tian-green.yaml b/themes/tian-green.yaml new file mode 100644 index 00000000..70203f71 --- /dev/null +++ b/themes/tian-green.yaml @@ -0,0 +1,53 @@ +name: "tian-green" +source: + marketplace_id: "tiantianli007.tian-green" + version: "0.0.1" + installs: 192 + rating: 0 + ratings: 0 + author: "tiantian" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tiantianli007.tian-green" + formats: null +colors: + bg: "#303030" + fg: "#E8E8E8" + black: "#000000" + red: "#FF7C7C" + green: "#6AF56A" + yellow: "#FAFF45" + blue: "#5EABFF" + magenta: "#FF80FF" + cyan: "#0BCCFB" + white: "#555555" + brightBlack: "#666666" + brightRed: "#FF9D9D" + brightGreen: "#AFFFAF" + brightYellow: "#FCFF9B" + brightBlue: "#89C2FF" + brightMagenta: "#FFB6FF" + brightCyan: "#83E7FF" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 87.8 + black: 0 + red: 48.5 + green: 78.9 + yellow: 97.1 + blue: 49.9 + magenta: 55.5 + cyan: 61.9 + white: 11 + brightBlack: 17.9 + brightRed: 59.1 + brightGreen: 90.4 + brightYellow: 98.7 + brightBlue: 62.1 + brightMagenta: 72.1 + brightCyan: 78.5 + brightWhite: 48.4 diff --git a/themes/tiger-dark.yaml b/themes/tiger-dark.yaml new file mode 100644 index 00000000..5fa2702c --- /dev/null +++ b/themes/tiger-dark.yaml @@ -0,0 +1,53 @@ +name: "Tiger Dark" +source: + marketplace_id: "daniloBrayann.night-wolfdark" + version: "0.0.10" + installs: 320 + rating: 0 + ratings: 0 + author: "daniloBrayann" + repo: "https://github.com/danilobrayann/dev-code-theme" + url: "https://marketplace.visualstudio.com/items?itemName=daniloBrayann.night-wolfdark" + formats: null +colors: + bg: "#282A36" + fg: "#E6E6E6" + black: "#21222C" + red: "#FF5555" + green: "#F2560A" + yellow: "#02FA8D" + blue: "#00FF9E" + magenta: "#D9FF02" + cyan: "#0B33EE" + white: "#FFFFFF" + brightBlack: "#6272A4" + brightRed: "#FF6E6E" + brightGreen: "#69FF94" + brightYellow: "#FFFFA5" + brightBlue: "#D6ACFF" + brightMagenta: "#FF92DF" + brightCyan: "#A4FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 278 + pair: null + contrast: + fg: 87.7 + black: 0 + red: 40.4 + green: 37 + yellow: 81.3 + blue: 84.4 + magenta: 93.7 + cyan: 13 + white: 103.9 + brightBlack: 25.1 + brightRed: 45.9 + brightGreen: 86.1 + brightYellow: 100.6 + brightBlue: 63.2 + brightMagenta: 59.7 + brightCyan: 93.8 + brightWhite: 103.9 diff --git a/themes/time-flow.yaml b/themes/time-flow.yaml new file mode 100644 index 00000000..acc8e967 --- /dev/null +++ b/themes/time-flow.yaml @@ -0,0 +1,53 @@ +name: "Time Flow" +source: + marketplace_id: "MaisUmDev.maisum-xcode-theme-dark" + version: "0.1.1" + installs: 2606 + rating: 5 + ratings: 2 + author: "Mais Um Dev" + repo: "https://github.com/maisumdev/timeflow-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MaisUmDev.maisum-xcode-theme-dark" + formats: null +colors: + bg: "#000000" + fg: "#D0BF69" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 67.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/to-on-no-codigo.yaml b/themes/to-on-no-codigo.yaml new file mode 100644 index 00000000..d0e0459e --- /dev/null +++ b/themes/to-on-no-codigo.yaml @@ -0,0 +1,53 @@ +name: "To on no codigo" +source: + marketplace_id: "IsraelBatista.to-on-no-codigo" + version: "0.2.1" + installs: 462 + rating: 0 + ratings: 0 + author: "Israel Batista" + repo: "https://github.com/israel77/to-on-no-codigo" + url: "https://marketplace.visualstudio.com/items?itemName=IsraelBatista.to-on-no-codigo" + formats: null +colors: + bg: "#000C23" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#5AAAA0" + yellow: "#FCFC30" + blue: "#465EFF" + magenta: "#BC3FBC" + cyan: "#00EBD0" + white: "#CCCCCC" + brightBlack: "#69696E" + brightRed: "#F14C4C" + brightGreen: "#88C3BE" + brightYellow: "#F5F543" + brightBlue: "#54DCFC" + brightMagenta: "#D670D6" + brightCyan: "#83FFEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: 256 + pair: null + contrast: + fg: 107.5 + black: 0 + red: 27.4 + green: 48.8 + yellow: 100.5 + blue: 28.2 + magenta: 30.4 + cyan: 79.3 + white: 75.3 + brightBlack: 24.1 + brightRed: 39.2 + brightGreen: 63.8 + brightYellow: 96.3 + brightBlue: 75.4 + brightMagenta: 46 + brightCyan: 94.1 + brightWhite: 107.5 diff --git a/themes/tokyo-dark-akil-s.yaml b/themes/tokyo-dark-akil-s.yaml new file mode 100644 index 00000000..c5a4a085 --- /dev/null +++ b/themes/tokyo-dark-akil-s.yaml @@ -0,0 +1,53 @@ +name: "Tokyo (Dark)" +source: + marketplace_id: "akil-s.tokyo-dark" + version: "0.0.2" + installs: 18815 + rating: 5 + ratings: 2 + author: "akil-s" + repo: "https://github.com/Salah-Akil/tokyo-vscode-dark" + url: "https://marketplace.visualstudio.com/items?itemName=akil-s.tokyo-dark" + formats: null +colors: + bg: "#181A1B" + fg: "#D6D3CD" + black: "#232627" + red: "#BF0C0C" + green: "#AFD613" + yellow: "#F6AC00" + blue: "#00E4D1" + magenta: "#AA62C8" + cyan: "#1ABC9C" + white: "#51504E" + brightBlack: "#7F8C8D" + brightRed: "#CA1111" + brightGreen: "#7F990D" + brightYellow: "#FDBC4B" + brightBlue: "#00CBBA" + brightMagenta: "#8E44AD" + brightCyan: "#16A085" + brightWhite: "#82807D" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 21.1 + green: 71.8 + yellow: 64.3 + blue: 74.9 + magenta: 33.7 + cyan: 53.8 + white: 12.9 + brightBlack: 38 + brightRed: 23.6 + brightGreen: 40.8 + brightYellow: 71.9 + brightBlue: 61.8 + brightMagenta: 21.7 + brightCyan: 40.8 + brightWhite: 33.6 diff --git a/themes/tokyo-light-akil-s.yaml b/themes/tokyo-light-akil-s.yaml new file mode 100644 index 00000000..d772968a --- /dev/null +++ b/themes/tokyo-light-akil-s.yaml @@ -0,0 +1,53 @@ +name: "Tokyo (Light)" +source: + marketplace_id: "akil-s.tokyo-light" + version: "0.0.4" + installs: 7311 + rating: 5 + ratings: 1 + author: "akil-s" + repo: "https://github.com/Salah-Akil/tokyo-vscode-light" + url: "https://marketplace.visualstudio.com/items?itemName=akil-s.tokyo-light" + formats: null +colors: + bg: "#FFFFFF" + fg: "#24292E" + black: "#232627" + red: "#BF0C0C" + green: "#738D01" + yellow: "#D59200" + blue: "#009C8F" + magenta: "#AA62C8" + cyan: "#17B898" + white: "#42413F" + brightBlack: "#464E4F" + brightRed: "#CA1111" + brightGreen: "#7F990D" + brightYellow: "#9E6200" + brightBlue: "#00B6A4" + brightMagenta: "#8E44AD" + brightCyan: "#16A085" + brightWhite: "#5D5C5A" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.5 + black: 102.2 + red: 79.4 + green: 65.2 + yellow: 51.2 + blue: 61 + magenta: 66.7 + cyan: 48.8 + white: 93.7 + brightBlack: 89.4 + brightRed: 76.8 + brightGreen: 59.6 + brightYellow: 74.2 + brightBlue: 49.3 + brightMagenta: 78.8 + brightCyan: 59.6 + brightWhite: 83 diff --git a/themes/tokyo-night--tokyo-gogh-alt.yaml b/themes/tokyo-night--tokyo-gogh-alt.yaml new file mode 100644 index 00000000..5c1f6b3a --- /dev/null +++ b/themes/tokyo-night--tokyo-gogh-alt.yaml @@ -0,0 +1,53 @@ +name: "tokyo-night (Tokyo Gogh Alt)" +source: + marketplace_id: "Avetis.tokyo-night" + version: "1.0.2" + installs: 111032 + rating: 5 + ratings: 5 + author: "Avetis" + repo: "https://github.com/AvetisDN/tokyo-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.tokyo-night" + formats: null +colors: + bg: "#1A1B26" + fg: "#C0CAF5" + black: "#000000" + red: "#CD3131" + green: "#54B02A" + yellow: "#FDB347" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#727779" + brightRed: "#F14C4C" + brightGreen: "#9CCE6A" + brightYellow: "#E4B571" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + pair: null + contrast: + fg: 73.8 + black: 0 + red: 26.2 + green: 47.4 + yellow: 68.1 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.5 + brightBlack: 28.6 + brightRed: 38 + brightGreen: 66.8 + brightYellow: 65.3 + brightBlue: 39.5 + brightMagenta: 44.8 + brightCyan: 54.9 + brightWhite: 89.5 diff --git a/themes/tokyo-night--tokyo-gogh.yaml b/themes/tokyo-night--tokyo-gogh.yaml new file mode 100644 index 00000000..79a07904 --- /dev/null +++ b/themes/tokyo-night--tokyo-gogh.yaml @@ -0,0 +1,53 @@ +name: "tokyo-night (Tokyo Gogh)" +source: + marketplace_id: "Avetis.tokyo-night" + version: "1.0.2" + installs: 111032 + rating: 5 + ratings: 5 + author: "Avetis" + repo: "https://github.com/AvetisDN/tokyo-dark-theme" + url: "https://marketplace.visualstudio.com/items?itemName=Avetis.tokyo-night" + formats: null +colors: + bg: "#24283B" + fg: "#C0CAF5" + black: "#000000" + red: "#CD3131" + green: "#54B02A" + yellow: "#FDB347" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#727779" + brightRed: "#F14C4C" + brightGreen: "#9CCE6A" + brightYellow: "#E4B571" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 275 + pair: null + contrast: + fg: 71.7 + black: 0 + red: 24.1 + green: 45.3 + yellow: 66 + blue: 24.8 + magenta: 27.1 + cyan: 44.9 + white: 87.4 + brightBlack: 26.5 + brightRed: 35.9 + brightGreen: 64.7 + brightYellow: 63.2 + brightBlue: 37.4 + brightMagenta: 42.7 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/tokyo-night--tokyo-night-light.yaml b/themes/tokyo-night--tokyo-night-light.yaml new file mode 100644 index 00000000..444b167e --- /dev/null +++ b/themes/tokyo-night--tokyo-night-light.yaml @@ -0,0 +1,54 @@ +name: "Tokyo Night (Tokyo Night Light)" +source: + marketplace_id: "enkia.tokyo-night" + version: "1.1.2" + installs: 2600887 + rating: 4.97 + ratings: 66 + author: "enkia" + repo: "https://github.com/enkia/tokyo-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=enkia.tokyo-night" + formats: + iterm2: "https://raw.githubusercontent.com/enkia/tokyo-night-vscode-theme/master/tokyo-night.itermcolors" +colors: + bg: "#E6E7ED" + fg: "#343B59" + black: "#343B58" + red: "#8C4351" + green: "#33635C" + yellow: "#8F5E15" + blue: "#2959AA" + magenta: "#7B43BA" + cyan: "#006C86" + white: "#707280" + brightBlack: "#343B58" + brightRed: "#8C4351" + brightGreen: "#33635C" + brightYellow: "#8F5E15" + brightBlue: "#2959AA" + brightMagenta: "#7B43BA" + brightCyan: "#006C86" + brightWhite: "#707280" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 81.3 + black: 81.3 + red: 69.5 + green: 69.4 + yellow: 63.5 + blue: 68.9 + magenta: 66.6 + cyan: 65.5 + white: 59 + brightBlack: 81.3 + brightRed: 69.5 + brightGreen: 69.4 + brightYellow: 63.5 + brightBlue: 68.9 + brightMagenta: 66.6 + brightCyan: 65.5 + brightWhite: 59 diff --git a/themes/tokyo-night--tokyo-night-storm.yaml b/themes/tokyo-night--tokyo-night-storm.yaml new file mode 100644 index 00000000..309d5626 --- /dev/null +++ b/themes/tokyo-night--tokyo-night-storm.yaml @@ -0,0 +1,54 @@ +name: "Tokyo Night (Tokyo Night Storm)" +source: + marketplace_id: "enkia.tokyo-night" + version: "1.1.2" + installs: 2600887 + rating: 4.97 + ratings: 66 + author: "enkia" + repo: "https://github.com/enkia/tokyo-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=enkia.tokyo-night" + formats: + iterm2: "https://raw.githubusercontent.com/enkia/tokyo-night-vscode-theme/master/tokyo-night.itermcolors" +colors: + bg: "#24283B" + fg: "#A9B1D6" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#8089B3" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 275 + pair: null + contrast: + fg: 57.2 + black: 8.2 + red: 47.3 + green: 70.1 + yellow: 60.1 + blue: 49 + magenta: 52.9 + cyan: 68.4 + white: 36.4 + brightBlack: 8.2 + brightRed: 47.3 + brightGreen: 70.1 + brightYellow: 60.1 + brightBlue: 49 + brightMagenta: 52.9 + brightCyan: 68.4 + brightWhite: 57.2 diff --git a/themes/tokyo-night--tokyo-night.yaml b/themes/tokyo-night--tokyo-night.yaml new file mode 100644 index 00000000..d8f13d06 --- /dev/null +++ b/themes/tokyo-night--tokyo-night.yaml @@ -0,0 +1,54 @@ +name: "Tokyo Night (Tokyo Night)" +source: + marketplace_id: "enkia.tokyo-night" + version: "1.1.2" + installs: 2600887 + rating: 4.97 + ratings: 66 + author: "enkia" + repo: "https://github.com/enkia/tokyo-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=enkia.tokyo-night" + formats: + iterm2: "https://raw.githubusercontent.com/enkia/tokyo-night-vscode-theme/master/tokyo-night.itermcolors" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 59.3 + black: 0 + red: 49.4 + green: 72.2 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 32.1 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 72.2 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 59 diff --git a/themes/tokyo-night-fork--tokyo-night-light.yaml b/themes/tokyo-night-fork--tokyo-night-light.yaml new file mode 100644 index 00000000..eaddc650 --- /dev/null +++ b/themes/tokyo-night-fork--tokyo-night-light.yaml @@ -0,0 +1,54 @@ +name: "Tokyo Night (fork) (Tokyo Night Light)" +source: + marketplace_id: "henrikvilhelmberglund.tokyo-night-henrikvilhelmberglund" + version: "1.1.0" + installs: 5649 + rating: 0 + ratings: 0 + author: "henrikvilhelmberglund" + repo: "https://github.com/henrikvilhelmberglund/tokyo-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=henrikvilhelmberglund.tokyo-night-henrikvilhelmberglund" + formats: + iterm2: "https://raw.githubusercontent.com/henrikvilhelmberglund/tokyo-night-vscode-theme/master/tokyo-night.itermcolors" +colors: + bg: "#D5D6DB" + fg: "#343B59" + black: "#0F0F14" + red: "#8C4351" + green: "#33635C" + yellow: "#8F5E15" + blue: "#34548A" + magenta: "#5A4A78" + cyan: "#0F4B6E" + white: "#828594" + brightBlack: "#0F0F14" + brightRed: "#8C4351" + brightGreen: "#33635C" + brightYellow: "#8F5E15" + brightBlue: "#34548A" + brightMagenta: "#5A4A78" + brightCyan: "#0F4B6E" + brightWhite: "#828594" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 71.5 + black: 81.7 + red: 59.7 + green: 59.6 + yellow: 53.7 + blue: 62.2 + magenta: 63.2 + cyan: 67.3 + white: 40.4 + brightBlack: 81.7 + brightRed: 59.7 + brightGreen: 59.6 + brightYellow: 53.7 + brightBlue: 62.2 + brightMagenta: 63.2 + brightCyan: 67.3 + brightWhite: 40.4 diff --git a/themes/tokyo-night-fork--tokyo-night-storm.yaml b/themes/tokyo-night-fork--tokyo-night-storm.yaml new file mode 100644 index 00000000..089a501f --- /dev/null +++ b/themes/tokyo-night-fork--tokyo-night-storm.yaml @@ -0,0 +1,54 @@ +name: "Tokyo Night (fork) (Tokyo Night Storm)" +source: + marketplace_id: "henrikvilhelmberglund.tokyo-night-henrikvilhelmberglund" + version: "1.1.0" + installs: 5649 + rating: 0 + ratings: 0 + author: "henrikvilhelmberglund" + repo: "https://github.com/henrikvilhelmberglund/tokyo-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=henrikvilhelmberglund.tokyo-night-henrikvilhelmberglund" + formats: + iterm2: "https://raw.githubusercontent.com/henrikvilhelmberglund/tokyo-night-vscode-theme/master/tokyo-night.itermcolors" +colors: + bg: "#24283B" + fg: "#A9B1D6" + black: "#414868" + red: "#F7768E" + green: "#73DACA" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#7982A9" + brightBlack: "#414868" + brightRed: "#F7768E" + brightGreen: "#73DACA" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#A9B1D6" +meta: + mode: "dark" + accent: "red" + hue: 275 + pair: null + contrast: + fg: 57.2 + black: 8.2 + red: 47.3 + green: 70.1 + yellow: 60.1 + blue: 49 + magenta: 52.9 + cyan: 68.4 + white: 32.8 + brightBlack: 8.2 + brightRed: 47.3 + brightGreen: 70.1 + brightYellow: 60.1 + brightBlue: 49 + brightMagenta: 52.9 + brightCyan: 68.4 + brightWhite: 57.2 diff --git a/themes/tokyo-night-fork--tokyo-night.yaml b/themes/tokyo-night-fork--tokyo-night.yaml new file mode 100644 index 00000000..e67253c0 --- /dev/null +++ b/themes/tokyo-night-fork--tokyo-night.yaml @@ -0,0 +1,54 @@ +name: "Tokyo Night (fork) (Tokyo Night)" +source: + marketplace_id: "henrikvilhelmberglund.tokyo-night-henrikvilhelmberglund" + version: "1.1.0" + installs: 5649 + rating: 0 + ratings: 0 + author: "henrikvilhelmberglund" + repo: "https://github.com/henrikvilhelmberglund/tokyo-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=henrikvilhelmberglund.tokyo-night-henrikvilhelmberglund" + formats: + iterm2: "https://raw.githubusercontent.com/henrikvilhelmberglund/tokyo-night-vscode-theme/master/tokyo-night.itermcolors" +colors: + bg: "#1A1B26" + fg: "#A9B1D6" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E0AF68" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E0AF68" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 59.3 + black: 0 + red: 49.4 + green: 45.8 + yellow: 62.2 + blue: 51.1 + magenta: 55 + cyan: 70.5 + white: 32.1 + brightBlack: 0 + brightRed: 49.4 + brightGreen: 45.8 + brightYellow: 62.2 + brightBlue: 51.1 + brightMagenta: 55 + brightCyan: 70.5 + brightWhite: 59 diff --git a/themes/tokyo-night-theme-damask-edition.yaml b/themes/tokyo-night-theme-damask-edition.yaml new file mode 100644 index 00000000..4fa72b38 --- /dev/null +++ b/themes/tokyo-night-theme-damask-edition.yaml @@ -0,0 +1,53 @@ +name: "Tokyo Night Theme Damask Edition" +source: + marketplace_id: "damask-holdings.tokyo-night-theme-damask-edition" + version: "0.0.1" + installs: 319 + rating: 0 + ratings: 0 + author: "Damask Holdings" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=damask-holdings.tokyo-night-theme-damask-edition" + formats: null +colors: + bg: "#BFC0C7" + fg: "#343B59" + black: "#0F0F14" + red: "#8C4351" + green: "#33635C" + yellow: "#8F5E15" + blue: "#34548A" + magenta: "#5A4A78" + cyan: "#0F4B6E" + white: "#828594" + brightBlack: "#0F0F14" + brightRed: "#8C4351" + brightGreen: "#33635C" + brightYellow: "#8F5E15" + brightBlue: "#34548A" + brightMagenta: "#5A4A78" + brightCyan: "#0F4B6E" + brightWhite: "#828594" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 59.4 + black: 69.5 + red: 47.5 + green: 47.4 + yellow: 41.5 + blue: 50.1 + magenta: 51.1 + cyan: 55.2 + white: 28.3 + brightBlack: 69.5 + brightRed: 47.5 + brightGreen: 47.4 + brightYellow: 41.5 + brightBlue: 50.1 + brightMagenta: 51.1 + brightCyan: 55.2 + brightWhite: 28.3 diff --git a/themes/toodark-am--one-dark-pro.yaml b/themes/toodark-am--one-dark-pro.yaml new file mode 100644 index 00000000..99e62662 --- /dev/null +++ b/themes/toodark-am--one-dark-pro.yaml @@ -0,0 +1,53 @@ +name: "TooDark-AM (One Dark Pro)" +source: + marketplace_id: "glade-software.toodark-am-theme" + version: "1.0.1" + installs: 1040 + rating: 5 + ratings: 1 + author: "glade-software" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=glade-software.toodark-am-theme" + formats: null +colors: + bg: "#011835" + fg: "#ABB2BF" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#D7DAE0" + brightBlack: "#7F848E" + brightRed: "#F44747" + brightGreen: "#98C379" + brightYellow: "#E5C07B" + brightBlue: "#528BFF" + brightMagenta: "#7E0097" + brightCyan: "#56B6C2" + brightWhite: "#D7DAE0" +meta: + mode: "dark" + accent: "orange" + hue: 254 + pair: null + contrast: + fg: 59.1 + black: 0 + red: 41.8 + green: 62 + yellow: 70.3 + blue: 54.4 + magenta: 44.8 + cyan: 54.3 + white: 82.7 + brightBlack: 35.2 + brightRed: 38.1 + brightGreen: 62 + brightYellow: 70.3 + brightBlue: 41.2 + brightMagenta: 12.4 + brightCyan: 54.3 + brightWhite: 82.7 diff --git a/themes/topl-theme--alpha.yaml b/themes/topl-theme--alpha.yaml new file mode 100644 index 00000000..924ae9d2 --- /dev/null +++ b/themes/topl-theme--alpha.yaml @@ -0,0 +1,53 @@ +name: "Topl Theme (.Alpha)" +source: + marketplace_id: "slepe.topl-theme" + version: "1.0.1" + installs: 824 + rating: 0 + ratings: 0 + author: "Slepe" + repo: "https://github.com/slepe/topl-theme" + url: "https://marketplace.visualstudio.com/items?itemName=slepe.topl-theme" + formats: null +colors: + bg: "#24242A" + fg: "#A6A9B7" + black: "#484E5B" + red: "#E56F92" + green: "#8CD7AA" + yellow: "#E9967E" + blue: "#E56F92" + magenta: "#E56F92" + cyan: "#7ABCE4" + white: "#DADDEE" + brightBlack: "#484E5B" + brightRed: "#E56F92" + brightGreen: "#8CD7AA" + brightYellow: "#E9967E" + brightBlue: "#E56F92" + brightMagenta: "#E56F92" + brightCyan: "#7ABCE4" + brightWhite: "#DADDEE" +meta: + mode: "dark" + accent: "red" + hue: 286 + pair: null + contrast: + fg: 53.1 + black: 10.6 + red: 42.9 + green: 70 + yellow: 54.1 + blue: 42.9 + magenta: 42.9 + cyan: 59.1 + white: 83.6 + brightBlack: 10.6 + brightRed: 42.9 + brightGreen: 70 + brightYellow: 54.1 + brightBlue: 42.9 + brightMagenta: 42.9 + brightCyan: 59.1 + brightWhite: 83.6 diff --git a/themes/torte-theme.yaml b/themes/torte-theme.yaml new file mode 100644 index 00000000..80f626ff --- /dev/null +++ b/themes/torte-theme.yaml @@ -0,0 +1,53 @@ +name: "torte theme" +source: + marketplace_id: "GabrielVillalonga.torte-theme" + version: "0.0.2" + installs: 793 + rating: 0 + ratings: 0 + author: "GabrielVillalonga" + repo: "https://github.com/gabivlj/torte" + url: "https://marketplace.visualstudio.com/items?itemName=GabrielVillalonga.torte-theme" + formats: null +colors: + bg: "#000000" + fg: "#C9C9C9" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 73.9 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/totow-s-official-th-me.yaml b/themes/totow-s-official-th-me.yaml new file mode 100644 index 00000000..75f4dc90 --- /dev/null +++ b/themes/totow-s-official-th-me.yaml @@ -0,0 +1,53 @@ +name: "Totow's Official Thème" +source: + marketplace_id: "Totow.Totow-s-Theme" + version: "1.0.3" + installs: 289 + rating: 5 + ratings: 1 + author: "Totow" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Totow.Totow-s-Theme" + formats: null +colors: + bg: "#222222" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.1 + black: 0 + red: 25.3 + green: 51.6 + yellow: 84.2 + blue: 26 + magenta: 28.3 + cyan: 46.1 + white: 88.6 + brightBlack: 20.6 + brightRed: 37.1 + brightGreen: 62.1 + brightYellow: 94.2 + brightBlue: 38.6 + brightMagenta: 44 + brightCyan: 54 + brightWhite: 88.6 diff --git a/themes/touchfish.yaml b/themes/touchfish.yaml new file mode 100644 index 00000000..81018679 --- /dev/null +++ b/themes/touchfish.yaml @@ -0,0 +1,53 @@ +name: "TouchFish" +source: + marketplace_id: "ylw.touchfish" + version: "12.7.0" + installs: 6265 + rating: 5 + ratings: 5 + author: "ylw" + repo: "https://github.com/ylw1997/touchFish" + url: "https://marketplace.visualstudio.com/items?itemName=ylw.touchfish" + formats: null +colors: + bg: "#1A1C22" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: 271 + pair: null + contrast: + fg: 58.8 + black: 8.3 + red: 36.1 + green: 59.8 + yellow: 48 + blue: 49.1 + magenta: 38.5 + cyan: 51.9 + white: 82.5 + brightBlack: 14.9 + brightRed: 45.5 + brightGreen: 76.2 + brightYellow: 60.6 + brightBlue: 63.2 + brightMagenta: 49.7 + brightCyan: 67.2 + brightWhite: 90.1 diff --git a/themes/toxic.yaml b/themes/toxic.yaml new file mode 100644 index 00000000..c8e46cb2 --- /dev/null +++ b/themes/toxic.yaml @@ -0,0 +1,53 @@ +name: "Toxic" +source: + marketplace_id: "wavebeem.toxic-vscode" + version: "0.3.1" + installs: 408 + rating: 0 + ratings: 0 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/toxic-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.toxic-vscode" + formats: null +colors: + bg: "#251F47" + fg: "#D4CCFF" + black: "#4E3D7D" + red: "#FF6882" + green: "#83D411" + yellow: "#F29324" + blue: "#6DA8FF" + magenta: "#FF75F1" + cyan: "#00CBC0" + white: "#F7F1FF" + brightBlack: "#4E3D7D" + brightRed: "#FF6882" + brightGreen: "#83D411" + brightYellow: "#F29324" + brightBlue: "#6DA8FF" + brightMagenta: "#FF75F1" + brightCyan: "#00CBC0" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "pink" + hue: 287 + pair: null + contrast: + fg: 76.3 + black: 8.4 + red: 46.1 + green: 65.3 + yellow: 53.4 + blue: 51.7 + magenta: 54.1 + cyan: 60.4 + white: 97.2 + brightBlack: 8.4 + brightRed: 46.1 + brightGreen: 65.3 + brightYellow: 53.4 + brightBlue: 51.7 + brightMagenta: 54.1 + brightCyan: 60.4 + brightWhite: 97.2 diff --git a/themes/tragicpale.yaml b/themes/tragicpale.yaml new file mode 100644 index 00000000..d57fad4b --- /dev/null +++ b/themes/tragicpale.yaml @@ -0,0 +1,53 @@ +name: "tragicpale" +source: + marketplace_id: "UnSad.tragicpale" + version: "0.0.1" + installs: 184 + rating: 0 + ratings: 0 + author: "UnSad" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=UnSad.tragicpale" + formats: null +colors: + bg: "#131421" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#F5F5F5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 280 + pair: null + contrast: + fg: 107 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 100.5 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.5 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/transparent-themes-collection.yaml b/themes/transparent-themes-collection.yaml new file mode 100644 index 00000000..f285e9b9 --- /dev/null +++ b/themes/transparent-themes-collection.yaml @@ -0,0 +1,53 @@ +name: "Transparent Themes Collection" +source: + marketplace_id: "SHipServer.vscode-transparent-themes-collection" + version: "0.0.2" + installs: 2862 + rating: 0 + ratings: 0 + author: "ReFleXzZ" + repo: "https://github.com/ReFleXzZ/transparent-themes-collection" + url: "https://marketplace.visualstudio.com/items?itemName=SHipServer.vscode-transparent-themes-collection" + formats: null +colors: + bg: "#0B0E14" + fg: "#BFBDB6" + black: "#1E232B" + red: "#EA6C73" + green: "#7FD962" + yellow: "#F9AF4F" + blue: "#53BDFA" + magenta: "#CDA1FA" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 66.5 + black: 0 + red: 44.7 + green: 70.7 + yellow: 67.3 + blue: 61.3 + magenta: 61.3 + cyan: 78.6 + white: 72.4 + brightBlack: 23.6 + brightRed: 47.3 + brightGreen: 74 + brightYellow: 70.3 + brightBlue: 64 + brightMagenta: 64.1 + brightCyan: 81.6 + brightWhite: 107.6 diff --git a/themes/true-dark-by-gurdish-singh.yaml b/themes/true-dark-by-gurdish-singh.yaml new file mode 100644 index 00000000..2d95fdcb --- /dev/null +++ b/themes/true-dark-by-gurdish-singh.yaml @@ -0,0 +1,53 @@ +name: "True Dark By Gurdish Singh" +source: + marketplace_id: "gurdish-singh.true-dark-by-gurdish-singh" + version: "3.0.1" + installs: 32 + rating: 0 + ratings: 0 + author: "Gurdish Singh" + repo: "https://github.com/gurdish-singh/theme-true-dark" + url: "https://marketplace.visualstudio.com/items?itemName=gurdish-singh.true-dark-by-gurdish-singh" + formats: null +colors: + bg: "#1B1B1B" + fg: "#FDFCDC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#FFFB88" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CFCFCF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#FFFB00" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 103.2 + black: 0 + red: 26.3 + green: 52.6 + yellow: 100.5 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 76 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 99.3 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 106.4 diff --git a/themes/tsukiroku.yaml b/themes/tsukiroku.yaml new file mode 100644 index 00000000..747aa03f --- /dev/null +++ b/themes/tsukiroku.yaml @@ -0,0 +1,53 @@ +name: "tsukiroku" +source: + marketplace_id: "tsukiroku.tsukiroku" + version: "2.0.2" + installs: 72 + rating: 5 + ratings: 1 + author: "tsukiroku" + repo: "https://github.com/tsukiroku/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=tsukiroku.tsukiroku" + formats: null +colors: + bg: "#0F0F0F" + fg: "#A2AABC" + black: "#252525" + red: "#EF6B73" + green: "#BAE67E" + yellow: "#DADADA" + blue: "#BAC7FB" + magenta: "#C3A6FF" + cyan: "#BAC7FB" + white: "#A2AABC" + brightBlack: "#353535" + brightRed: "#F7757D" + brightGreen: "#D1FF54" + brightYellow: "#ECFFA8" + brightBlue: "#94AAFF" + brightMagenta: "#F889F3" + brightCyan: "#91E9FF" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 55.7 + black: 0 + red: 45.5 + green: 82.5 + yellow: 83.8 + blue: 73.4 + magenta: 61.9 + cyan: 73.4 + white: 55.7 + brightBlack: 0 + brightRed: 49.8 + brightGreen: 96.7 + brightYellow: 101.6 + brightBlue: 58.1 + brightMagenta: 60.5 + brightCyan: 85.1 + brightWhite: 91.3 diff --git a/themes/tsukuyomi--tsukuyomi.yaml b/themes/tsukuyomi--tsukuyomi.yaml new file mode 100644 index 00000000..5fcd7131 --- /dev/null +++ b/themes/tsukuyomi--tsukuyomi.yaml @@ -0,0 +1,53 @@ +name: "Tsukuyomi (Tsukuyomi)" +source: + marketplace_id: "developerayo.Tsukuyomi" + version: "1.2.7" + installs: 12464 + rating: 5 + ratings: 2 + author: "Shodipo Ayomide" + repo: "https://github.com/Developerayo/tsukuyomi-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=developerayo.Tsukuyomi" + formats: null +colors: + bg: "#1A1E23" + fg: "#D4D9E4" + black: "#1A1F1A" + red: "#F07178" + green: "#BBD99E" + yellow: "#E5C07B" + blue: "#89DDFF" + magenta: "#BB80FF" + cyan: "#89DDFF" + white: "#D4D7D6" + brightBlack: "#5D6963" + brightRed: "#F07178" + brightGreen: "#BBD99E" + brightYellow: "#FFCC66" + brightBlue: "#7DCFFF" + brightMagenta: "#BB80FF" + brightCyan: "#7DCFFF" + brightWhite: "#D4D7D6" +meta: + mode: "dark" + accent: "magenta" + hue: 254 + pair: null + contrast: + fg: 81.6 + black: 0 + red: 45.8 + green: 76 + yellow: 69.8 + blue: 77.5 + magenta: 47.2 + cyan: 77.5 + white: 80.1 + brightBlack: 21.3 + brightRed: 45.8 + brightGreen: 76 + brightYellow: 78.5 + brightBlue: 70.3 + brightMagenta: 47.2 + brightCyan: 70.3 + brightWhite: 80.1 diff --git a/themes/tsukuyomi-tsukuyomi-light.yaml b/themes/tsukuyomi-tsukuyomi-light.yaml new file mode 100644 index 00000000..8ab21fac --- /dev/null +++ b/themes/tsukuyomi-tsukuyomi-light.yaml @@ -0,0 +1,53 @@ +name: "Tsukuyomi (Tsukuyomi (Light))" +source: + marketplace_id: "developerayo.Tsukuyomi" + version: "1.2.7" + installs: 12464 + rating: 5 + ratings: 2 + author: "Shodipo Ayomide" + repo: "https://github.com/Developerayo/tsukuyomi-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=developerayo.Tsukuyomi" + formats: null +colors: + bg: "#F5F5F0" + fg: "#383A42" + black: "#383A42" + red: "#E45649" + green: "#4E8F35" + yellow: "#986801" + blue: "#0B76D4" + magenta: "#8954A8" + cyan: "#0184BC" + white: "#383A42" + brightBlack: "#9D9D9D" + brightRed: "#E45649" + brightGreen: "#4E8F35" + brightYellow: "#986801" + brightBlue: "#0B76D4" + brightMagenta: "#8954A8" + brightCyan: "#0184BC" + brightWhite: "#383A42" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 90 + black: 90 + red: 57.2 + green: 60.6 + yellow: 67.3 + blue: 65.2 + magenta: 70.4 + cyan: 62 + white: 90 + brightBlack: 46.4 + brightRed: 57.2 + brightGreen: 60.6 + brightYellow: 67.3 + brightBlue: 65.2 + brightMagenta: 70.4 + brightCyan: 62 + brightWhite: 90 diff --git a/themes/tsumiki.yaml b/themes/tsumiki.yaml new file mode 100644 index 00000000..df29d47f --- /dev/null +++ b/themes/tsumiki.yaml @@ -0,0 +1,53 @@ +name: "Tsumiki" +source: + marketplace_id: "ArivanHouten.tsumiki" + version: "0.0.1" + installs: 134 + rating: 0 + ratings: 0 + author: "Ari van Houten" + repo: "https://github.com/Ari24-cb24/tsumiki-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ArivanHouten.tsumiki" + formats: null +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#B6B60B" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#C9C9C9" + brightBlack: "#929292" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#ECEC39" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#DEDEDE" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 59.8 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 73.9 + brightBlack: 43.6 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 91 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 86.6 diff --git a/themes/ttera-themes--botany.yaml b/themes/ttera-themes--botany.yaml new file mode 100644 index 00000000..bb86a319 --- /dev/null +++ b/themes/ttera-themes--botany.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Botany)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#1E2128" + fg: "#FFFFFF" + black: "#4A5568" + red: "#E67E80" + green: "#89B482" + yellow: "#A7C080" + blue: "#7FBBB3" + magenta: "#D699B6" + cyan: "#7FBBB3" + white: "#89B482" + brightBlack: "#5D6B73" + brightRed: "#EA9A9A" + brightGreen: "#A3C496" + brightYellow: "#B8CC94" + brightBlue: "#95C9C2" + brightMagenta: "#E0ADCA" + brightCyan: "#95C9C2" + brightWhite: "#A3C496" +meta: + mode: "dark" + accent: "orange" + hue: 267 + pair: null + contrast: + fg: 105.6 + black: 13.6 + red: 46.9 + green: 53.4 + yellow: 61.4 + blue: 57.3 + magenta: 54.4 + cyan: 57.3 + white: 53.4 + brightBlack: 22 + brightRed: 57 + brightGreen: 63.3 + brightYellow: 69 + brightBlue: 65.8 + brightMagenta: 63.8 + brightCyan: 65.8 + brightWhite: 63.3 diff --git a/themes/ttera-themes--cosmic-sea.yaml b/themes/ttera-themes--cosmic-sea.yaml new file mode 100644 index 00000000..e1503632 --- /dev/null +++ b/themes/ttera-themes--cosmic-sea.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Cosmic Sea)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#0F1A2E" + fg: "#B3E5FC" + black: "#263238" + red: "#FF7043" + green: "#4DD0E1" + yellow: "#FFF59D" + blue: "#42A5F5" + magenta: "#BA68C8" + cyan: "#26C6DA" + white: "#E1F5FE" + brightBlack: "#37474F" + brightRed: "#FF8A65" + brightGreen: "#80E5FF" + brightYellow: "#FFECB3" + brightBlue: "#64B5F6" + brightMagenta: "#CE93D8" + brightCyan: "#4DD0E1" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 262 + pair: null + contrast: + fg: 85 + black: 0 + red: 48.2 + green: 67 + yellow: 98.2 + blue: 49.3 + magenta: 37.5 + cyan: 61.1 + white: 97.7 + brightBlack: 8.7 + brightRed: 55.5 + brightGreen: 81 + brightYellow: 94.6 + brightBlue: 57.4 + brightMagenta: 53.7 + brightCyan: 67 + brightWhite: 106.5 diff --git a/themes/ttera-themes--cyberpunk.yaml b/themes/ttera-themes--cyberpunk.yaml new file mode 100644 index 00000000..56d5fade --- /dev/null +++ b/themes/ttera-themes--cyberpunk.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Cyberpunk)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#FF007F" + green: "#39FF14" + yellow: "#FFFF00" + blue: "#1B03A3" + magenta: "#8A2BE2" + cyan: "#00FFFF" + white: "#FFFFFF" + brightBlack: "#333333" + brightRed: "#FF3399" + brightGreen: "#66FF33" + brightYellow: "#FFFF66" + brightBlue: "#3366FF" + brightMagenta: "#CC66FF" + brightCyan: "#66FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 39.2 + green: 87 + yellow: 102.7 + blue: 0 + magenta: 23.3 + cyan: 92.2 + white: 107.9 + brightBlack: 0 + brightRed: 42 + brightGreen: 88.5 + brightYellow: 103.3 + brightBlue: 29.9 + brightMagenta: 45.2 + brightCyan: 94 + brightWhite: 107.9 diff --git a/themes/ttera-themes--dragon.yaml b/themes/ttera-themes--dragon.yaml new file mode 100644 index 00000000..bb67925a --- /dev/null +++ b/themes/ttera-themes--dragon.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Dragon)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#322518" + fg: "#E8DCC6" + black: "#1A1410" + red: "#8B2635" + green: "#7A8471" + yellow: "#D4A574" + blue: "#5A7C8A" + magenta: "#C08A96" + cyan: "#8FABA3" + white: "#E8DCC6" + brightBlack: "#4D3D2A" + brightRed: "#A03447" + brightGreen: "#8C9580" + brightYellow: "#E6B787" + brightBlue: "#6B8D9B" + brightMagenta: "#D4A1AA" + brightCyan: "#A5C4BA" + brightWhite: "#F7F1E8" +meta: + mode: "dark" + accent: "red" + hue: 66 + pair: null + contrast: + fg: 82.7 + black: 0 + red: 10.1 + green: 31.7 + yellow: 55 + blue: 27.2 + magenta: 43.6 + cyan: 50.2 + white: 82.7 + brightBlack: 0 + brightRed: 15.9 + brightGreen: 40.1 + brightYellow: 65.1 + brightBlue: 35.2 + brightMagenta: 55.2 + brightCyan: 63.7 + brightWhite: 95.7 diff --git a/themes/ttera-themes--golden-wave.yaml b/themes/ttera-themes--golden-wave.yaml new file mode 100644 index 00000000..757e7484 --- /dev/null +++ b/themes/ttera-themes--golden-wave.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Golden Wave)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#020617" + fg: "#F1F5F9" + black: "#1E293B" + red: "#DC2626" + green: "#16A34A" + yellow: "#D4AF37" + blue: "#1D4ED8" + magenta: "#7C3AED" + cyan: "#0891B2" + white: "#F1F5F9" + brightBlack: "#64748B" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#FFD700" + brightBlue: "#3B82F6" + brightMagenta: "#8B5CF6" + brightCyan: "#06B6D4" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "magenta" + hue: 265 + pair: null + contrast: + fg: 100.8 + black: 0 + red: 30 + green: 41.9 + yellow: 61.1 + blue: 19.6 + magenta: 24.2 + cyan: 37.7 + white: 100.8 + brightBlack: 28.5 + brightRed: 37.7 + brightGreen: 57.7 + brightYellow: 84.1 + brightBlue: 37.7 + brightMagenta: 32.8 + brightCyan: 54.8 + brightWhite: 104.3 diff --git a/themes/ttera-themes--gothic-vampire.yaml b/themes/ttera-themes--gothic-vampire.yaml new file mode 100644 index 00000000..98a60634 --- /dev/null +++ b/themes/ttera-themes--gothic-vampire.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Gothic Vampire)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#0A0A0C" + fg: "#F8F8F2" + black: "#1A1A1F" + red: "#8B1538" + green: "#50FA7B" + yellow: "#F1FA8C" + blue: "#6272A4" + magenta: "#BD93F9" + cyan: "#8BE9FD" + white: "#F8F8F2" + brightBlack: "#44475A" + brightRed: "#B91E47" + brightGreen: "#50FA7B" + brightYellow: "#F1FA8C" + brightBlue: "#8BE9FD" + brightMagenta: "#BD93F9" + brightCyan: "#8BE9FD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 102.8 + black: 0 + red: 12.2 + green: 85.7 + yellow: 99.4 + blue: 28.9 + magenta: 54.5 + cyan: 84.8 + white: 102.8 + brightBlack: 11.1 + brightRed: 22.1 + brightGreen: 85.7 + brightYellow: 99.4 + brightBlue: 84.8 + brightMagenta: 54.5 + brightCyan: 84.8 + brightWhite: 107.7 diff --git a/themes/ttera-themes--intergalactic.yaml b/themes/ttera-themes--intergalactic.yaml new file mode 100644 index 00000000..938b374b --- /dev/null +++ b/themes/ttera-themes--intergalactic.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Intergalactic)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#0B0D14" + fg: "#F0F4F8" + black: "#0B0D14" + red: "#FF6B6B" + green: "#66FF99" + yellow: "#FFCC33" + blue: "#5599FF" + magenta: "#FF44DD" + cyan: "#00E6FF" + white: "#F0F4F8" + brightBlack: "#7A8394" + brightRed: "#FF8E8E" + brightGreen: "#88FFBB" + brightYellow: "#FFD966" + brightBlue: "#77AAFF" + brightMagenta: "#FF77EE" + brightCyan: "#4DFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 272 + pair: null + contrast: + fg: 100 + black: 0 + red: 48.8 + green: 89.8 + yellow: 79.4 + blue: 47.3 + magenta: 46.9 + cyan: 79.2 + white: 100 + brightBlack: 35.7 + brightRed: 58.8 + brightGreen: 92.6 + brightYellow: 85.5 + brightBlue: 55.8 + brightMagenta: 57 + brightCyan: 92.8 + brightWhite: 107.6 diff --git a/themes/ttera-themes--jellyfish.yaml b/themes/ttera-themes--jellyfish.yaml new file mode 100644 index 00000000..c17b9017 --- /dev/null +++ b/themes/ttera-themes--jellyfish.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Jellyfish)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#0F1419" + fg: "#C2A5F0" + black: "#2D3748" + red: "#FF66B3" + green: "#80FFEE" + yellow: "#FF99FF" + blue: "#C299FF" + magenta: "#FF66B3" + cyan: "#80FFEE" + white: "#FF99DD" + brightBlack: "#4A5568" + brightRed: "#FF80CC" + brightGreen: "#99FFF2" + brightYellow: "#FFB3FF" + brightBlue: "#D6B3FF" + brightMagenta: "#FF80CC" + brightCyan: "#B3FFF7" + brightWhite: "#FFCCEE" +meta: + mode: "dark" + accent: "red" + hue: 249 + pair: null + contrast: + fg: 60.2 + black: 0 + red: 49.7 + green: 93.8 + yellow: 66.9 + blue: 57 + magenta: 49.7 + cyan: 93.8 + white: 64.9 + brightBlack: 15.2 + brightRed: 56.9 + brightGreen: 95.6 + brightYellow: 75.4 + brightBlue: 69 + brightMagenta: 56.9 + brightCyan: 98 + brightWhite: 84 diff --git a/themes/ttera-themes--koi-pond-dark.yaml b/themes/ttera-themes--koi-pond-dark.yaml new file mode 100644 index 00000000..04567132 --- /dev/null +++ b/themes/ttera-themes--koi-pond-dark.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Koi Pond Dark)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#0F1419" + fg: "#C7D2CC" + black: "#2D3B4F" + red: "#FF4D3D" + green: "#4CAF50" + yellow: "#FFB74D" + blue: "#2980B9" + magenta: "#8E24AA" + cyan: "#26C6DA" + white: "#C7D2CC" + brightBlack: "#5C6B73" + brightRed: "#FF6B5A" + brightGreen: "#66BB6A" + brightYellow: "#FFC107" + brightBlue: "#5DADE2" + brightMagenta: "#AB47BC" + brightCyan: "#4DD0E1" + brightWhite: "#E8F0E8" +meta: + mode: "dark" + accent: "orange" + hue: 249 + pair: null + contrast: + fg: 77 + black: 0 + red: 42.1 + green: 47.9 + yellow: 70.9 + blue: 31.6 + magenta: 18.1 + cyan: 61.8 + white: 77 + brightBlack: 23.5 + brightRed: 48.1 + brightGreen: 54.9 + brightYellow: 74.4 + brightBlue: 53.1 + brightMagenta: 28.3 + brightCyan: 67.7 + brightWhite: 95.9 diff --git a/themes/ttera-themes--koi-pond-light.yaml b/themes/ttera-themes--koi-pond-light.yaml new file mode 100644 index 00000000..8d580059 --- /dev/null +++ b/themes/ttera-themes--koi-pond-light.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Koi Pond Light)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#FCFAF4" + fg: "#2C3E34" + black: "#2C3E34" + red: "#FF4D3D" + green: "#2E7D32" + yellow: "#FF8F00" + blue: "#2980B9" + magenta: "#8E24AA" + cyan: "#00ACC1" + white: "#F7F3E9" + brightBlack: "#6B6B52" + brightRed: "#FF6B5A" + brightGreen: "#388E3C" + brightYellow: "#FFB74D" + brightBlue: "#5DADE2" + brightMagenta: "#AB47BC" + brightCyan: "#26C6DA" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 93.2 + black: 93.2 + red: 55.9 + green: 72 + yellow: 41.5 + blue: 66.4 + magenta: 80.2 + cyan: 49.3 + white: 0 + brightBlack: 74.2 + brightRed: 50.1 + brightGreen: 65 + brightYellow: 28.1 + brightBlue: 45.2 + brightMagenta: 69.7 + brightCyan: 36.8 + brightWhite: 0 diff --git a/themes/ttera-themes--orca.yaml b/themes/ttera-themes--orca.yaml new file mode 100644 index 00000000..329aa344 --- /dev/null +++ b/themes/ttera-themes--orca.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Orca)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#444444" + green: "#666666" + yellow: "#555555" + blue: "#333333" + magenta: "#777777" + cyan: "#888888" + white: "#FFFFFF" + brightBlack: "#222222" + brightRed: "#666666" + brightGreen: "#888888" + brightYellow: "#777777" + brightBlue: "#555555" + brightMagenta: "#999999" + brightCyan: "#AAAAAA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 9.8 + green: 23 + yellow: 16.1 + blue: 0 + magenta: 30.6 + cyan: 38.6 + white: 107.9 + brightBlack: 0 + brightRed: 23 + brightGreen: 38.6 + brightYellow: 30.6 + brightBlue: 16.1 + brightMagenta: 47.2 + brightCyan: 56.2 + brightWhite: 107.9 diff --git a/themes/ttera-themes--panda-dark.yaml b/themes/ttera-themes--panda-dark.yaml new file mode 100644 index 00000000..cad96719 --- /dev/null +++ b/themes/ttera-themes--panda-dark.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Panda Dark)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#0D0D0D" + fg: "#F5F5F5" + black: "#2D2D2D" + red: "#D2691E" + green: "#7DB46C" + yellow: "#DAA520" + blue: "#8FBC8F" + magenta: "#CD853F" + cyan: "#90EE90" + white: "#E6E6E6" + brightBlack: "#4A4A4A" + brightRed: "#FF7F50" + brightGreen: "#98FB98" + brightYellow: "#F0E68C" + brightBlue: "#AFEEEE" + brightMagenta: "#DEB887" + brightCyan: "#E0FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101 + black: 0 + red: 38.1 + green: 53.9 + yellow: 58 + blue: 59.7 + magenta: 45.2 + cyan: 83.2 + white: 91.4 + brightBlack: 11.7 + brightRed: 53.2 + brightGreen: 90.6 + brightYellow: 89.7 + brightBlue: 89.3 + brightMagenta: 67.3 + brightCyan: 103.6 + brightWhite: 107.6 diff --git a/themes/ttera-themes--sakura.yaml b/themes/ttera-themes--sakura.yaml new file mode 100644 index 00000000..333a88c2 --- /dev/null +++ b/themes/ttera-themes--sakura.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Sakura)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#1F1A16" + fg: "#EDE3D5" + black: "#3D2F2A" + red: "#A0303E" + green: "#7D8471" + yellow: "#D4A574" + blue: "#8B9DC3" + magenta: "#FF9CB3" + cyan: "#A8C0A0" + white: "#F5F0E8" + brightBlack: "#5C4F47" + brightRed: "#C73E4A" + brightGreen: "#94A085" + brightYellow: "#E6B787" + brightBlue: "#A0B3D6" + brightMagenta: "#FFB3CC" + brightCyan: "#BCD3B4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 61 + pair: null + contrast: + fg: 89.1 + black: 0 + red: 17.1 + green: 33.9 + yellow: 56.9 + blue: 47.7 + magenta: 63.2 + cyan: 63.2 + white: 96.9 + brightBlack: 13.3 + brightRed: 26.9 + brightGreen: 47.2 + brightYellow: 67 + brightBlue: 59.3 + brightMagenta: 72.1 + brightCyan: 74.4 + brightWhite: 106.4 diff --git a/themes/ttera-themes--sunset-beach-dark.yaml b/themes/ttera-themes--sunset-beach-dark.yaml new file mode 100644 index 00000000..8ad93b65 --- /dev/null +++ b/themes/ttera-themes--sunset-beach-dark.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Sunset Beach Dark)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#1A1F2E" + fg: "#E8F4FD" + black: "#252B3D" + red: "#E55039" + green: "#26D0CE" + yellow: "#FFD93D" + blue: "#74C0FC" + magenta: "#B53471" + cyan: "#17A2B8" + white: "#E8F4FD" + brightBlack: "#6C7B95" + brightRed: "#FF6B47" + brightGreen: "#4DABF7" + brightYellow: "#F6C23E" + brightBlue: "#87CEEB" + brightMagenta: "#D63384" + brightCyan: "#20B2AA" + brightWhite: "#F8F4F0" +meta: + mode: "dark" + accent: "red" + hue: 270 + pair: null + contrast: + fg: 97.4 + black: 0 + red: 35.2 + green: 64.5 + yellow: 83.3 + blue: 62.7 + magenta: 22.4 + cyan: 43 + white: 97.4 + brightBlack: 30 + brightRed: 46.4 + brightGreen: 51.6 + brightYellow: 72.2 + brightBlue: 69.1 + brightMagenta: 29.8 + brightCyan: 49.2 + brightWhite: 99 diff --git a/themes/ttera-themes--sunset-beach-light.yaml b/themes/ttera-themes--sunset-beach-light.yaml new file mode 100644 index 00000000..a3bf23b0 --- /dev/null +++ b/themes/ttera-themes--sunset-beach-light.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Sunset Beach Light)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#FEFCF7" + fg: "#2C3E50" + black: "#2C3E50" + red: "#D73027" + green: "#17A2B8" + yellow: "#F6C23E" + blue: "#2E86AB" + magenta: "#B53471" + cyan: "#138496" + white: "#F8F4EB" + brightBlack: "#6B7280" + brightRed: "#E55039" + brightGreen: "#20B2AA" + brightYellow: "#D68910" + brightBlue: "#4DABF7" + brightMagenta: "#D63384" + brightCyan: "#26D0CE" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 93.6 + black: 93.6 + red: 70.2 + green: 55 + yellow: 26.9 + blue: 66.1 + magenta: 75.6 + cyan: 68.3 + white: 0 + brightBlack: 71.8 + brightRed: 62.6 + brightGreen: 48.9 + brightYellow: 52.1 + brightBlue: 46.6 + brightMagenta: 68.1 + brightCyan: 34.2 + brightWhite: 0 diff --git a/themes/ttera-themes--tora.yaml b/themes/ttera-themes--tora.yaml new file mode 100644 index 00000000..9b64781b --- /dev/null +++ b/themes/ttera-themes--tora.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Tora)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#0D0B08" + fg: "#E6D7C3" + black: "#2A1E0F" + red: "#D2691E" + green: "#228B22" + yellow: "#FFA500" + blue: "#4682B4" + magenta: "#9932CC" + cyan: "#2E8B57" + white: "#E6D7C3" + brightBlack: "#6B5D4F" + brightRed: "#FF6347" + brightGreen: "#32CD32" + brightYellow: "#FFD700" + brightBlue: "#87CEEB" + brightMagenta: "#DA70D6" + brightCyan: "#20B2AA" + brightWhite: "#F4E4C1" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 83.3 + black: 0 + red: 38.1 + green: 31.5 + yellow: 64.5 + blue: 33.4 + magenta: 24.2 + cyan: 32.5 + white: 83.3 + brightBlack: 20.1 + brightRed: 46.6 + brightGreen: 61.2 + brightYellow: 84.1 + brightBlue: 71 + brightMagenta: 46.9 + brightCyan: 51.1 + brightWhite: 91 diff --git a/themes/ttera-themes--ukiyo-e-aged-manuscript.yaml b/themes/ttera-themes--ukiyo-e-aged-manuscript.yaml new file mode 100644 index 00000000..d2d39dc6 --- /dev/null +++ b/themes/ttera-themes--ukiyo-e-aged-manuscript.yaml @@ -0,0 +1,53 @@ +name: "Ttera Themes (Ukiyo-e Aged Manuscript)" +source: + marketplace_id: "sserafy.ttera-themes" + version: "2.0.7" + installs: 2054 + rating: 5 + ratings: 1 + author: "sserafy" + repo: "https://github.com/azhou555/naturefy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sserafy.ttera-themes" + formats: null +colors: + bg: "#D4C29A" + fg: "#2A1F15" + black: "#2A1F15" + red: "#A8472B" + green: "#5A7A4C" + yellow: "#C5941A" + blue: "#4A5C7A" + magenta: "#7A5A7A" + cyan: "#4C6B6B" + white: "#D4C29A" + brightBlack: "#746453" + brightRed: "#C85A3B" + brightGreen: "#6D9157" + brightYellow: "#E8B226" + brightBlue: "#5C7094" + brightMagenta: "#9570A3" + brightCyan: "#5E8282" + brightWhite: "#F0E8D6" +meta: + mode: "light" + accent: "yellow" + hue: 87 + pair: null + contrast: + fg: 68.8 + black: 68.8 + red: 44.3 + green: 39.4 + yellow: 18.8 + blue: 49.1 + magenta: 45.2 + cyan: 44.8 + white: 0 + brightBlack: 44.3 + brightRed: 34.3 + brightGreen: 29.3 + brightYellow: 0 + brightBlue: 40.4 + brightMagenta: 33.9 + brightCyan: 34.8 + brightWhite: 21.3 diff --git a/themes/turbo-c-3-0-theme.yaml b/themes/turbo-c-3-0-theme.yaml new file mode 100644 index 00000000..07bf79b9 --- /dev/null +++ b/themes/turbo-c-3-0-theme.yaml @@ -0,0 +1,53 @@ +name: "Turbo C.3.0-Theme" +source: + marketplace_id: "WatkinsLabs.turboc-3-0-theme" + version: "0.0.1" + installs: 1308 + rating: 5 + ratings: 1 + author: "Watkins Labs" + repo: "https://github.com/chris17453/vscode-turboc3.0-theme" + url: "https://marketplace.visualstudio.com/items?itemName=WatkinsLabs.turboc-3-0-theme" + formats: null +colors: + bg: "#000058" + fg: "#00FF00" + black: "#000000" + red: "#800000" + green: "#008000" + yellow: "#808000" + blue: "#0000FF" + magenta: "#800080" + cyan: "#008080" + white: "#C0C0C0" + brightBlack: "#808080" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 84.7 + black: 0 + red: 7.8 + green: 25.3 + yellow: 31.1 + blue: 14.5 + magenta: 10.9 + cyan: 27.4 + white: 66.9 + brightBlack: 33 + brightRed: 35.8 + brightGreen: 84.7 + brightYellow: 100.9 + brightBlue: 14.5 + brightMagenta: 44.5 + brightCyan: 90.4 + brightWhite: 106.1 diff --git a/themes/turnstyle--turnstyle-darker.yaml b/themes/turnstyle--turnstyle-darker.yaml new file mode 100644 index 00000000..afb7cb28 --- /dev/null +++ b/themes/turnstyle--turnstyle-darker.yaml @@ -0,0 +1,53 @@ +name: "Turnstyle (Turnstyle Darker)" +source: + marketplace_id: "oxechicao.turnstyle" + version: "2.2.0" + installs: 35 + rating: 0 + ratings: 0 + author: "Francisco Thiago" + repo: "https://github.com/oxechicao/turnstyle" + url: "https://marketplace.visualstudio.com/items?itemName=oxechicao.turnstyle" + formats: null +colors: + bg: "#0F1524" + fg: "#E0F0F0" + black: "#182B3E" + red: "#A3CBD2" + green: "#75A6EB" + yellow: "#DA81AA" + blue: "#DFDF90" + magenta: "#4FA190" + cyan: "#D7A275" + white: "#E0F0F0" + brightBlack: "#A3CBD2" + brightRed: "#A3CBD2" + brightGreen: "#75A6EB" + brightYellow: "#DA81AA" + brightBlue: "#DFDF90" + brightMagenta: "#4FA190" + brightCyan: "#D7A275" + brightWhite: "#E0F0F0" +meta: + mode: "dark" + accent: "red" + hue: 267 + pair: null + contrast: + fg: 95.1 + black: 0 + red: 70.1 + green: 52.2 + yellow: 48.4 + blue: 83.6 + magenta: 43.4 + cyan: 56.9 + white: 95.1 + brightBlack: 70.1 + brightRed: 70.1 + brightGreen: 52.2 + brightYellow: 48.4 + brightBlue: 83.6 + brightMagenta: 43.4 + brightCyan: 56.9 + brightWhite: 95.1 diff --git a/themes/turnstyle--turnstyle.yaml b/themes/turnstyle--turnstyle.yaml new file mode 100644 index 00000000..bafdfcb5 --- /dev/null +++ b/themes/turnstyle--turnstyle.yaml @@ -0,0 +1,53 @@ +name: "Turnstyle (Turnstyle)" +source: + marketplace_id: "oxechicao.turnstyle" + version: "2.2.0" + installs: 35 + rating: 0 + ratings: 0 + author: "Francisco Thiago" + repo: "https://github.com/oxechicao/turnstyle" + url: "https://marketplace.visualstudio.com/items?itemName=oxechicao.turnstyle" + formats: null +colors: + bg: "#1D263A" + fg: "#E0F0F0" + black: "#2C4259" + red: "#A3CBD2" + green: "#75A6EB" + yellow: "#DA81AA" + blue: "#DFDF90" + magenta: "#4FA190" + cyan: "#D7A275" + white: "#E0F0F0" + brightBlack: "#A3CBD2" + brightRed: "#A3CBD2" + brightGreen: "#75A6EB" + brightYellow: "#DA81AA" + brightBlue: "#DFDF90" + brightMagenta: "#4FA190" + brightCyan: "#D7A275" + brightWhite: "#E0F0F0" +meta: + mode: "dark" + accent: "red" + hue: 265 + pair: null + contrast: + fg: 92.8 + black: 0 + red: 67.8 + green: 49.9 + yellow: 46.2 + blue: 81.4 + magenta: 41.1 + cyan: 54.6 + white: 92.8 + brightBlack: 67.8 + brightRed: 67.8 + brightGreen: 49.9 + brightYellow: 46.2 + brightBlue: 81.4 + brightMagenta: 41.1 + brightCyan: 54.6 + brightWhite: 92.8 diff --git a/themes/turquesa.yaml b/themes/turquesa.yaml new file mode 100644 index 00000000..dcaa9073 --- /dev/null +++ b/themes/turquesa.yaml @@ -0,0 +1,53 @@ +name: "turquesa" +source: + marketplace_id: "srtakennedy.turquesa" + version: "0.0.4" + installs: 224 + rating: 0 + ratings: 0 + author: "srtakennedy" + repo: "https://github.com/SrtaKennedy" + url: "https://marketplace.visualstudio.com/items?itemName=srtakennedy.turquesa" + formats: null +colors: + bg: "#282828" + fg: "#FFD700" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.8 + black: 0 + red: 24.3 + green: 50.6 + yellow: 83.2 + blue: 25 + magenta: 27.3 + cyan: 45.1 + white: 87.6 + brightBlack: 19.6 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.6 + brightMagenta: 42.9 + brightCyan: 53 + brightWhite: 87.6 diff --git a/themes/tutilabs.yaml b/themes/tutilabs.yaml new file mode 100644 index 00000000..10c47875 --- /dev/null +++ b/themes/tutilabs.yaml @@ -0,0 +1,53 @@ +name: "tutilabs" +source: + marketplace_id: "tutilabs.tutilabs" + version: "0.0.1" + installs: 34 + rating: 0 + ratings: 0 + author: "tutilabs" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=tutilabs.tutilabs" + formats: null +colors: + bg: "#151626" + fg: "#BEC2EA" + black: "#665757" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#D1AFAF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#BAADAD" +meta: + mode: "dark" + accent: "pink" + hue: 281 + pair: null + contrast: + fg: 70.1 + black: 17.2 + red: 26.7 + green: 52.9 + yellow: 85.6 + blue: 27.4 + magenta: 29.7 + cyan: 47.5 + white: 62.4 + brightBlack: 22 + brightRed: 38.5 + brightGreen: 63.5 + brightYellow: 95.6 + brightBlue: 39.9 + brightMagenta: 45.3 + brightCyan: 55.3 + brightWhite: 58.4 diff --git a/themes/tyh-theme.yaml b/themes/tyh-theme.yaml new file mode 100644 index 00000000..e918c4d4 --- /dev/null +++ b/themes/tyh-theme.yaml @@ -0,0 +1,53 @@ +name: "tyh-theme" +source: + marketplace_id: "tyh-theme.tyh-theme" + version: "1.4.1" + installs: 535 + rating: 5 + ratings: 1 + author: "tyh-theme" + repo: "https://github.com/Tyh2001/tyh-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=tyh-theme.tyh-theme" + formats: null +colors: + bg: "#2C2C2C" + fg: "#EEFFFF" + black: "#333333" + red: "#D10F1B" + green: "#54C600" + yellow: "#FBCC30" + blue: "#3A6FF4" + magenta: "#8C6BC8" + cyan: "#56ADBC" + white: "#E3E3DD" + brightBlack: "#666666" + brightRed: "#F92672" + brightGreen: "#A6E22E" + brightYellow: "#E2E22E" + brightBlue: "#819AFF" + brightMagenta: "#AE81FF" + brightCyan: "#66D9EF" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 101.3 + black: 0 + red: 22.3 + green: 54.7 + yellow: 74.8 + blue: 27.4 + magenta: 29 + cyan: 47.2 + white: 85.3 + brightBlack: 18.8 + brightRed: 34.1 + brightGreen: 73.8 + brightYellow: 80.7 + brightBlue: 46.6 + brightMagenta: 43.3 + brightCyan: 70.2 + brightWhite: 98.7 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--akari-dawn.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--akari-dawn.yaml new file mode 100644 index 00000000..162ae128 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--akari-dawn.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Akari Dawn)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#E4DED6" + fg: "#1A1816" + black: "#1A1816" + red: "#B04030" + green: "#3A5830" + yellow: "#B07840" + blue: "#304050" + magenta: "#806080" + cyan: "#305858" + white: "#F4F0EA" + brightBlack: "#3A3E48" + brightRed: "#C04838" + brightGreen: "#70A868" + brightYellow: "#D09060" + brightBlue: "#4060A0" + brightMagenta: "#705868" + brightCyan: "#306868" + brightWhite: "#0A0808" +meta: + mode: "light" + accent: "orange" + hue: 75 + pair: null + contrast: + fg: 85.6 + black: 85.6 + red: 59.2 + green: 68.8 + yellow: 45.9 + blue: 75.7 + magenta: 57.8 + cyan: 68.3 + white: 9.4 + brightBlack: 75.9 + brightRed: 54.6 + brightGreen: 34.9 + brightYellow: 32.9 + brightBlue: 61.7 + brightMagenta: 62.8 + brightCyan: 62.5 + brightWhite: 87 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--akari-night.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--akari-night.yaml new file mode 100644 index 00000000..69fb2f6f --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--akari-night.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Akari Night)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#171B22" + fg: "#E6DED3" + black: "#12100E" + red: "#C84C32" + green: "#7FAF6A" + yellow: "#D4A05A" + blue: "#5A6F82" + magenta: "#7C6A8A" + cyan: "#6F8F8A" + white: "#E6DED3" + brightBlack: "#2E3543" + brightRed: "#D65A3A" + brightGreen: "#8FC57A" + brightYellow: "#F08A5D" + brightBlue: "#6F879A" + brightMagenta: "#9A8FB3" + brightCyan: "#8FB8B0" + brightWhite: "#F2ECE4" +meta: + mode: "dark" + accent: "orange" + hue: 262 + pair: null + contrast: + fg: 85.8 + black: 0 + red: 28.9 + green: 50.7 + yellow: 54.6 + blue: 24.5 + magenta: 26.3 + cyan: 37.5 + white: 85.8 + brightBlack: 0 + brightRed: 34.5 + brightGreen: 62 + brightYellow: 52.3 + brightBlue: 35.2 + brightMagenta: 43.4 + brightCyan: 58 + brightWhite: 94.5 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--blush-pink-enhanced-premium.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--blush-pink-enhanced-premium.yaml new file mode 100644 index 00000000..34911bfd --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--blush-pink-enhanced-premium.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Blush Pink Enhanced Premium)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#FDF8F9" + fg: "#2D2D2D" + black: "#2D2D2D" + red: "#E74C3C" + green: "#27AE60" + yellow: "#F39C12" + blue: "#3498DB" + magenta: "#D14769" + cyan: "#1ABC9C" + white: "#ECF0F1" + brightBlack: "#2D2D2D" + brightRed: "#E74C3C" + brightGreen: "#27AE60" + brightYellow: "#F39C12" + brightBlue: "#3498DB" + brightMagenta: "#D14769" + brightCyan: "#1ABC9C" + brightWhite: "#ECF0F1" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.9 + black: 96.9 + red: 61.1 + green: 50.9 + yellow: 39.3 + blue: 54.7 + magenta: 65.8 + cyan: 43.4 + white: 0 + brightBlack: 96.9 + brightRed: 61.1 + brightGreen: 50.9 + brightYellow: 39.3 + brightBlue: 54.7 + brightMagenta: 65.8 + brightCyan: 43.4 + brightWhite: 0 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--calm-dark.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--calm-dark.yaml new file mode 100644 index 00000000..cd47e527 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--calm-dark.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Calm Dark)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#191F22" + fg: "#E6E2D9" + black: "#2F353B" + red: "#E8A06D" + green: "#8DC6AC" + yellow: "#DDB06F" + blue: "#7A90AE" + magenta: "#A48EB5" + cyan: "#85B9C8" + white: "#E3DDD2" + brightBlack: "#555B63" + brightRed: "#F3B081" + brightGreen: "#A9D9C2" + brightYellow: "#E8C89C" + brightBlue: "#90A4C4" + brightMagenta: "#C4B0CF" + brightCyan: "#B3DCE9" + brightWhite: "#F3EEE2" +meta: + mode: "dark" + accent: "yellow" + hue: 229 + pair: null + contrast: + fg: 87.4 + black: 0 + red: 57.9 + green: 63.3 + yellow: 61.9 + blue: 39.9 + magenta: 43.9 + cyan: 58.2 + white: 84.5 + brightBlack: 16.4 + brightRed: 65.9 + brightGreen: 75.3 + brightYellow: 74.3 + brightBlue: 50.5 + brightMagenta: 61.6 + brightCyan: 79.4 + brightWhite: 95.1 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--calm-light.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--calm-light.yaml new file mode 100644 index 00000000..14d2ceb7 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--calm-light.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Calm Light)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#F9F5E7" + fg: "#2F291F" + black: "#2A2219" + red: "#C87A55" + green: "#7CB099" + yellow: "#C39B56" + blue: "#4C4F63" + magenta: "#9D7694" + cyan: "#6EA2B5" + white: "#EFE5D4" + brightBlack: "#8B8073" + brightRed: "#DA8D68" + brightGreen: "#8BC0A7" + brightYellow: "#DAB478" + brightBlue: "#5F6580" + brightMagenta: "#B18CA9" + brightCyan: "#88B8CB" + brightWhite: "#F6F1E5" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 95.1 + black: 96.6 + red: 54 + green: 42.3 + yellow: 44.3 + blue: 81.9 + magenta: 59.9 + cyan: 47.8 + white: 0 + brightBlack: 60.1 + brightRed: 45 + brightGreen: 34.1 + brightYellow: 31.3 + brightBlue: 72.7 + brightMagenta: 49.5 + brightCyan: 36.2 + brightWhite: 0 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--cloudmint-night.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--cloudmint-night.yaml new file mode 100644 index 00000000..5efa24e3 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--cloudmint-night.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (CloudMint Night)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#212836" + fg: "#E9ECEF" + black: "#151C28" + red: "#FF5555" + green: "#5CFF87" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#FF79C6" + cyan: "#64FFDA" + white: "#E9ECEF" + brightBlack: "#8695A8" + brightRed: "#FF8A8A" + brightGreen: "#98FFB3" + brightYellow: "#FFE08A" + brightBlue: "#9DACFF" + brightMagenta: "#FFA6FF" + brightCyan: "#A1FFF7" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 264 + pair: null + contrast: + fg: 91.8 + black: 0 + red: 41 + green: 85.8 + yellow: 76.5 + blue: 53.5 + magenta: 52.1 + cyan: 88.7 + white: 91.8 + brightBlack: 40.9 + brightRed: 54.3 + brightGreen: 90.3 + brightYellow: 86.1 + brightBlue: 56.7 + brightMagenta: 68.3 + brightCyan: 93.7 + brightWhite: 104.4 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--copper-dark.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--copper-dark.yaml new file mode 100644 index 00000000..c0f20be6 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--copper-dark.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Copper Dark)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#1A1412" + fg: "#E8D5C4" + black: "#1A1412" + red: "#E65C4F" + green: "#7FAE6D" + yellow: "#F0A855" + blue: "#6B9AC4" + magenta: "#D4743F" + cyan: "#6B9AC4" + white: "#C4AA96" + brightBlack: "#3D2F27" + brightRed: "#E65C4F" + brightGreen: "#7FAE6D" + brightYellow: "#F0A855" + brightBlue: "#FF7034" + brightMagenta: "#E89B5F" + brightCyan: "#6B9AC4" + brightWhite: "#E8D5C4" +meta: + mode: "dark" + accent: "orange" + hue: 39 + pair: null + contrast: + fg: 82.1 + black: 0 + red: 39.1 + green: 50.9 + yellow: 62.7 + blue: 44.6 + magenta: 40.9 + cyan: 44.6 + white: 58 + brightBlack: 0 + brightRed: 39.1 + brightGreen: 50.9 + brightYellow: 62.7 + brightBlue: 48.6 + brightMagenta: 56.9 + brightCyan: 44.6 + brightWhite: 82.1 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--cyberpink-137-theme.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--cyberpink-137-theme.yaml new file mode 100644 index 00000000..a4d41c79 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--cyberpink-137-theme.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Cyberpink-137© Theme)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#07001A" + fg: "#FF007B" + black: "#6F6F6F" + red: "#5F61EC" + green: "#F0005A" + yellow: "#FF0060" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#1152CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#614CF1" + brightGreen: "#86001F" + brightYellow: "#FF24A9" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#0F4FE8" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: 293 + pair: null + contrast: + fg: 39 + black: 26.8 + red: 28.9 + green: 34.5 + yellow: 38.3 + blue: 28.3 + magenta: 30.7 + cyan: 19.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 24.9 + brightGreen: 10.6 + brightYellow: 41.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 21.2 + brightWhite: 90.9 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--deep-space-dark.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--deep-space-dark.yaml new file mode 100644 index 00000000..3f155560 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--deep-space-dark.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Deep Space Dark)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#0A0019" + fg: "#FFFFFF" + black: "#474747" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 301 + pair: null + contrast: + fg: 107.8 + black: 10.8 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--emerald-matrix.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--emerald-matrix.yaml new file mode 100644 index 00000000..fab68e6e --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--emerald-matrix.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Emerald Matrix)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#001A1A" + fg: "#00F0A0" + black: "#001A1A" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#00F0A0" + brightBlack: "#004D3D" + brightRed: "#FF7A85" + brightGreen: "#D3F595" + brightYellow: "#FFD47F" + brightBlue: "#9DC3FF" + brightMagenta: "#D9A3F5" + brightCyan: "#9CE5FF" + brightWhite: "#00F99E" +meta: + mode: "dark" + accent: "red" + hue: 195 + pair: null + contrast: + fg: 79.4 + black: 0 + red: 43.6 + green: 84.1 + yellow: 78.9 + blue: 55.9 + magenta: 53.7 + cyan: 78.2 + white: 79.4 + brightBlack: 9 + brightRed: 52.2 + brightGreen: 92.4 + brightYellow: 83 + brightBlue: 68.3 + brightMagenta: 62.7 + brightCyan: 83.4 + brightWhite: 84.1 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--espresso-dark-theme.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--espresso-dark-theme.yaml new file mode 100644 index 00000000..3d7a86b9 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--espresso-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Espresso Dark Theme)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#11111B" + fg: "#CDD6F4" + black: "#11111B" + red: "#CE6565" + green: "#2E9E95" + yellow: "#A6E3A1" + blue: "#89B4FA" + magenta: "#BD8DF3" + cyan: "#47BAAE" + white: "#FAF6FE" + brightBlack: "#313244" + brightRed: "#CE6565" + brightGreen: "#2E9E95" + brightYellow: "#F7D790" + brightBlue: "#89B4FA" + brightMagenta: "#BD8DF3" + brightCyan: "#74D4C8" + brightWhite: "#FAF6FE" +meta: + mode: "dark" + accent: "magenta" + hue: 284 + pair: null + contrast: + fg: 81.5 + black: 0 + red: 37 + green: 41.6 + yellow: 79.8 + blue: 60.5 + magenta: 51.8 + cyan: 55.3 + white: 102.3 + brightBlack: 0 + brightRed: 37 + brightGreen: 41.6 + brightYellow: 83.9 + brightBlue: 60.5 + brightMagenta: 51.8 + brightCyan: 70.3 + brightWhite: 102.3 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--espresso-dark.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--espresso-dark.yaml new file mode 100644 index 00000000..b78a160a --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--espresso-dark.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Espresso Dark)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#1E1714" + fg: "#D4C4B0" + black: "#2A211A" + red: "#E88878" + green: "#A4C484" + yellow: "#E8C878" + blue: "#88B4D4" + magenta: "#C4A4DD" + cyan: "#8AC4C4" + white: "#D4C4B0" + brightBlack: "#6A5A48" + brightRed: "#FFAA98" + brightGreen: "#C4E4A4" + brightYellow: "#FFE898" + brightBlue: "#A8D4F4" + brightMagenta: "#E4C4FF" + brightCyan: "#AAE4E4" + brightWhite: "#FAF4E8" +meta: + mode: "dark" + accent: "orange" + hue: 44 + pair: null + contrast: + fg: 71.1 + black: 0 + red: 51.1 + green: 64 + yellow: 74.1 + blue: 57.6 + magenta: 58.5 + cyan: 63.8 + white: 71.1 + brightBlack: 18 + brightRed: 67.2 + brightGreen: 82.9 + brightYellow: 92.2 + brightBlue: 75.9 + brightMagenta: 77 + brightCyan: 82.6 + brightWhite: 99.8 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--evernex.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--evernex.yaml new file mode 100644 index 00000000..9ba180dc --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--evernex.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (EverNex)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#0A1612" + fg: "#D4F4DD" + black: "#0A1612" + red: "#FF5566" + green: "#00FF88" + yellow: "#FFAA33" + blue: "#66AAFF" + magenta: "#DD88FF" + cyan: "#44FFDD" + white: "#D4F4DD" + brightBlack: "#4D8866" + brightRed: "#FF8899" + brightGreen: "#4DFFAA" + brightYellow: "#FFCC66" + brightBlue: "#99CCFF" + brightMagenta: "#EEBBFF" + brightCyan: "#88FFEE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 171 + pair: null + contrast: + fg: 94.8 + black: 0 + red: 44 + green: 87 + yellow: 65.9 + blue: 54.3 + magenta: 55.8 + cyan: 90.5 + white: 94.8 + brightBlack: 32.3 + brightRed: 56.9 + brightGreen: 88.9 + brightYellow: 79.5 + brightBlue: 72.1 + brightMagenta: 75.5 + brightCyan: 94.2 + brightWhite: 107.2 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nebula-pro-dark.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nebula-pro-dark.yaml new file mode 100644 index 00000000..2d259bf8 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nebula-pro-dark.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Nebula Pro Dark)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#1E1F29" + fg: "#F8F8F2" + black: "#1E1F29" + red: "#FF6188" + green: "#A9DC76" + yellow: "#FFD866" + blue: "#78DCE8" + magenta: "#AB9DF2" + cyan: "#78DCE8" + white: "#F8F8F2" + brightBlack: "#5A5D6E" + brightRed: "#FF6188" + brightGreen: "#A9DC76" + brightYellow: "#FFD866" + brightBlue: "#78DCE8" + brightMagenta: "#AB9DF2" + brightCyan: "#A9DC76" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "red" + hue: 280 + pair: null + contrast: + fg: 100.9 + black: 0 + red: 45.7 + green: 74.2 + yellow: 83.3 + blue: 74.4 + magenta: 53.2 + cyan: 74.4 + white: 100.9 + brightBlack: 17.5 + brightRed: 45.7 + brightGreen: 74.2 + brightYellow: 83.3 + brightBlue: 74.4 + brightMagenta: 53.2 + brightCyan: 74.2 + brightWhite: 100.9 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--neo-hacker-soft-premium.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--neo-hacker-soft-premium.yaml new file mode 100644 index 00000000..00989b3a --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--neo-hacker-soft-premium.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Neo Hacker Soft - Premium)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#0A0C0A" + fg: "#00D463" + black: "#0A0C0A" + red: "#FF5370" + green: "#00FF66" + yellow: "#FFEE58" + blue: "#40C4FF" + magenta: "#FF80FF" + cyan: "#1AFF8C" + white: "#00D463" + brightBlack: "#2D5A3D" + brightRed: "#FF6B8A" + brightGreen: "#00FF88" + brightYellow: "#FFF176" + brightBlue: "#64B5F6" + brightMagenta: "#FF99FF" + brightCyan: "#4DFFB3" + brightWhite: "#33FFAA" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 64.7 + black: 0 + red: 44.4 + green: 86.9 + yellow: 94.8 + blue: 64.1 + magenta: 60.4 + cyan: 87.7 + white: 64.7 + brightBlack: 14.5 + brightRed: 49.7 + brightGreen: 87.6 + brightYellow: 96.6 + brightBlue: 58.6 + brightMagenta: 67.4 + brightCyan: 89.7 + brightWhite: 88.8 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--neon-dream-code.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--neon-dream-code.yaml new file mode 100644 index 00000000..dc506fb9 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--neon-dream-code.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Neon Dream Code)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#0A0E27" + fg: "#E4F0FB" + black: "#0A0E27" + red: "#FF2A6D" + green: "#05FFA1" + yellow: "#FFE600" + blue: "#5C9FFF" + magenta: "#BD5EFF" + cyan: "#00D4E8" + white: "#B8C5D6" + brightBlack: "#3D4A7A" + brightRed: "#FF2A6D" + brightGreen: "#05FFA1" + brightYellow: "#FFFB00" + brightBlue: "#7AB8FF" + brightMagenta: "#D896FF" + brightCyan: "#00F0FF" + brightWhite: "#E4F0FB" +meta: + mode: "dark" + accent: "red" + hue: 273 + pair: null + contrast: + fg: 96.5 + black: 0 + red: 39.4 + green: 87.9 + yellow: 90.4 + blue: 49.7 + magenta: 40.5 + cyan: 69.1 + white: 70.2 + brightBlack: 12.4 + brightRed: 39.4 + brightGreen: 87.9 + brightYellow: 100.2 + brightBlue: 61.4 + brightMagenta: 59.5 + brightCyan: 84 + brightWhite: 96.5 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nimbus-mint-light.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nimbus-mint-light.yaml new file mode 100644 index 00000000..b527dee3 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nimbus-mint-light.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Nimbus Mint Light)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#F5F8FA" + fg: "#2D3748" + black: "#2D3748" + red: "#DC2626" + green: "#16A349" + yellow: "#B45309" + blue: "#0072C6" + magenta: "#A31DB1" + cyan: "#00A3A3" + white: "#E5E9F0" + brightBlack: "#718096" + brightRed: "#E03E3E" + brightGreen: "#26A769" + brightYellow: "#D97706" + brightBlue: "#1A85FF" + brightMagenta: "#C838C6" + brightCyan: "#0F9F9F" + brightWhite: "#F5F8FA" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 93 + black: 93 + red: 67.1 + green: 55.3 + yellow: 69.6 + blue: 69.2 + magenta: 75 + cyan: 52.9 + white: 0 + brightBlack: 63 + brightRed: 63.6 + brightGreen: 52.8 + brightYellow: 54 + brightBlue: 58.4 + brightMagenta: 64.4 + brightCyan: 54.7 + brightWhite: 0 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nothing-os-dark.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nothing-os-dark.yaml new file mode 100644 index 00000000..c9ef1857 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nothing-os-dark.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Nothing OS Dark)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#000000" + red: "#D71921" + green: "#50FA7B" + yellow: "#FFAA00" + blue: "#666666" + magenta: "#D71921" + cyan: "#AAAAAA" + white: "#CCCCCC" + brightBlack: "#333333" + brightRed: "#FF2D35" + brightGreen: "#50FA7B" + brightYellow: "#FFAA00" + brightBlue: "#888888" + brightMagenta: "#D71921" + brightCyan: "#CCCCCC" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107.9 + black: 0 + red: 28.2 + green: 85.9 + yellow: 66.5 + blue: 23 + magenta: 28.2 + cyan: 56.2 + white: 75.7 + brightBlack: 0 + brightRed: 39.2 + brightGreen: 85.9 + brightYellow: 66.5 + brightBlue: 38.6 + brightMagenta: 28.2 + brightCyan: 75.7 + brightWhite: 107.9 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nothing-os-gray.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nothing-os-gray.yaml new file mode 100644 index 00000000..bdddafc3 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nothing-os-gray.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Nothing OS Gray)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#14151F" + fg: "#FFFFFF" + black: "#14151F" + red: "#D71921" + green: "#50FA7B" + yellow: "#FFAA00" + blue: "#6B6E82" + magenta: "#D71921" + cyan: "#A0A3B5" + white: "#C5C8D9" + brightBlack: "#4D4F62" + brightRed: "#FF2D35" + brightGreen: "#50FA7B" + brightYellow: "#FFBB33" + brightBlue: "#8A8D9E" + brightMagenta: "#D71921" + brightCyan: "#C5C8D9" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 280 + pair: null + contrast: + fg: 107 + black: 0 + red: 27.3 + green: 85 + yellow: 65.6 + blue: 26.1 + magenta: 27.3 + cyan: 52 + white: 72.8 + brightBlack: 13.4 + brightRed: 38.3 + brightGreen: 85 + brightYellow: 72 + brightBlue: 40.5 + brightMagenta: 27.3 + brightCyan: 72.8 + brightWhite: 107 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nutty-dark-theme.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nutty-dark-theme.yaml new file mode 100644 index 00000000..77100064 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nutty-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Nutty Dark Theme)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#1A1410" + fg: "#E8DDD0" + black: "#2A1F16" + red: "#E6543A" + green: "#7A9A2F" + yellow: "#FF8C42" + blue: "#4D8FA3" + magenta: "#B57AB8" + cyan: "#5FABC5" + white: "#D0CAB8" + brightBlack: "#5A4D3F" + brightRed: "#FF6F54" + brightGreen: "#8FB544" + brightYellow: "#FFA459" + brightBlue: "#6AADC5" + brightMagenta: "#D099D4" + brightCyan: "#7DC5DD" + brightWhite: "#FFFEF9" +meta: + mode: "dark" + accent: "orange" + hue: 56 + pair: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Nutty Light Theme)" + contrast: + fg: 86.1 + black: 0 + red: 37.4 + green: 41.4 + yellow: 56.1 + blue: 37 + magenta: 41.1 + cyan: 50.7 + white: 73.7 + brightBlack: 13 + brightRed: 48.7 + brightGreen: 54.6 + brightYellow: 64.1 + brightBlue: 52.1 + brightMagenta: 56.3 + brightCyan: 64.9 + brightWhite: 106.3 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nutty-light-theme.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nutty-light-theme.yaml new file mode 100644 index 00000000..29b12ae0 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--nutty-light-theme.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Nutty Light Theme)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#FFFEF9" + fg: "#2A1F16" + black: "#2A1F16" + red: "#C4361A" + green: "#4A6414" + yellow: "#CC6600" + blue: "#2D5F75" + magenta: "#7A3F7D" + cyan: "#2D5F75" + white: "#EBE8DF" + brightBlack: "#5A4D3F" + brightRed: "#D65B3E" + brightGreen: "#5A7A1A" + brightYellow: "#E67D22" + brightBlue: "#3D7B91" + brightMagenta: "#955A99" + brightCyan: "#4D8FA3" + brightWhite: "#FFFEF9" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Nutty Dark Theme)" + contrast: + fg: 102.3 + black: 102.3 + red: 74.9 + green: 82.3 + yellow: 64.6 + blue: 83.3 + magenta: 84.7 + cyan: 83.3 + white: 10.4 + brightBlack: 87.6 + brightRed: 64.8 + brightGreen: 73.5 + brightYellow: 53.7 + brightBlue: 72 + brightMagenta: 73.7 + brightCyan: 63.1 + brightWhite: 0 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--omnitrix-code.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--omnitrix-code.yaml new file mode 100644 index 00000000..2e7467a8 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--omnitrix-code.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Omnitrix Code)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#0A1612" + fg: "#E0F2E9" + black: "#0A1612" + red: "#FF3333" + green: "#00FF41" + yellow: "#FFCC00" + blue: "#4DA6FF" + magenta: "#FF00FF" + cyan: "#00E6E6" + white: "#A8D4BB" + brightBlack: "#2D6650" + brightRed: "#FF4D4D" + brightGreen: "#00FF41" + brightYellow: "#FFFF00" + brightBlue: "#66B3FF" + brightMagenta: "#FF66FF" + brightCyan: "#00FFFF" + brightWhite: "#E0F2E9" +meta: + mode: "dark" + accent: "pink" + hue: 171 + pair: null + contrast: + fg: 95.8 + black: 0 + red: 38.9 + green: 86 + yellow: 78.9 + blue: 51.5 + magenta: 45.5 + cyan: 77.5 + white: 73.7 + brightBlack: 18.3 + brightRed: 42.3 + brightGreen: 86 + brightYellow: 102 + brightBlue: 57.9 + brightMagenta: 54.1 + brightCyan: 91.4 + brightWhite: 95.8 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--rose-paradise.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--rose-paradise.yaml new file mode 100644 index 00000000..0b0b2b87 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--rose-paradise.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Rose Paradise)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#FFF5F7" + fg: "#2D1B2E" + black: "#4A2A3D" + red: "#D81B60" + green: "#4CAF50" + yellow: "#FFA726" + blue: "#4A90E2" + magenta: "#AB47BC" + cyan: "#26C6DA" + white: "#4A2A3D" + brightBlack: "#8D6678" + brightRed: "#E91E63" + brightGreen: "#66BB6A" + brightYellow: "#FFB74D" + brightBlue: "#64B5F6" + brightMagenta: "#BA68C8" + brightCyan: "#4DD0E1" + brightWhite: "#2D1B2E" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 98.4 + black: 93.5 + red: 67.6 + green: 48.7 + yellow: 32.4 + blue: 55.4 + magenta: 68.1 + cyan: 35.2 + white: 93.5 + brightBlack: 69.2 + brightRed: 63.4 + brightGreen: 41.8 + brightYellow: 26.5 + brightBlue: 38.8 + brightMagenta: 58.2 + brightCyan: 29.6 + brightWhite: 98.4 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--solstice-estival.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--solstice-estival.yaml new file mode 100644 index 00000000..960c26af --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--solstice-estival.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Solstice Estival)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#F0EEE7" + fg: "#1B3C3C" + black: "#213535" + red: "#9E5A5A" + green: "#6B7D5E" + yellow: "#8B7355" + blue: "#4A6670" + magenta: "#7A6B7A" + cyan: "#4A7A75" + white: "#E8E6DF" + brightBlack: "#6B6B65" + brightRed: "#B86B6B" + brightGreen: "#7A8E6D" + brightYellow: "#A08560" + brightBlue: "#5A7A85" + brightMagenta: "#8E7D8E" + brightCyan: "#5A8E88" + brightWhite: "#F5F3EC" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 87.1 + black: 88.9 + red: 65.2 + green: 60.7 + yellow: 61 + blue: 70.4 + magenta: 64.4 + cyan: 63.4 + white: 0 + brightBlack: 66.6 + brightRed: 56.3 + brightGreen: 52.9 + brightYellow: 52.3 + brightBlue: 61.8 + brightMagenta: 55.7 + brightCyan: 54.5 + brightWhite: 0 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--solstice-hibernal.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--solstice-hibernal.yaml new file mode 100644 index 00000000..f7071bd4 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets--solstice-hibernal.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Solstice Hibernal)" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#191D1B" + fg: "#C4AAA0" + black: "#191D1B" + red: "#C97E7B" + green: "#8FA876" + yellow: "#D4A877" + blue: "#7B9EBF" + magenta: "#A890B0" + cyan: "#7DBBB5" + white: "#C4AAA0" + brightBlack: "#483E3C" + brightRed: "#D99490" + brightGreen: "#A3BC8C" + brightYellow: "#E4BC90" + brightBlue: "#95B4CF" + brightMagenta: "#BCA4C4" + brightCyan: "#95CFC9" + brightWhite: "#D9C4BA" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 57.6 + black: 0 + red: 42.3 + green: 49.3 + yellow: 58 + blue: 46.3 + magenta: 45.1 + cyan: 57.9 + white: 57.6 + brightBlack: 0 + brightRed: 52.4 + brightGreen: 60.2 + brightYellow: 68.7 + brightBlue: 58.1 + brightMagenta: 55.7 + brightCyan: 69.5 + brightWhite: 71.7 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets-ghibli-forest-dark.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets-ghibli-forest-dark.yaml new file mode 100644 index 00000000..bec7c50a --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets-ghibli-forest-dark.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Ghibli Forest (Dark))" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#1E2A24" + fg: "#E8DFD0" + black: "#1E2A24" + red: "#C96B6B" + green: "#8FB89F" + yellow: "#D4A84B" + blue: "#6B9AC4" + magenta: "#B88FB8" + cyan: "#6BC4B8" + white: "#E8DFD0" + brightBlack: "#5C7A68" + brightRed: "#E08A8A" + brightGreen: "#A8D4B8" + brightYellow: "#E8C46B" + brightBlue: "#8AB8E0" + brightMagenta: "#D4A8D4" + brightCyan: "#8AE0D4" + brightWhite: "#F4EBE0" +meta: + mode: "dark" + accent: "yellow" + hue: 163 + pair: null + contrast: + fg: 84.5 + black: 0 + red: 34.9 + green: 55.4 + yellow: 55.4 + blue: 42.1 + magenta: 45.5 + cyan: 59 + white: 84.5 + brightBlack: 25.5 + brightRed: 48.5 + brightGreen: 71 + brightYellow: 70 + brightBlue: 57.9 + brightMagenta: 59.6 + brightCyan: 75.2 + brightWhite: 92.3 diff --git a/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets-goku-code-dragon-ball-z-power-eye-safe.yaml b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets-goku-code-dragon-ball-z-power-eye-safe.yaml new file mode 100644 index 00000000..7acf9ee4 --- /dev/null +++ b/themes/ultimate-vscode-themes-icons-pack-50-professional-themes-with-11-icon-sets-goku-code-dragon-ball-z-power-eye-safe.yaml @@ -0,0 +1,53 @@ +name: "Ultimate VSCode Themes & Icons Pack - 50+ Professional Themes with 11 Icon Sets (Goku Code - Dragon Ball Z Power (Eye-Safe))" +source: + marketplace_id: "SecureDev01.vscode-multi-themes" + version: "0.0.51" + installs: 1852 + rating: 5 + ratings: 2 + author: "SecureDev" + repo: "https://github.com/codewithevilxd/vscode-multi-themes" + url: "https://marketplace.visualstudio.com/items?itemName=SecureDev01.vscode-multi-themes" + formats: null +colors: + bg: "#0F0E1A" + fg: "#E8D5B7" + black: "#0F0E1A" + red: "#F44336" + green: "#4CAF50" + yellow: "#FFEB3B" + blue: "#4FC3F7" + magenta: "#9C27B0" + cyan: "#00BCD4" + white: "#E8D5B7" + brightBlack: "#6B5B73" + brightRed: "#FF5722" + brightGreen: "#8BC34A" + brightYellow: "#FFC107" + brightBlue: "#03A9F4" + brightMagenta: "#E91E63" + brightCyan: "#26C6DA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 287 + pair: null + contrast: + fg: 82.1 + black: 0 + red: 38.3 + green: 48.2 + yellow: 93 + blue: 63.5 + magenta: 21.3 + cyan: 57.1 + white: 82.1 + brightBlack: 20.4 + brightRed: 43.8 + brightGreen: 60.9 + brightYellow: 74.7 + brightBlue: 51 + brightMagenta: 33.2 + brightCyan: 62.1 + brightWhite: 107.5 diff --git a/themes/ultra-instinct-theme--ultra-instinct-mastered.yaml b/themes/ultra-instinct-theme--ultra-instinct-mastered.yaml new file mode 100644 index 00000000..4e2a2e4c --- /dev/null +++ b/themes/ultra-instinct-theme--ultra-instinct-mastered.yaml @@ -0,0 +1,53 @@ +name: "Ultra Instinct Theme (Ultra Instinct Mastered)" +source: + marketplace_id: "JuanLias.ultra-instinct-theme" + version: "0.1.4" + installs: 75 + rating: 5 + ratings: 2 + author: "Juan Lias" + repo: "https://github.com/juanlias/ultra-instinct-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JuanLias.ultra-instinct-theme" + formats: null +colors: + bg: "#141118" + fg: "#B0B5C0" + black: "#141118" + red: "#FF3366" + green: "#00FF99" + yellow: "#FFCB6B" + blue: "#33C7FF" + magenta: "#7B42FF" + cyan: "#00EAFF" + white: "#DCE0E5" + brightBlack: "#606080" + brightRed: "#FF6688" + brightGreen: "#66FFAA" + brightYellow: "#FFE082" + brightBlue: "#80D8FF" + brightMagenta: "#D0A0FF" + brightCyan: "#80F0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 304 + pair: null + contrast: + fg: 61.6 + black: 0 + red: 39.8 + green: 87.6 + yellow: 79.3 + blue: 64.8 + magenta: 26.5 + cyan: 80.9 + white: 87 + brightBlack: 21.1 + brightRed: 48.2 + brightGreen: 89.9 + brightYellow: 88.7 + brightBlue: 75.7 + brightMagenta: 61.4 + brightCyan: 87.2 + brightWhite: 107.3 diff --git a/themes/ultra-instinct-theme--ultra-instinct-sign.yaml b/themes/ultra-instinct-theme--ultra-instinct-sign.yaml new file mode 100644 index 00000000..314cad2c --- /dev/null +++ b/themes/ultra-instinct-theme--ultra-instinct-sign.yaml @@ -0,0 +1,53 @@ +name: "Ultra Instinct Theme (Ultra Instinct Sign)" +source: + marketplace_id: "JuanLias.ultra-instinct-theme" + version: "0.1.4" + installs: 75 + rating: 5 + ratings: 2 + author: "Juan Lias" + repo: "https://github.com/juanlias/ultra-instinct-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JuanLias.ultra-instinct-theme" + formats: null +colors: + bg: "#0D1017" + fg: "#B0B5C0" + black: "#0D1017" + red: "#FF3366" + green: "#00FF99" + yellow: "#FFCB6B" + blue: "#3D5AFE" + magenta: "#AA00FF" + cyan: "#00E5FF" + white: "#DCE0E5" + brightBlack: "#606080" + brightRed: "#FF6688" + brightGreen: "#66FFAA" + brightYellow: "#FFE082" + brightBlue: "#82B1FF" + brightMagenta: "#EA80FC" + brightCyan: "#80F0FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 267 + pair: null + contrast: + fg: 61.8 + black: 0 + red: 40 + green: 87.7 + yellow: 79.5 + blue: 26.7 + magenta: 29 + cyan: 78.6 + white: 87.1 + brightBlack: 21.3 + brightRed: 48.4 + brightGreen: 90.1 + brightYellow: 88.9 + brightBlue: 59.2 + brightMagenta: 56 + brightCyan: 87.3 + brightWhite: 107.4 diff --git a/themes/ultra-instinct-theme-ultra-instinct-mastered-light.yaml b/themes/ultra-instinct-theme-ultra-instinct-mastered-light.yaml new file mode 100644 index 00000000..d365fd02 --- /dev/null +++ b/themes/ultra-instinct-theme-ultra-instinct-mastered-light.yaml @@ -0,0 +1,53 @@ +name: "Ultra Instinct Theme (Ultra Instinct Mastered (Light))" +source: + marketplace_id: "JuanLias.ultra-instinct-theme" + version: "0.1.4" + installs: 75 + rating: 5 + ratings: 2 + author: "Juan Lias" + repo: "https://github.com/juanlias/ultra-instinct-theme" + url: "https://marketplace.visualstudio.com/items?itemName=JuanLias.ultra-instinct-theme" + formats: null +colors: + bg: "#F8FAFC" + fg: "#334155" + black: "#000000" + red: "#EF4444" + green: "#10B981" + yellow: "#F59E0B" + blue: "#3B82F6" + magenta: "#9333EA" + cyan: "#06B6D4" + white: "#64748B" + brightBlack: "#334155" + brightRed: "#F87171" + brightGreen: "#34D399" + brightYellow: "#FBBF24" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#94A3B8" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 90.9 + black: 102.9 + red: 60.7 + green: 45.9 + yellow: 38.6 + blue: 60.7 + magenta: 72.4 + cyan: 44 + white: 69.9 + brightBlack: 90.9 + brightRed: 49.6 + brightGreen: 33.1 + brightYellow: 26 + brightBlue: 46.4 + brightMagenta: 48.1 + brightCyan: 29.9 + brightWhite: 47 diff --git a/themes/underdark.yaml b/themes/underdark.yaml new file mode 100644 index 00000000..54a51de1 --- /dev/null +++ b/themes/underdark.yaml @@ -0,0 +1,53 @@ +name: "Underdark" +source: + marketplace_id: "RolandoTaipe.Underdark" + version: "0.1.15" + installs: 7905 + rating: 5 + ratings: 1 + author: "Rolando Taipe" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=RolandoTaipe.Underdark" + formats: null +colors: + bg: "#000000" + fg: "#AFC2FF" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 70.7 + black: 7.5 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/unicode-purple-dark-theme.yaml b/themes/unicode-purple-dark-theme.yaml new file mode 100644 index 00000000..30264c93 --- /dev/null +++ b/themes/unicode-purple-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Unicode Purple Dark - Theme" +source: + marketplace_id: "LeehXD.unicode-purple-dark-theme" + version: "0.0.4" + installs: 961 + rating: 5 + ratings: 1 + author: "leehxd" + repo: "https://github.com/LeehXD/unicode-purple-dark" + url: "https://marketplace.visualstudio.com/items?itemName=LeehXD.unicode-purple-dark-theme" + formats: null +colors: + bg: "#000000" + fg: "#F7F7F7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 102.6 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/unicorn-dark-theme.yaml b/themes/unicorn-dark-theme.yaml new file mode 100644 index 00000000..60108d28 --- /dev/null +++ b/themes/unicorn-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Unicorn Dark Theme" +source: + marketplace_id: "MarfahTechnologies.unicorn-dark" + version: "1.0.0" + installs: 217 + rating: 5 + ratings: 2 + author: "Marfah Technologies" + repo: "https://github.com/FahadQasim283/unicorn-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MarfahTechnologies.unicorn-dark" + formats: null +colors: + bg: "#131212" + fg: "#D4D4D4" + black: "#E8ACAC" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E4B23D" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E6D577" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79.9 + black: 65.2 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.2 + cyan: 48 + white: 64.4 + brightBlack: 22.4 + brightRed: 39 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 79.9 diff --git a/themes/universe-terkoshi.yaml b/themes/universe-terkoshi.yaml new file mode 100644 index 00000000..416b44f2 --- /dev/null +++ b/themes/universe-terkoshi.yaml @@ -0,0 +1,53 @@ +name: "Universe-Terkoshi" +source: + marketplace_id: "terkoshi.UN1VERSE" + version: "1.0.0" + installs: 24 + rating: 0 + ratings: 0 + author: "Terkoshi646" + repo: "https://github.com/Terkoshi" + url: "https://marketplace.visualstudio.com/items?itemName=terkoshi.UN1VERSE" + formats: null +colors: + bg: "#1D010F" + fg: "#62C07A" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 351 + pair: null + contrast: + fg: 57.6 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.2 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/unknown.yaml b/themes/unknown.yaml new file mode 100644 index 00000000..44f10a34 --- /dev/null +++ b/themes/unknown.yaml @@ -0,0 +1,53 @@ +name: "Unknown" +source: + marketplace_id: "anaksholeh.unknown" + version: "0.0.5" + installs: 321 + rating: 0 + ratings: 0 + author: "anak sholeh" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=anaksholeh.unknown" + formats: null +colors: + bg: "#373F4B" + fg: "#BFC7D5" + black: "#676E95" + red: "#FF5572" + green: "#A9C77D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#FF5572" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 258 + pair: null + contrast: + fg: 63.1 + black: 18.2 + red: 35.7 + green: 57.6 + yellow: 70.7 + blue: 47.7 + magenta: 45.5 + cyan: 70 + white: 98.6 + brightBlack: 18.2 + brightRed: 35.7 + brightGreen: 75.9 + brightYellow: 70.7 + brightBlue: 47.7 + brightMagenta: 45.5 + brightCyan: 70 + brightWhite: 98.6 diff --git a/themes/unlighted.yaml b/themes/unlighted.yaml new file mode 100644 index 00000000..666a54c6 --- /dev/null +++ b/themes/unlighted.yaml @@ -0,0 +1,53 @@ +name: "unlighted" +source: + marketplace_id: "essequiel.unlighted" + version: "1.2.0" + installs: 40 + rating: 0 + ratings: 0 + author: "essequiel" + repo: "https://github.com/essequie1/unlighted" + url: "https://marketplace.visualstudio.com/items?itemName=essequiel.unlighted" + formats: null +colors: + bg: "#0A0A0A" + fg: "#A7A7A7" + black: "#3D3D3D" + red: "#FF3333" + green: "#00FF64" + yellow: "#FFE779" + blue: "#1584FF" + magenta: "#FF02FF" + cyan: "#0AE1FF" + white: "#A3A3A3" + brightBlack: "#666666" + brightRed: "#FF6767" + brightGreen: "#97FFB1" + brightYellow: "#FFCE00" + brightBlue: "#95CCFF" + brightMagenta: "#FF9AFF" + brightCyan: "#8EF4FF" + brightWhite: "#C9C9C9" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 54.5 + black: 7.3 + red: 39.5 + green: 87 + yellow: 92.2 + blue: 38.3 + magenta: 46.1 + cyan: 77 + white: 52.3 + brightBlack: 22.9 + brightRed: 48 + brightGreen: 93.4 + brightYellow: 80.3 + brightBlue: 72.4 + brightMagenta: 67.7 + brightCyan: 90.5 + brightWhite: 73.7 diff --git a/themes/uno-due-tre.yaml b/themes/uno-due-tre.yaml new file mode 100644 index 00000000..11780b62 --- /dev/null +++ b/themes/uno-due-tre.yaml @@ -0,0 +1,53 @@ +name: "Uno Due Tre" +source: + marketplace_id: "wavebeem.theme-unoduetre" + version: "5.11.1" + installs: 4291 + rating: 5 + ratings: 5 + author: "Sage Fennel" + repo: "https://github.com/wavebeem/vscode-theme-unoduetre" + url: "https://marketplace.visualstudio.com/items?itemName=wavebeem.theme-unoduetre" + formats: null +colors: + bg: "#1B322A" + fg: "#75F0C7" + black: "#333333" + red: "#DE8778" + green: "#6DE395" + yellow: "#DFCA9B" + blue: "#9CA3E8" + magenta: "#DFA5DB" + cyan: "#66EAE1" + white: "#DDF3EA" + brightBlack: "#333333" + brightRed: "#DE8778" + brightGreen: "#6DE395" + brightYellow: "#DFCA9B" + brightBlue: "#9CA3E8" + brightMagenta: "#DFA5DB" + brightCyan: "#66EAE1" + brightWhite: "#DDF3EA" +meta: + mode: "dark" + accent: "teal" + hue: 170 + pair: null + contrast: + fg: 79.9 + black: 0 + red: 45.5 + green: 71.3 + yellow: 71 + blue: 50.5 + magenta: 59.3 + cyan: 77.3 + white: 92.1 + brightBlack: 0 + brightRed: 45.5 + brightGreen: 71.3 + brightYellow: 71 + brightBlue: 50.5 + brightMagenta: 59.3 + brightCyan: 77.3 + brightWhite: 92.1 diff --git a/themes/update.yaml b/themes/update.yaml new file mode 100644 index 00000000..7a384f34 --- /dev/null +++ b/themes/update.yaml @@ -0,0 +1,53 @@ +name: "Update" +source: + marketplace_id: "ZColorTheme.ZColorThemeV2" + version: "0.0.1" + installs: 1804 + rating: 0 + ratings: 0 + author: "ZColorTheme" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ZColorTheme.ZColorThemeV2" + formats: null +colors: + bg: "#080E21" + fg: "#00CFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#238BFF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 268 + pair: null + contrast: + fg: 68.2 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 40.6 + magenta: 30.3 + cyan: 48.1 + white: 107.5 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/uscss-nostromo-alien-terminal-theme--alien-terminal-nostromo-amber.yaml b/themes/uscss-nostromo-alien-terminal-theme--alien-terminal-nostromo-amber.yaml new file mode 100644 index 00000000..920858d3 --- /dev/null +++ b/themes/uscss-nostromo-alien-terminal-theme--alien-terminal-nostromo-amber.yaml @@ -0,0 +1,53 @@ +name: "USCSS Nostromo - Alien Terminal Theme (Alien Terminal Nostromo Amber)" +source: + marketplace_id: "ericson-willians.uscss-nostromo-theme" + version: "1.0.0" + installs: 602 + rating: 0 + ratings: 0 + author: "Ericson Willians Rocha Pires" + repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" + formats: null +colors: + bg: "#000000" + fg: "#FFAA00" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFEE00" + blue: "#FFAA00" + magenta: "#FF66FF" + cyan: "#FFAA66" + white: "#CCCCCC" + brightBlack: "#DD9900" + brightRed: "#FF3333" + brightGreen: "#66FF66" + brightYellow: "#FFFF00" + brightBlue: "#FFEE00" + brightMagenta: "#FF99FF" + brightCyan: "#FFDD99" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 66.5 + black: 0 + red: 37.5 + green: 86.5 + yellow: 94.6 + blue: 66.5 + magenta: 54.8 + cyan: 67.2 + white: 75.7 + brightBlack: 54.5 + brightRed: 39.6 + brightGreen: 89 + brightYellow: 102.7 + brightBlue: 94.6 + brightMagenta: 67.6 + brightCyan: 88.6 + brightWhite: 107.9 diff --git a/themes/uscss-nostromo-alien-terminal-theme--alien-terminal-nostromo-green.yaml b/themes/uscss-nostromo-alien-terminal-theme--alien-terminal-nostromo-green.yaml new file mode 100644 index 00000000..ccf028c3 --- /dev/null +++ b/themes/uscss-nostromo-alien-terminal-theme--alien-terminal-nostromo-green.yaml @@ -0,0 +1,53 @@ +name: "USCSS Nostromo - Alien Terminal Theme (Alien Terminal Nostromo Green)" +source: + marketplace_id: "ericson-willians.uscss-nostromo-theme" + version: "1.0.0" + installs: 602 + rating: 0 + ratings: 0 + author: "Ericson Willians Rocha Pires" + repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" + formats: null +colors: + bg: "#000000" + fg: "#00FF00" + black: "#000000" + red: "#FF3333" + green: "#00FF00" + yellow: "#FFCC00" + blue: "#00DD00" + magenta: "#FF66FF" + cyan: "#66FFCC" + white: "#CCCCCC" + brightBlack: "#00AA00" + brightRed: "#FF6666" + brightGreen: "#66FF66" + brightYellow: "#FFEE00" + brightBlue: "#66FF66" + brightMagenta: "#FF99FF" + brightCyan: "#99FFDD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 86.5 + black: 0 + red: 39.6 + green: 86.5 + yellow: 79.6 + blue: 68.7 + magenta: 54.8 + cyan: 91.7 + white: 75.7 + brightBlack: 44.5 + brightRed: 47.9 + brightGreen: 89 + brightYellow: 94.6 + brightBlue: 89 + brightMagenta: 67.6 + brightCyan: 95.4 + brightWhite: 107.9 diff --git a/themes/uscss-nostromo-alien-terminal-theme--alien-terminal-sevastopol-link.yaml b/themes/uscss-nostromo-alien-terminal-theme--alien-terminal-sevastopol-link.yaml new file mode 100644 index 00000000..312ecd31 --- /dev/null +++ b/themes/uscss-nostromo-alien-terminal-theme--alien-terminal-sevastopol-link.yaml @@ -0,0 +1,53 @@ +name: "USCSS Nostromo - Alien Terminal Theme (Alien Terminal Sevastopol Link)" +source: + marketplace_id: "ericson-willians.uscss-nostromo-theme" + version: "1.0.0" + installs: 602 + rating: 0 + ratings: 0 + author: "Ericson Willians Rocha Pires" + repo: "https://github.com/ericsonwillians/vscode-uscss-nostromo-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ericson-willians.uscss-nostromo-theme" + formats: null +colors: + bg: "#000000" + fg: "#CCFFCC" + black: "#000000" + red: "#FF0000" + green: "#00FF00" + yellow: "#FFFF00" + blue: "#CCFFCC" + magenta: "#FF66FF" + cyan: "#66FFCC" + white: "#FFFFFF" + brightBlack: "#00FF00" + brightRed: "#FF3333" + brightGreen: "#CCFFCC" + brightYellow: "#FFFF99" + brightBlue: "#FFFFFF" + brightMagenta: "#FF99FF" + brightCyan: "#99FFDD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 99.3 + black: 0 + red: 37.5 + green: 86.5 + yellow: 102.7 + blue: 99.3 + magenta: 54.8 + cyan: 91.7 + white: 107.9 + brightBlack: 86.5 + brightRed: 39.6 + brightGreen: 99.3 + brightYellow: 104.2 + brightBlue: 107.9 + brightMagenta: 67.6 + brightCyan: 95.4 + brightWhite: 107.9 diff --git a/themes/vague-theme--windsurf.yaml b/themes/vague-theme--windsurf.yaml new file mode 100644 index 00000000..dbbb7685 --- /dev/null +++ b/themes/vague-theme--windsurf.yaml @@ -0,0 +1,53 @@ +name: "Vague Theme (Windsurf)" +source: + marketplace_id: "xavier-castro.vague-windsurf" + version: "1.0.0" + installs: 11 + rating: 0 + ratings: 0 + author: "Xavier Castro" + repo: "https://github.com/xavier-castro/vague-windsurf" + url: "https://marketplace.visualstudio.com/items?itemName=xavier-castro.vague-windsurf" + formats: null +colors: + bg: "#141415" + fg: "#CDCDCD" + black: "#252530" + red: "#D8647E" + green: "#7FA563" + yellow: "#F3BE7C" + blue: "#6E94B2" + magenta: "#BB9DBD" + cyan: "#AEAED1" + white: "#CDCDCD" + brightBlack: "#606079" + brightRed: "#E08398" + brightGreen: "#99B782" + brightYellow: "#F5CB96" + brightBlue: "#8BA9C1" + brightMagenta: "#C9B1CA" + brightCyan: "#BEBEDA" + brightWhite: "#D7D7D7" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 75.5 + black: 0 + red: 39.2 + green: 47.1 + yellow: 72.3 + blue: 41.7 + magenta: 53.6 + cyan: 59.3 + white: 75.5 + brightBlack: 20.7 + brightRed: 49.5 + brightGreen: 57.7 + brightYellow: 78.5 + brightBlue: 52.9 + brightMagenta: 63.5 + brightCyan: 68 + brightWhite: 81.6 diff --git a/themes/valley--valley.yaml b/themes/valley--valley.yaml new file mode 100644 index 00000000..b5e05f5a --- /dev/null +++ b/themes/valley--valley.yaml @@ -0,0 +1,53 @@ +name: "Valley (Valley)" +source: + marketplace_id: "TimGrochowski.valley-vscode" + version: "0.4.0" + installs: 4890 + rating: 5 + ratings: 6 + author: "Tim Grochowski" + repo: "https://github.com/TimGr/valley-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=TimGrochowski.valley-vscode" + formats: null +colors: + bg: "#1E1E1F" + fg: "#BFC7CF" + black: "#282829" + red: "#D66A81" + green: "#78B98A" + yellow: "#D8C67E" + blue: "#5B89DB" + magenta: "#DF91CA" + cyan: "#57B6CD" + white: "#FAFAFA" + brightBlack: "#656567" + brightRed: "#F59EB1" + brightGreen: "#A0E4B2" + brightYellow: "#F5E8B2" + brightBlue: "#91B7F8" + brightMagenta: "#FACCEE" + brightCyan: "#84DCF0" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 70.2 + black: 0 + red: 39.2 + green: 54.9 + yellow: 70.3 + blue: 37.7 + magenta: 54.6 + cyan: 54.3 + white: 102.7 + brightBlack: 20.8 + brightRed: 61.5 + brightGreen: 79 + brightYellow: 90.8 + brightBlue: 61 + brightMagenta: 82 + brightCyan: 75.8 + brightWhite: 102.7 diff --git a/themes/valorant-theme--valorant-theme-darker.yaml b/themes/valorant-theme--valorant-theme-darker.yaml new file mode 100644 index 00000000..beeb706f --- /dev/null +++ b/themes/valorant-theme--valorant-theme-darker.yaml @@ -0,0 +1,53 @@ +name: "Valorant Theme (Valorant Theme - Darker)" +source: + marketplace_id: "TasnimulHasan.valorant-theme" + version: "4.2.4" + installs: 8387 + rating: 5 + ratings: 2 + author: "Tasnimul Hasan" + repo: "https://github.com/Tasnimul-Hasan/valorant-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TasnimulHasan.valorant-theme" + formats: null +colors: + bg: "#1D222B" + fg: "#D6E0E8" + black: "#687696" + red: "#E06C75" + green: "#75C074" + yellow: "#E5C07B" + blue: "#61AFEF" + magenta: "#9185E0" + cyan: "#56B6C2" + white: "#D6E0E8" + brightBlack: "#808EAA" + brightRed: "#EF5350" + brightGreen: "#75C074" + brightYellow: "#E49A26" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#87CBFF" + brightWhite: "#F9FAFB" +meta: + mode: "dark" + accent: "orange" + hue: 262 + pair: null + contrast: + fg: 84.6 + black: 27.7 + red: 40.7 + green: 56.6 + yellow: 69.2 + blue: 53.3 + magenta: 40.7 + cyan: 53.2 + white: 84.6 + brightBlack: 39 + brightRed: 37.9 + brightGreen: 56.6 + brightYellow: 53.7 + brightBlue: 53.3 + brightMagenta: 43.7 + brightCyan: 68.6 + brightWhite: 102.1 diff --git a/themes/valorant-theme--valorant-theme-remasterd.yaml b/themes/valorant-theme--valorant-theme-remasterd.yaml new file mode 100644 index 00000000..b84094cb --- /dev/null +++ b/themes/valorant-theme--valorant-theme-remasterd.yaml @@ -0,0 +1,53 @@ +name: "Valorant Theme (Valorant Theme - Remasterd)" +source: + marketplace_id: "TasnimulHasan.valorant-theme" + version: "4.2.4" + installs: 8387 + rating: 5 + ratings: 2 + author: "Tasnimul Hasan" + repo: "https://github.com/Tasnimul-Hasan/valorant-theme" + url: "https://marketplace.visualstudio.com/items?itemName=TasnimulHasan.valorant-theme" + formats: null +colors: + bg: "#0F1923" + fg: "#C9D6DA" + black: "#617D8A" + red: "#E57373" + green: "#82C781" + yellow: "#E5C275" + blue: "#64B5F6" + magenta: "#B39AFD" + cyan: "#4DD0E1" + white: "#C9D6DA" + brightBlack: "#95AAB4" + brightRed: "#EF5350" + brightGreen: "#82C781" + brightYellow: "#E89E30" + brightBlue: "#64B5F6" + brightMagenta: "#D792CD" + brightCyan: "#87CBFF" + brightWhite: "#F2F2F2" +meta: + mode: "dark" + accent: "orange" + hue: 249 + pair: null + contrast: + fg: 79.1 + black: 30.3 + red: 44.6 + green: 62.3 + yellow: 71.1 + blue: 57.6 + magenta: 54.8 + cyan: 67.3 + white: 79.1 + brightBlack: 53.2 + brightRed: 39.2 + brightGreen: 62.3 + brightYellow: 57.1 + brightBlue: 57.6 + brightMagenta: 54.4 + brightCyan: 69.8 + brightWhite: 98.2 diff --git a/themes/vaporizer-dark-light-themes--crypto.yaml b/themes/vaporizer-dark-light-themes--crypto.yaml new file mode 100644 index 00000000..7720e07f --- /dev/null +++ b/themes/vaporizer-dark-light-themes--crypto.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Crypto)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#16141B" + fg: "#9D52E8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 298 + pair: null + contrast: + fg: 31.2 + black: 0 + red: 26.9 + green: 53.2 + yellow: 85.8 + blue: 27.6 + magenta: 29.9 + cyan: 47.7 + white: 90.2 + brightBlack: 22.2 + brightRed: 38.7 + brightGreen: 63.7 + brightYellow: 95.8 + brightBlue: 40.2 + brightMagenta: 45.6 + brightCyan: 55.6 + brightWhite: 90.2 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-alice-dark.yaml b/themes/vaporizer-dark-light-themes--vaporizer-alice-dark.yaml new file mode 100644 index 00000000..16d5bb1e --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-alice-dark.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Alice Dark)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#414141" + fg: "#7ADAEC" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 65.7 + black: 10.2 + red: 17.6 + green: 42.6 + yellow: 33.7 + blue: 0 + magenta: 17 + cyan: 31 + white: 0 + brightBlack: 12.9 + brightRed: 17.6 + brightGreen: 51.3 + brightYellow: 51.2 + brightBlue: 0 + brightMagenta: 17 + brightCyan: 31 + brightWhite: 43.4 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-alice-light.yaml b/themes/vaporizer-dark-light-themes--vaporizer-alice-light.yaml new file mode 100644 index 00000000..99a8c55b --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-alice-light.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Alice Light)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#FFFFFF" + fg: "#7ADAEC" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 27.1 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-ava-light.yaml b/themes/vaporizer-dark-light-themes--vaporizer-ava-light.yaml new file mode 100644 index 00000000..30ebaf2e --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-ava-light.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Ava Light)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#FFFFFF" + fg: "#CBC4FF" + black: "#000000" + red: "#FF5E8B" + green: "#00BC00" + yellow: "#E2BF38" + blue: "#2DA7D7" + magenta: "#FF59FF" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#FB80A2" + brightGreen: "#89E471" + brightYellow: "#EECC45" + brightBlue: "#5AD0FF" + brightMagenta: "#FF9BFF" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 28.1 + black: 106 + red: 54.5 + green: 49.2 + yellow: 32.9 + blue: 52.8 + magenta: 49.5 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 47 + brightGreen: 25.7 + brightYellow: 25.9 + brightBlue: 32.1 + brightMagenta: 34.4 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-batman-dark-2022.yaml b/themes/vaporizer-dark-light-themes--vaporizer-batman-dark-2022.yaml new file mode 100644 index 00000000..8af35663 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-batman-dark-2022.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Batman Dark 2022)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#000000" + fg: "#D1D1D1" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-batman-dark-night.yaml b/themes/vaporizer-dark-light-themes--vaporizer-batman-dark-night.yaml new file mode 100644 index 00000000..704542ee --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-batman-dark-night.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Batman Dark Night)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#1B1B1B" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 79 + black: 0 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 21.6 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-cloudy-light.yaml b/themes/vaporizer-dark-light-themes--vaporizer-cloudy-light.yaml new file mode 100644 index 00000000..a366c636 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-cloudy-light.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Cloudy Light)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#FFFFFF" + fg: "#A9DBDE" + black: "#4F4F4F" + red: "#FF8181" + green: "#2FF5AB" + yellow: "#E2C421" + blue: "#53C0F5" + magenta: "#FD95FD" + cyan: "#4ADBFF" + white: "#555555" + brightBlack: "#A1A1A1" + brightRed: "#FB9393" + brightGreen: "#8DF9BC" + brightYellow: "#FBD06B" + brightBlue: "#87BFFD" + brightMagenta: "#FFB2FF" + brightCyan: "#8BE8FF" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "teal" + hue: null + pair: null + contrast: + fg: 23.9 + black: 88.4 + red: 47 + green: 19.7 + yellow: 31.1 + blue: 39.7 + magenta: 36.6 + cyan: 27.8 + white: 85.9 + brightBlack: 50.5 + brightRed: 42.3 + brightGreen: 13.7 + brightYellow: 21.9 + brightBlue: 36.8 + brightMagenta: 27.2 + brightCyan: 18.9 + brightWhite: 48.5 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-cobalt-dark.yaml b/themes/vaporizer-dark-light-themes--vaporizer-cobalt-dark.yaml new file mode 100644 index 00000000..6d2008b1 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-cobalt-dark.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Cobalt Dark)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#104855" + fg: "#FF7815" + black: "#362F2F" + red: "#FF5454" + green: "#0DBC79" + yellow: "#E59C10" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#2E2E2E" + brightRed: "#FF7171" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 217 + pair: null + contrast: + fg: 40.6 + black: 0 + red: 33.6 + green: 43.4 + yellow: 46.3 + blue: 17.8 + magenta: 20.2 + cyan: 38 + white: 97.3 + brightBlack: 0 + brightRed: 40 + brightGreen: 53.9 + brightYellow: 86 + brightBlue: 30.4 + brightMagenta: 35.8 + brightCyan: 45.8 + brightWhite: 80.4 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-crescent-dark.yaml b/themes/vaporizer-dark-light-themes--vaporizer-crescent-dark.yaml new file mode 100644 index 00000000..54d2b7aa --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-crescent-dark.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Crescent Dark)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#262947" + fg: "#FF7815" + black: "#362F2F" + red: "#FF5454" + green: "#0DBC79" + yellow: "#E59C10" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFFFFF" + brightBlack: "#2E2E2E" + brightRed: "#FF7171" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 278 + pair: null + contrast: + fg: 47 + black: 0 + red: 40 + green: 49.8 + yellow: 52.7 + blue: 24.3 + magenta: 26.6 + cyan: 44.4 + white: 103.7 + brightBlack: 0 + brightRed: 46.4 + brightGreen: 60.4 + brightYellow: 92.5 + brightBlue: 36.8 + brightMagenta: 42.2 + brightCyan: 52.2 + brightWhite: 86.9 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-cherry.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-cherry.yaml new file mode 100644 index 00000000..659d4578 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-cherry.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Cherry)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#333333" + fg: "#DC2929" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 24.5 + black: 0 + red: 21.9 + green: 48.2 + yellow: 80.8 + blue: 22.6 + magenta: 24.9 + cyan: 42.7 + white: 85.2 + brightBlack: 17.2 + brightRed: 33.7 + brightGreen: 58.7 + brightYellow: 90.8 + brightBlue: 35.1 + brightMagenta: 40.5 + brightCyan: 50.5 + brightWhite: 85.2 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-coffee.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-coffee.yaml new file mode 100644 index 00000000..e32a1b4c --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-coffee.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Coffee)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#24272D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 77.2 + black: 0 + red: 24.5 + green: 50.8 + yellow: 83.4 + blue: 25.2 + magenta: 27.5 + cyan: 45.3 + white: 87.8 + brightBlack: 19.8 + brightRed: 36.3 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.8 + brightMagenta: 43.1 + brightCyan: 53.2 + brightWhite: 87.8 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-cool-1.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-cool-1.yaml new file mode 100644 index 00000000..c6a68598 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-cool-1.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Cool 1)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#24272F" + fg: "#8FC7D7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + pair: null + contrast: + fg: 64.4 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.2 + magenta: 27.5 + cyan: 45.3 + white: 87.7 + brightBlack: 19.8 + brightRed: 36.3 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.7 + brightMagenta: 43.1 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-cool-2.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-cool-2.yaml new file mode 100644 index 00000000..88cff4c0 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-cool-2.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Cool 2)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#2E3440" + fg: "#8FC7D7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 61.6 + black: 0 + red: 21.6 + green: 47.9 + yellow: 80.5 + blue: 22.4 + magenta: 24.7 + cyan: 42.5 + white: 84.9 + brightBlack: 17 + brightRed: 33.5 + brightGreen: 58.5 + brightYellow: 90.6 + brightBlue: 34.9 + brightMagenta: 40.3 + brightCyan: 50.3 + brightWhite: 84.9 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-cop.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-cop.yaml new file mode 100644 index 00000000..0116e00b --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-cop.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Cop)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#26292D" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 76.9 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.2 + cyan: 45 + white: 87.4 + brightBlack: 19.5 + brightRed: 36 + brightGreen: 61 + brightYellow: 93.1 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-1.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-1.yaml new file mode 100644 index 00000000..c8a581a2 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-1.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Cyber Neon 1)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#060002" + fg: "#21B8F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#F41459" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#F54B7F" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: 354 + pair: null + contrast: + fg: 57.7 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 35.7 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 41.5 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-2.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-2.yaml new file mode 100644 index 00000000..1bd6d485 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-2.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Cyber Neon 2)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#150309" + fg: "#21B8F2" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#F41459" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#F54B7F" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: 358 + pair: null + contrast: + fg: 57.5 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.2 + magenta: 35.5 + cyan: 48.4 + white: 90.8 + brightBlack: 22.8 + brightRed: 39.4 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.8 + brightMagenta: 41.3 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-3.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-3.yaml new file mode 100644 index 00000000..f0f43b90 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-cyber-neon-3.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Cyber Neon 3)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#100015" + fg: "#21B8F2" + black: "#D300FF" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 320 + pair: null + contrast: + fg: 57.5 + black: 36.7 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.9 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-ivy.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-ivy.yaml new file mode 100644 index 00000000..6e498dc5 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-ivy.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Ivy)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#0A1016" + fg: "#BA5D59" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 249 + pair: null + contrast: + fg: 31.3 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.4 + cyan: 48.2 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.2 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 46 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-joker.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-joker.yaml new file mode 100644 index 00000000..5c65ab87 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-joker.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Joker)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#1E1E1E" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-matrix-2.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-matrix-2.yaml new file mode 100644 index 00000000..4f79d254 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-matrix-2.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Matrix 2)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#000201" + fg: "#D2FFC2" + black: "#86F500" + red: "#58AB05" + green: "#009232" + yellow: "#488A07" + blue: "#1F7D1D" + magenta: "#0EE261" + cyan: "#50A322" + white: "#E5E5E5" + brightBlack: "#AAF26D" + brightRed: "#447134" + brightGreen: "#009F20" + brightYellow: "#60E814" + brightBlue: "#69BC67" + brightMagenta: "#82D670" + brightCyan: "#9ED586" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 165 + pair: null + contrast: + fg: 99.6 + black: 84.9 + red: 46.9 + green: 34.5 + yellow: 32.4 + blue: 26.2 + magenta: 71.9 + cyan: 43.1 + white: 91 + brightBlack: 86.9 + brightRed: 23.2 + brightGreen: 39.8 + brightYellow: 76.1 + brightBlue: 56.2 + brightMagenta: 70 + brightCyan: 72.3 + brightWhite: 91 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-monterey.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-monterey.yaml new file mode 100644 index 00000000..302a9d80 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-monterey.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Monterey)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#2C0F49" + fg: "#2A8296" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 302 + pair: null + contrast: + fg: 28.9 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.1 + magenta: 28.5 + cyan: 46.3 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.3 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.7 + brightMagenta: 44.1 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-painting.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-painting.yaml new file mode 100644 index 00000000..218a125e --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-painting.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Painting)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#1E1E1E" + fg: "#7D2C05" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 9.6 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-pansy.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-pansy.yaml new file mode 100644 index 00000000..99c42df2 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-pansy.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Pansy)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#3B3551" + fg: "#744290" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 294 + pair: null + contrast: + fg: 9.8 + black: 0 + red: 20.1 + green: 46.4 + yellow: 79 + blue: 20.8 + magenta: 23.2 + cyan: 41 + white: 83.4 + brightBlack: 15.5 + brightRed: 32 + brightGreen: 56.9 + brightYellow: 89 + brightBlue: 33.4 + brightMagenta: 38.8 + brightCyan: 48.8 + brightWhite: 83.4 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-red.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-red.yaml new file mode 100644 index 00000000..49bb60f3 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-red.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Red)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#1D2024" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#8E7F7F" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 105.8 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 33.8 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 105.8 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-stabilo.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-stabilo.yaml new file mode 100644 index 00000000..8cea9e42 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-stabilo.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Stabilo)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#26292D" + fg: "#606C38" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 19.8 + black: 0 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.2 + cyan: 45 + white: 87.4 + brightBlack: 19.5 + brightRed: 36 + brightGreen: 61 + brightYellow: 93.1 + brightBlue: 37.4 + brightMagenta: 42.8 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-dark-turquoise.yaml b/themes/vaporizer-dark-light-themes--vaporizer-dark-turquoise.yaml new file mode 100644 index 00000000..5f2b205d --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-dark-turquoise.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Dark Turquoise)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#191919" + fg: "#9BC793" + black: "#000000" + red: "#CD3131" + green: "#00BC64" + yellow: "#949800" + blue: "#5F9FE6" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#00BC64" + brightYellow: "#B5BA00" + brightBlue: "#3F75B0" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 64.8 + black: 0 + red: 26.5 + green: 52.3 + yellow: 42.6 + blue: 47.4 + magenta: 25.9 + cyan: 39.9 + white: 14.9 + brightBlack: 21.8 + brightRed: 26.5 + brightGreen: 52.3 + brightYellow: 60.1 + brightBlue: 27.4 + brightMagenta: 25.9 + brightCyan: 39.9 + brightWhite: 52.3 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-epic-red-dark.yaml b/themes/vaporizer-dark-light-themes--vaporizer-epic-red-dark.yaml new file mode 100644 index 00000000..bf253e3f --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-epic-red-dark.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Epic Red Dark)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#212326" + fg: "#FFFFFF" + black: "#5A5959" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BF95F9" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.3 + black: 15.2 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 53 + cyan: 46 + white: 88.5 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.5 + brightMagenta: 43.8 + brightCyan: 53.9 + brightWhite: 88.5 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-fonc-dark.yaml b/themes/vaporizer-dark-light-themes--vaporizer-fonc-dark.yaml new file mode 100644 index 00000000..2455347d --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-fonc-dark.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Foncé Dark)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#191919" + fg: "#DEDEDE" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 85.4 + black: 0 + red: 26.5 + green: 52.8 + yellow: 85.4 + blue: 27.2 + magenta: 29.5 + cyan: 47.3 + white: 89.8 + brightBlack: 21.8 + brightRed: 38.3 + brightGreen: 63.3 + brightYellow: 95.4 + brightBlue: 39.8 + brightMagenta: 45.2 + brightCyan: 55.2 + brightWhite: 89.8 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-frozen-dark.yaml b/themes/vaporizer-dark-light-themes--vaporizer-frozen-dark.yaml new file mode 100644 index 00000000..947a5b17 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-frozen-dark.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Frozen Dark )" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#000000" + fg: "#1E92A5" + black: "#53839F" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#C2C2C2" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 37.7 + black: 33.6 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 69.8 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-golgi-dark.yaml b/themes/vaporizer-dark-light-themes--vaporizer-golgi-dark.yaml new file mode 100644 index 00000000..7f01071b --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-golgi-dark.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Golgi Dark)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#333342" + fg: "#D4D4D4" + black: "#808080" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 285 + pair: null + contrast: + fg: 74.3 + black: 28.6 + red: 21.5 + green: 47.8 + yellow: 80.4 + blue: 22.2 + magenta: 24.6 + cyan: 42.4 + white: 84.8 + brightBlack: 16.8 + brightRed: 33.4 + brightGreen: 58.3 + brightYellow: 90.4 + brightBlue: 34.8 + brightMagenta: 40.2 + brightCyan: 50.2 + brightWhite: 84.8 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-half-moon-dark.yaml b/themes/vaporizer-dark-light-themes--vaporizer-half-moon-dark.yaml new file mode 100644 index 00000000..21cebe0f --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-half-moon-dark.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Half-Moon Dark)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#0F1525" + fg: "#D4D4D4" + black: "#999898" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 268 + pair: null + contrast: + fg: 79.6 + black: 45.9 + red: 26.8 + green: 53.1 + yellow: 85.7 + blue: 27.5 + magenta: 29.9 + cyan: 47.7 + white: 90.1 + brightBlack: 22.1 + brightRed: 38.7 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40.1 + brightMagenta: 45.5 + brightCyan: 55.5 + brightWhite: 90.1 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-lemonade-light.yaml b/themes/vaporizer-dark-light-themes--vaporizer-lemonade-light.yaml new file mode 100644 index 00000000..821fd9ff --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-lemonade-light.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Lemonade Light)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#F9F9F9" + fg: "#E0DFDF" + black: "#4F4F4F" + red: "#FF8181" + green: "#2FF5AB" + yellow: "#E2C421" + blue: "#53C0F5" + magenta: "#FD95FD" + cyan: "#4ADBFF" + white: "#000000" + brightBlack: "#A1A1A1" + brightRed: "#FB9393" + brightGreen: "#8DF9BC" + brightYellow: "#FBD06B" + brightBlue: "#87BFFD" + brightMagenta: "#FFB2FF" + brightCyan: "#8BE8FF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "teal" + hue: null + pair: null + contrast: + fg: 12.7 + black: 84.8 + red: 43.4 + green: 16.1 + yellow: 27.5 + blue: 36.1 + magenta: 33 + cyan: 24.2 + white: 102.5 + brightBlack: 46.9 + brightRed: 38.7 + brightGreen: 10.1 + brightYellow: 18.3 + brightBlue: 33.2 + brightMagenta: 23.6 + brightCyan: 15.3 + brightWhite: 102.5 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-lemonade-solarized-light.yaml b/themes/vaporizer-dark-light-themes--vaporizer-lemonade-solarized-light.yaml new file mode 100644 index 00000000..f90c834d --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-lemonade-solarized-light.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Lemonade Solarized Light)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#FFF9D8" + fg: "#E0DFDF" + black: "#4F4F4F" + red: "#FF8181" + green: "#2FF5AB" + yellow: "#E2C421" + blue: "#53C0F5" + magenta: "#FD95FD" + cyan: "#4ADBFF" + white: "#000000" + brightBlack: "#A1A1A1" + brightRed: "#FB9393" + brightGreen: "#8DF9BC" + brightYellow: "#FBD06B" + brightBlue: "#87BFFD" + brightMagenta: "#FFB2FF" + brightCyan: "#8BE8FF" + brightWhite: "#000000" +meta: + mode: "light" + accent: "teal" + hue: null + pair: null + contrast: + fg: 12.2 + black: 84.2 + red: 42.9 + green: 15.6 + yellow: 27 + blue: 35.6 + magenta: 32.5 + cyan: 23.7 + white: 101.9 + brightBlack: 46.4 + brightRed: 38.2 + brightGreen: 9.6 + brightYellow: 17.8 + brightBlue: 32.7 + brightMagenta: 23.1 + brightCyan: 14.8 + brightWhite: 101.9 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-milk-light.yaml b/themes/vaporizer-dark-light-themes--vaporizer-milk-light.yaml new file mode 100644 index 00000000..e79a2807 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-milk-light.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Milk Light)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#FFFCEA" + fg: "#666666" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#02ADC7" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#8E7F7F" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#91EEAD" + brightYellow: "#F5F543" + brightBlue: "#02ADE7" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 76.6 + black: 103.9 + red: 71.8 + green: 45.8 + yellow: 14.8 + blue: 49.4 + magenta: 68.8 + cyan: 51.1 + white: 63.6 + brightBlack: 76.6 + brightRed: 60 + brightGreen: 16.9 + brightYellow: 0 + brightBlue: 47.6 + brightMagenta: 53.3 + brightCyan: 43.5 + brightWhite: 0 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-mini-blue-light.yaml b/themes/vaporizer-dark-light-themes--vaporizer-mini-blue-light.yaml new file mode 100644 index 00000000..6929bd1e --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-mini-blue-light.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Mini Blue Light)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#FFF8F7" + fg: "#B5C7FF" + black: "#000000" + red: "#FD7776" + green: "#8CE2AE" + yellow: "#FBEAA1" + blue: "#DFF2FE" + magenta: "#EAA3E0" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#FB908F" + brightGreen: "#8CE2AE" + brightYellow: "#FFF1B4" + brightBlue: "#EFFEFF" + brightMagenta: "#FBC3F3" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 26.1 + black: 102.7 + red: 46.9 + green: 21.6 + yellow: 0 + blue: 0 + magenta: 33.8 + cyan: 57.3 + white: 82.6 + brightBlack: 75.4 + brightRed: 39.9 + brightGreen: 21.6 + brightYellow: 0 + brightBlue: 0 + brightMagenta: 19.2 + brightCyan: 57.3 + brightWhite: 45.1 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-minimalism-light.yaml b/themes/vaporizer-dark-light-themes--vaporizer-minimalism-light.yaml new file mode 100644 index 00000000..30117541 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-minimalism-light.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Minimalism Light)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#F8F8F8" + fg: "#A9A9A9" + black: "#4F4F4F" + red: "#FF8181" + green: "#2FF5AB" + yellow: "#E2C421" + blue: "#53C0F5" + magenta: "#FD95FD" + cyan: "#4ADBFF" + white: "#555555" + brightBlack: "#A1A1A1" + brightRed: "#FB9393" + brightGreen: "#8DF9BC" + brightYellow: "#FBD06B" + brightBlue: "#87BFFD" + brightMagenta: "#FFB2FF" + brightCyan: "#8BE8FF" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "teal" + hue: null + pair: null + contrast: + fg: 42.2 + black: 84.2 + red: 42.8 + green: 15.5 + yellow: 26.9 + blue: 35.5 + magenta: 32.4 + cyan: 23.6 + white: 81.8 + brightBlack: 46.3 + brightRed: 38.1 + brightGreen: 9.5 + brightYellow: 17.8 + brightBlue: 32.6 + brightMagenta: 23 + brightCyan: 14.7 + brightWhite: 44.3 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-modern-light.yaml b/themes/vaporizer-dark-light-themes--vaporizer-modern-light.yaml new file mode 100644 index 00000000..44d8c758 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-modern-light.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Modern Light)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#F5F4F8" + fg: "#D28EFF" + black: "#4F4F4F" + red: "#FF8181" + green: "#2FF5AB" + yellow: "#E2C421" + blue: "#53C0F5" + magenta: "#FD95FD" + cyan: "#4ADBFF" + white: "#555555" + brightBlack: "#A1A1A1" + brightRed: "#FB9393" + brightGreen: "#8DF9BC" + brightYellow: "#FBD06B" + brightBlue: "#87BFFD" + brightMagenta: "#FFB2FF" + brightCyan: "#06AED7" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "teal" + hue: null + pair: null + contrast: + fg: 39.3 + black: 82.1 + red: 40.7 + green: 13.5 + yellow: 24.8 + blue: 33.5 + magenta: 30.3 + cyan: 21.5 + white: 79.7 + brightBlack: 44.3 + brightRed: 36 + brightGreen: 7.4 + brightYellow: 15.7 + brightBlue: 30.5 + brightMagenta: 20.9 + brightCyan: 44.1 + brightWhite: 42.2 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-moon-light-dark.yaml b/themes/vaporizer-dark-light-themes--vaporizer-moon-light-dark.yaml new file mode 100644 index 00000000..2bb07a59 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-moon-light-dark.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Moon-Light Dark)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#1C2332" + fg: "#D4D4D4" + black: "#999898" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 265 + pair: null + contrast: + fg: 77.9 + black: 44.2 + red: 25.1 + green: 51.4 + yellow: 84 + blue: 25.8 + magenta: 28.2 + cyan: 46 + white: 88.4 + brightBlack: 20.4 + brightRed: 37 + brightGreen: 61.9 + brightYellow: 94 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 88.4 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-phosphoric-grey.yaml b/themes/vaporizer-dark-light-themes--vaporizer-phosphoric-grey.yaml new file mode 100644 index 00000000..1ff0eb6d --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-phosphoric-grey.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Phosphoric Grey)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#EAEAEA" + fg: "#929190" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 46.1 + black: 93.6 + red: 61.5 + green: 36.8 + yellow: 45.5 + blue: 73.6 + magenta: 62.1 + cyan: 48.2 + white: 73.5 + brightBlack: 66.3 + brightRed: 61.5 + brightGreen: 28.5 + brightYellow: 28.5 + brightBlue: 73.6 + brightMagenta: 62.1 + brightCyan: 48.2 + brightWhite: 36 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-purple-gray-dark.yaml b/themes/vaporizer-dark-light-themes--vaporizer-purple-gray-dark.yaml new file mode 100644 index 00000000..bff6151d --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-purple-gray-dark.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Purple Gray Dark)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#2E3440" + fg: "#9D52E8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 25.9 + black: 0 + red: 21.6 + green: 47.9 + yellow: 80.5 + blue: 22.4 + magenta: 24.7 + cyan: 42.5 + white: 84.9 + brightBlack: 17 + brightRed: 33.5 + brightGreen: 58.5 + brightYellow: 90.6 + brightBlue: 34.9 + brightMagenta: 40.3 + brightCyan: 50.3 + brightWhite: 84.9 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-soft-light.yaml b/themes/vaporizer-dark-light-themes--vaporizer-soft-light.yaml new file mode 100644 index 00000000..5bb1393b --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-soft-light.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Soft Light)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#F0F7FE" + fg: "#B4B4B4" + black: "#999999" + red: "#FDA9A9" + green: "#5ED55E" + yellow: "#CFC67D" + blue: "#76B2F5" + magenta: "#EA7EEA" + cyan: "#4EC8E6" + white: "#999999" + brightBlack: "#B8B3B3" + brightRed: "#F9A2A2" + brightGreen: "#89CF89" + brightYellow: "#D5C152" + brightBlue: "#9DCCFF" + brightMagenta: "#F59CF5" + brightCyan: "#51CAE8" + brightWhite: "#9D9D9D" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 35.2 + black: 49.3 + red: 29 + green: 30 + yellow: 26.4 + blue: 38.3 + magenta: 41.9 + cyan: 32 + white: 49.3 + brightBlack: 35.1 + brightRed: 32.2 + brightGreen: 29.4 + brightYellow: 28.4 + brightBlue: 24.3 + brightMagenta: 31.1 + brightCyan: 30.9 + brightWhite: 47.2 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-splash-dark.yaml b/themes/vaporizer-dark-light-themes--vaporizer-splash-dark.yaml new file mode 100644 index 00000000..84393244 --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-splash-dark.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Splash Dark)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#211C22" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 321 + pair: null + contrast: + fg: 78.7 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 29 + cyan: 46.8 + white: 89.2 + brightBlack: 21.3 + brightRed: 37.8 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.6 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/vaporizer-dark-light-themes--vaporizer-turquoise-light.yaml b/themes/vaporizer-dark-light-themes--vaporizer-turquoise-light.yaml new file mode 100644 index 00000000..4afe958f --- /dev/null +++ b/themes/vaporizer-dark-light-themes--vaporizer-turquoise-light.yaml @@ -0,0 +1,53 @@ +name: "Vaporizer Dark & Light Themes (Vaporizer Turquoise Light)" +source: + marketplace_id: "Vaporizer.vaporizer-dark" + version: "2.1.9" + installs: 35761 + rating: 5 + ratings: 6 + author: "Vaporizer" + repo: "https://github.com/Vaporizer-dev/Vaporizer-Vscode-Dark-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=Vaporizer.vaporizer-dark" + formats: null +colors: + bg: "#F3F3F3" + fg: "#9BC793" + black: "#000000" + red: "#CD3131" + green: "#00BC64" + yellow: "#949800" + blue: "#5F9FE6" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#00BC64" + brightYellow: "#B5BA00" + brightBlue: "#3F75B0" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 29.3 + black: 98.9 + red: 66.8 + green: 41.3 + yellow: 50.8 + blue: 46.1 + magenta: 67.4 + cyan: 53.4 + white: 78.8 + brightBlack: 71.6 + brightRed: 66.8 + brightGreen: 41.3 + brightYellow: 33.8 + brightBlue: 65.9 + brightMagenta: 67.4 + brightCyan: 53.4 + brightWhite: 41.3 diff --git a/themes/vaporwave-neon-dreams.yaml b/themes/vaporwave-neon-dreams.yaml new file mode 100644 index 00000000..72fbb44c --- /dev/null +++ b/themes/vaporwave-neon-dreams.yaml @@ -0,0 +1,53 @@ +name: "Vaporwave Neon Dreams" +source: + marketplace_id: "andrei-isvoran96.vaporwave-theme" + version: "1.0.2" + installs: 77 + rating: 5 + ratings: 1 + author: "Andrei Isvoran" + repo: "https://github.com/andrei-isvoran96/vaporwave" + url: "https://marketplace.visualstudio.com/items?itemName=andrei-isvoran96.vaporwave-theme" + formats: null +colors: + bg: "#1A1A2E" + fg: "#EAEAEA" + black: "#1A1A2E" + red: "#E94560" + green: "#7EFFC8" + yellow: "#FFD866" + blue: "#0F3460" + magenta: "#C792EA" + cyan: "#00FFF5" + white: "#EAEAEA" + brightBlack: "#A0A0A0" + brightRed: "#FF6B9D" + brightGreen: "#7EFFC8" + brightYellow: "#FFD866" + brightBlue: "#00FFF5" + brightMagenta: "#C792EA" + brightCyan: "#00FFF5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 283 + pair: null + contrast: + fg: 92.6 + black: 0 + red: 35.5 + green: 91.1 + yellow: 83.7 + blue: 0 + magenta: 53.2 + cyan: 90.1 + white: 92.6 + brightBlack: 49.3 + brightRed: 49 + brightGreen: 91.1 + brightYellow: 83.7 + brightBlue: 90.1 + brightMagenta: 53.2 + brightCyan: 90.1 + brightWhite: 106.3 diff --git a/themes/velvet-mango.yaml b/themes/velvet-mango.yaml new file mode 100644 index 00000000..312fa1e5 --- /dev/null +++ b/themes/velvet-mango.yaml @@ -0,0 +1,53 @@ +name: "Velvet Mango" +source: + marketplace_id: "miles-crighton.velvet-mango" + version: "0.0.21" + installs: 1096 + rating: 0 + ratings: 0 + author: "miles-crighton" + repo: "https://github.com/miles-crighton/velvet-mango-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=miles-crighton.velvet-mango" + formats: null +colors: + bg: "#3C2A3E" + fg: "#FFD6D1" + black: "#9C6F9F" + red: "#E05470" + green: "#A4BC77" + yellow: "#EBB984" + blue: "#8078D1" + magenta: "#EB579C" + cyan: "#9AE0F0" + white: "#FFD6D1" + brightBlack: "#9C6F9F" + brightRed: "#EF4568" + brightGreen: "#A7C966" + brightYellow: "#F9B975" + brightBlue: "#9994FF" + brightMagenta: "#E54386" + brightCyan: "#87DDEE" + brightWhite: "#FFF0F0" +meta: + mode: "dark" + accent: "red" + hue: 323 + pair: null + contrast: + fg: 82.2 + black: 28.8 + red: 32.7 + green: 56.2 + yellow: 64.8 + blue: 31.1 + magenta: 37.1 + cyan: 75.9 + white: 82.2 + brightBlack: 28.8 + brightRed: 33.5 + brightGreen: 61.8 + brightYellow: 66.8 + brightBlue: 45.8 + brightMagenta: 31.8 + brightCyan: 73 + brightWhite: 95 diff --git a/themes/vercel-docs-theme--vercel-light.yaml b/themes/vercel-docs-theme--vercel-light.yaml new file mode 100644 index 00000000..22ba3afc --- /dev/null +++ b/themes/vercel-docs-theme--vercel-light.yaml @@ -0,0 +1,53 @@ +name: "Vercel Docs Theme (Vercel Light)" +source: + marketplace_id: "aurorascharff.vercel-docs-theme" + version: "0.4.0" + installs: 39 + rating: 0 + ratings: 0 + author: "aurorascharff" + repo: "https://github.com/aurorascharff/vercel-vscode-docs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=aurorascharff.vercel-docs-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#171717" + black: "#171717" + red: "#D6336C" + green: "#067A3D" + yellow: "#C27800" + blue: "#0070F3" + magenta: "#7C3AED" + cyan: "#0070F3" + white: "#FAFAFA" + brightBlack: "#666666" + brightRed: "#D6336C" + brightGreen: "#067A3D" + brightYellow: "#C27800" + brightBlue: "#0070F3" + brightMagenta: "#7C3AED" + brightCyan: "#0070F3" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 104.7 + black: 104.7 + red: 70.6 + green: 76.6 + yellow: 62.3 + blue: 70.7 + magenta: 77.5 + cyan: 70.7 + white: 0 + brightBlack: 78.8 + brightRed: 70.6 + brightGreen: 76.6 + brightYellow: 62.3 + brightBlue: 70.7 + brightMagenta: 77.5 + brightCyan: 70.7 + brightWhite: 0 diff --git a/themes/vercel-docs-theme--vercel.yaml b/themes/vercel-docs-theme--vercel.yaml new file mode 100644 index 00000000..29fee9de --- /dev/null +++ b/themes/vercel-docs-theme--vercel.yaml @@ -0,0 +1,53 @@ +name: "Vercel Docs Theme (Vercel)" +source: + marketplace_id: "aurorascharff.vercel-docs-theme" + version: "0.4.0" + installs: 39 + rating: 0 + ratings: 0 + author: "aurorascharff" + repo: "https://github.com/aurorascharff/vercel-vscode-docs-theme" + url: "https://marketplace.visualstudio.com/items?itemName=aurorascharff.vercel-docs-theme" + formats: null +colors: + bg: "#000000" + fg: "#EEEEEE" + black: "#000000" + red: "#FF4D8D" + green: "#00C45C" + yellow: "#FFCC47" + blue: "#47A8FF" + magenta: "#C473FC" + cyan: "#0070F3" + white: "#EEEEEE" + brightBlack: "#666666" + brightRed: "#FF4D8D" + brightGreen: "#00C45C" + brightYellow: "#FFCC47" + brightBlue: "#47A8FF" + brightMagenta: "#C473FC" + brightCyan: "#47A8FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 96.8 + black: 0 + red: 44.6 + green: 57.1 + yellow: 79.9 + blue: 52.8 + magenta: 46.7 + cyan: 31 + white: 96.8 + brightBlack: 23 + brightRed: 44.6 + brightGreen: 57.1 + brightYellow: 79.9 + brightBlue: 52.8 + brightMagenta: 46.7 + brightCyan: 52.8 + brightWhite: 107.9 diff --git a/themes/vercel-vscode-theme.yaml b/themes/vercel-vscode-theme.yaml new file mode 100644 index 00000000..98d4ac16 --- /dev/null +++ b/themes/vercel-vscode-theme.yaml @@ -0,0 +1,53 @@ +name: "Vercel VSCode Theme" +source: + marketplace_id: "natemcgrady.vercel-vscode-theme" + version: "1.0.2" + installs: 381 + rating: 0 + ratings: 0 + author: "natemcgrady" + repo: "https://github.com/sotan8/vercel-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=natemcgrady.vercel-vscode-theme" + formats: null +colors: + bg: "#000000" + fg: "#EEEEEE" + black: "#000000" + red: "#FF4D8D" + green: "#00CB50" + yellow: "#FFCC47" + blue: "#47A8FF" + magenta: "#C473FC" + cyan: "#0070F3" + white: "#EEEEEE" + brightBlack: "#666666" + brightRed: "#FF4D8D" + brightGreen: "#00CB50" + brightYellow: "#FFCC47" + brightBlue: "#47A8FF" + brightMagenta: "#C473FC" + brightCyan: "#47A8FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 96.8 + black: 0 + red: 44.6 + green: 60.3 + yellow: 79.9 + blue: 52.8 + magenta: 46.7 + cyan: 31 + white: 96.8 + brightBlack: 23 + brightRed: 44.6 + brightGreen: 60.3 + brightYellow: 79.9 + brightBlue: 52.8 + brightMagenta: 46.7 + brightCyan: 52.8 + brightWhite: 107.9 diff --git a/themes/vesper-lighter.yaml b/themes/vesper-lighter.yaml new file mode 100644 index 00000000..8f2b10a9 --- /dev/null +++ b/themes/vesper-lighter.yaml @@ -0,0 +1,53 @@ +name: "Vesper++ Lighter" +source: + marketplace_id: "opedrodev.vesper-pp-lighter" + version: "1.0.1" + installs: 1469 + rating: 0 + ratings: 0 + author: "opedrodev" + repo: "https://github.com/opedrodev/vesper" + url: "https://marketplace.visualstudio.com/items?itemName=opedrodev.vesper-pp-lighter" + formats: null +colors: + bg: "#161616" + fg: "#FFFFFF" + black: "#161616" + red: "#FF8080" + green: "#99FFE4" + yellow: "#FFC799" + blue: "#FFC799" + magenta: "#FBADFF" + cyan: "#99FFE4" + white: "#E3E3DD" + brightBlack: "#161616" + brightRed: "#FF8080" + brightGreen: "#99FFE4" + brightYellow: "#FFC799" + brightBlue: "#FFC799" + brightMagenta: "#FBADFF" + brightCyan: "#99FFE4" + brightWhite: "#F8F8F2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 107 + black: 0 + red: 53.8 + green: 94.7 + yellow: 78.4 + blue: 78.4 + magenta: 72.4 + cyan: 94.7 + white: 88.6 + brightBlack: 0 + brightRed: 53.8 + brightGreen: 94.7 + brightYellow: 78.4 + brightBlue: 78.4 + brightMagenta: 72.4 + brightCyan: 94.7 + brightWhite: 102.1 diff --git a/themes/vesper-purple-ox--vesper-purple-dark.yaml b/themes/vesper-purple-ox--vesper-purple-dark.yaml new file mode 100644 index 00000000..d690bfc9 --- /dev/null +++ b/themes/vesper-purple-ox--vesper-purple-dark.yaml @@ -0,0 +1,53 @@ +name: "Vesper Purple Ox (Vesper Purple Dark)" +source: + marketplace_id: "0xfell.vesper-purple-ox" + version: "0.0.1" + installs: 298 + rating: 5 + ratings: 1 + author: "0xfell" + repo: "https://github.com/0xfell/vesper-purple" + url: "https://marketplace.visualstudio.com/items?itemName=0xfell.vesper-purple-ox" + formats: null +colors: + bg: "#000000" + fg: "#E4E0D4" + black: "#1A1A1A" + red: "#FB7185" + green: "#4ADE80" + yellow: "#FBBF24" + blue: "#38BDF8" + magenta: "#A855F7" + cyan: "#22D3EE" + white: "#E4E0D4" + brightBlack: "#737373" + brightRed: "#FB7185" + brightGreen: "#4ADE80" + brightYellow: "#FBBF24" + brightBlue: "#38BDF8" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 87.9 + black: 0 + red: 50.3 + green: 71.5 + yellow: 73.7 + blue: 60.6 + magenta: 35.4 + cyan: 69.6 + white: 87.9 + brightBlack: 28.7 + brightRed: 50.3 + brightGreen: 71.5 + brightYellow: 73.7 + brightBlue: 60.6 + brightMagenta: 50.7 + brightCyan: 69.6 + brightWhite: 107.9 diff --git a/themes/vesper-purple-ox--vesper-purple-light.yaml b/themes/vesper-purple-ox--vesper-purple-light.yaml new file mode 100644 index 00000000..424433f2 --- /dev/null +++ b/themes/vesper-purple-ox--vesper-purple-light.yaml @@ -0,0 +1,53 @@ +name: "Vesper Purple Ox (Vesper Purple Light)" +source: + marketplace_id: "0xfell.vesper-purple-ox" + version: "0.0.1" + installs: 298 + rating: 5 + ratings: 1 + author: "0xfell" + repo: "https://github.com/0xfell/vesper-purple" + url: "https://marketplace.visualstudio.com/items?itemName=0xfell.vesper-purple-ox" + formats: null +colors: + bg: "#F5F5F5" + fg: "#323232" + black: "#E5E5E5" + red: "#DC2626" + green: "#16A34A" + yellow: "#D97706" + blue: "#0284C7" + magenta: "#9066DF" + cyan: "#0891B2" + white: "#525252" + brightBlack: "#525252" + brightRed: "#DC2626" + brightGreen: "#16A34A" + brightYellow: "#D97706" + brightBlue: "#0284C7" + brightMagenta: "#7C3AED" + brightCyan: "#0891B2" + brightWhite: "#323232" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 93 + black: 0 + red: 65.6 + green: 53.8 + yellow: 52.5 + blue: 61.5 + magenta: 61.7 + cyan: 57.9 + white: 81.2 + brightBlack: 81.2 + brightRed: 65.6 + brightGreen: 53.8 + brightYellow: 52.5 + brightBlue: 61.5 + brightMagenta: 71.5 + brightCyan: 57.9 + brightWhite: 93 diff --git a/themes/vesper-purple-theme--vesper-purple-dark.yaml b/themes/vesper-purple-theme--vesper-purple-dark.yaml new file mode 100644 index 00000000..482cd41d --- /dev/null +++ b/themes/vesper-purple-theme--vesper-purple-dark.yaml @@ -0,0 +1,53 @@ +name: "Vesper Purple Theme (Vesper Purple Dark)" +source: + marketplace_id: "xinyao27.vesper-purple-theme" + version: "0.2.2" + installs: 2424 + rating: 0 + ratings: 0 + author: "Xinyao" + repo: "https://github.com/xinyao27/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xinyao27.vesper-purple-theme" + formats: null +colors: + bg: "#0A0A0A" + fg: "#DBD7CA" + black: "#323232" + red: "#FCA5A5" + green: "#16A34A" + yellow: "#EAB308" + blue: "#0369A1" + magenta: "#C391E6" + cyan: "#06B6D4" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#FCA5A5" + brightGreen: "#16A34A" + brightYellow: "#EAB308" + brightBlue: "#0369A1" + brightMagenta: "#C391E6" + brightCyan: "#06B6D4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 82.2 + black: 0 + red: 66.4 + green: 41.8 + yellow: 66 + blue: 22.6 + magenta: 53.5 + cyan: 54.7 + white: 82.2 + brightBlack: 30.4 + brightRed: 66.4 + brightGreen: 41.8 + brightYellow: 66 + brightBlue: 22.6 + brightMagenta: 53.5 + brightCyan: 54.7 + brightWhite: 107.7 diff --git a/themes/vesper-purple-theme--vesper-purple-light.yaml b/themes/vesper-purple-theme--vesper-purple-light.yaml new file mode 100644 index 00000000..9ac5e36e --- /dev/null +++ b/themes/vesper-purple-theme--vesper-purple-light.yaml @@ -0,0 +1,53 @@ +name: "Vesper Purple Theme (Vesper Purple Light)" +source: + marketplace_id: "xinyao27.vesper-purple-theme" + version: "0.2.2" + installs: 2424 + rating: 0 + ratings: 0 + author: "Xinyao" + repo: "https://github.com/xinyao27/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xinyao27.vesper-purple-theme" + formats: null +colors: + bg: "#F5F5F5" + fg: "#323232" + black: "#0A0A0A" + red: "#EF4444" + green: "#22C55E" + yellow: "#EAB308" + blue: "#0EA5E9" + magenta: "#9066DF" + cyan: "#06B6D4" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#EF4444" + brightGreen: "#22C55E" + brightYellow: "#EAB308" + brightBlue: "#0EA5E9" + brightMagenta: "#9066DF" + brightCyan: "#06B6D4" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 93 + black: 99.9 + red: 57.9 + green: 38.4 + yellow: 30.4 + blue: 46.9 + magenta: 61.7 + cyan: 41.2 + white: 15.1 + brightBlack: 39.9 + brightRed: 57.9 + brightGreen: 38.4 + brightYellow: 30.4 + brightBlue: 46.9 + brightMagenta: 61.7 + brightCyan: 41.2 + brightWhite: 11.6 diff --git a/themes/vibe.yaml b/themes/vibe.yaml new file mode 100644 index 00000000..f2788585 --- /dev/null +++ b/themes/vibe.yaml @@ -0,0 +1,53 @@ +name: "vibe" +source: + marketplace_id: "yondav.vibe" + version: "2.0.1" + installs: 1543 + rating: 0 + ratings: 0 + author: "yondav" + repo: "https://github.com/yondav-configs/vibe" + url: "https://marketplace.visualstudio.com/items?itemName=yondav.vibe" + formats: null +colors: + bg: "#161618" + fg: "#F1EBF3" + black: "#222222" + red: "#FF8D8D" + green: "#89DF95" + yellow: "#FCE789" + blue: "#729FCF" + magenta: "#B37EBC" + cyan: "#55DBE0" + white: "#FAFAFA" + brightBlack: "#333333" + brightRed: "#FF4646" + brightGreen: "#55ED6A" + brightYellow: "#FFE055" + brightBlue: "#49B8FD" + brightMagenta: "#D87DE4" + brightCyan: "#1CF3FB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.1 + black: 0 + red: 57.8 + green: 74.8 + yellow: 91.2 + blue: 47.5 + magenta: 42.1 + cyan: 72.9 + white: 103.6 + brightBlack: 0 + brightRed: 41 + brightGreen: 78 + brightYellow: 87.7 + brightBlue: 58.4 + brightMagenta: 50 + brightCyan: 84.9 + brightWhite: 107 diff --git a/themes/vibey-theme.yaml b/themes/vibey-theme.yaml new file mode 100644 index 00000000..50e3ea5f --- /dev/null +++ b/themes/vibey-theme.yaml @@ -0,0 +1,53 @@ +name: "Vibey Theme" +source: + marketplace_id: "FusionTerror.vibey-theme" + version: "0.0.3" + installs: 910 + rating: 5 + ratings: 1 + author: "Fusion Terror" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=FusionTerror.vibey-theme" + formats: null +colors: + bg: "#301830" + fg: "#C0D8F0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 327 + pair: null + contrast: + fg: 78.8 + black: 0 + red: 25.4 + green: 51.7 + yellow: 84.3 + blue: 26.1 + magenta: 28.4 + cyan: 46.2 + white: 88.7 + brightBlack: 20.7 + brightRed: 37.2 + brightGreen: 62.2 + brightYellow: 94.3 + brightBlue: 38.7 + brightMagenta: 44 + brightCyan: 54.1 + brightWhite: 88.7 diff --git a/themes/vibrant-abyss.yaml b/themes/vibrant-abyss.yaml new file mode 100644 index 00000000..b4210891 --- /dev/null +++ b/themes/vibrant-abyss.yaml @@ -0,0 +1,53 @@ +name: "Vibrant Abyss" +source: + marketplace_id: "noelhorvath.vibrant-abyss" + version: "0.4.13" + installs: 1576 + rating: 0 + ratings: 0 + author: "Noel Horváth" + repo: "https://github.com/noelhorvath/vibrant-abyss" + url: "https://marketplace.visualstudio.com/items?itemName=noelhorvath.vibrant-abyss" + formats: null +colors: + bg: "#000000" + fg: "#DEDEDE" + black: "#1A1A1A" + red: "#FF6439" + green: "#26E019" + yellow: "#E7D427" + blue: "#34A7FF" + magenta: "#D129C2" + cyan: "#0BDEE3" + white: "#CDCDCD" + brightBlack: "#2A2A2A" + brightRed: "#FF8566" + brightGreen: "#5FD789" + brightYellow: "#FFEE00" + brightBlue: "#4EC1FB" + brightMagenta: "#FE77EF" + brightCyan: "#0DF8FC" + brightWhite: "#DEDEDE" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 86.6 + black: 0 + red: 46.8 + green: 70.5 + yellow: 79.3 + blue: 51.8 + magenta: 33 + cyan: 74.1 + white: 76.3 + brightBlack: 0 + brightRed: 55.5 + brightGreen: 69.1 + brightYellow: 94.6 + brightBlue: 63.2 + brightMagenta: 57.2 + brightCyan: 88.4 + brightWhite: 86.6 diff --git a/themes/vicos-theme.yaml b/themes/vicos-theme.yaml new file mode 100644 index 00000000..219296ac --- /dev/null +++ b/themes/vicos-theme.yaml @@ -0,0 +1,53 @@ +name: "Vicos' Theme" +source: + marketplace_id: "vguegan.vicos-theme" + version: "1.0.1" + installs: 409 + rating: 0 + ratings: 0 + author: "Victor Guegan" + repo: "https://github.com/GueganVictor/vicos-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vguegan.vicos-theme" + formats: null +colors: + bg: "#191919" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#DB889A" + cyan: "#5EAAB5" + white: "#FFFFFF" + brightBlack: "#393A34" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#DB889A" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 81.1 + black: 0 + red: 40.6 + green: 36.5 + yellow: 75.4 + blue: 41.1 + magenta: 49.7 + cyan: 49.1 + white: 106.7 + brightBlack: 0 + brightRed: 40.6 + brightGreen: 36.5 + brightYellow: 75.4 + brightBlue: 41.1 + brightMagenta: 49.7 + brightCyan: 49.1 + brightWhite: 106.7 diff --git a/themes/victoria--victoria-dark.yaml b/themes/victoria--victoria-dark.yaml new file mode 100644 index 00000000..0affd23d --- /dev/null +++ b/themes/victoria--victoria-dark.yaml @@ -0,0 +1,53 @@ +name: "Victoria (Victoria Dark)" +source: + marketplace_id: "lucidlabs.victoria-theme" + version: "1.3.0" + installs: 6 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.victoria-theme" + formats: null +colors: + bg: "#0C0E18" + fg: "#E8EDF3" + black: "#0C0E18" + red: "#E22339" + green: "#6BBE27" + yellow: "#FFCC2C" + blue: "#0052C2" + magenta: "#003174" + cyan: "#5B9BD5" + white: "#E8EDF3" + brightBlack: "#78797E" + brightRed: "#FF4D5E" + brightGreen: "#78D65B" + brightYellow: "#FFE066" + brightBlue: "#3D7FD6" + brightMagenta: "#E07AFF" + brightCyan: "#7EB8DA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 275 + pair: null + contrast: + fg: 95.4 + black: 0 + red: 31.1 + green: 56.1 + yellow: 79.3 + blue: 18.1 + magenta: 0 + cyan: 45.5 + white: 95.4 + brightBlack: 31.2 + brightRed: 42.9 + brightGreen: 68.7 + brightYellow: 88.5 + brightBlue: 34 + brightMagenta: 53 + brightCyan: 59.7 + brightWhite: 107.5 diff --git a/themes/victoria--victoria-light.yaml b/themes/victoria--victoria-light.yaml new file mode 100644 index 00000000..62d45239 --- /dev/null +++ b/themes/victoria--victoria-light.yaml @@ -0,0 +1,53 @@ +name: "Victoria (Victoria Light)" +source: + marketplace_id: "lucidlabs.victoria-theme" + version: "1.3.0" + installs: 6 + rating: 0 + ratings: 0 + author: "Lucid Labs" + repo: "https://github.com/LucidLabsAU/lucid-labs-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=lucidlabs.victoria-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#0C0E18" + black: "#0C0E18" + red: "#E22339" + green: "#0A690D" + yellow: "#B38800" + blue: "#0052C2" + magenta: "#003174" + cyan: "#006A8F" + white: "#FFFFFF" + brightBlack: "#78797E" + brightRed: "#8A1220" + brightGreen: "#339D37" + brightYellow: "#FFCC2C" + brightBlue: "#003DA0" + brightMagenta: "#001E50" + brightCyan: "#5B9BD5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.6 + black: 105.6 + red: 70.2 + green: 83.3 + yellow: 59.7 + blue: 83.4 + magenta: 97.5 + cyan: 79.8 + white: 0 + brightBlack: 70.1 + brightRed: 90.5 + brightGreen: 62 + brightYellow: 23.5 + brightBlue: 91.4 + brightMagenta: 102.6 + brightCyan: 56 + brightWhite: 0 diff --git a/themes/vim-theme--vim-dark-hard.yaml b/themes/vim-theme--vim-dark-hard.yaml new file mode 100644 index 00000000..1021d9f7 --- /dev/null +++ b/themes/vim-theme--vim-dark-hard.yaml @@ -0,0 +1,53 @@ +name: "Vim Theme (Vim Dark Hard)" +source: + marketplace_id: "HarryHopkinson.vim-theme" + version: "1.1.8" + installs: 181274 + rating: 5 + ratings: 8 + author: "HarryHopkinson" + repo: "https://github.com/Harry-Hopkinson/vim-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=HarryHopkinson.vim-theme" + formats: null +colors: + bg: "#1D2021" + fg: "#EBDBB2" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Vim Theme (Vim Light Hard)" + contrast: + fg: 83.3 + black: 0 + red: 24.2 + green: 41.9 + yellow: 51.5 + blue: 30.5 + magenta: 30.7 + cyan: 40.9 + white: 46.2 + brightBlack: 35.3 + brightRed: 39.1 + brightGreen: 60.1 + brightYellow: 70.8 + brightBlue: 47.6 + brightMagenta: 46.9 + brightCyan: 59.1 + brightWhite: 83.3 diff --git a/themes/vim-theme--vim-dark-medium.yaml b/themes/vim-theme--vim-dark-medium.yaml new file mode 100644 index 00000000..9d520ffc --- /dev/null +++ b/themes/vim-theme--vim-dark-medium.yaml @@ -0,0 +1,53 @@ +name: "Vim Theme (Vim Dark Medium)" +source: + marketplace_id: "HarryHopkinson.vim-theme" + version: "1.1.8" + installs: 181274 + rating: 5 + ratings: 8 + author: "HarryHopkinson" + repo: "https://github.com/Harry-Hopkinson/vim-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=HarryHopkinson.vim-theme" + formats: null +colors: + bg: "#282828" + fg: "#EBDBB2" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Vim Theme (Vim Light Medium)" + contrast: + fg: 81.9 + black: 0 + red: 22.8 + green: 40.5 + yellow: 50.1 + blue: 29.1 + magenta: 29.3 + cyan: 39.5 + white: 44.8 + brightBlack: 33.9 + brightRed: 37.7 + brightGreen: 58.7 + brightYellow: 69.4 + brightBlue: 46.2 + brightMagenta: 45.5 + brightCyan: 57.7 + brightWhite: 81.9 diff --git a/themes/vim-theme--vim-dark-soft.yaml b/themes/vim-theme--vim-dark-soft.yaml new file mode 100644 index 00000000..742be04b --- /dev/null +++ b/themes/vim-theme--vim-dark-soft.yaml @@ -0,0 +1,53 @@ +name: "Vim Theme (Vim Dark Soft)" +source: + marketplace_id: "HarryHopkinson.vim-theme" + version: "1.1.8" + installs: 181274 + rating: 5 + ratings: 8 + author: "HarryHopkinson" + repo: "https://github.com/Harry-Hopkinson/vim-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=HarryHopkinson.vim-theme" + formats: null +colors: + bg: "#32302F" + fg: "#EBDBB2" + black: "#3C3836" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#A89984" + brightBlack: "#928374" + brightRed: "#FB4934" + brightGreen: "#B8BB26" + brightYellow: "#FABD2F" + brightBlue: "#83A598" + brightMagenta: "#D3869B" + brightCyan: "#8EC07C" + brightWhite: "#EBDBB2" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: "Vim Theme (Vim Light Soft)" + contrast: + fg: 80.2 + black: 0 + red: 21.1 + green: 38.7 + yellow: 48.3 + blue: 27.4 + magenta: 27.5 + cyan: 37.7 + white: 43 + brightBlack: 32.2 + brightRed: 36 + brightGreen: 57 + brightYellow: 67.6 + brightBlue: 44.4 + brightMagenta: 43.8 + brightCyan: 55.9 + brightWhite: 80.2 diff --git a/themes/vim-theme--vim-light-hard.yaml b/themes/vim-theme--vim-light-hard.yaml new file mode 100644 index 00000000..835194b3 --- /dev/null +++ b/themes/vim-theme--vim-light-hard.yaml @@ -0,0 +1,53 @@ +name: "Vim Theme (Vim Light Hard)" +source: + marketplace_id: "HarryHopkinson.vim-theme" + version: "1.1.8" + installs: 181274 + rating: 5 + ratings: 8 + author: "HarryHopkinson" + repo: "https://github.com/Harry-Hopkinson/vim-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=HarryHopkinson.vim-theme" + formats: null +colors: + bg: "#F9F5D7" + fg: "#3C3836" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Vim Theme (Vim Dark Hard)" + contrast: + fg: 90.1 + black: 11.5 + red: 68.8 + green: 51.2 + yellow: 41.8 + blue: 62.4 + magenta: 62.3 + cyan: 52.1 + white: 67.1 + brightBlack: 57.7 + brightRed: 80.4 + brightGreen: 67 + brightYellow: 58.3 + brightBlue: 75.6 + brightMagenta: 76.1 + brightCyan: 67.8 + brightWhite: 90.1 diff --git a/themes/vim-theme--vim-light-medium.yaml b/themes/vim-theme--vim-light-medium.yaml new file mode 100644 index 00000000..17feff39 --- /dev/null +++ b/themes/vim-theme--vim-light-medium.yaml @@ -0,0 +1,53 @@ +name: "Vim Theme (Vim Light Medium)" +source: + marketplace_id: "HarryHopkinson.vim-theme" + version: "1.1.8" + installs: 181274 + rating: 5 + ratings: 8 + author: "HarryHopkinson" + repo: "https://github.com/Harry-Hopkinson/vim-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=HarryHopkinson.vim-theme" + formats: null +colors: + bg: "#FBF1C7" + fg: "#3C3836" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: null + pair: "Vim Theme (Vim Dark Medium)" + contrast: + fg: 88.1 + black: 9.5 + red: 66.8 + green: 49.2 + yellow: 39.9 + blue: 60.5 + magenta: 60.3 + cyan: 50.2 + white: 65.1 + brightBlack: 55.7 + brightRed: 78.4 + brightGreen: 65 + brightYellow: 56.3 + brightBlue: 73.6 + brightMagenta: 74.1 + brightCyan: 65.8 + brightWhite: 88.1 diff --git a/themes/vim-theme--vim-light-soft.yaml b/themes/vim-theme--vim-light-soft.yaml new file mode 100644 index 00000000..8851b9a0 --- /dev/null +++ b/themes/vim-theme--vim-light-soft.yaml @@ -0,0 +1,53 @@ +name: "Vim Theme (Vim Light Soft)" +source: + marketplace_id: "HarryHopkinson.vim-theme" + version: "1.1.8" + installs: 181274 + rating: 5 + ratings: 8 + author: "HarryHopkinson" + repo: "https://github.com/Harry-Hopkinson/vim-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=HarryHopkinson.vim-theme" + formats: null +colors: + bg: "#F2E5BC" + fg: "#3C3836" + black: "#EBDBB2" + red: "#CC241D" + green: "#98971A" + yellow: "#D79921" + blue: "#458588" + magenta: "#B16286" + cyan: "#689D6A" + white: "#7C6F64" + brightBlack: "#928374" + brightRed: "#9D0006" + brightGreen: "#79740E" + brightYellow: "#B57614" + brightBlue: "#076678" + brightMagenta: "#8F3F71" + brightCyan: "#427B58" + brightWhite: "#3C3836" +meta: + mode: "light" + accent: "orange" + hue: 93 + pair: "Vim Theme (Vim Dark Soft)" + contrast: + fg: 81.5 + black: 0 + red: 60.3 + green: 42.6 + yellow: 33.3 + blue: 53.9 + magenta: 53.8 + cyan: 43.6 + white: 58.6 + brightBlack: 49.1 + brightRed: 71.8 + brightGreen: 58.4 + brightYellow: 49.8 + brightBlue: 67 + brightMagenta: 67.5 + brightCyan: 59.2 + brightWhite: 81.5 diff --git a/themes/vincent-van-gogh-painting-themes--starry-night.yaml b/themes/vincent-van-gogh-painting-themes--starry-night.yaml new file mode 100644 index 00000000..dd562d78 --- /dev/null +++ b/themes/vincent-van-gogh-painting-themes--starry-night.yaml @@ -0,0 +1,53 @@ +name: "Vincent van Gogh Painting Themes (Starry Night)" +source: + marketplace_id: "XadillaX.van-gogh-paintings" + version: "1.0.0" + installs: 960 + rating: 0 + ratings: 0 + author: "XadillaX" + repo: "https://github.com/XadillaX/vscode-mir2-colorscheme" + url: "https://marketplace.visualstudio.com/items?itemName=XadillaX.van-gogh-paintings" + formats: null +colors: + bg: "#626394" + fg: "#D9CD6C" + black: "#626394" + red: "#575761" + green: "#E9C53C" + yellow: "#B8CACD" + blue: "#989AA1" + magenta: "#353658" + cyan: "#B4C6A7" + white: "#C8BE72" + brightBlack: "#73728E" + brightRed: "#BAC23A" + brightGreen: "#B4C6A7" + brightYellow: "#B8CACD" + brightBlue: "#989AA1" + brightMagenta: "#353658" + brightCyan: "#B4C6A7" + brightWhite: "#D9CD6C" +meta: + mode: "light" + accent: "green" + hue: 282 + pair: null + contrast: + fg: 50.5 + black: 0 + red: 0 + green: 48.8 + yellow: 48 + blue: 23.3 + magenta: 16.4 + cyan: 44.3 + white: 41.9 + brightBlack: 0 + brightRed: 41 + brightGreen: 44.3 + brightYellow: 48 + brightBlue: 23.3 + brightMagenta: 16.4 + brightCyan: 44.3 + brightWhite: 50.5 diff --git a/themes/vincent-van-gogh-painting-themes--vase-with-twelve-sunflowers.yaml b/themes/vincent-van-gogh-painting-themes--vase-with-twelve-sunflowers.yaml new file mode 100644 index 00000000..a65149e8 --- /dev/null +++ b/themes/vincent-van-gogh-painting-themes--vase-with-twelve-sunflowers.yaml @@ -0,0 +1,53 @@ +name: "Vincent van Gogh Painting Themes (Vase with Twelve Sunflowers)" +source: + marketplace_id: "XadillaX.van-gogh-paintings" + version: "1.0.0" + installs: 960 + rating: 0 + ratings: 0 + author: "XadillaX" + repo: "https://github.com/XadillaX/vscode-mir2-colorscheme" + url: "https://marketplace.visualstudio.com/items?itemName=XadillaX.van-gogh-paintings" + formats: null +colors: + bg: "#B7C6B2" + fg: "#685A27" + black: "#B7C6B2" + red: "#D2AB53" + green: "#632B17" + yellow: "#DAC371" + blue: "#CEA032" + magenta: "#9E6A28" + cyan: "#718656" + white: "#73693B" + brightBlack: "#ACB79E" + brightRed: "#67714B" + brightGreen: "#718656" + brightYellow: "#DAC371" + brightBlue: "#CEA032" + brightMagenta: "#9E6A28" + brightCyan: "#718656" + brightWhite: "#685A27" +meta: + mode: "light" + accent: "yellow" + hue: 138 + pair: null + contrast: + fg: 48.2 + black: 0 + red: 0 + green: 59.9 + yellow: 0 + blue: 12.1 + magenta: 36.6 + cyan: 32 + white: 42.2 + brightBlack: 0 + brightRed: 40.5 + brightGreen: 32 + brightYellow: 0 + brightBlue: 12.1 + brightMagenta: 36.6 + brightCyan: 32 + brightWhite: 48.2 diff --git a/themes/vintage-story-theme.yaml b/themes/vintage-story-theme.yaml new file mode 100644 index 00000000..9d93fdd9 --- /dev/null +++ b/themes/vintage-story-theme.yaml @@ -0,0 +1,53 @@ +name: "Vintage Story Theme" +source: + marketplace_id: "mssxmt.vintage-story-theme" + version: "0.1.2" + installs: 10 + rating: 0 + ratings: 0 + author: "mssxmt" + repo: "https://github.com/mssxmt/vintage-story-theme" + url: "https://marketplace.visualstudio.com/items?itemName=mssxmt.vintage-story-theme" + formats: null +colors: + bg: "#0C5071" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#00CDFF" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#1383FF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 236 + pair: null + contrast: + fg: 66.7 + black: 14.4 + red: 13.9 + green: 40.2 + yellow: 72.8 + blue: 14.6 + magenta: 17 + cyan: 53.9 + white: 77.2 + brightBlack: 9.2 + brightRed: 25.8 + brightGreen: 50.7 + brightYellow: 82.8 + brightBlue: 24.3 + brightMagenta: 32.6 + brightCyan: 42.6 + brightWhite: 77.2 diff --git a/themes/violet-night-theme.yaml b/themes/violet-night-theme.yaml new file mode 100644 index 00000000..92975b0b --- /dev/null +++ b/themes/violet-night-theme.yaml @@ -0,0 +1,53 @@ +name: "Violet Night Theme" +source: + marketplace_id: "MaryamRezaee.violet-night-theme" + version: "0.2.0" + installs: 453 + rating: 5 + ratings: 3 + author: "Maryam Rezaee" + repo: "https://github.com/msmrexe/violet-night-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MaryamRezaee.violet-night-theme" + formats: null +colors: + bg: "#080808" + fg: "#E1E1E1" + black: "#434343" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#CCCCCC" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 88.4 + black: 9.4 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.7 + cyan: 48.5 + white: 75.6 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 40.9 + brightMagenta: 46.3 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/vishwakarma-theme--vishwakarma-sunset-glow.yaml b/themes/vishwakarma-theme--vishwakarma-sunset-glow.yaml new file mode 100644 index 00000000..06a3bd1a --- /dev/null +++ b/themes/vishwakarma-theme--vishwakarma-sunset-glow.yaml @@ -0,0 +1,53 @@ +name: "Vishwakarma Theme (Vishwakarma Sunset Glow)" +source: + marketplace_id: "VishwakarmaIndustries0abhishek.vishwakarma-theme" + version: "1.0.0" + installs: 883 + rating: 5 + ratings: 1 + author: "Vishwakarma Industries" + repo: "https://github.com/vishwakarma-industries/vishwakarma-theme" + url: "https://marketplace.visualstudio.com/items?itemName=VishwakarmaIndustries0abhishek.vishwakarma-theme" + formats: null +colors: + bg: "#FAF8F5" + fg: "#2D2A26" + black: "#24292F" + red: "#CF222E" + green: "#116329" + yellow: "#4D2D00" + blue: "#0969DA" + magenta: "#8250DF" + cyan: "#1B7C83" + white: "#6E7781" + brightBlack: "#57606A" + brightRed: "#A40E26" + brightGreen: "#1A7F37" + brightYellow: "#633C01" + brightBlue: "#218BFF" + brightMagenta: "#A475F9" + brightCyan: "#3192AA" + brightWhite: "#8C959F" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 97 + black: 97.4 + red: 70.7 + green: 81.2 + yellow: 93.9 + blue: 70.9 + magenta: 70.3 + cyan: 69.7 + white: 67.5 + brightBlack: 77.7 + brightRed: 81.2 + brightGreen: 70.5 + brightYellow: 88 + brightBlue: 56.6 + brightMagenta: 55.3 + brightCyan: 59.3 + brightWhite: 53.1 diff --git a/themes/visual-studio-fleet.yaml b/themes/visual-studio-fleet.yaml new file mode 100644 index 00000000..6af611a4 --- /dev/null +++ b/themes/visual-studio-fleet.yaml @@ -0,0 +1,53 @@ +name: "Visual Studio Fleet" +source: + marketplace_id: "anto.vs-fleet" + version: "2.0.1" + installs: 2762 + rating: 4 + ratings: 1 + author: "anto" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=anto.vs-fleet" + formats: null +colors: + bg: "#060606" + fg: "#DFDFDF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 87.2 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/visualassistgruvboxtheme.yaml b/themes/visualassistgruvboxtheme.yaml new file mode 100644 index 00000000..978f2176 --- /dev/null +++ b/themes/visualassistgruvboxtheme.yaml @@ -0,0 +1,53 @@ +name: "VisualAssistGruvboxTheme" +source: + marketplace_id: "MinchCoder.visual-assist-gruvbox-theme" + version: "0.7.11" + installs: 377 + rating: 5 + ratings: 1 + author: "Minch Coder" + repo: "https://github.com/Minchh/vscode-gruvbox-visualassist-theme" + url: "https://marketplace.visualstudio.com/items?itemName=MinchCoder.visual-assist-gruvbox-theme" + formats: null +colors: + bg: "#1D2021" + fg: "#EBDBB2" + black: "#1E1E1E" + red: "#CC241D" + green: "#87AD72" + yellow: "#CEA800" + blue: "#569CD6" + magenta: "#D8A0DF" + cyan: "#4CE2E2" + white: "#EEEEEE" + brightBlack: "#131313" + brightRed: "#FB4934" + brightGreen: "#B5CEA8" + brightYellow: "#FFD700" + brightBlue: "#7ABCF3" + brightMagenta: "#F0C2F7" + brightCyan: "#9FFFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 83.3 + black: 0 + red: 24.2 + green: 50.1 + yellow: 55.4 + blue: 44 + magenta: 59.3 + cyan: 75 + white: 94.7 + brightBlack: 0 + brightRed: 39.1 + brightGreen: 70.4 + brightYellow: 82.2 + brightBlue: 60.8 + brightMagenta: 76.7 + brightCyan: 95.3 + brightWhite: 105.8 diff --git a/themes/vitepress-theme--unofficial.yaml b/themes/vitepress-theme--unofficial.yaml new file mode 100644 index 00000000..9c67da5f --- /dev/null +++ b/themes/vitepress-theme--unofficial.yaml @@ -0,0 +1,53 @@ +name: "VitePress Theme (unofficial)" +source: + marketplace_id: "zanfee.theme-vitepress" + version: "0.0.2" + installs: 691 + rating: 0 + ratings: 0 + author: "Jan Fröhlich" + repo: "https://github.com/zanfee/vscode-theme-vitepress" + url: "https://marketplace.visualstudio.com/items?itemName=zanfee.theme-vitepress" + formats: null +colors: + bg: "#1E1E20" + fg: "#FFFFF5" + black: "#000000" + red: "#F07178" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#676E95" + brightRed: "#F07178" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 105.6 + black: 0 + red: 45.7 + green: 83.3 + yellow: 78.1 + blue: 55.1 + magenta: 52.9 + cyan: 77.4 + white: 106 + brightBlack: 25.6 + brightRed: 45.7 + brightGreen: 83.3 + brightYellow: 78.1 + brightBlue: 55.1 + brightMagenta: 52.9 + brightCyan: 77.4 + brightWhite: 106 diff --git a/themes/vitesse-theme--vitesse-black.yaml b/themes/vitesse-theme--vitesse-black.yaml new file mode 100644 index 00000000..4cd395ad --- /dev/null +++ b/themes/vitesse-theme--vitesse-black.yaml @@ -0,0 +1,53 @@ +name: "Vitesse Theme (Vitesse Black)" +source: + marketplace_id: "antfu.theme-vitesse" + version: "1.0.1" + installs: 108829 + rating: 4.79 + ratings: 19 + author: "Anthony Fu" + repo: "https://github.com/antfu/vscode-theme-vitesse" + url: "https://marketplace.visualstudio.com/items?itemName=antfu.theme-vitesse" + formats: null +colors: + bg: "#000000" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 82.3 + black: 0 + red: 41.8 + green: 37.7 + yellow: 76.6 + blue: 42.4 + magenta: 44.9 + cyan: 50.3 + white: 82.3 + brightBlack: 30.6 + brightRed: 41.8 + brightGreen: 37.7 + brightYellow: 76.6 + brightBlue: 42.4 + brightMagenta: 44.9 + brightCyan: 50.3 + brightWhite: 107.9 diff --git a/themes/vitesse-theme--vitesse-dark-soft.yaml b/themes/vitesse-theme--vitesse-dark-soft.yaml new file mode 100644 index 00000000..e57927ae --- /dev/null +++ b/themes/vitesse-theme--vitesse-dark-soft.yaml @@ -0,0 +1,53 @@ +name: "Vitesse Theme (Vitesse Dark Soft)" +source: + marketplace_id: "antfu.theme-vitesse" + version: "1.0.1" + installs: 108829 + rating: 4.79 + ratings: 19 + author: "Anthony Fu" + repo: "https://github.com/antfu/vscode-theme-vitesse" + url: "https://marketplace.visualstudio.com/items?itemName=antfu.theme-vitesse" + formats: null +colors: + bg: "#222222" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: "Vitesse Theme (Vitesse Light Soft)" + contrast: + fg: 79.9 + black: 0 + red: 39.4 + green: 35.3 + yellow: 74.2 + blue: 39.9 + magenta: 42.5 + cyan: 47.9 + white: 79.9 + brightBlack: 28.1 + brightRed: 39.4 + brightGreen: 35.3 + brightYellow: 74.2 + brightBlue: 39.9 + brightMagenta: 42.5 + brightCyan: 47.9 + brightWhite: 105.5 diff --git a/themes/vitesse-theme--vitesse-dark.yaml b/themes/vitesse-theme--vitesse-dark.yaml new file mode 100644 index 00000000..d01bd2b5 --- /dev/null +++ b/themes/vitesse-theme--vitesse-dark.yaml @@ -0,0 +1,53 @@ +name: "Vitesse Theme (Vitesse Dark)" +source: + marketplace_id: "antfu.theme-vitesse" + version: "1.0.1" + installs: 108829 + rating: 4.79 + ratings: 19 + author: "Anthony Fu" + repo: "https://github.com/antfu/vscode-theme-vitesse" + url: "https://marketplace.visualstudio.com/items?itemName=antfu.theme-vitesse" + formats: null +colors: + bg: "#121212" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#D9739F" + cyan: "#5EAAB5" + white: "#DBD7CA" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#D9739F" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 81.7 + black: 0 + red: 41.2 + green: 37.1 + yellow: 76 + blue: 41.8 + magenta: 44.3 + cyan: 49.7 + white: 81.7 + brightBlack: 30 + brightRed: 41.2 + brightGreen: 37.1 + brightYellow: 76 + brightBlue: 41.8 + brightMagenta: 44.3 + brightCyan: 49.7 + brightWhite: 107.3 diff --git a/themes/vitesse-theme--vitesse-light-soft.yaml b/themes/vitesse-theme--vitesse-light-soft.yaml new file mode 100644 index 00000000..90df6ce2 --- /dev/null +++ b/themes/vitesse-theme--vitesse-light-soft.yaml @@ -0,0 +1,53 @@ +name: "Vitesse Theme (Vitesse Light Soft)" +source: + marketplace_id: "antfu.theme-vitesse" + version: "1.0.1" + installs: 108829 + rating: 4.79 + ratings: 19 + author: "Anthony Fu" + repo: "https://github.com/antfu/vscode-theme-vitesse" + url: "https://marketplace.visualstudio.com/items?itemName=antfu.theme-vitesse" + formats: null +colors: + bg: "#F1F0E9" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + pair: "Vitesse Theme (Vitesse Dark Soft)" + contrast: + fg: 87.4 + black: 96.2 + red: 64.4 + green: 68.8 + yellow: 39.2 + blue: 69.1 + magenta: 72 + cyan: 54.4 + white: 12 + brightBlack: 36.7 + brightRed: 64.4 + brightGreen: 68.8 + brightYellow: 39.2 + brightBlue: 69.1 + brightMagenta: 72 + brightCyan: 54.4 + brightWhite: 8.5 diff --git a/themes/vitesse-theme--vitesse-light.yaml b/themes/vitesse-theme--vitesse-light.yaml new file mode 100644 index 00000000..ff5a5c59 --- /dev/null +++ b/themes/vitesse-theme--vitesse-light.yaml @@ -0,0 +1,53 @@ +name: "Vitesse Theme (Vitesse Light)" +source: + marketplace_id: "antfu.theme-vitesse" + version: "1.0.1" + installs: 108829 + rating: 4.79 + ratings: 19 + author: "Anthony Fu" + repo: "https://github.com/antfu/vscode-theme-vitesse" + url: "https://marketplace.visualstudio.com/items?itemName=antfu.theme-vitesse" + formats: null +colors: + bg: "#FFFFFF" + fg: "#393A34" + black: "#121212" + red: "#AB5959" + green: "#1E754F" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#A13865" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1E754F" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#A13865" + brightCyan: "#2993A3" + brightWhite: "#DDDDDD" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 96.5 + black: 105.3 + red: 73.5 + green: 77.9 + yellow: 48.3 + blue: 78.2 + magenta: 81.1 + cyan: 63.5 + white: 21.1 + brightBlack: 45.8 + brightRed: 73.5 + brightGreen: 77.9 + brightYellow: 48.3 + brightBlue: 78.2 + brightMagenta: 81.1 + brightCyan: 63.5 + brightWhite: 17.6 diff --git a/themes/vitesse-theme-gray--vitesse-dark.yaml b/themes/vitesse-theme-gray--vitesse-dark.yaml new file mode 100644 index 00000000..0e64c408 --- /dev/null +++ b/themes/vitesse-theme-gray--vitesse-dark.yaml @@ -0,0 +1,53 @@ +name: "Vitesse Theme Gray (Vitesse Dark)" +source: + marketplace_id: "loosheng.theme-vitesse-grey" + version: "0.1.15" + installs: 2239 + rating: 0 + ratings: 0 + author: "LooSheng" + repo: "https://github.com/loosheng/vscode-theme-vitesse-grey" + url: "https://marketplace.visualstudio.com/items?itemName=loosheng.theme-vitesse-grey" + formats: null +colors: + bg: "#1D1F21" + fg: "#DBD7CA" + black: "#393A34" + red: "#CB7676" + green: "#4D9375" + yellow: "#E6CC77" + blue: "#6394BF" + magenta: "#DB889A" + cyan: "#5EAAB5" + white: "#FFFFFF" + brightBlack: "#777777" + brightRed: "#CB7676" + brightGreen: "#4D9375" + brightYellow: "#E6CC77" + brightBlue: "#6394BF" + brightMagenta: "#DB889A" + brightCyan: "#5EAAB5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 80.4 + black: 0 + red: 39.8 + green: 35.7 + yellow: 74.7 + blue: 40.4 + magenta: 49 + cyan: 48.3 + white: 105.9 + brightBlack: 28.6 + brightRed: 39.8 + brightGreen: 35.7 + brightYellow: 74.7 + brightBlue: 40.4 + brightMagenta: 49 + brightCyan: 48.3 + brightWhite: 105.9 diff --git a/themes/vitesse-theme-gray--vitesse-light.yaml b/themes/vitesse-theme-gray--vitesse-light.yaml new file mode 100644 index 00000000..a53930f5 --- /dev/null +++ b/themes/vitesse-theme-gray--vitesse-light.yaml @@ -0,0 +1,53 @@ +name: "Vitesse Theme Gray (Vitesse Light)" +source: + marketplace_id: "loosheng.theme-vitesse-grey" + version: "0.1.15" + installs: 2239 + rating: 0 + ratings: 0 + author: "LooSheng" + repo: "https://github.com/loosheng/vscode-theme-vitesse-grey" + url: "https://marketplace.visualstudio.com/items?itemName=loosheng.theme-vitesse-grey" + formats: null +colors: + bg: "#FFFFFF" + fg: "#393A34" + black: "#1D1F21" + red: "#AB5959" + green: "#1C6B48" + yellow: "#BDA437" + blue: "#296AA3" + magenta: "#B05A78" + cyan: "#2993A3" + white: "#DBD7CA" + brightBlack: "#AAAAAA" + brightRed: "#AB5959" + brightGreen: "#1C6B48" + brightYellow: "#BDA437" + brightBlue: "#296AA3" + brightMagenta: "#B05A78" + brightCyan: "#2993A3" + brightWhite: "#DBD7CA" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 96.5 + black: 103.5 + red: 73.5 + green: 81.8 + yellow: 48.3 + blue: 78.2 + magenta: 71.5 + cyan: 63.5 + white: 21.1 + brightBlack: 45.8 + brightRed: 73.5 + brightGreen: 81.8 + brightYellow: 48.3 + brightBlue: 78.2 + brightMagenta: 71.5 + brightCyan: 63.5 + brightWhite: 21.1 diff --git a/themes/vivid-nord.yaml b/themes/vivid-nord.yaml new file mode 100644 index 00000000..737128a5 --- /dev/null +++ b/themes/vivid-nord.yaml @@ -0,0 +1,53 @@ +name: "Vivid Nord" +source: + marketplace_id: "stnord.vivid-nord" + version: "3.0.0" + installs: 1128 + rating: 0 + ratings: 0 + author: "stnord" + repo: "https://github.com/LyonAlpha/vivid-nord" + url: "https://marketplace.visualstudio.com/items?itemName=stnord.vivid-nord" + formats: null +colors: + bg: "#334055" + fg: "#CDC4C4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 260 + pair: null + contrast: + fg: 62.5 + black: 9.6 + red: 18.1 + green: 44.4 + yellow: 77 + blue: 18.8 + magenta: 21.2 + cyan: 39 + white: 81.4 + brightBlack: 13.4 + brightRed: 30 + brightGreen: 54.9 + brightYellow: 87 + brightBlue: 31.4 + brightMagenta: 36.8 + brightCyan: 46.8 + brightWhite: 81.4 diff --git a/themes/vkttheme.yaml b/themes/vkttheme.yaml new file mode 100644 index 00000000..c47a803f --- /dev/null +++ b/themes/vkttheme.yaml @@ -0,0 +1,53 @@ +name: "VktTheme" +source: + marketplace_id: "PedroMakaveli.VktTheme" + version: "1.0.0" + installs: 3217 + rating: 5 + ratings: 1 + author: "Pedro Makaveli" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=PedroMakaveli.VktTheme" + formats: null +colors: + bg: "#0E0C13" + fg: "#9EFDC8" + black: "#7BFF68" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#1BFFDF" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#FFE0E0" + brightBlack: "#828282" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#439CFF" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 298 + pair: null + contrast: + fg: 93.6 + black: 89.8 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 90.4 + magenta: 30.5 + cyan: 48.3 + white: 92.1 + brightBlack: 35.4 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 47.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 107.6 diff --git a/themes/vlad-studio-tiniri-theme--tiniri-dark.yaml b/themes/vlad-studio-tiniri-theme--tiniri-dark.yaml new file mode 100644 index 00000000..e78587ed --- /dev/null +++ b/themes/vlad-studio-tiniri-theme--tiniri-dark.yaml @@ -0,0 +1,53 @@ +name: "Vlad.studio Tiniri Theme (Tiniri Dark)" +source: + marketplace_id: "vladstudio.vlad-studio-tiniri" + version: "0.0.73" + installs: 1916 + rating: 5 + ratings: 3 + author: "Vlad.studio" + repo: "https://github.com/vladstudio/tiniri-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vladstudio.vlad-studio-tiniri" + formats: null +colors: + bg: "#1A1C1E" + fg: "#E8E6E3" + black: "#1A1C1E" + red: "#C66B67" + green: "#85A0AD" + yellow: "#CEA182" + blue: "#CEA182" + magenta: "#9F9A93" + cyan: "#85A0AD" + white: "#E8E5E3" + brightBlack: "#575653" + brightRed: "#D9726C" + brightGreen: "#85A0AD" + brightYellow: "#E5C7B2" + brightBlue: "#E5C7B2" + brightMagenta: "#ABA49C" + brightCyan: "#E8E5E3" + brightWhite: "#FFFCF0" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 90.2 + black: 0 + red: 36 + green: 47.1 + yellow: 54.8 + blue: 54.8 + magenta: 46.5 + cyan: 47.1 + white: 89.8 + brightBlack: 15 + brightRed: 41.5 + brightGreen: 47.1 + brightYellow: 74.5 + brightBlue: 74.5 + brightMagenta: 52 + brightCyan: 89.8 + brightWhite: 104.2 diff --git a/themes/vlad-studio-tiniri-theme--tiniri-light.yaml b/themes/vlad-studio-tiniri-theme--tiniri-light.yaml new file mode 100644 index 00000000..6e62469b --- /dev/null +++ b/themes/vlad-studio-tiniri-theme--tiniri-light.yaml @@ -0,0 +1,53 @@ +name: "Vlad.studio Tiniri Theme (Tiniri Light)" +source: + marketplace_id: "vladstudio.vlad-studio-tiniri" + version: "0.0.73" + installs: 1916 + rating: 5 + ratings: 3 + author: "Vlad.studio" + repo: "https://github.com/vladstudio/tiniri-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vladstudio.vlad-studio-tiniri" + formats: null +colors: + bg: "#FEFDFD" + fg: "#222120" + black: "#44403C" + red: "#994C48" + green: "#538A8A" + yellow: "#994C48" + blue: "#2D5C80" + magenta: "#804C6E" + cyan: "#538A8A" + white: "#DAD8CE" + brightBlack: "#B7B5AC" + brightRed: "#994C48" + brightGreen: "#538A8A" + brightYellow: "#E59793" + brightBlue: "#2D5C80" + brightMagenta: "#BD71A4" + brightCyan: "#538A8A" + brightWhite: "#E6E4D9" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 102 + black: 92.8 + red: 78.7 + green: 65.4 + yellow: 78.7 + blue: 83.4 + magenta: 81.4 + cyan: 65.4 + white: 19.5 + brightBlack: 39 + brightRed: 78.7 + brightGreen: 65.4 + brightYellow: 43.9 + brightBlue: 83.4 + brightMagenta: 60.9 + brightCyan: 65.4 + brightWhite: 12.6 diff --git a/themes/void-blue.yaml b/themes/void-blue.yaml new file mode 100644 index 00000000..8de52307 --- /dev/null +++ b/themes/void-blue.yaml @@ -0,0 +1,53 @@ +name: "Void blue" +source: + marketplace_id: "Reuben.root-bear" + version: "0.2.1" + installs: 7012 + rating: 5 + ratings: 2 + author: "RobiMez" + repo: "https://github.com/RobiMez/void_blue" + url: "https://marketplace.visualstudio.com/items?itemName=Reuben.root-bear" + formats: null +colors: + bg: "#0A0E14" + fg: "#F7F1FF" + black: "#0A0E14" + red: "#FC618D" + green: "#7BD88F" + yellow: "#FCE566" + blue: "#FD9353" + magenta: "#948AE3" + cyan: "#5AD4E6" + white: "#F7F1FF" + brightBlack: "#69676C" + brightRed: "#FC618D" + brightGreen: "#7BD88F" + brightYellow: "#FCE566" + brightBlue: "#FD9353" + brightMagenta: "#948AE3" + brightCyan: "#5AD4E6" + brightWhite: "#F7F1FF" +meta: + mode: "dark" + accent: "red" + hue: 258 + pair: null + contrast: + fg: 99.9 + black: 0 + red: 47 + green: 70.9 + yellow: 90.3 + blue: 58.6 + magenta: 44.9 + cyan: 70.7 + white: 99.9 + brightBlack: 23.5 + brightRed: 47 + brightGreen: 70.9 + brightYellow: 90.3 + brightBlue: 58.6 + brightMagenta: 44.9 + brightCyan: 70.7 + brightWhite: 99.9 diff --git a/themes/voltdark.yaml b/themes/voltdark.yaml new file mode 100644 index 00000000..d240cecd --- /dev/null +++ b/themes/voltdark.yaml @@ -0,0 +1,53 @@ +name: "VoltDark" +source: + marketplace_id: "MBhakta.voltdark" + version: "2.0.3" + installs: 85 + rating: 5 + ratings: 1 + author: "MBhakta" + repo: "https://github.com/milinbhakta/voltdark" + url: "https://marketplace.visualstudio.com/items?itemName=MBhakta.voltdark" + formats: null +colors: + bg: "#000000" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#CDFF5C" + yellow: "#87B1C8" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#6DFFF8" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#CDFF5C" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#6DFFF8" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 96.8 + yellow: 56.9 + blue: 28.4 + magenta: 30.8 + cyan: 93.9 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 96.8 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 93.9 + brightWhite: 91 diff --git a/themes/vs-code-dark-red-theme.yaml b/themes/vs-code-dark-red-theme.yaml new file mode 100644 index 00000000..b76d136e --- /dev/null +++ b/themes/vs-code-dark-red-theme.yaml @@ -0,0 +1,53 @@ +name: "VS Code Dark Red Theme" +source: + marketplace_id: "vs-code-red-theme.vs-code-red-theme" + version: "0.3.0" + installs: 599 + rating: 0 + ratings: 0 + author: "vs-code-red-theme" + repo: "https://github.com/karmickphp61/vs-code-red-theme" + url: "https://marketplace.visualstudio.com/items?itemName=vs-code-red-theme.vs-code-red-theme" + formats: null +colors: + bg: "#070B11" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + pair: null + contrast: + fg: 107.7 + black: 0 + red: 27.5 + green: 53.8 + yellow: 86.4 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.8 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.8 + brightMagenta: 46.2 + brightCyan: 56.2 + brightWhite: 90.8 diff --git a/themes/vs-code-dark-theme--black-theme.yaml b/themes/vs-code-dark-theme--black-theme.yaml new file mode 100644 index 00000000..a62c4f84 --- /dev/null +++ b/themes/vs-code-dark-theme--black-theme.yaml @@ -0,0 +1,53 @@ +name: "VS Code Dark Theme (Black theme)" +source: + marketplace_id: "PriyankarPal.darkthemeforvscode" + version: "2.13.0" + installs: 768 + rating: 5 + ratings: 1 + author: "Priyankar Pal" + repo: "https://github.com/priyankarpal/DarkThemeVsCode" + url: "https://marketplace.visualstudio.com/items?itemName=PriyankarPal.darkthemeforvscode" + formats: null +colors: + bg: "#1B1B1B" + fg: "#FFFFFF" + black: "#645B5B" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#888181" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.4 + black: 17.8 + red: 26.3 + green: 52.6 + yellow: 85.2 + blue: 27 + magenta: 29.3 + cyan: 47.1 + white: 89.6 + brightBlack: 34.5 + brightRed: 38.1 + brightGreen: 63.1 + brightYellow: 95.2 + brightBlue: 39.6 + brightMagenta: 44.9 + brightCyan: 54.9 + brightWhite: 89.6 diff --git a/themes/vs-code-themes--solarized-dark-theme.yaml b/themes/vs-code-themes--solarized-dark-theme.yaml new file mode 100644 index 00000000..81be12ab --- /dev/null +++ b/themes/vs-code-themes--solarized-dark-theme.yaml @@ -0,0 +1,54 @@ +name: "VS Code Themes (Solarized Dark Theme)" +source: + marketplace_id: "mjlaufer.vscode-themes" + version: "0.1.0" + installs: 1789 + rating: 0 + ratings: 0 + author: "mjlaufer" + repo: "https://github.com/mjlaufer/vscode-themes" + url: "https://marketplace.visualstudio.com/items?itemName=mjlaufer.vscode-themes" + formats: + zed: "https://raw.githubusercontent.com/mjlaufer/vscode-themes/master/themes/solarized-dark.json" +colors: + bg: "#FDF6E3" + fg: "#657B83" + black: "#FDF6E3" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#657B83" + brightBlack: "#FDF6E3" + brightRed: "#DC322F" + brightGreen: "#859900" + brightYellow: "#B58900" + brightBlue: "#268BD2" + brightMagenta: "#D33682" + brightCyan: "#2AA198" + brightWhite: "#657B83" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.7 + black: 0 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 65.7 + brightBlack: 0 + brightRed: 65.3 + brightGreen: 53.8 + brightYellow: 53.8 + brightBlue: 58.7 + brightMagenta: 65 + brightCyan: 53.1 + brightWhite: 65.7 diff --git a/themes/vs-dark-theme.yaml b/themes/vs-dark-theme.yaml new file mode 100644 index 00000000..e213d533 --- /dev/null +++ b/themes/vs-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "vs-dark-theme" +source: + marketplace_id: "unemil.unemil-theme" + version: "0.1.0" + installs: 48 + rating: 5 + ratings: 1 + author: "unemil" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=unemil.unemil-theme" + formats: null +colors: + bg: "#0F1014" + fg: "#9898A6" + black: "#111216" + red: "#ECD3E4" + green: "#D6DAEC" + yellow: "#9898A6" + blue: "#9898A6" + magenta: "#E2E4ED" + cyan: "#9898A6" + white: "#9898A6" + brightBlack: "#575861" + brightRed: "#ECD3E4" + brightGreen: "#D6DAEC" + brightYellow: "#9898A6" + brightBlue: "#9898A6" + brightMagenta: "#E2E4ED" + brightCyan: "#9898A6" + brightWhite: "#9898A6" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 46.8 + black: 0 + red: 83.7 + green: 84 + yellow: 46.8 + blue: 46.8 + magenta: 90.1 + cyan: 46.8 + white: 46.8 + brightBlack: 17 + brightRed: 83.7 + brightGreen: 84 + brightYellow: 46.8 + brightBlue: 46.8 + brightMagenta: 90.1 + brightCyan: 46.8 + brightWhite: 46.8 diff --git a/themes/vs-muted.yaml b/themes/vs-muted.yaml new file mode 100644 index 00000000..301bba5d --- /dev/null +++ b/themes/vs-muted.yaml @@ -0,0 +1,53 @@ +name: "VS Muted" +source: + marketplace_id: "PJWalker.vs-muted" + version: "1.2.0" + installs: 1189 + rating: 0 + ratings: 0 + author: "PJ Walker" + repo: "https://github.com/PJWalker/VS-Muted" + url: "https://marketplace.visualstudio.com/items?itemName=PJWalker.vs-muted" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000D" + black: "#000D" + red: "#CC1155" + green: "#119944" + yellow: "#EEAA11" + blue: "#007ACC" + magenta: "#BC05BC" + cyan: "#007ACC" + white: "#000A" + brightBlack: "#000A" + brightRed: "#CC1155" + brightGreen: "#119944" + brightYellow: "#EEAA11" + brightBlue: "#007ACC" + brightMagenta: "#BC05BC" + brightCyan: "#007ACC" + brightWhite: "#AAAAAA" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 106 + red: 75.6 + green: 64.1 + yellow: 38.9 + blue: 70.6 + magenta: 74.6 + cyan: 70.6 + white: 106 + brightBlack: 106 + brightRed: 75.6 + brightGreen: 64.1 + brightYellow: 38.9 + brightBlue: 70.6 + brightMagenta: 74.6 + brightCyan: 70.6 + brightWhite: 45.8 diff --git a/themes/vs-snazzy-theme.yaml b/themes/vs-snazzy-theme.yaml new file mode 100644 index 00000000..ba58dd75 --- /dev/null +++ b/themes/vs-snazzy-theme.yaml @@ -0,0 +1,53 @@ +name: "VS Snazzy Theme" +source: + marketplace_id: "xdae.vscode-snazzy-theme" + version: "0.1.0" + installs: 3070 + rating: 5 + ratings: 2 + author: "jose miguel bejarano" + repo: "https://github.com/xDae/vscode-snazzy-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xdae.vscode-snazzy-theme" + formats: null +colors: + bg: "#282A36" + fg: "#EFF0EB" + black: "#282A36" + red: "#FF5C57" + green: "#5AF78E" + yellow: "#F3F99D" + blue: "#57C7FF" + magenta: "#FF6AC1" + cyan: "#9AEDFE" + white: "#F1F1F0" + brightBlack: "#686868" + brightRed: "#FF5C57" + brightGreen: "#5AF78E" + brightYellow: "#F3F99D" + brightBlue: "#57C7FF" + brightMagenta: "#FF6AC1" + brightCyan: "#9AEDFE" + brightWhite: "#EFF0EB" +meta: + mode: "dark" + accent: "red" + hue: 278 + pair: null + contrast: + fg: 93.7 + black: 0 + red: 41.7 + green: 81.1 + yellow: 95.8 + blue: 62.5 + magenta: 48 + cyan: 84.1 + white: 94.7 + brightBlack: 19.9 + brightRed: 41.7 + brightGreen: 81.1 + brightYellow: 95.8 + brightBlue: 62.5 + brightMagenta: 48 + brightCyan: 84.1 + brightWhite: 93.7 diff --git a/themes/vsblue-theme.yaml b/themes/vsblue-theme.yaml new file mode 100644 index 00000000..6799c726 --- /dev/null +++ b/themes/vsblue-theme.yaml @@ -0,0 +1,53 @@ +name: "vsblue Theme" +source: + marketplace_id: "4rya.vsblue" + version: "1.4.2" + installs: 69 + rating: 5 + ratings: 1 + author: "4rya" + repo: "https://github.com/TugasArya/vsblue" + url: "https://marketplace.visualstudio.com/items?itemName=4rya.vsblue" + formats: null +colors: + bg: "#F0F9FF" + fg: "#1E3A5F" + black: "#1A365D" + red: "#FF595E" + green: "#FFD166" + yellow: "#FF9F1C" + blue: "#4ECDC4" + magenta: "#FF6B9D" + cyan: "#A3D5FF" + white: "#E6F2FF" + brightBlack: "#8DA1B9" + brightRed: "#FF7D82" + brightGreen: "#FFE082" + brightYellow: "#FFB74D" + brightBlue: "#6CE6DE" + brightMagenta: "#FF85AA" + brightCyan: "#D4EBFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.9 + black: 93.1 + red: 52.1 + green: 16.6 + yellow: 35.2 + blue: 32.3 + magenta: 46.9 + cyan: 20.9 + white: 0 + brightBlack: 47.1 + brightRed: 43.6 + brightGreen: 10 + brightYellow: 26.7 + brightBlue: 18.7 + brightMagenta: 40.2 + brightCyan: 0 + brightWhite: 0 diff --git a/themes/vsc-soft-theme.yaml b/themes/vsc-soft-theme.yaml new file mode 100644 index 00000000..a30ba9fd --- /dev/null +++ b/themes/vsc-soft-theme.yaml @@ -0,0 +1,54 @@ +name: "vsc-soft-theme" +source: + marketplace_id: "ikx12333.vsc-soft-theme" + version: "0.1.9" + installs: 596 + rating: 0 + ratings: 0 + author: "ikx12333" + repo: "https://github.com/ikx12333/vsc-soft-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ikx12333.vsc-soft-theme" + formats: + zed: "https://raw.githubusercontent.com/ikx12333/vsc-soft-theme/main/themes/vsc-theme-solarized.json" +colors: + bg: "#FDF6E3" + fg: "#657B83" + black: "#073642" + red: "#DC322F" + green: "#859900" + yellow: "#B58900" + blue: "#268BD2" + magenta: "#D33682" + cyan: "#2AA198" + white: "#EEE8D5" + brightBlack: "#002B36" + brightRed: "#CB4B16" + brightGreen: "#586E75" + brightYellow: "#657B83" + brightBlue: "#839496" + brightMagenta: "#6C71C4" + brightCyan: "#93A1A1" + brightWhite: "#EEE8D5" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.7 + black: 93.7 + red: 65.3 + green: 53.8 + yellow: 53.8 + blue: 58.7 + magenta: 65 + cyan: 53.1 + white: 0 + brightBlack: 96.4 + brightRed: 65.8 + brightGreen: 71.6 + brightYellow: 65.7 + brightBlue: 53.5 + brightMagenta: 65 + brightCyan: 46.7 + brightWhite: 0 diff --git a/themes/vscode-crt-ui--crt-amber.yaml b/themes/vscode-crt-ui--crt-amber.yaml new file mode 100644 index 00000000..05afc11a --- /dev/null +++ b/themes/vscode-crt-ui--crt-amber.yaml @@ -0,0 +1,53 @@ +name: "VSCode CRT UI (CRT Amber)" +source: + marketplace_id: "leandro-rodrigues.crt-vscode" + version: "0.1.0" + installs: 6563 + rating: 5 + ratings: 3 + author: "Leandro Rodrigues" + repo: "https://github.com/TheOld/legacy-term" + url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" + formats: null +colors: + bg: "#180F06" + fg: "#FFB000" + black: "#FFB000" + red: "#C68C0B" + green: "#D49508" + yellow: "#A97A10" + blue: "#F1A703" + magenta: "#E29E05" + cyan: "#B7830D" + white: "#9B7113" + brightBlack: "#FFB000" + brightRed: "#C68C0B" + brightGreen: "#D49508" + brightYellow: "#A97A10" + brightBlue: "#F1A703" + brightMagenta: "#E29E05" + brightCyan: "#B7830D" + brightWhite: "#9B7113" +meta: + mode: "dark" + accent: "yellow" + hue: 67 + pair: null + contrast: + fg: 68.1 + black: 68.1 + red: 45.8 + green: 51.1 + yellow: 35.6 + blue: 62.3 + magenta: 56.5 + cyan: 40.5 + white: 30.8 + brightBlack: 68.1 + brightRed: 45.8 + brightGreen: 51.1 + brightYellow: 35.6 + brightBlue: 62.3 + brightMagenta: 56.5 + brightCyan: 40.5 + brightWhite: 30.8 diff --git a/themes/vscode-crt-ui--crt-blue.yaml b/themes/vscode-crt-ui--crt-blue.yaml new file mode 100644 index 00000000..b69a67eb --- /dev/null +++ b/themes/vscode-crt-ui--crt-blue.yaml @@ -0,0 +1,53 @@ +name: "VSCode CRT UI (CRT Blue)" +source: + marketplace_id: "leandro-rodrigues.crt-vscode" + version: "0.1.0" + installs: 6563 + rating: 5 + ratings: 3 + author: "Leandro Rodrigues" + repo: "https://github.com/TheOld/legacy-term" + url: "https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.crt-vscode" + formats: null +colors: + bg: "#00000C" + fg: "#00B7FF" + black: "#00B7FF" + red: "#0DB4C6" + green: "#0AC1D4" + yellow: "#129BA9" + blue: "#05DAF1" + magenta: "#08CEE2" + cyan: "#0FA7B7" + white: "#148E9B" + brightBlack: "#00B7FF" + brightRed: "#0DB4C6" + brightGreen: "#0AC1D4" + brightYellow: "#129BA9" + brightBlue: "#05DAF1" + brightMagenta: "#08CEE2" + brightCyan: "#0FA7B7" + brightWhite: "#148E9B" +meta: + mode: "dark" + accent: "indigo" + hue: 264 + pair: null + contrast: + fg: 57.9 + black: 57.9 + red: 53.3 + green: 59.7 + yellow: 41.4 + blue: 72.9 + magenta: 66.4 + cyan: 47 + white: 35.6 + brightBlack: 57.9 + brightRed: 53.3 + brightGreen: 59.7 + brightYellow: 41.4 + brightBlue: 72.9 + brightMagenta: 66.4 + brightCyan: 47 + brightWhite: 35.6 diff --git a/themes/vscode-epic-theme.yaml b/themes/vscode-epic-theme.yaml new file mode 100644 index 00000000..13db8986 --- /dev/null +++ b/themes/vscode-epic-theme.yaml @@ -0,0 +1,53 @@ +name: "vscode-epic-theme" +source: + marketplace_id: "juliuskoskela.vscode-epic-theme" + version: "0.1.1" + installs: 388 + rating: 0 + ratings: 0 + author: "juliuskoskela" + repo: "https://github.com/juliuskoskela/vscode-epic-theme" + url: "https://marketplace.visualstudio.com/items?itemName=juliuskoskela.vscode-epic-theme" + formats: null +colors: + bg: "#000000" + fg: "#B3B1AD" + black: "#00010A" + red: "#EA6C73" + green: "#91B362" + yellow: "#FF8000" + blue: "#0070DD" + magenta: "#FF8000" + cyan: "#90E1C6" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#C2D94C" + brightYellow: "#FF8000" + brightBlue: "#59C2FF" + brightMagenta: "#FF8000" + brightCyan: "#A335EE" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 60.2 + black: 0 + red: 45.1 + green: 55.2 + yellow: 53.3 + blue: 29.1 + magenta: 53.3 + cyan: 78.9 + white: 72.7 + brightBlack: 23.9 + brightRed: 47.6 + brightGreen: 76.9 + brightYellow: 53.3 + brightBlue: 64.3 + brightMagenta: 53.3 + brightCyan: 29.1 + brightWhite: 107.9 diff --git a/themes/vscode-nofrils-dark-light--vscode-nofrils-light.yaml b/themes/vscode-nofrils-dark-light--vscode-nofrils-light.yaml new file mode 100644 index 00000000..56177c06 --- /dev/null +++ b/themes/vscode-nofrils-dark-light--vscode-nofrils-light.yaml @@ -0,0 +1,54 @@ +name: "VSCode Nofrils (Dark/Light) (VSCode Nofrils Light)" +source: + marketplace_id: "batteajd.vscode-nofrils" + version: "2.2.0" + installs: 102 + rating: 0 + ratings: 0 + author: "Jonathan Batteas" + repo: "https://github.com/sosukeinu/vscode-nofrils" + url: "https://marketplace.visualstudio.com/items?itemName=batteajd.vscode-nofrils" + formats: + zed: "https://raw.githubusercontent.com/sosukeinu/vscode-nofrils/main/themes/vs-code-nofrils-solarized-light-color-theme.json" +colors: + bg: "#DADADA" + fg: "#000000" + black: "#000000" + red: "#EA6C6D" + green: "#6CBF43" + yellow: "#ECA944" + blue: "#3199E1" + magenta: "#9E75C7" + cyan: "#46BA94" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07171" + brightGreen: "#86B300" + brightYellow: "#F2AE49" + brightBlue: "#399EE6" + brightMagenta: "#A37ACC" + brightCyan: "#4CBF99" + brightWhite: "#D1D1D1" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 84.4 + black: 84.4 + red: 35.2 + green: 23.2 + yellow: 17.7 + blue: 35.9 + magenta: 41.9 + cyan: 25.5 + white: 8.4 + brightBlack: 56.2 + brightRed: 32.7 + brightGreen: 26.8 + brightYellow: 14.9 + brightBlue: 33.5 + brightMagenta: 39.5 + brightCyan: 23 + brightWhite: 0 diff --git a/themes/vslook.yaml b/themes/vslook.yaml new file mode 100644 index 00000000..04c85511 --- /dev/null +++ b/themes/vslook.yaml @@ -0,0 +1,53 @@ +name: "VSLook" +source: + marketplace_id: "sudoaugustin.vslook" + version: "0.3.2" + installs: 10352 + rating: 4.33 + ratings: 6 + author: "Augustin Joseph" + repo: "https://github.com/sudoaugustin/vslook" + url: "https://marketplace.visualstudio.com/items?itemName=sudoaugustin.vslook" + formats: null +colors: + bg: "#0F172A" + fg: "#FFFFFF" + black: "#334155" + red: "#E11D48" + green: "#059669" + yellow: "#D97706" + blue: "#2563EB" + magenta: "#C026D3" + cyan: "#0891B2" + white: "#94A3B8" + brightBlack: "#1E293B" + brightRed: "#FB7185" + brightGreen: "#34D399" + brightYellow: "#FBBF24" + brightBlue: "#0EA5E9" + brightMagenta: "#E879F9" + brightCyan: "#22D3EE" + brightWhite: "#E2E8F0" +meta: + mode: "dark" + accent: "pink" + hue: 266 + pair: null + contrast: + fg: 106.8 + black: 7.4 + red: 30.1 + green: 35.9 + yellow: 42.1 + blue: 25.7 + magenta: 29.5 + cyan: 36.7 + white: 50.6 + brightBlack: 0 + brightRed: 49.2 + brightGreen: 65.1 + brightYellow: 72.6 + brightBlue: 47.9 + brightMagenta: 53 + brightCyan: 68.5 + brightWhite: 91.4 diff --git a/themes/vstoolkit.yaml b/themes/vstoolkit.yaml new file mode 100644 index 00000000..2a5ad72f --- /dev/null +++ b/themes/vstoolkit.yaml @@ -0,0 +1,53 @@ +name: "VSToolKit" +source: + marketplace_id: "PhilippBo.vstoolkit" + version: "1.1.0" + installs: 133 + rating: 0 + ratings: 0 + author: "Philipp Bo." + repo: "https://github.com/phil1436/VSToolKit" + url: "https://marketplace.visualstudio.com/items?itemName=PhilippBo.vstoolkit" + formats: null +colors: + bg: "#010409" + fg: "#D6DEEB" + black: "#010409" + red: "#EF5350" + green: "#22DA6E" + yellow: "#C5E478" + blue: "#82AAFF" + magenta: "#FD4A4A" + cyan: "#21C7A8" + white: "#FFFFFF" + brightBlack: "#575656" + brightRed: "#EF5350" + brightGreen: "#22DA6E" + brightYellow: "#FFEB95" + brightBlue: "#82AAFF" + brightMagenta: "#FD4A4A" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 248 + pair: null + contrast: + fg: 86.2 + black: 0 + red: 40.3 + green: 68.2 + yellow: 83 + blue: 56.9 + magenta: 42 + cyan: 60.7 + white: 107.9 + brightBlack: 16.6 + brightRed: 40.3 + brightGreen: 68.2 + brightYellow: 94.7 + brightBlue: 56.9 + brightMagenta: 42 + brightCyan: 75 + brightWhite: 107.9 diff --git a/themes/vxcode-theme--vxcode-blush.yaml b/themes/vxcode-theme--vxcode-blush.yaml new file mode 100644 index 00000000..8241beb1 --- /dev/null +++ b/themes/vxcode-theme--vxcode-blush.yaml @@ -0,0 +1,53 @@ +name: "VXcode Theme (vxcode blush)" +source: + marketplace_id: "evertjunior.vxcode-theme" + version: "0.0.15" + installs: 3242 + rating: 5 + ratings: 3 + author: "Evert Junior" + repo: "https://github.com/evertjr/vxcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" + formats: null +colors: + bg: "#E9DFD6" + fg: "#333333" + black: "#555555" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#888888" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#EEEEEE" +meta: + mode: "light" + accent: "orange" + hue: 65 + pair: null + contrast: + fg: 80.8 + black: 68 + red: 38 + green: 30.8 + yellow: 10.1 + blue: 37.9 + magenta: 35.5 + cyan: 26.8 + white: 0 + brightBlack: 45.1 + brightRed: 30.4 + brightGreen: 22.5 + brightYellow: 0 + brightBlue: 29.9 + brightMagenta: 27.2 + brightCyan: 18.4 + brightWhite: 0 diff --git a/themes/vxcode-theme--vxcode-cream.yaml b/themes/vxcode-theme--vxcode-cream.yaml new file mode 100644 index 00000000..666372dc --- /dev/null +++ b/themes/vxcode-theme--vxcode-cream.yaml @@ -0,0 +1,53 @@ +name: "VXcode Theme (vxcode cream)" +source: + marketplace_id: "evertjunior.vxcode-theme" + version: "0.0.15" + installs: 3242 + rating: 5 + ratings: 3 + author: "Evert Junior" + repo: "https://github.com/evertjr/vxcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" + formats: null +colors: + bg: "#FAF3E0" + fg: "#333333" + black: "#555555" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#888888" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#EEEEEE" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 91.7 + black: 78.9 + red: 48.9 + green: 41.7 + yellow: 21 + blue: 48.8 + magenta: 46.3 + cyan: 37.7 + white: 10.5 + brightBlack: 56 + brightRed: 41.3 + brightGreen: 33.4 + brightYellow: 12 + brightBlue: 40.7 + brightMagenta: 38.1 + brightCyan: 29.3 + brightWhite: 0 diff --git a/themes/vxcode-theme--vxcode-dark.yaml b/themes/vxcode-theme--vxcode-dark.yaml new file mode 100644 index 00000000..819d0164 --- /dev/null +++ b/themes/vxcode-theme--vxcode-dark.yaml @@ -0,0 +1,53 @@ +name: "VXcode Theme (vxcode dark)" +source: + marketplace_id: "evertjunior.vxcode-theme" + version: "0.0.15" + installs: 3242 + rating: 5 + ratings: 3 + author: "Evert Junior" + repo: "https://github.com/evertjr/vxcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" + formats: null +colors: + bg: "#2A2A30" + fg: "#E3E3E3" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#E3E3E3" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: 286 + pair: null + contrast: + fg: 85.8 + black: 0 + red: 41.9 + green: 49.3 + yellow: 71 + blue: 42 + magenta: 44.6 + cyan: 53.5 + white: 85.8 + brightBlack: 19.1 + brightRed: 49.8 + brightGreen: 57.9 + brightYellow: 80.6 + brightBlue: 50.3 + brightMagenta: 53.1 + brightCyan: 62.2 + brightWhite: 98 diff --git a/themes/vxcode-theme--vxcode-darker.yaml b/themes/vxcode-theme--vxcode-darker.yaml new file mode 100644 index 00000000..475384db --- /dev/null +++ b/themes/vxcode-theme--vxcode-darker.yaml @@ -0,0 +1,53 @@ +name: "VXcode Theme (vxcode darker)" +source: + marketplace_id: "evertjunior.vxcode-theme" + version: "0.0.15" + installs: 3242 + rating: 5 + ratings: 3 + author: "Evert Junior" + repo: "https://github.com/evertjr/vxcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" + formats: null +colors: + bg: "#0A0A0A" + fg: "#E3E3E3" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#E3E3E3" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.6 + black: 0 + red: 45.7 + green: 53.1 + yellow: 74.8 + blue: 45.8 + magenta: 48.3 + cyan: 57.2 + white: 89.6 + brightBlack: 22.9 + brightRed: 53.6 + brightGreen: 61.7 + brightYellow: 84.4 + brightBlue: 54.1 + brightMagenta: 56.8 + brightCyan: 66 + brightWhite: 101.8 diff --git a/themes/vxcode-theme--vxcode-lavender.yaml b/themes/vxcode-theme--vxcode-lavender.yaml new file mode 100644 index 00000000..3e504596 --- /dev/null +++ b/themes/vxcode-theme--vxcode-lavender.yaml @@ -0,0 +1,53 @@ +name: "VXcode Theme (vxcode lavender)" +source: + marketplace_id: "evertjunior.vxcode-theme" + version: "0.0.15" + installs: 3242 + rating: 5 + ratings: 3 + author: "Evert Junior" + repo: "https://github.com/evertjr/vxcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" + formats: null +colors: + bg: "#E9E3EA" + fg: "#333333" + black: "#555555" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#888888" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#EEEEEE" +meta: + mode: "light" + accent: "orange" + hue: 321 + pair: null + contrast: + fg: 83.2 + black: 70.5 + red: 40.5 + green: 33.2 + yellow: 12.6 + blue: 40.4 + magenta: 37.9 + cyan: 29.3 + white: 0 + brightBlack: 47.6 + brightRed: 32.8 + brightGreen: 25 + brightYellow: 0 + brightBlue: 32.3 + brightMagenta: 29.7 + brightCyan: 20.8 + brightWhite: 0 diff --git a/themes/vxcode-theme--vxcode-lime.yaml b/themes/vxcode-theme--vxcode-lime.yaml new file mode 100644 index 00000000..b482f400 --- /dev/null +++ b/themes/vxcode-theme--vxcode-lime.yaml @@ -0,0 +1,53 @@ +name: "VXcode Theme (vxcode lime)" +source: + marketplace_id: "evertjunior.vxcode-theme" + version: "0.0.15" + installs: 3242 + rating: 5 + ratings: 3 + author: "Evert Junior" + repo: "https://github.com/evertjr/vxcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" + formats: null +colors: + bg: "#DDF2E5" + fg: "#333333" + black: "#555555" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#DDDDDD" + brightBlack: "#888888" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#EEEEEE" +meta: + mode: "light" + accent: "orange" + hue: 159 + pair: null + contrast: + fg: 87.9 + black: 75.2 + red: 45.2 + green: 37.9 + yellow: 17.2 + blue: 45.1 + magenta: 42.6 + cyan: 33.9 + white: 0 + brightBlack: 52.3 + brightRed: 37.5 + brightGreen: 29.6 + brightYellow: 8.2 + brightBlue: 37 + brightMagenta: 34.3 + brightCyan: 25.5 + brightWhite: 0 diff --git a/themes/vxcode-theme--vxcode-oled.yaml b/themes/vxcode-theme--vxcode-oled.yaml new file mode 100644 index 00000000..64dc111d --- /dev/null +++ b/themes/vxcode-theme--vxcode-oled.yaml @@ -0,0 +1,53 @@ +name: "VXcode Theme (vxcode OLED)" +source: + marketplace_id: "evertjunior.vxcode-theme" + version: "0.0.15" + installs: 3242 + rating: 5 + ratings: 3 + author: "Evert Junior" + repo: "https://github.com/evertjr/vxcode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=evertjunior.vxcode-theme" + formats: null +colors: + bg: "#000000" + fg: "#E3E3E3" + black: "#333333" + red: "#E47474" + green: "#66B395" + yellow: "#E2C97E" + blue: "#7098D4" + magenta: "#B290BA" + cyan: "#6AB8C0" + white: "#E3E3E3" + brightBlack: "#666666" + brightRed: "#F48484" + brightGreen: "#76C3A5" + brightYellow: "#F2D98E" + brightBlue: "#80A8E4" + brightMagenta: "#C2A0CA" + brightCyan: "#7AC8D0" + brightWhite: "#F6F6F6" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 89.8 + black: 0 + red: 45.8 + green: 53.3 + yellow: 74.9 + blue: 45.9 + magenta: 48.5 + cyan: 57.4 + white: 89.8 + brightBlack: 23 + brightRed: 53.7 + brightGreen: 61.9 + brightYellow: 84.5 + brightBlue: 54.2 + brightMagenta: 57 + brightCyan: 66.2 + brightWhite: 101.9 diff --git a/themes/warm-burnout.yaml b/themes/warm-burnout.yaml new file mode 100644 index 00000000..720e77f6 --- /dev/null +++ b/themes/warm-burnout.yaml @@ -0,0 +1,58 @@ +name: "Warm Burnout" +source: + marketplace_id: "felip3fdl.warm-burnout" + version: "0.1.6" + installs: 17 + rating: 5 + ratings: 1 + author: "Felipe F Lima" + repo: "https://github.com/felipefdl/warm-burnout" + url: "https://marketplace.visualstudio.com/items?itemName=felip3fdl.warm-burnout" + formats: + ghostty: "https://raw.githubusercontent.com/felipefdl/warm-burnout/main/ghostty/AGENTS.md" + iterm2: "https://raw.githubusercontent.com/felipefdl/warm-burnout/main/iterm2/Warm Burnout Dark.itermcolors" + windows-terminal: "https://raw.githubusercontent.com/felipefdl/warm-burnout/main/windows-terminal/warm-burnout-dark.json" + xcode: "https://raw.githubusercontent.com/felipefdl/warm-burnout/main/xcode/Warm Burnout Dark.xccolortheme" + nvim: "https://raw.githubusercontent.com/felipefdl/warm-burnout/main/nvim/lua/warm-burnout/highlights.lua" +colors: + bg: "#1A1510" + fg: "#BFBDB6" + black: "#23211B" + red: "#F06B73" + green: "#70BF56" + yellow: "#FDB04C" + blue: "#4FBFFF" + magenta: "#D0A1FF" + cyan: "#93E2C8" + white: "#C7C7C7" + brightBlack: "#686868" + brightRed: "#F07178" + brightGreen: "#AAD94C" + brightYellow: "#FFB454" + brightBlue: "#59C2FF" + brightMagenta: "#D2A6FF" + brightCyan: "#95E6CB" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: 67 + pair: null + contrast: + fg: 65.9 + black: 0 + red: 45.2 + green: 56.8 + yellow: 67.7 + blue: 61.7 + magenta: 61.5 + cyan: 78.8 + white: 71.8 + brightBlack: 23 + brightRed: 46.7 + brightGreen: 73.4 + brightYellow: 69.7 + brightBlue: 63.4 + brightMagenta: 63.5 + brightCyan: 81 + brightWhite: 107 diff --git a/themes/warm.yaml b/themes/warm.yaml new file mode 100644 index 00000000..f7b3a070 --- /dev/null +++ b/themes/warm.yaml @@ -0,0 +1,53 @@ +name: "warm" +source: + marketplace_id: "indigo.warm" + version: "1.0.1" + installs: 2595 + rating: 4 + ratings: 1 + author: "indigo" + repo: "https://github.com/gabriela-tomazzi/warm-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=indigo.warm" + formats: null +colors: + bg: "#110D10" + fg: "#E1B473" + black: "#241C22" + red: "#6B7D7A" + green: "#6B7D7A" + yellow: "#DF8038" + blue: "#5F2F45" + magenta: "#5F2F45" + cyan: "#6B7D7A" + white: "#E0D8C9" + brightBlack: "#666666" + brightRed: "#6B7D7A" + brightGreen: "#6B7D7A" + brightYellow: "#DF8038" + brightBlue: "#5F2F45" + brightMagenta: "#5F2F45" + brightCyan: "#6B7D7A" + brightWhite: "#E0D8C9" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 65.7 + black: 0 + red: 31.3 + green: 31.3 + yellow: 46.8 + blue: 7.9 + magenta: 7.9 + cyan: 31.3 + white: 83 + brightBlack: 22.7 + brightRed: 31.3 + brightGreen: 31.3 + brightYellow: 46.8 + brightBlue: 7.9 + brightMagenta: 7.9 + brightCyan: 31.3 + brightWhite: 83 diff --git a/themes/warmkai.yaml b/themes/warmkai.yaml new file mode 100644 index 00000000..3c314d48 --- /dev/null +++ b/themes/warmkai.yaml @@ -0,0 +1,53 @@ +name: "WarmKai" +source: + marketplace_id: "ViciandoCodigo.warmkai" + version: "1.4.0" + installs: 280 + rating: 5 + ratings: 1 + author: "Viciando Codigo" + repo: "https://github.com/Torr1co/warmkai" + url: "https://marketplace.visualstudio.com/items?itemName=ViciandoCodigo.warmkai" + formats: null +colors: + bg: "#F7F0DD" + fg: "#000000" + black: "#FDF9F3" + red: "#E1221F" + green: "#00A31E" + yellow: "#BF4F10" + blue: "#B78900" + magenta: "#6529B8" + cyan: "#2679D1" + white: "#000000" + brightBlack: "#8D8D8D" + brightRed: "#E1221F" + brightGreen: "#00A31E" + brightYellow: "#BF4F10" + brightBlue: "#B78900" + brightMagenta: "#6529B8" + brightCyan: "#2679D1" + brightWhite: "#000000" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97.3 + black: 0 + red: 61.9 + green: 51.4 + yellow: 63.9 + blue: 50 + magenta: 78.5 + cyan: 61.5 + white: 97.3 + brightBlack: 51.8 + brightRed: 61.9 + brightGreen: 51.4 + brightYellow: 63.9 + brightBlue: 50 + brightMagenta: 78.5 + brightCyan: 61.5 + brightWhite: 97.3 diff --git a/themes/waterbyte-theme.yaml b/themes/waterbyte-theme.yaml new file mode 100644 index 00000000..db10da0a --- /dev/null +++ b/themes/waterbyte-theme.yaml @@ -0,0 +1,53 @@ +name: "Waterbyte Theme" +source: + marketplace_id: "ungarmichael.wbyt-theme" + version: "0.2.3" + installs: 240 + rating: 5 + ratings: 1 + author: "Michael Ungar" + repo: "https://github.com/ungarmichael/wbyt-theme" + url: "https://marketplace.visualstudio.com/items?itemName=ungarmichael.wbyt-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#022EC6" + black: "#000000" + red: "#E53935" + green: "#91B859" + yellow: "#FFB62C" + blue: "#6182B8" + magenta: "#7C4DFF" + cyan: "#39ADB5" + white: "#FFFFFF" + brightBlack: "#90A4AE" + brightRed: "#E53935" + brightGreen: "#91B859" + brightYellow: "#FFB62C" + brightBlue: "#6182B8" + brightMagenta: "#7C4DFF" + brightCyan: "#39ADB5" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 90.4 + black: 106 + red: 67.7 + green: 44.9 + yellow: 31.7 + blue: 66.3 + magenta: 72.6 + cyan: 51.8 + white: 0 + brightBlack: 50.6 + brightRed: 67.7 + brightGreen: 44.9 + brightYellow: 31.7 + brightBlue: 66.3 + brightMagenta: 72.6 + brightCyan: 51.8 + brightWhite: 0 diff --git a/themes/wawdog-drak-theme.yaml b/themes/wawdog-drak-theme.yaml new file mode 100644 index 00000000..e825f455 --- /dev/null +++ b/themes/wawdog-drak-theme.yaml @@ -0,0 +1,53 @@ +name: "Wawdog Drak Theme" +source: + marketplace_id: "wawdogdev.wawdog-dark-theme" + version: "0.0.4" + installs: 122 + rating: 0 + ratings: 0 + author: "wawdogdev" + repo: "https://github.com/wawdog/vscode-wawdog-dark" + url: "https://marketplace.visualstudio.com/items?itemName=wawdogdev.wawdog-dark-theme" + formats: null +colors: + bg: "#191D21" + fg: "#D3D3D3" + black: "#242A2F" + red: "#BA0E2E" + green: "#E85362" + yellow: "#5392DB" + blue: "#5392DB" + magenta: "#E85362" + cyan: "#9B78DB" + white: "#D3D3D3" + brightBlack: "#45505B" + brightRed: "#F03E5F" + brightGreen: "#F4ADB4" + brightYellow: "#A7C7ED" + brightBlue: "#A7C7ED" + brightMagenta: "#F4ADB4" + brightCyan: "#D7C9F0" + brightWhite: "#D3D3D3" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 78.2 + black: 0 + red: 19.9 + green: 37.5 + yellow: 40.7 + blue: 40.7 + magenta: 37.5 + cyan: 38.3 + white: 78.2 + brightBlack: 12.1 + brightRed: 36.1 + brightGreen: 66.8 + brightYellow: 69.3 + brightBlue: 69.3 + brightMagenta: 66.8 + brightCyan: 75.9 + brightWhite: 78.2 diff --git a/themes/webc.yaml b/themes/webc.yaml new file mode 100644 index 00000000..d2b24b15 --- /dev/null +++ b/themes/webc.yaml @@ -0,0 +1,53 @@ +name: "WebC" +source: + marketplace_id: "dwkns.webc" + version: "0.0.11" + installs: 1163 + rating: 0 + ratings: 0 + author: "dwkns" + repo: "https://github.com/dwkns/vscode-webc" + url: "https://marketplace.visualstudio.com/items?itemName=dwkns.webc" + formats: null +colors: + bg: "#171819" + fg: "#DEECEC" + black: "#000000" + red: "#FF5370" + green: "#81B336" + yellow: "#E6D53F" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 92.5 + black: 0 + red: 43.5 + green: 52.1 + yellow: 78.6 + blue: 55.8 + magenta: 53.7 + cyan: 78.2 + white: 106.8 + brightBlack: 10.9 + brightRed: 43.5 + brightGreen: 84.1 + brightYellow: 78.8 + brightBlue: 55.8 + brightMagenta: 53.7 + brightCyan: 78.2 + brightWhite: 106.8 diff --git a/themes/weird-theme.yaml b/themes/weird-theme.yaml new file mode 100644 index 00000000..bb52c995 --- /dev/null +++ b/themes/weird-theme.yaml @@ -0,0 +1,53 @@ +name: "weird theme" +source: + marketplace_id: "FossFreaks.weird-theme" + version: "1.0.2" + installs: 514 + rating: 4.5 + ratings: 2 + author: "FossFreaks" + repo: "https://github.com/fossfreaks/Weird-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=FossFreaks.weird-theme" + formats: null +colors: + bg: "#18181B" + fg: "#90A4AE" + black: "#000000" + red: "#B83360" + green: "#21A771" + yellow: "#9E9D24" + blue: "#2472C8" + magenta: "#AA76D5" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#EC407A" + brightGreen: "#23D18B" + brightYellow: "#C7C531" + brightBlue: "#3B8EEA" + brightMagenta: "#C682FF" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 50.2 + black: 0 + red: 23.2 + green: 43.5 + yellow: 45.8 + blue: 27.3 + magenta: 39.8 + cyan: 47.4 + white: 89.9 + brightBlack: 21.9 + brightRed: 36.7 + brightGreen: 63.4 + brightYellow: 67.3 + brightBlue: 39.9 + brightMagenta: 50.1 + brightCyan: 55.3 + brightWhite: 89.9 diff --git a/themes/weiting-s-color.yaml b/themes/weiting-s-color.yaml new file mode 100644 index 00000000..893bf52e --- /dev/null +++ b/themes/weiting-s-color.yaml @@ -0,0 +1,53 @@ +name: "Weiting's color" +source: + marketplace_id: "Weiting.weiting-s-color" + version: "0.0.1" + installs: 36 + rating: 0 + ratings: 0 + author: "Weiting Huang" + repo: "https://github.com/weiting53/weiting-s-color" + url: "https://marketplace.visualstudio.com/items?itemName=Weiting.weiting-s-color" + formats: null +colors: + bg: "#430000" + fg: "#E5D4FF" + black: "#DBFFC2" + red: "#FFAFAF" + green: "#8CFFD3" + yellow: "#FFFFBD" + blue: "#B3D7FF" + magenta: "#FFE0FF" + cyan: "#8CE8FF" + white: "#E5E5E5" + brightBlack: "#E8E7B4" + brightRed: "#FF9191" + brightGreen: "#38FFAF" + brightYellow: "#FFFF55" + brightBlue: "#B8DAFF" + brightMagenta: "#FF89FF" + brightCyan: "#5EDFFF" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 29 + pair: null + contrast: + fg: 82.3 + black: 98.1 + red: 68.3 + green: 91.4 + yellow: 102.6 + blue: 77.6 + magenta: 91.2 + cyan: 82.1 + white: 88.4 + brightBlack: 87.8 + brightRed: 57.4 + brightGreen: 86.7 + brightYellow: 100.5 + brightBlue: 79.4 + brightMagenta: 60.4 + brightCyan: 75.2 + brightWhite: 88.4 diff --git a/themes/whatsapp.yaml b/themes/whatsapp.yaml new file mode 100644 index 00000000..64a3ef9d --- /dev/null +++ b/themes/whatsapp.yaml @@ -0,0 +1,53 @@ +name: "WhatsApp" +source: + marketplace_id: "giovanicavila.zap-theme" + version: "0.0.10" + installs: 109 + rating: 0 + ratings: 0 + author: "Giovani Avila" + repo: "https://github.com/giovanicavila/Zap" + url: "https://marketplace.visualstudio.com/items?itemName=giovanicavila.zap-theme" + formats: null +colors: + bg: "#012400" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 142 + pair: null + contrast: + fg: 78.5 + black: 0 + red: 25.7 + green: 52 + yellow: 84.6 + blue: 26.4 + magenta: 28.7 + cyan: 46.5 + white: 89 + brightBlack: 21 + brightRed: 37.5 + brightGreen: 62.5 + brightYellow: 94.6 + brightBlue: 39 + brightMagenta: 44.4 + brightCyan: 54.4 + brightWhite: 89 diff --git a/themes/whisper.yaml b/themes/whisper.yaml new file mode 100644 index 00000000..12cb0f40 --- /dev/null +++ b/themes/whisper.yaml @@ -0,0 +1,53 @@ +name: "Whisper" +source: + marketplace_id: "skyrocket-qy.whisper" + version: "0.1.3" + installs: 578 + rating: 0 + ratings: 0 + author: "skyrocket-qy" + repo: "https://github.com/skyrocket-qy/Whisper" + url: "https://marketplace.visualstudio.com/items?itemName=skyrocket-qy.whisper" + formats: null +colors: + bg: "#131313" + fg: "#D6D6D6" + black: "#45475A" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#89DCEB" + blue: "#89B4FA" + magenta: "#F5C2E7" + cyan: "#94E2D5" + white: "#A6ADC8" + brightBlack: "#585B70" + brightRed: "#F37799" + brightGreen: "#89D88B" + brightYellow: "#EBD391" + brightBlue: "#74A8FC" + brightMagenta: "#F2AEDE" + brightCyan: "#6BD7CA" + brightWhite: "#BAC2DE" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 81.1 + black: 10.7 + red: 56.1 + green: 79.7 + yellow: 77.1 + blue: 60.5 + magenta: 78.1 + cyan: 79.7 + white: 57.6 + brightBlack: 18.3 + brightRed: 50.1 + brightGreen: 71.5 + brightYellow: 80.3 + brightBlue: 54.3 + brightMagenta: 69.7 + brightCyan: 71.3 + brightWhite: 69.5 diff --git a/themes/white-shade--white-shade-color.yaml b/themes/white-shade--white-shade-color.yaml new file mode 100644 index 00000000..61d60868 --- /dev/null +++ b/themes/white-shade--white-shade-color.yaml @@ -0,0 +1,53 @@ +name: "White Shade (White Shade Color)" +source: + marketplace_id: "silas0827.white-shade" + version: "0.1.0" + installs: 1440 + rating: 0 + ratings: 0 + author: "Silas Chen" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=silas0827.white-shade" + formats: null +colors: + bg: "#FFFFFF" + fg: "#ABB2BF" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 41.8 + black: 106 + red: 74 + green: 49.2 + yellow: 57.9 + blue: 86.1 + magenta: 74.6 + cyan: 60.6 + white: 85.9 + brightBlack: 78.8 + brightRed: 74 + brightGreen: 40.9 + brightYellow: 40.9 + brightBlue: 86.1 + brightMagenta: 74.6 + brightCyan: 60.6 + brightWhite: 48.5 diff --git a/themes/white.yaml b/themes/white.yaml new file mode 100644 index 00000000..85b015c9 --- /dev/null +++ b/themes/white.yaml @@ -0,0 +1,53 @@ +name: "White" +source: + marketplace_id: "arthurwhite.white" + version: "1.3.6" + installs: 101011 + rating: 4.82 + ratings: 11 + author: "Arthur White" + repo: "https://github.com/arthurwhite/white-theme-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=arthurwhite.white" + formats: null +colors: + bg: "#000000" + fg: "#FFFFFF" + black: "#FFFFFF" + red: "#FF0032" + green: "#00FF68" + yellow: "#FFCA00" + blue: "#004BFF" + magenta: "#7D46FC" + cyan: "#00D2FF" + white: "#FFFFFF" + brightBlack: "#FFFFFF" + brightRed: "#FF0032" + brightGreen: "#00FF68" + brightYellow: "#FFCA00" + brightBlue: "#004BFF" + brightMagenta: "#7D46FC" + brightCyan: "#00D2FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 107.9 + black: 107.9 + red: 37.7 + green: 87.2 + yellow: 78.8 + blue: 22.9 + magenta: 27.7 + cyan: 70 + white: 107.9 + brightBlack: 107.9 + brightRed: 37.7 + brightGreen: 87.2 + brightYellow: 78.8 + brightBlue: 22.9 + brightMagenta: 27.7 + brightCyan: 70 + brightWhite: 107.9 diff --git a/themes/whiteboard-theme.yaml b/themes/whiteboard-theme.yaml new file mode 100644 index 00000000..7a9ccc88 --- /dev/null +++ b/themes/whiteboard-theme.yaml @@ -0,0 +1,53 @@ +name: "Whiteboard theme" +source: + marketplace_id: "jsm-dev.whiteboard-theme" + version: "1.0.1" + installs: 246 + rating: 0 + ratings: 0 + author: "jsm" + repo: "https://github.com/jsm04/whiteboard-theme" + url: "https://marketplace.visualstudio.com/items?itemName=jsm-dev.whiteboard-theme" + formats: null +colors: + bg: "#FCFCFC" + fg: "#000000" + black: "#29343D" + red: "#F8961E" + green: "#90BE6D" + yellow: "#F3722C" + blue: "#577590" + magenta: "#F9C74F" + cyan: "#43AA8B" + white: "#969696" + brightBlack: "#394956" + brightRed: "#F8961E" + brightGreen: "#90BE6D" + brightYellow: "#F3722C" + brightBlue: "#577590" + brightMagenta: "#F9C74F" + brightCyan: "#43AA8B" + brightWhite: "#ABABAB" +meta: + mode: "light" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 104.2 + black: 97 + red: 41.9 + green: 40.3 + yellow: 52.8 + blue: 71.6 + magenta: 24.3 + cyan: 52.6 + white: 54.3 + brightBlack: 89.6 + brightRed: 41.9 + brightGreen: 40.3 + brightYellow: 52.8 + brightBlue: 71.6 + brightMagenta: 24.3 + brightCyan: 52.6 + brightWhite: 43.5 diff --git a/themes/willissantos.yaml b/themes/willissantos.yaml new file mode 100644 index 00000000..2ece01bd --- /dev/null +++ b/themes/willissantos.yaml @@ -0,0 +1,53 @@ +name: "WillisSantos" +source: + marketplace_id: "WillisSantos.WillisSantos" + version: "0.0.0" + installs: 4844 + rating: 0 + ratings: 0 + author: "Willis Santos" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=WillisSantos.WillisSantos" + formats: null +colors: + bg: "#000000" + fg: "#00FFDB" + black: "#7D4444" + red: "#C70000" + green: "#00774A" + yellow: "#FFFF00" + blue: "#0079FF" + magenta: "#A900A9" + cyan: "#007490" + white: "#50FF00" + brightBlack: "#515151" + brightRed: "#FF0000" + brightGreen: "#00DB83" + brightYellow: "#929200" + brightBlue: "#004FA7" + brightMagenta: "#FF00FF" + brightCyan: "#00485A" + brightWhite: "#C2C2C2" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 90.5 + black: 16.1 + red: 24.1 + green: 24.3 + yellow: 102.7 + blue: 34.8 + magenta: 22.3 + cyan: 25.5 + white: 87.5 + brightBlack: 14.6 + brightRed: 37.5 + brightGreen: 69.1 + brightYellow: 41.3 + brightBlue: 15.6 + brightMagenta: 46.2 + brightCyan: 9.5 + brightWhite: 69.8 diff --git a/themes/willow-theme.yaml b/themes/willow-theme.yaml new file mode 100644 index 00000000..e89b16ab --- /dev/null +++ b/themes/willow-theme.yaml @@ -0,0 +1,53 @@ +name: "willow-theme" +source: + marketplace_id: "RaulWierzbiski.willow-theme" + version: "0.0.1" + installs: 903 + rating: 5 + ratings: 1 + author: "Raul Wierzbiński" + repo: "https://github.com/Wierzba13/willow-theme" + url: "https://marketplace.visualstudio.com/items?itemName=RaulWierzbiski.willow-theme" + formats: null +colors: + bg: "#0A0A0A" + fg: "#D4D4D4" + black: "#131313" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 80.3 + black: 0 + red: 27.6 + green: 53.9 + yellow: 86.5 + blue: 28.3 + magenta: 30.6 + cyan: 48.4 + white: 90.9 + brightBlack: 22.9 + brightRed: 39.4 + brightGreen: 64.4 + brightYellow: 96.5 + brightBlue: 40.9 + brightMagenta: 46.2 + brightCyan: 56.3 + brightWhite: 90.9 diff --git a/themes/win-xp.yaml b/themes/win-xp.yaml new file mode 100644 index 00000000..4dd15f33 --- /dev/null +++ b/themes/win-xp.yaml @@ -0,0 +1,53 @@ +name: "Win XP" +source: + marketplace_id: "sinedied.vscode-windows-xp-theme" + version: "0.1.5" + installs: 28296 + rating: 4.9 + ratings: 10 + author: "Yohan Lasorsa" + repo: "https://github.com/sinedied/vscode-win-xp-theme" + url: "https://marketplace.visualstudio.com/items?itemName=sinedied.vscode-windows-xp-theme" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#909090" + red: "#C00000" + green: "#00C000" + yellow: "#C0C000" + blue: "#0000C0" + magenta: "#C000C0" + cyan: "#00C0C0" + white: "#C0C0C0" + brightBlack: "#C0C0C0" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106 + black: 59.1 + red: 79.3 + green: 47.4 + yellow: 37.2 + blue: 94 + magenta: 73.5 + cyan: 43.8 + white: 34 + brightBlack: 34 + brightRed: 64.1 + brightGreen: 17.1 + brightYellow: 0 + brightBlue: 85.8 + brightMagenta: 55.6 + brightCyan: 11.8 + brightWhite: 0 diff --git a/themes/wind-theme--man-dark-stone.yaml b/themes/wind-theme--man-dark-stone.yaml new file mode 100644 index 00000000..54bc1e41 --- /dev/null +++ b/themes/wind-theme--man-dark-stone.yaml @@ -0,0 +1,53 @@ +name: "Wind Theme (Man Dark Stone)" +source: + marketplace_id: "calvinludwig.wind-theme" + version: "1.0.0" + installs: 1683 + rating: 5 + ratings: 3 + author: "Calvin Ludwig" + repo: "https://github.com/calvinludwig/wind-theme" + url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" + formats: null +colors: + bg: "#1C1917" + fg: "#D6D3D1" + black: "#292524" + red: "#F43F5E" + green: "#22C55E" + yellow: "#FACC15" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F5F5F4" + brightBlack: "#44403C" + brightRed: "#FB7185" + brightGreen: "#4ADE80" + brightYellow: "#FDE047" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FAFAF9" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 78.9 + black: 0 + red: 37.5 + green: 56.5 + yellow: 77.5 + blue: 36.5 + magenta: 34.1 + cyan: 53.6 + white: 100 + brightBlack: 7.4 + brightRed: 49 + brightGreen: 70.2 + brightYellow: 86.9 + brightBlue: 51.1 + brightMagenta: 49.4 + brightCyan: 68.3 + brightWhite: 103.2 diff --git a/themes/wind-theme--wind-dark-slate.yaml b/themes/wind-theme--wind-dark-slate.yaml new file mode 100644 index 00000000..dbbf808f --- /dev/null +++ b/themes/wind-theme--wind-dark-slate.yaml @@ -0,0 +1,53 @@ +name: "Wind Theme (Wind Dark Slate)" +source: + marketplace_id: "calvinludwig.wind-theme" + version: "1.0.0" + installs: 1683 + rating: 5 + ratings: 3 + author: "Calvin Ludwig" + repo: "https://github.com/calvinludwig/wind-theme" + url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" + formats: null +colors: + bg: "#0F172A" + fg: "#CBD5E1" + black: "#1E293B" + red: "#F43F5E" + green: "#22C55E" + yellow: "#FACC15" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F1F5F9" + brightBlack: "#334155" + brightRed: "#FB7185" + brightGreen: "#4ADE80" + brightYellow: "#FDE047" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#F8FAFC" +meta: + mode: "dark" + accent: "magenta" + hue: 266 + pair: null + contrast: + fg: 79.3 + black: 0 + red: 37.7 + green: 56.7 + yellow: 77.7 + blue: 36.7 + magenta: 34.3 + cyan: 53.8 + white: 99.8 + brightBlack: 7.4 + brightRed: 49.2 + brightGreen: 70.4 + brightYellow: 87 + brightBlue: 51.3 + brightMagenta: 49.6 + brightCyan: 68.5 + brightWhite: 103.3 diff --git a/themes/wind-theme--wind-dark-zinc.yaml b/themes/wind-theme--wind-dark-zinc.yaml new file mode 100644 index 00000000..2a89ca0d --- /dev/null +++ b/themes/wind-theme--wind-dark-zinc.yaml @@ -0,0 +1,53 @@ +name: "Wind Theme (Wind Dark Zinc)" +source: + marketplace_id: "calvinludwig.wind-theme" + version: "1.0.0" + installs: 1683 + rating: 5 + ratings: 3 + author: "Calvin Ludwig" + repo: "https://github.com/calvinludwig/wind-theme" + url: "https://marketplace.visualstudio.com/items?itemName=calvinludwig.wind-theme" + formats: null +colors: + bg: "#18181B" + fg: "#D4D4D8" + black: "#27272A" + red: "#F43F5E" + green: "#22C55E" + yellow: "#FACC15" + blue: "#3B82F6" + magenta: "#A855F7" + cyan: "#06B6D4" + white: "#F4F4F5" + brightBlack: "#3F3F46" + brightRed: "#FB7185" + brightGreen: "#4ADE80" + brightYellow: "#FDE047" + brightBlue: "#60A5FA" + brightMagenta: "#C084FC" + brightCyan: "#22D3EE" + brightWhite: "#FAFAFA" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 79.5 + black: 0 + red: 37.7 + green: 56.7 + yellow: 77.6 + blue: 36.6 + magenta: 34.3 + cyan: 53.7 + white: 99.5 + brightBlack: 0 + brightRed: 49.1 + brightGreen: 70.3 + brightYellow: 87 + brightBlue: 51.2 + brightMagenta: 49.5 + brightCyan: 68.5 + brightWhite: 103.4 diff --git a/themes/windows-xp-dark.yaml b/themes/windows-xp-dark.yaml new file mode 100644 index 00000000..092fc85a --- /dev/null +++ b/themes/windows-xp-dark.yaml @@ -0,0 +1,53 @@ +name: "Windows XP Dark" +source: + marketplace_id: "mssjim.windows-xp-dark" + version: "1.0.1" + installs: 3368 + rating: 0 + ratings: 0 + author: "Mssjim" + repo: "https://github.com/Mssjim/windows-xp-dark" + url: "https://marketplace.visualstudio.com/items?itemName=mssjim.windows-xp-dark" + formats: null +colors: + bg: "#212122" + fg: "#D4D4D4" + black: "#909090" + red: "#C00000" + green: "#00C000" + yellow: "#C0C000" + blue: "#0000C0" + magenta: "#C000C0" + cyan: "#00C0C0" + white: "#C0C0C0" + brightBlack: "#C0C0C0" + brightRed: "#FF0000" + brightGreen: "#00FF00" + brightYellow: "#FFFF00" + brightBlue: "#0000FF" + brightMagenta: "#FF00FF" + brightCyan: "#00FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 78.2 + black: 40.3 + red: 20.2 + green: 52.3 + yellow: 62.9 + blue: 0 + magenta: 25.9 + cyan: 56 + white: 66.3 + brightBlack: 66.3 + brightRed: 35.3 + brightGreen: 84.2 + brightYellow: 100.4 + brightBlue: 13.9 + brightMagenta: 43.9 + brightCyan: 89.9 + brightWhite: 105.6 diff --git a/themes/winter-theme.yaml b/themes/winter-theme.yaml new file mode 100644 index 00000000..3d791a70 --- /dev/null +++ b/themes/winter-theme.yaml @@ -0,0 +1,53 @@ +name: "Winter Theme" +source: + marketplace_id: "matthewwithanm.vscode-theme-winter" + version: "0.0.4" + installs: 4492 + rating: 5 + ratings: 1 + author: "matthewwithanm" + repo: "https://github.com/matthewwithanm/vscode-theme-winter" + url: "https://marketplace.visualstudio.com/items?itemName=matthewwithanm.vscode-theme-winter" + formats: null +colors: + bg: "#FFFFFF" + fg: "#000000" + black: "#555555" + red: "#F36F69" + green: "#2DA36E" + yellow: "#318FFF" + blue: "#2C36E8" + magenta: "#A71D5D" + cyan: "#703FDE" + white: "#999988" + brightBlack: "#55555" + brightRed: "#F36F69" + brightGreen: "#2DA36E" + brightYellow: "#318FFF" + brightBlue: "#2C36E8" + brightMagenta: "#A71D5D" + brightCyan: "#703FDE" + brightWhite: "#999988" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 106 + black: 85.9 + red: 54.4 + green: 58.7 + yellow: 59 + blue: 84.7 + magenta: 82.9 + cyan: 79.5 + white: 55.2 + brightBlack: 89.2 + brightRed: 54.4 + brightGreen: 58.7 + brightYellow: 59 + brightBlue: 84.7 + brightMagenta: 82.9 + brightCyan: 79.5 + brightWhite: 55.2 diff --git a/themes/wired--jackhammar.yaml b/themes/wired--jackhammar.yaml new file mode 100644 index 00000000..d9f4c254 --- /dev/null +++ b/themes/wired--jackhammar.yaml @@ -0,0 +1,53 @@ +name: "Wired (Jackhammar)" +source: + marketplace_id: "minako.wired" + version: "2.0.5" + installs: 4869 + rating: 0 + ratings: 0 + author: "minako" + repo: "https://github.com/kayliese/wired" + url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" + formats: null +colors: + bg: "#000011" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 80.5 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.7 + cyan: 48.5 + white: 91 + brightBlack: 23 + brightRed: 39.5 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.3 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/wired--kali-linux-theme.yaml b/themes/wired--kali-linux-theme.yaml new file mode 100644 index 00000000..bcc27391 --- /dev/null +++ b/themes/wired--kali-linux-theme.yaml @@ -0,0 +1,53 @@ +name: "Wired (Kali linux theme)" +source: + marketplace_id: "minako.wired" + version: "2.0.5" + installs: 4869 + rating: 0 + ratings: 0 + author: "minako" + repo: "https://github.com/kayliese/wired" + url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" + formats: null +colors: + bg: "#222735" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + pair: null + contrast: + fg: 77.2 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.1 + magenta: 27.4 + cyan: 45.2 + white: 87.7 + brightBlack: 19.7 + brightRed: 36.2 + brightGreen: 61.2 + brightYellow: 93.3 + brightBlue: 37.7 + brightMagenta: 43.1 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/wired--wired-lighter.yaml b/themes/wired--wired-lighter.yaml new file mode 100644 index 00000000..3175a348 --- /dev/null +++ b/themes/wired--wired-lighter.yaml @@ -0,0 +1,53 @@ +name: "Wired (wired lighter)" +source: + marketplace_id: "minako.wired" + version: "2.0.5" + installs: 4869 + rating: 0 + ratings: 0 + author: "minako" + repo: "https://github.com/kayliese/wired" + url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" + formats: null +colors: + bg: "#03071B" + fg: "#C1B492" + black: "#502832" + red: "#A45A74" + green: "#B39987" + yellow: "#A47F7C" + blue: "#AD5F74" + magenta: "#D78594" + cyan: "#B39487" + white: "#CA988E" + brightBlack: "#703A47" + brightRed: "#A45A74" + brightGreen: "#B39987" + brightYellow: "#A47F7C" + brightBlue: "#AD5F74" + brightMagenta: "#D78594" + brightCyan: "#B39487" + brightWhite: "#D2738A" +meta: + mode: "dark" + accent: "red" + hue: 267 + pair: null + contrast: + fg: 62 + black: 0 + red: 27.9 + green: 49.6 + yellow: 38.4 + blue: 30.5 + magenta: 49 + cyan: 47.8 + white: 52.8 + brightBlack: 12.2 + brightRed: 27.9 + brightGreen: 49.6 + brightYellow: 38.4 + brightBlue: 30.5 + brightMagenta: 49 + brightCyan: 47.8 + brightWhite: 42.7 diff --git a/themes/wired--wired.yaml b/themes/wired--wired.yaml new file mode 100644 index 00000000..0a5cfc7d --- /dev/null +++ b/themes/wired--wired.yaml @@ -0,0 +1,53 @@ +name: "Wired (wired)" +source: + marketplace_id: "minako.wired" + version: "2.0.5" + installs: 4869 + rating: 0 + ratings: 0 + author: "minako" + repo: "https://github.com/kayliese/wired" + url: "https://marketplace.visualstudio.com/items?itemName=minako.wired" + formats: null +colors: + bg: "#000000" + fg: "#C1B492" + black: "#502832" + red: "#A45A74" + green: "#B39987" + yellow: "#A47F7C" + blue: "#AD5F74" + magenta: "#D78594" + cyan: "#B39487" + white: "#CA988E" + brightBlack: "#703A47" + brightRed: "#A45A74" + brightGreen: "#B39987" + brightYellow: "#A47F7C" + brightBlue: "#AD5F74" + brightMagenta: "#D78594" + brightCyan: "#B39487" + brightWhite: "#D2738A" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 62.2 + black: 0 + red: 28.1 + green: 49.8 + yellow: 38.6 + blue: 30.7 + magenta: 49.1 + cyan: 48 + white: 52.9 + brightBlack: 12.4 + brightRed: 28.1 + brightGreen: 49.8 + brightYellow: 38.6 + brightBlue: 30.7 + brightMagenta: 49.1 + brightCyan: 48 + brightWhite: 42.8 diff --git a/themes/wise-owl-material-theme--atom-material-theme.yaml b/themes/wise-owl-material-theme--atom-material-theme.yaml new file mode 100644 index 00000000..0d8b27cb --- /dev/null +++ b/themes/wise-owl-material-theme--atom-material-theme.yaml @@ -0,0 +1,53 @@ +name: "Wise Owl Material Theme (Atom Material Theme)" +source: + marketplace_id: "waseemakhter028.wise-owl-material-theme" + version: "1.0.0" + installs: 32 + rating: 5 + ratings: 1 + author: "WaseemAkhter" + repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" + formats: null +colors: + bg: "#263238" + fg: "#D4D4D4" + black: "#313131" + red: "#FF5D4E" + green: "#CDDC39" + yellow: "#FFCB43" + blue: "#4FB6F7" + magenta: "#E23673" + cyan: "#00B9CC" + white: "#E6E5E5" + brightBlack: "#708284" + brightRed: "#FF5D4E" + brightGreen: "#CDDC39" + brightYellow: "#FFCB43" + brightBlue: "#4FB6F7" + brightMagenta: "#E23673" + brightCyan: "#00B9CC" + brightWhite: "#E6E5E5" +meta: + mode: "dark" + accent: "red" + hue: 230 + pair: null + contrast: + fg: 75.3 + black: 0 + red: 40.5 + green: 74.3 + yellow: 74.2 + blue: 53.1 + magenta: 29 + cyan: 50.6 + white: 86 + brightBlack: 28.9 + brightRed: 40.5 + brightGreen: 74.3 + brightYellow: 74.2 + brightBlue: 53.1 + brightMagenta: 29 + brightCyan: 50.6 + brightWhite: 86 diff --git a/themes/wise-owl-material-theme--wise-owl-material-high-contrast.yaml b/themes/wise-owl-material-theme--wise-owl-material-high-contrast.yaml new file mode 100644 index 00000000..76976489 --- /dev/null +++ b/themes/wise-owl-material-theme--wise-owl-material-high-contrast.yaml @@ -0,0 +1,53 @@ +name: "Wise Owl Material Theme (Wise Owl Material High Contrast)" +source: + marketplace_id: "waseemakhter028.wise-owl-material-theme" + version: "1.0.0" + installs: 32 + rating: 5 + ratings: 1 + author: "WaseemAkhter" + repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" + formats: null +colors: + bg: "#000000" + fg: "#D6DEEB" + black: "#000000" + red: "#FF5874" + green: "#22DA6F" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#7FDBCA" + white: "#D6DEEB" + brightBlack: "#464E57" + brightRed: "#FF5874" + brightGreen: "#22DA6F" + brightYellow: "#ECC48D" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 86.2 + black: 0 + red: 45.6 + green: 68.3 + yellow: 74.7 + blue: 56.9 + magenta: 54.8 + cyan: 75 + white: 86.2 + brightBlack: 13.1 + brightRed: 45.6 + brightGreen: 68.3 + brightYellow: 74.7 + brightBlue: 56.9 + brightMagenta: 54.8 + brightCyan: 75 + brightWhite: 107.9 diff --git a/themes/wise-owl-material-theme--wise-owl-material-light.yaml b/themes/wise-owl-material-theme--wise-owl-material-light.yaml new file mode 100644 index 00000000..a9838e06 --- /dev/null +++ b/themes/wise-owl-material-theme--wise-owl-material-light.yaml @@ -0,0 +1,53 @@ +name: "Wise Owl Material Theme (Wise Owl Material Light)" +source: + marketplace_id: "waseemakhter028.wise-owl-material-theme" + version: "1.0.0" + installs: 32 + rating: 5 + ratings: 1 + author: "WaseemAkhter" + repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" + formats: null +colors: + bg: "#F5F5F5" + fg: "#333333" + black: "#333333" + red: "#E91E63" + green: "#27AE60" + yellow: "#F39C12" + blue: "#0066CC" + magenta: "#8E44AD" + cyan: "#16A085" + white: "#F5F5F5" + brightBlack: "#666666" + brightRed: "#E91E63" + brightGreen: "#27AE60" + brightYellow: "#F39C12" + brightBlue: "#0066CC" + brightMagenta: "#8E44AD" + brightCyan: "#16A085" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 92.7 + black: 92.7 + red: 62 + green: 48.5 + yellow: 36.8 + blue: 71 + magenta: 72.8 + cyan: 53.7 + white: 0 + brightBlack: 72.8 + brightRed: 62 + brightGreen: 48.5 + brightYellow: 36.8 + brightBlue: 71 + brightMagenta: 72.8 + brightCyan: 53.7 + brightWhite: 0 diff --git a/themes/wise-owl-material-theme--wise-owl-material.yaml b/themes/wise-owl-material-theme--wise-owl-material.yaml new file mode 100644 index 00000000..a8ceef79 --- /dev/null +++ b/themes/wise-owl-material-theme--wise-owl-material.yaml @@ -0,0 +1,53 @@ +name: "Wise Owl Material Theme (Wise Owl Material)" +source: + marketplace_id: "waseemakhter028.wise-owl-material-theme" + version: "1.0.0" + installs: 32 + rating: 5 + ratings: 1 + author: "WaseemAkhter" + repo: "https://github.com/waseem-developer-028/wise-owl-material-theme" + url: "https://marketplace.visualstudio.com/items?itemName=waseemakhter028.wise-owl-material-theme" + formats: null +colors: + bg: "#011627" + fg: "#D6DEEB" + black: "#011627" + red: "#FF5874" + green: "#22DA6F" + yellow: "#ECC48D" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#7FDBCA" + white: "#D6DEEB" + brightBlack: "#464E57" + brightRed: "#FF5874" + brightGreen: "#22DA6F" + brightYellow: "#ECC48D" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#7FDBCA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: 244 + pair: null + contrast: + fg: 85.3 + black: 0 + red: 44.7 + green: 67.4 + yellow: 73.8 + blue: 56 + magenta: 53.8 + cyan: 74.1 + white: 85.3 + brightBlack: 12.2 + brightRed: 44.7 + brightGreen: 67.4 + brightYellow: 73.8 + brightBlue: 56 + brightMagenta: 53.8 + brightCyan: 74.1 + brightWhite: 107 diff --git a/themes/wolves-league-theme.yaml b/themes/wolves-league-theme.yaml new file mode 100644 index 00000000..6c1dae16 --- /dev/null +++ b/themes/wolves-league-theme.yaml @@ -0,0 +1,53 @@ +name: "Wolves League Theme" +source: + marketplace_id: "WolvesLeague.wolves-league" + version: "3.0.0" + installs: 1847 + rating: 0 + ratings: 0 + author: "Wolves League" + repo: "https://github.com/WolvesLeague/wolves-league-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=WolvesLeague.wolves-league" + formats: null +colors: + bg: "#141516" + fg: "#BCBFC2" + black: "#141516" + red: "#FF5252" + green: "#29D196" + yellow: "#FFBA52" + blue: "#52A0FF" + magenta: "#FF85C4" + cyan: "#3DD6F5" + white: "#BCBFC2" + brightBlack: "#BCBFC2" + brightRed: "#FF0000" + brightGreen: "#66FFC9" + brightYellow: "#FFCE85" + brightBlue: "#85BCFF" + brightMagenta: "#F061AB" + brightCyan: "#85EBFF" + brightWhite: "#F8F8FF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 67 + black: 0 + red: 43 + green: 64.1 + yellow: 72 + blue: 49.3 + magenta: 57.8 + cyan: 71.1 + white: 67 + brightBlack: 67 + brightRed: 36.7 + brightGreen: 90.8 + brightYellow: 80.9 + brightBlue: 63.6 + brightMagenta: 45.1 + brightCyan: 84.8 + brightWhite: 102.8 diff --git a/themes/word.yaml b/themes/word.yaml new file mode 100644 index 00000000..c4c4ce97 --- /dev/null +++ b/themes/word.yaml @@ -0,0 +1,53 @@ +name: "Word" +source: + marketplace_id: "coastermcgee.word-theme" + version: "1.3.6" + installs: 54253 + rating: 4 + ratings: 1 + author: "Coaster McGee" + repo: "https://github.com/coastermcgee/vscode-word-theme" + url: "https://marketplace.visualstudio.com/items?itemName=coastermcgee.word-theme" + formats: null +colors: + bg: "#0000AA" + fg: "#FFFFFF" + black: "#000000" + red: "#AA0000" + green: "#00AA00" + yellow: "#E8E851" + blue: "#0000AA" + magenta: "#AA00AA" + cyan: "#00AAAA" + white: "#FFFFFF" + brightBlack: "#AAAAAA" + brightRed: "#FF5555" + brightGreen: "#55FF55" + brightYellow: "#FFFF55" + brightBlue: "#5555FF" + brightMagenta: "#FF55FF" + brightCyan: "#55FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 100.3 + black: 0 + red: 10.2 + green: 37 + yellow: 81.2 + blue: 0 + magenta: 15 + cyan: 40.1 + white: 100.3 + brightBlack: 48.7 + brightRed: 36.8 + brightGreen: 80.6 + brightYellow: 95.5 + brightBlue: 19.8 + brightMagenta: 44.3 + brightCyan: 85.8 + brightWhite: 100.3 diff --git a/themes/wordsmith--wordsmith-dark.yaml b/themes/wordsmith--wordsmith-dark.yaml new file mode 100644 index 00000000..e09c0654 --- /dev/null +++ b/themes/wordsmith--wordsmith-dark.yaml @@ -0,0 +1,54 @@ +name: "Wordsmith (Wordsmith Dark)" +source: + marketplace_id: "arzg.wordsmith" + version: "0.1.0" + installs: 717 + rating: 0 + ratings: 0 + author: "arzg" + repo: "https://github.com/arzg/wordsmith" + url: "https://marketplace.visualstudio.com/items?itemName=arzg.wordsmith" + formats: + iterm2: "https://raw.githubusercontent.com/arzg/wordsmith/master/wordsmith-dark.itermcolors" +colors: + bg: "#1A1A1A" + fg: "#CCCCCC" + black: "#1A1A1A" + red: "#D98567" + green: "#82A56F" + yellow: "#C1944E" + blue: "#7B9FC2" + magenta: "#BA8DB3" + cyan: "#16BDEC" + white: "#CCCCCC" + brightBlack: "#707070" + brightRed: "#D98567" + brightGreen: "#82A56F" + brightYellow: "#C1944E" + brightBlue: "#7B9FC2" + brightMagenta: "#BA8DB3" + brightCyan: "#16BDEC" + brightWhite: "#CCCCCC" +meta: + mode: "dark" + accent: "blue" + hue: null + pair: null + contrast: + fg: 74.3 + black: 0 + red: 46.9 + green: 47 + yellow: 47.4 + blue: 47.1 + magenta: 46.9 + cyan: 58 + white: 74.3 + brightBlack: 26.1 + brightRed: 46.9 + brightGreen: 47 + brightYellow: 47.4 + brightBlue: 47.1 + brightMagenta: 46.9 + brightCyan: 58 + brightWhite: 74.3 diff --git a/themes/wordsmith--wordsmith-light.yaml b/themes/wordsmith--wordsmith-light.yaml new file mode 100644 index 00000000..cabe85c8 --- /dev/null +++ b/themes/wordsmith--wordsmith-light.yaml @@ -0,0 +1,54 @@ +name: "Wordsmith (Wordsmith Light)" +source: + marketplace_id: "arzg.wordsmith" + version: "0.1.0" + installs: 717 + rating: 0 + ratings: 0 + author: "arzg" + repo: "https://github.com/arzg/wordsmith" + url: "https://marketplace.visualstudio.com/items?itemName=arzg.wordsmith" + formats: + iterm2: "https://raw.githubusercontent.com/arzg/wordsmith/master/wordsmith-dark.itermcolors" +colors: + bg: "#F7F7F7" + fg: "#1A1A1A" + black: "#F7F7F7" + red: "#CB4819" + green: "#3F831E" + yellow: "#A66501" + blue: "#3476B9" + magenta: "#B24FA3" + cyan: "#16BDEC" + white: "#1A1A1A" + brightBlack: "#C7C4C2" + brightRed: "#CB4819" + brightGreen: "#3F831E" + brightYellow: "#A66501" + brightBlue: "#3476B9" + brightMagenta: "#B24FA3" + brightCyan: "#16BDEC" + brightWhite: "#1A1A1A" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.5 + black: 0 + red: 66.7 + green: 67.5 + yellow: 67.4 + blue: 67.8 + magenta: 66.8 + cyan: 38 + white: 99.5 + brightBlack: 26.7 + brightRed: 66.7 + brightGreen: 67.5 + brightYellow: 67.4 + brightBlue: 67.8 + brightMagenta: 66.8 + brightCyan: 38 + brightWhite: 99.5 diff --git a/themes/wst-theme.yaml b/themes/wst-theme.yaml new file mode 100644 index 00000000..c6591261 --- /dev/null +++ b/themes/wst-theme.yaml @@ -0,0 +1,53 @@ +name: "wst-theme" +source: + marketplace_id: "LandonMoir.wst-theme" + version: "0.2.0" + installs: 105 + rating: 0 + ratings: 0 + author: "Landon Moir" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=LandonMoir.wst-theme" + formats: null +colors: + bg: "#4B1019" + fg: "#D4D4D4" + black: "#B4B4B4" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 16 + pair: null + contrast: + fg: 76.8 + black: 58.1 + red: 24.1 + green: 50.4 + yellow: 83 + blue: 24.8 + magenta: 27.1 + cyan: 44.9 + white: 87.4 + brightBlack: 19.4 + brightRed: 35.9 + brightGreen: 60.9 + brightYellow: 93 + brightBlue: 37.4 + brightMagenta: 42.7 + brightCyan: 52.8 + brightWhite: 87.4 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-aemeath.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-aemeath.yaml new file mode 100644 index 00000000..1eac80c4 --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-aemeath.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Aemeath)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FEFBF8" + fg: "#3D2D35" + black: "#3D2D35" + red: "#D87098" + green: "#70A888" + yellow: "#E8B8D8" + blue: "#5AB8C0" + magenta: "#E488AC" + cyan: "#77C1C8" + white: "#FFF8FB" + brightBlack: "#8D7A82" + brightRed: "#E890B0" + brightGreen: "#88C8A0" + brightYellow: "#F8D8F0" + brightBlue: "#70C8D0" + brightMagenta: "#F498BC" + brightCyan: "#8AD8E0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 97 + black: 97 + red: 55.9 + green: 50.9 + yellow: 28.5 + blue: 43.4 + magenta: 46.6 + cyan: 37.7 + white: 0 + brightBlack: 65.3 + brightRed: 43.4 + brightGreen: 35 + brightYellow: 13 + brightBlue: 34.8 + brightMagenta: 38.4 + brightCyan: 25.4 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-augusta.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-augusta.yaml new file mode 100644 index 00000000..d583077a --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-augusta.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Augusta)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FEFDFB" + fg: "#2D2219" + black: "#2D2219" + red: "#D84428" + green: "#70A870" + yellow: "#C89840" + blue: "#7888A0" + magenta: "#B87888" + cyan: "#9A7D66" + white: "#FCF9F5" + brightBlack: "#8D7A6E" + brightRed: "#F85438" + brightGreen: "#88C088" + brightYellow: "#FA9751" + brightBlue: "#8898B0" + brightMagenta: "#D09098" + brightCyan: "#B89D86" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 101.3 + black: 101.3 + red: 68.1 + green: 52.5 + yellow: 49.8 + blue: 62.5 + magenta: 60.8 + cyan: 64.5 + white: 0 + brightBlack: 66.9 + brightRed: 58.3 + brightGreen: 40.1 + brightYellow: 41.5 + brightBlue: 54.6 + brightMagenta: 49.3 + brightCyan: 48.9 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-baizhi.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-baizhi.yaml new file mode 100644 index 00000000..31c6f6fb --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-baizhi.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Baizhi)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FEFEFF" + fg: "#1D1F20" + black: "#1D1F20" + red: "#D86870" + green: "#70A890" + yellow: "#D8C8B8" + blue: "#A0A6AD" + magenta: "#A89898" + cyan: "#78A898" + white: "#FCFDFC" + brightBlack: "#72787A" + brightRed: "#E87880" + brightGreen: "#88C0A0" + brightYellow: "#E8E8E8" + brightBlue: "#B0B6BD" + brightMagenta: "#B8A8A8" + brightCyan: "#88B8A8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.9 + black: 102.9 + red: 60.7 + green: 52.2 + yellow: 27.6 + blue: 47.8 + magenta: 52.7 + cyan: 51.4 + white: 0 + brightBlack: 70.6 + brightRed: 53.3 + brightGreen: 40 + brightYellow: 10.6 + brightBlue: 39.3 + brightMagenta: 44.4 + brightCyan: 43.1 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-brant.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-brant.yaml new file mode 100644 index 00000000..84379a87 --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-brant.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Brant)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FFFCFA" + fg: "#1C2130" + black: "#1C2130" + red: "#973D6A" + green: "#508060" + yellow: "#B08040" + blue: "#3C4359" + magenta: "#805070" + cyan: "#72869F" + white: "#E4D8DC" + brightBlack: "#5A6578" + brightRed: "#B04070" + brightGreen: "#609070" + brightYellow: "#C09050" + brightBlue: "#506080" + brightMagenta: "#A06080" + brightCyan: "#889AB0" + brightWhite: "#F6F0F2" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 101.5 + black: 101.5 + red: 80.5 + green: 70.1 + yellow: 60.9 + blue: 91.3 + magenta: 80 + cyan: 63.4 + white: 17.3 + brightBlack: 78 + brightRed: 75.2 + brightGreen: 62.7 + brightYellow: 53.1 + brightBlue: 79.9 + brightMagenta: 70.9 + brightCyan: 53.5 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-cantarella.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-cantarella.yaml new file mode 100644 index 00000000..f86457ea --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-cantarella.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Cantarella)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#F8F9FC" + fg: "#3C3C62" + black: "#3C3C62" + red: "#C07080" + green: "#6AAA8A" + yellow: "#B8A060" + blue: "#6164B2" + magenta: "#8A7AB0" + cyan: "#6090B0" + white: "#E8EAF2" + brightBlack: "#6A6A8A" + brightRed: "#D08090" + brightGreen: "#7ABAA0" + brightYellow: "#C8B070" + brightBlue: "#7175C2" + brightMagenta: "#9A8AC0" + brightCyan: "#70A0C0" + brightWhite: "#F8F9FC" +meta: + mode: "light" + accent: "purple" + hue: null + pair: null + contrast: + fg: 90.6 + black: 90.6 + red: 59.5 + green: 49 + yellow: 46.3 + blue: 72.6 + magenta: 62.1 + cyan: 58.2 + white: 0 + brightBlack: 72.2 + brightRed: 51.9 + brightGreen: 40.6 + brightYellow: 38 + brightBlue: 65.1 + brightMagenta: 54.4 + brightCyan: 50.4 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-carlotta.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-carlotta.yaml new file mode 100644 index 00000000..d580b3a2 --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-carlotta.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Carlotta)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#2A1A1C" + black: "#2A1A1C" + red: "#9A2850" + green: "#509068" + yellow: "#A08040" + blue: "#3A5568" + magenta: "#9A2850" + cyan: "#4A8898" + white: "#FCE8EC" + brightBlack: "#6A5558" + brightRed: "#B83060" + brightGreen: "#60A078" + brightYellow: "#B09050" + brightBlue: "#4A6578" + brightMagenta: "#B83060" + brightCyan: "#5A98A8" + brightWhite: "#FEFAFB" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 103.5 + black: 103.5 + red: 85 + green: 65.4 + yellow: 64.6 + blue: 87.2 + magenta: 85 + cyan: 67.1 + white: 8.3 + brightBlack: 83.8 + brightRed: 77.7 + brightGreen: 57.7 + brightYellow: 56.9 + brightBlue: 80.6 + brightMagenta: 77.7 + brightCyan: 59.5 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-cartethyia.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-cartethyia.yaml new file mode 100644 index 00000000..3c30d8be --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-cartethyia.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Cartethyia)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FAFCFD" + fg: "#2C3845" + black: "#2C3845" + red: "#C86868" + green: "#60A880" + yellow: "#D4A860" + blue: "#4888C0" + magenta: "#A878C0" + cyan: "#6BA8D8" + white: "#E8F2F8" + brightBlack: "#586878" + brightRed: "#D87878" + brightGreen: "#70B890" + brightYellow: "#E4B870" + brightBlue: "#5898C8" + brightMagenta: "#B888D0" + brightCyan: "#88C8F0" + brightWhite: "#F2F8FC" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 95.3 + black: 95.3 + red: 62.4 + green: 52.2 + yellow: 41.1 + blue: 63.1 + magenta: 59.7 + cyan: 47.9 + white: 0 + brightBlack: 76.6 + brightRed: 55 + brightGreen: 44.2 + brightYellow: 32.6 + brightBlue: 56 + brightMagenta: 51.9 + brightCyan: 31.7 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-changli.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-changli.yaml new file mode 100644 index 00000000..48d0889c --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-changli.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Changli)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FFFCFA" + fg: "#3D2D2A" + black: "#383131" + red: "#C03020" + green: "#609060" + yellow: "#C08020" + blue: "#506080" + magenta: "#A04050" + cyan: "#508080" + white: "#FEECE8" + brightBlack: "#706060" + brightRed: "#E05040" + brightGreen: "#70B070" + brightYellow: "#E0A040" + brightBlue: "#607090" + brightMagenta: "#C05060" + brightCyan: "#609090" + brightWhite: "#FFFCFA" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97.8 + black: 97.3 + red: 75.6 + green: 63.1 + yellow: 58.7 + blue: 79.9 + magenta: 79.1 + cyan: 69.2 + white: 0 + brightBlack: 78.2 + brightRed: 63.9 + brightGreen: 48.9 + brightYellow: 42.9 + brightBlue: 72.9 + brightMagenta: 69.9 + brightCyan: 61.7 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-chisa.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-chisa.yaml new file mode 100644 index 00000000..ba5281f4 --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-chisa.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Chisa)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FEFDFB" + fg: "#2D2725" + black: "#2D2725" + red: "#C83540" + green: "#70A070" + yellow: "#D8A878" + blue: "#6E6C78" + magenta: "#B87888" + cyan: "#8898A8" + white: "#FCF9F6" + brightBlack: "#8D7A78" + brightRed: "#E84550" + brightGreen: "#88C088" + brightYellow: "#F8D7BD" + brightBlue: "#8E8C98" + brightMagenta: "#D89098" + brightCyan: "#98A8B8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100.4 + black: 100.4 + red: 73.3 + green: 55.7 + yellow: 40.9 + blue: 74.3 + magenta: 60.8 + cyan: 54.9 + white: 0 + brightBlack: 66.6 + brightRed: 63.9 + brightGreen: 40.1 + brightYellow: 16.4 + brightBlue: 59.3 + brightMagenta: 48 + brightCyan: 46.8 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-galbrena.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-galbrena.yaml new file mode 100644 index 00000000..2d051a9e --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-galbrena.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Galbrena)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FEFEFF" + fg: "#1D2228" + black: "#1D2228" + red: "#C87888" + green: "#70A888" + yellow: "#A898D8" + blue: "#3486D8" + magenta: "#9F76B8" + cyan: "#535A77" + white: "#FBFDFE" + brightBlack: "#727A80" + brightRed: "#D88898" + brightGreen: "#88C098" + brightYellow: "#B8A8E8" + brightBlue: "#5098E8" + brightMagenta: "#B090C8" + brightCyan: "#636A87" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 102.4 + black: 102.4 + red: 58.8 + green: 52.5 + yellow: 49.8 + blue: 64.4 + magenta: 63.4 + cyan: 82.8 + white: 0 + brightBlack: 69.7 + brightRed: 51 + brightGreen: 40.3 + brightYellow: 41.5 + brightBlue: 55.9 + brightMagenta: 52.4 + brightCyan: 76 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-iuno.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-iuno.yaml new file mode 100644 index 00000000..0967dd68 --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-iuno.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Iuno)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#2A3040" + black: "#2A3040" + red: "#C05050" + green: "#609060" + yellow: "#D4A830" + blue: "#4A6890" + magenta: "#906080" + cyan: "#408090" + white: "#FDFADC" + brightBlack: "#606880" + brightRed: "#D06060" + brightGreen: "#70A070" + brightYellow: "#E4B840" + brightBlue: "#5A78A0" + brightMagenta: "#A07090" + brightCyan: "#5090A0" + brightWhite: "#FFFCFA" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 99.5 + black: 99.5 + red: 71.7 + green: 64.6 + yellow: 43.6 + blue: 78.5 + magenta: 74.7 + cyan: 70.8 + white: 0 + brightBlack: 77.7 + brightRed: 65 + brightGreen: 56.9 + brightYellow: 35.2 + brightBlue: 71.4 + brightMagenta: 67.5 + brightCyan: 63.4 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-jinhsi.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-jinhsi.yaml new file mode 100644 index 00000000..b2bb3574 --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-jinhsi.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Jinhsi)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FFFFFF" + fg: "#2A3638" + black: "#2A3638" + red: "#C06868" + green: "#50A078" + yellow: "#A08840" + blue: "#4888A8" + magenta: "#8878A8" + cyan: "#1A8A95" + white: "#E0F5F6" + brightBlack: "#5A6A6C" + brightRed: "#D08080" + brightGreen: "#60B088" + brightYellow: "#B09850" + brightBlue: "#5898B8" + brightMagenta: "#9888B8" + brightCyan: "#28A0AC" + brightWhite: "#FAFEFE" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 98.4 + black: 98.4 + red: 65.9 + green: 58.6 + yellow: 61.9 + blue: 66.4 + magenta: 67 + cyan: 67.8 + white: 0 + brightBlack: 78.3 + brightRed: 56 + brightGreen: 50.7 + brightYellow: 54.1 + brightBlue: 58.9 + brightMagenta: 59.3 + brightCyan: 57.9 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-lynae.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-lynae.yaml new file mode 100644 index 00000000..e16b106f --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-lynae.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Lynae)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FDFBFA" + fg: "#313843" + black: "#313843" + red: "#D87A8A" + green: "#6AAA8A" + yellow: "#C4ACA5" + blue: "#5A8A9A" + magenta: "#B887A5" + cyan: "#79B2B9" + white: "#F0EBE9" + brightBlack: "#5A6270" + brightRed: "#E88A9A" + brightGreen: "#7ABAA0" + brightYellow: "#D4BCB5" + brightBlue: "#6A9AAA" + brightMagenta: "#C898B0" + brightCyan: "#89C2C9" + brightWhite: "#FDFBFA" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 94.9 + black: 94.9 + red: 53.8 + green: 50.4 + yellow: 39.9 + blue: 63.2 + magenta: 54.2 + cyan: 44.4 + white: 0 + brightBlack: 78.5 + brightRed: 46 + brightGreen: 42 + brightYellow: 31.2 + brightBlue: 55.5 + brightMagenta: 45.9 + brightCyan: 35.9 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-mornye.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-mornye.yaml new file mode 100644 index 00000000..9f3ad69f --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-mornye.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Mornye)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FEFEFC" + fg: "#2D2535" + black: "#2D2535" + red: "#D87898" + green: "#70A888" + yellow: "#E8B8D0" + blue: "#B8A8D8" + magenta: "#A88EBB" + cyan: "#C8A8D8" + white: "#FBF8FD" + brightBlack: "#8D7A8A" + brightRed: "#E890B0" + brightGreen: "#88C0A0" + brightYellow: "#F8D0E8" + brightBlue: "#D0C0E8" + brightMagenta: "#C8AECB" + brightCyan: "#D8B8E8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 100.8 + black: 100.8 + red: 55.3 + green: 52.3 + yellow: 30.3 + blue: 42.2 + magenta: 54.6 + cyan: 40.2 + white: 0 + brightBlack: 66.4 + brightRed: 44.9 + brightGreen: 39.9 + brightYellow: 18 + brightBlue: 29.5 + brightMagenta: 38.6 + brightCyan: 31.5 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-roccia.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-roccia.yaml new file mode 100644 index 00000000..fb65148c --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-roccia.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Roccia)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FEFCFE" + fg: "#1D1A20" + black: "#1D1A20" + red: "#D86880" + green: "#70A898" + yellow: "#FDC3ED" + blue: "#5F6AC3" + magenta: "#C2588A" + cyan: "#9888A8" + white: "#FCFAFD" + brightBlack: "#7A7280" + brightRed: "#E87890" + brightGreen: "#88C0A8" + brightYellow: "#FDD3FC" + brightBlue: "#6F7AD3" + brightMagenta: "#D2689A" + brightCyan: "#A898B8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 102.6 + black: 102.6 + red: 59.3 + green: 51 + yellow: 21.1 + blue: 72 + magenta: 66.6 + cyan: 58.6 + white: 0 + brightBlack: 70.7 + brightRed: 51.9 + brightGreen: 38.9 + brightYellow: 14.4 + brightBlue: 64.7 + brightMagenta: 59.5 + brightCyan: 50.5 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-rover.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-rover.yaml new file mode 100644 index 00000000..e92421e0 --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-rover.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Rover)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FFFCFA" + fg: "#312328" + black: "#312328" + red: "#A25050" + green: "#709060" + yellow: "#D09060" + blue: "#506080" + magenta: "#906070" + cyan: "#608080" + white: "#F7EADC" + brightBlack: "#706060" + brightRed: "#C06060" + brightGreen: "#80A070" + brightYellow: "#E3B08B" + brightBlue: "#607090" + brightMagenta: "#A07080" + brightCyan: "#709090" + brightWhite: "#FFFCFA" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 100.3 + black: 100.3 + red: 75.7 + green: 62 + yellow: 50.4 + blue: 79.9 + magenta: 73.8 + cyan: 68.1 + white: 7.3 + brightBlack: 78.2 + brightRed: 66.5 + brightGreen: 54.1 + brightYellow: 35.5 + brightBlue: 72.9 + brightMagenta: 66.6 + brightCyan: 60.6 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-sanhua.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-sanhua.yaml new file mode 100644 index 00000000..a89b3598 --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-sanhua.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Sanhua)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FEFEFE" + fg: "#1D1F20" + black: "#1D1F20" + red: "#D86870" + green: "#70A888" + yellow: "#C8B8B0" + blue: "#A0A6AD" + magenta: "#B898C8" + cyan: "#98A8B0" + white: "#FCFDFD" + brightBlack: "#727678" + brightRed: "#E87880" + brightGreen: "#88C098" + brightYellow: "#D8C8C0" + brightBlue: "#B0B6BD" + brightMagenta: "#C8A8D8" + brightCyan: "#A8B8C0" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.9 + black: 102.9 + red: 60.7 + green: 52.4 + yellow: 36.1 + blue: 47.7 + magenta: 48.6 + cyan: 47.7 + white: 0 + brightBlack: 71.3 + brightRed: 53.3 + brightGreen: 40.2 + brightYellow: 27.3 + brightBlue: 39.2 + brightMagenta: 40.2 + brightCyan: 39.2 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-scar.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-scar.yaml new file mode 100644 index 00000000..4bae7d7c --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-scar.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Scar)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#F5F5F7" + fg: "#1E1E24" + black: "#1E1E24" + red: "#D81E3D" + green: "#2E8B57" + yellow: "#E6C200" + blue: "#4A6A8A" + magenta: "#8B0000" + cyan: "#5BA4C8" + white: "#EAEAEF" + brightBlack: "#5A5A65" + brightRed: "#FF4D6D" + brightGreen: "#50C878" + brightYellow: "#FFD700" + brightBlue: "#6A8AA8" + brightMagenta: "#A03040" + brightCyan: "#7BC8E8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97.7 + black: 97.7 + red: 66.9 + green: 63.1 + yellow: 25.4 + blue: 72.3 + magenta: 84.9 + cyan: 47.4 + white: 0 + brightBlack: 77.6 + brightRed: 52.2 + brightGreen: 35.5 + brightYellow: 13.3 + brightBlue: 57.8 + brightMagenta: 77.4 + brightCyan: 29.2 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-taoqi.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-taoqi.yaml new file mode 100644 index 00000000..2217fb96 --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-taoqi.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Taoqi)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FEFCFD" + fg: "#2D1D25" + black: "#2D1D25" + red: "#D86380" + green: "#70A888" + yellow: "#E8A8C8" + blue: "#9878B8" + magenta: "#B9536E" + cyan: "#A878A8" + white: "#FCF8FA" + brightBlack: "#8D7278" + brightRed: "#E87390" + brightGreen: "#88C098" + brightYellow: "#F8C0D8" + brightBlue: "#A888C8" + brightMagenta: "#C9637E" + brightCyan: "#B888B8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 101.4 + black: 101.4 + red: 60.4 + green: 51.5 + yellow: 35.4 + blue: 62.8 + magenta: 70.2 + cyan: 61.5 + white: 0 + brightBlack: 68.7 + brightRed: 53.1 + brightGreen: 39.4 + brightYellow: 23.8 + brightBlue: 55 + brightMagenta: 63.3 + brightCyan: 53.7 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-the-shorekeeper.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-the-shorekeeper.yaml new file mode 100644 index 00000000..7623ea69 --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-the-shorekeeper.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : The Shorekeeper)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#F8FCFE" + fg: "#2B5F8F" + black: "#2B5F8F" + red: "#C85F75" + green: "#50A078" + yellow: "#D4A055" + blue: "#4A8AB8" + magenta: "#9B86BD" + cyan: "#6BB6D6" + white: "#E0F0F8" + brightBlack: "#5A8AB0" + brightRed: "#D87585" + brightGreen: "#60B088" + brightYellow: "#E4B065" + brightBlue: "#5A9AC8" + brightMagenta: "#B8A4D4" + brightCyan: "#89CFF0" + brightWhite: "#F0F8FC" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 80.6 + black: 80.6 + red: 64 + green: 56.3 + yellow: 43.9 + blue: 62.5 + magenta: 57.1 + cyan: 42.2 + white: 0 + brightBlack: 62.1 + brightRed: 55.2 + brightGreen: 48.5 + brightYellow: 35.5 + brightBlue: 54.9 + brightMagenta: 42.3 + brightCyan: 28.5 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-verina.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-verina.yaml new file mode 100644 index 00000000..52983ed2 --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-verina.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Verina)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FDFEF8" + fg: "#252B1D" + black: "#252B1D" + red: "#B87860" + green: "#70A870" + yellow: "#C8B860" + blue: "#6888A0" + magenta: "#A87890" + cyan: "#6C8C81" + white: "#FBFDF5" + brightBlack: "#7A8272" + brightRed: "#D89078" + brightGreen: "#88C088" + brightYellow: "#DFD48B" + brightBlue: "#7898B0" + brightMagenta: "#C890A8" + brightCyan: "#7C9C91" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "green" + hue: null + pair: null + contrast: + fg: 100.4 + black: 100.4 + red: 62.1 + green: 52.7 + yellow: 37.8 + blue: 63.9 + magenta: 63 + cyan: 63.4 + white: 0 + brightBlack: 66.3 + brightRed: 49.1 + brightGreen: 40.3 + brightYellow: 22.7 + brightBlue: 56.1 + brightMagenta: 50.1 + brightCyan: 55.6 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-yinlin.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-yinlin.yaml new file mode 100644 index 00000000..e4fddd40 --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-yinlin.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Yinlin)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FEFCFD" + fg: "#1D1A20" + black: "#1D1A20" + red: "#EE5257" + green: "#70A890" + yellow: "#D0B0C8" + blue: "#8B64AB" + magenta: "#C890A8" + cyan: "#A88898" + white: "#FCFAFC" + brightBlack: "#7A7278" + brightRed: "#F86267" + brightGreen: "#88C0A0" + brightYellow: "#E0C0D8" + brightBlue: "#9B74BB" + brightMagenta: "#D8A0B8" + brightCyan: "#B898A8" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "orange" + hue: null + pair: null + contrast: + fg: 102.6 + black: 102.6 + red: 60.1 + green: 51.3 + yellow: 36.2 + blue: 70.7 + magenta: 49.6 + cyan: 57.2 + white: 0 + brightBlack: 70.9 + brightRed: 54.7 + brightGreen: 39.1 + brightYellow: 27.4 + brightBlue: 63.4 + brightMagenta: 41.3 + brightCyan: 49.2 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes--wuthering-waves-zhezhi.yaml b/themes/wuthering-waves-color-themes--wuthering-waves-zhezhi.yaml new file mode 100644 index 00000000..2afe109e --- /dev/null +++ b/themes/wuthering-waves-color-themes--wuthering-waves-zhezhi.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Zhezhi)" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#FDFEFE" + fg: "#242222" + black: "#242222" + red: "#C87888" + green: "#70A898" + yellow: "#D8B8D0" + blue: "#97CADD" + magenta: "#E6A4C7" + cyan: "#7BABB4" + white: "#FBFDFE" + brightBlack: "#7A7676" + brightRed: "#D88898" + brightGreen: "#88C0A8" + brightYellow: "#E8C8E0" + brightBlue: "#A8D8EC" + brightMagenta: "#F8B8D8" + brightCyan: "#8BBBC4" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 102.1 + black: 102.1 + red: 58.6 + green: 51.8 + yellow: 32.6 + blue: 32 + magenta: 37.9 + cyan: 48.7 + white: 0 + brightBlack: 70.4 + brightRed: 50.8 + brightGreen: 39.6 + brightYellow: 23.6 + brightBlue: 23.9 + brightMagenta: 27.5 + brightCyan: 40.3 + brightWhite: 0 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-aemeath-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-aemeath-dark.yaml new file mode 100644 index 00000000..92a28614 --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-aemeath-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Aemeath (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#1A1418" + fg: "#F5EBF0" + black: "#1A1418" + red: "#F5A8C8" + green: "#88C8B0" + yellow: "#FDD7E8" + blue: "#77C1C8" + magenta: "#E488AC" + cyan: "#C8F9FC" + white: "#F5EBF0" + brightBlack: "#6A5860" + brightRed: "#FFB8D8" + brightGreen: "#98D8C0" + brightYellow: "#FFE7F8" + brightBlue: "#8AD8E8" + brightMagenta: "#F498BC" + brightCyan: "#D8FFFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 338 + pair: null + contrast: + fg: 95.6 + black: 0 + red: 66.8 + green: 64.9 + yellow: 87.7 + blue: 61.6 + magenta: 52.3 + cyan: 97.1 + white: 95.6 + brightBlack: 18.3 + brightRed: 75 + brightGreen: 74.2 + brightYellow: 95.6 + brightBlue: 74.9 + brightMagenta: 60.8 + brightCyan: 102 + brightWhite: 107 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-augusta-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-augusta-dark.yaml new file mode 100644 index 00000000..c825296e --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-augusta-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Augusta (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#1A1614" + fg: "#F5EFE8" + black: "#1A1614" + red: "#E75130" + green: "#90B880" + yellow: "#FA9751" + blue: "#8898A8" + magenta: "#C88890" + cyan: "#9A7D66" + white: "#F5EFE8" + brightBlack: "#645852" + brightRed: "#F87150" + brightGreen: "#A0C890" + brightYellow: "#FFB070" + brightBlue: "#98A8B8" + brightMagenta: "#D898A0" + brightCyan: "#B89D86" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.9 + black: 0 + red: 36.8 + green: 56.9 + yellow: 58.6 + blue: 44.7 + magenta: 46.4 + cyan: 35 + white: 96.9 + brightBlack: 17.2 + brightRed: 47.5 + brightGreen: 65.9 + brightYellow: 68.6 + brightBlue: 53.1 + brightMagenta: 54.7 + brightCyan: 50.9 + brightWhite: 106.9 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-baizhi-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-baizhi-dark.yaml new file mode 100644 index 00000000..a174c21c --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-baizhi-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Baizhi (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#16181A" + fg: "#EBF0EB" + black: "#16181A" + red: "#DE7470" + green: "#80B8A0" + yellow: "#E8E8E8" + blue: "#A0A6AD" + magenta: "#B8A8A0" + cyan: "#88A898" + white: "#EBF0EB" + brightBlack: "#565E5A" + brightRed: "#EE8480" + brightGreen: "#90C8B0" + brightYellow: "#F8F8F8" + brightBlue: "#C0C6CD" + brightMagenta: "#C8B8B0" + brightCyan: "#98B8A8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.1 + black: 0 + red: 43.5 + green: 56.5 + yellow: 91.8 + blue: 52.6 + magenta: 55.7 + cyan: 50.2 + white: 96.1 + brightBlack: 17.8 + brightRed: 51.3 + brightGreen: 65.4 + brightYellow: 102.2 + brightBlue: 70.6 + brightMagenta: 64.7 + brightCyan: 58.9 + brightWhite: 106.8 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-brant-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-brant-dark.yaml new file mode 100644 index 00000000..1949bcd3 --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-brant-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Brant (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#1C2130" + fg: "#E4D8DC" + black: "#1C2130" + red: "#D65D8A" + green: "#609070" + yellow: "#C09050" + blue: "#72869F" + magenta: "#B06090" + cyan: "#889AB0" + white: "#E4D8DC" + brightBlack: "#5A6578" + brightRed: "#E070A0" + brightGreen: "#70B080" + brightYellow: "#E0A060" + brightBlue: "#8FA0C0" + brightMagenta: "#D070A0" + brightCyan: "#A0B0D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 270 + pair: null + contrast: + fg: 82.4 + black: 0 + red: 36.1 + green: 35.1 + yellow: 44.9 + blue: 34.4 + magenta: 30.1 + cyan: 44.4 + white: 82.4 + brightBlack: 20 + brightRed: 43.2 + brightGreen: 49.6 + brightYellow: 55.8 + brightBlue: 48.1 + brightMagenta: 40.2 + brightCyan: 56.9 + brightWhite: 105.5 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-cantarella-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-cantarella-dark.yaml new file mode 100644 index 00000000..82c92a5a --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-cantarella-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Cantarella (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#282840" + fg: "#C1C7DB" + black: "#282840" + red: "#D08090" + green: "#7ABAA0" + yellow: "#C8B070" + blue: "#7175C2" + magenta: "#9A8AC0" + cyan: "#70A0C0" + white: "#C1C7DB" + brightBlack: "#6A6A8A" + brightRed: "#E090A0" + brightGreen: "#8ACAB0" + brightYellow: "#D8C080" + brightBlue: "#8185D2" + brightMagenta: "#AA9AD0" + brightCyan: "#80B0D0" + brightWhite: "#F8F9FC" +meta: + mode: "dark" + accent: "purple" + hue: 283 + pair: null + contrast: + fg: 69 + black: 0 + red: 42.4 + green: 54.1 + yellow: 56.8 + blue: 29 + magenta: 39.9 + cyan: 44 + white: 69 + brightBlack: 22.1 + brightRed: 50.6 + brightGreen: 63 + brightYellow: 65.8 + brightBlue: 36.6 + brightMagenta: 48.1 + brightCyan: 52.4 + brightWhite: 100 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-carlotta-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-carlotta-dark.yaml new file mode 100644 index 00000000..f8ae4b9f --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-carlotta-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Carlotta (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#281820" + fg: "#FFE0E8" + black: "#281820" + red: "#FF5080" + green: "#509070" + yellow: "#D0A040" + blue: "#407090" + magenta: "#B05080" + cyan: "#409090" + white: "#FFE0E8" + brightBlack: "#704050" + brightRed: "#FF7090" + brightGreen: "#70B090" + brightYellow: "#E0B060" + brightBlue: "#6090B0" + brightMagenta: "#D070A0" + brightCyan: "#60B0B0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 348 + pair: null + contrast: + fg: 91 + black: 0 + red: 42.9 + green: 34.8 + yellow: 53.4 + blue: 23.6 + magenta: 26.7 + cyan: 35.2 + white: 91 + brightBlack: 12.1 + brightRed: 49.5 + brightGreen: 50.7 + brightYellow: 62.3 + brightBlue: 38.2 + brightMagenta: 40.8 + brightCyan: 51 + brightWhite: 106.2 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-cartethyia-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-cartethyia-dark.yaml new file mode 100644 index 00000000..9c357aab --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-cartethyia-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Cartethyia (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#0F1820" + fg: "#D8E8F4" + black: "#1C2838" + red: "#E88888" + green: "#70B890" + yellow: "#F0C078" + blue: "#6BA8D8" + magenta: "#B888D0" + cyan: "#88C8F0" + white: "#D8E8F4" + brightBlack: "#4878A0" + brightRed: "#F89898" + brightGreen: "#80C8A0" + brightYellow: "#FFD090" + brightBlue: "#88C8F0" + brightMagenta: "#C898E0" + brightCyan: "#A0E0FF" + brightWhite: "#F0F8FC" +meta: + mode: "dark" + accent: "orange" + hue: 246 + pair: null + contrast: + fg: 90.4 + black: 0 + red: 51.6 + green: 54.9 + yellow: 72.2 + blue: 51 + magenta: 46.8 + cyan: 67.8 + white: 90.4 + brightBlack: 28.1 + brightRed: 60 + brightGreen: 63.6 + brightYellow: 81.7 + brightBlue: 67.8 + brightMagenta: 55.2 + brightCyan: 81.4 + brightWhite: 101.3 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-changli-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-changli-dark.yaml new file mode 100644 index 00000000..be9cf044 --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-changli-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Changli (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#1A1514" + fg: "#F5E8E3" + black: "#1A1514" + red: "#F5A3A3" + green: "#90B080" + yellow: "#E8A050" + blue: "#8098B0" + magenta: "#D89AA0" + cyan: "#80A8A0" + white: "#F5E8E3" + brightBlack: "#6A5552" + brightRed: "#FFB5B5" + brightGreen: "#A0C090" + brightYellow: "#F8B860" + brightBlue: "#90A8C0" + brightMagenta: "#E8AAB0" + brightCyan: "#90B8B0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 93.6 + black: 0 + red: 63.6 + green: 53.6 + yellow: 58.3 + blue: 44.4 + magenta: 55.5 + cyan: 50 + white: 93.6 + brightBlack: 17.1 + brightRed: 72.4 + brightGreen: 62.4 + brightYellow: 70.1 + brightBlue: 52.7 + brightMagenta: 64.3 + brightCyan: 58.6 + brightWhite: 107 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-chisa-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-chisa-dark.yaml new file mode 100644 index 00000000..86bae919 --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-chisa-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Chisa (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#1A1816" + fg: "#F5F0EB" + black: "#1A1816" + red: "#C83540" + green: "#80B080" + yellow: "#F8D7BD" + blue: "#8898A8" + magenta: "#B87888" + cyan: "#6E6C78" + white: "#F5F0EB" + brightBlack: "#645C58" + brightRed: "#E84550" + brightGreen: "#90C090" + brightYellow: "#FFE8D0" + brightBlue: "#98A8B8" + brightMagenta: "#D89098" + brightCyan: "#8E8C98" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 97.4 + black: 0 + red: 26.1 + green: 52 + yellow: 84.8 + blue: 44.5 + magenta: 38.6 + cyan: 25.1 + white: 97.4 + brightBlack: 18.4 + brightRed: 35.4 + brightGreen: 60.7 + brightYellow: 94.1 + brightBlue: 52.9 + brightMagenta: 51.7 + brightCyan: 40.1 + brightWhite: 106.7 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-galbrena-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-galbrena-dark.yaml new file mode 100644 index 00000000..b1ed83ff --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-galbrena-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Galbrena (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#16181A" + fg: "#EBF0F5" + black: "#16181A" + red: "#B87888" + green: "#80B8A0" + yellow: "#B8A8D8" + blue: "#3486D8" + magenta: "#9F76B8" + cyan: "#535A77" + white: "#EBF0F5" + brightBlack: "#565E64" + brightRed: "#C88898" + brightGreen: "#90C8B0" + brightYellow: "#C8B8E8" + brightBlue: "#5098E8" + brightMagenta: "#B090C8" + brightCyan: "#636A87" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "indigo" + hue: null + pair: null + contrast: + fg: 96.5 + black: 0 + red: 38.7 + green: 56.5 + yellow: 58.2 + blue: 35.6 + magenta: 36.6 + cyan: 17.5 + white: 96.5 + brightBlack: 18.1 + brightRed: 46.6 + brightGreen: 65.4 + brightYellow: 67.2 + brightBlue: 44.3 + brightMagenta: 47.8 + brightCyan: 24.1 + brightWhite: 106.8 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-iuno-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-iuno-dark.yaml new file mode 100644 index 00000000..5de7e710 --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-iuno-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Iuno (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#181820" + fg: "#E8E0D8" + black: "#181820" + red: "#C05050" + green: "#709060" + yellow: "#D4A830" + blue: "#6890B8" + magenta: "#907090" + cyan: "#609090" + white: "#E8E0D8" + brightBlack: "#4A5878" + brightRed: "#D06060" + brightGreen: "#80A070" + brightYellow: "#E4B840" + brightBlue: "#78A0C8" + brightMagenta: "#A080A0" + brightCyan: "#70A0A0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 285 + pair: null + contrast: + fg: 87.4 + black: 0 + red: 28.8 + green: 37 + yellow: 57.3 + blue: 39.6 + magenta: 30.9 + cyan: 37.3 + white: 87.4 + brightBlack: 16.2 + brightRed: 35.5 + brightGreen: 45 + brightYellow: 66.1 + brightBlue: 47.7 + brightMagenta: 38.5 + brightCyan: 45.2 + brightWhite: 106.7 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-lynae-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-lynae-dark.yaml new file mode 100644 index 00000000..df0f2793 --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-lynae-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Lynae (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#252830" + fg: "#E0DCD8" + black: "#252830" + red: "#D87A8A" + green: "#6AAA8A" + yellow: "#D4BCB5" + blue: "#5A8A9A" + magenta: "#B887A5" + cyan: "#79B2B9" + white: "#E0DCD8" + brightBlack: "#6A7280" + brightRed: "#E88A9A" + brightGreen: "#7ABAA0" + brightYellow: "#E4CCC5" + brightBlue: "#6A9AAA" + brightMagenta: "#C898B0" + brightCyan: "#89C2C9" + brightWhite: "#FDFBFA" +meta: + mode: "dark" + accent: "red" + hue: 269 + pair: null + contrast: + fg: 82.3 + black: 0 + red: 42.3 + green: 45.9 + yellow: 65.7 + blue: 32.8 + magenta: 42 + cyan: 52 + white: 82.3 + brightBlack: 24.6 + brightRed: 50.4 + brightGreen: 54.5 + brightYellow: 75.2 + brightBlue: 40.6 + brightMagenta: 50.4 + brightCyan: 60.8 + brightWhite: 102 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-mornye-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-mornye-dark.yaml new file mode 100644 index 00000000..06a7ed20 --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-mornye-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Mornye (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#1A1520" + fg: "#F4F3F6" + black: "#1A1520" + red: "#E18DA9" + green: "#88A890" + yellow: "#FAB3CA" + blue: "#DDCEFC" + magenta: "#A88EBB" + cyan: "#C8A8D8" + white: "#F4F3F6" + brightBlack: "#635860" + brightRed: "#F0A0C0" + brightGreen: "#98B8A0" + brightYellow: "#FFC8DC" + brightBlue: "#EEDEFC" + brightMagenta: "#C8AECB" + brightCyan: "#D8B8E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 305 + pair: null + contrast: + fg: 99.2 + black: 0 + red: 53 + green: 50 + yellow: 71.5 + blue: 80.1 + magenta: 45.5 + cyan: 60.4 + white: 99.2 + brightBlack: 17.5 + brightRed: 62.7 + brightGreen: 58.6 + brightYellow: 81.2 + brightBlue: 89.3 + brightMagenta: 62 + brightCyan: 69.5 + brightWhite: 106.9 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-roccia-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-roccia-dark.yaml new file mode 100644 index 00000000..40507c82 --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-roccia-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Roccia (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#181418" + fg: "#F0ECF5" + black: "#181418" + red: "#D86880" + green: "#90B8B0" + yellow: "#FDB3DD" + blue: "#5F6AC3" + magenta: "#C2588A" + cyan: "#A898B8" + white: "#F0ECF5" + brightBlack: "#5E5A64" + brightRed: "#E87890" + brightGreen: "#A0C8C0" + brightYellow: "#FDC3ED" + brightBlue: "#6F7AD3" + brightMagenta: "#D2689A" + brightCyan: "#B8A8C8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 326 + pair: null + contrast: + fg: 95.6 + black: 0 + red: 40.1 + green: 58.7 + yellow: 73.1 + blue: 27.4 + magenta: 32.8 + cyan: 49 + white: 95.6 + brightBlack: 17.9 + brightRed: 47.6 + brightGreen: 67.7 + brightYellow: 79.9 + brightBlue: 34.6 + brightMagenta: 39.9 + brightCyan: 57.6 + brightWhite: 107 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-sanhua-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-sanhua-dark.yaml new file mode 100644 index 00000000..1a4c5a88 --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-sanhua-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Sanhua (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#16181A" + fg: "#EDF0F2" + black: "#16181A" + red: "#DE7470" + green: "#98B8B0" + yellow: "#D8C8C0" + blue: "#A0A6AD" + magenta: "#C8A8C8" + cyan: "#A8B8C0" + white: "#EDF0F2" + brightBlack: "#565A5C" + brightRed: "#EE8480" + brightGreen: "#A8C8C0" + brightYellow: "#E8D8D0" + brightBlue: "#C0C6CD" + brightMagenta: "#D8B8D8" + brightCyan: "#B8C8D0" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 96.6 + black: 0 + red: 43.5 + green: 59.2 + yellow: 74 + blue: 52.6 + magenta: 59.5 + cyan: 61.5 + white: 96.6 + brightBlack: 16.7 + brightRed: 51.3 + brightGreen: 68.2 + brightYellow: 83.7 + brightBlue: 70.6 + brightMagenta: 68.6 + brightCyan: 70.7 + brightWhite: 106.8 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-scar-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-scar-dark.yaml new file mode 100644 index 00000000..26192e9d --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-scar-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Scar (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#161618" + fg: "#D4D4D4" + black: "#121215" + red: "#FF3355" + green: "#2E8B57" + yellow: "#E6C200" + blue: "#4A6A8A" + magenta: "#B01830" + cyan: "#5BA4C8" + white: "#E0E0E0" + brightBlack: "#505058" + brightRed: "#FF6680" + brightGreen: "#50C878" + brightYellow: "#FFD700" + brightBlue: "#6A8AA8" + brightMagenta: "#D03050" + brightCyan: "#7BC8E8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 79.6 + black: 0 + red: 39.1 + green: 31.7 + yellow: 70.5 + blue: 22.7 + magenta: 18.8 + cyan: 47.7 + white: 87 + brightBlack: 13.5 + brightRed: 47.6 + brightGreen: 59.9 + brightYellow: 83.3 + brightBlue: 37.1 + brightMagenta: 27.8 + brightCyan: 66.5 + brightWhite: 107 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-the-shorekeeper-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-the-shorekeeper-dark.yaml new file mode 100644 index 00000000..ef9c2b2f --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-the-shorekeeper-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : The Shorekeeper (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#0D1B28" + fg: "#D4EBFA" + black: "#1A2F3F" + red: "#E88899" + green: "#60B088" + yellow: "#F0C070" + blue: "#6BB6D6" + magenta: "#A78BFA" + cyan: "#89CFF0" + white: "#D4EBFA" + brightBlack: "#4A7A9F" + brightRed: "#F8A0AA" + brightGreen: "#70C098" + brightYellow: "#FFD085" + brightBlue: "#89CFF0" + brightMagenta: "#C4B5FD" + brightCyan: "#A0E0FF" + brightWhite: "#F0F8FC" +meta: + mode: "dark" + accent: "magenta" + hue: 248 + pair: null + contrast: + fg: 91.3 + black: 0 + red: 51.9 + green: 49.9 + yellow: 71.7 + blue: 56.3 + magenta: 47.9 + cyan: 70.7 + white: 91.3 + brightBlack: 28.5 + brightRed: 62.9 + brightGreen: 58.3 + brightYellow: 81.2 + brightBlue: 70.7 + brightMagenta: 66.5 + brightCyan: 81.1 + brightWhite: 101 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-verina-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-verina-dark.yaml new file mode 100644 index 00000000..44aecd45 --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-verina-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Verina (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#1A1C18" + fg: "#F0F5EB" + black: "#1A1C18" + red: "#C87870" + green: "#8AC880" + yellow: "#E3F275" + blue: "#7CA8B0" + magenta: "#B89898" + cyan: "#6C8C81" + white: "#F0F5EB" + brightBlack: "#5A6258" + brightRed: "#D89080" + brightGreen: "#9AD890" + brightYellow: "#F0FF90" + brightBlue: "#8CB8C0" + brightMagenta: "#C8A8A8" + brightCyan: "#7C9C91" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "green" + hue: null + pair: null + contrast: + fg: 98.7 + black: 0 + red: 40.2 + green: 63 + yellow: 91.9 + blue: 49.7 + magenta: 49.1 + cyan: 35.8 + white: 98.7 + brightBlack: 18.9 + brightRed: 50.6 + brightGreen: 72.1 + brightYellow: 100.5 + brightBlue: 58.3 + brightMagenta: 57.8 + brightCyan: 43.7 + brightWhite: 106.4 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-yinlin-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-yinlin-dark.yaml new file mode 100644 index 00000000..0b380f16 --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-yinlin-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Yinlin (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#18141A" + fg: "#F0EBF0" + black: "#18141A" + red: "#EE5257" + green: "#90B8A0" + yellow: "#C5ADC7" + blue: "#8B64AB" + magenta: "#C890A8" + cyan: "#A88898" + white: "#F0EBF0" + brightBlack: "#5E5A60" + brightRed: "#F87277" + brightGreen: "#A0C8B0" + brightYellow: "#D5BDD7" + brightBlue: "#9B74BB" + brightMagenta: "#D8A0B8" + brightCyan: "#B898A8" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 315 + pair: null + contrast: + fg: 94.9 + black: 0 + red: 39.2 + green: 58 + yellow: 61.2 + blue: 28.6 + magenta: 50 + cyan: 42.1 + white: 94.9 + brightBlack: 17.8 + brightRed: 48.6 + brightGreen: 67 + brightYellow: 70.3 + brightBlue: 35.9 + brightMagenta: 58.6 + brightCyan: 50.4 + brightWhite: 107 diff --git a/themes/wuthering-waves-color-themes-wuthering-waves-zhezhi-dark.yaml b/themes/wuthering-waves-color-themes-wuthering-waves-zhezhi-dark.yaml new file mode 100644 index 00000000..2ff81414 --- /dev/null +++ b/themes/wuthering-waves-color-themes-wuthering-waves-zhezhi-dark.yaml @@ -0,0 +1,53 @@ +name: "wuthering waves color themes (Wuthering Waves : Zhezhi (Dark))" +source: + marketplace_id: "frostmoon-dev.wuwa-themes" + version: "1.0.7" + installs: 128 + rating: 0 + ratings: 0 + author: "⏾ frostmoon" + repo: "https://github.com/frostmoon-dev/wuwa-themes" + url: "https://marketplace.visualstudio.com/items?itemName=frostmoon-dev.wuwa-themes" + formats: null +colors: + bg: "#181616" + fg: "#F0F5F5" + black: "#181616" + red: "#D88090" + green: "#90B8B0" + yellow: "#E6A4C7" + blue: "#97CADD" + magenta: "#C8A0B8" + cyan: "#7BABB4" + white: "#F0F5F5" + brightBlack: "#5E5656" + brightRed: "#E890A0" + brightGreen: "#A0C8C0" + brightYellow: "#F8B8D8" + brightBlue: "#A8D8EC" + brightMagenta: "#D8B0C8" + brightCyan: "#8BBBC4" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 99.7 + black: 0 + red: 46.7 + green: 58.6 + yellow: 62.8 + blue: 69 + magenta: 56 + cyan: 51.6 + white: 99.7 + brightBlack: 16.2 + brightRed: 54.9 + brightGreen: 67.6 + brightYellow: 73.7 + brightBlue: 77.5 + brightMagenta: 64.9 + brightCyan: 60.3 + brightWhite: 106.9 diff --git a/themes/xanpis--xis-one.yaml b/themes/xanpis--xis-one.yaml new file mode 100644 index 00000000..000af5a5 --- /dev/null +++ b/themes/xanpis--xis-one.yaml @@ -0,0 +1,53 @@ +name: "XANPIS (xis_one)" +source: + marketplace_id: "Xanpis.xis" + version: "0.0.0" + installs: 829 + rating: 0 + ratings: 0 + author: "Xanpis" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=Xanpis.xis" + formats: null +colors: + bg: "#1E2222" + fg: "#ABB2BF" + black: "#3F4451" + red: "#E05561" + green: "#8CC265" + yellow: "#D18F52" + blue: "#4AA5F0" + magenta: "#C162DE" + cyan: "#42B3C2" + white: "#D7DAE0" + brightBlack: "#4F5666" + brightRed: "#FF616E" + brightGreen: "#A5E075" + brightYellow: "#F0A45D" + brightBlue: "#4DC4FF" + brightMagenta: "#DE73FF" + brightCyan: "#4CD1E0" + brightWhite: "#E6E6E6" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 58.1 + black: 7.6 + red: 35.4 + green: 59.1 + yellow: 47.3 + blue: 48.4 + magenta: 37.8 + cyan: 51.2 + white: 81.7 + brightBlack: 14.2 + brightRed: 44.8 + brightGreen: 75.5 + brightYellow: 59.9 + brightBlue: 62.4 + brightMagenta: 49 + brightCyan: 66.5 + brightWhite: 89.4 diff --git a/themes/xavatheme.yaml b/themes/xavatheme.yaml new file mode 100644 index 00000000..0336a4da --- /dev/null +++ b/themes/xavatheme.yaml @@ -0,0 +1,53 @@ +name: "xavaTheme" +source: + marketplace_id: "atagulalan.xava-color-theme" + version: "0.0.2" + installs: 94 + rating: 0 + ratings: 0 + author: "Ata" + repo: "https://github.com/atagulalan/xava-color-theme" + url: "https://marketplace.visualstudio.com/items?itemName=atagulalan.xava-color-theme" + formats: null +colors: + bg: "#050505" + fg: "#FAFAFA" + black: "#050505" + red: "#E62E31" + green: "#CCFF2D" + yellow: "#FFE900" + blue: "#003FFF" + magenta: "#FC467A" + cyan: "#00FFEE" + white: "#E0E0E0" + brightBlack: "#2D3136" + brightRed: "#FF3C6D" + brightGreen: "#CCFF2D" + brightYellow: "#FFD140" + brightBlue: "#0191FF" + brightMagenta: "#914DFF" + brightCyan: "#79FFFC" + brightWhite: "#C2C2C2" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 104.5 + black: 0 + red: 33.1 + green: 96.2 + yellow: 92.2 + blue: 20.7 + magenta: 42.3 + cyan: 91.3 + white: 87.9 + brightBlack: 0 + brightRed: 41.4 + brightGreen: 96.2 + brightYellow: 81.9 + brightBlue: 42.9 + brightMagenta: 31.5 + brightCyan: 94.7 + brightWhite: 69.8 diff --git a/themes/xduppyx-themes--my-dark-theme.yaml b/themes/xduppyx-themes--my-dark-theme.yaml new file mode 100644 index 00000000..0dc34eb9 --- /dev/null +++ b/themes/xduppyx-themes--my-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "XDuppYX Themes (my dark theme)" +source: + marketplace_id: "XDxppyx.xxduppyxx-modern-blue-dark" + version: "4.3.1" + installs: 36 + rating: 5 + ratings: 1 + author: "XDxppyx" + repo: "https://github.com/xXKARCXx/xxduppyxx-modern-blue-dark" + url: "https://marketplace.visualstudio.com/items?itemName=XDxppyx.xxduppyxx-modern-blue-dark" + formats: null +colors: + bg: "#202D3A" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#EC7D7D" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 249 + pair: null + contrast: + fg: 76.3 + black: 0 + red: 23.5 + green: 49.8 + yellow: 82.4 + blue: 24.2 + magenta: 26.5 + cyan: 44.3 + white: 45.8 + brightBlack: 18.8 + brightRed: 35.4 + brightGreen: 60.3 + brightYellow: 92.4 + brightBlue: 36.8 + brightMagenta: 42.2 + brightCyan: 52.2 + brightWhite: 86.8 diff --git a/themes/xenoviatheme.yaml b/themes/xenoviatheme.yaml new file mode 100644 index 00000000..c9d5afd1 --- /dev/null +++ b/themes/xenoviatheme.yaml @@ -0,0 +1,53 @@ +name: "XenoviaTheme" +source: + marketplace_id: "FNLY.XenoviaTheme" + version: "0.0.1" + installs: 6 + rating: 0 + ratings: 0 + author: "FNLY" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=FNLY.XenoviaTheme" + formats: null +colors: + bg: "#11111B" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 284 + pair: null + contrast: + fg: 107.3 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.9 + magenta: 30.2 + cyan: 48 + white: 90.4 + brightBlack: 22.5 + brightRed: 39 + brightGreen: 64 + brightYellow: 96.1 + brightBlue: 40.4 + brightMagenta: 45.8 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/xeon-light.yaml b/themes/xeon-light.yaml new file mode 100644 index 00000000..c00ff3bb --- /dev/null +++ b/themes/xeon-light.yaml @@ -0,0 +1,53 @@ +name: "Xeon Light" +source: + marketplace_id: "zhiqiangx.xeon-light" + version: "0.0.2" + installs: 2788 + rating: 5 + ratings: 1 + author: "zhiqiangx" + repo: "https://github.com/zhiqiangx/tinylight-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=zhiqiangx.xeon-light" + formats: null +colors: + bg: "#FFFBE8" + fg: "#499504" + black: "#000000" + red: "#FD6C67" + green: "#097E00" + yellow: "#CDCB00" + blue: "#5597EF" + magenta: "#FE76FF" + cyan: "#39CBCC" + white: "#BBBBBB" + brightBlack: "#686868" + brightRed: "#FE8885" + brightGreen: "#74FA61" + brightYellow: "#FFFB00" + brightBlue: "#7FAFF4" + brightMagenta: "#FE9CFF" + brightCyan: "#6FDADA" + brightWhite: "#F1F1F1" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 62.1 + black: 103.4 + red: 50.4 + green: 72.7 + yellow: 28.4 + blue: 53.4 + magenta: 41.5 + cyan: 35.3 + white: 34.1 + brightBlack: 75.2 + brightRed: 42.6 + brightGreen: 14 + brightYellow: 0 + brightBlue: 41.5 + brightMagenta: 31.6 + brightCyan: 25.9 + brightWhite: 0 diff --git a/themes/xotopio-dark.yaml b/themes/xotopio-dark.yaml new file mode 100644 index 00000000..8762fb2c --- /dev/null +++ b/themes/xotopio-dark.yaml @@ -0,0 +1,53 @@ +name: "xotopio-dark" +source: + marketplace_id: "xotopio.xotopio-dark" + version: "0.24.0" + installs: 4584 + rating: 5 + ratings: 2 + author: "xotopio" + repo: "https://github.com/xotopio/xotopio.dark" + url: "https://marketplace.visualstudio.com/items?itemName=xotopio.xotopio-dark" + formats: null +colors: + bg: "#040616" + fg: "#FFFFFF" + black: "#3A3A3A" + red: "#F90086" + green: "#44B6FC" + yellow: "#FFF900" + blue: "#54D4FF" + magenta: "#F90086" + cyan: "#54D4FF" + white: "#FFFFFF" + brightBlack: "#3A3A3A" + brightRed: "#F90086" + brightGreen: "#44B6FC" + brightYellow: "#FFF900" + brightBlue: "#54D4FF" + brightMagenta: "#F90086" + brightCyan: "#54D4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 273 + pair: null + contrast: + fg: 107.8 + black: 0 + red: 37.9 + green: 58.1 + yellow: 99.7 + blue: 72.1 + magenta: 37.9 + cyan: 72.1 + white: 107.8 + brightBlack: 0 + brightRed: 37.9 + brightGreen: 58.1 + brightYellow: 99.7 + brightBlue: 72.1 + brightMagenta: 37.9 + brightCyan: 72.1 + brightWhite: 107.8 diff --git a/themes/xresources-theme-plus.yaml b/themes/xresources-theme-plus.yaml new file mode 100644 index 00000000..c0d0a950 --- /dev/null +++ b/themes/xresources-theme-plus.yaml @@ -0,0 +1,53 @@ +name: "Xresources Theme plus" +source: + marketplace_id: "NekkiNeks.xresources-theme-plus" + version: "2.0.1" + installs: 22 + rating: 0 + ratings: 0 + author: "NekkiNeks" + repo: "https://github.com/NekkiNeks/xresources-theme-plus" + url: "https://marketplace.visualstudio.com/items?itemName=NekkiNeks.xresources-theme-plus" + formats: null +colors: + bg: "#000000" + fg: "#EAEAEA" + black: "#000000" + red: "#B30303" + green: "#8AB800" + yellow: "#DC4904" + blue: "#2527CE" + magenta: "#B20B6D" + cyan: "#277890" + white: "#AFAFAF" + brightBlack: "#4D4D4D" + brightRed: "#FF0100" + brightGreen: "#BAF602" + brightYellow: "#FD6C13" + brightBlue: "#2E31FC" + brightMagenta: "#F01294" + brightCyan: "#3BB1D4" + brightWhite: "#D6D6D6" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 94.2 + black: 0 + red: 19.7 + green: 56 + yellow: 33.9 + blue: 12.4 + magenta: 21.1 + cyan: 27.2 + white: 59 + brightBlack: 13.1 + brightRed: 37.5 + brightGreen: 89.7 + brightYellow: 47.9 + brightBlue: 19 + brightMagenta: 36.5 + brightCyan: 53.4 + brightWhite: 81.7 diff --git a/themes/xxhtml-theme--orange.yaml b/themes/xxhtml-theme--orange.yaml new file mode 100644 index 00000000..3f9d6d57 --- /dev/null +++ b/themes/xxhtml-theme--orange.yaml @@ -0,0 +1,53 @@ +name: "xxhtml-theme (Orange)" +source: + marketplace_id: "xxhtml.xxhtml-theme" + version: "0.0.3" + installs: 2 + rating: 0 + ratings: 0 + author: "Isaac" + repo: "https://github.com/XxHTMLStudios/xxhtml-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xxhtml.xxhtml-theme" + formats: null +colors: + bg: "#1E1E1E" + fg: "#C7C7C7" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 70.9 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/xxhtml-themes--orange.yaml b/themes/xxhtml-themes--orange.yaml new file mode 100644 index 00000000..25ee0f36 --- /dev/null +++ b/themes/xxhtml-themes--orange.yaml @@ -0,0 +1,53 @@ +name: "XxHTML Themes (Orange)" +source: + marketplace_id: "xxhtml.xxhtml-themes" + version: "0.0.15" + installs: 1165 + rating: 0 + ratings: 0 + author: "Isaac" + repo: "https://github.com/XxHTMLStudios/xxhtml-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xxhtml.xxhtml-themes" + formats: null +colors: + bg: "#1E1E1E" + fg: "#F0F0F0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 96.2 + black: 0 + red: 25.9 + green: 52.2 + yellow: 84.8 + blue: 26.6 + magenta: 28.9 + cyan: 46.7 + white: 89.2 + brightBlack: 21.2 + brightRed: 37.7 + brightGreen: 62.7 + brightYellow: 94.8 + brightBlue: 39.2 + brightMagenta: 44.5 + brightCyan: 54.6 + brightWhite: 89.2 diff --git a/themes/xxhtml-themes--xxhtml.yaml b/themes/xxhtml-themes--xxhtml.yaml new file mode 100644 index 00000000..bd2d5a7c --- /dev/null +++ b/themes/xxhtml-themes--xxhtml.yaml @@ -0,0 +1,53 @@ +name: "XxHTML Themes (XxHTML)" +source: + marketplace_id: "xxhtml.xxhtml-themes" + version: "0.0.15" + installs: 1165 + rating: 0 + ratings: 0 + author: "Isaac" + repo: "https://github.com/XxHTMLStudios/xxhtml-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xxhtml.xxhtml-themes" + formats: null +colors: + bg: "#282828" + fg: "#C0C0C0" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 65.2 + black: 0 + red: 24.3 + green: 50.6 + yellow: 83.2 + blue: 25 + magenta: 27.3 + cyan: 45.1 + white: 87.6 + brightBlack: 19.6 + brightRed: 36.1 + brightGreen: 61.1 + brightYellow: 93.2 + brightBlue: 37.6 + brightMagenta: 42.9 + brightCyan: 53 + brightWhite: 87.6 diff --git a/themes/yami.yaml b/themes/yami.yaml new file mode 100644 index 00000000..4e740884 --- /dev/null +++ b/themes/yami.yaml @@ -0,0 +1,53 @@ +name: "Yami" +source: + marketplace_id: "HatimMurtuza.yami-theme" + version: "1.2.0" + installs: 2369 + rating: 5 + ratings: 2 + author: "Hatim Murtuza" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=HatimMurtuza.yami-theme" + formats: null +colors: + bg: "#020413" + fg: "#D4D4D4" + black: "#2C2C3E" + red: "#FF2C6F" + green: "#77FF5C" + yellow: "#EAD653" + blue: "#4A94FC" + magenta: "#CC66FF" + cyan: "#00CED1" + white: "#DDDDDD" + brightBlack: "#3D3D56" + brightRed: "#FF2C6F" + brightGreen: "#77FF5C" + brightYellow: "#EAD653" + brightBlue: "#4A94FC" + brightMagenta: "#CC66FF" + brightCyan: "#00CED1" + brightWhite: "#DDDDDD" +meta: + mode: "dark" + accent: "red" + hue: 269 + pair: null + contrast: + fg: 80.4 + black: 0 + red: 40 + green: 89.6 + yellow: 80.9 + blue: 45 + magenta: 45.1 + cyan: 65.5 + white: 86 + brightBlack: 8.2 + brightRed: 40 + brightGreen: 89.6 + brightYellow: 80.9 + brightBlue: 45 + brightMagenta: 45.1 + brightCyan: 65.5 + brightWhite: 86 diff --git a/themes/yaru-vs-code-theme--yaru-dark.yaml b/themes/yaru-vs-code-theme--yaru-dark.yaml new file mode 100644 index 00000000..8fb6ff2f --- /dev/null +++ b/themes/yaru-vs-code-theme--yaru-dark.yaml @@ -0,0 +1,53 @@ +name: "Yaru VS Code Theme (Yaru Dark)" +source: + marketplace_id: "AdsonCicilioti.yaru-vscode" + version: "0.1.3" + installs: 20228 + rating: 5 + ratings: 7 + author: "AdsonCicilioti" + repo: "https://github.com/AdsonCicilioti/yaru-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=AdsonCicilioti.yaru-vscode" + formats: null +colors: + bg: "#222222" + fg: "#FDFDFD" + black: "#222222" + red: "#FF794A" + green: "#52D866" + yellow: "#FFDC98" + blue: "#EE80D6" + magenta: "#FF9D88" + cyan: "#60D4FD" + white: "#FDFDFD" + brightBlack: "#928986" + brightRed: "#FF6D4C" + brightGreen: "#69FF94" + brightYellow: "#FFF5BC" + brightBlue: "#FFA2EB" + brightMagenta: "#FFAEA0" + brightCyan: "#98E4FF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "teal" + hue: null + pair: null + contrast: + fg: 104.1 + black: 0 + red: 49.4 + green: 65.8 + yellow: 85.7 + blue: 52.4 + magenta: 61.1 + cyan: 70.2 + white: 104.1 + brightBlack: 37.6 + brightRed: 46.6 + brightGreen: 87.6 + brightYellow: 98 + brightBlue: 66.8 + brightMagenta: 67.6 + brightCyan: 81.2 + brightWhite: 105.5 diff --git a/themes/yd-light-theme.yaml b/themes/yd-light-theme.yaml new file mode 100644 index 00000000..10f511a1 --- /dev/null +++ b/themes/yd-light-theme.yaml @@ -0,0 +1,53 @@ +name: "YD LIGHT Theme" +source: + marketplace_id: "ydrgzm.yd-light-theme" + version: "0.0.4" + installs: 368 + rating: 5 + ratings: 1 + author: "ydrgzm" + repo: "https://github.com/ydrgzm/Ydrgzm-LIGHT-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=ydrgzm.yd-light-theme" + formats: null +colors: + bg: "#FAFAFA" + fg: "#000000" + black: "#868686" + red: "#FF5470" + green: "#33D057" + yellow: "#E1C542" + blue: "#469DF1" + magenta: "#E557F9" + cyan: "#39CDE2" + white: "#D4D4D4" + brightBlack: "#ABABAB" + brightRed: "#FF718A" + brightGreen: "#67FF8A" + brightYellow: "#FFE05B" + brightBlue: "#74BCFF" + brightMagenta: "#EC84FF" + brightCyan: "#74F2FF" + brightWhite: "#FFFFFF" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 103 + black: 61 + red: 54 + green: 36.1 + yellow: 27.6 + blue: 51.4 + magenta: 52.4 + cyan: 33 + white: 19.8 + brightBlack: 42.3 + brightRed: 47.6 + brightGreen: 11.1 + brightYellow: 12.1 + brightBlue: 36.1 + brightMagenta: 41.1 + brightCyan: 12.7 + brightWhite: 0 diff --git a/themes/yelan-dark-theme.yaml b/themes/yelan-dark-theme.yaml new file mode 100644 index 00000000..6c4c71cf --- /dev/null +++ b/themes/yelan-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Yelan Dark Theme" +source: + marketplace_id: "SaiAkhilKarra.yelan-dark-theme-my-very-first-theme-made-from-curiousity" + version: "0.0.1" + installs: 76 + rating: 0 + ratings: 0 + author: "Sai Akhil Karra" + repo: "https://github.com/SaiAkhil2006/Yelan-Theme" + url: "https://marketplace.visualstudio.com/items?itemName=SaiAkhilKarra.yelan-dark-theme-my-very-first-theme-made-from-curiousity" + formats: null +colors: + bg: "#0A0F1F" + fg: "#E6F1FF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 269 + pair: null + contrast: + fg: 97.5 + black: 0 + red: 27.3 + green: 53.6 + yellow: 86.2 + blue: 28 + magenta: 30.3 + cyan: 48.1 + white: 90.6 + brightBlack: 22.6 + brightRed: 39.1 + brightGreen: 64.1 + brightYellow: 96.2 + brightBlue: 40.6 + brightMagenta: 45.9 + brightCyan: 56 + brightWhite: 90.6 diff --git a/themes/yellow-dark-theme.yaml b/themes/yellow-dark-theme.yaml new file mode 100644 index 00000000..26f3d1bf --- /dev/null +++ b/themes/yellow-dark-theme.yaml @@ -0,0 +1,53 @@ +name: "Yellow dark theme" +source: + marketplace_id: "davisamasoa.davisamasoa-theme" + version: "1.0.4" + installs: 951 + rating: 0 + ratings: 0 + author: "Davi Samuel" + repo: "https://github.com/Davisamasoa/vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=davisamasoa.davisamasoa-theme" + formats: null +colors: + bg: "#2A2530" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 306 + pair: null + contrast: + fg: 104.6 + black: 0 + red: 24.4 + green: 50.7 + yellow: 83.3 + blue: 25.2 + magenta: 27.5 + cyan: 45.3 + white: 87.7 + brightBlack: 19.8 + brightRed: 36.3 + brightGreen: 61.3 + brightYellow: 93.4 + brightBlue: 37.7 + brightMagenta: 43.1 + brightCyan: 53.1 + brightWhite: 87.7 diff --git a/themes/yet-another-solarized-theme-yet-another-solarized-theme-dark.yaml b/themes/yet-another-solarized-theme-yet-another-solarized-theme-dark.yaml new file mode 100644 index 00000000..ead6f345 --- /dev/null +++ b/themes/yet-another-solarized-theme-yet-another-solarized-theme-dark.yaml @@ -0,0 +1,54 @@ +name: "Yet Another Solarized Theme (Yet Another Solarized Theme (Dark))" +source: + marketplace_id: "JulianSchelb.yet-another-solarized-theme" + version: "1.0.5" + installs: 2708 + rating: 5 + ratings: 2 + author: "Julian Schelb" + repo: "https://github.com/julianschelb/vscode-theme-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=JulianSchelb.yet-another-solarized-theme" + formats: + zed: "https://raw.githubusercontent.com/julianschelb/vscode-theme-solarized/main/themes/Solarized-color-theme-dark.json" +colors: + bg: "#2E343F" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 263 + pair: null + contrast: + fg: 74.4 + black: 0 + red: 21.7 + green: 48 + yellow: 80.6 + blue: 22.4 + magenta: 24.7 + cyan: 42.5 + white: 85 + brightBlack: 17 + brightRed: 33.5 + brightGreen: 58.5 + brightYellow: 90.6 + brightBlue: 35 + brightMagenta: 40.3 + brightCyan: 50.4 + brightWhite: 85 diff --git a/themes/yet-another-solarized-theme-yet-another-solarized-theme-light.yaml b/themes/yet-another-solarized-theme-yet-another-solarized-theme-light.yaml new file mode 100644 index 00000000..f0e2a0f8 --- /dev/null +++ b/themes/yet-another-solarized-theme-yet-another-solarized-theme-light.yaml @@ -0,0 +1,54 @@ +name: "Yet Another Solarized Theme (Yet Another Solarized Theme (Light))" +source: + marketplace_id: "JulianSchelb.yet-another-solarized-theme" + version: "1.0.5" + installs: 2708 + rating: 5 + ratings: 2 + author: "Julian Schelb" + repo: "https://github.com/julianschelb/vscode-theme-solarized" + url: "https://marketplace.visualstudio.com/items?itemName=JulianSchelb.yet-another-solarized-theme" + formats: + zed: "https://raw.githubusercontent.com/julianschelb/vscode-theme-solarized/main/themes/Solarized-color-theme-dark.json" +colors: + bg: "#F9F6EF" + fg: "#193F49" + black: "#000000" + red: "#CD3131" + green: "#00BC00" + yellow: "#949800" + blue: "#0451A5" + magenta: "#BC05BC" + cyan: "#0598BC" + white: "#555555" + brightBlack: "#666666" + brightRed: "#CD3131" + brightGreen: "#14CE14" + brightYellow: "#B5BA00" + brightBlue: "#0451A5" + brightMagenta: "#BC05BC" + brightCyan: "#0598BC" + brightWhite: "#A5A5A5" +meta: + mode: "light" + accent: "pink" + hue: null + pair: null + contrast: + fg: 90.8 + black: 100.8 + red: 68.7 + green: 44 + yellow: 52.6 + blue: 80.8 + magenta: 69.3 + cyan: 55.3 + white: 80.7 + brightBlack: 73.5 + brightRed: 68.7 + brightGreen: 35.6 + brightYellow: 35.7 + brightBlue: 80.8 + brightMagenta: 69.3 + brightCyan: 55.3 + brightWhite: 43.2 diff --git a/themes/yonce.yaml b/themes/yonce.yaml new file mode 100644 index 00000000..828cebd5 --- /dev/null +++ b/themes/yonce.yaml @@ -0,0 +1,53 @@ +name: "Yonce" +source: + marketplace_id: "minamarkham.yonce-theme" + version: "0.1.0" + installs: 19012 + rating: 5 + ratings: 5 + author: "minamarkham" + repo: "https://github.com/minamarkham/yonce-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=minamarkham.yonce-theme" + formats: null +colors: + bg: "#1C1C1C" + fg: "#D4D4D4" + black: "#1C1C1C" + red: "#FC4384" + green: "#98E342" + yellow: "#E6DB74" + blue: "#00A7AA" + magenta: "#FFB1F2" + cyan: "#37E5E7" + white: "#D4D4D4" + brightBlack: "#555555" + brightRed: "#FC4384" + brightGreen: "#98E342" + brightYellow: "#E6DB74" + brightBlue: "#00A7AA" + brightMagenta: "#FFB1F2" + brightCyan: "#37E5E7" + brightWhite: "#F1F1EF" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 78.9 + black: 0 + red: 40.6 + green: 75.8 + yellow: 81.5 + blue: 44.8 + magenta: 73.1 + cyan: 76.6 + white: 78.9 + brightBlack: 14.5 + brightRed: 40.6 + brightGreen: 75.8 + brightYellow: 81.5 + brightBlue: 44.8 + brightMagenta: 73.1 + brightCyan: 76.6 + brightWhite: 97 diff --git a/themes/yorha-theme.yaml b/themes/yorha-theme.yaml new file mode 100644 index 00000000..f14325a3 --- /dev/null +++ b/themes/yorha-theme.yaml @@ -0,0 +1,53 @@ +name: "YoRHa Theme" +source: + marketplace_id: "ayms-data.theme-themer-vscode" + version: "2.4.0" + installs: 1490 + rating: 0 + ratings: 0 + author: "Ayman Sahyoun" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=ayms-data.theme-themer-vscode" + formats: null +colors: + bg: "#BCB791" + fg: "#4A5246" + black: "#BCB791" + red: "#B56151" + green: "#FFEDBC" + yellow: "#BA6714" + blue: "#287BD7" + magenta: "#585897" + cyan: "#805E53" + white: "#5A6051" + brightBlack: "#ACA986" + brightRed: "#798E48" + brightGreen: "#805E53" + brightYellow: "#BA6714" + brightBlue: "#287BD7" + brightMagenta: "#585897" + brightCyan: "#805E53" + brightWhite: "#4A5246" +meta: + mode: "light" + accent: "indigo" + hue: 101 + pair: null + contrast: + fg: 46.4 + black: 0 + red: 28.3 + green: 33 + yellow: 26.6 + blue: 27.4 + magenta: 40.2 + cyan: 37.1 + white: 40.6 + brightBlack: 0 + brightRed: 22.2 + brightGreen: 37.1 + brightYellow: 26.6 + brightBlue: 27.4 + brightMagenta: 40.2 + brightCyan: 37.1 + brightWhite: 46.4 diff --git a/themes/ytheme.yaml b/themes/ytheme.yaml new file mode 100644 index 00000000..25138233 --- /dev/null +++ b/themes/ytheme.yaml @@ -0,0 +1,53 @@ +name: "YTheme" +source: + marketplace_id: "czfadmin.ytheme" + version: "1.3.21" + installs: 1129 + rating: 0 + ratings: 0 + author: "czfadmin" + repo: "https://github.com/czfadmin/Atom-One-Dark-Pro" + url: "https://marketplace.visualstudio.com/items?itemName=czfadmin.ytheme" + formats: null +colors: + bg: "#2A2A31" + fg: "#CECECE" + black: "#2D3139" + red: "#E06C75" + green: "#98C379" + yellow: "#D49D35" + blue: "#839BDD" + magenta: "#C678DD" + cyan: "#56B6C2" + white: "#ABB2BF" + brightBlack: "#256B7A" + brightRed: "#E06C75" + brightGreen: "#98C379" + brightYellow: "#C07639" + brightBlue: "#61AFEF" + brightMagenta: "#C678DD" + brightCyan: "#56B6C2" + brightWhite: "#BDBDBD" +meta: + mode: "dark" + accent: "pink" + hue: 286 + pair: null + contrast: + fg: 72.9 + black: 0 + red: 39.1 + green: 59.3 + yellow: 50.6 + blue: 45.2 + magenta: 42.2 + cyan: 51.6 + white: 56.5 + brightBlack: 17.8 + brightRed: 39.1 + brightGreen: 59.3 + brightYellow: 34.8 + brightBlue: 51.7 + brightMagenta: 42.2 + brightCyan: 51.6 + brightWhite: 62.9 diff --git a/themes/yuuyake.yaml b/themes/yuuyake.yaml new file mode 100644 index 00000000..bcec0d41 --- /dev/null +++ b/themes/yuuyake.yaml @@ -0,0 +1,53 @@ +name: "Yuuyake" +source: + marketplace_id: "ciqven.yuuyake-code" + version: "0.2.1" + installs: 31 + rating: 0 + ratings: 0 + author: "ciqven" + repo: "https://github.com/ciqven/yuuyake-code" + url: "https://marketplace.visualstudio.com/items?itemName=ciqven.yuuyake-code" + formats: null +colors: + bg: "#2A1B1B" + fg: "#C99358" + black: "#000000" + red: "#A84D3F" + green: "#246C39" + yellow: "#93932D" + blue: "#615A99" + magenta: "#8A2F58" + cyan: "#336A79" + white: "#B4B4B4" + brightBlack: "#666666" + brightRed: "#EF7D6C" + brightGreen: "#50B16D" + brightYellow: "#E1E15E" + brightBlue: "#948ADD" + brightMagenta: "#C95B8D" + brightCyan: "#5DA6B9" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "green" + hue: 19 + pair: null + contrast: + fg: 47.7 + black: 0 + red: 22.7 + green: 18.4 + yellow: 40 + blue: 19.4 + magenta: 13.2 + cyan: 19.8 + white: 59.8 + brightBlack: 21.1 + brightRed: 48.2 + brightGreen: 48.2 + brightYellow: 82.8 + brightBlue: 42.8 + brightMagenta: 33.6 + brightCyan: 46.8 + brightWhite: 89 diff --git a/themes/yuyuko-vim-vsc--yuyuko-vscode-ocean.yaml b/themes/yuyuko-vim-vsc--yuyuko-vscode-ocean.yaml new file mode 100644 index 00000000..cfa3eec1 --- /dev/null +++ b/themes/yuyuko-vim-vsc--yuyuko-vscode-ocean.yaml @@ -0,0 +1,53 @@ +name: "yuyuko-vim-vsc (yuyuko.vscode ocean)" +source: + marketplace_id: "hylwxqwq.yuyuko-vim-vsc" + version: "0.2.1" + installs: 6348 + rating: 5 + ratings: 4 + author: "hylwxqwq" + repo: "https://github.com/hylwxqwq/yuyuko-vim-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=hylwxqwq.yuyuko-vim-vsc" + formats: null +colors: + bg: "#0F111A" + fg: "#EEFFFF" + black: "#000000" + red: "#FF5370" + green: "#C3E88D" + yellow: "#FFCB6B" + blue: "#82AAFF" + magenta: "#C792EA" + cyan: "#89DDFF" + white: "#FFFFFF" + brightBlack: "#4A4A4A" + brightRed: "#FF5370" + brightGreen: "#C3E88D" + brightYellow: "#FFCB6B" + brightBlue: "#82AAFF" + brightMagenta: "#C792EA" + brightCyan: "#89DDFF" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "red" + hue: 275 + pair: null + contrast: + fg: 105 + black: 0 + red: 44.1 + green: 84.7 + yellow: 79.4 + blue: 56.4 + magenta: 54.2 + cyan: 78.7 + white: 107.3 + brightBlack: 11.4 + brightRed: 44.1 + brightGreen: 84.7 + brightYellow: 79.4 + brightBlue: 56.4 + brightMagenta: 54.2 + brightCyan: 78.7 + brightWhite: 107.3 diff --git a/themes/yuyuko-vim-vsc--yuyuko-vscode.yaml b/themes/yuyuko-vim-vsc--yuyuko-vscode.yaml new file mode 100644 index 00000000..856b3f46 --- /dev/null +++ b/themes/yuyuko-vim-vsc--yuyuko-vscode.yaml @@ -0,0 +1,53 @@ +name: "yuyuko-vim-vsc (yuyuko.vscode)" +source: + marketplace_id: "hylwxqwq.yuyuko-vim-vsc" + version: "0.2.1" + installs: 6348 + rating: 5 + ratings: 4 + author: "hylwxqwq" + repo: "https://github.com/hylwxqwq/yuyuko-vim-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=hylwxqwq.yuyuko-vim-vsc" + formats: null +colors: + bg: "#1C1C1C" + fg: "#FFFFFF" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 106.3 + black: 0 + red: 26.1 + green: 52.4 + yellow: 85 + blue: 26.9 + magenta: 29.2 + cyan: 47 + white: 89.4 + brightBlack: 21.5 + brightRed: 38 + brightGreen: 63 + brightYellow: 95.1 + brightBlue: 39.4 + brightMagenta: 44.8 + brightCyan: 54.8 + brightWhite: 89.4 diff --git a/themes/zaeri.yaml b/themes/zaeri.yaml new file mode 100644 index 00000000..d42906d6 --- /dev/null +++ b/themes/zaeri.yaml @@ -0,0 +1,53 @@ +name: "Zaeri" +source: + marketplace_id: "xgr-development.zaeri" + version: "0.1.0" + installs: 318 + rating: 0 + ratings: 0 + author: "XGR Development" + repo: "https://github.com/XGR-Development/Zaeri-vscode-theme" + url: "https://marketplace.visualstudio.com/items?itemName=xgr-development.zaeri" + formats: null +colors: + bg: "#0E0E0E" + fg: "#EDA3FA" + black: "#363B54" + red: "#F7768E" + green: "#41A6B5" + yellow: "#E9C44E" + blue: "#7AA2F7" + magenta: "#BB9AF7" + cyan: "#7DCFFF" + white: "#787C99" + brightBlack: "#363B54" + brightRed: "#F7768E" + brightGreen: "#41A6B5" + brightYellow: "#E9C44E" + brightBlue: "#7AA2F7" + brightMagenta: "#BB9AF7" + brightCyan: "#7DCFFF" + brightWhite: "#ACB0D0" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 67 + black: 0 + red: 50.6 + green: 47 + yellow: 72.8 + blue: 52.4 + magenta: 56.2 + cyan: 71.7 + white: 33.3 + brightBlack: 0 + brightRed: 50.6 + brightGreen: 47 + brightYellow: 72.8 + brightBlue: 52.4 + brightMagenta: 56.2 + brightCyan: 71.7 + brightWhite: 60.2 diff --git a/themes/zaher.yaml b/themes/zaher.yaml new file mode 100644 index 00000000..46a8795d --- /dev/null +++ b/themes/zaher.yaml @@ -0,0 +1,53 @@ +name: "Zaher" +source: + marketplace_id: "special-one.zaher" + version: "0.0.3" + installs: 76 + rating: 5 + ratings: 1 + author: "Alireza" + repo: "https://github.com/alirezahastam/zaher" + url: "https://marketplace.visualstudio.com/items?itemName=special-one.zaher" + formats: null +colors: + bg: "#0B0E14" + fg: "#2A9D8F" + black: "#101216" + red: "#F26D78" + green: "#0EAD69" + yellow: "#F1C26E" + blue: "#5E8CC1" + magenta: "#D457FF" + cyan: "#3BAFC5" + white: "#D0D0D0" + brightBlack: "#5C6066" + brightRed: "#F26D78" + brightGreen: "#0EAD69" + brightYellow: "#F1C26E" + brightBlue: "#5E8CC1" + brightMagenta: "#D457FF" + brightCyan: "#3BAFC5" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "pink" + hue: 264 + pair: null + contrast: + fg: 41.1 + black: 0 + red: 46.8 + green: 46.5 + yellow: 73.7 + blue: 38.9 + magenta: 43.3 + cyan: 51.4 + white: 77.8 + brightBlack: 20.1 + brightRed: 46.8 + brightGreen: 46.5 + brightYellow: 73.7 + brightBlue: 38.9 + brightMagenta: 43.3 + brightCyan: 51.4 + brightWhite: 107.6 diff --git a/themes/zednostheme.yaml b/themes/zednostheme.yaml new file mode 100644 index 00000000..b681a8d6 --- /dev/null +++ b/themes/zednostheme.yaml @@ -0,0 +1,54 @@ +name: "ZednosTheme" +source: + marketplace_id: "GhostWithAHoodie.zednos-theme" + version: "0.1.0" + installs: 516 + rating: 0 + ratings: 0 + author: "Ghost With A Hoodie" + repo: "https://github.com/SilesterGold9/ZednosTheme" + url: "https://marketplace.visualstudio.com/items?itemName=GhostWithAHoodie.zednos-theme" + formats: + zed: "https://raw.githubusercontent.com/SilesterGold9/ZednosTheme/main/themes/ZednosTheme-color-theme.json" +colors: + bg: "#1D2628" + fg: "#EC9309" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 213 + pair: null + contrast: + fg: 52.3 + black: 0 + red: 24.9 + green: 51.2 + yellow: 83.8 + blue: 25.6 + magenta: 27.9 + cyan: 45.7 + white: 88.2 + brightBlack: 20.2 + brightRed: 36.7 + brightGreen: 61.7 + brightYellow: 93.8 + brightBlue: 38.2 + brightMagenta: 43.5 + brightCyan: 53.6 + brightWhite: 88.2 diff --git a/themes/zedromeda.yaml b/themes/zedromeda.yaml new file mode 100644 index 00000000..4e9d6a39 --- /dev/null +++ b/themes/zedromeda.yaml @@ -0,0 +1,54 @@ +name: "Zedromeda" +source: + marketplace_id: "tommalitz.zedromeda" + version: "0.0.23" + installs: 318 + rating: 0 + ratings: 0 + author: "tommalitz" + repo: "https://github.com/TomMalitz/zedromeda" + url: "https://marketplace.visualstudio.com/items?itemName=tommalitz.zedromeda" + formats: + zed: "https://raw.githubusercontent.com/TomMalitz/zedromeda/main/themes/Zedromeda-color-theme.json" +colors: + bg: "#1E2025" + fg: "#F7F7F8" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 100.5 + black: 0 + red: 25.6 + green: 51.9 + yellow: 84.5 + blue: 26.3 + magenta: 28.6 + cyan: 46.4 + white: 88.9 + brightBlack: 20.9 + brightRed: 37.4 + brightGreen: 62.4 + brightYellow: 94.5 + brightBlue: 38.9 + brightMagenta: 44.3 + brightCyan: 54.3 + brightWhite: 88.9 diff --git a/themes/zelda.yaml b/themes/zelda.yaml new file mode 100644 index 00000000..bf6c8e85 --- /dev/null +++ b/themes/zelda.yaml @@ -0,0 +1,53 @@ +name: "zelda" +source: + marketplace_id: "KlausChamberlain.zelda" + version: "0.0.1" + installs: 61 + rating: 0 + ratings: 0 + author: "Klaus Chamberlain" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=KlausChamberlain.zelda" + formats: null +colors: + bg: "#0D1513" + fg: "#E2DDC3" + black: "#0D1513" + red: "#C9B962" + green: "#90B791" + yellow: "#C9B962" + blue: "#6CA08C" + magenta: "#9BA064" + cyan: "#ABC894" + white: "#E2DDC3" + brightBlack: "#6D9064" + brightRed: "#C9B962" + brightGreen: "#90B791" + brightYellow: "#C9B962" + brightBlue: "#6CA08C" + brightMagenta: "#9BA064" + brightCyan: "#ABC894" + brightWhite: "#E2DDC3" +meta: + mode: "dark" + accent: "green" + hue: 178 + pair: null + contrast: + fg: 84.9 + black: 0 + red: 63.5 + green: 57.3 + yellow: 63.5 + blue: 44.7 + magenta: 47.9 + cyan: 67.4 + white: 84.9 + brightBlack: 37.4 + brightRed: 63.5 + brightGreen: 57.3 + brightYellow: 63.5 + brightBlue: 44.7 + brightMagenta: 47.9 + brightCyan: 67.4 + brightWhite: 84.9 diff --git a/themes/zenbones-themes--zenbones-dark.yaml b/themes/zenbones-themes--zenbones-dark.yaml new file mode 100644 index 00000000..d67100ca --- /dev/null +++ b/themes/zenbones-themes--zenbones-dark.yaml @@ -0,0 +1,53 @@ +name: "Zenbones Themes (Zenbones Dark)" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2701 + rating: 5 + ratings: 3 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null +colors: + bg: "#1C1917" + fg: "#B4BDC3" + black: "#1C1917" + red: "#DE6E7C" + green: "#819B69" + yellow: "#B77E64" + blue: "#6099C0" + magenta: "#B279A7" + cyan: "#66A5AD" + white: "#B4BDC3" + brightBlack: "#403833" + brightRed: "#E8838F" + brightGreen: "#8BAE68" + brightYellow: "#D68C67" + brightBlue: "#61ABDA" + brightMagenta: "#CF86C1" + brightCyan: "#65B8C1" + brightWhite: "#888F94" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 64.8 + black: 0 + red: 42.1 + green: 42.8 + yellow: 39.1 + blue: 42.8 + magenta: 39.1 + cyan: 47 + white: 64.8 + brightBlack: 0 + brightRed: 50.2 + brightGreen: 51.4 + brightYellow: 48.6 + brightBlue: 51.5 + brightMagenta: 48.7 + brightCyan: 55.9 + brightWhite: 40.3 diff --git a/themes/zenbones-themes--zenbones-light.yaml b/themes/zenbones-themes--zenbones-light.yaml new file mode 100644 index 00000000..63e1b105 --- /dev/null +++ b/themes/zenbones-themes--zenbones-light.yaml @@ -0,0 +1,53 @@ +name: "Zenbones Themes (Zenbones Light)" +source: + marketplace_id: "rpbritton.zenbones" + version: "0.0.2" + installs: 2701 + rating: 5 + ratings: 3 + author: "rpbritton" + repo: "https://github.com/rpbritton/zenbones.nvim" + url: "https://marketplace.visualstudio.com/items?itemName=rpbritton.zenbones" + formats: null +colors: + bg: "#F0EDEC" + fg: "#2C363C" + black: "#F0EDEC" + red: "#A8334C" + green: "#4F6C31" + yellow: "#944927" + blue: "#286486" + magenta: "#88507D" + cyan: "#3B8992" + white: "#2C363C" + brightBlack: "#CFC1BA" + brightRed: "#94253E" + brightGreen: "#3F5A22" + brightYellow: "#803D1C" + brightBlue: "#1D5573" + brightMagenta: "#7B3B70" + brightCyan: "#2B747C" + brightWhite: "#4F5E68" +meta: + mode: "light" + accent: "red" + hue: null + pair: null + contrast: + fg: 87.8 + black: 0 + red: 70.8 + green: 69.4 + yellow: 71.3 + blue: 71.4 + magenta: 69.5 + cyan: 57.2 + white: 87.8 + brightBlack: 21.6 + brightRed: 76.5 + brightGreen: 76.6 + brightYellow: 77.1 + brightBlue: 77.4 + brightMagenta: 76.3 + brightCyan: 66.3 + brightWhite: 72.7 diff --git a/themes/zenith-color-theme--zenith-aurora.yaml b/themes/zenith-color-theme--zenith-aurora.yaml new file mode 100644 index 00000000..164a457e --- /dev/null +++ b/themes/zenith-color-theme--zenith-aurora.yaml @@ -0,0 +1,53 @@ +name: "Zenith Color Theme (Zenith Aurora)" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 111 + rating: 5 + ratings: 1 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" + formats: null +colors: + bg: "#1A1E24" + fg: "#D8E5E8" + black: "#1A1E24" + red: "#E8A5B8" + green: "#A8DFC5" + yellow: "#E8D8B0" + blue: "#9FC5E8" + magenta: "#C8B5E8" + cyan: "#A0E8E0" + white: "#D8E5E8" + brightBlack: "#3E4450" + brightRed: "#E8A5B8" + brightGreen: "#B8E5D0" + brightYellow: "#E8D8B0" + brightBlue: "#88B3D6" + brightMagenta: "#B8A5D8" + brightCyan: "#96D6D0" + brightWhite: "#D8E5E8" +meta: + mode: "dark" + accent: "red" + hue: 258 + pair: null + contrast: + fg: 87.7 + black: 0 + red: 62 + green: 78.1 + yellow: 81.8 + blue: 67.3 + magenta: 65.4 + cyan: 82.8 + white: 87.7 + brightBlack: 8 + brightRed: 62 + brightGreen: 83 + brightYellow: 81.8 + brightBlue: 56.7 + brightMagenta: 56.4 + brightCyan: 72.8 + brightWhite: 87.7 diff --git a/themes/zenith-color-theme--zenith-dawn.yaml b/themes/zenith-color-theme--zenith-dawn.yaml new file mode 100644 index 00000000..fcb53468 --- /dev/null +++ b/themes/zenith-color-theme--zenith-dawn.yaml @@ -0,0 +1,53 @@ +name: "Zenith Color Theme (Zenith Dawn)" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 111 + rating: 5 + ratings: 1 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" + formats: null +colors: + bg: "#EFF1F5" + fg: "#4C4F69" + black: "#EFF1F5" + red: "#D20F39" + green: "#40A02B" + yellow: "#DF8E1D" + blue: "#1E66F5" + magenta: "#8839EF" + cyan: "#04A5E5" + white: "#4C4F69" + brightBlack: "#9CA0B0" + brightRed: "#D20F39" + brightGreen: "#5FB268" + brightYellow: "#DF8E1D" + brightBlue: "#1E66F5" + brightMagenta: "#7C3AED" + brightCyan: "#179299" + brightWhite: "#4C4F69" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 79.3 + black: 0 + red: 66.3 + green: 52.1 + yellow: 42.3 + blue: 64.8 + magenta: 67.5 + cyan: 44.7 + white: 79.3 + brightBlack: 42.4 + brightRed: 66.3 + brightGreen: 42.3 + brightYellow: 42.3 + brightBlue: 64.8 + brightMagenta: 69.1 + brightCyan: 56.1 + brightWhite: 79.3 diff --git a/themes/zenith-color-theme--zenith-dusk.yaml b/themes/zenith-color-theme--zenith-dusk.yaml new file mode 100644 index 00000000..c60b077b --- /dev/null +++ b/themes/zenith-color-theme--zenith-dusk.yaml @@ -0,0 +1,53 @@ +name: "Zenith Color Theme (Zenith Dusk)" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 111 + rating: 5 + ratings: 1 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" + formats: null +colors: + bg: "#1E1E2E" + fg: "#E0DFE8" + black: "#1E1E2E" + red: "#F38BA8" + green: "#A6E3A1" + yellow: "#F9E2AF" + blue: "#89B4FA" + magenta: "#BBA6F7" + cyan: "#94E2D5" + white: "#E0DFE8" + brightBlack: "#45475A" + brightRed: "#F38BA8" + brightGreen: "#B5EDB5" + brightYellow: "#F9E2AF" + brightBlue: "#7A9FF5" + brightMagenta: "#A58EE5" + brightCyan: "#91D7E3" + brightWhite: "#E0DFE8" +meta: + mode: "dark" + accent: "purple" + hue: 284 + pair: null + contrast: + fg: 85.8 + black: 0 + red: 54.7 + green: 78.3 + yellow: 88.4 + blue: 59.1 + magenta: 58.7 + cyan: 78.2 + white: 85.8 + brightBlack: 9.3 + brightRed: 54.7 + brightGreen: 85.2 + brightYellow: 88.4 + brightBlue: 49.4 + brightMagenta: 46.5 + brightCyan: 73.5 + brightWhite: 85.8 diff --git a/themes/zenith-color-theme--zenith-forest.yaml b/themes/zenith-color-theme--zenith-forest.yaml new file mode 100644 index 00000000..2eebe841 --- /dev/null +++ b/themes/zenith-color-theme--zenith-forest.yaml @@ -0,0 +1,53 @@ +name: "Zenith Color Theme (Zenith Forest)" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 111 + rating: 5 + ratings: 1 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" + formats: null +colors: + bg: "#151D17" + fg: "#E8F0E0" + black: "#1A211B" + red: "#F28B82" + green: "#81C995" + yellow: "#F9E2AF" + blue: "#89C0EB" + magenta: "#C8A8E0" + cyan: "#89DCEB" + white: "#E8F0E0" + brightBlack: "#3F4740" + brightRed: "#F28B82" + brightGreen: "#9DE0AD" + brightYellow: "#F9E2AF" + brightBlue: "#7CB8D8" + brightMagenta: "#B89FD8" + brightCyan: "#76CEC7" + brightWhite: "#E8F0E0" +meta: + mode: "dark" + accent: "orange" + hue: 153 + pair: null + contrast: + fg: 94.8 + black: 0 + red: 53.8 + green: 63.4 + yellow: 89 + blue: 63.7 + magenta: 60.4 + cyan: 76.2 + white: 94.8 + brightBlack: 8.7 + brightRed: 53.8 + brightGreen: 77.1 + brightYellow: 89 + brightBlue: 58.3 + brightMagenta: 54.6 + brightCyan: 66.7 + brightWhite: 94.8 diff --git a/themes/zenith-color-theme--zenith-midnight.yaml b/themes/zenith-color-theme--zenith-midnight.yaml new file mode 100644 index 00000000..0619b5ae --- /dev/null +++ b/themes/zenith-color-theme--zenith-midnight.yaml @@ -0,0 +1,53 @@ +name: "Zenith Color Theme (Zenith Midnight)" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 111 + rating: 5 + ratings: 1 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" + formats: null +colors: + bg: "#0F0F14" + fg: "#E8E8F0" + black: "#0F0F14" + red: "#FF99B8" + green: "#B8FFC8" + yellow: "#FFF0B8" + blue: "#99B8FF" + magenta: "#C8B8FF" + cyan: "#B8F0FF" + white: "#E8E8F0" + brightBlack: "#32323C" + brightRed: "#FF99B8" + brightGreen: "#C8FFD8" + brightYellow: "#FFF0B8" + brightBlue: "#88A8FF" + brightMagenta: "#B8A8F5" + brightCyan: "#A8E8F0" + brightWhite: "#E8E8F0" +meta: + mode: "dark" + accent: "purple" + hue: 285 + pair: null + contrast: + fg: 92.9 + black: 0 + red: 63.5 + green: 96.8 + yellow: 97.6 + blue: 64.1 + magenta: 69.3 + cyan: 91.8 + white: 92.9 + brightBlack: 0 + brightRed: 63.5 + brightGreen: 99 + brightYellow: 97.6 + brightBlue: 56.2 + brightMagenta: 60.6 + brightCyan: 85.7 + brightWhite: 92.9 diff --git a/themes/zenith-color-theme--zenith-ocean.yaml b/themes/zenith-color-theme--zenith-ocean.yaml new file mode 100644 index 00000000..b912f1ca --- /dev/null +++ b/themes/zenith-color-theme--zenith-ocean.yaml @@ -0,0 +1,53 @@ +name: "Zenith Color Theme (Zenith Ocean)" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 111 + rating: 5 + ratings: 1 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" + formats: null +colors: + bg: "#14191F" + fg: "#D8E8F0" + black: "#14191F" + red: "#A8B8D5" + green: "#A8D5C8" + yellow: "#D5E0C8" + blue: "#8FB8D8" + magenta: "#B8C8E8" + cyan: "#A8D8E8" + white: "#D8E8F0" + brightBlack: "#363C44" + brightRed: "#A8B8D5" + brightGreen: "#B5E0D5" + brightYellow: "#D5E0C8" + brightBlue: "#78A8C8" + brightMagenta: "#A8B8D8" + brightCyan: "#88C8D8" + brightWhite: "#D8E8F0" +meta: + mode: "dark" + accent: "indigo" + hue: 253 + pair: null + contrast: + fg: 90.1 + black: 0 + red: 62.4 + green: 74.3 + yellow: 84.3 + blue: 60.1 + magenta: 71.7 + cyan: 77.1 + white: 90.1 + brightBlack: 0 + brightRed: 62.4 + brightGreen: 81.2 + brightYellow: 84.3 + brightBlue: 50.9 + brightMagenta: 62.5 + brightCyan: 66.4 + brightWhite: 90.1 diff --git a/themes/zenith-color-theme--zenith-ros.yaml b/themes/zenith-color-theme--zenith-ros.yaml new file mode 100644 index 00000000..4ae4bda7 --- /dev/null +++ b/themes/zenith-color-theme--zenith-ros.yaml @@ -0,0 +1,53 @@ +name: "Zenith Color Theme (Zenith Rosé)" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 111 + rating: 5 + ratings: 1 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" + formats: null +colors: + bg: "#1F1A1D" + fg: "#E8DFE8" + black: "#1F1A1D" + red: "#F5A5A8" + green: "#9CCFD8" + yellow: "#F6C177" + blue: "#9AC7DC" + magenta: "#C4A7E7" + cyan: "#9CCFD8" + white: "#E8DFE8" + brightBlack: "#4A3F43" + brightRed: "#F5A5A8" + brightGreen: "#A8DFE5" + brightYellow: "#F6C177" + brightBlue: "#9CADCE" + brightMagenta: "#B8A0D9" + brightCyan: "#9CCFD8" + brightWhite: "#E8DFE8" +meta: + mode: "dark" + accent: "yellow" + hue: null + pair: null + contrast: + fg: 87.4 + black: 0 + red: 63.9 + green: 70.8 + yellow: 73.1 + blue: 67.3 + magenta: 59.8 + cyan: 70.8 + white: 87.4 + brightBlack: 7.6 + brightRed: 63.9 + brightGreen: 79.8 + brightYellow: 73.1 + brightBlue: 56 + brightMagenta: 54.9 + brightCyan: 70.8 + brightWhite: 87.4 diff --git a/themes/zenith-color-theme--zenith-zen.yaml b/themes/zenith-color-theme--zenith-zen.yaml new file mode 100644 index 00000000..c4bb70aa --- /dev/null +++ b/themes/zenith-color-theme--zenith-zen.yaml @@ -0,0 +1,53 @@ +name: "Zenith Color Theme (Zenith Zen)" +source: + marketplace_id: "TheSamonide.zenith-theme" + version: "6.0.3" + installs: 111 + rating: 5 + ratings: 1 + author: "Samonide" + repo: "https://github.com/samonide/zenith-vsc" + url: "https://marketplace.visualstudio.com/items?itemName=TheSamonide.zenith-theme" + formats: null +colors: + bg: "#141414" + fg: "#E8E8E8" + black: "#141414" + red: "#C8B4B4" + green: "#B4C8BC" + yellow: "#CCC8B4" + blue: "#B8C0CC" + magenta: "#C4B8CC" + cyan: "#B8C8CC" + white: "#E8E8E8" + brightBlack: "#3A3A3A" + brightRed: "#C8B4B4" + brightGreen: "#B8CCC2" + brightYellow: "#CCC8B4" + brightBlue: "#B4BCC8" + brightMagenta: "#C0B4C8" + brightCyan: "#B4C8C4" + brightWhite: "#E8E8E8" +meta: + mode: "dark" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 92.2 + black: 0 + red: 63.6 + green: 69.7 + yellow: 72.3 + blue: 67.4 + magenta: 65.7 + cyan: 70.8 + white: 92.2 + brightBlack: 0 + brightRed: 63.6 + brightGreen: 72.1 + brightYellow: 72.3 + brightBlue: 65.1 + brightMagenta: 63.4 + brightCyan: 70 + brightWhite: 92.2 diff --git a/themes/zenith-theme--zenith-neutral.yaml b/themes/zenith-theme--zenith-neutral.yaml new file mode 100644 index 00000000..e1a19979 --- /dev/null +++ b/themes/zenith-theme--zenith-neutral.yaml @@ -0,0 +1,53 @@ +name: "Zenith Theme (Zenith Neutral)" +source: + marketplace_id: "britown.vscode-theme-zenith" + version: "0.0.23" + installs: 579 + rating: 5 + ratings: 1 + author: "Britown" + repo: "https://github.com/bkuzmanoski/vscode-theme-zenith" + url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-zenith" + formats: null +colors: + bg: "#191919" + fg: "#BBBBBB" + black: "#191919" + red: "#DE6E7C" + green: "#64B280" + yellow: "#D68C67" + blue: "#61ABDA" + magenta: "#CF86C1" + cyan: "#65B8C1" + white: "#BBBBBB" + brightBlack: "#6E6E6E" + brightRed: "#FC8C9A" + brightGreen: "#86CC92" + brightYellow: "#F4AA85" + brightBlue: "#7FC9F8" + brightMagenta: "#ECA4DF" + brightCyan: "#83D6DF" + brightWhite: "#8E8E8E" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 64.5 + black: 0 + red: 42.2 + green: 50.9 + yellow: 48.6 + blue: 51.5 + magenta: 48.8 + cyan: 55.9 + white: 64.5 + brightBlack: 25.3 + brightRed: 57 + brightGreen: 65.3 + brightYellow: 64.7 + brightBlue: 67.9 + brightMagenta: 64.7 + brightCyan: 72.7 + brightWhite: 40.4 diff --git a/themes/zenith-theme--zenith.yaml b/themes/zenith-theme--zenith.yaml new file mode 100644 index 00000000..95056e7b --- /dev/null +++ b/themes/zenith-theme--zenith.yaml @@ -0,0 +1,53 @@ +name: "Zenith Theme (Zenith)" +source: + marketplace_id: "britown.vscode-theme-zenith" + version: "0.0.23" + installs: 579 + rating: 5 + ratings: 1 + author: "Britown" + repo: "https://github.com/bkuzmanoski/vscode-theme-zenith" + url: "https://marketplace.visualstudio.com/items?itemName=britown.vscode-theme-zenith" + formats: null +colors: + bg: "#161A1D" + fg: "#B4BBC2" + black: "#161A1D" + red: "#DE6E7C" + green: "#64B280" + yellow: "#D68C67" + blue: "#61ABDA" + magenta: "#CF86C1" + cyan: "#65B8C1" + white: "#B4BBC2" + brightBlack: "#637079" + brightRed: "#FC8C9A" + brightGreen: "#86CC92" + brightYellow: "#F4AA85" + brightBlue: "#7FC9F8" + brightMagenta: "#ECA4DF" + brightCyan: "#83D6DF" + brightWhite: "#839099" +meta: + mode: "dark" + accent: "red" + hue: null + pair: null + contrast: + fg: 63.9 + black: 0 + red: 42.1 + green: 50.8 + yellow: 48.6 + blue: 51.5 + magenta: 48.7 + cyan: 55.9 + white: 63.9 + brightBlack: 25.3 + brightRed: 57 + brightGreen: 65.2 + brightYellow: 64.6 + brightBlue: 67.8 + brightMagenta: 64.6 + brightCyan: 72.6 + brightWhite: 40.3 diff --git a/themes/zenith-ui--black-purple.yaml b/themes/zenith-ui--black-purple.yaml new file mode 100644 index 00000000..20744eb4 --- /dev/null +++ b/themes/zenith-ui--black-purple.yaml @@ -0,0 +1,53 @@ +name: "Zenith UI (Black Purple)" +source: + marketplace_id: "VishalMaurya.zenith-ui" + version: "0.2.4" + installs: 191 + rating: 5 + ratings: 1 + author: "Vishal Maurya" + repo: "https://github.com/maurya-07/zenith-ui" + url: "https://marketplace.visualstudio.com/items?itemName=VishalMaurya.zenith-ui" + formats: null +colors: + bg: "#000000" + fg: "#E1E1E0" + black: "#474747" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 88.5 + black: 10.9 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/zenith-ui--deep-purple.yaml b/themes/zenith-ui--deep-purple.yaml new file mode 100644 index 00000000..6ea4f354 --- /dev/null +++ b/themes/zenith-ui--deep-purple.yaml @@ -0,0 +1,53 @@ +name: "Zenith UI (Deep Purple)" +source: + marketplace_id: "VishalMaurya.zenith-ui" + version: "0.2.4" + installs: 191 + rating: 5 + ratings: 1 + author: "Vishal Maurya" + repo: "https://github.com/maurya-07/zenith-ui" + url: "https://marketplace.visualstudio.com/items?itemName=VishalMaurya.zenith-ui" + formats: null +colors: + bg: "#0F0C13" + fg: "#7D68B6" + black: "#3D3D3D" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 304 + pair: null + contrast: + fg: 29.3 + black: 0 + red: 27.4 + green: 53.7 + yellow: 86.3 + blue: 28.1 + magenta: 30.5 + cyan: 48.3 + white: 90.7 + brightBlack: 22.8 + brightRed: 39.3 + brightGreen: 64.3 + brightYellow: 96.4 + brightBlue: 40.7 + brightMagenta: 46.1 + brightCyan: 56.1 + brightWhite: 90.7 diff --git a/themes/zero.yaml b/themes/zero.yaml new file mode 100644 index 00000000..a2bd2268 --- /dev/null +++ b/themes/zero.yaml @@ -0,0 +1,53 @@ +name: "Zero" +source: + marketplace_id: "Valkyrihane.zero" + version: "0.0.1" + installs: 1481 + rating: 5 + ratings: 1 + author: "Valkyrihane" + repo: "https://github.com/Valkyrihane/zero" + url: "https://marketplace.visualstudio.com/items?itemName=Valkyrihane.zero" + formats: null +colors: + bg: "#000000" + fg: "#AAAAAA" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 56.2 + black: 0 + red: 27.7 + green: 54 + yellow: 86.6 + blue: 28.4 + magenta: 30.8 + cyan: 48.6 + white: 91 + brightBlack: 23 + brightRed: 39.6 + brightGreen: 64.5 + brightYellow: 96.6 + brightBlue: 41 + brightMagenta: 46.4 + brightCyan: 56.4 + brightWhite: 91 diff --git a/themes/zeus-theme--zeus-turquoise.yaml b/themes/zeus-theme--zeus-turquoise.yaml new file mode 100644 index 00000000..fe52470c --- /dev/null +++ b/themes/zeus-theme--zeus-turquoise.yaml @@ -0,0 +1,53 @@ +name: "Zeus Theme (Zeus Turquoise)" +source: + marketplace_id: "UllasKunder.zeus-vscode-theme" + version: "0.0.1" + installs: 698 + rating: 4 + ratings: 1 + author: "Ullas Kunder" + repo: "https://github.com/ullaskunder3/zeus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=UllasKunder.zeus-vscode-theme" + formats: null +colors: + bg: "#0D1318" + fg: "#C9D1D9" + black: "#484F58" + red: "#EC8E2C" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FDAC54" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 244 + pair: null + contrast: + fg: 77.4 + black: 13 + red: 53.1 + green: 52.1 + yellow: 52.1 + blue: 52.1 + magenta: 52.1 + cyan: 61.3 + white: 63.9 + brightBlack: 29.1 + brightRed: 66.7 + brightGreen: 64.6 + brightYellow: 64.6 + brightBlue: 64.6 + brightMagenta: 64.5 + brightCyan: 69.8 + brightWhite: 107.3 diff --git a/themes/zeus-theme--zeus-yelo.yaml b/themes/zeus-theme--zeus-yelo.yaml new file mode 100644 index 00000000..41a3f731 --- /dev/null +++ b/themes/zeus-theme--zeus-yelo.yaml @@ -0,0 +1,53 @@ +name: "Zeus Theme (Zeus Yelo)" +source: + marketplace_id: "UllasKunder.zeus-vscode-theme" + version: "0.0.1" + installs: 698 + rating: 4 + ratings: 1 + author: "Ullas Kunder" + repo: "https://github.com/ullaskunder3/zeus-theme" + url: "https://marketplace.visualstudio.com/items?itemName=UllasKunder.zeus-vscode-theme" + formats: null +colors: + bg: "#171724" + fg: "#C9D1D9" + black: "#484F58" + red: "#EC8E2C" + green: "#58A6FF" + yellow: "#D29922" + blue: "#58A6FF" + magenta: "#BC8CFF" + cyan: "#39C5CF" + white: "#B1BAC4" + brightBlack: "#6E7681" + brightRed: "#FDAC54" + brightGreen: "#79C0FF" + brightYellow: "#E3B341" + brightBlue: "#79C0FF" + brightMagenta: "#D2A8FF" + brightCyan: "#56D4DD" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "magenta" + hue: 284 + pair: null + contrast: + fg: 76.9 + black: 12.4 + red: 52.5 + green: 51.6 + yellow: 51.6 + blue: 51.6 + magenta: 51.6 + cyan: 60.7 + white: 63.4 + brightBlack: 28.6 + brightRed: 66.1 + brightGreen: 64.1 + brightYellow: 64.1 + brightBlue: 64.1 + brightMagenta: 64 + brightCyan: 69.3 + brightWhite: 106.7 diff --git a/themes/zh-themes--collapse.yaml b/themes/zh-themes--collapse.yaml new file mode 100644 index 00000000..f40da1c3 --- /dev/null +++ b/themes/zh-themes--collapse.yaml @@ -0,0 +1,53 @@ +name: "zh'themes (Collapse)" +source: + marketplace_id: "shwuy.zhxo-themes" + version: "2.0.1" + installs: 1482 + rating: 5 + ratings: 4 + author: "shwuy" + repo: "https://github.com/sxhk0/.theme" + url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" + formats: null +colors: + bg: "#111827" + fg: "#DEDEDE" + black: "#3B3B3B" + red: "#E03C3C" + green: "#22CD8B" + yellow: "#EEC051" + blue: "#668BE2" + magenta: "#A34BB0" + cyan: "#10CCD5" + white: "#CBCBCB" + brightBlack: "#66676F" + brightRed: "#F08359" + brightGreen: "#3FE6A3" + brightYellow: "#FBFB7B" + brightBlue: "#81A6FD" + brightMagenta: "#C970D6" + brightCyan: "#4DEAEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: 265 + pair: null + contrast: + fg: 85.5 + black: 0 + red: 32.1 + green: 61.4 + yellow: 71.1 + blue: 40.3 + magenta: 26.4 + cyan: 63.7 + white: 73.9 + brightBlack: 22.5 + brightRed: 50.5 + brightGreen: 74.9 + brightYellow: 99.9 + brightBlue: 54 + brightMagenta: 43 + brightCyan: 80.2 + brightWhite: 106.7 diff --git a/themes/zh-themes--monocr.yaml b/themes/zh-themes--monocr.yaml new file mode 100644 index 00000000..b18a5814 --- /dev/null +++ b/themes/zh-themes--monocr.yaml @@ -0,0 +1,53 @@ +name: "zh'themes (Monocr)" +source: + marketplace_id: "shwuy.zhxo-themes" + version: "2.0.1" + installs: 1482 + rating: 5 + ratings: 4 + author: "shwuy" + repo: "https://github.com/sxhk0/.theme" + url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" + formats: null +colors: + bg: "#1C1C20" + fg: "#B7BECB" + black: "#3B3B3B" + red: "#E03C3C" + green: "#22CD8B" + yellow: "#EEC051" + blue: "#668BE2" + magenta: "#A34BB0" + cyan: "#10CCD5" + white: "#CBCBCB" + brightBlack: "#66676F" + brightRed: "#F08359" + brightGreen: "#3FE6A3" + brightYellow: "#FBFB7B" + brightBlue: "#81A6FD" + brightMagenta: "#C970D6" + brightCyan: "#4DEAEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.6 + black: 0 + red: 31.7 + green: 61 + yellow: 70.7 + blue: 39.8 + magenta: 26 + cyan: 63.2 + white: 73.5 + brightBlack: 22 + brightRed: 50.1 + brightGreen: 74.5 + brightYellow: 99.5 + brightBlue: 53.6 + brightMagenta: 42.5 + brightCyan: 79.8 + brightWhite: 106.3 diff --git a/themes/zh-themes--zhxo-lt.yaml b/themes/zh-themes--zhxo-lt.yaml new file mode 100644 index 00000000..01ab5cad --- /dev/null +++ b/themes/zh-themes--zhxo-lt.yaml @@ -0,0 +1,53 @@ +name: "zh'themes (zhxo'lt)" +source: + marketplace_id: "shwuy.zhxo-themes" + version: "2.0.1" + installs: 1482 + rating: 5 + ratings: 4 + author: "shwuy" + repo: "https://github.com/sxhk0/.theme" + url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" + formats: null +colors: + bg: "#FFF6F0" + fg: "#777790" + black: "#131313" + red: "#C43D3D" + green: "#00BC6D" + yellow: "#CF9E0D" + blue: "#1F5FA5" + magenta: "#A313D7" + cyan: "#1FA1C0" + white: "#585858" + brightBlack: "#303030" + brightRed: "#EA5959" + brightGreen: "#29D18A" + brightYellow: "#E6BA38" + brightBlue: "#4181C7" + brightMagenta: "#C421FF" + brightCyan: "#34D0F5" + brightWhite: "#949494" +meta: + mode: "light" + accent: "magenta" + hue: null + pair: null + contrast: + fg: 65.7 + black: 100.7 + red: 69.9 + green: 43.8 + yellow: 43.6 + blue: 77.3 + magenta: 72.5 + cyan: 52.2 + white: 80.2 + brightBlack: 95.1 + brightRed: 56.8 + brightGreen: 33.3 + brightYellow: 29.8 + brightBlue: 63 + brightMagenta: 62.5 + brightCyan: 29.3 + brightWhite: 52.7 diff --git a/themes/zh-themes--zhxo-red.yaml b/themes/zh-themes--zhxo-red.yaml new file mode 100644 index 00000000..af66f56c --- /dev/null +++ b/themes/zh-themes--zhxo-red.yaml @@ -0,0 +1,53 @@ +name: "zh'themes (zhxo'red)" +source: + marketplace_id: "shwuy.zhxo-themes" + version: "2.0.1" + installs: 1482 + rating: 5 + ratings: 4 + author: "shwuy" + repo: "https://github.com/sxhk0/.theme" + url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" + formats: null +colors: + bg: "#1A1A1D" + fg: "#ABABAB" + black: "#3B3B3B" + red: "#E03C3C" + green: "#22CD8B" + yellow: "#EEC051" + blue: "#668BE2" + magenta: "#A34BB0" + cyan: "#10CCD5" + white: "#CBCBCB" + brightBlack: "#66676F" + brightRed: "#F08359" + brightGreen: "#3FE6A3" + brightYellow: "#FBFB7B" + brightBlue: "#81A6FD" + brightMagenta: "#C970D6" + brightCyan: "#4DEAEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 55.4 + black: 0 + red: 31.9 + green: 61.2 + yellow: 70.9 + blue: 40.1 + magenta: 26.2 + cyan: 63.5 + white: 73.7 + brightBlack: 22.3 + brightRed: 50.3 + brightGreen: 74.7 + brightYellow: 99.7 + brightBlue: 53.8 + brightMagenta: 42.8 + brightCyan: 80 + brightWhite: 106.5 diff --git a/themes/zh-themes--zhxo-st.yaml b/themes/zh-themes--zhxo-st.yaml new file mode 100644 index 00000000..bdb9915c --- /dev/null +++ b/themes/zh-themes--zhxo-st.yaml @@ -0,0 +1,53 @@ +name: "zh'themes (zhxo'st)" +source: + marketplace_id: "shwuy.zhxo-themes" + version: "2.0.1" + installs: 1482 + rating: 5 + ratings: 4 + author: "shwuy" + repo: "https://github.com/sxhk0/.theme" + url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" + formats: null +colors: + bg: "#1B1A1A" + fg: "#B8BCD9" + black: "#3B3B3B" + red: "#E03C3C" + green: "#22CD8B" + yellow: "#EEC051" + blue: "#668BE2" + magenta: "#A34BB0" + cyan: "#10CCD5" + white: "#CBCBCB" + brightBlack: "#66676F" + brightRed: "#F08359" + brightGreen: "#3FE6A3" + brightYellow: "#FBFB7B" + brightBlue: "#81A6FD" + brightMagenta: "#C970D6" + brightCyan: "#4DEAEA" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 65.8 + black: 0 + red: 31.9 + green: 61.2 + yellow: 70.9 + blue: 40.1 + magenta: 26.2 + cyan: 63.5 + white: 73.7 + brightBlack: 22.3 + brightRed: 50.3 + brightGreen: 74.7 + brightYellow: 99.7 + brightBlue: 53.8 + brightMagenta: 42.8 + brightCyan: 80 + brightWhite: 106.5 diff --git a/themes/zh-themes--zhxo-yll.yaml b/themes/zh-themes--zhxo-yll.yaml new file mode 100644 index 00000000..8f3d04bf --- /dev/null +++ b/themes/zh-themes--zhxo-yll.yaml @@ -0,0 +1,53 @@ +name: "zh'themes (zhxo'yll)" +source: + marketplace_id: "shwuy.zhxo-themes" + version: "2.0.1" + installs: 1482 + rating: 5 + ratings: 4 + author: "shwuy" + repo: "https://github.com/sxhk0/.theme" + url: "https://marketplace.visualstudio.com/items?itemName=shwuy.zhxo-themes" + formats: null +colors: + bg: "#131313" + fg: "#BCBCBC" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 65.7 + black: 0 + red: 27.1 + green: 53.4 + yellow: 86 + blue: 27.8 + magenta: 30.1 + cyan: 47.9 + white: 90.4 + brightBlack: 22.4 + brightRed: 38.9 + brightGreen: 63.9 + brightYellow: 96 + brightBlue: 40.4 + brightMagenta: 45.7 + brightCyan: 55.8 + brightWhite: 90.4 diff --git a/themes/zokugun-themes.yaml b/themes/zokugun-themes.yaml new file mode 100644 index 00000000..ac20d60a --- /dev/null +++ b/themes/zokugun-themes.yaml @@ -0,0 +1,53 @@ +name: "Zokugun Themes" +source: + marketplace_id: "zokugun.zokugun-theme" + version: "0.6.2" + installs: 1909 + rating: 0 + ratings: 0 + author: "zokugun" + repo: "https://github.com/zokugun/theme-zokugun-vscode" + url: "https://marketplace.visualstudio.com/items?itemName=zokugun.zokugun-theme" + formats: null +colors: + bg: "#000000" + fg: "#DADADA" + black: "#000000" + red: "#B33320" + green: "#44AC2D" + yellow: "#999900" + blue: "#4C41DB" + magenta: "#CF48CF" + cyan: "#00A6B2" + white: "#BFBFBF" + brightBlack: "#828282" + brightRed: "#E50000" + brightGreen: "#00D900" + brightYellow: "#E5E500" + brightBlue: "#0000FF" + brightMagenta: "#E500E5" + brightCyan: "#00E5E5" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "purple" + hue: null + pair: null + contrast: + fg: 84.2 + black: 0 + red: 22.3 + green: 46.6 + yellow: 44.8 + blue: 19.3 + magenta: 36.8 + cyan: 46.3 + white: 68 + brightBlack: 35.7 + brightRed: 31.1 + brightGreen: 66.7 + brightYellow: 86.6 + brightBlue: 16.2 + brightMagenta: 38.5 + brightCyan: 77.6 + brightWhite: 91 diff --git a/themes/zora-dark-theme--green.yaml b/themes/zora-dark-theme--green.yaml new file mode 100644 index 00000000..14ba6c1e --- /dev/null +++ b/themes/zora-dark-theme--green.yaml @@ -0,0 +1,53 @@ +name: "Zora Dark Theme (green)" +source: + marketplace_id: "haris.zoradark" + version: "0.7.0" + installs: 171 + rating: 0 + ratings: 0 + author: "haris" + repo: "https://github.com/Elhary/Zora" + url: "https://marketplace.visualstudio.com/items?itemName=haris.zoradark" + formats: null +colors: + bg: "#162430" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 245 + pair: null + contrast: + fg: 77.9 + black: 0 + red: 25.2 + green: 51.5 + yellow: 84.1 + blue: 25.9 + magenta: 28.2 + cyan: 46 + white: 88.5 + brightBlack: 20.5 + brightRed: 37 + brightGreen: 62 + brightYellow: 94.1 + brightBlue: 38.4 + brightMagenta: 43.8 + brightCyan: 53.8 + brightWhite: 88.5 diff --git a/themes/zora-dark-theme--untitled.yaml b/themes/zora-dark-theme--untitled.yaml new file mode 100644 index 00000000..e88c91ac --- /dev/null +++ b/themes/zora-dark-theme--untitled.yaml @@ -0,0 +1,53 @@ +name: "Zora Dark Theme (Untitled)" +source: + marketplace_id: "haris.zoradark" + version: "0.7.0" + installs: 171 + rating: 0 + ratings: 0 + author: "haris" + repo: "https://github.com/Elhary/Zora" + url: "https://marketplace.visualstudio.com/items?itemName=haris.zoradark" + formats: null +colors: + bg: "#28374C" + fg: "#D4D4D4" + black: "#000000" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: 257 + pair: null + contrast: + fg: 73.7 + black: 0 + red: 20.9 + green: 47.2 + yellow: 79.8 + blue: 21.6 + magenta: 24 + cyan: 41.8 + white: 84.2 + brightBlack: 16.2 + brightRed: 32.8 + brightGreen: 57.7 + brightYellow: 89.8 + brightBlue: 34.2 + brightMagenta: 39.6 + brightCyan: 49.6 + brightWhite: 84.2 diff --git a/themes/zoren-theme.yaml b/themes/zoren-theme.yaml new file mode 100644 index 00000000..fbb04ee8 --- /dev/null +++ b/themes/zoren-theme.yaml @@ -0,0 +1,53 @@ +name: "Zoren Theme" +source: + marketplace_id: "viniciuslazzari.zoren" + version: "1.3.1" + installs: 83 + rating: 5 + ratings: 1 + author: "viniciuslazzari" + repo: "https://github.com/viniciuslaz/zoren-theme" + url: "https://marketplace.visualstudio.com/items?itemName=viniciuslazzari.zoren" + formats: null +colors: + bg: "#1E2228" + fg: "#D4D7DD" + black: "#1E2228" + red: "#E07856" + green: "#6AB06A" + yellow: "#E0B95A" + blue: "#4D9DE0" + magenta: "#B884D6" + cyan: "#5AC5C5" + white: "#D4D7DD" + brightBlack: "#5A6270" + brightRed: "#F09070" + brightGreen: "#84C884" + brightYellow: "#F5D078" + brightBlue: "#6EB4F7" + brightMagenta: "#D0A0F0" + brightCyan: "#78DADA" + brightWhite: "#E8EAED" +meta: + mode: "dark" + accent: "orange" + hue: 258 + pair: null + contrast: + fg: 79.8 + black: 0 + red: 43.1 + green: 48.7 + yellow: 65 + blue: 44.2 + magenta: 44.6 + cyan: 60.2 + white: 79.8 + brightBlack: 18.8 + brightRed: 53.6 + brightGreen: 61.7 + brightYellow: 78.3 + brightBlue: 56.6 + brightMagenta: 58.7 + brightCyan: 72.4 + brightWhite: 91.7 diff --git a/themes/zunda.yaml b/themes/zunda.yaml new file mode 100644 index 00000000..14107bb4 --- /dev/null +++ b/themes/zunda.yaml @@ -0,0 +1,53 @@ +name: "Zunda" +source: + marketplace_id: "Matcha.zunda" + version: "0.0.9" + installs: 385 + rating: 0 + ratings: 0 + author: "Matcha" + repo: "https://github.com/MatchaScript/zunda" + url: "https://marketplace.visualstudio.com/items?itemName=Matcha.zunda" + formats: null +colors: + bg: "#000000" + fg: "#DFDEDF" + black: "#000000" + red: "#C72E2E" + green: "#158844" + yellow: "#FF9500" + blue: "#2A6DD7" + magenta: "#5E5CE7" + cyan: "#2480B5" + white: "#DFDEDF" + brightBlack: "#EBEBF5" + brightRed: "#FF375F" + brightGreen: "#30D158" + brightYellow: "#FFE620" + brightBlue: "#2094FA" + brightMagenta: "#BF5AF2" + brightCyan: "#00E4E3" + brightWhite: "#FFFFFF" +meta: + mode: "dark" + accent: "orange" + hue: null + pair: null + contrast: + fg: 86.8 + black: 0 + red: 26.1 + green: 30.7 + yellow: 59.4 + blue: 28.1 + magenta: 27.3 + cyan: 31.9 + white: 86.8 + brightBlack: 95.3 + brightRed: 40.6 + brightGreen: 63.7 + brightYellow: 90.9 + brightBlue: 43.8 + brightMagenta: 39.6 + brightCyan: 77 + brightWhite: 107.9 diff --git a/themes/zux.yaml b/themes/zux.yaml new file mode 100644 index 00000000..82eac4fc --- /dev/null +++ b/themes/zux.yaml @@ -0,0 +1,53 @@ +name: "Zux" +source: + marketplace_id: "giovanicavila.zux" + version: "0.0.6" + installs: 28 + rating: 0 + ratings: 0 + author: "Giovani Avila" + repo: null + url: "https://marketplace.visualstudio.com/items?itemName=giovanicavila.zux" + formats: null +colors: + bg: "#151719" + fg: "#E1E1E0" + black: "#474747" + red: "#CD3131" + green: "#0DBC79" + yellow: "#E5E510" + blue: "#2472C8" + magenta: "#BC3FBC" + cyan: "#11A8CD" + white: "#E5E5E5" + brightBlack: "#666666" + brightRed: "#F14C4C" + brightGreen: "#23D18B" + brightYellow: "#F5F543" + brightBlue: "#3B8EEA" + brightMagenta: "#D670D6" + brightCyan: "#29B8DB" + brightWhite: "#E5E5E5" +meta: + mode: "dark" + accent: "pink" + hue: null + pair: null + contrast: + fg: 87.5 + black: 9.9 + red: 26.7 + green: 53 + yellow: 85.6 + blue: 27.4 + magenta: 29.8 + cyan: 47.6 + white: 90 + brightBlack: 22.1 + brightRed: 38.6 + brightGreen: 63.6 + brightYellow: 95.7 + brightBlue: 40 + brightMagenta: 45.4 + brightCyan: 55.4 + brightWhite: 90 From afd848c0b7e32ad9fddb0f903154c824792b3385 Mon Sep 17 00:00:00 2001 From: Ismael Canal Date: Fri, 20 Mar 2026 10:43:32 +0100 Subject: [PATCH 11/21] feat(cli): universal theme color engine with LAB interpolation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add theme-color-engine.ts: derives full editor palette from ANSI-16 colors using PlaneColorSpace with LAB interpolation to prevent hue drift during plane traversal - Rewrite all editor generators (vscode, xcode, android-studio, ghostty, alacritty, kitty, iterm2, warp, hyper, windows-terminal) to use deriveEditorPalette() for consistent, perceptually-accurate colors - Update theme.ts --install to prefer native format files when available (source.formats[app]), falling back to generator with (native)/(generated) label - Add 130-test baseline suite covering 9 diverse themes (dark + light), with regression tolerances (±5% OKLCH ΔL) and quality anchors verified against the real Aura Theme xcode/alacritty files (±3% ΔL) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- cli/src/theme-color-engine.ts | 106 ++++++++ cli/src/theme-generators/alacritty.ts | 11 +- cli/src/theme-generators/android-studio.ts | 100 ++++++-- cli/src/theme-generators/ghostty.ts | 14 +- cli/src/theme-generators/hyper.ts | 6 +- cli/src/theme-generators/iterm2.ts | 11 +- cli/src/theme-generators/kitty.ts | 6 +- cli/src/theme-generators/vscode.ts | 194 +++++++++++++-- cli/src/theme-generators/warp.ts | 6 +- cli/src/theme-generators/windows-terminal.ts | 6 +- cli/src/theme-generators/xcode.ts | 116 ++++++--- cli/src/theme.ts | 64 ++++- cli/tests/theme-color-engine.test.ts | 248 +++++++++++++++++++ 13 files changed, 782 insertions(+), 106 deletions(-) create mode 100644 cli/src/theme-color-engine.ts create mode 100644 cli/tests/theme-color-engine.test.ts diff --git a/cli/src/theme-color-engine.ts b/cli/src/theme-color-engine.ts new file mode 100644 index 00000000..9c7cf769 --- /dev/null +++ b/cli/src/theme-color-engine.ts @@ -0,0 +1,106 @@ +import type { ThemeYAML } from './theme-schema'; +import { PlaneColorSpace } from '../../sdk/src/plane-color-space'; +import { hexToOklch, oklchToHex } from '../../src/engine/OklchMathEngine'; + +export interface EditorPalette { + // Backgrounds + bg: string; + bgAlt: string; + lineHighlight: string; + selection: string; + selectionBorder: string; + + // Foregrounds + fg: string; + fgMuted: string; + comment: string; + + // Cursor + cursor: string; + + // Syntax tokens + keyword: string; + string: string; + number: string; + fn: string; + type: string; + variable: string; + operator: string; + + // Diff backgrounds + added: string; + removed: string; + modified: string; + + // Status colors + error: string; + warning: string; + info: string; + + // Pass-through ANSI + ansi: ThemeYAML['colors']; + mode: 'dark' | 'light'; +} + +const PLANE_SIZE = 10; + +const h = (c: any): string => `${c}`; + +export function deriveEditorPalette(theme: ThemeYAML): EditorPalette { + const c = theme.colors; + const bg = c.bg; + const fg = c.fg; + const blue = c.blue; + const green = c.green; + const yellow = c.yellow; + const red = c.red; + const magenta = c.magenta; + const cyan = c.cyan; + + // type: blue rotated -90° toward teal + const [bl, bc, bh] = hexToOklch(blue); + const teal = oklchToHex(bl, bc, ((bh - 90) + 360) % 360); + + const plane = (hue: string) => new PlaneColorSpace(bg, fg, hue).interpolation('lab').size(PLANE_SIZE); + + const bluePlane = plane(blue); + const greenPlane = plane(green); + const yellowPlane = plane(yellow); + const redPlane = plane(red); + const magPlane = plane(magenta); + const typePlane = plane(teal); + const neutralPlane = plane(blue); + + return { + bg, + bgAlt: h(neutralPlane.at(2, 1)), + lineHighlight: h(neutralPlane.at(2, 1)), + selection: h(bluePlane.at(8, 3)), + selectionBorder: h(bluePlane.at(5, 4)), + + fg, + fgMuted: h(neutralPlane.at(0, 7)), + comment: h(neutralPlane.at(0, 4)), + + cursor: h(bluePlane.at(9, 7)), + + keyword: h(bluePlane.at(9, 7)), + string: h(greenPlane.at(9, 7)), + number: h(yellowPlane.at(9, 6)), + fn: h(yellowPlane.at(9, 7)), + type: h(typePlane.at(6, 8)), + variable: fg, + operator: h(magPlane.at(9, 7)), + + added: h(greenPlane.at(5, 3)), + removed: h(redPlane.at(5, 3)), + modified: h(yellowPlane.at(5, 3)), + + error: c.red, + warning: c.yellow, + info: c.cyan, + + ansi: c, + mode: theme.meta.mode, + }; +} diff --git a/cli/src/theme-generators/alacritty.ts b/cli/src/theme-generators/alacritty.ts index 50f2dc02..6895273e 100644 --- a/cli/src/theme-generators/alacritty.ts +++ b/cli/src/theme-generators/alacritty.ts @@ -1,13 +1,12 @@ import type { ThemeYAML } from '../theme-schema'; import type { ThemeGenerator } from './base'; -import { themeFileName } from './base'; - -const NORMAL_KEYS = ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white'] as const; +import { deriveEditorPalette } from '../theme-color-engine'; export const alacrittyGenerator: ThemeGenerator = { name: 'alacritty', generate(theme: ThemeYAML): string { + const p = deriveEditorPalette(theme); const c = theme.colors; const lines: string[] = []; @@ -16,9 +15,13 @@ export const alacrittyGenerator: ThemeGenerator = { lines.push(`foreground = "${c.fg}"`); lines.push(''); lines.push('[colors.cursor]'); - lines.push(`cursor = "${c.fg}"`); + lines.push(`cursor = "${p.cursor}"`); lines.push(`text = "${c.bg}"`); lines.push(''); + lines.push('[colors.selection]'); + lines.push(`background = "${p.selection}"`); + lines.push(`text = "${c.fg}"`); + lines.push(''); lines.push('[colors.normal]'); lines.push(`black = "${c.black}"`); lines.push(`red = "${c.red}"`); diff --git a/cli/src/theme-generators/android-studio.ts b/cli/src/theme-generators/android-studio.ts index f9c914d4..542313ae 100644 --- a/cli/src/theme-generators/android-studio.ts +++ b/cli/src/theme-generators/android-studio.ts @@ -1,38 +1,102 @@ import type { ThemeYAML } from '../theme-schema'; import type { ThemeGenerator } from './base'; -import { hexToRgb } from './base'; +import { deriveEditorPalette } from '../theme-color-engine'; -function iclsColor(hex: string): string { - const [r, g, b] = hexToRgb(hex); - return (r << 16 | g << 8 | b).toString(); +function hex6(hex: string): string { + return hex.replace('#', '').toUpperCase(); } -function option(name: string, hex: string): string { - return ` `; +function colorAttr(name: string, hex: string): string { + return ` `; +} + +function fgAttr(name: string, hex: string): string { + return syntaxAttr(name, [`